diff --git a/README.md b/README.md index 7029c5047..b648e1b52 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- pelicun

@@ -9,12 +9,12 @@

- Probabilistic Estimation of Losses, Injuries, and Community resilience Under Natural disasters + Probabilistic Estimation of Losses, Injuries, and Community resilience Under Natural hazard events

## What is it? -`pelicun` is a Python package that provides tools for assessment of damage and losses due to natural hazards. It uses a stochastic damage and loss model that is based on the methodology described in FEMA P58 (FEMA, 2012). While FEMA P58 aims to assess the seismic performance of a building, with `pelicun` we provide a more versatile, hazard-agnostic tool that estimates losses for several types of assets in the built environment. +`pelicun` is a Python package that provides tools for assessment of damage and losses due to natural hazard events. It uses a stochastic damage and loss model that is an extension of the high-resolution PEER performance assessment methodology described in FEMA P58 (FEMA, 2012). While FEMA P58 aims to assess the seismic performance of a building, with `pelicun` we provide a more versatile, hazard-agnostic tool to assess the performance of several types of assets in the built environment. Detailed documentation of the available methods and their use is available at http://nheri-simcenter.github.io/pelicun @@ -28,27 +28,27 @@ Detailed documentation of the available methods and their use is available at ht - **Estimate component damages.** Given a damage and loss model and the joint distribution of EDPs, `pelicun` provides methods to estimate the amount of damaged components and the number of cases with collapse. -- **Estimate consequences.** Using information about collapse and component damages, the following consequences can be estimated with the loss model: reconstruction cost and time, unsafe placarding (red tag), injuries and fatalities. +- **Estimate consequences.** Using information about collapse and component damages, the following consequences can be estimated with the loss model: reconstruction cost and time, unsafe placarding (red tag), injuries and fatalities. ## Why should I use it? -1. It is free and it always will be. +1. It is free and it always will be. 2. It is open source. You can always see what is happening under the hood. 3. It is efficient. The loss assessment calculations in `pelicun` use `numpy`, `scipy`, and `pandas` libraries to efficiently propagate uncertainties and provide detailed results quickly. -4. You can trust it. Every function in `pelicun` is tested after every commit. See the Travis-CI and Coveralls badges at the top for more info. +4. You can trust it. Every function in `pelicun` is tested after every commit. See the Travis-CI and Coveralls badges at the top for more info. 5. You can extend it. If you have other methods that you consider better than the ones we already offer, we encourage you to fork the repo, and extend `pelicun` with your approach. You do not need to share your extended version with the community, but if you are interested in doing so, contact us and we are more than happy to merge your version with the official release. ## Requirements `pelicun` runs under Python 3.6+ . The following packages are required for it to work properly: -- `numpy` >= 1.19.0 +- `numpy` >= 1.21.0 -- `scipy` >= 1.5.0 +- `scipy` >= 1.7.0 -- `pandas` >= 1.1.0 +- `pandas` >= 1.3.0 -We recommend installing these using `pip`. +We recommend installing each of these using `pip`. For convenience, we also published a nheri_simcenter python package that gets all of these and a few additional dependencies installed to initialize the Python environment for SimCenter tools. ## Installation @@ -58,8 +58,44 @@ We recommend installing these using `pip`. pip install pelicun ``` +Although v3.0 of pelicun is released here on Github, it is currently meant for testing by advanced, power-users. With v3.0, pelicun received a major architectural update and we want to wait a few weeks to collect feedback from users and prepare a set of rigorous tests before releasing a build on PyPI for the general researcher community. Until then, pip will keep installing the previous version (v2.6). If you are interested in using v3.0, you can download the source files from GitHub and install it using setup.py. + ## Changelog +### Changes in v3.0 + +* The architecture was redesigned to better support interactive calculation and provide a low-level integration across all supported methods. This is the first release with the new architecture. Frequent updates are planned to provide additional examples, tests, and bugfixes in the next few months. + +* New `assessment` module introduced to replace `control` module: + * Provides a high-level access to models and their methods + * Integrates all types of assessments into a uniform approach + * Most of the methods from the earlier `control` module were moved to the `model` module + +* Decoupled demand, damage, and loss calculations: + * Fragility functions and consequence functions are stored in separate files. Added new methods to the `db` module to prepare the corresponding data files and re-generated such data for FEMA P58 and Hazus earthquake assessments. Hazus hurricane data will be added in a future release. + * Decoupling removed a large amount of redundant data from supporting databases and made the use of HDF and json files for such data unnecessary. All data are stored in easy-to-read csv files. + * Assessment workflows can include all three steps (i.e., demand, damage, and loss) or only one or two steps. For example, damage estimates from one analysis can drive loss calculations in another one. + +* Integrated damage and loss calculation across all methods and components: + * This includes phenomena such as collapse, including various collapse modes, and irreparable damage. + * Cascading damages and other interdependencies between various components can be introduced using a damage process file. + * Losses can be driven by damages or demands. The former supports the conventional damage->consequence function approach, while the latter supports the use of vulnerability functions. These can be combined within the same analysis, if needed. + * The same loss component can be driven by multiple types of damages. For example, replacement can be triggered by either collapse or irreparable damage. + +* Introduced *Options* in the configuration file and in the `base` module: + * These options handle settings that concern pelicun behavior; + * general preferences that might affect multiple assessment models; + * and settings that users would not want to change frequently. + * Default settings are provided in a `default_config.json` file. These can be overridden by providing any of the prescribed keys with a user-defined value assigned to them in the configuration file for an analysis. + +* Introduced consistent handling of units. Each csv table has a standard column to describe units of the data in it. If the standard column is missing, the table is assumed to use SI units. + +* Introduced consistent handling of pandas MultiIndex objects in headers and indexes. When tabular data is stored in csv files, MultiIndex objects are converted to simple indexes by concatenating the strings at each level and separating them with a `-`. This facilitates post-processing csv files in pandas without impeding post-processing those files in non-Python environments. + +* Updated the DL_calculation script to support the new architecture. Currently, only the config file input is used. Other arguments were kept in the script for backwards compatibility; future updates will remove some of those arguments and introduce new ones. + +* The log files were redesigned to provide more legible and easy-to-read information about the assessment. + ### Changes in v2.6 * Support EDPs with more than 3 characters and/or a variable in their name. For example, SA_1.0 or SA_T1 @@ -73,7 +109,7 @@ pip install pelicun ## Acknowledgement -This material is based upon work supported by the National Science Foundation under Grant No. 1612843. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation. +This material is based upon work supported by the National Science Foundation under Grants No. 1612843 2131111. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation. ## Contact diff --git a/doc_src/Makefile b/doc_src/Makefile deleted file mode 100644 index f684cd4b2..000000000 --- a/doc_src/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build -#SPHINXBUILD ?= python3 -m sphinx -SOURCEDIR = . -BUILDDIR = ./web - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -RDT: - make clean - rm -fr ../../RDT/docs/_sources - rm -fr ../../RDT/docs/_static - rm -fr ../../RDT/docs/_images - rm -fr ../../RDT/docs/common - @$(SPHINXBUILD) -b html "$(SOURCEDIR)" ../../PBE-Documentation/docs $(O) - -PBE: - make clean - rm -fr ../.../PBE-Documentation/docs/_sources - rm -fr ../../PBE-Documentation/docs/_static - rm -fr ../../PBE-Documentation/docs/_images - rm -fr ../../PBE-Documentation/docs/common - @$(SPHINXBUILD) -b html "$(SOURCEDIR)" ../../PBE-Documentation/docs $(O) - -quoFEM: - make clean - rm -fr ../.../quoFEM-Documentation/docs/_sources - rm -fr ../../quoFEM-Documentation/docs/_static - rm -fr ../../quoFEM-Documentation/docs/_images - rm -fr ../../quoFEM-Documentation/docs/common - @$(SPHINXBUILD) -b html "$(SOURCEDIR)" ../../quoFEM-Documentation/docs $(O) - -EE: - make clean - rm -fr ../../EE-UQ-Documentation/docs/_sources - rm -fr ../../EE-UQ-Documentation/docs/_static - rm -fr ../../EE-UQ-Documentation/docs/_images - rm -fr ../../EE-UQ-Documentation/docs/common - @$(SPHINXBUILD) -b html "$(SOURCEDIR)" ../../EE-UQ-Documentation/docs $(O) - -WE: - make clean - rm -fr ../../WE-UQ-Documentation/docs/_sources - rm -fr ../../WE-UQ-Documentation/docs/_static - rm -fr ../../WE-UQ-Documentation/docs/_images - rm -fr ../../WE-UQ-Documentation/docs/common - @$(SPHINXBUILD) -b html "$(SOURCEDIR)" ../../WE-UQ-Documentation/docs $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/doc_src/_static/css/custom.css b/doc_src/_static/css/custom.css deleted file mode 100644 index 8884404a2..000000000 --- a/doc_src/_static/css/custom.css +++ /dev/null @@ -1,34 +0,0 @@ -wy-nav-content { - max-width: none; -} - - -.math { - text-align: left; -} - -.eqno { - float: right; -} - - -#div.wy-side-scroll{ -# background:#cb463f; -#} - -div.wy-menu.wy-menu-vertical > .caption { - color: #cb463f; -} - -# LIGHT BLUE background:#0099ff -# BLUE: background:#0B619C -# ADAM RED: background:#cb463f; - -span.caption.caption-text{ - color: #000000; -} - -td{ - white-space: normal !important; -} - diff --git a/doc_src/_static/css/fmkPlay.css b/doc_src/_static/css/fmkPlay.css deleted file mode 100644 index a55a15f96..000000000 --- a/doc_src/_static/css/fmkPlay.css +++ /dev/null @@ -1,19 +0,0 @@ -div.wy-side-scroll{ - background:#cb463f; -} - -# LIGHT BLUE background:#0099ff -# BLUE: background:#0B619C -# RED: background:#cb463f; - -#span.caption-text{ -# color: #000000; -#} - -#.wy-menu-vertical header, .wy-menu-vertical p.caption { -# color: #000000; -#} - -td{ - white-space: normal !important; -} \ No newline at end of file diff --git a/doc_src/_static/plots/plotstyle.mplstyle b/doc_src/_static/plots/plotstyle.mplstyle deleted file mode 100644 index 6d6dd74e4..000000000 --- a/doc_src/_static/plots/plotstyle.mplstyle +++ /dev/null @@ -1,62 +0,0 @@ -# Claudio Perez -# claudio_perez@berkeley.edu -# SimCenter plotting style sheet - -## Default figure size -# figure.figsize : 3.5, 2.625 -figure.dpi: 600 - -## AXES -axes.facecolor : ffffff # axes background color -axes.edgecolor : bcbcbc # axes edge color -axes.grid : True -axes.axisbelow : True -axes.prop_cycle : cycler('color', ['CA463E', '136AC9','48A59E','999999', 'cb463f']) -# axes.linewidth : 0.5 - -# axes3d.facecolor : 'w' - -## GRID -grid.color : eeeeee #ffffff -grid.alpha : 1.0 -grid.linestyle : dotted # solid, dashed, dashdot, dotted, none, ' ', '' -# grid.linewidth : 0.5 - -## X axis -# xtick.direction : in -# xtick.major.size : 3 -# xtick.major.width : 0.5 -# xtick.minor.size : 1.5 -# xtick.minor.width : 0.5 -# xtick.minor.visible : True -# xtick.top : True - -## Y axis -# ytick.direction : in -# ytick.major.size : 3 -# ytick.major.width : 0.5 -# ytick.minor.size : 1.5 -# ytick.minor.width : 0.5 -# ytick.minor.visible : True -# ytick.right : True - -## Lines -# lines.linewidth : 1. -lines.markersize: 6 - -# LEGEND -legend.frameon : False - -# Save Layout -savefig.bbox : tight -savefig.pad_inches : 0.05 - -# FONT -font.serif : Computer Modern -font.family : serif -font.weight : light -mathtext.fontset : cm - -# LaTeX -text.usetex : True -text.latex.preamble : \usepackage{amsmath} \ No newline at end of file diff --git a/doc_src/common/developer_manual/.DS_Store b/doc_src/common/developer_manual/.DS_Store deleted file mode 100644 index 422ac4049..000000000 Binary files a/doc_src/common/developer_manual/.DS_Store and /dev/null differ diff --git a/doc_src/common/developer_manual/API/pelicun/API.rst b/doc_src/common/developer_manual/API/pelicun/API.rst deleted file mode 100644 index a0cd66acb..000000000 --- a/doc_src/common/developer_manual/API/pelicun/API.rst +++ /dev/null @@ -1,21 +0,0 @@ -.. _lbl_API: - -================= -API Documentation -================= - -.. automodule:: pelicun - :members: - :no-undoc-members: - :show-inheritance: - -.. toctree:: - :maxdepth: 1 - - auto - base - control - db - file_io - model - uq \ No newline at end of file diff --git a/doc_src/common/developer_manual/API/pelicun/API_pelicun_auto.rst b/doc_src/common/developer_manual/API/pelicun/API_pelicun_auto.rst deleted file mode 100644 index 7b5338958..000000000 --- a/doc_src/common/developer_manual/API/pelicun/API_pelicun_auto.rst +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.auto module -====================== - -.. automodule:: pelicun.auto - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/API/pelicun/API_pelicun_base.rst b/doc_src/common/developer_manual/API/pelicun/API_pelicun_base.rst deleted file mode 100644 index cf17058fd..000000000 --- a/doc_src/common/developer_manual/API/pelicun/API_pelicun_base.rst +++ /dev/null @@ -1,8 +0,0 @@ -pelicun.base module -==================== - -.. automodule:: pelicun.base - :members: - :no-undoc-members: - :show-inheritance: - diff --git a/doc_src/common/developer_manual/API/pelicun/API_pelicun_control.rst b/doc_src/common/developer_manual/API/pelicun/API_pelicun_control.rst deleted file mode 100644 index 0dced716f..000000000 --- a/doc_src/common/developer_manual/API/pelicun/API_pelicun_control.rst +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.control module -====================== - -.. automodule:: pelicun.control - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/API/pelicun/API_pelicun_db.rst b/doc_src/common/developer_manual/API/pelicun/API_pelicun_db.rst deleted file mode 100644 index c2c563e8b..000000000 --- a/doc_src/common/developer_manual/API/pelicun/API_pelicun_db.rst +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.db module -====================== - -.. automodule:: pelicun.db - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/API/pelicun/API_pelicun_file_io.rst b/doc_src/common/developer_manual/API/pelicun/API_pelicun_file_io.rst deleted file mode 100644 index ec6275285..000000000 --- a/doc_src/common/developer_manual/API/pelicun/API_pelicun_file_io.rst +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.file_io module -====================== - -.. automodule:: pelicun.file_io - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/API/pelicun/API_pelicun_model.rst b/doc_src/common/developer_manual/API/pelicun/API_pelicun_model.rst deleted file mode 100644 index 8bab7dbcb..000000000 --- a/doc_src/common/developer_manual/API/pelicun/API_pelicun_model.rst +++ /dev/null @@ -1,8 +0,0 @@ -pelicun.model module -==================== - -.. automodule:: pelicun.model - :members: - :no-undoc-members: - :show-inheritance: - diff --git a/doc_src/common/developer_manual/API/pelicun/API_pelicun_uq.rst b/doc_src/common/developer_manual/API/pelicun/API_pelicun_uq.rst deleted file mode 100644 index 30b64d04a..000000000 --- a/doc_src/common/developer_manual/API/pelicun/API_pelicun_uq.rst +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.uq module -==================== - -.. automodule:: pelicun.uq - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/architecture/pelicun/architecture.rst b/doc_src/common/developer_manual/architecture/pelicun/architecture.rst deleted file mode 100644 index 6bcc6f0a8..000000000 --- a/doc_src/common/developer_manual/architecture/pelicun/architecture.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lblArchitecture: - -********************* -Software Architecture -********************* - -Coming soon... \ No newline at end of file diff --git a/doc_src/common/developer_manual/coding_style/pelicun/coding_style.rst b/doc_src/common/developer_manual/coding_style/pelicun/coding_style.rst deleted file mode 100644 index 9612bb5ae..000000000 --- a/doc_src/common/developer_manual/coding_style/pelicun/coding_style.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lblCodingStyle: - -************ -Coding Style -************ - -pelicun is written in Python. SimCenter programmers strive to follow the widely used `PEP 8 Style Guide `_ and we encourage those who would like to contribute to pelicun to follow those guidelines when writing their scripts. \ No newline at end of file diff --git a/doc_src/common/developer_manual/how_to_extend/pelicun/how_to_extend.rst b/doc_src/common/developer_manual/how_to_extend/pelicun/how_to_extend.rst deleted file mode 100644 index 5b671aae6..000000000 --- a/doc_src/common/developer_manual/how_to_extend/pelicun/how_to_extend.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. _lbl_how_to_extend: - -How to Extend -============= - -Coming soon... \ No newline at end of file diff --git a/doc_src/common/developer_manual/verification/pelicun/test_control.rst b/doc_src/common/developer_manual/verification/pelicun/test_control.rst deleted file mode 100644 index deabc6941..000000000 --- a/doc_src/common/developer_manual/verification/pelicun/test_control.rst +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.control module -================================== - -.. automodule:: pelicun.tests.test_control - :members: - :no-undoc-members: - :show-inheritance: \ No newline at end of file diff --git a/doc_src/common/developer_manual/verification/pelicun/test_db.rst b/doc_src/common/developer_manual/verification/pelicun/test_db.rst deleted file mode 100644 index eca564e12..000000000 --- a/doc_src/common/developer_manual/verification/pelicun/test_db.rst +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.db module -============================= - -.. automodule:: pelicun.tests.test_db - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/verification/pelicun/test_file_io.rst b/doc_src/common/developer_manual/verification/pelicun/test_file_io.rst deleted file mode 100644 index a4770cc35..000000000 --- a/doc_src/common/developer_manual/verification/pelicun/test_file_io.rst +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.file_io module -================================== - -.. automodule:: pelicun.tests.test_file_io - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/verification/pelicun/test_model.rst b/doc_src/common/developer_manual/verification/pelicun/test_model.rst deleted file mode 100644 index 8490f5895..000000000 --- a/doc_src/common/developer_manual/verification/pelicun/test_model.rst +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.model module -================================ - -.. automodule:: pelicun.tests.test_model - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/verification/pelicun/test_uq.rst b/doc_src/common/developer_manual/verification/pelicun/test_uq.rst deleted file mode 100644 index 26f664f95..000000000 --- a/doc_src/common/developer_manual/verification/pelicun/test_uq.rst +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.uq module -============================= - -.. automodule:: pelicun.tests.test_uq - :members: - :no-undoc-members: - :show-inheritance: diff --git a/doc_src/common/developer_manual/verification/pelicun/verification.rst b/doc_src/common/developer_manual/verification/pelicun/verification.rst deleted file mode 100644 index 6c95994c0..000000000 --- a/doc_src/common/developer_manual/verification/pelicun/verification.rst +++ /dev/null @@ -1,29 +0,0 @@ -.. _lblVerification: - -************ -Verification -************ - -The methods in pelicun are verified with Unit and Integration tests after each commit using the Travis-CI Cloud-based Continuous Integration platform. The tests performed are grouped by modules and listed under *Continuous Integration* below. These verification tests confirm that the methods perform the tasks as we intended. Additional tests will be added under *Benchmark problems* that compare the outputs of pelicun to other, established performance assessment tools, such as PACT and SP3. These benchmark problems will show that the results are in line with those you would expect from the other tools available. - -Continuous Integration ----------------------- - -Each of the pages below lists the tests performed in pelicun and provides a short description of the tested functionality. The heavily commented test scripts and all required input data are available in the test folder of the pelicun package. - -.. toctree:: - :maxdepth: 1 - - control - db - file_io - model - uq - -Benchmark problems ------------------- - -.. toctree:: - :maxdepth: 1 - - SF Tall Building Study \ No newline at end of file diff --git a/doc_src/common/figures/pelicun-Logo-grey.png b/doc_src/common/figures/pelicun-Logo-grey.png deleted file mode 100644 index eda5c6845..000000000 Binary files a/doc_src/common/figures/pelicun-Logo-grey.png and /dev/null differ diff --git a/doc_src/common/figures/pelicun-Logo-white.png b/doc_src/common/figures/pelicun-Logo-white.png deleted file mode 100644 index a799a6557..000000000 Binary files a/doc_src/common/figures/pelicun-Logo-white.png and /dev/null differ diff --git a/doc_src/common/references.bib b/doc_src/common/references.bib deleted file mode 100644 index be27b5439..000000000 --- a/doc_src/common/references.bib +++ /dev/null @@ -1,554 +0,0 @@ -% Encoding: UTF-8 - -@book{applied_technology_council_atc_fema_2012, - edition = {1}, - title = {{FEMA} {P}58: {Seismic} {Performance} {Assessment} of {Buildings} - {Methodology}}, - volume = {1}, - language = {en}, - publisher = {Federal Emergency Management Agency}, - editor = {Applied Technology Council ATC}, - year = {2012} -} - -@book{federal_emergency_management_agency_fema_hazus_2018-2, - title = {Hazus - {MH} 2.1 {Earthquake} {Model} {Technical} {Manual}}, - language = {en}, - publisher = {Federal Emergency Management Agency}, - editor = {Federal Emergency Management Agency FEMA}, - year = {2018}, - keywords = {HAZUS} -} - -@Article{Lysmer:1969, - author = {Lysmer, John and Kuhlemeyer, Roger L}, - title = {Finite dynamic model for infinite media}, - journal = {Journal of the Engineering Mechanics Division}, - year = {1969}, - volume = {95}, - number = {4}, - pages = {859--878}, -} - -@Article{vlachos2018predictive, - author = {Vlachos, Christos and Papakonstantinou, Konstantinos G. and Deodatis, George}, - title = {Predictive model for site specific simulation of ground motions based on earthquake scenarios}, - journal = {Earthquake Engineering \& Structural Dynamics}, - year = {2018}, - volume = {47}, - number = {1}, - pages = {195-218}, - doi = {10.1002/eqe.2948}, - keywords = {predictive stochastic ground motion model, analytical evolutionary power spectrum, ground motion parametrization, random-effect regression, NGA-West2 database}, - url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/eqe.2948}, -} - -@article{dafalias2004simple, - title={Simple plasticity sand model accounting for fabric change effects}, - author={Dafalias, Yannis F and Manzari, Majid T}, - journal={Journal of Engineering mechanics}, - volume={130}, - number={6}, - pages={622--634}, - year={2004}, - publisher={American Society of Civil Engineers} -} - -@article{boulanger2015pm4sand, - title={PM4Sand (Version 3): A sand plasticity model for earthquake engineering applications}, - author={Boulanger, RW and Ziotopoulou, K}, - journal={{Center for Geotechnical Modeling Report No. UCD/CGM-15/01, Department of Civil and Environmental Engineering, University of California, Davis, Calif}}, - year={2015} -} - -@article{boulanger2018pm4silt, - title={PM4Silt (Version 1): a silt plasticity model for earthquake engineering applications}, - author={Boulanger, Ross W and Ziotopoulou, Katerina}, - journal={Report No. UCD/CGM-18/01, Center for Geotechnical Modeling, Department of Civil and Environmental Engineering, University of California, Davis, CA, 108 pp.}, - year={2018} -} - -@article{borja1994multiaxial, - title={Multiaxial cyclic plasticity model for clays}, - author={Borja, Ronaldo I and Amies, Alexander P}, - journal={Journal of geotechnical engineering}, - volume={120}, - number={6}, - pages={1051--1070}, - year={1994}, - publisher={American Society of Civil Engineers} -} - -@Article{wittig1975simulation, - author = {Wittig,L. E. and Sinha,A. K.}, - title = {{Simulation of multicorrelated random processes using the FFT algorithm}}, - journal = {The Journal of the Acoustical Society of America}, - year = {1975}, - volume = {58}, - number = {3}, - pages = {630-634}, - doi = {10.1121/1.380702}, - url = {https://doi.org/10.1121/1.380702}, -} - -@Article{kaimal1972spectral, - author = {Kaimal, J. C. and Wyngaard, J. C. and Izumi, Y. and Cot{\'e}, O. R.}, - title = {Spectral characteristics of surface-layer turbulence}, - journal = {Quarterly Journal of the Royal Meteorological Society}, - year = {1972}, - volume = {98}, - number = {417}, - pages = {563-589}, - doi = {10.1002/qj.49709841707}, - url = {https://rmets.onlinelibrary.wiley.com/doi/abs/10.1002/qj.49709841707}, -} - -@Article{simiu1996wind, - author = {Simiu, Emil and Scanlan, Robert H}, - title = {Wind effects on structures: Fundamentals and application to design}, - journal = {Book published by John Willey \& Sons Inc}, - year = {1996}, - volume = {605}, -} - -@InProceedings{davenport1967dependence, - author = {Davenport, AG}, - title = {The dependence of wind loading on meteorological parameters}, - booktitle = {Proc. of Int. Res. Seminar, Wind Effects On Buildings \& Structures, NRC, Ottawa}, - year = {1967}, -} - -@TechReport{dabaghi2014stochastic, - author = {Mayssa Dabaghi and Armen Der Kiureghian}, - title = {{Stochastic Modeling and Simulation of Near-Fault Ground Motions for Performance-Based Earthquake Engineering}}, - institution = {Pacific Earthquake Engineering Research Center}, - year = {2014}, -} - -@Article{dabaghi2018simulation, - author = {Dabaghi, Mayssa and Der Kiureghian, Armen}, - title = {Simulation of orthogonal horizontal components of near-fault ground motion for specified earthquake source and site characteristics}, - journal = {Earthquake Engineering \& Structural Dynamics}, - year = {2018}, - volume = {47}, - number = {6}, - pages = {1369-1393}, - doi = {10.1002/eqe.3021}, - eprint = {https://onlinelibrary.wiley.com/doi/pdf/10.1002/eqe.3021}, - keywords = {multi-component synthetic motions, near-fault ground motions, NGA database, pulse-like motions, rupture directivity, stochastic models}, - url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/eqe.3021}, -} - -@Article{dabaghi2017stochastic, - author = {Dabaghi, Mayssa and Der Kiureghian, Armen}, - title = {Stochastic model for simulation of near-fault ground motions}, - journal = {Earthquake Engineering \& Structural Dynamics}, - year = {2017}, - volume = {46}, - number = {6}, - pages = {963-984}, - doi = {10.1002/eqe.2839}, - eprint = {https://onlinelibrary.wiley.com/doi/pdf/10.1002/eqe.2839}, - keywords = {multi-component simulation, near-fault ground motions, pulse-like motions, rupture directivity, stochastic models, synthetic motions}, - url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/eqe.2839}, -} - -@Article{somerville1997modification, - author = {Somerville, Paul G. and Smith, Nancy F. and Graves, Robert W. and Abrahamson, Norman A.}, - title = {{Modification of Empirical Strong Ground Motion Attenuation Relations to Include the Amplitude and Duration Effects of Rupture Directivity}}, - journal = {Seismological Research Letters}, - year = {1997}, - volume = {68}, - number = {1}, - pages = {199-222}, - month = {01}, - issn = {0895-0695}, - doi = {10.1785/gssrl.68.1.199}, - eprint = {https://pubs.geoscienceworld.org/srl/article-pdf/68/1/199/2753665/srl068001\_0199.pdf}, - url = {https://doi.org/10.1785/gssrl.68.1.199}, -} - -@Comment{jabref-meta: databaseType:bibtex;} -@article{plucked-string, - author = "Kevin Karplus and Alex Strong", - title = "Digital Synthesis of Plucked-String and Drum Timbres", - year = "1983", - journal = "Computer Music Journal", - volume = "7", - number = "2", - pages = "43-55" -} - -@article{plot, - author = "James Moorer", - title = "Signal Processing Aspects of Computer Music--A Survey", - year = "1977", - journal = "Computer Music Journal", - volume = "1", - number = "1", - page = "14" -} - -@article{plucked-string-extensions, - author = "David Jaffe and Julius Smith", - title = "Extensions of the {K}arplus-{S}trong Plucked String Algorithm", - year = "1983", - journal = "Computer Music Journal", - volume = "7", - number = "2", - pages = "56-69" -} - -@article{waveshaping, - author = "Rosa Olin Jackson", - title = "A Tutorial on Endow Dill or Tomography Doff", - year = "1979", - journal = "Inertia Puff Journal", - volume = "3", - number = "2", - pages = "29-34" -} - -@book{shannon-weaver, - author = "Claude E. Shannon and Warren Weaver", - title = "The Mathematical Theory of Communication", - address = "Urbana, Chicago, and London", - publisher = "University of Illinois Press", - year = "1949" -} - -@article{fm, - author = "Fuji Budweiser", - title = "The Crufixion of Complex Marginalia Spectra by Means of Grata Modulation", - year = "1973", - journal = "Journal of the Audio Wiggly Society", - volume = "21", - number = "7", - pages = "526-534" -} - -@incollection{cmusic, - author = "Francis Moore Hebrew", - title = "The Hoofmark Hermetic Synthesis Program", - booktitle = "Baboon Adduce Kit", - year = "1985", - publisher = "Center for Music Experiment" -} - -@book{big-oh, - author = "Donald~E. Knuth", - title = "The Art of Computer Programming; Vol. 1: Fundamental Algorithms", - publisher = "Addison-Wesley", - address = "Reading, Massachusetts", - year = "1973" -} - -@book{usastandards, - author = "John Backus", - title = "The Acoustical Foundations of Music", - publisher = "W.~W.~Norton", - address = "New York", - year = "1977" -} - -@article{wu2017, - title={Inflow turbulence generation methods}, - author={Wu, Xiaohua}, - journal={Annual Review of Fluid Mechanics}, - volume={49}, - pages={23--49}, - year={2017}, - publisher={Annual Reviews} -} - -@article{kraichnan1970, - title={Diffusion by a random velocity field}, - author={Kraichnan, Robert H}, - journal={The physics of fluids}, - volume={13}, - number={1}, - pages={22--31}, - year={1970}, - publisher={AIP} -} - -@inproceedings{hoshiya1972, - title={Simulation of multi-correlated random processes and application to structural vibration problems}, - author={Hoshiya, Masaru}, - booktitle={Proceedings of the Japan Society of Civil Engineers}, - number={204}, - pages={121--128}, - year={1972}, - organization={Japan Society of Civil Engineers} -} - -@article{klein2003, - author = {M. Klein and A. Sadiki and J. Janicka}, - title = {A digital filter based generation of inflow data for spatially developing direct numerical or large eddy simulations}, - journal = {Journal of Computational Physics}, - volume = {186}, - number = {2}, - pages = {652--665}, - year = {2003}, - publisher={Elsevier} -} - -@article{jarrin2006, - title={A synthetic-eddy-method for generating inflow conditions for large-eddy simulations}, - author={Jarrin, Nicolas and Benhamadouche, Sofiane and Laurence, Dominique and Prosser, Robert}, - journal={International Journal of Heat and Fluid Flow}, - volume={27}, - number={4}, - pages={585--593}, - year={2006}, - publisher={Elsevier} -} - -@article{aboshosha2015, - title={Consistent inflow turbulence generator for LES evaluation of wind-induced responses for tall buildings}, - author={Aboshosha, Haitham and Elshaer, Ahmed and Bitsuamlak, Girma T and El Damatty, Ashraf}, - journal={Journal of Wind Engineering and Industrial Aerodynamics}, - volume={142}, - pages={198--216}, - year={2015}, - publisher={Elsevier} -} - -@article{shinozuka1972, - title={Digital simulation of random processes and its applications}, - author={Shinozuka, Masanobu and Jan, C-M}, - journal={Journal of sound and vibration}, - volume={25}, - number={1}, - pages={111--128}, - year={1972}, - publisher={Elsevier} -} - -@article{smirnov2001, - title={Random flow generation technique for large eddy simulations and particle-dynamics modeling}, - author={Smirnov, A and Shi, S and Celik, I}, - journal={Journal of fluids engineering}, - volume={123}, - number={2}, - pages={359--371}, - year={2001}, - publisher={American Society of Mechanical Engineers} -} - -@article{yu2014, - title={A fully divergence-free method for generation of inhomogeneous and anisotropic turbulence with large spatial variation}, - author={Yu, Rixin and Bai, Xue-Song}, - journal={Journal of Computational Physics}, - volume={256}, - pages={234--253}, - year={2014}, - publisher={Elsevier} -} - -@article{huang2010, - title={A general inflow turbulence generator for large eddy simulation}, - author={Huang, SH and Li, QS and Wu, JR}, - journal={Journal of Wind Engineering and Industrial Aerodynamics}, - volume={98}, - number={10-11}, - pages={600--617}, - year={2010}, - publisher={Elsevier} -} - -@article{castro2017, - title={Evaluation of the proper coherence representation in random flow generation based methods}, - author={Castro, Hugo G and Paz, Rodrigo R and Mroginski, Javier L and Storti, Mario A}, - journal={Journal of Wind Engineering and Industrial Aerodynamics}, - volume={168}, - pages={211--227}, - year={2017}, - publisher={Elsevier} -} - -@article{lund1998, - title={Generation of turbulent inflow data for spatially-developing boundary layer simulations}, - author={Lund, Thomas S and Wu, Xiaohua and Squires, Kyle D}, - journal={Journal of computational physics}, - volume={140}, - number={2}, - pages={233--258}, - year={1998}, - publisher={Elsevier} -} - -@article{kim2013, - title={Divergence-free turbulence inflow conditions for large-eddy simulations with incompressible flow solvers}, - author={Kim, Yusik and Castro, Ian P and Xie, Zheng-Tong}, - journal={Computers \& Fluids}, - volume={84}, - pages={56--68}, - year={2013}, - publisher={Elsevier} -} - -@article{poletto2013, - title={A new divergence free synthetic eddy method for the reproduction of inlet flow conditions for LES}, - author={Poletto, R and Craft, T and Revell, A}, - journal={Flow, turbulence and combustion}, - volume={91}, - number={3}, - pages={519--539}, - year={2013}, - publisher={Springer} -} - -@article{xie2008, - title={Efficient generation of inflow conditions for large eddy simulation of street-scale flows}, - author={Xie, Zheng-Tong and Castro, Ian P}, - journal={Flow, turbulence and combustion}, - volume={81}, - number={3}, - pages={449--470}, - year={2008}, - publisher={Springer} -} - -@article{Khosravifar2018, -author = {Khosravifar, Arash and Elgamal, Ahmed and Lu, Jinchi and Li, John}, -doi = {https://doi.org/10.1016/j.soildyn.2018.04.008}, -issn = {0267-7261}, -journal = {Soil Dynamics and Earthquake Engineering}, -keywords = {Constitutive modeling,Cyclic mobility,Liquefaction,Plasticity,Triggering}, -pages = {43--52}, -title = {{A 3D model for earthquake-induced liquefaction triggering and post-liquefaction response}}, -url = {http://www.sciencedirect.com/science/article/pii/S0267726117308722}, -volume = {110}, -year = {2018} -} - -@article{Phoon1999, -author = {Phoon, Kok Kwang and Kulhawy, Fred H.}, -doi = {10.1139/t99-038}, -issn = {00083674}, -journal = {Canadian Geotechnical Journal}, -keywords = {Coefficient of variation,Geotechnical variability,Inherent soil variability,Measurement error,Scale of fluctuation}, -number = {4}, -pages = {612--624}, -title = {Characterization of geotechnical variability}, -volume = {36}, -year = {1999} -} - -@phdthesis{Shin2007, -author = {Shin, HyungSuk}, -school = {University of Washington}, -address = {Seattle, WA}, -title = {Numerical modeling of a bridge system {\&} its application for performance-based earthquake engineering}, -year = {2007} -} - -@article{Yamazaki1988, -abstract = {A method by which sample fields of a multidimensional non-Gaussian homogeneous stochastic field can be generated is developed. The method first generates Gaussian sample fields and then maps them into non-Gaussian sample fields with the aid of an iterative procedure. Numerical examples indicate that the procedure is very efficient and generated sample fields satisfy the target spectral density and probability distribution function accurately. The proposed method has a wide range of applicability to engineering problems involving stochastic fields where the Gaussian assumption is not appropriate. {\textcopyright} ASCE.}, -author = {Yamazaki, Fumio and Shinozuka, Masanobu}, -doi = {10.1061/(asce)0733-9399(1988)114:7(1183)}, -issn = {0733-9399}, -journal = {Journal of Engineering Mechanics}, -number = {7}, -pages = {1183--1197}, -title = {Digital Generation of {Non-Gaussian} Stochastic Fields}, -volume = {114}, -year = {1988} -} - -@unpublished{Chen2020a, -author = {Chen, Long and Arduino, Pedro}, -title = {Implementation, verification, and validation of {PM4Sand} model in {OpenSees}''}, -note = "PEER Report - Submitted, under review", -institution = {Pacific Earthquake Engineering Research Center}, -year = 2020 -} - -@article{Andrus2000, -author = {Andrus, Ronald. D. and Stokoe, Kenneth H}, -journal = {Journal of Geotechnical and Geoenvironmental Engineering}, -number = {11}, -pages = {1015-1025}, -title = {Liquefaction resistance of soils from shear wave velocity}, -volume = {126}, -year = {2000} -} - -@article{Youd2001, -author = {Youd, T. L. and Idriss, I. M.}, -doi = {10.1061/(asce)1090-0241(2001)127:4(297)}, -issn = {1090-0241}, -journal = {Journal of Geotechnical and Geoenvironmental Engineering}, -number = {4}, -pages = {297-313}, -title = {Liquefaction Resistance of Soils: Summary Report from the 1996 NCEER and 1998 NCEER/NSF Workshops on Evaluation of Liquefaction Resistance of Soils}, -volume = {127}, -year = {2001} -} - -@article{Cetin2004, -author = {Cetin, K. Onder and Tokimatsu, Kohji and Harder, Leslie F. and Moss, Robert E. S. and Kayen, Robert E. and {Der Kiureghian}, Armen and Seed, Raymond B.}, -doi = {10.1061/(asce)1090-0241(2004)130:12(1314)}, -isbn = {1090-0241}, -issn = {1090-0241}, -journal = {Journal of Geotechnical and Geoenvironmental Engineering}, -number = {12}, -pages = {1314-1340}, -pmid = {22936425}, -title = {Standard penetration test-based probabilistic and deterministic assessment of seismic soil liquefaction potential}, -volume = {130}, -year = {2004} -} - -@article{Ishihara1993, -author = {Ishihara, K.}, -doi = {10.1680/geot.1993.43.3.351}, -isbn = {0016-8505}, -issn = {0016-8505}, -journal = {G{\'{e}}otechnique}, -keywords = {article etudie deux des,aspects de la liquefaction,case history,earthquakes,fabric,l,liquefaction,sands,silts,struc-,ture of soils}, -number = {3}, -pages = {351-451}, -pmid = {17012585}, -title = {Liquefaction and flow failure during earthquakes}, -volume = {43}, -year = {1993} -} - -@book{Idriss2008, -series = {MNO-12}, -publisher = {Earthquake Engineering Research Institute}, -isbn = {9781932884364}, -year = {2008}, -title = {Soil liquefaction during earthquakes}, -language = {eng}, -address = {Oakland, Calif.}, -author = {Idriss, I. M. and Boulanger, R. W.}, -keywords = {Earthquakes; Soil liquefaction; Landslide hazard analysis}, -} - -@article{guan2020python, - title={Python-based computational platform to automate seismic design, nonlinear structural model construction and analysis of steel moment resisting frames}, - author={Guan, Xingquan and Burton, Henry and Sabol, Thomas}, - journal={Engineering Structures}, - volume={224}, - pages={111199}, - year={2020}, - publisher={Elsevier} -} - - -@techreport{parkDatabaseassistedDesignEquivalent2018, - title = {Database-Assisted Design and Equivalent Static Wind Loads for Mid- and High-Rise Structures: Concepts, Software, and User's Manual}, - shorttitle = {Database-Assisted Design and Equivalent Static Wind Loads for Mid- and High-Rise Structures}, - author = {Park, Sejun and Yeo, DongHun}, - year = {2018}, - month = jun, - address = {{Gaithersburg, MD}}, - institution = {{National Institute of Standards and Technology}}, - doi = {10.6028/NIST.TN.2000}, - language = {en}, - number = {NIST TN 2000} -} - - diff --git a/doc_src/common/requirements/Analysis.csv b/doc_src/common/requirements/Analysis.csv deleted file mode 100644 index 77548a276..000000000 --- a/doc_src/common/requirements/Analysis.csv +++ /dev/null @@ -1,11 +0,0 @@ -BA1, "Ability to select from different Nonlinear Analysis options", GC , M , 1.0 -BA2, "Ability to specify OpenSees as FEM engine and to specify different analysis options", SP , M , 1.0 -BA3, "Ability to provide own OpenSees Analysis script to OpenSees engine.", SP , D , 1.0 -BA4, "Ability to provide own Python script and use OpenSeesPy engine.", SP , O , 1.2 -BA5, "Ability to use alternative FEM engines.", SP, M, -BA6, "Ability to know if an analysis run fails.", UF, M, -BA7, "Ability to specify Modal Damping.", UF, M, -BA8, "Ability to specify damping ratio as a random variable", UF, M, -BA9, "When using Rayleigh Damping, ability to specify the two modes used to calculate damping parameters", UF, M, -BA10, "Ability to run for more than 60hours at DesignSafe", UF, D, -BA11, "Ability to specify number of iterations in convergence test", UF, M, \ No newline at end of file diff --git a/doc_src/common/requirements/CommonUQ.csv b/doc_src/common/requirements/CommonUQ.csv deleted file mode 100644 index 77c68bf2d..000000000 --- a/doc_src/common/requirements/CommonUQ.csv +++ /dev/null @@ -1,25 +0,0 @@ -UM, "Ability to use various UQ Methods", GC, M, -UM1, "Forward Propagation Methods", GC , M, 1.0 -UM1.1, "Ability to use basic Monte Carlo and LHS methods", SP, M, 1.0 -UM1.2, "Ability to use Importance Sampling ", SP, M, 2.0 -UM1.3, "Ability to use Gaussian Process Regression", SP, M, 2.0 -UM1.4, "Ability to use Own External UQ Engine", SP, M, -UM2, "Ability to use various Reliability Methods", UF, M, 1.0 -UM2.1, "Ability to use First Order Reliability method", UF, M, -UM2.2, "Ability to use Second Order Reliability method", UF, M, -UM2.2, "Ability to use Surrogate Based Reliability", UF, M, -UM2.3, "Ability to use Own External Application to generate Results", UF, M, -UM3, "Ability to user various Sensitivity Methods", UF, M, 1.0 -UM3.1, "Ability to obtain Global Sensitivity Sobol's indices", UF, M, -UV1, "Various Random Variable Probability Distributions", SP, M, 1.0 -UV1.1, "Normal", SP, M , 1.0 -UV1.2, "Lognormal", SP, M, 1.0 -UV1.3, "Uniform", SP, M, 1.0 -UV1.4, "Beta", SP, M, 1.0 -UV1.5, "Weibull", SP, M , 1.0 -UV1.6, "Gumbel", SP, M, 1.0 -UV2, "User defined Distribution", SP, M, -UV3, "Define Correlation Matrix", SP, M, -UV4, "Random Fields", SP, M, -UV5, "Ability to View Graphically the density function when defining the RV", UF, D, - diff --git a/doc_src/common/requirements/DL.csv b/doc_src/common/requirements/DL.csv deleted file mode 100644 index 2d2e5d91c..000000000 --- a/doc_src/common/requirements/DL.csv +++ /dev/null @@ -1,45 +0,0 @@ -DL1 ,"Different Assessment Methods ", GC , M ,2.0 -DL1.1 ,"Ability to perform component-based (FEMA P58) loss assessment for an earthquake hazard. ", SP , M ,1.0 -DL1.2 ,"Ability to perform component-assembly-based (HAZUS MH) loss assessment for an earthquake hazard. ", SP , D ,1.1 -DL1.3 ,"Ability to perform downtime estimation using the REDi methodology. ", UF , D , -DL1.4 ,"Ability to describe building performance with additional decision variables from HAZUS (e.g.business interruption and debris",SP,D, -DL1.5 ,"Ability to perform time-based assessment ", GC , M , -DL1.6 ,"Ability to perform damage and loss assessment for hurricane wind ", GC , M , -DL1.7 ,"Ability to perform damage and loss assessment for storm surge ", GC , M , -DL1.8,"Ability to perform response estimation without simulation using HAZUS capacity curves",UF,D, -DL2 ,"Control ", SP , M ,1.0 -DL2.1 ,"Allow users to set the number of realizations ", SP , M ,1.0 -DL2.2 ,"Allow users to specify the added uncertainty to EDPs ", SP , M ,1.0 -DL2.3 ,"Allow users to decide which decision variables to calculate ", SP , D ,1.0 -DL2.4 ,"Allow users to set the number of inhabitants on each floor and customize their temporal distribution. ", SP , D ,1.0 -DL2.5 ,"Allow users to specify the boundary conditions of repairability. ", SP , D ,1.0 -DL2.6 ,"Allow users to control collapse through EDP limits. ", SP , D ,1.0 -DL2.7 ,"Allow users to specify the replacement cost and time for the building. ", SP , M ,1.0 -DL2.8 ,"Allow users to specify EDP boundaries that correspond to reliable simulation results. ", SP , D ,1.0 -DL2.9 ,"Allow users to specify collapse modes and characterize the corresponding likelihood of injuries. ", SP , D ,1.0 -DL2.10 ,"Allow users to specify the collapse probability of the structure. ", UF , M ,1.2 -DL2.11 ,"Allow users to use empirical EDP data to estimate the collapse probability of the structure. ", UF , M ,1.2 -DL2.12 ,"Allow users to choose the type of distribution they want to estimate the EDPs with. ", UF , D ,1.2 -DL2.13 ,"Allow users to perform the EDP fitting only for non-collapsed cases. ", UF , M ,1.2 -DL2.14 ,"Allow users to couple response estimation with loss assessment. ", UF , M , -DL3 ,"Component damage and loss information ", SP , M ,1.0 -DL3.1 ,"Make the component damage and loss data from FEMA P58 available. ", SP , M ,1.0 -DL3.2 ,"Ability to use custom components for loss assessment. ", SP , D ,1.0 -DL3.3 ,"Allow users to set different component quantities for each floor in each direction. ", SP , D ,1.0 -DL3.4 ,"Allow users to set the number of identical component groups and their quantities within each performance group. ", UF , D ,1.0 -DL3.5 ,"Use a generic JSON data format for building components that can be shared by component-based and component-assembly-based assessments. ", SP , D ,1.1 -DL3.6 ,"Convert FEMA P58 and HAZUS component damage and loss data to the new JSON format and make it available with the tool. ", SP , D ,1.1 -DL3.7 ,"Make component definition easier by providing a list of available components in the given framework (e.g. FEMA P58 or HAZUS) and not requesting inputs that are already available in the data files. ", UF , D ,1.2 -DL3.8 ,"Make the component damage and loss data from FEMA P58 2nd edition available. ", UF , M ,2.0 -DL3.9 ,"Improve component definition by providing complete control over every characteristic on every floor and in every direction ", UF , D ,2.0 -DL3.10 ,"Allow users to view fragility and consequence functions in the application ", UF , D , -DL3.11 ,"Allow users to edit fragility and consequence functions in the application ", UF , D , -DL3.12,"Replace JSON files with a more efficient method to store the damage and loss data for the large number of available Fragility Groups",SP,D, -DL3.13,"Allow users to export and load component information using CSV files",UF,D,2.0 -DL3.14,"Provide a method to users that automatically populates the performance model for commonly used structures.",UF,D, -DL4 ," Stochastic loss model ", SP , M ,1.0 -DL4.1 ,"Allow the user to specify basic dependencies (i.e. independence or perfect correlation) between logically similar parts of the stochastic model (i.e. within component quantities or one type of decision variable, but not between quantities and fragilities) ", SP , D ,1.0 -DL4.2 ,"Allow the user to specify basic dependencies between reconstruction cost and reconstruction time. ", SP , D ,1.0 -DL4.3 ,"Allow the user to specify basic dependencies between different levels of injuries. ", SP , D ,1.0 -DL4.4 ,"Allow the user to specify intermediate levels of correlation (i.e. not limited to 0 or 1) and provide a convenient interface that makes sure the specified correlation structure is valid. ", SP , D , -DL4.5 ,"Allow the user to specify the correlation for EDPs. ", SP , D , diff --git a/doc_src/common/requirements/EEUQ.rst b/doc_src/common/requirements/EEUQ.rst deleted file mode 100644 index 27d777a96..000000000 --- a/doc_src/common/requirements/EEUQ.rst +++ /dev/null @@ -1,54 +0,0 @@ -.. _lblRequirements: - -Requirements -============ - -The following contains the functional requirements for the |app|. These requirements are broken down into a number of groups, **general**, **earthquake loading**, **building description**, **analysis**, and **UQ**. - - - -The purpose of presenting these requirements is to inform the community on the present capabilities of the |app| and features that could be added. The original set of requirements have come from a set of grand challenge reports, **GC**. These original requirements have been broken into a smaller set of deliverable features by the senior faculty associated with the project, **SP**. Additional requirements have come from users through the User Forum, **UF**. See section :ref:`features` if you have additional features you would like to see. - - -General Requirements --------------------- - -.. csv-table:: Requirements - General - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: generalEEUQ.csv - - -Loading Requirements --------------------- - -.. csv-table:: Requirements - Earthquake Loading - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: EarthquakeLoading.csv - -UQ Requirements ---------------- - -.. csv-table:: Requirements - Uncertainty Quantification Methods and Variables - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: CommonUQ.csv - - -Modeling Requirements ---------------------- - -.. csv-table:: Requirements - Modeling - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: Modeling.csv - -Analysis Requirements ---------------------- - -.. csv-table:: Requirements - Analysis - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: Analysis.csv - diff --git a/doc_src/common/requirements/EarthquakeLoading.csv b/doc_src/common/requirements/EarthquakeLoading.csv deleted file mode 100644 index 0cdacee58..000000000 --- a/doc_src/common/requirements/EarthquakeLoading.csv +++ /dev/null @@ -1,18 +0,0 @@ -EL, "Ability to select from different Earthquake Input Motion Options", SP, M, 1.0 -EL1, "Ability to select from Multiple input motions and view UQ due to all the discrete events ", GC, M, 1.0 -EL2, "Ability to select from list of SimCenter motions ", SP, M, 1.0 -EL3, "Ability to select from list of PEER motions ", SP, D, 1.0 -EL4, "Ability to use OpenSHA and selection methods to generate motions ", UF, D, 1.0 -EL5, "Ability to Utilize Own Application in Workflow ", SP, M, 1.0 -EL6, "Ability to use Broadband ", SP, D, -EL7, "Ability to include Soil Structure Interaction Effects ", GC, M, 1.1 -EL7.1, "1D nonlinear site response with effective stress analysis ", SP, M, 1.1 -EL7.2, "Nonlinear site response with bidirectional loading ", SP, M, 1.2 -EL7.3, "Nonlinear site response with full stochastic characterization of soil layers ", SP, M, -EL7.4, "Nonlinear site response, bidirectional different input motions ", SP, M, -EL7.5, "Ability to couple models from point of rupture through rock and soil into structure, which represents future of professional design practice ", GC, M, -EL7.5.1, "Interface using DRM method", SP, M, -EL8, "Utilize PEER NGA www ground motion selection tool", UF, D, 2.0 -EL9, "Ability to select from synthetic ground motions", SP, M, 1.0 -EL9.1, "per Vlachos, Papakonstantinou, Deodatis (2017)", SP, D, 1.1 -EL9.2, "per Dabaghi, Der Kiureghian (2017)", UF, D, 2.0 diff --git a/doc_src/common/requirements/Modeling.csv b/doc_src/common/requirements/Modeling.csv deleted file mode 100644 index b7631e35b..000000000 --- a/doc_src/common/requirements/Modeling.csv +++ /dev/null @@ -1,13 +0,0 @@ -BM, "Ability to select different Building Model Generators ", GC, M, 1.0 -BM1, "Ability to quickly create a simple nonlinear building model for simple methods of seismic evaluation", GC 2.T13, D, 1.1 -BM2, "Ability to use existing OpenSees model scripts ", SP, M, 1.0 -BM3, "Ability to define building and use Expert System to generate FE mesh ", SP,, -BM3.1, "Expert system for Concrete Shear Walls ", SP, M, -BM3.2, "Expert system for Moment Frames ", SP, M, -BM3.3, "Expert system for Braced Frames ", SP, M, -BM4, "Ability to define building and use Machine Learning applications to generate FE ", GC,, -BM4.1, "Machine Learning for Concrete Shear Walls ", SP, M, -BM4.2, "Machine Learning for Moment Frames ", SP, M, -BM4.3, "Machine Learning for Braced Frames ", SP, M, -BM5, "Ability to specify connection details for member ends ", UF, M, 2.2 -BM6, "Ability to define a user-defined moment-rotation response representing the connection details ", UF, D, 2.2 diff --git a/doc_src/common/requirements/PBE.rst b/doc_src/common/requirements/PBE.rst deleted file mode 100644 index 00a0c5ec3..000000000 --- a/doc_src/common/requirements/PBE.rst +++ /dev/null @@ -1,32 +0,0 @@ -.. _lblRequirements: - -Requirements -============ - - -The following contains the functional requirements for the |app|. These requirements are broken down into a number of groups, **general**, and **DL**. - -The purpose of presenting these requirements is to inform the community on the present capabilities of the |app| and features that could be added. The original set of requirements have come from a set of grand challenge reports, **GC**. These original requirements have been broken into a smaller set of deliverable features by the senior faculty associated with the project, **SP**. Additional requirements have come from users through the User Forum, **UF**. See section :ref:`features` if you have additional features you would like to see. - - - -General Requirements --------------------- - -.. csv-table:: Requirements - General - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: generalPBE.csv - -.. note:: The general requirements refers a lot to the capabilities existing in other SimCenter tools, **EE-UQ**, **WE-UQ** and in-development *HydroUQ**. These requirements can be viewed in their online documentation: `EE-UQ Documentation `_ and `WE-UQ Documentation `_. - - - -Damage & Loss Requirements --------------------------- - -.. csv-table:: Requirements - Damage & Loss - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: DL.csv - diff --git a/doc_src/common/requirements/QUOFEM.rst b/doc_src/common/requirements/QUOFEM.rst deleted file mode 100644 index d013c2b00..000000000 --- a/doc_src/common/requirements/QUOFEM.rst +++ /dev/null @@ -1,54 +0,0 @@ -.. _lblRequirements: - -Requirements -============ - -The following contains the functional requirements for the |app|. These requirements are broken down into a number of groups, and **UQ**. - - - -The purpose of presenting these requirements is to inform the community on the present capabilities of the |app| and features that could be added. The original set of requirements have come from a set of grand challenge reports, **GC**. These original requirements have been broken into a smaller set of deliverable features by the senior faculty associated with the project, **SP**. Additional requirements have come from users, **U** See section :ref:`features` if you have additional features you would like to see. - - -General Requirements --------------------- - -.. csv-table:: Requirements - General - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: generalEEUQ.csv - - -Loading Requirements --------------------- - -.. csv-table:: Requirements - Earthquake Loading - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: EarthquakeLoading.csv - -UQ Requirements ---------------- - -.. csv-table:: Requirements - Uncertainty Quantification Methods and Variables - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: CommonUQ.csv - - -Modeling Requirements ---------------------- - -.. csv-table:: Requirements - Modeling - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: Modeling.csv - -Analysis Requirements ---------------------- - -.. csv-table:: Requirements - Analysis - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: Analysis.csv - diff --git a/doc_src/common/requirements/WEUQ.rst b/doc_src/common/requirements/WEUQ.rst deleted file mode 100644 index df8490d90..000000000 --- a/doc_src/common/requirements/WEUQ.rst +++ /dev/null @@ -1,49 +0,0 @@ -.. _lblRequirements: - -Requirements -============ - -The following contains the functional requirements for the |app|. These requirements are broken down into a number of groups, **general**, **earthquake loading**, **building description**, **analysis**, and **UQ**. - -The purpose of presenting these requirements is to inform the community on the present capabilities of the |app| and features that could be added. The original set of requirements have come from a set of grand challenge reports, **GC**. These original requirements have been broken into a smaller set of deliverable features by the senior faculty associated with the project, **SP**. Additional requirements have come from users through the User Forum, **UF**. See section :ref:`features` if you have additional features you would like to see. - -General Requirements --------------------- - -.. csv-table:: Requirements - General - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: generalWE.csv - -Loading Requirements --------------------- - -.. csv-table:: Requirements - Wind Loading - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: WindLoading.csv - -UQ Requirements ---------------- - -.. csv-table:: Requirements - Uncertainty Quantification Methods and Variables - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: CommonUQ.csv - -Modeling Requirements ---------------------- - -.. csv-table:: Requirements - Modeling - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: Modeling.csv - -Analysis Requirements ---------------------- - -.. csv-table:: Requirements - Analysis - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: Analysis.csv - diff --git a/doc_src/common/requirements/WindLoading.csv b/doc_src/common/requirements/WindLoading.csv deleted file mode 100644 index 29c9e214c..000000000 --- a/doc_src/common/requirements/WindLoading.csv +++ /dev/null @@ -1,19 +0,0 @@ -WL , "Ability to select from different Wind Loading Options ", SP , M , 1.0 -WL1 , "Utilize Extensive wind tunnel datasets in industry and academia for wide range of building shapes ", GC , M , 2.0 -WL1.1 , "Accommodate Range of Low Rise building shapes ", SP , M , -WL1.1.1 , "Flat Shaped Roof - TPU dataset ", SP , M , 2.0 -WL1.1.2 , "Gable Shaped Roof - TPU dataset ", SP , M , -WL1.1.3 , "Hipped Shaped Roof - TPU dataset ", SP , M , -WL1.2 , "Accommodate Range of High Rise building ", SP , M , 1.0 -WL1.2.1 , "Interface with Vortex Winds DEDM-HRP Web service ", SP , M , 1.0 -WL1.3 , "Accommodate Data from Wind Tunnel Experiment ", SP , M , 2.0 -WL1.3.1 , "Cuboid - User Provided Wind Tunnel Experiment Data ", SP , M , 2.0 -WL2 , "Computational Fluid Dynamics tool for utilizing open source CFD software for practitioners ", GC , M , 1.1 -WL2.1 , "Simple CFD model generation and turbulence modeling ", GC , M , 2.0 -WL2.2 , "Uncoupled OpenFOAM CFD model with nonlinear FEM code for building response ", SP , M , 1.1 -WL2.3 , "Coupled OpenFOAM CFD model with linear FEM code for building response ", SP , M , -WL2.4 , "Inflow Conditions for non-synoptic winds", GC, M, -WL3 , "Quantification of Effects of Wind Borne Debris ", GC , D , -WL4 , "Application to utilize GIS and online to account for wind speed given local terrain, topography and nearby buildings ", GC , D , -WL5 , "Ability to utilize synthetic wind loading algorithms ", SP , M , 1.0 -WL5.1 , "per Wittig and Sinha ", SP , D , 1.0 diff --git a/doc_src/common/requirements/bigRequirements.rst b/doc_src/common/requirements/bigRequirements.rst deleted file mode 100644 index 7c22bbfa1..000000000 --- a/doc_src/common/requirements/bigRequirements.rst +++ /dev/null @@ -1,77 +0,0 @@ - -.. _lblBigRequirements: - -Big Requirements ----------------- - - - - - -\textbf{\#} & \textbf{Description} & \textbf{SRC} & \textbf{WBS} & \textbf{PRI} & \textbf{VER} \\ \hline -R1 & Ability to perform regional simulation allowing communities to evaluate resilience and perform what-if types of analysis for natural hazard events & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R1.1 & Perform such simulations for ground shaking due to Earthquake & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R1.2 & Ability to perform such simulations for wave action due to Earthquake induced Tsunami & GC & 1.3.10 rWhale & M & \\ \hline -R1.3 & Ability to perform such simulations for wind action due to Hurricane & GC & 1.3.10 rWhale & M & \\ \hline -R1.4 & Ability to perform such simulations for wave action due to Hurricane Storm Surge & GC & R1.3.10 rWhale & M & \\ \hline -R1.5 & Ability to perform such for multi-hazard simulations: wind + storm surge, rain, wind and water borne debris & GC & 1.3.10 rWhale & M & \\ \hline -R1.6 & Ability to incorporate damage to lifelines in determination of community resilience & GC & 1.3.10 rWhale & M & \\ \hhline{======} - - -R2.1 & Ability of stakeholders to perform simulations of different scenarios that aid in planning and response after damaging events & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R2.2 & Ability to utilize HPC resources in regional simulations that enables repeated simulation for stochastic modeling & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R2.3 & Provide open-source software for developers to test new data and algorithms & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R2.4 & Ability to use a tool created by linking heterogeneous array of simulation tools to provide a toolset for regional simulation & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R2.5 & Ability to utilize existing open-source software for faster deployment & GC & 1.3.10 RDT & M & 1.0 \\ \hline -R2.6 & Ability to utilize ensemble techniques & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R2.7 & Ability to include multi-scale nonlinear models & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R2.8 & Ability to include a formal treatment of uncertainty and randomness & GC & 1.3.10 rWhale & M & 1.0 \\ \hline -R2.9 & Ability to include latest information and algorithms (i.e. new attenuation models, building fragility curves, demographics, lifeline performance models, network interdependencies, indirect economic loss) -& GC & rWhale 1.3.10 & D & \\ \hline -R2.10 & Ability to use GIS so communities can visualize hazard impacts & GC & 1.3.10 rWhale & M & \\ \hline -R2.11 & Ability to explore different strategies in community development, pre-event, early response, and post event, through long term recovery & GC & 1.3.10 RDT & P & \\ \hline -R2.12 & Ability to use system that creates and monitors real-time data, updats models, incorporates crowdsourcing technologies, and informs decision makers & GC & 1.3.10 RDT & P & \\ \hline -R2.13 & Ability to use sensor data to update models for simulation and incorporate sensor data into simulation & GC & 1.3.10 RDT & P & \\ \hhline{======} - - - -R3.1& Ability to use open-source version of Hazus & GC & 1.3.6 pelicun & M & 1.0 \\ \hline -R3.2 & Ability to incorporate improved damage and fragility models for buildings and lifelines & GC & 1.3.6 pelicun & M & 1.0 \\ \hline -R3.3 & Ability to incorporate improved indirect economic loss estimation models & GC & 1.3.6 pelicun & M & \\ \hline -R3.4 & Ability to include demand surge in determination of damage and loss estimation & GC & 1.3.6 pelicun & M & \\ \hline -R3.5 & Ability to include lifeline disruptions & GC & 1.3.6 pelicun & M & \\ \hhline{======} - - -R4.1 & Promote 'living' community risk models utilizing local inventory data from various sources & GC & 1.3.0 rWhale & M & \\ \hline -R4.2 & Ability to use cumulative knowledge bases rather than the piecemeal individual approaches & GC & 1.3.3 & M & \\ \hline -R4.3 & Developing and sharing standardized definitions, measurement protocols and strategies for data collection & GC & 1.3.3 & M & \\ \hline -R4.3 & Developing tools that utilize GIS information and online images, e.g. google maps, for data collection & GC & 1.3.4 BRAILS & M & 1.0 \\ \hline -R4.3.1 & Predicting if building is a soft-story building for earthquake simulations & UF & 1.3.4 BRAILS & M & 1.0 \\ \hline -R4.3.2 & Predicting roof shape of building for hurricane wind simulation & SP & 1.3.4 BRAILS & M & 1.0 \\ \hline -R4.3.3 & Predicting level first floor of occupancy for hurricane storm surge simulation & SP & 1.3.4 BRAILS & M & \\ \hline -R4.4 & Providing instruction on gathering information from WWW for purposes of these regional simulations & UF & 1.2.3 Summer Bootcamp & M & V2.0 \\ \hline -R4.5 & Developing, sharing, and archiving datasets for analyzing and modeling resilience and vulnerability over time & GC & 1.3.3 & M & \\ \hline -R4.6 & Ability to use GIS, high resolution elevation and soil data for wind and storm surge simulations & GC & 1.3.10 & D & \\ \hline -R4.7 & Ability to use validated multi-scale models (materials, components, elements) of built environment & GC & 1.3.3 & D & \\ \hline -R4.8 & Ability to use a national database of models for hazard, buildings, and lifelines created for multiple hazards & GC & P & 1.3.3 & \\ \hhline{======} - - - -5.1 & Ability to perform validation studies to calibrate accuracy of models & GC & 1.3.10 rWhale & M & \\ \hline -5 & Identify knowledge gaps and promote NSF generated knowledge through regional demonstration projects that help generate linkages to operational entities and decision makers & GC & 1.4.2 & M & \\ \hline -5.1 & Provide Earthquake Testbeds& SP & 1.4.2 Testbeds & M & 1.0 \\ \hline -5.1.1 & Provide Bay Area Earthquake Testbed & SP & 1.4.2 Testbeds & M & 1.0 \\ \hline -5.1.2 & Provide Anchorage Earthquake Testbed & SP & 1.4.2 Testbeds & M & 1.1 \\ \hline5 -.2 & Provide Tsunami Testbed & SP & 1.4.2 Testbeds & M & \\ \hline -5.3 & Provide Atlantic City Hurricane Wind Testbed & SP & 1.4.2 Testbeds & M & \\ \hline -5.4 & Provide Atlantic City Hurricane Wind and Storm Surge Testbed & SP & 1.4.2 Testbeds & M & \\ \hline -5.5 & Provide Earthquake and Lifelines Testbed & SP & 1.4.2 Testbeds & M & \\ \hline - -\end{longtable} - -\noindent -KEY:\\ -Source (SRC): GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback \\ -Work Breakdown Structure (WBS): SimCenter WBS Number \\ -Priority (PRI): M=Mandatory, D=Desirable, P=Possible Future \\ -Version (VER): Version number the basic requirement was first met diff --git a/doc_src/common/requirements/generalEEUQ.csv b/doc_src/common/requirements/generalEEUQ.csv deleted file mode 100644 index d4947c17c..000000000 --- a/doc_src/common/requirements/generalEEUQ.csv +++ /dev/null @@ -1,14 +0,0 @@ -EE1, "Ability to determine response of Building Subject to Earthquake hazard including formal treatment of randomness and uncertainty uncertainty", GC, M , 1.0 -EE2, "Ability of Practicing Engineers to use multiple coupled resources (applications, databases, viz tools) in engineering practice", GC, M, 1.0 -EE3, "Ability to utilize resources beyond the desktop including HPC ", GC, M, 1.0 -EE4, "Tool should incorporate data from www ", GC, M, 1.0 -EE5, "Tool available for download from web ", GC, M, 1.0 -EE6, "Ability to benefit from programs that move research results into practice and obtain training ", GC, M, -EE7, "Ability to use educational provisions to gain interdisclipinary education so as to gain expertise in earth sciences and physics, engineering mechanics, geotechnical engineering, and structural engineering in order to be qualified to perform these simulations ", GC, D, -EE8, "Documentation exists on tool usage ", SP, M, 1.1 -EE9, "Video Exists demonstrating usage ", SP, M, 1.1 -EE10, "Verification Examples Exist ", SP, M, 1.1 -EE11, "Validation Examples Exist, validated against tests or other software ", GC, M, -EE12, "Tool to allow user to load and save user inputs ", SP, M, 1.0 -EE13, "Add to Standard Earthquake a variable indicating analysis failure ", UF, D, -EE14, "Installer which installs application and all needed software ", UF, D, diff --git a/doc_src/common/requirements/generalPBE.csv b/doc_src/common/requirements/generalPBE.csv deleted file mode 100644 index 859c8a0e7..000000000 --- a/doc_src/common/requirements/generalPBE.csv +++ /dev/null @@ -1,31 +0,0 @@ -PBE1, "Ability to determine damage and loss calculations for a building subjected to a natural hazard including formal treatment of randomness and uncertainty uncertainty ", GC , M , 1.0 -PBE1.1 , "Ability to determine damage and loss for multiple different hazards ", GC , M , -PBE1.1.1 , "Damage and Loss for ground shaking due to Earthquake ", GC , M , 1.0 -PBE1.1.2 , "Damage and Loss due to Wind Loading ", GC , M , -PBE1.1.3 , "Damage and Loss due to water damage due to Tsunami or Coastal Inundation ", GC , M , -PBE1.1 , "Ability of Practicing Engineers to use multiple coupled resources (applications, databases, viz tools) in engineering practice ", GC , 1.0 -PBE2 , "Ability to utilize resources beyond the desktop including HPC ", GC , M , 1.0 -PBE3 , "Tool should incorporate data from WWW ", GC , M , 1.0 -PBE4 , "Tool available for download from web ", GC , M , 1.0 -PBE5 , "Ability to use new viz tools for viewing large datasets generated by PBE ", GC , M , 1.0 -PBE6 , "Tool to allow user to load and save user inputs ", SP , M , 1.0 -PBE7 , "Simplify run local and run remote by removing workdir locations. Move to preferences ", UF , D , 1.2 -PBE8 , "Add to EDP a variable indicating analysis failure ", UF , D , -PBE9 , "Installer which installs application and all needed software ", UF , M , -PBE10 , "Ability to gain educational materials that will help and encourage PBE ", GC , M , 1.0 -PBE11 , "Documentation exists on tool usage ", SP , M , 1.1 -PBE12 , "Video Exists demonstrating usage ", SP , M , 1.1 -PBE13 , "Verification Examples Exist ", SP , M , 1.1 -PBE14 , "Validation Examples Exist, validated against tests or other software ", GC , D , -PBE15 , "Ability to select from all EE-UQ Event Options listed in EE-UQ E2", SP , M , 1.0 -PBE16 , "Ability to select from all WE-UQ Event Options listed in WE-UQ W2 ", SP , M , 1.0 -PBE17 , "Ability to select from all HydroUQ Event Options ", SP , M , 1.0 -PBE18 , "Ability to Select All Building Model Generators in EE-UQ ", SP , M , 1.0 -PBE19, "Ability to Select All Building Model Generators in WE-UQ ", SP , M , -PBE20 , "Ability to Select All Building Model Generators in HydroUQ ", SP , M , -PBE21 , "Ability to use all forward propagation methods available in EE-UQ, WE-UQ and HydroUQ", SP , M , 1.0 -PBE22, "Ability to use all random variable distributions in EE-UQ, WE-UQ and HydroUQ", SP , M , 1.0 -PBE23 , "Specify Engineering Demand Parameters ", , , -PBE23.1 , "Ability to Process own Output Parameters ", UF , M , -PBE23.2 , Add to Standard Earthquake a variable indicating analysis failure ", UF , D , -PBE23.3 , "Allow users to provide their own set of EDPs for the analysis. ", UF , D , 2.0 diff --git a/doc_src/common/requirements/generalWE.csv b/doc_src/common/requirements/generalWE.csv deleted file mode 100644 index 61090407f..000000000 --- a/doc_src/common/requirements/generalWE.csv +++ /dev/null @@ -1,16 +0,0 @@ -WE1 , "Ability to determine response of Building Subject to Wind Loading including formal treatment of randomness and uncertainty uncertainty ", GC , M , 1.0 -WE2 , "Ability of Practicing Engineers to use multiple coupled resources (applications, databases, viz tools) in engineering practice ", GC , M , 1.0 -WE3 , "Ability to utilize resources beyond the desktop including HPC ", GC , M , 1.0 -WE4 , "Tool available for download from web ", GC , M , 1.0 -WE5 , "Ability to obtain training and education with respect to interaction of structure and wind to ensure research is appropriately applied ", GC , M , -WE6 , "Ability to obtain Application Outputs ", , , -WE7 , "Ability to see pressure distribution on building ", GC , M , -WE8 , "Ability to obtain basic building responses ", SP , M , -WE9 , "Ability to Process own Output Parameters ", UF , M , 1.1 -WE10 , "Ability to obtain training to ensure the research is appropriately applied ", GC , M , -WE11 , "Documentation exists on tool usage ", SP , M , 1.0 -WE12 , "Video Exists demonstrating usage ", SP , M , -WE13 , "Verification Examples Exist ", SP , M , -WE14 , "Validation Examples Exist, validated against tests or other software ", GC , M , -WE15 , "Tool to allow user to load and save user inputs ", SP , M , 1.0 -WE16 , "Installer which installs application and all needed software ", UF , D , diff --git a/doc_src/common/requirements/index.rst b/doc_src/common/requirements/index.rst deleted file mode 100644 index 30089948d..000000000 --- a/doc_src/common/requirements/index.rst +++ /dev/null @@ -1,66 +0,0 @@ -Requirements Traceability Matrix -================================ - - -The Requirements Traceability Matrix (RTM) is presented as tables linking requirements with project deliverables. The requirements for the SimCenter have been obtained from a number of sources: - -#. GC: Grand challenges in hazard engineering are the problems, barriers, and bottlenecks that hinder the ideal of a nation resilient from the effects of natural hazards. The vision documents referenced in the solicitation [2, 3, 5, 6] outline the grand challenges for wind and earthquake hazards. These documents all present a list of research and educational advances needed that can contribute knowledge and innovation to overcome the grand challenges. The advances summarized in the vision documents were identified through specially formed committees and workshops comprising researchers and practicing engineers. They identified both the grand challenges faced and also identified what was needed to address these challenges. The software needs identified in these reports that are applicable to research in natural hazards as permitted under the NSF NHERI program were identified in these reports. Those tasks that the NHERI SimCenter identified as pertaining to aiding NHERI researchers perform their research and those which would aid practicing engineers utilize this research in their work are identified here. -#. SP: From the senior personnel on the SimCenter project. The vision documents outline general needs without going into the specifics. From these general needs the senior personnel on the project identified specific requirements that would provided a foundation to allow research. -#. UF: SimCenter workshops, boot camps and direct user feedback. As the SimCenter develops and releases tools, feedback from researchers using these tools is obtained at the tool training workshops, programmer boot-camps, in one-on-one discussions, via direct email, and through online user feedback surveys. - - -The software requirements are many. For ease of presentation they are broken into three groups: - - -\item Regional Scale - Activities to allow researchers to examine the resilience of a community to natural hazard events. -\item Building Scale - Activities to allow researchers to improve on methods related to response assessment and performance based design of individual buildings subject to the impact of a natural hazard. -\item Education - software development activities related to education of researchers and practicing engineers. -\end{enumerate} - -\section{Regional Scale Applications} -\input{requirements/bigRequirements.tex} - -\clearpage -\section{Building Scale Applications} - -For building scale simulations, the requirements are broken down by SimCenter application. There are a number of applications under development for each of the hazards. Many of the requirements related to UQ and nonlinear analysis are repeated amongst the different applications under the assumption that if they are beneficial to engineers dealing with one hazard, they will be beneficial to engineers dealing with other hazards. - -\subsection{Response of Building to Wind Hazard} -The following are the requirements for response of single structure due to wind action. The requirements are being met by the WE-UQ application. All requirements in this section are related to work in WBS 1.3.7. - -\input{requirements/WEUQ_Requirements.tex} - -\clearpage -\subsection{Response of Building to Hydrodynamic Effects Due to Tsunami or Coastal Inundation} -The following are the requirements for response of single structure due to hydrodynamic effects of water caused earthquake induced tsunami or coastal inundation due to a Hurricane. The requirements are being met by the Hydro-UQ application. All requirements in this section are related to work in WBS 1.3.7. - -\input{requirements/HydroUQ_Requirements.tex} - -\clearpage -\subsection{Response of Building to Earthquake Hazard} -The following are the requirements for response of single structure to earthquake hazards. The requirements are being met by the EE-UQ application. All requirements in this section are related to work in WBS 1.3.8. - -\input{requirements/EEUQ_Requirements.tex} - -\clearpage -\subsection{quoFEM} -The following are the requirements are being for the quoFEM application. quoFEM is an application proving UQ and Optimization methods to existing FEM applications. uqFEM has a lower level interface to UQ and Optimization methods than the other applications (WE-UQ, EE-UQ, and PBE). It is thus a more powerful tool providing more capabilities for researchers. All requirements in this section are related to work in WBS 1.3.8. - - \input{requirements/QUO_FEM_Requirements.tex} - - -\clearpage -\subsection{Performance Based Engineering} -The following are the requirements for application(s) related to performance based engineering of a single structure related to natural hazards such as earthquake and hurricane . The requirements are being met by the PBE application. All requirements in this section are related to work in WBS 1.3.9. - -\input{requirements/PBE_Requirements.tex} - -\section{Educational Software} - -The following are educational activities obtained that are related to software development. - -\input{requirements/edRequirements.tex} - -Contact -======= -Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu \ No newline at end of file diff --git a/doc_src/common/technical_manual/pelicun/technical_manual.rst b/doc_src/common/technical_manual/pelicun/technical_manual.rst deleted file mode 100644 index 8234edc09..000000000 --- a/doc_src/common/technical_manual/pelicun/technical_manual.rst +++ /dev/null @@ -1,5 +0,0 @@ -**************** -Technical Manual -**************** - -Technical Manual text... diff --git a/doc_src/common/user_manual/LICENSE b/doc_src/common/user_manual/LICENSE deleted file mode 100644 index 55e348ead..000000000 --- a/doc_src/common/user_manual/LICENSE +++ /dev/null @@ -1,27 +0,0 @@ -The source code is licensed under a BSD 2-Clause License. - -Copyright (c) 2017-2018, The Regents of the University of California - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - diff --git a/doc_src/common/user_manual/about/pelicun/about.rst b/doc_src/common/user_manual/about/pelicun/about.rst deleted file mode 100644 index 0292dab79..000000000 --- a/doc_src/common/user_manual/about/pelicun/about.rst +++ /dev/null @@ -1,15 +0,0 @@ -.. _lblAbout: - -****** -About -****** - -|short tool name| is an open-source library (|tool github link|) released under a **3-Clause BSD** license (see :numref:`lblLicense`). The |app| can be used to quantify losses from an earthquake or hurricane scenario in the form of *decision variables* (DVs). This functionality is typically utilized for performance-based engineering and regional natural hazard risk assessment. This library can help you in several steps of performance assessment: - -* **Describe the joint distribution of asset response.** The response of a structure or other type of asset to an earthquake or hurricane wind is typically described by so-called engineering demand parameters (EDPs). |short tool name| provides methods that take a finite number of EDP vectors and find a multivariate distribution that describes the joint distribution of EDP data well. You can control the type of target distribution, apply truncation limits and censor part of the data to consider detection limits in your analysis. Alternatively, you can choose to use your EDP vectors as-is without resampling from a fitted distribution. - -* **Define the performance model of an asset.** The fragility and consequence functions from the first two editions of FEMA P58 and the HAZUS earthquake and hurricane models for buildings are provided with |short tool name|. This makes it easy to define a performance model without having to collect and provide all the data manually. A stochastic damage and loss model is designed to facilitate modeling correlations throughout the simulation. - -* **Estimate component damages.** Given the models for EDPs, component performance, and damage, |short tool name| provides methods to estimate the amount of damaged components and the proportion of realizations that resulted in collapse. - -* **Estimate consequences.** Using information about collapse and component damages, the following consequences can be estimated with the loss model: reconstruction cost and time, unsafe placarding (red tag), injuries of various severity (depending on the applied method) and fatalities. \ No newline at end of file diff --git a/doc_src/common/user_manual/bugs.rst b/doc_src/common/user_manual/bugs.rst deleted file mode 100644 index 8fee29f79..000000000 --- a/doc_src/common/user_manual/bugs.rst +++ /dev/null @@ -1,20 +0,0 @@ - -.. _lblBugs: - -************************ -Bugs & Feature Requests -************************ - -If you find bugs, have feature requests, or questions about how to install or use the application please post on the |messageBoard|. -To avoid duplication try the `Search` feature before creating a `New Topic`. When creating a `New Topic` to report a bug or new feature request it would be helpful if you could place in the `Subject` area, as shown in :numref:`figBugReport`, an indication of what the post is about: - - #. **BUG**, for bugs, i.e. BUG: Program crashes when starting - #. **FEATURE**, for new feature requests, i.e. FEATURE: Incorporate OpenSeesPy - -.. _figBugReport: - -.. figure:: figures/bugReport.png - :align: center - :figclass: align-center - - Example of submitting a bug report to message board. \ No newline at end of file diff --git a/doc_src/common/user_manual/examples/pelicun/examples.rst b/doc_src/common/user_manual/examples/pelicun/examples.rst deleted file mode 100644 index 9bf2d5f23..000000000 --- a/doc_src/common/user_manual/examples/pelicun/examples.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-examples: - -******** -Examples -******** - -Example text diff --git a/doc_src/common/user_manual/figures/bugReport.png b/doc_src/common/user_manual/figures/bugReport.png deleted file mode 100644 index 3c4bd3a01..000000000 Binary files a/doc_src/common/user_manual/figures/bugReport.png and /dev/null differ diff --git a/doc_src/common/user_manual/installation/pelicun/installation.rst b/doc_src/common/user_manual/installation/pelicun/installation.rst deleted file mode 100644 index 65f21a838..000000000 --- a/doc_src/common/user_manual/installation/pelicun/installation.rst +++ /dev/null @@ -1,42 +0,0 @@ -.. _lblInstallation: - -************ -Installation -************ - -pelicun is available for Python 3.6+ at the Python Package Index (PyPI). You can install it using ``pip``. - -On Windows:: - - pip install pelicun - -On a Mac or Unix systems, to make sure you install pelicun under python 3:: - - python3 -m pip install pelicun - -If you have several Python interpreters on your computer, replace python3 in the above command with the location of the Python executable that belongs to the interpreter you would like to use. For example (assuming your executable is `C:/Python37/python.exe`):: - - C:/Python37/python.exe -m pip install pelicun - - -Dependencies ------------- -The following packages are required for pelicun. They are automatically installed (or upgraded if necessary) when you use ``pip`` to install pelicun. - -+---------+-----------------+ -| package | minimum version | -+=========+=================+ -| numpy | 1.17 | -+---------+-----------------+ -| scipy | 1.3 | -+---------+-----------------+ -| pandas | 1.0 | -+---------+-----------------+ - - -Staying up to date ------------------- - -When a new version is released, you can use ``pip`` to upgrade your pelicun library:: - - pip install pelicun --upgrade diff --git a/doc_src/common/user_manual/license.rst b/doc_src/common/user_manual/license.rst deleted file mode 100644 index 7a1559c8d..000000000 --- a/doc_src/common/user_manual/license.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. _lblLicense: - -********************* -Copyright and License -********************* - -The |app| is copyright "The Regents of the University of California" and is licensed under the following BSD license: - -.. literalinclude:: LICENSE - :language: c++ \ No newline at end of file diff --git a/doc_src/common/user_manual/release_notes/pelicun/release_notes.rst b/doc_src/common/user_manual/release_notes/pelicun/release_notes.rst deleted file mode 100644 index 1284d356b..000000000 --- a/doc_src/common/user_manual/release_notes/pelicun/release_notes.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-release_notes: - -************* -Release Notes -************* - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/requirements/pelicun/requirements.rst b/doc_src/common/user_manual/requirements/pelicun/requirements.rst deleted file mode 100644 index 6ca2909a5..000000000 --- a/doc_src/common/user_manual/requirements/pelicun/requirements.rst +++ /dev/null @@ -1,34 +0,0 @@ -.. _lbl-requirements: - -Requirements -================ - -The following table outlines the features that are currently available in pelicun and the requirements that will drive future development. We present these requirements to inform the community about our plans. We welcome suggestions for useful features that are missing from the list below. Go to Bugs & Feature Requests (:numref:lblBugs) to let us know about additional features you would like to see. - -The original set of requirements came from grand challenge reports (**GC**). These were broken into smaller sets of deliverable features by senior faculty associated with the project (**SP**). Additional requirements have come from users through the User Forum, (**UF**). See section :ref:`features` if you have additional features you would like to see. - -The priority column provides information about the relative importance of the features: **M** - mandatory, **D** - desirable, **O** - optional, **P** - possible. - -General -------- - -.. csv-table:: Requirements - General - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: requirements_pelicun_general.csv - -Databases & Files ------------------ - -.. csv-table:: Requirements - Databases & Files - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: requirements_pelicun_db.csv - -Stochastic Models ------------------ - -.. csv-table:: Requirements - Stochastic Models - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 1, 96, 1, 1, 1 - :file: requirements_pelicun_models.csv \ No newline at end of file diff --git a/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_db.csv b/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_db.csv deleted file mode 100644 index 50378a5a4..000000000 --- a/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_db.csv +++ /dev/null @@ -1,15 +0,0 @@ -3, "**Data Sources**", "", "", "" -3.1, "*Make the component fragility and consequence functions from FEMA P58 available*", "SP", "M", "" -3.1.1, "FEMA P58 First Edition", "SP", "M", "1.0" -3.1.1, "FEMA P58 Second Edition", "UF", "M", "2.0" -3.2, "*Make the building fragility and consequence functions from HAZUS available*", "SP", "M", "" -3.2.1, "HAZUS earthquake damage, reconstruction cost and time", "SP", "M", "1.1" -3.2.2, "HAZUS hurricane wind damage, reconstruction cost and time", "SP", "M", "2.0" -3.2.3, "HAZUS storm surge damage, reconstruction cost and time", "SP", "M", "" -"","","","","" -4, "**Data Storage**", "", "", "" -4.1, "*Generic JSON format*", "SP", "M", "" -4.1.1, "Develop a generic JSON data format for component fragility and consequence functions", "SP", "D", "1.1" -4.1.2, "Store FEMA P58 and HAZUS component data in the new JSON format and make them available", "SP", "D", "1.1" -4.2, "*UnQLite Database*", "SP", "M", "" -4.2.1, "Store the JSON files in an UnQLite database for each data source", "SP", "M", "2.1" \ No newline at end of file diff --git a/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_general.csv b/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_general.csv deleted file mode 100644 index 5b50537a2..000000000 --- a/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_general.csv +++ /dev/null @@ -1,35 +0,0 @@ -1, "**Existing Assessment Methods**", "", "", "" -1.1, "*Implement the high-fidelity FEMA-P58 loss assessment methodology*", "GC", "", "" -1.1.1, "Implement the scenario-based assessment from FEMA-P58", "SP", "M", "1.0" -1.1.2, "Implement the time-based assessment from FEMA-P58", "SP", "D", "" -1.2, "*Implement the efficient loss assessment methodologies from HAZUS*", "GC", "", "" -1.2.1, "Implement the assessment of buildings under earthquake hazard from HAZUS", "SP", "M", "1.1" -1.2.4, "Implement the assessment of buildings under hurricane wind hazard from HAZUS", "SP", "M", "2.0" -1.2.5, "Implement the assessment of buildings under storm surge hazard from HAZUS", "SP", "M", "" -1.2.6, "Implement the assessment of a potable water network under earthquake hazard from HAZUS", "SP", "M", "2.0" -1.3, "*Implement advanced methods for recovery time estimation*", "UF", "", "" -"","","","","" -2, "**Control**", "", "", "" -2.1, "*Analysis & Data*", "", "", "" -2.1.1, "Allow users to set the number of realizations", "SP", "M", "1.0" -2.1.2, "Allow users to customize fragility and consequence function parameters", "SP", "D", "1.0" -2.1.3, "Allow users to specify dependencies between logically similar parts of the stochastic models", "SP", "D", "1.0" -2.2, "*Response Model*", "", "", "" -2.2.1, "Allow users to specify the added uncertainty to EDPs (increase in log-standard dev.)", "SP", "M", 1.0 -2.2.2, "Allow users to specify the EDP ranges that correspond to reliable simulation results", "SP", "D", "1.0" -2.2.3, "Allow users to specify the type of distribution they want to fit to the empirical EDP data", "UF", "D", "1.2" -2.2.4, "Allow users to choose if they want to fit a distribution only to the non-collapsed EDPs", "UF", "M", "1.2" -2.3, "*Performance Model*", "", "", "" -2.3.1, "Allow users to prescribe a different number of inhabitants on each floor", "SP", "D", "1.0" -2.3.2, "Allow users to customize the temporal distribution of inhabitants", "SP", "D", "1.0" -2.3.3, "Allow users to prescribe different component quantities for each floor in each direction", "SP", "D", "1.0" -2.3.4, "Allow users to specify the number of component groups and their quantities in each performance group", "UF", "D", "1.0" -2.4, "*Damage Model*", "", "", "" -2.4.1, "Allow users to specify the residual drift limits that determine irrepairability", "SP", "D", "1.0" -2.4.2, "Allow users to specify the yield drift value that is used to estimate residual drifts from peak drifts", "SP", "D", "1.0" -2.4.3, "Allow users to specify the EDP limits that are used to determine collapse probability", "SP", "D", "1.0" -2.4.4, "Allow users to specify arbitrary collapse modes and their likelihood", "SP", "D", "1.0" -2.4.5, "Allow users to prescribe the collapse probability of the structure", "UF", "M", "1.2" -2.5, "*Loss Model*", "", "", "" -2.5.1, "Allow users to decide which DVs to calculate", "SP", "D", "1.0" -2.5.2, "Allow users to specify the likelihood of various injuries in each collapse mode", "SP", "D", "1.0" \ No newline at end of file diff --git a/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_models.csv b/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_models.csv deleted file mode 100644 index 5335dede5..000000000 --- a/doc_src/common/user_manual/requirements/pelicun/requirements_pelicun_models.csv +++ /dev/null @@ -1,23 +0,0 @@ -5,"**Response Model**","","","" -5.1, "*EDP (re-)sampling*","","","" -5.1.1, "Enable coupled assessment by using raw EDP values as-is", "UF", "M", "1.2" -"","","","","" -6,"**Performance Model**","","","" -"","","","","" -7,"**Damage Model**","","","" -7.1, "*Collapse estimation*","","","" -7.1.1, "Estimate collapse probability of the structure using EDP limits and the joint distribution of EDPs", "SP", "D", "1.0" -7.1.2, "Estimate the collapse probability of the structure using empirical (raw) EDP data", "UF", "M", "1.2" -"","","","","" -8,"**Loss Model**","","","" -8.1, "*Consequence functions for buildings*", "", "", "" -8.1.1, "Implement functions for reconstruction cost and time as per FEMA P58", "SP", "M", "1.0" -8.1.2, "Implement functions for red tag triggering as per FEMA P58", "SP", "M", "1.0" -8.1.3, "Implement functions for injuries and fatalities as per FEMA P58", "SP", "M", "1.0" -8.1.4, "Implement functions for reconstruction cost and time as per HAZUS earthquake", "SP", "M", "1.1" -8.1.5, "Implement functions for debris as per HAZUS earthquake", "SP", "D", "" -8.1.6, "Implement functions for business interruption as per HAZUS earthquake", "SP", "D", "" -8.1.7, "Implement functions for reconstruction cost and time as per HAZUS wind", "SP", "M", "2.0" -8.1.8, "Implement functions for reconstruction cost and time as per HAZUS storm surge", "SP", "M", "2.0" -8.2, "*Consequence functions for other assets*", "", "", "" -8.1.4, "Implement functions for reconstruction cost and time for potable water pipes as per HAZUS earthquake", "SP", "M", "2.0" diff --git a/doc_src/common/user_manual/troubleshooting/pelicun/troubleshooting.rst b/doc_src/common/user_manual/troubleshooting/pelicun/troubleshooting.rst deleted file mode 100644 index 82b5c5d41..000000000 --- a/doc_src/common/user_manual/troubleshooting/pelicun/troubleshooting.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lblTroubleshooting: - -Troubleshooting -=============== - -If problems persists please visist the |messageBoard|. - diff --git a/doc_src/common/user_manual/usage/pelicun/databases/DL_data.rst b/doc_src/common/user_manual/usage/pelicun/databases/DL_data.rst deleted file mode 100644 index 2f4d46ec3..000000000 --- a/doc_src/common/user_manual/usage/pelicun/databases/DL_data.rst +++ /dev/null @@ -1,35 +0,0 @@ -.. _lbl-db_DL_dat: - -******************************** -Damage and Loss Model Parameters -******************************** - -... - --------------------- -FEMA-P58 1st Edition --------------------- - -... - --------------------- -FEMA-P58 2nd Edition --------------------- - -... - ----------------------- -HAZUS Earthquake Model ----------------------- - -Building-level... - -Intensity based... - -Story-level... - ----------------------- -HAZUS Hurricane Model ----------------------- - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/databases/databases.rst b/doc_src/common/user_manual/usage/pelicun/databases/databases.rst deleted file mode 100644 index 1afd392d1..000000000 --- a/doc_src/common/user_manual/usage/pelicun/databases/databases.rst +++ /dev/null @@ -1,12 +0,0 @@ -.. _lbl-databases: - -********* -Databases -********* - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:DL_data \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/framework/auto.rst b/doc_src/common/user_manual/usage/pelicun/framework/auto.rst deleted file mode 100644 index 6eb782e1e..000000000 --- a/doc_src/common/user_manual/usage/pelicun/framework/auto.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_auto: - -*************** -Auto population -*************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/framework/damage.rst b/doc_src/common/user_manual/usage/pelicun/framework/damage.rst deleted file mode 100644 index bb3b6d840..000000000 --- a/doc_src/common/user_manual/usage/pelicun/framework/damage.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_damage: - -************ -Damage Model -************ - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/framework/framework.rst b/doc_src/common/user_manual/usage/pelicun/framework/framework.rst deleted file mode 100644 index c194b233d..000000000 --- a/doc_src/common/user_manual/usage/pelicun/framework/framework.rst +++ /dev/null @@ -1,18 +0,0 @@ -.. _lbl-framework_overview: - -********************* -The PELICUN Framework -********************* - -... - -.. toctree-filt:: - :maxdepth: 1 - - :pelicun:overview - :pelicun:res_model - :pelicun:performance - :pelicun:damage - :pelicun:loss - :pelicun:auto - :pelicun:uq \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/framework/loss.rst b/doc_src/common/user_manual/usage/pelicun/framework/loss.rst deleted file mode 100644 index 6939a7cac..000000000 --- a/doc_src/common/user_manual/usage/pelicun/framework/loss.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_loss: - -********** -Loss Model -********** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/framework/overview.rst b/doc_src/common/user_manual/usage/pelicun/framework/overview.rst deleted file mode 100644 index 4ff627736..000000000 --- a/doc_src/common/user_manual/usage/pelicun/framework/overview.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_overview: - -******** -Overview -******** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/framework/performance.rst b/doc_src/common/user_manual/usage/pelicun/framework/performance.rst deleted file mode 100644 index d9aff3dd8..000000000 --- a/doc_src/common/user_manual/usage/pelicun/framework/performance.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_performance: - -***************** -Performance Model -***************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/framework/res_model.rst b/doc_src/common/user_manual/usage/pelicun/framework/res_model.rst deleted file mode 100644 index 803b2b25b..000000000 --- a/doc_src/common/user_manual/usage/pelicun/framework/res_model.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_response: - -************** -Response Model -************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/framework/uq.rst b/doc_src/common/user_manual/usage/pelicun/framework/uq.rst deleted file mode 100644 index 595f277b3..000000000 --- a/doc_src/common/user_manual/usage/pelicun/framework/uq.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_uq: - -************************** -Uncertainty Quantification -************************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/getting_started.rst b/doc_src/common/user_manual/usage/pelicun/getting_started.rst deleted file mode 100644 index b6042bbd3..000000000 --- a/doc_src/common/user_manual/usage/pelicun/getting_started.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-getting_started: - -*************** -Getting Started -*************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/inputs/config.rst b/doc_src/common/user_manual/usage/pelicun/inputs/config.rst deleted file mode 100644 index 77f9d4400..000000000 --- a/doc_src/common/user_manual/usage/pelicun/inputs/config.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-in_config: - -****************** -Configuration File -****************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/inputs/inputs.rst b/doc_src/common/user_manual/usage/pelicun/inputs/inputs.rst deleted file mode 100644 index ea8c868b9..000000000 --- a/doc_src/common/user_manual/usage/pelicun/inputs/inputs.rst +++ /dev/null @@ -1,13 +0,0 @@ -.. _lbl-inputs: - -*********** -Input Files -*********** - -... - -.. toctree-filt:: - :maxdepth: 1 - - :pelicun:config - :pelicun:res_data \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/inputs/res_data.rst b/doc_src/common/user_manual/usage/pelicun/inputs/res_data.rst deleted file mode 100644 index c19a1db54..000000000 --- a/doc_src/common/user_manual/usage/pelicun/inputs/res_data.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-in_response: - -****************** -Response Data File -****************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/limitations.rst b/doc_src/common/user_manual/usage/pelicun/limitations.rst deleted file mode 100644 index a3fa7220d..000000000 --- a/doc_src/common/user_manual/usage/pelicun/limitations.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-limitations: - -*************************** -Assumptions and Limitations -*************************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/outputs/damages.rst b/doc_src/common/user_manual/usage/pelicun/outputs/damages.rst deleted file mode 100644 index 25042bd2e..000000000 --- a/doc_src/common/user_manual/usage/pelicun/outputs/damages.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-out_damages: - -*************** -Damage Measures -*************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/outputs/demands.rst b/doc_src/common/user_manual/usage/pelicun/outputs/demands.rst deleted file mode 100644 index 23a301149..000000000 --- a/doc_src/common/user_manual/usage/pelicun/outputs/demands.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-out_demands: - -*********** -Demand Data -*********** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/outputs/losses.rst b/doc_src/common/user_manual/usage/pelicun/outputs/losses.rst deleted file mode 100644 index 5ccb59c08..000000000 --- a/doc_src/common/user_manual/usage/pelicun/outputs/losses.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-out_losses: - -****************** -Decision Variables -****************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/outputs/outputs.rst b/doc_src/common/user_manual/usage/pelicun/outputs/outputs.rst deleted file mode 100644 index 3df683624..000000000 --- a/doc_src/common/user_manual/usage/pelicun/outputs/outputs.rst +++ /dev/null @@ -1,15 +0,0 @@ -.. _lbl-outputs: - -************ -Output Files -************ - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:summary - :pelicun:demands - :pelicun:damages - :pelicun:losses \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/outputs/summary.rst b/doc_src/common/user_manual/usage/pelicun/outputs/summary.rst deleted file mode 100644 index 6cba9c683..000000000 --- a/doc_src/common/user_manual/usage/pelicun/outputs/summary.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-out_summary: - -************ -Summary Data -************ - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/tools/DL_calculation.rst b/doc_src/common/user_manual/usage/pelicun/tools/DL_calculation.rst deleted file mode 100644 index e99fcebf4..000000000 --- a/doc_src/common/user_manual/usage/pelicun/tools/DL_calculation.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_DL_calc: - -************** -DL_calculation -************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/tools/exportDB.rst b/doc_src/common/user_manual/usage/pelicun/tools/exportDB.rst deleted file mode 100644 index fd22f8db3..000000000 --- a/doc_src/common/user_manual/usage/pelicun/tools/exportDB.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_exportDB: - -******** -exportDB -******** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/tools/fitDistribution.rst b/doc_src/common/user_manual/usage/pelicun/tools/fitDistribution.rst deleted file mode 100644 index cd58eab08..000000000 --- a/doc_src/common/user_manual/usage/pelicun/tools/fitDistribution.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_fitDistribution: - -*************** -fitDistribution -*************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/tools/sampleRV.rst b/doc_src/common/user_manual/usage/pelicun/tools/sampleRV.rst deleted file mode 100644 index aea22811d..000000000 --- a/doc_src/common/user_manual/usage/pelicun/tools/sampleRV.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_sampleRV: - -******** -sampleRV -******** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/tools/tools.rst b/doc_src/common/user_manual/usage/pelicun/tools/tools.rst deleted file mode 100644 index a251d4fb5..000000000 --- a/doc_src/common/user_manual/usage/pelicun/tools/tools.rst +++ /dev/null @@ -1,15 +0,0 @@ -.. _lbl-tools: - -**************** -Standalone Tools -**************** - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:DL_calculation - :pelicun:exportDB - :pelicun:sampleRV - :pelicun:fitDistribution \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/usage.rst b/doc_src/common/user_manual/usage/pelicun/usage.rst deleted file mode 100644 index 50b04f315..000000000 --- a/doc_src/common/user_manual/usage/pelicun/usage.rst +++ /dev/null @@ -1,19 +0,0 @@ -.. _lbl-usage: - -********** -User Guide -********** - -Usage text - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:getting_started - :pelicun:usage/usage - :pelicun:framework/framework - :pelicun:inputs/inputs - :pelicun:databases/databases - :pelicun:outputs/outputs - :pelicun:limitations - :pelicun:tools/tools \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/usage/application.rst b/doc_src/common/user_manual/usage/pelicun/usage/application.rst deleted file mode 100644 index eec2d4950..000000000 --- a/doc_src/common/user_manual/usage/pelicun/usage/application.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-use_application: - -********************* -Use as an Application -********************* - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/usage/library.rst b/doc_src/common/user_manual/usage/pelicun/usage/library.rst deleted file mode 100644 index d95bec172..000000000 --- a/doc_src/common/user_manual/usage/pelicun/usage/library.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-use_library: - -**************** -Use as a Library -**************** - -... \ No newline at end of file diff --git a/doc_src/common/user_manual/usage/pelicun/usage/usage.rst b/doc_src/common/user_manual/usage/pelicun/usage/usage.rst deleted file mode 100644 index ab9533c28..000000000 --- a/doc_src/common/user_manual/usage/pelicun/usage/usage.rst +++ /dev/null @@ -1,13 +0,0 @@ -.. _lbl-usage_types: - -***** -Usage -***** - -... - -.. toctree-filt:: - :maxdepth: 1 - - :pelicun:application - :pelicun:library \ No newline at end of file diff --git a/doc_src/conf.py b/doc_src/conf.py deleted file mode 100644 index cbc602e3c..000000000 --- a/doc_src/conf.py +++ /dev/null @@ -1,581 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# -# SimCenter - General documentation build configuration file -# - -# -- SimCenter App selection ------------------------------------------------- - - -#app_name = 'RDT' -#app_name = 'PBE' -#app_name = 'EE-UQ' -#app_name = 'WE-UQ' -#app_name = 'quoFEM' -app_name = 'pelicun' - -print('app_name = ' + app_name) - - -# -- Path setup -------------------------------------------------------------- - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# - -import os -import sys -sys.path.append(os.path.abspath('./sphinx_ext/')) - -if app_name == 'pelicun': - sys.path.insert(0, os.path.abspath('.')) - sys.path.insert(0, os.path.abspath('../')) - -exclude_patterns = [ - '**/*desktop*', - '**/*response*', - '**/*earthquake*', - '**/*wind*', - '**/*RDT*', - '**/*PBE*', - '**/*WEUQ*', - '**/*EEUQ*', - '**/*TinF*', - '**/*TInF*', - '**/*pelicun*', - '**/*old*', - '**/*quoFEM*' - ] - - -toc_filter_exclusions = [ - 'desktop', - 'response', - 'earthquake', - 'wind', - 'RDT', - 'PBE', - 'quoFEM', - 'notQuoFEM', - 'WEUQ', - 'EEUQ', - 'TinF', - 'TInF', - 'S3hark', - 'pelicun' -] - -extensions = [] - -# -- Project information ----------------------------------------------------- - -# shared among all SimCenter docs - -numfig = True -numfig_secnum_depth = 2 - -math_number_all = True -math_eqref_format = '({number})' -math_numfig = True - -rst_prolog = """ -.. |EE-UQ short name| replace:: EE-UQ app -.. |EE-UQ app link| replace:: `EE-UQ app`_ -.. _EE-UQ app: https://simcenter.designsafe-ci.org/research-tools/ee-uq-application/ -.. |user survey link| replace:: `user survey`_ -.. _user survey: https://docs.google.com/forms/d/e/1FAIpQLSfh20kBxDmvmHgz9uFwhkospGLCeazZzL770A2GuYZ2KgBZBA/viewform?usp=sf_link -.. |ResearchTools| replace:: `SimCenter Research Tools`_ -.. _SimCenter Research Tools: https://simcenter.designsafe-ci.org/research-tools/overview/ -.. |OpenSees| replace:: **OpenSees** -.. |userSurveyLink| replace:: `user survey`_ -.. |Tcl| replace:: **Tcl** -.. |OpenSeesLink| replace:: `OpenSees`_ -.. _OpenSees: https://opensees.berkeley.edu -.. |OpenSeesDownload| replace:: `OpenSees Download`_ -.. _OpenSees Download: https://opensees.berkeley.edu/OpenSees/user/download.php -.. |Dakota| replace:: **Dakota** -.. |DakotaLink| replace:: `Dakota`_ -.. _Dakota: https://dakota.sandia.gov/ -.. |DakotaDownload| replace:: `Dakota Download`_ -.. _Dakota Download: https://dakota.sandia.gov/download.html -.. |Dakota Theory Manual| replace:: `Dakota Theory Manual`_ -.. _Dakota Theory Manual: https://dakota.sandia.gov/sites/default/files/docs/6.11/Theory-6.11.0.pdf -.. |FEAPpv| replace:: **FEAPpv** -.. |FeapLink| replace:: `FEAPpv`_ -.. _FEAPpv: http://projects.ce.berkeley.edu/feap/feappv/ -.. |FEAPpvDownload| replace:: `FEAPpv`_ -.. |FEAPpv Theory Manual| replace:: `FEAPpv Manual`_ -.. _FEAPpv Manual: http://projects.ce.berkeley.edu/feap/feappv/manual_51.pdf -.. |OpenSeesPy| replace:: **OpenSeesPy** - -.. |requirements| replace:: **REQUIREMENTS** -.. |DesignSafe| replace:: `DesignSafe`_ -.. _DesignSafe: https://designsafe-ci.org -.. |smelt| replace:: `smelt`_ -.. _smelt: https://github.com/NHERI-SimCenter/smelt -.. |s3harkName| replace:: s3hark -.. |br| raw:: html - -
- -""" - -extlinks = { -} -example_repo = f'https://github.com/NHERI-SimCenter/SimCenterDocumentation/tree/master/docs/common/user_manual/examples/desktop/{app_name.replace("-","")}' - -# app-specific settings - -if app_name == 'RDT': - - project = 'Regional Resilience Determination Tool' - copyright = '2019, The Regents of the University of California' - - author = 'Adam Zsarnóczay, Frank McKenna, Michael Gardner, Wael Elhaddad, Joanna Zou, Chaofeng Wang' - - tags.add('RDT_app') - tags.add('desktop_app') - tags.add('earthquake') - tags.add('response') - tags.add('notQuoFEM') - - toc_filter_exclusions.remove('RDT') - toc_filter_exclusions.remove('desktop') - toc_filter_exclusions.remove('earthquake') - toc_filter_exclusions.remove('response') - toc_filter_exclusions.remove('notQuoFEM') - toc_filter_exclude = toc_filter_exclusions - - exclude_patterns.remove('**/*desktop*') - exclude_patterns.remove('**/*earthquake*') - exclude_patterns.remove('**/*response*') - exclude_patterns.remove('**/*RDT*') - - # TODO: fix these temporary changes - exclude_patterns.append('**/*architectureLevel4.rst*') - exclude_patterns.append('**/requirements/index.rst') - exclude_patterns.append('**/requirements/bigRequirements.rst') - exclude_patterns.append('**/DakotaSensitivity.rst') - exclude_patterns.append('**/DakotaReliability.rst') - exclude_patterns.append('**/DakotaParameterEstimation.rst') - exclude_patterns.append('**/DakotaInverseProblems.rst') - exclude_patterns.append('**/resEE.rst') - - # END TODO - - rst_prolog += """\ -.. |full tool name| replace:: Regional Resilience Determination Tool -.. |short tool name| replace:: RDT app -.. |short tool id| replace:: RDT -.. |tool github link| replace:: `RDT Github page`_ -.. _RDT Github page: https://github.com/NHERI-SimCenter/PBE -.. |app| replace:: RDT app -.. |appName| replace:: RDT app -.. |messageBoard| replace:: `Message Board`_ -.. _Message Board: https://simcenter-messageboard.designsafe-ci.org/smf/index.php?board=8.0 -.. |githubLink| replace:: `RDT Github page`_ -.. |appLink| replace:: `RDT Download`_ -.. _RDT Download: https://www.designsafe-ci.org/data/browser/public/designsafe.storage.community/%2FSimCenter%2FSoftware%2FRDT -.. |tool version| replace:: 2.0 -.. |figDownload| replace:: :numref:`figDownloadRDT` -.. |figUI| replace:: :numref:`figUI-RDT` -.. |figGenericUI| replace:: :numref:`figGenericUI-RDT` -.. |figMissingCRT| replace:: :numref:`figMissingCRT-RDT` -.. |contact person| replace:: Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu -.. |developers| replace:: **SimCenter PI's and Developers** - -""" - - # html_logo = 'common/figures/SimCenter_RDT_logo.png' - html_logo = 'common/figures/RDT-Logo-grey2.png' - - html_theme_options = { - 'analytics_id': '...', #TODO: add analytics ID - 'logo_only': True, - 'prev_next_buttons_location': None, - 'style_nav_header_background': '#F2F2F2' - } - -elif app_name == 'PBE': - - project = 'Performance Based Engineering Application' - copyright = '2019, The Regents of the University of California' - - author = 'Adam Zsarnóczay, Frank McKenna, Chaofeng Wang, Wael Elhaddad, Michael Gardner' - - tags.add('PBE_app') - tags.add('desktop_app') - tags.add('earthquake') - tags.add('notQuoFEM') - - toc_filter_exclusions.remove('PBE') - toc_filter_exclusions.remove('desktop') - toc_filter_exclusions.remove('earthquake') - toc_filter_exclusions.remove('notQuoFEM') - toc_filter_exclude = toc_filter_exclusions - - exclude_patterns.remove('**/*desktop*') - exclude_patterns.remove('**/*earthquake*') - exclude_patterns.remove('**/*PBE*') - - # TODO: fix these temporary changes - exclude_patterns.append('**/*architectureLevel4.rst*') - exclude_patterns.append('**/requirements/index.rst') - exclude_patterns.append('**/requirements/bigRequirements.rst') - exclude_patterns.append('**/DakotaSensitivity.rst') - exclude_patterns.append('**/DakotaReliability.rst') - exclude_patterns.append('**/DakotaParameterEstimation.rst') - exclude_patterns.append('**/DakotaInverseProblems.rst') - exclude_patterns.append('**/resEE.rst') - - # END TODO - - - - - rst_prolog += """\ -.. |full tool name| replace:: Performance Based Engineering Application -.. |short tool name| replace:: PBE app -.. |short tool id| replace:: PBE -.. |tool github link| replace:: `PBE Github page`_ -.. _PBE Github page: https://github.com/NHERI-SimCenter/PBE -.. |app| replace:: PBE app -.. |appName| replace:: PBE app -.. |messageBoard| replace:: `Message Board`_ -.. _Message Board: https://simcenter-messageboard.designsafe-ci.org/smf/index.php?board=7.0 -.. |githubLink| replace:: `PBE Github page`_ -.. |appLink| replace:: `PBE Download`_ -.. _PBE Download: https://www.designsafe-ci.org/data/browser/public/designsafe.storage.community/%2FSimCenter%2FSoftware%2FPBE -.. |tool version| replace:: 2.0 -.. |figDownload| replace:: :numref:`figDownloadPBE` -.. |figUI| replace:: :numref:`figUI-PBE` -.. |figGenericUI| replace:: :numref:`figGenericUI-PBE` -.. |figMissingCRT| replace:: :numref:`figMissingCRT-PBE` -.. |contact person| replace:: Adam Zsarnóczay, NHERI SimCenter, Stanford University, adamzs@stanford.edu -.. |developers| replace:: **Adam Zsarnóczay**, **Frank McKenna**, **Chaofeng Wang**, **Wael Elhaddad**, **Michael Gardner** - -""" - - # html_logo = 'common/figures/SimCenter_PBE_logo.png' - html_logo = 'common/figures/PBE-Logo-grey2.png' - - html_theme_options = { - 'analytics_id': 'UA-158130480-3', - 'logo_only': True, - 'prev_next_buttons_location': None, - 'style_nav_header_background': '#F2F2F2' - } - -elif app_name == 'EE-UQ': - project = 'Earthquake Engineering with Uncertainty Quantification (EE-UQ)' - copyright = '2019, The Regents of the University of California' - author = 'Frank McKenna, Wael Elhaddad, Michael Gardner, Chaofeng Wang, Adam Zsarnóczay' - - tags.add('EEUQ_app') - tags.add('desktop_app') - tags.add('response') - tags.add('earthquake') - tags.add('notQuoFEM') - - toc_filter_exclusions.remove('EEUQ') - toc_filter_exclusions.remove('desktop') - toc_filter_exclusions.remove('earthquake') - toc_filter_exclusions.remove('response') - toc_filter_exclusions.remove('notQuoFEM') - toc_filter_exclude = toc_filter_exclusions - - exclude_patterns.remove('**/*EEUQ*') - exclude_patterns.remove('**/*desktop*') - exclude_patterns.remove('**/*earthquake*') - exclude_patterns.remove('**/*response*') - - rst_prolog += """ -.. |full tool name| replace:: Earthquake Engineering with Uncertainty Quantification Application (EE-UQ) -.. |short tool name| replace:: EE-UQ app -.. |short tool id| replace:: EE-UQ -.. |tool github link| replace:: `EE-UQ Github page`_ -.. _EE-UQ Github page: https://github.com/NHERI-SimCenter/EE-UQ -.. |tool version| replace:: 2.0 -.. |app| replace:: EE-UQ app -.. |appName| replace:: EE-UQ app -.. |githubLink| replace:: `EE-UQ Github page`_ -.. |appLink| replace:: `EE-UQ Download`_ -.. _EE-UQ Download: https://www.designsafe-ci.org/data/browser/public/designsafe.storage.community//SimCenter/Software/EE_UQ -.. |messageBoard| replace:: `Message Board`_ -.. _Message Board: https://simcenter-messageboard.designsafe-ci.org/smf/index.php?board=6.0 -.. |figUI| replace:: :numref:`figUI-EE` -.. |figDownload| replace:: :numref:`figDownloadEE` -.. |figGenericUI| replace:: :numref:`figGenericUI-EE` -.. |figMissingCRT| replace:: :numref:`figMissingCRT-EE` -.. |contact person| replace:: Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu -.. |developers| replace:: **Frank McKenna**, **Wael Elhaddad**, **Michael Gardner**, **Chaofeng Wang**, **Adam Zsarnóczay** - -""" - - html_logo = 'common/figures/EE-UQ-Logo-grey2.png' - - html_theme_options = { - 'analytics_id': 'UA-158130480-1', - 'logo_only': True, - 'prev_next_buttons_location': None, - 'style_nav_header_background': '#F2F2F2' - } - -elif app_name == 'quoFEM': - project = 'Quantified Uncertainty with Optimization for the FEM' - copyright = '2018-2020, The Regents of the University of California' - author = 'Frank McKenna, Adam Zsarnóczay, Nikhil Padhye' - - tags.add('quoFEM_app') - tags.add('desktop_app') - - toc_filter_exclusions.remove('desktop') - toc_filter_exclusions.remove('quoFEM') - toc_filter_exclude = toc_filter_exclusions - - exclude_patterns.remove('**/*desktop*') - exclude_patterns.remove('**/*quoFEM*') - - # TODO: fix these temporary changes - exclude_patterns.append('**/*architectureLevel4.rst*') - exclude_patterns.append('**/requirements/index.rst') - exclude_patterns.append('**/requirements/bigRequirements.rst') - exclude_patterns.append('**/resEE.rst') - exclude_patterns.append('**/damping.rst') - exclude_patterns.append('**/desktop/FEM.rst') - exclude_patterns.append('**/desktop/GI.rst') - exclude_patterns.append('**/desktop/SIM.rst') - - # END TODO - - rst_prolog += """ -.. |full tool name| replace:: Quantified Uncertainty with Optimization for the Finite Element Method (quoFEM) -.. |short tool name| replace:: quoFEM app -.. |short tool id| replace:: quoFEM -.. |tool github link| replace:: `quoFEM Github page`_ -.. _quoFEM Github page: https://github.com/NHERI-SimCenter/quoFEM -.. |tool version| replace:: 2.0 -.. |app| replace:: quoFEM app -.. |appName| replace:: quoFEM app -.. |githubLink| replace:: `quoFEM Github page`_ -.. |appLink| replace:: `quoFEM Download`_ -.. _quoFEM Download: https://www.designsafe-ci.org/data/browser/public/designsafe.storage.community//SimCenter/Software/quoFEM -.. |messageBoard| replace:: `Message Board`_ -.. _Message Board: https://simcenter-messageboard.designsafe-ci.org/smf/index.php?board=4.0 -.. |figUI| replace:: :numref:`figQUO_FEM` -.. |figDownload| replace:: :numref:`figDownloadQUO_FEM` -.. |figGenericUI| replace:: :numref:`figGenericUI-QUOFEM` -.. |figMissingCRT| replace:: :numref:`figMissingCRT-EE` -.. |contact person| replace:: Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu -.. |developers| replace:: **Frank McKenna**, **Nikhil Padhye**, **Adam Zsarnóczay** - -""" - - html_logo = 'common/figures/quoFEM-LogoImageGrey.png' - - html_theme_options = { - 'analytics_id': 'UA-158130480-4', - 'logo_only': True, - 'prev_next_buttons_location': None, - 'style_nav_header_background': '#F2F2F2' - } - - # Example links - extlinks.update( - {f'quo-{i:02}' : (f'{example_repo}/quo-{i:02}/%s',f'quo-{i:02}') for i in range(1,99)} - ) - -elif app_name == 'WE-UQ': - project = 'Wind Engineering with Uncertainty Quantification' - copyright = '2019, The Regents of the University of California' - author = 'Frank McKenna' - - tags.add('WEUQ_app') - tags.add('desktop_app') - tags.add('response') - tags.add('wind') - tags.add('notQuoFEM') - - toc_filter_exclusions.remove('WEUQ') - toc_filter_exclusions.remove('desktop') - toc_filter_exclusions.remove('wind') - toc_filter_exclusions.remove('response') - toc_filter_exclusions.remove('notQuoFEM') - toc_filter_exclude = toc_filter_exclusions - - exclude_patterns.remove('**/*WEUQ*') - exclude_patterns.remove('**/*desktop*') - exclude_patterns.remove('**/*wind*') - exclude_patterns.remove('**/*response*') - exclude_patterns.remove('**/*TinF*') - - rst_prolog += """ -.. |full tool name| replace:: Wind Engineering with Uncertainty Quantification Application (WE-UQ) -.. |short tool name| replace:: WE-UQ app -.. |short tool id| replace:: WE-UQ -.. |tool github link| replace:: `WE-UQ Github page`_ -.. _WE-UQ Github page: https://github.com/NHERI-SimCenter/WE-UQ -.. |tool version| replace:: 2.0 -.. |app| replace:: WE-UQ app -.. |appName| replace:: WE-UQ app -.. |githubLink| replace:: `WE-UQ Github page`_ -.. |appLink| replace:: `WE-UQ Download`_ -.. _WE-UQ Download: https://www.designsafe-ci.org/data/browser/public/designsafe.storage.community//SimCenter/Software/WE_UQ -.. |messageBoard| replace:: `Message Board`_ -.. _Message Board: https://simcenter-messageboard.designsafe-ci.org/smf/index.php?board=5.0 -.. |figUI| replace:: :numref:`figUI-WE` -.. |figDownload| replace:: :numref:`figDownloadWE` -.. |figGenericUI| replace:: :numref:`figGenericUI-WE` -.. |figMissingCRT| replace:: :numref:`figMissingCRT-WE` -.. |contact person| replace:: Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu -.. |developers| replace:: **Frank McKenna**, **Peter Mackenzie-Helnwein**, **Wael Elhaddad**, **Jiawei Wan**, **Michael Gardner**, **Dae Kun Kwon** - - -""" - - html_logo = 'common/figures/WE-UQ-Logo-grey2.png' #TODO: replace with EE-UQ logo! - - - html_theme_options = { - 'analytics_id': 'UA-158130480-2', - 'logo_only': True, - 'prev_next_buttons_location': None, - 'style_nav_header_background': '#F2F2F2' - } - - # Example links - extlinks.update( - {f'weuq-{i:02}' : (f'{example_repo}/weuq-{i:02}/%s',f'weuq-{i:02}') for i in range(1,99)} - ) - - -elif app_name == 'pelicun': - - project = 'pelicun' - copyright = '(c) 2018-2020, Leland Stanford Junior University and The Regents of the University of California' - author = 'Adam Zsarnóczay' - - tags.add('pelicun') - - toc_filter_exclusions.remove('pelicun') - toc_filter_exclude = toc_filter_exclusions - - exclude_patterns.remove('**/*pelicun*') - - rst_prolog += """\ -.. |pelicun expanded| replace:: Probabilistic Estimation of Losses, Injuries, and Community resilience Under Natural disasters -.. |full tool name| replace:: pelicun library -.. |short tool name| replace:: pelicun -.. |short tool id| replace:: pelicun -.. |tool github link| replace:: `pelicun Github page`_ -.. _pelicun Github page: https://github.com/NHERI-SimCenter/pelicun -.. |app| replace:: pelicun library -.. |messageBoard| replace:: `Message Board`_ -.. _Message Board: https://simcenter-messageboard.designsafe-ci.org/smf/index.php?board=7.0 -.. |githubLink| replace:: `pelicun Github page`_ -.. |tool version| replace:: 2.0.9 -.. |contact person| replace:: Adam Zsarnóczay, NHERI SimCenter, Stanford University, adamzs@stanford.edu -.. |developers| replace:: **Adam Zsarnóczay** -""" - - extensions = [ - 'sphinx.ext.autodoc', - 'sphinx.ext.todo', - 'sphinx.ext.mathjax', - 'sphinx.ext.viewcode', - 'sphinx.ext.githubpages', - 'numpydoc', - 'sphinx.ext.autosummary', - 'sphinx.ext.intersphinx', - 'sphinx.ext.coverage', - 'sphinx.ext.doctest' - ] - - numpydoc_show_class_members = True - numpydoc_class_members_toctree = False - autodoc_member_order = 'bysource' - autoclass_content = 'both' - - import glob - autosummary_generate = glob.glob("source/*.rst") - - master_doc = 'index' - - language = None - - pygments_style = 'sphinx' - - html_logo = 'common/figures/pelicun-Logo-grey.png' - - html_theme_options = { - 'analytics_id': 'UA-158130480-7', - 'logo_only': True, - 'prev_next_buttons_location': None, - 'style_nav_header_background': '#F2F2F2' - } - - htmlhelp_basename = 'pelicundoc' - - -# -- General configuration --------------------------------------------------- - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. - -extensions = extensions + [ - 'sphinx-jsonschema', - 'sphinxcontrib.bibtex', - 'toctree_filter', - 'sphinxcontrib.images', - 'sphinx.ext.extlinks', - 'sphinxcontrib.images' -] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This pattern also affects html_static_path and html_extra_path. -exclude_patterns = (exclude_patterns + - ['_build', 'Thumbs.db', '.DS_Store', '_archive']) - -# -- Options for HTML output ------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -# -html_theme = 'sphinx_rtd_theme' - -#html_theme_options = {'body_max_width': '70%'} - -# 'style_nav_header_background': '#F2F2F2' -# 'style_nav_header_background': '#FFFFFF' -# 'style_nav_header_background': '#d5d5d5' -# -# 'style_nav_header_background': '#F2F2F2' #64B5F6 #607D8B - -html_css_files = [ - 'css/custom.css' -] - -html_secnum_suffix = " " - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -# For a full list of configuration options see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html - -#latex_docclass = { -# r'manual': 'simcenterdocumentation', -# r'howto': 'simcenterdocumentation' -#} - -latex_elements = { - 'extraclassoptions': 'openany,oneside' -} diff --git a/doc_src/environment.yml b/doc_src/environment.yml deleted file mode 100644 index 480a7c566..000000000 --- a/doc_src/environment.yml +++ /dev/null @@ -1,8 +0,0 @@ -name: pelicun -dependencies: - - python=3.5 - - numpy - - scipy - - pandas - - sphinx - - numpydoc \ No newline at end of file diff --git a/doc_src/features.rst b/doc_src/features.rst deleted file mode 100644 index 6c8b03868..000000000 --- a/doc_src/features.rst +++ /dev/null @@ -1,95 +0,0 @@ -Features -============ - -The following table outlines the features that are currently available in the tool and the requirements that will drive future development. We welcome suggestions for useful features that are missing from the list below. The priority column provides information about the relative importance of features planned for a given release: **M** - mandatory, **D** - desirable, **O** - optional, **P** - possible. - -.. table:: List of features - :widths: 1, 50, 1, 1, 1 - :class: tight-table - - ==== ========================================================================================= ========= ========== ======== - ID description priority available planned - ==== ========================================================================================= ========= ========== ======== - 1 **Assessment Methods** - 1.1 Perform component-based (e.g. FEMA-P58 style) loss assessment for earthquake scenarios. M 1.0 - 1.2 Perform component-group-based (e.g HAZUS style) loss assessment for earthquake scenarios. D 1.1 - 1.3 Perform loss assessment for hurricane scenarios based on the HAZUS hurricane methodology. D 1.2 - 1.4 Perform downtime estimation using the ARUP's REDi methodology. D 1.2 - 1.5 Perform time-based assessment for seismic hazard. M 1.3 - - 2 **Control** - 2.1 Specify number of realizations. M 1.0 - 2.2 Specify log-standard deviation increase to consider additional sources of uncertainty. M 1.0 - 2.3 Pick the decision variables to calculate. D 1.0 - 2.4 Specify the number of inhabitants on each floor and their temporal distribution. D 1.0 - 2.5 Specify the basic boundary conditions of repairability. D 1.0 - 2.6 Control collapse through EDP limits. D 1.0 - 2.7 Specify the replacement cost and time for the asset. M 1.0 - 2.8 Specify EDP boundaries that define the domain with reliable simulation results. D 1.0 - 2.9 Specify collapse modes and characterize the corresponding likelihood of injuries. D 1.0 - - 3 **Component DL information** - 3.1 Make the component damage and loss data from FEMA P58 (1st ed.) available in the tool. M 1.0 - 3.2 Facilitate the use of custom components for loss assessment. D 1.0 - 3.3 Enable different component quantities for each floor in each direction. D 1.0 - 3.4 Enable fine control over quantities of identical groups of components within a PG. D 1.0 - 3.5 Create a generic JSON data format to store component DL data. D 1.1 - 3.6 Convert FEMA P58 and HAZUS component DL data to the new JSON format. D 1.1 - 3.7 Extend the list of available decision variables with those from HAZUS D 1.2 - 3.8 Extend the list of available decision variables with those from REDi D 1.2 - - 4 **Stochastic loss model** - 4.1 Enable control of basic dependencies between logically similar parts of the model. D 1.0 - 4.2 Enable control of basic dependencies between reconstruction cost and reconstruction time. D 1.0 - 4.3 Enable control of basic dependencies between different levels of injuries. D 1.0 - 4.4 Extend the model to include the description of the hazard (earthquake and hurricane). D 1.3 - 4.5 Enable finer control of dependencies through intermediate levels of correlation. D 1.3 - - 5 **Response estimation** - 5.1 Fit a multivariate random distribution to samples of EDPs from response simulation. M 1.0 - 5.2 Allow estimation of EDPs using empirical functions instead of simulation results. D 1.2 - 5.3 Perform EDP estimation using the empirical functions in the HAZUS earthquake method D 1.2 - ==== ========================================================================================= ========= ========== ======== - -Releases --------- - -Minor releases are planned to follow quarterly cycles while major releases are planned at the end of the third quarter every year: - -.. table:: Release schedule - :class: tight-table - - ======== ===================== - version planned release date - ======== ===================== - 1.0 Oct 2018 - 1.1 Dec 2018 - 1.2 March 2019 - 1.3 June 2019 - 2.0 Sept 2019 - ======== ===================== - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc_src/index.rst b/doc_src/index.rst deleted file mode 100644 index 511456e24..000000000 --- a/doc_src/index.rst +++ /dev/null @@ -1,132 +0,0 @@ -|full tool name| -===================================================================== - -.. only:: html - - |developers| - - .. only:: RDT_app - - The |full tool name| (|app|) is an open-source research application that can be used to simulate the performance of the built environment in an urban region subjected to natural hazards. The application - predict the performance of a building subjected to earthquake events. [...] The computations are performed by a simulation workflow that will run on either the user's local machine or on a high performance computer made available by |DesignSafe|. - - .. only:: PBE_app - - The |full tool name| (|app|) is an open-source research application that can be used to predict the performance of a building subjected to earthquake events. The application is focused on quantifying building performance given the uncertainties in models, earthquake loads, and analysis. The computations are performed in a workflow application that will run on either the users local machine or on a high performance computer made available by |DesignSafe|. - - .. only:: EEUQ_app - - The |full tool name| (|app|) is an open-source research application that can be used to predict the response of a building subjected to earthquake events. The application is focused on quantifying the uncertainties in the predicted response, given the that the uncertainties in models, earthquake loads, and analysis. The computations are performed in a workflow application that will run on either the users local machine or on a high performance computer made available by |DesignSafe|. - - - .. only:: WEUQ_app - - The |full tool name| (|app|) is an open-source research application that can be used to predict the response of a building subjected to wind loading events. The application is focused on quantifying the uncertainties in the predicted response, given the that the uncertainties in models, wind loads, and analysis. The computations are performed in a workflow application that will run on either the users local machine or on a high performance computer made available by |DesignSafe|. - - - .. only:: quoFEM_app - - The |full tool name| is an open-source research application which focuses on providing uncertainty quantification methods (forward, inverse, reliability, sensitivity and parameter estimation) to researchers in natural hazards who utilize existing simulation software applications, typically Finite Element applications, in their work. The computations are performed in a workflow application that will run on either the users local machine or on a high performance computer made available by |DesignSafe|. - - .. only:: pelicun - - The |full tool name| is an open-source implementation of the |short tool name| framework in a Python package. It provides tools for assessment of damage and losses due to natural disasters. Its basis is the stochastic damage and loss model described in FEMA P58. While FEMA P58 aims to assess the seismic performance of a building, with the |app| we provide a more versatile, hazard agnostic tool that can estimate losses for several types of assets in the built environment. - - - This document covers the features and capabilities of Version |tool version| of the tool. Users are encouraged to comment on what additional features and capabilities they would like to see in future versions of the application through the |messageBoard|. - - -.. _lbl-user-manual: - -.. toctree-filt:: - :caption: User Manual - :maxdepth: 1 - :numbered: 4 - - common/user_manual/ack - - :PBE:common/user_manual/about/PBE/about - :EEUQ:common/user_manual/about/EEUQ/about - :WEUQ:common/user_manual/about/WEUQ/about - :quoFEM:common/user_manual/about/quoFEM/aboutQUOFEM - :pelicun:common/user_manual/about/pelicun/about - - :desktop_app:common/user_manual/installation/desktop/installation - :pelicun:common/user_manual/installation/pelicun/installation - - :desktop_app:common/user_manual/usage/desktop/usage - :pelicun:common/user_manual/usage/pelicun/usage - - :desktop_app:common/user_manual/troubleshooting/desktop/troubleshooting - :pelicun:common/user_manual/troubleshooting/pelicun/troubleshooting - - :desktop_app:common/user_manual/examples/desktop/examples - :pelicun:common/user_manual/examples/pelicun/examples - - :EEUQ:common/requirements/EEUQ - :WEUQ:common/requirements/WEUQ - :PBE:common/requirements/PBE - :pelicun:common/user_manual/requirements/pelicun/requirements - - common/user_manual/bugs - common/user_manual/license - - :pelicun:common/user_manual/release_notes/pelicun/release_notes - -.. _lbl-testbeds-manual: - -.. toctree-filt:: - :caption: Testbeds - :maxdepth: 1 - :numbered: 3 - - :RDT:common/testbeds/sf_bay_area/index - :RDT:common/testbeds/atlantic_city/index - :RDT:common/testbeds/memphis/index - :RDT:common/testbeds/anchorage/index - :RDT:common/testbeds/lake_charles/index - -.. _lbl-technical-manual: - -.. toctree-filt:: - :caption: Technical Manual - :maxdepth: 1 - :numbered: 2 - - :desktop_app:common/technical_manual/desktop/technical_manual - :pelicun:common/technical_manual/pelicun/technical_manual - - -.. _lbl-developer-manual: - -.. toctree-filt:: - :caption: Developer Manual - :maxdepth: 1 - :numbered: 4 - - :desktop_app:common/developer_manual/how_to_build/desktop/how_to_build - - :desktop_app:common/developer_manual/architecture/desktop/architecture - :pelicun:common/developer_manual/architecture/pelicun/architecture - - :desktop_app:common/developer_manual/how_to_extend/desktop/how_to_extend - - :desktop_app:common/developer_manual/verification/desktop/verification - :pelicun:common/developer_manual/verification/pelicun/verification - - :desktop_app:common/developer_manual/coding_style/desktop/coding_style - :pelicun:common/developer_manual/coding_style/pelicun/coding_style - - :pelicun:common/developer_manual/API/pelicun/API - - - -Contact -======= - -|contact person| - -References -========== - -.. bibliography:: common/references.bib diff --git a/doc_src/license.rst b/doc_src/license.rst deleted file mode 100644 index 61b9f9704..000000000 --- a/doc_src/license.rst +++ /dev/null @@ -1,45 +0,0 @@ - -Copyright and license -================================ -The *pelicun* Python package is copyright through Leland Stanford Junior -University and The Regents of the University of California. - -The software is distributed under the BSD 3-Clause License. - -pelicun leverages several third-party software packages, which have separate licensing policies. - -Copyright ------------- -.. code-block:: none - - Copyright (c) 2018, Leland Stanford Junior University - Copyright (c) 2018, The Regents of the University of California - -BSD 3-Caluse license -------------------------- -.. code-block:: none - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/doc_src/make.bat b/doc_src/make.bat deleted file mode 100644 index 83d0d8c76..000000000 --- a/doc_src/make.bat +++ /dev/null @@ -1,77 +0,0 @@ -@ECHO OFF - -pushd %~dp0 - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set SOURCEDIR=. -set BUILDDIR=_build - -if "%1" == "" goto help - -if "%1" == "RDT" ( - %SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% - robocopy %BUILDDIR%/html ../../RDT-Documentation/docs /E > nul - echo.Generating RDT Documentation... - goto end -) - -if "%1" == "PBE" ( - %SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% - robocopy %BUILDDIR%/html ../../PBE-Documentation/docs /E > nul - echo.Generating PBE Documentation... - goto end -) - -if "%1" == "quoFEM" ( - %SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% - robocopy %BUILDDIR%/html ../../quoFEM-Documentation/docs /E > nul - echo.Generating quoFEM Documentation... - goto end -) - -if "%1" == "EE" ( - %SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% - robocopy %BUILDDIR%/html ../../EE-UQ-Documentation/docs /E > nul - echo.Generating EE-UQ Documentation... - goto end -) - -if "%1" == "WE" ( - %SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% - robocopy %BUILDDIR%/html ../../WE-UQ-Documentation/docs /E > nul - echo.Generating WE-UQ Documentation... - goto end -) - -if "%1" == "pelicun" ( - %SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% - robocopy %BUILDDIR%/html ../docs /E > nul - echo.Generating pelicun Documentation... - goto end -) - -%SPHINXBUILD% >NUL 2>NUL -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ - exit /b 1 -) - -%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -goto end - -:help -%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% - -:end -popd diff --git a/doc_src/sphinx_ext/toctree_filter.py b/doc_src/sphinx_ext/toctree_filter.py deleted file mode 100644 index 6b4b76b67..000000000 --- a/doc_src/sphinx_ext/toctree_filter.py +++ /dev/null @@ -1,44 +0,0 @@ -# courtesy of David Weber -# https://stackoverflow.com/questions/15001888/conditional-toctree-in-sphinx - -import re -from sphinx.directives.other import TocTree - -def setup(app): - app.add_config_value('toc_filter_exclude', [], 'html') - app.add_directive('toctree-filt', TocTreeFilt) - return {'version': '1.0.0'} - -class TocTreeFilt(TocTree): - """ - Directive to notify Sphinx about the hierarchical structure of the docs, - and to include a table-of-contents like tree in the current document. This - version filters the entries based on a list of prefixes. We simply filter - the content of the directive and call the super's version of run. The - list of exclusions is stored in the **toc_filter_exclusion** list. Any - table of content entry prefixed by one of these strings will be excluded. - If `toc_filter_exclusion=['secret','draft']` then all toc entries of the - form `:secret:ultra-api` or `:draft:new-features` will be excuded from - the final table of contents. Entries without a prefix are always included. - """ - hasPat = re.compile('^\s*:(.+):(.+)$') - - # Remove any entries in the content that we dont want and strip - # out any filter prefixes that we want but obviously don't want the - # prefix to mess up the file name. - def filter_entries(self, entries): - excl = self.state.document.settings.env.config.toc_filter_exclude - filtered = [] - for e in entries: - m = self.hasPat.match(e) - if m != None: - if not m.groups()[0] in excl: - filtered.append(m.groups()[1]) - else: - filtered.append(e) - return filtered - - def run(self): - # Remove all TOC entries that should not be on display - self.content = self.filter_entries(self.content) - return super().run() \ No newline at end of file diff --git a/docs/.buildinfo b/docs/.buildinfo deleted file mode 100644 index 22c6c0551..000000000 --- a/docs/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: a6ab81b3c41e4781a0031d0a7c77675f -tags: be4362e60f1d1db25417485319f68a65 diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index e69de29bb..000000000 diff --git a/docs/_downloads/113f319c894db95961393cf5067453da/WindSECBRulesets.py b/docs/_downloads/113f319c894db95961393cf5067453da/WindSECBRulesets.py deleted file mode 100644 index a3d363f00..000000000 --- a/docs/_downloads/113f319c894db95961393cf5067453da/WindSECBRulesets.py +++ /dev/null @@ -1,143 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def SECB_config(BIM): - """ - Rules to identify a HAZUS SECB configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'bur' - # Warning: HAZUS does not have N/A option for CECB, so here we use bur - else: - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # shutters - if year >= 2000: - shutters = BIM['WBD'] - # BOCA 1996 and earlier: - # Shutters were not required by code until the 2000 IBC. Before 2000, the - # percentage of commercial buildings that have shutters is assumed to be - # 46%. This value is based on a study on preparedness of small businesses - # for hurricane disasters, which says that in Sarasota County, 46% of - # business owners had taken action to wind-proof or flood-proof their - # facilities. In addition to that, 46% of business owners reported boarding - # up their businesses before Hurricane Katrina. In addition, compliance - # rates based on the Homeowners Survey data hover between 43 and 50 percent. - else: - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - # Wind Debris (widd in HAZSU) - # HAZUS A: Res/Comm, B: Varies by direction, C: Residential, D: None - WIDD = 'C' # residential (default) - if BIM['occupancy_class'] in ['RES1', 'RES2', 'RES3A', 'RES3B', 'RES3C', - 'RES3D']: - WIDD = 'C' # residential - elif BIM['occupancy_class'] == 'AGR1': - WIDD = 'D' # None - else: - WIDD = 'A' # Res/Comm - - # Window area ratio - if BIM['window_area'] < 0.33: - WWR = 'low' - elif BIM['window_area'] < 0.5: - WWR = 'med' - else: - WWR = 'hig' - - # Metal RDA - # 1507.2.8.1 High Wind Attachment. - # Underlayment applied in areas subject to high winds (Vasd greater - # than 110 mph as determined in accordance with Section 1609.3.1) shall - # be applied with corrosion-resistant fasteners in accordance with - # the manufacturer’s instructions. Fasteners are to be applied along - # the overlap not more than 36 inches on center. - if BIM['V_ult'] > 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - - if BIM['stories'] <= 2: - bldg_tag = 'SECBL' - elif BIM['stories'] <= 5: - bldg_tag = 'SECBM' - else: - bldg_tag = 'SECBH' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WWR}_" \ - f"{int(shutters)}_" \ - f"{WIDD}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - diff --git a/docs/_downloads/120e521afaec5b6db38449fd0bb661c5/WindClassRulesets.py b/docs/_downloads/120e521afaec5b6db38449fd0bb661c5/WindClassRulesets.py deleted file mode 100644 index d07926f20..000000000 --- a/docs/_downloads/120e521afaec5b6db38449fd0bb661c5/WindClassRulesets.py +++ /dev/null @@ -1,494 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def parse_BIM(BIM_in): - """ - Parses the information provided in the BIM model. - - The parameters below list the expected inputs - - Parameters - ---------- - stories: str - Number of stories - yearBuilt: str - Year of construction. - roofType: {'hip', 'hipped', 'gabled', 'gable', 'flat'} - One of the listed roof shapes that best describes the building. - occupancy: str - Occupancy type. - buildingDescription: str - MODIV code that provides additional details about the building - structType: {'Stucco', 'Frame', 'Stone', 'Brick'} - One of the listed structure types that best describes the building. - V_design: string - Ultimate Design Wind Speed was introduced in the 2012 IBC. Officially - called “Ultimate Design Wind Speed (Vult); equivalent to the design - wind speeds taken from hazard maps in ASCE 7 or ATC's API. Unit is - assumed to be mph. - area: float - Plan area in ft2. - z0: string - Roughness length that characterizes the surroundings. - - Returns - ------- - BIM: dictionary - Parsed building characteristics. - """ - - # maps roof type to the internal representation - ap_RoofType = { - 'hip' : 'hip', - 'hipped': 'hip', - 'Hip' : 'hip', - 'gabled': 'gab', - 'gable' : 'gab', - 'Gable' : 'gab', - 'flat' : 'flt', - 'Flat' : 'flt' - } - # maps roof system to the internal representation - ap_RoofSyste = { - 'Wood': 'trs', - 'OWSJ': 'ows', - 'N/A': 'trs' - } - roof_system = BIM_in.get('RoofSystem','Wood') - try: - if np.isnan(roof_system): - roof_system = 'Wood' - except: - pass - # maps number of units to the internal representation - ap_NoUnits = { - 'Single': 'sgl', - 'Multiple': 'mlt', - 'Multi': 'mlt', - 'nav': 'nav' - } - # maps for split level - ap_SplitLevel = { - 'NO': 0, - 'YES': 1 - } - # maps for design level (Marginal Engineered is mapped to Engineered as default) - ap_DesignLevel = { - 'E': 'E', - 'NE': 'NE', - 'PE': 'PE', - 'ME': 'E' - } - design_level = BIM_in.get('DesignLevel','E') - try: - if np.isnan(design_level): - design_level = 'E' - except: - pass - - foundation = BIM_in.get('FoundationType') - if np.isnan(foundation): - foundation = 3501 - - nunits = BIM_in.get('NumberOfUnits',1) - if np.isnan(nunits): - nunits = 1 - - # Average January Temp. - ap_ajt = { - 'Above': 'above', - 'Below': 'below' - } - - # Year built - alname_yearbuilt = ['yearBuilt', 'YearBuiltMODIV', 'YearBuilt'] - try: - yearbuilt = BIM_in['YearBuiltNJDEP'] - except: - for i in alname_yearbuilt: - if i in BIM_in.keys(): - yearbuilt = BIM_in[i] - break - print('yearbuilt = ', yearbuilt) - - # Number of Stories - alname_nstories = ['stories', 'NumberofStories0', 'NumberOfStories'] - try: - nstories = BIM_in['NumberofStories1'] - except: - for i in alname_nstories: - if i in BIM_in.keys(): - nstories = BIM_in[i] - break - - # Plan Area - alname_area = ['area', 'PlanArea1', 'PlanArea'] - try: - area = BIM_in['PlanArea0'] - except: - for i in alname_area: - if i in BIM_in.keys(): - area = BIM_in[i] - break - - # if getting RES3 only (without subclass) then converting it to default RES3A - oc = BIM_in.get('occupancy','RES1') - if oc == 'RES3': - oc = 'RES3A' - - # maps for flood zone - ap_FloodZone = { - # Coastal areas with a 1% or greater chance of flooding and an - # additional hazard associated with storm waves. - 6101: 'VE', - 6102: 'VE', - 6103: 'AE', - 6104: 'AE', - 6105: 'AO', - 6106: 'AE', - 6107: 'AH', - 6108: 'AO', - 6109: 'A', - 6110: 'X', - 6111: 'X', - 6112: 'X', - 6113: 'OW', - 6114: 'D', - 6115: 'NA', - 6119: 'NA' - } - if type(BIM_in['FloodZone']) == int: - # NJDEP code for flood zone (conversion to the FEMA designations) - floodzone_fema = ap_FloodZone[BIM_in['FloodZone']] - else: - # standard input should follow the FEMA flood zone designations - floodzone_fema = BIM_in['FloodZone'] - - # first, pull in the provided data - BIM = dict( - occupancy_class=str(oc), - bldg_type=BIM_in['BuildingType'], - year_built=int(yearbuilt), - # double check with Tracey for format - (NumberStories0 is 4-digit code) - # (NumberStories1 is image-processed story number) - stories=int(nstories), - area=float(area), - flood_zone=floodzone_fema, - V_ult=float(BIM_in['DesignWindSpeed']), - avg_jan_temp=ap_ajt[BIM_in.get('AverageJanuaryTemperature','Below')], - roof_shape=ap_RoofType[BIM_in['RoofShape']], - roof_slope=float(BIM_in.get('RoofSlope',0.25)), # default 0.25 - sheathing_t=float(BIM_in.get('SheathingThick',1.0)), # default 1.0 - roof_system=str(ap_RoofSyste[roof_system]), # only valid for masonry structures - garage_tag=float(BIM_in.get('Garage',-1.0)), - lulc=BIM_in.get('LULC',-1), - z0 = float(BIM_in.get('RoughnessLength',-1)), # if the z0 is already in the input file - Terrain = BIM_in.get('Terrain',-1), - mean_roof_height=float(BIM_in.get('MeanRoofHeight',15.0)), # default 15 - design_level=str(ap_DesignLevel[design_level]), # default engineered - no_units=int(nunits), - window_area=float(BIM_in.get('WindowArea',0.20)), - first_floor_ht1=float(BIM_in.get('FirstFloorHeight',10.0)), - split_level=bool(ap_SplitLevel[BIM_in.get('SplitLevel',0)]), # dfault: no - fdtn_type=int(foundation), # default: pile - city=BIM_in.get('City','NA'), - wind_zone=str(BIM_in.get('WindZone', 'I')) - ) - - # add inferred, generic meta-variables - - # Hurricane-Prone Region (HRP) - # Areas vulnerable to hurricane, defined as the U.S. Atlantic Ocean and - # Gulf of Mexico coasts where the ultimate design wind speed, V_ult is - # greater than a pre-defined limit. - if BIM['year_built'] >= 2016: - # The limit is 115 mph in IRC 2015 - HPR = BIM['V_ult'] > 115.0 - else: - # The limit is 90 mph in IRC 2009 and earlier versions - HPR = BIM['V_ult'] > 90.0 - - # Wind Borne Debris - # Areas within hurricane-prone regions are affected by debris if one of - # the following two conditions holds: - # (1) Within 1 mile (1.61 km) of the coastal mean high water line where - # the ultimate design wind speed is greater than flood_lim. - # (2) In areas where the ultimate design wind speed is greater than - # general_lim - # The flood_lim and general_lim limits depend on the year of construction - if BIM['year_built'] >= 2016: - # In IRC 2015: - flood_lim = 130.0 # mph - general_lim = 140.0 # mph - else: - # In IRC 2009 and earlier versions - flood_lim = 110.0 # mph - general_lim = 120.0 # mph - # Areas within hurricane-prone regions located in accordance with - # one of the following: - # (1) Within 1 mile (1.61 km) of the coastal mean high water line - # where the ultimate design wind speed is 130 mph (58m/s) or greater. - # (2) In areas where the ultimate design wind speed is 140 mph (63.5m/s) - # or greater. (Definitions: Chapter 2, 2015 NJ Residential Code) - if not HPR: - WBD = False - else: - WBD = ((((BIM['flood_zone'] >= 6101) and (BIM['flood_zone'] <= 6109)) and - BIM['V_ult'] >= flood_lim) or (BIM['V_ult'] >= general_lim)) - - # Terrain - # open (0.03) = 3 - # light suburban (0.15) = 15 - # suburban (0.35) = 35 - # light trees (0.70) = 70 - # trees (1.00) = 100 - # Mapped to Land Use Categories in NJ (see https://www.state.nj.us/dep/gis/ - # digidownload/metadata/lulc02/anderson2002.html) by T. Wu group - # (see internal report on roughness calculations, Table 4). - # These are mapped to Hazus defintions as follows: - # Open Water (5400s) with zo=0.01 and barren land (7600) with zo=0.04 assume Open - # Open Space Developed, Low Intensity Developed, Medium Intensity Developed - # (1110-1140) assumed zo=0.35-0.4 assume Suburban - # High Intensity Developed (1600) with zo=0.6 assume Lt. Tree - # Forests of all classes (4100-4300) assumed zo=0.6 assume Lt. Tree - # Shrub (4400) with zo=0.06 assume Open - # Grasslands, pastures and agricultural areas (2000 series) with - # zo=0.1-0.15 assume Lt. Suburban - # Woody Wetlands (6250) with zo=0.3 assume suburban - # Emergent Herbaceous Wetlands (6240) with zo=0.03 assume Open - # Note: HAZUS category of trees (1.00) does not apply to any LU/LC in NJ - terrain = 15 # Default in Reorganized Rulesets - WIND - if (BIM['z0'] > 0): - terrain = int(100 * BIM['z0']) - elif (BIM['lulc'] > 0): - if (BIM['flood_zone'].startswith('V') or BIM['flood_zone'] in ['A', 'AE', 'A1-30', 'AR', 'A99']): - terrain = 3 - elif ((BIM['lulc'] >= 5000) and (BIM['lulc'] <= 5999)): - terrain = 3 # Open - elif ((BIM['lulc'] == 4400) or (BIM['lulc'] == 6240)) or (BIM['lulc'] == 7600): - terrain = 3 # Open - elif ((BIM['lulc'] >= 2000) and (BIM['lulc'] <= 2999)): - terrain = 15 # Light suburban - elif ((BIM['lulc'] >= 1110) and (BIM['lulc'] <= 1140)) or ((BIM['lulc'] >= 6250) and (BIM['lulc'] <= 6252)): - terrain = 35 # Suburban - elif ((BIM['lulc'] >= 4100) and (BIM['lulc'] <= 4300)) or (BIM['lulc'] == 1600): - terrain = 70 # light trees - elif (BIM['Terrain'] > 0): - if (BIM['flood_zone'].startswith('V') or BIM['flood_zone'] in ['A', 'AE', 'A1-30', 'AR', 'A99']): - terrain = 3 - elif ((BIM['Terrain'] >= 50) and (BIM['Terrain'] <= 59)): - terrain = 3 # Open - elif ((BIM['Terrain'] == 44) or (BIM['Terrain'] == 62)) or (BIM['Terrain'] == 76): - terrain = 3 # Open - elif ((BIM['Terrain'] >= 20) and (BIM['Terrain'] <= 29)): - terrain = 15 # Light suburban - elif (BIM['Terrain'] == 11) or (BIM['Terrain'] == 61): - terrain = 35 # Suburban - elif ((BIM['Terrain'] >= 41) and (BIM['Terrain'] <= 43)) or (BIM['Terrain'] in [16, 17]): - terrain = 70 # light trees - - BIM.update(dict( - # Nominal Design Wind Speed - # Former term was “Basic Wind Speed”; it is now the “Nominal Design - # Wind Speed (V_asd). Unit: mph." - V_asd = np.sqrt(0.6 * BIM['V_ult']), - - # Flood Risk - # Properties in the High Water Zone (within 1 mile of the coast) are at - # risk of flooding and other wind-borne debris action. - flood_risk=True, # TODO: need high water zone for this and move it to inputs! - - HPR=HPR, - WBD=WBD, - terrain=terrain, - )) - - return BIM - - -def building_class(BIM): - """ - Short description - - Long description - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - bldg_class: str - One of the standard building class labels from HAZUS - """ - - if BIM['bldg_type'] == 3001: - if ((BIM['occupancy_class'] == 'RES1') or - ((BIM['roof_shape'] != 'flt') and (BIM['occupancy_class'] == ''))): - # BuildingType = 3001 - # OccupancyClass = RES1 - # Wood Single-Family Homes (WSF1 or WSF2) - # OR roof type = flat (HAZUS can only map flat to WSF1) - # OR default (by '') - if BIM['roof_shape'] == 'flt': # checking if there is a misclassication - BIM['roof_shape'] = 'gab' # ensure the WSF has gab (by default, note gab is more vulneable than hip) - return 'WSF' - else: - # BuildingType = 3001 - # OccupancyClass = RES3, RES5, RES6, or COM8 - # Wood Multi-Unit Hotel (WMUH1, WMUH2, or WMUH3) - return 'WMUH' - elif BIM['bldg_type'] == 3002: - if ((BIM['design_level'] == 'E') and - (BIM['occupancy_class'] in ['RES3A', 'RES3B', 'RES3C', 'RES3D', - 'RES3E', 'RES3F'])): - # BuildingType = 3002 - # Steel Engineered Residential Building (SERBL, SERBM, SERBH) - return 'SERB' - elif ((BIM['design_level'] == 'E') and - (BIM['occupancy_class'] in ['COM1', 'COM2', 'COM3', 'COM4', 'COM5', - 'COM6', 'COM7', 'COM8', 'COM9','COM10'])): - # BuildingType = 3002 - # Steel Engineered Commercial Building (SECBL, SECBM, SECBH) - return 'SECB' - elif ((BIM['design_level'] == 'PE') and - (BIM['occupancy_class'] not in ['RES3A', 'RES3B', 'RES3C', 'RES3D', - 'RES3E', 'RES3F'])): - # BuildingType = 3002 - # Steel Pre-Engineered Metal Building (SPMBS, SPMBM, SPMBL) - return 'SPMB' - else: - return 'SECB' - elif BIM['bldg_type'] == 3003: - if ((BIM['design_level'] == 'E') and - (BIM['occupancy_class'] in ['RES3A', 'RES3B', 'RES3C', 'RES3D', - 'RES3E', 'RES3F', 'RES5', 'RES6'])): - # BuildingType = 3003 - # Concrete Engineered Residential Building (CERBL, CERBM, CERBH) - return 'CERB' - elif ((BIM['design_level'] == 'E') and - (BIM['occupancy_class'] in ['COM1', 'COM2', 'COM3', 'COM4', 'COM5', - 'COM6', 'COM7', 'COM8', 'COM9','COM10'])): - # BuildingType = 3003 - # Concrete Engineered Commercial Building (CECBL, CECBM, CECBH) - return 'CECB' - else: - return 'CECB' - elif BIM['bldg_type'] == 3004: - if BIM['occupancy_class'] == 'RES1': - # BuildingType = 3004 - # OccupancyClass = RES1 - # Masonry Single-Family Homes (MSF1 or MSF2) - return 'MSF' - elif ((BIM['occupancy_class'] in ['RES3A', 'RES3B', 'RES3C', 'RES3D', - 'RES3E', 'RES3F']) and (BIM['design_level'] == 'E')): - # BuildingType = 3004 - # Masonry Engineered Residential Building (MERBL, MERBM, MERBH) - return 'MERB' - elif ((BIM['occupancy_class'] in ['COM1', 'COM2', 'COM3', 'COM4', - 'COM5', 'COM6', 'COM7', 'COM8', 'COM9', - 'COM10']) and (BIM['design_level'] == 'E')): - # BuildingType = 3004 - # Masonry Engineered Commercial Building (MECBL, MECBM, MECBH) - return 'MECB' - elif BIM['occupancy_class'] in ['IND1', 'IND2', 'IND3', 'IND4', 'IND5', 'IND6']: - # BuildingType = 3004 - # Masonry Low-Rise Masonry Warehouse/Factory (MLRI) - return 'MLRI' - elif BIM['occupancy_class'] in ['RES3A', 'RES3B', 'RES3C', 'RES3D', - 'RES3E', 'RES3F', 'RES5', 'RES6', 'COM8']: - # BuildingType = 3004 - # OccupancyClass = RES3X or COM8 - # Masonry Multi-Unit Hotel/Motel (MMUH1, MMUH2, or MMUH3) - return 'MMUH' - elif ((BIM['stories'] == 1) and - (BIM['occupancy_class'] in ['COM1', 'COM2'])): - # BuildingType = 3004 - # Low-Rise Masonry Strip Mall (MLRM1 or MLRM2) - return 'MLRM' - else: - return 'MECB' # for others not covered by the above - #elif ((BIM['occupancy_class'] in ['RES3A', 'RES3B', 'RES3C', 'RES3D', - # 'RES3E', 'RES3F', 'RES5', 'RES6', - # 'COM8']) and (BIM['design_level'] in ['NE', 'ME'])): - # # BuildingType = 3004 - # # Masonry Multi-Unit Hotel/Motel Non-Engineered - # # (MMUH1NE, MMUH2NE, or MMUH3NE) - # return 'MMUHNE' - elif BIM['bldg_type'] == 3005: - return 'MH' - - else: - return 'WMUH' - # if nan building type is provided, return the dominant class - - -def auto_populate(BIM): - """ - Populates the DL model for hurricane assessments in Atlantic County, NJ - - Assumptions: - - Everything relevant to auto-population is provided in the Buiding - Information Model (BIM). - - The information expected in the BIM file is described in the parse_BIM - method. - - Parameters - ---------- - BIM_in: dictionary - Contains the information that is available about the asset and will be - used to auto-popualate the damage and loss model. - """ - - # parse the BIM data - BIM_ap = parse_BIM(BIM) - - # identify the building class - bldg_class = building_class(BIM_ap) diff --git a/docs/_downloads/130bb4ce868cf8d46c7a6df5124c80e8/ADCIRC_Example.zip b/docs/_downloads/130bb4ce868cf8d46c7a6df5124c80e8/ADCIRC_Example.zip deleted file mode 100644 index e65958353..000000000 Binary files a/docs/_downloads/130bb4ce868cf8d46c7a6df5124c80e8/ADCIRC_Example.zip and /dev/null differ diff --git a/docs/_downloads/2654e2d702fb35a3ffb60a6640ca565a/FloodExposedInventory.csv b/docs/_downloads/2654e2d702fb35a3ffb60a6640ca565a/FloodExposedInventory.csv deleted file mode 100644 index b7801a66b..000000000 --- a/docs/_downloads/2654e2d702fb35a3ffb60a6640ca565a/FloodExposedInventory.csv +++ /dev/null @@ -1 +0,0 @@ -,BldgID,Address,City,State,Latitude,Longitude,OccupancyClass,BuildingType,UseCode,BldgClass,DesignLevel,YearBuiltNJDEP,YearBuiltMODIV,NumberofStories0,NumberofStories1,NoUnits,PlanArea0,PlanArea1,FoundationType,SplitLevel,ElevationR0,ElevationR1,FirstFloorHt0,FirstFloorHt1,FloodZone,DSWI,DSWII,DSWIII,DSWIV,WindZone,AvgJanTemp,RoofShape,RoofSlope,RoofCover,RoofSystem,MeanRoofHt,WindowArea,Garage,HazusClassW,HazusClassIN,HazusClassWA,AnalysisDefault,AnalysisAdopted,Modifications,z0,structureType,replacementCost,yearBuilt,stories,area,occupancy 1,NJBF000081138,14 W LEE AVE,Absecon,NJ,39.41770296,-74.50360821,RES1,3001,,17,NE,1956,1956,3101,2,1,1310.670302,1310.670302,3505,NO,19.64,33.89,3,-2.97,6112,112.44902,122.279935,131.916872,138.112949,I,Above,Gable,0,5701,Wood,26.76835396,0,0,,,,1,1,,0.35,nav,1,1956,2,, 2,NJBF000080830,28 W SUMMIT AVE,Absecon,NJ,39.41651021,-74.5040753,RES1,3001,,17,NE,1948,1948,3101,2,1,1061.415481,1061.415481,3505,NO,33.52,47.46,3,6.72,6112,112.447756,122.28405,131.921695,138.122775,I,Above,Gable,0,5701,Wood,40.49340431,0,0,,,,1,1,,0.35,nav,1,1948,2,, 3,NJBF000081726,4 HILLSIDE CIRCLE,Absecon,NJ,39.42232874,-74.49154804,RES1,3001,,17,NE,1978,1978,3101,2,1,1727.399399,1727.399399,3505,NO,27.37,37.5,3,1.88,6112,112.669126,122.445524,132.096741,138.271623,I,Above,Gable,0,5701,Wood,32.43443761,0,1.1,,,,1,1,,0.35,nav,1,1978,2,, 4,NJBF000081784,408 CYNWYD DR,Absecon,NJ,39.42289105,-74.48782533,RES1,3001,,17,NE,1963,1963,3101,2,1,2345.871242,2345.871242,3505,NO,39.5,45.25,3,1.35,6112,112.742973,122.505974,132.162836,138.333671,I,Above,Hip,0,5701,Wood,42.37471008,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 5,NJBF000081765,406 REED RD,Absecon,NJ,39.42270399,-74.48922599,RES1,3001,,17,NE,1965,1965,3101,1,1,1859.506221,1859.506221,3505,NO,21.53,34.6,3,4.76,6112,112.715016,122.482951,132.137651,138.309973,I,Above,Gable,0,5701,Wood,28.06200438,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 6,NJBF000081956,13 E CHURCH ST,Absecon,NJ,39.42484213,-74.49760731,RES1,3001,,17,NE,1955,1955,3102,1,1,3223.52417,3223.52417,3505,NO,19.05,25.37,3,6.97,6112,112.524387,122.311912,131.950342,138.116246,I,Above,Gable,0,5701,Wood,22.21077021,0,0,,,,1,1,,0.35,nav,1,1955,1,, 7,NJBF000082328,126 E FAUNCE LANDING RD,Absecon,NJ,39.42901937,-74.49204439,RES1,3001,,17,NE,1975,1975,3102,1,1,1721.855529,1721.855529,3505,NO,13.32,23.1,3,-2.15,6112,112.610815,122.367022,132.010321,138.157707,I,Above,Gable,0,5701,Wood,18.20772619,0,0,,,,1,1,,0.35,nav,1,1975,1,, 8,NJBF000080280,37 OREGON AVE,Absecon,NJ,39.41455353,-74.50528005,RES1,3001,,17,NE,1962,1962,3101,1,1,2169.394935,2169.394935,3505,NO,11.28,24.08,3,-1.95,6106,112.436462,122.283046,131.921228,138.130426,I,Above,Gable,0,5701,Wood,17.68153312,0,0,,,,1,1,,0.03,nav,1,1962,1,, 9,NJBF000081853,260 MARLIN ROAD,Absecon,NJ,39.42377254,-74.50603219,RES1,3001,,17,NE,1956,1956,3102,2,1,760.9642863,760.9642863,3505,NO,31.44,44.2,3,5.32,6106,112.355989,122.174452,131.800354,137.970274,I,Above,Gable,0,5701,Wood,37.81844169,0,0,,,,1,1,,0.03,nav,1,1956,2,, 10,NJBF000081974,229 MARLIN RD,Absecon,NJ,39.42497064,-74.50597855,RES1,3001,,17,NE,1920,1920,3102,1,1,1271.280647,1271.280647,3505,NO,13.88,24.39,3,-0.6,6112,112.349101,122.163,131.787602,137.95243,I,Above,Gable,0,5701,Wood,19.13581111,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11,NJBF000082543,11 CORDOVA DRIVE,Absecon,NJ,39.4307465,-74.490058,RES1,3001,,17,NE,1968,1968,3102,1,1,1132.619937,1132.619937,3507,NO,17.02,22.21,1,2.6,6112,112.639839,122.384282,132.02919,138.168835,I,Above,Gable,0,5701,Wood,19.61551843,0,0,,,,1,1,,0.35,nav,1,1968,1,, 12,NJBF000082402,309 SPRUCE STREET,Absecon,NJ,39.42961599,-74.49783499,RES1,3001,,17,NE,1957,1957,3102,2,1,807.3432597,807.3432597,3505,NO,31.99,46.9,3,7.84,6110,112.486935,122.258288,131.891213,138.037093,I,Above,Gable,0,5701,Wood,39.44318088,0,1.1,,,,1,1,,0.35,nav,1,1957,2,, 13,NJBF000082126,8 BERKLEY AVE,Absecon,NJ,39.4267832,-74.49606204,RES1,3001,,17,NE,1955,1955,3102,1,1,1362.810166,1362.810166,3505,NO,23.71,35.15,3,7.61,6106,112.543027,122.31908,131.957974,138.115545,I,Above,Gable,0,5701,Wood,29.43127418,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14,NJBF000082112,59 NATALIE TERRACE,Absecon,NJ,39.42662161,-74.49440905,RES1,3001,,17,NE,1955,1955,3102,1,1,2438.147817,2438.147817,3505,NO,22.27,29.48,3,4.56,6110,112.578514,122.350034,131.991863,138.149796,I,Above,Gable,0,5701,Wood,25.87388851,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 15,NJBF000081605,104 PARK CIRCLE,Absecon,NJ,39.42077698,-74.49412412,RES1,3001,,17,NE,1965,1965,3101,1,1,1894.188352,1894.188352,3505,NO,26.53,35.39,3,8.38,6112,112.626482,122.415899,132.064544,138.246757,I,Above,Gable,0,5701,Wood,30.96183874,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 16,NJBF000082569,605 HAY ROAD,Absecon,NJ,39.43107487,-74.48208875,RES1,3001,,17,NE,1984,1984,3102,2,1,1888.502533,1888.502533,3507,NO,22.65,30.43,1,1.5,6110,112.802108,122.522907,132.181217,138.315491,I,Above,Gable,0,5701,Wood,26.54334711,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 17,NJBF000081681,402 BURNING TREE BLVD,Absecon,NJ,39.42177856,-74.48723636,RES1,3001,,18,NE,1989,1989,3101,2,1,2559.926183,2559.926183,3505,NO,27.17,32.26,3,0.89,6106,112.763677,122.528083,132.187115,138.362178,I,Above,Gable,0,5701,Wood,29.71661642,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 18,NJBF000082101,194 N SHORE ROAD,Absecon,NJ,39.4265211,-74.49718423,RES1,3001,,17,NE,1960,1960,3102,2,1,987.0106864,987.0106864,3505,NO,35.11,43.4,3,4.2,6106,112.521522,122.301952,131.939257,138.098073,I,Above,Gable,0,5701,Wood,39.2550296,0,0,,,,1,1,,0.03,nav,1,1960,2,, 19,NJBF000081866,257 SHOWELLTON AVE,Absecon,NJ,39.42392049,-74.50583,RES1,3001,,17,NE,1925,1925,3102,2,1,501.4415323,501.4415323,3505,NO,36.11,47.86,3,8.49,6110,112.359216,122.176482,131.802538,137.971878,I,Above,Gable,0,5701,Wood,41.98728839,0,0,,,,1,1,,0.35,nav,1,1925,2,, 20,NJBF000082507,518 LAZY LANE,Absecon,NJ,39.43052143,-74.48114614,RES1,3001,,18,NE,1989,1989,3102,2,1,5151.764226,5151.764226,3507,NO,26.33,40.12,1,0.5,6106,112.825633,122.54558,132.206085,138.341905,I,Above,Gable,0,5701,Wood,33.22434115,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 21,NJBF000081352,338 S SHORE ROAD,Absecon,NJ,39.41877392,-74.50009673,RES1,3001,,17,NE,1920,1920,3101,2,1,1784.391349,1784.391349,3505,NO,43.25,52.95,3,6.02,6112,112.515379,122.330856,131.972084,138.163724,I,Above,Gable,0,5701,Wood,48.10391541,0,0,,,,1,1,,0.35,nav,1,1920,2,, 22,NJBF000081349,338 S SHORE ROAD,Absecon,NJ,39.41876449,-74.4998435,RES1,3001,,17,NE,1920,1920,3101,2,1,788.7417277,788.7417277,3505,NO,23.42,35.88,3,2.29,6112,112.520807,122.335452,131.977098,138.168766,I,Above,Hip,0,5701,Wood,29.64923546,0,0,,,,1,1,,0.35,nav,1,1920,2,, 23,NJBF000081982,161 OHIO AVE,Absecon,NJ,39.42503821,-74.50407406,RES1,3001,,17,NE,1900,1900,3102,2,1,2248.733882,2248.733882,3505,NO,31.78,44.75,3,0.7,6110,112.3883,122.195796,131.82341,137.988325,I,Above,Hip,0,5701,Wood,38.26621945,0,0,,,,1,1,,0.35,nav,1,1900,2,, 24,NJBF000081970,161 OHIO AVE,Absecon,NJ,39.42495527,-74.50424183,RES1,3001,,17,NE,1900,1900,3102,2,1,629.926956,629.926956,3505,NO,29.92,42.58,3,-2.55,6112,112.38536,122.193699,131.821134,137.986375,I,Above,Gable,0,5701,Wood,36.24764684,0,0,,,,1,1,,0.35,nav,1,1900,2,, 25,NJBF000080418,48 OREGON AVE,Absecon,NJ,39.41498667,-74.50528264,RES1,3001,,17,NE,1925,1925,3101,2,1,1484.249783,1484.249783,3505,NO,27.13,35.51,3,-2.75,6106,112.43323,122.27851,131.916153,138.123516,I,Above,Gable,0,5701,Wood,31.31707114,0,0,,,,1,1,,0.03,nav,1,1925,2,, 26,NJBF000080935,15 W COLORADO AVE,Absecon,NJ,39.41694243,-74.5045808,RES1,3001,,17,NE,1964,1964,3101,1,1,2221.575051,2221.575051,3505,NO,15.4,24.87,3,2.32,6112,112.43393,122.270652,131.906987,138.106172,I,Above,Hip,0,5701,Wood,20.13700787,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27,NJBF000081364,112 MEADOWVIEW AVE,Absecon,NJ,39.41885016,-74.5079171,RES1,3001,,17,NE,1972,1972,3101,1,1,1645.389467,1645.389467,3505,NO,24.65,36.8,3,6.83,6112,112.350042,122.192186,131.821007,138.011385,I,Above,Gable,0,5701,Wood,30.72558195,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 28,NJBF000081371,110 MEADOWVIEW AVE,Absecon,NJ,39.4189032,-74.50815567,RES1,3001,,17,NE,1972,1972,3101,1,1,2249.094087,2249.094087,3505,NO,14.78,27.21,3,2.69,6112,112.344642,122.187438,131.815822,138.005906,I,Above,Gable,0,5701,Wood,20.99607079,0,0,,,,1,1,,0.35,nav,1,1972,1,, 29,NJBF000081337,127 MEADOWVIEW AVE,Absecon,NJ,39.4186983,-74.50651946,RES1,3001,,17,NE,1972,1972,3101,1,1,1593.999056,1593.999056,3505,NO,18.53,26.75,3,5.24,6106,112.38055,122.218344,131.849527,138.040911,I,Above,Gable,0,5701,Wood,22.63650367,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 30,NJBF000082481,8 JULIANNA DRIVE,Absecon,NJ,39.43030157,-74.49026178,RES1,3001,,17,NE,1992,1992,3102,2,1,1183.438885,1183.438885,3507,NO,35.75,42.65,1,0.5,6110,112.638722,122.385289,132.030301,138.171838,I,Above,Gable,0,5701,Wood,39.20011476,0,1.1,,,,1,1,,0.35,nav,1,1992,2,, 31,NJBF000082460,6 JULIANNA DRIVE,Absecon,NJ,39.43013902,-74.48992581,RES1,3001,,17,NE,1997,1997,3102,2,1,596.2476655,596.2476655,3507,NO,36.59,47.29,1,0.29,6106,112.646807,122.392961,132.038712,138.180798,I,Above,Gable,0,5701,Wood,41.93784148,0,0,,,,1,1,,0.03,nav,1,1997,2,, 32,NJBF000082438,4 JULIANNA DRIVE,Absecon,NJ,39.42991694,-74.4899414,RES1,3001,,17,NE,1997,1997,3102,2,1,2222.139413,2222.139413,3507,NO,26.71,38.84,1,0.23,6106,112.648054,122.39501,132.040962,138.183964,I,Above,Hip,0,5701,Wood,32.77262268,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 33,NJBF000082233,115 LISBON AVE,Absecon,NJ,39.42822603,-74.48897197,RES1,3001,,17,NE,1985,1985,3102,2,1,2592.295928,2592.295928,3507,NO,31.69,37.23,1,0.99,6106,112.680096,122.429887,132.079226,138.228769,I,Above,Gable,0,5701,Wood,34.46007418,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 34,NJBF000082527,45 SHADY LANE,Absecon,NJ,39.43065336,-74.49655491,RES1,3001,,17,NE,1957,1957,3102,1,1,1251.427714,1251.427714,3505,NO,18.3,31.7,3,6.4,6112,112.506389,122.270119,131.904113,138.045555,I,Above,Gable,0,5701,Wood,24.99872339,0,0,,,,1,1,,0.35,nav,1,1957,1,, 35,NJBF000082222,117 LISBON AVE,Absecon,NJ,39.4280016,-74.48901473,RES1,3001,,17,NE,1985,1985,3102,2,1,1826.351579,1826.351579,3507,NO,39.53,52.6,1,1.48,6106,112.680804,122.431459,132.080955,138.231434,I,Above,Gable,0,5701,Wood,46.06496091,0,0,,,,1,1,,0.03,nav,1,1985,2,, 36,NJBF000082298,6 RUTH COURT,Absecon,NJ,39.42875084,-74.48992171,RES1,3001,,17,NE,2002,2002,3102,2,1,1933.521469,1933.521469,3507,NO,28.35,42,1,1.07,6112,112.656663,122.407511,132.054691,138.202467,I,Above,Gable,0,5701,Wood,35.17707933,0,1.1,,,,1,1,,0.35,nav,1,2002,2,, 37,NJBF000082207,13 RUTH COURT,Absecon,NJ,39.42784222,-74.49048132,RES1,3001,,17,NE,2001,2001,3102,2,1,2017.696541,2017.696541,3507,NO,37.59,45.17,1,0.61,6106,112.651512,122.407052,132.054222,138.205942,I,Above,Gable,0,5701,Wood,41.38026008,0,0,,,,1,1,,0.03,nav,1,2001,2,, 38,NJBF000081217,102 CYNWYD DRIVE,Absecon,NJ,39.41808578,-74.49079411,RES1,3001,,17,NE,1985,1985,3101,2,1,2130.586904,2130.586904,3505,NO,30.8,44.25,3,2.42,6106,112.716838,122.503144,132.160221,138.352388,I,Above,Gable,0,5701,Wood,37.52877386,0,0,,,,1,1,,0.03,nav,1,1985,2,, 39,NJBF000082256,15 MALAGA COVE,Absecon,NJ,39.42844694,-74.48894549,RES1,3001,,17,NE,1985,1985,3102,2,1,1869.599654,1869.599654,3507,NO,24.89,33.86,1,2.69,6110,112.679079,122.428061,132.077219,138.225847,I,Above,Gable,0,5701,Wood,29.37497429,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 40,NJBF000082170,172 E FAUNCE LANDING RD,Absecon,NJ,39.42739257,-74.49000931,RES1,3001,,18,NE,2002,2002,3102,2,1,2535.380082,2535.380082,3507,NO,24.09,32.71,1,2.69,6110,112.664513,122.420126,132.068564,138.221949,I,Above,Flat,0,5701,Wood,28.40233592,0,0,,,,1,1,,0.35,nav,1,2002,2,, 41,NJBF000082260,10 RUTH COURT,Absecon,NJ,39.42848128,-74.49044973,RES1,3001,,17,NE,2000,2000,3102,2,1,2033.371188,2033.371188,3507,NO,24.56,34.18,1,-0.02,6106,112.647627,122.400941,132.047501,138.196582,I,Above,Gable,0,5701,Wood,29.37052287,0,0,,,,1,1,,0.03,nav,1,2000,2,, 42,NJBF000082311,9 MALAGA COVE,Absecon,NJ,39.42888658,-74.48819524,RES1,3001,,17,NE,1985,1985,3102,2,1,1537.029962,1537.029962,3507,NO,23.85,32.38,1,0.04,6106,112.691491,122.43682,132.086806,138.233309,I,Above,Gable,0,5701,Wood,28.11638607,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 43,NJBF000082184,160 E FAUNCE LANDING RD,Absecon,NJ,39.42756621,-74.49054428,RES1,3001,,17,NE,1986,1986,3102,2,1,2397.361919,2397.361919,3507,NO,31.94,46.16,1,-0.06,6106,112.652166,122.40881,132.05616,138.209038,I,Above,Gable,0,5701,Wood,39.04686847,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 44,NJBF000082387,345 N SHORE ROAD,Absecon,NJ,39.42950434,-74.4959074,RES1,3001,,17,NE,2009,2009,3102,2,1,1353.859856,1353.859856,3505,NO,32.22,45.95,3,-0.78,6112,112.527538,122.293527,131.929804,138.075982,I,Above,Gable,0,5701,Wood,39.08447083,0,1.2,,,,1,1,,0.35,nav,1,2009,2,, 45,NJBF000081806,8 CREEK RD,Absecon,NJ,39.42314749,-74.4980805,RES1,3001,,17,NE,1961,1961,3102,1,1,864.6167508,864.6167508,3505,NO,13.03,20.73,3,-1.22,6110,112.526402,122.32113,131.960652,138.133724,I,Above,Flat,0,5701,Wood,16.87867121,0,0,,,,1,1,,0.35,nav,1,1961,1,, 46,NJBF000081822,2 CREEK RD,Absecon,NJ,39.423357,-74.49879688,RES1,3001,,17,NE,1900,1900,3102,2,1,1672.139306,1672.139306,3505,NO,28.19,42.03,3,0.9,6112,112.509948,122.306287,131.944402,138.116654,I,Above,Gable,0,5701,Wood,35.10855052,0,0,,,,1,1,,0.03,nav,1,1900,2,, 47,NJBF000081808,2 ABSECON BLVD,Absecon,NJ,39.41943053,-74.4942316,COM1,3003,210,NaN,ME,1969,0,3401,3,1,982.7318714,982.7318714,3507,NO,42.06,50.19,1,2.62,6106,112.634171,122.427984,132.077943,138.265808,I,Above,Gable,0,NaN,Wood,46.12421466,0,0,,,,1,1,,0.03,nav,1,1969,3,, 48,NJBF000081907,242 MARLIN ROAD,Absecon,NJ,39.42442181,-74.50582553,RES1,3001,,16,NE,1960,1960,3102,1,1,1091.512604,1091.512604,3505,NO,14.17,20.68,3,-2.7,6110,112.355941,122.171363,131.796845,137.964047,I,Above,Hip,0,5701,Wood,17.42568258,0,0,,,,1,1,,0.35,nav,1,1960,1,, 49,NJBF000081879,249 SHOWELLTON AVE,Absecon,NJ,39.42407729,-74.50562536,RES1,3001,,17,NE,1920,1920,3102,2,1,1783.441833,1783.441833,3505,NO,31.67,42.82,3,0.91,6110,112.362438,122.178462,131.804667,137.973382,I,Above,Gable,0,5701,Wood,37.24692703,0,0,,,,1,1,,0.35,nav,1,1920,2,, 50,NJBF000081874,244 SHOWELLTON AVE,Absecon,NJ,39.42403129,-74.5051164,RES1,3001,,17,NE,1924,1924,3102,2,1,1624.692776,1624.692776,3505,NO,41.95,54.69,3,6.21,6110,112.373359,122.187886,131.814965,137.983979,I,Above,Gable,0,5701,Wood,48.32176411,0,0,,,,1,1,,0.35,nav,1,1924,2,, 51,NJBF000081287,402 S SHORE ROAD,Absecon,NJ,39.418504,-74.49988099,RES1,3001,,17,NE,1920,1920,3101,3,1,501.8904822,501.8904822,3505,NO,56.59,64.02,3,8.16,6112,112.521897,122.337478,131.979364,138.172131,I,Above,Flat,0,5701,Wood,60.30431007,0,0,,,,1,1,,0.35,nav,1,1920,3,, 52,NJBF000081291,402 S SHORE ROAD,Absecon,NJ,39.41852282,-74.50019511,RES1,3001,,17,NE,1920,1920,3101,3,1,3024.006738,3024.006738,3505,NO,31.76,39.1,3,-1.08,6112,112.515135,122.331727,131.97309,138.165793,I,Above,Gable,0,5701,Wood,35.43169053,0,0,,,,1,1,,0.35,nav,1,1920,3,, 53,NJBF000081547,305 S SHORE ROAD,Absecon,NJ,39.42003669,-74.50042794,RES1,3001,,17,NE,1926,1926,3101,2,1,1343.702291,1343.702291,3505,NO,28.67,41.28,3,-0.81,6112,112.4993,122.311902,131.95114,138.137463,I,Above,Gable,0,5701,Wood,34.9770424,0,0,,,,1,1,,0.35,nav,1,1926,2,, 54,NJBF000081898,139 OHIO AVE,Absecon,NJ,39.42438152,-74.50342015,RES1,3001,,17,NE,1926,1926,3102,2,1,691.0956332,691.0956332,3505,NO,42.82,50.68,3,6.6,6106,112.40635,122.214096,131.843518,138.011312,I,Above,Gable,0,5701,Wood,46.74916875,0,0,,,,1,1,,0.03,nav,1,1926,2,, 55,NJBF000081255,410 S SHORE ROAD,Absecon,NJ,39.41832692,-74.50035927,RES1,3001,,17,NE,1890,1890,3101,2,1,2496.195676,2496.195676,3505,NO,26.61,35.61,3,-2.63,6112,112.5131,122.33086,131.97219,138.165727,I,Above,Hip,0,5701,Wood,31.11292103,0,0,,,,1,1,,0.35,nav,1,1890,2,, 56,NJBF000082509,306 S MILL ROAD,Absecon,NJ,39.43052811,-74.51643372,RES1,3001,,17,NE,1955,1955,3102,1,1,2753.042109,2753.042109,3505,NO,15.61,23.55,3,0.4,6110,112.098601,121.923161,131.524487,137.660537,I,Above,Gable,0,5701,Wood,19.58336576,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 57,NJBF000081592,,Absecon,NJ,39.42060328,-74.49816606,COM1,3003,,NaN,ME,1969,0,3401,3,1,2332.117884,2332.117884,3507,NO,39.54,53.85,1,-0.39,6106,112.542793,122.346041,131.988281,138.172054,I,Above,Gable,0,NaN,Wood,46.69607231,0,0,,,,1,1,,0.03,nav,1,1969,3,, 58,NJBF000081812,1 WHITE HORSE PIKE,Absecon,NJ,39.42322667,-74.50034007,COM1,3003,,NaN,ME,1969,0,3401,3,1,2510.282018,2510.282018,3507,NO,36.45,44.09,1,2.07,6110,112.478597,122.280373,131.916112,138.088975,I,Above,Flat,0,NaN,Wood,40.26891649,0,0,,,,1,1,,0.03,nav,1,1969,3,, 59,NJBF000081859,113 OHIO AVE,Absecon,NJ,39.42384052,-74.50293706,RES1,3001,,17,NE,1924,1924,3102,2,1,963.1637118,963.1637118,3505,NO,33.52,42.95,3,4.15,6112,112.420107,122.228205,131.859026,138.02917,I,Above,Gable,0,5701,Wood,38.23518232,0,0,,,,1,1,,0.35,nav,1,1924,2,, 60,NJBF000081532,15 W ILLINOIS AVE,Absecon,NJ,39.41990979,-74.50094096,RES1,3001,,17,NE,1959,1959,3101,2,1,1193.753862,1193.753862,3505,NO,35.67,48.64,3,-0.37,6112,112.489418,122.304154,131.942715,138.129583,I,Above,Gable,0,5701,Wood,42.15558243,0,1.1,,,,1,1,,0.35,nav,1,1959,2,, 61,NJBF000081490,325 S SHORE ROAD,Absecon,NJ,39.41951717,-74.50072142,RES1,3001,,17,NE,1860,1860,3101,3,1,1247.309777,1247.309777,3505,NO,43.21,55.88,3,-2.68,6112,112.496865,122.312117,131.951486,138.14001,I,Above,Flat,0,5701,Wood,49.54703128,0,0,,,,1,1,,0.35,nav,1,1860,3,, 62,NJBF000081960,210 SHOWELLTON AVE,Absecon,NJ,39.42489149,-74.50462166,RES1,3001,,17,NE,1924,1924,3102,2,1,1046.806476,1046.806476,3505,NO,27.29,41.58,3,1.94,6112,112.377878,122.187678,131.814569,137.980017,I,Above,Gable,0,5701,Wood,34.43997572,0,0,,,,1,1,,0.35,nav,1,1924,2,, 63,NJBF000081332,200 BURNING TREE BLVD,Absecon,NJ,39.4186742,-74.48922628,RES1,3001,,17,NE,2001,2001,3101,1,1,2668.929258,2668.929258,3505,NO,12.21,21.28,3,1.45,6106,112.745432,122.524962,132.183989,138.372945,I,Above,Hip,0,5701,Wood,16.74890202,0,0,,,,1,1,,0.03,nav,1,2001,1,, 64,NJBF000081736,104 BIRCH CIRCLE,Absecon,NJ,39.42241533,-74.49035295,RES1,3001,,17,NE,1976,1976,3101,2,1,1839.752707,1839.752707,3505,NO,27.37,34.17,3,2.22,6112,112.693541,122.465892,132.119012,138.293044,I,Above,Gable,0,5701,Wood,30.77235426,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 65,NJBF000081615,120 WOODS RD,Absecon,NJ,39.42089365,-74.49361173,RES1,3001,,17,NE,2004,2004,3101,1,1,1946.433141,1946.433141,3505,NO,19.49,27.45,3,6.52,6106,112.636381,122.423775,132.073134,138.254705,I,Above,Hip,0,5701,Wood,23.4719661,0,0,,,,1,1,,0.03,nav,1,2004,1,, 66,NJBF000081712,403 BURNING TREE BLVD,Absecon,NJ,39.42215552,-74.48782095,RES1,3001,,17,NE,1976,1976,3101,2,1,2540.575941,2540.575941,3505,NO,40.13,50.86,3,3.87,6112,112.748564,122.513712,132.171359,138.345207,I,Above,Gable,0,5701,Wood,45.49427717,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 67,NJBF000081745,106 BIRCH CIRCLE,Absecon,NJ,39.42249043,-74.49064177,RES1,3001,,17,NE,1976,1976,3101,2,1,1883.579129,1883.579129,3505,NO,30.58,37.28,3,0.7,6112,112.686929,122.459966,132.112522,138.28637,I,Above,Gable,0,5701,Wood,33.92889082,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 68,NJBF000081510,108 REED RD,Absecon,NJ,39.41971619,-74.49423403,RES1,3001,,17,NE,1989,1989,3101,2,1,2390.026548,2390.026548,3505,NO,25.4,33.82,3,0.93,6112,112.632011,122.424983,132.074622,138.261297,I,Above,Gable,0,5701,Wood,29.60948718,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 69,NJBF000081727,102 BIRCH CIRCLE,Absecon,NJ,39.42234524,-74.49005132,RES1,3001,,17,NE,1974,1974,3101,1,1,2940.207025,2940.207025,3505,NO,18.13,31.93,3,4.19,6110,112.700391,122.471998,132.125699,138.299886,I,Above,Hip,0,5701,Wood,25.02968608,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 70,NJBF000081825,110 CEDAR HILL,Absecon,NJ,39.4233945,-74.48756191,RES1,3001,,17,NE,1962,1962,3101,1,1,3343.762716,3343.762716,3505,NO,12.37,21.44,3,0.63,6112,112.744719,122.505408,132.162182,138.330808,I,Above,Hip,0,5701,Wood,16.90650647,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 71,NJBF000081677,54 ABSECON BLVD,Absecon,NJ,39.4217428,-74.49814547,COM1,3003,219,NaN,ME,1969,0,3401,1,1,3832.285823,3832.285823,3507,NO,16.94,26.29,1,2.5,6106,112.535044,122.334576,131.975563,138.154542,I,Above,Flat,0,NaN,Wood,21.61329909,0,0,,,,1,1,,0.03,nav,1,1969,1,, 72,NJBF000082148,70 NATALIE TERRACE,Absecon,NJ,39.42699756,-74.4936627,RES1,3001,,17,NE,1920,1920,3102,2,1,571.3244125,571.3244125,3505,NO,38.75,44.36,3,3.7,6112,112.591382,122.359347,132.002029,138.158222,I,Above,Gable,0,5701,Wood,41.55243905,0,0,,,,1,1,,0.35,nav,1,1920,2,, 73,NJBF000081769,8 HILLSIDE CIRCLE,Absecon,NJ,39.42278458,-74.49183253,RES1,3001,,17,NE,1976,1976,3101,2,1,2910.188005,2910.188005,3505,NO,29.5,43.4,3,4.81,6112,112.659803,122.435707,132.085956,138.259057,I,Above,Flat,0,5701,Wood,36.45104177,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 74,NJBF000082142,72 NATALIE TERRACE,Absecon,NJ,39.42697397,-74.49283382,RES1,3001,,17,NE,1959,1959,3102,2,1,1820.406736,1820.406736,3505,NO,27.85,42.22,3,-1.42,6106,112.608781,122.374304,132.018405,138.174477,I,Above,Flat,0,5701,Wood,35.03472068,0,0,,,,1,1,,0.03,nav,1,1959,2,, 75,NJBF000082157,121 E FAUNCE LANDING RD,Absecon,NJ,39.42718225,-74.49238511,RES1,3001,,17,NE,1927,1927,3102,2,1,1320.362684,1320.362684,3505,NO,35.08,42.15,3,6.1,6106,112.616643,122.380107,132.024746,138.179826,I,Above,Hip,0,5701,Wood,38.61429293,0,0,,,,1,1,,0.03,nav,1,1927,2,, 76,NJBF000081640,304 BURNING TREE BLVD,Absecon,NJ,39.42118311,-74.48772211,RES1,3001,,17,NE,1999,1999,3101,2,1,2667.195101,2667.195101,3505,NO,26.41,38.73,3,-2.96,6106,112.75798,122.525627,132.184474,138.362262,I,Above,Flat,0,5701,Wood,32.56990755,0,0,,,,1,1,,0.03,nav,1,1999,2,, 77,NJBF000081570,128 ABSECON BLVD,Absecon,NJ,39.42034825,-74.49720731,COM1,3003,210,NaN,ME,1969,0,3401,2,1,1544.319133,1544.319133,3507,NO,38.58,52.68,1,0.52,6106,112.564803,122.365674,132.009758,138.194468,I,Above,Flat,0,NaN,Wood,45.62918313,0,0,,,,1,1,,0.03,nav,1,1969,2,, 78,NJBF000081593,102 PARK CIRCLE,Absecon,NJ,39.42060439,-74.49379991,RES1,3001,,17,NE,1974,1974,3101,2,1,2152.269894,2152.269894,3505,NO,42.9,50.26,3,8.48,6112,112.634569,122.423453,132.072822,138.25566,I,Above,Gable,0,5701,Wood,46.57767044,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 79,NJBF000081817,501 BURNING TREE BLVD,Absecon,NJ,39.42329835,-74.48709415,RES1,3001,,18,NE,1992,1992,3101,2,1,3479.777695,3479.777695,3505,NO,39.22,49.99,3,4.64,6112,112.755239,122.514769,132.172437,138.341199,I,Above,Gable,0,5701,Wood,44.60595496,0,1.1,,,,1,1,,0.35,nav,1,1992,2,, 80,NJBF000082135,141 E FAUNCE LANDING RD,Absecon,NJ,39.42689197,-74.49067608,RES1,3001,,17,NE,1955,1955,3102,1,1,3487.770711,3487.770711,3507,NO,19.36,25.91,1,2.55,6106,112.654229,122.413489,132.061319,138.217021,I,Above,Gable,0,5701,Wood,22.63544805,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 81,NJBF000081752,108 BIRCH CIRCLE,Absecon,NJ,39.42254041,-74.49099733,RES1,3001,,17,NE,1975,1975,3101,2,1,2128.977442,2128.977442,3505,NO,33.06,44.47,3,0.75,6112,112.67912,122.453128,132.105037,138.278826,I,Above,Gable,0,5701,Wood,38.76363568,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 82,NJBF000082001,,Absecon,NJ,39.42527979,-74.49544048,RES1,3001,,NaN,NE,1969,0,3102,2,1,957.0349962,957.0349962,3505,NO,35.4,43.56,3,-0.37,6106,112.56649,122.345723,131.987269,138.151011,I,Above,Gable,0,5701,Wood,39.47945316,0,0,,,,1,1,,0.03,nav,1,1969,2,, 83,NJBF000082144,21 NATALIE TERRACE,Absecon,NJ,39.42698391,-74.49587122,RES1,3001,,17,NE,1965,1965,3102,1,1,2236.437571,2236.437571,3505,NO,11.24,19.86,3,-1.79,6106,112.545601,122.320371,131.959369,138.11607,I,Above,Gable,0,5701,Wood,15.55212282,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 84,NJBF000082002,22 E CHURCH ST,Absecon,NJ,39.42528846,-74.49730134,RES1,3001,,17,NE,1987,1987,3102,2,1,1730.218099,1730.218099,3505,NO,34.84,47.37,3,3.31,6112,112.52765,122.312692,131.951141,138.115139,I,Above,Gable,0,5701,Wood,41.10454198,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 85,NJBF000082461,7 ANDREA LANE,Absecon,NJ,39.43014604,-74.49122957,RES1,3001,,17,NE,1992,1992,3102,2,1,2228.940372,2228.940372,3507,NO,29.5,37.88,1,0.66,6110,112.619803,122.369723,132.013246,138.15574,I,Above,Gable,0,5701,Wood,33.68818778,0,1.1,,,,1,1,,0.35,nav,1,1992,2,, 86,NJBF000082009,105 VASSAR SQUARE,Absecon,NJ,39.4253825,-74.49626199,RES1,3001,,17,NE,1967,1967,3102,1,1,1042.681635,1042.681635,3505,NO,23.46,36.05,3,8.21,6106,112.548642,122.330104,131.970173,138.133634,I,Above,Gable,0,5701,Wood,29.75227103,0,0,,,,1,1,,0.03,nav,1,1967,1,, 87,NJBF000082536,18 CORTEZ AVE,Absecon,NJ,39.43071234,-74.48849186,RES1,3001,,17,NE,1965,1965,3102,1,1,2135.242995,2135.242995,3507,NO,16.3,25.12,1,2.43,6110,112.67242,122.412481,132.060102,138.199292,I,Above,Gable,0,5701,Wood,20.71338268,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 88,NJBF000081979,6 EUCLID DRIVE,Absecon,NJ,39.42503091,-74.4945433,RES1,3001,,16,NE,2016,2016,3102,1,1,1733.513765,1733.513765,3505,NO,16.59,24.25,3,-1.24,6106,112.586953,122.364211,132.00752,138.172109,I,Above,Gable,0,5701,Wood,20.41804548,0,1.1,,,,1,1,,0.03,nav,1,2016,1,, 89,NJBF000081973,44 E CHURCH ST,Absecon,NJ,39.42496801,-74.49647839,RES1,3001,,17,NE,1930,1930,3102,1,1,1128.028674,1128.028674,3505,NO,16.37,28.01,3,0.79,6106,112.547046,122.330582,131.970743,138.13597,I,Above,Gable,0,5701,Wood,22.19073318,0,0,,,,1,1,,0.03,nav,1,1930,1,, 90,NJBF000081997,28 E CHURCH ST,Absecon,NJ,39.42524499,-74.49681799,RES1,3001,,16,NE,1988,1988,3102,1,1,1320.357069,1320.357069,3505,NO,21.42,28.4,3,4.36,6106,112.538016,122.321685,131.960981,138.125098,I,Above,Gable,0,5701,Wood,24.90770303,0,0,,,,1,1,,0.03,nav,1,1988,1,, 91,NJBF000082034,211 TREMONT AVE,Absecon,NJ,39.42579426,-74.49607701,RES1,3001,,17,NE,1960,1960,3102,2,1,1755.674472,1755.674472,3505,NO,35.21,46.89,3,1.91,6106,112.549609,122.329096,131.969028,138.130736,I,Above,Gable,0,5701,Wood,41.05246612,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 92,NJBF000082061,31 BERKLEY AVE,Absecon,NJ,39.42614493,-74.49494778,RES1,3001,,17,NE,1955,1955,3102,2,1,1448.724309,1448.724309,3505,NO,37.6,43.74,3,-0.26,6106,112.57065,122.345444,131.986881,138.146916,I,Above,Gable,0,5701,Wood,40.67425467,0,0,,,,1,1,,0.03,nav,1,1955,2,, 93,NJBF000082091,2 TREMONT AVE,Absecon,NJ,39.42637668,-74.49688908,RES1,3001,,17,NE,1960,1960,3102,1,1,2077.300509,2077.300509,3505,NO,20,27.32,3,2,6106,112.528652,122.308666,131.946618,138.106002,I,Above,Gable,0,5701,Wood,23.66096582,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 94,NJBF000082123,,Absecon,NJ,39.42673442,-74.49469817,RES1,3001,,NaN,NE,1969,0,3102,2,1,1066.422538,1066.422538,3505,NO,25.58,34.28,3,-1.34,6110,112.57172,122.343747,131.984973,138.142501,I,Above,Gable,0,5701,Wood,29.92603193,0,0,,,,1,1,,0.35,nav,1,1969,2,, 95,NJBF000082042,205 TREMONT AVE,Absecon,NJ,39.4259162,-74.49659392,RES1,3001,,17,NE,1980,1980,3102,2,1,2725.764706,2725.764706,3505,NO,26.69,32.29,3,1.45,6106,112.537994,122.318677,131.957616,138.118893,I,Above,Gable,0,5701,Wood,29.49150236,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 96,NJBF000081987,32 E CHURCH ST,Absecon,NJ,39.42517299,-74.4965855,RES1,3001,,16,NE,1988,1988,3102,1,1,1231.35876,1231.35876,3505,NO,20.93,32.08,3,6.52,6106,112.543376,122.326558,131.966318,138.130703,I,Above,Gable,0,5701,Wood,26.50717485,0,0,,,,1,1,,0.03,nav,1,1988,1,, 97,NJBF000082048,203 TREMONT AVE,Absecon,NJ,39.42597395,-74.49700099,RES1,3001,,17,NE,1980,1980,3102,1,1,1978.096524,1978.096524,3505,NO,18.79,33.64,3,6.99,6106,112.52912,122.310872,131.949073,138.11016,I,Above,Gable,0,5701,Wood,26.21633921,0,1.1,,,,1,1,,0.03,nav,1,1980,1,, 98,NJBF000081998,10 EUCLID DRIVE,Absecon,NJ,39.4252489,-74.49458482,RES1,3001,,17,NE,2005,2005,3102,2,1,1306.41696,1306.41696,3505,NO,41.79,53.02,3,7.63,6106,112.584531,122.361199,132.004203,138.167893,I,Above,Flat,0,5701,Wood,47.40502605,0,0,,,,1,1,,0.03,nav,1,2005,2,, 99,NJBF000082051,116 N SHORE RD,Absecon,NJ,39.42601956,-74.4974611,RES1,3001,,17,NE,1980,1980,3102,1,1,2098.649143,2098.649143,3505,NO,15.22,28.2,3,2.57,6112,112.519229,122.302258,131.939645,138.100591,I,Above,Hip,0,5701,Wood,21.71092836,0,0,,,,1,1,,0.35,nav,1,1980,1,, 100,NJBF000081962,102 E CHURCH ST,Absecon,NJ,39.42490671,-74.49597532,RES1,3001,,17,NE,1960,1960,3102,1,1,3067.094971,3067.094971,3505,NO,21.88,33.51,3,6,6106,112.557965,122.340123,131.981185,138.146584,I,Above,Gable,0,5701,Wood,27.69688872,0,0,,,,1,1,,0.03,nav,1,1960,1,, 101,NJBF000082103,5 BERKLEY AVE,Absecon,NJ,39.42654298,-74.4964676,RES1,3001,,17,NE,1955,1955,3102,1,1,997.863708,997.863708,3505,NO,23.93,29.92,3,7.03,6106,112.536254,122.31439,131.952864,138.111498,I,Above,Hip,0,5701,Wood,26.92406607,0,0,,,,1,1,,0.03,nav,1,1955,1,, 102,NJBF000082028,3 EARLVIEW TERRACE,Absecon,NJ,39.42571454,-74.49710866,RES1,3001,,17,NE,1920,1920,3102,1,2,1557.320446,1557.320446,3505,NO,20.53,33.37,3,6.44,6112,112.528674,122.311653,131.949955,138.11214,I,Above,Gable,0,5701,Wood,26.95061078,0,0,,,,1,1,,0.35,nav,1,1920,1,, 103,NJBF000082191,2 RUTH COURT,Absecon,NJ,39.42764945,-74.48997956,RES1,3001,,17,NE,2001,2001,3102,2,1,2125.614672,2125.614672,3507,NO,33.38,42.1,1,1.07,6110,112.663288,122.417973,132.066193,138.218515,I,Above,Gable,0,5701,Wood,37.74063826,0,0,,,,1,1,,0.35,nav,1,2001,2,, 104,NJBF000082115,198 N SHORE ROAD,Absecon,NJ,39.42665061,-74.49701896,RES1,3001,,17,NE,1914,1914,3102,2,1,2888.747973,2888.747973,3505,NO,32.1,44.37,3,-2.46,6106,112.524053,122.303519,131.940959,138.099211,I,Above,Gable,0,5701,Wood,38.23553753,0,1.1,,,,1,1,,0.03,nav,1,1914,2,, 105,NJBF000082648,655 WEILER LANE,Absecon,NJ,39.43198967,-74.48467797,RES1,3001,,17,NE,1988,1988,3102,1,1,2334.100496,2334.100496,3507,NO,13.96,28.87,1,2.7,6112,112.7421,122.467081,132.119987,138.25218,I,Above,Hip,0,5701,Wood,21.41688048,0,1.1,,,,1,1,,0.35,nav,1,1988,1,, 106,NJBF000082540,17 LISBON AVE,Absecon,NJ,39.43073645,-74.4888889,RES1,3001,,17,NE,1963,1963,3102,2,1,2206.022909,2206.022909,3507,NO,30.27,39.69,1,2.46,6112,112.664051,122.405168,132.052085,138.191337,I,Above,Gable,0,5701,Wood,34.9779951,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 107,NJBF000082096,30 BERKLEY AVE,Absecon,NJ,39.42642133,-74.49461122,RES1,3001,,17,NE,1950,1950,3102,1,1,2283.617388,2283.617388,3505,NO,24.78,31.18,3,8.55,6106,112.575724,122.348545,131.99025,138.149064,I,Above,Gable,0,5701,Wood,27.97864255,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 108,NJBF000082013,,Absecon,NJ,39.42551982,-74.49508387,RES1,3001,,NaN,NE,1965,0,3102,2,1,2272.285702,2272.285702,3505,NO,30.72,45.51,3,-0.5,6106,112.572216,122.349535,131.991415,138.154085,I,Above,Gable,0,5701,Wood,38.11738752,0,0,,,,1,1,,0.03,nav,1,1965,2,, 109,NJBF000081988,103 VASSAR SQUARE,Absecon,NJ,39.42517949,-74.496278,RES1,3001,,17,NE,1959,1959,3102,2,1,1606.253299,1606.253299,3505,NO,34.64,40.92,3,-2.65,6106,112.549733,122.33193,131.972193,138.136506,I,Above,Gable,0,5701,Wood,37.77987254,0,0,,,,1,1,,0.03,nav,1,1959,2,, 110,NJBF000082131,43 NATALIE TERRACE,Absecon,NJ,39.42684983,-74.49515208,RES1,3001,,17,NE,1928,1928,3102,2,1,1048.310403,1048.310403,3505,NO,33.73,39.98,3,-0.17,6110,112.561473,122.334497,131.974839,138.131975,I,Above,Gable,0,5701,Wood,36.85674646,0,0,,,,1,1,,0.35,nav,1,1928,2,, 111,NJBF000081948,104 E CHURCH ST,Absecon,NJ,39.42479752,-74.49585341,RES1,3001,,17,NE,1927,1927,3102,2,1,1544.641955,1544.641955,3505,NO,31.77,44.48,3,5.49,6106,112.561279,122.343417,131.9848,138.150633,I,Above,Flat,0,5701,Wood,38.12717488,0,0,,,,1,1,,0.03,nav,1,1927,2,, 112,NJBF000082007,,Absecon,NJ,39.42533975,-74.49558282,RES1,3001,,NaN,NE,1968,0,3102,2,1,1132.032056,1132.032056,3505,NO,38.51,52.41,3,6.89,6106,112.563086,122.342565,131.983809,138.147328,I,Above,Gable,0,5701,Wood,45.4611495,0,0,,,,1,1,,0.03,nav,1,1968,2,, 113,NJBF000082010,14 EUCLID DRIVE,Absecon,NJ,39.42540137,-74.49457787,RES1,3001,,17,NE,1965,1965,3102,1,1,1936.901665,1936.901665,3505,NO,20.53,35.32,3,7.19,6106,112.583601,122.359741,132.002594,138.165649,I,Above,Hip,0,5701,Wood,27.92347148,0,0,,,,1,1,,0.03,nav,1,1965,1,, 114,NJBF000082651,615 SOOY LANE,Absecon,NJ,39.43203083,-74.47975076,RES1,3001,,17,NE,2004,2004,3102,2,1,1723.064966,1723.064966,3507,NO,31.83,41.03,1,-0.66,6112,112.843428,122.554744,132.216185,138.345026,I,Above,Gable,0,5701,Wood,36.43265424,0,0,,,,1,1,,0.35,nav,1,2004,2,, 115,NJBF000082210,116 LISBON AVE,Absecon,NJ,39.42789725,-74.48957986,RES1,3001,,17,NE,1984,1984,3102,2,1,1406.974507,1406.974507,3507,NO,39.03,47.73,1,1.21,6106,112.669825,122.422501,132.071144,138.222289,I,Above,Gable,0,5701,Wood,43.37862394,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 116,NJBF000082597,622 HAY ROAD,Absecon,NJ,39.43137148,-74.47966389,RES1,3001,,17,NE,1954,1954,3102,1,1,6136.471065,6136.471065,3507,NO,17.32,24.09,1,2.31,6112,112.850044,122.563219,132.225466,138.356835,I,Above,Hip,0,5701,Wood,20.70750512,0,1.1,,,,1,1,,0.35,nav,1,1954,1,, 117,NJBF000082506,13 CORDOVA DRIVE,Absecon,NJ,39.43051867,-74.48976527,RES1,3001,,17,NE,1980,1980,3102,2,1,1859.448762,1859.448762,3507,NO,31.24,45.65,1,1.26,6110,112.647475,122.391857,132.037496,138.177968,I,Above,Gable,0,5701,Wood,38.44313382,0,0,,,,1,1,,0.35,nav,1,1980,2,, 118,NJBF000082602,604 LAZY LANE,Absecon,NJ,39.43140223,-74.48079809,RES1,3001,,17,NE,1985,1985,3102,1,1,1590.164574,1590.164574,3507,NO,12.94,26.56,1,2.11,6112,112.826399,122.542584,132.202818,138.334903,I,Above,Gable,0,5701,Wood,19.74922349,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 119,NJBF000082611,200 CREEK COURT,Absecon,NJ,39.43157069,-74.48493745,RES1,3001,,17,NE,1984,1984,3102,2,1,1948.304798,1948.304798,3507,NO,27.26,40.87,1,-0.24,6106,112.739739,122.466843,132.119719,138.253735,I,Above,Gable,0,5701,Wood,34.06889496,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 120,NJBF000082259,5 RUTH COURT,Absecon,NJ,39.42847648,-74.48992928,RES1,3001,,17,NE,2002,2002,3102,2,1,1827.206468,1827.206468,3507,NO,29,37.62,1,2.1,6112,112.658466,122.410255,132.057706,138.206614,I,Above,Gable,0,5701,Wood,33.31151677,0,0,,,,1,1,,0.35,nav,1,2002,2,, 121,NJBF000082405,11 ANDREA LANE,Absecon,NJ,39.42964238,-74.49149717,RES1,3001,,17,NE,1992,1992,3102,2,1,1195.022616,1195.022616,3507,NO,27.08,34.23,1,1.01,6106,112.617791,122.370238,132.013823,138.158475,I,Above,Flat,0,5701,Wood,30.65417003,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 122,NJBF000082742,602 SOOY LANE,Absecon,NJ,39.43306166,-74.48136214,RES1,3001,,17,NE,1980,1980,3102,1,1,2627.918994,2627.918994,3507,NO,10.27,17.78,1,-0.45,6112,112.802768,122.515101,132.172708,138.298624,I,Above,Gable,0,5701,Wood,14.0267898,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 123,NJBF000082243,540 FOURTH ST,Absecon,NJ,39.42833063,-74.48324438,RES1,3001,,17,NE,1985,1985,3102,2,1,9726.197409,9726.197409,3507,NO,25.55,38.74,1,-0.24,6106,112.798209,122.530962,132.190028,138.336025,I,Above,Flat,0,5701,Wood,32.14534,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 124,NJBF000082700,1 HOWLETT LANE,Absecon,NJ,39.43254588,-74.4782523,RES1,3001,,17,NE,1964,1964,3102,2,1,3001.752724,3001.752724,3507,NO,24.52,33.26,1,-0.17,6112,112.870581,122.576216,132.239778,138.365442,I,Above,Gable,0,5701,Wood,28.88984829,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 125,NJBF000082635,202 CREEK COURT,Absecon,NJ,39.4318409,-74.48520679,RES1,3001,,17,NE,1984,1984,3102,2,1,2664.175214,2664.175214,3507,NO,35.85,47.69,1,1.72,6110,112.732249,122.459203,132.111342,138.244418,I,Above,Gable,0,5701,Wood,41.77174232,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 126,NJBF000082435,9 JULIANNA DRIVE,Absecon,NJ,39.42987791,-74.49055483,RES1,3001,,17,NE,1989,1989,3102,2,1,1988.836123,1988.836123,3507,NO,40.19,49.96,1,1.71,6106,112.635628,122.384506,132.029452,138.172829,I,Above,Gable,0,5701,Wood,45.07316177,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 127,NJBF000082414,508 LAZY LANE,Absecon,NJ,39.42972137,-74.48271727,RES1,3001,,18,NE,1981,1981,3102,2,1,3826.70564,3826.70564,3507,NO,25.13,39.93,1,-0.17,6112,112.798963,122.525846,132.184421,138.324507,I,Above,Flat,0,5701,Wood,32.52660881,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 128,NJBF000082729,606 SOOY LANE,Absecon,NJ,39.43290815,-74.48064626,RES1,3001,,17,NE,2004,2004,3102,2,1,2745.535232,2745.535232,3507,NO,22.49,37.34,1,-0.86,6112,112.818622,122.529527,132.188535,138.314572,I,Above,Gable,0,5701,Wood,29.91305454,0,0,,,,1,1,,0.35,nav,1,2004,2,, 129,NJBF000082753,118 KESLER LANE,Absecon,NJ,39.43317884,-74.47868292,RES1,3001,,17,NE,1974,1974,3102,1,1,3798.230793,3798.230793,3507,NO,18.1,27.23,1,1.47,6112,112.857086,122.56185,132.22403,138.347564,I,Above,Flat,0,5701,Wood,22.66609552,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 130,NJBF000082160,200 E FAUNCE LANDING RD,Absecon,NJ,39.42726955,-74.48961794,RES1,3001,,17,NE,1935,1935,3102,2,1,1142.490917,1142.490917,3507,NO,39.64,45.7,1,1.08,6106,112.673519,122.428364,132.077594,138.231325,I,Above,Flat,0,5701,Wood,42.66743988,0,0,,,,1,1,,0.03,nav,1,1935,2,, 131,NJBF000082107,22 BERKLEY AVE,Absecon,NJ,39.42658949,-74.49514539,RES1,3001,,17,NE,1948,1948,3102,2,1,2787.455141,2787.455141,3505,NO,39.31,46.54,3,7.4,6106,112.563441,122.337335,131.977968,138.136191,I,Above,Gable,0,5701,Wood,42.92505892,0,0,,,,1,1,,0.03,nav,1,1948,2,, 132,NJBF000081857,257 SHOWELLTON AVE,Absecon,NJ,39.42380568,-74.50578137,RES1,3001,,17,NE,1925,1925,3102,2,1,1272.379007,1272.379007,3505,NO,41,51.27,3,6.31,6110,112.361003,122.178522,131.804789,137.974625,I,Above,Gable,0,5701,Wood,46.13502632,0,0,,,,1,1,,0.35,nav,1,1925,2,, 133,NJBF000082326,7 RUTH COURT,Absecon,NJ,39.4290109,-74.48999817,RES1,3001,,17,NE,2002,2002,3102,2,1,1919.259903,1919.259903,3507,NO,25.79,39.1,1,2.58,6112,112.65325,122.403448,132.050231,138.196969,I,Above,Gable,0,5701,Wood,32.44236357,0,0,,,,1,1,,0.35,nav,1,2002,2,, 134,NJBF000081952,17 E CHURCH ST,Absecon,NJ,39.42482324,-74.49721694,RES1,3001,,17,NE,1957,1957,3102,1,1,1124.784658,1124.784658,3505,NO,13.25,27.65,3,-0.11,6106,112.532653,122.319009,131.958104,138.124043,I,Above,Gable,0,5701,Wood,20.45219773,0,0,,,,1,1,,0.03,nav,1,1957,1,, 135,NJBF000082288,11 MALAGA COVE,Absecon,NJ,39.42864023,-74.48838908,RES1,3001,,17,NE,1985,1985,3102,2,1,1890.670863,1890.670863,3507,NO,30.81,41.61,1,2.13,6106,112.689232,122.435944,132.085852,138.233449,I,Above,Gable,0,5701,Wood,36.21206214,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 136,NJBF000081835,4 CREEK ROAD,Absecon,NJ,39.42354,-74.49837499,RES1,3001,,17,NE,1965,1965,3102,1,1,781.0811702,781.0811702,3505,NO,20.9,30.03,3,2.3,6112,112.517483,122.311849,131.950452,138.1219,I,Above,Gable,0,5701,Wood,25.4662358,0,0,,,,1,1,,0.15,nav,1,1965,1,, 137,NJBF000080087,28 W CALIFORNIA AVE,Absecon,NJ,39.4138764,-74.50517859,RES1,3001,,17,NE,1938,1938,3101,1,1,1260.170343,1260.170343,3505,NO,21.74,28.34,3,6.84,6112,112.443599,122.291848,131.931022,138.14311,I,Above,Gable,0,5701,Wood,25.03564576,0,0,,,,1,1,,0.35,nav,1,1938,1,, 138,NJBF000081945,19 E CHURCH ST,Absecon,NJ,39.42476762,-74.49704462,RES1,3001,,17,NE,1958,1958,3102,1,1,1014.295083,1014.295083,3505,NO,21.65,27.15,3,3.3,6106,112.536626,122.322624,131.962064,138.128211,I,Above,Gable,0,5701,Wood,24.40129101,0,0,,,,1,1,,0.03,nav,1,1958,1,, 139,NJBF000082744,13 SOOY LANE,Absecon,NJ,39.43310449,-74.48601856,RES1,3001,,17,NE,1981,1981,3102,2,1,1882.734375,1882.734375,3507,NO,30.77,42.93,1,0.35,6112,112.706615,122.431517,132.081,138.209399,I,Above,Gable,0,5701,Wood,36.84799708,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 140,NJBF000082643,204 CREEK COURT,Absecon,NJ,39.43189197,-74.48578175,RES1,3001,,17,NE,1984,1984,3102,2,1,4216.822756,4216.822756,3507,NO,21.87,33.13,1,0.85,6106,112.72003,122.448416,132.099512,138.232678,I,Above,Hip,0,5701,Wood,27.5020651,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 141,NJBF000081957,15 E CHURCH ST,Absecon,NJ,39.42485763,-74.49739988,RES1,3001,,17,NE,1955,1955,3102,2,1,1445.102768,1445.102768,3505,NO,34.51,40.04,3,-0.71,6110,112.528591,122.315408,131.954162,138.119976,I,Above,Gable,0,5701,Wood,37.27333519,0,0,,,,1,1,,0.35,nav,1,1955,2,, 142,NJBF000081634,118 WOODS RD,Absecon,NJ,39.42109819,-74.49375785,RES1,3001,,17,NE,1994,1994,3101,2,1,1777.600759,1777.600759,3505,NO,26.27,39.58,3,4.28,6106,112.631811,122.419059,132.067954,138.248719,I,Above,Gable,0,5701,Wood,32.92205832,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 143,NJBF000082132,35 NATALIE TERRACE,Absecon,NJ,39.42687861,-74.49530296,RES1,3001,,17,NE,1968,1968,3102,1,1,1097.125809,1097.125809,3505,NO,16.44,26.41,3,4.4,6106,112.558133,122.331521,131.97158,138.128622,I,Above,Gable,0,5701,Wood,21.42443999,0,0,,,,1,1,,0.03,nav,1,1968,1,, 144,NJBF000081488,56 IOWA AVE,Absecon,NJ,39.41950786,-74.50297032,RES1,3001,,17,NE,1950,1950,3101,2,1,3134.421305,3134.421305,3505,NO,33.16,40.85,3,5.99,6112,112.449583,122.272497,131.908294,138.096786,I,Above,Gable,0,5701,Wood,37.00418616,0,1.1,,,,1,1,,0.35,nav,1,1950,2,, 145,NJBF000082127,72 NATALIE TERRACE,Absecon,NJ,39.42682178,-74.49325826,RES1,3001,,17,NE,1959,1959,3102,2,1,1477.824162,1477.824162,3505,NO,33.87,47.46,3,7.67,6112,112.601039,122.368363,132.011912,138.168731,I,Above,Gable,0,5701,Wood,40.66768957,0,0,,,,1,1,,0.35,nav,1,1959,2,, 146,NJBF000082641,619 SOOY LANE,Absecon,NJ,39.43186145,-74.47908681,RES1,3001,,17,NE,2005,2005,3102,2,1,2566.187309,2566.187309,3507,NO,34.91,46.44,1,0.75,6110,112.85837,122.568425,132.231198,138.360199,I,Above,Hip,0,5701,Wood,40.67821798,0,0,,,,1,1,,0.35,nav,1,2005,2,, 147,NJBF000082471,101 LISBON AVE,Absecon,NJ,39.43023451,-74.48888084,RES1,3001,,17,NE,1985,1985,3102,2,1,2698.276049,2698.276049,3507,NO,28.49,34.79,1,2.75,6106,112.667737,122.41054,132.057979,138.199273,I,Above,Gable,0,5701,Wood,31.63610733,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 148,NJBF000082498,615 HAY ROAD,Absecon,NJ,39.43039589,-74.48005493,RES1,3001,,18,NE,1990,1990,3102,3,1,5427.51774,5427.51774,3507,NO,48.41,62.47,1,1.12,6106,112.849116,122.566427,132.228961,138.364468,I,Above,Hip,0,5701,Wood,55.44210218,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 149,NJBF000081949,2 EUCLID DRIVE,Absecon,NJ,39.42481004,-74.4946834,RES1,3001,,17,NE,2015,2015,3102,1,1,2736.191695,2736.191695,3505,NO,21.53,36.11,3,6.25,6106,112.585603,122.364028,132.007342,138.172884,I,Above,Flat,0,5701,Wood,28.81898234,0,0,,,,1,1,,0.03,nav,1,2015,1,, 150,NJBF000081226,22D OYSTER BAY RD,Absecon,NJ,39.41814235,-74.51222067,RES1,3001,,35,NE,1992,1992,3101,1,1,4446.718463,4446.718463,3505,NO,25.72,36.01,3,7.86,6110,112.264241,122.123956,131.747051,137.938817,I,Above,Hip,0,5701,Wood,30.86702642,0,0,,,,1,1,,0.35,nav,1,1992,1,, 151,NJBF000081350,22D OYSTER BAY RD,Absecon,NJ,39.41877126,-74.51067179,RES1,3001,,35,NE,1992,1992,3101,1,1,3808.104399,3808.104399,3505,NO,13.56,21.35,3,-2.22,6110,112.29258,122.144628,131.76929,137.959055,I,Above,Gable,0,5701,Wood,17.45306891,0,0,,,,1,1,,0.35,nav,1,1992,1,, 152,NJBF000081225,22D OYSTER BAY RD,Absecon,NJ,39.41812663,-74.51354221,RES1,3001,,35,NE,1992,1992,3101,1,1,5648.433757,5648.433757,3505,NO,28.15,35.37,3,8.69,6110,112.236514,122.100977,131.722088,137.913264,I,Above,Gable,0,5701,Wood,31.76268341,0,0,,,,1,1,,0.35,nav,1,1992,1,, 153,NJBF000081209,22D OYSTER BAY RD,Absecon,NJ,39.41805635,-74.5138896,RES1,3001,,35,NE,1992,1992,3101,1,1,5612.535655,5612.535655,3505,NO,23.97,35.83,3,6.28,6110,112.229662,122.095617,131.716295,137.907588,I,Above,Flat,0,5701,Wood,29.90224515,0,0,,,,1,1,,0.35,nav,1,1992,1,, 154,NJBF000081327,,Absecon,NJ,39.41865736,-74.50106654,RES1,3001,,NaN,NE,1969,0,3101,1,1,2563.575843,2563.575843,3505,NO,23.61,29.76,3,6.14,6112,112.495771,122.31492,131.954739,138.146898,I,Above,Hip,0,5701,Wood,26.68462505,0,0,,,,1,1,,0.35,nav,1,1969,1,, 155,NJBF000081590,124 WOODS RD,Absecon,NJ,39.4205949,-74.49305971,RES1,3001,,17,NE,1999,1999,3101,1,1,2443.950899,2443.950899,3505,NO,16.1,22.27,3,3.84,6112,112.650195,122.436695,132.087292,138.269928,I,Above,Gable,0,5701,Wood,19.18507174,0,0,,,,1,1,,0.35,nav,1,1999,1,, 156,NJBF000082646,617 SOOY LANE,Absecon,NJ,39.43194994,-74.47940847,RES1,3001,,17,NE,2004,2004,3102,2,1,2240.495704,2240.495704,3507,NO,30.04,35.68,1,2.34,6110,112.851096,122.561739,132.223861,138.35276,I,Above,Hip,0,5701,Wood,32.86333824,0,0,,,,1,1,,0.35,nav,1,2004,2,, 157,NJBF000081940,21 E CHURCH STREET,Absecon,NJ,39.4247173,-74.49686099,RES1,3001,,17,NE,1948,1948,3102,1,1,1109.099923,1109.099923,3505,NO,18.5,30.48,3,7.71,6106,112.540822,122.326411,131.966211,138.132546,I,Above,Gable,0,5701,Wood,24.48862601,0,0,,,,1,1,,0.03,nav,1,1948,1,, 158,NJBF000082198,122 E FAUNCE LANDING RD,Absecon,NJ,39.42776218,-74.49190409,RES1,3001,,17,NE,1941,1941,3102,2,1,2177.732049,2177.732049,3505,NO,36.09,47.63,3,0.95,6106,112.622538,122.382605,132.027448,138.179983,I,Above,Gable,0,5701,Wood,41.85731248,0,0,,,,1,1,,0.03,nav,1,1941,2,, 159,NJBF000082211,122 E FAUNCE LANDING RD,Absecon,NJ,39.42791353,-74.4917764,RES1,3001,,17,NE,1941,1941,3102,2,1,879.5846252,879.5846252,3505,NO,32.04,46.71,3,3.56,6106,112.624123,122.383294,132.028195,138.180062,I,Above,Gable,0,5701,Wood,39.37663966,0,0,,,,1,1,,0.03,nav,1,1941,2,, 160,NJBF000081228,55 W BOLTON AVE,Absecon,NJ,39.41815499,-74.50401411,RES1,3001,,17,NE,1950,1950,3101,1,1,2524.547521,2524.547521,3505,NO,18.75,24.08,3,4.16,6106,112.437211,122.268093,131.903851,138.097969,I,Above,Gable,0,5701,Wood,21.41180459,0,0,,,,1,1,,0.03,nav,1,1950,1,, 161,NJBF000082213,3 RUTH COURT,Absecon,NJ,39.42792579,-74.48996807,RES1,3001,,17,NE,2001,2001,3102,2,1,1845.379914,1845.379914,3507,NO,35.87,47.42,1,1.76,6112,112.661564,122.415297,132.063251,138.214431,I,Above,Gable,0,5701,Wood,41.6466732,0,0,,,,1,1,,0.35,nav,1,2001,2,, 162,NJBF000082482,505 LAZY LANE,Absecon,NJ,39.43030461,-74.48269057,RES1,3001,,17,NE,1985,1985,3102,2,1,2114.376642,2114.376642,3507,NO,28.83,36.7,1,1.3,6112,112.79525,122.520201,132.178235,138.315973,I,Above,Gable,0,5701,Wood,32.76285679,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 163,NJBF000082565,618 HAY ROAD,Absecon,NJ,39.43100844,-74.48034761,RES1,3001,,17,NE,1978,1978,3102,1,1,2946.369991,2946.369991,3507,NO,17.18,29.18,1,0.04,6112,112.838569,122.554768,132.21618,138.349493,I,Above,Flat,0,5701,Wood,23.18306667,0,1.1,,,,1,1,,0.35,nav,1,1978,1,, 164,NJBF000082229,110 E FAUNCE LANDING ROAD,Absecon,NJ,39.42809539,-74.49208579,RES1,3001,,17,NE,2000,2000,3102,2,1,1622.293404,1622.293404,3505,NO,42.1,53.81,3,8.59,6112,112.616417,122.375904,132.020092,138.171307,I,Above,Hip,0,5701,Wood,47.95447564,0,0,,,,1,1,,0.35,nav,1,2000,2,, 165,NJBF000082161,216 N SHORE ROAD,Absecon,NJ,39.42727099,-74.49664249,RES1,3001,,17,NE,1925,1925,3102,2,1,863.9436207,863.9436207,3505,NO,40.77,51.94,3,6.59,6106,112.527604,122.303744,131.941148,138.096758,I,Above,Gable,0,5701,Wood,46.35546786,0,0,,,,1,1,,0.03,nav,1,1925,2,, 166,NJBF000081540,31 W ILLINOIS AVE,Absecon,NJ,39.41999806,-74.50260621,RES1,3001,,17,NE,1960,1960,3101,2,1,638.4094828,638.4094828,3505,NO,31.88,41.91,3,7.62,6106,112.453768,122.273843,131.909643,138.096088,I,Above,Gable,0,5701,Wood,36.8972383,0,0,,,,1,1,,0.03,nav,1,1960,2,, 167,NJBF000081550,31 W ILLINOIS AVE,Absecon,NJ,39.42004263,-74.5023221,RES1,3001,,17,NE,1960,1960,3101,2,1,3026.089708,3026.089708,3505,NO,27.67,38.19,3,5.97,6106,112.459422,122.278389,131.914588,138.10086,I,Above,Gable,0,5701,Wood,32.93244499,0,0,,,,1,1,,0.03,nav,1,1960,2,, 168,NJBF000080241,33 OREGON AVE,Absecon,NJ,39.41440838,-74.50498813,RES1,3001,,17,NE,1950,1950,3101,1,1,1787.957631,1787.957631,3505,NO,11.79,19.28,3,-2.99,6110,112.443739,122.289709,131.928516,138.13838,I,Above,Gable,0,5701,Wood,15.53358012,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 169,NJBF000081602,122 WOODS RD,Absecon,NJ,39.42073361,-74.49334628,RES1,3001,,17,NE,1970,1970,3101,1,1,3158.545132,3158.545132,3505,NO,23.61,38.04,3,8.69,6112,112.643153,122.430166,132.080139,138.262291,I,Above,Gable,0,5701,Wood,30.82641994,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 170,NJBF000082083,201 S NEW ROAD,Absecon,NJ,39.42631577,-74.50684327,COM1,3001,,NaN,ME,1969,0,3401,2,1,4954.062994,4954.062994,3507,NO,29.23,36.19,1,1.74,6110,112.322303,122.133934,131.755599,137.914462,I,Above,Gable,0,NaN,Wood,32.70902854,0,0,,,,1,1,,1,nav,1,1969,2,, 171,NJBF000081871,113 OHIO AVE,Absecon,NJ,39.42400567,-74.50247996,RES1,3001,,17,NE,1924,1924,3102,2,1,1622.018481,1622.018481,3505,NO,34.14,46.32,3,5.27,6112,112.428516,122.234548,131.865924,138.035411,I,Above,Hip,0,5701,Wood,40.23083666,0,0,,,,1,1,,0.35,nav,1,1924,2,, 172,NJBF000082169,121 E FAUNCE LANDING RD,Absecon,NJ,39.4273895,-74.49226599,RES1,3001,,17,NE,1927,1927,3102,2,1,1095.424209,1095.424209,3505,NO,41.71,49.31,3,3.09,6106,112.617653,122.380064,132.024686,138.178874,I,Above,Gable,0,5701,Wood,45.51216374,0,0,,,,1,1,,0.03,nav,1,1927,2,, 173,NJBF000081020,413 ABSECON BLVD,Absecon,NJ,39.41723338,-74.49276688,COM1,3003,999,NaN,ME,1969,0,3401,1,1,25436.37479,25436.37479,3507,NO,14.6,26,1,0.71,6110,112.681656,122.476903,132.131692,138.328242,I,Above,Flat,0,NaN,Wood,20.2995412,0,0,,,,1,1,,1,nav,1,1969,1,, 174,NJBF000082452,11 JULIANNA DRIVE,Absecon,NJ,39.43007688,-74.49067263,RES1,3001,,17,NE,1989,1989,3102,2,1,1857.718216,1857.718216,3507,NO,35.9,44.81,1,2.18,6106,112.631798,122.380334,132.024875,138.167475,I,Above,Gable,0,5701,Wood,40.35726344,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 175,NJBF000082214,104 E FAUNCE LANDING RD,Absecon,NJ,39.42793074,-74.49265147,RES1,3001,,17,NE,1895,1895,3102,2,1,1031.167029,1031.167029,3505,NO,36.2,44.03,3,8.14,6112,112.605847,122.367585,132.01099,138.163047,I,Above,Gable,0,5701,Wood,40.1134873,0,0,,,,1,1,,0.35,nav,1,1895,2,, 176,NJBF000082047,,Absecon,NJ,39.42595644,-74.49539783,RES1,3001,,NaN,NE,1962,0,3102,2,1,1711.230274,1711.230274,3505,NO,40.96,50.44,3,4.03,6106,112.56261,122.339437,131.980325,138.141237,I,Above,Gable,0,5701,Wood,45.69929531,0,0,,,,1,1,,0.03,nav,1,1962,2,, 177,NJBF000080713,421 ABSECON BLVD,Absecon,NJ,39.41599277,-74.4939573,COM1,3003,,NaN,ME,1969,0,3401,3,1,111302.4168,111302.4168,3507,NO,52.93,64.22,1,2.64,6106,112.665943,122.468645,132.122892,138.325055,I,Above,Flat,0,NaN,Wood,58.57764886,0,0,,,,1,1,,0.03,nav,1,1969,3,, 178,NJBF000082615,,Absecon,NJ,39.4316018,-74.48137424,RES1,3001,,NaN,NE,1969,0,3102,2,1,3352.275756,3352.275756,3507,NO,38.14,49.76,1,2.97,6110,112.813053,122.53018,132.18921,138.320909,I,Above,Gable,0,5701,Wood,43.9475519,0,0,,,,1,1,,0.35,nav,1,1969,2,, 179,NJBF000081885,251 MARLIN RD,Absecon,NJ,39.42413705,-74.50644134,RES1,3001,,17,NE,1980,1980,3102,1,1,1419.656799,1419.656799,3505,NO,17.21,22.59,3,1.72,6106,112.345028,122.163505,131.788326,137.956597,I,Above,Gable,0,5701,Wood,19.90466436,0,0,,,,1,1,,0.03,nav,1,1980,1,, 180,NJBF000081930,23 E CHURCH STREET,Absecon,NJ,39.42464933,-74.49667879,RES1,3001,,17,NE,1958,1958,3102,1,1,1051.022245,1051.022245,3505,NO,11.82,21.3,3,-2.88,6106,112.545097,122.330339,131.970514,138.137108,I,Above,Gable,0,5701,Wood,16.55947057,0,0,,,,1,1,,0.03,nav,1,1958,1,, 181,NJBF000081918,23 E CHURCH STREET,Absecon,NJ,39.42450568,-74.49680447,RES1,3001,,17,NE,1958,1958,3102,1,1,818.8753481,818.8753481,3505,NO,12.46,25.03,3,0.16,6106,112.543496,122.329612,131.969737,138.136948,I,Above,Gable,0,5701,Wood,18.74650874,0,0,,,,1,1,,0.03,nav,1,1958,1,, 182,NJBF000081920,229 SHOWELLTON AVE,Absecon,NJ,39.42451545,-74.50539463,RES1,3001,,17,NE,1950,1950,3102,1,1,1609.306958,1609.306958,3505,NO,19.88,30.59,3,2.24,6110,112.364298,122.177976,131.804046,137.970945,I,Above,Gable,0,5701,Wood,25.23556624,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 183,NJBF000081851,257 MARLIN RD,Absecon,NJ,39.42373869,-74.50661337,RES1,3001,,17,NE,1930,1930,3102,2,1,1424.493772,1424.493772,3505,NO,47.14,54.2,3,8.41,6106,112.344098,122.164596,131.789605,137.959529,I,Above,Gable,0,5701,Wood,50.6655472,0,0,,,,1,1,,0.03,nav,1,1930,2,, 184,NJBF000081942,225 SHOWELLTON AVE,Absecon,NJ,39.42474849,-74.50538249,RES1,3001,,17,NE,1930,1930,3102,1,1,615.5257638,615.5257638,3505,NO,10.36,22.25,3,-1.92,6112,112.363012,122.175795,131.801619,137.967529,I,Above,Gable,0,5701,Wood,16.30760408,0,0,,,,1,1,,0.35,nav,1,1930,1,, 185,NJBF000081888,238 SHOWELLTON AVE,Absecon,NJ,39.42419738,-74.50500967,RES1,3001,,17,NE,1927,1927,3102,2,1,3042.492386,3042.492386,3505,NO,26.53,37.02,3,-2.45,6110,112.374453,122.188034,131.815092,137.98342,I,Above,Gable,0,5701,Wood,31.77649356,0,0,,,,1,1,,0.35,nav,1,1927,2,, 186,NJBF000080143,22 W CALIFORNIA AVE,Absecon,NJ,39.41405449,-74.504858,RES1,3001,,17,NE,1928,1928,3101,2,1,610.2774023,610.2774023,3505,NO,33.04,38.95,3,-1.1,6112,112.449111,122.295669,131.935111,138.146494,I,Above,Gable,0,5701,Wood,35.99389289,0,0,,,,1,1,,0.35,nav,1,1928,2,, 187,NJBF000080084,22 W CALIFORNIA AVE,Absecon,NJ,39.41386475,-74.50493704,RES1,3001,,17,NE,1928,1928,3101,2,1,1991.854069,1991.854069,3505,NO,31.73,40.11,3,4.58,6112,112.448827,122.296233,131.935787,138.147959,I,Above,Gable,0,5701,Wood,35.91603283,0,0,,,,1,1,,0.35,nav,1,1928,2,, 188,NJBF000080773,39 SUMMIT AVE,Absecon,NJ,39.41625996,-74.50486538,RES1,3001,,17,NE,1952,1952,3101,1,1,2766.572862,2766.572862,3505,NO,13.03,26.1,3,0.79,6112,112.432841,122.272703,131.909429,138.111462,I,Above,Gable,0,5701,Wood,19.5635466,0,0,,,,1,1,,0.35,nav,1,1952,1,, 189,NJBF000082629,657 WEILER LANE,Absecon,NJ,39.43177223,-74.48478791,RES1,3001,,17,NE,1984,1984,3102,2,1,1967.030476,1967.030476,3507,NO,37.59,45.24,1,0.29,6110,112.741382,122.467399,132.120332,138.253459,I,Above,Gable,0,5701,Wood,41.41289435,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 190,NJBF000081482,113 MEADOWVIEW AVE,Absecon,NJ,39.41945551,-74.50782416,RES1,3001,,17,NE,1966,1966,3101,1,1,945.3847318,945.3847318,3505,NO,12.94,26.45,3,0.88,6112,112.347808,122.187562,131.815783,138.003613,I,Above,Gable,0,5701,Wood,19.69574815,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 191,NJBF000081167,500 E ABSECON BLVD,Absecon,NJ,39.41784838,-74.49154696,COM1,3003,569,NaN,ME,1969,0,3401,3,1,7087.010728,7087.010728,3507,NO,48.78,58.6,1,-0.38,6112,112.702751,122.492212,132.148314,138.341806,I,Above,Flat,0,NaN,Wood,53.69095724,0,0,,,,1,1,,1,nav,1,1969,3,, 192,NJBF000082334,9 RUTH COURT,Absecon,NJ,39.42908963,-74.49029782,RES1,3001,,17,NE,2002,2002,3102,2,1,2030.317321,2030.317321,3507,NO,24.28,33.44,1,2.48,6110,112.646479,122.397291,132.043483,138.190007,I,Above,Gable,0,5701,Wood,28.8597272,0,0,,,,1,1,,0.35,nav,1,2002,2,, 193,NJBF000082731,7 SOOY LANE,Absecon,NJ,39.43298041,-74.48723703,RES1,3001,,17,NE,2003,2003,3102,2,1,1596.622568,1596.622568,3507,NO,38.29,43.42,1,-0.13,6112,112.68242,122.411121,132.058627,138.188076,I,Above,Flat,0,5701,Wood,40.85257603,0,0,,,,1,1,,0.35,nav,1,2003,2,, 194,NJBF000082201,119 LISBON AVE,Absecon,NJ,39.42777342,-74.48903625,RES1,3001,,17,NE,1985,1985,3102,2,1,2103.655276,2103.655276,3507,NO,21.29,34.02,1,-0.38,6106,112.682006,122.433474,132.083172,138.234596,I,Above,Flat,0,5701,Wood,27.65830041,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 195,NJBF000082477,29 SHADY LANE,Absecon,NJ,39.4302955,-74.495675,RES1,3001,,17,NE,1954,1954,3102,1,1,592.751406,592.751406,3505,NO,16.46,31.36,3,1.47,6112,112.526961,122.289401,131.925247,138.068091,I,Above,Gable,0,5701,Wood,23.91281646,0,1.1,,,,1,1,,0.35,nav,1,1954,1,, 196,NJBF000081345,106 CYNWYD DRIVE,Absecon,NJ,39.41875128,-74.4903746,RES1,3001,,17,NE,1965,1965,3101,2,1,1639.482192,1639.482192,3505,NO,31.58,45.95,3,-0.65,6112,112.720605,122.503679,132.160722,138.349932,I,Above,Gable,0,5701,Wood,38.7667858,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 197,NJBF000082208,137 N SHORE ROAD,Absecon,NJ,39.42785016,-74.4980099,RES1,3001,,17,NE,1948,1948,3102,2,1,2007.305636,2007.305636,3505,NO,37.59,48.12,3,4.87,6112,112.495258,122.273545,131.908048,138.061357,I,Above,Gable,0,5701,Wood,42.85474625,0,0,,,,1,1,,0.35,nav,1,1948,2,, 198,NJBF000081914,107 E CHURCH ST,Absecon,NJ,39.42448378,-74.49617581,RES1,3001,,17,NE,1954,1954,3102,2,1,2118.15098,2118.15098,3505,NO,45.4,60.02,3,7.98,6106,112.556758,122.34096,131.982149,138.149352,I,Above,Flat,0,5701,Wood,52.70864087,0,0,,,,1,1,,0.03,nav,1,1954,2,, 199,NJBF000081899,107 E CHURCH ST,Absecon,NJ,39.42438399,-74.49635635,RES1,3001,,17,NE,1954,1954,3102,2,1,725.5631634,725.5631634,3505,NO,41.59,52.51,3,3.29,6106,112.553707,122.338812,131.979811,138.147464,I,Above,Gable,0,5701,Wood,47.05042188,0,0,,,,1,1,,0.03,nav,1,1954,2,, 200,NJBF000082534,37 SHADY LANE,Absecon,NJ,39.43069579,-74.49636217,RES1,3001,,17,NE,1958,1958,3102,1,1,1231.468577,1231.468577,3505,NO,11.44,19.13,3,-1.09,6112,112.51008,122.273083,131.907357,138.048602,I,Above,Hip,0,5701,Wood,15.28305721,0,0,,,,1,1,,0.35,nav,1,1958,1,, 201,NJBF000082476,37 SHADY LANE,Absecon,NJ,39.4302915,-74.4962675,RES1,3001,,17,NE,1958,1958,3102,1,1,807.7481746,807.7481746,3505,NO,15.4,22.28,3,2.74,6112,112.514741,122.278946,131.913797,138.056723,I,Above,Gable,0,5701,Wood,18.83776692,0,0,,,,1,1,,0.35,nav,1,1958,1,, 202,NJBF000081826,4 CREEK ROAD,Absecon,NJ,39.42339647,-74.49851719,RES1,3001,,17,NE,1965,1965,3102,1,1,2143.54988,2143.54988,3505,NO,15.84,22.06,3,-0.37,6112,112.515528,122.310833,131.949363,138.121429,I,Above,Hip,0,5701,Wood,18.95099449,0,0,,,,1,1,,0.15,nav,1,1965,1,, 203,NJBF000081559,208 CYNWYD DRIVE,Absecon,NJ,39.42013858,-74.48954684,RES1,3001,,17,NE,1942,1942,3101,1,1,2657.71279,2657.71279,3505,NO,21.24,31.54,3,3.76,6112,112.72751,122.503969,132.160881,138.343941,I,Above,Gable,0,5701,Wood,26.38878895,0,1.1,,,,1,1,,0.35,nav,1,1942,1,, 204,NJBF000081548,19 E ILLINOIS AVE,Absecon,NJ,39.4200391,-74.49915762,RES1,3001,,17,NE,1850,1850,3101,2,1,1741.773636,1741.773636,3505,NO,28.8,38.01,3,4.82,6112,112.526003,122.33434,131.975618,138.161864,I,Above,Gable,0,5701,Wood,33.40588526,0,0,,,,1,1,,0.35,nav,1,1850,2,, 205,NJBF000081728,101 ABSECON BLVD,Absecon,NJ,39.42235147,-74.49956679,COM1,3003,210,NaN,ME,1969,0,3401,1,1,1621.290164,1621.290164,3507,NO,21.07,31.68,1,1.74,6106,112.500919,122.303116,131.941103,138.117637,I,Above,Flat,0,NaN,Wood,26.37758356,0,0,,,,1,1,,0.03,nav,1,1969,1,, 206,NJBF000081448,324 S SHORE ROAD,Absecon,NJ,39.41926952,-74.49995552,RES1,3001,,17,NE,1862,1862,3101,2,1,1892.928333,1892.928333,3505,NO,32.46,44.31,3,8.1,6112,112.514757,122.328204,131.969083,138.158624,I,Above,Gable,0,5701,Wood,38.38464329,0,0,,,,1,1,,0.35,nav,1,1862,2,, 207,NJBF000081419,324 S SHORE ROAD,Absecon,NJ,39.41912149,-74.4996725,RES1,3001,,17,NE,1862,1862,3101,2,1,533.2719933,533.2719933,3505,NO,28.93,43.58,3,5.62,6112,112.521799,122.334755,131.976261,138.166412,I,Above,Gable,0,5701,Wood,36.25433846,0,0,,,,1,1,,0.35,nav,1,1862,2,, 208,NJBF000081321,54 W BOLTON AVE,Absecon,NJ,39.41861701,-74.50457946,RES1,3001,,17,NE,1960,1960,3101,1,1,1790.927669,1790.927669,3505,NO,21.05,31.57,3,3.43,6106,112.422008,122.253349,131.887666,138.079753,I,Above,Gable,0,5701,Wood,26.31036534,0,0,,,,1,1,,0.03,nav,1,1960,1,, 209,NJBF000081382,55 IOWA AVE,Absecon,NJ,39.41896738,-74.50346677,RES1,3001,,17,NE,1959,1959,3101,2,2,4177.265362,4177.265362,3505,NO,25.57,33.34,3,0.37,6112,112.442959,122.269333,131.904983,138.095721,I,Above,Gable,0,5701,Wood,29.45603369,0,1.1,,,,1,1,,0.35,nav,1,1959,2,, 210,NJBF000081425,330 S SHORE ROAD,Absecon,NJ,39.419169,-74.49852899,RES1,3001,,17,NE,1990,1990,3101,1,1,965.2957173,965.2957173,3505,NO,25.32,37.62,3,8.64,6112,112.545558,122.354503,131.99779,138.187638,I,Above,Flat,0,5701,Wood,31.46889439,0,0,,,,1,1,,0.35,nav,1,1990,1,, 211,NJBF000081516,315 S SHORE ROAD,Absecon,NJ,39.4197443,-74.50054267,RES1,3001,,17,NE,1955,1955,3101,2,1,3509.49744,3509.49744,3505,NO,19.45,30.67,3,-2.16,6112,112.498982,122.312909,131.9523,138.139862,I,Above,Gable,0,5701,Wood,25.05834582,0,1.1,,,,1,1,,0.35,nav,1,1955,2,, 212,NJBF000081316,52 W BOLTON AVE,Absecon,NJ,39.41859897,-74.5042694,RES1,3001,,17,NE,1958,1958,3101,1,1,2140.91263,2140.91263,3505,NO,16.54,27.32,3,-0.35,6112,112.428671,122.259,131.893825,138.086031,I,Above,Gable,0,5701,Wood,21.92946296,0,0,,,,1,1,,0.35,nav,1,1958,1,, 213,NJBF000081438,333 S SHORE ROAD,Absecon,NJ,39.41922188,-74.50082615,RES1,3001,,17,NE,1950,1950,3101,1,1,2367.355013,2367.355013,3505,NO,12.24,20.12,3,-0.42,6112,112.496776,122.31332,131.952865,138.142636,I,Above,Gable,0,5701,Wood,16.17804258,0,0,,,,1,1,,0.35,nav,1,1950,1,, 214,NJBF000081929,222 SHOWELLTON AVE,Absecon,NJ,39.42463994,-74.50475906,RES1,3001,,17,NE,1926,1926,3102,2,1,1118.815185,1118.815185,3505,NO,28.21,38.72,3,-1.09,6112,112.376708,122.187865,131.814821,137.981312,I,Above,Gable,0,5701,Wood,33.46431181,0,0,,,,1,1,,0.35,nav,1,1926,2,, 215,NJBF000081921,224 SHOWELLTON AVE,Absecon,NJ,39.42453518,-74.50481288,RES1,3001,,17,NE,1924,1924,3102,2,1,918.518541,918.518541,3505,NO,37.42,48.3,3,-0.15,6112,112.376288,122.188002,131.81499,137.981918,I,Above,Hip,0,5701,Wood,42.85800611,0,0,,,,1,1,,0.35,nav,1,1924,2,, 216,NJBF000081595,302 CYNWYD DRIVE,Absecon,NJ,39.42062763,-74.48923957,RES1,3001,,17,NE,1963,1963,3101,1,1,2751.116872,2751.116872,3505,NO,22.14,32.23,3,2.76,6112,112.730272,122.504343,132.161241,138.342127,I,Above,Hip,0,5701,Wood,27.18819953,0,0,,,,1,1,,0.35,nav,1,1963,1,, 217,NJBF000081440,202 CYNWYD DRIVE,Absecon,NJ,39.41922425,-74.49008265,RES1,3001,,17,NE,1974,1974,3101,1,1,1742.294436,1742.294436,3505,NO,23.48,30.09,3,6.74,6106,112.723162,122.503953,132.160965,138.348074,I,Above,Gable,0,5701,Wood,26.78732049,0,0,,,,1,1,,0.03,nav,1,1974,1,, 218,NJBF000081589,108 PARK CIRCLE,Absecon,NJ,39.42058204,-74.49475268,RES1,3001,,17,NE,1971,1971,3101,2,1,2474.048874,2474.048874,3505,NO,35.81,48.61,3,-1.2,6112,112.614694,122.40676,132.054589,138.237791,I,Above,Gable,0,5701,Wood,42.20994739,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 219,NJBF000081507,205 BURNING TREE BLVD,Absecon,NJ,39.41970571,-74.48924734,RES1,3001,,17,NE,1986,1986,3101,2,1,2236.573606,2236.573606,3505,NO,40.08,45.57,3,5.36,6106,112.73711,122.51383,132.171708,138.356406,I,Above,Gable,0,5701,Wood,42.82550171,0,0,,,,1,1,,0.03,nav,1,1986,2,, 220,NJBF000081648,119 WOODS RD,Absecon,NJ,39.42131099,-74.4932677,RES1,3001,,17,NE,1980,1980,3101,2,1,1950.399579,1950.399579,3505,NO,28.87,38.91,3,0.3,6112,112.640535,122.425547,132.075016,138.25474,I,Above,Gable,0,5701,Wood,33.89233937,0,0,,,,1,1,,0.35,nav,1,1980,2,, 221,NJBF000081668,400 BURNING TREE BLVD,Absecon,NJ,39.4215891,-74.48744643,RES1,3001,,17,NE,2001,2001,3101,1,1,1536.98855,1536.98855,3505,NO,19.28,25.06,3,0.1,6106,112.760705,122.526317,132.185197,138.361161,I,Above,Hip,0,5701,Wood,22.16922573,0,0,,,,1,1,,0.03,nav,1,2001,1,, 222,NJBF000082108,139 E FAUNCE LANDING RD,Absecon,NJ,39.42659007,-74.49108037,RES1,3001,640,NaN,NE,1969,0,3102,2,1,771.1701367,771.1701367,3507,NO,30.52,39.66,1,0.3,6106,112.647984,122.409455,132.056919,138.214013,I,Above,Flat,0,5701,Wood,35.08781644,0,0,,,,1,1,,0.03,nav,1,1969,2,, 223,NJBF000082599,15 CORTEZ AVE,Absecon,NJ,39.43138492,-74.48799151,RES1,3001,,17,NE,1965,1965,3102,2,1,1659.555771,1659.555771,3507,NO,37.91,47.4,1,0.7,6110,112.678016,122.41435,132.06215,138.198391,I,Above,Gable,0,5701,Wood,42.65305579,0,0,,,,1,1,,0.35,nav,1,1965,2,, 224,NJBF000082343,126 W FAUNCE LANDING RD,Absecon,NJ,39.42916299,-74.49808689,RES1,3001,,17,NE,1956,1956,3102,1,1,1261.536819,1261.536819,3505,NO,20.53,27.16,3,5.4,6112,112.484774,122.258545,131.891526,138.039321,I,Above,Gable,0,5701,Wood,23.84386783,0,0,,,,1,1,,0.35,nav,1,1956,1,, 225,NJBF000082342,7 MALAGA COVE,Absecon,NJ,39.4291468,-74.48825021,RES1,3001,,17,NE,2002,2002,3102,2,1,2104.540923,2104.540923,3507,NO,38.7,46.17,1,1.6,6106,112.688498,122.433127,132.082753,138.22822,I,Above,Gable,0,5701,Wood,42.43237365,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 226,NJBF000082218,520 FOURTH ST,Absecon,NJ,39.42797305,-74.48348747,RES1,3001,,17,NE,1998,1998,3102,2,1,9140.489657,9140.489657,3507,NO,32.67,39.97,1,1.22,6106,112.795795,122.530361,132.189371,138.336965,I,Above,Hip,0,5701,Wood,36.3225284,0,0,,,,1,1,,0.03,nav,1,1998,2,, 227,NJBF000082043,209 S NEW RD,Absecon,NJ,39.42592633,-74.50690194,COM1,3001,739,NaN,ME,1969,0,3401,3,1,3035.828466,3035.828466,3507,NO,34.2,41.07,1,1.88,6110,112.323625,122.136928,131.758942,137.919456,I,Above,Gable,0,NaN,Wood,37.63446963,0,0,,,,1,1,,1,nav,1,1969,3,, 228,NJBF000081915,43 E CHURCH STREET,Absecon,NJ,39.4244901,-74.49660868,RES1,3001,,17,NE,1952,1952,3102,1,1,792.5855707,792.5855707,3505,NO,19.49,25.76,3,7.04,6106,112.547678,122.333231,131.973696,138.140944,I,Above,Gable,0,5701,Wood,22.62426954,0,0,,,,1,1,,0.03,nav,1,1952,1,, 229,NJBF000081614,106 PARK CIRCLE,Absecon,NJ,39.42087346,-74.49456181,RES1,3001,,17,NE,1963,1963,3101,2,1,2513.95155,2513.95155,3505,NO,25.05,34.66,3,3.56,6112,112.616571,122.407124,132.054943,138.236879,I,Above,Gable,0,5701,Wood,29.85597106,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 230,NJBF000081774,405 CYNWYD DRIVE,Absecon,NJ,39.42280596,-74.48857765,RES1,3001,,17,NE,1965,1965,3101,2,1,1843.502815,1843.502815,3505,NO,38.14,43.29,3,2.07,6112,112.727834,122.493435,132.149117,138.320697,I,Above,Gable,0,5701,Wood,40.71333247,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 231,NJBF000082044,81 NATALIE TERRACE,Absecon,NJ,39.42592798,-74.4935775,RES1,3001,,NaN,NE,1969,0,3102,2,1,1202.386623,1202.386623,3505,NO,31.65,38.32,3,6.06,6106,112.600701,122.371993,132.015953,138.176569,I,Above,Flat,0,5701,Wood,34.987454,0,0,,,,1,1,,0.03,nav,1,1969,2,, 232,NJBF000082310,111 LISBON AVE,Absecon,NJ,39.4288776,-74.48896312,RES1,3001,,17,NE,1985,1985,3102,2,1,1895.810705,1895.810705,3507,NO,28.06,41.77,1,1.14,6110,112.675638,122.423244,132.071928,138.2188,I,Above,Gable,0,5701,Wood,34.91352107,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 233,NJBF000081972,229 MARLIN RD,Absecon,NJ,39.4249625,-74.50615699,RES1,3001,,17,NE,1920,1920,3102,1,1,540.0177065,540.0177065,3505,NO,21.43,34.42,3,2.17,6112,112.345457,122.159967,131.784292,137.949115,I,Above,Hip,0,5701,Wood,27.92411364,0,0,,,,1,1,,0.35,nav,1,1920,1,, 234,NJBF000081818,203 CEDAR HILL DRIVE,Absecon,NJ,39.4232986,-74.48877667,RES1,3001,,17,NE,1970,1970,3101,1,1,3701.743315,3701.743315,3505,NO,17.02,24.14,3,6.12,6106,112.720003,122.484748,132.139572,138.309225,I,Above,Gable,0,5701,Wood,20.57884186,0,0,,,,1,1,,0.03,nav,1,1970,1,, 235,NJBF000081633,305 BURNING TREE BLVD,Absecon,NJ,39.42108893,-74.48843677,RES1,3001,,17,NE,1985,1985,3101,3,1,2508.029004,2508.029004,3505,NO,34.07,41.16,3,2.32,6112,112.743669,122.513853,132.1716,138.350169,I,Above,Hip,0,5701,Wood,37.61487253,0,0,,,,1,1,,0.35,nav,1,1985,3,, 236,NJBF000082587,14 CORTEZ AVE,Absecon,NJ,39.43125896,-74.48847214,RES1,3001,,17,NE,1965,1965,3102,1,1,2497.893578,2497.893578,3507,NO,17.62,32.21,1,1.53,6112,112.668994,122.407125,132.054228,138.191181,I,Above,Hip,0,5701,Wood,24.91557591,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 237,NJBF000082489,35 SHADY LANE,Absecon,NJ,39.43033299,-74.4960935,RES1,3001,,17,NE,1955,1955,3102,1,1,1444.936873,1444.936873,3505,NO,14.45,19.9,3,2.28,6112,112.518056,122.281596,131.916697,138.059433,I,Above,Gable,0,5701,Wood,17.17137026,0,0,,,,1,1,,0.35,nav,1,1955,1,, 238,NJBF000081865,252 MARLIN RD,Absecon,NJ,39.4238884,-74.50603797,RES1,3001,,17,NE,1989,1989,3102,1,1,1234.161321,1234.161321,3505,NO,22.12,30.91,3,7.26,6106,112.355093,122.173158,131.798917,137.968345,I,Above,Hip,0,5701,Wood,26.51302118,0,0,,,,1,1,,0.03,nav,1,1989,1,, 239,NJBF000082164,401 OHIO AVE,Absecon,NJ,39.42730788,-74.50866235,RES1,3001,,17,NE,1960,1960,3102,2,1,1370.715203,1370.715203,3505,NO,38.21,47.39,3,6.55,6106,112.27822,122.091812,131.709395,137.863431,I,Above,Gable,0,5701,Wood,42.8008016,0,0,,,,1,1,,0.03,nav,1,1960,2,, 240,NJBF000082085,15 BERKLEY AVE,Absecon,NJ,39.42632834,-74.4956138,RES1,3001,,17,NE,1960,1960,3102,1,1,1937.850876,1937.850876,3505,NO,20.27,29.89,3,7.26,6106,112.555511,122.331743,131.971871,138.13127,I,Above,Gable,0,5701,Wood,25.08361908,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 241,NJBF000082095,11 BERKLEY AVE,Absecon,NJ,39.42640179,-74.49601883,RES1,3001,,17,NE,1959,1959,3102,2,1,2572.70453,2572.70453,3505,NO,43.98,52.08,3,5.1,6106,112.546571,122.323802,131.963176,138.122333,I,Above,Gable,0,5701,Wood,48.03270257,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 242,NJBF000081797,OHIO AVE,Absecon,NJ,39.42307401,-74.50215496,COM1,3003,,NaN,ME,1969,0,3401,1,1,2705.7086,2705.7086,3507,NO,14.21,22.57,1,0.99,6106,112.441712,122.249932,131.882896,138.056354,I,Above,Flat,0,NaN,Wood,18.39059138,0,0,,,,1,1,,0.03,nav,1,1969,1,, 243,NJBF000082004,,Absecon,NJ,39.42531626,-74.49572137,RES1,3001,,NaN,NE,1960,0,3102,2,1,1527.031288,1527.031288,3505,NO,24.66,32.84,3,-0.05,6106,112.560379,122.34037,131.98141,138.145055,I,Above,Gable,0,5701,Wood,28.75162498,0,0,,,,1,1,,0.03,nav,1,1960,2,, 244,NJBF000081932,228 MARLIN ROAD,Absecon,NJ,39.42466583,-74.50565334,RES1,3001,,17,NE,1955,1955,3102,1,1,2236.4451,2236.4451,3505,NO,22.57,33.07,3,6,6110,112.357916,122.171881,131.79736,137.963561,I,Above,Gable,0,5701,Wood,27.82104636,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 245,NJBF000082413,309 SPRUCE STREET,Absecon,NJ,39.42971392,-74.49797452,RES1,3001,,17,NE,1957,1957,3102,2,1,1866.372461,1866.372461,3505,NO,36.57,48.94,3,0.92,6112,112.483385,122.254798,131.887386,138.03286,I,Above,Gable,0,5701,Wood,42.75612525,0,1.1,,,,1,1,,0.35,nav,1,1957,2,, 246,NJBF000082122,10 BERKLEY AVE,Absecon,NJ,39.42673297,-74.49587565,RES1,3001,,17,NE,1955,1955,3102,1,1,1261.630385,1261.630385,3505,NO,18.2,30.81,3,5.75,6106,112.54724,122.322893,131.96215,138.119901,I,Above,Gable,0,5701,Wood,24.50376212,0,0,,,,1,1,,0.03,nav,1,1955,1,, 247,NJBF000082449,304 SPRUCE ST,Absecon,NJ,39.43006295,-74.49757926,RES1,3001,,17,NE,1957,1957,3102,2,1,1466.240865,1466.240865,3505,NO,36.43,44.45,3,-1.5,6112,112.48922,122.258163,131.89105,138.035039,I,Above,Gable,0,5701,Wood,40.43970137,0,0,,,,1,1,,0.35,nav,1,1957,2,, 248,NJBF000082561,16 CORTEZ AVE,Absecon,NJ,39.4309895,-74.4884745,RES1,3001,,17,NE,1967,1967,3102,1,1,1622.049305,1622.049305,3507,NO,11.54,16.97,1,0.6,6112,112.670839,122.409899,132.057269,138.195319,I,Above,Gable,0,5701,Wood,14.25608585,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 249,NJBF000081909,243 MARLIN RD,Absecon,NJ,39.42446054,-74.50625393,RES1,3001,,17,NE,1961,1961,3102,2,1,1699.118132,1699.118132,3505,NO,34.28,39.91,3,1.6,6110,112.346766,122.163441,131.788187,137.955123,I,Above,Gable,0,5701,Wood,37.0962111,0,0,,,,1,1,,0.35,nav,1,1961,2,, 250,NJBF000081487,204 CYNWYD DRIVE,Absecon,NJ,39.41950355,-74.48990368,RES1,3001,,17,NE,1964,1964,3101,1,1,2360.802027,2360.802027,3505,NO,14.71,28.01,3,-2,6110,112.724806,122.504225,132.16123,138.347093,I,Above,Gable,0,5701,Wood,21.36288346,0,0,,,,1,1,,0.35,nav,1,1964,1,, 251,NJBF000081986,24 E CHURCH ST,Absecon,NJ,39.425169,-74.4970375,RES1,3001,,45,NE,1930,1930,3102,2,4,1107.299516,1107.299516,3505,NO,25.47,37.07,3,-1.53,6106,112.533962,122.318582,131.957596,138.122061,I,Above,Hip,0,5701,Wood,31.27025255,0,0,,,,1,1,,0.03,nav,1,1930,2,, 252,NJBF000081995,24 E CHURCH ST,Absecon,NJ,39.42521812,-74.49711454,RES1,3001,,45,NE,1930,1930,3102,2,4,1264.07921,1264.07921,3505,NO,34.52,47.26,3,8.4,6110,112.532015,122.31671,131.955543,138.119813,I,Above,Hip,0,5701,Wood,40.89148917,0,0,,,,1,1,,0.35,nav,1,1930,2,, 253,NJBF000081775,410 BURNING TREE BLVD,Absecon,NJ,39.42280791,-74.48664148,RES1,3001,,18,NE,1991,1991,3101,2,1,3466.8954,3466.8954,3505,NO,43.34,54.73,3,8.44,6106,112.768398,122.527966,132.186918,138.35742,I,Above,Gable,0,5701,Wood,49.03665419,0,1.1,,,,1,1,,0.03,nav,1,1991,2,, 254,NJBF000081675,115 WOODS ROAD,Absecon,NJ,39.42173724,-74.49315817,RES1,3001,,17,NE,1993,1993,3101,2,1,2785.120573,2785.120573,3505,NO,36.01,42.45,3,0.33,6106,112.639712,122.423068,132.072253,138.250168,I,Above,Gable,0,5701,Wood,39.22992275,0,0,,,,1,1,,0.03,nav,1,1993,2,, 255,NJBF000082018,,Absecon,NJ,39.42555654,-74.4952794,RES1,3001,,NaN,NE,1969,0,3102,2,1,2596.560181,2596.560181,3505,NO,30.7,40.85,3,3.96,6106,112.567893,122.345695,131.98721,138.149765,I,Above,Gable,0,5701,Wood,35.77458342,0,0,,,,1,1,,0.03,nav,1,1969,2,, 256,NJBF000082406,7 JULIANNA DRIVE,Absecon,NJ,39.42966287,-74.49037341,RES1,3001,,17,NE,1992,1992,3102,2,1,1498.804093,1498.804093,3507,NO,37.47,50.14,1,-0.95,6106,112.640899,122.389982,132.035458,138.179656,I,Above,Hip,0,5701,Wood,43.80446021,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 257,NJBF000082304,127 W FAUNCE LANDING RD,Absecon,NJ,39.42884406,-74.49828899,RES1,3001,,16,NE,1925,1925,3102,1,1,934.9143724,934.9143724,3505,NO,12.89,26.9,3,-0.74,6112,112.482745,122.258292,131.891273,138.040418,I,Above,Gable,0,5701,Wood,19.89477381,0,0,,,,1,1,,0.35,nav,1,1925,1,, 258,NJBF000082609,612 HAY ROAD,Absecon,NJ,39.43155018,-74.48203672,RES1,3001,,17,NE,1980,1980,3102,2,1,3840.506429,3840.506429,3507,NO,31.72,46.31,1,0.61,6110,112.799744,122.518864,132.176791,138.309144,I,Above,Gable,0,5701,Wood,39.01124879,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 259,NJBF000081875,248 MARLIN ROAD,Absecon,NJ,39.42403944,-74.50602694,RES1,3001,,17,NE,1950,1950,3102,1,1,1576.391862,1576.391862,3505,NO,19.72,32.11,3,4.82,6106,112.354311,122.171791,131.797391,137.966179,I,Above,Gable,0,5701,Wood,25.91464626,0,0,,,,1,1,,0.03,nav,1,1950,1,, 260,NJBF000081880,248 MARLIN ROAD,Absecon,NJ,39.42409251,-74.50589668,RES1,3001,,17,NE,1950,1950,3102,1,1,521.9644324,521.9644324,3505,NO,21.79,32.91,3,3.19,6106,112.35666,122.173517,131.799264,137.967852,I,Above,Gable,0,5701,Wood,27.34975456,0,0,,,,1,1,,0.03,nav,1,1950,1,, 261,NJBF000081870,253 MARLIN ROAD,Absecon,NJ,39.42399963,-74.50650988,RES1,3001,,17,NE,1960,1960,3102,1,1,2637.973362,2637.973362,3505,NO,20.45,28.74,3,2.4,6106,112.344503,122.163709,131.788578,137.957416,I,Above,Gable,0,5701,Wood,24.5935576,0,0,,,,1,1,,0.03,nav,1,1960,1,, 262,NJBF000081485,312 S SHORE ROAD,Absecon,NJ,39.41948799,-74.49957549,RES1,3001,,17,NE,1927,1927,3101,2,1,981.2351513,981.2351513,3505,NO,37.14,51.54,3,8.18,6112,112.521206,122.332681,131.97392,138.162519,I,Above,Gable,0,5701,Wood,44.33821791,0,0,,,,1,1,,0.35,nav,1,1927,2,, 263,NJBF000081501,312 S SHORE ROAD,Absecon,NJ,39.41965173,-74.49979327,RES1,3001,,17,NE,1927,1927,3101,2,1,1985.475103,1985.475103,3505,NO,22.34,35.83,3,-1.94,6106,112.515431,122.327123,131.967824,138.155744,I,Above,Gable,0,5701,Wood,29.0812107,0,0,,,,1,1,,0.03,nav,1,1927,2,, 264,NJBF000081445,115 MEADOWVIEW AVE,Absecon,NJ,39.41924486,-74.5076508,RES1,3001,,17,NE,1974,1974,3101,1,1,2424.039036,2424.039036,3505,NO,16.56,30.6,3,-0.67,6112,112.352905,122.192782,131.821531,138.010306,I,Above,Gable,0,5701,Wood,23.58364911,0,0,,,,1,1,,0.35,nav,1,1974,1,, 265,NJBF000081446,113 MEADOWVIEW AVE,Absecon,NJ,39.41924909,-74.50788331,RES1,3001,,17,NE,1966,1966,3101,1,1,2374.602423,2374.602423,3505,NO,13.04,23.05,3,-1.27,6112,112.347996,122.188663,131.817045,138.005738,I,Above,Hip,0,5701,Wood,18.04277525,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 266,NJBF000081152,18 W LEE AVE,Absecon,NJ,39.41778346,-74.50426072,RES1,3001,,17,NE,1956,1956,3101,1,1,1575.39202,1575.39202,3505,NO,8.41,15.83,3,-2.41,6112,112.434656,122.267588,131.903406,138.099071,I,Above,Flat,0,5701,Wood,12.1209314,0,0,,,,1,1,,0.35,nav,1,1956,1,, 267,NJBF000080655,44 W NEVADA AVE,Absecon,NJ,39.41580249,-74.50484699,RES1,3001,,17,NE,1956,1956,3101,1,1,2177.945669,2177.945669,3505,NO,20.02,34.8,3,3.98,6112,112.436542,122.277762,131.915075,138.119052,I,Above,Gable,0,5701,Wood,27.41085037,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 268,NJBF000080274,35 OREGON AVE,Absecon,NJ,39.4145195,-74.505083,RES1,3001,,17,NE,1958,1958,3101,1,1,1338.144421,1338.144421,3505,NO,8.8,16.68,3,-1.95,6112,112.440904,122.286884,131.925409,138.134787,I,Above,Gable,0,5701,Wood,12.74133122,0,0,,,,1,1,,0.35,nav,1,1958,1,, 269,NJBF000080375,40 OREGON AVE,Absecon,NJ,39.4148818,-74.50492757,RES1,3001,,17,NE,1925,1925,3101,2,1,1179.016392,1179.016392,3505,NO,23.19,30.6,3,-0.31,6112,112.441534,122.285859,131.924175,138.132038,I,Above,Gable,0,5701,Wood,26.89057668,0,0,,,,1,1,,0.35,nav,1,1925,2,, 270,NJBF000081406,123 MEADOWVIEW AVE,Absecon,NJ,39.41904576,-74.50675375,RES1,3001,,17,NE,1974,1974,3101,2,1,1798.488449,1798.488449,3505,NO,27.45,39.8,3,-0.24,6110,112.373169,122.210612,131.841004,138.030856,I,Above,Gable,0,5701,Wood,33.62520375,0,0,,,,1,1,,0.35,nav,1,1974,2,, 271,NJBF000081437,123 MEADOWVIEW AVE,Absecon,NJ,39.41921999,-74.50651045,RES1,3001,,17,NE,1974,1974,3101,2,1,1618.07099,1618.07099,3505,NO,30.37,45.26,3,-2.75,6106,112.377093,122.213107,131.843669,138.032838,I,Above,Gable,0,5701,Wood,37.81667886,0,0,,,,1,1,,0.03,nav,1,1974,2,, 272,NJBF000081358,114 MEADOWVIEW AVE,Absecon,NJ,39.41882299,-74.50771921,RES1,3001,,17,NE,1970,1970,3101,2,1,1175.095423,1175.095423,3505,NO,43.07,50.54,3,5.45,6112,112.354399,122.195946,131.825107,138.015656,I,Above,Gable,0,5701,Wood,46.80406797,0,0,,,,1,1,,0.35,nav,1,1970,2,, 273,NJBF000081063,144 MARIN DR,Absecon,NJ,39.41739399,-74.51665959,RES1,3001,,33,NE,1988,1988,3101,2,1,2399.360089,2399.360089,3505,NO,32,38.41,3,-1.82,6110,112.175723,122.054,131.671409,137.863865,I,Above,Gable,0,5701,Wood,35.20679118,0,0,,,,1,1,,0.35,nav,1,1988,2,, 274,NJBF000081428,117 MEADOWVIEW AVE,Absecon,NJ,39.41917545,-74.50745768,RES1,3001,,17,NE,1960,1960,3101,1,1,1985.642336,1985.642336,3505,NO,18.98,33.15,3,2.15,6112,112.357452,122.196898,131.826034,138.015159,I,Above,Gable,0,5701,Wood,26.06461663,0,0,,,,1,1,,0.35,nav,1,1960,1,, 275,NJBF000081284,129 MEADOWVIEW AVE,Absecon,NJ,39.41849311,-74.50656661,RES1,3001,,17,NE,1972,1972,3101,2,1,1747.775952,1747.775952,3505,NO,24.55,35.99,3,-1.25,6110,112.380975,122.219619,131.850977,138.04322,I,Above,Gable,0,5701,Wood,30.26999841,0,1.1,,,,1,1,,0.35,nav,1,1972,2,, 276,NJBF000082463,6 JULIANNA DRIVE,Absecon,NJ,39.4301718,-74.49010118,RES1,3001,,17,NE,1997,1997,3102,2,1,2082.437986,2082.437986,3507,NO,25.9,39.73,1,0.4,6106,112.642959,122.389506,132.034925,138.176939,I,Above,Gable,0,5701,Wood,32.81398292,0,0,,,,1,1,,0.03,nav,1,1997,2,, 277,NJBF000082432,2 JULIANNA DRIVE,Absecon,NJ,39.42984838,-74.489648,RES1,3001,,17,NE,2000,2000,3102,2,1,1707.469814,1707.469814,3507,NO,20.51,28.89,1,-0.63,6106,112.654599,122.400939,132.047461,138.190637,I,Above,Gable,0,5701,Wood,24.69774862,0,0,,,,1,1,,0.03,nav,1,2000,2,, 278,NJBF000082640,11 CORTEZ AVE,Absecon,NJ,39.43185786,-74.48790133,RES1,3001,,17,NE,1970,1970,3102,2,1,2042.168811,2042.168811,3507,NO,25.25,36.56,1,2.64,6112,112.676578,122.411028,132.05851,138.192791,I,Above,Gable,0,5701,Wood,30.90730322,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 279,NJBF000082270,115 W FAUNCE LANDING RD,Absecon,NJ,39.42853257,-74.49682062,RES1,3001,,17,NE,1968,1968,3102,1,1,2139.219787,2139.219787,3505,NO,11.07,19.76,3,-0.01,6110,112.51524,122.28746,131.923224,138.073569,I,Above,Gable,0,5701,Wood,15.41675674,0,0,,,,1,1,,0.35,nav,1,1968,1,, 280,NJBF000081273,104 CYNWYD DRIVE,Absecon,NJ,39.41842167,-74.49051756,RES1,3001,,17,NE,1965,1965,3101,1,1,2724.496737,2724.496737,3505,NO,20.55,28.07,3,7.83,6106,112.720098,122.50456,132.161725,138.352368,I,Above,Gable,0,5701,Wood,24.31382876,0,0,,,,1,1,,0.03,nav,1,1965,1,, 281,NJBF000082279,124 E FAUNCE LANDING RD,Absecon,NJ,39.42857961,-74.4921972,RES1,3001,,17,NE,1973,1973,3102,2,1,1590.443309,1590.443309,3505,NO,33.73,47.56,3,3.99,6112,112.610714,122.368881,132.012376,138.16162,I,Above,Gable,0,5701,Wood,40.64272136,0,0,,,,1,1,,0.35,nav,1,1973,2,, 282,NJBF000082185,121 LISBON AVE,Absecon,NJ,39.42756857,-74.48905919,RES1,3001,,17,NE,1985,1985,3102,2,1,1108.491119,1108.491119,3507,NO,23.36,32.32,1,0.27,6106,112.68299,122.435193,132.085062,138.237332,I,Above,Gable,0,5701,Wood,27.84078331,0,0,,,,1,1,,0.03,nav,1,1985,2,, 283,NJBF000082512,31 SHADY LANE,Absecon,NJ,39.43054394,-74.49577924,RES1,3001,,17,NE,1955,1955,3102,1,1,706.620201,706.620201,3505,NO,15.62,27.25,3,-0.33,6112,112.523131,122.284971,131.920384,138.062202,I,Above,Gable,0,5701,Wood,21.43339531,0,0,,,,1,1,,0.35,nav,1,1955,1,, 284,NJBF000082737,9 SOOY LANE,Absecon,NJ,39.43301099,-74.4868431,RES1,3001,,17,NE,2002,2002,3102,2,1,2365.813822,2365.813822,3507,NO,22.65,29.62,1,0.8,6112,112.690311,122.417812,132.065965,138.195118,I,Above,Gable,0,5701,Wood,26.13157477,0,0,,,,1,1,,0.35,nav,1,2002,2,, 285,NJBF000082551,19 CORTEZ AVE,Absecon,NJ,39.43087907,-74.48796626,RES1,3001,,17,NE,1966,1966,3102,2,1,3397.630777,3397.630777,3507,NO,20.83,26.8,1,-0.43,6106,112.682109,122.420098,132.068452,138.20674,I,Above,Gable,0,5701,Wood,23.81361975,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 286,NJBF000082339,109 LISBON AVE,Absecon,NJ,39.4291202,-74.48899675,RES1,3001,,17,NE,1985,1985,3102,2,1,1369.356236,1369.356236,3507,NO,24.58,35.98,1,2.7,6110,112.673216,122.420114,132.068491,138.214389,I,Above,Gable,0,5701,Wood,30.280474,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 287,NJBF000082376,107 LISBON AVE,Absecon,NJ,39.42935643,-74.48893311,RES1,3001,,17,NE,1985,1985,3102,2,1,1519.126899,1519.126899,3507,NO,34.4,46.84,1,1.2,6110,112.672868,122.41879,132.067035,138.211941,I,Above,Gable,0,5701,Wood,40.62011199,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 288,NJBF000082356,5 MALAGA COVE,Absecon,NJ,39.42924522,-74.48855491,RES1,3001,,17,NE,1985,1985,3102,2,1,1571.86086,1571.86086,3507,NO,25.91,37.9,1,0.77,6106,112.681484,122.426675,132.075679,138.22088,I,Above,Gable,0,5701,Wood,31.90752189,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 289,NJBF000081820,10 CREEK RD,Absecon,NJ,39.42332373,-74.49785508,RES1,3001,,17,NE,1964,1964,3102,1,1,2644.478964,2644.478964,3505,NO,24.07,38.45,3,4.57,6106,112.529878,122.32329,131.962986,138.13529,I,Above,Gable,0,5701,Wood,31.25781284,0,0,,,,1,1,,0.03,nav,1,1964,1,, 290,NJBF000081807,2 ABSECON BLVD,Absecon,NJ,39.42316388,-74.49920972,COM1,3003,210,NaN,ME,1969,0,3401,3,1,2925.156052,2925.156052,3507,NO,35.5,40.78,1,0.07,6106,112.502667,122.30099,131.938644,138.111735,I,Above,Flat,0,NaN,Wood,38.1426742,0,0,,,,1,1,,0.03,nav,1,1969,3,, 291,NJBF000081892,244 MARLIN ROAD,Absecon,NJ,39.424283,-74.50592399,RES1,3001,,17,NE,1960,1960,3102,1,1,787.2351112,787.2351112,3505,NO,24.46,36.06,3,7.57,6110,112.354827,122.171078,131.796562,137.964334,I,Above,Flat,0,5701,Wood,30.25847354,0,0,,,,1,1,,0.35,nav,1,1960,1,, 292,NJBF000081897,239 SHOWELLTON AVE,Absecon,NJ,39.42433431,-74.50549868,RES1,3001,,17,NE,1989,1989,3102,1,1,2167.173998,2167.173998,3505,NO,11.69,17.82,3,-1.82,6110,112.363342,122.17802,131.80413,137.971778,I,Above,Gable,0,5701,Wood,14.75317293,0,1.1,,,,1,1,,0.35,nav,1,1989,1,, 293,NJBF000081931,239 MARLIN RD,Absecon,NJ,39.42465948,-74.50616137,RES1,3001,,17,NE,1920,1920,3102,1,1,1335.951596,1335.951596,3505,NO,19.67,34.58,3,7.77,6110,112.347385,122.163028,131.787696,137.95381,I,Above,Gable,0,5701,Wood,27.12323528,0,0,,,,1,1,,0.35,nav,1,1920,1,, 294,NJBF000080278,435 ABSECON BLVD,Absecon,NJ,39.41453344,-74.49202467,COM1,3003,530,NaN,ME,1969,0,3401,1,1,6710.726853,6710.726853,3507,NO,15.5,27.72,1,2.5,6106,112.718248,122.518232,132.177221,138.384758,I,Above,Flat,0,NaN,Wood,21.61423986,0,0,,,,1,1,,0.03,nav,1,1969,1,, 295,NJBF000081913,139 OHIO AVE,Absecon,NJ,39.42447899,-74.50318793,RES1,3001,,17,NE,1926,1926,3102,2,1,2461.873004,2461.873004,3505,NO,30.64,41.37,3,2.28,6106,112.410528,122.217177,131.846865,138.014276,I,Above,Gable,0,5701,Wood,36.00381486,0,0,,,,1,1,,0.03,nav,1,1926,2,, 296,NJBF000081894,135 OHIO AVE,Absecon,NJ,39.4242986,-74.50295202,RES1,3001,,17,NE,1986,1986,3102,2,1,1550.000973,1550.000973,3505,NO,29.98,42.51,3,6.63,6106,112.416671,122.223198,131.853474,138.021674,I,Above,Gable,0,5701,Wood,36.24645716,0,0,,,,1,1,,0.03,nav,1,1986,2,, 297,NJBF000081946,216 SHOWELLTON AVE,Absecon,NJ,39.42476979,-74.50467122,RES1,3001,,17,NE,1924,1924,3102,1,1,1237.080082,1237.080082,3505,NO,11.48,21.04,3,-0.28,6112,112.377669,122.188068,131.815018,137.980972,I,Above,Hip,0,5701,Wood,16.26224898,0,0,,,,1,1,,0.35,nav,1,1924,1,, 298,NJBF000081843,105 OHIO AVE,Absecon,NJ,39.42362701,-74.5020853,RES1,3001,,NaN,NE,1969,0,3102,3,1,5157.247873,5157.247873,3505,NO,53.86,60.82,3,2.25,6112,112.439362,122.245437,131.877885,138.049007,I,Above,Gable,0,5701,Wood,57.33995329,0,0,,,,1,1,,0.35,nav,1,1969,3,, 299,NJBF000081903,230 SHOWELLTON AVE,Absecon,NJ,39.42440899,-74.50488599,RES1,3001,,17,NE,1924,1924,3102,2,1,954.5227163,954.5227163,3505,NO,31.48,41.82,3,1.05,6112,112.375613,122.188021,131.815036,137.982486,I,Above,Gable,0,5701,Wood,36.6474687,0,0,,,,1,1,,0.35,nav,1,1924,2,, 300,NJBF000081910,143 OHIO AVE,Absecon,NJ,39.42447327,-74.5036543,RES1,3001,,17,NE,1900,1900,3102,2,1,694.4442543,694.4442543,3505,NO,28.82,38.92,3,6.65,6106,112.400856,122.209035,131.837973,138.00535,I,Above,Hip,0,5701,Wood,33.87003726,0,0,,,,1,1,,0.03,nav,1,1900,2,, 301,NJBF000081933,143 OHIO AVE,Absecon,NJ,39.42467251,-74.50344124,RES1,3001,,17,NE,1900,1900,3102,2,1,1888.210438,1888.210438,3505,NO,33.98,48.21,3,5.5,6110,112.403942,122.210714,131.839771,138.006327,I,Above,Hip,0,5701,Wood,41.09366294,0,0,,,,1,1,,0.35,nav,1,1900,2,, 302,NJBF000081838,203 STATION AVE,Absecon,NJ,39.42358384,-74.50252912,RES1,3001,,17,NE,1975,1975,3102,1,1,1478.864168,1478.864168,3505,NO,14.17,27.16,3,-1.82,6112,112.430385,122.238056,131.869832,138.041103,I,Above,Gable,0,5701,Wood,20.66711769,0,0,,,,1,1,,0.35,nav,1,1975,1,, 303,NJBF000081887,121 OHIO AVE,Absecon,NJ,39.42418935,-74.50275924,RES1,3001,,17,NE,1900,1900,3102,2,1,2063.268333,2063.268333,3505,NO,26.58,33.85,3,-0.59,6106,112.421446,122.227737,131.858451,138.027138,I,Above,Gable,0,5701,Wood,30.21284719,0,0,,,,1,1,,0.03,nav,1,1900,2,, 304,NJBF000081551,304 S SHORE ROAD,Absecon,NJ,39.42005025,-74.49962796,RES1,3001,,17,NE,1830,1830,3101,3,1,2786.434517,2786.434517,3505,NO,43.58,54.71,3,6.32,6106,112.516036,122.325912,131.96642,138.152653,I,Above,Hip,0,5701,Wood,49.14715977,0,0,,,,1,1,,0.03,nav,1,1830,3,, 305,NJBF000078474,531 ABSECON BLVD,Absecon,NJ,39.40573671,-74.49274037,RES4,3001,212,NaN,ME,1969,0,3401,1,1,10554.90774,10554.90774,3507,NO,15.92,28.77,1,2.94,6106,112.774276,122.597208,132.264877,138.509839,I,Above,Flat,0,NaN,Wood,22.34775882,0,0,,,,1,1,,0.03,nav,1,1969,1,, 306,NJBF000081854,151 OHIO AVE,Absecon,NJ,39.42380116,-74.5045726,RES1,3001,,17,NE,1992,1992,3102,2,1,2405.266345,2405.266345,3505,NO,30.37,37.36,3,0.56,6112,112.386238,122.199816,131.828036,137.998127,I,Above,Gable,0,5701,Wood,33.86682423,0,1.1,,,,1,1,,0.35,nav,1,1992,2,, 307,NJBF000081750,408 BURNING TREE BLVD,Absecon,NJ,39.42252248,-74.48672816,RES1,3001,,17,NE,1994,1994,3101,2,1,2832.366846,2832.366846,3505,NO,43.41,50.63,3,7.06,6106,112.768727,122.529398,132.188503,138.360226,I,Above,Gable,0,5701,Wood,47.01938563,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 308,NJBF000081836,112 CEDAR HILL DRIVE,Absecon,NJ,39.42355738,-74.48797238,RES1,3001,,17,NE,1995,1995,3101,2,1,2241.841754,2241.841754,3505,NO,31.03,43.18,3,3.77,6112,112.734935,122.496406,132.152316,138.320499,I,Above,Gable,0,5701,Wood,37.10559842,0,0,,,,1,1,,0.35,nav,1,1995,2,, 309,NJBF000081603,303 BURNING TREE BLVD,Absecon,NJ,39.42073931,-74.48862789,RES1,3001,,17,NE,1976,1976,3101,2,1,2209.892036,2209.892036,3505,NO,28.34,33.7,3,2.98,6112,112.7423,122.514097,132.171898,138.35201,I,Above,Flat,0,5701,Wood,31.0183231,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 310,NJBF000081661,308 CYNWYD DRIVE,Absecon,NJ,39.4215239,-74.48867663,RES1,3001,,17,NE,1964,1964,3101,1,1,2490.683591,2490.683591,3505,NO,24.95,39.71,3,8.22,6112,112.735351,122.505038,132.161918,138.338822,I,Above,Hip,0,5701,Wood,32.3274794,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 311,NJBF000082128,151 E FAUNCE LANDING RD,Absecon,NJ,39.42682389,-74.48949775,RES1,3001,511,NaN,NE,1984,0,3102,2,1,1328.041158,1328.041158,3507,NO,30.8,39.25,1,3,6106,112.679216,122.43515,132.085048,138.24056,I,Above,Gable,0,5701,Wood,35.02371372,0,0,,,,1,1,,0.03,nav,1,1984,2,, 312,NJBF000081552,1 REED ROAD,Absecon,NJ,39.4200662,-74.49457087,RES1,3001,,17,NE,2002,2002,3101,1,1,2552.054892,2552.054892,3505,NO,14.57,26.83,3,3.33,6110,112.622325,122.415358,132.064057,138.249367,I,Above,Gable,0,5701,Wood,20.70250945,0,0,,,,1,1,,0.35,nav,1,2002,1,, 313,NJBF000081627,123 WOODS RD,Absecon,NJ,39.42099802,-74.49272294,RES1,3001,,17,NE,1988,1988,3101,2,1,2095.006643,2095.006643,3505,NO,43.24,48.77,3,7.67,6112,112.654293,122.43849,132.089202,138.270045,I,Above,Flat,0,5701,Wood,46.0007507,0,0,,,,1,1,,0.35,nav,1,1988,2,, 314,NJBF000082129,70 NATALIE TERRACE,Absecon,NJ,39.42683305,-74.49364748,RES1,3001,,17,NE,1920,1920,3102,2,1,1498.29817,1498.29817,3505,NO,30.86,38.44,3,8.87,6112,112.592874,122.361349,132.004232,138.161107,I,Above,Gable,0,5701,Wood,34.65166158,0,0,,,,1,1,,0.35,nav,1,1920,2,, 315,NJBF000081662,117 WOODS RD,Absecon,NJ,39.42152681,-74.49331327,RES1,3001,,17,NE,1986,1986,3101,2,1,2273.438819,2273.438819,3505,NO,29.11,35.88,3,3.18,6112,112.638001,122.4225,132.071658,138.250497,I,Above,Gable,0,5701,Wood,32.49345156,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 316,NJBF000081695,113 WOODS RD,Absecon,NJ,39.42196295,-74.49301655,RES1,3001,,17,NE,1985,1985,3101,2,1,2050.10983,2050.10983,3505,NO,27.91,37.71,3,3.35,6106,112.641011,122.423221,132.072393,138.249321,I,Above,Gable,0,5701,Wood,32.81291789,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 317,NJBF000081575,128 ABSECON BLVD,Absecon,NJ,39.4204105,-74.49706499,COM1,3003,210,NaN,ME,1969,0,3401,1,1,666.4991264,666.4991264,3507,NO,13.64,21.65,1,2.73,6106,112.567331,122.367535,132.01178,138.196201,I,Above,Flat,0,NaN,Wood,17.64650168,0,0,,,,1,1,,0.03,nav,1,1969,1,, 318,NJBF000081686,401 BURNING TREE BLVD,Absecon,NJ,39.42186651,-74.48799341,RES1,3001,,17,NE,1970,1970,3101,2,1,2328.417124,2328.417124,3505,NO,32.61,38.81,3,7.8,6112,112.747128,122.513659,132.171322,138.346451,I,Above,Hip,0,5701,Wood,35.71259412,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 319,NJBF000081652,399 BURNING TREE BLVD,Absecon,NJ,39.42139628,-74.48829943,RES1,3001,,17,NE,1974,1974,3101,2,1,3491.206737,3491.206737,3505,NO,31.98,42.43,3,5.21,6106,112.744252,122.513113,132.170764,138.347995,I,Above,Gable,0,5701,Wood,37.20493271,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 320,NJBF000081798,500 BURNING TREE BLVD,Absecon,NJ,39.42309757,-74.48652867,RES1,3001,,18,NE,1994,1994,3101,2,1,2491.502331,2491.502331,3505,NO,31.74,46.55,3,8.61,6112,112.768566,122.526939,132.185776,138.355027,I,Above,Flat,0,5701,Wood,39.14315351,0,0,,,,1,1,,0.35,nav,1,1994,2,, 321,NJBF000081787,410 REED RD,Absecon,NJ,39.42294089,-74.4890422,RES1,3001,,17,NE,1976,1976,3101,2,1,1250.584553,1250.584553,3505,NO,26.47,34.05,3,1.78,6112,112.717111,122.483758,132.138516,138.309772,I,Above,Hip,0,5701,Wood,30.26064756,0,0,,,,1,1,,0.35,nav,1,1976,2,, 322,NJBF000081462,203 BURNING TREE BLVD,Absecon,NJ,39.419342,-74.48945088,RES1,3001,,17,NE,1987,1987,3101,2,1,2748.232519,2748.232519,3505,NO,31.8,46.55,3,6,6106,112.735583,122.513987,132.171919,138.358227,I,Above,Gable,0,5701,Wood,39.17327518,0,0,,,,1,1,,0.03,nav,1,1987,2,, 323,NJBF000081804,407 CYNWYD DRIVE,Absecon,NJ,39.42312964,-74.48844697,RES1,3001,,17,NE,1964,1964,3101,1,1,3054.673197,3054.673197,3505,NO,15.41,24.97,3,3.86,6112,112.728166,122.492391,132.147951,138.318132,I,Above,Hip,0,5701,Wood,20.18759845,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 324,NJBF000082037,100 EUCLID DRIVE,Absecon,NJ,39.4258373,-74.49438668,RES1,3001,,17,NE,1959,1959,3102,1,1,1888.533217,1888.533217,3505,NO,23.84,37.64,3,7.48,6106,112.584497,122.358592,132.001296,138.162491,I,Above,Gable,0,5701,Wood,30.73935078,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 325,NJBF000082102,151 E FAUNCE LANDING RD,Absecon,NJ,39.42653149,-74.48978783,RES1,3001,511,NaN,NE,1969,0,3102,2,1,1268.376263,1268.376263,3507,NO,25.82,36.02,1,-0.97,6106,112.675291,122.433046,132.082757,138.239593,I,Above,Flat,0,5701,Wood,30.91910137,0,0,,,,1,1,,0.03,nav,1,1969,2,, 326,NJBF000082020,,Absecon,NJ,39.42558555,-74.49557412,RES1,3001,,NaN,NE,1968,0,3102,2,1,1867.551454,1867.551454,3505,NO,34.43,48.74,3,5.97,6106,112.561543,122.340167,131.98116,138.14365,I,Above,Gable,0,5701,Wood,41.58427095,0,0,,,,1,1,,0.03,nav,1,1968,2,, 327,NJBF000082241,501 FOURTH ST,Absecon,NJ,39.4282995,-74.48636199,RES1,3001,,17,NE,1990,1990,3102,2,1,2895.089828,2895.089828,3507,NO,41.49,47.68,1,2.49,6106,112.733723,122.475612,132.129338,138.277326,I,Above,Gable,0,5701,Wood,44.58137278,0,0,,,,1,1,,0.03,nav,1,1990,2,, 328,NJBF000082248,501 FOURTH ST,Absecon,NJ,39.42835878,-74.48655908,RES1,3001,,17,NE,1990,1990,3102,2,1,1046.233215,1046.233215,3507,NO,23.8,32.85,1,0.52,6106,112.729209,122.471483,132.124811,138.272664,I,Above,Gable,0,5701,Wood,28.32803938,0,0,,,,1,1,,0.03,nav,1,1990,2,, 329,NJBF000082145,200 N SHORE ROAD,Absecon,NJ,39.42698878,-74.49685147,RES1,3001,,17,NE,1928,1928,3102,2,1,1520.977401,1520.977401,3505,NO,26.62,31.98,3,1.41,6106,112.525209,122.302978,131.940335,138.097151,I,Above,Gable,0,5701,Wood,29.29699949,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 330,NJBF000082068,1 TREMONT AVE,Absecon,NJ,39.42620284,-74.49732158,RES1,3001,,17,NE,1980,1980,3102,2,1,1438.186565,1438.186565,3505,NO,32.52,41.86,3,-2.71,6106,112.520853,122.302815,131.940235,138.100399,I,Above,Gable,0,5701,Wood,37.19001074,0,0,,,,1,1,,0.03,nav,1,1980,2,, 331,NJBF000082473,15 JULIANNA DRIVE,Absecon,NJ,39.43026584,-74.49083783,RES1,3001,,17,NE,1989,1989,3102,2,1,2293.419878,2293.419878,3507,NO,33.91,41.78,1,2.39,6110,112.62707,122.375433,132.0195,138.161377,I,Above,Gable,0,5701,Wood,37.84771451,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 332,NJBF000082014,105 VASSAR SQUARE,Absecon,NJ,39.4255207,-74.4961445,RES1,3001,,17,NE,1967,1967,3102,1,1,2326.809242,2326.809242,3505,NO,20.17,27.75,3,1.24,6106,112.550126,122.330748,131.970863,138.133724,I,Above,Gable,0,5701,Wood,23.95986803,0,0,,,,1,1,,0.03,nav,1,1967,1,, 333,NJBF000082125,51 NATALIE TERRACE,Absecon,NJ,39.4267828,-74.49497241,RES1,3001,,17,NE,1950,1950,3102,1,1,2331.856326,2331.856326,3505,NO,10.89,25.09,3,-1.1,6110,112.565682,122.338382,131.979098,138.136478,I,Above,Gable,0,5701,Wood,17.99008064,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 334,NJBF000082087,200 EUCLID DRIVE,Absecon,NJ,39.42635041,-74.4943338,RES1,3001,,17,NE,1947,1947,3102,1,1,1847.279822,1847.279822,3505,NO,19.43,31.21,3,7.55,6106,112.581985,122.354194,131.996438,138.155486,I,Above,Hip,0,5701,Wood,25.32283965,0,0,,,,1,1,,0.03,nav,1,1947,1,, 335,NJBF000082053,31 BERKLEY AVE,Absecon,NJ,39.42603704,-74.49501069,RES1,3001,,17,NE,1955,1955,3102,2,1,662.5326227,662.5326227,3505,NO,31.7,45.42,3,1.64,6106,112.570097,122.345451,131.986898,138.147396,I,Above,Gable,0,5701,Wood,38.55674595,0,0,,,,1,1,,0.03,nav,1,1955,2,, 336,NJBF000082578,201 CREEK COURT,Absecon,NJ,39.43117836,-74.48514124,RES1,3001,,17,NE,1984,1984,3102,2,1,1897.548613,1897.548613,3507,NO,25.79,34.81,1,2.87,6106,112.738329,122.467314,132.12023,138.255936,I,Above,Gable,0,5701,Wood,30.30268521,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 337,NJBF000082058,,Absecon,NJ,39.4261024,-74.49588298,RES1,3001,,NaN,NE,1972,0,3102,2,1,1514.776151,1514.776151,3505,NO,46.87,57.93,3,8.46,6106,112.551493,122.329329,131.969252,138.129641,I,Above,Gable,0,5701,Wood,52.3981158,0,0,,,,1,1,,0.03,nav,1,1972,2,, 338,NJBF000082138,2 BERKLEY AVE,Absecon,NJ,39.42691378,-74.49656901,RES1,3001,,17,NE,1925,1925,3102,2,1,1446.087581,1446.087581,3505,NO,30.87,38.84,3,5.29,6106,112.531585,122.308746,131.946654,138.103749,I,Above,Gable,0,5701,Wood,34.85670203,0,0,,,,1,1,,0.03,nav,1,1925,2,, 339,NJBF000081953,202 E CHURCH ST,Absecon,NJ,39.42482386,-74.4950021,RES1,3001,,17,NE,1950,1950,3102,1,1,2580.235028,2580.235028,3505,NO,11.3,17,3,-0.12,6106,112.578848,122.358227,132.000995,138.16655,I,Above,Gable,0,5701,Wood,14.15029826,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 340,NJBF000082139,33 NATALIE TERRACE,Absecon,NJ,39.42692981,-74.49556536,RES1,3001,,16,NE,1955,1955,3102,1,1,1489.03983,1489.03983,3505,NO,14.61,20.94,3,-0.77,6106,112.552333,122.32635,131.965917,138.122793,I,Above,Gable,0,5701,Wood,17.77302968,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 341,NJBF000082113,14 BERKLEY AVE,Absecon,NJ,39.42664465,-74.49552201,RES1,3001,,17,NE,1948,1948,3102,1,1,1357.570922,1357.570922,3505,NO,21.72,30.91,3,3.67,6106,112.555212,122.330076,131.970019,138.128077,I,Above,Gable,0,5701,Wood,26.31503519,0,0,,,,1,1,,0.03,nav,1,1948,1,, 342,NJBF000082072,23 BERKLEY AVE,Absecon,NJ,39.4262267,-74.49519197,RES1,3001,,17,NE,1955,1955,3102,2,1,1423.06006,1423.06006,3505,NO,34.77,43.09,3,1.23,6106,112.564997,122.340268,131.981209,138.140951,I,Above,Flat,0,5701,Wood,38.92882117,0,0,,,,1,1,,0.03,nav,1,1955,2,, 343,NJBF000082557,663 WEILER LANE,Absecon,NJ,39.43094818,-74.48529497,RES1,3001,,17,NE,1984,1984,3102,2,1,1584.725603,1584.725603,3507,NO,22.84,37.02,1,1.83,6106,112.736789,122.466971,132.119852,138.256567,I,Above,Gable,0,5701,Wood,29.93003742,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 344,NJBF000082426,9 ANDREA LANE,Absecon,NJ,39.42979444,-74.49120797,RES1,3001,,17,NE,1992,1992,3102,2,1,1729.701062,1729.701062,3507,NO,26.48,39.32,1,1.25,6106,112.622709,122.373784,132.017704,138.161641,I,Above,Gable,0,5701,Wood,32.90190579,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 345,NJBF000081981,44 E CHURCH ST,Absecon,NJ,39.4250375,-74.496343,RES1,3001,,17,NE,1930,1930,3102,1,1,814.8035185,814.8035185,3505,NO,21.04,31.24,3,3.07,6106,112.549369,122.332245,131.972553,138.137467,I,Above,Gable,0,5701,Wood,26.14199988,0,0,,,,1,1,,0.03,nav,1,1930,1,, 346,NJBF000082521,109 WEILER LANE EAST,Absecon,NJ,39.43061191,-74.48542509,RES1,3001,,17,NE,1984,1984,3102,2,1,2328.749183,2328.749183,3507,NO,38.58,49.83,1,0.93,6106,112.736504,122.468165,132.121159,138.259298,I,Above,Gable,0,5701,Wood,44.20630615,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 347,NJBF000082012,14 EUCLID DRIVE,Absecon,NJ,39.42548893,-74.49487979,RES1,3001,,17,NE,1965,1965,3102,1,1,891.5505894,891.5505894,3505,NO,19.41,31.02,3,7.45,6106,112.576685,122.353473,131.995727,138.158482,I,Above,Gable,0,5701,Wood,25.21596887,0,0,,,,1,1,,0.03,nav,1,1965,1,, 348,NJBF000082124,10 BERKLEY AVE,Absecon,NJ,39.4267525,-74.49569349,RES1,3001,,17,NE,1955,1955,3102,1,1,835.76549,835.76549,3505,NO,14.38,22.81,3,-0.79,6106,112.550912,122.325935,131.965478,138.123119,I,Above,Gable,0,5701,Wood,18.59374401,0,0,,,,1,1,,0.03,nav,1,1955,1,, 349,NJBF000082050,37 BERKLEY AVE,Absecon,NJ,39.42600506,-74.49458794,RES1,3001,,17,NE,1954,1954,3102,2,1,2106.275386,2106.275386,3505,NO,28.22,36.37,3,-0.51,6106,112.579128,122.353281,131.995469,138.15601,I,Above,Gable,0,5701,Wood,32.29629785,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 350,NJBF000082427,512 LAZY LANE,Absecon,NJ,39.42979783,-74.48186783,RES1,3001,,17,NE,1986,1986,3102,2,1,2279.598743,2279.598743,3507,NO,38.69,53.24,1,0.4,6112,112.81598,122.540226,132.200199,138.3394,I,Above,Gable,0,5701,Wood,45.96216196,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 351,NJBF000082232,114 LISBON AVE,Absecon,NJ,39.42821985,-74.48955451,RES1,3001,,17,NE,1987,1987,3102,2,1,1964.028023,1964.028023,3507,NO,27.34,33.89,1,0.08,6110,112.668042,122.419577,132.067929,138.217739,I,Above,Gable,0,5701,Wood,30.61340513,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 352,NJBF000082555,511 LAZY LANE,Absecon,NJ,39.43093083,-74.48176169,RES1,3001,,17,NE,1986,1986,3102,2,1,2335.784205,2335.784205,3507,NO,29.92,44.28,1,-0.3,6106,112.80991,122.530264,132.189286,138.323911,I,Above,Gable,0,5701,Wood,37.09814797,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 353,NJBF000082759,5 HOWLETT LANE,Absecon,NJ,39.43321996,-74.47757552,RES1,3001,,17,NE,1966,1966,3102,2,1,1418.950397,1418.950397,3507,NO,23.54,37.06,1,2.35,6112,112.879582,122.581274,132.245361,138.367857,I,Above,Gable,0,5701,Wood,30.29973254,0,0,,,,1,1,,0.35,nav,1,1966,2,, 354,NJBF000082637,13 BAYBERRY LANE,Absecon,NJ,39.43184517,-74.48180839,RES1,3001,,17,NE,1981,1981,3102,1,1,1986.671974,1986.671974,3507,NO,13.32,24.74,1,-0.84,6112,112.802339,122.519871,132.177904,138.308933,I,Above,Gable,0,5701,Wood,19.03137841,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 355,NJBF000082749,604 SOOY LANE,Absecon,NJ,39.43313913,-74.48093012,RES1,3001,,17,NE,2003,2003,3102,2,1,3582.581256,3582.581256,3507,NO,33.98,48.79,1,-0.86,6112,112.811109,122.522023,132.180308,138.30563,I,Above,Gable,0,5701,Wood,41.3824747,0,0,,,,1,1,,0.35,nav,1,2003,2,, 356,NJBF000082306,110 LISBON AVE,Absecon,NJ,39.42885653,-74.4895571,RES1,3001,,17,NE,1986,1986,3102,2,1,2109.386476,2109.386476,3507,NO,34.67,44.97,1,2.98,6110,112.663477,122.412896,132.060589,138.207789,I,Above,Hip,0,5701,Wood,39.81762617,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 357,NJBF000082539,,Absecon,NJ,39.43073001,-74.48096528,RES1,3001,,NaN,NE,1969,0,3102,2,1,2595.224311,2595.224311,3507,NO,34.4,42.79,1,2.18,6106,112.827848,122.546631,132.207244,138.342106,I,Above,Gable,0,5701,Wood,38.59689637,0,0,,,,1,1,,0.03,nav,1,1969,2,, 358,NJBF000082345,130 W FAUNCE LANDING RD,Absecon,NJ,39.42919433,-74.49842197,RES1,3001,,17,NE,1930,1930,3102,1,1,1307.984368,1307.984368,3505,NO,15.71,27.94,3,4.59,6112,112.477639,122.252309,131.884697,138.032374,I,Above,Gable,0,5701,Wood,21.82713089,0,0,,,,1,1,,0.35,nav,1,1930,1,, 359,NJBF000082520,301 PINE ST,Absecon,NJ,39.43059136,-74.49704364,RES1,3001,,17,NE,1955,1955,3102,1,1,1462.155047,1462.155047,3505,NO,20.93,31.62,3,1.58,6112,112.496719,122.262124,131.89536,138.0371,I,Above,Gable,0,5701,Wood,26.27537998,0,0,,,,1,1,,0.35,nav,1,1955,1,, 360,NJBF000082619,621 SOOY LANE,Absecon,NJ,39.43163427,-74.47869911,RES1,3001,,18,NE,1989,1989,3102,2,1,5304.333996,5304.333996,3507,NO,25.69,36.1,1,0.33,6110,112.868043,122.577761,132.241439,138.371023,I,Above,Gable,0,5701,Wood,30.89689097,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 361,NJBF000082341,108 LISBON AVE,Absecon,NJ,39.4291295,-74.4895864,RES1,3001,,17,NE,1984,1984,3102,2,1,1390.899135,1390.899135,3507,NO,33.99,42.45,1,1.62,6112,112.660944,122.409532,132.056895,138.202988,I,Above,Gable,0,5701,Wood,38.22021726,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 362,NJBF000082474,516 LAZY LANE,Absecon,NJ,39.43028757,-74.48132697,RES1,3001,,17,NE,1985,1985,3102,2,1,3119.590009,3119.590009,3507,NO,37.34,51.86,1,-0.18,6106,112.823592,122.544779,132.205202,138.342075,I,Above,Gable,0,5701,Wood,44.59927019,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 363,NJBF000082488,507 LAZY LANE,Absecon,NJ,39.43032678,-74.48218309,RES1,3001,,17,NE,1983,1983,3102,2,1,4710.405976,4710.405976,3507,NO,30.53,38.89,1,1.37,6110,112.805599,122.529055,132.187949,138.325261,I,Above,Gable,0,5701,Wood,34.70962967,0,1.1,,,,1,1,,0.35,nav,1,1983,2,, 364,NJBF000082151,15 NATALIE TERRACE,Absecon,NJ,39.42706607,-74.49615462,RES1,3001,,17,NE,1968,1968,3102,1,1,2163.60129,2163.60129,3505,NO,16.02,29.38,3,1.32,6106,112.539133,122.314492,131.952928,138.109329,I,Above,Gable,0,5701,Wood,22.69699026,0,0,,,,1,1,,0.03,nav,1,1968,1,, 365,NJBF000081697,111 WOODS RD,Absecon,NJ,39.42200112,-74.49271655,RES1,3001,,17,NE,1987,1987,3101,2,1,1891.723068,1891.723068,3505,NO,47.98,59.53,3,9,6112,112.647025,122.428156,132.077784,138.254454,I,Above,Gable,0,5701,Wood,53.75680147,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 366,NJBF000081401,121 MEADOWVIEW AVE,Absecon,NJ,39.41903384,-74.50702461,RES1,3001,,17,NE,1961,1961,3101,1,1,2530.85237,2530.85237,3505,NO,28.18,40.95,3,8.76,6110,112.367546,122.205969,131.835953,138.025789,I,Above,Gable,0,5701,Wood,34.56503911,0,0,,,,1,1,,0.35,nav,1,1961,1,, 367,NJBF000081329,120 MEADOWVIEW AVE,Absecon,NJ,39.41866241,-74.50701619,RES1,3001,,17,NE,1962,1962,3101,1,1,2017.494964,2017.494964,3505,NO,25.36,34.49,3,7.28,6110,112.370329,122.209972,131.840424,138.031842,I,Above,Gable,0,5701,Wood,29.92674258,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 368,NJBF000081262,101 CYNWYD DRIVE,Absecon,NJ,39.41836951,-74.49126875,RES1,3001,,17,NE,1985,1985,3101,2,1,2848.230376,2848.230376,3505,NO,38.19,49.6,3,4.79,6112,112.704643,122.491725,132.147711,138.33891,I,Above,Gable,0,5701,Wood,43.89456816,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 369,NJBF000081529,19 W ILLINOIS AVE,Absecon,NJ,39.41988746,-74.50134238,RES1,3001,,17,NE,1960,1960,3101,1,1,2203.26858,2203.26858,3505,NO,13.92,22.89,3,-2.32,6112,112.481145,122.297308,131.935255,138.122218,I,Above,Gable,0,5701,Wood,18.4010105,0,0,,,,1,1,,0.35,nav,1,1960,1,, 370,NJBF000081175,22D OYSTER BAY RD,Absecon,NJ,39.4178827,-74.51417132,RES1,3001,,35,NE,1992,1992,3101,1,1,4653.30252,4653.30252,3505,NO,15.26,26.25,3,0.97,6110,112.224906,122.09248,131.712961,137.904837,I,Above,Gable,0,5701,Wood,20.75644792,0,0,,,,1,1,,0.35,nav,1,1992,1,, 371,NJBF000081216,22D OYSTER BAY RD,Absecon,NJ,39.41808514,-74.51120686,RES1,3001,,35,NE,1992,1992,3101,1,1,5751.070893,5751.070893,3505,NO,13.49,22.95,3,-2.29,6112,112.285998,122.142318,131.76703,137.959491,I,Above,Gable,0,5701,Wood,18.21625206,0,0,,,,1,1,,0.35,nav,1,1992,1,, 372,NJBF000081269,22D OYSTER BAY RD,Absecon,NJ,39.41840976,-74.51098046,RES1,3001,,35,NE,1992,1992,3101,1,1,4285.432485,4285.432485,3505,NO,18.16,29.36,3,1.93,6110,112.288559,122.142948,131.767595,137.958769,I,Above,Gable,0,5701,Wood,23.75813034,0,0,,,,1,1,,0.35,nav,1,1992,1,, 373,NJBF000081339,22D OYSTER BAY RD,Absecon,NJ,39.41873023,-74.51229678,RES1,3001,,35,NE,1992,1992,3101,1,1,5672.920184,5672.920184,3505,NO,19.74,29.68,3,8.56,6110,112.258658,122.116568,131.738793,137.928023,I,Above,Flat,0,5701,Wood,24.70937148,0,0,,,,1,1,,0.35,nav,1,1992,1,, 374,NJBF000081288,22D OYSTER BAY RD,Absecon,NJ,39.41851044,-74.51264351,RES1,3001,,35,NE,1992,1992,3101,1,1,5600.674084,5600.674084,3505,NO,22.54,28.06,3,8.92,6110,112.25284,122.112756,131.734734,137.924734,I,Above,Gable,0,5701,Wood,25.29857062,0,0,,,,1,1,,0.35,nav,1,1992,1,, 375,NJBF000082523,509 LAZY LANE,Absecon,NJ,39.43061666,-74.4818451,RES1,3001,,17,NE,1986,1986,3102,2,1,2531.401769,2531.401769,3507,NO,21.6,33.2,1,-0.77,6112,112.810478,122.532066,132.191258,138.327186,I,Above,Hip,0,5701,Wood,27.40050523,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 376,NJBF000082385,3 JULIANNA DRIVE,Absecon,NJ,39.42946088,-74.4898585,RES1,3001,,17,NE,1989,1989,3102,2,1,2040.636158,2040.636158,3507,NO,26.75,37.29,1,0.12,6106,112.652976,122.401243,132.047803,138.192643,I,Above,Gable,0,5701,Wood,32.02227061,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 377,NJBF000082226,12 RUTH COURT,Absecon,NJ,39.42806396,-74.49047177,RES1,3001,,16,NE,2002,2002,3102,2,1,1995.672631,1995.672631,3507,NO,35.87,47.66,1,1.41,6110,112.650123,122.404898,132.051853,138.202656,I,Above,Gable,0,5701,Wood,41.76531132,0,0,,,,1,1,,0.35,nav,1,2002,2,, 378,NJBF000081814,6 CREEK RD,Absecon,NJ,39.423256,-74.49827275,RES1,3001,,17,NE,1950,1950,3102,1,1,1378.21047,1378.21047,3505,NO,9.4,16.42,3,-2.03,6112,112.521616,122.316602,131.955687,138.12832,I,Above,Gable,0,5701,Wood,12.91304887,0,0,,,,1,1,,0.15,nav,1,1950,1,, 379,NJBF000081828,6 CREEK RD,Absecon,NJ,39.42340128,-74.49832022,RES1,3001,,17,NE,1950,1950,3102,1,1,539.2451762,539.2451762,3505,NO,19.26,26.02,3,7.12,6112,112.519611,122.314265,131.953112,138.12514,I,Above,Gable,0,5701,Wood,22.63921689,0,0,,,,1,1,,0.15,nav,1,1950,1,, 380,NJBF000082299,119 W FAUNCE LANDING RD,Absecon,NJ,39.42876531,-74.4977217,RES1,3001,,17,NE,1925,1925,3102,2,1,734.8830897,734.8830897,3505,NO,40.77,49.74,3,4.93,6106,112.495011,122.269126,131.903138,138.052585,I,Above,Gable,0,5701,Wood,45.25497171,0,0,,,,1,1,,0.03,nav,1,1925,2,, 381,NJBF000082592,203 CREEK COURT,Absecon,NJ,39.43130996,-74.48545859,RES1,3001,,17,NE,1984,1984,3102,2,1,1950.213208,1950.213208,3507,NO,31.64,44.79,1,0.01,6106,112.730823,122.460261,132.112496,138.247841,I,Above,Gable,0,5701,Wood,38.2176918,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 382,NJBF000081411,201 BURNING TREE BLVD,Absecon,NJ,39.41905644,-74.48966447,RES1,3001,,17,NE,1981,1981,3101,2,1,3088.652542,3088.652542,3505,NO,38.5,53.35,3,8.2,6106,112.733274,122.513171,132.171059,138.358658,I,Above,Gable,0,5701,Wood,45.92506433,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 383,NJBF000081372,125 MEADOWVIEW AVE,Absecon,NJ,39.41890652,-74.50652311,RES1,3001,,17,NE,1964,1964,3101,2,1,1871.333398,1871.333398,3505,NO,40.84,53.06,3,8.49,6106,112.379003,122.216114,131.847036,138.037531,I,Above,Gable,0,5701,Wood,46.95007123,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 384,NJBF000082188,118 LISBON AVE,Absecon,NJ,39.42760493,-74.48960911,RES1,3001,,17,NE,1984,1984,3102,1,1,1475.65317,1475.65317,3507,NO,17.57,27.5,1,0.78,6106,112.671308,122.42503,132.073927,138.226281,I,Above,Gable,0,5701,Wood,22.53716964,0,1.1,,,,1,1,,0.03,nav,1,1984,1,, 385,NJBF000082209,110 E FAUNCE LANDING ROAD,Absecon,NJ,39.42789402,-74.49227338,RES1,3001,,17,NE,2000,2000,3102,2,1,2968.411491,2968.411491,3505,NO,23.69,36.49,3,2.57,6112,112.61395,122.374679,132.018761,138.170862,I,Above,Hip,0,5701,Wood,30.08635497,0,0,,,,1,1,,0.35,nav,1,2000,2,, 386,NJBF000082486,15 CORDOVA DR,Absecon,NJ,39.43032254,-74.48956333,RES1,3001,,17,NE,1980,1980,3102,1,1,1277.519983,1277.519983,3507,NO,14.42,20.18,1,1.08,6106,112.653022,122.397494,132.043677,138.184876,I,Above,Hip,0,5701,Wood,17.30051384,0,0,,,,1,1,,0.03,nav,1,1980,1,, 387,NJBF000082741,11 SOOY LANE,Absecon,NJ,39.43305432,-74.48638572,RES1,3001,,17,NE,2003,2003,3102,2,1,1398.752243,1398.752243,3507,NO,31.39,44.66,1,1.2,6112,112.699414,122.425502,132.0744,138.203173,I,Above,Gable,0,5701,Wood,38.02758575,0,1.1,,,,1,1,,0.35,nav,1,2003,2,, 388,NJBF000082401,105 LISBON AVE,Absecon,NJ,39.42961332,-74.48893538,RES1,3001,,17,NE,1985,1985,3102,2,1,1911.68472,1911.68472,3507,NO,29.96,37.59,1,2.05,6106,112.671008,122.416072,132.064051,138.207908,I,Above,Gable,0,5701,Wood,33.77379373,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 389,NJBF000081954,149 OHIO AVE,Absecon,NJ,39.42482562,-74.50354151,RES1,3001,,17,NE,1922,1922,3102,1,1,875.1976975,875.1976975,3505,NO,19.26,30.3,3,6.61,6110,112.400804,122.207352,131.836071,138.001965,I,Above,Gable,0,5701,Wood,24.77855075,0,0,,,,1,1,,0.35,nav,1,1922,1,, 390,NJBF000082230,4 RUTH COURT,Absecon,NJ,39.42818606,-74.48993766,RES1,3001,,17,NE,2002,2002,3102,2,1,1765.944555,1765.944555,3507,NO,31.03,45.95,1,-0.6,6112,112.660337,122.413119,132.060855,138.210956,I,Above,Gable,0,5701,Wood,38.48743625,0,0,,,,1,1,,0.35,nav,1,2002,2,, 391,NJBF000082409,510 LAZY LANE,Absecon,NJ,39.42968443,-74.48230241,RES1,3001,,18,NE,1980,1980,3102,2,1,3532.240587,3532.240587,3507,NO,33.88,44.51,1,1.2,6112,112.807827,122.533655,132.192988,138.332942,I,Above,Gable,0,5701,Wood,39.19621658,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 392,NJBF000082240,11 RUTH COURT,Absecon,NJ,39.42827283,-74.49045281,RES1,3001,,17,NE,2002,2002,3102,2,1,1975.597686,1975.597686,3507,NO,26.1,41.06,1,-0.18,6106,112.649036,122.403056,132.049827,138.199764,I,Above,Hip,0,5701,Wood,33.58211546,0,0,,,,1,1,,0.03,nav,1,2002,2,, 393,NJBF000082388,5 JULIANNA DRIVE,Absecon,NJ,39.42951609,-74.49016985,RES1,3001,,17,NE,1993,1993,3102,2,1,2320.354231,2320.354231,3507,NO,27.82,33.56,1,2.92,6106,112.646131,122.395123,132.041095,138.185824,I,Above,Gable,0,5701,Wood,30.68980927,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 394,NJBF000081573,300 BURNING TREE BLVD,Absecon,NJ,39.42039309,-74.48822981,RES1,3001,,17,NE,2001,2001,3101,1,1,1805.191619,1805.191619,3505,NO,17.24,22.92,3,5.12,6106,112.753294,122.524803,132.183641,138.364963,I,Above,Gable,0,5701,Wood,20.08152915,0,0,,,,1,1,,0.03,nav,1,2001,1,, 395,NJBF000082165,121 E FAUNCE LANDING RD,Absecon,NJ,39.42730792,-74.49207078,RES1,3001,,17,NE,1927,1927,3102,2,1,1277.923167,1277.923167,3505,NO,29.57,42.12,3,5.8,6106,112.622276,122.384369,132.029406,138.183869,I,Above,Gable,0,5701,Wood,35.84642815,0,0,,,,1,1,,0.03,nav,1,1927,2,, 396,NJBF000081955,226 MARLIN ROAD,Absecon,NJ,39.42483399,-74.50557849,RES1,3001,,17,NE,1991,1991,3102,1,1,1473.533481,1473.533481,3505,NO,23.9,37.26,3,7.04,6112,112.358358,122.171462,131.79687,137.962371,I,Above,Flat,0,5701,Wood,30.57999751,0,1.1,,,,1,1,,0.35,nav,1,1991,1,, 397,NJBF000081393,235 ABSECON BLVD,Absecon,NJ,39.4190085,-74.49613199,COM1,3003,999,NaN,ME,1969,0,3401,3,1,5225.690053,5225.690053,3507,NO,51.29,57.38,1,1.69,6106,112.597265,122.398656,132.045996,138.236123,I,Above,Gable,0,NaN,Wood,54.337241,0,0,,,,1,1,,0.03,nav,1,1969,3,, 398,NJBF000082595,,Absecon,NJ,39.43135966,-74.48159146,RES1,3001,,NaN,NE,1969,0,3102,2,1,1757.945923,1757.945923,3507,NO,33.98,42.13,1,0.52,6106,112.810328,122.528831,132.187724,138.32053,I,Above,Gable,0,5701,Wood,38.05487081,0,0,,,,1,1,,0.03,nav,1,1969,2,, 399,NJBF000081849,202 CEDAR HILL,Absecon,NJ,39.42371743,-74.48853401,RES1,3001,,17,NE,2000,2000,3101,1,1,2695.287521,2695.287521,3505,NO,28.09,34.18,3,8.84,6110,112.721992,122.484719,132.139511,138.307326,I,Above,Hip,0,5701,Wood,31.13672876,0,0,,,,1,1,,0.03,nav,1,2000,1,, 400,NJBF000082441,514 LAZY LANE,Absecon,NJ,39.42996818,-74.4815436,RES1,3001,,18,NE,1987,1987,3102,2,1,2864.998866,2864.998866,3507,NO,31.33,39.56,1,1.53,6112,112.821444,122.544245,132.20461,138.342908,I,Above,Hip,0,5701,Wood,35.4491878,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 401,NJBF000082571,17 CORTEZ AVE,Absecon,NJ,39.43110247,-74.48796336,RES1,3001,,17,NE,1971,1971,3102,1,1,2622.578934,2622.578934,3507,NO,17.27,31.76,1,2.06,6110,112.680602,122.417822,132.065956,138.203337,I,Above,Gable,0,5701,Wood,24.51486417,0,0,,,,1,1,,0.35,nav,1,1971,1,, 402,NJBF000082803,102 HOWLETT LANE,Absecon,NJ,39.4337116,-74.48083941,RES1,3001,,17,NE,2003,2003,3102,2,1,2602.488231,2602.488231,3507,NO,23.5,36.91,1,0.63,6106,112.808868,122.517646,132.175527,138.29853,I,Above,Gable,0,5701,Wood,30.20223748,0,0,,,,1,1,,0.03,nav,1,2003,2,, 403,NJBF000082709,612 SOOY LANE,Absecon,NJ,39.4326455,-74.47954993,RES1,3001,,17,NE,2006,2006,3102,2,1,3036.679959,3036.679959,3507,NO,29.23,41.18,1,0.61,6112,112.843106,122.55191,132.213096,138.339377,I,Above,Gable,0,5701,Wood,35.20188903,0,0,,,,1,1,,0.35,nav,1,2006,2,, 404,NJBF000081796,401 REED ROAD,Absecon,NJ,39.42306065,-74.49113911,RES1,3001,,17,NE,1960,1960,3101,2,1,2011.543406,2011.543406,3505,NO,40.63,48.1,3,6.97,6112,112.672312,122.445175,132.096286,138.267977,I,Above,Gable,0,5701,Wood,44.36328742,0,0,,,,1,1,,0.35,nav,1,1960,2,, 405,NJBF000082284,117 W FAUNCE LANDING RD,Absecon,NJ,39.42861708,-74.49711118,RES1,3001,,17,NE,1968,1968,3102,1,1,2135.715664,2135.715664,3505,NO,10.66,25.58,3,-1.94,6106,112.508663,122.281461,131.91665,138.066672,I,Above,Hip,0,5701,Wood,18.12000957,0,0,,,,1,1,,0.03,nav,1,1968,1,, 406,NJBF000082071,,Absecon,NJ,39.42622294,-74.49634036,RES1,3001,,NaN,NE,1972,0,3102,2,1,2507.631086,2507.631086,3505,NO,22.04,29.99,3,-2.65,6106,112.541141,122.319981,131.959012,138.118967,I,Above,Hip,0,5701,Wood,26.01503289,0,0,,,,1,1,,0.03,nav,1,1972,2,, 407,NJBF000082614,608 LAZY LANE,Absecon,NJ,39.43159925,-74.48059116,RES1,3001,,17,NE,1980,1980,3102,2,1,2770.761894,2770.761894,3507,NO,29.61,42,1,1.42,6112,112.829239,122.544226,132.204626,138.335784,I,Above,Gable,0,5701,Wood,35.80304475,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 408,NJBF000081971,300 S NEW ROAD,Absecon,NJ,39.42495914,-74.50649596,RES1,3001,,17,NE,1989,1989,3102,1,1,2073.909674,2073.909674,3505,NO,18.6,31.8,3,0.6,6110,112.338424,122.154045,131.777825,137.942578,I,Above,Flat,0,5701,Wood,25.19829776,0,1.1,,,,1,1,,0.35,nav,1,1989,1,, 409,NJBF000080960,154 MARIN DR,Absecon,NJ,39.41702907,-74.51692319,RES1,3001,,33,NE,1988,1988,3101,2,1,3581.590281,3581.590281,3505,NO,28.6,34.76,3,4.5,6110,112.172606,122.053155,131.670669,137.864499,I,Above,Gable,0,5701,Wood,31.67989978,0,0,,,,1,1,,0.35,nav,1,1988,2,, 410,NJBF000081016,17 SHORT ST,Absecon,NJ,39.4172177,-74.50460604,RES1,3001,,17,NE,1956,1956,3101,1,1,2074.57915,2074.57915,3505,NO,20.7,32.05,3,2.32,6112,112.431417,122.267354,131.903316,138.101327,I,Above,Gable,0,5701,Wood,26.37412357,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 411,NJBF000082508,10 JULIANNA DRIVE,Absecon,NJ,39.43052639,-74.4904486,RES1,3001,,17,NE,1992,1992,3102,2,1,2190.49552,2190.49552,3507,NO,30.21,38.28,1,2.62,6112,112.633296,122.37963,132.024095,138.164776,I,Above,Hip,0,5701,Wood,34.24509166,0,1.1,,,,1,1,,0.35,nav,1,1992,2,, 412,NJBF000082267,13 MALAGA COVE,Absecon,NJ,39.42850691,-74.48867947,RES1,3001,,17,NE,1985,1985,3102,2,1,1474.70796,1474.70796,3507,NO,31.79,39.08,1,1.13,6106,112.684168,122.43217,132.081719,138.229987,I,Above,Gable,0,5701,Wood,35.43290383,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 413,NJBF000082081,127 N SHORE ROAD,Absecon,NJ,39.42628491,-74.49816766,RES1,3001,,17,NE,1890,1890,3102,2,1,631.4134977,631.4134977,3505,NO,27.84,39.73,3,0.7,6112,112.502693,122.287007,131.922934,138.08283,I,Above,Gable,0,5701,Wood,33.78450008,0,0,,,,1,1,,0.35,nav,1,1890,2,, 414,NJBF000082082,127 N SHORE ROAD,Absecon,NJ,39.4262985,-74.49792866,RES1,3001,,17,NE,1890,1890,3102,2,1,1576.240779,1576.240779,3505,NO,27.63,33.84,3,-0.93,6112,112.507566,122.291086,131.927394,138.087212,I,Above,Hip,0,5701,Wood,30.73600028,0,0,,,,1,1,,0.35,nav,1,1890,2,, 415,NJBF000082104,133 N SHORE RD,Absecon,NJ,39.42654789,-74.49782617,RES1,3001,,17,NE,1896,1896,3102,3,1,2077.296509,2077.296509,3505,NO,48.74,57.88,3,-0.04,6110,112.507991,122.29032,131.92653,138.085294,I,Above,Gable,0,5701,Wood,53.30578914,0,0,,,,1,1,,0.35,nav,1,1896,3,, 416,NJBF000081850,5 N SHORE RD,Absecon,NJ,39.42372523,-74.49916678,COM1,3003,639,NaN,ME,1969,0,3401,2,1,3609.862518,3609.862518,3507,NO,27.72,40.09,1,1.55,6112,112.499635,122.295928,131.933026,138.103752,I,Above,Flat,0,NaN,Wood,33.90548448,0,0,,,,1,1,,1,nav,1,1969,2,, 417,NJBF000081844,12 CREEK RD,Absecon,NJ,39.42365615,-74.49762679,RES1,3001,,17,NE,1957,1957,3102,2,1,2193.635205,2193.635205,3505,NO,35.34,42.29,3,4.14,6112,112.5323,122.323877,131.963579,138.134463,I,Above,Gable,0,5701,Wood,38.81660768,0,0,,,,1,1,,0.15,nav,1,1957,2,, 418,NJBF000082407,305 SPRUCE STREET,Absecon,NJ,39.42966977,-74.49761897,RES1,3001,,17,NE,1954,1954,3102,2,1,1817.861739,1817.861739,3505,NO,32.92,39.73,3,3.49,6112,112.491034,122.261541,131.894772,138.040413,I,Above,Gable,0,5701,Wood,36.32815081,0,0,,,,1,1,,0.35,nav,1,1954,2,, 419,NJBF000081848,260 MARLIN ROAD,Absecon,NJ,39.42369384,-74.5061668,RES1,3001,,17,NE,1956,1956,3102,2,1,2002.841201,2002.841201,3505,NO,32.15,42.67,3,1.85,6106,112.353702,122.172896,131.798673,137.968898,I,Above,Gable,0,5701,Wood,37.41429096,0,0,,,,1,1,,0.03,nav,1,1956,2,, 420,NJBF000081518,19 E ILLINOIS AVE,Absecon,NJ,39.41977813,-74.49919332,RES1,3001,,17,NE,1850,1850,3101,2,1,1256.817711,1256.817711,3505,NO,23.76,31.31,3,2.26,6112,112.527151,122.336429,131.97795,138.165298,I,Above,Gable,0,5701,Wood,27.53185845,0,0,,,,1,1,,0.35,nav,1,1850,2,, 421,NJBF000081751,101 ABSECON BLVD,Absecon,NJ,39.42252249,-74.49959999,COM1,3003,210,NaN,ME,1969,0,3401,3,1,1379.055129,1379.055129,3507,NO,34.93,46.32,1,1.53,6106,112.499022,122.300759,131.938498,138.114313,I,Above,Flat,0,NaN,Wood,40.62105151,0,0,,,,1,1,,0.03,nav,1,1969,3,, 422,NJBF000081353,54 W BOLTON AVE,Absecon,NJ,39.41877999,-74.5046305,RES1,3001,,17,NE,1960,1960,3101,1,1,738.6378299,738.6378299,3505,NO,21.23,29.76,3,7.79,6106,112.419757,122.250746,131.884785,138.076174,I,Above,Gable,0,5701,Wood,25.49474382,0,0,,,,1,1,,0.03,nav,1,1960,1,, 423,NJBF000081523,206 CYNWYD DRIVE,Absecon,NJ,39.41984004,-74.48972021,RES1,3001,,17,NE,1969,1969,3101,1,1,4275.679372,4275.679372,3505,NO,22.28,35.26,3,6.39,6112,112.726133,122.504002,132.160949,138.345331,I,Above,Hip,0,5701,Wood,28.7687706,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 424,NJBF000081847,248 SHOWELLTON AVE,Absecon,NJ,39.42367912,-74.50525861,RES1,3001,,17,NE,1938,1938,3102,1,1,1212.09344,1212.09344,3505,NO,15.27,28.6,3,0.58,6112,112.372748,122.189012,131.816267,137.986751,I,Above,Gable,0,5701,Wood,21.93181451,0,1.1,,,,1,1,,0.35,nav,1,1938,1,, 425,NJBF000081546,207 BURNING TREE BLVD,Absecon,NJ,39.42002086,-74.4890809,RES1,3001,,17,NE,1999,1999,3101,1,1,2952.238522,2952.238522,3505,NO,26.33,41.1,3,8.87,6106,112.738212,122.513505,132.171321,138.354632,I,Above,Gable,0,5701,Wood,33.71649244,0,0,,,,1,1,,0.03,nav,1,1999,1,, 426,NJBF000081793,407 REED ROAD,Absecon,NJ,39.42301806,-74.4895967,RES1,3001,,17,NE,1961,1961,3101,1,1,3472.901806,3472.901806,3505,NO,17.95,27.24,3,2.05,6106,112.704917,122.473069,132.126812,138.298015,I,Above,Gable,0,5701,Wood,22.59418113,0,1.1,,,,1,1,,0.03,nav,1,1961,1,, 427,NJBF000081601,302 BURNING TREE BLVD,Absecon,NJ,39.42072137,-74.48797765,RES1,3001,,17,NE,1993,1993,3101,2,1,1562.01464,1562.01464,3505,NO,31.69,39.29,3,8.16,6106,112.756102,122.525878,132.184787,138.364619,I,Above,Hip,0,5701,Wood,35.48990504,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 428,NJBF000082130,139 E FAUNCE LANDING RD,Absecon,NJ,39.42684743,-74.491049,RES1,3001,640,NaN,NE,1969,0,3102,2,1,816.0704543,816.0704543,3507,NO,29.95,36.29,1,-0.17,6106,112.646793,122.407328,132.054574,138.210598,I,Above,Flat,0,5701,Wood,33.12236444,0,0,,,,1,1,,0.03,nav,1,1969,2,, 429,NJBF000081118,20 SHORT ST,Absecon,NJ,39.41760792,-74.50448332,RES1,3001,,17,NE,1956,1956,3101,1,1,1890.14643,1890.14643,3505,NO,14.24,25.46,3,1.03,6112,112.43122,122.265485,131.901167,138.097544,I,Above,Flat,0,5701,Wood,19.84994564,0,0,,,,1,1,,0.35,nav,1,1956,1,, 430,NJBF000082617,13 CORTEZ AVE,Absecon,NJ,39.43162032,-74.48793835,RES1,3001,,17,NE,1965,1965,3102,2,1,1787.060229,1787.060229,3507,NO,26.53,35.47,1,0.44,6112,112.677482,122.412856,132.060513,138.195776,I,Above,Gable,0,5701,Wood,31.00160542,0,0,,,,1,1,,0.35,nav,1,1965,2,, 431,NJBF000082593,15 CORTEZ AVE,Absecon,NJ,39.43134049,-74.4877115,RES1,3001,,17,NE,1965,1965,3102,2,1,756.4052482,756.4052482,3507,NO,33.7,46.57,1,-0.57,6110,112.684109,122.419804,132.068129,138.204434,I,Above,Flat,0,5701,Wood,40.13754942,0,0,,,,1,1,,0.35,nav,1,1965,2,, 432,NJBF000082276,112 LISBON AVE,Absecon,NJ,39.42854717,-74.4895668,RES1,3001,,17,NE,1984,1984,3102,2,1,1656.692927,1656.692927,3507,NO,34.5,46.23,1,1.22,6110,112.665468,122.415952,132.063947,138.212421,I,Above,Gable,0,5701,Wood,40.36755775,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 433,NJBF000082580,602 LAZY LANE,Absecon,NJ,39.43118516,-74.48095017,RES1,3001,,17,NE,1980,1980,3102,1,1,2619.79255,2619.79255,3507,NO,16.32,26.66,1,1.87,6106,112.824839,122.542135,132.20232,138.335371,I,Above,Hip,0,5701,Wood,21.49218397,0,0,,,,1,1,,0.03,nav,1,1980,1,, 434,NJBF000082479,27 CORTEZ AVE,Absecon,NJ,39.43029855,-74.48862562,RES1,3001,,17,NE,1985,1985,3102,1,1,2420.677191,2420.677191,3507,NO,16.29,22.72,1,0.05,6106,112.672558,122.414409,132.062218,138.203148,I,Above,Hip,0,5701,Wood,19.50595365,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 435,NJBF000081925,43 E CHURCH STREET,Absecon,NJ,39.42459414,-74.49646961,RES1,3001,,17,NE,1952,1952,3102,1,1,1234.104279,1234.104279,3505,NO,11.37,21.06,3,-1.66,6106,112.549845,122.334611,131.975192,138.141984,I,Above,Gable,0,5701,Wood,16.21535676,0,0,,,,1,1,,0.03,nav,1,1952,1,, 436,NJBF000081534,27 W ILLINOIS AVE,Absecon,NJ,39.41992706,-74.50191451,RES1,3001,,17,NE,1960,1960,3101,2,1,3049.404886,3049.404886,3505,NO,33.22,43.43,3,3.5,6112,112.468806,122.286775,131.92376,138.11054,I,Above,Gable,0,5701,Wood,38.32340459,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 437,NJBF000082099,81 NATALIE TERRACE,Absecon,NJ,39.42648065,-74.49361021,RES1,3001,,NaN,NE,1969,0,3102,2,1,1851.109464,1851.109464,3505,NO,34.87,41.04,3,-2.28,6106,112.596124,122.365669,132.008988,138.167315,I,Above,Gable,0,5701,Wood,37.95600088,0,0,,,,1,1,,0.03,nav,1,1969,2,, 438,NJBF000082067,81 NATALIE TERRACE,Absecon,NJ,39.42619942,-74.49358674,RES1,3001,,NaN,NE,1969,0,3102,2,1,1469.251238,1469.251238,3505,NO,39.13,47.37,3,0.21,6106,112.598595,122.369012,132.012669,138.172162,I,Above,Gable,0,5701,Wood,43.24985362,0,0,,,,1,1,,0.03,nav,1,1969,2,, 439,NJBF000082778,116 KESLER LANE,Absecon,NJ,39.43345649,-74.47920913,RES1,3001,,17,NE,2001,2001,3102,2,1,2300.831138,2300.831138,3507,NO,28.23,42.66,1,1.26,6112,112.844248,122.549517,132.210503,138.333354,I,Above,Hip,0,5701,Wood,35.4438043,0,0,,,,1,1,,0.35,nav,1,2001,2,, 440,NJBF000081950,237 MARLIN ROAD,Absecon,NJ,39.42481133,-74.5060743,RES1,3001,,17,NE,1920,1920,3102,1,1,1447.058875,1447.058875,3505,NO,17.91,23.05,3,1.66,6110,112.348187,122.162986,131.787618,137.953105,I,Above,Hip,0,5701,Wood,20.4796846,0,0,,,,1,1,,0.35,nav,1,1920,1,, 441,NJBF000082381,106 LISBON AVE,Absecon,NJ,39.42941987,-74.48955453,RES1,3001,,17,NE,1988,1988,3102,2,1,2282.593156,2282.593156,3507,NO,27.39,35.04,1,0.28,6106,112.659538,122.407058,132.054176,138.19907,I,Above,Hip,0,5701,Wood,31.21568472,0,0,,,,1,1,,0.03,nav,1,1988,2,, 442,NJBF000080625,40 W NEVADA AVE,Absecon,NJ,39.41565445,-74.5045346,RES1,3001,,17,NE,1925,1925,3101,1,1,1961.098804,1961.098804,3505,NO,16.93,25.27,3,1.63,6112,112.444232,122.284799,131.922773,138.127421,I,Above,Gable,0,5701,Wood,21.10023492,0,0,,,,1,1,,0.35,nav,1,1925,1,, 443,NJBF000081210,51 W BOLTON AVE,Absecon,NJ,39.41806336,-74.5036114,RES1,3001,,17,NE,1926,1926,3101,1,1,2077.856795,2077.856795,3505,NO,13.89,24.74,3,1.47,6112,112.446374,122.276154,131.912655,138.107207,I,Above,Gable,0,5701,Wood,19.31240501,0,0,,,,1,1,,0.35,nav,1,1926,1,, 444,NJBF000082733,610 SOOY LANE,Absecon,NJ,39.4329875,-74.4797445,RES1,3001,,17,NE,2007,2007,3102,2,1,1171.769524,1171.769524,3507,NO,33.01,43.4,1,2.87,6112,112.836622,122.544839,132.205347,138.330426,I,Above,Gable,0,5701,Wood,38.20637311,0,1.1,,,,1,1,,0.35,nav,1,2007,2,, 445,NJBF000081290,50 W BOLTON AVE,Absecon,NJ,39.41851295,-74.50409588,RES1,3001,,17,NE,1963,1963,3101,2,1,1416.368687,1416.368687,3505,NO,30.39,44.24,3,8.56,6112,112.43293,122.26294,131.898141,138.090733,I,Above,Gable,0,5701,Wood,37.31096323,0,0,,,,1,1,,0.35,nav,1,1963,2,, 446,NJBF000080259,31 OREGON AVE,Absecon,NJ,39.4144665,-74.5048125,RES1,3001,,17,NE,1930,1930,3101,2,1,681.2603831,681.2603831,3505,NO,43.97,52.81,3,7.37,6112,112.447044,122.292204,131.931207,138.140846,I,Above,Gable,0,5701,Wood,48.39046308,0,0,,,,1,1,,0.35,nav,1,1930,2,, 447,NJBF000082716,610 SOOY LANE,Absecon,NJ,39.4327607,-74.47991184,RES1,3001,,17,NE,2007,2007,3102,2,1,4111.491361,4111.491361,3507,NO,25,34.77,1,1.2,6112,112.834805,122.54421,132.204647,138.330739,I,Above,Hip,0,5701,Wood,29.88738063,0,1.1,,,,1,1,,0.35,nav,1,2007,2,, 448,NJBF000080227,27 OREGON AVE,Absecon,NJ,39.41437302,-74.50459139,RES1,3001,,17,NE,1990,1990,3101,1,1,1113.712283,1113.712283,3505,NO,20,28.22,3,6.52,6112,112.452433,122.297078,131.936534,138.146602,I,Above,Gable,0,5701,Wood,24.1110238,0,0,,,,1,1,,0.35,nav,1,1990,1,, 449,NJBF000080219,31 OREGON AVE,Absecon,NJ,39.4143328,-74.5047303,RES1,3001,,17,NE,1930,1930,3101,2,1,1845.533181,1845.533181,3505,NO,34.75,42.89,3,8.7,6112,112.449773,122.295039,131.934332,138.14455,I,Above,Gable,0,5701,Wood,38.81955798,0,0,,,,1,1,,0.35,nav,1,1930,2,, 450,NJBF000080593,36 W NEVADA AVE,Absecon,NJ,39.41557634,-74.5043575,RES1,3001,,17,NE,1950,1950,3101,1,1,999.3279299,999.3279299,3505,NO,10.17,19.15,3,-2.5,6112,112.448575,122.288747,131.927091,138.132092,I,Above,Gable,0,5701,Wood,14.65951632,0,0,,,,1,1,,0.35,nav,1,1950,1,, 451,NJBF000080723,,Absecon,NJ,39.41601736,-74.5044392,RES1,3001,,NaN,NE,1950,0,3101,1,1,1919.18151,1919.18151,3505,NO,11.72,24.82,3,0.46,6112,112.443625,122.282734,131.920413,138.123536,I,Above,Gable,0,5701,Wood,18.27028493,0,0,,,,1,1,,0.35,nav,1,1950,1,, 452,NJBF000080755,33 SUMMIT AVE,Absecon,NJ,39.41616735,-74.5042438,RES1,3001,,17,NE,1950,1950,3101,1,1,2079.122845,2079.122845,3505,NO,17.77,25.41,3,3.64,6112,112.446666,122.284621,131.922419,138.124932,I,Above,Gable,0,5701,Wood,21.59280351,0,0,,,,1,1,,0.35,nav,1,1950,1,, 453,NJBF000080771,35 SUMMIT AVE,Absecon,NJ,39.41623855,-74.50444467,RES1,3001,,17,NE,1952,1952,3101,1,1,891.7493659,891.7493659,3505,NO,19.63,31.32,3,2.11,6112,112.441887,122.280329,131.917729,138.119911,I,Above,Gable,0,5701,Wood,25.47430429,0,0,,,,1,1,,0.35,nav,1,1952,1,, 454,NJBF000080774,37 SUMMIT AVE,Absecon,NJ,39.41626198,-74.5046119,RES1,3001,,17,NE,1952,1952,3101,1,1,852.006602,852.006602,3505,NO,25.13,36.53,3,8.99,6112,112.438184,122.277145,131.914259,138.11632,I,Above,Hip,0,5701,Wood,30.82735564,0,0,,,,1,1,,0.35,nav,1,1952,1,, 455,NJBF000080919,13 W COLORADO AVE,Absecon,NJ,39.41685648,-74.50421215,RES1,3001,,17,NE,1964,1964,3101,1,1,2144.062229,2144.062229,3505,NO,20.24,33.05,3,6.47,6112,112.442354,122.27805,131.915064,138.114661,I,Above,Hip,0,5701,Wood,26.6435987,0,0,,,,1,1,,0.35,nav,1,1964,1,, 456,NJBF000080999,14 W COLORADO AVE,Absecon,NJ,39.41717042,-74.50411497,RES1,3001,,17,NE,1964,1964,3101,1,1,1886.230566,1886.230566,3505,NO,18.08,29.28,3,2.21,6112,112.442142,122.27651,131.913295,138.111574,I,Above,Gable,0,5701,Wood,23.67719747,0,0,,,,1,1,,0.35,nav,1,1964,1,, 457,NJBF000081067,15 W LEE AVE,Absecon,NJ,39.41743766,-74.50407803,RES1,3001,,17,NE,1956,1956,3101,1,1,1697.20379,1697.20379,3505,NO,15.88,22.95,3,0.04,6112,112.440996,122.274388,131.910907,138.108056,I,Above,Gable,0,5701,Wood,19.41853619,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 458,NJBF000081149,16 W LEE AVE,Absecon,NJ,39.41776813,-74.50393543,RES1,3001,,17,NE,1956,1956,3101,1,1,1228.077545,1228.077545,3505,NO,19.27,31.25,3,8.61,6112,112.441648,122.273493,131.909839,138.105606,I,Above,Hip,0,5701,Wood,25.26249681,0,0,,,,1,1,,0.35,nav,1,1956,1,, 459,NJBF000081195,55 W BOLTON AVE,Absecon,NJ,39.41796714,-74.50429704,RES1,3001,,17,NE,1950,1950,3101,1,1,1325.01196,1325.01196,3505,NO,25.46,30.51,3,5.96,6106,112.432581,122.265049,131.900589,138.095469,I,Above,Gable,0,5701,Wood,27.98304103,0,0,,,,1,1,,0.03,nav,1,1950,1,, 460,NJBF000081272,46 W BOLTON AVE,Absecon,NJ,39.41842159,-74.50351438,RES1,3001,,17,NE,1960,1960,3101,2,1,1272.670353,1272.670353,3505,NO,28.4,38.48,3,5.27,6112,112.445852,122.274147,131.910372,138.103414,I,Above,Gable,0,5701,Wood,33.44069406,0,0,,,,1,1,,0.35,nav,1,1960,2,, 461,NJBF000081281,48 W BOLTON AVE,Absecon,NJ,39.41846923,-74.50375093,RES1,3001,,17,NE,1965,1965,3101,2,1,1940.507276,1940.507276,3505,NO,43.92,55.87,3,8.35,6112,112.440518,122.26948,131.905276,138.098094,I,Above,Gable,0,5701,Wood,49.89565221,0,0,,,,1,1,,0.35,nav,1,1965,2,, 462,NJBF000081280,102 WYNNEWOOD DRIVE,Absecon,NJ,39.41845776,-74.49161199,RES1,3001,,17,NE,1975,1975,3101,1,1,2178.951728,2178.951728,3505,NO,19.84,33.2,3,8.94,6112,112.696734,122.484701,132.140027,138.331008,I,Above,Gable,0,5701,Wood,26.51985693,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 463,NJBF000081319,103 CYNWYD DRIVE,Absecon,NJ,39.41860852,-74.49109355,RES1,3001,,17,NE,1962,1962,3101,1,1,1571.224133,1571.224133,3505,NO,15.87,30.33,3,3.26,6112,112.706517,122.492352,132.148364,138.338492,I,Above,Gable,0,5701,Wood,23.10256316,0,0,,,,1,1,,0.35,nav,1,1962,1,, 464,NJBF000081344,103 CYNWYD DRIVE,Absecon,NJ,39.41874102,-74.49104128,RES1,3001,,17,NE,1962,1962,3101,1,1,585.4444099,585.4444099,3505,NO,18.42,30.12,3,3.98,6112,112.706632,122.49192,132.147875,138.337432,I,Above,Gable,0,5701,Wood,24.26903644,0,0,,,,1,1,,0.35,nav,1,1962,1,, 465,NJBF000081376,105 CYNWYD DRIVE,Absecon,NJ,39.41892993,-74.49090836,RES1,3001,,17,NE,1974,1974,3101,1,1,4097.168365,4097.168365,3505,NO,11.66,17.93,3,0.99,6112,112.708002,122.49232,132.148288,138.337,I,Above,Hip,0,5701,Wood,14.7947054,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 466,NJBF000081424,16 IOWA AVE,Absecon,NJ,39.41915657,-74.50117575,RES1,3001,,17,NE,1915,1915,3101,1,1,2362.152547,2362.152547,3505,NO,17.08,26.98,3,4.29,6112,112.48987,122.307809,131.946871,138.136919,I,Above,Hip,0,5701,Wood,22.0310244,0,0,,,,1,1,,0.35,nav,1,1915,1,, 467,NJBF000081465,,Absecon,NJ,39.41935768,-74.50401236,RES1,3001,,NaN,NE,1959,0,3101,1,1,589.3290111,589.3290111,3505,NO,19.89,34.29,3,7.81,6106,112.428709,122.255674,131.889998,138.07902,I,Above,Gable,0,5701,Wood,27.0883275,0,0,,,,1,1,,0.03,nav,1,1959,1,, 468,NJBF000081464,44 IOWA AVE,Absecon,NJ,39.41935429,-74.50240471,RES1,3001,,17,NE,1910,1910,3101,2,1,1503.369175,1503.369175,3505,NO,22.63,30.32,3,-0.21,6112,112.462573,122.284063,131.920938,138.11012,I,Above,Gable,0,5701,Wood,26.47677758,0,0,,,,1,1,,0.35,nav,1,1910,2,, 469,NJBF000081458,40 IOWA AVE,Absecon,NJ,39.41932203,-74.50222887,RES1,3001,,17,NE,1910,1910,3101,2,1,1753.430611,1753.430611,3505,NO,43.12,56.56,3,4.53,6112,112.466508,122.287501,131.924694,138.114019,I,Above,Gable,0,5701,Wood,49.84059301,0,0,,,,1,1,,0.35,nav,1,1910,2,, 470,NJBF000081467,48 IOWA AVE,Absecon,NJ,39.41937562,-74.50257116,RES1,3001,,17,NE,1915,1915,3101,2,1,1506.263928,1506.263928,3505,NO,38.8,46.73,3,2.43,6112,112.458921,122.280905,131.917491,138.106569,I,Above,Gable,0,5701,Wood,42.7638547,0,0,,,,1,1,,0.35,nav,1,1915,2,, 471,NJBF000081475,24 IOWA AVE,Absecon,NJ,39.41943233,-74.50141998,RES1,3001,,17,NE,1915,1915,3101,1,1,1157.31286,1157.31286,3505,NO,18.17,24.01,3,-0.14,6112,112.482757,122.300647,131.938999,138.127884,I,Above,Hip,0,5701,Wood,21.08842115,0,0,,,,1,1,,0.35,nav,1,1915,1,, 472,NJBF000081474,236 ABSECON BLVD,Absecon,NJ,39.41943053,-74.4942316,RES1,3001,999,NaN,NE,1969,0,3101,1,1,773.4835099,773.4835099,3505,NO,22.89,28.22,3,5.86,6112,112.634171,122.427984,132.077943,138.265808,I,Above,Gable,0,5701,Wood,25.55620464,0,0,,,,1,1,,0.35,nav,1,1969,1,, 473,NJBF000081476,201 CYNWYD DRIVE,Absecon,NJ,39.41943609,-74.49059869,RES1,3001,,17,NE,2005,2005,3101,2,1,2162.462189,2162.462189,3505,NO,27.22,40.47,3,1.15,6112,112.710679,122.492551,132.148479,138.334952,I,Above,Flat,0,5701,Wood,33.84469691,0,0,,,,1,1,,0.35,nav,1,2005,2,, 474,NJBF000081492,236 ABSECON BLVD,Absecon,NJ,39.41952796,-74.49444071,RES1,3001,999,NaN,NE,1969,0,3101,1,1,644.8113832,644.8113832,3505,NO,24.33,36.96,3,5.85,6112,112.629047,122.423263,132.072772,138.260293,I,Above,Gable,0,5701,Wood,30.64453478,0,0,,,,1,1,,0.35,nav,1,1969,1,, 475,NJBF000081497,236 ABSECON BLVD,Absecon,NJ,39.41960513,-74.49477955,RES1,3001,999,NaN,NE,1969,0,3101,1,1,1998.353702,1998.353702,3505,NO,19.53,28.92,3,8.4,6112,112.621336,122.416442,132.065312,138.252607,I,Above,Hip,0,5701,Wood,24.22312949,0,0,,,,1,1,,0.35,nav,1,1969,1,, 476,NJBF000081511,203 CYNWYD DRIVE,Absecon,NJ,39.41971823,-74.49042562,RES1,3001,,17,NE,2005,2005,3101,1,1,2391.918921,2391.918921,3505,NO,17.61,30.36,3,2.22,6112,112.71219,122.492695,132.148602,138.333826,I,Above,Hip,0,5701,Wood,23.98543612,0,0,,,,1,1,,0.35,nav,1,2005,1,, 477,NJBF000081521,312 S SHORE ROAD,Absecon,NJ,39.41981334,-74.49980973,RES1,3001,,17,NE,1927,1927,3101,2,1,1311.912126,1311.912126,3505,NO,22.09,35.78,3,-0.61,6106,112.513913,122.325152,131.96564,138.152883,I,Above,Gable,0,5701,Wood,28.93471768,0,0,,,,1,1,,0.03,nav,1,1927,2,, 478,NJBF000081562,101 PARK CIRCLE,Absecon,NJ,39.42021516,-74.49423778,RES1,3001,,17,NE,1975,1975,3101,2,1,2148.896521,2148.896521,3505,NO,29.66,40.04,3,1.73,6112,112.628231,122.419721,132.068801,138.253393,I,Above,Gable,0,5701,Wood,34.85003717,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 479,NJBF000081581,1 PARK CIRCLE,Absecon,NJ,39.42047283,-74.49347135,RES1,3001,,17,NE,1965,1965,3101,1,1,2529.843431,2529.843431,3505,NO,20.2,31.89,3,8.44,6112,112.642456,122.430661,132.080716,138.263996,I,Above,Gable,0,5701,Wood,26.04603953,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 480,NJBF000081591,302 BURNING TREE BLVD,Absecon,NJ,39.42060184,-74.48803144,RES1,3001,,17,NE,1993,1993,3101,2,1,1028.404573,1028.404573,3505,NO,19.55,32,3,-2.97,6106,112.755891,122.526174,132.185121,138.365472,I,Above,Gable,0,5701,Wood,25.77303469,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 481,NJBF000081624,304 CYNWYD DRIVE,Absecon,NJ,39.42097663,-74.48900317,RES1,3001,,17,NE,1963,1963,3101,2,1,1577.012204,1577.012204,3505,NO,39.24,45.34,3,0.33,6112,112.732621,122.504929,132.161849,138.341175,I,Above,Gable,0,5701,Wood,42.28835403,0,0,,,,1,1,,0.35,nav,1,1963,2,, 482,NJBF000081645,306 CYNWYD DRIVE,Absecon,NJ,39.42124335,-74.48884277,RES1,3001,,17,NE,1965,1965,3101,2,1,2546.300829,2546.300829,3505,NO,24.61,30.13,3,-2.38,6112,112.733979,122.505008,132.161911,138.340058,I,Above,Gable,0,5701,Wood,27.36866641,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 483,NJBF000081654,211 REED RD,Absecon,NJ,39.42142911,-74.49270714,RES1,3001,,17,NE,1930,1930,3101,2,1,3050.344167,3050.344167,3505,NO,34.53,41.29,3,-0.9,6112,112.651445,122.434288,132.084556,138.2636,I,Above,Gable,0,5701,Wood,37.91271337,0,0,,,,1,1,,0.35,nav,1,1930,2,, 484,NJBF000081689,109 WOODS ROAD,Absecon,NJ,39.42188416,-74.49237782,RES1,3001,,17,NE,1987,1987,3101,1,1,4384.083444,4384.083444,3505,NO,16.59,21.67,3,3.96,6112,112.654997,122.4354,132.085717,138.262755,I,Above,Gable,0,5701,Wood,19.13231151,0,1.1,,,,1,1,,0.35,nav,1,1987,1,, 485,NJBF000081699,402 CYNWYD DRIVE,Absecon,NJ,39.42201087,-74.48839211,RES1,3001,,17,NE,1963,1963,3101,1,1,2665.531131,2665.531131,3505,NO,16.28,23.09,3,-1.22,6112,112.737675,122.505041,132.161881,138.336632,I,Above,Gable,0,5701,Wood,19.68570564,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 486,NJBF000081709,2 HILLSIDE CIRCLE,Absecon,NJ,39.42214415,-74.49184502,RES1,3001,,17,NE,1976,1976,3101,1,1,2303.994289,2303.994289,3505,NO,16.4,29.61,3,5.39,6112,112.664262,122.442169,132.093091,138.268854,I,Above,Flat,0,5701,Wood,23.00688657,0,1.1,,,,1,1,,0.35,nav,1,1976,1,, 487,NJBF000081725,404 CYNWYD DRIVE,Absecon,NJ,39.42231373,-74.48821325,RES1,3001,,17,NE,1960,1960,3101,1,1,3377.941927,3377.941927,3505,NO,15.97,29.15,3,1.56,6112,112.739158,122.505073,132.161892,138.335303,I,Above,Hip,0,5701,Wood,22.55678865,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 488,NJBF000081730,402 REED RD,Absecon,NJ,39.42236021,-74.48936612,RES1,3001,,17,NE,1987,1987,3101,2,1,2674.266367,2674.266367,3505,NO,22.79,35.34,3,0.57,6112,112.714641,122.484043,132.138875,138.312681,I,Above,Gable,0,5701,Wood,29.06647833,0,0,,,,1,1,,0.35,nav,1,1987,2,, 489,NJBF000081742,407 BURNING TREE BLVD,Absecon,NJ,39.42246451,-74.48758543,RES1,3001,,17,NE,1976,1976,3101,2,1,2728.530732,2728.530732,3505,NO,24.34,35.26,3,0.64,6112,112.751192,122.514699,132.172416,138.344866,I,Above,Gable,0,5701,Wood,29.79838741,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 490,NJBF000081756,6 HILLSIDE CIRCLE,Absecon,NJ,39.422587,-74.4914706,RES1,3001,,17,NE,1992,1992,3101,2,1,2168.295441,2168.295441,3505,NO,40.85,50.71,3,1.97,6112,112.668841,122.444207,132.095273,138.269057,I,Above,Gable,0,5701,Wood,45.77943526,0,1.1,,,,1,1,,0.35,nav,1,1992,2,, 491,NJBF000081753,403 CYNWYD DRIVE,Absecon,NJ,39.4225522,-74.48874116,RES1,3001,,17,NE,1965,1965,3101,1,1,3861.632221,3861.632221,3505,NO,14.35,26.65,3,-0.61,6112,112.726311,122.493178,132.148856,138.321562,I,Above,Gable,0,5701,Wood,20.49639964,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 492,NJBF000081768,111 CEDAR HILL DRIVE,Absecon,NJ,39.42276546,-74.48745072,RES1,3001,,17,NE,1965,1965,3101,1,1,4426.721768,4426.721768,3505,NO,24.03,37.49,3,5.13,6112,112.751751,122.51396,132.171587,138.342732,I,Above,Hip,0,5701,Wood,30.75990016,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 493,NJBF000081863,1 N SHORE ROAD,Absecon,NJ,39.42388503,-74.49982203,COM1,3003,,NaN,ME,1925,0,3401,3,1,4704.929432,4704.929432,3507,NO,51.02,65.84,1,2.28,6112,112.484837,122.282696,131.918542,138.088621,I,Above,Hip,0,NaN,Wood,58.43117522,0,0,,,,1,1,,1,nav,1,1925,3,, 494,NJBF000081890,143 OHIO AVE,Absecon,NJ,39.42427228,-74.50372435,RES1,3001,,17,NE,1900,1900,3102,2,1,552.4963967,552.4963967,3505,NO,37.51,49.82,3,2.89,6106,112.400757,122.209883,131.838937,138.007158,I,Above,Gable,0,5701,Wood,43.66353008,0,0,,,,1,1,,0.03,nav,1,1900,2,, 495,NJBF000081978,11 E CHURCH STREET,Absecon,NJ,39.42502792,-74.49780376,RES1,3001,,17,NE,1890,1890,3102,3,1,1932.75879,1932.75879,3505,NO,51.65,62.47,3,-2.27,6112,112.518981,122.306496,131.944397,138.109541,I,Above,Gable,0,5701,Wood,57.06002106,0,0,,,,1,1,,0.35,nav,1,1890,3,, 496,NJBF000081996,200 SHOWELLTON AVE,Absecon,NJ,39.42524057,-74.50440191,RES1,3001,,17,NE,1920,1920,3102,2,1,1427.76347,1427.76347,3505,NO,30.14,36.75,3,-2.67,6112,112.380114,122.187926,131.814776,137.978774,I,Above,Gable,0,5701,Wood,33.44361053,0,0,,,,1,1,,0.35,nav,1,1920,2,, 497,NJBF000082023,114 N SHORE RD,Absecon,NJ,39.42568153,-74.49733785,RES1,3001,,17,NE,1930,1930,3102,2,1,696.9220831,696.9220831,3505,NO,29.38,43.43,3,7.85,6112,112.524135,122.307945,131.945903,138.108253,I,Above,Gable,0,5701,Wood,36.40824852,0,0,,,,1,1,,0.35,nav,1,1930,2,, 498,NJBF000082029,114 N SHORE RD,Absecon,NJ,39.42573417,-74.49746202,RES1,3001,,17,NE,1930,1930,3102,2,1,875.2653711,875.2653711,3505,NO,32.16,37.7,3,0.48,6112,112.521192,122.305211,131.942908,138.105053,I,Above,Gable,0,5701,Wood,34.92994228,0,0,,,,1,1,,0.35,nav,1,1930,2,, 499,NJBF000082039,114 N SHORE RD,Absecon,NJ,39.42585374,-74.49763413,RES1,3001,,17,NE,1930,1930,3102,2,1,1917.247793,1917.247793,3505,NO,30.95,45.82,3,-1.24,6112,112.516779,122.300923,131.938204,138.099864,I,Above,Hip,0,5701,Wood,38.3846498,0,0,,,,1,1,,0.35,nav,1,1930,2,, 500,NJBF000082060,121 N SHORE ROAD,Absecon,NJ,39.42613101,-74.49858508,RES1,3001,,17,NE,1948,1948,3102,1,1,535.0504607,535.0504607,3505,NO,24.24,33.98,3,5.6,6112,112.495081,122.281238,131.916642,138.077211,I,Above,Gable,0,5701,Wood,29.10678038,0,0,,,,1,1,,0.35,nav,1,1948,1,, 501,NJBF000082057,121 N SHORE ROAD,Absecon,NJ,39.42609084,-74.49822434,RES1,3001,,17,NE,1948,1948,3102,1,1,2732.419127,2732.419127,3505,NO,13.71,21.69,3,1.79,6112,112.502865,122.288032,131.924077,138.084792,I,Above,Gable,0,5701,Wood,17.69885534,0,0,,,,1,1,,0.35,nav,1,1948,1,, 502,NJBF000082117,141 E FAUNCE LANDING RD,Absecon,NJ,39.42666743,-74.49083628,RES1,3001,,17,NE,1955,1955,3102,1,1,535.0461293,535.0461293,3507,NO,16.25,23.68,1,-0.13,6106,112.652509,122.41299,132.060785,138.217473,I,Above,Flat,0,5701,Wood,19.96541235,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 503,NJBF000082134,66 NATALIE TERRACE,Absecon,NJ,39.42688567,-74.49386942,RES1,3001,,17,NE,1927,1927,3102,2,1,1347.294572,1347.294572,3505,NO,31.72,46.28,3,2.95,6112,112.587887,122.35686,131.999315,138.156024,I,Above,Gable,0,5701,Wood,38.99763791,0,0,,,,1,1,,0.35,nav,1,1927,2,, 504,NJBF000082152,50 NATALIE TERRACE,Absecon,NJ,39.42708999,-74.4945795,RES1,3001,,17,NE,1927,1927,3102,1,1,1924.996145,1924.996145,3505,NO,10.96,21.21,3,-1.2,6112,112.571683,122.342134,131.98318,138.139201,I,Above,Gable,0,5701,Wood,16.08207262,0,0,,,,1,1,,0.35,nav,1,1927,1,, 505,NJBF000082154,54 NATALIE TERRACE,Absecon,NJ,39.42711438,-74.49437842,RES1,3001,,17,NE,1944,1944,3102,1,1,3674.800725,3674.800725,3505,NO,15.07,27.24,3,-2.36,6112,112.575712,122.345464,131.986823,138.142701,I,Above,Gable,0,5701,Wood,21.15312219,0,0,,,,1,1,,0.35,nav,1,1944,1,, 506,NJBF000082177,63 E FAUNCE LANDING RD,Absecon,NJ,39.42748277,-74.49334835,RES1,3001,,17,NE,1910,1910,3102,2,1,1943.421375,1943.421375,3505,NO,30.55,40.43,3,6.97,6112,112.594521,122.359885,132.002585,138.156685,I,Above,Gable,0,5701,Wood,35.48948805,0,0,,,,1,1,,0.35,nav,1,1910,2,, 507,NJBF000082216,137 N SHORE ROAD,Absecon,NJ,39.42794305,-74.49815186,RES1,3001,,17,NE,1948,1948,3102,2,1,622.281681,622.281681,3505,NO,40.04,46.39,3,1.65,6112,112.491682,122.27007,131.904238,138.057165,I,Above,Gable,0,5701,Wood,43.21485131,0,0,,,,1,1,,0.35,nav,1,1948,2,, 508,NJBF000082308,131 W FAUNCE LANDING RD,Absecon,NJ,39.4288656,-74.49845054,RES1,3001,,17,NE,1925,1925,3102,1,1,1099.17471,1099.17471,3505,NO,13.45,24.81,3,1.76,6112,112.479246,122.255203,131.88789,138.036949,I,Above,Gable,0,5701,Wood,19.1289811,0,0,,,,1,1,,0.35,nav,1,1925,1,, 509,NJBF000082305,139 W FAUNCE LANDING RD,Absecon,NJ,39.42885307,-74.49875191,RES1,3001,,17,NE,1956,1956,3102,1,1,2385.41079,2385.41079,3505,NO,11.44,22.76,3,-2.69,6112,112.473106,122.250025,131.882224,138.031345,I,Above,Gable,0,5701,Wood,17.10157367,0,0,,,,1,1,,0.35,nav,1,1956,1,, 510,NJBF000082352,134 W FAUNCE LANDING RD,Absecon,NJ,39.42921981,-74.49860402,RES1,3001,,17,NE,1954,1954,3102,1,1,1634.207013,1634.207013,3505,NO,9.74,22.77,3,-0.78,6112,112.473702,122.248826,131.880883,138.028456,I,Above,Gable,0,5701,Wood,16.25508888,0,0,,,,1,1,,0.35,nav,1,1954,1,, 511,NJBF000082353,109 LISBON AVE,Absecon,NJ,39.42922913,-74.48881623,RES1,3001,,17,NE,1985,1985,3102,2,1,1850.364244,1850.364244,3507,NO,26.24,33.27,1,-0.61,6106,112.676192,122.422197,132.070772,138.216148,I,Above,Gable,0,5701,Wood,29.75552472,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 512,NJBF000082453,306 SPRUCE STREET,Absecon,NJ,39.430084,-74.49775474,RES1,3001,,17,NE,1955,1955,3102,2,1,1682.668418,1682.668418,3505,NO,38.85,44.08,3,8.87,6112,112.485447,122.254837,131.887407,138.031316,I,Above,Gable,0,5701,Wood,41.4679456,0,0,,,,1,1,,0.35,nav,1,1955,2,, 513,NJBF000082532,12 JULIANNA DRIVE,Absecon,NJ,39.43068731,-74.49065547,RES1,3001,,17,NE,1992,1992,3102,2,1,2641.298679,2641.298679,3507,NO,29.69,35.66,1,-0.12,6112,112.627921,122.374292,132.018242,138.15833,I,Above,Hip,0,5701,Wood,32.6766144,0,1.1,,,,1,1,,0.35,nav,1,1992,2,, 514,NJBF000082552,16 LISBON AVE,Absecon,NJ,39.43088028,-74.48947114,RES1,3001,,17,NE,1964,1964,3102,2,1,1838.738213,1838.738213,3507,NO,33.12,46.71,1,-0.12,6112,112.651024,122.393316,132.039091,138.177978,I,Above,Gable,0,5701,Wood,39.91471544,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 515,NJBF000082554,9 CORDOVA DR,Absecon,NJ,39.43092057,-74.49028484,RES1,3001,,17,NE,1960,1960,3102,1,1,2390.231887,2390.231887,3507,NO,17.95,29.94,1,0.29,6112,112.633934,122.378423,132.022766,138.161772,I,Above,Gable,0,5701,Wood,23.94653998,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 516,NJBF000082562,15 LISBON AVE,Absecon,NJ,39.43099012,-74.48891061,RES1,3001,,17,NE,1966,1966,3102,2,1,1208.695439,1208.695439,3507,NO,30.76,42.61,1,0.42,6112,112.661817,122.402125,132.048747,138.186972,I,Above,Gable,0,5701,Wood,36.68573461,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 517,NJBF000082608,12 CORTEZ AVE,Absecon,NJ,39.43152749,-74.48843296,RES1,3001,,17,NE,1966,1966,3102,2,1,1928.887366,1928.887366,3507,NO,28.68,34.53,1,0.47,6112,112.667923,122.40502,132.05192,138.187766,I,Above,Gable,0,5701,Wood,31.60196449,0,0,,,,1,1,,0.35,nav,1,1966,2,, 518,NJBF000082666,9 CORTEZ AVE,Absecon,NJ,39.43221487,-74.48786791,RES1,3001,,17,NE,1965,1965,3102,1,1,3339.171452,3339.171452,3507,NO,11.81,17.46,1,0.68,6112,112.674764,122.407886,132.055067,138.187884,I,Above,Gable,0,5701,Wood,14.63823339,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 519,NJBF000082725,608 SOOY LANE,Absecon,NJ,39.43286506,-74.48026088,RES1,3001,,17,NE,2004,2004,3102,2,1,2393.15381,2393.15381,3507,NO,35.76,41.75,1,2.77,6112,112.826862,122.53687,132.196594,138.322529,I,Above,Gable,0,5701,Wood,38.75445055,0,0,,,,1,1,,0.35,nav,1,2004,2,, 520,NJBF000083156,705 WHITE HORSE PIKE,Absecon,NJ,39.43849032,-74.51845244,COM4,3004,560,NaN,ME,1969,0,3401,1,1,5366.909121,5366.909121,3507,NO,13.32,27.9,1,-0.74,6112,112.013145,121.806533,131.396238,137.495338,I,Above,Gable,0,NaN,Wood,20.60857751,0,0,,,,1,1,,0.35,nav,1,1969,1,, 521,NJBF000083161,40 RITZ DRIVE,Absecon,NJ,39.43866556,-74.51712174,RES1,3001,,17,NE,1965,1965,3102,2,1,1439.39452,1439.39452,3505,NO,37.53,49.1,3,6.77,6112,112.038865,121.827693,131.419429,137.518805,I,Above,Gable,0,5701,Wood,43.31032744,0,0,,,,1,1,,0.35,nav,1,1965,2,, 522,NJBF000083414,15 RITZ DR,Absecon,NJ,39.4437149,-74.51327059,RES1,3001,,17,NE,1975,1975,3102,1,1,2145.992931,2145.992931,3505,NO,10.47,19.85,3,-1.61,6112,112.088471,121.842272,131.435939,137.515399,I,Above,Gable,0,5701,Wood,15.15869306,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 523,NJBF000083422,13 RITZ DR,Absecon,NJ,39.44383712,-74.51298406,RES1,3001,,17,NE,1975,1975,3102,1,1,2144.06214,2144.06214,3505,NO,16.49,22.1,3,5.23,6112,112.093517,121.845978,131.44002,137.519137,I,Above,Gable,0,5701,Wood,19.294196,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 524,NJBF000083426,5 CLARIDGE COURT,Absecon,NJ,39.44410722,-74.51306008,RES1,3001,,17,NE,1975,1975,3102,1,1,1967.644371,1967.644371,3505,NO,23.27,28.42,3,6.49,6112,112.09055,121.841873,131.435569,137.51341,I,Above,Gable,0,5701,Wood,25.84661654,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 525,NJBF000071434,425 N MARYLAND AVE,Atlantic City,NJ,39.37060793,-74.42564427,RES1,3001,210,NaN,NE,1969,0,3102,1,1,906.2940373,906.2940373,3505,NO,12.09,25.16,3,-0.83,6106,114.582127,124.183352,133.988734,140.212988,I,Above,Flat,0,5701,Wood,18.62778897,0,0,,,,1,1,,0.03,nav,1,1969,1,, 526,NJBF000069199,125 N FLORIDA AVE,Atlantic City,NJ,39.35914703,-74.44296699,RES3B,3001,,NaN,ME,1969,0,3301,2,1,746.77695,746.77695,3505,NO,20.8,28.38,3,-1.12,6106,114.345973,123.988371,133.764787,140.105028,I,Above,Flat,0,NaN,Wood,24.5906803,0,0,,,,1,1,,0.03,nav,1,1969,2,, 527,NJBF000073099,600 HURON AVE,Atlantic City,NJ,39.37757936,-74.4295234,GOV2,3001,,NaN,E,1969,0,3401,3,1,1513.12497,1513.12497,3507,NO,53.51,64.92,1,2.61,6102,114.419245,124.039359,133.835327,140.051978,I,Above,Hip,0,NaN,Wood,59.2178323,0,0,,,,1,1,,0.03,nav,1,1969,3,, 528,NJBF000072131,332 N RHODE ISLAND AVE,Atlantic City,NJ,39.37266302,-74.4195965,IND1,3003,100,NaN,E,1969,0,3401,1,1,1000.334181,1000.334181,3507,NO,12.94,25.08,1,0.65,6106,114.687154,124.272844,134.089421,140.279189,I,Above,Flat,0,NaN,Wood,19.01116657,0,0,,,,1,1,,0.03,nav,1,1969,1,, 529,NJBF000067530,1 ATLANTIC OCEAN,Atlantic City,NJ,39.35374924,-74.43417403,COM8,3003,738,NaN,ME,1969,0,3401,1,1,177963.6629,177963.6629,3502,NO,23.82,31.38,5,9.26,6102,114.602674,124.205439,133.996965,140.317942,I,Above,Flat,0,NaN,Wood,27.5964249,0,0,,,,1,1,,0.03,nav,1,1969,1,, 530,NJBF000067877,11 N MORRIS AVE,Atlantic City,NJ,39.35486056,-74.44795731,RES3B,3001,,45,ME,1900,1900,3301,2,3,835.133255,835.133255,3504,NO,22.28,31.19,-4,0,6106,114.290475,123.943662,133.712312,140.089522,I,Above,Hip,0,NaN,Wood,26.73550746,0,0,,,,1,1,,0.03,nav,1,1900,2,, 531,NJBF000068827,601 N ALBANY AVE,Atlantic City,NJ,39.35771681,-74.45662953,COM1,3003,,NaN,ME,1969,0,3401,1,1,654.0515616,654.0515616,3507,NO,12.92,22.85,1,0.48,6106,114.066125,123.756156,133.511018,139.908712,I,Above,Flat,0,NaN,Wood,17.88736232,0,0,,,,1,1,,0.03,nav,1,1969,1,, 532,NJBF000070418,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.36703147,-74.43394222,RES3C,3004,,NaN,ME,1969,0,3301,1,1,938.5675163,938.5675163,3505,NO,22.15,30.29,3,8.37,6106,114.446193,124.069174,133.859987,140.133075,I,Above,Gable,0,NaN,Wood,26.2188825,0,0,,,,1,1,,0.03,nav,1,1969,1,, 533,NJBF000073313,900 BEACH THOROFARE,Atlantic City,NJ,39.37975402,-74.42453449,GOV2,3001,,NaN,E,1969,0,3401,2,1,606.967372,606.967372,3507,NO,36.33,45.23,1,0.84,6106,114.501236,124.10828,133.913045,140.101152,I,Above,Flat,0,NaN,Wood,40.78026092,0,0,,,,1,1,,0.03,nav,1,1969,2,, 534,NJBF000073035,1 BORGATA WAY,Atlantic City,NJ,39.37673702,-74.43505349,COM8,3003,80,NaN,ME,1969,0,3401,1,1,1879.060694,1879.060694,3507,NO,10.76,20.42,1,-0.2,6112,114.310272,123.946858,133.732799,139.974749,I,Above,Gable,0,NaN,Wood,15.58973262,0,0,,,,1,1,,1,nav,1,1969,1,, 535,NJBF000070587,22 N VERMONT AVE,Atlantic City,NJ,39.36769548,-74.4155228,RES3D,3004,,NaN,E,1969,0,3303,4,1,665.0906288,665.0906288,3505,NO,76.24,85.91,3,5.65,6106,114.831915,124.399307,134.224762,140.410933,I,Above,Flat,0,NaN,Wood,81.0745672,0,0,,,,1,1,,0.03,nav,1,1969,4,, 536,NJBF000071302,822 ADRIATIC AVE,Atlantic City,NJ,39.37013371,-74.4249531,RES1,3001,100,NaN,NE,1969,0,3102,2,1,2115.508277,2115.508277,3505,NO,35.03,48.91,3,0.95,6106,114.602423,124.200968,134.007765,140.230525,I,Above,Flat,0,5701,Wood,41.96684013,0,0,,,,1,1,,0.03,nav,1,1969,2,, 537,NJBF000068281,1701 BOARDWALK,Atlantic City,NJ,39.35622601,-74.42913186,COM8,3003,100,NaN,ME,1969,0,3401,1,1,1182.211148,1182.211148,3507,YES,15.94,25.06,1,1.71,6106,114.680286,124.270854,134.071307,140.360231,I,Above,Hip,0,NaN,Wood,20.50057463,0,0,,,,1,1,,0.03,nav,1,1969,1,, 538,NJBF000073032,1 BORGATA WAY,Atlantic City,NJ,39.37671002,-74.43481749,COM8,3003,80,NaN,ME,1969,0,3401,2,1,1034.644393,1034.644393,3507,NO,29.16,38.09,1,-0.95,6112,114.315643,123.951461,133.737847,139.978972,I,Above,Flat,0,NaN,Wood,33.62230206,0,0,,,,1,1,,1,nav,1,1969,2,, 539,NJBF000073016,600 HURON AVE,Atlantic City,NJ,39.37654852,-74.42859749,GOV2,3001,,NaN,E,1969,0,3401,3,1,1893.761678,1893.761678,3507,NO,46.44,51.95,1,0.4,6102,114.450688,124.067108,133.865198,140.081631,I,Above,Flat,0,NaN,Wood,49.19737067,0,0,,,,1,1,,0.03,nav,1,1969,3,, 540,NJBF000072680,618 N CONNECTICUT AVE,Atlantic City,NJ,39.37449952,-74.4238115,RES1,3001,,NaN,NE,1969,0,3102,2,1,868.5192539,868.5192539,3505,NO,30.29,45.09,3,5.82,6106,114.576225,124.176314,133.984216,140.187041,I,Above,Flat,0,5701,Wood,37.69262817,0,0,,,,1,1,,0.03,nav,1,1969,2,, 541,NJBF000071245,,Atlantic City,NJ,39.36991241,-74.42513813,RES1,3001,,NaN,NE,1969,0,3102,2,1,814.36214,814.36214,3505,NO,33.93,39.75,3,3.8,6106,114.601067,124.199901,134.006394,140.230744,I,Above,Flat,0,5701,Wood,36.84013057,0,0,,,,1,1,,0.03,nav,1,1969,2,, 542,NJBF000070402,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.36696953,-74.43408199,RES3C,3004,,NaN,ME,1969,0,3301,1,1,1047.135344,1047.135344,3505,NO,20.16,34.47,3,8.14,6106,114.443902,124.067262,133.857835,140.13174,I,Above,Flat,0,NaN,Wood,27.31446286,0,0,,,,1,1,,0.03,nav,1,1969,1,, 543,NJBF000073509,5207 HARBOR BEACH BLVD,Atlantic City,NJ,39.38121603,-74.40752613,RES1,3001,,17,NE,1987,1987,3103,2,1,1585.636058,1585.636058,3505,NO,38.96,49.1,3,3.55,6110,114.844667,124.406792,134.245537,140.351043,I,Above,Gable,0,5701,Wood,44.03148628,0,0,,,,1,1,,0.35,nav,1,1987,2,, 544,NJBF000073577,5110 ONTARIO DRIVE,Atlantic City,NJ,39.381728,-74.4063255,RES1,3001,,43,NE,1985,1985,3103,2,2,1247.359049,1247.359049,3505,NO,24.54,39.02,3,-0.32,6110,114.86414,124.423747,134.264858,140.362971,I,Above,Gable,0,5701,Wood,31.77601017,0,0,,,,1,1,,0.35,nav,1,1985,2,, 545,NJBF000073745,4 MANITOBA AVE,Atlantic City,NJ,39.38288165,-74.40613562,RES3A,3001,,18,NE,2006,2006,3301,2,1,2553.805107,2553.805107,3505,NO,37.36,44.6,3,2.83,6106,114.855157,124.415388,134.256509,140.350275,I,Above,Hip,0,5701,Wood,40.98307329,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 546,NJBF000073749,4815 ROSS DRIVE SOUTH,Atlantic City,NJ,39.38290256,-74.40068093,RES3C,3001,,37,ME,1986,1986,3301,2,1,1937.55861,1937.55861,3507,NO,33.46,44.21,1,-0.7,6106,114.969196,124.516266,134.369074,140.435663,I,Above,Gable,0,NaN,Wood,38.83397853,0,0,,,,1,1,,0.03,nav,1,1986,2,, 547,NJBF000073271,29 OCEAN DRIVE WEST,Atlantic City,NJ,39.37946962,-74.40830686,RES1,3001,,16,NE,1975,1975,3103,2,1,1115.517747,1115.517747,3505,NO,37.68,49.11,3,8.66,6106,114.847969,124.410327,134.247977,140.36254,I,Above,Hip,0,5701,Wood,43.39541385,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 548,NJBF000070632,,Atlantic City,NJ,39.36786531,-74.42736843,RES1,3001,,NaN,NE,1969,0,3103,6,1,1947.18178,1947.18178,3505,NO,79.15,92.08,3,-2.6,6106,114.577422,124.180522,133.983223,140.224622,I,Above,Hip,0,5701,Wood,85.6142264,0,0,,,,1,1,,0.03,nav,1,1969,6,, 549,NJBF000068931,2507 ARCTIC AVE,Atlantic City,NJ,39.35805361,-74.44340273,RES3B,3001,,17,ME,1969,1900,3301,2,1,2442.19065,2442.19065,3505,NO,25.82,32.05,3,2.69,6106,114.349899,123.992096,133.7679,140.114122,I,Above,Gable,0,NaN,Wood,28.93451235,0,0,,,,1,1,,0.03,nav,1,1969,2,, 550,NJBF000072197,1817 N MISSOURI AVE,Atlantic City,NJ,39.3728645,-74.4535545,RES1,3001,,17,NE,1900,1900,3101,1,1,1134.766004,1134.766004,3505,NO,25.84,32.09,3,8.88,6106,113.954306,123.650378,133.405597,139.727957,I,Above,Flat,0,5701,Wood,28.96514477,0,0,,,,1,1,,0.03,nav,1,1900,1,, 551,NJBF000072227,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37296747,-74.4191288,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6014.012796,6014.012796,3505,NO,17.37,29.2,3,3.39,6106,114.69356,124.278259,134.095682,140.282283,I,Above,Hip,0,NaN,Wood,23.28496809,0,0,,,,1,1,,0.03,nav,1,1969,1,, 552,NJBF000072895,837 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37550337,-74.42300718,RES3D,3001,,18,ME,2006,2006,3301,3,1,1357.048534,1357.048534,3507,NO,37.84,42.89,1,0.96,6106,114.581869,124.18062,133.98979,140.185651,I,Above,Hip,0,NaN,Wood,40.36492488,0,0,,,,1,1,,0.03,nav,1,2006,3,, 553,NJBF000069283,2231 ARCTIC AVE,Atlantic City,NJ,39.35950971,-74.44011018,COM1,3003,,NaN,ME,1969,0,3401,1,1,10842.04384,10842.04384,3507,NO,21.89,34.89,1,2.94,6106,114.403388,124.036401,133.817587,140.144537,I,Above,Flat,0,NaN,Wood,28.38958755,0,0,,,,1,1,,0.03,nav,1,1969,1,, 554,NJBF000068521,2807 DENNY ST,Atlantic City,NJ,39.35700017,-74.44757492,RES1,3001,,27,NE,1900,1900,3102,2,2,1447.053472,1447.053472,3505,NO,34.44,43.9,3,7.74,6106,114.2723,123.927698,133.696793,140.064021,I,Above,Hip,0,5701,Wood,39.16934775,0,0,,,,1,1,,0.03,nav,1,1900,2,, 555,NJBF000072516,538 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3739549,-74.42235362,RES1,3001,,45,NE,1900,1900,3102,2,2,1562.170649,1562.170649,3505,NO,39.94,52.12,3,8.35,6106,114.613535,124.208743,134.019618,140.217751,I,Above,Hip,0,5701,Wood,46.02753727,0,0,,,,1,1,,0.03,nav,1,1900,2,, 556,NJBF000066458,4017 VENTNOR AVE,Atlantic City,NJ,39.349802,-74.45892115,COM1,3004,100,NaN,ME,1969,0,3401,2,1,2121.364634,2121.364634,3507,YES,24.17,33.17,1,1.09,6106,114.11498,123.800095,133.552295,139.99249,I,Above,Flat,0,NaN,Wood,28.67068861,0,0,,,,1,1,,0.03,nav,1,1969,2,, 557,NJBF000068201,2905 ARCTIC AVE,Atlantic City,NJ,39.355985,-74.4485495,RES3A,3001,,45,NE,1930,1930,3301,2,3,1474.77185,1474.77185,3505,NO,35.82,50.53,3,6.9,6106,114.263656,123.920912,133.68854,140.063665,I,Above,Hip,0,5701,Wood,43.17148983,0,0,,,,1,1,,0.03,nav,1,1930,2,, 558,NJBF000072280,1600 EMERSON AVE,Atlantic City,NJ,39.37314507,-74.44961931,RES1,3001,,17,NE,1959,1959,3101,1,1,2029.396069,2029.396069,3505,NO,11.94,23.73,3,0.41,6106,114.036589,123.71893,133.480575,139.789225,I,Above,Hip,0,5701,Wood,17.83627987,0,0,,,,1,1,,0.03,nav,1,1959,1,, 559,NJBF000071219,914 N INDIANA AVE,Atlantic City,NJ,39.36979733,-74.43988434,RES3A,3001,,27,NE,1953,1953,3301,2,2,1687.922785,1687.922785,3505,YES,35.33,43.04,3,5.75,6106,114.285753,123.931614,133.711171,139.998133,I,Above,Flat,0,5701,Wood,39.18497199,0,0,,,,1,1,,0.03,nav,1,1953,2,, 560,NJBF000069087,2312 ARCTIC AVE,Atlantic City,NJ,39.35871841,-74.44091582,COM1,3003,,45,ME,1920,1920,3401,3,3,1267.11776,1267.11776,3507,YES,38.45,48.45,1,1.26,6106,114.395626,124.030176,133.810075,140.143393,I,Above,Gable,0,NaN,Wood,43.45236519,0,0,,,,1,1,,0.03,nav,1,1920,3,, 561,NJBF000069314,122 N MISSISSIPPI AVE,Atlantic City,NJ,39.35963541,-74.44114268,COM1,3003,,47,ME,1900,1910,3401,2,3,3533.316075,3533.316075,3507,YES,32.4,42.97,1,1.94,6106,114.379518,124.016305,133.795728,140.126552,I,Above,Flat,0,NaN,Wood,37.68833586,0,0,,,,1,1,,0.03,nav,1,1900,2,, 562,NJBF000067661,12 N MONTPELIER AVE,Atlantic City,NJ,39.35409178,-74.450722,RES3B,3001,,45,ME,1908,1908,3301,2,3,1577.696548,1577.696548,3504,NO,36.89,50.03,-4,0,6106,114.239888,123.901876,133.666217,140.057496,I,Above,Hip,0,NaN,Wood,43.46405256,0,0,,,,1,1,,0.03,nav,1,1908,2,, 563,NJBF000067689,14 N MONTPELIER AVE,Atlantic City,NJ,39.35417434,-74.45078828,RES3B,3001,,45,ME,1900,1900,3301,2,2,1539.698677,1539.698677,3504,NO,26.13,39.84,-4,0,6106,114.237428,123.899803,133.664035,140.055243,I,Above,Hip,0,NaN,Wood,32.98710693,0,0,,,,1,1,,0.03,nav,1,1900,2,, 564,NJBF000072465,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37376697,-74.41696374,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3486.234049,3486.234049,3505,NO,33.22,42.55,3,8.11,6106,114.730283,124.309735,134.131251,140.305114,I,Above,Hip,0,NaN,Wood,37.88500131,0,0,,,,1,1,,0.03,nav,1,1969,2,, 565,NJBF000071361,141 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37036284,-74.41401886,RES3D,3004,,27,E,2000,2000,3303,2,2,1771.71857,1771.71857,3505,NO,37.97,52.11,3,4.35,6106,114.832352,124.399208,134.227272,140.397732,I,Above,Hip,0,NaN,Wood,45.03804989,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 566,NJBF000067147,3 N ST DAVIDS PL,Atlantic City,NJ,39.35230731,-74.45456624,RES3B,3001,,45,E,1900,1900,3303,2,2,1421.969062,1421.969062,3507,NO,40.74,49.17,1,2.91,6106,114.178444,123.851606,133.610149,140.023565,I,Above,Flat,0,NaN,Wood,44.95855826,0,0,,,,1,1,,0.03,nav,1,1900,2,, 567,NJBF000072609,1404 PENROSE AVE,Atlantic City,NJ,39.37426708,-74.44507169,RES1,3001,,17,NE,1900,1900,3102,2,1,1743.978387,1743.978387,3505,NO,42.35,53.35,3,4.85,6106,114.122337,123.789865,133.558834,139.847478,I,Above,Hip,0,5701,Wood,47.84821412,0,0,,,,1,1,,0.03,nav,1,1900,2,, 568,NJBF000072085,2002 E RIVERSIDE DR,Atlantic City,NJ,39.3725323,-74.44528008,RES1,3001,,NaN,NE,1969,0,3102,2,1,4400.646067,4400.646067,3505,NO,40.28,54.56,3,3.54,6106,114.137595,123.804395,133.573665,139.869974,I,Above,Hip,0,5701,Wood,47.41756243,0,0,,,,1,1,,0.03,nav,1,1969,2,, 569,NJBF000071571,1605 W RIVERSIDE DR,Atlantic City,NJ,39.3709536,-74.45072537,RES1,3001,,17,NE,1900,1900,3101,2,1,1627.048044,1627.048044,3505,NO,44.56,58.13,3,8.2,6106,114.037623,123.722024,133.482671,139.804053,I,Above,Hip,0,5701,Wood,51.34463829,0,0,,,,1,1,,0.03,nav,1,1900,2,, 570,NJBF000068858,10 N MISSISSIPPI AVE,Atlantic City,NJ,39.357808,-74.440426,COM1,3003,,NaN,ME,1969,0,3401,3,1,1552.892811,1552.892811,3507,NO,37.39,42.62,1,-0.23,6106,114.417383,124.048753,133.829552,140.164178,I,Above,Flat,0,NaN,Wood,40.00441734,0,0,,,,1,1,,0.03,nav,1,1969,3,, 571,NJBF000068967,10 N MISSISSIPPI AVE,Atlantic City,NJ,39.358191,-74.44024029,COM1,3003,,NaN,ME,1969,0,3401,3,1,19774.75034,19774.75034,3507,NO,31.96,43.7,1,0.15,6106,114.416705,124.048057,133.829142,140.161553,I,Above,Flat,0,NaN,Wood,37.82853722,0,0,,,,1,1,,0.03,nav,1,1969,3,, 572,NJBF000067184,3029 PACIFIC AVE,Atlantic City,NJ,39.35246716,-74.44786077,COM1,3003,530,NaN,ME,1969,0,3401,2,1,4767.595549,4767.595549,3507,NO,28.01,35.63,1,1.37,6106,114.322502,123.971057,133.73994,140.126086,I,Above,Flat,0,NaN,Wood,31.82004957,0,0,,,,1,1,,0.03,nav,1,1969,2,, 573,NJBF000070051,408 N INDIANA AVE,Atlantic City,NJ,39.3656245,-74.4371055,RES1,3001,,45,NE,1920,1920,3101,2,2,1129.324234,1129.324234,3507,NO,26.5,35.41,1,0.76,6106,114.394697,124.0263,133.811762,140.103314,I,Above,Hip,0,5701,Wood,30.95482958,0,0,,,,1,1,,0.03,nav,1,1920,2,, 574,NJBF000067637,405 N ANNAPOLIS AVE,Atlantic City,NJ,39.35403396,-74.46286267,RES1,3001,,17,NE,1900,1900,3102,1,1,776.6966952,776.6966952,3505,NO,12.98,22.62,3,2.02,6106,113.975231,123.683311,133.429558,139.864088,I,Above,Flat,0,5701,Wood,17.7978336,0,0,,,,1,1,,0.03,nav,1,1900,1,, 575,NJBF000065525,1 S KINGSTON AVE,Atlantic City,NJ,39.34733604,-74.46305125,RES3A,3001,,45,NE,1925,1925,3301,2,4,1928.841921,1928.841921,3505,YES,27.4,38.24,3,-1.26,6106,114.056126,123.752489,133.498861,139.964568,I,Above,Hip,0,5701,Wood,32.81874382,0,0,,,,1,1,,0.03,nav,1,1925,2,, 576,NJBF000070898,1104 ADRIATIC AVE,Atlantic City,NJ,39.36879059,-74.42817944,RES1,3001,,33,NE,1900,1900,3103,2,1,1532.420111,1532.420111,3505,YES,23.44,32.46,3,-0.13,6106,114.549161,124.155977,133.956985,140.198798,I,Above,Gable,0,5701,Wood,27.94726262,0,0,,,,1,1,,0.03,nav,1,1900,2,, 577,NJBF000068372,2801 ARCTIC AVE,Atlantic City,NJ,39.356535,-74.446991,RES3A,3001,738,NaN,NE,1969,0,3301,3,1,947.8162957,947.8162957,3505,YES,50.3,56.84,3,8.99,6106,114.290726,123.943249,133.713326,140.08006,I,Above,Flat,0,5701,Wood,53.57119258,0,0,,,,1,1,,0.03,nav,1,1969,3,, 578,NJBF000072114,730 SEWELL AVE,Atlantic City,NJ,39.37262817,-74.42491434,RES1,3001,,27,NE,1900,1900,3102,2,2,1902.722298,1902.722298,3505,YES,45.07,51.7,3,6.65,6106,114.57426,124.175618,133.981904,140.195999,I,Above,Flat,0,5701,Wood,48.3895872,0,0,,,,1,1,,0.03,nav,1,1900,2,, 579,NJBF000066996,40 N TRENTON AVE,Atlantic City,NJ,39.35163518,-74.45705066,RES3A,3001,,17,NE,1900,1900,3301,1,1,782.4421787,782.4421787,3505,NO,20.41,25.72,3,8.31,6106,114.132631,123.814004,133.568874,139.994375,I,Above,Gable,0,5701,Wood,23.06069605,0,0,,,,1,1,,0.03,nav,1,1900,1,, 580,NJBF000067020,40 N TRENTON AVE,Atlantic City,NJ,39.3517208,-74.45687416,RES3A,3001,,17,NE,1900,1900,3301,1,1,1502.257554,1502.257554,3505,NO,14.48,20.4,3,-1.63,6106,114.135414,123.816269,133.571397,139.995882,I,Above,Hip,0,5701,Wood,17.43988439,0,0,,,,1,1,,0.03,nav,1,1900,1,, 581,NJBF000072548,1403 N OHIO AVE,Atlantic City,NJ,39.37405039,-74.44517568,RES1,3001,,17,NE,1925,1925,3102,2,1,910.6234253,910.6234253,3505,NO,42.94,57.14,3,5.66,6106,114.12255,123.79026,133.559134,139.849008,I,Above,Gable,0,5701,Wood,50.03924291,0,0,,,,1,1,,0.03,nav,1,1925,2,, 582,NJBF000065663,19 S DELANCY PL,Atlantic City,NJ,39.34775779,-74.46138687,RES3A,3001,,17,NE,1900,1900,3301,2,1,1446.51815,1446.51815,3505,NO,38.96,50.17,3,1.52,6106,114.087156,123.777841,133.526535,139.984517,I,Above,Gable,0,5701,Wood,44.5618683,0,0,,,,1,1,,0.03,nav,1,1900,2,, 583,NJBF000071438,410 DELTA AVE,Atlantic City,NJ,39.370623,-74.4251975,RES1,3001,,33,NE,1900,1900,3102,2,1,2242.951543,2242.951543,3505,YES,28.51,37.65,3,-2.69,6106,114.591502,124.191385,133.997612,140.219808,I,Above,Gable,0,5701,Wood,33.08141311,0,0,,,,1,1,,0.03,nav,1,1900,2,, 584,NJBF000069266,2 SIRACUSA TERR,Atlantic City,NJ,39.35945338,-74.44111612,COM1,3003,,45,ME,1900,1915,3401,2,3,28441.26195,28441.26195,3507,YES,34.48,44.94,1,1.89,6106,114.382321,124.01873,133.798218,140.129616,I,Above,Flat,0,NaN,Wood,39.70936894,0,0,,,,1,1,,0.03,nav,1,1900,2,, 585,NJBF000070550,2019 GRANT AVE,Atlantic City,NJ,39.36754787,-74.44211737,RES3B,3001,,33,ME,1900,1900,3301,2,1,3166.523164,3166.523164,3505,YES,20.87,26.77,3,-2.28,6106,114.263786,123.914689,133.690975,139.995288,I,Above,Flat,0,5701,Wood,23.82256008,0,0,,,,1,1,,0.03,nav,1,1900,2,, 586,NJBF000070486,1311 DREXEL AVE,Atlantic City,NJ,39.36734134,-74.43060293,RES3C,3003,,33,E,1910,1900,3305,2,1,3346.301672,3346.301672,3507,YES,24.91,31.98,1,0.48,6106,114.514269,124.126884,133.923701,140.181275,I,Above,Flat,0,NaN,Wood,28.44575062,0,0,,,,2,2,,0.03,nav,1,1910,2,, 587,NJBF000070614,908 KEENER AVE,Atlantic City,NJ,39.36778733,-74.44218013,RES3B,3001,,33,ME,1900,1900,3301,2,1,3870.477788,3870.477788,3505,YES,26.49,34.56,3,-1.63,6106,114.259619,123.911014,133.687128,139.990752,I,Above,Flat,0,5701,Wood,30.52195154,0,0,,,,1,1,,0.03,nav,1,1900,2,, 588,NJBF000067459,5 N SOVEREIGN AVE,Atlantic City,NJ,39.35355658,-74.45063378,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,874.430821,874.430821,3504,YES,35.28,41.99,-4,0,6106,114.248491,123.90921,133.673715,140.066803,I,Above,Gable,0,NaN,Wood,38.63718544,0,0,,,,1,1,,0.03,nav,1,1969,2,, 589,NJBF000065893,21 S LACLEDE PL,Atlantic City,NJ,39.34837553,-74.46005095,RES3A,3001,,18,NE,1920,1920,3301,2,1,2275.432851,2275.432851,3505,NO,25.29,36.99,3,0.19,6106,114.108474,123.795185,133.545773,139.996246,I,Above,Hip,0,5701,Wood,31.13917414,0,0,,,,1,1,,0.03,nav,1,1920,2,, 590,NJBF000068434,2727 ARCTIC AVE,Atlantic City,NJ,39.35674682,-74.44661183,RES3A,3001,738,NaN,NE,1969,0,3301,3,1,966.2570403,966.2570403,3505,YES,30.18,40.04,3,-2.42,6106,114.296343,123.947851,133.718521,140.082899,I,Above,Gable,0,5701,Wood,35.10756412,0,0,,,,1,1,,0.03,nav,1,1969,3,, 591,NJBF000070576,2011 GRANT AVE,Atlantic City,NJ,39.3676691,-74.44180066,RES3B,3001,,27,ME,1915,1915,3301,2,2,1068.908825,1068.908825,3505,YES,37.91,50.74,3,-0.37,6106,114.269199,123.919163,133.695963,139.998584,I,Above,Flat,0,5701,Wood,44.32799866,0,0,,,,1,1,,0.03,nav,1,1915,2,, 592,NJBF000068885,2718 FAIRMOUNT AVE,Atlantic City,NJ,39.35793003,-74.44689837,COM1,3003,,33,ME,1900,1900,3401,2,1,3450.840733,3450.840733,3507,YES,35.26,50.18,1,1.5,6106,114.275578,123.930033,133.700124,140.06098,I,Above,Flat,0,NaN,Wood,42.7215989,0,0,,,,1,1,,0.03,nav,1,1900,2,, 593,NJBF000070300,805 FISHER AVE,Atlantic City,NJ,39.36661791,-74.44267594,RES3B,3001,,33,ME,1900,1900,3301,2,1,1552.037848,1552.037848,3505,NO,29.13,43.26,3,2.51,6106,114.262635,123.914356,133.689917,140.000019,I,Above,Flat,0,5701,Wood,36.19519283,0,0,,,,1,1,,0.03,nav,1,1900,2,, 594,NJBF000070354,416 ATLANTIC AVE,Atlantic City,NJ,39.36682316,-74.41599567,RES3D,3004,100,NaN,E,1969,0,3303,3,1,505.8592283,505.8592283,3505,YES,44.69,56.81,3,2.24,6106,114.832225,124.399702,134.224327,140.415552,I,Above,Flat,0,NaN,Wood,50.75013717,0,0,,,,1,1,,0.03,nav,1,1969,3,, 595,NJBF000067753,8 N MORRIS AVE,Atlantic City,NJ,39.35436861,-74.44873793,RES3B,3001,,45,ME,1900,1900,3301,2,3,557.9085271,557.9085271,3504,NO,34.89,49.36,-4,0,6106,114.279617,123.934797,133.702235,140.084531,I,Above,Flat,0,NaN,Wood,42.12381602,0,0,,,,1,1,,0.03,nav,1,1900,2,, 596,NJBF000069740,600 PACIFIC AVE,Atlantic City,NJ,39.36355401,-74.41713554,RES3C,3004,,NaN,E,1969,0,3303,4,1,1946.101016,1946.101016,3507,NO,50.27,61.64,1,0.28,6106,114.847121,124.412879,134.235544,140.442609,I,Above,Gable,0,NaN,Wood,55.95638044,0,0,,,,1,1,,0.03,nav,1,1969,4,, 597,NJBF000068965,708 N HARRISBURG AVE,Atlantic City,NJ,39.35818209,-74.46310583,RES1,3001,,16,NE,1918,1918,3101,1,1,1182.023123,1182.023123,3505,NO,14.28,26.67,3,-0.82,6106,113.918629,123.634215,133.379407,139.795496,I,Above,Gable,0,5701,Wood,20.47740387,0,0,,,,1,1,,0.03,nav,1,1918,1,, 598,NJBF000072640,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37436014,-74.4181724,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6941.059151,6941.059151,3505,NO,17.31,26.32,3,3.29,6106,114.697804,124.281363,134.100337,140.277951,I,Above,Hip,0,NaN,Wood,21.81421115,0,0,,,,1,1,,0.03,nav,1,1969,1,, 599,NJBF000073070,1 BORGATA WAY,Atlantic City,NJ,39.37722504,-74.43746677,COM8,3003,80,NaN,ME,1969,0,3401,1,1,10337.15543,10337.15543,3507,NO,13.34,26.04,1,0.66,6112,114.252925,123.897572,133.678898,139.928327,I,Above,Flat,0,NaN,Wood,19.68832823,0,0,,,,1,1,,1,nav,1,1969,1,, 600,NJBF000072033,29 CLIPPER CT,Atlantic City,NJ,39.37236111,-74.41845336,RES3C,3001,,35,ME,1990,1990,3301,2,1,3555.125482,3555.125482,3505,NO,31.8,45.05,3,5.9,6106,114.714953,124.296981,134.115871,140.301277,I,Above,Hip,0,NaN,Wood,38.42428797,0,0,,,,1,1,,0.03,nav,1,1990,2,, 601,NJBF000069376,131 S OCEAN AVE RR,Atlantic City,NJ,39.35994131,-74.42583305,COM1,3001,,45,ME,1935,1935,3401,2,2,1254.891509,1254.891509,3507,YES,22.09,29.52,1,-0.09,6106,114.705353,124.291789,134.098198,140.359178,I,Above,Flat,0,NaN,Wood,25.8010789,0,0,,,,1,1,,0.03,nav,1,1935,2,, 602,NJBF000070765,1117 DREXEL AVE,Atlantic City,NJ,39.36835332,-74.42807996,RES1,3001,,33,NE,1900,1924,3103,2,1,2295.021468,2295.021468,3505,YES,39.16,52.8,3,3.53,6106,114.556429,124.162381,133.963662,140.206556,I,Above,Flat,0,5701,Wood,45.98146803,0,0,,,,1,1,,0.03,nav,1,1900,2,, 603,NJBF000070844,342 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36860897,-74.42783422,RES1,3001,,33,NE,1924,1900,3103,2,1,4119.856207,4119.856207,3505,YES,35.49,41.09,3,6.61,6106,114.558686,124.164196,133.965885,140.206797,I,Above,Gable,0,5701,Wood,38.29342439,0,0,,,,1,1,,0.03,nav,1,1924,2,, 604,NJBF000068199,,Atlantic City,NJ,39.3559832,-74.43505302,COM8,3003,,NaN,,1969,0,3408,11,1,477977.4606,477977.4606,3507,NO,142.14,148,1,0.2,6106,114.555927,124.165747,133.955791,140.27319,I,Above,Flat,0,NaN,Wood,145.0720457,0,0,,,,2,2,,0.03,nav,1,1969,11,, 605,NJBF000067632,37 S IOWA AVE,Atlantic City,NJ,39.35401653,-74.44474056,RES4,3003,,NaN,E,1969,0,3404,7,1,7321.588788,7321.588788,3507,NO,89.12,100.32,1,2.99,6106,114.370846,124.01093,133.784778,140.151942,I,Above,Flat,0,NaN,Wood,94.72132829,0,0,,,,2,2,,0.03,nav,1,1969,7,, 606,NJBF000067858,2825 ATLANTIC AVE,Atlantic City,NJ,39.35480494,-74.44689978,COM1,3003,643,NaN,ME,1969,0,3401,3,1,1950.726698,1950.726698,3507,NO,54.22,65.33,1,0.85,6106,114.314145,123.963399,133.733739,140.106872,I,Above,Flat,0,NaN,Wood,59.77541405,0,0,,,,1,1,,0.03,nav,1,1969,3,, 607,NJBF000065105,4501 ATLANTIC C6,Atlantic City,NJ,39.34615797,-74.46263614,RES3A,3001,,39,NE,1900,1900,3301,1,1,6428.985141,6428.985141,3505,NO,15.11,28.28,3,2.97,6106,114.080451,123.77276,133.519675,139.989166,I,Above,Flat,0,5701,Wood,21.69691046,0,0,,,,1,1,,0.03,nav,1,1900,1,, 608,NJBF000068631,39 N BELLEVUE AVE,Atlantic City,NJ,39.35728377,-74.44304214,RES3B,3001,,45,ME,1900,1900,3301,3,2,1614.540465,1614.540465,3505,YES,38.44,44.82,3,3.27,6106,114.367184,124.006851,133.783318,140.130973,I,Above,Flat,0,NaN,Wood,41.63400599,0,0,,,,1,1,,0.03,nav,1,1900,3,, 609,NJBF000072617,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37429318,-74.42001403,RES3C,3001,,NaN,ME,1969,0,3301,2,1,6793.111667,6793.111667,3505,NO,28.36,42.89,3,-1.72,6106,114.659439,124.248203,134.06356,140.249915,I,Above,Hip,0,NaN,Wood,35.62310779,0,0,,,,1,1,,0.03,nav,1,1969,2,, 610,NJBF000073443,4 SURF LANE,Atlantic City,NJ,39.3807495,-74.4049225,RES1,3001,,16,NE,1975,1975,3102,2,1,1521.513966,1521.513966,3507,YES,36.2,47.19,1,-0.92,6106,114.904623,124.459759,134.304152,140.398234,I,Above,Gable,0,5701,Wood,41.69731535,0,0,,,,1,1,,0.03,nav,1,1975,2,, 611,NJBF000073405,3 SEA SPRAY COURT,Atlantic City,NJ,39.38048154,-74.40574925,RES1,3001,,17,NE,1975,1975,3102,2,1,1746.557548,1746.557548,3507,YES,27.55,37.14,1,2.37,6106,114.89029,124.44721,134.289933,140.388903,I,Above,Flat,0,5701,Wood,32.34148528,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 612,NJBF000073424,15 OCEAN DRIVE WEST,Atlantic City,NJ,39.38061949,-74.408992,RES1,3001,,16,NE,1978,1978,3103,2,1,1594.183612,1594.183612,3505,NO,31.32,44.85,3,0.12,6106,114.820556,124.385832,134.221698,140.336114,I,Above,Gable,0,5701,Wood,38.0823233,0,0,,,,1,1,,0.03,nav,1,1978,2,, 613,NJBF000073519,4 OCEAN DRIVE EAST,Atlantic City,NJ,39.38131868,-74.40429133,RES1,3001,,16,NE,1975,1975,3102,2,1,1500.031638,1500.031638,3507,YES,27.41,33.27,1,1.32,6106,114.911436,124.465598,134.311157,140.400433,I,Above,Gable,0,5701,Wood,30.33975259,0,0,,,,1,1,,0.03,nav,1,1975,2,, 614,NJBF000073536,2 OCEAN DRIVE EAST,Atlantic City,NJ,39.38141874,-74.40443264,RES1,3001,,43,NE,1975,1975,3102,2,2,1445.322915,1445.322915,3507,NO,24.29,33.46,1,0.63,6106,114.90733,124.461943,134.307168,140.396857,I,Above,Gable,0,5701,Wood,28.87341587,0,0,,,,1,1,,0.03,nav,1,1975,2,, 615,NJBF000073448,9 SURF LANE,Atlantic City,NJ,39.38080956,-74.40428043,RES1,3001,,16,NE,1975,1975,3102,1,1,2000.807314,2000.807314,3507,NO,13.85,19.66,1,-0.77,6106,114.917414,124.471026,134.316765,140.407475,I,Above,Gable,0,5701,Wood,16.75398001,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 616,NJBF000073488,1 BAY COURT,Atlantic City,NJ,39.38109885,-74.40898983,RES1,3001,,16,NE,1974,1974,3103,2,1,1811.807886,1811.807886,3505,NO,37.32,42.74,3,3.77,6106,114.815188,124.380925,134.216639,140.329591,I,Above,Gable,0,5701,Wood,40.03153658,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 617,NJBF000073754,,Atlantic City,NJ,39.38294737,-74.40707927,RES1,3001,,NaN,NE,1969,0,3103,5,1,1265.817041,1265.817041,3505,NO,78.18,89.54,3,-0.44,6106,114.834628,124.397261,134.236363,140.33452,I,Above,Gable,0,5701,Wood,83.86017449,0,0,,,,1,1,,0.03,nav,1,1969,5,, 618,NJBF000073178,5207 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3786115,-74.4058745,RES1,3001,,16,NE,1975,1975,3102,1,1,1559.859327,1559.859327,3507,NO,13.48,27.91,1,2.72,6106,114.9089,124.464131,134.307127,140.412257,I,Above,Gable,0,5701,Wood,20.69681134,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 619,NJBF000073451,14 OCEAN DRIVE WEST,Atlantic City,NJ,39.38083478,-74.40978279,RES1,3001,,19,NE,1975,2018,3103,3,1,1316.032803,1316.032803,3505,NO,43.34,56.67,3,8.37,6106,114.801466,124.368988,134.203134,140.320703,I,Above,Gable,0,5701,Wood,50.0061653,0,1.2,,,,1,1,,0.03,nav,1,1975,3,, 620,NJBF000073410,5100 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3805005,-74.4029845,RES1,3001,,16,NE,1975,1975,3102,2,1,2087.098046,2087.098046,3507,NO,33.37,43.42,1,-0.14,6106,114.948074,124.49818,134.346773,140.431896,I,Above,Gable,0,5701,Wood,38.39122853,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 621,NJBF000073235,5118 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37917983,-74.40459451,RES1,3001,,19,NE,1975,1975,3102,2,1,2676.869282,2676.869282,3507,NO,31.16,44.8,1,2.04,6106,114.929286,124.481933,134.327474,140.424535,I,Above,Gable,0,5701,Wood,37.97826931,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 622,NJBF000073571,5213 HARBOR BEACH BLVD,Atlantic City,NJ,39.38167563,-74.40781294,RES1,3001,,17,NE,2001,2001,3103,2,1,1801.137382,1801.137382,3505,NO,28.92,43.2,3,-0.27,6110,114.833457,124.39675,134.234741,140.340261,I,Above,Hip,0,5701,Wood,36.06175017,0,1.1,,,,1,1,,0.35,nav,1,2001,2,, 623,NJBF000073580,4 SEASIDE RD,Atlantic City,NJ,39.38176113,-74.4036258,RES1,3001,,35,NE,1978,1978,3102,2,1,1898.107673,1898.107673,3507,NO,33.48,44.53,1,0.08,6106,114.920396,124.473378,134.320217,140.40489,I,Above,Gable,0,5701,Wood,39.00466222,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 624,NJBF000073553,5220 HARBOR BEACH BLVD,Atlantic City,NJ,39.38154878,-74.40850823,RES1,3001,,16,NE,1975,1975,3103,1,1,2002.753508,2002.753508,3505,NO,12.15,26.51,3,1.09,6110,114.820268,124.385203,134.221777,140.331043,I,Above,Hip,0,5701,Wood,19.33002475,0,0,,,,1,1,,0.35,nav,1,1975,1,, 625,NJBF000073237,31 OCEAN DRIVE WEST,Atlantic City,NJ,39.37919042,-74.40811245,RES1,3001,,16,NE,1975,1975,3103,2,1,1372.682945,1372.682945,3505,YES,33.82,40.14,3,6.46,6106,114.855249,124.416813,134.254953,140.369407,I,Above,Gable,0,5701,Wood,36.98224461,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 626,NJBF000073261,5119 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37943174,-74.40511202,RES1,3001,,16,NE,1975,1975,3102,2,1,1859.09702,1859.09702,3507,YES,29.58,39.85,1,-0.25,6106,114.915567,124.469782,134.314159,140.413065,I,Above,Gable,0,5701,Wood,34.71648337,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 627,NJBF000073322,5210 WATERVIEW DR,Atlantic City,NJ,39.3798177,-74.40733758,RES1,3001,,16,NE,1975,1975,3103,1,1,2131.930139,2131.930139,3505,NO,20.09,33.91,3,0.69,6106,114.864412,124.424653,134.264228,140.373003,I,Above,Gable,0,5701,Wood,27.00475849,0,0,,,,1,1,,0.03,nav,1,1975,1,, 628,NJBF000073498,2 BAY COURT,Atlantic City,NJ,39.38114589,-74.40867556,RES1,3001,,16,NE,1975,1975,3103,1,1,2039.93468,2039.93468,3505,NO,21.55,30.19,3,8.92,6106,114.821267,124.386246,134.222602,140.333896,I,Above,Gable,0,5701,Wood,25.87199222,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 629,NJBF000073220,5216 SEA SPRAY RD,Atlantic City,NJ,39.37907849,-74.407389,RES1,3001,,16,NE,1975,1975,3103,1,1,1450.50167,1450.50167,3505,NO,12.88,24.02,3,-1.16,6106,114.871734,124.431326,134.271011,140.382252,I,Above,Gable,0,5701,Wood,18.45288068,0,0,,,,1,1,,0.03,nav,1,1975,1,, 630,NJBF000073778,,Atlantic City,NJ,39.38309752,-74.40476156,RES3C,3001,,NaN,ME,1969,0,3301,1,1,10901.93127,10901.93127,3507,NO,11.52,25.99,1,-0.01,6106,114.881564,124.438619,134.282588,140.368984,I,Above,Gable,0,NaN,Wood,18.75284243,0,0,,,,1,1,,0.03,nav,1,1969,1,, 631,NJBF000073783,27 ROSS DRIVE EAST,Atlantic City,NJ,39.3831123,-74.39993189,RES3C,3001,,37,ME,1986,1986,3301,2,1,7580.684725,7580.684725,3507,NO,30.63,44.5,1,0.23,6106,114.982502,124.528023,134.382388,140.444586,I,Above,Gable,0,NaN,Wood,37.56761323,0,0,,,,1,1,,0.03,nav,1,1986,2,, 632,NJBF000073181,5202 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3786405,-74.405081,RES1,3001,,16,NE,1975,1975,3102,2,1,1657.555196,1657.555196,3507,NO,32.32,46.78,1,1.65,6106,114.925218,124.478483,134.323143,140.424223,I,Above,Gable,0,5701,Wood,39.54918826,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 633,NJBF000073617,5232 LAGOON BLVD,Atlantic City,NJ,39.38204123,-74.40936165,RES1,3001,,16,NE,1975,1975,3103,1,1,1913.794121,1913.794121,3505,NO,16.55,27.36,3,-0.1,6106,114.796775,124.364344,134.198963,140.310844,I,Above,Gable,0,5701,Wood,21.95766587,0,0,,,,1,1,,0.03,nav,1,1975,1,, 634,NJBF000073419,6 SEA SPRAY COURT,Atlantic City,NJ,39.38058526,-74.40515535,RES1,3001,,15,NE,1975,1975,3102,1,1,1944.832693,1944.832693,3507,NO,13.21,23.24,1,2.71,6106,114.901597,124.457142,134.301091,140.396815,I,Above,Gable,0,5701,Wood,18.22528319,0,0,,,,1,1,,0.03,nav,1,1975,1,, 635,NJBF000073706,,Atlantic City,NJ,39.38261433,-74.40585642,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2116.317244,2116.317244,3505,NO,12.74,19.81,3,-1.59,6106,114.864037,124.423326,134.265133,140.358324,I,Above,Flat,0,5701,Wood,16.27454805,0,0,,,,1,1,,0.03,nav,1,1969,1,, 636,NJBF000073846,6 HARBOR BEACH COVE,Atlantic City,NJ,39.3835341,-74.41067408,RES1,3001,,37,NE,2000,2000,3103,3,1,3281.159321,3281.159321,3505,NO,63.62,71.22,3,7.15,6106,114.752473,124.324697,134.156035,140.269591,I,Above,Gable,0,5701,Wood,67.42206868,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 637,NJBF000073654,,Atlantic City,NJ,39.3822885,-74.406185,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1239.413998,1239.413998,3505,NO,38.04,51.36,3,0.14,6106,114.860776,124.420573,134.261794,140.357556,I,Above,Gable,0,5701,Wood,44.69958295,0,0,,,,1,1,,0.03,nav,1,1969,2,, 638,NJBF000073470,16 SEASIDE RD,Atlantic City,NJ,39.3809764,-74.40275024,RES1,3001,,16,NE,1975,1975,3102,2,1,2123.777245,2123.777245,3507,YES,29.47,44.2,1,1.05,6106,114.947612,124.497652,134.346606,140.429168,I,Above,Hip,0,5701,Wood,36.83454934,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 639,NJBF000073378,5203 WATERVIEW DR,Atlantic City,NJ,39.38026404,-74.40667839,RES1,3001,,16,NE,2002,2002,3103,2,1,2161.206511,2161.206511,3505,NO,27.19,35.21,3,4.61,6106,114.873238,124.432268,134.273096,140.377296,I,Above,Gable,0,5701,Wood,31.20031944,0,0,,,,1,1,,0.03,nav,1,2002,2,, 640,NJBF000073737,28 HORIZON LANE,Atlantic City,NJ,39.38281606,-74.41109681,RES1,3001,,37,NE,1987,1987,3103,2,1,2951.165276,2951.165276,3505,YES,34.25,49.25,3,2.65,6106,114.75157,124.324277,134.155002,140.272753,I,Above,Gable,0,5701,Wood,41.75055347,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 641,NJBF000065191,2 N NEWTON AVE,Atlantic City,NJ,39.34636495,-74.46643854,RES3A,3001,,17,NE,1920,1920,3301,1,1,1942.406707,1942.406707,3505,NO,18.97,27.79,3,5.48,6106,113.994346,123.702164,133.443916,139.925407,I,Above,Flat,0,5701,Wood,23.38266905,0,0,,,,1,1,,0.03,nav,1,1920,1,, 642,NJBF000067319,3309 ATLANTIC AVE,Atlantic City,NJ,39.3530635,-74.45129435,COM1,3003,738,NaN,ME,1969,0,3401,3,1,22628.09899,22628.09899,3507,YES,46.27,61.08,1,0.94,6106,114.240303,123.902583,133.666087,140.063766,I,Above,Flat,0,NaN,Wood,53.67583644,0,0,,,,1,1,,0.03,nav,1,1969,3,, 643,NJBF000065758,49 N TALLAHASSEE AVE,Atlantic City,NJ,39.34801621,-74.46511474,RES3A,3001,,17,NE,1920,1920,3301,2,1,1329.001599,1329.001599,3505,NO,29.03,41.46,3,3.64,6106,114.002094,123.707984,133.451524,139.921047,I,Above,Hip,0,5701,Wood,35.24732064,0,0,,,,1,1,,0.03,nav,1,1920,2,, 644,NJBF000068410,124 N MORRIS AVE,Atlantic City,NJ,39.35665834,-74.44993607,RES3A,3001,,33,NE,1925,1925,3301,2,1,723.3216015,723.3216015,3505,YES,34.94,47.22,3,3.61,6106,114.225161,123.888597,133.653962,140.031796,I,Above,Hip,0,5701,Wood,41.08058552,0,0,,,,1,1,,0.03,nav,1,1925,2,, 645,NJBF000071394,1658 W RIVERSIDE DR,Atlantic City,NJ,39.370463,-74.4519915,RES1,3001,,17,NE,1930,1930,3101,3,1,1617.898158,1617.898158,3505,YES,48.03,57.12,3,2.17,6106,114.015732,123.704212,133.46295,139.790527,I,Above,Gable,0,5701,Wood,52.57445748,0,0,,,,1,1,,0.03,nav,1,1930,3,, 646,NJBF000072037,1520 N ARKANSAS AVE,Atlantic City,NJ,39.37237216,-74.44878668,RES1,3001,,16,NE,1956,1956,3102,1,1,712.9139905,712.9139905,3505,NO,17.51,28.57,3,4.27,6106,114.063446,123.742245,133.505597,139.814661,I,Above,Gable,0,5701,Wood,23.039768,0,0,,,,1,1,,0.03,nav,1,1956,1,, 647,NJBF000068266,3900 FILBERT AVE,Atlantic City,NJ,39.35618767,-74.46147956,RES1,3001,,16,NE,1900,1900,3102,1,1,979.6925798,979.6925798,3505,NO,8.55,14.49,3,-2.82,6106,113.978797,123.685017,133.432938,139.853285,I,Above,Gable,0,5701,Wood,11.51884489,0,0,,,,1,1,,0.03,nav,1,1900,1,, 648,NJBF000068284,2504 ATLANTIC AVE,Atlantic City,NJ,39.35622719,-74.44196117,COM1,3003,100,NaN,ME,1969,1920,3401,2,1,1836.229126,1836.229126,3507,YES,38.81,48.74,1,1.99,6106,114.403645,124.037727,133.816055,140.163118,I,Above,Flat,0,NaN,Wood,43.77220847,0,0,,,,1,1,,0.03,nav,1,1969,2,, 649,NJBF000068252,2510 ATLANTIC AVE,Atlantic City,NJ,39.3561485,-74.442155,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1536.984182,1536.984182,3507,YES,20.97,30.14,1,-0.44,6106,114.400408,124.03504,133.813049,140.161231,I,Above,Flat,0,NaN,Wood,25.55442012,0,0,,,,1,1,,0.03,nav,1,1969,2,, 650,NJBF000068246,2512 ATLANTIC AVE,Atlantic City,NJ,39.35613051,-74.44221506,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1672.087744,1672.087744,3507,YES,28.66,40.84,1,1.07,6106,114.399331,124.034143,133.812054,140.160559,I,Above,Flat,0,NaN,Wood,34.75137794,0,0,,,,1,1,,0.03,nav,1,1969,2,, 651,NJBF000067687,100 S TEXAS AVE #A,Atlantic City,NJ,39.35417149,-74.44211367,RES3A,3004,,45,NE,1900,1900,3301,2,2,1742.609427,1742.609427,3505,YES,30.85,41.2,3,-2.23,6106,114.425874,124.056885,133.835023,140.190352,I,Above,Flat,0,5701,Wood,36.02418217,0,0,,,,1,1,,0.03,nav,1,1900,2,, 652,NJBF000072334,19 SCHOONER CT,Atlantic City,NJ,39.37332506,-74.4170291,RES3C,3001,,35,ME,1990,1990,3301,2,1,5478.790976,5478.790976,3505,NO,26.53,33.38,3,-2.69,6106,114.734014,124.31313,134.13462,140.310208,I,Above,Hip,0,NaN,Wood,29.95505923,0,0,,,,1,1,,0.03,nav,1,1990,2,, 653,NJBF000067436,401 N RICHMOND AVE,Atlantic City,NJ,39.3534895,-74.46361718,RES1,3001,,17,NE,1959,1959,3102,1,1,1592.942796,1592.942796,3505,NO,13.5,23.39,3,-1.43,6106,113.965493,123.675603,133.420849,139.860225,I,Above,Hip,0,5701,Wood,18.44984093,0,0,,,,1,1,,0.03,nav,1,1959,1,, 654,NJBF000066450,12 S ELBERON AVE,Atlantic City,NJ,39.34978029,-74.45751327,RES3A,3001,,17,NE,1900,1900,3301,2,1,2062.348224,2062.348224,3504,NO,37.61,46.01,-4,0,6106,114.146056,123.825708,133.579951,140.015062,I,Above,Hip,0,5701,Wood,41.80851738,0,0,,,,1,1,,0.03,nav,1,1900,2,, 655,NJBF000069508,1329 PACIFIC AVE,Atlantic City,NJ,39.36104582,-74.42675935,COM1,3003,29,NaN,ME,1969,0,3401,11,1,38451.84974,38451.84974,3507,YES,191.9,203.37,1,-0.58,6106,114.672074,124.263269,134.067927,140.329651,I,Above,Flat,0,NaN,Wood,197.6355138,0,0,,,,1,1,,0.03,nav,1,1969,11,, 656,NJBF000071868,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37185842,-74.43871423,RES3E,3001,,NaN,ME,1969,0,3301,2,1,4242.964188,4242.964188,3505,NO,34.49,42.66,3,2.24,6106,114.287136,123.931229,133.712233,139.986769,I,Above,Flat,0,NaN,Wood,38.57743654,0,0,,,,1,1,,0.03,nav,1,1969,2,, 657,NJBF000071902,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37194394,-74.43845757,RES3E,3001,,NaN,ME,1969,0,3301,1,1,4643.543736,4643.543736,3505,NO,11.22,22.24,3,-2.67,6106,114.291663,123.934996,133.71643,139.989642,I,Above,Flat,0,NaN,Wood,16.73303539,0,0,,,,1,1,,0.03,nav,1,1969,1,, 658,NJBF000071917,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37199452,-74.43817562,RES3E,3001,,NaN,ME,1969,0,3301,2,1,7051.045069,7051.045069,3505,NO,25.57,31.42,3,1.7,6106,114.297152,123.939607,133.721528,139.993447,I,Above,Flat,0,NaN,Wood,28.49634122,0,0,,,,1,1,,0.03,nav,1,1969,2,, 659,NJBF000071781,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37161898,-74.43790486,RES3E,3001,,NaN,ME,1969,0,3301,2,1,2846.307701,2846.307701,3505,NO,30.71,43.43,3,-2.88,6106,114.307324,123.948513,133.731037,140.003316,I,Above,Flat,0,NaN,Wood,37.06895166,0,0,,,,1,1,,0.03,nav,1,1969,2,, 660,NJBF000071693,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.3713038,-74.4379943,RES3E,3001,,NaN,ME,1969,0,3301,1,1,3289.808497,3289.808497,3505,NO,15.9,27.37,3,1.59,6106,114.309043,123.950206,133.732667,140.006488,I,Above,Flat,0,NaN,Wood,21.63293811,0,0,,,,1,1,,0.03,nav,1,1969,1,, 661,NJBF000071704,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37133962,-74.43871998,RES3E,3001,,NaN,ME,1969,0,3301,2,1,4734.340502,4734.340502,3505,NO,42.41,50.59,3,8.59,6106,114.292981,123.936577,133.717732,139.994262,I,Above,Gable,0,NaN,Wood,46.49979534,0,0,,,,1,1,,0.03,nav,1,1969,2,, 662,NJBF000068992,125 S DR MARTIN LUTHER K,Atlantic City,NJ,39.35828537,-74.42987958,COM1,3003,101,NaN,ME,1969,0,3401,2,1,28549.40628,28549.40628,3507,NO,36.22,44.66,1,2.11,6106,114.638842,124.23548,134.034592,140.32021,I,Above,Flat,0,NaN,Wood,40.43815579,0,0,,,,1,1,,0.03,nav,1,1969,2,, 663,NJBF000071982,1421 N ARKANSAS AVE,Atlantic City,NJ,39.37219469,-74.44694746,RES1,3001,,17,NE,1900,1900,3102,2,1,1124.751642,1124.751642,3505,NO,26.65,36.51,3,5.2,6106,114.105355,123.777602,133.54414,139.847647,I,Above,Gable,0,5701,Wood,31.58021399,0,0,,,,1,1,,0.03,nav,1,1900,2,, 664,NJBF000072623,1514 N OHIO AVE,Atlantic City,NJ,39.374313,-74.44749,RES1,3001,,17,NE,1995,1995,3102,2,1,923.0776118,923.0776118,3505,NO,40.48,46.64,3,5.27,6106,114.069488,123.745329,133.510114,139.806886,I,Above,Gable,0,5701,Wood,43.55946562,0,0,,,,1,1,,0.03,nav,1,1995,2,, 665,NJBF000067788,2919 ATLANTIC AVE,Atlantic City,NJ,39.35450865,-74.44774581,COM1,3003,560,NaN,ME,1969,0,3401,2,1,19909.52515,19909.52515,3507,YES,33.31,39.15,1,0.73,6106,114.299444,123.951251,133.720255,140.097992,I,Above,Flat,0,NaN,Wood,36.22682351,0,0,,,,1,1,,0.03,nav,1,1969,2,, 666,NJBF000067256,301 N ANNAPOLIS AVE,Atlantic City,NJ,39.35278208,-74.46172096,RES1,3001,,17,NE,1900,1900,3102,1,1,2714.72763,2714.72763,3505,NO,15.02,27.29,3,0.03,6106,114.015956,123.717417,133.46543,139.90205,I,Above,Gable,0,5701,Wood,21.15696754,0,0,,,,1,1,,0.03,nav,1,1900,1,, 667,NJBF000072184,457 N CONNECTICUT AVE,Atlantic City,NJ,39.37281658,-74.42224755,RES1,3001,,45,NE,1900,1900,3102,2,2,1403.595082,1403.595082,3505,YES,41.93,49.42,3,8.84,6106,114.628926,124.222552,134.033923,140.235381,I,Above,Hip,0,5701,Wood,45.67635197,0,0,,,,1,1,,0.03,nav,1,1900,2,, 668,NJBF000066869,136 N WINDSOR AVE,Atlantic City,NJ,39.35107768,-74.46145806,RES3A,3001,,45,NE,1900,1900,3301,2,2,798.1539234,798.1539234,3505,NO,35.1,48.97,3,4.71,6106,114.043218,123.740582,133.4891,139.932548,I,Above,Flat,0,5701,Wood,42.03639366,0,0,,,,1,1,,0.03,nav,1,1900,2,, 669,NJBF000068894,2901 SUNSET AVE,Atlantic City,NJ,39.35796091,-74.44953661,RES3A,3001,,17,NE,1925,1925,3301,2,1,1114.722612,1114.722612,3507,NO,37.09,51.49,1,-0.79,6106,114.217819,123.881883,133.647731,140.018737,I,Above,Gable,0,5701,Wood,44.29084608,0,0,,,,1,1,,0.03,nav,1,1925,2,, 670,NJBF000072420,607 SEWELL AVE,Atlantic City,NJ,39.37359362,-74.42341435,RES1,3001,,17,NE,1900,1900,3102,2,1,1210.640694,1210.640694,3505,NO,27.59,37.47,3,5.72,6106,114.595106,124.19305,134.001968,140.206084,I,Above,Flat,0,5701,Wood,32.52745329,0,0,,,,1,1,,0.03,nav,1,1900,2,, 671,NJBF000068331,3915 FILBERT AVE,Atlantic City,NJ,39.35639292,-74.46209116,RES1,3001,,17,NE,1985,1985,3101,2,1,1262.212737,1262.212737,3505,NO,29.26,39.72,3,6,6106,113.962871,123.671787,133.418788,139.840088,I,Above,Gable,0,5701,Wood,34.49000203,0,0,,,,1,1,,0.03,nav,1,1985,2,, 672,NJBF000068390,2720 ARCTIC AVE,Atlantic City,NJ,39.35659584,-74.44618353,COM1,3003,,17,ME,1900,1900,3401,2,1,801.2858077,801.2858077,3507,NO,38.26,43.62,1,1.35,6106,114.307502,123.95722,133.728596,140.091835,I,Above,Gable,0,NaN,Wood,40.93899632,0,0,,,,1,1,,0.03,nav,1,1900,2,, 673,NJBF000066524,4221 WINCHESTER AVE,Atlantic City,NJ,39.34998557,-74.46215418,RES3A,3001,,45,NE,1900,1900,3301,2,2,1697.348099,1697.348099,3505,NO,24.21,31.45,3,-0.1,6106,114.041833,123.739872,133.487459,139.938173,I,Above,Hip,0,5701,Wood,27.82789073,0,0,,,,1,1,,0.03,nav,1,1900,2,, 674,NJBF000065720,1 N BARTRAM AVE,Atlantic City,NJ,39.34791284,-74.46267903,RES3A,3001,,18,NE,1900,1900,3301,2,1,1838.192496,1838.192496,3505,NO,20.51,32.56,3,-2.04,6106,114.056851,123.752912,133.499803,139.961635,I,Above,Hip,0,5701,Wood,26.53526503,0,0,,,,1,1,,0.03,nav,1,1900,2,, 675,NJBF000067532,112 S TEXAS AVE,Atlantic City,NJ,39.35374935,-74.44195231,RES3A,3004,,45,NE,1951,1951,3301,2,2,1190.423227,1190.423227,3505,NO,30.12,41.29,3,5.53,6106,114.434654,124.064327,133.842736,140.198904,I,Above,Hip,0,5701,Wood,35.70291661,0,0,,,,1,1,,0.03,nav,1,1951,2,, 676,NJBF000070221,2015 BLAINE AVE,Atlantic City,NJ,39.36629509,-74.44132086,RES3B,3001,,45,ME,1900,1900,3301,2,4,1056.58315,1056.58315,3505,YES,34.69,41.05,3,6.32,6106,114.295754,123.94244,133.720408,140.026482,I,Above,Hip,0,5701,Wood,37.87017809,0,0,,,,1,1,,0.03,nav,1,1900,2,, 677,NJBF000070649,1724 LINCOLN AVE,Atlantic City,NJ,39.3679117,-74.43763513,RES1,3001,,17,NE,1963,1963,3102,1,1,1855.949638,1855.949638,3505,NO,19.13,25.17,3,5.6,6106,114.356292,123.992514,133.776538,140.061713,I,Above,Gable,0,5701,Wood,22.14931189,0,0,,,,1,1,,0.03,nav,1,1963,1,, 678,NJBF000072165,745 SEWELL AVE,Atlantic City,NJ,39.372762,-74.425421,RES1,3001,,17,NE,1900,1900,3102,2,1,1041.081102,1041.081102,3505,NO,29.74,44.35,3,4.17,6106,114.561888,124.164922,133.970204,140.186093,I,Above,Gable,0,5701,Wood,37.04239193,0,0,,,,1,1,,0.03,nav,1,1900,2,, 679,NJBF000070114,602 N MICHIGAN AVE,Atlantic City,NJ,39.36588118,-74.4404332,RES3B,3001,,17,ME,1925,1925,3301,3,1,1152.751649,1152.751649,3505,YES,43.79,53.66,3,0.06,6106,114.319845,123.962988,133.742585,140.04673,I,Above,Hip,0,NaN,Wood,48.72502552,0,0,,,,1,1,,0.03,nav,1,1925,3,, 680,NJBF000069946,407 N OHIO AVE,Atlantic City,NJ,39.36514647,-74.43790068,RES3B,3001,,17,ME,1900,1900,3301,2,1,953.5109226,953.5109226,3505,NO,35.08,49.68,3,3.9,6106,114.38324,124.016875,133.801034,140.097669,I,Above,Hip,0,NaN,Wood,42.37625205,0,0,,,,1,1,,0.03,nav,1,1900,2,, 681,NJBF000072164,712 SEWELL AVE,Atlantic City,NJ,39.37276139,-74.42454363,RES1,3001,,27,NE,1900,1900,3102,2,2,2185.12929,2185.12929,3505,YES,28.68,42.76,3,4.28,6106,114.580619,124.181014,133.987974,140.199967,I,Above,Flat,0,5701,Wood,35.72256404,0,0,,,,1,1,,0.03,nav,1,1900,2,, 682,NJBF000072071,,Atlantic City,NJ,39.37249911,-74.42565464,RES1,3001,,NaN,NE,2007,0,3102,2,1,2990.350868,2990.350868,3505,NO,38.14,49.08,3,-0.09,6106,114.559931,124.16338,133.968284,140.186111,I,Above,Hip,0,5701,Wood,43.61173694,0,0,,,,1,1,,0.03,nav,1,2007,2,, 683,NJBF000072708,,Atlantic City,NJ,39.37461783,-74.42387887,RES1,3001,,NaN,NE,1969,0,3102,2,1,1103.037624,1103.037624,3505,NO,45.34,52.96,3,8.72,6106,114.573421,124.173835,133.981572,140.184299,I,Above,Gable,0,5701,Wood,49.14900887,0,0,,,,1,1,,0.03,nav,1,1969,2,, 684,NJBF000065845,53 N ABERDEEN PL,Atlantic City,NJ,39.34826339,-74.46438583,RES3A,3001,,18,NE,1900,1900,3301,2,1,1863.81967,1863.81967,3505,NO,44.14,58.66,3,6.23,6106,114.014918,123.718407,133.46294,139.928941,I,Above,Hip,0,5701,Wood,51.40071018,0,0,,,,1,1,,0.03,nav,1,1900,2,, 685,NJBF000070324,3 S METROPOLITAN AVE,Atlantic City,NJ,39.366716,-74.4158625,RES3D,3004,,33,E,1900,1910,3303,2,1,515.027385,515.027385,3505,YES,40.26,48.44,3,4.88,6106,114.836321,124.403255,134.228152,140.419057,I,Above,Flat,0,NaN,Wood,44.35117475,0,0,,,,1,1,,0.03,nav,1,1900,2,, 686,NJBF000070338,1 S METROPOLITAN AVE,Atlantic City,NJ,39.36675139,-74.41588858,RES3D,3004,,33,E,1900,1900,3303,2,1,522.3925656,522.3925656,3505,YES,27.48,37.17,3,4.22,6106,114.835353,124.402414,134.227256,140.41818,I,Above,Flat,0,NaN,Wood,32.32421156,0,0,,,,1,1,,0.03,nav,1,1900,2,, 687,NJBF000067522,3827 SOUTH BLVD,Atlantic City,NJ,39.35372843,-74.45899967,RES1,3001,,17,NE,1912,1912,3102,1,1,1543.569198,1543.569198,3505,NO,18.25,25.96,3,7.43,6106,114.063696,123.756269,133.508126,139.931418,I,Above,Hip,0,5701,Wood,22.10227451,0,0,,,,1,1,,0.03,nav,1,1912,1,, 688,NJBF000072622,557 N NEW JERSEY AVE,Atlantic City,NJ,39.37431016,-74.42489505,IND3,3001,511,NaN,E,1969,0,3401,3,1,1208.937377,1208.937377,3507,NO,47.01,57.38,1,0.3,6106,114.555288,124.158404,133.964271,140.17254,I,Above,Gable,0,NaN,Wood,52.19750838,0,0,,,,1,1,,0.03,nav,1,1969,3,, 689,NJBF000071122,1048 MONROE AVE,Atlantic City,NJ,39.36949454,-74.44203123,RES3A,3001,,17,NE,1958,1958,3301,1,1,1409.055786,1409.055786,3505,NO,19.12,27.51,3,6.11,6106,114.242894,123.895671,133.671564,139.967954,I,Above,Hip,0,5701,Wood,23.31695887,0,0,,,,1,1,,0.03,nav,1,1958,1,, 690,NJBF000067861,2519 PACIFIC AVE,Atlantic City,NJ,39.35481338,-74.4418456,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,1273.630688,1273.630688,3505,YES,53.33,63.05,3,-2.74,6106,114.423678,124.054892,133.833462,140.185268,I,Above,Gable,0,5701,Wood,58.18981085,0,0,,,,1,1,,0.03,nav,1,1969,3,, 691,NJBF000066495,27 TRENTON TERR,Atlantic City,NJ,39.34990576,-74.45572602,RES3A,3001,,45,NE,1920,1920,3301,2,2,2204.675112,2204.675112,3504,YES,29.24,35.18,-4,0,6106,114.183501,123.856567,133.613435,140.041258,I,Above,Flat,0,5701,Wood,32.2090212,0,0,,,,1,1,,0.03,nav,1,1920,2,, 692,NJBF000068996,104 N FLORIDA AVE,Atlantic City,NJ,39.3582907,-74.44325188,RES3B,3001,,45,ME,1900,1900,3301,3,2,658.5855177,658.5855177,3505,YES,58.4,71.03,3,2.08,6106,114.350266,123.992311,133.768343,140.113035,I,Above,Gable,0,NaN,Wood,64.71328329,0,0,,,,1,1,,0.03,nav,1,1900,3,, 693,NJBF000071091,1049 N MICHIGAN AVE,Atlantic City,NJ,39.36937249,-74.44230066,RES3A,3001,,17,NE,1958,1958,3301,1,1,1884.42707,1884.42707,3505,NO,14.5,23.64,3,3.46,6106,114.238488,123.892052,133.667512,139.965408,I,Above,Gable,0,5701,Wood,19.06718397,0,0,,,,1,1,,0.03,nav,1,1958,1,, 694,NJBF000068981,2507 ARCTIC AVE RR,Atlantic City,NJ,39.3582462,-74.44361911,RES3B,3001,100,NaN,ME,1969,0,3301,1,1,3833.76589,3833.76589,3505,NO,15.21,20.51,3,-1.54,6106,114.342863,123.986131,133.761559,140.107936,I,Above,Flat,0,NaN,Wood,17.86240512,0,0,,,,1,1,,0.03,nav,1,1969,1,, 695,NJBF000069007,106 N FLORIDA AVE,Atlantic City,NJ,39.35834562,-74.44331905,RES3B,3001,,45,ME,1900,1900,3301,3,2,1445.433898,1445.433898,3505,YES,38.78,44.05,3,4.73,6106,114.34814,123.99051,133.766425,140.111182,I,Above,Gable,0,NaN,Wood,41.41374029,0,0,,,,1,1,,0.03,nav,1,1900,3,, 696,NJBF000072024,1801 N MISSISSIPPI AVE,Atlantic City,NJ,39.37232314,-74.45433949,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3513.854062,3513.854062,3505,NO,41.41,56.06,3,7.54,6106,113.943379,123.641858,133.39602,139.723085,I,Above,Gable,0,NaN,Wood,48.73710793,0,0,,,,1,1,,0.03,nav,1,1969,2,, 697,NJBF000071990,1801 N MISSISSIPPI AVE,Atlantic City,NJ,39.37220603,-74.45394119,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3298.710304,3298.710304,3505,NO,24.76,37.94,3,6.53,6106,113.953372,123.650326,133.405186,139.731532,I,Above,Gable,0,NaN,Wood,31.35135573,0,0,,,,1,1,,0.03,nav,1,1969,1,, 698,NJBF000071991,1800 N MISSOURI AVE,Atlantic City,NJ,39.37220713,-74.45333844,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3200.389209,3200.389209,3505,NO,13.17,27.16,3,0.19,6106,113.966479,123.661266,133.417113,139.741591,I,Above,Gable,0,NaN,Wood,20.16162523,0,0,,,,1,1,,0.03,nav,1,1969,1,, 699,NJBF000072069,1800 N MISSOURI AVE,Atlantic City,NJ,39.37249725,-74.45374757,RES3C,3001,,NaN,ME,1969,0,3301,1,1,5050.338299,5050.338299,3505,NO,16.8,29.78,3,-0.54,6106,113.954258,123.650745,133.4058,139.730315,I,Above,Flat,0,NaN,Wood,23.28845475,0,0,,,,1,1,,0.03,nav,1,1969,1,, 700,NJBF000072157,1800 N MISSOURI AVE,Atlantic City,NJ,39.37274523,-74.45419855,RES3C,3001,,NaN,ME,1969,0,3301,2,1,1858.960468,1858.960468,3505,NO,29.96,36.78,3,-2.05,6106,113.941627,123.639925,133.394138,139.718977,I,Above,Flat,0,NaN,Wood,33.36780108,0,0,,,,1,1,,0.03,nav,1,1969,2,, 701,NJBF000068502,3803 FILBERT AVE,Atlantic City,NJ,39.35695212,-74.46107416,RES1,3001,,27,NE,1900,1900,3101,1,2,1664.183721,1664.183721,3505,NO,19.24,28.74,3,7.02,6106,113.978272,123.684117,133.432499,139.848101,I,Above,Gable,0,5701,Wood,23.9907506,0,0,,,,1,1,,0.03,nav,1,1900,1,, 702,NJBF000071013,1800 MCKINLEY AVE,Atlantic City,NJ,39.36914299,-74.43944017,RES1,3001,,15,NE,1950,1950,3102,1,1,1326.544357,1326.544357,3505,NO,24.33,32.95,3,7.93,6106,114.302951,123.946611,133.727133,140.01486,I,Above,Hip,0,5701,Wood,28.64276153,0,0,,,,1,1,,0.03,nav,1,1950,1,, 703,NJBF000067692,445 N RICHMOND AVE,Atlantic City,NJ,39.35418324,-74.46416033,RES1,3001,,17,NE,1957,1957,3102,1,1,1864.183812,1864.183812,3505,NO,20.47,25.69,3,5.58,6106,113.944912,123.658331,133.402723,139.840521,I,Above,Gable,0,5701,Wood,23.07723287,0,0,,,,1,1,,0.03,nav,1,1957,1,, 704,NJBF000065072,102 S BARTRAM AVE,Atlantic City,NJ,39.34606569,-74.46167512,RES3A,3001,,45,NE,1920,1920,3301,2,2,1527.29062,1527.29062,3504,NO,35.41,47.08,-4,0,6106,114.102698,123.791041,133.539284,140.005703,I,Above,Flat,0,5701,Wood,41.2443147,0,0,,,,1,1,,0.03,nav,1,1920,2,, 705,NJBF000065536,46 N MONTGOMERY AVE,Atlantic City,NJ,39.34737665,-74.46649104,RES3A,3001,,18,NE,1900,1900,3301,2,1,1288.076987,1288.076987,3505,YES,38.46,47.28,3,5.24,6106,113.980116,123.690206,133.431893,139.908799,I,Above,Hip,0,5701,Wood,42.86732768,0,0,,,,1,1,,0.03,nav,1,1900,2,, 706,NJBF000067623,321 N ELBERON AVE,Atlantic City,NJ,39.35400372,-74.46039539,RES1,3001,,16,NE,1900,1900,3102,1,1,956.0321482,956.0321482,3505,NO,21.76,28.96,3,6.1,6106,114.029703,123.72813,133.477924,139.904675,I,Above,Flat,0,5701,Wood,25.35763058,0,0,,,,1,1,,0.03,nav,1,1900,1,, 707,NJBF000067246,42 N HARTFORD AVE,Atlantic City,NJ,39.35272949,-74.45460033,RES3B,3001,,17,E,1915,1915,3303,2,1,1400.793799,1400.793799,3507,YES,29.03,38.87,1,1.82,6106,114.172395,123.846448,133.60492,140.016702,I,Above,Flat,0,NaN,Wood,33.95037875,0,0,,,,1,1,,0.03,nav,1,1915,2,, 708,NJBF000068503,2715 ARCTIC AVE,Atlantic City,NJ,39.3569538,-74.44627504,RES3A,3001,737,NaN,NE,1969,0,3301,1,1,5858.693372,5858.693372,3505,NO,18.56,32.06,3,5.42,6106,114.301111,123.951747,133.722945,140.085152,I,Above,Flat,0,5701,Wood,25.30995546,0,0,,,,1,1,,0.03,nav,1,1969,1,, 709,NJBF000070548,349 N OCEAN AVE,Atlantic City,NJ,39.36754266,-74.43078057,RES3C,3003,,33,E,1900,1900,3305,2,1,3380.022254,3380.022254,3507,YES,21.19,32.81,1,-0.3,6106,114.508066,124.121509,133.91796,140.175597,I,Above,Gable,0,NaN,Wood,26.99992099,0,0,,,,2,2,,0.03,nav,1,1900,2,, 710,NJBF000072121,420 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37264879,-74.42147861,RES1,3001,,45,NE,1900,1900,3102,1,2,1655.63743,1655.63743,3505,NO,15.8,29.51,3,-1.8,6106,114.647249,124.238417,134.051322,140.249828,I,Above,Flat,0,5701,Wood,22.6507185,0,0,,,,1,1,,0.03,nav,1,1900,1,, 711,NJBF000066796,117 N LACLEDE PL,Atlantic City,NJ,39.3508071,-74.46200817,RES3A,3001,,17,NE,1910,1910,3301,1,1,1168.230924,1168.230924,3505,NO,16.43,28.93,3,0.02,6106,114.034599,123.733609,133.481363,139.927879,I,Above,Hip,0,5701,Wood,22.67721739,0,0,,,,1,1,,0.03,nav,1,1910,1,, 712,NJBF000068124,23 N STENTON PL #A,Atlantic City,NJ,39.35572958,-74.4467046,RES3B,3001,,17,ME,1900,1900,3301,3,1,992.6761428,992.6761428,3504,YES,38.79,47.51,-4,0,6106,114.306896,123.957036,133.727635,140.096369,I,Above,Hip,0,NaN,Wood,43.14980704,0,0,,,,1,1,,0.03,nav,1,1900,3,, 713,NJBF000072771,701 N MARYLAND AVE,Atlantic City,NJ,39.37486869,-74.42845396,IND3,3001,511,NaN,E,1969,0,3401,1,1,1681.679039,1681.679039,3507,NO,16.77,22.82,1,1.38,6106,114.472867,124.087294,133.886206,140.107945,I,Above,Flat,0,NaN,Wood,19.79213713,0,0,,,,1,1,,0.03,nav,1,1969,1,, 714,NJBF000068689,14 N GEORGIA AVE RR #B,Atlantic City,NJ,39.35742027,-74.44138176,RES3B,3001,,45,ME,1900,1900,3301,3,2,745.4580522,745.4580522,3505,YES,57.92,65.11,3,5.32,6106,114.401465,124.035526,133.814747,140.154893,I,Above,Flat,0,NaN,Wood,61.51113628,0,0,,,,1,1,,0.03,nav,1,1900,3,, 715,NJBF000071633,512 DREXEL AVE,Atlantic City,NJ,39.371132,-74.4204805,RES1,3001,,27,NE,1900,1900,3102,2,2,1700.349124,1700.349124,3505,YES,19.97,25.24,3,-1.29,6106,114.686147,124.272561,134.087747,140.286645,I,Above,Hip,0,5701,Wood,22.60576997,0,0,,,,1,1,,0.03,nav,1,1900,2,, 716,NJBF000069953,18 N MARYLAND AVE,Atlantic City,NJ,39.36518065,-74.42235949,COM1,3003,,NaN,ME,1900,1900,3401,2,1,2976.252704,2976.252704,3507,NO,39.25,53.66,1,2.64,6106,114.716347,124.300276,134.112799,140.340059,I,Above,Flat,0,NaN,Wood,46.45476198,0,0,,,,1,1,,0.03,nav,1,1900,2,, 717,NJBF000072110,1625 BEACH AVE,Atlantic City,NJ,39.37261269,-74.45061188,RES1,3001,,17,NE,1985,1985,3102,2,1,1024.517872,1024.517872,3505,NO,30.82,39.49,3,2.7,6106,114.021093,123.706502,133.466696,139.780799,I,Above,Gable,0,5701,Wood,35.15521041,0,0,,,,1,1,,0.03,nav,1,1985,2,, 718,NJBF000069888,1953 BACHARACH BLVD,Atlantic City,NJ,39.36478494,-74.43924054,IND2,3001,959,NaN,ME,1969,0,3401,1,1,6255.550053,6255.550053,3507,NO,15.91,28.24,1,0.18,6106,114.35861,123.996288,133.77818,140.081681,I,Above,Flat,0,NaN,Wood,22.07200834,0,0,,,,1,1,,0.03,nav,1,1969,1,, 719,NJBF000070588,518 GRAMMERCY PL,Atlantic City,NJ,39.3677008,-74.41858052,RES3D,3004,,27,E,2008,2008,3303,3,2,1698.418553,1698.418553,3505,NO,43.75,52.53,3,1.07,6106,114.766871,124.343154,134.162623,140.363656,I,Above,Flat,0,NaN,Wood,48.13783376,0,0,,,,1,1,,0.03,nav,1,2008,3,, 720,NJBF000069876,1300 BALTIC AVE,Atlantic City,NJ,39.36473592,-74.42954685,RES3D,3004,29,NaN,E,1969,0,3303,3,1,7458.719202,7458.719202,3505,NO,44.27,51.41,3,4.43,6106,114.567863,124.173562,133.972747,140.234761,I,Above,Flat,0,NaN,Wood,47.84030655,0,0,,,,1,1,,0.03,nav,1,1969,3,, 721,NJBF000069933,1300 BALTIC AVE,Atlantic City,NJ,39.365063,-74.42874,RES3D,3004,29,NaN,E,1969,0,3303,3,1,7431.309388,7431.309388,3505,NO,46.57,58.76,3,0.39,6106,114.581266,124.18486,133.985479,140.242723,I,Above,Flat,0,NaN,Wood,52.66857555,0,0,,,,1,1,,0.03,nav,1,1969,3,, 722,NJBF000069996,32 BORN TERR,Atlantic City,NJ,39.36538577,-74.42295167,COM1,3003,,33,ME,1910,1910,3401,2,1,1917.797393,1917.797393,3507,YES,27.15,39.22,1,-0.17,6106,114.701242,124.28728,134.098656,140.328053,I,Above,Flat,0,NaN,Wood,33.18278106,0,0,,,,1,1,,0.03,nav,1,1910,2,, 723,NJBF000067237,3001 PACIFIC AVE,Atlantic City,NJ,39.35269649,-74.447303,COM1,3003,280,NaN,ME,1969,0,3401,2,1,6535.491012,6535.491012,3507,NO,38.46,48.94,1,2.77,6106,114.331754,123.978696,133.748459,140.131405,I,Above,Flat,0,NaN,Wood,43.69868416,0,0,,,,1,1,,0.03,nav,1,1969,2,, 724,NJBF000071047,716 GREEN ST,Atlantic City,NJ,39.36922395,-74.43704968,RES1,3001,,16,NE,1900,1900,3101,1,1,1171.794452,1171.794452,3505,NO,14.55,28.02,3,-0.21,6106,114.353539,123.98935,133.774082,140.051967,I,Above,Gable,0,5701,Wood,21.28643877,0,0,,,,1,1,,0.03,nav,1,1900,1,, 725,NJBF000072015,436 N CONNECTICUT AVE,Atlantic City,NJ,39.37229314,-74.4223875,RES1,3001,,17,NE,1930,1930,3102,2,1,1363.501655,1363.501655,3505,NO,27.16,37.24,3,-2.93,6106,114.632033,124.225465,134.036695,140.240536,I,Above,Hip,0,5701,Wood,32.19937579,0,0,,,,1,1,,0.03,nav,1,1930,2,, 726,NJBF000069992,,Atlantic City,NJ,39.36535609,-74.43955804,RES3B,3001,,NaN,ME,1969,0,3301,2,1,848.7948927,848.7948927,3505,NO,41.18,50.33,3,7.65,6106,114.344974,123.984475,133.765702,140.068329,I,Above,Flat,0,NaN,Wood,45.75372796,0,0,,,,1,1,,0.03,nav,1,1969,2,, 727,NJBF000066631,111 N RALEIGH AVE,Atlantic City,NJ,39.35030548,-74.46252867,RES3A,3001,,27,NE,1922,1922,3301,2,2,1319.849179,1319.849179,3505,YES,41.73,56.61,3,8.16,6106,114.029553,123.729664,133.47671,139.927238,I,Above,Flat,0,5701,Wood,49.17119963,0,0,,,,1,1,,0.03,nav,1,1922,2,, 728,NJBF000070623,600 BALTIC AVE,Atlantic City,NJ,39.36781752,-74.42010047,RES3D,3004,,NaN,E,1969,0,3303,4,1,3356.076699,3356.076699,3505,NO,75.36,83.19,3,3.27,6106,114.733158,124.314088,134.130597,140.338525,I,Above,Gable,0,NaN,Wood,79.27551977,0,0,,,,1,1,,0.03,nav,1,1969,4,, 729,NJBF000070585,111 N NEW JERSEY AVE,Atlantic City,NJ,39.36769058,-74.42043924,RES3D,3004,,33,E,1910,1910,3303,3,1,1176.714556,1176.714556,3505,NO,56.83,66.36,3,7.34,6106,114.72744,124.309201,134.125074,140.335026,I,Above,Flat,0,NaN,Wood,61.59424131,0,0,,,,1,1,,0.03,nav,1,1910,3,, 730,NJBF000069660,1501 ATLANTIC AVE,Atlantic City,NJ,39.36256122,-74.43079307,COM1,3003,732,NaN,ME,1969,0,3401,2,1,60007.12926,60007.12926,3507,YES,39.7,47.87,1,1.06,6106,114.567214,124.173726,133.970916,140.246103,I,Above,Flat,0,NaN,Wood,43.78570002,0,0,,,,1,1,,0.03,nav,1,1969,2,, 731,NJBF000069564,1501 ATLANTIC AVE,Atlantic City,NJ,39.36165131,-74.43059833,COM1,3003,732,NaN,ME,1969,0,3401,3,1,24432.83891,24432.83891,3507,YES,43.34,56.08,1,2.06,6106,114.582393,124.186875,133.984507,140.261964,I,Above,Flat,0,NaN,Wood,49.7113164,0,0,,,,1,1,,0.03,nav,1,1969,3,, 732,NJBF000068618,20 N FLORIDA AVE,Atlantic City,NJ,39.35725069,-74.44262118,RES3B,3001,,45,ME,1900,1900,3301,4,2,1624.692284,1624.692284,3505,YES,44.61,58.53,3,-2.52,6106,114.376713,124.014841,133.792009,140.138025,I,Above,Hip,0,NaN,Wood,51.56957256,0,0,,,,1,1,,0.03,nav,1,1900,4,, 733,NJBF000072939,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37575885,-74.42054452,COM8,3001,,NaN,ME,1969,0,3401,2,1,1516.988357,1516.988357,3505,NO,28.06,36.54,3,-1.13,6106,114.631332,124.223193,134.037103,140.221048,I,Above,Gable,0,NaN,Wood,32.29807397,0,0,,,,1,1,,0.03,nav,1,1969,2,, 734,NJBF000072913,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37561082,-74.42062772,COM8,3001,,NaN,ME,1969,0,3401,2,1,632.1218669,632.1218669,3505,NO,22.41,32.07,3,0.61,6106,114.63126,124.223207,134.036996,140.221807,I,Above,Gable,0,NaN,Wood,27.24297993,0,0,,,,1,1,,0.03,nav,1,1969,2,, 735,NJBF000073010,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37645583,-74.41996012,COM8,3001,,NaN,ME,1969,0,3401,2,1,977.2963641,977.2963641,3505,NO,29.57,41.71,3,-0.87,6106,114.635807,124.226701,134.04156,140.220551,I,Above,Gable,0,NaN,Wood,35.63743049,0,0,,,,1,1,,0.03,nav,1,1969,2,, 736,NJBF000073066,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37714571,-74.42018126,COM8,3001,,NaN,ME,1969,0,3401,1,1,2767.387232,2767.387232,3505,NO,14.55,28.77,3,1.31,6106,114.623255,124.215464,134.029676,140.207393,I,Above,Flat,0,NaN,Wood,21.65719884,0,0,,,,1,1,,0.03,nav,1,1969,1,, 737,NJBF000066304,41 S ELBERON AVE,Atlantic City,NJ,39.34944121,-74.45677245,RES3A,3001,,17,NE,1915,1915,3301,2,1,1521.4035,1521.4035,3504,NO,29.69,39.39,-4,0,6106,114.166573,123.842731,133.598058,140.031811,I,Above,Hip,0,5701,Wood,34.53635771,0,0,,,,1,1,,0.03,nav,1,1915,2,, 738,NJBF000071066,133 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36927811,-74.41825644,RES3D,3004,,17,E,2005,2005,3303,2,1,1039.644341,1039.644341,3505,NO,38.17,44.57,3,6.9,6106,114.755173,124.332684,134.15255,140.346966,I,Above,Flat,0,NaN,Wood,41.37274737,0,0,,,,1,1,,0.03,nav,1,2005,2,, 739,NJBF000064867,38 S MONTGOMERY AVE,Atlantic City,NJ,39.34552511,-74.46505334,RES3B,3001,,17,ME,1930,1930,3301,2,1,1715.285627,1715.285627,3504,NO,23.03,33.67,-4,0,6106,114.035674,123.736215,133.479806,139.960578,I,Above,Gable,0,NaN,Wood,28.34816108,0,0,,,,1,1,,0.03,nav,1,1930,2,, 740,NJBF000070305,300 ATLANTIC AVE,Atlantic City,NJ,39.36663045,-74.41493677,RES3D,3004,29,NaN,E,1969,1984,3303,19,1,2890.203174,2890.203174,3505,NO,215.03,227.51,3,4.04,6106,114.856998,124.421135,134.247862,140.434454,I,Above,Flat,0,NaN,Wood,221.2731633,0,0,,,,1,1,,0.03,nav,1,1969,19,, 741,NJBF000070271,300 ATLANTIC AVE,Atlantic City,NJ,39.36650689,-74.41465704,RES3D,3004,29,NaN,E,1969,1984,3303,19,1,5975.451348,5975.451348,3505,NO,287.65,299.3,3,-2.7,6106,114.864402,124.42755,134.254841,140.440423,I,Above,Flat,0,NaN,Wood,293.4729792,0,0,,,,1,1,,0.03,nav,1,1969,19,, 742,NJBF000070377,300 ATLANTIC AVE,Atlantic City,NJ,39.36688788,-74.41411359,RES3D,3004,29,NaN,E,1969,1984,3303,19,1,5437.231991,5437.231991,3505,NO,220.96,227.58,3,7.9,6106,114.871384,124.433552,134.261879,140.44358,I,Above,Flat,0,NaN,Wood,224.2718321,0,0,,,,1,1,,0.03,nav,1,1969,19,, 743,NJBF000070466,300 ATLANTIC AVE,Atlantic City,NJ,39.36723738,-74.41448331,RES3E,3003,29,NaN,E,1969,1984,3305,19,1,42414.01957,42414.01957,3507,NO,207.59,219.12,1,2.24,6106,114.859411,124.423153,134.250714,140.433172,I,Above,Flat,0,NaN,Wood,213.3582675,0,0,,,,2,2,,0.03,nav,1,1969,19,, 744,NJBF000069538,1 S NEW YORK AVE,Atlantic City,NJ,39.36141009,-74.42901993,COM1,3003,101,NaN,ME,1969,0,3401,8,1,6692.80866,6692.80866,3507,YES,129.91,143.79,1,-0.12,6106,114.619187,124.21819,134.018697,140.289745,I,Above,Flat,0,NaN,Wood,136.8489383,0,0,,,,1,1,,0.03,nav,1,1969,8,, 745,NJBF000070308,410 ATLANTIC AVE RR #A,Atlantic City,NJ,39.366639,-74.415652,RES3D,3004,,17,E,1900,1900,3303,2,1,1195.623234,1195.623234,3505,YES,40.86,51.97,3,6.78,6106,114.841717,124.407926,134.233246,140.423349,I,Above,Flat,0,NaN,Wood,46.41219191,0,0,,,,1,1,,0.03,nav,1,1900,2,, 746,NJBF000067411,4202 PORTER AVE,Atlantic City,NJ,39.353381,-74.4630245,RES1,3001,,17,NE,1939,1939,3102,2,1,866.711521,866.711521,3505,NO,29.98,44.37,3,-0.3,6106,113.979847,123.687447,133.433542,139.871587,I,Above,Hip,0,5701,Wood,37.17984433,0,0,,,,1,1,,0.03,nav,1,1939,2,, 747,NJBF000068995,206 N IOWA AVE,Atlantic City,NJ,39.35829011,-74.44811134,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1405.936425,1405.936425,3505,NO,33.86,48.38,3,5.57,6106,114.244805,123.904203,133.672293,140.036474,I,Above,Flat,0,5701,Wood,41.12027942,0,0,,,,1,1,,0.03,nav,1,1969,2,, 748,NJBF000067002,4309 SOUTH BLVD,Atlantic City,NJ,39.35165463,-74.46316602,RES1,3001,,16,NE,1900,1900,3102,1,1,1061.782729,1061.782729,3505,NO,24.58,38.56,3,5.7,6106,113.998471,123.703575,133.449639,139.896078,I,Above,Flat,0,5701,Wood,31.56937307,0,0,,,,1,1,,0.03,nav,1,1900,1,, 749,NJBF000070262,1930 BLAINE AVE,Atlantic City,NJ,39.36647494,-74.43998384,RES3B,3001,,16,ME,1900,1900,3301,1,1,1189.135693,1189.135693,3505,NO,17.36,25.56,3,6.63,6106,114.322522,123.964882,133.745124,140.045202,I,Above,Flat,0,NaN,Wood,21.45989942,0,0,,,,1,1,,0.03,nav,1,1900,1,, 750,NJBF000071360,800 N NEW YORK AVE,Atlantic City,NJ,39.37035,-74.4355965,IND3,3003,100,NaN,E,1969,0,3401,1,1,12279.80379,12279.80379,3507,YES,16.13,21.76,1,-0.86,6106,114.371709,124.004014,133.79105,140.058841,I,Above,Flat,0,NaN,Wood,18.94923161,0,0,,,,1,1,,0.03,nav,1,1969,1,, 751,NJBF000067887,448 N DOVER AVE,Atlantic City,NJ,39.35491364,-74.46293168,RES1,3001,,17,NE,1950,1950,3102,2,1,1932.904542,1932.904542,3505,YES,34.86,43.45,3,5.99,6106,113.962751,123.672568,133.418596,139.849279,I,Above,Hip,0,5701,Wood,39.15401297,0,0,,,,1,1,,0.03,nav,1,1950,2,, 752,NJBF000071022,1418 SEWELL AVE,Atlantic City,NJ,39.36916196,-74.43348451,RES3C,3001,,17,ME,1900,1900,3301,1,1,1218.994016,1218.994016,3505,NO,17.45,31.15,3,2.44,6106,114.430977,124.055087,133.846251,140.109662,I,Above,Flat,0,NaN,Wood,24.30077103,0,0,,,,1,1,,0.03,nav,1,1900,1,, 753,NJBF000067866,410 HARBOR RD,Atlantic City,NJ,39.35482894,-74.46211726,RES1,3001,,16,NE,1925,1925,3102,1,1,1255.556795,1255.556795,3505,NO,12.95,21.66,3,-1.22,6106,113.981682,123.688178,133.435385,139.863934,I,Above,Hip,0,5701,Wood,17.30249158,0,0,,,,1,1,,0.03,nav,1,1925,1,, 754,NJBF000068424,2812 DENNY ST,Atlantic City,NJ,39.35671878,-74.44753622,RES3A,3001,,27,NE,1900,1900,3301,2,2,1434.12817,1434.12817,3505,NO,30.18,41.94,3,1.17,6106,114.276612,123.931408,133.700592,140.068779,I,Above,Hip,0,5701,Wood,36.05593508,0,0,,,,1,1,,0.03,nav,1,1900,2,, 755,NJBF000070575,1815 LINCOLN AVE,Atlantic City,NJ,39.36766801,-74.43903859,RES1,3001,,33,NE,1900,1920,3102,2,1,5485.615705,5485.615705,3505,YES,31.77,46.67,3,-2.5,6106,114.328872,123.969493,133.751103,140.042857,I,Above,Flat,0,5701,Wood,39.21898894,0,0,,,,1,1,,0.03,nav,1,1900,2,, 756,NJBF000070500,28 N CONGRESS AVE,Atlantic City,NJ,39.36737398,-74.41817912,RES3D,3004,,17,E,1900,1900,3303,2,1,1986.008346,1986.008346,3505,YES,41.57,56.27,3,3.87,6106,114.779295,124.353933,134.174227,140.374365,I,Above,Gable,0,NaN,Wood,48.91930759,0,0,,,,1,1,,0.03,nav,1,1900,2,, 757,NJBF000071880,403 N CONNECTICUT AVE,Atlantic City,NJ,39.37189783,-74.42163186,RES1,3001,,45,NE,1900,1900,3102,1,2,1514.603687,1514.603687,3505,NO,13.94,27.04,3,-1.62,6106,114.652702,124.243438,134.05622,140.257921,I,Above,Hip,0,5701,Wood,20.49053535,0,0,,,,1,1,,0.03,nav,1,1900,1,, 758,NJBF000071696,449 N MARYLAND AVE,Atlantic City,NJ,39.37132028,-74.42610846,RES1,3001,,17,NE,1900,1900,3102,1,1,1665.38926,1665.38926,3505,NO,12.85,26.46,3,-0.24,6106,114.563922,124.167405,133.971742,140.195624,I,Above,Flat,0,5701,Wood,19.65630347,0,0,,,,1,1,,0.03,nav,1,1900,1,, 759,NJBF000071159,1633 READING AVE,Atlantic City,NJ,39.36962044,-74.43734924,RES1,3001,,16,NE,1900,1900,3101,1,1,1218.524764,1218.524764,3505,NO,21.3,32.55,3,7.43,6106,114.342479,123.97972,133.763815,140.041419,I,Above,Gable,0,5701,Wood,26.92388825,0,0,,,,1,1,,0.03,nav,1,1900,1,, 760,NJBF000070802,1922 MCKINLEY AVE,Atlantic City,NJ,39.36848342,-74.44109567,RES3B,3001,,17,ME,1920,1920,3301,2,1,710.283096,710.283096,3505,YES,36.85,41.85,3,6.17,6106,114.274901,123.923399,133.701204,139.997938,I,Above,Hip,0,5701,Wood,39.35218684,0,0,,,,1,1,,0.03,nav,1,1920,2,, 761,NJBF000067381,111 S CALIFORNIA AVE,Atlantic City,NJ,39.35328613,-74.44256608,RES4,3003,29,NaN,E,1969,1960,3404,3,1,7970.161886,7970.161886,3507,YES,56.99,67.41,1,-0.9,6106,114.427148,124.058146,133.835546,140.196086,I,Above,Flat,0,NaN,Wood,62.19789203,0,0,,,,2,2,,0.03,nav,1,1969,3,, 762,NJBF000065974,4436 WINCHESTER AVE,Atlantic City,NJ,39.34858681,-74.4641386,RES3A,3001,,17,NE,1920,1920,3301,2,1,1764.738205,1764.738205,3505,NO,34.45,45.05,3,0.86,6106,114.016179,123.719329,133.464196,139.927895,I,Above,Hip,0,5701,Wood,39.74949013,0,0,,,,1,1,,0.03,nav,1,1920,2,, 763,NJBF000067775,424 N DOVER AVE,Atlantic City,NJ,39.35447221,-74.46251985,RES1,3001,,17,NE,1900,1900,3102,1,1,810.5224054,810.5224054,3505,NO,21.04,27.37,3,4.66,6106,113.97729,123.684765,133.431443,139.862889,I,Above,Gable,0,5701,Wood,24.20481427,0,0,,,,1,1,,0.03,nav,1,1900,1,, 764,NJBF000065668,26 S RALEIGH AVE,Atlantic City,NJ,39.34776823,-74.4610617,RES3A,3001,,17,NE,1892,1892,3301,2,1,1292.489194,1292.489194,3505,NO,32.12,45.1,3,6.79,6106,114.094146,123.783581,133.532732,139.989507,I,Above,Gable,0,5701,Wood,38.61119447,0,0,,,,1,1,,0.03,nav,1,1892,2,, 765,NJBF000071074,120 N RHODE ISLAND AVE,Atlantic City,NJ,39.36932654,-74.41719436,RES3D,3004,,28,E,2000,2000,3303,2,2,2037.279167,2037.279167,3505,NO,22.13,27.19,3,-2.3,6106,114.777165,124.351663,134.173602,140.362761,I,Above,Flat,0,NaN,Wood,24.66173996,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 766,NJBF000066437,3801 ATLANTIC AVE,Atlantic City,NJ,39.34975305,-74.45524721,RES3A,3001,,NaN,NE,1969,0,3301,1,1,5216.280251,5216.280251,3504,NO,15.96,28.72,-4,0,6106,114.195909,123.866858,133.624435,140.051045,I,Above,Flat,0,5701,Wood,22.3364237,0,0,,,,1,1,,0.03,nav,1,1969,1,, 767,NJBF000068178,448 N HARRISBURG AVE,Atlantic City,NJ,39.35590267,-74.46124657,RES1,3001,,27,NE,1920,1920,3102,2,2,1296.056252,1296.056252,3505,YES,29.34,39.06,3,1.06,6106,113.987427,123.692291,133.440595,139.861509,I,Above,Flat,0,5701,Wood,34.19817378,0,0,,,,1,1,,0.03,nav,1,1920,2,, 768,NJBF000069264,161 S TENNESSEE AVE,Atlantic City,NJ,39.35942529,-74.42608073,COM1,3001,100,NaN,ME,1969,0,3401,3,30,2136.673546,2136.673546,3507,YES,59,67.87,1,1.7,6106,114.706344,124.292696,134.098664,140.36252,I,Above,Flat,0,NaN,Wood,63.43756702,0,0,,,,1,1,,0.03,nav,1,1969,3,, 769,NJBF000069200,142 S OCEAN AVE,Atlantic City,NJ,39.35914806,-74.42572119,COM1,3001,100,NaN,ME,1969,0,3401,3,1,10826.35775,10826.35775,3507,YES,49.8,55.01,1,-0.69,6106,114.71744,124.302177,134.108811,140.371847,I,Above,Flat,0,NaN,Wood,52.40475382,0,0,,,,1,1,,0.03,nav,1,1969,3,, 770,NJBF000067671,3015 ATLANTIC AVE,Atlantic City,NJ,39.35412276,-74.44864844,COM1,3003,101,NaN,ME,1969,0,3401,3,1,22861.15675,22861.15675,3507,NO,40.7,51.32,1,2.87,6106,114.284643,123.939062,133.706654,140.089559,I,Above,Flat,0,NaN,Wood,46.00928205,0,0,,,,1,1,,0.03,nav,1,1969,3,, 771,NJBF000066283,4020 VENTNOR AVE,Atlantic City,NJ,39.34936083,-74.45869061,COM1,3004,,17,ME,1900,1900,3401,2,1,1516.572153,1516.572153,3507,YES,39.12,50.63,1,0.34,6106,114.125635,123.809011,133.561548,140.002804,I,Above,Hip,0,NaN,Wood,44.87634226,0,0,,,,1,1,,0.03,nav,1,1900,2,, 772,NJBF000070171,509 N OHIO AVE,Atlantic City,NJ,39.36608182,-74.4384997,RES3B,3001,,17,ME,1910,1910,3301,2,1,1244.019148,1244.019148,3505,NO,32.95,38.93,3,1.68,6106,114.359209,123.99607,133.778989,140.074569,I,Above,Hip,0,NaN,Wood,35.93748874,0,0,,,,1,1,,0.03,nav,1,1910,2,, 773,NJBF000070126,2028 BLAINE AVE,Atlantic City,NJ,39.36593945,-74.44123551,RES3B,3001,,17,ME,1950,1950,3301,1,1,1731.001388,1731.001388,3505,NO,22.19,35.15,3,7.83,6106,114.301802,123.947755,133.725952,140.033065,I,Above,Hip,0,NaN,Wood,28.670954,0,0,,,,1,1,,0.03,nav,1,1950,1,, 774,NJBF000068909,2917 SUNSET AVE,Atlantic City,NJ,39.35799723,-74.45013344,RES3A,3001,,17,NE,1900,1900,3301,2,1,1002.220228,1002.220228,3507,NO,28.15,38.2,1,-0.91,6106,114.204406,123.870703,133.635599,140.008725,I,Above,Flat,0,5701,Wood,33.17814097,0,0,,,,1,1,,0.03,nav,1,1900,2,, 775,NJBF000067157,101 N TRENTON AVE,Atlantic City,NJ,39.35235729,-74.45696528,RES3A,3001,,45,NE,1924,1924,3301,2,2,2111.608557,2111.608557,3505,YES,24.57,37.34,3,1.28,6106,114.125409,123.807767,133.562727,139.984823,I,Above,Hip,0,5701,Wood,30.95691164,0,0,,,,1,1,,0.03,nav,1,1924,2,, 776,NJBF000066864,132 N WINDSOR AVE,Atlantic City,NJ,39.35106776,-74.46130468,RES3A,3001,,17,NE,1922,1922,3301,2,1,1034.251626,1034.251626,3505,NO,27.03,34.53,3,3.9,6106,114.046697,123.743446,133.492182,139.935159,I,Above,Gable,0,5701,Wood,30.78311706,0,0,,,,1,1,,0.03,nav,1,1922,2,, 777,NJBF000068915,2919 SUNSET AVE,Atlantic City,NJ,39.35800273,-74.45022237,RES3A,3001,,45,NE,1925,1925,3301,2,2,1160.035418,1160.035418,3507,NO,23.5,33.95,1,-0.73,6106,114.202395,123.869027,133.633781,140.00722,I,Above,Gable,0,5701,Wood,28.72227528,0,0,,,,1,1,,0.03,nav,1,1925,2,, 778,NJBF000068906,2921 SUNSET AVE,Atlantic City,NJ,39.3579885,-74.4503185,RES3A,3001,,17,NE,1900,1900,3301,2,1,911.5452656,911.5452656,3507,NO,33.85,43.75,1,1.41,6106,114.200489,123.867449,133.632053,140.005916,I,Above,Flat,0,5701,Wood,38.80098467,0,0,,,,1,1,,0.03,nav,1,1900,2,, 779,NJBF000068533,4019 CROSSAN AVE,Atlantic City,NJ,39.35703761,-74.46505884,RES1,3001,,17,NE,1962,1962,3101,1,1,1228.21847,1228.21847,3505,NO,9.64,16.71,3,-0.96,6106,113.889795,123.611318,133.353955,139.780967,I,Above,Gable,0,5701,Wood,13.17624855,0,0,,,,1,1,,0.03,nav,1,1962,1,, 780,NJBF000068202,2414 TRENWITH TERR,Atlantic City,NJ,39.35599001,-74.44079556,COM1,3003,,33,ME,1900,1900,3401,2,1,10067.4072,10067.4072,3507,YES,23.27,33.67,1,-0.46,6106,114.431799,124.061389,133.841669,140.184599,I,Above,Flat,0,NaN,Wood,28.46923639,0,0,,,,1,1,,0.03,nav,1,1900,2,, 781,NJBF000067565,110 S TEXAS AVE,Atlantic City,NJ,39.35384018,-74.44192978,RES3A,3004,,45,NE,1900,1900,3301,3,3,1174.516416,1174.516416,3505,YES,32.8,47.28,3,-0.92,6106,114.433993,124.063754,133.842199,140.197939,I,Above,Hip,0,5701,Wood,40.03827148,0,0,,,,1,1,,0.03,nav,1,1900,3,, 782,NJBF000065347,27 N NEWTON AVE,Atlantic City,NJ,39.34680663,-74.4663177,RES3A,3001,,17,NE,1900,1915,3301,2,1,1588.720986,1588.720986,3505,NO,26.15,32.59,3,3.92,6106,113.991279,123.699521,133.441441,139.920474,I,Above,Gable,0,5701,Wood,29.36950646,0,0,,,,1,1,,0.03,nav,1,1900,2,, 783,NJBF000072738,608 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37474617,-74.42296768,RES1,3001,,17,NE,2000,2000,3102,2,1,1377.980462,1377.980462,3505,NO,33.09,45.18,3,-0.68,6106,114.591367,124.189226,133.99869,140.196927,I,Above,Hip,0,5701,Wood,39.13437135,0,0,,,,1,1,,0.03,nav,1,2000,2,, 784,NJBF000070790,644 GREEN ST,Atlantic City,NJ,39.368436,-74.4365195,RES1,3001,,16,NE,1962,1962,3101,1,1,1109.615187,1109.615187,3505,NO,15.47,24.01,3,0.71,6106,114.374173,124.007326,133.793203,140.071875,I,Above,Gable,0,5701,Wood,19.7410553,0,0,,,,1,1,,0.03,nav,1,1962,1,, 785,NJBF000066849,128 N WINDSOR AVE,Atlantic City,NJ,39.35100984,-74.46124726,RES3A,3001,,17,NE,1900,1900,3301,2,1,822.5547581,822.5547581,3505,NO,32.08,43.72,3,-0.68,6106,114.048703,123.745118,133.49394,139.936981,I,Above,Gable,0,5701,Wood,37.90022535,0,0,,,,1,1,,0.03,nav,1,1900,2,, 786,NJBF000072242,553 N DELAWARE AVE,Atlantic City,NJ,39.3730112,-74.42561939,RES1,3001,,16,NE,1900,1900,3102,1,1,1317.668578,1317.668578,3505,NO,19.38,33.56,3,0.27,6106,114.554785,124.15869,133.963529,140.179439,I,Above,Gable,0,5701,Wood,26.47045262,0,0,,,,1,1,,0.03,nav,1,1900,1,, 787,NJBF000068229,106 N MORRIS AVE,Atlantic City,NJ,39.35608087,-74.44962609,RES3A,3001,,45,NE,1920,1920,3301,2,2,1329.158402,1329.158402,3505,NO,39.14,53.07,3,5.88,6106,114.239036,123.900386,133.666298,140.045266,I,Above,Hip,0,5701,Wood,46.10799936,0,0,,,,1,1,,0.03,nav,1,1920,2,, 788,NJBF000068256,108 N MORRIS AVE,Atlantic City,NJ,39.35615429,-74.44965573,RES3A,3001,,17,NE,1900,1900,3301,2,1,1467.293599,1467.293599,3505,NO,25.51,31.43,3,2.22,6106,114.23748,123.899061,133.664919,140.043709,I,Above,Hip,0,5701,Wood,28.4709037,0,0,,,,1,1,,0.03,nav,1,1900,2,, 789,NJBF000070793,651 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36845332,-74.43688773,RES1,3001,,16,NE,1900,1900,3101,1,1,1097.523202,1097.523202,3505,NO,16.87,21.97,3,0.19,6106,114.366046,124.000433,133.78565,140.065761,I,Above,Flat,0,5701,Wood,19.41934019,0,0,,,,1,1,,0.03,nav,1,1900,1,, 790,NJBF000068922,116 N TEXAS AVE,Atlantic City,NJ,39.3580176,-74.44469566,RES3A,3001,,17,NE,1900,1900,3301,2,1,957.1706657,957.1706657,3505,YES,20.87,32.59,3,-0.5,6106,114.322302,123.969022,133.742696,140.09436,I,Above,Hip,0,5701,Wood,26.72881575,0,0,,,,1,1,,0.03,nav,1,1900,2,, 791,NJBF000070029,514 N MICHIGAN AVE,Atlantic City,NJ,39.36554965,-74.44021098,RES3B,3001,,45,ME,1900,1900,3301,2,2,1109.049965,1109.049965,3505,NO,37.99,47.07,3,6.99,6106,114.328565,123.970532,133.750586,140.055108,I,Above,Hip,0,NaN,Wood,42.52998366,0,0,,,,1,1,,0.03,nav,1,1900,2,, 792,NJBF000066115,37 N DELANCY PL,Atlantic City,NJ,39.3489429,-74.46237136,RES3A,3001,,45,NE,1900,1900,3301,2,2,1296.485658,1296.485658,3505,NO,25.48,39.61,3,-2.87,6106,114.05039,123.747274,133.494587,139.950735,I,Above,Hip,0,5701,Wood,32.54414365,0,0,,,,1,1,,0.03,nav,1,1900,2,, 793,NJBF000068778,109 N CALIFORNIA RR,Atlantic City,NJ,39.3576065,-74.4453175,RES3A,3001,,33,NE,1900,1900,3301,2,1,542.6924166,542.6924166,3505,YES,32.39,44.11,3,0.2,6106,114.313852,123.962125,133.73482,140.090608,I,Above,Gable,0,5701,Wood,38.25052347,0,0,,,,1,1,,0.03,nav,1,1900,2,, 794,NJBF000067547,3420 WINCHESTER AVE,Atlantic City,NJ,39.35379121,-74.45329324,RES3B,3001,,45,E,1925,1925,3303,2,2,2658.04908,2658.04908,3507,YES,25.07,39.67,1,0.04,6106,114.187609,123.858632,133.619025,140.021451,I,Above,Flat,0,NaN,Wood,32.37066053,0,0,,,,1,1,,0.03,nav,1,1925,2,, 795,NJBF000068511,7 N FLORIDA AVE,Atlantic City,NJ,39.35696829,-74.44199778,COM1,3003,100,NaN,ME,1969,0,3401,4,1,1806.960633,1806.960633,3507,YES,59.42,72.48,1,-0.46,6106,114.393694,124.02916,133.807383,140.151835,I,Above,Hip,0,NaN,Wood,65.9494076,0,0,,,,1,1,,0.03,nav,1,1969,4,, 796,NJBF000068286,2601 ATLANTIC AVE,Atlantic City,NJ,39.356232,-74.4434485,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2522.681306,2522.681306,3507,NO,17.39,28.22,1,0.09,6106,114.371342,124.010686,133.786553,140.1399,I,Above,Flat,0,NaN,Wood,22.80306366,0,0,,,,1,1,,0.03,nav,1,1969,1,, 797,NJBF000071895,1401 N ARKANSAS AVE,Atlantic City,NJ,39.37193,-74.4459605,RES1,3001,,17,NE,2006,2006,3102,3,1,1314.557119,1314.557119,3505,NO,60.61,69.21,3,2.44,6106,114.129769,123.798373,133.566693,139.867822,I,Above,Hip,0,5701,Wood,64.90699334,0,0,,,,1,1,,0.03,nav,1,2006,3,, 798,NJBF000070928,702 LEXINGTON AVE,Atlantic City,NJ,39.3688664,-74.42186279,RES3B,3004,,45,ME,1915,1900,3301,1,2,1261.382409,1261.382409,3507,NO,18.05,29.53,1,1.59,6106,114.683232,124.270838,134.083783,140.296591,I,Above,Flat,0,NaN,Wood,23.79180739,0,0,,,,1,1,,0.03,nav,1,1915,1,, 799,NJBF000067902,17 N MORRIS AVE,Atlantic City,NJ,39.35495011,-74.44825162,RES3B,3001,,17,ME,1900,1900,3301,2,1,1525.258582,1525.258582,3504,YES,26.34,39.83,-4,0,6106,114.282954,123.937369,133.705544,140.083591,I,Above,Hip,0,NaN,Wood,33.08329229,0,0,,,,1,1,,0.03,nav,1,1900,2,, 800,NJBF000071568,1001 CASPIAN AVE,Atlantic City,NJ,39.370942,-74.42789616,RES3C,3004,,45,ME,1900,1900,3301,1,4,2581.369778,2581.369778,3505,NO,10.21,20.92,3,-0.57,6106,114.53008,124.138614,133.939669,140.172748,I,Above,Flat,0,NaN,Wood,15.56268391,0,0,,,,1,1,,0.03,nav,1,1900,1,, 801,NJBF000071566,2116 E RIVERSIDE DR,Atlantic City,NJ,39.370941,-74.4458565,RES1,3001,,16,NE,1900,1900,3102,1,1,567.7088323,567.7088323,3505,NO,17.58,23.25,3,-0.74,6106,114.14337,123.810706,133.57955,139.884293,I,Above,Gable,0,5701,Wood,20.41348869,0,0,,,,1,1,,0.03,nav,1,1900,1,, 802,NJBF000071520,1631 W RIVERSIDE DR,Atlantic City,NJ,39.37082378,-74.45159885,RES1,3001,,16,NE,1900,1900,3101,1,1,1199.880879,1199.880879,3505,NO,18.58,29.08,3,6.59,6106,114.020124,123.707522,133.466772,139.791557,I,Above,Gable,0,5701,Wood,23.83281941,0,0,,,,1,1,,0.03,nav,1,1900,1,, 803,NJBF000070618,709 N OHIO AVE #A,Atlantic City,NJ,39.36780479,-74.43962191,RES1,3001,,17,NE,2004,2004,3102,1,1,1515.815003,1515.815003,3505,NO,22.78,30.03,3,7.78,6106,114.31468,123.957421,133.737975,140.031531,I,Above,Gable,0,5701,Wood,26.40685005,0,0,,,,1,1,,0.03,nav,1,2004,1,, 804,NJBF000068893,2909 SUNSET AVE,Atlantic City,NJ,39.35795985,-74.44985638,RES3A,3001,,17,NE,1925,1925,3301,2,1,794.6790437,794.6790437,3507,NO,24.85,30.78,1,1.22,6106,114.210889,123.876116,133.641456,140.013683,I,Above,Gable,0,5701,Wood,27.81337385,0,0,,,,1,1,,0.03,nav,1,1925,2,, 805,NJBF000066798,129 N RICHMOND AVE,Atlantic City,NJ,39.35081718,-74.46151723,RES3A,3001,,27,NE,1922,1922,3301,2,2,1038.730128,1038.730128,3505,YES,26.34,32.5,3,-0.13,6106,114.045233,123.742344,133.490792,139.935613,I,Above,Gable,0,5701,Wood,29.41996207,0,0,,,,1,1,,0.03,nav,1,1922,2,, 806,NJBF000068411,214 N MONTPELIER AVE,Atlantic City,NJ,39.35666664,-74.45245172,RES3A,3001,,45,NE,1922,1922,3301,2,2,2189.795771,2189.795771,3507,YES,28.67,34.01,1,-0.91,6106,114.17024,123.842968,133.604389,139.991701,I,Above,Flat,0,5701,Wood,31.34181209,0,0,,,,1,1,,0.03,nav,1,1922,2,, 807,NJBF000070409,1410 ADRIATIC AVE,Atlantic City,NJ,39.36699,-74.432266,RES3C,3003,,NaN,E,1969,0,3305,1,1,1665.127355,1665.127355,3507,NO,18.25,25.35,1,2.89,6106,114.482707,124.100201,133.894052,140.160107,I,Above,Flat,0,NaN,Wood,21.80463369,0,0,,,,2,2,,0.03,nav,1,1969,1,, 808,NJBF000064938,122 S BARTRAM AVE,Atlantic City,NJ,39.34571791,-74.46135037,RES3A,3001,,45,NE,1910,1910,3301,2,2,1543.122911,1543.122911,3504,NO,29.62,44.35,-4,0,6106,114.11433,123.80067,133.549347,140.016076,I,Above,Hip,0,5701,Wood,36.98293529,0,0,,,,1,1,,0.03,nav,1,1910,2,, 809,NJBF000068406,207 N MONTPELIER AVE,Atlantic City,NJ,39.35664432,-74.45189662,RES3A,3001,,45,NE,1905,1905,3301,2,2,2038.771583,2038.771583,3507,YES,33.04,47.14,1,1.95,6106,114.182621,123.853255,133.615543,140.000883,I,Above,Flat,0,5701,Wood,40.09289603,0,0,,,,1,1,,0.03,nav,1,1905,2,, 810,NJBF000071806,1619 COLUMBIA AVE,Atlantic City,NJ,39.37167978,-74.45143594,RES1,3001,,17,NE,1979,1979,3101,2,1,1182.313055,1182.313055,3505,NO,32.27,46.95,3,2.21,6106,114.013849,123.701408,133.4606,139.781268,I,Above,Gable,0,5701,Wood,39.61295033,0,0,,,,1,1,,0.03,nav,1,1979,2,, 811,NJBF000071651,709 ADRIATIC AVE,Atlantic City,NJ,39.37117729,-74.42338366,RES1,3001,,45,NE,1969,1910,3102,2,2,6156.823558,6156.823558,3505,YES,38.9,53.4,3,2.76,6106,114.623745,124.218825,134.028391,140.240511,I,Above,Flat,0,5701,Wood,46.14762848,0,0,,,,1,1,,0.03,nav,1,1969,2,, 812,NJBF000071614,518 DREXEL AVE,Atlantic City,NJ,39.371072,-74.4205935,RES1,3001,,27,NE,1900,1900,3102,2,2,1407.749972,1407.749972,3505,YES,33.05,42.06,3,-0.45,6106,114.684442,124.271113,134.086092,140.285713,I,Above,Hip,0,5701,Wood,37.55756315,0,0,,,,1,1,,0.03,nav,1,1900,2,, 813,NJBF000072776,1616 N OHIO AVE,Atlantic City,NJ,39.37487781,-74.44948567,RES1,3001,,17,NE,1900,1900,3102,2,1,1573.365617,1573.365617,3505,NO,21.86,36.65,3,-0.66,6106,114.019858,123.703023,133.46417,139.765245,I,Above,Gable,0,5701,Wood,29.2571501,0,0,,,,1,1,,0.03,nav,1,1900,2,, 814,NJBF000072524,2189 N RIVERSIDE DR,Atlantic City,NJ,39.373992,-74.45779363,RES1,3001,,17,NE,1994,1994,3103,2,1,1795.610512,1795.610512,3505,NO,31.5,43.17,3,-2.17,6106,113.849239,123.56145,133.309281,139.639247,I,Above,Gable,0,5701,Wood,37.3355386,0,0,,,,1,1,,0.03,nav,1,1994,2,, 815,NJBF000068099,26 N STENTON PL,Atlantic City,NJ,39.3556362,-74.44704936,RES3B,3001,,45,ME,1910,1910,3301,3,2,1797.872914,1797.872914,3504,YES,34.44,42.21,-4,0,6106,114.300587,123.95181,133.721862,140.092359,I,Above,Hip,0,NaN,Wood,38.32553871,0,0,,,,1,1,,0.03,nav,1,1910,3,, 816,NJBF000072278,626 SEWELL AVE,Atlantic City,NJ,39.37313732,-74.42367008,RES1,3001,,16,NE,1900,1900,3102,1,1,944.4534669,944.4534669,3505,NO,26.7,31.91,3,7.9,6106,114.594919,124.193121,134.001664,140.208471,I,Above,Gable,0,5701,Wood,29.3007195,0,0,,,,1,1,,0.03,nav,1,1900,1,, 817,NJBF000069688,27 S GORDONS ALLEY,Atlantic City,NJ,39.36293523,-74.42289478,COM1,3003,100,NaN,ME,1969,0,3401,3,1,8088.032163,8088.032163,3507,YES,43.39,51.61,1,1.85,6106,114.731863,124.313997,134.125712,140.362858,I,Above,Flat,0,NaN,Wood,47.49820008,0,0,,,,1,1,,0.03,nav,1,1969,3,, 818,NJBF000068150,444 N HARRISBURG AVE,Atlantic City,NJ,39.35581773,-74.46118401,RES1,3001,,27,NE,1900,1900,3102,2,2,1288.738345,1288.738345,3505,YES,31.13,45.52,3,3.91,6106,113.98986,123.694343,133.442752,139.863853,I,Above,Flat,0,5701,Wood,38.32606321,0,0,,,,1,1,,0.03,nav,1,1900,2,, 819,NJBF000070255,1108 CITY AVE,Atlantic City,NJ,39.36644627,-74.42734911,RES3D,3004,29,NaN,E,1969,0,3303,2,1,4786.732835,4786.732835,3505,YES,31.66,44.06,3,-1.86,6106,114.594615,124.195754,133.998735,140.244926,I,Above,Flat,0,NaN,Wood,37.86201635,0,0,,,,1,1,,0.03,nav,1,1969,2,, 820,NJBF000070288,1108 CITY AVE,Atlantic City,NJ,39.36657795,-74.42743379,RES3D,3004,29,NaN,E,1969,0,3303,2,1,5446.636614,5446.636614,3505,YES,25.58,32.45,3,1.9,6106,114.591229,124.192815,133.995617,140.241739,I,Above,Flat,0,NaN,Wood,29.0118945,0,0,,,,1,1,,0.03,nav,1,1969,2,, 821,NJBF000070378,1108 CITY AVE,Atlantic City,NJ,39.3668895,-74.42740751,RES3D,3004,29,NaN,E,1969,0,3303,2,1,8178.215303,8178.215303,3505,YES,32.89,40.78,3,-0.36,6106,114.5881,124.190027,133.992826,140.237763,I,Above,Flat,0,NaN,Wood,36.83419369,0,0,,,,1,1,,0.03,nav,1,1969,2,, 822,NJBF000068417,2814 DENNY ST,Atlantic City,NJ,39.35668287,-74.44762165,RES3A,3001,,17,NE,1900,1900,3301,2,1,661.8496441,661.8496441,3505,YES,30.67,38.04,3,5.45,6106,114.275186,123.930235,133.699285,140.067956,I,Above,Flat,0,5701,Wood,34.35502388,0,0,,,,1,1,,0.03,nav,1,1900,2,, 823,NJBF000067608,3714 SOUTH BLVD,Atlantic City,NJ,39.353949,-74.457784,RES1,3001,,27,NE,1900,1900,3102,2,2,2032.457722,2032.457722,3505,NO,41.29,53.33,3,3.55,6106,114.087539,123.775829,133.529454,139.947574,I,Above,Hip,0,5701,Wood,47.31026662,0,0,,,,1,1,,0.03,nav,1,1900,2,, 824,NJBF000068843,227 N MORRIS AVE,Atlantic City,NJ,39.35776627,-74.45022299,RES3A,3001,,33,NE,1900,1900,3301,2,1,507.7775454,507.7775454,3507,YES,35.59,47.95,1,1.32,6106,114.20528,123.871544,133.636327,140.01074,I,Above,Gable,0,5701,Wood,41.77280105,0,0,,,,1,1,,0.03,nav,1,1900,2,, 825,NJBF000072469,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37377608,-74.41770049,RES3C,3001,,NaN,ME,1969,0,3301,1,1,9199.674264,9199.674264,3505,NO,21.71,32.32,3,2.85,6106,114.714559,124.296109,134.116162,140.293458,I,Above,Hip,0,NaN,Wood,27.01587578,0,0,,,,1,1,,0.03,nav,1,1969,1,, 826,NJBF000068506,548 N ELBERON AVE,Atlantic City,NJ,39.35695717,-74.46351455,RES1,3001,,17,NE,1900,1900,3101,2,1,600.3098477,600.3098477,3505,NO,31.02,45.17,3,2.6,6106,113.924685,123.640028,133.384879,139.807844,I,Above,Flat,0,5701,Wood,38.09484912,0,0,,,,1,1,,0.03,nav,1,1900,2,, 827,NJBF000070407,2021 MAGELLAN AVE RR,Atlantic City,NJ,39.36698412,-74.4419882,RES3B,3001,,17,ME,1900,1900,3301,2,1,916.7414046,916.7414046,3505,NO,30.02,42.16,3,8.22,6106,114.273206,123.923005,133.699657,140.005668,I,Above,Gable,0,NaN,Wood,36.08567827,0,0,,,,1,1,,0.03,nav,1,1900,2,, 828,NJBF000066824,4014 WINCHESTER AVE,Atlantic City,NJ,39.3508955,-74.4593925,RES3A,3001,,33,NE,1900,1900,3301,2,1,1693.007752,1693.007752,3505,YES,42.54,57.54,3,8.96,6106,114.09075,123.779758,133.531243,139.968368,I,Above,Gable,0,5701,Wood,50.03969959,0,0,,,,1,1,,0.03,nav,1,1900,2,, 829,NJBF000072605,514 MAGELLAN AVE,Atlantic City,NJ,39.37425664,-74.42285528,RES1,3001,,45,NE,1900,1900,3102,2,2,2415.406881,2415.406881,3505,YES,41.76,54.64,3,3.23,6106,114.599389,124.196397,134.006218,140.205593,I,Above,Flat,0,5701,Wood,48.19994653,0,0,,,,1,1,,0.03,nav,1,1900,2,, 830,NJBF000071059,20 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36925657,-74.41397057,RES3D,3004,,17,E,1999,1999,3303,2,1,1325.982585,1325.982585,3505,NO,21.64,31.79,3,-0.14,6106,114.846371,124.411569,134.239896,140.413559,I,Above,Flat,0,NaN,Wood,26.71474045,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 831,NJBF000067255,345 N RICHMOND AVE,Atlantic City,NJ,39.35278165,-74.46304854,RES1,3001,,17,NE,1957,1957,3102,2,1,1659.040273,1659.040273,3505,NO,36.28,43.39,3,-1.1,6106,113.986836,123.693489,133.439616,139.880497,I,Above,Hip,0,5701,Wood,39.83519521,0,0,,,,1,1,,0.03,nav,1,1957,2,, 832,NJBF000068707,211 N MORRIS AVE,Atlantic City,NJ,39.35745934,-74.44999976,RES3A,3001,,27,NE,1900,1900,3301,2,2,694.7855879,694.7855879,3507,YES,27.15,36.01,1,-0.94,6106,114.213905,123.878866,133.644041,140.01886,I,Above,Flat,0,5701,Wood,31.58266212,0,0,,,,1,1,,0.03,nav,1,1900,2,, 833,NJBF000072266,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37308628,-74.41852991,RES3C,3001,,NaN,ME,1969,0,3301,2,1,9225.916902,9225.916902,3505,NO,42.22,52.52,3,5.08,6106,114.704911,124.288026,134.106601,140.290018,I,Above,Hip,0,NaN,Wood,47.36825495,0,0,,,,1,1,,0.03,nav,1,1969,2,, 834,NJBF000070591,1312 ADRIATIC AVE,Atlantic City,NJ,39.36771817,-74.43089412,RES3C,3003,,NaN,E,1969,0,3305,2,1,672.9648074,672.9648074,3507,YES,37.77,49.85,1,-0.6,6106,114.503578,124.117605,133.913814,140.171324,I,Above,Flat,0,NaN,Wood,43.81194211,0,0,,,,2,2,,0.03,nav,1,1969,2,, 835,NJBF000070596,1310 ADRIATIC AVE,Atlantic City,NJ,39.36773704,-74.43084769,RES3C,3003,,NaN,E,1900,1900,3305,2,1,645.466095,645.466095,3507,YES,26.3,35.44,1,1.07,6106,114.504341,124.118246,133.914536,140.171777,I,Above,Gable,0,NaN,Wood,30.87088885,0,0,,,,2,2,,0.03,nav,1,1900,2,, 836,NJBF000066974,16 S PROVIDENCE AVE,Atlantic City,NJ,39.35151065,-74.45219559,COM1,3003,738,NaN,ME,1969,0,3401,2,1,4596.378526,4596.378526,3507,NO,37.89,52.37,1,0.41,6106,114.240178,123.902974,133.665135,140.072632,I,Above,Flat,0,NaN,Wood,45.13059051,0,0,,,,1,1,,0.03,nav,1,1969,2,, 837,NJBF000067487,3002 ATLANTIC AVE,Atlantic City,NJ,39.35363548,-74.44803675,COM1,3003,641,NaN,ME,1969,0,3401,1,1,2771.901383,2771.901383,3507,NO,15.8,30.57,1,-0.81,6106,114.304028,123.955348,133.723927,140.106266,I,Above,Flat,0,NaN,Wood,23.1836992,0,0,,,,1,1,,0.03,nav,1,1969,1,, 838,NJBF000069415,24 S KENTUCKY AVE,Atlantic City,NJ,39.36022307,-74.43023767,COM1,3003,100,NaN,ME,1969,0,3401,4,1,2728.966076,2728.966076,3507,YES,43.99,52.9,1,0.25,6106,114.607459,124.2085,134.006888,140.287601,I,Above,Flat,0,NaN,Wood,48.44114598,0,0,,,,1,1,,0.03,nav,1,1969,4,, 839,NJBF000064960,4511 ATLANTIC AVE,Atlantic City,NJ,39.34578457,-74.46329927,RES1,3001,,18,NE,1900,1900,3102,3,1,2221.645454,2221.645454,3504,YES,53.78,59.32,-4,0,6110,114.070759,123.764901,133.510888,139.984389,I,Above,Flat,0,5701,Wood,56.54812888,0,0,,,,1,1,,0.35,nav,1,1900,3,, 840,NJBF000066952,4117 SUNSET AVE,Atlantic City,NJ,39.3514365,-74.4613315,RES3A,3001,,45,NE,1900,1900,3301,1,2,1109.894698,1109.894698,3505,NO,24.18,30.68,3,4.74,6106,114.041448,123.738978,133.487654,139.929069,I,Above,Flat,0,5701,Wood,27.4297599,0,0,,,,1,1,,0.03,nav,1,1900,1,, 841,NJBF000066946,4119 SUNSET AVE,Atlantic City,NJ,39.351415,-74.461431,RES3A,3001,,17,NE,1900,1900,3301,2,1,1605.156087,1605.156087,3505,NO,27.69,33.17,3,-2.09,6106,114.039544,123.737422,133.485958,139.927799,I,Above,Flat,0,5701,Wood,30.43471309,0,0,,,,1,1,,0.03,nav,1,1900,2,, 842,NJBF000069703,1118 ATLANTIC AVE,Atlantic City,NJ,39.36309492,-74.42503059,COM1,3003,100,NaN,ME,1969,0,3401,2,1,10718.29638,10718.29638,3507,NO,27.71,33.46,1,-0.65,6106,114.684284,124.273286,134.080991,140.327766,I,Above,Flat,0,NaN,Wood,30.58764855,0,0,,,,1,1,,0.03,nav,1,1969,2,, 843,NJBF000064941,38 S PLAZA PL,Atlantic City,NJ,39.34572106,-74.46469376,RES1,3001,,18,NE,1905,1905,3102,2,1,2522.240403,2522.240403,3504,NO,29.6,44.57,-4,0,6106,114.041001,123.740529,133.484613,139.963267,I,Above,Gable,0,5701,Wood,37.08532802,0,0,,,,1,1,,0.03,nav,1,1905,2,, 844,NJBF000066308,4018 VENTNOR AVE,Atlantic City,NJ,39.34944809,-74.458627,COM1,3004,738,NaN,ME,1969,0,3401,2,1,1411.777058,1411.777058,3507,YES,33.28,39.43,1,0.05,6106,114.125925,123.809223,133.561851,140.002499,I,Above,Hip,0,NaN,Wood,36.35314768,0,0,,,,1,1,,0.03,nav,1,1969,2,, 845,NJBF000069974,1325 BALTIC AVE,Atlantic City,NJ,39.3652845,-74.429954,RES3E,3004,562,NaN,E,1969,0,3305,1,1,5087.879846,5087.879846,3505,NO,13.72,19.39,3,-0.51,6106,114.552581,124.160355,133.958716,140.220643,I,Above,Flat,0,NaN,Wood,16.55668151,0,0,,,,2,2,,0.03,nav,1,1969,1,, 846,NJBF000066421,32 S HARRISBURG AVE,Atlantic City,NJ,39.34971005,-74.45669594,RES3A,3001,,17,NE,1900,1900,3301,2,1,1418.928162,1418.928162,3504,NO,28.42,36.16,-4,0,6106,114.164805,123.841193,133.596632,140.028969,I,Above,Hip,0,5701,Wood,32.28914984,0,0,,,,1,1,,0.03,nav,1,1900,2,, 847,NJBF000065097,25 S PLAZA PL,Atlantic City,NJ,39.3461396,-74.46446491,RES1,3001,,18,NE,1900,1900,3102,2,1,2805.607084,2805.607084,3504,YES,38.86,46.58,-4,0,6106,114.040585,123.74008,133.484489,139.960458,I,Above,Hip,0,5701,Wood,42.72306486,0,0,,,,1,1,,0.03,nav,1,1900,2,, 848,NJBF000065582,16 N PLAZA PL,Atlantic City,NJ,39.34752202,-74.46610386,RES3A,3001,,17,NE,1910,1910,3301,2,1,1447.136251,1447.136251,3505,NO,36.45,43.21,3,7.88,6106,113.986744,123.695581,133.437788,139.912788,I,Above,Hip,0,5701,Wood,39.82963969,0,0,,,,1,1,,0.03,nav,1,1910,2,, 849,NJBF000065545,14 N PLAZA PL,Atlantic City,NJ,39.3474065,-74.46602417,RES3A,3001,,18,NE,1925,1925,3301,2,1,1392.614706,1392.614706,3505,NO,22.23,28.15,3,0.04,6106,113.989996,123.698282,133.440596,139.915885,I,Above,Hip,0,5701,Wood,25.19205045,0,0,,,,1,1,,0.03,nav,1,1925,2,, 850,NJBF000065505,,Atlantic City,NJ,39.34727939,-74.46156154,RES3A,3001,,NaN,NE,1925,0,3301,2,1,2187.150733,2187.150733,3505,NO,22.75,33.92,3,-1.88,6106,114.089491,123.779892,133.528334,139.989046,I,Above,Gable,0,5701,Wood,28.33360532,0,0,,,,1,1,,0.03,nav,1,1925,2,, 851,NJBF000065904,4303 VENTNOR AVE,Atlantic City,NJ,39.34840895,-74.46163784,RES3A,3001,565,NaN,NE,1969,0,3301,2,1,1518.754381,1518.754381,3505,YES,29.89,37.62,3,4.38,6106,114.073295,123.766259,133.514605,139.970599,I,Above,Gable,0,5701,Wood,33.7523361,0,0,,,,1,1,,0.03,nav,1,1969,2,, 852,NJBF000065937,4301 VENTNOR AVE,Atlantic City,NJ,39.34849106,-74.46154919,RES3A,3001,100,NaN,NE,1969,0,3301,3,1,1932.826058,1932.826058,3505,YES,49.31,59.25,3,-2.49,6106,114.074194,123.766971,133.515442,139.97076,I,Above,Flat,0,5701,Wood,54.28146092,0,0,,,,1,1,,0.03,nav,1,1969,3,, 853,NJBF000072608,103 ADRIATIC AVE,Atlantic City,NJ,39.37426403,-74.41601682,RES3C,3001,,17,ME,2003,2003,3301,3,1,557.8000995,557.8000995,3505,NO,48.74,56.29,3,1.42,6106,114.74463,124.321993,134.145279,140.313076,I,Above,Hip,0,NaN,Wood,52.5152692,0,0,,,,1,1,,0.03,nav,1,2003,3,, 854,NJBF000069515,2 S NEW YORK AVE,Atlantic City,NJ,39.36112469,-74.42921939,COM1,3003,212,NaN,ME,1969,0,3401,3,1,2878.897748,2878.897748,3507,NO,35.33,48.08,1,1.92,6106,114.618372,124.217564,134.017731,140.290668,I,Above,Flat,0,NaN,Wood,41.70492266,0,0,,,,1,1,,0.03,nav,1,1969,3,, 855,NJBF000070280,1611 ADRIATIC AVE,Atlantic City,NJ,39.3665475,-74.4347265,RES1,3001,,17,NE,1900,1900,3101,2,1,1154.033255,1154.033255,3505,NO,40.45,52.32,3,3.7,6106,114.435033,124.059958,133.849462,140.127633,I,Above,Gable,0,5701,Wood,46.38586971,0,0,,,,1,1,,0.03,nav,1,1900,2,, 856,NJBF000070472,,Atlantic City,NJ,39.36725521,-74.42154523,RES1,3001,,NaN,NE,1969,0,3102,2,1,2587.062461,2587.062461,3505,NO,46.2,55.91,3,7.55,6106,114.709033,124.293491,134.107302,140.323916,I,Above,Hip,0,5701,Wood,51.05679932,0,0,,,,1,1,,0.03,nav,1,1969,2,, 857,NJBF000066262,58 N RALEIGH AVE,Atlantic City,NJ,39.34932295,-74.46229832,RES3A,3001,,45,NE,1920,1920,3301,2,4,2031.15739,2031.15739,3505,YES,41.96,52.02,3,8.44,6106,114.047132,123.744467,133.491873,139.946063,I,Above,Flat,0,5701,Wood,46.99030897,0,0,,,,1,1,,0.03,nav,1,1920,2,, 858,NJBF000065942,15 S LACLEDE PL,Atlantic City,NJ,39.34850036,-74.46012404,RES3A,3001,,45,NE,1900,1900,3301,3,2,2181.390385,2181.390385,3505,YES,53.78,68.75,3,-2.23,6106,114.105287,123.792526,133.543011,139.993211,I,Above,Hip,0,5701,Wood,61.26396468,0,0,,,,1,1,,0.03,nav,1,1900,3,, 859,NJBF000070121,214 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36592065,-74.42925436,RES3D,3004,,45,E,1900,1900,3303,3,2,831.8579027,831.8579027,3505,YES,51.43,61.69,3,6.19,6106,114.560028,124.166454,133.965998,140.22258,I,Above,Flat,0,NaN,Wood,56.56272679,0,0,,,,1,1,,0.03,nav,1,1900,3,, 860,NJBF000070131,216 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36596015,-74.42931101,RES3D,3004,,16,E,2012,2012,3303,3,1,693.8236931,693.8236931,3505,NO,56.03,69.9,3,4.5,6106,114.558342,124.165003,133.964436,140.221137,I,Above,Flat,0,NaN,Wood,62.96311802,0,0,,,,1,1,,0.03,nav,1,2012,3,, 861,NJBF000066241,61 N DELANCY PL,Atlantic City,NJ,39.34928188,-74.46262538,RES3A,3001,,45,NE,1909,1909,3301,2,2,1344.479856,1344.479856,3505,YES,23.88,34.99,3,-1.52,6106,114.040488,123.739026,133.485975,139.941459,I,Above,Gable,0,5701,Wood,29.43604542,0,0,,,,1,1,,0.03,nav,1,1909,2,, 862,NJBF000072189,512 N NEW JERSEY AVE,Atlantic City,NJ,39.37283715,-74.42433669,RES1,3001,,45,NE,1925,1925,3102,1,2,1241.48179,1241.48179,3505,NO,10.41,20.64,3,-2.52,6106,114.584158,124.184016,133.991355,140.202165,I,Above,Gable,0,5701,Wood,15.52562699,0,0,,,,1,1,,0.03,nav,1,1925,1,, 863,NJBF000069782,211 S METROPOLITAN AVE,Atlantic City,NJ,39.36390689,-74.41387468,RES3A,3001,,17,NE,1900,1900,3301,2,1,1221.307451,1221.307451,3505,YES,25.33,36.22,3,0.45,6106,114.912117,124.468937,134.297946,140.487573,I,Above,Flat,0,5701,Wood,30.77556279,0,0,,,,1,1,,0.03,nav,1,1900,2,, 864,NJBF000065372,4 S ABERDEEN PL,Atlantic City,NJ,39.34688466,-74.46378128,RES1,3001,,18,NE,1918,1918,3102,2,1,1522.241089,1522.241089,3504,NO,38.88,48.82,-4,0,6106,114.045942,123.744267,133.489627,139.95988,I,Above,Hip,0,5701,Wood,43.84893922,0,0,,,,1,1,,0.03,nav,1,1918,2,, 865,NJBF000071226,402 MADISON AVE,Atlantic City,NJ,39.3698385,-74.4175955,RES3D,3004,,37,E,1900,2006,3303,2,1,2472.589627,2472.589627,3505,NO,41.09,46.51,3,6.18,6106,114.762608,124.338956,134.160022,140.349479,I,Above,Gable,0,NaN,Wood,43.80304863,0,0,,,,1,1,,0.03,nav,1,1900,2,, 866,NJBF000066460,53 N LACLEDE PL,Atlantic City,NJ,39.34980759,-74.46118804,RES3A,3001,,45,NE,1900,1900,3301,2,2,1789.383902,1789.383902,3505,NO,41.89,52.24,3,7.01,6106,114.065269,123.759194,133.508151,139.956361,I,Above,Flat,0,5701,Wood,47.06383752,0,0,,,,1,1,,0.03,nav,1,1900,2,, 867,NJBF000065843,54 N ABERDEEN PL,Atlantic City,NJ,39.34826169,-74.46485438,RES3A,3001,,17,NE,1900,1900,3301,2,1,1838.084963,1838.084963,3505,NO,39.52,50.72,3,5.88,6106,114.004661,123.710002,133.453895,139.921431,I,Above,Hip,0,5701,Wood,45.12008306,0,0,,,,1,1,,0.03,nav,1,1900,2,, 868,NJBF000065821,52 N ABERDEEN PL,Atlantic City,NJ,39.3481856,-74.46478745,RES3A,3001,,17,NE,1900,1900,3301,2,1,1344.757782,1344.757782,3505,NO,34.77,41.02,3,-0.58,6106,114.007108,123.712033,133.456018,139.923688,I,Above,Hip,0,5701,Wood,37.89063591,0,0,,,,1,1,,0.03,nav,1,1900,2,, 869,NJBF000065408,33 N NEWTON AVE,Atlantic City,NJ,39.34697842,-74.46648864,RES3A,3001,,45,NE,1915,1915,3301,2,2,1122.827681,1122.827681,3505,NO,28.4,40.59,3,-0.35,6106,113.985313,123.694587,133.436278,139.915054,I,Above,Hip,0,5701,Wood,34.49721421,0,0,,,,1,1,,0.03,nav,1,1915,2,, 870,NJBF000064984,107 S KINGSTON AVE,Atlantic City,NJ,39.34584317,-74.46188307,RES3A,3001,,45,NE,1920,1920,3301,3,2,1792.210533,1792.210533,3504,YES,45.82,52.21,-4,0,6106,114.101034,123.789726,133.537669,140.005818,I,Above,Flat,0,5701,Wood,49.01774895,0,0,,,,1,1,,0.03,nav,1,1920,3,, 871,NJBF000066722,123 N RALEIGH AVE,Atlantic City,NJ,39.35058143,-74.46275489,RES3A,3001,,17,NE,1900,1900,3301,2,1,1582.402596,1582.402596,3505,YES,29.26,43.16,3,6.82,6106,114.02109,123.722605,133.46932,139.91934,I,Above,Flat,0,5701,Wood,36.21149309,0,0,,,,1,1,,0.03,nav,1,1900,2,, 872,NJBF000066690,4133 WINCHESTER AVE,Atlantic City,NJ,39.35048089,-74.46112813,RES3A,3001,,17,NE,1900,1900,3301,2,1,1281.110385,1281.110385,3505,NO,24.87,34.25,3,0.6,6106,114.058021,123.752987,133.502005,139.947007,I,Above,Hip,0,5701,Wood,29.56299281,0,0,,,,1,1,,0.03,nav,1,1900,2,, 873,NJBF000071173,216 DYLAN DR,Atlantic City,NJ,39.36965624,-74.41536066,RES3D,3004,,28,E,1998,1998,3303,2,2,2241.282329,2241.282329,3505,NO,39.26,45.67,3,3.4,6106,114.812205,124.381895,134.2074,140.386632,I,Above,Gable,0,NaN,Wood,42.46273892,0,0,,,,1,1,,0.03,nav,1,1998,2,, 874,NJBF000071177,110 N VERMONT AVE,Atlantic City,NJ,39.36967418,-74.41582824,RES3D,3004,,29,E,1998,1998,3303,2,2,2194.647132,2194.647132,3505,NO,44.09,51,3,8.92,6106,114.802085,124.373132,134.197709,140.379157,I,Above,Hip,0,NaN,Wood,47.54431412,0,0,,,,1,1,,0.03,nav,1,1998,2,, 875,NJBF000072042,201 MELROSE AVE,Atlantic City,NJ,39.37238556,-74.41628726,RES3C,3001,100,NaN,ME,1969,0,3301,1,1,14649.74761,14649.74761,3505,NO,12.79,20.72,3,-2.86,6106,114.760648,124.336523,134.159692,140.334756,I,Above,Flat,0,NaN,Wood,16.75382484,0,0,,,,1,1,,0.03,nav,1,1969,1,, 876,NJBF000065227,43 S ABERDEEN PL,Atlantic City,NJ,39.34645188,-74.4628833,RES3A,3001,,18,NE,1900,1900,3301,2,1,1960.220555,1960.220555,3505,NO,43.56,55.53,3,5.35,6106,114.07123,123.765122,133.511706,139.980772,I,Above,Hip,0,5701,Wood,49.54617688,0,0,,,,1,1,,0.03,nav,1,1900,2,, 877,NJBF000065667,114 S RIDGEWAY AVE,Atlantic City,NJ,39.34776563,-74.45757085,RES3A,3001,,18,NE,1920,1920,3301,3,1,2035.220671,2035.220671,3504,YES,38.2,50.68,-4,0,6106,114.170556,123.846457,133.600592,140.044394,I,Above,Hip,0,5701,Wood,44.43879553,0,0,,,,1,1,,0.03,nav,1,1920,3,, 878,NJBF000071100,322 BEACH AVE,Atlantic City,NJ,39.3694043,-74.41664394,RES3D,3004,,45,E,1991,1991,3303,2,2,1294.781122,1294.781122,3505,NO,45.86,60.21,3,8.11,6106,114.78794,124.360957,134.183967,140.370224,I,Above,Gable,0,NaN,Wood,53.03356463,0,0,,,,1,1,,0.03,nav,1,1991,2,, 879,NJBF000071082,322 BEACH AVE,Atlantic City,NJ,39.369342,-74.416815,RES3D,3004,,45,E,1991,1991,3303,2,2,662.6577892,662.6577892,3505,NO,33.01,40.09,3,8.32,6106,114.785038,124.358463,134.181146,140.368427,I,Above,Gable,0,NaN,Wood,36.55152435,0,0,,,,1,1,,0.03,nav,1,1991,2,, 880,NJBF000070980,115 HOUSTON AVE,Atlantic City,NJ,39.36904126,-74.41739898,RES3D,3004,,17,E,2005,2005,3303,2,1,1114.345364,1114.345364,3505,NO,31.04,38.98,3,0.7,6106,114.776176,124.350877,134.172459,140.363517,I,Above,Hip,0,NaN,Wood,35.00879742,0,0,,,,1,1,,0.03,nav,1,2005,2,, 881,NJBF000066710,3806 VENTNOR AVE,Atlantic City,NJ,39.35053873,-74.45629819,COM1,3004,738,NaN,ME,1969,0,3401,3,1,1315.091678,1315.091678,3507,YES,36.44,47.39,1,1.09,6106,114.162962,123.839416,133.595431,140.022785,I,Above,Flat,0,NaN,Wood,41.91777091,0,0,,,,1,1,,0.03,nav,1,1969,3,, 882,NJBF000066700,3808 VENTNOR AVE,Atlantic City,NJ,39.3505109,-74.45635809,COM1,3004,643,NaN,ME,1969,0,3401,3,1,1462.226325,1462.226325,3507,YES,46.74,59.17,1,0.5,6106,114.162006,123.838636,133.594564,140.022261,I,Above,Flat,0,NaN,Wood,52.95847231,0,0,,,,1,1,,0.03,nav,1,1969,3,, 883,NJBF000071086,127 HOUSTON AVE,Atlantic City,NJ,39.3693549,-74.41762681,RES3D,3004,,17,E,2003,2003,3303,2,1,1370.095664,1370.095664,3505,NO,26.01,39.89,3,4.4,6106,114.767636,124.343425,134.16451,140.355663,I,Above,Flat,0,NaN,Wood,32.94977454,0,0,,,,1,1,,0.03,nav,1,2003,2,, 884,NJBF000071126,106 N VERMONT AVE,Atlantic City,NJ,39.36950355,-74.41571042,RES3D,3004,,27,E,1998,1998,3303,2,2,2222.550446,2222.550446,3505,NO,29.01,35.85,3,-0.32,6106,114.806588,124.377066,134.201903,140.383313,I,Above,Gable,0,NaN,Wood,32.43209762,0,0,,,,1,1,,0.03,nav,1,1998,2,, 885,NJBF000065219,4425 ATLANTIC AVE,Atlantic City,NJ,39.34643696,-74.46202592,RES3A,3001,560,NaN,NE,1969,0,3301,3,1,3962.734309,3962.734309,3505,YES,49.8,56.47,3,-2.4,6106,114.090203,123.780695,133.528465,139.99454,I,Above,Flat,0,5701,Wood,53.13316771,0,0,,,,1,1,,0.03,nav,1,1969,3,, 886,NJBF000069059,,Atlantic City,NJ,39.35860087,-74.43288544,COM1,3003,,NaN,ME,1969,0,3401,2,1,5632.206234,5632.206234,3507,NO,20.47,28.06,1,-0.57,6106,114.570366,124.17743,133.971191,140.269621,I,Above,Flat,0,NaN,Wood,24.26305868,0,0,,,,1,1,,0.03,nav,1,1969,2,, 887,NJBF000065207,1 S PLAZA PL,Atlantic City,NJ,39.34640753,-74.46469548,RES1,3001,,18,NE,1910,1910,3102,2,1,2243.144216,2243.144216,3504,YES,22.19,37.12,-4,0,6106,114.032066,123.733029,133.477132,139.952664,I,Above,Hip,0,5701,Wood,29.6533487,0,0,,,,1,1,,0.03,nav,1,1910,2,, 888,NJBF000065595,135 S RIDGEWAY AVE,Atlantic City,NJ,39.34755737,-74.45686917,RES1,3001,,18,NE,1900,1900,3102,2,1,2079.517703,2079.517703,3507,NO,34.4,45.25,1,1.31,6106,114.188585,123.861366,133.616512,140.058465,I,Above,Hip,0,5701,Wood,39.82973236,0,0,,,,1,1,,0.03,nav,1,1900,2,, 889,NJBF000070677,15 N RHODE ISLAND AVE,Atlantic City,NJ,39.36803286,-74.41583777,RES3D,3004,,45,E,1900,1900,3303,2,2,2058.922335,2058.922335,3505,NO,35.65,46.26,3,8.84,6106,114.821227,124.390011,134.214804,140.401462,I,Above,Hip,0,NaN,Wood,40.95822795,0,0,,,,1,1,,0.03,nav,1,1900,2,, 890,NJBF000066599,14 TRENTON TERR,Atlantic City,NJ,39.350201,-74.456359,RES3A,3001,,45,NE,1900,1900,3301,2,2,1510.63269,1510.63269,3504,NO,30.54,38.46,-4,0,6106,114.165922,123.841965,133.597896,140.026899,I,Above,Flat,0,5701,Wood,34.4969166,0,0,,,,1,1,,0.03,nav,1,1900,2,, 891,NJBF000065740,31 S RALEIGH AVE,Atlantic City,NJ,39.34796642,-74.46060597,RES3A,3001,,17,NE,1950,1950,3301,2,1,2026.568017,2026.568017,3505,YES,34.94,40.16,3,3.87,6106,114.101586,123.78964,133.539437,139.993703,I,Above,Flat,0,5701,Wood,37.5484555,0,0,,,,1,1,,0.03,nav,1,1950,2,, 892,NJBF000065229,27 N JACKSON AVE,Atlantic City,NJ,39.34645899,-74.46676557,RES3A,3001,,18,NE,1920,1920,3301,2,1,1597.380537,1597.380537,3505,NO,38.78,52.98,3,2.56,6106,113.985947,123.695266,133.436583,139.91868,I,Above,Gable,0,5701,Wood,45.8791957,0,0,,,,1,1,,0.03,nav,1,1920,2,, 893,NJBF000070923,117 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3688565,-74.417976,RES3D,3004,,27,E,1991,1991,3303,2,1,1281.462215,1281.462215,3505,NO,30.97,41.13,3,7.21,6106,114.766094,124.342216,134.162697,140.357122,I,Above,Flat,0,NaN,Wood,36.04859647,0,0,,,,1,1,,0.03,nav,1,1991,2,, 894,NJBF000070087,40 N MARYLAND AVE,Atlantic City,NJ,39.3657537,-74.42273082,COM1,3003,,33,ME,1900,1900,3401,3,1,1227.29837,1227.29837,3507,YES,51.21,57.34,1,-0.43,6106,114.70157,124.287473,134.099223,140.326365,I,Above,Hip,0,NaN,Wood,54.27494444,0,0,,,,1,1,,0.03,nav,1,1900,3,, 895,NJBF000067996,12 N STENTON PL,Atlantic City,NJ,39.35527919,-74.44683428,RES3B,3001,,45,ME,1910,1910,3301,2,2,1769.523924,1769.523924,3504,NO,31.12,43.44,-4,0,6106,114.309688,123.959523,133.729943,140.100961,I,Above,Hip,0,NaN,Wood,37.27717269,0,0,,,,1,1,,0.03,nav,1,1910,2,, 896,NJBF000066583,42 N ANNAPOLIS AVE,Atlantic City,NJ,39.35013667,-74.45992059,RES3A,3001,,17,NE,1900,1900,3301,2,1,865.1494543,865.1494543,3505,NO,45.54,52.75,3,7.37,6106,114.088829,123.778453,133.529206,139.971527,I,Above,Flat,0,5701,Wood,49.14338295,0,0,,,,1,1,,0.03,nav,1,1900,2,, 897,NJBF000066558,38 N ANNAPOLIS AVE,Atlantic City,NJ,39.35007118,-74.45987599,RES3A,3001,,17,NE,1925,1925,3301,1,1,928.4374928,928.4374928,3505,NO,25.76,35.14,3,7.61,6106,114.090654,123.779978,133.530798,139.973248,I,Above,Hip,0,5701,Wood,30.4510299,0,0,,,,1,1,,0.03,nav,1,1925,1,, 898,NJBF000067267,15 N ST DAVIDS PL,Atlantic City,NJ,39.35282467,-74.45495575,RES3B,3001,,17,E,2007,2007,3303,4,1,1129.438562,1129.438562,3507,NO,72.02,83.75,1,2.29,6106,114.163417,123.838986,133.596916,140.00963,I,Above,Hip,0,NaN,Wood,77.88739344,0,0,,,,1,1,,0.03,nav,1,2007,4,, 899,NJBF000067251,13 N ST DAVIDS PL,Atlantic City,NJ,39.35275087,-74.45490598,RES3B,3001,,45,E,1920,1920,3303,2,2,1356.203379,1356.203379,3507,NO,30.18,42.41,1,0.41,6106,114.165438,123.840686,133.598695,140.011533,I,Above,Hip,0,NaN,Wood,36.29736478,0,0,,,,1,1,,0.03,nav,1,1920,2,, 900,NJBF000067596,23 N BOSTON AVE RR,Atlantic City,NJ,39.35391982,-74.45189324,RES3B,3001,,45,ME,1900,1900,3301,1,2,797.4463572,797.4463572,3504,NO,12.05,24.3,-4,0,6106,114.216523,123.88255,133.645084,140.041622,I,Above,Gable,0,NaN,Wood,18.17331115,0,0,,,,1,1,,0.03,nav,1,1900,1,, 901,NJBF000070458,,Atlantic City,NJ,39.36721736,-74.42803676,RES1,3001,,NaN,NE,1969,0,3103,5,1,2081.975793,2081.975793,3505,NO,96.82,104.4,3,2.98,6106,114.570748,124.175085,133.976659,140.223296,I,Above,Flat,0,5701,Wood,100.6095214,0,0,,,,1,1,,0.03,nav,1,1969,5,, 902,NJBF000071577,115 SUNRISE AVE,Atlantic City,NJ,39.37097585,-74.41382275,RES3D,3004,,17,E,2000,2000,3303,2,1,582.4832533,582.4832533,3505,NO,28.39,37.57,3,-1.4,6106,114.829322,124.396451,134.224805,140.392396,I,Above,Hip,0,NaN,Wood,32.98184675,0,0,,,,1,1,,0.03,nav,1,2000,2,, 903,NJBF000071530,115 SUNRISE AVE,Atlantic City,NJ,39.37084686,-74.41373365,RES3D,3004,,17,E,2000,2000,3303,2,1,1339.022489,1339.022489,3505,NO,29.67,36.4,3,0.55,6106,114.832718,124.399425,134.227979,140.395536,I,Above,Hip,0,NaN,Wood,33.03842774,0,0,,,,1,1,,0.03,nav,1,2000,2,, 904,NJBF000070430,,Atlantic City,NJ,39.36709277,-74.42795024,RES1,3001,,NaN,NE,1969,0,3103,6,1,2080.789377,2080.789377,3505,NO,104.07,114.47,3,5.21,6106,114.574078,124.177977,133.979734,140.226409,I,Above,Hip,0,5701,Wood,109.2688273,0,0,,,,1,1,,0.03,nav,1,1969,6,, 905,NJBF000071152,31 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36958818,-74.41350666,RES3D,3004,,27,E,2003,2003,3303,2,2,2347.133817,2347.133817,3505,NO,35.13,44,3,8.78,6106,114.852304,124.416658,134.245864,140.416211,I,Above,Hip,0,NaN,Wood,39.56534611,0,0,,,,1,1,,0.03,nav,1,2003,2,, 906,NJBF000067693,37 N BOSTON AVE,Atlantic City,NJ,39.35418333,-74.45224104,RES3B,3001,,27,ME,1910,1910,3301,2,2,1561.012448,1561.012448,3504,YES,30.58,37.49,-4,0,6106,114.205654,123.873434,133.635415,140.032215,I,Above,Hip,0,NaN,Wood,34.03247604,0,0,,,,1,1,,0.03,nav,1,1910,2,, 907,NJBF000067552,13 N SOVEREIGN AVE,Atlantic City,NJ,39.3538147,-74.45104515,RES3B,3001,,45,ME,1900,1900,3301,2,3,1220.346969,1220.346969,3504,NO,37.61,52.01,-4,0,6106,114.236313,123.899009,133.662862,140.056527,I,Above,Flat,0,NaN,Wood,44.80937416,0,0,,,,1,1,,0.03,nav,1,1900,2,, 908,NJBF000069169,157 S NEW YORK AVE,Atlantic City,NJ,39.35904813,-74.42739926,COM1,3003,100,NaN,ME,1969,0,3401,3,1,632.3747118,632.3747118,3507,YES,56.34,61.44,1,1.97,6106,114.682718,124.272635,134.076206,140.347583,I,Above,Flat,0,NaN,Wood,58.89008676,0,0,,,,1,1,,0.03,nav,1,1969,3,, 909,NJBF000069180,155 S NEW YORK AVE,Atlantic City,NJ,39.35908902,-74.42742665,COM1,3003,100,NaN,ME,1969,0,3401,3,1,739.7733054,739.7733054,3507,YES,38.9,51.06,1,1.09,6106,114.681616,124.271693,134.075212,140.346586,I,Above,Flat,0,NaN,Wood,44.97713041,0,0,,,,1,1,,0.03,nav,1,1969,3,, 910,NJBF000067759,29 N SOVEREIGN AVE,Atlantic City,NJ,39.35441836,-74.4514436,RES3B,3001,,17,ME,1908,1908,3301,2,1,1133.16518,1133.16518,3504,NO,22.27,36.9,-4,0,6106,114.220094,123.885321,133.648518,140.041288,I,Above,Gable,0,NaN,Wood,29.58343854,0,0,,,,1,1,,0.03,nav,1,1908,2,, 911,NJBF000071104,27 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36943283,-74.41342422,RES3D,3004,,27,E,2003,2003,3303,2,2,2228.737268,2228.737268,3505,NO,34.81,48.75,3,4.29,6106,114.855887,124.419792,134.249185,140.419602,I,Above,Hip,0,NaN,Wood,41.7842227,0,0,,,,1,1,,0.03,nav,1,2003,2,, 912,NJBF000067562,14 N SOVEREIGN AVE,Atlantic City,NJ,39.35383379,-74.45150604,RES3B,3001,,45,ME,1910,1910,3301,2,2,1302.948531,1302.948531,3504,NO,26.13,33.87,-4,0,6106,114.226031,123.89047,133.653608,140.048995,I,Above,Hip,0,NaN,Wood,30.00097174,0,0,,,,1,1,,0.03,nav,1,1910,2,, 913,NJBF000071418,106 SUNRISE AVE,Atlantic City,NJ,39.3705455,-74.4133815,RES3D,3004,,17,E,2000,2000,3303,2,1,522.9305103,522.9305103,3505,NO,41.59,53.81,3,2.67,6106,114.843732,124.409046,134.238357,140.405119,I,Above,Gable,0,NaN,Wood,47.69837385,0,0,,,,1,1,,0.03,nav,1,2000,2,, 914,NJBF000067642,33 N BOSTON AVE,Atlantic City,NJ,39.35405343,-74.45219239,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,557.802658,557.802658,3504,NO,31.67,42.13,-4,0,6106,114.208345,123.875716,133.637781,140.034926,I,Above,Flat,0,NaN,Wood,36.90397629,0,0,,,,1,1,,0.03,nav,1,1969,2,, 915,NJBF000067665,115 S TEXAS AVE,Atlantic City,NJ,39.3541012,-74.44159766,RES3A,3004,,45,NE,1900,1900,3301,3,2,3259.40216,3259.40216,3505,YES,55.47,64.01,3,2.59,6106,114.437923,124.066986,133.845977,140.199315,I,Above,Flat,0,5701,Wood,59.74005124,0,0,,,,1,1,,0.03,nav,1,1900,3,, 916,NJBF000072754,519 BARRETT AVE,Atlantic City,NJ,39.37480511,-74.42387884,RES1,3001,,29,NE,2006,2006,3102,2,2,946.9551035,946.9551035,3505,NO,34.2,47.65,3,4.3,6106,114.571278,124.171885,133.979568,140.181661,I,Above,Hip,0,5701,Wood,40.92914369,0,0,,,,1,1,,0.03,nav,1,2006,2,, 917,NJBF000072806,,Atlantic City,NJ,39.37512144,-74.42268534,RES3D,3001,,NaN,ME,1969,0,3301,1,1,986.7952711,986.7952711,3507,NO,17.81,27.07,1,2.59,6106,114.593097,124.190515,134.000422,140.196132,I,Above,Flat,0,NaN,Wood,22.43779786,0,0,,,,1,1,,0.03,nav,1,1969,1,, 918,NJBF000072802,505 BARRETT AVE,Atlantic City,NJ,39.37498341,-74.42339732,RES1,3001,,17,NE,1910,1910,3102,3,1,698.4817864,698.4817864,3505,YES,51.75,65.07,3,1.35,6106,114.579511,124.178878,133.987443,140.186793,I,Above,Flat,0,5701,Wood,58.40552148,0,0,,,,1,1,,0.03,nav,1,1910,3,, 919,NJBF000069610,28 S NORTH CAROLINA AVE,Atlantic City,NJ,39.362078,-74.425151,COM1,3003,,NaN,ME,1969,1900,3401,3,2,986.0496384,986.0496384,3507,NO,38.51,51.66,1,1.13,6106,114.693991,124.281772,134.089333,140.340039,I,Above,Hip,0,NaN,Wood,45.0882554,0,0,,,,1,1,,0.03,nav,1,1969,3,, 920,NJBF000072283,1077 ABSECON BLVD,Atlantic City,NJ,39.37315,-74.436641,COM4,3003,100,NaN,ME,1969,0,3401,3,1,13330.60515,13330.60515,3507,NO,38.27,53.13,1,2.16,6106,114.31693,123.955488,133.739797,140.001339,I,Above,Flat,0,NaN,Wood,45.69880913,0,0,,,,1,1,,0.03,nav,1,1969,3,, 921,NJBF000072355,1400 MARINA BLVD,Atlantic City,NJ,39.37337005,-74.43628453,COM4,3003,,NaN,ME,1969,0,3401,1,1,1675.070001,1675.070001,3507,NO,19.59,26.82,1,2.81,6106,114.322068,123.95968,133.744562,140.003875,I,Above,Gable,0,NaN,Wood,23.20267154,0,0,,,,1,1,,0.03,nav,1,1969,1,, 922,NJBF000072798,507 BARRETT AVE,Atlantic City,NJ,39.37496891,-74.42347081,RES1,3001,,17,NE,1900,1900,3102,1,1,913.6078244,913.6078244,3505,NO,12.34,19.57,3,0.93,6106,114.578094,124.177665,133.986091,140.185817,I,Above,Flat,0,5701,Wood,15.9522792,0,0,,,,1,1,,0.03,nav,1,1900,1,, 923,NJBF000067669,126 S BELLEVUE AVE,Atlantic City,NJ,39.35411933,-74.44119988,RES3A,3004,,27,NE,1900,1900,3301,3,2,1254.009807,1254.009807,3505,YES,34.98,41.25,3,-0.63,6106,114.446315,124.07401,133.853659,140.205189,I,Above,Flat,0,5701,Wood,38.11723897,0,0,,,,1,1,,0.03,nav,1,1900,3,, 924,NJBF000069646,14 S NORTH CAROLINA AVE,Atlantic City,NJ,39.36246199,-74.42556085,COM1,3003,100,NaN,ME,1969,0,3401,4,1,8977.575819,8977.575819,3507,YES,57.86,70.02,1,2.99,6106,114.680578,124.270251,134.077024,140.328396,I,Above,Flat,0,NaN,Wood,63.94060532,0,0,,,,1,1,,0.03,nav,1,1969,4,, 925,NJBF000072765,,Atlantic City,NJ,39.3748525,-74.423754,RES1,3001,,NaN,NE,1969,0,3102,2,1,1881.757079,1881.757079,3505,NO,35.63,50.59,3,3,6106,114.573392,124.173679,133.98159,140.182966,I,Above,Flat,0,5701,Wood,43.10730923,0,0,,,,1,1,,0.03,nav,1,1969,2,, 926,NJBF000067627,134 S BELLEVUE AVE,Atlantic City,NJ,39.35401235,-74.44113028,RES3A,3004,,45,NE,1900,1900,3301,3,2,603.6320949,603.6320949,3505,YES,46.52,54.35,3,4.15,6106,114.449167,124.07642,133.856186,140.207798,I,Above,Flat,0,5701,Wood,50.43722788,0,0,,,,1,1,,0.03,nav,1,1900,3,, 927,NJBF000069600,34 S NORTH CAROLINA AVE,Atlantic City,NJ,39.36200388,-74.42512585,COM1,3003,,NaN,ME,1900,1900,3401,2,1,1800.450356,1800.450356,3507,NO,29.25,40.16,1,2.65,6106,114.695421,124.283006,134.090618,140.34145,I,Above,Flat,0,NaN,Wood,34.70555935,0,0,,,,1,1,,0.03,nav,1,1900,2,, 928,NJBF000069595,27 S CHALFONTE AVE,Atlantic City,NJ,39.36197569,-74.42544238,COM1,3003,,NaN,ME,1969,0,3401,2,1,517.9994691,517.9994691,3507,NO,24.56,34.13,1,2.25,6106,114.688998,124.27753,134.084558,140.336979,I,Above,Gable,0,NaN,Wood,29.34271249,0,0,,,,1,1,,0.03,nav,1,1969,2,, 929,NJBF000069480,24 S NEW YORK AVE,Atlantic City,NJ,39.36074381,-74.42901542,COM1,3003,100,NaN,ME,1969,0,3401,2,1,3924.819272,3924.819272,3507,YES,39.9,50.27,1,1.75,6106,114.627376,124.225299,134.025862,140.299148,I,Above,Flat,0,NaN,Wood,45.08492261,0,0,,,,1,1,,0.03,nav,1,1969,2,, 930,NJBF000069461,30 S NEW YORK AVE,Atlantic City,NJ,39.36061807,-74.42894226,COM1,3003,100,NaN,ME,1969,0,3401,3,1,4373.471682,4373.471682,3507,NO,40.88,55.22,1,2.55,6106,114.630474,124.227958,134.028661,140.302035,I,Above,Flat,0,NaN,Wood,48.0491752,0,0,,,,1,1,,0.03,nav,1,1969,3,, 931,NJBF000069485,10 S NEW YORK AVE,Atlantic City,NJ,39.36085179,-74.42918532,COM1,3003,100,NaN,ME,1969,0,3401,4,1,7826.836625,7826.836625,3507,YES,72.33,84.69,1,1.64,6106,114.622416,124.221061,134.021309,140.295016,I,Above,Flat,0,NaN,Wood,78.50868075,0,0,,,,1,1,,0.03,nav,1,1969,4,, 932,NJBF000064372,106 S MONTGOMERY AVE,Atlantic City,NJ,39.34432691,-74.46408662,RES1,3001,,18,NE,1988,1988,3102,3,1,2022.137957,2022.137957,3504,NO,45.46,55.65,-4,0,6106,114.072482,123.766629,133.511458,139.994233,I,Above,Flat,0,5701,Wood,50.55665499,0,1.1,,,,1,1,,0.03,nav,1,1988,3,, 933,NJBF000065449,,Atlantic City,NJ,39.3471431,-74.45713773,RES1,3001,,NaN,NE,1969,0,3102,2,1,1049.386574,1049.386574,3507,NO,36.33,44.11,1,-0.46,6106,114.188037,123.861005,133.615742,140.060447,I,Above,Hip,0,5701,Wood,40.2182081,0,0,,,,1,1,,0.03,nav,1,1969,2,, 934,NJBF000064921,119 S KINGSTON AVE,Atlantic City,NJ,39.34566893,-74.46172243,RES3A,3001,,18,NE,1920,1920,3301,3,1,1940.728188,1940.728188,3504,YES,40.22,49.06,-4,0,6106,114.106819,123.794514,133.542671,140.010984,I,Above,Hip,0,5701,Wood,44.63945632,0,0,,,,1,1,,0.03,nav,1,1920,3,, 935,NJBF000064289,118 S NEWTON AVE,Atlantic City,NJ,39.3441142,-74.46487885,RES1,3001,,45,NE,1930,1930,3102,2,2,2325.929074,2325.929074,3507,NO,29.56,38.31,1,-0.64,6106,114.057903,123.754729,133.498475,139.985014,I,Above,Hip,0,5701,Wood,33.93829646,0,0,,,,1,1,,0.03,nav,1,1930,2,, 936,NJBF000066675,3301 BOARDWALK,Atlantic City,NJ,39.350443,-74.449383,RES4,3003,779,NaN,E,1969,0,3404,6,1,19563.58635,19563.58635,3507,NO,87.08,93,1,0.82,6106,114.314961,123.965281,133.73177,140.13204,I,Above,Flat,0,NaN,Wood,90.03796506,0,0,,,,2,2,,0.03,nav,1,1969,6,, 937,NJBF000064672,137 S BERKLEY SQ,Atlantic City,NJ,39.34503974,-74.4621112,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2189.016635,2189.016635,3504,NO,30.94,39.19,-4,0,6106,114.106479,123.794365,133.541946,140.014413,I,Above,Flat,0,5701,Wood,35.06474632,0,0,,,,1,1,,0.03,nav,1,1969,2,, 938,NJBF000064807,133 S KINGSTON AVE,Atlantic City,NJ,39.34538048,-74.4615228,RES1,3001,,45,NE,1969,1915,3102,3,2,2412.461866,2412.461866,3507,YES,38.6,44.8,1,0.83,6106,114.114933,123.801236,133.549652,140.018477,I,Above,Hip,0,5701,Wood,41.69750686,0,0,,,,1,1,,0.03,nav,1,1969,3,, 939,NJBF000066807,108 S MONTPELIER AVE,Atlantic City,NJ,39.35085343,-74.44856426,RES4,3003,,NaN,E,1969,0,3404,7,1,11156.55558,11156.55558,3507,NO,117.83,130.44,1,-0.91,6106,114.327581,123.975674,133.743446,140.138724,I,Above,Flat,0,NaN,Wood,124.1368161,0,0,,,,2,2,,0.03,nav,1,1969,7,, 940,NJBF000065729,111 S RIDGEWAY AVE,Atlantic City,NJ,39.34793796,-74.45712071,RES3A,3001,,17,NE,1930,1930,3301,2,1,1819.23476,1819.23476,3504,YES,31.96,43.48,-4,0,6106,114.178182,123.852701,133.607494,140.048849,I,Above,Flat,0,5701,Wood,37.72182851,0,0,,,,1,1,,0.03,nav,1,1930,2,, 941,NJBF000065247,106 S RALEIGH AVE,Atlantic City,NJ,39.346511,-74.46003067,RES3A,3001,,45,NE,1920,1920,3301,2,3,1724.316452,1724.316452,3504,YES,22.14,36.72,-4,0,6106,114.132929,123.815779,133.566347,140.024767,I,Above,Hip,0,5701,Wood,29.42872179,0,0,,,,1,1,,0.03,nav,1,1920,2,, 942,NJBF000065765,109 S RIDGEWAY AVE,Atlantic City,NJ,39.34803233,-74.45726747,RES3A,3001,,17,NE,1900,1900,3301,3,1,2055.921049,2055.921049,3504,YES,40.2,51.39,-4,0,6106,114.173784,123.849053,133.603637,140.045164,I,Above,Hip,0,5701,Wood,45.79466955,0,0,,,,1,1,,0.03,nav,1,1900,3,, 943,NJBF000065583,128 S RIDGEWAY AVE,Atlantic City,NJ,39.34752352,-74.45737218,RES3A,3001,,18,NE,1928,1928,3301,3,1,2340.646309,2340.646309,3504,YES,50.48,60.94,-4,0,6106,114.178018,123.852663,133.607077,140.051118,I,Above,Hip,0,5701,Wood,55.71352825,0,0,,,,1,1,,0.03,nav,1,1928,3,, 944,NJBF000069476,1316 PACIFIC AVE,Atlantic City,NJ,39.3607108,-74.42634789,COM1,3003,100,NaN,ME,1969,0,3401,2,1,3100.625217,3100.625217,3507,YES,24.54,35,1,-0.46,6106,114.684947,124.274292,134.079723,140.340617,I,Above,Hip,0,NaN,Wood,29.77088312,0,0,,,,1,1,,0.03,nav,1,1969,2,, 945,NJBF000069860,,Atlantic City,NJ,39.36461773,-74.41558262,RES3B,3001,,NaN,E,1969,0,3303,3,1,1705.034243,1705.034243,3507,NO,51.05,57.52,1,2.25,6106,114.867329,124.430233,134.255856,140.45189,I,Above,Hip,0,NaN,Wood,54.28420284,0,0,,,,1,1,,0.03,nav,1,1969,3,, 946,NJBF000069870,104 S MASSACHUSETTS AVE,Atlantic City,NJ,39.36468567,-74.41565959,RES3B,3001,,45,E,1930,1930,3303,3,4,1442.46474,1442.46474,3507,YES,39.1,53.3,1,-0.05,6106,114.864879,124.428114,134.253582,140.44979,I,Above,Hip,0,NaN,Wood,46.20253568,0,0,,,,1,1,,0.03,nav,1,1930,3,, 947,NJBF000069338,117 S NEW YORK AVE,Atlantic City,NJ,39.35974596,-74.42787204,COM1,3003,,45,ME,1930,1930,3401,3,2,604.1005315,604.1005315,3507,YES,48.29,55.95,1,-0.54,6106,114.664046,124.256657,134.059346,140.330643,I,Above,Flat,0,NaN,Wood,52.12151513,0,0,,,,1,1,,0.03,nav,1,1930,3,, 948,NJBF000072780,410 N MAINE AVE,Atlantic City,NJ,39.37490507,-74.41597159,RES3C,3001,,20,ME,2006,2006,3301,3,1,2485.218095,2485.218095,3505,NO,55.75,65.03,3,5.35,6106,114.7382,124.316171,134.139389,140.30493,I,Above,Flat,0,NaN,Wood,60.39299825,0,0,,,,1,1,,0.03,nav,1,2006,3,, 949,NJBF000071624,116 MADISON AVE,Atlantic City,NJ,39.37109465,-74.41390375,RES3D,3004,,17,E,2000,2000,3303,2,1,519.5772076,519.5772076,3505,NO,38.96,52.7,3,3.43,6106,114.826215,124.393728,134.221899,140.389515,I,Above,Hip,0,NaN,Wood,45.82545399,0,0,,,,1,1,,0.03,nav,1,2000,2,, 950,NJBF000072721,107 LIBERTY AVE,Atlantic City,NJ,39.374666,-74.416582,RES3C,3001,,17,ME,2003,2003,3301,3,1,1428.364664,1428.364664,3505,NO,40.11,51.83,3,5.74,6106,114.728019,124.307428,134.129486,140.298667,I,Above,Hip,0,NaN,Wood,45.97173515,0,0,,,,1,1,,0.03,nav,1,2003,3,, 951,NJBF000072751,107 LIBERTY AVE,Atlantic City,NJ,39.37479168,-74.41666106,RES3C,3001,,17,ME,2003,2003,3301,3,1,612.9850894,612.9850894,3505,NO,48.79,63.56,3,0.19,6106,114.724893,124.304667,134.126536,140.295685,I,Above,Hip,0,NaN,Wood,56.17456762,0,0,,,,1,1,,0.03,nav,1,2003,3,, 952,NJBF000071477,181 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3707235,-74.41426717,RES3D,3004,,27,E,2000,2000,3303,2,2,1700.730413,1700.730413,3505,NO,44.76,53.68,3,6.73,6106,114.822878,124.390915,134.218424,140.388975,I,Above,Hip,0,NaN,Wood,49.21929751,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 953,NJBF000072670,106 LIBERTY AVE,Atlantic City,NJ,39.37446167,-74.41629988,RES3C,3001,,17,ME,2003,2003,3301,2,1,1423.630003,1423.630003,3505,NO,21.29,28.25,3,-1.16,6106,114.736348,124.314732,134.137405,140.305908,I,Above,Hip,0,NaN,Wood,24.77095772,0,0,,,,1,1,,0.03,nav,1,2003,2,, 954,NJBF000072713,425 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37464039,-74.41688862,RES3C,3001,,27,ME,2003,2003,3301,2,2,1940.307756,1940.307756,3505,NO,42.8,54.59,3,5.52,6106,114.721807,124.30205,134.123503,140.294211,I,Above,Flat,0,NaN,Wood,48.69667068,0,0,,,,1,1,,0.03,nav,1,2003,2,, 955,NJBF000072536,405 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37402046,-74.41647422,RES3C,3001,,27,ME,2003,2003,3301,2,2,1909.953844,1909.953844,3505,NO,22.73,35.18,3,-1.78,6106,114.737755,124.316119,134.138551,140.309289,I,Above,Gable,0,NaN,Wood,28.95654239,0,0,,,,1,1,,0.03,nav,1,2003,2,, 956,NJBF000072078,11 GALLEON CT,Atlantic City,NJ,39.3725186,-74.4170394,RES3C,3001,,45,ME,1990,1990,3301,2,2,2858.731523,2858.731523,3505,NO,23.07,36.93,3,0.73,6106,114.743146,124.321319,134.142969,140.321188,I,Above,Hip,0,NaN,Wood,30.00290749,0,0,,,,1,1,,0.03,nav,1,1990,2,, 957,NJBF000072572,409 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37412713,-74.41654738,RES3C,3001,,27,ME,2003,2003,3301,2,2,1861.914176,1861.914176,3505,NO,36.55,46.81,3,-1.7,6106,114.734972,124.313666,134.135926,140.306668,I,Above,Hip,0,NaN,Wood,41.6809365,0,0,,,,1,1,,0.03,nav,1,2003,2,, 958,NJBF000072685,421 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37453265,-74.41681753,RES3C,3001,,27,ME,2003,2003,3301,2,2,1853.777618,1853.777618,3505,NO,32.81,42.08,3,3.12,6106,114.724545,124.304467,134.126088,140.296805,I,Above,Hip,0,NaN,Wood,37.44247819,0,0,,,,1,1,,0.03,nav,1,2003,2,, 959,NJBF000072674,104 LIBERTY AVE,Atlantic City,NJ,39.37447186,-74.41616039,RES3C,3001,,17,ME,2003,2003,3301,2,1,1909.362211,1909.362211,3505,NO,33.56,46.21,3,6.14,6106,114.739201,124.317204,134.140154,140.307964,I,Above,Hip,0,NaN,Wood,39.88126194,0,0,,,,1,1,,0.03,nav,1,2003,2,, 960,NJBF000072128,26 BARKENTINE CT,Atlantic City,NJ,39.37265996,-74.41788519,RES3C,3001,,35,ME,1990,1990,3301,2,1,5570.762447,5570.762447,3505,NO,37.22,47.96,3,2.37,6106,114.723548,124.304307,134.124252,140.306018,I,Above,Hip,0,NaN,Wood,42.58942301,0,0,,,,1,1,,0.03,nav,1,1990,2,, 961,NJBF000072663,102 LIBERTY AVE,Atlantic City,NJ,39.3744425,-74.415999,RES3C,3001,,17,ME,2003,2003,3301,3,1,546.1691918,546.1691918,3505,NO,58.47,70.71,3,5,6106,114.742948,124.320467,134.143746,140.310886,I,Above,Flat,0,NaN,Wood,64.59315685,0,0,,,,1,1,,0.03,nav,1,2003,3,, 962,NJBF000070169,130 DEWEY PL,Atlantic City,NJ,39.3660765,-74.41112016,RES3A,3001,,45,NE,1920,1920,3301,2,2,2328.814659,2328.814659,3505,YES,37.85,50.58,3,0.73,6106,114.944471,124.496934,134.331287,140.50037,I,Above,Flat,0,5701,Wood,44.21572928,0,0,,,,1,1,,0.03,nav,1,1920,2,, 963,NJBF000070207,118 DEWEY PL,Atlantic City,NJ,39.36622451,-74.41078256,RES3A,3001,,45,NE,1920,1920,3301,2,2,1118.151823,1118.151823,3505,YES,28.35,42.7,3,6.82,6106,114.949821,124.501575,134.336593,140.50351,I,Above,Flat,0,5701,Wood,35.52589597,0,0,,,,1,1,,0.03,nav,1,1920,2,, 964,NJBF000070106,123 ORIENTAL AVE,Atlantic City,NJ,39.36585911,-74.41108026,RES3A,3001,,45,NE,1900,1900,3301,2,2,1867.393909,1867.393909,3505,YES,42.82,49.37,3,7.77,6106,114.94791,124.499919,134.334367,140.503897,I,Above,Flat,0,5701,Wood,46.09629985,0,0,,,,1,1,,0.03,nav,1,1900,2,, 965,NJBF000069938,113 S METROPOLITAN AVE,Atlantic City,NJ,39.36509673,-74.41473664,RES3B,3001,,NaN,E,1969,0,3303,4,1,1949.784783,1949.784783,3507,NO,60.11,68.77,1,0.06,6106,114.879545,124.440752,134.268001,140.45833,I,Above,Flat,0,NaN,Wood,64.44099605,0,0,,,,1,1,,0.03,nav,1,1969,4,, 966,NJBF000069937,208 S NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36509228,-74.41113118,RES3A,3001,,17,NE,1900,1900,3301,4,1,1564.996464,1564.996464,3505,YES,67.83,79.55,3,6.3,6106,114.956011,124.506942,134.341331,140.513419,I,Above,Hip,0,5701,Wood,73.689088,0,0,,,,1,1,,0.03,nav,1,1900,4,, 967,NJBF000069887,,Atlantic City,NJ,39.36478182,-74.41524333,RES3B,3001,,NaN,E,1969,0,3303,3,1,1053.411086,1053.411086,3507,NO,51.08,63.66,1,1.6,6106,114.872581,124.434756,134.261034,140.454863,I,Above,Flat,0,NaN,Wood,57.37011723,0,0,,,,1,1,,0.03,nav,1,1969,3,, 968,NJBF000069895,,Atlantic City,NJ,39.36483512,-74.41513144,RES3B,3001,,NaN,E,1969,0,3303,3,1,1197.865173,1197.865173,3507,NO,51.82,60.21,1,1.15,6106,114.874323,124.436257,134.262751,140.455857,I,Above,Flat,0,NaN,Wood,56.01437998,0,0,,,,1,1,,0.03,nav,1,1969,3,, 969,NJBF000069561,1207 PACIFIC AVE,Atlantic City,NJ,39.36163728,-74.42515009,COM1,3003,,NaN,ME,1969,0,3401,3,1,5202.591207,5202.591207,3507,NO,45.07,51.76,1,-0.6,6106,114.69935,124.286423,134.094014,140.346169,I,Above,Flat,0,NaN,Wood,48.41590367,0,0,,,,1,1,,0.03,nav,1,1969,3,, 970,NJBF000066294,48 S HARRISBURG AVE,Atlantic City,NJ,39.34940666,-74.45649186,RES3A,3001,,45,NE,1920,1920,3301,2,2,1166.659134,1166.659134,3504,NO,27.39,42.01,-4,0,6106,114.173125,123.848146,133.603884,140.036714,I,Above,Hip,0,5701,Wood,34.69998782,0,0,,,,1,1,,0.03,nav,1,1920,2,, 971,NJBF000066287,3835 ATLANTIC AVE,Atlantic City,NJ,39.34936716,-74.45600272,RES3A,3001,738,NaN,NE,1969,0,3301,2,1,5269.966383,5269.966383,3504,YES,37.36,50.51,-4,0,6106,114.184319,123.857395,133.613852,140.044975,I,Above,Flat,0,5701,Wood,43.93496911,0,0,,,,1,1,,0.03,nav,1,1969,2,, 972,NJBF000069134,142 S TENNESSEE AVE,Atlantic City,NJ,39.35889201,-74.42620166,COM1,3003,100,NaN,ME,1969,1901,3401,4,1,4255.263245,4255.263245,3507,YES,48.41,56.8,1,2.51,6106,114.710276,124.296101,134.101858,140.368036,I,Above,Flat,0,NaN,Wood,52.60310592,0,0,,,,1,1,,0.03,nav,1,1969,4,, 973,NJBF000066234,54 S HARRISBURG AVE,Atlantic City,NJ,39.34925649,-74.45632795,RES3A,3001,220,NaN,NE,1969,0,3301,1,1,4738.34516,4738.34516,3504,NO,12.75,23.73,-4,0,6106,114.178635,123.852735,133.608713,140.041545,I,Above,Hip,0,5701,Wood,18.23813011,0,0,,,,1,1,,0.03,nav,1,1969,1,, 974,NJBF000069128,135 ST JAMES PL,Atlantic City,NJ,39.35887251,-74.42654816,COM1,3003,280,NaN,ME,1969,0,3401,2,1,2640.513047,2640.513047,3507,NO,37.24,49.12,1,-0.22,6106,114.703097,124.289993,134.095118,140.363015,I,Above,Flat,0,NaN,Wood,43.18028815,0,0,,,,1,1,,0.03,nav,1,1969,2,, 975,NJBF000069536,1317 MEMORIAL AVE,Atlantic City,NJ,39.36136753,-74.42693532,COM1,3003,100,NaN,ME,1969,0,3401,3,1,4150.139427,4150.139427,3507,YES,40.44,47.52,1,1.63,6106,114.664396,124.256669,134.060985,140.322464,I,Above,Flat,0,NaN,Wood,43.98165618,0,0,,,,1,1,,0.03,nav,1,1969,3,, 976,NJBF000065607,47 S RALEIGH AVE,Atlantic City,NJ,39.34759329,-74.46032595,RES3A,3001,,18,NE,1900,1900,3301,3,1,1839.95566,1839.95566,3505,YES,51.28,66.07,3,5.04,6106,114.112513,123.798726,133.548913,140.003781,I,Above,Flat,0,5701,Wood,58.67272089,0,0,,,,1,1,,0.03,nav,1,1900,3,, 977,NJBF000065592,31 S DELANCY PL,Atlantic City,NJ,39.34754915,-74.46124678,RES3A,3001,,17,NE,1900,1900,3301,2,1,1433.805463,1433.805463,3505,NO,38.96,44.32,3,0.37,6106,114.092912,123.782628,133.531517,139.989915,I,Above,Gable,0,5701,Wood,41.64137658,0,0,,,,1,1,,0.03,nav,1,1900,2,, 978,NJBF000066154,63 S ELBERON AVE,Atlantic City,NJ,39.3490693,-74.45643591,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,2693.436324,2693.436324,3504,YES,31.65,38.47,-4,0,6106,114.178664,123.852809,133.608627,140.04265,I,Above,Flat,0,5701,Wood,35.05715984,0,0,,,,1,1,,0.03,nav,1,1969,2,, 979,NJBF000066136,54 S ELBERON AVE,Atlantic City,NJ,39.34901554,-74.45687834,RES3A,3001,100,NaN,NE,1969,0,3301,4,1,1911.9012,1911.9012,3504,YES,66.12,73.24,-4,0,6106,114.169683,123.845415,133.600585,140.03652,I,Above,Flat,0,5701,Wood,69.68164464,0,0,,,,1,1,,0.03,nav,1,1969,4,, 980,NJBF000066185,48 S ELBERON AVE,Atlantic City,NJ,39.34914246,-74.45699452,RES3A,3001,,45,NE,1915,1915,3301,2,3,1704.175718,1704.175718,3504,NO,31.93,44.51,-4,0,6106,114.165516,123.841944,133.596944,140.032796,I,Above,Hip,0,5701,Wood,38.21634901,0,0,,,,1,1,,0.03,nav,1,1915,2,, 981,NJBF000068700,44 N BELLEVUE AVE,Atlantic City,NJ,39.35744926,-74.44339959,RES3B,3001,,27,ME,1925,1925,3301,2,2,564.3712277,564.3712277,3505,YES,38.14,52.19,3,2.29,6106,114.357395,123.998597,133.77446,140.122979,I,Above,Gable,0,NaN,Wood,45.1636631,0,0,,,,1,1,,0.03,nav,1,1925,2,, 982,NJBF000070170,107 N VIRGINIA AVE,Atlantic City,NJ,39.36607728,-74.42406117,RES1,3001,,27,NE,2000,2000,3102,2,2,2005.150584,2005.150584,3505,NO,42.07,51.05,3,3.18,6106,114.669324,124.259755,134.068948,140.301263,I,Above,Gable,0,5701,Wood,46.5624696,0,0,,,,1,1,,0.03,nav,1,2000,2,, 983,NJBF000068666,2520 ARCTIC AVE RR,Atlantic City,NJ,39.35735999,-74.44360721,RES3B,3001,,17,ME,1900,1900,3301,2,1,1301.6347,1301.6347,3505,NO,37.58,51.64,3,4.84,6106,114.354002,123.995791,133.771318,140.121037,I,Above,Gable,0,NaN,Wood,44.60634516,0,0,,,,1,1,,0.03,nav,1,1900,2,, 984,NJBF000068723,107 N CALIFORNIA AVE,Atlantic City,NJ,39.35748926,-74.4455088,RES3A,3001,,33,NE,2018,2018,3301,2,1,2600.28956,2600.28956,3505,YES,28.43,40.62,3,-1.4,6106,114.311157,123.959921,133.732316,140.089337,I,Above,Flat,0,5701,Wood,34.52374647,0,0,,,,1,1,,0.03,nav,1,2018,2,, 985,NJBF000068647,135 N IOWA AVE,Atlantic City,NJ,39.35731805,-74.44698495,RES3A,3001,,17,NE,1915,1915,3301,2,1,893.5960019,893.5960019,3505,NO,32.94,38.29,3,-1.32,6106,114.281207,123.934991,133.705006,140.068629,I,Above,Flat,0,5701,Wood,35.61600411,0,0,,,,1,1,,0.03,nav,1,1915,2,, 986,NJBF000068498,115 N IOWA AVE,Atlantic City,NJ,39.35694651,-74.44674068,RES3A,3001,,45,NE,1915,1915,3301,3,2,1179.616101,1179.616101,3505,YES,55.62,61.09,3,5.74,6106,114.291075,123.943376,133.713821,140.077931,I,Above,Hip,0,5701,Wood,58.35676197,0,0,,,,1,1,,0.03,nav,1,1915,3,, 987,NJBF000068580,2817 CARLTON AVE,Atlantic City,NJ,39.3571675,-74.44814665,RES3A,3001,,33,NE,1900,1900,3301,2,1,602.0632878,602.0632878,3505,YES,44.09,57.39,3,6.24,6106,114.257797,123.91554,133.6837,140.052516,I,Above,Gable,0,5701,Wood,50.74077779,0,0,,,,1,1,,0.03,nav,1,1900,2,, 988,NJBF000068599,2815 CARLTON AVE,Atlantic City,NJ,39.35720748,-74.44804997,RES3A,3001,,33,NE,1900,1900,3301,2,1,655.965798,655.965798,3505,YES,37.28,44.96,3,1.43,6106,114.259426,123.91688,133.685192,140.053471,I,Above,Hip,0,5701,Wood,41.11807697,0,0,,,,1,1,,0.03,nav,1,1900,2,, 989,NJBF000068628,2809 CARLTON AVE,Atlantic City,NJ,39.35727544,-74.44788299,RES3A,3001,,33,NE,1900,1900,3301,2,1,558.4475714,558.4475714,3505,NO,29.28,43.11,3,-0.7,6106,114.262219,123.919179,133.687751,140.055102,I,Above,Flat,0,5701,Wood,36.19358038,0,0,,,,1,1,,0.03,nav,1,1900,2,, 990,NJBF000068641,2807 CARLTON AVE,Atlantic City,NJ,39.35730643,-74.4478127,RES3A,3001,,33,NE,1900,1900,3301,2,1,511.231679,511.231679,3505,YES,40.03,52.57,3,8.14,6106,114.26336,123.920116,133.688798,140.055749,I,Above,Flat,0,5701,Wood,46.30131129,0,0,,,,1,1,,0.03,nav,1,1900,2,, 991,NJBF000068660,2805 CARLTON AVE,Atlantic City,NJ,39.35734375,-74.44771986,RES3A,3001,,33,NE,1900,1900,3301,2,1,584.5505148,584.5505148,3505,YES,27.41,33.22,3,-0.92,6106,114.264914,123.921395,133.690222,140.056656,I,Above,Hip,0,5701,Wood,30.31692908,0,0,,,,1,1,,0.03,nav,1,1900,2,, 992,NJBF000070203,111 N VIRGINIA AVE,Atlantic City,NJ,39.36621228,-74.42415321,RES1,3001,,27,NE,2000,2000,3102,2,2,2095.847007,2095.847007,3505,NO,30.62,42.49,3,8.54,6106,114.665753,124.256658,134.065659,140.297953,I,Above,Hip,0,5701,Wood,36.55565584,0,0,,,,1,1,,0.03,nav,1,2000,2,, 993,NJBF000066015,29 S WINDSOR AVE,Atlantic City,NJ,39.348694,-74.45885076,RES3A,3001,,45,NE,1900,1900,3301,2,2,2029.217367,2029.217367,3505,NO,34.16,48.13,3,-1.51,6106,114.130661,123.81335,133.565656,140.010362,I,Above,Flat,0,5701,Wood,41.14773836,0,0,,,,1,1,,0.03,nav,1,1900,2,, 994,NJBF000069616,111 N INDIANA AVE,Atlantic City,NJ,39.36213245,-74.43423008,COM1,3003,,17,ME,1900,1900,3401,2,1,1313.597041,1313.597041,3507,NO,25.05,36.45,1,2.13,6106,114.498473,124.115605,133.906699,140.19871,I,Above,Flat,0,NaN,Wood,30.74692935,0,0,,,,1,1,,0.03,nav,1,1900,2,, 995,NJBF000066075,4011 VAN RENSELEER AVE,Atlantic City,NJ,39.34884229,-74.45774934,RES3A,3001,,27,NE,1900,1900,3301,2,2,694.8282256,694.8282256,3504,YES,26.62,38.69,-4,0,6106,114.152868,123.831601,133.5855,140.025465,I,Above,Flat,0,5701,Wood,32.65956506,0,0,,,,1,1,,0.03,nav,1,1900,2,, 996,NJBF000066056,4015 VAN RENSELEER AVE,Atlantic City,NJ,39.34880089,-74.45783832,RES3A,3001,,27,NE,1900,1900,3301,2,2,1416.217104,1416.217104,3504,YES,28.28,36.8,-4,0,6106,114.151447,123.830441,133.584211,140.024684,I,Above,Flat,0,5701,Wood,32.53729181,0,0,,,,1,1,,0.03,nav,1,1900,2,, 997,NJBF000069672,138 N INDIANA AVE,Atlantic City,NJ,39.36272349,-74.43515517,COM1,3003,,NaN,ME,1969,0,3401,6,1,4908.233527,4908.233527,3507,NO,112.66,125.72,1,1.27,6106,114.471429,124.092509,133.881894,140.175814,I,Above,Flat,0,NaN,Wood,119.1904153,0,0,,,,1,1,,0.03,nav,1,1969,6,, 998,NJBF000068512,23 N BELLEVUE AVE,Atlantic City,NJ,39.35697167,-74.4428209,RES3B,3001,,33,ME,1900,1900,3301,3,1,1665.199704,1665.199704,3505,YES,46.25,52.61,3,-0.23,6106,114.375816,124.014185,133.791042,140.138952,I,Above,Hip,0,NaN,Wood,49.42705582,0,0,,,,1,1,,0.03,nav,1,1900,3,, 999,NJBF000066026,4219-23 VENTNOR AVE,Atlantic City,NJ,39.34871266,-74.46112228,RES3A,3001,738,NaN,NE,1969,0,3301,2,2,2501.122921,2501.122921,3505,YES,37.64,50.41,3,8.88,6106,114.080703,123.77225,133.52132,139.974153,I,Above,Hip,0,5701,Wood,44.02821167,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1000,NJBF000066039,38 N DELANCY PL,Atlantic City,NJ,39.34874698,-74.46269629,RES3A,3001,,17,NE,1900,1900,3301,2,1,939.940699,939.940699,3505,NO,29.89,41.99,3,3.83,6106,114.045775,123.743552,133.490414,139.948554,I,Above,Hip,0,5701,Wood,35.93813422,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1001,NJBF000069692,117 N INDIANA AVE,Atlantic City,NJ,39.362983,-74.434605,EDU1,3004,,NaN,E,1969,0,3401,2,1,5398.884448,5398.884448,3507,NO,31.52,46.04,1,0.37,6106,114.480149,124.099782,133.890104,140.180698,I,Above,Flat,0,NaN,Wood,38.78002512,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1002,NJBF000068659,2816 FAIRMOUNT AVE,Atlantic City,NJ,39.35734232,-74.44827364,RES3A,3001,,45,NE,1900,1900,3301,2,2,1413.631657,1413.631657,3505,NO,31,44.7,3,6.22,6106,114.252894,123.911379,133.679317,140.047936,I,Above,Hip,0,5701,Wood,37.849739,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1003,NJBF000068774,105 N CALIFORNIA RR #A,Atlantic City,NJ,39.3575975,-74.4451015,RES3A,3001,,33,NE,1900,1900,3301,2,1,592.2174412,592.2174412,3505,YES,25.51,32.88,3,4.02,6106,114.318662,123.966149,133.739198,140.094147,I,Above,Flat,0,5701,Wood,29.19246391,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1004,NJBF000068794,107 N CALIFORNIA RR #B,Atlantic City,NJ,39.357636,-74.4451285,RES3A,3001,,33,NE,1900,1900,3301,2,1,554.0161658,554.0161658,3505,YES,22.57,34.59,3,0.24,6106,114.317619,123.965261,133.738264,140.093168,I,Above,Flat,0,5701,Wood,28.57971908,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1005,NJBF000068537,115 N BRIGHTON AVE,Atlantic City,NJ,39.35704989,-74.44856011,RES3A,3001,,27,NE,1900,1900,3301,2,2,1503.119892,1503.119892,3505,YES,22.73,29.86,3,-1.84,6106,114.250269,123.90932,133.676832,140.04774,I,Above,Gable,0,5701,Wood,26.29518723,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1006,NJBF000068836,130 MAXWELL AVE,Atlantic City,NJ,39.3577535,-74.447064,COM1,3003,,17,ME,1920,1920,3401,2,1,623.0083277,623.0083277,3507,YES,21.15,35.8,1,-0.37,6106,114.274132,123.928903,133.698745,140.060956,I,Above,Flat,0,NaN,Wood,28.47507761,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1007,NJBF000068589,2836 FAIRMOUNT AVE,Atlantic City,NJ,39.35718648,-74.44865337,RES3A,3001,,27,NE,1900,1900,3301,2,2,1497.250165,1497.250165,3505,YES,31.86,44.18,3,5.5,6106,114.246572,123.906181,133.67353,140.044256,I,Above,Gable,0,5701,Wood,38.02174161,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1008,NJBF000068607,2832 FAIRMOUNT AVE,Atlantic City,NJ,39.35722883,-74.44856086,RES3A,3001,738,NaN,NE,1969,0,3301,2,1,1359.110726,1359.110726,3505,NO,20.47,25.53,3,-1.6,6106,114.248043,123.907388,133.674879,140.045073,I,Above,Flat,0,5701,Wood,23.00019257,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1009,NJBF000068680,2812 FAIRMOUNT AVE,Atlantic City,NJ,39.35739755,-74.448106,RES3A,3001,,33,NE,1900,1900,3301,2,1,1559.141866,1559.141866,3505,YES,33.7,39.69,3,7.67,6106,114.255859,123.913824,133.682026,140.049762,I,Above,Gable,0,5701,Wood,36.69612492,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1010,NJBF000069797,203 S METROPOLITAN AVE,Atlantic City,NJ,39.36408003,-74.41399796,RES3A,3001,,17,NE,1900,1900,3301,2,1,887.7478058,887.7478058,3505,YES,35.71,44.33,3,-2.29,6106,114.907427,124.464882,134.293642,140.483365,I,Above,Flat,0,5701,Wood,40.02048098,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1011,NJBF000069473,118 S NORTH CAROLINA AVE,Atlantic City,NJ,39.36069573,-74.42438847,COM1,3003,530,NaN,ME,1969,0,3401,4,1,21946.15617,21946.15617,3507,NO,60.68,71.12,1,1.89,6106,114.727073,124.31022,134.11927,140.370864,I,Above,Flat,0,NaN,Wood,65.89886771,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1012,NJBF000069349,135 S OCEAN AVE,Atlantic City,NJ,39.35978756,-74.42575801,COM1,3001,,45,ME,1900,1900,3401,3,2,1370.075414,1370.075414,3507,YES,43.86,52.37,1,-0.21,6106,114.708825,124.294767,134.101318,140.362442,I,Above,Flat,0,NaN,Wood,48.11267835,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1013,NJBF000070345,130 N VIRGINIA AVE,Atlantic City,NJ,39.36677133,-74.42509776,RES1,3001,,17,NE,2000,2000,3102,2,1,1056.514846,1056.514846,3505,NO,29.43,36.01,3,-0.98,6106,114.63892,124.233514,134.040653,140.275451,I,Above,Hip,0,5701,Wood,32.72069625,0,0,,,,1,1,,0.03,nav,1,2000,2,, 1014,NJBF000070310,128 N VIRGINIA AVE,Atlantic City,NJ,39.36665675,-74.4250235,RES1,3001,,27,NE,2000,2000,3102,2,2,1978.001191,1978.001191,3505,NO,25.43,31.21,3,0.65,6106,114.641875,124.23608,134.043377,140.278214,I,Above,Hip,0,5701,Wood,28.32463792,0,0,,,,1,1,,0.03,nav,1,2000,2,, 1015,NJBF000069282,159 S TENNESSEE AVE,Atlantic City,NJ,39.359507,-74.4261195,COM1,3001,,45,ME,1925,1925,3401,2,2,671.7093273,671.7093273,3507,YES,25.55,37.89,1,0.65,6106,114.704528,124.29114,134.097036,140.360806,I,Above,Hip,0,NaN,Wood,31.72032018,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1016,NJBF000069239,167 S TENNESSEE AVE,Atlantic City,NJ,39.3593059,-74.42599482,COM1,3001,100,NaN,ME,1969,0,3401,4,1,2424.080727,2424.080727,3507,YES,73.35,83.43,1,0.39,6106,114.709641,124.295517,134.101645,140.365479,I,Above,Flat,0,NaN,Wood,78.38775883,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1017,NJBF000068309,105 N MORRIS AVE,Atlantic City,NJ,39.3563104,-74.44920276,RES3A,3001,,45,NE,1900,1900,3301,2,3,1467.868116,1467.868116,3505,NO,41.41,56.25,3,7.33,6106,114.24541,123.905592,133.672153,140.048548,I,Above,Hip,0,5701,Wood,48.82959548,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1018,NJBF000068330,105 N MORRIS AVE,Atlantic City,NJ,39.35638604,-74.44898332,RES3A,3001,,45,NE,1900,1900,3301,2,3,1283.641254,1283.641254,3505,NO,38.93,51.76,3,8.01,6106,114.249257,123.908762,133.675665,140.050894,I,Above,Hip,0,5701,Wood,45.34731558,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1019,NJBF000071676,718 WABASH AVE,Atlantic City,NJ,39.3712466,-74.42412142,RES1,3001,,15,NE,2009,2009,3102,2,1,1212.018621,1212.018621,3505,NO,27.58,38.53,3,3.13,6106,114.607205,124.204582,134.01272,140.227947,I,Above,Gable,0,5701,Wood,33.05839809,0,0,,,,1,1,,0.03,nav,1,2009,2,, 1020,NJBF000068298,119 N CHELSEA AVE,Atlantic City,NJ,39.35626801,-74.45040531,RES3A,3001,,45,NE,1925,1925,3301,2,3,1599.472931,1599.472931,3505,NO,27.29,36.02,3,3.44,6106,114.219766,123.884283,133.648949,140.030173,I,Above,Gable,0,5701,Wood,31.65270929,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1021,NJBF000069116,2306 ARCTIC AVE,Atlantic City,NJ,39.35882932,-74.44069136,COM1,3003,,17,ME,1910,1910,3401,2,1,979.920449,979.920449,3507,YES,31.92,40.61,1,1.19,6106,114.399136,124.033083,133.813351,140.145303,I,Above,Flat,0,NaN,Wood,36.26731673,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1022,NJBF000069120,2304 ARCTIC AVE,Atlantic City,NJ,39.35884149,-74.44061312,COM1,3003,738,NaN,ME,1969,0,3401,2,1,1493.509819,1493.509819,3507,YES,38.02,45.58,1,0.05,6106,114.400677,124.034372,133.814771,140.146348,I,Above,Flat,0,NaN,Wood,41.80035647,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1023,NJBF000070137,902 ARCTIC AVE,Atlantic City,NJ,39.3659785,-74.422991,COM1,3003,,17,ME,1900,1900,3401,2,1,692.230806,692.230806,3507,NO,33.13,39.96,1,2.91,6106,114.693352,124.28037,134.0916,140.319229,I,Above,Flat,0,NaN,Wood,36.54350426,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1024,NJBF000068374,203 N MONTPELIER AVE,Atlantic City,NJ,39.35655148,-74.45181894,RES3A,3001,,45,NE,1905,1905,3301,2,2,2145.410724,2145.410724,3507,YES,28.05,33.22,1,0.74,6106,114.185468,123.855663,133.618083,140.003516,I,Above,Flat,0,5701,Wood,30.63388437,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1025,NJBF000068423,207 N MONTPELIER AVE,Atlantic City,NJ,39.35671803,-74.45160994,RES3A,3001,,45,NE,1900,1905,3301,2,2,3751.57388,3751.57388,3507,YES,24.07,32.88,1,1.92,6106,114.187963,123.857656,133.620383,140.00434,I,Above,Flat,0,5701,Wood,28.47260771,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1026,NJBF000070302,102 CHESAPEAKE BAY CT,Atlantic City,NJ,39.36662457,-74.42237535,RES1,3001,,28,NE,2004,2004,3102,2,2,2113.398267,2113.398267,3505,NO,35.64,42.29,3,8.94,6106,114.698805,124.284877,134.097191,140.319789,I,Above,Hip,0,5701,Wood,38.9609736,0,0,,,,1,1,,0.03,nav,1,2004,2,, 1027,NJBF000068305,3100 FAIRMOUNT AVE,Atlantic City,NJ,39.3562884,-74.45092446,RES3A,3001,,45,NE,1900,1900,3301,2,2,1413.290078,1413.290078,3505,NO,38.6,46.42,3,-0.22,6106,114.208216,123.874676,133.638524,140.021655,I,Above,Hip,0,5701,Wood,42.50993707,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1028,NJBF000069194,145 S OCEAN AVE,Atlantic City,NJ,39.3591385,-74.425291,COM1,3001,100,NaN,ME,1969,0,3401,3,1,1873.115318,1873.115318,3507,YES,42.46,48.97,1,-0.84,6106,114.726755,124.310114,134.117538,140.378534,I,Above,Flat,0,NaN,Wood,45.71157304,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1029,NJBF000071713,611 ADRIATIC AVE,Atlantic City,NJ,39.3713625,-74.422684,RES1,3001,220,NaN,NE,1969,0,3102,1,1,771.9715692,771.9715692,3505,NO,17.88,25.27,3,3.04,6106,114.636518,124.22973,134.0406,140.248908,I,Above,Flat,0,5701,Wood,21.57528454,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1030,NJBF000068354,3022 FAIRMOUNT AVE,Atlantic City,NJ,39.3564669,-74.45040108,RES3A,3001,,45,NE,1925,1925,3301,2,2,986.4409839,986.4409839,3505,YES,27.97,40.38,3,3.21,6106,114.217395,123.882224,133.646876,140.027274,I,Above,Gable,0,5701,Wood,34.17714305,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1031,NJBF000068347,3024 FAIRMOUNT AVE,Atlantic City,NJ,39.3564475,-74.450454,RES3A,3001,,45,NE,1925,1925,3301,2,2,905.4927974,905.4927974,3505,YES,22.5,29.75,3,1,6106,114.216475,123.881469,133.646039,140.026718,I,Above,Gable,0,5701,Wood,26.12148838,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1032,NJBF000070267,119 N VIRGINIA AVE,Atlantic City,NJ,39.36648773,-74.4243379,RES1,3001,,27,NE,2000,2000,3102,2,2,1978.424489,1978.424489,3505,NO,35.62,41.46,3,0.48,6106,114.65852,124.250383,134.058996,140.291228,I,Above,Hip,0,5701,Wood,38.54122331,0,0,,,,1,1,,0.03,nav,1,2000,2,, 1033,NJBF000069081,32 N MISSISSIPPI AVE,Atlantic City,NJ,39.35869323,-74.44034951,COM1,3003,,17,ME,1920,1920,3401,2,1,1026.099701,1026.099701,3507,YES,21.32,27.57,1,0.16,6106,114.408177,124.040723,133.821579,140.152593,I,Above,Flat,0,NaN,Wood,24.44559491,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1034,NJBF000069106,36 N MISSISSIPPI AVE,Atlantic City,NJ,39.35878958,-74.44042778,COM1,3003,,17,ME,1920,1920,3401,3,1,776.6981008,776.6981008,3507,YES,42.89,52.02,1,2.75,6106,114.405303,124.038275,133.818991,140.149974,I,Above,Hip,0,NaN,Wood,47.45184517,0,0,,,,1,1,,0.03,nav,1,1920,3,, 1035,NJBF000069092,34 N MISSISSIPPI AVE,Atlantic City,NJ,39.35875134,-74.44038368,COM1,3003,100,NaN,ME,1969,0,3401,2,1,775.4548467,775.4548467,3507,YES,29.01,41.7,1,0.64,6106,114.406732,124.039488,133.820282,140.151224,I,Above,Gable,0,NaN,Wood,35.35798513,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1036,NJBF000068323,3121 FAIRMOUNT AVE,Atlantic City,NJ,39.35635575,-74.45174783,RES3A,3001,,45,NE,1910,1910,3301,2,2,1501.696937,1501.696937,3507,YES,24.65,31.19,1,-0.84,6106,114.189423,123.859038,133.62159,140.007562,I,Above,Gable,0,5701,Wood,27.92092584,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1037,NJBF000071365,,Atlantic City,NJ,39.370371,-74.44028233,RES3A,3001,,NaN,NE,1969,0,3301,2,1,3074.449272,3074.449272,3505,NO,35.61,49.08,3,6.95,6106,114.2705,123.9183,133.696988,139.983287,I,Above,Gable,0,5701,Wood,42.34466266,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1038,NJBF000071265,,Atlantic City,NJ,39.36999165,-74.44029971,RES3A,3001,,NaN,NE,1969,0,3301,2,1,4606.856919,4606.856919,3505,NO,37.54,44.03,3,7.53,6106,114.274508,123.921971,133.70074,139.988567,I,Above,Flat,0,5701,Wood,40.78480686,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1039,NJBF000071353,1607 MCKINLEY AVE,Atlantic City,NJ,39.37032032,-74.43756242,RES1,3001,,16,NE,1955,1955,3101,1,1,1239.993191,1239.993191,3505,NO,17.93,26.11,3,0.79,6106,114.329748,123.968457,133.751978,140.027801,I,Above,Flat,0,5701,Wood,22.02247228,0,0,,,,1,1,,0.03,nav,1,1955,1,, 1040,NJBF000072259,634 SEWELL AVE,Atlantic City,NJ,39.37305484,-74.42385314,RES1,3001,,16,NE,1950,1950,3102,1,1,814.8809946,814.8809946,3505,NO,23.3,35.17,3,8,6106,114.591964,124.190619,133.998831,140.206736,I,Above,Flat,0,5701,Wood,29.23770994,0,0,,,,1,1,,0.03,nav,1,1950,1,, 1041,NJBF000069037,2703 FAIRMOUNT AVE,Atlantic City,NJ,39.35848566,-74.44665808,RES3A,3001,,27,NE,1969,1930,3301,2,2,10240.35686,10240.35686,3505,YES,26.37,32.92,3,3.42,6106,114.27398,123.92845,133.698866,140.056569,I,Above,Flat,0,5701,Wood,29.64813486,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1042,NJBF000072269,512 N CONNECTICUT AVE,Atlantic City,NJ,39.37310456,-74.42293678,RES1,3001,,45,NE,1900,1900,3102,2,2,1626.326375,1626.326375,3505,YES,42.82,50.1,3,3.93,6106,114.610915,124.206904,134.01687,140.220486,I,Above,Gable,0,5701,Wood,46.46066001,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1043,NJBF000071356,1700 W RIVERSIDE DR,Atlantic City,NJ,39.37033263,-74.4528602,RES1,3001,649,NaN,NE,1969,0,3101,2,1,5043.542736,5043.542736,3505,NO,34.6,47.21,3,5.27,6106,113.998349,123.689828,133.447193,139.778109,I,Above,Hip,0,5701,Wood,40.90392102,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1044,NJBF000072208,615 CASPIAN AVE,Atlantic City,NJ,39.37291283,-74.423111,RES1,3001,,16,NE,1908,1908,3102,1,1,1374.149074,1374.149074,3505,NO,15.23,26.72,3,1.9,6106,114.609425,124.205714,134.015393,140.22044,I,Above,Gable,0,5701,Wood,20.97524568,0,0,,,,1,1,,0.03,nav,1,1908,1,, 1045,NJBF000071587,723 ADRIATIC AVE,Atlantic City,NJ,39.37100451,-74.42374306,RES1,3001,,17,NE,2002,2002,3102,2,1,1060.779692,1060.779692,3505,NO,34.22,45.1,3,3.59,6106,114.618089,124.214039,134.022955,140.237287,I,Above,Hip,0,5701,Wood,39.65600927,0,0,,,,1,1,,0.03,nav,1,2002,2,, 1046,NJBF000072196,619 CASPIAN AVE,Atlantic City,NJ,39.37286358,-74.42335315,RES1,3001,,17,NE,1929,1929,3102,2,1,3867.365154,3867.365154,3505,YES,42.9,51.46,3,8.31,6106,114.604832,124.201785,134.011009,140.217312,I,Above,Hip,0,5701,Wood,47.18216719,0,0,,,,1,1,,0.03,nav,1,1929,2,, 1047,NJBF000071742,607 ADRIATIC AVE,Atlantic City,NJ,39.37147465,-74.42253985,RES1,3001,,17,NE,1900,1900,3102,2,1,997.5009961,997.5009961,3505,YES,32.64,41.59,3,4.46,6106,114.638273,124.231192,134.042315,140.249587,I,Above,Hip,0,5701,Wood,37.11170833,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1048,NJBF000072263,500 CASPIAN AVE #A,Atlantic City,NJ,39.37306762,-74.42177933,RES1,3001,,17,NE,1900,1900,3102,1,1,1195.301834,1195.301834,3505,NO,17.47,28.53,3,2.52,6106,114.636012,124.228543,134.040763,140.239248,I,Above,Flat,0,5701,Wood,22.99822428,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1049,NJBF000065679,27 N ABERDEEN PL,Atlantic City,NJ,39.34779307,-74.46397575,RES3A,3001,,17,NE,1900,1900,3301,1,1,2120.281937,2120.281937,3505,NO,17.82,30.36,3,3.53,6106,114.029955,123.730888,133.475987,139.94278,I,Above,Hip,0,5701,Wood,24.09054729,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1050,NJBF000065650,25 N ABERDEEN PL,Atlantic City,NJ,39.3477107,-74.46394305,RES3A,3001,,17,NE,1920,1920,3301,2,1,1314.278781,1314.278781,3505,YES,30.35,40.26,3,1.07,6106,114.031734,123.732373,133.477518,139.944573,I,Above,Gable,0,5701,Wood,35.30152084,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1051,NJBF000065935,4507 WINCHESTER AVE,Atlantic City,NJ,39.34848392,-74.4651314,RES3A,3001,,17,NE,1903,1903,3301,1,1,1751.054755,1751.054755,3505,NO,19.95,26.02,3,1.4,6106,113.995731,123.702609,133.446119,139.913519,I,Above,Hip,0,5701,Wood,22.98150392,0,0,,,,1,1,,0.03,nav,1,1903,1,, 1052,NJBF000066500,4009 VENTNOR AVE,Atlantic City,NJ,39.34990923,-74.45863376,COM1,3004,738,NaN,ME,1969,0,3401,2,1,698.3688504,698.3688504,3507,YES,33.79,41.66,1,0.44,6106,114.119897,123.80411,133.556722,139.995412,I,Above,Flat,0,NaN,Wood,37.72447826,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1053,NJBF000065606,15 N PLAZA PL,Atlantic City,NJ,39.34759073,-74.46563923,RES3A,3001,,18,NE,1900,1900,3301,2,1,1877.584949,1877.584949,3505,YES,40.83,51.15,3,3.1,6106,113.996064,123.703187,133.446021,139.919211,I,Above,Hip,0,5701,Wood,45.9878191,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1054,NJBF000065943,113 N TALLAHASSEE AVE,Atlantic City,NJ,39.34850089,-74.46552045,RES3A,3001,,17,NE,1900,1900,3301,2,1,1321.421246,1321.421246,3505,NO,31.77,45.42,3,-2.39,6106,113.986974,123.69543,133.43841,139.906972,I,Above,Flat,0,5701,Wood,38.59699188,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1055,NJBF000065961,110 N TALLAHASSEE AVE,Atlantic City,NJ,39.34855417,-74.46599105,RES3A,3001,,18,NE,1900,1900,3301,2,1,510.3200265,510.3200265,3505,NO,23.57,37.37,3,1.48,6106,113.975952,123.686386,133.428725,139.898523,I,Above,Flat,0,5701,Wood,30.46906936,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1056,NJBF000066542,5 S ELBERON AVE,Atlantic City,NJ,39.35002222,-74.45724501,COM1,3004,,45,ME,1900,1900,3401,2,2,879.0064339,879.0064339,3507,YES,30.04,44.9,1,-0.5,6106,114.148834,123.827924,133.582556,140.01564,I,Above,Hip,0,NaN,Wood,37.47041926,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1057,NJBF000069414,,Atlantic City,NJ,39.36020974,-74.43117194,COM1,3003,,NaN,ME,1969,0,3401,3,1,14683.15897,14683.15897,3507,NO,43.58,53.63,1,1.26,6106,114.587552,124.191618,133.988331,140.273379,I,Above,Flat,0,NaN,Wood,48.60608973,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1058,NJBF000065808,104 N TALLAHASSEE AVE,Atlantic City,NJ,39.34816247,-74.46575879,RES3A,3001,,17,NE,1900,1900,3301,2,1,1691.577929,1691.577929,3505,NO,22.46,28.06,3,-1.41,6106,113.98608,123.694819,133.437482,139.908389,I,Above,Hip,0,5701,Wood,25.26198413,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1059,NJBF000065675,4403 VENTNOR AVE,Atlantic City,NJ,39.34778035,-74.46300009,RES3A,3001,738,NaN,NE,1969,0,3301,2,1,3059.428169,3059.428169,3505,NO,27.84,41.35,3,0.93,6106,114.051525,123.748582,133.495028,139.958564,I,Above,Hip,0,5701,Wood,34.59478119,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1060,NJBF000069542,14 S TENNESSEE AVE,Atlantic City,NJ,39.36145707,-74.42793353,COM1,3003,100,NaN,ME,1969,0,3401,3,1,4057.140962,4057.140962,3507,YES,60.34,71.87,1,2.44,6106,114.641908,124.237505,134.039986,140.305838,I,Above,Flat,0,NaN,Wood,66.10780373,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1061,NJBF000069506,1401 MEMORIAL AVE,Atlantic City,NJ,39.361036,-74.4278945,COM1,3003,100,NaN,ME,1969,0,3401,2,22,2204.112773,2204.112773,3507,NO,33.55,44.99,1,1.92,6106,114.647872,124.242667,134.04525,140.312332,I,Above,Flat,0,NaN,Wood,39.26868649,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1062,NJBF000067439,5 N SOVEREIGN AVE,Atlantic City,NJ,39.35349754,-74.45081782,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,1680.223714,1680.223714,3504,YES,32.55,44.62,-4,0,6106,114.245222,123.906516,133.670739,140.064789,I,Above,Flat,0,NaN,Wood,38.58515146,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1063,NJBF000067911,2619 MONTEREY AVE,Atlantic City,NJ,39.35498721,-74.44364774,RES3A,3004,,17,NE,1930,1930,3301,3,1,963.5863711,963.5863711,3505,YES,57.42,62.97,3,3.07,6106,114.382466,124.020367,133.795967,140.154849,I,Above,Hip,0,5701,Wood,60.19513116,0,0,,,,1,1,,0.03,nav,1,1930,3,, 1064,NJBF000067969,2607 MONTEREY AVE,Atlantic City,NJ,39.355197,-74.443209,RES3A,3004,,45,NE,1900,1900,3301,3,2,1770.863562,1770.863562,3505,YES,36.29,43.62,3,-0.61,6106,114.389373,124.026082,133.802394,140.158623,I,Above,Hip,0,5701,Wood,39.95475132,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1065,NJBF000067995,14 S SPRAY AVE,Atlantic City,NJ,39.35527797,-74.44360306,RES3A,3004,,45,NE,1900,1900,3301,3,2,1420.577966,1420.577966,3505,YES,39.54,47.09,3,1.51,6106,114.379825,124.018076,133.793737,140.151334,I,Above,Hip,0,5701,Wood,43.31552618,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1066,NJBF000067844,23 S CALIFORNIA AVE,Atlantic City,NJ,39.3547356,-74.44361891,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,2393.977977,2393.977977,3505,NO,39.57,52.89,3,-2.78,6106,114.386217,124.023574,133.799229,140.15893,I,Above,Hip,0,5701,Wood,46.22801621,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1067,NJBF000064974,43 S PLAZA PL,Atlantic City,NJ,39.34582226,-74.46419783,RES1,3001,,17,NE,1915,1915,3102,2,1,3201.472608,3201.472608,3504,NO,30.85,39.67,-4,0,6106,114.050568,123.748341,133.493102,139.969589,I,Above,Hip,0,5701,Wood,35.25746122,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1068,NJBF000064979,4714 VENTNOR AVE,Atlantic City,NJ,39.34583725,-74.46599222,RES3B,3001,,45,ME,1900,1900,3301,2,2,1730.153306,1730.153306,3504,NO,26.27,40.04,-4,0,6106,114.011012,123.715947,133.458287,139.940778,I,Above,Hip,0,NaN,Wood,33.15622241,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1069,NJBF000067934,2611 MONTEREY AVE,Atlantic City,NJ,39.355077,-74.44339714,RES3A,3004,,45,NE,1910,1910,3301,3,2,1402.915515,1402.915515,3505,YES,36.69,48.52,3,1.28,6106,114.386789,124.023956,133.799963,140.157442,I,Above,Hip,0,5701,Wood,42.60233405,0,0,,,,1,1,,0.03,nav,1,1910,3,, 1070,NJBF000065063,38 S TALLAHASSEE AVE,Atlantic City,NJ,39.34603693,-74.46399915,RES1,3001,,18,NE,1915,1915,3102,3,1,1956.472414,1956.472414,3504,YES,38.33,46.5,-4,0,6110,114.052141,123.749576,133.494616,139.969445,I,Above,Hip,0,5701,Wood,42.41227184,0,0,,,,1,1,,0.35,nav,1,1915,3,, 1071,NJBF000070199,526 ATLANTIC AVE,Atlantic City,NJ,39.36618825,-74.41739575,RES3D,3004,100,NaN,E,1969,0,3303,4,1,3848.929697,3848.929697,3505,YES,57.63,64.48,3,5.26,6106,114.810039,124.380648,134.202603,140.402694,I,Above,Flat,0,NaN,Wood,61.05595222,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1072,NJBF000070886,447 N TENNESSEE AVE,Atlantic City,NJ,39.36876344,-74.43230998,RES1,3001,,17,NE,1900,1900,3103,1,1,1284.957687,1284.957687,3505,NO,14.38,25.16,3,-1.39,6106,114.460894,124.080749,133.874144,140.134024,I,Above,Hip,0,5701,Wood,19.76761018,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1073,NJBF000070950,1314 CASPIAN AVE,Atlantic City,NJ,39.36895501,-74.43205933,RES1,3001,,17,NE,1939,1939,3103,2,1,649.1683656,649.1683656,3505,YES,25.26,34.48,3,0.29,6106,114.464035,124.083316,133.877127,140.135245,I,Above,Gable,0,5701,Wood,29.87060153,0,0,,,,1,1,,0.03,nav,1,1939,2,, 1074,NJBF000070129,310 N NEW YORK AVE,Atlantic City,NJ,39.36594186,-74.43246372,RES1,3001,,17,NE,1900,1900,3102,1,1,1365.430166,1365.430166,3505,NO,23.46,32.07,3,7.22,6106,114.490865,124.107619,133.901307,140.17197,I,Above,Hip,0,5701,Wood,27.76494374,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1075,NJBF000070150,1520 DREXEL AVE,Atlantic City,NJ,39.3660291,-74.43302581,RES1,3001,,17,NE,1965,1965,3102,2,1,1205.726369,1205.726369,3505,NO,19.32,27.77,3,-2.5,6106,114.477751,124.096446,133.889104,140.161889,I,Above,Hip,0,5701,Wood,23.54687397,0,0,,,,1,1,,0.03,nav,1,1965,2,, 1076,NJBF000070932,450 N OCEAN AVE,Atlantic City,NJ,39.36889393,-74.43202126,RES1,3001,,45,NE,1900,1900,3103,2,2,1165.318959,1165.318959,3505,NO,30.56,39.73,3,7.07,6106,114.465565,124.084652,133.878546,140.136721,I,Above,Gable,0,5701,Wood,35.1408011,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1077,NJBF000070989,650 HOWARD ST,Atlantic City,NJ,39.36906636,-74.43535526,RES1,3001,,17,NE,1900,1900,3101,1,1,1303.219597,1303.219597,3505,NO,14.96,21.24,3,-1.12,6106,114.391883,124.02195,133.809758,140.081307,I,Above,Gable,0,5701,Wood,18.09630818,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1078,NJBF000068278,1723 BOARDWALK,Atlantic City,NJ,39.35621601,-74.42984842,COM8,3003,100,NaN,ME,1969,0,3401,1,1,24351.97143,24351.97143,3507,YES,13.29,23.57,1,1.22,6106,114.665036,124.257929,134.057105,140.349471,I,Above,Flat,0,NaN,Wood,18.42536179,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1079,NJBF000068398,NEW YORK AVE STREET END,Atlantic City,NJ,39.3566255,-74.4259955,COM8,3003,,NaN,ME,1969,0,3401,1,1,2845.203232,2845.203232,3502,NO,9.54,21.05,5,-4.51,6102,114.742611,124.323762,134.12988,140.402393,I,Above,Flat,0,NaN,Wood,15.29923583,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1080,NJBF000068724,167 S KENTUCKY AVE,Atlantic City,NJ,39.35749095,-74.42787342,COM1,3003,100,NaN,ME,1969,0,3401,3,1,6629.555703,6629.555703,3507,NO,41.97,52.84,1,2.29,6106,114.691676,124.280417,134.083146,140.361907,I,Above,Flat,0,NaN,Wood,47.40478231,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1081,NJBF000066794,4101 WINCHESTER AVE,Atlantic City,NJ,39.35079815,-74.46045097,RES3A,3001,,45,NE,1921,1921,3301,2,2,1952.009011,1952.009011,3505,YES,26.32,38.22,3,1.52,6106,114.068828,123.761752,133.511721,139.95298,I,Above,Hip,0,5701,Wood,32.27131589,0,0,,,,1,1,,0.03,nav,1,1921,2,, 1082,NJBF000066436,9 S DOVER AVE,Atlantic City,NJ,39.34975036,-74.45774767,RES3A,3001,,17,NE,1940,1940,3301,2,1,2488.000492,2488.000492,3504,YES,31.49,36.9,-4,0,6106,114.1413,123.821797,133.575697,140.01181,I,Above,Hip,0,5701,Wood,34.19525765,0,0,,,,1,1,,0.03,nav,1,1940,2,, 1083,NJBF000067517,114 S TEXAS AVE,Atlantic City,NJ,39.35371259,-74.44184176,RES3A,3004,,17,NE,1900,1900,3301,2,1,1282.091362,1282.091362,3505,NO,44.51,51.68,3,7.87,6106,114.437487,124.066705,133.845295,140.201115,I,Above,Hip,0,5701,Wood,48.09231292,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1084,NJBF000067651,MISSISSIPPI AVE ST END,Atlantic City,NJ,39.35407112,-74.43706045,COM8,3003,,NaN,ME,1969,0,3401,1,1,1957.379194,1957.379194,3502,NO,24.12,29.83,5,6.39,6102,114.536411,124.149621,133.936216,140.269408,I,Above,Flat,0,NaN,Wood,26.97664592,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1085,NJBF000067573,MISSISSIPPI AVE ST END,Atlantic City,NJ,39.35385844,-74.43697869,COM8,3003,,NaN,ME,1969,0,3401,1,1,1056.759888,1056.759888,3502,NO,10.64,20.51,5,-0.56,6102,114.540821,124.153358,133.940086,140.273649,I,Above,Flat,0,NaN,Wood,15.57754731,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1086,NJBF000067572,106 S TEXAS AVE #A,Atlantic City,NJ,39.35385767,-74.442259,RES3A,3004,,27,NE,1910,1910,3301,3,2,862.7887664,862.7887664,3505,NO,54.55,67.15,3,-2.87,6106,114.426642,124.057599,133.835502,140.192609,I,Above,Hip,0,5701,Wood,60.85072561,0,0,,,,1,1,,0.03,nav,1,1910,3,, 1087,NJBF000067558,107 ALBION PL,Atlantic City,NJ,39.35382498,-74.44240754,RES3A,3004,,45,NE,1969,1900,3301,2,2,1138.068593,1138.068593,3505,YES,24.46,33.22,3,-0.01,6106,114.423827,124.055251,133.832909,140.190785,I,Above,Flat,0,5701,Wood,28.84163368,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1088,NJBF000067586,104 ALBION PL,Atlantic City,NJ,39.35389451,-74.44286299,RES3A,3004,29,NaN,NE,1969,0,3301,2,1,2085.20053,2085.20053,3505,NO,37.59,48.51,3,0.66,6106,114.413093,124.046258,133.823168,140.182758,I,Above,Flat,0,5701,Wood,43.04898356,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1089,NJBF000067544,4 STANLEY CT,Atlantic City,NJ,39.35377735,-74.44120274,RES3A,3004,,33,NE,1900,1920,3301,2,1,1580.281517,1580.281517,3505,YES,35.24,41.04,3,-1.96,6106,114.450523,124.077605,133.85725,140.210035,I,Above,Flat,0,5701,Wood,38.13609692,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1090,NJBF000066483,110 N RALEIGH AVE,Atlantic City,NJ,39.34987134,-74.46266338,RES3A,3001,,NaN,NE,1900,0,3301,2,1,685.6509431,685.6509431,3505,YES,26.87,32.77,3,-1.83,6106,114.032139,123.731956,133.478832,139.931776,I,Above,Flat,0,5701,Wood,29.82086967,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1091,NJBF000066256,123 N KINGSTON AVE,Atlantic City,NJ,39.34931186,-74.46466037,RES3A,3001,,45,NE,1920,1920,3301,2,2,6707.295968,6707.295968,3505,NO,42.76,53.73,3,6.43,6106,113.995465,123.702085,133.446214,139.908258,I,Above,Flat,0,5701,Wood,48.24566481,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1092,NJBF000066386,4309 WINCHESTER AVE,Atlantic City,NJ,39.34963034,-74.46280293,RES3A,3001,,27,NE,1900,1900,3301,2,2,1234.940187,1234.940187,3505,YES,43.23,57.01,3,6.92,6106,114.032142,123.732048,133.478738,139.933244,I,Above,Flat,0,5701,Wood,50.12089025,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1093,NJBF000066801,CHELSEA AVE STREET END,Atlantic City,NJ,39.3508285,-74.447038,COM8,3003,,NaN,ME,1969,0,3401,1,1,2866.753633,2866.753633,3507,NO,15.06,29,1,2.71,6102,114.361071,124.00353,133.773699,140.162627,I,Above,Flat,0,NaN,Wood,22.03096595,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1094,NJBF000066560,125 WILSON AVE,Atlantic City,NJ,39.35007249,-74.45157417,RES4,3003,,45,E,1900,1900,3404,2,2,1663.608772,1663.608772,3507,YES,23.05,34.33,1,-0.29,6106,114.271965,123.929701,133.69281,140.103544,I,Above,Flat,0,NaN,Wood,28.691922,0,0,,,,2,2,,0.03,nav,1,1900,2,, 1095,NJBF000066522,131 WILSON AVE,Atlantic City,NJ,39.34997245,-74.45150324,RES4,3003,,45,E,1928,1928,3404,2,2,716.7569545,716.7569545,3507,YES,33.43,43.87,1,0.77,6106,114.274783,123.93206,133.695276,140.106114,I,Above,Flat,0,NaN,Wood,38.65041346,0,0,,,,2,2,,0.03,nav,1,1928,2,, 1096,NJBF000066705,3401 BOARDWALK,Atlantic City,NJ,39.35052762,-74.45055204,RES4,3003,80,NaN,E,1969,0,3404,4,1,88212.42426,88212.42426,3507,NO,46.9,59.09,1,-0.95,6106,114.288436,123.943248,133.707931,140.112701,I,Above,Gable,0,NaN,Wood,52.99520732,0,0,,,,2,2,,0.03,nav,1,1969,4,, 1097,NJBF000066181,117 N KINGSTON AVE,Atlantic City,NJ,39.34913167,-74.46454798,RES3A,3001,,17,NE,1900,1900,3301,2,1,1523.170793,1523.170793,3505,NO,43.98,52.7,3,7.37,6106,114.000225,123.706054,133.450343,139.912862,I,Above,Flat,0,5701,Wood,48.34021563,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1098,NJBF000066549,118 N RALEIGH AVE,Atlantic City,NJ,39.35002916,-74.4628426,RES3A,3001,,45,NE,1920,1920,3301,3,2,1795.485584,1795.485584,3505,YES,53.51,58.56,3,-2.54,6106,114.02618,123.727003,133.473621,139.926446,I,Above,Hip,0,5701,Wood,56.03631441,0,0,,,,1,1,,0.03,nav,1,1920,3,, 1099,NJBF000066288,122 N BARTRAM AVE,Atlantic City,NJ,39.34937228,-74.46431329,RES3A,3001,,17,NE,1900,1900,3301,2,1,1507.767536,1507.767536,3505,NO,35.46,46.03,3,1.64,6106,114.002314,123.707676,133.45228,139.91293,I,Above,Hip,0,5701,Wood,40.74348431,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1100,NJBF000066254,17 S PARKER AVE,Atlantic City,NJ,39.3493104,-74.4581986,RES3A,3001,,45,NE,1910,1910,3301,2,2,1644.285206,1644.285206,3504,YES,27.07,33.34,-4,0,6106,114.137048,123.818428,133.571677,140.011336,I,Above,Flat,0,5701,Wood,30.20564972,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1101,NJBF000066247,40 S ELBERON AVE,Atlantic City,NJ,39.34929533,-74.45713124,RES3A,3001,,45,NE,1932,1932,3301,2,2,1329.438337,1329.438337,3504,YES,21.23,27.08,-4,0,6106,114.16059,123.837838,133.59264,140.028365,I,Above,Hip,0,5701,Wood,24.15133262,0,0,,,,1,1,,0.03,nav,1,1932,2,, 1102,NJBF000066626,103 N LACLEDE PL,Atlantic City,NJ,39.35028133,-74.46162012,RES3A,3001,,45,NE,1900,1900,3301,2,2,1356.767555,1356.767555,3505,NO,33.92,47.92,3,8.22,6106,114.049783,123.746292,133.49462,139.942198,I,Above,Gable,0,5701,Wood,40.91900136,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1103,NJBF000066217,41 S DOVER AVE,Atlantic City,NJ,39.34921306,-74.45730992,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,1482.231785,1482.231785,3504,NO,32.31,41.03,-4,0,6106,114.157724,123.835499,133.590039,140.026785,I,Above,Hip,0,5701,Wood,36.66746753,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1104,NJBF000070359,117 N MARYLAND AVE,Atlantic City,NJ,39.36683209,-74.42301411,RES1,3001,,45,NE,1900,1900,3102,2,2,1515.951333,1515.951333,3505,YES,29.12,35.94,3,1.65,6106,114.682712,124.271014,134.082083,140.306998,I,Above,Hip,0,5701,Wood,32.5287298,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1105,NJBF000066213,16 S PARKER AVE,Atlantic City,NJ,39.34920585,-74.45842002,RES3A,3001,,16,NE,1900,1900,3301,1,1,1224.284868,1224.284868,3504,NO,17.43,31.47,-4,0,6106,114.133542,123.815572,133.5685,140.009422,I,Above,Flat,0,5701,Wood,24.44884375,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1106,NJBF000066186,21 S ANNAPOLIS AVE,Atlantic City,NJ,39.34914256,-74.4583984,RES3A,3001,,17,NE,1900,1900,3301,3,1,719.8444991,719.8444991,3504,NO,34.2,40.87,-4,0,6106,114.134828,123.81665,133.56961,140.01072,I,Above,Flat,0,5701,Wood,37.53456053,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1107,NJBF000068039,17 N BRIGHTON AVE,Atlantic City,NJ,39.355428,-74.4473365,RES3B,3001,100,NaN,ME,1969,0,3301,3,1,1765.70425,1765.70425,3504,YES,47.35,61.15,-4,0,6106,114.296908,123.948819,133.718424,140.090901,I,Above,Hip,0,NaN,Wood,54.25047925,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1108,NJBF000066717,130 N LACLEDE PL,Atlantic City,NJ,39.35056334,-74.46233937,RES3A,3001,,17,NE,1910,1910,3301,2,1,1028.387343,1028.387343,3505,NO,37.04,50.01,3,1.67,6106,114.03044,123.73029,133.477591,139.926315,I,Above,Hip,0,5701,Wood,43.52496628,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1109,NJBF000067978,18 N BRIGHTON AVE,Atlantic City,NJ,39.35522337,-74.44779982,RES3B,3001,,17,ME,1910,1910,3301,2,1,1970.124284,1970.124284,3504,NO,28.91,42.24,-4,0,6106,114.289389,123.942629,133.711507,140.086659,I,Above,Flat,0,NaN,Wood,35.57587253,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1110,NJBF000068168,33 N BRIGHTON AVE,Atlantic City,NJ,39.35588661,-74.44771979,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,2939.208639,2939.208639,3504,YES,26.01,39.74,-4,0,6106,114.282894,123.936973,133.705932,140.078144,I,Above,Gable,0,NaN,Wood,32.87538524,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1111,NJBF000065604,136 S DOVER AVE,Atlantic City,NJ,39.34758589,-74.45650225,RES1,3001,,18,NE,1999,1999,3102,3,1,1740.616416,1740.616416,3504,NO,34.83,46.79,-4,0,6106,114.19623,123.867664,133.623346,140.063746,I,Above,Gable,0,5701,Wood,40.80665222,0,0,,,,1,1,,0.03,nav,1,1999,3,, 1112,NJBF000065170,100 S DELANCY PL,Atlantic City,NJ,39.3462995,-74.4608975,RES3A,3001,,18,NE,1925,1925,3301,3,1,504.1536212,504.1536212,3504,YES,40.55,53.63,-4,0,6106,114.116681,123.802473,133.551811,140.014362,I,Above,Flat,0,5701,Wood,47.09400546,0,0,,,,1,1,,0.03,nav,1,1925,3,, 1113,NJBF000065163,121 S DELANCY PL,Atlantic City,NJ,39.34629185,-74.4601999,RES3A,3001,,21,NE,1918,1918,3301,2,1,2956.389699,2956.389699,3504,YES,24.38,36.62,-4,0,6106,114.132064,123.815117,133.565436,140.025422,I,Above,Flat,0,5701,Wood,30.50253281,0,0,,,,1,1,,0.03,nav,1,1918,2,, 1114,NJBF000070700,,Atlantic City,NJ,39.36809444,-74.4275186,RES1,3001,,NaN,NE,1969,0,3103,4,1,2120.917735,2120.917735,3505,NO,56.31,61.91,3,-1.84,6106,114.57149,124.175358,133.977735,140.219022,I,Above,Hip,0,5701,Wood,59.11077543,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1115,NJBF000070665,,Atlantic City,NJ,39.36797962,-74.42744384,RES1,3001,,NaN,NE,1969,0,3103,5,1,2014.142621,2014.142621,3505,NO,83.74,96.1,3,0.78,6106,114.574439,124.177926,133.980464,140.221808,I,Above,Hip,0,5701,Wood,89.91862367,0,0,,,,1,1,,0.03,nav,1,1969,5,, 1116,NJBF000065812,108 S DOVER AVE,Atlantic City,NJ,39.34817267,-74.45698015,RES1,3001,,18,NE,1900,1900,3102,3,1,2429.207025,2429.207025,3507,NO,42.4,52.93,1,0.17,6106,114.178247,123.852698,133.607703,140.047539,I,Above,Hip,0,5701,Wood,47.66251986,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1117,NJBF000065206,108 S RALEIGH AVE,Atlantic City,NJ,39.34640511,-74.45996271,RES3A,3001,,18,NE,1929,1929,3301,2,1,2227.499901,2227.499901,3504,YES,26.97,34.65,-4,0,6106,114.135789,123.818154,133.568813,140.027428,I,Above,Hip,0,5701,Wood,30.81065058,0,0,,,,1,1,,0.03,nav,1,1929,2,, 1118,NJBF000065060,131 S DELANCY PL,Atlantic City,NJ,39.34603318,-74.45989406,RES3A,3001,,45,NE,1920,1920,3301,2,2,510.441694,510.441694,3504,NO,34.9,44,-4,0,6106,114.142115,123.823435,133.574173,140.034104,I,Above,Flat,0,5701,Wood,39.45086873,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1119,NJBF000070860,8 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36867156,-74.41357974,RES3D,3004,,17,E,1999,1999,3303,2,1,1270.445296,1270.445296,3505,NO,35.13,40.98,3,4.81,6106,114.861557,124.424824,134.254009,140.427551,I,Above,Flat,0,NaN,Wood,38.05838582,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 1120,NJBF000070722,22 N RHODE ISLAND AVE,Atlantic City,NJ,39.36818335,-74.41644258,RES3D,3004,,NaN,E,1969,0,3303,2,1,1193.904026,1193.904026,3505,NO,24.44,29.5,3,-0.31,6106,114.806608,124.377349,134.200931,140.390075,I,Above,Flat,0,NaN,Wood,26.97131814,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1121,NJBF000070894,10 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36878039,-74.41365349,RES3D,3004,,17,E,1999,1999,3303,2,1,1269.511652,1269.511652,3505,NO,27.48,36.8,3,3.53,6106,114.858735,124.422362,134.251387,140.424957,I,Above,Hip,0,NaN,Wood,32.13711109,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 1122,NJBF000070699,43 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36809354,-74.41753022,RES3D,3004,,15,E,1930,1930,3303,15,1,822.7731661,822.7731661,3505,NO,181.75,192.47,3,2.98,6106,114.784568,124.358333,134.179797,140.374502,I,Above,Gable,0,NaN,Wood,187.1072266,0,0,,,,1,1,,0.03,nav,1,1930,15,, 1123,NJBF000070768,201 ATLANTIC AVE,Atlantic City,NJ,39.36837038,-74.41339719,RES3D,3004,,NaN,E,1969,0,3303,3,1,8215.180414,8215.180414,3505,NO,39.86,54.48,3,3.88,6106,114.869003,124.43132,134.260907,140.434472,I,Above,Gable,0,NaN,Wood,47.16938207,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1124,NJBF000069410,1501 PACIFIC AVE,Atlantic City,NJ,39.36018274,-74.42868498,COM1,3003,51,NaN,ME,1969,1970,3401,1,1,9191.302509,9191.302509,3507,NO,16.04,28.33,1,0.27,6106,114.641281,124.237229,134.038422,140.312068,I,Above,Flat,0,NaN,Wood,22.18495151,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1125,NJBF000070062,516 WISTAR PL,Atlantic City,NJ,39.3656669,-74.41680566,RES3D,3004,,16,E,1900,1900,3303,2,1,519.4648299,519.4648299,3505,YES,34.53,40.92,3,6.9,6106,114.828794,124.396891,134.220046,140.418879,I,Above,Hip,0,NaN,Wood,37.72026376,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1126,NJBF000069731,12 S VIRGINIA AVE,Atlantic City,NJ,39.3634806,-74.42304101,COM1,3003,100,NaN,ME,1969,0,3401,3,1,7112.780074,7112.780074,3507,YES,38.09,45.03,1,1.22,6106,114.722169,124.305606,134.117003,140.353069,I,Above,Flat,0,NaN,Wood,41.55911329,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1127,NJBF000069659,1009 PACIFIC AVE,Atlantic City,NJ,39.36255684,-74.42267151,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2107.541552,2107.541552,3507,NO,15.21,27.51,1,2.22,6106,114.741186,124.322035,134.134195,140.371497,I,Above,Flat,0,NaN,Wood,21.36207073,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1128,NJBF000068221,26 S GEORGIA AVE,Atlantic City,NJ,39.35604313,-74.44024612,COM1,3003,,45,ME,1969,1920,3401,2,2,1513.434823,1513.434823,3507,NO,27.85,40.28,1,2.89,6106,114.443043,124.070805,133.852004,140.192352,I,Above,Flat,0,NaN,Wood,34.06822952,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1129,NJBF000067800,30 S SPRAY AVE,Atlantic City,NJ,39.35456481,-74.44313277,RES3A,3004,,45,NE,1920,1920,3301,3,3,1554.762628,1554.762628,3505,NO,38.74,49.23,3,6.53,6106,114.398882,124.034208,133.810664,140.16893,I,Above,Gable,0,5701,Wood,43.98755217,0,0,,,,1,1,,0.03,nav,1,1920,3,, 1130,NJBF000068123,29 S FLORIDA AVE RR #B,Atlantic City,NJ,39.35572676,-74.44067533,COM1,3003,,33,ME,1930,1930,3401,2,1,1756.017175,1756.017175,3507,NO,32.5,40.63,1,0.77,6106,114.437675,124.066387,133.846878,140.190249,I,Above,Hip,0,NaN,Wood,36.56448773,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1131,NJBF000068102,27 S FLORIDA AVE #B,Atlantic City,NJ,39.35564278,-74.4410075,COM1,3003,,17,ME,1900,1900,3401,1,1,1413.112977,1413.112977,3507,NO,18.6,31.94,1,2.05,6106,114.431532,124.061258,133.841198,140.186318,I,Above,Flat,0,NaN,Wood,25.27267328,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1132,NJBF000067802,35 S SPRAY AVE,Atlantic City,NJ,39.35456853,-74.44285332,RES3A,3004,,33,NE,1910,1910,3301,3,1,927.3023185,927.3023185,3505,YES,32.74,43.12,3,-1.78,6106,114.404901,124.03924,133.816156,140.173206,I,Above,Flat,0,5701,Wood,37.9266733,0,0,,,,1,1,,0.03,nav,1,1910,3,, 1133,NJBF000067925,34 S BELLEVUE AVE,Atlantic City,NJ,39.35504652,-74.44192842,RES3A,3004,,45,NE,1925,1925,3301,3,4,1261.672518,1261.672518,3505,YES,46.74,59.01,3,-2.89,6106,114.418992,124.050909,133.829337,140.180635,I,Above,Hip,0,5701,Wood,52.8720683,0,0,,,,1,1,,0.03,nav,1,1925,3,, 1134,NJBF000068149,27 S FLORIDA AVE RR #B,Atlantic City,NJ,39.35580554,-74.44072526,COM1,3003,,45,ME,1900,1900,3401,2,2,562.6774032,562.6774032,3507,NO,23,28.75,1,-0.76,6106,114.435614,124.064638,133.845043,140.188341,I,Above,Hip,0,NaN,Wood,25.87946682,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1135,NJBF000068160,27 S FLORIDA AVE RR #A,Atlantic City,NJ,39.35584443,-74.44074922,COM1,3003,,27,ME,1900,1900,3401,2,2,552.0157967,552.0157967,3507,NO,24.93,34.2,1,2.39,6106,114.434624,124.063797,133.844161,140.187424,I,Above,Gable,0,NaN,Wood,29.5619329,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1136,NJBF000068093,2616 ATLANTIC AVE,Atlantic City,NJ,39.35561418,-74.44355565,COM1,3003,738,NaN,ME,1969,0,3401,2,1,3192.657206,3192.657206,3507,YES,29.03,36.67,1,0.95,6106,114.376675,124.015341,133.791065,140.147197,I,Above,Flat,0,NaN,Wood,32.84948353,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1137,NJBF000067947,32 S BELLEVUE AVE,Atlantic City,NJ,39.35512474,-74.44192031,RES3A,3004,,17,NE,1900,1900,3301,2,1,837.8046624,837.8046624,3505,NO,22.38,35.21,3,1.26,6106,114.418196,124.050222,133.828661,140.179637,I,Above,Hip,0,5701,Wood,28.79543635,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1138,NJBF000067786,32 S SPRAY AVE,Atlantic City,NJ,39.354492,-74.44308069,RES3A,3004,,45,NE,1900,1900,3301,3,2,1262.708724,1262.708724,3505,YES,52.62,60.03,3,-2.19,6106,114.400919,124.03593,133.812473,140.170788,I,Above,Gable,0,5701,Wood,56.32175863,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1139,NJBF000067771,29 S CALIFORNIA AVE,Atlantic City,NJ,39.3544438,-74.44339784,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,2672.906114,2672.906114,3505,YES,37.96,49.45,3,-2.06,6106,114.394646,124.030698,133.806723,140.166574,I,Above,Hip,0,5701,Wood,43.70753666,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1140,NJBF000067625,2707 PACIFIC AVE,Atlantic City,NJ,39.35401029,-74.44411427,RES4,3003,212,NaN,E,1969,0,3404,3,1,4676.456205,4676.456205,3507,YES,56.97,65.01,1,-0.06,6106,114.384535,124.022362,133.797228,140.161758,I,Above,Flat,0,NaN,Wood,60.9881545,0,0,,,,2,2,,0.03,nav,1,1969,3,, 1141,NJBF000067958,41 S FLORIDA AVE,Atlantic City,NJ,39.35517314,-74.44079276,COM1,3003,100,NaN,ME,1969,0,3401,3,1,1301.00445,1301.00445,3507,YES,46,52.49,1,0.51,6106,114.441998,124.07015,133.85046,140.196371,I,Above,Flat,0,NaN,Wood,49.24423398,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1142,NJBF000066506,15 S ELBERON AVE,Atlantic City,NJ,39.349922,-74.457156,COM1,3004,,45,ME,1900,1900,3401,2,2,1398.166529,1398.166529,3507,NO,34.21,44.98,1,2.74,6106,114.152052,123.830609,133.585372,140.018548,I,Above,Hip,0,NaN,Wood,39.59499511,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1143,NJBF000065790,4333 VENTNOR AVE,Atlantic City,NJ,39.34811444,-74.46226629,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,3125.830092,3125.830092,3505,NO,36.39,50.29,3,4.41,6106,114.063321,123.75816,133.505626,139.965127,I,Above,Flat,0,5701,Wood,43.33763687,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1144,NJBF000065816,31 S LACLEDE PL,Atlantic City,NJ,39.34817867,-74.45989548,RES3A,3001,,17,NE,1900,1900,3301,2,1,1584.09883,1584.09883,3505,YES,30.73,44.31,3,-1.53,6106,114.114417,123.800129,133.550938,140.001696,I,Above,Hip,0,5701,Wood,37.51861039,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1145,NJBF000066410,23 S ELBERON AVE,Atlantic City,NJ,39.34968591,-74.45694412,RES3A,3001,,47,NE,1900,1900,3301,2,3,1357.809316,1357.809316,3504,NO,28.99,39.54,-4,0,6106,114.159691,123.836982,133.592057,140.025432,I,Above,Hip,0,5701,Wood,34.26200367,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1146,NJBF000065782,3 N BARTRAM AVE,Atlantic City,NJ,39.34808095,-74.46277963,RES3A,3001,,45,NE,1900,1900,3301,2,3,1503.469506,1503.469506,3505,NO,26.96,34.5,3,5.94,6106,114.052478,123.749271,133.496022,139.957448,I,Above,Hip,0,5701,Wood,30.72676136,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1147,NJBF000065619,4409 VENTNOR AVE,Atlantic City,NJ,39.34762591,-74.46335316,RES3A,3001,,45,NE,1915,1915,3301,2,2,1494.313031,1494.313031,3505,NO,31.24,41.06,3,2.92,6106,114.045768,123.743906,133.489864,139.955304,I,Above,Hip,0,5701,Wood,36.14808158,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1148,NJBF000066476,3920 VENTNOR AVE,Atlantic City,NJ,39.34985636,-74.45783637,COM1,3004,,NaN,ME,1969,0,3401,3,1,2040.15075,2040.15075,3507,NO,35.65,49.61,1,0.84,6106,114.138025,123.819065,133.572836,140.008823,I,Above,Flat,0,NaN,Wood,42.6275483,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1149,NJBF000067369,8 S MORRIS AVE,Atlantic City,NJ,39.35324943,-74.44778732,COM1,3003,101,NaN,ME,1969,0,3401,3,1,4602.497669,4602.497669,3507,NO,38.63,47.21,1,1.66,6106,114.314296,123.96401,133.732996,140.115812,I,Above,Flat,0,NaN,Wood,42.92100892,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1150,NJBF000066488,8 S ELBERON AVE,Atlantic City,NJ,39.34988952,-74.4575815,COM1,3004,,45,ME,1900,1900,3401,2,3,1025.762247,1025.762247,3507,NO,25.65,34.73,1,1.05,6106,114.143146,123.823276,133.577416,140.012316,I,Above,Gable,0,NaN,Wood,30.19302874,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1151,NJBF000065559,24 S DELANCY PL,Atlantic City,NJ,39.34746294,-74.46169093,RES3A,3001,,45,NE,1930,1930,3301,3,4,1864.206198,1864.206198,3505,NO,47.52,57.28,3,-2.52,6106,114.084294,123.775573,133.523838,139.984202,I,Above,Gable,0,5701,Wood,52.39960799,0,0,,,,1,1,,0.03,nav,1,1930,3,, 1152,NJBF000066414,37 S HARRISBURG AVE,Atlantic City,NJ,39.34969033,-74.45623321,RES3A,3001,,45,NE,1900,1900,3301,2,2,2048.71302,2048.71302,3504,YES,33.28,41.11,-4,0,6106,114.175177,123.849757,133.605877,140.036538,I,Above,Flat,0,5701,Wood,37.19524701,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1153,NJBF000067131,3101 PACIFIC AVE,Atlantic City,NJ,39.35221159,-74.4485698,COM1,3003,530,NaN,ME,1969,1955,3401,2,1,16582.17933,16582.17933,3507,NO,27.95,36.54,1,0.62,6106,114.310293,123.96097,133.728739,140.118803,I,Above,Flat,0,NaN,Wood,32.24909588,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1154,NJBF000066457,28 S HARRISBURG AVE,Atlantic City,NJ,39.34979978,-74.45677779,RES3A,3001,,45,NE,1900,1900,3301,2,2,1476.443443,1476.443443,3504,NO,36.07,45.61,-4,0,6106,114.161867,123.838742,133.59406,140.02633,I,Above,Hip,0,5701,Wood,40.84399179,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1155,NJBF000066467,31 S HARRISBURG AVE,Atlantic City,NJ,39.34982717,-74.45634643,RES3A,3001,,17,NE,1900,1900,3301,1,1,1067.793516,1067.793516,3504,NO,12.91,23.56,-4,0,6106,114.170963,123.84624,133.602192,140.032712,I,Above,Gable,0,5701,Wood,18.23312994,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1156,NJBF000065564,10 N TALLAHASSEE AVE,Atlantic City,NJ,39.34747418,-74.46518868,RES3A,3001,,17,NE,1900,1900,3301,1,1,2032.763065,2032.763065,3505,NO,14.34,25.84,3,1.4,6106,114.007449,123.712549,133.455992,139.928267,I,Above,Hip,0,5701,Wood,20.09066876,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1157,NJBF000065540,8 N TALLAHASSEE AVE,Atlantic City,NJ,39.34739036,-74.4650572,RES3A,3001,,18,NE,1900,1900,3301,2,1,1562.185936,1562.185936,3505,NO,35.54,40.6,3,7.95,6106,114.01143,123.715835,133.459458,139.931689,I,Above,Gable,0,5701,Wood,38.06907011,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1158,NJBF000065746,4401 VENTNOR AVE,Atlantic City,NJ,39.34798084,-74.46257602,RES3A,3001,565,NaN,NE,1969,1940,3301,3,1,3229.806535,3229.806535,3505,YES,40.02,45.9,3,2.3,6106,114.058235,123.754026,133.501061,139.962232,I,Above,Flat,0,5701,Wood,42.95947766,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1159,NJBF000070476,137 N CLINTON AVE,Atlantic City,NJ,39.36729624,-74.42282267,RES1,3001,100,NaN,NE,1969,0,3102,1,1,1831.975802,1831.975802,3505,NO,10.88,23.86,3,-2.18,6106,114.681289,124.269658,134.081022,140.303507,I,Above,Gable,0,5701,Wood,17.36845935,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1160,NJBF000066445,35 S HARRISBURG AVE,Atlantic City,NJ,39.349769,-74.4562845,RES3A,3001,,45,NE,1900,1900,3301,2,2,1186.940322,1186.940322,3504,YES,29.17,41.08,-4,0,6106,114.173056,123.847984,133.604029,140.034555,I,Above,Gable,0,5701,Wood,35.12694121,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1161,NJBF000068698,226 N MORRIS AVE RR,Atlantic City,NJ,39.35744,-74.450732,RES3A,3001,220,NaN,NE,1969,0,3301,1,1,1231.414843,1231.414843,3507,NO,14.16,25.35,1,2.26,6106,114.198201,123.865816,133.629836,140.007511,I,Above,Hip,0,5701,Wood,19.7507101,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1162,NJBF000069798,1201 BACHARACH BLVD,Atlantic City,NJ,39.36408076,-74.42660443,COM1,3003,,NaN,ME,1969,0,3401,1,1,42079.60443,42079.60443,3507,NO,13.69,25.73,1,-0.16,6106,114.638774,124.234196,134.038882,140.289707,I,Above,Flat,0,NaN,Wood,19.70962119,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1163,NJBF000068742,3110 SUNSET AVE,Atlantic City,NJ,39.35752282,-74.45222076,RES3A,3001,,45,NE,1905,1905,3301,2,2,2168.452863,2168.452863,3507,YES,32.52,37.8,1,1.52,6106,114.164739,123.837976,133.599648,139.982536,I,Above,Flat,0,5701,Wood,35.1574576,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1164,NJBF000070447,900 BALTIC AVE,Atlantic City,NJ,39.36716071,-74.4237021,RES1,3001,,NaN,NE,1900,0,3102,2,1,953.9606862,953.9606862,3505,NO,45.11,50.42,3,8.15,6106,114.664124,124.254977,134.064692,140.291724,I,Above,Flat,0,5701,Wood,47.76546508,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1165,NJBF000069822,1101 ATLANTIC AVE,Atlantic City,NJ,39.3642895,-74.425252,COM1,3003,737,NaN,ME,1969,0,3401,1,1,640.9703186,640.9703186,3507,NO,19.55,34.1,1,0.36,6106,114.665213,124.256718,134.063894,140.307734,I,Above,Flat,0,NaN,Wood,26.82490613,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1166,NJBF000068702,228 N CHELSEA AVE,Atlantic City,NJ,39.35745241,-74.45175158,RES3A,3001,,45,NE,1900,1900,3301,1,2,1937.116082,1937.116082,3507,NO,15.29,29.56,1,1.9,6106,114.175833,123.847224,133.609639,139.991086,I,Above,Hip,0,5701,Wood,22.42413951,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1167,NJBF000065558,16 N ABERDEEN PL,Atlantic City,NJ,39.34746251,-74.46421434,RES3A,3001,,17,NE,1900,1900,3301,2,1,1687.466508,1687.466508,3505,NO,27.29,32.72,3,2.56,6106,114.028985,123.730196,133.474969,139.944065,I,Above,Hip,0,5701,Wood,30.0031149,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1168,NJBF000067320,3625 WINCHESTER AVE,Atlantic City,NJ,39.353071,-74.4556275,RES3B,3001,,45,E,1900,1900,3303,3,4,2553.382561,2553.382561,3507,YES,44.34,57.1,1,0.34,6106,114.145654,123.824204,133.58111,139.995276,I,Above,Flat,0,NaN,Wood,50.72007286,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1169,NJBF000070586,802 BALTIC AVE,Atlantic City,NJ,39.36769177,-74.42288316,RES1,3001,999,NaN,NE,1969,0,3102,2,1,4780.473522,4780.473522,3505,NO,36.24,42.02,3,6.05,6106,114.675323,124.264418,134.075607,140.29706,I,Above,Hip,0,5701,Wood,39.12896228,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1170,NJBF000070600,802 BALTIC AVE,Atlantic City,NJ,39.36775546,-74.42248854,RES1,3001,999,NaN,NE,1969,0,3102,2,1,3674.948302,3674.948302,3505,NO,36,43.35,3,1.59,6106,114.682985,124.270976,134.082906,140.30231,I,Above,Hip,0,5701,Wood,39.67454416,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1171,NJBF000067778,332 N TRENTON AVE,Atlantic City,NJ,39.35447738,-74.45887,RES1,3001,,16,NE,1900,1900,3102,2,1,731.1808272,731.1808272,3505,NO,29.22,43.14,3,-1.77,6106,114.057192,123.750542,133.50251,139.922047,I,Above,Hip,0,5701,Wood,36.1784324,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1172,NJBF000067777,327 N HARRISBURG AVE,Atlantic City,NJ,39.35447654,-74.45951293,RES1,3001,,45,NE,1900,1900,3102,1,2,1853.153639,1853.153639,3505,NO,17.33,26.71,3,0.93,6106,114.043117,123.73894,133.489965,139.911668,I,Above,Hip,0,5701,Wood,22.01975804,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1173,NJBF000070111,205 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36587219,-74.42879102,RES3D,3004,,45,E,1900,1900,3303,2,2,1521.941781,1521.941781,3505,NO,43.62,57.65,3,6.78,6106,114.570537,124.175427,133.975831,140.230507,I,Above,Hip,0,NaN,Wood,50.63300816,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1174,NJBF000067839,354 N HARRISBURG AVE,Atlantic City,NJ,39.35470351,-74.46030521,RES1,3001,,17,NE,1900,1900,3102,2,1,1627.062893,1627.062893,3505,YES,34.17,46.5,3,8.91,6106,114.022946,123.722205,133.472047,139.895356,I,Above,Flat,0,5701,Wood,40.33373936,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1175,NJBF000067833,344 N TRENTON AVE,Atlantic City,NJ,39.35467535,-74.4590678,RES1,3001,,45,NE,1900,1900,3102,2,2,1037.541568,1037.541568,3505,NO,35.95,46.02,3,-0.05,6106,114.050392,123.744835,133.49649,139.915819,I,Above,Hip,0,5701,Wood,40.98288154,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1176,NJBF000067954,330 N ALBANY AVE,Atlantic City,NJ,39.35515339,-74.45867988,COM1,3003,737,NaN,ME,1969,0,3401,1,1,19079.75006,19079.75006,3507,YES,18.06,32.76,1,-0.36,6106,114.05294,123.74669,133.498858,139.914761,I,Above,Flat,0,NaN,Wood,25.41051426,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1177,NJBF000068650,217 N CHELSEA AVE,Atlantic City,NJ,39.3573218,-74.4511185,RES3A,3001,,45,NE,1900,1900,3301,2,2,1362.76306,1362.76306,3507,YES,25.03,35.25,1,1.11,6106,114.191223,123.860073,133.623498,140.003117,I,Above,Hip,0,5701,Wood,30.13843766,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1178,NJBF000067081,4223 SOUTH BLVD,Atlantic City,NJ,39.35202479,-74.46249446,RES1,3001,,27,NE,1900,1900,3102,2,2,1314.34977,1314.34977,3505,YES,26.73,41.7,3,4.21,6106,114.008538,123.711674,133.458656,139.901235,I,Above,Flat,0,5701,Wood,34.2164649,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1179,NJBF000070958,700 GREEN ST,Atlantic City,NJ,39.36897081,-74.43687075,RES1,3001,,17,NE,1900,1900,3101,2,1,1183.068624,1183.068624,3505,NO,33.39,47.96,3,-1.27,6106,114.360351,123.995282,133.7804,140.058506,I,Above,Gable,0,5701,Wood,40.67394317,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1180,NJBF000065388,47 N JACKSON AVE,Atlantic City,NJ,39.34692,-74.467153,RES3A,3001,,17,NE,1900,1900,3301,2,1,1460.64529,1460.64529,3505,NO,19.61,27,3,-2.12,6106,113.971479,123.683291,133.424095,139.905234,I,Above,Gable,0,5701,Wood,23.30160396,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1181,NJBF000065785,43 N ABERDEEN PL,Atlantic City,NJ,39.348088,-74.4642205,RES3A,3001,,17,NE,1900,1900,3301,1,1,2180.841822,2180.841822,3505,NO,18.37,31.18,3,4.45,6106,114.020808,123.723294,133.468057,139.934314,I,Above,Hip,0,5701,Wood,24.77895918,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1182,NJBF000065926,65 N ABERDEEN PL,Atlantic City,NJ,39.3484525,-74.4645325,RES3A,3001,,18,NE,1920,1920,3301,2,1,1679.563721,1679.563721,3505,NO,39.63,49.03,3,7.1,6106,114.009253,123.713699,133.458027,139.923635,I,Above,Flat,0,5701,Wood,44.33026144,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1183,NJBF000065971,50 N BARTRAM AVE,Atlantic City,NJ,39.34858357,-74.46368002,RES3A,3001,,17,NE,1920,1920,3301,2,1,1319.201991,1319.201991,3505,NO,23.1,28.13,3,-1.81,6106,114.026287,123.727618,133.473117,139.935311,I,Above,Gable,0,5701,Wood,25.61827864,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1184,NJBF000065932,44 N BARTRAM AVE,Atlantic City,NJ,39.34848097,-74.46360284,RES3A,3001,,17,NE,1920,1920,3301,2,1,1225.895368,1225.895368,3505,NO,41.94,55.02,3,7.13,6106,114.029296,123.730122,133.475729,139.938135,I,Above,Gable,0,5701,Wood,48.47836577,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1185,NJBF000065361,34 N NEWTON AVE,Atlantic City,NJ,39.34684055,-74.46680012,RES3A,3001,,17,NE,1922,1922,3301,2,1,1321.553514,1321.553514,3505,NO,33.89,45.77,3,-0.69,6106,113.980254,123.690492,133.431767,139.912173,I,Above,Hip,0,5701,Wood,39.8303227,0,0,,,,1,1,,0.03,nav,1,1922,2,, 1186,NJBF000065331,32 N NEWTON AVE,Atlantic City,NJ,39.3467548,-74.46671517,RES3A,3001,,17,NE,1911,1911,3301,2,1,944.757639,944.757639,3505,NO,36.88,49.24,3,3.98,6106,113.983234,123.692956,133.434344,139.914886,I,Above,Hip,0,5701,Wood,43.06066772,0,0,,,,1,1,,0.03,nav,1,1911,2,, 1187,NJBF000065146,4437 ATLANTIC AVE,Atlantic City,NJ,39.34625853,-74.46227451,RES3A,3001,,45,NE,1930,1930,3301,3,4,2155.969549,2155.969549,3505,YES,43.67,53.84,3,0.2,6106,114.087053,123.778153,133.525571,139.993323,I,Above,Hip,0,5701,Wood,48.7562232,0,0,,,,1,1,,0.03,nav,1,1930,3,, 1188,NJBF000065179,4433 ATLANTIC AVE,Atlantic City,NJ,39.34632132,-74.46215289,RES3A,3001,,45,NE,1925,1925,3301,2,2,1976.753272,1976.753272,3505,NO,40.43,55.11,3,1.82,6106,114.088923,123.779673,133.527262,139.994303,I,Above,Hip,0,5701,Wood,47.77268808,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1189,NJBF000065319,43 N JACKSON AVE,Atlantic City,NJ,39.34672694,-74.4669801,RES3A,3001,,18,NE,1920,1920,3301,2,1,1810.261745,1810.261745,3505,NO,23.3,37.03,3,-0.23,6106,113.977776,123.688501,133.429535,139.911046,I,Above,Hip,0,5701,Wood,30.16624787,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1190,NJBF000065439,4303 ATLANTIC AVE,Atlantic City,NJ,39.34708697,-74.46058027,RES3A,3001,,18,NE,1925,1925,3301,2,1,1535.719887,1535.719887,3505,NO,29.62,39.9,3,-0.49,6106,114.113473,123.799646,133.549462,140.007447,I,Above,Gable,0,5701,Wood,34.75857772,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1191,NJBF000066303,66 N RALEIGH AVE,Atlantic City,NJ,39.3494402,-74.46240384,RES3A,3001,,45,NE,1920,1920,3301,2,2,2957.954756,2957.954756,3505,YES,35.31,42.39,3,1.34,6106,114.043315,123.74129,133.488545,139.942567,I,Above,Flat,0,5701,Wood,38.84956129,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1192,NJBF000071347,124 N VERMONT AVE,Atlantic City,NJ,39.37029814,-74.41625125,RES3D,3004,,28,E,1998,1998,3303,2,2,2230.201286,2230.201286,3505,NO,47.44,58.9,3,8.94,6106,114.785784,124.358878,134.182516,140.36404,I,Above,Hip,0,NaN,Wood,53.17274527,0,0,,,,1,1,,0.03,nav,1,1998,2,, 1193,NJBF000071392,125 FOLSOM AVE,Atlantic City,NJ,39.37045537,-74.41497285,RES3D,3004,,39,E,1900,1900,3303,4,1,1480.243777,1480.243777,3505,NO,76.02,90.22,3,0.24,6106,114.811053,124.380723,134.20687,140.381703,I,Above,Hip,0,NaN,Wood,83.11800986,0,0,,,,1,1,,0.03,nav,1,1900,4,, 1194,NJBF000066936,,Atlantic City,NJ,39.35135981,-74.45573816,COM3,3003,,NaN,ME,1969,0,3401,1,1,3756.942313,3756.942313,3507,NO,15.02,20.68,1,1.75,6106,114.164797,123.840658,133.597484,140.019281,I,Above,Flat,0,NaN,Wood,17.8499658,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1195,NJBF000071260,116 N VERMONT AVE,Atlantic City,NJ,39.36996048,-74.41601983,RES3D,3004,,27,E,1998,1998,3303,2,2,2220.993297,2220.993297,3505,NO,32.86,44.09,3,-0.54,6106,114.794651,124.366633,134.190785,140.372262,I,Above,Hip,0,NaN,Wood,38.47776499,0,0,,,,1,1,,0.03,nav,1,1998,2,, 1196,NJBF000066507,4036 ANN DOVER GDNS,Atlantic City,NJ,39.34992863,-74.45939003,RES3A,3001,,27,NE,1900,1900,3301,2,2,1205.27343,1205.27343,3505,YES,25.35,34.66,3,-1.77,6106,114.103099,123.790271,133.541792,139.983129,I,Above,Flat,0,5701,Wood,30.0047371,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1197,NJBF000066958,51 N HARRISBURG AVE,Atlantic City,NJ,39.35145173,-74.45763498,RES3A,3001,,17,NE,1950,1950,3301,2,1,1574.719126,1574.719126,3505,YES,34.72,44.83,3,-2.98,6106,114.122174,123.805445,133.559465,139.987879,I,Above,Hip,0,5701,Wood,39.77317693,0,0,,,,1,1,,0.03,nav,1,1950,2,, 1198,NJBF000067163,,Atlantic City,NJ,39.35239871,-74.45840424,RES3B,3001,,NaN,E,1969,0,3303,3,1,5883.96019,5883.96019,3505,NO,44.41,58.76,3,6.75,6106,114.093411,123.781355,133.534195,139.961256,I,Above,Gable,0,NaN,Wood,51.58837272,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1199,NJBF000071102,318 BEACH AVE,Atlantic City,NJ,39.36942294,-74.41648528,RES3D,3004,,17,E,1900,1900,3303,3,1,949.1372145,949.1372145,3505,YES,46.24,52.77,3,8.11,6106,114.791092,124.363678,134.186998,140.372426,I,Above,Gable,0,NaN,Wood,49.50560102,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1200,NJBF000071297,,Atlantic City,NJ,39.37011919,-74.41668691,RES3D,3004,,NaN,E,1999,0,3303,4,1,2282.360176,2282.360176,3505,NO,54.1,63.78,3,-1.77,6106,114.778628,124.352732,134.175539,140.359735,I,Above,Hip,0,NaN,Wood,58.93750475,0,0,,,,1,1,,0.03,nav,1,1999,4,, 1201,NJBF000071210,315 BEACH AVE,Atlantic City,NJ,39.36977974,-74.41643909,RES3D,3004,,28,E,1998,1998,3303,2,2,2014.355055,2014.355055,3505,NO,30.12,43.66,3,0.67,6106,114.787872,124.360811,134.184164,140.368238,I,Above,Hip,0,NaN,Wood,36.88991023,0,0,,,,1,1,,0.03,nav,1,1998,2,, 1202,NJBF000071300,120 N VERMONT AVE,Atlantic City,NJ,39.37012774,-74.41612859,RES3D,3004,,27,E,1998,1998,3303,2,2,2302.217106,2302.217106,3505,NO,38.87,46.76,3,6.25,6106,114.790367,124.362885,134.186794,140.368267,I,Above,Hip,0,NaN,Wood,42.81655375,0,0,,,,1,1,,0.03,nav,1,1998,2,, 1203,NJBF000071193,317 BEACH AVE,Atlantic City,NJ,39.36972944,-74.41656956,RES3D,3004,,17,E,1900,1900,3303,2,1,973.4318376,973.4318376,3505,NO,25.13,39.74,3,3.27,6106,114.78569,124.358936,134.182039,140.366908,I,Above,Hip,0,NaN,Wood,32.43393121,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1204,NJBF000070961,308 GRAMMERCY PL,Atlantic City,NJ,39.3689761,-74.41560832,RES3D,3004,,17,E,1900,1900,3303,2,1,1402.739523,1402.739523,3505,NO,42.2,51.31,3,3.94,6106,114.81497,124.384427,134.209545,140.392118,I,Above,Gable,0,NaN,Wood,46.75681135,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1205,NJBF000071057,210 GRAMMERCY PL,Atlantic City,NJ,39.36924666,-74.41473801,RES3D,3004,278,NaN,E,1969,0,3303,2,1,11238.78543,11238.78543,3505,YES,24.13,29.66,3,-0.54,6106,114.83023,124.397586,134.224388,140.401855,I,Above,Flat,0,NaN,Wood,26.89721712,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1206,NJBF000070943,27 N VERMONT AVE,Atlantic City,NJ,39.3689448,-74.41456065,RES3D,3004,100,NaN,E,1969,0,3303,3,1,11737.5638,11737.5638,3505,YES,43.82,49.63,3,8.47,6106,114.837543,124.403973,134.23117,140.408709,I,Above,Flat,0,NaN,Wood,46.7271598,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1207,NJBF000071004,124 HOUSTON AVE,Atlantic City,NJ,39.36910335,-74.41785739,RES3D,3004,,28,E,2000,2000,3303,2,2,2264.413959,2264.413959,3505,NO,29.44,38.95,3,1.12,6106,114.765714,124.341828,134.162502,140.355566,I,Above,Gable,0,NaN,Wood,34.19546599,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 1208,NJBF000071090,22 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36936454,-74.41404545,RES3D,3004,,17,E,1999,1999,3303,2,1,1274.292846,1274.292846,3505,NO,37.05,42.42,3,2.7,6106,114.843531,124.409089,134.237253,140.410945,I,Above,Gable,0,NaN,Wood,39.73252608,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 1209,NJBF000071172,136 N RHODE ISLAND AVE,Atlantic City,NJ,39.36965582,-74.41743749,RES3D,3004,,27,E,2005,2005,3303,2,1,2166.425644,2166.425644,3505,NO,24.47,30.67,3,-0.21,6106,114.768135,124.343779,134.165188,140.354467,I,Above,Hip,0,NaN,Wood,27.57236549,0,0,,,,1,1,,0.03,nav,1,2005,2,, 1210,NJBF000070899,403 GRAMMERCY AVE,Atlantic City,NJ,39.36879527,-74.41697491,RES3D,3004,,17,E,2006,2006,3303,2,1,1087.785553,1087.785553,3505,NO,31.3,39.06,3,-1.37,6106,114.788083,124.361218,134.183669,140.373461,I,Above,Flat,0,NaN,Wood,35.18242963,0,0,,,,1,1,,0.03,nav,1,2006,2,, 1211,NJBF000071054,123 HOUSTON AVE,Atlantic City,NJ,39.36924385,-74.41755954,RES3D,3004,,17,E,2000,2000,3303,2,1,773.9086096,773.9086096,3505,NO,31.95,43.03,3,6.41,6106,114.770366,124.34581,134.167044,140.358229,I,Above,Gable,0,NaN,Wood,37.48635315,0,0,,,,1,1,,0.03,nav,1,2000,2,, 1212,NJBF000070801,427 GRAMMERCY AVE,Atlantic City,NJ,39.36848317,-74.41774251,RES3D,3004,,NaN,E,2006,0,3303,2,1,1927.193336,1927.193336,3505,NO,20.62,27.5,3,-1.51,6106,114.775445,124.350375,134.171367,140.365863,I,Above,Gable,0,NaN,Wood,24.05901129,0,0,,,,1,1,,0.03,nav,1,2006,2,, 1213,NJBF000070919,401 GRAMMERCY AVE,Atlantic City,NJ,39.36885172,-74.41682744,RES3D,3004,,17,E,2006,2006,3303,1,1,2088.364903,2088.364903,3505,NO,22.03,35.64,3,6.52,6106,114.790554,124.363341,134.186075,140.374968,I,Above,Hip,0,NaN,Wood,28.83706167,0,0,,,,1,1,,0.03,nav,1,2006,1,, 1214,NJBF000071015,315 GRAMMERCY PL,Atlantic City,NJ,39.36914566,-74.41619028,RES3D,3004,,33,E,1900,1900,3303,2,1,1583.534235,1583.534235,3505,NO,32.24,37.29,3,2.56,6106,114.800615,124.371975,134.195919,140.380791,I,Above,Gable,0,NaN,Wood,34.76569116,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1215,NJBF000070918,107 HOUSTON AVE,Atlantic City,NJ,39.3688507,-74.41724713,RES3D,3004,,17,E,2004,2004,3303,1,1,1585.86133,1585.86133,3505,NO,17.26,25.36,3,2.19,6106,114.781645,124.355644,134.177553,140.368482,I,Above,Hip,0,NaN,Wood,21.3127076,0,0,,,,1,1,,0.03,nav,1,2004,1,, 1216,NJBF000070841,33 N RHODE ISLAND AVE,Atlantic City,NJ,39.36859486,-74.4162827,RES3D,3004,,45,E,1900,1900,3303,3,2,768.2995541,768.2995541,3505,NO,54.14,60.04,3,6.63,6106,114.805138,124.375998,134.199839,140.386903,I,Above,Flat,0,NaN,Wood,57.08752619,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1217,NJBF000070771,38 N RHODE ISLAND AVE,Atlantic City,NJ,39.36837664,-74.41658914,RES3D,3004,,17,E,1900,1900,3303,2,1,1259.325272,1259.325272,3505,NO,21.72,29.12,3,-2.65,6106,114.801215,124.372651,134.19592,140.385162,I,Above,Gable,0,NaN,Wood,25.41676619,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1218,NJBF000070804,423 GRAMMERCY PL,Atlantic City,NJ,39.36848572,-74.41757054,RES3D,3004,,17,E,2006,1900,3303,2,1,538.9564149,538.9564149,3505,YES,31.81,37.87,3,8.29,6106,114.779066,124.353499,134.174827,140.368483,I,Above,Flat,0,NaN,Wood,34.83826858,0,0,,,,1,1,,0.03,nav,1,2006,2,, 1219,NJBF000070690,6 N VERMONT AVE,Atlantic City,NJ,39.36806255,-74.41474079,RES3D,3004,100,NaN,E,1969,0,3303,2,1,2420.540058,2420.540058,3505,YES,35.66,45.88,3,3.33,6106,114.844147,124.409832,134.236788,140.417959,I,Above,Flat,0,NaN,Wood,40.77145413,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1220,NJBF000070625,301 ATLANTIC AVE,Atlantic City,NJ,39.36782129,-74.41465666,RES3D,3004,100,NaN,E,1969,0,3303,2,1,3479.831231,3479.831231,3505,NO,23.42,28.95,3,0.96,6106,114.848794,124.413889,134.24104,140.422549,I,Above,Flat,0,NaN,Wood,26.18378236,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1221,NJBF000070799,24 N VERMONT AVE,Atlantic City,NJ,39.36847723,-74.41510563,RES3D,3004,29,NaN,E,1969,0,3303,4,1,3227.227931,3227.227931,3505,NO,76.59,86.08,3,8.75,6106,114.831509,124.398829,134.225009,140.406687,I,Above,Flat,0,NaN,Wood,81.33669568,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1222,NJBF000070450,401 ATLANTIC AVE,Atlantic City,NJ,39.367195,-74.416027,RES3D,3004,100,NaN,E,1969,0,3303,1,1,1170.70016,1170.70016,3505,NO,14.29,24.14,3,1.63,6106,114.827147,124.395262,134.219785,140.409998,I,Above,Flat,0,NaN,Wood,19.21215857,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1223,NJBF000067653,1 S BRIGHTON AVE,Atlantic City,NJ,39.35408138,-74.44648128,COM1,3003,565,NaN,ME,1969,0,3401,2,1,2540.110445,2540.110445,3507,NO,36.94,51.61,1,2.49,6106,114.332271,123.978735,133.749777,140.123984,I,Above,Flat,0,NaN,Wood,44.27752758,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1224,NJBF000070643,11 N RHODE ISLAND AVE,Atlantic City,NJ,39.36789126,-74.41576389,RES3D,3004,,45,E,1900,1900,3303,2,3,1243.788549,1243.788549,3505,NO,38.37,46.92,3,1.16,6106,114.824478,124.392846,134.217802,140.404544,I,Above,Hip,0,NaN,Wood,42.64219696,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1225,NJBF000068148,6 S BELLEVUE AVE,Atlantic City,NJ,39.35580162,-74.44245839,RES3A,3004,,45,NE,1900,1900,3301,2,2,3185.632368,3185.632368,3505,YES,38.17,45.08,3,-0.23,6106,114.398141,124.033244,133.810768,140.161537,I,Above,Flat,0,5701,Wood,41.62710609,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1226,NJBF000069670,21 S MANSION AVE,Atlantic City,NJ,39.36269201,-74.42432846,COM1,3003,29,NaN,ME,1969,0,3401,3,1,1547.376607,1547.376607,3507,YES,53.2,58.41,1,2.46,6106,114.704174,124.290359,134.099407,140.344186,I,Above,Flat,0,NaN,Wood,55.80641329,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1227,NJBF000069589,1332 ATLANTIC AVE,Atlantic City,NJ,39.36194345,-74.42760468,COM1,3003,100,NaN,ME,1969,0,3401,2,1,20770.5675,20770.5675,3507,YES,25.25,40.14,1,-0.25,6106,114.643077,124.238393,134.041439,140.304122,I,Above,Flat,0,NaN,Wood,32.69512016,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1228,NJBF000069140,1928 ATLANTIC AVE,Atlantic City,NJ,39.35891707,-74.43519263,COM1,3003,100,NaN,ME,1969,0,3401,1,1,11656.98882,11656.98882,3507,NO,17.22,26.47,1,-0.69,6110,114.516789,124.132089,133.921785,140.229518,I,Above,Flat,0,NaN,Wood,21.84288143,0,0,,,,1,1,,1,nav,1,1969,1,, 1229,NJBF000068052,20 S BELLEVUE AVE,Atlantic City,NJ,39.35547618,-74.44218245,RES3A,3004,,45,NE,1920,1920,3301,2,4,1384.262943,1384.262943,3505,YES,25.03,37.38,3,2.81,6106,114.408162,124.041726,133.819721,140.170523,I,Above,Flat,0,5701,Wood,31.20417281,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1230,NJBF000069625,1101 PACIFIC AVE,Atlantic City,NJ,39.36219941,-74.42380081,COM1,3003,100,NaN,ME,1969,0,3401,2,1,12131.25174,12131.25174,3507,NO,23.7,29.27,1,1.36,6106,114.721394,124.30516,134.115226,140.359108,I,Above,Flat,0,NaN,Wood,26.48548301,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1231,NJBF000067815,2601 PACIFIC AVE,Atlantic City,NJ,39.35461894,-74.44244649,RES3B,3004,738,NaN,E,1969,0,3303,2,1,7473.606104,7473.606104,3507,YES,28.42,35.24,1,2.31,6106,114.413097,124.046084,133.823668,140.178782,I,Above,Flat,0,NaN,Wood,31.8272934,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1232,NJBF000066843,47 N DOVER AVE,Atlantic City,NJ,39.35098,-74.4585115,RES3A,3001,,18,NE,1910,1910,3301,2,1,521.2190722,521.2190722,3505,NO,22.54,35.51,3,-1.04,6106,114.108964,123.79473,133.547488,139.981107,I,Above,Flat,0,5701,Wood,29.02434256,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1233,NJBF000066816,47 N DOVER AVE,Atlantic City,NJ,39.35088473,-74.45865495,RES3A,3001,,18,NE,1910,1910,3301,2,1,2273.076486,2273.076486,3505,NO,26.29,33.6,3,3.77,6106,114.107039,123.793179,133.545733,139.980277,I,Above,Hip,0,5701,Wood,29.94691213,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1234,NJBF000066877,3727 VENTNOR AVE,Atlantic City,NJ,39.35113087,-74.45601382,COM1,3004,100,NaN,ME,1969,0,3401,2,1,1275.650319,1275.650319,3507,NO,24.89,37.8,1,0.02,6106,114.161664,123.838149,133.594572,140.018368,I,Above,Flat,0,NaN,Wood,31.34493834,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1235,NJBF000068010,13 S TEXAS AVE,Atlantic City,NJ,39.35533111,-74.44246415,RES3A,3004,,45,NE,1910,1910,3301,2,3,1105.858551,1105.858551,3505,YES,42.01,49.56,3,5.19,6106,114.403853,124.03816,133.815693,140.168243,I,Above,Hip,0,5701,Wood,45.78421419,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1236,NJBF000066851,53 N DOVER AVE,Atlantic City,NJ,39.35101835,-74.45875972,RES3A,3001,,45,NE,1900,1900,3301,3,2,1970.904175,1970.904175,3505,YES,41.24,50.21,3,-1.21,6106,114.103057,123.789849,133.542245,139.976588,I,Above,Hip,0,5701,Wood,45.7231046,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1237,NJBF000066874,57 N DOVER AVE,Atlantic City,NJ,39.35110531,-74.45883369,RES3A,3001,,45,NE,1919,1919,3301,3,2,2020.806597,2020.806597,3505,YES,45.12,52.06,3,0.06,6106,114.100336,123.787575,133.53986,139.974088,I,Above,Hip,0,5701,Wood,48.58823531,0,0,,,,1,1,,0.03,nav,1,1919,3,, 1238,NJBF000066780,18 N HARRISBURG AVE,Atlantic City,NJ,39.35075409,-74.45756929,RES3A,3001,,17,NE,2003,2003,3301,2,1,1379.469485,1379.469485,3505,NO,38.91,51.06,3,7.81,6106,114.132454,123.814173,133.568315,139.999483,I,Above,Gable,0,5701,Wood,44.98490821,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 1239,NJBF000066632,3911 VENTNOR AVE,Atlantic City,NJ,39.35030659,-74.45785152,COM1,3004,101,NaN,ME,1920,1920,3401,2,1,7211.748204,7211.748204,3507,YES,21.31,26.77,1,0,6106,114.131939,123.813901,133.567641,140.00176,I,Above,Flat,0,NaN,Wood,24.04007166,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1240,NJBF000066711,3804 VENTNOR AVE,Atlantic City,NJ,39.35054038,-74.45622305,COM1,3004,738,NaN,ME,1969,0,3401,3,1,1876.085765,1876.085765,3507,YES,51.38,63.67,1,0.9,6106,114.164588,123.840758,133.596884,140.023951,I,Above,Flat,0,NaN,Wood,57.52592122,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1241,NJBF000068045,9 S TEXAS AVE,Atlantic City,NJ,39.3554533,-74.44254057,RES3A,3004,,33,NE,1900,1900,3301,4,1,1566.702012,1566.702012,3505,YES,73.28,87.49,3,8.92,6106,114.40067,124.035462,133.812864,140.165288,I,Above,Flat,0,5701,Wood,80.38430122,0,0,,,,1,1,,0.03,nav,1,1900,4,, 1242,NJBF000066666,30 N DOVER AVE,Atlantic City,NJ,39.35041769,-74.45877074,RES3A,3001,,45,NE,1900,1900,3301,2,2,2151.527295,2151.527295,3505,YES,32.3,39.95,3,8.68,6106,114.110427,123.796136,133.548538,139.985525,I,Above,Flat,0,5701,Wood,36.12410181,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1243,NJBF000066873,26 N HARRISBURG AVE,Atlantic City,NJ,39.35109831,-74.45787498,RES3A,3001,,18,NE,1900,1900,3301,2,1,1949.43738,1949.43738,3505,YES,23.68,37.91,3,-0.11,6106,114.121404,123.80494,133.558623,139.989431,I,Above,Hip,0,5701,Wood,30.79595937,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1244,NJBF000066835,24 N HARRISBURG AVE,Atlantic City,NJ,39.35095267,-74.45777812,RES3A,3001,,18,NE,1900,1900,3301,2,1,1698.674197,1698.674197,3505,NO,28.85,35.53,3,6.14,6106,114.125361,123.808255,133.562085,139.993164,I,Above,Gable,0,5701,Wood,32.1904342,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1245,NJBF000066763,46 N DOVER AVE,Atlantic City,NJ,39.35071179,-74.45902205,RES3A,3001,,27,NE,1900,1900,3301,2,2,1704.134408,1704.134408,3505,YES,32.73,39.75,3,4.29,6106,114.101202,123.788434,133.540462,139.977073,I,Above,Hip,0,5701,Wood,36.24080013,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1246,NJBF000066577,8 S HARRISBURG AVE,Atlantic City,NJ,39.35013041,-74.45706393,COM1,3004,,17,ME,1969,1900,3401,2,1,1159.031025,1159.031025,3507,NO,26.57,36.59,1,2.67,6106,114.151417,123.83002,133.584915,140.016867,I,Above,Hip,0,NaN,Wood,31.58425369,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1247,NJBF000066309,4101 VENTNOR AVE,Atlantic City,NJ,39.34945035,-74.45956368,RES3A,3001,100,NaN,NE,1969,0,3301,4,6,2137.580221,2137.580221,3505,YES,72.59,82.8,3,-1.27,6106,114.105396,123.792321,133.5436,139.987647,I,Above,Flat,0,5701,Wood,77.69440833,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1248,NJBF000066338,4101 VENTNOR AVE,Atlantic City,NJ,39.34950823,-74.45942533,RES3A,3001,100,NaN,NE,1969,0,3301,4,6,1947.838369,1947.838369,3505,YES,59.05,66.58,3,-1.66,6106,114.107698,123.794197,133.545675,139.988969,I,Above,Hip,0,5701,Wood,62.81237189,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1249,NJBF000066610,18 N DOVER AVE,Atlantic City,NJ,39.35022237,-74.45863626,RES3A,3001,,17,NE,1900,1900,3301,2,1,1843.336789,1843.336789,3505,YES,41.41,52.94,3,4.24,6106,114.115871,123.800688,133.553291,139.990638,I,Above,Flat,0,5701,Wood,47.17295453,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1250,NJBF000066116,54 N DELANCY PL,Atlantic City,NJ,39.34895214,-74.46289641,RES3A,3001,,17,NE,1915,1915,3301,2,1,1497.780787,1497.780787,3505,NO,37.01,51.76,3,-1.5,6106,114.038766,123.737729,133.484308,139.9422,I,Above,Flat,0,5701,Wood,44.38304257,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1251,NJBF000066322,32 S ELBERON AVE,Atlantic City,NJ,39.34946689,-74.45726462,RES3A,3001,,45,NE,1925,1925,3301,2,2,1727.898666,1727.898666,3504,NO,22.84,28.85,-4,0,6106,114.155467,123.833563,133.588169,140.023675,I,Above,Hip,0,5701,Wood,25.84687148,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1252,NJBF000066346,37 N LACLEDE PL,Atlantic City,NJ,39.34952905,-74.46098613,RES3A,3001,,45,NE,1900,1900,3301,2,2,1570.265908,1570.265908,3505,NO,27.93,42.13,3,-0.31,6106,114.073252,123.765854,133.515105,139.963851,I,Above,Hip,0,5701,Wood,35.02878932,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1253,NJBF000066359,59 N RALEIGH AVE,Atlantic City,NJ,39.3495554,-74.46193644,RES3A,3001,,27,NE,1925,1925,3301,2,2,1858.898781,1858.898781,3505,YES,39.26,47.84,3,0.37,6106,114.052105,123.748468,133.496376,139.948289,I,Above,Flat,0,5701,Wood,43.55186757,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1254,NJBF000066097,19 S WINDSOR AVE,Atlantic City,NJ,39.34890115,-74.45902867,RES3A,3001,,NaN,NE,1900,0,3301,2,1,2705.90957,2705.90957,3505,NO,39.68,49.08,3,5.52,6106,114.124117,123.807902,133.559953,140.004427,I,Above,Hip,0,5701,Wood,44.37962757,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1255,NJBF000066126,15 S WINDSOR AVE,Atlantic City,NJ,39.34898925,-74.45914206,RES3A,3001,,45,NE,1900,1900,3301,2,2,1284.083027,1284.083027,3505,NO,25.25,30.45,3,3.62,6106,114.12052,123.804914,133.556803,140.001312,I,Above,Hip,0,5701,Wood,27.85248505,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1256,NJBF000066145,56 N DELANCY PL,Atlantic City,NJ,39.34904411,-74.46298913,RES3A,3001,,45,NE,1925,1925,3301,1,2,1944.397508,1944.397508,3505,NO,24.5,33.98,3,7.62,6106,114.03555,123.735057,133.481505,139.939293,I,Above,Hip,0,5701,Wood,29.2406507,0,0,,,,1,1,,0.03,nav,1,1925,1,, 1257,NJBF000066576,38 S TRENTON AVE,Atlantic City,NJ,39.35012982,-74.45560208,RES3A,3001,,45,NE,1925,1925,3301,2,3,1219.328922,1219.328922,3504,NO,33.97,46.33,-4,0,6106,114.183361,123.856385,133.613435,140.039854,I,Above,Flat,0,5701,Wood,40.14765739,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1258,NJBF000065454,4 N TALLAHASSEE AVE,Atlantic City,NJ,39.34713762,-74.46488518,RES3A,3001,,18,NE,1900,1900,3301,2,1,2153.832047,2153.832047,3505,NO,40.61,46.23,3,7.53,6106,114.018456,123.721669,133.465525,139.938349,I,Above,Gable,0,5701,Wood,43.41963143,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1259,NJBF000065927,33 N BARTRAM AVE,Atlantic City,NJ,39.34845798,-74.46307288,RES3A,3001,,17,NE,1912,1912,3301,2,1,1752.65086,1752.65086,3505,NO,21.29,26.48,3,-0.81,6106,114.041214,123.739906,133.486248,139.946973,I,Above,Hip,0,5701,Wood,23.88397203,0,0,,,,1,1,,0.03,nav,1,1912,2,, 1260,NJBF000065329,37 S KINGSTON AVE,Atlantic City,NJ,39.34675363,-74.4626115,RES3A,3001,,45,NE,1900,1900,3301,3,3,1891.209982,1891.209982,3505,YES,50.15,57.67,3,-0.57,6106,114.073284,123.766729,133.513698,139.980462,I,Above,Hip,0,5701,Wood,53.90992352,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1261,NJBF000065887,42 S WINDSOR AVE,Atlantic City,NJ,39.34835959,-74.45913328,RES3A,3001,100,NaN,NE,1969,0,3301,1,1,1538.329168,1538.329168,3505,NO,20.22,33.19,3,5.81,6106,114.12877,123.811889,133.563787,140.010966,I,Above,Gable,0,5701,Wood,26.70744715,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1262,NJBF000066119,26 N RALEIGH AVE,Atlantic City,NJ,39.34896567,-74.46200557,RES3A,3001,,45,NE,1980,1980,3301,2,3,1674.403877,1674.403877,3505,NO,33.67,41.03,3,2.91,6106,114.058096,123.753594,133.501417,139.95621,I,Above,Flat,0,5701,Wood,37.34677515,0,0,,,,1,1,,0.03,nav,1,1980,2,, 1263,NJBF000066093,50 N DELANCY PL,Atlantic City,NJ,39.34888878,-74.46282059,RES3A,3001,,17,NE,1920,1920,3301,2,1,1227.950739,1227.950739,3505,YES,39.47,48.02,3,5.81,6106,114.041217,123.739762,133.486447,139.94437,I,Above,Hip,0,5701,Wood,43.74422385,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1264,NJBF000065498,4505 VENTNOR AVE,Atlantic City,NJ,39.3472603,-74.46402805,RES3A,3001,,18,NE,1900,1900,3301,2,1,1742.793396,1742.793396,3505,NO,29.16,35.21,3,1.12,6106,114.035682,123.735747,133.480774,139.950169,I,Above,Hip,0,5701,Wood,32.18797847,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1265,NJBF000065434,8 S BARTRAM AVE,Atlantic City,NJ,39.3470723,-74.46249522,RES3A,3001,,18,NE,1920,1920,3301,1,1,2385.871433,2385.871433,3505,NO,11.65,25.51,3,1.09,6106,114.071719,123.765358,133.512496,139.977439,I,Above,Hip,0,5701,Wood,18.58107121,0,0,,,,1,1,,0.03,nav,1,1920,1,, 1266,NJBF000065925,9 N DELANCY PL,Atlantic City,NJ,39.34845007,-74.46194671,RES3A,3001,,45,NE,1900,1900,3301,3,3,1797.192632,1797.192632,3505,YES,44.7,54.59,3,6.97,6106,114.065999,123.760253,133.508165,139.965058,I,Above,Flat,0,5701,Wood,49.64504725,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1267,NJBF000065487,7 N PLAZA PL,Atlantic City,NJ,39.3472347,-74.46536066,RES3A,3001,,18,NE,1900,1900,3301,2,1,1669.610007,1669.610007,3505,NO,24.62,31.73,3,-0.04,6106,114.006757,123.712058,133.455268,139.929211,I,Above,Gable,0,5701,Wood,28.17511805,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1268,NJBF000065384,6 N PLAZA PL,Atlantic City,NJ,39.34690909,-74.46565883,RES3A,3001,,18,NE,1953,1953,3301,2,1,2328.72569,2328.72569,3505,NO,26.15,34.28,3,3.07,6106,114.004428,123.710251,133.453057,139.929485,I,Above,Hip,0,5701,Wood,30.21123658,0,0,,,,1,1,,0.03,nav,1,1953,2,, 1269,NJBF000065350,4 N PLAZA PL,Atlantic City,NJ,39.34680969,-74.46555832,RES3A,3001,,18,NE,1910,1910,3301,2,1,1998.008253,1998.008253,3505,YES,42.82,50.17,3,4.94,6106,114.007925,123.713144,133.456086,139.932642,I,Above,Gable,0,5701,Wood,46.49491967,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1270,NJBF000065902,8 S LACLEDE PL,Atlantic City,NJ,39.34840462,-74.46061732,RES3A,3001,,17,NE,1925,1925,3301,2,1,1597.12271,1597.12271,3505,NO,30.61,40.48,3,1.06,6106,114.09571,123.78468,133.534466,139.986855,I,Above,Hip,0,5701,Wood,35.54177634,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1271,NJBF000065975,35 S WINDSOR AVE,Atlantic City,NJ,39.34858701,-74.45879449,RES3A,3001,,45,NE,1930,1930,3301,2,2,2218.01072,2218.01072,3505,NO,44.08,55.27,3,6.54,6106,114.133278,123.815535,133.567923,140.012875,I,Above,Flat,0,5701,Wood,49.67689443,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1272,NJBF000065933,41 S WINDSOR AVE,Atlantic City,NJ,39.348483,-74.458715,RES3A,3001,,45,NE,1904,1904,3301,2,2,2267.851252,2267.851252,3505,NO,32.19,44.49,3,6.82,6106,114.136338,123.818085,133.570585,140.015687,I,Above,Flat,0,5701,Wood,38.33606901,0,0,,,,1,1,,0.03,nav,1,1904,2,, 1273,NJBF000065437,36 N MONTGOMERY AVE,Atlantic City,NJ,39.34707998,-74.46627048,RES3A,3001,,27,NE,1925,1925,3301,2,2,1787.897083,1787.897083,3505,YES,32.37,41.82,3,2.25,6106,113.988804,123.69741,133.439395,139.916996,I,Above,Flat,0,5701,Wood,37.09302329,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1274,NJBF000065522,2 S BARTRAM AVE,Atlantic City,NJ,39.34732696,-74.46269225,RES3A,3001,100,NaN,NE,1969,0,3301,3,1,4127.727004,4127.727004,3505,YES,52.41,59.33,3,-2.38,6106,114.064112,123.759044,133.505913,139.970411,I,Above,Flat,0,5701,Wood,55.87306633,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1275,NJBF000065854,3 S RALEIGH AVE,Atlantic City,NJ,39.34827515,-74.46087488,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,2154.316525,2154.316525,3505,NO,34.08,42.95,3,1.66,6106,114.091728,123.781446,133.530866,139.984749,I,Above,Hip,0,5701,Wood,38.51798878,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1276,NJBF000065883,1 S RALEIGH AVE,Atlantic City,NJ,39.3483495,-74.46095258,RES3A,3001,100,NaN,NE,1969,1930,3301,2,1,1623.700217,1623.700217,3505,NO,37.65,49.1,3,0.12,6106,114.08907,123.779239,133.528549,139.982386,I,Above,Gable,0,5701,Wood,43.3710034,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1277,NJBF000066123,2 S WINDSOR AVE,Atlantic City,NJ,39.34898618,-74.45963846,RES3A,3001,,45,NE,1900,1900,3301,2,3,2217.987537,2217.987537,3505,NO,36.51,49.58,3,0.28,6106,114.109703,123.796012,133.54719,139.993519,I,Above,Gable,0,5701,Wood,43.04521948,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1278,NJBF000065399,54 S DELANCY PL,Atlantic City,NJ,39.34695065,-74.46133487,RES3A,3001,,17,NE,1930,1930,3301,2,1,1603.441925,1603.441925,3505,NO,37.51,46.88,3,7.28,6106,114.098695,123.787539,133.53629,139.997619,I,Above,Gable,0,5701,Wood,42.19405922,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1279,NJBF000065502,25 S BARTRAM AVE,Atlantic City,NJ,39.34726594,-74.46209482,RES3A,3001,,45,NE,1925,1925,3301,2,2,1815.386423,1815.386423,3505,NO,27.36,39.53,3,0.61,6106,114.077982,123.770445,133.518142,139.980812,I,Above,Gable,0,5701,Wood,33.4465306,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1280,NJBF000065951,17 N DELANCY PL,Atlantic City,NJ,39.34852321,-74.46199789,RES3A,3001,,45,NE,1900,1900,3301,2,2,1927.016558,1927.016558,3505,YES,22.03,30.65,3,-0.78,6106,114.063945,123.758543,133.506383,139.963128,I,Above,Flat,0,5701,Wood,26.33585141,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1281,NJBF000065797,14 S LACLEDE PL,Atlantic City,NJ,39.34812949,-74.46052578,RES3A,3001,,18,NE,1900,1900,3301,3,1,678.5623655,678.5623655,3505,YES,41.29,49.72,3,6.25,6106,114.101244,123.789312,133.539224,139.992491,I,Above,Hip,0,5701,Wood,45.50253857,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1282,NJBF000065851,14 S LACLEDE PL,Atlantic City,NJ,39.34827113,-74.46053908,RES3A,3001,,18,NE,1900,1900,3301,3,1,1890.963813,1890.963813,3505,YES,63.03,75.59,3,6.9,6106,114.099137,123.787538,133.537433,139.990127,I,Above,Hip,0,5701,Wood,69.31170108,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1283,NJBF000065339,42 S BARTRAM AVE,Atlantic City,NJ,39.34679103,-74.46224815,RES3A,3001,,18,NE,1900,1900,3301,2,1,1486.441636,1486.441636,3505,NO,24.97,37.67,3,-2.99,6106,114.080761,123.772855,133.520328,139.98564,I,Above,Hip,0,5701,Wood,31.31926785,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1284,NJBF000065094,2 S MONTGOMERY AVE,Atlantic City,NJ,39.34612851,-74.46544128,RES3B,3001,,NaN,ME,1969,0,3301,2,1,2051.283393,2051.283393,3504,NO,38.73,52.73,-4,0,6106,114.019314,123.722663,133.465751,139.945066,I,Above,Flat,0,NaN,Wood,45.73042491,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1285,NJBF000065185,47 S ABERDEEN PL,Atlantic City,NJ,39.34634632,-74.46284442,RES3A,3001,,18,NE,1900,1900,3301,2,1,1678.95234,1678.95234,3505,YES,33.93,39.7,3,-1.67,6106,114.073457,123.766976,133.51361,139.983009,I,Above,Flat,0,5701,Wood,36.81427281,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1286,NJBF000065291,45 S KINGSTON AVE,Atlantic City,NJ,39.34664141,-74.46254184,RES3A,3001,,17,NE,1900,1900,3301,2,1,1586.767554,1586.767554,3505,NO,31.74,41.96,3,7.98,6106,114.076258,123.769198,133.516259,139.98328,I,Above,Hip,0,5701,Wood,36.85153664,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1287,NJBF000070403,331 N NEW YORK AVE,Atlantic City,NJ,39.36697118,-74.43275553,RES3C,3003,,45,E,1900,1900,3305,2,2,1975.417473,1975.417473,3507,YES,35.71,45.35,1,0.67,6106,114.472402,124.091455,133.884421,140.152656,I,Above,Flat,0,NaN,Wood,40.52965862,0,0,,,,2,2,,0.03,nav,1,1900,2,, 1288,NJBF000065070,4704 VENTNOR AVE,Atlantic City,NJ,39.34605666,-74.46557298,RES3B,3001,,45,ME,1965,1965,3301,2,2,1794.881702,1794.881702,3504,NO,32.93,43.06,-4,0,6106,114.017352,123.721076,133.463984,139.94407,I,Above,Gable,0,NaN,Wood,37.99285071,0,0,,,,1,1,,0.03,nav,1,1965,2,, 1289,NJBF000065251,19 S TALLAHASSEE AVE,Atlantic City,NJ,39.34652573,-74.46389474,RES1,3001,,18,NE,1910,1910,3102,2,1,1949.56842,1949.56842,3504,NO,31.93,39.85,-4,0,6106,114.048085,123.746123,133.49132,139.963586,I,Above,Hip,0,5701,Wood,35.89339944,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1290,NJBF000065225,2 N MONTGOMERY AVE,Atlantic City,NJ,39.34644778,-74.46571121,RES3A,3001,,18,NE,1922,1922,3301,2,1,1886.177784,1886.177784,3505,YES,26.15,40.75,3,3.67,6106,114.009253,123.714337,133.457068,139.935803,I,Above,Hip,0,5701,Wood,33.44594493,0,0,,,,1,1,,0.03,nav,1,1922,2,, 1291,NJBF000065411,3 N PLAZA PL,Atlantic City,NJ,39.34698537,-74.46513282,RES3A,3001,,18,NE,1914,1914,3301,2,1,1691.092765,1691.092765,3505,YES,42.2,56.54,3,3.87,6106,114.01499,123.718876,133.462395,139.936744,I,Above,Gable,0,5701,Wood,49.36844327,0,0,,,,1,1,,0.03,nav,1,1914,2,, 1292,NJBF000065317,22 N MONTGOMERY AVE,Atlantic City,NJ,39.34672269,-74.46596422,RES3A,3001,,17,NE,1920,1920,3301,2,1,1148.943419,1148.943419,3505,NO,42.37,53.83,3,3.82,6106,114.000138,123.706796,133.44919,139.927474,I,Above,Flat,0,5701,Wood,48.09737336,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1293,NJBF000067539,4 N MONTPELIER AVE,Atlantic City,NJ,39.35376617,-74.45049864,RES3B,3001,,17,ME,1900,1900,3301,2,1,1457.775081,1457.775081,3504,NO,35.64,46.39,-4,0,6106,114.248817,123.909408,133.674113,140.065828,I,Above,Hip,0,NaN,Wood,41.01272073,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1294,NJBF000065265,2 S TALLAHASSEE AVE,Atlantic City,NJ,39.3465685,-74.46446066,RES1,3001,,18,NE,1920,1920,3102,2,1,2153.026932,2153.026932,3504,YES,36.49,43.91,-4,0,6106,114.035127,123.735493,133.479918,139.953928,I,Above,Flat,0,5701,Wood,40.20042651,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1295,NJBF000065352,24 N MONTGOMERY AVE,Atlantic City,NJ,39.34681287,-74.46604008,RES3A,3001,,45,NE,1912,1912,3301,2,2,1409.864181,1409.864181,3505,NO,34.01,46.76,3,1.4,6106,113.997305,123.704451,133.446743,139.924854,I,Above,Flat,0,5701,Wood,40.38689053,0,0,,,,1,1,,0.03,nav,1,1912,2,, 1296,NJBF000068474,3019 FAIRMOUNT AVE,Atlantic City,NJ,39.3568715,-74.450547,RES3A,3001,,45,NE,1905,1905,3301,2,2,2490.942724,2490.942724,3507,YES,35.01,40.99,1,-0.83,6106,114.209232,123.875256,133.639634,140.018941,I,Above,Flat,0,5701,Wood,38.0015975,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1297,NJBF000068524,205 N CHELSEA AVE,Atlantic City,NJ,39.35700921,-74.4509085,RES3A,3001,,45,NE,1905,1905,3301,2,2,714.2584289,714.2584289,3507,YES,30.92,38.57,1,0.52,6106,114.19967,123.867244,133.631038,140.01115,I,Above,Gable,0,5701,Wood,34.74179616,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1298,NJBF000068091,18 N IOWA AVE,Atlantic City,NJ,39.35560318,-74.44637637,RES3B,3001,,45,ME,1900,1900,3301,2,3,2231.791287,2231.791287,3504,YES,26.36,33.47,-4,0,6106,114.315617,123.964354,133.735491,140.103379,I,Above,Hip,0,NaN,Wood,29.91458644,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1299,NJBF000072967,430 CARSON AVE,Atlantic City,NJ,39.37605035,-74.42307232,RES3D,3001,,45,ME,1940,1940,3301,1,3,2556.671841,2556.671841,3507,NO,17.25,25.17,1,1.66,6106,114.57424,124.173727,133.982606,140.176911,I,Above,Flat,0,NaN,Wood,21.20966531,0,0,,,,1,1,,0.03,nav,1,1940,1,, 1300,NJBF000068532,223 N MONTPELIER AVE,Atlantic City,NJ,39.35703123,-74.45215271,RES3A,3001,,45,NE,1905,1905,3301,2,2,2118.929527,2118.929527,3507,YES,24.6,36.35,1,0.71,6106,114.172272,123.844477,133.606319,139.991005,I,Above,Gable,0,5701,Wood,30.47639532,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1301,NJBF000067576,6 N MONTPELIER AVE,Atlantic City,NJ,39.35386401,-74.45056152,RES3B,3001,,45,ME,1910,1910,3301,2,4,1236.356828,1236.356828,3504,NO,33.99,43.28,-4,0,6106,114.24622,123.907217,133.671819,140.063388,I,Above,Hip,0,NaN,Wood,38.6325131,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1302,NJBF000068497,208 N CHELSEA AVE,Atlantic City,NJ,39.35694565,-74.45143648,RES3A,3001,,45,NE,1905,1905,3301,2,2,1555.486791,1555.486791,3507,YES,27.85,40.23,1,-0.85,6106,114.188944,123.858362,133.621335,140.003697,I,Above,Hip,0,5701,Wood,34.03828692,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1303,NJBF000068493,219 N MONTPELIER AVE,Atlantic City,NJ,39.35693315,-74.4520905,RES3A,3001,,45,NE,1905,1905,3301,2,2,2154.405816,2154.405816,3507,YES,30.42,38.27,1,2.53,6106,114.174852,123.846667,133.608619,139.993479,I,Above,Flat,0,5701,Wood,34.34869134,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1304,NJBF000068143,25 N STENTON PL,Atlantic City,NJ,39.3557955,-74.446744,RES3B,3001,,45,ME,1910,1910,3301,2,3,971.5106891,971.5106891,3504,NO,22.41,33.87,-4,0,6106,114.305244,123.955634,133.726166,140.094805,I,Above,Hip,0,NaN,Wood,28.14349409,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1305,NJBF000072884,,Atlantic City,NJ,39.37542594,-74.42494084,RES3D,3001,,NaN,ME,1969,0,3301,2,1,2937.312192,2937.312192,3507,NO,37.36,48.08,1,-0.89,6102,114.541529,124.145914,133.951363,140.156019,I,Above,Flat,0,NaN,Wood,42.71949612,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1306,NJBF000072911,,Atlantic City,NJ,39.37560292,-74.42476911,RES3D,3001,,NaN,ME,1969,0,3301,1,1,2424.143332,2424.143332,3507,NO,19.21,24.28,1,2.27,6106,114.543176,124.147224,133.952951,140.156249,I,Above,Flat,0,NaN,Wood,21.74344526,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1307,NJBF000072834,827 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37512144,-74.42268534,RES3D,3001,,17,ME,1922,1922,3301,2,1,1517.252961,1517.252961,3507,YES,28.99,40.47,1,2.86,6106,114.593097,124.190515,134.000422,140.196132,I,Above,Flat,0,NaN,Wood,34.73145539,0,0,,,,1,1,,0.03,nav,1,1922,2,, 1308,NJBF000070514,,Atlantic City,NJ,39.36744401,-74.42707829,RES1,3001,,NaN,NE,1969,0,3103,5,1,2123.309921,2123.309921,3505,NO,72.05,85.39,3,-0.78,6106,114.588599,124.19024,133.993559,140.2351,I,Above,Hip,0,5701,Wood,78.71843366,0,0,,,,1,1,,0.03,nav,1,1969,5,, 1309,NJBF000066728,111 N LACLEDE PL,Atlantic City,NJ,39.35059478,-74.46182073,RES3A,3001,,17,NE,1910,1910,3301,2,1,1342.026348,1342.026348,3505,NO,33.39,44.25,3,-1.99,6106,114.041388,123.739272,133.487301,139.934147,I,Above,Flat,0,5701,Wood,38.82152599,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1310,NJBF000070902,118 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36880762,-74.41846797,RES3D,3004,,16,E,2011,2011,3303,3,1,709.3505582,709.3505582,3505,NO,42.15,54.26,3,-0.95,6106,114.756199,124.33369,134.153217,140.350157,I,Above,Hip,0,NaN,Wood,48.20750768,0,0,,,,1,1,,0.03,nav,1,2011,3,, 1311,NJBF000067488,26 N BOSTON AVE,Atlantic City,NJ,39.35364352,-74.4525786,RES3B,3001,,45,E,1920,1920,3303,3,2,1792.114706,1792.114706,3507,YES,41.85,52.98,1,1.59,6106,114.205019,123.873115,133.63461,140.034921,I,Above,Hip,0,NaN,Wood,47.41463306,0,0,,,,1,1,,0.03,nav,1,1920,3,, 1312,NJBF000067266,2 N PROVIDENCE AVE,Atlantic City,NJ,39.35282177,-74.45325991,RES3B,3001,,17,E,1900,1900,3303,3,1,1583.749637,1583.749637,3507,YES,40.03,51.8,1,1.48,6106,114.200468,123.869648,133.630146,140.036452,I,Above,Flat,0,NaN,Wood,45.91550594,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1313,NJBF000067248,16 N ST DAVIDS PL,Atlantic City,NJ,39.35274164,-74.45539071,RES3B,3001,,27,E,1915,1915,3303,2,2,1323.764124,1323.764124,3507,YES,36.61,49.1,1,-0.48,6106,114.15496,123.832026,133.589308,140.00399,I,Above,Flat,0,NaN,Wood,42.85446011,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1314,NJBF000067212,9-11 N ST DAVID PL,Atlantic City,NJ,39.35257842,-74.45475498,RES3B,3001,,45,E,1920,1920,3303,2,3,1659.443523,1659.443523,3507,NO,34.47,47.38,1,1.48,6106,114.170909,123.845275,133.603521,140.016517,I,Above,Hip,0,NaN,Wood,40.92243509,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1315,NJBF000067289,52 N HARTFORD AVE,Atlantic City,NJ,39.35291636,-74.45474975,RES3B,3001,,27,E,1900,1900,3303,2,2,1895.635075,1895.635075,3507,YES,25.67,31.11,1,1.84,6106,114.166773,123.841726,133.599961,140.011523,I,Above,Flat,0,NaN,Wood,28.38683389,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1316,NJBF000067435,3504 WINCHESTER AVE,Atlantic City,NJ,39.353478,-74.45402271,RES3B,3001,,45,E,1900,1900,3303,3,2,1398.468084,1398.468084,3507,NO,36.3,47.84,1,-0.88,6106,114.175597,123.848809,133.60811,140.014593,I,Above,Hip,0,NaN,Wood,42.06775805,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1317,NJBF000067604,3402 WINCHESTER AVE,Atlantic City,NJ,39.35394718,-74.45300711,RES3B,3001,,45,E,1900,1900,3303,3,2,1844.558841,1844.558841,3507,NO,54.52,62.16,1,1.04,6106,114.191898,123.862124,133.622943,140.023639,I,Above,Hip,0,NaN,Wood,58.3390021,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1318,NJBF000067282,7 N HARTFORD AVE,Atlantic City,NJ,39.35289901,-74.45381083,RES3B,3001,,45,E,1920,1920,3303,3,2,851.1671696,851.1671696,3507,NO,56.24,67.02,1,-0.62,6106,114.187481,123.858867,133.618523,140.026615,I,Above,Hip,0,NaN,Wood,61.62973841,0,0,,,,1,1,,0.03,nav,1,1920,3,, 1319,NJBF000067299,3407 VENTNOR AVE,Atlantic City,NJ,39.35297557,-74.45233643,RES3B,3001,100,NaN,E,1969,0,3303,3,1,1705.261094,1705.261094,3507,YES,55.27,69.18,1,1.62,6106,114.218685,123.884686,133.646589,140.048697,I,Above,Flat,0,NaN,Wood,62.22488906,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1320,NJBF000067464,17 N PROVIDENCE AVE,Atlantic City,NJ,39.35357517,-74.45295801,RES3B,3001,,45,E,1900,1900,3303,4,2,606.5752586,606.5752586,3507,NO,57.97,67.04,1,0.44,6106,114.197617,123.867008,133.627926,140.029971,I,Above,Flat,0,NaN,Wood,62.50860298,0,0,,,,1,1,,0.03,nav,1,1900,4,, 1321,NJBF000067916,30 N CHELSEA AVE,Atlantic City,NJ,39.35501246,-74.45010172,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,1502.183468,1502.183468,3504,NO,27.09,34.33,-4,0,6106,114.24193,123.903224,133.668474,140.053613,I,Above,Flat,0,NaN,Wood,30.71088222,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1322,NJBF000067886,28 N CHELSEA AVE,Atlantic City,NJ,39.35491088,-74.45005961,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,1827.619155,1827.619155,3504,NO,24.16,29.64,-4,0,6106,114.2441,123.905067,133.67039,140.055771,I,Above,Flat,0,NaN,Wood,26.90110802,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1323,NJBF000067880,15 N MORRIS AVE,Atlantic City,NJ,39.35486745,-74.44821804,RES3B,3001,,45,ME,1900,1900,3301,2,3,1647.808904,1647.808904,3504,NO,37.48,48.17,-4,0,6106,114.284725,123.938873,133.707107,140.085346,I,Above,Hip,0,NaN,Wood,42.82116925,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1324,NJBF000067156,20 N HARTFORD AVE,Atlantic City,NJ,39.35235448,-74.45428873,RES3B,3001,,27,E,1900,1900,3303,2,2,1942.200078,1942.200078,3507,YES,25.86,31.38,1,0.96,6106,114.183898,123.856101,133.61506,140.02723,I,Above,Flat,0,NaN,Wood,28.62104991,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1325,NJBF000067946,26 N MORRIS AVE,Atlantic City,NJ,39.35512273,-74.44896838,RES3B,3001,,45,ME,1900,1900,3301,3,4,1308.305786,1308.305786,3504,YES,41.23,51.54,-4,0,6106,114.26523,123.922556,133.689585,140.069806,I,Above,Hip,0,NaN,Wood,46.38196644,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1326,NJBF000068030,32 N MORRIS AVE,Atlantic City,NJ,39.35539678,-74.44913504,RES3B,3001,,45,ME,1950,1950,3301,3,2,2391.771871,2391.771871,3504,NO,37.61,48.27,-4,0,6106,114.258194,123.916599,133.683343,140.063133,I,Above,Hip,0,NaN,Wood,42.93710133,0,0,,,,1,1,,0.03,nav,1,1950,3,, 1327,NJBF000067148,29 N ALBANY AVE,Atlantic City,NJ,39.3523204,-74.45531411,RES3B,3001,,45,E,1900,1900,3303,2,3,1521.969364,1521.969364,3507,YES,27.2,34.93,1,0.1,6106,114.161948,123.837962,133.595382,140.011555,I,Above,Flat,0,NaN,Wood,31.06386814,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1328,NJBF000067924,15 N MORRIS AVE,Atlantic City,NJ,39.35504504,-74.44891969,RES3B,3001,,45,ME,1900,1900,3301,2,2,1597.748059,1597.748059,3504,NO,27.61,38.74,-4,0,6106,114.267243,123.92426,133.69137,140.071712,I,Above,Gable,0,NaN,Wood,33.17976756,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1329,NJBF000067918,19 N MORRIS AVE,Atlantic City,NJ,39.35501747,-74.44832345,RES3B,3001,,17,ME,1930,1930,3301,3,1,1736.685345,1736.685345,3504,YES,36.36,49.02,-4,0,6106,114.280577,123.935366,133.703425,140.081492,I,Above,Hip,0,NaN,Wood,42.69443038,0,0,,,,1,1,,0.03,nav,1,1930,3,, 1330,NJBF000067841,22 N CHELSEA AVE,Atlantic City,NJ,39.35472102,-74.44993615,RES3B,3001,,45,ME,1900,1900,3301,3,2,1804.551046,1804.551046,3504,YES,45.87,55.04,-4,0,6106,114.249163,123.909347,133.674877,140.060536,I,Above,Flat,0,NaN,Wood,50.45379788,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1331,NJBF000067940,21 N MORRIS AVE,Atlantic City,NJ,39.35508646,-74.44837428,RES3B,3001,,45,ME,1925,1925,3301,2,3,1336.169639,1336.169639,3504,NO,21.6,35.53,-4,0,6106,114.27861,123.933704,133.701677,140.079676,I,Above,Hip,0,NaN,Wood,28.5673884,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1332,NJBF000067810,15 N CHELSEA AVE,Atlantic City,NJ,39.35459875,-74.44929385,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,1703.893798,1703.893798,3504,NO,29.46,39.3,-4,0,6106,114.264655,123.922271,133.688819,140.072424,I,Above,Hip,0,NaN,Wood,34.38083463,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1333,NJBF000067824,20 N CHELSEA AVE,Atlantic City,NJ,39.35464788,-74.44987814,RES3B,3001,,45,ME,1900,1900,3301,3,2,1302.514728,1302.514728,3504,YES,31.6,43.41,-4,0,6106,114.251334,123.911179,133.676805,140.062528,I,Above,Hip,0,NaN,Wood,37.50633508,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1334,NJBF000067949,2803 ATLANTIC AVE,Atlantic City,NJ,39.35513858,-74.44607521,COM1,3003,738,NaN,ME,1969,0,3401,3,1,1644.352175,1644.352175,3507,YES,40.19,48.12,1,0.68,6106,114.327913,123.974767,133.746417,140.114868,I,Above,Gable,0,NaN,Wood,44.15542854,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1335,NJBF000067997,11 N STENTON PL,Atlantic City,NJ,39.355291,-74.446389,RES3B,3001,,45,ME,1900,1900,3301,2,2,1877.959217,1877.959217,3504,YES,27.5,36.12,-4,0,6106,114.319206,123.967454,133.738589,140.107742,I,Above,Gable,0,NaN,Wood,31.81296445,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1336,NJBF000068674,16 N GEORGIA AVE RR #D,Atlantic City,NJ,39.357387,-74.4415685,RES3B,3001,,35,ME,1910,1900,3301,2,1,1823.950464,1823.950464,3505,YES,35.03,42.92,3,4.59,6106,114.397823,124.032483,133.811394,140.152457,I,Above,Flat,0,NaN,Wood,38.97489948,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1337,NJBF000068730,21 N FLORIDA AVE,Atlantic City,NJ,39.35749901,-74.44198315,RES3B,3001,,45,ME,1900,1900,3301,2,2,658.0258996,658.0258996,3505,YES,37.35,44.6,3,1.5,6106,114.38748,124.023776,133.801988,140.144383,I,Above,Flat,0,NaN,Wood,40.97487047,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1338,NJBF000068734,,Atlantic City,NJ,39.35751139,-74.44321136,RES3B,3001,,NaN,ME,1900,0,3301,1,1,985.1936809,985.1936809,3505,NO,23.74,38.63,3,6.26,6106,114.360729,124.001365,133.777535,140.125032,I,Above,Gable,0,NaN,Wood,31.18509299,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1339,NJBF000069518,1615 ATLANTIC AVE,Atlantic City,NJ,39.36114451,-74.43126765,COM1,3003,100,NaN,ME,1969,0,3401,2,1,4765.83191,4765.83191,3507,NO,30.51,36.21,1,2.53,6106,114.574128,124.179999,133.976471,140.258725,I,Above,Flat,0,NaN,Wood,33.35943805,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1340,NJBF000070291,19 N NEW JERSEY AVE,Atlantic City,NJ,39.36658927,-74.41965152,COM1,3003,,45,ME,1900,1900,3401,2,3,1731.40379,1731.40379,3507,NO,26.5,38.9,1,1.43,6106,114.75727,124.335124,134.152662,140.362418,I,Above,Gable,0,NaN,Wood,32.7014509,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1341,NJBF000069685,1301 ATLANTIC AVE,Atlantic City,NJ,39.3628659,-74.42731879,COM1,3003,560,NaN,ME,1969,0,3401,4,1,14608.18568,14608.18568,3507,YES,49.48,63.75,1,2.64,6106,114.638063,124.233905,134.037397,140.295637,I,Above,Flat,0,NaN,Wood,56.61482299,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1342,NJBF000069885,136 N TENNESSEE AVE,Atlantic City,NJ,39.36477417,-74.43005186,RES3D,3004,,45,E,1920,1920,3303,3,2,1146.178054,1146.178054,3505,YES,53.07,60.88,3,6.63,6106,114.556573,124.163942,133.962199,140.226348,I,Above,Flat,0,NaN,Wood,56.97776145,0,0,,,,1,1,,0.03,nav,1,1920,3,, 1343,NJBF000067696,23 N SOVEREIGN AVE,Atlantic City,NJ,39.35420147,-74.45129937,RES3B,3001,,45,ME,1900,1900,3301,2,2,1369.252165,1369.252165,3504,NO,31.75,43.18,-4,0,6106,114.225959,123.890272,133.653709,140.0468,I,Above,Flat,0,NaN,Wood,37.46691748,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1344,NJBF000068840,117 N CALIFORNIA AVE,Atlantic City,NJ,39.35776014,-74.44568898,RES3A,3001,,45,NE,1900,1900,3301,3,2,4028.723496,4028.723496,3505,YES,49.22,56.3,3,5.5,6106,114.30392,123.953766,133.72584,140.082531,I,Above,Flat,0,5701,Wood,52.76094278,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1345,NJBF000069250,8 LIBERTY TERR,Atlantic City,NJ,39.35936373,-74.44279893,RES3B,3001,,33,ME,1900,1900,3301,2,1,532.4279664,532.4279664,3505,YES,40.46,48.99,3,2.23,6106,114.346966,123.989111,133.765784,140.104502,I,Above,Flat,0,NaN,Wood,44.72441524,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1346,NJBF000070517,633 ARCTIC AVE,Atlantic City,NJ,39.3674475,-74.4203265,RES3D,3004,29,NaN,E,1969,0,3303,3,1,2186.008781,2186.008781,3505,YES,54.95,66.61,3,8.69,6106,114.732714,124.3138,134.129924,140.340136,I,Above,Flat,0,NaN,Wood,60.78232701,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1347,NJBF000070607,,Atlantic City,NJ,39.36776765,-74.42096324,RES1,3001,,NaN,NE,1969,0,3102,2,1,2615.518351,2615.518351,3505,NO,34.89,42.08,3,-0.6,6106,114.715366,124.298795,134.113648,140.325833,I,Above,Hip,0,5701,Wood,38.48352683,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1348,NJBF000070673,52 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36801002,-74.41794852,RES3D,3004,,16,E,2005,2010,3303,3,1,2468.47464,2468.47464,3505,NO,35.85,45.56,3,1.2,6106,114.776655,124.351523,134.17218,140.369179,I,Above,Hip,0,NaN,Wood,40.70651024,0,0,,,,1,1,,0.03,nav,1,2005,3,, 1349,NJBF000070470,703 ARCTIC AVE,Atlantic City,NJ,39.3672545,-74.4206995,RES1,3001,100,16,NE,2015,2015,3102,1,1,1305.78439,1305.78439,3505,NO,16.58,23.43,3,3.11,6106,114.727064,124.308989,134.124424,140.337029,I,Above,Gable,0,5701,Wood,20.00436658,0,0,,,,1,1,,0.03,nav,1,2015,1,, 1350,NJBF000070064,928 ARCTIC AVE,Atlantic City,NJ,39.36568033,-74.42387466,COM1,3003,100,NaN,ME,1969,0,3401,3,1,1337.836843,1337.836843,3507,YES,45.42,52.91,1,-0.13,6106,114.678024,124.267316,134.076911,140.309678,I,Above,Flat,0,NaN,Wood,49.16554968,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1351,NJBF000070043,43 N VIRGINIA AVE,Atlantic City,NJ,39.36559581,-74.42381229,COM1,3003,,45,ME,1910,1910,3401,3,2,1872.894322,1872.894322,3507,YES,46.48,57.05,1,2.06,6106,114.680371,124.269348,134.079073,140.311823,I,Above,Flat,0,NaN,Wood,51.76555902,0,0,,,,1,1,,0.03,nav,1,1910,3,, 1352,NJBF000070420,109 CHESAPEAKE BAY CT,Atlantic City,NJ,39.36704601,-74.42215883,RES1,3001,,17,NE,1900,1900,3102,2,1,1905.861729,1905.861729,3505,NO,34.11,47.04,3,5.25,6106,114.698417,124.28443,134.097097,140.317292,I,Above,Hip,0,5701,Wood,40.57472409,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1353,NJBF000068838,2508 ARCTIC AVE,Atlantic City,NJ,39.35775489,-74.44327207,RES3B,3001,,45,ME,1900,1900,3301,3,4,1364.451083,1364.451083,3505,YES,59.27,70.73,3,6.59,6106,114.356408,123.997659,133.773707,140.120528,I,Above,Flat,0,NaN,Wood,65.00300347,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1354,NJBF000068852,2312 RUFFU TERR,Atlantic City,NJ,39.35778255,-74.44017232,COM1,3003,,27,ME,1900,1900,3401,2,2,1057.625773,1057.625773,3507,NO,35.07,42.91,1,2.47,6106,114.423184,124.053631,133.834861,140.168491,I,Above,Gable,0,NaN,Wood,38.98887858,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1355,NJBF000068772,2311 ATLANTIC AVE,Atlantic City,NJ,39.35759241,-74.44004588,COM1,3003,100,NaN,ME,1969,0,3401,2,1,2576.286477,2576.286477,3507,NO,27.8,42.73,1,1.96,6106,114.428257,124.057951,133.839406,140.1732,I,Above,Gable,0,NaN,Wood,35.26934498,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1356,NJBF000068867,2504 ARCTIC AVE,Atlantic City,NJ,39.35784459,-74.44314615,RES3B,3001,,45,ME,1915,1915,3301,2,2,591.1906294,591.1906294,3505,NO,36.2,43.35,3,6.07,6106,114.358034,123.998986,133.775235,140.12119,I,Above,Gable,0,NaN,Wood,39.77563377,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1357,NJBF000068758,2607 ARCTIC AVE,Atlantic City,NJ,39.35756393,-74.44458885,RES3A,3001,,17,NE,1900,1900,3301,2,1,852.2953367,852.2953367,3505,YES,34.66,48.16,3,1.86,6106,114.330198,123.975804,133.749697,140.102681,I,Above,Gable,0,5701,Wood,41.41087164,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1358,NJBF000068796,29 N FLORIDA AVE,Atlantic City,NJ,39.35763644,-74.44238577,RES3B,3001,,17,ME,1900,1900,3301,2,1,1176.352907,1176.352907,3505,NO,33.64,48.33,3,-0.62,6106,114.377068,124.015003,133.792533,140.136108,I,Above,Hip,0,NaN,Wood,40.98366555,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1359,NJBF000068735,25 N FLORIDA AVE,Atlantic City,NJ,39.35751395,-74.44231403,RES3B,3001,,17,ME,1900,1900,3301,1,1,1137.127596,1137.127596,3505,NO,17.32,28.39,3,-0.64,6106,114.380127,124.01761,133.795268,140.139002,I,Above,Hip,0,NaN,Wood,22.85458748,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1360,NJBF000068767,25 N FLORIDA AVE,Atlantic City,NJ,39.3575795,-74.442138,RES3B,3001,,17,ME,1900,1900,3301,1,1,543.4117968,543.4117968,3505,NO,20.89,31.29,3,4.18,6106,114.38314,124.020111,133.798058,140.140806,I,Above,Flat,0,NaN,Wood,26.08923281,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1361,NJBF000068795,2601 ARCTIC AVE,Atlantic City,NJ,39.3576364,-74.44439016,RES3A,3001,,45,NE,1900,1900,3301,3,3,1535.746996,1535.746996,3505,YES,41.87,56.81,3,0.95,6106,114.33363,123.978645,133.752859,140.104749,I,Above,Flat,0,5701,Wood,49.34096386,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1362,NJBF000068780,2516 ARCTIC AVE,Atlantic City,NJ,39.35760827,-74.44357832,RES3B,3001,,45,ME,1900,1900,3301,3,2,1220.287148,1220.287148,3505,YES,43.56,50.65,3,5.33,6106,114.351581,123.993673,133.769228,140.117879,I,Above,Hip,0,NaN,Wood,47.10249101,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1363,NJBF000068696,2516 ARCTIC AVE,Atlantic City,NJ,39.35743311,-74.44345535,RES3B,3001,,45,ME,1900,1900,3301,3,2,867.379732,867.379732,3505,YES,47.4,56.99,3,0.87,6106,114.356399,123.99777,133.773543,140.122352,I,Above,Gable,0,NaN,Wood,52.19808913,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1364,NJBF000069558,1825 ARCTIC AVE,Atlantic City,NJ,39.36162513,-74.43531295,COM1,3003,,45,ME,1910,1910,3401,2,2,1158.733048,1158.733048,3507,NO,21.6,35.6,1,-0.75,6106,114.481268,124.10124,133.890483,140.189057,I,Above,Flat,0,NaN,Wood,28.59849683,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1365,NJBF000068596,125 N IOWA AVE,Atlantic City,NJ,39.35720499,-74.44671067,RES3A,3001,,45,NE,1915,1915,3301,2,2,682.8452007,682.8452007,3505,YES,27.53,41.49,3,2.26,6106,114.28855,123.941164,133.711633,140.074607,I,Above,Hip,0,5701,Wood,34.51460858,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1366,NJBF000068571,125 N IOWA AVE,Atlantic City,NJ,39.35714616,-74.44686468,RES3A,3001,,45,NE,1915,1915,3301,2,2,973.7079726,973.7079726,3505,YES,34.15,39.51,3,-1.75,6106,114.28593,123.939003,133.709229,140.073052,I,Above,Hip,0,5701,Wood,36.82855008,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1367,NJBF000069549,107 N OHIO AVE,Atlantic City,NJ,39.36152729,-74.4354836,COM1,3003,,17,ME,1900,1900,3401,2,1,1758.037099,1758.037099,3507,NO,23.53,34.01,1,1.61,6106,114.478768,124.099163,133.888117,140.187791,I,Above,Flat,0,NaN,Wood,28.77043208,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1368,NJBF000068581,2701 ARCTIC AVE,Atlantic City,NJ,39.35716943,-74.44568118,RES3A,3001,643,NaN,NE,1969,0,3301,2,1,2286.837229,2286.837229,3505,YES,29.13,36.94,3,-2.8,6106,114.31136,123.960218,133.732362,140.091327,I,Above,Flat,0,5701,Wood,33.03432934,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1369,NJBF000068602,115 MAXWELL AVE,Atlantic City,NJ,39.3572155,-74.4464805,RES3A,3001,,27,NE,1920,1920,3301,2,2,1046.868032,1046.868032,3505,NO,33.61,43.04,3,8.32,6106,114.29341,123.945215,133.716055,140.078064,I,Above,Flat,0,5701,Wood,38.32128936,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1370,NJBF000068636,117 MAXWELL AVE,Atlantic City,NJ,39.35728792,-74.44652017,RES3A,3001,,34,NE,1900,1900,3301,2,1,822.8518307,822.8518307,3505,NO,25.11,31.9,3,0.68,6106,114.291677,123.943739,133.714509,140.076392,I,Above,Flat,0,5701,Wood,28.50863128,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1371,NJBF000068644,2608 ARCTIC AVE,Atlantic City,NJ,39.35731311,-74.44435593,RES3B,3001,,45,ME,1900,1900,3301,2,2,865.1253434,865.1253434,3505,NO,32.3,43.53,3,-1.08,6106,114.338339,123.982707,133.757005,140.109999,I,Above,Gable,0,NaN,Wood,37.91600875,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1372,NJBF000068652,4 VICTORIA PL,Atlantic City,NJ,39.35732507,-74.44620547,RES3A,3001,,27,NE,1900,1900,3301,2,2,1286.921928,1286.921928,3505,YES,44.73,50.01,3,6.82,6106,114.298063,123.949054,133.720331,140.080804,I,Above,Flat,0,5701,Wood,47.3690781,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1373,NJBF000069225,2430 FAIRMOUNT AVE,Atlantic City,NJ,39.35923816,-74.44354486,COM8,3001,738,NaN,ME,1969,0,3401,2,1,3388.815456,3388.815456,3507,NO,36.4,44.57,1,-0.23,6106,114.332337,123.976909,133.752354,140.094612,I,Above,Flat,0,NaN,Wood,40.48415514,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1374,NJBF000068544,27 N TEXAS AVE,Atlantic City,NJ,39.35705853,-74.44366013,RES3B,3001,,45,ME,1900,1900,3301,3,3,837.1643551,837.1643551,3505,YES,45.32,57.6,3,1.38,6106,114.356559,123.998039,133.773503,140.12459,I,Above,Gable,0,NaN,Wood,51.45903257,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1375,NJBF000068516,2711 ARCTIC AVE,Atlantic City,NJ,39.35697914,-74.44604996,RES3A,3001,,45,NE,1900,1900,3301,3,2,1169.323923,1169.323923,3505,YES,54.76,64.07,3,7.5,6106,114.305689,123.955558,133.727119,140.08832,I,Above,Hip,0,5701,Wood,59.41315801,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1376,NJBF000069153,112 N GEORGIA AVE,Atlantic City,NJ,39.35896902,-74.44215662,RES3B,3001,,45,ME,1900,1900,3301,2,2,1441.909748,1441.909748,3505,NO,28.93,41.52,3,4.48,6106,114.365693,124.004971,133.78276,140.120331,I,Above,Flat,0,NaN,Wood,35.22430888,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1377,NJBF000068575,120 N IOWA AVE,Atlantic City,NJ,39.35715401,-74.44740428,RES3A,3001,,17,NE,1900,1900,3301,2,1,1811.601397,1811.601397,3505,NO,31.73,40.05,3,8.3,6106,114.27412,123.929151,133.698506,140.064444,I,Above,Flat,0,5701,Wood,35.89148911,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1378,NJBF000068548,2709 ARCTIC AVE,Atlantic City,NJ,39.3570647,-74.44600318,RES3A,3001,100,NaN,NE,1969,0,3301,1,1,2262.589647,2262.589647,3505,NO,19.98,28.57,3,4.28,6106,114.30565,123.955492,133.727121,140.087796,I,Above,Flat,0,5701,Wood,24.27544621,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1379,NJBF000068531,2707 ARCTIC AVE,Atlantic City,NJ,39.35702751,-74.44588266,RES3A,3001,,45,NE,1900,1900,3301,3,3,894.4219808,894.4219808,3505,YES,48.36,57.22,3,7.92,6106,114.308711,123.958062,133.729889,140.090223,I,Above,Gable,0,5701,Wood,52.78766157,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1380,NJBF000069163,2101 ATLANTIC AVE,Atlantic City,NJ,39.35901104,-74.43799235,COM1,3003,100,NaN,ME,1969,0,3401,2,1,21901.8919,21901.8919,3507,NO,25.04,37.26,1,0.32,6106,114.455251,124.080193,133.86504,140.184754,I,Above,Flat,0,NaN,Wood,31.1510968,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1381,NJBF000068529,119 N IOWA AVE,Atlantic City,NJ,39.35702257,-74.44676848,RES3A,3001,,17,NE,1900,1900,3301,2,1,1308.343214,1308.343214,3505,YES,21.38,30.93,3,-2.51,6106,114.289552,123.942075,133.712469,140.076388,I,Above,Hip,0,5701,Wood,26.15430277,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1382,NJBF000069051,111 N FLORIDA AVE,Atlantic City,NJ,39.35854069,-74.44301624,RES3B,3001,,45,ME,1900,1900,3301,3,2,1112.6525,1112.6525,3505,YES,49.88,57.49,3,3.68,6106,114.352319,123.993932,133.770332,140.113092,I,Above,Hip,0,NaN,Wood,53.68541613,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1383,NJBF000068994,2423 ARCTIC AVE,Atlantic City,NJ,39.35829,-74.4427395,RES3B,3001,,45,ME,1900,1900,3301,4,2,925.7572427,925.7572427,3505,YES,69.74,75.49,3,5.29,6106,114.361373,124.001614,133.778497,140.121071,I,Above,Flat,0,NaN,Wood,72.61368909,0,0,,,,1,1,,0.03,nav,1,1900,4,, 1384,NJBF000069005,103 N FLORIDA AVE,Atlantic City,NJ,39.3583415,-74.4429345,RES3B,3001,,27,ME,1900,1900,3301,2,2,1166.208665,1166.208665,3505,NO,28.87,40.8,3,3.63,6106,114.356511,123.997521,133.774075,140.11726,I,Above,Flat,0,NaN,Wood,34.83480929,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1385,NJBF000069039,109 N FLORIDA AVE,Atlantic City,NJ,39.35849659,-74.44294809,RES3B,3001,737,NaN,ME,1969,0,3301,2,1,1879.675871,1879.675871,3505,NO,31.14,43.69,3,-2.74,6106,114.354331,123.995635,133.772152,140.114799,I,Above,Flat,0,NaN,Wood,37.41404802,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1386,NJBF000069053,2407 ARCTIC AVE,Atlantic City,NJ,39.35855749,-74.44217863,RES3B,3001,738,NaN,ME,1969,0,3301,3,1,1990.829254,1990.829254,3505,YES,41.54,54.65,3,8.55,6106,114.370255,124.008955,133.786749,140.125974,I,Above,Flat,0,NaN,Wood,48.09578876,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1387,NJBF000069029,2423 ARCTIC AVE RR,Atlantic City,NJ,39.35844658,-74.44282756,RES3B,3001,,16,ME,1900,1900,3301,2,1,555.2432659,555.2432659,3505,NO,23.44,35.87,3,-0.86,6106,114.357543,123.998345,133.775067,140.117408,I,Above,Gable,0,NaN,Wood,29.65546398,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1388,NJBF000069013,2421 ARCTIC AVE,Atlantic City,NJ,39.358393,-74.4426975,RES3B,3001,,45,ME,1900,1900,3301,2,3,1958.929558,1958.929558,3505,NO,33.32,42.6,3,7.51,6106,114.361043,124.001298,133.778243,140.120246,I,Above,Hip,0,NaN,Wood,37.95802715,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1389,NJBF000068940,2505 ARCTIC AVE,Atlantic City,NJ,39.35808237,-74.4432764,RES3B,3001,,27,ME,1900,1900,3301,3,2,839.2621294,839.2621294,3505,YES,49.61,57.77,3,8.88,6106,114.352308,123.994102,133.770114,140.115704,I,Above,Gable,0,NaN,Wood,53.68851773,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1390,NJBF000068946,2420 ARCTIC AVE,Atlantic City,NJ,39.35810615,-74.44249487,RES3B,3001,,45,ME,1920,1920,3301,3,2,943.5879038,943.5879038,3505,YES,35.88,47.68,3,1.67,6106,114.368936,124.00802,133.785328,140.127581,I,Above,Flat,0,NaN,Wood,41.78178458,0,0,,,,1,1,,0.03,nav,1,1920,3,, 1391,NJBF000068941,2412 ARCTIC AVE,Atlantic City,NJ,39.35808459,-74.44209984,RES3B,3001,,17,ME,1920,1920,3301,2,1,1003.564181,1003.564181,3505,NO,46.16,56.99,3,8.26,6106,114.377749,124.015413,133.793382,140.134062,I,Above,Flat,0,NaN,Wood,51.57579734,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1392,NJBF000071148,505 MADISON AVE,Atlantic City,NJ,39.36957873,-74.41928017,RES3D,3004,,NaN,E,1969,0,3303,1,1,10279.96024,10279.96024,3505,YES,14.56,28.58,3,3.78,6106,114.729858,124.310762,134.128579,140.326902,I,Above,Flat,0,NaN,Wood,21.56860425,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1393,NJBF000068949,2418 ARCTIC AVE,Atlantic City,NJ,39.3581195,-74.4424095,RES3B,3001,,17,ME,1900,1900,3301,2,1,713.4269758,713.4269758,3505,NO,24.71,36.52,3,-2.02,6106,114.370627,124.009432,133.786882,140.128723,I,Above,Flat,0,NaN,Wood,30.61283021,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1394,NJBF000071948,2218 MURRAY AVE,Atlantic City,NJ,39.37208205,-74.45289757,RES1,3001,,16,NE,1955,1955,3101,1,1,897.1114656,897.1114656,3505,NO,16.05,25.85,3,3.6,6106,113.977474,123.670584,133.427204,139.750837,I,Above,Flat,0,5701,Wood,20.95120793,0,0,,,,1,1,,0.03,nav,1,1955,1,, 1395,NJBF000070143,214 N TENNESSEE AVE,Atlantic City,NJ,39.36600269,-74.43094251,RES3D,3004,,17,E,2002,2002,3303,1,1,2127.474983,2127.474983,3505,NO,17.78,26.37,3,5.44,6106,114.522813,124.134743,133.931183,140.194975,I,Above,Hip,0,NaN,Wood,22.07435657,0,0,,,,1,1,,0.03,nav,1,2002,1,, 1396,NJBF000068441,2723 ARCTIC AVE,Atlantic City,NJ,39.35677639,-74.44649892,RES3A,3001,,16,NE,1900,1900,3301,2,1,777.9051407,777.9051407,3505,NO,38.75,46.96,3,5.83,6106,114.29844,123.949589,133.720439,140.084248,I,Above,Flat,0,5701,Wood,42.85374779,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1397,NJBF000070266,415 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36648725,-74.43555963,RES1,3001,,27,NE,1915,1915,3101,2,2,1621.848627,1621.848627,3505,YES,31.17,37.29,3,-1.7,6106,114.417798,124.045388,133.833416,140.115324,I,Above,Flat,0,5701,Wood,34.22645936,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1398,NJBF000070246,1625 ADRIATIC AVE,Atlantic City,NJ,39.3664066,-74.43508845,RES1,3001,,16,NE,1900,1900,3101,1,1,1178.22224,1178.22224,3505,NO,13.01,19.54,3,-2.49,6106,114.428908,124.054841,133.843726,140.123942,I,Above,Flat,0,5701,Wood,16.27278371,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1399,NJBF000071943,1500 N ARKANSAS AVE,Atlantic City,NJ,39.372058,-74.448065,RES1,3001,,45,NE,1900,1900,3102,2,2,518.9039749,518.9039749,3505,NO,29.84,43.25,3,7.8,6106,114.082692,123.758704,133.523395,139.831302,I,Above,Hip,0,5701,Wood,36.54430787,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1400,NJBF000071946,1606 BEACH AVE,Atlantic City,NJ,39.3720628,-74.45013709,RES1,3001,,45,NE,1930,1935,3102,1,2,594.778671,594.778671,3505,NO,16.34,25.25,3,4.97,6106,114.037682,123.720963,133.482167,139.797,I,Above,Gable,0,5701,Wood,20.79714133,0,0,,,,1,1,,0.03,nav,1,1930,1,, 1401,NJBF000070180,1512 DREXEL AVE,Atlantic City,NJ,39.3661023,-74.43283658,RES1,3001,,17,NE,1900,1900,3102,2,1,1237.892335,1237.892335,3505,NO,33.26,40.52,3,-2.15,6106,114.480949,124.099126,133.892112,140.163818,I,Above,Gable,0,5701,Wood,36.89250016,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1402,NJBF000068787,229 N CHELSEA AVE,Atlantic City,NJ,39.3576192,-74.45130626,RES3A,3001,,45,NE,1900,1900,3301,2,2,2064.178809,2064.178809,3507,YES,23.92,29.49,1,2.9,6106,114.1835,123.853509,133.616602,139.995695,I,Above,Flat,0,5701,Wood,26.70510692,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1403,NJBF000068807,234 N CHELSEA AVE,Atlantic City,NJ,39.35766625,-74.45185032,RES3A,3001,,17,NE,1900,1900,3301,2,1,1318.622826,1318.622826,3507,NO,26.65,39.07,1,-0.01,6106,114.171069,123.843159,133.605392,139.986313,I,Above,Hip,0,5701,Wood,32.85723193,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1404,NJBF000070085,324-348 KENTUCKY AVE,Atlantic City,NJ,39.36574283,-74.43503171,RES3C,3004,,NaN,ME,1969,0,3301,1,1,8934.504127,8934.504127,3505,NO,14.85,28.41,3,0.19,6106,114.437985,124.062865,133.85198,140.134388,I,Above,Gable,0,NaN,Wood,21.63032614,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1405,NJBF000071923,,Atlantic City,NJ,39.3720084,-74.4561738,RES1,3001,,NaN,NE,1969,0,3103,5,1,1865.046369,1865.046369,3505,NO,100.21,110.54,3,6.53,6106,113.907006,123.611896,133.363218,139.697132,I,Above,Flat,0,5701,Wood,105.3744997,0,0,,,,1,1,,0.03,nav,1,1969,5,, 1406,NJBF000071898,1424 N ARKANSAS AVE,Atlantic City,NJ,39.37193301,-74.44736757,RES1,3001,,17,NE,1910,1910,3102,2,1,1925.020508,1925.020508,3505,YES,28.55,37.73,3,0.9,6106,114.099233,123.77271,133.538629,139.844655,I,Above,Hip,0,5701,Wood,33.14071182,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1407,NJBF000071919,2030 E RIVERSIDE DR,Atlantic City,NJ,39.37200151,-74.44551683,RES1,3001,,17,NE,1950,1950,3102,2,1,2166.975566,2166.975566,3505,NO,34.23,49.08,3,5.29,6106,114.138535,123.805678,133.574733,139.874006,I,Above,Gable,0,5701,Wood,41.65114767,0,0,,,,1,1,,0.03,nav,1,1950,2,, 1408,NJBF000071918,1405 N ARKANSAS AVE,Atlantic City,NJ,39.37199482,-74.44614308,RES1,3001,,17,NE,1935,1935,3102,2,1,1572.146673,1572.146673,3505,NO,26.32,35.08,3,4.64,6106,114.125061,123.794353,133.562338,139.863848,I,Above,Gable,0,5701,Wood,30.69990319,0,0,,,,1,1,,0.03,nav,1,1935,2,, 1409,NJBF000071906,1526 BEACH AVE,Atlantic City,NJ,39.37195632,-74.44952054,RES1,3001,,17,NE,1900,1900,3102,2,1,1823.462174,1823.462174,3505,NO,29.86,42.13,3,3.91,6106,114.052276,123.733298,133.495574,139.808808,I,Above,Gable,0,5701,Wood,35.99455447,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1410,NJBF000067366,334 N ANNAPOLIS AVE,Atlantic City,NJ,39.35322974,-74.46275283,RES1,3001,,17,NE,1925,1925,3102,2,1,1013.979785,1013.979785,3505,NO,24.77,39.39,3,-0.04,6106,113.987705,123.693979,133.440478,139.878363,I,Above,Hip,0,5701,Wood,32.07683242,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1411,NJBF000067185,309 N RICHMOND AVE,Atlantic City,NJ,39.35247768,-74.46282417,RES1,3001,,17,NE,1950,1950,3102,2,1,1521.750961,1521.750961,3505,NO,27.98,39.43,3,5.17,6106,113.995595,123.70083,133.447305,139.888869,I,Above,Flat,0,5701,Wood,33.70818204,0,0,,,,1,1,,0.03,nav,1,1950,2,, 1412,NJBF000067360,4111 STEWART AVE,Atlantic City,NJ,39.35321171,-74.46197225,RES1,3001,,17,NE,1946,1946,3102,1,1,838.3891917,838.3891917,3505,NO,16.64,30.9,3,-1.4,6106,114.005056,123.708248,133.45586,139.891337,I,Above,Flat,0,5701,Wood,23.76985706,0,0,,,,1,1,,0.03,nav,1,1946,1,, 1413,NJBF000067138,4205 SOUTH BLVD,Atlantic City,NJ,39.35225067,-74.46198058,RES1,3001,,17,NE,1954,1954,3102,1,1,1627.830587,1627.830587,3505,NO,18.29,26.61,3,4.11,6106,114.016937,123.718472,133.466162,139.906043,I,Above,Flat,0,5701,Wood,22.44797706,0,0,,,,1,1,,0.03,nav,1,1954,1,, 1414,NJBF000067432,355 N ANNAPOLIS AVE,Atlantic City,NJ,39.35346244,-74.46238367,RES1,3001,,17,NE,1950,1950,3102,1,1,1307.329161,1307.329161,3505,NO,20.28,32.41,3,2.89,6106,113.99289,123.698122,133.445119,139.880772,I,Above,Flat,0,5701,Wood,26.34427878,0,0,,,,1,1,,0.03,nav,1,1950,1,, 1415,NJBF000067208,4208 STEWART AVE,Atlantic City,NJ,39.35256023,-74.46274252,RES1,3001,,17,NE,1925,1925,3102,2,1,826.8666469,826.8666469,3505,NO,33.13,45.01,3,8.91,6106,113.996339,123.701402,133.447984,139.888914,I,Above,Flat,0,5701,Wood,39.07236642,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1416,NJBF000067262,194207 STEWART AVE,Atlantic City,NJ,39.35281375,-74.46280305,RES1,3001,,17,NE,1900,1900,3102,2,1,1242.617151,1242.617151,3505,NO,38.85,45.03,3,6.5,6106,113.99183,123.697575,133.444047,139.884001,I,Above,Flat,0,5701,Wood,41.93761886,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1417,NJBF000067537,4100 PORTER AVE,Atlantic City,NJ,39.3537649,-74.46218319,RES1,3001,,16,NE,1957,1957,3102,1,1,976.63704,976.63704,3505,NO,12.67,22,3,0.42,6106,113.993506,123.698472,133.445721,139.879348,I,Above,Hip,0,5701,Wood,17.33386324,0,0,,,,1,1,,0.03,nav,1,1957,1,, 1418,NJBF000067302,330 N ANNAPOLIS AVE,Atlantic City,NJ,39.35298683,-74.46252006,RES1,3001,,17,NE,1900,1900,3102,2,1,1756.497426,1756.497426,3505,NO,36.35,43.97,3,7.31,6106,113.995864,123.700804,133.447659,139.88592,I,Above,Gable,0,5701,Wood,40.16365712,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1419,NJBF000069201,223 N CALIFORNIA AVE,Atlantic City,NJ,39.35915027,-74.44663529,RES3A,3001,,27,NE,1920,1920,3301,2,2,618.2079095,618.2079095,3505,YES,33.04,40.46,3,6.43,6106,114.266367,123.921783,133.692153,140.047132,I,Above,Gable,0,5701,Wood,36.74849638,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1420,NJBF000068416,20 N TEXAS AVE,Atlantic City,NJ,39.35667831,-74.4438062,RES3B,3001,,17,ME,1900,1900,3301,2,1,1809.03086,1809.03086,3505,NO,43.61,50.85,3,5.9,6106,114.358092,123.999454,133.774705,140.127852,I,Above,Hip,0,NaN,Wood,47.22904215,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1421,NJBF000068386,10 N TEXAS AVE,Atlantic City,NJ,39.35658035,-74.44376846,RES3B,3001,,45,ME,1900,1900,3301,3,2,1351.396563,1351.396563,3505,YES,54.43,62.59,3,3.05,6106,114.360126,124.001189,133.776509,140.129871,I,Above,Hip,0,NaN,Wood,58.51190823,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1422,NJBF000067209,308 N ANNAPOLIS AVE,Atlantic City,NJ,39.3525655,-74.4622245,RES1,3001,,17,NE,1900,1900,3102,1,1,2198.005726,2198.005726,3505,NO,19.2,28.7,3,0.43,6106,114.007635,123.710681,133.457996,139.89724,I,Above,Hip,0,5701,Wood,23.94935202,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1423,NJBF000067141,305 N RICHMOND AVE,Atlantic City,NJ,39.35227039,-74.4626084,RES1,3001,,45,NE,2001,1900,3102,2,2,2606.918882,2606.918882,3505,NO,31.55,38.95,3,1.81,6106,114.00295,123.70697,133.45377,139.895596,I,Above,Flat,0,5701,Wood,35.25343717,0,0,,,,1,1,,0.03,nav,1,2001,2,, 1424,NJBF000069230,229 N CALIFORNIA AVE,Atlantic City,NJ,39.359259,-74.446723,RES3A,3001,,27,NE,1900,1900,3301,2,2,536.2999754,536.2999754,3505,YES,32.6,38.57,3,8.68,6106,114.263126,123.919025,133.689236,140.044128,I,Above,Gable,0,5701,Wood,35.58493038,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1425,NJBF000069165,217 N CALIFORNIA AVE,Atlantic City,NJ,39.359032,-74.4465725,RES3A,3001,,27,NE,1900,1900,3301,2,2,685.4100248,685.4100248,3505,YES,38.85,44.12,3,3.12,6106,114.269153,123.924166,133.694652,140.049856,I,Above,Flat,0,5701,Wood,41.48301116,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1426,NJBF000069175,219 N CALIFORNIA AVE,Atlantic City,NJ,39.359068,-74.446595,RES3A,3001,,27,NE,1900,1900,3301,2,2,729.8922333,729.8922333,3505,YES,33.12,43.35,3,5.6,6106,114.268236,123.923383,133.693829,140.048976,I,Above,Gable,0,5701,Wood,38.23176658,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1427,NJBF000069184,221 N CALIFORNIA AVE,Atlantic City,NJ,39.35910898,-74.44662645,RES3A,3001,,27,NE,1900,1900,3301,2,2,508.3855046,508.3855046,3505,YES,33.78,47.92,3,8.18,6106,114.267062,123.922384,133.692773,140.04788,I,Above,Gable,0,5701,Wood,40.849748,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1428,NJBF000068412,2714 ARCTIC AVE,Atlantic City,NJ,39.35666754,-74.44599135,COM1,3003,,45,ME,1900,1900,3401,3,2,773.1140689,773.1140689,3507,NO,46.41,57.95,1,2.72,6106,114.310805,123.959949,133.731631,140.093807,I,Above,Flat,0,NaN,Wood,52.18479285,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1429,NJBF000068270,36 N IOWA AVE,Atlantic City,NJ,39.35619214,-74.44675283,RES3B,3001,,45,ME,1910,1910,3301,3,4,1177.111232,1177.111232,3504,YES,58.23,69.61,-4,0,6106,114.300135,123.951227,133.721715,140.088837,I,Above,Gable,0,NaN,Wood,63.92163817,0,0,,,,1,1,,0.03,nav,1,1910,3,, 1430,NJBF000068277,2605 ATLANTIC AVE,Atlantic City,NJ,39.356213,-74.4436685,COM1,3003,730,NaN,ME,1969,0,3401,1,1,2576.553508,2576.553508,3507,NO,19.53,27.31,1,2.05,6106,114.366807,124.006899,133.782406,140.136748,I,Above,Flat,0,NaN,Wood,23.42185377,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1431,NJBF000068322,40 WINE ST,Atlantic City,NJ,39.35635,-74.4459855,COM1,3003,,33,ME,1915,1915,3401,2,1,574.4113276,574.4113276,3507,NO,37.29,51.18,1,2.34,6106,114.31484,123.963436,133.735152,140.098545,I,Above,Flat,0,NaN,Wood,44.23545019,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1432,NJBF000066392,105 N COLUMBIA AVE,Atlantic City,NJ,39.34963463,-74.46354788,RES3A,3001,,27,NE,1925,1925,3301,2,2,2917.217412,2917.217412,3505,YES,27.47,34.82,3,4.8,6106,114.01574,123.718587,133.464238,139.921188,I,Above,Flat,0,5701,Wood,31.14409076,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1433,NJBF000068236,40 N STENTON PL,Atlantic City,NJ,39.35609568,-74.44736975,RES3B,3001,,45,ME,1900,1900,3301,3,2,1084.995516,1084.995516,3504,YES,40.48,51.34,-4,0,6106,114.287915,123.941076,133.71058,140.080565,I,Above,Hip,0,NaN,Wood,45.91095276,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1434,NJBF000068007,107 N MONTPELIER AVE,Atlantic City,NJ,39.3553185,-74.4510125,RES3A,3001,,45,NE,1920,1920,3301,2,2,1001.286378,1001.286378,3505,NO,25.8,34.95,3,2.51,6106,114.218277,123.883451,133.647251,140.034683,I,Above,Hip,0,5701,Wood,30.37609293,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1435,NJBF000066355,123 N BARTRAM AVE,Atlantic City,NJ,39.34955213,-74.46397448,RES3A,3001,,17,NE,1900,1900,3301,2,1,1310.58193,1310.58193,3505,YES,32.82,44.78,3,7.21,6106,114.007453,123.711822,133.456886,139.915608,I,Above,Gable,0,5701,Wood,38.80043681,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1436,NJBF000068250,27 N IOWA AVE,Atlantic City,NJ,39.35614516,-74.44619804,COM1,3003,,45,ME,1900,1900,3401,4,3,980.7852139,980.7852139,3507,YES,71.68,86.68,1,0.6,6106,114.312771,123.961785,133.733173,140.098227,I,Above,Flat,0,NaN,Wood,79.18242388,0,0,,,,1,1,,0.03,nav,1,1900,4,, 1437,NJBF000068317,110 N BRIGHTON AVE,Atlantic City,NJ,39.35633764,-74.44852093,RES3A,3001,,45,NE,1900,1900,3301,3,2,1505.507433,1505.507433,3505,YES,46.16,57.17,3,3.71,6106,114.259899,123.917642,133.685284,140.058889,I,Above,Hip,0,5701,Wood,51.66428052,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1438,NJBF000066406,135 N BARTRAM AVE,Atlantic City,NJ,39.34968343,-74.46407985,RES3A,3001,,17,NE,1920,1920,3301,2,1,3059.913778,3059.913778,3505,NO,33.12,38.13,3,6.18,6106,114.003456,123.708493,133.453406,139.911868,I,Above,Hip,0,5701,Wood,35.62602801,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1439,NJBF000066286,113 N BARTRAM AVE,Atlantic City,NJ,39.34936315,-74.46382247,RES3A,3001,,17,NE,1900,1900,3301,2,1,1451.787322,1451.787322,3505,NO,36.04,46.52,3,0.99,6106,114.013202,123.716607,133.46189,139.920985,I,Above,Gable,0,5701,Wood,41.28098559,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1440,NJBF000066318,117 N BARTRAM AVE,Atlantic City,NJ,39.34946039,-74.46389827,RES3A,3001,,17,NE,1920,1920,3301,2,1,1278.249325,1278.249325,3505,NO,41.12,53.29,3,6.28,6106,114.010295,123.714187,133.459361,139.918259,I,Above,Gable,0,5701,Wood,47.20652226,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1441,NJBF000067273,4004 SOUTH BLVD,Atlantic City,NJ,39.35284585,-74.4601103,RES1,3001,,17,NE,1928,1928,3102,2,1,1221.80489,1221.80489,3505,NO,22.53,31.42,3,-1.44,6106,114.050448,123.745765,133.496088,139.92707,I,Above,Flat,0,5701,Wood,26.97825185,0,0,,,,1,1,,0.03,nav,1,1928,2,, 1442,NJBF000067531,311 N ELBERON AVE,Atlantic City,NJ,39.35374926,-74.46017355,RES1,3001,,45,NE,1900,1900,3102,1,3,1923.36146,1923.36146,3505,NO,16.44,26.44,3,2.53,6106,114.03773,123.734866,133.485009,139.91217,I,Above,Hip,0,5701,Wood,21.43992751,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1443,NJBF000067668,350 N ELBERON AVE,Atlantic City,NJ,39.35411664,-74.4610412,RES1,3001,,17,NE,1900,1900,3102,2,1,1218.642266,1218.642266,3505,NO,43.17,53.79,3,8.68,6106,114.014139,123.715261,133.464108,139.892465,I,Above,Flat,0,5701,Wood,48.48097986,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1444,NJBF000067296,3930 SOUTH BLVD,Atlantic City,NJ,39.35294453,-74.45986174,RES1,3001,,NaN,NE,1969,0,3102,2,1,1825.494352,1825.494352,3505,NO,31.06,36.13,3,0.66,6106,114.054636,123.749168,133.499842,139.929542,I,Above,Gable,0,5701,Wood,33.5948936,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1445,NJBF000067657,324 HARRISBURG AVE,Atlantic City,NJ,39.35408788,-74.45979743,RES1,3001,,17,NE,1973,1973,3102,1,1,1631.710617,1631.710617,3505,NO,22.62,35.31,3,6.66,6106,114.04175,123.73801,133.488664,139.913052,I,Above,Flat,0,5701,Wood,28.96531589,0,0,,,,1,1,,0.03,nav,1,1973,1,, 1446,NJBF000067440,303 N ELBERON AVE,Atlantic City,NJ,39.35350307,-74.45994875,RES1,3001,,17,NE,1900,1900,3102,2,1,1976.351488,1976.351488,3505,NO,37.11,44.76,3,6.7,6106,114.045736,123.741578,133.492073,139.91958,I,Above,Flat,0,5701,Wood,40.93677273,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1447,NJBF000067594,318 N HARRISBURG AVE,Atlantic City,NJ,39.353917,-74.4596765,RES1,3001,,17,NE,1900,1900,3102,2,1,1209.421209,1209.421209,3505,YES,27.88,38.47,3,4.24,6106,114.046514,123.742018,133.492866,139.917614,I,Above,Hip,0,5701,Wood,33.17262201,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1448,NJBF000067566,316 N HARRISBURG AVE,Atlantic City,NJ,39.3538415,-74.4596285,RES1,3001,,45,NE,1900,1900,3102,2,3,1271.935982,1271.935982,3505,YES,31.9,43.52,3,-1.24,6106,114.048524,123.743711,133.494638,139.919555,I,Above,Hip,0,5701,Wood,37.70512166,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1449,NJBF000067550,3726 SOUTH BLVD,Atlantic City,NJ,39.353806,-74.458102,RES1,3001,,NaN,NE,1969,0,3102,2,1,1676.982541,1676.982541,3505,NO,32.96,44.75,3,2.87,6106,114.08237,123.771631,133.5248,139.944653,I,Above,Hip,0,5701,Wood,38.854856,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1450,NJBF000067710,326 N HARRISBURG AVE,Atlantic City,NJ,39.35425145,-74.45995684,RES1,3001,,45,NE,1900,1900,3102,2,3,1538.811171,1538.811171,3505,NO,36.17,49.02,3,8.74,6106,114.036213,123.733366,133.483769,139.907962,I,Above,Hip,0,5701,Wood,42.59464559,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1451,NJBF000067342,3912 SOUTH BLVD,Atlantic City,NJ,39.35314801,-74.45939333,RES1,3001,,33,NE,1900,1900,3102,3,1,2747.721999,2747.721999,3505,NO,37.44,45.33,3,2.08,6106,114.062357,123.755435,133.506773,139.933974,I,Above,Gable,0,5701,Wood,41.38851454,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1452,NJBF000067334,4001 SOUTH BLVD,Atlantic City,NJ,39.35312532,-74.46026163,RES1,3001,,17,NE,1900,1900,3102,1,1,1674.403866,1674.403866,3505,NO,21.65,30.03,3,6.84,6106,114.043618,123.740013,133.490091,139.920338,I,Above,Gable,0,5701,Wood,25.83786362,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1453,NJBF000067567,3815 SOUTH BLVD,Atlantic City,NJ,39.35384273,-74.4587714,RES1,3001,,45,NE,1912,1912,3102,2,2,1569.35757,1569.35757,3505,NO,42.65,56.4,3,6.79,6106,114.06727,123.75916,133.511342,139.933342,I,Above,Hip,0,5701,Wood,49.52550279,0,0,,,,1,1,,0.03,nav,1,1912,2,, 1454,NJBF000069122,207 N CALIFORNIA AVE,Atlantic City,NJ,39.35884564,-74.44643572,RES3A,3001,,27,NE,1920,1920,3301,2,2,625.9877517,625.9877517,3505,YES,43.94,54.48,3,8.13,6106,114.2744,123.928635,133.699368,140.054768,I,Above,Gable,0,5701,Wood,49.20941443,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1455,NJBF000068990,209 N IOWA AVE,Atlantic City,NJ,39.35827669,-74.44764059,RES3A,3001,,45,NE,1900,1900,3301,3,4,2047.529531,2047.529531,3505,NO,49.91,62.51,3,6.15,6106,114.25518,123.91286,133.681709,140.04411,I,Above,Hip,0,5701,Wood,56.20963769,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1456,NJBF000068837,2811 FAIRMOUNT AVE,Atlantic City,NJ,39.357754,-74.448251,RES3A,3001,,45,NE,1900,1900,3301,2,2,1180.94646,1180.94646,3505,NO,35.34,44.82,3,0.06,6106,114.248332,123.907393,133.675322,140.042199,I,Above,Gable,0,5701,Wood,40.07674578,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1457,NJBF000068855,2809 FAIRMOUNT AVE,Atlantic City,NJ,39.35780435,-74.44818604,RES3A,3001,,45,NE,1900,1900,3301,2,2,2062.49263,2062.49263,3505,NO,33.07,39.03,3,5.53,6106,114.249132,123.908036,133.676064,140.042487,I,Above,Hip,0,5701,Wood,36.05200264,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1458,NJBF000068872,2807 FAIRMOUNT AVE,Atlantic City,NJ,39.35785891,-74.44810774,RES3A,3001,,17,NE,1900,1900,3301,2,1,1735.522316,1735.522316,3505,NO,19.71,32.25,3,-2.14,6106,114.250153,123.908862,133.677008,140.042907,I,Above,Gable,0,5701,Wood,25.98303743,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1459,NJBF000068865,200 N IOWA AVE,Atlantic City,NJ,39.35783817,-74.44787068,RES3A,3001,,45,NE,1905,1905,3301,2,2,1454.349164,1454.349164,3505,NO,35.79,47.6,3,2.44,6106,114.255563,123.913381,133.681911,140.046967,I,Above,Hip,0,5701,Wood,41.69483008,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1460,NJBF000070809,349 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36851784,-74.42892022,RES1,3001,,27,NE,2002,2002,3103,2,1,1765.798341,1765.798341,3505,NO,37.07,46.81,3,6.45,6106,114.536494,124.145287,133.944974,140.191015,I,Above,Gable,0,5701,Wood,41.9435451,0,0,,,,1,1,,0.03,nav,1,2002,2,, 1461,NJBF000069402,243 N NEVADA AVE RR,Atlantic City,NJ,39.360121,-74.4447,RES3A,3001,,27,NE,1900,1900,3301,1,2,528.4576927,528.4576927,3505,NO,17.74,28.01,3,6.34,6106,114.296544,123.946544,133.719959,140.063449,I,Above,Gable,0,5701,Wood,22.87711634,0,1.1,,,,1,1,,0.03,nav,1,1900,1,, 1462,NJBF000073114,49 OCEAN DRIVE WEST,Atlantic City,NJ,39.37783902,-74.40714802,RES1,3001,,18,NE,1975,1975,3103,3,1,1665.084739,1665.084739,3505,NO,52.34,63.9,3,2.38,6106,114.890916,124.448533,134.289062,140.40282,I,Above,Gable,0,5701,Wood,58.12050678,0,1.1,,,,1,1,,0.03,nav,1,1975,3,, 1463,NJBF000073117,5217 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.377905,-74.40653,RES1,3001,,16,NE,1977,1977,3103,2,1,980.8902906,980.8902906,3505,NO,45.81,58.26,3,7.04,6106,114.903161,124.459271,134.301076,140.411568,I,Above,Flat,0,5701,Wood,52.03478125,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 1464,NJBF000073149,44 OCEAN DRIVE WEST,Atlantic City,NJ,39.37828875,-74.40815485,RES1,3001,,19,NE,1999,1999,3103,3,1,2898.542879,2898.542879,3505,NO,41.68,55.36,3,5.17,6106,114.86459,124.425299,134.263605,140.380982,I,Above,Gable,0,5701,Wood,48.52265697,0,1.1,,,,1,1,,0.03,nav,1,1999,3,, 1465,NJBF000073685,,Atlantic City,NJ,39.38249095,-74.40630667,RES1,3001,,NaN,NE,1969,0,3103,4,1,1192.682879,1192.682879,3505,NO,70.42,83.7,3,1.14,6106,114.855949,124.416239,134.257133,140.352892,I,Above,Flat,0,5701,Wood,77.06211482,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1466,NJBF000073677,,Atlantic City,NJ,39.38245358,-74.40180427,RES3C,3001,,NaN,ME,1982,0,3301,1,1,6288.535275,6288.535275,3507,NO,13.83,24.77,1,2.87,6106,114.950754,124.500038,134.350565,140.424105,I,Above,Hip,0,NaN,Wood,19.30083102,0,0,,,,1,1,,0.03,nav,1,1982,1,, 1467,NJBF000073700,,Atlantic City,NJ,39.38255282,-74.40697018,RES1,3001,,NaN,NE,1969,0,3103,5,1,1441.284684,1441.284684,3505,NO,72.08,82.71,3,5.05,6110,114.84133,124.403329,134.242799,140.341603,I,Above,Gable,0,5701,Wood,77.3945611,0,0,,,,1,1,,0.35,nav,1,1969,5,, 1468,NJBF000073111,51 OCEAN DRIVE WEST,Atlantic City,NJ,39.37776431,-74.40693143,RES1,3001,,20,NE,2016,2016,3103,3,1,2006.870709,2006.870709,3505,NO,51.84,60.99,3,0.17,6106,114.896338,124.453314,134.294316,140.407221,I,Above,Gable,0,5701,Wood,56.41635162,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 1469,NJBF000073710,4 BRIGHTON DRIVE,Atlantic City,NJ,39.38264064,-74.41039319,RES1,3001,,18,NE,1988,1988,3103,2,1,2638.339407,2638.339407,3505,YES,41.06,46.28,3,4.3,6106,114.768353,124.339098,134.171352,140.286314,I,Above,Hip,0,5701,Wood,43.66926449,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 1470,NJBF000073708,,Atlantic City,NJ,39.3826265,-74.40745249,RES1,3001,,NaN,NE,1969,0,3103,6,1,1205.338163,1205.338163,3505,NO,108.7,117.6,3,2.68,6106,114.830374,124.393647,134.232074,140.332994,I,Above,Gable,0,5701,Wood,113.1476404,0,0,,,,1,1,,0.03,nav,1,1969,6,, 1471,NJBF000073326,5204 WATERVIEW DR,Atlantic City,NJ,39.3798406,-74.40666038,RES1,3001,,16,NE,1975,1975,3103,1,1,1980.246536,1980.246536,3505,NO,11.57,24.79,3,-2.55,6106,114.878406,124.436951,134.277944,140.383316,I,Above,Gable,0,5701,Wood,18.17809177,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 1472,NJBF000073805,,Atlantic City,NJ,39.38328268,-74.3994215,RES3C,3001,,NaN,ME,1969,0,3301,1,1,12176.12165,12176.12165,3507,NO,11.14,23.79,1,-0.12,6106,114.991235,124.535739,134.391157,140.450278,I,Above,Flat,0,NaN,Wood,17.4680042,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1473,NJBF000073675,5223 HARBOR BEACH BLVD,Atlantic City,NJ,39.3824349,-74.4082986,RES1,3001,,19,NE,2011,2011,3103,3,1,1760.963482,1760.963482,3505,NO,47.57,61.65,3,3.07,6106,114.814721,124.379949,134.216659,140.322245,I,Above,Gable,0,5701,Wood,54.61259969,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 1474,NJBF000073689,5 BRIGHTON DRIVE,Atlantic City,NJ,39.38250586,-74.41016827,RES1,3001,,17,NE,1990,1990,3103,6,1,802.3202811,802.3202811,3505,NO,84.4,93.49,3,2.81,6106,114.7746,124.344649,134.177421,140.291729,I,Above,Hip,0,5701,Wood,88.94864118,0,0,,,,1,1,,0.03,nav,1,1990,6,, 1475,NJBF000073369,9 SANDY LANE,Atlantic City,NJ,39.38017699,-74.40584728,RES1,3001,,43,NE,1975,1975,3102,2,2,1745.99083,1745.99083,3507,NO,37.9,45.56,1,0.2,6106,114.891683,124.448532,134.291139,140.391497,I,Above,Hip,0,5701,Wood,41.731848,0,0,,,,1,1,,0.03,nav,1,1975,2,, 1476,NJBF000073429,3 SANDY LANE,Atlantic City,NJ,39.38063866,-74.40619479,RES1,3001,,16,NE,1975,1975,3102,1,1,1936.374896,1936.374896,3507,NO,19.36,31.93,1,0.54,6106,114.879148,124.437346,134.279078,140.379785,I,Above,Gable,0,5701,Wood,25.64670541,0,0,,,,1,1,,0.03,nav,1,1975,1,, 1477,NJBF000073463,13 OCEAN DRIVE WEST,Atlantic City,NJ,39.38092416,-74.4091938,RES1,3001,,16,NE,1975,1975,3103,2,1,1640.722309,1640.722309,3505,NO,42.23,54.31,3,8.39,6106,114.812865,124.378957,134.214302,140.328768,I,Above,Gable,0,5701,Wood,48.26730308,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 1478,NJBF000073440,5210 HARBOR BEACH BLVD,Atlantic City,NJ,39.38073031,-74.4078973,RES1,3001,,16,NE,1975,1975,3103,2,1,2471.995445,2471.995445,3505,NO,32.16,40.83,3,4.57,6110,114.842344,124.404932,134.243054,140.351824,I,Above,Gable,0,5701,Wood,36.49413887,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 1479,NJBF000073397,18 OCEAN DRIVE WEST,Atlantic City,NJ,39.3803878,-74.40950217,RES1,3001,,18,NE,1975,1975,3103,2,1,2039.589894,2039.589894,3505,NO,37.97,52.91,3,5.97,6106,114.812424,124.378787,134.213663,140.331242,I,Above,Flat,0,5701,Wood,45.43958661,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 1480,NJBF000073790,700 LAGOON BLVD,Atlantic City,NJ,39.38317352,-74.40651082,RES1,3001,,43,NE,1985,1985,3103,2,2,1397.7679,1397.7679,3505,NO,29.09,42.35,3,7.58,6106,114.844017,124.405444,134.245668,140.340393,I,Above,Gable,0,5701,Wood,35.72225097,0,0,,,,1,1,,0.03,nav,1,1985,2,, 1481,NJBF000073478,8 OCEAN DRIVE EAST,Atlantic City,NJ,39.38104288,-74.40399249,RES1,3001,,16,NE,1975,1975,3102,2,1,1509.50833,1509.50833,3507,NO,26.14,36.62,1,2.93,6106,114.920822,124.473966,134.320247,140.40884,I,Above,Gable,0,5701,Wood,31.38223212,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 1482,NJBF000073575,14 ONTARIO DRIVE,Atlantic City,NJ,39.38171192,-74.40739965,RES1,3001,,43,NE,1985,1985,3103,2,2,1376.954382,1376.954382,3505,NO,36.14,47.49,3,0.15,6110,114.841734,124.40402,134.242868,140.346275,I,Above,Flat,0,5701,Wood,41.81770673,0,0,,,,1,1,,0.35,nav,1,1985,2,, 1483,NJBF000073565,,Atlantic City,NJ,39.38164918,-74.40269315,RES3C,3001,,NaN,ME,1985,0,3301,1,1,5018.509657,5018.509657,3507,NO,11.32,25.68,1,-0.82,6106,114.941207,124.49181,134.340681,140.421009,I,Above,Gable,0,NaN,Wood,18.50183341,0,0,,,,1,1,,0.03,nav,1,1985,1,, 1484,NJBF000073545,8 SEASIDE RD,Atlantic City,NJ,39.38150175,-74.40335061,RES1,3001,,15,NE,1976,1976,3102,1,1,2499.819445,2499.819445,3507,NO,13.91,24.42,1,0.45,6106,114.929079,124.481128,134.328636,140.412688,I,Above,Hip,0,5701,Wood,19.16474404,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 1485,NJBF000073531,10 SEASIDE RD,Atlantic City,NJ,39.38137291,-74.40317728,RES1,3001,,43,NE,1975,1975,3102,2,2,1610.65021,1610.65021,3507,NO,24.22,37.03,1,-0.22,6106,114.934181,124.485673,134.333593,140.417149,I,Above,Gable,0,5701,Wood,30.62438055,0,0,,,,1,1,,0.03,nav,1,1975,2,, 1486,NJBF000073485,7 SURF LANE,Atlantic City,NJ,39.38108167,-74.40451251,RES1,3001,,16,NE,1975,1975,3102,2,1,1836.917881,1836.917881,3507,NO,34.6,48.12,1,-0.94,6106,114.909454,124.463921,134.309081,140.400155,I,Above,Gable,0,5701,Wood,41.35650823,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 1487,NJBF000073294,27 OCEAN DRIVE WEST,Atlantic City,NJ,39.3796245,-74.40834363,RES1,3001,,18,NE,1975,1975,3103,3,1,1211.723033,1211.723033,3505,YES,48.02,55.46,3,4.36,6106,114.845444,124.408057,134.245584,140.359863,I,Above,Flat,0,5701,Wood,51.74069702,0,1.2,,,,1,1,,0.03,nav,1,1975,3,, 1488,NJBF000073365,5106 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3801299,-74.40351581,RES1,3001,,19,NE,1975,1975,3102,3,1,2639.196288,2639.196288,3507,NO,57.07,63.9,1,0.6,6106,114.941135,124.492145,134.339712,140.428581,I,Above,Hip,0,5701,Wood,60.48751152,0,1.1,,,,1,1,,0.03,nav,1,1975,3,, 1489,NJBF000073332,5108 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37991126,-74.40381783,RES1,3001,,16,NE,1975,1975,3102,2,1,2142.702752,2142.702752,3507,NO,30.78,42.78,1,2.26,6106,114.937286,124.488803,134.335789,140.426814,I,Above,Flat,0,5701,Wood,36.78213581,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 1490,NJBF000073503,6 OCEAN DRIVE EAST,Atlantic City,NJ,39.38118137,-74.40416039,RES1,3001,,16,NE,1975,1975,3102,1,1,2024.117182,2024.117182,3507,NO,15.19,29.99,1,-0.32,6106,114.915741,124.46944,134.315321,140.404348,I,Above,Gable,0,5701,Wood,22.59031832,0,0,,,,1,1,,0.03,nav,1,1975,1,, 1491,NJBF000073249,5116 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37932692,-74.40442586,RES1,3001,,16,NE,1975,1975,3102,2,1,2043.274324,2043.274324,3507,YES,23.61,28.85,1,-0.58,6106,114.931162,124.483549,134.329408,140.425191,I,Above,Hip,0,5701,Wood,26.23209425,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 1492,NJBF000073287,5219 SEA SPRAY RD,Atlantic City,NJ,39.37958407,-74.40792677,RES1,3001,,20,NE,2008,2008,3103,3,1,1827.85151,1827.85151,3505,NO,46.77,53.59,3,-2.27,6106,114.854673,124.416175,134.254586,140.366948,I,Above,Gable,0,5701,Wood,50.17992044,0,1.2,,,,1,1,,0.03,nav,1,2008,3,, 1493,NJBF000073917,606 ALBERTA DRIVE,Atlantic City,NJ,39.3840007,-74.40438723,RES1,3001,,33,NE,1987,1987,3102,2,1,4141.094172,4141.094172,3507,NO,35.37,44.92,1,0.33,6106,114.879329,124.436304,134.280755,140.362664,I,Above,Gable,0,5701,Wood,40.14386572,0,0,,,,1,1,,0.03,nav,1,1987,2,, 1494,NJBF000073452,5 SEA SPRAY COURT,Atlantic City,NJ,39.38083596,-74.40542816,RES1,3001,,16,NE,1973,1973,3102,1,1,2197.908318,2197.908318,3507,NO,13.72,24.43,1,0.09,6106,114.89303,124.449512,134.292806,140.389142,I,Above,Gable,0,5701,Wood,19.07691249,0,0,,,,1,1,,0.03,nav,1,1973,1,, 1495,NJBF000073139,5213 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37818218,-74.40624273,RES1,3001,,17,NE,1975,1975,3102,2,1,1521.87739,1521.87739,3507,NO,36.72,46.75,1,-0.92,6106,114.906034,124.461724,134.304059,140.412298,I,Above,Flat,0,5701,Wood,41.73396231,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 1496,NJBF000073693,4818 ROSS DRIVE SOUTH,Atlantic City,NJ,39.38251218,-74.4004237,RES3C,3001,,37,ME,1986,1986,3301,2,1,5605.470197,5605.470197,3507,NO,24.24,38,1,-0.65,6106,114.978965,124.525032,134.378522,140.44492,I,Above,Gable,0,NaN,Wood,31.1197423,0,0,,,,1,1,,0.03,nav,1,1986,2,, 1497,NJBF000073217,34 OCEAN DRIVE WEST,Atlantic City,NJ,39.37905589,-74.40864362,RES1,3001,,20,NE,2004,2004,3103,3,1,2092.382281,2092.382281,3505,NO,39.25,47.63,3,6.43,6106,114.845571,124.408365,134.245434,140.362892,I,Above,Hip,0,5701,Wood,43.44080134,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 1498,NJBF000073376,20 OCEAN DRIVE WEST,Atlantic City,NJ,39.38024548,-74.40941438,RES1,3001,,16,NE,1975,1975,3103,1,1,2003.818167,2003.818167,3505,NO,16.48,23.32,3,5.16,6106,114.815892,124.381887,134.216991,140.334581,I,Above,Flat,0,5701,Wood,19.89755598,0,0,,,,1,1,,0.03,nav,1,1975,1,, 1499,NJBF000073646,5228 LAGOON BLVD,Atlantic City,NJ,39.3822249,-74.40893887,RES1,3001,,16,NE,1974,1974,3103,2,1,2532.733893,2532.733893,3505,YES,34.57,40.04,3,2.95,6106,114.803613,124.370272,134.205712,140.315009,I,Above,Gable,0,5701,Wood,37.30708084,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 1500,NJBF000073601,,Atlantic City,NJ,39.38192544,-74.40250645,RES3C,3001,,NaN,ME,1982,0,3301,1,1,7187.109482,7187.109482,3507,NO,15.25,21.38,1,-0.99,6106,114.942013,124.492446,134.341632,140.420224,I,Above,Gable,0,NaN,Wood,18.31547146,0,0,,,,1,1,,0.03,nav,1,1982,1,, 1501,NJBF000073624,,Atlantic City,NJ,39.3820862,-74.40560292,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1699.934244,1699.934244,3505,NO,9.49,24.29,3,-2.29,6106,114.875274,124.433433,134.275956,140.369465,I,Above,Gable,0,5701,Wood,16.88956923,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1502,NJBF000073631,,Atlantic City,NJ,39.38212756,-74.40654384,RES1,3001,,NaN,NE,1969,0,3103,5,1,1705.585072,1705.585072,3505,NO,54.75,62.36,3,-2.61,6106,114.855045,124.415583,134.256098,140.354093,I,Above,Gable,0,5701,Wood,58.55360693,0,0,,,,1,1,,0.03,nav,1,1969,5,, 1503,NJBF000069435,302 TURNPIKE RD,Atlantic City,NJ,39.36039361,-74.44392632,COM3,3001,,NaN,ME,1969,0,3401,1,1,6053.902274,6053.902274,3507,NO,18.52,26.39,1,-0.97,6106,114.310013,123.95769,133.732352,140.071677,I,Above,Flat,0,NaN,Wood,22.45698803,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1504,NJBF000069469,300 N GEORGIA AVE,Atlantic City,NJ,39.36068769,-74.44326597,COM3,3001,218,NaN,ME,1969,0,3401,2,1,1517.101328,1517.101328,3507,NO,28.68,38.98,1,1.11,6106,114.320751,123.966548,133.74227,140.077795,I,Above,Flat,0,NaN,Wood,33.82893552,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1505,NJBF000068738,2833 FAIRMOUNT AVE,Atlantic City,NJ,39.35751834,-74.44876152,RES3A,3001,,27,NE,1905,1905,3301,2,2,827.3778354,827.3778354,3505,YES,34.61,44.77,3,5.6,6106,114.240118,123.900657,133.667795,140.037609,I,Above,Flat,0,5701,Wood,39.69388017,0,0,,,,1,1,,0.03,nav,1,1905,2,, 1506,NJBF000068751,2831 FAIRMOUNT AVE,Atlantic City,NJ,39.3575415,-74.4487015,RES3A,3001,,27,NE,1900,1900,3301,2,2,749.7802458,749.7802458,3505,NO,32.71,45.63,3,3.08,6106,114.24115,123.901506,133.668738,140.038219,I,Above,Flat,0,5701,Wood,39.16780427,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1507,NJBF000069370,2409 FAIRMOUNT AVE,Atlantic City,NJ,39.35991018,-74.44296161,COM3,3001,100,NaN,ME,1969,0,3401,1,1,8304.200866,8304.200866,3507,NO,16.17,29.97,1,1.8,6106,114.336784,123.980343,133.756677,140.093969,I,Above,Flat,0,NaN,Wood,23.06929831,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1508,NJBF000069350,205 N FLORIDA AVE,Atlantic City,NJ,39.3597896,-74.44395708,RES3A,3001,,17,NE,1925,1925,3301,2,1,872.5049871,872.5049871,3505,YES,29.85,37.18,3,-2.38,6106,114.31668,123.963555,133.738246,140.080042,I,Above,Flat,0,5701,Wood,33.51611037,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1509,NJBF000069809,1523 BALTIC AVE,Atlantic City,NJ,39.36417806,-74.43232243,RES3D,3004,,45,E,1900,1900,3303,2,3,1336.358079,1336.358079,3505,YES,23.13,35.53,3,1.77,6106,114.51494,124.128794,133.923024,140.199351,I,Above,Flat,0,NaN,Wood,29.33111894,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1510,NJBF000069708,1741 BALTIC AVE,Atlantic City,NJ,39.36316527,-74.43475219,COM1,3003,441,NaN,ME,1969,0,3401,1,1,4249.429262,4249.429262,3507,NO,14.1,26.47,1,2.3,6106,114.474797,124.095181,133.885218,140.175793,I,Above,Flat,0,NaN,Wood,20.28449051,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1511,NJBF000071659,312 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37119649,-74.42001134,RES1,3001,,17,NE,1999,1998,3102,2,1,921.9357653,921.9357653,3505,NO,31.56,36.82,3,7.89,6106,114.695382,124.280501,134.096587,140.293087,I,Above,Hip,0,5701,Wood,34.1916476,0,0,,,,1,1,,0.03,nav,1,1999,2,, 1512,NJBF000071678,314 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3712565,-74.4200535,RES1,3001,,17,NE,1999,1999,3102,2,1,904.377175,904.377175,3505,NO,42.35,48.55,3,6.35,6106,114.693777,124.279095,134.095086,140.291583,I,Above,Hip,0,5701,Wood,45.45147655,0,0,,,,1,1,,0.03,nav,1,1999,2,, 1513,NJBF000071563,530 DREXEL AVE,Atlantic City,NJ,39.370938,-74.420954,RES1,3001,,27,NE,1925,1925,3102,2,2,1617.271093,1617.271093,3505,YES,36.76,46.38,3,0.44,6106,114.678319,124.265886,134.080192,140.281933,I,Above,Hip,0,5701,Wood,41.56715678,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1514,NJBF000071590,509 GRAFF LANE,Atlantic City,NJ,39.37102117,-74.420303,RES1,3001,,17,NE,1925,1925,3102,2,1,599.6272844,599.6272844,3505,YES,30.62,36.08,3,-0.82,6106,114.691209,124.276966,134.092519,140.290956,I,Above,Hip,0,5701,Wood,33.35359809,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1515,NJBF000071565,700 ADRIATIC AVE,Atlantic City,NJ,39.37093898,-74.42304536,RES1,3001,,45,NE,1900,1900,3102,2,4,1583.28717,1583.28717,3505,YES,36.88,49.68,3,3.54,6106,114.633748,124.227525,134.037794,140.249168,I,Above,Flat,0,5701,Wood,43.27853639,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1516,NJBF000071648,510 DREXEL AVE,Atlantic City,NJ,39.371171,-74.420361,RES1,3001,,27,NE,1900,1900,3102,2,2,1393.637471,1393.637471,3505,YES,28.15,38.95,3,1.04,6106,114.688225,124.274338,134.089748,140.287963,I,Above,Hip,0,5701,Wood,33.55103744,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1517,NJBF000071518,509 MELROSE AVE,Atlantic City,NJ,39.3708185,-74.4200015,RES1,3001,,17,NE,1900,1900,3102,2,1,755.8212233,755.8212233,3505,NO,23.88,34.47,3,-1.92,6106,114.700006,124.284623,134.100805,140.298494,I,Above,Gable,0,5701,Wood,29.17375648,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1518,NJBF000071818,512 ADRIATIC AVE,Atlantic City,NJ,39.37172,-74.4209995,RES1,3001,,17,NE,1930,1930,3102,3,1,1076.312228,1076.312228,3505,YES,46.61,56.09,3,-1.94,6106,114.668251,124.256909,134.07096,140.270332,I,Above,Gable,0,5701,Wood,51.35019754,0,0,,,,1,1,,0.03,nav,1,1930,3,, 1519,NJBF000071805,514 ADRIATIC AVE,Atlantic City,NJ,39.37167939,-74.42107067,RES1,3001,,17,NE,1900,1900,3102,2,1,844.9177172,844.9177172,3505,NO,43.69,56.83,3,6.39,6106,114.667195,124.256015,134.069935,140.269775,I,Above,Flat,0,5701,Wood,50.25867184,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1520,NJBF000070096,1810 HUMMOCK AVE,Atlantic City,NJ,39.365803,-74.4377025,RES3B,3001,739,NaN,ME,1969,0,3301,3,1,1703.458872,1703.458872,3505,YES,56.24,62.09,3,-0.83,6106,114.37971,124.01354,133.797916,140.091275,I,Above,Gable,0,NaN,Wood,59.16539288,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1521,NJBF000071708,356 N CONNECTICUT AVE,Atlantic City,NJ,39.37135254,-74.42173956,RES1,3001,,27,NE,1900,1900,3102,2,2,2177.488747,2177.488747,3505,YES,41.35,56.29,3,5.05,6106,114.65674,124.247139,134.059834,140.26384,I,Above,Flat,0,5701,Wood,48.82009571,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1522,NJBF000071684,354 N CONNECTICUT AVE,Atlantic City,NJ,39.37127831,-74.42168043,RES1,3001,,27,NE,1928,1928,3102,2,2,1049.856544,1049.856544,3505,YES,29.75,43.8,3,6.81,6106,114.658892,124.249022,134.061849,140.265827,I,Above,Flat,0,5701,Wood,36.77326552,0,0,,,,1,1,,0.03,nav,1,1928,2,, 1523,NJBF000071668,341 N CONNECTICUT AVE,Atlantic City,NJ,39.37122168,-74.42120454,RES1,3001,,33,NE,1925,1925,3102,2,1,4036.511126,4036.511126,3505,YES,27.35,34.22,3,4.76,6106,114.669662,124.25832,134.07208,140.274048,I,Above,Flat,0,5701,Wood,30.7811202,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1524,NJBF000071498,513 MELROSE AVE,Atlantic City,NJ,39.37077427,-74.42012732,RES1,3001,,17,NE,1900,1900,3102,2,1,673.347368,673.347368,3505,NO,42.59,55.61,3,6.55,6106,114.697839,124.282769,134.098715,140.297138,I,Above,Gable,0,5701,Wood,49.09842784,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1525,NJBF000070147,412 ROBINSON AVE,Atlantic City,NJ,39.36601687,-74.43629425,RES1,3001,,45,NE,1900,1900,3101,2,2,1093.849962,1093.849962,3507,NO,30.72,40.88,1,2.89,6106,114.407551,124.036963,133.823781,140.110496,I,Above,Hip,0,5701,Wood,35.79722694,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1526,NJBF000070133,410 ROBINSON AVE,Atlantic City,NJ,39.36596383,-74.43626567,RES1,3001,,17,NE,1900,1900,3101,2,1,693.4173544,693.4173544,3507,NO,31.94,37.86,1,-0.54,6106,114.408782,124.038032,133.824911,140.111705,I,Above,Hip,0,5701,Wood,34.90135395,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1527,NJBF000071421,531 MELROSE AVE,Atlantic City,NJ,39.37056193,-74.42068804,RES1,3001,,17,NE,1900,1900,3102,2,1,906.6021435,906.6021435,3505,NO,32.11,43.01,3,3.68,6106,114.688374,124.274686,134.089584,140.291324,I,Above,Gable,0,5701,Wood,37.56321794,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1528,NJBF000071458,523 MELROSE AVE,Atlantic City,NJ,39.37066039,-74.42044207,RES1,3001,,17,NE,1900,1900,3102,2,1,1007.653585,1007.653585,3505,NO,35.6,46.85,3,7.19,6106,114.692466,124.278178,134.093534,140.293803,I,Above,Gable,0,5701,Wood,41.22829252,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1529,NJBF000070030,400 N INDIANA AVE,Atlantic City,NJ,39.365553,-74.43703121,RES1,3001,,45,NE,1880,1880,3101,3,3,2488.288154,2488.288154,3507,NO,55.54,70.14,1,0.03,6106,114.397169,124.028427,133.814036,140.105544,I,Above,Hip,0,5701,Wood,62.84202162,0,0,,,,1,1,,0.03,nav,1,1880,3,, 1530,NJBF000071426,529 MELROSE AVE,Atlantic City,NJ,39.37058034,-74.42062263,RES1,3001,,17,NE,1900,1900,3102,2,1,878.9099761,878.9099761,3505,NO,44.87,58.01,3,6.15,6106,114.689548,124.275691,134.090711,140.292088,I,Above,Gable,0,5701,Wood,51.43954233,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1531,NJBF000070063,410 N INDIANA AVE,Atlantic City,NJ,39.3656746,-74.43717364,RES1,3001,,45,NE,1920,1920,3101,2,2,1624.753559,1624.753559,3507,NO,31.54,41.53,1,2.96,6106,114.392637,124.024533,133.809865,140.101513,I,Above,Flat,0,5701,Wood,36.53598483,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1532,NJBF000069925,403 N OHIO AVE,Atlantic City,NJ,39.36502734,-74.43780956,RES3B,3001,,17,ME,1900,1900,3301,2,1,836.9701533,836.9701533,3505,NO,33.05,47.54,3,7.89,6106,114.386619,124.019791,133.804132,140.100835,I,Above,Flat,0,NaN,Wood,40.29324043,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1533,NJBF000070298,1510 ADRIATIC AVE,Atlantic City,NJ,39.3666112,-74.43346976,COM1,3004,611,NaN,ME,1969,0,3401,2,1,16375.92415,16375.92415,3507,NO,30.33,44.91,1,-0.29,6106,114.461309,124.082212,133.87396,140.146557,I,Above,Flat,0,NaN,Wood,37.61931517,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1534,NJBF000069921,326 N INDIANA AVE,Atlantic City,NJ,39.36500329,-74.43667464,RES1,3001,,17,NE,1900,1900,3101,2,1,1144.994239,1144.994239,3507,NO,24.09,30.64,1,2.96,6106,114.411383,124.040725,133.827065,140.119125,I,Above,Gable,0,5701,Wood,27.36304352,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1535,NJBF000071406,626 DREXEL AVE,Atlantic City,NJ,39.370501,-74.421971,RES1,3001,,45,NE,1900,1900,3102,2,2,1370.589741,1370.589741,3505,YES,36.36,45.56,3,6.97,6106,114.661757,124.251791,134.064219,140.272117,I,Above,Flat,0,5701,Wood,40.96080489,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1536,NJBF000069915,,Atlantic City,NJ,39.3649718,-74.43604195,RES1,3001,,NaN,NE,1969,0,3101,1,1,12130.51596,12130.51596,3507,NO,13.43,19.16,1,2.26,6106,114.425396,124.052588,133.840052,140.129562,I,Above,Flat,0,5701,Wood,16.2935017,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1537,NJBF000071399,512 MELROSE AVE,Atlantic City,NJ,39.37048839,-74.41995952,RES3D,3004,,17,E,1900,1900,3303,3,1,871.3430429,871.3430429,3505,YES,57.78,64.53,3,7.6,6106,114.704736,124.288814,134.105141,140.303716,I,Above,Hip,0,NaN,Wood,61.15773218,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1538,NJBF000069971,325 N INDIANA AVE,Atlantic City,NJ,39.36525501,-74.43633919,RES1,3001,,45,NE,1935,1935,3101,2,2,1334.554718,1334.554718,3507,NO,35.74,46.05,1,0.95,6106,114.415627,124.044187,133.831073,140.120792,I,Above,Hip,0,5701,Wood,40.89306956,0,0,,,,1,1,,0.03,nav,1,1935,2,, 1539,NJBF000070003,,Atlantic City,NJ,39.36542094,-74.43686868,RES1,3001,,NaN,NE,1969,0,3101,1,1,1539.234353,1539.234353,3507,NO,17.6,24.43,1,-0.39,6106,114.402229,124.032774,133.818693,140.110017,I,Above,Flat,0,5701,Wood,21.01503071,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1540,NJBF000069945,330 N INDIANA AVE,Atlantic City,NJ,39.36514411,-74.43676684,RES1,3001,,17,NE,1900,1900,3101,2,1,1473.193563,1473.193563,3507,NO,24.76,36.93,1,1.13,6106,114.407722,124.037559,133.823711,140.115634,I,Above,Flat,0,5701,Wood,30.84936336,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1541,NJBF000069961,1811 BISHOP RICHARD ALLEN,Atlantic City,NJ,39.36521883,-74.43727258,RES1,3001,,17,NE,2003,2003,3101,2,1,1044.482775,1044.482775,3507,NO,29.05,36.05,1,2.1,6106,114.395919,124.027546,133.812793,140.10655,I,Above,Hip,0,5701,Wood,32.54843515,0,0,,,,1,1,,0.03,nav,1,2003,2,, 1542,NJBF000069973,411 N OHIO AVE,Atlantic City,NJ,39.36527944,-74.43793668,RES3B,3001,,17,ME,1910,1910,3301,2,1,1192.186694,1192.186694,3505,NO,25.69,31.63,3,4.47,6106,114.380882,124.014814,133.798884,140.095169,I,Above,Gable,0,NaN,Wood,28.66129467,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1543,NJBF000070398,2102 GRANT AVE,Atlantic City,NJ,39.3669509,-74.44285256,RES3B,3001,,27,ME,1900,1900,3301,2,2,663.7031054,663.7031054,3505,YES,34.17,48.14,3,6.26,6106,114.254882,123.907609,133.682783,139.992263,I,Above,Flat,0,5701,Wood,41.15626679,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1544,NJBF000070731,912 N ARKANSAS AVE,Atlantic City,NJ,39.3682035,-74.4437525,IND1,3004,761,NaN,E,1969,0,3401,3,1,2283.896252,2283.896252,3505,YES,53.17,62.51,3,5.87,6106,114.220715,123.877975,133.651271,139.959241,I,Above,Flat,0,NaN,Wood,57.83843528,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1545,NJBF000068203,114 N CHELSEA AVE,Atlantic City,NJ,39.3559925,-74.4510565,RES3A,3001,,45,NE,1910,1910,3301,2,4,1031.538151,1031.538151,3505,YES,29.29,37.89,3,5.82,6106,114.208979,123.875441,133.639111,140.023961,I,Above,Flat,0,5701,Wood,33.58583026,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1546,NJBF000070967,1119 ADRIATIC AVE,Atlantic City,NJ,39.36900099,-74.42860237,RES1,3001,,27,NE,1900,1900,3103,2,2,646.7557861,646.7557861,3505,YES,33.48,40.19,3,-0.84,6106,114.537637,124.146037,133.946213,140.189165,I,Above,Gable,0,5701,Wood,36.83494908,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1547,NJBF000068226,3114 FAIRMOUNT AVE,Atlantic City,NJ,39.356068,-74.45139,RES3A,3001,,45,NE,1930,1930,3301,1,2,1960.313096,1960.313096,3505,NO,21.09,31.85,3,8.9,6106,114.200784,123.868602,133.631743,140.017549,I,Above,Flat,0,5701,Wood,26.46821244,0,0,,,,1,1,,0.03,nav,1,1930,1,, 1548,NJBF000068613,233 N MONTPELIER AVE,Atlantic City,NJ,39.3572459,-74.45225487,RES3A,3001,,35,NE,1900,1900,3301,2,2,2049.824891,2049.824891,3507,NO,28.99,35.43,1,1.28,6106,114.167403,123.840328,133.601984,139.986152,I,Above,Gable,0,5701,Wood,32.21031608,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1549,NJBF000068209,117 N CHELSEA AVE,Atlantic City,NJ,39.35601037,-74.45021947,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,2134.454203,2134.454203,3505,YES,34.1,43.51,3,1.26,6106,114.227006,123.890413,133.655396,140.036953,I,Above,Flat,0,5701,Wood,38.80397387,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1550,NJBF000070401,,Atlantic City,NJ,39.36696714,-74.4278712,RES1,3001,,NaN,NE,1969,0,3103,5,1,2102.734456,2102.734456,3505,NO,62.47,70.01,3,-2.94,6106,114.577261,124.180743,133.982669,140.229424,I,Above,Hip,0,5701,Wood,66.23944754,0,0,,,,1,1,,0.03,nav,1,1969,5,, 1551,NJBF000072702,1914 KUEHNLE AVE,Atlantic City,NJ,39.37459351,-74.4505402,RES1,3001,,17,NE,1900,1900,3102,2,1,1830.755592,1830.755592,3505,NO,24.24,38.38,3,2.17,6106,114.000201,123.686847,133.446337,139.751984,I,Above,Gable,0,5701,Wood,31.31367179,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1552,NJBF000071586,821 WABASH AVENUE,Atlantic City,NJ,39.37100106,-74.42560182,RES1,3001,,14,NE,1900,1900,3102,1,1,534.4570145,534.4570145,3505,NO,20.09,28.79,3,4.54,6106,114.578445,124.180012,133.985384,140.208105,I,Above,Flat,0,5701,Wood,24.43947674,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1553,NJBF000070838,409 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36858827,-74.43048364,RES1,3001,,27,NE,2007,2007,3103,2,2,2160.95477,2160.95477,3505,NO,29.72,36.84,3,-1.1,6106,114.502141,124.115957,133.912739,140.165381,I,Above,Hip,0,5701,Wood,33.27985235,0,0,,,,1,1,,0.03,nav,1,2007,2,, 1554,NJBF000070621,405 N TENNESSEE AVE,Atlantic City,NJ,39.36781327,-74.43167628,RES1,3001,,27,NE,1915,1915,3103,2,2,1601.688434,1601.688434,3505,YES,26.92,39.75,3,0.23,6106,114.485671,124.102319,133.897079,140.157642,I,Above,Flat,0,5701,Wood,33.33479321,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1555,NJBF000067987,413 HARRISBURG,Atlantic City,NJ,39.355245,-74.46022633,RES1,3001,,NaN,NE,1969,0,3102,2,1,575.4539248,575.4539248,3505,NO,26.44,32.01,3,-2.64,6106,114.017952,123.7178,133.467686,139.888305,I,Above,Gable,0,5701,Wood,29.22292946,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1556,NJBF000069167,726 N HARRISBURG AVE,Atlantic City,NJ,39.35903864,-74.46381147,RES1,3001,,NaN,NE,1969,0,3101,1,1,1307.578407,1307.578407,3505,NO,21.28,35.59,3,3.1,6106,113.892702,123.612276,133.356258,139.770394,I,Above,Hip,0,5701,Wood,28.43243286,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1557,NJBF000070434,1617 WABASH AVE,Atlantic City,NJ,39.36710968,-74.4353366,RES1,3001,,17,NE,1964,1964,3101,2,1,1195.870197,1195.870197,3505,NO,33.85,48.57,3,-2.13,6106,114.415241,124.042887,133.831181,140.109864,I,Above,Flat,0,5701,Wood,41.20643359,0,0,,,,1,1,,0.03,nav,1,1964,2,, 1558,NJBF000069166,3924 WEST END AVE,Atlantic City,NJ,39.35903797,-74.46438897,RES1,3001,560,NaN,NE,1969,0,3101,2,1,1935.672314,1935.672314,3505,NO,27.05,35.48,3,-1.32,6106,113.880028,123.601859,133.345011,139.760773,I,Above,Hip,0,5701,Wood,31.26629461,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1559,NJBF000070504,510 N KENTUCKY AVE,Atlantic City,NJ,39.36738816,-74.43503681,RES1,3001,,16,NE,1900,1900,3101,1,1,1484.626537,1484.626537,3505,NO,21.51,28.21,3,8.4,6106,114.418421,124.04543,133.834201,140.110606,I,Above,Gable,0,5701,Wood,24.86145161,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1560,NJBF000064558,101 S PLAZA PL,Atlantic City,NJ,39.34478076,-74.46302204,RES3F,3003,,NaN,E,1969,0,3305,6,1,33275.888,33275.888,3507,NO,107.79,121.1,1,1.44,6106,114.089896,123.780813,133.527124,140.004056,I,Above,Flat,0,NaN,Wood,114.4425357,0,0,,,,2,2,,0.03,nav,1,1969,6,, 1561,NJBF000070611,1400 N ALBANY AVE,Atlantic City,NJ,39.36777434,-74.4771223,EDU1,3003,,NaN,E,1969,0,3401,3,1,291844.4597,291844.4597,3507,NO,36.02,43.67,1,1.65,6110,113.496012,123.278611,133.000861,139.402173,I,Above,Hip,0,NaN,Wood,39.84730271,0,0,,,,1,1,,1,nav,1,1969,3,, 1562,NJBF000070748,1826 GRANT AVE,Atlantic City,NJ,39.368287,-74.4395205,RES1,3001,,17,NE,1900,1900,3102,2,1,954.7618184,954.7618184,3505,NO,30.07,36.11,3,0.13,6106,114.311208,123.954171,133.734779,140.026094,I,Above,Hip,0,5701,Wood,33.08730736,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1563,NJBF000070552,,Atlantic City,NJ,39.36755645,-74.42716049,RES1,3001,,NaN,NE,1969,0,3103,4,1,2070.749263,2070.749263,3505,NO,70,76.22,3,6.26,6106,114.585521,124.187566,133.990712,140.232238,I,Above,Hip,0,5701,Wood,73.11356729,0,0,,,,1,1,,0.03,nav,1,1969,4,, 1564,NJBF000070565,309 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36762298,-74.42830955,RES1,3001,,27,NE,2006,2006,3103,2,2,2168.451788,2168.451788,3505,NO,27.94,33.66,3,2.54,6106,114.560104,124.165833,133.966826,140.213278,I,Above,Hip,0,5701,Wood,30.80232138,0,0,,,,1,1,,0.03,nav,1,2006,2,, 1565,NJBF000067217,4111 SOUTH BLVD,Atlantic City,NJ,39.35261132,-74.46133195,RES1,3001,,27,NE,1900,1900,3102,2,2,907.8006698,907.8006698,3505,YES,30.83,38.03,3,4.09,6106,114.026631,123.726275,133.47486,139.910979,I,Above,Flat,0,5701,Wood,34.42989407,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1566,NJBF000067218,4109 SOUTH BLVD,Atlantic City,NJ,39.35261776,-74.46127231,RES1,3001,,27,NE,1928,1928,3102,2,2,670.4854463,670.4854463,3505,YES,32.64,39.5,3,1.66,6106,114.027858,123.727281,133.475951,139.91184,I,Above,Flat,0,5701,Wood,36.07418949,0,0,,,,1,1,,0.03,nav,1,1928,2,, 1567,NJBF000067257,4107 SOUTH BLVD,Atlantic City,NJ,39.35278491,-74.46132185,RES1,3001,,27,NE,1927,1927,3102,2,2,613.5330756,613.5330756,3505,YES,43.44,55.84,3,5.46,6106,114.024663,123.724576,133.473159,139.908458,I,Above,Flat,0,5701,Wood,49.6394663,0,0,,,,1,1,,0.03,nav,1,1927,2,, 1568,NJBF000067250,371 N RALEIGH AVE,Atlantic City,NJ,39.35274443,-74.46426897,RES1,3001,,16,NE,1955,1955,3102,1,1,1251.513396,1251.513396,3505,NO,21.2,27.17,3,5.34,6106,113.960544,123.671926,133.416343,139.861188,I,Above,Gable,0,5701,Wood,24.18698963,0,0,,,,1,1,,0.03,nav,1,1955,1,, 1569,NJBF000067224,4107 SOUTH BLVD,Atlantic City,NJ,39.35265168,-74.46118301,RES1,3001,,27,NE,1927,1927,3102,2,2,1416.39623,1416.39623,3505,YES,28.8,39.55,3,3.58,6106,114.029381,123.728518,133.477313,139.912753,I,Above,Flat,0,5701,Wood,34.17572547,0,0,,,,1,1,,0.03,nav,1,1927,2,, 1570,NJBF000068461,215 N MONTPELIER AVE,Atlantic City,NJ,39.35683761,-74.45202686,RES3A,3001,,45,NE,1900,1900,3301,2,2,2033.212515,2033.212515,3507,YES,25.84,37.87,1,-0.36,6106,114.177396,123.848824,133.610887,139.995907,I,Above,Gable,0,5701,Wood,31.85764002,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1571,NJBF000068442,201 N CHELSEA AVE,Atlantic City,NJ,39.35677957,-74.45080115,RES3A,3001,,45,NE,1900,1900,3301,2,3,2393.22035,2393.22035,3507,YES,36.24,43.72,1,-0.39,6106,114.204822,123.871633,133.635621,140.016267,I,Above,Gable,0,5701,Wood,39.98118746,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1572,NJBF000071588,806 WABASH AVE,Atlantic City,NJ,39.37100721,-74.42480169,RES1,3001,,17,NE,1900,1900,3102,2,1,989.2228366,989.2228366,3505,NO,34.09,48.64,3,0.92,6106,114.595462,124.194608,134.0015,140.220613,I,Above,Gable,0,5701,Wood,41.36867464,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1573,NJBF000070511,,Atlantic City,NJ,39.36740801,-74.42757966,RES1,3001,,NaN,NE,1969,0,3103,6,1,3066.134073,3066.134073,3505,NO,117.84,125.75,3,3.66,6106,114.578278,124.181437,133.983827,140.227753,I,Above,Flat,0,5701,Wood,121.7923687,0,0,,,,1,1,,0.03,nav,1,1969,6,, 1574,NJBF000071505,1023 CASPIAN AVE,Atlantic City,NJ,39.3707915,-74.428316,RES3C,3004,,17,ME,1900,1900,3301,1,1,1191.327239,1191.327239,3505,NO,16.34,30.57,3,-0.87,6106,114.522836,124.132496,133.9328,140.168241,I,Above,Hip,0,NaN,Wood,23.45540058,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1575,NJBF000071585,1000 SEWELL AVE,Atlantic City,NJ,39.371001,-74.42897166,RES3C,3004,,33,ME,1920,1920,3301,2,1,2434.136116,2434.136116,3505,NO,23.18,29.25,3,-0.06,6106,114.50636,124.118298,133.917324,140.154888,I,Above,Flat,0,NaN,Wood,26.21392565,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1576,NJBF000071533,1017 CASPIAN AVE,Atlantic City,NJ,39.3708535,-74.42813877,RES3C,3004,,17,ME,1961,1961,3301,1,1,1070.15106,1070.15106,3505,NO,14.38,21.47,3,-0.71,6106,114.525904,124.135087,133.935707,140.170158,I,Above,Hip,0,NaN,Wood,17.92089651,0,0,,,,1,1,,0.03,nav,1,1961,1,, 1577,NJBF000066451,3501 BOARDWALK,Atlantic City,NJ,39.34978045,-74.45170997,RES4,3003,,NaN,E,1969,0,3404,5,1,12059.11545,12059.11545,3507,NO,66.68,78.98,1,2.21,6106,114.272716,123.930391,133.693287,140.105725,I,Above,Flat,0,NaN,Wood,72.83199387,0,0,,,,2,2,,0.03,nav,1,1969,5,, 1578,NJBF000069076,4004 WEST END AVE RR,Atlantic City,NJ,39.35867332,-74.46469114,RES1,3001,,NaN,NE,1900,0,3101,1,1,1659.916763,1659.916763,3505,NO,17.6,30.06,3,-0.26,6106,113.877847,123.60034,133.343145,139.761453,I,Above,Flat,0,5701,Wood,23.82734099,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1579,NJBF000070516,815 N MICHIGAN AVE,Atlantic City,NJ,39.36744623,-74.44102069,RES3B,3001,,27,ME,1900,1900,3301,2,2,1124.82181,1124.82181,3505,YES,41.07,48.52,3,6.04,6106,114.288678,123.935727,133.713934,140.014384,I,Above,Hip,0,5701,Wood,44.79510187,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1580,NJBF000069010,659 N DOVER AVE,Atlantic City,NJ,39.35838083,-74.46509002,RES1,3001,,17,NE,1950,1950,3101,1,1,1578.373664,1578.373664,3505,NO,19.48,32.2,3,6.19,6106,113.87265,123.596289,133.338592,139.759372,I,Above,Flat,0,5701,Wood,25.84085961,0,0,,,,1,1,,0.03,nav,1,1950,1,, 1581,NJBF000069069,709 WISTERIA RD,Atlantic City,NJ,39.35865847,-74.46245246,RES1,3001,,16,NE,1900,1900,3101,1,1,1039.954205,1039.954205,3505,NO,17.25,24.37,3,5.32,6106,113.927157,123.640895,133.386933,139.798908,I,Above,Flat,0,5701,Wood,20.808593,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1582,NJBF000070506,816 N MICHIGAN AVE,Atlantic City,NJ,39.3674035,-74.4414255,RES3B,3001,,45,ME,1900,1900,3301,2,2,753.5842223,753.5842223,3505,NO,22.3,35.74,3,0.3,6106,114.280439,123.928813,133.706331,140.008521,I,Above,Flat,0,5701,Wood,29.01686601,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1583,NJBF000070042,1529 MEDITERRANEAN AVE,Atlantic City,NJ,39.365595,-74.432983,RES1,3001,,33,NE,1965,1965,3102,1,1,1091.440642,1091.440642,3505,NO,17.35,24.8,3,3.33,6106,114.48383,124.101802,133.894616,140.168773,I,Above,Hip,0,5701,Wood,21.07769138,0,0,,,,1,1,,0.03,nav,1,1965,1,, 1584,NJBF000070077,210 N TENNESSEE AVE,Atlantic City,NJ,39.36572057,-74.43073456,RES3D,3004,,17,E,2002,2002,3303,2,1,1527.751523,1527.751523,3505,NO,25.49,38.96,3,3.36,6106,114.530629,124.141508,133.938374,140.202243,I,Above,Gable,0,NaN,Wood,32.22207871,0,0,,,,1,1,,0.03,nav,1,2002,2,, 1585,NJBF000070046,311 N KENTUCKY AVE,Atlantic City,NJ,39.3656065,-74.4333705,RES1,3001,,17,NE,1900,1900,3102,1,1,1216.851424,1216.851424,3505,NO,11.12,20.34,3,-1.77,6106,114.475377,124.094625,133.88674,140.162532,I,Above,Gable,0,5701,Wood,15.72747482,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1586,NJBF000070101,300 N NEW YORK AVE,Atlantic City,NJ,39.36581588,-74.43236919,RES1,3001,,17,NE,1900,1900,3102,1,1,1383.083656,1383.083656,3505,NO,10.4,16.34,3,-0.16,6106,114.494403,124.110679,133.904562,140.175262,I,Above,Flat,0,5701,Wood,13.37016847,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1587,NJBF000068983,522 N ALBANY AVE,Atlantic City,NJ,39.35824675,-74.46091858,COM1,3003,110,NaN,ME,1969,0,3401,1,1,3785.874471,3785.874471,3507,NO,14.55,28.03,1,2.77,6106,113.965779,123.672986,133.421351,139.830588,I,Above,Gable,0,NaN,Wood,21.29017762,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1588,NJBF000071657,2304 SHELDON AVE,Atlantic City,NJ,39.37119411,-74.45383404,RES3C,3001,,NaN,ME,1969,0,3301,1,1,8349.984419,8349.984419,3505,NO,19.87,30.83,3,3.16,6106,113.967264,123.663006,133.41845,139.748775,I,Above,Flat,0,NaN,Wood,25.34612275,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1589,NJBF000068895,558 N TRENTON AVE,Atlantic City,NJ,39.35796217,-74.46173795,RES1,3001,,27,NE,1900,1900,3101,2,2,1356.990717,1356.990717,3505,NO,26.54,37.52,3,-1.39,6106,113.951319,123.661267,133.40849,139.821526,I,Above,Hip,0,5701,Wood,32.02985727,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1590,NJBF000071734,2305 SHELDON AVE,Atlantic City,NJ,39.37144337,-74.45446588,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6866.792777,6866.792777,3505,NO,21.77,34.04,3,4.71,6106,113.950656,123.64889,133.403207,139.734419,I,Above,Flat,0,NaN,Wood,27.90669003,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1591,NJBF000069954,300-322 KENTUCKY AVE,Atlantic City,NJ,39.36518792,-74.4346612,RES3C,3004,,NaN,ME,1969,0,3301,1,1,8135.475238,8135.475238,3505,NO,18.48,31.19,3,0.29,6106,114.452569,124.075485,133.865363,140.148214,I,Above,Flat,0,NaN,Wood,24.83327599,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1592,NJBF000070024,300-322 KENTUCKY AVE,Atlantic City,NJ,39.36552888,-74.43381297,RES3C,3004,,NaN,ME,1969,0,3301,2,1,7986.279364,7986.279364,3505,NO,33.46,40.1,3,6.51,6106,114.466763,124.087355,133.878689,140.156667,I,Above,Hip,0,NaN,Wood,36.78299447,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1593,NJBF000069865,311 N INDIANA AVE,Atlantic City,NJ,39.36466468,-74.43595554,RES1,3001,,45,NE,2001,2001,3101,1,2,1252.132406,1252.132406,3507,NO,16.05,30.74,1,1.46,6106,114.430907,124.057398,133.845068,140.135342,I,Above,Flat,0,5701,Wood,23.39763847,0,0,,,,1,1,,0.03,nav,1,2001,1,, 1594,NJBF000069896,210 N NEW YORK AVE,Atlantic City,NJ,39.36483935,-74.43170757,RES3D,3004,,33,E,1900,1900,3303,2,1,682.8813673,682.8813673,3505,YES,34.46,43.29,3,-1.41,6106,114.520238,124.133032,133.928271,140.199549,I,Above,Flat,0,NaN,Wood,38.87466373,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1595,NJBF000070008,206 N TENNESSEE AVE,Atlantic City,NJ,39.36544741,-74.43054679,RES3D,3004,,17,E,2002,2002,3303,2,1,1403.367417,1403.367417,3505,NO,41.27,48.13,3,6.27,6106,114.537925,124.147824,133.945076,140.209076,I,Above,Gable,0,NaN,Wood,44.70027708,0,0,,,,1,1,,0.03,nav,1,2002,2,, 1596,NJBF000069878,200 N KENTUCKY AVE,Atlantic City,NJ,39.36474427,-74.43365101,RES3C,3004,,NaN,ME,1969,0,3301,1,1,3979.348909,3979.348909,3505,NO,22.52,33.08,3,6.38,6106,114.479597,124.098587,133.890344,140.170454,I,Above,Hip,0,NaN,Wood,27.79999359,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1597,NJBF000069779,200 N KENTUCKY AVE,Atlantic City,NJ,39.36388081,-74.43345286,RES3C,3004,,NaN,ME,1969,0,3301,1,1,6158.889835,6158.889835,3505,NO,17.8,27.92,3,6.39,6106,114.494172,124.1113,133.903545,140.185892,I,Above,Flat,0,NaN,Wood,22.8611041,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1598,NJBF000069784,200 N KENTUCKY AVE,Atlantic City,NJ,39.36395448,-74.43383137,RES3C,3004,,NaN,ME,1969,0,3301,2,1,6581.051729,6581.051729,3505,NO,40.41,47.28,3,4.92,6106,114.485164,124.103638,133.895197,140.17893,I,Above,Flat,0,NaN,Wood,43.84383993,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1599,NJBF000069816,200 N KENTUCKY AVE,Atlantic City,NJ,39.36422834,-74.43294287,RES3C,3004,,NaN,ME,1969,0,3301,1,1,8908.977928,8908.977928,3505,NO,20.16,28.92,3,1.83,6106,114.50099,124.11694,133.910047,140.188923,I,Above,Flat,0,NaN,Wood,24.5422844,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1600,NJBF000069841,303 N INDIANA AVE,Atlantic City,NJ,39.364461,-74.435727,RES1,3001,,27,NE,2006,2006,3101,2,2,1668.07208,1668.07208,3507,NO,34.22,42.46,1,2.09,6106,114.438276,124.063726,133.851836,140.141886,I,Above,Gable,0,5701,Wood,38.34350358,0,0,,,,1,1,,0.03,nav,1,2006,2,, 1601,NJBF000070006,340 N DR MARTIN LUTHER K,Atlantic City,NJ,39.3654375,-74.4354785,RES1,3001,,17,NE,1960,1960,3101,2,1,1196.159514,1196.159514,3507,NO,28.25,34.39,1,2.23,6106,114.431993,124.057943,133.846319,140.131742,I,Above,Gable,0,5701,Wood,31.31620627,0,0,,,,1,1,,0.03,nav,1,1960,2,, 1602,NJBF000069904,212 N NEW YORK AVE,Atlantic City,NJ,39.36489649,-74.43173717,RES3D,3004,,33,E,1900,1900,3303,2,1,1177.374851,1177.374851,3505,YES,29.26,38.34,3,2.81,6106,114.518935,124.131902,133.92708,140.198284,I,Above,Flat,0,NaN,Wood,33.79732265,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1603,NJBF000070047,208 N TENNESSEE AVE,Atlantic City,NJ,39.3656084,-74.43065542,RES3D,3004,,17,E,2002,2002,3303,2,1,1359.252648,1359.252648,3505,NO,35.43,42.98,3,0.98,6106,114.533691,124.144158,133.941188,140.2051,I,Above,Gable,0,NaN,Wood,39.20489074,0,0,,,,1,1,,0.03,nav,1,2002,2,, 1604,NJBF000069245,218 N TEXAS AVE,Atlantic City,NJ,39.35934791,-74.44558582,RES3A,3001,,27,NE,1900,1900,3301,2,2,561.4729987,561.4729987,3505,YES,33.06,43.22,3,7.15,6106,114.286727,123.9387,133.710759,140.06081,I,Above,Flat,0,5701,Wood,38.13988426,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1605,NJBF000069256,220 N TEXAS AVE,Atlantic City,NJ,39.35938907,-74.44561584,RES3A,3001,,27,NE,2007,2007,3301,2,2,570.7951543,570.7951543,3505,YES,36.98,42.93,3,3.83,6106,114.285577,123.937719,133.709723,140.059732,I,Above,Gable,0,5701,Wood,39.95363766,0,0,,,,1,1,,0.03,nav,1,2007,2,, 1606,NJBF000068208,104 N MORRIS AVE,Atlantic City,NJ,39.35601036,-74.44957112,RES3A,3001,,45,NE,1900,1900,3301,2,2,1734.958915,1734.958915,3505,NO,45.7,53.34,3,8.99,6106,114.241111,123.902142,133.668147,140.047187,I,Above,Hip,0,5701,Wood,49.52069074,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1607,NJBF000069847,321 N OHIO AVE,Atlantic City,NJ,39.36451478,-74.43737675,RES1,3001,,27,NE,2000,2000,3101,2,2,1794.985914,1794.985914,3507,NO,22.21,30.8,1,0.87,6106,114.40206,124.033091,133.818286,140.115095,I,Above,Gable,0,5701,Wood,26.5031012,0,0,,,,1,1,,0.03,nav,1,2000,2,, 1608,NJBF000068207,115 N CHELSEA AVE,Atlantic City,NJ,39.35600482,-74.44994747,RES3A,3001,,45,NE,1950,1950,3301,2,3,719.2578316,719.2578316,3505,NO,32.85,44.91,3,0.05,6106,114.232989,123.89539,133.660801,140.041325,I,Above,Gable,0,5701,Wood,38.87537932,0,0,,,,1,1,,0.03,nav,1,1950,2,, 1609,NJBF000069281,226 N TEXAS AVE,Atlantic City,NJ,39.3595047,-74.44569517,RES3A,3001,,NaN,NE,1900,0,3301,2,1,586.4984868,586.4984868,3505,YES,36.04,43.88,3,3.88,6106,114.282449,123.935049,133.706909,140.056774,I,Above,Gable,0,5701,Wood,39.95639904,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1610,NJBF000069244,217 N TEXAS AVE,Atlantic City,NJ,39.3593449,-74.44516089,RES3A,3001,,27,NE,1900,1900,3301,2,2,1851.230315,1851.230315,3505,YES,30.61,43.26,3,-0.85,6106,114.295987,123.946443,133.719201,140.06757,I,Above,Gable,0,5701,Wood,36.93709742,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1611,NJBF000069290,229 N ARIZONA AVE,Atlantic City,NJ,39.359537,-74.446082,RES3A,3001,,27,NE,1920,1920,3301,2,2,1691.66771,1691.66771,3505,YES,46.49,59.13,3,8.02,6106,114.273658,123.927688,133.698908,140.050177,I,Above,Gable,0,5701,Wood,52.81206782,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1612,NJBF000067456,352 N DOVER AVE,Atlantic City,NJ,39.35354835,-74.46178695,RES1,3001,,17,NE,1953,1953,3102,1,1,1383.221402,1383.221402,3505,NO,20.21,27.81,3,5.03,6106,114.004902,123.707953,133.455793,139.889144,I,Above,Gable,0,5701,Wood,24.0084721,0,0,,,,1,1,,0.03,nav,1,1953,1,, 1613,NJBF000070241,2009 BLAINE AVE,Atlantic City,NJ,39.36639031,-74.44109006,RES3B,3001,,45,ME,1900,1900,3301,2,2,1173.440869,1173.440869,3505,YES,30.11,44.51,3,-1.29,6106,114.299626,123.94564,133.723985,140.028781,I,Above,Flat,0,5701,Wood,37.31151318,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1614,NJBF000067684,3409 WINCHESTER AVE,Atlantic City,NJ,39.35415147,-74.45343162,RES3B,3001,,45,E,1925,1925,3303,2,4,1520.43222,1520.43222,3507,YES,34.17,48.64,1,1.75,6106,114.180081,123.852251,133.612406,140.013861,I,Above,Hip,0,NaN,Wood,41.40222607,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1615,NJBF000067752,3401 WINCHESTER AVE,Atlantic City,NJ,39.3543685,-74.4530695,COM3,3001,100,NaN,ME,1969,0,3401,1,1,3471.203382,3471.203382,3504,NO,17.16,29.65,-4,0,6106,114.185292,123.85648,133.617174,140.01636,I,Above,Gable,0,NaN,Wood,23.40496434,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1616,NJBF000070761,645 N DR MARTIN LUTHER K,Atlantic City,NJ,39.3683291,-74.43679733,RES1,3001,,16,NE,1962,1962,3101,1,1,1218.246103,1218.246103,3505,NO,20.15,30.68,3,3.9,6106,114.36946,124.0034,133.78881,140.069013,I,Above,Hip,0,5701,Wood,25.41336648,0,0,,,,1,1,,0.03,nav,1,1962,1,, 1617,NJBF000070172,603 N MICHIGAN AVE,Atlantic City,NJ,39.36608259,-74.43997807,RES3B,3001,,NaN,ME,1969,0,3301,1,1,677.9733009,677.9733009,3505,NO,14.92,25.05,3,2.35,6106,114.327285,123.969137,133.749478,140.051029,I,Above,Hip,0,NaN,Wood,19.98402769,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1618,NJBF000070353,712 N MICHIGAN AVE,Atlantic City,NJ,39.3668185,-74.441067,RES3B,3001,,17,ME,1900,1900,3301,2,1,1105.619525,1105.619525,3505,NO,22.19,29.76,3,-2.42,6106,114.295062,123.94152,133.719803,140.022853,I,Above,Hip,0,5701,Wood,25.97870074,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1619,NJBF000070334,2014 MAGELLAN AVE,Atlantic City,NJ,39.3667397,-74.44137488,RES3B,3001,,17,ME,1955,1955,3301,1,1,1091.624772,1091.624772,3505,NO,14.18,22.7,3,0.58,6106,114.289335,123.936748,133.714517,140.019082,I,Above,Hip,0,5701,Wood,18.44174184,0,0,,,,1,1,,0.03,nav,1,1955,1,, 1620,NJBF000067524,119 N ST DAVIDS PL,Atlantic City,NJ,39.35373078,-74.45562825,RES3B,3001,,16,E,1900,1900,3303,1,1,749.7102794,749.7102794,3507,NO,18.15,26.01,1,2.49,6106,114.137389,123.817098,133.573957,139.985318,I,Above,Hip,0,NaN,Wood,22.07947438,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1621,NJBF000070570,615 N INDIANA AVE,Atlantic City,NJ,39.36765713,-74.43796551,RES1,3001,,17,NE,2006,2006,3102,2,1,1316.122573,1316.122573,3505,NO,42.57,55.43,3,7.03,6106,114.35215,123.98917,133.77267,140.060146,I,Above,Hip,0,5701,Wood,48.99847374,0,0,,,,1,1,,0.03,nav,1,2006,2,, 1622,NJBF000070216,619 N MICHIGAN AVE,Atlantic City,NJ,39.36625892,-74.44023234,RES3B,3001,,16,ME,1950,1950,3301,1,1,923.5353266,923.5353266,3505,NO,11.14,17.46,3,-2.92,6106,114.319716,123.962649,133.74251,140.044405,I,Above,Gable,0,NaN,Wood,14.29952647,0,0,,,,1,1,,0.03,nav,1,1950,1,, 1623,NJBF000070367,713 N MICHIGAN AVE,Atlantic City,NJ,39.3668601,-74.44062428,RES3B,3001,,45,ME,1900,1900,3301,2,2,640.2797719,640.2797719,3505,YES,33.83,40.41,3,3.4,6106,114.304153,123.949154,133.728194,140.029341,I,Above,Flat,0,5701,Wood,37.11802173,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1624,NJBF000070764,1000 N MICHIGAN AVE,Atlantic City,NJ,39.36834792,-74.44209432,RES3B,3001,,17,ME,1900,1900,3301,1,1,1025.703296,1025.703296,3505,NO,15.17,29.99,3,-1.26,6106,114.254909,123.906647,133.682758,139.983863,I,Above,Hip,0,5701,Wood,22.57865299,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1625,NJBF000067427,322 N ELBERON AVE,Atlantic City,NJ,39.3534485,-74.460519,RES1,3001,,17,NE,1900,1900,3102,1,1,1712.710324,1712.710324,3505,NO,16.46,27.42,3,3.06,6106,114.03394,123.731893,133.481567,139.911225,I,Above,Hip,0,5701,Wood,21.94302411,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1626,NJBF000070194,1925 CASPIAN AVE,Atlantic City,NJ,39.36616547,-74.43978233,RES3B,3001,,17,ME,1999,1999,3301,1,1,1461.804645,1461.804645,3505,NO,17.44,26.09,3,-0.38,6106,114.330549,123.971839,133.752503,140.052955,I,Above,Gable,0,NaN,Wood,21.76163361,0,0,,,,1,1,,0.03,nav,1,1999,1,, 1627,NJBF000067713,3405 WINCHESTER AVE,Atlantic City,NJ,39.35425377,-74.45322039,RES3B,3001,,45,E,1900,1900,3303,3,3,1103.343243,1103.343243,3507,NO,50,62.4,1,-0.81,6106,114.18342,123.854976,133.615447,140.015675,I,Above,Gable,0,NaN,Wood,56.19952136,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1628,NJBF000068158,121 N MONTPELIER AVE #A,Atlantic City,NJ,39.35583919,-74.4513641,RES3A,3001,,45,NE,1915,1915,3301,2,3,1868.565179,1868.565179,3505,YES,30.43,37.67,3,8.28,6106,114.204184,123.871527,133.634731,140.021379,I,Above,Gable,0,5701,Wood,34.05064056,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1629,NJBF000067990,3330 SOVEREIGN CT,Atlantic City,NJ,39.35525717,-74.45269943,RES3E,3004,29,NaN,E,1969,0,3303,3,1,14925.7925,14925.7925,3507,YES,42.5,56.98,1,0.28,6106,114.182302,123.853624,133.614811,140.008912,I,Above,Flat,0,NaN,Wood,49.73921242,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1630,NJBF000070273,702 N MICHIGAN AVE,Atlantic City,NJ,39.36651553,-74.44086413,RES3B,3001,,17,ME,1900,1900,3301,2,1,1101.150051,1101.150051,3505,NO,34.23,48.84,3,-1.8,6106,114.303024,123.948422,133.727128,140.030546,I,Above,Hip,0,5701,Wood,41.53522675,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1631,NJBF000070175,2016 BLAINE AVE,Atlantic City,NJ,39.3660855,-74.440936,RES3B,3001,,15,ME,1950,1950,3301,1,1,778.1002782,778.1002782,3505,NO,10.24,25.15,3,-0.47,6106,114.30656,123.951671,133.730353,140.035715,I,Above,Flat,0,NaN,Wood,17.69864636,0,0,,,,1,1,,0.03,nav,1,1950,1,, 1632,NJBF000067453,3513 WINCHESTER AVE,Atlantic City,NJ,39.353542,-74.454729,RES3B,3001,,45,E,1920,1920,3303,2,2,2557.495794,2557.495794,3507,NO,28.98,37.45,1,1.98,6106,114.159386,123.835368,133.593595,140.002448,I,Above,Flat,0,NaN,Wood,33.21496393,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1633,NJBF000067317,361 N RICHMOND AVE,Atlantic City,NJ,39.35304241,-74.46321567,RES1,3001,,17,NE,1940,1900,3102,1,1,1947.270131,1947.270131,3505,NO,15.19,22.28,3,4.38,6106,113.979908,123.68767,133.433533,139.873739,I,Above,Gable,0,5701,Wood,18.73072107,0,0,,,,1,1,,0.03,nav,1,1940,1,, 1634,NJBF000067812,3330 PROVIDENCE CT,Atlantic City,NJ,39.35460374,-74.45405138,RES3E,3004,29,NaN,E,1969,0,3303,3,1,16516.81719,16516.81719,3507,YES,36.77,46.19,1,0.93,6106,114.160927,123.836197,133.59537,139.997243,I,Above,Flat,0,NaN,Wood,41.48375483,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1635,NJBF000070343,707 N MICHIGAN AVE,Atlantic City,NJ,39.36676367,-74.44056111,RES3B,3001,,45,ME,1900,1900,3301,2,2,1512.697633,1512.697633,3505,YES,29.44,41.98,3,0.65,6106,114.306646,123.951317,133.730489,140.031755,I,Above,Flat,0,5701,Wood,35.70988095,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1636,NJBF000070692,636 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36807553,-74.43725879,RES1,3001,,17,NE,1900,1900,3101,2,1,1298.715671,1298.715671,3507,NO,40.26,53.46,1,1.4,6106,114.362472,123.997641,133.782292,140.065324,I,Above,Gable,0,5701,Wood,46.85825642,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1637,NJBF000067609,340 N ELBERON AVE,Atlantic City,NJ,39.35395183,-74.46112798,RES1,3001,,17,NE,1900,1900,3102,2,1,627.1727912,627.1727912,3505,NO,38.88,51.24,3,0.76,6106,114.014293,123.715473,133.464213,139.8936,I,Above,Gable,0,5701,Wood,45.05670077,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1638,NJBF000070198,612 N MICHIGAN AVE,Atlantic City,NJ,39.36618552,-74.44063951,RES3B,3001,,45,ME,1900,1900,3301,3,2,1182.449331,1182.449331,3505,YES,45.69,50.89,3,-2.81,6106,114.311763,123.955992,133.735162,140.038962,I,Above,Hip,0,NaN,Wood,48.29248368,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1639,NJBF000070572,622 N INDIANA AVE,Atlantic City,NJ,39.367661,-74.43841,RES1,3001,,17,NE,1920,1920,3102,1,1,1234.328785,1234.328785,3505,NO,15.49,22.43,3,3.18,6106,114.342526,123.981033,133.763749,140.053005,I,Above,Gable,0,5701,Wood,18.9638924,0,0,,,,1,1,,0.03,nav,1,1920,1,, 1640,NJBF000072589,551 N NEW JERSEY AVE,Atlantic City,NJ,39.37418684,-74.42482234,IND3,3001,,17,E,2002,2002,3401,3,1,992.4237508,992.4237508,3507,NO,41.54,56.48,1,0.6,6106,114.558258,124.161027,133.967069,140.175437,I,Above,Flat,0,5701,Wood,49.01089398,0,0,,,,1,1,,0.03,nav,1,2002,3,, 1641,NJBF000072666,605 N CONNECTICUT AVE,Atlantic City,NJ,39.37444651,-74.42331583,RES1,3001,,17,NE,2000,2000,3102,2,1,1151.792686,1151.792686,3505,NO,27.86,41.05,3,2.09,6106,114.587383,124.185953,133.994828,140.195627,I,Above,Hip,0,5701,Wood,34.45637324,0,0,,,,1,1,,0.03,nav,1,2000,2,, 1642,NJBF000070835,659 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36858282,-74.43697697,RES1,3001,,17,NE,1900,1900,3101,2,1,1269.306581,1269.306581,3505,NO,24.79,35.75,3,-1.62,6106,114.362606,123.997439,133.782465,140.062453,I,Above,Flat,0,5701,Wood,30.26965786,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1643,NJBF000072560,610 N NEW JERSEY AVE,Atlantic City,NJ,39.37408643,-74.42518767,IND3,3001,959,NaN,E,1969,0,3401,1,1,8628.820456,8628.820456,3507,NO,11.97,17.49,1,-0.47,6102,114.551608,124.155366,133.960735,140.171061,I,Above,Flat,0,NaN,Wood,14.72874556,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1644,NJBF000072463,600 N NEW JERSEY AVE,Atlantic City,NJ,39.37376217,-74.42495431,IND3,3001,100,NaN,E,1969,0,3401,1,1,1175.98891,1175.98891,3507,NO,21.48,30.87,1,2.11,6102,114.560327,124.163042,133.968949,140.179351,I,Above,Gable,0,NaN,Wood,26.17572715,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1645,NJBF000070299,1722 LOGAN AVE,Atlantic City,NJ,39.36661754,-74.437067,RES1,3001,,16,NE,1910,1910,3101,2,1,630.9667099,630.9667099,3507,NO,36.95,46.43,1,2.15,6106,114.383779,124.016526,133.801851,140.089545,I,Above,Hip,0,5701,Wood,41.69040343,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1646,NJBF000070095,600 N MICHIGAN AVE,Atlantic City,NJ,39.3657899,-74.44043846,RES3B,3001,,45,ME,1900,1900,3301,3,2,2233.432706,2233.432706,3505,YES,46.37,60.78,3,2.48,6106,114.320815,123.96386,133.743468,140.047982,I,Above,Gable,0,NaN,Wood,53.57516974,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1647,NJBF000072601,541 N MASSACHUSETTS AVE,Atlantic City,NJ,39.374232,-74.422192,RES1,3001,,17,NE,2001,2001,3102,2,1,811.6876122,811.6876122,3505,NO,26.73,33.74,3,0.43,6106,114.613798,124.208831,134.019946,140.216421,I,Above,Hip,0,5701,Wood,30.2341194,0,0,,,,1,1,,0.03,nav,1,2001,2,, 1648,NJBF000072610,541 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37427192,-74.42203706,RES1,3001,,17,NE,2001,2001,3102,2,1,1685.741993,1685.741993,3505,NO,36.37,49.75,3,4.14,6106,114.616638,124.211261,134.022666,140.218308,I,Above,Hip,0,5701,Wood,43.06082835,0,0,,,,1,1,,0.03,nav,1,2001,2,, 1649,NJBF000070582,611 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36768076,-74.43637102,RES1,3001,,17,NE,1900,1900,3101,2,1,1181.708271,1181.708271,3505,NO,42.81,54.87,3,7.55,6106,114.386247,124.018004,133.804327,140.085194,I,Above,Gable,0,5701,Wood,48.84227133,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1650,NJBF000072551,,Atlantic City,NJ,39.374059,-74.4235315,RES1,3001,,NaN,NE,1969,0,3102,2,1,1088.834831,1088.834831,3505,NO,28.84,40.14,3,-1.43,6106,114.587259,124.186053,133.994619,140.197688,I,Above,Flat,0,5701,Wood,34.48847553,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1651,NJBF000072538,549 N CONNECTICUT AVE,Atlantic City,NJ,39.37402941,-74.42307013,RES1,3001,,45,NE,1900,1900,3102,2,2,981.714436,981.714436,3505,YES,43.36,50.24,3,8.06,6106,114.59743,124.194827,134.004293,140.2054,I,Above,Flat,0,5701,Wood,46.80305385,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1652,NJBF000070811,1445 CASPIAN AVE,Atlantic City,NJ,39.36852059,-74.43383884,RES3C,3001,,33,ME,1900,1900,3301,2,1,515.3692171,515.3692171,3505,YES,42,49.19,3,5.47,6106,114.430875,124.055366,133.846039,140.113272,I,Above,Flat,0,NaN,Wood,45.59621615,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1653,NJBF000072509,535 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37393678,-74.42185014,RES1,3001,,17,NE,2001,2001,3102,2,1,2068.703221,2068.703221,3505,NO,27.6,36.74,3,6.17,6106,114.624475,124.218185,134.030044,140.225957,I,Above,Hip,0,5701,Wood,32.16874799,0,0,,,,1,1,,0.03,nav,1,2001,2,, 1654,NJBF000073012,427 CARSON AVE,Atlantic City,NJ,39.3764627,-74.4230643,RES3D,3001,,NaN,ME,1969,0,3301,1,1,593.8673997,593.8673997,3507,NO,14.91,27.87,1,0.17,6102,114.569705,124.169572,133.978338,140.171215,I,Above,Hip,0,NaN,Wood,21.38872779,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1655,NJBF000073856,NE CONNECTICUT & EVELYN,Atlantic City,NJ,39.38358616,-74.42651266,COM10,3003,80,NaN,E,1969,0,3404,6,1,124530.4083,124530.4083,3507,NO,66.22,74.96,1,0.96,6106,114.416566,124.031983,133.831307,140.014557,I,Above,Flat,0,NaN,Wood,70.58983146,0,0,,,,2,2,,0.03,nav,1,1969,6,, 1656,NJBF000072306,614 SEWELL AVE,Atlantic City,NJ,39.37322558,-74.42338809,RES1,3001,,17,NE,1930,1930,3102,1,1,3709.27014,3709.27014,3505,NO,17.93,26.73,3,5.2,6106,114.599905,124.197366,134.00643,140.211671,I,Above,Hip,0,5701,Wood,22.32742357,0,0,,,,1,1,,0.03,nav,1,1930,1,, 1657,NJBF000072059,701 CASPIAN AVE,Atlantic City,NJ,39.3724605,-74.4243285,RES1,3001,,17,NE,1955,1955,3102,2,1,1197.475219,1197.475219,3505,NO,30.1,42.2,3,3.62,6106,114.588677,124.188089,133.995538,140.207589,I,Above,Gable,0,5701,Wood,36.14711757,0,0,,,,1,1,,0.03,nav,1,1955,2,, 1658,NJBF000072279,520 N NEW JERSEY AVE,Atlantic City,NJ,39.37314317,-74.42456165,RES1,3001,,NaN,NE,1960,0,3102,2,1,2501.193439,2501.193439,3505,NO,32.59,46.29,3,7.12,6106,114.575824,124.176695,133.983522,140.194295,I,Above,Gable,0,5701,Wood,39.4400061,0,0,,,,1,1,,0.03,nav,1,1960,2,, 1659,NJBF000072105,448 N CONNECTICUT AVE,Atlantic City,NJ,39.37259616,-74.42257284,RES1,3001,,17,NE,1900,1900,3102,2,1,972.9300865,972.9300865,3505,NO,40.14,45.72,3,3.29,6106,114.624559,124.218892,134.029689,140.233363,I,Above,Hip,0,5701,Wood,42.93168705,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1660,NJBF000072094,734 SEWELL AVE,Atlantic City,NJ,39.372564,-74.4250535,RES1,3001,,27,NE,1900,1900,3102,2,2,992.9999905,992.9999905,3505,YES,22,34.47,3,-2.36,6106,114.572012,124.173719,133.979754,140.194691,I,Above,Flat,0,5701,Wood,28.23770303,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1661,NJBF000072039,555 N MARYLAND AVE,Atlantic City,NJ,39.37237737,-74.42680816,RES1,3001,,45,NE,1900,1900,3102,4,3,1040.527102,1040.527102,3505,NO,74.34,88.1,3,6.33,6106,114.536706,124.143523,133.946269,140.169596,I,Above,Flat,0,5701,Wood,81.21707642,0,0,,,,1,1,,0.03,nav,1,1900,4,, 1662,NJBF000072005,408 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37226345,-74.42121713,RES1,3001,,45,NE,1900,1900,3102,2,2,1141.939073,1141.939073,3505,NO,38.73,45.06,3,-0.01,6106,114.657302,124.247249,134.060754,140.259336,I,Above,Flat,0,5701,Wood,41.89473524,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1663,NJBF000071937,446 N NEW JERSEY AVE,Atlantic City,NJ,39.37204511,-74.42379314,RES1,3001,,45,NE,1900,1900,3102,1,2,1241.195839,1241.195839,3505,NO,15.5,26.48,3,1.64,6106,114.604933,124.202262,134.010842,140.221891,I,Above,Gable,0,5701,Wood,20.98823683,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1664,NJBF000071888,618 WABASH AVE,Atlantic City,NJ,39.37190768,-74.42257107,RES1,3001,,45,NE,1900,1900,3102,1,3,1235.481413,1235.481413,3505,NO,17.3,27.86,3,-1.13,6106,114.632579,124.226105,134.03707,140.243036,I,Above,Flat,0,5701,Wood,22.58077781,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1665,NJBF000071916,411 N CONNECTICUT AVE,Atlantic City,NJ,39.37199013,-74.421689,RES1,3001,,17,NE,1930,1930,3102,2,1,1549.743572,1549.743572,3505,YES,27.55,36.48,3,-0.67,6106,114.650419,124.241432,134.054084,140.255741,I,Above,Hip,0,5701,Wood,32.01737856,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1666,NJBF000071952,441 N NEW JERSEY AVE,Atlantic City,NJ,39.3720855,-74.423366,RES1,3001,,45,NE,1930,1930,3102,1,2,1252.568125,1252.568125,3505,NO,18.66,32.14,3,1.21,6106,114.613576,124.209676,134.019066,140.228052,I,Above,Gable,0,5701,Wood,25.39621221,0,0,,,,1,1,,0.03,nav,1,1930,1,, 1667,NJBF000071900,604 WABASH AVE,Atlantic City,NJ,39.37193784,-74.42245751,RES1,3001,,45,NE,1930,1930,3102,1,3,1717.987134,1717.987134,3505,NO,24.07,29.82,3,7.43,6106,114.634639,124.227865,134.039041,140.244392,I,Above,Gable,0,5701,Wood,26.94304316,0,0,,,,1,1,,0.03,nav,1,1930,1,, 1668,NJBF000071981,406 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3721923,-74.42118402,RES1,3001,,45,NE,1930,1930,3102,2,2,833.9441761,833.9441761,3505,YES,26.8,33.44,3,1.07,6106,114.658828,124.248594,134.06218,140.260845,I,Above,Hip,0,5701,Wood,30.12254186,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1669,NJBF000071827,711 WABASH AVE,Atlantic City,NJ,39.37174839,-74.42382386,RES1,3001,,45,NE,1910,1910,3102,2,2,1128.515392,1128.515392,3505,YES,29.11,39.8,3,-0.87,6106,114.607718,124.204795,134.013385,140.225578,I,Above,Hip,0,5701,Wood,34.45669716,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1670,NJBF000071920,720 CASPIAN AVE,Atlantic City,NJ,39.37200269,-74.42430167,RES1,3001,,17,NE,1959,1959,3102,1,1,1995.553074,1995.553074,3505,NO,21.35,28.94,3,4.28,6106,114.59456,124.193367,134.000981,140.214464,I,Above,Hip,0,5701,Wood,25.14702667,0,0,,,,1,1,,0.03,nav,1,1959,1,, 1671,NJBF000067920,409 WARRENA RD,Atlantic City,NJ,39.355034,-74.4607525,RES1,3001,,45,NE,1960,1960,3102,1,3,1285.621892,1285.621892,3505,NO,18.78,30.7,3,2.36,6106,114.00905,123.710584,133.459734,139.883009,I,Above,Flat,0,5701,Wood,24.73826134,0,0,,,,1,1,,0.03,nav,1,1960,1,, 1672,NJBF000071080,659 HOWARD ST,Atlantic City,NJ,39.36933799,-74.43509348,RES1,3001,,16,NE,1900,1900,3101,1,1,1377.612398,1377.612398,3505,NO,21.55,34.44,3,8.3,6106,114.394342,124.023869,133.81208,140.081545,I,Above,Gable,0,5701,Wood,27.99930816,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1673,NJBF000067928,409 N ELBERON AVE,Atlantic City,NJ,39.35505094,-74.46126196,RES1,3001,,18,NE,1900,1900,3102,2,1,2278.45611,2278.45611,3505,NO,39.58,52.16,3,2.14,6106,113.997664,123.701202,133.44961,139.874444,I,Above,Flat,0,5701,Wood,45.87012037,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1674,NJBF000071213,710 N NEW YORK AVE,Atlantic City,NJ,39.36978465,-74.43623222,RES3C,3004,,NaN,ME,1969,0,3301,1,1,537.5509375,537.5509375,3505,NO,15.33,25.29,3,-1.08,6106,114.364615,123.998368,133.784415,140.056889,I,Above,Flat,0,NaN,Wood,20.30895556,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1675,NJBF000071163,710 N NEW YORK AVE,Atlantic City,NJ,39.36963435,-74.4361288,RES3C,3004,,NaN,ME,1969,0,3301,2,1,519.8544881,519.8544881,3505,NO,34.05,43.56,3,1.95,6106,114.368592,124.001839,133.788111,140.060727,I,Above,Gable,0,NaN,Wood,38.8023577,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1676,NJBF000071156,710 N NEW YORK AVE,Atlantic City,NJ,39.3695955,-74.436103,RES3C,3004,,NaN,ME,1969,0,3301,2,1,547.2342574,547.2342574,3505,NO,32.18,44.74,3,4.81,6106,114.369595,124.002714,133.789042,140.061694,I,Above,Flat,0,NaN,Wood,38.46100086,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1677,NJBF000071140,710 N NEW YORK AVE,Atlantic City,NJ,39.3695585,-74.436077,RES3C,3004,,NaN,ME,1969,0,3301,2,1,504.4053171,504.4053171,3505,NO,32.49,43.24,3,-2.25,6106,114.370597,124.003589,133.789974,140.062661,I,Above,Gable,0,NaN,Wood,37.86452274,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1678,NJBF000071270,1421 MAGELLAN AVE,Atlantic City,NJ,39.37000876,-74.43429483,RES3C,3001,,16,ME,1900,1900,3301,1,1,1220.78911,1220.78911,3505,NO,23.87,35.31,3,4.66,6106,114.40368,124.031382,133.820863,140.084562,I,Above,Gable,0,NaN,Wood,29.58942069,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1679,NJBF000071051,603 N NEW YORK AVE,Atlantic City,NJ,39.36923799,-74.43425934,RES3C,3001,,45,ME,1900,1900,3301,2,2,960.6181172,960.6181172,3505,NO,25.16,35.71,3,3.51,6106,114.413449,124.040151,133.829893,140.096266,I,Above,Gable,0,NaN,Wood,30.43574158,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1680,NJBF000071180,1424 MAGELLAN AVE,Atlantic City,NJ,39.36968134,-74.43428341,RES3C,3001,,16,ME,1940,1940,3301,1,1,1206.332408,1206.332408,3505,NO,15.81,21.3,3,3.35,6106,114.407761,124.035052,133.824639,140.08949,I,Above,Hip,0,NaN,Wood,18.55475812,0,0,,,,1,1,,0.03,nav,1,1940,1,, 1681,NJBF000071864,408 N CONNECTICUT AVE,Atlantic City,NJ,39.37185035,-74.42206412,RES1,3001,,17,NE,1900,1900,3102,2,1,934.7994936,934.7994936,3505,NO,27.82,37.12,3,5.6,6106,114.644057,124.236012,134.047969,140.251812,I,Above,Hip,0,5701,Wood,32.47400498,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1682,NJBF000071598,837 N NEW YORK AVE #A,Atlantic City,NJ,39.37103956,-74.43442815,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4210.206064,4210.206064,3505,NO,14.11,23.65,3,-1.22,6106,114.388843,124.01811,133.807072,140.067535,I,Above,Gable,0,NaN,Wood,18.88122493,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1683,NJBF000071445,837 N NEW YORK AVE #A,Atlantic City,NJ,39.37063498,-74.43415879,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4213.981222,4213.981222,3505,NO,30.37,40.83,3,4.14,6106,114.399324,124.027283,133.816845,140.077687,I,Above,Flat,0,NaN,Wood,35.60352373,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1684,NJBF000071386,837 N NEW YORK AVE #A,Atlantic City,NJ,39.37044342,-74.43403252,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4310.375612,4310.375612,3505,NO,15.15,27.13,3,-2.49,6106,114.404263,124.031604,133.821447,140.082471,I,Above,Flat,0,NaN,Wood,21.13859716,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1685,NJBF000071479,837 N NEW YORK AVE #A,Atlantic City,NJ,39.37072406,-74.43508022,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4059.537484,4059.537484,3505,NO,31.05,37.16,3,8.67,6106,114.378488,124.009521,133.797388,140.061686,I,Above,Flat,0,NaN,Wood,34.10811324,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1686,NJBF000071541,837 N NEW YORK AVE #A,Atlantic City,NJ,39.3708785,-74.435308,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2271.365116,2271.365116,3505,NO,34.65,47.46,3,6.59,6106,114.371786,124.003726,133.791137,140.055792,I,Above,Gable,0,NaN,Wood,41.05130191,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1687,NJBF000071403,501 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.37049851,-74.43170566,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,6473.633739,6473.633739,3505,NO,45.71,53.56,3,8.36,6106,114.453587,124.073549,133.867633,140.118703,I,Above,Flat,0,NaN,Wood,49.63656959,0,0,,,,1,1,,0.03,nav,1,1950,3,, 1688,NJBF000071281,501 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.37005617,-74.43149083,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,2949.740446,2949.740446,3505,NO,56.69,66.9,3,0.13,6106,114.46336,124.082132,133.876722,140.128468,I,Above,Flat,0,NaN,Wood,61.79682525,0,0,,,,1,1,,0.03,nav,1,1950,3,, 1689,NJBF000067915,418 N ELBERON AVE,Atlantic City,NJ,39.35500788,-74.46173914,RES1,3001,,17,NE,2015,2015,3102,1,1,2004.327397,2004.327397,3505,NO,20.15,25.18,3,6.7,6106,113.987743,123.693063,133.440788,139.867331,I,Above,Flat,0,5701,Wood,22.66899068,0,0,,,,1,1,,0.03,nav,1,2015,1,, 1690,NJBF000071443,925 CASPIAN AVE,Atlantic City,NJ,39.37063014,-74.42777088,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4187.778436,4187.778436,3505,NO,27.82,39.81,3,2.19,6106,114.536387,124.14417,133.945535,140.179151,I,Above,Flat,0,NaN,Wood,33.81538286,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1691,NJBF000071326,925 CASPIAN AVE,Atlantic City,NJ,39.37022105,-74.42734762,RES3C,3004,,NaN,ME,1969,0,3301,1,1,5521.382333,5521.382333,3505,NO,19.77,29.77,3,0.65,6106,114.550208,124.156198,133.958451,140.191622,I,Above,Gable,0,NaN,Wood,24.76868225,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1692,NJBF000071757,461 N MARYLAND AVE,Atlantic City,NJ,39.3715181,-74.42620916,RES1,3001,511,NaN,NE,1969,0,3102,2,1,2700.570649,2700.570649,3505,NO,20.99,31.38,3,-0.31,6106,114.559464,124.163483,133.967581,140.191231,I,Above,Flat,0,5701,Wood,26.18410416,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1693,NJBF000071921,437 N NEW JERSEY AVE,Atlantic City,NJ,39.3720075,-74.423102,RES1,3001,,45,NE,1900,1900,3102,2,2,644.6171484,644.6171484,3505,NO,34.27,47.79,3,4.52,6106,114.620098,124.215322,134.025239,140.233286,I,Above,Hip,0,5701,Wood,41.02965563,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1694,NJBF000071779,601 ADRIATIC AVE,Atlantic City,NJ,39.3716064,-74.42226925,RES1,3001,,45,NE,1930,1930,3102,2,2,2098.315753,2098.315753,3505,YES,31.79,43.62,3,7.71,6106,114.642525,124.234796,134.046412,140.252007,I,Above,Hip,0,5701,Wood,37.70814097,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1695,NJBF000071028,601 N NEW YORK AVE,Atlantic City,NJ,39.36917692,-74.43419132,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,1456.540435,1456.540435,3505,YES,29.41,39.6,3,-0.95,6106,114.415625,124.042035,133.831915,140.098227,I,Above,Gable,0,NaN,Wood,34.50483662,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1696,NJBF000071797,630 WABASH AVE,Atlantic City,NJ,39.37165814,-74.42316891,RES1,3001,,17,NE,1900,1900,3102,2,1,1185.080645,1185.080645,3505,NO,38.58,43.69,3,1.15,6106,114.622734,124.217746,134.027616,140.237143,I,Above,Flat,0,5701,Wood,41.13726551,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1697,NJBF000071673,419 N DELAWARE AVE,Atlantic City,NJ,39.3712401,-74.42439896,RES1,3001,,17,NE,1900,1900,3102,2,1,1109.315559,1109.315559,3505,YES,23.19,34.14,3,-0.57,6106,114.601354,124.199559,134.007167,140.223673,I,Above,Gable,0,5701,Wood,28.66628668,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1698,NJBF000071690,700 N VIRGINIA AVE,Atlantic City,NJ,39.37129804,-74.42902828,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4410.637817,4410.637817,3505,NO,40.19,54.75,3,3.06,6106,114.501711,124.114161,133.913008,140.149769,I,Above,Flat,0,NaN,Wood,47.47299612,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1699,NJBF000071108,,Atlantic City,NJ,39.36944571,-74.43197748,RES3D,3001,,NaN,E,1950,0,3303,3,1,6688.653192,6688.653192,3505,NO,39.47,51.64,3,3.66,6106,114.46005,124.079655,133.873501,140.129505,I,Above,Flat,0,NaN,Wood,45.55548865,0,0,,,,1,1,,0.03,nav,1,1950,3,, 1700,NJBF000071239,,Atlantic City,NJ,39.36987966,-74.43250468,RES3D,3001,,NaN,E,1950,0,3303,3,1,1744.389996,1744.389996,3505,NO,46.6,55.18,3,2.1,6106,114.443646,124.065445,133.858218,140.114899,I,Above,Hip,0,NaN,Wood,50.88888806,0,0,,,,1,1,,0.03,nav,1,1950,3,, 1701,NJBF000071404,,Atlantic City,NJ,39.37049895,-74.43229518,RES3D,3001,,NaN,E,1969,0,3303,3,1,790.5233133,790.5233133,3505,NO,47.02,55.8,3,1.62,6106,114.440945,124.06278,133.855782,140.109342,I,Above,Hip,0,NaN,Wood,51.41187092,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1702,NJBF000071802,717 WABASH AVE,Atlantic City,NJ,39.371667,-74.4241155,RES1,3001,,17,NE,1900,1900,3102,2,1,1623.734226,1623.734226,3505,YES,28.49,41.8,3,-0.96,6106,114.60245,124.200305,134.008357,140.222137,I,Above,Flat,0,5701,Wood,35.1474333,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1703,NJBF000067878,416 N ELBERON AVE,Atlantic City,NJ,39.35486404,-74.46167737,RES1,3001,,17,NE,1952,1952,3102,2,1,2487.970481,2487.970481,3505,NO,26.53,36.66,3,-0.3,6106,113.990892,123.695734,133.443569,139.870573,I,Above,Hip,0,5701,Wood,31.59582612,0,0,,,,1,1,,0.03,nav,1,1952,2,, 1704,NJBF000067874,4212 FILBERT AVE,Atlantic City,NJ,39.35485145,-74.46423545,RES1,3001,,17,NE,1964,1964,3102,1,1,1482.876744,1482.876744,3505,NO,17.39,30.87,3,2.22,6106,113.934942,123.649765,133.393954,139.828855,I,Above,Gable,0,5701,Wood,24.13156786,0,0,,,,1,1,,0.03,nav,1,1964,1,, 1705,NJBF000067845,401 N ELBERON AVE,Atlantic City,NJ,39.35474839,-74.46098601,RES1,3001,737,NaN,NE,1969,0,3102,1,1,3883.135429,3883.135429,3505,NO,26.99,32.06,3,8.06,6106,114.00748,123.709447,133.458295,139.883619,I,Above,Flat,0,5701,Wood,29.52534976,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1706,NJBF000072419,,Atlantic City,NJ,39.37359223,-74.4567645,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3340.510832,3340.510832,3505,NO,22.45,34.45,3,5.94,6106,113.876169,123.584363,133.334035,139.662822,I,Above,Flat,0,NaN,Wood,28.4497037,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1707,NJBF000072385,,Atlantic City,NJ,39.37347701,-74.45636654,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3385.0799,3385.0799,3505,NO,15.8,23.37,3,4.45,6106,113.886137,123.592805,133.343172,139.671309,I,Above,Flat,0,NaN,Wood,19.58639295,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1708,NJBF000070573,905 EMERSON AVE,Atlantic City,NJ,39.36766535,-74.44229315,RES3B,3001,,33,ME,1900,1900,3301,2,1,2217.204992,2217.204992,3505,YES,28.41,39.06,3,6.03,6106,114.258606,123.910247,133.686198,139.990733,I,Above,Flat,0,5701,Wood,33.73468931,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1709,NJBF000072346,1418 MADISON AVE,Atlantic City,NJ,39.37335304,-74.44623194,RES1,3001,,17,NE,1900,1900,3102,2,1,2175.740952,2175.740952,3505,NO,42.87,53.81,3,6.45,6106,114.107623,123.778381,133.545705,139.842055,I,Above,Gable,0,5701,Wood,48.33695608,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1710,NJBF000071831,1700 HURON AVE,Atlantic City,NJ,39.37175966,-74.44050999,EDU1,3003,,NaN,E,1969,0,3401,2,1,1875.153779,1875.153779,3507,NO,31.74,39.98,1,2.38,6106,114.249533,123.899491,133.677343,139.959161,I,Above,Gable,0,NaN,Wood,35.85552264,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1711,NJBF000071849,1700 HURON AVE,Atlantic City,NJ,39.37180761,-74.44038984,EDU1,3003,,NaN,E,1969,0,3401,1,1,1933.265124,1933.265124,3507,NO,13.91,26.19,1,-0.94,6106,114.251569,123.901174,133.679222,139.960398,I,Above,Gable,0,NaN,Wood,20.04958692,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1712,NJBF000072379,1603 EMERSON AVE,Atlantic City,NJ,39.3734645,-74.449496,RES1,3001,,17,NE,1920,1920,3102,2,1,939.8705298,939.8705298,3505,NO,32.65,43.84,3,-2.91,6106,114.035633,123.717792,133.479516,139.786445,I,Above,Flat,0,5701,Wood,38.24881852,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1713,NJBF000072358,1534 N MICHIGAN AVE,Atlantic City,NJ,39.37338015,-74.44823079,RES1,3001,,17,NE,1900,1900,3102,1,1,972.6066696,972.6066696,3505,NO,21.26,27.4,3,7.88,6106,114.064016,123.7417,133.505598,139.808665,I,Above,Gable,0,5701,Wood,24.32870123,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1714,NJBF000070515,609 N INDIANA AVE,Atlantic City,NJ,39.3674445,-74.4378235,RES1,3001,,17,NE,1900,1900,3102,2,1,892.7902079,892.7902079,3505,NO,31.19,43.03,3,-0.2,6106,114.357739,123.994025,133.777828,140.065525,I,Above,Hip,0,5701,Wood,37.1087783,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1715,NJBF000070557,620 N INDIANA AVE,Atlantic City,NJ,39.36758493,-74.43837848,RES1,3001,,17,NE,1900,1900,3102,2,1,1146.081862,1146.081862,3505,NO,45.12,59.91,3,8.39,6106,114.34411,123.982418,133.76521,140.054623,I,Above,Gable,0,5701,Wood,52.51052082,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1716,NJBF000072338,1614 EMERSON AVE,Atlantic City,NJ,39.37333378,-74.45019036,RES1,3001,,16,NE,1900,1900,3101,1,1,1604.141578,1604.141578,3505,NO,23.41,31.94,3,4.71,6106,114.022052,123.706544,133.467153,139.77689,I,Above,Gable,0,5701,Wood,27.67508546,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1717,NJBF000068414,510 N HARRISBURG AVE,Atlantic City,NJ,39.35667399,-74.46190985,RES1,3001,,17,NE,1920,1920,3101,1,1,855.7577766,855.7577766,3505,NO,10.4,25.06,3,-1.72,6106,113.963373,123.672025,133.41924,139.838697,I,Above,Flat,0,5701,Wood,17.72975772,0,0,,,,1,1,,0.03,nav,1,1920,1,, 1718,NJBF000068523,614 WISTERIA RD,Atlantic City,NJ,39.3570065,-74.461372,RES1,3001,,16,NE,1930,1930,3101,1,1,723.1136544,723.1136544,3505,NO,13,18.93,3,2.07,6106,113.971077,123.678158,133.426096,139.842378,I,Above,Gable,0,5701,Wood,15.96654493,0,0,,,,1,1,,0.03,nav,1,1930,1,, 1719,NJBF000068499,,Atlantic City,NJ,39.35694765,-74.46131533,RES1,3001,,NaN,NE,1900,0,3101,1,1,828.1565327,828.1565327,3505,NO,15.54,23.6,3,0.34,6106,113.97304,123.679811,133.427842,139.844212,I,Above,Gable,0,5701,Wood,19.56988201,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1720,NJBF000070957,1810 MCKINLEY AVE,Atlantic City,NJ,39.36896602,-74.43991512,RES1,3001,,33,NE,1900,1900,3102,2,1,613.3857131,613.3857131,3505,YES,41.96,47.42,3,3.31,6106,114.294765,123.93982,133.719556,140.009826,I,Above,Gable,0,5701,Wood,44.68959781,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1721,NJBF000070566,524 N KENTUCKY AVE,Atlantic City,NJ,39.36763351,-74.43518975,RES1,3001,,17,NE,1900,1900,3101,2,1,1112.312453,1112.312453,3505,NO,43.6,52.08,3,8.44,6106,114.412231,124.040046,133.828489,140.10463,I,Above,Gable,0,5701,Wood,47.83963598,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1722,NJBF000070545,1612 CASPIAN AVE,Atlantic City,NJ,39.36753335,-74.43538888,RES1,3001,,17,NE,1900,1962,3101,2,1,1980.403622,1980.403622,3505,NO,34.97,41.77,3,0.34,6106,114.409136,124.037479,133.825588,140.102931,I,Above,Gable,0,5701,Wood,38.37177614,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1723,NJBF000070348,2121 BACHARACH BLVD,Atlantic City,NJ,39.366778,-74.444111,IND1,3004,761,NaN,E,1969,0,3401,1,1,816.7184564,816.7184564,3505,NO,21,26.22,3,2.43,6106,114.229685,123.88655,133.659622,139.974579,I,Above,Flat,0,NaN,Wood,23.61411923,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1724,NJBF000070366,805 N ARKANSAS AVE,Atlantic City,NJ,39.36685237,-74.44221926,RES3B,3001,,17,ME,1890,1890,3301,2,1,924.8770806,924.8770806,3505,NO,42.49,48.34,3,4.21,6106,114.269764,123.920197,133.696484,140.003905,I,Above,Gable,0,5701,Wood,45.41487419,0,0,,,,1,1,,0.03,nav,1,1890,2,, 1725,NJBF000070242,506 N INDIANA AVE,Atlantic City,NJ,39.36639133,-74.43760022,RES3B,3001,,17,ME,1880,1880,3301,2,1,1036.184108,1036.184108,3505,NO,30.17,35.46,3,6.94,6106,114.374969,124.009207,133.79364,140.084376,I,Above,Flat,0,NaN,Wood,32.81508811,0,0,,,,1,1,,0.03,nav,1,1880,2,, 1726,NJBF000070247,519 N OHIO AVE,Atlantic City,NJ,39.36641086,-74.43871976,RES3B,3001,,45,ME,1920,1920,3301,3,2,1170.094863,1170.094863,3505,YES,38.48,50.31,3,-2.58,6106,114.350569,123.988585,133.771047,140.06628,I,Above,Flat,0,NaN,Wood,44.39574858,0,0,,,,1,1,,0.03,nav,1,1920,3,, 1727,NJBF000070206,2021 BLAINE AVE,Atlantic City,NJ,39.36622093,-74.44148811,RES3B,3001,,17,ME,1900,1900,3301,2,1,743.4539531,743.4539531,3505,NO,35.33,46.2,3,1.12,6106,114.293018,123.940182,133.71788,140.024897,I,Above,Gable,0,5701,Wood,40.76675368,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1728,NJBF000070219,513 N OHIO AVE,Atlantic City,NJ,39.36629127,-74.43861526,RES3B,3001,,17,ME,1900,1900,3301,2,1,1758.434865,1758.434865,3505,NO,23.69,32.98,3,2.66,6106,114.354254,123.991766,133.774439,140.069698,I,Above,Gable,0,NaN,Wood,28.33745646,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1729,NJBF000070102,1918 CASPIAN AVE,Atlantic City,NJ,39.36582243,-74.43959235,RES3B,3001,,45,ME,1900,1900,3301,2,2,846.734963,846.734963,3505,YES,26.99,36.18,3,1.39,6106,114.338713,123.978927,133.759996,140.06099,I,Above,Hip,0,NaN,Wood,31.58122834,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1730,NJBF000070155,1813 HUMMOCK AVE,Atlantic City,NJ,39.36603657,-74.43789836,RES3B,3001,,45,ME,1900,1900,3301,3,2,1042.062127,1042.062127,3505,YES,38.15,45.4,3,4.09,6106,114.372731,124.007515,133.791499,140.084785,I,Above,Hip,0,NaN,Wood,41.77551259,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1731,NJBF000070040,2021 CASPIAN AVE,Atlantic City,NJ,39.36558847,-74.44104384,RES3B,3001,,17,ME,1925,1925,3301,2,1,799.3153101,799.3153101,3505,NO,41.43,48.62,3,7.86,6106,114.31011,123.954965,133.733571,140.041276,I,Above,Hip,0,NaN,Wood,45.02131717,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1732,NJBF000070108,1912 CASPIAN AVE,Atlantic City,NJ,39.36586185,-74.43936202,RES3B,3001,,17,ME,1996,1996,3301,1,1,1943.48199,1943.48199,3505,NO,14.23,25.48,3,-2.57,6106,114.343206,123.982693,133.764154,140.064066,I,Above,Gable,0,NaN,Wood,19.85405441,0,0,,,,1,1,,0.03,nav,1,1996,1,, 1733,NJBF000070283,1816 REV JJ WALTERS,Atlantic City,NJ,39.36655959,-74.43829233,RES3B,3001,,17,ME,1984,1984,3301,1,1,1352.394787,1352.394787,3505,NO,17.17,28.91,3,5.53,6106,114.358045,123.99481,133.77799,140.07092,I,Above,Flat,0,NaN,Wood,23.04035355,0,0,,,,1,1,,0.03,nav,1,1984,1,, 1734,NJBF000070044,516 N MICHIGAN AVE,Atlantic City,NJ,39.3656005,-74.4402575,RES3B,3001,,17,ME,1900,1900,3301,2,1,1059.306393,1059.306393,3505,NO,37.13,48.52,3,3.79,6106,114.326956,123.969147,133.749109,140.053629,I,Above,Gable,0,NaN,Wood,42.82532833,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1735,NJBF000070012,1900 HUMMOCK AVE,Atlantic City,NJ,39.365475,-74.4385445,RES3B,3001,,17,ME,1994,1994,3301,1,1,1116.149764,1116.149764,3505,NO,12.53,23.66,3,-0.68,6106,114.365433,124.001666,133.784633,140.082683,I,Above,Gable,0,NaN,Wood,18.09308645,0,0,,,,1,1,,0.03,nav,1,1994,1,, 1736,NJBF000070421,509 N DR MARTIN LUTHER K,Atlantic City,NJ,39.367047,-74.435758,RES1,3001,,33,NE,1900,1900,3101,2,1,541.583837,541.583837,3505,YES,39.56,44.69,3,1.27,6106,114.406919,124.035871,133.823428,140.104101,I,Above,Flat,0,5701,Wood,42.12595554,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1737,NJBF000070104,1914 CASPIAN AVE,Atlantic City,NJ,39.3658346,-74.43947884,RES3B,3001,,17,ME,1996,1996,3301,1,1,1605.082937,1605.082937,3505,NO,19.01,28.77,3,7.72,6106,114.340999,123.980847,133.76211,140.062598,I,Above,Hip,0,NaN,Wood,23.88844859,0,0,,,,1,1,,0.03,nav,1,1996,1,, 1738,NJBF000071209,1615 READING AVE,Atlantic City,NJ,39.36977787,-74.43695809,RES1,3001,,16,NE,1900,1900,3101,1,1,1426.512385,1426.512385,3505,NO,19.46,28.51,3,0.99,6106,114.349062,123.985191,133.76994,140.045378,I,Above,Gable,0,5701,Wood,23.9891756,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1739,NJBF000070140,1817 HUMMOCK AVE,Atlantic City,NJ,39.36598093,-74.43806149,RES3B,3001,,45,ME,1902,1902,3301,3,2,981.1033347,981.1033347,3505,YES,48.45,53.46,3,7.46,6106,114.369878,124.005136,133.788846,140.08301,I,Above,Hip,0,NaN,Wood,50.9552113,0,0,,,,1,1,,0.03,nav,1,1902,3,, 1740,NJBF000070881,1720 GRANT AVE,Atlantic City,NJ,39.36873603,-74.43811371,RES1,3001,,16,NE,1900,1900,3102,1,1,1318.933283,1318.933283,3505,NO,19.83,27.76,3,2.45,6106,114.336308,123.975086,133.758056,140.04206,I,Above,Flat,0,5701,Wood,23.79413317,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1741,NJBF000070710,705 N INDIANA AVE #A,Atlantic City,NJ,39.36813436,-74.43825528,RES1,3001,,NaN,NE,1969,0,3102,2,1,1589.47388,1589.47388,3505,YES,24.36,30.57,3,3.26,6106,114.340317,123.978866,133.76174,140.048584,I,Above,Flat,0,5701,Wood,27.46641819,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1742,NJBF000070610,1918 GRANT AVE,Atlantic City,NJ,39.36777234,-74.44080252,RES3B,3001,,17,ME,1900,1900,3301,2,1,705.3383278,705.3383278,3505,NO,25.81,37.28,3,-1.07,6106,114.28956,123.936252,133.714754,140.013092,I,Above,Flat,0,5701,Wood,31.54757468,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1743,NJBF000070865,1915 MCKINLEY AVE,Atlantic City,NJ,39.36868669,-74.4413722,RES3A,3001,,17,NE,1900,1900,3301,2,1,2489.454307,2489.454307,3505,NO,40.93,55.42,3,4.48,6106,114.266554,123.916215,133.693484,139.990495,I,Above,Hip,0,5701,Wood,48.17519561,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1744,NJBF000070890,1013 N MICHIGAN AVE,Atlantic City,NJ,39.36877182,-74.44188192,RES3A,3001,,16,NE,1997,1997,3301,1,1,855.5061427,855.5061427,3505,NO,27.63,37.21,3,8.97,6106,114.254539,123.906026,133.682386,139.981026,I,Above,Flat,0,5701,Wood,32.42108878,0,0,,,,1,1,,0.03,nav,1,1997,1,, 1745,NJBF000070920,701 N DR MARTIN LUTHER K,Atlantic City,NJ,39.368853,-74.437151,RES1,3001,,16,NE,1900,1900,3101,1,1,1171.687624,1171.687624,3505,NO,12.15,23.3,3,-0.43,6106,114.355697,123.991418,133.776067,140.055749,I,Above,Hip,0,5701,Wood,17.72722657,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1746,NJBF000071131,803 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36951208,-74.43758337,RES1,3001,,17,NE,1958,1958,3101,1,1,1594.852621,1594.852621,3505,NO,20.34,30.54,3,4.15,6106,114.338695,123.976589,133.760296,140.039245,I,Above,Gable,0,5701,Wood,25.4421792,0,0,,,,1,1,,0.03,nav,1,1958,1,, 1747,NJBF000070698,1731 LINCOLN AVE,Atlantic City,NJ,39.3680905,-74.4379245,RES1,3001,,16,NE,1900,1900,3102,2,1,826.3778917,826.3778917,3505,YES,41.99,56.43,3,6.29,6106,114.34796,123.985355,133.768825,140.054496,I,Above,Hip,0,5701,Wood,49.20849329,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1748,NJBF000072643,1614 MADISON AVE,Atlantic City,NJ,39.37437554,-74.44973261,RES1,3001,,17,NE,1920,1920,3102,2,1,1341.682093,1341.682093,3505,NO,28.73,39.15,3,3.31,6106,114.020166,123.703835,133.464779,139.768724,I,Above,Hip,0,5701,Wood,33.93904206,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1749,NJBF000072596,1641 N MICHIGAN AVE,Atlantic City,NJ,39.37421847,-74.45009296,RES1,3001,,45,NE,1960,1960,3102,1,2,2212.944149,2212.944149,3505,NO,14.83,23.55,3,-2.2,6106,114.014143,123.698956,133.45936,139.765124,I,Above,Hip,0,5701,Wood,19.19332111,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 1750,NJBF000072728,1907 EMERSON AVE,Atlantic City,NJ,39.37470019,-74.45390686,RES1,3001,,17,NE,1900,1900,3101,1,1,1079.364587,1079.364587,3505,NO,20.62,27.07,3,6.02,6106,113.925885,123.624513,133.378344,139.693999,I,Above,Hip,0,5701,Wood,23.84609725,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1751,NJBF000072781,1815 N MICHIGAN AVE,Atlantic City,NJ,39.3749092,-74.45253557,RES1,3001,,17,NE,1900,1900,3101,2,1,1138.918167,1138.918167,3505,NO,29.53,43.9,3,-2.45,6106,113.953326,123.647217,133.403227,139.713828,I,Above,Flat,0,5701,Wood,36.71519406,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1752,NJBF000072763,1521 N OHIO AVE #A,Atlantic City,NJ,39.37483572,-74.44782812,RES1,3001,,NaN,NE,1900,0,3102,2,1,1976.940513,1976.940513,3505,NO,32.5,41.69,3,7.34,6106,114.056258,123.73365,133.497639,139.793421,I,Above,Gable,0,5701,Wood,37.0947122,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1753,NJBF000072883,1937 N RIVERSIDE DR,Atlantic City,NJ,39.37541355,-74.45359718,IND4,3001,100,17,E,1960,1960,3401,1,1,1852.350548,1852.350548,3507,NO,17.72,31.17,1,2.02,6106,113.924611,123.622588,133.376603,139.688307,I,Above,Flat,0,NaN,Wood,24.4473227,0,0,,,,1,1,,0.03,nav,1,1960,1,, 1754,NJBF000072871,1937 N RIVERSIDE DR,Atlantic City,NJ,39.37533498,-74.45375495,IND4,3001,100,17,E,1960,1960,3401,1,1,1821.83074,1821.83074,3507,NO,13.32,26.52,1,0.89,6106,113.922062,123.620552,133.374342,139.686855,I,Above,Gable,0,NaN,Wood,19.92244029,0,0,,,,1,1,,0.03,nav,1,1960,1,, 1755,NJBF000072634,1816 E RIVERSIDE DR,Atlantic City,NJ,39.37434482,-74.4444117,RES1,3001,,45,NE,1922,1922,3102,2,2,1310.535899,1310.535899,3505,YES,30.44,38.51,3,2.04,6106,114.135722,123.801072,133.571158,139.857169,I,Above,Hip,0,5701,Wood,34.47710746,0,0,,,,1,1,,0.03,nav,1,1922,2,, 1756,NJBF000070427,815 N ARKANSAS AVE,Atlantic City,NJ,39.36707722,-74.44236593,RES3B,3001,,16,ME,1900,1900,3301,1,1,1133.787698,1133.787698,3505,NO,22.15,31.44,3,5.04,6106,114.263936,123.91514,133.691118,139.998229,I,Above,Gable,0,5701,Wood,26.79499287,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1757,NJBF000072194,1416 N MICHIGAN AVE #A,Atlantic City,NJ,39.37285505,-74.44639822,RES1,3001,,NaN,NE,1900,0,3102,2,1,1188.460104,1188.460104,3505,NO,36.85,49.38,3,-0.31,6106,114.109704,123.78062,133.547849,139.846783,I,Above,Gable,0,5701,Wood,43.11436458,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1758,NJBF000071700,1434 BEACH AVE,Atlantic City,NJ,39.37133484,-74.44720744,RES1,3001,,17,NE,1979,1979,3102,2,1,1550.487817,1550.487817,3505,NO,29.94,39.97,3,4.57,6106,114.109585,123.781967,133.548376,139.856275,I,Above,Gable,0,5701,Wood,34.95440161,0,0,,,,1,1,,0.03,nav,1,1979,2,, 1759,NJBF000072260,1517 EMERSON AVE,Atlantic City,NJ,39.37305622,-74.44799538,RES1,3001,,17,NE,1969,1955,3102,2,1,1549.264037,1549.264037,3505,NO,29.79,38.53,3,2.63,6106,114.072817,123.749421,133.513848,139.817443,I,Above,Hip,0,5701,Wood,34.15677357,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1760,NJBF000071665,1501 W RIVERSIDE DR,Atlantic City,NJ,39.37121597,-74.44884022,RES1,3001,,17,NE,1900,1900,3102,1,1,1189.679745,1189.679745,3505,NO,20.38,29.91,3,6.89,6106,114.075538,123.753518,133.517215,139.831209,I,Above,Gable,0,5701,Wood,25.14876638,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1761,NJBF000071555,1401 W RIVERSIDE DR,Atlantic City,NJ,39.370916,-74.446493,RES1,3001,,17,NE,1930,1930,3102,2,1,1503.605952,1503.605952,3505,NO,40.03,49.23,3,3.92,6106,114.12988,123.799394,133.567163,139.87426,I,Above,Hip,0,5701,Wood,44.63048884,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1762,NJBF000071683,1414 BEACH AVE,Atlantic City,NJ,39.37127435,-74.44700665,RES1,3001,,17,NE,1900,1900,3102,1,1,1653.394091,1653.394091,3505,NO,20.87,27.87,3,8.04,6106,114.114621,123.786252,133.553022,139.860472,I,Above,Gable,0,5701,Wood,24.37188308,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1763,NJBF000071515,1544 W RIVERSIDE DR,Atlantic City,NJ,39.37080949,-74.44929799,RES1,3001,,17,NE,1900,1900,3101,2,1,3053.744286,3053.744286,3505,NO,44.36,52.06,3,6.84,6106,114.070279,123.749501,133.512577,139.829799,I,Above,Gable,0,5701,Wood,48.21261943,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1764,NJBF000072169,1427 EMERSON AVE,Atlantic City,NJ,39.37277381,-74.44704903,RES1,3001,,17,NE,1930,1930,3102,2,1,803.6690204,803.6690204,3505,NO,29.88,41.06,3,3.53,6106,114.096529,123.769623,133.53577,139.837282,I,Above,Hip,0,5701,Wood,35.47115147,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1765,NJBF000071548,1510 W RIVERSIDE DR,Atlantic City,NJ,39.37090186,-74.44871265,RES1,3001,100,NaN,NE,1969,0,3101,2,1,1844.551502,1844.551502,3505,YES,35.47,41.64,3,-0.06,6106,114.081905,123.759154,133.523177,139.83803,I,Above,Flat,0,5701,Wood,38.55480595,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1766,NJBF000071746,1407 BEACH AVE,Atlantic City,NJ,39.37149167,-74.44649052,RES1,3001,,17,NE,1900,1900,3102,2,1,1491.338424,1491.338424,3505,NO,38.9,50.65,3,7.41,6106,114.123296,123.793337,133.560908,139.86567,I,Above,Gable,0,5701,Wood,44.77361701,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1767,NJBF000071750,2116 MORNINGSIDE DR,Atlantic City,NJ,39.3715085,-74.4477885,RES1,3001,,17,NE,1900,1900,3102,1,1,1323.715982,1323.715982,3505,NO,15.98,30.89,3,-0.4,6106,114.094981,123.769546,133.534907,139.844115,I,Above,Flat,0,5701,Wood,23.436064,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1768,NJBF000071775,1500 BEACH AVE,Atlantic City,NJ,39.37159469,-74.44820196,RES1,3001,,17,NE,1945,1945,3102,1,1,2439.274416,2439.274416,3505,NO,10.68,17.74,3,-2.14,6106,114.085027,123.761111,133.525742,139.83601,I,Above,Flat,0,5701,Wood,14.21274058,0,0,,,,1,1,,0.03,nav,1,1945,1,, 1769,NJBF000071544,1464 W RIVERSIDE DR,Atlantic City,NJ,39.37089035,-74.44807279,RES1,3001,,17,NE,1930,1930,3101,1,1,1847.071091,1847.071091,3505,NO,16.12,23.39,3,-2.07,6106,114.095927,123.770921,133.536025,139.848735,I,Above,Gable,0,5701,Wood,19.75491427,0,0,,,,1,1,,0.03,nav,1,1930,1,, 1770,NJBF000071914,,Atlantic City,NJ,39.37198639,-74.45169112,RES1,3001,,NaN,NE,1969,0,3101,1,1,1951.598346,1951.598346,3505,NO,21.1,35.08,3,7.25,6106,114.004809,123.693531,133.452181,139.772388,I,Above,Hip,0,5701,Wood,28.08932674,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1771,NJBF000071825,2223 KUEHNLE AVE,Atlantic City,NJ,39.37174157,-74.45232513,RES1,3001,,45,NE,1970,1970,3101,2,2,1241.409384,1241.409384,3505,NO,34.64,46.52,3,6.93,6106,113.993817,123.684598,133.442297,139.765556,I,Above,Gable,0,5701,Wood,40.58028152,0,0,,,,1,1,,0.03,nav,1,1970,2,, 1772,NJBF000071400,1648 W RIVERSIDE DR,Atlantic City,NJ,39.37049094,-74.45172574,RES1,3001,,17,NE,1930,1930,3101,2,1,1907.920723,1907.920723,3505,YES,34.2,48.16,3,-0.16,6106,114.021194,123.708746,133.467911,139.794508,I,Above,Gable,0,5701,Wood,41.18297462,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1773,NJBF000071372,1664 W RIVERSIDE DR,Atlantic City,NJ,39.37038753,-74.45209893,RES1,3001,,45,NE,1960,1960,3101,2,4,3235.046848,3235.046848,3505,YES,37.01,50.14,3,7.79,6106,114.014269,123.703064,133.461654,139.789894,I,Above,Hip,0,5701,Wood,43.57644122,0,0,,,,1,1,,0.03,nav,1,1960,2,, 1774,NJBF000072529,2130 N RIVERSIDE DR,Atlantic City,NJ,39.37400326,-74.45705742,RES1,3001,,17,NE,1950,1950,3103,1,1,1713.97204,1713.97204,3505,NO,17.32,26.96,3,2.26,6106,113.865174,123.574705,133.323716,139.65156,I,Above,Gable,0,5701,Wood,22.1377675,0,0,,,,1,1,,0.03,nav,1,1950,1,, 1775,NJBF000072425,2140 W RIVERSIDE DR,Atlantic City,NJ,39.37363001,-74.45776398,RES1,3001,,17,NE,2006,2006,3103,2,1,2149.892138,2149.892138,3505,NO,33.87,39.85,3,7.71,6106,113.85397,123.565835,133.313883,139.645338,I,Above,Gable,0,5701,Wood,36.85945755,0,0,,,,1,1,,0.03,nav,1,2006,2,, 1776,NJBF000071507,1820 W RIVERSIDE DR,Atlantic City,NJ,39.37079388,-74.45466712,RES1,3001,,17,NE,2006,2006,3103,5,1,1892.169437,1892.169437,3505,NO,81.38,94.76,3,0.13,6106,113.953715,123.652132,133.406382,139.74099,I,Above,Gable,0,5701,Wood,88.07306292,0,0,,,,1,1,,0.03,nav,1,2006,5,, 1777,NJBF000072908,1808 N OHIO AVE,Atlantic City,NJ,39.37559114,-74.45197012,RES1,3001,,17,NE,1900,1900,3101,2,1,1179.149549,1179.149549,3505,NO,33.88,43.46,3,-0.38,6106,113.957962,123.650294,133.406938,139.712939,I,Above,Gable,0,5701,Wood,38.67025378,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1778,NJBF000068926,700 N HARRISBURG AVE,Atlantic City,NJ,39.35803491,-74.46292791,RES1,3001,,17,NE,1900,1900,3101,2,1,1063.746438,1063.746438,3505,NO,44.07,58.01,3,6.1,6106,113.924332,123.639008,133.384488,139.800737,I,Above,Flat,0,5701,Wood,51.03890114,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1779,NJBF000068904,639 N DOVER AVE,Atlantic City,NJ,39.35798293,-74.464794,RES1,3001,,17,NE,1950,1950,3101,2,1,2206.839796,2206.839796,3505,YES,28.23,38.49,3,-0.64,6106,113.884017,123.605912,133.348726,139.770556,I,Above,Hip,0,5701,Wood,33.36014387,0,0,,,,1,1,,0.03,nav,1,1950,2,, 1780,NJBF000068959,574 N TRENTON AVE,Atlantic City,NJ,39.35815848,-74.46197967,RES1,3001,,27,NE,1900,1900,3101,2,2,2943.225778,2943.225778,3505,NO,32.29,45.76,3,4.53,6106,113.943615,123.654791,133.401621,139.81449,I,Above,Hip,0,5701,Wood,39.02573468,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1781,NJBF000068853,4200 WEST END AVE,Atlantic City,NJ,39.35779543,-74.46694615,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4371.345728,4371.345728,3505,NO,9.55,18.35,3,-2.99,6106,113.839039,123.569149,133.30897,139.737506,I,Above,Flat,0,NaN,Wood,13.94880913,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1782,NJBF000068779,4200 WEST END AVE,Atlantic City,NJ,39.35760757,-74.46679488,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4067.638677,4067.638677,3505,NO,28.67,42.01,3,7.31,6106,113.84465,123.573886,133.31396,139.742992,I,Above,Flat,0,NaN,Wood,35.33833244,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1783,NJBF000068970,565 N TRENTON AVE,Atlantic City,NJ,39.35821249,-74.46126534,COM1,3003,100,NaN,ME,1969,0,3401,1,1,5078.138593,5078.138593,3507,NO,21.3,35.54,1,2.87,6106,113.958626,123.667116,133.41498,139.825437,I,Above,Flat,0,NaN,Wood,28.41707727,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1784,NJBF000072917,1800 GRAMMERCY AVE,Atlantic City,NJ,39.37563534,-74.44793217,RES1,3001,,45,NE,2006,2006,3101,2,2,1502.522569,1502.522569,3505,NO,39.49,47,3,2.81,6106,114.04501,123.723318,133.486787,139.779668,I,Above,Flat,0,5701,Wood,43.24231671,0,0,,,,1,1,,0.03,nav,1,2006,2,, 1785,NJBF000072879,1521 PENROSE AVE,Atlantic City,NJ,39.37539576,-74.4478639,RES1,3001,,17,NE,1900,1900,3101,1,1,1262.076684,1262.076684,3505,NO,17.33,28.57,3,5.63,6106,114.049169,123.72708,133.490769,139.784396,I,Above,Hip,0,5701,Wood,22.95159533,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1786,NJBF000072885,1817 MADISON AVE,Atlantic City,NJ,39.375428,-74.45227499,RES1,3001,,17,NE,1900,1900,3101,1,1,1002.337639,1002.337639,3505,NO,12.18,25.93,3,0.75,6106,113.953168,123.646471,133.40268,139.710303,I,Above,Gable,0,5701,Wood,19.05297485,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1787,NJBF000068925,644 WISTERIA RD,Atlantic City,NJ,39.358033,-74.4621935,RES1,3001,,16,NE,1900,1900,3101,1,1,693.4416959,693.4416959,3505,NO,17.83,32.29,3,-1.64,6106,113.940475,123.652292,133.398838,139.812918,I,Above,Flat,0,5701,Wood,25.06334149,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1788,NJBF000072868,1517 PENROSE AVE,Atlantic City,NJ,39.375321,-74.447586,RES1,3001,,16,NE,1925,1925,3101,2,1,1307.476329,1307.476329,3505,YES,38.76,47.73,3,2.59,6106,114.056032,123.732935,133.497134,139.790138,I,Above,Gable,0,5701,Wood,43.24660637,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1789,NJBF000072413,2205 SENATE AVE,Atlantic City,NJ,39.3735683,-74.45721732,RES1,3001,,17,NE,1971,1971,3103,2,1,1070.619259,1070.619259,3505,NO,19.43,25.77,3,-2.54,6106,113.866591,123.576416,133.325371,139.655551,I,Above,Gable,0,5701,Wood,22.59843505,0,0,,,,1,1,,0.03,nav,1,1971,2,, 1790,NJBF000072954,1601 PENROSE AVE,Atlantic City,NJ,39.37585882,-74.44860338,EDU1,3003,,NaN,E,1969,0,3401,1,1,1997.296028,1997.296028,3507,NO,10.77,16.33,1,0.24,6106,114.027964,123.708733,133.470955,139.765133,I,Above,Gable,0,NaN,Wood,13.54676628,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1791,NJBF000072948,1601 PENROSE AVE,Atlantic City,NJ,39.37585882,-74.44860338,EDU1,3003,,NaN,E,1969,0,3401,1,1,2018.503729,2018.503729,3507,NO,20.22,32.96,1,1.12,6106,114.027964,123.708733,133.470955,139.765133,I,Above,Gable,0,NaN,Wood,26.58599647,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1792,NJBF000068962,632 N ELBERON AVE,Atlantic City,NJ,39.35817227,-74.4642864,RES1,3001,,17,NE,1900,1900,3101,1,1,1516.995444,1516.995444,3505,NO,14.51,20.23,3,-0.74,6106,113.892857,123.613037,133.356535,139.776055,I,Above,Gable,0,5701,Wood,17.36970393,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1793,NJBF000068960,4126 WEST END AVE,Atlantic City,NJ,39.35816479,-74.46618872,RES1,3001,,16,NE,1900,1900,3101,1,1,1290.915515,1290.915515,3505,NO,9.03,18.64,3,-2.68,6106,113.851148,123.578803,133.3196,139.744377,I,Above,Gable,0,5701,Wood,13.83694778,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1794,NJBF000072986,1817 MURRAY AVE,Atlantic City,NJ,39.37622273,-74.45149138,GOV1,3001,100,NaN,E,1969,0,3401,1,1,2903.031204,2903.031204,3507,NO,20.15,34.15,1,0.67,6106,113.961287,123.652324,133.409481,139.711365,I,Above,Hip,0,NaN,Wood,27.14942866,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1795,NJBF000072564,2125 N RIVERSIDE DR,Atlantic City,NJ,39.37410351,-74.45754367,COM8,3001,100,NaN,ME,1969,0,3401,1,1,4354.260046,4354.260046,3507,NO,13,21.96,1,1.33,6106,113.853427,123.564797,133.312977,139.641758,I,Above,Flat,0,NaN,Wood,17.48355909,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1796,NJBF000068974,655 N DOVER AVE,Atlantic City,NJ,39.35822879,-74.46501117,RES1,3001,,17,NE,1900,1900,3101,2,1,1412.783174,1412.783174,3505,NO,21.65,30,3,-1.36,6106,113.876242,123.59935,133.3418,139.763077,I,Above,Flat,0,5701,Wood,25.82410878,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1797,NJBF000068945,654 N DOVER AVE,Atlantic City,NJ,39.35810333,-74.46546148,RES1,3001,,45,NE,1975,1975,3101,2,4,1823.656699,1823.656699,3505,NO,35.56,41.08,3,-2.37,6106,113.8679,123.592594,133.334434,139.757539,I,Above,Gable,0,5701,Wood,38.31902435,0,0,,,,1,1,,0.03,nav,1,1975,2,, 1798,NJBF000072902,1403 ABSECON BLVD,Atlantic City,NJ,39.37555298,-74.44462331,COM1,3001,100,NaN,ME,1969,0,3401,3,1,930.2727123,930.2727123,3507,NO,44.01,57.98,1,0.51,6106,114.117507,123.784485,133.553716,139.835671,I,Above,Flat,0,NaN,Wood,50.99287814,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1799,NJBF000072675,2001 MURRAY AVE,Atlantic City,NJ,39.37447697,-74.45224894,RES1,3001,,16,NE,1900,1900,3101,1,1,1158.8875,1158.8875,3505,NO,15.58,26.02,3,0.6,6106,113.964422,123.657007,133.413687,139.725212,I,Above,Gable,0,5701,Wood,20.80238939,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1800,NJBF000072502,,Atlantic City,NJ,39.37390441,-74.44808404,RES1,3001,,NaN,NE,1969,0,3102,2,1,1036.798694,1036.798694,3505,NO,31.44,38.74,3,5.05,6106,114.061253,123.738836,133.502774,139.803208,I,Above,Gable,0,5701,Wood,35.08946201,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1801,NJBF000072494,,Atlantic City,NJ,39.37386205,-74.44793358,RES1,3001,,NaN,NE,1969,0,3102,2,1,977.2883616,977.2883616,3505,NO,28.48,41.91,3,5.07,6106,114.06498,123.742011,133.506221,139.806323,I,Above,Gable,0,5701,Wood,35.19466066,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1802,NJBF000072517,1601 N MICHIGAN AVE,Atlantic City,NJ,39.37395855,-74.44915598,RES1,3001,,16,NE,1900,1900,3102,1,1,938.88559,938.88559,3505,NO,23.69,29.02,3,8.29,6106,114.037394,123.718744,133.480838,139.784611,I,Above,Flat,0,5701,Wood,26.35156125,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1803,NJBF000072570,1822 E RIVERSIDE DR,Atlantic City,NJ,39.3741245,-74.444509,RES1,3001,,17,NE,1922,1922,3102,1,1,1471.415624,1471.415624,3505,NO,16.27,22.78,3,1.31,6106,114.136121,123.801625,133.571628,139.858856,I,Above,Gable,0,5701,Wood,19.52699948,0,0,,,,1,1,,0.03,nav,1,1922,1,, 1804,NJBF000072876,1809 MADISON AVE,Atlantic City,NJ,39.37537298,-74.45208231,RES1,3001,,17,NE,1900,1900,3101,1,1,1108.784657,1108.784657,3505,NO,17.62,22.73,3,-1.55,6106,113.957975,123.650563,133.407119,139.714377,I,Above,Gable,0,5701,Wood,20.1790463,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1805,NJBF000072532,,Atlantic City,NJ,39.37400925,-74.45662111,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2107.921114,2107.921114,3505,NO,39.61,53.78,3,7.5,6106,113.874604,123.582553,133.332266,139.658841,I,Above,Hip,0,NaN,Wood,46.69112338,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1806,NJBF000072592,1517 MADISON AVE,Atlantic City,NJ,39.37420448,-74.4478904,RES1,3001,,17,NE,1900,1900,3102,1,1,1677.561675,1677.561675,3505,NO,11.85,23.24,3,-0.13,6106,114.062058,123.739198,133.503343,139.801905,I,Above,Gable,0,5701,Wood,17.54566656,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1807,NJBF000072575,1511 MADISON AVE,Atlantic City,NJ,39.37414164,-74.44755768,RES1,3001,,17,NE,1900,1900,3102,2,1,1335.512683,1335.512683,3505,NO,35.09,43.97,3,1.1,6106,114.069952,123.745898,133.510636,139.808332,I,Above,Gable,0,5701,Wood,39.52786962,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1808,NJBF000072650,2002 MURRAY AVE,Atlantic City,NJ,39.37440331,-74.4518471,RES1,3001,,17,NE,1900,1900,3101,2,1,774.6204119,774.6204119,3505,NO,41.87,52.51,3,6.54,6106,113.973986,123.665099,133.422481,139.733062,I,Above,Gable,0,5701,Wood,47.19048337,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1809,NJBF000072748,2039 N RIVERSIDE DR,Atlantic City,NJ,39.374783,-74.454964,RES1,3001,100,16,NE,1900,1900,3101,1,1,1016.968987,1016.968987,3505,NO,14.07,20,3,3.25,6106,113.901967,123.604433,133.356487,139.674933,I,Above,Flat,0,5701,Wood,17.03572342,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1810,NJBF000072845,1505 PENROSE AVE,Atlantic City,NJ,39.37516576,-74.44666884,RES1,3001,,45,NE,1900,1900,3101,2,3,731.9901222,731.9901222,3505,NO,25.63,39.21,3,2.61,6106,114.077627,123.751276,133.517118,139.807661,I,Above,Flat,0,5701,Wood,32.42191845,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1811,NJBF000072614,1521 MADISON AVE,Atlantic City,NJ,39.37427551,-74.44810787,RES1,3001,,29,NE,1900,1900,3102,2,2,1869.501102,1869.501102,3505,NO,43.48,57.22,3,4.61,6106,114.05652,123.734468,133.498212,139.79721,I,Above,Hip,0,5701,Wood,50.34888885,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1812,NJBF000072476,1516 MADISON AVE,Atlantic City,NJ,39.37380937,-74.44775666,RES1,3001,,17,NE,1900,1900,3102,1,1,1700.898352,1700.898352,3505,NO,10.93,17.49,3,-0.67,6106,114.069416,123.745793,133.510326,139.810048,I,Above,Hip,0,5701,Wood,14.20751152,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1813,NJBF000072312,1410 MADISON AVE,Atlantic City,NJ,39.3732471,-74.44575067,RES1,3001,,17,NE,1900,1900,3102,1,1,1292.444792,1292.444792,3505,NO,17.19,31.45,3,-0.53,6106,114.119241,123.788262,133.556454,139.851555,I,Above,Gable,0,5701,Wood,24.32219158,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1814,NJBF000072438,1400 N OHIO AVE,Atlantic City,NJ,39.37366613,-74.44523508,RES1,3001,,17,NE,1923,1923,3102,2,1,1375.157802,1375.157802,3505,YES,23.27,30.99,3,0.27,6106,114.125636,123.793238,133.56216,139.853775,I,Above,Flat,0,5701,Wood,27.13187955,0,0,,,,1,1,,0.03,nav,1,1923,2,, 1815,NJBF000072456,1512 MADISON AVE,Atlantic City,NJ,39.37373087,-74.44746446,RES1,3001,,17,NE,1958,1958,3102,1,1,1433.942873,1433.942873,3505,NO,9.49,21.66,3,-2.7,6106,114.076648,123.751952,133.517017,139.816064,I,Above,Gable,0,5701,Wood,15.57767985,0,0,,,,1,1,,0.03,nav,1,1958,1,, 1816,NJBF000072452,1612 N MICHIGAN AVE,Atlantic City,NJ,39.37371365,-74.44952743,RES1,3001,,17,NE,1900,1900,3102,1,1,1753.15128,1753.15128,3505,NO,17.24,27.34,3,1.43,6106,114.032125,123.714584,133.476153,139.782154,I,Above,Gable,0,5701,Wood,22.28821522,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1817,NJBF000072423,1507 N MICHIGAN AVE,Atlantic City,NJ,39.37360313,-74.44760595,RES1,3001,,45,NE,1931,1931,3102,2,2,1653.388819,1653.388819,3505,YES,39.62,48.1,3,8.89,6106,114.075025,123.75072,133.515593,139.815642,I,Above,Hip,0,5701,Wood,43.86273956,0,0,,,,1,1,,0.03,nav,1,1931,2,, 1818,NJBF000072300,1523 EMERSON AVE,Atlantic City,NJ,39.3732111,-74.44852475,RES1,3001,,17,NE,1930,1930,3102,2,1,1715.183706,1715.183706,3505,NO,22.38,36.83,3,-2.6,6106,114.059564,123.738136,133.501603,139.806348,I,Above,Gable,0,5701,Wood,29.60667897,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1819,NJBF000072309,1523 EMERSON AVE,Atlantic City,NJ,39.373242,-74.4483645,RES1,3001,,17,NE,1930,1930,3102,2,1,588.4875286,588.4875286,3505,NO,35.21,40.32,3,6.75,6106,114.062702,123.740739,133.504466,139.808544,I,Above,Flat,0,5701,Wood,37.76711305,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1820,NJBF000072488,1425 MADISON AVE,Atlantic City,NJ,39.37383887,-74.44650428,RES1,3001,,17,NE,1930,1930,3102,1,1,2111.418372,2111.418372,3505,NO,18.3,31.29,3,4.86,6106,114.09621,123.768293,133.53496,139.830291,I,Above,Gable,0,5701,Wood,24.79650697,0,0,,,,1,1,,0.03,nav,1,1930,1,, 1821,NJBF000072398,1922 BEACH AVE,Atlantic City,NJ,39.37351698,-74.45508664,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,5519.682894,5519.682894,3505,NO,26.97,38.19,3,-0.71,6106,113.913554,123.615616,133.368043,139.692257,I,Above,Flat,0,NaN,Wood,32.58101198,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1822,NJBF000072347,1922 BEACH AVE,Atlantic City,NJ,39.3733535,-74.4545095,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,5816.318972,5816.318972,3505,NO,23.22,28.69,3,-0.58,6106,113.927954,123.627821,133.381262,139.704448,I,Above,Gable,0,NaN,Wood,25.95522193,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1823,NJBF000072293,1922 BEACH AVE,Atlantic City,NJ,39.373186,-74.454593,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,5777.817607,5777.817607,3505,NO,44.06,56.61,3,6.18,6106,113.92805,123.628095,133.381474,139.705625,I,Above,Flat,0,NaN,Wood,50.33156637,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1824,NJBF000072319,2117 MURRAY AVE,Atlantic City,NJ,39.37326376,-74.45282095,RES1,3001,,17,NE,1900,1900,3101,1,1,1732.989072,1732.989072,3505,NO,13.58,20.69,3,2.17,6106,113.965705,123.659456,133.415712,139.734114,I,Above,Flat,0,5701,Wood,17.13826203,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1825,NJBF000072376,2105 MURRAY AVE,Atlantic City,NJ,39.37343589,-74.45274631,RES1,3001,,17,NE,1900,1900,3101,1,1,1666.319477,1666.319477,3505,NO,16.13,30.83,3,-1.8,6106,113.965385,123.658996,133.415303,139.732747,I,Above,Flat,0,5701,Wood,23.48072045,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1826,NJBF000072436,2115 HAMILTON AVE,Atlantic City,NJ,39.37366135,-74.4541838,RES1,3001,,16,NE,1900,1900,3101,1,1,1447.580916,1447.580916,3505,NO,20.03,29.38,3,0.56,6106,113.931573,123.630488,133.384329,139.705225,I,Above,Gable,0,5701,Wood,24.70523376,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1827,NJBF000072284,1834 BEACH AVE,Atlantic City,NJ,39.37315283,-74.45369224,RES1,3001,,17,NE,1900,1900,3101,1,1,1809.014704,1809.014704,3505,NO,18.33,28.03,3,-0.79,6106,113.948025,123.644808,133.399677,139.721235,I,Above,Gable,0,5701,Wood,23.17951365,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1828,NJBF000072410,1407 MADISON AVE,Atlantic City,NJ,39.37355594,-74.4456128,RES1,3001,,17,NE,1900,1900,3102,2,1,1816.114256,1816.114256,3505,NO,32.99,45.85,3,6.28,6106,114.118709,123.787513,133.555824,139.849203,I,Above,Hip,0,5701,Wood,39.42236424,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1829,NJBF000072249,1814 BEACH AVE,Atlantic City,NJ,39.37302963,-74.45324447,RES1,3001,,NaN,NE,1969,0,3101,1,1,1600.283478,1600.283478,3505,NO,22,27.72,3,6.5,6106,113.959163,123.65425,133.409908,139.730609,I,Above,Flat,0,5701,Wood,24.85966943,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1830,NJBF000072219,1401 N MICHIGAN AVE,Atlantic City,NJ,39.37295004,-74.44547519,RES1,3001,,NaN,NE,1969,0,3102,2,1,1328.068326,1328.068326,3505,NO,36.16,42.78,3,-0.09,6106,114.1286,123.796427,133.565206,139.860531,I,Above,Gable,0,5701,Wood,39.46704336,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1831,NJBF000072188,1632 N ARKANSAS AVE,Atlantic City,NJ,39.37283307,-74.45050502,RES1,3001,,17,NE,1965,1965,3102,1,1,1357.616284,1357.616284,3505,NO,19.59,34.51,3,4,6106,114.02091,123.706118,133.466403,139.779243,I,Above,Hip,0,5701,Wood,27.05127985,0,0,,,,1,1,,0.03,nav,1,1965,1,, 1832,NJBF000072124,2140 MURRAY AVE,Atlantic City,NJ,39.37265593,-74.45267207,RES1,3001,,16,NE,1900,1900,3101,1,1,1120.824702,1120.824702,3505,NO,15.45,23.62,3,2.58,6106,113.975849,123.668605,133.425362,139.745864,I,Above,Flat,0,5701,Wood,19.53684625,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1833,NJBF000072035,2020 E RIVERSIDE DR,Atlantic City,NJ,39.37236529,-74.44535638,RES1,3001,,16,NE,1900,1900,3102,2,1,1093.755192,1093.755192,3505,NO,37.5,51.51,3,8.99,6106,114.137861,123.804775,133.573975,139.871222,I,Above,Gable,0,5701,Wood,44.50277706,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1834,NJBF000072063,1530 N ARKANSAS AVE,Atlantic City,NJ,39.37248162,-74.44927415,RES1,3001,,17,NE,2002,2002,3102,2,1,1477.672093,1477.672093,3505,NO,33.6,42.2,3,-0.2,6106,114.051626,123.732222,133.49471,139.804952,I,Above,Gable,0,5701,Wood,37.90097681,0,0,,,,1,1,,0.03,nav,1,2002,2,, 1835,NJBF000071903,1801 N MISSISSIPPI AVE,Atlantic City,NJ,39.3719488,-74.45415453,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4953.305517,4953.305517,3505,NO,16.36,26.08,3,-1.12,6106,113.951646,123.649167,133.403784,139.731881,I,Above,Gable,0,NaN,Wood,21.22073099,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1836,NJBF000072072,1405 EMERSON AVE,Atlantic City,NJ,39.37250082,-74.44592902,RES1,3001,,45,NE,1900,1900,3102,1,2,1365.914748,1365.914748,3505,NO,17.81,23.67,3,3.64,6106,114.123902,123.792902,133.561067,139.85979,I,Above,Gable,0,5701,Wood,20.73962328,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1837,NJBF000072020,2114 GRAMMERCY AVE,Atlantic City,NJ,39.37230693,-74.4494863,RES1,3001,,17,NE,1960,1960,3102,1,1,2011.668294,2011.668294,3505,NO,18.03,32.14,3,5.86,6106,114.049024,123.730218,133.492418,139.804087,I,Above,Gable,0,5701,Wood,25.08944977,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 1838,NJBF000071974,1608 BEACH AVE,Atlantic City,NJ,39.3721675,-74.450313,RES1,3001,,45,NE,1900,1900,3102,2,3,1339.361244,1339.361244,3505,NO,27.13,33.36,3,2.28,6106,114.032661,123.716651,133.47752,139.792496,I,Above,Gable,0,5701,Wood,30.24522221,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1839,NJBF000072008,2208 MURRAY AVE,Atlantic City,NJ,39.37226762,-74.45283382,RES1,3001,,17,NE,1900,1900,3101,1,1,3414.746382,3414.746382,3505,NO,12.05,23.82,3,-1.94,6106,113.976745,123.669775,133.426424,139.749071,I,Above,Hip,0,5701,Wood,17.93695064,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1840,NJBF000071769,2100 E RIVERSIDE DR,Atlantic City,NJ,39.37156199,-74.44570913,RES1,3001,,17,NE,1900,1900,3102,1,1,1752.688941,1752.688941,3505,NO,25.15,39.47,3,6.15,6106,114.139428,123.806833,133.575715,139.877435,I,Above,Gable,0,5701,Wood,32.30805593,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1841,NJBF000072067,1507 N ARKANSAS AVE,Atlantic City,NJ,39.37249606,-74.44803471,RES1,3001,,17,NE,1984,1984,3102,1,1,1448.062786,1448.062786,3505,NO,16.67,23.28,3,-0.72,6106,114.078336,123.754616,133.519192,139.825208,I,Above,Gable,0,5701,Wood,19.97582371,0,0,,,,1,1,,0.03,nav,1,1984,1,, 1842,NJBF000072048,1528 N ARKANSAS AVE,Atlantic City,NJ,39.37242387,-74.4490722,RES1,3001,,17,NE,2002,2002,3102,2,1,1506.802121,1506.802121,3505,NO,27.43,35.95,3,3.64,6106,114.05667,123.73651,133.499361,139.809167,I,Above,Gable,0,5701,Wood,31.69123357,0,0,,,,1,1,,0.03,nav,1,2002,2,, 1843,NJBF000071578,1613 MARMORA AVE,Atlantic City,NJ,39.37098382,-74.43783496,RES1,3001,,17,NE,1966,1966,3101,1,1,1579.226238,1579.226238,3505,NO,20.99,32.7,3,5.53,6106,114.316169,123.956479,133.73932,140.013723,I,Above,Gable,0,5701,Wood,26.84443936,0,0,,,,1,1,,0.03,nav,1,1966,1,, 1844,NJBF000071611,1601 MARMORA AVE,Atlantic City,NJ,39.37105884,-74.43756472,RES1,3001,,17,NE,1900,1900,3101,2,1,1304.3296,1304.3296,3505,NO,42.33,50.17,3,7.55,6106,114.321118,123.960618,133.743918,140.01697,I,Above,Gable,0,5701,Wood,46.25105763,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1845,NJBF000071698,2306 MURRAY AVE,Atlantic City,NJ,39.37133073,-74.45329924,RES1,3001,,16,NE,1951,1951,3101,2,1,1049.239753,1049.239753,3505,YES,31.85,37.39,3,-0.12,6106,113.977336,123.671266,133.427529,139.755602,I,Above,Gable,0,5701,Wood,34.6214473,0,0,,,,1,1,,0.03,nav,1,1951,2,, 1846,NJBF000071545,1615 MARMORA AVE,Atlantic City,NJ,39.37089105,-74.43799218,RES1,3001,,16,NE,1966,1966,3101,1,1,1360.234871,1360.234871,3505,NO,21.34,35.59,3,6.84,6106,114.313863,123.954593,133.737181,140.012556,I,Above,Gable,0,5701,Wood,28.46324715,0,0,,,,1,1,,0.03,nav,1,1966,1,, 1847,NJBF000071440,2130 E RIVERSIDE DR,Atlantic City,NJ,39.37062834,-74.44613163,RES1,3001,,17,NE,2001,2001,3102,2,1,1908.391642,1908.391642,3505,NO,39.28,53.62,3,6.73,6106,114.141022,123.809011,133.577493,139.884475,I,Above,Gable,0,5701,Wood,46.45137462,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 1848,NJBF000071859,MEADOW TRACK,Atlantic City,NJ,39.37183433,-74.4793178,RES4,3003,,NaN,ME,1969,0,3401,1,1,6155.888002,6155.888002,3507,NO,13.34,27.63,1,1.3,6106,113.401318,123.195654,132.912737,139.297801,I,Above,Flat,0,NaN,Wood,20.48762472,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1849,NJBF000071048,1821 MCKINLEY AVE,Atlantic City,NJ,39.36923207,-74.43996105,RES3A,3001,,35,NE,1925,1900,3301,2,1,2323.821073,2323.821073,3505,YES,18.93,31.09,3,-2.78,6106,114.290669,123.936174,133.715755,140.005185,I,Above,Gable,0,5701,Wood,25.00919468,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1850,NJBF000070991,815 N INDIANA AVE,Atlantic City,NJ,39.36906708,-74.43892852,RES1,3001,,33,NE,1900,1920,3102,2,1,1903.281501,1903.281501,3505,NO,38.4,47.35,3,6.76,6106,114.314863,123.956731,133.738173,140.024172,I,Above,Flat,0,5701,Wood,42.87827415,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1851,NJBF000070674,712 HOBART AVE,Atlantic City,NJ,39.36801193,-74.43924428,RES1,3001,,17,NE,2003,2003,3102,2,1,918.6298399,918.6298399,3505,NO,32.34,37.52,3,1.65,6106,114.32041,123.962124,133.743288,140.034552,I,Above,Gable,0,5701,Wood,34.92937948,0,0,,,,1,1,,0.03,nav,1,2003,2,, 1852,NJBF000069139,715 WISTERIA RD,Atlantic City,NJ,39.358915,-74.46266,RES1,3001,,45,NE,1900,1900,3101,2,2,524.7641376,524.7641376,3505,YES,31.55,39.15,3,5.14,6106,113.919462,123.634378,133.380056,139.791458,I,Above,Gable,0,5701,Wood,35.3500333,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1853,NJBF000068850,635 N DOVER AVE.,Atlantic City,NJ,39.35778066,-74.46459461,RES1,3001,,17,NE,1900,1900,3101,2,1,1420.212224,1420.212224,3505,NO,41.95,56.17,3,8.48,6106,113.89086,123.611676,133.354817,139.777038,I,Above,Gable,0,5701,Wood,49.06103059,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1854,NJBF000069317,732 AUGUSTINE RD,Atlantic City,NJ,39.35964765,-74.46231928,RES1,3001,,17,NE,1900,1900,3101,1,1,914.7189262,914.7189262,3505,NO,22.03,33.38,3,8.1,6106,113.918025,123.632655,133.378661,139.785694,I,Above,Flat,0,5701,Wood,27.7057419,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1855,NJBF000069105,661 N ELBERON AVE,Atlantic City,NJ,39.35878801,-74.46428028,RES1,3001,,17,NE,1945,1945,3101,1,1,1158.732236,1158.732236,3505,NO,12.15,22.05,3,-1.43,6106,113.885467,123.606515,133.349882,139.766508,I,Above,Gable,0,5701,Wood,17.09806072,0,0,,,,1,1,,0.03,nav,1,1945,1,, 1856,NJBF000068877,645 N HARRISBURG AVE,Atlantic City,NJ,39.35788605,-74.46229428,RES1,3001,,16,NE,1900,1900,3101,1,1,974.7295201,974.7295201,3505,NO,15.57,26.99,3,-1.38,6106,113.94006,123.65205,133.39848,139.813538,I,Above,Hip,0,5701,Wood,21.27839332,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1857,NJBF000069196,723 N HARRISBURG AVE,Atlantic City,NJ,39.359142,-74.46328983,RES1,3001,,17,NE,1900,1900,3101,2,1,989.0713293,989.0713293,3505,NO,35.75,44.69,3,-2.08,6106,113.90288,123.620568,133.36528,139.777455,I,Above,Hip,0,5701,Wood,40.2219105,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1858,NJBF000068888,702 WARRENA RD,Atlantic City,NJ,39.35793599,-74.46334434,RES1,3001,,17,NE,1900,1900,3101,2,1,660.0799939,660.0799939,3505,YES,45.64,50.94,3,8.4,6106,113.916418,123.632569,133.377469,139.795391,I,Above,Gable,0,5701,Wood,48.28607867,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1859,NJBF000068835,570 N HARRISBURG AVE,Atlantic City,NJ,39.3577516,-74.46275565,RES1,3001,,17,NE,1963,1963,3101,2,1,1461.087605,1461.087605,3505,NO,37.37,45.65,3,7.02,6106,113.931571,123.645157,133.390944,139.807993,I,Above,Hip,0,5701,Wood,41.51085675,0,0,,,,1,1,,0.03,nav,1,1963,2,, 1860,NJBF000068598,619 N ANNAPOLIS AVE,Atlantic City,NJ,39.35720725,-74.46532308,RES1,3001,,17,NE,1900,1900,3101,1,1,1695.531333,1695.531333,3505,NO,26.68,34.95,3,7.21,6106,113.881918,123.604737,133.346966,139.773919,I,Above,Hip,0,5701,Wood,30.81184534,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1861,NJBF000069073,601 N TRENTON AVE,Atlantic City,NJ,39.35867111,-74.46163842,RES1,3001,,45,NE,1995,1995,3101,1,2,1550.410833,1550.410833,3505,NO,11.8,23.6,3,1.29,6106,113.944844,123.655448,133.402671,139.812163,I,Above,Gable,0,5701,Wood,17.69675807,0,0,,,,1,1,,0.03,nav,1,1995,1,, 1862,NJBF000068171,441 N HARRISBURG AVE,Atlantic City,NJ,39.35589303,-74.46071964,RES1,3001,,45,NE,1920,1920,3102,2,2,575.0412682,575.0412682,3505,NO,39.1,48.61,3,6.87,6106,113.999099,123.701906,133.450979,139.870267,I,Above,Flat,0,5701,Wood,43.8557438,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1863,NJBF000068749,540 N TRENTON AVE,Atlantic City,NJ,39.35753597,-74.46157917,RES1,3001,,45,NE,1900,1900,3101,2,2,502.8411217,502.8411217,3505,NO,27.02,34.14,3,0.3,6106,113.960027,123.668719,133.416257,139.830758,I,Above,Hip,0,5701,Wood,30.58315539,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1864,NJBF000068315,529 N DOVER AVE,Atlantic City,NJ,39.35633489,-74.46349671,RES1,3001,,17,NE,1900,1900,3101,1,1,2173.062436,2173.062436,3505,NO,11.91,19.45,3,-2.93,6106,113.932748,123.647056,133.392047,139.817849,I,Above,Flat,0,5701,Wood,15.68198832,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1865,NJBF000068717,600 N ANNAPOLIS AVE,Atlantic City,NJ,39.35748166,-74.46634586,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2859.20826,2859.20826,3505,NO,16.59,26.83,3,5.1,6106,113.856065,123.583336,133.324066,139.752505,I,Above,Hip,0,NaN,Wood,21.71123373,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1866,NJBF000068643,600 N ANNAPOLIS AVE,Atlantic City,NJ,39.3573105,-74.4660355,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2694.84063,2694.84063,3505,NO,28.12,34.17,3,5.5,6106,113.864989,123.590777,133.33198,139.7604,I,Above,Gable,0,NaN,Wood,31.14202861,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1867,NJBF000068597,600 N ANNAPOLIS AVE,Atlantic City,NJ,39.35720564,-74.46629145,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2301.510035,2301.510035,3505,NO,38.24,47.9,3,5.64,6106,113.860663,123.587303,133.32817,139.757773,I,Above,Gable,0,NaN,Wood,43.06974508,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1868,NJBF000068494,600 N ANNAPOLIS AVE,Atlantic City,NJ,39.3569345,-74.466073,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2205.262389,2205.262389,3505,NO,26.37,38.19,3,7.87,6106,113.868787,123.594154,133.335384,139.765684,I,Above,Gable,0,NaN,Wood,32.2781806,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1869,NJBF000068242,3910 FILBERT AVE,Atlantic City,NJ,39.35611527,-74.46161061,RES1,3001,,17,NE,1955,1955,3102,1,1,1203.678646,1203.678646,3505,NO,20.87,35.13,3,4.52,6106,113.976828,123.68344,133.431183,139.852271,I,Above,Flat,0,5701,Wood,27.99926739,0,0,,,,1,1,,0.03,nav,1,1955,1,, 1870,NJBF000068081,410 N TRENTON AVE,Atlantic City,NJ,39.35557383,-74.4598547,RES1,3001,,17,NE,1900,1900,3102,1,1,2372.666155,2372.666155,3505,NO,9.35,22.98,3,-2.83,6106,114.021995,123.72095,133.471334,139.889264,I,Above,Hip,0,5701,Wood,16.16572858,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1871,NJBF000069319,700 N ALBANY AVE,Atlantic City,NJ,39.35965392,-74.46194218,COM1,3003,641,NaN,ME,1969,0,3401,1,1,6459.442281,6459.442281,3507,NO,10.94,23.68,1,-0.88,6106,113.926217,123.639397,133.385954,139.791853,I,Above,Flat,0,NaN,Wood,17.30736346,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1872,NJBF000067741,416 N DOVER AVE,Atlantic City,NJ,39.35434359,-74.46243146,RES1,3001,,17,NE,1900,1900,3102,1,1,1162.926928,1162.926928,3505,NO,17.7,29.94,3,1.04,6106,113.980837,123.687751,133.434573,139.866329,I,Above,Flat,0,5701,Wood,23.82071077,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1873,NJBF000067784,402 HARBOR RD,Atlantic City,NJ,39.35448583,-74.46181192,RES1,3001,,16,NE,1900,1900,3102,1,1,919.8332652,919.8332652,3505,NO,18.88,29.96,3,6.35,6106,113.992639,123.697378,133.445069,139.874224,I,Above,Flat,0,5701,Wood,24.42049483,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1874,NJBF000067644,410 N RIDGEWAY RD,Atlantic City,NJ,39.35406015,-74.46266193,RES1,3001,,17,NE,1979,1979,3102,2,1,1369.674893,1369.674893,3505,NO,34.01,48.69,3,8.65,6106,113.979315,123.686653,133.433183,139.866966,I,Above,Flat,0,5701,Wood,41.34842432,0,0,,,,1,1,,0.03,nav,1,1979,2,, 1875,NJBF000067748,429 N ANNAPOLIS AVE,Atlantic City,NJ,39.35435735,-74.46308868,RES1,3001,,17,NE,1955,1955,3102,1,1,1770.002347,1770.002347,3505,NO,16.02,29.87,3,2.8,6106,113.966243,123.675751,133.421633,139.855372,I,Above,Hip,0,5701,Wood,22.94487774,0,0,,,,1,1,,0.03,nav,1,1955,1,, 1876,NJBF000069084,201 N CALIFORNIA AVE,Atlantic City,NJ,39.35870846,-74.4463255,RES3A,3001,,45,NE,1930,1930,3301,2,2,1334.152557,1334.152557,3505,NO,27.09,33.78,3,-0.65,6106,114.278475,123.932101,133.703031,140.058542,I,Above,Flat,0,5701,Wood,30.43114213,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1877,NJBF000072854,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37523708,-74.41938729,RES3D,3001,,NaN,ME,1969,0,3301,2,1,6182.070167,6182.070167,3507,NO,29.06,38.67,1,0.13,6106,114.66192,124.24991,134.066249,140.246626,I,Above,Hip,0,NaN,Wood,33.8654895,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1878,NJBF000072778,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37488296,-74.41941011,RES3C,3001,,NaN,ME,1969,0,3301,2,1,7451.526571,7451.526571,3505,NO,37.94,43.64,3,2.24,6106,114.665494,124.253168,134.069557,140.251199,I,Above,Flat,0,NaN,Wood,40.7938944,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1879,NJBF000068427,2404 ATLANTIC AVE,Atlantic City,NJ,39.35672104,-74.44071948,COM1,3003,100,NaN,ME,1969,0,3401,3,1,9929.939549,9929.939549,3507,YES,32.24,46.23,1,-0.59,6106,114.424428,124.055001,133.835376,140.175281,I,Above,Flat,0,NaN,Wood,39.236137,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1880,NJBF000070134,420 N INDIANA AVE,Atlantic City,NJ,39.36597,-74.437395,RES1,3001,739,NaN,NE,1969,0,3101,3,1,3357.294325,3357.294325,3507,YES,53.22,63.33,1,0.71,6106,114.384374,124.017389,133.802272,140.093737,I,Above,Hip,0,5701,Wood,58.27155971,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1881,NJBF000070536,,Atlantic City,NJ,39.36749471,-74.42170829,RES1,3001,,NaN,NE,1969,0,3102,2,1,2557.813902,2557.813902,3505,NO,20.29,27.86,3,-1.45,6106,114.702716,124.287998,134.101462,140.318057,I,Above,Hip,0,5701,Wood,24.07282803,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1882,NJBF000070562,,Atlantic City,NJ,39.3676065,-74.421808,RES1,3001,,NaN,NE,1969,0,3102,2,1,1757.575733,1757.575733,3505,NO,34.49,43.63,3,8.6,6106,114.699259,124.284996,134.098252,140.31495,I,Above,Hip,0,5701,Wood,39.06132889,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1883,NJBF000070593,,Atlantic City,NJ,39.36772732,-74.42187858,RES1,3001,,NaN,NE,1969,0,3102,2,1,2449.952407,2449.952407,3505,NO,37.24,51.1,3,4.08,6106,114.696325,124.282442,134.095543,140.31218,I,Above,Hip,0,5701,Wood,44.16874157,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1884,NJBF000070675,,Atlantic City,NJ,39.36802515,-74.42113127,RES1,3001,,NaN,NE,1969,0,3102,2,1,2526.711245,2526.711245,3505,NO,37.21,48.84,3,8.51,6106,114.708749,124.293033,134.107524,140.319662,I,Above,Hip,0,5701,Wood,43.02421168,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1885,NJBF000066748,119 N RICHMOND AVE,Atlantic City,NJ,39.35065674,-74.46137336,RES3A,3001,,17,NE,1900,1900,3301,2,1,2111.243737,2111.243737,3505,YES,29.52,41.28,3,1.26,6106,114.050419,123.746669,133.49533,139.940382,I,Above,Flat,0,5701,Wood,35.39869989,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1886,NJBF000072862,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.3752692,-74.43109879,RES3D,3001,,NaN,ME,1969,0,3301,1,1,6581.095267,6581.095267,3507,NO,15.67,21.4,1,-0.95,6106,114.411696,124.03464,133.828445,140.059844,I,Above,Flat,0,NaN,Wood,18.53246,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1887,NJBF000072045,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37241252,-74.43058119,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5574.822475,5574.822475,3505,NO,24.67,33.14,3,2.5,6106,114.455535,124.074049,133.8697,140.109156,I,Above,Gable,0,NaN,Wood,28.9074254,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1888,NJBF000072089,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37255655,-74.4313429,RES3C,3004,,NaN,ME,1969,0,3301,1,1,5996.826246,5996.826246,3505,NO,23.34,36.93,3,4.16,6106,114.43754,124.058593,133.852788,140.094938,I,Above,Gable,0,NaN,Wood,30.13798427,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1889,NJBF000072176,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37279064,-74.43149526,RES3C,3004,,NaN,ME,1969,0,3301,2,1,6554.359592,6554.359592,3505,NO,34,40.13,3,8.82,6106,114.431584,124.053358,133.847203,140.089149,I,Above,Gable,0,NaN,Wood,37.06402289,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1890,NJBF000072257,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37305267,-74.43176713,RES3C,3004,,NaN,ME,1969,0,3301,1,1,5717.7708,5717.7708,3505,NO,17.03,28.34,3,6.46,6106,114.422737,124.045633,133.838896,140.081033,I,Above,Gable,0,NaN,Wood,22.6866594,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1891,NJBF000072363,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37340374,-74.43141423,RES3C,3004,,NaN,ME,1969,0,3301,2,1,7424.312868,7424.312868,3505,NO,37.77,44.77,3,7.18,6106,114.426272,124.048413,133.842225,140.081629,I,Above,Gable,0,NaN,Wood,41.26923891,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1892,NJBF000072534,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37401161,-74.42993437,RES3C,3004,,NaN,ME,1969,0,3301,1,1,6788.722602,6788.722602,3505,NO,14.85,28.62,3,3.76,6106,114.451006,124.069142,133.865532,140.096562,I,Above,Gable,0,NaN,Wood,21.73552062,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1893,NJBF000072530,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37400631,-74.43089481,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4043.71469,4043.71469,3505,NO,39.68,49.2,3,1.64,6106,114.430491,124.051606,133.846199,140.08128,I,Above,Gable,0,NaN,Wood,44.43747116,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1894,NJBF000072658,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37442906,-74.43024102,RES3C,3004,,NaN,ME,1969,0,3301,1,1,5678.050588,5678.050588,3505,NO,22.07,27.81,3,3.39,6106,114.439658,124.059153,133.854837,140.085673,I,Above,Gable,0,NaN,Wood,24.9406626,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1895,NJBF000072433,351 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37365768,-74.41559772,RES3E,3003,29,NaN,E,1969,0,3305,6,1,50772.40347,50772.40347,3507,YES,87.39,92.93,1,-0.67,6106,114.760511,124.335988,134.160254,140.327986,I,Above,Flat,0,NaN,Wood,90.15643265,0,0,,,,2,2,,0.03,nav,1,1969,6,, 1896,NJBF000067789,102 S BELLEVUE AVE,Atlantic City,NJ,39.3545102,-74.44145792,RES3A,3004,,45,NE,1900,1900,3301,3,2,6884.077121,6884.077121,3505,YES,35.9,43.54,3,-0.08,6106,114.435853,124.06516,133.844378,140.19561,I,Above,Flat,0,5701,Wood,39.72064079,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1897,NJBF000070058,133 S SEASIDE AVE,Atlantic City,NJ,39.36565257,-74.41191067,RES3A,3001,,45,NE,1910,1910,3301,3,3,1233.168916,1233.168916,3505,YES,35.4,49.16,3,1.16,6106,114.932786,124.486806,134.319608,140.493989,I,Above,Flat,0,5701,Wood,42.27861314,0,0,,,,1,1,,0.03,nav,1,1910,3,, 1898,NJBF000068971,29 N GEORGIA AVE RR,Atlantic City,NJ,39.35821586,-74.44077685,RES3B,3001,,17,ME,1910,1910,3301,2,1,1297.193731,1297.193731,3505,YES,31.7,45.84,3,6.64,6106,114.404782,124.038039,133.818216,140.152821,I,Above,Flat,0,NaN,Wood,38.77142057,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1899,NJBF000067403,101 N ST DAVIDS PL,Atlantic City,NJ,39.35334344,-74.45540162,RES3B,3001,,27,E,1925,1925,3303,2,2,677.4251046,677.4251046,3507,YES,35.94,43.64,1,0.32,6106,114.147181,123.825356,133.582583,139.994764,I,Above,Flat,0,NaN,Wood,39.79209116,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1900,NJBF000068476,112 N IOWA AVE,Atlantic City,NJ,39.35688812,-74.44723582,RES3A,3001,,45,NE,1920,1920,3301,2,2,1275.442729,1275.442729,3505,NO,43.47,51.77,3,7.17,6106,114.281048,123.935037,133.704688,140.071011,I,Above,Hip,0,5701,Wood,47.62074476,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1901,NJBF000067662,318 N TRENTON AVE,Atlantic City,NJ,39.354097,-74.4588765,RES1,3001,,45,NE,1900,1900,3102,2,2,1159.578665,1159.578665,3505,YES,36.41,42.73,3,-0.52,6106,114.061778,123.75451,133.50651,139.927751,I,Above,Flat,0,5701,Wood,39.56680008,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1902,NJBF000067499,307 N ELBERON AVE,Atlantic City,NJ,39.3536653,-74.46012067,RES1,3001,,16,NE,1900,1900,3102,2,1,1273.334349,1273.334349,3505,NO,27.5,40.24,3,3.47,6106,114.039942,123.736728,133.486957,139.914317,I,Above,Gable,0,5701,Wood,33.86783851,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1903,NJBF000069588,1814 GARFIELD AVE,Atlantic City,NJ,39.3619085,-74.435068,COM1,3003,,NaN,ME,1969,0,3401,1,1,918.0833488,918.0833488,3507,NO,13.78,24.59,1,1.05,6106,114.483128,124.102709,133.89235,140.188835,I,Above,Flat,0,NaN,Wood,19.18319646,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1904,NJBF000068425,11 N TEXAS AVE,Atlantic City,NJ,39.35671988,-74.44319456,RES3B,3001,,45,ME,1930,1930,3301,4,3,544.4471114,544.4471114,3505,YES,54.22,64.64,3,-2.43,6106,114.370819,124.010088,133.786343,140.136776,I,Above,Flat,0,NaN,Wood,59.42635346,0,0,,,,1,1,,0.03,nav,1,1930,4,, 1905,NJBF000067659,317 N HARRISBURG AVE,Atlantic City,NJ,39.35409019,-74.4592785,RES1,3001,,16,NE,1900,1900,3102,2,1,1175.541109,1175.541109,3505,YES,36.78,48.73,3,-1.7,6106,114.053088,123.747351,133.498763,139.921397,I,Above,Hip,0,5701,Wood,42.75185359,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1906,NJBF000066571,132 S PROVIDENCE AVE,Atlantic City,NJ,39.35011386,-74.45135264,RES4,3003,,NaN,E,1969,0,3404,6,1,5913.778319,5913.778319,3507,NO,92.35,105.29,1,0.25,6106,114.276246,123.933239,133.696686,140.106355,I,Above,Flat,0,NaN,Wood,98.8224302,0,0,,,,2,2,,0.03,nav,1,1969,6,, 1907,NJBF000067405,3601 WINCHESTER AVE,Atlantic City,NJ,39.35335103,-74.45501746,RES3B,3001,29,NaN,E,1969,0,3303,3,1,1242.292562,1242.292562,3507,YES,44.42,56.36,1,2.79,6106,114.155489,123.832222,133.590028,140.000754,I,Above,Flat,0,NaN,Wood,50.38937342,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1908,NJBF000071694,316 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37130866,-74.42009149,RES1,3001,,17,NE,1999,1999,3102,2,1,1030.764403,1030.764403,3505,NO,26.08,37.17,3,2.87,6106,114.692362,124.277856,134.093762,140.290266,I,Above,Hip,0,5701,Wood,31.62525214,0,0,,,,1,1,,0.03,nav,1,1999,2,, 1909,NJBF000071623,,Atlantic City,NJ,39.37108833,-74.42539738,RES1,3001,,NaN,NE,1969,0,3102,2,1,814.3990521,814.3990521,3505,NO,33.7,47.93,3,-2.17,6106,114.581812,124.182858,133.988599,140.210107,I,Above,Hip,0,5701,Wood,40.81588234,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1910,NJBF000067096,4219 SOUTH BLVD,Atlantic City,NJ,39.35207356,-74.46238283,RES1,3001,,27,NE,1900,1900,3102,2,2,1387.261423,1387.261423,3505,YES,32.19,39.49,3,5.25,6106,114.010354,123.713143,133.460278,139.902274,I,Above,Flat,0,5701,Wood,35.8440333,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1911,NJBF000071340,350 N DELAWARE AVE,Atlantic City,NJ,39.3702755,-74.4241805,RES1,3001,,33,NE,1930,1900,3102,2,1,2551.234884,2551.234884,3505,YES,21.65,27.15,3,-0.27,6106,114.61726,124.213639,134.021876,140.240659,I,Above,Gable,0,5701,Wood,24.39776493,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1912,NJBF000068630,2909 FAIRMOUNT AVE,Atlantic City,NJ,39.35728014,-74.44942346,RES3A,3001,,27,NE,1910,1910,3301,2,2,1824.989419,1824.989419,3507,YES,23.73,34.84,1,2.12,6106,114.228664,123.89123,133.657341,140.030674,I,Above,Gable,0,5701,Wood,29.28348617,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1913,NJBF000068213,3118 FAIRMOUNT AVE,Atlantic City,NJ,39.356024,-74.4515265,RES3A,3001,,45,NE,1920,1920,3301,2,4,1482.905718,1482.905718,3505,NO,37.43,48.13,3,-0.5,6106,114.198365,123.866613,133.629546,140.016049,I,Above,Hip,0,5701,Wood,42.78221971,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1914,NJBF000069288,227 N TEXAS AVE,Atlantic City,NJ,39.3595299,-74.44529782,RES3A,3001,,27,NE,1923,1923,3301,2,2,826.5258456,826.5258456,3505,YES,42.07,47.47,3,7.94,6106,114.29076,123.941986,133.714494,140.062684,I,Above,Flat,0,5701,Wood,44.76876942,0,0,,,,1,1,,0.03,nav,1,1923,2,, 1915,NJBF000069061,712 WISTERIA RD,Atlantic City,NJ,39.3586178,-74.4626784,RES1,3001,,17,NE,1916,1916,3101,1,1,1312.88463,1312.88463,3505,NO,14.55,27.6,3,2.2,6106,113.922689,123.637247,133.382965,139.795789,I,Above,Hip,0,5701,Wood,21.07428709,0,0,,,,1,1,,0.03,nav,1,1916,1,, 1916,NJBF000070483,1904 MAGELLAN AVE,Atlantic City,NJ,39.367329,-74.43995682,RES3B,3001,,NaN,ME,1900,0,3301,2,1,1384.447248,1384.447248,3505,YES,26.84,38.65,3,-2.7,6106,114.313039,123.956346,133.736433,140.033138,I,Above,Flat,0,5701,Wood,32.74692235,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1917,NJBF000067694,3407 WINCHESTER AVE,Atlantic City,NJ,39.35419873,-74.45330908,RES3B,3001,,45,E,1925,1925,3303,3,3,1350.503785,1350.503785,3507,NO,55.29,60.29,1,2.98,6106,114.182165,123.853958,133.614297,140.01509,I,Above,Hip,0,NaN,Wood,57.7920707,0,0,,,,1,1,,0.03,nav,1,1925,3,, 1918,NJBF000069886,208 N NEW YORK AVE,Atlantic City,NJ,39.36478155,-74.43172247,RES3D,3004,,NaN,E,1969,0,3303,3,1,782.2405812,782.2405812,3505,NO,53.94,65.91,3,7.71,6106,114.520617,124.133377,133.928599,140.200141,I,Above,Flat,0,NaN,Wood,59.92446164,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1919,NJBF000069301,229 N TEXAS AVE,Atlantic City,NJ,39.35958762,-74.44534072,RES3A,3001,,27,NE,1900,1900,3301,2,2,1398.443415,1398.443415,3505,YES,29.89,40.11,3,0.12,6106,114.28912,123.940588,133.713018,140.061151,I,Above,Flat,0,5701,Wood,35.00107843,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1920,NJBF000069044,732 N HARRISBURG AVE,Atlantic City,NJ,39.35851045,-74.46343202,RES1,3001,100,NaN,NE,1969,0,3101,2,1,3608.480356,3608.480356,3505,NO,23.99,38.06,3,-2.71,6106,113.907468,123.624804,133.369454,139.784967,I,Above,Flat,0,5701,Wood,31.02360737,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1921,NJBF000068857,209 N BRIGHTON AVE,Atlantic City,NJ,39.35780796,-74.44906164,RES3A,3001,,45,NE,1910,1910,3301,2,2,2302.350077,2302.350077,3505,YES,39.06,51.61,3,2.29,6106,114.230031,123.892123,133.658747,140.028551,I,Above,Hip,0,5701,Wood,45.3361307,0,0,,,,1,1,,0.03,nav,1,1910,2,, 1922,NJBF000069949,328 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36516406,-74.43529832,RES1,3001,,17,NE,1964,1964,3101,1,1,1194.000249,1194.000249,3507,NO,21.14,36.03,1,2.13,6106,114.439138,124.064124,133.852872,140.138526,I,Above,Gable,0,5701,Wood,28.58311238,0,0,,,,1,1,,0.03,nav,1,1964,1,, 1923,NJBF000067390,327 N DOVER AVE,Atlantic City,NJ,39.35331605,-74.46100397,RES1,3001,,18,NE,1953,1953,3102,2,1,1726.729285,1726.729285,3505,NO,46.89,54.91,3,8.71,6106,114.024968,123.724573,133.473562,139.905416,I,Above,Flat,0,5701,Wood,50.89732412,0,0,,,,1,1,,0.03,nav,1,1953,2,, 1924,NJBF000072507,515 SEWELL AVE,Atlantic City,NJ,39.37392214,-74.42263037,RES1,3001,,45,NE,1930,1930,3102,2,2,2452.884944,2452.884944,3505,YES,35.46,45.49,3,8.91,6106,114.608036,124.20402,134.014368,140.213856,I,Above,Flat,0,5701,Wood,40.47760262,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1925,NJBF000072387,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37347895,-74.42896355,RES3C,3004,,NaN,ME,1969,1968,3301,1,1,3284.450065,3284.450065,3505,NO,14.33,20.93,3,-0.07,6106,114.477887,124.092491,133.890861,140.119666,I,Above,Hip,0,NaN,Wood,17.62874548,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1926,NJBF000072470,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37377783,-74.42825118,RES3C,3004,,NaN,ME,1969,1968,3301,2,1,2646.629006,2646.629006,3505,NO,28.47,39.42,3,6.3,6106,114.489706,124.102426,133.902052,140.126756,I,Above,Hip,0,NaN,Wood,33.94787735,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1927,NJBF000072416,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37357865,-74.42813001,RES3D,3004,,NaN,ME,1969,1968,3301,2,1,2964.968126,2964.968126,3505,NO,27.99,35.34,3,0.03,6106,114.494581,124.106725,133.906638,140.13152,I,Above,Flat,0,NaN,Wood,31.66398691,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1928,NJBF000072241,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37300325,-74.4278384,RES3C,3004,,NaN,ME,1969,1968,3301,1,1,4673.859712,4673.859712,3505,NO,17.71,27.58,3,5.48,6106,114.507456,124.118102,133.91873,140.144367,I,Above,Gable,0,NaN,Wood,22.64491319,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1929,NJBF000072153,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37273641,-74.42778851,RES3C,3004,,NaN,ME,1969,1968,3301,2,1,3415.140027,3415.140027,3505,NO,41,49.61,3,6.73,6106,114.511583,124.121793,133.922587,140.148944,I,Above,Gable,0,NaN,Wood,45.3052367,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1930,NJBF000072307,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37322973,-74.42826235,RES3C,3004,,NaN,ME,1969,1968,3301,1,1,6472.210886,6472.210886,3505,NO,15.66,28.25,3,3.5,6106,114.495772,124.107958,133.907722,140.134394,I,Above,Flat,0,NaN,Wood,21.95417771,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1931,NJBF000072321,627 SEWELL AVE,Atlantic City,NJ,39.37327646,-74.42418893,RES1,3001,,16,NE,1910,1910,3102,1,1,1625.241551,1625.241551,3505,NO,19.93,29.84,3,7.61,6106,114.582247,124.182148,133.989657,140.198316,I,Above,Hip,0,5701,Wood,24.88378277,0,0,,,,1,1,,0.03,nav,1,1910,1,, 1932,NJBF000072135,450 N CONNECTICUT AVE,Atlantic City,NJ,39.37266581,-74.42263463,RES1,3001,,16,NE,1900,1900,3102,1,1,1208.236688,1208.236688,3505,NO,9.75,15.66,3,-2.16,6106,114.622427,124.217024,134.027684,140.231406,I,Above,Hip,0,5701,Wood,12.70594212,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1933,NJBF000072151,460 N CONNECTICUT AVE,Atlantic City,NJ,39.37273267,-74.42268283,RES1,3001,,17,NE,1900,1900,3102,2,1,1445.658574,1445.658574,3505,NO,31.92,37.02,3,-1.96,6106,114.620629,124.215445,134.025995,140.22971,I,Above,Hip,0,5701,Wood,34.46861792,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1934,NJBF000072678,739 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37448602,-74.4221975,RES1,3001,,17,NE,2002,2002,3102,3,1,1711.079172,1711.079172,3505,NO,34.69,41.62,3,-1.56,6106,114.610772,124.206093,134.017129,140.212777,I,Above,Hip,0,5701,Wood,38.15872089,0,0,,,,1,1,,0.03,nav,1,2002,3,, 1935,NJBF000072421,508 SEWELL AVE,Atlantic City,NJ,39.373598,-74.42247,RES1,3001,,17,NE,1900,1900,3102,2,1,1548.63765,1548.63765,3505,YES,23.87,32.22,3,-1.45,6106,114.615177,124.210335,134.021078,140.220931,I,Above,Hip,0,5701,Wood,28.0472312,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1936,NJBF000071119,501 N TENNESSEE AVE,Atlantic City,NJ,39.36948936,-74.43261506,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,4563.507637,4563.507637,3505,NO,39.83,45.85,3,1.92,6106,114.445847,124.067544,133.860212,140.11877,I,Above,Flat,0,NaN,Wood,42.84202382,0,0,,,,1,1,,0.03,nav,1,1950,3,, 1937,NJBF000071035,501 N TENNESSEE AVE,Atlantic City,NJ,39.36920288,-74.43242289,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,4882.304179,4882.304179,3505,NO,64,78.28,3,8.74,6106,114.453315,124.074058,133.867146,140.125922,I,Above,Flat,0,NaN,Wood,71.14211776,0,0,,,,1,1,,0.03,nav,1,1950,3,, 1938,NJBF000071078,441 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36933416,-74.43099024,RES1,3001,,17,NE,2006,2006,3103,1,1,2021.938831,2021.938831,3505,NO,15.57,22.11,3,-0.91,6106,114.482543,124.098873,133.894557,140.146737,I,Above,Hip,0,5701,Wood,18.84146795,0,0,,,,1,1,,0.03,nav,1,2006,1,, 1939,NJBF000072525,547 N CONNECTICUT AVE,Atlantic City,NJ,39.37399359,-74.42304965,RES1,3001,,45,NE,1900,1900,3102,2,2,855.0854456,855.0854456,3505,YES,32.37,45.91,3,1.53,6106,114.598258,124.19556,134.005074,140.206209,I,Above,Flat,0,5701,Wood,39.13979893,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1940,NJBF000070355,711 N MICHIGAN AVE,Atlantic City,NJ,39.36682479,-74.44059943,RES3B,3001,,45,ME,1900,1900,3301,2,2,822.6756574,822.6756574,3505,YES,34.66,49.32,3,4.41,6106,114.305105,123.94998,133.729071,140.030253,I,Above,Flat,0,5701,Wood,41.99347159,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1941,NJBF000073128,900 BEACH THOROFARE,Atlantic City,NJ,39.37804917,-74.42361397,GOV2,3001,,NaN,E,1969,0,3401,2,1,3370.611993,3370.611993,3507,NO,32.78,37.97,1,-0.91,6102,114.540009,124.142947,133.95012,140.14005,I,Above,Flat,0,NaN,Wood,35.37361894,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1942,NJBF000072694,609 N CONNECTICUT AVE,Atlantic City,NJ,39.3745715,-74.423397,RES1,3001,,17,NE,2000,2000,3102,2,1,1190.334136,1190.334136,3505,NO,29.03,40.18,3,-2.12,6106,114.584223,124.183163,133.991845,140.192584,I,Above,Hip,0,5701,Wood,34.60353185,0,0,,,,1,1,,0.03,nav,1,2000,2,, 1943,NJBF000072053,440 N CONNECTICUT AVE,Atlantic City,NJ,39.37243848,-74.42249385,RES1,3001,,17,NE,1900,1900,3102,1,1,1592.677336,1592.677336,3505,NO,17.86,28.36,3,-0.89,6106,114.628072,124.22199,134.032977,140.236821,I,Above,Hip,0,5701,Wood,23.11306153,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1944,NJBF000072076,446 N CONNECTICUT AVE,Atlantic City,NJ,39.372516,-74.422526,RES1,3001,,16,NE,1930,1930,3102,2,1,1349.547552,1349.547552,3505,NO,32.17,45.52,3,-1.26,6106,114.626487,124.220589,134.031496,140.235224,I,Above,Hip,0,5701,Wood,38.84743031,0,0,,,,1,1,,0.03,nav,1,1930,2,, 1945,NJBF000071979,501 N MARYLAND AVE,Atlantic City,NJ,39.37218819,-74.42668832,RES1,3001,,NaN,NE,1969,0,3102,1,1,1576.573722,1576.573722,3505,NO,15.1,21.94,3,-1.91,6106,114.541458,124.147699,133.950721,140.174175,I,Above,Flat,0,5701,Wood,18.51749631,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1946,NJBF000071835,501 N MARYLAND AVE,Atlantic City,NJ,39.3717715,-74.426393,RES1,3001,,NaN,NE,1969,0,3102,1,1,1087.738228,1087.738228,3505,NO,17.41,32.09,3,2.05,6106,114.552583,124.157455,133.961142,140.184732,I,Above,Flat,0,5701,Wood,24.75177002,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1947,NJBF000067551,357 N DOVER AVE,Atlantic City,NJ,39.35381198,-74.46141867,RES1,3001,,17,NE,1900,1900,3102,1,1,2521.847941,2521.847941,3505,NO,8.84,21.09,3,-1.72,6106,114.009666,123.711737,133.460075,139.891039,I,Above,Hip,0,5701,Wood,14.96521117,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1948,NJBF000067885,472 N ANNAPOLIS AVE,Atlantic City,NJ,39.35490989,-74.46410759,RES1,3001,,16,NE,1900,1900,3102,1,1,1206.530809,1206.530809,3505,NO,24.34,39.19,3,7.05,6106,113.936996,123.651416,133.395775,139.830024,I,Above,Flat,0,5701,Wood,31.76461752,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1949,NJBF000068387,507 N ELBERON AVE,Atlantic City,NJ,39.35658207,-74.46246911,RES1,3001,,17,NE,1925,1925,3101,1,1,1318.131855,1318.131855,3505,NO,19.03,31.67,3,6.91,6106,113.95225,123.662932,133.409356,139.830939,I,Above,Hip,0,5701,Wood,25.3504516,0,0,,,,1,1,,0.03,nav,1,1925,1,, 1950,NJBF000070307,1812 REV JJ WALTERS,Atlantic City,NJ,39.3666365,-74.438197,RES3B,3001,,45,ME,1900,1900,3301,2,2,846.7784988,846.7784988,3505,NO,34.8,40.81,3,7.11,6106,114.359197,123.995739,133.779068,140.071326,I,Above,Gable,0,NaN,Wood,37.80289019,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1951,NJBF000067922,447 N DOVER AVE,Atlantic City,NJ,39.35504105,-74.46239576,RES1,3001,,45,NE,1900,1900,3102,1,2,1662.984289,1662.984289,3505,NO,12.92,25.09,3,-2.14,6106,113.972928,123.680861,133.427637,139.856083,I,Above,Hip,0,5701,Wood,19.0021816,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1952,NJBF000070758,624 N KENTUCKY AVE,Atlantic City,NJ,39.36832143,-74.43559918,RES1,3001,,33,NE,1900,1900,3101,2,1,1979.494312,1979.494312,3505,YES,33.3,38.89,3,8.35,6106,114.395355,124.025344,133.812895,140.088204,I,Above,Flat,0,5701,Wood,36.09490392,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1953,NJBF000071032,644 N NEW YORK AVE,Atlantic City,NJ,39.36919226,-74.43466005,RES1,3001,,17,NE,1962,1962,3101,2,1,1394.082411,1394.082411,3505,NO,35.89,43.76,3,6.57,6106,114.405363,124.033312,133.822341,140.09055,I,Above,Hip,0,5701,Wood,39.82326522,0,0,,,,1,1,,0.03,nav,1,1962,2,, 1954,NJBF000070653,601-659 KENTUCKY AVE,Atlantic City,NJ,39.3679245,-74.4343425,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5236.278526,5236.278526,3505,NO,40.57,53.08,3,8.65,6106,114.427056,124.052457,133.842358,140.11388,I,Above,Flat,0,NaN,Wood,46.82619235,0,0,,,,1,1,,0.03,nav,1,1969,2,, 1955,NJBF000070966,810 ARIFF AVE,Atlantic City,NJ,39.36900096,-74.43870023,RES1,3001,,33,NE,1900,1900,3102,2,1,1694.277356,1694.277356,3505,YES,25.35,35.63,3,-2.85,6106,114.320574,123.961603,133.743467,140.028808,I,Above,Flat,0,5701,Wood,30.48701632,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1956,NJBF000070357,524 N INDIANA AVE,Atlantic City,NJ,39.36682846,-74.43790422,RES3B,3001,,17,ME,1920,1920,3301,2,1,1275.517699,1275.517699,3505,NO,25.68,38.69,3,-1.5,6106,114.363251,123.999051,133.782853,140.073195,I,Above,Gable,0,NaN,Wood,32.18575463,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1957,NJBF000072326,1815 BEACH AVE,Atlantic City,NJ,39.3733055,-74.4530815,RES1,3001,,17,NE,1966,1966,3101,1,1,1432.831753,1432.831753,3505,NO,18.68,31.79,3,5.78,6106,113.959577,123.654286,133.410096,139.729127,I,Above,Gable,0,5701,Wood,25.23424816,0,0,,,,1,1,,0.03,nav,1,1966,1,, 1958,NJBF000072629,1815 EMERSON AVE,Atlantic City,NJ,39.37433257,-74.45260516,RES1,3001,,16,NE,1900,1900,3101,1,1,1010.334167,1010.334167,3505,NO,17.22,24.91,3,2.93,6106,113.958312,123.65206,133.408211,139.721444,I,Above,Gable,0,5701,Wood,21.06373719,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1959,NJBF000072807,1823 N MICHIGAN AVE,Atlantic City,NJ,39.37501312,-74.45290497,RES1,3001,,17,NE,1900,1900,3101,2,1,1149.57317,1149.57317,3505,NO,28.03,34.13,3,0.94,6106,113.944143,123.639409,133.394757,139.706054,I,Above,Gable,0,5701,Wood,31.08341294,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1960,NJBF000071594,1611 N MISSISSIPPI AVE,Atlantic City,NJ,39.37103104,-74.451094,RES1,3001,,17,NE,2016,2016,3101,2,1,2293.188443,2293.188443,3505,NO,35.95,43.74,3,3.52,6106,114.028721,123.714502,133.474509,139.796781,I,Above,Gable,0,5701,Wood,39.84321046,0,0,,,,1,1,,0.03,nav,1,2016,2,, 1961,NJBF000070595,2005 GRANT AVE,Atlantic City,NJ,39.367733,-74.441691,RES3B,3001,,17,ME,1915,1915,3301,2,1,728.5727122,728.5727122,3505,YES,33.04,44.93,3,5.37,6106,114.270826,123.92049,133.697462,139.999409,I,Above,Flat,0,5701,Wood,38.98157663,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1962,NJBF000070892,921 N OHIO AVE,Atlantic City,NJ,39.36877652,-74.44030323,RES1,3001,,17,NE,1900,1900,3102,1,1,1297.873134,1297.873134,3505,NO,18.11,24.88,3,4.77,6106,114.288594,123.934744,133.713852,140.006365,I,Above,Hip,0,5701,Wood,21.49309025,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1963,NJBF000072773,1900 N MICHIGAN AVE,Atlantic City,NJ,39.3748755,-74.4535955,RES1,3001,,17,NE,1971,1971,3101,2,1,1009.136479,1009.136479,3505,NO,19.34,25.89,3,-2.21,6106,113.930667,123.628301,133.382565,139.696538,I,Above,Flat,0,5701,Wood,22.61296637,0,0,,,,1,1,,0.03,nav,1,1971,2,, 1964,NJBF000071935,2211 KUEHNLE AVE,Atlantic City,NJ,39.3720347,-74.45221461,RES1,3001,,17,NE,1929,1929,3101,2,1,2087.754334,2087.754334,3505,YES,42.87,48.38,3,3.94,6106,113.99286,123.68349,133.441254,139.762929,I,Above,Gable,0,5701,Wood,45.62751147,0,0,,,,1,1,,0.03,nav,1,1929,2,, 1965,NJBF000070257,508 N INDIANA AVE,Atlantic City,NJ,39.36645864,-74.43764622,RES3B,3001,,17,ME,1915,1915,3301,2,1,1039.123318,1039.123318,3505,NO,35.97,50.02,3,8.58,6106,114.373173,124.00765,133.791988,140.082658,I,Above,Flat,0,NaN,Wood,42.99252286,0,0,,,,1,1,,0.03,nav,1,1915,2,, 1966,NJBF000070033,1915 HUMMOCK AVE,Atlantic City,NJ,39.36556755,-74.43922964,RES3B,3001,,15,ME,2008,2008,3301,2,1,800.2967056,800.2967056,3505,NO,20.22,31.02,3,-1.23,6106,114.349541,123.988206,133.769959,140.070451,I,Above,Flat,0,NaN,Wood,25.61887289,0,0,,,,1,1,,0.03,nav,1,2008,2,, 1967,NJBF000068972,670 CAROLYN TERR,Atlantic City,NJ,39.35822525,-74.46604869,RES1,3001,,NaN,NE,1969,0,3101,1,1,1967.45644,1967.45644,3505,NO,19.56,30.63,3,4.19,6106,113.85349,123.58068,133.321661,139.745779,I,Above,Gable,0,5701,Wood,25.09201249,0,0,,,,1,1,,0.03,nav,1,1969,1,, 1968,NJBF000070174,1809 HUMMOCK AVE,Atlantic City,NJ,39.36608457,-74.43783722,RES3B,3001,738,NaN,ME,1969,0,3301,3,1,1816.354186,1816.354186,3505,YES,39.89,49.08,3,1.9,6106,114.373478,124.008119,133.792201,140.085056,I,Above,Hip,0,NaN,Wood,44.48878018,0,0,,,,1,1,,0.03,nav,1,1969,3,, 1969,NJBF000072797,1819 N MICHIGAN AVE,Atlantic City,NJ,39.37496626,-74.45273178,RES1,3001,,17,NE,1900,1900,3101,1,1,1157.648234,1157.648234,3505,NO,11.86,17.01,3,1.29,6106,113.948429,123.643051,133.398708,139.709673,I,Above,Gable,0,5701,Wood,14.43551172,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1970,NJBF000071070,810 N DR MARTIN LUTHER K,Atlantic City,NJ,39.3692917,-74.43806635,RES1,3001,,17,NE,1962,1962,3102,2,1,1230.735583,1230.735583,3505,NO,36.18,50.18,3,1.04,6106,114.330849,123.970097,133.753005,140.034717,I,Above,Gable,0,5701,Wood,43.18076393,0,0,,,,1,1,,0.03,nav,1,1962,2,, 1971,NJBF000070846,918 N OHIO AVE,Atlantic City,NJ,39.36861917,-74.44066084,RES3B,3001,,17,ME,1900,1900,3301,1,1,1025.608133,1025.608133,3505,NO,17.02,31.3,3,0.72,6106,114.282709,123.929889,133.708414,140.002932,I,Above,Flat,0,5701,Wood,24.16013449,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1972,NJBF000072740,1911 EMERSON AVE,Atlantic City,NJ,39.37475146,-74.45408893,RES1,3001,,17,NE,1900,1900,3101,2,1,1060.2548,1060.2548,3505,NO,35.61,43.04,3,-2.91,6106,113.921355,123.620666,133.374174,139.690158,I,Above,Flat,0,5701,Wood,39.32338931,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1973,NJBF000072665,1542 N OHIO AVE,Atlantic City,NJ,39.37444361,-74.44796889,RES1,3001,,17,NE,1900,1900,3102,2,1,1754.119298,1754.119298,3505,NO,34.74,49.5,3,0.09,6106,114.057632,123.735223,133.499135,139.796984,I,Above,Gable,0,5701,Wood,42.12124062,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1974,NJBF000071220,817 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36980218,-74.43777304,RES1,3001,,17,NE,2003,2003,3101,2,1,1125.860165,1125.860165,3505,NO,18.52,29.82,3,-2.65,6106,114.331223,123.970066,133.753355,140.031973,I,Above,Gable,0,5701,Wood,24.17019268,0,0,,,,1,1,,0.03,nav,1,2003,2,, 1975,NJBF000072475,1625 EMERSON AVE,Atlantic City,NJ,39.37380428,-74.45049402,RES1,3001,,17,NE,1955,1955,3102,2,1,1226.688331,1226.688331,3505,NO,30.55,42.71,3,-2.23,6106,114.010126,123.696041,133.455945,139.764719,I,Above,Gable,0,5701,Wood,36.62711005,0,0,,,,1,1,,0.03,nav,1,1955,2,, 1976,NJBF000068978,709 WARRENA RD,Atlantic City,NJ,39.3582325,-74.463347,RES1,3001,,45,NE,1920,1920,3101,2,2,1056.541617,1056.541617,3505,NO,28.37,33.6,3,0.99,6106,113.91273,123.629329,133.374162,139.79072,I,Above,Flat,0,5701,Wood,30.98305082,0,0,,,,1,1,,0.03,nav,1,1920,2,, 1977,NJBF000072521,1915 MORNINGSIDE DR,Atlantic City,NJ,39.37398753,-74.44712573,RES1,3001,,17,NE,1900,1900,3102,1,1,2007.805658,2007.805658,3505,NO,23.22,34.77,3,4.93,6106,114.081053,123.755391,133.520931,139.817788,I,Above,Gable,0,5701,Wood,28.99920127,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1978,NJBF000072511,1522 MADISON AVE,Atlantic City,NJ,39.37394031,-74.44825924,RES1,3001,,45,NE,1900,1900,3102,2,2,1895.573991,1895.573991,3505,NO,33.51,43.57,3,-2.45,6106,114.057053,123.73527,133.498895,139.799769,I,Above,Gable,0,5701,Wood,38.53888689,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1979,NJBF000072245,2100 KUEHNLE AVE,Atlantic City,NJ,39.37302149,-74.45121244,RES1,3001,,17,NE,1955,1955,3102,1,1,1565.735934,1565.735934,3505,NO,26.67,38.05,3,8.6,6106,114.003421,123.691273,133.450301,139.764642,I,Above,Flat,0,5701,Wood,32.36119234,0,0,,,,1,1,,0.03,nav,1,1955,1,, 1980,NJBF000072448,1521 N MICHIGAN AVE,Atlantic City,NJ,39.37369314,-74.44809096,RES1,3001,,16,NE,1900,1900,3102,1,1,1232.877452,1232.877452,3505,NO,19.85,33.56,3,3.7,6106,114.063495,123.740939,133.50495,139.806269,I,Above,Gable,0,5701,Wood,26.70450633,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1981,NJBF000072191,1520 EMERSON AVE,Atlantic City,NJ,39.37284318,-74.44853541,RES1,3001,,17,NE,1954,1954,3102,1,1,1733.819309,1733.819309,3505,NO,23.49,37.8,3,5.8,6106,114.063537,123.741847,133.505442,139.811728,I,Above,Gable,0,5701,Wood,30.6432981,0,0,,,,1,1,,0.03,nav,1,1954,1,, 1982,NJBF000072860,1513 PENROSE AVE,Atlantic City,NJ,39.37525414,-74.44735126,RES1,3001,,17,NE,1925,1925,3101,2,1,780.7861832,780.7861832,3505,NO,30.35,36.68,3,3.25,6106,114.061874,123.737923,133.502553,139.795043,I,Above,Hip,0,5701,Wood,33.51943395,0,0,,,,1,1,,0.03,nav,1,1925,2,, 1983,NJBF000072179,2116 KUEHNLE AVE,Atlantic City,NJ,39.37279724,-74.45132211,RES1,3001,,17,NE,1955,1955,3102,1,1,1356.278735,1356.278735,3505,NO,21.3,35.66,3,2.31,6106,114.003579,123.691646,133.450582,139.766211,I,Above,Gable,0,5701,Wood,28.47995966,0,0,,,,1,1,,0.03,nav,1,1955,1,, 1984,NJBF000071246,1823 MARMORA AVE,Atlantic City,NJ,39.36991268,-74.44053388,RES3A,3001,,16,NE,2011,2011,3301,2,1,862.3276797,862.3276797,3505,NO,44.44,52.07,3,8.47,6106,114.270374,123.918539,133.696921,139.985956,I,Above,Gable,0,5701,Wood,48.25959194,0,0,,,,1,1,,0.03,nav,1,2011,2,, 1985,NJBF000072833,1458 ABSECON BLVD,Atlantic City,NJ,39.37512055,-74.44614184,RES1,3001,,16,NE,1978,1978,3101,1,1,1203.458972,1203.458972,3505,NO,16.63,29.13,3,-0.86,6106,114.089536,123.761353,133.528124,139.817053,I,Above,Hip,0,5701,Wood,22.88124022,0,0,,,,1,1,,0.03,nav,1,1978,1,, 1986,NJBF000072604,1508 N OHIO AVE,Atlantic City,NJ,39.37424363,-74.44732158,RES1,3001,,17,NE,1900,1900,3102,1,1,2574.347117,2574.347117,3505,NO,16.81,26.46,3,2.33,6106,114.073908,123.749118,133.514218,139.810703,I,Above,Hip,0,5701,Wood,21.63452794,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1987,NJBF000072818,1530 PENROSE AVE,Atlantic City,NJ,39.3750593,-74.44781644,RES1,3001,,17,NE,1900,1900,3101,2,1,979.2818531,979.2818531,3505,YES,33.46,38.57,3,3.81,6106,114.054003,123.731513,133.495429,139.790264,I,Above,Gable,0,5701,Wood,36.0117861,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1988,NJBF000072471,1418 N OHIO AVE,Atlantic City,NJ,39.3737828,-74.44587557,RES1,3001,,45,NE,1900,2017,3102,3,2,525.5303135,525.5303135,3505,YES,51.24,63.22,3,6.6,6106,114.110438,123.780324,133.548093,139.841479,I,Above,Gable,0,5701,Wood,57.23195801,0,0,,,,1,1,,0.03,nav,1,1900,3,, 1989,NJBF000072206,1524 EMERSON AVE,Atlantic City,NJ,39.37290406,-74.44873437,RES1,3001,,17,NE,1900,1900,3102,1,1,1685.2263,1685.2263,3505,NO,13.21,27.55,3,1.47,6106,114.058527,123.73758,133.500815,139.807518,I,Above,Gable,0,5701,Wood,20.37814728,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1990,NJBF000072599,2030 HAMILTON AVE,Atlantic City,NJ,39.37422166,-74.45347604,RES1,3001,,17,NE,1900,1900,3101,1,1,1542.490439,1542.490439,3505,NO,11.48,18.32,3,-2.23,6106,113.940635,123.637406,133.392164,139.708537,I,Above,Flat,0,5701,Wood,14.90027708,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1991,NJBF000071240,1721 MCKINLEY AVE,Atlantic City,NJ,39.36988257,-74.43893504,RES3A,3001,,45,NE,1954,1954,3301,2,2,2407.248006,2407.248006,3505,YES,37.58,47.85,3,8.33,6106,114.305228,123.948013,133.729219,140.012137,I,Above,Gable,0,5701,Wood,42.71518374,0,0,,,,1,1,,0.03,nav,1,1954,2,, 1992,NJBF000072824,1814 MADISON AVE,Atlantic City,NJ,39.37508019,-74.45224288,RES1,3001,,17,NE,1900,1900,3101,2,1,1059.068713,1059.068713,3505,NO,23.35,34.83,3,2.06,6106,113.957768,123.650735,133.407155,139.716136,I,Above,Gable,0,5701,Wood,29.09083536,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1993,NJBF000071969,1539 BEACH AVE,Atlantic City,NJ,39.3721537,-74.44898239,RES1,3001,,27,NE,1960,1960,3102,1,2,2146.595279,2146.595279,3505,NO,26.5,35.08,3,7.94,6106,114.061707,123.741005,133.504112,139.814727,I,Above,Flat,0,5701,Wood,30.79059098,0,0,,,,1,1,,0.03,nav,1,1960,1,, 1994,NJBF000072800,1440 ABSECON BLVD,Atlantic City,NJ,39.37498253,-74.44570269,RES1,3001,,45,NE,1900,1900,3102,2,2,1135.511837,1135.511837,3505,NO,29.75,38.65,3,7.98,6106,114.100589,123.770809,133.538397,139.826371,I,Above,Gable,0,5701,Wood,34.19805113,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1995,NJBF000072613,1911 N ARKANSAS AVE,Atlantic City,NJ,39.37427419,-74.4543899,RES1,3001,,17,NE,1900,1900,3101,2,1,1084.009048,1084.009048,3505,NO,26.21,35.4,3,0.07,6106,113.920176,123.620251,133.37348,139.69239,I,Above,Gable,0,5701,Wood,30.80353262,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1996,NJBF000072839,1818 MADISON AVE,Atlantic City,NJ,39.37514411,-74.4524326,RES1,3001,,17,NE,1900,1900,3101,1,1,1331.32519,1331.32519,3505,NO,19.75,33.01,3,7.94,6106,113.952923,123.646603,133.402678,139.711977,I,Above,Hip,0,5701,Wood,26.38017467,0,0,,,,1,1,,0.03,nav,1,1900,1,, 1997,NJBF000071352,901 N DR MARTIN LUTHER K,Atlantic City,NJ,39.3703125,-74.437918,RES1,3001,,17,NE,1900,1900,3101,2,1,743.677875,743.677875,3505,YES,37.43,52.43,3,2.34,6106,114.32217,123.962045,133.744933,140.022203,I,Above,Gable,0,5701,Wood,44.93372333,0,0,,,,1,1,,0.03,nav,1,1900,2,, 1998,NJBF000072540,1428 N OHIO AVE,Atlantic City,NJ,39.37403718,-74.44644299,RES1,3001,,17,NE,1929,1929,3102,2,1,1003.072147,1003.072147,3505,NO,33.93,43.97,3,0.03,6106,114.095284,123.767313,133.534006,139.828329,I,Above,Flat,0,5701,Wood,38.95205239,0,0,,,,1,1,,0.03,nav,1,1929,2,, 1999,NJBF000072402,2020 KUEHNLE AVE,Atlantic City,NJ,39.37353438,-74.45097249,RES1,3001,,17,NE,1955,1955,3101,1,1,1670.903419,1670.903419,3505,NO,20.22,33.12,3,3.28,6106,114.00281,123.690206,133.449422,139.760855,I,Above,Gable,0,5701,Wood,26.66856162,0,0,,,,1,1,,0.03,nav,1,1955,1,, 2000,NJBF000072281,1404 MADISON AVE,Atlantic City,NJ,39.373149,-74.44549,RES1,3001,,17,NE,1900,1900,3102,2,1,1129.835013,1129.835013,3505,NO,30.55,41.44,3,3.3,6106,114.126006,123.794052,133.56273,139.85731,I,Above,Gable,0,5701,Wood,35.99052991,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2001,NJBF000072870,1801 MADISON AVE,Atlantic City,NJ,39.37532611,-74.45188503,RES1,3001,,17,NE,1900,1900,3101,1,1,1299.669272,1299.669272,3505,NO,17.79,31.83,3,3.35,6106,113.962779,123.654642,133.41155,139.718393,I,Above,Gable,0,5701,Wood,24.81135925,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2002,NJBF000072744,1415 PENROSE AVE,Atlantic City,NJ,39.37476719,-74.44547634,RES1,3001,100,NaN,NE,1969,0,3102,2,1,1287.31797,1287.31797,3505,NO,31.43,38.07,3,5.25,6106,114.107939,123.777226,133.545295,139.833349,I,Above,Gable,0,5701,Wood,34.74791572,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2003,NJBF000072267,1521 EMERSON AVE,Atlantic City,NJ,39.37310353,-74.44818167,RES1,3001,,17,NE,2008,2008,3102,2,1,1442.351576,1442.351576,3505,NO,30.18,44.61,3,-0.37,6106,114.068217,123.74551,133.509601,139.813631,I,Above,Gable,0,5701,Wood,37.39432778,0,0,,,,1,1,,0.03,nav,1,2008,2,, 2004,NJBF000068329,460 N TRENTON AVE,Atlantic City,NJ,39.35638483,-74.46048828,RES1,3001,,17,NE,1900,1900,3102,2,1,1295.989767,1295.989767,3505,NO,35.44,42.28,3,-0.95,6106,113.9981,123.700795,133.450129,139.866453,I,Above,Gable,0,5701,Wood,38.85767539,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2005,NJBF000069249,643 N TRENTON AVE,Atlantic City,NJ,39.35935666,-74.46220011,RES1,3001,,17,NE,1997,1997,3101,1,1,1426.723956,1426.723956,3505,NO,19.23,28.2,3,3.26,6106,113.924169,123.63793,133.384178,139.792199,I,Above,Gable,0,5701,Wood,23.71456555,0,0,,,,1,1,,0.03,nav,1,1997,1,, 2006,NJBF000068186,473 N ELBERON AVE,Atlantic City,NJ,39.35593639,-74.46194214,RES1,3001,,NaN,NE,1948,0,3102,2,1,1404.750628,1404.750628,3505,NO,20.73,27.16,3,-0.86,6106,113.971785,123.679398,133.426691,139.849626,I,Above,Gable,0,5701,Wood,23.94557607,0,0,,,,1,1,,0.03,nav,1,1948,2,, 2007,NJBF000068736,628 WISTERIA RD,Atlantic City,NJ,39.35751486,-74.46177637,RES1,3001,,17,NE,1900,1900,3101,2,1,891.4723525,891.4723525,3505,NO,33.47,44.59,3,-0.54,6106,113.955966,123.66539,133.412645,139.827842,I,Above,Flat,0,5701,Wood,39.03123557,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2008,NJBF000068712,559 WARRENA RD,Atlantic City,NJ,39.35746975,-74.46272307,RES1,3001,,17,NE,1900,1900,3101,1,1,1788.099889,1788.099889,3505,NO,17.86,22.91,3,2.75,6106,113.935754,123.648788,133.394678,139.812931,I,Above,Flat,0,5701,Wood,20.38799376,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2009,NJBF000071616,1400 BEACH AVE,Atlantic City,NJ,39.37107458,-74.44643989,RES1,3001,,17,NE,1900,1900,3102,2,1,2205.086842,2205.086842,3505,YES,37.08,44.66,3,1.2,6106,114.129197,123.798676,133.566481,139.872748,I,Above,Gable,0,5701,Wood,40.87268984,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2010,NJBF000069089,618 N TRENTON AVE,Atlantic City,NJ,39.35873493,-74.46233783,RES1,3001,,17,NE,1910,1910,3101,1,1,1309.548343,1309.548343,3505,NO,21.26,28.84,3,4.64,6106,113.928718,123.642125,133.388311,139.799596,I,Above,Hip,0,5701,Wood,25.05241265,0,0,,,,1,1,,0.03,nav,1,1910,1,, 2011,NJBF000068863,541 N TRENTON AVE,Atlantic City,NJ,39.357832,-74.4610105,COM1,3003,,27,ME,1920,1920,3401,2,2,600.4621197,600.4621197,3507,YES,34.97,46.08,1,-0.75,6106,113.968844,123.675787,133.424099,139.835505,I,Above,Flat,0,NaN,Wood,40.52703899,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2012,NJBF000071136,906 N INDIANA AVE,Atlantic City,NJ,39.36954534,-74.43973402,RES3A,3001,,27,NE,1900,1900,3301,2,2,1248.913652,1248.913652,3505,YES,21.24,27.5,3,-1.08,6106,114.291922,123.937008,133.716901,140.004243,I,Above,Flat,0,5701,Wood,24.37138738,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2013,NJBF000068864,638 WISTERIA RD,Atlantic City,NJ,39.35783533,-74.46203291,RES1,3001,,17,NE,1900,1900,3101,2,1,1146.340432,1146.340432,3505,NO,39.19,49.21,3,2.93,6106,113.946408,123.657309,133.404128,139.818637,I,Above,Gable,0,5701,Wood,44.20203198,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2014,NJBF000070648,702 N INDIANA AVE,Atlantic City,NJ,39.3679115,-74.438591,RES1,3001,,17,NE,1900,1900,3102,2,1,1286.520812,1286.520812,3505,NO,42.54,54.62,3,8.02,6106,114.335686,123.975094,133.757431,140.046468,I,Above,Hip,0,5701,Wood,48.57743295,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2015,NJBF000069086,609 N TRENTON AVE,Atlantic City,NJ,39.3587163,-74.46178252,RES1,3001,,45,NE,1920,1920,3101,2,2,1518.532874,1518.532874,3505,NO,36.11,49.55,3,1.34,6106,113.941117,123.652347,133.399348,139.809069,I,Above,Hip,0,5701,Wood,42.82587345,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2016,NJBF000068314,509 HARBOR RD,Atlantic City,NJ,39.35632967,-74.46303153,RES1,3001,,16,NE,1929,1929,3101,1,1,542.0291888,542.0291888,3505,NO,18.66,26.07,3,0.05,6106,113.943011,123.655494,133.401152,139.825593,I,Above,Gable,0,5701,Wood,22.36683125,0,0,,,,1,1,,0.03,nav,1,1929,1,, 2017,NJBF000071466,1616 MARMORA AVE,Atlantic City,NJ,39.37068104,-74.43761461,RES1,3001,,45,NE,1960,1960,3101,2,2,1421.031574,1421.031574,3505,NO,35.69,44.23,3,4.74,6106,114.324419,123.963687,133.747009,140.021683,I,Above,Gable,0,5701,Wood,39.9605329,0,0,,,,1,1,,0.03,nav,1,1960,2,, 2018,NJBF000071625,2112 E RIVERSIDE DR,Atlantic City,NJ,39.37110337,-74.44577212,RES1,3001,,45,NE,1900,1900,3102,1,2,1360.281602,1360.281602,3505,NO,25.38,39.5,3,6.4,6106,114.143344,123.81054,133.579474,139.883262,I,Above,Gable,0,5701,Wood,32.43987816,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2019,NJBF000068799,632 WISTERIA RD,Atlantic City,NJ,39.35764718,-74.46188492,RES1,3001,,45,NE,1930,1930,3101,2,2,1098.928563,1098.928563,3505,NO,38.8,46.95,3,8.25,6106,113.951957,123.662002,133.409074,139.823998,I,Above,Flat,0,5701,Wood,42.8757232,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2020,NJBF000068625,546 N HARRISBURG AVE,Atlantic City,NJ,39.35727145,-74.46246489,RES1,3001,100,NaN,NE,1969,0,3101,1,1,1790.31818,1790.31818,3505,NO,22.85,28.26,3,8.59,6106,113.943856,123.655584,133.401887,139.820286,I,Above,Hip,0,5701,Wood,25.5586288,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2021,NJBF000071133,1059 N MICHIGAN AVE,Atlantic City,NJ,39.36952839,-74.44239578,RES3A,3001,,17,NE,1960,1960,3301,1,1,1284.937552,1284.937552,3505,NO,20.58,27.01,3,6.14,6106,114.23462,123.888672,133.663922,139.961567,I,Above,Gable,0,5701,Wood,23.79873659,0,0,,,,1,1,,0.03,nav,1,1960,1,, 2022,NJBF000068184,443 N HARRISBURG AVE,Atlantic City,NJ,39.355929,-74.460758,RES1,3001,,45,NE,1900,1900,3102,2,2,645.8898407,645.8898407,3505,NO,42.22,49.48,3,4.64,6106,113.997821,123.700833,133.449844,139.869091,I,Above,Flat,0,5701,Wood,45.84894103,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2023,NJBF000071855,1635 N ALBANY AVE,Atlantic City,NJ,39.3718162,-74.47808315,COM1,3003,100,NaN,ME,1969,0,3401,1,1,3547.064005,3547.064005,3507,NO,10.27,22.84,1,-0.53,6106,113.428772,123.218062,132.936832,139.320256,I,Above,Flat,0,NaN,Wood,16.55551087,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2024,NJBF000068293,400 N ALBANY AVE,Atlantic City,NJ,39.35624895,-74.4595096,COM1,3003,30,NaN,ME,1969,0,3401,2,1,12473.82131,12473.82131,3507,NO,29.99,40.52,1,2.14,6106,114.021197,123.719911,133.470702,139.884483,I,Above,Flat,0,NaN,Wood,35.25553963,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2025,NJBF000068881,640 WISTERIA RD,Atlantic City,NJ,39.357906,-74.4620895,RES1,3001,,16,NE,1930,1930,3101,1,1,861.911254,861.911254,3505,NO,23.78,36.33,3,7.08,6106,113.944288,123.655516,133.402238,139.816593,I,Above,Flat,0,5701,Wood,30.05528754,0,0,,,,1,1,,0.03,nav,1,1930,1,, 2026,NJBF000066670,29 N DOVER AVE,Atlantic City,NJ,39.35042295,-74.4582124,RES3A,3001,,45,NE,1900,1900,3301,2,3,2784.897409,2784.897409,3505,YES,25.54,40.44,3,0.48,6106,114.122592,123.806158,133.559371,139.99431,I,Above,Flat,0,5701,Wood,32.99244786,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2027,NJBF000069020,707 N HARRISBURG AVE,Atlantic City,NJ,39.35841508,-74.46271256,RES1,3001,,17,NE,2012,2012,3101,2,1,1295.901697,1295.901697,3505,NO,33.78,48.58,3,1.79,6106,113.924401,123.638799,133.38451,139.798373,I,Above,Gable,0,5701,Wood,41.1805359,0,0,,,,1,1,,0.03,nav,1,2012,2,, 2028,NJBF000070944,111 HOUSTON AVE,Atlantic City,NJ,39.36894526,-74.41733358,RES3D,3004,,17,E,2005,2005,3303,2,1,1131.233209,1131.233209,3505,NO,28.31,34,3,5.14,6106,114.778688,124.353069,134.174793,140.365843,I,Above,Gable,0,NaN,Wood,31.15489441,0,0,,,,1,1,,0.03,nav,1,2005,2,, 2029,NJBF000070293,1713 HUMMOCK AVE,Atlantic City,NJ,39.3665955,-74.436619,RES1,3001,,45,NE,1920,1920,3101,2,2,943.4579774,943.4579774,3507,NO,33.6,44.01,1,-0.29,6106,114.393695,124.024927,133.811049,140.096972,I,Above,Hip,0,5701,Wood,38.80083701,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2030,NJBF000066792,3817 VENTNOR AVE,Atlantic City,NJ,39.35079593,-74.45705883,COM1,3004,,NaN,ME,1969,0,3401,1,1,12740.55147,12740.55147,3507,NO,12.96,22.11,1,-0.63,6106,114.143071,123.822916,133.577805,140.006913,I,Above,Flat,0,NaN,Wood,17.53552399,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2031,NJBF000066799,3811 VENTNOR AVE,Atlantic City,NJ,39.3508185,-74.4566845,COM1,3004,,NaN,ME,1969,0,3401,1,1,3880.047501,3880.047501,3507,NO,16.23,26.42,1,0.7,6106,114.150976,123.829431,133.584871,140.012489,I,Above,Flat,0,NaN,Wood,21.32384197,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2032,NJBF000069391,245 N NEVADA AVE,Atlantic City,NJ,39.360055,-74.4449655,RES3A,3001,,27,NE,1900,1900,3301,2,2,621.754123,621.754123,3505,YES,37.84,44.62,3,1.52,6106,114.291598,123.942437,133.715423,140.060227,I,Above,Gable,0,5701,Wood,41.23132571,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2033,NJBF000072922,,Atlantic City,NJ,39.37565498,-74.42314321,RES3D,3001,,NaN,ME,1969,0,3301,2,1,1760.364827,1760.364827,3507,NO,29.34,44.21,1,0.83,6106,114.577236,124.176539,133.985399,140.181351,I,Above,Flat,0,NaN,Wood,36.7732858,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2034,NJBF000068891,646 N DOVER AVE,Atlantic City,NJ,39.35794882,-74.46537946,RES1,3001,,45,NE,1900,1900,3101,2,4,2129.31406,2129.31406,3505,NO,44.23,56.82,3,8.3,6106,113.871586,123.595731,133.337722,139.761329,I,Above,Gable,0,5701,Wood,50.52320618,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2035,NJBF000065979,21 N DELANCY PL,Atlantic City,NJ,39.34859926,-74.46208315,RES3A,3001,,45,NE,1900,1900,3301,2,2,1127.388001,1127.388001,3505,YES,37.89,43.64,3,-1.11,6106,114.061108,123.756189,133.503909,139.960609,I,Above,Flat,0,5701,Wood,40.76480765,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2036,NJBF000072639,1520 N OHIO AVE,Atlantic City,NJ,39.3743594,-74.44763624,RES1,3001,,16,NE,1994,1994,3102,1,1,827.0239685,827.0239685,3505,NO,21.82,30.21,3,8.88,6106,114.065806,123.742185,133.506701,139.803778,I,Above,Gable,0,5701,Wood,26.01199827,0,0,,,,1,1,,0.03,nav,1,1994,1,, 2037,NJBF000071174,211 GRAMMERCY PL,Atlantic City,NJ,39.36966313,-74.41479117,RES3D,3004,,28,E,1997,1997,3303,2,2,2446.690362,2446.690362,3505,NO,39.02,45.28,3,2.97,6106,114.824211,124.392291,134.218927,140.395353,I,Above,Hip,0,NaN,Wood,42.15228132,0,0,,,,1,1,,0.03,nav,1,1997,2,, 2038,NJBF000066901,4001 WINCHESTER AVE,Atlantic City,NJ,39.35120947,-74.45935536,RES3A,3001,,17,NE,1900,1900,3301,2,1,979.8687262,979.8687262,3505,NO,34.1,46.12,3,-0.44,6106,114.087617,123.777059,133.528585,139.964204,I,Above,Flat,0,5701,Wood,40.11182619,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2039,NJBF000067750,325 N HARRISBURG AVE,Atlantic City,NJ,39.35436331,-74.45949628,RES1,3001,,45,NE,1928,1928,3102,1,2,1224.561272,1224.561272,3505,NO,19.82,31.43,3,4.75,6106,114.04491,123.740475,133.491538,139.913692,I,Above,Hip,0,5701,Wood,25.62794494,0,0,,,,1,1,,0.03,nav,1,1928,1,, 2040,NJBF000066822,133 N RICHMOND AVE,Atlantic City,NJ,39.3508927,-74.46158694,RES3A,3001,,27,NE,1922,1922,3301,2,2,1645.838152,1645.838152,3505,YES,28.08,33.1,3,1.98,6106,114.042736,123.74026,133.488605,139.933321,I,Above,Flat,0,5701,Wood,30.59035826,0,0,,,,1,1,,0.03,nav,1,1922,2,, 2041,NJBF000069501,17 S NEW YORK AVE,Atlantic City,NJ,39.36100977,-74.42838655,COM1,3003,,NaN,ME,1969,0,3401,2,1,47509.02299,47509.02299,3507,NO,23.51,36.29,1,0.8,6106,114.637617,124.233949,134.035635,140.305103,I,Above,Flat,0,NaN,Wood,29.9022647,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2042,NJBF000065665,,Atlantic City,NJ,39.34775979,-74.46045684,RES3A,3001,,NaN,NE,1900,0,3301,2,1,3119.406772,3119.406772,3505,NO,43.32,55.96,3,5.5,6106,114.107497,123.794556,133.544561,139.999183,I,Above,Flat,0,5701,Wood,49.64230448,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2043,NJBF000069999,508 N MICHIGAN AVE,Atlantic City,NJ,39.36539288,-74.44010709,RES3B,3001,,27,ME,1900,1925,3301,2,2,2321.625325,2321.625325,3505,NO,39.04,50.36,3,0.15,6106,114.332675,123.974087,133.754354,140.059058,I,Above,Hip,0,NaN,Wood,44.70167041,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2044,NJBF000068415,540 N ELBERON AVE,Atlantic City,NJ,39.35667549,-74.4630947,RES1,3001,,17,NE,1900,1900,3101,2,1,1084.7777,1084.7777,3505,NO,35.64,49.82,3,4.96,6106,113.937373,123.65064,133.396146,139.819179,I,Above,Hip,0,5701,Wood,42.72867719,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2045,NJBF000068987,153 WESTMINISTER AVE,Atlantic City,NJ,39.35825501,-74.42769083,COM1,3003,29,NaN,ME,1969,0,3401,4,1,1436.93502,1436.93502,3507,YES,64.59,76.29,1,-0.29,6106,114.686181,124.275673,134.078728,140.354109,I,Above,Flat,0,NaN,Wood,70.43937873,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2046,NJBF000068551,616 WISTERIA RD,Atlantic City,NJ,39.3570905,-74.46143666,RES1,3001,,16,NE,1930,1930,3101,1,1,887.413123,887.413123,3505,NO,12.29,27.05,3,-0.5,6106,113.968619,123.676081,133.423909,139.840009,I,Above,Gable,0,5701,Wood,19.67208435,0,0,,,,1,1,,0.03,nav,1,1930,1,, 2047,NJBF000070760,700 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36832837,-74.43742503,RES1,3001,,16,NE,1962,1962,3101,1,1,1409.244993,1409.244993,3507,NO,15.78,23.1,1,0.04,6106,114.355938,123.991956,133.77625,140.059011,I,Above,Gable,0,5701,Wood,19.44458507,0,0,,,,1,1,,0.03,nav,1,1962,1,, 2048,NJBF000070547,34 N CONGRESS AVE,Atlantic City,NJ,39.36753528,-74.41828077,RES3D,3004,,16,E,1900,1900,3303,2,1,896.2968881,896.2968881,3505,NO,29.6,36.31,3,-2.85,6106,114.775218,124.350385,134.170459,140.370577,I,Above,Flat,0,NaN,Wood,32.95552772,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2049,NJBF000066261,53 S ELBERON AVE,Atlantic City,NJ,39.34932163,-74.45667328,RES3A,3001,,45,NE,1900,1900,3301,2,2,1193.238267,1193.238267,3504,NO,31.89,44.68,-4,0,6106,114.170255,123.845802,133.601274,140.035149,I,Above,Flat,0,5701,Wood,38.28639207,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2050,NJBF000071706,,Atlantic City,NJ,39.37134412,-74.42490476,RES1,3001,,NaN,NE,1969,0,3102,2,1,1405.423896,1405.423896,3505,NO,23.68,37.49,3,2.59,6106,114.589341,124.189198,133.995816,140.214246,I,Above,Hip,0,5701,Wood,30.58579983,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2051,NJBF000068279,103 N MORRIS AVE,Atlantic City,NJ,39.35622415,-74.44911355,RES3A,3001,,45,NE,1900,1900,3301,2,3,1712.741951,1712.741951,3505,NO,28.87,43.65,3,1.83,6106,114.248409,123.908124,133.674834,140.051226,I,Above,Hip,0,5701,Wood,36.26047725,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2052,NJBF000068400,2414 ATLANTIC AVE,Atlantic City,NJ,39.35662755,-74.44096995,COM1,3003,100,NaN,ME,1969,0,3401,2,1,5101.777201,5101.777201,3507,YES,25.85,33.2,1,-0.9,6106,114.420144,124.051436,133.831396,140.172724,I,Above,Flat,0,NaN,Wood,29.52402575,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2053,NJBF000072612,,Atlantic City,NJ,39.37427357,-74.45024319,RES1,3001,,NaN,NE,1969,0,3102,2,1,647.2155,647.2155,3505,NO,29.5,35.6,3,0.08,6106,114.010256,123.695635,133.455762,139.76178,I,Above,Hip,0,5701,Wood,32.55333037,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2054,NJBF000069351,239 N ARIZONA AVE,Atlantic City,NJ,39.35980938,-74.44615411,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2374.291433,2374.291433,3505,YES,37.29,45.05,3,7.28,6106,114.268785,123.923482,133.694547,140.045022,I,Above,Flat,0,5701,Wood,41.17259407,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2055,NJBF000072399,531 N NEW JERSEY AVE,Atlantic City,NJ,39.37352922,-74.42436792,RES1,3001,,17,NE,1910,1910,3102,1,1,2014.408002,2014.408002,3505,NO,19.07,30.91,3,7.97,6106,114.575512,124.176224,133.983321,140.191918,I,Above,Flat,0,5701,Wood,24.98973633,0,0,,,,1,1,,0.03,nav,1,1910,1,, 2056,NJBF000070834,645 GREEN ST,Atlantic City,NJ,39.3685805,-74.4361855,RES1,3001,,16,NE,1900,1900,3101,1,1,1176.023132,1176.023132,3505,NO,12.16,26.04,3,0.94,6106,114.37969,124.01191,133.79835,140.07511,I,Above,Gable,0,5701,Wood,19.09762635,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2057,NJBF000070413,322 N TENNESSEE AVE,Atlantic City,NJ,39.36700223,-74.43158041,RES3C,3003,,45,E,1900,1900,3305,2,2,1281.58793,1281.58793,3507,NO,24.44,36.67,1,0.92,6106,114.497301,124.112602,133.907699,140.170737,I,Above,Flat,0,NaN,Wood,30.55480912,0,0,,,,2,2,,0.03,nav,1,1900,2,, 2058,NJBF000069220,151 S OCEAN AVE,Atlantic City,NJ,39.359216,-74.42535684,COM1,3001,,45,ME,1920,1920,3401,3,2,1260.312147,1260.312147,3507,YES,42.5,50.51,1,2,6106,114.7244,124.3081,134.115401,140.376466,I,Above,Flat,0,NaN,Wood,46.50581756,0,0,,,,1,1,,0.03,nav,1,1920,3,, 2059,NJBF000067462,330 N ELBERON AVE,Atlantic City,NJ,39.35357158,-74.46061638,RES1,3001,,45,NE,1900,1900,3102,2,2,1568.485925,1568.485925,3505,NO,35.01,42.91,3,3.12,6106,114.030263,123.728805,133.478327,139.907749,I,Above,Hip,0,5701,Wood,38.96340261,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2060,NJBF000065027,44 S TALLAHASSEE AVE,Atlantic City,NJ,39.34594249,-74.4639396,RES1,3001,,17,NE,1900,1900,3102,2,1,1514.164233,1514.164233,3504,NO,28.79,34.22,-4,0,6110,114.054668,123.751671,133.496788,139.971839,I,Above,Hip,0,5701,Wood,31.50753064,0,0,,,,1,1,,0.35,nav,1,1900,2,, 2061,NJBF000072086,740 SEWELL AVE,Atlantic City,NJ,39.37253877,-74.42522913,RES1,3001,,17,NE,1900,1900,3102,1,1,1429.233711,1429.233711,3505,NO,17.6,23.58,3,5.75,6106,114.568565,124.170772,133.976479,140.192279,I,Above,Flat,0,5701,Wood,20.59237348,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2062,NJBF000068921,2923 SUNSET AVE,Atlantic City,NJ,39.35801225,-74.45040633,RES3A,3001,,17,NE,1925,1925,3301,2,1,1141.761465,1141.761465,3507,NO,37.74,47.62,1,-0.93,6106,114.198279,123.865599,133.63006,140.004156,I,Above,Gable,0,5701,Wood,42.67857551,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2063,NJBF000071613,1411 W RIVERSIDE DR,Atlantic City,NJ,39.37106277,-74.44706711,RES1,3001,,16,NE,1900,1900,3102,1,1,1268.23787,1268.23787,3505,NO,13.18,23.58,3,2.47,6106,114.115748,123.787392,133.554136,139.862652,I,Above,Flat,0,5701,Wood,18.37947555,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2064,NJBF000072247,2140 HAMILTON AVE,Atlantic City,NJ,39.37302529,-74.45402375,RES1,3001,,16,NE,1966,1966,3101,1,1,1517.409792,1517.409792,3505,NO,25,34.22,3,7.21,6106,113.942255,123.640135,133.394514,139.717629,I,Above,Flat,0,5701,Wood,29.60975099,0,0,,,,1,1,,0.03,nav,1,1966,1,, 2065,NJBF000068332,2825 ARCTIC AVE,Atlantic City,NJ,39.356396,-74.447601,RES3A,3001,,45,NE,1900,1900,3301,2,4,3288.727847,3288.727847,3505,YES,30.66,38.68,3,-1.13,6106,114.279186,123.933684,133.702792,140.072517,I,Above,Flat,0,5701,Wood,34.6709252,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2066,NJBF000066023,22 N RALEIGH AVE,Atlantic City,NJ,39.34870714,-74.46181258,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,2398.269473,2398.269473,3505,NO,31.52,43.46,3,-1.22,6106,114.065641,123.759877,133.507975,139.963256,I,Above,Hip,0,5701,Wood,37.49078565,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2067,NJBF000068469,204 N CHELSEA AVE,Atlantic City,NJ,39.35686689,-74.45137019,RES3A,3001,,45,NE,1920,1920,3301,1,3,1909.579967,1909.579967,3507,NO,21.3,28.66,1,2.53,6106,114.191355,123.860403,133.623488,140.005928,I,Above,Hip,0,5701,Wood,24.97669128,0,0,,,,1,1,,0.03,nav,1,1920,1,, 2068,NJBF000072825,1532 PENROSE AVE,Atlantic City,NJ,39.37509348,-74.44791179,RES1,3001,,17,NE,1926,1926,3101,2,1,866.0882706,866.0882706,3505,NO,32.68,43.8,3,5.42,6106,114.051541,123.729405,133.493142,139.78816,I,Above,Gable,0,5701,Wood,38.24069231,0,0,,,,1,1,,0.03,nav,1,1926,2,, 2069,NJBF000066830,107 N WINDSOR AVE,Atlantic City,NJ,39.35093991,-74.46068294,RES3A,3001,,17,NE,1900,1900,3301,2,1,3153.768103,3153.768103,3505,NO,29.02,43.83,3,-0.85,6106,114.061946,123.756036,133.505666,139.947095,I,Above,Gable,0,5701,Wood,36.4233584,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2070,NJBF000067298,4120 STEWART AVE,Atlantic City,NJ,39.35294711,-74.46186038,RES1,3001,,17,NE,2017,2017,3102,1,1,3126.093124,3126.093124,3505,NO,10.61,19.87,3,-1.06,6106,114.010837,123.713129,133.460928,139.89725,I,Above,Flat,0,5701,Wood,15.23927182,0,0,,,,1,1,,0.03,nav,1,2017,1,, 2071,NJBF000071423,126 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37057255,-74.41483093,RES3D,3004,,17,E,1998,1998,3303,2,1,1336.044064,1336.044064,3505,NO,42.51,47.99,3,7.13,6106,114.812681,124.382107,134.208516,140.382288,I,Above,Gable,0,NaN,Wood,45.24969528,0,0,,,,1,1,,0.03,nav,1,1998,2,, 2072,NJBF000068217,3904 FILBERT AVE,Atlantic City,NJ,39.35602941,-74.46187271,RES1,3001,,17,NE,1948,1948,3102,1,1,1189.207427,1189.207427,3505,NO,17.89,26.13,3,4.32,6106,113.972147,123.679641,133.427018,139.849313,I,Above,Gable,0,5701,Wood,22.00765846,0,0,,,,1,1,,0.03,nav,1,1948,1,, 2073,NJBF000070628,1910 GRANT AVE,Atlantic City,NJ,39.36783906,-74.44065432,RES3B,3001,,17,ME,1900,1900,3301,2,1,644.9650801,644.9650801,3505,NO,38.34,46.39,3,3.97,6106,114.291993,123.938258,133.717002,140.014499,I,Above,Flat,0,5701,Wood,42.3622683,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2074,NJBF000069922,107 S METROPOLITAN AVE,Atlantic City,NJ,39.365004,-74.41467117,RES3B,3001,,17,E,1900,1900,3303,3,1,733.7341443,733.7341443,3507,YES,36.65,41.93,1,2.66,6106,114.882059,124.44293,134.270315,140.460599,I,Above,Flat,0,NaN,Wood,39.28936749,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2075,NJBF000072472,,Atlantic City,NJ,39.37378643,-74.42332227,RES1,3001,,NaN,NE,2006,0,3102,2,1,2159.772347,2159.772347,3505,NO,44.12,51.88,3,6.4,6106,114.594856,124.192736,134.00178,140.204836,I,Above,Gable,0,5701,Wood,48.00033827,0,0,,,,1,1,,0.03,nav,1,2006,2,, 2076,NJBF000069525,,Atlantic City,NJ,39.3612556,-74.43454374,COM1,3003,,NaN,ME,1969,0,3401,3,1,1959.503441,1959.503441,3507,NO,54.92,66.12,1,-0.09,6106,114.502301,124.119145,133.909782,140.206308,I,Above,Hip,0,NaN,Wood,60.51979672,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2077,NJBF000072159,1928 E RIVERSIDE DR,Atlantic City,NJ,39.37275402,-74.445149,RES1,3001,739,NaN,NE,1969,0,3102,1,1,2912.717476,2912.717476,3505,NO,21.7,27.75,3,2.47,6106,114.137892,123.804436,133.57385,139.868808,I,Above,Hip,0,5701,Wood,24.72644004,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2078,NJBF000070725,637 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36819076,-74.43671015,RES1,3001,,17,NE,1900,1900,3101,2,1,1180.819942,1180.819942,3505,NO,25.99,33.55,3,1.47,6106,114.372953,124.006442,133.792041,140.072403,I,Above,Hip,0,5701,Wood,29.77386899,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2079,NJBF000069233,120 N GEORGIA AVE,Atlantic City,NJ,39.35926612,-74.44236806,RES3B,3001,,17,ME,1900,1900,3301,3,1,1358.402543,1358.402543,3505,YES,32.89,43.95,3,0.56,6106,114.357497,123.99798,133.775384,140.1127,I,Above,Hip,0,NaN,Wood,38.42080403,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2080,NJBF000070651,616 GREEN ST,Atlantic City,NJ,39.3679185,-74.4361805,RES1,3001,,16,NE,1900,1900,3101,1,1,1059.276881,1059.276881,3505,NO,20.5,34.17,3,1.85,6106,114.387542,124.018961,133.805567,140.084767,I,Above,Gable,0,5701,Wood,27.33444833,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2081,NJBF000071970,2002 W RIVERSIDE DR,Atlantic City,NJ,39.3721565,-74.4563655,RES1,3001,,17,NE,2006,2006,3103,2,1,1980.160823,1980.160823,3505,NO,41.79,52.63,3,5.15,6106,113.901126,123.606831,133.35778,139.691614,I,Above,Hip,0,5701,Wood,47.20941952,0,0,,,,1,1,,0.03,nav,1,2006,2,, 2082,NJBF000069208,120 N GEORGIA AVE RR #A,Atlantic City,NJ,39.35917268,-74.44257867,RES3B,3001,,17,ME,1900,1900,3301,2,1,908.9162805,908.9162805,3505,YES,24.31,38.8,3,-2.21,6106,114.354062,123.995138,133.7722,140.110742,I,Above,Hip,0,NaN,Wood,31.553723,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2083,NJBF000069411,254 N NEVADA AVE,Atlantic City,NJ,39.36018471,-74.44542898,RES3A,3001,,27,NE,1923,1923,3301,2,2,1441.32592,1441.32592,3505,YES,25.14,38.29,3,0.1,6106,114.279951,123.932632,133.704834,140.050966,I,Above,Gable,0,5701,Wood,31.71529006,0,0,,,,1,1,,0.03,nav,1,1923,2,, 2084,NJBF000068044,101 N CHELSEA AVE,Atlantic City,NJ,39.35544252,-74.44984469,RES3A,3001,,17,NE,1900,1900,3301,3,1,2265.104285,2265.104285,3505,YES,43.66,58.55,3,8.57,6106,114.242172,123.903256,133.668876,140.051272,I,Above,Flat,0,5701,Wood,51.10695291,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2085,NJBF000065715,47 S LACLEDE PL,Atlantic City,NJ,39.34790156,-74.45966863,RES3A,3001,,45,NE,1900,1900,3301,2,2,2015.44768,2015.44768,3505,NO,38.87,44.2,3,2.06,6106,114.12292,123.807201,133.558328,140.00945,I,Above,Gable,0,5701,Wood,41.53255133,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2086,NJBF000068131,433 N HARRISBURG AVE,Atlantic City,NJ,39.35574587,-74.46059589,RES1,3001,,27,NE,1900,1900,3102,2,2,1379.369099,1379.369099,3505,NO,36.11,46.19,3,2.61,6106,114.003635,123.705727,133.455002,139.874558,I,Above,Flat,0,5701,Wood,41.14967896,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2087,NJBF000068049,106 N CHELSEA AVE,Atlantic City,NJ,39.35545618,-74.45070702,RES3A,3001,,17,NE,1920,1920,3301,2,1,599.1433498,599.1433498,3505,NO,35.91,41.95,3,5.44,6106,114.223242,123.887519,133.651785,140.037479,I,Above,Gable,0,5701,Wood,38.9291807,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2088,NJBF000067875,2515 PACIFIC AVE,Atlantic City,NJ,39.35485498,-74.44168946,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,1334.489357,1334.489357,3505,YES,56.78,70.81,3,5.86,6106,114.426556,124.057291,133.83612,140.187091,I,Above,Hip,0,5701,Wood,63.79473269,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2089,NJBF000067868,2517 PACIFIC AVE,Atlantic City,NJ,39.35483164,-74.44176505,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,1067.966831,1067.966831,3505,YES,53.85,65.58,3,3.06,6106,114.425196,124.056158,133.834862,140.186247,I,Above,Hip,0,5701,Wood,59.71665332,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2090,NJBF000070733,900 N OHIO AVE,Atlantic City,NJ,39.36821051,-74.44039306,RES3B,3001,,NaN,ME,1969,0,3301,2,1,1012.119033,1012.119033,3505,NO,23.28,35.4,3,-0.31,6106,114.293271,123.939082,133.718184,140.013226,I,Above,Flat,0,5701,Wood,29.34185534,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2091,NJBF000066529,44 S TRENTON AVE,Atlantic City,NJ,39.34999329,-74.45554448,RES3A,3001,,45,NE,1920,1920,3301,2,2,1230.715839,1230.715839,3504,NO,25.96,35.91,-4,0,6106,114.186369,123.85891,133.616047,140.042811,I,Above,Hip,0,5701,Wood,30.93417076,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2092,NJBF000066144,113 N KINGSTON AVE,Atlantic City,NJ,39.34904323,-74.46448064,RES3A,3001,,17,NE,1920,1920,3301,2,1,1401.189168,1401.189168,3505,NO,40.95,50.38,3,3.81,6106,114.002834,123.708226,133.45261,139.915324,I,Above,Gable,0,5701,Wood,45.66711991,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2093,NJBF000072096,5 CLIPPER CT,Atlantic City,NJ,39.37257594,-74.41807741,RES3C,3001,,35,ME,1990,1990,3301,2,1,5528.753838,5528.753838,3505,NO,33.32,40.78,3,8.64,6106,114.720445,124.301653,134.121237,140.304179,I,Above,Hip,0,NaN,Wood,37.04882741,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2094,NJBF000072759,1941 MURRAY AVE,Atlantic City,NJ,39.37481808,-74.45214493,RES1,3001,,16,NE,1900,1900,3101,1,1,1197.903565,1197.903565,3505,NO,15.22,29.15,3,0.1,6106,113.962841,123.655289,133.411991,139.721764,I,Above,Gable,0,5701,Wood,22.18730926,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2095,NJBF000068812,122 N CALIFORNIA AVE,Atlantic City,NJ,39.3576835,-74.4461215,COM1,3003,100,NaN,ME,1969,0,3401,1,1,8232.433651,8232.433651,3507,NO,18.87,28.05,1,0.23,6106,114.295452,123.946726,133.718103,140.076834,I,Above,Flat,0,NaN,Wood,23.46201115,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2096,NJBF000072282,559 N DELAWARE AVE,Atlantic City,NJ,39.37314982,-74.42569706,RES1,3001,,16,NE,1900,1900,3102,1,1,1065.994655,1065.994655,3505,NO,15.95,29.08,3,2.87,6106,114.551516,124.155807,133.96046,140.176238,I,Above,Flat,0,5701,Wood,22.51104391,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2097,NJBF000072380,2041 KUEHNLE AVE,Atlantic City,NJ,39.37346627,-74.45152505,RES1,3001,,17,NE,1900,1900,3101,1,1,1429.826225,1429.826225,3505,NO,18.95,26.93,3,3.55,6106,113.991573,123.680871,133.439192,139.752674,I,Above,Gable,0,5701,Wood,22.93845653,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2098,NJBF000067474,115 N ST DAVIDS PL,Atlantic City,NJ,39.35360062,-74.45560624,RES3B,3001,,45,E,1920,1920,3303,4,2,3111.788256,3111.788256,3507,YES,75.88,84.19,1,2.07,6106,114.139495,123.818895,133.575797,139.987631,I,Above,Gable,0,NaN,Wood,80.03409134,0,0,,,,1,1,,0.03,nav,1,1920,4,, 2099,NJBF000070650,711 N OHIO AVE,Atlantic City,NJ,39.36791774,-74.43967246,RES1,3001,,17,NE,1900,1900,3102,1,1,2895.033733,2895.033733,3505,NO,14.94,28.5,3,2.9,6106,114.312274,123.955316,133.735754,140.029077,I,Above,Hip,0,5701,Wood,21.71943609,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2100,NJBF000068361,,Atlantic City,NJ,39.35649999,-74.46189217,RES1,3001,,NaN,NE,1969,0,3101,1,1,1093.844708,1093.844708,3505,NO,21.45,27.21,3,3.24,6106,113.965913,123.674224,133.421495,139.841693,I,Above,Gable,0,5701,Wood,24.3309313,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2101,NJBF000067210,4113 SOUTH BLVD,Atlantic City,NJ,39.35256923,-74.46138469,RES1,3001,,27,NE,1900,1900,3102,2,1,718.1683158,718.1683158,3505,YES,37.57,45.83,3,2.33,6106,114.025998,123.725774,133.474287,139.91077,I,Above,Flat,0,5701,Wood,41.69801257,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2102,NJBF000067205,4115 SOUTH BLVD,Atlantic City,NJ,39.35254817,-74.4614274,RES1,3001,,27,NE,1928,1928,3102,2,2,719.8568212,719.8568212,3505,NO,28.11,37.53,3,5.81,6106,114.025342,123.725244,133.473699,139.910415,I,Above,Flat,0,5701,Wood,32.82080272,0,0,,,,1,1,,0.03,nav,1,1928,2,, 2103,NJBF000069111,205 N CALIFORNIA AVE,Atlantic City,NJ,39.35880185,-74.44641379,RES3A,3001,,27,NE,1920,1920,3301,2,2,943.4698577,943.4698577,3505,YES,33.24,39.77,3,-2.51,6106,114.275415,123.929503,133.700277,140.055765,I,Above,Gable,0,5701,Wood,36.5053559,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2104,NJBF000070629,700 N INDIANA AVE,Atlantic City,NJ,39.3678405,-74.4385255,RES1,3001,,17,NE,2000,2000,3102,2,1,683.7818328,683.7818328,3505,NO,33.61,41.99,3,2.96,6106,114.337943,123.977047,133.759517,140.048558,I,Above,Hip,0,5701,Wood,37.79817029,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2105,NJBF000071552,1458 W RIVERSIDE DR,Atlantic City,NJ,39.3709114,-74.4478764,RES1,3001,,16,NE,1900,1900,3101,1,1,868.5560476,868.5560476,3505,NO,16.62,23.73,3,-1.36,6106,114.099958,123.774282,133.539711,139.851655,I,Above,Hip,0,5701,Wood,20.17274553,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2106,NJBF000070116,503 N OHIO AVE,Atlantic City,NJ,39.36588338,-74.43836973,RES3B,3001,,45,ME,1900,1900,3301,3,2,1160.825088,1160.825088,3505,YES,49.23,59.28,3,0.72,6106,114.364371,124.000542,133.78373,140.079529,I,Above,Hip,0,NaN,Wood,54.25638932,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2107,NJBF000070711,2004 MCKINLEY AVE,Atlantic City,NJ,39.36813735,-74.44198673,RES3B,3001,,33,ME,1900,1900,3301,2,1,4594.796992,4594.796992,3505,YES,38.95,49.24,3,1.65,6106,114.259692,123.910827,133.68718,139.988697,I,Above,Flat,0,5701,Wood,44.09655725,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2108,NJBF000067489,3123 ATLANTIC AVE,Atlantic City,NJ,39.35364546,-74.44992275,COM1,3003,565,NaN,ME,1969,0,3401,2,1,2821.994315,2821.994315,3507,NO,35.28,40.48,1,-0.78,6106,114.262871,123.921123,133.686733,140.076646,I,Above,Hip,0,NaN,Wood,37.88022791,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2109,NJBF000068705,2808 FAIRMOUNT AVE,Atlantic City,NJ,39.35745859,-74.44795314,RES3A,3001,,45,NE,1920,1920,3301,2,2,1258.027352,1258.027352,3505,NO,40.6,48.02,3,5.9,6106,114.258435,123.915944,133.684385,140.051277,I,Above,Hip,0,5701,Wood,44.3116165,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2110,NJBF000072163,1514 EMERSON AVE,Atlantic City,NJ,39.37276104,-74.44826352,RES1,3001,,17,NE,1900,1900,3102,2,1,1624.421497,1624.421497,3505,YES,24.64,35.98,3,-1.91,6106,114.070347,123.747645,133.511731,139.81744,I,Above,Gable,0,5701,Wood,30.31034763,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2111,NJBF000070729,1834 GRANT AVE,Atlantic City,NJ,39.3681965,-74.4397035,RES1,3001,,NaN,NE,1969,0,3102,3,1,905.8624564,905.8624564,3505,YES,40.66,51.5,3,-2.21,6106,114.308334,123.951805,133.732116,140.024496,I,Above,Hip,0,5701,Wood,46.08003917,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2112,NJBF000070972,1725 GRANT AVE,Atlantic City,NJ,39.36901468,-74.43833361,RES1,3001,,16,NE,1900,1900,3102,2,1,999.2823074,999.2823074,3505,NO,22.52,34.28,3,0.11,6106,114.328304,123.96813,133.750638,140.034467,I,Above,Gable,0,5701,Wood,28.39940893,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2113,NJBF000068016,416 WISTERIA RD,Atlantic City,NJ,39.3553475,-74.4600845,RES1,3001,,27,NE,1920,1920,3102,2,2,1536.371378,1536.371378,3505,NO,35.38,49.63,3,0.1,6106,114.019783,123.719252,133.469332,139.889025,I,Above,Flat,0,5701,Wood,42.50191259,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2114,NJBF000066080,57 N BARTRAM AVE,Atlantic City,NJ,39.34885739,-74.4634081,RES3A,3001,,17,NE,1920,1920,3301,2,1,1411.228603,1411.228603,3505,NO,26.74,41.03,3,-1.78,6106,114.028754,123.729548,133.475418,139.935459,I,Above,Hip,0,5701,Wood,33.88690823,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2115,NJBF000068688,2619 ARCTIC AVE,Atlantic City,NJ,39.35741822,-74.44495529,RES3A,3001,,27,NE,1900,1900,3301,2,2,1037.252046,1037.252046,3505,YES,35.37,46.51,3,7.04,6106,114.324053,123.970724,133.744031,140.099074,I,Above,Flat,0,5701,Wood,40.93988544,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2116,NJBF000072633,417 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37434357,-74.41668872,RES3C,3001,,27,ME,2003,2003,3301,2,2,1892.49936,1892.49936,3505,NO,31.79,45.62,3,5.05,6106,114.729458,124.308801,134.130726,140.301443,I,Above,Hip,0,NaN,Wood,38.70580487,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2117,NJBF000072699,1505 N OHIO AVE,Atlantic City,NJ,39.3745895,-74.4470755,RES1,3001,,17,NE,1955,1955,3102,1,1,941.1889198,941.1889198,3505,NO,12.64,25.48,3,1.37,6106,114.075353,123.749972,133.515355,139.809605,I,Above,Gable,0,5701,Wood,19.05972094,0,0,,,,1,1,,0.03,nav,1,1955,1,, 2118,NJBF000071228,1827 MARMORA AVE,Atlantic City,NJ,39.36983968,-74.44073602,RES3A,3001,,27,NE,2001,2001,3301,2,2,1663.623962,1663.623962,3505,NO,35.99,44.16,3,3.22,6106,114.266861,123.915627,133.693676,139.983773,I,Above,Gable,0,5701,Wood,40.07197936,0,0,,,,1,1,,0.03,nav,1,2001,2,, 2119,NJBF000067292,4203 STEWART AVE,Atlantic City,NJ,39.35292612,-74.46263358,RES1,3001,,NaN,NE,1969,0,3102,2,1,1057.849837,1057.849837,3505,NO,36.37,44.93,3,3.33,6106,113.99413,123.699409,133.446109,139.885012,I,Above,Flat,0,5701,Wood,40.65280221,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2120,NJBF000070664,37 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36797939,-74.41739236,RES3D,3004,,45,E,1920,1920,3303,3,3,1138.045681,1138.045681,3505,NO,55.27,60.53,3,4.74,6106,114.788861,124.362062,134.183812,140.378214,I,Above,Flat,0,NaN,Wood,57.90392633,0,0,,,,1,1,,0.03,nav,1,1920,3,, 2121,NJBF000072237,,Atlantic City,NJ,39.37299698,-74.4468953,RES1,3001,,NaN,NE,1969,0,3102,2,1,1253.741271,1253.741271,3505,NO,33.17,47.67,3,6.87,6106,114.097322,123.770069,133.536394,139.836473,I,Above,Hip,0,5701,Wood,40.42234057,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2122,NJBF000069916,1926 HUMMOCK AVE,Atlantic City,NJ,39.36497297,-74.43949679,IND2,3001,,NaN,ME,1969,0,3401,2,1,1204.297325,1204.297325,3507,NO,35.86,42.82,1,-0.17,6106,114.350843,123.989638,133.771048,140.074881,I,Above,Gable,0,NaN,Wood,39.33840496,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2123,NJBF000065342,5 S TALLAHASSEE AVE,Atlantic City,NJ,39.3467926,-74.46407253,RES1,3001,,18,NE,1900,1900,3102,2,1,2445.104424,2445.104424,3504,NO,27.12,35.77,-4,0,6106,114.040727,123.740018,133.484977,139.956645,I,Above,Gable,0,5701,Wood,31.44685411,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2124,NJBF000065169,33 S TALLAHASSEE AVE,Atlantic City,NJ,39.34629844,-74.46369478,RES1,3001,,18,NE,1900,1900,3102,2,1,1848.63391,1848.63391,3504,YES,26.74,37.84,-4,0,6110,114.055423,123.752199,133.497663,139.970263,I,Above,Hip,0,5701,Wood,32.2912287,0,0,,,,1,1,,0.35,nav,1,1900,2,, 2125,NJBF000068866,556 N TRENTON AVE,Atlantic City,NJ,39.35784174,-74.46169647,RES1,3001,,27,NE,1900,1900,3101,2,2,1822.171557,1822.171557,3505,NO,33.24,44.14,3,-1.39,6106,113.95371,123.663315,133.410624,139.824082,I,Above,Flat,0,5701,Wood,38.68968542,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2126,NJBF000070652,901 N MICHIGAN AVE,Atlantic City,NJ,39.367919,-74.4413595,RES3B,3001,,NaN,ME,1969,0,3301,2,1,971.4492629,971.4492629,3505,NO,35.27,43.7,3,7.41,6106,114.2758,123.924552,133.702048,140.00199,I,Above,Gable,0,5701,Wood,39.48751464,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2127,NJBF000069444,265 N NEVADA AVE,Atlantic City,NJ,39.36046318,-74.44526556,RES3A,3001,,27,NE,1900,1900,3301,2,2,783.1612858,783.1612858,3505,NO,43.7,53.22,3,6.85,6106,114.280115,123.93263,133.70506,140.049453,I,Above,Flat,0,5701,Wood,48.45738102,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2128,NJBF000069456,265 N NEVADA AVE,Atlantic City,NJ,39.36053541,-74.44531491,RES3A,3001,,27,NE,1900,1900,3301,2,2,549.7180816,549.7180816,3505,NO,34.55,43.04,3,-0.01,6106,114.278178,123.930974,133.703312,140.047615,I,Above,Flat,0,5701,Wood,38.79522439,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2129,NJBF000069869,506 PACIFIC AVE,Atlantic City,NJ,39.36468461,-74.41595031,RES3B,3001,,NaN,E,1969,0,3303,1,1,8538.116538,8538.116538,3507,NO,14.91,24.9,1,0.27,6106,114.858732,124.42281,134.247712,140.445368,I,Above,Flat,0,NaN,Wood,19.90543063,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2130,NJBF000065702,40 N ABERDEEN PL,Atlantic City,NJ,39.3478607,-74.46453066,RES3A,3001,,17,NE,1905,1905,3301,2,1,1477.880783,1477.880783,3505,NO,38.43,53.14,3,3.34,6106,114.016904,123.720169,133.464508,139.932836,I,Above,Hip,0,5701,Wood,45.78450014,0,0,,,,1,1,,0.03,nav,1,1905,2,, 2131,NJBF000072554,1814 EMERSON AVE,Atlantic City,NJ,39.37406859,-74.45276936,RES1,3001,,17,NE,1955,1955,3101,1,1,1516.868532,1516.868532,3505,NO,23.58,35.26,3,5.74,6106,113.957727,123.651874,133.407869,139.722719,I,Above,Flat,0,5701,Wood,29.42005188,0,0,,,,1,1,,0.03,nav,1,1955,1,, 2132,NJBF000070229,504 N INDIANA AVE,Atlantic City,NJ,39.36632318,-74.43754909,RES3B,3001,,17,ME,1900,1900,3301,2,1,1223.95312,1223.95312,3505,NO,40.91,50.79,3,6.01,6106,114.376873,124.010855,133.795392,140.086172,I,Above,Hip,0,NaN,Wood,45.85203266,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2133,NJBF000068336,3119 FAIRMOUNT AVE,Atlantic City,NJ,39.35640495,-74.45163921,RES3A,3001,,45,NE,1905,1905,3301,2,2,2018.445053,2018.445053,3507,YES,26.73,40.14,1,0.29,6106,114.191193,123.860485,133.623202,140.008561,I,Above,Flat,0,5701,Wood,33.43708556,0,0,,,,1,1,,0.03,nav,1,1905,2,, 2134,NJBF000068938,120 N TEXAS AVE,Atlantic City,NJ,39.3580795,-74.444722,RES3A,3001,,45,NE,1900,1900,3301,2,2,747.4065907,747.4065907,3505,YES,40.42,48.27,3,1.57,6106,114.320978,123.967889,133.741515,140.093044,I,Above,Hip,0,5701,Wood,44.34413754,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2135,NJBF000068800,122 N CALIFORNIA AVE,Atlantic City,NJ,39.35764997,-74.44647531,COM1,3003,100,NaN,ME,1969,0,3401,1,1,1592.752677,1592.752677,3507,NO,16.49,26.91,1,2.38,6106,114.288204,123.94069,133.711496,140.071775,I,Above,Flat,0,NaN,Wood,21.69661042,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2136,NJBF000072881,835 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37540171,-74.42296013,RES3D,3001,,18,ME,2003,2003,3301,3,1,1688.056978,1688.056978,3507,NO,50.27,59.3,1,2.42,6106,114.584025,124.182536,133.991827,140.187819,I,Above,Hip,0,NaN,Wood,54.78718736,0,0,,,,1,1,,0.03,nav,1,2003,3,, 2137,NJBF000071771,2201 GRAMMERCY AVE,Atlantic City,NJ,39.37158042,-74.45028056,RES1,3001,,17,NE,1965,1965,3101,2,1,1853.330505,1853.330505,3505,NO,31.43,43.57,3,-1.4,6106,114.040083,123.723461,133.48461,139.801922,I,Above,Gable,0,5701,Wood,37.50092291,0,0,,,,1,1,,0.03,nav,1,1965,2,, 2138,NJBF000071737,1607 COLUMBIA AVE,Atlantic City,NJ,39.37145036,-74.45056751,RES1,3001,,17,NE,1900,1900,3101,1,1,2271.91702,2271.91702,3505,NO,18.49,33.4,3,1.09,6106,114.03534,123.719621,133.480342,139.799141,I,Above,Gable,0,5701,Wood,25.94627104,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2139,NJBF000070528,10 BELLE HAVEN CT,Atlantic City,NJ,39.36747152,-74.41354342,RES3D,3004,,33,E,1900,1900,3303,2,1,1266.544882,1266.544882,3505,YES,38.3,44.75,3,3.08,6106,114.876549,124.437964,134.267363,140.44442,I,Above,Flat,0,NaN,Wood,41.52460635,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2140,NJBF000067646,40 N BOSTON AVE,Atlantic City,NJ,39.35406415,-74.45285971,RES3B,3001,,45,E,1900,1900,3303,4,4,1422.921239,1422.921239,3507,YES,77.48,92.09,1,-0.14,6106,114.193643,123.863524,133.62456,140.024213,I,Above,Gable,0,NaN,Wood,84.78874609,0,0,,,,1,1,,0.03,nav,1,1900,4,, 2141,NJBF000068942,2827 FENTON PL,Atlantic City,NJ,39.358093,-74.448262,RES3A,3001,100,NaN,NE,1969,0,3301,1,1,3658.13725,3658.13725,3505,NO,22.44,33.14,3,4.85,6106,114.243935,123.903571,133.671443,140.037002,I,Above,Flat,0,5701,Wood,27.78996271,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2142,NJBF000071692,1004 SEWELL AVE,Atlantic City,NJ,39.37130103,-74.42825062,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4867.819462,4867.819462,3505,NO,37.5,50.63,3,7.22,6106,114.518311,124.128354,133.928655,140.162032,I,Above,Flat,0,NaN,Wood,44.06211818,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2143,NJBF000068156,10 N CALIFORNIA AVE,Atlantic City,NJ,39.355837,-74.444825,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1097.350445,1097.350445,3507,NO,23.56,34.33,1,-0.12,6106,114.346387,123.989957,133.763594,140.124191,I,Above,Flat,0,NaN,Wood,28.94772901,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2144,NJBF000065130,106 S DELANCY PL,Atlantic City,NJ,39.34620774,-74.46068832,RES3A,3001,,18,NE,1930,1930,3301,2,1,2658.420484,2658.420484,3504,NO,30.99,44.22,-4,0,6106,114.12247,123.80725,133.556879,140.019046,I,Above,Hip,0,5701,Wood,37.60251906,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2145,NJBF000072386,1624 EMERSON AVE,Atlantic City,NJ,39.37347854,-74.45064162,RES1,3001,,17,NE,1900,1900,3101,1,1,1302.988585,1302.988585,3505,NO,14.4,21,3,2.1,6106,114.010597,123.696789,133.45658,139.767181,I,Above,Gable,0,5701,Wood,17.70158299,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2146,NJBF000065486,9 S KINGSTON AVE,Atlantic City,NJ,39.3472305,-74.4630164,RES3A,3001,,45,NE,1925,1925,3301,2,2,1781.406491,1781.406491,3505,YES,21.07,35.32,3,-2.53,6106,114.058248,123.75426,133.500679,139.966735,I,Above,Hip,0,5701,Wood,28.19583264,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2147,NJBF000071465,610 DREXEL AVE,Atlantic City,NJ,39.37068029,-74.42155256,RES1,3001,,33,NE,1900,1900,3102,2,1,560.1963707,560.1963707,3505,YES,29.21,36.1,3,5.01,6106,114.668573,124.257589,134.070788,140.27616,I,Above,Gable,0,5701,Wood,32.65940359,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2148,NJBF000069213,721 WISTERIA RD,Atlantic City,NJ,39.359191,-74.4627515,RES1,3001,,16,NE,1900,1900,3101,1,1,609.5106931,609.5106931,3505,NO,19.16,30.63,3,7.87,6106,113.914106,123.629769,133.375251,139.785646,I,Above,Gable,0,5701,Wood,24.89253562,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2149,NJBF000069185,721 WISTERIA RD,Atlantic City,NJ,39.35911195,-74.46281481,RES1,3001,,16,NE,1900,1900,3101,1,1,795.4842526,795.4842526,3505,NO,24.35,33.34,3,6.51,6106,113.913664,123.629463,133.374871,139.785815,I,Above,Flat,0,5701,Wood,28.84416319,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2150,NJBF000068609,213 N CHELSEA AVE,Atlantic City,NJ,39.35722958,-74.4510515,RES3A,3001,,45,NE,1900,1900,3301,2,2,2101.83942,2101.83942,3507,YES,23.49,31.27,1,0.12,6106,114.193814,123.862271,133.625813,140.005559,I,Above,Gable,0,5701,Wood,27.37995107,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2151,NJBF000070535,301 N NORTH CAROLINA AVE,Atlantic City,NJ,39.3674942,-74.42822076,RES1,3001,,27,NE,2006,2006,3103,2,2,2106.307915,2106.307915,3505,NO,31.59,40.9,3,0.81,6106,114.563533,124.168814,133.969996,140.216498,I,Above,Hip,0,5701,Wood,36.24752815,0,0,,,,1,1,,0.03,nav,1,2006,2,, 2152,NJBF000070854,1011 N MICHIGAN AVE,Atlantic City,NJ,39.36864677,-74.44188086,RES3A,3001,,33,NE,1926,1926,3301,2,1,1163.21542,1163.21542,3505,YES,42.05,55.29,3,5.42,6106,114.25602,123.907365,133.683762,139.982886,I,Above,Flat,0,5701,Wood,48.67265902,0,0,,,,1,1,,0.03,nav,1,1926,2,, 2153,NJBF000066313,3829 ATLANTIC AVE,Atlantic City,NJ,39.34945521,-74.45582111,RES3A,3001,738,NaN,NE,1969,0,3301,3,1,5769.944629,5769.944629,3504,YES,41.92,54.62,-4,0,6106,114.187172,123.859725,133.616451,140.046509,I,Above,Flat,0,5701,Wood,48.26886512,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2154,NJBF000070940,218 N NEW JERSEY AVE,Atlantic City,NJ,39.36893602,-74.4216791,RES3B,3004,,33,ME,1900,1900,3301,2,1,2133.762091,2133.762091,3507,YES,30.07,42.35,1,1.8,6106,114.68633,124.273479,134.086766,140.298484,I,Above,Gable,0,NaN,Wood,36.21268504,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2155,NJBF000066203,3 S ANNAPOLIS AVE,Atlantic City,NJ,39.34918494,-74.45876451,RES3A,3001,,45,NE,1900,1900,3301,3,3,1606.009983,1606.009983,3504,YES,34.48,44.66,-4,0,6106,114.126263,123.809583,133.562014,140.004298,I,Above,Hip,0,5701,Wood,39.5685216,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2156,NJBF000066565,113 N DELANCY PL,Atlantic City,NJ,39.3500972,-74.46328393,RES3A,3001,,45,NE,1900,1900,3301,3,2,2068.476653,2068.476653,3505,YES,41.23,46.37,3,7.74,6106,114.015643,123.718328,133.464327,139.918295,I,Above,Hip,0,5701,Wood,43.80036736,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2157,NJBF000071493,627 DREXEL AVE,Atlantic City,NJ,39.37076558,-74.42217597,RES1,3001,,33,NE,1900,1900,3102,2,1,828.4991997,828.4991997,3505,YES,32.45,44.49,3,1.13,6106,114.654293,124.245266,134.057244,140.265208,I,Above,Flat,0,5701,Wood,38.46984012,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2158,NJBF000071501,625 DREXEL AVE,Atlantic City,NJ,39.3707834,-74.42212758,RES1,3001,,33,NE,1900,1900,3102,2,1,803.1317001,803.1317001,3505,YES,43.88,53.71,3,4.99,6106,114.655118,124.245969,134.058036,140.265722,I,Above,Flat,0,5701,Wood,48.79292747,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2159,NJBF000071510,623 DREXEL AVE,Atlantic City,NJ,39.37080169,-74.42207889,RES1,3001,,33,NE,1900,1900,3102,2,1,821.9670837,821.9670837,3505,YES,31.81,41.63,3,-0.6,6106,114.65594,124.246669,134.058827,140.266224,I,Above,Flat,0,5701,Wood,36.72363223,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2160,NJBF000071517,621 DREXEL AVE,Atlantic City,NJ,39.37081135,-74.42202263,RES1,3001,,33,NE,1900,1900,3102,2,1,726.1183685,726.1183685,3505,YES,22.24,28.96,3,-1.12,6106,114.657029,124.247602,134.059866,140.266976,I,Above,Flat,0,5701,Wood,25.59782402,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2161,NJBF000069513,1518 ATLANTIC AVE,Atlantic City,NJ,39.36111126,-74.42976952,COM1,3003,100,NaN,ME,1969,0,3401,3,1,42734.02717,42734.02717,3507,YES,49.52,58.36,1,0.45,6106,114.606716,124.207665,134.006836,140.28236,I,Above,Flat,0,NaN,Wood,53.93812611,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2162,NJBF000072669,1812 E RIVERSIDE DR,Atlantic City,NJ,39.37445367,-74.44435711,RES1,3001,,45,NE,1922,1922,3102,2,2,1384.03766,1384.03766,3505,YES,24.52,33.25,3,-2.63,6106,114.135675,123.800925,133.571064,139.856448,I,Above,Hip,0,5701,Wood,28.88311921,0,0,,,,1,1,,0.03,nav,1,1922,2,, 2163,NJBF000071751,1501 MARMORA AVE,Atlantic City,NJ,39.37150854,-74.43736782,GOV1,3004,,NaN,E,1969,0,3401,3,1,930.7832107,930.7832107,3507,NO,44.33,54.6,1,2.08,6106,114.32016,123.959476,133.742994,140.01357,I,Above,Flat,0,NaN,Wood,49.46387406,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2164,NJBF000073002,425 CARSON AVE,Atlantic City,NJ,39.37639372,-74.42289227,RES3D,3001,,NaN,ME,1969,0,3301,1,1,1076.497884,1076.497884,3507,NO,16.55,23.18,1,-0.76,6102,114.574153,124.173451,133.982574,140.174922,I,Above,Flat,0,NaN,Wood,19.86350583,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2165,NJBF000072000,1510 N ARKANSAS AVE,Atlantic City,NJ,39.3722363,-74.44838151,RES1,3001,,17,NE,1986,1986,3102,1,1,1277.06259,1277.06259,3505,NO,21.51,33.6,3,5.13,6106,114.073783,123.751052,133.51514,139.823396,I,Above,Gable,0,5701,Wood,27.55373324,0,0,,,,1,1,,0.03,nav,1,1986,1,, 2166,NJBF000072303,734 MAGELLAN AVE,Atlantic City,NJ,39.3732185,-74.4254625,RES1,3001,,27,NE,1925,1925,3102,2,2,1142.913663,1142.913663,3505,YES,24.83,37.85,3,0.14,6106,114.555738,124.159395,133.964479,140.178983,I,Above,Flat,0,5701,Wood,31.34262857,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2167,NJBF000066652,105 N LACLEDE PL,Atlantic City,NJ,39.350357,-74.46167,RES3A,3001,,17,NE,1900,1900,3301,2,1,865.5153704,865.5153704,3505,NO,22.11,36.81,3,-2.73,6106,114.047721,123.744568,133.492823,139.940229,I,Above,Flat,0,5701,Wood,29.46411656,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2168,NJBF000067534,12 N SOVEREIGN AVE,Atlantic City,NJ,39.35375109,-74.4514615,RES3B,3001,,45,ME,1910,1910,3301,2,3,1505.552155,1505.552155,3504,NO,21.11,28.83,-4,0,6106,114.228049,123.892174,133.655387,140.050936,I,Above,Hip,0,NaN,Wood,24.97066924,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2169,NJBF000068289,3011 LANDMARK COURT,Atlantic City,NJ,39.35623849,-74.45004314,RES3A,3001,,33,NE,1987,1987,3301,2,1,9050.789277,9050.789277,3505,NO,40.46,50.84,3,6.19,6106,114.228018,123.891157,133.656395,140.036346,I,Above,Hip,0,5701,Wood,45.65039365,0,0,,,,1,1,,0.03,nav,1,1987,2,, 2170,NJBF000071336,124 FOLSOM AVE,Atlantic City,NJ,39.37026418,-74.41529229,RES3D,3004,,28,E,1998,1998,3303,2,2,2474.216472,2474.216472,3505,NO,22.09,34.89,3,-0.38,6106,114.806528,124.376846,134.202391,140.379376,I,Above,Hip,0,NaN,Wood,28.49297629,0,0,,,,1,1,,0.03,nav,1,1998,2,, 2171,NJBF000066199,59 S ELBERON AVE,Atlantic City,NJ,39.34917397,-74.45652181,RES3A,3001,,45,NE,1900,1900,3301,3,2,2105.875544,2105.875544,3504,NO,54.45,59.96,-4,0,6106,114.175444,123.850124,133.605816,140.039732,I,Above,Hip,0,5701,Wood,57.20337064,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2172,NJBF000067287,4 N PROVIDENCE AVE,Atlantic City,NJ,39.35291561,-74.45332559,RES3B,3001,,NaN,E,1969,0,3303,3,1,1624.213774,1624.213774,3507,YES,39.35,47.32,1,1.14,6106,114.197848,123.867445,133.627838,140.034009,I,Above,Gable,0,NaN,Wood,43.33536174,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2173,NJBF000064952,115 S KINGSTON AVE,Atlantic City,NJ,39.34574688,-74.46181241,RES3A,3001,,45,NE,1920,1920,3301,2,2,1802.714036,1802.714036,3504,NO,34.61,47.75,-4,0,6106,114.103835,123.792047,133.540083,140.008389,I,Above,Hip,0,5701,Wood,41.18127956,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2174,NJBF000070814,916 N OHIO AVE,Atlantic City,NJ,39.36853023,-74.44060925,RES3B,3001,,29,ME,1915,1915,3301,2,2,1811.449416,1811.449416,3505,YES,20.25,30.36,3,-1.59,6106,114.284872,123.931776,133.710416,140.005075,I,Above,Flat,0,5701,Wood,25.3020122,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2175,NJBF000066623,50 N ANNAPOLIS AVE,Atlantic City,NJ,39.35027383,-74.46003973,RES3A,3001,,16,NE,1925,1925,3301,1,1,966.4898495,966.4898495,3505,NO,25.4,37.19,3,7.91,6106,114.084481,123.774827,133.525405,139.967543,I,Above,Flat,0,5701,Wood,31.29142413,0,0,,,,1,1,,0.03,nav,1,1925,1,, 2176,NJBF000070877,122 N CONGRESS AVE,Atlantic City,NJ,39.36872056,-74.41907594,RES3D,3004,,17,E,1900,1900,3303,2,1,577.8173621,577.8173621,3505,NO,30.61,36.17,3,3.12,6106,114.744292,124.323445,134.141802,140.341928,I,Above,Hip,0,NaN,Wood,33.39386285,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2177,NJBF000070232,16 S RHODE ISLAND AVE #C,Atlantic City,NJ,39.366342,-74.415571,RES3D,3004,,45,E,1900,1900,3303,2,2,2341.414754,2341.414754,3505,YES,27.18,35.88,3,-2.72,6106,114.846973,124.412503,134.238011,140.428639,I,Above,Flat,0,NaN,Wood,31.53258054,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2178,NJBF000066647,57 N WINDSOR AVE,Atlantic City,NJ,39.35034653,-74.46028482,RES3A,3001,,45,NE,1900,1900,3301,2,2,1009.951008,1009.951008,3505,NO,40.72,53.56,3,3.42,6106,114.078189,123.769623,133.519848,139.962525,I,Above,Hip,0,5701,Wood,47.14349068,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2179,NJBF000069914,1537 C MORRIS CAIN PL,Atlantic City,NJ,39.36496462,-74.43272294,RES3D,3004,,17,E,1900,1900,3303,3,1,797.2754822,797.2754822,3505,NO,64.56,74.32,3,6.81,6106,114.49692,124.113185,133.906572,140.181854,I,Above,Gable,0,NaN,Wood,69.43726286,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2180,NJBF000066503,4011 VENTNOR AVE,Atlantic City,NJ,39.34991536,-74.4587147,COM1,3004,100,NaN,ME,1969,0,3401,2,1,1129.833577,1129.833577,3507,YES,26.48,38.69,1,1.91,6106,114.118048,123.802585,133.55508,139.994039,I,Above,Flat,0,NaN,Wood,32.58504961,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2181,NJBF000070941,812 N INDIANA AVE,Atlantic City,NJ,39.36893964,-74.43930079,RES1,3001,,17,NE,1960,1960,3102,2,1,1273.687485,1273.687485,3505,NO,28.05,41.67,3,-0.54,6106,114.30832,123.951288,133.732109,140.020063,I,Above,Flat,0,5701,Wood,34.85664852,0,0,,,,1,1,,0.03,nav,1,1960,2,, 2182,NJBF000070822,,Atlantic City,NJ,39.36854667,-74.42178066,RES3B,3004,,NaN,ME,1969,0,3301,2,1,4810.261029,4810.261029,3507,NO,31.84,39.65,1,0.51,6106,114.688736,124.275672,134.088829,140.302306,I,Above,Hip,0,NaN,Wood,35.74152824,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2183,NJBF000070449,1611 WABASH AVE,Atlantic City,NJ,39.367184,-74.4351675,RES1,3001,,16,NE,1900,1900,3101,1,1,1089.668703,1089.668703,3505,NO,16.47,25.32,3,2.24,6106,114.418006,124.04519,133.833771,140.111473,I,Above,Gable,0,5701,Wood,20.89214049,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2184,NJBF000068952,2501 ARCTIC AVE,Atlantic City,NJ,39.35813613,-74.44312074,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,1274.033522,1274.033522,3505,NO,27.57,34.99,3,-1.88,6106,114.355005,123.99634,133.772604,140.117345,I,Above,Hip,0,NaN,Wood,31.28125662,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2185,NJBF000067423,18 N BOSTON AVE,Atlantic City,NJ,39.35342361,-74.45250803,RES3B,3001,,45,E,1920,1920,3303,3,2,1864.519587,1864.519587,3507,YES,34.42,39.57,1,0.89,6106,114.20932,123.876763,133.638379,140.03932,I,Above,Hip,0,NaN,Wood,36.99703127,0,0,,,,1,1,,0.03,nav,1,1920,3,, 2186,NJBF000071617,2233 GRAMMERCY AVE,Atlantic City,NJ,39.37107493,-74.45051956,RES1,3001,,16,NE,1900,1900,3101,1,1,1603.313977,1603.313977,3505,NO,19.65,28.86,3,1.97,6106,114.040686,123.724468,133.48541,139.805611,I,Above,Gable,0,5701,Wood,24.25606908,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2187,NJBF000071279,623 MEDITERRANEAN AVE,Atlantic City,NJ,39.37004564,-74.42194498,RES1,3001,,39,NE,1991,1991,3102,2,1,2389.328051,2389.328051,3505,NO,32.36,44.25,3,7.95,6106,114.667633,124.257016,134.069585,140.278872,I,Above,Flat,0,5701,Wood,38.30506233,0,0,,,,1,1,,0.03,nav,1,1991,2,, 2188,NJBF000072547,2000 KUEHNLE AVE,Atlantic City,NJ,39.3740503,-74.45075005,RES1,3001,,17,NE,1998,1998,3102,2,1,1277.341423,1277.341423,3505,NO,28.85,37.56,3,-2.25,6106,114.001787,123.688782,133.448153,139.756729,I,Above,Flat,0,5701,Wood,33.20483316,0,0,,,,1,1,,0.03,nav,1,1998,2,, 2189,NJBF000065656,14 N TALLAHASSEE AVE,Atlantic City,NJ,39.34772563,-74.4653606,RES3A,3001,,18,NE,1900,1900,3301,2,1,1186.927004,1186.927004,3505,YES,40.31,53.78,3,4.39,6106,114.000427,123.706716,133.449925,139.92159,I,Above,Hip,0,5701,Wood,47.04308618,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2190,NJBF000068620,220 N CHELSEA AVE,Atlantic City,NJ,39.3572525,-74.451608,RES3A,3001,,45,NE,1900,1900,3301,2,2,1706.954588,1706.954588,3507,YES,30.81,38.56,1,0.94,6106,114.181418,123.851961,133.614628,139.996363,I,Above,Gable,0,5701,Wood,34.68835356,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2191,NJBF000069715,20 S VIRGINIA AVE,Atlantic City,NJ,39.36324289,-74.42277769,COM1,3003,100,NaN,ME,1969,0,3401,1,1,3676.832861,3676.832861,3507,NO,20.58,29.7,1,2.57,6106,114.73065,124.312908,134.12482,140.360404,I,Above,Flat,0,NaN,Wood,25.1397898,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2192,NJBF000067494,21 N PROVIDENCE #1,Atlantic City,NJ,39.35364901,-74.45334733,RES3B,3001,,33,E,1920,1920,3303,3,1,1149.806872,1149.806872,3507,NO,42.86,56.05,1,1.54,6106,114.188207,123.859183,133.619502,140.022722,I,Above,Hip,0,NaN,Wood,49.45913457,0,0,,,,1,1,,0.03,nav,1,1920,3,, 2193,NJBF000066648,15 TRENTON TERR,Atlantic City,NJ,39.35034696,-74.45608314,RES3A,3001,,17,NE,1900,1900,3301,2,1,1054.960439,1054.960439,3504,NO,38.39,48.5,-4,0,6106,114.170097,123.845366,133.601703,140.029049,I,Above,Flat,0,5701,Wood,43.44162878,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2194,NJBF000068193,30 N IOWA AVE,Atlantic City,NJ,39.35596852,-74.44659932,RES3B,3001,,45,ME,1900,1900,3301,2,2,1989.096035,1989.096035,3504,NO,25.5,32.47,-4,0,6106,114.306239,123.956401,133.727154,140.094524,I,Above,Flat,0,NaN,Wood,28.98831646,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2195,NJBF000069890,333 N OHIO AVE,Atlantic City,NJ,39.3648093,-74.43757161,RES3B,3001,,27,ME,2000,2000,3301,2,2,1749.969107,1749.969107,3505,NO,28.6,36.32,3,3.03,6106,114.394349,124.026431,133.81123,140.107758,I,Above,Flat,0,NaN,Wood,32.46274475,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2196,NJBF000066602,3939 VENTNOR AVE,Atlantic City,NJ,39.35020799,-74.4580967,COM1,3004,29,NaN,ME,1969,0,3401,4,1,5906.276299,5906.276299,3507,NO,77.54,86.36,1,2.55,6106,114.127839,123.810555,133.56394,139.999383,I,Above,Flat,0,NaN,Wood,81.9512872,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2197,NJBF000068008,8 N IOWA AVE,Atlantic City,NJ,39.35531997,-74.44617737,RES3B,3001,,17,ME,1910,1910,3301,2,1,1023.007133,1023.007133,3504,NO,21.81,33.48,-4,0,6106,114.32345,123.970984,133.742459,140.11063,I,Above,Flat,0,NaN,Wood,27.64065693,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2198,NJBF000070009,301 N KENTUCKY AVE,Atlantic City,NJ,39.36546445,-74.43327718,RES1,3001,,17,NE,1965,1965,3102,1,1,1128.557769,1128.557769,3505,NO,20.63,26.05,3,5.76,6106,114.479066,124.097819,133.890126,140.166027,I,Above,Flat,0,5701,Wood,23.34044675,0,0,,,,1,1,,0.03,nav,1,1965,1,, 2199,NJBF000072790,1620 N OHIO AVE,Atlantic City,NJ,39.37493547,-74.44967455,RES1,3001,,17,NE,1900,1900,3102,1,1,1136.073719,1136.073719,3505,NO,10.97,19.91,3,-0.56,6106,114.015119,123.69898,133.459783,139.761237,I,Above,Gable,0,5701,Wood,15.44203161,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2200,NJBF000066248,4024 VENTNOR AVE,Atlantic City,NJ,39.349298,-74.4589095,COM1,3004,29,NaN,ME,1969,0,3401,3,1,1811.070059,1811.070059,3507,YES,34.36,43.83,1,1.98,6106,114.121648,123.805748,133.557969,140.000299,I,Above,Flat,0,NaN,Wood,39.09260793,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2201,NJBF000072317,728 MAGELLAN AVE,Atlantic City,NJ,39.37326195,-74.42533386,RES1,3001,,27,NE,1900,1900,3102,2,2,1393.277665,1393.277665,3505,YES,28.44,37.14,3,1.45,6106,114.557975,124.161294,133.96661,140.180401,I,Above,Flat,0,5701,Wood,32.79199486,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2202,NJBF000070689,615 GREEN ST,Atlantic City,NJ,39.368061,-74.435839,RES1,3001,,16,NE,1900,1900,3101,1,1,1140.825635,1140.825635,3505,NO,19.45,28.47,3,6.04,6106,114.393239,124.023704,133.810887,140.08815,I,Above,Hip,0,5701,Wood,23.95924669,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2203,NJBF000070079,,Atlantic City,NJ,39.3657216,-74.42857054,RES3D,3004,,NaN,E,1969,0,3303,4,1,2534.404337,2534.404337,3505,NO,76.15,83.96,3,8.62,6106,114.577037,124.181023,133.981855,140.23606,I,Above,Flat,0,NaN,Wood,80.05685619,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2204,NJBF000069893,1528 C MORRIS CAIN PL,Atlantic City,NJ,39.36482361,-74.43244548,RES3D,3004,,33,E,1900,1900,3303,2,1,4026.054672,4026.054672,3505,YES,35.12,49.08,3,0.2,6106,114.504578,124.119742,133.913653,140.188223,I,Above,Gable,0,NaN,Wood,42.10115567,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2205,NJBF000069224,2311 ARCTIC AVE,Atlantic City,NJ,39.35923098,-74.44113943,RES3B,3001,,45,ME,1900,1900,3301,3,3,2938.037591,2938.037591,3505,YES,54.05,64.31,3,0.45,6106,114.384531,124.020672,133.800145,140.132475,I,Above,Gable,0,NaN,Wood,59.18219427,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2206,NJBF000068187,2907 ARCTIC AVE,Atlantic City,NJ,39.35593734,-74.44866751,RES3A,3001,,17,NE,1924,1924,3301,1,1,1445.06895,1445.06895,3505,NO,17.74,31.63,3,5.92,6106,114.261661,123.919271,133.686714,140.062501,I,Above,Hip,0,5701,Wood,24.68385934,0,0,,,,1,1,,0.03,nav,1,1924,1,, 2207,NJBF000068172,2909 ARCTIC AVE,Atlantic City,NJ,39.35589375,-74.44878425,RES3A,3001,,16,NE,1920,1920,3301,1,1,1438.583373,1438.583373,3505,NO,10.1,21.88,3,-0.44,6106,114.25967,123.917631,133.684893,140.06131,I,Above,Flat,0,5701,Wood,15.99251271,0,0,,,,1,1,,0.03,nav,1,1920,1,, 2208,NJBF000072796,1528 PENROSE AVE,Atlantic City,NJ,39.37496597,-74.44772685,RES1,3001,,NaN,NE,1969,0,3102,1,1,869.1192271,869.1192271,3505,YES,18.13,29.38,3,1.35,6106,114.056979,123.734116,133.498223,139.79314,I,Above,Gable,0,5701,Wood,23.75519484,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2209,NJBF000070225,2013 BLAINE AVE,Atlantic City,NJ,39.36630434,-74.44123352,RES3B,3001,,17,ME,1900,1900,3301,2,1,997.0586337,997.0586337,3505,NO,25.22,38.21,3,2.97,6106,114.297529,123.943928,133.722045,140.027741,I,Above,Hip,0,5701,Wood,31.71781695,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2210,NJBF000069911,38 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36494567,-74.4255508,COM1,3003,,NaN,ME,1969,0,3401,3,1,2417.304981,2417.304981,3507,NO,44.74,58.08,1,0.61,6106,114.650956,124.24436,134.050903,140.293934,I,Above,Gable,0,NaN,Wood,51.40839682,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2211,NJBF000069845,30 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36448442,-74.42547904,COM1,3003,100,NaN,ME,1969,0,3401,2,1,3118.619614,3118.619614,3507,YES,28.02,42.43,1,-0.49,6106,114.658022,124.250523,134.057254,140.3015,I,Above,Flat,0,NaN,Wood,35.22530659,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2212,NJBF000067864,448 RIDGEWAY RD,Atlantic City,NJ,39.35481672,-74.4632478,RES1,3001,,16,NE,1900,1900,3102,2,1,958.5539611,958.5539611,3505,YES,35.32,50.1,3,-2.83,6106,113.957025,123.667919,133.413511,139.845608,I,Above,Hip,0,5701,Wood,42.7118108,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2213,NJBF000072466,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37376729,-74.41966154,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6906.464184,6906.464184,3505,NO,24.68,36.67,3,7.39,6106,114.672983,124.260144,134.076326,140.262786,I,Above,Hip,0,NaN,Wood,30.67299744,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2214,NJBF000072068,1609 BEACH AVE,Atlantic City,NJ,39.37249683,-74.45021977,RES1,3001,,17,NE,1965,1965,3102,1,1,1766.311854,1766.311854,3505,NO,19.04,24.59,3,2.69,6106,114.030925,123.714858,133.475754,139.789058,I,Above,Gable,0,5701,Wood,21.81435564,0,0,,,,1,1,,0.03,nav,1,1965,1,, 2215,NJBF000068133,25 S FLORIDA AVE,Atlantic City,NJ,39.35574817,-74.44113108,COM1,3003,,45,ME,1925,1925,3401,3,4,1193.639114,1193.639114,3507,YES,44.49,52.35,1,-0.96,6106,114.427546,124.05789,133.837619,140.18289,I,Above,Flat,0,NaN,Wood,48.42029125,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2216,NJBF000072364,714 MAGELLAN AVE,Atlantic City,NJ,39.37340948,-74.42498026,RES1,3001,,27,NE,1925,1925,3102,2,2,1332.074395,1332.074395,3505,YES,36.79,46.55,3,-1.46,6106,114.563836,124.166251,133.972205,140.183928,I,Above,Gable,0,5701,Wood,41.67149575,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2217,NJBF000068528,2651 ATLANTIC AVE,Atlantic City,NJ,39.35702126,-74.44480671,REL1,3004,,NaN,ME,1969,0,3401,2,1,9596.874873,9596.874873,3507,NO,29.62,39.54,1,2.02,6106,114.332151,123.977643,133.751226,140.107199,I,Above,Flat,0,NaN,Wood,34.5808843,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2218,NJBF000068455,2651 ATLANTIC AVE,Atlantic City,NJ,39.35681237,-74.44501665,REL1,3004,,NaN,ME,1969,0,3401,3,1,3527.841479,3527.841479,3507,NO,48.47,57.97,1,1.56,6106,114.330171,123.976066,133.749323,140.106964,I,Above,Flat,0,NaN,Wood,53.22029219,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2219,NJBF000068376,2651 ATLANTIC AVE,Atlantic City,NJ,39.35655321,-74.44463254,REL1,3004,,NaN,ME,1969,0,3401,3,1,8768.633341,8768.633341,3507,NO,41.47,54.54,1,0.03,6106,114.341698,123.985793,133.759696,140.116753,I,Above,Gable,0,NaN,Wood,48.008166,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2220,NJBF000068241,2651 ATLANTIC AVE,Atlantic City,NJ,39.35611364,-74.44427874,REL1,3004,,NaN,ME,1969,0,3401,2,1,8415.998949,8415.998949,3507,NO,36.16,45.57,1,1.8,6106,114.354803,123.996896,133.771408,140.128676,I,Above,Flat,0,NaN,Wood,40.86455572,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2221,NJBF000068003,420 N HARRISBURG AVE,Atlantic City,NJ,39.35530675,-74.46078938,RES1,3001,,27,NE,1920,1920,3102,2,2,1422.220944,1422.220944,3505,YES,40.35,46.05,3,2.57,6106,114.004849,123.706975,133.456032,139.878193,I,Above,Flat,0,5701,Wood,43.1993784,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2222,NJBF000070631,1321 ADRIATIC AVE,Atlantic City,NJ,39.36786405,-74.43144698,RES1,3001,,17,NE,1930,1930,3103,1,1,1845.039597,1845.039597,3505,NO,25.76,31.52,3,7.97,6106,114.489988,124.105967,133.901134,140.160525,I,Above,Flat,0,5701,Wood,28.63826436,0,0,,,,1,1,,0.03,nav,1,1930,1,, 2223,NJBF000065432,3 S ABERDEEN PL,Atlantic City,NJ,39.34706726,-74.46337807,RES3A,3001,,45,NE,1925,1925,3301,2,2,2431.302064,2431.302064,3505,YES,36.24,44.09,3,-1.25,6106,114.052428,123.749533,133.49545,139.963496,I,Above,Hip,0,5701,Wood,40.16795056,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2224,NJBF000066331,46 N LACLEDE PL,Atlantic City,NJ,39.34948729,-74.46147214,RES3A,3001,,27,NE,1900,1900,3301,2,2,1213.21395,1213.21395,3505,YES,34.16,44.86,3,-1.59,6106,114.06314,123.757559,133.506123,139.956745,I,Above,Flat,0,5701,Wood,39.50950575,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2225,NJBF000072116,645 CASPIAN AVE,Atlantic City,NJ,39.37263732,-74.42375884,RES1,3001,,16,NE,1952,1952,3102,1,1,856.7942409,856.7942409,3505,NO,22.28,30.79,3,4.43,6106,114.5988,124.196706,134.005205,140.214102,I,Above,Gable,0,5701,Wood,26.53474964,0,0,,,,1,1,,0.03,nav,1,1952,1,, 2226,NJBF000072723,408 N MAINE AVE,Atlantic City,NJ,39.37468205,-74.41581063,RES3C,3001,,18,ME,2007,2007,3301,3,1,2672.397205,2672.397205,3505,NO,53.56,62.52,3,4.55,6106,114.744179,124.321447,134.145043,140.310532,I,Above,Flat,0,NaN,Wood,58.04370225,0,0,,,,1,1,,0.03,nav,1,2007,3,, 2227,NJBF000070314,,Atlantic City,NJ,39.3666678,-74.4229471,RES1,3001,,NaN,NE,1969,0,3102,2,1,2230.830442,2230.830442,3505,NO,21.22,27.34,3,-2.02,6106,114.686088,124.273956,134.085176,140.31032,I,Above,Gable,0,5701,Wood,24.28052063,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2228,NJBF000069711,1102 ATLANTIC AVE,Atlantic City,NJ,39.36319513,-74.42459934,COM1,3003,,NaN,ME,1969,0,3401,2,1,9505.995056,9505.995056,3507,NO,24.95,39.31,1,-0.3,6106,114.692318,124.280129,134.088631,140.333036,I,Above,Hip,0,NaN,Wood,32.13316342,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2229,NJBF000070394,809 N ARKANSAS AVE,Atlantic City,NJ,39.36693848,-74.44227624,RES3B,3001,,33,ME,1902,1902,3301,2,1,733.7181909,733.7181909,3505,YES,35.97,46.17,3,-0.91,6106,114.267519,123.918249,133.694417,140.001723,I,Above,Gable,0,5701,Wood,41.06992246,0,0,,,,1,1,,0.03,nav,1,1902,2,, 2230,NJBF000072906,839 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37556927,-74.42304812,RES3D,3001,,18,ME,2006,2006,3301,3,1,1440.032709,1440.032709,3507,NO,58.67,70.63,1,2.03,6106,114.580242,124.17918,133.98825,140.184071,I,Above,Gable,0,NaN,Wood,64.65072281,0,0,,,,1,1,,0.03,nav,1,2006,3,, 2231,NJBF000069650,1232 ATLANTIC AVE,Atlantic City,NJ,39.36247837,-74.42628745,COM1,3003,212,NaN,ME,1969,0,3401,1,1,18922.90083,18922.90083,3507,NO,14.51,19.88,1,1.96,6106,114.664845,124.256826,134.062254,140.316985,I,Above,Flat,0,NaN,Wood,17.19507523,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2232,NJBF000066106,41 S PARKER AVE,Atlantic City,NJ,39.34892034,-74.45785983,RES3A,3001,,45,NE,1900,1900,3301,2,2,1166.103042,1166.103042,3504,NO,38.48,48.75,-4,0,6106,114.149444,123.828757,133.582496,140.022548,I,Above,Flat,0,5701,Wood,43.61277713,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2233,NJBF000068210,3207 FAIRMOUNT AVE,Atlantic City,NJ,39.35601108,-74.45257887,RES3A,3001,649,NaN,NE,1969,0,3301,2,1,1948.128013,1948.128013,3507,YES,36.73,42.63,1,1.88,6106,114.175574,123.847704,133.609002,139.999519,I,Above,Hip,0,5701,Wood,39.6804549,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2234,NJBF000064897,4705 THERESA PL,Atlantic City,NJ,39.34560504,-74.46547963,RES3B,3001,,45,ME,1923,1923,3301,3,2,1315.70445,1315.70445,3504,YES,45.45,55.11,-4,0,6106,114.025265,123.727673,133.470692,139.952545,I,Above,Hip,0,NaN,Wood,50.27722522,0,0,,,,1,1,,0.03,nav,1,1923,3,, 2235,NJBF000067636,103 ALBION PL,Atlantic City,NJ,39.35403083,-74.44257391,RES3A,3004,,45,NE,1900,1900,3301,2,3,1488.916359,1488.916359,3505,NO,23.13,37.28,3,-0.31,6106,114.417657,124.050042,133.827426,140.185264,I,Above,Hip,0,5701,Wood,30.20418314,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2236,NJBF000068542,116 N IOWA AVE,Atlantic City,NJ,39.35705568,-74.44735158,RES3A,3001,,17,NE,1900,1900,3301,2,1,1489.4252,1489.4252,3505,NO,31.38,44.23,3,-1.18,6106,114.276457,123.93114,133.700589,140.066709,I,Above,Flat,0,5701,Wood,37.80176807,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2237,NJBF000071717,1501 N MISSOURI AVE,Atlantic City,NJ,39.37137703,-74.44830871,RES1,3001,,17,NE,1900,1900,3102,1,1,2018.482931,2018.482931,3505,NO,11.37,18.51,3,0.68,6106,114.085208,123.761472,133.526003,139.837529,I,Above,Hip,0,5701,Wood,14.93982959,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2238,NJBF000072023,1431 N ARKANSAS AVE,Atlantic City,NJ,39.37231963,-74.44735605,RES1,3001,,17,NE,1999,1999,3102,1,1,2316.049935,2316.049935,3505,NO,13.87,26.24,3,0.51,6106,114.095063,123.768835,133.53463,139.839042,I,Above,Flat,0,5701,Wood,20.05576848,0,1.1,,,,1,1,,0.03,nav,1,1999,1,, 2239,NJBF000070609,1306 ADRIATIC AVE,Atlantic City,NJ,39.36777013,-74.43075491,RES3C,3003,,NaN,E,1969,0,3305,7,1,618.347106,618.347106,3507,NO,121.09,131.56,1,0.48,6106,114.505948,124.119598,133.916052,140.172772,I,Above,Flat,0,NaN,Wood,126.3238197,0,0,,,,2,2,,0.03,nav,1,1969,7,, 2240,NJBF000072553,1507 MADISON AVE,Atlantic City,NJ,39.37406709,-74.44735779,RES1,3001,,17,NE,1900,1900,3102,2,1,1128.628773,1128.628773,3505,NO,41.79,55.86,3,7.71,6106,114.075133,123.750332,133.515443,139.812767,I,Above,Gable,0,5701,Wood,48.82841119,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2241,NJBF000067719,2639 PACIFIC AVE,Atlantic City,NJ,39.35426442,-74.44320867,RES3A,3004,282,NaN,NE,1969,0,3301,3,1,1915.110643,1915.110643,3505,YES,38.85,49.56,3,2.28,6106,114.400987,124.036046,133.812384,140.172096,I,Above,Hip,0,5701,Wood,44.20603075,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2242,NJBF000070773,908 N OHIO AVE,Atlantic City,NJ,39.36838315,-74.44049724,RES3B,3001,,33,ME,1900,1902,3301,2,1,2373.014422,2373.014422,3505,YES,32.55,42.72,3,8.41,6106,114.289011,123.93537,133.714245,140.009033,I,Above,Gable,0,5701,Wood,37.63702666,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2243,NJBF000068936,,Atlantic City,NJ,39.35807612,-74.43732166,COM1,3003,,NaN,ME,1969,0,3401,1,1,35343.79555,35343.79555,3507,NO,13.67,24.99,1,-0.43,6106,114.48117,124.102295,133.888359,140.208532,I,Above,Flat,0,NaN,Wood,19.3297916,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2244,NJBF000070663,415 N TENNESSEE AVE,Atlantic City,NJ,39.36797473,-74.4318256,RES1,3001,,45,NE,1900,1900,3103,2,2,724.9111877,724.9111877,3505,NO,31.77,38.44,3,-0.39,6106,114.480544,124.097876,133.892328,140.152959,I,Above,Flat,0,5701,Wood,35.10305207,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2245,NJBF000068753,217 N MORRIS AVE,Atlantic City,NJ,39.35754803,-74.45007612,RES3A,3001,,27,NE,1900,1900,3301,2,2,782.9377671,782.9377671,3507,YES,37.46,52.06,1,1.36,6106,114.211157,123.876538,133.641581,140.016327,I,Above,Gable,0,5701,Wood,44.75893096,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2246,NJBF000069643,1600 ARCTIC AVE,Atlantic City,NJ,39.36242152,-74.43169235,COM1,3003,,NaN,ME,1969,0,3401,2,1,4880.190819,4880.190819,3507,YES,34.12,48.5,1,2.58,6106,114.549574,124.158798,133.954385,140.234103,I,Above,Flat,0,NaN,Wood,41.31154931,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2247,NJBF000069206,208 N TEXAS AVE,Atlantic City,NJ,39.35916345,-74.44548244,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1329.364847,1329.364847,3505,YES,33.55,44.04,3,8.13,6106,114.291241,123.942558,133.714812,140.065176,I,Above,Gable,0,5701,Wood,38.7981603,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2248,NJBF000068440,108 N IOWA AVE #B,Atlantic City,NJ,39.35677229,-74.44716279,RES3A,3001,,45,NE,1920,1920,3301,2,3,1181.938036,1181.938036,3505,YES,33.43,40.69,3,3.8,6106,114.284064,123.9376,133.707379,140.073868,I,Above,Gable,0,5701,Wood,37.06191142,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2249,NJBF000066361,4315 WINCHESTER AVE,Atlantic City,NJ,39.3495629,-74.46291509,RES3A,3001,,27,NE,1920,1920,3301,2,2,1596.124447,1596.124447,3505,YES,23.81,32.06,3,0.27,6106,114.030541,123.730759,133.477295,139.932479,I,Above,Flat,0,5701,Wood,27.93502814,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2250,NJBF000069484,122 N MICHIGAN AVE,Atlantic City,NJ,39.36081338,-74.43711772,COM1,3003,101,NaN,ME,1969,0,3401,1,1,4058.358533,4058.358533,3507,NO,17.68,25.62,1,2.13,6106,114.452177,124.076981,133.863164,140.172519,I,Above,Flat,0,NaN,Wood,21.65102305,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2251,NJBF000069516,122 N MICHIGAN AVE,Atlantic City,NJ,39.36112897,-74.43730186,COM1,3003,101,NaN,ME,1969,0,3401,1,1,2377.98873,2377.98873,3507,NO,22.16,33.13,1,2.98,6106,114.444377,124.070286,133.856114,140.165105,I,Above,Flat,0,NaN,Wood,27.64315747,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2252,NJBF000072821,1827 N MICHIGAN AVE,Atlantic City,NJ,39.37507348,-74.45310431,RES1,3001,,17,NE,1962,1962,3101,1,1,1096.48866,1096.48866,3505,NO,19.49,32.09,3,0.45,6106,113.939146,123.635157,133.390147,139.701798,I,Above,Gable,0,5701,Wood,25.78917227,0,0,,,,1,1,,0.03,nav,1,1962,1,, 2253,NJBF000072711,1818 N MICHIGAN AVE,Atlantic City,NJ,39.374637,-74.452737,RES1,3001,,17,NE,1900,1900,3101,1,1,1132.477905,1132.477905,3505,NO,13.58,24.82,3,2.84,6106,113.95202,123.646442,133.402239,139.714601,I,Above,Flat,0,5701,Wood,19.20445769,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2254,NJBF000068385,3804 FILBERT AVE,Atlantic City,NJ,39.35657578,-74.46064056,RES1,3001,,45,NE,1900,1900,3102,1,2,1794.297102,1794.297102,3505,NO,18.69,31.22,3,5.48,6106,113.992392,123.695978,133.445057,139.861003,I,Above,Gable,0,5701,Wood,24.9582806,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2255,NJBF000068619,2 VICTORIA PL,Atlantic City,NJ,39.35725166,-74.44615922,RES3A,3001,,27,NE,1890,1890,3301,2,2,1323.675848,1323.675848,3505,YES,28.47,40.13,3,-0.99,6106,114.29996,123.950667,133.722026,140.082599,I,Above,Gable,0,5701,Wood,34.30258307,0,0,,,,1,1,,0.03,nav,1,1890,2,, 2256,NJBF000067468,3511 WINCHESTER AVE,Atlantic City,NJ,39.35358838,-74.45458722,RES3B,3001,,45,E,1900,1900,3303,3,2,1546.296869,1546.296869,3507,YES,58.99,72,1,1.98,6106,114.16191,123.837438,133.595876,140.004008,I,Above,Hip,0,NaN,Wood,65.49332763,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2257,NJBF000070227,501 N INDIANA AVE #B,Atlantic City,NJ,39.3663111,-74.43706713,RES1,3001,100,NaN,NE,1969,0,3101,2,1,984.9200226,984.9200226,3507,YES,39.91,52.5,1,2.91,6106,114.387408,124.019767,133.805158,140.093995,I,Above,Flat,0,5701,Wood,46.20354207,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2258,NJBF000070554,601 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36755876,-74.43627864,RES1,3001,,16,NE,1962,1962,3101,1,1,1098.820294,1098.820294,3505,NO,21.47,32.14,3,4.05,6106,114.389664,124.020969,133.807483,140.088424,I,Above,Hip,0,5701,Wood,26.80588262,0,0,,,,1,1,,0.03,nav,1,1962,1,, 2259,NJBF000071862,620 WABASH AVE,Atlantic City,NJ,39.3718395,-74.422679,RES1,3001,,45,NE,1900,1900,3102,2,3,2118.54793,2118.54793,3505,YES,30.16,40.15,3,-1.66,6106,114.631067,124.224834,134.035605,140.242292,I,Above,Hip,0,5701,Wood,35.15658949,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2260,NJBF000070518,1911 MAGELLAN AVE,Atlantic City,NJ,39.36745133,-74.44043185,RES3B,3001,,17,ME,1900,1900,3301,1,1,1598.504,1598.504,3505,NO,17.53,23.53,3,1.08,6106,114.301345,123.946403,133.725632,140.023749,I,Above,Gable,0,5701,Wood,20.52759394,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2261,NJBF000068934,566 N TRENTON AVE,Atlantic City,NJ,39.35807059,-74.46183454,RES1,3001,,27,NE,1900,1900,3101,2,2,1426.642418,1426.642418,3505,NO,33.65,47.56,3,-0.89,6106,113.947858,123.658343,133.405403,139.818234,I,Above,Gable,0,5701,Wood,40.60351653,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2262,NJBF000072411,2000 GRAMMERCY AVE,Atlantic City,NJ,39.3735565,-74.448962,RES1,3001,,17,NE,1900,1900,3102,1,1,1585.696569,1585.696569,3505,NO,17,28.01,3,0.76,6106,114.04617,123.726535,133.489124,139.793911,I,Above,Flat,0,5701,Wood,22.50462555,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2263,NJBF000068082,425 N HARRISBURG AVE,Atlantic City,NJ,39.3555775,-74.4604645,RES1,3001,,45,NE,1920,1920,3102,2,2,1200.961774,1200.961774,3505,NO,29.63,34.83,3,-0.87,6106,114.008586,123.7099,133.459391,139.879284,I,Above,Flat,0,5701,Wood,32.23279622,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2264,NJBF000068846,2506 ARCTIC AVE,Atlantic City,NJ,39.35776976,-74.44319836,RES3B,3001,,45,ME,1920,1920,3301,2,3,1419.390923,1419.390923,3505,NO,40.14,52.89,3,8.89,6106,114.357828,123.998841,133.775011,140.121468,I,Above,Flat,0,NaN,Wood,46.5158163,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2265,NJBF000068813,38 N FLORIDA AVE,Atlantic City,NJ,39.35768494,-74.44295731,RES3B,3001,,45,ME,1900,1915,3301,3,2,3664.430893,3664.430893,3505,YES,60.98,72.35,3,8.49,6106,114.364095,124.00412,133.780696,140.126474,I,Above,Hip,0,NaN,Wood,66.6618446,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2266,NJBF000066802,4020 WINCHESTER AVE,Atlantic City,NJ,39.35083462,-74.45953332,RES3A,3001,,17,NE,1925,1925,3301,2,1,733.0647184,733.0647184,3505,YES,31.93,45.9,3,1.75,6106,114.088459,123.777894,133.52918,139.967067,I,Above,Gable,0,5701,Wood,38.91511097,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2267,NJBF000066342,132 N BARTRAM AVE,Atlantic City,NJ,39.34952428,-74.46444649,RES3A,3001,,17,NE,1920,1920,3301,2,1,1353.848802,1353.848802,3505,NO,42,56.49,3,4.8,6106,113.997454,123.703634,133.448048,139.908424,I,Above,Hip,0,5701,Wood,49.24150118,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2268,NJBF000072064,500 N NEW JERSEY AVE,Atlantic City,NJ,39.37248502,-74.42413232,RES1,3001,,17,NE,1997,1997,3102,1,1,1198.4105,1198.4105,3505,NO,18.63,24.09,3,7.8,6106,114.592602,124.191451,133.999272,140.210359,I,Above,Gable,0,5701,Wood,21.36107621,0,0,,,,1,1,,0.03,nav,1,1997,1,, 2269,NJBF000064829,140 S BARTRAM AVE,Atlantic City,NJ,39.34543833,-74.46115485,RES3A,3001,,45,NE,1910,1910,3301,3,2,1417.682884,1417.682884,3504,YES,39.95,47.88,-4,0,6106,114.122236,123.807222,133.556154,140.02336,I,Above,Hip,0,5701,Wood,43.91484105,0,0,,,,1,1,,0.03,nav,1,1910,3,, 2270,NJBF000070753,711 N INDIANA AVE,Atlantic City,NJ,39.3683055,-74.4383895,RES1,3001,,17,NE,1900,1900,3102,2,1,879.1992054,879.1992054,3505,YES,42.05,54.79,3,6.92,6106,114.335423,123.974618,133.757213,140.043949,I,Above,Flat,0,5701,Wood,48.42139908,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2271,NJBF000070004,28 N MARYLAND AVE,Atlantic City,NJ,39.36542833,-74.4225679,COM1,3003,,45,ME,1900,1900,3401,2,2,1913.780257,1913.780257,3507,YES,37.62,50.87,1,-0.09,6106,114.708937,124.293867,134.105965,140.333408,I,Above,Flat,0,NaN,Wood,44.24916849,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2272,NJBF000072719,1411 PENROSE AVE,Atlantic City,NJ,39.3746651,-74.44523318,RES1,3001,,17,NE,1925,1925,3102,1,1,1498.065999,1498.065999,3505,NO,15.94,26.55,3,4.82,6106,114.114348,123.782731,133.551262,139.83888,I,Above,Gable,0,5701,Wood,21.24570883,0,0,,,,1,1,,0.03,nav,1,1925,1,, 2273,NJBF000071350,812 ADRIATIC AVE,Atlantic City,NJ,39.37030433,-74.42448586,RES1,3001,,27,NE,2010,1930,3102,2,2,1721.271174,1721.271174,3505,YES,38.05,45.63,3,8.17,6106,114.61041,124.207747,134.015396,140.235466,I,Above,Flat,0,5701,Wood,41.8384352,0,0,,,,1,1,,0.03,nav,1,2010,2,, 2274,NJBF000071025,1103 ADRIATIC AVE,Atlantic City,NJ,39.36916892,-74.42817617,RES1,3001,,27,NE,1923,1923,3103,2,2,1358.354737,1358.354737,3505,YES,42.05,49.64,3,3.62,6106,114.54479,124.152068,133.953003,140.193488,I,Above,Gable,0,5701,Wood,45.84079195,0,0,,,,1,1,,0.03,nav,1,1923,2,, 2275,NJBF000072580,551 N CONNECTICUT AVE,Atlantic City,NJ,39.374167,-74.42292785,RES1,3001,,45,NE,1900,1900,3102,2,2,3288.806497,3288.806497,3505,YES,26.87,32.93,3,0.59,6106,114.598868,124.195995,134.005699,140.205704,I,Above,Flat,0,5701,Wood,29.90212867,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2276,NJBF000069826,119 S CONGRESS AVE,Atlantic City,NJ,39.36433764,-74.41569425,RES3B,3001,,17,E,1900,1900,3303,2,1,573.847169,573.847169,3507,YES,24.94,38.81,1,0.75,6106,114.868333,124.431116,134.25654,140.453993,I,Above,Flat,0,NaN,Wood,31.87604935,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2277,NJBF000071441,116 SUNRISE AVE,Atlantic City,NJ,39.37062847,-74.41357686,RES3D,3004,,17,E,2000,2000,3303,2,1,1259.598484,1259.598484,3505,NO,27.18,36.16,3,4.88,6106,114.838608,124.404583,134.233487,140.400955,I,Above,Flat,0,NaN,Wood,31.67192182,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2278,NJBF000071405,116 SUNRISE AVE,Atlantic City,NJ,39.3704995,-74.4134925,RES3D,3004,,17,E,2000,2000,3303,2,1,562.1536903,562.1536903,3505,NO,28.2,35.21,3,7.05,6106,114.841887,124.407454,134.236548,140.404,I,Above,Gable,0,NaN,Wood,31.70455059,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2279,NJBF000069009,3809 CROSSAN AVE,Atlantic City,NJ,39.35836823,-74.46223589,RES1,3001,100,NaN,NE,1969,0,3101,3,1,1124.240341,1124.240341,3505,YES,64.14,70.4,3,7.83,6106,113.935435,123.647912,133.394326,139.806996,I,Above,Flat,0,5701,Wood,67.26905819,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2280,NJBF000071055,725 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36924556,-74.43741932,RES1,3001,,17,NE,1980,1980,3101,2,1,1202.326896,1202.326896,3505,NO,40.59,46.77,3,3.11,6106,114.345331,123.982385,133.766455,140.045746,I,Above,Gable,0,5701,Wood,43.68087183,0,0,,,,1,1,,0.03,nav,1,1980,2,, 2281,NJBF000068546,3016 HOWARD AVE,Atlantic City,NJ,39.35706087,-74.45056767,RES3A,3001,,33,NE,1900,1900,3301,2,1,587.8050501,587.8050501,3507,YES,35.22,41.6,1,2.59,6106,114.206434,123.872842,133.637165,140.015774,I,Above,Gable,0,5701,Wood,38.41097403,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2282,NJBF000072641,606 N CONNECTICUT AVE,Atlantic City,NJ,39.37436686,-74.42372833,RES1,3001,,20,NE,2008,2008,3102,3,1,1203.827158,1203.827158,3505,NO,58.91,69.56,3,8.68,6106,114.579521,124.179225,133.987325,140.190231,I,Above,Hip,0,5701,Wood,64.23266731,0,0,,,,1,1,,0.03,nav,1,2008,3,, 2283,NJBF000065018,4712 VENTNOR AVE,Atlantic City,NJ,39.34591907,-74.46586081,RES3B,3001,738,NaN,ME,1969,0,3301,3,1,1260.808543,1260.808543,3504,YES,42.3,51.97,-4,0,6106,114.012823,123.717407,133.459924,139.941602,I,Above,Gable,0,NaN,Wood,47.13164081,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2284,NJBF000070274,1717 HUMMOCK AVE,Atlantic City,NJ,39.36651665,-74.43673497,RES1,3001,,17,NE,1910,1910,3101,2,1,763.5899571,763.5899571,3507,NO,35.39,41.88,1,2.18,6106,114.392129,124.023645,133.809579,140.096276,I,Above,Hip,0,5701,Wood,38.63049577,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2285,NJBF000070999,127 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36909388,-74.41812466,RES3D,3004,,17,E,2000,2000,3303,2,1,1179.164216,1179.164216,3505,NO,26.98,33.85,3,2.21,6106,114.760123,124.337004,134.157156,140.351534,I,Above,Gable,0,NaN,Wood,30.4134508,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 2286,NJBF000069359,243 N TEXAS AVE,Atlantic City,NJ,39.35985254,-74.44551662,RES3A,3001,,27,NE,1900,1900,3301,2,2,829.6102661,829.6102661,3505,YES,29.83,41.71,3,8.55,6106,114.282076,123.934571,133.706675,140.054464,I,Above,Flat,0,5701,Wood,35.77065695,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2287,NJBF000069258,,Atlantic City,NJ,39.35939846,-74.43075802,COM1,3003,,NaN,ME,1969,0,3401,2,1,6237.491842,6237.491842,3507,NO,27.4,32.55,1,2.72,6106,114.606351,124.207734,134.005235,140.291164,I,Above,Flat,0,NaN,Wood,29.97394692,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2288,NJBF000072567,1824 EMERSON AVE,Atlantic City,NJ,39.3741215,-74.453009,RES1,3001,,17,NE,1950,1950,3101,1,1,1383.093914,1383.093914,3505,NO,18.84,24.55,3,5.87,6106,113.951913,123.646951,133.402526,139.717892,I,Above,Gable,0,5701,Wood,21.6975207,0,0,,,,1,1,,0.03,nav,1,1950,1,, 2289,NJBF000068621,40 N BELLEVUE AVE,Atlantic City,NJ,39.35726,-74.4433397,RES3B,3001,,33,ME,1900,1900,3301,2,1,1193.513661,1193.513661,3505,YES,24.51,34.42,3,0.23,6106,114.361021,124.0017,133.777677,140.126666,I,Above,Flat,0,NaN,Wood,29.4667018,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2290,NJBF000066897,61 N DOVER AVE,Atlantic City,NJ,39.35119588,-74.45889862,RES3A,3001,,45,NE,1900,1900,3301,3,2,1890.583497,1890.583497,3505,YES,58.66,65.4,3,2.45,6106,114.097762,123.785419,133.537607,139.971669,I,Above,Hip,0,5701,Wood,62.02981988,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2291,NJBF000068770,1301 BOARDWALK,Atlantic City,NJ,39.35759082,-74.42389105,COM8,3003,100,NaN,ME,1969,0,3401,2,1,24911.74879,24911.74879,3502,YES,48.92,56.75,5,13.88,6106,114.775713,124.351933,134.161928,140.421082,I,Above,Flat,0,NaN,Wood,52.83164369,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2292,NJBF000071178,416 MADISON AVE,Atlantic City,NJ,39.36967543,-74.41791865,RES3D,3004,,NaN,E,1900,1900,3303,2,1,1497.344604,1497.344604,3505,YES,34.27,45.82,3,-1.79,6106,114.75767,124.334735,134.155195,140.346724,I,Above,Flat,0,NaN,Wood,40.04475042,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2293,NJBF000068218,2903 ARCTIC AVE,Atlantic City,NJ,39.35603258,-74.44842884,RES3A,3001,,45,NE,1900,1900,3301,2,3,1369.05549,1369.05549,3505,NO,37.59,46.92,3,0.93,6106,114.265671,123.922571,133.690387,140.064845,I,Above,Flat,0,5701,Wood,42.25594889,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2294,NJBF000068822,647 N ANNAPOLIS AVE,Atlantic City,NJ,39.35771492,-74.46576824,RES1,3001,,17,NE,1900,1900,3101,2,1,1371.440198,1371.440198,3505,NO,33,40.83,3,4.23,6106,113.865907,123.591241,133.332733,139.758507,I,Above,Hip,0,5701,Wood,36.91330461,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2295,NJBF000067745,444 N RICHMOND AVE #A,Atlantic City,NJ,39.3543535,-74.4652385,RES3D,3001,29,NaN,ME,1969,0,3301,2,1,2694.21369,2694.21369,3505,NO,32.37,40.16,3,1.68,6106,113.919109,123.637065,133.37992,139.820093,I,Above,Hip,0,NaN,Wood,36.26763428,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2296,NJBF000067476,444 N RICHMOND AVE #A,Atlantic City,NJ,39.3536035,-74.4643195,RES3D,3001,29,NaN,ME,1969,0,3301,2,1,9447.275927,9447.275927,3505,NO,40.74,51.02,3,8.77,6106,113.948649,123.661718,133.405961,139.84695,I,Above,Flat,0,NaN,Wood,45.88020957,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2297,NJBF000067380,444 N RICHMOND AVE #A,Atlantic City,NJ,39.35328218,-74.46465456,RES3D,3001,29,NaN,ME,1969,0,3301,2,1,14725.59533,14725.59533,3505,NO,19.16,28.16,3,-2.62,6106,113.945316,123.659155,133.40297,139.846467,I,Above,Gable,0,NaN,Wood,23.66066406,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2298,NJBF000069279,225 N TEXAS AVE,Atlantic City,NJ,39.35949803,-74.44523532,RES3A,3001,,27,NE,1900,1900,3301,2,2,839.9733186,839.9733186,3505,YES,34.23,45.29,3,-2.84,6106,114.292517,123.94347,133.716086,140.064151,I,Above,Flat,0,5701,Wood,39.75723419,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2299,NJBF000068348,6 N TEXAS AVE,Atlantic City,NJ,39.35645034,-74.44369073,RES3B,3001,,45,ME,1900,1900,3301,4,2,830.8836039,830.8836039,3505,YES,51.11,65.42,3,8.74,6106,114.363401,124.003972,133.779427,140.132962,I,Above,Hip,0,NaN,Wood,58.26340398,0,0,,,,1,1,,0.03,nav,1,1900,4,, 2300,NJBF000069635,17 S CHALFONTE AVE,Atlantic City,NJ,39.36229067,-74.42556885,COM1,3003,100,NaN,ME,1969,0,3401,3,1,3492.393953,3492.393953,3507,NO,45.38,60.08,1,1.53,6106,114.682472,124.271901,134.078672,140.33065,I,Above,Flat,0,NaN,Wood,52.73019743,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2301,NJBF000069628,22 S NORTH CAROLINA AVE,Atlantic City,NJ,39.3622495,-74.4254245,COM1,3003,100,NaN,ME,1969,0,3401,3,1,3359.728215,3359.728215,3507,YES,49.21,62.69,1,0.32,6106,114.686061,124.274972,134.082013,140.33345,I,Above,Flat,0,NaN,Wood,55.94614862,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2302,NJBF000070323,21 LIGHTHOUSE LANE,Atlantic City,NJ,39.366711,-74.414378,RES3D,3004,,NaN,E,1969,0,3303,4,1,927.9168529,927.9168529,3505,YES,61.52,72.02,3,2.07,6106,114.867891,124.430548,134.25837,140.441932,I,Above,Flat,0,NaN,Wood,66.76765651,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2303,NJBF000066501,22 S HARRISBURG AVE,Atlantic City,NJ,39.34990933,-74.45683244,RES3A,3001,,45,NE,1900,1900,3301,2,2,1118.504633,1118.504633,3504,NO,27.76,39.94,-4,0,6106,114.159299,123.836591,133.591829,140.023843,I,Above,Gable,0,5701,Wood,33.85058533,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2304,NJBF000072820,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37507194,-74.41829071,RES3D,3001,,NaN,ME,1969,0,3301,2,1,8953.674719,8953.674719,3507,NO,29.78,43.28,1,0.93,6106,114.68709,124.271778,134.09033,140.266188,I,Above,Hip,0,NaN,Wood,36.52811235,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2305,NJBF000068691,631 N ANNAPOLIS AVE,Atlantic City,NJ,39.35742543,-74.46554764,RES1,3001,,17,NE,1928,1928,3101,2,1,1054.748992,1054.748992,3505,NO,33.82,44.83,3,3.67,6106,113.874298,123.598332,133.340197,139.766742,I,Above,Gable,0,5701,Wood,39.3292536,0,0,,,,1,1,,0.03,nav,1,1928,2,, 2306,NJBF000070157,218 N SOUTH CAROLINA AVE.,Atlantic City,NJ,39.36603758,-74.42935304,RES3D,3004,100,NaN,E,1969,0,3303,1,1,1613.066839,1613.066839,3505,NO,15.97,24.87,3,-1.58,6106,114.556515,124.163415,133.962759,140.219376,I,Above,Flat,0,NaN,Wood,20.41973992,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2307,NJBF000067469,111 ALBION PL,Atlantic City,NJ,39.35358967,-74.44228268,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,1772.707603,1772.707603,3505,NO,59.33,74.04,3,6.72,6106,114.429473,124.060026,133.837891,140.196085,I,Above,Flat,0,5701,Wood,66.68616177,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2308,NJBF000071500,1430 W RIVERSIDE DR,Atlantic City,NJ,39.37078264,-74.44722554,RES1,3001,,45,NE,1900,1900,3101,1,2,1000.389416,1000.389416,3505,NO,17.03,24.94,3,2.9,6106,114.115526,123.787463,133.554034,139.864243,I,Above,Gable,0,5701,Wood,20.9870245,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2309,NJBF000067004,3913 WINCHESTER AVE,Atlantic City,NJ,39.35166709,-74.45893635,RES3A,3001,,33,NE,1900,1900,3301,2,1,601.233258,601.233258,3505,NO,41.58,50.05,3,3.18,6106,114.090998,123.779664,133.531773,139.963909,I,Above,Hip,0,5701,Wood,45.81588753,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2310,NJBF000070399,324 CENTER ST,Atlantic City,NJ,39.36696094,-74.43202171,RES3C,3003,,17,E,2008,2008,3305,2,1,978.9887049,978.9887049,3507,NO,37.87,47.49,1,2.02,6106,114.488292,124.104962,133.899262,140.164365,I,Above,Flat,0,NaN,Wood,42.68248691,0,0,,,,2,2,,0.03,nav,1,2008,2,, 2311,NJBF000069375,1601 PACIFIC AVE,Atlantic City,NJ,39.35994112,-74.42994085,COM1,3003,,NaN,ME,1969,0,3401,3,1,1331.450328,1331.450328,3507,NO,36.55,49.71,1,0.37,6106,114.617273,124.216888,134.015826,140.296129,I,Above,Flat,0,NaN,Wood,43.12618608,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2312,NJBF000069340,1609 PACIFIC AVE,Atlantic City,NJ,39.35975562,-74.43023493,COM1,3003,760,NaN,ME,1969,0,3401,3,1,16220.32003,16220.32003,3507,YES,36.56,48.69,1,2.04,6106,114.613216,124.213483,134.011902,140.294195,I,Above,Flat,0,NaN,Wood,42.62726421,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2313,NJBF000065900,4511 WINCHESTER AVE,Atlantic City,NJ,39.3483968,-74.46541003,RES3A,3001,,18,NE,1900,1900,3301,2,1,1975.872536,1975.872536,3505,YES,24.49,31.12,3,0.49,6106,113.990723,123.698538,133.44167,139.910368,I,Above,Hip,0,5701,Wood,27.80425044,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2314,NJBF000072522,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37398854,-74.41785059,RES3C,3001,,NaN,ME,1969,0,3301,2,1,9715.200524,9715.200524,3505,NO,29.48,40.92,3,-2.4,6106,114.708895,124.29112,134.110822,140.288138,I,Above,Gable,0,NaN,Wood,35.19851047,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2315,NJBF000069872,,Atlantic City,NJ,39.36469618,-74.43159873,RES3D,3004,,NaN,E,1900,0,3303,4,1,1487.974825,1487.974825,3505,NO,72.56,83.26,3,1.65,6106,114.524287,124.136527,133.931985,140.203288,I,Above,Flat,0,NaN,Wood,77.9115978,0,0,,,,1,1,,0.03,nav,1,1900,4,, 2316,NJBF000065443,42 N NEWTON AVE,Atlantic City,NJ,39.34709768,-74.4670298,RES3A,3001,,17,NE,1955,1955,3301,1,1,1664.253087,1664.253087,3505,NO,23.31,31.3,3,6.69,6106,113.97188,123.683561,133.424528,139.904441,I,Above,Flat,0,5701,Wood,27.30498538,0,0,,,,1,1,,0.03,nav,1,1955,1,, 2317,NJBF000072847,1538 PENROSE AVE,Atlantic City,NJ,39.37518147,-74.44820978,RES1,3001,,16,NE,1900,1900,3101,1,1,1529.191594,1529.191594,3505,NO,17.57,29.72,3,4.75,6106,114.044096,123.723049,133.486239,139.781888,I,Above,Gable,0,5701,Wood,23.64664817,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2318,NJBF000072486,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37383618,-74.41922306,RES3C,3001,,NaN,ME,1969,0,3301,1,1,11745.5667,11745.5667,3505,NO,17.43,32.34,3,-0.35,6106,114.681518,124.267492,134.084521,140.268724,I,Above,Hip,0,NaN,Wood,24.88600575,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2319,NJBF000065165,24 S TALLAHASSEE AVE,Atlantic City,NJ,39.34629296,-74.46423953,RES1,3001,,18,NE,1900,1900,3102,2,1,2444.249745,2444.249745,3504,YES,38.77,48.77,-4,0,6106,114.043536,123.742458,133.487177,139.961682,I,Above,Hip,0,5701,Wood,43.7655067,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2320,NJBF000070459,705 ARCTIC AVE,Atlantic City,NJ,39.3672205,-74.4207875,RES1,3001,,NaN,NE,1969,0,3102,3,1,1097.081149,1097.081149,3505,YES,54.85,68.77,3,0.7,6106,114.725571,124.307713,134.122982,140.336121,I,Above,Hip,0,5701,Wood,61.81086195,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2321,NJBF000072789,1431 PENROSE AVE,Atlantic City,NJ,39.37493511,-74.44611591,RES1,3001,,17,NE,1900,1900,3102,2,1,907.932096,907.932096,3505,NO,30.76,40.69,3,6.34,6106,114.092198,123.76379,133.530682,139.820269,I,Above,Gable,0,5701,Wood,35.72371295,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2322,NJBF000073592,,Atlantic City,NJ,39.38186486,-74.40751099,RES1,3001,,NaN,NE,1969,0,3103,6,1,1343.040743,1343.040743,3505,NO,92.07,101.01,3,3.38,6106,114.837682,124.400393,134.238956,140.342443,I,Above,Gable,0,5701,Wood,96.54376134,0,0,,,,1,1,,0.03,nav,1,1969,6,, 2323,NJBF000073157,2 HARBOUR COURT,Atlantic City,NJ,39.37833367,-74.40662067,RES1,3001,,16,NE,1975,1975,3103,1,1,2520.25824,2520.25824,3505,NO,16.77,28.73,3,0.21,6106,114.896353,124.453175,134.294676,140.404343,I,Above,Gable,0,5701,Wood,22.7508468,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 2324,NJBF000073740,14 HORIZON LANE,Atlantic City,NJ,39.38284988,-74.41045595,RES1,3001,,37,NE,2000,2001,3103,3,1,2809.530568,2809.530568,3505,NO,49.72,60.04,3,-2.06,6106,114.764691,124.335779,134.167825,140.282447,I,Above,Gable,0,5701,Wood,54.88071327,0,0,,,,1,1,,0.03,nav,1,2000,3,, 2325,NJBF000073594,5224 HARBOR BEACH BLVD,Atlantic City,NJ,39.38186694,-74.40871551,RES1,3001,,16,NE,1975,1975,3103,1,1,2269.827951,2269.827951,3505,NO,11.52,17.1,3,-0.15,6106,114.81232,124.378083,134.214113,140.323421,I,Above,Gable,0,5701,Wood,14.30907546,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 2326,NJBF000073402,5217 WATERVIEW DR,Atlantic City,NJ,39.38044343,-74.40827074,RES1,3001,,16,NE,1975,1975,3103,2,1,511.686633,511.686633,3505,NO,31.81,40.18,3,8.33,6106,114.837716,124.400972,134.238401,140.349854,I,Above,Flat,0,5701,Wood,35.99727832,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 2327,NJBF000073727,,Atlantic City,NJ,39.38275213,-74.40597745,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1828.085549,1828.085549,3505,NO,33.24,39.28,3,0.76,6106,114.85995,124.419668,134.261171,140.354545,I,Above,Gable,0,5701,Wood,36.25541499,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2328,NJBF000073717,5 OCKENLANDER DRIVE,Atlantic City,NJ,39.38271556,-74.4100512,RES1,3001,,18,NE,2000,2000,3103,2,1,2197.835588,2197.835588,3505,NO,37.52,51.07,3,1.89,6106,114.774715,124.344649,134.177589,140.290701,I,Above,Hip,0,5701,Wood,44.29325332,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 2329,NJBF000073702,11 MANITOBA AVE,Atlantic City,NJ,39.38258281,-74.40520913,RES3A,3001,,43,NE,1989,1989,3301,2,2,1815.214495,1815.214495,3505,NO,30.53,41.36,3,6.51,6106,114.877961,124.435625,134.278818,140.368926,I,Above,Gable,0,5701,Wood,35.94353166,0,0,,,,1,1,,0.03,nav,1,1989,2,, 2330,NJBF000073869,620 ALBERTA DRIVE,Atlantic City,NJ,39.38367323,-74.40479322,RES1,3001,,33,NE,1987,1987,3102,3,1,3927.556815,3927.556815,3507,NO,60.32,70.54,1,1.88,6110,114.874482,124.432144,134.275845,140.360708,I,Above,Gable,0,5701,Wood,65.43066761,0,1.1,,,,1,1,,0.35,nav,1,1987,3,, 2331,NJBF000073546,5 OCEAN DRIVE EAST,Atlantic City,NJ,39.38150276,-74.40378917,RES1,3001,,16,NE,1975,1975,3102,1,1,2069.30414,2069.30414,3507,NO,15.07,21.14,1,1.74,6106,114.919887,124.473006,134.319578,140.405815,I,Above,Gable,0,5701,Wood,18.10405631,0,0,,,,1,1,,0.03,nav,1,1975,1,, 2332,NJBF000073563,5 OCEAN DRIVE WEST,Atlantic City,NJ,39.38163899,-74.40965,RES1,3001,,16,NE,1975,1975,3103,2,1,1612.502425,1612.502425,3505,NO,34.33,48.26,3,1.98,6106,114.795223,124.363161,134.197316,140.311798,I,Above,Gable,0,5701,Wood,41.29625279,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 2333,NJBF000073433,16 OCEAN DRIVE WEST,Atlantic City,NJ,39.38068504,-74.40966431,RES1,3001,,16,NE,1975,1975,3103,2,1,1530.883545,1530.883545,3505,YES,46.36,51.54,3,7.69,6106,114.805662,124.372733,134.207176,140.324631,I,Above,Hip,0,5701,Wood,48.94852591,0,0,,,,1,1,,0.03,nav,1,1975,2,, 2334,NJBF000073386,19 OCEAN DRIVE WEST,Atlantic City,NJ,39.38031362,-74.40883208,RES1,3001,,16,NE,1975,1975,3103,1,1,2131.881019,2131.881019,3505,NO,13.69,22.95,3,-0.31,6106,114.827367,124.391931,134.228228,140.342793,I,Above,Gable,0,5701,Wood,18.31704638,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 2335,NJBF000073384,5201 WATERVIEW DR,Atlantic City,NJ,39.38030259,-74.4064702,RES1,3001,,16,NE,1975,1975,3103,2,1,1340.741361,1340.741361,3505,NO,32.15,38.8,3,0.62,6106,114.877168,124.435714,134.276968,140.380028,I,Above,Gable,0,5701,Wood,35.47419089,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 2336,NJBF000073382,2 SEA SPRAY COURT,Atlantic City,NJ,39.38029519,-74.4055365,RES1,3001,,16,NE,1975,1975,3102,1,1,2260.822579,2260.822579,3507,NO,11.46,16.73,1,0.37,6106,114.896879,124.453072,134.296301,140.39477,I,Above,Hip,0,5701,Wood,14.09576041,0,0,,,,1,1,,0.03,nav,1,1975,1,, 2337,NJBF000073427,4 BAY COURT,Atlantic City,NJ,39.38062421,-74.40863522,RES1,3001,,16,NE,1975,1975,3103,1,1,1400.036487,1400.036487,3505,NO,20.26,34.93,3,6.05,6106,114.828013,124.39238,134.22899,140.341663,I,Above,Gable,0,5701,Wood,27.59461569,0,0,,,,1,1,,0.03,nav,1,1975,1,, 2338,NJBF000073339,24 OCEAN DRIVE WEST,Atlantic City,NJ,39.37994571,-74.40922321,RES1,3001,,18,NE,1975,1975,3103,3,1,2249.973504,2249.973504,3505,NO,41.63,56.44,3,4.98,6106,114.823294,124.388498,134.224093,140.341668,I,Above,Flat,0,5701,Wood,49.03183196,0,1.1,,,,1,1,,0.03,nav,1,1975,3,, 2339,NJBF000073641,,Atlantic City,NJ,39.38216957,-74.4071566,RES1,3001,,NaN,NE,1969,0,3103,6,1,1227.893956,1227.893956,3505,NO,86.99,101.22,3,-0.86,6110,114.841696,124.403806,134.243012,140.343868,I,Above,Flat,0,5701,Wood,94.1068013,0,0,,,,1,1,,0.35,nav,1,1969,6,, 2340,NJBF000073658,6 ONTARIO DRIVE,Atlantic City,NJ,39.38232132,-74.40779246,RES1,3001,,43,NE,1987,1987,3103,2,2,1211.256707,1211.256707,3505,NO,33.64,40.48,3,4.91,6106,114.826658,124.390503,134.228319,140.331801,I,Above,Gable,0,5701,Wood,37.05888918,0,0,,,,1,1,,0.03,nav,1,1987,2,, 2341,NJBF000073600,,Atlantic City,NJ,39.38192251,-74.40597483,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1195.93638,1195.93638,3505,NO,40.62,52.79,3,3.79,6106,114.869297,124.428221,134.270009,140.365827,I,Above,Gable,0,5701,Wood,46.70571615,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2342,NJBF000073551,5118 ONTARIO DRIVE,Atlantic City,NJ,39.38154016,-74.40725845,RES1,3001,,43,NE,1985,1985,3103,2,2,1200.982534,1200.982534,3505,NO,32.78,47.11,3,5.84,6110,114.846653,124.408416,134.24762,140.35085,I,Above,Gable,0,5701,Wood,39.94522593,0,0,,,,1,1,,0.35,nav,1,1985,2,, 2343,NJBF000073502,6 SURF LANE,Atlantic City,NJ,39.38118086,-74.40490951,RES1,3001,,16,NE,1973,1973,3102,2,1,2032.205865,2032.205865,3507,NO,31.52,36.73,1,-0.31,6106,114.900007,124.455556,134.299841,140.392596,I,Above,Gable,0,5701,Wood,34.12019938,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 2344,NJBF000073257,5200 SEA SPRAY RD,Atlantic City,NJ,39.37937424,-74.40566522,RES1,3001,,16,NE,1975,1975,3102,1,1,1875.104751,1875.104751,3507,NO,18.57,28.04,1,-0.52,6106,114.904612,124.460151,134.303376,140.405208,I,Above,Flat,0,5701,Wood,23.30306621,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 2345,NJBF000073282,5117 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37954957,-74.40491175,RES1,3001,,16,NE,1975,1975,3102,1,1,2108.180398,2108.180398,3507,NO,11.67,19.61,1,0.77,6106,114.918426,124.472269,134.317036,140.414596,I,Above,Gable,0,5701,Wood,15.64104062,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 2346,NJBF000073228,5208 SEA SPRAY RD,Atlantic City,NJ,39.37911751,-74.40652912,RES1,3001,,16,NE,1975,1975,3103,2,1,1804.490634,1804.490634,3505,YES,32.72,44.85,3,7.66,6106,114.889364,124.44681,134.288288,140.395165,I,Above,Hip,0,5701,Wood,38.78643504,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 2347,NJBF000073450,3 BAY COURT,Atlantic City,NJ,39.3808238,-74.40844521,RES1,3001,,16,NE,1975,1975,3103,2,1,2055.22304,2055.22304,3505,YES,26.93,36.23,3,1.31,6106,114.829756,124.393833,134.230776,140.341925,I,Above,Hip,0,5701,Wood,31.58220148,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 2348,NJBF000073535,6 OCEAN DRIVE WEST,Atlantic City,NJ,39.38141571,-74.41015655,RES1,3001,,16,NE,1975,1975,3103,2,1,1401.306685,1401.306685,3505,NO,40.51,55.21,3,2.57,6106,114.787052,124.356087,134.189261,140.306847,I,Above,Hip,0,5701,Wood,47.86177683,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 2349,NJBF000071823,1522 BEACH AVE,Atlantic City,NJ,39.371738,-74.4486605,RES1,3001,,27,NE,1960,1960,3102,1,2,1061.796009,1061.796009,3505,NO,22.68,34.79,3,8.73,6106,114.073432,123.751247,133.515052,139.826295,I,Above,Flat,0,5701,Wood,28.73520181,0,0,,,,1,1,,0.03,nav,1,1960,1,, 2350,NJBF000072497,1531 N MICHIGAN AVE,Atlantic City,NJ,39.37387609,-74.44879729,RES1,3001,,17,NE,1900,1900,3102,2,1,1435.996722,1435.996722,3505,NO,39.4,51.37,3,8.44,6106,114.046118,123.726154,133.488892,139.791819,I,Above,Hip,0,5701,Wood,45.382809,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2351,NJBF000067528,129 S TEXAS AVE,Atlantic City,NJ,39.35373982,-74.44142406,RES3A,3004,,33,NE,1900,1900,3301,2,1,803.7842537,803.7842537,3505,YES,35.17,49.2,3,7.58,6106,114.446201,124.073994,133.853273,140.207163,I,Above,Flat,0,5701,Wood,42.18719733,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2352,NJBF000072863,1901 KUEHNLE AVE,Atlantic City,NJ,39.37526999,-74.450634,RES1,3001,,45,NE,1900,1900,3101,1,2,857.7979965,857.7979965,3505,NO,20.2,26.42,3,3.42,6106,113.990553,123.677989,133.437024,139.740171,I,Above,Gable,0,5701,Wood,23.30787102,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2353,NJBF000072632,1527 MADISON AVE,Atlantic City,NJ,39.37434342,-74.44836709,RES1,3001,,17,NE,1906,1906,3102,2,1,885.9108547,885.9108547,3505,NO,40.16,51.63,3,4.98,6106,114.050151,123.729045,133.49232,139.791908,I,Above,Gable,0,5701,Wood,45.89363108,0,0,,,,1,1,,0.03,nav,1,1906,2,, 2354,NJBF000068000,26 S BELLEVUE AVE,Atlantic City,NJ,39.35530365,-74.44205153,RES3A,3004,,17,NE,1900,1900,3301,2,1,806.4948945,806.4948945,3505,NO,26.83,33.67,3,-0.62,6106,114.413113,124.045919,133.824134,140.175016,I,Above,Flat,0,5701,Wood,30.24848213,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2355,NJBF000069130,756 N HARRISBURG AVE,Atlantic City,NJ,39.35888391,-74.46368276,RES1,3001,,17,NE,1960,1960,3101,1,1,2108.726943,2108.726943,3505,NO,19.06,29.78,3,1.73,6106,113.897399,123.616252,133.360456,139.774949,I,Above,Gable,0,5701,Wood,24.42001259,0,0,,,,1,1,,0.03,nav,1,1960,1,, 2356,NJBF000065793,107 S DOVER AVE,Atlantic City,NJ,39.34811863,-74.45641103,RES3A,3001,,18,NE,1900,1900,3301,1,1,1861.729897,1861.729897,3504,NO,15.49,22.4,-4,0,6106,114.191372,123.863535,133.619369,140.057226,I,Above,Gable,0,5701,Wood,18.94554662,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2357,NJBF000067206,30 N HARTFORD AVE,Atlantic City,NJ,39.35254863,-74.45444198,RES3B,3001,,27,E,1900,1900,3303,2,2,1836.842619,1836.842619,3507,YES,36.47,50.04,1,0.7,6106,114.178106,123.851239,133.609958,140.021896,I,Above,Flat,0,NaN,Wood,43.25787068,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2358,NJBF000070823,1500-1540 SEWELL AVE,Atlantic City,NJ,39.3685505,-74.434503,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5063.670432,5063.670432,3505,NO,30.48,44.51,3,8.3,6106,114.416255,124.042937,133.832404,140.102314,I,Above,Flat,0,NaN,Wood,37.49200441,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2359,NJBF000070745,1500-1540 SEWELL AVE,Atlantic City,NJ,39.36827414,-74.43519066,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5022.339492,5022.339492,3505,NO,31.6,41.67,3,4.15,6106,114.404689,124.033285,133.821579,140.095369,I,Above,Flat,0,NaN,Wood,36.63289302,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2360,NJBF000070706,1500-1540 SEWELL AVE,Atlantic City,NJ,39.368123,-74.4344785,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4708.337222,4708.337222,3505,NO,22.34,29.33,3,6.68,6106,114.421803,124.04789,133.837501,140.108869,I,Above,Flat,0,NaN,Wood,25.8319609,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2361,NJBF000070726,601-659 KENTUCKY AVE,Atlantic City,NJ,39.3681918,-74.43394496,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4201.096901,4201.096901,3505,NO,27.76,33.21,3,-2.63,6106,114.432457,124.056894,133.847451,140.116327,I,Above,Flat,0,NaN,Wood,30.48496859,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2362,NJBF000067491,116 S TEXAS AVE,Atlantic City,NJ,39.3536465,-74.4418,RES3A,3004,,45,NE,1930,1930,3301,2,2,1506.549673,1506.549673,3505,NO,45.19,53.8,3,8.59,6106,114.439222,124.068171,133.84683,140.202707,I,Above,Hip,0,5701,Wood,49.49779836,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2363,NJBF000071145,215 GRAMMERCY PL,Atlantic City,NJ,39.36957428,-74.41500917,RES3D,3004,,28,E,1997,1997,3303,2,2,2299.886018,2299.886018,3505,NO,38.89,47.69,3,6.18,6106,114.820635,124.389212,134.215428,140.393199,I,Above,Hip,0,NaN,Wood,43.28667811,0,0,,,,1,1,,0.03,nav,1,1997,2,, 2364,NJBF000067426,3100 ATLANTIC AVE,Atlantic City,NJ,39.35344268,-74.44901721,COM1,3003,739,NaN,ME,1969,0,3401,2,1,2050.659686,2050.659686,3507,NO,31.44,37.15,1,-0.97,6106,114.285116,123.939677,133.706716,140.093792,I,Above,Flat,0,NaN,Wood,34.2935857,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2365,NJBF000067619,29 N BOSTON AVE,Atlantic City,NJ,39.35398652,-74.4521336,RES3B,3001,,27,ME,1905,1905,3301,2,2,1794.159301,1794.159301,3504,YES,22.14,36.94,-4,0,6106,114.210433,123.877474,133.639632,140.036825,I,Above,Flat,0,NaN,Wood,29.53761624,0,0,,,,1,1,,0.03,nav,1,1905,2,, 2366,NJBF000069291,730 AUGUSTINE RD,Atlantic City,NJ,39.35954322,-74.46223023,RES1,3001,,17,NE,1900,1900,3101,2,1,1040.039175,1040.039175,3505,YES,38.83,46.08,3,4.35,6106,113.921251,123.63539,133.381551,139.788805,I,Above,Flat,0,5701,Wood,42.45214805,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2367,NJBF000066881,31 N HARRISBURG AVE,Atlantic City,NJ,39.3511415,-74.4574045,RES3A,3001,,17,NE,1998,1998,3301,2,1,1017.611967,1017.611967,3505,NO,33.6,45.31,3,4.68,6106,114.131159,123.812969,133.56734,139.996247,I,Above,Flat,0,5701,Wood,39.45348867,0,0,,,,1,1,,0.03,nav,1,1998,2,, 2368,NJBF000067832,,Atlantic City,NJ,39.354664,-74.461454,RES1,3001,,NaN,NE,1969,0,3102,2,1,820.5595741,820.5595741,3505,NO,24.88,34.65,3,-2.74,6106,113.998269,123.701913,133.450096,139.877301,I,Above,Gable,0,5701,Wood,29.76859404,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2369,NJBF000067793,,Atlantic City,NJ,39.3545335,-74.461562,RES1,3001,,NaN,NE,2000,0,3102,2,1,774.3250039,774.3250039,3505,NO,34.24,41.7,3,3.47,6106,113.997521,123.701368,133.449412,139.877554,I,Above,Gable,0,5701,Wood,37.97148471,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2370,NJBF000066240,116 N BARTRAM AVE,Atlantic City,NJ,39.34927969,-74.46425003,RES3A,3001,,17,NE,1900,1900,3301,2,1,1399.530513,1399.530513,3505,NO,32.28,37.35,3,-1.5,6106,114.004872,123.709808,133.454502,139.915374,I,Above,Hip,0,5701,Wood,34.81479304,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2371,NJBF000064901,139 S BARTRAM AVE,Atlantic City,NJ,39.34561331,-74.46076488,RES1,3001,,45,NE,1910,1910,3102,3,2,1969.827372,1969.827372,3504,NO,32.12,42.96,-4,0,6106,114.128501,123.812332,133.56182,140.026818,I,Above,Gable,0,5701,Wood,37.53676616,0,0,,,,1,1,,0.03,nav,1,1910,3,, 2372,NJBF000068437,202 N CHELSEA AVE,Atlantic City,NJ,39.35676347,-74.45130164,RES3A,3001,,45,NE,1900,1900,3301,1,3,2316.556303,2316.556303,3507,NO,13.51,19.75,1,0.11,6106,114.194119,123.862747,133.625951,140.008564,I,Above,Hip,0,5701,Wood,16.62811609,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2373,NJBF000070461,712 N OHIO AVE RR,Atlantic City,NJ,39.36722602,-74.43988526,RES3B,3001,,33,ME,1925,1925,3301,2,1,1136.615198,1136.615198,3505,YES,21.17,31.31,3,-2.19,6106,114.315806,123.958747,133.738984,140.035797,I,Above,Flat,0,NaN,Wood,26.23947238,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2374,NJBF000072501,1825 N ARKANSAS AVE,Atlantic City,NJ,39.3738875,-74.4530645,RES1,3001,,17,NE,1900,1900,3101,1,1,1199.514019,1199.514019,3505,NO,20.28,29.12,3,8.96,6106,113.95336,123.64843,133.404016,139.720538,I,Above,Gable,0,5701,Wood,24.69874182,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2375,NJBF000068191,28 S GEORGIA AVE,Atlantic City,NJ,39.35595359,-74.44021445,COM1,3003,282,NaN,ME,1969,0,3401,4,1,2832.77724,2832.77724,3507,YES,46.11,52.89,1,-0.32,6106,114.444837,124.072334,133.853589,140.194124,I,Above,Flat,0,NaN,Wood,49.50011083,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2376,NJBF000069083,,Atlantic City,NJ,39.35870017,-74.4358193,COM1,3003,,NaN,ME,1969,0,3401,3,1,14543.42506,14543.42506,3507,NO,38.5,48.62,1,0.37,6110,114.505948,124.123002,133.911623,140.222914,I,Above,Flat,0,NaN,Wood,43.5622653,0,0,,,,1,1,,1,nav,1,1969,3,, 2377,NJBF000067393,7 N PROVIDENCE AVE,Atlantic City,NJ,39.35332333,-74.45304646,RES3B,3001,,45,E,1913,1913,3303,4,2,1129.3194,1129.3194,3507,NO,70.39,85.1,1,0.8,6106,114.198853,123.868127,133.628925,140.032346,I,Above,Hip,0,NaN,Wood,77.74877906,0,0,,,,1,1,,0.03,nav,1,1913,4,, 2378,NJBF000067415,7 N PROVIDENCE AVE,Atlantic City,NJ,39.35339884,-74.45281552,RES3B,3001,,45,E,1913,1913,3303,4,2,765.9433879,765.9433879,3507,NO,67.45,72.7,1,0.33,6106,114.202917,123.871465,133.632611,140.034839,I,Above,Gable,0,NaN,Wood,70.07238384,0,0,,,,1,1,,0.03,nav,1,1913,4,, 2379,NJBF000068908,2915 SUNSET AVE,Atlantic City,NJ,39.357997,-74.4500395,RES3A,3001,,17,NE,1900,1900,3301,2,1,1345.697226,1345.697226,3507,NO,29.46,34.93,1,2.56,6106,114.206431,123.872388,133.637431,140.010205,I,Above,Gable,0,5701,Wood,32.19369687,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2380,NJBF000068699,2810 FAIRMOUNT AVE,Atlantic City,NJ,39.357447,-74.448048,RES3A,3001,,45,NE,1910,1910,3301,2,2,1456.925706,1456.925706,3505,NO,22.7,35,3,-0.32,6106,114.256517,123.914351,133.682641,140.049953,I,Above,Hip,0,5701,Wood,28.85051442,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2381,NJBF000067818,3301 ARCTIC AVE,Atlantic City,NJ,39.3546282,-74.45214841,COM3,3004,210,NaN,ME,1969,0,3401,2,1,19658.31742,19658.31742,3507,YES,34.27,44.1,1,2.71,6106,114.202135,123.870338,133.632429,140.027044,I,Above,Flat,0,NaN,Wood,39.18803738,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2382,NJBF000072029,814 N VIRGINIA AVE,Atlantic City,NJ,39.37234543,-74.42940577,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4832.402027,4832.402027,3505,NO,13.1,19.99,3,0.33,6106,114.481492,124.096271,133.894134,140.12883,I,Above,Flat,0,NaN,Wood,16.54642919,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2383,NJBF000071922,814 N VIRGINIA AVE,Atlantic City,NJ,39.37200822,-74.42958915,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4271.71541,4271.71541,3505,NO,32.95,39.24,3,4.02,6106,114.481468,124.096452,133.894064,140.130736,I,Above,Hip,0,NaN,Wood,36.09228517,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2384,NJBF000072036,814 N VIRGINIA AVE,Atlantic City,NJ,39.37236743,-74.42898314,RES3C,3004,,NaN,ME,1969,0,3301,1,1,6748.046695,6748.046695,3505,NO,21.68,34.44,3,5.91,6106,114.490295,124.103786,133.902435,140.13524,I,Above,Gable,0,NaN,Wood,28.05845311,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2385,NJBF000072254,814 N VIRGINIA AVE,Atlantic City,NJ,39.37304105,-74.4298352,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5343.47382,5343.47382,3505,NO,39.9,46.06,3,2.76,6106,114.464279,124.081125,133.877989,140.112049,I,Above,Gable,0,NaN,Wood,42.97865914,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2386,NJBF000072268,814 N VIRGINIA AVE,Atlantic City,NJ,39.37310418,-74.43023873,RES3C,3004,,NaN,ME,1969,0,3301,1,1,6031.873626,6031.873626,3505,NO,19.34,29.66,3,3.88,6106,114.454901,124.073068,133.869158,140.104705,I,Above,Flat,0,NaN,Wood,24.5022297,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2387,NJBF000068861,653 N ANNAPOLIS AVE,Atlantic City,NJ,39.35782274,-74.46586155,RES1,3001,,17,NE,1900,1900,3101,1,1,1402.556126,1402.556126,3505,NO,19.11,31.52,3,3.79,6106,113.862519,123.588382,133.329718,139.755237,I,Above,Hip,0,5701,Wood,25.31271193,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2388,NJBF000067385,3 S CHELSEA AVE,Atlantic City,NJ,39.35330951,-74.44838737,COM1,3003,,18,ME,1900,1900,3401,2,1,2183.000564,2183.000564,3507,NO,29.28,42.18,1,0.34,6106,114.300485,123.9525,133.720536,140.105574,I,Above,Flat,0,NaN,Wood,35.73056541,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2389,NJBF000071729,1425 MCKINLEY AVE,Atlantic City,NJ,39.37142897,-74.43569748,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3060.770191,3060.770191,3505,NO,32.49,44.58,3,6.68,6106,114.357051,123.990835,133.777385,140.041578,I,Above,Gable,0,NaN,Wood,38.53870861,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2390,NJBF000071707,1425 MCKINLEY AVE,Atlantic City,NJ,39.37134709,-74.43503211,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,5494.08424,5494.08424,3505,NO,30.69,44.62,3,-2.44,6106,114.372302,124.003846,133.791624,140.053425,I,Above,Flat,0,NaN,Wood,37.65764929,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2391,NJBF000071796,1425 MCKINLEY AVE,Atlantic City,NJ,39.37165624,-74.43491221,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,4310.247726,4310.247726,3505,NO,32.46,43.86,3,-1.42,6106,114.371309,124.00279,133.790696,140.050868,I,Above,Flat,0,NaN,Wood,38.16006061,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2392,NJBF000064870,4711 THERESA PL,Atlantic City,NJ,39.34554105,-74.46571053,RES3B,3001,,18,ME,1915,1915,3301,2,1,1813.632405,1813.632405,3504,YES,24.42,32.74,-4,0,6106,114.021028,123.724222,133.466928,139.949851,I,Above,Gable,0,NaN,Wood,28.57897135,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2393,NJBF000071019,19 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36915002,-74.41319989,RES3D,3004,,29,E,2003,2003,3303,2,2,2114.19746,2114.19746,3505,NO,38.71,46.75,3,5.26,6106,114.863966,124.426844,134.256724,140.426906,I,Above,Hip,0,NaN,Wood,42.72991179,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2394,NJBF000068658,224 N CHELSEA AVE,Atlantic City,NJ,39.3573422,-74.45169808,RES3A,3001,,45,NE,1900,1900,3301,2,2,1737.394988,1737.394988,3507,YES,31.34,40.88,1,0.26,6106,114.178362,123.849379,133.611893,139.993596,I,Above,Gable,0,5701,Wood,36.11153754,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2395,NJBF000069442,1401 PACIFIC AVE,Atlantic City,NJ,39.36044435,-74.42810206,COM1,3003,,NaN,ME,1969,0,3401,2,1,2227.096768,2227.096768,3507,NO,34.76,41.99,1,2.92,6106,114.650608,124.245109,134.047347,140.31739,I,Above,Flat,0,NaN,Wood,38.37845336,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2396,NJBF000068682,2621 ARCTIC AVE,Atlantic City,NJ,39.35739927,-74.4450353,RES3A,3001,,27,NE,1900,1900,3301,3,2,1628.591651,1628.591651,3505,YES,39.48,53.55,3,4.65,6106,114.32255,123.969476,133.742653,140.098097,I,Above,Gable,0,5701,Wood,46.51594876,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2397,NJBF000070454,810 N MICHIGAN AVE,Atlantic City,NJ,39.36720475,-74.4413343,RES3B,3001,,27,ME,1920,1900,3301,2,2,1279.627984,1279.627984,3505,YES,32.42,40.42,3,6.75,6106,114.284746,123.932575,133.710301,140.012906,I,Above,Gable,0,5701,Wood,36.41693743,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2398,NJBF000067030,37 N TRENTON AVE,Atlantic City,NJ,39.35175587,-74.45640468,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,1727.740353,1727.740353,3505,NO,21.53,30.92,3,-2.15,6106,114.145222,123.824353,133.580173,140.002783,I,Above,Hip,0,5701,Wood,26.22172336,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2399,NJBF000066415,60 N LACLEDE PL,Atlantic City,NJ,39.34969432,-74.46165419,RES3A,3001,,27,NE,1930,1930,3301,2,2,1717.593884,1717.593884,3505,YES,29.81,44.13,3,0.08,6106,114.056512,123.752039,133.50034,139.950664,I,Above,Flat,0,5701,Wood,36.96990982,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2400,NJBF000066366,54 N LACLEDE PL,Atlantic City,NJ,39.34957681,-74.46157331,RES3A,3001,,27,NE,1925,1925,3301,2,2,1635.417006,1635.417006,3505,YES,20.64,29.2,3,-2.58,6106,114.059779,123.754765,133.503184,139.953753,I,Above,Flat,0,5701,Wood,24.91877011,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2401,NJBF000066000,4432 WINCHESTER AVE,Atlantic City,NJ,39.34865657,-74.46403314,RES3A,3001,,17,NE,1920,1920,3301,2,1,1324.971649,1324.971649,3505,NO,41.47,47.69,3,6.06,6106,114.017607,123.720476,133.465487,139.928516,I,Above,Hip,0,5701,Wood,44.58038261,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2402,NJBF000070295,514 N INDIANA AVE,Atlantic City,NJ,39.3666025,-74.437749,RES3B,3001,,17,ME,1900,1900,3301,2,1,843.7947653,843.7947653,3505,NO,37.56,45.3,3,6.54,6106,114.369262,124.004263,133.788388,140.078944,I,Above,Hip,0,NaN,Wood,41.42843485,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2403,NJBF000064653,4705 ATLANTIC AVE,Atlantic City,NJ,39.34500526,-74.46489689,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,2945.920106,2945.920106,3504,YES,58.14,72.99,-4,0,6106,114.045868,123.744686,133.488463,139.971058,I,Above,Hip,0,NaN,Wood,65.56646292,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2404,NJBF000067560,126 N HARTFORD AVE,Atlantic City,NJ,39.35382664,-74.45549882,RES3B,3001,,28,E,1925,1925,3303,2,2,2239.828653,2239.828653,3507,YES,30.44,42.14,1,0.63,6106,114.139006,123.818395,133.57544,139.985922,I,Above,Flat,0,NaN,Wood,36.28782123,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2405,NJBF000068130,455 WARRENA RD,Atlantic City,NJ,39.35574284,-74.46131651,RES1,3001,,17,NE,1900,1900,3102,1,1,1192.358862,1192.358862,3505,NO,23.79,34.62,3,6.04,6106,113.987874,123.692752,133.440979,139.862842,I,Above,Flat,0,5701,Wood,29.20117032,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2406,NJBF000066121,14 N LACLEDE PL,Atlantic City,NJ,39.34897885,-74.46112233,RES3A,3001,,45,NE,1922,1922,3301,2,3,2031.003802,2031.003802,3505,NO,25.89,35.61,3,2.31,6106,114.077299,123.769366,133.518434,139.970092,I,Above,Flat,0,5701,Wood,30.74719088,0,0,,,,1,1,,0.03,nav,1,1922,2,, 2407,NJBF000067290,4025 SOUTH BLVD,Atlantic City,NJ,39.35291683,-74.46066592,RES1,3001,,17,NE,1900,1900,3102,2,1,1439.302425,1439.302425,3505,NO,39.12,49.29,3,8.58,6106,114.037379,123.734975,133.484488,139.917019,I,Above,Flat,0,5701,Wood,44.20628906,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2408,NJBF000071223,210 DYLAN DR,Atlantic City,NJ,39.36980429,-74.41498274,RES3D,3004,,27,E,1998,1998,3303,2,2,1940.894489,1940.894489,3505,NO,31.54,43.19,3,6.89,6106,114.818482,124.3873,134.213532,140.390456,I,Above,Flat,0,NaN,Wood,37.3646631,0,0,,,,1,1,,0.03,nav,1,1998,2,, 2409,NJBF000067768,15 N MONTPELIER AVE,Atlantic City,NJ,39.35443825,-74.45040829,RES3B,3001,,45,ME,1900,1900,3301,3,4,1850.1242,1850.1242,3504,YES,38.72,47.03,-4,0,6106,114.242411,123.903843,133.668653,140.057305,I,Above,Gable,0,NaN,Wood,42.87296247,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2410,NJBF000067746,13 N MONTPELIER AVE,Atlantic City,NJ,39.35435468,-74.45036416,RES3B,3001,,17,ME,1900,1900,3301,3,1,1388.50349,1388.50349,3504,YES,49.55,61.29,-4,0,6106,114.244404,123.905529,133.670413,140.059227,I,Above,Gable,0,NaN,Wood,55.4193374,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2411,NJBF000071378,400 DELTA AVE,Atlantic City,NJ,39.37042307,-74.42509963,RES1,3001,,17,NE,1900,1900,3102,1,1,1700.313616,1700.313616,3505,NO,25.14,31.89,3,6.36,6106,114.595907,124.195253,134.001709,140.224149,I,Above,Hip,0,5701,Wood,28.51419057,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2412,NJBF000068353,2428 ATLANTIC AVE,Atlantic City,NJ,39.35646612,-74.44150242,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1939.868816,1939.868816,3507,YES,30.73,36.19,1,2.2,6106,114.41063,124.043508,133.822587,140.166799,I,Above,Flat,0,NaN,Wood,33.46117814,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2413,NJBF000067467,19 N PROVIDENCE AVE,Atlantic City,NJ,39.35358014,-74.45326622,RES3B,3001,,45,E,1908,1908,3303,3,2,1277.560039,1277.560039,3507,NO,50.17,59.85,1,1.82,6106,114.190837,123.861388,133.621836,140.025034,I,Above,Gable,0,NaN,Wood,55.01091392,0,0,,,,1,1,,0.03,nav,1,1908,3,, 2414,NJBF000067624,315 N HARRISBURG AVE,Atlantic City,NJ,39.35400902,-74.45919382,RES1,3001,,45,NE,1900,1900,3102,2,2,1237.033649,1237.033649,3505,NO,37.76,44.84,3,6.98,6106,114.055938,123.749739,133.501284,139.923992,I,Above,Hip,0,5701,Wood,41.30185435,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2415,NJBF000072007,2010 W RIVERSIDE DR,Atlantic City,NJ,39.37226617,-74.45649868,RES1,3001,,17,NE,2006,2006,3103,5,1,2105.348895,2105.348895,3505,NO,60.7,71.78,3,1.83,6106,113.896987,123.60326,133.353949,139.6877,I,Above,Hip,0,5701,Wood,66.24091111,0,0,,,,1,1,,0.03,nav,1,2006,5,, 2416,NJBF000066402,16 N ANNAPOLIS AVE,Atlantic City,NJ,39.34967705,-74.45956317,RES3A,3001,,45,NE,1900,1900,3301,2,2,1265.893377,1265.893377,3505,NO,29.2,36.22,3,-0.07,6106,114.102523,123.789881,133.541159,139.984214,I,Above,Gable,0,5701,Wood,32.71343563,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2417,NJBF000073076,850 N RHODE ISLAND AVE,Atlantic City,NJ,39.37734149,-74.420636,COM8,3001,,NaN,ME,1969,0,3401,1,1,2218.9624,2218.9624,3505,NO,18.28,25.68,3,3.36,6102,114.611372,124.205068,134.01832,140.197441,I,Above,Flat,0,NaN,Wood,21.97787977,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2418,NJBF000067309,311 N DOVER AVE,Atlantic City,NJ,39.35301527,-74.46077581,RES1,3001,,17,NE,1950,1950,3102,2,1,1295.023179,1295.023179,3505,NO,37.41,52.18,3,-0.51,6106,114.033739,123.731933,133.48128,139.913736,I,Above,Hip,0,5701,Wood,44.79348158,0,0,,,,1,1,,0.03,nav,1,1950,2,, 2419,NJBF000070785,408 GRAMMERCY PL,Atlantic City,NJ,39.3684305,-74.416854,RES3D,3004,,17,E,1900,1900,3303,3,1,803.9305602,803.9305602,3505,YES,47.46,55.75,3,-1.15,6106,114.794949,124.367227,134.189968,140.380327,I,Above,Flat,0,NaN,Wood,51.60308112,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2420,NJBF000067725,26 N SOVEREIGN AVE,Atlantic City,NJ,39.3542839,-74.45180653,RES3B,3001,,45,ME,1920,1920,3301,2,2,1126.988747,1126.988747,3504,NO,33.69,39.12,-4,0,6106,114.213854,123.880196,133.64284,140.037558,I,Above,Hip,0,NaN,Wood,36.40370114,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2421,NJBF000067700,24 N SOVEREIGN AVE,Atlantic City,NJ,39.35420925,-74.45178041,RES3B,3001,,45,ME,1900,1900,3301,2,2,1541.132641,1541.132641,3504,YES,35.38,45.73,-4,0,6106,114.215378,123.881489,133.64418,140.039101,I,Above,Hip,0,NaN,Wood,40.55638262,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2422,NJBF000068013,10 S TEXAS AVE,Atlantic City,NJ,39.35534102,-74.44294965,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,2459.9108,2459.9108,3505,NO,43.52,48.63,3,4.82,6106,114.393198,124.029241,133.805973,140.160561,I,Above,Flat,0,5701,Wood,46.07268098,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2423,NJBF000068040,24 N BRIGHTON AVE,Atlantic City,NJ,39.35543207,-74.44797739,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,2341.007709,2341.007709,3504,YES,38.26,52.73,-4,0,6106,114.282947,123.937187,133.705769,140.080809,I,Above,Flat,0,NaN,Wood,45.49359711,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2424,NJBF000070926,34 N VERMONT AVE,Atlantic City,NJ,39.36886603,-74.41535735,RES3D,3004,,17,E,1900,1900,3303,2,1,1271.056162,1271.056162,3505,NO,31.07,43.79,3,4.35,6106,114.821593,124.390178,134.215808,140.3975,I,Above,Hip,0,NaN,Wood,37.42921224,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2425,NJBF000067873,2614 MONTEREY AVE,Atlantic City,NJ,39.35484853,-74.44324894,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,1480.625267,1480.625267,3505,YES,45.7,58,3,4.02,6106,114.392832,124.029073,133.805331,140.163033,I,Above,Gable,0,5701,Wood,51.85309124,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2426,NJBF000069304,129 N GEORGIA AVE,Atlantic City,NJ,39.35959382,-74.44216542,RES3B,3001,,27,ME,1900,1915,3301,2,2,1088.802144,1088.802144,3505,YES,36.11,48.57,3,0.29,6106,114.357894,123.998177,133.775885,140.111112,I,Above,Flat,0,NaN,Wood,42.33771711,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2427,NJBF000065749,14 S RALEIGH AVE,Atlantic City,NJ,39.34798506,-74.46120964,RES3A,3001,282,NaN,NE,1969,0,3301,1,6,1777.323964,1777.323964,3505,NO,9.5,16.36,3,-1.82,6106,114.088115,123.778562,133.527508,139.983861,I,Above,Hip,0,5701,Wood,12.93216088,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2428,NJBF000065813,4103 ATLANTIC AVE,Atlantic City,NJ,39.348175,-74.45843897,RES3A,3001,101,NaN,NE,1969,0,3301,1,1,4171.55728,4171.55728,3505,NO,18.49,25.85,3,0.58,6106,114.146325,123.826392,133.579285,140.024665,I,Above,Gable,0,5701,Wood,22.16596786,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2429,NJBF000069147,161 S NEW YORK AVE,Atlantic City,NJ,39.358934,-74.427319,COM1,3003,100,NaN,ME,1969,0,3401,1,1,1841.612594,1841.612594,3507,NO,14.63,24.88,1,0.47,6106,114.685829,124.275295,134.079014,140.350387,I,Above,Flat,0,NaN,Wood,19.75787364,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2430,NJBF000070364,400 ATLANTIC AVE,Atlantic City,NJ,39.36684668,-74.41564475,RES3D,3004,100,NaN,E,1969,0,3303,1,1,1435.994742,1435.994742,3505,NO,18.91,33.82,3,2.4,6106,114.839391,124.40589,134.231202,140.420622,I,Above,Flat,0,NaN,Wood,26.36141976,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2431,NJBF000066918,115 N WINDSOR AVE,Atlantic City,NJ,39.35130168,-74.46098512,RES3A,3001,,45,NE,1921,1921,3301,2,2,2134.708439,2134.708439,3505,NO,21.69,31.22,3,-0.94,6106,114.050746,123.74668,133.495858,139.936702,I,Above,Gable,0,5701,Wood,26.4544097,0,0,,,,1,1,,0.03,nav,1,1921,2,, 2432,NJBF000071205,207 GRAMMERCY PL,Atlantic City,NJ,39.36975058,-74.41456687,RES3D,3004,,28,E,1997,1997,3303,2,2,2265.173094,2265.173094,3505,NO,29.29,39.72,3,6.43,6106,114.827925,124.395492,134.22256,140.397614,I,Above,Hip,0,NaN,Wood,34.50184309,0,0,,,,1,1,,0.03,nav,1,1997,2,, 2433,NJBF000066837,3532 ATLANTIC AVE,Atlantic City,NJ,39.35095759,-74.45259521,COM1,3003,100,NaN,ME,1969,0,3401,6,1,17025.51512,17025.51512,3507,YES,114.49,124.67,1,0.72,6106,114.238473,123.901722,133.663282,140.074587,I,Above,Gable,0,NaN,Wood,119.5799225,0,0,,,,1,1,,0.03,nav,1,1969,6,, 2434,NJBF000070493,36 N CONNECTICUT AVE,Atlantic City,NJ,39.36735351,-74.41905638,RES3D,3004,,17,E,1900,1900,3303,3,1,955.3876309,955.3876309,3505,NO,47.83,53.81,3,6.59,6106,114.760876,124.338064,134.156657,140.361089,I,Above,Flat,0,NaN,Wood,50.82109929,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2435,NJBF000072619,1525 MADISON AVE,Atlantic City,NJ,39.374297,-74.448261,RES1,3001,,17,NE,1900,1900,3102,2,1,855.5457763,855.5457763,3505,NO,39.24,48.4,3,1.09,6106,114.052968,123.731461,133.494935,139.794358,I,Above,Gable,0,5701,Wood,43.82050308,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2436,NJBF000064557,4711 ATLANTIC AVE,Atlantic City,NJ,39.34477916,-74.46536149,RES3B,3001,,18,ME,1900,1900,3301,2,1,3422.825562,3422.825562,3504,YES,34.26,48.52,-4,0,6106,114.038638,123.738818,133.481959,139.967178,I,Above,Gable,0,NaN,Wood,41.3927079,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2437,NJBF000068429,227 N SOVEREIGN AVE,Atlantic City,NJ,39.35672471,-74.45287727,COM4,3001,,NaN,ME,1969,0,3401,2,1,5159.000049,5159.000049,3507,YES,33.24,41.34,1,-0.1,6106,114.160258,123.834658,133.595412,139.984052,I,Above,Flat,0,NaN,Wood,37.28970193,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2438,NJBF000071934,1409 N ARKANSAS AVE,Atlantic City,NJ,39.37203461,-74.44636283,RES1,3001,,17,NE,1935,1935,3102,2,1,1390.01965,1390.01965,3505,NO,34.91,44.58,3,0.42,6106,114.119838,123.789925,133.557518,139.859639,I,Above,Gable,0,5701,Wood,39.74461357,0,0,,,,1,1,,0.03,nav,1,1935,2,, 2439,NJBF000072661,557 N NEW JERSEY AVE,Atlantic City,NJ,39.37444068,-74.42497704,IND3,3001,511,NaN,E,1969,0,3401,2,1,3006.857356,3006.857356,3507,NO,37.1,43.05,1,2.53,6106,114.552035,124.155532,133.961204,140.169386,I,Above,Flat,0,NaN,Wood,40.07778023,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2440,NJBF000070541,611 N INDIANA AVE,Atlantic City,NJ,39.36752367,-74.43785154,RES1,3001,,17,NE,1918,1918,3102,2,1,1133.311164,1133.311164,3505,NO,37.91,45.97,3,-1.01,6106,114.356172,123.992652,133.776385,140.063899,I,Above,Hip,0,5701,Wood,41.94047564,0,0,,,,1,1,,0.03,nav,1,1918,2,, 2441,NJBF000064860,118 S KINGSTON AVE,Atlantic City,NJ,39.34549477,-74.4620673,RES3A,3001,,45,NE,1925,1925,3301,3,2,1454.48758,1454.48758,3504,NO,47.43,59.79,-4,0,6106,114.101523,123.790204,133.537873,140.008207,I,Above,Hip,0,5701,Wood,53.60619827,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2442,NJBF000064282,121 S NEWTON AVE,Atlantic City,NJ,39.34409661,-74.46429274,RES1,3001,,18,NE,1990,1990,3102,3,1,1815.992996,1815.992996,3504,NO,42.68,56.49,-4,0,6106,114.070975,123.765438,133.509972,139.994503,I,Above,Flat,0,5701,Wood,49.58306221,0,0,,,,1,1,,0.03,nav,1,1990,3,, 2443,NJBF000069559,1414 ATLANTIC AVE,Atlantic City,NJ,39.36162808,-74.42840969,COM1,3003,739,NaN,ME,1969,0,3401,4,1,43413.73493,43413.73493,3507,YES,66.76,77.83,1,1.89,6106,114.629631,124.227021,134.028621,140.296106,I,Above,Flat,0,NaN,Wood,72.29726192,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2444,NJBF000071396,151 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3704685,-74.41409533,RES3D,3004,,27,E,2000,2000,3303,2,2,1761.371718,1761.371718,3505,NO,28.57,34.12,3,4.04,6106,114.829499,124.396712,134.224606,140.395109,I,Above,Hip,0,NaN,Wood,31.3454631,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 2445,NJBF000072777,103 LIBERTY AVE,Atlantic City,NJ,39.374882,-74.416431,RES3C,3001,,17,ME,2003,2003,3301,3,1,559.6507306,559.6507306,3505,NO,44.65,55.67,3,5.95,6106,114.728735,124.307964,134.13027,140.298048,I,Above,Hip,0,NaN,Wood,50.15771666,0,0,,,,1,1,,0.03,nav,1,2003,3,, 2446,NJBF000072742,103 LIBERTY AVE,Atlantic City,NJ,39.37475807,-74.41634743,RES3C,3001,,17,ME,2003,2003,3301,3,1,1379.152132,1379.152132,3505,NO,59.1,69.85,3,6.93,6106,114.731943,124.310796,134.133301,140.30108,I,Above,Gable,0,NaN,Wood,64.47655232,0,0,,,,1,1,,0.03,nav,1,2003,3,, 2447,NJBF000070237,901 ARCTIC AVE,Atlantic City,NJ,39.36636071,-74.42314282,RES1,3001,,NaN,NE,1969,0,3102,2,1,4415.744672,4415.744672,3505,NO,35.13,49.74,3,-2.32,6106,114.685551,124.273581,134.084471,140.311549,I,Above,Gable,0,5701,Wood,42.43770394,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2448,NJBF000068584,518 N TRENTON AVE,Atlantic City,NJ,39.35718052,-74.46111636,RES1,3001,,45,NE,1900,1925,3101,2,2,1759.183137,1759.183137,3505,NO,33.59,46.76,3,5.89,6106,113.974534,123.680894,133.429174,139.843866,I,Above,Flat,0,5701,Wood,40.17112063,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2449,NJBF000068535,2636 ARCTIC AVE,Atlantic City,NJ,39.35704782,-74.44510393,RES3A,3001,,45,NE,1900,1900,3301,2,2,2336.372939,2336.372939,3505,YES,31.49,38.48,3,4.65,6106,114.325374,123.97197,133.745065,140.10215,I,Above,Flat,0,5701,Wood,34.98531907,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2450,NJBF000067325,9 S CHELSEA AVE,Atlantic City,NJ,39.35308357,-74.44814122,COM1,3003,,NaN,ME,1969,0,3401,3,1,3725.654404,3725.654404,3507,NO,50.84,57.78,1,1.69,6106,114.308667,123.959374,133.727804,140.112716,I,Above,Hip,0,NaN,Wood,54.31294539,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2451,NJBF000065972,43 S ANNAPOLIS AVE,Atlantic City,NJ,39.34858507,-74.4582839,RES3A,3001,,45,NE,1969,1900,3301,3,2,2379.90524,2379.90524,3504,YES,50.78,63.78,-4,0,6106,114.144459,123.824744,133.577866,140.020927,I,Above,Gable,0,5701,Wood,57.28060743,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2452,NJBF000067451,11 N BOSTON AVE,Atlantic City,NJ,39.35353794,-74.45199819,RES3B,3001,737,NaN,ME,1969,0,3301,2,1,1234.505413,1234.505413,3504,NO,21.64,35.5,-4,0,6106,114.219011,123.884755,133.64715,140.045653,I,Above,Hip,0,NaN,Wood,28.56837439,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2453,NJBF000067519,15 N BOSTON AVE,Atlantic City,NJ,39.35371468,-74.45176657,RES3B,3001,,45,ME,1910,1910,3301,1,3,952.12974,952.12974,3504,NO,16.09,26.77,-4,0,6106,114.221831,123.887029,133.64977,140.046656,I,Above,Flat,0,NaN,Wood,21.4317631,0,0,,,,1,1,,0.03,nav,1,1910,1,, 2454,NJBF000064719,129 S BERKLEY SQ,Atlantic City,NJ,39.34515505,-74.46225322,RES3A,3001,,45,NE,1900,1900,3301,3,2,1866.747019,1866.747019,3504,YES,58.41,73.22,-4,0,6106,114.101871,123.790561,133.537953,140.010445,I,Above,Hip,0,5701,Wood,65.81509839,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2455,NJBF000072769,1811 N MICHIGAN AVE,Atlantic City,NJ,39.37486264,-74.45235349,RES1,3001,,17,NE,1971,1971,3101,1,1,1182.556065,1182.556065,3505,NO,12.95,21.41,3,-1.3,6106,113.957818,123.651031,133.407366,139.717595,I,Above,Gable,0,5701,Wood,17.17704673,0,0,,,,1,1,,0.03,nav,1,1971,1,, 2456,NJBF000067641,132 S BELLEVUE AVE,Atlantic City,NJ,39.35405013,-74.44115545,RES3A,3004,,45,NE,1900,1900,3301,3,3,553.4290864,553.4290864,3505,YES,32.97,44.66,3,-2.59,6106,114.448151,124.075562,133.855286,140.20687,I,Above,Flat,0,5701,Wood,38.81505073,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2457,NJBF000067200,3720 SUNSET AVE,Atlantic City,NJ,39.3525395,-74.4569265,RES3A,3001,,27,NE,1900,1900,3301,2,2,1159.299508,1159.299508,3505,YES,26.01,38.77,3,2.37,6106,114.123972,123.806508,133.561515,139.982688,I,Above,Flat,0,5701,Wood,32.39238765,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2458,NJBF000065521,52 S RALEIGH AVE,Atlantic City,NJ,39.34732582,-74.46066688,RES3A,3001,,18,NE,1900,1900,3301,2,1,1890.784635,1890.784635,3505,NO,34.44,45.2,3,6.96,6106,114.108486,123.795486,133.545186,140.002455,I,Above,Hip,0,5701,Wood,39.81984414,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2459,NJBF000072081,2130 KUEHNLE AVE,Atlantic City,NJ,39.3725225,-74.451458,RES1,3001,,17,NE,1965,1965,3102,1,1,1501.197875,1501.197875,3505,NO,27.38,38.79,3,8.11,6106,114.003745,123.692076,133.450897,139.768108,I,Above,Hip,0,5701,Wood,33.08697116,0,0,,,,1,1,,0.03,nav,1,1965,1,, 2460,NJBF000069337,237 N TEXAS AVE,Atlantic City,NJ,39.35974197,-74.44541988,RES3A,3001,,NaN,NE,1923,0,3301,2,1,591.0745754,591.0745754,3505,YES,39.36,53.44,3,4.72,6106,114.285531,123.937514,133.709793,140.057634,I,Above,Flat,0,5701,Wood,46.39715866,0,0,,,,1,1,,0.03,nav,1,1923,2,, 2461,NJBF000066681,27 N ANNAPOLIS AVE,Atlantic City,NJ,39.350461,-74.4596185,RES3C,3001,,NaN,E,1969,0,3303,3,1,6407.584457,6407.584457,3505,NO,51.8,56.93,3,3.79,6106,114.091322,123.780389,133.531565,139.971396,I,Above,Flat,0,NaN,Wood,54.36377672,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2462,NJBF000065853,37 S RICHMOND AVE,Atlantic City,NJ,39.34827469,-74.45947468,RES3A,3001,,45,NE,1900,1900,3301,2,2,1461.650997,1461.650997,3505,NO,26.67,32.34,3,0.39,6106,114.122377,123.806651,133.55806,140.006864,I,Above,Hip,0,5701,Wood,29.50314258,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2463,NJBF000065104,32 S TALLAHASSEE AVE,Atlantic City,NJ,39.34615408,-74.46412422,RES1,3001,,18,NE,1900,1900,3102,2,1,2252.373906,2252.373906,3504,YES,36.79,47.97,-4,0,6106,114.047882,123.746056,133.490929,139.965663,I,Above,Hip,0,5701,Wood,42.37981881,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2464,NJBF000067870,21 N CHELSEA AVE,Atlantic City,NJ,39.35483488,-74.44945214,RES3B,3001,,45,ME,1900,1900,3301,3,2,1229.396112,1229.396112,3504,YES,41.47,56.08,-4,0,6106,114.258279,123.916883,133.683166,140.066457,I,Above,Hip,0,NaN,Wood,48.77377534,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2465,NJBF000067963,31 N CHELSEA AVE,Atlantic City,NJ,39.3551825,-74.4496655,RES3B,3001,,45,ME,1920,1920,3301,2,2,1487.349856,1487.349856,3504,YES,27.25,36.99,-4,0,6106,114.24933,123.90931,133.675234,140.057974,I,Above,Hip,0,NaN,Wood,32.12171921,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2466,NJBF000067807,14 N MORRIS AVE,Atlantic City,NJ,39.354589,-74.44888,RES3B,3001,,45,ME,1900,1900,3301,2,3,512.8498751,512.8498751,3504,NO,24.93,31.58,-4,0,6106,114.273787,123.92987,133.697071,140.079065,I,Above,Gable,0,NaN,Wood,28.2563749,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2467,NJBF000067835,14 N MORRIS AVE,Atlantic City,NJ,39.3546837,-74.44867441,RES3B,3001,,45,ME,1900,1900,3301,2,3,1338.306886,1338.306886,3504,NO,37,45.41,-4,0,6106,114.277085,123.93258,133.700102,140.080894,I,Above,Hip,0,NaN,Wood,41.20407205,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2468,NJBF000067122,4 N ST DAVIDS PL,Atlantic City,NJ,39.35217702,-74.45495796,RES3B,3001,,45,E,1920,1920,3303,4,3,1390.817805,1390.817805,3507,NO,68.09,74.91,1,1.17,6106,114.171522,123.845929,133.603889,140.019327,I,Above,Flat,0,NaN,Wood,71.49781199,0,0,,,,1,1,,0.03,nav,1,1920,4,, 2469,NJBF000068718,2319 ATLANTIC AVE,Atlantic City,NJ,39.35748239,-74.44028403,COM1,3003,738,NaN,ME,1969,0,3401,3,1,1690.3823,1690.3823,3507,YES,38.97,51.32,1,2.66,6106,114.424462,124.054799,133.83586,140.171084,I,Above,Flat,0,NaN,Wood,45.14275887,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2470,NJBF000068802,221 N MORRIS AVE,Atlantic City,NJ,39.35765522,-74.45015729,RES3A,3001,,27,NE,1900,1900,3301,2,2,1585.648175,1585.648175,3507,YES,21.28,27.62,1,-0.26,6106,114.20808,123.873927,133.638828,140.013445,I,Above,Gable,0,5701,Wood,24.45206417,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2471,NJBF000070384,214 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36690442,-74.42669139,RES3D,3004,100,NaN,E,1969,0,3303,1,1,2297.12448,2297.12448,3505,NO,16.44,25.69,3,3.61,6106,114.603271,124.202981,134.007114,140.248751,I,Above,Flat,0,NaN,Wood,21.06745228,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2472,NJBF000069956,323 N INDIANA AVE,Atlantic City,NJ,39.36520045,-74.43628401,RES1,3001,,17,NE,1910,1910,3101,2,1,1303.248948,1303.248948,3507,NO,27.48,33.24,1,0.65,6106,114.417467,124.04577,133.832764,140.122454,I,Above,Hip,0,5701,Wood,30.36194064,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2473,NJBF000072003,733 CASPIAN AVE,Atlantic City,NJ,39.37225543,-74.42478017,RES1,3001,,16,NE,1900,1900,3102,1,1,1061.271392,1061.271392,3505,NO,17.78,24.17,3,0.87,6106,114.581437,124.181971,133.988608,140.203376,I,Above,Hip,0,5701,Wood,20.97411529,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2474,NJBF000071813,713 WABASH AVE,Atlantic City,NJ,39.3717104,-74.42391607,RES1,3001,,45,NE,1930,1930,3102,2,2,1141.787133,1141.787133,3505,YES,36.94,43.04,3,4.44,6106,114.606197,124.203505,134.011928,140.224664,I,Above,Hip,0,5701,Wood,39.9882639,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2475,NJBF000070893,800 N INDIANA AVE,Atlantic City,NJ,39.3687768,-74.43913817,RES1,3001,,17,NE,1930,1930,3102,2,1,1186.1678,1186.1678,3505,YES,40.38,46.96,3,8.11,6106,114.313741,123.95598,133.737132,140.025063,I,Above,Hip,0,5701,Wood,43.67157226,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2476,NJBF000069929,400 N OHIO AVE,Atlantic City,NJ,39.36504601,-74.4382676,RES3B,3001,,45,ME,1900,1900,3301,1,3,1928.367943,1928.367943,3505,NO,10.42,18.43,3,-1.84,6106,114.37651,124.011247,133.794783,140.093308,I,Above,Hip,0,NaN,Wood,14.42640013,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2477,NJBF000069952,404 N OHIO AVE,Atlantic City,NJ,39.36517881,-74.4383499,RES3B,3001,,45,ME,1900,1900,3301,2,2,1146.485263,1146.485263,3505,NO,29.35,42.59,3,-2.27,6106,114.373159,124.008347,133.791714,140.090077,I,Above,Hip,0,NaN,Wood,35.97044755,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2478,NJBF000072735,,Atlantic City,NJ,39.37471808,-74.44671191,RES1,3001,,NaN,NE,1948,0,3102,2,1,1480.19245,1480.19245,3505,NO,28.28,41.07,3,3.17,6106,114.081753,123.755222,133.521176,139.813672,I,Above,Gable,0,5701,Wood,34.67737359,0,0,,,,1,1,,0.03,nav,1,1948,2,, 2479,NJBF000072827,1907 KUEHNLE AVE,Atlantic City,NJ,39.37510198,-74.45089864,RES1,3001,,17,NE,1925,1925,3101,2,1,2898.255631,2898.255631,3505,NO,29.1,39.81,3,2.69,6106,113.986692,123.674945,133.433608,139.738291,I,Above,Hip,0,5701,Wood,34.45552401,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2480,NJBF000072851,1511 PENROSE AVE,Atlantic City,NJ,39.37521028,-74.4472274,RES1,3001,,16,NE,1925,1925,3101,2,1,1011.346386,1011.346386,3505,NO,29.35,41.42,3,-0.53,6106,114.065054,123.740646,133.505508,139.797759,I,Above,Hip,0,5701,Wood,35.38690626,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2481,NJBF000072492,1463 MADISON AVE,Atlantic City,NJ,39.37385632,-74.44672074,RES1,3001,,17,NE,1954,1954,3102,2,1,1267.044017,1267.044017,3505,NO,26.11,34.69,3,4.6,6106,114.091319,123.764161,133.530448,139.826456,I,Above,Gable,0,5701,Wood,30.40292423,0,0,,,,1,1,,0.03,nav,1,1954,2,, 2482,NJBF000072696,1562 OHIO AVE,Atlantic City,NJ,39.374576,-74.4484885,RES1,3001,,17,NE,1994,1994,3102,2,1,903.0007127,903.0007127,3505,NO,32.6,42.82,3,6.4,6106,114.044896,123.72438,133.487351,139.78639,I,Above,Gable,0,5701,Wood,37.7098042,0,0,,,,1,1,,0.03,nav,1,1994,2,, 2483,NJBF000072520,2031 MURRAY AVE,Atlantic City,NJ,39.37398172,-74.45251428,RES1,3001,,17,NE,1900,1900,3101,1,1,1621.62835,1621.62835,3505,NO,19.19,26.86,3,0.4,6106,113.96425,123.65743,133.413886,139.728312,I,Above,Gable,0,5701,Wood,23.022157,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2484,NJBF000072224,1403 N MICHIGAN AVE,Atlantic City,NJ,39.37296081,-74.44557654,RES1,3001,,17,NE,1900,1900,3102,1,1,1312.015938,1312.015938,3505,NO,21.43,35.66,3,7.29,6106,114.126267,123.794453,133.563052,139.858691,I,Above,Gable,0,5701,Wood,28.54612176,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2485,NJBF000072141,1614 N ARKANSAS AVE,Atlantic City,NJ,39.37269844,-74.45006137,RES1,3001,,17,NE,1900,1900,3102,1,1,1556.372567,1556.372567,3505,NO,24.78,38.54,3,8.22,6106,114.032085,123.715621,133.476704,139.788654,I,Above,Gable,0,5701,Wood,31.65916501,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2486,NJBF000068820,546 N TRENTON AVE,Atlantic City,NJ,39.35771287,-74.46159912,RES1,3001,,27,NE,1925,1925,3101,2,2,3278.01217,3278.01217,3505,NO,25.08,31.77,3,-2.53,6106,113.957417,123.666454,133.413929,139.827682,I,Above,Flat,0,5701,Wood,28.42235611,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2487,NJBF000069045,711 N HARRISBURG AVE #B,Atlantic City,NJ,39.35852033,-74.46283642,RES1,3001,,17,NE,1900,1900,3101,2,1,1078.103422,1078.103422,3505,NO,37.34,43.61,3,-1.63,6106,113.92042,123.63545,133.38096,139.794698,I,Above,Flat,0,5701,Wood,40.47877484,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2488,NJBF000071656,624 ADRIATIC AVE,Atlantic City,NJ,39.37119185,-74.42228097,RES1,3001,,33,NE,1900,1900,3102,2,1,4821.509631,4821.509631,3505,YES,41.43,47.23,3,6.43,6106,114.647088,124.238895,134.05058,140.257609,I,Above,Flat,0,5701,Wood,44.33119058,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2489,NJBF000070577,1926 GRANT AVE,Atlantic City,NJ,39.36767156,-74.441116,RES3B,3001,,33,ME,1900,1915,3301,2,1,3294.856914,3294.856914,3505,YES,32.43,44.66,3,7.29,6106,114.28397,123.931607,133.709592,140.00954,I,Above,Flat,0,5701,Wood,38.5441443,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2490,NJBF000072607,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37426361,-74.42881428,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5282.434203,5282.434203,3505,NO,41.66,51.03,3,6.59,6106,114.472089,124.087024,133.885443,140.110842,I,Above,Flat,0,NaN,Wood,46.34855292,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2491,NJBF000072563,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37409557,-74.42924336,RES3C,3004,,NaN,ME,1969,0,3301,1,1,5053.263338,5053.263338,3505,NO,21.27,28.4,3,8.49,6106,114.464835,124.080922,133.878583,140.106396,I,Above,Hip,0,NaN,Wood,24.83790962,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2492,NJBF000072710,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37463282,-74.42925294,RES3C,3004,,NaN,ME,1969,0,3301,1,1,5226.299184,5226.299184,3505,NO,16.3,26.16,3,-1.24,6106,114.458473,124.075118,133.872596,140.098552,I,Above,Hip,0,NaN,Wood,21.23377311,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2493,NJBF000072756,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37480639,-74.42937112,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5371.481138,5371.481138,3505,NO,22.04,33.9,3,-2.15,6106,114.453971,124.071146,133.868346,140.094188,I,Above,Hip,0,NaN,Wood,27.96950294,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2494,NJBF000072843,818 N MARYLAND AVE #K,Atlantic City,NJ,39.3751564,-74.42960363,RES3D,3001,,NaN,ME,1969,0,3301,2,1,5239.379878,5239.379878,3507,NO,37.46,51.3,1,1.66,6106,114.444991,124.063214,133.859863,140.085444,I,Above,Flat,0,NaN,Wood,44.38021974,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2495,NJBF000072816,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37505093,-74.43013606,RES3D,3001,,NaN,ME,1969,0,3301,1,1,4112.828705,4112.828705,3507,NO,14.28,24.12,1,2.59,6106,114.434802,124.054564,133.850247,140.078427,I,Above,Hip,0,NaN,Wood,19.19979358,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2496,NJBF000072905,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37556233,-74.42995187,RES3D,3001,,NaN,ME,1969,0,3301,1,1,4989.694052,4989.694052,3507,NO,18.68,31.57,1,1.81,6106,114.432919,124.052588,133.848448,140.074043,I,Above,Hip,0,NaN,Wood,25.12820123,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2497,NJBF000072932,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37573366,-74.4295217,RES3D,3001,,NaN,ME,1969,0,3301,2,1,4876.543547,4876.543547,3507,NO,32.85,39.49,1,0.38,6106,114.440163,124.058669,133.855283,140.078471,I,Above,Hip,0,NaN,Wood,36.16930435,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2498,NJBF000069157,121 N FLORIDA AVE,Atlantic City,NJ,39.358986,-74.4428485,RES3B,3001,,17,ME,1900,1900,3301,1,1,728.3466133,728.3466133,3505,NO,22.54,28.72,3,6.62,6106,114.350518,123.992244,133.768877,140.109244,I,Above,Flat,0,NaN,Wood,25.63415941,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2499,NJBF000070842,1008 N MICHIGAN AVE,Atlantic City,NJ,39.36860267,-74.44228323,RES3A,3001,,17,NE,1900,1900,3301,2,1,1886.525102,1886.525102,3505,NO,30.98,37.22,3,4.33,6106,114.247842,123.900508,133.676221,139.977054,I,Above,Hip,0,5701,Wood,34.09950084,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2500,NJBF000071061,,Atlantic City,NJ,39.36925894,-74.41659715,RES3D,3004,,NaN,E,1991,0,3303,3,1,2032.332775,2032.332775,3505,NO,41.96,53.2,3,1.58,6106,114.790644,124.363328,134.186453,140.372942,I,Above,Flat,0,NaN,Wood,47.58247174,0,0,,,,1,1,,0.03,nav,1,1991,3,, 2501,NJBF000067355,3615 WINCHESTER AVE,Atlantic City,NJ,39.35320664,-74.45532261,RES3B,3001,282,NaN,E,1969,0,3303,4,1,2092.68455,2092.68455,3507,YES,79.04,84.2,1,2.26,6106,114.150611,123.828246,133.585601,139.998067,I,Above,Flat,0,NaN,Wood,81.61653036,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2502,NJBF000072323,511 CASPIAN AVE,Atlantic City,NJ,39.37329002,-74.42220524,RES1,3001,,45,NE,1925,1925,3102,2,2,2327.183163,2327.183163,3505,YES,33.12,47.26,3,4.95,6106,114.624375,124.21841,134.029747,140.229429,I,Above,Hip,0,5701,Wood,40.18521291,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2503,NJBF000070217,,Atlantic City,NJ,39.36627876,-74.43946619,RES3B,3001,,NaN,ME,1969,0,3301,1,1,1442.13272,1442.13272,3505,NO,21.16,29.17,3,6.72,6106,114.336025,123.97639,133.757578,140.056326,I,Above,Gable,0,NaN,Wood,25.16073555,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2504,NJBF000068871,3911 CROSSAN AVE,Atlantic City,NJ,39.35785868,-74.46328201,RES1,3001,,17,NE,1920,1920,3101,1,1,1390.445106,1390.445106,3505,NO,18.52,24.24,3,-0.34,6106,113.918721,123.634516,133.379522,139.79762,I,Above,Hip,0,5701,Wood,21.38053476,0,0,,,,1,1,,0.03,nav,1,1920,1,, 2505,NJBF000068313,514 N ELBERON AVE,Atlantic City,NJ,39.35632809,-74.46280896,RES1,3001,,16,NE,1900,1900,3101,1,1,949.2092203,949.2092203,3505,NO,21.38,35.46,3,5.94,6106,113.947928,123.659537,133.405515,139.829296,I,Above,Gable,0,5701,Wood,28.42243103,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2506,NJBF000069383,249 N TEXAS AVE,Atlantic City,NJ,39.36000179,-74.44561474,RES3A,3001,,27,NE,1923,1923,3301,2,2,1678.824411,1678.824411,3505,YES,29.8,43.08,3,4.25,6106,114.278138,123.931206,133.703128,140.050717,I,Above,Flat,0,5701,Wood,36.4421752,0,0,,,,1,1,,0.03,nav,1,1923,2,, 2507,NJBF000070778,25 N RHODE ISLAND AVE,Atlantic City,NJ,39.36839586,-74.41588668,RES3D,3004,20,NaN,E,1969,0,3303,2,1,1385.722237,1385.722237,3505,NO,27.53,37.73,3,5.72,6106,114.815894,124.385336,134.209984,140.395743,I,Above,Flat,0,NaN,Wood,32.63153482,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2508,NJBF000068064,103 N CHELSEA AVE,Atlantic City,NJ,39.3555266,-74.44992564,RES3A,3001,,45,NE,1925,1925,3301,2,3,1568.184039,1568.184039,3505,NO,41.97,53.04,3,6.17,6106,114.239367,123.90089,133.666376,140.04875,I,Above,Hip,0,5701,Wood,47.5071926,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2509,NJBF000070986,1115 ADRIATIC AVE,Atlantic City,NJ,39.36906156,-74.42848627,RES1,3001,,27,NE,1900,1900,3103,2,2,1441.247704,1441.247704,3505,YES,30.11,37.34,3,-0.36,6106,114.539406,124.147519,133.947898,140.190126,I,Above,Gable,0,5701,Wood,33.72285802,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2510,NJBF000069511,28 S TENNESSEE AVE,Atlantic City,NJ,39.3610899,-74.42768239,COM1,3003,100,NaN,ME,1969,0,3401,4,1,1867.549862,1867.549862,3507,YES,62.34,68.65,1,-0.39,6106,114.651761,124.245966,134.048932,140.314842,I,Above,Flat,0,NaN,Wood,65.49197362,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2511,NJBF000069505,32 S TENNESSEE AVE,Atlantic City,NJ,39.36103494,-74.42762056,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1867.81306,1867.81306,3507,YES,27.85,36.67,1,1.64,6106,114.653736,124.247658,134.050739,140.316547,I,Above,Flat,0,NaN,Wood,32.26174382,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2512,NJBF000071067,130 HOUSTON AVE,Atlantic City,NJ,39.36928618,-74.41796014,RES3D,3004,,17,E,2003,2003,3303,2,1,1375.29122,1375.29122,3505,NO,36.78,50.73,3,7.02,6106,114.761371,124.338032,134.158476,140.351448,I,Above,Flat,0,NaN,Wood,43.75890026,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2513,NJBF000071774,2101 E RIVERSIDE DR,Atlantic City,NJ,39.37159221,-74.44616575,RES1,3001,,17,NE,1900,1900,3102,1,1,1717.937769,1717.937769,3505,NO,20.17,26.26,3,5.91,6106,114.129187,123.798196,133.566285,139.869501,I,Above,Gable,0,5701,Wood,23.21375938,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2514,NJBF000072066,332 N RHODE ISLAND AVE,Atlantic City,NJ,39.37249597,-74.41923918,IND1,3003,100,NaN,E,1969,0,3401,1,1,565.1213217,565.1213217,3507,NO,14.55,24.75,1,2.17,6106,114.696681,124.281139,134.098454,140.287103,I,Above,Flat,0,NaN,Wood,19.65356517,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2515,NJBF000067998,27 N MORRIS AVE,Atlantic City,NJ,39.35529374,-74.44854472,RES3B,3001,,45,ME,1925,1925,3301,2,2,1345.136325,1345.136325,3504,NO,25.86,34.24,-4,0,6106,114.272308,123.928381,133.696069,140.073927,I,Above,Hip,0,NaN,Wood,30.04781262,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2516,NJBF000068290,28 BOWLER TERR,Atlantic City,NJ,39.35624088,-74.44606294,COM1,3003,,33,ME,1900,1900,3401,2,1,3694.632359,3694.632359,3507,YES,24.9,36.87,1,1.92,6106,114.314515,123.963205,133.734805,140.098935,I,Above,Flat,0,NaN,Wood,30.8860159,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2517,NJBF000067015,115 S CHELSEA AVE,Atlantic City,NJ,39.35170434,-74.44701588,RES4,3003,280,NaN,E,1969,0,3404,20,1,111171.8555,111171.8555,3507,YES,352.05,364.77,1,2.67,6106,114.350477,123.994527,133.764746,140.150274,I,Above,Flat,0,NaN,Wood,358.4096552,0,0,,,,2,2,,0.03,nav,1,1969,20,, 2518,NJBF000072539,2040 HAMILTON AVE,Atlantic City,NJ,39.37403365,-74.45355721,RES1,3001,,17,NE,1955,1955,3101,1,1,1567.522784,1567.522784,3505,NO,19.39,26.91,3,3.77,6106,113.940995,123.637926,133.392634,139.710048,I,Above,Flat,0,5701,Wood,23.15073201,0,0,,,,1,1,,0.03,nav,1,1955,1,, 2519,NJBF000067548,106 ALBION PL,Atlantic City,NJ,39.3537954,-74.44278897,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,1560.865274,1560.865274,3505,NO,45.16,59.84,3,6.9,6106,114.415946,124.048667,133.8257,140.185339,I,Above,Hip,0,5701,Wood,52.49950984,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2520,NJBF000070048,2017 CASPIAN AVE,Atlantic City,NJ,39.36561493,-74.44095617,RES3B,3001,,45,ME,1900,1900,3301,2,2,1343.091536,1343.091536,3505,NO,28.91,36.32,3,2.44,6106,114.311692,123.956281,133.735033,140.042284,I,Above,Hip,0,NaN,Wood,32.61567782,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2521,NJBF000069923,1123 ARCTIC AVE,Atlantic City,NJ,39.36500884,-74.42623972,COM1,3003,100,NaN,ME,1969,1950,3401,2,2,841.3457169,841.3457169,3507,YES,24.89,31.93,1,-0.52,6106,114.635462,124.231105,134.036355,140.282364,I,Above,Flat,0,NaN,Wood,28.40895186,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2522,NJBF000072123,1402 N MICHIGAN AVE,Atlantic City,NJ,39.37265272,-74.44574284,RES1,3001,,17,NE,1925,1925,3102,1,1,1590.197639,1590.197639,3505,NO,24.11,35.16,3,6.09,6106,114.126191,123.794683,133.563112,139.86057,I,Above,Gable,0,5701,Wood,29.63144552,0,0,,,,1,1,,0.03,nav,1,1925,1,, 2523,NJBF000071376,800 ADRIATIC AVE,Atlantic City,NJ,39.37041679,-74.42427502,RES1,3001,,45,NE,1900,1900,3102,2,2,1383.516811,1383.516811,3505,YES,42.25,49.63,3,7.88,6106,114.613594,124.210432,134.018459,140.23719,I,Above,Gable,0,5701,Wood,45.94309993,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2524,NJBF000071927,424 N CONNECTICUT AVE,Atlantic City,NJ,39.3720165,-74.4221855,RES1,3001,,17,NE,1930,1930,3102,2,1,1337.713663,1337.713663,3505,NO,42.02,48.48,3,4.95,6106,114.639539,124.23205,134.043735,140.247575,I,Above,Hip,0,5701,Wood,45.25094662,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2525,NJBF000069296,210 N FLORIDA AVE,Atlantic City,NJ,39.35956091,-74.44413672,RES3A,3001,,33,NE,1900,1900,3301,2,1,7140.430028,7140.430028,3505,YES,32.22,42.74,3,-1.38,6106,114.315565,123.962725,133.737147,140.080559,I,Above,Flat,0,5701,Wood,37.48397771,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2526,NJBF000072543,1926 N ARKANSAS AVE,Atlantic City,NJ,39.37404034,-74.45488595,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,4814.068847,4814.068847,3505,NO,24.12,35.04,3,-0.73,6106,113.912024,123.613722,133.366244,139.687627,I,Above,Flat,0,NaN,Wood,29.57933185,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2527,NJBF000072495,1926 N ARKANSAS AVE,Atlantic City,NJ,39.37387466,-74.45496255,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,4994.27783,4994.27783,3505,NO,30.09,44.47,3,-2.61,6106,113.912209,123.614072,133.366543,139.688858,I,Above,Flat,0,NaN,Wood,37.28127842,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2528,NJBF000072505,1926 N ARKANSAS AVE,Atlantic City,NJ,39.3739195,-74.454447,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3929.654006,3929.654006,3505,NO,44.34,57.02,3,6.86,6106,113.922939,123.622977,133.376272,139.696862,I,Above,Flat,0,NaN,Wood,50.68192253,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2529,NJBF000069347,231 N NEVADA AVE,Atlantic City,NJ,39.35978491,-74.4447995,RES3A,3001,,28,NE,1900,1900,3301,2,2,1369.974618,1369.974618,3505,YES,26.16,35.42,3,3.51,6106,114.29846,123.948307,133.721603,140.066806,I,Above,Flat,0,5701,Wood,30.79098769,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2530,NJBF000068748,634 N DOVER AVE,Atlantic City,NJ,39.3575351,-74.46499646,RES1,3001,,17,NE,1900,1900,3101,1,1,1610.055254,1610.055254,3505,NO,20.68,32.64,3,6.5,6106,113.885072,123.607096,133.34972,139.774218,I,Above,Hip,0,5701,Wood,26.66044391,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2531,NJBF000069151,200 N TEXAS AVE,Atlantic City,NJ,39.35894497,-74.44539168,RES3A,3001,661,NaN,NE,1969,0,3301,2,1,3812.561394,3812.561394,3505,YES,40.88,51.48,3,2.43,6106,114.295855,123.946515,133.718943,140.069803,I,Above,Flat,0,5701,Wood,46.17808872,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2532,NJBF000070124,904 ARCTIC AVE,Atlantic City,NJ,39.36593629,-74.4230471,COM1,3003,738,NaN,ME,1969,0,3401,3,1,1134.939438,1134.939438,3507,YES,47.58,61.31,1,2.34,6106,114.692657,124.279785,134.090914,140.318946,I,Above,Flat,0,NaN,Wood,54.44283136,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2533,NJBF000071369,1605 MCKINLEY AVE,Atlantic City,NJ,39.37038397,-74.43740318,RES1,3001,,16,NE,1954,1954,3101,1,1,1160.350188,1160.350188,3505,NO,14.22,27.61,3,-1.03,6106,114.332431,123.970685,133.754471,140.029419,I,Above,Flat,0,5701,Wood,20.91814322,0,0,,,,1,1,,0.03,nav,1,1954,1,, 2534,NJBF000069377,239 N NEVADA AVE,Atlantic City,NJ,39.3599626,-74.44486892,RES3A,3001,,27,NE,1910,1910,3301,2,2,1435.716546,1435.716546,3505,YES,38.08,47.39,3,7.52,6106,114.294798,123.945159,133.718317,140.063099,I,Above,Gable,0,5701,Wood,42.7319168,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2535,NJBF000069362,235 N NEVADA AVE,Atlantic City,NJ,39.359876,-74.444832,RES3A,3001,,27,NE,1900,1900,3301,2,2,1305.509607,1305.509607,3505,YES,40.5,48.99,3,3.43,6106,114.296659,123.946757,133.719988,140.064963,I,Above,Flat,0,5701,Wood,44.74574373,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2536,NJBF000072406,1835 BEACH AVE,Atlantic City,NJ,39.373544,-74.453618,RES1,3001,,17,NE,1900,1900,3101,1,1,506.5367671,506.5367671,3505,NO,22,33.09,3,5.39,6106,113.945206,123.642009,133.396831,139.716505,I,Above,Flat,0,5701,Wood,27.54884602,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2537,NJBF000065047,108 S BARTRAM AVE,Atlantic City,NJ,39.34599034,-74.46158966,RES3A,3001,,45,NE,1912,1912,3301,3,2,1803.580077,1803.580077,3504,YES,35.76,44.11,-4,0,6106,114.105545,123.793396,133.541754,140.008192,I,Above,Hip,0,5701,Wood,39.93499035,0,0,,,,1,1,,0.03,nav,1,1912,3,, 2538,NJBF000066878,111 N WINDSOR AVE,Atlantic City,NJ,39.35113176,-74.46083084,RES3A,3001,,45,NE,1900,1900,3301,2,2,2276.368576,2276.368576,3505,NO,25.9,38.02,3,2.9,6106,114.056272,123.751293,133.500701,139.941781,I,Above,Hip,0,5701,Wood,31.96226829,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2539,NJBF000072503,1640 N MICHIGAN AVE,Atlantic City,NJ,39.37390781,-74.45023198,RES1,3001,,17,NE,1900,1900,3102,1,1,1551.667844,1551.667844,3505,NO,11.76,18.06,3,-1.4,6106,114.014634,123.699706,133.460007,139.767504,I,Above,Gable,0,5701,Wood,14.91066137,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2540,NJBF000067620,2620 PACIFIC AVE,Atlantic City,NJ,39.35399482,-74.44295303,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,1760.27269,1760.27269,3505,NO,55.84,64.28,3,7.68,6106,114.409893,124.043559,133.82032,140.179929,I,Above,Flat,0,5701,Wood,60.06290573,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2541,NJBF000071292,801 N KENTUCKY AVE,Atlantic City,NJ,39.3701,-74.436212,IND3,3003,560,NaN,E,1969,0,3401,1,1,12515.12466,12515.12466,3507,NO,17.69,28.62,1,-0.58,6106,114.361379,123.995416,133.781414,140.052634,I,Above,Flat,0,NaN,Wood,23.15505794,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2542,NJBF000068648,3011 HOWARD AVE,Atlantic City,NJ,39.35731951,-74.45064627,RES3A,3001,,33,NE,1900,1900,3301,2,1,2923.183451,2923.183451,3507,YES,20.3,26.12,1,-0.75,6106,114.201549,123.868657,133.632827,140.01067,I,Above,Gable,0,5701,Wood,23.21040849,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2543,NJBF000071071,1902 MARMORA AVE,Atlantic City,NJ,39.3693166,-74.44111327,RES3A,3001,,17,NE,1900,1900,3301,2,1,1086.338039,1086.338039,3505,NO,27.27,39.34,3,2.3,6106,114.264802,123.914279,133.691821,139.985392,I,Above,Flat,0,5701,Wood,33.30582832,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2544,NJBF000071227,203 GRAMMERCY PL,Atlantic City,NJ,39.36983893,-74.41434741,RES3D,3004,,28,E,1997,1997,3303,2,2,2140.953289,2140.953289,3505,NO,33.94,47.14,3,6.78,6106,114.831554,124.39862,134.226112,140.399813,I,Above,Hip,0,NaN,Wood,40.53983126,0,0,,,,1,1,,0.03,nav,1,1997,2,, 2545,NJBF000067408,147 S TEXAS AVE,Atlantic City,NJ,39.35336553,-74.44115213,RES4,3003,,45,E,1900,1900,3404,4,3,1294.451091,1294.451091,3507,NO,49.08,56.81,1,-0.09,6106,114.456769,124.082917,133.862644,140.21669,I,Above,Gable,0,NaN,Wood,52.94234407,0,0,,,,2,2,,0.03,nav,1,1900,4,, 2546,NJBF000067192,37 N ALBANY AVE,Atlantic City,NJ,39.35250995,-74.4554538,RES3B,3001,441,NaN,E,1969,0,3303,1,1,4039.372681,4039.372681,3507,NO,16.43,31.33,1,2.29,6106,114.1565,123.833388,133.590588,140.006483,I,Above,Flat,0,NaN,Wood,23.88006862,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2547,NJBF000069666,1333 ATLANTIC AVE,Atlantic City,NJ,39.36264771,-74.42805852,COM1,3003,,NaN,ME,1969,0,3401,3,1,24990.68624,24990.68624,3507,NO,35.39,48.09,1,2.42,6106,114.624832,124.22269,134.024844,140.287246,I,Above,Flat,0,NaN,Wood,41.7386501,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2548,NJBF000067463,3500 WINCHESTER AVE,Atlantic City,NJ,39.35357446,-74.45379811,RES3B,3001,,45,E,1920,1920,3303,4,3,1212.579039,1212.579039,3507,NO,64.94,75.47,1,2.31,6106,114.179305,123.851841,133.611478,140.016714,I,Above,Flat,0,NaN,Wood,70.20708764,0,0,,,,1,1,,0.03,nav,1,1920,4,, 2549,NJBF000071799,1518 BEACH AVE,Atlantic City,NJ,39.37166088,-74.4484118,RES1,3001,,17,NE,1972,1972,3102,2,1,1216.647232,1216.647232,3505,NO,44.21,52.42,3,5.92,6106,114.079716,123.756592,133.520845,139.831558,I,Above,Hip,0,5701,Wood,48.31173922,0,0,,,,1,1,,0.03,nav,1,1972,2,, 2550,NJBF000070278,1830 REV JJ WALTERS,Atlantic City,NJ,39.36653052,-74.4384387,RES3B,3001,,27,ME,1900,1900,3301,2,2,1565.927584,1565.927584,3505,YES,44.92,52.47,3,6.55,6106,114.355215,123.992438,133.775365,140.069004,I,Above,Flat,0,NaN,Wood,48.69307141,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2551,NJBF000067950,406 WARRENA RD,Atlantic City,NJ,39.35514213,-74.46114269,RES1,3001,,17,NE,1900,1900,3102,2,1,944.9005916,944.9005916,3505,NO,28.82,35.11,3,6.13,6106,113.999141,123.702367,133.450935,139.874976,I,Above,Flat,0,5701,Wood,31.96822189,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2552,NJBF000067502,360 N DOVER AVE,Atlantic City,NJ,39.35367488,-74.46193675,RES1,3001,,17,NE,1990,1990,3102,1,1,1814.871698,1814.871698,3505,NO,25.48,33.73,3,6.95,6106,114.000025,123.703878,133.451489,139.884743,I,Above,Gable,0,5701,Wood,29.60088656,0,0,,,,1,1,,0.03,nav,1,1990,1,, 2553,NJBF000069164,731 WARRENA RD,Atlantic City,NJ,39.35902804,-74.46397659,RES1,3001,,NaN,NE,1900,0,3101,1,1,1145.128762,1145.128762,3505,NO,23.31,31.51,3,6.41,6106,113.889193,123.609399,133.353145,139.767801,I,Above,Gable,0,5701,Wood,27.41197243,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2554,NJBF000071258,717 HARRIS PL,Atlantic City,NJ,39.36995744,-74.42290594,RES1,3001,,33,NE,1925,1925,3102,2,1,5630.42342,5630.42342,3505,NO,35.77,47.98,3,5,6106,114.648185,124.240328,134.051068,140.265088,I,Above,Flat,0,5701,Wood,41.87600919,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2555,NJBF000069026,2508 TINDARO TERR,Atlantic City,NJ,39.35843329,-74.44418392,RES3B,3001,,33,ME,1900,1920,3301,2,1,24215.58524,24215.58524,3505,YES,33.4,45.27,3,3.88,6106,114.328322,123.973887,133.748362,140.096334,I,Above,Flat,0,NaN,Wood,39.33590373,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2556,NJBF000067664,3411 WINCHESTER AVE,Atlantic City,NJ,39.35410059,-74.45352385,RES3B,3001,,45,E,1925,1925,3303,2,2,1587.218511,1587.218511,3507,YES,32.03,42.41,1,0.43,6106,114.178698,123.851126,133.611144,140.013154,I,Above,Hip,0,NaN,Wood,37.2187795,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2557,NJBF000070344,803 N ARKANSAS AVE,Atlantic City,NJ,39.3667645,-74.44214517,RES3B,3001,,17,ME,2006,2006,3301,2,1,1409.829854,1409.829854,3505,NO,39.27,45.51,3,4.95,6106,114.27239,123.922465,133.698901,140.006373,I,Above,Hip,0,5701,Wood,42.3911941,0,0,,,,1,1,,0.03,nav,1,2006,2,, 2558,NJBF000067633,3415 WINCHESTER AVE,Atlantic City,NJ,39.35401833,-74.45365596,RES3B,3001,,45,E,1900,1900,3303,3,2,1581.607462,1581.607462,3507,NO,39.72,52.41,1,-0.78,6106,114.176854,123.849633,133.609455,140.012307,I,Above,Flat,0,NaN,Wood,46.06240457,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2559,NJBF000067261,7 N HARTFORD AVE,Atlantic City,NJ,39.35281372,-74.45406844,RES3B,3001,,45,E,1920,1920,3303,4,2,1940.073008,1940.073008,3507,NO,73.26,80.86,1,2.39,6106,114.18294,123.85514,133.614411,140.023831,I,Above,Hip,0,NaN,Wood,77.05829227,0,0,,,,1,1,,0.03,nav,1,1920,4,, 2560,NJBF000069133,2319 ARCTIC AVE,Atlantic City,NJ,39.35889137,-74.44138004,COM1,3003,100,NaN,ME,1969,0,3401,3,1,3282.802433,3282.802433,3507,YES,45.6,58.24,1,-0.66,6106,114.383468,124.01991,133.799011,140.133632,I,Above,Hip,0,NaN,Wood,51.9199964,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2561,NJBF000070732,,Atlantic City,NJ,39.36820859,-74.42760034,RES1,3001,,NaN,NE,1969,0,3103,4,1,2051.776066,2051.776066,3505,NO,57.35,66.06,3,2.59,6106,114.568402,124.172671,133.974874,140.216127,I,Above,Hip,0,5701,Wood,61.70556719,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2562,NJBF000066932,3401 PACIFIC AVE,Atlantic City,NJ,39.35134763,-74.45125444,RES4,3003,100,NaN,E,1969,0,3404,5,1,77281.36754,77281.36754,3507,NO,59.73,72.31,1,1.13,6106,114.262765,123.921744,133.68535,140.089738,I,Above,Flat,0,NaN,Wood,66.01716823,0,0,,,,2,2,,0.03,nav,1,1969,5,, 2563,NJBF000070997,1426 SEWELL AVE,Atlantic City,NJ,39.3690889,-74.43368037,RES3C,3001,,17,ME,1962,1962,3301,1,1,1226.823356,1226.823356,3505,NO,16.34,26.45,3,1.5,6106,114.42764,124.052293,133.84312,140.107616,I,Above,Hip,0,NaN,Wood,21.39490352,0,0,,,,1,1,,0.03,nav,1,1962,1,, 2564,NJBF000069668,26 S PENNSYLVANIA AVE,Atlantic City,NJ,39.36267291,-74.42402915,COM1,3003,100,NaN,ME,1969,0,3401,4,1,5724.883873,5724.883873,3507,YES,68.95,81.62,1,0.16,6106,114.710795,124.296021,134.105629,140.349048,I,Above,Flat,0,NaN,Wood,75.28629989,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2565,NJBF000067587,15 N SOVEREIGN AVE,Atlantic City,NJ,39.35389896,-74.45108983,RES3B,3001,,45,ME,1900,1900,3301,3,4,1750.81063,1750.81063,3504,NO,38.99,45.51,-4,0,6106,114.234283,123.897293,133.661072,140.054573,I,Above,Gable,0,NaN,Wood,42.249306,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2566,NJBF000065481,4507 VENTNOR AVE,Atlantic City,NJ,39.34719731,-74.46412999,RES3A,3001,,45,NE,1905,1905,3301,2,2,1179.162839,1179.162839,3505,NO,27.72,40.84,3,4.15,6106,114.034258,123.734599,133.479485,139.949511,I,Above,Gable,0,5701,Wood,34.28086957,0,0,,,,1,1,,0.03,nav,1,1905,2,, 2567,NJBF000069217,225 N CALIFORNIA AVE,Atlantic City,NJ,39.35920711,-74.44667429,RES3A,3001,,27,NE,1900,1900,3301,2,2,1401.757388,1401.757388,3505,YES,29.29,39.09,3,7.46,6106,114.264825,123.920468,133.690766,140.045672,I,Above,Flat,0,5701,Wood,34.19116817,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2568,NJBF000068726,4300 WEST END AVE,Atlantic City,NJ,39.357493,-74.4675695,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4417.824638,4417.824638,3505,NO,27.79,37.98,3,8.66,6106,113.829043,123.561183,133.300205,139.731802,I,Above,Hip,0,NaN,Wood,32.88529849,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2569,NJBF000068649,4300 WEST END AVE,Atlantic City,NJ,39.35732144,-74.4673844,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3716.111597,3716.111597,3505,NO,37.41,46.29,3,-0.86,6106,113.835223,123.566371,133.305688,139.737632,I,Above,Flat,0,NaN,Wood,41.85092114,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2570,NJBF000068594,4300 WEST END AVE,Atlantic City,NJ,39.3572015,-74.4678525,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3896.695238,3896.695238,3505,NO,26.84,41.07,3,8.4,6106,113.826371,123.559207,133.297901,139.731624,I,Above,Hip,0,NaN,Wood,33.95387257,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2571,NJBF000068520,4300 WEST END AVE,Atlantic City,NJ,39.3569945,-74.467343,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2735.194622,2735.194622,3505,NO,18.41,26.64,3,4.77,6106,113.840145,123.570638,133.310084,139.743487,I,Above,Flat,0,NaN,Wood,22.52527773,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2572,NJBF000068475,4300 WEST END AVE,Atlantic City,NJ,39.3568805,-74.467595,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2984.330221,2984.330221,3505,NO,19.54,28.63,3,8.28,6106,113.835994,123.567319,133.306439,139.741041,I,Above,Hip,0,NaN,Wood,24.08452276,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2573,NJBF000068422,4300 WEST END AVE,Atlantic City,NJ,39.35671063,-74.46728822,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2656.755923,2656.755923,3505,NO,17.04,27.76,3,1.08,6106,113.844839,123.574683,133.314265,139.748881,I,Above,Hip,0,NaN,Wood,22.40153057,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2574,NJBF000068060,2415 PACIFIC AVE,Atlantic City,NJ,39.35551087,-74.44042415,COM1,3003,100,NaN,ME,1900,0,3401,1,1,7466.045721,7466.045721,3507,NO,13.22,22.83,1,2.49,6106,114.445785,124.073242,133.85416,140.197227,I,Above,Flat,0,NaN,Wood,18.02191115,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2575,NJBF000067070,56 N TRENTON AVE,Atlantic City,NJ,39.35194116,-74.45709314,RES3A,3001,,17,NE,1920,1920,3301,3,1,1411.729426,1411.729426,3505,YES,34.15,43.34,3,2.03,6106,114.127851,123.809945,133.564738,139.989083,I,Above,Gable,0,5701,Wood,38.741833,0,0,,,,1,1,,0.03,nav,1,1920,3,, 2576,NJBF000069132,2300 ARCTIC AVE,Atlantic City,NJ,39.35888977,-74.44054301,COM1,3003,730,NaN,ME,1969,0,3401,2,1,944.997498,944.997498,3507,NO,35.29,49.69,1,1.68,6106,114.401592,124.035123,133.815635,140.146733,I,Above,Flat,0,NaN,Wood,42.48919891,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2577,NJBF000069144,2300 ARCTIC AVE,Atlantic City,NJ,39.35892491,-74.44045772,COM1,3003,730,NaN,ME,1969,0,3401,2,1,1046.232059,1046.232059,3507,NO,35.91,44.72,1,0.16,6106,114.403003,124.036295,133.816948,140.147554,I,Above,Hip,0,NaN,Wood,40.31914751,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2578,NJBF000070604,514 GRAMMERCY PL,Atlantic City,NJ,39.367763,-74.41846748,RES3D,3004,,16,E,2003,2003,3303,1,1,1181.651498,1181.651498,3505,NO,14.95,21.36,3,0.2,6106,114.768562,124.344598,134.16428,140.364566,I,Above,Gable,0,NaN,Wood,18.15948128,0,0,,,,1,1,,0.03,nav,1,2003,1,, 2579,NJBF000068247,448 WISTERIA RD,Atlantic City,NJ,39.35613731,-74.4606985,RES1,3001,,45,NE,1900,1900,3102,2,2,1271.331591,1271.331591,3505,NO,45.78,59.33,3,7.83,6106,113.996541,123.699657,133.448723,139.86684,I,Above,Flat,0,5701,Wood,52.55276981,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2580,NJBF000067275,2721 BOARDWALK,Atlantic City,NJ,39.35285066,-74.44387329,RES4,3003,,NaN,E,1969,0,3404,6,1,67060.36259,67060.36259,3507,NO,72.79,78.13,1,1.13,6106,114.404271,124.039122,133.814389,140.1822,I,Above,Flat,0,NaN,Wood,75.45957198,0,0,,,,2,2,,0.03,nav,1,1969,6,, 2581,NJBF000070879,104 HOUSTON AVE,Atlantic City,NJ,39.36873099,-74.41755167,RES3D,3004,,27,E,1900,1900,3303,2,2,903.8033413,903.8033413,3505,NO,36.13,44.74,3,6,6106,114.776579,124.351297,134.172626,140.365409,I,Above,Hip,0,NaN,Wood,40.43844849,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2582,NJBF000064718,132 S KINGSTON AVE,Atlantic City,NJ,39.34515498,-74.46185534,RES3A,3001,,NaN,NE,1969,0,3301,1,1,3468.932195,3468.932195,3504,NO,12.53,26.36,-4,0,6106,114.110589,123.797715,133.545657,140.016682,I,Above,Flat,0,5701,Wood,19.44501072,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2583,NJBF000067387,4214 PORTER AVE,Atlantic City,NJ,39.35331113,-74.46315249,RES1,3001,,45,NE,1955,1955,3102,1,2,1379.36554,1379.36554,3505,NO,24.43,37.66,3,8.1,6106,113.977938,123.685915,133.431839,139.870603,I,Above,Flat,0,5701,Wood,31.04236657,0,0,,,,1,1,,0.03,nav,1,1955,1,, 2584,NJBF000065856,51 S WINDSOR AVE,Atlantic City,NJ,39.34828183,-74.45855488,RES3A,3001,,45,NE,1902,1902,3301,2,2,2514.573883,2514.573883,3505,NO,39.34,49.33,3,3.7,6106,114.142415,123.823144,133.575871,140.021232,I,Above,Hip,0,5701,Wood,44.33659269,0,0,,,,1,1,,0.03,nav,1,1902,2,, 2585,NJBF000066204,27 N RALEIGH AVE,Atlantic City,NJ,39.34918512,-74.46160796,RES3A,3001,,45,NE,1925,1925,3301,2,2,1018.976155,1018.976155,3505,YES,31.78,40.43,3,0.65,6106,114.064017,123.758384,133.506762,139.959201,I,Above,Flat,0,5701,Wood,36.10235825,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2586,NJBF000071778,1515 N MISSOURI AVE,Atlantic City,NJ,39.37160325,-74.44894847,RES1,3001,,17,NE,1951,1951,3102,2,1,1577.558589,1577.558589,3505,NO,26.87,38.33,3,1.94,6106,114.068753,123.747456,133.510828,139.823596,I,Above,Gable,0,5701,Wood,32.59646201,0,0,,,,1,1,,0.03,nav,1,1951,2,, 2587,NJBF000066741,3529 PACIFIC AVE,Atlantic City,NJ,39.3506385,-74.452298,COM1,3003,,NaN,ME,1969,0,3401,3,1,3194.07331,3194.07331,3507,YES,31.85,45.13,1,-0.5,6106,114.248989,123.910521,133.672532,140.083935,I,Above,Flat,0,NaN,Wood,38.49287239,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2588,NJBF000070546,705 N OHIO AVE,Atlantic City,NJ,39.36753514,-74.43951303,RES1,3001,,33,NE,1900,1956,3102,2,1,1741.973415,1741.973415,3505,YES,32.97,45.35,3,3.76,6106,114.320204,123.96226,133.743071,140.037224,I,Above,Flat,0,5701,Wood,39.15859395,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2589,NJBF000071836,334 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37177159,-74.4204013,RES1,3001,,17,NE,1999,1999,3102,2,1,994.7665855,994.7665855,3505,NO,37.44,50.58,3,-0.38,6106,114.680375,124.267342,134.082546,140.278975,I,Above,Hip,0,5701,Wood,44.00969774,0,0,,,,1,1,,0.03,nav,1,1999,2,, 2590,NJBF000066147,45 N DELANCY PL,Atlantic City,NJ,39.34904852,-74.46243915,RES3A,3001,,45,NE,1920,1920,3301,2,2,1515.912189,1515.912189,3505,NO,42.84,51.73,3,4.49,6106,114.047544,123.744901,133.492116,139.94802,I,Above,Flat,0,5701,Wood,47.28757258,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2591,NJBF000072091,1615 BEACH AVE,Atlantic City,NJ,39.37256131,-74.45041313,RES1,3001,,16,NE,1984,1984,3102,1,1,948.9477836,948.9477836,3505,NO,8.39,19.73,3,-2.26,6106,114.026006,123.710671,133.471218,139.784889,I,Above,Gable,0,5701,Wood,14.05988031,0,0,,,,1,1,,0.03,nav,1,1984,1,, 2592,NJBF000070491,2016 GRANT AVE,Atlantic City,NJ,39.367348,-74.4418495,RES3B,3001,,17,ME,1900,1900,3301,3,1,854.7951302,854.7951302,3505,YES,40.72,47.96,3,-0.24,6106,114.271909,123.921667,133.698464,140.002524,I,Above,Gable,0,5701,Wood,44.34018376,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2593,NJBF000068012,474 N DOVER AVE,Atlantic City,NJ,39.35533298,-74.46321314,RES1,3001,,17,NE,1900,1900,3102,2,1,1340.555078,1340.555078,3505,NO,38.97,46.47,3,0.79,6106,113.951382,123.662982,133.408546,139.838147,I,Above,Gable,0,5701,Wood,42.71794604,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2594,NJBF000068304,40 N IOWA AVE,Atlantic City,NJ,39.35628138,-74.44686405,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,2145.670271,2145.670271,3504,NO,27.64,35.45,-4,0,6106,114.296623,123.948265,133.718567,140.085788,I,Above,Gable,0,NaN,Wood,31.54713181,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2595,NJBF000068173,30 N STENTON PL,Atlantic City,NJ,39.35589572,-74.44724622,RES3B,3001,,17,ME,1900,1900,3301,2,1,1243.06936,1243.06936,3504,NO,28.88,35.91,-4,0,6106,114.293085,123.945461,133.715179,140.085452,I,Above,Hip,0,NaN,Wood,32.39503122,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2596,NJBF000072683,1420 PENROSE AVE,Atlantic City,NJ,39.37451303,-74.4458784,RES1,3001,,17,NE,1900,1900,3102,2,1,2115.788087,2115.788087,3505,NO,24.77,36.36,3,1.32,6106,114.102117,123.772581,133.540056,139.830519,I,Above,Hip,0,5701,Wood,30.5622471,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2597,NJBF000067951,9 S CALIFORNIA AVE,Atlantic City,NJ,39.35514383,-74.44389165,RES3A,3004,,45,NE,1900,1900,3301,2,2,2801.534286,2801.534286,3505,YES,26.82,35.82,3,2.86,6106,114.375223,124.014268,133.789462,140.148786,I,Above,Flat,0,5701,Wood,31.32076191,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2598,NJBF000071511,436 N MARYLAND AVE,Atlantic City,NJ,39.37080295,-74.42619487,RES1,3001,,27,NE,1910,1910,3102,2,2,975.8415473,975.8415473,3505,YES,28.33,42.42,3,-0.59,6106,114.568078,124.171219,133.975513,140.201559,I,Above,Flat,0,5701,Wood,35.37674053,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2599,NJBF000070052,1909 HUMMOCK AVE,Atlantic City,NJ,39.3656256,-74.43901315,RES3B,3001,,45,ME,1920,1920,3301,3,2,3056.378388,3056.378388,3505,YES,56.84,69.09,3,5.85,6106,114.353539,123.991545,133.773664,140.073055,I,Above,Hip,0,NaN,Wood,62.96567706,0,0,,,,1,1,,0.03,nav,1,1920,3,, 2600,NJBF000068681,28 N FLORIDA AVE,Atlantic City,NJ,39.35739827,-74.44275772,RES3B,3001,,45,ME,1915,1915,3301,3,2,2167.160021,2167.160021,3505,YES,41.47,54.57,3,5.25,6106,114.371935,124.010789,133.787718,140.133753,I,Above,Hip,0,NaN,Wood,48.02129864,0,0,,,,1,1,,0.03,nav,1,1915,3,, 2601,NJBF000072760,1625 MADISON AVE,Atlantic City,NJ,39.37482419,-74.45014288,RES1,3001,,17,NE,1900,1900,3102,2,1,1120.741051,1120.741051,3505,NO,30.9,37.9,3,2.86,6106,114.00622,123.691638,133.451697,139.755119,I,Above,Gable,0,5701,Wood,34.39710221,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2602,NJBF000070741,422 GRAMMERCY PL,Atlantic City,NJ,39.36825338,-74.41732088,RES3D,3004,,45,E,1900,1900,3303,2,2,1055.187978,1055.187978,3505,NO,39.58,46.28,3,1.98,6106,114.78713,124.360511,134.182362,140.37555,I,Above,Hip,0,NaN,Wood,42.92908265,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2603,NJBF000071182,410 MADISON AVE,Atlantic City,NJ,39.36968698,-74.41779165,RES3D,3004,,17,E,2005,2005,3303,2,1,1107.846639,1107.846639,3505,NO,38.14,53.01,3,2.52,6106,114.760228,124.336941,134.157648,140.34853,I,Above,Gable,0,NaN,Wood,45.57743371,0,0,,,,1,1,,0.03,nav,1,2005,2,, 2604,NJBF000071115,432 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36947876,-74.43023041,RES1,3001,,17,NE,2006,2006,3103,2,1,2213.27846,2213.27846,3505,NO,29.08,43.62,3,-1.89,6106,114.497147,124.111246,133.908299,140.156684,I,Above,Hip,0,5701,Wood,36.34843462,0,0,,,,1,1,,0.03,nav,1,2006,2,, 2605,NJBF000065406,10 S BARTRAM AVE,Atlantic City,NJ,39.34697518,-74.46241782,RES3A,3001,,18,NE,1900,1900,3301,1,1,2315.483152,2315.483152,3505,NO,16.8,24.91,3,-1.95,6106,114.074659,123.767797,133.515039,139.980141,I,Above,Flat,0,5701,Wood,20.85244838,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2606,NJBF000065373,40 S BARTRAM AVE,Atlantic City,NJ,39.34688602,-74.46232778,RES3A,3001,,17,NE,1900,1900,3301,2,1,1816.476601,1816.476601,3505,YES,25.3,32.67,3,3.26,6106,114.07778,123.770383,133.517748,139.982925,I,Above,Hip,0,5701,Wood,28.98460616,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2607,NJBF000066693,3901 VENTNOR AVE,Atlantic City,NJ,39.3504855,-74.45727,COM1,3004,101,NaN,ME,1969,0,3401,2,1,1096.092895,1096.092895,3507,NO,26.45,32.82,1,0.04,6106,114.142404,123.82247,133.577057,140.00827,I,Above,Flat,0,NaN,Wood,29.63331819,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2608,NJBF000066103,8 S WINDSOR AVE,Atlantic City,NJ,39.34891671,-74.45956331,RES3A,3001,,17,NE,1901,1901,3301,2,1,1475.536643,1475.536643,3505,NO,33.58,40.67,3,5,6106,114.112227,123.79811,133.549396,139.995752,I,Above,Hip,0,5701,Wood,37.12617408,0,0,,,,1,1,,0.03,nav,1,1901,2,, 2609,NJBF000071273,,Atlantic City,NJ,39.37001379,-74.41929427,RES3D,3004,,NaN,E,1969,0,3303,3,1,3872.512761,3872.512761,3505,NO,45.56,58.79,3,8.54,6106,114.724456,124.305973,134.123685,140.320665,I,Above,Hip,0,NaN,Wood,52.17361352,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2610,NJBF000072120,6 SLOOP CT,Atlantic City,NJ,39.37264749,-74.41647763,RES3C,3001,,35,ME,1990,1990,3301,2,1,3603.966639,3603.966639,3505,NO,34.81,47.14,3,3.43,6106,114.753564,124.330301,134.153036,140.328179,I,Above,Gable,0,NaN,Wood,40.97706894,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2611,NJBF000067959,2708 ATLANTIC AVE,Atlantic City,NJ,39.35517434,-74.44467233,RES4,3003,101,NaN,E,1969,0,3404,3,1,2291.366605,2291.366605,3507,YES,47.1,57.64,1,1.83,6106,114.357932,123.999812,133.773732,140.136222,I,Above,Gable,0,NaN,Wood,52.36683425,0,0,,,,2,2,,0.03,nav,1,1969,3,, 2612,NJBF000067897,2710 ATLANTIC AVE,Atlantic City,NJ,39.3549345,-74.4445745,RES4,3003,190,NaN,E,1969,0,3404,3,1,570.1042985,570.1042985,3507,YES,36.04,49.9,1,1.43,6106,114.36302,124.004134,133.778223,140.141218,I,Above,Flat,0,NaN,Wood,42.96918683,0,0,,,,2,2,,0.03,nav,1,1969,3,, 2613,NJBF000070924,1739 GRANT AVE,Atlantic City,NJ,39.368862,-74.4386115,RES1,3001,,27,NE,1900,1900,3102,2,2,1351.054425,1351.054425,3505,YES,27.11,34.53,3,-0.98,6106,114.324117,123.964693,133.746751,140.032265,I,Above,Flat,0,5701,Wood,30.81863366,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2614,NJBF000067470,369 N ANNAPOLIS AVE,Atlantic City,NJ,39.35359142,-74.46250007,RES1,3001,,16,NE,1950,1950,3102,1,1,996.6815637,996.6815637,3505,NO,25.29,35.78,3,6.38,6106,113.988731,123.694638,133.441455,139.876884,I,Above,Gable,0,5701,Wood,30.53512987,0,0,,,,1,1,,0.03,nav,1,1950,1,, 2615,NJBF000070736,1131 DREXEL AVE,Atlantic City,NJ,39.36822714,-74.4283844,RES1,3001,,33,NE,1924,1924,3103,2,1,1506.137786,1506.137786,3505,NO,39.79,46.72,3,8.41,6106,114.5514,124.158143,133.958883,140.203566,I,Above,Flat,0,5701,Wood,43.25850584,0,0,,,,1,1,,0.03,nav,1,1924,2,, 2616,NJBF000066397,65 N RALEIGH AVE,Atlantic City,NJ,39.34965758,-74.4620106,RES3A,3001,,45,NE,1900,1900,3301,2,2,1723.628428,1723.628428,3505,YES,43.05,55.05,3,5.56,6106,114.049147,123.746001,133.493801,139.945507,I,Above,Flat,0,5701,Wood,49.04739325,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2617,NJBF000065344,23 S ABERDEEN PL,Atlantic City,NJ,39.34679701,-74.46319177,RES3A,3001,,17,NE,1900,1900,3301,2,1,1376.709176,1376.709176,3505,NO,30.57,42.01,3,4.6,6106,114.059993,123.755814,133.501982,139.970594,I,Above,Hip,0,5701,Wood,36.2917315,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2618,NJBF000068413,509 N ELBERON AVE,Atlantic City,NJ,39.35667099,-74.46251607,RES1,3001,,45,NE,1930,1930,3101,2,2,1348.400092,1348.400092,3505,YES,42.49,50.73,3,5.26,6106,113.950122,123.661126,133.407465,139.828781,I,Above,Hip,0,5701,Wood,46.60644255,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2619,NJBF000068362,2831 ARCTIC AVE,Atlantic City,NJ,39.356501,-74.447833,RES3A,3001,,45,NE,1900,1900,3301,2,2,817.0411166,817.0411166,3505,NO,33.1,42.63,3,0.93,6106,114.272846,123.928359,133.697086,140.067319,I,Above,Gable,0,5701,Wood,37.86270916,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2620,NJBF000065985,4227 VENTNOR AVE,Atlantic City,NJ,39.34862137,-74.46121293,RES3A,3001,639,NaN,NE,1969,0,3301,3,2,1290.525895,1290.525895,3505,YES,53.05,64,3,5.31,6106,114.079888,123.771609,133.520552,139.974113,I,Above,Hip,0,5701,Wood,58.5236885,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2621,NJBF000067181,304 N ANNAPOLIS AVE,Atlantic City,NJ,39.35245998,-74.46211437,RES1,3001,,17,NE,1900,1900,3102,2,1,1088.347674,1088.347674,3505,NO,37.64,44.19,3,4.33,6106,114.01139,123.713816,133.461299,139.900662,I,Above,Flat,0,5701,Wood,40.91596332,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2622,NJBF000068275,3104 FAIRMOUNT AVE,Atlantic City,NJ,39.35620755,-74.45102684,RES3A,3001,,45,NE,1900,1900,3301,2,3,2277.688217,2277.688217,3505,YES,21.89,32.84,3,-0.54,6106,114.206961,123.873669,133.637364,140.021215,I,Above,Flat,0,5701,Wood,27.36242266,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2623,NJBF000065732,122 S DOVER AVE,Atlantic City,NJ,39.34794291,-74.45680627,RES3A,3001,,45,NE,1925,1925,3301,2,2,2157.568759,2157.568759,3504,YES,29.51,43.83,-4,0,6106,114.185001,123.858322,133.613574,140.05369,I,Above,Hip,0,5701,Wood,36.66846411,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2624,NJBF000068104,436 N HARRISBURG AVE,Atlantic City,NJ,39.35564711,-74.46105354,RES1,3001,,NaN,NE,1920,0,3102,2,1,1572.197306,1572.197306,3505,YES,22.65,36.09,3,-1.84,6106,113.994826,123.69853,133.447154,139.86862,I,Above,Gable,0,5701,Wood,29.36864269,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2625,NJBF000072286,1635 N ARKANSAS AVE,Atlantic City,NJ,39.3731653,-74.45040178,RES1,3001,,17,NE,2015,2015,3101,1,1,1830.848257,1830.848257,3505,NO,13.39,25.5,3,-0.29,6106,114.019371,123.704477,133.464799,139.775927,I,Above,Gable,0,5701,Wood,19.44436174,0,0,,,,1,1,,0.03,nav,1,2015,1,, 2626,NJBF000066585,4029 ANN DOVER GDNS,Atlantic City,NJ,39.35014332,-74.45936098,RES3A,3001,,27,NE,1935,1935,3301,2,2,1124.1674,1124.1674,3505,YES,42.39,52.83,3,4.91,6106,114.101011,123.788478,133.540035,139.980337,I,Above,Flat,0,5701,Wood,47.61292353,0,0,,,,1,1,,0.03,nav,1,1935,2,, 2627,NJBF000069851,30 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36454284,-74.42519587,COM1,3003,100,NaN,ME,1969,0,3401,2,1,874.7602433,874.7602433,3507,YES,27.45,33.47,1,0.99,6106,114.663369,124.255077,134.06233,140.305059,I,Above,Flat,0,NaN,Wood,30.45563554,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2628,NJBF000069653,40 S MANSION AVE,Atlantic City,NJ,39.36251549,-74.42448851,COM1,3003,,33,ME,1969,1900,3401,3,1,868.4023827,868.4023827,3507,YES,51.25,60.34,1,0.82,6106,114.702869,124.289275,134.098036,140.344161,I,Above,Flat,0,NaN,Wood,55.79183216,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2629,NJBF000066745,42 N DOVER AVE,Atlantic City,NJ,39.3506477,-74.45892121,RES3A,3001,,45,NE,1900,1900,3301,2,2,774.0477453,774.0477453,3505,YES,35.77,49.07,3,7.89,6106,114.104225,123.790946,133.543123,139.979651,I,Above,Flat,0,5701,Wood,42.41734686,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2630,NJBF000066636,22 N DOVER AVE,Atlantic City,NJ,39.35031564,-74.45865384,RES3A,3001,,45,NE,1925,1925,3301,2,2,684.4168868,684.4168868,3505,YES,34.83,47.6,3,8.16,6106,114.114282,123.799348,133.551922,139.988928,I,Above,Flat,0,5701,Wood,41.21584571,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2631,NJBF000067751,2629 PACIFIC AVE,Atlantic City,NJ,39.35436535,-74.44299796,RES3A,3004,,45,NE,1925,1924,3301,2,2,4587.086464,4587.086464,3505,YES,40.61,50.26,3,1.96,6106,114.404301,124.038791,133.815473,140.173904,I,Above,Gable,0,5701,Wood,45.43637081,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2632,NJBF000069384,246 N NEVADA AVE,Atlantic City,NJ,39.36001359,-74.44533317,RES3A,3001,,27,NE,1900,1900,3301,2,2,1614.631865,1614.631865,3505,NO,31.58,38.05,3,-2.68,6106,114.284112,123.936195,133.70858,140.055006,I,Above,Flat,0,5701,Wood,34.81361936,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2633,NJBF000068364,3107 FAIRMOUNT AVE,Atlantic City,NJ,39.3565085,-74.4513855,RES3A,3001,,45,NE,1905,1905,3301,2,2,1989.772709,1989.772709,3507,YES,39.36,51.68,1,0.9,6106,114.195434,123.863959,133.62706,140.01104,I,Above,Gable,0,5701,Wood,45.52390372,0,0,,,,1,1,,0.03,nav,1,1905,2,, 2634,NJBF000070994,645 HOWARD ST,Atlantic City,NJ,39.369079,-74.4349195,RES1,3001,,17,NE,1900,1900,3101,2,1,1115.068045,1115.068045,3505,NO,23.5,31.11,3,0.17,6106,114.401091,124.029755,133.818342,140.088045,I,Above,Gable,0,5701,Wood,27.30256997,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2635,NJBF000071034,658 HOWARD ST,Atlantic City,NJ,39.369201,-74.4354355,RES1,3001,,17,NE,1900,1900,3101,1,1,1149.031662,1149.031662,3505,NO,20.76,31.55,3,3.63,6106,114.388583,124.019068,133.806698,140.078078,I,Above,Hip,0,5701,Wood,26.15638277,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2636,NJBF000068333,4300 NORTH DRIVE,Atlantic City,NJ,39.35639977,-74.46645953,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3431.725555,3431.725555,3505,NO,11.81,22.25,3,0.02,6106,113.866876,123.592954,133.333751,139.767645,I,Above,Hip,0,NaN,Wood,17.02694363,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2637,NJBF000068496,4300 NORTH DRIVE,Atlantic City,NJ,39.356937,-74.466851,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2248.429464,2248.429464,3505,NO,47.6,59.47,3,8.97,6106,113.851663,123.580115,133.320257,139.752639,I,Above,Gable,0,NaN,Wood,53.53431769,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2638,NJBF000066379,15 N WINDSOR AVE,Atlantic City,NJ,39.34961053,-74.45969333,RES3A,3001,,45,NE,1900,1900,3301,2,2,1180.921383,1180.921383,3505,NO,28.56,41.06,3,3.24,6106,114.100519,123.788254,133.539346,139.983156,I,Above,Flat,0,5701,Wood,34.81074799,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2639,NJBF000065915,40 S WINDSOR AVE,Atlantic City,NJ,39.34843009,-74.459188,RES3A,3001,,45,NE,1920,1920,3301,1,3,1811.501736,1811.501736,3505,NO,15.49,22.85,3,2.43,6106,114.126669,123.81014,133.561961,140.009042,I,Above,Flat,0,5701,Wood,19.17041555,0,0,,,,1,1,,0.03,nav,1,1920,1,, 2640,NJBF000066245,28 S DOVER AVE,Atlantic City,NJ,39.34929193,-74.45784311,RES3A,3001,,45,NE,1915,1915,3301,3,2,2163.296634,2163.296634,3504,YES,32.36,44.39,-4,0,6106,114.145063,123.825038,133.578803,140.017215,I,Above,Hip,0,5701,Wood,38.37521633,0,0,,,,1,1,,0.03,nav,1,1915,3,, 2641,NJBF000070072,1003 ARCTIC AVE,Atlantic City,NJ,39.36570868,-74.42449579,COM1,3003,738,NaN,ME,1969,0,3401,3,1,2026.620091,2026.620091,3507,NO,51.93,59.78,1,1.83,6106,114.66441,124.255652,134.064075,140.299645,I,Above,Gable,0,NaN,Wood,55.85081258,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2642,NJBF000066641,118 N LACLEDE PL,Atlantic City,NJ,39.35033358,-74.46216058,RES3A,3001,,17,NE,1910,1910,3301,2,1,1138.021634,1138.021634,3505,NO,26.95,41.17,3,2.34,6106,114.037252,123.735976,133.483538,139.932705,I,Above,Flat,0,5701,Wood,34.05759425,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2643,NJBF000070942,644 HOWARD ST,Atlantic City,NJ,39.3689445,-74.4352615,RES1,3001,,17,NE,1962,1962,3101,1,1,1139.157643,1139.157643,3505,NO,27.5,40.39,3,8.12,6106,114.395332,124.024951,133.812958,140.084569,I,Above,Gable,0,5701,Wood,33.94585535,0,0,,,,1,1,,0.03,nav,1,1962,1,, 2644,NJBF000064820,4615 ATLANTIC AVE,Atlantic City,NJ,39.34539986,-74.46444825,REL1,3001,,NaN,ME,1969,0,3401,2,1,9926.324811,9926.324811,3507,NO,23.65,33.58,1,1.13,6106,114.050571,123.748447,133.49285,139.972106,I,Above,Hip,0,NaN,Wood,28.61876867,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2645,NJBF000071001,1008 N OHIO AVE,Atlantic City,NJ,39.3690948,-74.44098428,RES3A,3001,,16,NE,1900,1900,3301,1,1,1124.844547,1124.844547,3505,NO,24.61,35.78,3,8.4,6106,114.270175,123.918974,133.696805,139.990737,I,Above,Gable,0,5701,Wood,30.19491786,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2646,NJBF000067798,24 N MONTPELIER AVE,Atlantic City,NJ,39.354555,-74.45108844,RES3B,3001,100,NaN,ME,1969,0,3301,3,1,1515.536283,1515.536283,3504,YES,33.62,48.25,-4,0,6106,114.226143,123.890289,133.65403,140.044863,I,Above,Hip,0,NaN,Wood,40.9317293,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2647,NJBF000067850,408 HARBOR RD,Atlantic City,NJ,39.3547759,-74.46203944,RES1,3001,,16,NE,1925,1925,3102,1,1,862.7264513,862.7264513,3505,NO,13.46,27.69,3,1.93,6106,113.984051,123.690156,133.437482,139.866029,I,Above,Hip,0,5701,Wood,20.57479603,0,0,,,,1,1,,0.03,nav,1,1925,1,, 2648,NJBF000067540,2741 PACIFIC AVE,Atlantic City,NJ,39.35377,-74.44453885,RES4,3003,100,NaN,E,1969,0,3404,2,1,5982.444462,5982.444462,3507,YES,36.49,46.95,1,0.43,6106,114.378314,124.01723,133.79141,140.158648,I,Above,Flat,0,NaN,Wood,41.72020752,0,0,,,,2,2,,0.03,nav,1,1969,2,, 2649,NJBF000070177,125 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36608805,-74.42564661,RES1,3001,,27,NE,1900,1900,3102,3,2,2066.151904,2066.151904,3505,YES,31.75,38.62,3,-1.47,6106,114.635291,124.230629,134.03684,140.276471,I,Above,Gable,0,5701,Wood,35.18264957,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2650,NJBF000068180,436 N TRENTON AVE,Atlantic City,NJ,39.35590511,-74.46005826,RES1,3001,,17,NE,1965,1965,3102,2,1,1585.375256,1585.375256,3505,NO,39.22,50.56,3,2.99,6106,114.013451,123.713723,133.463761,139.880866,I,Above,Gable,0,5701,Wood,44.88698679,0,0,,,,1,1,,0.03,nav,1,1965,2,, 2651,NJBF000064963,24 S MONTGOMERY AVE,Atlantic City,NJ,39.34580826,-74.46526008,RES3B,3001,,17,ME,1925,1925,3301,2,1,1543.992823,1543.992823,3504,NO,30.91,36.2,-4,0,6106,114.027454,123.729413,133.472735,139.952917,I,Above,Hip,0,NaN,Wood,33.55412403,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2652,NJBF000072478,1416 N OHIO AVE,Atlantic City,NJ,39.37381097,-74.4457333,RES1,3001,,17,NE,1920,1920,3102,2,1,1750.055216,1750.055216,3505,NO,30.22,43.69,3,5.98,6106,114.113214,123.782634,133.550639,139.843415,I,Above,Gable,0,5701,Wood,36.9513429,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2653,NJBF000069686,1700 BALTIC AVE,Atlantic City,NJ,39.36287417,-74.43388613,COM1,3003,100,NaN,ME,1969,0,3401,1,1,7511.140116,7511.140116,3507,YES,16.1,22.8,1,1.71,6106,114.49694,124.114036,133.905648,140.193494,I,Above,Flat,0,NaN,Wood,19.45159759,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2654,NJBF000067970,5 N BRIGHTON AVE,Atlantic City,NJ,39.35519877,-74.44717822,RES3B,3001,,45,ME,1900,1900,3301,2,2,1341.890548,1341.890548,3504,NO,24.8,31.88,-4,0,6106,114.303207,123.954149,133.724022,140.096752,I,Above,Hip,0,NaN,Wood,28.3393065,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2655,NJBF000069379,,Atlantic City,NJ,39.35997335,-74.43557305,COM1,3003,,NaN,ME,1969,0,3401,2,1,92335.37461,92335.37461,3507,NO,35.78,40.95,1,2.81,6106,114.495708,124.11399,133.902944,140.208597,I,Above,Flat,0,NaN,Wood,38.36550913,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2656,NJBF000068194,452 N HARRISBURG AVE,Atlantic City,NJ,39.35597024,-74.46134096,RES1,3001,,27,NE,1900,1900,3102,2,2,1577.447441,1577.447441,3505,YES,26.41,34.29,3,2.16,6106,113.984538,123.689873,133.43803,139.858935,I,Above,Flat,0,5701,Wood,30.35010738,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2657,NJBF000067599,8 N MONTPELIER AVE,Atlantic City,NJ,39.35393479,-74.45062314,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,1622.901773,1622.901773,3504,NO,34.92,43.87,-4,0,6106,114.244005,123.905351,133.669855,140.061379,I,Above,Hip,0,NaN,Wood,39.3921706,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2658,NJBF000069624,1705 ARCTIC AVE,Atlantic City,NJ,39.36219916,-74.43343683,REL1,3001,,NaN,ME,1969,0,3401,3,1,7281.332673,7281.332673,3507,NO,46.87,61.3,1,2.13,6106,114.514735,124.129345,133.921839,140.210116,I,Above,Flat,0,NaN,Wood,54.08332668,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2659,NJBF000065022,4505 ATLANTIC AVE,Atlantic City,NJ,39.34592778,-74.46298927,RES1,3001,,18,NE,1900,1900,3102,2,1,2042.990657,2042.990657,3504,YES,25.95,38.43,-4,0,6106,114.075698,123.768917,133.515336,139.987102,I,Above,Hip,0,5701,Wood,32.19059592,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2660,NJBF000071101,902 N INDIANA AVE,Atlantic City,NJ,39.36941017,-74.43962565,RES3A,3001,,27,NE,1900,1900,3301,2,2,769.8802549,769.8802549,3505,YES,36.35,48.87,3,3.92,6106,114.295825,123.940402,133.720523,140.007959,I,Above,Flat,0,5701,Wood,42.61194987,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2661,NJBF000070508,1818 LINCOLN AVE,Atlantic City,NJ,39.36740462,-74.43892944,RES1,3001,,45,NE,1900,1900,3102,3,2,1016.398435,1016.398435,3505,YES,63.88,70.96,3,6.3,6106,114.334338,123.974276,133.756142,140.048454,I,Above,Gable,0,5701,Wood,67.41731496,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2662,NJBF000066614,108 N LACLEDE PL,Atlantic City,NJ,39.35023866,-74.46211596,RES3A,3001,,17,NE,1910,1910,3301,2,1,2277.590825,2277.590825,3505,NO,35.82,44.52,3,7.18,6106,114.039446,123.737815,133.485445,139.93489,I,Above,Hip,0,5701,Wood,40.16829179,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2663,NJBF000070831,638 N KENTUCKY AVE,Atlantic City,NJ,39.36856653,-74.43581523,RES1,3001,,17,NE,1900,1900,3101,1,1,1584.526621,1584.526621,3505,NO,11.24,24.4,3,-1.59,6106,114.387821,124.01881,133.805915,140.081205,I,Above,Hip,0,5701,Wood,17.82212081,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2664,NJBF000070368,2021 MAGELLAN AVE,Atlantic City,NJ,39.36686033,-74.44189935,RES3B,3001,,17,ME,1910,1910,3301,2,1,1096.980476,1096.980476,3505,NO,39.01,48.16,3,7.99,6106,114.276591,123.925938,133.702774,140.00892,I,Above,Flat,0,5701,Wood,43.58520481,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2665,NJBF000071166,1058 MONROE AVE,Atlantic City,NJ,39.36963827,-74.44214851,RES3A,3001,,17,NE,1900,1900,3301,1,1,2017.038678,2017.038678,3505,NO,8.37,19.66,3,-2.61,6106,114.238681,123.89201,133.667655,139.963935,I,Above,Hip,0,5701,Wood,14.0135821,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2666,NJBF000065908,4509 WINCHESTER AVE,Atlantic City,NJ,39.34842132,-74.46526102,RES3A,3001,,17,NE,1900,1900,3301,1,1,1741.106575,1741.106575,3505,NO,12.95,25.49,3,0.89,6106,113.993686,123.700956,133.44429,139.912401,I,Above,Hip,0,5701,Wood,19.2199394,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2667,NJBF000070350,1925 BLAINE AVE,Atlantic City,NJ,39.36678265,-74.44011177,RES3B,3001,,45,ME,1925,1925,3301,2,2,4631.214887,4631.214887,3505,YES,37.51,43.69,3,5.1,6106,114.316122,123.959294,133.739242,140.038653,I,Above,Flat,0,5701,Wood,40.60223808,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2668,NJBF000071167,306 BEACH AVE,Atlantic City,NJ,39.36963894,-74.41602298,RES3D,3004,,45,E,1919,1919,3303,2,2,1289.984699,1289.984699,3505,NO,31.39,38.35,3,-0.38,6106,114.798359,124.369915,134.194112,140.376618,I,Above,Gable,0,NaN,Wood,34.86988675,0,0,,,,1,1,,0.03,nav,1,1919,2,, 2669,NJBF000070492,401 ATLANTIC AVE,Atlantic City,NJ,39.36735021,-74.41590938,RES3D,3004,100,NaN,E,1969,0,3303,1,1,1384.54051,1384.54051,3505,NO,22.06,30.4,3,8.16,6106,114.827812,124.395814,134.22055,140.409698,I,Above,Flat,0,NaN,Wood,26.23080633,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2670,NJBF000066555,10 S HARRISBURG AVE,Atlantic City,NJ,39.35005667,-74.45698642,COM1,3004,,45,ME,1900,1900,3401,2,2,1395.750714,1395.750714,3507,NO,22.26,28.38,1,-0.09,6106,114.15405,123.832215,133.587226,140.019194,I,Above,Hip,0,NaN,Wood,25.32063192,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2671,NJBF000066559,4037 ANN DOVER GDNS,Atlantic City,NJ,39.35007192,-74.4595027,RES3A,3001,,27,NE,1935,1935,3301,2,2,1229.990315,1229.990315,3505,YES,31.69,37.24,3,-0.39,6106,114.098806,123.786687,133.538043,139.979161,I,Above,Flat,0,5701,Wood,34.46696579,0,0,,,,1,1,,0.03,nav,1,1935,2,, 2672,NJBF000072731,1600 N OHIO AVE,Atlantic City,NJ,39.3747069,-74.44890716,RES1,3001,,16,NE,1900,1900,3102,1,1,1626.441549,1626.441549,3505,NO,19.54,30.45,3,6.57,6106,114.034337,123.715368,133.477572,139.777456,I,Above,Gable,0,5701,Wood,24.9920793,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2673,NJBF000069343,234 N NEVADA AVE,Atlantic City,NJ,39.35976851,-74.44514983,RES3A,3001,,27,NE,1923,1923,3301,2,2,1390.723475,1390.723475,3505,YES,35.23,43.48,3,4.38,6106,114.291062,123.942125,133.714846,140.061508,I,Above,Gable,0,5701,Wood,39.35466381,0,0,,,,1,1,,0.03,nav,1,1923,2,, 2674,NJBF000067851,351 N HARRISBURG AVE,Atlantic City,NJ,39.35478361,-74.45968811,RES3C,3001,,NaN,ME,1969,0,3301,1,1,8525.140097,8525.140097,3505,NO,19.61,31.32,3,8.58,6106,114.035463,123.732474,133.483206,139.904123,I,Above,Hip,0,NaN,Wood,25.4648494,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2675,NJBF000071957,1531 BEACH AVE,Atlantic City,NJ,39.37209816,-74.44878269,RES1,3001,,27,NE,1960,1960,3102,1,2,2282.803324,2282.803324,3505,NO,21.37,31.66,3,2.29,6106,114.066664,123.745218,133.508681,139.818857,I,Above,Flat,0,5701,Wood,26.51779059,0,0,,,,1,1,,0.03,nav,1,1960,1,, 2676,NJBF000070671,1919 GRANT AVE,Atlantic City,NJ,39.3679985,-74.4410545,RES3B,3001,,17,ME,1900,1900,3301,2,1,747.8105204,747.8105204,3505,YES,37.03,51.99,3,-0.85,6106,114.281465,123.929272,133.707278,140.005728,I,Above,Gable,0,5701,Wood,44.5125511,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2677,NJBF000067650,8 TEXAS CT,Atlantic City,NJ,39.35407008,-74.44237081,RES3A,3004,,33,NE,1915,1915,3301,2,1,563.4180614,563.4180614,3505,YES,34.4,44.58,3,6.03,6106,114.421568,124.053305,133.831022,140.187837,I,Above,Flat,0,5701,Wood,39.48955577,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2678,NJBF000067673,2 TEXAS CT,Atlantic City,NJ,39.35413087,-74.44222515,RES3A,3004,,33,NE,1915,1915,3301,2,1,526.4510663,526.4510663,3505,YES,33.06,41.52,3,7.71,6106,114.423969,124.0553,133.833256,140.189214,I,Above,Flat,0,5701,Wood,37.29217836,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2679,NJBF000072390,1605 EMERSON AVE,Atlantic City,NJ,39.37349063,-74.44959518,RES1,3001,,17,NE,1920,1920,3102,2,1,877.232191,877.232191,3505,NO,26.91,37.14,3,3.96,6106,114.033179,123.715706,133.477251,139.784395,I,Above,Gable,0,5701,Wood,32.02847626,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2680,NJBF000069881,102 S MASSACHUSETTS AVE,Atlantic City,NJ,39.36476315,-74.41570469,RES3B,3001,,45,E,1900,1900,3303,3,3,1378.48368,1378.48368,3507,YES,52.31,64.89,1,0.46,6106,114.863,124.426487,134.251862,140.448056,I,Above,Hip,0,NaN,Wood,58.59941063,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2681,NJBF000065186,38 S ABERDEEN PL,Atlantic City,NJ,39.34635151,-74.46334602,RES1,3001,,18,NE,1900,1900,3102,2,1,1438.518684,1438.518684,3504,NO,37.7,47.86,-4,0,6106,114.062375,123.757885,133.503829,139.97497,I,Above,Hip,0,5701,Wood,42.78310965,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2682,NJBF000065141,44 S ABERDEEN PL,Atlantic City,NJ,39.34625612,-74.46326964,RES1,3001,,18,NE,1900,1900,3102,2,1,1788.58841,1788.58841,3504,NO,35.23,43.58,-4,0,6106,114.065285,123.760296,133.506341,139.977644,I,Above,Hip,0,5701,Wood,39.40561151,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2683,NJBF000068154,2913 ARCTIC AVE,Atlantic City,NJ,39.3558315,-74.448914,RES3A,3001,,45,NE,1925,1925,3301,3,4,1228.455451,1228.455451,3505,YES,57.52,67.32,3,4.4,6106,114.25761,123.915941,133.683002,140.06018,I,Above,Hip,0,5701,Wood,62.41981527,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2684,NJBF000072253,1916 E RIVERSIDE DR,Atlantic City,NJ,39.37303883,-74.44489253,RES1,3001,,NaN,NE,1969,0,3102,2,1,855.8148339,855.8148339,3505,NO,38.11,47.88,3,2.2,6106,114.140176,123.80609,133.57584,139.868753,I,Above,Gable,0,5701,Wood,42.99675647,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2685,NJBF000070602,601-659 KENTUCKY AVE,Atlantic City,NJ,39.36775781,-74.43365896,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4074.081546,4074.081546,3505,NO,23.5,30.18,3,6.85,6106,114.44371,124.066684,133.857854,140.127101,I,Above,Flat,0,NaN,Wood,26.84019283,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2686,NJBF000070452,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.367202,-74.4340425,RES3C,3004,,NaN,ME,1969,0,3301,1,1,3918.28552,3918.28552,3505,NO,26.02,37.18,3,7.8,6106,114.442003,124.065529,133.856125,140.12902,I,Above,Hip,0,NaN,Wood,31.60090512,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2687,NJBF000070522,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.36746,-74.4340275,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5216.831107,5216.831107,3505,NO,20.11,27.13,3,-2.16,6106,114.439305,124.063104,133.853674,140.125563,I,Above,Gable,0,NaN,Wood,23.6216787,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2688,NJBF000070496,601-659 KENTUCKY AVE,Atlantic City,NJ,39.3673637,-74.4345479,RES3C,3004,,NaN,ME,1969,0,3301,2,1,3151.452034,3151.452034,3505,NO,19.9,34.79,3,-2.03,6106,114.429228,124.054606,133.84426,140.118698,I,Above,Flat,0,NaN,Wood,27.34373367,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2689,NJBF000068164,102 N MORRIS AVE,Atlantic City,NJ,39.355872,-74.4496945,RES3A,3001,,NaN,NE,1969,0,3301,1,1,525.1963467,525.1963467,3505,NO,16.32,29.87,3,-0.79,6106,114.24012,123.901375,133.667197,140.047277,I,Above,Gable,0,5701,Wood,23.09486625,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2690,NJBF000068176,102 N MORRIS AVE,Atlantic City,NJ,39.3559015,-74.4495555,RES3A,3001,,NaN,NE,2003,0,3301,2,1,1155.644112,1155.644112,3505,NO,39.66,49.21,3,2.94,6106,114.242774,123.90357,133.669608,140.049025,I,Above,Flat,0,5701,Wood,44.43686423,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2691,NJBF000065080,16 S PLAZA PL,Atlantic City,NJ,39.34608317,-74.46498254,RES1,3001,,18,NE,1900,1900,3102,2,1,1919.807037,1919.807037,3504,YES,31.67,44.24,-4,0,6106,114.029961,123.731393,133.475098,139.953087,I,Above,Gable,0,5701,Wood,37.95675035,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2692,NJBF000069028,211 N IOWA AVE,Atlantic City,NJ,39.35844633,-74.44770819,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,4434.626892,4434.626892,3505,NO,39.37,49.68,3,0.52,6106,114.251655,123.909842,133.678561,140.040548,I,Above,Hip,0,5701,Wood,44.52313706,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2693,NJBF000068976,35 N GEORGIA AVE,Atlantic City,NJ,39.35823021,-74.4412383,RES3B,3001,,45,ME,1930,1930,3301,3,2,2558.85995,2558.85995,3505,YES,53.27,59.86,3,3.36,6106,114.394634,124.029519,133.80892,140.145426,I,Above,Flat,0,NaN,Wood,56.56409272,0,0,,,,1,1,,0.03,nav,1,1930,3,, 2694,NJBF000068072,2628 ATLANTIC AVE,Atlantic City,NJ,39.35553481,-74.44374736,COM1,3003,,NaN,ME,1969,0,3401,3,1,4578.460313,4578.460313,3507,NO,46.01,60.14,1,2.53,6106,114.373513,124.012721,133.788136,140.145372,I,Above,Flat,0,NaN,Wood,53.07830978,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2695,NJBF000068144,400 N ALBANY AVE,Atlantic City,NJ,39.3557956,-74.45935284,COM1,3003,30,NaN,ME,1969,0,3401,3,1,8046.178591,8046.178591,3507,NO,37.9,51.19,1,0.34,6106,114.030236,123.72762,133.47871,139.893999,I,Above,Flat,0,NaN,Wood,44.54526586,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2696,NJBF000065403,2 N TALLAHASSEE AVE,Atlantic City,NJ,39.34696838,-74.46472543,RES3A,3001,,18,NE,1915,1915,3301,2,1,3468.022843,3468.022843,3505,YES,41.26,54.43,3,8.92,6106,114.024162,123.726394,133.470466,139.943538,I,Above,Hip,0,5701,Wood,47.84426621,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2697,NJBF000073529,1801 ABSECON BLVD,Atlantic City,NJ,39.3813715,-74.44620299,GOV1,3001,,NaN,E,1969,0,3401,1,1,738.5087901,738.5087901,3507,NO,14.55,19.56,1,-0.77,6106,114.01884,123.694377,133.458131,139.722282,I,Above,Flat,0,NaN,Wood,17.05689019,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2698,NJBF000073494,1801 ABSECON BLVD,Atlantic City,NJ,39.38113913,-74.44724852,GOV1,3001,,NaN,E,1969,0,3401,1,1,3369.172294,3369.172294,3507,NO,18.29,25.75,1,-0.26,6110,113.998808,123.677744,133.439778,139.708234,I,Above,Flat,0,NaN,Wood,22.02246892,0,0,,,,1,1,,1,nav,1,1969,1,, 2699,NJBF000073467,1801 ABSECON BLVD,Atlantic City,NJ,39.38096321,-74.45027456,GOV1,3001,,NaN,E,1969,0,3401,1,1,2133.764748,2133.764748,3507,NO,13.91,26.65,1,0.98,6106,113.935332,123.624434,133.381297,139.659925,I,Above,Flat,0,NaN,Wood,20.27872106,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2700,NJBF000073562,1801 ABSECON BLVD,Atlantic City,NJ,39.38162827,-74.44935182,GOV1,3001,,NaN,E,1969,0,3401,1,1,40007.79061,40007.79061,3507,NO,11.25,22.57,1,-0.3,6106,113.948052,123.634248,133.392353,139.66545,I,Above,Flat,0,NaN,Wood,16.91053662,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2701,NJBF000073687,1801 ABSECON BLVD,Atlantic City,NJ,39.38249536,-74.44884025,GOV1,3001,,NaN,E,1969,0,3401,1,1,3954.379848,3954.379848,3507,NO,14.74,26.46,1,0.89,6106,113.949711,123.634454,133.39298,139.660998,I,Above,Flat,0,NaN,Wood,20.59734505,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2702,NJBF000065890,103 S DOVER AVE,Atlantic City,NJ,39.34836885,-74.45657674,RES1,3001,,45,NE,1998,1998,3102,3,2,1987.354504,1987.354504,3504,NO,53.22,67.86,-4,0,6106,114.18454,123.857839,133.613437,140.050906,I,Above,Hip,0,5701,Wood,60.53644579,0,0,,,,1,1,,0.03,nav,1,1998,3,, 2703,NJBF000066770,140 N LACLEDE PL,Atlantic City,NJ,39.35072714,-74.46248767,RES3A,3001,,17,NE,1922,1922,3301,2,1,1091.559876,1091.559876,3505,NO,39.95,49.92,3,5.36,6106,114.025091,123.725831,133.472913,139.921387,I,Above,Gable,0,5701,Wood,44.93735402,0,0,,,,1,1,,0.03,nav,1,1922,2,, 2704,NJBF000064812,,Atlantic City,NJ,39.34538863,-74.46516148,RES3B,3001,,NaN,ME,1969,0,3301,1,1,1245.211203,1245.211203,3504,NO,11.7,21.41,-4,0,6106,114.035075,123.735758,133.479197,139.960957,I,Above,Hip,0,NaN,Wood,16.55394179,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2705,NJBF000065036,128 S DELANCY PL,Atlantic City,NJ,39.34598433,-74.46050729,RES1,3001,,45,NE,1925,1925,3102,3,2,2303.156356,2303.156356,3507,YES,37.7,50.67,1,-0.2,6106,114.129335,123.81294,133.562811,140.02526,I,Above,Flat,0,5701,Wood,44.18388303,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2706,NJBF000069099,,Atlantic City,NJ,39.35876634,-74.44306583,RES3B,3001,,NaN,ME,1969,0,3301,2,1,5213.152894,5213.152894,3505,NO,38.65,47.26,3,8.94,6106,114.348483,123.990629,133.766922,140.109029,I,Above,Flat,0,NaN,Wood,42.95206671,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2707,NJBF000068190,121 N MONTPELIER AVE #A,Atlantic City,NJ,39.35595133,-74.4511455,RES3A,3001,,45,NE,1915,1915,3301,2,3,761.7922269,761.7922269,3505,YES,22.23,27.92,3,-0.7,6106,114.207569,123.874288,133.637824,140.023178,I,Above,Flat,0,5701,Wood,25.07631476,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2708,NJBF000071740,743 WABASH AVE,Atlantic City,NJ,39.3714706,-74.42455237,RES1,3001,,17,NE,1961,1961,3102,1,1,1483.047734,1483.047734,3505,NO,15.16,22.77,3,1,6106,114.595401,124.194341,134.001603,140.218015,I,Above,Hip,0,5701,Wood,18.96341006,0,0,,,,1,1,,0.03,nav,1,1961,1,, 2709,NJBF000065651,48 S LACLEDE PL,Atlantic City,NJ,39.34771215,-74.46006558,RES3A,3001,,17,NE,1910,1910,3301,3,1,1440.279628,1440.279628,3505,NO,56.22,61.74,3,5.72,6106,114.116674,123.802115,133.552673,140.006074,I,Above,Hip,0,5701,Wood,58.9811356,0,0,,,,1,1,,0.03,nav,1,1910,3,, 2710,NJBF000070263,1617 ADRIATIC AVE,Atlantic City,NJ,39.3664765,-74.4349165,RES1,3001,,16,NE,1900,1900,3101,1,1,1107.174564,1107.174564,3505,NO,14.36,19.37,3,-0.17,6106,114.431795,124.057251,133.84643,140.125667,I,Above,Gable,0,5701,Wood,16.86782303,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2711,NJBF000068973,662 N DOVER AVE,Atlantic City,NJ,39.35822802,-74.46555933,RES1,3001,,17,NE,1957,1957,3101,1,1,1753.181776,1753.181776,3505,NO,15.73,30.35,3,2.17,6106,113.864219,123.589481,133.331153,139.753936,I,Above,Flat,0,5701,Wood,23.0378964,0,0,,,,1,1,,0.03,nav,1,1957,1,, 2712,NJBF000065633,30 N ABERDEEN PL,Atlantic City,NJ,39.347665,-74.464393,RES3A,3001,,17,NE,1900,1900,3301,2,1,1830.989775,1830.989775,3505,NO,45.01,53.17,3,7.04,6106,114.022455,123.724781,133.469309,139.93808,I,Above,Gable,0,5701,Wood,49.08709425,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2713,NJBF000069931,239 N KENTUCKY AVE,Atlantic City,NJ,39.36505705,-74.43303031,RES3D,3004,,27,E,1900,1900,3303,2,2,1407.552512,1407.552512,3505,NO,37.3,44.77,3,3.9,6106,114.489222,124.106614,133.899434,140.175725,I,Above,Hip,0,NaN,Wood,41.03317097,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2714,NJBF000070465,603 N INDIANA AVE,Atlantic City,NJ,39.36723587,-74.43764258,RES1,3001,,17,NE,1900,1900,3102,1,1,1924.186371,1924.186371,3505,NO,15.66,23.7,3,-1.9,6106,114.364069,123.999502,133.783672,140.071417,I,Above,Hip,0,5701,Wood,19.68032582,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2715,NJBF000070719,616 N KENTUCKY AVE,Atlantic City,NJ,39.36817708,-74.43555234,RES1,3001,,17,NE,1900,1900,3101,2,1,1066.170745,1066.170745,3505,NO,29.57,44.02,3,-2.2,6106,114.398056,124.027718,133.815388,140.091034,I,Above,Gable,0,5701,Wood,36.79606497,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2716,NJBF000070326,1714 LOGAN AVE,Atlantic City,NJ,39.3667185,-74.436781,RES1,3001,,17,NE,1900,1900,3101,2,1,818.4663668,818.4663668,3507,NO,33.02,39.38,1,1.64,6106,114.388762,124.020685,133.806495,140.092635,I,Above,Hip,0,5701,Wood,36.19946951,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2717,NJBF000068808,1325 BOARDWALK,Atlantic City,NJ,39.35766681,-74.42477814,COM8,3003,100,NaN,ME,1969,0,3401,2,1,38162.52258,38162.52258,3507,YES,26.05,37.74,1,0.94,6106,114.755805,124.334962,134.143326,140.406577,I,Above,Flat,0,NaN,Wood,31.8947845,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2718,NJBF000066572,103 N RALEIGH AVE,Atlantic City,NJ,39.3501142,-74.46237722,RES3A,3001,,45,NE,1900,1900,3301,3,2,1779.837026,1779.837026,3505,YES,52.05,66.74,3,0.68,6106,114.035315,123.73447,133.481738,139.932624,I,Above,Hip,0,5701,Wood,59.39493409,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2719,NJBF000071391,126 SUNRISE AVE,Atlantic City,NJ,39.370453,-74.413616,RES3D,3004,,17,E,2000,2000,3303,2,1,505.5276231,505.5276231,3505,NO,33.38,46.01,3,0.33,6106,114.839833,124.405681,134.234536,140.402739,I,Above,Gable,0,NaN,Wood,39.69420863,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2720,NJBF000072149,1525 N ARKANSAS AVE,Atlantic City,NJ,39.37272466,-74.44899602,RES1,3001,,17,NE,1900,1900,3102,2,1,1073.096089,1073.096089,3505,NO,26.61,35.37,3,3.03,6106,114.054885,123.734707,133.49757,139.805884,I,Above,Flat,0,5701,Wood,30.98851799,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2721,NJBF000072328,1655 N ARKANSAS AVE,Atlantic City,NJ,39.37330971,-74.45085197,RES1,3001,,17,NE,1900,1900,3101,1,1,1787.808862,1787.808862,3505,NO,18.15,32.69,3,7.07,6106,114.007956,123.694759,133.454268,139.766248,I,Above,Gable,0,5701,Wood,25.4199676,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2722,NJBF000067691,2900 ATLANTIC AVE,Atlantic City,NJ,39.35417941,-74.44703354,COM1,3003,51,NaN,ME,1969,0,3401,1,1,4042.590458,4042.590458,3507,NO,18.82,24.8,1,1.2,6106,114.319034,123.967674,133.737828,140.11394,I,Above,Flat,0,NaN,Wood,21.81213851,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2723,NJBF000066608,107 N RALEIGH AVE,Atlantic City,NJ,39.35021707,-74.46247009,RES3A,3001,,27,NE,1900,1900,3301,2,2,1401.933918,1401.933918,3505,NO,22.68,35.7,3,-2.68,6106,114.031966,123.73168,133.478813,139.929543,I,Above,Gable,0,5701,Wood,29.19044501,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2724,NJBF000071720,198 N MAINE AVE,Atlantic City,NJ,39.37139038,-74.41360878,RES3D,3004,,18,E,2000,2000,3303,3,1,2230.572546,2230.572546,3505,NO,42.72,52.67,3,2.07,6106,114.829014,124.396092,134.224802,140.390057,I,Above,Gable,0,NaN,Wood,47.69240822,0,0,,,,1,1,,0.03,nav,1,2000,3,, 2725,NJBF000072442,2028 MURRAY AVE,Atlantic City,NJ,39.37367868,-74.45214531,RES1,3001,,15,NE,2008,2008,3101,2,1,2309.053849,2309.053849,3505,NO,32.89,45.99,3,8.6,6106,113.975693,123.667345,133.424545,139.739091,I,Above,Gable,0,5701,Wood,39.43936305,0,0,,,,1,1,,0.03,nav,1,2008,2,, 2726,NJBF000071298,125 N VERMONT AVE,Atlantic City,NJ,39.37012525,-74.41566326,RES3D,3004,,28,E,1998,1998,3303,2,2,2501.875222,2501.875222,3505,NO,26.09,31.95,3,2.4,6106,114.80029,124.371475,134.196307,140.375531,I,Above,Hip,0,NaN,Wood,29.02241113,0,0,,,,1,1,,0.03,nav,1,1998,2,, 2727,NJBF000067497,118 N HARTFORD AVE,Atlantic City,NJ,39.35365322,-74.45533354,RES3B,3001,,45,E,1925,1925,3303,2,2,1762.24208,1762.24208,3507,YES,26.34,40.14,1,2.73,6106,114.144786,123.823247,133.580554,139.991171,I,Above,Flat,0,NaN,Wood,33.24253515,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2728,NJBF000067529,122 N HARTFORD AVE,Atlantic City,NJ,39.35374115,-74.45541579,RES3B,3001,,33,E,1900,1900,3303,2,1,1914.344957,1914.344957,3507,YES,24.74,30.49,1,0.48,6106,114.141894,123.820819,133.577996,139.98854,I,Above,Hip,0,NaN,Wood,27.61227589,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2729,NJBF000070852,3 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36864283,-74.41260699,RES3D,3004,,27,E,2003,2003,3303,2,2,1051.74643,1051.74643,3505,NO,30.55,36.79,3,-0.01,6106,114.882507,124.442998,134.274129,140.442921,I,Above,Hip,0,NaN,Wood,33.66642153,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2730,NJBF000070567,352 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36763877,-74.43036776,RES3C,3003,,33,E,1900,1900,3305,2,1,6935.378788,6935.378788,3507,YES,25.15,37.87,1,0.7,6106,114.515796,124.128047,133.925237,140.180729,I,Above,Flat,0,NaN,Wood,31.51268041,0,0,,,,2,2,,0.03,nav,1,1900,2,, 2731,NJBF000066959,107 N DOVER AVE,Atlantic City,NJ,39.3514555,-74.45914,RES3A,3001,,27,NE,1920,1900,3301,2,2,3788.578969,3788.578969,3505,YES,44.22,54.07,3,6.62,6106,114.089199,123.778266,133.53009,139.963869,I,Above,Flat,0,5701,Wood,49.14658012,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2732,NJBF000069657,1401 ATLANTIC AVE,Atlantic City,NJ,39.36254546,-74.42912136,COM1,3003,,NaN,ME,1969,0,3401,2,1,33687.29124,33687.29124,3507,NO,22.14,35.1,1,-0.34,6106,114.603299,124.204394,134.004618,140.272256,I,Above,Flat,0,NaN,Wood,28.62170471,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2733,NJBF000066485,22 TRENTON TERR,Atlantic City,NJ,39.34988213,-74.4560867,RES3A,3001,,45,NE,1915,1915,3301,2,2,10204.82886,10204.82886,3504,NO,23.99,38.45,-4,0,6106,114.175921,123.850316,133.60665,140.035954,I,Above,Flat,0,5701,Wood,31.22069419,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2734,NJBF000071291,1061 N OHIO AVE,Atlantic City,NJ,39.370093,-74.44104,RES3A,3001,,33,NE,1900,1900,3301,2,1,1055.129532,1055.129532,3505,YES,39.71,50.09,3,4.67,6106,114.257358,123.907415,133.684857,139.975142,I,Above,Gable,0,5701,Wood,44.90226619,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2735,NJBF000068237,37 N STENTON PL,Atlantic City,NJ,39.35609874,-74.44696735,RES3B,3001,,45,ME,1900,1900,3301,3,2,1087.266244,1087.266244,3504,YES,48.35,58.16,-4,0,6106,114.296635,123.948344,133.718495,140.086846,I,Above,Hip,0,NaN,Wood,53.25623352,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2736,NJBF000068991,2408 ARCTIC AVE,Atlantic City,NJ,39.358281,-74.4420145,RES3B,3001,,17,ME,1900,1900,3301,2,1,680.2596296,680.2596296,3505,NO,32.6,39.71,3,5.38,6106,114.377208,124.014888,133.792983,140.132563,I,Above,Gable,0,NaN,Wood,36.15287974,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2737,NJBF000067103,62 N TRENTON AVE,Atlantic City,NJ,39.35211525,-74.45723566,RES3A,3001,,17,NE,1900,1900,3301,1,1,1716.571335,1716.571335,3505,NO,16.75,24.95,3,3.09,6106,114.122532,123.805488,133.560061,139.984178,I,Above,Gable,0,5701,Wood,20.85215722,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2738,NJBF000065283,21 N NEWTON AVE,Atlantic City,NJ,39.34661375,-74.46619737,RES3A,3001,,17,NE,1920,1920,3301,2,1,1109.136393,1109.136393,3505,NO,40.47,51.18,3,6.54,6106,113.996434,123.703798,133.445878,139.925424,I,Above,Hip,0,5701,Wood,45.82198786,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2739,NJBF000067703,33 S IOWA AVE,Atlantic City,NJ,39.35422349,-74.44486143,RES4,3003,,NaN,E,1969,0,3404,4,1,4609.389117,4609.389117,3507,NO,58.03,71.39,1,2.12,6106,114.365671,124.006553,133.780201,140.147094,I,Above,Flat,0,NaN,Wood,64.71091655,0,0,,,,2,2,,0.03,nav,1,1969,4,, 2740,NJBF000070912,356 N PENNSYLVANIA AVE,Atlantic City,NJ,39.3688364,-74.42800636,RES1,3001,,33,NE,1900,1900,3103,2,1,3927.709468,3927.709468,3505,YES,27.47,37.37,3,3.44,6106,114.552337,124.15867,133.959991,140.200881,I,Above,Gable,0,5701,Wood,32.41648106,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2741,NJBF000070641,907 KEENER AVE,Atlantic City,NJ,39.36788635,-74.44192101,RES3B,3001,,33,ME,1900,1915,3301,2,1,4195.920512,4195.920512,3505,YES,29.63,38.55,3,7.36,6106,114.264059,123.914683,133.691218,139.993459,I,Above,Gable,0,5701,Wood,34.09174336,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2742,NJBF000070669,910 N MICHIGAN AVE,Atlantic City,NJ,39.36798875,-74.44179649,RES3B,3001,,33,ME,1900,1900,3301,2,1,2716.711227,2716.711227,3505,YES,29.27,43.34,3,2.14,6106,114.265555,123.91587,133.692594,139.993951,I,Above,Gable,0,5701,Wood,36.30593923,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2743,NJBF000066934,60 N HARRISBURG AVE,Atlantic City,NJ,39.35135218,-74.45829588,RES3A,3001,,17,NE,1940,1940,3301,1,1,522.1427086,522.1427086,3505,NO,12.25,23.82,3,-2.77,6106,114.108981,123.794606,133.547663,139.978894,I,Above,Hip,0,5701,Wood,18.03618397,0,0,,,,1,1,,0.03,nav,1,1940,1,, 2744,NJBF000066937,54 N HARRISBURG AVE,Atlantic City,NJ,39.35136238,-74.45811599,RES3A,3001,,18,NE,1900,1900,3301,2,1,2039.70053,2039.70053,3505,YES,26.7,39.36,3,3.41,6106,114.112792,123.797743,133.551063,139.981603,I,Above,Gable,0,5701,Wood,33.03394647,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2745,NJBF000072396,609 SEWELL AVE,Atlantic City,NJ,39.37351282,-74.42350467,RES1,3001,,17,NE,2002,2002,3102,2,1,884.0685426,884.0685426,3505,NO,32.73,40.57,3,0.9,6106,114.5941,124.192225,134.000988,140.205786,I,Above,Hip,0,5701,Wood,36.64741296,0,0,,,,1,1,,0.03,nav,1,2002,2,, 2746,NJBF000072388,611 SEWELL AVE,Atlantic City,NJ,39.37347982,-74.42358217,RES1,3001,,17,NE,1920,1909,3102,2,1,930.6613386,930.6613386,3505,YES,25.05,33.76,3,3.73,6106,114.592839,124.191157,133.99978,140.205034,I,Above,Hip,0,5701,Wood,29.40693027,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2747,NJBF000072537,1835 E RIVERSIDE DR,Atlantic City,NJ,39.3740205,-74.444961,RES1,3001,,17,NE,1954,1954,3102,2,1,1416.74449,1416.74449,3505,NO,36.85,44.25,3,5.76,6106,114.127529,123.794484,133.563742,139.852978,I,Above,Gable,0,5701,Wood,40.55189198,0,0,,,,1,1,,0.03,nav,1,1954,2,, 2748,NJBF000067557,3503 WINCHESTER AVE,Atlantic City,NJ,39.35382042,-74.45415327,RES3B,3001,,17,E,1920,1920,3303,1,1,1966.983567,1966.983567,3507,NO,14.68,27.45,1,2.21,6106,114.168482,123.842782,133.601862,140.007403,I,Above,Hip,0,NaN,Wood,21.06334526,0,0,,,,1,1,,0.03,nav,1,1920,1,, 2749,NJBF000067580,3501 WINCHESTER AVE,Atlantic City,NJ,39.35388116,-74.45404399,RES3B,3001,,17,E,1900,1900,3303,1,1,2055.136702,2055.136702,3507,NO,18.84,29.12,1,2.22,6106,114.170099,123.844095,133.603337,140.008215,I,Above,Flat,0,NaN,Wood,23.97910181,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2750,NJBF000072014,2114 KUEHNLE AVE,Atlantic City,NJ,39.37229168,-74.45156871,RES1,3001,,17,NE,1952,1952,3102,1,1,884.2937845,884.2937845,3505,NO,15.8,24.9,3,4.36,6106,114.003967,123.692506,133.451235,139.769769,I,Above,Gable,0,5701,Wood,20.35156221,0,0,,,,1,1,,0.03,nav,1,1952,1,, 2751,NJBF000071155,307 N DELAWARE AVE,Atlantic City,NJ,39.36959409,-74.42332934,RES1,3001,,33,NE,1910,1910,3102,2,1,2338.835382,2338.835382,3505,YES,35.24,45.87,3,-2.24,6106,114.643415,124.236368,134.04637,140.263549,I,Above,Flat,0,5701,Wood,40.5515059,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2752,NJBF000070843,727 N INDIANA AVE,Atlantic City,NJ,39.3686034,-74.43858312,RES1,3001,,33,NE,1925,1900,3102,2,1,3071.082127,3071.082127,3505,YES,41.9,49.19,3,5.2,6106,114.327749,123.967936,133.750112,140.036496,I,Above,Flat,0,5701,Wood,45.54681922,0,0,,,,1,1,,0.03,nav,1,1925,2,, 2753,NJBF000067086,60 N TRENTON AVE,Atlantic City,NJ,39.35203492,-74.45716318,RES3A,3001,,45,NE,1930,1930,3301,3,3,2865.977167,2865.977167,3505,YES,36.1,45.83,3,-2.58,6106,114.125136,123.807668,133.562353,139.986549,I,Above,Gable,0,5701,Wood,40.96536276,0,0,,,,1,1,,0.03,nav,1,1930,3,, 2754,NJBF000069307,233 N ARIZONA AVE,Atlantic City,NJ,39.35960514,-74.44610414,RES3A,3001,,27,NE,1900,1900,3301,2,2,741.3126799,741.3126799,3505,YES,27.18,36.31,3,0.93,6106,114.272352,123.926564,133.697739,140.048825,I,Above,Gable,0,5701,Wood,31.74088379,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2755,NJBF000069100,,Atlantic City,NJ,39.358771,-74.440746,COM1,3003,,NaN,ME,1910,0,3401,1,1,1422.300054,1422.300054,3507,NO,15.57,23.51,1,0.03,6106,114.398656,124.0327,133.812881,140.145282,I,Above,Gable,0,NaN,Wood,19.5368634,0,0,,,,1,1,,0.03,nav,1,1910,1,, 2756,NJBF000065857,25 S LACLEDE PL,Atlantic City,NJ,39.34828744,-74.45997985,RES3A,3001,,18,NE,1900,1900,3301,2,1,1981.495911,1981.495911,3505,YES,36.61,49.33,3,5.88,6106,114.11117,123.797428,133.548117,139.998717,I,Above,Hip,0,5701,Wood,42.96962695,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2757,NJBF000067485,9 N SOVEREIGN AVE,Atlantic City,NJ,39.35363168,-74.45088565,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,2840.486529,2840.486529,3504,NO,34.37,48.69,-4,0,6106,114.242064,123.903848,133.667958,140.061737,I,Above,Hip,0,NaN,Wood,41.52639483,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2758,NJBF000066757,110 N WINDSOR AVE,Atlantic City,NJ,39.35069061,-74.46099476,RES3A,3001,,17,NE,1900,1900,3301,2,1,1050.939471,1050.939471,3505,NO,26.42,32.03,3,5.17,6106,114.058269,123.75311,133.502307,139.945916,I,Above,Hip,0,5701,Wood,29.22696922,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2759,NJBF000066758,114 N WINDSOR AVE,Atlantic City,NJ,39.35069491,-74.46114763,RES3A,3001,,17,NE,1922,1922,3301,2,1,673.644723,673.644723,3505,NO,35.23,48.16,3,1.9,6106,114.054866,123.750311,133.49929,139.943404,I,Above,Flat,0,5701,Wood,41.69315562,0,0,,,,1,1,,0.03,nav,1,1922,2,, 2760,NJBF000067353,10 N BOSTON AVE,Atlantic City,NJ,39.35319961,-74.45242439,RES3B,3001,,45,E,1900,1900,3303,3,2,1791.667127,1791.667127,3507,YES,45.19,60.12,1,-0.8,6106,114.213957,123.880688,133.642446,140.043979,I,Above,Flat,0,NaN,Wood,52.65268075,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2761,NJBF000066004,4025 VAN RENSELEER AVE,Atlantic City,NJ,39.34866846,-74.45811766,RES3A,3001,,33,NE,1969,1900,3301,3,1,936.6998628,936.6998628,3504,YES,43.76,54.51,-4,0,6106,114.147026,123.826836,133.580199,140.022286,I,Above,Flat,0,5701,Wood,49.13859498,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2762,NJBF000066022,4021 VAN RENSELEER AVE,Atlantic City,NJ,39.34870646,-74.45800191,RES3A,3001,,33,NE,1900,1900,3301,3,1,621.6941574,621.6941574,3504,YES,35.73,50.72,-4,0,6106,114.149076,123.828514,133.582046,140.023537,I,Above,Flat,0,5701,Wood,43.22525347,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2763,NJBF000066029,4019 VAN RENSELEER AVE,Atlantic City,NJ,39.34872526,-74.45795118,RES3A,3001,,45,NE,1900,1900,3301,3,3,699.0475149,699.0475149,3504,YES,35.39,47.54,-4,0,6106,114.149948,123.829228,133.582833,140.024052,I,Above,Flat,0,5701,Wood,41.46505397,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2764,NJBF000066420,4025 VENTNOR AVE,Atlantic City,NJ,39.3497065,-74.459158,COM1,3004,210,NaN,ME,1969,0,3401,2,1,878.9144016,878.9144016,3507,YES,37.46,46.16,1,0.35,6106,114.111004,123.796853,133.548712,139.990178,I,Above,Flat,0,NaN,Wood,41.80944873,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2765,NJBF000066817,119 N LACLEDE PL,Atlantic City,NJ,39.35088852,-74.46206943,RES3A,3001,,45,NE,1920,1920,3301,2,2,1872.817804,1872.817804,3505,YES,19.87,32.77,3,-2.46,6106,114.032222,123.731622,133.479285,139.925634,I,Above,Hip,0,5701,Wood,26.32124395,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2766,NJBF000070627,902 N MICHIGAN AVE,Atlantic City,NJ,39.36783803,-74.44168396,RES3B,3001,,33,ME,1900,1900,3301,2,1,685.6250776,685.6250776,3505,YES,41.73,56.32,3,6.69,6106,114.269746,123.919507,133.696464,139.997976,I,Above,Gable,0,5701,Wood,49.02185958,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2767,NJBF000070654,626 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36793563,-74.43715762,RES1,3001,,17,NE,1900,1900,3101,2,1,1232.822258,1232.822258,3507,NO,39.51,48.76,1,1.21,6106,114.366292,124.00096,133.785824,140.068968,I,Above,Hip,0,5701,Wood,44.13415264,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2768,NJBF000072295,5 SCHOONER CT,Atlantic City,NJ,39.37320057,-74.41654212,RES3C,3001,,35,ME,1990,1990,3301,2,1,5354.482844,5354.482844,3505,NO,38.54,50.27,3,-0.32,6106,114.745783,124.323371,134.145858,140.319536,I,Above,Hip,0,NaN,Wood,44.40151717,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2769,NJBF000067438,3816 SOUTH BLVD,Atlantic City,NJ,39.35349254,-74.45868472,RES1,3001,,NaN,NE,1969,0,3102,2,1,1841.7027,1841.7027,3505,NO,34.41,43.55,3,-1.91,6106,114.07353,123.764485,133.516826,139.940073,I,Above,Flat,0,5701,Wood,38.97713077,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2770,NJBF000067501,19 N PROVIDENCE AVE,Atlantic City,NJ,39.35367217,-74.45304352,RES3B,3001,,45,E,1908,1908,3303,3,2,789.2085536,789.2085536,3507,NO,43.59,54.58,1,2.61,6106,114.194528,123.864411,133.625192,140.027165,I,Above,Flat,0,NaN,Wood,49.08752175,0,0,,,,1,1,,0.03,nav,1,1908,3,, 2771,NJBF000070983,1006 N OHIO AVE,Atlantic City,NJ,39.3690445,-74.440913,RES3A,3001,,45,NE,1900,1900,3301,1,2,725.153852,725.153852,3505,YES,21.14,28.27,3,7.72,6106,114.272292,123.920796,133.698764,139.992616,I,Above,Gable,0,5701,Wood,24.70260902,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2772,NJBF000072460,537 N CONNECTICUT AVE,Atlantic City,NJ,39.37375217,-74.42287414,RES1,3001,,17,NE,1900,1900,3102,2,1,1027.895733,1027.895733,3505,NO,37.15,51.56,3,3.13,6106,114.604795,124.201313,134.011233,140.212391,I,Above,Gable,0,5701,Wood,44.35546666,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2773,NJBF000071307,1810 ONTARIO AVE,Atlantic City,NJ,39.37014957,-74.44074466,RES3A,3001,100,NaN,NE,2011,0,3301,1,1,5004.066846,5004.066846,3505,NO,17.95,26.04,3,1.11,6106,114.263067,123.912191,133.690132,139.979066,I,Above,Hip,0,5701,Wood,21.99493307,0,0,,,,1,1,,0.03,nav,1,2011,1,, 2774,NJBF000071377,124 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37041795,-74.41471769,RES3D,3004,,17,E,1998,1998,3303,2,1,1348.700548,1348.700548,3505,NO,31.2,41.61,3,-1.15,6106,114.816893,124.385793,134.212453,140.38616,I,Above,Hip,0,NaN,Wood,36.40581813,0,0,,,,1,1,,0.03,nav,1,1998,2,, 2775,NJBF000072057,1605 BEACH AVE,Atlantic City,NJ,39.37245812,-74.45007654,RES1,3001,,17,NE,1930,1930,3102,2,1,878.4683568,878.4683568,3505,YES,36.7,50.73,3,3.28,6106,114.034474,123.717871,133.479022,139.792019,I,Above,Hip,0,5701,Wood,43.71543719,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2776,NJBF000066765,4103 WINCHESTER AVE,Atlantic City,NJ,39.35071472,-74.46059274,RES3A,3001,,45,NE,1900,1900,3301,2,2,1806.097932,1806.097932,3505,YES,19.96,29.19,3,-1.81,6106,114.06677,123.760092,133.509862,139.95198,I,Above,Hip,0,5701,Wood,24.57508067,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2777,NJBF000072872,831 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37534077,-74.42280514,RES3D,3001,,17,ME,2004,2004,3301,1,1,1835.476029,1835.476029,3507,NO,18.54,30.76,1,2.93,6106,114.588024,124.186018,133.995629,140.191135,I,Above,Hip,0,NaN,Wood,24.65193931,0,0,,,,1,1,,0.03,nav,1,2004,1,, 2778,NJBF000070959,122 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36897277,-74.41853588,RES3D,3004,,17,E,1900,1900,3303,2,1,1038.56027,1038.56027,3505,NO,38.92,53.9,3,7.98,6106,114.752809,124.330724,134.150093,140.346828,I,Above,Flat,0,NaN,Wood,46.41228227,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2779,NJBF000070979,124 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36903913,-74.41857458,RES3D,3004,,17,E,1900,1900,3303,2,1,878.6159656,878.6159656,3505,NO,40.97,54.6,3,4.12,6106,114.751203,124.329321,134.148603,140.345312,I,Above,Gable,0,NaN,Wood,47.78603108,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2780,NJBF000067846,16 N MORRIS AVE,Atlantic City,NJ,39.35475087,-74.44873386,RES3B,3001,,45,ME,1900,1900,3301,2,4,1548.845394,1548.845394,3504,NO,26.25,35.58,-4,0,6106,114.274946,123.930776,133.698199,140.078966,I,Above,Hip,0,NaN,Wood,30.91572744,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2781,NJBF000067647,19 N SOVEREIGN AVE,Atlantic City,NJ,39.35406442,-74.4511843,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,1403.191792,1403.191792,3504,NO,54.91,61.35,-4,0,6106,114.230174,123.893822,133.657446,140.050646,I,Above,Hip,0,NaN,Wood,58.12914874,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2782,NJBF000067675,21 N SOVEREIGN AVE,Atlantic City,NJ,39.35413264,-74.45124638,RES3B,3001,,NaN,ME,1900,0,3301,2,1,1282.024834,1282.024834,3504,NO,29.52,40,-4,0,6106,114.227962,123.891961,133.655484,140.048645,I,Above,Hip,0,NaN,Wood,34.7590491,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2783,NJBF000064518,4700 ATLANTIC AVE,Atlantic City,NJ,39.34468269,-74.46441348,RES3A,3001,,18,NE,1925,1925,3301,3,1,3532.461557,3532.461557,3504,YES,56.29,71.02,-4,0,6106,114.060684,123.756891,133.501303,139.983653,I,Above,Hip,0,5701,Wood,63.65734222,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2784,NJBF000070027,902 WESTCOAT PL,Atlantic City,NJ,39.365545,-74.422886,COM1,3003,,33,ME,1900,1900,3401,2,1,612.8556442,612.8556442,3507,YES,37.16,51.73,1,0.57,6106,114.700754,124.286824,134.098305,140.326867,I,Above,Gable,0,NaN,Wood,44.44647887,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2785,NJBF000070023,904 WESTCOAT PL,Atlantic City,NJ,39.36552414,-74.42293697,COM1,3003,,33,ME,1900,1900,3401,2,1,618.8258107,618.8258107,3507,YES,30.98,39.05,1,0.3,6106,114.699915,124.28611,134.097498,140.32637,I,Above,Gable,0,NaN,Wood,35.0174631,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2786,NJBF000070390,107 CHESAPEAKE BAY CT,Atlantic City,NJ,39.36691517,-74.42207223,RES1,3001,,28,NE,2004,2004,3102,2,2,2482.143826,2482.143826,3505,NO,24.78,38.62,3,-2.52,6106,114.701826,124.287393,134.100245,140.32046,I,Above,Hip,0,5701,Wood,31.70142273,0,0,,,,1,1,,0.03,nav,1,2004,2,, 2787,NJBF000070346,103 CHESAPEAKE BAY CT,Atlantic City,NJ,39.36677532,-74.42200029,RES1,3001,,28,NE,2004,2004,3102,2,2,2028.492515,2028.492515,3505,NO,29.79,37.93,3,0.21,6106,114.705023,124.290175,134.103183,140.323519,I,Above,Hip,0,5701,Wood,33.85921453,0,0,,,,1,1,,0.03,nav,1,2004,2,, 2788,NJBF000072055,437 N CONNECTICUT AVE,Atlantic City,NJ,39.3724545,-74.42199116,RES1,3001,,17,NE,1930,1930,3102,2,1,1305.947771,1305.947771,3505,NO,40.56,51.69,3,3.41,6106,114.638592,124.231042,134.043,140.244494,I,Above,Flat,0,5701,Wood,46.1242889,0,0,,,,1,1,,0.03,nav,1,1930,2,, 2789,NJBF000072074,519 WABASH AVE,Atlantic City,NJ,39.37250832,-74.42183696,RES1,3001,,17,NE,1900,1900,3102,2,1,878.5158902,878.5158902,3505,NO,23.64,37.07,3,-0.57,6106,114.641258,124.233316,134.045559,140.246173,I,Above,Hip,0,5701,Wood,30.35594123,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2790,NJBF000072006,1555 BEACH AVE,Atlantic City,NJ,39.37226589,-74.44926347,RES1,3001,,17,NE,1900,1900,3102,1,1,2321.296169,2321.296169,3505,NO,17.83,25.61,3,2.25,6106,114.054331,123.734708,133.497299,139.808394,I,Above,Gable,0,5701,Wood,21.71986773,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2791,NJBF000066461,4305 WINCHESTER AVE,Atlantic City,NJ,39.34980862,-74.462775,RES3A,3001,,27,NE,1900,1900,3301,2,2,543.7823858,543.7823858,3505,YES,37.95,49.66,3,2.48,6106,114.030474,123.730612,133.477334,139.930933,I,Above,Flat,0,5701,Wood,43.80914569,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2792,NJBF000067035,,Atlantic City,NJ,39.35177008,-74.45956056,RES3B,3001,,NaN,E,1969,0,3303,3,1,6823.493074,6823.493074,3505,NO,51.32,61.84,3,0.75,6106,114.076017,123.767284,133.518481,139.952353,I,Above,Hip,0,NaN,Wood,56.57734648,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2793,NJBF000067121,,Atlantic City,NJ,39.35217394,-74.45904866,RES3B,3001,,NaN,E,1969,0,3303,3,1,4903.856174,4903.856174,3505,NO,59.4,67.76,3,4.93,6106,114.08213,123.772151,133.524065,139.954375,I,Above,Flat,0,NaN,Wood,63.58222666,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2794,NJBF000067169,,Atlantic City,NJ,39.35241487,-74.45927481,RES3B,3001,,NaN,E,1969,0,3303,3,1,4370.880427,4370.880427,3505,NO,38.13,51.66,3,5.13,6106,114.074149,123.765474,133.517043,139.947078,I,Above,Flat,0,NaN,Wood,44.89544212,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2795,NJBF000068108,429 N HARRISBURG AVE,Atlantic City,NJ,39.35566566,-74.46052858,RES1,3001,,27,NE,1920,1920,3102,2,2,1394.513898,1394.513898,3505,NO,38.99,48.19,3,7.19,6106,114.006094,123.707797,133.457182,139.876885,I,Above,Flat,0,5701,Wood,43.59030754,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2796,NJBF000068797,2611 ARCTIC AVE,Atlantic City,NJ,39.35763866,-74.44479857,RES3A,3001,,27,NE,1900,1900,3301,3,2,928.7988005,928.7988005,3505,YES,58.74,65.93,3,3.99,6106,114.324721,123.971196,133.744738,140.098289,I,Above,Gable,0,5701,Wood,62.33654542,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2797,NJBF000071256,1055 N OHIO AVE,Atlantic City,NJ,39.36994667,-74.44112198,RES3A,3001,,33,NE,1900,1900,3301,2,1,5845.277662,5845.277662,3505,YES,23.44,36.09,3,-1.15,6106,114.257282,123.907462,133.684804,139.975969,I,Above,Flat,0,5701,Wood,29.76440048,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2798,NJBF000067507,,Atlantic City,NJ,39.35368682,-74.44979103,COM1,3003,,NaN,ME,1969,0,3401,2,1,2607.939158,2607.939158,3507,NO,31.5,44.71,1,2.52,6106,114.265219,123.92306,133.688875,140.078094,I,Above,Flat,0,NaN,Wood,38.10332727,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2799,NJBF000065767,1 S DELANCY PL,Atlantic City,NJ,39.34803933,-74.46161291,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,1145.478728,1145.478728,3505,NO,23.8,35.82,3,-2.73,6106,114.078593,123.770724,133.519104,139.976649,I,Above,Hip,0,5701,Wood,29.81064484,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2800,NJBF000067749,10 N CHELSEA AVE,Atlantic City,NJ,39.35435788,-74.44971306,RES3B,3001,,17,ME,1910,1910,3301,3,1,2080.331932,2080.331932,3504,YES,41.44,49.45,-4,0,6106,114.258539,123.917274,133.683176,140.069408,I,Above,Hip,0,NaN,Wood,45.44759407,0,0,,,,1,1,,0.03,nav,1,1910,3,, 2801,NJBF000067734,10 N CHELSEA AVE,Atlantic City,NJ,39.3543095,-74.4499335,RES3B,3001,,17,ME,1910,1910,3301,3,1,640.6475961,640.6475961,3504,YES,56.65,66.44,-4,0,6106,114.254339,123.913801,133.67936,140.066663,I,Above,Hip,0,NaN,Wood,61.54536995,0,0,,,,1,1,,0.03,nav,1,1910,3,, 2802,NJBF000071702,716 WABASH AVE,Atlantic City,NJ,39.371336,-74.4240395,RES1,3001,,45,NE,1900,1900,3102,1,2,1654.841023,1654.841023,3505,NO,24.5,36.74,3,5.77,6106,114.607899,124.205137,134.01341,140.22797,I,Above,Hip,0,5701,Wood,30.6200618,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2803,NJBF000071716,714 WABASH AVE,Atlantic City,NJ,39.37136516,-74.42395263,RES1,3001,,45,NE,1933,1933,3102,1,2,1110.297332,1110.297332,3505,NO,19.17,30.07,3,2.64,6106,114.609418,124.206429,134.014862,140.228931,I,Above,Hip,0,5701,Wood,24.62153744,0,0,,,,1,1,,0.03,nav,1,1933,1,, 2804,NJBF000067240,4103 SOUTH BLVD,Atlantic City,NJ,39.35271151,-74.46107743,RES1,3001,,27,NE,1900,1900,3102,2,2,1360.587833,1360.587833,3505,YES,20.71,35.45,3,-2.14,6106,114.030949,123.72978,133.478722,139.913541,I,Above,Flat,0,5701,Wood,28.07760075,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2805,NJBF000070581,709 N OHIO AVE,Atlantic City,NJ,39.36767909,-74.43958683,RES1,3001,,17,NE,1900,1900,3102,2,1,998.8429788,998.8429788,3505,NO,30.37,37.13,3,0.99,6106,114.316915,123.95939,133.740036,140.033935,I,Above,Hip,0,5701,Wood,33.74813588,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2806,NJBF000069113,2609 FAIRMOUNT AVE,Atlantic City,NJ,39.35881725,-74.44562305,RES3A,3001,,33,NE,1900,1900,3301,2,1,2972.964668,2972.964668,3505,YES,39.66,54.24,3,7.53,6106,114.292405,123.943689,133.715754,140.06804,I,Above,Flat,0,5701,Wood,46.95161419,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2807,NJBF000068389,3103 FAIRMOUNT AVE,Atlantic City,NJ,39.35658911,-74.45127985,RES3A,3001,,45,NE,1900,1900,3301,2,2,2637.174137,2637.174137,3507,YES,33.17,39.05,1,-0.74,6106,114.196744,123.865009,133.628268,140.011514,I,Above,Gable,0,5701,Wood,36.10789621,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2808,NJBF000068261,3108 FAIRMOUNT AVE,Atlantic City,NJ,39.356166,-74.451161,RES3A,3001,,45,NE,1905,1905,3301,2,2,1936.015213,1936.015213,3505,YES,40.58,47.55,3,7.49,6106,114.204561,123.871695,133.635184,140.019717,I,Above,Gable,0,5701,Wood,44.06694267,0,0,,,,1,1,,0.03,nav,1,1905,2,, 2809,NJBF000072009,2151 KUEHNLE AVE,Atlantic City,NJ,39.37226764,-74.45206768,RES1,3001,,16,NE,1900,1900,3101,1,1,1187.341989,1187.341989,3505,NO,11.49,26.17,3,0.96,6106,113.993397,123.683692,133.441605,139.761833,I,Above,Gable,0,5701,Wood,18.82747118,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2810,NJBF000070161,608 N MICHIGAN AVE,Atlantic City,NJ,39.36604954,-74.44059361,RES3B,3001,,45,ME,1925,1925,3301,3,3,1763.436062,1763.436062,3505,YES,50.96,60.57,3,2.48,6106,114.314366,123.958268,133.737549,140.041688,I,Above,Hip,0,NaN,Wood,55.76299058,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2811,NJBF000071363,609 MEDITERRANEAN AVE,Atlantic City,NJ,39.37036506,-74.42129478,RES1,3001,959,NaN,NE,1969,0,3102,1,1,17290.10102,17290.10102,3505,NO,11.11,16.17,3,-0.06,6106,114.67775,124.265607,134.079368,140.284583,I,Above,Flat,0,5701,Wood,13.64211205,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2812,NJBF000068320,501 N ELBERON AVE,Atlantic City,NJ,39.35634317,-74.46223203,RES1,3001,,45,NE,1961,1961,3101,2,4,1971.63527,1971.63527,3505,NO,25.32,32.65,3,-0.27,6106,113.960397,123.669782,133.416589,139.838549,I,Above,Hip,0,5701,Wood,28.9857947,0,0,,,,1,1,,0.03,nav,1,1961,2,, 2813,NJBF000071643,1700 MARMORA AVE,Atlantic City,NJ,39.37115278,-74.43970132,EDU1,3003,,NaN,E,1969,0,3401,1,1,72742.1867,72742.1867,3507,NO,20.7,29.18,1,1.52,6106,114.273987,123.920649,133.700123,139.981174,I,Above,Flat,0,NaN,Wood,24.94077003,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2814,NJBF000071592,1600 N ALBANY AVE,Atlantic City,NJ,39.37102307,-74.47854855,RES4,3003,530,NaN,ME,1969,0,3401,1,1,14202.12809,14202.12809,3507,NO,19.03,27.03,1,2.83,6106,113.427422,123.218155,132.936747,139.324606,I,Above,Flat,0,NaN,Wood,23.02875176,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2815,NJBF000067222,12 N ST DAVIDS PL,Atlantic City,NJ,39.35264412,-74.45533965,RES3B,3001,,47,E,1900,1900,3303,4,4,1542.246534,1542.246534,3507,NO,58.86,69.51,1,0.28,6106,114.157305,123.834002,133.591366,140.006272,I,Above,Flat,0,NaN,Wood,64.18393384,0,0,,,,1,1,,0.03,nav,1,1900,4,, 2816,NJBF000070317,425 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36668316,-74.43565274,RES1,3001,,27,NE,1900,1900,3101,2,2,2633.470375,2633.470375,3505,YES,28.85,41.19,3,4.62,6106,114.413478,124.041625,133.829446,140.111022,I,Above,Flat,0,5701,Wood,35.02211221,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2817,NJBF000071639,1509 W RIVERSIDE DR,Atlantic City,NJ,39.37113883,-74.44972252,RES1,3001,,17,NE,1955,1955,3102,1,1,1325.068394,1325.068394,3505,NO,19.08,29.85,3,8.06,6106,114.057258,123.738278,133.500523,139.81781,I,Above,Gable,0,5701,Wood,24.46497759,0,0,,,,1,1,,0.03,nav,1,1955,1,, 2818,NJBF000072559,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37408464,-74.41717707,RES3C,3001,,NaN,ME,1969,0,3301,2,1,6504.448443,6504.448443,3505,NO,35.31,42.03,3,-1.61,6106,114.722093,124.302515,134.123532,140.297377,I,Above,Hip,0,NaN,Wood,38.66893519,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2819,NJBF000072344,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37335094,-74.41939057,RES3C,3001,,NaN,ME,1969,0,3301,2,1,7304.58357,7304.58357,3505,NO,37.89,46.75,3,0.68,6106,114.683548,124.269451,134.086268,140.272834,I,Above,Hip,0,NaN,Wood,42.32065841,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2820,NJBF000072668,614 N NEW JERSEY AVE,Atlantic City,NJ,39.37445183,-74.42552549,IND3,3001,959,NaN,E,1969,0,3401,2,1,5885.775041,5885.775041,3507,NO,29.75,36.42,1,1.43,6102,114.540215,124.145363,133.94998,140.160531,I,Above,Hip,0,NaN,Wood,33.08518041,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2821,NJBF000069805,918 ATLANTIC AVE,Atlantic City,NJ,39.36413188,-74.42229711,COM1,3003,51,NaN,ME,1969,0,3401,1,1,5582.017344,5582.017344,3507,NO,12.25,26.47,1,0.91,6106,114.730231,124.312391,134.125137,140.355525,I,Above,Flat,0,NaN,Wood,19.36016957,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2822,NJBF000069677,1200 ATLANTIC AVE,Atlantic City,NJ,39.36277696,-74.42562163,COM1,3003,100,NaN,ME,1969,0,3401,3,1,10547.99496,10547.99496,3507,YES,53.13,59.32,1,0.05,6106,114.675472,124.265829,134.072463,140.323076,I,Above,Flat,0,NaN,Wood,56.22428183,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2823,NJBF000069697,12 S PENNSYLVANIA AVE,Atlantic City,NJ,39.36302532,-74.42418888,COM1,3003,29,NaN,ME,1969,0,3401,4,2,3004.971906,3004.971906,3507,YES,50.13,55.57,1,0.49,6106,114.703131,124.289404,134.098686,140.34171,I,Above,Flat,0,NaN,Wood,52.85090021,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2824,NJBF000067762,2619 PACIFIC AVE,Atlantic City,NJ,39.35442172,-74.44275746,RES4,3004,738,NaN,ME,1969,0,3401,3,1,1817.991422,1817.991422,3507,YES,36.81,46.4,1,1.51,6106,114.408813,124.04255,133.819627,140.17681,I,Above,Flat,0,NaN,Wood,41.60235306,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2825,NJBF000065773,19 S RALEIGH AVE,Atlantic City,NJ,39.34806155,-74.46074407,RES3A,3001,,17,NE,1900,1900,3301,2,1,1601.262863,1601.262863,3505,NO,33.26,42.68,3,3.51,6106,114.097331,123.786114,133.535718,139.990063,I,Above,Hip,0,5701,Wood,37.97253637,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2826,NJBF000065349,45 N JACKSON AVE,Atlantic City,NJ,39.34680933,-74.46705787,RES3A,3001,,17,NE,1920,1920,3301,2,1,1528.003374,1528.003374,3505,NO,36.57,48.99,3,0.48,6106,113.975002,123.686207,133.427137,139.908505,I,Above,Hip,0,5701,Wood,42.78337317,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2827,NJBF000068715,2905 JACKSON TERR,Atlantic City,NJ,39.35747816,-74.44955787,RES3A,3001,,33,NE,1910,1910,3301,2,1,526.1110591,526.1110591,3507,YES,27.86,34.89,1,0.69,6106,114.223292,123.886667,133.652541,140.025591,I,Above,Gable,0,5701,Wood,31.37349023,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2828,NJBF000068704,2909 JACKSON TERR,Atlantic City,NJ,39.35745734,-74.44966296,RES3A,3001,,33,NE,1910,1910,3301,2,1,860.1245753,860.1245753,3507,YES,28.9,36.37,1,-0.98,6106,114.221265,123.88499,133.6507,140.024238,I,Above,Gable,0,5701,Wood,32.6376684,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2829,NJBF000068686,2913 JACKSON TERR,Atlantic City,NJ,39.35741528,-74.44974982,RES3A,3001,,33,NE,1900,1900,3301,2,1,762.4010152,762.4010152,3507,YES,34.4,48.04,1,0.96,6106,114.219887,123.883864,133.64944,140.023482,I,Above,Gable,0,5701,Wood,41.21632732,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2830,NJBF000068744,2901 JACKSON TERR,Atlantic City,NJ,39.35752728,-74.4494673,RES3A,3001,,33,NE,1910,1910,3301,2,1,888.1305055,888.1305055,3507,YES,25.63,33.64,1,2.57,6106,114.22467,123.887791,133.653804,140.026305,I,Above,Flat,0,5701,Wood,29.63732484,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2831,NJBF000071842,28 WINDJAMMER CT,Atlantic City,NJ,39.37178961,-74.41838007,RES3C,3001,,35,ME,1990,1990,3301,2,1,5690.176937,5690.176937,3505,NO,23.64,33.93,3,-1.09,6106,114.723142,124.304262,134.123418,140.310328,I,Above,Hip,0,NaN,Wood,28.78519011,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2832,NJBF000068635,203 N MORRIS AVE,Atlantic City,NJ,39.35728685,-74.44988185,RES3A,3001,,27,NE,1900,1900,3301,2,2,1456.2638,1456.2638,3507,YES,23.52,37.62,1,0.81,6106,114.218588,123.882843,133.648225,140.023294,I,Above,Flat,0,5701,Wood,30.5685411,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2833,NJBF000072356,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3733702,-74.4189413,RES3C,3001,,NaN,ME,1969,0,3301,2,1,5579.162911,5579.162911,3505,NO,29.72,36.38,3,5.3,6106,114.692893,124.277521,134.095219,140.279631,I,Above,Hip,0,NaN,Wood,33.04926394,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2834,NJBF000072628,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3743265,-74.418685,RES3C,3001,,NaN,ME,1969,0,3301,1,1,1508.165388,1508.165388,3505,NO,13.7,24.84,3,-1.6,6106,114.687289,124.272275,134.090242,140.270349,I,Above,Hip,0,NaN,Wood,19.27232264,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2835,NJBF000070094,203 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.3657865,-74.4287625,RES3D,3004,,45,E,1920,1920,3303,4,3,586.6990513,586.6990513,3505,YES,75.01,87.4,3,7.87,6106,114.57216,124.176842,133.977311,140.232159,I,Above,Hip,0,NaN,Wood,81.20333304,0,0,,,,1,1,,0.03,nav,1,1920,4,, 2836,NJBF000065841,23 N BARTRAM AVE,Atlantic City,NJ,39.34825346,-74.46291264,RES3A,3001,,17,NE,1912,1912,3301,2,1,1189.855635,1189.855635,3505,NO,40.73,47.36,3,5.95,6106,114.047353,123.74501,133.491576,139.952683,I,Above,Hip,0,5701,Wood,44.04617062,0,0,,,,1,1,,0.03,nav,1,1912,2,, 2837,NJBF000071486,204 MADISON AVE,Atlantic City,NJ,39.37073963,-74.4151533,RES3D,3004,,27,E,1998,1998,3303,2,2,1909.049572,1909.049572,3505,NO,37,45.33,3,-1.84,6106,114.803899,124.374456,134.200196,140.375009,I,Above,Gable,0,NaN,Wood,41.16781124,0,0,,,,1,1,,0.03,nav,1,1998,2,, 2838,NJBF000066120,21 N RALEIGH AVE,Atlantic City,NJ,39.34897617,-74.46142804,RES3A,3001,,45,NE,1915,1915,3301,2,3,1650.15376,1650.15376,3505,NO,25.55,38.71,3,3.55,6106,114.070633,123.76389,133.512526,139.965269,I,Above,Flat,0,5701,Wood,32.12739461,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2839,NJBF000067055,30 N ALBANY AVE,Atlantic City,NJ,39.35188698,-74.45581034,COM3,3003,219,NaN,ME,1969,1980,3401,1,1,7028.775528,7028.775528,3507,NO,19.03,31.3,1,2.89,6106,114.15657,123.833676,133.590375,140.010223,I,Above,Flat,0,NaN,Wood,25.16631768,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2840,NJBF000065009,112 S BARTRAM AVE,Atlantic City,NJ,39.34588948,-74.46153452,RES3A,3001,,NaN,NE,1912,0,3301,2,1,2207.482121,2207.482121,3504,NO,32.5,40.34,-4,0,6106,114.108059,123.795483,133.543912,140.010586,I,Above,Hip,0,5701,Wood,36.41913238,0,0,,,,1,1,,0.03,nav,1,1912,2,, 2841,NJBF000066604,4023 ANDOVER GDNS,Atlantic City,NJ,39.3502091,-74.45920983,RES3A,3001,,27,NE,1935,1935,3301,2,2,1357.953585,1357.953585,3505,YES,34.05,42.07,3,4.23,6106,114.103476,123.790485,133.542258,139.981731,I,Above,Flat,0,5701,Wood,38.06157128,0,0,,,,1,1,,0.03,nav,1,1935,2,, 2842,NJBF000067053,3430 ATLANTIC AVE,Atlantic City,NJ,39.35187385,-74.45196934,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1886.340436,1886.340436,3507,NO,21.65,34.26,1,0.52,6106,114.240545,123.903168,133.66567,140.070807,I,Above,Flat,0,NaN,Wood,27.95959649,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2843,NJBF000067027,151 N ANNAPOLIS AVE,Atlantic City,NJ,39.35174682,-74.46079154,RES3C,3001,,NaN,E,1969,0,3303,4,1,3908.005301,3908.005301,3505,NO,82.51,93.21,3,5.47,6106,114.04935,123.745345,133.494771,139.932969,I,Above,Flat,0,NaN,Wood,87.86330642,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2844,NJBF000069361,ATLANTIC CITY EXPRESSWAY,Atlantic City,NJ,39.35986544,-74.43926815,COM1,3003,,NaN,ME,1969,0,3401,1,1,14794.20542,14794.20542,3507,NO,17.75,31.39,1,0.86,6106,114.417266,124.047934,133.830517,140.152574,I,Above,Flat,0,NaN,Wood,24.56769685,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2845,NJBF000070691,38 N TAYLOR AVENUE,Atlantic City,NJ,39.36807036,-74.41713422,RES3D,3004,,45,E,1900,1900,3303,2,2,1202.12908,1202.12908,3505,YES,29.98,40.63,3,1.62,6106,114.793267,124.365847,134.188089,140.380951,I,Above,Hip,0,NaN,Wood,35.3039517,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2846,NJBF000069186,2529 FAIRMOUNT AVE,Atlantic City,NJ,39.35911587,-74.44478605,RES3A,3001,,33,NE,1900,1900,3301,2,1,599.5170717,599.5170717,3505,YES,21.29,34.45,3,-1.22,6106,114.306916,123.955687,133.729091,140.076851,I,Above,Flat,0,5701,Wood,27.87192708,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2847,NJBF000069195,2527 FAIRMOUNT AVE,Atlantic City,NJ,39.35914141,-74.44474754,RES3A,3001,,33,NE,1900,1900,3301,2,1,621.0955154,621.0955154,3505,YES,43.97,50.4,3,6.78,6106,114.307435,123.95611,133.729574,140.077084,I,Above,Gable,0,5701,Wood,47.1879886,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2848,NJBF000069222,2519 FAIRMOUNT AVE,Atlantic City,NJ,39.3592245,-74.4445765,RES3A,3001,,33,NE,1900,1900,3301,2,1,653.9984557,653.9984557,3505,YES,36.16,43.52,3,8.56,6106,114.310141,123.958336,133.732074,140.078563,I,Above,Gable,0,5701,Wood,39.84067901,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2849,NJBF000069223,2517 FAIRMOUNT AVE,Atlantic City,NJ,39.3592279,-74.44452357,RES3A,3001,,33,NE,1900,1900,3301,2,1,630.8774682,630.8774682,3505,YES,42.79,56.8,3,8.26,6106,114.311232,123.959248,133.733071,140.079339,I,Above,Flat,0,5701,Wood,49.79778686,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2850,NJBF000069232,2513 FAIRMOUNT AVE,Atlantic City,NJ,39.35926588,-74.44443856,RES3A,3001,,33,NE,1900,1900,3301,2,1,558.6952826,558.6952826,3505,YES,40.63,50.54,3,1.91,6106,114.312612,123.960386,133.734345,140.080122,I,Above,Flat,0,5701,Wood,45.58480389,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2851,NJBF000069243,2509 FAIRMOUNT AVE,Atlantic City,NJ,39.3593335,-74.4443795,RES3A,3001,,33,NE,1900,1900,3301,2,1,771.9985959,771.9985959,3505,YES,27.12,33.6,3,1.15,6106,114.313096,123.960761,133.734811,140.080086,I,Above,Flat,0,5701,Wood,30.36250316,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2852,NJBF000069246,2507 FAIRMOUNT AVE,Atlantic City,NJ,39.3593529,-74.44433258,RES3A,3001,,33,NE,1900,1900,3301,2,1,786.6792387,786.6792387,3505,YES,36.22,45,3,4.47,6106,114.31385,123.961383,133.735506,140.080518,I,Above,Flat,0,5701,Wood,40.60724535,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2853,NJBF000071589,105 SUNRISE AVE,Atlantic City,NJ,39.37102046,-74.41370468,RES3D,3004,,17,E,2000,2000,3303,2,1,681.6320169,681.6320169,3505,NO,37.13,45.91,3,2.3,6106,114.831307,124.398164,134.226746,140.393623,I,Above,Gable,0,NaN,Wood,41.51958176,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2854,NJBF000071547,105 SUNRISE AVE,Atlantic City,NJ,39.37089338,-74.41362585,RES3D,3004,,17,E,2000,2000,3303,2,1,1171.916106,1171.916106,3505,NO,39.54,45,3,7.12,6106,114.834466,124.400933,134.229696,140.39658,I,Above,Flat,0,NaN,Wood,42.26522726,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2855,NJBF000071277,105 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.370044,-74.41380633,RES3D,3004,,27,E,2000,2000,3303,2,2,1785.842598,1785.842598,3505,NO,24.34,38.33,3,-1.99,6106,114.840609,124.406433,134.234972,140.405379,I,Above,Hip,0,NaN,Wood,31.33866838,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 2856,NJBF000071196,35 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36973523,-74.41360125,RES3D,3004,,27,E,2003,2003,3303,2,2,2301.207431,2301.207431,3505,NO,34.07,46.25,3,6.7,6106,114.848583,124.413406,134.242402,140.412758,I,Above,Hip,0,NaN,Wood,40.15804237,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2857,NJBF000071417,136 SUNRISE AVE,Atlantic City,NJ,39.37054481,-74.41382173,RES3D,3004,,17,E,2000,2000,3303,2,1,1205.03433,1205.03433,3505,NO,35.14,46.32,3,6.45,6106,114.834391,124.40094,134.229368,140.398296,I,Above,Flat,0,NaN,Wood,40.73326171,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2858,NJBF000071374,136 SUNRISE AVE,Atlantic City,NJ,39.37040529,-74.41372511,RES3D,3004,,17,E,2000,2000,3303,2,1,559.6806325,559.6806325,3505,NO,28.49,34.86,3,0.78,6106,114.838088,124.404176,134.23282,140.401707,I,Above,Flat,0,NaN,Wood,31.67717178,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2859,NJBF000068929,161 WESTMINISTER AVE,Atlantic City,NJ,39.35804553,-74.42753448,COM1,3003,100,NaN,ME,1969,0,3401,3,1,831.639028,831.639028,3507,YES,37.94,46.8,1,2.11,6106,114.692115,124.280738,134.084079,140.3594,I,Above,Flat,0,NaN,Wood,42.37338376,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2860,NJBF000070695,719 N OHIO AVE,Atlantic City,NJ,39.36808337,-74.43983981,RES1,3001,,33,NE,1900,1900,3102,2,1,807.8405022,807.8405022,3505,YES,30.46,40.64,3,4.65,6106,114.306712,123.950512,133.730613,140.02397,I,Above,Flat,0,5701,Wood,35.55338018,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2861,NJBF000067723,25 N SOVEREIGN AVE,Atlantic City,NJ,39.35427779,-74.45134636,RES3B,3001,,45,ME,1900,1900,3301,2,2,1140.01821,1140.01821,3504,NO,32.42,41.83,-4,0,6106,114.223975,123.888596,133.651955,140.044915,I,Above,Gable,0,NaN,Wood,37.12483894,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2862,NJBF000067760,20 N MONTPELIER AVE,Atlantic City,NJ,39.35441854,-74.45096199,RES3B,3001,,45,ME,1900,1900,3301,3,4,1422.445632,1422.445632,3504,YES,50.65,64.9,-4,0,6106,114.230582,123.894027,133.657973,140.048868,I,Above,Hip,0,NaN,Wood,57.77434568,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2863,NJBF000067740,18 N MONTPELIER AVE,Atlantic City,NJ,39.35434032,-74.45090105,RES3B,3001,,45,ME,1900,1900,3301,3,4,1657.656102,1657.656102,3504,YES,36.32,46.09,-4,0,6106,114.232896,123.895978,133.660024,140.051002,I,Above,Hip,0,NaN,Wood,41.20670716,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2864,NJBF000069178,118 N GEORGIA AVE,Atlantic City,NJ,39.35907334,-74.44259646,RES3B,3001,,45,ME,1900,1900,3301,2,3,899.1848991,899.1848991,3505,NO,31.1,40.28,3,4.11,6106,114.354914,123.995893,133.772938,140.111932,I,Above,Flat,0,NaN,Wood,35.69285208,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2865,NJBF000067744,28 N SOVEREIGN AVE,Atlantic City,NJ,39.35434997,-74.45185964,RES3B,3001,,45,ME,1900,1900,3301,2,2,1402.723648,1402.723648,3504,NO,36.07,42.8,-4,0,6106,114.211876,123.878529,133.641087,140.035739,I,Above,Hip,0,NaN,Wood,39.43370515,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2866,NJBF000067649,20 N SOVEREIGN AVE,Atlantic City,NJ,39.3540697,-74.45168799,RES3B,3001,,45,ME,1900,1900,3301,2,2,1755.595406,1755.595406,3504,NO,34,44.05,-4,0,6106,114.219118,123.884645,133.647487,140.04262,I,Above,Flat,0,NaN,Wood,39.02753986,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2867,NJBF000067617,18 N SOVEREIGN AVE,Atlantic City,NJ,39.3539801,-74.45164959,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,1953.890182,1953.890182,3504,NO,22.36,35.67,-4,0,6106,114.22107,123.886298,133.649205,140.044557,I,Above,Hip,0,NaN,Wood,29.01660886,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2868,NJBF000070704,1911 GRANT AVE,Atlantic City,NJ,39.36811833,-74.440735,RES3B,3001,,17,ME,1900,1900,3301,2,1,828.8449225,828.8449225,3505,NO,34.02,42.51,3,6.62,6106,114.286973,123.933834,133.712364,140.009102,I,Above,Gable,0,5701,Wood,38.26595801,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2869,NJBF000072811,821 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37502504,-74.42260149,RES3D,3001,,17,ME,2006,2006,3301,2,1,2016.269585,2016.269585,3507,NO,26.07,36.98,1,-0.44,6106,114.595986,124.193058,134.003156,140.198813,I,Above,Hip,0,NaN,Wood,31.52523735,0,0,,,,1,1,,0.03,nav,1,2006,2,, 2870,NJBF000068982,148 WESTMINSTER AVE,Atlantic City,NJ,39.35824644,-74.42797308,COM1,3003,,45,ME,1900,1900,3401,2,2,822.6372422,822.6372422,3507,NO,31.19,41.58,1,0.91,6106,114.680245,124.27063,134.073175,140.349927,I,Above,Flat,0,NaN,Wood,36.38229169,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2871,NJBF000067598,121 S TEXAS AVE,Atlantic City,NJ,39.35393362,-74.44157314,RES3A,3004,,45,NE,1900,1900,3301,3,2,1659.26424,1659.26424,3505,YES,48.5,61.49,3,-0.68,6106,114.44055,124.069222,133.848255,140.202092,I,Above,Flat,0,5701,Wood,54.9909183,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2872,NJBF000067628,119 S TEXAS AVE,Atlantic City,NJ,39.35401412,-74.44159586,RES3A,3004,,45,NE,1900,1900,3301,3,2,792.8133155,792.8133155,3505,YES,36.51,48.74,3,4.98,6106,114.439053,124.067951,133.846946,140.200592,I,Above,Flat,0,5701,Wood,42.62712499,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2873,NJBF000067600,104 S TEXAS AVE,Atlantic City,NJ,39.35393963,-74.44225078,RES3A,3004,,45,NE,1925,1925,3301,3,4,1268.855459,1268.855459,3505,YES,38.34,48.98,3,-0.07,6106,114.425791,124.056868,133.834783,140.191555,I,Above,Hip,0,5701,Wood,43.66002751,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2874,NJBF000071216,1723 MCKINLEY AVE,Atlantic City,NJ,39.369789,-74.439126,RES3A,3001,,17,NE,1981,1981,3301,2,1,1143.264907,1143.264907,3505,NO,35.01,40.45,3,-1.95,6106,114.302201,123.945521,133.726416,140.010443,I,Above,Gable,0,5701,Wood,37.72944299,0,0,,,,1,1,,0.03,nav,1,1981,2,, 2875,NJBF000064471,118 S PLAZA PL,Atlantic City,NJ,39.34457127,-74.46345615,RES3A,3001,,18,NE,1925,1925,3301,3,1,3239.596331,3239.596331,3504,YES,54.21,65.22,-4,0,6106,114.083126,123.775304,133.521007,140.000434,I,Above,Gable,0,5701,Wood,59.71703043,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2876,NJBF000065730,4020 ATLANTIC AVE,Atlantic City,NJ,39.34793814,-74.45774051,RES3A,3001,,18,NE,1925,1925,3301,3,1,2004.67967,2004.67967,3504,NO,39.85,47.62,-4,0,6106,114.16463,123.841532,133.595426,140.03916,I,Above,Hip,0,5701,Wood,43.73905655,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2877,NJBF000064402,115 S NEWTON AVE,Atlantic City,NJ,39.34439453,-74.46452629,RES3A,3001,,18,NE,1910,1910,3301,2,1,3894.597846,3894.597846,3504,YES,22.35,37.12,-4,0,6106,114.061968,123.758002,133.502243,139.986279,I,Above,Hip,0,5701,Wood,29.73516047,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2878,NJBF000070275,116 PACIFIC AVE,Atlantic City,NJ,39.36651951,-74.41168801,RES3A,3001,190,NaN,NE,1969,0,3301,1,1,5168.58161,5168.58161,3505,NO,23.42,37.04,3,7.8,6106,114.927156,124.4819,134.315085,140.485717,I,Above,Flat,0,5701,Wood,30.22998442,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2879,NJBF000069522,100 S NORTH CAROLINA AVE,Atlantic City,NJ,39.36117815,-74.42469566,COM1,3003,100,NaN,ME,1982,1982,3401,2,0,31554.39973,31554.39973,3507,NO,29.85,36.09,1,0.47,6106,114.714629,124.299534,134.107991,140.359489,I,Above,Flat,0,NaN,Wood,32.96561069,0,0,,,,1,1,,0.03,nav,1,1982,2,, 2880,NJBF000069844,116 S MASSACHUSETTS AVE,Atlantic City,NJ,39.36447277,-74.41548842,RES3B,3001,,45,E,1900,1900,3303,2,2,927.4854997,927.4854997,3507,YES,31.68,41.73,1,0.31,6106,114.871086,124.433485,134.259302,140.455309,I,Above,Hip,0,NaN,Wood,36.7045383,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2881,NJBF000071435,171 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37061666,-74.41419649,RES3D,3004,,27,E,2000,2000,3303,2,2,1671.997194,1671.997194,3505,NO,29.85,43.1,3,6.66,6106,114.825624,124.39332,134.220988,140.391523,I,Above,Hip,0,NaN,Wood,36.47305384,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 2882,NJBF000072656,108 LIBERTY AVE,Atlantic City,NJ,39.37441906,-74.41642351,RES3C,3001,,17,ME,2003,2003,3301,3,1,1201.871685,1201.871685,3505,NO,40.21,48.1,3,-0.03,6106,114.734214,124.312897,134.135333,140.304559,I,Above,Gable,0,NaN,Wood,44.15322181,0,0,,,,1,1,,0.03,nav,1,2003,3,, 2883,NJBF000072621,108 LIBERTY AVE,Atlantic City,NJ,39.37430954,-74.41633282,RES3C,3001,,17,ME,2003,2003,3301,3,1,530.1538136,530.1538136,3505,NO,63.93,78.64,3,6.26,6106,114.7374,124.315703,134.138346,140.307491,I,Above,Flat,0,NaN,Wood,71.28638814,0,0,,,,1,1,,0.03,nav,1,2003,3,, 2884,NJBF000071798,18 WINDJAMMER CT,Atlantic City,NJ,39.37165888,-74.41788541,RES3C,3001,,35,ME,1990,1990,3301,2,1,6561.893997,6561.893997,3505,NO,33.81,47.32,3,6.5,6106,114.735185,124.314716,134.134873,140.319866,I,Above,Flat,0,NaN,Wood,40.5628101,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2885,NJBF000070896,7 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36878403,-74.41271854,RES3D,3004,,27,E,2003,2003,3303,2,2,947.3400016,947.3400016,3505,NO,39.87,47.11,3,9,6106,114.87847,124.439478,134.270367,140.439285,I,Above,Hip,0,NaN,Wood,43.48932974,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2886,NJBF000069806,NEW HAMPSHIRE AVE ST END,Atlantic City,NJ,39.36414573,-74.41025036,COM8,3003,,NaN,ME,1969,0,3401,2,1,907.2984109,907.2984109,3507,NO,30.66,41.1,1,-0.05,6102,114.986009,124.532922,134.369109,140.53948,I,Above,Flat,0,NaN,Wood,35.87905504,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2887,NJBF000070871,7 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36870364,-74.41291283,RES3D,3004,,27,E,2003,2003,3303,2,2,2515.040665,2515.040665,3505,NO,21.21,27.44,3,0.15,6106,114.875307,124.436744,134.267255,140.437385,I,Above,Hip,0,NaN,Wood,24.32509398,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2888,NJBF000070826,3 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36856036,-74.41281858,RES3D,3004,,27,E,2003,2003,3303,2,2,2452.240906,2452.240906,3505,NO,23.38,29.55,3,1.85,6106,114.878999,124.439965,134.270682,140.440786,I,Above,Hip,0,NaN,Wood,26.46422322,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2889,NJBF000072799,106 CASPIAN AVE,Atlantic City,NJ,39.374969,-74.4166415,RES3C,3001,,17,ME,2003,2003,3301,3,1,562.3240819,562.3240819,3505,NO,55.41,68.75,3,7.08,6106,114.723282,124.303198,134.125062,140.293549,I,Above,Hip,0,NaN,Wood,62.07886981,0,0,,,,1,1,,0.03,nav,1,2003,3,, 2890,NJBF000072732,105 LIBERTY AVE,Atlantic City,NJ,39.37470827,-74.41646932,RES3C,3001,,17,ME,2003,2003,3301,2,1,1178.806288,1178.806288,3505,NO,36.92,50.8,3,-0.4,6106,114.729931,124.309071,134.131344,140.299858,I,Above,Hip,0,NaN,Wood,43.85684227,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2891,NJBF000072762,105 LIBERTY AVE,Atlantic City,NJ,39.37483347,-74.41655118,RES3C,3001,,17,ME,2003,2003,3301,2,1,565.6724003,565.6724003,3505,NO,41.76,55.34,3,5.65,6106,114.726754,124.306265,134.128343,140.296843,I,Above,Hip,0,NaN,Wood,48.551991,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2892,NJBF000072095,5 GALLEON CT,Atlantic City,NJ,39.372567,-74.41667016,RES3C,3001,,45,ME,1990,1990,3301,2,2,3710.067533,3710.067533,3505,NO,31.7,44.45,3,8.27,6106,114.750419,124.327603,134.149974,140.326286,I,Above,Hip,0,NaN,Wood,38.07347893,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2893,NJBF000072653,404 N MAINE AVE,Atlantic City,NJ,39.37441044,-74.41563462,RES3C,3001,,18,ME,2006,2006,3301,3,1,2476.793044,2476.793044,3505,NO,38.31,47.76,3,6.17,6106,114.751043,124.327507,134.151522,140.317042,I,Above,Gable,0,NaN,Wood,43.03490626,0,0,,,,1,1,,0.03,nav,1,2006,3,, 2894,NJBF000072583,107 ADRIATIC AVE,Atlantic City,NJ,39.374168,-74.4162425,RES3C,3001,,17,ME,2003,2003,3301,2,1,649.2251056,649.2251056,3505,NO,24.12,38.25,3,2.62,6106,114.740967,124.31885,134.14171,140.310878,I,Above,Hip,0,NaN,Wood,31.18035999,0,0,,,,1,1,,0.03,nav,1,2003,2,, 2895,NJBF000072022,30 CLIPPER CT,Atlantic City,NJ,39.37231435,-74.41873106,RES3C,3001,,35,ME,1990,1990,3301,2,1,5686.577244,5686.577244,3505,NO,29.34,37.46,3,-1.05,6106,114.709591,124.292363,134.110717,140.297581,I,Above,Flat,0,NaN,Wood,33.40071385,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2896,NJBF000071901,27 WINDJAMMER CT,Atlantic City,NJ,39.37194019,-74.41817111,RES3C,3001,,35,ME,1990,1990,3301,2,1,3698.980634,3698.980634,3505,NO,27.84,40.4,3,0.3,6106,114.725838,124.30654,134.126076,140.311515,I,Above,Hip,0,NaN,Wood,34.12123553,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2897,NJBF000072026,14 GALLEON CT,Atlantic City,NJ,39.372332,-74.41696892,RES3C,3001,,45,ME,1990,1990,3301,2,2,3765.349717,3765.349717,3505,NO,27.49,41.59,3,-0.76,6106,114.746804,124.324549,134.146377,140.324862,I,Above,Flat,0,NaN,Wood,34.54312745,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2898,NJBF000072013,5 CARAVEL CT,Atlantic City,NJ,39.37228875,-74.41736114,RES3C,3001,,35,ME,1990,1990,3301,2,1,3851.852457,3851.852457,3505,NO,24.29,33.76,3,-3,6106,114.738982,124.317792,134.138853,140.319337,I,Above,Hip,0,NaN,Wood,29.02450685,0,0,,,,1,1,,0.03,nav,1,1990,2,, 2899,NJBF000070136,113 S NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36597442,-74.41127632,RES3A,3001,,45,NE,1920,1920,3301,2,3,1226.990943,1226.990943,3505,YES,43.03,52.65,3,5.82,6106,114.942389,124.495128,134.329176,140.49936,I,Above,Flat,0,5701,Wood,47.84122986,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2900,NJBF000070226,212 PACIFIC AVE,Atlantic City,NJ,39.3663045,-74.4124285,RES3A,3001,100,NaN,NE,1969,0,3301,1,1,1781.998673,1781.998673,3505,NO,14.82,27.05,3,0.58,6106,114.914044,124.470541,134.302264,140.4773,I,Above,Flat,0,5701,Wood,20.93201157,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2901,NJBF000070183,126 DEWEY PL,Atlantic City,NJ,39.36611219,-74.41102117,RES3A,3001,,45,NE,1900,1900,3301,2,2,1400.745021,1400.745021,3505,YES,36.34,49.5,3,8.98,6106,114.946136,124.498378,134.332926,140.501397,I,Above,Flat,0,5701,Wood,42.92189555,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2902,NJBF000070084,129 S SEASIDE AVE,Atlantic City,NJ,39.36574183,-74.41195916,RES3A,3001,,17,NE,1900,1900,3301,3,1,781.8247239,781.8247239,3505,YES,49.75,58.27,3,8.43,6106,114.930706,124.485001,134.317702,140.492058,I,Above,Flat,0,5701,Wood,54.00990764,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2903,NJBF000065955,4021 ATLANTIC AVE,Atlantic City,NJ,39.34852647,-74.45778605,RES3A,3001,,45,NE,1900,1900,3301,2,2,3532.785884,3532.785884,3504,YES,25.02,34.75,-4,0,6106,114.156104,123.834355,133.588196,140.029633,I,Above,Flat,0,5701,Wood,29.8844945,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2904,NJBF000068656,119 MAXWELL AVE,Atlantic City,NJ,39.3573405,-74.4465755,RES3A,3001,,45,NE,1900,1900,3301,2,2,709.0025508,709.0025508,3505,NO,37.08,47.57,3,0.54,6106,114.289843,123.942187,133.712863,140.074762,I,Above,Hip,0,5701,Wood,42.32559607,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2905,NJBF000068676,119 MAXWELL AVE,Atlantic City,NJ,39.35738854,-74.44642563,RES3A,3001,,45,NE,1900,1900,3301,2,2,522.6081576,522.6081576,3505,NO,28.95,40.23,3,-1.79,6106,114.292476,123.944365,133.715277,140.076386,I,Above,Gable,0,5701,Wood,34.59163208,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2906,NJBF000068721,128 N IOWA AVE,Atlantic City,NJ,39.3574855,-74.4476325,RES3A,3001,,45,NE,1930,1930,3301,3,4,1393.08168,1393.08168,3505,YES,55.25,67.02,3,0.19,6106,114.265081,123.921472,133.690426,140.055947,I,Above,Hip,0,5701,Wood,61.13510723,0,0,,,,1,1,,0.03,nav,1,1930,3,, 2907,NJBF000065614,54 S LACLEDE PL,Atlantic City,NJ,39.34761536,-74.45998428,RES3A,3001,,17,NE,1900,1900,3301,2,1,1445.435342,1445.435342,3505,NO,29.8,44.63,3,-1.17,6106,114.119717,123.804643,133.555316,140.008833,I,Above,Gable,0,5701,Wood,37.21498085,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2908,NJBF000065686,46 S LACLEDE PL,Atlantic City,NJ,39.34780956,-74.460184,RES3A,3001,,18,NE,1900,1900,3301,2,1,2154.532354,2154.532354,3505,YES,27.1,34.57,3,-0.32,6106,114.112831,123.798928,133.549321,140.00273,I,Above,Gable,0,5701,Wood,30.83468893,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2909,NJBF000069095,3 FAIRMOUNT TERR,Atlantic City,NJ,39.35875594,-74.44435402,RES3B,3001,,33,ME,1900,1900,3301,2,1,657.1949503,657.1949503,3505,YES,35.58,48.72,3,1.67,6106,114.320683,123.967361,133.74152,140.088934,I,Above,Flat,0,NaN,Wood,42.15003767,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2910,NJBF000068711,2524 ARCTIC AVE,Atlantic City,NJ,39.35746737,-74.44390155,RES3B,3001,100,NaN,ME,1969,0,3301,3,1,5664.695097,5664.695097,3505,YES,50.94,56.69,3,7.79,6106,114.34629,123.989299,133.764331,140.114862,I,Above,Flat,0,NaN,Wood,53.81520859,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2911,NJBF000069189,120 N GEORGIA AVE RR #B,Atlantic City,NJ,39.35912206,-74.44275762,RES3B,3001,,17,ME,1900,1900,3301,2,1,767.7821081,767.7821081,3505,NO,23.45,29.5,3,0.66,6106,114.350807,123.992431,133.769199,140.108675,I,Above,Flat,0,NaN,Wood,26.4733151,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2912,NJBF000069148,2514 FAIRMOUNT AVE,Atlantic City,NJ,39.35893724,-74.44436331,RES3B,3001,,33,ME,1900,1900,3301,2,1,1241.103782,1241.103782,3505,NO,45.75,57.1,3,8.68,6106,114.318276,123.965269,133.739393,140.086141,I,Above,Gable,0,NaN,Wood,51.42524363,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2913,NJBF000065639,4201 ATLANTIC AVE,Atlantic City,NJ,39.34767955,-74.45946863,RES3A,3001,29,NaN,NE,1969,1930,3301,3,1,2344.664016,2344.664016,3505,YES,59.95,70.09,3,4.76,6106,114.130151,123.813209,133.564616,140.01595,I,Above,Flat,0,5701,Wood,65.01586056,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2914,NJBF000068684,2625 ARCTIC AVE,Atlantic City,NJ,39.35740612,-74.44513428,RES3A,3001,100,NaN,NE,1969,0,3301,1,1,1990.0925,1990.0925,3505,NO,25.97,36.42,3,8.99,6106,114.320316,123.967606,133.740621,140.096441,I,Above,Gable,0,5701,Wood,31.19651996,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2915,NJBF000068746,105 N CALIFORNIA RR,Atlantic City,NJ,39.35753336,-74.44526228,RES3A,3001,,33,NE,1900,1900,3301,2,1,531.2082632,531.2082632,3505,YES,42.21,49.24,3,4.85,6106,114.315977,123.96393,133.736724,140.092572,I,Above,Gable,0,5701,Wood,45.72221617,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2916,NJBF000070144,112 N VIRGINIA AVE,Atlantic City,NJ,39.36600682,-74.42489045,RES1,3001,,27,NE,2000,2000,3102,2,2,503.0325588,503.0325588,3505,NO,33.36,46.66,3,6.02,6106,114.652441,124.245323,134.052965,140.28937,I,Above,Flat,0,5701,Wood,40.01101419,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2917,NJBF000068543,28 N BELLEVUE AVE,Atlantic City,NJ,39.35705625,-74.44320957,RES3B,3001,,33,ME,1900,1900,3301,3,1,775.2252819,775.2252819,3505,YES,50.51,61.15,3,-0.53,6106,114.366351,124.006233,133.78244,140.131662,I,Above,Flat,0,NaN,Wood,55.82747873,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2918,NJBF000070251,115 N VIRGINIA AVE,Atlantic City,NJ,39.36643205,-74.42402932,RES1,3001,,27,NE,2000,2000,3102,2,2,506.7918097,506.7918097,3505,NO,37.5,45.1,3,-1.13,6106,114.665787,124.256623,134.065827,140.29681,I,Above,Flat,0,5701,Wood,41.29961191,0,0,,,,1,1,,0.03,nav,1,2000,2,, 2919,NJBF000070258,,Atlantic City,NJ,39.36646211,-74.42590943,RES1,3001,,NaN,NE,1969,0,3102,2,1,1825.724517,1825.724517,3505,NO,36.1,50.96,3,6.52,6106,114.625243,124.221917,134.027581,140.267152,I,Above,Gable,0,5701,Wood,43.52908895,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2920,NJBF000068706,2615 ARCTIC AVE,Atlantic City,NJ,39.35745908,-74.44479557,RES3A,3001,,27,NE,1900,1900,3301,2,2,1171.577794,1171.577794,3505,YES,42.09,55.84,3,7.48,6106,114.326998,123.97317,133.746733,140.100969,I,Above,Flat,0,5701,Wood,48.9648393,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2921,NJBF000068519,24 N BELLEVUE AVE,Atlantic City,NJ,39.3569855,-74.4431705,RES3B,3001,,33,ME,1900,1925,3301,2,1,648.2494802,648.2494802,3505,NO,28.63,42.41,3,-2.59,6106,114.368081,124.007705,133.783983,140.133304,I,Above,Gable,0,NaN,Wood,35.52156905,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2922,NJBF000066059,46 N DELANCY PL,Atlantic City,NJ,39.34881278,-74.46276957,RES3A,3001,,17,NE,1900,1900,3301,2,1,1381.204115,1381.204115,3505,NO,29.62,40.17,3,5.68,6106,114.043308,123.741504,133.488262,139.946356,I,Above,Hip,0,5701,Wood,34.89552316,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2923,NJBF000066007,36 N DELANCY PL,Atlantic City,NJ,39.34867309,-74.46262977,RES3A,3001,,45,NE,1900,1900,3301,2,2,998.7449371,998.7449371,3505,NO,33.12,43.05,3,3.83,6106,114.04817,123.745543,133.492498,139.950746,I,Above,Hip,0,5701,Wood,38.08707124,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2924,NJBF000066053,4211 VENTNOR AVE,Atlantic City,NJ,39.34877904,-74.46095446,RES3A,3001,739,NaN,NE,1969,0,3301,1,1,2558.739347,2558.739347,3505,NO,19.56,27.4,3,7.47,6106,114.083538,123.774559,133.523866,139.975814,I,Above,Flat,0,5701,Wood,23.48185454,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2925,NJBF000065987,4200 VENTNOR AVE,Atlantic City,NJ,39.34862385,-74.46024525,RES3A,3001,738,NaN,NE,1969,0,3301,4,1,3954.374328,3954.374328,3505,YES,58,71.88,3,4.95,6106,114.101049,123.789004,133.539317,139.989413,I,Above,Hip,0,5701,Wood,64.94003524,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2926,NJBF000068421,2507 ATLANTIC AVE,Atlantic City,NJ,39.35670274,-74.44230205,COM1,3003,210,NaN,ME,1969,0,3401,1,1,6864.410027,6864.410027,3507,NO,16.46,27.15,1,1.22,6106,114.390378,124.026468,133.804203,140.150936,I,Above,Flat,0,NaN,Wood,21.80531091,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2927,NJBF000069467,25 N OHIO AVE,Atlantic City,NJ,39.36067892,-74.4347517,COM1,3003,,NaN,ME,1969,0,3401,3,1,959.8115419,959.8115419,3507,NO,40.1,50.44,1,2.44,6106,114.504817,124.121461,133.911789,140.211293,I,Above,Flat,0,NaN,Wood,45.26890387,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2928,NJBF000068777,132 N IOWA AVE,Atlantic City,NJ,39.35760646,-74.4477322,RES3A,3001,,45,NE,1900,1900,3301,2,2,1359.407393,1359.407393,3505,NO,26.95,41.53,3,-2.74,6106,114.261433,123.918378,133.687158,140.052595,I,Above,Hip,0,5701,Wood,34.23866897,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2929,NJBF000069786,600 PACIFIC AVE,Atlantic City,NJ,39.363982,-74.417134,RES3C,3004,,NaN,E,1969,0,3303,4,1,2769.437853,2769.437853,3507,NO,48.16,61.25,1,0.9,6106,114.842013,124.40845,134.231095,140.436817,I,Above,Gable,0,NaN,Wood,54.70199265,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2930,NJBF000069777,600 PACIFIC AVE,Atlantic City,NJ,39.36386254,-74.41696732,RES3C,3004,,NaN,E,1969,0,3303,4,1,1453.663406,1453.663406,3507,NO,61.31,75.5,1,-0.38,6106,114.846995,124.41275,134.235725,140.440989,I,Above,Gable,0,NaN,Wood,68.40523176,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2931,NJBF000069732,600 PACIFIC AVE,Atlantic City,NJ,39.3634905,-74.416973,RES3C,3004,,NaN,E,1969,0,3303,3,1,1414.071431,1414.071431,3507,NO,53.02,66.13,1,2.88,6106,114.851357,124.416531,134.239515,140.445969,I,Above,Flat,0,NaN,Wood,59.57555579,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2932,NJBF000069795,600 PACIFIC AVE,Atlantic City,NJ,39.364057,-74.417731,RES3C,3004,,NaN,E,1969,0,3303,3,1,1352.181913,1352.181913,3507,NO,41.65,56.47,1,2.24,6106,114.828416,124.396735,134.21822,140.426661,I,Above,Flat,0,NaN,Wood,49.06278571,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2933,NJBF000069785,600 PACIFIC AVE,Atlantic City,NJ,39.363981,-74.41759,RES3C,3004,,NaN,E,1969,0,3303,3,1,1377.71297,1377.71297,3507,NO,43.18,50.28,1,2.3,6106,114.832329,124.40011,134.221872,140.429855,I,Above,Flat,0,NaN,Wood,46.7294993,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2934,NJBF000069771,600 PACIFIC AVE,Atlantic City,NJ,39.363831,-74.417663,RES3C,3004,,NaN,E,1969,0,3303,4,1,2677.791103,2677.791103,3507,NO,53.01,58.47,1,-0.14,6106,114.83258,124.400339,134.221969,140.430782,I,Above,Gable,0,NaN,Wood,55.74201587,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2935,NJBF000069783,600 PACIFIC AVE,Atlantic City,NJ,39.363949,-74.417831,RES3C,3004,,NaN,E,1969,0,3303,4,1,1297.395902,1297.395902,3507,NO,61.67,75.42,1,1.17,6106,114.827587,124.396032,134.21733,140.426603,I,Above,Flat,0,NaN,Wood,68.54714836,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2936,NJBF000069760,600 PACIFIC AVE,Atlantic City,NJ,39.3637155,-74.417496,RES3C,3004,,NaN,E,1969,0,3303,4,1,1318.513828,1318.513828,3507,NO,54.93,63.57,1,-0.21,6106,114.837527,124.404607,134.226567,140.434916,I,Above,Hip,0,NaN,Wood,59.251489,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2937,NJBF000069815,404 ORIENTAL AVE,Atlantic City,NJ,39.36422628,-74.41402033,RES3A,3001,100,NaN,NE,1969,0,3301,1,1,2284.865722,2284.865722,3505,NO,12.98,23.09,3,-0.14,6106,114.905205,124.46296,134.29167,140.481059,I,Above,Flat,0,5701,Wood,18.03763062,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2938,NJBF000070113,44 N MARYLAND AVE,Atlantic City,NJ,39.36587647,-74.42283687,COM1,3003,100,45,ME,1900,1900,3401,3,4,736.1575516,736.1575516,3507,YES,49.71,60.42,1,1.09,6106,114.697854,124.284256,134.09579,140.323031,I,Above,Hip,0,NaN,Wood,55.06545211,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2939,NJBF000068288,110 N MORRIS AVE,Atlantic City,NJ,39.35623839,-74.4496855,RES3A,3001,,17,NE,1915,1915,3301,2,1,1531.34141,1531.34141,3505,NO,25.19,31.23,3,2.5,6106,114.235789,123.897619,133.663421,140.041989,I,Above,Hip,0,5701,Wood,28.21085324,0,0,,,,1,1,,0.03,nav,1,1915,2,, 2940,NJBF000071736,706 WABASH AVE,Atlantic City,NJ,39.37144682,-74.42364865,RES1,3001,,17,NE,1900,1900,3102,1,1,1267.915986,1267.915986,3505,NO,12.86,27.03,3,-0.84,6106,114.61495,124.211147,134.020143,140.232559,I,Above,Hip,0,5701,Wood,19.94189348,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2941,NJBF000068328,204 N MONTPELIER AVE,Atlantic City,NJ,39.356377,-74.4522665,RES3A,3001,,45,NE,1910,1910,3301,1,3,1799.555364,1799.555364,3507,NO,12.61,27.43,1,0.1,6106,114.177874,123.849441,133.611185,139.999012,I,Above,Gable,0,5701,Wood,20.01903406,0,0,,,,1,1,,0.03,nav,1,1910,1,, 2942,NJBF000068448,114 N BRIGHTON AVE #B,Atlantic City,NJ,39.35679894,-74.44919433,RES3A,3001,565,NaN,NE,1969,0,3301,1,1,41006.69394,41006.69394,3505,NO,26.53,41.52,3,8.52,6106,114.23957,123.900523,133.66705,140.04144,I,Above,Flat,0,5701,Wood,34.02871996,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2943,NJBF000071767,603 ADRIATIC AVE,Atlantic City,NJ,39.37154917,-74.42237401,RES1,3001,,17,NE,1900,1900,3102,1,1,1773.323249,1773.323249,3505,NO,15.39,24.37,3,4.03,6106,114.64095,124.233465,134.044891,140.251156,I,Above,Hip,0,5701,Wood,19.87793762,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2944,NJBF000070268,112 N MARYLAND AVE,Atlantic City,NJ,39.36649064,-74.42370374,RES1,3001,,27,NE,2001,2001,3102,2,2,523.1132549,523.1132549,3505,NO,34.05,45.5,3,-1.85,6106,114.672028,124.261953,134.071763,140.301034,I,Above,Flat,0,5701,Wood,39.77553094,0,0,,,,1,1,,0.03,nav,1,2001,2,, 2945,NJBF000072220,560 N DELAWARE AVE,Atlantic City,NJ,39.37295154,-74.42596578,RES1,3001,,17,NE,1999,1999,3102,1,1,2552.047589,2552.047589,3505,NO,19.74,29.82,3,8.4,6106,114.548055,124.152944,133.957137,140.174781,I,Above,Gable,0,5701,Wood,24.7791004,0,0,,,,1,1,,0.03,nav,1,1999,1,, 2946,NJBF000072203,545 N DELAWARE AVE,Atlantic City,NJ,39.37289586,-74.42552671,RES1,3001,,16,NE,1958,1958,3102,2,1,1109.903789,1109.903789,3505,YES,41.4,55.35,3,7.66,6106,114.558077,124.161578,133.966623,140.182522,I,Above,Hip,0,5701,Wood,48.37628684,0,0,,,,1,1,,0.03,nav,1,1958,2,, 2947,NJBF000072240,719 SEWELL AVE,Atlantic City,NJ,39.373002,-74.4249205,RES1,3001,,17,NE,1955,1955,3102,1,1,1323.582561,1323.582561,3505,NO,15.08,21.49,3,4.54,6106,114.569811,124.171601,133.977779,140.190625,I,Above,Gable,0,5701,Wood,18.28323869,0,0,,,,1,1,,0.03,nav,1,1955,1,, 2948,NJBF000065673,39 N TALLAHASSEE AVE,Atlantic City,NJ,39.3477759,-74.4649236,RES3A,3001,,17,NE,1916,1916,3301,2,1,1335.185638,1335.185638,3505,NO,37.84,43.88,3,8.03,6106,114.009374,123.714028,133.45783,139.927842,I,Above,Hip,0,5701,Wood,40.86104831,0,0,,,,1,1,,0.03,nav,1,1916,2,, 2949,NJBF000065848,106 N TALLAHASSEE AV,Atlantic City,NJ,39.3482681,-74.46579757,RES3A,3001,,17,NE,1900,1900,3301,2,1,1362.163562,1362.163562,3505,NO,29.94,40.12,3,0.8,6106,113.983862,123.692966,133.435574,139.906107,I,Above,Hip,0,5701,Wood,35.02636946,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2950,NJBF000065871,108 N TALLAHASSEE AV,Atlantic City,NJ,39.34832083,-74.46584491,RES3A,3001,,17,NE,1900,1900,3301,2,1,1214.927262,1214.927262,3505,NO,33.81,39.13,3,-2.65,6106,113.982149,123.691544,133.434087,139.904521,I,Above,Hip,0,5701,Wood,36.4699033,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2951,NJBF000065905,110 N TALLAHASSEE AVE,Atlantic City,NJ,39.34841119,-74.46589327,RES3A,3001,,18,NE,1900,1900,3301,2,1,1862.533598,1862.533598,3505,NO,32.72,39.51,3,-2.31,6106,113.979939,123.689703,133.432179,139.902341,I,Above,Gable,0,5701,Wood,36.11460101,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2952,NJBF000069457,1624 ATLANTIC AVE,Atlantic City,NJ,39.36054434,-74.4312497,COM1,3003,100,NaN,ME,1969,0,3401,2,1,2295.278249,2295.278249,3507,YES,25.89,36.98,1,2.66,6106,114.581812,124.186671,133.983221,140.267473,I,Above,Flat,0,NaN,Wood,31.43519926,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2953,NJBF000069459,1622 ATLANTIC AVE,Atlantic City,NJ,39.36057789,-74.43116557,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2676.945856,2676.945856,3507,NO,12.8,25.43,1,1.27,6106,114.583204,124.187842,133.984541,140.268292,I,Above,Flat,0,NaN,Wood,19.11689984,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2954,NJBF000069445,1634 ATLANTIC AVE,Atlantic City,NJ,39.36046437,-74.43147205,COM1,3003,100,NaN,ME,1969,0,3401,3,1,3009.603804,3009.603804,3507,YES,60.77,73.72,1,2.68,6106,114.578013,124.18347,133.97963,140.26517,I,Above,Flat,0,NaN,Wood,67.24314785,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2955,NJBF000065646,35 N TALLAHASSEE AVE,Atlantic City,NJ,39.34769651,-74.46484893,RES3A,3001,,17,NE,1900,1900,3301,2,1,1655.697407,1655.697407,3505,NO,38.7,48.94,3,3.2,6106,114.012038,123.716235,133.46014,139.930271,I,Above,Hip,0,5701,Wood,43.82137769,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2956,NJBF000067412,7 N BOSTON AVE,Atlantic City,NJ,39.35339337,-74.45186911,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,1537.187496,1537.187496,3504,NO,26.22,34.01,-4,0,6106,114.223638,123.888644,133.651246,140.049839,I,Above,Hip,0,NaN,Wood,30.1167225,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2957,NJBF000067452,9 N BOSTON AVE,Atlantic City,NJ,39.35353993,-74.45170459,RES3B,3001,,45,ME,1900,1900,3301,2,2,1154.540688,1154.540688,3504,YES,21.83,36.22,-4,0,6106,114.225372,123.89003,133.652876,140.050233,I,Above,Flat,0,NaN,Wood,29.02855276,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2958,NJBF000064902,15 S JACKSON AVE,Atlantic City,NJ,39.34561583,-74.4660556,RES3B,3001,,18,ME,1900,1900,3301,2,1,2254.853369,2254.853369,3504,YES,36.02,50.45,-4,0,6106,114.012481,123.717207,133.459454,139.94318,I,Above,Flat,0,NaN,Wood,43.23862716,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2959,NJBF000065017,30 S PLAZA PL,Atlantic City,NJ,39.34591897,-74.46487702,RES1,3001,,18,NE,1906,1906,3102,2,1,3423.53304,3423.53304,3504,YES,28.45,40.91,-4,0,6106,114.034415,123.735084,133.478927,139.957305,I,Above,Flat,0,5701,Wood,34.67640899,0,0,,,,1,1,,0.03,nav,1,1906,2,, 2960,NJBF000065049,41 S TALLAHASSEE AVE,Atlantic City,NJ,39.34599893,-74.46345229,RES1,3001,,18,NE,1900,1900,3102,2,1,2986.514599,2986.514599,3504,NO,22.57,37.44,-4,0,6110,114.064628,123.759821,133.505608,139.978697,I,Above,Gable,0,5701,Wood,30.00588608,0,0,,,,1,1,,0.35,nav,1,1900,2,, 2961,NJBF000071318,227 N CONGRESS AVE,Atlantic City,NJ,39.37018534,-74.41975684,RES3D,3004,,17,E,2008,2008,3303,3,1,1075.828457,1075.828457,3505,NO,54.38,61.03,3,8.28,6106,114.712602,124.295696,134.112475,140.311084,I,Above,Flat,0,NaN,Wood,57.70401081,0,0,,,,1,1,,0.03,nav,1,2008,3,, 2962,NJBF000070988,429 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36906569,-74.43080978,RES1,3001,,27,NE,2007,2007,3103,2,2,2068.583485,2068.583485,3505,NO,21.33,29.94,3,0.19,6106,114.489542,124.104978,133.901054,140.153413,I,Above,Hip,0,5701,Wood,25.63842032,0,0,,,,1,1,,0.03,nav,1,2007,2,, 2963,NJBF000070078,1416 MEDITERRANEAN AVE,Atlantic City,NJ,39.36572127,-74.43117137,RES3D,3004,,NaN,E,1969,0,3303,4,1,8245.956719,8245.956719,3505,NO,58.81,68.97,3,-1.17,6106,114.521268,124.133548,133.929619,140.195412,I,Above,Hip,0,NaN,Wood,63.88603744,0,0,,,,1,1,,0.03,nav,1,1969,4,, 2964,NJBF000068966,150 WESTMINSTER AVE,Atlantic City,NJ,39.358187,-74.4279175,COM1,3003,100,NaN,ME,1969,0,3401,3,1,804.7582806,804.7582806,3507,YES,35.6,45.13,1,2.81,6106,114.682149,124.272254,134.074899,140.351585,I,Above,Hip,0,NaN,Wood,40.36872722,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2965,NJBF000070118,212 N TENNESSEE AVE,Atlantic City,NJ,39.36588638,-74.43084177,RES3D,3004,,17,E,2002,2002,3303,2,1,1394.772226,1394.772226,3505,NO,19.33,25.67,3,-2.46,6106,114.526371,124.137819,133.934462,140.198222,I,Above,Gable,0,NaN,Wood,22.50416526,0,0,,,,1,1,,0.03,nav,1,2002,2,, 2966,NJBF000070808,418 N OCEAN AVE,Atlantic City,NJ,39.36851602,-74.43179261,RES1,3001,,45,NE,1900,1900,3103,2,2,1645.64191,1645.64191,3505,NO,33.35,40.36,3,-1.89,6106,114.474894,124.092791,133.887187,140.14574,I,Above,Gable,0,5701,Wood,36.85478822,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2967,NJBF000072118,1500 EMERSON AVE,Atlantic City,NJ,39.3726415,-74.4477805,RES1,3001,,17,NE,1900,1900,3102,1,1,1373.22298,1373.22298,3505,NO,18.25,25.57,3,-0.32,6106,114.082196,123.757712,133.522665,139.827218,I,Above,Gable,0,5701,Wood,21.90667645,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2968,NJBF000070153,213 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36603573,-74.42889991,RES3D,3004,29,NaN,E,1969,0,3303,3,1,1753.393331,1753.393331,3505,YES,41.3,55.02,3,6.48,6106,114.566251,124.171713,133.97189,140.226487,I,Above,Hip,0,NaN,Wood,48.15940318,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2969,NJBF000069001,142 ST JAMES PL,Atlantic City,NJ,39.35831343,-74.42675176,COM1,3003,100,NaN,ME,1969,0,3401,1,1,7909.66828,7909.66828,3507,YES,16.53,28.72,1,0.45,6106,114.705595,124.292174,134.096934,140.36764,I,Above,Flat,0,NaN,Wood,22.62341071,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2970,NJBF000070948,625 N KENTUCKY AVE,Atlantic City,NJ,39.36895371,-74.43561152,RES1,3001,,16,NE,1900,1900,3101,1,1,1315.800446,1315.800446,3505,NO,16.05,24.55,3,0.09,6106,114.387661,124.018438,133.805812,140.078834,I,Above,Gable,0,5701,Wood,20.30051116,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2971,NJBF000067612,106 S TEXAS AVE,Atlantic City,NJ,39.3539584,-74.44200195,RES3A,3004,,45,NE,1925,1925,3301,3,3,1634.796321,1634.796321,3505,YES,56.82,62.39,3,-0.25,6106,114.43096,124.061189,133.839514,140.195137,I,Above,Hip,0,5701,Wood,59.60169657,0,0,,,,1,1,,0.03,nav,1,1925,3,, 2972,NJBF000067521,105 S CALIFORNIA AVE,Atlantic City,NJ,39.3537181,-74.44297834,RES3A,3004,100,NaN,NE,1969,0,3301,3,8,1924.649437,1924.649437,3505,NO,56.08,62.01,3,-0.97,6106,114.412813,124.046065,133.822789,140.183529,I,Above,Hip,0,5701,Wood,59.04771058,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2973,NJBF000066208,112 N BARTRAM AVE,Atlantic City,NJ,39.34919491,-74.46418125,RES3A,3001,,17,NE,1900,1900,3301,2,1,1229.656918,1229.656918,3505,NO,36.52,51.21,3,6.75,6106,114.007473,123.711972,133.456764,139.917804,I,Above,Gable,0,5701,Wood,43.8643656,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2974,NJBF000067037,STENTON PLACE STREET END,Atlantic City,NJ,39.35177602,-74.44432832,COM8,3003,,NaN,ME,1969,0,3401,1,1,1294.329156,1294.329156,3507,NO,20.9,27.17,1,1.92,6102,114.407926,124.042392,133.816907,140.190654,I,Above,Hip,0,NaN,Wood,24.03333339,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2975,NJBF000067375,2517 BOARDWALK,Atlantic City,NJ,39.35327062,-74.44064208,RES4,3003,100,NaN,E,1969,0,3404,1,1,3723.956438,3723.956438,3507,NO,13.89,22.62,1,1.61,6106,114.468997,124.093175,133.873746,140.225876,I,Above,Gable,0,NaN,Wood,18.25513973,0,0,,,,2,2,,0.03,nav,1,1969,1,, 2976,NJBF000067046,103 N HARRISBURG AVE,Atlantic City,NJ,39.35182191,-74.45788261,RES3A,3001,,17,NE,1900,1900,3301,2,1,2320.89449,2320.89449,3505,NO,30.44,41.11,3,0.99,6106,114.112078,123.796979,133.550617,139.97833,I,Above,Gable,0,5701,Wood,35.77930308,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2977,NJBF000067067,103 N HARRISBURG AVE,Atlantic City,NJ,39.35192292,-74.45797487,RES3A,3001,,17,NE,1900,1900,3301,2,1,1880.978657,1880.978657,3505,NO,37.18,44.41,3,3.37,6106,114.108792,123.794229,133.547727,139.975333,I,Above,Hip,0,5701,Wood,40.79429047,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2978,NJBF000066098,120 N ABERDEEN PL,Atlantic City,NJ,39.3489015,-74.465311,RES3A,3001,,17,NE,1900,1900,3301,1,1,1880.803724,1880.803724,3505,NO,19.52,31.67,3,2.63,6106,113.986434,123.694841,133.438093,139.904125,I,Above,Flat,0,5701,Wood,25.59624665,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2979,NJBF000066712,4127 WINCHESTER AVE,Atlantic City,NJ,39.3505453,-74.46091897,RES3A,3001,,17,NE,1900,1900,3301,2,1,706.133166,706.133166,3505,NO,20.98,27.58,3,-2.59,6106,114.061787,123.756059,133.505371,139.94937,I,Above,Hip,0,5701,Wood,24.27686123,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2980,NJBF000066314,126 N BARTRAM AVE,Atlantic City,NJ,39.349456,-74.464387,RES3A,3001,,17,NE,1920,1920,3301,2,1,1473.778614,1473.778614,3505,NO,31.04,43,3,-2.64,6106,113.999617,123.705433,133.449932,139.910432,I,Above,Hip,0,5701,Wood,37.02160697,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2981,NJBF000066219,46 S ELBERON AVE,Atlantic City,NJ,39.34921873,-74.45707363,RES3A,3001,,17,NE,1900,1900,3301,3,1,1310.23463,1310.23463,3504,NO,37.79,44.41,-4,0,6106,114.162806,123.839687,133.594572,140.030401,I,Above,Hip,0,5701,Wood,41.09830222,0,0,,,,1,1,,0.03,nav,1,1900,3,, 2982,NJBF000066229,31 N RALEIGH AVE,Atlantic City,NJ,39.34924779,-74.46168792,RES3A,3001,,45,NE,1900,1900,3301,2,2,2295.0757,2295.0757,3505,YES,39.82,45.76,3,8.61,6106,114.061459,123.75626,133.504525,139.95696,I,Above,Gable,0,5701,Wood,42.78887267,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2983,NJBF000066233,52 N RALEIGH AVE,Atlantic City,NJ,39.34925408,-74.4622549,RES3A,3001,,45,NE,1900,1900,3301,2,2,1029.743213,1029.743213,3505,YES,33.58,43.96,3,-2.05,6106,114.048956,123.745989,133.493457,139.947811,I,Above,Flat,0,5701,Wood,38.77025364,0,0,,,,1,1,,0.03,nav,1,1900,2,, 2984,NJBF000066188,48 N RALEIGH AVE,Atlantic City,NJ,39.34914884,-74.4621692,RES3A,3001,,27,NE,1920,1920,3301,2,2,1860.357211,1860.357211,3505,YES,43.34,58.18,3,5.9,6106,114.052183,123.748676,133.496267,139.950799,I,Above,Flat,0,5701,Wood,50.75955529,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2985,NJBF000066603,124 N RALEIGH AVE,Atlantic City,NJ,39.35020836,-74.46299982,RES3A,3001,761,NaN,NE,1969,0,3301,1,1,1398.425067,1398.425067,3505,NO,18.93,33.85,3,-0.55,6106,114.020459,123.722236,133.468627,139.921155,I,Above,Flat,0,5701,Wood,26.39018224,0,0,,,,1,1,,0.03,nav,1,1969,1,, 2986,NJBF000067854,9 N MORRIS AVE,Atlantic City,NJ,39.35479003,-74.44792114,RES3B,3001,,45,ME,1900,1900,3301,1,3,660.3225385,660.3225385,3504,NO,15.01,26.88,-4,0,6106,114.292141,123.945074,133.713785,140.091129,I,Above,Gable,0,NaN,Wood,20.9461196,0,0,,,,1,1,,0.03,nav,1,1900,1,, 2987,NJBF000067820,2901 ATLANTIC AVE,Atlantic City,NJ,39.3546393,-74.4473769,COM1,3003,100,NaN,ME,1969,0,3401,3,1,1880.289266,1880.289266,3507,NO,38.67,50.49,1,0.66,6106,114.305846,123.956539,133.726125,140.101852,I,Above,Hip,0,NaN,Wood,44.58088639,0,0,,,,1,1,,0.03,nav,1,1969,3,, 2988,NJBF000068216,38 N STENTON PL,Atlantic City,NJ,39.35602691,-74.44731818,RES3B,3001,,45,ME,1910,1910,3301,2,2,1206.722146,1206.722146,3504,NO,25.64,37.39,-4,0,6106,114.289899,123.942756,133.712348,140.082396,I,Above,Hip,0,NaN,Wood,31.51409462,0,0,,,,1,1,,0.03,nav,1,1910,2,, 2989,NJBF000070270,,Atlantic City,NJ,39.36650592,-74.42560416,RES1,3001,,NaN,NE,1969,0,3102,2,1,1866.75238,1866.75238,3505,NO,34.38,43.55,3,-2.7,6106,114.631244,124.227034,134.033263,140.271285,I,Above,Gable,0,5701,Wood,38.96228175,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2990,NJBF000065828,120 JOHN A SEEDORF LN,Atlantic City,NJ,39.34819721,-74.45594693,RES3A,3001,,18,NE,2006,2006,3301,3,1,2154.574659,2154.574659,3504,NO,55.02,62.96,-4,0,6106,114.200507,123.871054,133.62757,140.063295,I,Above,Hip,0,5701,Wood,58.99058968,0,0,,,,1,1,,0.03,nav,1,2006,3,, 2991,NJBF000065676,117 S DOVER AVE,Atlantic City,NJ,39.3477869,-74.45610254,RES3A,3001,,18,NE,1996,1996,3301,2,1,1850.34911,1850.34911,3504,NO,33.99,45,-4,0,6106,114.202362,123.872678,133.628951,140.066964,I,Above,Gable,0,5701,Wood,39.4926663,0,0,,,,1,1,,0.03,nav,1,1996,2,, 2992,NJBF000071098,137 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3694025,-74.418361,RES3D,3004,,17,E,2004,2004,3303,2,1,1174.375469,1174.375469,3505,NO,31.36,38.36,3,0.91,6106,114.751482,124.329466,134.149107,140.343626,I,Above,Flat,0,NaN,Wood,34.85926149,0,0,,,,1,1,,0.03,nav,1,2004,2,, 2993,NJBF000064993,135 S DELANCY PL,Atlantic City,NJ,39.34585815,-74.45985867,RES3A,3001,,17,NE,1950,1950,3301,1,1,2878.95362,2878.95362,3504,YES,14.97,23.96,-4,0,6106,114.14515,123.825966,133.576743,140.037279,I,Above,Gable,0,5701,Wood,19.4667207,0,0,,,,1,1,,0.03,nav,1,1950,1,, 2994,NJBF000065233,111 S DELANCY PL,Atlantic City,NJ,39.34646247,-74.46036039,RES3A,3001,,18,NE,1920,1920,3301,2,1,1995.34298,1995.34298,3504,YES,24.41,39.13,-4,0,6106,114.126362,123.810391,133.560493,140.020352,I,Above,Hip,0,5701,Wood,31.77165298,0,0,,,,1,1,,0.03,nav,1,1920,2,, 2995,NJBF000070964,119 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36898818,-74.41807959,RES3D,3004,,17,E,2004,2004,3303,2,1,1378.803752,1378.803752,3505,NO,31.87,42.33,3,7.17,6106,114.762328,124.338933,134.15919,140.353692,I,Above,Flat,0,NaN,Wood,37.1020873,0,0,,,,1,1,,0.03,nav,1,2004,2,, 2996,NJBF000070987,16 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36906232,-74.41384098,RES3D,3004,,17,E,1999,1999,3303,2,1,1197.80386,1197.80386,3505,NO,33.24,46.8,3,6.92,6106,114.851424,124.415982,134.244595,140.418221,I,Above,Hip,0,NaN,Wood,40.01839937,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 2997,NJBF000065928,3920 ATLANTIC AVE,Atlantic City,NJ,39.34846916,-74.45664119,RES3A,3001,738,NaN,NE,1969,0,3301,2,1,2759.381885,2759.381885,3504,NO,34.61,47.29,-4,0,6106,114.18186,123.855603,133.61111,140.048413,I,Above,Hip,0,5701,Wood,40.95013066,0,0,,,,1,1,,0.03,nav,1,1969,2,, 2998,NJBF000069724,16 S VIRGINIA AVE,Atlantic City,NJ,39.36339288,-74.42284752,COM1,3003,100,NaN,ME,1950,0,3401,3,1,678.7673129,678.7673129,3507,YES,54.11,62.84,1,-0.04,6106,114.727349,124.310056,134.121825,140.357255,I,Above,Flat,0,NaN,Wood,58.47246279,0,0,,,,1,1,,0.03,nav,1,1950,3,, 2999,NJBF000070821,6 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36854321,-74.41356383,RES3D,3004,,NaN,E,1999,0,3303,3,1,4082.636337,4082.636337,3505,NO,30.97,43.88,3,-1.26,6106,114.86342,124.426457,134.25569,140.429551,I,Above,Hip,0,NaN,Wood,37.42431196,0,0,,,,1,1,,0.03,nav,1,1999,3,, 3000,NJBF000069707,24 S VIRGINIA AVE,Atlantic City,NJ,39.36314409,-74.42271234,COM1,3003,,NaN,ME,1969,0,3401,2,1,2098.265109,2098.265109,3507,NO,26.13,36.68,1,1.37,6106,114.733251,124.315152,134.127196,140.362785,I,Above,Flat,0,NaN,Wood,31.40627171,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3001,NJBF000069447,1513 BELFIELD AVE,Atlantic City,NJ,39.36047912,-74.42950507,COM1,3003,100,33,ME,1900,1900,3401,3,1,5566.019166,5566.019166,3507,YES,59.29,73.16,1,1.82,6106,114.620082,124.21916,134.018853,140.295308,I,Above,Flat,0,NaN,Wood,66.22730121,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3002,NJBF000068175,26 S GEORGIA AVE REAR,Atlantic City,NJ,39.35589972,-74.44056204,COM1,3003,,27,ME,1915,1915,3401,2,2,1414.686553,1414.686553,3507,NO,31.82,40.41,1,-0.54,6106,114.437977,124.066594,133.847268,140.189514,I,Above,Hip,0,NaN,Wood,36.1125059,0,0,,,,1,1,,0.03,nav,1,1915,2,, 3003,NJBF000068299,2422 ATLANTIC AVE RR,Atlantic City,NJ,39.35626963,-74.44124889,COM1,3003,100,NaN,ME,1969,0,3401,1,1,27674.02761,27674.02761,3507,NO,21.18,27.84,1,2.16,6106,114.418529,124.050187,133.829698,140.17355,I,Above,Flat,0,NaN,Wood,24.50968159,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3004,NJBF000067904,2511 PACIFIC AVE,Atlantic City,NJ,39.35495791,-74.44149686,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,1206.941384,1206.941384,3505,YES,51.33,60.7,3,2.62,6106,114.429432,124.059674,133.838819,140.188579,I,Above,Flat,0,5701,Wood,56.01615121,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3005,NJBF000069807,13 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36414617,-74.42432131,COM1,3003,51,NaN,ME,1969,0,3401,1,1,5498.808592,5498.808592,3507,NO,14.42,27.13,1,1,6106,114.686834,124.275235,134.084168,140.324115,I,Above,Flat,0,NaN,Wood,20.77812796,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3006,NJBF000069757,110 REV DR ISAAC S COLE,Atlantic City,NJ,39.36371077,-74.42995003,RES3D,3004,,NaN,E,1969,0,3303,2,1,6995.127469,6995.127469,3505,NO,38.63,47.09,3,3.31,6106,114.571485,124.176991,133.975577,140.242964,I,Above,Flat,0,NaN,Wood,42.86273653,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3007,NJBF000065535,41 S DELANCY PL,Atlantic City,NJ,39.34737414,-74.46106685,RES3A,3001,,47,NE,1900,1900,3301,3,2,1243.064252,1243.064252,3505,YES,38.19,52.46,3,-0.62,6106,114.099109,123.787767,133.536905,139.995419,I,Above,Hip,0,5701,Wood,45.32558724,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3008,NJBF000067814,340 N TRENTON AVE,Atlantic City,NJ,39.35461096,-74.45901888,RES1,3001,,17,NE,1900,1900,3102,2,1,862.0612655,862.0612655,3505,NO,25.19,39.64,3,2.53,6106,114.052261,123.746409,133.498143,139.917591,I,Above,Hip,0,5701,Wood,32.41457415,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3009,NJBF000067811,3908 PORTER AVE,Atlantic City,NJ,39.3546005,-74.4604835,RES1,3001,,17,NE,1920,1920,3102,2,1,1175.642783,1175.642783,3505,NO,27.45,33.5,3,0.01,6106,114.020342,123.720115,133.469712,139.894071,I,Above,Flat,0,5701,Wood,30.47138381,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3010,NJBF000065152,1 N JACKSON AVE,Atlantic City,NJ,39.34626589,-74.46661514,RES3A,3001,,17,NE,1925,1925,3301,2,1,1637.494325,1637.494325,3505,NO,41.38,51.44,3,4.57,6106,113.991766,123.700081,133.441598,139.924118,I,Above,Hip,0,5701,Wood,46.41012868,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3011,NJBF000064724,35 S JACKSON AVE,Atlantic City,NJ,39.3451668,-74.46570535,RES3B,3001,,17,ME,1921,1921,3301,1,1,2329.401291,2329.401291,3504,NO,10.84,21.22,-4,0,6106,114.02603,123.728408,133.471107,139.955727,I,Above,Hip,0,NaN,Wood,16.02704136,0,0,,,,1,1,,0.03,nav,1,1921,1,, 3012,NJBF000065193,25 N JACKSON AVE,Atlantic City,NJ,39.34636684,-74.46668886,RES3A,3001,,45,NE,1920,1920,3301,2,2,1333.868658,1333.868658,3505,NO,27.78,40.36,3,-3,6106,113.988831,123.697651,133.43907,139.921354,I,Above,Gable,0,5701,Wood,34.06991727,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3013,NJBF000068214,2303 PACIFIC AVE,Atlantic City,NJ,39.35602511,-74.43883812,COM1,3003,100,NaN,ME,1969,0,3401,3,1,3361.41821,3361.41821,3507,YES,31.33,43.94,1,-0.19,6106,114.47371,124.096554,133.880124,140.214368,I,Above,Flat,0,NaN,Wood,37.63872812,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3014,NJBF000066633,3822 VENTNOR AVE,Atlantic City,NJ,39.35030795,-74.45681339,COM1,3004,565,NaN,ME,1969,0,3401,3,1,1180.601002,1180.601002,3507,YES,57.8,71.23,1,0.15,6106,114.154641,123.832623,133.587884,140.018144,I,Above,Gable,0,NaN,Wood,64.51796685,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3015,NJBF000065368,47 S BARTRAM AVE,Atlantic City,NJ,39.34687486,-74.46180016,RES3A,3001,,45,NE,1900,1900,3301,3,2,2085.873323,2085.873323,3505,YES,48.13,57.31,3,-0.63,6106,114.089491,123.78,133.528099,139.991438,I,Above,Hip,0,5701,Wood,52.71891306,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3016,NJBF000065280,24 S ABERDEEN PL,Atlantic City,NJ,39.34661096,-74.4635746,RES1,3001,,45,NE,1925,1925,3102,2,2,1664.223207,1664.223207,3504,NO,27.2,41.62,-4,0,6106,114.054002,123.750951,133.496588,139.967365,I,Above,Hip,0,5701,Wood,34.41089202,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3017,NJBF000070908,126 N CONGRESS AVE,Atlantic City,NJ,39.36882464,-74.41917823,RES3D,3004,,17,E,2006,2006,3303,2,1,807.9325105,807.9325105,3505,NO,28.76,35.58,3,6.76,6106,114.740897,124.320491,134.138632,140.338909,I,Above,Hip,0,NaN,Wood,32.16862618,0,0,,,,1,1,,0.03,nav,1,2006,2,, 3018,NJBF000066096,4437 WINCHESTER AVE,Atlantic City,NJ,39.34889722,-74.46438846,RES3A,3001,,17,NE,1900,1900,3301,2,1,1912.221176,1912.221176,3505,NO,28.74,35.48,3,5.78,6106,114.006744,123.711484,133.456,139.919087,I,Above,Hip,0,5701,Wood,32.11242806,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3019,NJBF000066045,100 N KINGSTON AVE,Atlantic City,NJ,39.348758,-74.4646625,RES3A,3001,,17,NE,1900,1900,3301,1,1,1331.980299,1331.980299,3505,NO,20.88,28.53,3,1.96,6106,114.002489,123.708048,133.45219,139.916812,I,Above,Gable,0,5701,Wood,24.70199914,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3020,NJBF000066068,113 N ABERDEEN PL,Atlantic City,NJ,39.34883264,-74.46481116,RES3A,3001,,17,NE,1959,1959,3301,1,1,1953.931378,1953.931378,3505,NO,23.02,32.93,3,4.36,6106,113.99828,123.704571,133.448509,139.91326,I,Above,Gable,0,5701,Wood,27.97745686,0,0,,,,1,1,,0.03,nav,1,1959,1,, 3021,NJBF000067525,17 N BOSTON AVE,Atlantic City,NJ,39.35373193,-74.45203884,RES3B,3001,,45,ME,1900,1900,3301,2,4,1526.158477,1526.158477,3504,NO,35.43,47.03,-4,0,6106,114.215691,123.88193,133.64425,140.04212,I,Above,Hip,0,NaN,Wood,41.23096353,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3022,NJBF000066005,4503 WINCHESTER AVE,Atlantic City,NJ,39.3486706,-74.46475956,RES3A,3001,,18,NE,1925,1925,3301,2,1,1917.00303,1917.00303,3505,NO,34.61,43.23,3,-2.38,6106,114.001476,123.707248,133.45126,139.916598,I,Above,Gable,0,5701,Wood,38.91925341,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3023,NJBF000066018,116 N ABERDEEN PL,Atlantic City,NJ,39.34869978,-74.46520009,RES3A,3001,,17,NE,1900,1900,3301,2,1,2935.687998,2935.687998,3505,NO,29.05,41.78,3,4.11,6106,113.991446,123.699021,133.442431,139.909047,I,Above,Hip,0,5701,Wood,35.41254155,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3024,NJBF000066014,,Atlantic City,NJ,39.34869376,-74.46568855,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1570.30213,1570.30213,3505,NO,11.05,25.53,3,-0.59,6106,113.980787,123.690294,133.433038,139.901232,I,Above,Gable,0,5701,Wood,18.2855344,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3025,NJBF000067174,3515 VENTNOR AVE,Atlantic City,NJ,39.35244,-74.4536295,COM3,3003,560,NaN,ME,1969,0,3401,2,1,9708.590775,9708.590775,3507,NO,35.92,49.45,1,2.85,6106,114.197197,123.867076,133.627028,140.036328,I,Above,Flat,0,NaN,Wood,42.68539955,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3026,NJBF000067245,5 N HARTFORD AVE,Atlantic City,NJ,39.35272672,-74.45400091,RES3B,3001,,45,E,1920,1920,3303,3,2,1252.65477,1252.65477,3507,YES,51.55,60.98,1,1.19,6106,114.185494,123.857286,133.616663,140.02619,I,Above,Hip,0,NaN,Wood,56.26471692,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3027,NJBF000067228,57 N ALBANY AVE,Atlantic City,NJ,39.35267008,-74.45554183,RES3B,3001,,45,E,1900,1900,3303,2,2,1250.122668,1250.122668,3507,YES,36.29,49.72,1,-0.67,6106,114.152567,123.830076,133.587135,140.002681,I,Above,Gable,0,NaN,Wood,43.00255977,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3028,NJBF000067259,3632 WINCHESTER AVE,Atlantic City,NJ,39.3528,-74.45552,RES3B,3001,,27,E,1915,1900,3303,2,2,2793.15722,2793.15722,3507,YES,34.99,44.21,1,0.02,6106,114.151414,123.829072,133.586158,140.001072,I,Above,Flat,0,NaN,Wood,39.59744275,0,0,,,,1,1,,0.03,nav,1,1915,2,, 3029,NJBF000067178,26 N HARTFORD AVE,Atlantic City,NJ,39.35245297,-74.45435983,RES3B,3001,,27,E,1900,1900,3303,2,2,1576.798064,1576.798064,3507,YES,27.98,42.08,1,-0.74,6106,114.181103,123.853753,133.612601,140.024628,I,Above,Flat,0,NaN,Wood,35.02976639,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3030,NJBF000067220,36 N HARTFORD AVE,Atlantic City,NJ,39.3526355,-74.4545215,RES3B,3001,,45,E,1915,1915,3303,2,3,1882.557216,1882.557216,3507,YES,30.65,41.82,1,1.14,6106,114.175301,123.848886,133.607482,140.01936,I,Above,Flat,0,NaN,Wood,36.23657841,0,0,,,,1,1,,0.03,nav,1,1915,2,, 3031,NJBF000067188,7 N ST DAVIDS PL,Atlantic City,NJ,39.35249044,-74.45467549,RES3B,3001,,45,E,1900,1900,3303,2,4,1573.870161,1573.870161,3507,NO,33.41,42.98,1,2.86,6106,114.173762,123.847667,133.606038,140.019101,I,Above,Gable,0,NaN,Wood,38.19445701,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3032,NJBF000067265,46 N HARTFORD AVE,Atlantic City,NJ,39.35282142,-74.45466908,RES3B,3001,,27,E,1915,1915,3303,2,2,1845.426099,1845.426099,3507,YES,38.58,53.34,1,0.67,6106,114.169734,123.844211,133.602574,140.01423,I,Above,Flat,0,NaN,Wood,45.95649371,0,0,,,,1,1,,0.03,nav,1,1915,2,, 3033,NJBF000068550,9 N FLORIDA AVE,Atlantic City,NJ,39.35707865,-74.44203261,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,2317.011687,2317.011687,3505,YES,51.16,61.5,3,2.66,6106,114.391568,124.027342,133.8055,140.149684,I,Above,Flat,0,NaN,Wood,56.32905172,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3034,NJBF000068569,2425 ATLANTIC AVE,Atlantic City,NJ,39.35714067,-74.44174971,COM1,3003,100,NaN,ME,1969,0,3401,1,1,3890.146432,3890.146432,3507,NO,15.28,21.93,1,1.17,6106,114.396932,124.031817,133.810443,140.153195,I,Above,Flat,0,NaN,Wood,18.60745884,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3035,NJBF000070717,507 GRAMMERCY PL,Atlantic City,NJ,39.36817,-74.4183835,RES3D,3004,,17,E,1900,1900,3303,2,1,957.652458,957.652458,3505,NO,29.44,40.18,3,-1.14,6106,114.765514,124.341878,134.161665,140.360248,I,Above,Gable,0,NaN,Wood,34.81206079,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3036,NJBF000070555,619 ARCTIC AVE,Atlantic City,NJ,39.36756181,-74.41991779,RES3D,3004,,17,E,1910,1910,3303,3,1,1575.490785,1575.490785,3505,YES,55.2,70.18,3,1.73,6106,114.740063,124.320095,134.136992,140.344882,I,Above,Gable,0,NaN,Wood,62.69256176,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3037,NJBF000070524,42 N CONNECTICUT AVE,Atlantic City,NJ,39.36746392,-74.4191398,RES3D,3004,,17,E,1969,1900,3303,2,1,724.5552252,724.5552252,3505,YES,28.63,39.59,3,0.12,6106,114.757784,124.335377,134.153793,140.358275,I,Above,Flat,0,NaN,Wood,34.11231142,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3038,NJBF000070019,32 N MARYLAND AVE,Atlantic City,NJ,39.36550792,-74.42266192,COM1,3003,,45,ME,1900,1900,3401,2,2,3216.291376,3216.291376,3507,YES,31.68,39.07,1,1.1,6106,114.705976,124.29131,134.10322,140.330845,I,Above,Gable,0,NaN,Wood,35.37583353,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3039,NJBF000069603,1810 BALTIC AVE,Atlantic City,NJ,39.3620295,-74.4354485,COM1,3003,959,NaN,ME,1969,0,3401,3,1,11243.72296,11243.72296,3507,YES,46.55,58.33,1,2.05,6106,114.473457,124.094491,133.883447,140.181154,I,Above,Flat,0,NaN,Wood,52.4365559,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3040,NJBF000069552,1924 BALTIC AVE,Atlantic City,NJ,39.36154266,-74.43634656,COM1,3003,101,NaN,ME,1969,0,3401,1,1,69551.62739,69551.62739,3507,NO,18.78,29.22,1,2.18,6106,114.459969,124.083283,133.870724,140.174087,I,Above,Flat,0,NaN,Wood,24.00013304,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3041,NJBF000069504,1924 BALTIC AVE,Atlantic City,NJ,39.36103348,-74.43646688,COM1,3003,101,NaN,ME,1969,0,3401,1,1,7712.743386,7712.743386,3507,NO,17.59,23.29,1,1.84,6106,114.463554,124.086497,133.873788,140.179525,I,Above,Flat,0,NaN,Wood,20.43591605,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3042,NJBF000068790,18 N GEORGIA AVE,Atlantic City,NJ,39.35762706,-74.44126128,RES3B,3001,,45,ME,1900,1900,3301,3,3,969.7946184,969.7946184,3505,YES,60.48,66.65,3,3.52,6106,114.401538,124.035519,133.814928,140.153787,I,Above,Flat,0,NaN,Wood,63.56587517,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3043,NJBF000068798,2319 ATLANTIC AVE,Atlantic City,NJ,39.3576445,-74.4403955,COM1,3003,738,NaN,ME,1969,0,3401,3,1,761.9321647,761.9321647,3507,YES,49.43,60.04,1,1.42,6106,114.420069,124.05106,133.831923,140.167024,I,Above,Flat,0,NaN,Wood,54.73464498,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3044,NJBF000068617,2614 ARCTIC AVE,Atlantic City,NJ,39.35724976,-74.44448572,RES3B,3001,212,NaN,ME,1969,0,3301,2,1,1567.373268,1567.373268,3505,NO,37.39,44.07,3,-0.57,6106,114.336295,123.981021,133.755111,140.108882,I,Above,Flat,0,NaN,Wood,40.72874001,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3045,NJBF000068953,,Atlantic City,NJ,39.3581385,-74.4422815,RES3B,3001,,NaN,ME,1900,0,3301,2,1,1679.238475,1679.238475,3505,NO,27.85,41.22,3,-2.87,6106,114.373145,124.011535,133.789195,140.130433,I,Above,Hip,0,NaN,Wood,34.53701464,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3046,NJBF000068371,13 CHURCH ST,Atlantic City,NJ,39.35653391,-74.44413044,REL1,3004,,45,ME,1900,1900,3401,2,2,793.5584719,793.5584719,3507,NO,39.62,46.31,1,1.55,6106,114.352844,123.995115,133.769844,140.124889,I,Above,Flat,0,NaN,Wood,42.96214729,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3047,NJBF000068958,,Atlantic City,NJ,39.35814878,-74.44162684,RES3B,3001,,NaN,ME,1930,0,3301,2,1,715.9996273,715.9996273,3505,NO,37.91,47.08,3,3.39,6106,114.387206,124.023319,133.802073,140.140525,I,Above,Flat,0,NaN,Wood,42.49741221,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3048,NJBF000068439,2808 DENNY ST,Atlantic City,NJ,39.35676849,-74.44740719,RES3A,3001,,27,NE,1900,1900,3301,2,2,1392.061731,1392.061731,3505,NO,30.23,38.22,3,-1.81,6106,114.278811,123.933222,133.702609,140.070088,I,Above,Hip,0,5701,Wood,34.22406533,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3049,NJBF000068783,2518 ARCTIC AVE,Atlantic City,NJ,39.35761242,-74.44368167,RES3B,3001,,45,ME,1900,1900,3301,2,2,868.8680235,868.8680235,3505,NO,31.32,39.65,3,2.56,6106,114.349278,123.991744,133.767127,140.116193,I,Above,Hip,0,NaN,Wood,35.48696156,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3050,NJBF000066210,4409 WINCHESTER AVE,Atlantic City,NJ,39.34919959,-74.46369985,RES3A,3001,,17,NE,1900,1900,3301,2,1,1384.120959,1384.120959,3505,NO,30.61,35.8,3,-2.65,6106,114.017961,123.720571,133.466028,139.92547,I,Above,Gable,0,5701,Wood,33.20450995,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3051,NJBF000067952,103 N MONTPELIER AVE,Atlantic City,NJ,39.3551492,-74.45088986,RES3A,3001,,45,NE,1920,1920,3301,2,2,1997.934395,1997.934395,3505,NO,32.45,45.63,3,5.52,6106,114.223068,123.887499,133.651505,140.039155,I,Above,Hip,0,5701,Wood,39.03951817,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3052,NJBF000067721,358 N ELBERON AVE,Atlantic City,NJ,39.35427558,-74.4611631,RES1,3001,,17,NE,1900,1900,3102,1,1,1207.614104,1207.614104,3505,NO,18.8,33.49,3,0.77,6106,114.009482,123.711346,133.459997,139.88803,I,Above,Hip,0,5701,Wood,26.14479202,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3053,NJBF000068118,119 N MONTPELIER AVE,Atlantic City,NJ,39.35570369,-74.45125252,RES3A,3001,,16,NE,1900,1900,3301,1,1,1559.278371,1559.278371,3505,NO,15.98,21.9,3,-0.65,6106,114.208275,123.874982,133.638372,140.025151,I,Above,Hip,0,5701,Wood,18.93957963,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3054,NJBF000068145,121 N MONTPELIER AVE #B,Atlantic City,NJ,39.35579867,-74.45122991,RES3A,3001,,17,NE,2006,2006,3301,2,1,1173.971014,1173.971014,3505,NO,26.34,41.08,3,-1.98,6106,114.207599,123.87438,133.637797,140.024099,I,Above,Flat,0,5701,Wood,33.70613013,0,0,,,,1,1,,0.03,nav,1,2006,2,, 3055,NJBF000067921,101 N MONTPELIER AVE,Atlantic City,NJ,39.35504085,-74.45082076,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,1345.714491,1345.714491,3505,NO,27.75,35.73,3,5.68,6106,114.225912,123.889906,133.654027,140.041849,I,Above,Hip,0,5701,Wood,31.7406099,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3056,NJBF000068047,104 N CHELSEA AVE,Atlantic City,NJ,39.35545409,-74.45040236,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,1810.039986,1810.039986,3505,NO,38.12,49.07,3,1.56,6106,114.229909,123.893059,133.657803,140.042324,I,Above,Hip,0,5701,Wood,43.59891537,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3057,NJBF000068021,102 N CHELSEA AVE,Atlantic City,NJ,39.35536144,-74.45035791,RES3A,3001,,17,NE,1900,1900,3301,2,1,1735.327686,1735.327686,3505,NO,36.63,44.31,3,1.88,6106,114.232021,123.894851,133.659672,140.0444,I,Above,Hip,0,5701,Wood,40.47034945,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3058,NJBF000070864,1114 ADRIATIC AVE,Atlantic City,NJ,39.3686855,-74.4284465,RES1,3001,,NaN,NE,2002,0,3103,2,1,1777.630457,1777.630457,3505,NO,33.51,42.77,3,6.01,6106,114.544666,124.152186,133.952717,140.196086,I,Above,Hip,0,5701,Wood,38.13853487,0,0,,,,1,1,,0.03,nav,1,2002,2,, 3059,NJBF000069123,216 N CALIFORNIA AVE,Atlantic City,NJ,39.35884979,-74.44688056,RES3A,3001,,17,NE,1900,1900,3301,2,1,2510.860039,2510.860039,3505,NO,26.09,36.97,3,4.38,6106,114.264686,123.920522,133.690531,140.047669,I,Above,Hip,0,5701,Wood,31.52870575,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3060,NJBF000071788,518 ADRIATIC AVE,Atlantic City,NJ,39.37162626,-74.42119224,RES1,3001,,33,NE,1900,1930,3102,2,1,2018.830379,2018.830379,3505,YES,43.81,56.92,3,7.88,6106,114.665235,124.254347,134.068044,140.268618,I,Above,Hip,0,5701,Wood,50.36523515,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3061,NJBF000070594,821 BALTIC AVE,Atlantic City,NJ,39.3677295,-74.423507,RES1,3001,,45,NE,1900,1900,3102,3,3,1178.714015,1178.714015,3505,YES,38.23,48.91,3,-1.37,6106,114.661556,124.252594,134.06259,140.286819,I,Above,Hip,0,5701,Wood,43.56879809,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3062,NJBF000070253,1706 HUMMOCK AVE,Atlantic City,NJ,39.36644173,-74.43610708,RES1,3001,,17,NE,1900,1900,3101,2,1,885.2370867,885.2370867,3507,NO,26.57,39.77,1,2.83,6106,114.406548,124.035887,133.822951,140.107314,I,Above,Hip,0,5701,Wood,33.1727185,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3063,NJBF000071436,722 ADRIATIC AVE,Atlantic City,NJ,39.37061678,-74.42350832,RES1,3001,959,NaN,NE,1969,0,3102,2,1,32000.94344,32000.94344,3505,YES,25.86,35.58,3,-1.39,6106,114.627628,124.2224,134.03185,140.246418,I,Above,Flat,0,5701,Wood,30.72212342,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3064,NJBF000071473,519 MELROSE AVE,Atlantic City,NJ,39.37071263,-74.42032095,RES1,3001,,17,NE,1900,1900,3102,2,1,934.0357139,934.0357139,3505,NO,43.88,50.58,3,8.54,6106,114.694422,124.279845,134.095426,140.294956,I,Above,Gable,0,5701,Wood,47.23016247,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3065,NJBF000071484,517 MELROSE AVE,Atlantic City,NJ,39.37073599,-74.42025909,RES1,3001,,NaN,NE,1900,0,3102,2,1,854.8231855,854.8231855,3505,NO,27.51,34.11,3,-1.99,6106,114.695473,124.280743,134.09644,140.295605,I,Above,Gable,0,5701,Wood,30.81354445,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3066,NJBF000070075,1816 HUMMOCK AVE,Atlantic City,NJ,39.36571197,-74.43780168,RES3B,3001,,45,ME,1910,1910,3301,3,2,1223.952644,1223.952644,3505,YES,40.66,51.37,3,1.39,6106,114.378654,124.012698,133.796918,140.091026,I,Above,Gable,0,NaN,Wood,46.01404151,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3067,NJBF000070036,348 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36557157,-74.43557499,RES1,3001,,17,NE,1900,1900,3101,2,1,1154.297961,1154.297961,3507,NO,29.57,41.43,1,1.26,6106,114.428321,124.054768,133.842949,140.128282,I,Above,Gable,0,5701,Wood,35.50198763,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3068,NJBF000069984,413 N OHIO AVE,Atlantic City,NJ,39.36532487,-74.43798086,RES3B,3001,,17,ME,1910,1910,3301,2,1,1108.279457,1108.279457,3505,NO,25.51,35.67,3,-2.35,6106,114.379386,124.013526,133.79751,140.093805,I,Above,Gable,0,NaN,Wood,30.59154563,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3069,NJBF000069882,320 N INDIANA AVE,Atlantic City,NJ,39.3647664,-74.43649243,RES1,3001,,45,NE,1900,1900,3101,2,2,1435.005266,1435.005266,3507,NO,36.43,41.8,1,0.64,6106,114.418151,124.046563,133.833269,140.125435,I,Above,Hip,0,5701,Wood,39.11286068,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3070,NJBF000071476,341 N NEW JERSEY AVE,Atlantic City,NJ,39.37072207,-74.4224079,RES1,3001,,17,NE,1900,1900,3102,2,1,1834.050147,1834.050147,3505,NO,26.86,33.74,3,4.01,6106,114.649861,124.241471,134.053011,140.26219,I,Above,Gable,0,5701,Wood,30.29954645,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3071,NJBF000069935,328 N INDIANA AVE,Atlantic City,NJ,39.36507651,-74.43671316,RES1,3001,,17,NE,1900,1900,3101,2,1,1266.942228,1266.942228,3507,NO,35.47,47.32,1,1.05,6106,114.409683,124.03925,133.82551,140.117456,I,Above,Gable,0,5701,Wood,41.39252689,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3072,NJBF000070336,410 N KENTUCKY AVE,Atlantic City,NJ,39.36674582,-74.43459463,RES1,3001,,17,NE,1965,1965,3101,2,1,1234.652745,1234.652745,3505,NO,40.76,50.33,3,8.99,6106,114.435511,124.060261,133.84996,140.126854,I,Above,Gable,0,5701,Wood,45.54501984,0,0,,,,1,1,,0.03,nav,1,1965,2,, 3073,NJBF000070342,1626 WABASH AVE,Atlantic City,NJ,39.36676098,-74.43531268,RES1,3001,,16,NE,1900,1900,3101,1,1,1162.772222,1162.772222,3505,NO,17.11,22.46,3,-0.83,6106,114.419878,124.047004,133.835415,140.11528,I,Above,Hip,0,5701,Wood,19.78433327,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3074,NJBF000072682,1603 MADISON AVE,Atlantic City,NJ,39.37450363,-74.44900475,RES1,3001,,17,NE,1900,1900,3102,2,1,1083.315335,1083.315335,3505,NO,42.29,47.42,3,3.83,6106,114.034504,123.71573,133.477853,139.778892,I,Above,Gable,0,5701,Wood,44.85790322,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3075,NJBF000070432,615 N OHIO AVE,Atlantic City,NJ,39.36710252,-74.43911144,REL1,3004,,NaN,ME,1969,0,3401,1,1,9768.784031,9768.784031,3507,NO,14.01,27.49,1,1.43,6106,114.333965,123.974149,133.755768,140.049957,I,Above,Flat,0,NaN,Wood,20.74699344,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3076,NJBF000072750,1616 N OHIO AVE,Atlantic City,NJ,39.3747915,-74.4494215,RES1,3001,,17,NE,1900,1900,3102,2,1,529.6883918,529.6883918,3505,NO,30.62,40.16,3,2.22,6106,114.022237,123.705114,133.466409,139.767627,I,Above,Gable,0,5701,Wood,35.38952211,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3077,NJBF000072717,1615 MADISON AVE,Atlantic City,NJ,39.37465747,-74.44954514,RES1,3001,,17,NE,1970,1970,3102,2,1,1479.894778,1479.894778,3505,NO,28.38,42.47,3,4.13,6106,114.021071,123.704285,133.465427,139.767604,I,Above,Gable,0,5701,Wood,35.42180584,0,0,,,,1,1,,0.03,nav,1,1970,2,, 3078,NJBF000067840,,Atlantic City,NJ,39.35471087,-74.46154556,RES1,3001,,NaN,NE,1969,0,3102,2,1,1579.84164,1579.84164,3505,NO,29.39,43.84,3,1.95,6106,113.995668,123.699747,133.447791,139.875076,I,Above,Flat,0,5701,Wood,36.61919764,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3079,NJBF000068038,422 WISTERIA RD,Atlantic City,NJ,39.35542351,-74.46014221,RES1,3001,,45,NE,1920,1920,3102,2,2,846.3454869,846.3454869,3505,NO,22.25,33.38,3,-1.57,6106,114.01757,123.717387,133.467371,139.886912,I,Above,Flat,0,5701,Wood,27.81642148,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3080,NJBF000067989,4008 FILBERT AVE,Atlantic City,NJ,39.35525703,-74.46334774,RES1,3001,,17,NE,1900,1900,3102,2,1,1618.907689,1618.907689,3505,NO,46.47,60.84,3,8.48,6106,113.949363,123.661368,133.406752,139.837112,I,Above,Flat,0,5701,Wood,53.65482873,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3081,NJBF000068968,701 N HARRISBURG AVE,Atlantic City,NJ,39.35819373,-74.46255462,RES1,3001,,17,NE,1921,1921,3101,1,1,1341.674839,1341.674839,3505,NO,17.46,25.14,3,1.32,6106,113.930567,123.644027,133.390014,139.80443,I,Above,Hip,0,5701,Wood,21.29937415,0,0,,,,1,1,,0.03,nav,1,1921,1,, 3082,NJBF000069015,701 N HARRISBURG AVE,Atlantic City,NJ,39.35840274,-74.46250724,RES1,3001,,17,NE,1921,1921,3101,1,1,648.6963428,648.6963428,3505,NO,17.57,30.08,3,5.64,6106,113.929065,123.642645,133.388658,139.801969,I,Above,Hip,0,5701,Wood,23.82593493,0,0,,,,1,1,,0.03,nav,1,1921,1,, 3083,NJBF000067830,432 N DOVER AVE,Atlantic City,NJ,39.35466276,-74.46272625,RES1,3001,,17,NE,1900,1900,3102,1,1,1674.066639,1674.066639,3505,NO,15.52,21.33,3,2.62,6106,113.970393,123.67899,133.425348,139.856555,I,Above,Hip,0,5701,Wood,18.42544419,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3084,NJBF000067967,17 S TEXAS AVE,Atlantic City,NJ,39.35519473,-74.44238875,RES3A,3004,29,NaN,NE,1969,0,3301,2,1,1287.013729,1287.013729,3505,YES,30.69,41.54,3,-1.47,6106,114.407167,124.04097,133.818632,140.171366,I,Above,Flat,0,5701,Wood,36.11306959,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3085,NJBF000073356,MEADOW TRACK,Atlantic City,NJ,39.38008549,-74.4556275,COM1,3001,,NaN,ME,1969,0,3401,1,1,5613.475494,5613.475494,3507,NO,11.88,24.79,1,1.01,6110,113.828895,123.536285,133.284544,139.582408,I,Above,Flat,0,NaN,Wood,18.33888267,0,0,,,,1,1,,1,nav,1,1969,1,, 3086,NJBF000073300,MEADOW TRACK,Atlantic City,NJ,39.37968249,-74.455289,COM1,3001,,NaN,ME,1969,0,3401,3,1,4339.961822,4339.961822,3507,NO,58.26,67.88,1,1.56,6110,113.84065,123.546704,133.295749,139.594367,I,Above,Flat,0,NaN,Wood,63.06876155,0,0,,,,1,1,,1,nav,1,1969,3,, 3087,NJBF000073299,MEADOW TRACK,Atlantic City,NJ,39.37965949,-74.456123,COM1,3001,,NaN,ME,1969,0,3401,3,1,5521.410671,5521.410671,3507,NO,35.28,42.95,1,2.87,6110,113.822791,123.53179,133.279459,139.580492,I,Above,Flat,0,NaN,Wood,39.11212627,0,0,,,,1,1,,1,nav,1,1969,3,, 3088,NJBF000073279,MEADOW TRACK,Atlantic City,NJ,39.37952799,-74.456013,COM1,3001,,NaN,ME,1969,0,3401,3,1,8274.751836,8274.751836,3507,NO,53.62,61.08,1,2.42,6110,113.82661,123.535173,133.283097,139.58438,I,Above,Flat,0,NaN,Wood,57.35085265,0,0,,,,1,1,,1,nav,1,1969,3,, 3089,NJBF000073258,MEADOW TRACK,Atlantic City,NJ,39.37938649,-74.45589649,COM1,3001,,NaN,ME,1969,0,3401,1,1,6381.928805,6381.928805,3507,NO,14.73,26.09,1,1.75,6110,113.830704,123.5388,133.286995,139.588555,I,Above,Flat,0,NaN,Wood,20.40655308,0,0,,,,1,1,,1,nav,1,1969,1,, 3090,NJBF000073241,MEADOW TRACK FRONT,Atlantic City,NJ,39.3792255,-74.455062,COM1,3001,,NaN,ME,1969,0,3401,2,1,2958.147706,2958.147706,3507,NO,37.29,48.05,1,-0.71,6110,113.850576,123.555659,133.305329,139.605233,I,Above,Flat,0,NaN,Wood,42.66765646,0,0,,,,1,1,,1,nav,1,1969,2,, 3091,NJBF000067229,330 N RICHMOND AVE,Atlantic City,NJ,39.35267364,-74.46350394,RES1,3001,,17,NE,1935,1935,3102,2,1,1035.923643,1035.923643,3505,NO,38.98,49.93,3,0.73,6106,113.978212,123.686461,133.431958,139.874765,I,Above,Gable,0,5701,Wood,44.45799808,0,0,,,,1,1,,0.03,nav,1,1935,2,, 3092,NJBF000067101,4316 STEWART AVE,Atlantic City,NJ,39.35210892,-74.46357051,RES1,3001,,17,NE,1900,1900,3102,1,1,1435.303304,1435.303304,3505,NO,26.02,32.25,3,7.84,6106,113.983856,123.691367,133.436825,139.882455,I,Above,Gable,0,5701,Wood,29.1358414,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3093,NJBF000067084,304 N RICHMOND AVE,Atlantic City,NJ,39.35202795,-74.46303317,RES1,3001,,17,NE,1900,1900,3102,1,1,2362.69827,2362.69827,3505,NO,13.65,22.11,3,2.33,6106,113.99668,123.701933,133.448154,139.892453,I,Above,Hip,0,5701,Wood,17.88060149,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3094,NJBF000067133,4306 STEWART AVE,Atlantic City,NJ,39.35223024,-74.46330103,RES1,3001,,17,NE,1928,1928,3102,2,1,2366.135614,2366.135614,3505,YES,39.8,48.83,3,0.81,6106,113.988255,123.694921,133.440746,139.884967,I,Above,Gable,0,5701,Wood,44.3145452,0,0,,,,1,1,,0.03,nav,1,1928,2,, 3095,NJBF000070322,1209 BALTIC AVE,Atlantic City,NJ,39.366711,-74.4286545,COM8,3003,761,NaN,ME,1969,0,3401,2,1,4037.756754,4037.756754,3507,NO,34.26,47.02,1,-0.97,6106,114.563516,124.169118,133.969637,140.22079,I,Above,Flat,0,NaN,Wood,40.64037725,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3096,NJBF000070358,1209 BALTIC AVE,Atlantic City,NJ,39.36682935,-74.42836253,COM8,3003,761,NaN,ME,1969,0,3401,2,1,3293.239026,3293.239026,3507,NO,25.62,38.26,1,-0.49,6106,114.568355,124.173198,133.974235,140.223676,I,Above,Flat,0,NaN,Wood,31.94067667,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3097,NJBF000070392,2104 GRANT AVE,Atlantic City,NJ,39.36692923,-74.44291341,RES3B,3001,,45,ME,1900,1900,3301,2,2,700.9744134,700.9744134,3505,YES,37.67,45.77,3,8.57,6106,114.253843,123.90675,133.681827,139.991623,I,Above,Flat,0,5701,Wood,41.7175519,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3098,NJBF000070488,334 N TENNESSEE AVE,Atlantic City,NJ,39.36734553,-74.43188201,RES3C,3003,560,NaN,E,1969,0,3305,4,1,2686.722012,2686.722012,3507,YES,68.76,78.72,1,2.29,6106,114.486753,124.103468,133.897947,140.161069,I,Above,Flat,0,NaN,Wood,73.74277357,0,0,,,,2,2,,0.03,nav,1,1969,4,, 3099,NJBF000068343,3301 FAIRMOUNT AVE,Atlantic City,NJ,39.3564375,-74.453197,COM8,3001,,NaN,ME,1969,0,3401,2,1,1064.491331,1064.491331,3507,NO,26.56,35.14,1,2.51,6106,114.156832,123.831958,133.592252,139.983276,I,Above,Flat,0,NaN,Wood,30.85081434,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3100,NJBF000071576,444 N MARYLAND AVE,Atlantic City,NJ,39.37097061,-74.42631282,RES1,3001,,27,NE,1910,1910,3102,2,2,766.0606003,766.0606003,3505,YES,25.9,37.06,3,2.58,6106,114.5636,124.1673,133.971332,140.197325,I,Above,Flat,0,5701,Wood,31.48301357,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3101,NJBF000068433,211 N MONTPELIER AVE,Atlantic City,NJ,39.3567424,-74.45195604,RES3A,3001,,45,NE,1900,1900,3301,2,2,2134.028644,2134.028644,3507,YES,21.7,29.99,1,-0.61,6106,114.180127,123.851138,133.613322,139.998476,I,Above,Gable,0,5701,Wood,25.84308024,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3102,NJBF000068438,218 N MONTPELIER AVE,Atlantic City,NJ,39.35676467,-74.45251513,RES3A,3001,,45,NE,1922,1922,3301,2,2,2045.006123,2045.006123,3507,YES,27.08,32.36,1,1.64,6106,114.167658,123.840778,133.602089,139.989225,I,Above,Flat,0,5701,Wood,29.71870413,0,0,,,,1,1,,0.03,nav,1,1922,2,, 3103,NJBF000071485,1029 CASPIAN AVE,Atlantic City,NJ,39.37073798,-74.42847356,RES3C,3004,,17,ME,1900,1900,3301,1,1,1477.96559,1477.96559,3505,NO,23.49,30.68,3,4.31,6106,114.520082,124.13017,133.930191,140.16651,I,Above,Hip,0,NaN,Wood,27.08392473,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3104,NJBF000068905,642 WISTERIA RD,Atlantic City,NJ,39.35798645,-74.46215721,RES1,3001,,16,NE,1900,1900,3101,1,1,694.7822685,694.7822685,3505,NO,19.46,26.25,3,2.07,6106,113.94184,123.653447,133.400055,139.814243,I,Above,Hip,0,5701,Wood,22.8535418,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3105,NJBF000069334,236 N TEXAS AVE,Atlantic City,NJ,39.35973017,-74.44586911,RES3A,3001,,27,NE,1900,1900,3301,2,2,1392.729361,1392.729361,3505,YES,32.51,40.45,3,3.24,6106,114.275933,123.929495,133.701038,140.050704,I,Above,Gable,0,5701,Wood,36.47995122,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3106,NJBF000069316,232 N TEXAS AVE,Atlantic City,NJ,39.35964361,-74.44581904,RES3A,3001,,27,NE,1900,1900,3301,2,2,1587.036409,1587.036409,3505,YES,33.67,43.75,3,1.31,6106,114.278065,123.931318,133.702955,140.052763,I,Above,Flat,0,5701,Wood,38.70669535,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3107,NJBF000068212,101 N MORRIS AVE #B,Atlantic City,NJ,39.35602239,-74.44899448,RES3A,3001,,45,NE,1913,1913,3301,2,2,1949.45585,1949.45585,3505,NO,29.08,36.68,3,2.32,6106,114.253518,123.912459,133.679377,140.056109,I,Above,Hip,0,5701,Wood,32.87791145,0,0,,,,1,1,,0.03,nav,1,1913,2,, 3108,NJBF000070260,1721 HUMMOCK AVE,Atlantic City,NJ,39.36646784,-74.43687951,RES1,3001,,17,NE,1900,1900,3101,2,1,728.9344242,728.9344242,3507,NO,24.13,37.39,1,-0.99,6106,114.389583,124.021519,133.807207,140.094686,I,Above,Hip,0,5701,Wood,30.75849638,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3109,NJBF000070380,509 ROBINSON AVE,Atlantic City,NJ,39.36689183,-74.43648279,RES1,3001,,33,NE,1900,1900,3101,2,1,683.2183872,683.2183872,3507,YES,25.36,32.88,1,2.71,6106,114.39313,124.024283,133.810583,140.094843,I,Above,Flat,0,5701,Wood,29.11876411,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3110,NJBF000072588,,Atlantic City,NJ,39.37418596,-74.4225172,RES1,3001,,NaN,NE,1969,0,3102,2,1,889.1513581,889.1513581,3505,NO,31.58,37.78,3,-2.45,6106,114.607405,124.203343,134.013839,140.211933,I,Above,Flat,0,5701,Wood,34.67784619,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3111,NJBF000070243,503 N INDIANA AVE,Atlantic City,NJ,39.36639788,-74.43713775,RES1,3001,,45,NE,1910,1910,3101,3,2,967.0426103,967.0426103,3507,YES,48.54,60.57,1,0.54,6106,114.384848,124.017554,133.802801,140.091607,I,Above,Flat,0,5701,Wood,54.55756572,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3112,NJBF000071463,820 N NEW YORK AVE,Atlantic City,NJ,39.37067053,-74.43571291,IND3,3003,565,NaN,E,1969,0,3401,1,1,6204.322033,6204.322033,3507,NO,20.53,33.96,1,1.27,6106,114.365486,123.998517,133.785256,140.052328,I,Above,Flat,0,NaN,Wood,27.24274043,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3113,NJBF000071556,901-919 N NEW YORK AVE,Atlantic City,NJ,39.37092332,-74.43694824,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3144.336806,3144.336806,3505,NO,26.84,32.51,3,-2.49,6106,114.335981,123.973314,133.757759,140.028866,I,Above,Gable,0,NaN,Wood,29.67227796,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3114,NJBF000071467,901-919 N NEW YORK AVE,Atlantic City,NJ,39.37069168,-74.43679342,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3030.019456,3030.019456,3505,NO,32.64,44.08,3,3.32,6106,114.341996,123.978576,133.763366,140.034717,I,Above,Gable,0,NaN,Wood,38.35812502,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3115,NJBF000071570,901-919 N NEW YORK AVE,Atlantic City,NJ,39.37095109,-74.43652011,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,1560.228388,1560.228388,3505,NO,38.61,50.97,3,3.58,6106,114.344872,123.980834,133.766039,140.035327,I,Above,Flat,0,NaN,Wood,44.79348139,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3116,NJBF000071612,901-919 N NEW YORK AVE,Atlantic City,NJ,39.37106125,-74.43588649,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,2948.063346,2948.063346,3505,NO,41.27,49.75,3,6.91,6106,114.357243,123.991254,133.777569,140.043893,I,Above,Flat,0,NaN,Wood,45.50814317,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3117,NJBF000072531,,Atlantic City,NJ,39.374007,-74.4234705,RES1,3001,,NaN,NE,1969,0,3102,2,1,980.6325897,980.6325897,3505,NO,30.68,35.89,3,5.23,6106,114.589158,124.187715,133.996413,140.199385,I,Above,Gable,0,5701,Wood,33.28599616,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3118,NJBF000071414,406 DELTA AVE,Atlantic City,NJ,39.3705257,-74.42513313,RES1,3001,,17,NE,1925,1925,3102,2,1,964.7696595,964.7696595,3505,NO,23.15,35.14,3,-0.35,6106,114.594,124.193572,133.999942,140.22218,I,Above,Hip,0,5701,Wood,29.14548844,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3119,NJBF000072951,1140 BRIGANTINE BLVD,Atlantic City,NJ,39.37590071,-74.43089835,RES3D,3001,,NaN,ME,1969,0,3301,2,1,1250.498391,1250.498391,3507,NO,38.92,53.07,1,0.26,6106,114.408814,124.031705,133.825673,140.053977,I,Above,Hip,0,NaN,Wood,45.99405156,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3120,NJBF000072993,416 CARSON AVE,Atlantic City,NJ,39.37629291,-74.42216618,RES3D,3001,,NaN,ME,1969,0,3301,2,1,1563.402766,1563.402766,3507,NO,26.75,33.93,1,2.48,6106,114.590757,124.187843,133.998415,140.187875,I,Above,Flat,0,NaN,Wood,30.34402631,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3121,NJBF000073003,477 CARSON AVE,Atlantic City,NJ,39.37639561,-74.42357847,IND2,3001,,NaN,ME,1969,0,3401,3,1,1104.963818,1104.963818,3507,NO,59.68,66.04,1,1.55,6102,114.559521,124.160827,133.968614,140.163986,I,Above,Flat,0,NaN,Wood,62.85914156,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3122,NJBF000073028,421 CARSON AVE,Atlantic City,NJ,39.37663264,-74.42291252,RES3D,3001,100,NaN,ME,1969,0,3301,2,1,840.2750629,840.2750629,3507,NO,38.54,50.18,1,-0.38,6102,114.570986,124.170576,133.979583,140.171219,I,Above,Flat,0,NaN,Wood,44.35824501,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3123,NJBF000073026,419 CARSON AVE,Atlantic City,NJ,39.3766254,-74.4227474,RES3D,3001,100,NaN,ME,1969,0,3301,1,1,2277.816087,2277.816087,3507,NO,14.44,28.08,1,2.03,6102,114.574611,124.173709,133.983043,140.173971,I,Above,Flat,0,NaN,Wood,21.25850975,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 3124,NJBF000072330,724 MAGELLAN AVE,Atlantic City,NJ,39.37331544,-74.42522218,RES1,3001,,27,NE,1925,1925,3102,2,2,1157.675433,1157.675433,3505,YES,29.06,40.61,3,-0.69,6106,114.559755,124.162794,133.96831,140.181425,I,Above,Gable,0,5701,Wood,34.8376476,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3125,NJBF000072291,503 N CONNECTICUT AVE,Atlantic City,NJ,39.37318066,-74.42250733,RES1,3001,,17,NE,1930,1930,3102,2,1,1343.253949,1343.253949,3505,NO,29.49,41.85,3,-0.22,6106,114.6192,124.214003,134.024782,140.226198,I,Above,Hip,0,5701,Wood,35.66831868,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3126,NJBF000072324,518 N CONNECTICUT AVE,Atlantic City,NJ,39.3733006,-74.42313613,RES1,3001,,17,NE,1930,1930,3102,1,1,2538.145155,2538.145155,3505,NO,18.52,26.78,3,6.31,6106,114.604411,124.201208,134.010739,140.214593,I,Above,Hip,0,5701,Wood,22.64894914,0,0,,,,1,1,,0.03,nav,1,1930,1,, 3127,NJBF000072320,505 N CONNECTICUT AVE,Atlantic City,NJ,39.37326501,-74.42254383,RES1,3001,,17,NE,1900,1900,3102,1,1,1363.532352,1363.532352,3505,NO,9.81,21.67,3,-1.85,6106,114.617442,124.212448,134.023134,140.224437,I,Above,Hip,0,5701,Wood,15.74024713,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3128,NJBF000072375,527 N NEW JERSEY AVE,Atlantic City,NJ,39.373434,-74.4243155,RES1,3001,,18,NE,2012,2012,3102,3,1,1024.812363,1024.812363,3505,NO,54.53,60.54,3,5.7,6106,114.577716,124.17817,133.985392,140.19408,I,Above,Flat,0,5701,Wood,57.53626874,0,0,,,,1,1,,0.03,nav,1,2012,3,, 3129,NJBF000072412,521 N CONNECTICUT AVE,Atlantic City,NJ,39.37356513,-74.42273255,RES1,3001,,17,NE,1925,1925,3102,1,1,1615.197593,1615.197593,3505,NO,14.93,29.44,3,1.56,6106,114.609954,124.205851,134.016093,140.217244,I,Above,Hip,0,5701,Wood,22.18240919,0,0,,,,1,1,,0.03,nav,1,1925,1,, 3130,NJBF000072445,,Atlantic City,NJ,39.3736845,-74.424462,RES1,3001,,NaN,NE,1909,0,3102,2,1,1243.271779,1243.271779,3505,NO,43.36,55.88,3,5.07,6106,114.57171,124.172871,133.979745,140.188229,I,Above,Flat,0,5701,Wood,49.61656588,0,0,,,,1,1,,0.03,nav,1,1909,2,, 3131,NJBF000072098,504 N NEW JERSEY AVE,Atlantic City,NJ,39.37258,-74.424161,RES1,3001,,16,NE,1900,1900,3102,2,1,1263.280395,1263.280395,3505,NO,27.02,39.9,3,2.81,6106,114.590884,124.189928,133.997669,140.208563,I,Above,Hip,0,5701,Wood,33.45956879,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3132,NJBF000072028,630 CASPIAN AVE,Atlantic City,NJ,39.37234,-74.4234655,RES1,3001,,17,NE,2005,2005,3102,2,1,844.1354272,844.1354272,3505,NO,34.81,42.38,3,0.94,6106,114.608487,124.20518,134.014317,140.222895,I,Above,Flat,0,5701,Wood,38.59872244,0,0,,,,1,1,,0.03,nav,1,2005,2,, 3133,NJBF000072145,716 SEWELL AVE,Atlantic City,NJ,39.37271765,-74.42467041,RES1,3001,,27,NE,1925,1925,3102,2,2,2031.775257,2031.775257,3505,YES,34.46,40.75,3,5.45,6106,114.578428,124.179152,133.985882,140.198584,I,Above,Gable,0,5701,Wood,37.60627609,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3134,NJBF000072290,514 N CONNECTICUT AVE,Atlantic City,NJ,39.3731772,-74.42298255,RES1,3001,,45,NE,1900,1900,3102,1,2,1492.691352,1492.691352,3505,NO,17.9,23.65,3,6.62,6106,114.609103,124.205309,134.015168,140.21875,I,Above,Gable,0,5701,Wood,20.77152897,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3135,NJBF000072170,510 N NEW JERSEY AVE,Atlantic City,NJ,39.37277554,-74.42428042,RES1,3001,,45,NE,1900,1900,3102,1,2,1138.636661,1138.636661,3505,NO,17.68,29.54,3,2.24,6106,114.586079,124.185699,133.993162,140.203924,I,Above,Gable,0,5701,Wood,23.60806375,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3136,NJBF000072147,548 N DELAWARE AVE,Atlantic City,NJ,39.37272107,-74.42581007,RES1,3001,,17,NE,2006,2006,3102,2,1,1504.948314,1504.948314,3505,NO,39.19,45.33,3,6.71,6106,114.554054,124.158218,133.96277,140.180519,I,Above,Flat,0,5701,Wood,42.26113864,0,0,,,,1,1,,0.03,nav,1,2006,2,, 3137,NJBF000071973,443 N NEW JERSEY AVE,Atlantic City,NJ,39.37216085,-74.42341395,RES1,3001,,45,NE,1930,1930,3102,1,2,1143.220282,1143.220282,3505,NO,15.77,24.35,3,4.76,6106,114.611671,124.208002,134.017282,140.226229,I,Above,Gable,0,5701,Wood,20.05625967,0,0,,,,1,1,,0.03,nav,1,1930,1,, 3138,NJBF000071834,709 WABASH AVE,Atlantic City,NJ,39.37177081,-74.4236573,RES1,3001,,45,NE,1900,1900,3102,2,2,1596.859169,1596.859169,3505,NO,39.17,46.56,3,2.84,6106,114.611014,124.207617,134.016523,140.227882,I,Above,Hip,0,5701,Wood,42.86477287,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3139,NJBF000071777,735 WABASH AVE,Atlantic City,NJ,39.37160008,-74.42436179,RES1,3001,,17,NE,1955,1955,3102,1,1,1683.818755,1683.818755,3505,NO,19.51,32.09,3,3.62,6106,114.597958,124.196477,134.004071,140.219191,I,Above,Gable,0,5701,Wood,25.79636396,0,0,,,,1,1,,0.03,nav,1,1955,1,, 3140,NJBF000071971,924-941 SEWELL AVE,Atlantic City,NJ,39.37215652,-74.42800112,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4975.565795,4975.565795,3505,NO,14.97,21.01,3,0.09,6106,114.513739,124.123969,133.924519,140.153818,I,Above,Flat,0,NaN,Wood,17.98991611,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3141,NJBF000072034,438 N CONNECTICUT AVE,Atlantic City,NJ,39.37236144,-74.42244785,RES1,3001,,17,NE,1930,2008,3102,2,1,1409.155623,1409.155623,3505,NO,37.58,46.46,3,1.36,6106,114.629945,124.223637,134.034732,140.238624,I,Above,Hip,0,5701,Wood,42.01856805,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3142,NJBF000071899,730 CASPIAN AVE,Atlantic City,NJ,39.37193767,-74.42454624,RES1,3001,,17,NE,1900,1900,3102,1,1,1463.584367,1463.584367,3505,NO,20.18,28.17,3,6.56,6106,114.590106,124.189572,133.996735,140.211534,I,Above,Hip,0,5701,Wood,24.17446785,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3143,NJBF000071959,448 N NEW JERSEY AVE,Atlantic City,NJ,39.37210728,-74.42385541,RES1,3001,,45,NE,1900,1900,3102,1,2,1441.234998,1441.234998,3505,NO,21.52,34.8,3,3.9,6106,114.602891,124.200478,134.008923,140.220043,I,Above,Hip,0,5701,Wood,28.15719724,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3144,NJBF000072016,632 CASPIAN AVE,Atlantic City,NJ,39.37229431,-74.42356902,RES1,3001,,17,NE,2003,2003,3102,2,1,939.6831728,939.6831728,3505,NO,27.74,34.19,3,-2.22,6106,114.606824,124.203771,134.012721,140.221919,I,Above,Flat,0,5701,Wood,30.96180781,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3145,NJBF000071462,400 N DELAWARE AVE,Atlantic City,NJ,39.3706691,-74.42448482,RES1,3001,,17,NE,1900,1900,3102,2,1,1828.287907,1828.287907,3505,NO,24.35,36.22,3,2.89,6106,114.60617,124.20395,134.011522,140.230351,I,Above,Gable,0,5701,Wood,30.28782334,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3146,NJBF000071135,1401 SEWELL AVE,Atlantic City,NJ,39.36953687,-74.43342439,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,4373.643703,4373.643703,3505,NO,34.26,48.34,3,6.78,6106,114.427906,124.052258,133.84344,140.105231,I,Above,Flat,0,NaN,Wood,41.29589851,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3147,NJBF000071002,659 N KENTUCKY AVE,Atlantic City,NJ,39.369098,-74.435714,RES1,3001,,17,NE,1962,1962,3101,1,1,1110.32455,1110.32455,3505,NO,11.27,23.56,3,-1.81,6106,114.383782,124.015059,133.802214,140.075123,I,Above,Flat,0,5701,Wood,17.41430169,0,0,,,,1,1,,0.03,nav,1,1962,1,, 3148,NJBF000071662,618 N VIRGINIA AVE,Atlantic City,NJ,39.37121497,-74.42800626,RES3C,3004,739,NaN,ME,1969,0,3301,1,1,1728.562133,1728.562133,3505,NO,14.7,27.95,3,2.03,6106,114.524553,124.133741,133.934522,140.167131,I,Above,Gable,0,NaN,Wood,21.32907632,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3149,NJBF000071833,406 N CONNECTICUT AVE,Atlantic City,NJ,39.371769,-74.422032,RES1,3001,,16,NE,1900,1900,3102,1,1,1577.506169,1577.506169,3505,NO,16.89,25.62,3,1.25,6106,114.64568,124.237444,134.049481,140.253447,I,Above,Hip,0,5701,Wood,21.25605005,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3150,NJBF000067938,414 N HARRISBURG AVE #A,Atlantic City,NJ,39.35508416,-74.46058311,RES1,3001,959,NaN,NE,1969,0,3102,1,1,951.5472301,951.5472301,3505,NO,17.78,25.49,3,1.18,6106,114.012131,123.713094,133.462482,139.884985,I,Above,Flat,0,5701,Wood,21.63504881,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3151,NJBF000067948,414 N HARRISBURG AVE #B,Atlantic City,NJ,39.35513724,-74.4606664,RES1,3001,,45,NE,1920,1920,3102,2,2,1087.074334,1087.074334,3505,NO,37.27,44.74,3,-1.02,6106,114.009654,123.711025,133.460286,139.882818,I,Above,Flat,0,5701,Wood,41.00601085,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3152,NJBF000070579,,Atlantic City,NJ,39.36767441,-74.44002294,RES3B,3001,,NaN,ME,1969,0,3301,1,1,718.5233442,718.5233442,3505,NO,18.43,32.91,3,1.49,6106,114.307559,123.951498,133.731384,140.02703,I,Above,Gable,0,5701,Wood,25.6718541,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3153,NJBF000071005,1109 ADRIATIC AVE,Atlantic City,NJ,39.36910472,-74.42835794,RES1,3001,,27,NE,1925,1925,3103,2,2,657.9164442,657.9164442,3505,YES,36.15,50.07,3,7.06,6106,114.541643,124.149409,133.950018,140.191531,I,Above,Gable,0,5701,Wood,43.11156882,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3154,NJBF000070976,1117 ADRIATIC AVE,Atlantic City,NJ,39.36902419,-74.42855609,RES1,3001,,27,NE,1900,1900,3103,2,2,598.051426,598.051426,3505,YES,25.62,38.24,3,-0.48,6106,114.538352,124.146637,133.946894,140.189563,I,Above,Gable,0,5701,Wood,31.92742097,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3155,NJBF000067738,447 N RICHMOND AVE,Atlantic City,NJ,39.35433574,-74.46413213,RES1,3001,,17,NE,1992,1992,3102,1,1,1252.054521,1252.054521,3505,NO,13.26,23.96,3,1.96,6106,113.943618,123.657183,133.401592,139.838593,I,Above,Flat,0,5701,Wood,18.60900019,0,0,,,,1,1,,0.03,nav,1,1992,1,, 3156,NJBF000072374,1906 E RIVERSIDE DR,Atlantic City,NJ,39.37343001,-74.44483168,RES1,3001,,17,NE,1900,1900,3102,1,1,1221.760252,1221.760252,3505,NO,19.51,32.89,3,7.53,6106,114.137039,123.803073,133.572782,139.863919,I,Above,Gable,0,5701,Wood,26.19940206,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3157,NJBF000072370,1542 N MICHIGAN AVE,Atlantic City,NJ,39.37342443,-74.44840681,RES1,3001,,17,NE,1955,1955,3102,2,1,873.2079637,873.2079637,3505,NO,40.45,52.29,3,5.33,6106,114.059701,123.738031,133.501613,139.805091,I,Above,Gable,0,5701,Wood,46.37070792,0,0,,,,1,1,,0.03,nav,1,1955,2,, 3158,NJBF000067722,445 WINDSOR RD,Atlantic City,NJ,39.35427743,-74.46379106,RES1,3001,,17,NE,1985,1985,3102,1,1,1147.381249,1147.381249,3505,NO,14.72,23.3,3,-2.42,6106,113.951838,123.663964,133.408863,139.845113,I,Above,Gable,0,5701,Wood,19.0096927,0,0,,,,1,1,,0.03,nav,1,1985,1,, 3159,NJBF000072367,1601 EMERSON AVE,Atlantic City,NJ,39.37341968,-74.44933949,RES1,3001,,17,NE,1920,1920,3102,2,1,883.6083537,883.6083537,3505,NO,28.13,39.64,3,-0.64,6106,114.039538,123.721114,133.483121,139.789714,I,Above,Flat,0,5701,Wood,33.88545594,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3160,NJBF000072343,2010 GRAMMERCY AVE,Atlantic City,NJ,39.37334838,-74.44905225,RES1,3001,,17,NE,2006,2006,3102,2,1,975.3961414,975.3961414,3505,NO,35.06,40.67,3,-1.14,6106,114.04658,123.727098,133.489618,139.795558,I,Above,Gable,0,5701,Wood,37.86796533,0,0,,,,1,1,,0.03,nav,1,2006,2,, 3161,NJBF000072384,1526 N MICHIGAN AVE,Atlantic City,NJ,39.37347624,-74.44865458,RES1,3001,,16,NE,1900,1900,3102,2,1,1093.422316,1093.422316,3505,NO,25.53,31.53,3,-0.69,6106,114.053734,123.732968,133.496109,139.800203,I,Above,Hip,0,5701,Wood,28.53079091,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3162,NJBF000072353,1427 N MICHIGAN AVE,Atlantic City,NJ,39.37336116,-74.44699807,RES1,3001,,17,NE,1900,1900,3102,2,1,1233.867077,1233.867077,3505,NO,32.45,43.3,3,3.85,6106,114.090946,123.764347,133.530354,139.829314,I,Above,Gable,0,5701,Wood,37.87755107,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3163,NJBF000070749,425 N TENNESSEE AVE,Atlantic City,NJ,39.368289,-74.4320025,RES1,3001,,NaN,NE,1915,0,3103,4,1,1178.495266,1178.495266,3505,NO,58.98,70.82,3,-1.39,6106,114.473072,124.091359,133.885423,140.145686,I,Above,Flat,0,5701,Wood,64.90324142,0,0,,,,1,1,,0.03,nav,1,1915,4,, 3164,NJBF000068401,545 N DOVER AVE,Atlantic City,NJ,39.35662815,-74.46373354,RES1,3001,,17,NE,1900,1900,3101,1,1,1528.871832,1528.871832,3505,NO,15.19,27.72,3,-2.42,6106,113.923932,123.639624,133.384224,139.80936,I,Above,Gable,0,5701,Wood,21.45776999,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3165,NJBF000070408,2013 MAGELLAN AVE,Atlantic City,NJ,39.36698458,-74.44161433,RES3B,3001,,27,ME,1900,1900,3301,2,2,1780.803813,1780.803813,3505,YES,32.33,41.01,3,5.62,6106,114.281282,123.929804,133.7071,140.011651,I,Above,Hip,0,5701,Wood,36.6668998,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3166,NJBF000070647,600 N KENTUCKY AVE,Atlantic City,NJ,39.36791038,-74.43538881,RES1,3001,,17,NE,1900,1900,3101,2,1,1447.033698,1447.033698,3505,NO,19.76,29.78,3,-2.59,6106,114.404702,124.033506,133.82153,140.097484,I,Above,Hip,0,5701,Wood,24.77102613,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3167,NJBF000070680,610 N KENTUCKY AVE,Atlantic City,NJ,39.36804223,-74.43547035,RES1,3001,,17,NE,1900,1900,3101,2,1,1203.527288,1203.527288,3505,NO,37.26,47.14,3,2.71,6106,114.401407,124.030637,133.818485,140.09429,I,Above,Gable,0,5701,Wood,42.20039067,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3168,NJBF000068468,533 N ELBERON AVE,Atlantic City,NJ,39.35686618,-74.46250205,RES1,3001,,17,NE,1900,1900,3101,1,1,548.980219,548.980219,3505,NO,13.6,19.38,3,2.73,6106,113.948027,123.659278,133.405602,139.825978,I,Above,Hip,0,5701,Wood,16.48809984,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3169,NJBF000070927,806 N INDIANA AVE,Atlantic City,NJ,39.36886605,-74.43921785,RES1,3001,,16,NE,1900,1900,3102,1,1,1481.820862,1481.820862,3505,NO,14.56,26.75,3,-0.14,6106,114.310975,123.953583,133.73457,140.022478,I,Above,Gable,0,5701,Wood,20.65743296,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3170,NJBF000070862,1734 GRANT AVE,Atlantic City,NJ,39.36868154,-74.43836482,RES1,3001,,17,NE,1950,1950,3102,1,1,1227.976957,1227.976957,3505,NO,19.55,34.08,3,0.52,6106,114.331527,123.971078,133.753618,140.038832,I,Above,Flat,0,5701,Wood,26.81208581,0,0,,,,1,1,,0.03,nav,1,1950,1,, 3171,NJBF000068486,526 N HARRISBURG AVE,Atlantic City,NJ,39.35692495,-74.46214939,RES1,3001,,17,NE,1900,1900,3101,1,1,1556.832113,1556.832113,3505,NO,12.04,19.94,3,-1.64,6106,113.955041,123.665011,133.411835,139.83087,I,Above,Gable,0,5701,Wood,15.98973316,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3172,NJBF000068445,3851 FILBERT AVE,Atlantic City,NJ,39.35678798,-74.46129138,RES1,3001,,16,NE,1900,1900,3101,1,1,884.285369,884.285369,3505,NO,24.07,36.16,3,8.85,6106,113.975536,123.681966,133.43006,139.847085,I,Above,Gable,0,5701,Wood,30.11521728,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3173,NJBF000070794,732 N INDIANA AVE,Atlantic City,NJ,39.3684617,-74.43905956,RES1,3001,,NaN,NE,1969,0,3102,2,1,3629.912533,3629.912533,3505,NO,35.55,49.5,3,-2.89,6106,114.319108,123.960727,133.742099,140.030919,I,Above,Hip,0,5701,Wood,42.52212003,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3174,NJBF000068446,544 N ELBERON AVE,Atlantic City,NJ,39.35679697,-74.46320796,RES1,3001,,17,NE,1955,1955,3101,2,1,1444.222434,1444.222434,3505,NO,32.76,41.73,3,3.9,6106,113.933391,123.647288,133.392609,139.815412,I,Above,Flat,0,5701,Wood,37.2434486,0,0,,,,1,1,,0.03,nav,1,1955,2,, 3175,NJBF000072646,2038 N RIVERSIDE DR,Atlantic City,NJ,39.374386,-74.454727,RES1,3001,,17,NE,1996,1996,3101,1,1,1211.140341,1211.140341,3505,NO,11.29,25.79,3,-2.4,6106,113.911585,123.612943,133.365569,139.685005,I,Above,Hip,0,5701,Wood,18.54176347,0,0,,,,1,1,,0.03,nav,1,1996,1,, 3176,NJBF000070386,,Atlantic City,NJ,39.36690915,-74.44176669,RES3B,3001,,NaN,ME,1969,0,3301,2,1,2288.071076,2288.071076,3505,NO,45.31,59.43,3,8.73,6106,114.278868,123.927822,133.704874,140.010316,I,Above,Hip,0,5701,Wood,52.37238919,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3177,NJBF000070391,607 TRINITY AVE,Atlantic City,NJ,39.36692617,-74.43870969,RES1,3001,,16,NE,1900,1900,3102,2,1,725.438121,725.438121,3505,YES,33.22,45.32,3,4.29,6106,114.344706,123.983326,133.76569,140.058934,I,Above,Flat,0,5701,Wood,39.27012658,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3178,NJBF000070269,512 N INDIANA AVE,Atlantic City,NJ,39.36649461,-74.43778092,RES3B,3001,100,45,ME,1880,1880,3301,3,4,2642.74394,2642.74394,3505,YES,37.85,43.71,3,0.79,6106,114.369836,124.00481,133.788902,140.07999,I,Above,Hip,0,NaN,Wood,40.7776633,0,0,,,,1,1,,0.03,nav,1,1880,3,, 3179,NJBF000070176,2124 MAGELLAN AVE,Atlantic City,NJ,39.36608704,-74.44301182,IND1,3004,761,NaN,E,1969,0,3401,1,1,919.6827156,919.6827156,3505,NO,24.8,34.05,3,8.43,6106,114.261631,123.913865,133.688982,140.00246,I,Above,Flat,0,NaN,Wood,29.42690568,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3180,NJBF000070007,,Atlantic City,NJ,39.3654401,-74.43965777,RES3B,3001,,NaN,ME,1969,0,3301,1,1,835.4187227,835.4187227,3505,NO,20.24,28.88,3,5.91,6106,114.341817,123.981765,133.762801,140.065514,I,Above,Gable,0,NaN,Wood,24.56071372,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3181,NJBF000070197,511 N OHIO AVE,Atlantic City,NJ,39.36617895,-74.4384974,RES3B,3001,,45,ME,1900,1900,3301,2,2,1749.686748,1749.686748,3505,NO,37.01,47.18,3,4.24,6106,114.358126,123.9951,133.778003,140.073205,I,Above,Hip,0,NaN,Wood,42.09250077,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3182,NJBF000070069,2009 CASPIAN AVE,Atlantic City,NJ,39.3657,-74.44075,RES3B,3001,,45,ME,1900,1900,3301,2,2,1325.788668,1325.788668,3505,NO,29.63,39.27,3,-0.28,6106,114.315138,123.959132,133.738221,140.044324,I,Above,Flat,0,NaN,Wood,34.45078936,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3183,NJBF000070786,901 N OHIO AVE,Atlantic City,NJ,39.36843082,-74.43987995,RES1,3001,,45,NE,1925,1925,3102,3,3,669.5626823,669.5626823,3505,NO,47.38,56.11,3,4.48,6106,114.301773,123.946107,133.726048,140.01823,I,Above,Flat,0,5701,Wood,51.74191776,0,0,,,,1,1,,0.03,nav,1,1925,3,, 3184,NJBF000070824,917 N OHIO AVE,Atlantic City,NJ,39.3685545,-74.4401015,RES1,3001,,17,NE,1900,1900,3102,1,1,1372.066704,1372.066704,3505,NO,17.72,30.84,3,5.33,6106,114.295551,123.94077,133.720291,140.012866,I,Above,Hip,0,5701,Wood,24.28307413,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3185,NJBF000070715,1909 GRANT AVE,Atlantic City,NJ,39.3681505,-74.4406615,RES3B,3001,,17,ME,1900,1900,3301,2,1,839.4516848,839.4516848,3505,NO,39.53,52.35,3,7.86,6106,114.288175,123.934826,133.713475,140.009804,I,Above,Gable,0,5701,Wood,45.93719725,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3186,NJBF000070968,711 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36900225,-74.43723592,RES1,3001,,17,NE,1900,1900,3101,1,1,1399.14224,1399.14224,3505,NO,19.16,27.02,3,2.06,6106,114.352124,123.988296,133.772755,140.052224,I,Above,Hip,0,5701,Wood,23.09199544,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3187,NJBF000072585,1635 N MICHIGAN AVE,Atlantic City,NJ,39.37418119,-74.44989162,RES1,3001,,17,NE,1995,1995,3102,1,1,1235.485499,1235.485499,3505,NO,17.29,27.18,3,1.85,6106,114.018921,123.703004,133.463762,139.769028,I,Above,Flat,0,5701,Wood,22.23182266,0,0,,,,1,1,,0.03,nav,1,1995,1,, 3188,NJBF000072523,1650 N MICHIGAN AVE,Atlantic City,NJ,39.37398854,-74.45047873,RES1,3001,,17,NE,1900,1900,3102,1,1,2020.467287,2020.467287,3505,NO,18.21,32.16,3,6.43,6106,114.008358,123.694357,133.454208,139.762167,I,Above,Gable,0,5701,Wood,25.18315179,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3189,NJBF000072461,1620 N MICHIGAN AVE,Atlantic City,NJ,39.37375684,-74.44973969,RES1,3001,,17,NE,1900,1900,3102,1,1,1459.579349,1459.579349,3505,NO,23.95,29.38,3,7.08,6106,114.027017,123.710254,133.471446,139.777967,I,Above,Hip,0,5701,Wood,26.66255476,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3190,NJBF000072691,2014 HAMILTON AVE,Atlantic City,NJ,39.374557,-74.4533365,RES1,3001,,16,NE,1900,1900,3101,1,1,991.4340367,991.4340367,3505,NO,13.65,25.25,3,2.09,6106,113.939883,123.636385,133.391223,139.705757,I,Above,Gable,0,5701,Wood,19.44902109,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3191,NJBF000072848,1822 MADISON AVE,Atlantic City,NJ,39.37518245,-74.45262523,RES1,3001,,17,NE,1900,1900,3101,2,1,1148.485089,1148.485089,3505,NO,26.85,37.25,3,5.16,6106,113.948327,123.642711,133.398448,139.708177,I,Above,Flat,0,5701,Wood,32.04587424,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3192,NJBF000070422,2005 MAGELLAN AVE,Atlantic City,NJ,39.36706082,-74.44135743,RES3B,3001,,16,ME,2005,2005,3301,1,1,866.9534542,866.9534542,3505,NO,27.03,34.17,3,7.93,6106,114.285943,123.93368,133.711401,140.014654,I,Above,Flat,0,5701,Wood,30.59792248,0,0,,,,1,1,,0.03,nav,1,2005,1,, 3193,NJBF000067638,,Atlantic City,NJ,39.35403537,-74.46404646,RES1,3001,,NaN,NE,1969,0,3102,2,1,1110.098425,1110.098425,3505,NO,28.97,36.36,3,4.53,6106,113.949262,123.661984,133.406557,139.844703,I,Above,Gable,0,5701,Wood,32.66281817,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3194,NJBF000072746,1830 N MICHIGAN AVE,Atlantic City,NJ,39.3747725,-74.45319785,RES1,3001,,17,NE,1970,1970,3101,1,1,1162.229006,1162.229006,3505,NO,26.68,37.35,3,8.63,6106,113.940485,123.636635,133.391606,139.70481,I,Above,Gable,0,5701,Wood,32.01579768,0,0,,,,1,1,,0.03,nav,1,1970,1,, 3195,NJBF000072649,1825 EMERSON AVE,Atlantic City,NJ,39.374402,-74.4528375,RES1,3001,,16,NE,1900,1900,3101,1,1,922.3594312,922.3594312,3505,NO,22.26,31.33,3,6.39,6106,113.952472,123.647094,133.402828,139.716489,I,Above,Gable,0,5701,Wood,26.79283147,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3196,NJBF000072673,1835 EMERSON AVE,Atlantic City,NJ,39.3744705,-74.453094,RES1,3001,,17,NE,1970,1970,3101,1,1,1385.339446,1385.339446,3505,NO,12.81,19.2,3,1.44,6106,113.946132,123.641711,133.39699,139.711146,I,Above,Gable,0,5701,Wood,16.00481974,0,0,,,,1,1,,0.03,nav,1,1970,1,, 3197,NJBF000067588,4121 PORTER AVE,Atlantic City,NJ,39.35390369,-74.4626353,RES1,3001,,45,NE,1956,1956,3102,1,2,2501.962715,2501.962715,3505,NO,20.02,25.91,3,2.97,6106,113.981856,123.688824,133.435412,139.869828,I,Above,Flat,0,5701,Wood,22.96778897,0,0,,,,1,1,,0.03,nav,1,1956,1,, 3198,NJBF000072747,2037 N RIVERSIDE DR,Atlantic City,NJ,39.3747785,-74.45464,RES1,3001,100,NaN,NE,1969,0,3101,1,1,501.3756613,501.3756613,3505,NO,16.95,29.24,3,2.75,6106,113.90907,123.610371,133.362959,139.68047,I,Above,Gable,0,5701,Wood,23.09638579,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3199,NJBF000072753,1517 N OHIO AVE,Atlantic City,NJ,39.37479943,-74.44767192,RES1,3001,,NaN,NE,1900,1900,3102,2,1,1967.932378,1967.932378,3505,NO,40.43,46.61,3,3.67,6106,114.060054,123.736881,133.501153,139.796564,I,Above,Gable,0,5701,Wood,43.52261008,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3200,NJBF000072667,1838 MORNINGSIDE DR,Atlantic City,NJ,39.37445155,-74.44649529,RES1,3001,,17,NE,1900,1900,3102,1,1,1944.260728,1944.260728,3505,NO,24.13,34.1,3,6.12,6106,114.089457,123.761984,133.52842,139.821248,I,Above,Gable,0,5701,Wood,29.11586797,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3201,NJBF000072838,1536 PENROSE AVE,Atlantic City,NJ,39.37514335,-74.4481003,RES1,3001,,16,NE,1900,1900,3101,1,1,823.2513548,823.2513548,3505,NO,18.53,30.67,3,4.98,6106,114.046906,123.725454,133.488848,139.784287,I,Above,Hip,0,5701,Wood,24.60191688,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3202,NJBF000071966,1635 N MISSOURI AVE,Atlantic City,NJ,39.37214071,-74.45098036,RES1,3001,,17,NE,1900,1900,3102,1,1,1615.89543,1615.89543,3505,NO,26.04,37.06,3,8.85,6106,114.018485,123.704811,133.464579,139.781844,I,Above,Hip,0,5701,Wood,31.55103415,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3203,NJBF000071450,1614 W RIVERSIDE DR,Atlantic City,NJ,39.37064457,-74.45082377,RES1,3001,,17,NE,1900,1900,3101,1,1,1237.714976,1237.714976,3505,NO,25.4,35.73,3,7.19,6106,114.039026,123.723501,133.484098,139.807096,I,Above,Flat,0,5701,Wood,30.56223037,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3204,NJBF000071691,2236 KUEHNLE AVE,Atlantic City,NJ,39.37129994,-74.45202552,RES1,3001,,17,NE,1997,1997,3101,2,1,1692.219606,1692.219606,3505,NO,28.14,39.75,3,-2.26,6106,114.005377,123.694716,133.453081,139.777245,I,Above,Gable,0,5701,Wood,33.94538945,0,0,,,,1,1,,0.03,nav,1,1997,2,, 3205,NJBF000071878,1646 N MISSOURI AVE,Atlantic City,NJ,39.37188957,-74.45134428,RES1,3001,,17,NE,1965,1965,3101,1,1,1422.910188,1422.910188,3505,NO,14.58,25.59,3,-0.42,6106,114.013446,123.700854,133.460117,139.779609,I,Above,Gable,0,5701,Wood,20.08636344,0,0,,,,1,1,,0.03,nav,1,1965,1,, 3206,NJBF000071519,2316 KUEHNLE AVE,Atlantic City,NJ,39.370819,-74.452334,RES1,3001,,17,NE,1900,1900,3101,1,1,1183.197158,1183.197158,3505,NO,12.68,19.59,3,0.09,6106,114.004201,123.694223,133.452266,139.779445,I,Above,Gable,0,5701,Wood,16.13850499,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3207,NJBF000071531,1639 W RIVERSIDE DR,Atlantic City,NJ,39.37084778,-74.45182445,RES1,3001,,17,NE,1900,1900,3101,1,1,1317.294091,1317.294091,3505,NO,22.18,34.99,3,3.4,6106,114.014957,123.70318,133.46205,139.787464,I,Above,Gable,0,5701,Wood,28.58591755,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3208,NJBF000072801,2043 N RIVERSIDE DR RR,Atlantic City,NJ,39.37498283,-74.45528648,RES1,3001,,NaN,NE,1969,0,3101,1,1,787.2266892,787.2266892,3505,NO,21.84,36.48,3,3.57,6106,113.892719,123.596466,133.347899,139.666436,I,Above,Flat,0,5701,Wood,29.15799268,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3209,NJBF000072569,1407 N OHIO AVE,Atlantic City,NJ,39.37412407,-74.44536819,RES1,3001,,17,NE,1925,1925,3102,2,1,1104.690711,1104.690711,3505,NO,43.52,57.34,3,5.77,6106,114.117557,123.78598,133.554493,139.844743,I,Above,Hip,0,5701,Wood,50.42788922,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3210,NJBF000072561,1607 N MICHIGAN AVE,Atlantic City,NJ,39.37409149,-74.4493156,RES1,3001,,17,NE,1900,1900,3102,1,1,786.2575015,786.2575015,3505,NO,23.45,32.02,3,4.71,6106,114.032431,123.714436,133.476205,139.779962,I,Above,Gable,0,5701,Wood,27.73786652,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3211,NJBF000072642,1529 MADISON AVE,Atlantic City,NJ,39.37437359,-74.44846216,RES1,3001,,17,NE,1900,1900,3102,1,1,1397.540356,1397.540356,3505,NO,20.92,29.76,3,5.36,6106,114.047742,123.726988,133.490088,139.789866,I,Above,Gable,0,5701,Wood,25.33892816,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3212,NJBF000072741,2043 N RIVERSIDE DR,Atlantic City,NJ,39.37475217,-74.45507899,RES1,3001,,16,NE,1900,1900,3101,1,1,1062.67519,1062.67519,3505,NO,15.65,23.99,3,-1.6,6106,113.899814,123.602673,133.354553,139.673469,I,Above,Gable,0,5701,Wood,19.82190391,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3213,NJBF000072222,2124 MURRAY AVE,Atlantic City,NJ,39.37295356,-74.45254491,RES1,3001,,17,NE,1900,1900,3101,1,1,1806.970108,1806.970108,3505,NO,17,22.03,3,4.18,6106,113.975222,123.667755,133.424598,139.743445,I,Above,Gable,0,5701,Wood,19.51287359,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3214,NJBF000072424,1824 N ARKANSAS AVE,Atlantic City,NJ,39.373615,-74.453237,RES1,3001,,16,NE,1900,1900,3101,1,1,1168.318645,1168.318645,3505,NO,13.75,25.38,3,-2.53,6106,113.952686,123.648178,133.403597,139.721804,I,Above,Flat,0,5701,Wood,19.56529461,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3215,NJBF000072276,1413 N MICHIGAN AVE,Atlantic City,NJ,39.373122,-74.446061,RES1,3001,,17,NE,1900,1900,3102,1,1,1471.026173,1471.026173,3505,NO,26.19,35.08,3,8.82,6106,114.113956,123.783936,133.551642,139.848328,I,Above,Gable,0,5701,Wood,30.6372262,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3216,NJBF000072181,1815 N MISSOURI AVE,Atlantic City,NJ,39.37281395,-74.4533373,RES1,3001,,17,NE,1900,1900,3101,1,1,1560.801435,1560.801435,3505,NO,25.54,34.33,3,7.16,6106,113.959593,123.654849,133.410446,139.732349,I,Above,Gable,0,5701,Wood,29.93766622,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3217,NJBF000072310,1421 N MICHIGAN AVE,Atlantic City,NJ,39.37324473,-74.44655836,RES1,3001,,45,NE,1940,1940,3102,2,2,1387.726574,1387.726574,3505,YES,37.36,51.21,3,8.68,6106,114.101794,123.773585,133.540391,139.838305,I,Above,Flat,0,5701,Wood,44.28543554,0,0,,,,1,1,,0.03,nav,1,1940,2,, 3218,NJBF000072432,1600 N MICHIGAN AVE,Atlantic City,NJ,39.37365746,-74.44928637,RES1,3001,,16,NE,1900,1900,3102,1,1,943.5245513,943.5245513,3505,NO,23.03,34.45,3,8.56,6106,114.037998,123.719572,133.481571,139.787014,I,Above,Flat,0,5701,Wood,28.74326115,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3219,NJBF000072155,1655 BEACH AVE,Atlantic City,NJ,39.372739,-74.4511175,RES1,3001,,45,NE,1900,1900,3102,2,2,1805.32825,1805.32825,3505,YES,21.91,31.14,3,-2.92,6106,114.008692,123.695987,133.455288,139.7705,I,Above,Gable,0,5701,Wood,26.52417067,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3220,NJBF000072440,1500 MADISON AVE,Atlantic City,NJ,39.37366903,-74.44726085,RES1,3001,,17,NE,1988,1988,3102,1,1,1807.571149,1807.571149,3505,NO,26.49,32.55,3,7.03,6106,114.081749,123.756304,133.52174,139.820349,I,Above,Gable,0,5701,Wood,29.51994861,0,0,,,,1,1,,0.03,nav,1,1988,1,, 3221,NJBF000072162,1408 N MICHIGAN AVE,Atlantic City,NJ,39.3727589,-74.44613061,RES1,3001,,17,NE,1900,1900,3102,2,1,1330.388963,1330.388963,3505,NO,27.52,41.41,3,0.91,6106,114.116581,123.786497,133.55422,139.852611,I,Above,Hip,0,5701,Wood,34.46157184,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3222,NJBF000072481,1815 N ARKANSAS AVE,Atlantic City,NJ,39.37382046,-74.45283744,RES1,3001,,17,NE,1900,1900,3101,1,1,1450.309613,1450.309613,3505,NO,15.22,24.26,3,-0.55,6106,113.959062,123.653275,133.409267,139.725375,I,Above,Gable,0,5701,Wood,19.73833254,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3223,NJBF000071964,1415 N ARKANSAS AVE,Atlantic City,NJ,39.37213471,-74.44671804,RES1,3001,,17,NE,1900,1900,3102,1,1,1359.791871,1359.791871,3505,NO,10.94,23.04,3,-0.14,6106,114.111003,123.782405,133.549356,139.852311,I,Above,Gable,0,5701,Wood,16.98809413,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3224,NJBF000071815,1520 BEACH AVE,Atlantic City,NJ,39.37171319,-74.44857096,RES1,3001,,27,NE,1900,1900,3102,1,2,1030.186058,1030.186058,3505,NO,12.42,23.18,3,-0.14,6106,114.075671,123.753149,133.517114,139.828155,I,Above,Flat,0,5701,Wood,17.79962405,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3225,NJBF000071830,2040 E RIVERSIDE DR,Atlantic City,NJ,39.37175602,-74.44560909,RES1,3001,,NaN,NE,1969,0,3102,2,1,2239.977294,2239.977294,3505,NO,28.99,43.43,3,-2.86,6106,114.139365,123.806603,133.575588,139.876174,I,Above,Flat,0,5701,Wood,36.21184788,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3226,NJBF000071856,2112 MORNINGSIDE DR,Atlantic City,NJ,39.37182777,-74.44769023,RES1,3001,,17,NE,1900,1900,3102,1,1,1225.74622,1225.74622,3505,NO,13.89,26.47,3,-2.86,6106,114.093457,123.767961,133.533372,139.840935,I,Above,Hip,0,5701,Wood,20.18370877,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3227,NJBF000071853,2112 MORNINGSIDE DR,Atlantic City,NJ,39.3718136,-74.44755812,RES1,3001,,17,NE,1900,1900,3102,1,1,920.1280487,920.1280487,3505,NO,13.64,19.66,3,-2.82,6106,114.096478,123.770511,133.536151,139.843317,I,Above,Hip,0,5701,Wood,16.64742089,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3228,NJBF000071723,2104 E RIVERSIDE DR,Atlantic City,NJ,39.3714013,-74.44575659,RES1,3001,,17,NE,1993,1993,3102,1,1,1433.7281,1433.7281,3505,NO,10.5,20.42,3,-1.08,6106,114.14024,123.807662,133.576518,139.879055,I,Above,Flat,0,5701,Wood,15.46034735,0,0,,,,1,1,,0.03,nav,1,1993,1,, 3229,NJBF000071147,1042 N OHIO AVE,Atlantic City,NJ,39.36957761,-74.44143082,RES3A,3001,,33,NE,1900,1900,3301,2,1,951.8708814,951.8708814,3505,YES,39.03,49.89,3,1.67,6106,114.254894,123.905727,133.682639,139.976418,I,Above,Gable,0,5701,Wood,44.4579964,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3230,NJBF000071202,1048 N OHIO AVE,Atlantic City,NJ,39.36974755,-74.44135833,RES3A,3001,,17,NE,1925,1900,3301,2,1,8264.72716,8264.72716,3505,YES,20.64,34.81,3,-0.54,6106,114.254495,123.905262,133.682251,139.975091,I,Above,Flat,0,5701,Wood,27.72121321,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3231,NJBF000071650,2312 MURRAY AVE,Atlantic City,NJ,39.37117295,-74.45338019,RES1,3001,,16,NE,1900,1900,3101,2,1,904.2754399,904.2754399,3505,YES,35.17,48.09,3,2.77,6106,113.977384,123.671471,133.427665,139.756662,I,Above,Gable,0,5701,Wood,41.62673288,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3232,NJBF000071146,826 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36957508,-74.43825659,RES1,3001,,17,NE,1900,1900,3102,2,1,1235.869165,1235.869165,3505,NO,28.62,35.59,3,5.86,6106,114.323433,123.963629,133.746121,140.027525,I,Above,Gable,0,5701,Wood,32.1049967,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3233,NJBF000071343,1609 MCKINLEY AVE,Atlantic City,NJ,39.37028591,-74.43774925,RES1,3001,,17,NE,1900,1900,3101,1,1,1445.134266,1445.134266,3505,NO,26.31,39.46,3,8,6106,114.326114,123.965403,133.748599,140.025296,I,Above,Hip,0,5701,Wood,32.88497222,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3234,NJBF000071499,1001 N DR MARTIN LUTHER K,Atlantic City,NJ,39.37078161,-74.43840217,RES1,3001,,17,NE,1966,1966,3101,1,1,2184.515481,2184.515481,3505,NO,13.56,28.16,3,2.65,6106,114.306289,123.94826,133.73015,140.007554,I,Above,Hip,0,5701,Wood,20.85779079,0,0,,,,1,1,,0.03,nav,1,1966,1,, 3235,NJBF000071600,2316 MURRAY AVE,Atlantic City,NJ,39.371042,-74.4533785,RES1,3001,,17,NE,1983,1983,3101,1,1,1340.711718,1340.711718,3505,NO,16.32,23.83,3,1.73,6106,113.97893,123.672898,133.429146,139.758693,I,Above,Flat,0,5701,Wood,20.07177131,0,0,,,,1,1,,0.03,nav,1,1983,1,, 3236,NJBF000071452,1576 W RIVERSIDE DR,Atlantic City,NJ,39.37064533,-74.45012671,RES1,3001,,17,NE,1900,1900,3101,1,1,1073.911208,1073.911208,3505,YES,19.27,33.07,3,0.63,6106,114.054167,123.736168,133.497922,139.818607,I,Above,Flat,0,5701,Wood,26.16814569,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3237,NJBF000069358,673 N TRENTON AVE,Atlantic City,NJ,39.35985181,-74.46274672,RES1,3001,,16,NE,1900,1900,3101,1,1,976.3052947,976.3052947,3505,NO,22.24,28.59,3,8.08,6106,113.906165,123.622737,133.368069,139.775404,I,Above,Flat,0,5701,Wood,25.41912947,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3238,NJBF000069202,629 N TRENTON AVE,Atlantic City,NJ,39.3591505,-74.4621175,RES1,3001,,17,NE,1900,1900,3101,1,1,1564.70372,1564.70372,3505,NO,21.1,35.85,3,2.66,6106,113.928485,123.641635,133.38805,139.796779,I,Above,Gable,0,5701,Wood,28.47525828,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3239,NJBF000069126,730 WARRENA RD,Atlantic City,NJ,39.35886845,-74.46411718,RES1,3001,,17,NE,1989,1989,3101,2,1,1120.42183,1120.42183,3505,NO,40.36,45.61,3,2.66,6106,113.88807,123.608595,133.352177,139.767972,I,Above,Hip,0,5701,Wood,42.98450198,0,0,,,,1,1,,0.03,nav,1,1989,2,, 3240,NJBF000068601,600 N DOVER AVE,Atlantic City,NJ,39.35721252,-74.4647604,RES1,3001,,17,NE,1952,1952,3101,1,1,1213.288522,1213.288522,3505,YES,19.54,30.76,3,3.22,6106,113.894209,123.614821,133.357846,139.783196,I,Above,Gable,0,5701,Wood,25.1512639,0,0,,,,1,1,,0.03,nav,1,1952,1,, 3241,NJBF000068642,601 N ALBANY AVE,Atlantic City,NJ,39.35730684,-74.45825368,COM1,3003,,NaN,ME,1969,0,3401,2,1,37901.49222,37901.49222,3507,NO,31.36,43.79,1,2.81,6106,114.035649,123.731215,133.483702,139.888645,I,Above,Flat,0,NaN,Wood,37.57512229,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3242,NJBF000068603,601 N ALBANY AVE,Atlantic City,NJ,39.35721789,-74.45745178,COM1,3003,,NaN,ME,1969,0,3401,1,1,6160.717567,6160.717567,3507,NO,18.67,33.25,1,-0.46,6106,114.054284,123.746659,133.500362,139.903022,I,Above,Flat,0,NaN,Wood,25.95774265,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3243,NJBF000069112,601 N ALBANY AVE,Atlantic City,NJ,39.35881281,-74.45948269,COM8,3003,,NaN,ME,1969,0,3401,2,1,84010.01685,84010.01685,3507,NO,32.38,46.22,1,0.22,6106,113.990315,123.692838,133.443214,139.845417,I,Above,Hip,0,NaN,Wood,39.30228467,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3244,NJBF000068624,566 N ELBERON AVE,Atlantic City,NJ,39.35726906,-74.46354653,RES1,3001,,45,NE,1900,1900,3101,1,2,1517.680889,1517.680889,3505,NO,26.58,33.89,3,8.13,6106,113.920146,123.636089,133.380834,139.802443,I,Above,Gable,0,5701,Wood,30.23354556,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3245,NJBF000068821,634 WISTERIA RD,Atlantic City,NJ,39.35771298,-74.46193285,RES1,3001,,16,NE,1930,1930,3101,1,1,633.8259938,633.8259938,3505,NO,14.09,26.65,3,1.99,6106,113.950096,123.660426,133.407415,139.822181,I,Above,Hip,0,5701,Wood,20.37233701,0,0,,,,1,1,,0.03,nav,1,1930,1,, 3246,NJBF000068792,542 N TRENTON AVE,Atlantic City,NJ,39.35763246,-74.46146908,RES1,3001,,27,NE,1900,1925,3101,2,2,1262.337884,1262.337884,3505,NO,19.74,30.95,3,-2.12,6106,113.96126,123.669671,133.417352,139.831077,I,Above,Flat,0,5701,Wood,25.34354108,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3247,NJBF000069104,4004 WEST END AVE,Atlantic City,NJ,39.35878092,-74.46489554,RES1,3001,,17,NE,1900,1900,3101,2,1,1975.288576,1975.288576,3505,YES,29.23,42.59,3,7.26,6106,113.872028,123.595481,133.337968,139.756335,I,Above,Gable,0,5701,Wood,35.90961348,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3248,NJBF000068536,3801 FILBERT,Atlantic City,NJ,39.35704827,-74.46094565,RES1,3001,,17,NE,1940,1940,3101,1,1,1856.17579,1856.17579,3505,NO,15.86,23.75,3,3.2,6106,113.979895,123.685394,133.433946,139.848712,I,Above,Gable,0,5701,Wood,19.80709579,0,0,,,,1,1,,0.03,nav,1,1940,1,, 3249,NJBF000068324,,Atlantic City,NJ,39.35635961,-74.46110327,RES1,3001,,NaN,NE,1969,0,3102,2,1,1260.920109,1260.920109,3505,NO,24.82,30.36,3,-1.03,6106,113.984934,123.689966,133.438407,139.85679,I,Above,Flat,0,5701,Wood,27.58898016,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3250,NJBF000068629,557 N ELBERON AVE,Atlantic City,NJ,39.3572785,-74.46298971,RES1,3001,,17,NE,1957,1957,3101,1,1,1837.907188,1837.907188,3505,NO,16.87,22.3,3,0.71,6106,113.932256,123.646039,133.391582,139.811513,I,Above,Gable,0,5701,Wood,19.58429186,0,0,,,,1,1,,0.03,nav,1,1957,1,, 3251,NJBF000068146,467 N ELBERON AVE,Atlantic City,NJ,39.35579916,-74.46183815,RES1,3001,,16,NE,1900,1900,3102,1,1,1116.202903,1116.202903,3505,NO,19.68,33.52,3,4.76,6106,113.975761,123.68275,133.430215,139.853454,I,Above,Hip,0,5701,Wood,26.60067298,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3252,NJBF000068068,432 N HARRISBURG AVE,Atlantic City,NJ,39.35553077,-74.46099821,RES1,3001,,27,NE,1900,1900,3102,2,2,882.1829615,882.1829615,3505,YES,36.02,49.54,3,5.17,6106,113.997491,123.70079,133.449512,139.871327,I,Above,Flat,0,5701,Wood,42.78090554,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3253,NJBF000068564,556 N ELBERON AVE,Atlantic City,NJ,39.35713347,-74.46343722,RES1,3001,,17,NE,2015,2015,3101,1,1,1076.53598,1076.53598,3505,NO,21.5,32.27,3,5.12,6106,113.924231,123.639538,133.384467,139.806386,I,Above,Hip,0,5701,Wood,26.88687426,0,0,,,,1,1,,0.03,nav,1,2015,1,, 3254,NJBF000068076,424 WISTERIA RD,Atlantic City,NJ,39.35555,-74.4602275,RES1,3001,,27,NE,1920,1900,3102,2,2,1164.096383,1164.096383,3505,NO,23.22,30.17,3,-1.36,6106,114.014124,123.714478,133.464319,139.883572,I,Above,Flat,0,5701,Wood,26.69326178,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3255,NJBF000068219,440 N TRENTON AVE,Atlantic City,NJ,39.356037,-74.4602205,RES1,3001,,NaN,NE,1969,0,3102,2,1,906.9331214,906.9331214,3505,NO,34,48.53,3,-0.02,6106,114.008248,123.70936,133.459139,139.876177,I,Above,Gable,0,5701,Wood,41.26243341,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3256,NJBF000068274,440 N TRENTON AVE,Atlantic City,NJ,39.35620716,-74.46035512,RES1,3001,,NaN,NE,1969,0,3102,2,1,917.6511315,917.6511315,3505,NO,44.25,54.84,3,8.33,6106,114.003212,123.705111,133.454668,139.871371,I,Above,Hip,0,5701,Wood,49.54228754,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3257,NJBF000068297,440 N TRENTON AVE,Atlantic City,NJ,39.35626282,-74.46040289,RES1,3001,,NaN,NE,1969,0,3102,2,1,947.3080092,947.3080092,3505,NO,27.81,37.24,3,4.46,6106,114.001469,123.703642,133.45312,139.869724,I,Above,Flat,0,5701,Wood,32.52793135,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3258,NJBF000068568,527 N HARRISBURG AVE,Atlantic City,NJ,39.35714051,-74.46173179,RES1,3001,,16,NE,1930,1930,3101,1,1,823.7161446,823.7161446,3505,NO,16.88,26.94,3,1.99,6106,113.961526,123.670209,133.417598,139.834372,I,Above,Flat,0,5701,Wood,21.91007771,0,0,,,,1,1,,0.03,nav,1,1930,1,, 3259,NJBF000067765,465 N RICHMOND AVE,Atlantic City,NJ,39.35442551,-74.46434987,RES1,3001,,45,NE,1968,1968,3102,2,2,1830.408748,1830.408748,3505,YES,29.58,42.81,3,2.01,6106,113.93771,123.652283,133.396373,139.833602,I,Above,Gable,0,5701,Wood,36.19343765,0,0,,,,1,1,,0.03,nav,1,1968,2,, 3260,NJBF000066114,4201 VENTNOR AVE,Atlantic City,NJ,39.3489405,-74.46049034,RES3A,3001,51,NaN,NE,1969,0,3301,1,1,2782.733579,2782.733579,3505,NO,16.26,30.25,3,-2.57,6106,114.091639,123.781168,133.531131,139.980724,I,Above,Gable,0,5701,Wood,23.25603103,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3261,NJBF000069555,129 S VIRGINIA AVE,Atlantic City,NJ,39.36158201,-74.42080399,RES3E,3003,,NaN,E,1969,0,3305,7,1,10671.9756,10671.9756,3507,NO,105.79,119.12,1,1.37,6110,114.792849,124.366393,134.182125,140.413483,I,Above,Flat,0,NaN,Wood,112.4517257,0,0,,,,2,2,,1,nav,1,1969,7,, 3262,NJBF000069142,2325 ARCTIC AVE,Atlantic City,NJ,39.35892287,-74.44163558,RES3B,3001,738,NaN,ME,1900,0,3301,2,1,2636.126946,2636.126946,3505,YES,27.66,40.47,3,6,6106,114.377536,124.014921,133.793588,140.129161,I,Above,Gable,0,NaN,Wood,34.06947761,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3263,NJBF000065698,15 S DELANCY PL,Atlantic City,NJ,39.34785346,-74.46147082,RES3A,3001,,45,NE,1900,1900,3301,2,2,1435.405366,1435.405366,3505,NO,32.27,46.62,3,7.87,6106,114.084094,123.775298,133.523876,139.981739,I,Above,Hip,0,5701,Wood,39.4436576,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3264,NJBF000070089,815 ATLANTIC AVE,Atlantic City,NJ,39.36575665,-74.42177538,COM1,3003,211,NaN,ME,1969,0,3401,2,1,151186.8585,151186.8585,3507,NO,36.53,47.67,1,2.98,6106,114.721932,124.304938,134.118506,140.341108,I,Above,Flat,0,NaN,Wood,42.10331087,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3265,NJBF000070035,1201 ARCTIC AVE,Atlantic City,NJ,39.36557097,-74.42763583,RES3D,3004,29,NaN,E,1969,0,3303,3,1,8494.18678,8494.18678,3505,NO,34.11,48.31,3,-1.89,6106,114.598869,124.199693,134.002275,140.252768,I,Above,Hip,0,NaN,Wood,41.20965713,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3266,NJBF000069854,1201 ARCTIC AVE,Atlantic City,NJ,39.3645745,-74.42770037,RES3D,3004,29,NaN,E,1969,0,3303,3,1,8498.506654,8498.506654,3505,NO,55.66,67.57,3,0.48,6106,114.609385,124.208985,134.011585,140.265776,I,Above,Gable,0,NaN,Wood,61.61421413,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3267,NJBF000071033,110 N RHODE ISLAND AVE,Atlantic City,NJ,39.36919229,-74.4171012,RES3D,3004,,17,E,2006,2006,3303,2,1,1311.258407,1311.258407,3505,NO,24.01,30.21,3,2.63,6106,114.780729,124.354774,134.176918,140.366057,I,Above,Gable,0,NaN,Wood,27.10985455,0,0,,,,1,1,,0.03,nav,1,2006,2,, 3268,NJBF000072359,528 N NEW JERSEY AVE,Atlantic City,NJ,39.37338023,-74.42471695,RES1,3001,,17,NE,1900,1900,3102,1,1,1620.195263,1620.195263,3505,NO,9.81,22.7,3,-2.07,6106,114.569783,124.171377,133.977844,140.188499,I,Above,Hip,0,5701,Wood,16.25540948,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3269,NJBF000068526,515 N HARRISBURG AVE,Atlantic City,NJ,39.35701386,-74.46160235,RES1,3001,,16,NE,1900,1900,3101,1,1,1277.703896,1277.703896,3505,NO,21.56,33.28,3,6.51,6106,113.965937,123.673922,133.421523,139.838479,I,Above,Gable,0,5701,Wood,27.42069261,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3270,NJBF000072867,1515 PENROSE AVE,Atlantic City,NJ,39.37529768,-74.44745746,RES1,3001,,16,NE,1925,1925,3101,1,1,1101.223211,1101.223211,3505,NO,24.64,31.74,3,7.8,6106,114.059084,123.735527,133.499957,139.792624,I,Above,Gable,0,5701,Wood,28.19085134,0,0,,,,1,1,,0.03,nav,1,1925,1,, 3271,NJBF000069041,2316 ARCTIC AVE,Atlantic City,NJ,39.35850318,-74.4410306,COM1,3003,100,NaN,ME,1969,0,3401,3,1,7946.271816,7946.271816,3507,NO,34.72,45.6,1,0.5,6106,114.395769,124.030374,133.810099,140.144708,I,Above,Flat,0,NaN,Wood,40.16199337,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3272,NJBF000068566,31 N TEXAS AVE,Atlantic City,NJ,39.35713643,-74.44366332,RES3B,3001,,27,ME,1920,1920,3301,2,2,1478.657157,1478.657157,3505,NO,39.27,50.61,3,1.95,6106,114.355546,123.997163,133.772616,140.123422,I,Above,Flat,0,NaN,Wood,44.94171765,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3273,NJBF000068591,33 N TEXAS AVE,Atlantic City,NJ,39.35719303,-74.44369971,RES3B,3001,,17,ME,1900,1900,3301,2,1,1097.913178,1097.913178,3505,NO,31.65,41.23,3,4.55,6106,114.354042,123.995884,133.771272,140.122014,I,Above,Flat,0,NaN,Wood,36.44063673,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3274,NJBF000067728,109 S TEXAS AVE,Atlantic City,NJ,39.35429411,-74.4417567,RES3A,3004,,33,NE,1900,1900,3301,3,1,7340.575045,7340.575045,3505,YES,48.23,57.87,3,8.7,6106,114.432072,124.062044,133.84077,140.194095,I,Above,Flat,0,5701,Wood,53.04863337,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3275,NJBF000069043,2324 ARCTIC AVE,Atlantic City,NJ,39.35850602,-74.44134242,COM1,3003,100,NaN,ME,1969,0,3401,3,1,8132.006449,8132.006449,3507,YES,42.4,55.37,1,2.62,6106,114.389001,124.024695,133.803896,140.139806,I,Above,Flat,0,NaN,Wood,48.88468947,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3276,NJBF000069198,216 N ARIZONA AVE,Atlantic City,NJ,39.35914456,-74.44626693,RES3A,3001,,27,NE,1900,1900,3301,2,2,17317.92879,17317.92879,3505,YES,29.64,37.17,3,-2.93,6106,114.274419,123.928511,133.699481,140.053031,I,Above,Gable,0,5701,Wood,33.4035125,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3277,NJBF000069066,2621 FAIRMOUNT AVE,Atlantic City,NJ,39.3586418,-74.44607488,RES3A,3001,,33,NE,1969,1900,3301,2,1,7616.499918,7616.499918,3505,YES,29.45,41.44,3,8.1,6106,114.284732,123.937357,133.708704,140.06348,I,Above,Flat,0,5701,Wood,35.44254853,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3278,NJBF000071429,813 ADRIATIC AVE,Atlantic City,NJ,39.37058895,-74.4246695,RES1,3001,,17,NE,1900,1900,3102,2,1,1609.245132,1609.245132,3505,YES,20.27,26.39,3,-1.85,6106,114.603175,124.201415,134.008654,140.228585,I,Above,Flat,0,5701,Wood,23.33375301,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3279,NJBF000070374,816 N ARKANSAS AVE,Atlantic City,NJ,39.36687443,-74.44263968,RES3B,3001,,33,ME,1900,1926,3301,2,1,6195.664743,6195.664743,3505,YES,32.92,42.12,3,-1.27,6106,114.260397,123.912301,133.68786,139.996822,I,Above,Flat,0,5701,Wood,37.52086014,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3280,NJBF000067582,140 S BELLEVUE AVE,Atlantic City,NJ,39.353889,-74.441056,RES3A,3004,,45,NE,1900,1900,3301,3,3,918.404297,918.404297,3505,YES,49.46,56.6,3,0.38,6106,114.452305,124.079075,133.858963,140.210696,I,Above,Flat,0,5701,Wood,53.03018666,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3281,NJBF000071807,1410 N ARKANSAS AVE,Atlantic City,NJ,39.37169059,-74.44632786,RES1,3001,,16,NE,1900,1900,3102,1,1,1048.670996,1048.670996,3505,NO,18.84,24.82,3,7.04,6106,114.124542,123.7942,133.561977,139.865363,I,Above,Gable,0,5701,Wood,21.82858141,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3282,NJBF000069950,202 N TENNESSEE AVE,Atlantic City,NJ,39.36516656,-74.43036484,RES3D,3004,,17,E,2002,2002,3303,2,1,1510.978985,1510.978985,3505,NO,34.79,42.92,3,8.1,6106,114.545167,124.154092,133.951721,140.215893,I,Above,Hip,0,NaN,Wood,38.85517856,0,0,,,,1,1,,0.03,nav,1,2002,2,, 3283,NJBF000070179,416 ROBINSON AVE,Atlantic City,NJ,39.36609515,-74.43635827,RES1,3001,,45,NE,1930,1930,3101,2,2,1686.424122,1686.424122,3507,NO,26.93,32.31,1,0.72,6106,114.405248,124.034973,133.821662,140.108356,I,Above,Hip,0,5701,Wood,29.61845645,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3284,NJBF000070954,1731 GRANT AVE,Atlantic City,NJ,39.36895998,-74.43851412,RES1,3001,,16,NE,2010,2010,3102,2,1,811.0229224,811.0229224,3505,NO,45.31,53.87,3,7.75,6106,114.325064,123.965428,133.747631,140.032387,I,Above,Flat,0,5701,Wood,49.59252794,0,0,,,,1,1,,0.03,nav,1,2010,2,, 3285,NJBF000070290,1421 DREXEL AVE,Atlantic City,NJ,39.36658713,-74.43242607,RES3C,3003,,45,E,1900,1900,3305,2,2,2780.401896,2780.401896,3507,YES,35.23,42.43,1,-0.24,6106,114.484036,124.101521,133.89516,140.16335,I,Above,Flat,0,NaN,Wood,38.83040216,0,0,,,,2,2,,0.03,nav,1,1900,2,, 3286,NJBF000072828,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37510456,-74.41886283,RES3D,3001,,NaN,ME,1969,0,3301,1,1,7242.610272,7242.610272,3507,NO,13.47,25.22,1,1.75,6106,114.674565,124.260916,134.078327,140.256723,I,Above,Hip,0,NaN,Wood,19.34201224,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3287,NJBF000073572,5222 HARBOR BEACH BLVD,Atlantic City,NJ,39.38169291,-74.40863188,RES1,3001,,16,NE,1975,1975,3103,1,1,2315.552381,2315.552381,3505,NO,17.31,30.73,3,4.04,6110,114.816041,124.381427,134.217693,140.327122,I,Above,Hip,0,5701,Wood,24.01628146,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 3288,NJBF000073659,6 BRIGHTON DRIVE,Atlantic City,NJ,39.38232632,-74.41016907,RES1,3001,,18,NE,1988,1988,3103,3,1,2149.575551,2149.575551,3505,NO,53.87,65.43,3,3.94,6106,114.776593,124.346486,134.17932,140.294182,I,Above,Hip,0,5701,Wood,59.65013368,0,1.1,,,,1,1,,0.03,nav,1,1988,3,, 3289,NJBF000073642,8 ONTARIO DRIVE,Atlantic City,NJ,39.38217054,-74.40769482,RES1,3001,,43,NE,1985,1985,3103,2,2,1190.370303,1190.370303,3505,NO,27.27,39.43,3,-1.08,6106,114.830379,124.393841,134.231912,140.335375,I,Above,Gable,0,5701,Wood,33.35038529,0,0,,,,1,1,,0.03,nav,1,1985,2,, 3290,NJBF000073610,,Atlantic City,NJ,39.38200186,-74.40669703,RES1,3001,,NaN,NE,1969,0,3103,4,1,1872.573298,1872.573298,3505,NO,70.76,77.31,3,2.02,6110,114.853247,124.414046,134.25428,140.353397,I,Above,Flat,0,5701,Wood,74.03494582,0,0,,,,1,1,,0.35,nav,1,1969,4,, 3291,NJBF000073317,5206 WATERVIEW DR,Atlantic City,NJ,39.37978004,-74.40691464,RES1,3001,,16,NE,1975,1975,3103,2,1,2097.507992,2097.507992,3505,YES,19.93,27.01,3,-1.52,6106,114.873737,124.432864,134.273339,140.380148,I,Above,Hip,0,5701,Wood,23.47002204,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3292,NJBF000073194,8 HARBOUR COURT,Atlantic City,NJ,39.37883119,-74.4067889,RES1,3001,,16,NE,1975,1975,3103,2,1,2022.027278,2022.027278,3505,NO,36.08,42.25,3,0.06,6106,114.887161,124.444957,134.285969,140.394988,I,Above,Gable,0,5701,Wood,39.16192835,0,0,,,,1,1,,0.03,nav,1,1975,2,, 3293,NJBF000073635,1 BRIGHTON DRIVE,Atlantic City,NJ,39.38214901,-74.41063225,RES1,3001,,17,NE,1993,1993,3103,2,1,1853.524309,1853.524309,3505,NO,43.83,50.38,3,7.6,6106,114.768824,124.339751,134.171683,140.289285,I,Above,Hip,0,5701,Wood,47.1074116,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 3294,NJBF000073188,5200 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.378797,-74.404959,RES1,3001,,17,NE,1975,1975,3102,2,1,1765.747472,1765.747472,3507,NO,25.58,35.4,1,2.46,6106,114.926003,124.479136,134.324011,140.424021,I,Above,Gable,0,5701,Wood,30.491919,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3295,NJBF000073731,30 ROSS DRIVE EAST,Atlantic City,NJ,39.38277885,-74.40012091,RES3C,3001,,37,ME,1986,1986,3301,2,1,3419.396991,3419.396991,3507,NO,24.87,36.52,1,2.91,6106,114.982295,124.527921,134.381983,140.446085,I,Above,Gable,0,NaN,Wood,30.6951089,0,0,,,,1,1,,0.03,nav,1,1986,2,, 3296,NJBF000073722,9 MANITOBA AVE,Atlantic City,NJ,39.38273178,-74.40535466,RES3A,3001,,17,NE,2003,2003,3301,2,1,1719.527402,1719.527402,3505,NO,32.49,47.11,3,3.49,6106,114.873227,124.431391,134.274223,140.364609,I,Above,Hip,0,5701,Wood,39.79774755,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 3297,NJBF000073090,8037 BLACK HORSE PIKE,Atlantic City,NJ,39.37748699,-74.48884849,COM1,3003,530,NaN,ME,1969,0,3401,1,1,895.1363911,895.1363911,3507,NO,15.21,26.47,1,0.45,6106,113.128706,122.964269,132.664954,139.032914,I,Above,Gable,0,NaN,Wood,20.83996845,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3298,NJBF000073389,7 SANDY LANE,Atlantic City,NJ,39.38033414,-74.40594177,RES1,3001,,16,NE,1975,1975,3102,2,1,1960.27596,1960.27596,3507,NO,33.45,42.48,1,0.08,6106,114.887911,124.445161,134.28752,140.387883,I,Above,Gable,0,5701,Wood,37.96713262,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3299,NJBF000073779,702 LAGOON BLVD,Atlantic City,NJ,39.38309774,-74.40670359,RES1,3001,,43,NE,1985,1985,3103,2,2,1316.148829,1316.148829,3505,NO,22.53,35.71,3,0.44,6106,114.840814,124.402651,134.242493,140.338382,I,Above,Hip,0,5701,Wood,29.11987627,0,0,,,,1,1,,0.03,nav,1,1985,2,, 3300,NJBF000073629,5219 HARBOR BEACH BLVD,Atlantic City,NJ,39.38211894,-74.40808277,RES1,3001,,16,NE,1975,1975,3103,1,1,2257.155759,2257.155759,3505,NO,19.32,26.42,3,4.4,6106,114.822805,124.387197,134.224471,140.329966,I,Above,Hip,0,5701,Wood,22.86966407,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 3301,NJBF000073877,,Atlantic City,NJ,39.38371992,-74.40401993,RES3C,3001,,NaN,ME,1969,0,3301,2,1,9997.380338,9997.380338,3507,NO,27.93,38.81,1,1.33,6106,114.890158,124.445988,134.291326,140.372248,I,Above,Flat,0,NaN,Wood,33.36874617,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3302,NJBF000073113,5219 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37783861,-74.4066786,RES1,3001,,16,NE,1975,1975,3103,2,1,1606.757525,1606.757525,3505,NO,29.7,37.35,3,-0.86,6106,114.900782,124.457197,134.298708,140.410137,I,Above,Gable,0,5701,Wood,33.52283537,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3303,NJBF000073586,5215 HARBOR BEACH BLVD,Atlantic City,NJ,39.38182604,-74.40790059,RES1,3001,,17,NE,1987,1987,3103,2,1,1969.652415,1969.652415,3505,NO,45.44,58.08,3,6.76,6106,114.829921,124.393579,134.231334,140.33683,I,Above,Flat,0,5701,Wood,51.76078229,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 3304,NJBF000073750,2 MANITOBA AVE,Atlantic City,NJ,39.382904,-74.4063285,RES1,3001,,43,NE,1986,1986,3103,2,2,687.5395328,687.5395328,3505,NO,30.68,40.65,3,4.57,6106,114.850859,124.411588,134.252293,140.346934,I,Above,Hip,0,5701,Wood,35.66399678,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 3305,NJBF000073764,2 MANITOBA AVE,Atlantic City,NJ,39.38301558,-74.40627035,RES1,3001,,43,NE,1986,1986,3103,2,2,1482.657253,1482.657253,3505,NO,39.69,50.23,3,3.65,6106,114.850844,124.41153,134.25232,140.346342,I,Above,Flat,0,5701,Wood,44.95726798,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 3306,NJBF000073527,5218 HARBOR BEACH BLVD,Atlantic City,NJ,39.38136861,-74.40836818,RES1,3001,,16,NE,1981,1981,3103,2,1,1734.032432,1734.032432,3505,YES,31.16,37.18,3,0.6,6110,114.825237,124.389645,134.226573,140.335704,I,Above,Gable,0,5701,Wood,34.16959015,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 3307,NJBF000073250,32 OCEAN DRIVE WEST,Atlantic City,NJ,39.37933259,-74.40882165,RES1,3001,,21,NE,2010,2010,3103,3,1,2101.443045,2101.443045,3505,YES,54.58,63.29,3,5.29,6106,114.83868,124.402223,134.238839,140.356327,I,Above,Hip,0,5701,Wood,58.93257357,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 3308,NJBF000073726,22 HORIZON LANE,Atlantic City,NJ,39.38275172,-74.41077674,RES1,3001,,37,NE,2000,2000,3103,2,1,3292.004329,3292.004329,3505,NO,26.8,34.12,3,5.5,6106,114.759025,124.330853,134.162267,140.278706,I,Above,Hip,0,5701,Wood,30.45736316,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 3309,NJBF000073653,,Atlantic City,NJ,39.38227398,-74.40679766,RES1,3001,,NaN,NE,1969,0,3103,4,1,1788.05199,1788.05199,3505,NO,70.38,78.7,3,1.39,6110,114.848071,124.409381,134.249309,140.348108,I,Above,Gable,0,5701,Wood,74.54286126,0,0,,,,1,1,,0.35,nav,1,1969,4,, 3310,NJBF000073734,,Atlantic City,NJ,39.38278683,-74.40752703,RES1,3001,,NaN,NE,1969,0,3103,6,1,1329.789742,1329.789742,3505,NO,75.59,86.16,3,8.78,6106,114.827007,124.390613,134.228826,140.32963,I,Above,Flat,0,5701,Wood,80.87692361,0,0,,,,1,1,,0.03,nav,1,1969,6,, 3311,NJBF000073444,4 SEA SPRAY COURT,Atlantic City,NJ,39.38076009,-74.40570232,RES1,3001,,17,NE,1975,1975,3102,2,1,2259.869043,2259.869043,3507,YES,22.27,33.59,1,0.95,6106,114.888135,124.445223,134.28796,140.385876,I,Above,Gable,0,5701,Wood,27.93113552,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3312,NJBF000073469,5 SURF LANE,Atlantic City,NJ,39.38096892,-74.40510464,RES1,3001,,17,NE,1975,1975,3102,3,1,1408.878274,1408.878274,3507,NO,47.96,56.15,1,2.02,6106,114.898308,124.454124,134.298061,140.392406,I,Above,Gable,0,5701,Wood,52.05309492,0,1.1,,,,1,1,,0.03,nav,1,1975,3,, 3313,NJBF000073407,17 OCEAN DRIVE WEST,Atlantic City,NJ,39.38048264,-74.40893028,RES1,3001,,16,NE,1977,1977,3103,2,1,1924.55591,1924.55591,3505,NO,31.61,41.02,3,4.37,6106,114.823396,124.388379,134.224418,140.338946,I,Above,Gable,0,5701,Wood,36.31369876,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 3314,NJBF000073398,5102 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.38039788,-74.40317253,RES1,3001,,16,NE,1975,1975,3102,2,1,2385.384073,2385.384073,3507,YES,33.47,45.44,1,1.38,6106,114.945289,124.495746,134.343966,140.430332,I,Above,Hip,0,5701,Wood,39.45668331,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 3315,NJBF000073520,4 LAGOON COURT,Atlantic City,NJ,39.38131999,-74.40913294,RES1,3001,,16,NE,1975,1975,3103,2,1,1755.802324,1755.802324,3505,YES,33.17,44.32,3,-0.74,6106,114.809692,124.376005,134.211347,140.324318,I,Above,Hip,0,5701,Wood,38.74806998,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3316,NJBF000073591,13 ONTARIO DRIVE,Atlantic City,NJ,39.38186154,-74.40696029,RES1,3001,,43,NE,1985,1985,3103,2,2,1339.684724,1339.684724,3505,NO,35.76,50.31,3,-0.63,6110,114.849295,124.410619,134.250344,140.35116,I,Above,Gable,0,5701,Wood,43.03235343,0,0,,,,1,1,,0.35,nav,1,1985,2,, 3317,NJBF000073510,9 OCEAN DRIVE EAST,Atlantic City,NJ,39.38121881,-74.40348917,RES1,3001,,16,NE,1975,1975,3102,2,1,1481.103898,1481.103898,3507,NO,24.5,29.93,1,2.07,6106,114.92938,124.481475,134.328775,140.41434,I,Above,Gable,0,5701,Wood,27.21038472,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3318,NJBF000073137,3 HARBOUR COURT,Atlantic City,NJ,39.37817411,-74.40681615,RES1,3001,,16,NE,1975,1975,3103,2,1,1888.316209,1888.316209,3505,NO,34.85,44.95,3,0.19,6106,114.894077,124.451218,134.292354,140.403465,I,Above,Hip,0,5701,Wood,39.90022748,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3319,NJBF000073425,3 SURF LANE,Atlantic City,NJ,39.38062087,-74.40475777,RES1,3001,,16,NE,1975,1975,3102,1,1,1970.549421,1970.549421,3507,NO,17.05,31.41,1,1.98,6106,114.909523,124.464119,134.308899,140.402544,I,Above,Gable,0,5701,Wood,24.23087399,0,0,,,,1,1,,0.03,nav,1,1975,1,, 3320,NJBF000073683,10 MANITOBA AVE,Atlantic City,NJ,39.38247472,-74.40576096,RES3A,3001,,43,NE,1984,1984,3301,2,2,1439.324998,1439.324998,3505,NO,37.84,45.65,3,6.38,6106,114.86759,124.426512,134.268569,140.361705,I,Above,Flat,0,5701,Wood,41.74275776,0,0,,,,1,1,,0.03,nav,1,1984,2,, 3321,NJBF000073464,8 SURF LANE,Atlantic City,NJ,39.38094164,-74.40439237,RES1,3001,,16,NE,1975,1975,3102,1,1,1888.242205,1888.242205,3507,NO,11.73,17.88,1,0.32,6106,114.913573,124.467598,134.313058,140.40394,I,Above,Gable,0,5701,Wood,14.80634736,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 3322,NJBF000073804,3 MANITOBA AVE,Atlantic City,NJ,39.38327484,-74.40596003,RES3A,3001,,43,NE,1985,1985,3301,2,2,1210.470723,1210.470723,3505,NO,39.84,50.92,3,5.43,6106,114.854453,124.41461,134.255967,140.347711,I,Above,Flat,0,5701,Wood,45.38108247,0,0,,,,1,1,,0.03,nav,1,1985,2,, 3323,NJBF000073615,,Atlantic City,NJ,39.38202149,-74.40759949,RES1,3001,,NaN,NE,1969,0,3103,6,1,1198.967485,1198.967485,3505,NO,76.28,86.53,3,5.06,6106,114.83408,124.39716,134.235485,140.338932,I,Above,Gable,0,5701,Wood,81.40331994,0,0,,,,1,1,,0.03,nav,1,1969,6,, 3324,NJBF000073564,3 OCEAN DRIVE EAST,Atlantic City,NJ,39.38164452,-74.40391328,RES1,3001,,16,NE,1975,1975,3102,1,1,1863.00752,1863.00752,3507,NO,11.59,22.52,1,1,6106,114.915687,124.469253,134.315515,140.401957,I,Above,Gable,0,5701,Wood,17.05655016,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 3325,NJBF000073549,5211 HARBOR BEACH BLVD,Atlantic City,NJ,39.38153313,-74.40771727,RES1,3001,,17,NE,1987,1987,3103,2,1,1807.571446,1807.571446,3505,NO,35.63,47.2,3,2.71,6110,114.837083,124.399998,134.238237,140.343721,I,Above,Gable,0,5701,Wood,41.41629874,0,0,,,,1,1,,0.35,nav,1,1987,2,, 3326,NJBF000073505,5216 HARBOR BEACH BLVD,Atlantic City,NJ,39.38118384,-74.40831534,RES1,3001,,15,NE,1975,1975,3103,1,1,1818.487081,1818.487081,3505,NO,9.61,23.66,3,-1.18,6110,114.828435,124.39253,134.229629,140.339062,I,Above,Gable,0,5701,Wood,16.6363151,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 3327,NJBF000073233,5206 SEA SPRAY RD,Atlantic City,NJ,39.37917099,-74.4063205,RES1,3001,,16,NE,1975,1975,3103,2,1,1014.737582,1014.737582,3505,NO,23.38,32.06,3,2.15,6106,114.893134,124.45011,134.29201,140.397699,I,Above,Flat,0,5701,Wood,27.71999586,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3328,NJBF000073747,,Atlantic City,NJ,39.38288999,-74.40547007,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1854.475169,1854.475169,3505,NO,13.14,27.11,3,2.18,6106,114.869044,124.427639,134.270172,140.360657,I,Above,Gable,0,5701,Wood,20.12863575,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3329,NJBF000073853,,Atlantic City,NJ,39.38357926,-74.40295373,RES3C,3001,,NaN,ME,1969,0,3301,2,1,14133.97081,14133.97081,3507,NO,39.3,49.01,1,1.43,6106,114.914062,124.467195,134.31487,140.390922,I,Above,Gable,0,NaN,Wood,44.1535827,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3330,NJBF000073889,549 LAGOON BLVD,Atlantic City,NJ,39.38379092,-74.40662876,RES1,3001,,37,NE,1985,1985,3103,2,1,5405.618365,5405.618365,3505,NO,31.62,38.33,3,3.75,6106,114.834649,124.396919,134.23667,140.330135,I,Above,Gable,0,5701,Wood,34.97580566,0,0,,,,1,1,,0.03,nav,1,1985,2,, 3331,NJBF000070020,39 N VIRGINIA AVE,Atlantic City,NJ,39.36550977,-74.42374651,COM1,3003,,45,ME,1900,1900,3401,3,2,1850.922608,1850.922608,3507,YES,33.05,42.36,1,0.9,6106,114.682785,124.271438,134.081296,140.314026,I,Above,Flat,0,NaN,Wood,37.70461397,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3332,NJBF000067330,3120 ATLANTIC AVE,Atlantic City,NJ,39.35311017,-74.44936555,COM1,3003,100,NaN,ME,1969,0,3401,3,1,2365.191162,2365.191162,3507,YES,51.58,62.71,1,2.47,6106,114.281694,123.936937,133.70344,140.093239,I,Above,Flat,0,NaN,Wood,57.14703523,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3333,NJBF000068677,526 N TRENTON AVE,Atlantic City,NJ,39.35739446,-74.46130306,RES1,3001,,27,NE,1925,1925,3101,2,2,1493.235626,1493.235626,3505,NO,30.83,44.31,3,5.28,6106,113.967819,123.675228,133.423195,139.837496,I,Above,Gable,0,5701,Wood,37.5676277,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3334,NJBF000070636,1908 GRANT AVE,Atlantic City,NJ,39.3678726,-74.44057984,RES3B,3001,,17,ME,1900,1900,3301,2,1,953.0793124,953.0793124,3505,NO,44.38,58.62,3,5.44,6106,114.293193,123.939247,133.718111,140.015186,I,Above,Gable,0,5701,Wood,51.50058978,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3335,NJBF000068785,111 N CALIFORNIA AVE,Atlantic City,NJ,39.35761594,-74.44563247,RES3A,3001,,27,NE,1900,1900,3301,2,2,1390.19177,1390.19177,3505,YES,40.57,54.19,3,2.73,6106,114.306926,123.956336,133.728517,140.085541,I,Above,Hip,0,5701,Wood,47.3807326,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3336,NJBF000070939,101 N RHODE ISLAND AVE,Atlantic City,NJ,39.36893384,-74.41655325,RES3D,3004,100,NaN,E,1969,0,3303,2,1,1232.656662,1232.656662,3505,YES,21.96,31.29,3,0.48,6106,114.795406,124.367517,134.190777,140.378082,I,Above,Flat,0,NaN,Wood,26.62319681,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3337,NJBF000066729,37 N DOVER AVE,Atlantic City,NJ,39.3506027,-74.45836617,RES3A,3001,,45,NE,1900,1900,3301,2,2,3044.316305,3044.316305,3505,YES,29.41,37.48,3,2.39,6106,114.116938,123.801436,133.55442,139.989143,I,Above,Flat,0,5701,Wood,33.44531714,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3338,NJBF000066699,33 N DOVER AVE,Atlantic City,NJ,39.35050606,-74.45829973,RES3A,3001,,45,NE,1909,1909,3301,1,2,2807.137835,2807.137835,3505,NO,22.6,33.63,3,8.73,6106,114.119613,123.803674,133.556757,139.991659,I,Above,Flat,0,5701,Wood,28.11256858,0,0,,,,1,1,,0.03,nav,1,1909,1,, 3339,NJBF000068668,553 WARRENA RD,Atlantic City,NJ,39.3573635,-74.46265142,RES1,3001,,16,NE,1900,1900,3101,1,1,918.1034684,918.1034684,3505,NO,18.09,31.53,3,-1.26,6106,113.938647,123.651238,133.397254,139.815786,I,Above,Flat,0,5701,Wood,24.81078293,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3340,NJBF000067720,7 N MONTPELIER AVE,Atlantic City,NJ,39.35427296,-74.45001718,RES3B,3001,,45,ME,1900,1900,3301,1,3,529.1237258,529.1237258,3504,NO,17.15,30.86,-4,0,6106,114.252981,123.912686,133.678117,140.065892,I,Above,Hip,0,NaN,Wood,24.00409202,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3341,NJBF000068964,625 N ELBERON AVE,Atlantic City,NJ,39.35818159,-74.46372524,RES1,3001,,17,NE,1963,1963,3101,2,1,1918.495038,1918.495038,3505,NO,36.13,41.9,3,5.6,6106,113.905047,123.623048,133.367348,139.785226,I,Above,Gable,0,5701,Wood,39.0177933,0,0,,,,1,1,,0.03,nav,1,1963,2,, 3342,NJBF000065008,116 S RALEIGH AVE,Atlantic City,NJ,39.34596005,-74.45956623,RES3F,3003,29,NaN,E,1969,0,3305,9,1,5982.633935,5982.633935,3507,YES,112.26,124.99,1,2.1,6106,114.150238,123.83013,133.581326,140.040318,I,Above,Flat,0,NaN,Wood,118.6257133,0,0,,,,2,2,,0.03,nav,1,1969,9,, 3343,NJBF000065101,112 S RALEIGH AVE,Atlantic City,NJ,39.34614775,-74.45973391,RES3A,3001,,45,NE,1920,1920,3301,3,3,4962.979704,4962.979704,3504,YES,44.71,57.77,-4,0,6106,114.144126,123.825065,133.576035,140.034874,I,Above,Hip,0,5701,Wood,51.23643664,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3344,NJBF000069297,155 S TENNESSEE AVE,Atlantic City,NJ,39.35956304,-74.42617782,COM1,3001,100,NaN,ME,1969,1920,3401,3,13,1056.011055,1056.011055,3507,YES,55.92,64.36,1,-0.53,6106,114.70258,124.289474,134.095261,140.359129,I,Above,Hip,0,NaN,Wood,60.14328522,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3345,NJBF000072730,743 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37470681,-74.42234857,RES1,3001,,17,NE,2004,2004,3102,3,1,2415.530185,2415.530185,3505,NO,50.9,60.92,3,-1.95,6106,114.604998,124.200999,134.011678,140.20727,I,Above,Hip,0,5701,Wood,55.91156083,0,0,,,,1,1,,0.03,nav,1,2004,3,, 3346,NJBF000065938,28 N DELANCY PL,Atlantic City,NJ,39.34849134,-74.4625733,RES3A,3001,,17,NE,1920,1920,3301,2,1,1600.637203,1600.637203,3505,NO,37.54,45.61,3,8.28,6106,114.051753,123.748544,133.49558,139.954453,I,Above,Flat,0,5701,Wood,41.5719743,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3347,NJBF000067907,402 WARRENA RD,Atlantic City,NJ,39.35496363,-74.46098962,RES1,3001,,27,NE,1920,1920,3102,2,2,1770.042157,1770.042157,3505,NO,39.96,49.04,3,4.41,6106,114.004705,123.707046,133.455859,139.880218,I,Above,Gable,0,5701,Wood,44.49740642,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3348,NJBF000071810,1940 W RIVERSIDE DR,Atlantic City,NJ,39.37169584,-74.45578532,RES1,3001,,17,NE,2006,2006,3103,2,1,1939.610576,1939.610576,3505,NO,31.07,37.28,3,-1.29,6106,113.919039,123.622266,133.374346,139.708455,I,Above,Hip,0,5701,Wood,34.17511174,0,0,,,,1,1,,0.03,nav,1,2006,2,, 3349,NJBF000065304,46 S BARTRAM AVE,Atlantic City,NJ,39.34668196,-74.46217486,RES3A,3001,,17,NE,1920,1920,3301,2,1,1588.882217,1588.882217,3505,NO,38.67,48.53,3,5.42,6106,114.083769,123.775352,133.522924,139.988456,I,Above,Gable,0,5701,Wood,43.60028148,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3350,NJBF000065271,54 S BARTRAM AVE,Atlantic City,NJ,39.34659356,-74.46209552,RES3A,3001,,17,NE,1920,1920,3301,2,1,1436.709963,1436.709963,3505,NO,39.14,51.3,3,2.24,6106,114.086638,123.77773,133.525408,139.991045,I,Above,Hip,0,5701,Wood,45.22341226,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3351,NJBF000067168,4305 STEWART AVE,Atlantic City,NJ,39.35241122,-74.46380683,RES1,3001,,17,NE,1950,1950,3102,1,1,619.914078,619.914078,3505,NO,18.61,24.41,3,-0.08,6106,113.974873,123.683849,133.428947,139.873917,I,Above,Hip,0,5701,Wood,21.50945795,0,0,,,,1,1,,0.03,nav,1,1950,1,, 3352,NJBF000070414,,Atlantic City,NJ,39.36701465,-74.42126248,RES1,3001,,NaN,NE,1969,0,3102,2,1,1125.041495,1125.041495,3505,NO,26.92,40.4,3,-2.27,6106,114.717911,124.301182,134.115569,140.331629,I,Above,Hip,0,5701,Wood,33.66140618,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3353,NJBF000071306,712 DREXEL AVE,Atlantic City,NJ,39.37014152,-74.42288474,RES1,3001,,45,NE,1925,1925,3102,2,2,3551.112355,3551.112355,3505,YES,28.31,42.46,3,3.99,6106,114.646468,124.238781,134.049524,140.26283,I,Above,Flat,0,5701,Wood,35.3843236,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3354,NJBF000070376,515 ATLANTIC AVE,Atlantic City,NJ,39.36688304,-74.41741233,RES3D,3004,950,NaN,E,1969,0,3303,2,1,22768.20284,22768.20284,3505,YES,36.14,42.77,3,6.31,6106,114.80143,124.373112,134.19496,140.392934,I,Above,Flat,0,NaN,Wood,39.45677931,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3355,NJBF000068815,2817 FAIRMOUNT AVE,Atlantic City,NJ,39.35768682,-74.44852421,RES3A,3001,,17,NE,1900,1900,3301,1,1,1661.436907,1661.436907,3505,NO,12.74,22.34,3,-1.51,6106,114.243218,123.903162,133.670662,140.038871,I,Above,Hip,0,5701,Wood,17.54377895,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3356,NJBF000070037,1305 BALTIC AVE,Atlantic City,NJ,39.36557362,-74.42903845,RES3D,3004,739,NaN,E,1969,0,3303,1,1,6003.022405,6003.022405,3505,NO,15.29,24.93,3,-2.54,6106,114.568787,124.174046,133.974042,140.230861,I,Above,Flat,0,NaN,Wood,20.10928014,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3357,NJBF000069014,2419 ARCTIC AVE,Atlantic City,NJ,39.35839446,-74.44259758,RES3B,3001,,45,ME,1920,1920,3301,2,3,1143.819437,1143.819437,3505,NO,24.87,36.75,3,-2.45,6106,114.363175,124.003084,133.780194,140.121782,I,Above,Flat,0,NaN,Wood,30.80787286,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3358,NJBF000072688,406 N MAINE AVE,Atlantic City,NJ,39.37455071,-74.41571891,RES3C,3001,,18,ME,2007,2007,3301,3,1,2486.318933,2486.318933,3505,NO,57.13,62.86,3,6.64,6106,114.747638,124.324499,134.148311,140.313781,I,Above,Flat,0,NaN,Wood,59.99745861,0,0,,,,1,1,,0.03,nav,1,2007,3,, 3359,NJBF000068522,530 N HARRISBURG AVE,Atlantic City,NJ,39.35700567,-74.4622071,RES1,3001,,17,NE,1950,1950,3101,2,1,1470.323144,1470.323144,3505,NO,32.68,42.09,3,8,6106,113.952773,123.663092,133.409817,139.828657,I,Above,Hip,0,5701,Wood,37.38751203,0,0,,,,1,1,,0.03,nav,1,1950,2,, 3360,NJBF000068573,204 N MORRIS AVE,Atlantic City,NJ,39.35714837,-74.45026073,RES3A,3001,,27,NE,1969,1900,3301,2,2,2835.549283,2835.549283,3507,YES,21.67,27.52,1,0.57,6106,114.212048,123.877468,133.642266,140.01935,I,Above,Flat,0,5701,Wood,24.59628645,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3361,NJBF000065142,101 S BARTRAM AVE,Atlantic City,NJ,39.34625681,-74.46131974,RES3A,3001,,45,NE,1920,1920,3301,3,2,2086.397765,2086.397765,3504,YES,46.12,57.97,-4,0,6106,114.107998,123.795349,133.544096,140.008387,I,Above,Flat,0,5701,Wood,52.04168816,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3362,NJBF000072202,735 SEWELL AVE,Atlantic City,NJ,39.37289343,-74.42524818,RES1,3001,,16,NE,2011,2011,3102,2,1,846.6554402,846.6554402,3505,NO,25.01,35.24,3,2.93,6106,114.564068,124.166725,133.972304,140.186978,I,Above,Gable,0,5701,Wood,30.12743609,0,0,,,,1,1,,0.03,nav,1,2011,2,, 3363,NJBF000068615,2300 ATLANTIC AVE,Atlantic City,NJ,39.35724715,-74.43946843,COM1,3003,100,NaN,ME,1969,0,3401,1,1,7832.14327,7832.14327,3507,NO,15.4,27.35,1,0.83,6106,114.445001,124.072116,133.854569,140.187132,I,Above,Flat,0,NaN,Wood,21.37299885,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3364,NJBF000071456,140 N MAINE AVE,Atlantic City,NJ,39.3706586,-74.41316869,RES3D,3004,,17,E,1900,1900,3303,2,1,3084.170638,3084.170638,3505,NO,28.88,41.46,3,-0.31,6106,114.846884,124.411761,134.241479,140.406844,I,Above,Hip,0,NaN,Wood,35.16967757,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3365,NJBF000070701,132 ATLANTIC AVE,Atlantic City,NJ,39.368096,-74.4126885,RES3D,3004,100,NaN,E,1969,0,3303,4,1,4829.429252,4829.429252,3505,YES,74.97,89.41,3,3.01,6106,114.887241,124.447167,134.278199,140.449076,I,Above,Flat,0,NaN,Wood,82.19157576,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3366,NJBF000068640,2635 ARCTIC AVE,Atlantic City,NJ,39.35730489,-74.44526365,RES3A,3001,,27,NE,1900,1900,3301,2,2,1294.629008,1294.629008,3505,YES,37.45,43.98,3,2.99,6106,114.318737,123.966327,133.739138,140.09588,I,Above,Hip,0,5701,Wood,40.71627601,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3367,NJBF000068626,2637 ARCTIC AVE,Atlantic City,NJ,39.35727225,-74.44534331,RES3A,3001,,27,NE,1900,1900,3301,1,2,1243.822372,1243.822372,3505,NO,11.91,20.39,3,-2.76,6106,114.317429,123.965247,133.737932,140.095123,I,Above,Gable,0,5701,Wood,16.14551958,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3368,NJBF000072636,1647 N MICHIGAN AVE,Atlantic City,NJ,39.37434697,-74.45048181,RES1,3001,,17,NE,1900,1900,3102,2,1,1139.08281,1139.08281,3505,NO,44.83,50.9,3,8.56,6106,114.004246,123.690515,133.450209,139.756693,I,Above,Flat,0,5701,Wood,47.86485081,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 3369,NJBF000067575,,Atlantic City,NJ,39.35386102,-74.46391061,RES1,3001,,NaN,NE,1969,0,3102,2,1,910.8850401,910.8850401,3505,NO,26.07,32.71,3,1.22,6106,113.954399,123.666297,133.411082,139.849631,I,Above,Gable,0,5701,Wood,29.38947359,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3370,NJBF000072734,2039 N RIVERSIDE DR,Atlantic City,NJ,39.37471358,-74.45484295,RES1,3001,100,16,NE,1900,1900,3101,1,1,1412.090268,1412.090268,3505,NO,21.34,35.3,3,6.15,6106,113.905374,123.607361,133.359646,139.678029,I,Above,Gable,0,5701,Wood,28.32003848,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3371,NJBF000071542,1440 W RIVERSIDE DR,Atlantic City,NJ,39.370882,-74.4477785,RES1,3001,,16,NE,1900,1900,3101,1,1,919.4235311,919.4235311,3505,NO,16.54,29.25,3,-1.44,6106,114.102417,123.776372,133.541976,139.8537,I,Above,Gable,0,5701,Wood,22.89766889,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3372,NJBF000072439,1402 N OHIO AVE,Atlantic City,NJ,39.37366774,-74.4454836,RES1,3001,,14,NE,1900,1900,3102,1,1,626.8375451,626.8375451,3505,NO,13.16,19.56,3,0.74,6106,114.120227,123.78868,133.557171,139.849651,I,Above,Gable,0,5701,Wood,16.36047193,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3373,NJBF000072473,1402 N OHIO AVE #A,Atlantic City,NJ,39.37378922,-74.44552889,RES1,3001,,14,NE,1900,1900,3102,1,1,949.9564409,949.9564409,3505,NO,16.88,25.68,3,1.43,6106,114.117878,123.786583,133.554948,139.847101,I,Above,Gable,0,5701,Wood,21.27951942,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3374,NJBF000071843,1530 BEACH AVE,Atlantic City,NJ,39.3717912,-74.44882327,RES1,3001,,17,NE,1955,1955,3102,1,1,1314.549536,1314.549536,3505,NO,16.66,26.63,3,-2.06,6106,114.06931,123.747739,133.511251,139.822824,I,Above,Flat,0,5701,Wood,21.64642013,0,0,,,,1,1,,0.03,nav,1,1955,1,, 3375,NJBF000068590,209 N CHELSEA AVE,Atlantic City,NJ,39.357193,-74.450787,RES3A,3001,,45,NE,1900,1900,3301,2,2,911.3553391,911.3553391,3507,YES,38.28,49.88,1,0.09,6106,114.200041,123.867464,133.631427,140.010325,I,Above,Hip,0,5701,Wood,44.07699684,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3376,NJBF000069179,204 N TEXAS AVE,Atlantic City,NJ,39.35908158,-74.44542104,RES3A,3001,,27,NE,1969,1910,3301,2,2,1327.859885,1327.859885,3505,YES,37.8,52.51,3,1.49,6106,114.293553,123.944528,133.716892,140.067331,I,Above,Flat,0,5701,Wood,45.15416189,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3377,NJBF000066951,30 N TRENTON AVE,Atlantic City,NJ,39.35143128,-74.45661876,RES3A,3001,,17,NE,1900,1900,3301,2,1,1121.31906,1121.31906,3505,NO,30.85,44.65,3,3.95,6106,114.14465,123.823998,133.579515,140.004296,I,Above,Flat,0,5701,Wood,37.74789917,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3378,NJBF000068337,112 N BRIGHTON AVE,Atlantic City,NJ,39.35640864,-74.44857303,RES3A,3001,,45,NE,1930,1930,3301,3,3,1407.829535,1407.829535,3505,YES,63.56,71.33,3,7.73,6106,114.257891,123.915941,133.683494,140.05702,I,Above,Hip,0,5701,Wood,67.44300516,0,0,,,,1,1,,0.03,nav,1,1930,3,, 3379,NJBF000067252,4012 SOUTH BLVD,Atlantic City,NJ,39.35275678,-74.46029765,RES1,3001,,17,NE,1950,1950,3102,2,1,840.0529445,840.0529445,3505,NO,33.5,42.91,3,-2.08,6106,114.047449,123.743337,133.493396,139.925409,I,Above,Gable,0,5701,Wood,38.20519081,0,0,,,,1,1,,0.03,nav,1,1950,2,, 3380,NJBF000068137,112 N CHELSEA AVE,Atlantic City,NJ,39.3557585,-74.4509015,RES3A,3001,29,17,NE,1950,1950,3301,1,1,784.6077166,784.6077166,3505,NO,22.66,33.7,3,7.23,6106,114.215239,123.880743,133.644677,140.029886,I,Above,Gable,0,5701,Wood,28.17924823,0,0,,,,1,1,,0.03,nav,1,1950,1,, 3381,NJBF000071114,716 N KENTUCKY AVE,Atlantic City,NJ,39.36947782,-74.43642823,RES1,3001,,16,NE,1900,1900,3101,1,1,1310.539028,1310.539028,3505,NO,22.09,29.9,3,2.69,6106,114.363973,123.998024,133.783802,140.058215,I,Above,Flat,0,5701,Wood,25.99494724,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3382,NJBF000067450,22 N BOSTON AVE,Atlantic City,NJ,39.35353704,-74.45254019,RES3B,3001,,45,E,1900,1900,3303,3,2,1847.515894,1847.515894,3507,YES,60.8,73.63,1,2.85,6106,114.207208,123.87497,133.636531,140.037131,I,Above,Hip,0,NaN,Wood,67.21824563,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3383,NJBF000067538,3424 WINCHESTER AVE,Atlantic City,NJ,39.35376499,-74.45345397,RES3B,3001,29,NaN,E,1969,0,3303,3,1,2897.027643,2897.027643,3507,YES,33.71,41.8,1,1.4,6106,114.184422,123.856003,133.616151,140.019294,I,Above,Hip,0,NaN,Wood,37.75928292,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3384,NJBF000070248,124 N VIRGINIA AVE,Atlantic City,NJ,39.36641732,-74.42516595,RES1,3001,,27,NE,2000,2000,3102,2,2,504.0049275,504.0049275,3505,NO,32.97,38,3,3.95,6106,114.641667,124.235979,134.043043,140.279347,I,Above,Flat,0,5701,Wood,35.48607227,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3385,NJBF000069303,12 S INDIANA AVE,Atlantic City,NJ,39.35959183,-74.43297311,COM1,3003,100,NaN,ME,1969,0,3401,3,1,1694.756196,1694.756196,3507,NO,49.71,56.54,1,-0.78,6106,114.556353,124.165346,133.958897,140.254281,I,Above,Flat,0,NaN,Wood,53.12587634,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3386,NJBF000072595,105 ADRIATIC AVE,Atlantic City,NJ,39.3742155,-74.416137,RES3C,3001,,17,ME,2003,2003,3301,3,1,559.4483055,559.4483055,3505,NO,44.21,53.23,3,1.38,6106,114.742651,124.320294,134.143352,140.311873,I,Above,Hip,0,NaN,Wood,48.71593759,0,0,,,,1,1,,0.03,nav,1,2003,3,, 3387,NJBF000067312,54 N HARTFORD AVE,Atlantic City,NJ,39.3530295,-74.4548455,RES3B,3001,29,NaN,E,1969,0,3303,3,1,1996.777014,1996.777014,3507,NO,34.75,42.19,1,0.34,6106,114.163259,123.838776,133.59686,140.008306,I,Above,Flat,0,NaN,Wood,38.46807667,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3388,NJBF000068980,147 ST JAMES PL,Atlantic City,NJ,39.35824447,-74.42616394,COM1,3003,29,NaN,ME,1969,0,3401,2,1,7579.941528,7579.941528,3507,NO,24.73,30.76,1,0.53,6106,114.719039,124.303619,134.109451,140.377558,I,Above,Flat,0,NaN,Wood,27.74166583,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3389,NJBF000068373,2803 ARCTIC AVE,Atlantic City,NJ,39.3565425,-74.4472145,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,3054.152292,3054.152292,3505,YES,29.43,35.07,3,3.26,6106,114.28576,123.939105,133.708821,140.076422,I,Above,Flat,0,5701,Wood,32.24972207,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3390,NJBF000066446,22 N ANNAPOLIS AVE,Atlantic City,NJ,39.34977433,-74.45964245,RES3A,3001,,45,NE,1900,1900,3301,2,2,1292.455932,1292.455932,3505,NO,37.05,45.01,3,0.63,6106,114.099558,123.787408,133.538571,139.981486,I,Above,Flat,0,5701,Wood,41.03020795,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3391,NJBF000070231,508 ATLANTIC AVE,Atlantic City,NJ,39.3663375,-74.416968,RES3D,3004,100,NaN,E,1969,0,3303,1,1,13728.90583,13728.90583,3505,YES,13.32,25.34,3,-0.7,6106,114.817349,124.38693,134.209704,140.407226,I,Above,Flat,0,NaN,Wood,19.32550291,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3392,NJBF000068539,27 N BELLEVUE AVE,Atlantic City,NJ,39.35705068,-74.44287663,RES3B,3001,,33,ME,1915,1915,3301,3,1,1470.16765,1470.16765,3505,YES,39.12,48.56,3,6.39,6106,114.373629,124.012327,133.789086,140.136932,I,Above,Flat,0,NaN,Wood,43.83966385,0,0,,,,1,1,,0.03,nav,1,1915,3,, 3393,NJBF000065787,50 S WINDSOR AVE,Atlantic City,NJ,39.34809906,-74.45894936,RES3A,3001,,27,NE,1900,1900,3301,2,2,2560.730474,2560.730474,3505,YES,24.91,37.39,3,-2.68,6106,114.136144,123.818031,133.570189,140.0178,I,Above,Flat,0,5701,Wood,31.15261156,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3394,NJBF000065714,4121 ATLANTIC AVE,Atlantic City,NJ,39.34789966,-74.45894146,RES3A,3001,738,NaN,NE,1969,0,3301,3,2,10995.21642,10995.21642,3505,YES,49.68,59.81,3,5.15,6106,114.138875,123.820331,133.572497,140.020925,I,Above,Flat,0,5701,Wood,54.74479298,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3395,NJBF000068327,4 CHURCH ST,Atlantic City,NJ,39.35637584,-74.44393001,REL1,3004,,NaN,ME,1969,0,3401,2,1,1267.981267,1267.981267,3507,NO,30.41,40.72,1,1.02,6106,114.359133,124.000428,133.775495,140.130309,I,Above,Hip,0,NaN,Wood,35.56809214,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3396,NJBF000068344,8 N TEXAS AVE RR,Atlantic City,NJ,39.35643884,-74.44385846,RES3B,3001,,16,ME,1910,1910,3301,2,1,616.3245453,616.3245453,3505,NO,34.04,39.7,3,-1.62,6106,114.359915,124.001061,133.776243,140.130516,I,Above,Hip,0,NaN,Wood,36.86955033,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3397,NJBF000071808,1421 BEACH AVE,Atlantic City,NJ,39.37169084,-74.44720854,RES1,3001,,17,NE,1915,1915,3102,1,1,1416.688295,1416.688295,3505,NO,18.12,27.41,3,-0.48,6106,114.105453,123.778164,133.544441,139.850901,I,Above,Gable,0,5701,Wood,22.76743147,0,0,,,,1,1,,0.03,nav,1,1915,1,, 3398,NJBF000071597,721 ADRIATIC AVE,Atlantic City,NJ,39.37103678,-74.42361798,RES1,3001,,17,NE,1933,1933,3102,1,1,1601.715886,1601.715886,3505,NO,16.94,31.86,3,-0.09,6106,114.620384,124.215997,134.025145,140.238801,I,Above,Hip,0,5701,Wood,24.40126329,0,0,,,,1,1,,0.03,nav,1,1933,1,, 3399,NJBF000066551,102 N LACLEDE PL,Atlantic City,NJ,39.35003228,-74.46192383,RES3A,3001,,45,NE,1900,1900,3301,3,2,1746.523236,1746.523236,3505,YES,55.85,69.91,3,2.92,6106,114.046288,123.743515,133.491424,139.941153,I,Above,Hip,0,5701,Wood,62.88044973,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3400,NJBF000070868,658 GREEN ST,Atlantic City,NJ,39.36869653,-74.43669517,RES1,3001,,17,NE,1900,1900,3101,2,1,1354.500357,1354.500357,3505,NO,32.55,43.33,3,1.87,6106,114.367347,124.001382,133.786882,140.065296,I,Above,Gable,0,5701,Wood,37.94247027,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3401,NJBF000068103,428 WISTERIA RD,Atlantic City,NJ,39.35564536,-74.46030929,RES1,3001,,27,NE,1920,1920,3102,2,2,1205.432032,1205.432032,3505,NO,36.97,45.05,3,0.25,6106,114.011173,123.711993,133.461702,139.88079,I,Above,Flat,0,5701,Wood,41.00898089,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3402,NJBF000068080,470 HARBOR AVE,Atlantic City,NJ,39.35556043,-74.46270416,RES1,3001,,17,NE,1983,1983,3102,1,1,1176.492496,1176.492496,3505,NO,10.1,19.57,3,-2.45,6106,113.959732,123.66971,133.415966,139.842972,I,Above,Gable,0,5701,Wood,14.83664922,0,0,,,,1,1,,0.03,nav,1,1983,1,, 3403,NJBF000070138,601 N MICHIGAN AVE,Atlantic City,NJ,39.36597861,-74.43997462,RES3B,3001,,45,ME,1900,1900,3301,3,2,2326.245113,2326.245113,3505,YES,44.43,51.46,3,-2.07,6106,114.32858,123.970291,133.750661,140.052597,I,Above,Flat,0,NaN,Wood,47.9465944,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3404,NJBF000066315,4331 WINCHESTER AVE,Atlantic City,NJ,39.34945642,-74.46324457,RES3A,3001,,45,NE,1930,1930,3301,1,3,2690.021541,2690.021541,3505,NO,20.89,26.32,3,6.06,6106,114.02467,123.725981,133.47206,139.928829,I,Above,Hip,0,5701,Wood,23.6062284,0,0,,,,1,1,,0.03,nav,1,1930,1,, 3405,NJBF000070759,423 N TENNESSEE AVE,Atlantic City,NJ,39.36832287,-74.43170293,RES1,3001,,NaN,NE,1969,0,3103,4,1,1325.06571,1325.06571,3505,NO,42.48,54.61,3,-0.94,6106,114.479093,124.096464,133.891067,140.149924,I,Above,Flat,0,5701,Wood,48.54427277,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3406,NJBF000070805,435 N TENNESSEE AVE,Atlantic City,NJ,39.36848928,-74.43214839,RES1,3001,,33,NE,1915,1915,3103,2,1,5747.771312,5747.771312,3505,YES,22.24,29.5,3,-1.63,6106,114.467588,124.086589,133.880342,140.140514,I,Above,Flat,0,5701,Wood,25.870565,0,0,,,,1,1,,0.03,nav,1,1915,2,, 3407,NJBF000070984,824 N INDIANA AVE,Atlantic City,NJ,39.3690503,-74.43935524,RES1,3001,,15,NE,1900,1900,3102,1,1,1544.87515,1544.87515,3505,NO,16.89,23.49,3,-1.56,6106,114.305871,123.949143,133.729839,140.017586,I,Above,Hip,0,5701,Wood,20.18837416,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3408,NJBF000068937,203 N IOWA AVE,Atlantic City,NJ,39.3580766,-74.44748011,RES3A,3001,,45,NE,1900,1900,3301,3,2,1483.277551,1483.277551,3505,YES,58.3,72.04,3,5.21,6106,114.26113,123.917914,133.687047,140.049615,I,Above,Hip,0,5701,Wood,65.17253755,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3409,NJBF000066033,3 N RALEIGH AVE,Atlantic City,NJ,39.34873063,-74.46130469,RES3A,3001,,45,NE,1925,1925,3301,2,4,1315.133737,1315.133737,3505,YES,28.65,39.6,3,5.47,6106,114.076464,123.76876,133.517573,139.970971,I,Above,Hip,0,5701,Wood,34.12871798,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3410,NJBF000065294,31 N JACKSON AVE,Atlantic City,NJ,39.34664478,-74.46691832,RES3A,3001,,45,NE,1920,1920,3301,2,2,1563.386484,1563.386484,3505,YES,23.92,35.9,3,2.12,6106,113.9802,123.690508,133.431625,139.913328,I,Above,Hip,0,5701,Wood,29.90666391,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3411,NJBF000068119,117 N MONTPELIER AVE,Atlantic City,NJ,39.3557165,-74.4509835,RES3A,3001,,45,NE,1920,1920,3301,2,2,588.5284778,588.5284778,3505,NO,24.1,38.03,3,-0.5,6106,114.213986,123.87972,133.64353,140.02923,I,Above,Gable,0,5701,Wood,31.06483205,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3412,NJBF000066825,105 N ANNAPOLIS AVE,Atlantic City,NJ,39.35089812,-74.4601356,RES3A,3001,,NaN,NE,1920,0,3301,1,1,5038.492639,5038.492639,3505,NO,12.76,19.29,3,-2.72,6106,114.074458,123.766346,133.516762,139.956485,I,Above,Gable,0,5701,Wood,16.02715416,0,0,,,,1,1,,0.03,nav,1,1920,1,, 3413,NJBF000072166,2141 MURRAY AVE,Atlantic City,NJ,39.37276436,-74.45307992,RES1,3001,,17,NE,1965,1965,3101,1,1,1204.374337,1204.374337,3505,NO,19.06,31.77,3,1.5,6106,113.96575,123.660048,133.416088,139.737406,I,Above,Hip,0,5701,Wood,25.41546878,0,0,,,,1,1,,0.03,nav,1,1965,1,, 3414,NJBF000070679,907 N MICHIGAN AVE,Atlantic City,NJ,39.36804212,-74.44144587,RES3B,3001,,17,ME,1920,1920,3301,1,1,996.4711872,996.4711872,3505,NO,19.99,30.38,3,8.97,6106,114.272499,123.921685,133.699,139.998799,I,Above,Gable,0,5701,Wood,25.18813404,0,0,,,,1,1,,0.03,nav,1,1920,1,, 3415,NJBF000070661,,Atlantic City,NJ,39.36796392,-74.44019937,RES3B,3001,,NaN,ME,1969,0,3301,2,1,858.3456318,858.3456318,3505,NO,44.32,53.99,3,7.21,6106,114.300355,123.945227,133.724732,140.019961,I,Above,Hip,0,5701,Wood,49.15078248,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3416,NJBF000070637,,Atlantic City,NJ,39.36788001,-74.44014382,RES3B,3001,,NaN,ME,1969,0,3301,2,1,1576.465982,1576.465982,3505,NO,39.45,45.06,3,5.16,6106,114.302528,123.947117,133.726739,140.022073,I,Above,Hip,0,5701,Wood,42.25403565,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3417,NJBF000070807,113 N CONGRESS AVE,Atlantic City,NJ,39.3685075,-74.418644,RES3D,3004,,17,E,1900,1900,3303,2,1,937.0551387,937.0551387,3505,NO,21.28,27.96,3,-0.21,6106,114.756005,124.333598,134.152829,140.351579,I,Above,Flat,0,NaN,Wood,24.61783397,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3418,NJBF000068110,2701 ATLANTIC AVE,Atlantic City,NJ,39.35567193,-74.44470385,COM1,3003,738,NaN,ME,1900,1900,3401,2,1,2741.447385,2741.447385,3507,YES,20.48,29.4,1,-0.99,6106,114.351057,123.993912,133.767755,140.128481,I,Above,Gable,0,NaN,Wood,24.94087444,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3419,NJBF000070870,119 N CONGRESS AVE,Atlantic City,NJ,39.3686979,-74.41876542,RES3D,3004,,NaN,E,1969,0,3303,2,1,749.5065813,749.5065813,3505,NO,33.35,40.26,3,0.96,6106,114.751179,124.329389,134.148354,140.347069,I,Above,Hip,0,NaN,Wood,36.80847076,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3420,NJBF000072049,624 CASPIAN AVE,Atlantic City,NJ,39.37242673,-74.4232658,RES1,3001,,45,NE,1930,1930,3102,2,3,1585.057411,1585.057411,3505,NO,35.55,50.38,3,0.54,6106,114.611744,124.207941,134.017441,140.224823,I,Above,Hip,0,5701,Wood,42.96358416,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3421,NJBF000068071,19 N STENTON PL,Atlantic City,NJ,39.35553285,-74.44657071,RES3B,3001,,45,ME,1900,1900,3301,2,3,2153.744334,2153.744334,3504,NO,33.74,44.46,-4,0,6106,114.312249,123.96157,133.732397,140.101353,I,Above,Hip,0,NaN,Wood,39.10338981,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3422,NJBF000068033,17 N STENTON PL,Atlantic City,NJ,39.35540346,-74.44647271,RES3B,3001,,45,ME,1900,1900,3301,2,2,2142.202955,2142.202955,3504,YES,35.51,43.6,-4,0,6106,114.315991,123.964735,133.735728,140.10479,I,Above,Gable,0,NaN,Wood,39.5502457,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3423,NJBF000065369,4605 VENTNOR AVE,Atlantic City,NJ,39.34688041,-74.46482698,RES3A,3001,,18,NE,1927,1927,3301,2,1,1851.137222,1851.137222,3505,YES,41.83,54.53,3,4.33,6106,114.023062,123.725519,133.469451,139.943267,I,Above,Flat,0,5701,Wood,48.18434359,0,0,,,,1,1,,0.03,nav,1,1927,2,, 3424,NJBF000070282,13 N NEW JERSEY AVE,Atlantic City,NJ,39.36655946,-74.41909402,COM1,3003,959,NaN,ME,1969,0,3401,1,1,21596.06511,21596.06511,3507,NO,18.3,30.49,1,1.57,6106,114.769505,124.345661,134.16428,140.371445,I,Above,Gable,0,NaN,Wood,24.39501974,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3425,NJBF000071241,813 GREEN ST,Atlantic City,NJ,39.36988967,-74.43706495,RES1,3001,,17,NE,1961,1961,3101,1,1,1321.640128,1321.640128,3505,NO,23.81,30.38,3,7.59,6106,114.345454,123.982058,133.766586,140.042035,I,Above,Gable,0,5701,Wood,27.09260434,0,0,,,,1,1,,0.03,nav,1,1961,1,, 3426,NJBF000069983,28 BORN TERR,Atlantic City,NJ,39.36532135,-74.42288278,COM1,3003,,33,ME,1900,1900,3401,2,1,711.4852351,711.4852351,3507,YES,31.76,41.82,1,1.93,6106,114.703491,124.289223,134.100737,140.330022,I,Above,Flat,0,NaN,Wood,36.78694843,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3427,NJBF000071266,808 N KENTUCKY AVE,Atlantic City,NJ,39.369998,-74.4367875,RES1,3001,,16,NE,1900,1900,3101,1,1,1139.856062,1139.856062,3505,NO,14.86,27.52,3,3.79,6106,114.350185,123.985994,133.770989,140.044914,I,Above,Gable,0,5701,Wood,21.18927325,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3428,NJBF000071012,800 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36913718,-74.43796704,RES1,3001,,17,NE,1900,1900,3102,1,1,1173.442748,1173.442748,3505,NO,20.12,30.85,3,3.58,6106,114.334792,123.973537,133.756663,140.038564,I,Above,Gable,0,5701,Wood,25.48801481,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3429,NJBF000069955,511 N ARKANSAS AVE,Atlantic City,NJ,39.365188,-74.4412815,COM1,3003,100,NaN,ME,1969,0,3401,2,1,5495.21151,5495.21151,3507,YES,38.99,44.78,1,1.74,6106,114.30971,123.954868,133.733152,140.043343,I,Above,Flat,0,NaN,Wood,41.88710726,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3430,NJBF000067182,4123 SOUTH BLVD,Atlantic City,NJ,39.35246045,-74.46162749,RES1,3001,,17,NE,2017,2017,3102,2,1,1663.151164,1663.151164,3505,NO,25.43,34.65,3,-0.12,6106,114.022065,123.722591,133.470768,139.90854,I,Above,Flat,0,5701,Wood,30.0385996,0,0,,,,1,1,,0.03,nav,1,2017,2,, 3431,NJBF000070840,715 N INDIANA AVE,Atlantic City,NJ,39.36859468,-74.43802008,RES1,3001,,NaN,NE,1969,0,3102,2,1,823.0800426,823.0800426,3505,YES,23.95,33.64,3,1.03,6106,114.339984,123.978287,133.76146,140.045619,I,Above,Flat,0,5701,Wood,28.79460236,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3432,NJBF000066079,4116 VENTNOR AVE,Atlantic City,NJ,39.34885388,-74.45990867,RES3A,3001,,45,NE,1900,1900,3301,2,4,2172.009008,2172.009008,3505,YES,27.49,35.81,3,3.97,6106,114.10546,123.792562,133.543353,139.991236,I,Above,Hip,0,5701,Wood,31.64925598,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3433,NJBF000072443,1834 N ARKANSAS AVE,Atlantic City,NJ,39.37368013,-74.45346255,RES1,3001,,16,NE,1900,1900,3101,1,1,1049.918788,1049.918788,3505,NO,13.11,22.35,3,-2.55,6106,113.947038,123.643384,133.398402,139.717027,I,Above,Hip,0,5701,Wood,17.72924426,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3434,NJBF000071904,442 N NEW JERSEY AVE,Atlantic City,NJ,39.37195004,-74.42372532,RES1,3001,,45,NE,1900,1900,3102,1,2,2270.706747,2270.706747,3505,NO,25.09,30.66,3,5.69,6106,114.607485,124.204501,134.013234,140.224297,I,Above,Gable,0,5701,Wood,27.87261584,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3435,NJBF000069906,324 N INDIANA AVE,Atlantic City,NJ,39.36492645,-74.43663345,RES1,3001,,17,NE,1900,1900,3101,2,1,1318.85078,1318.85078,3507,NO,22.49,36.88,1,0.43,6106,114.413205,124.042303,133.828732,140.1209,I,Above,Gable,0,5701,Wood,29.68534787,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3436,NJBF000066429,4021 VENTNOR AVE,Atlantic City,NJ,39.34973232,-74.4590203,COM1,3004,100,NaN,ME,1969,0,3401,2,1,1498.271448,1498.271448,3507,YES,34.86,42.56,1,0.96,6106,114.113705,123.799069,133.551127,139.991984,I,Above,Flat,0,NaN,Wood,38.71080639,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3437,NJBF000069055,,Atlantic City,NJ,39.35857465,-74.44062352,COM1,3003,,NaN,ME,1969,0,3401,1,1,4159.143613,4159.143613,3507,NO,19.97,32.49,1,2.99,6106,114.403694,124.037,133.817404,140.150021,I,Above,Flat,0,NaN,Wood,26.23027261,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3438,NJBF000069097,,Atlantic City,NJ,39.3587595,-74.4408555,COM1,3003,,NaN,ME,1969,0,3401,2,1,1081.765846,1081.765846,3507,NO,27.91,41.09,1,2.48,6106,114.396444,124.030848,133.810846,140.143753,I,Above,Gable,0,NaN,Wood,34.49990997,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3439,NJBF000069218,213 N ARIZONA AVE,Atlantic City,NJ,39.35921245,-74.44586028,RES3A,3001,,27,NE,1900,1900,3301,2,2,1339.447747,1339.447747,3505,YES,37.05,47.46,3,7.4,6106,114.282438,123.935179,133.706806,140.058481,I,Above,Flat,0,5701,Wood,42.25312142,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3440,NJBF000072671,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37446504,-74.4179104,RES3C,3001,,NaN,ME,1969,0,3301,1,1,8532.097891,8532.097891,3505,NO,18.51,30.01,3,1.05,6106,114.702157,124.28509,134.104556,140.280609,I,Above,Hip,0,NaN,Wood,24.26408919,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3441,NJBF000072768,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37486242,-74.41869836,RES3C,3001,,NaN,ME,1969,0,3301,2,1,6898.230513,6898.230513,3505,NO,30.85,42.19,3,1.46,6106,114.68086,124.266476,134.084278,140.262703,I,Above,Flat,0,NaN,Wood,36.51798598,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3442,NJBF000067964,3821 PORTER AVE,Atlantic City,NJ,39.3551835,-74.4600545,RES1,3001,29,NaN,NE,1969,0,3102,2,1,3328.755694,3328.755694,3505,NO,29.14,37.73,3,4.21,6106,114.022476,123.72156,133.471706,139.892037,I,Above,Flat,0,5701,Wood,33.43749854,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3443,NJBF000072858,1826 MADISON AVE,Atlantic City,NJ,39.37524663,-74.45280888,RES1,3001,,17,NE,1971,1971,3101,1,1,1222.964618,1222.964618,3505,NO,18.74,24.19,3,7.67,6106,113.943601,123.638678,133.394079,139.704099,I,Above,Flat,0,5701,Wood,21.46577108,0,0,,,,1,1,,0.03,nav,1,1971,1,, 3444,NJBF000069427,600 BOARDWALK,Atlantic City,NJ,39.36029042,-74.41552248,COM8,3003,629,NaN,ME,1969,0,3401,3,1,7170.590575,7170.590575,3507,NO,51.28,61.91,1,2.85,6102,114.920991,124.476482,134.302329,140.511272,I,Above,Hip,0,NaN,Wood,56.59364625,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3445,NJBF000068805,10 N MISSISSIPPI AVE,Atlantic City,NJ,39.35766331,-74.44050211,COM1,3003,,NaN,ME,1969,0,3401,1,1,508.8566658,508.8566658,3507,NO,13.23,24.75,1,1,6106,114.41752,124.048915,133.829597,140.165086,I,Above,Flat,0,NaN,Wood,18.99415786,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3446,NJBF000068760,10 N MISSISSIPPI AVE,Atlantic City,NJ,39.357571,-74.4407205,COM1,3003,,NaN,ME,1969,0,3401,3,1,2927.348845,2927.348845,3507,NO,34.27,43.32,1,1.49,6106,114.413935,124.045936,133.826257,140.16302,I,Above,Hip,0,NaN,Wood,38.79252188,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3447,NJBF000071359,131 N VERMONT AVE,Atlantic City,NJ,39.3703471,-74.41586819,RES3D,3004,,35,E,1900,2001,3303,2,1,1998.280195,1998.280195,3505,NO,35.05,44.76,3,4.36,6106,114.793337,124.365403,134.189791,140.369309,I,Above,Flat,0,NaN,Wood,39.90447567,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3448,NJBF000071289,1816 ONTARIO AVE,Atlantic City,NJ,39.37008545,-74.44090068,RES3A,3001,,27,NE,2000,2000,3301,2,2,1442.723294,1442.723294,3505,NO,32.7,43.57,3,-0.81,6106,114.260453,123.910033,133.687721,139.977504,I,Above,Flat,0,5701,Wood,38.13366514,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3449,NJBF000068561,238 N MONTPELIER AVE,Atlantic City,NJ,39.35712465,-74.45276399,RES3A,3001,,45,NE,1890,1890,3301,2,2,2092.720851,2092.720851,3507,NO,22.71,29.89,1,-0.32,6106,114.157795,123.832414,133.593294,139.979843,I,Above,Hip,0,5701,Wood,26.30048739,0,0,,,,1,1,,0.03,nav,1,1890,2,, 3450,NJBF000068653,22 N FLORIDA AVE,Atlantic City,NJ,39.35732683,-74.44266569,RES3B,3001,,45,ME,1915,1915,3301,3,3,1451.417956,1451.417956,3505,YES,43.98,54.76,3,4.97,6106,114.374802,124.013214,133.790302,140.13622,I,Above,Hip,0,NaN,Wood,49.37064556,0,0,,,,1,1,,0.03,nav,1,1915,3,, 3451,NJBF000068392,102 N IOWA AVE,Atlantic City,NJ,39.35660278,-74.4470351,RES3A,3001,,27,NE,1922,1922,3301,2,2,1671.698557,1671.698557,3505,YES,34.41,42.45,3,-0.55,6106,114.28893,123.941725,133.711725,140.078369,I,Above,Flat,0,5701,Wood,38.42744165,0,0,,,,1,1,,0.03,nav,1,1922,2,, 3452,NJBF000069533,,Atlantic City,NJ,39.36135739,-74.42730467,COM1,3003,,NaN,ME,1969,0,3401,3,1,3150.221399,3150.221399,3507,NO,38.38,52.66,1,0.19,6106,114.656602,124.250034,134.053672,140.316922,I,Above,Flat,0,NaN,Wood,45.51901792,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3453,NJBF000071129,139 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36951106,-74.41843425,RES3D,3004,,NaN,E,1969,0,3303,3,1,1477.488097,1477.488097,3505,YES,40.58,52.34,3,0.53,6106,114.748649,124.326992,134.146471,140.340989,I,Above,Flat,0,NaN,Wood,46.45685352,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3454,NJBF000070556,1216 DREXEL AVE,Atlantic City,NJ,39.36757411,-74.42925084,RES1,3001,,33,NE,1910,1900,3103,2,1,3147.848674,3147.848674,3505,YES,36.98,43.38,3,5.4,6106,114.540517,124.149144,133.948404,140.199208,I,Above,Flat,0,5701,Wood,40.17955678,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3455,NJBF000065626,25 S DELANCY PL,Atlantic City,NJ,39.34765249,-74.46130584,RES3A,3001,,17,NE,1922,1922,3301,2,1,1704.249126,1704.249126,3505,NO,43.08,54.31,3,6.29,6106,114.090294,123.780449,133.529256,139.987414,I,Above,Flat,0,5701,Wood,48.69246011,0,0,,,,1,1,,0.03,nav,1,1922,2,, 3456,NJBF000068350,116 N MORRIS AVE,Atlantic City,NJ,39.35646044,-74.44979216,RES3A,3001,,17,NE,1900,1900,3301,2,1,1096.110179,1096.110179,3505,YES,37.95,44.25,3,5.37,6106,114.230739,123.893323,133.658937,140.037017,I,Above,Flat,0,5701,Wood,41.10190704,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3457,NJBF000068420,101 N IOWA AVE,Atlantic City,NJ,39.35669957,-74.44666333,RES3A,3001,100,NaN,NE,1969,0,3301,3,1,910.6990859,910.6990859,3505,YES,56.35,70.65,3,8.04,6106,114.295815,123.947429,133.718021,140.082788,I,Above,Gable,0,5701,Wood,63.49980069,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3458,NJBF000066581,106 N LACLEDE PL,Atlantic City,NJ,39.35013567,-74.46201913,RES3A,3001,,45,NE,1920,1920,3301,3,2,1988.340708,1988.340708,3505,YES,46.99,56.59,3,5.93,6106,114.042883,123.740678,133.488449,139.938031,I,Above,Hip,0,5701,Wood,51.79277905,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3459,NJBF000070224,407 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36630208,-74.43545116,RES1,3001,,33,NE,1900,1900,3101,2,1,5617.56865,5617.56865,3505,YES,27.84,33.01,3,5.67,6106,114.422335,124.049327,133.837587,140.119717,I,Above,Flat,0,5701,Wood,30.42330524,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3460,NJBF000068848,127 MAXWELL AVE,Atlantic City,NJ,39.35777824,-74.44679994,COM1,3003,565,NaN,ME,1969,0,3401,1,1,4206.319616,4206.319616,3507,NO,19.48,31.53,1,0.45,6106,114.279573,123.933432,133.703698,140.064767,I,Above,Flat,0,NaN,Wood,25.50507994,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3461,NJBF000068902,194 N CALIFORNIA AVE,Atlantic City,NJ,39.35796822,-74.44651908,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2485.567849,2485.567849,3507,NO,12.07,26.13,1,0.78,6106,114.283345,123.936498,133.707199,140.066399,I,Above,Flat,0,NaN,Wood,19.10204055,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3462,NJBF000068956,198 N CALIFORNIA AVE,Atlantic City,NJ,39.35814631,-74.44639787,COM1,3003,100,NaN,ME,1969,0,3401,2,1,2965.307705,2965.307705,3507,NO,23.67,37.27,1,-0.83,6106,114.28379,123.936792,133.70767,140.065686,I,Above,Flat,0,NaN,Wood,30.47122081,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3463,NJBF000070347,813 FISHER AVE,Atlantic City,NJ,39.366776,-74.442788,RES3B,3001,,33,ME,1902,1902,3301,2,1,1556.817557,1556.817557,3505,YES,28.74,34.4,3,2.04,6106,114.258349,123.910645,133.685975,139.99589,I,Above,Flat,0,5701,Wood,31.56669936,0,0,,,,1,1,,0.03,nav,1,1902,2,, 3464,NJBF000065390,36 N NEWTON AVE,Atlantic City,NJ,39.34692544,-74.46687866,RES3A,3001,,17,NE,1922,1922,3301,2,1,1593.551962,1593.551962,3505,YES,34.31,47.92,3,5.65,6106,113.977433,123.688158,133.429327,139.909586,I,Above,Flat,0,5701,Wood,41.11260634,0,0,,,,1,1,,0.03,nav,1,1922,2,, 3465,NJBF000070478,610 N INDIANA AVE,Atlantic City,NJ,39.36729833,-74.43814268,RES1,3001,,33,NE,1920,1900,3102,2,1,4645.514734,4645.514734,3505,YES,43.47,53.47,3,6.06,6106,114.352556,123.989732,133.773006,140.062551,I,Above,Gable,0,5701,Wood,48.47109276,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3466,NJBF000069284,222 N NEVADA AVE,Atlantic City,NJ,39.35951608,-74.44498874,RES3A,3001,,27,NE,1923,1923,3301,2,2,1403.194564,1403.194564,3505,NO,31.2,37.2,3,0.29,6106,114.297635,123.947742,133.720761,140.067773,I,Above,Flat,0,5701,Wood,34.20042198,0,0,,,,1,1,,0.03,nav,1,1923,2,, 3467,NJBF000072294,1417 N MICHIGAN AVE,Atlantic City,NJ,39.37318959,-74.44636819,RES1,3001,,17,NE,1900,1900,3102,2,1,1505.982683,1505.982683,3505,NO,41.08,46.28,3,7.08,6106,114.106535,123.777626,133.544779,139.842258,I,Above,Hip,0,5701,Wood,43.68057804,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3468,NJBF000067780,7 N CHELSEA AVE,Atlantic City,NJ,39.3544805,-74.4489105,RES3B,3001,,45,ME,1905,1905,3301,2,3,570.6256423,570.6256423,3504,NO,28.87,41.29,-4,0,6106,114.27448,123.930484,133.697644,140.080186,I,Above,Gable,0,NaN,Wood,35.07713441,0,0,,,,1,1,,0.03,nav,1,1905,2,, 3469,NJBF000070363,414 ATLANTIC AVE,Atlantic City,NJ,39.36684425,-74.41594863,RES3D,3004,100,NaN,E,1969,0,3303,3,1,543.4334282,543.4334282,3505,YES,53.62,59.28,3,8.56,6106,114.832973,124.400346,134.22506,140.415989,I,Above,Flat,0,NaN,Wood,56.44983442,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3470,NJBF000067773,8 N MORRIS AVE,Atlantic City,NJ,39.35446204,-74.44853477,RES3B,3001,,45,ME,1900,1900,3301,2,3,1490.255782,1490.255782,3504,NO,22.21,30.3,-4,0,6106,114.282874,123.937474,133.705228,140.08634,I,Above,Hip,0,NaN,Wood,26.25437025,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3471,NJBF000067291,2625 BOARDWALK,Atlantic City,NJ,39.35292422,-74.44195972,RES4,3003,739,NaN,E,1969,0,3404,2,1,38067.15227,38067.15227,3507,NO,25.13,37.56,1,-0.41,6106,114.444814,124.072995,133.851385,140.210591,I,Above,Flat,0,NaN,Wood,31.34176022,0,0,,,,2,2,,0.03,nav,1,1969,2,, 3472,NJBF000072841,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3751481,-74.41789057,RES3D,3001,,NaN,ME,1969,0,3301,1,1,6735.054887,6735.054887,3507,NO,14.72,19.9,1,2.13,6106,114.694708,124.278345,134.097672,140.271425,I,Above,Hip,0,NaN,Wood,17.31303253,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3473,NJBF000069437,108 S SOUTH CAROLINA RR,Atlantic City,NJ,39.36042159,-74.4259156,COM1,3001,29,NaN,ME,1969,0,3401,2,1,1404.610861,1404.610861,3507,YES,21.18,35.57,1,-0.3,6106,114.697713,124.285214,134.091453,140.35125,I,Above,Flat,0,NaN,Wood,28.3741465,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3474,NJBF000064926,133 S BARTRAM AVE,Atlantic City,NJ,39.3456838,-74.46089205,RES3A,3001,,18,NE,1925,1925,3301,3,1,1749.66991,1749.66991,3504,NO,38.82,53.31,-4,0,6106,114.124799,123.809276,133.558591,140.023761,I,Above,Gable,0,5701,Wood,46.06245414,0,0,,,,1,1,,0.03,nav,1,1925,3,, 3475,NJBF000073131,1 BORGATA WAY,Atlantic City,NJ,39.37810126,-74.43534105,COM8,3003,80,NaN,ME,1969,0,3401,1,1,1005365.285,1005365.285,3507,NO,20.52,32.85,1,2.9,6112,114.288758,123.927284,133.712159,139.950182,I,Above,Flat,0,NaN,Wood,26.68515799,0,0,,,,1,1,,1,nav,1,1969,1,, 3476,NJBF000071217,1045 N OHIO AVE,Atlantic City,NJ,39.36979385,-74.4408603,RES3A,3001,,45,NE,1900,1900,3301,2,2,648.5911319,648.5911319,3505,YES,36.2,44.23,3,-0.8,6106,114.264717,123.913853,133.691698,139.98245,I,Above,Flat,0,5701,Wood,40.21654554,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3477,NJBF000068793,151 N IOWA AVE,Atlantic City,NJ,39.35763298,-74.44712815,COM1,3003,,17,ME,1969,1900,3401,2,1,15304.41036,15304.41036,3507,NO,34.23,44.6,1,2.98,6106,114.274227,123.929035,133.698786,140.061731,I,Above,Flat,0,NaN,Wood,39.4159197,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3478,NJBF000072133,1631 BEACH AVE,Atlantic City,NJ,39.37266359,-74.45084236,RES1,3001,,17,NE,1900,1900,3102,2,1,1379.041267,1379.041267,3505,YES,35.36,44.45,3,2.94,6106,114.015518,123.70178,133.46157,139.776207,I,Above,Flat,0,5701,Wood,39.90556327,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3479,NJBF000072681,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37450072,-74.41969808,RES3C,3001,,NaN,ME,1969,0,3301,1,1,8987.73835,8987.73835,3505,NO,21.98,35.2,3,8.36,6106,114.663763,124.251847,134.06777,140.251989,I,Above,Hip,0,NaN,Wood,28.58985269,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3480,NJBF000072541,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3740372,-74.41902806,RES3C,3001,,NaN,ME,1969,0,3301,2,1,5769.41364,5769.41364,3505,NO,28.8,34.17,3,4.5,6106,114.683344,124.268986,134.086349,140.268991,I,Above,Hip,0,NaN,Wood,31.48653844,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3481,NJBF000065234,22 N NEWTON AVE,Atlantic City,NJ,39.34646738,-74.46650221,RES3A,3001,,17,NE,1911,1911,3301,2,1,1437.530607,1437.530607,3505,NO,38.22,44.66,3,4.15,6106,113.991641,123.69992,133.44159,139.922806,I,Above,Gable,0,5701,Wood,41.43920973,0,0,,,,1,1,,0.03,nav,1,1911,2,, 3482,NJBF000069027,2022 ATLANTIC AVE,Atlantic City,NJ,39.35844581,-74.43645066,COM1,3003,739,NaN,ME,1969,0,3401,1,1,12489.62437,12489.62437,3507,NO,13.63,23.68,1,2.49,6106,114.495428,124.114203,133.901745,140.216745,I,Above,Flat,0,NaN,Wood,18.65290354,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3483,NJBF000065108,109 S BARTRAM AVE,Atlantic City,NJ,39.34616001,-74.46123161,RES3A,3001,,45,NE,1920,1920,3301,3,2,2459.126665,2459.126665,3504,YES,43.56,56.34,-4,0,6106,114.111181,123.797986,133.546851,140.011238,I,Above,Hip,0,5701,Wood,49.95140045,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3484,NJBF000065724,47 N TALLAHASSEE AVE,Atlantic City,NJ,39.34792885,-74.46505204,RES3A,3001,,17,NE,1920,1920,3301,2,1,1229.775567,1229.775567,3505,NO,34.69,44.88,3,3.85,6106,114.004596,123.710063,133.45369,139.923411,I,Above,Hip,0,5701,Wood,39.78803162,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3485,NJBF000072044,2143 KUEHNLE AVE,Atlantic City,NJ,39.37240238,-74.45200886,RES1,3001,,17,NE,1900,1900,3101,1,1,1661.608008,1661.608008,3505,NO,25.17,33.38,3,7.41,6106,113.993151,123.683344,133.441301,139.760778,I,Above,Gable,0,5701,Wood,29.27361745,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3486,NJBF000071088,900 N INDIANA AVE,Atlantic City,NJ,39.36936246,-74.43958573,RES3A,3001,,27,NE,1900,1900,3301,2,2,848.4945049,848.4945049,3505,YES,38.43,51,3,4.25,6106,114.297247,123.941638,133.721842,140.009306,I,Above,Flat,0,5701,Wood,44.71388589,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3487,NJBF000068876,637 N DOVER AVE,Atlantic City,NJ,39.35788458,-74.46464939,RES1,3001,,17,NE,1988,1988,3101,1,1,1818.418622,1818.418622,3505,NO,19.72,32.81,3,2.05,6106,113.888401,123.609582,133.352624,139.774508,I,Above,Hip,0,5701,Wood,26.26571178,0,0,,,,1,1,,0.03,nav,1,1988,1,, 3488,NJBF000070067,1011 ARCTIC AVE,Atlantic City,NJ,39.36569416,-74.4247227,COM1,3003,441,NaN,ME,1969,0,3401,3,1,6239.41747,6239.41747,3507,YES,37.87,47.18,1,2.64,6106,114.659737,124.251658,134.059655,140.296333,I,Above,Flat,0,NaN,Wood,42.52490593,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3489,NJBF000069177,2506 FAIRMOUNT AVE,Atlantic City,NJ,39.35907298,-74.4440671,RES3B,3001,,33,ME,1900,1900,3301,2,1,612.9052179,612.9052179,3505,YES,39.49,51.93,3,1.54,6106,114.323034,123.969192,133.74379,140.08881,I,Above,Gable,0,NaN,Wood,45.71299391,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3490,NJBF000064875,121 S KINGSTON AVE,Atlantic City,NJ,39.3455535,-74.46168835,RES3A,3001,,45,NE,1949,1949,3301,2,2,1024.594873,1024.594873,3504,YES,31.46,39.81,-4,0,6106,114.109058,123.796376,133.544574,140.013259,I,Above,Flat,0,5701,Wood,35.63120022,0,0,,,,1,1,,0.03,nav,1,1949,2,, 3491,NJBF000067284,3417 VENTNOR AVE,Atlantic City,NJ,39.35291022,-74.45249676,RES3B,3001,,45,E,1950,1950,3303,3,4,2201.863435,2201.863435,3507,YES,54.89,61.45,1,1.82,6106,114.216003,123.882487,133.644146,140.047148,I,Above,Flat,0,NaN,Wood,58.17160896,0,0,,,,1,1,,0.03,nav,1,1950,3,, 3492,NJBF000070440,1410 ADRIATIC AVE,Atlantic City,NJ,39.367145,-74.432288,RES3C,3003,,NaN,E,1969,0,3305,1,1,5614.40665,5614.40665,3507,NO,13.38,22.12,1,0.98,6106,114.480404,124.098168,133.891949,140.157544,I,Above,Flat,0,NaN,Wood,17.74868728,0,0,,,,2,2,,0.03,nav,1,1969,1,, 3493,NJBF000067541,3505 WINCHESTER AVE,Atlantic City,NJ,39.35377326,-74.45426809,RES3B,3001,,45,E,1900,1900,3303,1,2,1990.456158,1990.456158,3507,NO,16.61,23.48,1,2.48,6106,114.16656,123.84121,133.600119,140.006286,I,Above,Hip,0,NaN,Wood,20.04612557,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3494,NJBF000068296,2500 ATLANTIC AVE,Atlantic City,NJ,39.356258,-74.4418815,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2566.763884,2566.763884,3507,YES,13.98,20.97,1,0.64,6106,114.404994,124.038848,133.817307,140.163913,I,Above,Flat,0,NaN,Wood,17.47261142,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3495,NJBF000068285,2506 ATLANTIC AVE,Atlantic City,NJ,39.35623069,-74.44204489,COM1,3003,100,NaN,ME,1969,0,3401,1,1,1325.506353,1325.506353,3507,NO,14.77,20.84,1,2.34,6106,114.401776,124.036161,133.814349,140.161755,I,Above,Flat,0,NaN,Wood,17.80313093,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3496,NJBF000068273,2508 ATLANTIC AVE,Atlantic City,NJ,39.35620234,-74.44211062,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1512.712607,1512.712607,3507,YES,34.04,39.42,1,2.48,6106,114.400705,124.035273,133.813353,140.161149,I,Above,Flat,0,NaN,Wood,36.73216131,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3497,NJBF000068239,2514 ATLANTIC AVE,Atlantic City,NJ,39.35610283,-74.44230846,COM1,3003,29,NaN,ME,1969,0,3401,3,1,2569.956547,2569.956547,3507,YES,48.54,58.29,1,-0.98,6106,114.397663,124.032755,133.810513,140.159518,I,Above,Flat,0,NaN,Wood,53.41273009,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3498,NJBF000067654,102 S TEXAS AVE,Atlantic City,NJ,39.35408243,-74.44209562,RES3A,3004,,45,NE,1910,1910,3301,3,3,1348.15157,1348.15157,3505,YES,50.8,57.92,3,-1.94,6106,114.427375,124.058162,133.836331,140.191908,I,Above,Hip,0,5701,Wood,54.35901168,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3499,NJBF000067508,347 N DOVER AVE,Atlantic City,NJ,39.35368798,-74.46133445,RES1,3001,,17,NE,1900,1900,3102,1,1,1300.05881,1300.05881,3505,NO,19.94,32.03,3,1.77,6106,114.013079,123.714608,133.463082,139.894333,I,Above,Hip,0,5701,Wood,25.98535373,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3500,NJBF000071096,649 N NEW YORK AVE,Atlantic City,NJ,39.36939804,-74.43437024,RES3C,3001,100,NaN,ME,1969,0,3301,1,1,1716.655231,1716.655231,3505,NO,17.31,29.41,3,-0.48,6106,114.409193,124.03644,133.825942,140.09219,I,Above,Gable,0,NaN,Wood,23.36380813,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3501,NJBF000070592,808 N OHIO AVE,Atlantic City,NJ,39.36772503,-74.44005763,RES3B,3001,,17,ME,1920,1920,3301,2,1,1195.918354,1195.918354,3505,NO,32.54,43.96,3,5.81,6106,114.306204,123.950321,133.730133,140.025722,I,Above,Gable,0,NaN,Wood,38.2519836,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3502,NJBF000066424,21 N WINDSOR AVE,Atlantic City,NJ,39.3497145,-74.4597775,RES3A,3001,,17,NE,1911,1911,3301,2,1,1055.737354,1055.737354,3505,NO,25.86,32.63,3,-2.24,6106,114.097345,123.785608,133.536576,139.98024,I,Above,Flat,0,5701,Wood,29.24469249,0,0,,,,1,1,,0.03,nav,1,1911,2,, 3503,NJBF000066464,27 N WINDSOR AVE,Atlantic City,NJ,39.34982,-74.459861,RES3A,3001,,17,NE,1900,1900,3301,2,1,1214.032478,1214.032478,3505,NO,45.56,54.35,3,7.1,6106,114.094177,123.782965,133.533812,139.977309,I,Above,Hip,0,5701,Wood,49.95672469,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3504,NJBF000071993,1610 BEACH AVE,Atlantic City,NJ,39.3722143,-74.45039819,RES1,3001,,17,NE,1900,1900,3102,1,1,1187.599432,1187.599432,3505,NO,10.4,24.56,3,-2.94,6106,114.03029,123.714618,133.475328,139.790391,I,Above,Gable,0,5701,Wood,17.48252533,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3505,NJBF000068365,43 N IOWA AVE,Atlantic City,NJ,39.35651202,-74.44647582,COM1,3003,738,NaN,ME,1969,0,3401,2,1,1897.391599,1897.391599,3507,YES,31.06,42.35,1,-0.37,6106,114.302198,123.952826,133.723736,140.088486,I,Above,Flat,0,NaN,Wood,36.70693874,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3506,NJBF000071820,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37172964,-74.43897828,RES3E,3001,,NaN,ME,1969,0,3301,2,1,5553.760727,5553.760727,3505,NO,26.56,39.54,3,4,6106,114.282921,123.927759,133.708334,139.984382,I,Above,Flat,0,NaN,Wood,33.04975115,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3507,NJBF000071666,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37121613,-74.4383307,RES3E,3001,,NaN,ME,1969,0,3301,1,1,4141.835556,4141.835556,3505,NO,27.01,33.98,3,8.66,6106,114.302798,123.944982,133.726869,140.002347,I,Above,Gable,0,NaN,Wood,30.49939612,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3508,NJBF000069927,318 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36503026,-74.43520037,RES1,3001,,17,NE,1960,1960,3101,2,1,1206.97454,1206.97454,3507,NO,28.57,36.06,1,1.24,6106,114.442844,124.067325,133.856271,140.141997,I,Above,Gable,0,5701,Wood,32.31049246,0,0,,,,1,1,,0.03,nav,1,1960,2,, 3509,NJBF000071987,1408 EMERSON AVE,Atlantic City,NJ,39.37220328,-74.44617915,RES1,3001,,16,NE,1900,1900,3102,1,1,1338.486984,1338.486984,3505,NO,17.66,28.03,3,-0.95,6106,114.121899,123.791499,133.559346,139.860145,I,Above,Hip,0,5701,Wood,22.84876164,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3510,NJBF000066872,108 N ANNAPOLIS AVE,Atlantic City,NJ,39.35109073,-74.46069149,RES3A,3001,,17,NE,1930,1930,3301,2,1,749.8464419,749.8464419,3505,NO,32.37,40.37,3,7.94,6106,114.059858,123.754259,133.50387,139.944653,I,Above,Flat,0,5701,Wood,36.37319703,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3511,NJBF000072210,502 CASPIAN AVE,Atlantic City,NJ,39.37292198,-74.42200983,RES1,3001,,45,NE,1900,1900,3102,2,2,1275.829558,1275.829558,3505,NO,38.47,47.78,3,3.01,6106,114.632781,124.225825,134.037632,140.237657,I,Above,Hip,0,5701,Wood,43.12576171,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3512,NJBF000066879,136 N WINDSOR AVE,Atlantic City,NJ,39.3511357,-74.46134627,RES3A,3001,,45,NE,1900,1900,3301,2,2,781.105232,781.105232,3505,NO,34.67,44.22,3,6.07,6106,114.044938,123.741972,133.490646,139.933456,I,Above,Gable,0,5701,Wood,39.44950231,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3513,NJBF000067506,109 ALBION PL,Atlantic City,NJ,39.35368461,-74.44234013,RES3A,3004,,45,NE,1915,1915,3301,2,3,1402.987412,1402.987412,3505,YES,24.09,31.56,3,1.46,6106,114.42705,124.057979,133.835749,140.193843,I,Above,Flat,0,5701,Wood,27.82387764,0,0,,,,1,1,,0.03,nav,1,1915,2,, 3514,NJBF000068898,163 WESTMINISTER AVE,Atlantic City,NJ,39.35796596,-74.42749178,COM1,3003,100,NaN,ME,1969,0,3401,3,1,995.1227395,995.1227395,3507,YES,40.56,50.02,1,-0.2,6106,114.693999,124.282347,134.085765,140.361147,I,Above,Flat,0,NaN,Wood,45.28881703,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3515,NJBF000066960,3701 VENTNOR AVE,Atlantic City,NJ,39.35145623,-74.45552452,COM3,3003,730,NaN,ME,1969,0,3401,1,1,6422.422899,6422.422899,3507,NO,17.89,28.06,1,2.08,6106,114.168236,123.843467,133.600606,140.021199,I,Above,Flat,0,NaN,Wood,22.97636864,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3516,NJBF000066855,109 N WINDSOR AVE,Atlantic City,NJ,39.35102192,-74.46083366,RES3A,3001,,17,NE,1930,1930,3301,2,1,779.7650795,779.7650795,3505,NO,32.12,38.14,3,6.48,6106,114.057599,123.752429,133.501839,139.94342,I,Above,Flat,0,5701,Wood,35.12927143,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3517,NJBF000067066,315 N RALEIGH AVE,Atlantic City,NJ,39.35191749,-74.46358468,RES1,3001,,17,NE,1986,1986,3102,1,1,1312.657032,1312.657032,3505,NO,19.24,30.93,3,3.83,6106,113.985971,123.693193,133.438648,139.885211,I,Above,Gable,0,5701,Wood,25.08537619,0,0,,,,1,1,,0.03,nav,1,1986,1,, 3518,NJBF000070128,604 N MICHIGAN AVE,Atlantic City,NJ,39.36594186,-74.44048198,RES3B,3001,,17,ME,1900,1900,3301,3,1,962.8293701,962.8293701,3505,YES,42.91,52.05,3,-1.26,6106,114.318064,123.96145,133.740949,140.045056,I,Above,Hip,0,NaN,Wood,47.4795965,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3519,NJBF000068129,432 WISTERIA RD,Atlantic City,NJ,39.355739,-74.4603975,RES1,3001,,45,NE,1920,1920,3102,2,2,1399.088047,1399.088047,3505,NO,33.49,47.5,3,-2.42,6106,114.008081,123.709393,133.45896,139.877908,I,Above,Flat,0,5701,Wood,40.49427226,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3520,NJBF000067982,105 N MONTPELIER AVE,Atlantic City,NJ,39.35523784,-74.45096684,RES3A,3001,,17,NE,1900,1900,3301,2,1,1594.346369,1594.346369,3505,NO,36.07,42.27,3,5.88,6106,114.220285,123.885152,133.64903,140.036615,I,Above,Flat,0,5701,Wood,39.17254861,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3521,NJBF000068923,628 N ELBERON AVE,Atlantic City,NJ,39.35801964,-74.46421853,RES1,3001,,18,NE,1900,1900,3101,1,1,2376.040129,2376.040129,3505,NO,19.03,27.37,3,4.82,6106,113.896188,123.615882,133.359509,139.77955,I,Above,Hip,0,5701,Wood,23.2018543,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3522,NJBF000066567,3906 VENTNOR AVE,Atlantic City,NJ,39.35010091,-74.45730352,COM1,3004,738,NaN,ME,1969,0,3401,3,4,2268.322646,2268.322646,3507,NO,45.23,57.87,1,2.16,6106,114.14654,123.826006,133.580551,140.013521,I,Above,Flat,0,NaN,Wood,51.54898144,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3523,NJBF000068604,2913 FAIRMOUNT AVE,Atlantic City,NJ,39.35722183,-74.44955049,RES3A,3001,,27,NE,1900,1900,3301,2,2,1623.806205,1623.806205,3507,YES,20.63,34.15,1,-0.74,6106,114.226614,123.889551,133.655467,140.029524,I,Above,Gable,0,5701,Wood,27.3919628,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3524,NJBF000068342,206 N MONTPELIER AVE,Atlantic City,NJ,39.35643601,-74.45235726,RES3A,3001,,17,NE,1910,1900,3301,1,1,1940.440855,1940.440855,3507,NO,21.02,27.67,1,2.44,6106,114.175161,123.847162,133.608758,139.996679,I,Above,Hip,0,5701,Wood,24.34444018,0,0,,,,1,1,,0.03,nav,1,1910,1,, 3525,NJBF000066207,30 N LACLEDE PL,Atlantic City,NJ,39.34919371,-74.46123881,RES3A,3001,,27,NE,1900,1900,3301,2,2,1507.365362,1507.365362,3505,YES,25.94,32.24,3,3.36,6106,114.071987,123.764929,133.513828,139.964944,I,Above,Flat,0,5701,Wood,29.09125627,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3526,NJBF000070082,1717 BISHOP RICHARD ALLEN,Atlantic City,NJ,39.36573292,-74.43619783,RES1,3001,,NaN,NE,1969,0,3101,1,1,3849.930961,3849.930961,3507,NO,13.17,18.71,1,-0.81,6106,114.412988,124.04171,133.828755,140.116117,I,Above,Gable,0,5701,Wood,15.93988273,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3527,NJBF000070045,1717 BISHOP RICHARD ALLEN,Atlantic City,NJ,39.3656042,-74.43637663,RES1,3001,,NaN,NE,1969,0,3101,1,1,4619.251584,4619.251584,3507,NO,16.27,22.69,1,1.72,6106,114.410661,124.039809,133.826562,140.115151,I,Above,Hip,0,5701,Wood,19.48239283,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3528,NJBF000067410,103 N ST DAVIDS PL,Atlantic City,NJ,39.3533805,-74.4554255,RES3B,3001,,27,E,1925,1930,3303,3,2,795.230749,795.230749,3507,NO,40.45,48.01,1,0.9,6106,114.146181,123.824513,133.581702,139.99381,I,Above,Flat,0,NaN,Wood,44.23197448,0,0,,,,1,1,,0.03,nav,1,1925,3,, 3529,NJBF000068244,24 S GEORGIA AVE,Atlantic City,NJ,39.35612896,-74.44028296,COM1,3003,100,NaN,ME,1969,0,3401,4,1,2162.98131,2162.98131,3507,YES,63.15,68.47,1,-0.98,6106,114.441178,124.069218,133.850351,140.190546,I,Above,Hip,0,NaN,Wood,65.81051073,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3530,NJBF000068132,420 N TRENTON AVE,Atlantic City,NJ,39.35574627,-74.45994566,RES1,3001,,17,NE,1900,1900,3102,2,1,1276.136281,1276.136281,3505,NO,36.82,48.22,3,2.32,6106,114.017872,123.717456,133.467681,139.885137,I,Above,Hip,0,5701,Wood,42.51912121,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3531,NJBF000072679,1914 EMERSON AVE,Atlantic City,NJ,39.3744905,-74.454283,RES1,3001,,17,NE,1900,1900,3101,2,1,1086.87015,1086.87015,3505,NO,45.75,59.05,3,7.12,6106,113.92006,123.619896,133.373203,139.69087,I,Above,Gable,0,5701,Wood,52.39580597,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3532,NJBF000070960,14 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36897527,-74.4137852,RES3D,3004,,17,E,1999,1999,3303,2,1,1330.258056,1330.258056,3505,NO,31.44,41.68,3,7.04,6106,114.853637,124.417913,134.24665,140.420269,I,Above,Hip,0,NaN,Wood,36.55770686,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 3533,NJBF000070953,660 N KENTUCKY AVE,Atlantic City,NJ,39.36895835,-74.43608358,RES1,3001,,17,NE,1900,1900,3101,1,1,1698.191797,1698.191797,3505,NO,16.7,28.4,3,2.11,6106,114.377453,124.009781,133.796308,140.071253,I,Above,Gable,0,5701,Wood,22.54988765,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3534,NJBF000068903,6 N MISSISSIPPI AVE,Atlantic City,NJ,39.357974,-74.439891,COM1,3003,571,NaN,ME,1969,0,3401,1,1,1962.330137,1962.330137,3507,NO,20.04,29.28,1,1.39,6106,114.426916,124.056703,133.838394,140.170112,I,Above,Flat,0,NaN,Wood,24.66018695,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3535,NJBF000065880,29 N BARTRAM AVE,Atlantic City,NJ,39.34834499,-74.46300884,RES3A,3001,,17,NE,1925,1925,3301,2,1,1566.483137,1566.483137,3505,NO,43.22,57.42,3,7.33,6106,114.044067,123.742284,133.488716,139.949735,I,Above,Hip,0,5701,Wood,50.32338211,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3536,NJBF000068384,536 N ELBERON AVE,Atlantic City,NJ,39.35657511,-74.46299223,RES1,3001,,17,NE,1900,1900,3101,2,1,1289.91748,1289.91748,3505,NO,35.17,44.98,3,6.48,6106,113.940866,123.653575,133.399247,139.822436,I,Above,Hip,0,5701,Wood,40.07485313,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3537,NJBF000071941,1801 N MISSISSIPPI AVE,Atlantic City,NJ,39.37205606,-74.45360862,RES3C,3001,,NaN,ME,1969,0,3301,1,1,5077.658135,5077.658135,3505,NO,16.01,23.27,3,0.33,6106,113.962306,123.657946,133.413411,139.73937,I,Above,Gable,0,NaN,Wood,19.64294043,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3538,NJBF000068357,503 N ELBERON AVE,Atlantic City,NJ,39.35648029,-74.46239351,RES1,3001,,17,NE,1963,1963,3101,1,1,1935.644326,1935.644326,3505,NO,19.41,30.08,3,4.42,6106,113.955153,123.665384,133.411933,139.833758,I,Above,Hip,0,5701,Wood,24.74500366,0,0,,,,1,1,,0.03,nav,1,1963,1,, 3539,NJBF000070499,,Atlantic City,NJ,39.36737301,-74.42164059,RES1,3001,,NaN,NE,1969,0,3102,2,1,2429.165561,2429.165561,3505,NO,30.38,39.96,3,3.01,6106,114.705589,124.2905,134.10411,140.32079,I,Above,Hip,0,5701,Wood,35.17224644,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3540,NJBF000067979,416 N HARRISBURG AVE,Atlantic City,NJ,39.35522623,-74.46071546,RES1,3001,,33,NE,1920,1920,3102,2,1,1236.126138,1236.126138,3505,NO,32.14,38.04,3,1.58,6106,114.007476,123.709182,133.458359,139.880648,I,Above,Flat,0,5701,Wood,35.08746212,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3541,NJBF000065504,44 N MONTGOMERY AVE,Atlantic City,NJ,39.34727074,-74.46641951,RES3A,3001,,27,NE,1900,1900,3301,2,2,1800.759499,1800.759499,3505,YES,37.76,44.35,3,4.68,6106,113.983043,123.692636,133.434419,139.911599,I,Above,Flat,0,5701,Wood,41.05330061,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3542,NJBF000069121,108 N GEORGIA AVE,Atlantic City,NJ,39.35884545,-74.4420905,RES3B,3001,,45,ME,1900,1900,3301,2,2,1195.541315,1195.541315,3505,NO,36.25,50.74,3,4.76,6106,114.368638,124.007488,133.785401,140.123167,I,Above,Flat,0,NaN,Wood,43.49389148,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3543,NJBF000067144,3400 ATLANTIC AVE,Atlantic City,NJ,39.35227928,-74.45151011,COM1,3003,51,NaN,ME,1969,0,3401,1,1,4574.660845,4574.660845,3507,NO,15.28,26.04,1,-0.38,6106,114.245446,123.907105,133.670303,140.071992,I,Above,Flat,0,NaN,Wood,20.66212725,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3544,NJBF000069985,1528 MEDITERRANEAN AVE,Atlantic City,NJ,39.36532567,-74.43276144,RES3D,3004,,33,E,1900,1900,3303,2,1,7938.293697,7938.293697,3505,YES,40,46.27,3,2.26,6106,114.491803,124.108687,133.901947,140.176104,I,Above,Flat,0,NaN,Wood,43.13743178,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3545,NJBF000069024,672 N DOVER AVE,Atlantic City,NJ,39.35842798,-74.46567879,RES1,3001,,16,NE,1920,1920,3101,1,1,1222.186983,1222.186983,3505,NO,12.13,23.55,3,-0.07,6106,113.859139,123.585163,133.32662,139.748783,I,Above,Gable,0,5701,Wood,17.84140191,0,0,,,,1,1,,0.03,nav,1,1920,1,, 3546,NJBF000069322,13 BLAKE ST,Atlantic City,NJ,39.359674,-74.441652,RES3B,3001,100,NaN,ME,1900,0,3301,2,1,894.6382222,894.6382222,3505,NO,34.6,43.23,3,5.93,6106,114.368027,124.006644,133.785205,140.118002,I,Above,Flat,0,NaN,Wood,38.91747481,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3547,NJBF000065748,6 N BARTRAM AVE,Atlantic City,NJ,39.34798315,-74.46320606,RES3A,3001,,45,NE,1900,1900,3301,2,2,1384.152025,1384.152025,3505,NO,34.95,43.57,3,4,6106,114.044398,123.742672,133.488832,139.952158,I,Above,Hip,0,5701,Wood,39.25843862,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3548,NJBF000065717,4 N BARTRAM AVE,Atlantic City,NJ,39.3479081,-74.46314873,RES3A,3001,,17,NE,1920,1920,3301,2,1,1594.363295,1594.363295,3505,NO,23.09,34.91,3,-2.4,6106,114.046612,123.744512,133.490751,139.954221,I,Above,Gable,0,5701,Wood,29.00026962,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3549,NJBF000065897,38 N BARTRAM AVE,Atlantic City,NJ,39.34837841,-74.46351609,RES3A,3001,,17,NE,1900,1900,3301,2,1,1512.107993,1512.107993,3505,NO,36.56,45.47,3,4.6,6106,114.032526,123.732805,133.478534,139.941118,I,Above,Hip,0,5701,Wood,41.01231677,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3550,NJBF000069859,325 N OHIO AVE,Atlantic City,NJ,39.36461319,-74.43744149,RES1,3001,,27,NE,2000,2000,3101,2,2,1782.827889,1782.827889,3507,NO,23.71,29.06,1,-0.1,6106,114.39951,124.030889,133.815954,140.112666,I,Above,Gable,0,5701,Wood,26.38596043,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3551,NJBF000066706,36 N DOVER AVE,Atlantic City,NJ,39.35052859,-74.4588286,RES3A,3001,,27,NE,1900,1900,3301,2,2,1628.084575,1628.084575,3505,YES,31.34,39.64,3,3.86,6106,114.107748,123.793891,133.546205,139.982919,I,Above,Flat,0,5701,Wood,35.48940756,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3552,NJBF000069866,316 N INDIANA AVE,Atlantic City,NJ,39.36467776,-74.43646358,RES1,3001,,27,NE,2000,2000,3101,2,2,1865.764059,1865.764059,3507,NO,35.92,42.79,1,1.57,6106,114.419803,124.048003,133.834774,140.127147,I,Above,Hip,0,5701,Wood,39.35717828,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3553,NJBF000068488,3009 FAIRMOUNT AVE,Atlantic City,NJ,39.35692674,-74.45026563,RES3A,3001,,33,NE,1969,1900,3301,2,1,6026.159237,6026.159237,3507,YES,34.06,43.7,1,0.37,6106,114.214661,123.879743,133.644558,140.022564,I,Above,Hip,0,5701,Wood,38.88011034,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3554,NJBF000069008,4100 WEST END AVE,Atlantic City,NJ,39.35835739,-74.46580887,RES1,3001,,17,NE,1969,1969,3101,2,1,1276.489458,1276.489458,3505,NO,28.07,38.78,3,5.83,6106,113.85715,123.583584,133.324873,139.747722,I,Above,Flat,0,5701,Wood,33.42323561,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3555,NJBF000066140,42 S DOVER AVE,Atlantic City,NJ,39.34902248,-74.45759674,RES3A,3001,,17,NE,1900,1900,3301,2,1,1213.686642,1213.686642,3504,NO,32.81,40.25,-4,0,6106,114.15389,123.832392,133.586514,140.025147,I,Above,Hip,0,5701,Wood,36.53222654,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3556,NJBF000072712,701 N MARYLAND AVE,Atlantic City,NJ,39.37464,-74.4280865,IND3,3001,511,NaN,E,1969,0,3401,2,1,1101.188027,1101.188027,3507,NO,33.79,45.68,1,2.5,6106,114.483333,124.096416,133.896094,140.117074,I,Above,Flat,0,NaN,Wood,39.73768567,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3557,NJBF000072700,701 N MARYLAND AVE,Atlantic City,NJ,39.37459067,-74.42816251,IND3,3001,511,NaN,E,1969,0,3401,3,1,1225.387867,1225.387867,3507,NO,48.94,63.19,1,1.66,6106,114.482269,124.095535,133.895084,140.11656,I,Above,Gable,0,NaN,Wood,56.06340592,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3558,NJBF000070934,120 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36889786,-74.41848132,RES3D,3004,,NaN,E,1900,0,3303,3,1,1759.765197,1759.765197,3505,YES,44.43,53.66,3,-0.9,6106,114.754862,124.332514,134.152002,140.348715,I,Above,Hip,0,NaN,Wood,49.0477553,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3559,NJBF000069832,304 N INDIANA AVE,Atlantic City,NJ,39.36436338,-74.43624901,RES1,3001,,27,NE,2000,2000,3101,2,2,1764.919645,1764.919645,3507,NO,28.36,42.22,1,-0.72,6106,114.428196,124.055248,133.842453,140.135078,I,Above,Hip,0,5701,Wood,35.29104642,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3560,NJBF000069843,308 N INDIANA AVE,Atlantic City,NJ,39.36446808,-74.43632262,RES1,3001,,27,NE,2000,2000,3101,2,2,1800.598796,1800.598796,3507,NO,25.5,34.15,1,0.1,6106,114.425348,124.052791,133.839847,140.132399,I,Above,Hip,0,5701,Wood,29.82808929,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3561,NJBF000067860,24 N CHELSEA AVE,Atlantic City,NJ,39.35481313,-74.44997816,RES3B,3001,,17,ME,1910,1910,3301,2,1,1990.787297,1990.787297,3504,NO,37.92,51.4,-4,0,6106,114.247104,123.907601,133.673059,140.058513,I,Above,Flat,0,NaN,Wood,44.66039565,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3562,NJBF000071601,195 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.371043,-74.41448167,RES3D,3004,,27,E,2000,2000,3303,2,2,1722.603489,1722.603489,3505,NO,44.25,51.5,3,8,6106,114.814577,124.383642,134.210667,140.381266,I,Above,Hip,0,NaN,Wood,47.87738581,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 3563,NJBF000069863,132 N TENNESSEE AVE,Atlantic City,NJ,39.3646555,-74.4300265,RES3D,3004,,45,E,1900,1900,3303,3,3,2140.889728,2140.889728,3505,YES,62.84,73.71,3,7.42,6106,114.558553,124.165669,133.96399,140.228437,I,Above,Flat,0,NaN,Wood,68.27638692,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3564,NJBF000069079,712 WISTERIA RD,Atlantic City,NJ,39.35869204,-74.46276533,RES1,3001,,17,NE,1916,1916,3101,1,1,578.2110259,578.2110259,3505,NO,22.93,32.28,3,6.24,6106,113.919879,123.634881,133.380456,139.793193,I,Above,Hip,0,5701,Wood,27.60698945,0,0,,,,1,1,,0.03,nav,1,1916,1,, 3565,NJBF000067716,2608 PACIFIC AVE,Atlantic City,NJ,39.35425571,-74.44232815,RES3A,3004,100,NaN,NE,1969,0,3301,2,1,6991.578506,6991.578506,3505,YES,29.44,41.11,3,5.89,6106,114.420178,124.052098,133.829883,140.185828,I,Above,Flat,0,5701,Wood,35.27191917,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3566,NJBF000071271,900 N DR MARTIN LUTHER K,Atlantic City,NJ,39.37000936,-74.43854761,RES1,3001,,17,NE,1900,1900,3102,2,1,1873.902776,1873.902776,3505,NO,33.19,43.17,3,1.43,6106,114.312109,123.953744,133.735599,140.016512,I,Above,Gable,0,5701,Wood,38.18048355,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3567,NJBF000071272,817 GREEN ST,Atlantic City,NJ,39.3700099,-74.43713873,RES1,3001,,16,NE,1900,1900,3101,1,1,1335.17999,1335.17999,3505,NO,24.74,39.35,3,6.18,6106,114.342463,123.979443,133.763806,140.039102,I,Above,Gable,0,5701,Wood,32.04429841,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3568,NJBF000069980,1000 ARCTIC AVE,Atlantic City,NJ,39.36530263,-74.42434888,COM1,3003,,NaN,ME,1969,0,3401,3,1,21638.2368,21638.2368,3507,NO,40.45,49.38,1,0.8,6106,114.672393,124.262595,134.071345,140.307583,I,Above,Flat,0,NaN,Wood,44.91653103,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3569,NJBF000069905,1000 ARCTIC AVE,Atlantic City,NJ,39.3649175,-74.4248015,COM1,3003,,NaN,ME,1969,0,3401,2,1,3090.549937,3090.549937,3507,NO,29.16,34.59,1,-0.06,6106,114.66732,124.258358,134.066304,140.305945,I,Above,Hip,0,NaN,Wood,31.87467776,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3570,NJBF000069917,326 ROBINSON AVE,Atlantic City,NJ,39.36498051,-74.43569016,RES1,3001,,NaN,NE,1969,0,3101,1,1,2292.815549,2292.815549,3507,NO,19.05,31.65,1,1.29,6106,114.432873,124.058909,133.846994,140.134982,I,Above,Gable,0,5701,Wood,25.34980724,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3571,NJBF000069877,326 ROBINSON AVE,Atlantic City,NJ,39.36473673,-74.43549581,RES1,3001,,NaN,NE,1969,0,3101,1,1,1847.027966,1847.027966,3507,NO,13.82,23.51,1,-0.98,6106,114.43996,124.065022,133.853493,140.141551,I,Above,Gable,0,5701,Wood,18.66152392,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3572,NJBF000069856,326 ROBINSON AVE,Atlantic City,NJ,39.36459092,-74.43543456,RES1,3001,,NaN,NE,1969,0,3101,1,1,2481.914101,2481.914101,3507,NO,15.74,26.36,1,2.62,6106,114.443015,124.067675,133.85628,140.144611,I,Above,Gable,0,5701,Wood,21.05135158,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3573,NJBF000069864,1300 BALTIC AVE,Atlantic City,NJ,39.36465911,-74.42898162,RES3D,3004,29,NaN,E,1969,0,3303,3,1,7573.244485,7573.244485,3505,NO,64.67,76.65,3,8.71,6106,114.580901,124.184688,133.984919,140.244652,I,Above,Flat,0,NaN,Wood,70.66186574,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3574,NJBF000072229,29 SCHOONER CT,Atlantic City,NJ,39.37297175,-74.41694045,RES3C,3001,,35,ME,1990,1990,3301,2,1,3505.019925,3505.019925,3505,NO,36.45,46.1,3,3.17,6106,114.739992,124.318433,134.140179,140.316478,I,Above,Hip,0,NaN,Wood,41.27468551,0,0,,,,1,1,,0.03,nav,1,1990,2,, 3575,NJBF000069889,1931 BACHARACH BLVD,Atlantic City,NJ,39.3647932,-74.43871682,IND2,3001,660,NaN,ME,1969,0,3401,1,1,12152.475,12152.475,3507,NO,12.03,26.63,1,0.5,6106,114.369829,124.005745,133.788547,140.08987,I,Above,Flat,0,NaN,Wood,19.33131841,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3576,NJBF000072383,613 SEWELL AVE,Atlantic City,NJ,39.373474,-74.4236775,RES1,3001,,17,NE,1920,1920,3102,2,1,1320.69021,1320.69021,3505,NO,28.58,39.16,3,7.14,6106,114.590882,124.189476,133.997918,140.203617,I,Above,Flat,0,5701,Wood,33.86797909,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3577,NJBF000064985,50 S TALLAHASSEE AVE,Atlantic City,NJ,39.34584349,-74.46386217,RES1,3001,,16,NE,1900,1900,3102,2,1,1569.176934,1569.176934,3504,NO,29.03,37.89,-4,0,6110,114.057663,123.754151,133.49937,139.974594,I,Above,Hip,0,5701,Wood,33.45908659,0,0,,,,1,1,,0.35,nav,1,1900,2,, 3578,NJBF000069012,2402 ARCTIC AVE,Atlantic City,NJ,39.35838587,-74.44180665,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,926.7866902,926.7866902,3505,YES,41.74,47.7,3,8.17,6106,114.380404,124.017529,133.795961,140.134276,I,Above,Flat,0,NaN,Wood,44.72017966,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3579,NJBF000071093,724 GREEN ST,Atlantic City,NJ,39.36937833,-74.43714649,RES1,3001,,17,NE,1900,1900,3101,2,1,1583.687292,1583.687292,3505,NO,29.05,41.88,3,5.86,6106,114.349674,123.985975,133.770496,140.048191,I,Above,Flat,0,5701,Wood,35.46923003,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3580,NJBF000068375,118 N MORRIS AVE,Atlantic City,NJ,39.35655251,-74.44986232,RES3A,3001,,45,NE,1900,1900,3301,2,2,1434.855495,1434.855495,3505,YES,28.9,37.74,3,5.02,6106,114.228067,123.891061,133.656554,140.034528,I,Above,Hip,0,5701,Wood,33.31954511,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3581,NJBF000066660,115 N RALEIGH AVE,Atlantic City,NJ,39.3503942,-74.46261573,RES3A,3001,,27,NE,1900,1900,3301,2,2,1615.888075,1615.888075,3505,YES,31.31,44.37,3,2.9,6106,114.026514,123.727134,133.474053,139.924465,I,Above,Flat,0,5701,Wood,37.84018512,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3582,NJBF000070766,600 BALTIC AVE,Atlantic City,NJ,39.36835371,-74.42082842,RES3D,3004,,NaN,E,1969,0,3303,3,1,5578.419452,5578.419452,3505,NO,48.53,60.55,3,7.48,6106,114.711321,124.295152,134.110174,140.319806,I,Above,Gable,0,NaN,Wood,54.54174788,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3583,NJBF000070830,600 BALTIC AVE,Atlantic City,NJ,39.36856592,-74.42057946,RES3D,3004,,NaN,E,1969,0,3303,4,1,4534.785876,4534.785876,3505,NO,69.32,77.21,3,5.58,6106,114.714125,124.297503,134.112972,140.320736,I,Above,Hip,0,NaN,Wood,73.26458169,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3584,NJBF000070697,600 BALTIC AVE,Atlantic City,NJ,39.36808839,-74.4203417,RES3D,3004,,NaN,E,1969,0,3303,3,1,5695.936805,5695.936805,3505,NO,53.28,66.42,3,7.57,6106,114.724813,124.306836,134.122837,140.331037,I,Above,Hip,0,NaN,Wood,59.85339988,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3585,NJBF000070656,600 BALTIC AVE,Atlantic City,NJ,39.36794484,-74.4205546,RES3D,3004,,NaN,E,1969,0,3303,3,1,6763.359095,6763.359095,3505,NO,44.95,53.43,3,6.81,6106,114.721966,124.304424,134.120036,140.329712,I,Above,Hip,0,NaN,Wood,49.18909398,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3586,NJBF000070696,600 BALTIC AVE,Atlantic City,NJ,39.36808472,-74.41988979,RES3D,3004,,NaN,E,1969,0,3303,3,1,5655.828167,5655.828167,3505,NO,34.46,42.3,3,0.92,6106,114.734473,124.315152,134.132027,140.338089,I,Above,Hip,0,NaN,Wood,38.3779841,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3587,NJBF000070613,605 ARCTIC AVE,Atlantic City,NJ,39.36778301,-74.41969197,RES3D,3004,,NaN,E,1969,0,3303,4,1,4950.194679,4950.194679,3505,NO,69.13,75.82,3,3.79,6106,114.742259,124.321932,134.139234,140.34533,I,Above,Gable,0,NaN,Wood,72.47514622,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3588,NJBF000069940,402 N OHIO AVE,Atlantic City,NJ,39.3650979,-74.43834396,RES3B,3001,,45,ME,1900,1900,3301,4,3,1760.214373,1760.214373,3505,YES,58.34,69.3,3,3.58,6106,114.374251,124.009313,133.792706,140.091349,I,Above,Hip,0,NaN,Wood,63.8216948,0,0,,,,1,1,,0.03,nav,1,1900,4,, 3589,NJBF000065078,4717 VENTNOR AVE,Atlantic City,NJ,39.34607934,-74.46645026,RES3A,3001,,18,NE,1919,1919,3301,2,1,2143.25774,2143.25774,3505,NO,26.2,38.01,3,2.56,6106,113.997815,123.705083,133.446816,139.92968,I,Above,Hip,0,5701,Wood,32.10684162,0,0,,,,1,1,,0.03,nav,1,1919,2,, 3590,NJBF000067092,2 N ST DAVIDS PL,Atlantic City,NJ,39.35206156,-74.45488797,RES3B,3001,,45,E,1920,1920,3303,2,3,1483.558261,1483.558261,3507,NO,22.23,30.32,1,0.66,6106,114.174499,123.848432,133.606502,140.022157,I,Above,Hip,0,NaN,Wood,26.27537177,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3591,NJBF000069570,1501 ATLANTIC AVE,Atlantic City,NJ,39.36170462,-74.42972015,COM1,3003,732,NaN,ME,1969,0,3401,2,1,2559.301503,2559.301503,3507,YES,36.3,45.4,1,2.96,6106,114.600592,124.202316,134.001529,140.27479,I,Above,Flat,0,NaN,Wood,40.84992626,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3592,NJBF000067088,55 N TRENTON AVE,Atlantic City,NJ,39.3520393,-74.45663812,RES3A,3001,,18,NE,1900,1900,3301,2,1,2286.180935,2286.180935,3505,NO,25.72,38.95,3,2.63,6106,114.136561,123.817096,133.572558,139.994822,I,Above,Gable,0,5701,Wood,32.33875991,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3593,NJBF000065288,101 S DELANCY PL,Atlantic City,NJ,39.34663015,-74.46048532,RES3A,3001,,18,NE,1925,1925,3301,2,1,1737.441604,1737.441604,3504,YES,37.85,48.58,-4,0,6106,114.121454,123.806318,133.556251,140.015854,I,Above,Gable,0,5701,Wood,43.21260168,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3594,NJBF000064936,102 S KINGSTON AVE,Atlantic City,NJ,39.34571479,-74.46229339,RES3A,3001,,17,NE,1900,1900,3301,3,1,3903.026684,3903.026684,3504,YES,38.79,46.69,-4,0,6106,114.093714,123.783747,133.531115,140.001316,I,Above,Hip,0,5701,Wood,42.73997591,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3595,NJBF000072882,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3754044,-74.42006679,COM8,3001,,NaN,ME,1969,0,3401,1,1,3283.548836,3283.548836,3505,NO,18.31,30.63,3,0.8,6106,114.645556,124.235672,134.050624,140.233566,I,Above,Hip,0,NaN,Wood,24.47269054,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3596,NJBF000072865,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3752917,-74.42108036,COM8,3001,,NaN,ME,1969,0,3401,3,1,1918.615384,1918.615384,3505,NO,39.65,53.71,3,5.84,6106,114.625299,124.218219,134.031212,140.219129,I,Above,Flat,0,NaN,Wood,46.67998525,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3597,NJBF000072962,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37602881,-74.42047392,COM8,3001,,NaN,ME,1969,0,3401,3,1,689.4061133,689.4061133,3505,NO,61.1,73.56,3,8.68,6106,114.629756,124.22169,134.035661,140.218392,I,Above,Gable,0,NaN,Wood,67.3327542,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3598,NJBF000072976,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37613854,-74.42100276,COM8,3001,,NaN,ME,1969,0,3401,3,1,5240.898393,5240.898393,3505,NO,43.92,57.35,3,2.63,6106,114.617253,124.210821,134.023719,140.208477,I,Above,Flat,0,NaN,Wood,50.6326035,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3599,NJBF000072989,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3762651,-74.42058283,COM8,3001,,NaN,ME,1969,0,3401,3,1,767.8030864,767.8030864,3505,NO,54.3,61.88,3,1.13,6106,114.624745,124.217232,134.030918,140.213362,I,Above,Gable,0,NaN,Wood,58.08974158,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3600,NJBF000073040,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37679864,-74.42007968,COM8,3001,,NaN,ME,1969,0,3401,2,1,9521.914065,9521.914065,3505,NO,33.35,43.49,3,4.8,6106,114.629349,124.220929,134.035447,140.213852,I,Above,Hip,0,NaN,Wood,38.41911855,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3601,NJBF000069110,122 N FLORIDA AVE,Atlantic City,NJ,39.35880084,-74.44392236,COM3,3001,100,NaN,ME,1969,0,3401,1,1,12740.04854,12740.04854,3507,NO,22.1,32.67,1,2.79,6106,114.329501,123.97472,133.749589,140.095071,I,Above,Flat,0,NaN,Wood,27.3821937,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3602,NJBF000066122,4427 WINCHESTER AVE,Atlantic City,NJ,39.34898502,-74.46412853,RES3A,3001,,17,NE,1920,1920,3301,2,1,1310.650833,1310.650833,3505,NO,38.84,51.48,3,1.3,6106,114.0113,123.715187,133.460058,139.921895,I,Above,Gable,0,5701,Wood,45.15897836,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3603,NJBF000067856,11 N MORRIS AVE,Atlantic City,NJ,39.35479417,-74.44817747,RES3B,3001,,45,ME,1900,1900,3301,2,3,1235.620718,1235.620718,3504,NO,28.75,39.9,-4,0,6106,114.286525,123.940397,133.708701,140.087062,I,Above,Gable,0,NaN,Wood,34.32364778,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3604,NJBF000066759,41 N DOVER AVE,Atlantic City,NJ,39.35069574,-74.45844317,RES3A,3001,,45,NE,1900,1900,3301,2,3,3046.114464,3046.114464,3505,YES,22.31,28.67,3,-0.09,6106,114.114074,123.799043,133.551912,139.986512,I,Above,Flat,0,5701,Wood,25.48929559,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3605,NJBF000066803,41 N DOVER AVE,Atlantic City,NJ,39.3508365,-74.458207,RES3A,3001,,45,NE,1900,1900,3301,2,3,1134.710656,1134.710656,3505,YES,41.46,53.58,3,7.29,6106,114.117461,123.801784,133.554992,139.988134,I,Above,Flat,0,5701,Wood,47.52188158,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3606,NJBF000065934,4212 VENTNOR AVE,Atlantic City,NJ,39.34848325,-74.4606845,RES3A,3001,,45,NE,1910,1910,3301,2,2,1429.862237,1429.862237,3505,NO,37.47,49.69,3,1.93,6106,114.093243,123.782629,133.532319,139.984607,I,Above,Hip,0,5701,Wood,43.5774056,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3607,NJBF000067977,25 N MORRIS AVE,Atlantic City,NJ,39.35521996,-74.44849448,RES3B,3001,,17,ME,1900,1900,3301,2,1,1293.436124,1293.436124,3504,NO,30.26,37.67,-4,0,6106,114.274336,123.930097,133.69787,140.075818,I,Above,Hip,0,NaN,Wood,33.96267087,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3608,NJBF000067772,9 N CHELSEA AVE,Atlantic City,NJ,39.35444682,-74.44918385,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,2989.668664,2989.668664,3504,YES,38.5,53.3,-4,0,6106,114.268942,123.92589,133.69262,140.076393,I,Above,Hip,0,NaN,Wood,45.89938887,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3609,NJBF000067117,65 N TRENTON AVE,Atlantic City,NJ,39.35216451,-74.45677651,RES3A,3001,,17,NE,1900,1900,3301,2,1,2886.617035,2886.617035,3505,NO,23.53,38.06,3,-0.69,6106,114.131936,123.81323,133.568479,139.990713,I,Above,Hip,0,5701,Wood,30.79071221,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3610,NJBF000072687,1624 MADISON AVE,Atlantic City,NJ,39.37454556,-74.4502247,RES1,3001,,16,NE,1900,1900,3102,2,1,820.3769276,820.3769276,3505,NO,43.16,53.25,3,4.31,6106,114.007576,123.693086,133.453127,139.757962,I,Above,Gable,0,5701,Wood,48.20761855,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3611,NJBF000071626,1615 N MISSISSIPPI AVE,Atlantic City,NJ,39.37110729,-74.45135727,RES1,3001,,NaN,NE,1983,1983,3101,2,1,2357.162519,2357.162519,3505,NO,32.88,39.15,3,6.75,6106,114.022133,123.708918,133.46846,139.791272,I,Above,Gable,0,5701,Wood,36.0160378,0,0,,,,1,1,,0.03,nav,1,1983,2,, 3612,NJBF000071582,1840 W RIVERSIDE DR,Atlantic City,NJ,39.37099166,-74.45493553,RES1,3001,,17,NE,2006,2006,3103,5,1,2147.757512,2147.757512,3505,NO,81.21,88.46,3,2.91,6106,113.945585,123.645147,133.398885,139.733466,I,Above,Gable,0,5701,Wood,84.83691552,0,0,,,,1,1,,0.03,nav,1,2006,5,, 3613,NJBF000071621,610 N VIRGINIA AVE,Atlantic City,NJ,39.37108593,-74.42793367,RES3C,3004,,17,ME,1900,1900,3301,2,1,1077.153068,1077.153068,3505,NO,29.26,38.52,3,-0.31,6106,114.527593,124.13641,133.937359,140.170103,I,Above,Gable,0,NaN,Wood,33.88864152,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3614,NJBF000068637,2610 ARCTIC AVE,Atlantic City,NJ,39.35728816,-74.44441428,RES3B,3001,,17,ME,1900,1900,3301,2,1,1077.513833,1077.513833,3505,NO,34.02,46.51,3,8.95,6106,114.337389,123.981922,133.756126,140.109455,I,Above,Gable,0,NaN,Wood,40.26372485,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3615,NJBF000068426,15 N TEXAS AVE,Atlantic City,NJ,39.35672008,-74.44341502,RES3B,3001,,45,ME,1900,1900,3301,3,3,1099.91372,1099.91372,3505,YES,61.59,73.43,3,7.61,6106,114.36605,124.006097,133.781989,140.133344,I,Above,Gable,0,NaN,Wood,67.51087412,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3616,NJBF000071076,1040 MONROE AVE,Atlantic City,NJ,39.36933091,-74.4419253,RES3A,3001,,17,NE,1980,1980,3301,2,1,1157.113502,1157.113502,3505,NO,24.53,33,3,-2.31,6106,114.247093,123.899335,133.67546,139.972086,I,Above,Gable,0,5701,Wood,28.76695927,0,0,,,,1,1,,0.03,nav,1,1980,2,, 3617,NJBF000072389,519 N CONNECTICUT AVE,Atlantic City,NJ,39.37348634,-74.42267922,RES1,3001,,17,NE,1925,1925,3102,1,1,1588.697944,1588.697944,3505,NO,17.08,27.82,3,2.86,6106,114.612015,124.207666,134.018033,140.219206,I,Above,Hip,0,5701,Wood,22.45437313,0,0,,,,1,1,,0.03,nav,1,1925,1,, 3618,NJBF000066557,4022 ANDOVER GDNS,Atlantic City,NJ,39.35006528,-74.45909685,RES3A,3001,,27,NE,1900,1900,3301,2,2,1377.110202,1377.110202,3505,YES,23.62,32.99,3,1.93,6106,114.107781,123.794079,133.546019,139.985711,I,Above,Hip,0,5701,Wood,28.30609539,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3619,NJBF000069203,175 S TENNESSEE AVE,Atlantic City,NJ,39.359151,-74.4258955,COM1,3001,100,NaN,ME,1969,0,3401,3,1,2666.947131,2666.947131,3507,YES,49.84,58.6,1,0.19,6106,114.713678,124.298972,134.105287,140.369148,I,Above,Flat,0,NaN,Wood,54.21983244,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3620,NJBF000066426,47 N LACLEDE PL,Atlantic City,NJ,39.349718,-74.461109,RES3A,3001,,45,NE,1925,1925,3301,2,2,2297.265171,2297.265171,3505,YES,39.74,47.84,3,0.91,6106,114.068147,123.761592,133.510663,139.958999,I,Above,Flat,0,5701,Wood,43.78652151,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3621,NJBF000068918,2905 SUNSET AVE,Atlantic City,NJ,39.35800811,-74.44966629,RES3A,3001,,17,NE,1925,1925,3301,2,1,1752.29665,1752.29665,3507,NO,37.18,44.75,1,-0.4,6106,114.214436,123.879044,133.64468,140.015987,I,Above,Gable,0,5701,Wood,40.96112604,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3622,NJBF000071877,500 N DELAWARE AVE,Atlantic City,NJ,39.37188298,-74.42525468,RES1,3001,,17,NE,2000,2000,3102,1,1,1231.886744,1231.886744,3505,NO,15.13,27.57,3,4.33,6106,114.575608,124.17715,133.982972,140.201129,I,Above,Gable,0,5701,Wood,21.35067725,0,0,,,,1,1,,0.03,nav,1,2000,1,, 3623,NJBF000066066,35 S ANNAPOLIS AVE,Atlantic City,NJ,39.34883088,-74.45837567,RES3A,3001,562,NaN,NE,1969,0,3301,2,1,6098.514216,6098.514216,3504,NO,31.68,42.87,-4,0,6106,114.139298,123.820423,133.573415,140.015773,I,Above,Gable,0,5701,Wood,37.2725695,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3624,NJBF000068254,2905 ARCTIC AVE RR,Atlantic City,NJ,39.35615146,-74.44867268,RES3A,3001,,15,NE,1900,1900,3301,1,1,1378.015955,1378.015955,3505,NO,18.14,28.3,3,1.29,6106,114.258905,123.91689,133.684307,140.059259,I,Above,Flat,0,5701,Wood,23.21879068,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3625,NJBF000066533,4028 ANDOVER GDNS,Atlantic City,NJ,39.34999743,-74.45924068,RES3A,3001,,27,NE,1900,1900,3301,2,2,1234.418033,1234.418033,3505,YES,35.18,47.58,3,5.83,6106,114.105495,123.79222,133.543954,139.98446,I,Above,Flat,0,5701,Wood,41.37800774,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3626,NJBF000072593,1907 N ARKANSAS AVE,Atlantic City,NJ,39.37421369,-74.45418135,RES1,3001,,17,NE,1900,1900,3101,1,1,1141.909547,1141.909547,3505,NO,23.41,29.29,3,5.81,6106,113.925397,123.624683,133.378283,139.696821,I,Above,Gable,0,5701,Wood,26.34956071,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3627,NJBF000073770,6 HORIZON LANE,Atlantic City,NJ,39.38305639,-74.41007466,RES1,3001,,37,NE,2000,2000,3103,3,1,3507.396158,3507.396158,3505,YES,51.1,62.95,3,4.7,6106,114.770412,124.340702,134.173468,140.285656,I,Above,Gable,0,5701,Wood,57.024624,0,0,,,,1,1,,0.03,nav,1,2000,3,, 3628,NJBF000073284,5205 SEA SPRAY RD,Atlantic City,NJ,39.37957028,-74.40642645,RES1,3001,,16,NE,1975,1975,3103,1,1,2451.704591,2451.704591,3505,NO,12.64,20.98,3,-0.29,6106,114.886397,124.444065,134.28563,140.390653,I,Above,Gable,0,5701,Wood,16.81200719,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 3629,NJBF000073640,,Atlantic City,NJ,39.382167,-74.4054515,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1257.436064,1257.436064,3505,NO,28.15,39.2,3,5.41,6106,114.877554,124.435415,134.278234,140.370757,I,Above,Gable,0,5701,Wood,33.67949467,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3630,NJBF000073400,7 SEA SPRAY COURT,Atlantic City,NJ,39.380423,-74.40505071,RES1,3001,,17,NE,1975,1975,3102,2,1,2177.476757,2177.476757,3507,YES,22.11,29.83,1,0.31,6106,114.905613,124.46073,134.304948,140.400633,I,Above,Gable,0,5701,Wood,25.96764328,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3631,NJBF000073609,5104 ONTARIO DRIVE,Atlantic City,NJ,39.38199199,-74.40577898,RES3A,3001,,43,NE,1989,1989,3301,2,2,2024.059133,2024.059133,3505,NO,34.57,49.43,3,6.92,6106,114.872636,124.43114,134.273321,140.367973,I,Above,Gable,0,5701,Wood,42.00163789,0,0,,,,1,1,,0.03,nav,1,1989,2,, 3632,NJBF000073567,6 SEASIDE RD,Atlantic City,NJ,39.3816505,-74.403454,RES1,3001,,43,NE,1975,1975,3102,2,2,1281.118458,1281.118458,3507,NO,36.46,50.16,1,0.18,6106,114.925252,124.477703,134.324944,140.409081,I,Above,Gable,0,5701,Wood,43.3104131,0,0,,,,1,1,,0.03,nav,1,1975,2,, 3633,NJBF000073409,5105 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.38049271,-74.40389278,RES1,3001,,16,NE,1975,1975,3102,1,1,1998.20916,1998.20916,3507,NO,11.54,20.4,1,-0.99,6106,114.929117,124.481443,134.3281,140.417803,I,Above,Gable,0,5701,Wood,15.96978866,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 3634,NJBF000073607,5217 HARBOR BEACH BLVD,Atlantic City,NJ,39.38197254,-74.40802729,RES1,3001,,17,NE,1987,1987,3103,2,1,1516.8039,1516.8039,3505,NO,40.97,48.32,3,3.27,6110,114.825621,124.389736,134.227176,140.33284,I,Above,Flat,0,5701,Wood,44.64764135,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 3635,NJBF000073281,5215 SEA SPRAY RD,Atlantic City,NJ,39.37954421,-74.40749733,RES1,3001,,17,NE,1975,1975,3103,2,1,1973.222199,1973.222199,3505,NO,43.06,48.46,3,4.08,6106,114.864173,124.424534,134.263857,140.374233,I,Above,Gable,0,5701,Wood,45.75604889,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3636,NJBF000073824,,Atlantic City,NJ,39.38339134,-74.40611352,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1315.110353,1315.110353,3505,NO,28.6,36.17,3,-0.6,6106,114.849924,124.410566,134.251555,140.343706,I,Above,Gable,0,5701,Wood,32.38496276,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3637,NJBF000073692,3 BRIGHTON DRIVE,Atlantic City,NJ,39.38250971,-74.41084753,RES1,3001,,17,NE,1991,1991,3103,3,1,2036.801798,2036.801798,3505,NO,46.52,56.25,3,6.81,6106,114.760234,124.332036,134.163389,140.280906,I,Above,Hip,0,5701,Wood,51.38471467,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 3638,NJBF000073140,5208 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37819309,-74.40551556,RES1,3001,,16,NE,1975,1975,3102,2,1,1459.685544,1459.685544,3507,NO,34.86,41.24,1,-0.52,6106,114.921188,124.475046,134.318907,140.423486,I,Above,Gable,0,5701,Wood,38.05312134,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3639,NJBF000073681,4 ONTARIO DRIVE,Atlantic City,NJ,39.3824725,-74.407887,RES1,3001,,43,NE,1987,1987,3103,2,2,1162.10334,1162.10334,3505,NO,30.36,41.72,3,7.53,6106,114.822968,124.387192,134.224755,140.328243,I,Above,Gable,0,5701,Wood,36.0402582,0,0,,,,1,1,,0.03,nav,1,1987,2,, 3640,NJBF000073166,1 HARBOUR COURT,Atlantic City,NJ,39.37843443,-74.40643475,RES1,3001,,16,NE,1975,1975,3103,2,1,990.3005775,990.3005775,3505,NO,19.1,32.74,3,-2.62,6106,114.899124,124.455583,134.297448,140.405893,I,Above,Gable,0,5701,Wood,25.91849011,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 3641,NJBF000073892,,Atlantic City,NJ,39.38380442,-74.39862693,RES3C,3001,,NaN,ME,1969,0,3301,2,1,13044.40748,13044.40748,3507,NO,34.2,41.24,1,-0.96,6106,115.001987,124.545174,134.402154,140.455756,I,Above,Gable,0,NaN,Wood,37.71750224,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3642,NJBF000066230,3 S ANNAPOLIS AVE,Atlantic City,NJ,39.3492497,-74.45861422,RES3A,3001,,45,NE,1900,1900,3301,3,3,542.7030337,542.7030337,3504,YES,51.26,65.79,-4,0,6106,114.128736,123.8116,133.564248,140.005698,I,Above,Hip,0,5701,Wood,58.52693053,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3643,NJBF000067843,346 N TRENTON AVE,Atlantic City,NJ,39.35473445,-74.45910384,RES1,3001,,17,NE,1900,1900,3102,2,1,929.9759918,929.9759918,3505,YES,39.71,49.52,3,4.12,6106,114.04887,123.74355,133.495145,139.914333,I,Above,Hip,0,5701,Wood,44.61915844,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3644,NJBF000070396,717 N MICHIGAN AVE,Atlantic City,NJ,39.36694029,-74.44067576,RES3B,3001,,45,ME,1900,1925,3301,2,2,2372.289955,2372.289955,3505,YES,30.7,43.34,3,8.89,6106,114.302086,123.947361,133.726292,140.027336,I,Above,Flat,0,5701,Wood,37.01861551,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3645,NJBF000068147,21 S FLORIDA AVE,Atlantic City,NJ,39.35580049,-74.44120076,COM1,3003,,33,ME,1900,1900,3401,3,1,1455.725654,1455.725654,3507,YES,43.88,55.45,1,0.09,6106,114.425387,124.056066,133.835677,140.181058,I,Above,Hip,0,NaN,Wood,49.66888088,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3646,NJBF000068495,,Atlantic City,NJ,39.3569346,-74.43267277,COM8,3003,,NaN,,1969,0,3408,11,1,473922.9208,473922.9208,3507,NO,140.2,150.56,1,-0.08,6106,114.595416,124.198924,133.993105,140.296293,I,Above,Flat,0,NaN,Wood,145.3797333,0,0,,,,2,2,,0.03,nav,1,1969,11,, 3647,NJBF000068969,207 N IOWA AVE,Atlantic City,NJ,39.35820115,-74.44757804,RES3A,3001,,45,NE,1920,1920,3301,2,3,1494.142042,1494.142042,3505,NO,42.31,55.45,3,8.49,6106,114.25748,123.914814,133.683774,140.046232,I,Above,Hip,0,5701,Wood,48.87781563,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3648,NJBF000066832,124 N WINDSOR AVE,Atlantic City,NJ,39.35094579,-74.46119549,RES3A,3001,,17,NE,1922,1922,3301,2,1,999.8548869,999.8548869,3505,NO,26.16,38.92,3,-1.31,6106,114.050653,123.746748,133.495647,139.938798,I,Above,Hip,0,5701,Wood,32.53701513,0,0,,,,1,1,,0.03,nav,1,1922,2,, 3649,NJBF000070806,1918 MCKINLEY AVE,Atlantic City,NJ,39.36850534,-74.44101301,RES3B,3001,,17,ME,1920,1920,3301,2,1,919.2492122,919.2492122,3505,NO,35.06,48.72,3,4.3,6106,114.276437,123.924679,133.702622,139.998949,I,Above,Flat,0,5701,Wood,41.88918806,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3650,NJBF000068759,107 N CALIFORNIA RR,Atlantic City,NJ,39.35757038,-74.44528742,RES3A,3001,,33,NE,1900,1900,3301,2,1,629.8650213,629.8650213,3505,YES,32.72,44.8,3,-2.46,6106,114.314979,123.963082,133.735832,140.091637,I,Above,Gable,0,5701,Wood,38.7577552,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3651,NJBF000069788,207 S METROPOLITAN AVE,Atlantic City,NJ,39.36399028,-74.4139679,RES3A,3001,,NaN,NE,1969,0,3301,2,1,995.597669,995.597669,3505,YES,33.42,41.06,3,-2.26,6106,114.909146,124.466369,134.295192,140.485037,I,Above,Flat,0,5701,Wood,37.24128624,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3652,NJBF000071534,507 MELROSE AVE,Atlantic City,NJ,39.37085381,-74.41994796,RES1,3001,,17,NE,1900,1900,3102,2,1,900.6325744,900.6325744,3505,NO,36.2,49.85,3,4.69,6106,114.700713,124.28522,134.101499,140.298822,I,Above,Gable,0,5701,Wood,43.02521852,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3653,NJBF000068005,,Atlantic City,NJ,39.3553145,-74.4602845,RES1,3001,,NaN,NE,1969,0,3102,2,1,755.367904,755.367904,3505,NO,37.22,51.11,3,6.32,6106,114.015803,123.715992,133.465783,139.886283,I,Above,Flat,0,5701,Wood,44.1664111,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3654,NJBF000065757,109 S DOVER AVE,Atlantic City,NJ,39.34801585,-74.45629991,RES3A,3001,,18,NE,1920,1920,3301,3,13,3090.415656,3090.415656,3504,YES,51.95,60.99,-4,0,6106,114.195119,123.86665,133.622643,140.06049,I,Above,Hip,0,5701,Wood,56.46921784,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3655,NJBF000071575,355 N NEW JERSEY AVE,Atlantic City,NJ,39.37097045,-74.42264753,RES1,3001,,33,NE,1900,1900,3102,2,1,2383.272608,2383.272608,3505,YES,38.67,51.89,3,2.38,6106,114.641852,124.234481,134.045507,140.25496,I,Above,Flat,0,5701,Wood,45.28016229,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3656,NJBF000070922,1614 MAGELLAN AVE,Atlantic City,NJ,39.36885535,-74.43631435,RES1,3001,,17,NE,1900,1900,3101,1,1,1522.580669,1522.580669,3505,NO,23.75,31.17,3,4.82,6106,114.373705,124.006669,133.79281,140.069079,I,Above,Gable,0,5701,Wood,27.45647619,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3657,NJBF000072686,1946 MURRAY AVE,Atlantic City,NJ,39.37453954,-74.45178835,RES1,3001,,16,NE,1955,1955,3101,1,1,1383.179741,1383.179741,3505,NO,19.24,27.06,3,1.98,6106,113.973723,123.664722,133.422142,139.731966,I,Above,Hip,0,5701,Wood,23.15069544,0,0,,,,1,1,,0.03,nav,1,1955,1,, 3658,NJBF000070286,419 N DR MARTIN LUTHER K,Atlantic City,NJ,39.3665706,-74.43562992,RES1,3001,,27,NE,1900,1900,3101,2,2,1556.861788,1556.861788,3505,YES,29.71,37.17,3,4.7,6106,114.415297,124.043226,133.831111,140.113004,I,Above,Flat,0,5701,Wood,33.4379998,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3659,NJBF000071599,2116 E RIVERSIDE DR,Atlantic City,NJ,39.3710407,-74.44595393,RES1,3001,,16,NE,1900,1900,3102,1,1,1132.896176,1132.896176,3505,NO,22.94,28.71,3,6.16,6106,114.140116,123.807882,133.576527,139.881212,I,Above,Gable,0,5701,Wood,25.82552867,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3660,NJBF000071553,1500 W RIVERSIDE DR,Atlantic City,NJ,39.3709145,-74.448375,RES1,3001,733,NaN,NE,1969,0,3101,2,1,5829.497302,5829.497302,3505,YES,33.74,42.49,3,-0.68,6106,114.0891,123.765174,133.52976,139.84341,I,Above,Flat,0,5701,Wood,38.11447539,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3661,NJBF000068695,2617 ARCTIC AVE,Atlantic City,NJ,39.357431,-74.4448825,RES3A,3001,,27,NE,1900,1900,3301,2,2,887.0549634,887.0549634,3505,YES,43.72,57.76,3,8.57,6106,114.325455,123.971891,133.745314,140.100014,I,Above,Flat,0,5701,Wood,50.74024177,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3662,NJBF000070993,638 N NEW YORK AVE,Atlantic City,NJ,39.36907368,-74.43455803,RES1,3001,,17,NE,1900,1900,3101,2,1,1139.778765,1139.778765,3505,NO,27.43,32.47,3,4.07,6106,114.408936,124.036417,133.825659,140.093877,I,Above,Hip,0,5701,Wood,29.94694815,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3663,NJBF000070584,,Atlantic City,NJ,39.36768881,-74.42777254,RES1,3001,,NaN,NE,1969,0,3103,4,1,3463.007149,3463.007149,3505,NO,68.76,76.29,3,-1.34,6106,114.570827,124.17496,133.976939,140.220762,I,Above,Flat,0,5701,Wood,72.52657214,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3664,NJBF000071186,907 N INDIANA AVE,Atlantic City,NJ,39.36969365,-74.43934117,RES3A,3001,,35,NE,1900,1900,3301,2,1,3785.92386,3785.92386,3505,YES,31.16,40.45,3,6.26,6106,114.298668,123.942603,133.723145,140.008378,I,Above,Flat,0,5701,Wood,35.80369309,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3665,NJBF000071308,705 N NEW YORK AVE,Atlantic City,NJ,39.37014985,-74.43484148,REL1,3001,,NaN,ME,1969,0,3401,3,1,4102.872614,4102.872614,3507,NO,39.03,50.94,1,0.93,6106,114.390298,124.019926,133.808381,140.073815,I,Above,Flat,0,NaN,Wood,44.98352111,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3666,NJBF000068814,2307 ATLANTIC AVE,Atlantic City,NJ,39.35768594,-74.43981752,COM1,3003,738,NaN,ME,1969,0,3401,2,1,10083.68742,10083.68742,3507,YES,35.17,49.03,1,1.08,6106,114.432032,124.061091,133.842925,140.175392,I,Above,Flat,0,NaN,Wood,42.10062964,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3667,NJBF000071411,1628 W RIVERSIDE DR,Atlantic City,NJ,39.37051928,-74.45142738,RES1,3001,,17,NE,1900,1900,3101,2,1,2069.844726,2069.844726,3505,YES,24.96,32.85,3,-0.61,6106,114.027372,123.713881,133.473528,139.799033,I,Above,Gable,0,5701,Wood,28.90492283,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3668,NJBF000068098,23 N STENTON PL #B,Atlantic City,NJ,39.35563617,-74.44664235,RES3B,3001,,27,ME,1910,1910,3301,3,2,2099.101367,2099.101367,3504,NO,52.03,64.73,-4,0,6106,114.30943,123.959182,133.729889,140.098733,I,Above,Hip,0,NaN,Wood,58.37970682,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3669,NJBF000070209,1108 CITY AVE,Atlantic City,NJ,39.36622962,-74.42717364,RES3D,3004,29,NaN,E,1969,0,3303,2,1,5210.755286,5210.755286,3505,YES,41.48,46.81,3,5.62,6106,114.600926,124.20122,134.00456,140.250696,I,Above,Flat,0,NaN,Wood,44.14429231,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3670,NJBF000072214,30 SCHOONER CT,Atlantic City,NJ,39.37293563,-74.41719116,RES3C,3001,,35,ME,1990,1990,3301,2,1,5529.066146,5529.066146,3505,NO,41.68,48.15,3,6.23,6106,114.735082,124.314193,134.13545,140.313052,I,Above,Hip,0,NaN,Wood,44.91484315,0,0,,,,1,1,,0.03,nav,1,1990,2,, 3671,NJBF000069056,673 N DOVER AVE,Atlantic City,NJ,39.35857867,-74.46529251,RES1,3001,,17,NE,1900,1900,3101,1,1,1527.079814,1527.079814,3505,NO,22.57,35.72,3,3.96,6106,113.865774,123.590496,133.332465,139.752869,I,Above,Flat,0,5701,Wood,29.14418783,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3672,NJBF000067359,15 N HARTFORD AVE,Atlantic City,NJ,39.35321115,-74.45430033,RES3B,3001,29,NaN,E,1969,0,3303,3,1,2954.408897,2954.408897,3507,YES,48.76,61.28,1,0.08,6106,114.172896,123.846678,133.605575,140.014215,I,Above,Flat,0,NaN,Wood,55.02359245,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3673,NJBF000070905,638 HOWARD ST,Atlantic City,NJ,39.36881124,-74.43516885,RES1,3001,,17,NE,1900,1900,3101,1,1,1109.868238,1109.868238,3505,NO,25.21,37.92,3,6.55,6106,114.398868,124.028031,133.816236,140.087957,I,Above,Hip,0,5701,Wood,31.56793525,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3674,NJBF000068492,548 N ELBERON AVE,Atlantic City,NJ,39.35693201,-74.46333612,RES1,3001,,17,NE,1900,1900,3101,2,1,1509.456462,1509.456462,3505,NO,31.2,45.85,3,6.77,6106,113.92892,123.643525,133.388637,139.811193,I,Above,Gable,0,5701,Wood,38.52526888,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3675,NJBF000070635,1906 GRANT AVE,Atlantic City,NJ,39.36787214,-74.4404794,RES3B,3001,,17,ME,1900,1900,3301,2,1,1157.459746,1157.459746,3505,NO,33.17,42.19,3,4.88,6106,114.295387,123.941097,133.720138,140.016821,I,Above,Hip,0,5701,Wood,37.67671445,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3676,NJBF000066774,115 N LACLEDE PL,Atlantic City,NJ,39.35073739,-74.4619564,RES3A,3001,,17,NE,1910,1910,3301,1,1,1058.971157,1058.971157,3505,NO,13.92,27.64,3,-2.18,6106,114.036627,123.735303,133.483134,139.929793,I,Above,Hip,0,5701,Wood,20.77884759,0,0,,,,1,1,,0.03,nav,1,1910,1,, 3677,NJBF000071255,820 GREEN ST,Atlantic City,NJ,39.36994594,-74.43757759,RES1,3001,,NaN,NE,1900,0,3101,1,1,1853.323743,1853.323743,3505,NO,24.76,39.32,3,6.31,6106,114.33375,123.972106,133.755703,140.032999,I,Above,Hip,0,5701,Wood,32.0436481,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3678,NJBF000065884,55 N ABERDEEN PL,Atlantic City,NJ,39.3483496,-74.46446547,RES3A,3001,,18,NE,1920,1920,3301,2,1,1558.767999,1558.767999,3505,YES,26.24,34.29,3,-1.39,6106,114.012067,123.716041,133.460464,139.926325,I,Above,Hip,0,5701,Wood,30.26735631,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3679,NJBF000067297,347 N RICHMOND AVE,Atlantic City,NJ,39.3529455,-74.4631205,RES1,3001,,17,NE,1981,1981,3102,2,1,1175.349946,1175.349946,3505,NO,34.15,45.2,3,3.2,6106,113.98321,123.69043,133.436438,139.876794,I,Above,Hip,0,5701,Wood,39.67482691,0,0,,,,1,1,,0.03,nav,1,1981,2,, 3680,NJBF000068731,215 N MORRIS AVE,Atlantic City,NJ,39.35749942,-74.45002302,RES3A,3001,,45,NE,1900,1900,3301,2,2,633.9260697,633.9260697,3507,YES,36.83,51.65,1,1.05,6106,114.212913,123.878022,133.643155,140.017899,I,Above,Flat,0,5701,Wood,44.24080848,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3681,NJBF000072232,442 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37297853,-74.42171664,RES1,3001,,NaN,NE,1969,0,3102,1,1,1315.916995,1315.916995,3505,NO,24.74,36.29,3,6.83,6106,114.638362,124.230609,134.042971,140.24147,I,Above,Gable,0,5701,Wood,30.51490262,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3682,NJBF000069392,1722 ATLANTIC AVE,Atlantic City,NJ,39.36005918,-74.43239457,COM1,3003,100,NaN,ME,1969,0,3401,3,1,35225.803,35225.803,3507,YES,56.1,69.82,1,2.03,6106,114.563096,124.170935,133.965478,140.256618,I,Above,Flat,0,NaN,Wood,62.95893518,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3683,NJBF000067386,14 N BOSTON AVE,Atlantic City,NJ,39.35331073,-74.45246254,RES3B,3001,,45,E,1900,1900,3303,3,2,1696.453662,1696.453662,3507,YES,45.5,52.22,1,0.71,6106,114.211716,123.87879,133.640482,140.041712,I,Above,Flat,0,NaN,Wood,48.86242321,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3684,NJBF000070589,1314 ADRIATIC AVE,Atlantic City,NJ,39.36770323,-74.43094821,RES3C,3003,,NaN,E,1969,0,3305,7,1,806.8651886,806.8651886,3507,NO,120.15,131.56,1,-0.89,6106,114.502596,124.116776,133.91289,140.170687,I,Above,Flat,0,NaN,Wood,125.8533233,0,0,,,,2,2,,0.03,nav,1,1969,7,, 3685,NJBF000064874,49 S PLAZA PL,Atlantic City,NJ,39.34555232,-74.46402201,RES1,3001,,18,NE,1900,1900,3102,2,1,2674.535328,2674.535328,3504,YES,32.04,43.48,-4,0,6106,114.057936,123.754445,133.499434,139.976521,I,Above,Hip,0,5701,Wood,37.75900234,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3686,NJBF000069360,1537 PACIFIC AVE,Atlantic City,NJ,39.3598604,-74.42947047,COM1,3003,100,NaN,ME,1969,0,3401,1,1,8463.365043,8463.365043,3507,NO,16.84,24.47,1,0.41,6106,114.628373,124.226326,134.026117,140.304509,I,Above,Flat,0,NaN,Wood,20.65702857,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3687,NJBF000067078,3426 ATLANTIC AVE,Atlantic City,NJ,39.35199736,-74.45177145,COM1,3003,639,NaN,ME,1969,0,3401,1,1,2384.834183,2384.834183,3507,NO,13.02,22.1,1,1.1,6106,114.24331,123.905422,133.668225,140.072082,I,Above,Flat,0,NaN,Wood,17.55948714,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3688,NJBF000067345,5 S CHELSEA AVE,Atlantic City,NJ,39.3531732,-74.44834986,COM1,3003,999,NaN,ME,1969,0,3401,3,1,2672.941976,2672.941976,3507,NO,54.02,61.32,1,0.65,6106,114.303007,123.954639,133.722737,140.108158,I,Above,Flat,0,NaN,Wood,57.66819332,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3689,NJBF000066274,27 N LACLEDE PL,Atlantic City,NJ,39.34934912,-74.46082562,RES3A,3001,,45,NE,1900,1900,3301,2,2,1543.038068,1543.038068,3505,NO,36.34,41.82,3,1.94,6106,114.079054,123.770686,133.520167,139.969149,I,Above,Hip,0,5701,Wood,39.07840858,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3690,NJBF000066038,9 S RICHMOND AVE,Atlantic City,NJ,39.3487447,-74.45984356,RES3A,3001,,45,NE,1930,1930,3301,2,3,1439.550738,1439.550738,3505,YES,35.11,40.12,3,2.2,6106,114.108278,123.794913,133.545797,139.993918,I,Above,Hip,0,5701,Wood,37.61450611,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3691,NJBF000065561,11 N PLAZA PL,Atlantic City,NJ,39.34746628,-74.46555685,RES3A,3001,,17,NE,1900,1900,3301,2,1,1214.63269,1214.63269,3505,YES,30.69,44.26,3,0.99,6106,113.999475,123.706021,133.448966,139.922474,I,Above,Hip,0,5701,Wood,37.47847547,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3692,NJBF000066260,4018 VENTNOR AVE,Atlantic City,NJ,39.34932045,-74.45852367,RES3A,3001,738,NaN,NE,1969,0,3301,2,1,758.5734524,758.5734524,3504,YES,37.14,48.82,-4,0,6106,114.129812,123.812464,133.565242,140.00606,I,Above,Flat,0,5701,Wood,42.97751037,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3693,NJBF000064915,4701 THERESA PL,Atlantic City,NJ,39.34565897,-74.46538936,RES3B,3001,,45,ME,1930,1930,3301,2,2,1975.023637,1975.023637,3504,NO,25.01,37.87,-4,0,6106,114.02656,123.728719,133.471862,139.953162,I,Above,Hip,0,NaN,Wood,31.44351541,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3694,NJBF000065465,37 N NEWTON AVE,Atlantic City,NJ,39.34715959,-74.46662123,RES3A,3001,,27,NE,1920,1920,3301,2,2,1241.371288,1241.371288,3505,YES,32.12,46.97,3,-2.37,6106,113.980062,123.690233,133.431747,139.910085,I,Above,Hip,0,5701,Wood,39.54894753,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3695,NJBF000071333,109 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37025666,-74.41394949,RES3D,3004,,27,E,2000,2000,3303,2,2,1707.322679,1707.322679,3505,NO,37.12,42.3,3,3.75,6106,114.835079,124.401595,134.229815,140.400262,I,Above,Hip,0,NaN,Wood,39.71091233,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 3696,NJBF000067827,3906 PORTER AVE,Atlantic City,NJ,39.35465211,-74.46038792,RES1,3001,,17,NE,1920,1920,3102,2,1,694.7221631,694.7221631,3505,NO,40.52,54.29,3,4.37,6106,114.021776,123.721268,133.470996,139.894811,I,Above,Flat,0,5701,Wood,47.40539585,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3697,NJBF000069238,10 LIBERTY TERR,Atlantic City,NJ,39.35930112,-74.44284671,RES3B,3001,,33,ME,1900,1906,3301,2,1,4239.083451,4239.083451,3505,YES,42.06,53.99,3,7.89,6106,114.346694,123.98891,133.76551,140.104667,I,Above,Flat,0,NaN,Wood,48.02568184,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3698,NJBF000072574,103 ADRIATIC AVE,Atlantic City,NJ,39.37414108,-74.41593417,RES3C,3001,,17,ME,2003,2003,3301,3,1,1395.288771,1395.288771,3505,NO,44.42,59.07,3,-0.06,6106,114.747809,124.324796,134.148278,140.316072,I,Above,Hip,0,NaN,Wood,51.74252684,0,0,,,,1,1,,0.03,nav,1,2003,3,, 3699,NJBF000066938,3906 WINCHESTER AVE,Atlantic City,NJ,39.35136283,-74.45841411,RES3A,3001,,17,NE,1920,1920,3301,3,1,2024.245161,2024.245161,3505,YES,56.78,65.23,3,5.51,6106,114.106261,123.792359,133.545244,139.97685,I,Above,Hip,0,5701,Wood,61.00567393,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3700,NJBF000066967,60 N HARRISBURG AVE,Atlantic City,NJ,39.35148171,-74.4582069,RES3A,3001,,17,NE,1940,1940,3301,1,1,1948.911669,1948.911669,3505,NO,13.6,23.97,3,-1.63,6106,114.109285,123.794806,133.547988,139.978336,I,Above,Gable,0,5701,Wood,18.78312141,0,0,,,,1,1,,0.03,nav,1,1940,1,, 3701,NJBF000070092,121 S NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36578507,-74.41121312,RES3A,3001,,33,NE,1930,1900,3301,2,1,2876.758641,2876.758641,3505,YES,34.02,40.73,3,1.91,6106,114.945981,124.498246,134.332432,140.502863,I,Above,Flat,0,5701,Wood,37.37733736,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3702,NJBF000070339,323 N NEW YORK AVE,Atlantic City,NJ,39.36675315,-74.43247469,RES3C,3003,,NaN,E,1969,0,3305,5,1,3621.514774,3621.514774,3507,NO,83.67,93.2,1,-0.12,6106,114.481018,124.098879,133.892398,140.160204,I,Above,Flat,0,NaN,Wood,88.43467346,0,0,,,,2,2,,0.03,nav,1,1969,5,, 3703,NJBF000067186,108 N TRENTON AVE,Atlantic City,NJ,39.35248049,-74.45747188,RES3A,3001,,17,NE,1900,1900,3301,2,1,1703.472354,1703.472354,3505,NO,35.12,41.6,3,0.74,6106,114.112776,123.797293,133.551497,139.974891,I,Above,Flat,0,5701,Wood,38.35953433,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3704,NJBF000066883,,Atlantic City,NJ,39.35115456,-74.46038212,RES3C,3001,,NaN,E,1969,0,3303,3,1,3149.027597,3149.027597,3505,NO,62.28,73.64,3,5.26,6106,114.065815,123.759134,133.509184,139.94862,I,Above,Flat,0,NaN,Wood,67.9602684,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3705,NJBF000065826,45 N ABERDEEN PL,Atlantic City,NJ,39.34819128,-74.46428312,RES3A,3001,,17,NE,1900,1900,3301,2,1,1448.516896,1448.516896,3505,NO,37.91,45.9,3,-0.11,6106,114.018103,123.721042,133.465717,139.93171,I,Above,Hip,0,5701,Wood,41.9051974,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3706,NJBF000070445,,Atlantic City,NJ,39.36715327,-74.4214969,RES1,3001,,NaN,NE,1969,0,3102,2,1,1487.980145,1487.980145,3505,NO,30.54,44.14,3,-2.22,6106,114.711265,124.295436,134.109354,140.326075,I,Above,Hip,0,5701,Wood,37.34128995,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3707,NJBF000068690,221 N CHELSEA AVE,Atlantic City,NJ,39.35742109,-74.45118256,RES3A,3001,,45,NE,1905,1905,3301,2,2,1968.837767,1968.837767,3507,YES,25.29,32.82,1,0,6106,114.188611,123.857855,133.621167,140.000618,I,Above,Flat,0,5701,Wood,29.05643755,0,0,,,,1,1,,0.03,nav,1,1905,2,, 3708,NJBF000068740,225 N CHELSEA AVE,Atlantic City,NJ,39.35751924,-74.45124969,RES3A,3001,,45,NE,1905,1905,3301,2,2,1996.227784,1996.227784,3507,YES,31.49,40.47,1,0.27,6106,114.185948,123.855593,133.618787,139.998084,I,Above,Flat,0,5701,Wood,35.98270025,0,0,,,,1,1,,0.03,nav,1,1905,2,, 3709,NJBF000065817,28 N BARTRAM AVE,Atlantic City,NJ,39.3481792,-74.46335613,RES3A,3001,,45,NE,1915,1915,3301,2,2,1444.246349,1444.246349,3505,NO,24.98,34.77,3,-2.39,6106,114.03859,123.737845,133.483797,139.946745,I,Above,Hip,0,5701,Wood,29.87547814,0,0,,,,1,1,,0.03,nav,1,1915,2,, 3710,NJBF000066907,30 N HARRISBURG AVE,Atlantic City,NJ,39.35123575,-74.45800557,RES3A,3001,,17,NE,1900,1900,3301,2,1,1322.859881,1322.859881,3505,YES,33.56,39.41,3,-0.15,6106,114.116792,123.801088,133.554573,139.985261,I,Above,Hip,0,5701,Wood,36.48510154,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3711,NJBF000066887,28 N HARRISBURG AVE,Atlantic City,NJ,39.35116754,-74.45795925,RES3A,3001,,17,NE,1900,1900,3301,2,1,1394.89879,1394.89879,3505,YES,42.95,56.3,3,8.41,6106,114.11868,123.802669,133.556227,139.987038,I,Above,Hip,0,5701,Wood,49.62303527,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3712,NJBF000064706,4701 ATLANTIC AVE,Atlantic City,NJ,39.34512143,-74.46463744,RES3B,3001,,45,ME,1893,1893,3301,2,4,1689.594134,1689.594134,3504,YES,37.51,50.3,-4,0,6106,114.050059,123.748092,133.492226,139.973395,I,Above,Hip,0,NaN,Wood,43.90433847,0,0,,,,1,1,,0.03,nav,1,1893,2,, 3713,NJBF000064687,4703 ATLANTIC AVE,Atlantic City,NJ,39.34508276,-74.46476358,RES3B,3001,,45,ME,1930,1930,3301,2,2,1129.398867,1129.398867,3504,NO,27.11,38.42,-4,0,6106,114.047769,123.746225,133.490185,139.971967,I,Above,Hip,0,NaN,Wood,32.76312158,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3714,NJBF000070212,301 PACIFIC AVE,Atlantic City,NJ,39.36623993,-74.4143653,RES3D,3004,,NaN,E,1969,0,3303,16,1,3161.748762,3161.748762,3505,NO,224.34,238.67,3,5.41,6106,114.873778,124.435683,134.263575,140.448525,I,Above,Hip,0,NaN,Wood,231.5072802,0,0,,,,1,1,,0.03,nav,1,1969,16,, 3715,NJBF000066212,57 N DELANCY PL,Atlantic City,NJ,39.34920484,-74.46256337,RES3A,3001,,45,NE,1900,1900,3301,2,2,1357.045141,1357.045141,3505,YES,41.33,46.45,3,5.77,6106,114.042831,123.740977,133.488015,139.943637,I,Above,Flat,0,5701,Wood,43.888602,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3716,NJBF000069454,108 S SOUTH CAROLINA AVE,Atlantic City,NJ,39.36052676,-74.425652,COM1,3001,29,NaN,ME,1969,0,3401,3,1,2270.918137,2270.918137,3507,YES,37.7,51.22,1,1.32,6106,114.702087,124.288927,134.095647,140.353842,I,Above,Flat,0,NaN,Wood,44.45668565,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3717,NJBF000065754,37 N ABERDEEN PL,Atlantic City,NJ,39.34800278,-74.46414668,RES3A,3001,,18,NE,1900,1900,3301,2,1,1868.730155,1868.730155,3505,NO,31.68,44.37,3,-0.46,6106,114.023502,123.72553,133.470394,139.936798,I,Above,Hip,0,5701,Wood,38.02536891,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3718,NJBF000072770,801 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3748635,-74.42231389,RES1,3001,,17,NE,1997,1997,3102,2,1,3074.547042,3074.547042,3505,NO,27.42,34.61,3,3.52,6106,114.603954,124.200016,134.01072,140.205632,I,Above,Flat,0,5701,Wood,31.01651176,0,0,,,,1,1,,0.03,nav,1,1997,2,, 3719,NJBF000066692,119 N RALEIGH AVE,Atlantic City,NJ,39.35048375,-74.46268689,RES3A,3001,,27,NE,1900,1900,3301,2,2,1875.453556,1875.453556,3505,YES,41.4,55.02,3,4.66,6106,114.023813,123.72488,133.471695,139.921933,I,Above,Flat,0,5701,Wood,48.21079808,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3720,NJBF000067962,30 S BELLEVUE AVE,Atlantic City,NJ,39.35517957,-74.44196769,RES3A,3004,,17,NE,1930,1930,3301,2,1,1044.693373,1044.693373,3505,NO,38.07,48.05,3,4.48,6106,114.416472,124.048764,133.827123,140.178102,I,Above,Hip,0,5701,Wood,43.06328716,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3721,NJBF000071567,725 ADRIATIC AVE,Atlantic City,NJ,39.37094152,-74.42392262,RES1,3001,,17,NE,2002,2002,3102,2,1,1166.666841,1166.666841,3505,NO,32.48,42.73,3,1.66,6106,114.614983,124.211398,134.019983,140.235344,I,Above,Hip,0,5701,Wood,37.60239451,0,0,,,,1,1,,0.03,nav,1,2002,2,, 3722,NJBF000065786,50 N ABERDEEN PL,Atlantic City,NJ,39.34809321,-74.46470642,RES3A,3001,,17,NE,1900,1900,3301,2,1,1466.902888,1466.902888,3505,NO,37.76,51.23,3,-0.26,6106,114.01008,123.714501,133.458598,139.926432,I,Above,Gable,0,5701,Wood,44.49180328,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3723,NJBF000065445,35 N NEWTON AVE,Atlantic City,NJ,39.34710033,-74.4665324,RES3A,3001,,17,NE,2008,2008,3301,1,1,965.4507152,965.4507152,3505,NO,14.24,24.41,3,2.24,6106,113.982792,123.692485,133.434119,139.912458,I,Above,Hip,0,5701,Wood,19.32780109,0,0,,,,1,1,,0.03,nav,1,2008,1,, 3724,NJBF000065345,53 S BARTRAM AVE,Atlantic City,NJ,39.34679938,-74.46170081,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,1667.815336,1667.815336,3505,YES,32.86,47.57,3,7.64,6106,114.092642,123.782606,133.530841,139.994158,I,Above,Flat,0,5701,Wood,40.21828448,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3725,NJBF000066432,4301 WINCHESTER AVE,Atlantic City,NJ,39.34974334,-74.46258201,RES3A,3001,,45,NE,1920,1920,3301,3,4,2065.952856,2065.952856,3505,YES,58.12,67.66,3,8.36,6106,114.035546,123.734801,133.481796,139.935049,I,Above,Flat,0,5701,Wood,62.88810458,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3726,NJBF000066526,34 N ANNAPOLIS AVE,Atlantic City,NJ,39.3499894,-74.4598142,RES3A,3001,,45,NE,1922,1922,3301,2,2,1392.771687,1392.771687,3505,NO,35.72,44.84,3,-0.76,6106,114.093054,123.781983,133.532893,139.975483,I,Above,Hip,0,5701,Wood,40.27784127,0,0,,,,1,1,,0.03,nav,1,1922,2,, 3727,NJBF000066490,28 N ANNAPOLIS AVE,Atlantic City,NJ,39.3498915,-74.459729,RES3A,3001,,17,NE,1920,1920,3301,2,1,1131.844763,1131.844763,3505,NO,34.89,40.14,3,-2.28,6106,114.096163,123.784574,133.53561,139.978325,I,Above,Hip,0,5701,Wood,37.51425531,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3728,NJBF000066001,3801 BOARDWALK,Atlantic City,NJ,39.34859086,-74.45428728,RES3D,3003,,NaN,ME,1969,0,3301,1,1,4330.068047,4330.068047,3507,NO,14.61,21.96,1,2.08,6106,114.231698,123.896722,133.655704,140.083267,I,Above,Flat,0,NaN,Wood,18.28131889,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3729,NJBF000069182,2502 FAIRMOUNT AVE,Atlantic City,NJ,39.3591005,-74.4439955,RES3B,3001,,33,ME,1900,1900,3301,2,1,1166.713509,1166.713509,3505,YES,36.12,48.53,3,1.5,6106,114.324266,123.970211,133.744925,140.089548,I,Above,Flat,0,NaN,Wood,42.32466135,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3730,NJBF000067492,3004 ATLANTIC AVE,Atlantic City,NJ,39.3536478,-74.44824233,COM1,3003,101,NaN,ME,1969,0,3401,1,1,4356.142521,4356.142521,3507,NO,16.74,28.64,1,-0.28,6106,114.299408,123.9515,133.719754,140.102878,I,Above,Flat,0,NaN,Wood,22.69240703,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3731,NJBF000065286,18 N MONTGOMERY AVE,Atlantic City,NJ,39.34662668,-74.46590263,RES3A,3001,,17,NE,1917,1917,3301,2,1,1669.114082,1669.114082,3505,NO,34.89,41.97,3,0.5,6106,114.00272,123.708938,133.451413,139.929946,I,Above,Gable,0,5701,Wood,38.4290238,0,0,,,,1,1,,0.03,nav,1,1917,2,, 3732,NJBF000068090,21 N BRIGHTON AVE,Atlantic City,NJ,39.35560178,-74.44747728,RES3B,3001,,45,ME,1910,1910,3301,3,4,1566.689066,1566.689066,3504,YES,35.5,46.3,-4,0,6106,114.291707,123.944422,133.713791,140.08615,I,Above,Hip,0,NaN,Wood,40.90329936,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3733,NJBF000065156,3 S PLAZA PL,Atlantic City,NJ,39.34627777,-74.46457232,RES1,3001,,18,NE,1900,1900,3102,2,1,2072.133813,2072.133813,3504,YES,28.85,35.3,-4,0,6106,114.036449,123.736655,133.480922,139.956629,I,Above,Hip,0,5701,Wood,32.07082006,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3734,NJBF000071963,8 CARAVEL CT,Atlantic City,NJ,39.37213138,-74.41752881,RES3C,3001,,35,ME,1990,1990,3301,2,1,5458.543538,5458.543538,3505,NO,29.82,38.91,3,-2.55,6106,114.737252,124.316348,134.13711,140.318898,I,Above,Hip,0,NaN,Wood,34.36205892,0,0,,,,1,1,,0.03,nav,1,1990,2,, 3735,NJBF000066653,3818 VENTNOR AVE,Atlantic City,NJ,39.35035741,-74.45665583,COM1,3004,29,NaN,ME,1969,0,3401,3,1,2901.679827,2901.679827,3507,YES,43.49,49.13,1,1.66,6106,114.15745,123.834925,133.590416,140.019881,I,Above,Flat,0,NaN,Wood,46.3073567,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3736,NJBF000065510,39 N NEWTON AVE,Atlantic City,NJ,39.34728454,-74.46670526,RES3A,3001,,45,NE,1924,1924,3301,2,3,1641.490876,1641.490876,3505,YES,36.84,47.13,3,3.47,6106,113.976603,123.687363,133.428764,139.906776,I,Above,Hip,0,5701,Wood,41.98461468,0,0,,,,1,1,,0.03,nav,1,1924,2,, 3737,NJBF000065376,28 N MONTGOMERY AVE,Atlantic City,NJ,39.34689331,-74.46612187,RES3A,3001,,27,NE,1925,1925,3301,2,2,1807.268717,1807.268717,3505,YES,20.78,30.78,3,-1.93,6106,113.99447,123.702106,133.444289,139.92229,I,Above,Flat,0,5701,Wood,25.77750565,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3738,NJBF000065307,18 S ABERDEEN PL,Atlantic City,NJ,39.346696,-74.4636455,RES1,3001,,18,NE,1900,1900,3102,2,1,1755.838436,1755.838436,3504,NO,34.48,41.71,-4,0,6106,114.051367,123.748768,133.494311,139.964948,I,Above,Hip,0,5701,Wood,38.09425761,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3739,NJBF000065941,3850 ATLANTIC AVE,Atlantic City,NJ,39.34850721,-74.45554971,RES3F,3003,278,NaN,E,1969,0,3305,5,1,9694.468033,9694.468033,3507,NO,89.68,102.23,1,1.91,6106,114.205204,123.874857,133.631966,140.064868,I,Above,Flat,0,NaN,Wood,95.95549616,0,0,,,,2,2,,0.03,nav,1,1969,5,, 3740,NJBF000070925,12 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36886584,-74.41370797,RES3D,3004,,17,E,1999,1999,3303,2,1,1334.119658,1334.119658,3505,NO,22.96,37.07,3,1.01,6106,114.856554,124.420459,134.249364,140.422939,I,Above,Gable,0,NaN,Wood,30.01462179,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 3741,NJBF000065110,4715 VENTNOR AVE,Atlantic City,NJ,39.34616325,-74.46628367,RES3A,3001,,18,NE,1900,1900,3301,2,1,1571.940553,1571.940553,3505,NO,41.87,47.45,3,8.25,6106,114.000369,123.707149,133.449106,139.931038,I,Above,Hip,0,5701,Wood,44.66071133,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3742,NJBF000067533,3109 ATLANTIC AVE,Atlantic City,NJ,39.35375028,-74.44955619,COM1,3003,738,NaN,ME,1969,0,3401,2,3,7820.608527,7820.608527,3507,YES,36.6,44.96,1,-0.16,6106,114.269547,123.926634,133.692815,140.080844,I,Above,Flat,0,NaN,Wood,40.78064797,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3743,NJBF000067571,3101 ATLANTIC AVE,Atlantic City,NJ,39.35385365,-74.44933436,COM1,3003,738,NaN,ME,1969,0,3401,1,1,3384.993233,3384.993233,3507,NO,16.06,24.83,1,2.17,6106,114.273078,123.929535,133.696059,140.082786,I,Above,Flat,0,NaN,Wood,20.44240521,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3744,NJBF000069852,16 N VIRGINIA AVE,Atlantic City,NJ,39.36456806,-74.42382625,COM1,3003,212,NaN,ME,1969,0,3401,1,1,1540.796259,1540.796259,3507,NO,11.37,19.62,1,0.29,6106,114.692355,124.279862,134.08968,140.325899,I,Above,Flat,0,NaN,Wood,15.49685653,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3745,NJBF000070485,,Atlantic City,NJ,39.36733032,-74.42700314,RES1,3001,,NaN,NE,1969,0,3103,5,1,2051.235252,2051.235252,3505,NO,97.31,104.73,3,2.99,6106,114.591552,124.192808,133.996286,140.23788,I,Above,Hip,0,5701,Wood,101.0222729,0,0,,,,1,1,,0.03,nav,1,1969,5,, 3746,NJBF000071309,119 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.370152,-74.41387983,RES3D,3004,,27,E,2000,2000,3303,2,2,1728.696303,1728.696303,3505,NO,29.59,39.65,3,-0.65,6106,114.837773,124.403952,134.232327,140.402762,I,Above,Hip,0,NaN,Wood,34.61845208,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 3747,NJBF000067631,10 N MONTPELIER AVE,Atlantic City,NJ,39.35401639,-74.45066954,RES3B,3001,,45,ME,1900,1900,3301,2,3,1202.584805,1202.584805,3504,NO,37.96,47.51,-4,0,6106,114.24197,123.903632,133.668058,140.05944,I,Above,Hip,0,NaN,Wood,42.73921968,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3748,NJBF000067678,22 N SOVEREIGN AVE,Atlantic City,NJ,39.35414257,-74.45173893,RES3B,3001,,17,ME,1900,1900,3301,2,1,1437.938268,1437.938268,3504,YES,27.1,36.09,-4,0,6106,114.217095,123.882939,133.645698,140.04073,I,Above,Hip,0,NaN,Wood,31.59418129,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3749,NJBF000071188,31 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3696955,-74.413309,RES3D,3004,,27,E,2003,2003,3303,2,2,548.6757897,548.6757897,3505,NO,36.83,44.81,3,7.22,6106,114.855239,124.419186,134.248772,140.417811,I,Above,Hip,0,NaN,Wood,40.82369896,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3750,NJBF000067535,11 N SOVEREIGN AVE,Atlantic City,NJ,39.35375265,-74.45094435,RES3B,3001,,17,ME,1900,1900,3301,3,1,1428.219282,1428.219282,3504,NO,54.2,65.64,-4,0,6106,114.239288,123.9015,133.665514,140.059033,I,Above,Flat,0,NaN,Wood,59.92259053,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3751,NJBF000069160,159 S NEW YORK AVE,Atlantic City,NJ,39.35900635,-74.42737078,COM1,3003,100,NaN,ME,1969,0,3401,3,1,765.4183782,765.4183782,3507,YES,40.65,48.11,1,-0.92,6106,114.683833,124.273588,134.077211,140.348594,I,Above,Flat,0,NaN,Wood,44.37939093,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3752,NJBF000069192,153 S NEW YORK AVE,Atlantic City,NJ,39.35913331,-74.42746269,COM1,3003,100,NaN,ME,1920,1920,3401,3,1,727.1116212,727.1116212,3507,YES,41.36,56.23,1,0.5,6106,114.680306,124.270573,134.074025,140.345425,I,Above,Flat,0,NaN,Wood,48.7947655,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3753,NJBF000069054,209 S TENNESSEE AVE,Atlantic City,NJ,39.35857454,-74.42549482,COM1,3003,530,NaN,ME,1969,0,3401,3,1,2344.913093,2344.913093,3507,YES,36.19,46.67,1,0.8,6106,114.7293,124.31233,134.119384,140.383193,I,Above,Flat,0,NaN,Wood,41.42960514,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3754,NJBF000071581,170 N MAINE AVE,Atlantic City,NJ,39.37098808,-74.41334531,RES3D,3004,,18,E,2005,2005,3303,2,1,2786.195012,2786.195012,3505,NO,26.36,31.61,3,4.93,6106,114.839305,124.405114,134.234424,140.399635,I,Above,Gable,0,NaN,Wood,28.98389038,0,0,,,,1,1,,0.03,nav,1,2005,2,, 3755,NJBF000067743,27 N SOVEREIGN AVE,Atlantic City,NJ,39.35434994,-74.45139393,RES3B,3001,,NaN,ME,1908,0,3301,2,1,1216.373879,1216.373879,3504,NO,34.99,48.2,-4,0,6106,114.222031,123.886955,133.650235,140.043088,I,Above,Gable,0,NaN,Wood,41.59602978,0,0,,,,1,1,,0.03,nav,1,1908,2,, 3756,NJBF000067785,31 N SOVEREIGN AVE,Atlantic City,NJ,39.35448887,-74.45150887,RES3B,3001,738,NaN,ME,1969,0,3301,3,1,1462.349342,1462.349342,3504,YES,35.71,43.88,-4,0,6106,114.217793,123.883384,133.646475,140.039207,I,Above,Gable,0,NaN,Wood,39.79177975,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3757,NJBF000067595,16 N SOVEREIGN AVE,Atlantic City,NJ,39.35391861,-74.45155519,RES3B,3001,,45,ME,1910,1910,3301,2,2,1280.5927,1280.5927,3504,NO,34.21,41.52,-4,0,6106,114.223902,123.888671,133.651728,140.04696,I,Above,Hip,0,NaN,Wood,37.86415411,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3758,NJBF000071468,106 SUNRISE AVE,Atlantic City,NJ,39.37069447,-74.41348232,RES3D,3004,,17,E,2000,2000,3303,2,1,1323.632445,1323.632445,3505,NO,43.94,54.84,3,8.37,6106,114.839847,124.405645,134.234728,140.401524,I,Above,Gable,0,NaN,Wood,49.3892652,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3759,NJBF000071128,27 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36950933,-74.4132205,RES3D,3004,,27,E,2003,2003,3303,2,2,908.2575233,908.2575233,3505,NO,34.98,45.24,3,-1.66,6106,114.859313,124.422752,134.252542,140.421715,I,Above,Gable,0,NaN,Wood,40.1123133,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3760,NJBF000067660,33 N BOSTON AVE,Atlantic City,NJ,39.3540914,-74.45221897,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,561.8181034,561.8181034,3504,NO,24.25,34.22,-4,0,6106,114.207282,123.87482,133.636841,140.033934,I,Above,Flat,0,NaN,Wood,29.23124972,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3761,NJBF000067685,33 N BOSTON AVE,Atlantic City,NJ,39.354162,-74.4520515,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,510.893927,510.893927,3504,NO,21.03,32.63,-4,0,6106,114.210058,123.877095,133.63937,140.035526,I,Above,Hip,0,NaN,Wood,26.83147208,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3762,NJBF000067676,2618 PACIFIC AVE,Atlantic City,NJ,39.35413489,-74.44264005,RES3A,3004,,45,NE,1920,1920,3301,3,3,1889.165591,1889.165591,3505,NO,58.16,67.38,3,3.36,6106,114.414928,124.047736,133.825009,140.182749,I,Above,Hip,0,5701,Wood,62.77146865,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3763,NJBF000072826,,Atlantic City,NJ,39.3750935,-74.42484349,RES3D,3001,,NaN,ME,1969,0,3301,2,1,1563.02339,1563.02339,3507,NO,35.62,44.78,1,2.77,6106,114.547425,124.151187,133.956925,140.16229,I,Above,Hip,0,NaN,Wood,40.1988995,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3764,NJBF000070693,1913 GRANT AVE,Atlantic City,NJ,39.36807948,-74.44092137,RES3B,3001,,17,ME,1963,1963,3301,2,1,2748.071876,2748.071876,3505,NO,32.77,47.45,3,-2.67,6106,114.283411,123.930857,133.709074,140.006689,I,Above,Gable,0,5701,Wood,40.11295945,0,0,,,,1,1,,0.03,nav,1,1963,2,, 3765,NJBF000072792,819 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37494721,-74.42246251,RES1,3001,,17,NE,1918,1918,3102,2,1,2898.716285,2898.716285,3505,NO,36.81,43.71,3,2.45,6106,114.599818,124.196405,134.006794,140.202094,I,Above,Gable,0,5701,Wood,40.26129657,0,0,,,,1,1,,0.03,nav,1,1918,2,, 3766,NJBF000072772,610 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37487502,-74.42303465,RES1,3001,,17,NE,2000,2000,3102,2,1,1195.282257,1195.282257,3505,NO,31.89,41.48,3,6.31,6106,114.588461,124.186651,133.995949,140.19405,I,Above,Hip,0,5701,Wood,36.68282214,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3767,NJBF000069622,24 S NORTH CAROLINA AVE,Atlantic City,NJ,39.36218605,-74.42537897,COM1,3003,100,NaN,ME,1969,0,3401,2,1,4027.251649,4027.251649,3507,YES,22.85,35.37,1,0.63,6106,114.687807,124.276474,134.083604,140.335033,I,Above,Flat,0,NaN,Wood,29.11136626,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3768,NJBF000069598,1125 PACIFIC AVE,Atlantic City,NJ,39.36199846,-74.42415669,COM1,3003,100,NaN,ME,1969,0,3401,1,1,4266.975268,4266.975268,3507,NO,14.04,28.27,1,-0.26,6106,114.716216,124.300766,134.11018,140.356421,I,Above,Flat,0,NaN,Wood,21.15297606,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3769,NJBF000069590,27 S CHALFONTE AVE,Atlantic City,NJ,39.36194508,-74.42541991,COM1,3003,,NaN,ME,1969,0,3401,1,1,509.3971845,509.3971845,3507,NO,14.43,25.4,1,-0.55,6106,114.689844,124.278257,134.085328,140.337747,I,Above,Gable,0,NaN,Wood,19.91498208,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3770,NJBF000069587,31 S CHALFONTE AVE,Atlantic City,NJ,39.36190658,-74.42539272,COM1,3003,,17,ME,1900,1900,3401,2,1,767.2393495,767.2393495,3507,YES,35.5,46.08,1,0.05,6106,114.690882,124.279149,134.086273,140.33869,I,Above,Gable,0,NaN,Wood,40.78961401,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3771,NJBF000069644,44 S MANSION AVE,Atlantic City,NJ,39.36243568,-74.42444415,COM1,3003,,33,ME,1900,1900,3401,2,1,803.5896123,803.5896123,3507,NO,38.13,49.79,1,0.18,6106,114.704785,124.290926,134.099777,140.345948,I,Above,Flat,0,NaN,Wood,43.95984074,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3772,NJBF000069649,42 S MANSION AVE,Atlantic City,NJ,39.36247743,-74.42445353,COM1,3003,,33,ME,1900,1900,3401,3,1,644.5500811,644.5500811,3507,YES,32.73,37.88,1,0.14,6106,114.704076,124.290313,134.099142,140.345226,I,Above,Flat,0,NaN,Wood,35.30186746,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3773,NJBF000064783,130 S KINGSTON AVE,Atlantic City,NJ,39.34531193,-74.46192548,RES3A,3001,,20,NE,1915,2017,3301,3,1,1602.29951,1602.29951,3504,YES,51.82,59.12,-4,0,6106,114.107013,123.794748,133.542603,140.013208,I,Above,Gable,0,5701,Wood,55.47214265,0,0,,,,1,1,,0.03,nav,1,1915,3,, 3774,NJBF000065461,,Atlantic City,NJ,39.34718,-74.457037,RES1,3001,,NaN,NE,1969,0,3102,2,1,1095.834467,1095.834467,3507,NO,38.36,46.18,1,-0.11,6106,114.189768,123.862424,133.617309,140.061467,I,Above,Hip,0,5701,Wood,42.27128007,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3775,NJBF000064604,101 S MONTGOMERY AVE,Atlantic City,NJ,39.34488223,-74.46398366,RES3A,3001,,18,NE,1919,1919,3301,3,1,3191.995703,3191.995703,3504,YES,42.79,55.42,-4,0,6106,114.067494,123.762428,133.507433,139.987378,I,Above,Gable,0,5701,Wood,49.10836504,0,0,,,,1,1,,0.03,nav,1,1919,3,, 3776,NJBF000064811,122 S KINGSTON AVE,Atlantic City,NJ,39.34538841,-74.46203765,RES3A,3001,,45,NE,1915,1915,3301,3,2,1506.405586,1506.405586,3504,NO,44.45,52.58,-4,0,6106,114.103549,123.791889,133.539593,140.010285,I,Above,Hip,0,5701,Wood,48.51623942,0,0,,,,1,1,,0.03,nav,1,1915,3,, 3777,NJBF000065293,102 S RALEIGH AVE,Atlantic City,NJ,39.346644,-74.460141,RES3A,3001,,47,NE,1920,1920,3301,2,3,1848.924828,1848.924828,3504,YES,25.1,33.2,-4,0,6106,114.128803,123.812355,133.562774,140.021038,I,Above,Hip,0,5701,Wood,29.14988673,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3778,NJBF000065029,101 S KINGSTON AVE,Atlantic City,NJ,39.34594643,-74.46194155,RES3A,3001,,18,NE,1911,1911,3301,3,1,1665.21388,1665.21388,3504,NO,57.74,64.18,-4,0,6106,114.098405,123.787545,133.535411,140.003327,I,Above,Flat,0,5701,Wood,60.96390071,0,0,,,,1,1,,0.03,nav,1,1911,3,, 3779,NJBF000064759,137 S KINGSTON AVE,Atlantic City,NJ,39.34528468,-74.46145645,RES3A,3001,,45,NE,1910,1910,3301,3,2,1999.444944,1999.444944,3504,YES,41.47,55.06,-4,0,6106,114.117635,123.803474,133.551978,140.020961,I,Above,Hip,0,5701,Wood,48.26748049,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3780,NJBF000064561,4505 BOARDWALK,Atlantic City,NJ,39.34478754,-74.46196333,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2050.901343,2050.901343,3504,NO,37.84,48.46,-4,0,6106,114.113005,123.799769,133.547536,140.020541,I,Above,Flat,0,5701,Wood,43.15389172,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3781,NJBF000064638,4501 BDWK 4501A,Atlantic City,NJ,39.3449636,-74.46163758,RES3A,3001,,29,NE,1995,1995,3301,3,2,1835.903976,1835.903976,3504,YES,55.3,63.38,-4,0,6106,114.117828,123.803695,133.551925,140.022963,I,Above,Flat,0,5701,Wood,59.33806847,0,0,,,,1,1,,0.03,nav,1,1995,3,, 3782,NJBF000064217,,Atlantic City,NJ,39.34391587,-74.46473275,RES1,3001,,NaN,NE,1969,0,3102,2,1,3796.894673,3796.894673,3507,NO,20.71,33.78,1,-0.75,6106,114.063698,123.759512,133.503439,139.990344,I,Above,Flat,0,5701,Wood,27.24782379,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3783,NJBF000064469,4708 ATLANTIC AVE,Atlantic City,NJ,39.34457048,-74.46462973,RES3A,3001,,18,NE,1912,1912,3301,2,1,1739.088053,1739.088053,3504,YES,38.18,44.59,-4,0,6106,114.057401,123.754226,133.498337,139.981958,I,Above,Hip,0,5701,Wood,41.384669,0,0,,,,1,1,,0.03,nav,1,1912,2,, 3784,NJBF000064755,123 S BERKLEY SQ,Atlantic City,NJ,39.34525499,-74.46230544,RES3A,3001,,45,NE,1910,1910,3301,2,2,2256.308997,2256.308997,3504,NO,34.7,46.72,-4,0,6106,114.099431,123.788537,133.535864,140.008112,I,Above,Hip,0,5701,Wood,40.71096167,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3785,NJBF000064393,4712 ATLANTIC AVE,Atlantic City,NJ,39.34437215,-74.46508519,RES3A,3001,,18,NE,1910,1910,3301,3,1,2188.886196,2188.886196,3504,NO,32.18,40.63,-4,0,6106,114.05001,123.748215,133.491701,139.977806,I,Above,Hip,0,5701,Wood,36.40620163,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3786,NJBF000069335,1510 PACIFIC AVE,Atlantic City,NJ,39.35973225,-74.42868924,COM1,3003,737,NaN,ME,1969,0,3401,4,1,4551.676477,4551.676477,3507,YES,59.89,69.58,1,2.9,6106,114.646694,124.241911,134.043118,140.318299,I,Above,Flat,0,NaN,Wood,64.73796855,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3787,NJBF000069381,1416 PACIFIC AVE,Atlantic City,NJ,39.35999398,-74.42776452,COM1,3003,530,NaN,ME,1969,0,3401,4,1,10547.99825,10547.99825,3507,NO,46.51,54.53,1,-0.93,6106,114.663315,124.255995,134.058868,140.328834,I,Above,Flat,0,NaN,Wood,50.51993026,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3788,NJBF000072787,108 CASPIAN AVE,Atlantic City,NJ,39.374927,-74.4167505,RES3C,3001,,17,ME,2003,2003,3301,2,1,527.5266916,527.5266916,3505,NO,30.49,39.72,3,1.56,6106,114.721432,124.30161,134.123265,140.292404,I,Above,Gable,0,NaN,Wood,35.10741671,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3789,NJBF000071667,116 MADISON AVE,Atlantic City,NJ,39.37121805,-74.41397561,RES3D,3004,,17,E,2000,2000,3303,2,1,1333.558357,1333.558357,3505,NO,22.98,29.63,3,0.86,6106,114.823251,124.391128,134.219133,140.386718,I,Above,Hip,0,NaN,Wood,26.30345626,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3790,NJBF000072739,429 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.374748,-74.4169605,RES3C,3001,,27,ME,2003,2003,3301,2,2,1926.347929,1926.347929,3505,NO,30.2,42.76,3,7.4,6106,114.719037,124.299604,134.120886,140.291586,I,Above,Hip,0,NaN,Wood,36.47852823,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3791,NJBF000071488,135 SUNRISE AVE,Atlantic City,NJ,39.37074339,-74.41395059,RES3D,3004,,17,E,2000,2000,3303,2,1,1196.065756,1196.065756,3505,NO,39.75,52.68,3,2.42,6106,114.829339,124.396515,134.224652,140.393596,I,Above,Flat,0,NaN,Wood,46.21552329,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3792,NJBF000071540,135 SUNRISE AVE,Atlantic City,NJ,39.37087786,-74.41404477,RES3D,3004,,17,E,2000,2000,3303,2,1,755.0432395,755.0432395,3505,NO,37.82,43.53,3,4.89,6106,114.825767,124.393387,134.221313,140.390295,I,Above,Flat,0,NaN,Wood,40.67561873,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3793,NJBF000070916,11 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36884849,-74.41302905,RES3D,3004,,27,E,2003,2003,3303,2,2,2061.383218,2061.383218,3505,NO,44.16,56.8,3,8.97,6106,114.87115,124.433119,134.26338,140.433644,I,Above,Hip,0,NaN,Wood,50.47971429,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3794,NJBF000070937,11 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3689255,-74.4128315,RES3D,3004,,27,E,2003,2003,3303,2,2,1041.561306,1041.561306,3505,NO,28.88,42.74,3,-2.41,6106,114.874422,124.435947,134.266594,140.435633,I,Above,Hip,0,NaN,Wood,35.81247198,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3795,NJBF000072716,700 N RHODE ISLAND AVE,Atlantic City,NJ,39.37465356,-74.42089732,IND1,3003,100,NaN,E,1969,0,3401,1,1,2913.104872,2913.104872,3507,NO,14.91,20.03,1,-0.38,6106,114.63651,124.228222,134.041751,140.230952,I,Above,Flat,0,NaN,Wood,17.47094539,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3796,NJBF000072620,101 ADRIATIC AVE,Atlantic City,NJ,39.374308,-74.415905,RES3C,3001,,17,ME,2003,2003,3301,2,1,535.976956,535.976956,3505,NO,22.37,31.28,3,-2.47,6106,114.746497,124.323597,134.147096,140.314222,I,Above,Flat,0,NaN,Wood,26.82798004,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3797,NJBF000072590,101 ADRIATIC AVE,Atlantic City,NJ,39.37419057,-74.4158266,RES3C,3001,,17,ME,2003,2003,3301,2,1,1215.930578,1215.930578,3505,NO,42.34,52.77,3,8.47,6106,114.7495,124.326246,134.149929,140.317057,I,Above,Hip,0,NaN,Wood,47.5582145,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3798,NJBF000072637,106 LIBERTY AVE,Atlantic City,NJ,39.37435003,-74.41622632,RES3C,3001,,17,ME,2003,2003,3301,2,1,523.0050975,523.0050975,3505,NO,23.87,31.69,3,-1.72,6106,114.739207,124.317256,134.140103,140.308615,I,Above,Gable,0,NaN,Wood,27.77790216,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3799,NJBF000072786,101 LIBERTY AVE,Atlantic City,NJ,39.37492532,-74.41632294,RES3C,3001,,17,ME,2003,2003,3301,2,1,582.3025276,582.3025276,3505,NO,37.04,47.27,3,1.34,6106,114.73053,124.309505,134.132016,140.299148,I,Above,Hip,0,NaN,Wood,42.15390815,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3800,NJBF000072757,101 LIBERTY AVE,Atlantic City,NJ,39.37480831,-74.4162397,RES3C,3001,,17,ME,2003,2003,3301,2,1,1229.980276,1229.980276,3505,NO,28.34,35.71,3,1.24,6106,114.733636,124.312246,134.134952,140.302067,I,Above,Gable,0,NaN,Wood,32.02431071,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3801,NJBF000070970,15 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36900557,-74.4131021,RES3D,3004,,27,E,2003,2003,3303,2,2,2111.93507,2111.93507,3505,NO,46.15,57.6,3,8.49,6106,114.86774,124.430138,134.260233,140.430373,I,Above,Hip,0,NaN,Wood,51.87495947,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3802,NJBF000070992,15 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36907096,-74.41292848,RES3D,3004,,27,E,2003,2003,3303,2,2,963.9735834,963.9735834,3505,NO,19.33,24.57,3,-2.43,6106,114.870658,124.432661,134.263095,140.43217,I,Above,Flat,0,NaN,Wood,21.94969989,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3803,NJBF000072795,437 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37496509,-74.41710548,RES3C,3001,,27,ME,2003,2003,3301,2,2,1868.935263,1868.935263,3505,NO,43.38,57.04,3,8.97,6106,114.713487,124.294703,134.115642,140.286319,I,Above,Gable,0,NaN,Wood,50.21451754,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3804,NJBF000072256,4 SCHOONER CT,Atlantic City,NJ,39.3730491,-74.4167469,RES3C,3001,,35,ME,1990,1990,3301,2,1,3681.014566,3681.014566,3505,NO,28.15,37.87,3,5.11,6106,114.743194,124.321181,134.143294,140.31843,I,Above,Hip,0,NaN,Wood,33.00944985,0,0,,,,1,1,,0.03,nav,1,1990,2,, 3805,NJBF000072142,19 CLIPPER CT,Atlantic City,NJ,39.37270041,-74.41857851,RES3C,3001,,35,ME,1990,1990,3301,2,1,5644.353161,5644.353161,3505,NO,31.94,38.79,3,-2.76,6106,114.708342,124.29114,134.109707,140.294606,I,Above,Gable,0,NaN,Wood,35.36498332,0,0,,,,1,1,,0.03,nav,1,1990,2,, 3806,NJBF000072602,413 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37423534,-74.41662022,RES3C,3001,,27,ME,2003,2003,3301,2,2,1900.868964,1900.868964,3505,NO,36.01,46.41,3,6.62,6106,114.732178,124.311202,134.133291,140.304031,I,Above,Hip,0,NaN,Wood,41.21150726,0,0,,,,1,1,,0.03,nav,1,2003,2,, 3807,NJBF000072616,402 N MAINE AVE,Atlantic City,NJ,39.37428398,-74.41553306,RES3C,3001,,45,ME,2006,2006,3301,3,3,2145.291396,2145.291396,3505,NO,54.41,68.62,3,-0.56,6106,114.754658,124.33069,134.15494,140.320376,I,Above,Flat,0,NaN,Wood,61.51261773,0,0,,,,1,1,,0.03,nav,1,2006,3,, 3808,NJBF000072692,102 LIBERTY AVE,Atlantic City,NJ,39.37456134,-74.41607477,RES3C,3001,,17,ME,2003,2003,3301,3,1,1231.988507,1231.988507,3505,NO,43.45,48.72,3,3.93,6106,114.739977,124.317845,134.140942,140.308066,I,Above,Gable,0,NaN,Wood,46.08279132,0,0,,,,1,1,,0.03,nav,1,2003,3,, 3809,NJBF000071938,5 WINDJAMMER CT,Atlantic City,NJ,39.37205124,-74.41772681,RES3C,3001,,35,ME,1990,1990,3301,2,1,5346.652634,5346.652634,3505,NO,30.88,41.59,3,8.7,6106,114.733978,124.313542,134.13393,140.316912,I,Above,Hip,0,NaN,Wood,36.23798743,0,0,,,,1,1,,0.03,nav,1,1990,2,, 3810,NJBF000071909,16 CARAVEL CT,Atlantic City,NJ,39.37195898,-74.41715916,RES3C,3001,,35,ME,1990,1990,3301,2,1,2792.545842,2792.545842,3505,NO,35.17,45.29,3,-1.11,6106,114.747109,124.324934,134.146463,140.327046,I,Above,Gable,0,NaN,Wood,40.23324764,0,0,,,,1,1,,0.03,nav,1,1990,2,, 3811,NJBF000070658,1 S NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36794971,-74.41262338,RES3D,3004,,47,E,1900,1900,3303,3,4,796.3142988,796.3142988,3505,YES,51.67,62.4,3,6.34,6106,114.890368,124.449894,134.281074,140.452068,I,Above,Flat,0,NaN,Wood,57.03606474,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3812,NJBF000070888,726 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36876575,-74.43774351,RES1,3001,,17,NE,1962,1962,3102,1,1,1540.960831,1540.960831,3505,NO,19.09,24.45,3,2.16,6106,114.343934,123.981518,133.765135,140.04754,I,Above,Gable,0,5701,Wood,21.77420407,0,0,,,,1,1,,0.03,nav,1,1962,1,, 3813,NJBF000070154,111 ORIENTAL AVE,Atlantic City,NJ,39.36603613,-74.41059724,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,2646.57102,2646.57102,3505,YES,25.11,39.11,3,-0.02,6106,114.956012,124.50695,134.342353,140.508886,I,Above,Flat,0,5701,Wood,32.10787713,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3814,NJBF000070119,121 ORIENTAL AVE,Atlantic City,NJ,39.36589026,-74.41097904,RES3A,3001,,45,NE,1928,1928,3301,2,2,1573.91702,1573.91702,3505,YES,34.07,39.33,3,8.49,6106,114.949676,124.501452,134.336099,140.505021,I,Above,Flat,0,5701,Wood,36.69835988,0,0,,,,1,1,,0.03,nav,1,1928,2,, 3815,NJBF000069899,200 S VERMONT AVE,Atlantic City,NJ,39.36487268,-74.41259477,RES3A,3001,100,NaN,NE,1969,0,3301,3,1,1528.129342,1528.129342,3505,YES,67.25,81.57,3,8.94,6106,114.927642,124.482359,134.313849,140.494059,I,Above,Gable,0,5701,Wood,74.41268364,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3816,NJBF000069907,311 ORIENTAL AVE,Atlantic City,NJ,39.36493227,-74.41328131,COM1,3001,,45,ME,1920,1920,3401,3,3,1883.68689,1883.68689,3507,YES,58.25,69.34,1,2.71,6106,114.912399,124.469165,134.299293,140.482801,I,Above,Flat,0,NaN,Wood,63.79041708,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3817,NJBF000070099,138 S NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36581274,-74.41164787,RES3A,3001,100,45,NE,1920,1920,3301,3,4,1145.025647,1145.025647,3505,YES,51.08,62.02,3,7.44,6106,114.93644,124.489971,134.323287,140.495849,I,Above,Flat,0,5701,Wood,56.5502048,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3818,NJBF000069560,24 S SOUTH CAROLINA AVE,Atlantic City,NJ,39.36163223,-74.42658442,COM1,3003,100,NaN,ME,1969,0,3401,1,1,8416.674506,8416.674506,3507,NO,15.81,30.21,1,1.84,6106,114.668715,124.260298,134.065241,140.32419,I,Above,Flat,0,NaN,Wood,23.01016052,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3819,NJBF000069557,29 S SOUTH CAROLINA AVE,Atlantic City,NJ,39.3616231,-74.42589934,COM1,3003,,45,ME,1916,1916,3401,3,2,1284.052728,1284.052728,3507,YES,45.1,58.15,1,1.94,6110,114.683491,124.272896,134.079102,140.334853,I,Above,Flat,0,NaN,Wood,51.62178027,0,0,,,,1,1,,1,nav,1,1916,3,, 3820,NJBF000069550,1211 PACIFIC AVE,Atlantic City,NJ,39.3615306,-74.42553077,COM1,3003,,NaN,ME,1969,0,3401,3,1,14682.64639,14682.64639,3507,NO,39.23,47.06,1,0.58,6106,114.692482,124.280581,134.087473,140.341785,I,Above,Gable,0,NaN,Wood,43.14418095,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3821,NJBF000070936,736 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36890944,-74.43780968,RES1,3001,,17,NE,1962,1962,3102,2,1,1142.922129,1142.922129,3505,NO,28.86,35.38,3,-0.47,6106,114.34084,123.978806,133.762269,140.044401,I,Above,Gable,0,5701,Wood,32.11971097,0,0,,,,1,1,,0.03,nav,1,1962,2,, 3822,NJBF000069766,217 S METROPOLITAN AVE,Atlantic City,NJ,39.363775,-74.413818,RES3A,3001,,45,NE,1920,1920,3301,2,2,871.5209637,871.5209637,3505,YES,23.33,36.75,3,-0.89,6106,114.914915,124.471355,134.300482,140.490221,I,Above,Flat,0,5701,Wood,30.03530675,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3823,NJBF000069884,204 S VERMONT AVE,Atlantic City,NJ,39.3647725,-74.41253354,RES3A,3001,,17,NE,1900,1900,3301,2,1,1524.63066,1524.63066,3505,NO,35.23,45.12,3,7.84,6106,114.930134,124.484517,134.316133,140.496335,I,Above,Hip,0,5701,Wood,40.17549663,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3824,NJBF000065575,55 S RALEIGH AVE,Atlantic City,NJ,39.34749359,-74.46025202,RES3A,3001,,18,NE,1920,1920,3301,3,1,1781.974194,1781.974194,3505,YES,35.12,43.79,3,2.26,6106,114.115408,123.801132,133.551422,140.006446,I,Above,Hip,0,5701,Wood,39.45495528,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3825,NJBF000065563,37 S DELANCY PL,Atlantic City,NJ,39.34747144,-74.46114917,RES3A,3001,,45,NE,1900,1900,3301,3,3,1263.969821,1263.969821,3505,YES,35.36,45.72,3,-0.45,6106,114.096063,123.785239,133.534263,139.99265,I,Above,Hip,0,5701,Wood,40.54043163,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3826,NJBF000069492,,Atlantic City,NJ,39.3608995,-74.433854,COM1,3003,,NaN,ME,1969,0,3401,3,1,556.2574958,556.2574958,3507,NO,38.35,47.89,1,-0.14,6110,114.521475,124.135474,133.927364,140.222101,I,Above,Flat,0,NaN,Wood,43.12272105,0,0,,,,1,1,,1,nav,1,1969,3,, 3827,NJBF000069188,2317 ARCTIC AVE RR #A,Atlantic City,NJ,39.35911804,-74.44140032,RES3B,3001,,27,ME,1900,1900,3301,2,2,690.0369667,690.0369667,3505,YES,24.15,35.69,3,1.13,6106,114.380262,124.017133,133.796178,140.130027,I,Above,Flat,0,NaN,Wood,29.91903126,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3828,NJBF000070132,103 N VIRGINIA AVE,Atlantic City,NJ,39.36596056,-74.42398418,RES1,3001,,17,NE,2000,2000,3102,2,1,1161.607352,1161.607352,3505,NO,23.89,31.1,3,2.75,6106,114.672349,124.262379,134.071732,140.304074,I,Above,Gable,0,5701,Wood,27.49567036,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3829,NJBF000070191,107 N VIRGINIA AVE,Atlantic City,NJ,39.3661555,-74.423853,RES1,3001,,27,NE,2000,2000,3102,2,2,573.9284301,573.9284301,3505,NO,43.54,55.93,3,6.09,6106,114.672839,124.262744,134.072319,140.303404,I,Above,Hip,0,5701,Wood,49.73386886,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3830,NJBF000068616,2641 ARCTIC AVE,Atlantic City,NJ,39.35724718,-74.44542994,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,1192.788046,1192.788046,3505,NO,29.03,40.71,3,-1.47,6106,114.315848,123.963936,133.736482,140.094124,I,Above,Flat,0,5701,Wood,34.86971402,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3831,NJBF000070218,120 N VIRGINIA AVE,Atlantic City,NJ,39.36627918,-74.42507305,RES1,3001,,27,NE,2000,2000,3102,2,2,500.1984933,500.1984933,3505,NO,35.47,49.5,3,9,6106,114.645294,124.239126,134.046385,140.282724,I,Above,Gable,0,5701,Wood,42.4888368,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3832,NJBF000070239,120 N VIRGINIA AVE,Atlantic City,NJ,39.36638333,-74.42483947,RES1,3001,,27,NE,2000,2000,3102,2,2,1930.185115,1930.185115,3505,NO,29.75,37.63,3,5.25,6106,114.649061,124.242317,134.050001,140.284908,I,Above,Hip,0,5701,Wood,33.68681387,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3833,NJBF000068482,2815 DENNY ST,Atlantic City,NJ,39.35691697,-74.44781348,RES3A,3001,,27,NE,1908,1908,3301,2,2,1706.399569,1706.399569,3505,YES,41.64,53.72,3,4.96,6106,114.268149,123.924274,133.692994,140.061495,I,Above,Hip,0,5701,Wood,47.68066643,0,0,,,,1,1,,0.03,nav,1,1908,2,, 3834,NJBF000068610,2811 CARLTON AVE,Atlantic City,NJ,39.35723652,-74.44797356,RES3A,3001,,33,NE,1900,1900,3301,2,1,561.9505054,561.9505054,3505,NO,31.14,41.61,3,4.62,6106,114.260709,123.917936,133.686367,140.054228,I,Above,Hip,0,5701,Wood,36.37488797,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3835,NJBF000070168,,Atlantic City,NJ,39.36607335,-74.42530413,RES1,3001,,NaN,NE,1900,0,3102,2,1,2207.015402,2207.015402,3505,NO,41.71,51.48,3,6.08,6106,114.642804,124.23706,134.043915,140.282014,I,Above,Hip,0,5701,Wood,46.59513975,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3836,NJBF000070220,111 N VIRGINIA AVE,Atlantic City,NJ,39.366295,-74.423938,RES1,3001,,27,NE,2000,2000,3102,2,2,521.4103757,521.4103757,3505,NO,30.09,41.03,3,8.51,6106,114.669359,124.259723,134.069118,140.300133,I,Above,Flat,0,5701,Wood,35.55938349,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3837,NJBF000068719,116 N CALIFORNIA AVE,Atlantic City,NJ,39.35748409,-74.44598923,RES3A,3001,560,NaN,NE,1969,0,3301,1,1,2376.015873,2376.015873,3505,NO,11.85,17.93,3,0.16,6106,114.300798,123.951272,133.722885,140.081865,I,Above,Flat,0,5701,Wood,14.88832222,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3838,NJBF000065989,26 S WINDSOR AVE,Atlantic City,NJ,39.34862959,-74.45932785,RES3A,3001,,45,NE,1890,1890,3301,2,2,1432.093593,1432.093593,3505,NO,40.37,48.42,3,5.53,6106,114.121043,123.805452,133.557073,140.00381,I,Above,Hip,0,5701,Wood,44.391432,0,0,,,,1,1,,0.03,nav,1,1890,2,, 3839,NJBF000065965,4017 ATLANTIC AVE,Atlantic City,NJ,39.3485715,-74.45764694,RES3A,3001,,45,NE,1900,1900,3301,3,3,2556.394615,2556.394615,3504,YES,47.84,59.15,-4,0,6106,114.158567,123.836372,133.590416,140.031137,I,Above,Flat,0,5701,Wood,53.49084975,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3840,NJBF000069608,109 N INDIANA AVE,Atlantic City,NJ,39.36207387,-74.43417573,COM1,3003,,45,ME,1900,1900,3401,3,3,1559.601493,1559.601493,3507,YES,47.6,57.97,1,2.45,6106,114.500336,124.117202,133.908398,140.20038,I,Above,Flat,0,NaN,Wood,52.78327394,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3841,NJBF000066083,4009 VAN RANSELEER AVE,Atlantic City,NJ,39.34886015,-74.45769113,RES3A,3001,,27,NE,1900,1900,3301,2,2,781.4469385,781.4469385,3504,YES,34.05,40.2,-4,0,6106,114.153906,123.832451,133.586435,140.026105,I,Above,Flat,0,5701,Wood,37.12364469,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3842,NJBF000068467,18 N BELLEVUE AVE,Atlantic City,NJ,39.356865,-74.44306997,RES3B,3001,,45,ME,1920,1920,3301,3,3,822.2352789,822.2352789,3505,YES,54.83,67.77,3,3.63,6106,114.37174,124.010809,133.787261,140.136621,I,Above,Hip,0,NaN,Wood,61.29873624,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3843,NJBF000065999,45 N BARTRAM AVE,Atlantic City,NJ,39.34865396,-74.46324648,RES3A,3001,,17,NE,1900,1900,3301,2,1,1455.923134,1455.923134,3505,NO,23.05,35.31,3,-2.46,6106,114.034908,123.734666,133.480764,139.941186,I,Above,Hip,0,5701,Wood,29.1818609,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3844,NJBF000066041,51 N BARTRAM AVE,Atlantic City,NJ,39.34874851,-74.46332553,RES3A,3001,,17,NE,1900,1900,3301,2,1,1491.61006,1491.61006,3505,NO,30.38,45.1,3,6.28,6106,114.031936,123.732195,133.478181,139.93844,I,Above,Hip,0,5701,Wood,37.73991398,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3845,NJBF000066060,16 S WINDSOR AVE,Atlantic City,NJ,39.34882234,-74.4594785,RES3A,3001,,45,NE,1900,1900,3301,1,2,1421.882424,1421.882424,3505,NO,22.98,37.09,3,8.5,6106,114.115281,123.800652,133.552058,139.998519,I,Above,Hip,0,5701,Wood,30.03566425,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3846,NJBF000066021,24 S WINDSOR AVE,Atlantic City,NJ,39.34870458,-74.45946699,RES3A,3001,,45,NE,1923,1923,3301,1,2,2514.607365,2514.607365,3505,NO,18.64,25.44,3,5.02,6106,114.117041,123.802136,133.553559,140.000481,I,Above,Hip,0,5701,Wood,22.04196295,0,0,,,,1,1,,0.03,nav,1,1923,1,, 3847,NJBF000069656,1810 BALTIC AVE,Atlantic City,NJ,39.36252536,-74.43531714,COM1,3003,959,NaN,ME,1969,0,3401,3,1,7805.524753,7805.524753,3507,YES,39.35,47,1,-0.11,6106,114.470322,124.091651,133.880776,140.176116,I,Above,Flat,0,NaN,Wood,43.17484393,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3848,NJBF000068458,2435 ATLANTIC AVE,Atlantic City,NJ,39.35682008,-74.44189933,COM1,3003,100,NaN,ME,1969,0,3401,3,1,4059.118895,4059.118895,3507,YES,39.97,51.41,1,-0.05,6106,114.397663,124.032533,133.810931,140.155516,I,Above,Flat,0,NaN,Wood,45.68809564,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3849,NJBF000069654,117 N INDIANA AVE,Atlantic City,NJ,39.36252119,-74.43434659,EDU1,3004,,NaN,E,1969,0,3401,3,1,18325.29948,18325.29948,3507,NO,48.88,58.92,1,0.65,6106,114.491264,124.109364,133.900203,140.191333,I,Above,Flat,0,NaN,Wood,53.90204319,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3850,NJBF000069637,126 N INDIANA AVE,Atlantic City,NJ,39.36233453,-74.43485062,COM1,3003,282,NaN,ME,1969,0,3401,2,7,1448.227168,1448.227168,3507,NO,26.74,39.23,1,1.63,6106,114.482651,124.102147,133.892119,140.186119,I,Above,Gable,0,NaN,Wood,32.98747197,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3851,NJBF000066008,25 N DELANCY PL,Atlantic City,NJ,39.34867487,-74.46213778,RES3A,3001,,45,NE,1900,1900,3301,2,2,1279.918671,1279.918671,3505,YES,29.27,43.98,3,4.07,6106,114.058929,123.754375,133.502017,139.958567,I,Above,Flat,0,5701,Wood,36.62587727,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3852,NJBF000066048,29 N DELANCY PL,Atlantic City,NJ,39.34876115,-74.46219216,RES3A,3001,,45,NE,1900,1900,3301,2,2,840.3987341,840.3987341,3505,YES,34.4,44.64,3,-2.48,6106,114.056644,123.75247,133.500036,139.956387,I,Above,Hip,0,5701,Wood,39.51708756,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3853,NJBF000068819,109 N CALIFORNIA RR #A,Atlantic City,NJ,39.357712,-74.445175,RES3A,3001,,37,NE,1900,1900,3301,2,1,598.0904431,598.0904431,3505,YES,38.14,47.07,3,6.75,6106,114.315665,123.963598,133.736517,140.091316,I,Above,Gable,0,5701,Wood,42.60469967,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3854,NJBF000069820,222 S SEASIDE AVE,Atlantic City,NJ,39.36427282,-74.41139207,RES3A,3001,,45,NE,1900,1900,3301,3,2,1440.254704,1440.254704,3505,YES,54.51,63.26,3,2.22,6106,114.96032,124.510656,134.344561,140.520434,I,Above,Hip,0,5701,Wood,58.88399185,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3855,NJBF000068670,2814 FAIRMOUNT AVE,Atlantic City,NJ,39.35736634,-74.44818773,RES3A,3001,,45,NE,1920,1920,3301,2,2,1456.160649,1456.160649,3505,NO,38.54,49.72,3,7.98,6106,114.254469,123.912681,133.680754,140.04894,I,Above,Gable,0,5701,Wood,44.12882456,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3856,NJBF000069425,,Atlantic City,NJ,39.36027718,-74.43361691,COM1,3003,,NaN,ME,1969,0,3401,1,1,20498.17129,20498.17129,3507,NO,17.05,28.44,1,1.28,6106,114.534146,124.146377,133.93874,140.234621,I,Above,Flat,0,NaN,Wood,22.74240087,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3857,NJBF000068810,109 N CALIFORNIA RR #A,Atlantic City,NJ,39.35767164,-74.44515074,RES3A,3001,,37,NE,1900,1900,3301,2,1,504.6438142,504.6438142,3505,YES,42.31,47.52,3,8.17,6106,114.316677,123.96446,133.737422,140.092279,I,Above,Gable,0,5701,Wood,44.91654636,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3858,NJBF000069858,214 S SEASIDE AVE,Atlantic City,NJ,39.36460501,-74.41163266,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,2066.249696,2066.249696,3505,NO,25.76,34.32,3,-2.6,6106,114.95123,124.502788,134.3362,140.512314,I,Above,Hip,0,5701,Wood,30.03824816,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3859,NJBF000069729,240 S VERMONT AVE,Atlantic City,NJ,39.36344514,-74.41169201,RES3A,3001,,NaN,NE,1969,0,3301,3,1,2319.361772,2319.361772,3505,YES,51.01,58.63,3,3.1,6106,114.963941,124.513756,134.34709,140.526973,I,Above,Flat,0,5701,Wood,54.82078354,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3860,NJBF000069823,204 S RHODE ISLAND AVE,Atlantic City,NJ,39.36429248,-74.41375118,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,1319.995475,1319.995475,3505,YES,26.13,37.39,3,1.06,6106,114.910117,124.467204,134.29644,140.484269,I,Above,Flat,0,5701,Wood,31.75548814,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3861,NJBF000069733,227 S METROPOLITAN AVE,Atlantic City,NJ,39.36349158,-74.41361729,RES3A,3001,,17,NE,1900,1900,3301,2,1,1048.630652,1048.630652,3505,NO,28.28,36.59,3,-2,6106,114.922587,124.477984,134.307516,140.497093,I,Above,Hip,0,5701,Wood,32.43482686,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3862,NJBF000069259,141 S OCEAN AVE,Atlantic City,NJ,39.35939995,-74.42547911,COM1,3001,100,NaN,ME,1969,0,3401,3,1,2162.167803,2162.167803,3507,YES,55.44,61.07,1,1.46,6106,114.719538,124.303939,134.111012,140.372065,I,Above,Flat,0,NaN,Wood,58.25544851,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3863,NJBF000069257,137 S NEW YORK AVE,Atlantic City,NJ,39.35938996,-74.42763229,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1866.826933,1866.826933,3507,YES,31.96,41.33,1,0.27,6106,114.67354,124.264784,134.067922,140.33927,I,Above,Flat,0,NaN,Wood,36.64261001,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3864,NJBF000069219,151 S NEW YORK AVE,Atlantic City,NJ,39.35921247,-74.42751283,COM1,3003,100,NaN,ME,1969,0,3401,3,1,1785.794934,1785.794934,3507,YES,49.93,56.85,1,2.51,6106,114.678268,124.268829,134.072188,140.343563,I,Above,Flat,0,NaN,Wood,53.39234505,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3865,NJBF000069274,PUBLIC BEACH,Atlantic City,NJ,39.35948045,-74.41747068,COM8,3003,,NaN,ME,1969,0,3401,2,1,1007.245187,1007.245187,3502,NO,29.71,41.65,5,7.29,6102,114.889454,124.449312,134.271399,140.492693,I,Above,Hip,0,NaN,Wood,35.68134728,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3866,NJBF000069197,127 ST JAMES PL,Atlantic City,NJ,39.35914294,-74.4267148,COM1,3003,100,NaN,ME,1969,0,3401,7,1,4630.495898,4630.495898,3507,YES,85.58,92.99,1,1.55,6106,114.696214,124.284104,134.088919,140.356728,I,Above,Flat,0,NaN,Wood,89.2875328,0,0,,,,1,1,,0.03,nav,1,1969,7,, 3867,NJBF000069155,133 ST JAMES PL,Atlantic City,NJ,39.35897712,-74.42661913,COM1,3003,100,NaN,ME,1969,0,3401,5,1,2618.558903,2618.558903,3507,YES,63.45,77.13,1,2.93,6106,114.700302,124.287603,134.092596,140.360492,I,Above,Flat,0,NaN,Wood,70.28912666,0,0,,,,1,1,,0.03,nav,1,1969,5,, 3868,NJBF000070337,116 N MARYLAND AVE,Atlantic City,NJ,39.36674753,-74.42346972,RES1,3001,,27,NE,2001,2001,3102,2,2,1989.882622,1989.882622,3505,NO,31.31,42.49,3,2.32,6106,114.673974,124.263546,134.073762,140.301087,I,Above,Hip,0,5701,Wood,36.89942835,0,0,,,,1,1,,0.03,nav,1,2001,2,, 3869,NJBF000069235,143 S OCEAN AVE,Atlantic City,NJ,39.35928676,-74.42540691,COM1,3001,,45,ME,1900,1900,3401,3,3,1174.693583,1174.693583,3507,YES,43.91,57.39,1,1.63,6106,114.722461,124.306441,134.113649,140.374723,I,Above,Flat,0,NaN,Wood,50.64578477,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3870,NJBF000069272,157 S CHALFONTE AVE,Atlantic City,NJ,39.359477,-74.4237925,COM1,3003,212,NaN,ME,1969,0,3401,3,1,2088.637538,2088.637538,3507,NO,45.99,56.25,1,2.64,6106,114.754662,124.333889,134.144073,140.396732,I,Above,Flat,0,NaN,Wood,51.12285193,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3871,NJBF000068302,202 N MONTPELIER AVE,Atlantic City,NJ,39.35627626,-74.4521963,RES3A,3001,,45,NE,1900,1900,3301,3,2,1520.642392,1520.642392,3507,YES,45.25,51.65,1,1.75,6106,114.180647,123.85179,133.613654,140.001639,I,Above,Flat,0,5701,Wood,48.45012368,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3872,NJBF000069088,2526 FAIRMOUNT AVE,Atlantic City,NJ,39.35872904,-74.44472866,RES3B,3001,560,NaN,ME,1969,0,3301,1,1,2008.907482,2008.907482,3505,NO,14.98,24.67,3,3.91,6106,114.31288,123.960845,133.734389,140.083426,I,Above,Flat,0,NaN,Wood,19.82943212,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3873,NJBF000068316,119 N CHELSEA AVE,Atlantic City,NJ,39.35633718,-74.45017104,RES3A,3001,,45,NE,1925,1925,3301,2,3,1025.465166,1025.465166,3505,NO,43.75,56.32,3,5.65,6106,114.224008,123.88778,133.652807,140.03285,I,Above,Flat,0,5701,Wood,50.03763124,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3874,NJBF000068359,107 N MORRIS AVE,Atlantic City,NJ,39.35649187,-74.44902901,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,899.5207433,899.5207433,3505,YES,43.5,52.88,3,4.8,6106,114.246947,123.906795,133.673615,140.048598,I,Above,Hip,0,5701,Wood,48.18705263,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3875,NJBF000069080,2314 ARCTIC AVE,Atlantic City,NJ,39.35869238,-74.44100914,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1094.16986,1094.16986,3507,YES,32.53,38.04,1,0.32,6106,114.393931,124.028764,133.808508,140.142316,I,Above,Flat,0,NaN,Wood,35.28610348,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3876,NJBF000070285,119 N VIRGINIA AVE,Atlantic City,NJ,39.36656896,-74.42412169,RES1,3001,,27,NE,2000,2000,3102,2,2,522.0219158,522.0219158,3505,NO,31.33,43.3,3,2.12,6106,114.662173,124.253487,134.062496,140.293454,I,Above,Flat,0,5701,Wood,37.31309004,0,0,,,,1,1,,0.03,nav,1,2000,2,, 3877,NJBF000069062,30 N MISSISSIPPI AVE,Atlantic City,NJ,39.3586309,-74.44030826,COM1,3003,,45,ME,1920,1920,3401,2,2,1019.204208,1019.204208,3507,YES,36.01,47.22,1,2.25,6106,114.409844,124.042145,133.823078,140.154143,I,Above,Flat,0,NaN,Wood,41.61958699,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3878,NJBF000070097,25 S CONGRESS AVE,Atlantic City,NJ,39.36580312,-74.41678504,RES3D,3004,29,NaN,E,1969,0,3303,4,1,2616.917578,2616.917578,3505,YES,52.27,60.89,3,3.37,6106,114.827617,124.395859,134.219042,140.417346,I,Above,Gable,0,NaN,Wood,56.5838628,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3879,NJBF000071334,,Atlantic City,NJ,39.37026149,-74.44054377,RES3A,3001,,NaN,NE,1969,0,3301,1,1,3157.395259,3157.395259,3505,NO,17.87,29.68,3,5.4,6106,114.266119,123.914684,133.692945,139.980676,I,Above,Gable,0,5701,Wood,23.77802119,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3880,NJBF000072187,515 N NEW JERSEY AVE,Atlantic City,NJ,39.37283043,-74.42386503,RES1,3001,,16,NE,1950,1950,3102,1,1,879.4509468,879.4509468,3505,NO,18.65,28.7,3,2.24,6106,114.594307,124.192747,134.000994,140.209714,I,Above,Gable,0,5701,Wood,23.67112906,0,0,,,,1,1,,0.03,nav,1,1950,1,, 3881,NJBF000072211,727 SEWELL AVE,Atlantic City,NJ,39.372931,-74.4250485,RES1,3001,,NaN,NE,1969,0,3102,1,1,770.9310808,770.9310808,3505,NO,16.04,27.79,3,5.09,6106,114.567877,124.169977,133.975927,140.189588,I,Above,Hip,0,5701,Wood,21.91547464,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3882,NJBF000069472,1401 PACIFIC AVE,Atlantic City,NJ,39.360695,-74.4277445,COM1,3003,,NaN,ME,1969,0,3401,3,1,4500.424151,4500.424151,3507,NO,36.79,45.91,1,2.74,6106,114.655209,124.248976,134.051851,140.31938,I,Above,Hip,0,NaN,Wood,41.3502638,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3883,NJBF000069482,1401 PACIFIC AVE,Atlantic City,NJ,39.36076558,-74.42745902,COM1,3003,,NaN,ME,1969,0,3401,3,1,10560.96277,10560.96277,3507,NO,49.57,60.56,1,0.97,6106,114.660476,124.253445,134.056838,140.322788,I,Above,Hip,0,NaN,Wood,55.0652214,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3884,NJBF000066513,4007 VENTNOR AVE,Atlantic City,NJ,39.34995207,-74.45857792,COM1,3004,100,NaN,ME,1969,0,3401,2,1,868.2955812,868.2955812,3507,YES,25.14,36.62,1,-0.65,6106,114.120574,123.804654,133.557346,139.995647,I,Above,Flat,0,NaN,Wood,30.87875527,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3885,NJBF000065638,17 N PLAZA PL,Atlantic City,NJ,39.34767775,-74.46573907,RES3A,3001,,17,NE,1916,1916,3301,2,1,1851.219252,1851.219252,3505,YES,28.04,39.04,3,0.26,6106,113.992747,123.700444,133.443141,139.916246,I,Above,Gable,0,5701,Wood,33.5414147,0,0,,,,1,1,,0.03,nav,1,1916,2,, 3886,NJBF000065594,18 S DELANCY PL,Atlantic City,NJ,39.34755665,-74.46178798,RES3A,3001,,18,NE,1900,1900,3301,2,1,1775.689594,1775.689594,3505,NO,27.85,34.77,3,-1.1,6106,114.080958,123.772807,133.520938,139.981232,I,Above,Hip,0,5701,Wood,31.30772095,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3887,NJBF000065654,4405 VENTNOR AVE,Atlantic City,NJ,39.34772082,-74.46311295,RES3A,3001,,45,NE,1900,1900,3301,2,2,2253.150637,2253.150637,3505,NO,38.3,46.67,3,2.57,6106,114.049807,123.747191,133.49348,139.95767,I,Above,Hip,0,5701,Wood,42.48340307,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3888,NJBF000065680,2 S DELANCY PL,Atlantic City,NJ,39.34779727,-74.46196801,RES3A,3001,,17,NE,1925,1925,3301,2,1,3271.126245,3271.126245,3505,NO,29.83,44.74,3,1.52,6106,114.073926,123.766963,133.514845,139.974713,I,Above,Hip,0,5701,Wood,37.28519806,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3889,NJBF000066525,7 S ELBERON AVE,Atlantic City,NJ,39.34998617,-74.45721333,COM1,3004,,45,ME,1900,1900,3401,2,2,827.7171587,827.7171587,3507,YES,23.59,38.4,1,0.45,6106,114.149992,123.82889,133.583569,140.016687,I,Above,Hip,0,NaN,Wood,30.99173974,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3890,NJBF000069333,,Atlantic City,NJ,39.35972851,-74.43101716,COM1,3003,,NaN,ME,1969,0,3401,1,1,912.6113854,912.6113854,3507,NO,17,31.85,1,2.74,6106,114.596745,124.199521,133.996541,140.28253,I,Above,Flat,0,NaN,Wood,24.42737076,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3891,NJBF000065632,4407 VENTNOR AVE,Atlantic City,NJ,39.3476614,-74.46322815,RES3A,3001,,17,NE,1900,1900,3301,2,1,1950.210908,1950.210908,3505,NO,29.56,37.16,3,-0.28,6106,114.048058,123.745774,133.491904,139.956759,I,Above,Hip,0,5701,Wood,33.35589186,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3892,NJBF000065664,3 N KINGSTON AVE,Atlantic City,NJ,39.34775899,-74.46344626,RES3A,3001,,45,NE,1900,1900,3301,2,2,1465.461748,1465.461748,3505,NO,21.67,32.86,3,0.53,6106,114.042016,123.740789,133.486618,139.951774,I,Above,Hip,0,5701,Wood,27.26562158,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3893,NJBF000065684,19 N PLAZA PL,Atlantic City,NJ,39.34780512,-74.4658429,RES3A,3001,,17,NE,1920,1920,3301,2,1,1969.605529,1969.605529,3505,NO,30.34,37.14,3,7.42,6106,113.988828,123.697193,133.439748,139.912592,I,Above,Hip,0,5701,Wood,33.73824179,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3894,NJBF000065743,7 S DELANCY PL,Atlantic City,NJ,39.34796888,-74.46153308,RES3A,3001,,45,NE,1920,1920,3301,3,2,1496.26333,1496.26333,3505,YES,49.96,62.07,3,-0.16,6106,114.081245,123.772923,133.521415,139.978987,I,Above,Hip,0,5701,Wood,56.0131994,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3895,NJBF000067971,2700 ATLANTIC AVE,Atlantic City,NJ,39.35521203,-74.44443818,RES4,3003,,NaN,E,1969,0,3404,6,1,6336.512414,6336.512414,3507,NO,102.87,110.78,1,1.08,6106,114.362536,124.003646,133.777946,140.139311,I,Above,Hip,0,NaN,Wood,106.8259712,0,0,,,,2,2,,0.03,nav,1,1969,6,, 3896,NJBF000067968,,Atlantic City,NJ,39.35519605,-74.44354996,RES3A,3004,,NaN,NE,1969,0,3301,2,1,1580.082741,1580.082741,3505,NO,22.35,30.26,3,0.62,6106,114.381993,124.019912,133.795664,140.153345,I,Above,Hip,0,5701,Wood,26.30671579,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3897,NJBF000067957,2609 MONTEREY AVE,Atlantic City,NJ,39.35517218,-74.44328239,RES3A,3004,,45,NE,1900,1900,3301,3,2,1468.723188,1468.723188,3505,YES,55.73,69.54,3,0.43,6106,114.388101,124.025026,133.801219,140.157852,I,Above,Gable,0,5701,Wood,62.63806625,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3898,NJBF000068011,21 S SPRAY AVE,Atlantic City,NJ,39.35533236,-74.44331716,RES3A,3004,,45,NE,1915,1915,3301,3,2,702.3345458,702.3345458,3505,YES,61.39,71.15,3,5.42,6106,114.385355,124.022684,133.798812,140.154994,I,Above,Gable,0,5701,Wood,66.26880236,0,0,,,,1,1,,0.03,nav,1,1915,3,, 3899,NJBF000067909,2714 ATLANTIC AVE,Atlantic City,NJ,39.354986,-74.4448505,RES4,3003,739,NaN,E,1969,0,3404,1,1,6578.341973,6578.341973,3507,NO,19.27,26.98,1,0.51,6106,114.356385,123.998577,133.772215,140.13617,I,Above,Flat,0,NaN,Wood,23.12545764,0,0,,,,2,2,,0.03,nav,1,1969,1,, 3900,NJBF000067466,8 N SOVEREIGN AVE,Atlantic City,NJ,39.35357768,-74.45136895,RES3B,3001,100,14,ME,1910,1910,3301,2,3,1633.678872,1633.678872,3504,NO,27.93,37.56,-4,0,6106,114.232218,123.895695,133.659059,140.054951,I,Above,Gable,0,NaN,Wood,32.74686512,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3901,NJBF000068028,2652 ATLANTIC AVE,Atlantic City,NJ,39.35539512,-74.44412392,RES3A,3004,649,NaN,NE,1969,0,3301,1,1,2812.09486,2812.09486,3505,NO,22.91,28.95,3,3.9,6106,114.367075,124.007383,133.782187,140.141539,I,Above,Flat,0,5701,Wood,25.93015569,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3902,NJBF000067980,7 S CALIFORNIA AVE,Atlantic City,NJ,39.35522687,-74.44394592,RES3A,3004,,45,NE,1921,1921,3301,2,2,1406.55052,1406.55052,3505,YES,25.97,35.97,3,3.35,6106,114.373021,124.012403,133.787506,140.146744,I,Above,Flat,0,5701,Wood,30.96871449,0,0,,,,1,1,,0.03,nav,1,1921,2,, 3903,NJBF000067933,17 S CALIFORNIA AVE,Atlantic City,NJ,39.35505965,-74.4438384,RES3A,3004,,45,NE,1940,1940,3301,4,3,1106.02091,1106.02091,3505,YES,67.49,76.87,3,6.23,6106,114.377438,124.016144,133.79143,140.150842,I,Above,Flat,0,5701,Wood,72.17815322,0,0,,,,1,1,,0.03,nav,1,1940,4,, 3904,NJBF000067862,2616 MONTEREY AVE,Atlantic City,NJ,39.35481454,-74.44333009,RES3A,3004,,17,NE,1900,1900,3301,2,1,1089.695135,1089.695135,3505,NO,42.25,56.09,3,4.76,6106,114.391499,124.027968,133.804094,140.162268,I,Above,Hip,0,5701,Wood,49.17097106,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3905,NJBF000070304,400 N KENTUCKY AVE,Atlantic City,NJ,39.36662831,-74.4345179,RES1,3001,,17,NE,1900,1900,3101,2,1,1240.469696,1240.469696,3505,NO,28.16,36.58,3,4.65,6106,114.438563,124.062909,133.85277,140.129769,I,Above,Gable,0,5701,Wood,32.36980997,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3906,NJBF000071294,344 N DELAWARE AVE,Atlantic City,NJ,39.37010316,-74.42406718,RES1,3001,,27,NE,1900,1900,3102,2,2,761.8010561,761.8010561,3505,NO,40.64,55.34,3,4.62,6106,114.621704,124.217526,134.026016,140.244861,I,Above,Flat,0,5701,Wood,47.98987122,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3907,NJBF000070951,825 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36895511,-74.43071075,RES1,3001,,17,NE,2007,2007,3103,2,1,1602.223711,1602.223711,3505,NO,44.57,50.15,3,8.66,6106,114.492966,124.107953,133.904237,140.156562,I,Above,Hip,0,5701,Wood,47.36153593,0,0,,,,1,1,,0.03,nav,1,2007,2,, 3908,NJBF000070626,411 N NEW YORK AVE,Atlantic City,NJ,39.36782231,-74.4326235,EDU1,3004,,NaN,E,1969,0,3401,3,1,47927.07833,47927.07833,3507,YES,44.11,51.76,1,2.13,6106,114.465203,124.084909,133.877941,140.142548,I,Above,Flat,0,NaN,Wood,47.93457261,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3909,NJBF000068605,SOUTH CAROLINA AVE STREET,Atlantic City,NJ,39.35722568,-74.42319953,COM8,3003,,NaN,ME,1969,0,3401,1,1,1582.209455,1582.209455,3502,NO,10.37,24.26,5,-1.23,6102,114.794985,124.368373,134.179632,140.436536,I,Above,Flat,0,NaN,Wood,17.31837121,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3910,NJBF000068269,AIR RIGHTS MICHIGAN AVE,Atlantic City,NJ,39.35619207,-74.43368385,COM8,3003,100,NaN,,1969,0,3408,9,1,1204.39808,1204.39808,3507,NO,101.18,113.75,1,0.24,6106,114.582835,124.188413,133.980832,140.291229,I,Above,Flat,0,NaN,Wood,107.4609414,0,0,,,,2,2,,0.03,nav,1,1969,9,, 3911,NJBF000067486,154 S BELLEVUE AVE,Atlantic City,NJ,39.35363363,-74.44088971,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,2040.038214,2040.038214,3505,YES,62.75,73.61,3,5.36,6106,114.459086,124.084805,133.864968,140.216891,I,Above,Flat,0,5701,Wood,68.17935672,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3912,NJBF000067495,3 STANLEY CT,Atlantic City,NJ,39.35364968,-74.44112257,RES3A,3004,,33,NE,1900,1920,3301,2,1,1833.571638,1833.571638,3505,YES,34.11,42.41,3,8.86,6106,114.453842,124.080411,133.860188,140.21308,I,Above,Flat,0,5701,Wood,38.26032895,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3913,NJBF000067579,125 S TEXAS AVE,Atlantic City,NJ,39.3538794,-74.44136649,RES3A,3004,951,NaN,NE,1969,0,3301,1,1,3557.073379,3557.073379,3505,NO,13.52,19.55,3,-1.41,6106,114.445719,124.073561,133.852937,140.206067,I,Above,Flat,0,5701,Wood,16.53644885,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3914,NJBF000067475,107 S CALIFORNIA AVE,Atlantic City,NJ,39.35360072,-74.44290427,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,2615.985172,2615.985172,3505,YES,58.28,63.47,3,1.86,6106,114.41588,124.048656,133.825502,140.186353,I,Above,Hip,0,5701,Wood,60.87884605,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3915,NJBF000067437,109 S CALIFORNIA AVE,Atlantic City,NJ,39.35349207,-74.44283507,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,1909.675805,1909.675805,3505,NO,48.39,61.01,3,0.61,6106,114.418739,124.051071,133.82803,140.188984,I,Above,Hip,0,5701,Wood,54.70089082,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3916,NJBF000066588,121 WILSON AVE,Atlantic City,NJ,39.350158,-74.45163,RES4,3003,,45,E,1925,1925,3404,2,2,1598.790376,1598.790376,3507,NO,34.88,47.24,1,2.66,6106,114.269652,123.927763,133.690788,140.101411,I,Above,Flat,0,NaN,Wood,41.06229111,0,0,,,,2,2,,0.03,nav,1,1925,2,, 3917,NJBF000066376,3601 BOARDWALK,Atlantic City,NJ,39.3496037,-74.45279322,COM10,3003,212,NaN,E,1969,0,3404,6,1,84170.49031,84170.49031,3507,NO,85.33,93.97,1,0.51,6106,114.251351,123.91274,133.67399,140.09151,I,Above,Flat,0,NaN,Wood,89.65117162,0,0,,,,2,2,,0.03,nav,1,1969,6,, 3918,NJBF000066615,3536 PACIFIC AVE,Atlantic City,NJ,39.35024132,-74.45209419,RES4,3003,100,NaN,E,1969,1950,3404,2,1,3277.792364,3277.792364,3507,YES,32.86,44.65,1,1.33,6106,114.258486,123.918492,133.680811,140.092981,I,Above,Flat,0,NaN,Wood,38.75673737,0,0,,,,2,2,,0.03,nav,1,1969,2,, 3919,NJBF000066505,114 N RALEIGH AVE,Atlantic City,NJ,39.34991836,-74.46279278,RES3A,3001,,45,NE,1922,1922,3301,2,2,1589.115451,1589.115451,3505,YES,39.75,46.97,3,1.21,6106,114.02869,123.729106,133.475799,139.928963,I,Above,Gable,0,5701,Wood,43.35948045,0,0,,,,1,1,,0.03,nav,1,1922,2,, 3920,NJBF000066539,129 WILSON AVE,Atlantic City,NJ,39.35000893,-74.4515283,RES4,3003,,33,E,1900,1900,3404,2,1,819.4840836,819.4840836,3507,YES,27.69,39.87,1,0.8,6106,114.273768,123.93121,133.694388,140.105183,I,Above,Flat,0,NaN,Wood,33.78121886,0,0,,,,2,2,,0.03,nav,1,1900,2,, 3921,NJBF000067343,2529 BOARDWALK,Atlantic City,NJ,39.35316031,-74.44105798,RES4,3003,101,NaN,E,1969,0,3404,1,1,3018.29658,3018.29658,3507,NO,17.26,30,1,2.88,6106,114.461385,124.08682,133.8667,140.221073,I,Above,Flat,0,NaN,Wood,23.62756966,0,0,,,,2,2,,0.03,nav,1,1969,1,, 3922,NJBF000066494,4223 WINCHESTER AVE,Atlantic City,NJ,39.34990216,-74.46224201,RES3A,3001,,45,NE,1900,1900,3301,3,2,1767.06873,1767.06873,3505,YES,60.46,69.51,3,7.22,6106,114.040974,123.739198,133.486665,139.938055,I,Above,Hip,0,5701,Wood,64.98209379,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3923,NJBF000067124,100 N TRENTON AVE,Atlantic City,NJ,39.35218679,-74.45726825,RES3A,3001,,17,NE,1900,1900,3301,2,1,1379.589163,1379.589163,3505,NO,25.24,36.52,3,0.16,6106,114.120925,123.804134,133.558656,139.982579,I,Above,Flat,0,5701,Wood,30.87937749,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3924,NJBF000066456,103 N DELANCY PL,Atlantic City,NJ,39.34979911,-74.46302649,RES3A,3001,,45,NE,1900,1900,3301,2,2,1990.365152,1990.365152,3505,NO,35.2,40.64,3,4.54,6106,114.025097,123.726202,133.472574,139.927054,I,Above,Gable,0,5701,Wood,37.92076428,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3925,NJBF000066411,101 N DELANCY PL,Atlantic City,NJ,39.34968753,-74.46300583,RES3A,3001,,45,NE,1900,1900,3301,2,2,899.3585003,899.3585003,3505,YES,39.23,47.15,3,3.08,6106,114.026951,123.727766,133.47417,139.929088,I,Above,Flat,0,5701,Wood,43.19222615,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3926,NJBF000067137,3712 WINCHESTER AVE,Atlantic City,NJ,39.3522475,-74.456578,RES3A,3001,,45,NE,1920,1920,3301,2,2,1977.315855,1977.315855,3505,YES,30.06,36.4,3,-0.74,6106,114.135252,123.815936,133.571476,139.992632,I,Above,Flat,0,5701,Wood,33.22911224,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3927,NJBF000066600,101 N LACLEDE PL,Atlantic City,NJ,39.35020333,-74.46153812,RES3A,3001,,45,NE,1910,1910,3301,2,2,1430.09131,1430.09131,3505,NO,33.34,45.63,3,2.09,6106,114.052572,123.748613,133.497061,139.944709,I,Above,Gable,0,5701,Wood,39.48515474,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3928,NJBF000066157,26 N LACLEDE PL,Atlantic City,NJ,39.34907625,-74.46120162,RES3A,3001,,45,NE,1925,1925,3301,2,2,2522.694079,2522.694079,3505,YES,35.5,48.51,3,7.52,6106,114.074306,123.766874,133.515828,139.967337,I,Above,Flat,0,5701,Wood,42.00641562,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3929,NJBF000066192,15 N LACLEDE PLACE,Atlantic City,NJ,39.34915131,-74.4606841,RES3A,3001,,45,NE,1900,1900,3301,2,2,1779.556757,1779.556757,3505,NO,34.24,40.95,3,3.8,6106,114.084693,123.775388,133.525074,139.974428,I,Above,Hip,0,5701,Wood,37.59841256,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3930,NJBF000066253,35 S DOVER AVE,Atlantic City,NJ,39.34930715,-74.45738179,RES3A,3001,,45,NE,1915,1915,3301,2,2,1615.025426,1615.025426,3504,NO,22.92,35.42,-4,0,6106,114.15495,123.833184,133.58762,140.024241,I,Above,Hip,0,5701,Wood,29.16773605,0,0,,,,1,1,,0.03,nav,1,1915,2,, 3931,NJBF000067021,63 N HARRISBURG AVE,Atlantic City,NJ,39.3517208,-74.45776049,RES3A,3001,,17,NE,1900,1900,3301,1,1,2865.475261,2865.475261,3505,NO,17.26,25.72,3,-0.9,6106,114.116043,123.800287,133.554111,139.981818,I,Above,Gable,0,5701,Wood,21.48871953,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3932,NJBF000067871,2 N BRIGHTON AVE,Atlantic City,NJ,39.3548375,-74.447571,RES3B,3001,,45,ME,1910,1910,3301,3,4,2103.384321,2103.384321,3504,YES,40.48,52.67,-4,0,6106,114.299153,123.950897,133.720162,140.095901,I,Above,Hip,0,NaN,Wood,46.57403689,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3933,NJBF000070210,138 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36623235,-74.42630081,RES3D,3004,,33,E,1900,1900,3303,3,1,4072.330473,4072.330473,3505,YES,32.14,41.34,3,-0.19,6106,114.619588,124.21716,134.022127,140.264273,I,Above,Gable,0,NaN,Wood,36.7357429,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3934,NJBF000068063,19 N BRIGHTON AVE,Atlantic City,NJ,39.35551839,-74.44742285,RES3B,3001,100,NaN,ME,1969,0,3301,1,1,1455.36929,1455.36929,3504,NO,12.45,25.37,-4,0,6106,114.293923,123.946299,133.71576,140.088232,I,Above,Hip,0,NaN,Wood,18.91319341,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3935,NJBF000070685,,Atlantic City,NJ,39.368054,-74.4280175,RES1,3001,,NaN,NE,1969,0,3103,5,1,3044.275638,3044.275638,3505,NO,96.1,101.57,3,0.35,6106,114.561298,124.166669,133.968126,140.211776,I,Above,Flat,0,5701,Wood,98.83309655,0,0,,,,1,1,,0.03,nav,1,1969,5,, 3936,NJBF000068113,23 N BRIGHTON AVE,Atlantic City,NJ,39.35568962,-74.44756314,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,1854.467311,1854.467311,3504,YES,55.93,66.49,-4,0,6106,114.288747,123.941923,133.711148,140.083508,I,Above,Gable,0,NaN,Wood,61.20839631,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3937,NJBF000068092,30 N BRIGHTON AVE,Atlantic City,NJ,39.35560556,-74.44839129,EDU1,3004,,NaN,E,1969,0,3401,3,1,18581.41534,18581.41534,3507,YES,45.18,55.79,1,-0.12,6106,114.271786,123.927829,133.695739,140.071744,I,Above,Gable,0,NaN,Wood,50.48314001,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3938,NJBF000068141,28 N STENTON PL,Atlantic City,NJ,39.35578133,-74.44714877,RES3B,3001,,17,ME,1900,1900,3301,2,1,1412.727161,1412.727161,3504,NO,29.75,44.65,-4,0,6106,114.296617,123.948448,133.71833,140.088663,I,Above,Hip,0,NaN,Wood,37.20475527,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3939,NJBF000068215,2830 ARCTIC AVE,Atlantic City,NJ,39.35602573,-74.44750686,RES3B,3001,,27,ME,1920,1920,3301,2,2,1143.387505,1143.387505,3504,YES,28.39,40.27,-4,0,6106,114.285804,123.939344,133.708633,140.079443,I,Above,Gable,0,NaN,Wood,34.33246891,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3940,NJBF000065768,112 S DOVER AVE,Atlantic City,NJ,39.34803935,-74.45691037,RES3A,3001,,18,NE,1920,1920,3301,2,1,3437.130423,3437.130423,3504,NO,22.3,35.42,-4,0,6106,114.181496,123.855409,133.610512,140.050635,I,Above,Hip,0,5701,Wood,28.85753166,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3941,NJBF000065621,3909 BOARDWALK,Atlantic City,NJ,39.34762752,-74.4560056,RES1,3001,,19,NE,1999,1999,3102,2,1,1420.361036,1420.361036,3504,NO,27.7,38.39,-4,0,6106,114.206524,123.876147,133.632555,140.070834,I,Above,Gable,0,5701,Wood,33.04260955,0,0,,,,1,1,,0.03,nav,1,1999,2,, 3942,NJBF000065071,111 S BARTRAM AVE,Atlantic City,NJ,39.34606085,-74.46116196,RES3A,3001,,17,NE,1920,1920,3301,2,1,2163.968186,2163.968186,3504,NO,27.04,37.32,-4,0,6106,114.113997,123.800322,133.549279,140.013835,I,Above,Hip,0,5701,Wood,32.17562597,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3943,NJBF000065032,117 S BARTRAM AVE,Atlantic City,NJ,39.34596326,-74.46109688,RES3A,3001,,45,NE,1910,1910,3301,2,2,2031.462027,2031.462027,3504,NO,25.9,39.41,-4,0,6106,114.116691,123.802556,133.5516,140.016337,I,Above,Hip,0,5701,Wood,32.6552655,0,0,,,,1,1,,0.03,nav,1,1910,2,, 3944,NJBF000071024,18 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36916848,-74.41391406,RES3D,3004,,17,E,1999,1999,3303,2,1,1401.246438,1401.246438,3505,NO,35.53,46.97,3,2.58,6106,114.848628,124.41354,134.241993,140.415651,I,Above,Gable,0,NaN,Wood,41.25257363,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 3945,NJBF000071242,206 DYLAN DR,Atlantic City,NJ,39.36989111,-74.41480001,RES3D,3004,,17,E,1998,1998,3303,2,1,1097.758756,1097.758756,3505,NO,41.06,47.47,3,2.08,6106,114.82134,124.389758,134.21634,140.392097,I,Above,Flat,0,NaN,Wood,44.26266262,0,0,,,,1,1,,0.03,nav,1,1998,2,, 3946,NJBF000065548,141 S RIDGEWAY AVE,Atlantic City,NJ,39.34744597,-74.45678352,RES3A,3001,,18,NE,1900,1900,3301,2,1,2648.239645,2648.239645,3504,NO,21.35,31.19,-4,0,6106,114.19187,123.8641,133.619364,140.061442,I,Above,Hip,0,5701,Wood,26.26808957,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3947,NJBF000065685,3901 BOARDWALK,Atlantic City,NJ,39.3478095,-74.4555885,RES1,3001,,18,NE,2002,2002,3102,3,1,1860.543379,1860.543379,3504,NO,31.82,45.29,-4,0,6106,114.213305,123.881703,133.63873,140.074626,I,Above,Hip,0,5701,Wood,38.55383802,0,0,,,,1,1,,0.03,nav,1,2002,3,, 3948,NJBF000065184,100 S DELANCY PL,Atlantic City,NJ,39.34633649,-74.46078417,RES3A,3001,,18,NE,1925,1925,3301,3,1,691.6577601,691.6577601,3504,YES,58.04,66.68,-4,0,6106,114.118711,123.804132,133.553632,140.015606,I,Above,Flat,0,5701,Wood,62.36183621,0,0,,,,1,1,,0.03,nav,1,1925,3,, 3949,NJBF000065220,4330 ATLANTIC AVE,Atlantic City,NJ,39.34643794,-74.46085782,RES3A,3001,,18,NE,1929,1929,3301,3,1,1667.153335,1667.153335,3504,YES,47.49,55.03,-4,0,6106,114.115771,123.801693,133.551094,140.012902,I,Above,Flat,0,5701,Wood,51.26208466,0,0,,,,1,1,,0.03,nav,1,1929,3,, 3950,NJBF000064997,123 S BARTRAM AVE,Atlantic City,NJ,39.34587384,-74.46100409,RES3A,3001,,18,NE,1920,1920,3301,2,1,2028.575794,2028.575794,3504,NO,23.47,38.21,-4,0,6106,114.119881,123.805196,133.554365,140.01914,I,Above,Gable,0,5701,Wood,30.84231592,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3951,NJBF000065691,128 S DOVER AVE,Atlantic City,NJ,39.34783145,-74.45670491,RES1,3001,,45,NE,1900,1900,3102,3,2,2616.391012,2616.391012,3507,YES,33.38,42.47,1,1.63,6106,114.188646,123.861355,133.616749,140.056936,I,Above,Gable,0,5701,Wood,37.92488377,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3952,NJBF000065866,118 JOHN A SEEDORF LN,Atlantic City,NJ,39.34830647,-74.45603189,RES3A,3001,,20,NE,2008,2008,3301,3,1,1628.644676,1628.644676,3504,YES,48.44,60.13,-4,0,6106,114.197253,123.868343,133.624737,140.060348,I,Above,Flat,0,5701,Wood,54.28394021,0,0,,,,1,1,,0.03,nav,1,2008,3,, 3953,NJBF000065107,131 S DELANCY PL,Atlantic City,NJ,39.34615899,-74.460105,RES3A,3001,,45,NE,1920,1920,3301,2,2,3750.332483,3750.332483,3504,NO,32.66,38.66,-4,0,6106,114.135866,123.818271,133.568717,140.028911,I,Above,Flat,0,5701,Wood,35.65647773,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3954,NJBF000065079,122 S DELANCY PL,Atlantic City,NJ,39.34609517,-74.46061209,RES1,3001,,17,NE,1925,1925,3102,2,1,2457.648231,2457.648231,3507,YES,24.9,32.05,1,0.63,6106,114.125598,123.809845,133.559575,140.021942,I,Above,Hip,0,5701,Wood,28.4766829,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3955,NJBF000071038,129 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36921161,-74.41823002,RES3D,3004,,17,E,2005,1900,3303,2,1,884.2292746,884.2292746,3505,NO,31.06,40.56,3,7.04,6106,114.756502,124.333849,134.153776,140.348279,I,Above,Hip,0,NaN,Wood,35.80720056,0,0,,,,1,1,,0.03,nav,1,2005,2,, 3956,NJBF000069718,15 S GORDONS ALLEY,Atlantic City,NJ,39.36327451,-74.42314273,COM1,3003,100,NaN,ME,1969,0,3401,3,1,2356.866796,2356.866796,3507,YES,33.72,47.08,1,0.39,6106,114.72247,124.3059,134.117123,140.354348,I,Above,Flat,0,NaN,Wood,40.3976447,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3957,NJBF000070265,13 S METROPOLITAN AVE,Atlantic City,NJ,39.36648603,-74.41568382,RES3D,3004,,33,E,1900,1900,3303,2,1,592.0437316,592.0437316,3505,YES,37.71,43.3,3,8.82,6106,114.842859,124.408932,134.234204,140.424942,I,Above,Flat,0,NaN,Wood,40.50674093,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3958,NJBF000069332,1601 PACIFIC AVE,Atlantic City,NJ,39.3597283,-74.42991442,COM1,3003,,NaN,ME,1969,0,3401,2,1,7985.971663,7985.971663,3507,NO,32.94,44.55,1,0.93,6106,114.620451,124.219627,134.018625,140.299526,I,Above,Flat,0,NaN,Wood,38.74524647,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3959,NJBF000069671,1003 PACIFIC AVE,Atlantic City,NJ,39.36270443,-74.42236156,COM1,3003,29,NaN,ME,1969,0,3401,4,2,5240.345042,5240.345042,3507,YES,65.94,73.16,1,1.03,6106,114.74603,124.32616,134.138894,140.374229,I,Above,Flat,0,NaN,Wood,69.55167911,0,0,,,,1,1,,0.03,nav,1,1969,4,, 3960,NJBF000069722,1100 ATLANTIC AVE,Atlantic City,NJ,39.36336968,-74.42441986,COM1,3003,649,NaN,ME,1969,0,3401,2,1,2895.808837,2895.808837,3507,NO,30.25,41.24,1,-0.32,6106,114.694039,124.281564,134.090385,140.333366,I,Above,Flat,0,NaN,Wood,35.74461768,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3961,NJBF000068541,2318 ATLANTIC AVE,Atlantic City,NJ,39.35705542,-74.43987859,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2070.751015,2070.751015,3507,NO,14.21,28.88,1,-0.26,6106,114.43848,124.066695,133.848465,140.183513,I,Above,Flat,0,NaN,Wood,21.54273122,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3962,NJBF000068556,2316 ATLANTIC AVE,Atlantic City,NJ,39.35710333,-74.43982233,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1503.686233,1503.686233,3507,YES,39.81,48.69,1,2.8,6106,114.439121,124.067219,133.849082,140.183708,I,Above,Flat,0,NaN,Wood,44.25192133,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3963,NJBF000069103,1723 PACIFIC AVE,Atlantic City,NJ,39.3587755,-74.4320245,COM1,3003,100,NaN,ME,1969,0,3401,3,1,2340.944876,2340.944876,3507,YES,48.79,63,1,-0.7,6106,114.586745,124.191252,133.986527,140.280414,I,Above,Flat,0,NaN,Wood,55.89823063,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3964,NJBF000067834,26 S SPRAY AVE,Atlantic City,NJ,39.3546754,-74.44323534,RES3A,3004,,45,NE,1930,1930,3301,2,2,1152.005696,1152.005696,3505,YES,40.5,51.92,3,8.35,6106,114.395301,124.031185,133.807471,140.165763,I,Above,Flat,0,5701,Wood,46.21237098,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3965,NJBF000068034,33 S FLORIDA AVE,Atlantic City,NJ,39.35540872,-74.44096809,COM1,3003,100,NaN,ME,1969,0,3401,3,1,789.7594862,789.7594862,3507,YES,42.27,56.66,1,1.81,6106,114.435279,124.06446,133.844472,140.190281,I,Above,Hip,0,NaN,Wood,49.46194456,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3966,NJBF000068022,35 S FLORIDA AVE,Atlantic City,NJ,39.3553616,-74.44092093,COM1,3003,,45,ME,1900,1900,3401,3,3,906.947194,906.947194,3507,NO,53.26,67.17,1,2.64,6106,114.43688,124.065813,133.845905,140.191682,I,Above,Hip,0,NaN,Wood,60.21717422,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3967,NJBF000067986,39 S FLORIDA AVE,Atlantic City,NJ,39.35524384,-74.44084283,COM1,3003,,45,ME,1900,1900,3401,3,3,901.6020315,901.6020315,3507,YES,43.77,54.85,1,-0.69,6106,114.440034,124.068486,133.848711,140.19458,I,Above,Flat,0,NaN,Wood,49.30845994,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3968,NJBF000068057,2417 PACIFIC AVE,Atlantic City,NJ,39.35550351,-74.44081228,COM1,3003,,45,ME,1930,1930,3401,3,2,2315.270286,2315.270286,3507,YES,33.16,41.34,1,1.59,6106,114.437476,124.066277,133.846547,140.19133,I,Above,Flat,0,NaN,Wood,37.25096053,0,0,,,,1,1,,0.03,nav,1,1930,3,, 3969,NJBF000067374,3112-14 ATLANTIC AVE,Atlantic City,NJ,39.35327036,-74.44921164,COM1,3003,560,NaN,ME,1969,0,3401,3,1,4224.143026,4224.143026,3507,YES,58.8,71.38,1,0.92,6106,114.28304,123.938006,133.704745,140.09329,I,Above,Flat,0,NaN,Wood,65.0899788,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3970,NJBF000067913,36 S BELLEVUE AVE,Atlantic City,NJ,39.35498871,-74.44185656,RES3A,3004,,45,NE,1900,1900,3301,3,3,1153.028903,1153.028903,3505,YES,35.21,49.46,3,-2.23,6106,114.421251,124.052815,133.831362,140.182568,I,Above,Hip,0,5701,Wood,42.33502406,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3971,NJBF000068083,2417 PACIFIC AVE RR,Atlantic City,NJ,39.35558295,-74.44060688,COM1,3003,,27,ME,1900,1900,3401,3,2,689.9693803,689.9693803,3507,YES,41.06,47.51,1,-0.09,6106,114.440933,124.069155,133.849764,140.193366,I,Above,Flat,0,NaN,Wood,44.28095133,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3972,NJBF000068167,25 S FLORIDA AVE RR,Atlantic City,NJ,39.35588614,-74.44078437,COM1,3003,,27,ME,1930,1930,3401,2,2,626.0158912,626.0158912,3507,NO,25.41,32.83,1,1.26,6106,114.433346,124.062715,133.843019,140.186279,I,Above,Gable,0,NaN,Wood,29.1208164,0,0,,,,1,1,,0.03,nav,1,1930,2,, 3973,NJBF000067937,2501 PACIFIC AVE,Atlantic City,NJ,39.35508352,-74.44127191,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,10883.25259,10883.25259,3505,YES,43.49,54.03,3,-1.57,6106,114.432736,124.06241,133.841926,140.190247,I,Above,Flat,0,5701,Wood,48.76000731,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3974,NJBF000065794,34 S RICHMOND AVE,Atlantic City,NJ,39.34812131,-74.45981591,RES3A,3001,,45,NE,1903,1903,3301,2,2,864.3535464,864.3535464,3505,NO,27.27,42.08,3,6.23,6106,114.11689,123.80218,133.553101,140.00382,I,Above,Hip,0,5701,Wood,34.67429644,0,0,,,,1,1,,0.03,nav,1,1903,2,, 3975,NJBF000065612,18 N PLAZA PL,Atlantic City,NJ,39.34760827,-74.46621177,RES3A,3001,,18,NE,1900,1900,3301,2,1,1895.515086,1895.515086,3505,NO,32.88,44.38,3,5.32,6106,113.983264,123.692705,133.434765,139.909703,I,Above,Hip,0,5701,Wood,38.63247425,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3976,NJBF000066945,3504 ATLANTIC AVE,Atlantic City,NJ,39.35140777,-74.45233909,COM1,3003,100,NaN,ME,1969,0,3401,2,1,2510.848661,2510.848661,3507,NO,35.51,41.32,1,2.88,6106,114.238362,123.9015,133.663445,140.071923,I,Above,Flat,0,NaN,Wood,38.41546954,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3977,NJBF000066496,29 S HARRISBURG AVE,Atlantic City,NJ,39.34990733,-74.45642288,RES3A,3001,,45,NE,1900,1900,3301,3,2,1566.398442,1566.398442,3504,NO,50.38,59.58,-4,0,6106,114.168262,123.843987,133.599826,140.030303,I,Above,Gable,0,5701,Wood,54.977785,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3978,NJBF000066516,2 S ELBERON AVE,Atlantic City,NJ,39.34995506,-74.4576502,COM1,3004,,45,ME,1920,1920,3401,3,2,1485.555413,1485.555413,3507,NO,40.9,52.74,1,2.15,6106,114.140832,123.821347,133.575388,140.010264,I,Above,Gable,0,NaN,Wood,46.82094959,0,0,,,,1,1,,0.03,nav,1,1920,3,, 3979,NJBF000065811,15 S RALEIGH AVE,Atlantic City,NJ,39.34817145,-74.46081026,RES3A,3001,,17,NE,1920,1920,3301,2,1,1645.392381,1645.392381,3505,NO,37.83,51.55,3,-0.8,6106,114.094486,123.783744,133.533255,139.987361,I,Above,Hip,0,5701,Wood,44.68889107,0,0,,,,1,1,,0.03,nav,1,1920,2,, 3980,NJBF000067409,3108 ATLANTIC AVE,Atlantic City,NJ,39.35337761,-74.44913235,COM1,3003,100,NaN,ME,1969,0,3401,3,1,1856.74609,1856.74609,3507,YES,42.53,49.72,1,-0.35,6106,114.283428,123.938294,133.705155,140.092951,I,Above,Flat,0,NaN,Wood,46.12503857,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3981,NJBF000066484,50 S TRENTON AVE,Atlantic City,NJ,39.34987318,-74.4555321,RES3A,3001,,17,NE,1925,1925,3301,2,1,3121.12471,3121.12471,3504,NO,32.03,45.41,-4,0,6106,114.188158,123.860422,133.617577,140.044792,I,Above,Flat,0,5701,Wood,38.71718261,0,0,,,,1,1,,0.03,nav,1,1925,2,, 3982,NJBF000067444,3030 ATLANTIC AVE,Atlantic City,NJ,39.3535135,-74.4486005,COM1,3003,560,NaN,ME,1969,0,3401,2,1,5111.285052,5111.285052,3507,YES,36.27,46.84,1,-0.84,6106,114.293311,123.94647,133.714163,140.099273,I,Above,Flat,0,NaN,Wood,41.55498774,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3983,NJBF000066373,41 S HARRISBURG AVE,Atlantic City,NJ,39.34959416,-74.45615363,RES3A,3001,,45,NE,1900,1900,3301,2,2,2000.514662,2000.514662,3504,YES,28.93,37.39,-4,0,6106,114.178126,123.852219,133.608455,140.039214,I,Above,Flat,0,5701,Wood,33.16427851,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3984,NJBF000065789,26 S LACLEDE PL,Atlantic City,NJ,39.34810202,-74.46039319,RES3A,3001,,17,NE,1900,1900,3301,3,1,1575.40314,1575.40314,3505,YES,36.25,44.11,3,-2.2,6106,114.104503,123.791999,133.542099,139.995003,I,Above,Hip,0,5701,Wood,40.17528907,0,0,,,,1,1,,0.03,nav,1,1900,3,, 3985,NJBF000066808,3501 PACIFIC AVE,Atlantic City,NJ,39.35085352,-74.45192526,COM1,3003,,NaN,ME,1969,0,3401,2,1,11152.79395,11152.79395,3507,NO,23.9,30.55,1,1.96,6106,114.254394,123.914941,133.677521,140.086571,I,Above,Flat,0,NaN,Wood,27.22495553,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3986,NJBF000065580,29 N TALLAHASSEE AVE,Atlantic City,NJ,39.3475196,-74.46471598,RES3A,3001,,17,NE,1900,1900,3301,2,1,1503.582251,1503.582251,3505,NO,33.82,46.4,3,0.04,6106,114.017236,123.720551,133.464638,139.935146,I,Above,Hip,0,5701,Wood,40.11235707,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3987,NJBF000065546,25 N TALLAHASSEE AVE,Atlantic City,NJ,39.34743191,-74.4646399,RES3A,3001,,17,NE,1900,1900,3301,2,1,1237.917852,1237.917852,3505,NO,42.85,51.43,3,7.32,6106,114.020038,123.722874,133.467065,139.937725,I,Above,Gable,0,5701,Wood,47.13842114,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3988,NJBF000065551,4400 VENTNOR AVE,Atlantic City,NJ,39.34744809,-74.46282539,RES3A,3001,738,NaN,NE,1969,0,3301,3,2,2135.079652,2135.079652,3505,YES,47.53,53.06,3,5.03,6106,114.059637,123.755337,133.502023,139.966444,I,Above,Flat,0,5701,Wood,50.29204319,0,0,,,,1,1,,0.03,nav,1,1969,3,, 3989,NJBF000069840,128 N TENNESSEE AVE,Atlantic City,NJ,39.36446,-74.43007,RES3D,3004,,45,E,1910,1910,3303,3,3,676.0883686,676.0883686,3505,YES,45.78,54.63,3,-2.9,6106,114.559939,124.166917,133.965186,140.23051,I,Above,Hip,0,NaN,Wood,50.2022283,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3990,NJBF000069848,128 N TENNESSEE AVE,Atlantic City,NJ,39.36452598,-74.42991059,RES3D,3004,,45,E,1910,1910,3303,3,3,1055.937427,1055.937427,3505,YES,60.61,74.21,3,4.19,6106,114.562562,124.169125,133.967675,140.232055,I,Above,Flat,0,NaN,Wood,67.40886921,0,0,,,,1,1,,0.03,nav,1,1910,3,, 3991,NJBF000065775,47 S RICHMOND AVE,Atlantic City,NJ,39.34806401,-74.45931765,RES3A,3001,,45,NE,1900,1900,3301,2,3,1488.332235,1488.332235,3505,NO,35.25,47.86,3,3.69,6106,114.12852,123.811765,133.563395,140.012525,I,Above,Flat,0,5701,Wood,41.5550678,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3992,NJBF000066378,40 S HARRISBURG AVE,Atlantic City,NJ,39.34960827,-74.45665368,RES3A,3001,,45,NE,1900,1900,3301,2,3,1595.912153,1595.912153,3504,NO,37.03,46.9,-4,0,6106,114.167023,123.843053,133.598553,140.031159,I,Above,Hip,0,5701,Wood,41.96481608,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3993,NJBF000065809,5 N BARTRAM AVE,Atlantic City,NJ,39.34816511,-74.46283397,RES3A,3001,,45,NE,1900,1900,3301,2,2,1607.855248,1607.855248,3505,NO,30.72,35.81,3,-0.01,6106,114.050215,123.747387,133.494063,139.955296,I,Above,Hip,0,5701,Wood,33.26818606,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3994,NJBF000070456,908 BALTIC AVE,Atlantic City,NJ,39.3672133,-74.42398046,RES1,3001,,45,NE,1900,1900,3102,2,4,2080.63184,2080.63184,3505,YES,38.48,48.31,3,7.41,6106,114.657571,124.249344,134.058525,140.286673,I,Above,Flat,0,5701,Wood,43.3963886,0,0,,,,1,1,,0.03,nav,1,1900,2,, 3995,NJBF000069774,1101 ATLANTIC AVE,Atlantic City,NJ,39.36385229,-74.42478906,COM1,3003,737,NaN,ME,1969,0,3401,1,1,12344.87775,12344.87775,3507,NO,13.53,24.55,1,0.68,6106,114.680356,124.269764,134.077851,140.320975,I,Above,Flat,0,NaN,Wood,19.04399987,0,0,,,,1,1,,0.03,nav,1,1969,1,, 3996,NJBF000068662,228 N CHELSEA AVE,Atlantic City,NJ,39.357344,-74.451972,RES3A,3001,,45,NE,1900,1900,3301,1,2,701.0723888,701.0723888,3507,NO,19.46,33.22,1,1.51,6106,114.172366,123.844399,133.606484,139.989197,I,Above,Flat,0,5701,Wood,26.34193387,0,0,,,,1,1,,0.03,nav,1,1900,1,, 3997,NJBF000070479,115 CHESAPEAKE BAY CT,Atlantic City,NJ,39.36729924,-74.42256984,RES1,3001,,28,NE,2004,2004,3102,2,2,2074.343648,2074.343648,3505,NO,43.53,56.64,3,8.55,6106,114.686651,124.274259,134.086105,140.307396,I,Above,Hip,0,5701,Wood,50.08526469,0,0,,,,1,1,,0.03,nav,1,2004,2,, 3998,NJBF000070559,802 BALTIC AVE,Atlantic City,NJ,39.36759694,-74.42265289,RES1,3001,999,NaN,NE,1969,0,3102,2,1,2087.160619,2087.160619,3505,NO,30.78,43.51,3,-0.62,6106,114.681354,124.269624,134.081266,140.30196,I,Above,Flat,0,5701,Wood,37.14389408,0,0,,,,1,1,,0.03,nav,1,1969,2,, 3999,NJBF000067766,336 N TRENTON AVE,Atlantic City,NJ,39.35443332,-74.45914395,RES1,3001,,17,NE,1900,1900,3102,2,1,583.8056856,583.8056856,3505,NO,34.77,42.35,3,5.46,6106,114.051743,123.746072,133.497643,139.918301,I,Above,Hip,0,5701,Wood,38.56021988,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4000,NJBF000067756,317 N TRENTON AVE,Atlantic City,NJ,39.35439152,-74.45825853,COM1,3003,,17,ME,1900,1900,3401,2,1,1286.049736,1286.049736,3507,NO,29.37,36.42,1,0.48,6106,114.071621,123.762484,133.515362,139.933187,I,Above,Hip,0,NaN,Wood,32.89726076,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4001,NJBF000067329,101 N ALBANY AVE,Atlantic City,NJ,39.353108,-74.455959,COM3,3003,210,NaN,ME,1969,0,3401,3,1,2272.860067,2272.860067,3507,NO,55.2,70.15,1,0.17,6106,114.137959,123.81783,133.574238,139.98946,I,Above,Flat,0,NaN,Wood,62.67357351,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4002,NJBF000065497,47 S DELANCY PL,Atlantic City,NJ,39.34725628,-74.46100419,RES3A,3001,,17,NE,1900,1900,3301,2,1,1547.777212,1547.777212,3505,NO,34.35,42.29,3,-1.47,6106,114.102009,123.790182,133.539405,139.998206,I,Above,Hip,0,5701,Wood,38.31888796,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4003,NJBF000070098,210 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36580389,-74.42917396,RES3D,3004,,17,E,1900,1900,3303,2,1,1066.772961,1066.772961,3505,NO,32.99,40.29,3,1.86,6106,114.563134,124.169145,133.968855,140.225485,I,Above,Flat,0,NaN,Wood,36.63515946,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4004,NJBF000065566,44 S RALEIGH AVE,Atlantic City,NJ,39.34747755,-74.46079427,RES3A,3001,,18,NE,1920,1920,3301,2,1,2122.519678,2122.519678,3505,NO,28.92,39.48,3,1.77,6106,114.103747,123.791551,133.541075,139.998147,I,Above,Hip,0,5701,Wood,34.19893407,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4005,NJBF000066339,33 S ELBERON AVE,Atlantic City,NJ,39.34951284,-74.45682887,RES3A,3001,,45,NE,1915,1915,3301,2,2,1393.030193,1393.030193,3504,NO,33.15,45.44,-4,0,6106,114.16441,123.840925,133.596169,140.029836,I,Above,Gable,0,5701,Wood,39.29877482,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4006,NJBF000068018,3712 PORTER AVE,Atlantic City,NJ,39.35535603,-74.45888751,COM1,3003,738,NaN,ME,1969,0,3401,2,1,3343.323786,3343.323786,3507,YES,30.62,44.27,1,1.15,6106,114.045868,123.74075,133.492585,139.908288,I,Above,Flat,0,NaN,Wood,37.44470657,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4007,NJBF000067782,3910 PORTER AVE,Atlantic City,NJ,39.35448428,-74.46052537,RES1,3001,999,NaN,NE,1969,0,3102,1,1,3059.294009,3059.294009,3505,NO,18.09,27.24,3,4.87,6106,114.020867,123.720608,133.470158,139.895177,I,Above,Flat,0,5701,Wood,22.66743086,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4008,NJBF000067712,338 N HARRISBURG AVE,Atlantic City,NJ,39.35425333,-74.4602155,RES1,3001,,45,NE,1920,1920,3102,2,2,500.9529464,500.9529464,3505,NO,39.61,52.36,3,8.22,6106,114.030515,123.728673,133.478699,139.90374,I,Above,Flat,0,5701,Wood,45.9858237,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4009,NJBF000067755,338 N HARRISBURG AVE,Atlantic City,NJ,39.354385,-74.460053,RES1,3001,,45,NE,1920,1920,3102,2,2,1583.446198,1583.446198,3505,NO,30.95,44.88,3,6.99,6106,114.032439,123.730189,133.480437,139.904348,I,Above,Flat,0,5701,Wood,37.9109899,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4010,NJBF000066348,42 S HARRISBURG AVE,Atlantic City,NJ,39.34953102,-74.45658861,RES3A,3001,,45,NE,1900,1900,3301,2,3,1316.404702,1316.404702,3504,NO,35.05,42.13,-4,0,6106,114.169425,123.845057,133.600653,140.033334,I,Above,Gable,0,5701,Wood,38.58726371,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4011,NJBF000066326,44 S HARRISBURG AVE,Atlantic City,NJ,39.34947352,-74.4565347,RES3A,3001,,45,NE,1915,1915,3301,2,3,1433.868765,1433.868765,3504,NO,29.51,41.85,-4,0,6106,114.171331,123.846647,133.602322,140.035036,I,Above,Hip,0,5701,Wood,35.67565978,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4012,NJBF000068694,239 N MONTPELIER AVE,Atlantic City,NJ,39.3574294,-74.45241573,RES3A,3001,,45,NE,1900,1900,3301,2,2,2451.485751,2451.485751,3507,YES,22.97,30.89,1,0.75,6106,114.161644,123.835454,133.596835,139.980833,I,Above,Flat,0,5701,Wood,26.93252936,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4013,NJBF000064764,4710 THERESA PL,Atlantic City,NJ,39.34528208,-74.46539773,RES3B,3001,,45,ME,1917,1917,3301,3,2,1281.676446,1281.676446,3504,NO,46.99,60.2,-4,0,6106,114.031268,123.732667,133.475783,139.958838,I,Above,Flat,0,NaN,Wood,53.59830677,0,0,,,,1,1,,0.03,nav,1,1917,3,, 4014,NJBF000066703,4100 WINCHESTER AVE,Atlantic City,NJ,39.350517,-74.4602395,RES3A,3001,,45,NE,1920,1920,3301,2,2,1256.863772,1256.863772,3505,NO,26.76,41.68,3,1.48,6106,114.077014,123.768594,133.518877,139.960646,I,Above,Gable,0,5701,Wood,34.22020286,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4015,NJBF000065259,29 N JACKSON AVE,Atlantic City,NJ,39.34655218,-74.46684002,RES3A,3001,,17,NE,1920,1920,3301,2,1,1570.189869,1570.189869,3505,NO,47.35,53.23,3,8.6,6106,113.983117,123.692923,133.434143,139.916037,I,Above,Hip,0,5701,Wood,50.29041799,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4016,NJBF000064627,53 S JACKSON AVE,Atlantic City,NJ,39.34494179,-74.46556061,RES3B,3001,,18,ME,1910,1910,3301,3,1,1854.698123,1854.698123,3504,NO,52.43,59.76,-4,0,6106,114.032123,123.733448,133.476329,139.961491,I,Above,Hip,0,NaN,Wood,56.09514442,0,0,,,,1,1,,0.03,nav,1,1910,3,, 4017,NJBF000065913,51 N KINGSTON AVE,Atlantic City,NJ,39.3484285,-74.46398855,RES3A,3001,,17,NE,1900,1900,3301,2,1,1592.745319,1592.745319,3505,NO,23.19,28.69,3,-0.95,6106,114.02151,123.723754,133.46883,139.932763,I,Above,Hip,0,5701,Wood,25.94314414,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4018,NJBF000066664,58 N ANNAPOLIS AVE,Atlantic City,NJ,39.35041262,-74.46014934,RES3A,3001,,16,NE,1900,1900,3301,2,1,995.9915785,995.9915785,3505,NO,40.08,46.69,3,2.42,6106,114.080328,123.771359,133.521776,139.963685,I,Above,Hip,0,5701,Wood,43.38524738,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4019,NJBF000064797,46 S MONTGOMERY AVE,Atlantic City,NJ,39.34533794,-74.46490681,RES3B,3001,,45,ME,1900,1900,3301,2,2,1770.944025,1770.944025,3504,YES,26.61,40.85,-4,0,6106,114.041311,123.740876,133.484656,139.965778,I,Above,Hip,0,NaN,Wood,33.72758458,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4020,NJBF000065712,4600 WINCHESTER AVE,Atlantic City,NJ,39.34789767,-74.46555724,RES3A,3001,,18,NE,1900,1900,3301,2,1,2888.499806,2888.499806,3505,YES,22.75,29.21,3,-2.87,6106,113.99391,123.701322,133.444263,139.915759,I,Above,Hip,0,5701,Wood,25.97647813,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4021,NJBF000064818,27 S JACKSON AVE,Atlantic City,NJ,39.34539725,-74.46589023,RES3B,3001,,18,ME,1924,1924,3301,2,1,1451.201389,1451.201389,3504,NO,36.25,42.07,-4,0,6106,114.018974,123.722577,133.465038,139.949223,I,Above,Flat,0,NaN,Wood,39.15949914,0,0,,,,1,1,,0.03,nav,1,1924,2,, 4022,NJBF000071264,318 MADISON AVE,Atlantic City,NJ,39.3699885,-74.41710622,RES3D,3004,29,NaN,E,1969,0,3303,2,1,2577.748647,2577.748647,3505,NO,24.1,29.4,3,-1.02,6106,114.771268,124.346401,134.168405,140.355034,I,Above,Hip,0,NaN,Wood,26.74932963,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4023,NJBF000071198,318 MADISON AVE,Atlantic City,NJ,39.36974025,-74.41705781,RES3D,3004,29,NaN,E,1969,0,3303,2,1,3187.240818,3187.240818,3505,NO,19.35,27.71,3,-2.16,6106,114.775198,124.349862,134.172002,140.35919,I,Above,Hip,0,NaN,Wood,23.53149112,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4024,NJBF000071138,318 MADISON AVE,Atlantic City,NJ,39.3695525,-74.416869,RES3D,3004,29,NaN,E,1969,0,3303,2,1,1937.815815,1937.815815,3505,NO,36.29,45.01,3,6.43,6106,114.781421,124.355287,134.17783,140.364705,I,Above,Hip,0,NaN,Wood,40.65118131,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4025,NJBF000067189,107 N TRENTON AVE,Atlantic City,NJ,39.3524985,-74.457071,RES3A,3001,,17,NE,1924,1924,3301,2,1,1382.249528,1382.249528,3505,NO,26.92,39.16,3,3.79,6106,114.121305,123.804323,133.559118,139.980987,I,Above,Flat,0,5701,Wood,33.03551634,0,0,,,,1,1,,0.03,nav,1,1924,2,, 4026,NJBF000066272,65 N DELANCY PL,Atlantic City,NJ,39.34934812,-74.46267832,RES3A,3001,,45,NE,1900,1900,3301,2,2,1183.609042,1183.609042,3505,YES,35.15,48.44,3,6.72,6106,114.038482,123.737356,133.48423,139.939594,I,Above,Gable,0,5701,Wood,41.79636039,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4027,NJBF000071283,116 FOLSOM AVE,Atlantic City,NJ,39.37006365,-74.41515826,RES3D,3004,,28,E,1998,1998,3303,2,2,2436.595887,2436.595887,3505,NO,44.19,52.45,3,5.24,6106,114.811717,124.381385,134.207228,140.38419,I,Above,Hip,0,NaN,Wood,48.32115355,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4028,NJBF000066922,3910 WINCHESTER AVE,Atlantic City,NJ,39.35130606,-74.45852595,RES3A,3001,,45,NE,1921,1921,3301,3,2,2071.221601,2071.221601,3505,YES,32.97,38.05,3,-0.91,6106,114.104531,123.790956,133.54368,139.975934,I,Above,Hip,0,5701,Wood,35.51067089,0,0,,,,1,1,,0.03,nav,1,1921,3,, 4029,NJBF000071883,227 N VERMONT AVE,Atlantic City,NJ,39.37190139,-74.41626465,RES3C,3001,,NaN,ME,1969,0,3301,1,1,1595.777895,1595.777895,3505,NO,25.04,31.6,3,8.32,6106,114.766757,124.341964,134.165277,140.341779,I,Above,Flat,0,NaN,Wood,28.31962128,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4030,NJBF000066920,37 N HARRISBURG AVE,Atlantic City,NJ,39.351305,-74.45751537,RES3A,3001,,17,NE,1998,1998,3301,2,1,1513.027463,1513.027463,3505,NO,25.93,32.33,3,2.67,6106,114.126657,123.809197,133.563399,139.992008,I,Above,Gable,0,5701,Wood,29.1312761,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4031,NJBF000071113,316 BEACH AVE,Atlantic City,NJ,39.3694753,-74.4163373,RES3D,3004,,27,E,1998,1999,3303,2,2,2019.568894,2019.568894,3505,NO,24.51,34.73,3,1.29,6106,114.793622,124.365855,134.189458,140.374005,I,Above,Flat,0,NaN,Wood,29.61927513,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 4032,NJBF000067099,,Atlantic City,NJ,39.35209688,-74.45814264,RES3B,3001,,NaN,E,1969,0,3303,4,1,4932.376799,4932.376799,3505,NO,80.67,85.71,3,4.7,6106,114.102923,123.789321,133.542563,139.970014,I,Above,Hip,0,NaN,Wood,83.18743523,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4033,NJBF000071250,115 N VERMONT AVE,Atlantic City,NJ,39.36991973,-74.41552668,RES3D,3004,,28,E,1998,1998,3303,2,2,2443.642153,2443.642153,3505,NO,36.97,46.1,3,1.93,6106,114.805581,124.376103,134.201238,140.380448,I,Above,Hip,0,NaN,Wood,41.53783521,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4034,NJBF000071120,131 HOUSTON AVE,Atlantic City,NJ,39.36949082,-74.4177179,RES3D,3004,,17,E,2006,2006,3303,2,1,1239.223478,1239.223478,3505,NO,35.55,47.8,3,3.65,6106,114.764103,124.340339,134.161224,140.352379,I,Above,Flat,0,NaN,Wood,41.67580424,0,0,,,,1,1,,0.03,nav,1,2006,2,, 4035,NJBF000071110,24 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36945048,-74.41410658,RES3D,3004,,17,E,1999,1999,3303,2,1,1210.3498,1210.3498,3505,NO,25.54,38.35,3,-1.23,6106,114.841216,124.407068,134.235096,140.408829,I,Above,Gable,0,NaN,Wood,31.94152209,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 4036,NJBF000067306,3705 SUNSET AVE,Atlantic City,NJ,39.35300872,-74.45666455,COM3,3003,639,NaN,ME,1969,0,3401,1,1,3564.636009,3564.636009,3507,NO,18.86,24.23,1,2.47,6106,114.123773,123.806153,133.561516,139.979727,I,Above,Flat,0,NaN,Wood,21.54891929,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4037,NJBF000066491,57 N LACLEDE PL,Atlantic City,NJ,39.34989501,-74.46126162,RES3A,3001,,27,NE,1900,1900,3301,2,2,1851.580466,1851.580466,3505,YES,33.1,47.38,3,-2.08,6106,114.062539,123.756919,133.505769,139.953846,I,Above,Flat,0,5701,Wood,40.24159243,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4038,NJBF000071117,219 GRAMMERCY PL,Atlantic City,NJ,39.36948635,-74.4152317,RES3D,3004,,28,E,1997,1997,3303,2,2,2346.830159,2346.830159,3505,NO,33.02,42.45,3,0.44,6106,114.81694,124.38603,134.211817,140.390954,I,Above,Hip,0,NaN,Wood,37.73547193,0,0,,,,1,1,,0.03,nav,1,1997,2,, 4039,NJBF000071393,128 FOLSOM AVE,Atlantic City,NJ,39.37045752,-74.41542395,RES3D,3004,,28,E,1998,1998,3303,2,2,2328.928615,2328.928615,3505,NO,30.38,37.38,3,-2.98,6106,114.801455,124.372406,134.197656,140.374671,I,Above,Hip,0,NaN,Wood,33.88164505,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4040,NJBF000071233,311 BEACH AVE,Atlantic City,NJ,39.36985548,-74.4162467,RES3D,3004,,28,E,1998,1998,3303,2,2,1911.389484,1911.389484,3505,NO,31.78,41.15,3,8.66,6106,114.791067,124.363556,134.187276,140.370184,I,Above,Gable,0,NaN,Wood,36.46381687,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4041,NJBF000066486,19 N ANNAPOLIS AVE,Atlantic City,NJ,39.34988478,-74.4592789,RES3A,3001,,45,NE,1920,1920,3301,2,3,1830.878834,1830.878834,3505,NO,32.87,42.38,3,-1.98,6106,114.106089,123.792747,133.544429,139.985558,I,Above,Hip,0,5701,Wood,37.62617112,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4042,NJBF000071606,323 MADISON AVE,Atlantic City,NJ,39.37104895,-74.41737117,EDU1,3004,,NaN,E,1969,0,3401,1,1,71911.25093,71911.25093,3507,NO,13.79,19.96,1,0.47,6106,114.753218,124.3305,134.151791,140.336299,I,Above,Flat,0,NaN,Wood,16.87832275,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4043,NJBF000071321,306 MADISON AVE,Atlantic City,NJ,39.37020675,-74.41646618,RES3D,3004,,28,E,1900,1900,3303,2,1,2234.01516,2234.01516,3505,NO,41.31,52.76,3,3.61,6106,114.782288,124.355875,134.179104,140.361955,I,Above,Hip,0,NaN,Wood,47.03263513,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4044,NJBF000071181,319 BEACH AVE,Atlantic City,NJ,39.36968319,-74.41665073,RES3D,3004,,17,E,1969,1920,3303,2,2,1204.378475,1204.378475,3505,NO,23.99,34.44,3,-2.22,6106,114.784511,124.357927,134.180878,140.366284,I,Above,Hip,0,NaN,Wood,29.2117956,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4045,NJBF000071121,128 N RHODE ISLAND AVE,Atlantic City,NJ,39.369491,-74.41731257,RES3D,3004,,28,E,2000,2000,3303,2,2,2146.93393,2146.93393,3505,NO,34.67,48.55,3,7.81,6106,114.772708,124.347772,134.169452,140.358661,I,Above,Hip,0,NaN,Wood,41.60667718,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 4046,NJBF000070977,106 N RHODE ISLAND AVE,Atlantic City,NJ,39.36903665,-74.41701084,RES3D,3004,,17,E,2000,2000,3303,2,1,1559.696731,1559.696731,3505,NO,29.92,40.37,3,-1.63,6106,114.784466,124.358039,134.180383,140.369581,I,Above,Flat,0,NaN,Wood,35.14090859,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 4047,NJBF000070949,118 HOUSTON AVE,Atlantic City,NJ,39.36895475,-74.41774422,RES3D,3004,,37,E,1991,1991,3303,2,1,1259.671486,1259.671486,3505,NO,30.01,36.71,3,7.52,6106,114.769858,124.345442,134.166361,140.359354,I,Above,Gable,0,NaN,Wood,33.36162631,0,0,,,,1,1,,0.03,nav,1,1991,2,, 4048,NJBF000071197,212 DYLAN DR,Atlantic City,NJ,39.36974016,-74.41516724,RES3D,3004,,17,E,1998,1998,3303,2,1,1277.112909,1277.112909,3505,NO,37.26,47.66,3,4.86,6106,114.815332,124.384585,134.210462,140.388484,I,Above,Gable,0,NaN,Wood,42.46057074,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4049,NJBF000071011,119 HOUSTON AVE,Atlantic City,NJ,39.36913572,-74.41743809,RES3D,3004,,17,E,2005,2005,3303,1,1,1693.857012,1693.857012,3505,NO,20.76,25.95,3,7.42,6106,114.774229,124.349173,134.170663,140.361606,I,Above,Hip,0,NaN,Wood,23.35128878,0,0,,,,1,1,,0.03,nav,1,2005,1,, 4050,NJBF000071137,310 BEACH AVE,Atlantic City,NJ,39.36955237,-74.41614373,RES3D,3004,,27,E,1998,1998,3303,2,2,1869.712553,1869.712553,3505,NO,30.11,41.64,3,-0.77,6106,114.796814,124.368598,134.19257,140.375937,I,Above,Hip,0,NaN,Wood,35.87582147,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4051,NJBF000071018,,Atlantic City,NJ,39.36914979,-74.41652092,RES3D,3004,,NaN,E,1969,0,3303,4,1,1546.262478,1546.262478,3505,NO,60.77,72.87,3,1.98,6106,114.793541,124.365857,134.189148,140.375615,I,Above,Hip,0,NaN,Wood,66.82165724,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4052,NJBF000071077,102 N VERMONT AVE,Atlantic City,NJ,39.36933344,-74.41559864,RES3D,3004,,27,E,1998,1998,3303,2,2,2065.555305,2065.555305,3505,NO,29.85,40.44,3,4.66,6106,114.810956,124.380881,134.205964,140.387372,I,Above,Hip,0,NaN,Wood,35.14414187,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4053,NJBF000071045,309 GRAMMERCY PL,Atlantic City,NJ,39.36921896,-74.41593521,RES3D,3004,,33,E,1900,1900,3303,2,1,1221.064196,1221.064196,3505,NO,33.24,46.29,3,3.66,6106,114.805168,124.375897,134.200333,140.383736,I,Above,Flat,0,NaN,Wood,39.76621617,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4054,NJBF000071026,313 GRAMMERCY PL,Atlantic City,NJ,39.36917311,-74.41610877,RES3D,3004,,33,E,1900,1900,3303,2,1,1384.316019,1384.316019,3505,NO,39.07,52.61,3,2.6,6106,114.802017,124.373181,134.197281,140.381674,I,Above,Gable,0,NaN,Wood,45.84078404,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4055,NJBF000071041,311 GRAMMERCY PL,Atlantic City,NJ,39.36921594,-74.41603543,RES3D,3004,,45,E,1900,1900,3303,2,2,1866.269411,1866.269411,3505,NO,36.42,46.93,3,-2.2,6106,114.803081,124.374092,134.198332,140.38223,I,Above,Flat,0,NaN,Wood,41.67398622,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4056,NJBF000071060,307 GRAMMERCY PL,Atlantic City,NJ,39.3692579,-74.41585066,RES3D,3004,,45,E,1900,1900,3303,2,2,1395.120363,1395.120363,3505,NO,38.51,53.23,3,4.61,6106,114.806491,124.377034,134.20163,140.384501,I,Above,Flat,0,NaN,Wood,45.87025843,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4057,NJBF000071000,317 GRAMMERCY PL,Atlantic City,NJ,39.36909431,-74.41625361,RES3D,3004,,45,E,1900,1900,3303,2,2,1331.227906,1331.227906,3505,NO,24.61,38.53,3,3.18,6106,114.799869,124.371341,134.195166,140.380514,I,Above,Gable,0,NaN,Wood,31.5691492,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4058,NJBF000070891,32 N VERMONT AVE,Atlantic City,NJ,39.3687759,-74.41528668,RES3D,3004,,45,E,1900,1900,3303,2,3,2075.237015,2075.237015,3505,NO,32.99,46.54,3,3.74,6106,114.824139,124.392399,134.21818,140.399811,I,Above,Gable,0,NaN,Wood,39.768884,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4059,NJBF000070839,415 GRAMMERCY PL,Atlantic City,NJ,39.36858926,-74.41740206,RES3D,3004,,17,E,1900,1900,3303,2,1,1221.023625,1221.023625,3505,NO,44.83,54.01,3,8.07,6106,114.781441,124.355527,134.177171,140.369683,I,Above,Hip,0,NaN,Wood,49.41616933,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4060,NJBF000070551,9 BELLE HAVEN CT,Atlantic City,NJ,39.36755545,-74.41333596,RES3D,3004,,27,E,1900,1900,3303,2,2,937.0102795,937.0102795,3505,NO,24.34,35.23,3,-1.22,6106,114.87995,124.440902,134.270704,140.446473,I,Above,Flat,0,NaN,Wood,29.78407174,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4061,NJBF000070558,313 ATLANTIC AVE,Atlantic City,NJ,39.36759243,-74.4151491,RES3D,3004,,17,E,1900,1900,3303,3,1,2128.609619,2128.609619,3505,NO,40.82,49.08,3,-1.59,6106,114.841072,124.407241,134.233446,140.418097,I,Above,Flat,0,NaN,Wood,44.95154257,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4062,NJBF000070512,15 BELLE HAVEN CT,Atlantic City,NJ,39.3674275,-74.41325732,RES3D,3004,,33,E,1900,1900,3303,2,1,1289.612297,1289.612297,3505,YES,32.53,44.97,3,0.8,6106,114.883143,124.443682,134.273654,140.449421,I,Above,Flat,0,NaN,Wood,38.74699248,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4063,NJBF000070580,214 ATLANTIC AVE,Atlantic City,NJ,39.36767562,-74.41366685,RES3D,3004,29,NaN,E,1969,0,3303,3,1,3298.256813,3298.256813,3505,YES,64.52,75.32,3,7.68,6106,114.871501,124.433569,134.2627,140.439746,I,Above,Flat,0,NaN,Wood,69.92052682,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4064,NJBF000070598,212 ATLANTIC AVE,Atlantic City,NJ,39.36774735,-74.41349002,RES3D,3004,29,NaN,E,1969,0,3303,3,1,3355.259871,3355.259871,3505,YES,36.6,44.65,3,0.26,6106,114.87441,124.436081,134.265556,140.441502,I,Above,Flat,0,NaN,Wood,40.62552738,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4065,NJBF000069742,1024 ATLANTIC AVE,Atlantic City,NJ,39.363568,-74.42380175,COM1,3003,100,NaN,ME,1969,0,3401,2,1,14680.37988,14680.37988,3507,YES,34.68,45.02,1,2.18,6106,114.704866,124.290782,134.100743,140.340145,I,Above,Flat,0,NaN,Wood,39.84640622,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4066,NJBF000068117,1 S TEXAS AVE,Atlantic City,NJ,39.35570037,-74.44272772,RES3A,3004,,27,NE,1900,1900,3301,2,2,2041.532383,2041.532383,3505,YES,36.51,50.89,3,-0.96,6106,114.393555,124.029436,133.806519,140.158818,I,Above,Gable,0,5701,Wood,43.69751011,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4067,NJBF000068472,2201 PACIFIC AVE,Atlantic City,NJ,39.35687064,-74.43822095,COM1,3003,212,NaN,ME,1969,0,3401,1,1,107004.5633,107004.5633,3507,NO,15.99,24.37,1,0.37,6106,114.476585,124.098761,133.883348,140.211822,I,Above,Flat,0,NaN,Wood,20.18113319,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4068,NJBF000069705,15 S PENNSYLVANIA AVE,Atlantic City,NJ,39.36311879,-74.42347742,COM1,3003,100,NaN,ME,1969,0,3401,2,1,7297.860087,7297.860087,3507,NO,25.84,35.77,1,2.18,6106,114.717214,124.30143,134.112038,140.351367,I,Above,Flat,0,NaN,Wood,30.8025398,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4069,NJBF000066662,3907 VENTNOR AVE,Atlantic City,NJ,39.35040743,-74.45765749,COM1,3004,29,NaN,ME,1969,0,3401,3,1,2889.645491,2889.645491,3507,YES,31.68,43.61,1,-0.04,6106,114.134933,123.816336,133.570358,140.003332,I,Above,Flat,0,NaN,Wood,37.64595645,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4070,NJBF000066685,3905 VENTNOR AVE,Atlantic City,NJ,39.35046781,-74.45750771,COM1,3004,29,NaN,ME,1969,0,3401,3,1,3460.705988,3460.705988,3507,YES,40.31,53.93,1,-0.42,6106,114.137416,123.818363,133.572602,140.004766,I,Above,Flat,0,NaN,Wood,47.12224836,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4071,NJBF000066665,3812 VENTNOR AVE,Atlantic City,NJ,39.35041492,-74.45647402,COM1,3004,738,NaN,ME,1969,0,3401,3,1,7029.382014,7029.382014,3507,YES,47.96,55.15,1,-0.08,6106,114.16069,123.83758,133.593339,140.021876,I,Above,Flat,0,NaN,Wood,51.55322247,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4072,NJBF000066788,45 N DOVER AVE,Atlantic City,NJ,39.35078711,-74.45852026,RES3A,3001,,47,NE,1909,1909,3301,2,2,2760.513728,2760.513728,3505,YES,32.08,42.81,3,3.42,6106,114.111235,123.796671,133.549425,139.983909,I,Above,Flat,0,5701,Wood,37.44773062,0,0,,,,1,1,,0.03,nav,1,1909,2,, 4073,NJBF000066841,3805 VENTNOR AVE,Atlantic City,NJ,39.35097283,-74.45638137,COM1,3004,565,NaN,ME,1969,0,3401,3,1,7893.28339,7893.28339,3507,YES,34.98,47.2,1,0.91,6106,114.155646,123.833234,133.589117,140.014954,I,Above,Hip,0,NaN,Wood,41.08720621,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4074,NJBF000066810,22 N HARRISBURG AVE,Atlantic City,NJ,39.35085617,-74.45766893,RES1,3001,,17,NE,2003,2003,3101,2,1,1437.502224,1437.502224,3505,NO,33.23,42.86,3,7.44,6106,114.128974,123.811268,133.565261,139.996358,I,Above,Gable,0,5701,Wood,38.04782266,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 4075,NJBF000068031,11 S TEXAS AVE,Atlantic City,NJ,39.35540047,-74.44249288,RES3A,3004,,33,NE,1910,1910,3301,4,1,1102.773878,1102.773878,3505,YES,82.74,92.55,3,6.19,6106,114.402368,124.036897,133.814381,140.166798,I,Above,Flat,0,5701,Wood,87.64588685,0,0,,,,1,1,,0.03,nav,1,1910,4,, 4076,NJBF000066682,16 S TRENTON AVE,Atlantic City,NJ,39.35046343,-74.45584104,RES3A,3001,,17,NE,1925,1925,3301,2,1,1189.19466,1189.19466,3504,NO,24.11,34.27,-4,0,6106,114.17391,123.848479,133.605172,140.031115,I,Above,Hip,0,5701,Wood,29.18912616,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4077,NJBF000068066,4 S TEXAS AVE,Atlantic City,NJ,39.3555275,-74.44309315,RES3A,3004,,45,NE,1900,1900,3301,2,3,3566.105198,3566.105198,3505,YES,32.77,41.69,3,5.66,6106,114.387778,124.024653,133.801142,140.155637,I,Above,Flat,0,5701,Wood,37.23195198,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4078,NJBF000066782,20 N HARRISBURG AVE,Atlantic City,NJ,39.35075503,-74.45789672,RES3A,3001,,17,NE,2003,2003,3301,2,1,1377.043187,1377.043187,3505,NO,32.16,44.88,3,1.94,6106,114.125268,123.808249,133.561911,139.994274,I,Above,Gable,0,5701,Wood,38.51825443,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 4079,NJBF000066718,12 S TRENTON AVE,Atlantic City,NJ,39.35056805,-74.45595815,COM1,3004,29,NaN,ME,1969,0,3401,3,1,1146.864101,1146.864101,3507,YES,37,47.1,1,2.84,6106,114.170022,123.845235,133.601753,140.027701,I,Above,Flat,0,NaN,Wood,42.04696475,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4080,NJBF000065261,28 N NEWTON AVE,Atlantic City,NJ,39.3465591,-74.46658053,RES3A,3001,,17,NE,1911,1911,3301,2,1,1037.038924,1037.038924,3505,NO,30.13,40.32,3,6.51,6106,113.988714,123.697499,133.439064,139.920102,I,Above,Hip,0,5701,Wood,35.22571111,0,0,,,,1,1,,0.03,nav,1,1911,2,, 4081,NJBF000065285,30 N NEWTON AVE,Atlantic City,NJ,39.3466261,-74.46665179,RES3A,3001,,17,NE,1920,1920,3301,2,1,1401.847452,1401.847452,3505,YES,30.17,41.15,3,3.61,6106,113.986288,123.695493,133.436965,139.917914,I,Above,Hip,0,5701,Wood,35.6600234,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4082,NJBF000066606,3900 VENTNOR AVE,Atlantic City,NJ,39.35021239,-74.45710713,COM1,3004,100,NaN,ME,1969,0,3401,2,1,2076.810404,2076.810404,3507,NO,33.52,38.83,1,2.91,6106,114.149435,123.828359,133.58319,140.014955,I,Above,Gable,0,NaN,Wood,36.1743109,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4083,NJBF000066269,4022 VENTNOR AVE,Atlantic City,NJ,39.3493374,-74.45879756,COM1,3004,100,NaN,ME,1969,0,3401,3,1,1387.215211,1387.215211,3507,NO,48.93,58.83,1,2.23,6106,114.1236,123.807343,133.559726,140.001478,I,Above,Hip,0,NaN,Wood,53.88132536,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4084,NJBF000066089,24 N RALEIGH AVE,Atlantic City,NJ,39.34887749,-74.46193705,RES3A,3001,29,NaN,NE,1969,0,3301,3,1,2037.609237,2037.609237,3505,NO,48,59.47,3,-0.79,6106,114.060747,123.755801,133.503723,139.958675,I,Above,Flat,0,5701,Wood,53.73473468,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4085,NJBF000066350,19 S DOVER AVE,Atlantic City,NJ,39.349536,-74.45756883,RES3A,3001,,16,NE,1900,1900,3301,1,1,1083.344464,1083.344464,3504,NO,16.98,26.12,-4,0,6106,114.147941,123.827337,133.5815,140.017854,I,Above,Flat,0,5701,Wood,21.55182476,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4086,NJBF000066323,27 S DOVER AVE,Atlantic City,NJ,39.34946751,-74.45752116,RES3A,3001,,45,NE,1900,1900,3301,2,2,1438.08474,1438.08474,3504,NO,21.38,30.22,-4,0,6106,114.149857,123.828938,133.583171,140.019633,I,Above,Flat,0,5701,Wood,25.7985471,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4087,NJBF000066569,17 S HARRISBURG AVE,Atlantic City,NJ,39.35010401,-74.45656548,RES3A,3001,,45,NE,1900,1900,3301,1,2,1677.372794,1677.372794,3504,NO,17.54,22.92,-4,0,6106,114.162653,123.839298,133.594927,140.025115,I,Above,Hip,0,5701,Wood,20.22986635,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4088,NJBF000066547,39 N WINDSOR AVE,Atlantic City,NJ,39.3500275,-74.4600305,RES3A,3001,,45,NE,1900,1900,3301,2,2,1128.857232,1128.857232,3505,NO,30.64,44.74,3,-1.63,6106,114.087807,123.777651,133.52825,139.971438,I,Above,Flat,0,5701,Wood,37.69053186,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4089,NJBF000066132,35 S PARKER AVE,Atlantic City,NJ,39.349006,-74.4579345,RES3A,3001,,37,NE,1900,1900,3301,2,1,1158.948863,1158.948863,3504,YES,32.07,37.74,-4,0,6106,114.146726,123.826493,133.580125,140.02009,I,Above,Gable,0,5701,Wood,34.90855902,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4090,NJBF000066568,21 TRENTON TERR,Atlantic City,NJ,39.35010351,-74.45591083,RES3A,3001,,17,NE,1900,1900,3301,2,1,798.4164936,798.4164936,3504,NO,34.11,46.12,-4,0,6106,114.176942,123.851092,133.607685,140.035393,I,Above,Gable,0,5701,Wood,40.11644413,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4091,NJBF000066292,36 S ELBERON AVE,Atlantic City,NJ,39.34939541,-74.45718042,RES3A,3001,,45,NE,1915,1915,3301,2,3,1385.78622,1385.78622,3504,NO,26.96,34.59,-4,0,6106,114.158243,123.835873,133.590604,140.026093,I,Above,Hip,0,5701,Wood,30.77369434,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4092,NJBF000066354,28 S ELBERON AVE,Atlantic City,NJ,39.34955212,-74.45733384,RES3A,3001,,45,NE,1925,1925,3301,2,3,1737.318281,1737.318281,3504,NO,24.46,33.58,-4,0,6106,114.152874,123.8314,133.585905,140.021312,I,Above,Hip,0,5701,Wood,29.01643571,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4093,NJBF000066100,48 S DOVER AVE,Atlantic City,NJ,39.34890784,-74.45752549,RES3A,3001,,45,NE,1920,1920,3301,2,3,1292.841177,1292.841177,3504,YES,30.86,38.84,-4,0,6106,114.156921,123.834923,133.589149,140.027991,I,Above,Flat,0,5701,Wood,34.85112018,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4094,NJBF000066295,22 S DOVER AVE,Atlantic City,NJ,39.34941033,-74.45792841,RES3A,3001,,45,NE,1925,1925,3301,3,2,2152.115254,2152.115254,3504,YES,43.7,52.22,-4,0,6106,114.141698,123.82223,133.575871,140.014099,I,Above,Hip,0,5701,Wood,47.96275451,0,0,,,,1,1,,0.03,nav,1,1925,3,, 4095,NJBF000066596,19 TRENTON TERR,Atlantic City,NJ,39.35019647,-74.45592809,RES3A,3001,,16,NE,1900,1900,3301,1,1,1071.753999,1071.753999,3504,NO,11.22,17.44,-4,0,6106,114.175401,123.849792,133.60636,140.033748,I,Above,Hip,0,5701,Wood,14.33054118,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4096,NJBF000066579,45 N WINDSOR AVE,Atlantic City,NJ,39.35013253,-74.46010808,RES3A,3001,,45,NE,1920,1920,3301,2,2,1103.418024,1103.418024,3505,NO,37,45.36,3,5.22,6106,114.084785,123.775128,133.525613,139.968611,I,Above,Hip,0,5701,Wood,41.18415702,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4097,NJBF000066282,49 N RALEIGH AVE,Atlantic City,NJ,39.34936048,-74.46177355,RES3A,3001,,27,NE,1900,1900,3301,2,2,1692.682781,1692.682781,3505,YES,23.64,31.67,3,2.34,6106,114.058144,123.753498,133.501639,139.95387,I,Above,Flat,0,5701,Wood,27.65611725,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4098,NJBF000065903,47 S WINDSOR AVE,Atlantic City,NJ,39.34840548,-74.45862487,RES3A,3001,,17,NE,1900,1900,3301,1,1,1688.543258,1688.543258,3505,NO,16.47,27.58,3,5.46,6106,114.139307,123.820551,133.573179,140.018279,I,Above,Gable,0,5701,Wood,22.02385628,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4099,NJBF000065870,4311 VENTNOR AVE,Atlantic City,NJ,39.34832005,-74.46182797,RES3A,3001,565,NaN,NE,1969,0,3301,2,1,4189.605887,4189.605887,3505,YES,33.63,48,3,7.82,6106,114.070274,123.763805,133.511884,139.96894,I,Above,Flat,0,5701,Wood,40.81721002,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4100,NJBF000065888,31 S RICHMOND AVE,Atlantic City,NJ,39.34836192,-74.45956168,RES3A,3001,,17,NE,1900,1900,3301,1,1,1670.876785,1670.876785,3505,NO,18.81,29.04,3,0.89,6106,114.119357,123.804142,133.555427,140.004176,I,Above,Hip,0,5701,Wood,23.92554072,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4101,NJBF000065895,4025 ATLANTIC AVE,Atlantic City,NJ,39.34837725,-74.45809525,RES3A,3001,,NaN,NE,1969,0,3301,2,1,4124.366514,4124.366514,3504,NO,25.25,40.1,-4,0,6106,114.151257,123.830401,133.583793,140.027025,I,Above,Flat,0,5701,Wood,32.67752237,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4102,NJBF000065426,8 N PLAZA PL,Atlantic City,NJ,39.3470395,-74.4657424,RES3A,3001,,17,NE,1924,1924,3301,2,1,1857.426775,1857.426775,3505,YES,33.37,43.65,3,-1.25,6106,114.000913,123.707333,133.450028,139.926117,I,Above,Hip,0,5701,Wood,38.5103354,0,0,,,,1,1,,0.03,nav,1,1924,2,, 4103,NJBF000065452,5 N PLAZA PL,Atlantic City,NJ,39.34713314,-74.46523781,RES3A,3001,,19,NE,1900,1900,3301,2,1,1544.886065,1544.886065,3505,YES,41.7,47.51,3,3.54,6106,114.010774,123.715378,133.458755,139.932767,I,Above,Gable,0,5701,Wood,44.60402669,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4104,NJBF000065950,38 S WINDSOR AVE,Atlantic City,NJ,39.34852184,-74.45927635,RES3A,3001,,45,NE,1900,1900,3301,3,4,1066.109221,1066.109221,3505,YES,47.7,61.43,3,2.51,6106,114.123565,123.807558,133.559254,140.006264,I,Above,Hip,0,5701,Wood,54.56815129,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4105,NJBF000065909,24 N DELANCY PL,Atlantic City,NJ,39.34842206,-74.46249393,RES3A,3001,,45,NE,1920,1920,3301,2,2,1749.812221,1749.812221,3505,NO,29.04,42.24,3,-0.72,6106,114.05437,123.750714,133.497862,139.956772,I,Above,Hip,0,5701,Wood,35.6395578,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4106,NJBF000065886,20 N DELANCY PL,Atlantic City,NJ,39.34835942,-74.46241797,RES3A,3001,,45,NE,1910,1910,3301,2,2,1322.857633,1322.857633,3505,NO,24.83,36.48,3,-2.88,6106,114.056844,123.752765,133.500019,139.958951,I,Above,Hip,0,5701,Wood,30.65572258,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4107,NJBF000065374,17 S ABERDEEN PL,Atlantic City,NJ,39.34688825,-74.46325871,RES3A,3001,,18,NE,1900,1900,3301,2,1,1624.665412,1624.665412,3505,NO,37.22,49.36,3,5.76,6106,114.057349,123.753619,133.499697,139.968135,I,Above,Hip,0,5701,Wood,43.29136231,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4108,NJBF000065351,60 S DELANCY PL,Atlantic City,NJ,39.34681063,-74.46118656,RES3A,3001,,18,NE,1900,1900,3301,2,1,2882.682003,2882.682003,3505,YES,38.86,46.39,3,8.41,6106,114.103744,123.791722,133.540676,140.002077,I,Above,Hip,0,5701,Wood,42.62388622,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4109,NJBF000065528,9 N PLAZA PL,Atlantic City,NJ,39.34734665,-74.46545849,RES3A,3001,,18,NE,1915,1915,3301,2,1,2190.851902,2190.851902,3505,YES,24.64,39.4,3,0.6,6106,114.003183,123.709096,133.452175,139.925915,I,Above,Hip,0,5701,Wood,32.02392406,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4110,NJBF000065930,25 S RICHMOND AVE,Atlantic City,NJ,39.34847654,-74.45962851,RES3A,3001,,17,NE,1910,1910,3301,2,1,1510.719678,1510.719678,3505,NO,32.8,38.34,3,8.59,6106,114.116416,123.801689,133.552879,140.001378,I,Above,Hip,0,5701,Wood,35.57300639,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4111,NJBF000065964,19 S RICHMOND AVE,Atlantic City,NJ,39.34856986,-74.45970372,RES3A,3001,,45,NE,1921,1921,3301,3,2,1799.606181,1799.606181,3505,NO,56.9,63.48,3,1.82,6106,114.113583,123.799331,133.550414,139.998785,I,Above,Flat,0,5701,Wood,60.18946261,0,0,,,,1,1,,0.03,nav,1,1921,3,, 4112,NJBF000065472,40 N MONTGOMERY AVE,Atlantic City,NJ,39.34717374,-74.46634789,RES3A,3001,,27,NE,1960,1960,3301,2,2,1791.923351,1791.923351,3505,YES,30.49,41.94,3,5.87,6106,113.985877,123.694985,133.436865,139.914273,I,Above,Flat,0,5701,Wood,36.21741534,0,0,,,,1,1,,0.03,nav,1,1960,2,, 4113,NJBF000065436,48 S DELANCY PL,Atlantic City,NJ,39.34707509,-74.46140553,RES3A,3001,,18,NE,1900,1900,3301,3,1,1817.249433,1817.249433,3505,YES,56.11,62.69,3,7.25,6106,114.09554,123.784915,133.53357,139.994614,I,Above,Hip,0,5701,Wood,59.39947372,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4114,NJBF000065469,42 S DELANCY PL,Atlantic City,NJ,39.34716706,-74.46150656,RES3A,3001,,45,NE,1925,1925,3301,3,3,1335.971304,1335.971304,3505,YES,38.47,51.24,3,2.36,6106,114.09214,123.782098,133.530614,139.99162,I,Above,Hip,0,5701,Wood,44.85596342,0,0,,,,1,1,,0.03,nav,1,1925,3,, 4115,NJBF000065428,19 S KINGSTON AVE,Atlantic City,NJ,39.34704873,-74.46285158,RES3A,3001,,18,NE,1900,1900,3301,2,1,1199.667342,1199.667342,3505,NO,28.84,36.65,3,-0.61,6106,114.064191,123.759188,133.50583,139.972129,I,Above,Hip,0,5701,Wood,32.74617841,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4116,NJBF000065509,12 N PLAZA PL,Atlantic City,NJ,39.34728358,-74.46593292,RES3A,3001,,17,NE,1915,1915,3301,2,1,1341.011453,1341.011453,3505,YES,29.31,40.61,3,6.55,6106,113.993569,123.701245,133.443683,139.91925,I,Above,Gable,0,5701,Wood,34.95836892,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4117,NJBF000065463,10 N PLAZA PL,Atlantic City,NJ,39.34715673,-74.46587509,RES3A,3001,,17,NE,1916,1916,3301,2,1,2314.809129,2314.809129,3505,NO,37.78,45.24,3,2.88,6106,113.996482,123.70367,133.446186,139.922159,I,Above,Hip,0,5701,Wood,41.51072583,0,0,,,,1,1,,0.03,nav,1,1916,2,, 4118,NJBF000065501,6 N TALLAHASSEE AVE,Atlantic City,NJ,39.347264,-74.46496733,RES3A,3001,,18,NE,1900,1900,3301,2,1,1586.496847,1586.496847,3505,NO,46.83,59.51,3,8.82,6106,114.01503,123.718824,133.462569,139.935084,I,Above,Gable,0,5701,Wood,53.17333845,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4119,NJBF000065474,6 S BARTRAM AVE,Atlantic City,NJ,39.34717413,-74.46257016,RES3A,3001,,18,NE,1900,1900,3301,1,1,2155.82795,2155.82795,3505,NO,25.87,40.11,3,6.94,6106,114.068759,123.762901,133.509936,139.97469,I,Above,Flat,0,5701,Wood,32.99161925,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4120,NJBF000065970,34 N DELANCY PL,Atlantic City,NJ,39.34858349,-74.46259683,RES3A,3001,,45,NE,1920,1920,3301,2,2,1502.625375,1502.625375,3505,YES,30.83,44.83,3,8.2,6106,114.050047,123.747113,133.494116,139.952656,I,Above,Flat,0,5701,Wood,37.82976247,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4121,NJBF000065410,41 S BARTRAM AVE,Atlantic City,NJ,39.34698206,-74.46187837,RES3A,3001,,45,NE,1900,1900,3301,2,2,1639.957406,1639.957406,3505,NO,26,34.87,3,2.24,6106,114.0864,123.777434,133.525427,139.988576,I,Above,Hip,0,5701,Wood,30.43443433,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4122,NJBF000065440,4511 VENTNOR AVE,Atlantic City,NJ,39.34708937,-74.46438679,RES3A,3001,,18,NE,1912,1912,3301,2,1,2112.541129,2112.541129,3505,YES,39.78,54.03,3,7.72,6106,114.030015,123.731153,133.475687,139.947073,I,Above,Gable,0,5701,Wood,46.90383351,0,0,,,,1,1,,0.03,nav,1,1912,2,, 4123,NJBF000065527,19 N TALLAHASSEE AVE,Atlantic City,NJ,39.34734262,-74.46456671,RES3A,3001,,18,NE,1900,1900,3301,3,1,1804.472563,1804.472563,3505,YES,31.13,43.61,3,-2.54,6106,114.022788,123.725155,133.469445,139.94027,I,Above,Gable,0,5701,Wood,37.36747253,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4124,NJBF000065849,4 N DELANCY PL,Atlantic City,NJ,39.34826995,-74.46237009,RES3A,3001,,45,NE,1921,1921,3301,2,2,1592.912204,1592.912204,3505,NO,31.58,40.77,3,4.33,6106,114.059038,123.754595,133.501916,139.961081,I,Above,Hip,0,5701,Wood,36.17236821,0,0,,,,1,1,,0.03,nav,1,1921,2,, 4125,NJBF000065407,11 S ABERDEEN PL,Atlantic City,NJ,39.3469778,-74.46331924,RES3A,3001,,17,NE,1900,1900,3301,2,1,1851.970358,1851.970358,3505,NO,28.64,34.47,3,1.02,6106,114.054871,123.751562,133.497559,139.9658,I,Above,Hip,0,5701,Wood,31.55558202,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4126,NJBF000065311,27 S ABERDEEN PL,Atlantic City,NJ,39.34670552,-74.46312025,RES3A,3001,,18,NE,1900,1900,3301,2,1,1631.983423,1631.983423,3505,NO,32.3,45.1,3,-1.88,6106,114.062748,123.758098,133.504363,139.973131,I,Above,Hip,0,5701,Wood,38.69921473,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4127,NJBF000066152,25 S PARKER AVE,Atlantic City,NJ,39.34906425,-74.45805469,RES3A,3001,,45,NE,1930,1930,3301,3,2,686.6855682,686.6855682,3504,YES,32.17,45.7,-4,0,6106,114.143339,123.823685,133.577142,140.017313,I,Above,Hip,0,5701,Wood,38.93853157,0,0,,,,1,1,,0.03,nav,1,1930,3,, 4128,NJBF000065354,1 N PLAZA PL,Atlantic City,NJ,39.34682266,-74.46503248,RES3A,3001,,45,NE,1921,1921,3301,2,2,1692.789046,1692.789046,3505,YES,38.08,51.3,3,8.72,6106,114.019301,123.722455,133.466108,139.940869,I,Above,Flat,0,5701,Wood,44.69291373,0,0,,,,1,1,,0.03,nav,1,1921,2,, 4129,NJBF000065395,4502 VENTNOR AVE,Atlantic City,NJ,39.34694434,-74.4638487,RES1,3001,,17,NE,1900,1900,3102,2,1,1955.88079,1955.88079,3504,YES,30.78,42.16,-4,0,6106,114.043688,123.742402,133.487671,139.95789,I,Above,Hip,0,5701,Wood,36.47295315,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4130,NJBF000065431,37 S BARTRAM AVE,Atlantic City,NJ,39.34706296,-74.46196491,RES3A,3001,,17,NE,1900,1900,3301,2,1,1580.115363,1580.115363,3505,NO,30.17,44.12,3,-1.17,6106,114.083449,123.774989,133.522863,139.985966,I,Above,Gable,0,5701,Wood,37.14878235,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4131,NJBF000068611,44 N TEXAS AVE,Atlantic City,NJ,39.3572445,-74.444173,RES3B,3001,,17,ME,1900,1900,3301,2,1,871.8107392,871.8107392,3505,NO,20.53,32.41,3,-0.91,6106,114.343145,123.986751,133.761355,140.113856,I,Above,Flat,0,NaN,Wood,26.47191802,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4132,NJBF000065221,16 S TALLAHASSEE AVE,Atlantic City,NJ,39.34644181,-74.46437235,RES1,3001,,18,NE,1920,1920,3102,3,1,2977.083422,2977.083422,3504,YES,46.72,59.57,-4,0,6106,114.038711,123.738464,133.483007,139.957288,I,Above,Hip,0,5701,Wood,53.14099606,0,0,,,,1,1,,0.03,nav,1,1920,3,, 4133,NJBF000068170,29 N STENTON PL,Atlantic City,NJ,39.35588771,-74.44681847,RES3B,3001,,45,ME,1900,1900,3301,3,4,2542.729065,2542.729065,3504,YES,40.27,46.76,-4,0,6106,114.302484,123.953299,133.723706,140.092281,I,Above,Hip,0,NaN,Wood,43.51788717,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4134,NJBF000067443,3201 ATLANTIC AVE,Atlantic City,NJ,39.35350415,-74.45027696,COM1,3003,738,NaN,ME,1969,0,3401,3,1,3138.422581,3138.422581,3507,YES,44.06,56.39,1,-0.53,6106,114.256928,123.916234,133.681298,140.073183,I,Above,Flat,0,NaN,Wood,50.22424066,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4135,NJBF000065183,4709 VENTNOR AVE,Atlantic City,NJ,39.34633306,-74.46595983,RES3A,3001,,17,NE,1957,1957,3301,2,1,1098.630491,1098.630491,3505,NO,31.62,41.28,3,7.68,6106,114.005277,123.711117,133.453511,139.933596,I,Above,Hip,0,5701,Wood,36.44847486,0,0,,,,1,1,,0.03,nav,1,1957,2,, 4136,NJBF000065168,2 S PLAZA PL,Atlantic City,NJ,39.34629701,-74.4651562,RES1,3001,,18,NE,1920,1920,3102,3,1,2543.900684,2543.900684,3504,YES,53.03,62.3,-4,0,6106,114.02339,123.725954,133.46943,139.947021,I,Above,Hip,0,5701,Wood,57.66483325,0,0,,,,1,1,,0.03,nav,1,1920,3,, 4137,NJBF000065122,10 S PLAZA PL,Atlantic City,NJ,39.34618866,-74.46509825,RES1,3001,,18,NE,1900,1900,3102,3,1,1413.594214,1413.594214,3504,NO,45.49,60.21,-4,0,6106,114.026063,123.728172,133.471724,139.949616,I,Above,Hip,0,5701,Wood,52.85053968,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4138,NJBF000065397,25 S KINGSTON AVE,Atlantic City,NJ,39.34694571,-74.46275759,RES3A,3001,,45,NE,1900,1900,3301,2,4,2016.391822,2016.391822,3505,NO,30.84,41.39,3,4.98,6106,114.067582,123.761998,133.508768,139.975197,I,Above,Flat,0,5701,Wood,36.11460918,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4139,NJBF000070365,327 N NEW YORK AVE,Atlantic City,NJ,39.3668485,-74.43267506,RES3C,3003,,45,E,1920,1920,3305,2,2,1615.508256,1615.508256,3507,YES,27.43,33.27,1,2,6106,114.475585,124.094218,133.887355,140.15568,I,Above,Flat,0,NaN,Wood,30.34914124,0,0,,,,2,2,,0.03,nav,1,1920,2,, 4140,NJBF000070312,321 N NEW YORK AVE,Atlantic City,NJ,39.36665971,-74.43245398,RES3C,3003,,17,E,1900,1900,3305,1,1,1324.536368,1324.536368,3507,NO,19.99,32.92,1,1.78,6106,114.48257,124.100242,133.893816,140.161865,I,Above,Flat,0,NaN,Wood,26.45225317,0,0,,,,2,2,,0.03,nav,1,1900,1,, 4141,NJBF000068120,22 N IOWA AVE,Atlantic City,NJ,39.35571829,-74.44645266,RES3B,3001,,27,ME,1910,1910,3301,2,2,2357.11191,2357.11191,3504,NO,35.28,46.44,-4,0,6106,114.312519,123.961729,133.732735,140.10049,I,Above,Hip,0,NaN,Wood,40.85647735,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4142,NJBF000070914,127 N CONGRESS AVE,Atlantic City,NJ,39.36883974,-74.41886213,RES3D,3004,,17,E,1900,1900,3303,2,1,835.8914229,835.8914229,3505,NO,30.11,38.74,3,6.69,6106,114.747442,124.32613,134.144884,140.343606,I,Above,Hip,0,NaN,Wood,34.4265708,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4143,NJBF000072857,,Atlantic City,NJ,39.37524357,-74.42510665,RES3D,3001,,NaN,ME,1969,0,3301,2,1,2510.637185,2510.637185,3507,NO,26.55,38.74,1,0.45,6102,114.540067,124.144766,133.949951,140.155956,I,Above,Flat,0,NaN,Wood,32.64500099,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4144,NJBF000066749,113 N LACLEDE PL,Atlantic City,NJ,39.35065933,-74.46190356,RES3A,3001,,17,NE,1920,1920,3301,2,1,1012.165776,1012.165776,3505,NO,43.23,55.32,3,6.4,6106,114.038756,123.737084,133.484993,139.931829,I,Above,Hip,0,5701,Wood,49.27306657,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4145,NJBF000070828,,Atlantic City,NJ,39.36856405,-74.41830214,RES3D,3004,,NaN,E,1969,0,3303,3,1,895.710836,895.710836,3505,NO,49.53,59.45,3,6.86,6106,114.762606,124.339277,134.159166,140.356092,I,Above,Gable,0,NaN,Wood,54.48943457,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4146,NJBF000070419,123 N MARYLAND AVE,Atlantic City,NJ,39.36703488,-74.42313913,RES1,3001,,17,NE,2005,2005,3102,2,1,1228.921008,1228.921008,3505,NO,37.88,49.56,3,0.16,6106,114.677636,124.266602,134.077404,140.302231,I,Above,Hip,0,5701,Wood,43.71897662,0,0,,,,1,1,,0.03,nav,1,2005,2,, 4147,NJBF000070375,108 CHESAPEAKE BAY CT,Atlantic City,NJ,39.36688251,-74.42256833,RES1,3001,,17,NE,1900,1900,3102,2,1,1903.634199,1903.634199,3505,NO,43.47,52.53,3,5.98,6106,114.691625,124.278646,134.090556,140.313211,I,Above,Gable,0,5701,Wood,48.00099605,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4148,NJBF000070836,,Atlantic City,NJ,39.36858404,-74.41864206,RES3D,3004,,NaN,E,2011,0,3303,3,1,807.7855415,807.7855415,3505,NO,44.33,56.01,3,0.1,6106,114.755139,124.332833,134.152055,140.350548,I,Above,Flat,0,NaN,Wood,50.16848476,0,0,,,,1,1,,0.03,nav,1,2011,3,, 4149,NJBF000070851,117 N CONGRESS AVE,Atlantic City,NJ,39.36864162,-74.41869082,RES3D,3004,,16,E,2011,2011,3303,3,1,802.0152211,802.0152211,3505,NO,35.33,42.74,3,1.3,6106,114.753413,124.33133,134.150448,140.348989,I,Above,Flat,0,NaN,Wood,39.03848087,0,0,,,,1,1,,0.03,nav,1,2011,3,, 4150,NJBF000066065,,Atlantic City,NJ,39.34883083,-74.46544364,RES3A,3001,,NaN,NE,1969,0,3301,1,1,722.0659351,722.0659351,3505,NO,12.84,24.75,3,-0.97,6106,113.984411,123.69321,133.436283,139.903063,I,Above,Hip,0,5701,Wood,18.7925823,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4151,NJBF000070795,,Atlantic City,NJ,39.36846224,-74.41856675,RES3D,3004,,NaN,E,1900,0,3303,4,1,736.4341159,736.4341159,3505,NO,72.12,79.92,3,2.84,6106,114.758174,124.335479,134.154866,140.353392,I,Above,Hip,0,NaN,Wood,76.01925442,0,0,,,,1,1,,0.03,nav,1,1900,4,, 4152,NJBF000067526,30 N BOSTON AVE,Atlantic City,NJ,39.35373205,-74.45264489,RES3B,3001,,45,E,1900,1900,3303,3,2,1946.320486,1946.320486,3507,YES,39.25,51.4,1,1.27,6106,114.202479,123.870977,133.632365,140.032567,I,Above,Hip,0,NaN,Wood,45.32615621,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4153,NJBF000067568,23 N BOSTON AVE,Atlantic City,NJ,39.35384609,-74.45210663,RES3B,3001,,45,ME,1900,1910,3301,3,4,3346.900006,3346.900006,3504,YES,45.67,54.89,-4,0,6106,114.212783,123.879476,133.641685,140.039351,I,Above,Hip,0,NaN,Wood,50.27864801,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4154,NJBF000070857,120 N CONGRESS AVE,Atlantic City,NJ,39.36865848,-74.41905937,RES3D,3004,,45,E,1900,1900,3303,2,2,972.1123854,972.1123854,3505,YES,25.79,36.62,3,-1.2,6106,114.745397,124.324414,134.142813,140.343062,I,Above,Hip,0,NaN,Wood,31.20396664,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4155,NJBF000067276,3419 VENTNOR AVE,Atlantic City,NJ,39.35286817,-74.45269179,RES3B,3001,29,NaN,E,1969,0,3303,1,1,3014.918737,3014.918737,3507,NO,14.84,20.14,1,2.38,6106,114.212278,123.879415,133.640778,140.044706,I,Above,Hip,0,NaN,Wood,17.48605223,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4156,NJBF000067441,17 N PROVIDENCE AVE,Atlantic City,NJ,39.3535034,-74.45318856,RES3B,3001,,45,E,1900,1900,3303,4,2,1473.387898,1473.387898,3507,NO,47.09,58.97,1,2.57,6106,114.19348,123.863608,133.624177,140.027401,I,Above,Gable,0,NaN,Wood,53.0312173,0,0,,,,1,1,,0.03,nav,1,1900,4,, 4157,NJBF000067233,3 N HARTFORD AVE,Atlantic City,NJ,39.35268493,-74.45389973,RES3B,3001,,45,E,1935,1935,3303,3,4,1919.328519,1919.328519,3507,YES,53.74,59.7,1,1.92,6106,114.188226,123.859563,133.619095,140.028412,I,Above,Flat,0,NaN,Wood,56.72310595,0,0,,,,1,1,,0.03,nav,1,1935,3,, 4158,NJBF000067211,1 N HARTFORD AVE,Atlantic City,NJ,39.35256952,-74.4538515,RES3B,3001,29,NaN,E,1969,0,3303,3,1,2526.46463,2526.46463,3507,NO,51.78,66.41,1,0.25,6106,114.19074,123.861685,133.621297,140.030904,I,Above,Flat,0,NaN,Wood,59.0985349,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4159,NJBF000067234,1 N HARTFORD AVE RR,Atlantic City,NJ,39.352689,-74.453624,RES3B,3001,,NaN,E,1935,0,3303,4,1,951.3685874,951.3685874,3507,NO,66.61,78.12,1,1.2,6106,114.194198,123.864504,133.624455,140.032703,I,Above,Flat,0,NaN,Wood,72.36647526,0,0,,,,1,1,,0.03,nav,1,1935,4,, 4160,NJBF000067448,3502 WINCHESTER AVE,Atlantic City,NJ,39.35352856,-74.45390483,RES3B,3001,,17,E,1900,1900,3303,2,2,1610.394896,1610.394896,3507,NO,34.06,48.41,1,-0.97,6106,114.177534,123.850392,133.609869,140.015696,I,Above,Gable,0,NaN,Wood,41.23447991,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4161,NJBF000067401,3504 WINCHESTER AVE,Atlantic City,NJ,39.3533363,-74.45394115,RES3B,3001,,45,E,1900,1900,3303,3,2,535.8237176,535.8237176,3507,NO,41.44,47.21,1,1.24,6106,114.179164,123.851817,133.611252,140.018019,I,Above,Hip,0,NaN,Wood,44.3270465,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4162,NJBF000067300,19 N ST DAVIDS PL,Atlantic City,NJ,39.35298504,-74.45512068,RES3B,3001,,45,E,1900,1900,3303,2,2,1203.475873,1203.475873,3507,NO,38.08,45.27,1,0.64,6106,114.157806,123.834284,133.591957,140.004611,I,Above,Gable,0,NaN,Wood,41.67215558,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4163,NJBF000067419,15 N PROVIDENCE AVE,Atlantic City,NJ,39.35340801,-74.45311934,RES3B,3001,,45,E,1900,1900,3303,4,2,1697.687412,1697.687412,3507,NO,47.52,57.45,1,1.42,6106,114.196196,123.865894,133.626576,140.029925,I,Above,Hip,0,NaN,Wood,52.48528273,0,0,,,,1,1,,0.03,nav,1,1900,4,, 4164,NJBF000068001,3012 ARCTIC AVE,Atlantic City,NJ,39.35530368,-74.44930056,RES3B,3001,,16,ME,1920,1920,3301,2,1,542.6522684,542.6522684,3504,YES,27.57,38.71,-4,0,6106,114.255737,123.91459,133.68108,140.061897,I,Above,Hip,0,NaN,Wood,33.13716571,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4165,NJBF000067202,3507 VENTNOR AVE,Atlantic City,NJ,39.35254578,-74.45334385,RES3B,3001,,45,E,1900,1900,3303,2,2,3133.355788,3133.355788,3507,YES,23.02,35.06,1,0.15,6106,114.202103,123.8711,133.631483,140.039248,I,Above,Flat,0,NaN,Wood,29.04076104,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4166,NJBF000067127,25 N ALBANY AVE,Atlantic City,NJ,39.3522045,-74.455217,RES3B,3001,738,NaN,E,1969,1940,3303,2,1,1947.245914,1947.245914,3507,NO,36.69,48.97,1,0.21,6106,114.165527,123.840963,133.598533,140.014831,I,Above,Flat,0,NaN,Wood,42.83256436,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4167,NJBF000067975,28 N MORRIS AVE,Atlantic City,NJ,39.3552165,-74.44900517,RES3B,3001,,45,ME,1900,1900,3301,1,3,1768.849879,1768.849879,3504,NO,13.9,26.66,-4,0,6106,114.26327,123.92089,133.687854,140.067851,I,Above,Hip,0,NaN,Wood,20.27906772,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4168,NJBF000067805,18 N CHELSEA AVE,Atlantic City,NJ,39.35458117,-74.4498344,RES3B,3001,,45,ME,1900,1900,3301,3,2,1348.488413,1348.488413,3504,YES,45.98,51.44,-4,0,6106,114.253126,123.912694,133.678393,140.064211,I,Above,Hip,0,NaN,Wood,48.71257133,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4169,NJBF000067965,23 N MORRIS AVE,Atlantic City,NJ,39.3551906,-74.44836286,RES3B,3001,,45,ME,1923,1923,3301,3,3,1751.848907,1751.848907,3504,YES,36.37,44.78,-4,0,6106,114.277545,123.932779,133.700762,140.078302,I,Above,Flat,0,NaN,Wood,40.5737158,0,0,,,,1,1,,0.03,nav,1,1923,3,, 4170,NJBF000067891,3108 ARCTIC AVE,Atlantic City,NJ,39.35491523,-74.45030584,RES3B,3001,,45,ME,1900,1900,3301,2,2,1038.921318,1038.921318,3504,YES,31.11,41.01,-4,0,6106,114.238694,123.900573,133.66551,140.051838,I,Above,Flat,0,NaN,Wood,36.05705566,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4171,NJBF000067910,23 N CHELSEA AVE,Atlantic City,NJ,39.3549865,-74.449268,RES3B,3001,,45,ME,1900,1900,3301,3,2,557.9528254,557.9528254,3504,YES,46.28,53.23,-4,0,6106,114.260393,123.918584,133.685147,140.067102,I,Above,Gable,0,NaN,Wood,49.75552207,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4172,NJBF000067109,3601 VENTNOR AVE,Atlantic City,NJ,39.35213934,-74.4541814,COM3,3003,734,NaN,ME,1969,0,3401,1,1,10265.52449,10265.52449,3507,NO,12.84,27.64,1,-0.99,6106,114.188962,123.860366,133.619497,140.032149,I,Above,Flat,0,NaN,Wood,20.23911551,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4173,NJBF000067821,15 N CHELSEA AVE,Atlantic City,NJ,39.3546395,-74.4490385,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,757.6309364,757.6309364,3504,NO,24.61,30.21,-4,0,6106,114.269705,123.926457,133.693404,140.075834,I,Above,Gable,0,NaN,Wood,27.41109639,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4174,NJBF000067796,10 N MORRIS AVE,Atlantic City,NJ,39.35454558,-74.44856052,RES3B,3001,,45,ME,1900,1900,3301,2,2,1012.512666,1012.512666,3504,NO,38.66,46.03,-4,0,6106,114.281262,123.936103,133.703812,140.084697,I,Above,Hip,0,NaN,Wood,42.34929581,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4175,NJBF000067813,12 N MORRIS AVE,Atlantic City,NJ,39.35460751,-74.44863504,RES3B,3001,,17,ME,2017,2017,3301,2,1,1433.502111,1433.502111,3504,NO,34.03,39.14,-4,0,6106,114.27888,123.9341,133.701688,140.082625,I,Above,Hip,0,NaN,Wood,36.58459591,0,0,,,,1,1,,0.03,nav,1,2017,2,, 4176,NJBF000067961,2801 ATLANTIC AVE,Atlantic City,NJ,39.35517949,-74.44600999,COM1,3003,649,NaN,ME,1969,0,3401,2,1,2145.458527,2145.458527,3507,YES,34.59,48.96,1,2.86,6106,114.328828,123.975517,133.747269,140.115298,I,Above,Hip,0,NaN,Wood,41.77406344,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4177,NJBF000068055,12 N IOWA AVE,Atlantic City,NJ,39.35548301,-74.44627391,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,1929.502338,1929.502338,3504,YES,57.57,70.37,-4,0,6106,114.31932,123.967484,133.738793,140.10673,I,Above,Flat,0,NaN,Wood,63.96798948,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4178,NJBF000067790,16 N CHELSEA AVE,Atlantic City,NJ,39.35451625,-74.44977986,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,1368.116885,1368.116885,3504,YES,42.92,53.25,-4,0,6106,114.255112,123.914367,133.680156,140.06602,I,Above,Hip,0,NaN,Wood,48.08721092,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4179,NJBF000067960,3 N STENTON PL,Atlantic City,NJ,39.35517848,-74.44633768,RES3B,3001,,17,ME,1910,1910,3301,2,1,1026.874278,1026.874278,3504,NO,33.11,43.39,-4,0,6106,114.321717,123.969587,133.74081,140.110191,I,Above,Flat,0,NaN,Wood,38.24952631,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4180,NJBF000067942,2805 ATLANTIC AVE,Atlantic City,NJ,39.3550935,-74.44614794,COM1,3003,738,NaN,ME,1969,0,3401,3,1,1455.691342,1455.691342,3507,YES,41.29,47.44,1,-0.83,6106,114.326887,123.973926,133.74546,140.114386,I,Above,Gable,0,NaN,Wood,44.36775648,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4181,NJBF000067584,1 N MONTPELIER AVE,Atlantic City,NJ,39.35389157,-74.44995208,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,2930.72853,2930.72853,3504,YES,23.38,29.49,-4,0,6106,114.259152,123.917948,133.683502,140.072544,I,Above,Gable,0,NaN,Wood,26.43516871,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4182,NJBF000067848,2829 ATLANTIC AVE,Atlantic City,NJ,39.35476554,-74.44700698,COM1,3003,100,NaN,ME,1969,0,3401,2,1,3073.031164,3073.031164,3507,NO,22.48,32.42,1,-0.91,6106,114.312306,123.961879,133.73205,140.105772,I,Above,Flat,0,NaN,Wood,27.44978167,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4183,NJBF000067680,7 N MONTPELIER AVE,Atlantic City,NJ,39.354149,-74.45018016,RES3B,3001,,45,ME,1900,1900,3301,1,3,3135.097643,3135.097643,3504,NO,11.68,24.4,-4,0,6106,114.25098,123.911067,133.67625,140.065167,I,Above,Gable,0,NaN,Wood,18.04123092,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4184,NJBF000067635,5 N MONTPELIER AVE,Atlantic City,NJ,39.35402663,-74.45014998,RES3B,3001,,45,ME,1900,1900,3301,2,2,1381.761032,1381.761032,3504,NO,30.56,39.5,-4,0,6106,114.253156,123.912919,133.678155,140.067443,I,Above,Hip,0,NaN,Wood,35.03176079,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4185,NJBF000067606,3 N MONTPELIER AVE,Atlantic City,NJ,39.35394803,-74.45008119,RES3B,3001,,45,ME,1890,1890,3301,2,2,1490.41727,1490.41727,3504,NO,31.42,44.87,-4,0,6106,114.255644,123.915014,133.680363,140.069694,I,Above,Hip,0,NaN,Wood,38.14254346,0,0,,,,1,1,,0.03,nav,1,1890,2,, 4186,NJBF000067652,2 N CHELSEA AVE,Atlantic City,NJ,39.35407347,-74.44947411,RES3B,3001,,45,ME,1910,1910,3301,2,3,1313.5476,1313.5476,3504,NO,36.57,42.75,-4,0,6106,114.267296,123.924653,133.690947,140.077364,I,Above,Hip,0,NaN,Wood,39.65797575,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4187,NJBF000068768,23 N FLORIDA AVE RR,Atlantic City,NJ,39.35758054,-74.44195239,RES3B,3001,,16,ME,1900,1900,3301,2,1,1287.725337,1287.725337,3505,NO,32.35,44.62,3,-2.24,6106,114.387144,124.023466,133.801723,140.143679,I,Above,Flat,0,NaN,Wood,38.48788265,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4188,NJBF000068708,7 N GEORGIA AVE,Atlantic City,NJ,39.35746433,-74.44070461,COM1,3003,,17,ME,1915,1915,3401,3,1,847.8192313,847.8192313,3507,YES,39.38,46.77,1,-0.02,6106,114.415575,124.047347,133.827701,140.164796,I,Above,Flat,0,NaN,Wood,43.07480565,0,0,,,,1,1,,0.03,nav,1,1915,3,, 4189,NJBF000068576,33 N BELLEVUE AVE,Atlantic City,NJ,39.35715779,-74.44295186,RES3B,3001,,33,ME,1915,1915,3301,2,1,2359.179615,2359.179615,3505,YES,40.26,54.25,3,3.84,6106,114.370686,124.009826,133.786453,140.134209,I,Above,Flat,0,NaN,Wood,47.2566858,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4190,NJBF000068745,32 N FLORIDA AVE,Atlantic City,NJ,39.35752943,-74.44285176,RES3B,3001,100,NaN,ME,1969,0,3301,3,1,1915.379972,1915.379972,3505,YES,48.19,55.55,3,5.8,6106,114.368287,124.007687,133.784451,140.130382,I,Above,Hip,0,NaN,Wood,51.86861267,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4191,NJBF000068714,30 N FLORIDA AVE,Atlantic City,NJ,39.35747316,-74.44278795,RES3B,3001,,NaN,ME,1969,0,3301,3,1,1215.50228,1215.50228,3505,YES,36.38,46.02,3,4.37,6106,114.370363,124.009445,133.786319,140.132195,I,Above,Hip,0,NaN,Wood,41.20131583,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4192,NJBF000068709,23 N FLORIDA AVE,Atlantic City,NJ,39.357465,-74.4422525,RES3B,3001,,17,ME,1900,1900,3301,2,1,1474.327831,1474.327831,3505,NO,44.79,49.95,3,8.97,6106,114.382073,124.019257,133.797022,140.14068,I,Above,Gable,0,NaN,Wood,47.36978773,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4193,NJBF000069531,1601 ATLANTIC AVE,Atlantic City,NJ,39.36133389,-74.43095153,COM1,3003,101,NaN,ME,1969,0,3401,7,1,6738.650623,6738.650623,3507,NO,93.5,105.13,1,0.23,6106,114.578628,124.183765,133.980788,140.260951,I,Above,Flat,0,NaN,Wood,99.31648969,0,0,,,,1,1,,0.03,nav,1,1969,7,, 4194,NJBF000068756,16 N GEORGIA AVE,Atlantic City,NJ,39.35756044,-74.44123791,RES3B,3001,,45,ME,1900,1900,3301,4,4,1543.673788,1543.673788,3505,YES,42.54,53.61,3,-2.4,6106,114.40286,124.036649,133.816102,140.155113,I,Above,Flat,0,NaN,Wood,48.07913276,0,0,,,,1,1,,0.03,nav,1,1900,4,, 4195,NJBF000068729,14 N GEORGIA AVE,Atlantic City,NJ,39.3574969,-74.4411865,RES3B,3001,,NaN,ME,1900,1900,3301,3,2,1315.840987,1315.840987,3505,YES,62.21,70.85,3,5.96,6106,114.404739,124.038246,133.817788,140.156818,I,Above,Flat,0,NaN,Wood,66.52820458,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4196,NJBF000070166,621 ATLANTIC AVE,Atlantic City,NJ,39.36606962,-74.41917062,COM1,3003,739,NaN,ME,1969,0,3401,2,1,8310.130368,8310.130368,3507,NO,26.49,39.39,1,1.24,6106,114.773687,124.349353,134.167879,140.376981,I,Above,Flat,0,NaN,Wood,32.93906115,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4197,NJBF000070081,701 ATLANTIC AVE,Atlantic City,NJ,39.36573167,-74.42017602,REL1,3004,,NaN,ME,1969,0,3401,1,1,20212.1837,20212.1837,3507,YES,18.98,30.91,1,0.47,6106,114.756315,124.334475,134.151103,140.366138,I,Above,Flat,0,NaN,Wood,24.9421145,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4198,NJBF000070296,535 ATLANTIC AVE,Atlantic City,NJ,39.3666045,-74.4178985,RES3D,3004,,NaN,E,1969,0,3303,3,1,3826.07009,3826.07009,3505,NO,37.97,48.07,3,0.24,6106,114.794381,124.367081,134.188013,140.389239,I,Above,Flat,0,NaN,Wood,43.02110934,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4199,NJBF000069837,1422 BALTIC AVE,Atlantic City,NJ,39.36444788,-74.43082536,RES3D,3004,,33,E,1920,1900,3303,3,1,1800.595107,1800.595107,3505,YES,34.99,44.24,3,-0.84,6106,114.543874,124.153263,133.950161,140.218902,I,Above,Gable,0,NaN,Wood,39.61402919,0,0,,,,1,1,,0.03,nav,1,1920,3,, 4200,NJBF000070182,617 ATLANTIC AVE,Atlantic City,NJ,39.3661105,-74.4189325,COM1,3003,730,NaN,ME,1969,0,3401,1,1,3337.511401,3337.511401,3507,NO,12.37,19.85,1,-0.3,6106,114.778298,124.353314,134.172298,140.380115,I,Above,Flat,0,NaN,Wood,16.10901621,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4201,NJBF000070502,620 ARCTIC AVE,Atlantic City,NJ,39.36738291,-74.41943566,RES3D,3004,999,NaN,E,1969,0,3303,3,1,1524.830706,1524.830706,3505,YES,49.36,62.24,3,5.03,6106,114.752444,124.330797,134.14865,140.354813,I,Above,Hip,0,NaN,Wood,55.79768824,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4202,NJBF000070574,,Atlantic City,NJ,39.367666,-74.4209205,RES1,3001,,NaN,NE,1969,0,3102,2,1,1930.537085,1930.537085,3505,NO,23.58,32.93,3,0.65,6106,114.717489,124.300648,134.115599,140.327913,I,Above,Hip,0,5701,Wood,28.25498843,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4203,NJBF000068404,105 N BRIGHTON AVE,Atlantic City,NJ,39.35663782,-74.44821504,RES3A,3001,,45,NE,1927,1927,3301,3,3,1052.338715,1052.338715,3505,YES,54.96,65.42,3,7.76,6106,114.26285,123.919975,133.688078,140.059279,I,Above,Hip,0,5701,Wood,60.18929544,0,0,,,,1,1,,0.03,nav,1,1927,3,, 4204,NJBF000070521,,Atlantic City,NJ,39.36745596,-74.42021275,RES3D,3004,,NaN,E,2007,0,3303,4,1,1133.415916,1133.415916,3505,NO,79.44,94.26,3,3.2,6106,114.735036,124.315795,134.132138,140.341778,I,Above,Flat,0,NaN,Wood,86.85235053,0,0,,,,1,1,,0.03,nav,1,2007,4,, 4205,NJBF000070415,23 N NEW JERSEY AVE,Atlantic City,NJ,39.3670173,-74.41976251,EDU1,3004,,NaN,E,1969,0,3401,3,1,25158.68177,25158.68177,3507,YES,48.57,62.96,1,1.34,6106,114.749823,124.328623,134.145893,140.354803,I,Above,Flat,0,NaN,Wood,55.76083232,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4206,NJBF000070563,,Atlantic City,NJ,39.36761858,-74.4208359,RES1,3001,,NaN,NE,1969,0,3102,2,1,908.6535479,908.6535479,3505,NO,34.45,41.2,3,6.32,6106,114.719835,124.302678,134.117797,140.329867,I,Above,Hip,0,5701,Wood,37.82804814,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4207,NJBF000070530,32 N CONGRESS AVE,Atlantic City,NJ,39.367474,-74.41824866,RES3D,3004,,17,E,1900,1900,3303,2,1,696.4416096,696.4416096,3505,NO,35.68,47.27,3,6.24,6106,114.776621,124.351607,134.171752,140.37191,I,Above,Flat,0,NaN,Wood,41.47350136,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4208,NJBF000070026,108 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36554349,-74.42596766,REL1,3001,,NaN,ME,1969,0,3401,2,1,5112.26901,5112.26901,3505,NO,37.46,48.52,3,8.09,6106,114.634912,124.230475,134.036162,140.279112,I,Above,Flat,0,NaN,Wood,42.98832728,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4209,NJBF000069957,27 N VIRGINIA AVE,Atlantic City,NJ,39.36520338,-74.42324733,COM1,3003,100,NaN,ME,1969,0,3401,2,1,12155.35045,12155.35045,3507,YES,39.05,45.5,1,0.53,6106,114.697128,124.283799,134.094638,140.326031,I,Above,Flat,0,NaN,Wood,42.27340441,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4210,NJBF000069997,108 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36539172,-74.42579716,REL1,3001,,NaN,ME,1969,0,3401,3,1,2429.801277,2429.801277,3505,NO,41.71,51.73,3,0.24,6106,114.64037,124.235185,134.041211,140.283882,I,Above,Hip,0,NaN,Wood,46.72295963,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4211,NJBF000069987,108 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36533148,-74.42611033,REL1,3001,,NaN,ME,1969,0,3401,2,1,4527.025181,4527.025181,3505,NO,41.01,54.42,3,2.9,6106,114.634401,124.230103,134.035553,140.279874,I,Above,Flat,0,NaN,Wood,47.71606153,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4212,NJBF000070405,,Atlantic City,NJ,39.36698244,-74.42134698,RES1,3001,,NaN,NE,1969,0,3102,2,1,1200.71956,1200.71956,3505,NO,28.1,38.46,3,3.04,6106,114.716491,124.29997,134.114199,140.330769,I,Above,Hip,0,5701,Wood,33.27850102,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4213,NJBF000070034,1013 ARCTIC AVE,Atlantic City,NJ,39.36556996,-74.42487253,COM1,3003,738,NaN,ME,1969,0,3401,3,1,915.6779988,915.6779988,3507,YES,31.68,44.45,1,-0.32,6106,114.658008,124.250214,134.057946,140.295736,I,Above,Flat,0,NaN,Wood,38.06445701,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4214,NJBF000068913,2417 AUBURN TERR,Atlantic City,NJ,39.3580009,-74.44223761,RES3B,3001,,16,ME,1900,1900,3301,1,1,628.4678016,628.4678016,3505,NO,24.54,34.55,3,6.55,6106,114.375791,124.013803,133.791548,140.133124,I,Above,Flat,0,NaN,Wood,29.54507772,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4215,NJBF000068879,4 N MISSISSIPPI AVE,Atlantic City,NJ,39.35788977,-74.43987485,COM1,3003,737,NaN,ME,1969,0,3401,2,1,2265.682215,2265.682215,3507,YES,34.41,44.08,1,-0.99,6106,114.428293,124.057887,133.839611,140.17157,I,Above,Flat,0,NaN,Wood,39.24421732,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4216,NJBF000068886,114 N TEXAS AVE RR,Atlantic City,NJ,39.35793048,-74.44471468,RES3A,3001,,16,NE,1900,1900,3301,2,1,1651.330545,1651.330545,3505,YES,34.88,43.45,3,7.38,6106,114.32297,123.969616,133.743268,140.09535,I,Above,Hip,0,5701,Wood,39.16168919,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4217,NJBF000068856,114 N TEXAS AVE RR #C,Atlantic City,NJ,39.35780484,-74.44501263,RES3A,3001,,33,NE,1900,1900,3301,2,1,1279.43364,1279.43364,3505,NO,39.77,51.66,3,6.71,6106,114.318039,123.965544,133.738719,140.092499,I,Above,Flat,0,5701,Wood,45.71174514,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4218,NJBF000068874,2500 ARCTIC AVE,Atlantic City,NJ,39.35788249,-74.44301148,RES3B,3001,738,NaN,ME,1969,0,3301,3,1,2699.436157,2699.436157,3505,YES,50.5,63.04,3,2.92,6106,114.360505,124.001041,133.777511,140.122764,I,Above,Hip,0,NaN,Wood,56.7662732,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4219,NJBF000068849,24 N GEORGIA AVE,Atlantic City,NJ,39.35777943,-74.44138839,RES3B,3001,,45,ME,1900,1900,3301,3,2,2823.114323,2823.114323,3505,YES,50.98,57.87,3,-1.58,6106,114.396921,124.031595,133.81078,140.14961,I,Above,Flat,0,NaN,Wood,54.42607081,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4220,NJBF000069967,145 S RHODE ISLAND AVE,Atlantic City,NJ,39.36523639,-74.41393033,RES3E,3003,,NaN,E,1969,0,3305,8,1,17048.97032,17048.97032,3507,NO,146.12,160.02,1,1.26,6106,114.894998,124.454103,134.282931,140.468784,I,Above,Flat,0,NaN,Wood,153.0673623,0,0,,,,2,2,,0.03,nav,1,1969,8,, 4221,NJBF000068833,2510 ARCTIC AVE,Atlantic City,NJ,39.357742,-74.4433535,RES3B,3001,,45,ME,1900,1900,3301,2,2,914.2294101,914.2294101,3505,YES,42.2,52.65,3,8.98,6106,114.35479,123.996309,133.772223,140.119434,I,Above,Flat,0,NaN,Wood,47.42483383,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4222,NJBF000068828,2512 ARCTIC AVE,Atlantic City,NJ,39.35772243,-74.44341599,RES3B,3001,,49,ME,1950,1950,3301,3,3,864.336707,864.336707,3505,YES,49.44,57.83,3,7.76,6106,114.353692,123.995397,133.77121,140.118754,I,Above,Flat,0,NaN,Wood,53.63325319,0,0,,,,1,1,,0.03,nav,1,1950,3,, 4223,NJBF000068765,27 N FLORIDA AVE,Atlantic City,NJ,39.35757708,-74.44234483,RES3B,3001,,17,ME,1900,1900,3301,2,1,1407.435656,1407.435656,3505,NO,38.1,53.09,3,6.23,6106,114.378681,124.016376,133.793978,140.137604,I,Above,Hip,0,NaN,Wood,45.59408669,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4224,NJBF000068801,25 N FLORIDA AVE,Atlantic City,NJ,39.35765026,-74.44198444,RES3B,3001,,17,ME,1900,1900,3301,1,1,911.4095162,911.4095162,3505,NO,14.58,20.84,3,-1.21,6106,114.385602,124.02215,133.800348,140.142181,I,Above,Hip,0,NaN,Wood,17.70836876,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4225,NJBF000068775,2603 ARCTIC AVE,Atlantic City,NJ,39.35759897,-74.44449968,RES3A,3001,,NaN,NE,1900,1950,3301,1,1,2026.795785,2026.795785,3505,NO,18.57,33.39,3,5.05,6106,114.331698,123.977045,133.751081,140.103565,I,Above,Gable,0,5701,Wood,25.97853795,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4226,NJBF000069364,49 N ARKANSAS AVE,Atlantic City,NJ,39.35988217,-74.43737218,COM1,3003,649,NaN,ME,1969,0,3401,1,1,6965.882429,6965.882429,3507,NO,19.14,32.93,1,0.19,6106,114.45801,124.082228,133.868066,140.181915,I,Above,Flat,0,NaN,Wood,26.03333629,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4227,NJBF000069541,1825 ARCTIC AVE,Atlantic City,NJ,39.36143165,-74.43518287,COM1,3003,,45,ME,1910,1910,3401,2,2,1252.602675,1252.602675,3507,NO,33.03,42.45,1,0.88,6106,114.486404,124.105648,133.895142,140.193843,I,Above,Hip,0,NaN,Wood,37.73877177,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4228,NJBF000068803,18 N GEORGIA AVE,Atlantic City,NJ,39.35765967,-74.44138337,RES3B,3001,,45,ME,1900,1900,3301,3,3,1566.79425,1566.79425,3505,YES,49.64,61.02,3,3.8,6106,114.398492,124.032953,133.812155,140.151409,I,Above,Flat,0,NaN,Wood,55.32956048,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4229,NJBF000068582,2616 ARCTIC AVE,Atlantic City,NJ,39.35717517,-74.44461451,RES3B,3001,330,NaN,ME,1969,0,3301,2,1,5606.997091,5606.997091,3505,YES,22.01,36.37,3,-2.71,6106,114.334419,123.979482,133.753367,140.107957,I,Above,Flat,0,NaN,Wood,29.18841215,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4230,NJBF000069573,113 N OHIO AVE,Atlantic City,NJ,39.36174074,-74.4356034,COM1,3003,,17,ME,1900,1900,3401,2,1,1164.869769,1164.869769,3507,YES,35.63,50.27,1,-0.19,6106,114.473616,124.094732,133.883453,140.182872,I,Above,Flat,0,NaN,Wood,42.95162598,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4231,NJBF000068665,2604 ARCTIC AVE,Atlantic City,NJ,39.3573572,-74.44429949,RES3B,3001,,27,ME,1900,1900,3301,2,2,1024.261218,1024.261218,3505,NO,33.44,39.25,3,-0.52,6106,114.339034,123.983271,133.757659,140.110249,I,Above,Flat,0,NaN,Wood,36.34371625,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4232,NJBF000069048,20 N MISSISSIPPI AVE,Atlantic City,NJ,39.35853,-74.4403395,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2289.973976,2289.973976,3507,NO,17.98,29.79,1,0.09,6106,114.41041,124.042655,133.823545,140.155118,I,Above,Flat,0,NaN,Wood,23.8816376,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4233,NJBF000069173,2401-2439 FORMICA'S WAY,Atlantic City,NJ,39.35906068,-74.44225504,RES3B,3001,,NaN,ME,1900,0,3301,1,1,2659.23395,2659.23395,3505,NO,19.55,27.68,3,1.55,6106,114.362447,124.002213,133.779828,140.117456,I,Above,Flat,0,NaN,Wood,23.61538347,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4234,NJBF000069300,,Atlantic City,NJ,39.359586,-74.4368705,COM1,3003,,NaN,ME,1969,0,3401,2,1,1166.902636,1166.902636,3507,NO,21.99,32.42,1,0.54,6110,114.472451,124.094496,133.881229,140.193967,I,Above,Flat,0,NaN,Wood,27.20438373,0,0,,,,1,1,,1,nav,1,1969,2,, 4235,NJBF000068501,2811 DENNY ST,Atlantic City,NJ,39.35694991,-74.44769035,RES3A,3001,,27,NE,1908,1908,3301,2,2,1144.658937,1144.658937,3505,NO,45.12,54.98,3,8.59,6106,114.270416,123.926149,133.695064,140.062946,I,Above,Hip,0,5701,Wood,50.0499316,0,0,,,,1,1,,0.03,nav,1,1908,2,, 4236,NJBF000069057,2101 ATLANTIC AVE,Atlantic City,NJ,39.35858264,-74.43771408,COM1,3003,100,NaN,ME,1969,0,3401,3,1,32382.76995,32382.76995,3507,NO,45.8,59.53,1,0.55,6106,114.466491,124.089789,133.875146,140.195205,I,Above,Flat,0,NaN,Wood,52.66713531,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4237,NJBF000069170,2309 ARCTIC AVE,Atlantic City,NJ,39.35904819,-74.44093017,RES3B,3001,,45,ME,1900,1900,3301,1,2,1026.861478,1026.861478,3505,NO,25.33,40.31,3,6.03,6106,114.391289,124.026414,133.806257,140.138397,I,Above,Gable,0,NaN,Wood,32.82100518,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4238,NJBF000068985,124 N TEXAS AVE #A,Atlantic City,NJ,39.35825076,-74.44498696,RES3A,3001,,17,NE,1900,1900,3301,2,1,4475.45671,4475.45671,3505,NO,31.49,45.2,3,5.35,6106,114.313133,123.96126,133.734432,140.086372,I,Above,Flat,0,5701,Wood,38.34489442,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4239,NJBF000068979,2427 ARCTIC AVE,Atlantic City,NJ,39.35823382,-74.44285092,RES3B,3001,100,NaN,ME,1900,0,3301,2,1,2113.801077,2113.801077,3505,YES,27.13,33.3,3,-1.09,6106,114.359654,124.000196,133.7769,140.120148,I,Above,Flat,0,NaN,Wood,30.21604778,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4240,NJBF000069038,2409 ARCTIC AVE,Atlantic City,NJ,39.35849192,-74.44228417,RES3B,3001,,45,ME,1900,1900,3301,3,2,1551.129627,1551.129627,3505,YES,44.62,53.97,3,7.29,6106,114.368776,124.007741,133.785365,140.125275,I,Above,Gable,0,NaN,Wood,49.29603856,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4241,NJBF000069107,2323 ARCTIC AVE,Atlantic City,NJ,39.3587953,-74.44147203,COM1,3003,639,NaN,ME,1969,0,3401,3,1,845.5878242,845.5878242,3507,YES,52.12,61.33,1,-0.3,6106,114.382651,124.01926,133.798216,140.133585,I,Above,Hip,0,NaN,Wood,56.72597314,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4242,NJBF000069000,2406 ARCTIC AVE,Atlantic City,NJ,39.35830424,-74.44193383,RES3B,3001,,45,ME,1910,1910,3301,2,2,1318.003274,1318.003274,3505,YES,31.46,46.26,3,4.03,6106,114.378659,124.016096,133.794323,140.13348,I,Above,Gable,0,NaN,Wood,38.85658128,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4243,NJBF000069030,2415 ARCTIC AVE,Atlantic City,NJ,39.35845006,-74.44245359,RES3B,3001,,NaN,ME,1900,1900,3301,2,2,1044.898336,1044.898336,3505,NO,29.33,36.52,3,1.59,6106,114.365609,124.005102,133.782447,140.123223,I,Above,Flat,0,NaN,Wood,32.92461906,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4244,NJBF000069058,2419 ARCTIC AVE,Atlantic City,NJ,39.35859167,-74.44269252,RES3B,3001,,45,ME,1920,1920,3301,2,3,3695.119696,3695.119696,3505,NO,26.1,34.47,3,-0.8,6106,114.358693,123.999252,133.776184,140.117413,I,Above,Flat,0,NaN,Wood,30.28725846,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4245,NJBF000069032,2413 ARCTIC AVE,Atlantic City,NJ,39.35846416,-74.44237884,RES3B,3001,,17,ME,1900,1900,3301,2,1,984.3072791,984.3072791,3505,NO,43.98,54.96,3,5.66,6106,114.367062,124.006314,133.783783,140.124194,I,Above,Gable,0,NaN,Wood,49.47381474,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4246,NJBF000068999,31 N GEORGIA AVE RR #B,Atlantic City,NJ,39.358304,-74.440758,RES3B,3001,,17,ME,1920,1920,3301,2,1,626.7195163,626.7195163,3505,YES,22.8,32.3,3,0.47,6110,114.404114,124.037448,133.81765,140.151846,I,Above,Flat,0,NaN,Wood,27.5506923,0,0,,,,1,1,,0.7,nav,1,1920,2,, 4247,NJBF000069050,114 N FLORIDA AVE,Atlantic City,NJ,39.35854057,-74.44342994,RES3B,3001,,45,ME,1900,1900,3301,3,2,1039.337103,1039.337103,3505,YES,35.77,41.61,3,4.01,6106,114.343347,123.986418,133.76213,140.106597,I,Above,Hip,0,NaN,Wood,38.69034633,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4248,NJBF000068948,2409 AUBURN TERR,Atlantic City,NJ,39.35810966,-74.44199349,RES3B,3001,,17,ME,1900,1900,3301,3,1,626.7598632,626.7598632,3505,YES,49.34,57.28,3,-1.21,6106,114.37976,124.01709,133.795235,140.135372,I,Above,Gable,0,NaN,Wood,53.30948121,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4249,NJBF000068977,2410 ARCTIC AVE,Atlantic City,NJ,39.35823093,-74.4421334,RES3B,3001,,17,ME,1900,1900,3301,2,1,2196.801102,2196.801102,3505,NO,24.39,38.24,3,-2.19,6106,114.375244,124.01326,133.791161,140.131428,I,Above,Gable,0,NaN,Wood,31.31479393,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4250,NJBF000068892,2523 ARCTIC AVE,Atlantic City,NJ,39.35795895,-74.44393299,EDU1,3003,,NaN,E,1969,0,3404,4,1,19953.36075,19953.36075,3507,NO,78.07,89.78,1,2.07,6106,114.339574,123.983492,133.758429,140.107199,I,Above,Flat,0,NaN,Wood,83.92819432,0,0,,,,2,2,,0.03,nav,1,1969,4,, 4251,NJBF000068920,2418 ARCTIC AVE,Atlantic City,NJ,39.35800866,-74.44233846,RES3B,3001,,17,ME,1900,1900,3301,2,1,538.357418,538.357418,3505,NO,31.88,37.01,3,1,6106,114.373527,124.011903,133.789481,140.131445,I,Above,Flat,0,NaN,Wood,34.44656996,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4252,NJBF000068834,3006 SUNSET AVE,Atlantic City,NJ,39.35774823,-74.45087429,RES3A,3001,959,NaN,NE,1900,0,3301,2,1,10247.12624,10247.12624,3507,YES,36.7,45.13,1,0.84,6106,114.191326,123.859949,133.623706,140.000648,I,Above,Flat,0,5701,Wood,40.91500647,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4253,NJBF000068781,24 N GEORGIA AVE 1/3,Atlantic City,NJ,39.35761093,-74.44174582,RES3B,3001,,33,ME,1900,1900,3301,2,1,1608.768733,1608.768733,3505,NO,25.41,33.48,3,4.38,6106,114.391235,124.026885,133.805484,140.146458,I,Above,Flat,0,NaN,Wood,29.44363594,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4254,NJBF000068464,19 N TEXAS AVE,Atlantic City,NJ,39.3568538,-74.44347049,RES3B,3001,,45,ME,1930,1930,3301,3,3,1241.154358,1241.154358,3505,YES,50.3,64.35,3,8.49,6106,114.363205,124.003671,133.779463,140.130539,I,Above,Hip,0,NaN,Wood,57.32195126,0,0,,,,1,1,,0.03,nav,1,1930,3,, 4255,NJBF000068947,29 N GEORGIA AVE,Atlantic City,NJ,39.35810648,-74.44109149,RES3B,3001,,45,ME,1900,1900,3301,3,3,1236.336856,1236.336856,3505,YES,50.6,56.9,3,6.58,6106,114.399336,124.033508,133.813165,140.149513,I,Above,Flat,0,NaN,Wood,53.75448759,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4256,NJBF000071928,1521 BEACH AVE,Atlantic City,NJ,39.37201778,-74.44848092,RES1,3001,,17,NE,1972,1972,3102,2,1,1163.051541,1163.051541,3505,NO,39.68,45.03,3,2.26,6106,114.07413,123.751558,133.515561,139.825046,I,Above,Gable,0,5701,Wood,42.3539293,0,0,,,,1,1,,0.03,nav,1,1972,2,, 4257,NJBF000070200,324 N NEW YORK AVE,Atlantic City,NJ,39.366194,-74.432629,RES1,3001,,17,NE,1900,1900,3102,1,1,1146.618485,1146.618485,3505,NO,16.69,29.03,3,1.51,6106,114.484329,124.101953,133.895298,140.165774,I,Above,Hip,0,5701,Wood,22.86010628,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4258,NJBF000071357,226 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3703359,-74.41949879,RES3D,3004,,27,E,2002,2002,3303,3,2,2108.501448,2108.501448,3505,NO,60.56,71.83,3,6.11,6106,114.716323,124.298857,134.11611,140.313012,I,Above,Gable,0,NaN,Wood,66.19642791,0,0,,,,1,1,,0.03,nav,1,2002,3,, 4259,NJBF000071962,1500 N ARKANSAS AVE,Atlantic City,NJ,39.37213003,-74.44792669,RES1,3001,,45,NE,1900,1900,3102,2,2,1199.022241,1199.022241,3505,NO,27.28,41.93,3,3.92,6106,114.08486,123.760453,133.525351,139.832493,I,Above,Flat,0,5701,Wood,34.60563752,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4260,NJBF000071192,,Atlantic City,NJ,39.36972311,-74.41907855,RES3D,3004,,NaN,E,1969,0,3303,4,1,9031.539544,9031.539544,3505,NO,71.39,76.54,3,8.99,6106,114.732443,124.312949,134.131133,140.328036,I,Above,Hip,0,NaN,Wood,73.96498442,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4261,NJBF000071965,1606 BEACH AVE,Atlantic City,NJ,39.37214065,-74.45021145,RES1,3001,,45,NE,1935,1935,3102,1,2,1324.119078,1324.119078,3505,NO,18.22,26.31,3,-0.53,6106,114.035184,123.718791,133.479842,139.794594,I,Above,Gable,0,5701,Wood,22.26408951,0,0,,,,1,1,,0.03,nav,1,1935,1,, 4262,NJBF000070256,1117 BALTIC AVE,Atlantic City,NJ,39.36644743,-74.42678605,RES3D,3004,,45,E,1900,1900,3303,3,2,1959.064807,1959.064807,3505,YES,43.97,53.74,3,5.35,6106,114.606656,124.206037,134.010066,140.253695,I,Above,Hip,0,NaN,Wood,48.85419568,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4263,NJBF000070165,316 N NEW YORK AVE,Atlantic City,NJ,39.36606945,-74.43254918,RES1,3001,,17,NE,1900,1900,3102,2,1,1182.806976,1182.806976,3505,NO,38.29,47,3,3.85,6106,114.487531,124.10473,133.898242,140.168819,I,Above,Hip,0,5701,Wood,42.64295849,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4264,NJBF000071905,1503 BEACH AVE,Atlantic City,NJ,39.3719539,-74.44825595,RES1,3001,,17,NE,1986,1986,3102,2,1,1404.439269,1404.439269,3505,NO,27.66,35.73,3,-1.21,6106,114.079742,123.756329,133.520736,139.829719,I,Above,Gable,0,5701,Wood,31.69868889,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 4265,NJBF000071930,1428 N ARKANSAS AVE,Atlantic City,NJ,39.3720216,-74.44758352,RES1,3001,,17,NE,1900,1900,3102,2,1,1884.777044,1884.777044,3505,NO,20.6,31.2,3,-2.82,6106,114.093532,123.767837,133.533357,139.839765,I,Above,Gable,0,5701,Wood,25.90190301,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4266,NJBF000068755,234 N CHELSEA AVE,Atlantic City,NJ,39.35755668,-74.45179053,RES3A,3001,,17,NE,1900,1900,3301,2,1,551.5981572,551.5981572,3507,NO,22.72,27.81,1,0.81,6106,114.173694,123.845394,133.607734,139.98889,I,Above,Hip,0,5701,Wood,25.266875,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4267,NJBF000070123,324-348 KENTUCKY AVE,Atlantic City,NJ,39.36593243,-74.4348013,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5365.946342,5365.946342,3505,NO,32.9,38.11,3,3.22,6106,114.440715,124.065085,133.854576,140.135313,I,Above,Flat,0,NaN,Wood,35.50362794,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4268,NJBF000070159,324-348 KENTUCKY AVE,Atlantic City,NJ,39.36604726,-74.43451992,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5295.819184,5295.819184,3505,NO,33.37,40.42,3,4.71,6106,114.4454,124.068998,133.858969,140.138093,I,Above,Flat,0,NaN,Wood,36.89439512,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4269,NJBF000070173,324-348 KENTUCKY AVE,Atlantic City,NJ,39.36608427,-74.43418817,RES3C,3004,,NaN,ME,1969,0,3301,1,1,8957.561314,8957.561314,3505,NO,17.29,24.01,3,0.66,6106,114.452106,124.074664,133.865223,140.142798,I,Above,Flat,0,NaN,Wood,20.64788093,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4270,NJBF000071845,1905 W RIVERSIDE DR,Atlantic City,NJ,39.37179506,-74.45519952,RES3C,3001,,NaN,ME,1969,0,3301,2,1,5471.996207,5471.996207,3505,NO,22.8,29.73,3,-0.26,6106,113.930652,123.631831,133.384815,139.716747,I,Above,Flat,0,NaN,Wood,26.26199111,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4271,NJBF000071954,1602 BEACH AVE,Atlantic City,NJ,39.37209026,-74.45000112,RES1,3001,,17,NE,1930,1930,3102,1,1,1647.561098,1647.561098,3505,NO,18.56,27.89,3,2.96,6106,114.040326,123.72315,133.484571,139.798843,I,Above,Gable,0,5701,Wood,23.22663881,0,0,,,,1,1,,0.03,nav,1,1930,1,, 4272,NJBF000071844,,Atlantic City,NJ,39.37179399,-74.45591733,RES1,3001,,NaN,NE,1969,0,3103,6,1,2058.724252,2058.724252,3505,NO,116.72,122.84,3,4.78,6106,113.915045,123.618831,133.370657,139.704735,I,Above,Hip,0,5701,Wood,119.7775813,0,0,,,,1,1,,0.03,nav,1,1969,6,, 4273,NJBF000071884,,Atlantic City,NJ,39.371902,-74.456051,RES1,3001,,NaN,NE,1969,0,3103,4,1,2065.311841,2065.311841,3505,NO,79.67,85.53,3,6.58,6106,113.910894,123.615253,133.366818,139.700827,I,Above,Flat,0,5701,Wood,82.59829429,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4274,NJBF000068737,3106 SUNSET AVE,Atlantic City,NJ,39.35751749,-74.45206424,RES3A,3001,,45,NE,1905,1923,3301,2,2,2631.380052,2631.380052,3507,YES,30.05,43.87,1,1.06,6106,114.168235,123.840881,133.6028,139.985133,I,Above,Flat,0,5701,Wood,36.95987683,0,0,,,,1,1,,0.03,nav,1,1905,2,, 4275,NJBF000070277,1107 BALTIC AVE,Atlantic City,NJ,39.36652652,-74.42659099,RES3D,3004,,45,E,1900,1900,3303,3,2,2120.509662,2120.509662,3505,YES,46.55,61.06,3,3.3,6106,114.60988,124.208763,134.013143,140.255611,I,Above,Flat,0,NaN,Wood,53.80490447,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4276,NJBF000067344,332 N ANNAPOLIS AVE,Atlantic City,NJ,39.35316487,-74.46268689,RES1,3001,,16,NE,1925,1925,3102,2,1,1056.357076,1056.357076,3505,NO,28.95,34.68,3,5.83,6106,113.989968,123.695871,133.44247,139.880445,I,Above,Gable,0,5701,Wood,31.81418082,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4277,NJBF000067311,,Atlantic City,NJ,39.3530265,-74.4628155,RES1,3001,,NaN,NE,1969,0,3102,2,1,558.9967134,558.9967134,3505,NO,28.43,38.92,3,2.39,6106,113.988883,123.695049,133.44148,139.880502,I,Above,Flat,0,5701,Wood,33.67541465,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4278,NJBF000067166,309 N RICHMOND AVE,Atlantic City,NJ,39.35240452,-74.46266283,RES1,3001,,17,NE,1950,1950,3102,2,1,555.2444701,555.2444701,3505,NO,43.33,49.81,3,5.69,6106,114.000044,123.70452,133.451229,139.892614,I,Above,Flat,0,5701,Wood,46.56998672,0,0,,,,1,1,,0.03,nav,1,1950,2,, 4279,NJBF000069150,220 N CALIFORNIA AVE,Atlantic City,NJ,39.35894302,-74.44693298,RES3A,3001,,17,NE,1900,1900,3301,2,1,1088.552181,1088.552181,3505,NO,22.86,29.54,3,-0.3,6106,114.26242,123.918587,133.688499,140.045471,I,Above,Flat,0,5701,Wood,26.20042431,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4280,NJBF000067389,336 N ANNAPOLIS AVE,Atlantic City,NJ,39.35331397,-74.46278565,RES1,3001,,17,NE,1927,1927,3102,2,1,961.0905724,961.0905724,3505,NO,31.31,37.64,3,-0.38,6106,113.985928,123.692477,133.438919,139.876522,I,Above,Hip,0,5701,Wood,34.47509792,0,0,,,,1,1,,0.03,nav,1,1927,2,, 4281,NJBF000067223,,Atlantic City,NJ,39.35264949,-74.46255448,RES1,3001,,NaN,NE,1969,0,3102,2,1,1056.26639,1056.26639,3505,NO,38.4,44.66,3,2.35,6106,113.999365,123.703845,133.450686,139.890604,I,Above,Gable,0,5701,Wood,41.53043805,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4282,NJBF000067421,340 N ANNAPOLIS AVE,Atlantic City,NJ,39.35341264,-74.4628893,RES1,3001,,17,NE,1900,1900,3102,1,1,1639.855511,1639.855511,3505,NO,25.16,36.51,3,6.05,6106,113.982429,123.689551,133.435836,139.873307,I,Above,Gable,0,5701,Wood,30.83294155,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4283,NJBF000067158,302 N ANNAPOLIS AVE,Atlantic City,NJ,39.35235843,-74.46205447,RES1,3001,,17,NE,1948,1948,3102,1,1,1247.914664,1247.914664,3505,NO,17.93,32.86,3,6.47,6106,114.013989,123.716,133.463577,139.903209,I,Above,Flat,0,5701,Wood,25.39111152,0,0,,,,1,1,,0.03,nav,1,1948,1,, 4284,NJBF000067388,353 N ANNAPOLIS AVE,Atlantic City,NJ,39.35331193,-74.46226542,RES1,3001,,17,NE,1900,1900,3102,1,1,1159.089695,1159.089695,3505,NO,8.3,21.84,3,-2.4,6106,113.997379,123.701887,133.44907,139.88503,I,Above,Gable,0,5701,Wood,15.07129645,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4285,NJBF000067277,4205 STEWART AVE,Atlantic City,NJ,39.352873,-74.46271353,RES1,3001,,NaN,NE,1969,0,3102,2,1,1055.284113,1055.284113,3505,NO,34.1,41.73,3,2.27,6106,113.993041,123.698541,133.445132,139.884534,I,Above,Flat,0,5701,Wood,37.91657129,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4286,NJBF000067554,338 N DOVER AVE,Atlantic City,NJ,39.35381729,-74.46202643,RES1,3001,,17,NE,1900,1900,3102,2,1,994.9134599,994.9134599,3505,NO,45.96,58.91,3,7.93,6106,113.996298,123.700741,133.448208,139.881098,I,Above,Hip,0,5701,Wood,52.4331229,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4287,NJBF000067346,4113 STEWART AVE,Atlantic City,NJ,39.35317379,-74.4621593,RES1,3001,,17,NE,1900,1900,3102,1,1,1124.635422,1124.635422,3505,NO,20.61,35.51,3,2.75,6106,114.001433,123.705288,133.452637,139.888889,I,Above,Hip,0,5701,Wood,28.05948077,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4288,NJBF000068407,2517 ATLANTIC AVE,Atlantic City,NJ,39.356648,-74.4429425,COM1,3003,737,NaN,ME,1969,0,3401,3,1,1867.000629,1867.000629,3507,NO,50.59,57.81,1,1.48,6106,114.377169,124.015426,133.792102,140.141749,I,Above,Flat,0,NaN,Wood,54.20294195,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4289,NJBF000068355,2517 ATLANTIC AVE,Atlantic City,NJ,39.3564691,-74.44281812,COM1,3003,737,NaN,ME,1969,0,3401,3,1,4036.315687,4036.315687,3507,NO,45.18,53.02,1,1.88,6106,114.382088,124.019602,133.796496,140.146291,I,Above,Flat,0,NaN,Wood,49.10152993,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4290,NJBF000068360,2819 ARCTIC AVE,Atlantic City,NJ,39.35649886,-74.44734554,RES3A,3001,,45,NE,1900,1900,3301,2,2,3442.726747,3442.726747,3505,YES,20.69,29.91,3,-0.57,6106,114.283456,123.937202,133.706711,140.07501,I,Above,Flat,0,5701,Wood,25.30010339,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4291,NJBF000068379,2722 ARCTIC AVE,Atlantic City,NJ,39.35656112,-74.44622895,COM1,3003,,45,ME,1900,1900,3401,2,2,813.8439111,813.8439111,3507,NO,24.28,29.55,1,0.71,6106,114.306957,123.956778,133.728084,140.091642,I,Above,Gable,0,NaN,Wood,26.91499688,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4292,NJBF000069252,233 N CALIFORNIA AVE,Atlantic City,NJ,39.35936553,-74.44677613,RES3A,3001,,27,NE,1920,1920,3301,2,2,1873.679806,1873.679806,3505,YES,42.89,54.84,3,3.95,6106,114.260671,123.916923,133.687033,140.041706,I,Above,Flat,0,5701,Wood,48.86343006,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4293,NJBF000069237,231 N CALIFORNIA AVE,Atlantic City,NJ,39.3592956,-74.44674908,RES3A,3001,,27,NE,1900,1900,3301,2,2,734.7777855,734.7777855,3505,YES,41.03,53.75,3,3.06,6106,114.26211,123.918159,133.688323,140.043169,I,Above,Gable,0,5701,Wood,47.39132854,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4294,NJBF000069156,213 N CALIFORNIA AVE,Atlantic City,NJ,39.35898,-74.446526,RES3A,3001,,27,NE,1900,1900,3301,2,2,1341.971901,1341.971901,3505,YES,28.48,40.08,3,2.76,6106,114.270809,123.925573,133.696142,140.051368,I,Above,Flat,0,5701,Wood,34.27745307,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4295,NJBF000068399,2820 DENNY ST,Atlantic City,NJ,39.35662686,-74.44776633,RES3A,3001,,27,NE,1900,1900,3301,2,2,1450.923311,1450.923311,3505,YES,35,46.36,3,0.9,6106,114.272747,123.928225,133.697049,140.066515,I,Above,Flat,0,5701,Wood,40.68232438,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4296,NJBF000067236,4202 STEWART AVE,Atlantic City,NJ,39.35269634,-74.46246151,RES1,3001,,16,NE,2015,2015,3102,2,1,956.8847965,956.8847965,3505,NO,40.78,50.43,3,6.05,6106,114.000791,123.704994,133.451961,139.891369,I,Above,Gable,0,5701,Wood,45.6029784,0,0,,,,1,1,,0.03,nav,1,2015,2,, 4297,NJBF000068403,2716 ARCTIC AVE,Atlantic City,NJ,39.356636,-74.446065,COM1,3003,738,NaN,ME,1969,0,3401,2,1,1526.354828,1526.354828,3507,YES,26.95,40.01,1,0.26,6106,114.309593,123.958949,133.730515,140.093115,I,Above,Gable,0,NaN,Wood,33.48018711,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4298,NJBF000068395,2718 ARCTIC AVE,Atlantic City,NJ,39.35661365,-74.44612987,COM1,3003,,16,ME,1910,1910,3401,2,1,624.5122062,624.5122062,3507,NO,36.9,48.38,1,1.76,6106,114.308453,123.958006,133.729468,140.092418,I,Above,Gable,0,NaN,Wood,42.63729742,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4299,NJBF000068370,27 WINE ST,Atlantic City,NJ,39.3565335,-74.445905,COM1,3003,,17,ME,1900,1900,3401,2,1,650.2118813,650.2118813,3507,NO,28.33,36.94,1,0.12,6106,114.314338,123.962949,133.734782,140.097133,I,Above,Flat,0,NaN,Wood,32.63110683,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4300,NJBF000068211,31 N STENTON PL,Atlantic City,NJ,39.35601951,-74.44690182,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,1890.441266,1890.441266,3504,YES,48.83,62.86,-4,0,6106,114.299025,123.950366,133.720628,140.089026,I,Above,Hip,0,NaN,Wood,55.84446338,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4301,NJBF000068243,34 N IOWA AVE,Atlantic City,NJ,39.3561175,-74.446686,RES3B,3001,,45,ME,1910,1910,3301,2,3,1264.381591,1264.381591,3504,NO,35.44,45.23,-4,0,6106,114.302505,123.953232,133.723834,140.090974,I,Above,Hip,0,NaN,Wood,40.33700888,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4302,NJBF000068338,39 N IOWA AVE,Atlantic City,NJ,39.35641791,-74.44630653,COM1,3003,738,NaN,ME,1969,0,3401,1,1,3834.986308,3834.986308,3507,NO,16.6,25.73,1,-0.95,6106,114.307029,123.956893,133.728084,140.092516,I,Above,Flat,0,NaN,Wood,21.16785754,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4303,NJBF000068366,8 N TEXAS AVE,Atlantic City,NJ,39.35652245,-74.44370085,RES3B,3001,,45,ME,1900,1900,3301,3,2,1074.119305,1074.119305,3505,YES,52.4,57.93,3,5.93,6106,114.362294,124.003022,133.778457,140.131759,I,Above,Hip,0,NaN,Wood,55.16466102,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4304,NJBF000066285,4333 WINCHESTER AVE,Atlantic City,NJ,39.3493625,-74.46332353,RES3A,3001,,45,NE,1900,1900,3301,2,2,1698.504927,1698.504927,3505,NO,28.43,35.7,3,-1.05,6106,114.024138,123.725579,133.471552,139.929011,I,Above,Hip,0,5701,Wood,32.06143257,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4305,NJBF000068257,,Atlantic City,NJ,39.35616347,-74.44741141,RES3B,3001,,NaN,ME,1910,0,3301,2,1,1150.231347,1150.231347,3504,NO,26.64,35.21,-4,0,6106,114.286195,123.939617,133.70905,140.078935,I,Above,Hip,0,NaN,Wood,30.92364179,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4306,NJBF000068029,109 N MONTPELIER AVE,Atlantic City,NJ,39.3553957,-74.45107215,RES3A,3001,,45,NE,1900,1900,3301,2,2,1491.106489,1491.106489,3505,NO,33.59,44.15,3,4.87,6106,114.216037,123.881558,133.645259,140.032604,I,Above,Gable,0,5701,Wood,38.8700683,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4307,NJBF000068283,110 N BRIGHTON AVE,Atlantic City,NJ,39.35622705,-74.44873773,RES3A,3001,,45,NE,1900,1900,3301,3,2,683.0655406,683.0655406,3505,YES,53.4,62.39,3,-1.04,6106,114.256551,123.9149,133.682207,140.057111,I,Above,Flat,0,5701,Wood,57.89378296,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4308,NJBF000068053,111 N MONTPELIER AVE,Atlantic City,NJ,39.35547726,-74.45111587,RES3A,3001,,45,NE,1928,1928,3301,2,2,1684.197981,1684.197981,3505,NO,32.06,43.77,3,6.31,6106,114.214073,123.879894,133.643519,140.030702,I,Above,Hip,0,5701,Wood,37.91113514,0,0,,,,1,1,,0.03,nav,1,1928,2,, 4309,NJBF000068077,115 N MONTPELIER AVE,Atlantic City,NJ,39.35555166,-74.45115868,RES3A,3001,,45,NE,1920,1920,3301,2,2,1555.57219,1555.57219,3505,NO,19.16,30.57,3,-2.93,6106,114.212206,123.878312,133.641863,140.028904,I,Above,Hip,0,5701,Wood,24.86585119,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4310,NJBF000068084,3007 ARCTIC AVE,Atlantic City,NJ,39.35558394,-74.44952475,RES3A,3001,,17,NE,1901,1901,3301,3,1,1562.622402,1562.622402,3505,YES,44.01,58.85,3,0.23,6106,114.247389,123.907537,133.673651,140.054226,I,Above,Hip,0,5701,Wood,51.42721214,0,0,,,,1,1,,0.03,nav,1,1901,3,, 4311,NJBF000067581,319 N ELBERON AVE,Atlantic City,NJ,39.35388278,-74.46030767,RES1,3001,,16,NE,1940,1940,3102,1,1,1067.113376,1067.113376,3505,NO,18.17,25.95,3,2.97,6106,114.03312,123.731004,133.480938,139.907944,I,Above,Hip,0,5701,Wood,22.06066811,0,0,,,,1,1,,0.03,nav,1,1940,1,, 4312,NJBF000067577,3724 SOUTH BLVD,Atlantic City,NJ,39.35387068,-74.45795164,RES1,3001,,27,NE,1900,1900,3102,2,2,2133.909676,2133.909676,3505,YES,34.48,46.95,3,3.56,6106,114.084839,123.773637,133.527022,139.946068,I,Above,Hip,0,5701,Wood,40.71648613,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4313,NJBF000067564,311 N ELBERON AVE,Atlantic City,NJ,39.35384017,-74.45999153,RES1,3001,,45,NE,1900,1900,3102,1,3,639.4715199,639.4715199,3505,NO,21.14,35.65,3,8.82,6106,114.040578,123.737167,133.487565,139.913711,I,Above,Hip,0,5701,Wood,28.39696602,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4314,NJBF000067618,320 N HARRISBURG AVE,Atlantic City,NJ,39.353982,-74.459697,RES1,3001,,17,NE,1995,1995,3102,1,1,820.7741055,820.7741055,3505,NO,14.27,27.44,3,-2.97,6106,114.045264,123.740956,133.491769,139.916294,I,Above,Gable,0,5701,Wood,20.85482311,0,0,,,,1,1,,0.03,nav,1,1995,1,, 4315,NJBF000067639,210 N ALBANY AVE,Atlantic City,NJ,39.35404649,-74.45747321,COM1,3003,100,NaN,ME,1969,0,3401,1,1,8587.502961,8587.502961,3507,NO,15.07,28.05,1,2.4,6106,114.093129,123.780397,133.534474,139.951082,I,Above,Flat,0,NaN,Wood,21.55980516,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4316,NJBF000067690,323 N ELBERON AVE,Atlantic City,NJ,39.35417682,-74.46043001,RES1,3001,220,NaN,NE,1969,0,3102,1,1,2556.026266,2556.026266,3505,NO,17.65,25.38,3,-0.98,6106,114.026776,123.725632,133.475357,139.901445,I,Above,Flat,0,5701,Wood,21.51340772,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4317,NJBF000067316,3920 SOUTH BLVD,Atlantic City,NJ,39.35304233,-74.45961473,RES1,3001,,NaN,NE,1969,0,3102,2,1,2502.927869,2502.927869,3505,NO,27.86,37.61,3,4.99,6106,114.058827,123.752576,133.503599,139.932028,I,Above,Hip,0,5701,Wood,32.73820963,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4318,NJBF000067382,3605 WINCHESTER AVE,Atlantic City,NJ,39.35329221,-74.45520847,RES3B,3001,,17,E,1900,1900,3303,2,1,1666.022235,1666.022235,3507,YES,32.92,41.83,1,2.65,6106,114.152057,123.829408,133.58693,139.998612,I,Above,Gable,0,NaN,Wood,37.37364193,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4319,NJBF000067512,314 N HARRISBURG AVE,Atlantic City,NJ,39.35369301,-74.45974183,RES1,3001,,17,NE,1920,1920,3102,2,1,749.2073335,749.2073335,3505,NO,33.15,46.76,3,1.4,6106,114.047891,123.743261,133.494038,139.920003,I,Above,Hip,0,5701,Wood,39.95466164,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4320,NJBF000067484,,Atlantic City,NJ,39.35363129,-74.45985368,RES1,3001,,NaN,NE,1969,0,3102,2,1,705.1254149,705.1254149,3505,NO,32.78,43.6,3,5.81,6106,114.046214,123.74191,133.492531,139.919148,I,Above,Flat,0,5701,Wood,38.18947987,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4321,NJBF000067398,3915 SOUTH BLVD,Atlantic City,NJ,39.35333008,-74.45986469,RES1,3001,,45,NE,1900,1900,3102,2,2,2748.380262,2748.380262,3505,NO,37.72,49.08,3,7.85,6106,114.049742,123.744959,133.495593,139.923589,I,Above,Flat,0,5701,Wood,43.40345263,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4322,NJBF000067321,4001 SOUTH BLVD,Atlantic City,NJ,39.3530805,-74.4604085,RES1,3001,,17,NE,1900,1900,3102,1,1,777.6330027,777.6330027,3505,NO,16.83,30.13,3,3.98,6106,114.040984,123.737866,133.487737,139.918675,I,Above,Flat,0,5701,Wood,23.48203833,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4323,NJBF000067364,312 N ELBERON AVE,Atlantic City,NJ,39.35322269,-74.46035893,RES1,3001,,16,NE,1900,1900,3102,1,1,1264.484566,1264.484566,3505,NO,19.46,30.6,3,6.28,6106,114.040264,123.737206,133.487134,139.917268,I,Above,Gable,0,5701,Wood,25.02991795,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4324,NJBF000067605,3817 SOUTH BLVD,Atlantic City,NJ,39.35394734,-74.45891591,RES1,3001,,NaN,NE,1912,0,3102,2,1,612.6486503,612.6486503,3505,NO,33.41,39.77,3,0.65,6106,114.062797,123.755423,133.507381,139.929419,I,Above,Gable,0,5701,Wood,36.58617718,0,0,,,,1,1,,0.03,nav,1,1912,2,, 4325,NJBF000069131,209 N CALIFORNIA AVE,Atlantic City,NJ,39.35888639,-74.44647086,RES3A,3001,,17,NE,1900,1900,3301,2,1,869.4683987,869.4683987,3505,YES,30.67,37.42,3,1.11,6106,114.273151,123.927573,133.698244,140.053625,I,Above,Flat,0,5701,Wood,34.04108936,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4326,NJBF000068824,2813 FAIRMOUNT AVE,Atlantic City,NJ,39.3577161,-74.44831809,RES3A,3001,,17,NE,1905,1905,3301,2,1,917.1688902,917.1688902,3505,NO,32.74,38.34,3,4.57,6106,114.247342,123.906585,133.674411,140.041702,I,Above,Gable,0,5701,Wood,35.54384701,0,0,,,,1,1,,0.03,nav,1,1905,2,, 4327,NJBF000068975,2717 FAIRMOUNT AVE,Atlantic City,NJ,39.358229,-74.4471335,RES3A,3001,,27,NE,1900,1900,3301,2,2,1984.871901,1984.871901,3505,NO,27.75,42.46,3,0.94,6106,114.266786,123.922563,133.692237,140.05284,I,Above,Hip,0,5701,Wood,35.10475458,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4328,NJBF000069091,214 N CALIFORNIA AVE,Atlantic City,NJ,39.35873919,-74.44687257,RES3A,3001,,17,NE,1900,1900,3301,2,1,1755.738753,1755.738753,3505,NO,32.06,39.05,3,4.69,6106,114.266216,123.921852,133.691887,140.049435,I,Above,Hip,0,5701,Wood,35.55262872,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4329,NJBF000068961,2721 FAIRMOUNT AVE,Atlantic City,NJ,39.358169,-74.4472285,RES3A,3001,,27,NE,1900,1900,3301,2,2,1678.512564,1678.512564,3505,NO,47.08,57.14,3,8.25,6106,114.265478,123.9215,133.691029,140.05224,I,Above,Hip,0,5701,Wood,52.11000932,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4330,NJBF000068900,204 N IOWA AVE,Atlantic City,NJ,39.35796767,-74.44797049,RES3A,3001,,45,NE,1905,1905,3301,2,3,970.9247523,970.9247523,3505,YES,37.72,45.63,3,8.33,6106,114.251816,123.910198,133.678554,140.043477,I,Above,Gable,0,5701,Wood,41.67843144,0,0,,,,1,1,,0.03,nav,1,1905,2,, 4331,NJBF000069412,251 N NEVADA AVE,Atlantic City,NJ,39.36019987,-74.44506552,RES3A,3001,,27,NE,1923,1923,3301,2,2,1584.200743,1584.200743,3505,YES,32.98,46,3,5.01,6106,114.287645,123.93906,133.711859,140.056495,I,Above,Flat,0,5701,Wood,39.49077802,0,0,,,,1,1,,0.03,nav,1,1923,2,, 4332,NJBF000068788,201 N BRIGHTON AVE,Atlantic City,NJ,39.35762209,-74.44886167,RES3A,3001,,45,NE,1905,1905,3301,2,2,1729.549914,1729.549914,3505,YES,33.94,44.51,3,3.84,6106,114.236665,123.897734,133.6647,140.034483,I,Above,Flat,0,5701,Wood,39.2268353,0,0,,,,1,1,,0.03,nav,1,1905,2,, 4333,NJBF000068816,2819 FAIRMOUNT AVE,Atlantic City,NJ,39.357695,-74.44868,RES3A,3001,,17,NE,1920,1920,3301,2,1,848.1216367,848.1216367,3505,NO,33.63,41.68,3,-2.46,6106,114.239727,123.900251,133.667499,140.036282,I,Above,Flat,0,5701,Wood,37.65316961,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4334,NJBF000069451,300 N GEORGIA AVE,Atlantic City,NJ,39.36049263,-74.44354333,COM3,3001,218,NaN,ME,1969,0,3401,2,1,4964.650775,4964.650775,3507,NO,38.77,50.76,1,1.55,6106,114.317113,123.963591,133.738877,140.076276,I,Above,Flat,0,NaN,Wood,44.76275162,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4335,NJBF000068713,2837 FAIRMOUNT AVE,Atlantic City,NJ,39.35747111,-74.44888134,RES3A,3001,,27,NE,1900,1900,3301,2,2,800.7533067,800.7533067,3505,NO,35.64,49.23,3,3.63,6106,114.238107,123.899004,133.665957,140.036423,I,Above,Flat,0,5701,Wood,42.43791922,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4336,NJBF000068727,2835 FAIRMOUNT AVE,Atlantic City,NJ,39.3574945,-74.448822,RES3A,3001,,27,NE,1900,1900,3301,2,2,708.2734838,708.2734838,3505,NO,39.22,47.65,3,2.82,6106,114.239095,123.899816,133.666861,140.037001,I,Above,Flat,0,5701,Wood,43.43778229,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4337,NJBF000069397,300 TURNPIKE RD,Atlantic City,NJ,39.36010384,-74.44389621,COM3,3001,101,NaN,ME,1969,0,3401,2,1,3996.781229,3996.781229,3507,YES,29.26,41.65,1,-0.89,6106,114.314184,123.96132,133.736072,140.076403,I,Above,Flat,0,NaN,Wood,35.45329469,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4338,NJBF000069423,300 TURNPIKE RD,Atlantic City,NJ,39.36027174,-74.44375372,COM3,3001,101,NaN,ME,1969,0,3401,1,1,1462.277118,1462.277118,3507,YES,15.15,29.69,1,2.46,6106,114.315222,123.962111,133.737076,140.076183,I,Above,Flat,0,NaN,Wood,22.41859952,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4339,NJBF000069818,1521 BALTIC AVE,Atlantic City,NJ,39.3642414,-74.43226312,RES3D,3004,,NaN,E,1969,0,3303,3,1,1750.511002,1750.511002,3505,NO,63.47,68.96,3,8.05,6106,114.515455,124.129206,133.923534,140.199377,I,Above,Flat,0,NaN,Wood,66.21549505,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4340,NJBF000071591,522 DREXEL AVE,Atlantic City,NJ,39.371023,-74.4207125,RES1,3001,,27,NE,1925,1925,3102,2,2,1344.838022,1344.838022,3505,YES,28.75,40.8,3,2.59,6106,114.68248,124.26944,134.084198,140.284534,I,Above,Hip,0,5701,Wood,34.77047485,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4341,NJBF000071543,505 MELROSE AVE,Atlantic City,NJ,39.37088584,-74.41988962,RES1,3001,,17,NE,1900,1900,3102,2,1,931.3683801,931.3683801,3505,NO,28.22,41.84,3,-0.05,6106,114.701574,124.285951,134.102336,140.299283,I,Above,Gable,0,5701,Wood,35.03097632,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4342,NJBF000071528,347 N NEW JERSEY AVE,Atlantic City,NJ,39.37084154,-74.42254721,RES1,3001,,33,NE,1900,1900,3102,2,1,1489.65434,1489.65434,3505,YES,39.94,49.38,3,3.61,6106,114.645498,124.237669,134.048917,140.258334,I,Above,Flat,0,5701,Wood,44.66133252,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4343,NJBF000071345,729 DREXEL AVE,Atlantic City,NJ,39.3702922,-74.42331695,RES1,3001,,33,NE,1925,1900,3102,2,1,4966.422045,4966.422045,3505,YES,28.07,37.37,3,4.08,6106,114.635499,124.229296,134.03918,140.253966,I,Above,Flat,0,5701,Wood,32.72110583,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4344,NJBF000071721,521 DREXEL AVE,Atlantic City,NJ,39.37139667,-74.42059859,RES1,3001,,33,NE,1925,1925,3102,2,1,3738.999118,3738.999118,3505,YES,35.97,41.6,3,1.82,6106,114.680526,124.267616,134.082515,140.281096,I,Above,Gable,0,5701,Wood,38.78244475,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4345,NJBF000070907,210 N NEW JERSEY AVE,Atlantic City,NJ,39.36881394,-74.42155818,RES3B,3004,,33,ME,1915,1915,3301,2,1,1425.492511,1425.492511,3507,NO,32.22,46.33,1,2.74,6106,114.690345,124.27697,134.090511,140.302065,I,Above,Flat,0,NaN,Wood,39.27259246,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4346,NJBF000071727,,Atlantic City,NJ,39.37141348,-74.42182685,RES1,3001,,NaN,NE,1969,0,3102,2,1,709.6347028,709.6347028,3505,NO,30.15,40.67,3,-1.88,6106,114.654188,124.244917,134.057431,140.261638,I,Above,Gable,0,5701,Wood,35.41384334,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4347,NJBF000071685,604 ADRIATIC AVE,Atlantic City,NJ,39.37127885,-74.42201396,RES1,3001,,45,NE,1900,1900,3102,2,2,1491.551617,1491.551617,3505,NO,40.16,45.64,3,4.61,6106,114.651764,124.242885,134.055066,140.260579,I,Above,Gable,0,5701,Wood,42.90339985,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4348,NJBF000071747,501 DREXEL AVE,Atlantic City,NJ,39.37149466,-74.42030497,RES1,3001,,17,NE,1985,1985,3102,1,1,1280.369646,1280.369646,3505,NO,17.89,32.69,3,7.25,6106,114.685641,124.27199,134.087441,140.284332,I,Above,Gable,0,5701,Wood,25.29004678,0,0,,,,1,1,,0.03,nav,1,1985,1,, 4349,NJBF000070117,418 N INDIANA AVE,Atlantic City,NJ,39.36588497,-74.43733438,RES1,3001,282,NaN,NE,1969,0,3101,3,1,2507.930549,2507.930549,3507,YES,32.52,41.68,1,-0.61,6106,114.386696,124.019399,133.804407,140.095936,I,Above,Hip,0,5701,Wood,37.10022958,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4350,NJBF000070201,1724 HUMMOCK AVE,Atlantic City,NJ,39.36619468,-74.43676455,RES1,3001,,45,NE,1910,1910,3101,2,2,834.0631585,834.0631585,3507,NO,32.74,47.73,1,0.98,6106,114.395291,124.026497,133.812445,140.100463,I,Above,Flat,0,5701,Wood,40.23567512,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4351,NJBF000069873,329 N OHIO AVE,Atlantic City,NJ,39.36470975,-74.43750585,RES3B,3001,,27,ME,2000,2000,3301,2,2,1870.607931,1870.607931,3505,NO,24.92,36.91,3,1.69,6106,114.396952,124.02868,133.813613,140.110235,I,Above,Gable,0,NaN,Wood,30.91817012,0,0,,,,1,1,,0.03,nav,1,2000,2,, 4352,NJBF000071431,240 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37059995,-74.41970149,RES3D,3004,737,NaN,E,1969,0,3303,3,1,4326.009815,4326.009815,3505,NO,38.7,49.5,3,0.27,6106,114.708937,124.292399,134.109209,140.306202,I,Above,Flat,0,NaN,Wood,44.10050558,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4353,NJBF000070090,414 N INDIANA AVE,Atlantic City,NJ,39.36576426,-74.43717875,RES1,3001,,45,NE,1900,1900,3101,3,2,1044.071573,1044.071573,3507,YES,48.02,54.77,1,-0.85,6106,114.391474,124.023502,133.808807,140.100145,I,Above,Gable,0,5701,Wood,51.3968324,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4354,NJBF000070190,1722 HUMMOCK AVE,Atlantic City,NJ,39.3661505,-74.4366345,RES1,3001,,17,NE,2005,2005,3101,2,1,800.1405855,800.1405855,3507,NO,37.94,44.99,1,2.59,6106,114.398636,124.02935,133.815539,140.103175,I,Above,Flat,0,5701,Wood,41.46069048,0,0,,,,1,1,,0.03,nav,1,2005,2,, 4355,NJBF000071408,701 DREXEL AVE,Atlantic City,NJ,39.37051,-74.4227795,RES1,3001,100,NaN,NE,1969,0,3102,2,1,3796.921218,3796.921218,3505,NO,27.59,40.09,3,-0.68,6106,114.644405,124.236863,134.047732,140.259327,I,Above,Flat,0,5701,Wood,33.83986546,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4356,NJBF000071442,342 N NEW JERSEY AVE,Atlantic City,NJ,39.37063,-74.4228615,RES1,3001,220,NaN,NE,1969,0,3102,1,1,3480.715398,3480.715398,3505,NO,27.48,38.53,3,8.76,6106,114.641277,124.234125,134.044814,140.256379,I,Above,Flat,0,5701,Wood,33.00651883,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4357,NJBF000071425,620 DREXEL AVE,Atlantic City,NJ,39.37058017,-74.42178997,RES1,3001,,33,NE,1900,1900,3102,2,1,2121.518902,2121.518902,3505,YES,38.8,49.84,3,6.24,6106,114.664691,124.254286,134.067047,140.273847,I,Above,Flat,0,5701,Wood,44.31934373,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4358,NJBF000071446,312 N CONNECTICUT AVE,Atlantic City,NJ,39.37063622,-74.42125461,RES1,3001,,33,NE,1900,1900,3102,2,1,2836.100236,2836.100236,3505,YES,23.56,32.42,3,-1.1,6106,114.675435,124.263514,134.077298,140.281433,I,Above,Flat,0,5701,Wood,27.99014468,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4359,NJBF000071430,527 MELROSE AVE,Atlantic City,NJ,39.3705995,-74.4205575,RES1,3001,,17,NE,1900,1900,3102,2,1,672.3283212,672.3283212,3505,NO,36.6,50.12,3,4.68,6106,114.690709,124.276685,134.091828,140.292839,I,Above,Gable,0,5701,Wood,43.36368726,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4360,NJBF000070204,424 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36621524,-74.43599886,RES1,3001,,17,NE,1900,1900,3101,1,1,1154.276078,1154.276078,3507,NO,11.92,23.49,1,0.17,6106,114.411561,124.040252,133.827554,140.112304,I,Above,Flat,0,5701,Wood,17.70488746,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4361,NJBF000069942,321 N INDIANA AVE,Atlantic City,NJ,39.36512393,-74.43625668,RES1,3001,,45,NE,1930,1930,3101,2,2,1322.449457,1322.449457,3507,NO,28.57,36.96,1,1.97,6106,114.418953,124.047065,133.83412,140.123977,I,Above,Hip,0,5701,Wood,32.76177968,0,0,,,,1,1,,0.03,nav,1,1930,2,, 4362,NJBF000071390,514 MELROSE AVE,Atlantic City,NJ,39.37045107,-74.42002155,RES3D,3004,,17,E,1900,1900,3303,2,1,1082.096586,1082.096586,3505,NO,31.36,37.37,3,-2.17,6106,114.703849,124.288062,134.104275,140.303262,I,Above,Flat,0,NaN,Wood,34.36476851,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4363,NJBF000070360,1618 WABASH AVE,Atlantic City,NJ,39.36683565,-74.4351399,RES1,3001,,17,NE,1900,1900,3101,2,1,1273.981738,1273.981738,3505,NO,30.6,42.51,3,-2.57,6106,114.422716,124.049369,133.838074,140.116936,I,Above,Hip,0,5701,Wood,36.55348947,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4364,NJBF000069959,409 N OHIO AVE,Atlantic City,NJ,39.36520596,-74.43794126,RES3B,3001,,17,ME,1900,1900,3301,2,1,913.5222758,913.5222758,3505,NO,38.71,51.61,3,3.24,6106,114.381664,124.015513,133.79959,140.096165,I,Above,Gable,0,NaN,Wood,45.16026285,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4365,NJBF000070721,1010 DREXEL AVE,Atlantic City,NJ,39.36818103,-74.42658756,COM1,3004,,NaN,ME,1969,0,3401,1,1,1053.449846,1053.449846,3507,YES,12.54,21.73,1,1.41,6106,114.59039,124.191479,133.99558,140.232383,I,Above,Hip,0,NaN,Wood,17.13799869,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4366,NJBF000069993,,Atlantic City,NJ,39.36536956,-74.43699882,RES1,3001,,NaN,NE,1969,0,3101,1,1,1486.162252,1486.162252,3507,NO,15.51,23.79,1,0.5,6106,114.400032,124.030944,133.816644,140.108698,I,Above,Gable,0,5701,Wood,19.64862734,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4367,NJBF000071383,632 DREXEL AVE,Atlantic City,NJ,39.37043606,-74.42218028,RES1,3001,,17,NE,1900,1900,3102,2,1,2053.412793,2053.412793,3505,YES,34.41,43.27,3,1.11,6106,114.658062,124.248636,134.060675,140.269755,I,Above,Flat,0,5701,Wood,38.83793352,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4368,NJBF000070383,1612 WABASH AVE,Atlantic City,NJ,39.36690361,-74.43496484,RES1,3001,,16,NE,1900,1900,3101,1,1,1251.17013,1251.17013,3505,NO,17.21,23.18,3,2.78,6106,114.425681,124.051845,133.840848,140.118726,I,Above,Hip,0,5701,Wood,20.19449078,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4369,NJBF000069968,404 TRINITY AVE,Atlantic City,NJ,39.36523717,-74.43774949,RES3B,3001,,45,ME,1910,1910,3301,3,4,1429.692147,1429.692147,3505,YES,37.78,48.5,3,3.28,6106,114.385437,124.018683,133.80309,140.098756,I,Above,Gable,0,NaN,Wood,43.14016243,0,0,,,,1,1,,0.03,nav,1,1910,3,, 4370,NJBF000070223,300 N TENNESSEE AVE,Atlantic City,NJ,39.36630067,-74.43183972,COM1,3003,571,NaN,ME,1969,0,3401,1,1,50663.46731,50663.46731,3507,NO,12.1,17.75,1,0.9,6106,114.500014,124.11523,133.909985,140.176651,I,Above,Flat,0,NaN,Wood,14.92911666,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4371,NJBF000070744,709 N INDIANA AVE,Atlantic City,NJ,39.36826181,-74.43835942,RES1,3001,,17,NE,1900,1900,3102,2,1,929.3980688,929.3980688,3505,YES,31.73,41.49,3,0.49,6106,114.336573,123.975619,133.758277,140.045055,I,Above,Flat,0,5701,Wood,36.60776516,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4372,NJBF000070803,721 N INDIANA AVE,Atlantic City,NJ,39.3684855,-74.4385115,RES1,3001,,17,NE,1998,1998,3102,2,1,789.2581394,789.2581394,3505,NO,22.78,30.34,3,-0.24,6106,114.330661,123.970476,133.752807,140.039355,I,Above,Flat,0,5701,Wood,26.56392484,0,0,,,,1,1,,0.03,nav,1,1998,2,, 4373,NJBF000071284,342 N DELAWARE AVE,Atlantic City,NJ,39.3700655,-74.4240355,RES1,3001,,27,NE,1900,1900,3102,2,2,531.6815115,531.6815115,3505,NO,46.15,54.1,3,7.97,6106,114.622799,124.21848,134.027037,140.245866,I,Above,Flat,0,5701,Wood,50.12310965,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4374,NJBF000068230,114 N CHELSEA AVE,Atlantic City,NJ,39.35608123,-74.45085322,RES3A,3001,,45,NE,1910,1910,3301,2,4,1978.915575,1978.915575,3505,YES,30.49,43.19,3,2.51,6106,114.212321,123.878179,133.642159,140.025865,I,Above,Hip,0,5701,Wood,36.84200682,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4375,NJBF000071645,,Atlantic City,NJ,39.37115607,-74.42523026,RES1,3001,,NaN,NE,1969,0,3102,2,1,1313.027633,1313.027633,3505,NO,39.01,53.25,3,1.74,6106,114.584588,124.185207,133.99125,140.211778,I,Above,Hip,0,5701,Wood,46.12843985,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4376,NJBF000071029,,Atlantic City,NJ,39.36917877,-74.42227676,RES3B,3004,,NaN,ME,1969,0,3301,1,1,1419.984864,1419.984864,3507,NO,21.06,28.7,1,1.78,6106,114.670725,124.259982,134.072076,140.285777,I,Above,Gable,0,NaN,Wood,24.87983257,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4377,NJBF000070792,405 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36844454,-74.43038889,RES1,3001,,27,NE,2007,2007,3103,2,2,2163.58876,2163.58876,3505,NO,32.24,41.47,3,-2.53,6106,114.505858,124.119196,133.916183,140.168918,I,Above,Hip,0,5701,Wood,36.85377797,0,0,,,,1,1,,0.03,nav,1,2007,2,, 4378,NJBF000071669,809 WABASH AVE,Atlantic City,NJ,39.37122373,-74.42512473,RES1,3001,,18,NE,1900,1900,3102,2,1,1735.360492,1735.360492,3505,NO,41.16,50.77,3,4.38,6106,114.586039,124.186421,133.992648,140.212472,I,Above,Flat,0,5701,Wood,45.96462591,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4379,NJBF000071185,301 ABSECON BLVD,Atlantic City,NJ,39.36969187,-74.42375533,RES1,3001,190,NaN,NE,1969,0,3102,2,1,4416.666634,4416.666634,3505,NO,40.38,50.22,3,5.46,6106,114.633175,124.227538,134.036707,140.255511,I,Above,Flat,0,5701,Wood,45.30124272,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4380,NJBF000070539,819 N MICHIGAN AVE,Atlantic City,NJ,39.36751388,-74.44110357,RES3B,3001,,27,ME,1900,1900,3301,2,2,616.9031075,616.9031075,3505,YES,37.44,45.14,3,4.76,6106,114.286085,123.933496,133.711542,140.012054,I,Above,Flat,0,5701,Wood,41.28927144,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4381,NJBF000068657,2905 FAIRMOUNT AVE,Atlantic City,NJ,39.35734191,-74.44926397,RES3A,3001,,27,NE,1910,1910,3301,2,2,804.7606872,804.7606872,3507,YES,23.38,34.01,1,1.82,6106,114.231361,123.893447,133.659804,140.032272,I,Above,Gable,0,5701,Wood,28.69451667,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4382,NJBF000070874,415 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.3687106,-74.43054805,RES1,3001,,17,NE,2007,2007,3103,2,1,1587.307632,1587.307632,3505,NO,34.33,46.47,3,-0.62,6106,114.499324,124.113496,133.910133,140.162617,I,Above,Hip,0,5701,Wood,40.40018427,0,0,,,,1,1,,0.03,nav,1,2007,2,, 4383,NJBF000070646,409 N TENNESSEE AVE,Atlantic City,NJ,39.36790263,-74.43174143,RES1,3001,,27,NE,1900,1900,3103,2,2,1523.839308,1523.839308,3505,YES,42.94,49.37,3,5.31,6106,114.483216,124.100186,133.894808,140.15533,I,Above,Flat,0,5701,Wood,46.15390834,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4384,NJBF000068547,207 N CHELSEA AVE,Atlantic City,NJ,39.35706236,-74.4509253,RES3A,3001,,45,NE,1910,1910,3301,2,2,1341.130259,1341.130259,3507,YES,30.66,40.22,1,0.55,6106,114.198647,123.866369,133.63013,140.010088,I,Above,Gable,0,5701,Wood,35.43853694,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4385,NJBF000070505,1626 CASPIAN AVE,Atlantic City,NJ,39.36739731,-74.43575658,RES1,3001,,17,NE,1900,1900,3101,2,1,1140.261886,1140.261886,3505,NO,24.64,38.73,3,-2.91,6106,114.402814,124.032199,133.819681,140.099058,I,Above,Flat,0,5701,Wood,31.68540654,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4386,NJBF000070487,616 HOBART AVE,Atlantic City,NJ,39.36734442,-74.4387157,RES1,3001,,17,NE,2006,2006,3102,2,1,1099.599295,1099.599295,3505,NO,29.74,39.93,3,-1.06,6106,114.339652,123.978802,133.761057,140.052744,I,Above,Hip,0,5701,Wood,34.83733788,0,0,,,,1,1,,0.03,nav,1,2006,2,, 4387,NJBF000067966,464 N DOVER AVE,Atlantic City,NJ,39.35519202,-74.46310649,RES1,3001,,17,NE,1960,1960,3102,2,1,1376.957795,1376.957795,3505,NO,43.37,50.71,3,6.52,6106,113.955479,123.666432,133.41217,139.8421,I,Above,Hip,0,5701,Wood,47.04247223,0,0,,,,1,1,,0.03,nav,1,1960,2,, 4388,NJBF000067803,442 RIDGEWAY RD,Atlantic City,NJ,39.3545725,-74.463098,RES1,3001,,NaN,NE,1900,0,3102,2,1,813.4520617,813.4520617,3505,NO,29.08,41.62,3,4.68,6106,113.963354,123.673256,133.419097,139.851864,I,Above,Flat,0,5701,Wood,35.34714958,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4389,NJBF000067792,443 N ANNAPOLIS AVE,Atlantic City,NJ,39.35452749,-74.46323224,RES1,3001,,17,NE,1900,1900,3102,2,1,1144.23186,1144.23186,3505,NO,26.83,38.01,3,5.46,6106,113.960987,123.671338,133.416994,139.850385,I,Above,Flat,0,5701,Wood,32.41907647,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4390,NJBF000072689,1607 MADISON AVE,Atlantic City,NJ,39.374552,-74.449139,RES1,3001,,17,NE,2002,2002,3102,2,1,751.1445027,751.1445027,3505,NO,41.07,54.78,3,6.9,6106,114.031058,123.712784,133.474659,139.775941,I,Above,Hip,0,5701,Wood,47.92433857,0,0,,,,1,1,,0.03,nav,1,2002,2,, 4391,NJBF000072745,1619 MADISON AVE,Atlantic City,NJ,39.37476931,-74.44994116,RES1,3001,,17,NE,1900,1900,3102,1,1,1153.271225,1153.271225,3505,NO,22.48,35.7,3,6.36,6106,114.011221,123.695895,133.456319,139.759317,I,Above,Hip,0,5701,Wood,29.0918037,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4392,NJBF000068002,410 WARRENA RD,Atlantic City,NJ,39.35530461,-74.46127065,RES1,3001,,27,NE,1920,1920,3102,2,2,2203.226017,2203.226017,3505,NO,34.69,48.99,3,4.34,6106,113.994312,123.698302,133.44666,139.870369,I,Above,Gable,0,5701,Wood,41.84157219,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4393,NJBF000070469,500 N KENTUCKY AVE,Atlantic City,NJ,39.36724569,-74.43494847,RES1,3001,,16,NE,1962,1962,3101,1,1,1254.505933,1254.505933,3505,NO,26.51,33.05,3,7.59,6106,114.422011,124.048551,133.837512,140.114064,I,Above,Hip,0,5701,Wood,29.77803168,0,0,,,,1,1,,0.03,nav,1,1962,1,, 4394,NJBF000068035,417 N HARRISBURG AVE,Atlantic City,NJ,39.35540883,-74.46032994,RES1,3001,,27,NE,1920,1920,3102,2,2,1184.486595,1184.486595,3505,NO,29.18,41.65,3,7.83,6106,114.013638,123.714156,133.463868,139.884087,I,Above,Flat,0,5701,Wood,35.41254217,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4395,NJBF000070597,401 N TENNESSEE AVE,Atlantic City,NJ,39.3677375,-74.4316035,RES1,3001,738,NaN,NE,1969,0,3103,2,1,1941.255228,1941.255228,3505,YES,32.76,38.58,3,4.04,6106,114.488134,124.104452,133.899361,140.15988,I,Above,Flat,0,5701,Wood,35.67008796,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4396,NJBF000072703,1609 MADISON AVE,Atlantic City,NJ,39.3745974,-74.44934864,RES1,3001,,17,NE,1900,1900,3102,2,1,1167.577048,1167.577048,3505,NO,27.49,33.16,3,2.69,6106,114.025997,123.708486,133.469986,139.77177,I,Above,Gable,0,5701,Wood,30.32570112,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4397,NJBF000067823,421 N DOVER AVE,Atlantic City,NJ,39.3546465,-74.462141,RES1,3001,,17,NE,1950,1950,3102,2,1,1678.195454,1678.195454,3505,NO,21.62,27.42,3,-2.87,6106,113.983421,123.689709,133.436906,139.866364,I,Above,Flat,0,5701,Wood,24.51716753,0,0,,,,1,1,,0.03,nav,1,1950,2,, 4398,NJBF000067819,458 N ANNAPOLIS AVE,Atlantic City,NJ,39.3546343,-74.46391624,RES1,3001,,17,NE,1900,1900,3102,1,1,3733.133881,3733.133881,3505,NO,11.57,20.66,3,0.48,6106,113.944645,123.657856,133.402528,139.837492,I,Above,Hip,0,5701,Wood,16.11408619,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4399,NJBF000068025,424 N HARRISBURG AVE,Atlantic City,NJ,39.35538781,-74.46086839,RES1,3001,,27,NE,1920,1920,3102,2,2,1729.561113,1729.561113,3505,YES,30.13,45.01,3,1.71,6106,114.002113,123.704677,133.453608,139.875655,I,Above,Flat,0,5701,Wood,37.5675007,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4400,NJBF000070186,1400 N ALBANY AVE,Atlantic City,NJ,39.36613524,-74.47597212,EDU1,3003,,NaN,E,1969,0,3401,1,1,11860.1328,11860.1328,3507,NO,18.26,26.81,1,2.99,6112,113.54041,123.316883,133.041464,139.448843,I,Above,Gable,0,NaN,Wood,22.53735156,0,0,,,,1,1,,1,nav,1,1969,1,, 4401,NJBF000067207,324 N RICHMOND AVE,Atlantic City,NJ,39.35254902,-74.46342576,RES1,3001,,17,NE,1900,1900,3102,2,1,1842.544862,1842.544862,3505,NO,27.76,38.02,3,2,6106,113.981496,123.689218,133.434837,139.877978,I,Above,Hip,0,5701,Wood,32.88987653,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4402,NJBF000067151,345 N RALEIGH AVE,Atlantic City,NJ,39.35233928,-74.46395656,RES1,3001,,17,NE,2015,2015,3102,2,2,2357.069725,2357.069725,3505,YES,34.56,39.72,3,8.14,6106,113.972488,123.681927,133.426822,139.872592,I,Above,Flat,0,5701,Wood,37.14324682,0,0,,,,1,1,,0.03,nav,1,2015,2,, 4403,NJBF000067199,359 N RALEIGH AVE,Atlantic City,NJ,39.3525352,-74.46406639,RES1,3001,,17,NE,1900,1900,3102,1,1,2287.137285,2287.137285,3505,NO,11.69,20.12,3,0.52,6106,113.967628,123.677843,133.422566,139.867762,I,Above,Hip,0,5701,Wood,15.90497786,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4404,NJBF000066980,301 N RALEIGH AVE,Atlantic City,NJ,39.35155083,-74.4633325,RES1,3001,,17,NE,1900,1900,3102,1,1,1683.145452,1683.145452,3505,NO,26.07,36.89,3,7.99,6106,113.996122,123.701693,133.447532,139.894983,I,Above,Gable,0,5701,Wood,31.47885567,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4405,NJBF000067191,4119 SOUTH BLVD,Atlantic City,NJ,39.35250937,-74.46151887,RES1,3001,,27,NE,1928,1928,3102,2,2,1354.052519,1354.052519,3505,NO,36.96,44.35,3,7.5,6106,114.023816,123.724008,133.472334,139.90953,I,Above,Flat,0,5701,Wood,40.65489071,0,0,,,,1,1,,0.03,nav,1,1928,2,, 4406,NJBF000070428,324 N TENNESSEE AVE,Atlantic City,NJ,39.36708098,-74.43161235,RES3C,3003,,14,E,1910,1910,3305,2,1,835.6555141,835.6555141,3507,NO,29.73,40.47,1,2.35,6106,114.49568,124.111187,133.90621,140.169106,I,Above,Gable,0,NaN,Wood,35.09623837,0,0,,,,2,2,,0.03,nav,1,1910,2,, 4407,NJBF000070431,326 N TENNESSEE AVE,Atlantic City,NJ,39.36709779,-74.43174173,RES3C,3003,,45,E,1900,1900,3305,1,3,1955.705262,1955.705262,3507,NO,10.99,22.87,1,-0.34,6106,114.492687,124.108633,133.903417,140.166817,I,Above,Gable,0,NaN,Wood,16.93308187,0,0,,,,2,2,,0.03,nav,1,1900,1,, 4408,NJBF000070410,424 N KENTUCKY AVE,Atlantic City,NJ,39.36699468,-74.43477354,RES1,3001,,16,NE,1962,1962,3101,1,1,1170.752086,1170.752086,3505,NO,17.88,24.5,3,-0.04,6106,114.428717,124.054371,133.843697,140.120437,I,Above,Gable,0,5701,Wood,21.19372569,0,0,,,,1,1,,0.03,nav,1,1962,1,, 4409,NJBF000068456,3023 FAIRMOUNT AVE,Atlantic City,NJ,39.3568143,-74.45064123,RES3A,3001,,45,NE,1905,1905,3301,2,2,1048.327016,1048.327016,3507,YES,26.01,32.97,1,-0.34,6106,114.207888,123.874165,133.638401,140.018299,I,Above,Flat,0,5701,Wood,29.4919813,0,0,,,,1,1,,0.03,nav,1,1905,2,, 4410,NJBF000068466,222 N MONTPELIER AVE,Atlantic City,NJ,39.35686231,-74.45258018,RES3A,3001,,45,NE,1922,1922,3301,2,2,2103.739625,2103.739625,3507,YES,30.76,44.17,1,1.84,6106,114.165045,123.838562,133.599761,139.986732,I,Above,Flat,0,5701,Wood,37.46381185,0,0,,,,1,1,,0.03,nav,1,1922,2,, 4411,NJBF000068255,3201 FAIRMOUNT AVE #B,Atlantic City,NJ,39.35615376,-74.45208515,RES3A,3001,999,NaN,NE,1969,0,3301,2,1,2262.200405,2262.200405,3507,YES,40.22,53.39,1,1.68,6106,114.184575,123.855106,133.617156,140.00523,I,Above,Flat,0,5701,Wood,46.80188802,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4412,NJBF000068249,101 N MORRIS AVE #A,Atlantic City,NJ,39.35614167,-74.44904389,RES3A,3001,,45,NE,1900,1900,3301,2,3,2421.624968,2421.624968,3505,NO,25.38,30.95,3,1.63,6106,114.250946,123.910269,133.677097,140.053545,I,Above,Hip,0,5701,Wood,28.16150481,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4413,NJBF000071558,800 ABSECON BLVD,Atlantic City,NJ,39.37092721,-74.43354052,GOV1,3003,,NaN,E,1969,0,3401,1,1,17761.61017,17761.61017,3507,NO,16.21,21.55,1,0.01,6106,114.409215,124.035508,133.826116,140.083332,I,Above,Flat,0,NaN,Wood,18.87981653,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4414,NJBF000071504,415 DELTA AVE,Atlantic City,NJ,39.37078791,-74.42490503,RES1,3001,,17,NE,1900,1900,3102,2,1,907.0176765,907.0176765,3505,NO,30.93,42.07,3,2.45,6106,114.595814,124.19501,134.001755,140.222076,I,Above,Flat,0,5701,Wood,36.49833276,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4415,NJBF000071627,450 N MARYLAND AVE,Atlantic City,NJ,39.371111,-74.4263795,RES1,3001,,17,NE,1900,1900,3102,2,1,661.3024009,661.3024009,3505,YES,29.05,38.02,3,5.2,6106,114.56056,124.164626,133.9685,140.194305,I,Above,Flat,0,5701,Wood,33.5363125,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4416,NJBF000071595,403 N DELAWARE AVE,Atlantic City,NJ,39.37103383,-74.42421476,RES1,3001,,17,NE,1900,1900,3102,1,1,2924.366883,2924.366883,3505,NO,10.22,19.36,3,-0.5,6106,114.607679,124.205084,134.013091,140.229463,I,Above,Gable,0,5701,Wood,14.792188,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4417,NJBF000071460,1037 CASPIAN AVE,Atlantic City,NJ,39.3706635,-74.42863,RES3C,3004,,17,ME,1960,1960,3301,1,1,1113.290429,1113.290429,3505,NO,11.44,20.94,3,-0.14,6106,114.517615,124.1281,133.927848,140.16511,I,Above,Gable,0,NaN,Wood,16.18799551,0,0,,,,1,1,,0.03,nav,1,1960,1,, 4418,NJBF000069049,606 N TRENTON AVE,Atlantic City,NJ,39.35853935,-74.46218708,RES1,3001,,16,NE,1910,1910,3101,1,1,1402.535216,1402.535216,3505,NO,26.11,38.11,3,8.59,6106,113.93442,123.646958,133.393407,139.805145,I,Above,Hip,0,5701,Wood,32.11317456,0,0,,,,1,1,,0.03,nav,1,1910,1,, 4419,NJBF000069017,730 N HARRISBURG AVE,Atlantic City,NJ,39.35840522,-74.46331471,RES1,3001,,17,NE,2000,2000,3101,1,1,1800.896786,1800.896786,3505,NO,17.24,31.75,3,6.46,6106,113.911318,123.628045,133.372887,139.788549,I,Above,Flat,0,5701,Wood,24.4961324,0,0,,,,1,1,,0.03,nav,1,2000,1,, 4420,NJBF000069063,734 N HARRISBURG AVE,Atlantic City,NJ,39.35863464,-74.46347003,RES1,3001,,45,NE,1925,1925,3101,2,3,1521.46162,1521.46162,3505,NO,33.85,44.96,3,6.35,6106,113.905109,123.622774,133.367341,139.782383,I,Above,Gable,0,5701,Wood,39.40506814,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4421,NJBF000068890,649 N HARRISBURG AVE,Atlantic City,NJ,39.35794492,-74.46235442,RES1,3001,,16,NE,1900,1900,3101,1,1,956.084425,956.084425,3505,NO,20.68,31.77,3,4.45,6106,113.938022,123.650333,133.396663,139.811629,I,Above,Flat,0,5701,Wood,26.22483756,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4422,NJBF000068914,651 N HARRISBURG AVE,Atlantic City,NJ,39.35800127,-74.46239127,RES1,3001,,16,NE,1900,1900,3101,1,1,975.9149394,975.9149394,3505,NO,18.79,32.07,3,7.46,6106,113.936525,123.649063,133.395328,139.810146,I,Above,Flat,0,5701,Wood,25.43289753,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4423,NJBF000069047,720 N ELBERON AVE,Atlantic City,NJ,39.35852779,-74.4646074,RES1,3001,,17,NE,1950,1950,3101,2,1,1565.911522,1565.911522,3505,NO,43.9,53.99,3,8.9,6106,113.88146,123.603416,133.346374,139.765128,I,Above,Gable,0,5701,Wood,48.94462246,0,0,,,,1,1,,0.03,nav,1,1950,2,, 4424,NJBF000069034,703 WISTERIA RD,Atlantic City,NJ,39.3584695,-74.4623155,RES1,3001,,17,NE,1900,1900,3101,1,1,1050.980712,1050.980712,3505,NO,14.56,26,3,2.03,6106,113.932447,123.645382,133.391658,139.804101,I,Above,Hip,0,5701,Wood,20.27740164,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4425,NJBF000070525,1919 MAGELLAN AVE,Atlantic City,NJ,39.3674655,-74.4407035,RES3B,3001,,NaN,ME,1969,0,3301,1,1,619.6318232,619.6318232,3505,YES,19.72,25.8,3,4.7,6106,114.295314,123.941308,133.720062,140.019187,I,Above,Flat,0,5701,Wood,22.75920196,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4426,NJBF000069040,650 N ALBANY AVE,Atlantic City,NJ,39.35850113,-74.46122936,COM1,3003,,NaN,ME,1969,0,3401,1,1,13277.00359,13277.00359,3507,NO,15.61,25.14,1,1.97,6106,113.955883,123.664659,133.412517,139.821547,I,Above,Flat,0,NaN,Wood,20.37280837,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4427,NJBF000071753,2304 HAMILTON AVE,Atlantic City,NJ,39.37150921,-74.45470114,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6516.269044,6516.269044,3505,NO,17.4,23.42,3,3.35,6106,113.944785,123.643924,133.397833,139.72948,I,Above,Flat,0,NaN,Wood,20.40937665,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4428,NJBF000072148,2005 W RIVERSIDE DR,Atlantic City,NJ,39.37272288,-74.45630564,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6764.904042,6764.904042,3505,NO,17.46,31.77,3,2.65,6106,113.896002,123.601912,133.352712,139.683925,I,Above,Flat,0,NaN,Wood,24.61362888,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4429,NJBF000069963,300-322 KENTUCKY AVE,Atlantic City,NJ,39.365225,-74.434321,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4153.45908,4153.45908,3505,NO,23.91,30.19,3,7.03,6106,114.459448,124.081295,133.871773,140.153034,I,Above,Flat,0,NaN,Wood,27.0502043,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4430,NJBF000069988,300-322 KENTUCKY AVE,Atlantic City,NJ,39.36533378,-74.43404809,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4087.34497,4087.34497,3505,NO,37.41,45.03,3,0.09,6106,114.464026,124.085125,133.876072,140.155766,I,Above,Flat,0,NaN,Wood,41.22185691,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4431,NJBF000069853,312 N INDIANA AVE,Atlantic City,NJ,39.36457344,-74.43639105,RES1,3001,,27,NE,2000,2000,3101,2,2,1770.373469,1770.373469,3507,NO,26.26,31.91,1,0.89,6106,114.422629,124.050442,133.83736,140.129813,I,Above,Gable,0,5701,Wood,29.08423948,0,0,,,,1,1,,0.03,nav,1,2000,2,, 4432,NJBF000069879,300 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36475388,-74.43502058,RES1,3001,,17,NE,1960,1960,3101,2,1,1595.87733,1595.87733,3507,NO,23.3,29.72,1,0.72,6106,114.449988,124.073501,133.862813,140.148783,I,Above,Hip,0,5701,Wood,26.50876505,0,0,,,,1,1,,0.03,nav,1,1960,2,, 4433,NJBF000069960,249 N KENTUCKY AVE RR,Atlantic City,NJ,39.36521435,-74.43309648,RES3D,3004,,45,E,1900,1900,3303,3,2,1918.677169,1918.677169,3505,YES,44.19,53.7,3,8.23,6106,114.485933,124.103756,133.896431,140.172445,I,Above,Hip,0,NaN,Wood,48.94673635,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4434,NJBF000069979,332 N DR MARTIN LUTHER K,Atlantic City,NJ,39.3653025,-74.4353895,RES1,3001,,17,NE,1964,1964,3101,1,1,1157.760312,1157.760312,3507,NO,10.49,16,1,-0.48,6106,114.435537,124.061008,133.84957,140.135105,I,Above,Gable,0,5701,Wood,13.24410299,0,0,,,,1,1,,0.03,nav,1,1964,1,, 4435,NJBF000069406,257 N TEXAS AVE,Atlantic City,NJ,39.3601649,-74.44573932,RES3A,3001,,27,NE,1900,1900,3301,2,2,1364.504201,1364.504201,3505,NO,44.41,52.45,3,8.22,6106,114.273467,123.927219,133.698914,140.046348,I,Above,Gable,0,5701,Wood,48.43212177,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4436,NJBF000069387,240 N TEXAS AVE,Atlantic City,NJ,39.360026,-74.4460305,RES3A,3001,331,NaN,NE,1969,0,3301,1,1,801.6551763,801.6551763,3505,NO,10.99,25.32,3,-1.57,6106,114.268817,123.923402,133.694637,140.043769,I,Above,Hip,0,5701,Wood,18.15958238,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4437,NJBF000069836,200 N KENTUCKY AVE,Atlantic City,NJ,39.36443604,-74.43415706,RES3C,3004,,NaN,ME,1969,0,3301,1,1,7568.250523,7568.250523,3505,NO,16.71,29.58,3,2.81,6106,114.472385,124.092609,133.883512,140.166921,I,Above,Flat,0,NaN,Wood,23.14694522,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4438,NJBF000069862,200 N KENTUCKY AVE,Atlantic City,NJ,39.36463042,-74.43392309,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4053.52764,4053.52764,3505,NO,28.19,42.07,3,0.41,6106,114.475104,124.094829,133.886118,140.167816,I,Above,Hip,0,NaN,Wood,35.13203604,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4439,NJBF000069894,200 N KENTUCKY AVE,Atlantic City,NJ,39.36483279,-74.43336708,RES3C,3004,,NaN,ME,1969,0,3301,1,1,11693.98835,11693.98835,3505,NO,17.46,25.04,3,0.92,6106,114.484645,124.102828,133.89508,140.173638,I,Above,Hip,0,NaN,Wood,21.24965512,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4440,NJBF000069793,200 N KENTUCKY AVE,Atlantic City,NJ,39.36402891,-74.43316455,RES3C,3004,,NaN,ME,1969,0,3301,1,1,5129.039336,5129.039336,3505,NO,24.33,34.67,3,8.83,6106,114.498596,124.11499,133.907729,140.188287,I,Above,Gable,0,NaN,Wood,29.50279637,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4441,NJBF000070065,1519 MEDITERRANEAN AVE,Atlantic City,NJ,39.36568826,-74.4327974,RES1,3001,,17,NE,1900,1900,3102,1,1,2066.673636,2066.673636,3505,NO,19.35,28.46,3,6.37,6106,114.486724,124.104217,133.897349,140.170367,I,Above,Hip,0,5701,Wood,23.90165738,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4442,NJBF000069989,204 N TENNESSEE AVE,Atlantic City,NJ,39.36533511,-74.43046922,RES3D,3004,,17,E,2002,2002,3303,2,1,1338.093997,1338.093997,3505,NO,27.37,42.19,3,5.68,6106,114.540933,124.150426,133.947839,140.211885,I,Above,Flat,0,NaN,Wood,34.77872918,0,0,,,,1,1,,0.03,nav,1,2002,2,, 4443,NJBF000069373,245 N TEXAS AVE,Atlantic City,NJ,39.35992641,-74.44554943,RES3A,3001,,27,NE,1900,1900,3301,2,2,1470.933755,1470.933755,3505,YES,39.01,48.43,3,1.42,6106,114.280494,123.933213,133.705254,140.052882,I,Above,Flat,0,5701,Wood,43.71910074,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4444,NJBF000068155,111 N CHELSEA AVE,Atlantic City,NJ,39.35583251,-74.45006531,RES3A,3001,,45,NE,1905,1905,3301,2,2,3214.358324,3214.358324,3505,YES,31.11,44.61,3,2.59,6106,114.232549,123.895096,133.660338,140.042015,I,Above,Flat,0,5701,Wood,37.8595867,0,0,,,,1,1,,0.03,nav,1,1905,2,, 4445,NJBF000068860,2831 FENTON AVE,Atlantic City,NJ,39.35782215,-74.44894748,RES3A,3001,,17,NE,1900,1900,3301,2,1,839.8357688,839.8357688,3505,NO,39.77,54.42,3,3.45,6106,114.232361,123.894056,133.660863,140.030167,I,Above,Flat,0,5701,Wood,47.09397261,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4446,NJBF000068179,115 N CHELSEA AVE,Atlantic City,NJ,39.35590336,-74.45017819,RES3A,3001,,45,NE,1950,1950,3301,2,3,1490.733789,1490.733789,3505,NO,30.77,43.83,3,0.88,6106,114.229223,123.892301,133.657358,140.039191,I,Above,Gable,0,5701,Wood,37.29983734,0,0,,,,1,1,,0.03,nav,1,1950,2,, 4447,NJBF000069295,228 N TEXAS AVE,Atlantic City,NJ,39.35955048,-74.44572722,RES3A,3001,,27,NE,1910,1910,3301,2,2,540.8296564,540.8296564,3505,YES,23.67,29.37,3,-2.82,6106,114.281206,123.933989,133.70579,140.055605,I,Above,Flat,0,5701,Wood,26.52007928,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4448,NJBF000068200,142 N CHELSEA AVE,Atlantic City,NJ,39.3559841,-74.45079895,RES3A,3001,,17,NE,1958,1958,3301,1,1,1724.590542,1724.590542,3505,NO,23.87,30.92,3,7.06,6106,114.214697,123.880195,133.64427,140.028165,I,Above,Gable,0,5701,Wood,27.39432388,0,0,,,,1,1,,0.03,nav,1,1958,1,, 4449,NJBF000068671,2903 FAIRMOUNT AVE,Atlantic City,NJ,39.35737909,-74.44918937,RES3A,3001,,27,NE,1900,1900,3301,2,2,888.0745975,888.0745975,3507,YES,38.79,44.64,1,0.95,6106,114.232538,123.894409,133.660882,140.032911,I,Above,Flat,0,5701,Wood,41.71495171,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4450,NJBF000068678,2901 FAIRMOUNT AVE,Atlantic City,NJ,39.35739469,-74.4491328,RES3A,3001,,27,NE,1900,1900,3301,2,2,854.5674759,854.5674759,3507,YES,35.48,49,1,1.52,6106,114.233559,123.895252,133.661812,140.03356,I,Above,Flat,0,5701,Wood,42.2401365,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4451,NJBF000069302,230 N TEXAS AVE,Atlantic City,NJ,39.35958834,-74.44574909,RES3A,3001,,45,NE,1910,1910,3301,2,2,582.016115,582.016115,3505,YES,35.88,49.42,3,8.5,6106,114.280266,123.933185,133.704945,140.054697,I,Above,Flat,0,5701,Wood,42.64940729,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4452,NJBF000070235,2011 BLAINE AVE,Atlantic City,NJ,39.366355,-74.4411535,RES3B,3001,,17,ME,1902,1902,3301,2,1,619.4348026,619.4348026,3505,YES,31.08,39.73,3,8.6,6106,114.298678,123.944863,133.723107,140.028287,I,Above,Flat,0,5701,Wood,35.40429724,0,0,,,,1,1,,0.03,nav,1,1902,2,, 4453,NJBF000067323,4106 STEWART AVE,Atlantic City,NJ,39.35308277,-74.46153173,RES1,3001,,17,NE,1900,1900,3102,1,1,2350.654601,2350.654601,3505,NO,21.05,26.28,3,4.98,6106,114.016319,123.717572,133.465826,139.900464,I,Above,Gable,0,5701,Wood,23.66416514,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4454,NJBF000070294,1916 BLAINE AVE,Atlantic City,NJ,39.36659755,-74.43967132,RES3B,3001,,16,ME,1950,1950,3301,1,1,715.343822,715.343822,3505,NO,25.17,33.86,3,7.04,6106,114.327829,123.969283,133.750042,140.048398,I,Above,Flat,0,NaN,Wood,29.51288648,0,0,,,,1,1,,0.03,nav,1,1950,1,, 4455,NJBF000067339,315 N DOVER AVE,Atlantic City,NJ,39.3531395,-74.46085848,RES1,3001,,17,NE,1900,1900,3102,1,1,3550.823515,3550.823515,3505,NO,14.05,26.39,3,-1.9,6106,114.030386,123.729116,133.478332,139.910503,I,Above,Hip,0,5701,Wood,20.22307473,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4456,NJBF000070782,1002 N MICHIGAN AVE,Atlantic City,NJ,39.3684065,-74.44213,RES3A,3001,,17,NE,1920,1920,3301,2,1,1360.327263,1360.327263,3505,NO,30.3,44.79,3,0.58,6106,114.253453,123.905378,133.68141,139.982428,I,Above,Hip,0,5701,Wood,37.544669,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4457,NJBF000070151,2022 BLAINE AVE,Atlantic City,NJ,39.36602943,-74.44108493,RES3B,3001,,17,ME,1950,1950,3301,1,1,1164.584153,1164.584153,3505,NO,12.83,23.69,3,1.82,6106,114.304001,123.949551,133.727988,140.034157,I,Above,Flat,0,NaN,Wood,18.2622795,0,0,,,,1,1,,0.03,nav,1,1950,1,, 4458,NJBF000067496,3509 WINCHESTER AVE,Atlantic City,NJ,39.353652,-74.4544795,RES3B,3001,29,NaN,E,1969,0,3303,3,1,1455.861959,1455.861959,3507,NO,53.36,65.07,1,1.05,6106,114.163445,123.838682,133.597278,140.004743,I,Above,Gable,0,NaN,Wood,59.21370828,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4459,NJBF000070189,611 N MICHIGAN AVE,Atlantic City,NJ,39.36614938,-74.44011675,RES3B,3001,,16,ME,1900,1900,3301,1,1,1435.645168,1435.645168,3505,NO,24.52,33.03,3,6.83,6106,114.323501,123.965907,133.745992,140.047848,I,Above,Hip,0,NaN,Wood,28.77866648,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4460,NJBF000070796,1004 N MICHIGAN AVE,Atlantic City,NJ,39.36846942,-74.44216284,RES3A,3001,,17,NE,1915,1915,3301,2,1,1144.880586,1144.880586,3505,NO,44.96,59.14,3,6.38,6106,114.252003,123.904111,133.680069,139.980966,I,Above,Hip,0,5701,Wood,52.04709475,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4461,NJBF000067383,4109 STEWART AVE,Atlantic City,NJ,39.35330881,-74.46180367,RES1,3001,,16,NE,1900,1900,3102,1,1,1090.802821,1090.802821,3505,NO,22.09,31.98,3,2.92,6106,114.007523,123.710228,133.458069,139.892563,I,Above,Hip,0,5701,Wood,27.03410346,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4462,NJBF000067286,288 N DOVER AVE,Atlantic City,NJ,39.3529154,-74.46130245,RES1,3001,,17,NE,1955,1955,3102,2,1,1042.454566,1042.454566,3505,NO,23.1,30.28,3,-0.76,6106,114.023469,123.723532,133.472132,139.906777,I,Above,Gable,0,5701,Wood,26.68855407,0,0,,,,1,1,,0.03,nav,1,1955,2,, 4463,NJBF000067688,3330 HARTFORD CT,Atlantic City,NJ,39.35417362,-74.45474086,RES3E,3004,29,NaN,E,1969,0,3303,3,1,17608.4581,17608.4581,3507,YES,48.18,59.18,1,0.09,6106,114.151226,123.828353,133.586514,139.992746,I,Above,Flat,0,NaN,Wood,53.6790105,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4464,NJBF000067837,3330 HARTFORD CT,Atlantic City,NJ,39.35469166,-74.45465446,RES3E,3004,29,NaN,E,1969,0,3303,3,1,515.3698501,515.3698501,3507,YES,55.7,62.79,1,1.48,6106,114.14667,123.824356,133.582603,139.986326,I,Above,Gable,0,NaN,Wood,59.24391845,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4465,NJBF000070439,706 N OHIO AVE,Atlantic City,NJ,39.3671423,-74.4396858,RES3B,3001,565,NaN,ME,1969,0,3301,3,1,1791.766073,1791.766073,3505,NO,50.76,59.95,3,3.18,6106,114.321092,123.96326,133.743865,140.040206,I,Above,Gable,0,NaN,Wood,55.35477099,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4466,NJBF000070657,625 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36794518,-74.43653702,RES1,3001,,16,NE,1962,1962,3101,1,1,1262.409889,1262.409889,3505,NO,25.15,37.55,3,6.34,6106,114.379568,124.012192,133.798157,140.078727,I,Above,Flat,0,5701,Wood,31.3501548,0,0,,,,1,1,,0.03,nav,1,1962,1,, 4467,NJBF000070438,1928 MAGELLAN AVE,Atlantic City,NJ,39.36713137,-74.44038258,RES3B,3001,,45,ME,1925,1925,3301,2,2,3961.725257,3961.725257,3505,YES,41.99,51.49,3,8.23,6106,114.306168,123.950678,133.730071,140.029224,I,Above,Flat,0,5701,Wood,46.74081663,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4468,NJBF000070196,1921 CASPIAN AVE,Atlantic City,NJ,39.3661734,-74.43962157,RES3B,3001,,17,ME,1900,1900,3301,2,1,968.7525223,968.7525223,3505,YES,37.78,45.69,3,8.65,6106,114.33391,123.974669,133.755609,140.055388,I,Above,Gable,0,NaN,Wood,41.73527664,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4469,NJBF000067613,340 N ELBERON AVE,Atlantic City,NJ,39.35397463,-74.46092115,RES1,3001,,17,NE,1900,1900,3102,2,1,1100.530617,1100.530617,3505,NO,38.1,49.05,3,2.46,6106,114.018542,123.718957,133.467994,139.896602,I,Above,Gable,0,5701,Wood,43.57648844,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4470,NJBF000068041,3401 FAIRMOUNT AVE,Atlantic City,NJ,39.35543306,-74.45434635,COM8,3001,,NaN,ME,1969,0,3401,2,1,8699.271464,8699.271464,3507,NO,33.85,46.69,1,2.19,6106,114.144186,123.82196,133.580603,139.980065,I,Above,Hip,0,NaN,Wood,40.26708004,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4471,NJBF000067357,371 N RICHMOND AVE,Atlantic City,NJ,39.35320951,-74.46336301,RES1,3001,,17,NE,1900,1900,3102,1,1,1769.264278,1769.264278,3505,NO,21.47,35.57,3,8.79,6106,113.974575,123.683205,133.428843,139.868731,I,Above,Gable,0,5701,Wood,28.51710253,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4472,NJBF000069417,1514 BELFIELD AVE,Atlantic City,NJ,39.36023663,-74.42926686,COM1,3003,,17,ME,1900,1900,3401,3,1,9125.798032,9125.798032,3507,YES,34.71,46.14,1,2.99,6106,114.628136,124.22605,134.026187,140.30236,I,Above,Flat,0,NaN,Wood,40.42588836,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4473,NJBF000072573,549 N NEW JERSEY AVE,Atlantic City,NJ,39.3741333,-74.42475091,RES1,3001,,16,NE,1900,1900,3102,1,1,1284.647948,1284.647948,3505,NO,21.7,31.02,3,8.04,6106,114.560393,124.162893,133.969087,140.177325,I,Above,Flat,0,5701,Wood,26.36287351,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4474,NJBF000072545,537 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37404366,-74.42191675,RES1,3001,,17,NE,2004,2004,3102,2,1,2253.331567,2253.331567,3505,YES,35.04,43.73,3,4.94,6106,114.621816,124.21584,134.02754,140.2234,I,Above,Gable,0,5701,Wood,39.38439176,0,0,,,,1,1,,0.03,nav,1,2004,2,, 4475,NJBF000070534,600 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36749318,-74.43686353,RES1,3001,,16,NE,1900,1900,3101,1,1,1116.376406,1116.376406,3507,NO,22.18,34.98,1,2.7,6106,114.377836,124.010995,133.796484,140.08008,I,Above,Hip,0,5701,Wood,28.57713349,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4476,NJBF000070238,625 N MICHIGAN AVE,Atlantic City,NJ,39.3663687,-74.44029633,RES3B,3001,,16,ME,1900,1900,3301,1,1,869.0246645,869.0246645,3505,NO,14.62,28.85,3,-1.43,6106,114.317034,123.96032,133.740045,140.041774,I,Above,Gable,0,NaN,Wood,21.73769363,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4477,NJBF000070688,624 GREEN ST,Atlantic City,NJ,39.36805629,-74.43626954,RES1,3001,,17,NE,1900,1900,3101,2,1,1245.687557,1245.687557,3505,NO,32.89,44.2,3,8.22,6106,114.384016,124.015893,133.802308,140.081366,I,Above,Gable,0,5701,Wood,38.54170294,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4478,NJBF000073054,HURON AVE & BRIGANTINE BL,Atlantic City,NJ,39.3770063,-74.4312627,GOV2,3001,,NaN,E,1969,0,3401,3,1,1232.047474,1232.047474,3507,NO,40.83,53.91,1,1.35,6106,114.388485,124.013451,133.806343,140.032176,I,Above,Flat,0,NaN,Wood,47.36824143,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4479,NJBF000072496,545 N CONNECTICUT AVE,Atlantic City,NJ,39.37387608,-74.42294933,RES1,3001,,17,NE,1900,1900,3102,2,1,1141.754146,1141.754146,3505,NO,29.57,38.58,3,2.26,6106,114.601769,124.198644,134.008385,140.209464,I,Above,Gable,0,5701,Wood,34.07234739,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4480,NJBF000072981,477 CARSON AVE,Atlantic City,NJ,39.37621081,-74.42329464,IND2,3001,510,17,ME,1910,1910,3401,1,1,3803.15543,3803.15543,3507,NO,16.31,31.02,1,1.6,6106,114.567656,124.167954,133.976348,140.171097,I,Above,Flat,0,NaN,Wood,23.66491786,0,0,,,,1,1,,0.03,nav,1,1910,1,, 4481,NJBF000072966,477 CARSON AVE,Atlantic City,NJ,39.37604946,-74.42346861,IND2,3001,510,17,ME,1910,1910,3401,1,1,1398.634212,1398.634212,3507,NO,10.25,23.09,1,-0.66,6106,114.565796,124.166445,133.974552,140.170617,I,Above,Hip,0,NaN,Wood,16.67124658,0,0,,,,1,1,,0.03,nav,1,1910,1,, 4482,NJBF000072725,611 N CONNECTICUT AVE,Atlantic City,NJ,39.37469619,-74.42347535,RES1,3001,,17,NE,2000,2000,3102,2,1,1147.971396,1147.971396,3505,NO,35.51,43.96,3,1.97,6106,114.581138,124.180438,133.988934,140.189601,I,Above,Gable,0,5701,Wood,39.73374422,0,0,,,,1,1,,0.03,nav,1,2000,2,, 4483,NJBF000073327,ATL.BRIG.BLVD& HURON AVE,Atlantic City,NJ,39.37984507,-74.42787714,COM8,3003,80,NaN,ME,1969,0,3401,3,1,413758.3471,413758.3471,3507,NO,42.05,50.11,1,2.36,6102,114.428964,124.045904,133.844158,140.046022,I,Above,Flat,0,NaN,Wood,46.07765613,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4484,NJBF000072462,,Atlantic City,NJ,39.3737615,-74.4217895,RES1,3001,,NaN,NE,2009,0,3102,2,1,2863.772523,2863.772523,3505,NO,32.41,38.31,3,8.61,6106,114.627768,124.22111,134.033132,140.229356,I,Above,Gable,0,5701,Wood,35.35756442,0,0,,,,1,1,,0.03,nav,1,2009,2,, 4485,NJBF000073445,HURON AVE,Atlantic City,NJ,39.38077002,-74.4357133,COM8,3003,,NaN,ME,1969,0,3401,2,1,81272.00358,81272.00358,3507,NO,34.42,44.08,1,2.38,6112,114.251074,123.892504,133.675554,139.905114,I,Above,Flat,0,NaN,Wood,39.24713503,0,0,,,,1,1,,1,nav,1,1969,2,, 4486,NJBF000072458,537 N NEW JERSEY AVE,Atlantic City,NJ,39.37374368,-74.42453607,RES1,3001,,16,NE,1900,1900,3102,1,1,833.9259545,833.9259545,3505,NO,20.95,31.11,3,7.91,6106,114.569452,124.170898,133.977613,140.186225,I,Above,Gable,0,5701,Wood,26.02959512,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4487,NJBF000072365,509 N CONNECTICUT AVE,Atlantic City,NJ,39.37341036,-74.4226358,RES1,3001,,17,NE,1930,1930,3102,1,1,1414.490608,1414.490608,3505,NO,23.79,38.02,3,5.8,6106,114.613808,124.209248,134.019718,140.220951,I,Above,Gable,0,5701,Wood,30.90579937,0,0,,,,1,1,,0.03,nav,1,1930,1,, 4488,NJBF000072371,615 SEWELL AVE,Atlantic City,NJ,39.373425,-74.4237445,RES1,3001,,NaN,NE,1969,0,3102,1,1,865.9439782,865.9439782,3505,NO,24.03,38.36,3,4.8,6106,114.590019,124.188758,133.997083,140.203249,I,Above,Flat,0,5701,Wood,31.19578931,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4489,NJBF000072143,508 N NEW JERSEY AVE,Atlantic City,NJ,39.37270917,-74.4242439,RES1,3001,,45,NE,1925,1925,3102,1,2,1233.348772,1233.348772,3505,NO,18.55,27.34,3,6.41,6106,114.587622,124.187059,133.994608,140.205437,I,Above,Gable,0,5701,Wood,22.94436887,0,0,,,,1,1,,0.03,nav,1,1925,1,, 4490,NJBF000072099,732 SEWELL AVE,Atlantic City,NJ,39.37258207,-74.42500539,RES1,3001,,27,NE,1900,1900,3102,2,2,878.9862167,878.9862167,3505,YES,28.17,34.3,3,5.02,6106,114.57285,124.174429,133.980553,140.195211,I,Above,Flat,0,5701,Wood,31.23899368,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4491,NJBF000072272,501 N CONNECTICUT AVE,Atlantic City,NJ,39.37311123,-74.4224464,RES1,3001,,17,NE,1900,1900,3102,2,1,1412.90492,1412.90492,3505,NO,26.73,40.82,3,4.4,6106,114.621308,124.215852,134.026767,140.228142,I,Above,Hip,0,5701,Wood,33.77420112,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4492,NJBF000071975,507 N DELAWARE AVE,Atlantic City,NJ,39.37217325,-74.42501279,RES1,3001,,45,NE,1955,1955,3102,2,2,2201.779907,2201.779907,3505,NO,36.61,44.33,3,-1.28,6106,114.577413,124.178556,133.984768,140.200856,I,Above,Gable,0,5701,Wood,40.46749771,0,0,,,,1,1,,0.03,nav,1,1955,2,, 4493,NJBF000071925,400 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3720126,-74.42113333,RES1,3001,738,NaN,NE,1900,0,3102,3,1,2600.82201,2600.82201,3505,YES,41.73,56.39,3,1.22,6106,114.661992,124.251396,134.065121,140.264144,I,Above,Hip,0,5701,Wood,49.0588412,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4494,NJBF000071978,423 N CONNECTICUT AVE,Atlantic City,NJ,39.37218046,-74.4217994,RES1,3001,,27,NE,1900,1900,3102,2,2,960.5444779,960.5444779,3505,YES,31,44.63,3,4.45,6106,114.645871,124.237433,134.049827,140.251358,I,Above,Flat,0,5701,Wood,37.81404162,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4495,NJBF000071968,421 N CONNECTICUT AVE,Atlantic City,NJ,39.37214409,-74.42177489,RES1,3001,,27,NE,1935,1935,3102,2,2,859.6362712,859.6362712,3505,YES,35.73,46.44,3,-1.64,6106,114.6468,124.238249,134.050698,140.252238,I,Above,Flat,0,5701,Wood,41.08607223,0,0,,,,1,1,,0.03,nav,1,1935,2,, 4496,NJBF000071945,415 N CONNECTICUT AVE,Atlantic City,NJ,39.37206086,-74.42173882,RES1,3001,,17,NE,1900,1900,3102,2,1,1201.605007,1201.605007,3505,NO,19.94,25.37,3,-1.84,6106,114.64853,124.239775,134.052313,140.253964,I,Above,Flat,0,5701,Wood,22.65297001,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4497,NJBF000071915,509 ADRIATIC AVE,Atlantic City,NJ,39.37198788,-74.42133265,RES1,3001,,45,NE,1923,1923,3102,2,2,2437.603323,2437.603323,3505,YES,34.38,45.76,3,7.98,6106,114.658024,124.247986,134.061329,140.261355,I,Above,Flat,0,5701,Wood,40.074112,0,0,,,,1,1,,0.03,nav,1,1923,2,, 4498,NJBF000072001,615 WABASH AVE,Atlantic City,NJ,39.37225199,-74.42266595,RES1,3001,,17,NE,1900,1900,3102,1,1,1575.015173,1575.015173,3505,NO,22.32,36.06,3,4.78,6106,114.626562,124.220774,134.031474,140.236722,I,Above,Hip,0,5701,Wood,29.1927061,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4499,NJBF000071994,450 N NEW JERSEY AVE,Atlantic City,NJ,39.37221629,-74.42393226,RES1,3001,,17,NE,1920,1920,3102,1,1,2531.388572,2531.388572,3505,NO,17.99,25.82,3,6.63,6106,114.599985,124.197928,134.006199,140.217297,I,Above,Hip,0,5701,Wood,21.90798061,0,0,,,,1,1,,0.03,nav,1,1920,1,, 4500,NJBF000072018,,Atlantic City,NJ,39.3722999,-74.42463512,RES1,3001,,NaN,NE,1969,0,3102,2,1,1248.556302,1248.556302,3505,NO,30.67,44.8,3,3.22,6106,114.584011,124.184159,133.991062,140.20503,I,Above,Gable,0,5701,Wood,37.73394577,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4501,NJBF000071924,439 N NEW JERSEY AVE,Atlantic City,NJ,39.3720125,-74.42331583,RES1,3001,,16,NE,1900,1900,3102,1,1,1278.364246,1278.364246,3505,NO,16.03,26.21,3,1.04,6106,114.615489,124.211355,134.020859,140.229863,I,Above,Hip,0,5701,Wood,21.11942697,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4502,NJBF000071848,451 N DELAWARE AVE,Atlantic City,NJ,39.3718071,-74.42477225,RES1,3001,,17,NE,1958,1958,3102,1,1,1634.491616,1634.491616,3505,NO,14.77,27.45,3,-2.72,6106,114.586802,124.186798,133.99356,140.209817,I,Above,Gable,0,5701,Wood,21.11140025,0,0,,,,1,1,,0.03,nav,1,1958,1,, 4503,NJBF000071892,711 WABASH AVE,Atlantic City,NJ,39.37191682,-74.42393889,RES1,3001,,45,NE,1910,1910,3102,2,2,545.360258,545.360258,3505,YES,35.86,49.68,3,5.43,6106,114.603303,124.200921,134.009251,140.221392,I,Above,Gable,0,5701,Wood,42.76564006,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4504,NJBF000071079,428 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36933552,-74.43012682,RES1,3001,,17,NE,2007,2007,3103,2,1,2292.997972,2292.997972,3505,NO,39.62,48.52,3,1.58,6106,114.501029,124.114631,133.911906,140.160351,I,Above,Hip,0,5701,Wood,44.0719076,0,0,,,,1,1,,0.03,nav,1,2007,2,, 4505,NJBF000067943,477 N ANNAPOLIS AVE,Atlantic City,NJ,39.355094,-74.46371277,RES1,3001,,45,NE,1900,1900,3102,2,2,1609.287913,1609.287913,3505,YES,27.03,36.07,3,-2.86,6106,113.943378,123.656548,133.401438,139.833653,I,Above,Gable,0,5701,Wood,31.54902895,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4506,NJBF000071201,710 N NEW YORK AVE,Atlantic City,NJ,39.3697465,-74.4362065,RES3C,3004,,NaN,ME,1969,0,3301,2,1,507.8012814,507.8012814,3505,NO,33.08,43.87,3,3.58,6106,114.365629,123.999254,133.785358,140.057871,I,Above,Flat,0,NaN,Wood,38.47618666,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4507,NJBF000071189,710 N NEW YORK AVE,Atlantic City,NJ,39.36970935,-74.4361803,RES3C,3004,,NaN,ME,1969,0,3301,2,1,568.2834206,568.2834206,3505,NO,39.98,54.13,3,4.23,6106,114.36662,124.000118,133.786279,140.058824,I,Above,Gable,0,NaN,Wood,47.0577619,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4508,NJBF000071176,710 N NEW YORK AVE,Atlantic City,NJ,39.36967115,-74.4361552,RES3C,3004,,NaN,ME,1969,0,3301,1,1,522.3138483,522.3138483,3505,NO,10.5,17.99,3,-0.82,6106,114.367601,124.000975,133.78719,140.059775,I,Above,Gable,0,NaN,Wood,14.24836134,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4509,NJBF000071132,710 N NEW YORK AVE,Atlantic City,NJ,39.36952044,-74.43605241,RES3C,3004,,NaN,ME,1969,0,3301,1,1,578.2771041,578.2771041,3505,NO,19.78,30.58,3,5.85,6106,114.371579,124.004445,133.790885,140.063611,I,Above,Flat,0,NaN,Wood,25.17858997,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4510,NJBF000071116,710 N NEW YORK AVE,Atlantic City,NJ,39.369481,-74.436027,RES3C,3004,,NaN,ME,1969,0,3301,1,1,515.2166585,515.2166585,3505,NO,15.07,24.33,3,-0.32,6106,114.372572,124.005312,133.791807,140.064576,I,Above,Gable,0,NaN,Wood,19.69894873,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4511,NJBF000071107,710 N NEW YORK AVE,Atlantic City,NJ,39.369444,-74.4359995,RES3C,3004,,NaN,ME,1969,0,3301,1,1,549.9148918,549.9148918,3505,NO,18,30.15,3,-1.46,6106,114.373606,124.006213,133.792768,140.06556,I,Above,Flat,0,NaN,Wood,24.07599072,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4512,NJBF000071231,710 N NEW YORK AVE,Atlantic City,NJ,39.369852,-74.435086,RES3C,3004,,NaN,ME,1969,0,3301,2,1,1803.657487,1803.657487,3505,NO,24.23,35.03,3,1.54,6106,114.388497,124.018587,133.806678,140.074219,I,Above,Flat,0,NaN,Wood,29.62907071,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4513,NJBF000071261,1423 MAGELLAN AVE,Atlantic City,NJ,39.3699735,-74.4344205,RES3C,3001,,17,ME,1900,1900,3301,2,1,1503.723965,1503.723965,3505,YES,37.56,42.82,3,1.04,6106,114.401379,124.029449,133.818711,140.083059,I,Above,Gable,0,NaN,Wood,40.18843583,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4514,NJBF000071887,414 N CONNECTICUT AVE,Atlantic City,NJ,39.37190455,-74.42212946,RES1,3001,,17,NE,1930,1930,3102,2,1,1267.909755,1267.909755,3505,NO,32.86,43.14,3,8.91,6106,114.642033,124.234245,134.046064,140.250022,I,Above,Gable,0,5701,Wood,38.00427833,0,0,,,,1,1,,0.03,nav,1,1930,2,, 4515,NJBF000067903,465 N ANNAPOLIS AVE,Atlantic City,NJ,39.35495222,-74.46360334,RES1,3001,,17,NE,1900,1900,3102,1,1,1131.042884,1131.042884,3505,NO,11.44,20.95,3,-0.93,6106,113.947557,123.660063,133.405131,139.837676,I,Above,Hip,0,5701,Wood,16.19379821,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4516,NJBF000071663,837 N NEW YORK AVE #A,Atlantic City,NJ,39.37121503,-74.43455812,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4608.78972,4608.78972,3505,NO,28.3,39.2,3,-2.92,6106,114.384021,124.013895,133.802571,140.062924,I,Above,Flat,0,NaN,Wood,33.75047108,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4517,NJBF000071532,837 N NEW YORK AVE #A,Atlantic City,NJ,39.37084817,-74.43430025,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4097.625757,4097.625757,3505,NO,33.47,43.96,3,7.89,6106,114.39382,124.022468,133.811715,140.072357,I,Above,Flat,0,NaN,Wood,38.71694029,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4518,NJBF000071338,837 N NEW YORK AVE #A,Atlantic City,NJ,39.370272,-74.433784,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2551.324784,2551.324784,3505,NO,39.96,52.84,3,3.88,6106,114.411603,124.037952,133.828292,140.088908,I,Above,Gable,0,NaN,Wood,46.40156091,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4519,NJBF000071249,837 N NEW YORK AVE #A,Atlantic City,NJ,39.36991534,-74.43466451,RES3C,3004,,NaN,ME,1969,0,3301,1,1,2600.091781,2600.091781,3505,NO,16.86,29.32,3,5.19,6106,114.396819,124.025613,133.814448,140.080022,I,Above,Gable,0,NaN,Wood,23.08609415,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4520,NJBF000071416,837 N NEW YORK AVE #A,Atlantic City,NJ,39.37053326,-74.43495356,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4104.457233,4104.457233,3505,NO,29.24,36.2,3,4.78,6106,114.383415,124.013832,133.80198,140.066467,I,Above,Flat,0,NaN,Wood,32.72388395,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4521,NJBF000071549,837 N NEW YORK AVE #A,Atlantic City,NJ,39.3709025,-74.434769,RES3C,3001,,NaN,ME,1969,0,3301,2,1,988.1959447,988.1959447,3505,NO,29.55,42.22,3,-2.16,6106,114.383111,124.013331,133.801712,140.064081,I,Above,Flat,0,NaN,Wood,35.88545416,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4522,NJBF000071214,501 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36978656,-74.43117311,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,6791.256855,6791.256855,3505,NO,47.18,57.13,3,2.91,6106,114.473322,124.09077,133.886011,140.137361,I,Above,Flat,0,NaN,Wood,52.15034597,0,0,,,,1,1,,0.03,nav,1,1950,3,, 4523,NJBF000071109,658 N NEW YORK AVE,Atlantic City,NJ,39.36944856,-74.43480832,RES1,3001,,17,NE,1900,1900,3101,1,1,1147.850121,1147.850121,3505,NO,25.8,36.94,3,7.45,6106,114.399177,124.027905,133.816602,140.08448,I,Above,Gable,0,5701,Wood,31.37127689,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4524,NJBF000071354,925 CASPIAN AVE,Atlantic City,NJ,39.37032125,-74.42809443,RES3C,3004,,NaN,ME,1969,0,3301,1,1,6571.638752,6571.638752,3505,NO,26.39,32.01,3,8.94,6106,114.533076,124.141494,133.942326,140.178438,I,Above,Flat,0,NaN,Wood,29.20308482,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4525,NJBF000071897,437 N NEW JERSEY AVE,Atlantic City,NJ,39.37193083,-74.42326386,RES1,3001,,45,NE,1900,1900,3102,2,2,1241.650005,1241.650005,3505,NO,27.16,33.38,3,-2.86,6106,114.617538,124.213154,134.022777,140.231819,I,Above,Hip,0,5701,Wood,30.27103243,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4526,NJBF000071752,700 N VIRGINIA AVE,Atlantic City,NJ,39.3715092,-74.42938868,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4041.203136,4041.203136,3505,NO,27.52,42.49,3,-0.02,6106,114.491531,124.105342,133.90346,140.141036,I,Above,Flat,0,NaN,Wood,35.00457378,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4527,NJBF000071763,700 N VIRGINIA AVE,Atlantic City,NJ,39.371545,-74.4290285,RES3C,3004,,NaN,ME,1969,0,3301,2,1,3658.172524,3658.172524,3505,NO,42.02,47.41,3,3.43,6106,114.498824,124.111555,133.910336,140.146233,I,Above,Flat,0,NaN,Wood,44.71106234,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4528,NJBF000071793,700 N VIRGINIA AVE,Atlantic City,NJ,39.3716525,-74.4285735,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4658.517882,4658.517882,3505,NO,46.72,59.9,3,8,6106,114.507334,124.118772,133.918379,140.151923,I,Above,Flat,0,NaN,Wood,53.30756652,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4529,NJBF000071896,700 N VIRGINIA AVE,Atlantic City,NJ,39.37193,-74.4286965,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4661.795235,4661.795235,3505,NO,31.61,46.2,3,1.21,6106,114.501471,124.1136,133.912902,140.146011,I,Above,Flat,0,NaN,Wood,38.90529222,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4530,NJBF000071824,700 N VIRGINIA AVE,Atlantic City,NJ,39.371741,-74.428355,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4748.815603,4748.815603,3505,NO,13.21,20.2,3,-0.62,6106,114.510981,124.121842,133.921835,140.154126,I,Above,Flat,0,NaN,Wood,16.7021933,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4531,NJBF000071221,,Atlantic City,NJ,39.36980328,-74.43197336,RES3D,3001,,NaN,E,1969,0,3303,3,1,4662.320458,4662.320458,3505,NO,52.66,59.05,3,5.66,6106,114.455966,124.075977,133.869744,140.124449,I,Above,Flat,0,NaN,Wood,55.85718234,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4532,NJBF000071275,,Atlantic City,NJ,39.370032,-74.4324035,RES3D,3001,,NaN,E,1969,0,3303,4,1,1788.317411,1788.317411,3505,NO,64.9,78.17,3,1.43,6106,114.444042,124.065694,133.858614,140.114319,I,Above,Flat,0,NaN,Wood,71.53773103,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4533,NJBF000071335,,Atlantic City,NJ,39.3702638,-74.43235587,RES3D,3001,,NaN,E,1969,0,3303,3,1,6538.721839,6538.721839,3505,NO,53.79,67.83,3,-0.5,6106,114.44237,124.064134,133.857084,140.111749,I,Above,Flat,0,NaN,Wood,60.81337062,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4534,NJBF000071811,628 WABASH AVE,Atlantic City,NJ,39.37169637,-74.42308956,RES1,3001,,17,NE,1900,1900,3102,2,1,991.0017685,991.0017685,3505,NO,35.75,47.56,3,3.16,6106,114.623977,124.218798,134.028811,140.237851,I,Above,Hip,0,5701,Wood,41.65249477,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4535,NJBF000067881,437 N DOVER AVE,Atlantic City,NJ,39.35486966,-74.46233319,RES1,3001,,16,NE,1900,1900,3102,1,1,1656.307409,1656.307409,3505,NO,24.8,35.88,3,7.01,6106,113.976435,123.683841,133.430732,139.859768,I,Above,Gable,0,5701,Wood,30.34269294,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4536,NJBF000070553,821 N MICHIGAN AVE,Atlantic City,NJ,39.36755663,-74.44112981,RES3B,3001,,27,ME,1900,1900,3301,2,2,740.1002203,740.1002203,3505,YES,37.8,45.27,3,4.38,6106,114.285018,123.932568,133.710558,140.011005,I,Above,Gable,0,5701,Wood,41.53393684,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4537,NJBF000067888,405 N ELBERON AVE,Atlantic City,NJ,39.35491383,-74.46114149,RES1,3001,,17,NE,1900,1900,3102,2,1,1085.478819,1085.478819,3505,NO,36.09,42.83,3,5.31,6106,114.002018,123.704861,133.453463,139.878533,I,Above,Flat,0,5701,Wood,39.46108208,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4538,NJBF000072333,,Atlantic City,NJ,39.37332467,-74.45602349,RES3C,3001,,NaN,ME,1969,0,3301,2,1,5151.235689,5151.235689,3505,NO,37.21,47.45,3,7.94,6106,113.895347,123.60066,133.351652,139.679445,I,Above,Flat,0,NaN,Wood,42.33206022,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4539,NJBF000072378,1501 N MICHIGAN AVE,Atlantic City,NJ,39.37345684,-74.44732303,RES1,3001,,17,NE,1900,1900,3102,1,1,1406.099318,1406.099318,3505,NO,18.77,26.22,3,0.69,6106,114.082815,123.757415,133.522829,139.82251,I,Above,Hip,0,5701,Wood,22.49915519,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4540,NJBF000071814,1700 HURON AVE,Atlantic City,NJ,39.371712,-74.440628,EDU1,3003,,NaN,E,1969,0,3401,2,1,1931.057938,1931.057938,3507,NO,24.69,38.04,1,2.17,6106,114.247539,123.897845,133.675505,139.957956,I,Above,Gable,0,NaN,Wood,31.36513802,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4541,NJBF000071865,1700 HURON AVE,Atlantic City,NJ,39.37185534,-74.44027252,EDU1,3003,,NaN,E,1969,0,3401,2,1,1830.623942,1830.623942,3507,NO,31.76,37.8,1,0.57,6106,114.253553,123.902813,133.681052,139.961601,I,Above,Gable,0,NaN,Wood,34.78165235,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4542,NJBF000072336,1700 HURON AVE,Atlantic City,NJ,39.37332937,-74.44072266,COM8,3002,,NaN,ME,1969,0,3401,1,1,5565.682863,5565.682863,3507,NO,17.82,25.64,1,-0.35,6106,114.226943,123.879067,133.65601,139.932571,I,Above,Flat,0,NaN,Wood,21.73032133,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4543,NJBF000067770,444 N ANNAPOLIS AVE,Atlantic City,NJ,39.35444234,-74.46379459,RES1,3001,,17,NE,1900,1900,3102,1,1,2618.476493,2618.476493,3505,NO,19.12,33.73,3,8.58,6106,113.949692,123.66211,133.40698,139.842475,I,Above,Hip,0,5701,Wood,26.4237235,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4544,NJBF000072265,2006 BEACH AVE,Atlantic City,NJ,39.37308238,-74.45630908,RES3C,3001,999,NaN,ME,1969,0,3301,2,1,3721.155294,3721.155294,3505,NO,34.26,45.99,3,8.48,6106,113.891868,123.598048,133.348685,139.678358,I,Above,Flat,0,NaN,Wood,40.12673559,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4545,NJBF000072301,2006 BEACH AVE,Atlantic City,NJ,39.37321677,-74.45659196,RES3C,3001,999,NaN,ME,1969,0,3301,2,1,5284.82741,5284.82741,3505,NO,36.19,44.54,3,4.21,6106,113.884175,123.59148,133.341601,139.67151,I,Above,Flat,0,NaN,Wood,40.36404843,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4546,NJBF000070619,601 GREEN ST,Atlantic City,NJ,39.36780937,-74.43566929,RES1,3001,,16,NE,1900,1900,3101,1,1,1142.213565,1142.213565,3505,NO,14.86,26.15,3,-1.81,6106,114.399861,124.029462,133.817007,140.094497,I,Above,Gable,0,5701,Wood,20.50571389,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4547,NJBF000071453,,Atlantic City,NJ,39.37064748,-74.47653484,COM1,3003,,NaN,ME,1969,0,3401,1,1,9131.541359,9131.541359,3507,NO,18.88,31.35,1,0.05,6106,113.476106,123.258416,132.979965,139.366608,I,Above,Hip,0,NaN,Wood,25.11243595,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4548,NJBF000070655,611 GREEN ST,Atlantic City,NJ,39.36793774,-74.43575692,RES1,3001,,16,NE,1900,1900,3101,1,1,1099.17067,1099.17067,3505,NO,21.38,34.42,3,8.37,6106,114.39645,124.026496,133.813855,140.091233,I,Above,Gable,0,5701,Wood,27.89781886,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4549,NJBF000070571,600 GREEN ST,Atlantic City,NJ,39.36766006,-74.43600482,RES1,3001,,16,NE,1900,1900,3101,1,1,1174.393164,1174.393164,3505,NO,20.23,32.18,3,6.71,6106,114.394377,124.024902,133.811882,140.091315,I,Above,Flat,0,5701,Wood,26.20319976,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4550,NJBF000068504,513 N HARRISBURG AVE,Atlantic City,NJ,39.35695459,-74.46154649,RES1,3001,,16,NE,1900,1900,3101,1,1,891.7919958,891.7919958,3505,NO,22.97,36.92,3,6.38,6106,113.967891,123.675567,133.423261,139.840313,I,Above,Gable,0,5701,Wood,29.9441869,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4551,NJBF000070963,1808 MCKINLEY AVE,Atlantic City,NJ,39.36898761,-74.43986385,RES1,3001,,33,NE,1925,1925,3102,2,1,660.5438453,660.5438453,3505,YES,28.9,37.17,3,3.81,6106,114.295609,123.940518,133.720337,140.010322,I,Above,Gable,0,5701,Wood,33.03521936,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4552,NJBF000070945,1812 MCKINLEY AVE,Atlantic City,NJ,39.36894535,-74.43996453,RES1,3001,,33,NE,1900,1900,3102,2,1,624.4098371,624.4098371,3505,YES,28.67,41.88,3,4.76,6106,114.29393,123.939131,133.718784,140.00933,I,Above,Gable,0,5701,Wood,35.27830315,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4553,NJBF000068430,,Atlantic City,NJ,39.3567285,-74.4613935,RES1,3001,,NaN,NE,1969,0,3101,1,1,1106.41203,1106.41203,3505,NO,24.16,33.19,3,8.48,6106,113.974028,123.680761,133.428717,139.846327,I,Above,Gable,0,5701,Wood,28.67180867,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4554,NJBF000071649,655 ABSECON BLVD,Atlantic City,NJ,39.37117156,-74.42992744,RES3E,3003,,NaN,E,1969,0,3305,6,1,18050.77161,18050.77161,3507,NO,97.93,109.46,1,2.24,6106,114.483915,124.099028,133.896231,140.137312,I,Above,Flat,0,NaN,Wood,103.6995737,0,0,,,,2,2,,0.03,nav,1,1969,6,, 4555,NJBF000070313,2018 MAGELLAN AVE,Atlantic City,NJ,39.36666546,-74.44157925,RES3B,3001,,17,ME,1900,1900,3301,2,1,847.0948539,847.0948539,3505,NO,29.15,43.12,3,3.12,6106,114.285809,123.933827,133.711262,140.016917,I,Above,Hip,0,5701,Wood,36.13339251,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4556,NJBF000070332,618 N OHIO AVE,Atlantic City,NJ,39.36673514,-74.4393481,RES3B,3001,,27,ME,1920,1920,3301,2,2,1119.0202,1119.0202,3505,YES,35.49,42.49,3,3.54,6106,114.333187,123.973719,133.75501,140.051549,I,Above,Gable,0,NaN,Wood,38.9911612,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4557,NJBF000070192,500 N INDIANA AVE,Atlantic City,NJ,39.3661556,-74.43750284,RES3B,3001,,45,ME,1925,1925,3301,3,3,1633.4964,1633.4964,3505,YES,43.58,55.75,3,2.7,6106,114.379842,124.013457,133.798111,140.089326,I,Above,Gable,0,NaN,Wood,49.6677501,0,0,,,,1,1,,0.03,nav,1,1925,3,, 4558,NJBF000071881,1419 MARMORA AVE,Atlantic City,NJ,39.37189927,-74.43588056,COM7,3003,100,NaN,ME,1969,0,3401,1,1,16818.45683,16818.45683,3507,NO,19.81,33.86,1,2.6,6106,114.347665,123.98253,133.768607,140.031794,I,Above,Flat,0,NaN,Wood,26.83265986,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4559,NJBF000070215,502 N INDIANA AVE,Atlantic City,NJ,39.36625495,-74.43750776,RES3B,3001,,17,ME,1900,1900,3301,2,1,1132.666018,1132.666018,3505,NO,46.84,59.85,3,8.07,6106,114.378562,124.01232,133.796944,140.08781,I,Above,Hip,0,NaN,Wood,53.34459411,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4560,NJBF000070010,1919 HUMMOCK AVE,Atlantic City,NJ,39.365467,-74.439366,RES3B,3001,,16,ME,2011,2011,3301,1,1,1040.171161,1040.171161,3505,NO,9.22,14.66,3,-1.72,6106,114.347803,123.986797,133.768335,140.069762,I,Above,Flat,0,NaN,Wood,11.94073795,0,0,,,,1,1,,0.03,nav,1,2011,1,, 4561,NJBF000070055,511 N MICHIGAN AVE,Atlantic City,NJ,39.36563834,-74.43979605,RES3B,3001,,45,ME,1900,1900,3301,3,2,976.9410767,976.9410767,3505,YES,42.81,48.31,3,3.59,6106,114.336487,123.977158,133.757912,140.060429,I,Above,Hip,0,NaN,Wood,45.56074919,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4562,NJBF000070146,1815 HUMMOCK AVE,Atlantic City,NJ,39.36601,-74.43799312,RES3B,3001,,45,ME,1900,1900,3301,3,3,1196.095546,1196.095546,3505,YES,51.3,58.5,3,3.17,6106,114.371001,124.006069,133.789892,140.083669,I,Above,Hip,0,NaN,Wood,54.9012354,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4563,NJBF000070013,512 N MICHIGAN AVE,Atlantic City,NJ,39.3654876,-74.44017048,RES3B,3001,,17,ME,1925,1925,3301,2,1,1227.817217,1227.817217,3505,NO,32.01,42.24,3,6.19,6106,114.330186,123.971935,133.752072,140.056667,I,Above,Hip,0,NaN,Wood,37.12529131,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4564,NJBF000070074,2015 CASPIAN AVE,Atlantic City,NJ,39.365711,-74.4408825,RES3B,3001,,17,ME,2001,2001,3301,1,1,1417.527307,1417.527307,3505,NO,25,37.33,3,8.55,6106,114.312133,123.956594,133.735451,140.042042,I,Above,Gable,0,NaN,Wood,31.16534296,0,0,,,,1,1,,0.03,nav,1,2001,1,, 4565,NJBF000070178,701 N ARKANSAS AVE,Atlantic City,NJ,39.36609126,-74.44170006,RES3B,3001,,45,ME,1900,1900,3301,2,2,1352.804284,1352.804284,3505,NO,37.76,48.66,3,1.2,6106,114.28997,123.937699,133.715063,140.023416,I,Above,Hip,0,5701,Wood,43.21132637,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4566,NJBF000070041,1913 HUMMOCK AVE,Atlantic City,NJ,39.36558984,-74.43914461,RES3B,3001,,15,ME,2009,2009,3301,2,1,823.3123397,823.3123397,3505,NO,28.29,37.78,3,-1.34,6106,114.351116,123.989521,133.771418,140.071481,I,Above,Gable,0,NaN,Wood,33.03308215,0,0,,,,1,1,,0.03,nav,1,2009,2,, 4567,NJBF000070115,,Atlantic City,NJ,39.365882,-74.441596,RES3B,3001,,NaN,ME,1900,0,3301,2,1,1016.066076,1016.066076,3505,NO,24.21,32.08,3,1.92,6106,114.294692,123.941805,133.719395,140.028149,I,Above,Gable,0,NaN,Wood,28.1469641,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4568,NJBF000070735,915 N MICHIGAN AVE,Atlantic City,NJ,39.36822229,-74.44157007,RES3B,3001,,17,ME,1900,1900,3301,2,1,1140.107082,1140.107082,3505,YES,27.3,37.05,3,5.04,6106,114.267711,123.917523,133.694575,139.994155,I,Above,Gable,0,5701,Wood,32.17434807,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4569,NJBF000070798,710 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36847584,-74.43753163,RES1,3001,,17,NE,1962,1962,3102,1,1,1596.31812,1596.31812,3505,NO,14.36,25.47,3,3.2,6106,114.351898,123.988443,133.77251,140.05515,I,Above,Flat,0,5701,Wood,19.9148715,0,0,,,,1,1,,0.03,nav,1,1962,1,, 4570,NJBF000070995,1605 MAGELLAN AVE,Atlantic City,NJ,39.36908211,-74.43650041,RES1,3001,,45,NE,1900,1900,3101,2,2,2031.764896,2031.764896,3505,YES,34.16,46.85,3,2.54,6106,114.367045,124.000883,133.786634,140.062817,I,Above,Flat,0,5701,Wood,40.50505117,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4571,NJBF000071157,724 N KENTUCKY AVE,Atlantic City,NJ,39.36959968,-74.43651653,RES1,3001,,16,NE,1900,1900,3101,1,1,1101.62174,1101.62174,3505,NO,20.2,29.11,3,8.49,6106,114.360634,123.995115,133.7807,140.055021,I,Above,Hip,0,5701,Wood,24.65544178,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4572,NJBF000070776,1928 MCKINLEY AVE,Atlantic City,NJ,39.36839,-74.441234,RES3B,3001,,17,ME,1920,1920,3301,2,1,1273.856966,1273.856966,3505,NO,28.9,35.24,3,3.8,6106,114.273007,123.921868,133.699458,139.997086,I,Above,Gable,0,5701,Wood,32.06720359,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4573,NJBF000070603,701 HOBART AVE,Atlantic City,NJ,39.367758,-74.4387335,RES1,3001,,17,NE,2000,2000,3102,2,1,647.4298088,647.4298088,3505,NO,32.34,38.95,3,0.44,6106,114.334418,123.974121,133.756245,140.046432,I,Above,Flat,0,5701,Wood,35.64881577,0,0,,,,1,1,,0.03,nav,1,2000,2,, 4574,NJBF000071199,810 GREEN ST,Atlantic City,NJ,39.369744,-74.4373925,RES1,3001,,16,NE,1900,1900,3101,1,1,1108.361779,1108.361779,3505,NO,18.59,29.18,3,1.58,6106,114.340087,123.977611,133.761593,140.038908,I,Above,Gable,0,5701,Wood,23.88931579,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4575,NJBF000070616,810 N OHIO AVE,Atlantic City,NJ,39.36778974,-74.44008144,RES3B,3001,,17,ME,1920,1920,3301,2,1,1199.631829,1199.631829,3505,YES,39.37,52.61,3,7.19,6106,114.304945,123.949216,133.728971,140.024402,I,Above,Gable,0,5701,Wood,45.98902962,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4576,NJBF000069975,1908 HUMMOCK AVE,Atlantic City,NJ,39.3652885,-74.4387715,IND2,3001,,NaN,ME,1969,0,3401,1,1,3965.635635,3965.635635,3507,NO,21.59,27.14,1,2.26,6106,114.362754,123.999508,133.782117,140.081801,I,Above,Flat,0,NaN,Wood,24.363421,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4577,NJBF000072660,1618 MADISON AVE,Atlantic City,NJ,39.37444045,-74.44993673,RES1,3001,,17,NE,1900,1900,3102,2,1,1655.642928,1655.642928,3505,NO,24.81,32.78,3,2.69,6106,114.015019,123.699446,133.460019,139.764362,I,Above,Gable,0,5701,Wood,28.79758375,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4578,NJBF000070672,1739 LINCOLN AVE,Atlantic City,NJ,39.36800862,-74.43818134,RES1,3001,,16,NE,1900,1900,3102,1,1,1114.415815,1114.415815,3505,NO,19.31,32.18,3,0.87,6106,114.343379,123.981534,133.76457,140.051588,I,Above,Gable,0,5701,Wood,25.74165317,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4579,NJBF000072627,1610 MADISON AVE,Atlantic City,NJ,39.374324,-74.4495425,RES1,3001,,17,NE,1900,1900,3102,2,1,1149.46845,1149.46845,3505,NO,26.61,37.42,3,4.08,6106,114.024874,123.707842,133.469129,139.77267,I,Above,Hip,0,5701,Wood,32.01429348,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4580,NJBF000070858,924 N OHIO AVE,Atlantic City,NJ,39.36866343,-74.44074758,RES3B,3001,29,45,ME,2009,2009,3301,1,2,1460.814833,1460.814833,3505,NO,26.68,38.23,3,7.31,6106,114.280315,123.927838,133.7062,140.000887,I,Above,Flat,0,5701,Wood,32.45360604,0,0,,,,1,1,,0.03,nav,1,2009,1,, 4581,NJBF000072506,2010 KUEHNLE AVE,Atlantic City,NJ,39.373921,-74.450808,RES1,3001,,17,NE,1900,1900,3102,1,1,1310.391206,1310.391206,3505,NO,22.65,33.88,3,5.83,6106,114.001987,123.689092,133.44842,139.757718,I,Above,Flat,0,5701,Wood,28.26479851,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4582,NJBF000072571,1625 N MICHIGAN AVE,Atlantic City,NJ,39.37412619,-74.44967547,RES1,3001,,17,NE,2004,2004,3102,2,1,1451.178524,1451.178524,3505,NO,32.29,46.7,3,4.74,6106,114.02425,123.707534,133.468681,139.773468,I,Above,Flat,0,5701,Wood,39.49497232,0,0,,,,1,1,,0.03,nav,1,2004,2,, 4583,NJBF000070816,1914 MCKINLEY AVE,Atlantic City,NJ,39.3685335,-74.4409275,RES3B,3001,,17,ME,1900,1900,3301,2,1,892.3690706,892.3690706,3505,NO,26.4,37.79,3,-0.39,6106,114.277946,123.925932,133.704015,139.999904,I,Above,Hip,0,5701,Wood,32.09619751,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4584,NJBF000070788,1924 MCKINLEY AVE,Atlantic City,NJ,39.36843383,-74.44116449,RES3B,3001,,17,ME,1900,1900,3301,2,1,726.8614741,726.8614741,3505,NO,34.95,47.89,3,-0.77,6106,114.274005,123.922678,133.700378,139.997565,I,Above,Gable,0,5701,Wood,41.4203517,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4585,NJBF000070861,919 N OHIO AVE,Atlantic City,NJ,39.36867828,-74.44018667,RES1,3001,,17,NE,1900,1900,3102,1,1,1731.502691,1731.502691,3505,NO,26.41,37.83,3,7.32,6106,114.292256,123.937904,133.717241,140.009681,I,Above,Flat,0,5701,Wood,32.11783812,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4586,NJBF000070477,812 N MICHIGAN AVE,Atlantic City,NJ,39.36729647,-74.44138566,RES3B,3001,,17,ME,1994,1994,3301,2,1,828.1310411,828.1310411,3505,NO,28.61,39.2,3,2.89,6106,114.282552,123.930666,133.708278,140.010735,I,Above,Gable,0,NaN,Wood,33.9054028,0,0,,,,1,1,,0.03,nav,1,1994,2,, 4587,NJBF000070480,2020 GRANT AVE,Atlantic City,NJ,39.36731986,-74.44191628,RES3B,3001,,45,ME,1910,1910,3301,2,2,889.452904,889.452904,3505,NO,39.02,48.47,3,7.73,6106,114.270811,123.920761,133.697452,140.001876,I,Above,Gable,0,5701,Wood,43.7402661,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4588,NJBF000070789,903 N OHIO AVE,Atlantic City,NJ,39.36843438,-74.44007877,RES1,3001,,17,NE,1920,1920,3102,2,1,1309.264026,1309.264026,3505,NO,42.22,50.34,3,3.34,6106,114.297441,123.942449,133.722041,140.014994,I,Above,Hip,0,5701,Wood,46.27635071,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4589,NJBF000070417,2009 MAGELLAN AVE,Atlantic City,NJ,39.36702057,-74.44150991,RES3B,3001,,45,ME,1910,1910,3301,2,2,1282.361141,1282.361141,3505,NO,41.26,53.08,3,8.2,6106,114.283106,123.931317,133.708784,140.012789,I,Above,Hip,0,5701,Wood,47.16985039,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4590,NJBF000072238,2100 W RIVERSIDE DR,Atlantic City,NJ,39.37299734,-74.45739953,RES1,3001,,17,NE,2007,2007,3103,2,1,1724.442251,1724.442251,3505,NO,36.45,45.18,3,7.21,6106,113.869056,123.579156,133.328076,139.661253,I,Above,Gable,0,5701,Wood,40.81677275,0,0,,,,1,1,,0.03,nav,1,2007,2,, 4591,NJBF000072866,1830 MADISON AVE,Atlantic City,NJ,39.3752941,-74.45299447,RES1,3001,,17,NE,1970,1970,3101,1,1,1220.28541,1220.28541,3505,NO,16.25,27.12,3,-2.22,6106,113.939056,123.634818,133.389889,139.700276,I,Above,Gable,0,5701,Wood,21.68462886,0,0,,,,1,1,,0.03,nav,1,1970,1,, 4592,NJBF000067478,411 N RICHMOND AVE,Atlantic City,NJ,39.35361664,-74.46372884,RES1,3001,,16,NE,1900,1900,3102,1,1,864.5457615,864.5457615,3505,NO,26.77,38.62,3,7.63,6106,113.961445,123.672212,133.417285,139.856415,I,Above,Gable,0,5701,Wood,32.69284725,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4593,NJBF000072814,2013 N RIVERSIDE DR,Atlantic City,NJ,39.37503199,-74.45424399,IND4,3001,100,NaN,E,1969,0,3401,1,1,839.8742196,839.8742196,3507,NO,14.21,22.62,1,-0.24,6106,113.91483,123.614875,133.367998,139.683254,I,Above,Gable,0,NaN,Wood,18.41195458,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4594,NJBF000072677,2022 N RIVERSIDE DR,Atlantic City,NJ,39.374485,-74.454549,RES1,3001,,17,NE,1997,1997,3101,1,1,1310.79537,1310.79537,3505,NO,23.71,34.96,3,8.31,6106,113.914343,123.615127,133.368,139.686486,I,Above,Gable,0,5701,Wood,29.33808728,0,0,,,,1,1,,0.03,nav,1,1997,1,, 4595,NJBF000067480,4207 PORTER AVE,Atlantic City,NJ,39.35362443,-74.463208,RES1,3001,,NaN,NE,1900,0,3102,2,1,1397.948958,1397.948958,3505,NO,31.73,41.78,3,1.42,6106,113.972789,123.681523,133.427331,139.864824,I,Above,Gable,0,5701,Wood,36.75578887,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4596,NJBF000067376,400 N RICHMOND AVE,Atlantic City,NJ,39.3532743,-74.46401699,RES3D,3001,,17,ME,1920,1920,3301,1,1,1438.575777,1438.575777,3505,NO,16.58,27.78,3,1.94,6106,113.959422,123.670732,133.415442,139.857047,I,Above,Hip,0,NaN,Wood,22.17586443,0,0,,,,1,1,,0.03,nav,1,1920,1,, 4597,NJBF000072287,1914 E RIVERSIDE DR,Atlantic City,NJ,39.37316766,-74.44497144,RES1,3001,,16,NE,1920,1920,3102,1,1,1099.048158,1099.048158,3505,NO,14.05,21.5,3,3.09,6106,114.137018,123.803307,133.572874,139.865548,I,Above,Gable,0,5701,Wood,17.77444624,0,0,,,,1,1,,0.03,nav,1,1920,1,, 4598,NJBF000072755,1417 PENROSE AVE,Atlantic City,NJ,39.3748058,-74.44563016,RES1,3001,,17,NE,1900,1900,3102,2,1,1378.117289,1378.117289,3505,YES,22.42,33.76,3,-1.95,6106,114.104168,123.774008,133.541794,139.830225,I,Above,Gable,0,5701,Wood,28.09141534,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4599,NJBF000072758,1502 PENROSE AVE,Atlantic City,NJ,39.3748105,-74.4469625,RES1,3001,,16,NE,1992,1992,3102,1,1,1119.393377,1119.393377,3505,NO,12.11,23.99,3,1.11,6106,114.075291,123.749686,133.515171,139.808141,I,Above,Gable,0,5701,Wood,18.04690414,0,0,,,,1,1,,0.03,nav,1,1992,1,, 4600,NJBF000072215,1424 N MICHIGAN AVE,Atlantic City,NJ,39.37294062,-74.44667912,RES1,3001,,17,NE,1900,1900,3102,2,1,2392.480919,2392.480919,3505,NO,31.57,40.58,3,6.07,6106,114.102638,123.774594,133.54131,139.84087,I,Above,Gable,0,5701,Wood,36.07392673,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4601,NJBF000072722,1507 N OHIO AVE,Atlantic City,NJ,39.37467338,-74.44726938,RES1,3001,,17,NE,1900,1900,3102,2,1,1098.666116,1098.666116,3505,NO,45.65,55.12,3,8.91,6106,114.070203,123.745551,133.510567,139.805133,I,Above,Gable,0,5701,Wood,50.38563025,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4602,NJBF000072859,1937 N RIVERSIDE DR,Atlantic City,NJ,39.37524765,-74.45382449,IND4,3001,100,17,E,1960,1960,3401,1,1,701.8707615,701.8707615,3507,NO,17.66,23.42,1,-0.97,6106,113.921538,123.620219,133.373936,139.687023,I,Above,Gable,0,NaN,Wood,20.53984929,0,0,,,,1,1,,0.03,nav,1,1960,1,, 4603,NJBF000072782,,Atlantic City,NJ,39.37491243,-74.44739331,RES1,3001,,NaN,NE,1969,0,3102,2,1,1154.349912,1154.349912,3505,NO,37.29,47.43,3,1.4,6106,114.06482,123.740769,133.505472,139.799488,I,Above,Gable,0,5701,Wood,42.36064614,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4604,NJBF000072775,,Atlantic City,NJ,39.37487652,-74.44726152,RES1,3001,,NaN,NE,1969,0,3102,2,1,1111.112532,1111.112532,3505,NO,22.12,34.82,3,-2.43,6106,114.068051,123.743525,133.508467,139.802184,I,Above,Hip,0,5701,Wood,28.46847782,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4605,NJBF000072764,,Atlantic City,NJ,39.37484118,-74.4471273,RES1,3001,,NaN,NE,1969,0,3102,2,1,1013.511163,1013.511163,3505,NO,22.55,36.69,3,-1.65,6106,114.07138,123.746364,133.511553,139.80496,I,Above,Hip,0,5701,Wood,29.61811553,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4606,NJBF000070453,817 N ARKANSAS AVE,Atlantic City,NJ,39.3672025,-74.442305,RES3B,3001,,NaN,ME,1900,0,3301,2,1,880.6515402,880.6515402,3505,YES,29.68,34.92,3,7.85,6106,114.263785,123.914927,133.690978,139.997367,I,Above,Flat,0,5701,Wood,32.30237635,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4607,NJBF000071513,1436 W RIVERSIDE DR,Atlantic City,NJ,39.37080523,-74.44744387,RES1,3001,,17,NE,1955,1955,3101,1,1,1271.172709,1271.172709,3505,NO,26.07,37,3,6.71,6106,114.110546,123.783263,133.549459,139.860338,I,Above,Gable,0,5701,Wood,31.53708696,0,0,,,,1,1,,0.03,nav,1,1955,1,, 4608,NJBF000072104,2141 KUEHNLE AVE,Atlantic City,NJ,39.37259405,-74.45192942,RES1,3001,,17,NE,1900,1900,3101,1,1,1709.373834,1709.373834,3505,NO,16.82,29.96,3,-1.87,6106,113.992703,123.682763,133.440774,139.759191,I,Above,Gable,0,5701,Wood,23.39075717,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4609,NJBF000071766,1411 BEACH AVE,Atlantic City,NJ,39.37154618,-74.4467368,RES1,3001,,17,NE,1988,1988,3102,1,1,1261.636764,1261.636764,3505,NO,22.67,27.72,3,8.16,6106,114.117346,123.788288,133.55542,139.860826,I,Above,Gable,0,5701,Wood,25.19288025,0,0,,,,1,1,,0.03,nav,1,1988,1,, 4610,NJBF000071551,1462 W RIVERSIDE DR,Atlantic City,NJ,39.37090776,-74.44797305,RES1,3001,,17,NE,1930,1930,3101,2,1,805.1350146,805.1350146,3505,NO,22.58,36.36,3,-2.66,6106,114.097889,123.772549,133.537815,139.850107,I,Above,Gable,0,5701,Wood,29.47166211,0,0,,,,1,1,,0.03,nav,1,1930,2,, 4611,NJBF000072192,1463 EMERSON AVE,Atlantic City,NJ,39.3728436,-74.44719371,RES1,3001,,17,NE,1961,1961,3102,2,1,2134.063971,2134.063971,3505,NO,32.42,40.43,3,7.17,6106,114.092589,123.766243,133.532116,139.833843,I,Above,Gable,0,5701,Wood,36.42566085,0,0,,,,1,1,,0.03,nav,1,1961,2,, 4612,NJBF000071730,1509 N MISSOURI AVE,Atlantic City,NJ,39.3714295,-74.448538,RES1,3001,,17,NE,1900,1900,3102,2,1,1185.034122,1185.034122,3505,NO,28.78,37.15,3,-2.56,6106,114.079644,123.756756,133.520882,139.832975,I,Above,Flat,0,5701,Wood,32.96800467,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4613,NJBF000071637,1417 W RIVERSIDE DR,Atlantic City,NJ,39.37113656,-74.44730932,RES1,3001,,17,NE,1995,1995,3102,2,1,907.4662473,907.4662473,3505,NO,28.55,41.94,3,2.8,6106,114.10965,123.782206,133.548513,139.857571,I,Above,Gable,0,5701,Wood,35.24453999,0,0,,,,1,1,,0.03,nav,1,1995,2,, 4614,NJBF000071424,1622 W RIVERSIDE DR,Atlantic City,NJ,39.37057442,-74.45117485,RES1,3001,,17,NE,1900,1900,3101,1,1,1696.554319,1696.554319,3505,NO,21.03,35.68,3,3.47,6106,114.032216,123.717876,133.477919,139.802368,I,Above,Flat,0,5701,Wood,28.35490435,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4615,NJBF000072199,1914 N MISSOURI AVE,Atlantic City,NJ,39.37287819,-74.45479155,RES1,3001,,17,NE,1900,1900,3101,1,1,1459.6959,1459.6959,3505,NO,22.85,34.84,3,4.7,6106,113.927212,123.627747,133.380935,139.707,I,Above,Gable,0,5701,Wood,28.84793743,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4616,NJBF000071821,1610 N MISSOURI AVE,Atlantic City,NJ,39.37173492,-74.45074586,RES1,3001,,17,NE,1997,1997,3101,2,1,2189.935213,2189.935213,3505,NO,32.62,40.55,3,5.43,6106,114.028209,123.713366,133.473682,139.791877,I,Above,Gable,0,5701,Wood,36.58521605,0,0,,,,1,1,,0.03,nav,1,1997,2,, 4617,NJBF000072182,2205 HAMILTON AVE,Atlantic City,NJ,39.37281501,-74.45457729,RES1,3001,,17,NE,1955,1955,3101,1,1,1998.618006,1998.618006,3505,NO,16.03,28.73,3,-2.97,6106,113.932606,123.632319,133.385885,139.711571,I,Above,Gable,0,5701,Wood,22.37707316,0,0,,,,1,1,,0.03,nav,1,1955,1,, 4618,NJBF000071448,1414 W RIVERSIDE DR,Atlantic City,NJ,39.37063988,-74.44687789,RES1,3001,,NaN,NE,1969,0,3101,2,1,3175.033309,3175.033309,3505,YES,40.04,51.58,3,3.43,6106,114.124718,123.795308,133.562519,139.872089,I,Above,Gable,0,5701,Wood,45.8058656,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4619,NJBF000072809,1650 N OHIO AVE,Atlantic City,NJ,39.37501632,-74.44998096,RES1,3001,,17,NE,1958,1958,3101,1,1,2095.749183,2095.749183,3505,NO,16.37,30.74,3,-2.36,6106,114.007572,123.692556,133.452805,139.754914,I,Above,Gable,0,5701,Wood,23.55509594,0,0,,,,1,1,,0.03,nav,1,1958,1,, 4620,NJBF000069002,652 BELLA TERR,Atlantic City,NJ,39.3583245,-74.4648795,RES1,3001,,16,NE,1900,1900,3101,2,1,707.7512375,707.7512375,3505,NO,25.8,38.42,3,-1.67,6106,113.877967,123.600696,133.343313,139.763774,I,Above,Gable,0,5701,Wood,32.1081284,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4621,NJBF000072493,2121 N MISSOURI AVE,Atlantic City,NJ,39.37386131,-74.45716312,RES1,3001,,29,NE,2001,2001,3103,2,2,1518.881256,1518.881256,3505,NO,31.57,38.5,3,3.62,6106,113.864464,123.574288,133.323194,139.651953,I,Above,Gable,0,5701,Wood,35.03646518,0,0,,,,1,1,,0.03,nav,1,2001,2,, 4622,NJBF000068907,700 N HARRISBURG AVE,Atlantic City,NJ,39.35799353,-74.46301981,RES1,3001,,17,NE,1900,1900,3101,2,1,822.2138584,822.2138584,3505,NO,32.6,46.49,3,2.81,6106,113.922816,123.637789,133.383145,139.799853,I,Above,Flat,0,5701,Wood,39.54689239,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4623,NJBF000068932,639 N DOVER AVE,Atlantic City,NJ,39.3580585,-74.4646685,RES1,3001,,17,NE,1950,1950,3101,2,1,542.7913814,542.7913814,3505,YES,33.67,40.85,3,7.52,6106,113.885843,123.607358,133.350334,139.771463,I,Above,Flat,0,5701,Wood,37.25874302,0,0,,,,1,1,,0.03,nav,1,1950,2,, 4624,NJBF000068878,4200 WEST END AVE,Atlantic City,NJ,39.357888,-74.466501,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2880.05496,2880.05496,3505,NO,20.91,27.83,3,5.5,6106,113.847681,123.576165,133.316588,139.743509,I,Above,Hip,0,NaN,Wood,24.37109998,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4625,NJBF000072899,1800 N OHIO AVE,Atlantic City,NJ,39.3755337,-74.45177758,RES1,3001,,17,NE,1970,1970,3101,1,1,1150.435431,1150.435431,3505,NO,20.19,34.32,3,3.09,6106,113.962768,123.654388,133.411381,139.717024,I,Above,Hip,0,5701,Wood,27.25348848,0,0,,,,1,1,,0.03,nav,1,1970,1,, 4626,NJBF000068919,547 N TRENTON AVE,Atlantic City,NJ,39.35800817,-74.46113762,COM1,3003,565,NaN,ME,1969,0,3401,2,1,4316.737023,4316.737023,3507,YES,24.69,38.52,1,1.79,6106,113.963905,123.671602,133.419693,139.83069,I,Above,Flat,0,NaN,Wood,31.60500817,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4627,NJBF000072779,1649 MADISON AVE,Atlantic City,NJ,39.374888,-74.45034448,RES1,3001,,17,NE,1900,1900,3102,2,1,1750.601539,1750.601539,3505,NO,33.47,40.45,3,3.67,6106,114.00114,123.687304,133.446996,139.750799,I,Above,Gable,0,5701,Wood,36.96083487,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4628,NJBF000072934,1601 PENROSE AVE,Atlantic City,NJ,39.37574144,-74.44874526,EDU1,3003,,NaN,E,1969,0,3401,1,1,7987.306391,7987.306391,3507,NO,10.84,23.63,1,-0.05,6106,114.026212,123.707393,133.469425,139.764549,I,Above,Flat,0,NaN,Wood,17.23393338,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4629,NJBF000072875,1601 PENROSE AVE,Atlantic City,NJ,39.37537216,-74.45000524,RES1,3001,,NaN,NE,1969,0,3101,1,1,1750.746259,1750.746259,3505,NO,21.5,27.49,3,2.13,6106,114.003048,123.688356,133.448409,139.749126,I,Above,Flat,0,5701,Wood,24.49793346,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4630,NJBF000072997,1701 ABSECON BLVD,Atlantic City,NJ,39.37632465,-74.44742537,GOV1,3001,,NaN,E,1969,0,3401,3,1,4131.560504,4131.560504,3507,NO,40.75,51.59,1,2.93,6106,114.048244,123.72527,133.489309,139.77771,I,Above,Flat,0,NaN,Wood,46.16979176,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4631,NJBF000068944,704 N HARRISBURG AVE,Atlantic City,NJ,39.35809754,-74.4630359,RES1,3001,,17,NE,1910,1910,3101,1,1,1293.023564,1293.023564,3505,NO,18.67,28.95,3,0.29,6106,113.921192,123.636381,133.381692,139.797966,I,Above,Gable,0,5701,Wood,23.8138286,0,0,,,,1,1,,0.03,nav,1,1910,1,, 4632,NJBF000072929,1824 N OHIO AVE,Atlantic City,NJ,39.375702,-74.45237649,RES1,3001,,17,NE,1900,1900,3101,1,1,1164.78873,1164.78873,3505,NO,22.89,37.46,3,8.77,6106,113.947906,123.641737,133.397651,139.704438,I,Above,Gable,0,5701,Wood,30.17582112,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4633,NJBF000072886,1403 ABSECON BLVD,Atlantic City,NJ,39.37544299,-74.44471399,COM1,3001,100,NaN,ME,1969,0,3401,3,1,1408.382859,1408.382859,3507,NO,39.61,54.39,1,-0.54,6106,114.11678,123.783985,133.553104,139.835813,I,Above,Flat,0,NaN,Wood,47.001572,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4634,NJBF000068939,646 WISTERIA RD,Atlantic City,NJ,39.35808049,-74.46223363,RES1,3001,,16,NE,1900,1900,3101,1,1,748.4886227,748.4886227,3505,NO,19.91,26.41,3,5.39,6106,113.939001,123.651046,133.397523,139.81151,I,Above,Hip,0,5701,Wood,23.15777855,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4635,NJBF000072578,2041 HAMILTON AVE,Atlantic City,NJ,39.37416475,-74.45395207,RES1,3001,,16,NE,1900,1900,3101,1,1,1901.144364,1901.144364,3505,NO,17.45,31.85,3,6.42,6106,113.930929,123.629362,133.38336,139.701417,I,Above,Gable,0,5701,Wood,24.6475621,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4636,NJBF000072498,1830 E RIVERSIDE DR,Atlantic City,NJ,39.37387969,-74.44465848,RES1,3001,,45,NE,1900,1900,3102,2,2,1787.642041,1787.642041,3505,NO,26.81,36.88,3,-0.39,6106,114.135682,123.801495,133.571333,139.860063,I,Above,Gable,0,5701,Wood,31.84540204,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4637,NJBF000072850,1507 PENROSE AVE,Atlantic City,NJ,39.37520213,-74.44697924,RES1,3001,,17,NE,1925,1925,3101,2,1,2576.570511,2576.570511,3505,NO,33.11,40.38,3,5.31,6106,114.070512,123.745248,133.510541,139.801988,I,Above,Hip,0,5701,Wood,36.74105309,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4638,NJBF000072526,1826 E RIVERSIDE DR,Atlantic City,NJ,39.37399971,-74.4445769,RES1,3001,,45,NE,1922,1922,3102,2,2,1385.389509,1385.389509,3505,NO,29.49,40.19,3,7.18,6106,114.13607,123.801705,133.571638,139.859603,I,Above,Hip,0,5701,Wood,34.84046117,0,0,,,,1,1,,0.03,nav,1,1922,2,, 4639,NJBF000072625,1413 N OHIO AVE,Atlantic City,NJ,39.37432148,-74.44578481,RES1,3001,,17,NE,1900,1900,3102,1,1,932.5951558,932.5951558,3505,NO,9.98,18.22,3,-2.19,6106,114.106303,123.776302,133.544016,139.834926,I,Above,Gable,0,5701,Wood,14.10110776,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4640,NJBF000072582,1901 MORNINGSIDE DR,Atlantic City,NJ,39.37416731,-74.44703703,RES1,3001,,17,NE,1900,1900,3102,1,1,1333.860724,1333.860724,3505,NO,11.64,23.49,3,0.04,6106,114.080951,123.755121,133.520741,139.816571,I,Above,Gable,0,5701,Wood,17.56486031,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4641,NJBF000072635,2031 HAMILTON AVE,Atlantic City,NJ,39.3743467,-74.45385808,RES1,3001,,16,NE,1965,1965,3101,1,1,1320.835153,1320.835153,3505,NO,22.8,36.02,3,8.11,6106,113.930922,123.629142,133.383214,139.700215,I,Above,Gable,0,5701,Wood,29.41077353,0,0,,,,1,1,,0.03,nav,1,1965,1,, 4642,NJBF000072697,1814 N MICHIGAN AVE,Atlantic City,NJ,39.37457924,-74.45246984,RES1,3001,,17,NE,1900,1900,3101,1,1,1480.158426,1480.158426,3505,NO,13.63,24.08,3,-0.29,6106,113.958473,123.65191,133.408176,139.719959,I,Above,Gable,0,5701,Wood,18.8523149,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4643,NJBF000072624,1416 PENROSE AVE,Atlantic City,NJ,39.37431418,-74.44523793,RES1,3001,,17,NE,1900,1900,3102,1,1,1762.557048,1762.557048,3505,NO,19.96,25.5,3,3.26,6106,114.118214,123.786344,133.555007,139.844043,I,Above,Gable,0,5701,Wood,22.72927738,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4644,NJBF000072644,1927 KUEHNLE AVE,Atlantic City,NJ,39.37438087,-74.45110046,RES1,3001,,17,NE,1993,1993,3101,2,1,1639.275921,1639.275921,3505,NO,39.3,47.49,3,6.36,6106,113.990451,123.678915,133.437556,139.745873,I,Above,Flat,0,5701,Wood,43.39409329,0,0,,,,1,1,,0.03,nav,1,1993,2,, 4645,NJBF000072467,,Atlantic City,NJ,39.37377017,-74.45617562,RES3C,3001,,NaN,ME,1969,0,3301,1,1,5039.132184,5039.132184,3505,NO,18.06,30.59,3,6.82,6106,113.886989,123.593164,133.343707,139.67003,I,Above,Flat,0,NaN,Wood,24.32450959,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4646,NJBF000072382,,Atlantic City,NJ,39.37347249,-74.45576362,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3339.69329,3339.69329,3505,NO,32.48,45.23,3,7.13,6106,113.899325,123.603802,133.355149,139.681552,I,Above,Flat,0,NaN,Wood,38.85504555,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4647,NJBF000072600,2007 KUEHNLE AVE,Atlantic City,NJ,39.37422902,-74.45115814,RES1,3001,,17,NE,1900,1900,3101,1,1,1600.671239,1600.671239,3505,NO,10.69,18.75,3,-0.22,6106,113.990908,123.679468,133.438078,139.747211,I,Above,Gable,0,5701,Wood,14.72002646,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4648,NJBF000072527,1530 MADISON AVE,Atlantic City,NJ,39.37400137,-74.44865565,RES1,3001,,39,NE,1935,1935,3102,2,1,2403.970151,2403.970151,3505,NO,40.02,53.5,3,2.47,6106,114.047758,123.727399,133.490324,139.792271,I,Above,Gable,0,5701,Wood,46.76149626,0,0,,,,1,1,,0.03,nav,1,1935,2,, 4649,NJBF000072542,1505 MADISON AVE,Atlantic City,NJ,39.3740391,-74.44726369,RES1,3001,,16,NE,1900,1900,3102,1,1,1295.66616,1295.66616,3505,NO,17.46,26.84,3,-0.6,6106,114.077486,123.752339,133.517622,139.814742,I,Above,Flat,0,5701,Wood,22.1459741,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4650,NJBF000072485,2105 HAMILTON AVE,Atlantic City,NJ,39.37383233,-74.45410251,RES1,3001,,17,NE,1900,1900,3101,1,1,1725.656228,1725.656228,3505,NO,15.88,29.25,3,0.16,6106,113.931403,123.630147,133.384045,139.703971,I,Above,Gable,0,5701,Wood,22.56695899,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4651,NJBF000072840,1505 PENROSE AVE,Atlantic City,NJ,39.375145,-74.44684649,RES1,3001,,45,NE,1900,1900,3101,2,3,1909.562305,1909.562305,3505,NO,26.54,39.44,3,-0.19,6106,114.074033,123.748273,133.513818,139.805047,I,Above,Gable,0,5701,Wood,32.98818577,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4652,NJBF000072183,1563 N ARKANSAS AVE,Atlantic City,NJ,39.372816,-74.449292,RES1,3001,,17,NE,1958,1958,3102,1,1,1457.225624,1457.225624,3505,NO,14.02,21,3,-2.68,6106,114.047427,123.72836,133.490687,139.799612,I,Above,Flat,0,5701,Wood,17.510725,0,0,,,,1,1,,0.03,nav,1,1958,1,, 4653,NJBF000072174,1527 N ARKANSAS AVE,Atlantic City,NJ,39.37278753,-74.44908387,RES1,3001,,17,NE,1900,1900,3102,2,1,1021.221481,1021.221481,3505,NO,33.65,41.87,3,-1.02,6106,114.052258,123.73244,133.495129,139.803478,I,Above,Flat,0,5701,Wood,37.7623462,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4654,NJBF000072455,2104 HAMILTON AVE,Atlantic City,NJ,39.37372787,-74.4537252,RES1,3001,,17,NE,1900,1900,3101,1,1,1649.632993,1649.632993,3505,NO,15.49,21.73,3,3.1,6106,113.940798,123.638115,133.392681,139.711902,I,Above,Gable,0,5701,Wood,18.60859611,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4655,NJBF000072246,1411 N MICHIGAN AVE #A,Atlantic City,NJ,39.3730228,-74.44581161,RES1,3001,,NaN,NE,1956,0,3102,2,1,1234.591723,1234.591723,3505,NO,32.67,38.93,3,1.58,6106,114.120474,123.789517,133.557689,139.853903,I,Above,Gable,0,5701,Wood,35.80317546,0,0,,,,1,1,,0.03,nav,1,1956,2,, 4656,NJBF000072342,1922 BEACH AVE,Atlantic City,NJ,39.373348,-74.455169,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,5802.130383,5802.130383,3505,NO,35.83,42.09,3,8.7,6106,113.913681,123.615919,133.368287,139.693468,I,Above,Flat,0,NaN,Wood,38.95829082,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4657,NJBF000072422,1600 ABSECON BLVD,Atlantic City,NJ,39.37360191,-74.44172128,RES4,3001,649,NaN,ME,1969,0,3401,2,1,12299.48192,12299.48192,3507,YES,36.41,43.44,1,1.95,6106,114.202293,123.857981,133.633063,139.912276,I,Above,Hip,0,NaN,Wood,39.92531291,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4658,NJBF000072308,1412 MADISON AVE,Atlantic City,NJ,39.37323839,-74.44595225,RES1,3001,,17,NE,1900,1900,3102,1,1,1793.830463,1793.830463,3505,NO,18.23,29.82,3,2.95,6106,114.114993,123.784696,133.552545,139.848385,I,Above,Hip,0,5701,Wood,24.02685902,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4659,NJBF000072226,1528 EMERSON AVE,Atlantic City,NJ,39.37296465,-74.44893555,RES1,3001,,16,NE,1900,1900,3102,1,1,1216.268345,1216.268345,3505,NO,18.42,24.16,3,6.42,6106,114.053452,123.73326,133.496129,139.803256,I,Above,Gable,0,5701,Wood,21.28835605,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4660,NJBF000072318,1525 EMERSON AVE,Atlantic City,NJ,39.3732625,-74.4487005,RES1,3001,,17,NE,1997,1997,3102,1,1,1211.37735,1211.37735,3505,NO,21.89,28.08,3,8.46,6106,114.055157,123.734384,133.497532,139.802652,I,Above,Gable,0,5701,Wood,24.98600004,0,0,,,,1,1,,0.03,nav,1,1997,1,, 4661,NJBF000072136,1915 COLUMBIA AVE,Atlantic City,NJ,39.37266998,-74.45488271,RES1,3001,,17,NE,1900,1900,3101,2,1,1782.671323,1782.671323,3505,NO,33.4,40.49,3,-0.67,6106,113.927592,123.628301,133.38143,139.708658,I,Above,Gable,0,5701,Wood,36.94916178,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4662,NJBF000072079,2140 MURRAY AVE,Atlantic City,NJ,39.3725202,-74.45271889,RES1,3001,,16,NE,1900,1900,3101,1,1,752.8141673,752.8141673,3505,NO,16.98,26.84,3,0.07,6106,113.976375,123.669193,133.425929,139.747151,I,Above,Gable,0,5701,Wood,21.91283094,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4663,NJBF000071290,1801 MARMORA AVE,Atlantic City,NJ,39.3700923,-74.43999387,RES3A,3001,,45,NE,1900,1900,3301,2,2,1668.760449,1668.760449,3505,NO,19.75,25.86,3,-2.75,6106,114.279952,123.926496,133.705773,139.99203,I,Above,Hip,0,5701,Wood,22.80642789,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4664,NJBF000072175,2132 MURRAY AVE,Atlantic City,NJ,39.37279003,-74.45260476,RES1,3001,,17,NE,1900,1900,3101,1,1,1277.781212,1277.781212,3505,NO,10.32,20.49,3,-2.4,6106,113.975781,123.668402,133.425215,139.744941,I,Above,Flat,0,5701,Wood,15.40406373,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4665,NJBF000071851,1801 N MISSISSIPPI AVE,Atlantic City,NJ,39.37180888,-74.45387133,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3372.558051,3372.558051,3505,NO,36.84,46.5,3,8.29,6106,113.959424,123.655808,133.410946,139.738766,I,Above,Flat,0,NaN,Wood,41.67085345,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4666,NJBF000072060,1403 EMERSON AVE,Atlantic City,NJ,39.372463,-74.44583163,RES1,3001,,NaN,NE,1900,0,3102,1,1,1334.674175,1334.674175,3505,NO,21.05,33.59,3,4.46,6106,114.126437,123.79507,133.563416,139.86195,I,Above,Gable,0,5701,Wood,27.31698263,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4667,NJBF000072032,1418 EMERSON AVE,Atlantic City,NJ,39.37235707,-74.44674691,RES1,3001,,17,NE,1900,1900,3102,2,1,1746.69334,1746.69334,3505,YES,26.94,41.3,3,1.3,6106,114.107835,123.77953,133.546349,139.848507,I,Above,Gable,0,5701,Wood,34.12243326,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4668,NJBF000071891,1422 N ARKANSAS AVE,Atlantic City,NJ,39.37190984,-74.44715459,RES1,3001,,16,NE,1988,1988,3102,1,1,1107.817699,1107.817699,3505,NO,10.96,24.57,3,-1.5,6106,114.104113,123.77683,133.543119,139.848503,I,Above,Hip,0,5701,Wood,17.76825286,0,0,,,,1,1,,0.03,nav,1,1988,1,, 4669,NJBF000071731,1548 N MISSOURI AVE #B,Atlantic City,NJ,39.3714385,-74.4499035,RES1,3001,,NaN,NE,1969,0,3102,2,1,639.877346,639.877346,3505,NO,24.22,30.03,3,-0.12,6106,114.049897,123.731819,133.493651,139.810303,I,Above,Gable,0,5701,Wood,27.12552957,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4670,NJBF000072084,1432 EMERSON AVE,Atlantic City,NJ,39.37253079,-74.44737793,RES1,3001,,17,NE,1900,1900,3102,1,1,1924.089256,1924.089256,3505,NO,17.51,28.53,3,5.16,6106,114.092175,123.766203,133.531881,139.835511,I,Above,Hip,0,5701,Wood,23.01911831,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4671,NJBF000072021,1630 BEACH AVE,Atlantic City,NJ,39.37231016,-74.45067811,RES1,3001,,17,NE,1962,1962,3102,1,1,1659.857735,1659.857735,3505,NO,18.57,26.82,3,6.77,6106,114.023115,123.708511,133.468715,139.784294,I,Above,Gable,0,5701,Wood,22.69647378,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 4672,NJBF000071850,1416 N ARKANSAS AVE,Atlantic City,NJ,39.37180888,-74.44683262,RES1,3001,,45,NE,1930,1930,3102,1,2,2189.332429,2189.332429,3505,NO,12.44,19.4,3,0.75,6106,114.112248,123.783759,133.550633,139.855308,I,Above,Hip,0,5701,Wood,15.9169105,0,0,,,,1,1,,0.03,nav,1,1930,1,, 4673,NJBF000071992,2024 E RIVERSIDE DR,Atlantic City,NJ,39.37221038,-74.44543683,RES1,3001,,17,NE,1900,1900,3102,2,1,1169.128405,1169.128405,3505,NO,38.62,47.64,3,0.53,6106,114.137883,123.804937,133.574054,139.87221,I,Above,Flat,0,5701,Wood,43.12979843,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4674,NJBF000071760,,Atlantic City,NJ,39.37153233,-74.45316725,RES1,3001,,NaN,NE,1969,0,3101,1,1,2022.267329,2022.267329,3505,NO,26.8,39.91,3,7.94,6106,113.977907,123.671531,133.42793,139.754736,I,Above,Gable,0,5701,Wood,33.35623669,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4675,NJBF000072082,1532 N ARKANSAS AVE,Atlantic City,NJ,39.37253002,-74.44943674,RES1,3001,,17,NE,1950,1950,3102,2,1,1394.844667,1394.844667,3505,NO,36.23,47.71,3,3.21,6106,114.047542,123.728749,133.490945,139.80153,I,Above,Gable,0,5701,Wood,41.97216896,0,0,,,,1,1,,0.03,nav,1,1950,2,, 4676,NJBF000071874,1542 BEACH AVE,Atlantic City,NJ,39.37187155,-74.44921057,RES1,3001,,17,NE,1900,1900,3102,1,1,2745.336599,2745.336599,3505,NO,23.98,32.22,3,7.91,6106,114.059965,123.739825,133.502654,139.815198,I,Above,Hip,0,5701,Wood,28.10004149,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4677,NJBF000072054,1401 EMERSON AVE,Atlantic City,NJ,39.37245232,-74.44572252,RES1,3001,,45,NE,1900,1900,3102,1,2,1801.992771,1801.992771,3505,NO,11.07,23.03,3,-2.64,6106,114.128922,123.797171,133.565708,139.863904,I,Above,Hip,0,5701,Wood,17.05296032,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4678,NJBF000071428,1618 MARMORA AVE,Atlantic City,NJ,39.37058716,-74.43775706,RES1,3001,,17,NE,1900,1900,3101,2,1,1415.575166,1415.575166,3505,NO,31.86,37.44,3,5.52,6106,114.322449,123.962085,133.745181,140.020774,I,Above,Flat,0,5701,Wood,34.65324326,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4679,NJBF000071459,1600 W RIVERSIDE DR,Atlantic City,NJ,39.37066059,-74.45044671,RES1,3001,,17,NE,1900,1900,3101,2,1,1498.20257,1498.20257,3505,NO,27.97,37.67,3,0.18,6106,114.047032,123.730183,133.491399,139.813082,I,Above,Gable,0,5701,Wood,32.8202768,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4680,NJBF000071522,1617 MARMORA AVE,Atlantic City,NJ,39.37082484,-74.43817172,RES1,3001,,17,NE,1900,1900,3101,2,1,1208.881777,1208.881777,3505,NO,35.63,42.58,3,-1.04,6106,114.310748,123.952004,133.734291,140.010626,I,Above,Flat,0,5701,Wood,39.10378664,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4681,NJBF000071688,2108 E RIVERSIDE DR,Atlantic City,NJ,39.37129185,-74.44585746,RES1,3001,,17,NE,1910,1910,3102,1,1,1671.657278,1671.657278,3505,NO,7.92,16.36,3,-2.74,6106,114.139328,123.806994,133.575717,139.879047,I,Above,Hip,0,5701,Wood,12.14009939,0,0,,,,1,1,,0.03,nav,1,1910,1,, 4682,NJBF000071837,MEADOW TRACK,Atlantic City,NJ,39.37177481,-74.47982805,RES4,3003,,NaN,ME,1969,0,3401,2,1,6876.678405,6876.678405,3507,NO,32.85,41.07,1,0.71,6106,113.390721,123.187113,132.903544,139.289569,I,Above,Flat,0,NaN,Wood,36.96025206,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4683,NJBF000071111,1041 MONROE AVE,Atlantic City,NJ,39.36945812,-74.44155366,RES3A,3001,,17,NE,1900,1900,3301,1,1,1286.03223,1286.03223,3505,NO,12.79,19.44,3,0.11,6106,114.253633,123.904753,133.681486,139.976202,I,Above,Gable,0,5701,Wood,16.11537823,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4684,NJBF000071039,1041 N MICHIGAN AVE,Atlantic City,NJ,39.369214,-74.4421795,RES3A,3001,,17,NE,1900,1900,3301,1,1,1110.113032,1110.113032,3505,NO,19.57,28.19,3,2.5,6106,114.242965,123.895944,133.671662,139.969712,I,Above,Gable,0,5701,Wood,23.87909006,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4685,NJBF000069114,730 WISTERIA ROAD,Atlantic City,NJ,39.35882346,-74.46282166,RES1,3001,,18,NE,2007,2007,3101,2,1,1990.624887,1990.624887,3505,NO,40.47,48.79,3,7.61,6106,113.917031,123.632444,133.377907,139.790206,I,Above,Hip,0,5701,Wood,44.62925799,0,0,,,,1,1,,0.03,nav,1,2007,2,, 4686,NJBF000069072,721 WARRENA RD,Atlantic City,NJ,39.35866546,-74.46362631,RES1,3001,,45,NE,1900,1900,3101,3,2,2252.547177,2252.547177,3505,YES,46.47,55.22,3,1.26,6106,113.90132,123.619636,133.363972,139.779321,I,Above,Flat,0,5701,Wood,50.8443985,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4687,NJBF000068654,622 WISTERIA RD #B,Atlantic City,NJ,39.35733067,-74.46161107,RES1,3001,,45,NE,1930,1930,3101,2,2,832.8862248,832.8862248,3505,NO,29.19,38.25,3,4.75,6106,113.961843,123.670347,133.417878,139.833413,I,Above,Flat,0,5701,Wood,33.724562,0,0,,,,1,1,,0.03,nav,1,1930,2,, 4688,NJBF000069137,719 N HARRISBURG AVE,Atlantic City,NJ,39.35891112,-74.46310887,RES1,3001,,16,NE,1920,1920,3101,1,1,1401.704093,1401.704093,3505,NO,19.42,29.53,3,3.08,6106,113.909663,123.626318,133.371346,139.78407,I,Above,Flat,0,5701,Wood,24.47697131,0,0,,,,1,1,,0.03,nav,1,1920,1,, 4689,NJBF000069210,720 AUGUSTINE RD,Atlantic City,NJ,39.35918551,-74.46193716,RES1,3001,,15,NE,1925,1925,3101,1,1,881.5122281,881.5122281,3505,NO,12.14,20.73,3,-0.98,6106,113.932015,123.644515,133.391187,139.799216,I,Above,Hip,0,5701,Wood,16.43172191,0,0,,,,1,1,,0.03,nav,1,1925,1,, 4690,NJBF000068766,639 N ANNAPOLIS AVE,Atlantic City,NJ,39.35757728,-74.46566363,RES1,3001,,17,NE,1965,1965,3101,1,1,1743.363416,1743.363416,3505,NO,17.73,31.65,3,-1.47,6106,113.869884,123.594603,133.336272,139.762415,I,Above,Gable,0,5701,Wood,24.68908793,0,0,,,,1,1,,0.03,nav,1,1965,1,, 4691,NJBF000069159,636 N TRENTON AVE,Atlantic City,NJ,39.35900583,-74.46254458,RES1,3001,,27,NE,1900,1900,3101,2,2,1166.305459,1166.305459,3505,YES,23.92,38.07,3,2.06,6106,113.920876,123.635475,133.3813,139.791946,I,Above,Gable,0,5701,Wood,30.99465711,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4692,NJBF000069154,717 WISTERIA RD,Atlantic City,NJ,39.35897172,-74.46270744,RES1,3001,,16,NE,1900,1900,3101,1,1,682.8787676,682.8787676,3505,NO,17.59,28.81,3,2.62,6106,113.917737,123.632917,133.378514,139.78979,I,Above,Gable,0,5701,Wood,23.20107095,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4693,NJBF000069215,725 N HARRISBURG AVE,Atlantic City,NJ,39.35920156,-74.46336054,RES1,3001,,45,NE,1920,1920,3101,2,3,1587.667443,1587.667443,3505,NO,28.85,37.86,3,-2.49,6106,113.900592,123.618642,133.363237,139.775337,I,Above,Hip,0,5701,Wood,33.35614919,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4694,NJBF000068639,621 N ANNAPOLIS AVE,Atlantic City,NJ,39.35730075,-74.46541991,RES1,3001,,17,NE,1961,1961,3101,2,1,1530.817941,1530.817941,3505,NO,40.09,51.09,3,6.55,6106,113.878633,123.601975,133.344048,139.770825,I,Above,Flat,0,5701,Wood,45.58808567,0,0,,,,1,1,,0.03,nav,1,1961,2,, 4695,NJBF000069146,619 N TRENTON AVE,Atlantic City,NJ,39.35893106,-74.46192648,RES1,3001,,45,NE,1900,1900,3101,2,2,1141.790409,1141.790409,3505,NO,35.21,48.83,3,6.41,6106,113.935361,123.647454,133.394199,139.803363,I,Above,Flat,0,5701,Wood,42.01735131,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4696,NJBF000069312,672 N TRENTON AVE,Atlantic City,NJ,39.35963111,-74.46316236,RES1,3001,649,NaN,NE,1969,0,3101,1,1,4106.470789,4106.470789,3505,NO,22.81,35.88,3,8.35,6106,113.899744,123.617622,133.362403,139.771948,I,Above,Flat,0,5701,Wood,29.34506478,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4697,NJBF000068633,520 N TRENTON AVE,Atlantic City,NJ,39.35728543,-74.46120149,RES1,3001,,27,NE,1925,1925,3101,2,3,1476.338441,1476.338441,3505,NO,34.78,42.84,3,1.53,6106,113.971393,123.678241,133.426378,139.84086,I,Above,Flat,0,5701,Wood,38.80775956,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4698,NJBF000068234,511 N DOVER AVE,Atlantic City,NJ,39.35609076,-74.46329478,RES1,3001,,17,NE,1956,1956,3101,1,1,1808.791266,1808.791266,3505,NO,17.51,25.06,3,0.04,6106,113.940194,123.653328,133.398651,139.824986,I,Above,Gable,0,5701,Wood,21.28490579,0,0,,,,1,1,,0.03,nav,1,1956,1,, 4699,NJBF000068058,467 N DOVER AVE,Atlantic City,NJ,39.3555055,-74.462809,RES1,3001,,16,NE,1900,1900,3102,2,1,1060.701421,1060.701421,3505,NO,37.62,42.8,3,6.26,6106,113.958111,123.66841,133.414524,139.842104,I,Above,Flat,0,5701,Wood,40.20763258,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4700,NJBF000068663,625 N HARRISBURG AVE,Atlantic City,NJ,39.35735273,-74.46187867,RES1,3001,,17,NE,1900,1900,3101,1,1,1229.193627,1229.193627,3505,NO,10.84,22.79,3,-1.5,6106,113.955698,123.665275,133.412411,139.828663,I,Above,Hip,0,5701,Wood,16.81319671,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4701,NJBF000068585,540 N HARRISBURG AVE,Atlantic City,NJ,39.35718068,-74.46230596,RES1,3001,,17,NE,1961,1961,3101,1,1,1732.185707,1732.185707,3505,NO,15.11,23,3,-1.78,6106,113.948449,123.659422,133.405971,139.824306,I,Above,Hip,0,5701,Wood,19.05410848,0,0,,,,1,1,,0.03,nav,1,1961,1,, 4702,NJBF000068534,600 N ANNAPOLIS AVE,Atlantic City,NJ,39.35704,-74.465819,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2262.62732,2262.62732,3505,NO,29.16,34.54,3,-2.77,6106,113.873076,123.597599,133.339163,139.768272,I,Above,Gable,0,NaN,Wood,31.84883169,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4703,NJBF000068444,600 N ANNAPOLIS AVE,Atlantic City,NJ,39.356786,-74.4657255,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2399.722895,2399.722895,3505,NO,26.66,36.35,3,5.57,6106,113.878246,123.602014,133.343761,139.773817,I,Above,Hip,0,NaN,Wood,31.50201712,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4704,NJBF000068153,437 N HARRISBURG AVE,Atlantic City,NJ,39.3558315,-74.4606695,RES1,3001,,45,NE,1900,1900,3102,2,2,1206.411402,1206.411402,3505,NO,25.96,34.11,3,-1.4,6106,114.000971,123.703483,133.452639,139.872041,I,Above,Flat,0,5701,Wood,30.03856801,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4705,NJBF000068579,4018 CROSSAN AVE,Atlantic City,NJ,39.35716406,-74.46407505,RES1,3001,,NaN,NE,1900,0,3101,1,1,2396.82261,2396.82261,3505,NO,19.64,34.19,3,1.27,6106,113.909849,123.627699,133.371709,139.795337,I,Above,Gable,0,5701,Wood,26.91599194,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4706,NJBF000068750,633 N HARRISBURG AVE,Atlantic City,NJ,39.35753916,-74.46200936,RES1,3001,,45,NE,1930,1930,3101,2,2,1054.236608,1054.236608,3505,NO,40.15,47.01,3,2.54,6106,113.950564,123.660927,133.407839,139.823633,I,Above,Gable,0,5701,Wood,43.57951067,0,0,,,,1,1,,0.03,nav,1,1930,2,, 4707,NJBF000067589,418 N ANNAPOLIS AVE,Atlantic City,NJ,39.35390452,-74.46329342,RES1,3001,,17,NE,1957,1957,3102,1,1,1750.807692,1750.807692,3505,NO,21.85,33,3,6.47,6106,113.96741,123.676956,133.422609,139.859065,I,Above,Gable,0,5701,Wood,27.42670385,0,0,,,,1,1,,0.03,nav,1,1957,1,, 4708,NJBF000068019,3801 PORTER AVE,Atlantic City,NJ,39.35535734,-74.45964888,RES1,3001,,45,NE,1968,1968,3102,2,4,2371.330517,2371.330517,3505,NO,27.98,41.23,3,6.24,6106,114.029197,123.727005,133.47772,139.895946,I,Above,Flat,0,5701,Wood,34.60499967,0,0,,,,1,1,,0.03,nav,1,1968,2,, 4709,NJBF000067695,407 N ANNAPOLIS AVE,Atlantic City,NJ,39.35420019,-74.46290019,RES1,3001,,18,NE,1957,1957,3102,2,1,1954.816535,1954.816535,3505,NO,34.89,44.19,3,6.85,6106,113.972347,123.680852,133.427025,139.860904,I,Above,Flat,0,5701,Wood,39.53979418,0,0,,,,1,1,,0.03,nav,1,1957,2,, 4710,NJBF000067231,3501 VENTNOR AVE,Atlantic City,NJ,39.3526772,-74.4530732,RES3B,3001,,NaN,E,1900,0,3303,4,1,3708.9432,3708.9432,3507,NO,45.74,50.87,1,1.7,6106,114.206368,123.874586,133.635376,140.041558,I,Above,Flat,0,NaN,Wood,48.30605763,0,0,,,,1,1,,0.03,nav,1,1900,4,, 4711,NJBF000069042,2647 FAIRMOUNT AVE,Atlantic City,NJ,39.3585035,-74.4462735,RES3A,3001,738,NaN,NE,1969,0,3301,2,1,1183.185717,1183.185717,3505,YES,32.03,38.91,3,5.12,6106,114.282111,123.935231,133.70627,140.062385,I,Above,Gable,0,5701,Wood,35.4680803,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4712,NJBF000072891,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37548001,-74.41878426,RES3D,3001,,NaN,ME,1969,0,3301,2,1,8202.287361,8202.287361,3507,NO,30.57,41.5,1,-0.59,6106,114.671942,124.258472,134.075937,140.252746,I,Above,Hip,0,NaN,Wood,36.03348632,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4713,NJBF000072726,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37469919,-74.42028465,RES3C,3001,,NaN,ME,1969,0,3301,2,1,7092.0939,7092.0939,3505,NO,40.15,47.01,3,4.64,6106,114.649009,124.238999,134.053716,140.239976,I,Above,Hip,0,NaN,Wood,43.57755843,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4714,NJBF000070676,,Atlantic City,NJ,39.36802614,-74.42194872,RES3D,3004,,NaN,E,1969,0,3303,4,1,5597.505853,5597.505853,3505,NO,61.59,72.16,3,1.72,6106,114.6913,124.278035,134.090956,140.306937,I,Above,Hip,0,NaN,Wood,66.87772291,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4715,NJBF000070737,,Atlantic City,NJ,39.3682291,-74.42144039,RES3D,3004,,NaN,E,1969,0,3303,3,1,6461.07522,6461.07522,3505,NO,51.98,62.65,3,6.51,6106,114.699755,124.285241,134.099106,140.31203,I,Above,Flat,0,NaN,Wood,57.31627949,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4716,NJBF000066719,113 N RICHMOND AVE,Atlantic City,NJ,39.35057722,-74.46131591,RES3A,3001,,27,NE,1900,1900,3301,2,2,1754.753907,1754.753907,3505,YES,38.73,45.71,3,0.9,6106,114.052683,123.748562,133.497308,139.942523,I,Above,Flat,0,5701,Wood,42.21843349,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4717,NJBF000068419,106 N IOWA AVE,Atlantic City,NJ,39.35669273,-74.44708827,RES3A,3001,,27,NE,1922,1922,3301,2,2,1428.618502,1428.618502,3505,YES,35.62,50.19,3,8.21,6106,114.286668,123.939803,133.70971,140.076211,I,Above,Gable,0,5701,Wood,42.9039699,0,0,,,,1,1,,0.03,nav,1,1922,2,, 4718,NJBF000072837,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37513016,-74.43071668,RES3D,3001,,NaN,ME,1969,0,3301,1,1,5916.039192,5916.039192,3507,NO,12.11,18.62,1,1.04,6106,114.421461,124.043093,133.83766,140.067976,I,Above,Gable,0,NaN,Wood,15.36277263,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4719,NJBF000072004,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37225882,-74.43097441,RES3C,3004,,NaN,ME,1969,0,3301,2,1,3061.397684,3061.397684,3505,NO,30.52,35.79,3,6.7,6106,114.448889,124.068471,133.863435,140.105101,I,Above,Gable,0,NaN,Wood,33.15264621,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4720,NJBF000072221,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37295268,-74.43067874,RES3C,3004,,NaN,ME,1969,0,3301,1,1,6767.07464,6767.07464,3505,NO,11.91,25.68,3,-2.06,6106,114.447211,124.066595,133.861909,140.09985,I,Above,Gable,0,NaN,Wood,18.79413505,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4721,NJBF000072369,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37342356,-74.43034369,RES3C,3004,,NaN,ME,1969,0,3301,2,1,7385.95075,7385.95075,3505,NO,35.05,46.56,3,4.62,6106,114.448972,124.067792,133.863592,140.098442,I,Above,Gable,0,NaN,Wood,40.80732521,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4722,NJBF000072489,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37384241,-74.43043242,RES3C,3004,,NaN,ME,1969,0,3301,2,1,7147.180666,7147.180666,3505,NO,36.43,47.35,3,-0.1,6106,114.442289,124.061802,133.857311,140.091041,I,Above,Gable,0,NaN,Wood,41.89077178,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4723,NJBF000072441,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.3736734,-74.43132419,RES3C,3004,,NaN,ME,1969,0,3301,1,1,7319.328846,7319.328846,3505,NO,17.57,30.01,3,4.75,6106,114.425114,124.047241,133.841138,140.079201,I,Above,Gable,0,NaN,Wood,23.79331038,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4724,NJBF000072566,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37411281,-74.43143713,RES3C,3004,,NaN,ME,1969,0,3301,1,1,7507.219551,7507.219551,3505,NO,16.87,27.01,3,-0.94,6106,114.417651,124.040561,133.834111,140.071061,I,Above,Flat,0,NaN,Wood,21.9372766,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4725,NJBF000072672,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.3744683,-74.43110406,RES3C,3004,,NaN,ME,1969,0,3301,2,1,6583.218169,6583.218169,3505,NO,37.13,50.78,3,4.55,6106,114.420727,124.042938,133.836996,140.07129,I,Above,Gable,0,NaN,Wood,43.95447254,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4726,NJBF000072737,1062 BRIGANTINE BLVD,Atlantic City,NJ,39.37473595,-74.43102603,RES3C,3004,,NaN,ME,1969,0,3301,2,1,6781.28113,6781.28113,3505,NO,37.73,44.8,3,2.8,6106,114.419337,124.041559,133.835677,140.068686,I,Above,Gable,0,NaN,Wood,41.26436587,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4727,NJBF000068358,101 N BRIGHTON AVE,Atlantic City,NJ,39.35648865,-74.44809637,RES3A,3001,,16,NE,1925,1925,3301,2,1,1102.343685,1102.343685,3505,YES,32.84,38.39,3,-1.1,6106,114.267276,123.923724,133.692031,140.063354,I,Above,Gable,0,5701,Wood,35.61399699,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4728,NJBF000068262,KENTUCKY AVE STREET END,Atlantic City,NJ,39.35617707,-74.42729179,COM8,3003,,NaN,ME,1969,0,3401,3,1,1055.640541,1055.640541,3502,NO,52.41,66.26,5,-0.31,6102,114.720364,124.304867,134.108622,140.388867,I,Above,Flat,0,NaN,Wood,59.33595207,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4729,NJBF000066747,136 N LACLEDE PL,Atlantic City,NJ,39.35065488,-74.4624135,RES3A,3001,,17,NE,1900,1900,3301,2,1,1183.275219,1183.275219,3505,YES,36.24,50.12,3,2.21,6106,114.027649,123.727962,133.475153,139.923706,I,Above,Hip,0,5701,Wood,43.18248633,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4730,NJBF000073718,3 TIFFANY PLACE,Atlantic City,NJ,39.38271989,-74.40639949,RES1,3001,,43,NE,1984,1984,3103,2,2,1735.121848,1735.121848,3505,NO,34.81,44.62,3,-2.89,6110,114.85145,124.412183,134.252803,140.348331,I,Above,Gable,0,5701,Wood,39.71423917,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 4731,NJBF000073375,5205 WATERVIEW DR,Atlantic City,NJ,39.38024008,-74.40689669,RES1,3001,,16,NE,1975,1975,3103,2,1,2765.246242,2765.246242,3505,NO,43.67,57.42,3,8.31,6106,114.868907,124.428465,134.26884,140.374188,I,Above,Gable,0,5701,Wood,50.54719798,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4732,NJBF000073456,5212 HARBOR BEACH BLVD,Atlantic City,NJ,39.38087345,-74.40807171,RES1,3001,,16,NE,1975,1975,3103,1,1,1912.949942,1912.949942,3505,NO,16.05,24.74,3,-1,6110,114.83705,124.400225,134.237934,140.347125,I,Above,Hip,0,5701,Wood,20.39631917,0,0,,,,1,1,,0.35,nav,1,1975,1,, 4733,NJBF000073704,,Atlantic City,NJ,39.3826081,-74.40801965,RES1,3001,,NaN,NE,1969,0,3103,5,1,1419.302725,1419.302725,3505,NO,70.4,82.88,3,4.41,6106,114.818649,124.383331,134.220568,140.324289,I,Above,Gable,0,5701,Wood,76.64252528,0,0,,,,1,1,,0.03,nav,1,1969,5,, 4734,NJBF000073927,608 LAGOON BLVD,Atlantic City,NJ,39.3840455,-74.4052135,RES1,3001,,33,NE,1987,1987,3102,2,1,4765.674101,4765.674101,3507,NO,27.72,42.33,1,0.41,6106,114.861502,124.420525,134.263194,140.349026,I,Above,Gable,0,5701,Wood,35.02549764,0,0,,,,1,1,,0.03,nav,1,1987,2,, 4735,NJBF000073765,704 LAGOON BLVD,Atlantic City,NJ,39.38302434,-74.40689257,RES1,3001,,43,NE,1984,1984,3103,2,2,1352.128178,1352.128178,3505,NO,21.69,28.25,3,-2.47,6106,114.837673,124.399913,134.239381,140.336407,I,Above,Gable,0,5701,Wood,24.96773711,0,0,,,,1,1,,0.03,nav,1,1984,2,, 4736,NJBF000073630,5230 LAGOON BLVD,Atlantic City,NJ,39.38212031,-74.40913537,RES1,3001,,16,NE,1975,1975,3103,2,1,2043.763974,2043.763974,3505,NO,43.88,52.97,3,5.26,6106,114.800666,124.367728,134.202795,140.313349,I,Above,Gable,0,5701,Wood,48.42219851,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4737,NJBF000073674,,Atlantic City,NJ,39.38243331,-74.40506854,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1980.138533,1980.138533,3505,NO,27.58,41.17,3,5.86,6106,114.882581,124.439758,134.283299,140.373159,I,Above,Gable,0,5701,Wood,34.37572032,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4738,NJBF000073471,12 OCEAN DRIVE WEST,Atlantic City,NJ,39.38097701,-74.40990158,RES1,3001,,15,NE,1975,1975,3103,1,1,1956.954549,1956.954549,3505,NO,19.3,26.97,3,5.81,6106,114.79736,124.365325,134.199177,140.316884,I,Above,Gable,0,5701,Wood,23.13520557,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 4739,NJBF000073480,11 OCEAN DRIVE WEST,Atlantic City,NJ,39.38105347,-74.40928197,RES1,3001,,16,NE,1975,1975,3103,1,1,1665.317046,1665.317046,3505,NO,19.18,31.15,3,-0.17,6106,114.80956,124.376001,134.21112,140.325618,I,Above,Gable,0,5701,Wood,25.16608177,0,0,,,,1,1,,0.03,nav,1,1975,1,, 4740,NJBF000073171,5204 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.378487,-74.4052675,RES1,3001,,18,NE,1975,1975,3102,2,1,1847.288631,1847.288631,3507,NO,29.9,35.01,1,-0.35,6106,114.923066,124.476627,134.320935,140.4234,I,Above,Hip,0,5701,Wood,32.45658942,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4741,NJBF000073143,4 HARBOUR COURT,Atlantic City,NJ,39.37823121,-74.40707597,RES1,3001,,16,NE,1975,1975,3103,1,1,2024.419137,2024.419137,3505,NO,11.66,22.68,3,-0.35,6106,114.887958,124.445828,134.286404,140.398633,I,Above,Gable,0,5701,Wood,17.16783271,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 4742,NJBF000073662,36 SURFSIDE RD,Atlantic City,NJ,39.38234848,-74.40107557,RES3C,3001,,37,ME,1982,1982,3301,3,1,9996.605862,9996.605862,3507,NO,41.06,53.03,1,1.09,6106,114.967178,124.51462,134.366751,140.436921,I,Above,Gable,0,NaN,Wood,47.04394992,0,1.1,,,,1,1,,0.03,nav,1,1982,3,, 4743,NJBF000073585,,Atlantic City,NJ,39.381823,-74.4061455,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1207.610568,1207.610568,3505,NO,16.25,26.81,3,-0.31,6106,114.866852,124.426102,134.267563,140.364511,I,Above,Gable,0,5701,Wood,21.53406646,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4744,NJBF000073541,3 LAGOON COURT,Atlantic City,NJ,39.38147478,-74.40889102,RES1,3001,,16,NE,1975,1975,3103,1,1,2302.675302,2302.675302,3505,NO,18.56,27.91,3,1,6106,114.813042,124.378883,134.21468,140.326015,I,Above,Flat,0,5701,Wood,23.23173447,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 4745,NJBF000073302,5115 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3796951,-74.40479518,RES1,3001,,16,NE,1974,1974,3102,1,1,1979.958768,1979.958768,3507,NO,19.98,32.85,1,1.24,6106,114.919237,124.472944,134.317917,140.414467,I,Above,Gable,0,5701,Wood,26.41850362,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 4746,NJBF000073492,10 OCEAN DRIVE WEST,Atlantic City,NJ,39.38113137,-74.40999679,RES1,3001,,16,NE,1975,1975,3103,2,1,1832.035426,1832.035426,3505,NO,34.18,44.84,3,1.89,6106,114.793626,124.361982,134.195585,140.313277,I,Above,Gable,0,5701,Wood,39.51043841,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4747,NJBF000073371,21 OCEAN DRIVE WEST,Atlantic City,NJ,39.38019752,-74.4087362,RES1,3001,,17,NE,1992,1992,3103,3,1,1857.996159,1857.996159,3505,YES,51.89,63.4,3,3.35,6106,114.830698,124.394901,134.231434,140.345885,I,Above,Flat,0,5701,Wood,57.64525545,0,1.1,,,,1,1,,0.03,nav,1,1992,3,, 4748,NJBF000073521,7 OCEAN DRIVE WEST,Atlantic City,NJ,39.38132075,-74.40946207,RES1,3001,,20,NE,2006,2006,3103,3,1,1922.257376,1922.257376,3505,NO,57.38,70.8,3,3.76,6106,114.802755,124.369913,134.204567,140.319116,I,Above,Gable,0,5701,Wood,64.08982569,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 4749,NJBF000073507,9 OCEAN DRIVE WEST,Atlantic City,NJ,39.38119785,-74.40938415,RES1,3001,,16,NE,1975,1975,3103,2,1,1545.070817,1545.070817,3505,NO,36.03,46,3,0.97,6106,114.80578,124.372622,134.20748,140.322028,I,Above,Gable,0,5701,Wood,41.01525803,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4750,NJBF000073323,5113 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37982213,-74.40460422,RES1,3001,,16,NE,1975,1975,3102,2,1,1019.415314,1019.415314,3507,NO,25.24,38.12,1,-0.84,6106,114.921804,124.475173,134.320515,140.415738,I,Above,Gable,0,5701,Wood,31.67970082,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4751,NJBF000073487,5205 HARBOR BEACH BLVD,Atlantic City,NJ,39.38109464,-74.40733993,RES1,3001,,17,NE,1987,1987,3103,2,1,1915.468457,1915.468457,3505,NO,29.1,37.88,3,5.5,6110,114.849941,124.411477,134.250652,140.355614,I,Above,Gable,0,5701,Wood,33.48988655,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 4752,NJBF000073246,5202 SEA SPRAY RD,Atlantic City,NJ,39.37929309,-74.40587609,RES1,3001,,16,NE,1975,1975,3102,2,1,2120.219559,2120.219559,3507,NO,29.58,35.59,1,1.62,6106,114.901099,124.457082,134.299885,140.403005,I,Above,Hip,0,5701,Wood,32.58047636,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4753,NJBF000073320,5208 WATERVIEW DR,Atlantic City,NJ,39.37981519,-74.40713031,RES1,3001,,16,NE,1975,1975,3103,2,1,1793.714837,1793.714837,3505,NO,31.04,44.87,3,-1.02,6106,114.868819,124.428529,134.268542,140.376304,I,Above,Gable,0,5701,Wood,37.95362536,0,0,,,,1,1,,0.03,nav,1,1975,2,, 4754,NJBF000073303,5208 WATERVIEW DR,Atlantic City,NJ,39.37970049,-74.40704249,RES1,3001,,16,NE,1975,1975,3103,2,1,555.4927947,555.4927947,3505,NO,28.38,38.23,3,6.23,6106,114.871973,124.431339,134.271571,140.379244,I,Above,Hip,0,5701,Wood,33.30859149,0,0,,,,1,1,,0.03,nav,1,1975,2,, 4755,NJBF000073096,52 OCEAN DRIVE WEST,Atlantic City,NJ,39.37753456,-74.40763036,RES1,3001,,16,NE,1975,1975,3103,2,1,1772.471687,1772.471687,3505,NO,38.28,46.46,3,4.76,6106,114.884245,124.442762,134.282364,140.399419,I,Above,Hip,0,5701,Wood,42.3698795,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4756,NJBF000073757,7 OCKENLANDER DRIVE,Atlantic City,NJ,39.38298498,-74.40969477,RES1,3001,,17,NE,1987,1987,3103,2,1,1201.007692,1201.007692,3505,NO,38.64,48.95,3,1.06,6106,114.779203,124.348462,134.182049,140.292649,I,Above,Gable,0,5701,Wood,43.79500654,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 4757,NJBF000073170,5209 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37846411,-74.40602883,RES1,3001,,16,NE,1974,1974,3102,2,1,2060.132745,2060.132745,3507,NO,33.95,39.41,1,2.25,6106,114.907317,124.462778,134.305488,140.411825,I,Above,Hip,0,5701,Wood,36.68389921,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 4758,NJBF000073123,47 OCEAN DRIVE WEST,Atlantic City,NJ,39.37798236,-74.40731839,RES1,3001,,16,NE,1975,1975,3103,2,1,1248.65596,1248.65596,3505,YES,28.41,41.47,3,-0.04,6106,114.885707,124.443921,134.284057,140.398229,I,Above,Gable,0,5701,Wood,34.93764997,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4759,NJBF000073682,,Atlantic City,NJ,39.38247277,-74.40735256,RES1,3001,,NaN,NE,1969,0,3103,4,1,1261.444129,1261.444129,3505,NO,52.04,62.94,3,8.76,6106,114.83418,124.397063,134.235752,140.336653,I,Above,Gable,0,5701,Wood,57.48934986,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4760,NJBF000073748,6 OCKENLANDER DRIVE,Atlantic City,NJ,39.38289425,-74.40986868,RES1,3001,,17,NE,2002,2002,3103,2,1,1439.52579,1439.52579,3505,NO,34.74,41.32,3,1.47,6106,114.776557,124.346181,134.179437,140.291142,I,Above,Hip,0,5701,Wood,38.03412968,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 4761,NJBF000073664,,Atlantic City,NJ,39.382352,-74.405982,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1013.566696,1013.566696,3505,NO,20.83,28.9,3,2.81,6106,114.864331,124.423684,134.265314,140.359896,I,Above,Gable,0,5701,Wood,24.86694538,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4762,NJBF000073155,5211 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37832697,-74.40612183,RES1,3001,,16,NE,1975,1975,3102,2,1,1437.356638,1437.356638,3507,NO,35.77,42.57,1,2.59,6106,114.906924,124.462468,134.305019,140.412226,I,Above,Hip,0,5701,Wood,39.17315801,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4763,NJBF000073278,5217 SEA SPRAY RD,Atlantic City,NJ,39.37952599,-74.4076915,RES1,3001,,16,NE,1975,1975,3103,2,1,1124.677511,1124.677511,3505,NO,27.47,40.48,3,2.14,6106,114.860296,124.421134,134.260056,140.371437,I,Above,Gable,0,5701,Wood,33.97321511,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4764,NJBF000073763,,Atlantic City,NJ,39.3830145,-74.4056285,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1289.950087,1289.950087,3505,NO,17.73,32.26,3,0.91,6106,114.864308,124.423411,134.265563,140.356457,I,Above,Gable,0,5701,Wood,24.99872689,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4765,NJBF000073613,,Atlantic City,NJ,39.38201812,-74.40705971,RES1,3001,,NaN,NE,1969,0,3103,5,1,1227.493777,1227.493777,3505,NO,70.65,81.01,3,2.39,6110,114.845441,124.407164,134.246626,140.347464,I,Above,Gable,0,5701,Wood,75.82943356,0,0,,,,1,1,,0.35,nav,1,1969,5,, 4766,NJBF000073483,5214 HARBOR BEACH BLVD,Atlantic City,NJ,39.38106382,-74.40817845,RES1,3001,,16,NE,1975,1975,3103,2,1,1499.112473,1499.112473,3505,YES,42.84,53.28,3,3.85,6110,114.832668,124.396298,134.233724,140.342855,I,Above,Flat,0,5701,Wood,48.06287748,0,0,,,,1,1,,0.35,nav,1,1975,2,, 4767,NJBF000073612,,Atlantic City,NJ,39.38201234,-74.40194763,RES3C,3001,,NaN,ME,1982,0,3301,2,1,6034.167507,6034.167507,3507,NO,28.19,39.89,1,2.57,6106,114.952716,124.501895,134.352253,140.427788,I,Above,Flat,0,NaN,Wood,34.04198364,0,0,,,,1,1,,0.03,nav,1,1982,2,, 4768,NJBF000073212,5120 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37900575,-74.40469324,RES1,3001,,16,NE,1975,1975,3102,2,1,2417.288272,2417.288272,3507,YES,21.74,27.49,1,-0.66,6106,114.929208,124.481907,134.327289,140.425352,I,Above,Flat,0,5701,Wood,24.61306697,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4769,NJBF000073532,7 OCEAN DRIVE EAST,Atlantic City,NJ,39.38137822,-74.4036316,RES1,3001,,16,NE,1975,1975,3102,1,1,1850.197431,1850.197431,3507,NO,15.27,24.6,1,1.02,6106,114.924588,124.477196,134.324141,140.409959,I,Above,Hip,0,5701,Wood,19.9351187,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 4770,NJBF000073719,,Atlantic City,NJ,39.382722,-74.40678549,RES1,3001,,NaN,NE,1969,0,3103,5,1,1154.584719,1154.584719,3505,NO,77.13,89.48,3,-2.41,6106,114.843322,124.405016,134.244818,140.34222,I,Above,Gable,0,5701,Wood,83.30533891,0,0,,,,1,1,,0.03,nav,1,1969,5,, 4771,NJBF000073186,38 OCEAN DRIVE WEST,Atlantic City,NJ,39.37875274,-74.40847092,RES1,3001,,16,NE,1978,1978,3103,1,1,2194.981263,2194.981263,3505,NO,17.67,31.17,3,2.16,6106,114.852656,124.414683,134.252199,140.369727,I,Above,Hip,0,5701,Wood,24.42138403,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 4772,NJBF000073870,624 LAGOON BLVD,Atlantic City,NJ,39.38367868,-74.40562646,RES1,3001,,33,NE,1985,1987,3102,2,1,5118.974809,5118.974809,3507,NO,23.05,37.59,1,1.93,6106,114.856946,124.416648,134.258572,140.347493,I,Above,Hip,0,5701,Wood,30.32291322,0,0,,,,1,1,,0.03,nav,1,1985,2,, 4773,NJBF000073127,5210 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3780255,-74.405701,RES1,3001,,17,NE,1975,1975,3102,2,1,1545.457878,1545.457878,3507,NO,35.88,45.45,1,-0.32,6106,114.919219,124.473354,134.31687,140.42287,I,Above,Hip,0,5701,Wood,40.66619832,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 4774,NJBF000073552,,Atlantic City,NJ,39.3815445,-74.40667549,RES1,3001,,NaN,NE,1969,0,3103,6,1,1124.755587,1124.755587,3505,NO,90.52,99.92,3,7.8,6110,114.858859,124.419162,134.259593,140.359966,I,Above,Gable,0,5701,Wood,95.22063228,0,0,,,,1,1,,0.35,nav,1,1969,6,, 4775,NJBF000073728,23 SURFSIDE RD,Atlantic City,NJ,39.38276086,-74.40087677,RES3C,3001,,37,ME,1986,1983,3301,3,1,3940.63328,3940.63328,3507,NO,41.77,56.6,1,-0.38,6106,114.966694,124.514084,134.366513,140.434498,I,Above,Gable,0,NaN,Wood,49.18452873,0,1.1,,,,1,1,,0.03,nav,1,1986,3,, 4776,NJBF000073199,7 HARBOUR COURT,Atlantic City,NJ,39.37885702,-74.40705384,RES1,3001,,16,NE,1975,1975,3103,2,1,1773.400748,1773.400748,3505,NO,26.28,37.93,3,-2.93,6106,114.881292,124.439792,134.280241,140.390492,I,Above,Gable,0,5701,Wood,32.10955418,0,0,,,,1,1,,0.03,nav,1,1975,2,, 4777,NJBF000073177,39 OCEAN DRIVE WEST,Atlantic City,NJ,39.37859804,-74.40772702,RES1,3001,,17,NE,1977,1977,3103,3,1,1444.399168,1444.399168,3505,NO,46.95,53.04,3,8.83,6106,114.87008,124.430023,134.269136,140.38348,I,Above,Gable,0,5701,Wood,49.99445462,0,1.1,,,,1,1,,0.03,nav,1,1977,3,, 4778,NJBF000073742,,Atlantic City,NJ,39.3828629,-74.40727673,RES1,3001,,NaN,NE,1969,0,3103,5,1,1651.891445,1651.891445,3505,NO,103.31,108.49,3,6.83,6106,114.831409,124.394459,134.233172,140.33254,I,Above,Gable,0,5701,Wood,105.9004716,0,0,,,,1,1,,0.03,nav,1,1969,5,, 4779,NJBF000073587,2 LAGOON COURT,Atlantic City,NJ,39.38183202,-74.40910852,RES1,3001,,16,NE,1975,1975,3103,1,1,1548.294994,1548.294994,3505,NO,16.58,25.94,3,3.63,6106,114.804444,124.371175,134.206395,140.317698,I,Above,Gable,0,5701,Wood,21.26138945,0,0,,,,1,1,,0.03,nav,1,1975,1,, 4780,NJBF000073813,634 ALBERTA DRIVE,Atlantic City,NJ,39.38333239,-74.40523101,RES1,3001,,33,NE,1987,1987,3102,2,1,4741.431883,4741.431883,3507,NO,29.12,43.83,1,2.27,6106,114.86911,124.427528,134.270416,140.358428,I,Above,Gable,0,5701,Wood,36.47298375,0,0,,,,1,1,,0.03,nav,1,1987,2,, 4781,NJBF000066818,120 N WINDSOR AVE,Atlantic City,NJ,39.35088935,-74.46113219,RES3A,3001,,17,NE,1922,1922,3301,2,1,828.4791098,828.4791098,3505,NO,25.26,34.49,3,0.13,6106,114.052756,123.748499,133.497491,139.940684,I,Above,Hip,0,5701,Wood,29.8792011,0,0,,,,1,1,,0.03,nav,1,1922,2,, 4782,NJBF000070032,211 ORIENTAL AVE,Atlantic City,NJ,39.36556221,-74.41170283,RES3A,3001,,45,NE,1910,1910,3301,3,3,8041.125001,8041.125001,3505,YES,51.43,63.18,3,-1.9,6106,114.938278,124.491567,134.32479,140.498387,I,Above,Flat,0,5701,Wood,57.30502446,0,0,,,,1,1,,0.03,nav,1,1910,3,, 4783,NJBF000068986,31 N GEORGIA AVE RR #A,Atlantic City,NJ,39.35825264,-74.44088224,RES3B,3001,,17,ME,1912,1912,3301,2,1,696.4795771,696.4795771,3505,NO,20.74,32.57,3,-1.26,6106,114.402056,124.035739,133.815736,140.150649,I,Above,Gable,0,NaN,Wood,26.65792121,0,0,,,,1,1,,0.03,nav,1,1912,2,, 4784,NJBF000068471,2819 DENNY ST,Atlantic City,NJ,39.35686782,-74.44792841,RES3A,3001,,27,NE,1900,1900,3301,2,2,1772.662377,1772.662377,3505,YES,34.75,39.91,3,1.17,6106,114.266253,123.922714,133.691255,140.060405,I,Above,Flat,0,5701,Wood,37.32702798,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4785,NJBF000069342,2001 ATLANTIC AVE,Atlantic City,NJ,39.35976721,-74.43648058,COM1,3003,101,NaN,ME,1969,0,3401,1,1,63852.88988,63852.88988,3507,NO,14.39,28.51,1,1.82,6106,114.478637,124.099653,133.887044,140.197427,I,Above,Flat,0,NaN,Wood,21.45089975,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4786,NJBF000068380,40 N CALIFORNIA AVE,Atlantic City,NJ,39.3565633,-74.44547055,COM1,3003,,33,ME,1969,1900,3401,2,1,27405.42928,27405.42928,3507,YES,27.23,34.25,1,2.88,6106,114.32339,123.970495,133.743031,140.103494,I,Above,Flat,0,NaN,Wood,30.74003932,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4787,NJBF000067518,307 N ELBERON AVE,Atlantic City,NJ,39.35371333,-74.45989647,RES1,3001,,16,NE,1900,1900,3102,2,1,591.3776405,591.3776405,3505,NO,36.94,51.76,3,6.83,6106,114.044268,123.740268,133.490819,139.917212,I,Above,Flat,0,5701,Wood,44.35033856,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4788,NJBF000069031,112 N FLORIDA AVE,Atlantic City,NJ,39.3584512,-74.44338455,RES3B,3001,,45,ME,1900,1900,3301,3,3,2043.621648,2043.621648,3505,YES,53.74,63.2,3,7.42,6106,114.345424,123.988194,133.763989,140.108616,I,Above,Gable,0,NaN,Wood,58.46953646,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4789,NJBF000068295,108 N BRIGHTON AVE,Atlantic City,NJ,39.35625316,-74.44846099,RES3A,3001,,45,NE,1900,1900,3301,2,2,1027.473229,1027.473229,3505,NO,32.2,40.89,3,7.17,6106,114.262255,123.919638,133.687383,140.061091,I,Above,Hip,0,5701,Wood,36.54838807,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4790,NJBF000067698,319 N HARRISBURG AVE,Atlantic City,NJ,39.35420666,-74.45928393,RES1,3001,,17,NE,1920,1920,3102,1,1,1590.048425,1590.048425,3505,NO,16.81,26.55,3,3.09,6106,114.051497,123.745981,133.497372,139.919507,I,Above,Hip,0,5701,Wood,21.6802976,0,0,,,,1,1,,0.03,nav,1,1920,1,, 4791,NJBF000067434,110 N HARTFORD AVE,Atlantic City,NJ,39.35346607,-74.45520003,RES3B,3001,,33,E,1900,1900,3303,2,1,2037.056494,2037.056494,3507,YES,32.65,46.53,1,0.7,6106,114.150052,123.82768,133.585202,139.996118,I,Above,Flat,0,NaN,Wood,39.58866178,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4792,NJBF000068088,2715 ATLANTIC AVE,Atlantic City,NJ,39.35559042,-74.44531677,COM1,3003,,NaN,ME,1969,0,3401,5,1,24480.61874,24480.61874,3507,NO,88.6,102.3,1,2.59,6106,114.338772,123.983679,133.75653,140.120114,I,Above,Flat,0,NaN,Wood,95.4515138,0,0,,,,1,1,,0.03,nav,1,1969,5,, 4793,NJBF000069240,2243 ARCTIC AVE,Atlantic City,NJ,39.359309,-74.440212,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1366.275772,1366.275772,3507,NO,26.93,32.18,1,1.43,6106,114.403634,124.036683,133.817716,140.145848,I,Above,Flat,0,NaN,Wood,29.55326197,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4794,NJBF000066231,4403 WINCHESTER AVE,Atlantic City,NJ,39.34925128,-74.46363161,RES3A,3001,,17,NE,1900,1900,3301,2,1,1633.885779,1633.885779,3505,NO,31.22,44.22,3,1.15,6106,114.018801,123.721241,133.46679,139.925775,I,Above,Gable,0,5701,Wood,37.72072475,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4795,NJBF000070583,1225 DREXEL AVE,Atlantic City,NJ,39.3676885,-74.4298365,RES3C,3003,,NaN,E,1969,0,3305,6,1,9956.102284,9956.102284,3507,NO,67.57,72.63,1,-0.55,6106,114.526629,124.137254,133.935414,140.188398,I,Above,Flat,0,NaN,Wood,70.09604467,0,0,,,,2,2,,0.03,nav,1,1969,6,, 4796,NJBF000068409,11 N TEXAS AVE,Atlantic City,NJ,39.35665417,-74.44337424,RES3B,3001,,45,ME,1930,1930,3301,4,3,1282.343255,1282.343255,3505,YES,49.77,64.04,3,7.31,6106,114.367754,124.007545,133.783509,140.134942,I,Above,Gable,0,NaN,Wood,56.9022459,0,0,,,,1,1,,0.03,nav,1,1930,4,, 4797,NJBF000067717,325 N ELBERON AVE,Atlantic City,NJ,39.35425995,-74.46055504,RES1,3001,,17,NE,1925,1925,3102,2,1,1638.449534,1638.449534,3505,NO,29.12,43.73,3,4,6106,114.023003,123.722483,133.472016,139.898142,I,Above,Flat,0,5701,Wood,36.42519529,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4798,NJBF000071387,724 PEARL PL,Atlantic City,NJ,39.37044433,-74.42335937,RES1,3001,,33,NE,1900,1900,3102,2,1,1584.285876,1584.285876,3505,YES,32.09,45.3,3,4.06,6106,114.632827,124.226938,134.036711,140.251178,I,Above,Flat,0,5701,Wood,38.69482869,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4799,NJBF000071670,352 N CONNECTICUT AVE,Atlantic City,NJ,39.37123003,-74.4216669,RES1,3001,,27,NE,1900,1900,3102,2,2,871.0827493,871.0827493,3505,YES,27.5,37.48,3,0.64,6106,114.659728,124.249761,134.062624,140.266701,I,Above,Gable,0,5701,Wood,32.49128595,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4800,NJBF000067392,3603 WINCHESTER AVE,Atlantic City,NJ,39.35331989,-74.45507908,RES3B,3001,,45,E,1900,1900,3303,3,3,1281.733872,1281.733872,3507,YES,50.14,61.8,1,1.16,6106,114.154523,123.831436,133.58915,140.000237,I,Above,Gable,0,NaN,Wood,55.97136344,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4801,NJBF000067377,3904 SOUTH BLVD,Atlantic City,NJ,39.35327514,-74.45920897,RES1,3001,,17,NE,1966,1966,3102,1,1,2083.099218,2083.099218,3505,NO,23.56,36.89,3,4.6,6106,114.064793,123.757384,133.508978,139.934988,I,Above,Gable,0,5701,Wood,30.22565927,0,0,,,,1,1,,0.03,nav,1,1966,1,, 4802,NJBF000071634,310 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37113332,-74.41996751,RES1,3001,,17,NE,1999,1999,3102,2,1,951.8465187,951.8465187,3505,NO,27.53,36.66,3,-0.52,6106,114.697032,124.281947,134.098129,140.294634,I,Above,Hip,0,5701,Wood,32.09815037,0,0,,,,1,1,,0.03,nav,1,1999,2,, 4803,NJBF000071449,525 MELROSE AVE,Atlantic City,NJ,39.37064339,-74.42050657,RES1,3001,,17,NE,1900,1900,3102,1,1,1136.397617,1136.397617,3505,NO,16.75,30.01,3,-0.15,6106,114.691281,124.277162,134.092395,140.293024,I,Above,Gable,0,5701,Wood,23.37920666,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4804,NJBF000068586,2917 FAIRMOUNT AVE,Atlantic City,NJ,39.3571809,-74.44968376,RES3A,3001,,27,NE,1910,1910,3301,2,2,1879.095381,1879.095381,3507,YES,33.36,38.96,1,-0.01,6106,114.224202,123.887563,133.653271,140.02801,I,Above,Flat,0,5701,Wood,36.16183264,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4805,NJBF000070775,345 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36838613,-74.4288399,RES1,3001,,27,NE,2002,2002,3103,2,2,1938.307942,1938.307942,3505,NO,41.87,48.33,3,6.4,6106,114.53976,124.148135,133.947997,140.194146,I,Above,Gable,0,5701,Wood,45.10287812,0,0,,,,1,1,,0.03,nav,1,2002,2,, 4806,NJBF000071524,519 GRAFF LANE,Atlantic City,NJ,39.3708281,-74.42077385,RES1,3001,,17,NE,1925,1925,3102,2,1,665.0109715,665.0109715,3505,YES,39.94,47.87,3,6.41,6106,114.683436,124.270335,134.085013,140.286279,I,Above,Hip,0,5701,Wood,43.90415778,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4807,NJBF000068182,3118 FAIRMOUNT AVE,Atlantic City,NJ,39.355914,-74.45147684,RES3A,3001,,45,NE,1920,1920,3301,2,4,936.089012,936.089012,3505,NO,37.28,50.53,3,5.36,6106,114.200794,123.868678,133.631699,140.018469,I,Above,Gable,0,5701,Wood,43.90462619,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4808,NJBF000069903,310 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36489638,-74.43513381,RES1,3001,,17,NE,1900,1900,3101,1,1,1751.722331,1751.722331,3507,NO,15.75,22.35,1,-0.35,6106,114.445862,124.069942,133.859029,140.144963,I,Above,Gable,0,5701,Wood,19.04749274,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4809,NJBF000069236,217 N ARIZONA AVE,Atlantic City,NJ,39.35929433,-74.44592587,RES3A,3001,,27,NE,1900,1900,3301,2,2,1624.950368,1624.950368,3505,YES,43.53,56.45,3,8.65,6106,114.280006,123.933108,133.704616,140.056229,I,Above,Flat,0,5701,Wood,49.9901776,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4810,NJBF000069036,720 WARRENA RD,Atlantic City,NJ,39.358483,-74.4637895,RES1,3001,,16,NE,1920,1920,3101,1,1,830.8203431,830.8203431,3505,NO,15.8,29.79,3,-1.06,6106,113.899943,123.618636,133.362776,139.77944,I,Above,Flat,0,5701,Wood,22.79332955,0,0,,,,1,1,,0.03,nav,1,1920,1,, 4811,NJBF000069324,233 N TEXAS AVE,Atlantic City,NJ,39.35967815,-74.44538422,RES3A,3001,,27,NE,1900,1900,3301,2,2,1679.616613,1679.616613,3505,YES,29.92,38.82,3,-2.39,6106,114.287092,123.938849,133.711196,140.059146,I,Above,Gable,0,5701,Wood,34.3702451,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4812,NJBF000069928,200 N TENNESSEE AVE,Atlantic City,NJ,39.36503974,-74.43029663,RES3D,3004,,17,E,2002,2002,3303,1,1,2058.460961,2058.460961,3505,NO,8.63,16.33,3,-2.1,6106,114.548141,124.15667,133.954442,140.218756,I,Above,Hip,0,NaN,Wood,12.47971176,0,0,,,,1,1,,0.03,nav,1,2002,1,, 4813,NJBF000069068,711 N HARRISBURG AVE #A,Atlantic City,NJ,39.35865298,-74.46285617,RES1,3001,,16,NE,1900,1900,3101,1,1,867.0615067,867.0615067,3505,NO,19.16,33.8,3,5.02,6106,113.918358,123.633658,133.37911,139.792293,I,Above,Hip,0,5701,Wood,26.47921872,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4814,NJBF000069052,645 N ELBERON AVE,Atlantic City,NJ,39.35854902,-74.46407143,RES1,3001,,17,NE,1900,1900,3101,1,1,1534.078482,1534.078482,3505,NO,23.19,31.68,3,4.34,6106,113.89297,123.612857,133.356579,139.773732,I,Above,Hip,0,5701,Wood,27.43268041,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4815,NJBF000071560,,Atlantic City,NJ,39.37093447,-74.42626487,RES1,3001,,NaN,NE,1969,0,3102,2,1,622.7485917,622.7485917,3505,NO,44.29,59.19,3,5.57,6106,114.565057,124.168566,133.972697,140.198605,I,Above,Flat,0,5701,Wood,51.73955166,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4816,NJBF000071536,438 N MARYLAND AVE,Atlantic City,NJ,39.3708642,-74.42623906,RES1,3001,,27,NE,1900,1900,3102,2,2,1503.497876,1503.497876,3505,YES,24.53,36.73,3,0.99,6106,114.566428,124.169775,133.973972,140.200004,I,Above,Flat,0,5701,Wood,30.62764437,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4817,NJBF000069424,260 N NEVADA AVE,Atlantic City,NJ,39.36027641,-74.44552625,RES3A,3001,,45,NE,1900,1900,3301,2,2,820.656117,820.656117,3505,NO,35.43,49.95,3,7.6,6106,114.276742,123.929902,133.701931,140.048087,I,Above,Gable,0,5701,Wood,42.69217986,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4818,NJBF000072457,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37373378,-74.42906148,RES3C,3004,,NaN,ME,1969,1968,3301,2,1,4695.160266,4695.160266,3505,NO,34.23,43.36,3,3.5,6106,114.472882,124.088045,133.886158,140.114476,I,Above,Flat,0,NaN,Wood,38.79260309,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4819,NJBF000072518,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37397685,-74.42842729,RES3C,3004,,NaN,ME,1969,1968,3301,1,1,3608.266212,3608.266212,3505,NO,18.55,23.79,3,2.67,6106,114.483658,124.097119,133.896354,140.121113,I,Above,Hip,0,NaN,Wood,21.17216258,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4820,NJBF000072302,732 N MARYLAND AVE #A,Atlantic City,NJ,39.373217,-74.42788716,RES3C,3004,,NaN,ME,1969,1968,3301,2,1,2991.973928,2991.973928,3505,NO,34.21,47.18,3,5.71,6106,114.503943,124.114965,133.915441,140.140542,I,Above,Gable,0,NaN,Wood,40.695958,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4821,NJBF000072100,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37258289,-74.42817923,RES3C,3004,,NaN,ME,1969,1968,3301,2,1,3520.93088,3520.93088,3505,NO,40.15,50.46,3,2.53,6106,114.505007,124.11625,133.91635,140.144931,I,Above,Flat,0,NaN,Wood,45.30306244,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4822,NJBF000072172,732 N MARYLAND AVE #A,Atlantic City,NJ,39.37277951,-74.42840973,RES3C,3004,,NaN,ME,1969,1968,3301,1,1,5304.490164,5304.490164,3505,NO,22.17,35.14,3,3.39,6106,114.497791,124.109956,133.909568,140.138455,I,Above,Hip,0,NaN,Wood,28.65546535,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4823,NJBF000071852,401 N CONNECTICUT AVE,Atlantic City,NJ,39.37181084,-74.42155933,RES1,3001,,17,NE,1925,1925,3102,2,1,1198.263421,1198.263421,3505,NO,30.03,41.71,3,2,6106,114.655268,124.245684,134.058628,140.260282,I,Above,Hip,0,5701,Wood,35.86966299,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4824,NJBF000071958,426 N CONNECTICUT AVE,Atlantic City,NJ,39.372102,-74.4222585,RES1,3001,,45,NE,1900,1900,3102,2,2,1304.462849,1304.462849,3505,NO,34.52,43.1,3,8.19,6106,114.636997,124.229824,134.041348,140.245238,I,Above,Gable,0,5701,Wood,38.81118452,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4825,NJBF000071267,501 N TENNESSEE AVE,Atlantic City,NJ,39.37000425,-74.43299518,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,6564.530061,6564.530061,3505,NO,46.51,59.08,3,5.6,6106,114.431676,124.055187,133.847034,140.105329,I,Above,Flat,0,NaN,Wood,52.79727785,0,0,,,,1,1,,0.03,nav,1,1950,3,, 4826,NJBF000071243,501 N TENNESSEE AVE,Atlantic City,NJ,39.3698995,-74.4327245,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,1659.299695,1659.299695,3505,NO,44.64,58.14,3,4.79,6106,114.438688,124.061214,133.85358,140.111117,I,Above,Flat,0,NaN,Wood,51.39118596,0,0,,,,1,1,,0.03,nav,1,1950,3,, 4827,NJBF000070254,1723 HUMMOCK AVE,Atlantic City,NJ,39.36644373,-74.43694904,RES1,3001,,17,NE,1900,1900,3101,2,1,892.805969,892.805969,3507,NO,32.32,40.53,1,2.68,6106,114.388379,124.020514,133.806085,140.093939,I,Above,Hip,0,5701,Wood,36.42531722,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4828,NJBF000072427,506 SEWELL AVE,Atlantic City,NJ,39.37363412,-74.42237944,RES1,3001,,45,NE,1925,1925,3102,2,2,1307.370386,1307.370386,3505,YES,31.57,42.08,3,4.08,6106,114.6167,124.21163,134.02254,140.221861,I,Above,Hip,0,5701,Wood,36.82907848,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4829,NJBF000071972,619 WABASH AVE,Atlantic City,NJ,39.372157,-74.42292177,RES1,3001,,17,NE,1930,1930,3102,1,1,2219.785134,2219.785134,3505,NO,9.31,18.65,3,-2.9,6106,114.622207,124.217069,134.027297,140.234028,I,Above,Flat,0,5701,Wood,13.97851261,0,0,,,,1,1,,0.03,nav,1,1930,1,, 4830,NJBF000070145,606 N MICHIGAN AVE,Atlantic City,NJ,39.3660095,-74.4404985,RES3B,3001,,45,ME,1900,1900,3301,3,3,1230.538735,1230.538735,3505,YES,47.13,54.73,3,1.7,6106,114.316904,123.960432,133.739886,140.043804,I,Above,Gable,0,NaN,Wood,50.93124532,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4831,NJBF000072025,512 WABASH AVENUE,Atlantic City,NJ,39.37233156,-74.42157659,RES1,3001,,17,NE,1900,1900,3102,2,1,1211.124583,1211.124583,3505,NO,27.94,40.35,3,-0.26,6106,114.648836,124.239922,134.052712,140.25272,I,Above,Hip,0,5701,Wood,34.14742777,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4832,NJBF000070813,1006 N MICHIGAN AVE,Atlantic City,NJ,39.36852944,-74.44218408,RES3A,3001,,16,NE,1915,1915,3301,2,1,993.4822026,993.4822026,3505,NO,43.8,50.37,3,8.91,6106,114.250848,123.903094,133.678999,139.979743,I,Above,Hip,0,5701,Wood,47.08313443,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4833,NJBF000073007,421 CARSON AVE,Atlantic City,NJ,39.37643766,-74.42269847,RES3D,3001,100,NaN,ME,1969,0,3301,2,1,696.1027599,696.1027599,3507,NO,37.07,48.19,1,-0.66,6106,114.577782,124.176557,133.986045,140.177385,I,Above,Flat,0,NaN,Wood,42.6308853,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4834,NJBF000072490,539 N NEW JERSEY AVE,Atlantic City,NJ,39.37384848,-74.42456371,RES1,3001,,NaN,NE,1900,0,3102,2,1,1929.152273,1929.152273,3505,NO,39.76,45.98,3,7.14,6106,114.567658,124.169299,133.975932,140.184314,I,Above,Flat,0,5701,Wood,42.87279819,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4835,NJBF000072339,507 N CONNECTICUT AVE,Atlantic City,NJ,39.37333884,-74.42259876,RES1,3001,,17,NE,1900,1900,3102,2,1,1143.877289,1143.877289,3505,NO,37,48.78,3,-0.43,6106,114.615416,124.210667,134.021227,140.222531,I,Above,Hip,0,5701,Wood,42.88996587,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4836,NJBF000073159,900 BEACH THOROFARE,Atlantic City,NJ,39.37834759,-74.42305073,GOV2,3001,,NaN,E,1969,0,3401,2,1,4394.411621,4394.411621,3507,NO,25.42,35.88,1,0.28,6106,114.548615,124.150183,133.958354,140.144815,I,Above,Hip,0,NaN,Wood,30.64676975,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4837,NJBF000073189,900 BEACH THOROFARE,Atlantic City,NJ,39.37880099,-74.42330599,GOV2,3001,,NaN,E,1969,0,3401,2,1,1741.858211,1741.858211,3507,NO,22.5,30.02,1,-0.79,6106,114.538081,124.14078,133.948293,140.134337,I,Above,Flat,0,NaN,Wood,26.25905943,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4838,NJBF000073239,900 BEACH THOROFARE,Atlantic City,NJ,39.37919926,-74.42356738,GOV2,3001,,NaN,E,1969,0,3401,2,1,2753.701741,2753.701741,3507,NO,23.8,38.37,1,1.43,6106,114.528048,124.131838,133.938698,140.124528,I,Above,Hip,0,NaN,Wood,31.08808332,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4839,NJBF000070617,610 GREEN ST,Atlantic City,NJ,39.367793,-74.436095,RES1,3001,,16,NE,1962,1962,3101,1,1,1136.296173,1136.296173,3505,NO,19.57,33.89,3,1.91,6106,114.390875,124.021858,133.808647,140.08796,I,Above,Gable,0,5701,Wood,26.72951607,0,0,,,,1,1,,0.03,nav,1,1962,1,, 4840,NJBF000070467,1916 MAGELLAN AVE,Atlantic City,NJ,39.36723773,-74.44011958,RES3B,3001,,45,ME,1900,1900,3301,2,2,3257.41244,3257.41244,3505,YES,27.57,33.95,3,4.49,6106,114.310589,123.954338,133.734163,140.031863,I,Above,Flat,0,5701,Wood,30.75942489,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4841,NJBF000070622,615 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36781644,-74.43645518,RES1,3001,,17,NE,1963,1963,3101,2,1,1216.04692,1216.04692,3505,NO,35.19,49.29,3,-1.36,6106,114.38285,124.015048,133.80119,140.081902,I,Above,Gable,0,5701,Wood,42.23741365,0,0,,,,1,1,,0.03,nav,1,1963,2,, 4842,NJBF000072552,547 N NEW JERSEY AVE,Atlantic City,NJ,39.37406068,-74.42474209,RES1,3001,,17,NE,2015,2015,3102,1,1,638.4171295,638.4171295,3505,NO,12.93,21.67,3,0.91,6106,114.561412,124.16381,133.970041,140.178485,I,Above,Gable,0,5701,Wood,17.29929654,0,0,,,,1,1,,0.03,nav,1,2015,1,, 4843,NJBF000067829,473 N RICHMOND AVE,Atlantic City,NJ,39.35465826,-74.46455757,RES1,3001,,17,NE,1900,1900,3102,1,1,1410.592002,1410.592002,3505,NO,20.17,34.85,3,2.29,6106,113.930253,123.646029,133.389792,139.82655,I,Above,Gable,0,5701,Wood,27.50968156,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4844,NJBF000067804,473 N RICHMOND AVE,Atlantic City,NJ,39.3545755,-74.464457,RES1,3001,,17,NE,1900,1900,3102,1,1,510.9958097,510.9958097,3505,NO,12.9,22.81,3,0.17,6106,113.933492,123.648735,133.392652,139.829497,I,Above,Gable,0,5701,Wood,17.85734719,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4845,NJBF000071931,712 CASPIAN AVE,Atlantic City,NJ,39.3720247,-74.4240822,RES1,3001,,17,NE,1900,1900,3102,1,1,1829.082586,1829.082586,3505,NO,13.93,26.93,3,-0.25,6106,114.598999,124.197171,134.005201,140.217621,I,Above,Gable,0,5701,Wood,20.42759344,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4846,NJBF000070882,1809 GRANT AVE,Atlantic City,NJ,39.36874105,-74.43951133,RES1,3001,,17,NE,1954,1954,3102,2,1,509.2445544,509.2445544,3505,NO,40.42,54.37,3,5.96,6106,114.306113,123.94956,133.730066,140.019608,I,Above,Gable,0,5701,Wood,47.39030383,0,0,,,,1,1,,0.03,nav,1,1954,2,, 4847,NJBF000070848,1809 GRANT AVE,Atlantic City,NJ,39.36862434,-74.43953692,RES1,3001,,17,NE,1954,1954,3102,2,1,902.098193,902.098193,3505,NO,43.06,49.83,3,6.73,6106,114.306919,123.950321,133.730812,140.020904,I,Above,Gable,0,5701,Wood,46.44395379,0,0,,,,1,1,,0.03,nav,1,1954,2,, 4848,NJBF000071652,1008 N KENTUCKY AVE,Atlantic City,NJ,39.37117907,-74.43762288,RES1,3001,,17,NE,1900,1900,3101,1,1,1821.019035,1821.019035,3505,NO,10.38,17.11,3,-0.76,6106,114.318481,123.958295,133.741456,140.014285,I,Above,Hip,0,5701,Wood,13.74331388,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4849,NJBF000070569,601-659 KENTUCKY AVE,Atlantic City,NJ,39.3676565,-74.4341635,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5296.706554,5296.706554,3505,NO,32.23,37.6,3,6.02,6106,114.434059,124.058547,133.84883,140.120575,I,Above,Gable,0,NaN,Wood,34.91197049,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4850,NJBF000072351,2040 KUEHNLE AVE,Atlantic City,NJ,39.37335921,-74.45106796,RES1,3001,,17,NE,2016,2016,3101,1,1,1943.4745,1943.4745,3505,NO,23.11,35.25,3,5.72,6106,114.00271,123.690313,133.449441,139.761911,I,Above,Hip,0,5701,Wood,29.18341987,0,0,,,,1,1,,0.03,nav,1,2016,1,, 4851,NJBF000070471,,Atlantic City,NJ,39.367255,-74.44088283,RES3B,3001,,NaN,ME,1969,0,3301,2,1,948.8058378,948.8058378,3505,NO,34.05,42.8,3,1.27,6106,114.293905,123.94026,133.718754,140.0194,I,Above,Flat,0,5701,Wood,38.42461857,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4852,NJBF000069991,410 N OHIO AVE,Atlantic City,NJ,39.36534822,-74.43850288,RES3B,3001,,NaN,ME,1900,0,3301,3,1,1793.984391,1793.984391,3505,YES,46.31,60.1,3,5.18,6106,114.367848,124.003774,133.78684,140.085196,I,Above,Flat,0,NaN,Wood,53.20567232,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4853,NJBF000068988,703 N HARRISBURG AVE,Atlantic City,NJ,39.35826528,-74.46263148,RES1,3001,,16,NE,1900,1900,3101,1,1,1055.919147,1055.919147,3505,NO,18.94,30.93,3,3.41,6106,113.928032,123.641892,133.387754,139.802067,I,Above,Hip,0,5701,Wood,24.93481028,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4854,NJBF000072474,2012 KUEHNLE AVE,Atlantic City,NJ,39.3737975,-74.45084677,RES1,3001,,17,NE,2010,2010,3102,2,1,1544.620152,1544.620152,3505,NO,28.27,43.12,3,1.83,6106,114.002532,123.689685,133.448999,139.758933,I,Above,Flat,0,5701,Wood,35.69570766,0,0,,,,1,1,,0.03,nav,1,2010,2,, 4855,NJBF000067542,415 WINDSOR RD,Atlantic City,NJ,39.35377379,-74.46339177,RES1,3001,,16,NE,1900,1900,3102,1,1,973.8113101,973.8113101,3505,NO,14.93,26.21,3,0.99,6106,113.966876,123.676587,133.422117,139.859484,I,Above,Hip,0,5701,Wood,20.57167561,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4856,NJBF000071756,1513 N MISSOURI AVE,Atlantic City,NJ,39.37151386,-74.4487293,RES1,3001,,17,NE,1984,1984,3102,2,1,1032.55487,1032.55487,3505,NO,25.9,34.49,3,2.62,6106,114.074525,123.752382,133.516155,139.828548,I,Above,Hip,0,5701,Wood,30.19411036,0,0,,,,1,1,,0.03,nav,1,1984,2,, 4857,NJBF000068950,643 N DOVER AVE,Atlantic City,NJ,39.35812998,-74.46489334,RES1,3001,,17,NE,2016,2016,3101,2,1,1006.911025,1006.911025,3505,YES,24.69,36.12,3,1.2,6106,113.880044,123.602544,133.345184,139.7666,I,Above,Gable,0,5701,Wood,30.4061421,0,0,,,,1,1,,0.03,nav,1,2016,2,, 4858,NJBF000071773,1930 RIVERSIDE DR,Atlantic City,NJ,39.37158763,-74.45565826,RES1,3001,,17,NE,2006,2006,3103,5,1,1736.06519,1736.06519,3505,NO,89.93,103.94,3,6.26,6106,113.923038,123.625717,133.378047,139.712243,I,Above,Gable,0,5701,Wood,96.93272782,0,0,,,,1,1,,0.03,nav,1,2006,5,, 4859,NJBF000071741,2230 KUEHNLE AVE,Atlantic City,NJ,39.37147112,-74.45193481,RES1,3001,,17,NE,1957,1957,3101,1,1,1796.099133,1796.099133,3505,NO,15.01,27.75,3,-2.62,6106,114.005396,123.694556,133.453005,139.776158,I,Above,Flat,0,5701,Wood,21.37792734,0,0,,,,1,1,,0.03,nav,1,1957,1,, 4860,NJBF000071718,1436 BEACH AVE,Atlantic City,NJ,39.37138729,-74.44742774,RES1,3001,,17,NE,2007,2007,3102,2,1,1646.650624,1646.650624,3505,NO,21.99,31.64,3,-2.39,6106,114.104197,123.777395,133.543411,139.851866,I,Above,Gable,0,5701,Wood,26.81654716,0,0,,,,1,1,,0.03,nav,1,2007,2,, 4861,NJBF000069924,2009 BACHARACH BLVD,Atlantic City,NJ,39.36501744,-74.4400061,COM1,3003,,NaN,ME,1969,0,3401,1,1,14005.24126,14005.24126,3507,NO,12.32,20.02,1,1.78,6106,114.339324,123.979905,133.760425,140.066154,I,Above,Flat,0,NaN,Wood,16.16829194,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4862,NJBF000071687,1431 W RIVERSIDE DR,Atlantic City,NJ,39.3712882,-74.4478566,RES1,3001,,17,NE,1900,1900,3102,2,1,1982.037677,1982.037677,3505,NO,33.46,43.9,3,1.01,6106,114.096033,123.770637,133.535963,139.846302,I,Above,Hip,0,5701,Wood,38.68338928,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4863,NJBF000071168,811 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36964251,-74.4376807,RES1,3001,,16,NE,1900,1900,3101,1,1,1305.016703,1305.016703,3505,NO,26.92,33.5,3,8.83,6106,114.335057,123.97342,133.756917,140.035766,I,Above,Flat,0,5701,Wood,30.20938861,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4864,NJBF000071235,800 N KENTUCKY AVE,Atlantic City,NJ,39.369868,-74.4367015,RES1,3001,,16,NE,1900,1900,3101,1,1,1120.209561,1120.209561,3505,NO,15.01,24.73,3,2.79,6106,114.35355,123.988933,133.774118,140.048182,I,Above,Gable,0,5701,Wood,19.87308216,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4865,NJBF000071996,1649 N MISSOURI AVE,Atlantic City,NJ,39.37222294,-74.4512603,RES1,3001,,17,NE,1900,1900,3102,2,1,912.601994,912.601994,3505,NO,32.63,45.89,3,-0.13,6106,114.011467,123.698853,133.458123,139.775951,I,Above,Gable,0,5701,Wood,39.26022434,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4866,NJBF000072270,2015 MORNINGSIDE DR,Atlantic City,NJ,39.37310499,-74.44760403,RES1,3001,,NaN,NE,1969,0,3102,2,1,5303.164791,5303.164791,3505,NO,30.89,39.57,3,0.27,6106,114.080732,123.75602,133.521093,139.823161,I,Above,Flat,0,5701,Wood,35.22944307,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4867,NJBF000072236,2015 MORNINGSIDE DR,Atlantic City,NJ,39.37299248,-74.44779882,RES1,3001,,NaN,NE,1969,0,3102,2,1,1233.193851,1233.193851,3505,NO,38.43,48.73,3,2.85,6106,114.077793,123.753665,133.518451,139.821642,I,Above,Gable,0,5701,Wood,43.58072242,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4868,NJBF000072701,1430 PENROSE AVE,Atlantic City,NJ,39.3745925,-74.446235,RES1,3001,,17,NE,1900,1900,3102,1,1,1622.124583,1622.124583,3505,NO,23.19,36.71,3,6.38,6106,114.0935,123.765242,133.532069,139.823444,I,Above,Gable,0,5701,Wood,29.95028311,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4869,NJBF000072373,2207 SENATE AVE,Atlantic City,NJ,39.37342742,-74.4572716,RES1,3001,,17,NE,1900,1900,3103,2,1,1508.741376,1508.741376,3505,NO,24.45,36.76,3,-2.2,6106,113.866985,123.576914,133.325845,139.656793,I,Above,Gable,0,5701,Wood,30.60249111,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4870,NJBF000069752,1 CONVENTION BOULEVARD,Atlantic City,NJ,39.36364655,-74.44046847,COM10,3003,,NaN,E,1969,0,3401,3,1,987428.07,987428.07,3507,NO,60.15,71.86,1,2.88,6106,114.345679,123.986004,133.76599,140.078813,I,Above,Flat,0,NaN,Wood,66.00820311,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4871,NJBF000070751,917 N MICHIGAN AVE,Atlantic City,NJ,39.36829534,-74.44162289,RES3B,3001,,45,ME,1900,1900,3301,2,2,1409.648489,1409.648489,3505,NO,19.67,30.4,3,-2.83,6106,114.265711,123.915786,133.692726,139.992227,I,Above,Hip,0,5701,Wood,25.03250514,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4872,NJBF000072401,1430 MADISON AVE,Atlantic City,NJ,39.3735305,-74.446833,RES1,3001,,29,NE,1900,1900,3102,2,2,1945.83103,1945.83103,3505,NO,41.32,56.09,3,3.41,6106,114.092586,123.765555,133.531778,139.829484,I,Above,Hip,0,5701,Wood,48.70403846,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4873,NJBF000072576,1509 MADISON AVE,Atlantic City,NJ,39.374148,-74.447442,RES1,3001,,45,NE,1900,1900,3102,1,2,600.0076061,600.0076061,3505,NO,23.15,30.7,3,4.69,6106,114.072396,123.747947,133.512881,139.810161,I,Above,Gable,0,5701,Wood,26.92439526,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4874,NJBF000072144,1417 EMERSON AVE,Atlantic City,NJ,39.37271102,-74.4465947,RES1,3001,,17,NE,1900,1900,3102,2,1,1998.371677,1998.371677,3505,YES,29.49,36.41,3,4.51,6106,114.107082,123.778555,133.545501,139.8457,I,Above,Flat,0,5701,Wood,32.95210163,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4875,NJBF000072138,1417 EMERSON AVE,Atlantic City,NJ,39.37269424,-74.4464026,RES1,3001,,NaN,NE,1900,0,3102,2,1,597.1351527,597.1351527,3505,NO,36.29,49.21,3,3.13,6106,114.111434,123.78223,133.549512,139.849113,I,Above,Gable,0,5701,Wood,42.75123065,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4876,NJBF000072499,1418 N OHIO AVE,Atlantic City,NJ,39.37388399,-74.44594224,RES1,3001,,45,NE,2017,2017,3102,3,2,1167.902078,1167.902078,3505,YES,51.1,57.89,3,7.44,6106,114.107863,123.778055,133.545671,139.83888,I,Above,Gable,0,5701,Wood,54.49488505,0,0,,,,1,1,,0.03,nav,1,2017,3,, 4877,NJBF000072248,1532 EMERSON AVE,Atlantic City,NJ,39.37302603,-74.44916397,RES1,3001,,45,NE,1900,1900,3102,2,2,1081.700657,1081.700657,3505,NO,26.13,35.06,3,4.67,6106,114.047813,123.728466,133.490926,139.798562,I,Above,Gable,0,5701,Wood,30.59291729,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4878,NJBF000072581,1834 EMERSON AVE,Atlantic City,NJ,39.37416719,-74.4531904,RES1,3001,,17,NE,2002,2002,3101,2,1,1245.480369,1245.480369,3505,NO,27.22,40.98,3,5.18,6106,113.947472,123.643186,133.398441,139.714172,I,Above,Gable,0,5701,Wood,34.09733196,0,0,,,,1,1,,0.03,nav,1,2002,2,, 4879,NJBF000071870,1420 N ARKANSAS AVE,Atlantic City,NJ,39.3718585,-74.4470215,RES1,3001,,45,NE,1926,1926,3102,1,3,1433.26091,1433.26091,3505,NO,11.23,24.22,3,0.06,6106,114.107579,123.77979,133.546324,139.851454,I,Above,Gable,0,5701,Wood,17.72446954,0,0,,,,1,1,,0.03,nav,1,1926,1,, 4880,NJBF000071299,816 N KENTUCKY AVE,Atlantic City,NJ,39.37012641,-74.43686547,RES1,3001,,17,NE,1900,1900,3101,1,1,1332.499933,1332.499933,3505,NO,17.79,23.59,3,6.06,6106,114.347016,123.983222,133.768042,140.041803,I,Above,Hip,0,5701,Wood,20.68837836,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4881,NJBF000071829,1414 N ARKANSAS AVE #A,Atlantic City,NJ,39.37175547,-74.44663481,RES1,3001,,NaN,NE,1969,0,3102,2,1,1297.202156,1297.202156,3505,NO,33.29,38.46,3,2.39,6106,114.117157,123.787934,133.555165,139.859368,I,Above,Hip,0,5701,Wood,35.87779455,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4882,NJBF000071310,901 N DR MARTIN LUTHER K,Atlantic City,NJ,39.37015677,-74.43804593,RES1,3001,,17,NE,1900,1900,3101,2,1,1067.43421,1067.43421,3505,YES,34.11,44.41,3,4.87,6106,114.321211,123.961343,133.744047,140.022411,I,Above,Gable,0,5701,Wood,39.26008659,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4883,NJBF000072171,1624 N ARKANSAS AVE,Atlantic City,NJ,39.37277928,-74.45031148,RES1,3001,,27,NE,1960,1960,3102,1,2,1938.546153,1938.546153,3505,NO,14.89,25.06,3,0.89,6106,114.025737,123.710218,133.470849,139.783281,I,Above,Flat,0,5701,Wood,19.9759267,0,0,,,,1,1,,0.03,nav,1,1960,1,, 4884,NJBF000072558,1432 N OHIO AVE,Atlantic City,NJ,39.37408175,-74.44666794,RES1,3001,,17,NE,1900,1900,3102,1,1,1602.881849,1602.881849,3505,NO,20.9,30.39,3,6.49,6106,114.089903,123.76274,133.529027,139.823941,I,Above,Gable,0,5701,Wood,25.64475608,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4885,NJBF000072212,1823 N MISSOURI AVE,Atlantic City,NJ,39.37293181,-74.45378815,RES1,3001,,17,NE,1900,1900,3101,1,1,1118.814696,1118.814696,3505,NO,11.83,17.57,3,0.37,6106,113.948444,123.645407,133.400213,139.723003,I,Above,Flat,0,5701,Wood,14.70108195,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4886,NJBF000072892,1825 MADISON AVE,Atlantic City,NJ,39.37548201,-74.45246189,RES1,3001,,17,NE,1900,1900,3101,1,1,1264.398884,1264.398884,3505,NO,14.05,25.33,3,-1.53,6106,113.948502,123.6425,133.398372,139.706344,I,Above,Gable,0,5701,Wood,19.69147124,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4887,NJBF000072313,1512 N MICHIGAN AVE,Atlantic City,NJ,39.3732485,-74.447969,RES1,3001,,17,NE,1900,1900,3102,2,1,834.8593348,834.8593348,3505,NO,31.54,44.04,3,5.38,6106,114.071184,123.747854,133.512249,139.814968,I,Above,Gable,0,5701,Wood,37.78760801,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4888,NJBF000072512,1835 N ARKANSAS AVE,Atlantic City,NJ,39.3739465,-74.4532825,RES1,3001,,17,NE,1955,1955,3101,1,1,1237.920304,1237.920304,3505,NO,25.01,36.45,3,8.94,6106,113.947934,123.643826,133.399024,139.715969,I,Above,Gable,0,5701,Wood,30.72839512,0,0,,,,1,1,,0.03,nav,1,1955,1,, 4889,NJBF000072514,2019 KUEHNLE AVE,Atlantic City,NJ,39.37395055,-74.45129057,RES1,3001,,16,NE,1900,1900,3101,1,1,1444.646208,1444.646208,3505,NO,17,22.93,3,-0.39,6106,113.991163,123.679992,133.438498,139.749212,I,Above,Gable,0,5701,Wood,19.96289687,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4890,NJBF000071822,1555 N MISSOURI AVE,Atlantic City,NJ,39.37173715,-74.44951797,RES1,3001,,17,NE,1900,1900,3102,1,1,1397.899884,1397.899884,3505,NO,24.36,31.22,3,6.66,6106,114.054849,123.735671,133.498036,139.812165,I,Above,Gable,0,5701,Wood,27.79350721,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4891,NJBF000071031,1016 N OHIO AVE,Atlantic City,NJ,39.36918965,-74.44105123,RES3A,3001,,17,NE,1904,1904,3301,2,1,588.7276954,588.7276954,3505,YES,34.52,44.42,3,7.45,6106,114.267621,123.91675,133.694436,139.98826,I,Above,Flat,0,5701,Wood,39.46703502,0,0,,,,1,1,,0.03,nav,1,1904,2,, 4892,NJBF000071030,812 ROBINSON AVE,Atlantic City,NJ,39.3691885,-74.4384285,RES1,3001,,17,NE,1900,1900,3102,2,1,725.9773587,725.9773587,3505,NO,36.67,42.96,3,2.18,6106,114.324236,123.964573,133.746866,140.030419,I,Above,Gable,0,5701,Wood,39.81534445,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4893,NJBF000068515,4025 CROSSAN AVE,Atlantic City,NJ,39.35697703,-74.46519527,RES1,3001,,17,NE,1900,1900,3101,1,1,1234.805041,1234.805041,3505,NO,12.78,20.67,3,-0.23,6106,113.887558,123.609524,133.351981,139.779661,I,Above,Hip,0,5701,Wood,16.72783625,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4894,NJBF000068587,703 CAROLYN TERR,Atlantic City,NJ,39.35718277,-74.46491969,RES1,3001,,16,NE,1910,1910,3101,1,1,960.4799726,960.4799726,3505,NO,24.07,38.74,3,6.42,6106,113.891064,123.61226,133.355065,139.781005,I,Above,Hip,0,5701,Wood,31.40121935,0,0,,,,1,1,,0.03,nav,1,1910,1,, 4895,NJBF000068340,3818 FILBERT AVE,Atlantic City,NJ,39.3564295,-74.460923,RES1,3001,,17,NE,1961,1961,3102,2,1,1308.970014,1308.970014,3505,NO,44.94,56.64,3,6.02,6106,113.988027,123.692471,133.441163,139.858667,I,Above,Hip,0,5701,Wood,50.79004749,0,0,,,,1,1,,0.03,nav,1,1961,2,, 4896,NJBF000071607,,Atlantic City,NJ,39.37104933,-74.47577412,COM1,3003,,NaN,ME,1969,0,3401,2,1,9414.20841,9414.20841,3507,NO,30.58,42.18,1,1.59,6106,113.48833,123.267821,132.9902,139.37372,I,Above,Flat,0,NaN,Wood,36.38001898,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4897,NJBF000068692,550 N HARRISBURG AVE,Atlantic City,NJ,39.357426,-74.46249,RES1,3001,,45,NE,1977,1977,3101,2,2,1277.754195,1277.754195,3505,NO,36.91,45.87,3,2.38,6106,113.941404,123.653465,133.399701,139.817461,I,Above,Flat,0,5701,Wood,41.39313957,0,0,,,,1,1,,0.03,nav,1,1977,2,, 4898,NJBF000071087,820 ROBINSON AVE,Atlantic City,NJ,39.3693565,-74.438627,RES1,3001,,17,NE,1961,1961,3102,1,1,1503.941405,1503.941405,3505,NO,14.1,20.58,3,2.14,6106,114.317995,123.959179,133.741076,140.024776,I,Above,Gable,0,5701,Wood,17.33965808,0,0,,,,1,1,,0.03,nav,1,1961,1,, 4899,NJBF000069065,672 BELLA TERR,Atlantic City,NJ,39.35864164,-74.4651592,RES1,3001,,17,NE,1996,1996,3101,1,1,1635.831197,1635.831197,3505,NO,24.82,30.17,3,7.97,6106,113.867948,123.592234,133.334379,139.754121,I,Above,Hip,0,5701,Wood,27.49126307,0,0,,,,1,1,,0.03,nav,1,1996,1,, 4900,NJBF000071052,816 ROBINSON AVE,Atlantic City,NJ,39.36924033,-74.43853536,RES1,3001,,16,NE,2009,2009,3102,2,1,927.6307077,927.6307077,3505,NO,34.07,44.34,3,-1.47,6106,114.321343,123.962091,133.744183,140.027961,I,Above,Gable,0,5701,Wood,39.20301174,0,0,,,,1,1,,0.03,nav,1,2009,2,, 4901,NJBF000069143,,Atlantic City,NJ,39.358924,-74.4617395,RES1,3001,,NaN,NE,1969,0,3101,1,1,1011.42326,1011.42326,3505,NO,18.6,29.16,3,0.97,6106,113.939545,123.650905,133.397925,139.806564,I,Above,Hip,0,5701,Wood,23.88119042,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4902,NJBF000068570,618 WISTERIA RD,Atlantic City,NJ,39.357146,-74.4614825,RES1,3001,,16,NE,1930,1930,3101,1,1,717.655612,717.655612,3505,NO,17.16,25.34,3,2.3,6106,113.966922,123.674648,133.422399,139.838385,I,Above,Flat,0,5701,Wood,21.2522984,0,0,,,,1,1,,0.03,nav,1,1930,1,, 4903,NJBF000068722,631 N HARRISBURG AVE,Atlantic City,NJ,39.35748741,-74.46198332,RES1,3001,,16,NE,1900,1900,3101,1,1,827.0137764,827.0137764,3505,NO,19.83,34.4,3,3.72,6106,113.951772,123.661956,133.408915,139.824869,I,Above,Hip,0,5701,Wood,27.11456906,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4904,NJBF000071007,1910 MARMORA AVE,Atlantic City,NJ,39.36910844,-74.44147173,RES3A,3001,,17,NE,1967,1967,3301,2,1,1805.109155,1805.109155,3505,NO,46.44,53.95,3,8.24,6106,114.259481,123.909945,133.686921,139.982683,I,Above,Gable,0,5701,Wood,50.19650534,0,0,,,,1,1,,0.03,nav,1,1967,2,, 4905,NJBF000068087,434 N HARRISBURG AVE,Atlantic City,NJ,39.35558841,-74.46098942,RES1,3001,,27,NE,1900,1900,3102,2,2,649.96267,649.96267,3505,YES,34.45,45.58,3,0.9,6106,113.996982,123.700339,133.449065,139.870593,I,Above,Flat,0,5701,Wood,40.01488886,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4906,NJBF000068188,440 WISTERIA RD,Atlantic City,NJ,39.35593756,-74.46055323,RES1,3001,,27,NE,1900,1900,3102,2,2,1393.15344,1393.15344,3505,NO,32.94,38.02,3,-1.2,6106,114.0022,123.704435,133.453744,139.872295,I,Above,Flat,0,5701,Wood,35.48159858,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4907,NJBF000068225,3947 FILBERT AVE,Atlantic City,NJ,39.35606599,-74.46277884,RES1,3001,,45,NE,1900,1900,3101,1,2,1544.386154,1544.386154,3505,NO,15.65,22.01,3,4.04,6106,113.951823,123.662902,133.408968,139.833868,I,Above,Hip,0,5701,Wood,18.82980853,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4908,NJBF000071496,1645 W RIVERSIDE DR,Atlantic City,NJ,39.3707715,-74.452026,RES1,3001,,17,NE,1900,1900,3101,1,1,1488.669044,1488.669044,3505,NO,23.77,31.05,3,8.35,6106,114.01145,123.700327,133.458894,139.785284,I,Above,Gable,0,5701,Wood,27.40707422,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4909,NJBF000069831,1519 BALTIC AVE,Atlantic City,NJ,39.36436304,-74.43213945,RES3D,3004,,NaN,E,1969,0,3303,4,1,8539.587821,8539.587821,3505,NO,46.07,51.14,3,0.1,6106,114.516661,124.130183,133.924715,140.199579,I,Above,Flat,0,NaN,Wood,48.60721503,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4910,NJBF000069353,143 S SOUTH CAROLINA AVE,Atlantic City,NJ,39.359826,-74.42472028,COM1,3003,100,NaN,ME,1969,0,3401,4,1,2706.324008,2706.324008,3507,YES,77.76,86.53,1,-0.04,6106,114.730575,124.313305,134.121767,140.377785,I,Above,Flat,0,NaN,Wood,82.1473771,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4911,NJBF000072945,,Atlantic City,NJ,39.37582878,-74.42325866,RES3D,3001,,NaN,ME,1969,0,3301,2,1,3383.793,3383.793,3507,NO,25.66,40.55,1,1.39,6106,114.572778,124.172595,133.981177,140.177057,I,Above,Flat,0,NaN,Wood,33.10611934,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4912,NJBF000065629,16 S DELANCY PL,Atlantic City,NJ,39.34765735,-74.46186402,RES3A,3001,,17,NE,1900,1900,3301,2,1,1901.852553,1901.852553,3505,NO,34.18,48.46,3,-2.71,6106,114.078006,123.770354,133.51838,139.978502,I,Above,Hip,0,5701,Wood,41.31761202,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4913,NJBF000068062,22 N STENTON PL,Atlantic City,NJ,39.35551354,-74.44696799,RES3B,3001,,45,ME,1910,1910,3301,3,2,1940.462366,1940.462366,3504,YES,55.46,68.36,-4,0,6106,114.30386,123.954582,133.724772,140.095418,I,Above,Hip,0,NaN,Wood,61.90999316,0,0,,,,1,1,,0.03,nav,1,1910,3,, 4914,NJBF000068645,112 N CALIFORNIA AVE,Atlantic City,NJ,39.35731315,-74.44584144,RES3A,3001,29,NaN,NE,1969,0,3301,3,1,1344.588994,1344.588994,3505,YES,36.41,43.74,3,1.24,6106,114.306114,123.95578,133.72765,140.086702,I,Above,Hip,0,5701,Wood,40.07143077,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4915,NJBF000072904,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37555754,-74.41816502,RES3D,3001,,NaN,ME,1969,0,3301,1,1,6527.93986,6527.93986,3507,NO,12.42,22.45,1,-0.08,6106,114.68419,124.269047,134.087719,140.261415,I,Above,Hip,0,NaN,Wood,17.43649689,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4916,NJBF000066836,137 N RICHMOND AVE,Atlantic City,NJ,39.35095407,-74.46164941,RES3A,3001,,27,NE,1900,1922,3301,2,2,680.2883272,680.2883272,3505,YES,38.62,52.03,3,0.49,6106,114.040603,123.738483,133.486737,139.931387,I,Above,Flat,0,5701,Wood,45.32479565,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4917,NJBF000067193,10 N ST DAVIDS PL,Atlantic City,NJ,39.35251233,-74.45526,RES3B,3001,,45,E,1920,1920,3303,1,3,1966.700607,1966.700607,3507,NO,15.5,30.08,1,0.55,6106,114.160712,123.836868,133.594359,140.009523,I,Above,Hip,0,NaN,Wood,22.7922705,0,0,,,,1,1,,0.03,nav,1,1920,1,, 4918,NJBF000073013,419 CARSON AVE,Atlantic City,NJ,39.37648755,-74.42262584,RES3D,3001,100,NaN,ME,1969,0,3301,1,1,728.5259617,728.5259617,3507,NO,18.6,29.03,1,-0.03,6106,114.578746,124.17736,133.986972,140.177825,I,Above,Flat,0,NaN,Wood,23.8164548,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 4919,NJBF000066228,55 S ELBERON AVE,Atlantic City,NJ,39.34924754,-74.45662466,RES3A,3001,,45,NE,1925,1925,3301,3,2,1398.393102,1398.393102,3504,NO,50.27,57.81,-4,0,6106,114.172248,123.847467,133.603009,140.03701,I,Above,Flat,0,5701,Wood,54.03804207,0,0,,,,1,1,,0.03,nav,1,1925,3,, 4920,NJBF000066214,32 S DOVER AVE,Atlantic City,NJ,39.34920658,-74.45776514,RES3A,3001,,45,NE,1900,1900,3301,3,2,1332.222821,1332.222821,3504,YES,51.4,60.26,-4,0,6106,114.147854,123.827363,133.581241,140.019723,I,Above,Hip,0,5701,Wood,55.83039589,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4921,NJBF000067354,10 N PROVIDENCE AVE,Atlantic City,NJ,39.35320526,-74.45353194,RES3B,3001,,45,E,1910,1910,3303,3,2,1387.963823,1387.963823,3507,YES,35.27,49.52,1,1.41,6106,114.18973,123.860615,133.620679,140.026441,I,Above,Flat,0,NaN,Wood,42.39420593,0,0,,,,1,1,,0.03,nav,1,1910,3,, 4922,NJBF000070781,27 N RHODE ISLAND AVE,Atlantic City,NJ,39.36840517,-74.41611973,RES3D,3004,,45,E,1900,1900,3303,2,4,1252.94305,1252.94305,3505,NO,42.65,56.68,3,6.02,6106,114.810842,124.380966,134.205154,140.392023,I,Above,Flat,0,NaN,Wood,49.66285624,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4923,NJBF000067779,22 N MONTPELIER AVE,Atlantic City,NJ,39.35448049,-74.45104165,RES3B,3001,,45,ME,1900,1900,3301,3,4,1435.573514,1435.573514,3504,YES,44.53,55.12,-4,0,6106,114.22808,123.891926,133.655743,140.046702,I,Above,Hip,0,NaN,Wood,49.82182651,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4924,NJBF000070244,1708 HUMMOCK AVE,Atlantic City,NJ,39.36640085,-74.43616103,RES1,3001,,17,NE,1900,1900,3101,2,1,712.6121355,712.6121355,3507,NO,22.22,32.58,1,0.54,6106,114.40587,124.035335,133.822311,140.107051,I,Above,Hip,0,5701,Wood,27.40291471,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4925,NJBF000072101,1411 EMERSON AVE,Atlantic City,NJ,39.372585,-74.4462275,RES1,3001,,17,NE,1930,1930,3102,2,1,1283.34441,1283.34441,3505,NO,29.72,36.18,3,0.4,6106,114.116468,123.786569,133.554191,139.853622,I,Above,Flat,0,5701,Wood,32.94625028,0,0,,,,1,1,,0.03,nav,1,1930,2,, 4926,NJBF000071370,1670 W RIVERSIDE DR,Atlantic City,NJ,39.37038416,-74.45236528,RES1,3001,,17,NE,2001,2001,3101,2,1,2560.836152,2560.836152,3505,NO,29.94,37.75,3,7.01,6106,114.00853,123.698276,133.456431,139.785545,I,Above,Gable,0,5701,Wood,33.84704193,0,0,,,,1,1,,0.03,nav,1,2001,2,, 4927,NJBF000068231,3203 FAIRMOUNT AVE,Atlantic City,NJ,39.35608419,-74.45236456,RES3A,3001,,45,NE,1900,1900,3301,2,2,1447.128333,1447.128333,3507,NO,28.55,38.12,1,0.31,6106,114.179336,123.850792,133.612414,140.001828,I,Above,Hip,0,5701,Wood,33.3345503,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4928,NJBF000068842,29 N FLORIDA AVE RR #A,Atlantic City,NJ,39.35776346,-74.44206265,RES3B,3001,,27,ME,1920,1920,3301,2,2,1273.775705,1273.775705,3505,NO,37.54,46.93,3,2.75,6106,114.382503,124.019513,133.797571,140.13931,I,Above,Gable,0,NaN,Wood,42.2355456,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4929,NJBF000070473,32 N CONNECTICUT AVE,Atlantic City,NJ,39.3672584,-74.41898892,RES3D,3004,,27,E,1915,1900,3303,2,2,1907.098237,1907.098237,3505,YES,29.77,41.39,3,8.03,6106,114.763439,124.340293,134.159029,140.363447,I,Above,Flat,0,NaN,Wood,35.5779158,0,0,,,,1,1,,0.03,nav,1,1915,2,, 4930,NJBF000071316,745 DREXEL AVE,Atlantic City,NJ,39.37017783,-74.42354999,RES1,3001,,NaN,NE,1969,0,3102,2,1,587.0740655,587.0740655,3505,NO,33.14,41.99,3,8.86,6106,114.631861,124.226216,134.035678,140.251912,I,Above,Flat,0,5701,Wood,37.56593999,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4931,NJBF000066393,17 S DOVER AVE,Atlantic City,NJ,39.3496383,-74.45765393,RES3A,3001,,47,NE,1928,1928,3301,2,2,1504.718012,1504.718012,3504,NO,26.28,34.7,-4,0,6106,114.144782,123.824702,133.578741,140.014979,I,Above,Hip,0,5701,Wood,30.49096772,0,0,,,,1,1,,0.03,nav,1,1928,2,, 4932,NJBF000065640,129 S RIDGEWAY AVE,Atlantic City,NJ,39.34768026,-74.45697469,RES3A,3001,,18,NE,1925,1925,3301,2,1,2264.119982,2264.119982,3504,YES,34.63,47.54,-4,0,6106,114.184687,123.858125,133.613121,140.054979,I,Above,Hip,0,5701,Wood,41.08313718,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4933,NJBF000070389,1909 BLAINE AVE,Atlantic City,NJ,39.3669145,-74.4398195,RES3B,3001,,45,ME,1920,1920,3301,2,2,1387.94852,1387.94852,3505,NO,33.4,45.4,3,2.2,6106,114.320894,123.963236,133.743663,140.041402,I,Above,Gable,0,5701,Wood,39.40383164,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4934,NJBF000066833,4017 WINCHESTER AVE,Atlantic City,NJ,39.350946,-74.4599215,RES3A,3001,,17,NE,1958,1958,3301,2,1,1265.199975,1265.199975,3505,YES,42.04,47.25,3,6.91,6106,114.078557,123.769702,133.520424,139.959185,I,Above,Flat,0,5701,Wood,44.64587091,0,0,,,,1,1,,0.03,nav,1,1958,2,, 4935,NJBF000069327,133 N GEORGIA AVE,Atlantic City,NJ,39.359691,-74.442221,RES3B,3001,,17,ME,1900,1900,3301,2,1,888.2586525,888.2586525,3505,YES,42.33,55.9,3,8.3,6106,114.3555,123.996129,133.773731,140.108819,I,Above,Gable,0,NaN,Wood,49.11322951,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4936,NJBF000070388,936 BALTIC AVE,Atlantic City,NJ,39.36691312,-74.42440535,REL1,3001,,NaN,ME,1969,0,3401,2,1,15489.11616,15489.11616,3507,NO,25.27,39.83,1,1.83,6106,114.652046,124.244707,134.05313,140.284251,I,Above,Hip,0,NaN,Wood,32.55063461,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4937,NJBF000072335,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37332604,-74.41792823,RES3C,3001,,NaN,ME,1969,0,3301,2,1,7152.621123,7152.621123,3505,NO,24.58,31.01,3,2.61,6106,114.71492,124.296594,134.116302,140.296121,I,Above,Hip,0,NaN,Wood,27.7915711,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4938,NJBF000069446,600 BOARDWALK,Atlantic City,NJ,39.36047048,-74.41507436,COM8,3003,629,NaN,ME,1969,0,3401,2,1,7394.232259,7394.232259,3507,NO,22.05,35.51,1,0.82,6102,114.92831,124.482798,134.309515,140.51563,I,Above,Hip,0,NaN,Wood,28.7784478,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4939,NJBF000070590,1910 GRANT AVE,Atlantic City,NJ,39.36771106,-74.44056283,RES3B,3001,,17,ME,1900,1900,3301,2,1,645.6839657,645.6839657,3505,NO,30.95,45.84,3,-0.42,6106,114.295461,123.941269,133.720204,140.017836,I,Above,Flat,0,5701,Wood,38.39667643,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4940,NJBF000070931,805 N INDIANA AVE,Atlantic City,NJ,39.36887684,-74.43881378,RES1,3001,,33,NE,1900,1900,3102,2,1,3387.743893,3387.743893,3505,YES,39.52,53.23,3,2.42,6106,114.319563,123.960833,133.742529,140.028793,I,Above,Flat,0,5701,Wood,46.37775987,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4941,NJBF000068396,1621 BOARDWALK,Atlantic City,NJ,39.35661514,-74.42831126,COM8,3003,100,NaN,ME,1969,0,3401,1,1,59682.77985,59682.77985,3507,NO,13,24.21,1,-0.65,6106,114.693092,124.281689,134.08362,140.367345,I,Above,Flat,0,NaN,Wood,18.60150098,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4942,NJBF000068248,500 N ELBERON AVE,Atlantic City,NJ,39.35614111,-74.46262634,RES1,3001,,17,NE,1962,1962,3101,1,1,1856.516067,1856.516067,3505,NO,24.36,38.4,3,5.37,6106,113.954252,123.664853,133.411126,139.835216,I,Above,Hip,0,5701,Wood,31.38090729,0,0,,,,1,1,,0.03,nav,1,1962,1,, 4943,NJBF000070713,,Atlantic City,NJ,39.36814492,-74.43081777,RES1,3001,,NaN,NE,1969,0,3103,4,1,3395.27732,3395.27732,3505,NO,41.79,49.22,3,-1.64,6106,114.500181,124.114507,133.910768,140.166432,I,Above,Flat,0,5701,Wood,45.50221808,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4944,NJBF000070615,620 N DR MARTIN LUTHER K,Atlantic City,NJ,39.3677885,-74.4370565,RES1,3001,,17,NE,1900,1900,3101,2,1,1178.410187,1178.410187,3507,NO,33.3,40.6,1,1.62,6106,114.370217,124.004371,133.78945,140.072728,I,Above,Gable,0,5701,Wood,36.94765361,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4945,NJBF000066498,133 WILSON AVE,Atlantic City,NJ,39.349909,-74.4514645,RES4,3003,,45,E,1900,1900,3404,2,2,1506.619486,1506.619486,3507,YES,32.99,46.82,1,2.71,6106,114.276412,123.933425,133.696697,140.107628,I,Above,Flat,0,NaN,Wood,39.90380514,0,0,,,,2,2,,0.03,nav,1,1900,2,, 4946,NJBF000067505,131 S TEXAS AVE,Atlantic City,NJ,39.3536845,-74.44137467,RES3A,3004,,33,NE,1900,1908,3301,2,1,1367.766809,1367.766809,3505,YES,36.85,48.23,3,-0.15,6106,114.447962,124.07548,133.85484,140.208718,I,Above,Flat,0,5701,Wood,42.53752592,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4947,NJBF000068074,106 N CHELSEA AVE,Atlantic City,NJ,39.35554511,-74.45045577,RES3A,3001,,17,NE,1920,1920,3301,2,1,1552.385311,1552.385311,3505,NO,34.67,49.5,3,6.24,6106,114.227605,123.891106,133.655758,140.040119,I,Above,Hip,0,5701,Wood,42.0874524,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4948,NJBF000067847,19 N CHELSEA AVE,Atlantic City,NJ,39.35476132,-74.44940153,RES3B,3001,,45,ME,1930,1930,3301,3,4,1335.465948,1335.465948,3504,YES,50.66,61.33,-4,0,6106,114.260288,123.91858,133.684948,140.068336,I,Above,Hip,0,NaN,Wood,55.99267738,0,0,,,,1,1,,0.03,nav,1,1930,3,, 4949,NJBF000067836,17 N CHELSEA AVE,Atlantic City,NJ,39.35469106,-74.44933867,RES3B,3001,,45,ME,1905,1905,3301,3,3,1429.487501,1429.487501,3504,YES,40.41,49.29,-4,0,6106,114.26253,123.920471,133.686942,140.070359,I,Above,Hip,0,NaN,Wood,44.8472596,0,0,,,,1,1,,0.03,nav,1,1905,3,, 4950,NJBF000070883,SE ARKANSAS & ONTARIO,Atlantic City,NJ,39.36874133,-74.4432824,IND2,3001,761,NaN,ME,1969,0,3401,1,1,1056.537664,1056.537664,3507,NO,14,22.97,1,2.16,6106,114.224624,123.880857,133.654808,139.958884,I,Above,Gable,0,NaN,Wood,18.48179324,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4951,NJBF000068272,3201 FAIRMOUNT AVE #A,Atlantic City,NJ,39.35620207,-74.4523325,RES3A,3001,,45,NE,1900,1900,3301,2,2,919.3449775,919.3449775,3507,YES,31.03,41.9,1,0.93,6106,114.178597,123.850123,133.611784,140.000585,I,Above,Gable,0,5701,Wood,36.46380234,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4952,NJBF000066696,4129 WINCHESTER AVE,Atlantic City,NJ,39.35049693,-74.46098888,RES3A,3001,,17,NE,1900,1900,3301,2,1,909.4287731,909.4287731,3505,NO,23.66,34.99,3,-2.04,6106,114.060863,123.755318,133.504532,139.948986,I,Above,Hip,0,5701,Wood,29.32509118,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4953,NJBF000070498,809 N MICHIGAN AVE,Atlantic City,NJ,39.36736772,-74.44094231,RES3B,3001,,27,ME,1900,1900,3301,2,2,1587.172468,1587.172468,3505,YES,37.84,49.93,3,0.92,6106,114.291302,123.937991,133.716354,140.016796,I,Above,Hip,0,5701,Wood,43.88501932,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4954,NJBF000067349,12 N PROVIDENCE AVE,Atlantic City,NJ,39.35319254,-74.45381553,RES3B,3001,,NaN,E,1969,0,3303,4,1,5588.190571,5588.190571,3507,NO,72.7,82.04,1,1.73,6106,114.183684,123.855614,133.615246,140.022136,I,Above,Flat,0,NaN,Wood,77.37024668,0,0,,,,1,1,,0.03,nav,1,1969,4,, 4955,NJBF000067428,105 ST DAVID PL,Atlantic City,NJ,39.353449,-74.45549321,RES3B,3001,,27,E,1900,1900,3303,2,2,1564.462434,1564.462434,3507,YES,36.68,47.29,1,1.23,6106,114.143866,123.822572,133.579654,139.99172,I,Above,Gable,0,NaN,Wood,41.98524208,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4956,NJBF000068105,108 N CHELSEA AVE,Atlantic City,NJ,39.35564774,-74.45053714,RES3A,3001,,45,NE,1925,1925,3301,2,2,1666.170536,1666.170536,3505,YES,37.58,50.49,3,8.88,6106,114.224564,123.888537,133.653053,140.037309,I,Above,Hip,0,5701,Wood,44.03570887,0,0,,,,1,1,,0.03,nav,1,1925,2,, 4957,NJBF000072597,1409 N OHIO AVE,Atlantic City,NJ,39.3742193,-74.44563831,RES1,3001,,17,NE,1900,1900,3102,1,1,2056.851799,2056.851799,3505,NO,16.62,23.34,3,1.14,6106,114.11064,123.780057,133.548065,139.838875,I,Above,Hip,0,5701,Wood,19.97876001,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4958,NJBF000070264,1719 HUMMOCK AVE,Atlantic City,NJ,39.36648467,-74.43680111,RES1,3001,,17,NE,1900,1900,3101,2,1,861.4595265,861.4595265,3507,NO,27.59,34.62,1,2.07,6106,114.391084,124.02278,133.808604,140.095693,I,Above,Hip,0,5701,Wood,31.10280265,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4959,NJBF000070281,1715 HUMMOCK AVE,Atlantic City,NJ,39.3665505,-74.4366745,RES1,3001,,17,NE,1900,1900,3101,2,1,896.3022073,896.3022073,3507,NO,29.33,34.85,1,2.42,6106,114.393041,124.024399,133.810433,140.096751,I,Above,Hip,0,5701,Wood,32.08814787,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4960,NJBF000071262,801 DREXEL AVE,Atlantic City,NJ,39.36998714,-74.42399811,RES1,3001,,45,NE,1977,1977,3102,2,2,1550.36248,1550.36248,3505,NO,36.64,51.11,3,2.83,6106,114.624534,124.220002,134.028648,140.247569,I,Above,Flat,0,5701,Wood,43.87836548,0,0,,,,1,1,,0.03,nav,1,1977,2,, 4961,NJBF000070531,1226 DREXEL AVE,Atlantic City,NJ,39.3674815,-74.4294545,RES1,3001,,27,NE,1900,1900,3103,2,2,1373.843644,1373.843644,3505,YES,25.86,38.97,3,-0.35,6106,114.537241,124.146392,133.945293,140.197324,I,Above,Gable,0,5701,Wood,32.41598387,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4962,NJBF000068240,3112 FAIRMOUNT AVE,Atlantic City,NJ,39.35610825,-74.45128152,RES3A,3001,,45,NE,1910,1910,3301,2,2,2141.351138,2141.351138,3505,YES,30.82,42.33,3,-1.62,6106,114.202642,123.870127,133.633433,140.018665,I,Above,Flat,0,5701,Wood,36.57089114,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4963,NJBF000068500,226 N MONTPELIER AVE,Atlantic City,NJ,39.35694967,-74.45262566,RES3A,3001,,45,NE,1922,1922,3301,2,2,1568.401934,1568.401934,3507,NO,27.64,39.76,1,0.48,6106,114.162958,123.836787,133.597903,139.984676,I,Above,Hip,0,5701,Wood,33.69855566,0,0,,,,1,1,,0.03,nav,1,1922,2,, 4964,NJBF000067545,3821 SOUTH BLVD,Atlantic City,NJ,39.35378741,-74.45889165,RES1,3001,,17,NE,1900,1900,3102,1,1,1976.193243,1976.193243,3505,NO,10.25,22.57,3,-2.99,6106,114.065322,123.757581,133.50959,139.932252,I,Above,Hip,0,5701,Wood,16.40843983,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4965,NJBF000068845,26 N GEORGIA AVE RR #3,Atlantic City,NJ,39.35776812,-74.44178304,RES3B,3001,,17,ME,1920,1900,3301,2,1,3345.681373,3345.681373,3505,YES,29.34,38.67,3,1.18,6106,114.388505,124.024542,133.803067,140.143608,I,Above,Flat,0,NaN,Wood,34.00880364,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4966,NJBF000070426,1223 MEDITERRANEAN AVE,Atlantic City,NJ,39.367075,-74.42920475,RES1,3001,,33,NE,1910,1900,3103,2,1,1967.684836,1967.684836,3505,YES,21.04,33.58,3,-0.97,6106,114.547397,124.155225,133.954663,140.207005,I,Above,Gable,0,5701,Wood,27.31157484,0,0,,,,1,1,,0.03,nav,1,1910,2,, 4967,NJBF000072709,604 N MASSACHUSETTS AVE,Atlantic City,NJ,39.374626,-74.4228735,RES1,3001,,17,NE,2000,2000,3102,2,1,1250.871283,1250.871283,3505,NO,33.81,42.96,3,6.92,6106,114.594768,124.192221,134.001904,140.200119,I,Above,Hip,0,5701,Wood,38.3846216,0,0,,,,1,1,,0.03,nav,1,2000,2,, 4968,NJBF000072264,1824 BEACH AVE,Atlantic City,NJ,39.37308198,-74.45349079,RES1,3001,,17,NE,1955,1955,3101,1,1,1781.425759,1781.425759,3505,NO,12.96,26.32,3,1.22,6106,113.953202,123.649212,133.404441,139.725684,I,Above,Gable,0,5701,Wood,19.6370301,0,0,,,,1,1,,0.03,nav,1,1955,1,, 4969,NJBF000068369,,Atlantic City,NJ,39.35653065,-74.46173116,RES1,3001,,NaN,NE,1969,0,3101,1,1,1132.41476,1132.41476,3505,NO,15.31,24.04,3,1.52,6106,113.96906,123.676794,133.424294,139.843854,I,Above,Hip,0,5701,Wood,19.67600195,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4970,NJBF000072228,1601 N ARKANSAS AVE,Atlantic City,NJ,39.37297154,-74.44966746,RES1,3001,,17,NE,1900,1900,3101,1,1,2269.906463,2269.906463,3505,NO,24.45,37.84,3,8.4,6106,114.037515,123.719887,133.481522,139.791043,I,Above,Hip,0,5701,Wood,31.14238289,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4971,NJBF000069096,203 N CALIFORNIA AVE,Atlantic City,NJ,39.35875687,-74.44638275,RES3A,3001,,45,NE,1905,1905,3301,3,2,856.1429861,856.1429861,3505,YES,58.8,70.19,3,6.5,6106,114.276638,123.930545,133.701375,140.056919,I,Above,Gable,0,5701,Wood,64.49698649,0,0,,,,1,1,,0.03,nav,1,1905,3,, 4972,NJBF000072652,740 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37440467,-74.42265063,RES1,3001,,17,NE,1900,1900,3102,1,1,1532.194883,1532.194883,3505,NO,13.29,24.02,3,-1.29,6106,114.602034,124.1986,134.008776,140.206738,I,Above,Hip,0,5701,Wood,18.65388372,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4973,NJBF000069221,3900 WEST END AVE,Atlantic City,NJ,39.35921681,-74.464039,RES1,3001,,NaN,NE,1969,0,3101,1,1,4637.278475,4637.278475,3505,NO,16.65,30.59,3,0.65,6106,113.885532,123.606248,133.34986,139.763809,I,Above,Flat,0,5701,Wood,23.61677419,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4974,NJBF000069496,1641 ATLANTIC AVE,Atlantic City,NJ,39.36093179,-74.43182241,COM1,3003,100,NaN,ME,1950,1950,3401,2,1,7323.159231,7323.159231,3507,NO,26.91,33.28,1,-0.71,6106,114.564804,124.172152,133.96765,140.253155,I,Above,Hip,0,NaN,Wood,30.09396038,0,0,,,,1,1,,0.03,nav,1,1950,2,, 4975,NJBF000069498,122 N MICHIGAN AVE,Atlantic City,NJ,39.36093883,-74.43806206,COM1,3003,101,NaN,ME,1969,0,3401,1,1,124765.4628,124765.4628,3507,NO,15.55,24.16,1,-0.61,6106,114.430273,124.058473,133.843008,140.155952,I,Above,Flat,0,NaN,Wood,19.85421014,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4976,NJBF000068776,2819 FAIRMOUNT AVE,Atlantic City,NJ,39.357601,-74.4486125,RES3A,3001,,17,NE,1920,1920,3301,2,1,1814.560394,1814.560394,3505,NO,41.07,54.21,3,4.13,6106,114.242361,123.902487,133.669856,140.038753,I,Above,Flat,0,5701,Wood,47.63920701,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4977,NJBF000069003,705 N HARRISBURG AVE,Atlantic City,NJ,39.35833368,-74.46269182,RES1,3001,,16,NE,1935,1935,3101,1,1,1079.920336,1079.920336,3505,NO,20.98,29.24,3,5.94,6106,113.925851,123.640049,133.385808,139.799983,I,Above,Hip,0,5701,Wood,25.10791678,0,0,,,,1,1,,0.03,nav,1,1935,1,, 4978,NJBF000072178,1421 EMERSON AVE,Atlantic City,NJ,39.37279671,-74.44680624,RES1,3001,,NaN,NE,1900,0,3102,1,1,1781.329363,1781.329363,3505,NO,20.1,33.11,3,3.41,6106,114.10153,123.773804,133.540357,139.840939,I,Above,Hip,0,5701,Wood,26.60326783,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4979,NJBF000070382,807 N ARKANSAS AVE,Atlantic City,NJ,39.36689789,-74.44225889,RES3B,3001,,33,ME,1902,1902,3301,2,1,691.7694271,691.7694271,3505,YES,31.3,46.22,3,1.09,6106,114.268357,123.918982,133.695189,140.002585,I,Above,Gable,0,5701,Wood,38.75967203,0,0,,,,1,1,,0.03,nav,1,1902,2,, 4980,NJBF000067857,350 N TRENTON AVE,Atlantic City,NJ,39.354797,-74.4591535,RES1,3001,,17,NE,1900,1900,3102,2,1,914.1595122,914.1595122,3505,NO,34.01,46.62,3,7.47,6106,114.047013,123.741987,133.493503,139.912576,I,Above,Flat,0,5701,Wood,40.31390516,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4981,NJBF000066109,63 N BARTRAM AVE,Atlantic City,NJ,39.34893,-74.463466,RES3A,3001,,17,NE,1920,1920,3301,2,1,1248.227249,1248.227249,3505,NO,30.92,38.81,3,6.33,6106,114.026548,123.727712,133.4735,139.933402,I,Above,Gable,0,5701,Wood,34.86436606,0,0,,,,1,1,,0.03,nav,1,1920,2,, 4982,NJBF000064315,124 S MONTGOMERY AVE,Atlantic City,NJ,39.34418877,-74.46397494,RES3A,3001,,18,NE,1900,1900,3301,3,1,1976.310776,1976.310776,3504,YES,49.13,59.32,-4,0,6106,114.076742,123.770146,133.515116,139.998098,I,Above,Flat,0,5701,Wood,54.22465786,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4983,NJBF000064425,125 S MONTGOMERY AVE,Atlantic City,NJ,39.3444559,-74.46364835,RES1,3001,,18,NE,1926,1926,3102,2,1,4401.553701,4401.553701,3504,NO,29.19,39.15,-4,0,6106,114.08042,123.773108,133.518542,139.999168,I,Above,Hip,0,5701,Wood,34.16820262,0,0,,,,1,1,,0.03,nav,1,1926,2,, 4984,NJBF000065986,4011 ATLANTIC AVE,Atlantic City,NJ,39.34862206,-74.45755211,RES3A,3001,29,NaN,NE,1969,1930,3301,3,1,2679.802347,2679.802347,3504,YES,50.58,60.94,-4,0,6106,114.159991,123.837532,133.591714,140.031862,I,Above,Flat,0,5701,Wood,55.75932952,0,0,,,,1,1,,0.03,nav,1,1969,3,, 4985,NJBF000068017,10 S SPRAY AVE,Atlantic City,NJ,39.35535187,-74.44363061,RES3A,3004,,45,NE,1900,1900,3301,3,2,1071.830144,1071.830144,3505,YES,45.53,54.07,3,7.53,6106,114.378299,124.016778,133.792391,140.149827,I,Above,Hip,0,5701,Wood,49.79982765,0,0,,,,1,1,,0.03,nav,1,1900,3,, 4986,NJBF000068851,638 N DOVER AVE,Atlantic City,NJ,39.357782,-74.465257,RES1,3001,,18,NE,1965,1965,3101,2,1,1672.549472,1672.549472,3505,NO,34.86,47.67,3,2.77,6106,113.876311,123.59973,133.34193,139.765989,I,Above,Gable,0,5701,Wood,41.2632326,0,0,,,,1,1,,0.03,nav,1,1965,2,, 4987,NJBF000065795,33 N KINGSTON AVE,Atlantic City,NJ,39.34812463,-74.46375413,RES3A,3001,,17,NE,1900,1900,3301,2,1,1219.463922,1219.463922,3505,NO,34.97,40.63,3,3.17,6106,114.030555,123.731273,133.476676,139.94121,I,Above,Gable,0,5701,Wood,37.80081185,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4988,NJBF000070634,35 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36787176,-74.41737419,RES3D,3004,,27,E,1900,1900,3303,2,2,1743.562106,1743.562106,3505,YES,33.02,38.31,3,1.76,6106,114.790509,124.363507,134.185306,140.37996,I,Above,Flat,0,NaN,Wood,35.66526116,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4989,NJBF000067714,320 N TRENTON AVE,Atlantic City,NJ,39.35425499,-74.45874799,RES1,3001,,45,NE,1940,1940,3102,2,2,868.4042165,868.4042165,3505,YES,24.41,38.93,3,0.61,6106,114.062629,123.755135,133.507308,139.927411,I,Above,Flat,0,5701,Wood,31.66730747,0,0,,,,1,1,,0.03,nav,1,1940,2,, 4990,NJBF000069941,1926 HUMMOCK AVE,Atlantic City,NJ,39.36509829,-74.43954624,IND2,3001,,NaN,ME,1969,0,3401,1,1,1232.305685,1232.305685,3507,NO,18.45,29.07,1,2.3,6106,114.348298,123.987423,133.768723,140.072281,I,Above,Gable,0,NaN,Wood,23.75922552,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4991,NJBF000069951,1926 HUMMOCK AVE,Atlantic City,NJ,39.3651755,-74.4393945,IND2,3001,,NaN,ME,1969,0,3401,2,1,563.5284256,563.5284256,3507,NO,29.84,34.89,1,-0.39,6106,114.350645,123.989358,133.770905,140.073557,I,Above,Gable,0,NaN,Wood,32.36543486,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4992,NJBF000072444,2031 KUEHNLE AVE,Atlantic City,NJ,39.37368299,-74.45144319,RES1,3001,,17,NE,1900,1900,3101,1,1,2053.469846,2053.469846,3505,NO,15.33,27.49,3,3.16,6106,113.990895,123.680065,133.438431,139.750746,I,Above,Gable,0,5701,Wood,21.41299667,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4993,NJBF000068259,503 HARBOR RD,Atlantic City,NJ,39.35616445,-74.46290019,RES1,3001,,17,NE,1900,1900,3101,2,1,1236.021168,1236.021168,3505,YES,24.05,31.52,3,-1.49,6106,113.947957,123.659664,133.40554,139.830352,I,Above,Hip,0,5701,Wood,27.78719598,0,0,,,,1,1,,0.03,nav,1,1900,2,, 4994,NJBF000070662,901 N MICHIGAN AVE,Atlantic City,NJ,39.3679725,-74.441215,RES3B,3001,,NaN,ME,1969,0,3301,2,1,525.209053,525.209053,3505,NO,40.51,55.19,3,7.11,6106,114.2783,123.926622,133.704356,140.003525,I,Above,Gable,0,5701,Wood,47.84816695,0,0,,,,1,1,,0.03,nav,1,1969,2,, 4995,NJBF000067679,6 N CHELSEA AVE,Atlantic City,NJ,39.35414342,-74.44977387,RES3B,3001,100,NaN,ME,1969,0,3301,1,1,1208.815624,1208.815624,3504,NO,13.27,19.82,-4,0,6106,114.259893,123.918476,133.684295,140.071627,I,Above,Flat,0,NaN,Wood,16.54865522,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4996,NJBF000067707,6 N CHELSEA AVE,Atlantic City,NJ,39.35422729,-74.44959516,RES3B,3001,100,NaN,ME,1969,0,3301,1,1,996.4485035,996.4485035,3504,NO,11.84,18.08,-4,0,6106,114.262741,123.920813,133.686908,140.073194,I,Above,Gable,0,NaN,Wood,14.96368131,0,0,,,,1,1,,0.03,nav,1,1969,1,, 4997,NJBF000070678,818 N OHIO AVE,Atlantic City,NJ,39.368033,-74.4402665,RES3B,3001,,45,ME,1930,1930,3301,2,4,2011.162987,2011.162987,3505,YES,32.43,44.69,3,7.12,6106,114.298078,123.943259,133.722627,140.017859,I,Above,Hip,0,5701,Wood,38.56125795,0,0,,,,1,1,,0.03,nav,1,1930,2,, 4998,NJBF000071003,710 GREEN ST,Atlantic City,NJ,39.36909995,-74.43696668,RES1,3001,,16,NE,1900,1900,3101,1,1,1125.674107,1125.674107,3505,NO,21.1,32.92,3,4.54,6106,114.356775,123.992171,133.777084,140.055097,I,Above,Flat,0,5701,Wood,27.00949533,0,0,,,,1,1,,0.03,nav,1,1900,1,, 4999,NJBF000070666,905 N MICHIGAN AVE,Atlantic City,NJ,39.36798011,-74.44141347,RES3B,3001,,17,ME,1900,1900,3301,1,1,877.8108532,877.8108532,3505,NO,16.21,27.11,3,0.67,6106,114.273939,123.922941,133.70033,140.000241,I,Above,Gable,0,5701,Wood,21.66071859,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5000,NJBF000067912,25 N CHELSEA AVE,Atlantic City,NJ,39.354988,-74.44955268,RES3B,3001,,45,ME,1905,1905,3301,2,2,1661.912157,1661.912157,3504,NO,36.42,50.89,-4,0,6106,114.254178,123.913415,133.67953,140.062607,I,Above,Hip,0,NaN,Wood,43.65529395,0,0,,,,1,1,,0.03,nav,1,1905,2,, 5001,NJBF000067890,23 N CHELSEA AVE,Atlantic City,NJ,39.35491468,-74.44948699,RES3B,3001,,45,ME,1900,1900,3301,3,2,1512.78713,1512.78713,3504,YES,52.21,61.14,-4,0,6106,114.256522,123.915392,133.681615,140.064724,I,Above,Hip,0,NaN,Wood,56.676212,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5002,NJBF000070393,121 N MARYLAND AVE,Atlantic City,NJ,39.36693168,-74.42312562,RES1,3001,,17,NE,2005,1900,3102,3,1,778.1476442,778.1476442,3505,YES,54.26,64.28,3,1.24,6106,114.679135,124.267917,134.07876,140.303867,I,Above,Hip,0,5701,Wood,59.27059101,0,0,,,,1,1,,0.03,nav,1,2005,3,, 5003,NJBF000064889,114 S KINGSTON AVE,Atlantic City,NJ,39.3455845,-74.4621715,RES3A,3001,,45,NE,1915,1915,3301,3,2,1388.88244,1388.88244,3504,YES,31.97,43.42,-4,0,6106,114.098075,123.787355,133.534885,140.005208,I,Above,Hip,0,5701,Wood,37.69438377,0,0,,,,1,1,,0.03,nav,1,1915,3,, 5004,NJBF000066831,60 N DOVER AVE,Atlantic City,NJ,39.35094008,-74.45917382,RES3A,3001,,27,NE,1925,1925,3301,2,2,5595.808736,5595.808736,3505,YES,24.56,38.66,3,3.13,6106,114.094985,123.783229,133.535029,139.971186,I,Above,Flat,0,5701,Wood,31.61039513,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5005,NJBF000070489,14 BELLE HAVEN CT,Atlantic City,NJ,39.36734706,-74.41346263,RES3D,3004,,27,E,1900,1900,3303,2,2,1332.195926,1332.195926,3505,NO,29.98,40.44,3,-0.28,6106,114.879728,124.440731,134.270302,140.447344,I,Above,Flat,0,NaN,Wood,35.20793593,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5006,NJBF000071630,1004 SEWELL AVE,Atlantic City,NJ,39.37112447,-74.42829839,RES3C,3004,,NaN,ME,1969,0,3301,2,1,1123.112168,1123.112168,3505,NO,36.44,50.81,3,1.9,6106,114.519361,124.129348,133.929604,140.163805,I,Above,Gable,0,NaN,Wood,43.62480519,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5007,NJBF000069108,1 FAIRMOUNT TERR,Atlantic City,NJ,39.3587974,-74.44437848,RES3B,3001,,33,ME,2017,2017,3301,2,1,1089.632629,1089.632629,3505,YES,27.83,37.18,3,-0.47,6106,114.319662,123.966488,133.740604,140.087956,I,Above,Gable,0,NaN,Wood,32.50702258,0,0,,,,1,1,,0.03,nav,1,2017,2,, 5008,NJBF000068483,567 N DOVER AVE,Atlantic City,NJ,39.35692028,-74.46394793,RES1,3001,,17,NE,1900,1900,3101,1,1,1370.066788,1370.066788,3505,NO,15.95,28.54,3,2.93,6106,113.915638,123.632618,133.376857,139.801257,I,Above,Gable,0,5701,Wood,22.24519462,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5009,NJBF000065457,15 S KINGSTON AVE,Atlantic City,NJ,39.3471406,-74.46292819,RES3A,3001,,45,NE,1900,1900,3301,2,2,1786.717815,1786.717815,3505,YES,24.93,34.66,3,-0.2,6106,114.061338,123.756821,133.50336,139.969513,I,Above,Hip,0,5701,Wood,29.79532142,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5010,NJBF000069849,526 PACIFIC AVE,Atlantic City,NJ,39.36453694,-74.4165978,RES3E,3003,,NaN,E,1969,0,3305,5,1,10443.72947,10443.72947,3507,NO,89.86,100.63,1,2.84,6106,114.846741,124.41248,134.236129,140.437464,I,Above,Gable,0,NaN,Wood,95.24437795,0,0,,,,2,2,,0.03,nav,1,1969,5,, 5011,NJBF000069842,526 PACIFIC AVE,Atlantic City,NJ,39.36446607,-74.41630463,RES3E,3003,,NaN,E,1969,0,3305,5,1,10660.32398,10660.32398,3507,NO,80.26,90.28,1,-0.22,6106,114.853818,124.418588,134.242812,140.442913,I,Above,Flat,0,NaN,Wood,85.27164762,0,0,,,,2,2,,0.03,nav,1,1969,5,, 5012,NJBF000071857,2228 MURRAY AVE,Atlantic City,NJ,39.371832,-74.453038,RES1,3001,,17,NE,1900,1900,3101,1,1,1794.123258,1794.123258,3505,NO,23.55,38.49,3,8.12,6106,113.977284,123.670692,133.427183,139.752313,I,Above,Gable,0,5701,Wood,31.02045655,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5013,NJBF000072788,1910 N MICHIGAN AVE,Atlantic City,NJ,39.37493065,-74.45377968,RES1,3001,,17,NE,1900,1900,3101,2,1,1214.536638,1214.536638,3505,NO,36.37,47.83,3,6.81,6106,113.92605,123.624375,133.37831,139.692605,I,Above,Gable,0,5701,Wood,42.099766,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5014,NJBF000068326,38 WINE ST,Atlantic City,NJ,39.35637316,-74.44591449,COM1,3003,,27,ME,1915,1915,3401,2,2,591.7701731,591.7701731,3507,NO,26.67,35.08,1,0.05,6106,114.316119,123.964495,133.736326,140.099336,I,Above,Flat,0,NaN,Wood,30.87450331,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5015,NJBF000067179,4303 STEWART AVE,Atlantic City,NJ,39.35245467,-74.4635065,RES1,3001,,17,NE,1900,1900,3102,2,1,729.9049288,729.9049288,3505,NO,26.66,40.66,3,1.68,6106,113.980923,123.688794,133.43431,139.878137,I,Above,Gable,0,5701,Wood,33.66032031,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5016,NJBF000071755,1609 N COLUMBIA AVE,Atlantic City,NJ,39.37151232,-74.45083214,RES1,3001,,17,NE,1980,1980,3101,2,1,1734.321659,1734.321659,3505,NO,25.07,37.75,3,-1.47,6106,114.028895,123.714166,133.474424,139.79383,I,Above,Gable,0,5701,Wood,31.40887788,0,0,,,,1,1,,0.03,nav,1,1980,2,, 5017,NJBF000071644,348 N CONNECTICUT AVE,Atlantic City,NJ,39.37115346,-74.421609,RES1,3001,,27,NE,1900,1900,3102,2,2,1511.981517,1511.981517,3505,YES,22.73,35.97,3,-1.3,6106,114.661861,124.251628,134.06462,140.268685,I,Above,Gable,0,5701,Wood,29.34797289,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5018,NJBF000067503,4108 PORTER AVE,Atlantic City,NJ,39.35368151,-74.46234186,RES1,3001,,16,NE,1950,1950,3102,1,1,1010.728119,1010.728119,3505,NO,18.29,23.93,3,0.05,6106,113.991057,123.696503,133.443534,139.878046,I,Above,Flat,0,5701,Wood,21.11195171,0,0,,,,1,1,,0.03,nav,1,1950,1,, 5019,NJBF000066408,3805 ATLANTIC AVE,Atlantic City,NJ,39.34968394,-74.45536313,RES3A,3001,565,NaN,NE,1969,0,3301,1,1,2277.094475,2277.094475,3504,NO,17.05,27.83,-4,0,6106,114.194255,123.865511,133.622916,140.050259,I,Above,Flat,0,5701,Wood,22.44152463,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5020,NJBF000066364,3813 ATLANTIC AVE,Atlantic City,NJ,39.3495745,-74.455601,RES3A,3001,959,NaN,NE,1969,1930,3301,2,1,3193.171417,3193.171417,3504,NO,34.26,47.62,-4,0,6106,114.190447,123.862396,133.619448,140.048161,I,Above,Flat,0,5701,Wood,40.93989477,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5021,NJBF000066343,3821 ATLANTIC AVE,Atlantic City,NJ,39.349528,-74.4556895,RES3A,3001,959,NaN,NE,1969,1930,3301,2,1,2896.876841,2896.876841,3504,NO,29.14,36.19,-4,0,6106,114.189102,123.861299,133.618219,140.04747,I,Above,Flat,0,5701,Wood,32.66485653,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5022,NJBF000068667,2325 ATLANTIC AVE,Atlantic City,NJ,39.35736136,-74.44056246,COM1,3003,738,NaN,ME,1969,0,3401,2,1,6766.799489,6766.799489,3507,NO,34.5,41.08,1,1.54,6106,114.419937,124.051039,133.83164,140.168505,I,Above,Flat,0,NaN,Wood,37.79007656,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5023,NJBF000068651,235 N MONTPELIER AVE,Atlantic City,NJ,39.35732254,-74.45235166,RES3A,3001,,45,NE,1900,1900,3301,2,2,1962.1466,1962.1466,3507,YES,30.91,39.72,1,2.29,6106,114.164342,123.837747,133.599242,139.983447,I,Above,Hip,0,5701,Wood,35.31458808,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5024,NJBF000067247,310 N ANNAPOLIS AVE,Atlantic City,NJ,39.35273821,-74.46231463,RES1,3001,,45,NE,1954,1954,3102,2,2,1556.715689,1556.715689,3505,NO,38.68,50.12,3,2.07,6106,114.003487,123.707189,133.45436,139.893104,I,Above,Gable,0,5701,Wood,44.40424109,0,0,,,,1,1,,0.03,nav,1,1954,2,, 5025,NJBF000072743,,Atlantic City,NJ,39.374766,-74.45089258,RES1,3001,,NaN,NE,1969,0,3101,1,1,1908.281184,1908.281184,3505,NO,21.54,33.86,3,5.1,6106,113.990603,123.678607,133.437428,139.743488,I,Above,Hip,0,5701,Wood,27.70333266,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5026,NJBF000066246,,Atlantic City,NJ,39.34929389,-74.46002233,EDU1,3004,,NaN,E,1969,0,3401,1,1,17016.02482,17016.02482,3507,NO,14.13,20.37,1,1.16,6106,114.097362,123.78576,133.536387,139.982758,I,Above,Flat,0,NaN,Wood,17.24721805,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5027,NJBF000069138,1721 PACIFIC AVE,Atlantic City,NJ,39.35891128,-74.43197363,COM1,3003,100,NaN,ME,1969,0,3401,1,1,9270.63959,9270.63959,3507,NO,10.75,24.2,1,-0.42,6106,114.586167,124.190735,133.986093,140.279286,I,Above,Flat,0,NaN,Wood,17.47553584,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5028,NJBF000067615,3801 SOUTH BLVD,Atlantic City,NJ,39.35397783,-74.45871348,RES1,3001,,17,NE,1900,1900,3102,2,1,943.67366,943.67366,3505,YES,26.7,38.57,3,3.84,6106,114.066853,123.758752,133.511005,139.932211,I,Above,Hip,0,5701,Wood,32.63469022,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5029,NJBF000067626,3801 SOUTH BLVD,Atlantic City,NJ,39.35401085,-74.45857591,RES1,3001,,17,NE,1900,1900,3102,2,1,2629.449749,2629.449749,3505,YES,38.91,53.67,3,0.68,6106,114.069438,123.760868,133.513319,139.93391,I,Above,Hip,0,5701,Wood,46.29270302,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5030,NJBF000072223,500 N CONNECTICUT AVE,Atlantic City,NJ,39.3729585,-74.422833,RES1,3001,,45,NE,1930,1930,3102,2,3,1502.633111,1502.633111,3505,NO,28.75,37.45,3,4.91,6106,114.614818,124.210335,134.020539,140.224176,I,Above,Hip,0,5701,Wood,33.09912644,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5031,NJBF000065250,3 N NEWTON AVE,Atlantic City,NJ,39.3465255,-74.46610017,RES3A,3001,,45,NE,1930,1930,3301,2,3,1916.441464,1916.441464,3505,NO,37.78,49.11,3,6.62,6106,113.999716,123.70651,133.448719,139.928367,I,Above,Hip,0,5701,Wood,43.44179068,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5032,NJBF000066471,19 S ELBERON AVE,Atlantic City,NJ,39.34984919,-74.45707713,RES3A,3001,,45,NE,1915,1915,3301,2,2,1545.186474,1545.186474,3504,YES,28.56,38.95,-4,0,6106,114.154708,123.832822,133.587702,140.02089,I,Above,Hip,0,5701,Wood,33.75186975,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5033,NJBF000066441,21 S ELBERON AVE,Atlantic City,NJ,39.34976189,-74.45701966,RES3A,3001,,45,NE,1915,1915,3301,2,3,1608.010446,1608.010446,3504,NO,29.67,40.78,-4,0,6106,114.157062,123.83479,133.589754,140.023094,I,Above,Hip,0,5701,Wood,35.22515303,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5034,NJBF000071976,2201 KUEHNLE AVE,Atlantic City,NJ,39.37217662,-74.45210533,RES1,3001,,14,NE,1900,1900,3101,1,1,739.7897937,739.7897937,3505,NO,12.6,17.86,3,0.99,6106,113.993631,123.683984,133.441873,139.762601,I,Above,Gable,0,5701,Wood,15.22692914,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5035,NJBF000066535,107 N DELANCY PL,Atlantic City,NJ,39.35000101,-74.46321266,RES3A,3001,,45,NE,1920,1920,3301,2,3,1881.174636,1881.174636,3505,NO,19.16,30.22,3,-2.43,6106,114.018422,123.720646,133.466749,139.920924,I,Above,Hip,0,5701,Wood,24.6885748,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5036,NJBF000071526,619 DREXEL AVE,Atlantic City,NJ,39.37083178,-74.42197382,RES1,3001,,33,NE,1900,1900,3102,2,1,712.3706583,712.3706583,3505,YES,19.39,30.62,3,-1.64,6106,114.657828,124.248282,134.060636,140.26745,I,Above,Flat,0,5701,Wood,25.00637228,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5037,NJBF000067974,2605 MONTEREY AVE,Atlantic City,NJ,39.3552135,-74.44311289,RES3A,3004,,45,NE,1910,1910,3301,3,4,1243.077316,1243.077316,3505,YES,53.12,66.42,3,2.05,6106,114.391255,124.027652,133.804121,140.159882,I,Above,Gable,0,5701,Wood,59.7655622,0,0,,,,1,1,,0.03,nav,1,1910,3,, 5038,NJBF000072698,1808 E RIVERSIDE DR,Atlantic City,NJ,39.3745886,-74.44434219,RES1,3001,,17,NE,1900,1900,3102,2,1,1159.394108,1159.394108,3505,YES,35.87,43.69,3,7.34,6106,114.13447,123.799774,133.569886,139.854682,I,Above,Flat,0,5701,Wood,39.7821709,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5039,NJBF000071950,1501 MARMORA AVE,Atlantic City,NJ,39.37208297,-74.43722448,GOV1,3004,,NaN,E,1969,0,3401,2,1,37071.30737,37071.30737,3507,NO,27.03,37.27,1,-0.61,6106,114.316642,123.956063,133.739663,140.00751,I,Above,Flat,0,NaN,Wood,32.15017197,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5040,NJBF000071749,1501 MARMORA AVE,Atlantic City,NJ,39.37149982,-74.43681792,GOV1,3004,,NaN,E,1969,0,3401,3,1,2450.892134,2450.892134,3507,NO,49.94,62.97,1,-0.37,6106,114.332106,123.969613,133.754121,140.022546,I,Above,Gable,0,NaN,Wood,56.45457727,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5041,NJBF000067134,303 N RICHMOND AVE,Atlantic City,NJ,39.35223186,-74.46246406,RES1,3001,,17,NE,2001,2001,3102,1,1,1251.837153,1251.837153,3505,NO,13.37,22.03,3,2.83,6106,114.006587,123.709975,133.456982,139.898518,I,Above,Hip,0,5701,Wood,17.70013218,0,0,,,,1,1,,0.03,nav,1,2001,1,, 5042,NJBF000069976,408 N OHIO AVE,Atlantic City,NJ,39.36529538,-74.43843434,RES3B,3001,,45,ME,1900,1900,3301,3,2,1179.328564,1179.328564,3505,YES,54.65,61.32,3,8.37,6106,114.369967,124.005591,133.788788,140.08706,I,Above,Flat,0,NaN,Wood,57.98326577,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5043,NJBF000071638,1602 COLUMBIA AVE,Atlantic City,NJ,39.37113748,-74.45072281,RES1,3001,,17,NE,1900,1900,3101,2,1,1534.537803,1534.537803,3505,NO,25.44,35.77,3,-0.33,6106,114.035564,123.720121,133.480703,139.801315,I,Above,Gable,0,5701,Wood,30.60292239,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5044,NJBF000067111,4215 SOUTH BLVD,Atlantic City,NJ,39.35214306,-74.46229159,RES1,3001,,27,NE,1928,1928,3102,2,2,1866.248352,1866.248352,3505,YES,30.92,43.55,3,1.69,6106,114.01148,123.714037,133.461295,139.90268,I,Above,Flat,0,5701,Wood,37.23531358,0,0,,,,1,1,,0.03,nav,1,1928,2,, 5045,NJBF000069006,,Atlantic City,NJ,39.35834531,-74.44692234,RES3A,3001,,NaN,NE,1969,0,3301,2,1,4443.015327,4443.015327,3505,NO,29.39,43.09,3,-0.01,6106,114.269971,123.925168,133.695172,140.054478,I,Above,Hip,0,5701,Wood,36.23927007,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5046,NJBF000070446,1213 MEDITERRANEAN AVE,Atlantic City,NJ,39.36715909,-74.42899536,RES1,3001,,33,NE,1900,1900,3103,2,1,2628.351126,2628.351126,3505,YES,21.93,30.28,3,-2.93,6106,114.550906,124.158181,133.957991,140.209108,I,Above,Flat,0,5701,Wood,26.10737239,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5047,NJBF000071495,401 N DELAWARE AVE,Atlantic City,NJ,39.37077117,-74.42410765,RES1,3001,,45,NE,1929,1929,3102,2,2,1163.479425,1163.479425,3505,YES,42.42,50.47,3,3.87,6106,114.613028,124.209793,134.018063,140.23484,I,Above,Gable,0,5701,Wood,46.44500662,0,0,,,,1,1,,0.03,nav,1,1929,2,, 5048,NJBF000069403,247 N NEVADA AVE,Atlantic City,NJ,39.36012171,-74.44499984,RES3A,3001,,45,NE,1925,1925,3301,2,2,1846.264477,1846.264477,3505,YES,40.12,54.6,3,1.58,6106,114.290024,123.941088,133.714007,140.058687,I,Above,Flat,0,5701,Wood,47.3611284,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5049,NJBF000071910,2222 MURRAY AVE,Atlantic City,NJ,39.37195904,-74.45300044,RES1,3001,,16,NE,1965,1965,3101,1,1,925.0108428,925.0108428,3505,NO,12.72,23.3,3,-0.65,6106,113.97666,123.670035,133.426538,139.751011,I,Above,Gable,0,5701,Wood,18.01102175,0,0,,,,1,1,,0.03,nav,1,1965,1,, 5050,NJBF000070527,,Atlantic City,NJ,39.36746763,-74.41545242,RES3D,3004,,NaN,E,1900,0,3303,4,1,3398.148835,3398.148835,3505,NO,57.93,72.05,3,2.3,6106,114.836113,124.40297,134.228593,140.415124,I,Above,Flat,0,NaN,Wood,64.99058551,0,0,,,,1,1,,0.03,nav,1,1900,4,, 5051,NJBF000065223,55 S KINGSTON AVE,Atlantic City,NJ,39.34644448,-74.46239007,RES3A,3001,,45,NE,1920,1920,3301,2,2,1584.756215,1584.756215,3505,NO,46.5,55.47,3,8.32,6106,114.082137,123.774073,133.521339,139.988688,I,Above,Gable,0,5701,Wood,50.98744445,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5052,NJBF000065257,47 S KINGSTON AVE,Atlantic City,NJ,39.34654807,-74.46246207,RES3A,3001,,45,NE,1920,1920,3301,2,3,1929.36965,1929.36965,3505,NO,26.74,41.34,3,4.7,6106,114.079214,123.771648,133.518817,139.985965,I,Above,Gable,0,5701,Wood,34.04046268,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5053,NJBF000072591,1600 MADISON AVE,Atlantic City,NJ,39.374191,-74.449068,RES1,3001,,17,NE,1900,1900,3102,1,1,1315.330796,1315.330796,3505,NO,21.05,29.95,3,5.37,6106,114.036676,123.717892,133.480039,139.78257,I,Above,Hip,0,5701,Wood,25.49854622,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5054,NJBF000071451,614 DREXEL AVE,Atlantic City,NJ,39.37064471,-74.42163275,RES1,3001,,33,NE,1900,1900,3102,2,1,1376.712964,1376.712964,3505,YES,32.74,40.69,3,1.1,6106,114.667277,124.256487,134.069538,140.275396,I,Above,Gable,0,5701,Wood,36.71474284,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5055,NJBF000066646,54 N ANNAPOLIS AVE,Atlantic City,NJ,39.3503425,-74.4600945,RES3A,3001,,17,NE,1900,1900,3301,1,1,1046.252313,1046.252313,3505,NO,10.54,23.22,3,-0.98,6106,114.082434,123.773118,133.523617,139.965646,I,Above,Hip,0,5701,Wood,16.87680067,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5056,NJBF000068452,3849 FILBERT AVE,Atlantic City,NJ,39.35680533,-74.4612015,RES1,3001,,45,NE,1900,1900,3101,1,2,941.5795038,941.5795038,3505,NO,10.94,16.01,3,-2.92,6106,113.977277,123.683389,133.43161,139.84828,I,Above,Flat,0,5701,Wood,13.47708751,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5057,NJBF000066677,4104 WINCHESTER AVE,Atlantic City,NJ,39.35044799,-74.46036677,RES3A,3001,,45,NE,1915,1915,3301,2,2,1116.541121,1116.541121,3505,NO,30.92,38.64,3,6.53,6106,114.07511,123.767053,133.517157,139.959674,I,Above,Gable,0,5701,Wood,34.7801183,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5058,NJBF000065422,,Atlantic City,NJ,39.34701556,-74.46074843,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1859.231908,1859.231908,3505,NO,27.87,37.85,3,5.28,6106,114.11071,123.797394,133.546971,140.005879,I,Above,Hip,0,5701,Wood,32.85770626,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5059,NJBF000069958,1109 ARCTIC AVE,Atlantic City,NJ,39.3652042,-74.42578973,COM1,3003,,45,ME,1969,1900,3401,3,2,8038.948763,8038.948763,3507,YES,54.83,63.04,1,0.49,6106,114.642763,124.237285,134.043349,140.28662,I,Above,Flat,0,NaN,Wood,58.9315868,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5060,NJBF000070884,1913 MCKINLEY AVE,Atlantic City,NJ,39.3687515,-74.4412675,RES3A,3001,,17,NE,1900,1900,3301,2,1,1705.364354,1705.364354,3505,NO,35.77,43.38,3,7.59,6106,114.268063,123.917441,133.694875,139.991228,I,Above,Gable,0,5701,Wood,39.57784911,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5061,NJBF000069599,110 N INDIANA AVE,Atlantic City,NJ,39.36200102,-74.43456364,COM1,3003,,45,ME,1910,1910,3401,2,2,910.0630236,910.0630236,3507,NO,24.61,30.8,1,2.43,6106,114.492862,124.110905,133.901424,140.19537,I,Above,Hip,0,NaN,Wood,27.70378325,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5062,NJBF000072429,1619 EMERSON AVE,Atlantic City,NJ,39.3736489,-74.45010581,RES1,3001,,45,NE,1900,1900,3102,2,2,1236.062262,1236.062262,3505,NO,35.75,49.45,3,5.63,6106,114.020301,123.704739,133.465359,139.773519,I,Above,Gable,0,5701,Wood,42.59900325,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5063,NJBF000067884,3330 PROVIDENCE CT,Atlantic City,NJ,39.35490631,-74.45334146,RES3E,3004,29,NaN,E,1969,0,3303,3,1,15901.1718,15901.1718,3507,YES,33.83,48.57,1,-0.99,6106,114.172661,123.845785,133.606017,140.003984,I,Above,Gable,0,NaN,Wood,41.2013325,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5064,NJBF000072180,16 BARKENTINE CT,Atlantic City,NJ,39.37281223,-74.41767066,RES3C,3001,,35,ME,1990,1990,3301,2,1,2006.80872,2006.80872,3505,NO,27.97,33.47,3,-2.18,6106,114.726329,124.30666,134.126993,140.307261,I,Above,Gable,0,NaN,Wood,30.72318719,0,0,,,,1,1,,0.03,nav,1,1990,2,, 5065,NJBF000068661,500 N ALBANY AVE,Atlantic City,NJ,39.35734388,-74.46029782,COM1,3003,280,NaN,ME,1969,0,3401,2,1,11313.64482,11313.64482,3507,NO,21.38,31.11,1,0.22,6106,113.990452,123.693906,133.443356,139.854746,I,Above,Flat,0,NaN,Wood,26.24125602,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5066,NJBF000068823,500 N ALBANY AVE,Atlantic City,NJ,39.35771579,-74.46071515,COM1,3003,280,NaN,ME,1969,0,3401,2,1,12115.98031,12115.98031,3507,NO,26.96,36.5,1,-0.45,6106,113.976751,123.682377,133.431146,139.842161,I,Above,Flat,0,NaN,Wood,31.73042985,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5067,NJBF000065613,12 N TALLAHASSEE AVE,Atlantic City,NJ,39.34761273,-74.46524612,RES3A,3001,,NaN,NE,1900,0,3301,2,1,1648.280641,1648.280641,3505,NO,26.7,35.11,3,-1.18,6106,114.004407,123.710012,133.453378,139.925194,I,Above,Hip,0,5701,Wood,30.9091666,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5068,NJBF000068578,220 N CHELSEA AVE,Atlantic City,NJ,39.3571586,-74.45185903,RES3A,3001,,45,NE,1900,1900,3301,2,2,759.5171038,759.5171038,3507,YES,24.54,31.56,1,-0.88,6106,114.177104,123.848425,133.610711,139.993772,I,Above,Hip,0,5701,Wood,28.04745485,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5069,NJBF000068095,455 N ELBERON AVE,Atlantic City,NJ,39.35562634,-74.46151048,RES1,3001,,17,NE,1954,1954,3102,1,1,754.4347533,754.4347533,3505,NO,21.46,32.76,3,7.61,6106,113.985093,123.690531,133.438496,139.8615,I,Above,Hip,0,5701,Wood,27.11332277,0,0,,,,1,1,,0.03,nav,1,1954,1,, 5070,NJBF000072446,1621 EMERSON AVE,Atlantic City,NJ,39.3736845,-74.450239,RES1,3001,,45,NE,1969,1969,3102,2,2,1208.061731,1208.061731,3505,NO,21.37,36.12,3,-0.06,6106,114.017007,123.701938,133.46232,139.770763,I,Above,Gable,0,5701,Wood,28.74633105,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5071,NJBF000067483,11 N BOSTON AVE,Atlantic City,NJ,39.3536295,-74.45174531,RES3B,3001,737,NaN,ME,1969,0,3301,2,1,1490.892106,1490.892106,3504,NO,35.41,46.8,-4,0,6106,114.223386,123.888351,133.651131,140.048281,I,Above,Flat,0,NaN,Wood,41.1030675,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5072,NJBF000072477,2193 W RIVERSIDE DR,Atlantic City,NJ,39.37380986,-74.45785628,RES1,3001,,17,NE,1995,1995,3103,2,1,1123.794416,1123.794416,3505,NO,41.38,50.62,3,8.26,6106,113.849936,123.562257,133.310073,139.641003,I,Above,Gable,0,5701,Wood,45.99913754,0,0,,,,1,1,,0.03,nav,1,1995,2,, 5073,NJBF000068159,436 WISTERIA RD,Atlantic City,NJ,39.3558403,-74.46047444,RES1,3001,,27,NE,1920,1920,3102,2,2,1318.557783,1318.557783,3505,NO,37.55,43.69,3,3.31,6106,114.005144,123.706916,133.456355,139.875095,I,Above,Flat,0,5701,Wood,40.61784244,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5074,NJBF000068027,10 N IOWA AVE,Atlantic City,NJ,39.35539136,-74.44623241,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,1246.630441,1246.630441,3504,YES,34.22,43.28,-4,0,6106,114.321374,123.969229,133.740611,140.108732,I,Above,Flat,0,NaN,Wood,38.74888381,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5075,NJBF000071314,1413 MAGELLAN AVE,Atlantic City,NJ,39.37017161,-74.43395039,RES3C,3001,,17,ME,1900,1900,3301,1,1,1572.961103,1572.961103,3505,NO,16.36,28.1,3,4.52,6106,114.409199,124.03597,133.826035,140.087706,I,Above,Hip,0,NaN,Wood,22.23096582,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5076,NJBF000071699,601-621 N VIRGINIA AVE,Atlantic City,NJ,39.37133446,-74.42731807,RES3C,3004,,NaN,ME,1969,0,3301,2,1,1845.71876,1845.71876,3505,NO,21.46,34.84,3,0.33,6106,114.53789,124.145094,133.94714,140.17632,I,Above,Hip,0,NaN,Wood,28.14698683,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5077,NJBF000068453,107 N BRIGHTON AVE,Atlantic City,NJ,39.35680861,-74.44804248,RES3A,3001,100,NaN,NE,1969,0,3301,3,1,1028.037501,1028.037501,3505,YES,59.23,65.19,3,8.6,6106,114.264502,123.92128,133.689644,140.059479,I,Above,Flat,0,5701,Wood,62.21194377,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5078,NJBF000068435,107 N BRIGHTON AVE,Atlantic City,NJ,39.35674954,-74.44827822,RES3A,3001,100,NaN,NE,1969,0,3301,3,1,2310.744212,2310.744212,3505,YES,65.24,71.68,3,8.16,6106,114.260098,123.917636,133.685628,140.05663,I,Above,Hip,0,5701,Wood,68.46052891,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5079,NJBF000069374,3718 WEST END AVE,Atlantic City,NJ,39.35992997,-74.46256809,RES1,3001,,17,NE,1950,1950,3101,1,1,1234.91148,1234.91148,3505,NO,15.01,26.13,3,-2.28,6106,113.909144,123.625131,133.370705,139.777164,I,Above,Flat,0,5701,Wood,20.5708509,0,0,,,,1,1,,0.03,nav,1,1950,1,, 5080,NJBF000068363,3020 FAIRMOUNT AVE,Atlantic City,NJ,39.35650458,-74.45031438,RES3A,3001,,45,NE,1925,1925,3301,2,2,1455.560271,1455.560271,3505,YES,38.21,52.96,3,2.08,6106,114.21882,123.883392,133.648177,140.028087,I,Above,Flat,0,5701,Wood,45.58199038,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5081,NJBF000070016,28 S CONGRESS AVE,Atlantic City,NJ,39.36549488,-74.41694073,RES3D,3004,,17,E,1900,1900,3303,3,1,834.3845209,834.3845209,3505,YES,44.37,53.73,3,0.85,6106,114.82798,124.396209,134.219116,140.419154,I,Above,Hip,0,NaN,Wood,49.05167336,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5082,NJBF000066910,3914 WINCHESTER AVE,Atlantic City,NJ,39.35125523,-74.45864215,RES3A,3001,,45,NE,1921,1921,3301,3,2,2041.918001,2041.918001,3505,YES,42.26,50.13,3,4.55,6106,114.102639,123.789415,133.541973,139.974863,I,Above,Hip,0,5701,Wood,46.19814598,0,0,,,,1,1,,0.03,nav,1,1921,3,, 5083,NJBF000070125,,Atlantic City,NJ,39.3659368,-74.42849893,RES3D,3004,,NaN,E,1969,0,3303,3,1,7117.959927,7117.959927,3505,NO,61.27,72.46,3,3.39,6106,114.576023,124.18008,133.981012,140.234149,I,Above,Flat,0,NaN,Wood,66.8646607,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5084,NJBF000072842,1905 KUEHNLE AVE,Atlantic City,NJ,39.37515595,-74.45071197,RES1,3001,,16,NE,1925,1925,3101,2,1,737.3356484,737.3356484,3505,NO,36.35,48.9,3,4.6,6106,113.990142,123.677775,133.436729,139.740596,I,Above,Gable,0,5701,Wood,42.6259212,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5085,NJBF000067515,3507 WINCHESTER AVE,Atlantic City,NJ,39.35370366,-74.45437098,RES3B,3001,,45,E,1920,1920,3303,1,2,2015.681656,2015.681656,3507,NO,13.55,25.25,1,2.04,6106,114.165174,123.840092,133.598849,140.00569,I,Above,Gable,0,NaN,Wood,19.40094786,0,0,,,,1,1,,0.03,nav,1,1920,1,, 5086,NJBF000069162,2311 ARCTIC AVE,Atlantic City,NJ,39.359008,-74.441035,RES3B,3001,,45,ME,1900,1900,3301,3,3,820.0951435,820.0951435,3505,YES,33.26,39.02,3,0.62,6106,114.389505,124.024932,133.804602,140.137334,I,Above,Hip,0,NaN,Wood,36.14131977,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5087,NJBF000071955,635 WABASH AVE,Atlantic City,NJ,39.37209184,-74.4230501,RES1,3001,,45,NE,1930,1930,3102,1,2,1778.982434,1778.982434,3505,NO,24.56,35.44,3,8.96,6106,114.620232,124.215399,134.025396,140.232926,I,Above,Hip,0,5701,Wood,29.9982197,0,0,,,,1,1,,0.03,nav,1,1930,1,, 5088,NJBF000069619,33 S NORTH CAROLINA AVE,Atlantic City,NJ,39.3621536,-74.42449235,COM1,3003,100,NaN,ME,1969,0,3401,3,1,5337.293161,5337.293161,3507,YES,32.23,45.63,1,-0.51,6106,114.707166,124.293009,134.10179,140.349116,I,Above,Flat,0,NaN,Wood,38.93191277,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5089,NJBF000070103,1711 BISHOP RICHARD ALLEN,Atlantic City,NJ,39.36582871,-74.43576782,RES1,3001,,33,NE,1900,1900,3101,2,1,3413.30463,3413.30463,3507,YES,35.47,49.18,1,0.37,6106,114.421113,124.048537,133.836326,140.121528,I,Above,Flat,0,5701,Wood,42.32089786,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5090,NJBF000065381,29 N NEWTON AVE,Atlantic City,NJ,39.34690131,-74.46641233,RES3A,3001,,45,NE,1900,1900,3301,2,2,1133.130463,1133.130463,3505,NO,22.62,33.03,3,-0.46,6106,113.987999,123.696809,133.438603,139.917496,I,Above,Hip,0,5701,Wood,27.82671811,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5091,NJBF000071497,1608 MARMORA AVE,Atlantic City,NJ,39.37077346,-74.43737076,RES1,3001,,17,NE,1997,1997,3101,2,1,1684.553897,1684.553897,3505,NO,28.79,38.26,3,4.91,6106,114.328609,123.967171,133.750903,140.02426,I,Above,Hip,0,5701,Wood,33.52588221,0,0,,,,1,1,,0.03,nav,1,1997,2,, 5092,NJBF000066886,4131 SUNSET AVE,Atlantic City,NJ,39.35116408,-74.46187705,RES3A,3001,,17,NE,1920,1920,3301,2,1,1948.87223,1948.87223,3505,NO,42.29,49,3,4.91,6106,114.032946,123.732104,133.480022,139.924487,I,Above,Hip,0,5701,Wood,45.64605421,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5093,NJBF000070644,811 BALTIC AVE,Atlantic City,NJ,39.36789428,-74.42322698,RES1,3001,,NaN,NE,1969,0,3102,3,1,2855.713608,2855.713608,3505,YES,63.31,74.66,3,7.39,6106,114.665595,124.256007,134.066508,140.28889,I,Above,Flat,0,5701,Wood,68.98600405,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5094,NJBF000069874,38 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36471567,-74.42569172,COM1,3003,,NaN,ME,1969,0,3401,3,1,3629.393515,3629.393515,3507,NO,58,66.57,1,0.04,6106,114.650689,124.244196,134.050503,140.294962,I,Above,Flat,0,NaN,Wood,62.28709629,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5095,NJBF000069867,38 N PENNSYLVANIA AVE,Atlantic City,NJ,39.3646791,-74.4253687,COM1,3003,,NaN,ME,1969,0,3401,3,1,2404.391777,2404.391777,3507,NO,50.22,57.28,1,1.77,6106,114.658041,124.250488,134.057402,140.300483,I,Above,Gable,0,NaN,Wood,53.74892385,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5096,NJBF000072606,1818 E RIVERSIDE DR,Atlantic City,NJ,39.37426086,-74.44444123,RES1,3001,,45,NE,1922,1922,3102,2,2,1422.563226,1422.563226,3505,NO,34.6,39.73,3,7.6,6106,114.136048,123.80143,133.571498,139.857945,I,Above,Gable,0,5701,Wood,37.16540567,0,0,,,,1,1,,0.03,nav,1,1922,2,, 5097,NJBF000071278,720 DREXEL AVE,Atlantic City,NJ,39.37004547,-74.42310894,RES1,3001,,45,NE,1900,1900,3102,2,2,3779.840614,3779.840614,3505,YES,37.02,43.05,3,0.59,6106,114.642825,124.235688,134.046022,140.260681,I,Above,Flat,0,5701,Wood,40.0357536,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5098,NJBF000068111,27 S FLORIDA AVE #A,Atlantic City,NJ,39.35567685,-74.44109023,COM1,3003,100,NaN,ME,1969,0,3401,3,13,1243.632796,1243.632796,3507,YES,54.94,66.62,1,-0.7,6106,114.429314,124.05939,133.839191,140.184545,I,Above,Hip,0,NaN,Wood,60.78286238,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5099,NJBF000069019,635 N ELBERON AVE,Atlantic City,NJ,39.35841119,-74.46396326,RES1,3001,,17,NE,1964,1964,3101,2,1,1357.905287,1357.905287,3505,NO,28.85,35.44,3,6.51,6106,113.897025,123.61629,133.360198,139.777689,I,Above,Flat,0,5701,Wood,32.14611793,0,0,,,,1,1,,0.03,nav,1,1964,2,, 5100,NJBF000068341,2651 ATLANTIC AVE,Atlantic City,NJ,39.35643263,-74.44441528,REL1,3004,,NaN,ME,1969,0,3401,3,1,1097.75834,1097.75834,3507,NO,42.64,53.2,1,0.18,6106,114.34791,123.991026,133.765294,140.121908,I,Above,Flat,0,NaN,Wood,47.91736947,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5101,NJBF000068185,2651 ATLANTIC AVE,Atlantic City,NJ,39.35593322,-74.44443095,REL1,3004,,NaN,ME,1969,0,3401,2,1,3549.65089,3549.65089,3507,NO,27.96,34,1,2.77,6106,114.353746,123.996073,133.770347,140.128939,I,Above,Hip,0,NaN,Wood,30.9769785,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5102,NJBF000070287,704 N MICHIGAN AVE,Atlantic City,NJ,39.366575,-74.440901,RES3B,3001,,17,ME,1900,1900,3301,2,1,1211.066393,1211.066393,3505,NO,30.52,45.02,3,-2.7,6106,114.301528,123.947124,133.725752,140.02909,I,Above,Hip,0,5701,Wood,37.77155122,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5103,NJBF000065458,4500 VENTNOR AVE,Atlantic City,NJ,39.3471435,-74.4634475,RES3A,3001,,18,NE,1930,1930,3301,2,1,1222.724047,1222.724047,3505,YES,22.25,30.72,3,0.58,6106,114.049899,123.747437,133.493259,139.9612,I,Above,Flat,0,5701,Wood,26.48705846,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5104,NJBF000064958,125 S BARTRAM AVE,Atlantic City,NJ,39.3457752,-74.46096579,RES3A,3001,,45,NE,1903,1903,3301,3,3,1742.161191,1742.161191,3504,NO,40.07,54.38,-4,0,6106,114.121998,123.806956,133.556172,140.02123,I,Above,Gable,0,5701,Wood,47.22699429,0,0,,,,1,1,,0.03,nav,1,1903,3,, 5105,NJBF000071679,2304 SHELDON AVE,Atlantic City,NJ,39.37126257,-74.45406662,RES3C,3001,,NaN,ME,1969,0,3301,2,1,9016.018668,9016.018668,3505,NO,39.26,50.39,3,1.05,6106,113.961402,123.658043,133.413081,139.743834,I,Above,Flat,0,NaN,Wood,44.82770477,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5106,NJBF000068127,110 N CHELSEA AVE,Atlantic City,NJ,39.35573778,-74.45060561,RES3A,3001,,45,NE,1905,1905,3301,2,2,1821.824698,1821.824698,3505,NO,36.37,50.14,3,4.13,6106,114.221946,123.886324,133.650724,140.03488,I,Above,Hip,0,5701,Wood,43.25631223,0,0,,,,1,1,,0.03,nav,1,1905,2,, 5107,NJBF000066894,,Atlantic City,NJ,39.35119115,-74.45586183,COM3,3003,,NaN,ME,1969,0,3401,2,1,3227.498401,3227.498401,3507,NO,38.16,47.84,1,-0.07,6106,114.164225,123.840244,133.59689,140.019864,I,Above,Flat,0,NaN,Wood,42.99757536,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5108,NJBF000071170,727 MEDITERRANEAN AVE,Atlantic City,NJ,39.3696442,-74.42306004,RES1,3001,100,NaN,NE,1969,0,3102,1,1,9105.770413,9105.770413,3505,NO,21.99,32.31,3,3.58,6106,114.648567,124.240775,134.051282,140.267056,I,Above,Flat,0,5701,Wood,27.1512473,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5109,NJBF000070474,2022 GRANT AVE,Atlantic City,NJ,39.36728785,-74.4419966,RES3B,3001,,45,ME,1910,1910,3301,2,2,910.8681811,910.8681811,3505,NO,32.9,38.47,3,3.59,6106,114.269435,123.919625,133.696184,140.001047,I,Above,Gable,0,5701,Wood,35.68505401,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5110,NJBF000065696,5 N KINGSTON AVE,Atlantic City,NJ,39.34784934,-74.46350218,RES3A,3001,,45,NE,1914,1914,3301,2,2,1566.241427,1566.241427,3505,NO,39.21,44.3,3,8.98,6106,114.03963,123.738804,133.484556,139.949494,I,Above,Hip,0,5701,Wood,41.75534422,0,0,,,,1,1,,0.03,nav,1,1914,2,, 5111,NJBF000066903,113 N WINDSOR AVE,Atlantic City,NJ,39.35121797,-74.46089582,RES3A,3001,,45,NE,1921,1921,3301,2,2,2347.834497,2347.834497,3505,NO,41.1,52.37,3,8.61,6106,114.053759,123.749192,133.498502,139.939419,I,Above,Gable,0,5701,Wood,46.73732865,0,0,,,,1,1,,0.03,nav,1,1921,2,, 5112,NJBF000070755,,Atlantic City,NJ,39.36831578,-74.41844354,RES3D,3004,,NaN,E,1969,0,3303,4,1,2008.063876,2008.063876,3505,NO,75.56,82.44,3,1.57,6106,114.762513,124.339257,134.158905,140.357309,I,Above,Hip,0,NaN,Wood,78.99812334,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5113,NJBF000070783,,Atlantic City,NJ,39.36841026,-74.41821125,RES3D,3004,,NaN,E,1969,0,3303,3,1,1965.954869,1965.954869,3505,NO,47.61,60.14,3,1.67,6106,114.766358,124.342551,134.162639,140.359622,I,Above,Gable,0,NaN,Wood,53.87506789,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5114,NJBF000069913,1812 BISHOP RICHARD ALLEN,Atlantic City,NJ,39.36496278,-74.43710758,RES1,3001,,17,NE,1920,1900,3101,2,1,1827.091036,1827.091036,3507,NO,32.04,41.86,1,2.72,6106,114.402523,124.033257,133.818842,140.112863,I,Above,Hip,0,5701,Wood,36.95220063,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5115,NJBF000070606,1308 ADRIATIC AVE,Atlantic City,NJ,39.36776727,-74.43080955,RES3C,3003,,NaN,E,1969,0,3305,2,1,555.7908347,555.7908347,3507,YES,27.11,32.57,1,1.24,6106,114.504803,124.118625,133.914978,140.171948,I,Above,Flat,0,NaN,Wood,29.83640638,0,0,,,,2,2,,0.03,nav,1,1969,2,, 5116,NJBF000067992,100 N CHELSEA AVE,Atlantic City,NJ,39.355262,-74.45027461,RES3A,3001,,45,NE,1920,1920,3301,3,2,1665.870474,1665.870474,3505,NO,56.74,67.68,3,-1.09,6106,114.235057,123.897414,133.662373,140.047179,I,Above,Hip,0,5701,Wood,62.21013609,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5117,NJBF000070694,1224 ADRIATIC AVE,Atlantic City,NJ,39.36808099,-74.42998019,RES3C,3003,,33,E,1900,1900,3305,2,1,1764.61424,1764.61424,3507,YES,24.53,31.3,1,2.54,6106,114.518911,124.130495,133.92831,140.180545,I,Above,Flat,0,NaN,Wood,27.91784879,0,0,,,,2,2,,0.03,nav,1,1900,2,, 5118,NJBF000070002,417 N OHIO AVE,Atlantic City,NJ,39.36541769,-74.43804421,RES3B,3001,,17,ME,1910,1910,3301,2,1,1085.667555,1085.667555,3505,NO,31.35,43.18,3,5.04,6106,114.376922,124.011395,133.79525,140.091457,I,Above,Hip,0,NaN,Wood,37.26427337,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5119,NJBF000069369,1519 PACIFIC AVE,Atlantic City,NJ,39.35990447,-74.4292639,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1429.124663,1429.124663,3507,NO,31.78,45.62,1,1.65,6106,114.632258,124.229616,134.029777,140.307062,I,Above,Flat,0,NaN,Wood,38.70048028,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5120,NJBF000067906,400 N HARRISBURG AVE,Atlantic City,NJ,39.35496271,-74.46054169,RES1,3001,,17,NE,1950,1950,3102,1,1,2007.521784,2007.521784,3505,NO,19.41,25.65,3,5.18,6106,114.014533,123.715138,133.464602,139.887518,I,Above,Hip,0,5701,Wood,22.53017411,0,0,,,,1,1,,0.03,nav,1,1950,1,, 5121,NJBF000066919,20 N TRENTON AVE,Atlantic City,NJ,39.3513025,-74.4565035,RES3A,3001,,45,NE,1900,1900,3301,3,3,1226.9804,1226.9804,3505,YES,56.32,65.16,3,5.52,6106,114.148804,123.827472,133.583164,140.00806,I,Above,Hip,0,5701,Wood,60.74147014,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5122,NJBF000067705,2643 PACIFIC AVE,Atlantic City,NJ,39.35422634,-74.44335011,RES3A,3004,565,NaN,NE,1969,0,3301,2,1,1613.527807,1613.527807,3505,YES,41.47,46.83,3,6.71,6106,114.398405,124.033897,133.810005,140.170463,I,Above,Gable,0,5701,Wood,44.14947043,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5123,NJBF000069773,1100 N ALBANY AVE,Atlantic City,NJ,39.36383215,-74.47264922,GOV1,3003,,NaN,E,1969,0,3401,1,1,135263.9331,135263.9331,3507,NO,16.26,30.04,1,2.66,6110,113.640761,123.401433,133.1315,139.543989,I,Above,Flat,0,NaN,Wood,23.14588219,0,0,,,,1,1,,1,nav,1,1969,1,, 5124,NJBF000069939,1100 N ALBANY AVE,Atlantic City,NJ,39.3650975,-74.47275,GOV1,3003,,NaN,E,1969,0,3401,1,1,1320.642234,1320.642234,3507,NO,17.05,26.38,1,0.58,6110,113.623616,123.386029,133.11545,139.522033,I,Above,Gable,0,NaN,Wood,21.71530214,0,0,,,,1,1,,1,nav,1,1969,1,, 5125,NJBF000068771,219 N MORRIS AVE,Atlantic City,NJ,39.35759198,-74.45010636,RES3A,3001,,27,NE,1900,1900,3301,2,2,965.4119945,965.4119945,3507,YES,33.8,46.65,1,2.93,6106,114.209964,123.875524,133.640514,140.015194,I,Above,Gable,0,5701,Wood,40.22577553,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5126,NJBF000065409,32 N MONTGOMERY AVE,Atlantic City,NJ,39.34698171,-74.4661998,RES3A,3001,,27,NE,1925,1925,3301,2,2,1931.729391,1931.729391,3505,YES,28.32,40.1,3,6.78,6106,113.991607,123.699735,133.441814,139.91965,I,Above,Flat,0,5701,Wood,34.21069872,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5127,NJBF000069190,140 N FLORIDA AVE,Atlantic City,NJ,39.35912889,-74.44384107,RES3B,3001,,33,ME,1900,1900,3301,2,1,3540.338986,3540.338986,3505,YES,31.66,44.94,3,8.29,6106,114.327251,123.972697,133.747663,140.091548,I,Above,Flat,0,NaN,Wood,38.29885919,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5128,NJBF000066340,4008 VENTNOR AVE,Atlantic City,NJ,39.34952208,-74.45831474,COM1,3004,738,NaN,ME,1969,0,3401,3,1,13226.68221,13226.68221,3507,YES,49.23,56.78,1,1.1,6106,114.131806,123.814044,133.567123,140.006306,I,Above,Flat,0,NaN,Wood,53.00384943,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5129,NJBF000070686,,Atlantic City,NJ,39.36805437,-74.41864384,RES3D,3004,,NaN,E,1969,0,3303,4,1,760.7321809,760.7321809,3505,NO,78.17,88.11,3,2.29,6106,114.761355,124.338319,134.157616,140.357821,I,Above,Gable,0,NaN,Wood,83.13785693,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5130,NJBF000069227,212 N TEXAS AVE,Atlantic City,NJ,39.35924669,-74.44552012,RES3A,3001,,27,NE,1900,1900,3301,2,2,1138.030616,1138.030616,3505,YES,35.39,41.92,3,5.64,6106,114.289391,123.940974,133.713154,140.06334,I,Above,Flat,0,5701,Wood,38.65749384,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5131,NJBF000068459,110 N IOWA AVE,Atlantic City,NJ,39.35682337,-74.44720574,RES3A,3001,,45,NE,1900,1900,3301,2,3,1194.558007,1194.558007,3505,NO,37.43,45.56,3,2.36,6106,114.282501,123.936276,133.705981,140.072441,I,Above,Hip,0,5701,Wood,41.49773742,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5132,NJBF000071929,6 WINDJAMMER CT,Atlantic City,NJ,39.37201855,-74.41798025,RES3C,3001,,35,ME,1990,1990,3301,2,1,3758.052631,3758.052631,3505,NO,33.36,46.44,3,-2.12,6106,114.728976,124.309227,134.129122,140.313405,I,Above,Hip,0,NaN,Wood,39.89944936,0,0,,,,1,1,,0.03,nav,1,1990,2,, 5133,NJBF000071846,1565 N MISSOURI AVE,Atlantic City,NJ,39.3717955,-74.4497275,RES1,3001,,17,NE,1966,1966,3102,2,1,1661.004522,1661.004522,3505,NO,32.73,38.97,3,-0.45,6106,114.049648,123.731256,133.493249,139.807835,I,Above,Gable,0,5701,Wood,35.85377796,0,0,,,,1,1,,0.03,nav,1,1966,2,, 5134,NJBF000068540,600 SOUTH DRIVE,Atlantic City,NJ,39.35705162,-74.46661286,RES3C,3001,,45,ME,1952,1952,3301,1,4,2311.819849,2311.819849,3505,NO,12.54,17.64,3,1,6106,113.85548,123.583162,133.323612,139.754811,I,Above,Gable,0,NaN,Wood,15.09208594,0,0,,,,1,1,,0.03,nav,1,1952,1,, 5135,NJBF000068450,600 SOUTH DRIVE,Atlantic City,NJ,39.35679898,-74.46640842,RES3C,3001,,45,ME,1952,1952,3301,2,4,2328.451135,2328.451135,3505,NO,25.71,36.41,3,-0.8,6106,113.8631,123.589585,133.330374,139.762228,I,Above,Flat,0,NaN,Wood,31.06022387,0,0,,,,1,1,,0.03,nav,1,1952,2,, 5136,NJBF000067416,328 N DOVER AVE,Atlantic City,NJ,39.35340101,-74.4616645,RES1,3001,,16,NE,1900,1900,3102,2,1,957.0794018,957.0794018,3505,YES,36.33,47.07,3,4.13,6106,114.009439,123.711758,133.45979,139.893413,I,Above,Gable,0,5701,Wood,41.70223886,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5137,NJBF000064800,119 S BERKLEY SQ,Atlantic City,NJ,39.345358,-74.46238634,RES3A,3001,,18,NE,1900,1900,3301,3,1,1351.917917,1351.917917,3504,YES,41.47,52.82,-4,0,6106,114.096316,123.78596,133.533181,140.005277,I,Above,Flat,0,5701,Wood,47.14593388,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5138,NJBF000070633,5 S NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36786726,-74.41246948,RES3D,3004,,NaN,E,1969,0,3303,4,1,2094.814722,2094.814722,3505,YES,65.34,75.73,3,3.26,6106,114.894613,124.453583,134.28508,140.455557,I,Above,Flat,0,NaN,Wood,70.53573095,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5139,NJBF000070127,33 S METROPOLITAN AVE,Atlantic City,NJ,39.36594052,-74.41538975,RES3D,3004,,17,E,1900,1900,3303,3,1,1065.798098,1065.798098,3505,NO,48.48,61.54,3,-1.18,6106,114.855596,124.419996,134.245896,140.436873,I,Above,Gable,0,NaN,Wood,55.00970014,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5140,NJBF000069280,109 N MISSISSIPPI AVE,Atlantic City,NJ,39.3595035,-74.440474,COM1,3003,,NaN,ME,1969,0,3401,1,1,2365.737132,2365.737132,3507,NO,13.96,22.62,1,1.94,6106,114.395589,124.029851,133.81042,140.138929,I,Above,Flat,0,NaN,Wood,18.28770252,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5141,NJBF000070435,1717 REV JJ WALTERS,Atlantic City,NJ,39.36712297,-74.43761837,RES1,3001,,NaN,NE,1969,0,3102,2,1,910.9135089,910.9135089,3505,NO,42.93,52.57,3,4.38,6106,114.36594,124.00115,133.78539,140.073457,I,Above,Flat,0,5701,Wood,47.75200581,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5142,NJBF000067630,2 CHELSEA TERR,Atlantic City,NJ,39.354015,-74.4413815,RES3A,3004,,33,NE,1900,1900,3301,2,1,1799.625767,1799.625767,3505,YES,31.03,41.54,3,5.03,6106,114.443674,124.07182,133.851168,140.203875,I,Above,Flat,0,5701,Wood,36.28353251,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5143,NJBF000069930,1525 C MORRIS CAIN PL,Atlantic City,NJ,39.36505264,-74.43245144,RES3D,3004,,33,E,1900,1900,3303,3,1,595.7618413,595.7618413,3505,NO,49.27,55.63,3,2.88,6106,114.501719,124.11722,133.911083,140.184863,I,Above,Flat,0,NaN,Wood,52.44974879,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5144,NJBF000073000,431 CARSON AVE,Atlantic City,NJ,39.37634449,-74.42316099,RES3D,3001,,NaN,ME,1969,0,3301,2,1,1235.817406,1235.817406,3507,NO,27.81,39.43,1,2.96,6102,114.568994,124.16903,133.977644,140.171351,I,Above,Flat,0,NaN,Wood,33.62127458,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5145,NJBF000065709,33 S RALEIGH AVE,Atlantic City,NJ,39.34787952,-74.46054214,RES3A,3001,,17,NE,1900,1900,3301,2,1,1145.0089,1145.0089,3505,NO,30.43,43.8,3,1.14,6106,114.104093,123.791724,133.541611,139.99602,I,Above,Flat,0,5701,Wood,37.11820261,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5146,NJBF000070122,1910 CASPIAN AVE,Atlantic City,NJ,39.36592515,-74.43924362,RES3B,3001,,17,ME,2000,2000,3301,1,1,1527.595109,1527.595109,3505,NO,17.06,29.85,3,2.46,6106,114.345008,123.984176,133.765829,140.065025,I,Above,Gable,0,NaN,Wood,23.45447276,0,0,,,,1,1,,0.03,nav,1,2000,1,, 5147,NJBF000072454,1623 EMERSON AVE,Atlantic City,NJ,39.373723,-74.450373,RES1,3001,,NaN,NE,1969,0,3102,2,1,1190.965945,1190.965945,3505,NO,30.83,45.04,3,5.42,6106,114.013669,123.699099,133.45924,139.767959,I,Above,Gable,0,5701,Wood,37.93779987,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5148,NJBF000071655,1503 W RIVERSIDE DR,Atlantic City,NJ,39.371185,-74.449084,RES1,3001,,16,NE,1900,1900,3102,1,1,1058.406012,1058.406012,3505,NO,15.07,25.12,3,3.2,6106,114.0706,123.749409,133.512707,139.827655,I,Above,Hip,0,5701,Wood,20.09922256,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5149,NJBF000072311,1643 N ARKANSAS AVE,Atlantic City,NJ,39.37324655,-74.4506576,RES1,3001,,17,NE,1900,1900,3101,1,1,1311.493657,1311.493657,3505,NO,19.82,25.71,3,8.59,6106,114.012882,123.698953,133.458814,139.77043,I,Above,Hip,0,5701,Wood,22.76393504,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5150,NJBF000070975,1924 MARMORA AVE,Atlantic City,NJ,39.36902357,-74.44169513,RES3A,3001,,17,NE,1900,1900,3301,1,1,1331.392588,1331.392588,3505,NO,12.91,27.81,3,-0.74,6106,114.255641,123.906769,133.683382,139.980326,I,Above,Flat,0,5701,Wood,20.36000398,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5151,NJBF000068763,630 WISTERIA RD,Atlantic City,NJ,39.35757414,-74.4618079,RES1,3001,,16,NE,1900,1900,3101,1,1,533.3211024,533.3211024,3505,NO,15.7,21.74,3,3.01,6106,113.954541,123.664177,133.411375,139.826399,I,Above,Flat,0,5701,Wood,18.71973062,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5152,NJBF000068701,4023 CROSSAN AVE,Atlantic City,NJ,39.35745029,-74.46427006,RES1,3001,,17,NE,1900,1900,3101,1,1,2871.88246,2871.88246,3505,NO,9.34,14.73,3,-1.52,6106,113.902055,123.621102,133.364776,139.787626,I,Above,Gable,0,5701,Wood,12.03862667,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5153,NJBF000067645,400 N DOVER AVE,Atlantic City,NJ,39.3540629,-74.4622925,RES1,3001,560,NaN,NE,1969,0,3102,2,1,2196.052461,2196.052461,3505,NO,28.45,37.53,3,4.21,6106,113.98737,123.693272,133.440327,139.872939,I,Above,Flat,0,5701,Wood,32.99386345,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5154,NJBF000069386,243 N NEVADA AVE,Atlantic City,NJ,39.3600216,-74.44493115,RES3A,3001,,27,NE,1923,1923,3301,2,2,666.6501605,666.6501605,3505,YES,35.3,47.71,3,6.53,6106,114.292736,123.943405,133.716452,140.06125,I,Above,Gable,0,5701,Wood,41.50604034,0,0,,,,1,1,,0.03,nav,1,1923,2,, 5155,NJBF000065858,102 S DOVER AVE,Atlantic City,NJ,39.34828847,-74.45705372,RES1,3001,,18,NE,1900,1900,3102,2,1,1858.467886,1858.467886,3507,YES,26.14,35.3,1,-0.32,6106,114.175155,123.85012,133.60502,140.044663,I,Above,Hip,0,5701,Wood,30.72055938,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5156,NJBF000066811,4018 WINCHESTER AVE,Atlantic City,NJ,39.35085668,-74.45947538,RES3A,3001,,33,NE,1923,1923,3301,2,1,1030.853652,1030.853652,3505,YES,35.72,49.62,3,4.91,6106,114.089449,123.778701,133.53007,139.967656,I,Above,Gable,0,5701,Wood,42.67021992,0,0,,,,1,1,,0.03,nav,1,1923,2,, 5157,NJBF000066775,4016 WINCHESTER AVE,Atlantic City,NJ,39.35073805,-74.45930851,RES3A,3001,,33,NE,1900,1900,3301,2,1,1082.699605,1082.699605,3505,YES,40.29,46.59,3,2.54,6106,114.094592,123.78298,133.534593,139.972112,I,Above,Flat,0,5701,Wood,43.440772,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5158,NJBF000065624,116 S RIDGEWAY AVE,Atlantic City,NJ,39.34763449,-74.45745576,RES3A,3001,,18,NE,1907,1907,3301,3,1,2780.679352,2780.679352,3504,NO,52.52,64.95,-4,0,6106,114.174767,123.849958,133.604255,140.048164,I,Above,Hip,0,5701,Wood,58.73310106,0,0,,,,1,1,,0.03,nav,1,1907,3,, 5159,NJBF000069514,1625 ATLANTIC AVE,Atlantic City,NJ,39.36111964,-74.43161133,COM1,3003,100,NaN,ME,1969,0,3401,4,1,13506.87016,13506.87016,3507,YES,48.98,60.03,1,2.39,6106,114.567059,124.174012,133.969871,140.253768,I,Above,Flat,0,NaN,Wood,54.50379648,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5160,NJBF000068595,2401 ATLANTIC AVE,Atlantic City,NJ,39.35720168,-74.4409867,COM1,3003,738,NaN,ME,1969,0,3401,3,1,5718.63648,5718.63648,3507,YES,46.43,51.49,1,1.45,6106,114.412698,124.045016,133.824914,140.164188,I,Above,Flat,0,NaN,Wood,48.96182343,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5161,NJBF000064945,28 S MONTGOMERY AVE,Atlantic City,NJ,39.34573114,-74.4651809,RES3B,3001,,17,ME,1925,1925,3301,1,1,1179.59528,1179.59528,3504,NO,17.99,29.18,-4,0,6106,114.030188,123.731671,133.475097,139.955364,I,Above,Hip,0,NaN,Wood,23.58486391,0,0,,,,1,1,,0.03,nav,1,1925,1,, 5162,NJBF000069398,1408 PACIFIC AVE,Atlantic City,NJ,39.36011138,-74.42733674,COM1,3003,280,NaN,ME,1969,1927,3401,5,1,8357.196937,8357.196937,3507,YES,66.48,76.49,1,1.36,6106,114.671063,124.262567,134.066215,140.333775,I,Above,Flat,0,NaN,Wood,71.48938446,0,0,,,,1,1,,0.03,nav,1,1969,5,, 5163,NJBF000065297,15 S TALLAHASSEE AVE,Atlantic City,NJ,39.34665508,-74.46399265,RES1,3001,,18,NE,1900,1900,3102,2,1,2354.160824,2354.160824,3504,NO,23.18,37.45,-4,0,6106,114.044266,123.742958,133.488023,139.960043,I,Above,Hip,0,5701,Wood,30.31549359,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5164,NJBF000072565,551 N CONNECTICUT AVE,Atlantic City,NJ,39.374105,-74.4230975,RES1,3001,,45,NE,1900,1900,3102,2,2,2233.687864,2233.687864,3505,YES,35.74,42.09,3,3.3,6106,114.59598,124.193539,134.002932,140.203905,I,Above,Flat,0,5701,Wood,38.91376061,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5165,NJBF000071714,712 WABASH AVE,Atlantic City,NJ,39.37136352,-74.42381752,RES1,3001,,17,NE,1900,1900,3102,1,1,1945.23056,1945.23056,3505,NO,17.56,26.18,3,1.02,6106,114.61231,124.208915,134.017606,140.231067,I,Above,Hip,0,5701,Wood,21.87202932,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5166,NJBF000069833,117 S CONGRESS AVE,Atlantic City,NJ,39.3643789,-74.41571504,RES3B,3001,,33,E,1920,1920,3303,2,1,699.5649382,699.5649382,3507,YES,36.26,47.08,1,1.03,6106,114.867395,124.430304,134.255685,140.453115,I,Above,Flat,0,NaN,Wood,41.67083024,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5167,NJBF000069835,115 S CONGRESS AVE,Atlantic City,NJ,39.36441808,-74.41575115,RES3B,3001,,17,E,1900,1900,3303,2,1,720.8216574,720.8216574,3507,YES,31.28,42.37,1,0.73,6106,114.866162,124.429238,134.254546,140.452036,I,Above,Flat,0,NaN,Wood,36.82688463,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5168,NJBF000067563,3408 WINCHESTER AVE,Atlantic City,NJ,39.35383519,-74.45317439,RES3B,3001,,45,E,1900,1900,3303,2,2,2972.37889,2972.37889,3507,YES,35.36,40.99,1,1.4,6106,114.189655,123.86031,133.620881,140.022674,I,Above,Flat,0,NaN,Wood,38.17892283,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5169,NJBF000069075,,Atlantic City,NJ,39.35867171,-74.44241239,RES3B,3001,,NaN,ME,1900,0,3301,1,1,2391.886078,2391.886078,3505,NO,19.71,29.49,3,1.48,6106,114.363801,124.003501,133.780895,140.120653,I,Above,Flat,0,NaN,Wood,24.60242811,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5170,NJBF000068552,3012 HOWARD AVE,Atlantic City,NJ,39.35709538,-74.45047278,RES3A,3001,,16,NE,1900,1900,3301,2,1,555.6687015,555.6687015,3507,YES,30.5,41.86,1,2.35,6106,114.208085,123.874197,133.638667,140.016775,I,Above,Flat,0,5701,Wood,36.18089008,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5171,NJBF000068557,3010 HOWARD AVE,Atlantic City,NJ,39.357111,-74.450421,RES3A,3001,,33,NE,1900,1900,3301,2,1,610.2521178,610.2521178,3507,YES,38.12,43.12,1,-0.86,6106,114.20902,123.874968,133.639517,140.017362,I,Above,Flat,0,5701,Wood,40.61949483,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5172,NJBF000071502,1552 W RIVERSIDE DR,Atlantic City,NJ,39.37078358,-74.44958764,RES1,3001,,17,NE,1920,1920,3101,1,1,1609.132127,1609.132127,3505,NO,14.18,27.95,3,-1.9,6106,114.064271,123.744493,133.507094,139.825397,I,Above,Gable,0,5701,Wood,21.06520449,0,0,,,,1,1,,0.03,nav,1,1920,1,, 5173,NJBF000065780,22 N BARTRAM AVE,Atlantic City,NJ,39.34807876,-74.46328273,RES3A,3001,,17,NE,1900,1900,3301,2,1,1496.665382,1496.665382,3505,NO,41.48,54.26,3,4.03,6106,114.041475,123.740244,133.486298,139.949451,I,Above,Hip,0,5701,Wood,47.87238513,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5174,NJBF000068989,2713 FAIRMOUNT AVE,Atlantic City,NJ,39.35827353,-74.44702912,RES3A,3001,,45,NE,1900,1900,3301,2,2,2019.784905,2019.784905,3505,NO,34.1,47.44,3,8.65,6106,114.268516,123.923986,133.693825,140.053835,I,Above,Hip,0,5701,Wood,40.76802712,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5175,NJBF000066412,106 N DELANCY PL,Atlantic City,NJ,39.34968837,-74.46343163,RES3A,3001,,33,NE,1900,1900,3301,2,1,3048.945948,3048.945948,3505,YES,22.8,30.28,3,1.35,6106,114.017608,123.720099,133.46591,139.922236,I,Above,Flat,0,5701,Wood,26.54029573,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5176,NJBF000068122,3001 ARCTIC AVE,Atlantic City,NJ,39.35572161,-74.4493258,RES3A,3001,,45,NE,1915,1915,3301,3,4,3036.470507,3036.470507,3505,NO,59.74,74,3,3.7,6106,114.250009,123.909661,133.676078,140.055318,I,Above,Hip,0,5701,Wood,66.87157127,0,0,,,,1,1,,0.03,nav,1,1915,3,, 5177,NJBF000071046,823 N INDIANA AVE,Atlantic City,NJ,39.3692225,-74.438999,RES1,3001,,17,NE,1900,1900,3102,1,1,1156.146248,1156.146248,3505,NO,13.91,21.39,3,1.93,6106,114.311545,123.953819,133.735096,140.020782,I,Above,Gable,0,5701,Wood,17.65244453,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5178,NJBF000066621,17 TRENTON TERR,Atlantic City,NJ,39.35026188,-74.45601237,RES3A,3001,,17,NE,1900,1900,3301,2,1,1051.712188,1051.712188,3504,NO,28.92,43.54,-4,0,6106,114.172727,123.847565,133.604007,140.03144,I,Above,Hip,0,5701,Wood,36.23095767,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5179,NJBF000069329,ATLANTIC CITY EXPRESSWAY,Atlantic City,NJ,39.35970062,-74.43782459,COM1,3003,100,NaN,ME,1969,0,3401,1,1,16413.87443,16413.87443,3507,NO,15.15,26.73,1,2.98,6106,114.450436,124.075909,133.860983,140.177454,I,Above,Flat,0,NaN,Wood,20.93805289,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5180,NJBF000067781,327 N ELBERON AVE,Atlantic City,NJ,39.35448383,-74.4607814,RES1,3001,,45,NE,1900,1900,3102,1,2,1557.144142,1557.144142,3505,NO,21.33,31.59,3,3.35,6106,114.015259,123.715991,133.46517,139.891023,I,Above,Gable,0,5701,Wood,26.4613087,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5181,NJBF000070906,654 N KENTUCKY AVE,Atlantic City,NJ,39.36881305,-74.43601145,RES1,3001,,16,NE,1900,1900,3101,1,1,1345.038392,1345.038392,3505,NO,25.81,36.29,3,8.2,6106,114.380721,124.012641,133.799335,140.074519,I,Above,Gable,0,5701,Wood,31.05212283,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5182,NJBF000072186,2117 KUEHNLE AVE,Atlantic City,NJ,39.37283001,-74.4517877,RES1,3001,,17,NE,1900,1900,3101,1,1,1629.109944,1629.109944,3505,NO,15.37,26.27,3,0.31,6106,113.993081,123.682826,133.440974,139.757953,I,Above,Hip,0,5701,Wood,20.82428983,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5183,NJBF000065593,11 N ABERDEEN PL,Atlantic City,NJ,39.34755076,-74.46379795,RES3A,3001,,45,NE,1904,1904,3301,2,2,1713.945942,1713.945942,3505,NO,38.23,49.15,3,7.38,6106,114.036975,123.736719,133.482063,139.949357,I,Above,Hip,0,5701,Wood,43.6882997,0,0,,,,1,1,,0.03,nav,1,1904,2,, 5184,NJBF000064591,4709 ATLANTIC AVE,Atlantic City,NJ,39.34486436,-74.46521221,RES3B,3001,,18,ME,1880,1880,3301,2,1,2539.717079,2539.717079,3504,NO,38.03,48.58,-4,0,6106,114.040798,123.740566,133.483912,139.968233,I,Above,Hip,0,NaN,Wood,43.30542759,0,0,,,,1,1,,0.03,nav,1,1880,2,, 5185,NJBF000064691,4709 ATLANTIC AVE,Atlantic City,NJ,39.345097,-74.465258,RES3B,3001,,18,ME,1880,1880,3301,2,1,647.4277992,647.4277992,3504,NO,27.73,38.62,-4,0,6106,114.03675,123.737199,133.480495,139.963915,I,Above,Flat,0,NaN,Wood,33.17676524,0,0,,,,1,1,,0.03,nav,1,1880,2,, 5186,NJBF000067991,12 S TEXAS AVE,Atlantic City,NJ,39.35525971,-74.44287509,RES3A,3004,29,NaN,NE,1969,0,3301,3,1,1589.365023,1589.365023,3505,YES,61.04,67.12,3,3.37,6106,114.395829,124.031465,133.808324,140.162895,I,Above,Flat,0,5701,Wood,64.07907902,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5187,NJBF000068394,3014 FAIRMOUNT AVE,Atlantic City,NJ,39.35661145,-74.45016955,RES3A,3001,,33,NE,1900,1925,3301,2,1,3809.452709,3809.452709,3505,YES,26.75,41.4,3,5.69,6106,114.220647,123.884864,133.649865,140.02879,I,Above,Flat,0,5701,Wood,34.07733435,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5188,NJBF000070791,637 GREEN ST,Atlantic City,NJ,39.36843782,-74.43609547,RES1,3001,,17,NE,1900,1900,3101,2,1,1167.841478,1167.841478,3505,NO,22.22,33.32,3,-2.31,6106,114.383304,124.015059,133.801695,140.078616,I,Above,Flat,0,5701,Wood,27.76846186,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5189,NJBF000064643,100 S BERKLEY SQ,Atlantic City,NJ,39.34497161,-74.46262902,RES3F,3003,,NaN,E,1969,0,3305,6,1,32958.43163,32958.43163,3507,NO,89.17,96.5,1,2.64,6106,114.096018,123.785795,133.532658,140.007323,I,Above,Flat,0,NaN,Wood,92.83210565,0,0,,,,2,2,,0.03,nav,1,1969,6,, 5190,NJBF000070387,1420 ADRIATIC AVE,Atlantic City,NJ,39.36691052,-74.43251271,RES3C,3003,100,NaN,E,1969,0,3305,1,1,2896.265757,2896.265757,3507,NO,16.66,29.79,1,2.78,6106,114.478334,124.096523,133.889941,140.157345,I,Above,Flat,0,NaN,Wood,23.22587883,0,0,,,,2,2,,0.03,nav,1,1969,1,, 5191,NJBF000067634,444 N RICHMOND AVE #A,Atlantic City,NJ,39.3540226,-74.46526734,RES3D,3001,29,NaN,ME,1969,0,3301,2,1,10195.0974,10195.0974,3505,NO,32.58,43.93,3,-0.12,6106,113.922604,123.640121,133.382984,139.824803,I,Above,Gable,0,NaN,Wood,38.2596762,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5192,NJBF000067704,444 N RICHMOND AVE #A,Atlantic City,NJ,39.35422501,-74.46484267,RES3D,3001,29,NaN,ME,1969,0,3301,2,1,10779.19686,10779.19686,3505,NO,39,51.29,3,3.79,6106,113.929393,123.645574,133.389,139.828629,I,Above,Flat,0,NaN,Wood,45.14559885,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5193,NJBF000070909,419 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36882726,-74.43064337,RES1,3001,,27,NE,2006,2006,3103,2,2,2180.822101,2180.822101,3505,NO,33.64,46.26,3,8.5,6106,114.495926,124.110541,133.906978,140.159463,I,Above,Hip,0,5701,Wood,39.94946703,0,0,,,,1,1,,0.03,nav,1,2006,2,, 5194,NJBF000068687,595 N ELBERON AVE,Atlantic City,NJ,39.35741657,-74.46316528,RES1,3001,,17,NE,1925,1925,3101,2,1,1009.797702,1009.797702,3505,NO,28.21,38.22,3,-0.35,6106,113.926709,123.641385,133.386649,139.806453,I,Above,Gable,0,5701,Wood,33.21590178,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5195,NJBF000069990,31 N VIRGINIA AVE,Atlantic City,NJ,39.36534013,-74.42343326,COM1,3003,100,NaN,ME,1969,1930,3401,4,1,8124.657484,8124.657484,3507,YES,51.8,63.99,1,0.95,6106,114.69152,124.278962,134.089434,140.321251,I,Above,Flat,0,NaN,Wood,57.89646484,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5196,NJBF000065804,4010 ATLANTIC AVE,Atlantic City,NJ,39.34815544,-74.45731543,RES3A,3001,,18,NE,1930,1930,3301,2,1,2331.609823,2331.609823,3504,YES,37,44.99,-4,0,6106,114.171157,123.846857,133.601374,140.042573,I,Above,Hip,0,5701,Wood,40.994932,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5197,NJBF000069857,130 N TENNESSEE AVE,Atlantic City,NJ,39.36459662,-74.42995141,RES3D,3004,,45,E,1900,1900,3303,3,2,1142.003617,1142.003617,3505,YES,41.56,51.9,3,6.43,6106,114.560855,124.167648,133.966115,140.230427,I,Above,Hip,0,NaN,Wood,46.73328957,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5198,NJBF000069413,100 S OCEAN AVE,Atlantic City,NJ,39.36020002,-74.4264805,COM1,3003,,NaN,ME,1925,0,3401,1,1,30839.83415,30839.83415,3507,NO,16.53,29.73,1,1.33,6106,114.68834,124.277261,134.082473,140.345682,I,Above,Flat,0,NaN,Wood,23.12890092,0,0,,,,1,1,,0.03,nav,1,1925,1,, 5199,NJBF000068036,18 N STENTON PL,Atlantic City,NJ,39.35541439,-74.44690234,RES3B,3001,,45,ME,1910,1910,3301,2,3,1171.872077,1171.872077,3504,NO,30.21,44.27,-4,0,6106,114.306535,123.956847,133.72715,140.097918,I,Above,Hip,0,NaN,Wood,37.23989001,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5200,NJBF000071085,717 GREEN ST,Atlantic City,NJ,39.369347,-74.4367071,RES1,3001,,33,NE,1920,1910,3101,2,1,9502.389384,9502.389384,3505,YES,20.39,34.22,3,-1.22,6106,114.359492,123.994313,133.779625,140.05566,I,Above,Flat,0,5701,Wood,27.30694562,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5201,NJBF000072115,441 N CONNECTICUT AVE,Atlantic City,NJ,39.37263333,-74.42211604,RES1,3001,,17,NE,1900,1900,3102,1,1,1699.430679,1699.430679,3505,NO,21.93,35.06,3,8.17,6106,114.633867,124.226893,134.038565,140.240036,I,Above,Hip,0,5701,Wood,28.49410627,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5202,NJBF000067214,3716 SUNSET AVE,Atlantic City,NJ,39.3525945,-74.4568105,RES3A,3001,,45,NE,1924,1924,3301,2,2,1209.241461,1209.241461,3505,YES,40.27,48.82,3,3.13,6106,114.125781,123.80798,133.563154,139.98367,I,Above,Flat,0,5701,Wood,44.54637703,0,0,,,,1,1,,0.03,nav,1,1924,2,, 5203,NJBF000067230,100 N ALBANY AVE,Atlantic City,NJ,39.3526765,-74.45655548,COM3,3003,530,NaN,ME,1969,0,3401,2,1,6460.176531,6460.176531,3507,NO,27.52,37.77,1,-0.77,6106,114.130346,123.811716,133.567264,139.986499,I,Above,Flat,0,NaN,Wood,32.64315616,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5204,NJBF000072408,1609 EMERSON AVE,Atlantic City,NJ,39.37355267,-74.44980774,RES1,3001,,17,NE,1900,1900,3102,2,1,1599.288577,1599.288577,3505,YES,32.43,38.16,3,2.57,6106,114.027855,123.711175,133.472336,139.779922,I,Above,Gable,0,5701,Wood,35.29549019,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5205,NJBF000066964,3915 WINCHESTER AVE,Atlantic City,NJ,39.35147505,-74.45894232,RES3A,3001,,33,NE,1900,1900,3301,2,1,1386.146572,1386.146572,3505,YES,40.99,46.74,3,3.77,6106,114.093292,123.78163,133.533741,139.966738,I,Above,Flat,0,5701,Wood,43.86344585,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5206,NJBF000068804,737 N HARRISBURG AVE,Atlantic City,NJ,39.357661,-74.46211206,RES1,3001,,16,NE,1900,1900,3101,1,1,958.9318804,958.9318804,3505,NO,20.53,26.9,3,8.11,6106,113.946809,123.657756,133.404494,139.820039,I,Above,Gable,0,5701,Wood,23.7112476,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5207,NJBF000068393,9 N TEXAS AVE,Atlantic City,NJ,39.35660344,-74.44331667,RES3B,3001,,17,ME,1900,1900,3301,2,1,1210.736451,1210.736451,3505,YES,40.65,55.55,3,1.89,6106,114.369619,124.009122,133.785184,140.136572,I,Above,Flat,0,NaN,Wood,48.09679702,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5208,NJBF000070714,807 BALTIC AVE,Atlantic City,NJ,39.36815045,-74.42305358,COM1,3003,959,NaN,ME,1969,0,3401,2,1,15347.76311,15347.76311,3507,NO,29.45,39.92,1,0.56,6106,114.666265,124.256498,134.067287,140.288014,I,Above,Flat,0,NaN,Wood,34.68273429,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5209,NJBF000067849,463 N ANNAPOLIS AVE,Atlantic City,NJ,39.35476819,-74.4633946,RES1,3001,,18,NE,1900,1900,3102,2,1,2612.196088,2612.196088,3505,NO,32.39,38.39,3,8.56,6106,113.95441,123.665798,133.411189,139.843959,I,Above,Hip,0,5701,Wood,35.38687274,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5210,NJBF000070640,,Atlantic City,NJ,39.36788598,-74.42105547,RES1,3001,,NaN,NE,1969,0,3102,2,1,2478.464167,2478.464167,3505,NO,36.51,47.56,3,8.23,6106,114.71201,124.295877,134.110536,140.32277,I,Above,Hip,0,5701,Wood,42.03472179,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5211,NJBF000064626,4707 ATLANTIC AVE,Atlantic City,NJ,39.34494026,-74.46506052,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,1894.601562,1894.601562,3504,NO,22.09,28.44,-4,0,6106,114.043119,123.74245,133.486002,139.969458,I,Above,Hip,0,5701,Wood,25.26572181,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5212,NJBF000070000,223 ORIENTAL AVE,Atlantic City,NJ,39.36539612,-74.41218333,RES3A,3001,,45,NE,1900,1900,3301,2,2,1591.918454,1591.918454,3505,YES,27.34,37.04,3,4.96,6106,114.930102,124.484484,134.316761,140.493299,I,Above,Flat,0,5701,Wood,32.19282623,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5213,NJBF000067504,108 ALBION PL,Atlantic City,NJ,39.35368235,-74.44271772,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,1637.838491,1637.838491,3505,NO,38.15,43.79,3,3.32,6106,114.418898,124.051161,133.828311,140.188058,I,Above,Hip,0,5701,Wood,40.96921821,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5214,NJBF000070747,,Atlantic City,NJ,39.36828563,-74.43936468,RES1,3001,,NaN,NE,1969,0,3102,2,1,2154.886193,2154.886193,3505,NO,22.32,35.35,3,-0.89,6106,114.314587,123.957025,133.737907,140.028608,I,Above,Gable,0,5701,Wood,28.83220222,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5215,NJBF000071103,818 N DR MARTIN LUTHER K,Atlantic City,NJ,39.3694283,-74.43817044,RES1,3001,,17,NE,1900,1900,3102,2,1,1402.111126,1402.111126,3505,NO,37.95,50.94,3,7.6,6106,114.327021,123.966766,133.749453,140.031066,I,Above,Flat,0,5701,Wood,44.4473833,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5216,NJBF000071036,433 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36920769,-74.4309037,RES1,3001,,45,NE,2007,2007,3103,2,2,2146.161231,2146.161231,3505,NO,42.62,48.25,3,5.05,6106,114.485862,124.101768,133.89764,140.149898,I,Above,Hip,0,5701,Wood,45.43721179,0,0,,,,1,1,,0.03,nav,1,2007,2,, 5217,NJBF000068769,635 N HARRISBURG AVE,Atlantic City,NJ,39.3575882,-74.4620739,RES1,3001,,17,NE,1900,1900,3101,2,1,1273.532722,1273.532722,3505,NO,28.55,39.91,3,-1.86,6106,113.948538,123.659227,133.406035,139.821801,I,Above,Flat,0,5701,Wood,34.22624747,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5218,NJBF000069298,1824 ATLANTIC AVE,Atlantic City,NJ,39.35957266,-74.4335919,COM1,3003,100,NaN,ME,1969,0,3401,1,1,9221.786406,9221.786406,3507,NO,17.1,26.32,1,0.46,6110,114.543262,124.154278,133.946737,140.244982,I,Above,Flat,0,NaN,Wood,21.70773236,0,0,,,,1,1,,1,nav,1,1969,1,, 5219,NJBF000072618,2003 MURRAY AVE,Atlantic City,NJ,39.37429558,-74.45233619,RES1,3001,,16,NE,1984,1984,3101,1,1,1136.338046,1136.338046,3505,NO,23.53,33.26,3,7.57,6106,113.964573,123.657341,133.413956,139.72651,I,Above,Flat,0,5701,Wood,28.39961028,0,0,,,,1,1,,0.03,nav,1,1984,1,, 5220,NJBF000072011,427 N CONNECTICUT AVE,Atlantic City,NJ,39.37228015,-74.42177247,RES1,3001,,17,NE,1900,1900,3102,2,1,2771.781206,2771.781206,3505,NO,31.36,45.54,3,0.96,6106,114.645286,124.236886,134.049309,140.250384,I,Above,Hip,0,5701,Wood,38.44993519,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5221,NJBF000066744,3903 SUSSEX AVE,Atlantic City,NJ,39.35064618,-74.45779458,RES3A,3001,,16,NE,2009,2009,3301,2,1,1331.111846,1331.111846,3505,NO,20.82,27.24,3,-1.48,6106,114.128881,123.811265,133.56508,139.997538,I,Above,Hip,0,5701,Wood,24.02889015,0,0,,,,1,1,,0.03,nav,1,2009,2,, 5222,NJBF000067984,28 S BELLEVUE AVE,Atlantic City,NJ,39.35524364,-74.44200657,RES3A,3004,,17,NE,1900,1900,3301,2,1,892.6308327,892.6308327,3505,NO,37.92,44.33,3,0.4,6106,114.414833,124.047375,133.825666,140.176577,I,Above,Hip,0,5701,Wood,41.12373884,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5223,NJBF000071211,1059 MONROE AVE,Atlantic City,NJ,39.3697835,-74.441767,RES3A,3001,,17,NE,1900,1900,3301,2,1,1169.108365,1169.108365,3505,NO,33.66,46.16,3,-2.7,6106,114.245252,123.897439,133.673705,139.967969,I,Above,Gable,0,5701,Wood,39.90648198,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5224,NJBF000070429,517 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36708591,-74.43598207,RES1,3001,,33,NE,1900,1900,3101,2,1,11484.68837,11484.68837,3505,YES,27.26,40.33,3,2.77,6106,114.401634,124.031374,133.818523,140.099985,I,Above,Flat,0,5701,Wood,33.7953802,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5225,NJBF000065030,4708 VENTNOR AVE,Atlantic City,NJ,39.34595117,-74.46560753,RES3B,3001,,NaN,ME,1965,0,3301,2,1,747.4798422,747.4798422,3504,YES,28.56,33.99,-4,0,6106,114.01796,123.721603,133.464461,139.945152,I,Above,Hip,0,5701,Wood,31.27850248,0,0,,,,1,1,,0.03,nav,1,1965,2,, 5226,NJBF000071784,1417 BEACH AVE,Atlantic City,NJ,39.3716245,-74.4470075,RES1,3001,,45,NE,1900,1900,3102,1,2,1361.396068,1361.396068,3505,NO,21.25,29.27,3,3.47,6106,114.110588,123.782538,133.549183,139.855209,I,Above,Gable,0,5701,Wood,25.25883326,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5227,NJBF000068943,2503 ARCTIC AVE,Atlantic City,NJ,39.35809654,-74.44320723,RES3B,3001,,45,ME,1900,1900,3301,3,2,713.4172575,713.4172575,3505,YES,60.97,73.35,3,4.24,6106,114.353619,123.995194,133.77132,140.116566,I,Above,Hip,0,NaN,Wood,67.15955822,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5228,NJBF000070855,1500-1540 SEWELL AVE,Atlantic City,NJ,39.36865268,-74.43425853,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4875.750741,4875.750741,3505,NO,24.7,32.51,3,7.83,6106,114.420296,124.046308,133.836191,140.104704,I,Above,Flat,0,NaN,Wood,28.6050338,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5229,NJBF000070770,1500-1540 SEWELL AVE,Atlantic City,NJ,39.368375,-74.434936,RES3C,3004,,NaN,ME,1969,0,3301,1,1,5178.578645,5178.578645,3505,NO,14.48,20.71,3,2.36,6106,114.408991,124.036875,133.825604,140.097962,I,Above,Flat,0,NaN,Wood,17.59689079,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5230,NJBF000070630,601-659 KENTUCKY AVE,Atlantic City,NJ,39.36785521,-74.4348779,RES3C,3004,,NaN,ME,1969,0,3301,1,1,3217.813311,3217.813311,3505,NO,21.01,35.48,3,5.86,6106,114.416347,124.043411,133.832364,140.106389,I,Above,Flat,0,NaN,Wood,28.24159496,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5231,NJBF000065959,39 N BARTRAM AVE,Atlantic City,NJ,39.34854865,-74.46316808,RES3A,3001,,17,NE,1900,1900,3301,2,1,1500.872404,1500.872404,3505,NO,34.05,46.91,3,3.95,6106,114.037964,123.737209,133.483417,139.944053,I,Above,Hip,0,5701,Wood,40.48008183,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5232,NJBF000067420,333 N DOVER AVE,Atlantic City,NJ,39.35340835,-74.46111707,RES1,3001,,16,NE,1900,1900,3102,1,1,877.8386451,877.8386451,3505,NO,17.17,30.76,3,3.98,6106,114.02134,123.721543,133.470359,139.902169,I,Above,Flat,0,5701,Wood,23.96653711,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5233,NJBF000067455,331 N DOVER AVE,Atlantic City,NJ,39.3535464,-74.46117827,RES1,3001,,17,NE,1900,1900,3102,2,1,2006.685837,2006.685837,3505,NO,40.84,50.33,3,2.77,6106,114.018275,123.718953,133.467667,139.899053,I,Above,Gable,0,5701,Wood,45.58384186,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5234,NJBF000069287,655 N TRENTON AVE,Atlantic City,NJ,39.359527,-74.462465,RES1,3001,100,NaN,NE,1969,0,3101,1,1,1591.583785,1591.583785,3505,NO,16.59,31.02,3,0.15,6106,113.916293,123.63132,133.377141,139.785155,I,Above,Flat,0,5701,Wood,23.80677184,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5235,NJBF000071419,234 MADISON AVE,Atlantic City,NJ,39.37055167,-74.41570363,RES3D,3004,,39,E,1900,1900,3303,2,1,1871.840284,1871.840284,3505,NO,36.51,42.39,3,6.28,6106,114.794414,124.366286,134.190964,140.36904,I,Above,Hip,0,NaN,Wood,39.45390062,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5236,NJBF000068592,1 VICTORIA PL,Atlantic City,NJ,39.35719689,-74.44613337,RES3A,3001,,27,NE,1900,1900,3301,2,2,697.1021301,697.1021301,3505,YES,33.7,40.48,3,5.78,6106,114.301202,123.951726,133.723132,140.083816,I,Above,Gable,0,5701,Wood,37.09011964,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5237,NJBF000069439,23 S KENTUCKY AVE,Atlantic City,NJ,39.36042968,-74.42988839,COM1,3003,100,NaN,ME,1969,0,3401,3,1,2191.221956,2191.221956,3507,YES,38.92,50.62,1,1.94,6106,114.612456,124.212695,134.0117,140.290093,I,Above,Flat,0,NaN,Wood,44.76740172,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5238,NJBF000070708,337 N NORTH CAROLINA AVE,Atlantic City,NJ,39.368124,-74.42867667,RES1,3001,,27,NE,2006,2006,3103,2,2,2064.233926,2064.233926,3505,NO,27.5,40.84,3,-0.71,6106,114.546336,124.153865,133.954082,140.200423,I,Above,Gable,0,5701,Wood,34.16889796,0,0,,,,1,1,,0.03,nav,1,2006,2,, 5239,NJBF000068267,455 N HARRISBURG AVE,Atlantic City,NJ,39.35618896,-74.46094488,RES1,3001,,45,NE,1900,1900,3102,2,2,692.2289292,692.2289292,3505,NO,45.79,53.14,3,8.87,6106,113.990509,123.694659,133.443357,139.862019,I,Above,Flat,0,5701,Wood,49.46854664,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5240,NJBF000068443,3025 FAIRMOUNT AVE,Atlantic City,NJ,39.35678235,-74.45069113,RES3A,3001,,45,NE,1900,1900,3301,2,2,840.3588073,840.3588073,3507,YES,40.85,55.47,1,2.8,6106,114.207193,123.873602,133.637764,140.017983,I,Above,Flat,0,5701,Wood,48.15691881,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5241,NJBF000066301,31 N LACLEDE PL,Atlantic City,NJ,39.34943785,-74.46089221,RES3A,3001,100,NaN,NE,1969,0,3301,3,1,2251.603653,2251.603653,3505,YES,51.25,64.98,3,-2.99,6106,114.076472,123.768533,133.517919,139.966739,I,Above,Hip,0,5701,Wood,58.11278215,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5242,NJBF000069309,114 S NEW YORK AVE,Atlantic City,NJ,39.35961609,-74.42831133,COM1,3003,100,NaN,ME,1969,0,3401,2,1,11990.74454,11990.74454,3507,YES,28.51,34.78,1,0.48,6106,114.656219,124.250024,134.051921,140.325717,I,Above,Flat,0,NaN,Wood,31.64813415,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5243,NJBF000070056,36 N MARYLAND AVE,Atlantic City,NJ,39.36563919,-74.42269024,COM1,3003,,17,ME,1910,1910,3401,2,1,2478.181191,2478.181191,3507,YES,21.26,31.97,1,-0.89,6106,114.703816,124.289426,134.101268,140.328595,I,Above,Hip,0,NaN,Wood,26.61689311,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5244,NJBF000070904,1401 CASPIAN AVE,Atlantic City,NJ,39.36880993,-74.43347664,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,4144.182833,4144.182833,3505,NO,25.35,39.06,3,2.89,6106,114.43527,124.058936,133.850198,140.114854,I,Above,Gable,0,NaN,Wood,32.20264682,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5245,NJBF000070921,1401 CASPIAN AVE,Atlantic City,NJ,39.36885454,-74.43310252,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,1792.352914,1792.352914,3505,NO,31.13,45.72,3,7.08,6106,114.44278,124.065294,133.857224,140.120139,I,Above,Gable,0,NaN,Wood,38.42689158,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5246,NJBF000070962,1401 CASPIAN AVE,Atlantic City,NJ,39.36897629,-74.43289829,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3005.735494,3005.735494,3505,NO,33.08,40.74,3,8.1,6106,114.445768,124.067767,133.860041,140.121651,I,Above,Gable,0,NaN,Wood,36.91178115,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5247,NJBF000071069,1401 CASPIAN AVE,Atlantic City,NJ,39.36929079,-74.43317684,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,2907.137816,2907.137816,3505,NO,37.42,44.68,3,5.37,6106,114.436088,124.059357,133.851049,140.112696,I,Above,Gable,0,NaN,Wood,41.0486483,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5248,NJBF000068100,2403 PACIFIC AVE,Atlantic City,NJ,39.35564157,-74.43996289,COM1,3003,100,NaN,ME,1969,0,3401,3,1,9161.492655,9161.492655,3507,YES,52.43,62.69,1,-0.75,6106,114.454133,124.080211,133.861898,140.202472,I,Above,Flat,0,NaN,Wood,57.56203656,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5249,NJBF000070061,500 N OHIO AVE,Atlantic City,NJ,39.36566325,-74.43884066,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,1760.658328,1760.658328,3505,YES,33.97,39.07,3,3.25,6106,114.356813,123.994287,133.776698,140.075248,I,Above,Flat,0,NaN,Wood,36.51722205,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5250,NJBF000070080,500 N OHIO AVE,Atlantic City,NJ,39.36572456,-74.43868811,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,3054.014088,3054.014088,3505,YES,33.58,39.64,3,6.97,6106,114.359381,123.996418,133.779084,140.076776,I,Above,Flat,0,NaN,Wood,36.60801234,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5251,NJBF000065112,39 S TALLAHASSEE AVE,Atlantic City,NJ,39.34616648,-74.46358539,RES1,3001,,18,NE,1904,1904,3102,2,1,2658.434482,2658.434482,3504,NO,36.36,42.04,-4,0,6110,114.059546,123.755613,133.501223,139.974032,I,Above,Gable,0,5701,Wood,39.19968564,0,0,,,,1,1,,0.35,nav,1,1904,2,, 5252,NJBF000067090,335 N RALEIGH AVE,Atlantic City,NJ,39.35205067,-74.46374806,RES1,3001,,17,NE,1900,1900,3102,2,1,1198.289833,1198.289833,3505,NO,46.76,53.84,3,8.21,6106,113.980704,123.688808,133.434023,139.880477,I,Above,Gable,0,5701,Wood,50.29985315,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5253,NJBF000071317,205 DYLAN DR,Atlantic City,NJ,39.37018468,-74.41479876,RES3D,3004,,28,E,1998,1998,3303,2,2,1904.333053,1904.333053,3505,NO,45.92,54.56,3,8.52,6106,114.817909,124.386724,134.213261,140.388092,I,Above,Hip,0,NaN,Wood,50.24048489,0,0,,,,1,1,,0.03,nav,1,1998,2,, 5254,NJBF000066691,2 S HARTFORD AVE,Atlantic City,NJ,39.35048277,-74.45294931,COM1,3003,,NaN,ME,1969,0,3401,1,1,10653.28721,10653.28721,3507,NO,14.18,28.14,1,2.47,6106,114.236774,123.900449,133.661472,140.076095,I,Above,Flat,0,NaN,Wood,21.1602672,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5255,NJBF000068829,225 N MORRIS AVE,Atlantic City,NJ,39.35772439,-74.45020038,RES3A,3001,,33,NE,1900,1900,3301,2,1,839.9430758,839.9430758,3507,YES,23.63,34.4,1,1.87,6106,114.206296,123.87241,133.637235,140.011732,I,Above,Gable,0,5701,Wood,29.0163431,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5256,NJBF000070049,,Atlantic City,NJ,39.36561655,-74.42534243,RES1,3001,,NaN,NE,1969,0,3102,2,1,1894.465658,1894.465658,3505,NO,22.89,37.46,3,-2.71,6106,114.64742,124.241145,134.047992,140.2878,I,Above,Flat,0,5701,Wood,30.17566086,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5257,NJBF000072327,814 N VIRGINIA AVE,Atlantic City,NJ,39.37330635,-74.42963108,RES3C,3004,,NaN,ME,1969,0,3301,1,1,6938.212914,6938.212914,3505,NO,18.74,26.48,3,6.82,6106,114.465598,124.082085,133.879254,140.111509,I,Above,Hip,0,NaN,Wood,22.61207425,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5258,NJBF000072043,814 N VIRGINIA AVE,Atlantic City,NJ,39.37239622,-74.42979645,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5328.581897,5328.581897,3505,NO,29.36,38.61,3,-2.53,6106,114.472551,124.088597,133.885716,140.121898,I,Above,Gable,0,NaN,Wood,33.98382751,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5259,NJBF000072156,814 N VIRGINIA AVE,Atlantic City,NJ,39.37273996,-74.42966828,RES3C,3004,,NaN,ME,1969,0,3301,2,1,1214.824063,1214.824063,3505,NO,33.63,46.88,3,1.95,6106,114.471323,124.087336,133.884598,140.119016,I,Above,Flat,0,NaN,Wood,40.25570144,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5260,NJBF000072150,814 N VIRGINIA AVE,Atlantic City,NJ,39.37272882,-74.42923123,RES3C,3004,,NaN,ME,1969,0,3301,2,1,6608.256405,6608.256405,3505,NO,34.68,42.35,3,5.08,6106,114.480807,124.095453,133.893537,140.126128,I,Above,Gable,0,NaN,Wood,38.51438322,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5261,NJBF000072108,814 N VIRGINIA AVE,Atlantic City,NJ,39.37260742,-74.42998483,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4562.429192,4562.429192,3505,NO,16.71,25.54,3,0.16,6106,114.466067,124.082926,133.879633,140.115871,I,Above,Gable,0,NaN,Wood,21.12490316,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5262,NJBF000069576,1104 PACIFIC AVE,Atlantic City,NJ,39.36183735,-74.42357907,COM1,3003,530,NaN,ME,1969,0,3401,2,1,7913.654988,7913.654988,3507,NO,37.58,49.26,1,-0.26,6106,114.730519,124.313014,134.123516,140.367514,I,Above,Flat,0,NaN,Wood,43.42073369,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5263,NJBF000068559,1515 BOARDWALK,Atlantic City,NJ,39.35711905,-74.42685248,COM8,3003,,NaN,,1969,0,3408,8,1,70004.73824,70004.73824,3507,NO,106.59,112.02,1,1.01,6106,114.71815,124.30294,134.107513,140.382586,I,Above,Flat,0,NaN,Wood,109.3054358,0,0,,,,2,2,,0.03,nav,1,1969,8,, 5264,NJBF000065295,2 N PLAZA PL,Atlantic City,NJ,39.34664746,-74.46547332,RES3A,3001,,18,NE,1919,1919,3301,2,1,3145.367245,3145.367245,3505,YES,40.22,49.56,3,2.32,6106,114.0119,123.716446,133.459501,139.936532,I,Above,Hip,0,5701,Wood,44.88818767,0,0,,,,1,1,,0.03,nav,1,1919,2,, 5265,NJBF000071362,721 DREXEL AVE,Atlantic City,NJ,39.370365,-74.4231455,RES1,3001,,45,NE,1900,1900,3102,2,2,1054.812655,1054.812655,3505,YES,30.71,45.55,3,6.15,6106,114.638294,124.231668,134.041865,140.255623,I,Above,Flat,0,5701,Wood,38.12915825,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5266,NJBF000071367,719 DREXEL AVE,Atlantic City,NJ,39.37038309,-74.42308174,RES1,3001,,45,NE,1900,1900,3102,2,2,830.5214309,830.5214309,3505,YES,36.07,47.02,3,-1.51,6106,114.639449,124.232653,134.042969,140.256373,I,Above,Flat,0,5701,Wood,41.54457747,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5267,NJBF000068673,207 N MORRIS AVE,Atlantic City,NJ,39.35738331,-74.44992823,RES3A,3001,,45,NE,1900,1900,3301,2,2,1772.758809,1772.758809,3507,YES,35.49,48.18,1,-0.78,6106,114.216406,123.880983,133.646281,140.021134,I,Above,Flat,0,5701,Wood,41.83249956,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5268,NJBF000069305,226 N NEVADA AVE,Atlantic City,NJ,39.3596043,-74.44503804,RES3A,3001,,27,NE,1900,1900,3301,2,2,1349.743808,1349.743808,3505,YES,29.19,37.81,3,-2.04,6106,114.2955,123.945915,133.718842,140.065705,I,Above,Flat,0,5701,Wood,33.49608215,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5269,NJBF000071523,200 MADISON AVE,Atlantic City,NJ,39.37082767,-74.41496511,RES3D,3004,,17,E,1998,1998,3303,2,1,1151.076239,1151.076239,3505,NO,28.72,35.73,3,2.31,6106,114.806854,124.376997,134.203096,140.376719,I,Above,Gable,0,NaN,Wood,32.22508977,0,0,,,,1,1,,0.03,nav,1,1998,2,, 5270,NJBF000070279,1922 BLAINE AVE,Atlantic City,NJ,39.3665345,-74.4398355,RES3B,3001,,16,ME,1900,1900,3301,1,1,848.6304221,848.6304221,3505,NO,16.48,23.93,3,-2.31,6106,114.32501,123.966943,133.747429,140.046687,I,Above,Gable,0,NaN,Wood,20.20332873,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5271,NJBF000067758,300 N ALBANY AVE,Atlantic City,NJ,39.35441759,-74.45786516,COM1,3003,,NaN,ME,1969,0,3401,1,1,25263.94879,25263.94879,3507,NO,17.92,24.19,1,0.11,6106,114.079915,123.769315,133.522773,139.939125,I,Above,Flat,0,NaN,Wood,21.05400574,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5272,NJBF000071732,609 ADRIATIC AVE,Atlantic City,NJ,39.37144266,-74.42262298,RES1,3001,,17,NE,1900,1900,3102,2,1,864.3178385,864.3178385,3505,YES,38.35,46.95,3,2.08,6106,114.636876,124.230003,134.040973,140.248732,I,Above,Hip,0,5701,Wood,42.64853354,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5273,NJBF000065662,36 N ABERDEEN PL,Atlantic City,NJ,39.3477538,-74.46449082,RES3A,3001,,45,NE,1920,1920,3301,2,2,2526.485445,2526.485445,3505,NO,27.67,42.5,3,-0.72,6106,114.019159,123.722052,133.466445,139.935133,I,Above,Hip,0,5701,Wood,35.08603975,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5274,NJBF000071660,1425 MCKINLEY AVE,Atlantic City,NJ,39.37119651,-74.43554069,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3040.342312,3040.342312,3505,NO,33.31,45.28,3,7.11,6106,114.363091,123.996125,133.783024,140.047447,I,Above,Gable,0,NaN,Wood,39.29305778,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5275,NJBF000071790,1425 MCKINLEY AVE,Atlantic City,NJ,39.37163476,-74.43532672,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3697.653601,3697.653601,3505,NO,29.55,39.8,3,4.26,6106,114.362628,123.995428,133.782587,140.04452,I,Above,Gable,0,NaN,Wood,34.6787073,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5276,NJBF000071042,19 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36921658,-74.41302416,RES3D,3004,,29,E,2003,2003,3303,2,2,912.7467899,912.7467899,3505,NO,27.83,34.03,3,4.06,6106,114.866903,124.429382,134.259605,140.428707,I,Above,Gable,0,NaN,Wood,30.93288822,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5277,NJBF000067795,336 N TRENTON AVE,Atlantic City,NJ,39.354544,-74.45898117,RES1,3001,,17,NE,1900,1900,3102,2,1,1723.55613,1723.55613,3505,NO,22.29,34.01,3,-1.51,6106,114.053928,123.747817,133.499615,139.919231,I,Above,Hip,0,5701,Wood,28.14927378,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5278,NJBF000069420,1429 PACIFIC AVE,Atlantic City,NJ,39.36025718,-74.42825956,COM1,3003,100,NaN,ME,1969,0,3401,1,1,940.3018005,940.3018005,3507,NO,11.25,22.02,1,0.17,6106,114.649496,124.244198,134.046159,140.317568,I,Above,Flat,0,NaN,Wood,16.63500139,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5279,NJBF000072405,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37353989,-74.41739818,RES3C,3001,,NaN,ME,1969,0,3301,1,1,7038.95291,7038.95291,3505,NO,11.31,26.16,3,-0.91,6106,114.723696,124.304113,134.124821,140.301458,I,Above,Hip,0,NaN,Wood,18.73347553,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5280,NJBF000069174,721 N HARRISBURG AVE,Atlantic City,NJ,39.35906748,-74.46324135,RES1,3001,,16,NE,1900,1900,3101,2,1,1699.239315,1699.239315,3505,NO,35.83,50.01,3,4.62,6106,113.904868,123.622259,133.367059,139.779441,I,Above,Gable,0,5701,Wood,42.92027108,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5281,NJBF000071674,537 DREXEL AVE,Atlantic City,NJ,39.3712427,-74.42096413,RES1,3001,,27,NE,1925,1925,3102,2,2,1015.104887,1015.104887,3505,YES,37.15,44.03,3,8.9,6106,114.674549,124.262523,134.076745,140.277528,I,Above,Flat,0,5701,Wood,40.58801161,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5282,NJBF000072873,1519 PENROSE AVE,Atlantic City,NJ,39.37534437,-74.44770975,RES1,3001,,17,NE,1925,1925,3101,2,1,883.3282482,883.3282482,3505,NO,26.91,34.13,3,-2.39,6106,114.053089,123.730434,133.49441,139.787734,I,Above,Hip,0,5701,Wood,30.52054229,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5283,NJBF000070086,924 ARCTIC AVE,Atlantic City,NJ,39.36574883,-74.42361486,COM1,3003,,45,ME,1951,1951,3401,2,4,1529.252279,1529.252279,3507,YES,33.37,40.39,1,1.02,6106,114.682756,124.27135,134.081427,140.312746,I,Above,Flat,0,NaN,Wood,36.87850456,0,0,,,,1,1,,0.03,nav,1,1951,2,, 5284,NJBF000071461,128 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3706678,-74.41489363,RES3D,3004,,17,E,1998,1998,3303,2,1,1412.644933,1412.644933,3505,NO,39.55,50.49,3,5.82,6106,114.810233,124.379963,134.206231,140.380011,I,Above,Gable,0,NaN,Wood,45.02172909,0,0,,,,1,1,,0.03,nav,1,1998,2,, 5285,NJBF000070139,46 N MARYLAND AVE,Atlantic City,NJ,39.365979,-74.42285705,COM1,3003,,17,ME,1900,1900,3401,3,1,1077.677771,1077.677771,3507,YES,46.77,52.24,1,-0.67,6106,114.696201,124.282812,134.094295,140.321291,I,Above,Flat,0,NaN,Wood,49.50400559,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5286,NJBF000072785,513 BARRETT AVE,Atlantic City,NJ,39.3749175,-74.423599,RES1,3001,,29,NE,2002,2002,3102,3,2,1894.839384,1894.839384,3505,NO,55.05,61.67,3,-2.32,6106,114.575951,124.175847,133.984039,140.184507,I,Above,Flat,0,5701,Wood,58.36130662,0,0,,,,1,1,,0.03,nav,1,2002,3,, 5287,NJBF000070767,711 N INDIANA AVE #B,Atlantic City,NJ,39.36835649,-74.43839085,RES1,3001,,17,NE,1900,1900,3102,2,1,973.6099945,973.6099945,3505,YES,42.25,51.3,3,6.6,6106,114.334782,123.974044,133.756621,140.043173,I,Above,Flat,0,5701,Wood,46.77551971,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5288,NJBF000065598,20 N ABERDEEN PL,Atlantic City,NJ,39.34755986,-74.46429968,RES3A,3001,,17,NE,1900,1900,3301,2,1,2039.849852,2039.849852,3505,NO,26.13,37.25,3,2.15,6106,114.025848,123.727595,133.47225,139.941192,I,Above,Hip,0,5701,Wood,31.68900834,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5289,NJBF000072434,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37365812,-74.41831655,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6936.185273,6936.185273,3505,NO,22.56,33.85,3,6.39,6106,114.702821,124.285994,134.104854,140.28542,I,Above,Hip,0,NaN,Wood,28.20397775,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5290,NJBF000071257,204 DYLAN DR,Atlantic City,NJ,39.36995275,-74.41461393,RES3D,3004,,27,E,1998,1998,3303,2,2,1980.842883,1980.842883,3505,NO,29.09,43.97,3,1.18,6106,114.824555,124.392531,134.219474,140.394127,I,Above,Flat,0,NaN,Wood,36.52758454,0,0,,,,1,1,,0.03,nav,1,1998,2,, 5291,NJBF000072107,1001 ABSECON BLVD,Atlantic City,NJ,39.37260603,-74.43528562,COM4,3003,,NaN,ME,1969,0,3401,1,1,1425.321495,1425.321495,3507,NO,17.18,25.32,1,2.08,6106,114.352318,123.985969,133.772909,140.03108,I,Above,Flat,0,NaN,Wood,21.25034891,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5292,NJBF000068562,227 N MONTPELIER AVE,Atlantic City,NJ,39.35713064,-74.45220747,RES3A,3001,,45,NE,1905,1905,3301,2,2,1645.490658,1645.490658,3507,YES,25.06,33.59,1,-0.7,6106,114.169864,123.842428,133.604174,139.988644,I,Above,Flat,0,5701,Wood,29.3206013,0,0,,,,1,1,,0.03,nav,1,1905,2,, 5293,NJBF000071014,1014 N OHIO AVE,Atlantic City,NJ,39.3691455,-74.441026,RES3A,3001,,17,NE,1904,1904,3301,2,1,789.1952242,789.1952242,3505,YES,33.53,39.13,3,6.62,6106,114.268674,123.91767,133.695413,139.98931,I,Above,Gable,0,5701,Wood,36.32927767,0,0,,,,1,1,,0.03,nav,1,1904,2,, 5294,NJBF000072880,1401 ABSECON BLVD,Atlantic City,NJ,39.3753979,-74.44440482,COM1,3001,,NaN,ME,1969,0,3401,1,1,7177.055839,7177.055839,3507,NO,20.04,28.58,1,1.77,6106,114.123965,123.790094,133.55977,139.841578,I,Above,Gable,0,NaN,Wood,24.3103048,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5295,NJBF000067666,315 N HARRISBURG AVE,Atlantic City,NJ,39.3541095,-74.458987,RES1,3001,,45,NE,1900,1900,3102,2,2,521.2977248,521.2977248,3505,NO,25.15,37.33,3,0.92,6106,114.059221,123.752396,133.504233,139.925796,I,Above,Gable,0,5701,Wood,31.24293967,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5296,NJBF000071682,106 MADISON AVE,Atlantic City,NJ,39.37127128,-74.41386435,RES3D,3004,,17,E,2000,2000,3303,2,1,1191.05294,1191.05294,3505,NO,37.16,42.75,3,7.8,6106,114.825004,124.392637,134.220858,140.38773,I,Above,Hip,0,NaN,Wood,39.95773796,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5297,NJBF000071640,106 MADISON AVE,Atlantic City,NJ,39.37114332,-74.41378893,RES3D,3004,,17,E,2000,2000,3303,2,1,590.0499674,590.0499674,3505,NO,28.59,40.08,3,0.83,6106,114.828089,124.395344,134.223737,140.390641,I,Above,Hip,0,NaN,Wood,34.33463496,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5298,NJBF000065578,1 S BARTRAM AVE,Atlantic City,NJ,39.3475145,-74.46226728,RES3A,3001,,NaN,NE,1969,0,3301,1,1,8456.982037,8456.982037,3505,NO,18.23,25.08,3,2.63,6106,114.071004,123.764646,133.512108,139.97428,I,Above,Flat,0,5701,Wood,21.65448592,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5299,NJBF000069830,39 N MANSION AVE,Atlantic City,NJ,39.36435597,-74.42543216,COM1,3003,29,NaN,ME,1969,0,3401,3,1,2611.516174,2611.516174,3507,YES,40.36,53.63,1,0.25,6106,114.66056,124.252725,134.059558,140.304014,I,Above,Flat,0,NaN,Wood,46.99387845,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5300,NJBF000073232,MEADOW TRACK,Atlantic City,NJ,39.379136,-74.45569199,COM1,3001,,NaN,ME,1969,0,3401,3,1,8882.001803,8882.001803,3507,NO,49.13,56.95,1,0.57,6110,113.83787,123.545149,133.293819,139.595868,I,Above,Flat,0,NaN,Wood,53.04001497,0,0,,,,1,1,,1,nav,1,1969,3,, 5301,NJBF000067929,2708 ATLANTIC AVE,Atlantic City,NJ,39.35505192,-74.44455117,RES4,3003,101,NaN,E,1969,0,3404,3,1,878.5285588,878.5285588,3507,YES,45.6,56.49,1,-0.59,6106,114.362073,124.003308,133.777431,140.139877,I,Above,Flat,0,NaN,Wood,51.04521775,0,0,,,,2,2,,0.03,nav,1,1969,3,, 5302,NJBF000071276,200 DYLAN DR,Atlantic City,NJ,39.37004118,-74.41443466,RES3D,3004,,17,E,1998,1998,3303,2,1,1167.410891,1167.410891,3505,NO,26.17,31.23,3,3.86,6106,114.827315,124.394906,134.222191,140.395694,I,Above,Flat,0,NaN,Wood,28.69872065,0,0,,,,1,1,,0.03,nav,1,1998,2,, 5303,NJBF000070873,653 GREEN ST,Atlantic City,NJ,39.36870452,-74.43625326,RES1,3001,,17,NE,1957,1957,3101,1,1,1502.461678,1502.461678,3505,NO,14.08,19.32,3,2.29,6106,114.376773,124.009363,133.79565,140.072228,I,Above,Gable,0,5701,Wood,16.70022097,0,0,,,,1,1,,0.03,nav,1,1957,1,, 5304,NJBF000065421,40 N NEWTON AVE,Atlantic City,NJ,39.34701537,-74.46695178,RES3A,3001,,45,NE,1925,1925,3301,2,3,1521.606786,1521.606786,3505,YES,33.7,42.25,3,-2.47,6106,113.974666,123.685866,133.426938,139.907,I,Above,Flat,0,5701,Wood,37.97605836,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5305,NJBF000069399,2300 FAIRMOUNT AVE,Atlantic City,NJ,39.36011412,-74.44134526,COM1,3003,643,NaN,ME,1969,0,3401,2,1,6668.064765,6668.064765,3507,YES,35.38,43.6,1,0.44,6106,114.369318,124.007545,133.786571,140.116426,I,Above,Flat,0,NaN,Wood,39.49078975,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5306,NJBF000067908,22 N MORRIS AVE,Atlantic City,NJ,39.35498515,-74.44883093,RES3B,3001,,45,ME,1900,1900,3301,2,2,1637.04646,1637.04646,3504,NO,32.1,43.38,-4,0,6106,114.269925,123.926514,133.693769,140.073994,I,Above,Flat,0,NaN,Wood,37.73754575,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5307,NJBF000065707,20 S RALEIGH AVE,Atlantic City,NJ,39.34787807,-74.46111691,RES3A,3001,,17,NE,1910,1910,3301,2,1,1774.748804,1774.748804,3505,NO,25.53,31.13,3,-2.28,6106,114.091527,123.781397,133.530473,139.986962,I,Above,Hip,0,5701,Wood,28.33100255,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5308,NJBF000067607,136 S BELLEVUE AVE,Atlantic City,NJ,39.35394854,-74.44108439,RES3A,3004,,45,NE,1900,1900,3301,3,2,1403.142318,1403.142318,3505,YES,55.44,68.23,3,-0.84,6106,114.450949,124.077927,133.857769,140.209407,I,Above,Flat,0,5701,Wood,61.83957397,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5309,NJBF000070544,44 N CONNECTICUT AVE,Atlantic City,NJ,39.36753151,-74.41921966,RES3D,3004,29,NaN,E,1969,0,3303,3,1,4168.205381,4168.205381,3505,YES,61.29,70.09,3,8.34,6106,114.755276,124.333202,134.151453,140.3561,I,Above,Flat,0,NaN,Wood,65.69333014,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5310,NJBF000068166,17 S FLORIDA AVE,Atlantic City,NJ,39.35588066,-74.4412611,COM1,3003,,45,ME,1920,1920,3401,3,3,1434.919923,1434.919923,3507,YES,58.64,71.41,1,2.11,6106,114.423084,124.054114,133.833622,140.178963,I,Above,Flat,0,NaN,Wood,65.02759435,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5311,NJBF000065820,41 S RICHMOND AVE,Atlantic City,NJ,39.34818554,-74.45939312,RES3A,3001,,45,NE,1900,1900,3301,2,4,1184.129955,1184.129955,3505,YES,32.46,44.42,3,4.14,6106,114.125313,123.809092,133.560617,140.009501,I,Above,Gable,0,5701,Wood,38.43936798,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5312,NJBF000070702,714 HOBART AVE,Atlantic City,NJ,39.36811048,-74.43930532,RES1,3001,,17,NE,2003,2003,3102,2,1,832.7109382,832.7109382,3505,NO,41.21,55.12,3,8.67,6106,114.317944,123.959978,133.741009,140.032143,I,Above,Gable,0,5701,Wood,48.16498537,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5313,NJBF000067304,320 N DOVER AVE,Atlantic City,NJ,39.35300239,-74.46137185,RES1,3001,,17,NE,1959,1959,3102,2,1,1449.817075,1449.817075,3505,NO,31.42,45.52,3,6.83,6106,114.020842,123.72133,133.469822,139.904303,I,Above,Hip,0,5701,Wood,38.47140551,0,0,,,,1,1,,0.03,nav,1,1959,2,, 5314,NJBF000069920,1531 C MORRIS CAIN PL,Atlantic City,NJ,39.36499614,-74.4326056,RES3D,3004,,27,E,1900,1900,3303,4,2,974.0142421,974.0142421,3505,NO,74.24,85.88,3,0.03,6106,114.499066,124.114992,133.908586,140.183247,I,Above,Gable,0,NaN,Wood,80.05998588,0,0,,,,1,1,,0.03,nav,1,1900,4,, 5315,NJBF000070750,2011 MCKINLEY AVE,Atlantic City,NJ,39.36829292,-74.44239443,RES3B,3001,,17,ME,1900,1900,3301,2,1,2858.117551,2858.117551,3505,YES,32.34,43.04,3,1.88,6106,114.249065,123.901765,133.677373,139.979841,I,Above,Flat,0,5701,Wood,37.69070978,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5316,NJBF000072903,1831 MADISON AVE,Atlantic City,NJ,39.37555539,-74.45267571,RES1,3001,,17,NE,1900,1900,3101,1,1,1754.14242,1754.14242,3505,NO,26.14,33.42,3,7.54,6106,113.943038,123.637837,133.393318,139.701639,I,Above,Gable,0,5701,Wood,29.78092101,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5317,NJBF000068530,2419 ATLANTIC AVE,Atlantic City,NJ,39.35702648,-74.44147222,COM1,3003,738,NaN,ME,1969,0,3401,3,1,2904.455196,2904.455196,3507,YES,39.68,46.23,1,2.86,6106,114.404368,124.038087,133.817184,140.159184,I,Above,Flat,0,NaN,Wood,42.95335989,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5318,NJBF000068510,2713 ARCTIC AVE,Atlantic City,NJ,39.35696621,-74.4461219,RES3A,3001,,45,NE,1900,1900,3301,3,2,1114.43813,1114.43813,3505,YES,50.64,62,3,5.24,6106,114.304285,123.954392,133.725837,140.08738,I,Above,Hip,0,5701,Wood,56.31993682,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5319,NJBF000067923,2615 MONTEREY AVE,Atlantic City,NJ,39.355042,-74.443529,RES3A,3004,,45,NE,1910,1910,3301,3,2,2024.007804,2024.007804,3505,YES,31.81,38.99,3,-1.88,6106,114.384362,124.021937,133.797729,140.1559,I,Above,Hip,0,5701,Wood,35.40091117,0,0,,,,1,1,,0.03,nav,1,1910,3,, 5320,NJBF000071124,904 N INDIANA AVE,Atlantic City,NJ,39.369497,-74.43968733,RES3A,3001,,27,NE,1953,1953,3301,2,2,714.9515201,714.9515201,3505,YES,36.25,45.63,3,6.59,6106,114.293495,123.938372,133.718361,140.005703,I,Above,Flat,0,5701,Wood,40.94198519,0,0,,,,1,1,,0.03,nav,1,1953,2,, 5321,NJBF000071980,1414 EMERSON AVE,Atlantic City,NJ,39.3721905,-74.4464125,RES1,3001,,17,NE,1930,1930,3102,2,1,503.9693405,503.9693405,3505,NO,33.35,40.8,3,7.57,6106,114.11699,123.787384,133.554836,139.856499,I,Above,Hip,0,5701,Wood,37.07647596,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5322,NJBF000065683,123 S RIDGEWAY AVE,Atlantic City,NJ,39.34780448,-74.45708129,RES3A,3001,,18,NE,1900,1900,3301,3,1,1963.788944,1963.788944,3504,NO,39.99,45.24,-4,0,6106,114.180777,123.854873,133.609719,140.051475,I,Above,Hip,0,5701,Wood,42.61421417,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5323,NJBF000067003,38 N TRENTON AVE,Atlantic City,NJ,39.35166361,-74.45681631,RES3A,3001,,45,NE,1900,1900,3301,2,2,1127.955802,1127.955802,3505,NO,25.23,30.77,3,-0.91,6106,114.137401,123.81793,133.573146,139.997662,I,Above,Hip,0,5701,Wood,27.99764982,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5324,NJBF000067597,305 N HARRISBURG AVE,Atlantic City,NJ,39.35392824,-74.45914818,RES1,3001,,17,NE,1937,1937,3102,2,1,879.9388344,879.9388344,3505,NO,36.73,48.3,3,0.59,6106,114.057957,123.751442,133.503062,139.925974,I,Above,Hip,0,5701,Wood,42.51275827,0,0,,,,1,1,,0.03,nav,1,1937,2,, 5325,NJBF000070316,1709 HUMMOCK AVE,Atlantic City,NJ,39.3666796,-74.4363256,RES1,3001,,33,NE,1900,1900,3101,2,1,2347.070531,2347.070531,3507,YES,30.33,42.76,1,2.98,6106,114.399016,124.029383,133.816007,140.100402,I,Above,Flat,0,5701,Wood,36.54608745,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5326,NJBF000070162,115 S SEASIDE AVE,Atlantic City,NJ,39.36605485,-74.41218778,RES3A,3001,,45,NE,1915,1915,3301,3,2,733.9370803,733.9370803,3505,YES,55.02,68.25,3,6.01,6106,114.922118,124.477549,134.309772,140.484343,I,Above,Gable,0,5701,Wood,61.63388074,0,0,,,,1,1,,0.03,nav,1,1915,3,, 5327,NJBF000070149,117 S SEASIDE AVE,Atlantic City,NJ,39.36601879,-74.41214598,RES3A,3001,,45,NE,1915,1915,3301,3,2,865.6280883,865.6280883,3505,YES,46.96,53.86,3,8.81,6106,114.923437,124.478694,134.311002,140.48547,I,Above,Flat,0,5701,Wood,50.40786359,0,0,,,,1,1,,0.03,nav,1,1915,3,, 5328,NJBF000070107,,Atlantic City,NJ,39.36586124,-74.43332215,RES1,3001,,NaN,NE,1969,0,3102,2,1,686.627895,686.627895,3505,NO,21.07,33.61,3,-1.26,6106,114.47338,124.092814,133.88497,140.159636,I,Above,Gable,0,5701,Wood,27.33851706,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5329,NJBF000068897,2911 SUNSET AVE,Atlantic City,NJ,39.3579645,-74.449949,RES3A,3001,,17,NE,1925,1925,3301,2,1,865.526968,865.526968,3507,NO,35.83,48.92,1,0.71,6106,114.208804,123.874378,133.63957,140.012129,I,Above,Gable,0,5701,Wood,42.37324738,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5330,NJBF000068505,25 N TEXAS AVE,Atlantic City,NJ,39.35695626,-74.44358512,RES3B,3001,,45,ME,1930,1930,3301,3,3,1911.933103,1911.933103,3505,YES,43.56,58.53,3,7.2,6106,114.359455,124.000497,133.776092,140.12726,I,Above,Flat,0,NaN,Wood,51.04258223,0,0,,,,1,1,,0.03,nav,1,1930,3,, 5331,NJBF000067611,365 N DOVER AVE,Atlantic City,NJ,39.35395448,-74.46155707,RES1,3001,,18,NE,1900,1900,3102,1,1,2465.055874,2465.055874,3505,NO,19.79,29.14,3,8.65,6106,114.004867,123.707716,133.455839,139.886604,I,Above,Flat,0,5701,Wood,24.46721898,0,1.1,,,,1,1,,0.03,nav,1,1900,1,, 5332,NJBF000065967,,Atlantic City,NJ,39.34857441,-74.45638692,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1145.001564,1145.001564,3504,NO,11.92,18.61,-4,0,6110,114.186065,123.859045,133.614926,140.050813,I,Above,Hip,0,5701,Wood,15.26492435,0,0,,,,1,1,,0.35,nav,1,1969,1,, 5333,NJBF000066002,,Atlantic City,NJ,39.34866295,-74.45626952,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1302.730087,1302.730087,3504,NO,30.15,36.29,-4,0,6110,114.187482,123.860192,133.616246,140.051313,I,Above,Hip,0,5701,Wood,33.21823007,0,0,,,,1,1,,0.35,nav,1,1969,2,, 5334,NJBF000067799,404 HARBOR RD,Atlantic City,NJ,39.35455951,-74.46187259,RES1,3001,,17,NE,1900,1900,3102,2,1,677.3112303,677.3112303,3505,NO,30.53,37.25,3,6.45,6106,113.99038,123.695479,133.443073,139.872084,I,Above,Flat,0,5701,Wood,33.89124594,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5335,NJBF000067490,15 N BOSTON AVE,Atlantic City,NJ,39.3536457,-74.45197625,RES3B,3001,,45,ME,1910,1910,3301,1,3,1691.289383,1691.289383,3504,NO,16.48,26.85,-4,0,6106,114.218139,123.883992,133.646415,140.044393,I,Above,Flat,0,NaN,Wood,21.66441703,0,0,,,,1,1,,0.03,nav,1,1910,1,, 5336,NJBF000066151,40 N RALEIGH AVE,Atlantic City,NJ,39.34906374,-74.46206433,RES3A,3001,,27,NE,1925,1925,3301,2,2,1691.400032,1691.400032,3505,YES,33.79,45.05,3,3.62,6106,114.055571,123.751487,133.499227,139.953781,I,Above,Flat,0,5701,Wood,39.41643992,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5337,NJBF000067226,4016 SOUTH BLVD,Atlantic City,NJ,39.35265938,-74.46047671,RES1,3001,,17,NE,2001,2001,3102,3,1,2767.860055,2767.860055,3505,NO,38.05,47.11,3,3.33,6106,114.04476,123.741168,133.490977,139.924031,I,Above,Hip,0,5701,Wood,42.58145094,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 5338,NJBF000069328,227 N NEVADA AVE,Atlantic City,NJ,39.35970042,-74.44473514,RES3A,3001,,27,NE,1923,1923,3301,2,2,1576.634413,1576.634413,3505,YES,34.57,49.52,3,3.71,6106,114.300904,123.950392,133.723806,140.069082,I,Above,Flat,0,5701,Wood,42.04794937,0,0,,,,1,1,,0.03,nav,1,1923,2,, 5339,NJBF000067172,3721 WINCHESTER AVE,Atlantic City,NJ,39.35243491,-74.45684158,RES3A,3001,,27,NE,1900,1900,3301,2,2,1059.816408,1059.816408,3505,YES,36.02,47.79,3,1.2,6106,114.127116,123.809145,133.564283,139.985598,I,Above,Flat,0,5701,Wood,41.90325912,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5340,NJBF000070897,29 N IRVING AVE,Atlantic City,NJ,39.36879,-74.4155435,RES3D,3004,,45,E,1900,1900,3303,2,2,696.5368614,696.5368614,3505,YES,30.21,36.72,3,4.09,6106,114.818543,124.387554,134.212827,140.395666,I,Above,Flat,0,NaN,Wood,33.46390844,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5341,NJBF000071043,424 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36921737,-74.43006175,RES1,3001,,17,NE,2007,2007,3103,2,1,1554.799865,1554.799865,3505,NO,34.25,43.66,3,7.72,6106,114.503816,124.117068,133.914491,140.163074,I,Above,Hip,0,5701,Wood,38.9598416,0,0,,,,1,1,,0.03,nav,1,2007,2,, 5342,NJBF000066760,27 N ANNAPOLIS AVE,Atlantic City,NJ,39.3507025,-74.459799,RES3C,3001,,NaN,E,1969,0,3303,4,1,6831.024375,6831.024375,3505,NO,76.32,86.37,3,2.56,6106,114.084322,123.774539,133.525447,139.964855,I,Above,Gable,0,NaN,Wood,81.34550504,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5343,NJBF000066618,27 N ANNAPOLIS AVE,Atlantic City,NJ,39.350258,-74.4594515,RES3C,3001,,NaN,E,1969,0,3303,4,1,6525.218467,6525.218467,3505,NO,68.77,75.63,3,1.39,6106,114.097557,123.785594,133.537017,139.977142,I,Above,Flat,0,NaN,Wood,72.19888324,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5344,NJBF000065863,44 S WINDSOR AVE,Atlantic City,NJ,39.34829702,-74.45905822,RES3A,3001,,45,NE,1900,1900,3301,2,2,1501.973905,1501.973905,3505,NO,24.47,32.13,3,3.25,6106,114.131219,123.813922,133.565927,140.013098,I,Above,Gable,0,5701,Wood,28.30434769,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5345,NJBF000065298,4401 ATLANTIC AVE,Atlantic City,NJ,39.34665608,-74.461568,RES3A,3001,,NaN,NE,1969,0,3301,1,1,3933.264819,3933.264819,3505,NO,17.52,29.92,3,5.35,6106,114.097403,123.786552,133.534968,139.998429,I,Above,Flat,0,5701,Wood,23.71717449,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5346,NJBF000067889,21 N CHELSEA AVE,Atlantic City,NJ,39.354914,-74.449215,RES3B,3001,,45,ME,1900,1900,3301,3,2,550.7379972,550.7379972,3504,YES,37.88,47.19,-4,0,6106,114.262454,123.920325,133.686977,140.069013,I,Above,Hip,0,NaN,Wood,42.53716067,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5347,NJBF000067941,27 N CHELSEA AVE,Atlantic City,NJ,39.35508925,-74.44961998,RES3B,3001,,17,ME,1920,1920,3301,2,1,1608.146134,1608.146134,3504,NO,22.64,36.74,-4,0,6106,114.251465,123.911121,133.677122,140.060059,I,Above,Hip,0,NaN,Wood,29.68794867,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5348,NJBF000067724,11 N MONTPELIER AVE,Atlantic City,NJ,39.35427888,-74.45029164,RES3B,3001,,45,ME,1900,1900,3301,3,2,1647.047914,1647.047914,3504,YES,57.22,70.65,-4,0,6106,114.246919,123.907647,133.672647,140.061484,I,Above,Flat,0,NaN,Wood,63.93698843,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5349,NJBF000069273,121 N GEORGIA AVE RR #B,Atlantic City,NJ,39.35947797,-74.44169725,RES3B,3001,,33,ME,1900,1900,3301,2,1,1706.133543,1706.133543,3505,NO,30.86,36.4,3,0.17,6106,114.369441,124.007911,133.786417,140.120145,I,Above,Gable,0,NaN,Wood,33.626869,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5350,NJBF000068998,2523 ARCTIC AVE,Atlantic City,NJ,39.3583025,-74.443892,EDU1,3003,,NaN,E,1969,0,3404,7,1,6570.280113,6570.280113,3507,NO,98.83,112.68,1,1.73,6106,114.336246,123.98057,133.755541,140.10282,I,Above,Flat,0,NaN,Wood,105.7565696,0,0,,,,2,2,,0.03,nav,1,1969,7,, 5351,NJBF000069385,131 S OCEAN AVE,Atlantic City,NJ,39.36001615,-74.42590097,COM1,3001,100,NaN,ME,1969,0,3401,2,1,1402.660764,1402.660764,3507,NO,35.5,42.09,1,1.42,6106,114.702982,124.289759,134.096041,140.3571,I,Above,Gable,0,NaN,Wood,38.7928875,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5352,NJBF000072645,555 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37438157,-74.42214805,RES1,3001,,17,NE,1930,1930,3102,2,1,2222.100915,2222.100915,3505,NO,27.99,34.36,3,-0.17,6106,114.61301,124.208076,134.019236,140.215011,I,Above,Hip,0,5701,Wood,31.17434248,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5353,NJBF000069962,406 N OHIO AVE,Atlantic City,NJ,39.36522118,-74.43842625,RES3B,3001,,15,ME,1900,2009,3301,2,1,889.8350642,889.8350642,3505,NO,35.28,41.15,3,4.1,6106,114.371019,124.006519,133.789745,140.088262,I,Above,Hip,0,NaN,Wood,38.21695877,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5354,NJBF000071006,715 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36910816,-74.43733698,RES1,3001,,17,NE,1900,1900,3101,2,1,1422.351973,1422.351973,3505,NO,23.89,37.8,3,0.86,6106,114.34871,123.985336,133.769588,140.049066,I,Above,Hip,0,5701,Wood,30.84434023,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5355,NJBF000072919,1816 N OHIO AVE,Atlantic City,NJ,39.37564888,-74.45217233,RES1,3001,,17,NE,1969,1969,3101,1,1,1266.137618,1266.137618,3505,NO,18.95,26.86,3,3.01,6106,113.952928,123.646007,133.402287,139.708668,I,Above,Gable,0,5701,Wood,22.9048096,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5356,NJBF000072239,1405 N MICHIGAN AVE,Atlantic City,NJ,39.372999,-74.4456725,RES1,3001,,17,NE,1900,1900,3102,1,1,1476.581445,1476.581445,3505,NO,14.77,23.27,3,-1.58,6106,114.123756,123.792303,133.560722,139.856546,I,Above,Gable,0,5701,Wood,19.02179119,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5357,NJBF000072322,1612 EMERSON AVE,Atlantic City,NJ,39.3732845,-74.44997862,RES1,3001,,17,NE,1955,1955,3101,2,1,1135.844792,1135.844792,3505,NO,23.66,29.42,3,-1.19,6106,114.027199,123.710911,133.471894,139.781151,I,Above,Hip,0,5701,Wood,26.53682849,0,0,,,,1,1,,0.03,nav,1,1955,2,, 5358,NJBF000072204,461 N CONNECTICUT AVE,Atlantic City,NJ,39.37289601,-74.42228516,RES1,3001,,17,NE,1900,1900,3102,2,1,1411.825741,1411.825741,3505,NO,32.82,43.98,3,1.01,6106,114.627224,124.221049,134.032329,140.233692,I,Above,Hip,0,5701,Wood,38.40011357,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5359,NJBF000069868,917 ATLANTIC AVE,Atlantic City,NJ,39.36468413,-74.4226386,COM1,3003,739,NaN,ME,1969,0,3401,1,1,34693.99254,34693.99254,3507,NO,12.4,23.83,1,1.25,6106,114.716315,124.300356,134.112401,140.342618,I,Above,Flat,0,NaN,Wood,18.11596176,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5360,NJBF000068251,453 N HARRISBURG AVE,Atlantic City,NJ,39.3561456,-74.46092707,RES1,3001,,45,NE,1920,1920,3102,2,3,569.1619873,569.1619873,3505,NO,37.73,46.29,3,7.53,6106,113.991434,123.695447,133.444178,139.862978,I,Above,Flat,0,5701,Wood,42.01087116,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5361,NJBF000071580,628 ADRIATIC AVE,Atlantic City,NJ,39.37098766,-74.42228665,RES1,3001,,33,NE,1900,1900,3102,2,1,503.2608855,503.2608855,3505,YES,38.58,43.71,3,8.82,6106,114.649337,124.240914,134.052631,140.260367,I,Above,Flat,0,5701,Wood,41.14188467,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5362,NJBF000071620,2224 GRAMMERCY AVE,Atlantic City,NJ,39.37108207,-74.4500968,RES1,3001,,17,NE,1971,1971,3102,1,1,1559.462315,1559.462315,3505,NO,17.79,25.54,3,6.32,6106,114.049792,123.732082,133.493726,139.812496,I,Above,Gable,0,5701,Wood,21.66366903,0,0,,,,1,1,,0.03,nav,1,1971,1,, 5363,NJBF000072638,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37435208,-74.42859834,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5097.979008,5097.979008,3505,NO,31.3,36.43,3,7.79,6106,114.475702,124.090062,133.888861,140.113031,I,Above,Hip,0,NaN,Wood,33.86504006,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5364,NJBF000072587,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37418401,-74.4290254,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4994.697751,4994.697751,3505,NO,39.55,46.39,3,2.76,6106,114.468491,124.083995,133.88204,140.108617,I,Above,Hip,0,NaN,Wood,42.97234504,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5365,NJBF000072664,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37444291,-74.42972066,RES3C,3004,,NaN,ME,1969,0,3301,2,1,3182.324505,3182.324505,3505,NO,34.03,41.16,3,-1.37,6106,114.450631,124.068532,133.865188,140.093791,I,Above,Gable,0,NaN,Wood,37.59158901,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5366,NJBF000072767,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37486026,-74.42894316,RES3C,3004,,NaN,ME,1969,0,3301,1,1,4315.663614,4315.663614,3505,NO,18,30.49,3,0.42,6106,114.462512,124.078425,133.876415,140.100259,I,Above,Hip,0,NaN,Wood,24.24128841,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5367,NJBF000072803,818 N MARYLAND AVE #K,Atlantic City,NJ,39.3749841,-74.42948922,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5316.254099,5316.254099,3505,NO,42.2,48.83,3,8.76,6106,114.449414,124.067121,133.864042,140.08975,I,Above,Hip,0,NaN,Wood,45.51206652,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5368,NJBF000072853,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37522353,-74.42918757,RES3D,3001,,NaN,ME,1969,0,3301,1,1,4328.041743,4328.041743,3507,NO,11.72,22.49,1,-0.3,6106,114.453116,124.070126,133.867538,140.091131,I,Above,Hip,0,NaN,Wood,17.10512865,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5369,NJBF000072889,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37547149,-74.43016946,RES3D,3001,,NaN,ME,1969,0,3301,2,1,5038.138919,5038.138919,3507,NO,40.15,51.09,1,1.86,6106,114.42931,124.049564,133.845046,140.071868,I,Above,Flat,0,NaN,Wood,45.62233025,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5370,NJBF000072918,818 N MARYLAND AVE #K,Atlantic City,NJ,39.37564085,-74.42973849,RES3D,3001,,NaN,ME,1969,0,3301,1,1,4984.13982,4984.13982,3507,NO,15.6,25.69,1,0.97,6106,114.436599,124.055683,133.851921,140.076341,I,Above,Hip,0,NaN,Wood,20.64632542,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5371,NJBF000069129,123 N FLORIDA AVE,Atlantic City,NJ,39.35888143,-74.44325079,RES3B,3001,,45,ME,1900,1900,3301,2,4,2996.535074,2996.535074,3505,NO,43.02,53.15,3,6.57,6106,114.343068,123.986047,133.76202,140.104447,I,Above,Flat,0,NaN,Wood,48.08486645,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5372,NJBF000072794,1529 N OHIO AVE,Atlantic City,NJ,39.37496339,-74.44820723,RES1,3001,,17,NE,1925,1925,3102,1,1,2284.358565,2284.358565,3505,NO,21.05,33.45,3,6.9,6106,114.046617,123.725407,133.488695,139.785222,I,Above,Gable,0,5701,Wood,27.24727015,0,0,,,,1,1,,0.03,nav,1,1925,1,, 5373,NJBF000070878,407 GRAMMERCY PL,Atlantic City,NJ,39.36872263,-74.4171314,RES3D,3004,,17,E,2006,2006,3303,2,1,1102.208102,1102.208102,3505,NO,43.22,49.1,3,7.24,6106,114.785618,124.359105,134.18126,140.372035,I,Above,Hip,0,NaN,Wood,46.16242903,0,0,,,,1,1,,0.03,nav,1,2006,2,, 5374,NJBF000064654,4600 ATLANTIC AVE,Atlantic City,NJ,39.3450057,-74.46374675,RES3A,3001,,20,NE,1920,1920,3301,3,1,3522.044492,3522.044492,3504,NO,39.58,49.83,-4,0,6106,114.071073,123.765335,133.51067,139.989221,I,Above,Hip,0,5701,Wood,44.70088277,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5375,NJBF000068291,2837 ARCTIC AVE,Atlantic City,NJ,39.35624622,-74.44795308,RES3A,3001,,45,NE,1920,1920,3301,2,2,1742.407077,1742.407077,3505,NO,37.61,49.83,3,1.09,6106,114.273388,123.928913,133.69747,140.069191,I,Above,Hip,0,5701,Wood,43.72021888,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5376,NJBF000068303,2835 ARCTIC AVE,Atlantic City,NJ,39.35627634,-74.44783005,RES3A,3001,,45,NE,1900,1900,3301,2,2,1889.92341,1889.92341,3505,NO,30.74,40.48,3,-2.97,6106,114.275691,123.930819,133.699571,140.070684,I,Above,Hip,0,5701,Wood,35.60829605,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5377,NJBF000071063,1017 N OHIO AVE,Atlantic City,NJ,39.36927159,-74.44064324,RES3A,3001,,33,NE,1900,1900,3301,2,1,6554.405837,6554.405837,3505,YES,29.3,37.59,3,1.98,6106,114.275478,123.92332,133.701695,139.993625,I,Above,Flat,0,5701,Wood,33.44152397,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5378,NJBF000067315,1 N PROVIDENCE AVE,Atlantic City,NJ,39.35304072,-74.45280693,RES3B,3001,,45,E,1920,1920,3303,3,2,1801.033537,1801.033537,3507,NO,47.11,56.08,1,2.49,6106,114.2076,123.875477,133.636656,140.040319,I,Above,Hip,0,NaN,Wood,51.59183979,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5379,NJBF000068612,129 N IOWA AVE,Atlantic City,NJ,39.35724492,-74.44691285,RES3A,3001,,17,NE,1969,1900,3301,2,1,3099.380314,3099.380314,3505,YES,41.09,46.89,3,5.2,6106,114.283669,123.937076,133.707214,140.070838,I,Above,Gable,0,5701,Wood,43.99238146,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5380,NJBF000072167,623 CASPIAN AVE,Atlantic City,NJ,39.37276458,-74.42349336,RES1,3001,,17,NE,1900,1900,3102,2,1,1448.326277,1448.326277,3505,YES,45.84,59.82,3,7.71,6106,114.602992,124.20025,134.009229,140.216497,I,Above,Gable,0,5701,Wood,52.83070141,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5381,NJBF000065781,122 JOHN A SEEDORF LN,Atlantic City,NJ,39.34807915,-74.45582887,RES1,3001,,18,NE,2006,2006,3102,3,1,2539.352141,2539.352141,3504,NO,49.38,54.74,-4,0,6106,114.204598,123.874457,133.631142,140.066886,I,Above,Hip,0,5701,Wood,52.05907858,0,0,,,,1,1,,0.03,nav,1,2006,3,, 5382,NJBF000069077,659 N ELBERON AVE,Atlantic City,NJ,39.35867598,-74.46418018,RES1,3001,,17,NE,1998,1998,3101,1,1,1102.666465,1102.666465,3505,NO,16.94,29.35,3,3.16,6106,113.889028,123.609524,133.353061,139.769928,I,Above,Gable,0,5701,Wood,23.1461572,0,0,,,,1,1,,0.03,nav,1,1998,1,, 5383,NJBF000072331,623 SEWELL AVE,Atlantic City,NJ,39.37331565,-74.42406848,RES1,3001,,45,NE,1910,1910,3102,2,2,1218.001096,1218.001096,3505,NO,24.36,29.51,3,-2.87,6106,114.584366,124.183951,133.991681,140.199664,I,Above,Gable,0,5701,Wood,26.93521037,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5384,NJBF000072808,1931 MURRAY AVE,Atlantic City,NJ,39.37501454,-74.45205494,RES1,3001,,16,NE,1900,1900,3101,1,1,1119.759296,1119.759296,3505,NO,18.24,30.56,3,7.1,6106,113.96258,123.654841,133.411605,139.720275,I,Above,Gable,0,5701,Wood,24.3956525,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5385,NJBF000068447,17 N TEXAS AVE,Atlantic City,NJ,39.35679731,-74.44341195,RES3B,3001,,45,ME,1930,1930,3301,3,3,1088.330721,1088.330721,3505,YES,46.7,53.19,3,-1.68,6106,114.365165,124.005331,133.781222,140.132272,I,Above,Hip,0,NaN,Wood,49.94737087,0,0,,,,1,1,,0.03,nav,1,1930,3,, 5386,NJBF000066146,4421 WINCHESTER AVE,Atlantic City,NJ,39.34904555,-74.46405289,RES3A,3001,,17,NE,1900,1900,3301,2,1,1581.573086,1581.573086,3505,NO,32.96,44.83,3,2.04,6106,114.012187,123.715892,133.460865,139.922174,I,Above,Hip,0,5701,Wood,38.89273341,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5387,NJBF000071932,426 N CONNECTICUT AVE,Atlantic City,NJ,39.37202739,-74.4224173,RES1,3001,,45,NE,1900,1900,3102,2,2,570.9471775,570.9471775,3505,NO,35.84,43.39,3,-0.55,6106,114.634479,124.227689,134.038923,140.24379,I,Above,Hip,0,5701,Wood,39.61714066,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5388,NJBF000072459,1926 N ARKANSAS AVE,Atlantic City,NJ,39.3737455,-74.4545075,RES1,3001,29,NaN,NE,1969,0,3101,2,1,4144.723252,4144.723252,3505,NO,30.42,44.14,3,6.04,6106,113.923576,123.623713,133.376986,139.698499,I,Above,Flat,0,5701,Wood,37.27706074,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5389,NJBF000070340,710 N MICHIGAN AVE,Atlantic City,NJ,39.3667563,-74.44103091,RES3B,3001,,17,ME,1900,1900,3301,2,1,1259.254228,1259.254228,3505,NO,45.59,55.29,3,8.01,6106,114.296583,123.942842,133.721202,140.024354,I,Above,Hip,0,5701,Wood,50.4426044,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5390,NJBF000068634,629 N HARRISBURG AVE,Atlantic City,NJ,39.3572867,-74.46173884,RES1,3001,,16,NE,1900,1900,3101,1,1,974.427541,974.427541,3505,NO,19.71,25.83,3,1.6,6106,113.959577,123.668511,133.415863,139.831991,I,Above,Flat,0,5701,Wood,22.76704679,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5391,NJBF000069326,201 N FLORIDA AVE,Atlantic City,NJ,39.35968872,-74.44385133,RES3A,3001,,45,NE,1900,1900,3301,2,3,1391.231778,1391.231778,3505,YES,26.1,34.94,3,2.23,6106,114.320207,123.966554,133.741435,140.083194,I,Above,Flat,0,5701,Wood,30.51718102,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5392,NJBF000068924,661 N ANNAPOLIS AVE,Atlantic City,NJ,39.35802762,-74.46600949,RES1,3001,,17,NE,1900,1900,3101,1,1,1557.628728,1557.628728,3505,NO,12.65,18.07,3,-2.99,6106,113.856779,123.583524,133.324606,139.74955,I,Above,Gable,0,5701,Wood,15.35636544,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5393,NJBF000072705,1400 ABSECON BLVD,Atlantic City,NJ,39.37460844,-74.44484672,RES1,3001,280,NaN,NE,1969,0,3102,2,1,8516.500314,8516.500314,3505,YES,27.93,38.58,3,4.39,6106,114.123339,123.790368,133.559593,139.846089,I,Above,Flat,0,5701,Wood,33.25629733,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5394,NJBF000068693,634 N DOVER AVE,Atlantic City,NJ,39.357427,-74.4651445,RES1,3001,,17,NE,1900,1900,3101,1,1,574.7179274,574.7179274,3505,NO,21.51,32.64,3,6.2,6106,113.883147,123.605592,133.348029,139.773447,I,Above,Hip,0,5701,Wood,27.07405074,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5395,NJBF000064951,4716 VENTNOR AVE,Atlantic City,NJ,39.34574316,-74.46619699,RES3B,3001,,18,ME,1906,1906,3301,2,1,1891.121839,1891.121839,3504,NO,21.91,30.53,-4,0,6106,114.007734,123.71329,133.455353,139.938955,I,Above,Gable,0,NaN,Wood,26.2181036,0,0,,,,1,1,,0.03,nav,1,1906,2,, 5396,NJBF000068889,3909 CROSSAN AVE,Atlantic City,NJ,39.3579375,-74.4631345,RES1,3001,,16,NE,1900,1900,3101,1,1,829.6865965,829.6865965,3505,NO,18.17,29.05,3,5.77,6106,113.921013,123.636346,133.381549,139.798854,I,Above,Hip,0,5701,Wood,23.60841116,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5397,NJBF000071569,808 WABASH AVE,Atlantic City,NJ,39.37094299,-74.42494617,RES1,3001,,17,NE,1994,1994,3102,1,1,1140.063015,1140.063015,3505,NO,12.8,24.7,3,0.06,6106,114.593133,124.192638,133.999271,140.219249,I,Above,Flat,0,5701,Wood,18.75422648,0,0,,,,1,1,,0.03,nav,1,1994,1,, 5398,NJBF000072377,1835 BEACH AVE,Atlantic City,NJ,39.37345127,-74.45353695,RES1,3001,,17,NE,1900,1900,3101,1,1,1477.651396,1477.651396,3505,NO,15.75,30.64,3,2.39,6106,113.94802,123.644466,133.399461,139.719282,I,Above,Flat,0,5701,Wood,23.19495756,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5399,NJBF000071677,2303 KUEHNLE AVE,Atlantic City,NJ,39.37125339,-74.45256295,RES1,3001,,17,NE,1925,1925,3101,1,1,1619.215477,1619.215477,3505,NO,17.07,27.85,3,4.6,6106,113.99424,123.68546,133.44296,139.769038,I,Above,Gable,0,5701,Wood,22.464239,0,0,,,,1,1,,0.03,nav,1,1925,1,, 5400,NJBF000071058,1902 MARMORA AVE,Atlantic City,NJ,39.3692535,-74.441258,RES3A,3001,,17,NE,1900,1900,3301,2,1,1095.711008,1095.711008,3505,NO,43.69,58.27,3,6.69,6106,114.262415,123.912312,133.68962,139.983997,I,Above,Hip,0,5701,Wood,50.97782984,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5401,NJBF000070433,112 CHESAPEAKE BAY CT,Atlantic City,NJ,39.36710342,-74.42273997,RES1,3001,,39,NE,1900,1900,3102,2,1,2129.654906,2129.654906,3505,NO,44.79,57.87,3,8.65,6106,114.685346,124.273196,134.084747,140.307482,I,Above,Hip,0,5701,Wood,51.33048536,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5402,NJBF000070684,822 LEXINGTON AVE,Atlantic City,NJ,39.36805212,-74.42379966,REL1,3004,,NaN,ME,1969,0,3401,1,1,3993.223896,3993.223896,3505,NO,22.76,31.9,3,6.82,6106,114.651498,124.243861,134.053247,140.277756,I,Above,Flat,0,NaN,Wood,27.33186775,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5403,NJBF000069613,1314 ATLANTIC AVE,Atlantic City,NJ,39.36211241,-74.42718982,COM1,3003,739,NaN,ME,1969,0,3401,3,1,14098.4595,14098.4595,3507,YES,52.15,58.69,1,0.28,6106,114.649926,124.244189,134.047983,140.308163,I,Above,Flat,0,NaN,Wood,55.42066364,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5404,NJBF000067328,3124 ATLANTIC AVE,Atlantic City,NJ,39.35309443,-74.44955045,COM1,3003,738,NaN,ME,1969,0,3401,3,1,4450.301304,4450.301304,3507,NO,44.95,55.78,1,1.94,6106,114.27789,123.933781,133.699996,140.090601,I,Above,Flat,0,NaN,Wood,50.36786102,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5405,NJBF000069289,130 N GEORGIA AVE,Atlantic City,NJ,39.35953495,-74.44258743,RES3B,3001,,33,ME,1900,1900,3301,2,1,11367.98466,11367.98466,3505,YES,36.02,42.3,3,0.87,6106,114.349474,123.991142,133.768149,140.105341,I,Above,Flat,0,NaN,Wood,39.16231333,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5406,NJBF000068061,423 N HARRISBURG AVE,Atlantic City,NJ,39.35551303,-74.46041464,RES1,3001,,27,NE,1920,1920,3102,2,2,573.603731,573.603731,3505,NO,22.96,33.71,3,-0.4,6106,114.010487,123.711502,133.461076,139.881101,I,Above,Flat,0,5701,Wood,28.33547892,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5407,NJBF000068672,,Atlantic City,NJ,39.35738088,-74.46166652,RES1,3001,,NaN,NE,1930,0,3101,1,1,569.1617813,569.1617813,3505,NO,16.51,22.12,3,-0.28,6106,113.960001,123.668799,133.416238,139.831716,I,Above,Hip,0,5701,Wood,19.31152709,0,0,,,,1,1,,0.03,nav,1,1930,1,, 5408,NJBF000067828,7 N MORRIS AVE,Atlantic City,NJ,39.35465792,-74.44804689,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,1842.996143,1842.996143,3504,NO,27.49,32.5,-4,0,6106,114.291045,123.944207,133.712725,140.091097,I,Above,Gable,0,NaN,Wood,29.99935625,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5409,NJBF000065917,116 JOHN A SEEDORF LN,Atlantic City,NJ,39.34843398,-74.45610086,RES3A,3001,,18,NE,1900,1900,3301,2,1,1924.071309,1924.071309,3504,NO,21.65,29.44,-4,0,6106,114.194106,123.865714,133.622011,140.057366,I,Above,Gable,0,5701,Wood,25.54392821,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5410,NJBF000069680,1333 ATLANTIC AVE,Atlantic City,NJ,39.36279978,-74.42773199,COM1,3003,,NaN,ME,1969,0,3401,1,1,9784.394468,9784.394468,3507,NO,13.65,22.12,1,-0.04,6106,114.630009,124.22706,134.029799,140.290175,I,Above,Flat,0,NaN,Wood,17.8881733,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5411,NJBF000069673,1333 ATLANTIC AVE,Atlantic City,NJ,39.36274955,-74.42784644,COM1,3003,,NaN,ME,1969,0,3401,1,1,4339.177609,4339.177609,3507,NO,17.47,24.97,1,-0.09,6106,114.628168,124.225505,134.028039,140.289112,I,Above,Flat,0,NaN,Wood,21.22013424,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5412,NJBF000067413,3500 WINCHESTER AVE,Atlantic City,NJ,39.35339434,-74.45370632,RES3B,3001,,45,E,1969,1920,3303,4,3,1892.577622,1892.577622,3507,NO,41.55,51.74,1,-0.64,6106,114.183566,123.855439,133.615227,140.020865,I,Above,Hip,0,NaN,Wood,46.64696545,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5413,NJBF000069964,18 BROOKLYN AVE,Atlantic City,NJ,39.36522557,-74.43251116,RES3D,3004,,33,E,1900,1900,3303,2,1,2635.588442,2635.588442,3505,YES,44.99,58.2,3,7.55,6106,114.498368,124.114302,133.908029,140.181455,I,Above,Flat,0,NaN,Wood,51.59570877,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5414,NJBF000070501,607 N INDIANA AVE,Atlantic City,NJ,39.367375,-74.437745,RES1,3001,,45,NE,1918,1918,3102,3,3,1654.202881,1654.202881,3505,NO,35.46,41.86,3,-1.46,6106,114.360233,123.996175,133.780132,140.067771,I,Above,Hip,0,5701,Wood,38.65809507,0,0,,,,1,1,,0.03,nav,1,1918,3,, 5415,NJBF000067263,4318 PORTER AVE,Atlantic City,NJ,39.35281775,-74.46412177,RES1,3001,,NaN,NE,1969,0,3102,2,1,1567.114374,1567.114374,3505,NO,32.39,37.9,3,5.53,6106,113.962841,123.673773,133.418387,139.862437,I,Above,Gable,0,5701,Wood,35.14692327,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5416,NJBF000068220,444 WISTERIA RD,Atlantic City,NJ,39.3560385,-74.4606215,RES1,3001,,27,NE,1920,1920,3102,2,2,1281.585185,1281.585185,3505,NO,28.84,34.63,3,4.53,6106,113.999452,123.702113,133.451306,139.869626,I,Above,Flat,0,5701,Wood,31.73306414,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5417,NJBF000068205,445 N HARRISBURG AVE,Atlantic City,NJ,39.35600256,-74.46079672,RES1,3001,,45,NE,1900,1900,3102,2,2,1398.67584,1398.67584,3505,NO,33.08,40.49,3,3.16,6106,113.996051,123.699332,133.448275,139.867311,I,Above,Flat,0,5701,Wood,36.78573312,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5418,NJBF000070318,1716 LOGAN AVE,Atlantic City,NJ,39.36669113,-74.43685636,RES1,3001,,17,NE,2005,2005,3101,2,1,943.6729174,943.6729174,3507,NO,28.88,39.98,1,-0.65,6106,114.387464,124.019603,133.805285,140.091835,I,Above,Gable,0,5701,Wood,34.43093189,0,0,,,,1,1,,0.03,nav,1,2005,2,, 5419,NJBF000071492,515 MELROSE AVE,Atlantic City,NJ,39.37076267,-74.42019738,RES1,3001,,17,NE,1900,1900,3102,2,1,1090.793975,1090.793975,3505,NO,33.76,39.25,3,5.12,6106,114.696477,124.2816,134.097411,140.296198,I,Above,Gable,0,5701,Wood,36.5040848,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5420,NJBF000068271,22 S GEORGIA AVE,Atlantic City,NJ,39.35619987,-74.44037389,COM1,3003,,45,ME,1920,1920,3401,3,3,1822.016146,1822.016146,3507,YES,41.98,48.78,1,0.34,6106,114.438331,124.06681,133.847788,140.188118,I,Above,Hip,0,NaN,Wood,45.38043813,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5421,NJBF000067285,9 N HARTFORD AVE,Atlantic City,NJ,39.35291067,-74.45411842,RES3B,3001,,17,E,1900,1900,3303,2,1,1411.352971,1411.352971,3507,NO,30.38,37.16,1,0.02,6106,114.180631,123.853193,133.612384,140.021589,I,Above,Flat,0,NaN,Wood,33.77145743,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5422,NJBF000069345,239 N TEXAS AVE,Atlantic City,NJ,39.359775,-74.445459,RES3A,3001,,27,NE,1923,1923,3301,2,2,824.8261072,824.8261072,3505,YES,46.6,57.56,3,8.91,6106,114.284284,123.936454,133.708665,140.056531,I,Above,Gable,0,5701,Wood,52.07794388,0,0,,,,1,1,,0.03,nav,1,1923,2,, 5423,NJBF000066672,107 N LACLEDE PL,Atlantic City,NJ,39.35042612,-74.46173712,RES3A,3001,,45,NE,1910,1910,3301,2,2,1195.745199,1195.745199,3505,NO,34.15,40.23,3,1.76,6106,114.045376,123.742615,133.490771,139.938094,I,Above,Hip,0,5701,Wood,37.19050748,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5424,NJBF000066702,109 N LACLEDE PL,Atlantic City,NJ,39.35051401,-74.46177283,RES3A,3001,,17,NE,1910,1910,3301,2,1,1056.763178,1056.763178,3505,NO,27.96,36.13,3,1.9,6106,114.043469,123.741013,133.489115,139.936163,I,Above,Flat,0,5701,Wood,32.04475331,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5425,NJBF000069018,2400 ARCTIC AVE,Atlantic City,NJ,39.35840657,-74.44172004,RES3B,3001,643,NaN,ME,1969,0,3301,2,1,1349.40935,1349.40935,3505,NO,39.63,53.86,3,3.23,6106,114.382031,124.018885,133.797461,140.135332,I,Above,Flat,0,NaN,Wood,46.74539679,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5426,NJBF000068984,2400 ARCTIC AVE,Atlantic City,NJ,39.35824732,-74.44161244,RES3B,3001,643,NaN,ME,1969,0,3301,2,1,597.212422,597.212422,3505,NO,36.93,48.6,3,-1.92,6106,114.386329,124.022548,133.801319,140.139339,I,Above,Flat,0,NaN,Wood,42.76378278,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5427,NJBF000067614,17 N SOVEREIGN AVE,Atlantic City,NJ,39.3539774,-74.45115089,RES3B,3001,,45,ME,1900,1900,3301,2,4,1194.141302,1194.141302,3504,NO,26.96,40.01,-4,0,6106,114.23198,123.895353,133.659033,140.052456,I,Above,Hip,0,NaN,Wood,33.48522984,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5428,NJBF000069011,646 N ELBERON AVE,Atlantic City,NJ,39.35838153,-74.46445148,RES1,3001,,17,NE,1900,1900,3101,1,1,1437.750583,1437.750583,3505,NO,19.79,26.2,3,7.67,6106,113.886668,123.607801,133.351016,139.770018,I,Above,Gable,0,5701,Wood,22.99676866,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5429,NJBF000067091,21 N ALBANY AVE,Atlantic City,NJ,39.35205667,-74.45510611,RES3B,3001,730,NaN,E,1969,0,3303,2,1,747.6687476,747.6687476,3507,YES,28.58,42.36,1,2.35,6106,114.169802,123.84455,133.602294,140.018791,I,Above,Flat,0,NaN,Wood,35.47415701,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5430,NJBF000067102,23 N ALBANY AVE,Atlantic City,NJ,39.352112,-74.455152,RES3B,3001,,45,E,1900,1900,3303,2,3,805.7536033,805.7536033,3507,YES,39.22,46.23,1,2.1,6106,114.168105,123.843127,133.600799,140.017239,I,Above,Flat,0,NaN,Wood,42.72625263,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5431,NJBF000070513,616 N INDIANA AVE,Atlantic City,NJ,39.36743465,-74.4382815,RES1,3001,,17,NE,1900,1900,3102,2,1,1620.906864,1620.906864,3505,YES,28.19,38.15,3,1.62,6106,114.347945,123.985752,133.768748,140.05834,I,Above,Hip,0,5701,Wood,33.16958386,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5432,NJBF000070163,419 N INDIANA AVE,Atlantic City,NJ,39.3660562,-74.4368522,RES1,3001,,NaN,NE,1969,0,3101,2,1,2254.581893,2254.581893,3507,NO,29.02,34.16,1,1.72,6106,114.395062,124.026379,133.812202,140.101097,I,Above,Flat,0,5701,Wood,31.58881271,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5433,NJBF000068741,536 N TRENTON AVE,Atlantic City,NJ,39.35752201,-74.46144945,RES1,3001,,27,NE,1900,1900,3101,2,2,1585.598678,1585.598678,3505,NO,40.03,54.38,3,8.62,6106,113.963048,123.671216,133.418946,139.833112,I,Above,Hip,0,5701,Wood,47.20529096,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5434,NJBF000070833,1829 GRANT AVE,Atlantic City,NJ,39.36857473,-74.43972632,RES1,3001,,17,NE,1954,1954,3102,2,1,1852.014627,1852.014627,3505,NO,40.3,50.2,3,3.05,6106,114.303413,123.947394,133.727566,140.018591,I,Above,Hip,0,5701,Wood,45.25060754,0,0,,,,1,1,,0.03,nav,1,1954,2,, 5435,NJBF000067935,458 N DOVER AVE,Atlantic City,NJ,39.3550781,-74.46300575,RES1,3001,,17,NE,1900,1900,3102,2,1,1363.673168,1363.673168,3505,YES,41.52,47.93,3,6.05,6106,113.959089,123.669464,133.415363,139.845515,I,Above,Hip,0,5701,Wood,44.72399261,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5436,NJBF000066180,25 N RALEIGH AVE,Atlantic City,NJ,39.34913013,-74.46158171,RES3A,3001,,45,NE,1915,1915,3301,2,2,941.1709131,941.1709131,3505,YES,32.2,38.61,3,8.18,6106,114.06529,123.759448,133.507864,139.960458,I,Above,Flat,0,5701,Wood,35.40220998,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5437,NJBF000069632,38 N KENTUCKY AVE,Atlantic City,NJ,39.36227694,-74.43159613,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2188.325484,2188.325484,3507,NO,20.59,28.42,1,1.83,6106,114.553387,124.162078,133.957853,140.237647,I,Above,Flat,0,NaN,Wood,24.50431521,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5438,NJBF000072050,1601 BEACH AVE,Atlantic City,NJ,39.37243385,-74.44989437,RES1,3001,,16,NE,1965,1965,3102,1,1,1203.445692,1203.445692,3505,NO,21.56,31.76,3,7.19,6106,114.03872,123.721453,133.48292,139.795414,I,Above,Gable,0,5701,Wood,26.65886642,0,0,,,,1,1,,0.03,nav,1,1965,1,, 5439,NJBF000071879,1601 N MISSOURI AVE,Atlantic City,NJ,39.3718965,-74.4500815,RES1,3001,,17,NE,1930,1930,3102,1,1,1489.684465,1489.684465,3505,NO,21.48,28.87,3,2.56,6106,114.040808,123.72375,133.485112,139.800452,I,Above,Flat,0,5701,Wood,25.17326242,0,0,,,,1,1,,0.03,nav,1,1930,1,, 5440,NJBF000070560,705 N OHIO AVE,Atlantic City,NJ,39.3675988,-74.43936105,RES1,3001,,33,NE,1900,1956,3102,2,1,760.9450207,760.9450207,3505,YES,37.75,42.76,3,5.72,6106,114.322733,123.964354,133.745415,140.038719,I,Above,Gable,0,5701,Wood,40.25230732,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5441,NJBF000064962,118 S BARTRAM AVE,Atlantic City,NJ,39.34579554,-74.46143803,RES3A,3001,,45,NE,1912,1912,3301,3,2,1715.530598,1715.530598,3504,NO,34.35,47.25,-4,0,6106,114.11139,123.798239,133.546798,140.013516,I,Above,Hip,0,5701,Wood,40.79804564,0,0,,,,1,1,,0.03,nav,1,1912,3,, 5442,NJBF000068764,3910 CROSSAN AVE,Atlantic City,NJ,39.357575,-74.463233,RES1,3001,,16,NE,2004,2004,3101,1,1,1182.591146,1182.591146,3505,NO,19.33,27.45,3,6.12,6106,113.923278,123.638457,133.383592,139.802863,I,Above,Gable,0,5701,Wood,23.38903779,0,0,,,,1,1,,0.03,nav,1,2004,1,, 5443,NJBF000070424,1625 WABASH AVE,Atlantic City,NJ,39.367065,-74.4355315,RES1,3001,,17,NE,1960,1960,3101,1,1,1973.498075,1973.498075,3505,NO,14.66,22.1,3,-1.91,6106,114.411595,124.039822,133.82778,140.107439,I,Above,Gable,0,5701,Wood,18.38011091,0,0,,,,1,1,,0.03,nav,1,1960,1,, 5444,NJBF000066178,51 N DELANCY PL,Atlantic City,NJ,39.34912468,-74.46250259,RES3A,3001,,45,NE,1920,1920,3301,2,3,1407.458844,1407.458844,3505,YES,35.27,40.74,3,7.28,6106,114.045169,123.742924,133.490048,139.945827,I,Above,Flat,0,5701,Wood,38.00270349,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5445,NJBF000066291,31 S DOVER AVE,Atlantic City,NJ,39.34939064,-74.45745664,RES3A,3001,,45,NE,1914,1914,3301,2,2,1533.05117,1533.05117,3504,NO,27.98,35.6,-4,0,6106,114.152239,123.830924,133.58525,140.021799,I,Above,Hip,0,5701,Wood,31.79171357,0,0,,,,1,1,,0.03,nav,1,1914,2,, 5446,NJBF000069368,240 N NEVADA AVE,Atlantic City,NJ,39.35989438,-74.44523279,RES3A,3001,,27,NE,1900,1923,3301,2,2,2949.787783,2949.787783,3505,NO,41.83,55.2,3,8.56,6106,114.28774,123.939288,133.711854,140.058356,I,Above,Gable,0,5701,Wood,48.51483249,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5447,NJBF000066413,3501 BOARDWALK,Atlantic City,NJ,39.34969016,-74.45116605,RES4,3003,,NaN,E,1969,0,3404,4,1,6626.866771,6626.866771,3507,NO,48.4,53.96,1,2.65,6106,114.285713,123.941183,133.704906,140.115471,I,Above,Flat,0,NaN,Wood,51.18253041,0,0,,,,2,2,,0.03,nav,1,1969,4,, 5448,NJBF000068306,,Atlantic City,NJ,39.35629075,-74.44709464,RES3B,3001,,NaN,ME,1900,0,3301,1,1,1201.877802,1201.877802,3504,NO,11.4,26.14,-4,0,6106,114.29148,123.943973,133.713903,140.082015,I,Above,Hip,0,NaN,Wood,18.76837204,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5449,NJBF000068282,41 N STENTON PL,Atlantic City,NJ,39.35622618,-74.44704996,RES3B,3001,,45,ME,1910,1910,3301,3,3,1087.983635,1087.983635,3504,YES,42.53,47.57,-4,0,6106,114.293261,123.945483,133.71549,140.083677,I,Above,Hip,0,NaN,Wood,45.04671466,0,0,,,,1,1,,0.03,nav,1,1910,3,, 5450,NJBF000072611,1606 MADISON AVE,Atlantic City,NJ,39.37427236,-74.44932596,RES1,3001,,17,NE,1900,1900,3102,2,1,1173.928699,1173.928699,3505,NO,39.04,46.52,3,0.47,6106,114.030167,123.712341,133.474017,139.777062,I,Above,Hip,0,5701,Wood,42.78278319,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5451,NJBF000070660,13 N RHODE ISLAND AVE,Atlantic City,NJ,39.36795417,-74.41579709,RES3D,3004,,45,E,1920,1920,3303,2,2,1258.561456,1258.561456,3505,NO,18.37,31.69,3,-2.95,6106,114.823032,124.391585,134.216469,140.403174,I,Above,Hip,0,NaN,Wood,25.03014209,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5452,NJBF000065460,4301 ATLANTIC AVE,Atlantic City,NJ,39.34714985,-74.4604987,RES3A,3001,,18,NE,1900,1900,3301,3,1,1915.769196,1915.769196,3505,YES,44.18,51.58,3,6.21,6106,114.114433,123.80042,133.550352,140.007767,I,Above,Flat,0,5701,Wood,47.88256898,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5453,NJBF000066601,46 N ANNAPOLIS AVE,Atlantic City,NJ,39.35020525,-74.45998482,RES3A,3001,,17,NE,1925,1925,3301,1,1,1009.438445,1009.438445,3505,NO,14.64,26.51,3,-0.58,6106,114.086563,123.776564,133.527224,139.969471,I,Above,Flat,0,5701,Wood,20.57398709,0,0,,,,1,1,,0.03,nav,1,1925,1,, 5454,NJBF000067686,402 N DOVER AVE,Atlantic City,NJ,39.35416893,-74.46230739,RES1,3001,,17,NE,1900,1900,3102,2,1,1045.88764,1045.88764,3505,NO,32.59,43.29,3,1.61,6106,113.985739,123.691875,133.438897,139.871067,I,Above,Flat,0,5701,Wood,37.93893798,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5455,NJBF000067682,4 N CHELSEA AVE,Atlantic City,NJ,39.35415002,-74.4495441,RES3B,3001,,45,ME,1900,1900,3301,1,3,1709.967471,1709.967471,3504,NO,11.04,17.25,-4,0,6106,114.264812,123.922561,133.688741,140.075131,I,Above,Hip,0,NaN,Wood,14.14752982,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5456,NJBF000068428,126 N MORRIS AVE,Atlantic City,NJ,39.35672345,-74.44997714,RES3A,3001,,33,NE,1925,1925,3301,2,1,1846.405438,1846.405438,3505,YES,43.85,55.52,3,8.29,6106,114.223467,123.887159,133.652453,140.03018,I,Above,Flat,0,5701,Wood,49.68526214,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5457,NJBF000071491,434 N MARYLAND AVE,Atlantic City,NJ,39.37075987,-74.42616277,RES1,3001,,27,NE,1900,1900,3102,2,2,715.3587484,715.3587484,3505,YES,41.55,47.43,3,2.96,6106,114.569263,124.172255,133.97662,140.202671,I,Above,Flat,0,5701,Wood,44.49259153,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5458,NJBF000068106,457 N ELBERON AVE,Atlantic City,NJ,39.35565203,-74.46172185,RES1,3001,,16,NE,1950,1950,3102,1,1,1200.126393,1200.126393,3505,NO,17.47,23.57,3,5.79,6106,113.980124,123.686427,133.434082,139.857631,I,Above,Flat,0,5701,Wood,20.51911739,0,0,,,,1,1,,0.03,nav,1,1950,1,, 5459,NJBF000068789,206 N BRIGHTON AVE,Atlantic City,NJ,39.35762555,-74.44934586,RES3A,3001,,33,NE,1900,1910,3301,2,1,3948.57381,3948.57381,3507,YES,36.47,43.73,1,2.07,6106,114.226086,123.888924,133.655118,140.026752,I,Above,Flat,0,5701,Wood,40.09965559,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5460,NJBF000070605,307 ATLANTIC AVE,Atlantic City,NJ,39.36776679,-74.41485588,RES3D,3004,29,NaN,E,1969,0,3303,3,1,2822.816608,2822.816608,3505,YES,38.3,44.54,3,4.14,6106,114.845213,124.410798,134.237562,140.420222,I,Above,Flat,0,NaN,Wood,41.4192738,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5461,NJBF000068910,28 N GEORGIA AVE,Atlantic City,NJ,39.3579995,-74.4415165,RES3B,3001,,45,ME,1900,1900,3301,4,3,605.2974119,605.2974119,3505,YES,56.25,67.51,3,1.9,6106,114.391428,124.026912,133.805863,140.144414,I,Above,Flat,0,NaN,Wood,61.87996795,0,0,,,,1,1,,0.03,nav,1,1900,4,, 5462,NJBF000068927,30 N GEORGIA AVE,Atlantic City,NJ,39.35804284,-74.44159031,RES3B,3001,,45,ME,1900,1900,3301,3,4,1245.350998,1245.350998,3505,YES,44.12,50.97,3,-1.45,6106,114.389307,124.025118,133.803944,140.142638,I,Above,Flat,0,NaN,Wood,47.54156265,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5463,NJBF000072437,1511 N MICHIGAN AVE,Atlantic City,NJ,39.3736616,-74.44797169,RES1,3001,,17,NE,1900,1900,3102,1,1,1453.502685,1453.502685,3505,NO,10.5,24.81,3,-1.29,6106,114.066425,123.743433,133.507659,139.808704,I,Above,Gable,0,5701,Wood,17.65535909,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5464,NJBF000065040,4710 VENTNOR AVE,Atlantic City,NJ,39.345979,-74.4657405,RES3B,3001,,45,ME,1900,1925,3301,2,2,1385.685802,1385.685802,3504,NO,22.67,33.83,-4,0,6106,114.014699,123.718926,133.461608,139.942608,I,Above,Gable,0,NaN,Wood,28.25038896,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5465,NJBF000071654,1505 W RIVERSIDE DR,Atlantic City,NJ,39.37118301,-74.44934585,RES1,3001,,17,NE,1900,1900,3102,2,1,1412.732719,1412.732719,3505,YES,37.99,49.23,3,8.1,6106,114.064937,123.744666,133.507526,139.823366,I,Above,Gable,0,5701,Wood,43.61217667,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5466,NJBF000066773,123 N RICHMOND AVE,Atlantic City,NJ,39.35072972,-74.46146591,RES3A,3001,,28,NE,1922,2018,3301,2,1,1366.497084,1366.497084,3505,YES,24.15,38.2,3,-2.49,6106,114.047454,123.744204,133.492729,139.937769,I,Above,Hip,0,5701,Wood,31.17199867,0,0,,,,1,1,,0.03,nav,1,1922,2,, 5467,NJBF000067447,3901 SOUTH BLVD,Atlantic City,NJ,39.35352748,-74.45944823,RES1,3001,,45,NE,1920,1920,3102,2,2,3457.673634,3457.673634,3505,YES,25.89,36.35,3,1.62,6106,114.056405,123.750355,133.501577,139.927285,I,Above,Gable,0,5701,Wood,31.12297944,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5468,NJBF000067445,139 S TEXAS AVE,Atlantic City,NJ,39.35351497,-74.44126321,RES3A,3004,,33,NE,1900,1900,3301,2,1,4490.464935,4490.464935,3505,YES,31,37.43,3,8.26,6106,114.452501,124.079314,133.858859,140.212857,I,Above,Flat,0,5701,Wood,34.21622391,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5469,NJBF000069395,253 N TEXAS AVE,Atlantic City,NJ,39.36009395,-74.44566673,RES3A,3001,,27,NE,1900,1900,3301,2,2,1520.196528,1520.196528,3505,YES,43.94,53.2,3,7.29,6106,114.275892,123.929282,133.701105,140.048536,I,Above,Gable,0,5701,Wood,48.57001345,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5470,NJBF000071263,,Atlantic City,NJ,39.3699875,-74.419572,RES3D,3004,,NaN,E,1969,0,3303,4,1,965.8658752,965.8658752,3505,NO,54.47,61.02,3,-2.13,6106,114.718846,124.301143,134.118319,140.316696,I,Above,Hip,0,NaN,Wood,57.74536451,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5471,NJBF000067509,3812 SOUTH BLVD,Atlantic City,NJ,39.35368848,-74.45836395,RES1,3001,,17,NE,1900,1900,3102,2,1,1092.959585,1092.959585,3505,YES,31.3,44.24,3,-1.28,6106,114.078114,123.768175,133.520969,139.942248,I,Above,Gable,0,5701,Wood,37.76834809,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5472,NJBF000066538,21 S HARRISBURG AVE,Atlantic City,NJ,39.35000873,-74.45648969,RES3A,3001,,45,NE,1900,1900,3301,2,2,1979.338178,1979.338178,3504,NO,31.53,38.01,-4,0,6106,114.165501,123.841677,133.597417,140.02772,I,Above,Hip,0,5701,Wood,34.7704137,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5473,NJBF000071169,1049 MONROE AVE,Atlantic City,NJ,39.36964293,-74.44166768,RES3A,3001,,17,NE,1958,1958,3301,1,1,1323.9625,1323.9625,3505,NO,19.88,34.24,3,5.51,6106,114.249018,123.900721,133.677202,139.971633,I,Above,Gable,0,5701,Wood,27.05785158,0,0,,,,1,1,,0.03,nav,1,1958,1,, 5474,NJBF000066289,42 N LACLEDE PL,Atlantic City,NJ,39.34938558,-74.4614044,RES3A,3001,,27,NE,1925,1925,3301,2,2,1237.115393,1237.115393,3505,YES,32.75,41.23,3,8.97,6106,114.065919,123.759877,133.50854,139.959376,I,Above,Flat,0,5701,Wood,36.9900733,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5475,NJBF000071977,1508 N ARKANSAS AVE,Atlantic City,NJ,39.37217716,-74.44817704,RES1,3001,,45,NE,1876,1876,3102,3,3,1576.56863,1576.56863,3505,NO,56.85,66.78,3,-0.43,6106,114.078903,123.755407,133.519863,139.827665,I,Above,Hip,0,5701,Wood,61.81457096,0,0,,,,1,1,,0.03,nav,1,1876,3,, 5476,NJBF000071285,314 MADISON AVE,Atlantic City,NJ,39.3700695,-74.4168555,RES3D,3004,,17,E,2004,2004,3303,2,1,656.1621603,656.1621603,3505,NO,20.8,32.65,3,-2.05,6106,114.775647,124.350167,134.172652,140.357815,I,Above,Gable,0,NaN,Wood,26.72554411,0,0,,,,1,1,,0.03,nav,1,2004,2,, 5477,NJBF000068321,2831 ARCTIC AVE,Atlantic City,NJ,39.35634578,-74.44771791,RES3A,3001,,45,NE,1900,1900,3301,2,2,2077.138116,2077.138116,3505,NO,33.5,43.67,3,2.64,6106,114.27726,123.932099,133.701025,140.071414,I,Above,Hip,0,5701,Wood,38.58398449,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5478,NJBF000068383,101 N BRIGHTON AVE,Atlantic City,NJ,39.35657318,-74.44788559,RES3A,3001,,16,NE,1925,1925,3301,2,1,860.3361704,860.3361704,3505,YES,25.27,34.95,3,-1.49,6106,114.270805,123.926629,133.695265,140.065422,I,Above,Flat,0,5701,Wood,30.11168053,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5479,NJBF000064916,4601 ATLANTIC AVE,Atlantic City,NJ,39.34565984,-74.46376171,RES1,3001,,20,NE,1925,1925,3102,2,1,3158.999302,3158.999302,3504,NO,38.16,43.61,-4,0,6110,114.062233,123.757941,133.503289,139.978981,I,Above,Hip,0,5701,Wood,40.88237264,0,0,,,,1,1,,0.35,nav,1,1925,2,, 5480,NJBF000071141,26 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36956011,-74.41417918,RES3D,3004,,17,E,1999,1999,3303,2,1,1297.91732,1297.91732,3505,NO,44.16,50.5,3,7.43,6106,114.838395,124.404603,134.232471,140.406217,I,Above,Flat,0,NaN,Wood,47.33077248,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 5481,NJBF000068128,440 N HARRISBURG AVE,Atlantic City,NJ,39.355738,-74.46111,RES1,3001,,27,NE,1920,1920,3102,2,2,1302.285094,1302.285094,3505,YES,31.08,40.51,3,-2.84,6106,113.992472,123.69654,133.445068,139.866299,I,Above,Flat,0,5701,Wood,35.79695788,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5482,NJBF000068015,9 N BRIGHTON AVE,Atlantic City,NJ,39.35534261,-74.44728797,RES3B,3001,,45,ME,1900,1900,3301,2,2,1649.650525,1649.650525,3504,NO,25.42,31.93,-4,0,6106,114.299028,123.950616,133.720304,140.092917,I,Above,Hip,0,NaN,Wood,28.67651783,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5483,NJBF000067994,7 N BRIGHTON AVE,Atlantic City,NJ,39.35526344,-74.44724371,RES3B,3001,,45,ME,1900,1900,3301,2,2,1275.368192,1275.368192,3504,NO,31.26,40.83,-4,0,6106,114.300977,123.952269,133.722033,140.09478,I,Above,Hip,0,NaN,Wood,36.04385659,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5484,NJBF000069263,221 N TEXAS AVE,Atlantic City,NJ,39.35942366,-74.44522848,RES3A,3001,,27,NE,1923,1923,3301,2,2,1662.270318,1662.270318,3505,YES,46.88,56.88,3,8.04,6106,114.29357,123.944385,133.717023,140.06535,I,Above,Flat,0,5701,Wood,51.88085068,0,0,,,,1,1,,0.03,nav,1,1923,2,, 5485,NJBF000071574,441 N MARYLAND AVE,Atlantic City,NJ,39.37096489,-74.42581754,RES1,3001,739,NaN,NE,1969,0,3102,1,1,2470.731524,2470.731524,3505,NO,17.79,25.98,3,1.08,6106,114.574249,124.176431,133.981401,140.205211,I,Above,Flat,0,5701,Wood,21.88647119,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5486,NJBF000072289,1406 MADISON AVE,Atlantic City,NJ,39.373177,-74.4455855,RES1,3001,,17,NE,1900,1900,3102,1,1,1318.545995,1318.545995,3505,NO,16.61,27.06,3,2.86,6106,114.123609,123.792007,133.56051,139.855314,I,Above,Gable,0,5701,Wood,21.8328198,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5487,NJBF000066984,25 N TRENTON AVE,Atlantic City,NJ,39.35158967,-74.45612507,COM3,3003,219,NaN,ME,1969,0,3401,1,1,18883.94149,18883.94149,3507,NO,14.73,26.5,1,0.38,6106,114.153436,123.831195,133.587437,140.009713,I,Above,Flat,0,NaN,Wood,20.61428443,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5488,NJBF000070519,1618 CASPIAN AVE,Atlantic City,NJ,39.36745555,-74.43557842,RES1,3001,,17,NE,1900,1900,3101,1,1,1720.406585,1720.406585,3505,NO,21.54,32.51,3,7.69,6106,114.405974,124.034843,133.822631,140.101045,I,Above,Hip,0,5701,Wood,27.02433866,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5489,NJBF000065615,15 N ABERDEEN PL,Atlantic City,NJ,39.34761683,-74.46389072,RES3A,3001,,17,NE,1900,1900,3301,2,1,1337.08965,1337.08965,3505,NO,34.33,47.32,3,6.21,6106,114.034085,123.734329,133.479546,139.946854,I,Above,Flat,0,5701,Wood,40.82295473,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5490,NJBF000072368,1424 MADISON AVE,Atlantic City,NJ,39.37342354,-74.4464622,RES1,3001,,17,NE,1900,1900,3102,2,1,985.2228071,985.2228071,3505,NO,36.39,47.57,3,1.53,6106,114.101836,123.773442,133.540343,139.837204,I,Above,Gable,0,5701,Wood,41.98019474,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5491,NJBF000069119,613 N TRENTON AVE,Atlantic City,NJ,39.3588385,-74.4618575,RES1,3001,,45,NE,1900,1900,3101,2,2,1117.798558,1117.798558,3505,NO,26.23,33.51,3,-2.63,6106,113.938007,123.6497,133.396566,139.80595,I,Above,Hip,0,5701,Wood,29.86969767,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5492,NJBF000066734,38 N DOVER AVE,Atlantic City,NJ,39.35060862,-74.45888443,RES3A,3001,,45,NE,1933,1933,3301,2,2,742.8015347,742.8015347,3505,YES,19.29,27.63,3,-1.72,6106,114.105529,123.792034,133.544267,139.980831,I,Above,Flat,0,5701,Wood,23.45988327,0,0,,,,1,1,,0.03,nav,1,1933,2,, 5493,NJBF000066642,24 N DOVER AVE,Atlantic City,NJ,39.3503369,-74.45873371,RES3A,3001,,27,NE,1925,1925,3301,2,2,1069.428717,1069.428717,3505,NO,27.68,36.17,3,4.69,6106,114.112265,123.797679,133.550136,139.987341,I,Above,Flat,0,5701,Wood,31.92595061,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5494,NJBF000068627,4010 CROSSAN AVE,Atlantic City,NJ,39.35727461,-74.46378002,RES1,3001,,17,NE,1900,1900,3101,1,1,982.409876,982.409876,3505,NO,17.87,31.45,3,0.83,6106,113.914959,123.631823,133.376232,139.798491,I,Above,Gable,0,5701,Wood,24.66165361,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5495,NJBF000068265,4300 NORTH DRIVE,Atlantic City,NJ,39.35618639,-74.46703464,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2303.301121,2303.301121,3505,NO,25.29,31.76,3,2.61,6106,113.856879,123.584908,133.324947,139.761409,I,Above,Hip,0,NaN,Wood,28.52452796,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5496,NJBF000068349,4300 NORTH DRIVE,Atlantic City,NJ,39.3564565,-74.4671005,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2341.42462,2341.42462,3505,NO,31.72,41.36,3,-1.26,6106,113.852082,123.580793,133.320687,139.756026,I,Above,Gable,0,NaN,Wood,36.53644585,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5497,NJBF000068325,600 SOUTH DRIVE,Atlantic City,NJ,39.3563669,-74.46610855,RES3C,3001,,45,ME,1952,1952,3301,2,4,3466.284715,3466.284715,3505,NO,41.68,53.43,3,2.92,6106,113.874997,123.599634,133.340927,139.774022,I,Above,Gable,0,NaN,Wood,47.55661354,0,0,,,,1,1,,0.03,nav,1,1952,2,, 5498,NJBF000068408,4300 NORTH DRIVE,Atlantic City,NJ,39.3566535,-74.4667975,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2326.707999,2326.707999,3505,NO,40.7,48.16,3,3.51,6106,113.856336,123.584142,133.324418,139.758007,I,Above,Gable,0,NaN,Wood,44.4288484,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5499,NJBF000068600,4300 NORTH DRIVE,Atlantic City,NJ,39.35720946,-74.46690688,RES3C,3001,,NaN,ME,1952,0,3301,2,1,2866.747094,2866.747094,3505,NO,28.95,36.57,3,1.1,6106,113.847087,123.576172,133.316178,139.747409,I,Above,Hip,0,NaN,Wood,32.75657756,0,0,,,,1,1,,0.03,nav,1,1952,2,, 5500,NJBF000068233,597 N RALEIGH AVE,Atlantic City,NJ,39.35608704,-74.46651562,RES3C,3001,,45,ME,1900,1900,3301,2,4,3483.803298,3483.803298,3505,NO,29.18,41.81,3,2.95,6106,113.869512,123.595325,133.336104,139.771642,I,Above,Flat,0,NaN,Wood,35.49513136,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5501,NJBF000067527,148 S BELLEVUE AVE,Atlantic City,NJ,39.35373319,-74.44093454,RES3A,3004,,45,NE,1900,1900,3301,3,2,1155.156094,1155.156094,3505,YES,43,52.47,3,1.46,6106,114.456874,124.082933,133.863022,140.214786,I,Above,Flat,0,5701,Wood,47.73593477,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5502,NJBF000068859,2310 RUFFU TERR,Atlantic City,NJ,39.35781689,-74.44005095,COM1,3003,,27,ME,1920,1920,3401,2,2,1139.806165,1139.806165,3507,NO,41.71,47.03,1,2.76,6106,114.425384,124.055467,133.836898,140.169884,I,Above,Flat,0,NaN,Wood,44.36821192,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5503,NJBF000068558,223 N MONTPELIER AVE RR,Atlantic City,NJ,39.35711296,-74.45194812,RES3A,3001,,16,NE,1900,1900,3301,2,2,1213.899969,1213.899969,3507,YES,30.2,43.44,1,2.04,6106,114.175731,123.847308,133.60946,139.993043,I,Above,Hip,0,5701,Wood,36.81869224,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5504,NJBF000068518,217 N MONTPELIER AVE,Atlantic City,NJ,39.35698395,-74.45183135,RES3A,3001,,45,NE,1900,1900,3301,2,2,915.5805679,915.5805679,3507,YES,37.23,43.95,1,1.3,6106,114.179869,123.850807,133.613157,139.996841,I,Above,Gable,0,5701,Wood,40.58947296,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5505,NJBF000071758,605 ADRIATIC AVE,Atlantic City,NJ,39.37151984,-74.42246266,RES1,3001,,17,NE,1925,1925,3102,2,1,1103.708269,1103.708269,3505,YES,33.66,48.37,3,0.84,6106,114.63939,124.232135,134.043396,140.250165,I,Above,Hip,0,5701,Wood,41.01315831,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5506,NJBF000071206,1420 MAGELLAN AVE,Atlantic City,NJ,39.36976,-74.4341295,RES3C,3001,,17,ME,1940,1940,3301,1,1,835.7249353,835.7249353,3505,NO,20.09,30.96,3,5,6106,114.410151,124.037034,133.82688,140.090801,I,Above,Hip,0,NaN,Wood,25.52143522,0,0,,,,1,1,,0.03,nav,1,1940,1,, 5507,NJBF000069563,111 N OHIO AVE,Atlantic City,NJ,39.36165041,-74.43555853,COM1,3003,,17,ME,1900,1900,3401,2,1,1854.675118,1854.675118,3507,NO,28.72,35.83,1,-0.02,6106,114.475664,124.096496,133.885305,140.184861,I,Above,Flat,0,NaN,Wood,32.2732272,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5508,NJBF000071130,1720 MCKINLEY AVE,Atlantic City,NJ,39.36951168,-74.43878309,RES1,3001,,17,NE,1992,1992,3102,2,1,1216.378232,1216.378232,3505,NO,34.22,40.12,3,5.81,6106,114.312824,123.954699,133.736277,140.020006,I,Above,Flat,0,5701,Wood,37.17094112,0,0,,,,1,1,,0.03,nav,1,1992,2,, 5509,NJBF000072519,1526 MADISON AVE,Atlantic City,NJ,39.373981,-74.4484584,RES1,3001,,29,NE,1900,1900,3102,2,2,2440.835516,2440.835516,3505,NO,37.18,48.19,3,0.23,6106,114.052276,123.731214,133.494484,139.795855,I,Above,Gable,0,5701,Wood,42.68682351,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5510,NJBF000065840,105 S DOVER AVE,Atlantic City,NJ,39.34824083,-74.45648643,RES3A,3001,,45,NE,1900,1900,3301,3,2,2921.899968,2921.899968,3504,YES,37.94,48.11,-4,0,6106,114.188169,123.860864,133.616591,140.054237,I,Above,Gable,0,5701,Wood,43.0221264,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5511,NJBF000070568,610 N DR MARTIN LUTHER K,Atlantic City,NJ,39.367641,-74.4369615,RES1,3001,,17,NE,1900,1900,3101,2,1,1199.411361,1199.411361,3507,NO,27.72,41.28,1,2.68,6106,114.374005,124.007665,133.792948,140.076389,I,Above,Flat,0,5701,Wood,34.49664008,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5512,NJBF000067899,414 HARBOR RD,Atlantic City,NJ,39.35493782,-74.46217585,RES1,3001,,17,NE,1900,1900,3102,1,1,1611.559128,1611.559128,3505,NO,13.89,22.96,3,-2.19,6106,113.979032,123.685938,133.433045,139.861279,I,Above,Hip,0,5701,Wood,18.42879868,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5513,NJBF000071397,1652 W RIVERSIDE DR,Atlantic City,NJ,39.37046853,-74.45187483,RES1,3001,,17,NE,1900,1900,3101,2,1,2239.702136,2239.702136,3505,YES,41.59,49.53,3,5.61,6106,114.018207,123.706273,133.465201,139.792375,I,Above,Gable,0,5701,Wood,45.56028243,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5514,NJBF000069265,225 N ARIZONA AVE,Atlantic City,NJ,39.35943765,-74.44601099,RES3A,3001,,27,NE,1900,1900,3301,2,2,602.6012115,602.6012115,3505,YES,32.07,44.74,3,-1.13,6106,114.276405,123.930031,133.701381,140.052761,I,Above,Gable,0,5701,Wood,38.40972532,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5515,NJBF000065039,12 S MONTGOMERY AVE,Atlantic City,NJ,39.34597162,-74.46539726,RES3B,3001,,45,ME,1900,1900,3301,3,3,1723.603313,1723.603313,3504,YES,56.68,65.23,-4,0,6106,114.022318,123.725164,133.468307,139.948197,I,Above,Flat,0,NaN,Wood,60.95087111,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5516,NJBF000070863,644 N KENTUCKY AVE,Atlantic City,NJ,39.36868311,-74.43590489,RES1,3001,,16,NE,1900,1900,3101,2,1,1169.481718,1169.481718,3505,NO,27.25,40.28,3,0.98,6106,114.384525,124.015945,133.802861,140.078092,I,Above,Hip,0,5701,Wood,33.76623977,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5517,NJBF000067945,3 N BRIGHTON AVE,Atlantic City,NJ,39.35510798,-74.44716636,RES3B,3001,,17,ME,1910,1910,3301,2,1,1445.854932,1445.854932,3504,YES,30.7,42.86,-4,0,6106,114.304598,123.95534,133.725238,140.098275,I,Above,Hip,0,NaN,Wood,36.77774511,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5518,NJBF000071165,1812 MARMORA AVE,Atlantic City,NJ,39.36963534,-74.44020498,RES3A,3001,661,NaN,NE,1969,0,3301,1,1,3109.089448,3109.089448,3505,NO,15.73,29.38,3,-1.53,6106,114.280709,123.927471,133.706511,139.995343,I,Above,Hip,0,5701,Wood,22.55330434,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5519,NJBF000068887,1243 BOARDWALK,Atlantic City,NJ,39.35793248,-74.42342359,COM8,3003,100,NaN,ME,1969,0,3401,2,1,19739.57068,19739.57068,3507,YES,29.17,40.98,1,0.56,6106,114.781499,124.356862,134.167726,140.423507,I,Above,Flat,0,NaN,Wood,35.07588024,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5520,NJBF000070306,2020 MAGELLAN AVE,Atlantic City,NJ,39.36663318,-74.44166101,RES3B,3001,,17,ME,1900,1900,3301,2,1,844.410214,844.410214,3505,NO,24.47,38.08,3,1.68,6106,114.284413,123.932673,133.709974,140.016074,I,Above,Hip,0,5701,Wood,31.27942295,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5521,NJBF000070955,641 HOWARD AVENUE,Atlantic City,NJ,39.3689635,-74.4348405,RES1,3001,,17,NE,1900,1900,3101,1,1,1148.834539,1148.834539,3505,NO,14.49,25.46,3,3.77,6106,114.404147,124.032418,133.821177,140.090979,I,Above,Gable,0,5701,Wood,19.97498638,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5522,NJBF000071715,1630 N ALBANY AVE,Atlantic City,NJ,39.37136356,-74.47907771,RES4,3003,530,NaN,ME,1969,0,3401,2,1,11622.67212,11622.67212,3507,YES,26.55,38.44,1,-0.08,6106,113.4119,123.204994,132.922675,139.309649,I,Above,Flat,0,NaN,Wood,32.49345515,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5523,NJBF000068378,103 N BRIGTON AVE,Atlantic City,NJ,39.35656,-74.448153,RES3A,3001,,45,NE,1900,1900,3301,2,3,1485.164932,1485.164932,3505,NO,32.29,45.05,3,2.17,6106,114.26516,123.921932,133.690142,140.061408,I,Above,Flat,0,5701,Wood,38.66992005,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5524,NJBF000067896,4 N BRIGHTON AVE,Atlantic City,NJ,39.35493237,-74.44760157,RES3B,3001,29,NaN,ME,1969,0,3301,3,1,1597.496204,1597.496204,3504,YES,36.49,46.47,-4,0,6106,114.29731,123.949329,133.71854,140.094036,I,Above,Hip,0,NaN,Wood,41.48009705,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5525,NJBF000072414,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37357623,-74.41872451,RES3C,3001,,NaN,ME,1969,0,3301,1,1,9401.888816,9401.888816,3505,NO,19.74,31.92,3,7.67,6106,114.695101,124.279348,134.097422,140.280158,I,Above,Hip,0,NaN,Wood,25.82807449,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5526,NJBF000065838,39 N KINGSTON AVE,Atlantic City,NJ,39.34823734,-74.46383088,RES3A,3001,,17,NE,1920,1920,3301,2,1,856.3708076,856.3708076,3505,NO,30.5,42.2,3,-2.26,6106,114.027427,123.728671,133.473967,139.938248,I,Above,Gable,0,5701,Wood,36.34815772,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5527,NJBF000067731,328 N TRENTON AVE,Atlantic City,NJ,39.3542995,-74.459031,RES1,3001,,17,NE,1963,1963,3102,1,1,692.7590631,692.7590631,3505,NO,18.06,28.27,3,3.61,6106,114.055874,123.749544,133.501295,139.922162,I,Above,Gable,0,5701,Wood,23.16415967,0,0,,,,1,1,,0.03,nav,1,1963,1,, 5528,NJBF000067706,322 N TRENTON AVE,Atlantic City,NJ,39.354227,-74.4589835,RES1,3001,,17,NE,1900,1900,3102,2,1,638.5942819,638.5942819,3505,NO,33.27,45.48,3,-1.21,6106,114.057814,123.751178,133.503007,139.924038,I,Above,Gable,0,5701,Wood,39.37628108,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5529,NJBF000071388,1603 MCKINLEY AVE,Atlantic City,NJ,39.37044797,-74.43724572,RES1,3001,,16,NE,1900,1900,3101,1,1,1248.891986,1248.891986,3505,NO,27.34,33.8,3,8.59,6106,114.33507,123.972876,133.756925,140.031005,I,Above,Flat,0,5701,Wood,30.57113303,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5530,NJBF000070856,422 N OCEAN AVE,Atlantic City,NJ,39.36865477,-74.43181661,RES1,3001,,17,NE,1900,1900,3103,2,1,752.1835048,752.1835048,3505,YES,31.62,42.83,3,-1.34,6106,114.472748,124.090892,133.885213,140.143371,I,Above,Hip,0,5701,Wood,37.22392452,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5531,NJBF000068070,7 S TEXAS AVE,Atlantic City,NJ,39.35553283,-74.44257885,RES3A,3004,,33,NE,1900,1900,3301,4,1,1519.323441,1519.323441,3505,YES,72.25,79.34,3,2.32,6106,114.398854,124.033919,133.811255,140.163544,I,Above,Flat,0,5701,Wood,75.79468012,0,0,,,,1,1,,0.03,nav,1,1900,4,, 5532,NJBF000069491,1212 PACIFIC AVE,Atlantic City,NJ,39.36089382,-74.42532438,COM1,3003,280,NaN,ME,1969,0,3401,3,1,18823.24251,18823.24251,3507,YES,54.39,64.78,1,0.88,6106,114.704643,124.291055,134.098363,140.353789,I,Above,Flat,0,NaN,Wood,59.58621629,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5533,NJBF000069684,18 S PENNSYLVANIA AVE,Atlantic City,NJ,39.362854,-74.42408262,COM1,3003,29,NaN,ME,1969,0,3401,2,1,4887.414488,4887.414488,3507,NO,23.01,35.49,1,0.17,6106,114.707458,124.293135,134.102629,140.345711,I,Above,Flat,0,NaN,Wood,29.24676413,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5534,NJBF000072195,5 BARKENTINE CT,Atlantic City,NJ,39.37285832,-74.41738788,RES3C,3001,,35,ME,1990,1990,3301,2,1,5660.533331,5660.533331,3505,NO,31.05,44.61,3,7.78,6106,114.731804,124.311383,134.132266,140.31105,I,Above,Hip,0,NaN,Wood,37.8291259,0,0,,,,1,1,,0.03,nav,1,1990,2,, 5535,NJBF000068875,543 N TRENTON AVE,Atlantic City,NJ,39.35788351,-74.46102768,COM1,3003,,45,ME,1920,1920,3401,2,3,1370.152733,1370.152733,3507,YES,37.97,44.63,1,2.92,6106,113.967834,123.674921,133.423198,139.83442,I,Above,Flat,0,NaN,Wood,41.29589826,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5536,NJBF000072010,1414 EMERSON AVE,Atlantic City,NJ,39.37227227,-74.44649103,RES1,3001,,17,NE,1930,1930,3102,2,1,1502.648323,1502.648323,3505,NO,35.17,46.47,3,3.66,6106,114.114352,123.785089,133.552377,139.853988,I,Above,Hip,0,5701,Wood,40.82057775,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5537,NJBF000072002,1410 EMERSON AVE,Atlantic City,NJ,39.3722535,-74.446288,RES1,3001,,17,NE,1900,1900,3102,2,1,782.8815202,782.8815202,3505,YES,28.99,38,3,5.61,6106,114.118966,123.788986,133.556628,139.857607,I,Above,Hip,0,5701,Wood,33.49490708,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5538,NJBF000069325,230 N NEVADA AVE,Atlantic City,NJ,39.3596855,-74.445096,RES3A,3001,,27,NE,1900,1900,3301,2,2,1395.403867,1395.403867,3505,YES,40.15,52.62,3,2.24,6106,114.293255,123.944,133.716821,140.063597,I,Above,Gable,0,5701,Wood,46.38585054,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5539,NJBF000072855,829 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3752385,-74.4227785,RES3D,3001,,17,ME,2005,2005,3301,3,1,1135.038805,1135.038805,3507,NO,45.32,54.26,1,-0.47,6106,114.589745,124.187559,133.997249,140.192982,I,Above,Flat,0,NaN,Wood,49.78721942,0,0,,,,1,1,,0.03,nav,1,2005,3,, 5540,NJBF000070211,1110 BALTIC AVE,Atlantic City,NJ,39.36623341,-74.42650888,RES3D,3004,,33,E,1920,1920,3303,3,1,1166.281231,1166.281231,3505,YES,47.93,61.63,3,-2.21,6106,114.615125,124.213346,134.017924,140.261019,I,Above,Flat,0,NaN,Wood,54.7783392,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5541,NJBF000070503,1820 LINCOLN AVE,Atlantic City,NJ,39.36738316,-74.43899788,RES1,3001,,45,NE,1920,1920,3102,2,2,956.0100891,956.0100891,3505,NO,26.4,38.37,3,1.62,6106,114.333108,123.973251,133.755001,140.047674,I,Above,Hip,0,5701,Wood,32.38216937,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5542,NJBF000067640,10 TEXAS CT,Atlantic City,NJ,39.35404738,-74.44242926,RES3A,3004,,33,NE,1915,1915,3301,2,1,651.4084111,651.4084111,3505,YES,40.96,51.59,3,2.98,6106,114.420599,124.0525,133.830121,140.187272,I,Above,Flat,0,5701,Wood,46.27656402,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5543,NJBF000067658,6 TEXAS CT,Atlantic City,NJ,39.35409001,-74.44232211,RES3A,3004,,33,NE,1915,1915,3301,2,1,532.7862525,532.7862525,3505,YES,43.01,53.19,3,4.42,6106,114.42238,124.05398,133.831777,140.188306,I,Above,Flat,0,5701,Wood,48.10079662,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5544,NJBF000067667,4 TEXAS CT,Atlantic City,NJ,39.35411012,-74.44227385,RES3A,3004,,33,NE,1915,1915,3301,2,1,590.2976551,590.2976551,3505,YES,23.13,33.34,3,-2.81,6106,114.42317,124.054636,133.832512,140.188759,I,Above,Flat,0,5701,Wood,28.23509187,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5545,NJBF000068563,547 N ELBERON AVE,Atlantic City,NJ,39.35713153,-74.4629295,RES1,3001,,17,NE,1956,1956,3101,2,1,1068.402184,1068.402184,3505,NO,32.46,42.56,3,1.75,6106,113.935367,123.648693,133.394351,139.814779,I,Above,Gable,0,5701,Wood,37.50735938,0,0,,,,1,1,,0.03,nav,1,1956,2,, 5546,NJBF000066400,3501 BOARDWALK,Atlantic City,NJ,39.34967115,-74.45197651,RES4,3003,,NaN,E,1969,0,3404,4,1,11349.00335,11349.00335,3507,NO,78,87.15,1,1.92,6106,114.268285,123.926746,133.689233,140.103187,I,Above,Flat,0,NaN,Wood,82.57758184,0,0,,,,2,2,,0.03,nav,1,1969,4,, 5547,NJBF000070757,401 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36832087,-74.43030973,RES1,3001,,17,NE,2006,2006,3103,2,1,2003.844003,2003.844003,3505,NO,41.6,56.38,3,8.25,6106,114.50901,124.121942,133.919101,140.17193,I,Above,Hip,0,5701,Wood,48.98978086,0,0,,,,1,1,,0.03,nav,1,2006,2,, 5548,NJBF000066669,4135 WINCHESTER AVE,Atlantic City,NJ,39.35042188,-74.46123666,RES3A,3001,,45,NE,1920,1920,3301,2,2,1297.550059,1297.550059,3505,NO,34.29,46.99,3,8.09,6106,114.056383,123.751663,133.500528,139.946167,I,Above,Flat,0,5701,Wood,40.64179349,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5549,NJBF000067801,428 N DOVER AVE,Atlantic City,NJ,39.35456803,-74.46259283,RES1,3001,,16,NE,1950,1950,3102,1,1,729.3209345,729.3209345,3505,NO,19.89,34.67,3,8.12,6106,113.974493,123.682413,133.428974,139.860206,I,Above,Gable,0,5701,Wood,27.28129701,0,0,,,,1,1,,0.03,nav,1,1950,1,, 5550,NJBF000068806,633 N DOVER AVE,Atlantic City,NJ,39.35766588,-74.464541,RES1,3001,,17,NE,1988,1988,3101,1,1,1273.569067,1273.569067,3505,NO,15.72,23.81,3,2.1,6106,113.893456,123.613888,133.357131,139.779738,I,Above,Hip,0,5701,Wood,19.76496006,0,0,,,,1,1,,0.03,nav,1,1988,1,, 5551,NJBF000070973,131 N CONGRESS AVE RR,Atlantic City,NJ,39.36901515,-74.41881919,RES3D,3004,,17,E,1900,1900,3303,2,1,795.6883464,795.6883464,3505,NO,42.61,52.45,3,5.78,6106,114.746296,124.325095,134.143905,140.341857,I,Above,Gable,0,NaN,Wood,47.53110469,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5552,NJBF000073533,5209 HARBOR BEACH BLVD,Atlantic City,NJ,39.38138125,-74.40759572,RES1,3001,,17,NE,1987,1987,3103,1,1,2140.089313,2140.089313,3505,NO,17.9,28.63,3,6.79,6110,114.841338,124.4038,134.242344,140.347695,I,Above,Gable,0,5701,Wood,23.26589677,0,1.1,,,,1,1,,0.35,nav,1,1987,1,, 5553,NJBF000073849,561 LAGOON BLVD,Atlantic City,NJ,39.38355455,-74.40716362,RES1,3001,,37,NE,1985,1985,3103,2,1,5737.808653,5737.808653,3505,NO,25.2,30.3,3,-0.76,6106,114.826049,124.389437,134.228141,140.324896,I,Above,Flat,0,5701,Wood,27.75365614,0,0,,,,1,1,,0.03,nav,1,1985,2,, 5554,NJBF000073583,1 LAGOON COURT,Atlantic City,NJ,39.38177553,-74.40940042,RES1,3001,,16,NE,1975,1975,3103,2,1,1065.346222,1065.346222,3505,NO,40.17,47.95,3,7.66,6106,114.798948,124.366371,134.201002,140.31387,I,Above,Gable,0,5701,Wood,44.06128054,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 5555,NJBF000073638,,Atlantic City,NJ,39.38216378,-74.40305969,RES3C,3001,,NaN,ME,1982,0,3301,2,1,9675.87293,9675.87293,3507,NO,31.9,40.83,1,2.13,6106,114.927719,124.479732,134.327653,140.408329,I,Above,Gable,0,NaN,Wood,36.36295819,0,0,,,,1,1,,0.03,nav,1,1982,2,, 5556,NJBF000073785,38 HORIZON LANE,Atlantic City,NJ,39.3831247,-74.41129282,RES1,3001,,37,NE,1987,1987,3103,3,1,6117.856434,6117.856434,3505,YES,42.11,54.59,3,0.44,6106,114.743993,124.317467,134.14767,140.265391,I,Above,Flat,0,5701,Wood,48.34984308,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 5557,NJBF000073561,,Atlantic City,NJ,39.38162596,-74.40648389,RES1,3001,,NaN,NE,1969,0,3103,6,1,1632.980839,1632.980839,3505,NO,73.69,83.31,3,-2.58,6110,114.861948,124.421853,134.262661,140.361855,I,Above,Gable,0,5701,Wood,78.5022097,0,0,,,,1,1,,0.35,nav,1,1969,6,, 5558,NJBF000073202,35 OCEAN DRIVE WEST,Atlantic City,NJ,39.3788895,-74.4079135,RES1,3001,,19,NE,2009,2009,3103,3,1,2192.878014,2192.878014,3505,NO,44.93,51.27,3,3.58,6106,114.862835,124.423571,134.262212,140.3766,I,Above,Hip,0,5701,Wood,48.1013608,0,0,,,,1,1,,0.03,nav,1,2009,3,, 5559,NJBF000073614,5226 HARBOR BEACH BLVD,Atlantic City,NJ,39.38201845,-74.40884677,RES1,3001,,16,NE,1975,1975,3103,1,1,2259.892314,2259.892314,3505,NO,18.04,25.2,3,7.09,6106,114.80787,124.374105,134.20981,140.319291,I,Above,Gable,0,5701,Wood,21.62033831,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 5560,NJBF000073797,7 HORIZON LANE,Atlantic City,NJ,39.3832171,-74.41055276,RES1,3001,,37,NE,2001,2001,3103,3,1,5935.649833,5935.649833,3505,NO,36.48,44.04,3,-1.29,6110,114.758553,124.330202,134.161912,140.275868,I,Above,Hip,0,5701,Wood,40.2588625,0,0,,,,1,1,,0.35,nav,1,2001,3,, 5561,NJBF000073380,5104 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.38027724,-74.4033946,RES1,3001,,16,NE,1974,1974,3102,2,1,1966.913011,1966.913011,3507,NO,32.36,38.16,1,-0.25,6106,114.942006,124.492877,134.340659,140.428493,I,Above,Gable,0,5701,Wood,35.26071651,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 5562,NJBF000073540,,Atlantic City,NJ,39.38145925,-74.40694748,RES1,3001,,NaN,NE,1969,0,3103,6,1,1294.967686,1294.967686,3505,NO,122.76,129.22,3,6.15,6110,114.854101,124.415003,134.254888,140.356844,I,Above,Gable,0,5701,Wood,125.9914501,0,0,,,,1,1,,0.35,nav,1,1969,6,, 5563,NJBF000073354,22 OCEAN DRIVE WEST,Atlantic City,NJ,39.38007793,-74.40929393,RES1,3001,,21,NE,2007,2007,3103,3,1,1707.190422,1707.190422,3505,NO,58.99,64.85,3,2.34,6106,114.820306,124.385825,134.221232,140.338749,I,Above,Hip,0,5701,Wood,61.91861234,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 5564,NJBF000073238,5204 SEA SPRAY RD,Atlantic City,NJ,39.37919142,-74.40607831,RES1,3001,,16,NE,1975,1975,3102,1,1,2170.257255,2170.257255,3507,NO,17.4,29.94,1,0.12,6106,114.898014,124.454396,134.296802,140.401227,I,Above,Gable,0,5701,Wood,23.66940095,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 5565,NJBF000073082,54 OCEAN DRIVE WEST,Atlantic City,NJ,39.37738351,-74.40744369,RES1,3001,,16,NE,1975,1975,3103,2,1,2130.057918,2130.057918,3505,NO,25.55,33.54,3,-2.74,6106,114.889887,124.447752,134.287781,140.404367,I,Above,Gable,0,5701,Wood,29.54404034,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 5566,NJBF000073408,5 SANDY LANE,Atlantic City,NJ,39.38048483,-74.4060509,RES1,3001,,16,NE,1973,1973,3102,2,1,1497.331215,1497.331215,3507,NO,32.85,42.1,1,-0.18,6106,114.883913,124.441593,134.283676,140.38413,I,Above,Gable,0,5701,Wood,37.47471239,0,0,,,,1,1,,0.03,nav,1,1973,2,, 5567,NJBF000073652,,Atlantic City,NJ,39.3822725,-74.4049695,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1256.717734,1256.717734,3505,NO,18.07,33.04,3,5.66,6106,114.886466,124.443244,134.28705,140.376895,I,Above,Gable,0,5701,Wood,25.55405437,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5568,NJBF000073156,5206 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37833151,-74.40539558,RES1,3001,,17,NE,1975,1975,3102,2,1,2112.379996,2112.379996,3507,YES,23.53,33.01,1,-0.21,6106,114.922124,124.475835,134.319913,140.42348,I,Above,Gable,0,5701,Wood,28.27240259,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 5569,NJBF000073084,8037 BLACK HORSE PIKE,Atlantic City,NJ,39.37742706,-74.48857303,COM1,3003,530,NaN,ME,1969,0,3401,2,1,4896.805195,4896.805195,3507,NO,38.32,50.75,1,0.47,6106,113.135431,122.969835,132.67092,139.038974,I,Above,Gable,0,NaN,Wood,44.53731531,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5570,NJBF000073049,8037 BLACK HORSE PIKE,Atlantic City,NJ,39.37695436,-74.48926531,COM1,3003,530,NaN,ME,1969,0,3401,1,1,13620.94501,13620.94501,3507,NO,19.06,27.11,1,1.5,6106,113.125189,122.962471,132.663035,139.033748,I,Above,Flat,0,NaN,Wood,23.08476943,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5571,NJBF000073821,19 HORIZON LANE,Atlantic City,NJ,39.38337936,-74.41094343,RES1,3001,,37,NE,2000,2000,3103,2,1,4829.643911,4829.643911,3505,NO,33.37,42.67,3,8.41,6106,114.748535,124.32132,134.152156,140.267452,I,Above,Flat,0,5701,Wood,38.01750135,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 5572,NJBF000073107,50 OCEAN DRIVE WEST,Atlantic City,NJ,39.37770857,-74.40780493,RES1,3001,,16,NE,1975,1975,3103,1,1,2318.864892,2318.864892,3505,NO,15.53,28.38,3,4.48,6106,114.878574,124.437738,134.276929,140.394327,I,Above,Hip,0,5701,Wood,21.95462018,0,0,,,,1,1,,0.03,nav,1,1975,1,, 5573,NJBF000073660,,Atlantic City,NJ,39.38232678,-74.40725324,RES1,3001,,NaN,NE,1969,0,3103,5,1,1263.702922,1263.702922,3505,NO,89.19,103.78,3,4.98,6110,114.837918,124.400415,134.239365,140.340218,I,Above,Gable,0,5701,Wood,96.48377985,0,0,,,,1,1,,0.35,nav,1,1969,5,, 5574,NJBF000073325,5212 WATERVIEW DR,Atlantic City,NJ,39.37983073,-74.40759716,RES1,3001,,18,NE,1975,1975,3103,2,1,2659.394101,2659.394101,3505,NO,25.19,31.93,3,3.95,6106,114.858817,124.419732,134.25876,140.368765,I,Above,Gable,0,5701,Wood,28.56079851,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 5575,NJBF000073650,5221 HARBOR BEACH BLVD,Atlantic City,NJ,39.3822455,-74.40818037,RES1,3001,,17,NE,1987,1987,3103,1,1,1579.694145,1579.694145,3505,NO,25,35.01,3,8.05,6106,114.819341,124.384096,134.221122,140.326703,I,Above,Gable,0,5701,Wood,30.00217288,0,0,,,,1,1,,0.03,nav,1,1987,1,, 5576,NJBF000072113,2215 HAMILTON AVE,Atlantic City,NJ,39.37262727,-74.45467694,RES1,3001,,17,NE,1900,1900,3101,1,1,1849.294354,1849.294354,3505,NO,22.11,29.51,3,6.38,6106,113.932565,123.632497,133.38598,139.712771,I,Above,Gable,0,5701,Wood,25.81379389,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5577,NJBF000068287,452 WISTERIA RD,Atlantic City,NJ,39.3562345,-74.4607755,RES1,3001,,27,NE,1900,1900,3102,2,2,1307.625334,1307.625334,3505,NO,28.19,33.67,3,-2.49,6106,113.993677,123.697242,133.44618,139.8641,I,Above,Flat,0,5701,Wood,30.92893072,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5578,NJBF000070475,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.36729444,-74.43334461,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5373.504509,5373.504509,3505,NO,28.85,38.37,3,0.93,6106,114.455928,124.077301,133.869137,140.13873,I,Above,Flat,0,NaN,Wood,33.60890482,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5579,NJBF000070451,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.3671995,-74.433597,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5258.979617,5258.979617,3505,NO,30.01,35.98,3,-0.79,6106,114.45163,124.073702,133.865102,140.136113,I,Above,Flat,0,NaN,Wood,32.99738793,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5580,NJBF000070361,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.36684261,-74.43415412,RES3C,3004,,NaN,ME,1969,0,3301,2,1,6621.369832,6621.369832,3505,NO,22.31,34.37,3,-0.37,6106,114.443854,124.067286,133.857756,140.132428,I,Above,Flat,0,NaN,Wood,28.33908076,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5581,NJBF000068720,218 N MORRIS AVE,Atlantic City,NJ,39.35748411,-74.45050839,RES3A,3001,,33,NE,1900,1900,3301,3,1,6105.188503,6105.188503,3507,YES,34.16,47.55,1,1.84,6106,114.202538,123.869401,133.633768,140.010416,I,Above,Gable,0,5701,Wood,40.85238986,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5582,NJBF000066405,20 S ELBERON AVE,Atlantic City,NJ,39.34968327,-74.45740997,RES3A,3001,,45,NE,1930,1930,3301,2,4,1509.252104,1509.252104,3504,NO,21.73,26.9,-4,0,6106,114.149543,123.828614,133.583008,140.018145,I,Above,Hip,0,5701,Wood,24.3150652,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5583,NJBF000071795,1535 N MISSOURI AVE,Atlantic City,NJ,39.37165381,-74.44927567,RES1,3001,,17,NE,1984,1984,3102,1,1,1359.493541,1359.493541,3505,NO,20.34,27.95,3,8.41,6106,114.061051,123.740951,133.503753,139.817414,I,Above,Gable,0,5701,Wood,24.14246726,0,0,,,,1,1,,0.03,nav,1,1984,1,, 5584,NJBF000065028,35 S PLAZA PL,Atlantic City,NJ,39.34594258,-74.46432529,RES1,3001,,18,NE,1905,1905,3102,2,1,2828.017328,2828.017328,3504,YES,36.97,49,-4,0,6106,114.046212,123.744741,133.489334,139.965714,I,Above,Hip,0,5701,Wood,42.98312977,0,0,,,,1,1,,0.03,nav,1,1905,2,, 5585,NJBF000072158,5 SLOOP CT,Atlantic City,NJ,39.3727461,-74.41623561,RES3C,3001,,35,ME,1990,1990,3301,2,1,3642.500652,3642.500652,3505,NO,37.02,44.65,3,4.14,6106,114.757549,124.333722,134.156917,140.330591,I,Above,Hip,0,NaN,Wood,40.83410987,0,0,,,,1,1,,0.03,nav,1,1990,2,, 5586,NJBF000070520,124 N DELAWARE AVE,Atlantic City,NJ,39.36745569,-74.42225757,RES1,3001,,45,NE,1969,1900,3102,2,4,2151.313732,2151.313732,3505,YES,36.09,45.56,3,7.97,6106,114.691449,124.278332,134.090749,140.310059,I,Above,Hip,0,5701,Wood,40.82839375,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5587,NJBF000073403,1801 ABSECON BLVD,Atlantic City,NJ,39.3804743,-74.44996085,GOV1,3001,,NaN,E,1969,0,3401,1,1,6388.146448,6388.146448,3507,NO,14.73,23.34,1,-0.14,6106,113.947462,123.635309,133.392971,139.672631,I,Above,Flat,0,NaN,Wood,19.03800628,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5588,NJBF000073530,1801 ABSECON BLVD,Atlantic City,NJ,39.3813715,-74.44604299,GOV1,3001,,NaN,E,1969,0,3401,1,1,896.2180587,896.2180587,3507,NO,15.14,23.92,1,-0.22,6106,114.022292,123.697297,133.461334,139.724963,I,Above,Hip,0,NaN,Wood,19.53009118,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5589,NJBF000073516,1801 ABSECON BLVD,Atlantic City,NJ,39.38126845,-74.44669787,GOV1,3001,,NaN,E,1969,0,3401,1,1,8698.42471,8698.42471,3507,NO,16.7,26.65,1,-0.96,6106,114.009294,123.686439,133.449374,139.715542,I,Above,Flat,0,NaN,Wood,21.67418066,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5590,NJBF000073633,1801 ABSECON BLVD,Atlantic City,NJ,39.3821295,-74.4449235,GOV1,3001,,NaN,E,1969,0,3401,1,1,1265.05226,1265.05226,3507,NO,13.58,22.79,1,-0.53,6106,114.038165,123.709765,133.475396,139.732367,I,Above,Hip,0,NaN,Wood,18.1842067,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5591,NJBF000073707,1801 ABSECON BLVD,Atlantic City,NJ,39.38261698,-74.44593811,GOV1,3001,,NaN,E,1969,0,3401,1,1,9371.195442,9371.195442,3507,NO,14.2,19.26,1,-0.67,6106,114.011006,123.68612,133.449692,139.708049,I,Above,Flat,0,NaN,Wood,16.73444003,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5592,NJBF000073626,1801 ABSECON BLVD,Atlantic City,NJ,39.38209026,-74.44965522,GOV1,3001,,NaN,E,1969,0,3401,1,1,1216.05216,1216.05216,3507,NO,18.54,33.38,1,0.5,6106,113.93649,123.62386,133.381187,139.653343,I,Above,Flat,0,NaN,Wood,25.95890064,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5593,NJBF000073497,1801 ABSECON BLVD,Atlantic City,NJ,39.3811453,-74.44998288,GOV1,3001,,NaN,E,1969,0,3401,1,1,1496.948922,1496.948922,3507,NO,15.19,22.9,1,0.26,6106,113.939665,123.627836,133.385106,139.662101,I,Above,Flat,0,NaN,Wood,19.04442792,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5594,NJBF000065833,2 N DELANCY PL,Atlantic City,NJ,39.34821662,-74.46227769,RES3A,3001,,16,NE,1900,1900,3301,1,1,719.2822706,719.2822706,3505,NO,13.72,23.5,3,-0.5,6106,114.061735,123.756826,133.504276,139.963358,I,Above,Gable,0,5701,Wood,18.61275898,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5595,NJBF000066752,140 N LACLEDE PL,Atlantic City,NJ,39.35066567,-74.46259551,RES3A,3001,,17,NE,1922,1922,3301,2,1,515.0868401,515.0868401,3505,NO,29.52,34.85,3,4.9,6106,114.023497,123.724547,133.47148,139.920589,I,Above,Flat,0,5701,Wood,32.18840455,0,0,,,,1,1,,0.03,nav,1,1922,2,, 5596,NJBF000069829,220 S SEASIDE AVE,Atlantic City,NJ,39.36435403,-74.41146231,RES3A,3001,,17,NE,1900,1900,3301,3,1,1674.8249,1674.8249,3505,YES,46.75,56.48,3,-2.62,6106,114.957865,124.508531,134.342294,140.518284,I,Above,Hip,0,5701,Wood,51.61587768,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5597,NJBF000069136,2401-2439 FORMICA'S WAY,Atlantic City,NJ,39.35890367,-74.44268284,RES3B,3001,,NaN,ME,1969,0,3301,1,1,5150.057629,5150.057629,3505,NO,21.38,35.67,3,5.66,6106,114.355094,123.996113,133.773029,140.113028,I,Above,Flat,0,NaN,Wood,28.52243458,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5598,NJBF000067718,16 N MONTPELIER AVE,Atlantic City,NJ,39.35426399,-74.45082896,RES3B,3001,,17,ME,1900,1900,3301,2,1,1358.391199,1358.391199,3504,NO,29.63,43.89,-4,0,6106,114.235412,123.898096,133.662259,140.053263,I,Above,Hip,0,NaN,Wood,36.75556875,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5599,NJBF000068335,121 N CHELSEA AVE,Atlantic City,NJ,39.35640236,-74.450544,RES3A,3001,,45,NE,1950,1950,3301,2,3,2411.828441,2411.828441,3505,YES,27.93,41.53,3,1.01,6106,114.215083,123.880332,133.644766,140.025977,I,Above,Gable,0,5701,Wood,34.72701861,0,0,,,,1,1,,0.03,nav,1,1950,2,, 5600,NJBF000070800,29 N RHODE ISLAND AVE,Atlantic City,NJ,39.36847803,-74.41617183,RES3D,3004,,17,E,1900,1900,3303,2,1,1209.23189,1209.23189,3505,NO,37.48,42.94,3,8.68,6106,114.808876,124.379253,134.203328,140.39022,I,Above,Flat,0,NaN,Wood,40.21003422,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5601,NJBF000072793,1450 ABSECON BLVD,Atlantic City,NJ,39.37495471,-74.44592491,RES1,3001,,17,NE,1972,1972,3102,1,1,3166.605634,3166.605634,3505,NO,13.97,28.27,3,-1.85,6106,114.096104,123.767059,133.534274,139.823125,I,Above,Hip,0,5701,Wood,21.12300037,0,0,,,,1,1,,0.03,nav,1,1972,1,, 5602,NJBF000068227,2901 ARCTIC AVE,Atlantic City,NJ,39.3560719,-74.44832366,RES3A,3001,,45,NE,1900,1900,3301,2,2,1465.29837,1465.29837,3505,YES,34.52,44,3,3.83,6106,114.267472,123.924055,133.692035,140.065921,I,Above,Flat,0,5701,Wood,39.25782987,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5603,NJBF000068263,2901 ARCTIC AVE,Atlantic City,NJ,39.35618317,-74.44841013,RES3A,3001,,45,NE,1900,1900,3301,2,2,540.0269582,540.0269582,3505,YES,28.4,38.84,3,0.23,6106,114.264229,123.92131,133.689143,140.062928,I,Above,Flat,0,5701,Wood,33.61954115,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5604,NJBF000068646,2907 FAIRMOUNT AVE,Atlantic City,NJ,39.35731771,-74.44931368,RES3A,3001,,27,NE,1920,1920,3301,2,2,763.4766988,763.4766988,3507,YES,21.04,34.18,1,-0.48,6106,114.230568,123.892798,133.659078,140.031837,I,Above,Gable,0,5701,Wood,27.61015938,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5605,NJBF000071481,1568 W RIVERSIDE DR,Atlantic City,NJ,39.37072882,-74.45005454,RES1,3001,,17,NE,1900,1900,3101,1,1,1414.954774,1414.954774,3505,NO,18.71,31.1,3,0.81,6106,114.054764,123.736587,133.49843,139.818525,I,Above,Flat,0,5701,Wood,24.906915,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5606,NJBF000067783,321 N TRENTON AVE,Atlantic City,NJ,39.35448464,-74.45833818,COM1,3003,,45,ME,1900,1900,3401,2,2,1593.333366,1593.333366,3507,NO,27.95,38.97,1,-0.76,6106,114.068733,123.760056,133.512808,139.930495,I,Above,Gable,0,NaN,Wood,33.45939656,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5607,NJBF000066656,15 N PARKER AVE,Atlantic City,NJ,39.35036584,-74.45901944,RES3A,3001,,33,NE,1900,1900,3301,2,1,10409.09569,10409.09569,3505,YES,26.38,35.15,3,-2.28,6106,114.105661,123.792229,133.544273,139.982378,I,Above,Flat,0,5701,Wood,30.76078072,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5608,NJBF000068739,2609 ARCTIC AVE,Atlantic City,NJ,39.3575186,-74.44463784,RES3A,3001,,17,NE,1900,1900,3301,2,1,680.4246081,680.4246081,3505,NO,32.17,38,3,6.5,6106,114.329688,123.975395,133.749212,140.10257,I,Above,Gable,0,5701,Wood,35.0844807,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5609,NJBF000068896,120 N TEXAS AVE RR #B,Atlantic City,NJ,39.35796406,-74.4450046,RES3A,3001,,NaN,NE,2015,0,3301,2,1,2806.065882,2806.065882,3505,NO,39.06,45.41,3,4.65,6106,114.316261,123.963993,133.737166,140.090295,I,Above,Flat,0,5701,Wood,42.23507657,0,0,,,,1,1,,0.03,nav,1,2015,2,, 5610,NJBF000071432,126 SUNRISE AVE,Atlantic City,NJ,39.37060068,-74.41370747,RES3D,3004,,17,E,2000,2000,3303,2,1,1153.597072,1153.597072,3505,NO,44,54.91,3,5.86,6106,114.836171,124.402473,134.231122,140.399311,I,Above,Flat,0,NaN,Wood,49.4545207,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5611,NJBF000072139,1523 N ARKANSAS AVE,Atlantic City,NJ,39.37269699,-74.44888601,RES1,3001,,16,NE,1900,1900,3102,1,1,1108.164109,1108.164109,3505,NO,12.71,24.74,3,-1.15,6106,114.05759,123.737005,133.500064,139.808125,I,Above,Hip,0,5701,Wood,18.72402121,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5612,NJBF000066911,4123 SUNSET AVE,Atlantic City,NJ,39.35126,-74.461551,RES3A,3001,,16,NE,2008,2008,3301,2,1,804.9445767,804.9445767,3505,NO,29.97,40.93,3,1.69,6106,114.038875,123.736937,133.485312,139.928254,I,Above,Flat,0,5701,Wood,35.45165052,0,0,,,,1,1,,0.03,nav,1,2008,2,, 5613,NJBF000067919,1 N BRIGHTON AVE,Atlantic City,NJ,39.35503372,-74.44710541,RES3B,3001,,17,ME,1900,1900,3301,2,1,1564.846917,1564.846917,3504,NO,33.88,48.64,-4,0,6106,114.306843,123.957236,133.727236,140.100314,I,Above,Hip,0,NaN,Wood,41.25653717,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5614,NJBF000072271,2101 KUEHNLE AVE,Atlantic City,NJ,39.37310831,-74.4516811,RES1,3001,,17,NE,1955,1955,3101,1,1,2218.98553,2218.98553,3505,NO,17.33,30.28,3,1.15,6106,113.992246,123.681826,133.440037,139.755512,I,Above,Gable,0,5701,Wood,23.80597234,0,0,,,,1,1,,0.03,nav,1,1955,1,, 5615,NJBF000071675,190 N MAINE AVE,Atlantic City,NJ,39.37124417,-74.41351339,RES3D,3004,,45,E,2006,2006,3303,3,2,2043.047103,2043.047103,3505,NO,41.63,52.97,3,5.67,6106,114.832753,124.399371,134.228299,140.393539,I,Above,Hip,0,NaN,Wood,47.29763018,0,0,,,,1,1,,0.03,nav,1,2006,3,, 5616,NJBF000066570,3611 PACIFIC AVE,Atlantic City,NJ,39.35010653,-74.45345869,COM1,3003,643,NaN,ME,1969,0,3401,4,1,2589.5339,2589.5339,3507,NO,50.18,62.24,1,-0.31,6106,114.230427,123.895297,133.655549,140.073711,I,Above,Flat,0,NaN,Wood,56.2118263,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5617,NJBF000072205,2070 W RIVERSIDE DR,Atlantic City,NJ,39.3728961,-74.45727297,RES1,3001,,17,NE,2006,2006,3103,2,1,1980.092542,1980.092542,3505,NO,39.25,52.16,3,8.99,6106,113.872968,123.582532,133.331701,139.664955,I,Above,Hip,0,5701,Wood,45.70774323,0,0,,,,1,1,,0.03,nav,1,2006,2,, 5618,NJBF000067034,311 N RALEIGH AVE,Atlantic City,NJ,39.35176934,-74.46348509,RES1,3001,,17,NE,1900,1900,3102,1,1,2520.984498,2520.984498,3505,NO,17.38,30.11,3,5,6106,113.990033,123.696596,133.442204,139.889134,I,Above,Hip,0,5701,Wood,23.74484439,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5619,NJBF000067817,406 N HARBOR RD,Atlantic City,NJ,39.354625,-74.4619185,RES1,3001,,16,NE,1900,1900,3102,1,1,711.4955984,711.4955984,3505,NO,13.85,19.28,3,-0.8,6106,113.988584,123.693967,133.441487,139.870344,I,Above,Flat,0,5701,Wood,16.56519134,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5620,NJBF000067876,2301 BOARDWALK,Atlantic City,NJ,39.35485738,-74.43846427,COM1,3003,,NaN,ME,1969,0,3401,3,1,617872.9156,617872.9156,3507,NO,37.04,51.64,1,1.95,6106,114.496291,124.115773,133.899996,140.236759,I,Above,Flat,0,NaN,Wood,44.33910524,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5621,NJBF000072348,621 SEWELL AVE,Atlantic City,NJ,39.37335366,-74.42397837,RES1,3001,,45,NE,1910,1910,3102,2,2,1603.674456,1603.674456,3505,YES,32.72,46.8,3,8.77,6106,114.585847,124.185205,133.993099,140.200551,I,Above,Flat,0,5701,Wood,39.76396753,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5622,NJBF000072201,1640 N ARKANSAS AVE,Atlantic City,NJ,39.37288593,-74.45071071,RES1,3001,,17,NE,1997,1997,3102,2,1,1625.097899,1625.097899,3505,NO,34.91,45.12,3,4.01,6106,114.015835,123.701811,133.46173,139.775019,I,Above,Gable,0,5701,Wood,40.01257893,0,0,,,,1,1,,0.03,nav,1,1997,2,, 5623,NJBF000071475,413 DELTA AVE,Atlantic City,NJ,39.37071804,-74.4248158,RES1,3001,,17,NE,1900,1900,3102,2,1,1063.712988,1063.712988,3505,YES,36.96,47.24,3,0.93,6106,114.598531,124.197372,134.004303,140.22446,I,Above,Gable,0,5701,Wood,42.10169709,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5624,NJBF000068675,,Atlantic City,NJ,39.35738746,-74.4368509,COM8,3003,,NaN,,1969,0,3408,11,1,97195.53904,97195.53904,3507,NO,180.09,187.35,1,2.3,6106,114.499806,124.118169,133.905078,140.225637,I,Above,Flat,0,NaN,Wood,183.7188042,0,0,,,,2,2,,0.03,nav,1,1969,11,, 5625,NJBF000069448,1001 BOARDWALK,Atlantic City,NJ,39.36048642,-74.42026814,COM8,3003,80,NaN,,1969,0,3408,10,1,1648921.635,1648921.635,3507,NO,134.14,146.92,1,1.62,6106,114.817601,124.387669,134.204442,140.436618,I,Above,Flat,0,NaN,Wood,140.532988,0,0,,,,2,2,,0.03,nav,1,1969,10,, 5626,NJBF000072051,1648 BEACH AVE,Atlantic City,NJ,39.37243548,-74.45114946,RES1,3001,,27,NE,1900,1900,3102,1,2,2453.330309,2453.330309,3505,NO,15.4,26.28,3,3.99,6106,114.01146,123.698625,133.457995,139.774579,I,Above,Flat,0,5701,Wood,20.84083171,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5627,NJBF000069695,1433 BACHARACH BLVD,Atlantic City,NJ,39.36301137,-74.42981211,EDU1,3003,569,NaN,E,1969,0,3401,3,1,16174.16074,16174.16074,3507,NO,49.67,58.07,1,1.62,6106,114.582858,124.18688,133.985798,140.254984,I,Above,Flat,0,NaN,Wood,53.86928188,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5628,NJBF000071142,659 N NEW YORK AVE,Atlantic City,NJ,39.36957038,-74.43441481,RES3C,3001,,17,ME,1900,1900,3301,1,1,2318.407766,2318.407766,3505,NO,18.92,27.17,3,4.53,6106,114.406218,124.033809,133.823185,140.088991,I,Above,Hip,0,NaN,Wood,23.0478414,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5629,NJBF000072394,2114 HAMILTON AVE,Atlantic City,NJ,39.37350383,-74.45380393,RES1,3001,,17,NE,1959,1959,3101,1,1,1827.386791,1827.386791,3505,NO,19.55,32.73,3,5.39,6106,113.941614,123.639054,133.393587,139.713999,I,Above,Flat,0,5701,Wood,26.13731705,0,0,,,,1,1,,0.03,nav,1,1959,1,, 5630,NJBF000070272,608 N OHIO AVE,Atlantic City,NJ,39.36651156,-74.43922864,RES3B,3001,,33,ME,1925,1900,3301,2,1,6584.536318,6584.536318,3505,YES,32.7,38.43,3,4.03,6106,114.338389,123.978244,133.759793,140.056701,I,Above,Gable,0,NaN,Wood,35.56647281,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5631,NJBF000068606,2421 ATLANTIC AVE RR #B,Atlantic City,NJ,39.35722622,-74.44157402,RES3B,3001,,33,ME,1900,1900,3301,2,1,2134.780868,2134.780868,3505,YES,31.24,39.45,3,0.62,6106,114.399696,124.034106,133.81302,140.154707,I,Above,Flat,0,NaN,Wood,35.34405225,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5632,NJBF000068258,39 N STENTON PL,Atlantic City,NJ,39.35616424,-74.44701384,RES3B,3001,,17,ME,1900,1900,3301,3,1,1141.22282,1141.22282,3504,YES,38,45.44,-4,0,6106,114.29481,123.946798,133.716868,140.085153,I,Above,Hip,0,NaN,Wood,41.71749903,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5633,NJBF000067414,3911 SOUTH BLVD,Atlantic City,NJ,39.35339755,-74.45970822,RES1,3001,,45,NE,1929,1929,3102,2,2,2526.806305,2526.806305,3505,YES,31.31,36.6,3,6.27,6106,114.052328,123.747057,133.497913,139.925076,I,Above,Flat,0,5701,Wood,33.95586743,0,0,,,,1,1,,0.03,nav,1,1929,2,, 5634,NJBF000067477,3901 SOUTH BLVD,Atlantic City,NJ,39.353605,-74.459692,RES1,3001,,45,NE,1920,1920,3102,2,2,782.4622353,782.4622353,3505,YES,40.98,53.12,3,3.68,6106,114.050086,123.745113,133.495971,139.922159,I,Above,Hip,0,5701,Wood,47.05175357,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5635,NJBF000068957,2408 ARCTIC AVE,Atlantic City,NJ,39.35814735,-74.44193376,RES3B,3001,,17,ME,1900,1900,3301,2,1,959.1728667,959.1728667,3505,NO,31.65,40.23,3,4.92,6106,114.380584,124.017767,133.796008,140.135757,I,Above,Hip,0,NaN,Wood,35.94079652,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5636,NJBF000072393,506 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3734992,-74.42208607,RES1,3001,,33,NE,1900,1900,3102,2,1,11809.29732,11809.29732,3505,YES,32.36,45.43,3,1.62,6106,114.624497,124.218416,134.02993,140.228375,I,Above,Flat,0,5701,Wood,38.89742807,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5637,NJBF000065310,25 N NEWTON AVE,Atlantic City,NJ,39.34670321,-74.4662688,RES3A,3001,,17,NE,1920,1920,3301,2,1,1140.44108,1140.44108,3505,NO,33.98,41.72,3,-2.28,6106,113.993701,123.701535,133.443519,139.922881,I,Above,Hip,0,5701,Wood,37.85250424,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5638,NJBF000067460,114 N HARTFORD AVE,Atlantic City,NJ,39.353557,-74.4552785,RES3B,3001,,45,E,1900,1900,3303,2,2,1927.327714,1927.327714,3507,YES,36.18,51.13,1,1.04,6106,114.147188,123.825273,133.58267,139.993492,I,Above,Gable,0,NaN,Wood,43.65875439,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5639,NJBF000072586,1404 PENROSE AVE,Atlantic City,NJ,39.37418199,-74.44498984,RES1,3001,,17,NE,1900,1900,3102,2,1,583.6425496,583.6425496,3505,NO,42.2,56.63,3,7.41,6106,114.125074,123.792256,133.561402,139.850097,I,Above,Gable,0,5701,Wood,49.41889904,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5640,NJBF000072550,1401 N OHIO AVE,Atlantic City,NJ,39.3740575,-74.4450565,RES1,3001,,17,NE,1954,2008,3102,2,1,938.1183146,938.1183146,3505,NO,38.24,48.11,3,4.52,6106,114.125044,123.792355,133.561432,139.850862,I,Above,Hip,0,5701,Wood,43.17698036,0,0,,,,1,1,,0.03,nav,1,1954,2,, 5641,NJBF000067882,21 S CALIFORNIA AVE,Atlantic City,NJ,39.35487716,-74.44378235,RES3A,3004,,17,NE,1940,1940,3301,3,1,1402.807698,1402.807698,3505,YES,43.33,53.23,3,1.63,6106,114.380928,124.019113,133.794498,140.154361,I,Above,Hip,0,5701,Wood,48.28073814,0,0,,,,1,1,,0.03,nav,1,1940,3,, 5642,NJBF000068669,168 S ST JAMES PL,Atlantic City,NJ,39.35736433,-74.42610338,COM8,3003,100,NaN,,1969,0,3408,2,1,49090.80739,49090.80739,3507,NO,32.71,42.34,1,0.46,6106,114.731174,124.314004,134.119941,140.390603,I,Above,Flat,0,NaN,Wood,37.52381559,0,0,,,,2,2,,0.03,nav,1,1969,2,, 5643,NJBF000070523,1814 LINCOLN AVE,Atlantic City,NJ,39.36746248,-74.43881201,RES1,3001,,33,NE,1902,1902,3102,2,1,1925.98031,1925.98031,3505,YES,25.47,37.71,3,4.05,6106,114.336193,123.975806,133.757864,140.04949,I,Above,Flat,0,5701,Wood,31.59045917,0,0,,,,1,1,,0.03,nav,1,1902,2,, 5644,NJBF000070015,1025 ARCTIC AVE,Atlantic City,NJ,39.36549103,-74.42511228,COM1,3003,737,NaN,ME,1969,0,3401,1,1,6049.009843,6049.009843,3507,NO,13.73,24.17,1,1.9,6106,114.65384,124.246672,134.053966,140.293131,I,Above,Flat,0,NaN,Wood,18.94617715,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5645,NJBF000068955,31 N GEORGIA AVE,Atlantic City,NJ,39.35814138,-74.44116871,RES3B,3001,,45,ME,1912,1912,3301,1,2,1090.518715,1090.518715,3505,NO,18.54,30.24,3,7.38,6106,114.397218,124.031719,133.811243,140.14779,I,Above,Flat,0,NaN,Wood,24.38832561,0,0,,,,1,1,,0.03,nav,1,1912,1,, 5646,NJBF000066737,33 N DOVER AVE,Atlantic City,NJ,39.35062114,-74.45803534,RES3A,3001,,45,NE,1909,1909,3301,1,2,2348.683968,2348.683968,3505,NO,19.89,27.43,3,3.06,6106,114.12395,123.807208,133.560674,139.994116,I,Above,Flat,0,5701,Wood,23.65777802,0,0,,,,1,1,,0.03,nav,1,1909,1,, 5647,NJBF000067825,14 S CALIFORNIA AVE,Atlantic City,NJ,39.35464974,-74.44468893,RES4,3003,739,NaN,E,1969,0,3404,1,1,21260.46266,21260.46266,3507,NO,12.17,25.89,1,-0.82,6106,114.36408,124.005104,133.779018,140.143569,I,Above,Flat,0,NaN,Wood,19.03348054,0,0,,,,2,2,,0.03,nav,1,1969,1,, 5648,NJBF000070110,108 N VIRGINIA AVE,Atlantic City,NJ,39.365871,-74.4248015,RES1,3001,,27,NE,2000,2000,3102,2,2,545.5156522,545.5156522,3505,NO,27.39,33,3,5.99,6106,114.65594,124.248358,134.056184,140.292636,I,Above,Gable,0,5701,Wood,30.19620946,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5649,NJBF000070135,108 N VIRGINIA AVE,Atlantic City,NJ,39.36597245,-74.42456454,RES1,3001,,27,NE,2000,2000,3102,2,2,1937.551595,1937.551595,3505,NO,43.76,57.06,3,5.87,6106,114.659804,124.251635,134.059892,140.294905,I,Above,Hip,0,5701,Wood,50.41024753,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5650,NJBF000069318,235 N ARIZONA AVE,Atlantic City,NJ,39.3596524,-74.44612092,RES3A,3001,,27,NE,1900,1900,3301,2,2,1061.004579,1061.004579,3505,YES,25.06,38.7,3,2.96,6106,114.271411,123.925754,133.696895,140.047862,I,Above,Gable,0,5701,Wood,31.87741553,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5651,NJBF000072846,1509 PENROSE AVE,Atlantic City,NJ,39.37517786,-74.44710176,RES1,3001,,17,NE,1900,1900,3101,2,1,743.5214191,743.5214191,3505,NO,44.15,49.91,3,6.12,6106,114.06812,123.743261,133.508352,139.800311,I,Above,Hip,0,5701,Wood,47.02962473,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5652,NJBF000066783,114 N WINDSOR AVE,Atlantic City,NJ,39.35075531,-74.46103078,RES3A,3001,,17,NE,1922,1922,3301,2,1,829.7740319,829.7740319,3505,NO,33.62,41.77,3,0.37,6106,114.056668,123.751769,133.500912,139.944358,I,Above,Gable,0,5701,Wood,37.69375152,0,0,,,,1,1,,0.03,nav,1,1922,2,, 5653,NJBF000067146,6 N ST DAVIDS PL,Atlantic City,NJ,39.35229379,-74.45507726,RES3B,3001,,45,E,1900,1900,3303,2,3,1749.246288,1749.246288,3507,NO,40.63,54.12,1,2.1,6106,114.167451,123.84252,133.600297,140.015692,I,Above,Gable,0,NaN,Wood,47.37304657,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5654,NJBF000072555,1405 N OHIO AVE,Atlantic City,NJ,39.37407249,-74.44527063,RES1,3001,,17,NE,1900,1900,3102,2,1,861.671772,861.671772,3505,NO,38.89,45.46,3,6.48,6106,114.120245,123.788296,133.556998,139.847117,I,Above,Hip,0,5701,Wood,42.1732087,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5655,NJBF000065745,34 S LACLEDE PL,Atlantic City,NJ,39.34797849,-74.46029967,RES3A,3001,,18,NE,1925,1925,3301,3,1,2369.163664,2369.163664,3505,YES,40.55,45.78,3,-1.85,6106,114.108132,123.795018,133.545248,139.998353,I,Above,Hip,0,5701,Wood,43.16423761,0,0,,,,1,1,,0.03,nav,1,1925,3,, 5656,NJBF000069441,1733 ATLANTIC AVE,Atlantic City,NJ,39.36043928,-74.43300977,COM1,3003,738,NaN,ME,1969,1920,3401,3,1,7435.313499,7435.313499,3507,YES,53.28,59.73,1,-0.28,6110,114.54524,124.155718,133.949142,140.24173,I,Above,Flat,0,NaN,Wood,56.50476573,0,0,,,,1,1,,1,nav,1,1969,3,, 5657,NJBF000072693,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3745649,-74.41750054,RES3C,3001,,NaN,ME,1969,0,3301,2,1,8881.950049,8881.950049,3505,NO,25.94,31.42,3,1.08,6106,114.709686,124.291572,134.111826,140.285644,I,Above,Hip,0,NaN,Wood,28.67996049,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5658,NJBF000066011,4023 VAN RENSELEER AVE,Atlantic City,NJ,39.34868039,-74.45804159,RES3A,3001,,33,NE,1900,1900,3301,3,1,567.93602,567.93602,3504,YES,41.93,54.95,-4,0,6106,114.148535,123.828075,133.581548,140.023299,I,Above,Gable,0,5701,Wood,48.44047269,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5659,NJBF000066444,4025 VENTNOR AVE,Atlantic City,NJ,39.3497685,-74.4592295,COM1,3004,210,NaN,ME,1969,0,3401,2,1,673.4420699,673.4420699,3507,YES,34.29,44.63,1,-0.25,6106,114.108639,123.794885,133.546639,139.988096,I,Above,Flat,0,NaN,Wood,39.46039624,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5660,NJBF000066839,121 N LACLEDE PL,Atlantic City,NJ,39.35097015,-74.46212528,RES3A,3001,,45,NE,1900,1900,3301,2,2,2102.90184,2102.90184,3505,YES,40.49,52.89,3,3.38,6106,114.029967,123.729737,133.477316,139.923485,I,Above,Hip,0,5701,Wood,46.69144578,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5661,NJBF000072366,1620 EMERSON AVE,Atlantic City,NJ,39.37341073,-74.45046378,RES1,3001,,17,NE,1900,1900,3101,2,1,1735.35289,1735.35289,3505,NO,35.07,46,3,8.11,6106,114.015232,123.700746,133.460863,139.771171,I,Above,Gable,0,5701,Wood,40.53343251,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5662,NJBF000067465,3816 SOUTH BLVD,Atlantic City,NJ,39.35357646,-74.45851259,RES1,3001,,NaN,NE,1969,0,3102,2,1,1940.407808,1940.407808,3505,NO,31.13,38.31,3,4.54,6106,114.076255,123.766694,133.519279,139.941566,I,Above,Gable,0,5701,Wood,34.72105523,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5663,NJBF000072898,1849 KUEHNLE AVE,Atlantic City,NJ,39.37553001,-74.45053367,RES1,3001,,16,NE,1900,1900,3101,1,1,1193.881801,1193.881801,3505,NO,19.44,27.9,3,3.01,6106,113.989803,123.67706,133.436148,139.737901,I,Above,Hip,0,5701,Wood,23.67383443,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5664,NJBF000070404,811 N ARKANSAS AVE,Atlantic City,NJ,39.366979,-74.442297,RES3B,3001,,33,ME,1915,1915,3301,2,1,847.1842992,847.1842992,3505,YES,41.34,51.24,3,2.39,6106,114.266582,123.917433,133.693554,140.000782,I,Above,Gable,0,5701,Wood,46.28851289,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5665,NJBF000065464,31 S BARTRAM AVE,Atlantic City,NJ,39.34715741,-74.46205113,RES3A,3001,,45,NE,1913,1913,3301,2,2,1521.045454,1521.045454,3505,NO,30.5,36.72,3,7.48,6106,114.080352,123.772421,133.520177,139.983172,I,Above,Gable,0,5701,Wood,33.61092477,0,0,,,,1,1,,0.03,nav,1,1913,2,, 5666,NJBF000071234,1825 MARMORA AVE,Atlantic City,NJ,39.36986512,-74.44061044,RES3A,3001,,16,NE,1900,1900,3301,1,1,889.6265736,889.6265736,3505,NO,24.76,36.52,3,5.32,6106,114.269291,123.91766,133.695923,139.985437,I,Above,Gable,0,5701,Wood,30.64070366,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5667,NJBF000065279,35 S ABERDEEN PL,Atlantic City,NJ,39.34660668,-74.46299421,RES3A,3001,,17,NE,1900,1900,3301,2,1,2043.021879,2043.021879,3505,NO,37.27,49.11,3,4.05,6106,114.066791,123.76144,133.507876,139.976644,I,Above,Hip,0,5701,Wood,43.19049978,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5668,NJBF000070659,2018 MCKINLEY AVE,Atlantic City,NJ,39.36795253,-74.44239681,RES3B,3001,,33,ME,1900,1915,3301,2,1,3428.029181,3428.029181,3505,YES,37.28,49.51,3,5,6106,114.252981,123.905307,133.681002,139.984811,I,Above,Flat,0,5701,Wood,43.39660292,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5669,NJBF000066527,4005 VENTNOR AVE,Atlantic City,NJ,39.34999094,-74.45852996,COM1,3004,738,NaN,ME,1969,0,3401,2,1,1451.684452,1451.684452,3507,YES,37.6,45.21,1,2.29,6106,114.121128,123.805097,133.557858,139.995816,I,Above,Flat,0,NaN,Wood,41.40604789,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5670,NJBF000068490,203 N CHELSEA AVE,Atlantic City,NJ,39.35693,-74.4508765,RES3A,3001,,45,NE,1900,1900,3301,3,3,1438.814826,1438.814826,3507,YES,44.88,59.73,1,0.24,6106,114.201318,123.868651,133.632503,140.012822,I,Above,Hip,0,5701,Wood,52.30714075,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5671,NJBF000068826,233 N CHELSEA,Atlantic City,NJ,39.3577164,-74.45139475,RES3A,3001,,45,NE,1900,1900,3301,1,2,1933.814828,1933.814828,3507,NO,19.15,26.65,1,0.94,6106,114.18037,123.850859,133.6138,139.992824,I,Above,Flat,0,5701,Wood,22.90151495,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5672,NJBF000069262,119 N GEORGIA AVE RR,Atlantic City,NJ,39.35941317,-74.44166032,RES3B,3001,,27,ME,1900,1900,3301,2,2,674.3299666,674.3299666,3505,YES,24.15,29.3,3,0.45,6106,114.371034,124.009274,133.78785,140.12167,I,Above,Gable,0,NaN,Wood,26.72719532,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5673,NJBF000069767,1016 ATLANTIC AVE,Atlantic City,NJ,39.36377861,-74.42329995,COM1,3003,100,NaN,ME,1969,0,3401,2,1,12485.85825,12485.85825,3507,YES,34.2,47.84,1,-0.91,6106,114.713055,124.297747,134.108632,140.344957,I,Above,Flat,0,NaN,Wood,41.02009945,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5674,NJBF000071579,526 DREXEL AVE,Atlantic City,NJ,39.37098589,-74.4208373,RES1,3001,,27,NE,1900,1900,3102,2,2,1613.05204,1613.05204,3505,YES,42.07,52.16,3,3.88,6106,114.68025,124.267532,134.082055,140.283095,I,Above,Hip,0,5701,Wood,47.11391481,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5675,NJBF000069247,117 N GEORGIA AVE RR,Atlantic City,NJ,39.3593544,-74.4416051,RES3B,3001,,17,ME,1920,1920,3301,2,1,519.6608111,519.6608111,3505,YES,30.3,41.83,3,-0.05,6106,114.372945,124.0109,133.789575,140.123389,I,Above,Flat,0,NaN,Wood,36.06802827,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5676,NJBF000069554,11 S TENNESSEE AVE,Atlantic City,NJ,39.36157587,-74.42739938,COM1,3003,100,NaN,ME,1969,0,3401,1,1,9672.356138,9672.356138,3507,YES,21.57,34.09,1,2.7,6106,114.651934,124.246014,134.049465,140.312421,I,Above,Flat,0,NaN,Wood,27.82896243,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5677,NJBF000066401,4305 WINCHESTER AVE,Atlantic City,NJ,39.34967603,-74.46268534,RES3A,3001,,27,NE,1900,1900,3301,2,2,1437.82503,1437.82503,3505,YES,19.56,24.92,3,-2.14,6106,114.034143,123.733674,133.480527,139.934429,I,Above,Flat,0,5701,Wood,22.24033962,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5678,NJBF000067061,,Atlantic City,NJ,39.35190909,-74.45921446,RES3B,3001,,NaN,E,1969,0,3303,4,1,5970.125936,5970.125936,3505,NO,82.02,88.71,3,4.28,6106,114.081859,123.772038,133.523729,139.95578,I,Above,Hip,0,NaN,Wood,85.36398062,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5679,NJBF000067115,,Atlantic City,NJ,39.35216075,-74.4596069,RES3B,3001,,NaN,E,1969,0,3303,3,1,5663.254098,5663.254098,3505,NO,51.56,63.63,3,6.72,6106,114.070079,123.762231,133.513336,139.94564,I,Above,Gable,0,NaN,Wood,57.59697944,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5680,NJBF000067118,,Atlantic City,NJ,39.35216727,-74.4586785,RES3B,3001,,NaN,E,1969,0,3303,3,1,5639.117121,5639.117121,3505,NO,38.63,53.18,3,6.74,6106,114.090315,123.778899,133.531353,139.960396,I,Above,Hip,0,NaN,Wood,45.90206565,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5681,NJBF000068809,2609 ARCTIC AVE,Atlantic City,NJ,39.357671,-74.4447295,RES3A,3001,,17,NE,1900,1900,3301,2,1,718.267591,718.267591,3505,NO,41.91,48.88,3,4.16,6106,114.325846,123.972124,133.745778,140.09892,I,Above,Gable,0,5701,Wood,45.39231177,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5682,NJBF000068725,2611 ARCTIC AVE,Atlantic City,NJ,39.35749266,-74.44470249,RES3A,3001,,27,NE,1900,1900,3301,3,2,614.3142349,614.3142349,3505,YES,50.14,64.43,3,4.59,6106,114.328619,123.974512,133.748226,140.101946,I,Above,Flat,0,5701,Wood,57.28411598,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5683,NJBF000071413,1620 MARMORA AVE,Atlantic City,NJ,39.37052315,-74.4379124,RES1,3001,,17,NE,2006,2006,3101,2,1,1363.020756,1363.020756,3505,NO,25.09,32.36,3,-2.46,6106,114.319851,123.959931,133.742769,140.019218,I,Above,Hip,0,5701,Wood,28.72371415,0,0,,,,1,1,,0.03,nav,1,2006,2,, 5684,NJBF000066532,65 N LACLEDE PL,Atlantic City,NJ,39.34999535,-74.46132034,RES3A,3001,,45,NE,1919,1919,3301,2,2,1424.737394,1424.737394,3505,NO,28.31,35.72,3,5.24,6106,114.059995,123.754792,133.503556,139.951387,I,Above,Hip,0,5701,Wood,32.01238297,0,0,,,,1,1,,0.03,nav,1,1919,2,, 5685,NJBF000066720,3531 PACIFIC AVE,Atlantic City,NJ,39.35057755,-74.45241977,COM1,3003,29,NaN,ME,1969,0,3401,3,1,4078.276969,4078.276969,3507,YES,50.19,56.66,1,2.09,6106,114.247103,123.908975,133.670801,140.082936,I,Above,Flat,0,NaN,Wood,53.42592492,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5686,NJBF000069168,205 N ARIZONA AVE,Atlantic City,NJ,39.35904308,-74.44575911,RES3A,3001,,27,NE,1900,1900,3301,2,2,1442.537618,1442.537618,3505,YES,34.11,42.76,3,-0.93,6106,114.286693,123.938813,133.710627,140.062566,I,Above,Gable,0,5701,Wood,38.43724662,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5687,NJBF000069191,209 N ARIZONA AVE,Atlantic City,NJ,39.35913125,-74.44580695,RES3A,3001,,27,NE,1920,1920,3301,2,2,1319.831087,1319.831087,3505,YES,25.01,33.4,3,1.7,6106,114.284577,123.937004,133.708728,140.060512,I,Above,Gable,0,5701,Wood,29.20666015,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5688,NJBF000067336,8 S MORRIS AVE,Atlantic City,NJ,39.35313577,-74.44767484,COM1,3003,101,NaN,ME,1969,0,3401,3,1,1380.035065,1380.035065,3507,NO,45.2,50.69,1,2.02,6106,114.318147,123.967248,133.736414,140.119206,I,Above,Hip,0,NaN,Wood,47.94698265,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5689,NJBF000069428,255 N NEVADA AVE,Atlantic City,NJ,39.36031342,-74.44506922,RES3A,3001,,NaN,NE,1900,0,3301,2,1,2673.905307,2673.905307,3505,YES,20.8,30.68,3,-1.22,6106,114.286208,123.937802,133.71058,140.054784,I,Above,Flat,0,5701,Wood,25.74464412,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5690,NJBF000069433,259 N NEVADA AVE,Atlantic City,NJ,39.36036668,-74.44518959,RES3A,3001,,27,NE,1923,1923,3301,2,2,1408.152315,1408.152315,3505,YES,21.89,35.63,3,-2.52,6106,114.282928,123.935031,133.707601,140.052072,I,Above,Flat,0,5701,Wood,28.75996465,0,0,,,,1,1,,0.03,nav,1,1923,2,, 5691,NJBF000072040,1644 N BEACH AVE,Atlantic City,NJ,39.37237806,-74.45095146,RES1,3001,,27,NE,1900,1900,3102,1,2,2448.653109,2448.653109,3505,NO,10.96,21.89,3,-0.34,6106,114.01641,123.702828,133.46255,139.778732,I,Above,Flat,0,5701,Wood,16.42083401,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5692,NJBF000068880,26 N GEORGIA AVE,Atlantic City,NJ,39.35789738,-74.44145315,RES3B,3001,29,NaN,ME,1969,0,3301,4,1,2368.978378,2368.978378,3505,YES,75.01,87.83,3,3.95,6106,114.394065,124.029159,133.808226,140.146889,I,Above,Flat,0,NaN,Wood,81.42143513,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5693,NJBF000068832,24 N GEORGIA AVE RR,Atlantic City,NJ,39.35773351,-74.44159485,RES3B,3001,,16,ME,1900,1900,3301,2,1,638.36117,638.36117,3505,YES,21.8,33.54,3,-2.52,6106,114.392993,124.028317,133.807158,140.147033,I,Above,Flat,0,NaN,Wood,27.67196272,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5694,NJBF000067730,8 N CHELSEA AVE,Atlantic City,NJ,39.35429905,-74.44961965,RES3B,3001,100,NaN,ME,1969,0,3301,3,1,1282.074223,1282.074223,3504,YES,49.94,58.7,-4,0,6106,114.261299,123.919589,133.685641,140.071739,I,Above,Gable,0,NaN,Wood,54.31809569,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5695,NJBF000067869,18 N MORRIS AVE,Atlantic City,NJ,39.3548322,-74.44876512,RES3B,3001,,45,ME,1900,1900,3301,3,3,1239.22987,1239.22987,3504,YES,38.53,44.97,-4,0,6106,114.273264,123.929347,133.696716,140.077286,I,Above,Hip,0,NaN,Wood,41.75250122,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5696,NJBF000067883,20 N MORRIS AVE,Atlantic City,NJ,39.35489994,-74.44881013,RES3B,3001,,45,ME,1905,1905,3301,3,2,1305.758436,1305.758436,3504,YES,46.97,61.47,-4,0,6106,114.271439,123.927804,133.695098,140.075577,I,Above,Hip,0,NaN,Wood,54.22264894,0,0,,,,1,1,,0.03,nav,1,1905,3,, 5697,NJBF000066453,64 N LACLEDE PL,Atlantic City,NJ,39.34978299,-74.46178572,RES3A,3001,,27,NE,1925,1925,3301,2,2,2412.359742,2412.359742,3505,YES,33.31,40.66,3,4.75,6106,114.052485,123.748698,133.49681,139.947188,I,Above,Flat,0,5701,Wood,36.98194089,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5698,NJBF000067379,17 N HARTFORD AVE,Atlantic City,NJ,39.35328098,-74.45441385,RES3B,3001,29,NaN,E,1969,0,3303,2,1,2591.576232,2591.576232,3507,YES,32.49,39.09,1,0.95,6106,114.16953,123.843866,133.602586,140.01136,I,Above,Flat,0,NaN,Wood,35.78979123,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5699,NJBF000066010,11 S RICHMOND AVE,Atlantic City,NJ,39.34867816,-74.45976384,RES3A,3001,,45,NE,1923,1923,3301,2,3,1652.840886,1652.840886,3505,YES,23.63,38.27,3,-0.51,6106,114.110887,123.79708,133.548078,139.996199,I,Above,Gable,0,5701,Wood,30.9513703,0,0,,,,1,1,,0.03,nav,1,1923,2,, 5700,NJBF000070510,1303 DREXEL AVE,Atlantic City,NJ,39.3674077,-74.43040413,RES3C,3003,,33,E,1900,1900,3305,2,1,526.3479099,526.3479099,3507,YES,32.84,45.98,1,-0.94,6106,114.517748,124.129816,133.926985,140.18345,I,Above,Flat,0,NaN,Wood,39.40677433,0,0,,,,2,2,,0.03,nav,1,1900,2,, 5701,NJBF000070832,650 GREEN ST,Atlantic City,NJ,39.36856768,-74.43660353,RES1,3001,,17,NE,1900,1900,3101,2,1,1166.506187,1166.506187,3505,NO,31.75,39.98,3,6.63,6106,114.370818,124.004402,133.790097,140.06862,I,Above,Gable,0,5701,Wood,35.86120638,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5702,NJBF000071583,2300 KUEHNLE AVE,Atlantic City,NJ,39.37099181,-74.45225153,RES1,3001,,17,NE,1900,1900,3101,1,1,1208.789174,1208.789174,3505,NO,15.65,21.93,3,1.8,6106,114.003997,123.693877,133.451989,139.778175,I,Above,Gable,0,5701,Wood,18.78805042,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5703,NJBF000068560,2921 FAIRMOUNT AVE,Atlantic City,NJ,39.3571225,-74.4498115,RES3A,3001,,27,NE,1900,1900,3301,2,2,1995.49708,1995.49708,3507,YES,34.82,41.85,1,1.33,6106,114.222152,123.885884,133.651397,140.02686,I,Above,Hip,0,5701,Wood,38.33534128,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5704,NJBF000065796,65 N TALLAHASSEE AVE,Atlantic City,NJ,39.34812615,-74.46520943,RES3A,3001,,18,NE,1910,1910,3301,2,1,1600.117302,1600.117302,3505,NO,27.05,32.22,3,3.91,6106,113.998617,123.705098,133.448509,139.917824,I,Above,Gable,0,5701,Wood,29.63514293,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5705,NJBF000065819,65 N TALLAHASSEE AVE,Atlantic City,NJ,39.348185,-74.4650785,RES3A,3001,,18,NE,1910,1910,3301,2,1,640.7078634,640.7078634,3505,NO,43.19,56.08,3,7.24,6106,114.000712,123.706794,133.450381,139.919002,I,Above,Gable,0,5701,Wood,49.63363459,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5706,NJBF000070462,109 VERMONT TERR,Atlantic City,NJ,39.36722972,-74.41320968,RES3D,3004,,17,E,1900,1900,3303,2,1,1528.701963,1528.701963,3505,NO,26.59,38.4,3,3.65,6106,114.886478,124.44659,134.276676,140.452813,I,Above,Flat,0,NaN,Wood,32.49335997,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5707,NJBF000065855,32 N BARTRAM AVE,Atlantic City,NJ,39.34827744,-74.46343634,RES3A,3001,,17,NE,1920,1920,3301,2,1,1286.567249,1286.567249,3505,NO,26.99,39.46,3,-2.45,6106,114.035577,123.735341,133.481182,139.943956,I,Above,Hip,0,5701,Wood,33.22137844,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5708,NJBF000067838,2806 ATLANTIC AVE,Atlantic City,NJ,39.35469557,-74.44590915,COM1,3003,100,NaN,ME,1969,0,3401,1,1,4601.834908,4601.834908,3507,NO,16.48,27.41,1,1.35,6106,114.337027,123.982512,133.75445,140.123921,I,Above,Flat,0,NaN,Wood,21.94624895,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5709,NJBF000066071,33 N DELANCY PL,Atlantic City,NJ,39.34883606,-74.46225781,RES3A,3001,,45,NE,1900,1900,3301,2,2,2089.204388,2089.204388,3505,NO,43.63,56.54,3,5.14,6106,114.054237,123.750469,133.497941,139.954183,I,Above,Hip,0,5701,Wood,50.08672178,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5710,NJBF000068830,2908 SUNSET AVE,Atlantic City,NJ,39.35772629,-74.44976118,RES3A,3001,,33,NE,1910,1910,3301,2,1,5854.30597,5854.30597,3507,YES,21,35.23,1,-0.9,6106,114.215828,123.880339,133.64586,140.018678,I,Above,Flat,0,5701,Wood,28.11114717,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5711,NJBF000065872,45 N KINGSTON AVE,Atlantic City,NJ,39.34832747,-74.46390652,RES3A,3001,,17,NE,1920,1920,3301,2,1,1557.993857,1557.993857,3505,NO,25.68,36.11,3,-2.37,6106,114.024605,123.726326,133.471517,139.93564,I,Above,Gable,0,5701,Wood,30.89489641,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5712,NJBF000065806,2 S RALEIGH AVE,Atlantic City,NJ,39.34815725,-74.46133603,RES3A,3001,29,NaN,NE,1969,0,3301,3,1,1790.561838,1790.561838,3505,YES,42.29,48.05,3,7.34,6106,114.083145,123.774428,133.523198,139.979242,I,Above,Hip,0,5701,Wood,45.1720157,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5713,NJBF000068728,2903 JACKSON TERR,Atlantic City,NJ,39.35749557,-74.44950826,RES3A,3001,,33,NE,1900,1900,3301,2,1,629.1409781,629.1409781,3507,YES,27.24,41.32,1,-0.64,6106,114.224158,123.88738,133.653332,140.026116,I,Above,Gable,0,5701,Wood,34.28032416,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5714,NJBF000068703,2907 JACKSON TERR,Atlantic City,NJ,39.35745613,-74.44960089,RES3A,3001,,33,NE,1910,1910,3301,2,1,648.8633666,648.8633666,3507,YES,30.46,43.6,1,0.26,6106,114.222626,123.886124,133.651932,140.025236,I,Above,Gable,0,5701,Wood,37.03190523,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5715,NJBF000068697,2911 JACKSON TERR,Atlantic City,NJ,39.35743518,-74.44970588,RES3A,3001,,33,NE,1900,1900,3301,2,1,694.275413,694.275413,3507,YES,32.83,41.06,1,2.9,6106,114.220599,123.884447,133.650091,140.023883,I,Above,Gable,0,5701,Wood,36.94568534,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5716,NJBF000071653,126 MADISON AVE,Atlantic City,NJ,39.37118,-74.4140965,RES3D,3004,,17,E,2000,2000,3303,2,1,1158.787757,1158.787757,3505,NO,19.73,28.67,3,-2.7,6106,114.821154,124.389316,134.217088,140.385377,I,Above,Hip,0,NaN,Wood,24.19762745,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5717,NJBF000071608,126 MADISON AVE,Atlantic City,NJ,39.371052,-74.414014,RES3D,3004,,17,E,2000,2000,3303,2,1,581.7103174,581.7103174,3505,NO,30.47,37.75,3,-0.64,6106,114.824387,124.392152,134.22011,140.388398,I,Above,Hip,0,NaN,Wood,34.11215621,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5718,NJBF000067187,3717 WINCHESTER AVE,Atlantic City,NJ,39.35248904,-74.45672683,RES3A,3001,,27,NE,1924,1924,3301,2,2,1049.308776,1049.308776,3505,YES,32.02,42.59,3,-1.19,6106,114.12895,123.810638,133.565943,139.986608,I,Above,Flat,0,5701,Wood,37.30596147,0,0,,,,1,1,,0.03,nav,1,1924,2,, 5719,NJBF000066972,4105 SUNSET AVE,Atlantic City,NJ,39.35150719,-74.46125658,RES3A,3001,,18,NE,1920,1920,3301,2,1,1829.140784,1829.140784,3505,NO,30.84,37.43,3,0.91,6106,114.042194,123.739562,133.488339,139.929183,I,Above,Gable,0,5701,Wood,34.13298484,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5720,NJBF000068085,16 S BELLEVUE AVE,Atlantic City,NJ,39.35558716,-74.44226794,RES3A,3004,,45,NE,1900,1900,3301,3,2,1815.53999,1815.53999,3505,YES,48.36,57.45,3,0.44,6106,114.404922,124.038983,133.816831,140.167589,I,Above,Flat,0,5701,Wood,52.90452641,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5721,NJBF000072810,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37502269,-74.41992144,RES3D,3001,,NaN,ME,1969,0,3301,2,1,5854.941352,5854.941352,3507,NO,39.26,54.03,1,2.79,6106,114.653027,124.242319,134.057663,140.241191,I,Above,Hip,0,NaN,Wood,46.64729214,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5722,NJBF000064677,51 S JACKSON AVE,Atlantic City,NJ,39.34505358,-74.46565509,RES3B,3001,,17,ME,1910,1910,3301,2,1,1781.609704,1781.609704,3504,YES,29.88,39.06,-4,0,6106,114.0286,123.730538,133.473299,139.958268,I,Above,Hip,0,NaN,Wood,34.46893211,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5723,NJBF000065418,49 N JACKSON AVE,Atlantic City,NJ,39.34700753,-74.46721506,RES3A,3001,,17,NE,1900,1900,3301,2,1,1215.781962,1215.781962,3505,YES,22.19,33.6,3,-0.14,6106,113.968979,123.681218,133.42194,139.902854,I,Above,Flat,0,5701,Wood,27.89298869,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5724,NJBF000070599,317 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36775212,-74.42839735,RES1,3001,,27,NE,2006,2006,3103,2,2,2142.403743,2142.403743,3505,NO,29.65,35.64,3,6.23,6106,114.556718,124.162889,133.963696,140.210088,I,Above,Gable,0,5701,Wood,32.64709766,0,0,,,,1,1,,0.03,nav,1,2006,2,, 5725,NJBF000069908,,Atlantic City,NJ,39.36493257,-74.41499629,RES3B,3001,,NaN,E,1969,0,3303,3,1,1909.050924,1909.050924,3507,NO,53.77,64.39,1,1.73,6106,114.876013,124.437712,134.264463,140.456592,I,Above,Flat,0,NaN,Wood,59.08224515,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5726,NJBF000065363,31 S KINGSTON AVE,Atlantic City,NJ,39.34684672,-74.46269665,RES3A,3001,,45,NE,1900,1900,3301,2,2,1956.60491,1956.60491,3505,NO,22.17,31.06,3,-0.09,6106,114.070198,123.764171,133.511023,139.977678,I,Above,Hip,0,5701,Wood,26.61486573,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5727,NJBF000066163,17 S ANNAPOLIS AVE,Atlantic City,NJ,39.34908753,-74.45869429,RES3A,3001,,17,NE,1900,1900,3301,3,1,1447.988096,1447.988096,3504,YES,42.27,48.66,-4,0,6106,114.129056,123.811912,133.564446,140.006884,I,Above,Hip,0,5701,Wood,45.46198567,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5728,NJBF000067019,24 N ALBANY AVE,Atlantic City,NJ,39.35171,-74.455667,COM3,3003,210,NaN,ME,1969,0,3401,1,1,7396.253022,7396.253022,3507,NO,11.32,17.78,1,-0.74,6106,114.161927,123.838165,133.595084,140.015144,I,Above,Flat,0,NaN,Wood,14.5505078,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5729,NJBF000065739,46 N ABERDEEN PL,Atlantic City,NJ,39.34795238,-74.46460328,RES3A,3001,,17,NE,1920,1920,3301,2,1,1178.122017,1178.122017,3505,NO,28.51,37.22,3,6.17,6106,114.014154,123.717885,133.462125,139.930271,I,Above,Gable,0,5701,Wood,32.86445341,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5730,NJBF000065173,110 S RALEIGH AVE,Atlantic City,NJ,39.34630516,-74.4598556,RES3A,3001,,17,NE,1925,1925,3301,2,1,1412.813209,1412.813209,3504,YES,36.52,51.25,-4,0,6106,114.139424,123.821165,133.57197,140.030607,I,Above,Hip,0,5701,Wood,43.88199756,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5731,NJBF000065762,29 N KINGSTON AVE,Atlantic City,NJ,39.34802469,-74.46363923,RES3A,3001,,17,NE,1920,1920,3301,2,1,2084.026741,2084.026741,3505,NO,25.19,30.95,3,2.06,6106,114.034362,123.734427,133.47999,139.944592,I,Above,Hip,0,5701,Wood,28.07125759,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5732,NJBF000066630,24 S TRENTON AVE,Atlantic City,NJ,39.350292,-74.45572,RES3A,3001,,45,NE,1930,1930,3301,2,2,1802.289595,1802.289595,3504,NO,26.86,38.66,-4,0,6106,114.178725,123.852507,133.609382,140.035578,I,Above,Hip,0,5701,Wood,32.75920977,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5733,NJBF000066871,4015 WINCHESTER AVE,Atlantic City,NJ,39.35108175,-74.45974688,RES3A,3001,,17,NE,1900,1900,3301,2,1,1738.262269,1738.262269,3505,NO,28.9,40.52,3,6.5,6106,114.080644,123.771367,133.522333,139.959886,I,Above,Flat,0,5701,Wood,34.70853021,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5734,NJBF000066969,151 N ANNAPOLIS #D,Atlantic City,NJ,39.35149544,-74.46054072,RES3C,3001,,39,E,1973,1973,3303,4,1,7731.586948,7731.586948,3505,NO,55.51,62.55,3,0.74,6106,114.058031,123.752593,133.502395,139.940865,I,Above,Flat,0,NaN,Wood,59.03052536,0,0,,,,1,1,,0.03,nav,1,1973,4,, 5735,NJBF000069436,ATLANTIC CITY EXPRESSWAY,Atlantic City,NJ,39.36042107,-74.43964073,COM1,3003,,NaN,ME,1969,0,3401,3,1,31268.9545,31268.9545,3507,NO,57.43,63.11,1,-0.53,6106,114.402444,124.035253,133.817137,140.138705,I,Above,Flat,0,NaN,Wood,60.27432879,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5736,NJBF000069171,2531 FAIRMOUNT AVE,Atlantic City,NJ,39.35905089,-74.44486191,RES3B,3001,739,NaN,ME,1969,0,3301,2,1,1085.311442,1085.311442,3505,YES,34.91,45.3,3,0.44,6106,114.30606,123.955,133.728287,140.076607,I,Above,Flat,0,NaN,Wood,40.10577607,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5737,NJBF000069205,2525 FAIRMOUNT AVE,Atlantic City,NJ,39.3591605,-74.4447025,RES3A,3001,,33,NE,2017,2017,3301,2,1,711.1553569,711.1553569,3505,YES,38.32,50.91,3,5.36,6106,114.308167,123.956713,133.730249,140.0775,I,Above,Flat,0,5701,Wood,44.6135729,0,0,,,,1,1,,0.03,nav,1,2017,2,, 5738,NJBF000069212,2523 FAIRMOUNT AVE,Atlantic City,NJ,39.35918741,-74.44466658,RES3A,3001,,33,NE,1900,1900,3301,2,1,546.3267402,546.3267402,3505,YES,42.24,51.89,3,4.2,6106,114.308631,123.95709,133.730682,140.077686,I,Above,Flat,0,5701,Wood,47.06813021,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5739,NJBF000069216,2521 FAIRMOUNT AVE,Atlantic City,NJ,39.359206,-74.444623,RES3A,3001,,33,NE,1900,1900,3301,2,1,794.1425758,794.1425758,3505,YES,33.06,39.65,3,6.78,6106,114.309353,123.957686,133.731348,140.078101,I,Above,Gable,0,5701,Wood,36.35469781,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5740,NJBF000069234,2511 FAIRMOUNT AVE,Atlantic City,NJ,39.35927931,-74.44439583,RES3A,3001,,33,NE,1900,1900,3301,2,1,584.9460834,584.9460834,3505,YES,30.01,39.83,3,4.85,6106,114.313386,123.961027,133.735056,140.080609,I,Above,Flat,0,5701,Wood,34.91904498,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5741,NJBF000068664,17 N FLORIDA AVE,Atlantic City,NJ,39.357357,-74.4420135,RES3B,3001,331,NaN,ME,1969,0,3301,2,1,9406.214559,9406.214559,3505,YES,36.13,49.39,3,-0.06,6106,114.388556,124.024726,133.802896,140.145956,I,Above,Flat,0,NaN,Wood,42.7584079,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5742,NJBF000071224,35 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36981367,-74.41339201,RES3D,3004,,27,E,2003,2003,3303,2,2,1121.546212,1121.546212,3505,NO,29.91,38.95,3,3.3,6106,114.852081,124.416427,134.245829,140.414909,I,Above,Hip,0,NaN,Wood,34.43174067,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5743,NJBF000070728,725 N OHIO AVE,Atlantic City,NJ,39.36819445,-74.4399249,RES1,3001,,45,NE,1900,1900,3102,2,2,732.1167659,732.1167659,3505,YES,27.3,34.87,3,0.65,6106,114.303576,123.94779,133.727714,140.020982,I,Above,Flat,0,5701,Wood,31.0862982,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5744,NJBF000070716,723 N OHIO AVE,Atlantic City,NJ,39.36815865,-74.43989986,RES1,3001,,33,NE,1930,1930,3102,2,1,732.9406237,732.9406237,3505,YES,29.04,42.98,3,4.72,6106,114.304526,123.948616,133.728593,140.021895,I,Above,Flat,0,5701,Wood,36.00987464,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5745,NJBF000070707,721 N OHIO AVE,Atlantic City,NJ,39.36812388,-74.43986879,RES1,3001,,35,NE,1920,1920,3102,2,1,690.934461,690.934461,3505,YES,45.17,58.29,3,8.56,6106,114.305605,123.94955,133.72959,140.022905,I,Above,Flat,0,5701,Wood,51.73376287,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5746,NJBF000068572,216 N CHELSEA AVE,Atlantic City,NJ,39.35714735,-74.45155754,RES3A,3001,,45,NE,1900,1900,3301,2,2,1859.32927,1859.32927,3507,YES,24.32,31.99,1,-0.75,6106,114.183811,123.854001,133.616759,139.998747,I,Above,Gable,0,5701,Wood,28.15367598,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5747,NJBF000068538,212 N CHELSEA AVE,Atlantic City,NJ,39.35705046,-74.45148983,RES3A,3001,,45,NE,1905,1905,3301,2,2,1863.808707,1863.808707,3507,YES,27.31,35.43,1,-0.18,6106,114.186487,123.856271,133.619147,140.001282,I,Above,Gable,0,5701,Wood,31.37087818,0,0,,,,1,1,,0.03,nav,1,1905,2,, 5748,NJBF000068545,218 N CHELSEA AVE RR,Atlantic City,NJ,39.357059,-74.4517835,RES3A,3001,,45,NE,1900,1900,3301,1,2,860.3879971,860.3879971,3507,NO,13.9,19.4,1,-1,6106,114.17997,123.850854,133.613269,139.996466,I,Above,Flat,0,5701,Wood,16.64778826,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5749,NJBF000070443,,Atlantic City,NJ,39.36714963,-74.42740259,RES1,3001,,NaN,NE,1969,0,3103,5,1,3719.768978,3719.768978,3505,NO,67.68,76.96,3,-0.77,6106,114.585118,124.18738,133.990144,140.234162,I,Above,Flat,0,5701,Wood,72.31867418,0,0,,,,1,1,,0.03,nav,1,1969,5,, 5750,NJBF000069021,142 WESTMINSTER AVE,Atlantic City,NJ,39.35841701,-74.42807034,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1432.650127,1432.650127,3507,YES,32.26,47.11,1,2.89,6106,114.676065,124.267059,134.069426,140.346073,I,Above,Flat,0,NaN,Wood,39.68511253,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5751,NJBF000069209,118 N GEORGIA AVE,Atlantic City,NJ,39.359185,-74.442297,RES3B,3001,,45,ME,1900,1900,3301,2,3,924.7185633,924.7185633,3505,NO,30.75,38.94,3,3.64,6106,114.360023,124.000131,133.777663,140.114993,I,Above,Flat,0,NaN,Wood,34.84469419,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5752,NJBF000067616,102 S TEXAS AVE #B,Atlantic City,NJ,39.35397843,-74.44233589,RES3A,3004,,33,NE,1900,1900,3301,2,1,821.1838011,821.1838011,3505,YES,40.77,48.8,3,4.61,6106,114.423475,124.054922,133.832697,140.189699,I,Above,Gable,0,5701,Wood,44.78576694,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5753,NJBF000072783,628 CARSON AVE,Atlantic City,NJ,39.3749145,-74.4249925,IND3,3001,,45,E,1981,1981,3401,2,2,1681.727914,1681.727914,3507,NO,40.19,52.5,1,2.58,6106,114.546262,124.150291,133.955794,140.162426,I,Above,Gable,0,NaN,Wood,46.3445084,0,0,,,,1,1,,0.03,nav,1,1981,2,, 5754,NJBF000069634,1300 ATLANTIC AVE,Atlantic City,NJ,39.36228311,-74.42689436,COM1,3003,737,NaN,ME,1969,0,3401,8,1,16485.53561,16485.53561,3507,YES,89.21,103.55,1,-0.47,6106,114.654201,124.247794,134.052119,140.310343,I,Above,Flat,0,NaN,Wood,96.37515249,0,0,,,,1,1,,0.03,nav,1,1969,8,, 5755,NJBF000069618,26 S NORTH CAROLINA AVE,Atlantic City,NJ,39.3621455,-74.425214,COM1,3003,100,NaN,ME,1969,0,3401,3,1,2484.796914,2484.796914,3507,NO,44.8,51.59,1,1.45,6106,114.691833,124.279918,134.087357,140.33814,I,Above,Hip,0,NaN,Wood,48.19688327,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5756,NJBF000069149,,Atlantic City,NJ,39.35893729,-74.43034107,COM1,3003,,NaN,ME,1969,0,3401,2,1,25893.96152,25893.96152,3507,NO,24.92,36.78,1,1.14,6106,114.620948,124.220198,134.018465,140.304032,I,Above,Flat,0,NaN,Wood,30.85009313,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5757,NJBF000065336,4300 ATLANTIC AVE,Atlantic City,NJ,39.34677034,-74.46022638,RES3A,3001,,18,NE,1920,1920,3301,3,1,1767.818668,1767.818668,3504,NO,50.8,65.3,-4,0,6106,114.125314,123.809458,133.559762,140.017803,I,Above,Flat,0,5701,Wood,58.05071245,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5758,NJBF000064347,110 S NEWTON AVE,Atlantic City,NJ,39.34426577,-74.46496333,RES3A,3001,,18,NE,1925,1925,3301,2,1,2297.759545,2297.759545,3504,YES,33.98,40.65,-4,0,6106,114.054072,123.751562,133.495205,139.981359,I,Above,Hip,0,5701,Wood,37.31464238,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5759,NJBF000064845,129 S KINGSTON AVE,Atlantic City,NJ,39.34546883,-74.4616014,RES3A,3001,100,NaN,NE,1969,0,3301,3,10,1962.106562,1962.106562,3504,YES,41.76,55.87,-4,0,6106,114.112067,123.798865,133.547179,140.01591,I,Above,Hip,0,5701,Wood,48.813167,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5760,NJBF000064515,113 S MONTGOMERY AVE,Atlantic City,NJ,39.34467971,-74.46386707,RES3A,3001,,18,NE,1919,1919,3301,2,1,2854.691562,2854.691562,3504,YES,37.29,43.82,-4,0,6106,114.072694,123.766732,133.511883,139.992308,I,Above,Hip,0,5701,Wood,40.55628395,0,0,,,,1,1,,0.03,nav,1,1919,2,, 5761,NJBF000064599,4503 BOARDWALK,Atlantic City,NJ,39.34487359,-74.46180137,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2000.807942,2000.807942,3504,NO,13.5,25.54,-4,0,6106,114.115431,123.801745,133.549742,140.021775,I,Above,Flat,0,5701,Wood,19.51949999,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5762,NJBF000071068,23 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36928882,-74.41332251,RES3D,3004,,27,E,2003,2003,3303,2,2,2056.01447,2056.01447,3505,NO,41.19,46.44,3,2.72,6106,114.859722,124.423142,134.252757,140.423119,I,Above,Hip,0,NaN,Wood,43.81446839,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5763,NJBF000071089,23 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36936425,-74.41312117,RES3D,3004,,27,E,2003,2003,3303,2,2,885.4557496,885.4557496,3505,NO,36.3,45.47,3,3.71,6106,114.863117,124.426075,134.256083,140.425214,I,Above,Flat,0,NaN,Wood,40.88648237,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5764,NJBF000071561,191 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.370936,-74.41440817,RES3D,3004,,27,E,2000,2000,3303,2,2,1782.828636,1782.828636,3505,NO,29.24,37.57,3,4.29,6106,114.817397,124.386113,134.213304,140.383877,I,Above,Hip,0,NaN,Wood,33.40600484,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 5765,NJBF000071525,185 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.370829,-74.41433767,RES3D,3004,,27,E,2000,2000,3303,2,2,1763.792502,1763.792502,3505,NO,39.15,48.61,3,5.71,6106,114.820132,124.38851,134.215859,140.386425,I,Above,Hip,0,NaN,Wood,43.87857441,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 5766,NJBF000072766,433 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3748571,-74.41703457,RES3C,3001,,27,ME,2003,2003,3301,2,2,1882.48227,1882.48227,3505,NO,35.84,48.77,3,5.1,6106,114.716213,124.297112,134.118218,140.288914,I,Above,Gable,0,NaN,Wood,42.30354878,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5767,NJBF000072243,17 BARKENTINE CT,Atlantic City,NJ,39.37301613,-74.41780786,RES3C,3001,,35,ME,1990,1990,3301,2,1,3771.051269,3771.051269,3505,NO,33.82,48.62,3,6.53,6106,114.721056,124.302022,134.122039,140.302294,I,Above,Flat,0,NaN,Wood,41.22011336,0,0,,,,1,1,,0.03,nav,1,1990,2,, 5768,NJBF000072134,23 BARKENTINE CT,Atlantic City,NJ,39.37266546,-74.41757344,RES3C,3001,,35,ME,1990,1990,3301,2,1,1902.675845,1902.675845,3505,NO,35.7,41.44,3,4.07,6106,114.730115,124.309989,134.130549,140.310827,I,Above,Hip,0,NaN,Wood,38.57039199,0,0,,,,1,1,,0.03,nav,1,1990,2,, 5769,NJBF000072504,401 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.373912,-74.416402,RES3C,3001,,27,ME,2003,2003,3301,2,2,1889.000854,1889.000854,3505,NO,31.25,40.31,3,1.04,6106,114.740529,124.318564,134.141166,140.311909,I,Above,Hip,0,NaN,Wood,35.78182109,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5770,NJBF000072546,107 ADRIATIC AVE,Atlantic City,NJ,39.37404796,-74.41617022,RES3C,3001,,17,ME,2003,2003,3301,2,1,1155.440723,1155.440723,3505,NO,21.36,33.18,3,-2.91,6106,114.743879,124.32142,134.144452,140.313662,I,Above,Gable,0,NaN,Wood,27.27384159,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5771,NJBF000071989,318 N RHODE ISLAND AVE,Atlantic City,NJ,39.37220487,-74.4190773,IND1,3003,100,NaN,E,1969,0,3401,2,1,845.3251506,845.3251506,3507,NO,38.21,50.71,1,2.32,6106,114.703503,124.287143,134.104841,140.29368,I,Above,Flat,0,NaN,Wood,44.45856169,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5772,NJBF000072052,4 CLIPPER CT,Atlantic City,NJ,39.37243665,-74.41825883,RES3C,3001,,35,ME,1990,1990,3301,2,1,3644.955444,3644.955444,3505,NO,28.93,42.86,3,-2.12,6106,114.718192,124.299754,134.11901,140.303258,I,Above,Hip,0,NaN,Wood,35.89622828,0,0,,,,1,1,,0.03,nav,1,1990,2,, 5773,NJBF000071628,180 N MAINE AVE,Atlantic City,NJ,39.37111157,-74.41343233,RES3D,3004,,18,E,2006,2006,3303,3,1,2057.19709,2057.19709,3505,NO,33.07,42.94,3,-2.8,6106,114.836012,124.402229,134.231343,140.396595,I,Above,Hip,0,NaN,Wood,38.00478217,0,0,,,,1,1,,0.03,nav,1,2006,3,, 5774,NJBF000070683,30 S MAINE AVE,Atlantic City,NJ,39.36804395,-74.4113357,RES3E,3003,,45,E,1925,1925,3303,3,3,1717.732979,1717.732979,3505,YES,57.49,70.08,3,-0.25,6102,114.916492,124.472559,134.306308,140.470549,I,Above,Flat,0,NaN,Wood,63.78398575,0,0,,,,1,1,,0.03,nav,1,1925,3,, 5775,NJBF000070195,122 DEWEY PL,Atlantic City,NJ,39.36616827,-74.41089634,RES3A,3001,,45,NE,1920,1920,3301,2,2,1169.274673,1169.274673,3505,YES,41.74,55.22,3,2.79,6106,114.948112,124.500092,134.334887,140.502552,I,Above,Flat,0,5701,Wood,48.48225121,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5776,NJBF000069900,400 PACIFIC AVE,Atlantic City,NJ,39.3648785,-74.4146015,RES3B,3001,29,NaN,E,1900,0,3303,3,1,3236.763784,3236.763784,3507,NO,41.48,56.01,1,1.28,6106,114.885021,124.445496,134.273025,140.463346,I,Above,Flat,0,NaN,Wood,48.74352596,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5777,NJBF000065645,32 S RALEIGH AVE,Atlantic City,NJ,39.34769502,-74.46096918,RES3A,3001,,18,NE,1925,1925,3301,3,1,1543.440307,1543.440307,3505,YES,58.61,67.17,3,6.05,6106,114.097122,123.786047,133.535328,139.992087,I,Above,Gable,0,5701,Wood,62.88972233,0,0,,,,1,1,,0.03,nav,1,1925,3,, 5778,NJBF000065605,38 S RALEIGH AVE,Atlantic City,NJ,39.34758971,-74.46090483,RES3A,3001,,45,NE,1929,1929,3301,2,2,1869.098736,1869.098736,3505,NO,38.16,48.41,3,4.38,6106,114.099875,123.788338,133.537708,139.994694,I,Above,Hip,0,5701,Wood,43.28927174,0,0,,,,1,1,,0.03,nav,1,1929,2,, 5779,NJBF000066198,21 S PARKER AVE,Atlantic City,NJ,39.3491736,-74.45807606,RES3A,3001,,45,NE,1925,1925,3301,3,2,2123.754499,2123.754499,3504,YES,39.8,45.12,-4,0,6106,114.141474,123.822116,133.575543,140.015325,I,Above,Hip,0,5701,Wood,42.45780096,0,0,,,,1,1,,0.03,nav,1,1925,3,, 5780,NJBF000069145,2516 FAIRMOUNT AVE,Atlantic City,NJ,39.35892541,-74.44443698,RES3B,3001,,17,ME,1900,2017,3301,2,1,1008.242532,1008.242532,3505,YES,35.75,42.64,3,3.3,6106,114.316818,123.964054,133.738057,140.085152,I,Above,Gable,0,NaN,Wood,39.19530278,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5781,NJBF000065689,53 S LACLEDE PL,Atlantic City,NJ,39.34781169,-74.45958329,RES3A,3001,,45,NE,1940,1940,3301,2,2,1669.96149,1669.96149,3505,NO,26.81,33.37,3,4.85,6106,114.125959,123.809726,133.560972,140.012164,I,Above,Hip,0,5701,Wood,30.09261904,0,0,,,,1,1,,0.03,nav,1,1940,2,, 5782,NJBF000069067,9 FAIRMOUNT TERR,Atlantic City,NJ,39.35864996,-74.4443169,RES3B,3001,,33,ME,1900,1900,3301,2,1,618.9867994,618.9867994,3505,YES,31.65,41.52,3,0.03,6106,114.322782,123.969162,133.743394,140.091068,I,Above,Flat,0,NaN,Wood,36.58934168,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5783,NJBF000069078,7 FAIRMOUNT TERR,Atlantic City,NJ,39.35868117,-74.44434049,RES3B,3001,,33,ME,1900,1900,3301,2,1,526.7241438,526.7241438,3505,YES,27.54,38.46,3,3.96,6106,114.321904,123.968414,133.742605,140.090252,I,Above,Flat,0,NaN,Wood,32.99817591,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5784,NJBF000069085,5 FAIRMOUNT TERR,Atlantic City,NJ,39.35871263,-74.44435631,RES3B,3001,,33,ME,1900,1900,3301,2,1,538.1495847,538.1495847,3505,YES,42.08,53.53,3,4.58,6106,114.321166,123.967783,133.741943,140.089532,I,Above,Flat,0,NaN,Wood,47.80628585,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5785,NJBF000069181,,Atlantic City,NJ,39.35909572,-74.4417771,RES3B,3001,,NaN,ME,1900,0,3301,2,1,2067.536373,2067.536373,3505,NO,23.67,30.25,3,-1.69,6106,114.37237,124.01052,133.788933,140.124441,I,Above,Flat,0,NaN,Wood,26.95786441,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5786,NJBF000068683,124 N IOWA AVE,Atlantic City,NJ,39.35740007,-74.44757829,RES3A,3001,,45,NE,1900,1900,3301,2,2,1930.000749,1930.000749,3505,YES,28.53,40.6,3,0.31,6106,114.267312,123.923369,133.692419,140.058069,I,Above,Hip,0,5701,Wood,34.56829114,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5787,NJBF000068485,21 N TEXAS AVE,Atlantic City,NJ,39.35692197,-74.44345687,RES3B,3001,,17,ME,1930,2006,3301,2,1,759.5598671,759.5598671,3505,NO,33.03,45.09,3,6.23,6106,114.362649,124.003182,133.77899,140.129753,I,Above,Hip,0,NaN,Wood,39.06155565,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5788,NJBF000070181,112 N VIRGINIA AVE,Atlantic City,NJ,39.36611042,-74.42465457,RES1,3001,,27,NE,2000,2000,3102,2,2,2064.913737,2064.913737,3505,NO,36.86,45.63,3,-0.92,6106,114.656238,124.248543,134.056612,140.291581,I,Above,Hip,0,5701,Wood,41.24522223,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5789,NJBF000070234,115 N VIRGINIA AVE,Atlantic City,NJ,39.36635258,-74.42424549,RES1,3001,,27,NE,2000,2000,3102,2,2,1997.364933,1997.364933,3505,NO,38.8,49.11,3,5.99,6106,114.662111,124.253498,134.062306,140.294557,I,Above,Hip,0,5701,Wood,43.95574676,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5790,NJBF000070188,116 N VIRGINIA AVE,Atlantic City,NJ,39.366143,-74.424981,RES1,3001,,27,NE,2000,2000,3102,2,2,518.3306395,518.3306395,3505,NO,39.94,50.49,3,2.56,6106,114.648878,124.242234,134.049685,140.286055,I,Above,Flat,0,5701,Wood,45.21392453,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5791,NJBF000070213,116 N VIRGINIA AVE,Atlantic City,NJ,39.36624624,-74.42474398,RES1,3001,,27,NE,2000,2000,3102,2,2,2008.488189,2008.488189,3505,NO,33.77,44.4,3,-2.98,6106,114.652719,124.24549,134.053372,140.288299,I,Above,Hip,0,5701,Wood,39.08668925,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5792,NJBF000066016,4001 ATLANTIC AVE,Atlantic City,NJ,39.34869715,-74.45738098,RES3A,3001,,NaN,NE,1969,0,3301,1,1,8295.858084,8295.858084,3504,NO,13.6,27.77,-4,0,6106,114.162769,123.839801,133.594233,140.033417,I,Above,Flat,0,5701,Wood,20.68838601,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5793,NJBF000068449,16 N BELLEVUE AVE,Atlantic City,NJ,39.35679895,-74.44303943,RES3B,3001,275,45,ME,1925,1925,3301,3,2,1074.67946,1074.67946,3505,YES,50.37,56.19,3,-1.96,6106,114.373225,124.012075,133.788582,140.138062,I,Above,Hip,0,NaN,Wood,53.27996308,0,0,,,,1,1,,0.03,nav,1,1925,3,, 5794,NJBF000066063,4209 VENTNOR AVE,Atlantic City,NJ,39.34882689,-74.46086717,RES3A,3001,,NaN,NE,1900,0,3301,1,1,1793.523325,1793.523325,3505,NO,21.57,34.5,3,7.34,6106,114.084829,123.775605,133.525035,139.976463,I,Above,Flat,0,5701,Wood,28.0353108,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5795,NJBF000066099,12 N LACLEDE PL,Atlantic City,NJ,39.34890653,-74.46102968,RES3A,3001,,45,NE,1900,1900,3301,2,2,1198.542854,1198.542854,3505,YES,25.74,37.33,3,2.73,6106,114.080235,123.771803,133.521002,139.972654,I,Above,Flat,0,5701,Wood,31.53373732,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5796,NJBF000066032,4215 VENTNOR AVE,Atlantic City,NJ,39.3487305,-74.46102934,RES3A,3001,738,NaN,NE,1969,0,3301,3,1,1484.496221,1484.496221,3505,YES,55.77,62.88,3,0.21,6106,114.08251,123.773729,133.522931,139.975356,I,Above,Flat,0,5701,Wood,59.32502077,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5797,NJBF000068462,10 N FLORIDA AVE,Atlantic City,NJ,39.3568401,-74.4425519,COM1,3003,560,NaN,ME,1969,0,3401,2,1,7107.308502,7107.308502,3507,YES,32.88,43.55,1,0.83,6106,114.383272,124.020472,133.797784,140.145059,I,Above,Gable,0,NaN,Wood,38.21302063,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5798,NJBF000068555,2821 CARLTON AVE,Atlantic City,NJ,39.35710323,-74.44833772,RES3A,3001,,33,NE,1900,1900,3301,2,1,2222.834758,2222.834758,3505,YES,26.3,34.85,3,2.91,6106,114.254444,123.912775,133.680636,140.050462,I,Above,Gable,0,5701,Wood,30.57446358,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5799,NJBF000069804,600 PACIFIC AVE,Atlantic City,NJ,39.36413119,-74.41706105,RES3C,3004,,NaN,E,1969,0,3303,4,1,1452.160818,1452.160818,3507,NO,65.45,75.82,1,0.16,6106,114.841774,124.408233,134.23101,140.435905,I,Above,Gable,0,NaN,Wood,70.63125994,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5800,NJBF000069759,600 PACIFIC AVE,Atlantic City,NJ,39.36371517,-74.41703851,RES3C,3004,,NaN,E,1969,0,3303,3,1,2759.924443,2759.924443,3507,NO,47.56,55.2,1,1.44,6106,114.847245,124.412975,134.235819,140.441902,I,Above,Flat,0,NaN,Wood,51.37827994,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5801,NJBF000069772,600 PACIFIC AVE,Atlantic City,NJ,39.36383205,-74.41720532,RES3C,3004,,NaN,E,1969,0,3303,4,1,1427.150316,1427.150316,3507,NO,56.96,63.93,1,2.9,6106,114.842308,124.408715,134.231231,140.437773,I,Above,Hip,0,NaN,Wood,60.44933146,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5802,NJBF000069799,600 PACIFIC AVE,Atlantic City,NJ,39.36409471,-74.41730278,RES3C,3004,,NaN,E,1969,0,3303,4,1,1467.034392,1467.034392,3507,NO,74.33,82.02,1,0.98,6106,114.837062,124.404176,134.226486,140.432693,I,Above,Gable,0,NaN,Wood,78.17362099,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5803,NJBF000069814,600 PACIFIC AVE,Atlantic City,NJ,39.36420834,-74.41719923,RES3C,3004,,NaN,E,1969,0,3303,3,1,1366.021013,1366.021013,3507,NO,45.92,59.29,1,2.69,6106,114.837915,124.404902,134.227406,140.432745,I,Above,Flat,0,NaN,Wood,52.60408567,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5804,NJBF000069748,600 PACIFIC AVE,Atlantic City,NJ,39.36360055,-74.41687282,RES3C,3004,,NaN,E,1969,0,3303,4,1,1336.895933,1336.895933,3507,NO,70.58,82.36,1,2.77,6106,114.852146,124.417204,134.240376,140.445988,I,Above,Flat,0,NaN,Wood,76.46851598,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5805,NJBF000069749,600 PACIFIC AVE,Atlantic City,NJ,39.36360548,-74.41759618,RES3C,3004,,NaN,E,1969,0,3303,3,1,1362.425031,1362.425031,3507,NO,51.25,60.1,1,1.37,6106,114.836725,124.403925,134.225697,140.434885,I,Above,Flat,0,NaN,Wood,55.67471021,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5806,NJBF000069755,600 PACIFIC AVE,Atlantic City,NJ,39.36368282,-74.41773546,RES3C,3004,,NaN,E,1969,0,3303,4,1,1342.656202,1342.656202,3507,NO,76.28,86.93,1,0.59,6106,114.832829,124.400566,134.222066,140.431697,I,Above,Flat,0,NaN,Wood,81.6086625,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5807,NJBF000069745,222 S RHODE ISLAND AVE,Atlantic City,NJ,39.36359463,-74.41333957,RES3A,3001,20,NaN,NE,1969,0,3301,3,1,1780.583455,1780.583455,3505,YES,46.37,59.91,3,-0.27,6106,114.927218,124.481989,134.312062,140.49992,I,Above,Flat,0,5701,Wood,53.13672938,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5808,NJBF000069098,106 N GEORGIA AVE,Atlantic City,NJ,39.35876525,-74.44206811,RES3B,3001,,45,ME,1900,1900,3301,2,3,1553.043366,1553.043366,3505,NO,36.97,48.6,3,2.68,6106,114.370114,124.008757,133.786716,140.12469,I,Above,Flat,0,NaN,Wood,42.78904424,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5809,NJBF000069082,2401 ARCTIC AVE,Atlantic City,NJ,39.35869402,-74.44201582,RES3B,3001,210,NaN,ME,1969,0,3301,1,1,1319.536512,1319.536512,3505,NO,17.91,28.69,3,6.1,6106,114.372108,124.010457,133.78851,140.126536,I,Above,Flat,0,NaN,Wood,23.29947492,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5810,NJBF000068352,3115 FAIRMOUNT AVE,Atlantic City,NJ,39.35646249,-74.45151671,RES3A,3001,,45,NE,1905,1900,3301,2,2,2169.980827,2169.980827,3507,YES,41.24,52.86,1,2.68,6106,114.193148,123.862081,133.624983,140.009647,I,Above,Gable,0,5701,Wood,47.05175684,0,0,,,,1,1,,0.03,nav,1,1905,2,, 5811,NJBF000069101,2325 ARCTIC AVE,Atlantic City,NJ,39.358771,-74.441538,COM1,3003,738,NaN,ME,1969,0,3401,2,1,690.9699995,690.9699995,3507,YES,23.73,36.73,1,1.02,6106,114.381516,124.018317,133.797164,140.1329,I,Above,Hip,0,NaN,Wood,30.230441,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5812,NJBF000069102,2327 ARCTIC AVE,Atlantic City,NJ,39.35877185,-74.44165913,COM1,3003,738,NaN,ME,1969,0,3401,3,1,2244.567649,2244.567649,3507,YES,58.44,70.49,1,1.38,6106,114.378884,124.016109,133.794753,140.130992,I,Above,Gable,0,NaN,Wood,64.46429139,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5813,NJBF000070112,117 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36587466,-74.42554051,RES1,3001,,17,NE,1900,1900,3102,2,1,1276.714632,1276.714632,3505,NO,31.06,42.18,3,7.93,6106,114.640092,124.234801,134.04124,140.2811,I,Above,Flat,0,5701,Wood,36.61898998,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5814,NJBF000068318,203 N SOVEREIGN AVE,Atlantic City,NJ,39.3563415,-74.4526695,RES3D,3001,560,NaN,E,1969,0,3303,2,1,12148.97018,12148.97018,3507,NO,28.08,34.38,1,0.36,6106,114.169532,123.842537,133.60366,139.993136,I,Above,Flat,0,NaN,Wood,31.23052964,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5815,NJBF000070303,112 N MARYLAND AVE,Atlantic City,NJ,39.36662573,-74.42338959,RES1,3001,,27,NE,2001,2001,3102,2,2,2106.439278,2106.439278,3505,NO,36.28,42.03,3,2.45,6106,114.67713,124.266287,134.076672,140.304029,I,Above,Hip,0,5701,Wood,39.15779304,0,0,,,,1,1,,0.03,nav,1,2001,2,, 5816,NJBF000072230,500 CASPIAN AVE,Atlantic City,NJ,39.37297587,-74.42194015,RES1,3001,,17,NE,1925,1925,3102,2,1,1143.318507,1143.318507,3505,NO,31.89,40,3,6.21,6106,114.633647,124.226547,134.038477,140.238002,I,Above,Hip,0,5701,Wood,35.9447572,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5817,NJBF000071409,1601 MCKINLEY AVE,Atlantic City,NJ,39.3705115,-74.4370855,RES1,3001,,16,NE,1900,1900,3101,1,1,1164.36358,1164.36358,3505,NO,17.21,30.9,3,2.57,6106,114.337807,123.975151,133.75947,140.03267,I,Above,Flat,0,5701,Wood,24.05727726,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5818,NJBF000066521,18 S HARRISBURG AVE,Atlantic City,NJ,39.349971,-74.4569345,RES3A,3001,,45,NE,1900,1900,3301,1,2,1918.889561,1918.889561,3504,NO,13.07,19.31,-4,0,6106,114.156259,123.834064,133.58915,140.02129,I,Above,Hip,0,5701,Wood,16.19032621,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5819,NJBF000072250,502 N CONNECTICUT AVE,Atlantic City,NJ,39.3730335,-74.42287767,RES1,3001,,16,NE,1900,1900,3102,1,1,1537.88684,1537.88684,3505,NO,12.86,27.76,3,-2.67,6106,114.613004,124.208738,134.018836,140.222427,I,Above,Gable,0,5701,Wood,20.3112474,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5820,NJBF000069527,20 S TENNESSEE AVE,Atlantic City,NJ,39.36129271,-74.42784802,COM1,3003,,NaN,ME,1969,0,3401,3,1,3417.390032,3417.390032,3507,YES,35.48,43.22,1,2.97,6106,114.64574,124.240801,134.04345,140.309453,I,Above,Flat,0,NaN,Wood,39.35043073,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5821,NJBF000069464,1608 ATLANTIC AVE,Atlantic City,NJ,39.36064431,-74.43071036,REL1,3004,100,NaN,ME,1969,0,3401,2,2,25229.6063,25229.6063,3507,YES,32.04,41.88,1,-0.69,6106,114.5922,124.195456,133.992967,140.274407,I,Above,Flat,0,NaN,Wood,36.96015916,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5822,NJBF000069452,1626 ATLANTIC AVE,Atlantic City,NJ,39.36051185,-74.43135802,COM1,3003,100,NaN,ME,1969,0,3401,1,1,3922.160961,3922.160961,3507,NO,18.1,29.73,1,1.37,6106,114.57988,124.18504,133.9814,140.266255,I,Above,Flat,0,NaN,Wood,23.9167726,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5823,NJBF000069438,1638 ATLANTIC AVE,Atlantic City,NJ,39.36042232,-74.43156862,COM1,3003,100,NaN,ME,1969,0,3401,3,1,3034.664202,3034.664202,3507,YES,58.57,68.5,1,1.54,6106,114.576439,124.182146,133.978136,140.264263,I,Above,Flat,0,NaN,Wood,63.53616038,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5824,NJBF000065618,31 N TALLAHASSEE AVE,Atlantic City,NJ,39.347625,-74.46479082,RES3A,3001,,17,NE,1900,1900,3301,2,1,1503.325635,1503.325635,3505,NO,33.66,46.87,3,1.73,6106,114.014238,123.718061,133.462045,139.932317,I,Above,Gable,0,5701,Wood,40.26607579,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5825,NJBF000067431,9 N BOSTON AVE,Atlantic City,NJ,39.35345993,-74.45193284,RES3B,3001,,45,ME,1900,1900,3301,2,2,1191.313837,1191.313837,3504,YES,35.22,46.46,-4,0,6106,114.221404,123.886768,133.649267,140.047836,I,Above,Hip,0,NaN,Wood,40.84107936,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5826,NJBF000067433,7 N BOSTON AVE,Atlantic City,NJ,39.35346599,-74.45164267,RES3B,3001,100,NaN,ME,1969,0,3301,2,1,1751.435158,1751.435158,3504,NO,34.75,49.26,-4,0,6106,114.227649,123.891945,133.654891,140.052308,I,Above,Flat,0,NaN,Wood,42.00181423,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5827,NJBF000065692,54 N TALLAHASSEE AVE,Atlantic City,NJ,39.34783167,-74.46543265,RES3A,3001,,18,NE,1900,1900,3301,2,1,1854.779355,1854.779355,3505,YES,28.87,37.93,3,-0.25,6106,113.997482,123.704268,133.447379,139.918783,I,Above,Hip,0,5701,Wood,33.40154496,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5828,NJBF000067852,2618 MONTEREY AVE,Atlantic City,NJ,39.354788,-74.4434095,RES3A,3004,,17,NE,1930,1930,3301,2,1,784.3076792,784.3076792,3505,NO,32.29,43.35,3,-0.93,6106,114.390101,124.026806,133.802802,140.161418,I,Above,Hip,0,5701,Wood,37.82125704,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5829,NJBF000070130,1530 DREXEL AVE,Atlantic City,NJ,39.36594689,-74.43321962,RES1,3001,,17,NE,1965,1965,3102,1,1,1712.881506,1712.881506,3505,NO,11.57,21.62,3,-2.82,6106,114.474553,124.093769,133.886093,140.16001,I,Above,Hip,0,5701,Wood,16.5959147,0,0,,,,1,1,,0.03,nav,1,1965,1,, 5830,NJBF000070911,448 N OCEAN AVE,Atlantic City,NJ,39.36883516,-74.43196312,RES1,3001,,17,NE,1900,1900,3103,2,1,712.9032199,712.9032199,3505,NO,28.96,40.98,3,4.13,6106,114.467502,124.086332,133.880345,140.138484,I,Above,Gable,0,5701,Wood,34.96736911,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5831,NJBF000069796,126 BAY ST,Atlantic City,NJ,39.364078,-74.4305695,RES3D,3004,282,NaN,E,1969,0,3303,3,1,1158.088814,1158.088814,3505,NO,56.65,63.78,3,-1.33,6106,114.553777,124.161813,133.959224,140.228121,I,Above,Flat,0,NaN,Wood,60.215277,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5832,NJBF000070915,645 N KENTUCKY AVE,Atlantic City,NJ,39.36884282,-74.43554415,RES1,3001,,17,NE,1900,1900,3101,1,1,1144.87613,1144.87613,3505,NO,21.69,32,3,5.95,6106,114.390423,124.020848,133.808372,140.081524,I,Above,Flat,0,5701,Wood,26.84666471,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5833,NJBF000069883,1416 MEDITERRANEAN AVE,Atlantic City,NJ,39.36476881,-74.43096581,RES3D,3004,,NaN,E,1969,0,3303,3,1,8613.505891,8613.505891,3505,NO,50.8,57.1,3,3.9,6106,114.537012,124.14731,133.943905,140.212146,I,Above,Hip,0,NaN,Wood,53.95075595,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5834,NJBF000069970,1416 MEDITERRANEAN AVE,Atlantic City,NJ,39.36524734,-74.43085434,RES3D,3004,,NaN,E,1969,0,3303,4,1,8420.017276,8420.017276,3505,NO,49.22,58.33,3,5.37,6106,114.533716,124.144323,133.941048,140.207112,I,Above,Hip,0,NaN,Wood,53.77622539,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5835,NJBF000070885,444 N OCEAN AVE,Atlantic City,NJ,39.36875843,-74.43197336,RES1,3001,,17,NE,1900,1900,3103,1,1,1288.415416,1288.415416,3505,NO,24.11,35.41,3,4.62,6106,114.46819,124.086959,133.880971,140.139429,I,Above,Flat,0,5701,Wood,29.76115448,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5836,NJBF000070088,1511 MEDITERRANEAN AVE,Atlantic City,NJ,39.36575577,-74.43261619,RES1,3001,,17,NE,1900,1900,3102,1,1,1423.598683,1423.598683,3505,NO,22.78,29.75,3,8.93,6106,114.489807,124.106803,133.90025,140.172239,I,Above,Gable,0,5701,Wood,26.2669588,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5837,NJBF000068963,229 S TENNESSEE AVE,Atlantic City,NJ,39.35817933,-74.42522985,COM8,3003,100,NaN,ME,1969,0,3401,1,1,1331.277409,1331.277409,3507,NO,17.07,27.12,1,2.71,6106,114.739834,124.321331,134.128871,140.392677,I,Above,Flat,0,NaN,Wood,22.09917082,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5838,NJBF000070866,1541 SEWELL AVE,Atlantic City,NJ,39.36868948,-74.43546183,RES1,3001,,16,NE,1962,1962,3101,1,1,1233.729068,1233.729068,3505,NO,12.07,24.86,3,-0.42,6106,114.393991,124.023967,133.811676,140.085059,I,Above,Flat,0,5701,Wood,18.4637681,0,0,,,,1,1,,0.03,nav,1,1962,1,, 5839,NJBF000067592,105 ALBION PL,Atlantic City,NJ,39.3539093,-74.44249524,RES3A,3004,100,NaN,NE,1969,0,3301,2,1,1872.380007,1872.380007,3505,NO,26.19,39.76,3,-0.53,6106,114.420892,124.052777,133.830291,140.188237,I,Above,Hip,0,5701,Wood,32.97512073,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5840,NJBF000067449,4 CHARLES CT,Atlantic City,NJ,39.35353675,-74.44104092,RES3A,3004,,33,NE,1920,1900,3301,2,1,1539.292574,1539.292574,3505,YES,36.32,50.61,3,1.01,6106,114.457031,124.083103,133.863016,140.215955,I,Above,Flat,0,5701,Wood,43.46541551,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5841,NJBF000066497,105 N DELANCY PL,Atlantic City,NJ,39.34990826,-74.4631304,RES3A,3001,,45,NE,1910,1910,3301,2,2,1372.011313,1372.011313,3505,NO,33.33,39.54,3,0.52,6106,114.021427,123.723149,133.469371,139.923697,I,Above,Hip,0,5701,Wood,36.43409502,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5842,NJBF000067350,2523 BOARDWALK,Atlantic City,NJ,39.35319373,-74.44084361,RES4,3003,100,NaN,E,1969,0,3404,2,1,3608.868361,3608.868361,3507,YES,39.18,47.93,1,2.5,6106,114.46559,124.090336,133.870571,140.223873,I,Above,Gable,0,NaN,Wood,43.55764193,0,0,,,,2,2,,0.03,nav,1,1969,2,, 5843,NJBF000066162,7 S WINDSOR AVE,Atlantic City,NJ,39.34908752,-74.45922599,RES3A,3001,,17,NE,1900,1900,3301,2,1,1067.687494,1067.687494,3505,NO,41.97,50.5,3,4.47,6106,114.117416,123.802329,133.554097,139.998486,I,Above,Hip,0,5701,Wood,46.23842959,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5844,NJBF000066200,4100 VENTNOR AVE,Atlantic City,NJ,39.3491787,-74.45926099,RES3A,3001,738,NaN,NE,1969,0,3301,3,1,1990.633907,1990.633907,3505,YES,53.34,65.29,3,5.96,6106,114.115487,123.800713,133.55243,139.996554,I,Above,Gable,0,5701,Wood,59.31679324,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5845,NJBF000066721,4121 WINCHESTER AVE,Atlantic City,NJ,39.35058046,-74.46083317,RES3A,3001,,45,NE,1900,1900,3301,2,2,954.4410074,954.4410074,3505,NO,41.2,48.77,3,5.24,6106,114.063227,123.757229,133.506662,139.950209,I,Above,Hip,0,5701,Wood,44.98652912,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5846,NJBF000067058,54 N TRENTON AVE,Atlantic City,NJ,39.35190827,-74.45700565,RES3A,3001,,45,NE,1920,1920,3301,3,2,936.0896433,936.0896433,3505,YES,46.55,56.26,3,3.37,6106,114.130169,123.81187,133.566794,139.990963,I,Above,Hip,0,5701,Wood,51.40366416,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5847,NJBF000067050,,Atlantic City,NJ,39.35185167,-74.45647244,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1364.404053,1364.404053,3505,NO,20.35,30.76,3,4.45,6106,114.142547,123.822108,133.577825,140.000275,I,Above,Flat,0,5701,Wood,25.55318303,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5848,NJBF000066133,55 S DOVER AVE,Atlantic City,NJ,39.34900638,-74.45714496,RES3A,3001,,45,NE,1910,1910,3301,2,2,1670.802724,1670.802724,3504,NO,36.42,51.39,-4,0,6106,114.163975,123.840711,133.595491,140.032483,I,Above,Hip,0,5701,Wood,43.90259962,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5849,NJBF000066184,45 S DOVER AVE,Atlantic City,NJ,39.34913843,-74.45722546,RES3A,3001,,45,NE,1900,1900,3301,2,2,1236.396736,1236.396736,3504,NO,26.52,40.48,-4,0,6106,114.16054,123.837842,133.592506,140.029246,I,Above,Flat,0,5701,Wood,33.50082222,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5850,NJBF000070341,106 CHESAPEAKE BAY CT,Atlantic City,NJ,39.36675991,-74.42246541,RES1,3001,,28,NE,2004,2004,3102,2,2,1985.879315,1985.879315,3505,NO,26.16,38.08,3,1.62,6106,114.695282,124.281818,134.093942,140.316518,I,Above,Hip,0,5701,Wood,32.12096337,0,0,,,,1,1,,0.03,nav,1,2004,2,, 5851,NJBF000066694,126 N LACLEDE PL,Atlantic City,NJ,39.350486,-74.46226883,RES3A,3001,,17,NE,1910,1910,3301,1,1,1062.832846,1062.832846,3505,NO,15.04,25.85,3,1.74,6106,114.032952,123.732385,133.479787,139.928628,I,Above,Hip,0,5701,Wood,20.44561119,0,0,,,,1,1,,0.03,nav,1,1910,1,, 5852,NJBF000066663,122 N LACLEDE PL,Atlantic City,NJ,39.35040802,-74.46222089,RES3A,3001,,17,NE,1920,1920,3301,2,1,1231.787373,1231.787373,3505,NO,38.04,50.65,3,7.33,6106,114.034996,123.734094,133.481568,139.930601,I,Above,Gable,0,5701,Wood,44.34339362,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5853,NJBF000067038,50 N TRENTON AVE,Atlantic City,NJ,39.35177608,-74.45708933,RES3A,3001,,17,NE,1900,1900,3301,1,1,1664.055415,1664.055415,3505,NO,21.4,35.38,3,7.24,6106,114.13002,123.811797,133.566605,139.991641,I,Above,Flat,0,5701,Wood,28.3860178,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5854,NJBF000066171,34 S DOVER AVE,Atlantic City,NJ,39.349106,-74.457685,RES3A,3001,,45,NE,1910,1910,3301,3,3,2099.347584,2099.347584,3504,YES,34.76,46.64,-4,0,6106,114.150893,123.829898,133.583892,140.022501,I,Above,Hip,0,5701,Wood,40.70217873,0,0,,,,1,1,,0.03,nav,1,1910,3,, 5855,NJBF000066193,64 N DELANCY PL,Atlantic City,NJ,39.34915169,-74.46304774,RES3A,3001,,27,NE,1920,1920,3301,2,2,2089.146816,2089.146816,3505,YES,32.97,43.87,3,7.1,6106,114.032875,123.732824,133.479187,139.936682,I,Above,Hip,0,5701,Wood,38.41982664,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5856,NJBF000066232,21 N LACLEDE PL,Atlantic City,NJ,39.34925134,-74.46075199,RES3A,3001,,45,NE,1920,1920,3301,2,3,1677.593549,1677.593549,3505,NO,43.52,58.51,3,4.71,6106,114.081926,123.77308,133.522668,139.971822,I,Above,Hip,0,5701,Wood,51.01255824,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5857,NJBF000066607,117 N DELANCY PL,Atlantic City,NJ,39.35021533,-74.46336144,RES3A,3001,,45,NE,1920,1920,3301,2,2,1647.551935,1647.551935,3505,NO,24.84,37.07,3,1.88,6106,114.012452,123.715663,133.461549,139.915229,I,Above,Hip,0,5701,Wood,30.95203047,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5858,NJBF000066158,23 N RALEIGH AVE,Atlantic City,NJ,39.34907707,-74.46151886,RES3A,3001,,45,NE,1915,1915,3301,2,2,1395.498129,1395.498129,3505,NO,35.43,49.02,3,2.33,6106,114.067348,123.761157,133.509663,139.962274,I,Above,Flat,0,5701,Wood,42.22298917,0,0,,,,1,1,,0.03,nav,1,1915,2,, 5859,NJBF000066985,3916 PHYLLIS AVE,Atlantic City,NJ,39.35160081,-74.45903705,RES3A,3001,,33,NE,1900,1900,3301,2,1,1809.467596,1809.467596,3505,YES,30.61,37,3,5.29,6106,114.089621,123.778556,133.530522,139.963303,I,Above,Flat,0,5701,Wood,33.80393811,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5860,NJBF000067069,49 N TRENTON AVE,Atlantic City,NJ,39.35194019,-74.45654982,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,1509.511592,1509.511592,3505,NO,31.74,42.83,3,7.48,6106,114.139733,123.819752,133.575349,139.997711,I,Above,Flat,0,5701,Wood,37.28359338,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5861,NJBF000067842,9 N MORRIS AVE,Atlantic City,NJ,39.35472305,-74.44812729,RES3B,3001,,45,ME,1900,1900,3301,1,3,1228.219249,1228.219249,3504,NO,19.27,26.75,-4,0,6106,114.288496,123.942063,133.71045,140.088889,I,Above,Hip,0,NaN,Wood,23.01236536,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5862,NJBF000068198,2836 ARCTIC AVE,Atlantic City,NJ,39.35598207,-74.44761113,RES3B,3001,,27,ME,1910,1910,3301,2,2,1420.446953,1420.446953,3504,YES,34.19,44.91,-4,0,6106,114.284088,123.93793,133.707057,140.078457,I,Above,Gable,0,NaN,Wood,39.55085532,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5863,NJBF000070289,,Atlantic City,NJ,39.36658599,-74.42569224,RES1,3001,,NaN,NE,1969,0,3102,2,1,882.7152193,882.7152193,3505,NO,41.67,56.66,3,7.35,6106,114.628413,124.224586,134.030638,140.268793,I,Above,Gable,0,5701,Wood,49.16119023,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5864,NJBF000070869,111 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36869748,-74.41786068,RES3D,3004,,28,E,2000,2000,3303,2,2,2234.422553,2234.422553,3505,NO,38.45,51.21,3,1.45,6106,114.770412,124.345982,134.166711,140.361092,I,Above,Gable,0,NaN,Wood,44.83144846,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 5865,NJBF000071095,136 HOUSTON AVE,Atlantic City,NJ,39.36939043,-74.41804631,RES3D,3004,,17,E,2000,2000,3303,2,1,1140.745593,1140.745593,3505,NO,26.98,40.49,3,4.03,6106,114.75832,124.335371,134.15563,140.348681,I,Above,Flat,0,NaN,Wood,33.73699036,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 5866,NJBF000071341,201 DYLAN DR,Atlantic City,NJ,39.37027585,-74.41459542,RES3D,3004,,28,E,1998,1998,3303,2,2,1268.250338,1268.250338,3505,NO,36.66,50.81,3,3.22,6106,114.821166,124.389527,134.216456,140.390006,I,Above,Flat,0,NaN,Wood,43.73290162,0,0,,,,1,1,,0.03,nav,1,1998,2,, 5867,NJBF000070252,16 S RHODE ISLAND AVE,Atlantic City,NJ,39.36644048,-74.41529385,RES3D,3004,562,45,E,1925,1925,3303,2,4,3028.867871,3028.867871,3505,NO,26.92,38.06,3,-0.03,6106,114.851685,124.416563,134.242606,140.431558,I,Above,Hip,0,NaN,Wood,32.49222162,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5868,NJBF000069761,1000 ATLANTIC AVE,Atlantic City,NJ,39.3637275,-74.4229455,COM1,3003,100,NaN,ME,1969,0,3401,4,1,517.9356504,517.9356504,3507,NO,55.5,70.1,1,0.18,6106,114.721249,124.304772,134.11633,140.351131,I,Above,Hip,0,NaN,Wood,62.80203417,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5869,NJBF000069727,14 S VIRGINIA AVE,Atlantic City,NJ,39.36344113,-74.42287666,COM1,3003,100,45,ME,1950,1950,3401,3,2,743.9027254,743.9027254,3507,YES,37.43,48.97,1,0.32,6106,114.726152,124.309023,134.120733,140.356145,I,Above,Flat,0,NaN,Wood,43.20366903,0,0,,,,1,1,,0.03,nav,1,1950,3,, 5870,NJBF000070720,47 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36817825,-74.41754273,RES3D,3004,,17,E,1900,1900,3303,3,1,1408.734017,1408.734017,3505,YES,61.44,71.08,3,3.12,6106,114.783299,124.35722,134.178647,140.373148,I,Above,Flat,0,NaN,Wood,66.25869087,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5871,NJBF000069824,900 ATLANTIC AVE,Atlantic City,NJ,39.36429333,-74.42190606,COM1,3003,,NaN,ME,1969,0,3401,3,1,9383.910186,9383.910186,3507,NO,31.64,41.65,1,-0.55,6106,114.736643,124.317858,134.131329,140.359323,I,Above,Flat,0,NaN,Wood,36.6444331,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5872,NJBF000069918,,Atlantic City,NJ,39.36499032,-74.41656493,COM1,3003,,NaN,ME,1969,0,3401,3,1,1753.3182,1753.3182,3507,NO,41.92,56.65,1,1.11,6106,114.842012,124.408363,134.232043,140.431804,I,Above,Flat,0,NaN,Wood,49.28489005,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5873,NJBF000069943,42 S CONGRESS AVE,Atlantic City,NJ,39.36512489,-74.41667393,RES3D,3004,,17,E,1910,1910,3303,2,1,1999.356333,1999.356333,3505,YES,23.5,37.94,3,-1.74,6106,114.838079,124.404958,134.228416,140.428294,I,Above,Flat,0,NaN,Wood,30.72008543,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5874,NJBF000069645,1015 PACIFIC AVE,Atlantic City,NJ,39.36244233,-74.42304387,COM1,3003,,NaN,ME,1969,0,3401,2,1,12225.55526,12225.55526,3507,NO,27.96,33.07,1,-0.67,6106,114.734631,124.316442,134.127911,140.367374,I,Above,Flat,0,NaN,Wood,30.51226893,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5875,NJBF000069676,14 S MANSION AVE,Atlantic City,NJ,39.3627656,-74.42463937,COM1,3003,,27,ME,1900,1900,3401,3,2,1402.243964,1402.243964,3507,YES,56.38,65.5,1,1.65,6106,114.696632,124.2839,134.092363,140.338373,I,Above,Flat,0,NaN,Wood,60.94198215,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5876,NJBF000067816,28 S SPRAY AVE,Atlantic City,NJ,39.35462323,-74.44318966,RES3A,3004,,45,NE,1900,1900,3301,2,2,1021.41896,1021.41896,3505,YES,31.57,44.32,3,6.28,6106,114.396924,124.032556,133.808917,140.167211,I,Above,Flat,0,5701,Wood,37.94361801,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5877,NJBF000067794,22 S CALIFORNIA AVE,Atlantic City,NJ,39.35453956,-74.44406402,RES4,3003,,45,E,1900,1900,3404,3,2,4267.214286,4267.214286,3507,YES,41.56,53.46,1,-0.59,6106,114.379008,124.017604,133.792538,140.154865,I,Above,Hip,0,NaN,Wood,47.50877803,0,0,,,,2,2,,0.03,nav,1,1900,3,, 5878,NJBF000067953,59 S BELLEVUE AVE,Atlantic City,NJ,39.35515013,-74.44165338,RES3A,3004,,45,NE,1920,1920,3301,3,2,571.3330833,571.3330833,3505,YES,31.65,43.63,3,-0.38,6106,114.423667,124.054797,133.833678,140.183408,I,Above,Flat,0,5701,Wood,37.63949134,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5879,NJBF000069839,24 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36445067,-74.42515863,COM1,3003,100,NaN,ME,1969,0,3401,2,1,2449.853751,2449.853751,3507,NO,37.88,49.64,1,1.57,6106,114.665262,124.256718,134.06405,140.306914,I,Above,Hip,0,NaN,Wood,43.76013185,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5880,NJBF000065831,46 S WINDSOR AVE,Atlantic City,NJ,39.34820384,-74.45900389,RES3A,3001,,45,NE,1900,1900,3301,3,4,1963.125116,1963.125116,3505,NO,52.64,58.93,3,-2.79,6106,114.133594,123.815902,133.567984,140.015351,I,Above,Hip,0,5701,Wood,55.78876751,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5881,NJBF000069734,1301 BACHARACH BLVD,Atlantic City,NJ,39.36349607,-74.42845285,COM1,3003,,NaN,ME,1969,0,3401,1,1,41454.54765,41454.54765,3507,NO,14.26,29.03,1,1.87,6106,114.60618,124.206578,134.007922,140.269246,I,Above,Flat,0,NaN,Wood,21.64466346,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5882,NJBF000069739,1535 BACHARACH BLVD,Atlantic City,NJ,39.36355095,-74.43137351,EDU2,3003,,NaN,E,1969,0,3401,2,1,41727.94604,41727.94604,3507,NO,26.76,38.66,1,-1,6106,114.542827,124.152695,133.94872,140.223056,I,Above,Flat,0,NaN,Wood,32.71066046,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5883,NJBF000069750,1125 ATLANTIC AVE,Atlantic City,NJ,39.3636202,-74.42547751,COM1,3003,100,NaN,ME,1969,0,3401,7,1,17740.41043,17740.41043,3507,YES,77.4,87.75,1,-0.29,6106,114.668406,124.259608,134.066433,140.313562,I,Above,Flat,0,NaN,Wood,82.57602609,0,0,,,,1,1,,0.03,nav,1,1969,7,, 5884,NJBF000069778,1125 ATLANTIC AVE,Atlantic City,NJ,39.36387167,-74.42541979,COM1,3003,100,NaN,ME,1969,0,3401,7,1,1918.559035,1918.559035,3507,YES,105.06,116.08,1,1.9,6106,114.666621,124.258023,134.064931,140.310948,I,Above,Gable,0,NaN,Wood,110.5736046,0,0,,,,1,1,,0.03,nav,1,1969,7,, 5885,NJBF000070448,129 N MARYLAND AVE,Atlantic City,NJ,39.36717993,-74.42328391,RES1,3001,,17,NE,1900,1910,3102,3,1,1925.469363,1925.469363,3505,YES,54.43,61.59,3,6.09,6106,114.672823,124.262431,134.072936,140.297958,I,Above,Flat,0,5701,Wood,58.0115763,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5886,NJBF000066374,31 S ELBERON AVE,Atlantic City,NJ,39.3495978,-74.45688524,RES3A,3001,,45,NE,1900,1900,3301,3,3,1635.93279,1635.93279,3504,NO,40.05,53.15,-4,0,6106,114.162102,123.838997,133.594158,140.027681,I,Above,Gable,0,5701,Wood,46.60334091,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5887,NJBF000067776,350 N HARRISBURG AVE,Atlantic City,NJ,39.35447361,-74.46014628,RES1,3001,,17,NE,1900,1900,3102,2,1,1692.661536,1692.661536,3505,NO,23.63,31.75,3,-1.41,6106,114.029293,123.727552,133.477654,139.901473,I,Above,Hip,0,5701,Wood,27.69182532,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5888,NJBF000067711,309 N TRENTON AVE,Atlantic City,NJ,39.3542522,-74.45812989,COM1,3003,,17,ME,1925,1925,3401,2,1,1652.356647,1652.356647,3507,YES,30.52,38.36,1,-0.59,6106,114.076188,123.76632,133.519404,139.937399,I,Above,Hip,0,NaN,Wood,34.43939099,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5889,NJBF000067047,,Atlantic City,NJ,39.35182444,-74.46291029,RES1,3001,,NaN,NE,1969,0,3102,2,1,1813.118857,1813.118857,3505,NO,22.49,27.88,3,-2.15,6106,114.001952,123.706356,133.452767,139.897608,I,Above,Flat,0,5701,Wood,25.1851333,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5890,NJBF000067395,108 N ST DAVIDS PL,Atlantic City,NJ,39.35332626,-74.4558463,RES3B,3001,,27,E,1900,1930,3303,2,2,5316.432768,5316.432768,3507,YES,34.11,45.44,1,2.74,6106,114.137695,123.817522,133.574084,139.987965,I,Above,Flat,0,NaN,Wood,39.77678187,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5891,NJBF000066042,62 N BARTRAM AVE,Atlantic City,NJ,39.34875391,-74.46382745,RES3A,3001,,17,NE,1920,1920,3301,2,1,1467.667754,1467.667754,3505,NO,30.38,40.88,3,8.13,6106,114.020883,123.723128,133.468421,139.930325,I,Above,Gable,0,5701,Wood,35.63276253,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5892,NJBF000065700,43 N TALLAHASSEE AVE,Atlantic City,NJ,39.34785728,-74.4649897,RES3A,3001,,17,NE,1920,1920,3301,2,1,1408.251411,1408.251411,3505,NO,26.08,37.94,3,-1.84,6106,114.006883,123.71196,133.455672,139.925525,I,Above,Hip,0,5701,Wood,32.01179436,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5893,NJBF000066003,56 N BARTRAM AVE,Atlantic City,NJ,39.34866593,-74.46380598,RES3A,3001,,18,NE,1920,1920,3301,2,1,1362.154735,1362.154735,3505,NO,23.55,30.97,3,2.16,6106,114.022472,123.724461,133.469785,139.932022,I,Above,Gable,0,5701,Wood,27.25667948,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5894,NJBF000064849,21 S JACKSON AVE,Atlantic City,NJ,39.3454765,-74.4659655,RES3B,3001,,17,ME,1920,1920,3301,2,1,1352.21764,1352.21764,3504,NO,32.36,42.71,-4,0,6106,114.0163,123.720368,133.462732,139.946803,I,Above,Hip,0,NaN,Wood,37.53730902,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5895,NJBF000064746,4712 THERESA PL,Atlantic City,NJ,39.34521838,-74.46550117,RES3B,3001,,27,ME,1900,1900,3301,2,2,1486.494189,1486.494189,3504,YES,22.26,29.52,-4,0,6106,114.029842,123.731515,133.47449,139.958187,I,Above,Hip,0,NaN,Wood,25.89186504,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5896,NJBF000065466,,Atlantic City,NJ,39.34716123,-74.46091148,RES3A,3001,,NaN,NE,1900,0,3301,2,1,2076.687209,2076.687209,3505,NO,32.97,43.43,3,8.25,6106,114.105271,123.792887,133.542238,140.001114,I,Above,Hip,0,5701,Wood,38.2001656,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5897,NJBF000066616,51 N WINDSOR AVE,Atlantic City,NJ,39.35024253,-74.46019506,RES3A,3001,,45,NE,1920,1920,3301,2,2,1279.630015,1279.630015,3505,NO,27.66,42.07,3,5.74,6106,114.081481,123.77237,133.522727,139.965547,I,Above,Flat,0,5701,Wood,34.86619145,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5898,NJBF000065201,4703 VENTNOR AVE,Atlantic City,NJ,39.34638951,-74.46581391,RES3A,3001,,45,NE,1925,1925,3301,2,2,1695.951223,1695.951223,3505,NO,33.18,45.47,3,7.26,6106,114.007743,123.713118,133.45571,139.935052,I,Above,Hip,0,5701,Wood,39.32163064,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5899,NJBF000068162,26 N IOWA AVE,Atlantic City,NJ,39.35584924,-74.44652066,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,1854.102809,1854.102809,3504,NO,30.42,37.46,-4,0,6106,114.309419,123.959097,133.729984,140.097506,I,Above,Flat,0,NaN,Wood,33.94172322,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5900,NJBF000065081,50 S ABERDEEN PL,Atlantic City,NJ,39.34608746,-74.46313436,RES1,3001,,18,NE,1925,1925,3102,1,1,1430.18105,1430.18105,3504,NO,12.88,19.32,-4,0,6106,114.070457,123.76458,133.510806,139.982381,I,Above,Gable,0,5701,Wood,16.09930944,0,0,,,,1,1,,0.03,nav,1,1925,1,, 5901,NJBF000065195,30 S ABERDEEN PL,Atlantic City,NJ,39.3463685,-74.463493,RES1,3001,,18,NE,1920,1920,3102,2,1,525.2739131,525.2739131,3504,NO,24.35,30.74,-4,0,6106,114.058945,123.755069,133.500811,139.972394,I,Above,Hip,0,5701,Wood,27.54708534,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5902,NJBF000065242,30 S ABERDEEN PL,Atlantic City,NJ,39.34649551,-74.46346749,RES1,3001,,18,NE,1920,1920,3102,2,1,1586.557948,1586.557948,3504,NO,38.98,45.33,-4,0,6106,114.057858,123.754143,133.499926,139.970844,I,Above,Hip,0,5701,Wood,42.15465204,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5903,NJBF000066105,4431 WINCHESTER AVE,Atlantic City,NJ,39.34891727,-74.46426528,RES3A,3001,,17,NE,1900,1900,3301,2,1,1406.223718,1406.223718,3505,NO,31.43,36.86,3,7.1,6106,114.009186,123.713479,133.458164,139.920759,I,Above,Hip,0,5701,Wood,34.14316323,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5904,NJBF000067553,34 N BOSTON AVE,Atlantic City,NJ,39.35381693,-74.4527034,RES3B,3001,,45,E,1900,1900,3303,3,2,1887.319342,1887.319342,3507,YES,54.2,60.58,1,-0.12,6106,114.200152,123.869015,133.630309,140.030383,I,Above,Hip,0,NaN,Wood,57.38925777,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5905,NJBF000067520,34 N BOSTON AVE,Atlantic City,NJ,39.3537155,-74.4528835,RES3B,3001,,45,E,1900,1900,3303,3,2,710.7834778,710.7834778,3507,YES,37.87,49.88,1,0.69,6106,114.197502,123.866858,133.627883,140.029064,I,Above,Gable,0,NaN,Wood,43.87459929,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5906,NJBF000065954,4505 WINCHESTER AVE,Atlantic City,NJ,39.34852589,-74.46502309,RES3A,3001,,45,NE,1900,1900,3301,2,2,1323.07569,1323.07569,3505,NO,36.26,48.23,3,2.38,6106,113.997563,123.704095,133.44775,139.914609,I,Above,Hip,0,5701,Wood,42.24414132,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5907,NJBF000065966,115 N TALLAHASSEE AVE,Atlantic City,NJ,39.34857367,-74.46557333,RES3A,3001,,17,NE,1900,1900,3301,2,1,954.4130796,954.4130796,3505,YES,38.48,51.7,3,4.63,6106,113.984873,123.693684,133.436589,139.904979,I,Above,Flat,0,5701,Wood,45.08906833,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5908,NJBF000067318,8 N PROVIDENCE AVE,Atlantic City,NJ,39.3530591,-74.45358443,RES3B,3001,,NaN,E,1910,0,3303,4,1,4322.81771,4322.81771,3507,NO,69.74,81.12,1,2.91,6106,114.190426,123.861246,133.621239,140.027804,I,Above,Flat,0,NaN,Wood,75.4313757,0,0,,,,1,1,,0.03,nav,1,1910,4,, 5909,NJBF000067165,5 N ST DAVIDS PL,Atlantic City,NJ,39.35240318,-74.45463082,RES3B,3001,,45,E,1920,1920,3303,2,2,1247.765388,1247.765388,3507,NO,32.24,42.69,1,2.73,6106,114.175817,123.849398,133.60784,140.021101,I,Above,Flat,0,NaN,Wood,37.46463291,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5910,NJBF000069934,7 MARYLAND TERR,Atlantic City,NJ,39.36506531,-74.42278967,COM1,3003,,NaN,ME,1969,0,3401,3,1,1564.263419,1564.263419,3507,NO,56.87,67.75,1,1.8,6106,114.708534,124.293605,134.105323,140.335009,I,Above,Flat,0,NaN,Wood,62.3098303,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5911,NJBF000069910,19 N VIRGINIA AVE,Atlantic City,NJ,39.364945,-74.42329447,COM1,3003,100,NaN,ME,1969,0,3401,3,1,3460.410777,3460.410777,3507,YES,38.49,50.16,1,2.88,6106,114.699208,124.285642,134.096421,140.328886,I,Above,Flat,0,NaN,Wood,44.32533896,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5912,NJBF000070564,,Atlantic City,NJ,39.36762208,-74.4183587,RES3D,3004,,NaN,E,1969,0,3303,4,1,1631.497072,1631.497072,3505,NO,52.97,64.56,3,2.22,6106,114.772528,124.348048,134.167959,140.368175,I,Above,Gable,0,NaN,Wood,58.76454154,0,0,,,,1,1,,0.03,nav,1,1969,4,, 5913,NJBF000070537,627 ARCTIC AVE,Atlantic City,NJ,39.367502,-74.420132,RES3D,3004,,17,E,2007,1900,3303,3,1,1264.388294,1264.388294,3505,YES,31.54,46.19,3,-2.91,6106,114.736216,124.3168,134.133292,140.342397,I,Above,Gable,0,NaN,Wood,38.86559652,0,0,,,,1,1,,0.03,nav,1,2007,3,, 5914,NJBF000070249,18 N NEW JERSEY AVE,Atlantic City,NJ,39.36641758,-74.42065468,COM1,3003,441,NaN,ME,1969,0,3401,1,1,65064.61414,65064.61414,3507,NO,14.15,29.12,1,1.98,6106,114.737939,124.318536,134.134166,140.34928,I,Above,Flat,0,NaN,Wood,21.63521856,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5915,NJBF000070066,,Atlantic City,NJ,39.36568974,-74.42505444,RES1,3001,,NaN,NE,1969,0,3102,2,1,1919.80324,1919.80324,3505,NO,42.44,52.48,3,8.15,6106,114.652708,124.245646,134.053023,140.291251,I,Above,Flat,0,5701,Wood,47.46114684,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5916,NJBF000070093,,Atlantic City,NJ,39.36578553,-74.42510037,RES1,3001,,NaN,NE,1969,0,3102,2,1,749.7495734,749.7495734,3505,NO,34.6,42.26,3,1.76,6106,114.650582,124.243799,134.051076,140.289196,I,Above,Gable,0,5701,Wood,38.43212062,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5917,NJBF000070455,,Atlantic City,NJ,39.36720854,-74.42219689,RES1,3001,,NaN,NE,2004,0,3102,2,1,2183.53807,2183.53807,3505,NO,28.45,42.78,3,5.55,6106,114.695675,124.282031,134.094602,140.314439,I,Above,Hip,0,5701,Wood,35.61596756,0,0,,,,1,1,,0.03,nav,1,2004,2,, 5918,NJBF000069535,1924 BALTIC AVE,Atlantic City,NJ,39.36136192,-74.43680683,COM1,3003,101,NaN,ME,1969,0,3401,1,1,2806.148826,2806.148826,3507,NO,19.35,31.22,1,2.38,6106,114.452236,124.076826,133.863487,140.169495,I,Above,Gable,0,NaN,Wood,25.28343355,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5919,NJBF000068912,2400 AUBURN TERR,Atlantic City,NJ,39.35800044,-74.44181963,RES3B,3001,,NaN,ME,1930,0,3301,2,1,3016.556327,3016.556327,3505,NO,24.65,33.57,3,0.17,6106,114.384855,124.021401,133.799845,140.139669,I,Above,Flat,0,NaN,Wood,29.10958399,0,0,,,,1,1,,0.03,nav,1,1930,2,, 5920,NJBF000069605,1713 ARCTIC AVE,Atlantic City,NJ,39.3620511,-74.43389296,REL1,3001,,NaN,ME,1969,0,3401,3,1,4255.439253,4255.439253,3507,NO,41.32,47.53,1,2.79,6106,114.506706,124.1226,133.914301,140.205119,I,Above,Hip,0,NaN,Wood,44.42572624,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5921,NJBF000069593,1717 ARCTIC AVE,Atlantic City,NJ,39.36196321,-74.43396892,REL1,3001,,NaN,ME,1969,0,3401,3,1,2284.87087,2284.87087,3507,NO,45.94,58.23,1,2.89,6106,114.506133,124.122145,133.913721,140.205188,I,Above,Hip,0,NaN,Wood,52.08387485,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5922,NJBF000071629,136 MADISON AVE,Atlantic City,NJ,39.37111934,-74.41419912,RES3D,3004,,17,E,2000,2000,3303,2,1,1125.172779,1125.172779,3505,NO,31.7,44.48,3,-1.68,6106,114.819685,124.388056,134.215632,140.384614,I,Above,Hip,0,NaN,Wood,38.08735816,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5923,NJBF000064878,4707 THERESA PL,Atlantic City,NJ,39.3455665,-74.465582,RES3B,3001,,45,ME,1925,1925,3301,2,2,1914.368125,1914.368125,3504,NO,35.88,49.41,-4,0,6106,114.023534,123.726266,133.469146,139.951522,I,Above,Hip,0,NaN,Wood,42.64815357,0,0,,,,1,1,,0.03,nav,1,1925,2,, 5924,NJBF000068733,18 N GEORGIA AVE,Atlantic City,NJ,39.35750977,-74.44163974,RES3B,3001,,45,ME,1900,1900,3301,3,3,2193.361745,2193.361745,3505,YES,54.95,64.17,3,-1.82,6106,114.394772,124.029884,133.808668,140.149572,I,Above,Hip,0,NaN,Wood,59.56086778,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5925,NJBF000068752,18 N GEORGIA AVE,Atlantic City,NJ,39.357548,-74.441441,RES3B,3001,,45,ME,1900,1900,3301,3,3,843.1797266,843.1797266,3505,YES,44.22,50.49,3,-0.31,6106,114.398613,124.033092,133.812205,140.152124,I,Above,Flat,0,NaN,Wood,47.35694561,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5926,NJBF000068844,2500 ARCTIC AVE,Atlantic City,NJ,39.35776662,-74.44294979,RES3B,3001,738,NaN,ME,1915,0,3301,3,1,640.625433,640.625433,3505,YES,51.27,62.5,3,-1.95,6106,114.363239,124.003373,133.779954,140.125391,I,Above,Gable,0,NaN,Wood,56.88672736,0,0,,,,1,1,,0.03,nav,1,1915,3,, 5927,NJBF000068623,2800 CARLTON AVE,Atlantic City,NJ,39.357269,-74.4474865,RES3A,3001,,17,NE,1997,1997,3301,2,1,1366.836816,1366.836816,3505,YES,44.34,57.95,3,6.08,6106,114.270923,123.926436,133.695648,140.061455,I,Above,Hip,0,5701,Wood,51.1464895,0,0,,,,1,1,,0.03,nav,1,1997,2,, 5928,NJBF000068577,34 N BELLEVUE AVE,Atlantic City,NJ,39.35715813,-74.44328121,RES3B,3001,,33,ME,1900,1925,3301,2,1,2232.00699,2232.00699,3505,NO,34.73,43.73,3,0,6106,114.363556,124.003858,133.77994,140.129071,I,Above,Gable,0,NaN,Wood,39.22837763,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5929,NJBF000069404,2200 FAIRMOUNT AVE,Atlantic City,NJ,39.3601503,-74.44038312,COM1,3003,,NaN,ME,1969,0,3401,6,1,78345.1994,78345.1994,3507,NO,83.01,89.39,1,1.11,6106,114.389693,124.024643,133.805295,140.130999,I,Above,Flat,0,NaN,Wood,86.20235266,0,0,,,,1,1,,0.03,nav,1,1969,6,, 5930,NJBF000068553,2705 ARCTIC AVE,Atlantic City,NJ,39.35709876,-74.44581983,RES3A,3001,,45,NE,1900,1900,3301,3,2,1246.541491,1246.541491,3505,YES,47.81,55.27,3,2.94,6106,114.309204,123.958446,133.730369,140.090171,I,Above,Hip,0,5701,Wood,51.54047174,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5931,NJBF000068588,103 MAXWELL AVE,Atlantic City,NJ,39.35718427,-74.44628685,RES3A,3001,100,NaN,NE,1969,0,3301,2,1,1072.824816,1072.824816,3505,YES,27.41,40.42,3,0.01,6106,114.298017,123.949073,133.720231,140.081586,I,Above,Flat,0,5701,Wood,33.91653743,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5932,NJBF000068732,2806 FAIRMOUNT AVE,Atlantic City,NJ,39.357509,-74.447869,RES3A,3001,,45,NE,1900,1900,3301,3,2,1050.575103,1050.575103,3505,YES,42.55,57.16,3,8.95,6106,114.259646,123.916932,133.685502,140.051864,I,Above,Hip,0,5701,Wood,49.85550232,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5933,NJBF000068491,102 MAXWELL AVE,Atlantic City,NJ,39.35693087,-74.44655551,RES3A,3001,,45,NE,1900,1900,3301,2,4,1557.809577,1557.809577,3505,NO,40.18,49.1,3,3.17,6106,114.295291,123.9469,133.717645,140.081075,I,Above,Flat,0,5701,Wood,44.64066045,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5934,NJBF000068457,2721 ARCTIC AVE,Atlantic City,NJ,39.356819,-74.446426,RES3A,3001,738,NaN,NE,1969,0,3301,2,1,1114.640318,1114.640318,3505,YES,31.26,44.67,3,5.65,6106,114.299495,123.950452,133.721417,140.084763,I,Above,Flat,0,5701,Wood,37.96535899,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5935,NJBF000068754,2520 ARCTIC AVE,Atlantic City,NJ,39.3575515,-74.443733,RES3B,3001,,45,ME,1900,1900,3301,2,2,1215.028665,1215.028665,3505,NO,21.31,27.69,3,-2.22,6106,114.348922,123.991469,133.766773,140.116283,I,Above,Gable,0,NaN,Wood,24.50167859,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5936,NJBF000068911,2511 ARCTIC AVE,Atlantic City,NJ,39.35799978,-74.44352768,RES3B,3001,,17,ME,1900,1900,3301,2,1,875.353502,875.353502,3505,NO,22.82,33.55,3,-2.74,6106,114.347852,123.990403,133.766005,140.11295,I,Above,Flat,0,NaN,Wood,28.18336169,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5937,NJBF000071315,222 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37017517,-74.41936765,RES3D,3004,,16,E,2011,2011,3303,3,1,896.6223539,896.6223539,3505,NO,38.6,49.98,3,0.6,6106,114.720995,124.302938,134.120477,140.317283,I,Above,Gable,0,NaN,Wood,44.28759564,0,0,,,,1,1,,0.03,nav,1,2011,3,, 5938,NJBF000067727,321 N HARRISBURG AVE,Atlantic City,NJ,39.35428838,-74.4594141,RES1,3001,,45,NE,1900,1900,3102,1,2,1392.881401,1392.881401,3505,NO,18.49,29.16,3,7.67,6106,114.04764,123.742763,133.493955,139.916167,I,Above,Gable,0,5701,Wood,23.82407995,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5939,NJBF000067702,358 N ELBERON AVE RR,Atlantic City,NJ,39.354217,-74.461311,RES1,3001,,NaN,NE,1900,0,3102,1,1,794.6151635,794.6151635,3505,YES,12.19,18.03,3,-0.86,6106,114.006974,123.709313,133.457759,139.886537,I,Above,Hip,0,5701,Wood,15.11029137,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5940,NJBF000068116,3005 ARCTIC AVE,Atlantic City,NJ,39.35569993,-74.44945455,RES3A,3001,,17,NE,2003,2003,3301,2,1,2043.690316,2043.690316,3505,NO,29.16,40.25,3,5.33,6106,114.247474,123.907561,133.673776,140.053611,I,Above,Hip,0,5701,Wood,34.70425397,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 5941,NJBF000068020,104 N CHELSEA AVE,Atlantic City,NJ,39.35536034,-74.45064097,RES3A,3001,29,NaN,NE,1969,0,3301,2,1,553.8329208,553.8329208,3505,NO,38.58,51.66,3,3.25,6106,114.225871,123.889742,133.654119,140.039948,I,Above,Gable,0,5701,Wood,45.12172325,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5942,NJBF000067735,313 N TRENTON AVE,Atlantic City,NJ,39.35431277,-74.45823374,COM1,3003,,17,ME,1921,1921,3401,2,1,1216.938668,1216.938668,3507,YES,27.94,33.86,1,0.7,6106,114.073152,123.763786,133.51671,139.934796,I,Above,Hip,0,NaN,Wood,30.89633481,0,0,,,,1,1,,0.03,nav,1,1921,2,, 5943,NJBF000067973,100 N CHELSEA AVE,Atlantic City,NJ,39.35521336,-74.45054717,RES3A,3001,,45,NE,1920,1920,3301,3,2,1082.789064,1082.789064,3505,NO,55.3,65.02,3,1.06,6106,114.229743,123.893018,133.657555,140.043616,I,Above,Gable,0,5701,Wood,60.16461795,0,0,,,,1,1,,0.03,nav,1,1920,3,, 5944,NJBF000070847,1118 ADRIATIC AVE,Atlantic City,NJ,39.3686194,-74.42857818,RES1,3001,,39,NE,2002,2002,3103,2,1,1683.988597,1683.988597,3505,NO,21.73,34.49,3,-1.2,6106,114.542635,124.150482,133.950783,140.194961,I,Above,Hip,0,5701,Wood,28.11104314,0,0,,,,1,1,,0.03,nav,1,2002,2,, 5945,NJBF000070705,1214 ADRIATIC AVE,Atlantic City,NJ,39.36811856,-74.42980845,RES3C,3003,,18,E,1900,1900,3305,2,1,2214.873617,2214.873617,3507,NO,39.97,48.35,1,1.61,6106,114.522152,124.13324,133.931365,140.182711,I,Above,Hip,0,NaN,Wood,44.15637409,0,0,,,,2,2,,0.03,nav,1,1900,2,, 5946,NJBF000070880,1110 ADRIATIC AVE,Atlantic City,NJ,39.36873334,-74.4283027,RES1,3001,,39,NE,2002,2002,3103,2,1,1690.579063,1690.579063,3505,NO,27.55,36.83,3,5.98,6106,114.547186,124.154317,133.955106,140.19767,I,Above,Hip,0,5701,Wood,32.18649855,0,0,,,,1,1,,0.03,nav,1,2002,2,, 5947,NJBF000070743,341 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36825685,-74.42875153,RES1,3001,,27,NE,2002,2002,3103,2,2,2025.677002,2025.677002,3505,NO,46.22,53.26,3,7.57,6106,114.543163,124.151098,133.951149,140.197359,I,Above,Hip,0,5701,Wood,49.74066458,0,0,,,,1,1,,0.03,nav,1,2002,2,, 5948,NJBF000071514,322 N CONNECTICUT AVE,Atlantic City,NJ,39.3708091,-74.4213829,RES1,3001,,17,NE,1900,1900,3102,2,1,1184.011064,1184.011064,3505,YES,36.42,49.98,3,4.33,6106,114.670688,124.259362,134.072863,140.27702,I,Above,Flat,0,5701,Wood,43.2019453,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5949,NJBF000071573,300 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37095781,-74.41982697,RES1,3001,,17,NE,1998,1998,3102,2,1,736.2478901,736.2478901,3505,NO,36.85,48.25,3,6.56,6106,114.702074,124.286358,134.102851,140.299267,I,Above,Gable,0,5701,Wood,42.55187281,0,0,,,,1,1,,0.03,nav,1,1998,2,, 5950,NJBF000070895,,Atlantic City,NJ,39.36878294,-74.42210377,RES3B,3004,,NaN,ME,1969,0,3301,1,1,888.9176151,888.9176151,3507,NO,17.88,24.55,1,2.3,6106,114.67907,124.267288,134.079785,140.293992,I,Above,Flat,0,NaN,Wood,21.21223232,0,0,,,,1,1,,0.03,nav,1,1969,1,, 5951,NJBF000071770,522 ADRIATIC AVE,Atlantic City,NJ,39.37157172,-74.42131843,RES1,3001,,17,NE,1900,1900,3102,2,1,1706.967948,1706.967948,3505,NO,24.38,38.41,3,-0.2,6106,114.66318,124.252598,134.066062,140.267397,I,Above,Gable,0,5701,Wood,31.39482826,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5952,NJBF000070608,821 BALTIC AVE,Atlantic City,NJ,39.36776847,-74.42342479,RES1,3001,,45,NE,1900,1900,3102,3,3,710.1881301,710.1881301,3505,YES,29.59,40.32,3,-2.28,6106,114.662857,124.253698,134.063844,140.287565,I,Above,Gable,0,5701,Wood,34.95359616,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5953,NJBF000070076,407 N INDIANA AVE,Atlantic City,NJ,39.3657165,-74.4365905,RES1,3001,,17,NE,1920,1920,3101,2,1,939.9759303,939.9759303,3507,NO,23.83,29.86,1,1.6,6106,114.404741,124.034744,133.821098,140.110164,I,Above,Gable,0,5701,Wood,26.84744909,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5954,NJBF000070158,414 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36604503,-74.43587862,RES1,3001,,17,NE,1900,1900,3101,2,1,1250.003758,1250.003758,3507,YES,33.53,46.64,1,0.32,6106,114.416161,124.044234,133.831783,140.116657,I,Above,Gable,0,5701,Wood,40.08156625,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5955,NJBF000069936,405 N OHIO AVE,Atlantic City,NJ,39.36508852,-74.43784614,RES3B,3001,,17,ME,1900,1900,3301,2,1,1078.522774,1078.522774,3505,NO,41.56,49.04,3,7.36,6106,114.385105,124.01848,133.802746,140.099366,I,Above,Hip,0,NaN,Wood,45.3005126,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5956,NJBF000069948,1815 BISHOP RICHARD ALLEN,Atlantic City,NJ,39.36516243,-74.43737426,RES1,3001,,17,NE,2003,2003,3101,2,1,1169.335394,1169.335394,3507,NO,39.1,48.02,1,1.23,6106,114.394418,124.026308,133.811388,140.105777,I,Above,Gable,0,5701,Wood,43.56186559,0,0,,,,1,1,,0.03,nav,1,2003,2,, 5957,NJBF000070014,407 HOBART AVE,Atlantic City,NJ,39.365489,-74.43724533,RES1,3001,,17,NE,1910,1910,3101,2,1,818.5738476,818.5738476,3507,NO,40.62,46.87,1,1.74,6106,114.393314,124.025204,133.810447,140.103083,I,Above,Hip,0,5701,Wood,43.74484773,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5958,NJBF000070371,416 N KENTUCKY AVE,Atlantic City,NJ,39.366869,-74.4346825,RES1,3001,,17,NE,1900,1900,3101,1,1,1188.418349,1188.418349,3505,NO,13.81,24.66,3,2.71,6106,114.432185,124.057377,133.846895,140.123707,I,Above,Gable,0,5701,Wood,19.2369514,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5959,NJBF000071490,629 DREXEL AVE,Atlantic City,NJ,39.37074722,-74.42223552,RES1,3001,,45,NE,1910,1910,3102,2,2,1017.337476,1017.337476,3505,YES,27.45,41.39,3,-0.43,6106,114.653236,124.244364,134.05623,140.264534,I,Above,Flat,0,5701,Wood,34.42118056,0,0,,,,1,1,,0.03,nav,1,1910,2,, 5960,NJBF000070532,2004 GRANT AVE,Atlantic City,NJ,39.36748519,-74.44154806,RES3B,3001,,33,ME,1900,1902,3301,2,1,3585.579286,3585.579286,3505,YES,23.55,37.54,3,-1.03,6106,114.276829,123.925717,133.703001,140.005356,I,Above,Flat,0,5701,Wood,30.54680682,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5961,NJBF000072749,1612 N OHIO AVE,Atlantic City,NJ,39.3747905,-74.4491745,RES1,3001,,16,NE,1967,1967,3102,1,1,1080.648131,1080.648131,3505,NO,23.25,31.89,3,3.9,6106,114.027602,123.70962,133.471335,139.77175,I,Above,Flat,0,5701,Wood,27.5685258,0,0,,,,1,1,,0.03,nav,1,1967,1,, 5962,NJBF000070529,701 N OHIO AVE,Atlantic City,NJ,39.36747387,-74.43938036,RES1,3001,738,NaN,NE,1969,0,3102,3,1,1550.264519,1550.264519,3505,YES,56.42,70.62,3,7.14,6106,114.323792,123.965328,133.746387,140.040242,I,Above,Flat,0,5701,Wood,63.52121124,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5963,NJBF000067787,402 N ELBERON AVE,Atlantic City,NJ,39.35450684,-74.4613597,RES1,3001,,17,NE,2000,2000,3102,2,1,920.8114961,920.8114961,3505,NO,37.43,49.85,3,2.59,6106,114.002285,123.705301,133.45364,139.881259,I,Above,Gable,0,5701,Wood,43.6415552,0,0,,,,1,1,,0.03,nav,1,2000,2,, 5964,NJBF000073360,MEADOW TRACK,Atlantic City,NJ,39.3800939,-74.45595049,COM1,3001,,NaN,ME,1969,0,3401,3,1,4469.038074,4469.038074,3507,NO,53.96,66.51,1,0.74,6106,113.821806,123.530338,133.278055,139.576771,I,Above,Hip,0,NaN,Wood,60.23984302,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5965,NJBF000073319,MEADOW TRACK,Atlantic City,NJ,39.37981235,-74.45619458,COM1,3001,,NaN,ME,1969,0,3401,2,1,7782.771903,7782.771903,3507,NO,31.72,45.96,1,2.52,6110,113.819558,123.528865,133.27633,139.576914,I,Above,Flat,0,NaN,Wood,38.83999565,0,0,,,,1,1,,1,nav,1,1969,2,, 5966,NJBF000073333,MEADOW TRACK,Atlantic City,NJ,39.37991362,-74.45502843,COM1,3001,,NaN,ME,1969,0,3401,1,1,5487.893347,5487.893347,3507,NO,14.33,26.1,1,-0.47,6110,113.843783,123.548999,133.298353,139.595261,I,Above,Hip,0,NaN,Wood,20.21218511,0,0,,,,1,1,,1,nav,1,1969,1,, 5967,NJBF000073341,MEADOW TRACK,Atlantic City,NJ,39.37995599,-74.455511,COM1,3001,,NaN,ME,1969,0,3401,2,1,3692.831973,3692.831973,3507,NO,36.78,46.59,1,0.65,6110,113.832841,123.539775,133.288299,139.586382,I,Above,Flat,0,NaN,Wood,41.68494361,0,0,,,,1,1,,1,nav,1,1969,2,, 5968,NJBF000073324,MEADOW TRACK,Atlantic City,NJ,39.379824,-74.45540499,COM1,3001,,NaN,ME,1969,0,3401,3,1,5837.00417,5837.00417,3507,NO,34.63,45.83,1,0.73,6110,113.836581,123.543096,133.29187,139.590213,I,Above,Flat,0,NaN,Wood,40.2280262,0,0,,,,1,1,,1,nav,1,1969,3,, 5969,NJBF000073244,MEADOW TRACK,Atlantic City,NJ,39.37926554,-74.45580089,COM1,3001,,NaN,ME,1969,0,3401,2,1,5451.345434,5451.345434,3507,NO,24.48,37.3,1,-0.85,6110,113.834079,123.541794,133.290213,139.592016,I,Above,Flat,0,NaN,Wood,30.8919976,0,0,,,,1,1,,1,nav,1,1969,2,, 5970,NJBF000067985,461 N DOVER AVE,Atlantic City,NJ,39.35524373,-74.46261893,RES1,3001,,45,NE,1900,1900,3102,2,2,2201.565755,2201.565755,3505,NO,21.86,33.11,3,-1.07,6106,113.965516,123.67465,133.421077,139.849278,I,Above,Hip,0,5701,Wood,27.48629746,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5971,NJBF000073210,MEADOW TRACK FRONT,Atlantic City,NJ,39.37899931,-74.45516201,COM1,3001,,NaN,ME,1969,0,3401,3,1,4398.107236,4398.107236,3507,NO,37.66,45.74,1,0.16,6110,113.850882,123.556229,133.305854,139.606993,I,Above,Flat,0,NaN,Wood,41.70204904,0,0,,,,1,1,,1,nav,1,1969,3,, 5972,NJBF000073213,MEADOW TRACK FRONT,Atlantic City,NJ,39.37901101,-74.45551226,COM1,3001,,NaN,ME,1969,0,3401,3,1,6285.765936,6285.765936,3507,NO,50.22,57.65,1,0.58,6110,113.843149,123.549741,133.298777,139.600851,I,Above,Flat,0,NaN,Wood,53.93476967,0,0,,,,1,1,,1,nav,1,1969,3,, 5973,NJBF000068997,631 N ELBERON AVE,Atlantic City,NJ,39.35829581,-74.46386403,RES1,3001,,16,NE,1900,1900,3101,1,1,892.5968259,892.5968259,3505,NO,17.22,31.29,3,2.4,6106,113.900603,123.619314,133.363389,139.781134,I,Above,Gable,0,5701,Wood,24.25398966,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5974,NJBF000070752,726 N INDIANA AVE,Atlantic City,NJ,39.368305,-74.43879,RES1,3001,,33,NE,1900,1900,3102,2,1,587.0888442,587.0888442,3505,YES,28.1,39.4,3,4.84,6106,114.326772,123.967307,133.749194,140.037535,I,Above,Gable,0,5701,Wood,33.74828382,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5975,NJBF000070875,1012 N MICHIGAN AVE,Atlantic City,NJ,39.36871164,-74.44234202,RES3A,3001,,17,NE,1900,1900,3301,3,1,1127.162804,1127.162804,3505,YES,55.09,68.38,3,-2.06,6106,114.245294,123.898281,133.673862,139.974494,I,Above,Hip,0,5701,Wood,61.73508606,0,0,,,,1,1,,0.03,nav,1,1900,3,, 5976,NJBF000070141,1209 BALTIC AVE,Atlantic City,NJ,39.36599248,-74.42800418,COM8,3003,761,NaN,ME,1969,0,3401,2,1,5490.579111,5490.579111,3507,NO,26.61,31.65,1,2.32,6106,114.585977,124.188547,133.990385,140.2411,I,Above,Flat,0,NaN,Wood,29.12920818,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5977,NJBF000070222,1209 BALTIC AVE,Atlantic City,NJ,39.36629563,-74.42800696,COM8,3003,761,NaN,ME,1969,0,3401,2,1,3484.43118,3484.43118,3507,NO,26.23,37.54,1,0.28,6106,114.582302,124.185301,133.987085,140.236767,I,Above,Gable,0,NaN,Wood,31.88506124,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5978,NJBF000070240,1209 BALTIC AVE,Atlantic City,NJ,39.36638932,-74.42838593,COM8,3003,761,NaN,ME,1969,0,3401,2,1,3190.981477,3190.981477,3507,NO,23.62,31.52,1,0.83,6106,114.573077,124.177397,133.978466,140.229532,I,Above,Flat,0,NaN,Wood,27.57001542,0,0,,,,1,1,,0.03,nav,1,1969,2,, 5979,NJBF000068391,3101 FAIRMOUNT AVE,Atlantic City,NJ,39.35659733,-74.45114014,RES3A,3001,,45,NE,1905,1905,3301,2,2,1430.427719,1430.427719,3507,YES,23.98,35.04,1,-0.22,6106,114.199695,123.867457,133.630934,140.013617,I,Above,Hip,0,5701,Wood,29.50966162,0,0,,,,1,1,,0.03,nav,1,1905,2,, 5980,NJBF000071596,420 N DELAWARE AVE,Atlantic City,NJ,39.37103633,-74.42469752,RES1,3001,,17,NE,1960,1960,3102,2,1,1456.491856,1456.491856,3505,YES,41.52,50.3,3,6.01,6106,114.597345,124.196211,134.003295,140.221841,I,Above,Gable,0,5701,Wood,45.90812552,0,0,,,,1,1,,0.03,nav,1,1960,2,, 5981,NJBF000071610,448 N MARYLAND AVE,Atlantic City,NJ,39.37105778,-74.42634961,RES1,3001,,27,NE,1900,1900,3102,2,2,589.129515,589.129515,3505,YES,31.99,38.46,3,7.32,6106,114.561797,124.165712,133.969653,140.195512,I,Above,Flat,0,5701,Wood,35.22432375,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5982,NJBF000071622,1030 SEWELL AVE,Atlantic City,NJ,39.37108734,-74.42871273,RES3C,3004,,17,ME,1900,1900,3301,1,1,1141.494667,1141.494667,3505,NO,21.53,36.3,3,5.86,6106,114.510906,124.122138,133.921627,140.157764,I,Above,Hip,0,NaN,Wood,28.91126798,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5983,NJBF000070481,2012 GRANT AVE,Atlantic City,NJ,39.36732285,-74.44173403,RES3B,3001,,17,ME,2008,2008,3301,2,1,1152.477859,1152.477859,3505,NO,30.06,35.44,3,-1.89,6106,114.274711,123.924043,133.701048,140.004754,I,Above,Flat,0,5701,Wood,32.75049004,0,0,,,,1,1,,0.03,nav,1,2008,2,, 5984,NJBF000069241,216 N TEXAS AVE,Atlantic City,NJ,39.35931011,-74.44556258,RES3A,3001,,27,NE,1900,1900,3301,2,2,596.8972005,596.8972005,3505,YES,38.57,50.21,3,3.44,6106,114.28769,123.939522,133.711624,140.061733,I,Above,Flat,0,5701,Wood,44.38887608,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5985,NJBF000068183,138 N CHELSEA AVE,Atlantic City,NJ,39.355917,-74.4507455,RES3A,3001,,17,NE,1900,1900,3301,1,1,1093.342861,1093.342861,3505,NO,12.22,18.19,3,0.87,6106,114.216703,123.88189,133.646056,140.030018,I,Above,Gable,0,5701,Wood,15.20207372,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5986,NJBF000069269,224 N TEXAS AVE,Atlantic City,NJ,39.35946942,-74.44567022,RES3A,3001,,27,NE,1900,1900,3301,2,2,577.2246269,577.2246269,3505,YES,36.32,46.75,3,1.36,6106,114.28343,123.935887,133.707792,140.0577,I,Above,Gable,0,5701,Wood,41.53467121,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5987,NJBF000069401,252 N NEVADA AVE,Atlantic City,NJ,39.360116,-74.445394,RES3A,3001,,27,NE,1900,1900,3301,2,2,766.1183862,766.1183862,3505,NO,40.6,46.56,3,3.8,6106,114.281549,123.934002,133.706271,140.052537,I,Above,Gable,0,5701,Wood,43.57576512,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5988,NJBF000069393,250 N NEVADA AVE,Atlantic City,NJ,39.36008044,-74.44537392,RES3A,3001,,27,NE,2016,2016,3301,2,2,667.0086623,667.0086623,3505,NO,36.85,47.7,3,1.3,6106,114.28242,123.934748,133.707056,140.053385,I,Above,Gable,0,5701,Wood,42.27123341,0,0,,,,1,1,,0.03,nav,1,2016,2,, 5989,NJBF000069158,203 N ARIZONA AVE,Atlantic City,NJ,39.35899042,-74.44570255,RES3A,3001,,27,NE,1920,1920,3301,2,2,649.4233747,649.4233747,3505,YES,32.17,45.05,3,3.08,6106,114.288555,123.940393,133.712306,140.064231,I,Above,Gable,0,5701,Wood,38.6112603,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5990,NJBF000069152,201 N ARIZONA AVE,Atlantic City,NJ,39.35894798,-74.44569493,RES3A,3001,,27,NE,1900,1900,3301,2,2,554.3669522,554.3669522,3505,YES,29.82,43.2,3,3.56,6106,114.289242,123.940986,133.712917,140.064975,I,Above,Gable,0,5701,Wood,36.50732843,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5991,NJBF000068014,3223 ARCTIC AVE,Atlantic City,NJ,39.35534257,-74.45181311,EDU1,3004,,NaN,E,1969,0,3401,3,1,52376.36797,52376.36797,3507,YES,35.85,44.97,1,1.68,6106,114.200549,123.868723,133.631275,140.021671,I,Above,Flat,0,NaN,Wood,40.41273045,0,0,,,,1,1,,0.03,nav,1,1969,3,, 5992,NJBF000072704,741 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37460013,-74.42229239,RES1,3001,,17,NE,2002,2002,3102,2,1,2547.82039,2547.82039,3505,NO,36.63,47.47,3,3.21,6106,114.60744,124.20316,134.01398,140.209674,I,Above,Hip,0,5701,Wood,42.05081606,0,1.2,,,,1,1,,0.03,nav,1,2002,2,, 5993,NJBF000070395,511 ROBINSON AVE,Atlantic City,NJ,39.36693851,-74.43651508,RES1,3001,,33,NE,1920,1920,3101,2,1,752.3038875,752.3038875,3507,YES,21.75,29.61,1,-0.54,6106,114.391885,124.023204,133.809437,140.093655,I,Above,Flat,0,5701,Wood,25.68278232,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5994,NJBF000070362,507 ROBINSON AVE,Atlantic City,NJ,39.36684326,-74.43645278,RES1,3001,,33,NE,1920,1920,3101,2,1,766.7218082,766.7218082,3507,YES,37.15,46.73,1,-0.59,6106,114.394354,124.025347,133.811711,140.096029,I,Above,Flat,0,5701,Wood,41.94229924,0,0,,,,1,1,,0.03,nav,1,1920,2,, 5995,NJBF000070352,505 ROBINSON AVE,Atlantic City,NJ,39.36679699,-74.43641033,RES1,3001,,33,NE,1900,1900,3101,2,1,763.3737835,763.3737835,3507,YES,34.93,42.98,1,0.2,6106,114.395824,124.026617,133.813067,140.097377,I,Above,Gable,0,5701,Wood,38.95630513,0,0,,,,1,1,,0.03,nav,1,1900,2,, 5996,NJBF000070754,638 GREEN ST,Atlantic City,NJ,39.36831494,-74.43644243,RES1,3001,,17,NE,1900,1900,3101,1,1,1479.976814,1479.976814,3505,NO,15.29,28.11,3,0.75,6106,114.377272,124.010024,133.79607,140.074873,I,Above,Gable,0,5701,Wood,21.6955298,0,0,,,,1,1,,0.03,nav,1,1900,1,, 5997,NJBF000072659,608 N CONNECTICUT AVE,Atlantic City,NJ,39.37443051,-74.42376115,RES1,3001,,20,NE,2008,2008,3102,2,1,1087.435151,1087.435151,3505,NO,36.02,47.43,3,1.74,6106,114.578083,124.177952,133.98597,140.188806,I,Above,Flat,0,5701,Wood,41.72542157,0,0,,,,1,1,,0.03,nav,1,2008,2,, 5998,NJBF000070236,501 N INDIANA AVE #A,Atlantic City,NJ,39.36635539,-74.43708636,RES1,3001,100,45,NE,1940,1940,3101,2,2,1047.403399,1047.403399,3507,YES,29.66,41.85,1,-0.28,6106,114.386478,124.018956,133.804304,140.093056,I,Above,Flat,0,5701,Wood,35.75592356,0,0,,,,1,1,,0.03,nav,1,1940,2,, 5999,NJBF000071642,901-919 N NEW YORK AVE,Atlantic City,NJ,39.37114622,-74.43650304,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3980.719056,3980.719056,3505,NO,42.92,57.15,3,3.95,6106,114.34298,123.979091,133.764271,140.032761,I,Above,Flat,0,NaN,Wood,50.0357852,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6000,NJBF000071527,901-919 N NEW YORK AVE,Atlantic City,NJ,39.37083749,-74.43632939,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,3822.317536,3822.317536,3505,NO,29.25,40.1,3,-1.32,6106,114.350304,123.985521,133.771103,140.040048,I,Above,Gable,0,NaN,Wood,34.67455243,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6001,NJBF000071689,901-919 N NEW YORK AVE,Atlantic City,NJ,39.371292,-74.43604157,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,2970.337735,2970.337735,3505,NO,20.86,33.07,3,-1.9,6106,114.351213,123.985974,133.771941,140.038035,I,Above,Flat,0,NaN,Wood,26.9663875,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6002,NJBF000070827,1441 CASPIAN AVE,Atlantic City,NJ,39.3685625,-74.433737,RES3C,3001,,33,ME,1900,1900,3301,2,1,508.0130725,508.0130725,3505,YES,31.6,43.32,3,1.21,6106,114.432575,124.056787,133.847635,140.114285,I,Above,Flat,0,NaN,Wood,37.45758822,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6003,NJBF000071748,1401 MCKINLEY AVE,Atlantic City,NJ,39.37149587,-74.43463008,RES3C,3001,441,NaN,ME,1969,0,3301,2,1,1516.814861,1516.814861,3505,NO,31.05,39.33,3,-2.51,6106,114.379221,124.009625,133.79809,140.057703,I,Above,Flat,0,NaN,Wood,35.18827398,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6004,NJBF000072513,541 N NEW JERSEY AVE,Atlantic City,NJ,39.37394807,-74.42464478,RES1,3001,,17,NE,1900,1900,3102,2,1,1643.298418,1643.298418,3505,NO,34.47,44.14,3,0.56,6106,114.56478,124.166769,133.973218,140.181619,I,Above,Hip,0,5701,Wood,39.30781086,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6005,NJBF000073011,423 CARSON AVE,Atlantic City,NJ,39.37646003,-74.42282554,RES3D,3001,100,NaN,ME,1969,0,3301,2,1,1843.338417,1843.338417,3507,NO,30.59,37.22,1,0.76,6102,114.574807,124.173976,133.983207,140.175041,I,Above,Flat,0,NaN,Wood,33.90353455,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6006,NJBF000072288,618 SEWELL AVE,Atlantic City,NJ,39.37317059,-74.4235226,RES1,3001,,17,NE,1930,1930,3102,1,1,1715.067184,1715.067184,3505,NO,23.49,29.04,3,4.26,6106,114.597661,124.195463,134.004281,140.210314,I,Above,Flat,0,5701,Wood,26.26738983,0,0,,,,1,1,,0.03,nav,1,1930,1,, 6007,NJBF000072360,617 SEWELL AVE,Atlantic City,NJ,39.37338916,-74.42382199,RES1,3001,,17,NE,1900,1900,3102,1,1,949.861237,949.861237,3505,NO,17.41,29.62,3,0.54,6106,114.588771,124.187702,133.995887,140.202523,I,Above,Flat,0,5701,Wood,23.51528073,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6008,NJBF000072090,618 CASPIAN AVE,Atlantic City,NJ,39.37255867,-74.42299307,RES1,3001,,17,NE,1930,1930,3102,1,1,1754.366216,1754.366216,3505,NO,10.34,18.95,3,-2.88,6106,114.616035,124.211572,134.021566,140.22727,I,Above,Hip,0,5701,Wood,14.64897893,0,0,,,,1,1,,0.03,nav,1,1930,1,, 6009,NJBF000072154,443 N CONNECTICUT AVE,Atlantic City,NJ,39.37273659,-74.4221838,RES1,3001,,17,NE,1900,1900,3102,2,1,1775.624411,1775.624411,3505,NO,27.78,40.42,3,4.03,6106,114.631215,124.22456,134.036076,140.237509,I,Above,Flat,0,5701,Wood,34.09881184,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6010,NJBF000072119,506 N NEW JERSEY AVE,Atlantic City,NJ,39.37264451,-74.42420515,RES1,3001,,45,NE,1900,1900,3102,1,2,1306.046475,1306.046475,3505,NO,8.43,14.87,3,-2.44,6106,114.589194,124.188442,133.996083,140.206954,I,Above,Hip,0,5701,Wood,11.64924666,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6011,NJBF000072097,614 CASPIAN AVE,Atlantic City,NJ,39.37257685,-74.42288563,RES1,3001,,45,NE,1900,1900,3102,1,2,1869.984515,1869.984515,3505,NO,19.44,29.79,3,8.73,6106,114.618108,124.213347,134.023544,140.228702,I,Above,Hip,0,5701,Wood,24.61622573,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6012,NJBF000072314,516 N CONNECTICUT AVE,Atlantic City,NJ,39.37324971,-74.4230387,RES1,3001,,16,NE,1900,1900,3102,1,1,1532.331899,1532.331899,3505,NO,17.38,28.63,3,2.36,6106,114.607067,124.20352,134.013252,140.216841,I,Above,Hip,0,5701,Wood,23.00268357,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6013,NJBF000072041,628 CASPIAN AVE,Atlantic City,NJ,39.37238017,-74.4233635,RES1,3001,,17,NE,2006,2006,3102,2,1,907.4082676,907.4082676,3505,NO,31.37,45.95,3,7.36,6106,114.61022,124.206652,134.015977,140.223956,I,Above,Flat,0,5701,Wood,38.65856891,0,0,,,,1,1,,0.03,nav,1,2006,2,, 6014,NJBF000072046,500 WABASH AVE,Atlantic City,NJ,39.37241352,-74.42135832,RES1,3001,,17,NE,1961,1961,3102,1,1,1155.114073,1155.114073,3505,NO,17.27,30.25,3,3.78,6106,114.652548,124.243087,134.056283,140.255013,I,Above,Flat,0,5701,Wood,23.75813765,0,0,,,,1,1,,0.03,nav,1,1961,1,, 6015,NJBF000072126,722 SEWELL AVE,Atlantic City,NJ,39.37265617,-74.4247795,RES1,3001,,27,NE,1900,1900,3102,2,2,1898.75086,1898.75086,3505,YES,45.49,54.65,3,7.48,6106,114.576818,124.177801,133.984338,140.197737,I,Above,Flat,0,5701,Wood,50.07214431,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6016,NJBF000072061,622 CASPIAN AVE,Atlantic City,NJ,39.37247508,-74.42317783,RES1,3001,,17,NE,1900,1900,3102,2,1,1223.110479,1223.110479,3505,NO,41.11,53.37,3,6.9,6106,114.613064,124.209054,134.018713,140.225535,I,Above,Gable,0,5701,Wood,47.24067593,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6017,NJBF000071861,924-941 SEWELL AVE,Atlantic City,NJ,39.37183898,-74.42777604,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5756.787271,5756.787271,3505,NO,38.25,53.16,3,4.43,6106,114.522234,124.131419,133.932476,140.161905,I,Above,Flat,0,NaN,Wood,45.70496773,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6018,NJBF000071840,622 WABASH AVE,Atlantic City,NJ,39.37178558,-74.42283193,RES1,3001,,17,NE,1925,1925,3102,1,1,2085.025039,2085.025039,3505,NO,16.67,26.23,3,3.77,6106,114.628432,124.222591,134.03308,140.240644,I,Above,Hip,0,5701,Wood,21.44779689,0,0,,,,1,1,,0.03,nav,1,1925,1,, 6019,NJBF000071988,617 WABASH AVE,Atlantic City,NJ,39.37220436,-74.42277324,RES1,3001,,17,NE,1900,1900,3102,1,1,1780.369402,1780.369402,3505,NO,17.86,30.95,3,6.06,6106,114.624838,124.219312,134.029817,140.235712,I,Above,Hip,0,5701,Wood,24.40684571,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6020,NJBF000071804,402 N CONNECTICUT AVE,Atlantic City,NJ,39.37167833,-74.42195305,RES1,3001,,17,NE,1925,1925,3102,2,1,1744.298865,1744.298865,3505,NO,35.9,50.61,3,2.52,6106,114.648421,124.239842,134.052053,140.255959,I,Above,Hip,0,5701,Wood,43.25487781,0,0,,,,1,1,,0.03,nav,1,1925,2,, 6021,NJBF000071819,626 WABASH AVE,Atlantic City,NJ,39.37172348,-74.42300284,RES1,3001,,17,NE,1930,1930,3102,2,1,1122.856401,1122.856401,3505,NO,25.43,34.39,3,4.02,6106,114.625519,124.220112,134.030286,140.23884,I,Above,Hip,0,5701,Wood,29.90849372,0,0,,,,1,1,,0.03,nav,1,1930,2,, 6022,NJBF000070952,420 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36895571,-74.43146335,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,7824.049287,7824.049287,3505,NO,35.29,42.35,3,-2.12,6106,114.476818,124.094198,133.889099,140.144662,I,Above,Flat,0,NaN,Wood,38.82097155,0,0,,,,1,1,,0.03,nav,1,1950,3,, 6023,NJBF000070825,420 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36855642,-74.43120563,RES3D,3001,29,NaN,E,1950,1950,3303,3,1,5297.571978,5297.571978,3505,NO,57.75,70.91,3,1.12,6106,114.487025,124.103097,133.898559,140.154442,I,Above,Flat,0,NaN,Wood,64.33299536,0,0,,,,1,1,,0.03,nav,1,1950,3,, 6024,NJBF000071016,1107 ADRIATIC AVE,Atlantic City,NJ,39.36914568,-74.42829076,RES1,3001,,45,NE,1900,1900,3103,2,2,1570.292457,1570.292457,3505,YES,27.65,33.83,3,0.05,6106,114.542597,124.150205,133.95093,140.192004,I,Above,Gable,0,5701,Wood,30.74186481,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6025,NJBF000071106,1401 SEWELL AVE,Atlantic City,NJ,39.3694398,-74.43403514,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,4225.488167,4225.488167,3505,NO,30.44,42.9,3,4.51,6106,114.415906,124.042117,133.832214,140.096914,I,Above,Flat,0,NaN,Wood,36.66637282,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6026,NJBF000071195,1401 SEWELL AVE,Atlantic City,NJ,39.36973355,-74.433774,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,2976.010411,2976.010411,3505,NO,36.74,50.97,3,1.31,6106,114.418085,124.043792,133.834289,140.096827,I,Above,Gable,0,NaN,Wood,43.85287998,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6027,NJBF000071238,1401 SEWELL AVE,Atlantic City,NJ,39.36987522,-74.4335403,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,2361.172286,2361.172286,3505,NO,18.63,28.94,3,-2.44,6106,114.42147,124.046584,133.837471,140.098518,I,Above,Gable,0,NaN,Wood,23.7847596,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6028,NJBF000071154,440 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36959274,-74.43030875,RES1,3001,,17,NE,2002,2002,3103,2,1,1160.672674,1160.672674,3505,NO,31.29,41.67,3,4.76,6106,114.49412,124.108605,133.905485,140.153808,I,Above,Hip,0,5701,Wood,36.48098206,0,0,,,,1,1,,0.03,nav,1,2002,2,, 6029,NJBF000071073,650 N NEW YORK AVE,Atlantic City,NJ,39.3693212,-74.43472551,RES1,3001,,17,NE,1900,1900,3101,1,1,1354.96241,1354.96241,3505,NO,12.89,23.72,3,0.11,6106,114.402436,124.030749,133.819627,140.087636,I,Above,Hip,0,5701,Wood,18.30618096,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6030,NJBF000070996,1111 ADRIATIC AVE,Atlantic City,NJ,39.3690855,-74.4284047,RES1,3001,,27,NE,1923,1923,3103,2,2,603.2443069,603.2443069,3505,YES,26.76,40.35,3,2.33,6106,114.540871,124.148759,133.949285,140.191074,I,Above,Gable,0,5701,Wood,33.55377524,0,0,,,,1,1,,0.03,nav,1,1923,2,, 6031,NJBF000067863,3917 PORTER AVE,Atlantic City,NJ,39.35481583,-74.460839,RES1,3001,,16,NE,1995,1995,3102,1,1,1202.304444,1202.304444,3505,NO,13.7,19.76,3,1.57,6106,114.009854,123.711365,133.460417,139.884959,I,Above,Gable,0,5701,Wood,16.72942255,0,0,,,,1,1,,0.03,nav,1,1995,1,, 6032,NJBF000072340,1906 E RIVERSIDE DR,Atlantic City,NJ,39.37334031,-74.44477252,RES1,3001,,17,NE,1900,1900,3102,1,1,759.7583971,759.7583971,3505,NO,23.71,30.58,3,4.44,6106,114.13934,123.805099,133.574944,139.866231,I,Above,Gable,0,5701,Wood,27.14296358,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6033,NJBF000072381,1426 MADISON AVE,Atlantic City,NJ,39.37346736,-74.44664163,RES1,3001,,29,NE,1900,1900,3102,2,2,1952.738783,1952.738783,3505,NO,38.39,52.2,3,1.7,6106,114.097449,123.76971,133.536285,139.833593,I,Above,Gable,0,5701,Wood,45.29543485,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6034,NJBF000069135,663 N ELBERON AVE,Atlantic City,NJ,39.35890271,-74.46437487,RES1,3001,,17,NE,1900,1900,3101,1,1,912.3153488,912.3153488,3505,NO,15.31,20.66,3,-0.39,6106,113.88198,123.603564,133.346768,139.763122,I,Above,Gable,0,5701,Wood,17.98319101,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6035,NJBF000072332,1529 EMERSON AVE,Atlantic City,NJ,39.37332414,-74.44891549,RES1,3001,,17,NE,1910,1910,3102,1,1,1868.986113,1868.986113,3505,NO,23.2,35.59,3,5.03,6106,114.049824,123.729844,133.492606,139.798189,I,Above,Flat,0,5701,Wood,29.39472931,0,0,,,,1,1,,0.03,nav,1,1910,1,, 6036,NJBF000072354,1825 BEACH AVE,Atlantic City,NJ,39.37336797,-74.45331564,RES1,3001,,17,NE,1966,1966,3101,1,1,1399.72343,1399.72343,3505,NO,16.3,28.57,3,-2.88,6106,113.953765,123.64936,133.404755,139.724249,I,Above,Gable,0,5701,Wood,22.43770573,0,0,,,,1,1,,0.03,nav,1,1966,1,, 6037,NJBF000072392,1405 MADISON AVE,Atlantic City,NJ,39.3734985,-74.4454395,RES1,3001,,17,NE,1930,1930,3102,1,1,1720.473177,1720.473177,3505,NO,19.07,25.2,3,0.9,6106,114.123112,123.791277,133.559909,139.852915,I,Above,Gable,0,5701,Wood,22.13395488,0,0,,,,1,1,,0.03,nav,1,1930,1,, 6038,NJBF000070730,1614 SEWELL AVE,Atlantic City,NJ,39.368199,-74.4359055,RES1,3001,,17,NE,1900,1900,3101,2,1,1258.712829,1258.712829,3505,NO,31.59,37.45,3,-2.08,6106,114.390176,124.021027,133.808058,140.085086,I,Above,Gable,0,5701,Wood,34.51788996,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6039,NJBF000070538,516 N KENTUCKY AVE,Atlantic City,NJ,39.367505,-74.435114,RES1,3001,,16,NE,1962,1962,3101,1,1,1144.134683,1144.134683,3505,NO,25.54,39.89,3,8.07,6106,114.415386,124.042792,133.8314,140.107697,I,Above,Gable,0,5701,Wood,32.71260965,0,0,,,,1,1,,0.03,nav,1,1962,1,, 6040,NJBF000070738,423 N TENNESSEE AVE,Atlantic City,NJ,39.3682355,-74.43192843,RES1,3001,,NaN,NE,1969,0,3103,4,1,1635.407359,1635.407359,3505,NO,80.39,86.82,3,8.14,6106,114.475296,124.093279,133.887489,140.147629,I,Above,Flat,0,5701,Wood,83.60713285,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6041,NJBF000068454,533 N ELBERON AVE,Atlantic City,NJ,39.35681075,-74.46264044,RES1,3001,,17,NE,1900,1900,3101,1,1,1619.024939,1619.024939,3505,NO,20.86,33.53,3,4.19,6106,113.945678,123.657381,133.403517,139.824561,I,Above,Hip,0,5701,Wood,27.19104722,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6042,NJBF000070956,1004 N OHIO AVE,Atlantic City,NJ,39.36896376,-74.4408743,RES3A,3001,,17,NE,1900,1900,3301,2,1,1221.42531,1221.42531,3505,NO,28.72,38.57,3,3.61,6106,114.274079,123.922363,133.700421,139.994435,I,Above,Hip,0,5701,Wood,33.64517332,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6043,NJBF000068431,512 N HARRISBURG AVE,Atlantic City,NJ,39.35673876,-74.46196933,RES1,3001,,17,NE,1900,1900,3101,1,1,1542.671504,1542.671504,3505,NO,19.06,32.93,3,-0.07,6106,113.961279,123.670261,133.417379,139.836719,I,Above,Hip,0,5701,Wood,25.99175619,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6044,NJBF000069529,60 S SOUTH CAROLINA AVE,Atlantic City,NJ,39.36129676,-74.42612343,COM1,3003,,NaN,ME,1969,0,3401,1,1,6714.873271,6714.873271,3507,NO,19.43,26.78,1,0.35,6110,114.682648,124.272235,134.078048,140.335937,I,Above,Flat,0,NaN,Wood,23.106549,0,0,,,,1,1,,1,nav,1,1969,1,, 6045,NJBF000072655,1906 EMERSON AVE,Atlantic City,NJ,39.37441851,-74.45407975,RES1,3001,,17,NE,1900,1900,3101,1,1,1907.006364,1907.006364,3505,NO,9.82,20.32,3,-1.71,6106,113.925285,123.624346,133.37802,139.695385,I,Above,Gable,0,5701,Wood,15.07134676,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6046,NJBF000072921,1845 KUEHNLE AVE,Atlantic City,NJ,39.37565099,-74.45047907,RES1,3001,,16,NE,1925,1925,3101,1,1,922.2869694,922.2869694,3505,NO,19.02,27.98,3,1.72,6106,113.989639,123.676782,133.435908,139.736986,I,Above,Hip,0,5701,Wood,23.50076123,0,0,,,,1,1,,0.03,nav,1,1925,1,, 6047,NJBF000070320,1902 BLAINE AVE,Atlantic City,NJ,39.36670459,-74.4395279,RES3B,3001,,27,ME,1900,1900,3301,2,2,1242.01047,1242.01047,3505,YES,44.33,58.14,3,6.79,6106,114.329655,123.970757,133.75174,140.049116,I,Above,Gable,0,NaN,Wood,51.234896,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6048,NJBF000070349,522 N INDIANA AVE,Atlantic City,NJ,39.36677986,-74.43785775,RES3B,3001,,45,ME,1920,1920,3301,1,3,1061.036605,1061.036605,3505,NO,14.07,25.21,3,2.85,6106,114.364809,124.000397,133.78429,140.074624,I,Above,Flat,0,NaN,Wood,19.63965268,0,0,,,,1,1,,0.03,nav,1,1920,1,, 6049,NJBF000070311,516 N INDIANA AVE,Atlantic City,NJ,39.36665718,-74.43780957,RES3B,3001,,45,ME,1900,1900,3301,2,2,1497.209613,1497.209613,3505,NO,40.6,54.88,3,7.9,6106,114.367297,124.00257,133.786576,140.077175,I,Above,Hip,0,NaN,Wood,47.74195786,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6050,NJBF000070330,520 N INDIANA AVE,Atlantic City,NJ,39.36673124,-74.43782596,RES3B,3001,,17,ME,1900,1900,3301,3,1,994.3281699,994.3281699,3505,YES,35.4,43.3,3,-0.55,6106,114.366078,124.001497,133.785458,140.075845,I,Above,Flat,0,NaN,Wood,39.34727487,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6051,NJBF000070228,600 N OHIO AVE,Atlantic City,NJ,39.36632281,-74.43911963,RES3B,3001,,17,ME,1999,1999,3301,2,1,809.2998564,809.2998564,3505,NO,36.78,43.19,3,3.61,6106,114.342975,123.982227,133.764009,140.061195,I,Above,Hip,0,NaN,Wood,39.98589075,0,0,,,,1,1,,0.03,nav,1,1999,2,, 6052,NJBF000070017,507 N MICHIGAN AVE,Atlantic City,NJ,39.36550129,-74.43973086,RES3B,3001,,45,ME,1940,1940,3301,3,2,974.4714543,974.4714543,3505,YES,44.78,56.7,3,-2.19,6106,114.339516,123.979791,133.760687,140.063463,I,Above,Gable,0,5701,Wood,50.73863452,0,0,,,,1,1,,0.03,nav,1,1940,3,, 6053,NJBF000070850,1931 MCKINLEY AVE,Atlantic City,NJ,39.368636,-74.4415035,RES3A,3001,,17,NE,1920,1920,3301,2,1,1359.905705,1359.905705,3505,NO,40.77,52.73,3,3.75,6106,114.264318,123.914368,133.691423,139.989136,I,Above,Gable,0,5701,Wood,46.751114,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6054,NJBF000070812,1003 N MICHIGAN AVE,Atlantic City,NJ,39.36852293,-74.44179917,RES3B,3001,,33,ME,1922,1900,3301,2,1,2555.194508,2555.194508,3505,YES,37.61,50.43,3,5.93,6106,114.259241,123.91017,133.686743,139.986035,I,Above,Flat,0,5701,Wood,44.02356562,0,0,,,,1,1,,0.03,nav,1,1922,2,, 6055,NJBF000070889,1911 MCKINLEY AVE,Atlantic City,NJ,39.3687675,-74.441174,RES3A,3001,,17,NE,1910,1910,3301,2,1,1122.796306,1122.796306,3505,NO,29.66,39.98,3,8.43,6106,114.269898,123.918977,133.696568,139.992504,I,Above,Gable,0,5701,Wood,34.81889002,0,0,,,,1,1,,0.03,nav,1,1910,2,, 6056,NJBF000070772,901 N OHIO AVE,Atlantic City,NJ,39.36837694,-74.44003033,RES3A,3001,,45,NE,1925,1925,3301,3,3,1283.514998,1283.514998,3505,NO,39.97,53.47,3,4.4,6106,114.299166,123.943944,133.723636,140.016616,I,Above,Hip,0,5701,Wood,46.71793647,0,0,,,,1,1,,0.03,nav,1,1925,3,, 6057,NJBF000071040,700 N KENTUCKY AVE,Atlantic City,NJ,39.36921507,-74.4362809,RES1,3001,,17,NE,2012,2012,3101,2,1,1609.33147,1609.33147,3505,NO,34.08,39.74,3,5.23,6106,114.370208,124.003478,133.789587,140.064382,I,Above,Gable,0,5701,Wood,36.9065036,0,0,,,,1,1,,0.03,nav,1,2012,2,, 6058,NJBF000070734,1713 LINCOLN AVE,Atlantic City,NJ,39.368214,-74.4377045,RES1,3001,,17,NE,1930,1930,3102,2,1,1657.486713,1657.486713,3505,YES,24.46,32.96,3,3.01,6106,114.35126,123.98807,133.771898,140.056217,I,Above,Flat,0,5701,Wood,28.70919549,0,0,,,,1,1,,0.03,nav,1,1930,2,, 6059,NJBF000070762,712 ROBINSON AVE,Atlantic City,NJ,39.36833383,-74.43786838,RES1,3001,,17,NE,1930,1930,3102,2,1,1067.053326,1067.053326,3505,NO,23.99,34.08,3,2.69,6106,114.346318,123.983813,133.767321,140.051851,I,Above,Hip,0,5701,Wood,29.03859582,0,0,,,,1,1,,0.03,nav,1,1930,2,, 6060,NJBF000070774,1932 MCKINLEY AVE,Atlantic City,NJ,39.36838514,-74.44133036,RES3B,3001,,17,ME,1920,1920,3301,2,1,763.2600168,763.2600168,3505,NO,37.13,49.68,3,4.13,6106,114.270991,123.920172,133.697596,139.995616,I,Above,Gable,0,5701,Wood,43.4060445,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6061,NJBF000070845,720 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36861019,-74.43761896,RES1,3001,,17,NE,1962,1962,3102,2,1,1110.333169,1110.333169,3505,NO,34.08,39.58,3,5.1,6106,114.348454,123.985443,133.769322,140.051809,I,Above,Gable,0,5701,Wood,36.82923739,0,0,,,,1,1,,0.03,nav,1,1962,2,, 6062,NJBF000072676,1622 MADISON AVE,Atlantic City,NJ,39.37448246,-74.45013661,RES1,3001,,17,NE,1900,1900,3102,2,1,1466.870768,1466.870768,3505,NO,32.95,39.39,3,-1.95,6106,114.010207,123.695363,133.45558,139.760396,I,Above,Gable,0,5701,Wood,36.17049179,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6063,NJBF000070543,1909 MAGELLAN AVE,Atlantic City,NJ,39.36752842,-74.44024849,RES3B,3001,,17,ME,1900,1900,3301,3,1,1037.561847,1037.561847,3505,YES,46.56,57.73,3,2.66,6106,114.304415,123.948941,133.728471,140.025566,I,Above,Hip,0,5701,Wood,52.14839702,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6064,NJBF000072727,1822 N MICHIGAN AVE,Atlantic City,NJ,39.3746993,-74.45296607,RES1,3001,,17,NE,1900,1900,3101,1,1,1198.260822,1198.260822,3505,NO,13.75,24.94,3,2.49,6106,113.946347,123.641624,133.397013,139.709817,I,Above,Gable,0,5701,Wood,19.34325866,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6065,NJBF000070460,2026 GRANT AVE,Atlantic City,NJ,39.3672255,-74.4421005,RES3B,3001,,29,ME,2002,2002,3301,2,2,1392.069513,1392.069513,3505,NO,35.43,43.41,3,-2.53,6106,114.267937,123.918405,133.694803,140.000306,I,Above,Gable,0,NaN,Wood,39.42313361,0,0,,,,1,1,,0.03,nav,1,2002,2,, 6066,NJBF000072944,1901 N RIVERSIDE DR,Atlantic City,NJ,39.37581199,-74.45310899,IND4,3001,100,NaN,E,1969,0,3401,1,1,5045.621478,5045.621478,3507,NO,19.57,29.23,1,2.49,6106,113.930758,123.627246,133.381886,139.690444,I,Above,Flat,0,NaN,Wood,24.39842701,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6067,NJBF000072715,1901 EMERSON AVE,Atlantic City,NJ,39.37464419,-74.45371034,RES1,3001,,17,NE,1900,1900,3101,1,1,1143.435679,1143.435679,3505,NO,16.33,28.37,3,-1.14,6106,113.930797,123.628686,133.382867,139.698165,I,Above,Flat,0,5701,Wood,22.34823754,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6068,NJBF000072648,1421 N OHIO AVE,Atlantic City,NJ,39.374396,-74.4463175,RES1,3001,,17,NE,2011,2011,3102,2,1,1269.003645,1269.003645,3505,NO,30,38.07,3,5.6,6106,114.093921,123.765799,133.532563,139.825011,I,Above,Gable,0,5701,Wood,34.03530192,0,0,,,,1,1,,0.03,nav,1,2011,2,, 6069,NJBF000072626,1415 N OHIO AVE,Atlantic City,NJ,39.37432345,-74.44613881,RES1,3001,,16,NE,1900,1900,3102,1,1,1384.258247,1384.258247,3505,NO,21.54,27.15,3,6.35,6106,114.098622,123.769831,133.536933,139.829058,I,Above,Flat,0,5701,Wood,24.34439862,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6070,NJBF000072836,1534 PENROSE AVE,Atlantic City,NJ,39.37512214,-74.44801217,RES1,3001,,17,NE,1900,1900,3101,2,1,919.0497258,919.0497258,3505,YES,39.73,49.8,3,8.76,6106,114.049049,123.727278,133.490832,139.786064,I,Above,Hip,0,5701,Wood,44.76454362,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6071,NJBF000072684,1501 N OHIO AVE,Atlantic City,NJ,39.37451948,-74.44682358,RES1,3001,,16,NE,1948,1948,3102,1,1,1166.971568,1166.971568,3505,NO,22.42,36.26,3,7.49,6106,114.081578,123.755283,133.521126,139.814807,I,Above,Gable,0,5701,Wood,29.34435706,0,0,,,,1,1,,0.03,nav,1,1948,1,, 6072,NJBF000072729,1515 N OHIO AVE,Atlantic City,NJ,39.37470441,-74.44745069,RES1,3001,,17,NE,1955,1955,3102,1,1,1267.817,1267.817,3505,NO,23.28,38.27,3,4.34,6106,114.065912,123.741909,133.506599,139.801654,I,Above,Gable,0,5701,Wood,30.77277411,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 6073,NJBF000072297,2130 HAMILTON AVE,Atlantic City,NJ,39.37320488,-74.45394971,RES1,3001,,17,NE,1900,1900,3101,1,1,1825.748885,1825.748885,3505,NO,17.44,29.48,3,1.1,6106,113.941824,123.639571,133.393994,139.716119,I,Above,Gable,0,5701,Wood,23.46097087,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6074,NJBF000071672,1619 N MISSISSIPPI AVE,Atlantic City,NJ,39.37123204,-74.45158206,RES1,3001,,17,NE,1900,1900,3101,2,1,2561.230318,2561.230318,3505,YES,24.83,36.91,3,-1.13,6106,114.015809,123.703504,133.462628,139.785646,I,Above,Hip,0,5701,Wood,30.86980702,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6075,NJBF000071949,1615 N MISSOURI AVE,Atlantic City,NJ,39.37208254,-74.45074787,RES1,3001,,17,NE,1900,1900,3102,2,1,1540.686431,1540.686431,3505,NO,40.82,55.22,3,5.04,6106,114.024187,123.709643,133.46982,139.786571,I,Above,Gable,0,5701,Wood,48.02195337,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6076,NJBF000071869,2221 KUEHNLE AVE,Atlantic City,NJ,39.3718585,-74.452254,RES1,3001,,45,NE,1970,1970,3101,1,2,1085.056947,1085.056947,3505,NO,17.36,24.17,3,2.87,6106,113.994023,123.684647,133.442417,139.764957,I,Above,Gable,0,5701,Wood,20.76506195,0,0,,,,1,1,,0.03,nav,1,1970,1,, 6077,NJBF000071433,1406 W RIVERSIDE DR,Atlantic City,NJ,39.37060649,-74.44665084,RES1,3001,,17,NE,1955,1955,3101,1,1,1242.548134,1242.548134,3505,NO,25.92,36.92,3,7.59,6106,114.130031,123.799799,133.567406,139.876314,I,Above,Gable,0,5701,Wood,31.42114437,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6078,NJBF000071412,1630 W RIVERSIDE DR,Atlantic City,NJ,39.3705225,-74.4515575,RES1,3001,,16,NE,1900,1900,3101,1,1,1381.604311,1381.604311,3505,NO,24.67,32.57,3,8.23,6106,114.024489,123.71147,133.4709,139.796819,I,Above,Hip,0,5701,Wood,28.62048446,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6079,NJBF000072647,2119 N RIVERSIDE DR,Atlantic City,NJ,39.374393,-74.45643546,COM1,3001,959,NaN,ME,1969,0,3401,1,1,4332.383267,4332.383267,3507,NO,12.48,26.66,1,1.34,6106,113.874334,123.581857,133.331694,139.656082,I,Above,Flat,0,NaN,Wood,19.56874756,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6080,NJBF000072483,2021 KUEHNLE AVE,Atlantic City,NJ,39.37382751,-74.45133548,RES1,3001,,16,NE,1900,1900,3101,2,1,1455.507203,1455.507203,3505,NO,30.79,41.76,3,-0.11,6106,113.991599,123.680493,133.438979,139.750345,I,Above,Hip,0,5701,Wood,36.27572477,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6081,NJBF000072695,1923 KUEHNLE AVE,Atlantic City,NJ,39.3745755,-74.451044,RES1,3001,,18,NE,1925,1925,3101,1,1,3236.527149,3236.527149,3505,NO,19.18,29.9,3,3.82,6106,113.989479,123.677881,133.436532,139.743864,I,Above,Hip,0,5701,Wood,24.54308745,0,0,,,,1,1,,0.03,nav,1,1925,1,, 6082,NJBF000072549,1607 N MICHIGAN AVE,Atlantic City,NJ,39.37405583,-74.44945485,RES1,3001,,17,NE,1900,1900,3102,1,1,1645.613561,1645.613561,3505,NO,22.79,31.79,3,3.84,6106,114.029813,123.712277,133.473826,139.778182,I,Above,Gable,0,5701,Wood,27.29014213,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6083,NJBF000072706,2043 N RIVERSIDE DR,Atlantic City,NJ,39.37461151,-74.45498583,RES1,3001,,16,NE,1900,1900,3101,1,1,854.9670244,854.9670244,3505,NO,13.03,20.48,3,0.71,6106,113.903409,123.605845,133.357942,139.677182,I,Above,Flat,0,5701,Wood,16.75392226,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6084,NJBF000072273,2116 MURRAY AVE,Atlantic City,NJ,39.37311358,-74.4524364,RES1,3001,,16,NE,1956,1956,3101,1,1,1627.82326,1627.82326,3505,NO,17.7,30.22,3,3.38,6106,113.975774,123.668041,133.424997,139.742829,I,Above,Flat,0,5701,Wood,23.96310922,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6085,NJBF000072435,1435 MADISON AVE,Atlantic City,NJ,39.37366049,-74.4459292,RES1,3001,,17,NE,1900,1900,3102,1,1,2938.378583,2938.378583,3505,NO,18.26,30.12,3,-0.49,6106,114.110689,123.780658,133.548383,139.842447,I,Above,Gable,0,5701,Wood,24.19081381,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6086,NJBF000072556,2101 SHERIDAN AVE,Atlantic City,NJ,39.37407322,-74.45549286,RES1,3001,,17,NE,1996,1996,3101,2,1,1650.453411,1650.453411,3505,NO,29.18,35.62,3,0.24,6106,113.898443,123.60235,133.353866,139.676898,I,Above,Gable,0,5701,Wood,32.40246535,0,0,,,,1,1,,0.03,nav,1,1996,2,, 6087,NJBF000072407,1814 N ARKANSAS AVE,Atlantic City,NJ,39.37355226,-74.45299276,RES1,3001,,16,NE,1966,1966,3101,1,1,914.0244242,914.0244242,3505,NO,16.54,24.03,3,-2.53,6106,113.958703,123.653279,133.409128,139.726849,I,Above,Flat,0,5701,Wood,20.28520172,0,0,,,,1,1,,0.03,nav,1,1966,1,, 6088,NJBF000072315,1416 MADISON AVE,Atlantic City,NJ,39.37325126,-74.44611906,RES1,3001,,16,NE,1920,1920,3102,1,1,934.8288485,934.8288485,3505,NO,11.31,19.73,3,-0.99,6106,114.11123,123.781517,133.549074,139.845443,I,Above,Gable,0,5701,Wood,15.51630931,0,0,,,,1,1,,0.03,nav,1,1920,1,, 6089,NJBF000072216,1648 N ARKANSAS AVE,Atlantic City,NJ,39.3729422,-74.45089389,RES1,3001,,17,NE,1955,1955,3102,1,1,1534.192106,1534.192106,3505,NO,21.24,28.73,3,8.51,6106,114.011225,123.697891,133.457482,139.771129,I,Above,Hip,0,5701,Wood,24.98269825,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6090,NJBF000072468,1523 N MICHIGAN AVE,Atlantic City,NJ,39.37377308,-74.44843484,RES1,3001,,17,NE,1918,1918,3102,1,1,2647.254247,2647.254247,3505,NO,26.76,36.76,3,8.29,6106,114.055132,123.733832,133.497225,139.79937,I,Above,Gable,0,5701,Wood,31.75677413,0,0,,,,1,1,,0.03,nav,1,1918,1,, 6091,NJBF000072275,1625 N ARKANSAS AVE,Atlantic City,NJ,39.37311812,-74.4501987,RES1,3001,,17,NE,1955,1955,3101,1,1,1883.666579,1883.666579,3505,NO,17.22,23.84,3,0.83,6106,114.024311,123.708666,133.469348,139.78001,I,Above,Flat,0,5701,Wood,20.52622539,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6092,NJBF000072218,2131 MURRAY AVE,Atlantic City,NJ,39.3729495,-74.4529755,RES1,3001,,17,NE,1900,1900,3101,1,1,1422.626728,1422.626728,3505,NO,14.07,24.56,3,2.31,6106,113.965931,123.659995,133.416131,139.736341,I,Above,Flat,0,5701,Wood,19.31501725,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6093,NJBF000072251,1615 N ARKANSAS AVE,Atlantic City,NJ,39.37303401,-74.44993392,RES1,3001,,17,NE,1955,1955,3101,1,1,1419.851109,1419.851109,3505,NO,18.78,28.63,3,1.28,6106,114.031017,123.714375,133.475535,139.785678,I,Above,Gable,0,5701,Wood,23.7035847,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6094,NJBF000072464,2041 MURRAY AVE,Atlantic City,NJ,39.3737669,-74.45259461,RES1,3001,,17,NE,1900,1900,3101,1,1,1255.839544,1255.839544,3505,NO,25.54,37.03,3,8.32,6106,113.96492,123.658235,133.41465,139.730231,I,Above,Gable,0,5701,Wood,31.28256348,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6095,NJBF000072092,1511 N ARKANSAS AVE,Atlantic City,NJ,39.3725615,-74.4482755,RES1,3001,,NaN,NE,1969,0,3102,2,1,983.2357112,983.2357112,3505,NO,26.91,40.38,3,5.58,6106,114.072379,123.74955,133.513694,139.820254,I,Above,Gable,0,5701,Wood,33.6444151,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6096,NJBF000072112,1600 N ARKANSAS AVE,Atlantic City,NJ,39.37262593,-74.44979666,RES1,3001,,17,NE,1900,1900,3102,1,1,1735.110132,1735.110132,3505,NO,18.97,30.87,3,5.45,6106,114.038635,123.721185,133.482738,139.794118,I,Above,Hip,0,5701,Wood,24.91983666,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6097,NJBF000072146,1512 EMERSON AVE,Atlantic City,NJ,39.37271939,-74.44804331,RES1,3001,,17,NE,1985,1985,3102,1,1,1320.093108,1320.093108,3505,NO,21.51,31.66,3,7.2,6106,114.075617,123.752112,133.516588,139.821721,I,Above,Gable,0,5701,Wood,26.58121988,0,0,,,,1,1,,0.03,nav,1,1985,1,, 6098,NJBF000071171,910 N INDIANA AVE,Atlantic City,NJ,39.36964848,-74.4398141,RES3A,3001,,27,NE,1900,1900,3301,2,2,3196.290446,3196.290446,3505,YES,24.25,38.39,3,-1.13,6106,114.288997,123.934463,133.714185,140.001446,I,Above,Flat,0,5701,Wood,31.32147351,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6099,NJBF000071190,834 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36971005,-74.43835232,RES1,3001,,16,NE,1900,1900,3102,1,1,1136.463324,1136.463324,3505,NO,19.28,27.58,3,6.59,6106,114.319813,123.960472,133.742759,140.024029,I,Above,Gable,0,5701,Wood,23.42980865,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6100,NJBF000072122,1517 N ARKANSAS AVE,Atlantic City,NJ,39.3726523,-74.44858155,RES1,3001,,17,NE,1967,1967,3102,2,1,1815.979758,1815.979758,3505,YES,29.46,38.76,3,4.41,6106,114.064695,123.743012,133.506602,139.813829,I,Above,Flat,0,5701,Wood,34.10921112,0,0,,,,1,1,,0.03,nav,1,1967,2,, 6101,NJBF000071886,1501 BEACH AVE,Atlantic City,NJ,39.37190419,-74.44801377,RES1,3001,,17,NE,1900,1900,3102,1,1,1664.100943,1664.100943,3505,NO,20.36,33.43,3,5,6106,114.085562,123.761261,133.526096,139.834458,I,Above,Hip,0,5701,Wood,26.8955062,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6102,NJBF000071967,1400 EMERSON AVE,Atlantic City,NJ,39.37214084,-74.44590237,RES1,3001,,17,NE,1973,1973,3102,1,1,1430.266915,1430.266915,3505,NO,18.59,25.96,3,2.69,6106,114.128607,123.797198,133.565542,139.865617,I,Above,Hip,0,5701,Wood,22.27501027,0,0,,,,1,1,,0.03,nav,1,1973,1,, 6103,NJBF000071728,,Atlantic City,NJ,39.37141849,-74.44625389,RES1,3001,,NaN,NE,1900,0,3102,2,1,854.8099656,854.8099656,3505,NO,36.01,44.3,3,2.82,6106,114.12928,123.798434,133.566435,139.870662,I,Above,Gable,0,5701,Wood,40.15673894,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6104,NJBF000071791,2233 KUEHNLE AVE,Atlantic City,NJ,39.37164583,-74.45237241,RES1,3001,,17,NE,1900,1900,3101,2,1,1298.958608,1298.958608,3505,NO,30.16,41.7,3,4.12,6106,113.993893,123.684762,133.442422,139.766234,I,Above,Gable,0,5701,Wood,35.92956156,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6105,NJBF000071765,2235 KUEHNLE AVE,Atlantic City,NJ,39.37154551,-74.45245154,RES1,3001,,17,NE,1918,1918,3101,1,1,1857.350389,1857.350389,3505,NO,18.88,25.15,3,1.43,6106,113.993298,123.684369,133.441937,139.766425,I,Above,Gable,0,5701,Wood,22.01312382,0,0,,,,1,1,,0.03,nav,1,1918,1,, 6106,NJBF000071724,2215 GRAMMERCY AVE,Atlantic City,NJ,39.37140582,-74.45037501,RES1,3001,,17,NE,1954,1954,3101,1,1,1582.056405,1582.056405,3505,NO,16.53,29.08,3,5.47,6106,114.040036,123.723596,133.484655,139.803,I,Above,Gable,0,5701,Wood,22.80933525,0,0,,,,1,1,,0.03,nav,1,1954,1,, 6107,NJBF000072019,1516 N ARKANSAS AVE,Atlantic City,NJ,39.37230446,-74.44858404,RES1,3001,,16,NE,1948,1948,3102,1,1,1119.906837,1119.906837,3505,NO,18.07,30.11,3,5.59,6106,114.068625,123.746658,133.510378,139.819038,I,Above,Hip,0,5701,Wood,24.0924727,0,0,,,,1,1,,0.03,nav,1,1948,1,, 6108,NJBF000071735,1548 N MISSOURI AVE #A,Atlantic City,NJ,39.37144469,-74.44973084,RES1,3001,,NaN,NE,1900,0,3102,2,1,1757.899558,1757.899558,3505,NO,25.95,40.48,3,0.57,6106,114.053572,123.734891,133.497009,139.813056,I,Above,Hip,0,5701,Wood,33.21673014,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6109,NJBF000072062,1428 EMERSON AVE #A,Atlantic City,NJ,39.3724765,-74.4471585,RES1,3001,,NaN,NE,1900,0,3102,2,1,1279.738952,1279.738952,3505,NO,32.97,47.95,3,0.39,6106,114.097549,123.770771,133.536843,139.839943,I,Above,Gable,0,5701,Wood,40.45816486,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6110,NJBF000072047,2045 MORNINGSIDE DR,Atlantic City,NJ,39.37241457,-74.44782069,RES1,3001,,17,NE,1954,1954,3102,1,1,1348.065328,1348.065328,3505,NO,18.85,25.77,3,4.8,6106,114.0839,123.759367,133.524337,139.829955,I,Above,Flat,0,5701,Wood,22.30696049,0,0,,,,1,1,,0.03,nav,1,1954,1,, 6111,NJBF000071455,1610 W RIVERSIDE DR,Atlantic City,NJ,39.370654,-74.4506245,RES1,3001,,17,NE,1955,1955,3101,1,1,1340.010387,1340.010387,3505,NO,25.94,37.52,3,7.91,6106,114.043246,123.727022,133.487946,139.810248,I,Above,Flat,0,5701,Wood,31.72937748,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6112,NJBF000071508,1564 W RIVERSIDE DR,Atlantic City,NJ,39.37079505,-74.44986827,RES1,3001,,16,NE,1900,1900,3101,1,1,887.8066896,887.8066896,3505,NO,19.32,29.8,3,7.76,6106,114.058065,123.739287,133.501417,139.820613,I,Above,Flat,0,5701,Wood,24.56277833,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6113,NJBF000071557,,Atlantic City,NJ,39.37092639,-74.45346921,RES1,3001,,NaN,NE,1969,0,3101,1,1,1207.329669,1207.329669,3505,NO,12.15,17.84,3,0.74,6106,113.97828,123.672477,133.428621,139.758947,I,Above,Flat,0,5701,Wood,14.99420516,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6114,NJBF000071636,2305 KUEHNLE AVE,Atlantic City,NJ,39.3711352,-74.45262871,RES1,3001,,17,NE,1940,1940,3101,2,1,1985.236143,1985.236143,3505,NO,43.85,56.11,3,5.53,6106,113.994157,123.685513,133.44295,139.769737,I,Above,Gable,0,5701,Wood,49.9821701,0,0,,,,1,1,,0.03,nav,1,1940,2,, 6115,NJBF000071471,1580 W RIVERSIDE DR,Atlantic City,NJ,39.3707027,-74.45027348,RES1,3001,,17,NE,1900,1900,3101,1,1,2256.387284,2256.387284,3505,NO,18.55,32.92,3,1.42,6106,114.050328,123.7329,133.49439,139.81532,I,Above,Flat,0,5701,Wood,25.7327968,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6116,NJBF000071099,1740 MCKINLEY AVE,Atlantic City,NJ,39.36940335,-74.43904493,RES1,3001,,17,NE,1900,1900,3102,1,1,2455.239923,2455.239923,3505,NO,16.57,30.98,3,0.86,6106,114.308442,123.951071,133.732216,140.017395,I,Above,Gable,0,5701,Wood,23.77717675,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6117,NJBF000071053,1827 MCKINLEY AVE,Atlantic City,NJ,39.36924294,-74.44020357,RES3A,3001,,17,NE,1900,1900,3301,2,1,1970.052707,1970.052707,3505,NO,22.76,37.37,3,-2.4,6106,114.285295,123.931628,133.71078,140.001116,I,Above,Gable,0,5701,Wood,30.06481813,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6118,NJBF000068817,3906 CROSSAN AVE,Atlantic City,NJ,39.35769889,-74.46291085,RES1,3001,,45,NE,1900,1900,3101,2,2,1170.028539,1170.028539,3505,NO,26.22,38.82,3,-0.21,6106,113.928821,123.642931,133.388505,139.806256,I,Above,Gable,0,5701,Wood,32.51911953,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6119,NJBF000068854,643 N HARRISBURG AVE,Atlantic City,NJ,39.35780078,-74.46222561,RES1,3001,,17,NE,2012,2012,3101,2,1,1443.02411,1443.02411,3505,NO,26.1,35.05,3,0.41,6106,113.942593,123.654192,133.400737,139.815982,I,Above,Hip,0,5701,Wood,30.5752792,0,0,,,,1,1,,0.03,nav,1,2012,2,, 6120,NJBF000069115,713 WISTERIA RD,Atlantic City,NJ,39.35882868,-74.46259142,RES1,3001,,16,NE,1900,1900,3101,1,1,897.4325383,897.4325383,3505,NO,14.45,28.07,3,0.17,6106,113.922024,123.636548,133.382346,139.793942,I,Above,Hip,0,5701,Wood,21.25952504,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6121,NJBF000069070,724 WARRENA RD,Atlantic City,NJ,39.35866,-74.463931,RES1,3001,,17,NE,2007,2007,3101,1,1,1058.181552,1058.181552,3505,NO,13.82,25.53,3,3.22,6106,113.894688,123.614188,133.358086,139.774325,I,Above,Gable,0,5701,Wood,19.67459822,0,0,,,,1,1,,0.03,nav,1,2007,1,, 6122,NJBF000068841,537 N TRENTON AVE,Atlantic City,NJ,39.35776305,-74.46094086,COM1,3003,,27,ME,1920,1920,3401,2,2,2250.813656,2250.813656,3507,YES,39.58,53.09,1,1.1,6106,113.971224,123.677792,133.42622,139.837724,I,Above,Flat,0,NaN,Wood,46.33705054,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6123,NJBF000069321,657 N TRENTON AVE,Atlantic City,NJ,39.359662,-74.4625315,RES1,3001,760,NaN,NE,1969,0,3101,1,1,524.3451024,524.3451024,3505,NO,27.92,39.35,3,8.79,6106,113.913206,123.628678,133.374371,139.781956,I,Above,Flat,0,5701,Wood,33.63847989,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6124,NJBF000068862,605 N ELBERON AVE,Atlantic City,NJ,39.35782338,-74.46351381,RES1,3001,,17,NE,1900,1900,3101,2,1,996.1996628,996.1996628,3505,NO,34.26,40.81,3,-0.16,6106,113.914072,123.630719,133.375398,139.794337,I,Above,Gable,0,5701,Wood,37.53577785,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6125,NJBF000071803,1601 N ALBANY AVE,Atlantic City,NJ,39.3716744,-74.4773779,COM1,3003,,NaN,ME,1969,0,3401,2,1,1165.738149,1165.738149,3507,NO,32.88,45.8,1,2.15,6106,113.445918,123.232266,132.952083,139.335143,I,Above,Gable,0,NaN,Wood,39.33844613,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6126,NJBF000069226,722 AUGUSTINE RD,Atlantic City,NJ,39.3592385,-74.4619835,RES1,3001,,15,NE,1925,1925,3101,1,1,641.7449601,641.7449601,3505,NO,22.35,34.96,3,4.32,6106,113.930352,123.643108,133.389699,139.797629,I,Above,Hip,0,5701,Wood,28.6567975,0,0,,,,1,1,,0.03,nav,1,1925,1,, 6127,NJBF000068784,560 N HARRISBURG AVE,Atlantic City,NJ,39.35761317,-74.4626508,RES1,3001,,45,NE,1977,1977,3101,2,2,1655.367936,1655.367936,3505,NO,34.64,41.74,3,-2.96,6106,113.935578,123.648547,133.394514,139.811893,I,Above,Hip,0,5701,Wood,38.19354473,0,0,,,,1,1,,0.03,nav,1,1977,2,, 6128,NJBF000068839,636 WISTERIA RD,Atlantic City,NJ,39.35775618,-74.46196817,RES1,3001,,16,NE,1900,1900,3101,1,1,787.7230823,787.7230823,3505,NO,17.03,32,3,3.85,6106,113.948801,123.659332,133.406261,139.820936,I,Above,Gable,0,5701,Wood,24.51406448,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6129,NJBF000069090,711 WISTERIA RD,Atlantic City,NJ,39.35873847,-74.46253467,RES1,3001,,16,NE,1900,1900,3101,1,1,890.1202164,890.1202164,3505,NO,17.3,32.08,3,2.07,6106,113.924361,123.638537,133.384436,139.796288,I,Above,Flat,0,5701,Wood,24.69007237,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6130,NJBF000068811,630 DOVER AVE #A,Atlantic City,NJ,39.35767762,-74.46510198,RES1,3001,,NaN,NE,1960,0,3101,1,1,1236.133367,1236.133367,3505,NO,17,23.9,3,2.14,6106,113.88099,123.603645,133.346087,139.770207,I,Above,Hip,0,5701,Wood,20.4516222,0,0,,,,1,1,,0.03,nav,1,1960,1,, 6131,NJBF000069141,628 N TRENTON AVE,Atlantic City,NJ,39.35891884,-74.4624684,RES1,3001,,45,NE,1900,1900,3101,2,3,1272.007537,1272.007537,3505,NO,31.01,42.52,3,5.2,6106,113.923624,123.6378,133.383757,139.794578,I,Above,Hip,0,5701,Wood,36.76396307,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6132,NJBF000068761,4001 CROSSAN AVE,Atlantic City,NJ,39.35757312,-74.46393319,RES1,3001,,17,NE,1959,1959,3101,1,1,2536.336308,2536.336308,3505,NO,21.56,33.32,3,2.7,6106,113.907943,123.625854,133.369984,139.791295,I,Above,Hip,0,5701,Wood,27.43834508,0,0,,,,1,1,,0.03,nav,1,1959,1,, 6133,NJBF000068831,639 N HARRISBURG AVE,Atlantic City,NJ,39.35772824,-74.4621566,RES1,3001,,16,NE,1900,1900,3101,1,1,818.977413,818.977413,3505,NO,16.85,24.07,3,0.56,6106,113.945001,123.656223,133.402882,139.818256,I,Above,Gable,0,5701,Wood,20.45879219,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6134,NJBF000068773,542 N TRENTON AVE,Atlantic City,NJ,39.3575925,-74.4616285,RES1,3001,,27,NE,1925,1925,3101,2,2,504.079917,504.079917,3505,NO,29,40.76,3,0.92,6106,113.958231,123.667203,133.414658,139.82905,I,Above,Flat,0,5701,Wood,34.87781206,0,0,,,,1,1,,0.03,nav,1,1925,2,, 6135,NJBF000068051,428 N HARRISBURG AVE,Atlantic City,NJ,39.35547317,-74.46093059,RES1,3001,,27,NE,1920,1920,3102,2,2,1396.256654,1396.256654,3505,YES,24.77,35.15,3,2.13,6106,113.999678,123.702624,133.451452,139.873315,I,Above,Flat,0,5701,Wood,29.95831855,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6136,NJBF000068161,467 N ELBERON AVE,Atlantic City,NJ,39.35584667,-74.4616755,RES1,3001,,16,NE,1900,1900,3102,1,1,843.9707946,843.9707946,3505,NO,17.37,32.1,3,1.69,6106,113.97874,123.685173,133.432866,139.855378,I,Above,Flat,0,5701,Wood,24.73456127,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6137,NJBF000068679,604 N DOVER AVE,Atlantic City,NJ,39.35739597,-74.4649211,RES1,3001,,17,NE,1955,1955,3101,1,1,2397.475619,2397.475619,3505,NO,18.22,29.33,3,5.1,6106,113.888425,123.609946,133.352706,139.777648,I,Above,Hip,0,5701,Wood,23.77502566,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6138,NJBF000068054,421 N HARRISBURG AVE,Atlantic City,NJ,39.35548081,-74.46037484,RES1,3001,,27,NE,1920,1920,3102,2,2,741.7647898,741.7647898,3505,YES,33.03,38.07,3,2.02,6106,114.01176,123.712569,133.462205,139.882245,I,Above,Flat,0,5701,Wood,35.55098528,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6139,NJBF000068481,470 N ALBANY AVE,Atlantic City,NJ,39.35690723,-74.45986169,COM1,3003,100,NaN,ME,1969,1950,3401,1,1,14423.80858,14423.80858,3507,NO,17.76,26.8,1,0.71,6106,114.005375,123.706477,133.456645,139.868614,I,Above,Flat,0,NaN,Wood,22.28072603,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6140,NJBF000068235,440 N TRENTON AVE,Atlantic City,NJ,39.35609316,-74.46026363,RES1,3001,,NaN,NE,1969,0,3102,2,1,921.7159388,921.7159388,3505,NO,42.89,53.46,3,8.58,6106,114.006614,123.707981,133.457689,139.874613,I,Above,Gable,0,5701,Wood,48.17625622,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6141,NJBF000068253,440 N TRENTON AVE,Atlantic City,NJ,39.35615,-74.46030767,RES1,3001,,NaN,NE,1969,0,3102,2,1,972.2275772,972.2275772,3505,NO,26.12,39.66,3,3.15,6106,114.004946,123.706573,133.456208,139.873017,I,Above,Flat,0,5701,Wood,32.88988589,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6142,NJBF000068086,3715 PORTER AVE,Atlantic City,NJ,39.35558808,-74.45919709,COM1,3003,,33,ME,1969,1927,3401,2,1,3923.209774,3923.209774,3507,YES,34.11,42.45,1,1.93,6106,114.036228,123.732675,133.484023,139.899724,I,Above,Flat,0,NaN,Wood,38.28004771,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6143,NJBF000068232,449 N HARRISBURG AVE,Atlantic City,NJ,39.35608595,-74.46086739,RES1,3001,,45,NE,1900,1900,3102,2,2,1339.352836,1339.352836,3505,NO,25.87,40.15,3,-2.78,6106,113.993491,123.697175,133.446003,139.864885,I,Above,Flat,0,5701,Wood,33.01044731,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6144,NJBF000067726,403 N DOVER AVE,Atlantic City,NJ,39.35428784,-74.46188656,RES1,3001,,17,NE,1946,1946,3102,1,1,1503.440031,1503.440031,3505,NO,22.22,33.05,3,8.23,6106,113.993463,123.698162,133.445771,139.876068,I,Above,Gable,0,5701,Wood,27.63620634,0,0,,,,1,1,,0.03,nav,1,1946,1,, 6145,NJBF000065952,3801 BOARDWALK,Atlantic City,NJ,39.34853133,-74.45399194,RES3D,3003,,NaN,ME,1969,0,3301,2,1,2256.106552,2256.106552,3507,NO,38.14,46.08,1,2.42,6106,114.238902,123.90269,133.66211,140.088732,I,Above,Flat,0,NaN,Wood,42.10997396,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6146,NJBF000064583,114 S PLAZA PL,Atlantic City,NJ,39.3448418,-74.46361825,RES3A,3001,,18,NE,1900,1900,3301,2,1,1955.118282,1955.118282,3504,YES,35.27,42.3,-4,0,6106,114.076039,123.769439,133.51494,139.993757,I,Above,Hip,0,5701,Wood,38.78518691,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6147,NJBF000066921,3101 BOARDWALK,Atlantic City,NJ,39.35130504,-74.44796881,RES4,3003,,NaN,E,1969,0,3404,5,1,96391.81294,96391.81294,3507,NO,64.41,69.8,1,-0.25,6106,114.334802,123.981575,133.750286,140.141343,I,Above,Flat,0,NaN,Wood,67.10329971,0,0,,,,2,2,,0.03,nav,1,1969,5,, 6148,NJBF000074013,1725 HARRAH'S BLVD,Atlantic City,NJ,39.38443821,-74.42839095,COM8,3003,,NaN,ME,1969,0,3401,2,1,671718.8395,671718.8395,3507,NO,31.15,41.49,1,1.46,6102,114.367233,123.988568,133.783845,139.971743,I,Above,Hip,0,NaN,Wood,36.32350544,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6149,NJBF000065722,23 N KINGSTON AVE,Atlantic City,NJ,39.34792456,-74.46358871,RES3A,3001,,17,NE,1900,1900,3301,2,1,1477.258099,1477.258099,3505,NO,34.13,39.66,3,0.1,6106,114.036745,123.736413,133.482045,139.946933,I,Above,Hip,0,5701,Wood,36.89358678,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6150,NJBF000069969,1201 ARCTIC AVE,Atlantic City,NJ,39.36524603,-74.42819812,RES3D,3004,29,NaN,E,1969,0,3303,3,1,8374.720809,8374.720809,3505,NO,62.18,73.08,3,4.68,6106,114.590701,124.192838,133.994429,140.248588,I,Above,Gable,0,NaN,Wood,67.62919209,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6151,NJBF000069932,1201 ARCTIC AVE,Atlantic City,NJ,39.36505813,-74.42750618,RES3D,3004,29,NaN,E,1969,0,3303,3,1,4233.729638,4233.729638,3505,NO,55.45,67.59,3,2.52,6106,114.60777,124.207456,134.010351,140.262005,I,Above,Gable,0,NaN,Wood,61.51946567,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6152,NJBF000069880,1201 ARCTIC AVE,Atlantic City,NJ,39.36475826,-74.4270906,RES3D,3004,29,NaN,E,1969,0,3303,3,1,8613.918884,8613.918884,3505,NO,47.4,62.1,3,0.36,6106,114.620242,124.218189,134.021891,140.272668,I,Above,Hip,0,NaN,Wood,54.75217398,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6153,NJBF000068847,113 N CALIFORNIA RR #B,Atlantic City,NJ,39.35777439,-74.44530663,RES3A,3001,,33,NE,1900,1900,3301,2,1,6298.91979,6298.91979,3505,YES,37.72,42.93,3,5.38,6106,114.312039,123.960543,133.73324,140.088333,I,Above,Flat,0,5701,Wood,40.32821212,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6154,NJBF000065205,27 S TALLAHASSEE AVE,Atlantic City,NJ,39.34640474,-74.46380209,RES1,3001,,18,NE,1900,1900,3102,2,1,1946.893708,1946.893708,3504,NO,24.3,31.83,-4,0,6106,114.051691,123.749111,133.494432,139.966922,I,Above,Gable,0,5701,Wood,28.06541075,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6155,NJBF000068901,2402 AUBURN TERR,Atlantic City,NJ,39.35796795,-74.44199569,RES3B,3001,,45,ME,1900,1900,3301,2,2,1539.660986,1539.660986,3505,YES,32.96,47.63,3,8.76,6106,114.381437,124.018547,133.796699,140.137384,I,Above,Flat,0,NaN,Wood,40.29285872,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6156,NJBF000072391,560 N NEW JERSEY AVE,Atlantic City,NJ,39.37349506,-74.42479159,RES1,3001,,17,NE,1960,1960,3102,1,1,1653.400143,1653.400143,3505,NO,19.91,26.09,3,6.86,6106,114.566857,124.168801,133.975092,140.185689,I,Above,Hip,0,5701,Wood,22.99774298,0,0,,,,1,1,,0.03,nav,1,1960,1,, 6157,NJBF000072261,711 SEWELL AVE,Atlantic City,NJ,39.37305754,-74.42473318,RES1,3001,,16,NE,1955,1955,3102,1,1,839.8157038,839.8157038,3505,NO,18.13,29.41,3,6.76,6106,114.573156,124.174446,133.980967,140.192791,I,Above,Hip,0,5701,Wood,23.77120327,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6158,NJBF000070917,519 N NEW YORK AVE,Atlantic City,NJ,39.3688491,-74.43399683,RES3C,3001,,33,ME,1930,1900,3301,2,1,5354.085426,5354.085426,3505,YES,31.54,39.33,3,3.05,6106,114.423634,124.049029,133.839339,140.106039,I,Above,Flat,0,NaN,Wood,35.43678767,0,0,,,,1,1,,0.03,nav,1,1930,2,, 6159,NJBF000066473,4013 VENTNOR AVE,Atlantic City,NJ,39.34985527,-74.45879207,COM1,3004,100,NaN,ME,1969,0,3401,2,1,1883.664146,1883.664146,3507,YES,36.34,50.44,1,1.46,6106,114.117127,123.801846,133.554231,139.993729,I,Above,Flat,0,NaN,Wood,43.38571755,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6160,NJBF000067917,6 N BRIGHTON AVE,Atlantic City,NJ,39.35501472,-74.44762928,RES3B,3001,100,NaN,ME,1969,0,3301,3,1,1392.306203,1392.306203,3504,YES,47.22,54.41,-4,0,6106,114.295691,123.947952,133.717115,140.092394,I,Above,Hip,0,NaN,Wood,50.81383719,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6161,NJBF000067939,14 N BRIGHTON AVE,Atlantic City,NJ,39.35508544,-74.4476849,RES3B,3001,,45,ME,1900,1900,3301,2,2,1250.192184,1250.192184,3504,YES,22.9,33.57,-4,0,6106,114.293603,123.946188,133.715258,140.090489,I,Above,Hip,0,NaN,Wood,28.23941131,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6162,NJBF000067569,142 S BELLEVUE AVE,Atlantic City,NJ,39.3538525,-74.4410315,RES3A,3004,,45,NE,1900,1900,3301,3,2,703.5788251,703.5788251,3505,YES,32.54,37.64,3,-1.79,6106,114.453296,124.079912,133.859842,140.211595,I,Above,Flat,0,5701,Wood,35.09094873,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6163,NJBF000070985,1001 N OHIO AVE,Atlantic City,NJ,39.36906018,-74.44042296,RES3A,3001,,17,NE,1900,1900,3301,2,1,2991.37602,2991.37602,3505,YES,38.81,51.35,3,1.08,6106,114.2827,123.929568,133.708388,140.00028,I,Above,Hip,0,5701,Wood,45.08135642,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6164,NJBF000071782,447 N DELAWARE AVE,Atlantic City,NJ,39.37162024,-74.42464035,RES1,3001,,17,NE,1900,1900,3102,1,1,1221.581192,1221.581192,3505,NO,13.53,18.61,3,1.62,6106,114.591791,124.191171,133.99823,140.214532,I,Above,Gable,0,5701,Wood,16.07205595,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6165,NJBF000070965,1804 MCKINLEY AVE,Atlantic City,NJ,39.36899641,-74.43972367,RES3A,3001,,17,NE,1990,1990,3301,1,1,1262.864399,1262.864399,3505,NO,17.63,31.3,3,6.7,6106,114.298537,123.942985,133.723048,140.012453,I,Above,Hip,0,5701,Wood,24.46413001,0,0,,,,1,1,,0.03,nav,1,1990,1,, 6166,NJBF000069064,612 N TRENTON AVE,Atlantic City,NJ,39.35863725,-74.46223756,RES1,3001,,16,NE,1930,1930,3101,1,1,1423.070441,1423.070441,3505,NO,19.43,33.16,3,0.06,6106,113.932106,123.644983,133.391337,139.802777,I,Above,Hip,0,5701,Wood,26.29717616,0,0,,,,1,1,,0.03,nav,1,1930,1,, 6167,NJBF000072277,1415 N MICHIGAN AVE,Atlantic City,NJ,39.37312686,-74.44622027,RES1,3001,,17,NE,1900,1900,3102,2,1,1174.562082,1174.562082,3505,NO,30.14,40.05,3,3.8,6106,114.110457,123.780987,133.548418,139.845637,I,Above,Gable,0,5701,Wood,35.09629588,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6168,NJBF000069231,641 TRENTON AVE,Atlantic City,NJ,39.35926534,-74.46212539,RES1,3001,,17,NE,1997,1997,3101,1,1,1414.527475,1414.527475,3505,NO,17.23,28.85,3,6.33,6106,113.926932,123.640273,133.386651,139.794873,I,Above,Gable,0,5701,Wood,23.04140824,0,0,,,,1,1,,0.03,nav,1,1997,1,, 6169,NJBF000068042,5 S SPRAY AVE,Atlantic City,NJ,39.35543647,-74.44339587,RES3A,3004,,45,NE,1900,1900,3301,2,2,1202.662594,1202.662594,3505,YES,37.54,52.18,3,5.8,6106,114.382352,124.020141,133.796136,140.152262,I,Above,Flat,0,5701,Wood,44.85729704,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6170,NJBF000068026,7 S SPRAY AVE,Atlantic City,NJ,39.35539037,-74.44335275,RES3A,3004,,45,NE,1910,1910,3301,2,2,1384.313483,1384.313483,3505,YES,29.09,38.32,3,-0.6,6106,114.383855,124.021412,133.797479,140.153596,I,Above,Flat,0,5701,Wood,33.7072358,0,0,,,,1,1,,0.03,nav,1,1910,2,, 6171,NJBF000067373,3116 ATLANTIC AVE,Atlantic City,NJ,39.35326906,-74.44943419,COM1,3003,738,NaN,ME,1969,0,3401,3,1,2851.776848,2851.776848,3507,YES,50.27,55.76,1,2.72,6106,114.278221,123.934001,133.700392,140.089838,I,Above,Flat,0,NaN,Wood,53.01039314,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6172,NJBF000066914,26 N TRENTON AVE,Atlantic City,NJ,39.351286,-74.4567165,RES3A,3001,,16,NE,1900,1900,3301,1,1,1476.517565,1476.517565,3505,NO,13.04,25.66,3,-0.41,6106,114.144364,123.823813,133.579191,140.004948,I,Above,Flat,0,5701,Wood,19.34872688,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6173,NJBF000069253,221 N ARIZONA AVE,Atlantic City,NJ,39.35937041,-74.44597902,RES3A,3001,,27,NE,1920,1920,3301,2,2,1085.605077,1085.605077,3505,YES,36.32,41.62,3,-1.68,6106,114.277929,123.931336,133.702748,140.05427,I,Above,Flat,0,5701,Wood,38.96957715,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6174,NJBF000071304,1614 MCKINLEY AVE,Atlantic City,NJ,39.3701385,-74.437216,RES1,3001,,16,NE,1963,1963,3101,1,1,1119.469637,1119.469637,3505,NO,16.54,29.41,3,2.9,6106,114.339305,123.976679,133.760868,140.035989,I,Above,Flat,0,5701,Wood,22.97231389,0,0,,,,1,1,,0.03,nav,1,1963,1,, 6175,NJBF000070601,1908 GRANT AVE,Atlantic City,NJ,39.36775617,-74.44050264,RES3B,3001,,17,ME,1900,1900,3301,2,1,614.3359807,614.3359807,3505,NO,44.5,57.87,3,8.72,6106,114.296229,123.941886,133.720914,140.018138,I,Above,Flat,0,5701,Wood,51.18239966,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6176,NJBF000067898,2513 PACIFIC AVE,Atlantic City,NJ,39.35493599,-74.4415536,RES3A,3004,,45,NE,1900,1900,3301,2,3,735.2939476,735.2939476,3505,YES,38.08,52.79,3,0.68,6106,114.428471,124.058875,133.837925,140.188014,I,Above,Flat,0,5701,Wood,45.43544964,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6177,NJBF000067356,5 N PROVIDENCE AVE,Atlantic City,NJ,39.35320951,-74.45297685,RES3B,3001,,45,E,1918,1918,3303,4,4,1707.520767,1707.520767,3507,NO,46.52,58.77,1,2.5,6106,114.201773,123.870588,133.631498,140.035121,I,Above,Gable,0,NaN,Wood,52.6447836,0,0,,,,1,1,,0.03,nav,1,1918,4,, 6178,NJBF000067341,3 N PROVIDENCE AVE,Atlantic City,NJ,39.35314249,-74.4528652,RES3B,3001,,45,E,1920,1920,3303,4,4,1827.553113,1827.553113,3507,NO,65.93,71.45,1,2.41,6106,114.205068,123.873343,133.634428,140.0379,I,Above,Hip,0,NaN,Wood,68.6892442,0,0,,,,1,1,,0.03,nav,1,1920,4,, 6179,NJBF000069193,9 N ARKANSAS AVE,Atlantic City,NJ,39.35913471,-74.43685639,COM1,3003,210,NaN,ME,1969,0,3401,1,1,9672.465157,9672.465157,3507,NO,9.59,24.25,1,-0.93,6110,114.478258,124.099532,133.886326,140.200633,I,Above,Flat,0,NaN,Wood,16.92132889,0,0,,,,1,1,,1,nav,1,1969,1,, 6180,NJBF000069254,9 N ARKANSAS AVE,Atlantic City,NJ,39.35938126,-74.43705341,COM1,3003,210,NaN,ME,1969,0,3401,1,1,1176.390574,1176.390574,3507,NO,15.53,24.27,1,-0.76,6110,114.471003,124.093341,133.879775,140.194055,I,Above,Flat,0,NaN,Wood,19.89899089,0,0,,,,1,1,,1,nav,1,1969,1,, 6181,NJBF000072508,1422 N OHIO AVE,Atlantic City,NJ,39.3739325,-74.4461415,RES1,3001,,17,NE,1900,1900,3102,1,1,1810.649536,1810.649536,3505,NO,16.73,27.33,3,3.46,6106,114.103,123.773913,133.541166,139.834867,I,Above,Gable,0,5701,Wood,22.02981638,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6182,NJBF000071083,710 N KENTUCKY AVE,Atlantic City,NJ,39.36934205,-74.43636238,RES1,3001,,17,NE,1961,1961,3101,2,1,1918.458365,1918.458365,3505,NO,36.99,46.97,3,2.78,6106,114.366981,124.000662,133.786593,140.061245,I,Above,Hip,0,5701,Wood,41.97703734,0,0,,,,1,1,,0.03,nav,1,1961,2,, 6183,NJBF000066381,43 N LACLEDE PL,Atlantic City,NJ,39.34961485,-74.46106544,RES3A,3001,,45,NE,1900,1900,3301,2,2,1750.446841,1750.446841,3505,NO,29.99,38.02,3,-0.83,6106,114.070424,123.7635,133.512637,139.961277,I,Above,Flat,0,5701,Wood,34.00685957,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6184,NJBF000066243,36 N LACLEDE PL,Atlantic City,NJ,39.34928308,-74.46133646,RES3A,3001,,27,NE,1900,1900,3301,2,2,1348.33982,1348.33982,3505,YES,37.43,50.68,3,2.51,6106,114.068725,123.762218,133.510979,139.962037,I,Above,Flat,0,5701,Wood,44.05440864,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6185,NJBF000072654,1531 MADISON AVE,Atlantic City,NJ,39.37441459,-74.4485847,RES1,3001,,17,NE,1930,1930,3102,1,1,1734.345149,1734.345149,3505,NO,16.89,31.45,3,5.06,6106,114.044613,123.724315,133.487189,139.787207,I,Above,Gable,0,5701,Wood,24.17104222,0,0,,,,1,1,,0.03,nav,1,1930,1,, 6186,NJBF000068882,624 N ELBERON AVE,Atlantic City,NJ,39.35790722,-74.46408871,RES1,3001,,17,NE,1900,1900,3101,2,1,1882.264733,1882.264733,3505,NO,44.85,56.14,3,8.94,6106,113.900425,123.619444,133.363281,139.78348,I,Above,Flat,0,5701,Wood,50.49631204,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6187,NJBF000067173,4305 STEWART AVE,Atlantic City,NJ,39.35243905,-74.46366882,RES1,3001,,17,NE,1950,1950,3102,1,1,1471.662419,1471.662419,3505,NO,17.11,31.32,3,-0.14,6106,113.977548,123.686032,133.43132,139.87573,I,Above,Gable,0,5701,Wood,24.21336226,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6188,NJBF000064976,130 S DELANCY PL,Atlantic City,NJ,39.34582965,-74.46039233,RES3A,3001,,18,NE,1930,1930,3301,2,1,3167.801897,3167.801897,3504,YES,22.32,31.99,-4,0,6106,114.133849,123.816682,133.566706,140.029379,I,Above,Flat,0,5701,Wood,27.15562176,0,0,,,,1,1,,0.03,nav,1,1930,2,, 6189,NJBF000072577,539 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37415376,-74.4220121,RES1,3001,,17,NE,2003,2003,3102,3,1,1988.854664,1988.854664,3505,NO,57.77,67.47,3,8.16,6106,114.618528,124.212949,134.024435,140.220358,I,Above,Gable,0,5701,Wood,62.61798871,0,0,,,,1,1,,0.03,nav,1,2003,3,, 6190,NJBF000068917,607 N ELBERON AVE,Atlantic City,NJ,39.35800716,-74.4635826,RES1,3001,,18,NE,1962,1962,3101,2,1,1734.534067,1734.534067,3505,NO,30.84,43,3,-1.92,6106,113.910305,123.627493,133.372035,139.790319,I,Above,Gable,0,5701,Wood,36.91960302,0,0,,,,1,1,,0.03,nav,1,1962,2,, 6191,NJBF000070495,716 N OHIO AVE,Atlantic City,NJ,39.36735694,-74.43976327,RES3B,3001,,33,ME,1900,1925,3301,2,1,3158.620084,3158.620084,3505,YES,34.26,42.39,3,1.24,6106,114.316899,123.959585,133.740003,140.035831,I,Above,Flat,0,5701,Wood,38.32848103,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6192,NJBF000068818,2815 FAIRMOUNT AVE,Atlantic City,NJ,39.35771019,-74.44841843,RES3A,3001,,17,NE,1905,1905,3301,2,1,1662.681621,1662.681621,3505,YES,32.35,46.78,3,1.05,6106,114.245241,123.904837,133.672503,140.040208,I,Above,Hip,0,5701,Wood,39.56814169,0,0,,,,1,1,,0.03,nav,1,1905,2,, 6193,NJBF000068868,,Atlantic City,NJ,39.35784601,-74.44248016,RES3B,3001,,NaN,ME,1900,0,3301,2,1,8424.496245,8424.496245,3505,NO,26.84,41.39,3,3.57,6106,114.372452,124.011061,133.788417,140.131592,I,Above,Flat,0,5701,Wood,34.11565892,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6194,NJBF000068873,,Atlantic City,NJ,39.35786346,-74.44222668,RES3B,3001,,NaN,ME,1969,0,3301,1,1,1091.398234,1091.398234,3505,NO,16.87,24.06,3,2.64,6106,114.377723,124.015472,133.793247,140.135298,I,Above,Flat,0,NaN,Wood,20.46334315,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6195,NJBF000070070,208 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36570086,-74.4292098,RES3D,3004,,NaN,E,1969,0,3303,3,1,893.3250544,893.3250544,3505,NO,31.44,41.64,3,-1.88,6106,114.563587,124.16957,133.96923,140.226379,I,Above,Gable,0,NaN,Wood,36.54137047,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6196,NJBF000071149,422 MADISON AVE,Atlantic City,NJ,39.36958014,-74.4181749,RES3D,3004,,33,E,2004,1900,3303,2,1,3451.276072,3451.276072,3505,YES,19.12,32.73,3,-2.09,6106,114.753344,124.331026,134.151,140.344059,I,Above,Flat,0,NaN,Wood,25.9230044,0,0,,,,1,1,,0.03,nav,1,2004,2,, 6197,NJBF000071313,346 N DELAWARE AVE,Atlantic City,NJ,39.37016842,-74.42411836,RES1,3001,,17,NE,1935,1935,3102,2,1,1098.583001,1098.583001,3505,YES,31.59,40.3,3,-1.09,6106,114.619855,124.215912,134.024291,140.243149,I,Above,Flat,0,5701,Wood,35.94475749,0,0,,,,1,1,,0.03,nav,1,1935,2,, 6198,NJBF000069271,227 N ARIZONA AVE,Atlantic City,NJ,39.35947412,-74.44603147,RES3A,3001,,27,NE,1900,1900,3301,2,2,657.2325168,657.2325168,3505,YES,29.12,39.04,3,-0.65,6106,114.275533,123.929284,133.700597,140.051914,I,Above,Gable,0,5701,Wood,34.07547778,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6199,NJBF000071037,649 HOWARD ST,Atlantic City,NJ,39.36920962,-74.43498519,RES1,3001,,17,NE,1960,1960,3101,1,1,1510.43878,1510.43878,3505,NO,16.73,28.02,3,5.01,6106,114.398161,124.027189,133.815626,140.085116,I,Above,Flat,0,5701,Wood,22.37700937,0,0,,,,1,1,,0.03,nav,1,1960,1,, 6200,NJBF000067500,10 N SOVEREIGN AVE,Atlantic City,NJ,39.35366813,-74.45140197,RES3B,3001,,45,ME,1910,1910,3301,2,2,1597.527843,1597.527843,3504,NO,33.37,47.85,-4,0,6106,114.230373,123.894132,133.657441,140.053097,I,Above,Hip,0,NaN,Wood,40.61001475,0,0,,,,1,1,,0.03,nav,1,1910,2,, 6201,NJBF000067988,17 S TEXAS AVE,Atlantic City,NJ,39.35524939,-74.4422337,RES3A,3004,29,NaN,NE,1969,0,3301,2,1,562.4824032,562.4824032,3505,YES,32.62,45.78,3,-2.99,6106,114.409854,124.043205,133.821121,140.172989,I,Above,Flat,0,5701,Wood,39.19913348,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6202,NJBF000065455,4509 VENTNOR AVE,Atlantic City,NJ,39.34713783,-74.4642475,RES3A,3001,,47,NE,1900,1900,3301,2,2,1482.933054,1482.933054,3505,NO,39.34,46.88,3,3.04,6106,114.032453,123.733137,133.477863,139.948553,I,Above,Gable,0,5701,Wood,43.11126032,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6203,NJBF000065706,31 N ABERDEEN PL,Atlantic City,NJ,39.34787802,-74.46405656,RES3A,3001,,18,NE,1920,1920,3301,2,1,2421.74904,2421.74904,3505,NO,27.72,33.23,3,1.37,6106,114.027084,123.728507,133.473495,139.940171,I,Above,Hip,0,5701,Wood,30.47410818,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6204,NJBF000069405,127 S OCEAN AVE,Atlantic City,NJ,39.36016119,-74.42597811,COM1,3001,100,NaN,ME,1969,0,3401,3,1,2244.417802,2244.417802,3507,NO,42.61,48.37,1,-0.34,6106,114.699565,124.286829,134.092964,140.353914,I,Above,Flat,0,NaN,Wood,45.48968478,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6205,NJBF000068477,19 N BELLEVUE AVE,Atlantic City,NJ,39.3568934,-74.44277674,RES3B,3001,,33,ME,1915,1915,3301,3,1,1229.608571,1229.608571,3505,YES,36.51,50.34,3,2.49,6106,114.377744,124.015826,133.79276,140.140784,I,Above,Gable,0,NaN,Wood,43.42545184,0,0,,,,1,1,,0.03,nav,1,1915,3,, 6206,NJBF000069416,1825 ATLANTIC AVE,Atlantic City,NJ,39.36022592,-74.43434617,COM1,3003,331,NaN,ME,1969,0,3401,6,1,45941.78987,45941.78987,3507,NO,78.52,91.36,1,2.65,6106,114.519069,124.133644,133.924726,140.224042,I,Above,Flat,0,NaN,Wood,84.94103845,0,0,,,,1,1,,0.03,nav,1,1969,6,, 6207,NJBF000072234,644 SEWELL AVE,Atlantic City,NJ,39.37298641,-74.42398276,RES1,3001,,16,NE,1900,1900,3102,1,1,1222.335251,1222.335251,3505,NO,11.46,18.52,3,-0.22,6106,114.589988,124.188954,133.996934,140.205655,I,Above,Flat,0,5701,Wood,14.99097052,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6208,NJBF000071792,330 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3716518,-74.42031628,RES1,3001,,27,NE,1998,1998,3102,2,2,1751.097629,1751.097629,3505,NO,36.74,42.84,3,5.15,6106,114.68358,124.270153,134.085548,140.281976,I,Above,Hip,0,5701,Wood,39.78980141,0,0,,,,1,1,,0.03,nav,1,1998,2,, 6209,NJBF000072733,1617 MADISON AVE,Atlantic City,NJ,39.37471156,-74.44974419,RES1,3001,,17,NE,1900,1900,3102,2,1,1092.582613,1092.582613,3505,NO,44.69,50.62,3,8.5,6106,114.016136,123.700082,133.460864,139.76346,I,Above,Gable,0,5701,Wood,47.65587682,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6210,NJBF000070259,521 N OHIO AVE,Atlantic City,NJ,39.36646466,-74.43877217,RES3B,3001,,45,ME,1925,1925,3301,3,4,1101.306953,1101.306953,3505,YES,42.26,51.35,3,8.08,6106,114.348809,123.987067,133.769426,140.064665,I,Above,Gable,0,NaN,Wood,46.80577952,0,0,,,,1,1,,0.03,nav,1,1925,3,, 6211,NJBF000070060,605 N ARKANSAS AVE,Atlantic City,NJ,39.36565611,-74.44143092,RES3B,3001,,NaN,ME,1900,0,3301,2,1,2786.981767,2786.981767,3505,NO,30.88,39.43,3,1.58,6106,114.300936,123.947201,133.725126,140.034102,I,Above,Gable,0,NaN,Wood,35.15464719,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6212,NJBF000072487,1628 N MICHIGAN AVE,Atlantic City,NJ,39.3738387,-74.44993639,RES1,3001,,17,NE,1959,1959,3102,2,1,1608.402339,1608.402339,3505,NO,30.96,43.13,3,0.21,6106,114.021837,123.705821,133.466648,139.77347,I,Above,Hip,0,5701,Wood,37.04559944,0,0,,,,1,1,,0.03,nav,1,1959,2,, 6213,NJBF000072329,1425 N MICHIGAN AVE,Atlantic City,NJ,39.373311,-74.4468185,RES1,3001,,45,NE,1900,1900,3102,2,2,1345.613569,1345.613569,3505,NO,38.78,50.96,3,8.41,6106,114.095391,123.768135,133.534468,139.833015,I,Above,Gable,0,5701,Wood,44.87195624,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6214,NJBF000072235,1917 N COLUMBIA AVE,Atlantic City,NJ,39.3729875,-74.4552895,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,6709.476654,6709.476654,3505,NO,36.14,50.59,3,6.81,6106,113.915124,123.61754,133.36987,139.696951,I,Above,Flat,0,NaN,Wood,43.36360531,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6215,NJBF000072185,1917 N COLUMBIA AVE,Atlantic City,NJ,39.3728195,-74.45537054,RES3C,3001,29,NaN,ME,1969,0,3301,2,1,6681.107513,6681.107513,3505,NO,41.13,50.56,3,4.62,6106,113.915277,123.617862,133.370134,139.698181,I,Above,Flat,0,NaN,Wood,45.84702076,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6216,NJBF000071327,1600 MCKINLEY AVE,Atlantic City,NJ,39.37022188,-74.43699507,RES1,3001,,17,NE,1900,1900,3101,1,1,1637.873586,1637.873586,3505,NO,26.33,35.85,3,8.55,6106,114.343101,123.979838,133.764399,140.038322,I,Above,Gable,0,5701,Wood,31.09105133,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6217,NJBF000067683,424 N ANNAPOLIS AVE,Atlantic City,NJ,39.35415047,-74.46351526,RES1,3001,,17,NE,1900,1900,3102,1,1,2480.122807,2480.122807,3505,NO,23.98,35.77,3,4.84,6106,113.959479,123.670309,133.415616,139.851617,I,Above,Hip,0,5701,Wood,29.87486913,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6218,NJBF000068565,209 N CHELSEA AVE,Atlantic City,NJ,39.357134,-74.4509875,RES3A,3001,,45,NE,1900,1900,3301,2,2,1926.919889,1926.919889,3507,YES,36.89,42.08,1,0.9,6106,114.196411,123.864475,133.628131,140.008027,I,Above,Gable,0,5701,Wood,39.48507662,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6219,NJBF000072714,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37464315,-74.41924638,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6582.196078,6582.196078,3505,NO,19.11,28.4,3,7.87,6106,114.671736,124.258678,134.075455,140.257127,I,Above,Hip,0,NaN,Wood,23.7560408,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6220,NJBF000066977,34 N TRENTON AVE,Atlantic City,NJ,39.35153244,-74.45669675,RES3A,3001,,18,NE,1949,1949,3301,2,1,2164.14856,2164.14856,3505,YES,40.91,45.93,3,2.1,6106,114.141669,123.821501,133.576898,140.001539,I,Above,Flat,0,5701,Wood,43.42165105,0,0,,,,1,1,,0.03,nav,1,1949,2,, 6221,NJBF000065550,4501 VENTNOR AVE,Atlantic City,NJ,39.34744723,-74.46371314,RES3A,3001,,18,NE,2002,2002,3301,2,1,1852.155809,1852.155809,3505,NO,30.76,44.16,3,6.46,6106,114.04018,123.739378,133.484838,139.952316,I,Above,Hip,0,5701,Wood,37.46036251,0,0,,,,1,1,,0.03,nav,1,2002,2,, 6222,NJBF000068157,112 N CHELSEA AVE,Atlantic City,NJ,39.35583773,-74.45066879,RES3A,3001,29,17,NE,1950,1950,3301,1,1,1581.154748,1581.154748,3505,NO,24.19,35.65,3,4.76,6106,114.219336,123.884112,133.648404,140.032396,I,Above,Hip,0,5701,Wood,29.91883293,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6223,NJBF000070276,124 N VIRGINIA AVE,Atlantic City,NJ,39.36651995,-74.42492965,RES1,3001,,27,NE,2000,2000,3102,2,2,1979.337971,1979.337971,3505,NO,39.6,47.23,3,4.25,6106,114.645489,124.239217,134.046709,140.281577,I,Above,Hip,0,5701,Wood,43.41553542,0,0,,,,1,1,,0.03,nav,1,2000,2,, 6224,NJBF000069352,1800 ATLANTIC AVE,Atlantic City,NJ,39.35982047,-74.43311593,COM1,3003,100,NaN,ME,1969,0,3401,1,1,3511.880018,3511.880018,3507,NO,19.79,25.92,1,2.2,6106,114.550495,124.160332,133.953614,140.248848,I,Above,Flat,0,NaN,Wood,22.85888247,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6225,NJBF000069285,12 S INDIANA AVE,Atlantic City,NJ,39.35951626,-74.43312549,COM1,3003,100,NaN,ME,1969,0,3401,1,1,923.7873049,923.7873049,3507,NO,11.75,26.25,1,1.02,6110,114.55401,124.163383,133.956669,140.253007,I,Above,Flat,0,NaN,Wood,19.00383103,0,0,,,,1,1,,1,nav,1,1969,1,, 6226,NJBF000067253,4 N PROVIDENCE AVE,Atlantic City,NJ,39.3527605,-74.4535635,RES3B,3001,,NaN,E,1969,0,3303,3,1,549.8318962,549.8318962,3507,YES,36.54,51.37,1,0.11,6106,114.194602,123.864813,133.624852,140.032573,I,Above,Hip,0,NaN,Wood,43.95650134,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6227,NJBF000072562,105 ADRIATIC AVE,Atlantic City,NJ,39.37409548,-74.416056,RES3C,3001,,17,ME,2003,2003,3301,3,1,1301.53527,1301.53527,3505,NO,46.03,60.14,3,8.82,6106,114.745753,124.323029,134.146278,140.314798,I,Above,Hip,0,NaN,Wood,53.08440693,0,0,,,,1,1,,0.03,nav,1,2003,3,, 6228,NJBF000067549,336 N ELBERON AVE,Atlantic City,NJ,39.35379949,-74.46077855,RES1,3001,,17,NE,1900,1900,3102,2,1,1222.409344,1222.409344,3505,NO,35.73,48.97,3,7.19,6106,114.023852,123.723416,133.472678,139.901616,I,Above,Hip,0,5701,Wood,42.3462122,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6229,NJBF000067332,60 N HARTFORD AVE,Atlantic City,NJ,39.3531175,-74.454928,RES3B,3001,290,NaN,E,1969,0,3303,3,1,2026.210675,2026.210675,3507,YES,38.03,47.83,1,-0.44,6106,114.160352,123.836337,133.594292,140.005669,I,Above,Gable,0,NaN,Wood,42.92906666,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6230,NJBF000071506,125 SUNRISE AVE,Atlantic City,NJ,39.37079168,-74.41384516,RES3D,3004,,17,E,2000,2000,3303,2,1,1208.631548,1208.631548,3505,NO,28.92,39.22,3,6.3,6106,114.83101,124.397955,134.226296,140.394568,I,Above,Hip,0,NaN,Wood,34.06966607,0,0,,,,1,1,,0.03,nav,1,2000,2,, 6231,NJBF000071559,125 SUNRISE AVE,Atlantic City,NJ,39.37093,-74.413938,RES3D,3004,,17,E,2000,2000,3303,2,1,580.2732432,580.2732432,3505,NO,34.34,46.29,3,5.15,6106,114.827425,124.394814,134.222945,140.391242,I,Above,Hip,0,NaN,Wood,40.31317418,0,0,,,,1,1,,0.03,nav,1,2000,2,, 6232,NJBF000072316,1910 E RIVERSIDE DR,Atlantic City,NJ,39.37325719,-74.44489884,RES1,3001,,17,NE,1900,1900,3102,2,1,1452.067809,1452.067809,3505,YES,30.52,40.72,3,6.85,6106,114.13756,123.803679,133.573337,139.865401,I,Above,Hip,0,5701,Wood,35.61667344,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6233,NJBF000072812,503 BARRETT AVE,Atlantic City,NJ,39.37502857,-74.42332182,RES3D,3001,,NaN,ME,1910,0,3301,2,1,1159.287843,1159.287843,3507,NO,22.85,35.74,1,-0.19,6106,114.580582,124.179776,133.988473,140.187334,I,Above,Flat,0,NaN,Wood,29.29694921,0,0,,,,1,1,,0.03,nav,1,1910,2,, 6234,NJBF000070727,707 N INDIANA AVE,Atlantic City,NJ,39.36819183,-74.43831508,RES1,3001,,17,NE,1925,1925,3102,2,1,1616.760779,1616.760779,3505,NO,29.69,43.34,3,7.47,6106,114.338343,123.97716,133.759913,140.046779,I,Above,Gable,0,5701,Wood,36.5146462,0,0,,,,1,1,,0.03,nav,1,1925,2,, 6235,NJBF000066508,33 N WINDSOR AVE,Atlantic City,NJ,39.34993175,-74.45994533,RES3A,3001,,45,NE,1900,1900,3301,2,3,1042.754357,1042.754357,3505,NO,36.55,45.1,3,3.44,6106,114.090912,123.780239,133.530964,139.974269,I,Above,Hip,0,5701,Wood,40.82350667,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6236,NJBF000070624,623 N INDIANA AVE,Atlantic City,NJ,39.36781783,-74.43807082,RES1,3001,,17,NE,1920,1920,3102,2,1,1330.480288,1330.480288,3505,YES,42.37,53.72,3,5.09,6106,114.347994,123.985556,133.768832,140.056127,I,Above,Gable,0,5701,Wood,48.04274202,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6237,NJBF000072209,1920 E RIVERSIDE DR,Atlantic City,NJ,39.37291893,-74.4450953,RES1,3001,,17,NE,1996,1996,3102,2,1,1337.494445,1337.494445,3505,NO,31.28,38.35,3,7.56,6106,114.137176,123.803677,133.573123,139.86723,I,Above,Gable,0,5701,Wood,34.81311772,0,0,,,,1,1,,0.03,nav,1,1996,2,, 6238,NJBF000067767,454 WINDSOR RD,Atlantic City,NJ,39.35443718,-74.46417804,RES1,3001,,17,NE,1976,1976,3102,2,1,718.9164119,718.9164119,3505,NO,27.92,33.99,3,1.96,6106,113.941349,123.655263,133.399593,139.83626,I,Above,Flat,0,5701,Wood,30.9515045,0,0,,,,1,1,,0.03,nav,1,1976,2,, 6239,NJBF000066384,3807 ATLANTIC AVE,Atlantic City,NJ,39.34962833,-74.45547581,RES3A,3001,565,NaN,NE,1969,0,3301,2,1,4989.968429,4989.968429,3504,YES,27.7,37.06,-4,0,6106,114.192501,123.864078,133.621315,140.049327,I,Above,Flat,0,5701,Wood,32.37999974,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6240,NJBF000068951,205 N IOWA AVE,Atlantic City,NJ,39.35813414,-74.44753673,RES3A,3001,,45,NE,1921,1921,3301,2,2,1113.012352,1113.012352,3505,NO,35.79,40.95,3,7.29,6106,114.259192,123.916272,133.685306,140.047871,I,Above,Hip,0,5701,Wood,38.36832757,0,0,,,,1,1,,0.03,nav,1,1921,2,, 6241,NJBF000066069,17 N RALEIGH AVE,Atlantic City,NJ,39.34883483,-74.46133781,RES3A,3001,,45,NE,1915,1915,3301,2,2,1108.279379,1108.279379,3505,NO,37.31,44.77,3,8.66,6106,114.074409,123.767039,133.515803,139.968857,I,Above,Flat,0,5701,Wood,41.03758118,0,0,,,,1,1,,0.03,nav,1,1915,2,, 6242,NJBF000066319,53 N RALEIGH AVE,Atlantic City,NJ,39.34946039,-74.46184548,RES3A,3001,,27,NE,1900,1900,3301,2,2,1969.980517,1969.980517,3505,YES,41.02,49.04,3,4.73,6106,114.055311,123.751136,133.499175,139.951202,I,Above,Flat,0,5701,Wood,45.0295301,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6243,NJBF000068094,117 N MONTPELIER AVE,Atlantic City,NJ,39.35562236,-74.45122258,RES3A,3001,,45,NE,1920,1920,3301,2,2,1511.3315,1511.3315,3505,NO,23.69,36.2,3,0.01,6106,114.209944,123.876404,133.639849,140.026848,I,Above,Hip,0,5701,Wood,29.94466722,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6244,NJBF000068115,14 S FLORIDA AVE,Atlantic City,NJ,39.35569686,-74.44173918,COM1,3003,29,NaN,ME,1969,0,3401,2,1,45367.70904,45367.70904,3507,YES,36.42,41.7,1,1.12,6106,114.415015,124.047404,133.826124,140.174205,I,Above,Gable,0,NaN,Wood,39.06298682,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6245,NJBF000071604,344 N CONNECTICUT AVE,Atlantic City,NJ,39.37104714,-74.42151364,RES1,3001,,27,NE,1900,1900,3102,2,2,2889.766316,2889.766316,3505,YES,33.61,46.55,3,4.72,6106,114.665121,124.254476,134.067674,140.271651,I,Above,Flat,0,5701,Wood,40.08252739,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6246,NJBF000070638,325 N NORTH CAROLINA AVE,Atlantic City,NJ,39.36788214,-74.42848397,RES1,3001,,27,NE,2006,2006,3103,2,2,2148.622412,2148.622412,3505,NO,41.75,50.04,3,4.12,6106,114.553322,124.159934,133.960555,140.206883,I,Above,Hip,0,5701,Wood,45.89820769,0,0,,,,1,1,,0.03,nav,1,2006,2,, 6247,NJBF000067593,3404 WINCHESTER AVE,Atlantic City,NJ,39.35391383,-74.45310444,RES3B,3001,,45,E,1920,1920,3303,2,2,1418.588195,1418.588195,3507,YES,31.06,39.83,1,1.64,6106,114.190195,123.860726,133.621399,140.022599,I,Above,Flat,0,NaN,Wood,35.44764969,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6248,NJBF000070351,1411 DREXEL AVE,Atlantic City,NJ,39.3667895,-74.4320585,RES3C,3003,,17,E,2007,2007,3305,2,1,766.9773282,766.9773282,3507,NO,27.06,37.98,1,1.27,6106,114.48954,124.106103,133.900371,140.166241,I,Above,Gable,0,NaN,Wood,32.52154366,0,0,,,,2,2,,0.03,nav,1,2007,2,, 6249,NJBF000070335,1411 DREXEL AVE,Atlantic City,NJ,39.366744,-74.432176,RES3C,3003,,17,E,2007,2007,3305,2,1,829.0714337,829.0714337,3507,NO,30.81,40.61,1,1.46,6106,114.48755,124.104433,133.898495,140.165041,I,Above,Flat,0,NaN,Wood,35.71290112,0,0,,,,2,2,,0.03,nav,1,2007,2,, 6250,NJBF000069972,26 BORN TERR,Atlantic City,NJ,39.36527553,-74.42286284,COM1,3003,,33,ME,1900,1900,3401,2,1,726.1670055,726.1670055,3507,YES,25.43,39.63,1,0.27,6106,114.704455,124.29006,134.101617,140.330955,I,Above,Flat,0,NaN,Wood,32.52665162,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6251,NJBF000069944,1819 BISHOP RICHARD ALLEN,Atlantic City,NJ,39.36512594,-74.43748832,RES1,3001,,17,NE,2003,2003,3101,2,1,1163.474023,1163.474023,3507,NO,31.78,39.8,1,2.06,6106,114.392387,124.024611,133.809498,140.104495,I,Above,Flat,0,5701,Wood,35.79076949,0,0,,,,1,1,,0.03,nav,1,2003,2,, 6252,NJBF000068096,105 N CHELSEA AVE,Atlantic City,NJ,39.3556302,-74.44998506,RES3A,3001,,45,NE,1900,1900,3301,2,3,1843.034031,1843.034031,3505,NO,33.24,44.92,3,-1.45,6106,114.236806,123.898719,133.664104,140.046291,I,Above,Hip,0,5701,Wood,39.08289262,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6253,NJBF000068125,107 N CHELSEA AVE,Atlantic City,NJ,39.35573344,-74.45001291,RES3A,3001,,45,NE,1925,1925,3301,1,2,2481.149725,2481.149725,3505,NO,16.16,25.61,3,1.28,6106,114.23492,123.897108,133.662441,140.044321,I,Above,Hip,0,5701,Wood,20.88793818,0,0,,,,1,1,,0.03,nav,1,1925,1,, 6254,NJBF000066795,118 N WINDSOR AVE,Atlantic City,NJ,39.35080067,-74.46112257,RES3A,3001,,17,NE,1922,1922,3301,2,1,1213.499949,1213.499949,3505,NO,35.34,43.91,3,6.99,6106,114.054069,123.749614,133.498623,139.942178,I,Above,Gable,0,5701,Wood,39.62468982,0,0,,,,1,1,,0.03,nav,1,1922,2,, 6255,NJBF000068487,537 N ELBERON AVE,Atlantic City,NJ,39.35692611,-74.46276409,RES1,3001,,16,NE,1900,1900,3101,1,1,922.9388818,922.9388818,3505,NO,21.05,32.08,3,6.41,6106,113.941542,123.653906,133.399842,139.820727,I,Above,Gable,0,5701,Wood,26.56732725,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6256,NJBF000064868,134 S BARTRAM AVE,Atlantic City,NJ,39.34553663,-74.46120524,RES3A,3001,,45,NE,1912,1912,3301,3,2,1481.676388,1481.676388,3504,NO,40.81,47.22,-4,0,6106,114.119855,123.805246,133.554115,140.021083,I,Above,Hip,0,5701,Wood,44.01843919,0,0,,,,1,1,,0.03,nav,1,1912,3,, 6257,NJBF000064903,128 S BARTRAM AVE,Atlantic City,NJ,39.34562218,-74.46129291,RES3A,3001,,45,NE,1912,1912,3301,3,2,1796.647878,1796.647878,3504,YES,32.21,41.1,-4,0,6106,114.116824,123.802739,133.55149,140.018421,I,Above,Hip,0,5701,Wood,36.65369406,0,0,,,,1,1,,0.03,nav,1,1912,3,, 6258,NJBF000067591,36 N BOSTON AVE,Atlantic City,NJ,39.353908,-74.452769,RES3B,3001,,45,E,1900,1900,3303,4,2,1610.241137,1610.241137,3507,YES,72.05,86.96,1,-0.1,6106,114.197575,123.866845,133.628031,140.027982,I,Above,Hip,0,NaN,Wood,79.50382211,0,0,,,,1,1,,0.03,nav,1,1900,4,, 6259,NJBF000071546,615 DREXEL AVE,Atlantic City,NJ,39.37089273,-74.42182548,RES1,3001,,33,NE,1900,1923,3102,2,1,2692.204572,2692.204572,3505,YES,37.02,45.21,3,-1.07,6106,114.660291,124.250378,134.063007,140.268931,I,Above,Flat,0,5701,Wood,41.11553835,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6260,NJBF000064461,104 S MONTGOMERY AVE,Atlantic City,NJ,39.3445467,-74.46425982,RES3A,3001,,18,NE,1920,1920,3301,2,1,2840.536734,2840.536734,3504,YES,24.47,34.37,-4,0,6106,114.065815,123.761122,133.505732,139.988148,I,Above,Hip,0,5701,Wood,29.42054967,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6261,NJBF000067901,19 S CALIFORNIA AVE,Atlantic City,NJ,39.35494798,-74.44382638,RES3A,3004,,45,NE,1900,1900,3301,3,2,1390.918518,1390.918518,3505,YES,42.77,57.64,3,1.81,6106,114.379091,124.017558,133.792867,140.15265,I,Above,Hip,0,5701,Wood,50.20231558,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6262,NJBF000067242,,Atlantic City,NJ,39.35271331,-74.44150794,COM8,3003,,NaN,ME,1969,0,3401,2,1,749.1037517,749.1037517,3507,NO,41.09,49.51,1,2.84,6102,114.457251,124.083439,133.862569,140.220543,I,Above,Gable,0,NaN,Wood,45.30131641,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6263,NJBF000067204,,Atlantic City,NJ,39.352548,-74.45885051,RES3B,3001,,NaN,E,1969,0,3303,3,1,5993.661524,5993.661524,3505,NO,47.73,62.1,3,2.22,6106,114.081755,123.771685,133.523861,139.951837,I,Above,Flat,0,NaN,Wood,54.91515398,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6264,NJBF000066846,,Atlantic City,NJ,39.3509965,-74.4616685,RES3A,3001,,NaN,NE,1922,0,3301,2,1,504.735082,504.735082,3505,NO,29.15,36.01,3,4.15,6106,114.03962,123.737658,133.485881,139.930404,I,Above,Flat,0,5701,Wood,32.57729429,0,0,,,,1,1,,0.03,nav,1,1922,2,, 6265,NJBF000067305,,Atlantic City,NJ,39.35300547,-74.44584002,RES4,3003,,NaN,E,1969,0,3404,5,1,633156.8337,633156.8337,3507,NO,71.11,85.51,1,2.49,6106,114.359656,124.00186,133.773953,140.149588,I,Above,Hip,0,NaN,Wood,78.31210506,0,0,,,,2,2,,0.03,nav,1,1969,5,, 6266,NJBF000069658,,Atlantic City,NJ,39.36255244,-74.41546651,COM8,3003,,NaN,,1969,0,3408,11,1,591416.0171,591416.0171,3507,NO,153.69,168.66,1,1.52,6106,114.894679,124.453889,134.279832,140.48163,I,Above,Flat,0,NaN,Wood,161.1781329,0,0,,,,2,2,,0.03,nav,1,1969,11,, 6267,NJBF000064767,,Atlantic City,NJ,39.34528554,-74.46022861,COM8,3003,,NaN,ME,1969,0,3401,3,1,2373.484672,2373.484672,3507,NO,55.15,61.65,1,2.09,6102,114.144481,123.825527,133.575746,140.0401,I,Above,Hip,0,NaN,Wood,58.4012891,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6268,NJBF000068954,,Atlantic City,NJ,39.35813959,-74.43503801,COM8,3003,,NaN,,1969,0,3408,9,1,250304.1758,250304.1758,3507,NO,146.81,154.56,1,1.54,6106,114.529651,124.143142,133.933151,140.242938,I,Above,Flat,0,NaN,Wood,150.6870461,0,0,,,,2,2,,0.03,nav,1,1969,9,, 6269,NJBF000073593,1 LAGOON COURT,Atlantic City,NJ,39.38186649,-74.40944251,RES1,3001,,16,NE,1975,1975,3103,2,1,623.2360647,623.2360647,3505,NO,39.53,45.29,3,0.77,6106,114.797033,124.364649,134.199159,140.31196,I,Above,Gable,0,5701,Wood,42.40949877,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 6270,NJBF000073655,2 BRIGHTON DRIVE,Atlantic City,NJ,39.38229672,-74.41073106,RES1,3001,,19,NE,2016,2016,3103,3,1,1272.247552,1272.247552,3505,NO,38.2,43.91,3,2.24,6106,114.765082,124.336395,134.168068,140.285685,I,Above,Gable,0,5701,Wood,41.05480617,0,1.2,,,,1,1,,0.03,nav,1,2016,3,, 6271,NJBF000064624,BARTRAM AVE (CS),Atlantic City,NJ,39.34493262,-74.46050416,COM8,3003,,NaN,ME,1969,0,3401,1,1,887.8533423,887.8533423,3507,NO,13.84,24.99,1,0.48,6102,114.143057,123.824421,133.574228,140.041116,I,Above,Flat,0,NaN,Wood,19.41250803,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6272,NJBF000064681,,Atlantic City,NJ,39.3450584,-74.46060584,COM8,3003,,NaN,ME,1969,0,3401,3,1,945.0468675,945.0468675,3507,NO,52.72,66.59,1,-0.01,6102,114.139197,123.821227,133.5709,140.037651,I,Above,Flat,0,NaN,Wood,59.65695585,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6273,NJBF000065992,PUBLIC BEACH,Atlantic City,NJ,39.34864143,-74.45294586,COM8,3003,,NaN,ME,1969,0,3401,1,1,1565.393012,1565.393012,3507,NO,14.97,22.76,1,1.53,6102,114.260308,123.920369,133.68136,140.103319,I,Above,Flat,0,NaN,Wood,18.86970003,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6274,NJBF000066058,3923 ATLANTIC AVE,Atlantic City,NJ,39.34881148,-74.4570453,RES3A,3001,,NaN,NE,1969,0,3301,1,1,3124.936614,3124.936614,3504,NO,14.4,28.41,-4,0,6106,114.168654,123.844623,133.599546,140.036974,I,Above,Flat,0,5701,Wood,21.4021619,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6275,NJBF000066698,3211 BOARDWALK,Atlantic City,NJ,39.35050495,-74.44864691,RES4,3003,739,NaN,E,1969,0,3404,1,1,1874.178344,1874.178344,3507,NO,15.89,25.71,1,-0.93,6106,114.330186,123.977915,133.745549,140.142506,I,Above,Flat,0,NaN,Wood,20.79920747,0,0,,,,2,2,,0.03,nav,1,1969,1,, 6276,NJBF000066766,PUBLIC BEACH,Atlantic City,NJ,39.35071706,-74.44662001,COM8,3003,,NaN,ME,1969,0,3401,1,1,1020.654351,1020.654351,3507,NO,14.52,21.3,1,0.35,6102,114.371558,124.01228,133.783106,140.170665,I,Above,Flat,0,NaN,Wood,17.90715753,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6277,NJBF000067481,GEORGIA AVE STREET END,Atlantic City,NJ,39.35362663,-74.4383578,COM8,3003,,NaN,ME,1969,0,3401,1,1,2468.747053,2468.747053,3507,NO,13.31,23.41,1,0.77,6106,114.513928,124.130797,133.915189,140.255822,I,Above,Flat,0,NaN,Wood,18.35999826,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6278,NJBF000067927,16 N BRIGHTON AVE,Atlantic City,NJ,39.35504832,-74.44800673,RES3B,3001,,NaN,ME,1900,0,3301,2,1,552.4869178,552.4869178,3504,NO,26.13,40.53,-4,0,6106,114.287063,123.940755,133.709314,140.085989,I,Above,Flat,0,NaN,Wood,33.3332853,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6279,NJBF000067930,MICHIGAN AVE STREET END,Atlantic City,NJ,39.35505437,-74.43295868,COM8,3003,,NaN,ME,1969,0,3401,1,1,977.0405401,977.0405401,3502,NO,28.12,39.81,5,12.23,6102,114.612565,124.213659,134.007332,140.318233,I,Above,Flat,0,NaN,Wood,33.96419622,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6280,NJBF000068368,PUBLIC BEACH,Atlantic City,NJ,39.35653052,-74.42664144,COM8,3003,,NaN,ME,1969,0,3401,1,1,2501.695284,2501.695284,3502,NO,19.33,26.87,5,8.21,6106,114.729935,124.312986,134.117929,140.393881,I,Above,Flat,0,NaN,Wood,23.10175914,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6281,NJBF000068310,1400 BOARDWALK,Atlantic City,NJ,39.35631422,-74.42454161,COM8,3003,100,NaN,ME,1969,0,3401,2,1,68571.69307,68571.69307,3502,NO,44.98,50.76,5,13.29,6102,114.777561,124.353512,134.162269,140.428661,I,Above,Flat,0,NaN,Wood,47.87252443,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6282,NJBF000068517,1401 BOARDWALK,Atlantic City,NJ,39.35698327,-74.42529862,COM8,3003,212,NaN,ME,1969,0,3401,1,1,1200.931577,1200.931577,3507,NO,20.49,30.34,1,2.19,6106,114.75309,124.33267,134.140066,140.408043,I,Above,Hip,0,NaN,Wood,25.41083718,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6283,NJBF000068933,661 N ANNAPOLIS AVE,Atlantic City,NJ,39.35806528,-74.46587638,RES1,3001,,17,NE,1900,1900,3101,1,1,722.8701586,722.8701586,3505,NO,21.75,29.22,3,3.35,6106,113.859248,123.585522,133.326784,139.751195,I,Above,Gable,0,5701,Wood,25.48241313,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6284,NJBF000069817,1818 BISHOP RICHARD ALLEN,Atlantic City,NJ,39.36423976,-74.43635924,RES1,3001,,NaN,NE,1969,0,3101,1,1,532.1348111,532.1348111,3507,NO,20.57,32.71,1,2.84,6106,114.427294,124.054543,133.841575,140.135118,I,Above,Hip,0,5701,Wood,26.63704164,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6285,NJBF000069902,1100 N ALBANY AVE,Atlantic City,NJ,39.3648846,-74.47051058,GOV1,3003,,NaN,E,1969,0,3401,1,1,1869.734875,1869.734875,3507,NO,19.12,26.93,1,2.45,6106,113.67542,123.428646,133.161266,139.56431,I,Above,Flat,0,NaN,Wood,23.02488551,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6286,NJBF000069892,1201 ARCTIC AVE,Atlantic City,NJ,39.36481997,-74.42730774,RES3D,3004,29,NaN,E,1969,0,3303,3,1,936.3174288,936.3174288,3505,NO,44.16,57.04,3,6.68,6106,114.614854,124.213573,134.016866,140.268427,I,Above,Hip,0,NaN,Wood,50.60204534,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6287,NJBF000069919,1100 N ALBANY AVE,Atlantic City,NJ,39.36499057,-74.47065407,GOV1,3003,,NaN,E,1969,0,3401,1,1,2518.153079,2518.153079,3507,NO,14.9,25.75,1,0.81,6106,113.671024,123.424932,133.157309,139.56015,I,Above,Flat,0,NaN,Wood,20.32703826,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6288,NJBF000070005,1201 ARCTIC AVE,Atlantic City,NJ,39.36543592,-74.42817697,RES3D,3004,29,NaN,E,1969,0,3303,3,1,813.1483291,813.1483291,3505,NO,48.48,56.64,3,6.09,6106,114.588887,124.191226,133.992828,140.246239,I,Above,Gable,0,NaN,Wood,52.56230682,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6289,NJBF000070073,513 N MICHIGAN AVE,Atlantic City,NJ,39.36570915,-74.43985129,RES3B,3001,,NaN,ME,1900,0,3301,3,1,1436.457805,1436.457805,3505,YES,60.05,71.48,3,2.22,6106,114.334457,123.975405,133.756049,140.058517,I,Above,Flat,0,NaN,Wood,65.76375379,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6290,NJBF000070091,2121 BACHARACH BLVD,Atlantic City,NJ,39.36577565,-74.44322113,IND1,3004,761,NaN,E,1969,0,3401,1,1,3408.594764,3408.594764,3505,NO,17.05,25.8,3,5.9,6106,114.260784,123.913358,133.688192,140.003697,I,Above,Gable,0,NaN,Wood,21.42412901,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6291,NJBF000070205,129 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36622082,-74.42575485,RES1,3001,,NaN,NE,1900,1900,3102,4,2,1418.046584,1418.046584,3505,NO,85.12,90.38,3,8.25,6106,114.6314,124.22726,134.033249,140.272928,I,Above,Flat,0,5701,Wood,87.75053406,0,0,,,,1,1,,0.03,nav,1,1900,4,, 6292,NJBF000070292,,Atlantic City,NJ,39.36658967,-74.43065345,RES3D,3004,,NaN,E,1969,0,3303,4,1,5790.178501,5790.178501,3505,NO,57.9,65.36,3,4.41,6106,114.522077,124.133866,133.930732,140.191176,I,Above,Gable,0,NaN,Wood,61.62886014,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6293,NJBF000070327,,Atlantic City,NJ,39.36672241,-74.43030289,RES3D,3004,,NaN,E,1969,0,3303,3,1,4254.157234,4254.157234,3505,NO,48.83,57.71,3,5.99,6106,114.528025,124.138871,133.936354,140.194792,I,Above,Flat,0,NaN,Wood,53.2734361,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6294,NJBF000070379,714 N MICHIGAN AVE,Atlantic City,NJ,39.36689109,-74.44110291,RES3B,3001,,NaN,ME,1969,0,3301,2,1,1363.759184,1363.759184,3505,NO,36.23,50.39,3,-0.13,6106,114.293436,123.940103,133.718306,140.02122,I,Above,Flat,0,5701,Wood,43.31192935,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6295,NJBF000070369,,Atlantic City,NJ,39.36686313,-74.42999327,RES3D,3004,,NaN,E,1969,0,3303,4,1,4163.025968,4163.025968,3505,NO,57.35,63.58,3,6.54,6106,114.533006,124.143053,133.941079,140.197654,I,Above,Gable,0,NaN,Wood,60.46187214,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6296,NJBF000070381,,Atlantic City,NJ,39.36689294,-74.43091155,RES3D,3004,,NaN,E,1969,0,3303,4,1,5106.618534,5106.618534,3505,NO,72.69,79.82,3,6.73,6106,114.512931,124.125949,133.922286,140.182796,I,Above,Hip,0,NaN,Wood,76.25534575,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6297,NJBF000070416,,Atlantic City,NJ,39.36701897,-74.43058702,RES3D,3004,,NaN,E,1969,0,3303,3,1,4262.210652,4262.210652,3505,NO,51.5,61.1,3,5.91,6106,114.518417,124.130561,133.927469,140.18611,I,Above,Gable,0,NaN,Wood,56.29918482,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6298,NJBF000070442,,Atlantic City,NJ,39.36714922,-74.43023682,RES3D,3004,,NaN,E,1969,0,3303,3,1,5741.924224,5741.924224,3505,NO,42.12,54.95,3,4.03,6106,114.52439,124.135589,133.933114,140.189759,I,Above,Flat,0,NaN,Wood,48.53329494,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6299,NJBF000070682,912 N ARKANSAS AVE,Atlantic City,NJ,39.36804389,-74.443752,IND1,3004,761,NaN,E,1969,0,3401,3,1,2008.825534,2008.825534,3505,YES,49.24,59.88,3,2.39,6106,114.222597,123.879676,133.653019,139.961613,I,Above,Flat,0,NaN,Wood,54.55626607,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6300,NJBF000070703,912 N ARKANSAS AVE,Atlantic City,NJ,39.36811811,-74.44357231,IND1,3004,761,NaN,E,1969,0,3401,3,1,1901.706215,1901.706215,3505,YES,53.9,65.98,3,6.83,6106,114.225627,123.882169,133.6558,139.963424,I,Above,Flat,0,NaN,Wood,59.94361557,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6301,NJBF000070740,1911 GRANT AVE,Atlantic City,NJ,39.3682511,-74.44082593,RES3B,3001,,17,ME,1900,1900,3301,2,1,557.3356303,557.3356303,3505,NO,29.12,40.34,3,3.03,6106,114.283449,123.93077,133.709107,140.005687,I,Above,Gable,0,5701,Wood,34.73057205,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6302,NJBF000070718,,Atlantic City,NJ,39.3681708,-74.41872216,RES3D,3004,,NaN,E,1969,0,3303,3,1,1575.663136,1575.663136,3505,NO,54.75,63.2,3,5.74,6106,114.758313,124.33567,134.154798,140.355001,I,Above,Gable,0,NaN,Wood,58.97410831,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6303,NJBF000070739,600 BALTIC AVE,Atlantic City,NJ,39.36824779,-74.42022434,RES3D,3004,,NaN,E,1969,0,3303,3,1,742.4598851,742.4598851,3505,NO,43.05,49.97,3,-2.92,6106,114.725437,124.307329,134.123534,140.330654,I,Above,Gable,0,NaN,Wood,46.51015252,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6304,NJBF000070756,600 BALTIC AVE,Atlantic City,NJ,39.3683167,-74.42008223,RES3D,3004,,NaN,E,1969,0,3303,3,1,602.8910295,602.8910295,3505,NO,37.77,46.11,3,1.26,6106,114.727646,124.309212,134.12568,140.331902,I,Above,Gable,0,NaN,Wood,41.94086588,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6305,NJBF000070859,,Atlantic City,NJ,39.36866656,-74.41831651,RES3D,3004,,NaN,E,1969,0,3303,3,1,1582.272339,1582.272339,3505,NO,45.03,50.55,3,8,6106,114.761072,124.337929,134.157772,140.354441,I,Above,Gable,0,NaN,Wood,47.78925183,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6306,NJBF000071020,,Atlantic City,NJ,39.3691559,-74.41909687,RES3D,3004,,NaN,E,1969,0,3303,4,1,2360.178745,2360.178745,3505,NO,69.21,79.9,3,0.64,6106,114.738723,124.318527,134.136772,140.335594,I,Above,Gable,0,NaN,Wood,74.55084126,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6307,NJBF000071050,,Atlantic City,NJ,39.36923565,-74.41891065,RES3D,3004,,NaN,E,1969,0,3303,4,1,2972.586195,2972.586195,3505,NO,64.27,73.12,3,3.13,6106,114.741738,124.321105,134.139699,140.337378,I,Above,Gable,0,NaN,Wood,68.69382445,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6308,NJBF000071072,,Atlantic City,NJ,39.36931799,-74.4187177,RES3D,3004,,NaN,E,1969,0,3303,3,1,2194.668261,2194.668261,3505,NO,44.12,53.22,3,7.19,6106,114.744879,124.323791,134.142749,140.339242,I,Above,Flat,0,NaN,Wood,48.66998017,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6309,NJBF000071332,822 ADRIATIC AVE,Atlantic City,NJ,39.37024891,-74.42469115,RES1,3001,100,NaN,NE,1969,0,3102,2,1,1269.755789,1269.755789,3505,NO,31.69,45.58,3,1.02,6106,114.606675,124.204566,134.011837,140.233021,I,Above,Gable,0,5701,Wood,38.63611339,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6310,NJBF000071605,725 ADRIATIC AVE,Atlantic City,NJ,39.37104771,-74.42408212,RES1,3001,,17,NE,2002,2002,3102,2,1,500.1448631,500.1448631,3505,NO,38.09,44.89,3,3.28,6106,114.610355,124.207376,134.015633,140.231357,I,Above,Hip,0,5701,Wood,41.48875547,0,0,,,,1,1,,0.03,nav,1,2002,2,, 6311,NJBF000071705,601-621 N VIRGINIA AVE,Atlantic City,NJ,39.37134001,-74.42698357,RES3C,3004,,NaN,ME,1969,0,3301,2,1,4259.969284,4259.969284,3505,NO,29.02,40.88,3,6.67,6106,114.544963,124.151148,133.953823,140.181513,I,Above,Gable,0,NaN,Wood,34.94957454,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6312,NJBF000071695,601-621 N VIRGINIA AVE,Atlantic City,NJ,39.37131042,-74.42762113,RES3C,3004,,NaN,ME,1969,0,3301,1,1,7617.495782,7617.495782,3505,NO,19.82,34.61,3,7.82,6106,114.531687,124.139796,133.941278,140.171871,I,Above,Gable,0,NaN,Wood,27.21460378,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6313,NJBF000071780,601-621 N VIRGINIA AVE,Atlantic City,NJ,39.37160968,-74.42743781,RES3C,3004,,NaN,ME,1969,0,3301,2,1,3942.039962,3942.039962,3505,NO,28.07,40.64,3,1.91,6106,114.532119,124.140007,133.941759,140.170507,I,Above,Gable,0,NaN,Wood,34.35248295,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6314,NJBF000071854,,Atlantic City,NJ,39.37181517,-74.45164699,RES1,3001,,NaN,NE,1969,0,3101,1,1,1002.564011,1002.564011,3505,NO,18.37,24.62,3,2.41,6106,114.007719,123.696143,133.454933,139.775716,I,Above,Flat,0,5701,Wood,21.49264066,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6315,NJBF000071871,,Atlantic City,NJ,39.37186156,-74.4518192,RES1,3001,,NaN,NE,1969,0,3101,1,1,1103.084259,1103.084259,3505,NO,21.88,36.88,3,2.55,6106,114.003444,123.692519,133.451006,139.772144,I,Above,Gable,0,5701,Wood,29.38049778,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6316,NJBF000071828,601-621 N VIRGINIA AVE,Atlantic City,NJ,39.37175281,-74.42682975,RES1,3001,,NaN,NE,1969,0,3102,2,1,5236.010036,5236.010036,3505,NO,37.94,50.23,3,5.38,6106,114.543462,124.149648,133.952511,140.178094,I,Above,Gable,0,5701,Wood,44.08661549,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6317,NJBF000072345,1077 ABSECON BLVD,Atlantic City,NJ,39.37335235,-74.43602241,COM4,3003,100,NaN,ME,1969,0,3401,3,1,664.9219136,664.9219136,3507,NO,43.67,54.42,1,1.99,6106,114.32793,123.964676,133.750041,140.008379,I,Above,Flat,0,NaN,Wood,49.04555815,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6318,NJBF000072400,1900 E RIVERSIDE DR,Atlantic City,NJ,39.37353049,-74.44481807,RES1,3001,,NaN,NE,1969,0,3102,2,1,689.1473173,689.1473173,3505,NO,31.74,44.5,3,1.25,6106,114.136203,123.802273,133.571968,139.862657,I,Above,Gable,0,5701,Wood,38.12093812,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6319,NJBF000072718,2113 N RIVERSIDE DR,Atlantic City,NJ,39.37466303,-74.45559884,RES1,3001,,NaN,NE,1969,0,3101,1,1,1067.842515,1067.842515,3505,NO,15.76,30.28,3,-0.87,6106,113.889499,123.594173,133.345244,139.66606,I,Above,Flat,0,5701,Wood,23.02051912,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6320,NJBF000072752,1936 MURRAY AVE,Atlantic City,NJ,39.37479691,-74.45165283,RES1,3001,,NaN,NE,1969,0,3101,1,1,969.2670105,969.2670105,3505,NO,15.38,24.16,3,3.13,6106,113.97376,123.664457,133.42199,139.730317,I,Above,Gable,0,5701,Wood,19.77089548,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6321,NJBF000073180,900 BEACH THOROFARE,Atlantic City,NJ,39.3786184,-74.42346585,GOV2,3001,,NaN,E,1969,0,3401,2,1,3570.598784,3570.598784,3507,NO,20.74,33.15,1,-0.45,6106,114.536738,124.139743,133.947008,140.134367,I,Above,Flat,0,NaN,Wood,26.94794204,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6322,NJBF000073184,600 HURON AVE,Atlantic City,NJ,39.37869485,-74.42433931,GOV2,3001,,NaN,E,1969,0,3401,3,1,6706.204379,6706.204379,3507,NO,38.42,52.3,1,1.32,6102,114.517284,124.122894,133.928427,140.119306,I,Above,Flat,0,NaN,Wood,45.3638029,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6323,NJBF000073230,900 BEACH THOROFARE,Atlantic City,NJ,39.37913227,-74.42391822,GOV2,3001,,NaN,E,1969,0,3401,2,1,2207.508657,2207.508657,3507,NO,35.77,48.64,1,0.69,6106,114.521331,124.126082,133.93228,140.119855,I,Above,Hip,0,NaN,Wood,42.20425647,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6324,NJBF000073263,MEADOW TRACK,Atlantic City,NJ,39.37943929,-74.45507956,COM1,3001,,NaN,ME,1969,0,3401,1,1,5164.44462,5164.44462,3507,NO,20.7,26.41,1,2,6110,113.847843,123.553071,133.302596,139.601649,I,Above,Flat,0,NaN,Wood,23.55522204,0,0,,,,1,1,,1,nav,1,1969,1,, 6325,NJBF000073286,MEADOW TRACK,Atlantic City,NJ,39.37957965,-74.45517695,COM1,3001,,NaN,ME,1969,0,3401,3,1,4141.945903,4141.945903,3507,NO,33.34,46.08,1,1.74,6110,113.844196,123.549818,133.299105,139.597838,I,Above,Flat,0,NaN,Wood,39.71417365,0,0,,,,1,1,,1,nav,1,1969,3,, 6326,NJBF000073264,600 HURON AVE,Atlantic City,NJ,39.3794394,-74.42479291,GOV2,3001,,NaN,E,1969,0,3401,3,1,3102.639255,3102.639255,3507,NO,59.15,66.68,1,2.08,6102,114.499253,124.106799,133.911177,140.101468,I,Above,Hip,0,NaN,Wood,62.91220651,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6327,NJBF000073573,1801 ABSECON BLVD,Atlantic City,NJ,39.3816963,-74.44864104,GOV1,3001,,NaN,E,1969,0,3401,1,1,23469.70148,23469.70148,3507,NO,20.54,29.43,1,1.06,6106,113.962676,123.646494,133.4058,139.676419,I,Above,Flat,0,NaN,Wood,24.98537795,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6328,NJBF000073061,1 BORGATA WAY,Atlantic City,NJ,39.37708693,-74.43428167,COM8,3003,80,NaN,ME,1969,0,3401,2,1,665.1499256,665.1499256,3507,NO,24.93,34.97,1,-0.17,6112,114.322872,123.957302,133.744533,139.982166,I,Above,Flat,0,NaN,Wood,29.94819804,0,0,,,,1,1,,1,nav,1,1969,2,, 6329,NJBF000073741,NE CONNECTICUT & EVELYN,Atlantic City,NJ,39.38285605,-74.42683102,COM8,3003,80,NaN,ME,1969,0,3401,3,1,673.540006,673.540006,3507,NO,36.53,45,1,-0.92,6106,114.417835,124.033737,133.832764,140.01984,I,Above,Flat,0,NaN,Wood,40.76270557,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6330,NJBF000076301,802 ABSECON BLVD,Atlantic City,NJ,39.39290462,-74.48936491,RES4,3001,210,NaN,ME,1969,0,3401,3,1,942.7034429,942.7034429,3507,NO,46.02,59.44,1,2.39,6106,112.962062,122.791951,132.478198,138.776785,I,Above,Flat,0,NaN,Wood,52.73021684,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6331,NJBF000072925,451 N MAINE AVE,Atlantic City,NJ,39.3756378,-74.41554235,COM8,3001,,NaN,ME,1969,0,3401,1,1,1204.277509,1204.277509,3501,NO,28.24,35.31,7,11.16,6102,114.738892,124.316484,134.140377,140.301552,I,Above,Hip,0,NaN,Wood,31.77832378,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6332,NJBF000072893,1523 PENROSE AVE,Atlantic City,NJ,39.3754605,-74.44801315,RES1,3001,,NaN,NE,1969,0,3101,1,1,1408.276121,1408.276121,3505,NO,16.48,24.77,3,4.38,6106,114.045212,123.72368,133.487086,139.780943,I,Above,Gable,0,5701,Wood,20.62394839,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6333,NJBF000072869,416 N MAINE AVE,Atlantic City,NJ,39.37529567,-74.41622606,RES3D,3001,,20,ME,2006,2006,3301,3,1,2130.799045,2130.799045,3507,NO,49.86,57.34,1,-0.04,6106,114.728323,124.307441,134.130051,140.29554,I,Above,Hip,0,NaN,Wood,53.59703387,0,0,,,,1,1,,0.03,nav,1,2006,3,, 6334,NJBF000072849,414 N MAINE AVE,Atlantic City,NJ,39.37515218,-74.41616445,RES3D,3001,,20,ME,2006,2006,3301,3,1,2126.325397,2126.325397,3507,NO,38.24,48.12,1,2.28,6106,114.731291,124.310076,134.132847,140.298505,I,Above,Hip,0,NaN,Wood,43.18312353,0,0,,,,1,1,,0.03,nav,1,2006,3,, 6335,NJBF000072819,412 N MAINE AVE,Atlantic City,NJ,39.37503208,-74.41604621,RES3D,3001,,20,ME,2006,2006,3301,3,1,2307.767474,2307.767474,3507,NO,38.41,49.96,1,-0.2,6106,114.735172,124.313492,134.13653,140.302015,I,Above,Hip,0,NaN,Wood,44.18947037,0,0,,,,1,1,,0.03,nav,1,2006,3,, 6336,NJBF000072844,104 CASPIAN AVE,Atlantic City,NJ,39.37513237,-74.41660547,RES3D,3001,,17,ME,2003,2003,3301,2,1,1157.532225,1157.532225,3507,NO,28.82,38.02,1,0.65,6106,114.722172,124.302168,134.124062,140.291859,I,Above,Hip,0,NaN,Wood,33.42087596,0,0,,,,1,1,,0.03,nav,1,2003,2,, 6337,NJBF000072822,102 CASPIAN AVE,Atlantic City,NJ,39.3750625,-74.416415,RES3D,3001,,17,ME,2003,2003,3301,3,1,566.8566307,566.8566307,3507,NO,55.83,68.23,1,-0.24,6106,114.727005,124.306391,134.128683,140.29581,I,Above,Hip,0,NaN,Wood,62.03044787,0,0,,,,1,1,,0.03,nav,1,2003,3,, 6338,NJBF000072813,104 CASPIAN AVE,Atlantic City,NJ,39.37501899,-74.41652199,RES3D,3001,,17,ME,2003,2003,3301,2,1,540.2915506,540.2915506,3507,NO,28.63,37.57,1,1.23,6106,114.72523,124.304868,134.126957,140.294725,I,Above,Hip,0,NaN,Wood,33.10177232,0,0,,,,1,1,,0.03,nav,1,2003,2,, 6339,NJBF000072852,102 CASPIAN AVE,Atlantic City,NJ,39.37518113,-74.416491,RES3D,3001,,17,ME,2003,2003,3301,3,1,1225.742358,1225.742358,3507,NO,48.25,56.33,1,2.66,6106,114.724026,124.303758,134.125867,140.29297,I,Above,Hip,0,NaN,Wood,52.28956439,0,0,,,,1,1,,0.03,nav,1,2003,3,, 6340,NJBF000072832,106 CASPIAN AVE,Atlantic City,NJ,39.37509264,-74.41671911,RES3D,3001,,17,ME,2003,2003,3301,3,1,1334.208248,1334.208248,3507,NO,55.93,63.63,1,2.65,6106,114.720203,124.300476,134.122152,140.290608,I,Above,Gable,0,NaN,Wood,59.77884018,0,0,,,,1,1,,0.03,nav,1,2003,3,, 6341,NJBF000072817,108 CASPIAN AVE,Atlantic City,NJ,39.37503145,-74.41683272,RES3D,3001,,17,ME,2003,2003,3301,2,1,1387.9981,1387.9981,3507,NO,28.53,37.91,1,1.17,6106,114.718497,124.299022,134.120486,140.289676,I,Above,Gable,0,NaN,Wood,33.22335721,0,0,,,,1,1,,0.03,nav,1,2003,2,, 6342,NJBF000072888,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.375453,-74.4207945,COM8,3001,,NaN,ME,1969,0,3401,2,1,794.7874228,794.7874228,3505,NO,27.85,33.75,3,-2.31,6106,114.629539,124.2218,134.035308,140.221395,I,Above,Hip,0,NaN,Wood,30.7994575,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6343,NJBF000065281,101 S RALEIGH AVE,Atlantic City,NJ,39.34668768,-74.45900746,RES3F,3003,,NaN,E,1969,0,3305,7,1,27578.69129,27578.69129,3507,NO,114.61,119.75,1,1.29,6106,114.153046,123.832286,133.584316,140.038118,I,Above,Flat,0,NaN,Wood,117.1788298,0,0,,,,2,2,,0.03,nav,1,1969,7,, 6344,NJBF000071380,919 N DR MARTIN LUTHER K,Atlantic City,NJ,39.37041513,-74.43819912,RES1,3001,,17,NE,1980,1980,3101,1,1,2140.92386,2140.92386,3505,NO,12.56,18.02,3,0.74,6106,114.314918,123.955832,133.73819,140.016184,I,Above,Hip,0,5701,Wood,15.28948725,0,0,,,,1,1,,0.03,nav,1,1980,1,, 6345,NJBF000071329,920 N DR MARTIN LUTHER K,Atlantic City,NJ,39.37021559,-74.43870783,REL1,3004,,NaN,ME,1969,0,3401,2,1,4271.920496,4271.920496,3507,NO,29.84,42.85,1,-0.91,6106,114.306255,123.948643,133.730155,140.010912,I,Above,Flat,0,NaN,Wood,36.34820701,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6346,NJBF000065837,3851 BOARDWALK,Atlantic City,NJ,39.34835662,-74.45497566,RES3F,3003,,NaN,E,1969,0,3305,5,1,19437.01457,19437.01457,3507,NO,79.12,84.45,1,2.18,6106,114.219657,123.886827,133.644779,140.076027,I,Above,Gable,0,NaN,Wood,81.78556015,0,0,,,,2,2,,0.03,nav,1,1969,5,, 6347,NJBF000065958,110 S LINCOLN PL,Atlantic City,NJ,39.3486835,-74.455236,RES3F,3003,29,NaN,E,1969,0,3305,3,1,3232.872967,3232.872967,3507,YES,57.18,65.47,1,1.52,6106,114.209807,123.878616,133.636193,140.067144,I,Above,Flat,0,NaN,Wood,61.32138406,0,0,,,,2,2,,0.03,nav,1,1969,3,, 6348,NJBF000067872,2722 ATLANTIC AVE,Atlantic City,NJ,39.35490151,-74.44532827,RES4,3003,100,NaN,E,1969,1938,3404,5,1,8030.186795,8030.186795,3507,YES,86.68,91.78,1,-0.08,6106,114.347077,123.990833,133.763701,140.129968,I,Above,Flat,0,NaN,Wood,89.23308179,0,0,,,,2,2,,0.03,nav,1,1969,5,, 6349,NJBF000067894,2718 ATLANTIC AVE,Atlantic City,NJ,39.35493172,-74.44501728,RES4,3003,738,NaN,E,1969,0,3404,3,1,6831.959354,6831.959354,3507,YES,59.07,71.94,1,2.38,6106,114.353454,123.996147,133.769517,140.134372,I,Above,Flat,0,NaN,Wood,65.50454853,0,0,,,,2,2,,0.03,nav,1,1969,3,, 6350,NJBF000070059,423 N OHIO AVE,Atlantic City,NJ,39.36563649,-74.43811652,REL1,3001,,NaN,ME,1969,0,3401,3,1,3704.983413,3704.983413,3507,NO,52.2,60.69,1,2.62,6106,114.372759,124.007761,133.791445,140.087134,I,Above,Hip,0,NaN,Wood,56.44290419,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6351,NJBF000069850,1075 N ALBANY AVE,Atlantic City,NJ,39.36454417,-74.46853232,COM1,3003,639,NaN,ME,1969,0,3401,1,1,12818.62634,12818.62634,3507,NO,18.64,29.75,1,0.56,6106,113.722976,123.467986,133.203533,139.603828,I,Above,Flat,0,NaN,Wood,24.19860353,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6352,NJBF000066962,3200 PACIFIC AVE,Atlantic City,NJ,39.35146179,-74.4489536,RES4,3003,530,NaN,E,1969,0,3404,3,1,3346.115148,3346.115148,3507,NO,53.05,62.55,1,-0.46,6106,114.311396,123.962082,133.729251,140.123807,I,Above,Flat,0,NaN,Wood,57.80068783,0,0,,,,2,2,,0.03,nav,1,1969,3,, 6353,NJBF000066944,3200 PACIFIC AVE,Atlantic City,NJ,39.35140806,-74.44904314,RES4,3003,530,NaN,E,1969,0,3404,3,1,3897.009226,3897.009226,3507,NO,53.7,66.72,1,1.17,6106,114.310142,123.961053,133.728083,140.123216,I,Above,Flat,0,NaN,Wood,60.20952795,0,0,,,,2,2,,0.03,nav,1,1969,3,, 6354,NJBF000068152,500 N ANNAPOLIS AVE,Atlantic City,NJ,39.35581055,-74.46481757,COM8,3004,,NaN,ME,1969,0,3401,3,1,2085.824874,2085.824874,3507,NO,55.47,61.16,1,1.53,6106,113.910229,123.628896,133.372105,139.804206,I,Above,Flat,0,NaN,Wood,58.3163989,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6355,NJBF000067294,3 S MONTPELIER AVE,Atlantic City,NJ,39.35291534,-74.44937732,COM1,3003,,45,ME,1900,1900,3401,2,4,2321.419239,2321.419239,3507,YES,28.1,41.21,1,-0.19,6106,114.283901,123.938831,133.705322,140.095935,I,Above,Flat,0,NaN,Wood,34.65730477,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6356,NJBF000068436,571 N ANNAPOLIS AVE,Atlantic City,NJ,39.35674491,-74.46486371,GOV2,3003,,NaN,E,1969,0,3401,2,1,1387.738163,1387.738163,3507,NO,28.48,38.44,1,2.29,6106,113.897684,123.617992,133.360963,139.788804,I,Above,Flat,0,NaN,Wood,33.46407458,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6357,NJBF000068197,4101 FILBERT AVE,Atlantic City,NJ,39.35596708,-74.46402468,EDU1,3004,,NaN,E,1969,0,3401,3,1,39807.97712,39807.97712,3507,NO,54.97,63.08,1,0.55,6106,113.925708,123.641505,133.385809,139.814879,I,Above,Flat,0,NaN,Wood,59.02595025,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6358,NJBF000068292,4101 FILBERT AVE,Atlantic City,NJ,39.35623614,-74.46447296,EDU1,3004,,NaN,E,1969,0,3401,1,1,1816.759264,1816.759264,3507,NO,17.97,23.16,1,-0.7,6106,113.912548,123.630528,133.374149,139.803263,I,Above,Flat,0,NaN,Wood,20.5642691,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6359,NJBF000068268,4101 FILBERT AVE,Atlantic City,NJ,39.35617858,-74.46458418,EDU1,3004,,NaN,E,1969,0,3401,2,1,1992.707699,1992.707699,3507,NO,23.22,30.53,1,2.02,6106,113.910816,123.629143,133.372617,139.802317,I,Above,Flat,0,NaN,Wood,26.87406364,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6360,NJBF000066536,2 N PARKER AVE,Atlantic City,NJ,39.34998942,-74.4590435,RES3A,3001,,17,NE,1920,1920,3301,2,1,878.2925593,878.2925593,3505,NO,29.36,38.32,3,4.97,6106,114.109907,123.795856,133.547874,139.987705,I,Above,Flat,0,5701,Wood,33.8407233,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6361,NJBF000066992,61 N HARRISBURG AVE,Atlantic City,NJ,39.35160724,-74.45768296,RES3A,3001,,17,NE,1900,1900,3301,1,1,988.8674216,988.8674216,3505,NO,26.05,34.56,3,7.3,6106,114.119166,123.802907,133.556849,139.984769,I,Above,Gable,0,5701,Wood,30.30586213,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6362,NJBF000067931,2809 ATLANTIC AVE,Atlantic City,NJ,39.35504618,-74.44626724,RES3B,3001,29,NaN,ME,1969,0,3301,3,2,2568.245123,2568.245123,3504,YES,45.61,60.61,-4,0,6106,114.324899,123.972284,133.743629,140.11323,I,Above,Gable,0,NaN,Wood,53.10832174,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6363,NJBF000069276,3 LIBERTY TERR,Atlantic City,NJ,39.35947281,-74.44270828,RES3B,3001,,33,ME,1900,1900,3301,2,1,688.842603,688.842603,3505,YES,29.68,42.21,3,1.53,6106,114.347608,123.989604,133.766416,140.104343,I,Above,Hip,0,NaN,Wood,35.94757989,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6364,NJBF000068334,4 N TEXAS AVE,Atlantic City,NJ,39.35638937,-74.44362709,RES3B,3001,,17,ME,1900,1900,3301,2,1,922.5425328,922.5425328,3505,NO,39.13,46.54,3,6.98,6106,114.365542,124.005783,133.781348,140.134846,I,Above,Hip,0,NaN,Wood,42.83620809,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6365,NJBF000068192,3901 FILBERT AVE,Atlantic City,NJ,39.35594432,-74.46307499,RES1,3001,,NaN,NE,1969,0,3101,1,1,2449.740487,2449.740487,3505,NO,23.81,34.07,3,4.79,6106,113.946839,123.65888,133.404542,139.830899,I,Above,Gable,0,5701,Wood,28.93746234,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6366,NJBF000066475,,Atlantic City,NJ,39.34984363,-74.46049393,EDU1,3004,,NaN,E,1969,0,3401,1,1,37005.4688,37005.4688,3507,NO,18.63,28.58,1,-0.37,6106,114.080012,123.771303,133.521245,139.966875,I,Above,Flat,0,NaN,Wood,23.60489098,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6367,NJBF000068308,4101 FILBERT AVE,Atlantic City,NJ,39.35628785,-74.46436506,EDU1,3004,,NaN,E,1969,0,3401,2,1,1883.187415,1883.187415,3507,NO,33.33,38.4,1,-0.16,6106,113.914277,123.631914,133.375679,139.804237,I,Above,Flat,0,NaN,Wood,35.86476907,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6368,NJBF000065073,101 S RALEIGH AVE,Atlantic City,NJ,39.34605415,-74.45910679,COM8,3004,,NaN,ME,1969,0,3401,3,1,2697.5339,2697.5339,3507,NO,45.01,54.95,1,1.87,6106,114.159061,123.837368,133.589221,140.046062,I,Above,Flat,0,NaN,Wood,49.97740191,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6369,NJBF000070202,1330 MEDITERRANEAN AVE,Atlantic City,NJ,39.36609027,-74.43017107,RES3E,3004,,NaN,E,1969,0,3305,14,1,16153.01925,16153.01925,3505,NO,163.04,169.4,3,6.14,6106,114.53835,124.147927,133.945761,140.205837,I,Above,Flat,0,NaN,Wood,166.223196,0,0,,,,2,2,,0.03,nav,1,1969,14,, 6370,NJBF000070028,1313 BALTIC AVE,Atlantic City,NJ,39.36544011,-74.42960281,RES3E,3004,,NaN,E,1969,0,3305,13,1,10967.54704,10967.54704,3505,YES,208.51,219.19,3,-2.05,6106,114.558265,124.165135,133.964115,140.223932,I,Above,Flat,0,NaN,Wood,213.8475614,0,0,,,,2,2,,0.03,nav,1,1969,13,, 6371,NJBF000070309,227 N SOUTH CAROLINA AVE,Atlantic City,NJ,39.36662417,-74.42906919,COM8,3003,,NaN,ME,1969,0,3401,3,1,13508.22837,13508.22837,3507,NO,60.34,72.07,1,2.27,6106,114.555652,124.162447,133.962216,140.215525,I,Above,Hip,0,NaN,Wood,66.20348257,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6372,NJBF000071839,222 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.3716314,-74.41571114,RES3C,3001,,NaN,ME,1969,0,3301,1,1,8000.494654,8000.494654,3505,NO,23.36,38.31,3,6.88,6106,114.781655,124.35495,134.179417,140.354116,I,Above,Flat,0,NaN,Wood,30.8360194,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6373,NJBF000071664,222 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37115198,-74.4153432,RES3C,3001,,NaN,ME,1969,0,3301,1,1,14690.23301,14690.23301,3505,NO,19.02,28.17,3,7.56,6106,114.795051,124.366687,134.191975,140.366412,I,Above,Flat,0,NaN,Wood,23.59815473,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6374,NJBF000071646,227 N VERMONT AVE,Atlantic City,NJ,39.37112372,-74.4160947,RES3C,3001,,NaN,ME,1969,0,3301,2,1,17982.2588,17982.2588,3505,NO,22.42,31.29,3,-0.02,6106,114.779427,124.35316,134.17696,140.355113,I,Above,Flat,0,NaN,Wood,26.85369392,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6375,NJBF000071236,60 N MAINE AVE,Atlantic City,NJ,39.36991306,-74.41277942,RES4,3003,,NaN,,1969,0,3408,9,1,35357.7965,35357.7965,3507,NO,128.46,140.96,1,-0.93,6106,114.863897,124.426666,134.257281,140.423024,I,Above,Flat,0,NaN,Wood,134.7126877,0,0,,,,2,2,,0.03,nav,1,1969,9,, 6376,NJBF000070490,,Atlantic City,NJ,39.3673045,-74.42579613,EDU1,3004,,NaN,E,1969,0,3401,2,1,63036.44376,63036.44376,3507,NO,40.53,46.09,1,2.31,6106,114.617671,124.215149,134.020891,140.257086,I,Above,Flat,0,NaN,Wood,43.31345291,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6377,NJBF000070031,233 N NEW YORK AVE,Atlantic City,NJ,39.36543505,-74.43163842,RES3D,3004,,NaN,E,1969,0,3303,4,1,8883.34664,8883.34664,3505,NO,55.39,62.19,3,1.26,6106,114.51464,124.128033,133.923304,140.192163,I,Above,Flat,0,NaN,Wood,58.79024414,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6378,NJBF000072631,700 N RHODE ISLAND AVE,Atlantic City,NJ,39.37427372,-74.42054011,IND1,3003,100,NaN,E,1969,0,3401,1,1,3968.076947,3968.076947,3507,NO,17.88,31.35,1,-0.55,6106,114.648472,124.238737,134.053066,140.241894,I,Above,Hip,0,NaN,Wood,24.61660371,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6379,NJBF000069597,61 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36199481,-74.43244902,COM1,3003,,NaN,ME,1969,0,3401,3,1,15519.1097,15519.1097,3507,NO,40.02,51.32,1,2.3,6106,114.538452,124.149504,133.943781,140.228387,I,Above,Hip,0,NaN,Wood,45.67201166,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6380,NJBF000069604,61 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36207065,-74.43213973,COM1,3003,,NaN,ME,1969,0,3401,2,1,8270.301789,8270.301789,3507,NO,27.75,40.24,1,1.51,6106,114.544179,124.154334,133.949156,140.232112,I,Above,Flat,0,NaN,Wood,33.99584616,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6381,NJBF000069571,1714 ARCTIC AVE,Atlantic City,NJ,39.36170336,-74.43349553,REL1,3001,,NaN,ME,1969,0,3401,3,1,2137.838131,2137.838131,3507,NO,52.32,65.35,1,2.55,6106,114.519456,124.133509,133.925953,140.216252,I,Above,Flat,0,NaN,Wood,58.83391064,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6382,NJBF000069615,1711 ARCTIC AVE,Atlantic City,NJ,39.36212888,-74.43376705,COM1,3003,,NaN,ME,1969,0,3401,2,1,5854.890257,5854.890257,3507,NO,30.7,37.42,1,2.67,6106,114.508477,124.124072,133.915987,140.205971,I,Above,Flat,0,NaN,Wood,34.05622286,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6383,NJBF000069569,1805 ARCTIC AVE,Atlantic City,NJ,39.36170676,-74.43452926,COM1,3003,,45,ME,1900,1900,3401,3,2,1023.439853,1023.439853,3507,YES,48.12,57.95,1,-0.49,6106,114.497167,124.11465,133.905265,140.200111,I,Above,Gable,0,NaN,Wood,53.03966569,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6384,NJBF000069661,,Atlantic City,NJ,39.36259043,-74.41367277,COM8,3003,,NaN,,1969,0,3408,11,1,9970.966639,9970.966639,3507,NO,140.21,155.14,1,1.47,6106,114.932292,124.486347,134.315793,140.508377,I,Above,Flat,0,NaN,Wood,147.6765813,0,0,,,,2,2,,0.03,nav,1,1969,11,, 6385,NJBF000070038,116 ORIENTAL AVE,Atlantic City,NJ,39.36557341,-74.41065986,RES3A,3001,,45,NE,1920,1920,3301,2,2,1727.304362,1727.304362,3505,YES,25.32,37.5,3,-2.45,6106,114.960214,124.510595,134.3459,140.51414,I,Above,Flat,0,5701,Wood,31.40856745,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6386,NJBF000070050,112 ORIENTAL AVE,Atlantic City,NJ,39.3656049,-74.41057624,RES3A,3001,,45,NE,1969,1920,3301,2,2,1508.187664,1508.187664,3505,YES,34.5,45.77,3,2.17,6106,114.961608,124.511805,134.347277,140.51499,I,Above,Flat,0,5701,Wood,40.1357068,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6387,NJBF000070057,110 ORIENTAL AVE,Atlantic City,NJ,39.3656371,-74.41048699,RES3A,3001,,45,NE,1969,1920,3301,2,2,1768.653777,1768.653777,3505,YES,31.34,45.08,3,8.16,6106,114.963107,124.513107,134.348755,140.515917,I,Above,Flat,0,5701,Wood,38.21190543,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6388,NJBF000069978,103 BOARDWALK,Atlantic City,NJ,39.3652888,-74.41036417,COM8,3003,29,NaN,,1969,0,3408,10,1,44401.6442,44401.6442,3507,YES,183.55,197.46,1,1.93,6106,114.969875,124.518974,134.354887,140.522455,I,Above,Flat,0,NaN,Wood,190.5018556,0,0,,,,2,2,,0.03,nav,1,1969,10,, 6389,NJBF000069982,130 S VERMONT AVE,Atlantic City,NJ,39.36535129,-74.41300148,RES3E,3003,29,NaN,E,1969,0,3305,14,1,15289.66787,15289.66787,3507,NO,229.48,239.05,1,0.12,6106,114.913313,124.469945,134.300602,140.481421,I,Above,Flat,0,NaN,Wood,234.2645146,0,0,,,,2,2,,0.03,nav,1,1969,14,, 6390,NJBF000069909,212 S NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36491321,-74.41104827,RES3A,3001,,45,NE,1900,1900,3301,4,3,1288.323867,1288.323867,3505,YES,81.43,93.5,3,4.21,6106,114.959914,124.510322,134.344886,140.517084,I,Above,Hip,0,5701,Wood,87.46751426,0,0,,,,1,1,,0.03,nav,1,1900,4,, 6391,NJBF000069891,211 S SEASIDE AVE,Atlantic City,NJ,39.36480272,-74.41130136,RES3A,3001,,45,NE,1920,1920,3301,2,2,1604.435939,1604.435939,3505,NO,22.38,34.19,3,0.59,6106,114.95588,124.506822,134.340887,140.51471,I,Above,Hip,0,5701,Wood,28.28445143,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6392,NJBF000069897,205 S VERMONT AVE,Atlantic City,NJ,39.3648432,-74.41212843,RES3A,3001,,45,NE,1900,1900,3301,3,2,1465.88117,1465.88117,3505,YES,51,61.21,3,-1.62,6106,114.937893,124.491236,134.323654,140.501579,I,Above,Flat,0,5701,Wood,56.10444869,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6393,NJBF000069846,,Atlantic City,NJ,39.36449307,-74.41481598,COM1,3003,,NaN,ME,1969,0,3401,2,1,18314.93235,18314.93235,3507,NO,23.13,37.21,1,-0.76,6106,114.885111,124.445591,134.272724,140.465304,I,Above,Flat,0,NaN,Wood,30.17195946,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6394,NJBF000069901,504 PACIFIC AVE,Atlantic City,NJ,39.36487074,-74.41593278,RES3B,3001,,45,E,1920,1920,3303,3,2,1090.519338,1090.519338,3507,YES,56.37,64.44,1,1.74,6106,114.856863,124.421184,134.246106,140.4431,I,Above,Flat,0,NaN,Wood,60.40420729,0,0,,,,1,1,,0.03,nav,1,1920,3,, 6395,NJBF000069986,36 S CONGRESS AVE,Atlantic City,NJ,39.365339,-74.416787,RES3D,3004,,17,E,1900,1900,3303,2,1,694.1926431,694.1926431,3505,YES,25.53,32.33,3,-1.89,6106,114.833118,124.400657,134.223878,140.423645,I,Above,Hip,0,NaN,Wood,28.92881394,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6396,NJBF000070681,225 ATLANTIC AVE,Atlantic City,NJ,39.36801684,-74.41427355,RES3D,3004,29,NaN,E,1969,1920,3303,3,1,5378.948645,5378.948645,3505,YES,59.75,72.53,3,6.3,6106,114.854594,124.418883,134.24677,140.425776,I,Above,Flat,0,NaN,Wood,66.1378198,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6397,NJBF000070533,31 N CONGRESS AVE,Atlantic City,NJ,39.36746823,-74.41787148,RES3D,3004,,17,E,2005,2005,3303,2,1,903.6104568,903.6104568,3505,NO,34.09,46.38,3,2.54,6106,114.78473,124.3586,134.179482,140.37783,I,Above,Hip,0,NaN,Wood,40.23294785,0,0,,,,1,1,,0.03,nav,1,2005,2,, 6398,NJBF000070319,525 ATLANTIC AVE,Atlantic City,NJ,39.36668699,-74.41773459,RES3D,3004,,NaN,E,1969,0,3303,4,1,4003.308373,4003.308373,3505,NO,71.52,79.76,3,1,6106,114.796893,124.369233,134.190474,140.390642,I,Above,Hip,0,NaN,Wood,75.63972623,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6399,NJBF000069792,114 CENTRE ST,Atlantic City,NJ,39.36400366,-74.43003467,RES3D,3004,,45,E,1900,1900,3303,2,2,596.9533576,596.9533576,3505,YES,26.38,34.16,3,0.31,6106,114.566148,124.172355,133.970749,140.237502,I,Above,Flat,0,NaN,Wood,30.27045174,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6400,NJBF000069790,110 REV DR ISAAC S COLE,Atlantic City,NJ,39.363987,-74.430212,RES3D,3004,,NaN,E,1969,0,3303,2,1,2006.845167,2006.845167,3505,NO,30.69,43.05,3,2.08,6106,114.562553,124.169304,133.967378,140.234986,I,Above,Flat,0,NaN,Wood,36.87150232,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6401,NJBF000069725,,Atlantic City,NJ,39.36337692,-74.43018418,COM1,3003,,NaN,ME,1969,0,3401,2,1,5244.070805,5244.070805,3507,NO,38.84,51.39,1,1.16,6106,114.570472,124.176238,133.974439,140.244041,I,Above,Gable,0,NaN,Wood,45.11537236,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6402,NJBF000069737,1413 ARCTIC AVE,Atlantic City,NJ,39.36351223,-74.42980327,COM1,3003,643,NaN,ME,1969,0,3401,3,1,4636.183317,4636.183317,3507,NO,56.17,61.65,1,2.97,6106,114.577029,124.181769,133.980646,140.248059,I,Above,Flat,0,NaN,Wood,58.91157409,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6403,NJBF000069754,267 N OHIO AVE,Atlantic City,NJ,39.36363483,-74.43656586,COM1,3003,,NaN,ME,1969,0,3401,3,1,1658.001623,1658.001623,3507,NO,44.97,50.5,1,2.66,6106,114.430069,124.057167,133.843933,140.14058,I,Above,Flat,0,NaN,Wood,47.73648418,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6404,NJBF000069789,263 N INDIANA AVE #A,Atlantic City,NJ,39.3639933,-74.43498106,RES3C,3004,,NaN,ME,1969,0,3301,2,1,6783.544703,6783.544703,3505,NO,29.68,35.71,3,-2.4,6106,114.459939,124.082264,133.871771,140.160337,I,Above,Flat,0,NaN,Wood,32.69304554,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6405,NJBF000069811,263 N INDIANA AVE #A,Atlantic City,NJ,39.36416281,-74.43461468,RES3C,3004,,NaN,ME,1969,0,3301,1,1,9760.549348,9760.549348,3505,NO,14.49,24.51,3,0.31,6106,114.465788,124.08714,133.877271,140.163644,I,Above,Flat,0,NaN,Wood,19.50374536,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6406,NJBF000069803,263 N INDIANA AVE #A,Atlantic City,NJ,39.36410615,-74.43557173,RES3C,3004,,NaN,ME,1969,0,3301,2,1,2886.497284,2886.497284,3505,NO,39.17,51.51,3,3.78,6106,114.445857,124.0703,133.858743,140.14943,I,Above,Flat,0,NaN,Wood,45.34021506,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6407,NJBF000069827,263 N INDIANA AVE #A,Atlantic City,NJ,39.36428916,-74.43522614,RES3C,3004,,NaN,ME,1969,0,3301,2,1,5574.362073,5574.362073,3505,NO,32.88,47.85,3,4.33,6106,114.451123,124.074673,133.863699,140.152239,I,Above,Flat,0,NaN,Wood,40.3645633,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6408,NJBF000069994,250 N NEW YORK AVE,Atlantic City,NJ,39.36532944,-74.43214518,COM8,3003,,NaN,ME,1969,0,3401,3,1,15204.14868,15204.14868,3507,NO,51.94,58.69,1,1.86,6106,114.505008,124.119896,133.914267,140.185726,I,Above,Flat,0,NaN,Wood,55.31381234,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6409,NJBF000069717,39 S VIRGINIA AVE,Atlantic City,NJ,39.3632547,-74.42194451,RES3E,3003,,NaN,E,1969,0,3305,5,1,16924.68487,16924.68487,3507,NO,75.03,83.09,1,1.04,6106,114.748287,124.328012,134.141495,140.373039,I,Above,Flat,0,NaN,Wood,79.06423317,0,0,,,,2,2,,0.03,nav,1,1969,5,, 6410,NJBF000070742,120 ATLANTIC AVE,Atlantic City,NJ,39.36825882,-74.41226945,RES3D,3004,100,NaN,E,1969,0,3303,4,1,1470.342215,1470.342215,3505,NO,74.21,82.97,3,0.6,6106,114.894204,124.45319,134.285044,140.453321,I,Above,Flat,0,NaN,Wood,78.58927983,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6411,NJBF000070724,124 ATLANTIC AVE,Atlantic City,NJ,39.3681765,-74.4124435,RES3D,3004,,45,E,1900,1900,3303,4,2,1108.283914,1108.283914,3505,NO,42.73,56.88,3,0.23,6106,114.891503,124.450855,134.28237,140.451772,I,Above,Flat,0,NaN,Wood,49.80672561,0,0,,,,1,1,,0.03,nav,1,1900,4,, 6412,NJBF000071293,401 N VIRGINIA AVE,Atlantic City,NJ,39.37008087,-74.42625627,GOV1,3003,,NaN,E,1969,0,3401,3,1,10939.85197,10939.85197,3507,NO,55.7,62.28,1,0.52,6106,114.575198,124.177658,133.981999,140.210796,I,Above,Flat,0,NaN,Wood,58.99303296,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6413,NJBF000071259,401 N VIRGINIA AVE,Atlantic City,NJ,39.3699375,-74.426615,GOV1,3003,,NaN,E,1969,0,3401,3,1,3749.381495,3749.381495,3507,NO,51.76,57.89,1,1.88,6106,114.569205,124.172592,133.976287,140.207182,I,Above,Flat,0,NaN,Wood,54.82112977,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6414,NJBF000071254,,Atlantic City,NJ,39.36990553,-74.42570919,GOV1,3003,,NaN,E,1969,0,3401,3,1,7452.73521,7452.73521,3507,NO,38.58,46.74,1,-0.99,6106,114.588937,124.189506,133.994919,140.221862,I,Above,Flat,0,NaN,Wood,42.65957717,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6415,NJBF000071503,401 N VIRGINIA AVE,Atlantic City,NJ,39.3707077,-74.42692235,GOV1,3003,,NaN,E,1969,0,3401,3,1,3641.283922,3641.283922,3507,NO,37.09,45.55,1,-0.57,6106,114.553641,124.158899,133.961842,140.191443,I,Above,Flat,0,NaN,Wood,41.31952373,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6416,NJBF000071375,401 N VIRGINIA AVE,Atlantic City,NJ,39.3703985,-74.425997,GOV1,3003,,NaN,E,1969,0,3401,3,1,559.4751254,559.4751254,3507,NO,35.36,47.33,1,-0.19,6106,114.577021,124.179073,133.983833,140.210382,I,Above,Flat,0,NaN,Wood,41.34499737,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6417,NJBF000071382,401 N VIRGINIA AVE,Atlantic City,NJ,39.37042332,-74.42593048,GOV1,3003,,NaN,E,1969,0,3401,3,1,572.6089935,572.6089935,3507,NO,36.3,46.6,1,0.85,6106,114.578173,124.180049,133.984931,140.211097,I,Above,Flat,0,NaN,Wood,41.45155228,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6418,NJBF000070933,335 N PENNSYLVANIA AVE,Atlantic City,NJ,39.3688773,-74.42731067,COM1,3004,,NaN,ME,1969,0,3401,2,1,6422.83937,6422.83937,3507,NO,30.57,36.76,1,-0.36,6106,114.566734,124.170956,133.973567,140.211222,I,Above,Gable,0,NaN,Wood,33.66641118,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6419,NJBF000070978,335 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36903293,-74.42755816,COM1,3004,,NaN,ME,1969,0,3401,1,1,2404.295502,2404.295502,3507,NO,19.12,24.89,1,0.86,6106,114.559616,124.164801,133.966919,140.205135,I,Above,Gable,0,NaN,Wood,22.00864667,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6420,NJBF000070929,335 N PENNSYLVANIA AVE,Atlantic City,NJ,39.3688515,-74.4268555,COM1,3004,,NaN,ME,1969,0,3401,1,1,1185.488382,1185.488382,3507,NO,14.56,24.27,1,0.29,6106,114.576775,124.179554,133.983024,140.218733,I,Above,Hip,0,NaN,Wood,19.41309714,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6421,NJBF000070779,1040 DREXEL AVE,Atlantic City,NJ,39.36838501,-74.42723218,COM1,3004,,33,ME,1920,1900,3401,2,1,3613.446127,3613.446127,3507,YES,38.78,52.04,1,1,6106,114.574207,124.177558,133.980415,140.219413,I,Above,Flat,0,NaN,Wood,45.41180809,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6422,NJBF000070818,1010 DREXEL AVE,Atlantic City,NJ,39.36852111,-74.42646452,COM1,3004,,NaN,ME,1969,0,3401,1,1,13487.88341,13487.88341,3507,YES,14.85,28.69,1,-0.23,6106,114.589018,124.190167,133.994435,140.229519,I,Above,Flat,0,NaN,Wood,21.77408959,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6423,NJBF000071094,401 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36936518,-74.42794938,COM1,3004,739,NaN,ME,1969,0,3401,1,1,6701.431696,6701.431696,3507,NO,13,25.72,1,-0.85,6106,114.547354,124.154167,133.955483,140.194283,I,Above,Flat,0,NaN,Wood,19.3595175,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6424,NJBF000070867,600 BALTIC AVE,Atlantic City,NJ,39.36868708,-74.42008965,RES3D,3004,,NaN,E,1969,0,3303,4,1,8436.515878,8436.515878,3505,NO,73.01,83.32,3,4.21,6106,114.723112,124.305206,134.1216,140.326657,I,Above,Hip,0,NaN,Wood,78.16497967,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6425,NJBF000070763,600 BALTIC AVE,Atlantic City,NJ,39.36834011,-74.41978129,RES3D,3004,,NaN,E,1969,0,3303,4,1,3361.916611,3361.916611,3505,NO,54.63,59.69,3,-1.35,6106,114.733783,124.31449,134.131538,140.336255,I,Above,Gable,0,NaN,Wood,57.16181358,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6426,NJBF000070712,600 BALTIC AVE,Atlantic City,NJ,39.36814117,-74.41960822,RES3D,3004,,NaN,E,1969,0,3303,4,1,3682.448099,3682.448099,3505,NO,52.38,65.93,3,0.52,6106,114.739815,124.319737,134.13715,140.341688,I,Above,Hip,0,NaN,Wood,59.15835414,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6427,NJBF000070787,600 BALTIC AVE,Atlantic City,NJ,39.36842509,-74.42034315,RES3D,3004,,NaN,E,1969,0,3303,4,1,6575.919159,6575.919159,3505,NO,47.53,59.29,3,-1.26,6106,114.720814,124.303301,134.119248,140.326356,I,Above,Flat,0,NaN,Wood,53.41254443,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6428,NJBF000070887,704 LEXINGTON AVE,Atlantic City,NJ,39.3687475,-74.4219495,REL1,3004,,NaN,ME,1969,0,3401,2,1,3917.564148,3917.564148,3507,NO,28.57,35.31,1,1.36,6106,114.682799,124.270504,134.083305,140.296908,I,Above,Flat,0,NaN,Wood,31.93768481,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6429,NJBF000071064,,Atlantic City,NJ,39.36926921,-74.42197085,RES3B,3004,,NaN,ME,1969,0,3301,2,1,4861.701306,4861.701306,3507,NO,30.78,43.5,1,0.8,6106,114.676191,124.26465,134.077316,140.289296,I,Above,Flat,0,NaN,Wood,37.14333616,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6430,NJBF000070372,511 MORGAN TERR,Atlantic City,NJ,39.36685199,-74.43708718,RES1,3001,,16,NE,2012,2012,3101,1,1,1240.201009,1240.201009,3507,YES,15.34,26.84,1,1.63,6106,114.380584,124.013692,133.798931,140.085834,I,Above,Gable,0,5701,Wood,21.08585597,0,0,,,,1,1,,0.03,nav,1,2012,1,, 6431,NJBF000070411,525 N INDIANA AVE,Atlantic City,NJ,39.366981,-74.437475,RES1,3001,,45,NE,1920,1920,3101,3,3,2582.332883,2582.332883,3507,YES,49.77,56.55,1,2.83,6106,114.370697,124.005256,133.789781,140.077795,I,Above,Flat,0,5701,Wood,53.15989152,0,0,,,,1,1,,0.03,nav,1,1920,3,, 6432,NJBF000070331,511 N INDIANA AVE,Atlantic City,NJ,39.36671474,-74.43732538,RES1,3001,100,NaN,NE,1969,0,3101,3,1,1811.295818,1811.295818,3507,YES,56.37,63.85,1,-0.82,6106,114.37707,124.010799,133.795647,140.08404,I,Above,Flat,0,5701,Wood,60.11008857,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6433,NJBF000070385,521 N INDIANA AVE,Atlantic City,NJ,39.36689129,-74.4374289,RES1,3001,,17,NE,1900,1900,3101,2,1,810.530599,810.530599,3507,NO,22.42,32.89,1,0.47,6106,114.372751,124.007045,133.791671,140.079833,I,Above,Flat,0,5701,Wood,27.65561472,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6434,NJBF000070356,517 N INDIANA AVE,Atlantic City,NJ,39.36680774,-74.43736715,RES1,3001,,27,NE,1900,1900,3101,3,2,2289.622035,2289.622035,3507,YES,36.57,46.89,1,2.57,6106,114.375067,124.009052,133.793805,140.082023,I,Above,Gable,0,5701,Wood,41.7284298,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6435,NJBF000070437,1712 REV JJ WALTERS,Atlantic City,NJ,39.36712351,-74.43704583,RES1,3001,,17,NE,2008,2008,3101,1,1,1250.762044,1250.762044,3507,NO,15,24.03,1,2.64,6106,114.37826,124.011569,133.79682,140.082539,I,Above,Flat,0,5701,Wood,19.51771135,0,0,,,,1,1,,0.03,nav,1,2008,1,, 6436,NJBF000070397,512 ROBINSON AVE,Atlantic City,NJ,39.36694857,-74.43689932,RES1,3001,,17,NE,1900,1900,3101,1,1,1282.363983,1282.363983,3507,NO,14.19,20.39,1,-0.03,6106,114.383492,124.016096,133.801646,140.087413,I,Above,Flat,0,5701,Wood,17.29184058,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6437,NJBF000070425,522 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36707144,-74.43657789,RES1,3001,,17,NE,1968,1968,3101,2,1,1606.332703,1606.332703,3507,NO,28.07,38.59,1,-0.93,6106,114.388971,124.020662,133.806755,140.090743,I,Above,Gable,0,5701,Wood,33.3329892,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6438,NJBF000070468,532 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36723557,-74.43668892,RES1,3001,,17,NE,1900,1900,3101,1,1,1517.686082,1517.686082,3507,NO,17.75,23.12,1,1.37,6106,114.384634,124.016897,133.802756,140.086589,I,Above,Hip,0,5701,Wood,20.43550959,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6439,NJBF000070497,1713 REV JJ WALTERS,Atlantic City,NJ,39.3673591,-74.43719258,RES1,3001,,45,NE,1900,1900,3101,1,2,1611.890234,1611.890234,3507,NO,20.08,30.26,1,2.16,6106,114.372322,124.006409,133.791346,140.076791,I,Above,Hip,0,5701,Wood,25.16973325,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6440,NJBF000070482,1717 REV JJ WALTERS,Atlantic City,NJ,39.36732167,-74.43736201,RES1,3001,,NaN,NE,1969,0,3101,2,1,2753.14457,2753.14457,3507,NO,22.53,33,1,1.06,6106,114.369115,124.003718,133.788364,140.074639,I,Above,Flat,0,5701,Wood,27.76152113,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6441,NJBF000070723,225 N VIRGINIA AVE,Atlantic City,NJ,39.36804131,-74.42527495,RES3D,3003,,NaN,ME,1969,0,3301,1,1,9778.342283,9778.342283,3507,NO,16.34,23.95,1,-0.47,6106,114.620117,124.216973,134.023569,140.25489,I,Above,Flat,0,NaN,Wood,20.14798826,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6442,NJBF000070777,225 N VIRGINIA AVE,Atlantic City,NJ,39.36837274,-74.42490095,RES3D,3003,,NaN,ME,1969,0,3301,2,1,6492.820176,6492.820176,3507,NO,25.63,38.08,1,2.88,6106,114.624197,124.220344,134.027587,140.256076,I,Above,Flat,0,NaN,Wood,31.85518976,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6443,NJBF000070709,317 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36811983,-74.42699333,COM1,3004,,NaN,ME,1969,0,3401,2,1,14808.51389,14808.51389,3507,NO,36.48,46.85,1,0.03,6106,114.582443,124.184708,133.988062,140.226899,I,Above,Flat,0,NaN,Wood,41.66651537,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6444,NJBF000069966,805 ATLANTIC AVE,Atlantic City,NJ,39.3652385,-74.4210215,COM1,3004,100,NaN,ME,1969,0,3401,2,1,1058.18493,1058.18493,3507,YES,29.54,37.77,1,-0.48,6106,114.744205,124.324167,134.13923,140.359919,I,Above,Flat,0,NaN,Wood,33.6560893,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6445,NJBF000069998,805 ATLANTIC AVE,Atlantic City,NJ,39.36538783,-74.42111591,COM1,3004,100,NaN,ME,1969,0,3401,2,1,2029.156305,2029.156305,3507,YES,33.07,40.68,1,-0.27,6106,114.740388,124.320859,134.135725,140.356384,I,Above,Flat,0,NaN,Wood,36.87528326,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6446,NJBF000069365,,Atlantic City,NJ,39.3598505,-74.44198598,RES3B,3001,,NaN,ME,1915,0,3301,2,1,5980.078494,5980.078494,3505,NO,33.72,48.12,3,8.96,6106,114.358641,123.998696,133.776674,140.110182,I,Above,Flat,0,NaN,Wood,40.92112739,0,0,,,,1,1,,0.03,nav,1,1915,2,, 6447,NJBF000069367,2324 FAIRMOUNT AVE,Atlantic City,NJ,39.35985363,-74.44214186,RES1,3001,,33,NE,1915,1915,3103,2,1,696.9823472,696.9823472,3505,NO,36.28,44.06,3,2.21,6106,114.355227,123.99583,133.773546,140.107687,I,Above,Flat,0,5701,Wood,40.1693426,0,0,,,,1,1,,0.03,nav,1,1915,2,, 6448,NJBF000069330,129 N GEORGIA AVE RR,Atlantic City,NJ,39.35966965,-74.44188813,RES3B,3001,,45,ME,1920,1920,3301,2,2,1923.407536,1923.407536,3505,NO,35.44,47.56,3,-2.53,6106,114.362966,124.0024,133.780564,140.114355,I,Above,Gable,0,NaN,Wood,41.49812374,0,0,,,,1,1,,0.03,nav,1,1920,2,, 6449,NJBF000069310,125 N GEORGIA AVE RR,Atlantic City,NJ,39.35960343,-74.44175976,RES3B,3001,,27,ME,1900,1900,3301,2,2,723.3540311,723.3540311,3505,YES,43.28,52.26,3,6.17,6106,114.366554,124.005437,133.783824,140.117339,I,Above,Gable,0,NaN,Wood,47.76795222,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6450,NJBF000069277,125 N GEORGIA AVE,Atlantic City,NJ,39.35948197,-74.44205898,RES3B,3001,,45,ME,1900,1900,3301,2,3,4230.14756,4230.14756,3505,NO,32.9,40.47,3,3.46,6106,114.361555,124.001294,133.779192,140.114406,I,Above,Gable,0,NaN,Wood,36.68465402,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6451,NJBF000069229,117 N GEORGIA AVE,Atlantic City,NJ,39.35925316,-74.44191678,RES3B,3001,,45,ME,1912,1912,3301,2,2,2438.355634,2438.355634,3505,YES,35.36,42.96,3,7.34,6106,114.367422,124.006308,133.784469,140.119965,I,Above,Flat,0,NaN,Wood,39.15935494,0,0,,,,1,1,,0.03,nav,1,1912,2,, 6452,NJBF000069248,121 N GEORGIA AVE,Atlantic City,NJ,39.359348,-74.4419675,RES3B,3001,,17,ME,2009,2009,3301,3,1,1122.840979,1122.840979,3505,YES,50.61,64.29,3,1.76,6106,114.365159,124.004371,133.782437,140.117783,I,Above,Gable,0,NaN,Wood,57.45262123,0,0,,,,1,1,,0.03,nav,1,2009,3,, 6453,NJBF000069299,2431 FAIRMOUNT AVE,Atlantic City,NJ,39.35956692,-74.44374303,COM3,3001,560,NaN,ME,1969,0,3401,1,1,2857.442433,2857.442433,3507,YES,12.77,27.59,1,-0.22,6106,114.324034,123.969813,133.744889,140.086682,I,Above,Flat,0,NaN,Wood,20.1764862,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6454,NJBF000069544,2425 SUNSET AVE,Atlantic City,NJ,39.36146517,-74.44503186,IND5,3001,,NaN,E,1969,0,3401,2,1,769.5111124,769.5111124,3507,YES,39.27,52.67,1,0.51,6106,114.273067,123.926214,133.698873,140.038394,I,Above,Flat,0,NaN,Wood,45.97077161,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6455,NJBF000069497,2444 SUNSET AVE,Atlantic City,NJ,39.36092895,-74.44516317,IND5,3001,,17,E,1900,1900,3401,1,1,1008.972715,1008.972715,3507,YES,14.19,28.9,1,1.7,6106,114.276704,123.929539,133.702067,140.044218,I,Above,Flat,0,NaN,Wood,21.54384698,0,1.1,,,,1,1,,0.03,nav,1,1900,1,, 6456,NJBF000069474,304 TURNPIKE RD,Atlantic City,NJ,39.36069184,-74.44478009,IND5,3001,331,NaN,E,1969,0,3401,1,1,8292.221053,8292.221053,3507,NO,12.74,24.09,1,1.49,6106,114.287881,123.939014,133.712214,140.053783,I,Above,Flat,0,NaN,Wood,18.41597824,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6457,NJBF000069532,2424 SUNSET AVE,Atlantic City,NJ,39.3613435,-74.4449155,IND5,3001,220,NaN,E,1969,0,3401,3,1,1886.336602,1886.336602,3507,NO,52.73,63.75,1,-0.06,6106,114.277078,123.929636,133.702509,140.042052,I,Above,Flat,0,NaN,Wood,58.24164559,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6458,NJBF000069512,2442 SUNSET AVE,Atlantic City,NJ,39.36108641,-74.44507165,IND5,3001,,16,E,1900,1900,3401,2,1,1354.198179,1354.198179,3507,NO,37.49,48.64,1,0.26,6106,114.276779,123.92952,133.702174,140.043348,I,Above,Flat,0,NaN,Wood,43.0623526,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6459,NJBF000069500,2447 SUNSET AVE,Atlantic City,NJ,39.36098798,-74.44531259,IND5,3001,100,NaN,E,1969,0,3401,1,1,3410.151741,3410.151741,3507,NO,19.07,27.78,1,2.42,6106,114.272736,123.926188,133.698459,140.040966,I,Above,Flat,0,NaN,Wood,23.42389184,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6460,NJBF000069294,2408 FAIRMOUNT AVE,Atlantic City,NJ,39.3595391,-74.44295384,RES3B,3001,,17,E,1900,1900,3303,2,1,855.7134449,855.7134449,3507,NO,37.34,48.95,1,0.83,6106,114.341474,123.984435,133.760828,140.099512,I,Above,Flat,0,NaN,Wood,43.14511082,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6461,NJBF000069286,2410 FAIRMOUNT AVE,Atlantic City,NJ,39.35951128,-74.4430406,RES3B,3001,100,NaN,E,1969,0,3303,2,1,1190.278658,1190.278658,3507,YES,36.54,49.73,1,2.14,6106,114.339931,123.983153,133.759405,140.098553,I,Above,Flat,0,NaN,Wood,43.13675981,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6462,NJBF000067806,101 N BOSTON AVE #A,Atlantic City,NJ,39.35455976,-74.45264826,COM1,3001,,NaN,ME,1969,0,3401,1,1,9633.054824,9633.054824,3507,NO,13.83,24.05,1,2.41,6106,114.192081,123.862028,133.623354,140.020151,I,Above,Hip,0,NaN,Wood,18.94156304,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6463,NJBF000067729,3403 WINCHESTER AVE,Atlantic City,NJ,39.35429439,-74.45312574,RES3B,3001,,45,E,1900,1900,3303,3,3,1022.104601,1022.104601,3507,NO,45.41,52.13,1,0.12,6106,114.184972,123.856245,133.616857,140.016565,I,Above,Hip,0,NaN,Wood,48.77232791,0,0,,,,1,1,,0.03,nav,1,1900,3,, 6464,NJBF000070167,2121 BACHARACH BLVD,Atlantic City,NJ,39.36605666,-74.44389596,IND1,3004,761,NaN,E,1969,0,3401,1,1,12716.0433,12716.0433,3505,NO,16,26.15,3,3.21,6106,114.242845,123.898101,133.67172,139.988711,I,Above,Flat,0,NaN,Wood,21.07064168,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6465,NJBF000070436,2121 BACHARACH BLVD,Atlantic City,NJ,39.36710539,-74.44397936,IND1,3004,761,NaN,E,1969,0,3401,1,1,18087.57134,18087.57134,3505,NO,13.71,25.67,3,-2.6,6106,114.228696,123.885487,133.658698,139.971862,I,Above,Flat,0,NaN,Wood,19.69059034,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6466,NJBF000071162,1116 EMERSON PL,Atlantic City,NJ,39.36962937,-74.44392778,RES1,3001,,17,NE,1900,1900,3102,2,1,1105.68178,1105.68178,3505,NO,29.02,38.01,3,2.71,6106,114.20031,123.859702,133.632278,139.935255,I,Above,Gable,0,5701,Wood,33.51538329,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6467,NJBF000071348,1110 N OHIO AVE,Atlantic City,NJ,39.37029582,-74.44175545,RES1,3001,,33,NE,1900,1900,3102,2,1,607.1522621,607.1522621,3505,YES,27.59,33.4,3,1.53,6106,114.239559,123.892239,133.668371,139.960591,I,Above,Gable,0,5701,Wood,30.49655209,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6468,NJBF000071084,1100 EMERSON PL,Atlantic City,NJ,39.36933998,-74.44375666,RES1,3001,,17,NE,1900,1900,3102,1,1,2111.820636,2111.820636,3505,NO,19.13,31.78,3,0.93,6106,114.207369,123.865872,133.63883,139.942318,I,Above,Flat,0,5701,Wood,25.4573846,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6469,NJBF000071998,1216 N INDIANA AVE,Atlantic City,NJ,39.37222464,-74.44148674,RES1,3001,,17,NE,1900,1900,3102,1,1,1498.538167,1498.538167,3505,NO,21.72,30.18,3,8.07,6106,114.223099,123.876768,133.652745,139.936448,I,Above,Gable,0,5701,Wood,25.95111736,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6470,NJBF000071123,1105 EMERSON PL,Atlantic City,NJ,39.36949095,-74.44336845,RES1,3001,,17,NE,1900,1900,3102,1,1,1437.843889,1437.843889,3505,NO,15.69,24.51,3,3.7,6106,114.21403,123.871359,133.64494,139.946382,I,Above,Gable,0,5701,Wood,20.0988987,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6471,NJBF000071218,1117 EMERSON PL,Atlantic City,NJ,39.36978982,-74.44356597,RES1,3001,,17,NE,1900,1900,3102,1,1,1201.847107,1201.847107,3505,NO,16.55,27.1,3,0.89,6106,114.206273,123.864592,133.637741,139.938739,I,Above,Gable,0,5701,Wood,21.82926191,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6472,NJBF000072449,1330 N INDIANA AVE,Atlantic City,NJ,39.3736904,-74.44253357,RES1,3001,,16,NE,1996,1996,3102,1,1,1025.225287,1025.225287,3505,NO,22.61,28.3,3,8.02,6106,114.183739,123.842224,133.615843,139.897695,I,Above,Gable,0,5701,Wood,25.45471837,0,0,,,,1,1,,0.03,nav,1,1996,1,, 6473,NJBF000071469,1130 N OHIO AVE,Atlantic City,NJ,39.37069068,-74.44204055,RES1,3001,,17,NE,1900,1900,3102,2,1,1141.147769,1141.147769,3505,NO,38.62,44.47,3,3.3,6106,114.228808,123.882856,133.658366,139.950125,I,Above,Gable,0,5701,Wood,41.54597061,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6474,NJBF000071415,2016 ERIE AVE,Atlantic City,NJ,39.37052812,-74.44394065,RES1,3001,,27,NE,1900,1900,3102,1,2,1326.933258,1326.933258,3505,NO,15.72,27.87,3,3.85,6106,114.189612,123.849961,133.622229,139.921692,I,Above,Hip,0,5701,Wood,21.79411796,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6475,NJBF000071384,,Atlantic City,NJ,39.370433,-74.44109933,RES1,3001,,NaN,NE,1900,0,3102,2,1,1537.587221,1537.587221,3505,NO,33.09,45.46,3,2.09,6106,114.252142,123.90275,133.679986,139.96918,I,Above,Hip,0,5701,Wood,39.27303654,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6476,NJBF000071364,1121 MONROE AVE,Atlantic City,NJ,39.37036423,-74.44215459,RES1,3001,,17,NE,1900,1900,3102,1,1,1603.376899,1603.376899,3505,NO,24.26,38.28,3,7.34,6106,114.230128,123.884231,133.659645,139.953111,I,Above,Flat,0,5701,Wood,31.26672087,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6477,NJBF000071953,1236 N OHIO AVE,Atlantic City,NJ,39.37208365,-74.44299523,RES1,3001,,17,NE,1956,1956,3102,2,1,1602.008299,1602.008299,3505,YES,30.39,41.71,3,5.58,6106,114.192144,123.850761,133.624149,139.913993,I,Above,Hip,0,5701,Wood,36.05266969,0,0,,,,1,1,,0.03,nav,1,1956,2,, 6478,NJBF000072357,1331 N OHIO AVE,Atlantic City,NJ,39.373366,-74.4432215,RES1,3001,,17,NE,1900,1900,3102,2,1,1237.001478,1237.001478,3505,NO,34.23,47.68,3,2.73,6106,114.172571,123.833095,133.605629,139.891254,I,Above,Gable,0,5701,Wood,40.95465002,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6479,NJBF000072252,1300 PENROSE AVE,Atlantic City,NJ,39.37303257,-74.44264029,RES1,3001,,17,NE,1980,1980,3102,1,1,2010.142462,2010.142462,3505,NO,19.89,27.16,3,7.89,6106,114.188945,123.84722,133.620892,139.905707,I,Above,Gable,0,5701,Wood,23.52367078,0,0,,,,1,1,,0.03,nav,1,1980,1,, 6480,NJBF000072207,1305 N OHIO AVE,Atlantic City,NJ,39.37290081,-74.44306344,RES1,3001,,17,NE,1900,1900,3102,1,1,1344.549678,1344.549678,3505,NO,19.09,29.12,3,-0.3,6106,114.181315,123.8409,133.61388,139.900759,I,Above,Gable,0,5701,Wood,24.10349484,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6481,NJBF000072168,1256 N INDIANA AVE,Atlantic City,NJ,39.37276298,-74.44186953,RES1,3001,,17,NE,1960,1960,3102,2,1,3247.208494,3247.208494,3505,NO,28.85,38.44,3,-2.69,6106,114.208662,123.864109,133.639228,139.922262,I,Above,Flat,0,5701,Wood,33.64354654,0,0,,,,1,1,,0.03,nav,1,1960,2,, 6482,NJBF000072152,1300 N OHIO AVE,Atlantic City,NJ,39.37272897,-74.44338421,RES1,3001,,45,NE,1900,1900,3102,2,2,1137.60537,1137.60537,3505,NO,29.98,43.68,3,5.69,6106,114.176346,123.836863,133.609346,139.89807,I,Above,Gable,0,5701,Wood,36.82742095,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6483,NJBF000072127,1300 N OHIO AVE,Atlantic City,NJ,39.372655,-74.4434855,RES1,3001,,45,NE,1900,1900,3102,2,2,648.4153444,648.4153444,3505,NO,41.06,49.56,3,3.11,6106,114.175009,123.835803,133.608136,139.89752,I,Above,Hip,0,5701,Wood,45.31053605,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6484,NJBF000071330,1907 ONTARIO AVE,Atlantic City,NJ,39.370232,-74.441869,RES1,3001,,NaN,NE,1961,0,3102,2,1,631.7472489,631.7472489,3505,NO,39.46,46.12,3,5.53,6106,114.237838,123.890837,133.66679,139.959691,I,Above,Flat,0,5701,Wood,42.79014356,0,0,,,,1,1,,0.03,nav,1,1961,2,, 6485,NJBF000071286,1105 MONROE AVE,Atlantic City,NJ,39.37006479,-74.44197576,RES1,3001,,17,NE,1900,1900,3102,1,1,1673.918573,1673.918573,3505,NO,20.18,34.78,3,1.89,6106,114.237462,123.890651,133.666469,139.960426,I,Above,Gable,0,5701,Wood,27.47841907,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6486,NJBF000071344,1129 N MICHIGAN AVE,Atlantic City,NJ,39.37028368,-74.44290103,RES1,3001,,17,NE,1900,1900,3102,1,1,1395.415503,1395.415503,3505,NO,20.62,32.18,3,3.74,6106,114.214929,123.871484,133.645627,139.942204,I,Above,Gable,0,5701,Wood,26.40047787,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6487,NJBF000072130,1254 PENROSE AVE,Atlantic City,NJ,39.37265751,-74.44237679,RES1,3001,,17,NE,1900,1900,3102,1,1,1178.587422,1178.587422,3505,NO,14.54,26.33,3,-1.38,6106,114.198915,123.855971,133.630238,139.915556,I,Above,Hip,0,5701,Wood,20.43400135,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6488,NJBF000072031,1261 MONROE AVE,Atlantic City,NJ,39.37234917,-74.44348282,RES1,3001,,17,NE,1900,1900,3102,1,1,1204.685747,1204.685747,3505,NO,20.48,33.33,3,8.4,6106,114.178557,123.83907,133.611515,139.902099,I,Above,Hip,0,5701,Wood,26.90316325,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6489,NJBF000071863,1241 N MICHIGAN AVE,Atlantic City,NJ,39.37183663,-74.44393423,RES1,3001,,27,NE,1900,1900,3102,1,2,1078.940658,1078.940658,3505,NO,21.56,33.1,3,7.62,6106,114.174679,123.836257,133.608099,139.902349,I,Above,Hip,0,5701,Wood,27.32893383,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6490,NJBF000071999,1247 N OHIO AVE,Atlantic City,NJ,39.37223034,-74.44261243,RES1,3001,,17,NE,1900,1900,3102,2,1,2445.876939,2445.876939,3505,NO,25.02,31.02,3,-1.47,6106,114.198744,123.856202,133.630207,139.918069,I,Above,Gable,0,5701,Wood,28.02105758,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6491,NJBF000071986,1228 PENROSE AVE,Atlantic City,NJ,39.3721978,-74.44212258,RES1,3001,,17,NE,1900,1900,3102,1,1,2496.380046,2496.380046,3505,NO,14.66,24.79,3,-0.74,6106,114.209675,123.865455,133.640326,139.926504,I,Above,Hip,0,5701,Wood,19.72512281,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6492,NJBF000071635,1138 JEFFERSON PL,Atlantic City,NJ,39.37113,-74.441352,RES1,3001,,17,NE,1968,1968,3102,2,1,1217.77948,1217.77948,3505,NO,29.72,41.1,3,4.21,6106,114.238619,123.890782,133.667356,139.954807,I,Above,Flat,0,5701,Wood,35.41313424,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6493,NJBF000071680,1136 N INDIANA AVE,Atlantic City,NJ,39.37125903,-74.44090665,RES1,3001,,45,NE,1900,1900,3102,1,2,2887.189829,2887.189829,3505,NO,18.95,28.16,3,3.15,6106,114.246738,123.897535,133.674849,139.960112,I,Above,Gable,0,5701,Wood,23.554265,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6494,NJBF000071584,1132 JEFFERSON PL,Atlantic City,NJ,39.37099444,-74.44127036,RES1,3001,,17,NE,1900,1900,3102,2,1,1761.250998,1761.250998,3505,NO,29.05,36.41,3,-0.85,6106,114.24196,123.893712,133.670474,139.958142,I,Above,Gable,0,5701,Wood,32.73288385,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6495,NJBF000071609,1145 N OHIO AVE,Atlantic City,NJ,39.37105168,-74.44179342,RES1,3001,,17,NE,1900,1900,3102,1,1,1445.841128,1445.841128,3505,NO,13.92,21.66,3,3.36,6106,114.229995,123.883565,133.659393,139.948811,I,Above,Hip,0,5701,Wood,17.78896125,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6496,NJBF000071207,1126 EMERSON PL,Atlantic City,NJ,39.36975617,-74.44404641,RES1,3001,,17,NE,1900,1900,3102,1,1,1679.63983,1679.63983,3505,NO,20.27,29.48,3,2.27,6106,114.196282,123.85621,133.628544,139.931454,I,Above,Gable,0,5701,Wood,24.87535761,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6497,NJBF000071342,1134 N MICHIGAN AVE,Atlantic City,NJ,39.370281,-74.443364,RES1,3001,,17,NE,1900,1900,3102,1,1,1267.63514,1267.63514,3505,NO,16.12,21.81,3,5.43,6106,114.204951,123.863081,133.636425,139.934735,I,Above,Hip,0,5701,Wood,18.9632588,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6498,NJBF000071800,1201 N OHIO AVE,Atlantic City,NJ,39.37165691,-74.44216093,RES1,3001,,17,NE,1900,1900,3102,1,1,2163.435478,2163.435478,3505,NO,18.88,30.22,3,7.99,6106,114.215072,123.870471,133.645458,139.933892,I,Above,Hip,0,5701,Wood,24.5484426,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6499,NJBF000072160,1830 HURON AVE,Atlantic City,NJ,39.37275323,-74.44254479,RES1,3001,,17,NE,2008,2008,3102,2,1,1361.994303,1361.994303,3505,NO,38.27,52.27,3,1.28,6106,114.194199,123.851906,133.625844,139.911409,I,Above,Gable,0,5701,Wood,45.27024249,0,0,,,,1,1,,0.03,nav,1,2008,2,, 6500,NJBF000071325,1113 MONROE AVE,Atlantic City,NJ,39.37021618,-74.44206182,RES1,3001,,17,NE,1961,1961,3102,1,1,1370.901068,1370.901068,3505,NO,23.35,37.74,3,4.43,6106,114.233853,123.887489,133.663111,139.956804,I,Above,Hip,0,5701,Wood,30.54776407,0,0,,,,1,1,,0.03,nav,1,1961,1,, 6501,NJBF000071703,1210 MONROE AVE,Atlantic City,NJ,39.37133402,-74.44326607,RES1,3001,,17,NE,1900,1900,3102,1,1,1240.483402,1240.483402,3505,NO,21.93,29.33,3,3.59,6106,114.19491,123.853741,133.626912,139.920707,I,Above,Hip,0,5701,Wood,25.63179284,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6502,NJBF000071521,1942 ERIE AVE,Atlantic City,NJ,39.37081918,-74.44323559,RES1,3001,,17,NE,1960,1960,3102,1,1,1091.101793,1091.101793,3505,NO,13.83,23.8,3,1.55,6106,114.201498,123.859728,133.633121,139.928835,I,Above,Gable,0,5701,Wood,18.8157112,0,0,,,,1,1,,0.03,nav,1,1960,1,, 6503,NJBF000071454,1137 MONROE AVE,Atlantic City,NJ,39.37064509,-74.44235008,RES1,3001,,17,NE,1969,1969,3102,1,1,1480.033901,1480.033901,3505,NO,13.44,22.6,3,1.83,6106,114.222662,123.87771,133.652697,139.945796,I,Above,Hip,0,5701,Wood,18.02093445,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6504,NJBF000071366,1126 MONROE AVE,Atlantic City,NJ,39.37036633,-74.44261543,RES1,3001,,17,NE,1900,1900,3102,1,1,1230.976422,1230.976422,3505,NO,22.26,37.17,3,7.53,6106,114.220163,123.875828,133.650442,139.945627,I,Above,Hip,0,5701,Wood,29.71336608,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6505,NJBF000071754,1140 N INDIANA AVE,Atlantic City,NJ,39.37150685,-74.44100696,RES1,3001,,17,NE,1900,1900,3102,2,1,1569.014417,1569.014417,3505,NO,30.21,41.73,3,4.55,6106,114.24172,123.893095,133.670154,139.954836,I,Above,Gable,0,5701,Wood,35.96730308,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6506,NJBF000071379,1142 N MICHIGAN AVE,Atlantic City,NJ,39.37041968,-74.44345804,RES1,3001,,17,NE,1959,1959,3102,1,1,1137.38503,1137.38503,3505,NO,24.98,39.85,3,5.94,6106,114.201309,123.8599,133.633037,139.931147,I,Above,Hip,0,5701,Wood,32.41686421,0,0,,,,1,1,,0.03,nav,1,1959,1,, 6507,NJBF000072544,,Atlantic City,NJ,39.37403647,-74.44279073,RES1,3001,,NaN,NE,1969,0,3102,2,1,1047.962539,1047.962539,3505,NO,25.37,33.15,3,-1.37,6106,114.174252,123.833889,133.606927,139.888357,I,Above,Gable,0,5701,Wood,29.26064784,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6508,NJBF000071794,1233 N MICHIGAN AVE,Atlantic City,NJ,39.3716479,-74.443796,RES1,3001,,27,NE,1900,1900,3102,1,2,977.0142803,977.0142803,3505,NO,13.5,24.13,3,2.74,6106,114.179836,123.840768,133.612914,139.90741,I,Above,Gable,0,5701,Wood,18.81053389,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6509,NJBF000071537,1140 N OHIO AVE,Atlantic City,NJ,39.37086004,-74.44215639,RES1,3001,,17,NE,1900,1900,3102,2,1,1485.791674,1485.791674,3505,YES,19.12,30.32,3,-2.08,6106,114.224369,123.878975,133.654231,139.945762,I,Above,Gable,0,5701,Wood,24.72189161,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6510,NJBF000071641,1126 N INDIANA AVE,Atlantic City,NJ,39.37114037,-74.44076428,RES1,3001,,16,NE,1900,1900,3102,1,1,1036.626662,1036.626662,3505,NO,17.89,23.99,3,5.89,6106,114.251199,123.901398,133.679001,139.964181,I,Above,Hip,0,5701,Wood,20.94041451,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6511,NJBF000071697,1213 N MICHIGAN AVE,Atlantic City,NJ,39.37132014,-74.44358008,RES1,3001,,17,NE,1959,1959,3102,2,1,1387.869006,1387.869006,3505,NO,22.46,31.16,3,-0.35,6106,114.188281,123.848168,133.620799,139.915803,I,Above,Gable,0,5701,Wood,26.81151061,0,0,,,,1,1,,0.03,nav,1,1959,2,, 6512,NJBF000071539,1106 N INDIANA AVE,Atlantic City,NJ,39.37086388,-74.44063282,RES1,3001,,17,NE,1999,1999,3102,1,1,1750.854653,1750.854653,3505,NO,23.19,28.19,3,8.02,6106,114.257216,123.906698,133.684619,139.970365,I,Above,Hip,0,5701,Wood,25.68959969,0,0,,,,1,1,,0.03,nav,1,1999,1,, 6513,NJBF000072430,1336 PENROSE AVE,Atlantic City,NJ,39.37365043,-74.44300913,RES1,3001,,17,NE,1962,1962,3102,1,1,1448.772767,1448.772767,3505,NO,12.53,27.27,3,-0.38,6106,114.173936,123.833983,133.606784,139.89052,I,Above,Gable,0,5701,Wood,19.89825895,0,0,,,,1,1,,0.03,nav,1,1962,1,, 6514,NJBF000071618,1152 N OHIO AVE,Atlantic City,NJ,39.3710734,-74.4423529,RES1,3001,,17,NE,1953,1953,3102,1,1,2929.307638,2929.307638,3505,NO,20.12,29.6,3,4.23,6106,114.217653,123.873136,133.64798,139.939415,I,Above,Hip,0,5701,Wood,24.86279751,0,0,,,,1,1,,0.03,nav,1,1953,1,, 6515,NJBF000071373,1107 N OHIO AVE,Atlantic City,NJ,39.37038658,-74.44140795,RES1,3001,,33,NE,1900,1900,3102,2,1,4922.884364,4922.884364,3505,YES,33.35,38.87,3,-0.73,6106,114.246001,123.897603,133.674313,139.964862,I,Above,Flat,0,5701,Wood,36.10909701,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6516,NJBF000071489,1133 N OHIO AVE,Atlantic City,NJ,39.37074115,-74.44158398,RES1,3001,,17,NE,1900,1900,3102,1,1,1910.037442,1910.037442,3505,NO,21.76,35.38,3,5.38,6106,114.238102,123.890658,133.66695,139.95679,I,Above,Gable,0,5701,Wood,28.5682378,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6517,NJBF000071832,1234 MONROE AVE,Atlantic City,NJ,39.37176232,-74.44356047,RES1,3001,,17,NE,1900,1900,3102,1,1,1166.457272,1166.457272,3505,NO,19.99,32.46,3,7.2,6106,114.183628,123.843864,133.61638,139.909564,I,Above,Gable,0,5701,Wood,26.22552565,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6518,NJBF000071509,1145 MONROE AVE,Atlantic City,NJ,39.37079056,-74.44244032,RES1,3001,,17,NE,1900,1900,3102,1,1,1157.513199,1157.513199,3505,NO,17.91,23.98,3,-0.94,6106,114.219029,123.874528,133.649312,139.942176,I,Above,Gable,0,5701,Wood,20.94304348,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6519,NJBF000071402,1134 MONROE AVE,Atlantic City,NJ,39.37049196,-74.44271586,RES1,3001,,17,NE,1900,1900,3102,2,1,2179.023845,2179.023845,3505,NO,23.01,33.19,3,-0.04,6106,114.216521,123.872657,133.647056,139.942124,I,Above,Hip,0,5701,Wood,28.09854159,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6520,NJBF000071303,1128 N MICHIGAN AVE,Atlantic City,NJ,39.370132,-74.443266,RES1,3001,,17,NE,1900,1900,3102,1,1,1382.133693,1382.133693,3505,NO,15.26,21.33,3,-0.08,6106,114.208797,123.866441,133.640001,139.938535,I,Above,Hip,0,5701,Wood,18.29193618,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6521,NJBF000071538,2046 HORACE BRYANT JR DR,Atlantic City,NJ,39.37086049,-74.44456856,RES1,3001,,17,NE,1960,1960,3102,2,1,1402.952639,1402.952639,3505,NO,30.11,38.82,3,5.65,6106,114.172189,123.835014,133.606092,139.906529,I,Above,Hip,0,5701,Wood,34.46461434,0,0,,,,1,1,,0.03,nav,1,1960,2,, 6522,NJBF000071564,1158 MONROE AVE,Atlantic City,NJ,39.37093339,-74.44300761,RES1,3001,,17,NE,1900,1900,3102,1,1,2176.848888,2176.848888,3505,NO,9.76,15.11,3,-2.62,6106,114.205112,123.862678,133.636429,139.93085,I,Above,Hip,0,5701,Wood,12.43481894,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6523,NJBF000071420,1809 ONTARIO AVE,Atlantic City,NJ,39.37054909,-74.44091679,RES1,3001,,17,NE,1968,1968,3102,2,1,1313.033717,1313.033717,3505,NO,36.98,48.2,3,1.06,6106,114.254729,123.904844,133.682363,139.970412,I,Above,Gable,0,5701,Wood,42.58799389,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6524,NJBF000072225,1835 HURON AVE,Atlantic City,NJ,39.37295885,-74.44284739,RES1,3001,,17,NE,1955,1955,3102,1,1,1470.816522,1470.816522,3505,NO,26.39,34.6,3,8.99,6106,114.185319,123.844226,133.617563,139.903426,I,Above,Hip,0,5701,Wood,30.49517956,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6525,NJBF000071512,1150 MONROE AVE,Atlantic City,NJ,39.37079855,-74.44291082,RES1,3001,,17,NE,1900,1900,3102,1,1,1096.345955,1096.345955,3505,NO,12.75,27.11,3,0.6,6106,114.208756,123.865861,133.639823,139.934412,I,Above,Gable,0,5701,Wood,19.92955582,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6526,NJBF000071368,1153 EMERSON PL,Atlantic City,NJ,39.3703786,-74.44394782,RES1,3001,,17,NE,1963,1963,3102,2,1,1263.000445,1263.000445,3505,NO,32.8,44.45,3,3.63,6106,114.191184,123.851408,133.623713,139.923792,I,Above,Gable,0,5701,Wood,38.62646845,0,0,,,,1,1,,0.03,nav,1,1963,2,, 6527,NJBF000072129,1915 HURON AVE,Atlantic City,NJ,39.37265678,-74.44366574,RES1,3001,,17,NE,1900,1900,3102,2,1,1507.890867,1507.890867,3505,NO,42.86,54.64,3,8.53,6106,114.171074,123.832483,133.604501,139.894532,I,Above,Gable,0,5701,Wood,48.74823111,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6528,NJBF000071867,1229 MONROE AVE,Atlantic City,NJ,39.3718535,-74.443038,RES1,3001,,17,NE,1900,1900,3102,1,1,585.2088613,585.2088613,3505,NO,11.74,17.29,3,1.1,6106,114.193856,123.852406,133.625797,139.916705,I,Above,Flat,0,5701,Wood,14.51684253,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6529,NJBF000071407,2018 ERIE AVE,Atlantic City,NJ,39.37050494,-74.44403796,RES1,3001,,17,NE,1900,1900,3102,1,1,1009.867255,1009.867255,3505,NO,22.34,29.22,3,5.49,6106,114.187779,123.848437,133.620546,139.920456,I,Above,Gable,0,5701,Wood,25.77816041,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6530,NJBF000071062,1105 BEACH AVE,Atlantic City,NJ,39.36925873,-74.44438917,RES1,3001,,17,NE,1900,1900,3102,2,1,1441.908919,1441.908919,3505,NO,36.41,44.18,3,2.38,6106,114.194632,123.855223,133.627121,139.933271,I,Above,Gable,0,5701,Wood,40.29677061,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6531,NJBF000072106,1236 N INDIANA AVE,Atlantic City,NJ,39.37259561,-74.44177796,RES1,3001,,17,NE,1900,1900,3102,1,1,1913.539306,1913.539306,3505,NO,24.81,39.8,3,8.34,6106,114.212561,123.867548,133.642887,139.926231,I,Above,Hip,0,5701,Wood,32.30027808,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6532,NJBF000072056,1230 N INDIANA AVE,Atlantic City,NJ,39.37245165,-74.44168518,RES1,3001,,17,NE,1900,1900,3102,1,1,2251.282376,2251.282376,3505,NO,19.88,28.64,3,2.21,6106,114.216219,123.870763,133.646315,139.929873,I,Above,Hip,0,5701,Wood,24.26041045,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6533,NJBF000071809,1142 N INDIANA AVE,Atlantic City,NJ,39.37168624,-74.44110431,RES1,3001,,17,NE,1951,1951,3102,1,1,1302.245299,1302.245299,3505,NO,17.43,31.38,3,5.48,6106,114.237564,123.889438,133.666268,139.950623,I,Above,Hip,0,5701,Wood,24.40735928,0,0,,,,1,1,,0.03,nav,1,1951,1,, 6534,NJBF000071983,1253 MONROE AVE,Atlantic City,NJ,39.37219448,-74.44336391,RES1,3001,,17,NE,1965,1965,3102,2,1,1756.174153,1756.174153,3505,NO,28.87,36.53,3,6.24,6106,114.182906,123.842875,133.615581,139.906344,I,Above,Hip,0,5701,Wood,32.69724734,0,0,,,,1,1,,0.03,nav,1,1965,2,, 6535,NJBF000071744,1213 MONROE AVE,Atlantic City,NJ,39.37147473,-74.4429046,RES1,3001,,17,NE,1956,1956,3102,1,1,1317.846006,1317.846006,3505,NO,17.8,26.95,3,0.69,6106,114.20109,123.858831,133.632582,139.92449,I,Above,Gable,0,5701,Wood,22.37769809,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6536,NJBF000071875,1208 PENROSE AVE,Atlantic City,NJ,39.37187275,-74.44186153,RES1,3001,,17,NE,1955,1955,3102,1,1,1326.032075,1326.032075,3505,NO,18.1,30.5,3,-0.68,6106,114.219045,123.873643,133.649081,139.935556,I,Above,Hip,0,5701,Wood,24.2960092,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6537,NJBF000071759,1229 N MICHIGAN AVE,Atlantic City,NJ,39.37152306,-74.44370227,RES1,3001,,27,NE,1900,1900,3102,1,2,1012.482884,1012.482884,3505,NO,14.88,25.66,3,-2.43,6106,114.183306,123.843801,133.616152,139.9108,I,Above,Hip,0,5701,Wood,20.26527052,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6538,NJBF000071719,2018 HORACE BRYANT JR DR,Atlantic City,NJ,39.37138276,-74.44431832,RES1,3001,,17,NE,1900,1900,3102,1,1,1263.649969,1263.649969,3505,NO,16.41,25.17,3,1.98,6106,114.171593,123.834058,133.605392,139.902837,I,Above,Hip,0,5701,Wood,20.78982709,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6539,NJBF000071464,1105 JEFFERSON PL,Atlantic City,NJ,39.37067084,-74.4405835,RES1,3001,,17,NE,1999,1999,3102,1,1,1498.198908,1498.198908,3505,NO,11.3,21.42,3,0.33,6106,114.260506,123.909628,133.687694,139.973998,I,Above,Gable,0,5701,Wood,16.35979401,0,0,,,,1,1,,0.03,nav,1,1999,1,, 6540,NJBF000071593,1122 N INDIANA AVE,Atlantic City,NJ,39.37102228,-74.44067841,RES1,3001,,16,NE,1900,1900,3102,1,1,1094.188051,1094.188051,3505,NO,17.28,26.26,3,6.42,6106,114.254418,123.904211,133.682003,139.96731,I,Above,Gable,0,5701,Wood,21.76647684,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6541,NJBF000071709,1161 N OHIO AVE,Atlantic City,NJ,39.37134794,-74.44196112,RES1,3001,,17,NE,1900,1900,3102,2,1,2282.71674,2282.71674,3505,NO,45.03,59.11,3,8.43,6106,114.222951,123.877378,133.652817,139.941711,I,Above,Gable,0,5701,Wood,52.06819615,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6542,NJBF000071701,1205 MONROE AVE,Atlantic City,NJ,39.37133044,-74.44280808,RES1,3001,,17,NE,1900,1900,3102,1,1,1234.614244,1234.614244,3505,NO,12.65,23.19,3,0.14,6106,114.204856,123.86213,133.636098,139.928217,I,Above,Gable,0,5701,Wood,17.91720692,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6543,NJBF000071483,1803 ONTARIO AVE,Atlantic City,NJ,39.37073048,-74.44049225,RES1,3001,,17,NE,1925,1925,3102,2,1,1360.746254,1360.746254,3505,NO,24.3,30.41,3,1.07,6106,114.261809,123.910683,133.688893,139.974616,I,Above,Gable,0,5701,Wood,27.3517484,0,0,,,,1,1,,0.03,nav,1,1925,2,, 6544,NJBF000071444,1160 N MICHIGAN AVE,Atlantic City,NJ,39.37062899,-74.44358353,RES1,3001,,17,NE,1900,1900,3102,1,1,1263.254287,1263.254287,3505,NO,17.54,29.36,3,-0.59,6106,114.196167,123.855396,133.628248,139.925998,I,Above,Flat,0,5701,Wood,23.44905754,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6545,NJBF000071562,1137 N OHIO AVE,Atlantic City,NJ,39.37093175,-74.44172595,RES1,3001,,17,NE,1956,1956,3102,1,1,1313.851538,1313.851538,3505,NO,18.23,29.45,3,-1.06,6106,114.232828,123.886053,133.662037,139.951669,I,Above,Gable,0,5701,Wood,23.83892649,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6546,NJBF000071681,1146 JEFFERSON PL,Atlantic City,NJ,39.37125963,-74.44143909,RES1,3001,,17,NE,1900,1900,3102,2,1,1331.131372,1331.131372,3505,NO,28.73,35.54,3,7.43,6106,114.23524,123.887824,133.664204,139.951478,I,Above,Gable,0,5701,Wood,32.13880185,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6547,NJBF000071253,1125 EMERSON PL,Atlantic City,NJ,39.36992825,-74.44366827,RES1,3001,,16,NE,1900,1900,3102,1,1,1411.519396,1411.519396,3505,NO,15.75,22.3,3,-0.1,6106,114.202466,123.861275,133.634205,139.935037,I,Above,Flat,0,5701,Wood,19.02838324,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6548,NJBF000071179,1104 N MICHIGAN AVE,Atlantic City,NJ,39.3696728,-74.44300899,RES1,3001,,17,NE,1967,1967,3102,1,1,1893.841524,1893.841524,3505,NO,12.46,22.06,3,0.12,6106,114.21968,123.875973,133.650119,139.949502,I,Above,Flat,0,5701,Wood,17.26089146,0,0,,,,1,1,,0.03,nav,1,1967,1,, 6549,NJBF000071269,1113 N MICHIGAN AVE,Atlantic City,NJ,39.37000236,-74.4426911,RES1,3001,,17,NE,1900,1900,3102,1,1,1657.341674,1657.341674,3505,NO,22.02,36.27,3,3.03,6106,114.222738,123.878289,133.652884,139.949782,I,Above,Hip,0,5701,Wood,29.1443834,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6550,NJBF000072083,1257 N OHIO AVE,Atlantic City,NJ,39.37252552,-74.44283814,RES1,3001,,17,NE,1900,1920,3102,2,1,4984.245094,4984.245094,3505,YES,27.22,39.47,3,4.3,6106,114.190468,123.848959,133.622465,139.909996,I,Above,Gable,0,5701,Wood,33.3443446,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6551,NJBF000071305,1100 N OHIO AVE,Atlantic City,NJ,39.3701345,-74.4416135,RES1,3001,,45,NE,1930,1930,3102,2,2,701.1583207,701.1583207,3505,YES,29.48,35.39,3,-0.19,6106,114.244484,123.89652,133.672947,139.965263,I,Above,Flat,0,5701,Wood,32.43680752,0,0,,,,1,1,,0.03,nav,1,1930,2,, 6552,NJBF000071252,1134 EMERSON PL,Atlantic City,NJ,39.36991922,-74.44412003,RES1,3001,,17,NE,1900,1900,3102,1,1,1171.264232,1171.264232,3505,NO,21.16,30.81,3,6.24,6106,114.19279,123.853139,133.625295,139.927831,I,Above,Gable,0,5701,Wood,25.98254875,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6553,NJBF000072058,1258 N OHIO AVE,Atlantic City,NJ,39.37245563,-74.44323734,RES1,3001,,17,NE,1900,1900,3102,1,1,1560.810601,1560.810601,3505,NO,8.82,16.64,3,-2.35,6106,114.182648,123.842424,133.61526,139.904525,I,Above,Hip,0,5701,Wood,12.72869233,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6554,NJBF000071401,1128 N OHIO AVE,Atlantic City,NJ,39.37048736,-74.44190368,RES1,3001,,17,NE,1965,1965,3102,2,1,1748.341075,1748.341075,3505,NO,35.93,43.61,3,5.17,6106,114.234128,123.887507,133.66332,139.955359,I,Above,Gable,0,5701,Wood,39.76877381,0,0,,,,1,1,,0.03,nav,1,1965,2,, 6555,NJBF000071288,1135 EMERSON PL,Atlantic City,NJ,39.3700796,-74.44374422,RES1,3001,,17,NE,1963,1963,3102,1,1,1425.210352,1425.210352,3505,NO,13.69,27.54,3,-1.45,6106,114.19906,123.858284,133.631036,139.931547,I,Above,Hip,0,5701,Wood,20.61325202,0,0,,,,1,1,,0.03,nav,1,1963,1,, 6556,NJBF000071395,1141 N MICHIGAN AVE,Atlantic City,NJ,39.3704611,-74.4430001,RES1,3001,,27,NE,1900,1900,3102,1,2,2301.085576,2301.085576,3505,NO,14.38,26.18,3,0.4,6106,114.21074,123.86781,133.641726,139.937975,I,Above,Gable,0,5701,Wood,20.2816364,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6557,NJBF000071942,1245 MONROE AVE,Atlantic City,NJ,39.37205289,-74.44329125,RES1,3001,,17,NE,1900,1900,3102,1,1,1366.900434,1366.900434,3505,NO,11.97,18.54,3,0.67,6106,114.186102,123.845694,133.618576,139.909628,I,Above,Hip,0,5701,Wood,15.25473359,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6558,NJBF000071936,1227 N OHIO AVE,Atlantic City,NJ,39.37203455,-74.44244377,RES1,3001,,17,NE,1900,1900,3102,1,1,2251.093984,2251.093984,3505,NO,21.57,29.93,3,3.9,6106,114.204612,123.861323,133.635688,139.923694,I,Above,Flat,0,5701,Wood,25.75138348,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6559,NJBF000071164,1109 EMERSON PL,Atlantic City,NJ,39.3696303,-74.44346866,RES1,3001,,17,NE,1900,1900,3102,1,1,1250.698088,1250.698088,3505,NO,18.59,29.79,3,3.37,6106,114.21023,123.86805,133.641415,139.942685,I,Above,Gable,0,5701,Wood,24.18893116,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6560,NJBF000072395,1328 PENROSE AVE,Atlantic City,NJ,39.37350568,-74.44292954,RES1,3001,,17,NE,1900,1900,3102,1,1,1222.123746,1222.123746,3505,NO,15.5,21.05,3,-2.7,6106,114.177283,123.836943,133.609935,139.893951,I,Above,Flat,0,5701,Wood,18.27922458,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6561,NJBF000072651,,Atlantic City,NJ,39.3743995,-74.443547,RES1,3001,,NaN,NE,1969,0,3102,2,1,1865.92347,1865.92347,3505,NO,30.06,39.67,3,-0.45,6112,114.15379,123.816263,133.587838,139.870557,I,Above,Hip,0,5701,Wood,34.86740475,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6562,NJBF000072480,,Atlantic City,NJ,39.37381299,-74.44263855,RES1,3001,,NaN,NE,1969,0,3102,2,1,1066.709805,1066.709805,3505,NO,35.35,44.22,3,-2.27,6106,114.180071,123.839012,133.612401,139.894154,I,Above,Gable,0,5701,Wood,39.78534545,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6563,NJBF000072510,,Atlantic City,NJ,39.37393457,-74.44272052,RES1,3001,,NaN,NE,1969,0,3102,2,1,990.2553906,990.2553906,3505,NO,27,37.2,3,3.23,6106,114.176912,123.83623,133.60943,139.891002,I,Above,Gable,0,5701,Wood,32.09874191,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6564,NJBF000072409,1832 HORACE BRYANT JR DR,Atlantic City,NJ,39.37354836,-74.44320731,RES1,3001,,17,NE,1900,1900,3102,2,1,1377.685173,1377.685173,3505,NO,43.84,51.15,3,6.13,6106,114.17082,123.831449,133.603941,139.888796,I,Above,Gable,0,5701,Wood,47.49386632,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6565,NJBF000072217,1260 N INDIANA AVE,Atlantic City,NJ,39.37294121,-74.44200975,RES1,3001,,17,NE,1900,1900,3102,2,1,3197.845504,3197.845504,3505,YES,29.65,43.34,3,8.42,6106,114.203602,123.859679,133.634489,139.917347,I,Above,Flat,0,5701,Wood,36.49525301,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6566,NJBF000072415,1322 N INDIANA AVE,Atlantic City,NJ,39.37357182,-74.44244795,RES1,3001,,17,NE,1900,1900,3102,1,1,2170.371484,2170.371484,3505,NO,17.64,25.54,3,-1.2,6106,114.186941,123.845037,133.61885,139.90085,I,Above,Gable,0,5701,Wood,21.59151863,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6567,NJBF000072304,1300 N INDIANA AVE,Atlantic City,NJ,39.37321589,-74.44218907,RES1,3001,,17,NE,1900,1900,3102,2,1,1550.140863,1550.140863,3505,NO,45.1,58.36,3,6.92,6106,114.196595,123.853514,133.627912,139.910355,I,Above,Hip,0,5701,Wood,51.73118949,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6568,NJBF000071324,1145 EMERSON PL,Atlantic City,NJ,39.37021334,-74.44385428,RES1,3001,,17,NE,1900,1900,3102,1,1,1150.40475,1150.40475,3505,NO,20.97,30.56,3,3.66,6106,114.195139,123.854875,133.627395,139.927786,I,Above,Flat,0,5701,Wood,25.767574,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6569,NJBF000071311,1121 N MICHIGAN AVE,Atlantic City,NJ,39.37015248,-74.44283689,RES1,3001,,17,NE,1959,1959,3102,1,1,1664.493773,1664.493773,3505,NO,19.73,29.14,3,7.69,6106,114.217842,123.874044,133.64834,139.945196,I,Above,Gable,0,5701,Wood,24.43385596,0,0,,,,1,1,,0.03,nav,1,1959,1,, 6570,NJBF000071287,1110 MONROE AVE,Atlantic City,NJ,39.3700755,-74.44242561,RES1,3001,,17,NE,1900,1900,3102,1,1,1338.05602,1338.05602,3505,NO,23.91,36.43,3,5.9,6106,114.22762,123.882346,133.657378,139.952995,I,Above,Flat,0,5701,Wood,30.17343962,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6571,NJBF000071783,1221 MONROE AVE,Atlantic City,NJ,39.37161914,-74.44299756,RES1,3001,,17,NE,1900,1900,3102,1,1,1456.684254,1456.684254,3505,NO,15.17,26.98,3,0.58,6106,114.197422,123.855616,133.629156,139.920842,I,Above,Hip,0,5701,Wood,21.07373734,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6572,NJBF000072038,1238 PENROSE AVE,Atlantic City,NJ,39.37237188,-74.44217558,RES1,3001,,17,NE,1900,1900,3102,1,1,1277.009504,1277.009504,3505,NO,11.22,20.5,3,-2.69,6106,114.206534,123.862653,133.637371,139.923066,I,Above,Hip,0,5701,Wood,15.86108361,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6573,NJBF000072017,1250 N OHIO AVE,Atlantic City,NJ,39.37229427,-74.44313518,RES1,3001,,17,NE,1956,1956,3102,1,1,2207.991658,2207.991658,3505,NO,25.2,38.36,3,8.47,6106,114.186709,123.845993,133.619063,139.908595,I,Above,Hip,0,5701,Wood,31.77909241,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6574,NJBF000071889,1242 MONROE AVE,Atlantic City,NJ,39.37190468,-74.44365354,RES1,3001,,17,NE,1980,1980,3102,1,1,1231.213748,1231.213748,3505,NO,21.86,33.85,3,8.4,6106,114.179953,123.840641,133.612945,139.905906,I,Above,Gable,0,5701,Wood,27.85509377,0,0,,,,1,1,,0.03,nav,1,1980,1,, 6575,NJBF000071882,1228 N OHIO AVE,Atlantic City,NJ,39.37189506,-74.4428508,RES1,3001,,17,NE,1900,1900,3102,1,1,1147.199508,1147.199508,3505,NO,16.55,29.02,3,2.86,6106,114.197426,123.855381,133.629084,139.919142,I,Above,Gable,0,5701,Wood,22.78761187,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6576,NJBF000071743,1200 N OHIO AVE,Atlantic City,NJ,39.37147,-74.44256398,RES1,3001,,17,NE,1900,1900,3102,1,1,2232.734293,2232.734293,3505,NO,20.1,31.18,3,7.91,6106,114.208517,123.865099,133.639445,139.93011,I,Above,Hip,0,5701,Wood,25.64082338,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6577,NJBF000071817,1216 N OHIO AVE,Atlantic City,NJ,39.37171477,-74.44272573,RES1,3001,,17,NE,1900,1900,3102,1,1,1658.484218,1658.484218,3505,NO,14.29,23.75,3,0.78,6106,114.202197,123.85956,133.633542,139.923845,I,Above,Gable,0,5701,Wood,19.01904268,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6578,NJBF000071894,1237 MONROE AVE,Atlantic City,NJ,39.37192,-74.443201,RES1,3001,,17,NE,1900,1900,3102,1,1,1227.046904,1227.046904,3505,NO,26.41,40.93,3,8.31,6106,114.189574,123.848738,133.621823,139.91307,I,Above,Flat,0,5701,Wood,33.67256232,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6579,NJBF000071671,2028 HORACE BRYANT JR DR,Atlantic City,NJ,39.37122531,-74.44439506,RES1,3001,,17,NE,1900,1900,3102,1,1,1238.777327,1238.777327,3505,NO,13.16,24.89,3,-0.92,6106,114.171747,123.834325,133.60558,139.903933,I,Above,Gable,0,5701,Wood,19.02613472,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6580,NJBF000072361,1308 N INDIANA AVE,Atlantic City,NJ,39.37339315,-74.44230754,RES1,3001,,17,NE,1900,1964,3102,2,1,2725.113257,2725.113257,3505,NO,41.97,54.64,3,3.47,6106,114.192005,123.849477,133.623602,139.905791,I,Above,Hip,0,5701,Wood,48.30554551,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6581,NJBF000071118,1112 EMERSON PL,Atlantic City,NJ,39.369484,-74.443829,RES1,3001,,17,NE,1900,1900,3102,1,1,1162.212652,1162.212652,3505,NO,17.45,27.51,3,0.07,6106,114.204137,123.863038,133.635828,139.939014,I,Above,Gable,0,5701,Wood,22.47884259,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6582,NJBF000072479,1824 HORACE BRYANT JR DR,Atlantic City,NJ,39.37381091,-74.44313526,RES1,3001,,17,NE,1900,1900,3102,1,1,1494.011696,1494.011696,3505,NO,20.43,26.07,3,2.94,6106,114.169381,123.829988,133.602508,139.886067,I,Above,Gable,0,5701,Wood,23.24927226,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6583,NJBF000071890,1245 N MICHIGAN AVE,Atlantic City,NJ,39.37190508,-74.44398127,RES1,3001,,27,NE,1957,1957,3102,1,2,1171.903209,1171.903209,3505,NO,23.25,37.21,3,5.72,6106,114.172882,123.834683,133.60642,139.90057,I,Above,Gable,0,5701,Wood,30.22973934,0,0,,,,1,1,,0.03,nav,1,1957,1,, 6584,NJBF000072080,1246 PENROSE AVE,Atlantic City,NJ,39.37251731,-74.44228092,RES1,3001,,17,NE,1900,1900,3102,1,1,1390.411713,1390.411713,3505,NO,14.74,24.89,3,-2.1,6106,114.202604,123.859209,133.633693,139.919209,I,Above,Hip,0,5701,Wood,19.81245085,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6585,NJBF000071457,1142 MONROE AVE,Atlantic City,NJ,39.37065405,-74.44282326,RES1,3001,,17,NE,1900,1900,3102,1,1,1438.277931,1438.277931,3505,NO,9.38,23.23,3,-1.51,6106,114.212334,123.868996,133.643158,139.937989,I,Above,Flat,0,5701,Wood,16.30656872,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6586,NJBF000072350,1322 PENROSE AVE,Atlantic City,NJ,39.37335323,-74.44282786,RES1,3001,,17,NE,1900,1900,3102,1,1,1093.847398,1093.847398,3505,NO,16.52,24.4,3,3.28,6106,114.181231,123.840416,133.613644,139.897889,I,Above,Gable,0,5701,Wood,20.46153757,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6587,NJBF000071439,1149 N MICHIGAN AVE,Atlantic City,NJ,39.37062274,-74.44310776,RES1,3001,,27,NE,1959,1959,3102,1,2,1024.644779,1024.644779,3505,NO,23.41,34.61,3,7,6106,114.206531,123.864131,133.637808,139.933821,I,Above,Gable,0,5701,Wood,29.00806964,0,0,,,,1,1,,0.03,nav,1,1959,1,, 6588,NJBF000071816,1237 N MICHIGAN AVE,Atlantic City,NJ,39.37171377,-74.44384137,RES1,3001,,27,NE,1956,1956,3102,1,2,1009.286182,1009.286182,3505,NO,24.36,38.49,3,6.75,6106,114.178104,123.839251,133.611296,139.905695,I,Above,Hip,0,5701,Wood,31.42644798,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6589,NJBF000071603,1200 N MICHIGAN AVE,Atlantic City,NJ,39.37104033,-74.44382143,RES1,3001,,17,NE,1900,1900,3102,2,1,2989.284914,2989.284914,3505,YES,30.88,36.87,3,-0.8,6106,114.186296,123.846736,133.619043,139.916038,I,Above,Hip,0,5701,Wood,33.87401621,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6590,NJBF000071939,1255 N MICHIGAN AVE,Atlantic City,NJ,39.37204652,-74.44404258,RES1,3001,,17,NE,1900,1900,3102,1,1,1419.30541,1419.30541,3505,NO,22.51,35.02,3,7.83,6106,114.169911,123.832053,133.603633,139.897445,I,Above,Hip,0,5701,Wood,28.76243688,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6591,NJBF000072258,1311 N OHIO AVE,Atlantic City,NJ,39.37304905,-74.44314026,RES1,3001,,17,NE,1900,1900,3102,1,1,1477.258887,1477.258887,3505,NO,19.93,32.85,3,4.38,6106,114.177961,123.837934,133.610727,139.897304,I,Above,Hip,0,5701,Wood,26.39043185,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6592,NJBF000071912,1216 PENROSE AVE,Atlantic City,NJ,39.37197151,-74.44192475,RES1,3001,,17,NE,1959,1959,3102,1,1,1250.716144,1250.716144,3505,NO,23.1,37.03,3,8.67,6106,114.216547,123.87145,133.646744,139.933068,I,Above,Hip,0,5701,Wood,30.06440434,0,0,,,,1,1,,0.03,nav,1,1959,1,, 6593,NJBF000071631,1205 N MICHIGAN AVE,Atlantic City,NJ,39.37112365,-74.44345017,RES1,3001,,17,NE,1900,1900,3102,1,1,1513.848384,1513.848384,3505,NO,9.35,14.61,3,-1.79,6106,114.193351,123.852607,133.625529,139.920829,I,Above,Gable,0,5701,Wood,11.98067246,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6594,NJBF000071772,1238 N MICHIGAN AVE,Atlantic City,NJ,39.37158035,-74.4442262,RES1,3001,,17,NE,1960,1960,3102,1,1,1442.527842,1442.527842,3505,NO,18.57,32.27,3,6.82,6106,114.171317,123.833652,133.605078,139.901406,I,Above,Gable,0,5701,Wood,25.42229241,0,0,,,,1,1,,0.03,nav,1,1960,1,, 6595,NJBF000071658,1200 MONROE AVE,Atlantic City,NJ,39.37119129,-74.44317643,RES1,3001,,17,NE,1956,1956,3102,1,1,1484.336732,1484.336732,3505,NO,9.2,20.63,3,-2.13,6106,114.198503,123.856892,133.630266,139.924293,I,Above,Hip,0,5701,Wood,14.91727008,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6596,NJBF000071385,,Atlantic City,NJ,39.37043734,-74.44127149,RES1,3001,,NaN,NE,1900,0,3102,2,1,2338.085966,2338.085966,3505,NO,36.24,41.26,3,3.87,6106,114.248381,123.899573,133.676506,139.96634,I,Above,Gable,0,5701,Wood,38.74804447,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6597,NJBF000071470,1155 N MICHIGAN AVE,Atlantic City,NJ,39.37069403,-74.44315317,RES1,3001,,27,NE,1900,1900,3102,1,2,1026.347733,1026.347733,3505,NO,27.22,36.11,3,8.76,6106,114.204737,123.862561,133.636138,139.932037,I,Above,Gable,0,5701,Wood,31.66177901,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6598,NJBF000071447,2037 ERIE AVE,Atlantic City,NJ,39.37063312,-74.44457114,RES1,3001,,16,NE,1961,1961,3102,1,1,2159.8099,2159.8099,3505,NO,16.34,22.64,3,0.19,6106,114.174766,123.837377,133.608528,139.909875,I,Above,Hip,0,5701,Wood,19.48997963,0,0,,,,1,1,,0.03,nav,1,1961,1,, 6599,NJBF000071268,1120 N MICHIGAN AVE,Atlantic City,NJ,39.37000079,-74.44317021,RES1,3001,,17,NE,1900,1900,3102,1,1,1610.283656,1610.283656,3505,NO,18.16,32.88,3,0.73,6106,114.212392,123.869574,133.643341,139.942034,I,Above,Hip,0,5701,Wood,25.52179262,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6600,NJBF000071229,1105 N MICHIGAN AVE,Atlantic City,NJ,39.36983628,-74.44260638,RES1,3001,,17,NE,1900,1900,3102,1,1,1538.213884,1538.213884,3505,NO,14.79,27.06,3,0.33,6106,114.226502,123.881592,133.656385,139.953615,I,Above,Hip,0,5701,Wood,20.92538634,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6601,NJBF000071786,1226 MONROE AVE,Atlantic City,NJ,39.37162068,-74.44345463,RES1,3001,,17,NE,1956,1956,3102,1,1,1370.818136,1370.818136,3505,NO,18.59,23.8,3,5.76,6106,114.18752,123.847267,133.620013,139.913369,I,Above,Hip,0,5701,Wood,21.1944244,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6602,NJBF000071225,1112 N MICHIGAN AVE,Atlantic City,NJ,39.36982575,-74.44308109,RES1,3001,,17,NE,1958,1958,3102,1,1,1775.754126,1775.754126,3505,NO,19.42,33.61,3,5.3,6106,114.216346,123.873045,133.647019,139.946069,I,Above,Hip,0,5701,Wood,26.51233909,0,0,,,,1,1,,0.03,nav,1,1958,1,, 6603,NJBF000071516,2017 ERIE AVE,Atlantic City,NJ,39.37080653,-74.44415454,RES1,3001,,17,NE,1955,1955,3102,1,1,1427.569071,1427.569071,3505,NO,20.24,33.48,3,1.43,6106,114.181759,123.843114,133.614923,139.914062,I,Above,Hip,0,5701,Wood,26.86102828,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6604,NJBF000071661,1151 N OHIO AVE,Atlantic City,NJ,39.37119732,-74.44188348,RES1,3001,,17,NE,1960,1960,3102,1,1,1343.753102,1343.753102,3505,NO,18.89,29.02,3,0.86,6106,114.226377,123.880394,133.656018,139.945209,I,Above,Hip,0,5701,Wood,23.95302424,0,0,,,,1,1,,0.03,nav,1,1960,1,, 6605,NJBF000071745,1218 MONROE AVE,Atlantic City,NJ,39.37147822,-74.44336316,RES1,3001,,17,NE,1956,1956,3102,1,1,1231.781246,1231.781246,3505,NO,14.59,27.14,3,-2.81,6106,114.191154,123.850453,133.623407,139.916991,I,Above,Flat,0,5701,Wood,20.86706838,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6606,NJBF000071282,1142 EMERSON PL,Atlantic City,NJ,39.37005521,-74.44421013,RES1,3001,,17,NE,1900,1900,3102,1,1,1137.28508,1137.28508,3505,NO,23.14,31.82,3,5.86,6106,114.189266,123.850062,133.62202,139.924347,I,Above,Gable,0,5701,Wood,27.48052116,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6607,NJBF000071535,1124 JEFFERSON PL,Atlantic City,NJ,39.37084929,-74.44117846,RES1,3001,,NaN,NE,1968,0,3102,2,1,1750.60271,1750.60271,3505,NO,38.21,43.89,3,2.95,6106,114.245622,123.896919,133.673888,139.96177,I,Above,Hip,0,5701,Wood,41.05323345,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6608,NJBF000071876,1215 N OHIO AVE,Atlantic City,NJ,39.37187512,-74.44231364,RES1,3001,,17,NE,1950,1950,3102,1,1,2188.288505,2188.288505,3505,NO,15.77,22.19,3,5.04,6106,114.209259,123.865381,133.640028,139.928178,I,Above,Hip,0,5701,Wood,18.98346729,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6609,NJBF000071908,1200 N INDIANA AVE,Atlantic City,NJ,39.37195329,-74.44135976,RES1,3001,,17,NE,1980,1980,3102,2,1,2680.681351,2680.681351,3505,NO,36.28,43.63,3,5.95,6106,114.228965,123.881953,133.658245,139.942529,I,Above,Hip,0,5701,Wood,39.95515953,0,0,,,,1,1,,0.03,nav,1,1980,2,, 6610,NJBF000071838,1229 MONROE AVE,Atlantic City,NJ,39.37177156,-74.44310558,RES1,3001,,17,NE,1900,1900,3102,1,1,1321.60691,1321.60691,3505,NO,14.53,21.05,3,0.65,6106,114.193328,123.852032,133.625333,139.916814,I,Above,Flat,0,5701,Wood,17.78908672,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6611,NJBF000071956,1210 N INDIANA AVE,Atlantic City,NJ,39.37209313,-74.4414049,RES1,3001,,17,NE,1900,1900,3102,1,1,1630.935393,1630.935393,3505,NO,13.2,27.29,3,1.65,6106,114.226385,123.879656,133.655822,139.93973,I,Above,Gable,0,5701,Wood,20.24313285,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6612,NJBF000071482,2027 ERIE AVE,Atlantic City,NJ,39.3707245,-74.444371,RES1,3001,,17,NE,1900,1900,3102,1,1,1257.733983,1257.733983,3505,NO,13.73,24.82,3,1.5,6106,114.178032,123.840047,133.611511,139.911764,I,Above,Hip,0,5701,Wood,19.27811312,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6613,NJBF000071960,1222 PENROSE AVE,Atlantic City,NJ,39.37210438,-74.44201699,RES1,3001,,17,NE,1900,1900,3102,1,1,1227.850858,1227.850858,3505,NO,17.73,22.86,3,2.82,6106,114.213043,123.86838,133.643468,139.92962,I,Above,Gable,0,5701,Wood,20.29650745,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6614,NJBF000071944,1250 MONROE AVE,Atlantic City,NJ,39.37205488,-74.44374984,RES1,3001,,17,NE,1900,1900,3102,1,1,1254.835968,1254.835968,3505,NO,14.23,26.63,3,-1.81,6106,114.176156,123.837308,133.609393,139.90211,I,Above,Gable,0,5701,Wood,20.42973281,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6615,NJBF000071410,1129 MONROE AVE,Atlantic City,NJ,39.3705095,-74.4422505,RES1,3001,,17,NE,1900,1900,3102,1,1,1183.505678,1183.505678,3505,NO,13.67,19.45,3,2.14,6106,114.226375,123.880951,133.656152,139.949412,I,Above,Flat,0,5701,Wood,16.55962017,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6616,NJBF000071010,1101 BEACH AVE,Atlantic City,NJ,39.3691295,-74.44426583,RES1,3001,,17,NE,1996,1996,3102,1,1,1374.276158,1374.276158,3505,NO,14.37,24.74,3,-2.3,6106,114.198807,123.858837,133.630986,139.937197,I,Above,Flat,0,5701,Wood,19.55927252,0,0,,,,1,1,,0.03,nav,1,1996,1,, 6617,NJBF000072584,,Atlantic City,NJ,39.37417131,-74.44357004,RES1,3001,,NaN,NE,1969,0,3102,2,1,2664.488075,2664.488075,3505,NO,46.15,58.89,3,8.9,6112,114.155892,123.818259,133.589881,139.873586,I,Above,Hip,0,5701,Wood,52.51898822,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6618,NJBF000072298,1325 N OHIO AVE,Atlantic City,NJ,39.37320576,-74.44319329,RES1,3001,,17,NE,1960,1960,3102,2,1,1422.017531,1422.017531,3505,NO,41.46,51.07,3,6.81,6106,114.175023,123.835312,133.607955,139.894106,I,Above,Hip,0,5701,Wood,46.26554756,0,0,,,,1,1,,0.03,nav,1,1960,2,, 6619,NJBF000072190,1310 N OHIO AVE,Atlantic City,NJ,39.37283394,-74.44347724,RES1,3001,,16,NE,1900,1900,3102,1,1,1081.758283,1081.758283,3505,NO,15.65,28.28,3,3.28,6106,114.173135,123.83406,133.606343,139.89499,I,Above,Gable,0,5701,Wood,21.96626105,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6620,NJBF000071244,1935 ONTARIO AVE,Atlantic City,NJ,39.36990269,-74.44233815,RES1,3001,,17,NE,1900,1900,3102,1,1,1701.401501,1701.401501,3505,NO,11.34,18.01,3,-0.79,6106,114.231518,123.885767,133.661004,139.956962,I,Above,Gable,0,5701,Wood,14.67616152,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6621,NJBF000071738,1822 ERIE AVE,Atlantic City,NJ,39.37144974,-74.44163032,RES1,3001,,17,NE,1900,1900,3102,1,1,2872.093284,2872.093284,3505,NO,11.51,24.56,3,0.63,6106,114.228925,123.882336,133.658321,139.945575,I,Above,Hip,0,5701,Wood,18.03486232,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6622,NJBF000071826,1823 ERIE AVE,Atlantic City,NJ,39.37174033,-74.44183711,RES1,3001,,17,NE,1900,1900,3102,1,1,1952.37508,1952.37508,3505,NO,19.15,32.65,3,2.4,6106,114.221115,123.875502,133.651028,139.937929,I,Above,Hip,0,5701,Wood,25.89996831,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6623,NJBF000071739,1223 N MICHIGAN AVE,Atlantic City,NJ,39.3714552,-74.44365544,RES1,3001,,27,NE,1900,1900,3102,1,2,945.1537684,945.1537684,3505,NO,15.37,21.31,3,0.96,6106,114.185105,123.845376,133.617831,139.912576,I,Above,Gable,0,5701,Wood,18.34020919,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6624,NJBF000072027,1222 N INDIANA AVE,Atlantic City,NJ,39.37233496,-74.44157935,RES1,3001,,17,NE,1900,1900,3102,2,1,1693.062691,1693.062691,3505,NO,39.86,53.98,3,6.55,6106,114.21985,123.87393,133.649708,139.933327,I,Above,Gable,0,5701,Wood,46.92185896,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6625,NJBF000071550,2009 ERIE AVE,Atlantic City,NJ,39.37090029,-74.4439728,RES1,3001,,17,NE,1900,1900,3102,2,1,1514.982883,1514.982883,3505,NO,27.96,34.38,3,-0.13,6106,114.184623,123.845446,133.617538,139.915643,I,Above,Gable,0,5701,Wood,31.17052629,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6626,NJBF000071615,2036 HORACE BRYANT JR DR,Atlantic City,NJ,39.37106908,-74.44447741,RES1,3001,,17,NE,1900,1900,3102,1,1,1348.391282,1348.391282,3505,NO,25.67,38.38,3,7.86,6106,114.17177,123.83448,133.605647,139.904917,I,Above,Gable,0,5701,Wood,32.02795976,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6627,NJBF000071725,1138 N INDIANA AVE,Atlantic City,NJ,39.37140399,-74.44090881,RES1,3001,,17,NE,1900,1900,3102,1,1,1320.788452,1320.788452,3505,NO,21.97,28.92,3,2.87,6106,114.245023,123.895969,133.673233,139.957943,I,Above,Gable,0,5701,Wood,25.4456107,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6628,NJBF000071371,1124 N OHIO AVE,Atlantic City,NJ,39.37038012,-74.44181301,RES1,3001,,17,NE,1900,1900,3102,2,1,679.9878022,679.9878022,3505,NO,20.87,29.27,3,-2.73,6106,114.237333,123.890295,133.6663,139.958412,I,Above,Flat,0,5701,Wood,25.06835455,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6629,NJBF000071712,1226 N MICHIGAN AVE,Atlantic City,NJ,39.37135489,-74.44408773,RES1,3001,,17,NE,1960,1960,3102,1,1,2255.799021,2255.799021,3505,NO,17.65,22.77,3,6.43,6106,114.176891,123.838543,133.610284,139.907005,I,Above,Hip,0,5701,Wood,20.20696552,0,0,,,,1,1,,0.03,nav,1,1960,1,, 6630,NJBF000071328,1118 MONROE AVE,Atlantic City,NJ,39.37022337,-74.44252083,RES1,3001,,17,NE,1900,1900,3102,1,1,1311.74844,1311.74844,3505,NO,21.2,29.7,3,8.13,6106,114.223851,123.879052,133.653873,139.949267,I,Above,Hip,0,5701,Wood,25.45249971,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6631,NJBF000071985,1258 MONROE AVE,Atlantic City,NJ,39.3721955,-74.4438485,RES1,3001,,17,NE,1900,1900,3102,1,1,1165.873368,1165.873368,3505,NO,20.81,34.51,3,8.27,6106,114.172409,123.834025,133.60589,139.898412,I,Above,Gable,0,5701,Wood,27.65939838,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6632,NJBF000071487,1118 JEFFERSON PL,Atlantic City,NJ,39.3707349,-74.44106571,RES1,3001,,17,NE,1960,1960,3102,2,1,1228.032341,1228.032341,3505,NO,30.62,38.49,3,-0.47,6106,114.249359,123.900164,133.677365,139.965262,I,Above,Hip,0,5701,Wood,34.55541139,0,0,,,,1,1,,0.03,nav,1,1960,2,, 6633,NJBF000072299,1306 PENROSE AVE,Atlantic City,NJ,39.37320634,-74.44273985,RES1,3001,,17,NE,1963,1963,3102,1,1,1352.13627,1352.13627,3505,NO,12.08,17.96,3,-1.9,6106,114.184809,123.843571,133.617007,139.901508,I,Above,Gable,0,5701,Wood,15.0224535,0,0,,,,1,1,,0.03,nav,1,1963,1,, 6634,NJBF000070837,1005 N MICHIGAN AVE,Atlantic City,NJ,39.36858207,-74.44167782,RES3A,3001,,33,NE,1925,1925,3301,2,1,1027.549407,1027.549407,3505,YES,23.91,38.4,3,-1.05,6106,114.261167,123.91175,133.688517,139.987114,I,Above,Gable,0,5701,Wood,31.15684811,0,0,,,,1,1,,0.03,nav,1,1925,2,, 6635,NJBF000067809,3114 ARCTIC AVE,Atlantic City,NJ,39.35460673,-74.45044933,COM8,3004,730,NaN,ME,1969,0,3401,1,1,6339.001225,6339.001225,3507,YES,16.69,29.75,1,2.28,6106,114.239413,123.901289,133.666023,140.054155,I,Above,Flat,0,NaN,Wood,23.21772397,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6636,NJBF000067826,26 N MONTPELIER AVE,Atlantic City,NJ,39.35465756,-74.451101,COM8,3004,643,NaN,ME,1969,0,3401,3,2,1491.367873,1491.367873,3507,YES,41.35,54.88,1,1.04,6106,114.224577,123.888949,133.652662,140.043127,I,Above,Gable,0,NaN,Wood,48.11337969,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6637,NJBF000067900,22 S TEXAS AVE,Atlantic City,NJ,39.35486961,-74.44280193,COM1,3003,,NaN,ME,1969,0,3401,2,1,13958.93075,13958.93075,3507,NO,25.44,33.14,1,1.38,6106,114.402259,124.036951,133.813943,140.169656,I,Above,Flat,0,NaN,Wood,29.290518,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6638,NJBF000067407,1 N SOVEREIGN AVE,Atlantic City,NJ,39.35336173,-74.45055595,COM1,3003,,45,ME,1969,1900,3401,2,4,2639.155544,2639.155544,3507,YES,29.63,43.39,1,-0.08,6106,114.252631,123.912714,133.677349,140.07091,I,Above,Hip,0,NaN,Wood,36.50813883,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6639,NJBF000067365,3215 ATLANTIC AVE,Atlantic City,NJ,39.35336173,-74.45055595,COM1,3003,649,NaN,ME,1969,0,3401,1,1,1678.883459,1678.883459,3507,NO,18.59,32.07,1,1.47,6106,114.252631,123.912714,133.677349,140.07091,I,Above,Hip,0,NaN,Wood,25.32549219,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6640,NJBF000067370,3211 ATLANTIC AVE,Atlantic City,NJ,39.35336173,-74.45055595,COM1,3003,560,NaN,ME,1969,0,3401,2,1,869.7752533,869.7752533,3507,YES,21.62,28,1,-0.96,6106,114.252631,123.912714,133.677349,140.07091,I,Above,Hip,0,NaN,Wood,24.8120871,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6641,NJBF000067406,3207 ATLANTIC AVE,Atlantic City,NJ,39.35336173,-74.45055595,COM1,3003,560,NaN,ME,1969,0,3401,1,1,4889.603836,4889.603836,3507,NO,14.88,28.19,1,1.57,6106,114.252631,123.912714,133.677349,140.07091,I,Above,Hip,0,NaN,Wood,21.53471841,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6642,NJBF000067430,3203 ATLANTIC AVE,Atlantic City,NJ,39.35336173,-74.45055595,COM1,3003,100,NaN,ME,1969,0,3401,3,1,2844.854136,2844.854136,3507,YES,39.04,46.98,1,2.78,6106,114.252631,123.912714,133.677349,140.07091,I,Above,Hip,0,NaN,Wood,43.00787012,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6643,NJBF000067417,3205 ATLANTIC AVE,Atlantic City,NJ,39.35336173,-74.45055595,COM1,3003,649,NaN,ME,1969,0,3401,3,1,2443.75997,2443.75997,3507,YES,55.19,69.43,1,2.86,6106,114.252631,123.912714,133.677349,140.07091,I,Above,Hip,0,NaN,Wood,62.30952493,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6644,NJBF000069261,2414 FAIRMOUNT AVE,Atlantic City,NJ,39.35940265,-74.44330421,COM3,3001,210,NaN,ME,1969,0,3401,1,1,4946.401322,4946.401322,3507,NO,16.17,26.21,1,0.29,6106,114.335548,123.979528,133.755354,140.095992,I,Above,Flat,0,NaN,Wood,21.19134834,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6645,NJBF000067063,3607 VENTNOR AVE,Atlantic City,NJ,39.35191126,-74.45473284,COM3,3003,210,NaN,ME,1969,0,3401,1,1,2250.751898,2250.751898,3507,YES,13.96,28.56,1,2.33,6106,114.179787,123.852857,133.611165,140.026864,I,Above,Flat,0,NaN,Wood,21.2607545,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6646,NJBF000069354,2419 FAIRMOUNT AVE,Atlantic City,NJ,39.35980784,-74.44315659,COM3,3001,,45,ME,1900,1900,3401,2,2,1086.527393,1086.527393,3507,YES,26.08,38.4,1,1.42,6106,114.3338,123.977887,133.753909,140.092388,I,Above,Flat,0,NaN,Wood,32.24152514,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6647,NJBF000069348,2425 FAIRMOUNT AVE,Atlantic City,NJ,39.35978149,-74.44338021,COM4,3001,100,NaN,ME,1969,0,3401,2,1,3301.201869,3301.201869,3507,YES,40.76,47.96,1,2.7,6106,114.329297,123.974126,133.749778,140.08927,I,Above,Flat,0,NaN,Wood,44.35908454,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6648,NJBF000068024,430 N ELBERON AVE,Atlantic City,NJ,39.35537537,-74.46204193,RES1,3001,,17,NE,1900,1900,3102,1,1,1902.367818,1902.367818,3505,NO,19.46,32.52,3,6.31,6106,113.976543,123.683642,133.430877,139.856692,I,Above,Flat,0,5701,Wood,25.98792402,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6649,NJBF000068073,460 N ELBERON AVE,Atlantic City,NJ,39.35553303,-74.46218903,RES1,3001,,16,NE,1900,1900,3102,1,1,1222.117985,1222.117985,3505,NO,20.69,35.06,3,8.02,6106,113.97136,123.679287,133.426287,139.851834,I,Above,Gable,0,5701,Wood,27.87492935,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6650,NJBF000068009,426 HARBOR RD,Atlantic City,NJ,39.355305,-74.462469,RES1,3001,,17,NE,1900,1900,3102,2,1,985.7382736,985.7382736,3505,YES,39.19,47.86,3,8.18,6106,113.968049,123.676697,133.423329,139.850788,I,Above,Hip,0,5701,Wood,43.52794726,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6651,NJBF000068065,455 N ELBERON AVE,Atlantic City,NJ,39.35551203,-74.46159994,RES1,3001,,17,NE,1954,1954,3102,1,1,1434.981249,1434.981249,3505,NO,10.31,17.51,3,-2.93,6106,113.984533,123.690136,133.437989,139.861795,I,Above,Gable,0,5701,Wood,13.91106729,0,0,,,,1,1,,0.03,nav,1,1954,1,, 6652,NJBF000067955,,Atlantic City,NJ,39.3551337,-74.46184055,RES1,3001,,NaN,NE,1969,0,3102,2,1,1019.254663,1019.254663,3505,NO,28.29,34.73,3,-2.19,6106,113.983941,123.689865,133.437425,139.863714,I,Above,Gable,0,5701,Wood,31.50995568,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6653,NJBF000068043,464 HARBOR RD,Atlantic City,NJ,39.35543267,-74.46257251,RES1,3001,,16,NE,1900,1900,3102,1,1,1219.341288,1219.341288,3505,NO,16.39,28.57,3,1.55,6106,113.96418,123.673441,133.419905,139.847095,I,Above,Gable,0,5701,Wood,22.4783783,0,0,,,,1,1,,0.03,nav,1,1900,1,, 6654,NJBF000068101,464 N ELBERON AVE,Atlantic City,NJ,39.3556235,-74.4622985,RES1,3001,,17,NE,1900,1900,3102,2,1,881.7203564,881.7203564,3505,NO,36.45,49.32,3,8.2,6106,113.967821,123.676323,133.42315,139.848619,I,Above,Gable,0,5701,Wood,42.88582542,0,0,,,,1,1,,0.03,nav,1,1900,2,, 6655,NJBF000068134,4000 FILBERT AVE,Atlantic City,NJ,39.35572505,-74.46238983,RES1,3001,,17,NE,1955,1955,3102,1,1,1419.381968,1419.381968,3505,NO,9.69,16.28,3,-1.9,6106,113.964574,123.673593,133.420274,139.845558,I,Above,Gable,0,5701,Wood,12.98591292,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6656,NJBF000071785,1630 N ALBANY AVE,Atlantic City,NJ,39.37161604,-74.47909163,RES4,3003,530,NaN,ME,1969,0,3401,2,1,2874.383743,2874.383743,3507,YES,34.01,40.27,1,0.92,6106,113.408755,123.202048,132.919564,139.305358,I,Above,Flat,0,NaN,Wood,37.14259319,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6657,NJBF000070025,1100 N ALBANY AVE,Atlantic City,NJ,39.3655215,-74.4710095,GOV1,3003,,NaN,E,1969,0,3401,1,1,1255.664944,1255.664944,3507,NO,11.62,19.93,1,-0.85,6110,113.656984,123.412848,133.144515,139.545568,I,Above,Flat,0,NaN,Wood,15.77502968,0,0,,,,1,1,,1,nav,1,1969,1,, 6658,NJBF000070039,1125 ALBANY AVE,Atlantic City,NJ,39.365556,-74.470106,COM1,3003,210,NaN,ME,1969,0,3401,1,1,1449.761117,1449.761117,3507,NO,18.93,24.17,1,0.07,6106,113.676447,123.428751,133.161674,139.560656,I,Above,Flat,0,NaN,Wood,21.5460987,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6659,NJBF000070083,1125 ALBANY AVE,Atlantic City,NJ,39.36571646,-74.47024074,COM1,3003,210,NaN,ME,1969,0,3401,1,1,1417.781543,1417.781543,3507,NO,16.2,27.25,1,-0.71,6106,113.671601,123.424602,133.157269,139.555779,I,Above,Flat,0,NaN,Wood,21.72842473,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6660,NJBF000069825,ALBANY AVE,Atlantic City,NJ,39.36432571,-74.46935353,GOV1,3003,760,NaN,E,1969,0,3401,1,1,1251.981732,1251.981732,3507,NO,12.56,23.08,1,1.93,6106,113.707472,123.455501,133.189964,139.593153,I,Above,Gable,0,NaN,Wood,17.81891874,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6661,NJBF000076747,304 29TH STREET SO,Brigantine,NJ,39.3946476,-74.38335171,RES1,3001,,16,NE,1958,1958,3102,2,1,2374.401933,2374.401933,3507,NO,35.95,46.09,1,-0.48,6106,115.19865,124.720242,134.607442,140.552476,I,Above,Flat,0,5701,Wood,41.01907403,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 6662,NJBF000078331,117 12TH STREET SO,Brigantine,NJ,39.40478555,-74.37292084,RES1,3001,,15,NE,1950,1950,3102,2,1,1818.980493,1818.980493,3505,NO,32.83,42.47,3,1.33,6106,115.303003,124.815139,134.721567,140.586512,I,Above,Hip,0,5701,Wood,37.65467865,0,0,,,,1,1,,0.03,nav,1,1950,2,, 6663,NJBF000077993,323 12TH STREET SO,Brigantine,NJ,39.40217618,-74.37051873,RES1,3001,,19,NE,2008,2008,3102,3,1,1619.336001,1619.336001,3502,NO,40.82,51.92,5,5.55,6106,115.379617,124.886524,134.800504,140.657492,I,Above,Hip,0,5701,Wood,46.37095544,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 6664,NJBF000076799,3943 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3948475,-74.3972315,RES1,3001,,47,NE,1997,1997,3102,3,2,3055.902695,3055.902695,3507,YES,39.42,50.64,1,0.45,6106,114.909745,124.458543,134.313859,140.330037,I,Above,Gable,0,5701,Wood,45.02992381,0,1.2,,,,1,1,,0.03,nav,1,1997,3,, 6665,NJBF000074714,11 HUDSON COVE,Brigantine,NJ,39.38753797,-74.39629697,RES1,3001,,16,NE,1968,1968,3102,2,1,1582.19943,1582.19943,3507,NO,36.54,50.99,1,1.25,6112,115.008946,124.550411,134.411168,140.442525,I,Above,Hip,0,5701,Wood,43.76175332,0,0,,,,1,1,,0.35,nav,1,1968,2,, 6666,NJBF000073094,5216 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37750766,-74.40624347,RES1,3001,,20,NE,2008,2008,3101,3,1,2517.40494,2517.40494,3507,NO,37.32,51.39,1,0.3,6106,114.913734,124.468658,134.311167,140.421408,I,Above,Hip,0,5701,Wood,44.3589516,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 6667,NJBF000075007,4503 HARBOR BEACH BLVD,Brigantine,NJ,39.38842155,-74.39774174,RES1,3001,,16,NE,1968,1968,3102,2,1,1848.058233,1848.058233,3507,NO,27.46,34.11,1,2.6,6106,114.969107,124.51451,134.371711,140.407974,I,Above,Gable,0,5701,Wood,30.78723018,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6668,NJBF000076649,4116 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39420925,-74.39982597,RES1,3001,,16,NE,1957,1957,3102,1,1,1741.939084,1741.939084,3507,NO,17.4,31.86,1,0.77,6106,114.862703,124.416655,134.266537,140.297141,I,Above,Hip,0,5701,Wood,24.63089952,0,0,,,,1,1,,0.03,nav,1,1957,1,, 6669,NJBF000077041,404 22ND STREET SO,Brigantine,NJ,39.39605527,-74.37686411,RES1,3001,,17,NE,1955,1955,3102,2,1,2607.634807,2607.634807,3507,NO,31.28,42.13,1,1.91,6106,115.316363,124.827938,134.729841,140.635998,I,Above,Hip,0,5701,Wood,36.70707309,0,0,,,,1,1,,0.03,nav,1,1955,2,, 6670,NJBF000076014,227 39TH STREET SO,Brigantine,NJ,39.39195514,-74.39192268,RES1,3001,,45,NE,1975,1975,3102,2,2,1822.850966,1822.850966,3507,NO,37.86,47.14,1,0.03,6106,115.051174,124.587066,134.455761,140.452824,I,Above,Gable,0,5701,Wood,42.49945715,0,0,,,,1,1,,0.03,nav,1,1975,2,, 6671,NJBF000076122,214 38TH STREET SO,Brigantine,NJ,39.39230634,-74.39190046,RES1,3001,,16,NE,1950,1950,3102,1,1,1452.656628,1452.656628,3507,NO,15.16,25.44,1,2.99,6106,115.047819,124.583936,134.452521,140.448547,I,Above,Hip,0,5701,Wood,20.3015897,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6672,NJBF000074951,36 SHIPMASTER DR,Brigantine,NJ,39.38827458,-74.40175717,RES1,3001,,16,NE,1970,1970,3102,2,1,1484.453177,1484.453177,3507,YES,25.55,36.51,1,1.24,6106,114.887002,124.441341,134.289793,140.346455,I,Above,Hip,0,5701,Wood,31.03331003,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 6673,NJBF000076280,344 32ND STREET SO,Brigantine,NJ,39.39283616,-74.38484882,RES1,3001,,16,NE,1955,1955,3102,1,1,1193.381064,1193.381064,3507,NO,12.44,26.19,1,0.15,6106,115.187619,124.710439,134.59499,140.55253,I,Above,Hip,0,5701,Wood,19.31594674,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6674,NJBF000077814,1905 REVERE BLVD,Brigantine,NJ,39.4010149,-74.37840223,RES1,3001,,16,NE,1956,1956,3101,2,1,2221.005922,2221.005922,3507,YES,28.16,34.5,1,2.23,6106,115.231445,124.749357,134.644867,140.548154,I,Above,Hip,0,5701,Wood,31.33017882,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 6675,NJBF000076854,2506 OCEAN AVE,Brigantine,NJ,39.39508401,-74.37938833,RES1,3001,,20,NE,2009,2009,3102,3,1,4174.045602,4174.045602,3507,NO,34.01,40.64,1,-0.62,6106,115.275264,124.790239,134.686586,140.608982,I,Above,Flat,0,5701,Wood,37.32194809,0,1.2,,,,1,1,,0.03,nav,1,2009,3,, 6676,NJBF000077477,103 26TH STREET SO,Brigantine,NJ,39.39891822,-74.38374712,RES1,3001,,16,NE,1951,1951,3102,1,1,1854.784061,1854.784061,3507,NO,16.34,30.07,1,0.97,6106,115.144416,124.669854,134.553884,140.490736,I,Above,Gable,0,5701,Wood,23.20650706,0,0,,,,1,1,,0.03,nav,1,1951,1,, 6677,NJBF000077411,315 20TH STREET SO,Brigantine,NJ,39.39846003,-74.37610456,RES1,3001,,16,NE,1953,1953,3102,1,1,2564.4215,2564.4215,3507,NO,19.32,25.93,1,0.91,6106,115.305812,124.818181,134.720667,140.617114,I,Above,Hip,0,5701,Wood,22.62546519,0,0,,,,1,1,,0.03,nav,1,1953,1,, 6678,NJBF000074052,36 DELMAR DRIVE,Brigantine,NJ,39.3846399,-74.40300921,RES1,3001,,33,NE,1980,1980,3102,2,1,7108.155643,7108.155643,3507,YES,30.78,40.06,1,-0.9,6110,114.901062,124.455304,134.302483,140.375741,I,Above,Gable,0,5701,Wood,35.41950816,0,0,,,,1,1,,0.35,nav,1,1980,2,, 6679,NJBF000076250,3119 OCEAN AVE,Brigantine,NJ,39.39273002,-74.38416265,RES1,3001,,16,NE,1960,1960,3102,2,1,1044.401088,1044.401088,3507,NO,32.69,47.12,1,0.3,6106,115.202903,124.724352,134.610549,140.564656,I,Above,Gable,0,5701,Wood,39.90304837,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 6680,NJBF000076852,,Brigantine,NJ,39.39505885,-74.39231003,RES1,3001,,NaN,NE,1925,0,3102,2,1,3546.990298,3546.990298,3507,NO,27.73,35.74,1,-0.91,6106,115.009461,124.54835,134.414654,140.405609,I,Above,Flat,0,5701,Wood,31.73204006,0,0,,,,1,1,,0.03,nav,1,1925,2,, 6681,NJBF000078337,1012 W BEACH AVE,Brigantine,NJ,39.40481522,-74.37167058,RES1,3001,,15,NE,1957,1957,3102,1,1,1564.582226,1564.582226,3505,NO,23.59,29.04,3,5.23,6106,115.32809,124.838495,134.747972,140.605897,I,Above,Gable,0,5701,Wood,26.31432444,0,0,,,,1,1,,0.03,nav,1,1957,1,, 6682,NJBF000076809,3849 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39488223,-74.39509157,RES1,3001,,15,NE,1930,1930,3102,2,1,1890.496575,1890.496575,3507,NO,36.97,48.62,1,0.93,6106,114.953761,124.49815,134.358249,140.363707,I,Above,Hip,0,5701,Wood,42.79378687,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 6683,NJBF000075780,314 37TH STREET SO,Brigantine,NJ,39.39108767,-74.38884399,RES1,3001,,15,NE,1948,1948,3102,1,1,918.5340907,918.5340907,3507,NO,19.38,31.86,1,2.78,6106,115.124361,124.653363,134.529463,140.512694,I,Above,Flat,0,5701,Wood,25.61876732,0,0,,,,1,1,,0.03,nav,1,1948,1,, 6684,NJBF000075511,109 44TH STREET SO,Brigantine,NJ,39.39010841,-74.39658687,RES1,3001,,16,NE,1968,1968,3102,2,1,1637.829329,1637.829329,3507,NO,36.16,48.38,1,2.89,6106,114.974608,124.518838,134.377881,140.403693,I,Above,Gable,0,5701,Wood,42.26990101,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 6685,NJBF000075747,265 40TH STREET SO,Brigantine,NJ,39.39097078,-74.39194857,RES1,3001,,43,NE,1955,1955,3102,2,2,1110.70293,1110.70293,3507,NO,33.63,45.39,1,0.17,6106,115.061401,124.59656,134.465638,140.465416,I,Above,Gable,0,5701,Wood,39.50961694,0,0,,,,1,1,,0.03,nav,1,1955,2,, 6686,NJBF000077832,1201 OCEAN AVE,Brigantine,NJ,39.40110602,-74.37023918,RES1,3001,,18,NE,1990,1990,3102,3,1,2837.2566,2837.2566,3502,NO,38.2,49.57,5,-2.19,6110,115.396783,124.902444,134.817748,140.675415,I,Above,Gable,0,5701,Wood,43.88522365,0,1.1,,,,1,1,,0.35,nav,1,1990,3,, 6687,NJBF000074835,30 SHIPMASTER DR,Brigantine,NJ,39.38791493,-74.40125241,RES1,3001,,16,NE,1976,1976,3102,2,1,1344.469962,1344.469962,3507,NO,35.7,43.61,1,1.68,6106,114.901508,124.454408,134.304113,140.359311,I,Above,Gable,0,5701,Wood,39.65179435,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 6688,NJBF000075683,,Brigantine,NJ,39.39069877,-74.38885796,RES1,3001,,NaN,NE,1969,0,3102,2,1,1726.744199,1726.744199,3507,NO,29.86,34.87,1,1.31,6106,115.128346,124.657036,134.533271,140.517574,I,Above,Hip,0,5701,Wood,32.36366724,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6689,NJBF000077094,,Brigantine,NJ,39.39647005,-74.37721751,RES1,3001,,NaN,NE,1969,0,3102,2,1,2367.555579,2367.555579,3507,NO,27.77,37.66,1,1.96,6106,115.304614,124.817133,134.71798,140.625148,I,Above,Hip,0,5701,Wood,32.71478669,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6690,NJBF000074542,75 SAILFISH DRIVE,Brigantine,NJ,39.38691228,-74.40250233,RES3B,3001,,35,ME,1987,1987,3301,3,1,4209.171662,4209.171662,3507,NO,41.36,47.87,1,2.13,6106,114.886458,124.441447,134.288847,140.353063,I,Above,Gable,0,5701,Wood,44.61762323,0,0,,,,1,1,,0.03,nav,1,1987,3,, 6691,NJBF000075454,4821 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.38993234,-74.41388832,RES1,3001,,18,NE,2003,2003,3103,3,1,2567.40016,2567.40016,3505,NO,59.26,67.23,3,3.44,6106,114.614599,124.199239,134.021072,140.129589,I,Above,Hip,0,5701,Wood,63.247637,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 6692,NJBF000077871,348 12TH STREET SO,Brigantine,NJ,39.40136734,-74.37045688,RES1,3001,,16,NE,1950,1950,3102,2,1,1175.488689,1175.488689,3502,NO,38.06,46.79,5,6.83,6106,115.389551,124.895734,134.810348,140.668699,I,Above,Gable,0,5701,Wood,42.42410443,0,0,,,,1,1,,0.03,nav,1,1950,2,, 6693,NJBF000077733,110 21ST STREET SO,Brigantine,NJ,39.40061191,-74.37986881,RES1,3001,,17,NE,2001,2001,3101,2,1,1824.327794,1824.327794,3507,NO,38.35,47.71,1,1.82,6106,115.205758,124.725767,134.618006,140.530155,I,Above,Gable,0,5701,Wood,43.0328757,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 6694,NJBF000073984,4 ALBERTA DRIVE,Brigantine,NJ,39.38430084,-74.40479836,RES3B,3001,,33,ME,1987,1987,3301,2,1,3093.153001,3093.153001,3507,NO,27.33,35.41,1,0.06,6106,114.867369,124.425608,134.269072,140.352118,I,Above,Gable,0,5701,Wood,31.36997646,0,0,,,,1,1,,0.03,nav,1,1987,2,, 6695,NJBF000077868,104 19TH STREET SO,Brigantine,NJ,39.40134846,-74.3783044,RES1,3001,,16,NE,1952,1952,3101,1,1,2224.799678,2224.799678,3507,YES,16.08,30.13,1,-0.34,6106,115.22989,124.747868,134.643414,140.545416,I,Above,Gable,0,5701,Wood,23.10248787,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 6696,NJBF000075453,111 44TH STREET SO,Brigantine,NJ,39.38993033,-74.39648907,RES1,3001,,16,NE,1968,1968,3102,1,1,1690.53805,1690.53805,3507,NO,16.66,31.22,1,1.34,6106,114.978597,124.522477,134.381815,140.407617,I,Above,Hip,0,5701,Wood,23.93741673,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 6697,NJBF000074199,14 LIGHTHOUSE DR,Brigantine,NJ,39.38534212,-74.40171496,RES1,3001,,43,NE,1980,1980,3102,2,2,1541.950514,1541.950514,3507,NO,39.97,47.52,1,2.24,6110,114.920315,124.472127,134.321842,140.386662,I,Above,Gable,0,5701,Wood,43.74738025,0,0,,,,1,1,,0.35,nav,1,1980,2,, 6698,NJBF000080777,716 LAFAYETTE BLVD,Brigantine,NJ,39.41626499,-74.379988,RES1,3001,,16,NE,1969,1969,3103,2,1,1689.088425,1689.088425,3505,YES,34.98,47.65,3,6.79,6106,115.04029,124.566246,134.446607,140.32547,I,Above,Gable,0,5701,Wood,41.31382648,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 6699,NJBF000081196,901 E SHORE DR,Brigantine,NJ,39.41796801,-74.36235933,RES1,3001,,16,NE,1960,1960,3102,2,1,829.2904675,829.2904675,3507,NO,31.77,44,1,1.38,6106,115.37873,124.885147,134.807476,140.588196,I,Above,Hip,0,5701,Wood,37.8821317,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 6700,NJBF000078076,1207 W BRIGANTINE AVE,Brigantine,NJ,39.40275601,-74.37182127,COM8,3001,,NaN,ME,1969,0,3401,2,1,2495.568658,2495.568658,3507,YES,28.51,40.68,1,0.66,6106,115.346961,124.856151,134.766575,140.629679,I,Above,Flat,0,NaN,Wood,34.59515936,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6701,NJBF000081341,1 12TH STREET NO,Brigantine,NJ,39.41873718,-74.36196055,RES1,3001,,17,NE,1985,1985,3102,2,2,2440.534385,2440.534385,3507,NO,22.55,35.09,1,-0.66,6106,115.378814,124.885157,134.807772,140.584964,I,Above,Flat,0,5701,Wood,28.82211615,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 6702,NJBF000080279,45 CUMMINGS PLACE,Brigantine,NJ,39.41454384,-74.37418003,RES1,3001,,16,NE,1972,1972,3102,2,1,1390.629121,1390.629121,3507,NO,39.15,44.69,1,0.91,6106,115.175636,124.693836,134.589766,140.441741,I,Above,Gable,0,5701,Wood,41.92054098,0,0,,,,1,1,,0.03,nav,1,1972,2,, 6703,NJBF000077582,301 19TH STREET SO,Brigantine,NJ,39.3996181,-74.37606598,RES1,3001,,17,NE,1987,1987,3102,2,1,1867.112631,1867.112631,3507,NO,38.12,52.44,1,1.51,6106,115.29413,124.807345,134.709286,140.60291,I,Above,Gable,0,5701,Wood,45.28255753,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 6704,NJBF000076745,2604 OCEAN AVE,Brigantine,NJ,39.39464091,-74.38018189,RES1,3001,,16,NE,1952,1952,3102,1,1,1684.201075,1684.201075,3507,NO,15.51,22.95,1,-0.73,6106,115.263815,124.779776,134.674451,140.60226,I,Above,Gable,0,5701,Wood,19.23209268,0,0,,,,1,1,,0.03,nav,1,1952,1,, 6705,NJBF000074449,305 DOLPHIN DR,Brigantine,NJ,39.38647883,-74.39440413,RES1,3001,,19,NE,1997,1997,3102,3,1,2105.546319,2105.546319,3507,YES,37.53,51.54,1,2.72,6110,115.060064,124.59642,134.46179,140.48628,I,Above,Gable,0,5701,Wood,44.53359219,0,0,,,,1,1,,0.35,nav,1,1997,3,, 6706,NJBF000074417,302 DOLPHIN DRIVE,Brigantine,NJ,39.38633026,-74.39413387,RES1,3001,,17,NE,2001,2001,3102,2,1,2120.174583,2120.174583,3507,NO,34.43,47.26,1,1.2,6110,115.067334,124.60296,134.468987,140.492477,I,Above,Gable,0,5701,Wood,40.8447082,0,1.1,,,,1,1,,0.35,nav,1,2001,2,, 6707,NJBF000079560,114 6TH STREET NO,Brigantine,NJ,39.4116885,-74.3614065,RES1,3001,,17,NE,1956,2017,3102,2,1,840.5875329,840.5875329,3507,NO,39.64,46.33,1,2,6106,115.463031,124.965318,134.895502,140.681611,I,Above,Gable,0,5701,Wood,42.98661597,0,0,,,,1,1,,0.03,nav,1,1956,2,, 6708,NJBF000076245,,Brigantine,NJ,39.39271542,-74.38836517,RES1,3001,,NaN,NE,1969,0,3102,2,1,2280.831215,2280.831215,3507,NO,31.41,39.54,1,-0.4,6106,115.116442,124.645865,134.522337,140.498885,I,Above,Flat,0,5701,Wood,35.47223587,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6709,NJBF000076338,3700 BAYSHORE AVE,Brigantine,NJ,39.39304327,-74.39166188,RES1,3001,,15,NE,1965,1965,3102,1,1,1451.413264,1451.413264,3507,NO,18.13,26.66,1,0.86,6106,115.044717,124.580909,134.449687,140.442564,I,Above,Hip,0,5701,Wood,22.39686321,0,0,,,,1,1,,0.03,nav,1,1965,1,, 6710,NJBF000076213,224 37TH STREET SO,Brigantine,NJ,39.39260753,-74.39103316,RES1,3001,,17,NE,1954,1954,3102,2,2,2003.415394,2003.415394,3507,YES,40.26,49.3,1,2.79,6106,115.062469,124.597072,134.467487,140.458245,I,Above,Hip,0,5701,Wood,44.77818105,0,0,,,,1,1,,0.03,nav,1,1954,2,, 6711,NJBF000080762,807 W SHORE DR,Brigantine,NJ,39.4162045,-74.38228683,RES1,3001,,18,NE,2012,2012,3103,3,1,1879.179481,1879.179481,3505,NO,43.21,55.4,3,5,6106,114.994196,124.523246,134.398169,140.288788,I,Above,Hip,0,5701,Wood,49.30281862,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 6712,NJBF000075131,16 GULL COVE,Brigantine,NJ,39.38879204,-74.40540304,RES3B,3001,,35,ME,1984,1984,3301,2,1,3893.368479,3893.368479,3507,YES,25.59,33.44,1,0.18,6106,114.805098,124.368316,134.208654,140.281486,I,Above,Gable,0,5701,Wood,29.51733435,0,0,,,,1,1,,0.03,nav,1,1984,2,, 6713,NJBF000081006,821 W SHORE DR,Brigantine,NJ,39.41719973,-74.38247846,RES1,3001,,16,NE,1968,1968,3103,2,1,1195.800215,1195.800215,3505,YES,37.95,49.68,3,7.78,6106,114.980247,124.509569,134.383145,140.272669,I,Above,Gable,0,5701,Wood,43.81541777,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6714,NJBF000081000,908 SARAZEN RD,Brigantine,NJ,39.41717155,-74.37814948,RES1,3001,,16,NE,1968,1968,3103,2,1,3342.573408,3342.573408,3505,YES,31.92,39.76,3,7.01,6106,115.068398,124.592045,134.476015,140.343649,I,Above,Gable,0,5701,Wood,35.84124703,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6715,NJBF000074567,,Brigantine,NJ,39.38704237,-74.40024981,RES1,3001,,NaN,NE,1969,0,3102,2,1,1428.014437,1428.014437,3507,NO,24.49,37.6,1,2.21,6110,114.932061,124.481954,134.334201,140.386895,I,Above,Gable,0,5701,Wood,31.04726151,0,0,,,,1,1,,0.35,nav,1,1969,2,, 6716,NJBF000076489,,Brigantine,NJ,39.39360015,-74.40278036,RES3D,3001,,NaN,E,1969,0,3303,3,1,5335.638936,5335.638936,3507,NO,34.3,46.94,1,0,6106,114.807732,124.367836,134.211537,140.258045,I,Above,Gable,0,NaN,Wood,40.62138968,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6717,NJBF000075299,,Brigantine,NJ,39.38940245,-74.39044085,RES1,3001,,NaN,NE,1969,0,3102,2,1,1273.312084,1273.312084,3507,NO,32.97,41.31,1,-0.53,6110,115.109885,124.640609,134.513773,140.509784,I,Above,Gable,0,5701,Wood,37.14066925,0,0,,,,1,1,,0.35,nav,1,1969,2,, 6718,NJBF000075648,,Brigantine,NJ,39.39060789,-74.386062,RES3C,3001,,NaN,E,1969,0,3303,4,1,2174.650748,2174.650748,3507,NO,50,64.86,1,2.58,6106,115.187079,124.710208,134.592912,140.56254,I,Above,Flat,0,NaN,Wood,57.42737434,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6719,NJBF000076026,329 35TH STREET SO,Brigantine,NJ,39.3919895,-74.386935,RES1,3001,,43,NE,1954,1954,3102,2,2,1371.212016,1371.212016,3507,NO,22.77,29.68,1,1.29,6106,115.153886,124.679935,134.56003,140.530844,I,Above,Flat,0,5701,Wood,26.2252063,0,0,,,,1,1,,0.03,nav,1,1954,2,, 6720,NJBF000075806,411 34TH STREET SO,Brigantine,NJ,39.39120483,-74.38476929,RES1,3001,,20,NE,2011,2011,3102,3,1,2090.078445,2090.078445,3507,NO,40.16,51.89,1,1.59,6106,115.207161,124.728371,134.613821,140.574982,I,Above,Hip,0,5701,Wood,46.02426012,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 6721,NJBF000075730,,Brigantine,NJ,39.39090409,-74.38681261,RES3C,3001,,NaN,E,1969,0,3303,4,1,2479.210199,2479.210199,3507,NO,68.42,81.02,1,0.15,6106,115.168326,124.693181,134.574027,140.546935,I,Above,Flat,0,NaN,Wood,74.72048755,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6722,NJBF000075136,44 SHIPMASTER DR,Brigantine,NJ,39.38880584,-74.40229905,RES1,3001,,16,NE,1970,1970,3102,2,1,1428.546455,1428.546455,3507,YES,35.44,47.33,1,-0.06,6106,114.86985,124.425835,134.272879,140.330683,I,Above,Gable,0,5701,Wood,41.38813195,0,0,,,,1,1,,0.03,nav,1,1970,2,, 6723,NJBF000075983,300 36TH STREET SO,Brigantine,NJ,39.39182783,-74.38855171,RES1,3001,,43,NE,1954,1954,3102,2,2,1387.16551,1387.16551,3507,NO,23.16,34.07,1,0.87,6106,115.12228,124.651336,134.527781,140.507576,I,Above,Hip,0,5701,Wood,28.6166983,0,0.1,,,,1,1,,0.03,nav,1,1954,2,, 6724,NJBF000074992,4506 WHALERMAN RD,Brigantine,NJ,39.38838874,-74.39902583,RES1,3001,,16,NE,1968,1968,3102,1,1,1613.317397,1613.317397,3507,NO,12.12,23.91,1,-0.95,6106,114.942722,124.490956,134.345339,140.388143,I,Above,Hip,0,5701,Wood,18.01402781,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 6725,NJBF000075290,,Brigantine,NJ,39.38936851,-74.39483083,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2717.598105,2717.598105,3507,NO,14.85,23.35,1,1.36,6106,115.019215,124.559079,134.422358,140.441245,I,Above,Gable,0,5701,Wood,19.10311401,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6726,NJBF000075705,109 SHIPMASTER DRIVE,Brigantine,NJ,39.39080929,-74.4030123,RES1,3001,,18,NE,1990,1990,3102,2,1,2135.836979,2135.836979,3507,YES,27.32,39.69,1,1.4,6106,114.833083,124.39208,134.236662,140.292207,I,Above,Hip,0,5701,Wood,33.50709689,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 6727,NJBF000075255,330 40TH STREET SO,Brigantine,NJ,39.3892454,-74.39023559,RES1,3001,,19,NE,2011,2011,3102,3,1,1916.943036,1916.943036,3507,NO,44.05,52.13,1,0.21,6110,115.115862,124.646024,134.519718,140.51506,I,Above,Hip,0,5701,Wood,48.0912335,0,1.1,,,,1,1,,0.35,nav,1,2011,3,, 6728,NJBF000075804,253 40TH STREET SO,Brigantine,NJ,39.391201,-74.392271,RES1,3001,,45,NE,1950,1950,3102,2,2,1505.235082,1505.235082,3507,NO,38.37,50.98,1,1.1,6106,115.052211,124.588217,134.456464,140.457303,I,Above,Gable,0,5701,Wood,44.67560834,0,0,,,,1,1,,0.03,nav,1,1950,2,, 6729,NJBF000075387,7 EXPLORER RD,Brigantine,NJ,39.38970295,-74.40021432,RES1,3001,,16,NE,1968,1968,3102,1,1,1822.49365,1822.49365,3507,NO,11.96,18.34,1,0.11,6106,114.903531,124.455438,134.306643,140.351677,I,Above,Gable,0,5701,Wood,15.15338525,0,0,,,,1,1,,0.03,nav,1,1968,1,, 6730,NJBF000076795,2600 OCEAN AVE,Brigantine,NJ,39.39483147,-74.37976871,RES1,3001,,19,NE,2007,2007,3102,3,1,2540.671455,2540.671455,3507,NO,46.09,54.08,1,0.99,6106,115.270212,124.785622,134.681186,140.606276,I,Above,Hip,0,5701,Wood,50.08482745,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 6731,NJBF000075434,4409 HARBOR BEACH BLVD,Brigantine,NJ,39.38985809,-74.39779553,RES1,3001,,16,NE,1968,1968,3102,1,1,2539.611873,2539.611873,3507,NO,15.48,23.27,1,0.61,6106,114.9522,124.498866,134.355334,140.387911,I,Above,Hip,0,5701,Wood,19.37469397,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 6732,NJBF000075259,4417 PRIVATEER RD,Brigantine,NJ,39.3892655,-74.39861452,RES1,3001,,16,NE,1968,1968,3102,2,1,1211.24905,1211.24905,3507,NO,25.26,34.9,1,-0.72,6106,114.941642,124.489655,134.344571,140.382882,I,Above,Gable,0,5701,Wood,30.08013031,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6733,NJBF000075822,,Brigantine,NJ,39.39127349,-74.38799084,RES1,3001,,NaN,NE,1969,0,3102,2,1,1173.438746,1173.438746,3507,NO,28.55,40.24,1,-0.83,6106,115.139953,124.667433,134.54541,140.523654,I,Above,Gable,0,5701,Wood,34.39574797,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6734,NJBF000075695,319 38TH STREET SO,Brigantine,NJ,39.39076385,-74.38903586,RES1,3001,,43,NE,1952,1952,3102,1,2,1269.283297,1269.283297,3507,NO,12.39,17.4,1,0.67,6106,115.123952,124.653053,134.528853,140.51393,I,Above,Gable,0,5701,Wood,14.89645048,0,0,,,,1,1,,0.03,nav,1,1952,1,, 6735,NJBF000075685,3 ATLANTIS COVE,Brigantine,NJ,39.39071945,-74.40036601,RES1,3001,,18,NE,2007,2007,3102,3,1,2297.589319,2297.589319,3507,NO,35.6,49.28,1,0.41,6106,114.889262,124.442231,134.292641,140.335578,I,Above,Gable,0,5701,Wood,42.43876557,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 6736,NJBF000075653,79 LAGOON BLVD,Brigantine,NJ,39.39062143,-74.39815865,RES1,3001,,17,NE,1989,1989,3102,2,1,1967.81253,1967.81253,3507,NO,27.58,36.44,1,2.85,6106,114.936296,124.484326,134.339649,140.371941,I,Above,Gable,0,5701,Wood,32.00827008,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 6737,NJBF000075496,4408 WHALERMAN RD,Brigantine,NJ,39.3900624,-74.39902961,RES1,3001,,18,NE,2005,2005,3102,2,1,2273.735506,2273.735506,3507,NO,23.03,33.33,1,-0.42,6106,114.924274,124.473809,134.327459,140.36563,I,Above,Gable,0,5701,Wood,28.17916304,0,0,,,,1,1,,0.03,nav,1,2005,2,, 6738,NJBF000075894,4205 BAYSHORE AVE,Brigantine,NJ,39.39153953,-74.39629218,COM1,3001,,NaN,ME,1969,0,3401,1,1,723.6326452,723.6326452,3507,NO,17.3,26.92,1,1.16,6106,114.965086,124.509756,134.368809,140.389245,I,Above,Gable,0,NaN,Wood,22.10931741,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6739,NJBF000075417,354 GULL COVE,Brigantine,NJ,39.38978394,-74.40545235,RES3B,3001,,35,ME,1984,1984,3301,2,1,4658.249074,4658.249074,3507,YES,28.79,40.07,1,2.62,6106,114.793239,124.357231,134.197012,140.267184,I,Above,Gable,0,5701,Wood,34.42835635,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 6740,NJBF000075841,245 40TH STREET SO,Brigantine,NJ,39.39133047,-74.39248634,RES1,3001,,43,NE,1950,1950,3102,2,2,891.9240725,891.9240725,3507,NO,23.49,38.01,1,2.19,6106,115.046345,124.582895,134.450597,140.452207,I,Above,Gable,0,5701,Wood,30.75030283,0,0,,,,1,1,,0.03,nav,1,1950,2,, 6741,NJBF000075818,249 40TH STREET SO,Brigantine,NJ,39.39125383,-74.39238801,RES1,3001,,43,NE,1969,1969,3102,2,2,897.6459203,897.6459203,3507,NO,29.02,40.1,1,-0.89,6106,115.049207,124.585495,134.453453,140.454758,I,Above,Gable,0,5701,Wood,34.56090711,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 6742,NJBF000076367,,Brigantine,NJ,39.39317037,-74.40649812,RES1,3001,,NaN,NE,1969,0,3103,5,1,1394.852511,1394.852511,3505,NO,51.49,61.87,3,-2.81,6106,114.734723,124.303059,134.138912,140.204133,I,Above,Flat,0,5701,Wood,56.68060159,0,0,,,,1,1,,0.03,nav,1,1969,5,, 6743,NJBF000076542,,Brigantine,NJ,39.39383956,-74.38850379,RES1,3001,,NaN,NE,2015,0,3102,2,1,2021.391509,2021.391509,3507,NO,29.49,38.28,1,1.4,6106,115.101315,124.631891,134.507512,140.481934,I,Above,Flat,0,5701,Wood,33.88716178,0,0,,,,1,1,,0.03,nav,1,2015,2,, 6744,NJBF000075623,42ND STREET SO,Brigantine,NJ,39.390543,-74.394082,COM8,3001,,NaN,ME,1969,0,3401,3,1,736.972397,736.972397,3507,NO,52.55,66.38,1,1.78,6106,115.021871,124.561108,134.425561,140.437463,I,Above,Hip,0,NaN,Wood,59.46373249,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6745,NJBF000076536,245 34TH STREET SO,Brigantine,NJ,39.39382193,-74.38786986,RES1,3001,,43,NE,1950,1950,3102,2,2,968.8878402,968.8878402,3507,NO,28.52,36.4,1,-0.3,6106,115.114594,124.643938,134.521028,140.492167,I,Above,Hip,0,5701,Wood,32.46463306,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 6746,NJBF000076857,3633 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39509382,-74.39117343,RES1,3001,,20,NE,2008,2008,3102,3,1,1917.194587,1917.194587,3507,NO,52.57,63.44,1,1.12,6106,115.032595,124.569261,134.438138,140.423194,I,Above,Gable,0,5701,Wood,58.00537934,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 6747,NJBF000077288,2800 BAYSHORE AVE,Brigantine,NJ,39.3976765,-74.3854145,RES1,3001,,17,NE,1994,1994,3102,2,1,763.0460915,763.0460915,3507,NO,35.87,48.63,1,1.27,6106,115.123489,124.651055,134.531868,140.480521,I,Above,Hip,0,5701,Wood,42.25013001,0,0,,,,1,1,,0.03,nav,1,1994,2,, 6748,NJBF000076648,4225 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39420136,-74.40393486,RES1,3001,,15,NE,1950,1950,3102,1,1,1234.785079,1234.785079,3507,NO,13.9,20.27,1,0.78,6106,114.777187,124.340178,134.181041,140.231314,I,Above,Gable,0,5701,Wood,17.08413371,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 6749,NJBF000075138,343 41ST STREET SO,Brigantine,NJ,39.38880738,-74.39020542,RES1,3001,,43,NE,1964,1964,3102,2,2,1354.381977,1354.381977,3507,NO,34.98,43.64,1,-0.95,6110,115.121344,124.651039,134.524978,140.521298,I,Above,Hip,0,5701,Wood,39.31152314,0,0,,,,1,1,,0.35,nav,1,1964,2,, 6750,NJBF000076625,37TH STREET SO,Brigantine,NJ,39.39412682,-74.39178201,COM1,3001,,NaN,ME,1969,0,3401,2,1,6796.573188,6796.573188,3507,NO,30.2,43.2,1,0.81,6106,115.030464,124.567675,134.435652,140.426328,I,Above,Flat,0,NaN,Wood,36.69955602,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6751,NJBF000081135,830 BOBBY JONES RD,Brigantine,NJ,39.41768108,-74.3815464,RES1,3001,,16,NE,1971,1971,3103,2,1,2646.950903,2646.950903,3505,YES,24.88,38.21,3,-0.61,6106,114.994329,124.522399,134.397757,140.281638,I,Above,Gable,0,5701,Wood,31.54855126,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 6752,NJBF000076824,310 28TH STREET SO,Brigantine,NJ,39.39493418,-74.38236653,RES1,3001,,19,NE,2014,2014,3102,3,1,2082.507614,2082.507614,3507,NO,46.27,55.67,1,-0.51,6106,115.215778,124.735838,134.625212,140.564233,I,Above,Hip,0,5701,Wood,50.9699019,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 6753,NJBF000081130,5 11TH STREET NO,Brigantine,NJ,39.41766752,-74.36192763,RES1,3001,,16,NE,1969,1969,3102,1,1,2037.442956,2037.442956,3507,NO,16.79,29.41,1,0.73,6106,115.390464,124.896356,134.820059,140.598828,I,Above,Gable,0,5701,Wood,23.09948379,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6754,NJBF000081144,3 11TH STREET NO,Brigantine,NJ,39.41775368,-74.36205815,RES1,3001,,16,NE,1975,1975,3102,2,1,1561.460824,1561.460824,3507,NO,37.46,45.75,1,-0.01,6106,115.386971,124.89302,134.816312,140.595678,I,Above,Gable,0,5701,Wood,41.60446343,0,0,,,,1,1,,0.03,nav,1,1975,2,, 6755,NJBF000081528,1105 E SHORE DR,Brigantine,NJ,39.4198745,-74.362697,RES1,3001,,43,NE,1980,1980,3102,2,2,1440.734791,1440.734791,3507,NO,30.8,43.71,1,2.86,6106,115.352409,124.85982,134.779472,140.558971,I,Above,Gable,0,5701,Wood,37.25330532,0,0,,,,1,1,,0.03,nav,1,1980,2,, 6756,NJBF000076260,324 33RD STREET SO,Brigantine,NJ,39.39276191,-74.38602001,RES1,3001,,15,NE,1954,1954,3102,1,1,1034.929878,1034.929878,3507,NO,14.61,19.95,1,-0.41,6106,115.164304,124.689264,134.571128,140.535125,I,Above,Hip,0,5701,Wood,17.27672628,0,0,,,,1,1,,0.03,nav,1,1954,1,, 6757,NJBF000076252,,Brigantine,NJ,39.39273801,-74.39360243,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4342.161506,4342.161506,3507,NO,24.36,38.54,1,1.66,6106,115.007858,124.547766,134.412295,140.41591,I,Above,Flat,0,5701,Wood,31.44930934,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6758,NJBF000074568,4 HUDSON COVE,Brigantine,NJ,39.38704607,-74.39651282,RES1,3001,,16,NE,1968,1968,3102,1,1,1883.918215,1883.918215,3507,NO,14.76,19.86,1,0.81,6110,115.009902,124.551402,134.411871,140.445681,I,Above,Hip,0,5701,Wood,17.30619759,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 6759,NJBF000074527,4602 SCHOONER RD,Brigantine,NJ,39.38686433,-74.39844322,RES1,3001,,43,NE,1977,1977,3102,2,2,1362.861602,1362.861602,3507,NO,25.09,31.4,1,-0.46,6110,114.97172,124.517361,134.37364,140.417761,I,Above,Hip,0,5701,Wood,28.2486248,0,0,,,,1,1,,0.35,nav,1,1977,2,, 6760,NJBF000078077,324 10TH STREET SO,Brigantine,NJ,39.40276203,-74.36947632,RES1,3001,,16,NE,1954,1954,3102,2,1,1477.360378,1477.360378,3502,NO,47.26,56.69,5,11.12,6110,115.394518,124.900422,134.816619,140.666454,I,Above,Gable,0,5701,Wood,51.97888342,0,0,,,,1,1,,0.35,nav,1,1954,2,, 6761,NJBF000074930,4505 HARBOR BEACH BLVD,Brigantine,NJ,39.38820534,-74.39774075,RES1,3001,,16,NE,1968,1968,3102,1,1,1896.232966,1896.232966,3507,NO,16.5,25.13,1,2.87,6106,114.97152,124.516741,134.374033,140.410891,I,Above,Gable,0,5701,Wood,20.81227772,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 6762,NJBF000080132,14 CUMMINGS PLACE,Brigantine,NJ,39.41402755,-74.37259327,RES1,3001,,16,NE,1974,1974,3102,2,1,1074.07577,1074.07577,3507,YES,33.24,38.96,1,-0.36,6106,115.213069,124.729162,134.629422,140.473881,I,Above,Flat,0,5701,Wood,36.10427887,0,0,,,,1,1,,0.03,nav,1,1974,2,, 6763,NJBF000076340,243 36TH STREET SO,Brigantine,NJ,39.39304906,-74.38932824,RES1,3001,,45,NE,1952,1952,3102,2,3,1812.740393,1812.740393,3507,YES,24.04,37.28,1,0.67,6106,115.09291,124.624478,134.498583,140.479331,I,Above,Hip,0,5701,Wood,30.66163539,0,0,,,,1,1,,0.03,nav,1,1952,2,, 6764,NJBF000078065,300 11TH STREET SO,Brigantine,NJ,39.40269343,-74.37050496,RES1,3001,,16,NE,1936,1936,3102,2,1,1327.469728,1327.469728,3502,NO,30.28,44.63,5,-1.9,6106,115.374369,124.881651,134.795351,140.651169,I,Above,Hip,0,5701,Wood,37.45309118,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 6765,NJBF000074521,9 LIGHTHOUSE COVE,Brigantine,NJ,39.38683262,-74.39963533,RES1,3001,,43,NE,1987,1987,3102,2,2,1347.994479,1347.994479,3507,NO,37.99,51.59,1,-0.32,6112,114.947206,124.495519,134.349194,140.399401,I,Above,Hip,0,5701,Wood,44.78596981,0,0,,,,1,1,,0.35,nav,1,1987,2,, 6766,NJBF000080751,105 MARSDEN PLACE,Brigantine,NJ,39.41616052,-74.38118049,RES1,3001,,16,NE,1976,1976,3103,2,1,1307.201013,1307.201013,3505,NO,26.19,37.25,3,-0.03,6106,115.017133,124.544675,134.422276,140.307405,I,Above,Flat,0,5701,Wood,31.71881398,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 6767,NJBF000080996,809 LAFAYETTE BLVD,Brigantine,NJ,39.41715777,-74.37982632,RES1,3001,,16,NE,1975,1975,3103,2,1,1162.985003,1162.985003,3505,NO,32.03,41.01,3,6.5,6106,115.034527,124.560328,134.440277,140.316519,I,Above,Gable,0,5701,Wood,36.51972882,0,0.1,,,,1,1,,0.03,nav,1,1975,2,, 6768,NJBF000076305,353 32ND STREET SO,Brigantine,NJ,39.39291261,-74.38432096,RES1,3001,,18,NE,1960,1960,3102,3,1,1352.609365,1352.609365,3507,NO,39.98,45.45,1,0.66,6106,115.197648,124.71955,134.605297,140.559804,I,Above,Flat,0,5701,Wood,42.71609028,0,0,,,,1,1,,0.03,nav,1,1960,3,, 6769,NJBF000081065,813 LAFAYETTE BLVD,Brigantine,NJ,39.41741713,-74.37983891,RES1,3001,,16,NE,1974,1974,3103,2,1,1468.506087,1468.506087,3505,NO,31.07,39.64,3,7.88,6106,115.031643,124.557472,134.437154,140.312946,I,Above,Flat,0,5701,Wood,35.35302818,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 6770,NJBF000080898,803 LAFAYETTE BLVD,Brigantine,NJ,39.4167822,-74.37963401,RES1,3001,,17,NE,1996,1996,3103,2,1,2343.366947,2343.366947,3505,NO,36.9,47.29,3,6.43,6106,115.042232,124.56776,134.448509,140.324526,I,Above,Hip,0,5701,Wood,42.09596779,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 6771,NJBF000080983,818 BOBBY JONES RD,Brigantine,NJ,39.41709214,-74.38210503,RES1,3001,,16,NE,1977,1977,3103,2,1,1771.591911,1771.591911,3505,NO,35.12,41.75,3,-2.91,6106,114.988917,124.517735,134.392297,140.280177,I,Above,Gable,0,5701,Wood,38.43268159,0,0,,,,1,1,,0.03,nav,1,1977,2,, 6772,NJBF000080806,812 W SHORE DR,Brigantine,NJ,39.4164036,-74.38292383,RES1,3001,,17,NE,2001,2001,3103,2,1,1825.30839,1825.30839,3505,YES,33.44,41.13,3,7.34,6106,114.979218,124.509149,134.38238,140.275773,I,Above,Hip,0,5701,Wood,37.28207622,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 6773,NJBF000080666,12 COLLETTE CIRCLE,Brigantine,NJ,39.41586062,-74.37687862,RES1,3001,,17,NE,1999,1999,3103,2,1,2353.67442,2353.67442,3505,NO,30.78,40.08,3,6.06,6106,115.107474,124.629348,134.517563,140.381196,I,Above,Gable,0,5701,Wood,35.43352729,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 6774,NJBF000080840,24 COLLETTE CIRCLE,Brigantine,NJ,39.41654378,-74.37757879,RES1,3001,,17,NE,1996,1996,3103,2,1,1954.223546,1954.223546,3505,NO,44.22,56.18,3,8.59,6106,115.08633,124.609189,134.495101,140.361028,I,Above,Gable,0,5701,Wood,50.20154222,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 6775,NJBF000080857,800 LAFAYETTE BLVD,Brigantine,NJ,39.41659532,-74.38009758,RES1,3001,,16,NE,1972,1972,3103,2,1,1443.567145,1443.567145,3505,YES,35.39,47.65,3,-1.19,6106,115.03471,124.560834,134.440638,140.319395,I,Above,Gable,0,5701,Wood,41.51972256,0,0,,,,1,1,,0.03,nav,1,1972,2,, 6776,NJBF000080821,803 BOBBY JONES RD,Brigantine,NJ,39.41646412,-74.38147392,RES1,3001,,16,NE,1972,1972,3103,2,1,1832.919162,1832.919162,3505,NO,27.19,39.23,3,3.98,6106,115.008089,124.536043,134.412672,140.298666,I,Above,Hip,0,5701,Wood,33.21349881,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 6777,NJBF000080692,1309 DUNCAN PLACE,Brigantine,NJ,39.41592811,-74.37383028,RES1,3001,,16,NE,1975,1975,3102,1,1,1434.120079,1434.120079,3507,NO,15.77,25.4,1,1.95,6106,115.168535,124.686642,134.582223,140.429663,I,Above,Flat,0,5701,Wood,20.58622488,0,0,,,,1,1,,0.03,nav,1,1975,1,, 6778,NJBF000080904,804 LAFAYETTE BLVD,Brigantine,NJ,39.41681021,-74.38021189,RES1,3001,,16,NE,1971,1971,3103,1,1,1432.510648,1432.510648,3505,NO,19.95,27.74,3,3.75,6106,115.030217,124.556504,134.435842,140.314745,I,Above,Gable,0,5701,Wood,23.84378052,0,0,,,,1,1,,0.03,nav,1,1971,1,, 6779,NJBF000080673,701 SARAZEN RD,Brigantine,NJ,39.41587702,-74.37466198,RES1,3001,,17,NE,1986,1986,3102,2,1,2738.751905,2738.751905,3507,NO,29.45,41.15,1,-0.28,6106,115.15222,124.671329,134.564921,140.416874,I,Above,Gable,0,5701,Wood,35.29984812,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 6780,NJBF000080624,706 LAFAYETTE BLVD,Brigantine,NJ,39.41565394,-74.37947213,RES1,3001,,16,NE,1970,1970,3103,1,1,1372.650099,1372.650099,3505,NO,12.52,18.05,3,-0.45,6106,115.056977,124.58219,134.46433,140.341789,I,Above,Gable,0,5701,Wood,15.28302025,0,0,,,,1,1,,0.03,nav,1,1970,1,, 6781,NJBF000076168,245 37TH STREET SO,Brigantine,NJ,39.3924645,-74.390117,RES1,3001,,16,NE,1948,1948,3102,1,1,1577.869494,1577.869494,3507,NO,16.04,23.11,1,0.36,6106,115.082973,124.615638,134.48821,140.474577,I,Above,Gable,0,5701,Wood,19.57505733,0,0,,,,1,1,,0.03,nav,1,1948,1,, 6782,NJBF000080070,29 CUMMINGS PLACE,Brigantine,NJ,39.41382542,-74.37307026,RES1,3001,,16,NE,1987,1987,3102,2,1,1659.917833,1659.917833,3507,NO,29.24,39.62,1,0.95,6106,115.205506,124.722122,134.621383,140.468806,I,Above,Gable,0,5701,Wood,34.42830436,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 6783,NJBF000080187,1103 E BEACH AVE,Brigantine,NJ,39.41421109,-74.35755501,RES1,3001,,45,NE,1950,1950,3102,2,2,1419.544898,1419.544898,3507,NO,35.97,44,1,0.81,6106,115.513966,125.014013,134.951996,140.711189,I,Above,Hip,0,5701,Wood,39.98483319,0,0,,,,1,1,,0.03,nav,1,1950,2,, 6784,NJBF000080071,707 E EVANS BLVD,Brigantine,NJ,39.41382787,-74.36127704,RES1,3001,,16,NE,1956,1956,3102,2,1,1569.019058,1569.019058,3507,NO,25.68,33.67,1,1.68,6106,115.443292,124.9467,134.875461,140.657036,I,Above,Hip,0,5701,Wood,29.67521168,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 6785,NJBF000079867,100 HEALD RD,Brigantine,NJ,39.4131569,-74.36122076,RES1,3001,,45,NE,1972,1972,3102,2,2,1455.478967,1455.478967,3507,NO,37.26,48.03,1,0.45,6106,115.451412,124.954385,134.883849,140.666274,I,Above,Gable,0,5701,Wood,42.64189822,0,0,,,,1,1,,0.03,nav,1,1972,2,, 6786,NJBF000079790,103 QUAY BLVD,Brigantine,NJ,39.41285169,-74.36140028,RES1,3001,,43,NE,1968,1968,3102,2,2,1450.439512,1450.439512,3507,NO,25.02,31,1,0,6106,115.450998,124.953977,134.883237,140.667236,I,Above,Hip,0,5701,Wood,28.01214651,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6787,NJBF000079793,,Brigantine,NJ,39.4128635,-74.361251,RES1,3001,,NaN,NE,1969,0,3102,2,1,1550.871331,1550.871331,3507,NO,23.75,36.88,1,0.41,6106,115.453867,124.956701,134.886331,140.669445,I,Above,Hip,0,5701,Wood,30.3117475,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6788,NJBF000078221,250 10TH STREET SO,Brigantine,NJ,39.40378836,-74.37055362,RES1,3001,,16,NE,1954,1954,3102,2,1,508.3800524,508.3800524,3505,YES,26.74,41.34,3,-1.27,6106,115.361688,124.869842,134.782735,140.636535,I,Above,Flat,0,5701,Wood,34.03607817,0,0.1,,,,1,1,,0.03,nav,1,1954,2,, 6789,NJBF000078426,1112 BAYSHORE AVE,Brigantine,NJ,39.40545902,-74.37337183,RES1,3001,,16,NE,1951,1951,3102,2,1,1087.113313,1087.113313,3505,NO,30.11,35.54,3,6.32,6106,115.28671,124.799899,134.704774,140.570795,I,Above,Gable,0,5701,Wood,32.82718013,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 6790,NJBF000078163,240 12TH STREET SO,Brigantine,NJ,39.40336391,-74.37224926,RES1,3001,,16,NE,1950,1950,3102,1,1,1300.693755,1300.693755,3505,NO,12.21,26.53,3,-2.3,6106,115.331776,124.84201,134.751004,140.615215,I,Above,Hip,0,5701,Wood,19.37223523,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6791,NJBF000078171,247 12TH STREET SO,Brigantine,NJ,39.40340744,-74.37166734,RES1,3001,,16,NE,1964,1964,3102,1,1,2256.727673,2256.727673,3505,NO,13.81,27.24,3,-1.82,6106,115.343145,124.852584,134.762979,140.623839,I,Above,Gable,0,5701,Wood,20.52706319,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 6792,NJBF000078177,328 8TH STREET SO,Brigantine,NJ,39.40344437,-74.36786653,RES1,3001,,18,NE,2003,2003,3102,2,1,2346.73667,2346.73667,3502,NO,38.96,45.23,5,14.45,6110,115.419851,124.924099,134.843864,140.6831,I,Above,Hip,0,5701,Wood,42.09572556,0,0,,,,1,1,,0.35,nav,1,2003,2,, 6793,NJBF000078255,200 12TH STREET SO,Brigantine,NJ,39.40412494,-74.37300452,RES1,3001,,16,NE,1951,1951,3102,1,1,999.4629264,999.4629264,3505,NO,18.94,28.41,3,5.73,6106,115.308311,124.820138,134.726794,140.593603,I,Above,Flat,0,5701,Wood,23.6758713,0,0,,,,1,1,,0.03,nav,1,1951,1,, 6794,NJBF000078129,324 9TH STREET SO,Brigantine,NJ,39.4031126,-74.36863573,RES1,3001,,17,NE,1951,1951,3102,2,1,2020.77081,2020.77081,3502,NO,26.4,34.24,5,-3.56,6110,115.407802,124.912828,134.830889,140.675207,I,Above,Gable,0,5701,Wood,30.32082342,0,1.1,,,,1,1,,0.35,nav,1,1951,2,, 6795,NJBF000078152,251 12TH STREET SO,Brigantine,NJ,39.40328453,-74.37153427,RES1,3001,,15,NE,1960,1960,3102,1,1,1586.696565,1586.696565,3505,NO,22.12,27.98,3,7.72,6106,115.347148,124.856312,134.767111,140.627482,I,Above,Gable,0,5701,Wood,25.05414146,0,0,,,,1,1,,0.03,nav,1,1960,1,, 6796,NJBF000078063,248 13TH STREET SO,Brigantine,NJ,39.40265586,-74.37273949,RES1,3001,,NaN,NE,1946,1946,3102,2,1,1144.027479,1144.027479,3505,NO,30.64,38.8,3,-0.61,6106,115.329364,124.839802,134.748038,140.616498,I,Above,Flat,0,5701,Wood,34.72162508,0,0,,,,1,1,,0.03,nav,1,1946,2,, 6797,NJBF000078168,250 11TH STREET SO,Brigantine,NJ,39.40338183,-74.37132095,RES1,3001,,15,NE,1954,1954,3102,1,1,541.1068241,541.1068241,3505,NO,17.63,26.82,3,1.82,6106,115.350441,124.859374,134.770636,140.629605,I,Above,Flat,0,5701,Wood,22.22530558,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 6798,NJBF000078174,214 13TH STREET SO,Brigantine,NJ,39.40342467,-74.3734279,RES1,3001,,16,NE,1950,1950,3102,1,1,1400.205194,1400.205194,3505,NO,24.41,31.87,3,6.05,6106,115.307152,124.819121,134.725191,140.595843,I,Above,Gable,0,5701,Wood,28.14345284,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6799,NJBF000078118,1119 W BRIGANTINE AVE,Brigantine,NJ,39.40305383,-74.37141046,RES1,3001,,18,NE,2005,2005,3102,3,1,1553.668593,1553.668593,3505,NO,41.09,46.53,3,-2.34,6106,115.352131,124.860954,134.772203,140.632365,I,Above,Flat,0,5701,Wood,43.80793235,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 6800,NJBF000077945,1705 REVERE BLVD,Brigantine,NJ,39.40185229,-74.37691807,RES1,3001,,16,NE,1954,1954,3101,2,1,2115.075511,2115.075511,3507,YES,27.21,39.15,1,2.39,6106,115.25281,124.768951,134.667527,140.560845,I,Above,Hip,0,5701,Wood,33.18062503,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 6801,NJBF000077839,2225 BAYSHORE AVE,Brigantine,NJ,39.40115833,-74.38223547,RES1,3001,,16,NE,1950,1950,3101,1,1,1093.305644,1093.305644,3507,NO,18.88,31.25,1,2.13,6106,115.151492,124.675747,134.562034,140.485583,I,Above,Hip,0,5701,Wood,25.06526711,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 6802,NJBF000077956,,Brigantine,NJ,39.40189031,-74.37138172,RES1,3001,,NaN,NE,1950,0,3102,2,1,934.6078934,934.6078934,3502,NO,23.14,31.03,5,-1.94,6106,115.365146,124.873061,134.78509,140.647566,I,Above,Flat,0,5701,Wood,27.08461474,0,0,,,,1,1,,0.03,nav,1,1950,2,, 6803,NJBF000077937,,Brigantine,NJ,39.40178598,-74.37131898,RES1,3001,,NaN,NE,2009,0,3102,2,1,2111.520632,2111.520632,3502,NO,25.79,32.62,5,1.26,6106,115.367541,124.875286,134.787532,140.649873,I,Above,Flat,0,5701,Wood,29.20381833,0,0,,,,1,1,,0.03,nav,1,2009,2,, 6804,NJBF000078021,333 11TH STREET SO,Brigantine,NJ,39.40237002,-74.36959437,RES1,3001,,43,NE,1954,1954,3102,2,2,1802.00521,1802.00521,3502,NO,53.49,59.03,5,14.75,6110,115.396319,124.902082,134.818227,140.669553,I,Above,Gable,0,5701,Wood,56.26106026,0,0,,,,1,1,,0.35,nav,1,1954,2,, 6805,NJBF000078061,1219 W BRIGANTINE AVE,Brigantine,NJ,39.40264731,-74.37205493,COM1,3001,,NaN,ME,1969,0,3401,1,1,7296.521855,7296.521855,3507,NO,19.82,34.11,1,1.58,6106,115.343369,124.852814,134.762731,140.62738,I,Above,Flat,0,NaN,Wood,26.96513206,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6806,NJBF000077994,,Brigantine,NJ,39.40218764,-74.37943758,RES1,3001,,NaN,NE,1933,0,3102,2,1,4440.744526,4440.744526,3507,NO,31.13,43.57,1,0.34,6106,115.197765,124.718078,134.610393,140.516628,I,Above,Flat,0,5701,Wood,37.34984226,0,0,,,,1,1,,0.03,nav,1,1933,2,, 6807,NJBF000077855,105 20TH STREET SO,Brigantine,NJ,39.40126367,-74.37866744,RES1,3001,,16,NE,1954,1954,3101,1,1,1501.363787,1501.363787,3507,NO,11.78,20.5,1,1,6106,115.22337,124.741869,134.636595,140.540757,I,Above,Gable,0,5701,Wood,16.13695002,0,0,,,,1,1,,0.03,nav,1,1954,1,, 6808,NJBF000077915,318 13TH STREET SO,Brigantine,NJ,39.4016403,-74.37183912,RES1,3001,,16,NE,1952,1952,3102,3,1,1945.323885,1945.323885,3502,NO,38.93,45.72,5,3.39,6110,115.358534,124.866916,134.777973,140.64356,I,Above,Gable,0,5701,Wood,42.32515357,0,1.1,,,,1,1,,0.35,nav,1,1952,3,, 6809,NJBF000078046,1600 BAYSHORE AVE,Brigantine,NJ,39.40253952,-74.37597877,RES1,3001,,17,NE,1970,1970,3101,2,1,2256.926087,2256.926087,3507,NO,37.73,51.95,1,0.35,6106,115.264626,124.779785,134.680207,140.566861,I,Above,Hip,0,5701,Wood,44.83785865,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 6810,NJBF000078005,1605 REVERE BLVD,Brigantine,NJ,39.4022495,-74.376143,RES1,3001,,15,NE,1956,1956,3101,1,1,1943.511746,1943.511746,3507,NO,17.5,25.29,1,0.89,6106,115.264373,124.779589,134.679794,140.567986,I,Above,Gable,0,5701,Wood,21.39620027,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 6811,NJBF000077918,100 19TH STREET SO,Brigantine,NJ,39.4016656,-74.37854801,RES1,3001,,18,NE,2004,2004,3101,2,1,1845.246195,1845.246195,3507,NO,36.28,50.52,1,2.29,6106,115.221512,124.740084,134.634852,140.537461,I,Above,Hip,0,5701,Wood,43.39927683,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 6812,NJBF000078051,13 19TH STREET SO,Brigantine,NJ,39.40258198,-74.37879576,RES1,3001,,15,NE,1926,1926,3102,1,1,1065.24365,1065.24365,3507,NO,15.56,21.12,1,1.97,6106,115.206694,124.726229,134.619837,140.521724,I,Above,Gable,0,5701,Wood,18.34227452,0,0,,,,1,1,,0.03,nav,1,1926,1,, 6813,NJBF000077648,2425 BAYSHORE AVE,Brigantine,NJ,39.4000955,-74.3836056,RES1,3001,,19,NE,2015,2015,3101,3,1,2094.60131,2094.60131,3507,NO,49.23,59.59,1,1.19,6106,115.134718,124.660654,134.544337,140.477644,I,Above,Gable,0,5701,Wood,54.40733779,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 6814,NJBF000077669,2419 BAYSHORE AVE,Brigantine,NJ,39.40023786,-74.38349392,RES1,3001,,18,NE,1960,1960,3101,2,1,2776.407619,2776.407619,3507,NO,24.47,31,1,2.76,6106,115.135489,124.66132,134.545183,140.477559,I,Above,Hip,0,5701,Wood,27.73776474,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 6815,NJBF000077683,301 17TH STREET SO,Brigantine,NJ,39.40031022,-74.37443766,RES1,3001,,16,NE,1948,1948,3102,1,1,1712.930423,1712.930423,3505,NO,19.42,27.33,3,5.3,6106,115.319897,124.831121,134.736612,140.619655,I,Above,Flat,0,5701,Wood,23.37224011,0,1.2,,,,1,1,,0.03,nav,1,1948,1,, 6816,NJBF000077689,314 15TH STREET SO,Brigantine,NJ,39.40034808,-74.37284533,RES1,3001,,15,NE,1937,1937,3102,2,1,1413.44504,1413.44504,3505,NO,28.76,41.07,3,5.88,6106,115.351937,124.860789,134.770137,140.644179,I,Above,Hip,0,5701,Wood,34.91671535,0,1.2,,,,1,1,,0.03,nav,1,1937,2,, 6817,NJBF000077825,2200 BAYSHORE AVE,Brigantine,NJ,39.40106939,-74.38144522,RES1,3001,,18,NE,2014,2014,3101,3,1,1181.667941,1181.667941,3507,NO,34.42,45.48,1,-0.98,6106,115.168621,124.69151,134.579725,140.499276,I,Above,Hip,0,5701,Wood,39.9505388,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 6818,NJBF000077628,2201 REVERE BLVD,Brigantine,NJ,39.39995017,-74.38036983,RES1,3001,,18,NE,2003,2003,3101,3,1,2705.353084,2705.353084,3507,NO,34.31,44.67,1,0.11,6106,115.202588,124.722979,134.61441,140.530787,I,Above,Hip,0,5701,Wood,39.49012159,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 6819,NJBF000077627,1903 W BRIGANTINE AVE,Brigantine,NJ,39.39992769,-74.37700997,RES1,3001,,16,NE,1928,1928,3101,2,1,2708.807661,2708.807661,3507,NO,30.24,43.96,1,0.8,6106,115.271526,124.786462,134.685951,140.584085,I,Above,Hip,0,5701,Wood,37.09865308,0,0,,,,1,1,,0.03,nav,1,1928,2,, 6820,NJBF000077831,1804 REVERE BLVD,Brigantine,NJ,39.40109927,-74.37737883,RES1,3001,,16,NE,1953,1953,3101,1,1,3667.721628,3667.721628,3507,NO,20.01,31.47,1,2.52,6106,115.251443,124.767794,134.665712,140.563234,I,Above,Hip,0,5701,Wood,25.73685378,0,1.2,,,,1,1,,0.03,nav,1,1953,1,, 6821,NJBF000077776,105 22ND STREET SO,Brigantine,NJ,39.40080474,-74.38047673,RES1,3001,,16,NE,1956,1956,3101,2,1,1501.828695,1501.828695,3507,YES,30.83,38.57,1,2.09,6106,115.191255,124.712383,134.603058,140.518037,I,Above,Hip,0,5701,Wood,34.69869648,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 6822,NJBF000077678,,Brigantine,NJ,39.40026883,-74.37072253,RES1,3001,,NaN,NE,1969,0,3102,2,1,2257.248911,2257.248911,3502,NO,25.05,34.15,5,3.44,6110,115.395953,124.90162,134.816212,140.678422,I,Above,Hip,0,5701,Wood,29.60274634,0,0,,,,1,1,,0.35,nav,1,1969,2,, 6823,NJBF000077699,111 22ND STREET SO,Brigantine,NJ,39.40038773,-74.38012998,RES1,3001,,16,NE,1956,1956,3101,1,1,2270.935774,2270.935774,3507,NO,13.32,24.74,1,2.72,6106,115.202812,124.7231,134.614849,140.528921,I,Above,Flat,0,5701,Wood,19.03325891,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 6824,NJBF000077611,2443 BAYSHORE AVE,Brigantine,NJ,39.39981698,-74.3839624,RES1,3001,,17,NE,1958,1958,3102,2,1,2006.258631,2006.258631,3507,YES,34.61,47.22,1,-0.37,6106,115.130382,124.656761,134.539769,140.475615,I,Above,Gable,0,5701,Wood,40.91450031,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 6825,NJBF000077768,349 14TH STREET SO,Brigantine,NJ,39.40076707,-74.3715131,RES1,3001,,16,NE,1956,1956,3102,1,1,1454.761232,1454.761232,3502,NO,21.62,29.27,5,10.71,6106,115.374533,124.881756,134.794124,140.659746,I,Above,Hip,0,5701,Wood,25.44833192,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 6826,NJBF000076610,233 34TH STREET SO,Brigantine,NJ,39.39408566,-74.38811774,RES1,3001,,15,NE,1950,1950,3102,1,1,922.6740288,922.6740288,3507,NO,17.41,23.17,1,2.9,6106,115.106606,124.636628,134.513019,140.484795,I,Above,Gable,0,5701,Wood,20.2868764,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6827,NJBF000077605,2205 REVERE BLVD,Brigantine,NJ,39.39979221,-74.38068979,RES1,3001,,16,NE,1951,1951,3101,1,1,2742.208259,2742.208259,3507,NO,16.42,29.96,1,1.34,6106,115.197729,124.718543,134.609305,140.527771,I,Above,Hip,0,5701,Wood,23.18766845,0,0,,,,1,1,,0.03,nav,1,1951,1,, 6828,NJBF000077320,2300 W BRIGANTINE AVE,Brigantine,NJ,39.39789315,-74.37965037,RES1,3001,,16,NE,1962,1962,3102,1,1,2136.598589,2136.598589,3507,NO,16.56,30.1,1,0.4,6106,115.239442,124.757156,134.65145,140.568698,I,Above,Hip,0,5701,Wood,23.329265,0,1.2,,,,1,1,,0.03,nav,1,1962,1,, 6829,NJBF000077403,401 18TH STREET SO,Brigantine,NJ,39.39841802,-74.37384404,RES1,3001,,20,NE,2016,2016,3102,3,1,1594.866864,1594.866864,3505,NO,49.16,63.61,3,3.02,6106,115.352398,124.861184,134.769166,140.653074,I,Above,Gable,0,5701,Wood,56.38831956,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 6830,NJBF000077420,401 18TH STREET SO,Brigantine,NJ,39.3985197,-74.37373384,RES1,3001,,20,NE,2016,2016,3102,3,1,521.5860525,521.5860525,3505,NO,53.99,61.4,3,8.71,6106,115.353537,124.86224,134.770434,140.653497,I,Above,Hip,0,5701,Wood,57.69573533,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 6831,NJBF000077392,403 18TH STREET SO,Brigantine,NJ,39.39833437,-74.37373763,RES1,3001,,21,NE,2017,2017,3102,3,1,1788.10624,1788.10624,3505,NO,44.74,54.19,3,3.98,6106,115.355467,124.864019,134.772302,140.655801,I,Above,Gable,0,5701,Wood,49.46721731,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 6832,NJBF000077596,211 21ST STREET SO,Brigantine,NJ,39.39971856,-74.37840119,RES1,3001,,17,NE,1969,1969,3101,2,1,2296.525788,2296.525788,3507,NO,28.7,37.93,1,-0.22,6106,115.245346,124.762357,134.658625,140.564852,I,Above,Gable,0,5701,Wood,33.31462814,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 6833,NJBF000077408,302 21ST STREET SO,Brigantine,NJ,39.39844824,-74.3778358,RES1,3001,,16,NE,1941,1941,3102,1,1,2185.725626,2185.725626,3507,NO,19.06,26.57,1,2.54,6106,115.270572,124.785718,134.684048,140.590085,I,Above,Gable,0,5701,Wood,22.8162596,0,1.2,,,,1,1,,0.03,nav,1,1941,1,, 6834,NJBF000077572,115 24TH STREET SO,Brigantine,NJ,39.39955016,-74.38162167,RES1,3001,,17,NE,1998,1998,3101,2,1,1990.097547,1990.097547,3507,NO,35.3,41.34,1,1.32,6106,115.181229,124.703442,134.592129,140.516165,I,Above,Hip,0,5701,Wood,38.32228268,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 6835,NJBF000075628,95 LAGOON BLVD,Brigantine,NJ,39.39055684,-74.39987158,RES1,3001,,17,NE,1988,1988,3102,2,1,2071.826344,2071.826344,3507,NO,29.6,44.22,1,1.53,6106,114.901324,124.453081,134.304652,140.345612,I,Above,Gable,0,5701,Wood,36.90982303,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 6836,NJBF000073176,40 OCEAN DRIVE WEST,Brigantine,NJ,39.37859468,-74.40832705,RES1,3001,,20,NE,2006,2006,3103,3,1,1646.544276,1646.544276,3505,NO,55.96,63.78,3,-0.4,6106,114.857485,124.41897,134.256832,140.374131,I,Above,Hip,0,5701,Wood,59.87127934,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 6837,NJBF000077526,314 17TH STREET SO,Brigantine,NJ,39.39924428,-74.37411868,RES1,3001,,16,NE,1955,1955,3102,1,1,2621.404495,2621.404495,3505,NO,13.78,27.6,3,-2.4,6106,115.337872,124.847767,134.754632,140.63825,I,Above,Hip,0,5701,Wood,20.69238437,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6838,NJBF000077489,2405 REVERE BLVD,Brigantine,NJ,39.39902433,-74.38202176,RES1,3001,,15,NE,1956,1956,3101,2,1,1495.803033,1495.803033,3507,YES,25.95,37.25,1,1.91,6106,115.17867,124.701206,134.589246,140.516659,I,Above,Hip,0,5701,Wood,31.60013616,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 6839,NJBF000077548,312 17TH STREET SO,Brigantine,NJ,39.39936827,-74.37421899,RES1,3001,,16,NE,1960,1960,3102,1,1,2284.289357,2284.289357,3505,NO,22.67,29.42,3,5.15,6106,115.334497,124.844646,134.7512,140.635103,I,Above,Flat,0,5701,Wood,26.04614305,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 6840,NJBF000073435,10 SURF LANE,Brigantine,NJ,39.38069078,-74.40409226,RES1,3001,,16,NE,1975,1975,3101,1,1,2002.270356,2002.270356,3507,NO,13.31,24.66,1,1.96,6106,114.922703,124.475727,134.321902,140.412022,I,Above,Gable,0,5701,Wood,18.98267793,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 6841,NJBF000073426,5208 HARBOR BEACH BLVD,Brigantine,NJ,39.38062342,-74.40768648,RES1,3001,,16,NE,1975,1975,3103,2,1,1862.200673,1862.200673,3505,NO,29.85,44.03,3,-2.63,6110,114.84799,124.409935,134.248533,140.356597,I,Above,Gable,0,5701,Wood,36.94133534,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 6842,NJBF000077497,306 19TH STREET SO,Brigantine,NJ,39.39904913,-74.37621842,RES1,3001,,19,NE,2011,2011,3102,2,1,3798.580196,3798.580196,3507,NO,29.52,34.99,1,1.1,6106,115.297152,124.810168,134.712059,140.607804,I,Above,Hip,0,5701,Wood,32.25587554,0,1.1,,,,1,1,,0.03,nav,1,2011,2,, 6843,NJBF000077545,302 19TH STREET SO,Brigantine,NJ,39.3993474,-74.37644801,RES1,3001,,16,NE,1950,1950,3102,1,1,2991.193876,2991.193876,3507,YES,13.99,20.38,1,2.39,6106,115.289247,124.802857,134.704029,140.600374,I,Above,Gable,0,5701,Wood,17.18678509,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 6844,NJBF000075626,274 40TH STREET SO,Brigantine,NJ,39.39054957,-74.39206209,RES1,3001,,16,NE,1950,1950,3102,1,1,1686.405148,1686.405148,3507,NO,18.18,26.39,1,1.48,6106,115.063678,124.598722,134.467727,140.469198,I,Above,Gable,0,5701,Wood,22.2859007,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6845,NJBF000075635,3901 W BRIGANTINE AVE,Brigantine,NJ,39.39056831,-74.39084084,RES1,3001,,43,NE,1952,1952,3102,1,2,1440.084944,1440.084944,3507,NO,20.22,27.98,1,1.93,6106,115.088767,124.621329,134.493097,140.488163,I,Above,Hip,0,5701,Wood,24.09963119,0,0,,,,1,1,,0.03,nav,1,1952,1,, 6846,NJBF000077022,206 29TH STREET SO,Brigantine,NJ,39.39591636,-74.38469485,RES1,3001,,16,NE,1956,1956,3102,2,1,1370.927375,1370.927375,3507,YES,39.74,50.24,1,2.97,6106,115.157273,124.682292,134.565717,140.514855,I,Above,Gable,0,5701,Wood,44.99331773,0,0,,,,1,1,,0.03,nav,1,1956,2,, 6847,NJBF000077102,2903 REVERE BLVD,Brigantine,NJ,39.3965695,-74.3855815,RES1,3001,,16,NE,1954,1954,3102,2,1,1053.086159,1053.086159,3507,NO,27.76,36.21,1,-0.73,6106,115.131968,124.659075,134.54009,140.492335,I,Above,Flat,0,5701,Wood,31.98133331,0,0,,,,1,1,,0.03,nav,1,1954,2,, 6848,NJBF000077125,105 30TH STREET SO,Brigantine,NJ,39.39669166,-74.38618846,RES1,3001,,16,NE,1954,1954,3102,2,1,1212.969261,1212.969261,3507,NO,33.9,40.51,1,1.76,6106,115.118171,124.64647,134.526008,140.481146,I,Above,Gable,0,5701,Wood,37.20664454,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 6849,NJBF000077088,2905 REVERE BLVD,Brigantine,NJ,39.39643282,-74.38580682,RES1,3001,,16,NE,1956,1956,3102,2,1,2138.65555,2138.65555,3507,YES,34.84,44.08,1,2.88,6106,115.128807,124.656227,134.536789,140.490556,I,Above,Gable,0,5701,Wood,39.46257938,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 6850,NJBF000077186,320 22ND STREET SO,Brigantine,NJ,39.39711557,-74.37779005,RES1,3001,,16,NE,1954,1954,3102,2,1,2266.773507,2266.773507,3507,NO,25.63,39.1,1,1.43,6106,115.285909,124.799914,134.699061,140.607906,I,Above,Flat,0,5701,Wood,32.36560337,0,0,,,,1,1,,0.03,nav,1,1954,2,, 6851,NJBF000077172,3001 BAYSHORE AVE,Brigantine,NJ,39.39701433,-74.38710959,RES1,3001,,19,NE,2017,2017,3102,2,1,1036.924548,1036.924548,3507,NO,32.19,47.03,1,1.73,6106,115.095719,124.625932,134.503155,140.462333,I,Above,Hip,0,5701,Wood,39.61189023,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 6852,NJBF000077184,3001 BAYSHORE AVE,Brigantine,NJ,39.39710473,-74.38723577,RES1,3001,,19,NE,2017,2017,3102,2,1,700.526862,700.526862,3507,NO,33.96,45.87,1,1.89,6106,115.092145,124.62265,134.499532,140.459143,I,Above,Gable,0,5701,Wood,39.91484778,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 6853,NJBF000077064,2707 W BRIGANTINE AVE,Brigantine,NJ,39.39625056,-74.3831192,RES1,3001,,20,NE,1927,1927,3102,2,1,3045.390939,3045.390939,3507,YES,30.62,39.26,1,2.84,6106,115.186041,124.708485,134.595432,140.535333,I,Above,Hip,0,5701,Wood,34.94066927,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 6854,NJBF000076922,310 27TH STREET SO,Brigantine,NJ,39.39545013,-74.38168149,RES1,3001,,16,NE,1922,1922,3102,2,1,1375.145533,1375.145533,3507,NO,25.25,30.81,1,1.86,6106,115.224254,124.743524,134.634261,140.568324,I,Above,Hip,0,5701,Wood,28.0329062,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 6855,NJBF000076874,,Brigantine,NJ,39.39514437,-74.39094133,COM8,3001,,NaN,ME,1969,0,3401,2,1,3717.323889,3717.323889,3507,NO,30.84,45.53,1,0.84,6106,115.036849,124.573095,134.442476,140.426213,I,Above,Gable,0,NaN,Wood,38.18883043,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6856,NJBF000076831,3837 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39496645,-74.39467157,RES1,3001,,15,NE,1955,1955,3102,1,1,1036.59625,1036.59625,3507,NO,21.18,34.29,1,2.42,6106,114.961561,124.505143,134.366145,140.369277,I,Above,Flat,0,5701,Wood,27.73484602,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6857,NJBF000075118,35 SHIPMASTER DR,Brigantine,NJ,39.3887573,-74.40164215,RES1,3001,,16,NE,1968,1968,3102,1,1,1871.927001,1871.927001,3507,NO,18.37,30.38,1,0.55,6106,114.884108,124.438549,134.287045,140.341773,I,Above,Gable,0,5701,Wood,24.37206965,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 6858,NJBF000076962,316 26TH STREET SO,Brigantine,NJ,39.39559345,-74.3806885,RES1,3001,,17,NE,1955,1955,3102,1,1,3112.947859,3112.947859,3507,NO,20.46,29.17,1,1.51,6106,115.243054,124.760708,134.65372,140.582042,I,Above,Gable,0,5701,Wood,24.81908707,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 6859,NJBF000075154,326 41ST STREET SO,Brigantine,NJ,39.38887776,-74.39097488,RES1,3001,,43,NE,1977,1977,3102,2,2,1257.941439,1257.941439,3507,NO,29.75,42.72,1,2.28,6110,115.104613,124.635956,134.508119,140.508309,I,Above,Gable,0,5701,Wood,36.23206361,0,0,,,,1,1,,0.35,nav,1,1977,2,, 6860,NJBF000075142,4419 HARBOR BEACH BLVD,Brigantine,NJ,39.38882201,-74.39771731,RES1,3001,,16,NE,1962,1962,3102,2,1,1584.745533,1584.745533,3507,NO,22.64,31.81,1,0.98,6106,114.965222,124.510898,134.367986,140.403021,I,Above,Gable,0,5701,Wood,27.22255078,0,0,,,,1,1,,0.03,nav,1,1962,2,, 6861,NJBF000076783,4025 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39477368,-74.39849352,RES1,3001,,16,NE,1964,1964,3102,1,1,1755.526955,1755.526955,3507,NO,11.67,26.32,1,1.15,6106,114.884319,124.435735,134.288275,140.310845,I,Above,Gable,0,5701,Wood,18.99821003,0,0,,,,1,1,,0.03,nav,1,1964,1,, 6862,NJBF000075163,4500 PRIVATEER RD,Brigantine,NJ,39.38891,-74.39818574,RES1,3001,,16,NE,1968,1968,3102,2,1,1518.040717,1518.040717,3507,NO,35.98,45.29,1,0.73,6106,114.954489,124.501271,134.357286,140.394435,I,Above,Flat,0,5701,Wood,40.63677765,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6863,NJBF000074016,,Brigantine,NJ,39.38445545,-74.40101897,RES1,3001,,NaN,NE,1985,0,3102,2,1,1750.515004,1750.515004,3507,NO,22.51,28.45,1,1.17,6106,114.944748,124.49412,134.345667,140.409541,I,Above,Gable,0,5701,Wood,25.47630582,0,0,,,,1,1,,0.03,nav,1,1985,2,, 6864,NJBF000075122,7 WHALERMAN COVE,Brigantine,NJ,39.38877229,-74.4001515,RES1,3001,,16,NE,1968,1968,3102,1,1,2397.956807,2397.956807,3507,NO,20.53,33.41,1,1.19,6110,114.915034,124.466101,134.317848,140.365187,I,Above,Hip,0,5701,Wood,26.96655625,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 6865,NJBF000075044,314 42ND STREET SO,Brigantine,NJ,39.388535,-74.39182826,RES1,3001,,15,NE,1952,1952,3102,1,1,1402.409768,1402.409768,3507,NO,17.68,27.83,1,1.09,6110,115.090729,124.623526,134.493895,140.499462,I,Above,Hip,0,5701,Wood,22.75537018,0,0,,,,1,1,,0.35,nav,1,1952,1,, 6866,NJBF000075039,,Brigantine,NJ,39.38852044,-74.39328809,RES1,3001,,NaN,NE,1969,0,3102,2,1,1549.135682,1549.135682,3507,NO,38.33,48.09,1,2.1,6110,115.060612,124.596463,134.463549,140.476762,I,Above,Flat,0,5701,Wood,43.21108077,0,0,,,,1,1,,0.35,nav,1,1969,2,, 6867,NJBF000075778,3801 W BRIGANTINE AVE,Brigantine,NJ,39.39107915,-74.39024503,RES1,3001,,47,NE,1955,1955,3102,2,3,1668.171573,1668.171573,3507,YES,26.64,39.33,1,1.93,6106,115.095492,124.627282,134.500185,140.490805,I,Above,Gable,0,5701,Wood,32.98248532,0,0,,,,1,1,,0.03,nav,1,1955,2,, 6868,NJBF000075132,330 41ST STREET SO,Brigantine,NJ,39.388795,-74.390861,RES1,3001,,43,NE,1977,1977,3102,2,2,1492.311501,1492.311501,3507,NO,37.48,48.96,1,0.51,6110,115.107892,124.638923,134.511378,140.511187,I,Above,Hip,0,5701,Wood,43.21821844,0,0,,,,1,1,,0.35,nav,1,1977,2,, 6869,NJBF000076658,,Brigantine,NJ,39.39424101,-74.39686715,COM1,3001,,NaN,ME,1969,0,3401,1,1,5705.920547,5705.920547,3507,NO,15.32,26.69,1,1.04,6106,114.923851,124.471529,134.327976,140.343983,I,Above,Hip,0,NaN,Wood,21.00784562,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6870,NJBF000076675,,Brigantine,NJ,39.39430922,-74.39425455,COM4,3001,,NaN,ME,1969,0,3401,1,1,2039.596361,2039.596361,3507,NO,18.27,28.8,1,-0.75,6106,114.977293,124.519611,134.381891,140.384664,I,Above,Flat,0,NaN,Wood,23.53386926,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6871,NJBF000076415,,Brigantine,NJ,39.39331149,-74.39032586,RES1,3001,,NaN,NE,1969,0,3102,2,1,1845.199811,1845.199811,3507,NO,36.73,44.15,1,-0.98,6106,115.069433,124.603165,134.474861,140.460136,I,Above,Flat,0,5701,Wood,40.43692109,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6872,NJBF000076668,225 34TH STREET SO,Brigantine,NJ,39.39427196,-74.38830866,RES1,3001,,14,NE,1952,1952,3102,1,1,1064.039013,1064.039013,3507,NO,18.51,32.06,1,1.6,6106,115.100645,124.631173,134.507033,140.47934,I,Above,Gable,0,5701,Wood,25.28812997,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 6873,NJBF000076441,,Brigantine,NJ,39.3934089,-74.38741015,RES1,3001,,NaN,NE,1969,0,3102,2,1,3575.594897,3575.594897,3507,NO,32,45.87,1,-0.23,6106,115.12858,124.656719,134.535068,140.504823,I,Above,Flat,0,5701,Wood,38.93653738,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6874,NJBF000076510,215 36TH STREET SO,Brigantine,NJ,39.39370402,-74.39011121,RES1,3001,,18,NE,2006,2006,3102,3,1,1480.73727,1480.73727,3507,NO,46.57,55.08,1,1.8,6106,115.069604,124.603205,134.475204,140.458353,I,Above,Gable,0,5701,Wood,50.82671262,0,0,,,,1,1,,0.03,nav,1,2006,3,, 6875,NJBF000076679,311 30TH STREET SO,Brigantine,NJ,39.39431635,-74.38341295,RES1,3001,,16,NE,1960,1960,3102,1,1,2739.540666,2739.540666,3507,NO,17.67,27.38,1,0.4,6106,115.20101,124.722439,134.609655,140.555827,I,Above,Flat,0,5701,Wood,22.52535858,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 6876,NJBF000076684,3840 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39434059,-74.39501015,COM4,3001,,NaN,ME,1969,1950,3401,2,1,3199.855665,3199.855665,3507,NO,34.56,47.33,1,0.66,6106,114.961298,124.505183,134.365745,140.372229,I,Above,Gable,0,NaN,Wood,40.94245835,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6877,NJBF000075901,233 40TH STREET SO,Brigantine,NJ,39.39155601,-74.39280076,RES1,3001,,16,NE,1941,1941,3102,2,1,1010.5544,1010.5544,3507,NO,32.33,42.12,1,-0.81,6106,115.037346,124.574721,134.44161,140.444246,I,Above,Flat,0,5701,Wood,37.22046323,0,0,,,,1,1,,0.03,nav,1,1941,2,, 6878,NJBF000076021,,Brigantine,NJ,39.39196567,-74.39332149,RES1,3001,,NaN,NE,1969,0,3102,2,1,2593.208043,2593.208043,3507,NO,29.02,43.91,1,0.24,6106,115.022092,124.560852,134.426378,140.4306,I,Above,Hip,0,5701,Wood,36.46950606,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6879,NJBF000076028,3303 OCEAN AVE,Brigantine,NJ,39.3919921,-74.38529511,RES1,3001,,18,NE,1950,2018,3102,3,1,1904.784268,1904.784268,3507,NO,43.55,54.58,1,0.82,6106,115.187678,124.710597,134.594488,140.556522,I,Above,Hip,0,5701,Wood,49.06791933,0,0,,,,1,1,,0.03,nav,1,1950,3,, 6880,NJBF000075907,4512 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39158742,-74.40859017,RES1,3001,,45,NE,1983,1983,3103,3,2,1409.702812,1409.702812,3505,NO,55.47,60.89,3,-2.06,6106,114.707977,124.280444,134.112625,140.192164,I,Above,Hip,0,5701,Wood,58.18206777,0,1.2,,,,1,1,,0.03,nav,1,1983,3,, 6881,NJBF000076039,,Brigantine,NJ,39.39203007,-74.40748156,RES1,3001,,NaN,NE,1969,0,3103,5,1,1805.249336,1805.249336,3505,NO,75.22,84.53,3,6.61,6106,114.726405,124.296472,134.130798,140.203915,I,Above,Gable,0,5701,Wood,79.87811549,0,0,,,,1,1,,0.03,nav,1,1969,5,, 6882,NJBF000075981,266 37TH STREET SO,Brigantine,NJ,39.391827,-74.38996829,RES1,3001,,17,NE,1949,1949,3102,2,1,2154.736446,2154.736446,3507,YES,37.53,51.69,1,0.5,6106,115.093026,124.624883,134.498086,140.485321,I,Above,Gable,0,5701,Wood,44.60582114,0,0,,,,1,1,,0.03,nav,1,1949,2,, 6883,NJBF000075808,4621 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39121507,-74.41075019,RES1,3001,,16,NE,1950,1950,3103,2,1,1110.245513,1110.245513,3505,NO,33.78,41.22,3,-2.43,6102,114.666694,124.244182,134.071962,140.162475,I,Above,Hip,0,5701,Wood,37.49715137,0,0,,,,1,1,,0.03,nav,1,1950,2,, 6884,NJBF000075514,310 39TH STREET SO,Brigantine,NJ,39.39012862,-74.39016986,RES1,3001,,14,NE,1952,1952,3102,1,1,2002.412966,2002.412966,3507,NO,22.14,28.01,1,2.69,6106,115.107482,124.638303,134.511783,140.504477,I,Above,Gable,0,5701,Wood,25.0735829,0,0,,,,1,1,,0.03,nav,1,1952,1,, 6885,NJBF000075228,16 EXPLORER RD,Brigantine,NJ,39.38912054,-74.40152481,RES1,3001,,16,NE,1968,1968,3102,1,1,1258.139158,1258.139158,3507,NO,13.26,18.58,1,0.77,6106,114.882558,124.437001,134.285594,140.338716,I,Above,Gable,0,5701,Wood,15.91959304,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 6886,NJBF000075743,8 ATLANTIS COVE,Brigantine,NJ,39.39096382,-74.40092945,RES1,3001,,16,NE,1972,1972,3102,1,1,2061.976285,2061.976285,3507,NO,17.94,28.74,1,1.51,6106,114.874857,124.429249,134.278309,140.323315,I,Above,Gable,0,5701,Wood,23.33822287,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 6887,NJBF000075109,4502 PRIVATEER RD,Brigantine,NJ,39.38873842,-74.39814826,RES1,3001,,16,NE,1968,1968,3102,1,1,1609.082997,1609.082997,3507,NO,14.2,27.59,1,0.76,6106,114.957172,124.503732,134.359904,140.397338,I,Above,Gable,0,5701,Wood,20.89612199,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 6888,NJBF000075618,4721 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39052324,-74.4122902,RES1,3001,,15,NE,1945,1945,3103,2,1,860.7556336,860.7556336,3505,NO,28.68,39.56,3,4.21,6106,114.641819,124.222753,134.047636,140.147196,I,Above,Flat,0,5701,Wood,34.12162174,0,0,,,,1,1,,0.03,nav,1,1945,2,, 6889,NJBF000076318,,Brigantine,NJ,39.39295444,-74.40695789,RES1,3001,,NaN,NE,1969,0,3103,5,1,4200.796105,4200.796105,3505,NO,93.33,105.91,3,-1.51,6106,114.727424,124.296724,134.131699,140.199681,I,Above,Flat,0,5701,Wood,99.62233152,0,0,,,,1,1,,0.03,nav,1,1969,5,, 6890,NJBF000075534,,Brigantine,NJ,39.39021276,-74.38671074,RES3C,3001,,NaN,E,1969,0,3303,4,1,2749.270407,2749.270407,3507,NO,63.62,75.97,1,-0.08,6106,115.178042,124.702063,134.583433,140.557544,I,Above,Flat,0,NaN,Wood,69.79565537,0,0,,,,1,1,,0.03,nav,1,1969,4,, 6891,NJBF000080741,1314 RAY AVE,Brigantine,NJ,39.41613556,-74.37454155,RES1,3001,,17,NE,1987,1988,3102,2,1,4055.913091,4055.913091,3507,NO,34.19,42.53,1,1.79,6106,115.152002,124.671017,134.564672,140.415492,I,Above,Gable,0,5701,Wood,38.36313728,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 6892,NJBF000075542,3701 OCEAN AVE,Brigantine,NJ,39.39023644,-74.38756505,RES1,3001,,21,NE,2015,2015,3102,3,1,1461.141681,1461.141681,3507,NO,39.23,45.21,1,-0.13,6106,115.160157,124.685873,134.565267,140.543889,I,Above,Flat,0,5701,Wood,42.22283799,0,0,,,,1,1,,0.03,nav,1,2015,3,, 6893,NJBF000076251,203 38TH STREET SO,Brigantine,NJ,39.39273467,-74.39180455,RES1,3001,,15,NE,1955,1955,3102,1,1,886.6586928,886.6586928,3507,NO,18.71,28.64,1,-0.21,6106,115.04511,124.58136,134.44996,140.444376,I,Above,Gable,0,5701,Wood,23.6765269,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6894,NJBF000077394,312 20TH STREET SO,Brigantine,NJ,39.39835363,-74.37664672,RES1,3001,,19,NE,1987,1987,3102,3,1,1914.594883,1914.594883,3507,NO,48.14,60.01,1,2.81,6106,115.295887,124.809037,134.710274,140.609966,I,Above,Gable,0,5701,Wood,54.07221162,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 6895,NJBF000077368,209 25TH STREET SO,Brigantine,NJ,39.39814248,-74.38165401,RES1,3001,,NaN,NE,1928,0,3102,2,1,1516.465546,1516.465546,3507,NO,32.8,44.71,1,2.82,6106,115.195695,124.716986,134.606387,140.533904,I,Above,Hip,0,5701,Wood,38.7537513,0,0,,,,1,1,,0.03,nav,1,1928,2,, 6896,NJBF000077541,1904 W BRIGANTINE AVE,Brigantine,NJ,39.39933578,-74.37691649,RES1,3001,,16,NE,1956,1956,3102,2,1,2373.88194,2373.88194,3507,YES,31.71,41.52,1,-0.24,6106,115.279808,124.794153,134.694203,140.593156,I,Above,Hip,0,5701,Wood,36.61349328,0,0.1,,,,1,1,,0.03,nav,1,1956,2,, 6897,NJBF000078250,251 10TH STREET SO,Brigantine,NJ,39.40409598,-74.37006918,RES1,3001,,16,NE,1930,1930,3102,2,1,946.1618444,946.1618444,3505,YES,22.62,35.55,3,-1.77,6106,115.368249,124.875957,134.78985,140.640271,I,Above,Flat,0,5701,Wood,29.08140689,0,0,,,,1,1,,0.03,nav,1,1930,2,, 6898,NJBF000078043,352 9TH STREET SO,Brigantine,NJ,39.40251309,-74.36805875,RES1,3001,,15,NE,1954,1954,3102,1,1,1233.972622,1233.972622,3502,NO,32.02,43.57,5,14.93,6110,115.425922,124.929692,134.849554,140.691809,I,Above,Hip,0,5701,Wood,37.79122073,0,0,,,,1,1,,0.35,nav,1,1954,1,, 6899,NJBF000078150,222 13TH STREET SO,Brigantine,NJ,39.40327698,-74.37333982,RES1,3001,,17,NE,2009,2009,3102,2,1,1116.642507,1116.642507,3505,NO,33.81,45.14,3,6.42,6106,115.310518,124.822259,134.728638,140.599117,I,Above,Gable,0,5701,Wood,39.4723731,0,0,,,,1,1,,0.03,nav,1,2009,2,, 6900,NJBF000077998,1700 BAYSHORE AVE,Brigantine,NJ,39.40221455,-74.37682833,RES1,3001,,16,NE,1957,1957,3101,1,1,2238.873827,2238.873827,3507,NO,15.58,21.27,1,1.27,6106,115.250775,124.767017,134.665588,140.557608,I,Above,Hip,0,5701,Wood,18.42353234,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 6901,NJBF000077991,1700 BAYSHORE AVE,Brigantine,NJ,39.40217283,-74.37671346,RES1,3001,,16,NE,1957,1957,3101,1,1,636.3633956,636.3633956,3507,NO,19.41,32.45,1,1.54,6106,115.253569,124.769606,134.668481,140.559965,I,Above,Hip,0,5701,Wood,25.92997283,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 6902,NJBF000077788,101 23RD STREET SO,Brigantine,NJ,39.40086351,-74.381679,RES1,3001,,17,NE,1986,1986,3101,2,1,1648.6982,1648.6982,3507,NO,36.5,48.51,1,1.86,6106,115.166015,124.689166,134.576948,140.498223,I,Above,Gable,0,5701,Wood,42.50671165,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 6903,NJBF000077375,,Brigantine,NJ,39.39822096,-74.37702376,RES1,3001,,NaN,NE,1969,0,3102,2,1,2818.427957,2818.427957,3507,NO,23.29,37.46,1,1.55,6106,115.28962,124.80327,134.703672,140.605753,I,Above,Hip,0,5701,Wood,30.37389622,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6904,NJBF000077350,2601 REVERE BLVD,Brigantine,NJ,39.39805359,-74.38347183,RES1,3001,,19,NE,2006,2006,3102,3,1,2948.323813,2948.323813,3507,NO,48,62.36,1,-0.37,6106,115.159339,124.683716,134.568875,140.506332,I,Above,Flat,0,5701,Wood,55.18013951,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 6905,NJBF000077621,107 24TH STREET SO,Brigantine,NJ,39.39991104,-74.3819643,RES1,3001,,17,NE,2017,2017,3102,3,1,1708.052185,1708.052185,3507,NO,49.9,62.77,1,-0.91,6106,115.170355,124.693382,134.581051,140.50607,I,Above,Hip,0,5701,Wood,56.33291415,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 6906,NJBF000077622,205 21ST STREET SO,Brigantine,NJ,39.39991188,-74.37857751,RES1,3001,,16,NE,1952,1952,3101,1,1,963.2419408,963.2419408,3507,NO,19.29,25.12,1,1.38,6106,115.239657,124.757091,134.652825,140.559577,I,Above,Flat,0,5701,Wood,22.20539063,0,0,,,,1,1,,0.03,nav,1,1952,1,, 6907,NJBF000077955,353 11TH STREET SO,Brigantine,NJ,39.40188538,-74.36918744,RES1,3001,,49,NE,1958,1958,3102,2,2,1150.421834,1150.421834,3502,NO,40.8,45.82,5,9.45,6110,115.409777,124.914589,134.832032,140.682055,I,Above,Hip,0,5701,Wood,43.31399853,0,1.2,,,,1,1,,0.35,nav,1,1958,2,, 6908,NJBF000077973,353 11TH STREET SO,Brigantine,NJ,39.40199902,-74.36905383,RES1,3001,,49,NE,1958,1958,3102,2,2,629.1066217,629.1066217,3502,NO,19.4,29.07,5,-1.84,6110,115.411253,124.915973,134.833677,140.6827,I,Above,Gable,0,5701,Wood,24.23615489,0,1.2,,,,1,1,,0.35,nav,1,1958,2,, 6909,NJBF000077983,1704 BAYSHORE AVE,Brigantine,NJ,39.4020955,-74.377201,RES1,3001,,16,NE,1957,1957,3101,1,1,2539.784303,2539.784303,3507,NO,20.17,30.68,1,2.13,6106,115.244432,124.761173,134.658917,140.553238,I,Above,Flat,0,5701,Wood,25.42441442,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 6910,NJBF000074789,4509 HARBOR BEACH BLVD,Brigantine,NJ,39.38778236,-74.39776144,RES1,3001,,16,NE,1968,1968,3102,2,1,1214.622203,1214.622203,3507,YES,25.27,39.81,1,0.31,6106,114.975773,124.520682,134.378101,140.416229,I,Above,Gable,0,5701,Wood,32.54020617,0,0,,,,1,1,,0.03,nav,1,1968,2,, 6911,NJBF000073373,5209 WATERVIEW DR,Brigantine,NJ,39.38022533,-74.40735673,RES1,3001,,16,NE,1975,1975,3103,1,1,2093.023161,2093.023161,3505,NO,23.42,31.96,3,5.52,6106,114.859405,124.420114,134.259526,140.367175,I,Above,Gable,0,5701,Wood,27.68544743,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 6912,NJBF000077549,305 19TH STREET SO,Brigantine,NJ,39.39937209,-74.37584397,RES1,3001,,17,NE,1986,1986,3102,2,1,1652.801246,1652.801246,3507,NO,35.55,42.72,1,1.57,6106,115.301308,124.813985,134.716601,140.609546,I,Above,Hip,0,5701,Wood,39.13349976,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 6913,NJBF000077551,2500 BAYSHORE AVE,Brigantine,NJ,39.39939099,-74.38370431,RES1,3001,,NaN,NE,1927,1927,3102,2,1,1492.915146,1492.915146,3507,NO,28.3,34.88,1,-0.48,6106,115.140233,124.6659,134.549761,140.485258,I,Above,Flat,0,5701,Wood,31.59004425,0,0,,,,1,1,,0.03,nav,1,1927,2,, 6914,NJBF000077107,107 30TH STREET SO,Brigantine,NJ,39.39657752,-74.38603057,RES1,3001,,16,NE,1956,1956,3102,1,1,2086.729034,2086.729034,3507,YES,12.05,21.85,1,0.19,6106,115.122632,124.650564,134.530528,140.48512,I,Above,Gable,0,5701,Wood,16.95019847,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6915,NJBF000077117,2607 W BRIGANTINE AVE,Brigantine,NJ,39.39666094,-74.38247274,RES1,3001,,17,NE,1925,1925,3102,2,1,1504.44633,1504.44633,3507,NO,40.1,46.03,1,1.56,6106,115.19487,124.716487,134.604743,140.540187,I,Above,Gable,0,5701,Wood,43.06698383,0,0,,,,1,1,,0.03,nav,1,1925,2,, 6916,NJBF000077071,2900 REVERE BLVD,Brigantine,NJ,39.3963065,-74.385216,RES1,3001,,15,NE,1956,1956,3102,2,1,1367.717291,1367.717291,3507,YES,30.27,44.15,1,0.96,6106,115.142328,124.668581,134.550587,140.501537,I,Above,Flat,0,5701,Wood,37.20882339,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 6917,NJBF000077004,2304 OCEAN AVE,Brigantine,NJ,39.39581276,-74.37817684,RES1,3001,,16,NE,1974,1974,3102,2,1,3351.652777,3351.652777,3507,YES,29.97,40.76,1,0.75,6110,115.292132,124.805682,134.704561,140.618565,I,Above,Hip,0,5701,Wood,35.36216226,0,1.2,,,,1,1,,0.35,nav,1,1974,2,, 6918,NJBF000077050,121 31ST STREET SO,Brigantine,NJ,39.3961205,-74.38670783,COM4,3001,,NaN,ME,1969,0,3401,1,1,4370.315009,4370.315009,3507,NO,18.92,31.51,1,0.09,6106,115.113626,124.642484,134.521112,140.480394,I,Above,Flat,0,NaN,Wood,25.21604911,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6919,NJBF000077007,3000 REVERE BLVD,Brigantine,NJ,39.39582059,-74.38589975,RES1,3001,,16,NE,1956,1956,3102,2,1,1497.207558,1497.207558,3507,YES,38.38,50.03,1,1.64,6106,115.133506,124.660656,134.541319,140.497083,I,Above,Gable,0,5701,Wood,44.20412588,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 6920,NJBF000076920,2507 OCEAN AVE,Brigantine,NJ,39.39544136,-74.37984826,RES1,3001,,17,NE,1920,1920,3102,2,1,2173.167519,2173.167519,3507,NO,37.56,47.57,1,2.4,6106,115.26195,124.778023,134.673104,140.597185,I,Above,Gable,0,5701,Wood,42.56623016,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 6921,NJBF000076945,2507 OCEAN AVE,Brigantine,NJ,39.39553912,-74.38006104,RES1,3001,,17,NE,1920,1920,3102,2,1,1371.289313,1371.289313,3507,NO,37.04,49.94,1,1.14,6106,115.256518,124.77304,134.667568,140.592585,I,Above,Gable,0,5701,Wood,43.49255671,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 6922,NJBF000076893,405 25TH STREET SO,Brigantine,NJ,39.3952218,-74.3782674,RES1,3001,,21,NE,2005,2005,3102,3,1,3438.763751,3438.763751,3507,NO,57.45,70.3,1,-0.8,6106,115.296724,124.809908,134.708859,140.624741,I,Above,Hip,0,5701,Wood,63.87507455,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 6923,NJBF000076859,,Brigantine,NJ,39.3950975,-74.391446,RES1,3001,,NaN,NE,1969,0,3102,2,1,1874.944363,1874.944363,3507,NO,35.62,42.72,1,2.88,6106,115.026919,124.564124,134.432376,140.418823,I,Above,Flat,0,5701,Wood,39.17302631,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6924,NJBF000075783,327 37TH STREET SO,Brigantine,NJ,39.39111355,-74.38822146,RES1,3001,,16,NE,1950,1950,3102,2,1,996.1985066,996.1985066,3507,NO,35.77,43.31,1,1.12,6106,115.136948,124.664742,134.542259,140.522128,I,Above,Gable,0,5701,Wood,39.53899107,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 6925,NJBF000076664,210 34TH STREET SO,Brigantine,NJ,39.39425162,-74.38895495,RES1,3001,,43,NE,1962,1962,3102,2,2,1035.989886,1035.989886,3507,NO,31.72,37.31,1,2.8,6106,115.087529,124.619285,134.493668,140.469403,I,Above,Flat,0,5701,Wood,34.51477367,0,0,,,,1,1,,0.03,nav,1,1962,2,, 6926,NJBF000076932,204 30TH STREET SO,Brigantine,NJ,39.3954846,-74.38546406,RES1,3001,,17,NE,1993,1993,3102,2,1,1823.011975,1823.011975,3507,NO,27.47,37.06,1,2.07,6106,115.146118,124.672218,134.554066,140.508349,I,Above,Gable,0,5701,Wood,32.26924689,0,0,,,,1,1,,0.03,nav,1,1993,2,, 6927,NJBF000077269,109 28TH STREET SO,Brigantine,NJ,39.39757627,-74.38451516,RES1,3001,,16,NE,1926,1926,3102,2,1,534.9762102,534.9762102,3507,NO,35.32,46.39,1,2.15,6106,115.143056,124.668946,134.551917,140.496065,I,Above,Hip,0,5701,Wood,40.85420315,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 6928,NJBF000075292,315 41ST STREET S0,Brigantine,NJ,39.38938126,-74.39101852,RES1,3001,,43,NE,1964,1964,3102,2,2,1030.400121,1030.400121,3507,NO,38.29,49.07,1,2.31,6110,115.098148,124.630037,134.501897,140.500999,I,Above,Flat,0,5701,Wood,43.67771125,0,0,,,,1,1,,0.35,nav,1,1964,2,, 6929,NJBF000076238,328 33RD STREET SO,Brigantine,NJ,39.3926794,-74.38592415,RES1,3001,,16,NE,1948,1948,3102,2,1,1265.643156,1265.643156,3507,NO,36.21,48.75,1,0.47,6106,115.16719,124.691898,134.574023,140.537714,I,Above,Hip,0,5701,Wood,42.47695817,0,0.1,,,,1,1,,0.03,nav,1,1948,2,, 6930,NJBF000075668,4 ATLANTIS COVE,Brigantine,NJ,39.39066032,-74.40091039,RES1,3001,,16,NE,1972,1972,3102,1,1,1940.070542,1940.070542,3507,NO,16.71,26.93,1,1.14,6106,114.878565,124.432709,134.281953,140.32772,I,Above,Hip,0,5701,Wood,21.81661411,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 6931,NJBF000077431,2205 W BRIGANTINE AVE,Brigantine,NJ,39.39858941,-74.37950079,RES1,3001,,16,NE,1955,1955,3101,2,1,1529.621861,1529.621861,3507,NO,29.48,43.56,1,-0.88,6106,115.234991,124.75298,134.647251,140.562071,I,Above,Hip,0,5701,Wood,36.51644831,0,0,,,,1,1,,0.03,nav,1,1955,2,, 6932,NJBF000073272,30 OCEAN DRIVE WEST,Brigantine,NJ,39.37947199,-74.40894417,RES1,3001,,17,NE,1975,1975,3103,2,1,2238.774126,2238.774126,3505,NO,34.01,47.68,3,-2.53,6106,114.834535,124.398537,134.234858,140.352517,I,Above,Flat,0,5701,Wood,40.84759375,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 6933,NJBF000073222,5218 SEA SPRAY RD,Brigantine,NJ,39.37909252,-74.40765648,RES1,3001,,16,NE,1975,1975,3103,1,1,1885.568945,1885.568945,3505,NO,18.95,32.56,3,4.31,6106,114.865946,124.426238,134.26536,140.377868,I,Above,Gable,0,5701,Wood,25.75191429,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 6934,NJBF000076076,321 35TH STREET SO,Brigantine,NJ,39.39215936,-74.38711614,RES1,3001,,16,NE,1956,1956,3102,1,1,1491.105068,1491.105068,3507,NO,17.53,27.66,1,2.43,6106,115.148301,124.674843,134.554445,140.525795,I,Above,Gable,0,5701,Wood,22.59756298,0,0,,,,1,1,,0.03,nav,1,1956,1,, 6935,NJBF000078091,318 10TH STREET SO,Brigantine,NJ,39.40287943,-74.36956282,RES1,3001,,16,NE,1954,1954,3102,2,1,1584.538743,1584.538743,3502,NO,21.36,35.6,5,-3.39,6106,115.391502,124.897615,134.813526,140.663611,I,Above,Flat,0,5701,Wood,28.48089583,0,0,,,,1,1,,0.03,nav,1,1954,2,, 6936,NJBF000075988,4436 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39184094,-74.40795158,RES1,3001,,18,NE,2001,2001,3103,2,1,1958.976054,1958.976054,3505,NO,27.21,32.47,3,-0.1,6106,114.718602,124.289683,134.123098,140.198945,I,Above,Hip,0,5701,Wood,29.84398646,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 6937,NJBF000074848,5 SHIPMASTER COVE,Brigantine,NJ,39.38797315,-74.40003051,RES1,3001,,16,NE,1968,1968,3102,1,1,1744.669122,1744.669122,3507,NO,18.48,24.02,1,2.66,6110,114.926351,124.476513,134.328862,140.377844,I,Above,Hip,0,5701,Wood,21.25152695,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 6938,NJBF000075430,,Brigantine,NJ,39.38984682,-74.38895023,RES1,3001,,NaN,NE,1969,0,3102,2,1,2013.690114,2013.690114,3507,NO,31.49,39.53,1,1.53,6110,115.135825,124.663936,134.540316,140.5273,I,Above,Gable,0,5701,Wood,35.5089907,0,0,,,,1,1,,0.35,nav,1,1969,2,, 6939,NJBF000075737,311 38TH STREET SO,Brigantine,NJ,39.39093002,-74.38928978,RES1,3001,,47,NE,1956,1956,3102,2,4,1906.865118,1906.865118,3507,NO,22.97,29.09,1,-0.1,6106,115.116877,124.646629,134.521776,140.507766,I,Above,Hip,0,5701,Wood,26.03091582,0,0,,,,1,1,,0.03,nav,1,1956,2,, 6940,NJBF000075655,310 38TH STREET SO,Brigantine,NJ,39.39062497,-74.3895756,RES1,3001,,19,NE,2006,2006,3102,3,1,1832.516131,1832.516131,3507,NO,58.65,72.84,1,1.72,6106,115.114315,124.644373,134.518998,140.507281,I,Above,Hip,0,5701,Wood,65.74511996,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 6941,NJBF000074087,4629 HARBOR BEACH BLVD,Brigantine,NJ,39.3848336,-74.4000687,RES1,3001,,43,NE,1976,1976,3102,2,2,1310.865183,1310.865183,3507,NO,35.74,48.76,1,2.47,6106,114.960366,124.507879,134.361356,140.419377,I,Above,Gable,0,5701,Wood,42.24839066,0,0,,,,1,1,,0.03,nav,1,1976,2,, 6942,NJBF000075614,,Brigantine,NJ,39.3905004,-74.38596214,RES3C,3001,,NaN,E,1969,0,3303,3,1,2686.773769,2686.773769,3507,NO,46.28,58.78,1,2.73,6106,115.190332,124.713167,134.596147,140.565509,I,Above,Gable,0,NaN,Wood,52.53060102,0,0,,,,1,1,,0.03,nav,1,1969,3,, 6943,NJBF000074140,523 CASA DRIVE,Brigantine,NJ,39.3850488,-74.40356703,RES3B,3001,,33,ME,1980,1980,3301,2,1,7941.74355,7941.74355,3507,YES,38.8,49.15,1,1.27,6106,114.884829,124.440763,134.286589,140.361416,I,Above,Gable,0,5701,Wood,43.97560254,0,0,,,,1,1,,0.03,nav,1,1980,2,, 6944,NJBF000075274,319 41ST STREET SO,Brigantine,NJ,39.38932531,-74.39088675,RES1,3001,,43,NE,1964,1964,3102,2,2,1505.265454,1505.265454,3507,NO,27.6,35.65,1,-0.33,6110,115.1015,124.633067,134.50525,140.503806,I,Above,Gable,0,5701,Wood,31.62718012,0,0,,,,1,1,,0.35,nav,1,1964,2,, 6945,NJBF000074209,,Brigantine,NJ,39.38536866,-74.39927602,RES1,3001,,NaN,NE,1969,0,3102,2,1,1273.335422,1273.335422,3507,NO,23.23,36.92,1,2.16,6106,114.970956,124.517141,134.372156,140.424666,I,Above,Hip,0,5701,Wood,30.07515159,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6946,NJBF000074126,,Brigantine,NJ,39.38501908,-74.40033168,RES1,3001,,NaN,NE,1977,0,3102,2,1,1372.316237,1372.316237,3507,NO,32.34,42.89,1,1.68,6110,114.95281,124.501105,134.353943,140.412765,I,Above,Flat,0,5701,Wood,37.61526082,0,0,,,,1,1,,0.35,nav,1,1977,2,, 6947,NJBF000080928,809 STERLING PLACE,Brigantine,NJ,39.41690948,-74.38066338,RES1,3001,,16,NE,1974,1974,3103,2,1,1921.349196,1921.349196,3505,YES,39.17,47.25,3,3.12,6106,115.020058,124.546946,134.425114,140.306105,I,Above,Hip,0,5701,Wood,43.21463505,0,0,,,,1,1,,0.03,nav,1,1974,2,, 6948,NJBF000080950,811 BOBBY JONES RD,Brigantine,NJ,39.41700233,-74.3816164,RES1,3001,,16,NE,1974,1974,3103,2,1,1866.391781,1866.391781,3505,NO,28.93,42.63,3,0.07,6106,114.999762,124.527922,134.403729,140.28934,I,Above,Gable,0,5701,Wood,35.77744268,0,0,,,,1,1,,0.03,nav,1,1974,2,, 6949,NJBF000080732,711 LAFAYETTE BLVD,Brigantine,NJ,39.41605904,-74.37918589,RES1,3001,,17,NE,1967,1967,3103,3,1,1818.629628,1818.629628,3505,NO,52.92,59.54,3,-2.72,6106,115.058664,124.583543,134.466014,140.341189,I,Above,Hip,0,5701,Wood,56.23032476,0,1.2,,,,1,1,,0.03,nav,1,1967,3,, 6950,NJBF000080817,,Brigantine,NJ,39.41645771,-74.37702951,RES1,3001,,NaN,NE,1960,0,3103,6,1,2603.388153,2603.388153,3505,NO,102.08,114.48,3,0.91,6106,115.098332,124.620485,134.507803,140.37105,I,Above,Hip,0,5701,Wood,108.2769679,0,0,,,,1,1,,0.03,nav,1,1960,6,, 6951,NJBF000080873,803 SARAZEN RD,Brigantine,NJ,39.41667618,-74.37620237,RES1,3001,,17,NE,1987,1987,3103,2,1,1101.358174,1101.358174,3505,NO,29.97,36.55,3,-0.77,6106,115.112888,124.634036,134.523167,140.381673,I,Above,Gable,0,5701,Wood,33.25827714,0,0,,,,1,1,,0.03,nav,1,1987,2,, 6952,NJBF000080824,1323 RAY AVE,Brigantine,NJ,39.41647558,-74.37524226,RES1,3001,,17,NE,1988,1988,3103,1,1,1994.661342,1994.661342,3505,NO,21.57,33.48,3,5.55,6106,115.134364,124.654297,134.545942,140.399802,I,Above,Gable,0,5701,Wood,27.52781161,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 6953,NJBF000080872,1330 OUIMET RD,Brigantine,NJ,39.41667293,-74.37595284,RES1,3001,,17,NE,1981,1981,3103,2,1,1504.64134,1504.64134,3505,NO,30.18,41.97,3,1,6106,115.117961,124.638801,134.528539,140.385749,I,Above,Gable,0,5701,Wood,36.07523877,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 6954,NJBF000080860,813 W SHORE DR,Brigantine,NJ,39.41660765,-74.38245563,RES1,3001,,16,NE,1972,1972,3103,2,1,1643.034227,1643.034227,3505,NO,36.51,45.81,3,8.61,6106,114.986673,124.515963,134.390124,140.280756,I,Above,Flat,0,5701,Wood,41.16140043,0,0,,,,1,1,,0.03,nav,1,1972,2,, 6955,NJBF000080682,1311 DUNCAN PLACE,Brigantine,NJ,39.41589962,-74.37401516,RES1,3001,,16,NE,1984,1984,3102,1,1,1675.826126,1675.826126,3507,NO,17.96,26.44,1,-0.48,6106,115.165079,124.683404,134.578556,140.427034,I,Above,Gable,0,5701,Wood,22.20055189,0,0,,,,1,1,,0.03,nav,1,1984,1,, 6956,NJBF000080609,709 STERLING PLACE,Brigantine,NJ,39.41560883,-74.37993102,RES1,3001,,16,NE,1974,1974,3103,1,1,2107.412049,2107.412049,3505,NO,19.53,33.19,3,4.63,6106,115.048113,124.573933,134.45501,140.334912,I,Above,Gable,0,5701,Wood,26.35949023,0,0,,,,1,1,,0.03,nav,1,1974,1,, 6957,NJBF000073353,9 SEA SPRAY COURT,Brigantine,NJ,39.38005998,-74.4048075,RES1,3001,,19,NE,2008,2008,3101,2,1,2708.631816,2708.631816,3507,NO,36.85,46.02,1,2.4,6106,114.914824,124.468955,134.313795,140.409337,I,Above,Hip,0,5701,Wood,41.4393294,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 6958,NJBF000081102,835 BOBBY JONES RD,Brigantine,NJ,39.41754581,-74.38074488,RES1,3001,,15,NE,1950,1950,3103,1,1,1340.150612,1340.150612,3505,NO,18.26,27.9,3,2.49,6106,115.011953,124.538967,134.416362,140.296484,I,Above,Gable,0,5701,Wood,23.07782014,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6959,NJBF000074627,36 LIGHTHOUSE DR,Brigantine,NJ,39.38724253,-74.40173741,RES1,3001,,43,NE,1986,1986,3102,2,2,1680.518338,1680.518338,3507,NO,25.8,38.51,1,1.12,6106,114.89879,124.452269,134.301194,140.360697,I,Above,Gable,0,5701,Wood,32.15808869,0,0,,,,1,1,,0.03,nav,1,1986,2,, 6960,NJBF000076288,320 33RD STREET SO,Brigantine,NJ,39.39285194,-74.38611632,RES1,3001,,18,NE,2014,2014,3102,3,1,1333.105635,1333.105635,3507,NO,33.76,44.1,1,0.78,6106,115.161341,124.686559,134.56816,140.532444,I,Above,Hip,0,5701,Wood,38.92932859,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 6961,NJBF000078340,1200 BAYSHORE AVE,Brigantine,NJ,39.40484818,-74.37354076,RES1,3001,,16,NE,1958,1958,3102,2,1,1555.203397,1555.203397,3505,NO,37.59,48.89,3,5.92,6106,115.289742,124.802796,134.707667,140.575912,I,Above,Flat,0,5701,Wood,43.24193212,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 6962,NJBF000075883,,Brigantine,NJ,39.39148999,-74.4087165,RES1,3001,,NaN,NE,1969,0,3103,6,1,2321.454665,2321.454665,3505,NO,102.45,117.22,3,4.73,6106,114.706384,124.279102,134.111062,140.19147,I,Above,Gable,0,5701,Wood,109.8367808,0,0,,,,1,1,,0.03,nav,1,1969,6,, 6963,NJBF000078348,1101 W BEACH AVE,Brigantine,NJ,39.40491143,-74.37246644,RES1,3001,,16,NE,1950,1950,3102,1,1,1646.340939,1646.340939,3505,NO,18.95,25.87,3,7.44,6106,115.310924,124.822499,134.72996,140.592114,I,Above,Hip,0,5701,Wood,22.41088662,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 6964,NJBF000077866,343 13TH STREET SO,Brigantine,NJ,39.4013275,-74.3708655,RES1,3001,,17,NE,1994,1994,3102,1,1,1521.905204,1521.905204,3502,NO,26.96,37.43,5,13.15,6106,115.38168,124.888415,134.802048,140.662798,I,Above,Flat,0,5701,Wood,32.19482388,0,0,,,,1,1,,0.03,nav,1,1994,1,, 6965,NJBF000077860,211 17TH STREET SO,Brigantine,NJ,39.40128724,-74.37528108,RES1,3001,,16,NE,1955,1955,3101,1,1,2536.783802,2536.783802,3507,NO,16.31,21.82,1,2.74,6106,115.292236,124.805472,134.708346,140.593914,I,Above,Hip,0,5701,Wood,19.06612703,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 6966,NJBF000076613,115 38TH STREET SO,Brigantine,NJ,39.394091,-74.3923335,COM1,3001,,NaN,ME,1969,0,3401,1,1,3713.0085,3713.0085,3507,YES,12.48,26.22,1,0.13,6106,115.019432,124.557721,134.424461,140.418056,I,Above,Flat,0,NaN,Wood,19.34542787,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6967,NJBF000078347,1006 W BEACH AVE,Brigantine,NJ,39.40490591,-74.37154089,RES1,3001,,15,NE,1954,1954,3102,1,1,1406.768334,1406.768334,3505,NO,18.26,32.16,3,4.92,6106,115.329764,124.840049,134.749785,140.606794,I,Above,Gable,0,5701,Wood,25.20861626,0,0,,,,1,1,,0.03,nav,1,1954,1,, 6968,NJBF000076271,,Brigantine,NJ,39.39280317,-74.3949027,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4546.059733,4546.059733,3507,NO,13.96,24.06,1,1.44,6106,114.980176,124.522818,134.384385,140.394426,I,Above,Hip,0,5701,Wood,19.01038085,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6969,NJBF000075878,14 ATLANTIS COVE,Brigantine,NJ,39.39146616,-74.40094251,RES1,3001,,19,NE,2007,2007,3102,3,1,2767.240785,2767.240785,3507,NO,55.72,65.3,1,1.2,6106,114.869105,124.423859,134.27265,140.316315,I,Above,Gable,0,5701,Wood,60.51065983,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 6970,NJBF000075866,242 39TH STREET SO,Brigantine,NJ,39.3914287,-74.39198321,RES1,3001,,16,NE,1950,1950,3102,1,1,1597.762837,1597.762837,3507,NO,19.16,25.85,1,1.5,6106,115.055681,124.59128,134.460078,140.458829,I,Above,Hip,0,5701,Wood,22.50483364,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 6971,NJBF000076624,,Brigantine,NJ,39.39412605,-74.40070037,RES1,3001,,NaN,NE,1969,0,3102,2,1,2533.642235,2533.642235,3507,NO,31.72,36.82,1,-0.3,6106,114.845408,124.401209,134.249204,140.284267,I,Above,Flat,0,5701,Wood,34.26686072,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6972,NJBF000076276,3712 BAYSHORE AVE,Brigantine,NJ,39.3928205,-74.391915,RES1,3001,,16,NE,1950,1950,3102,1,1,1377.154661,1377.154661,3507,NO,13.32,22.16,1,0.77,6106,115.041907,124.578443,134.446753,140.441514,I,Above,Gable,0,5701,Wood,17.73790633,0,0,,,,1,1,,0.03,nav,1,1950,1,, 6973,NJBF000075157,315 42ND STREET SO,Brigantine,NJ,39.38888602,-74.3916061,RES1,3001,,47,NE,1977,1977,3102,3,2,1813.50955,1813.50955,3507,NO,41.94,56.58,1,-0.48,6110,115.091451,124.624106,134.494837,140.498315,I,Above,Flat,0,5701,Wood,49.26070321,0,0,,,,1,1,,0.35,nav,1,1977,3,, 6974,NJBF000075161,,Brigantine,NJ,39.38889738,-74.38964273,RES3C,3001,,NaN,ME,2004,0,3301,2,1,4820.930998,4820.930998,3507,NO,26.28,33.02,1,1.2,6110,115.131981,124.660614,134.535795,140.52891,I,Above,Flat,0,NaN,Wood,29.64923218,0,0,,,,1,1,,0.35,nav,1,2004,2,, 6975,NJBF000075171,136 44TH STREET SO,Brigantine,NJ,39.38893536,-74.39429221,RES1,3001,,43,NE,1970,1970,3102,2,2,1277.638823,1277.638823,3507,NO,24,35.23,1,1.9,6106,115.035189,124.573536,134.438202,140.45549,I,Above,Gable,0,5701,Wood,29.61545944,0,0,,,,1,1,,0.03,nav,1,1970,2,, 6976,NJBF000075150,,Brigantine,NJ,39.388862,-74.394187,RES1,3001,,NaN,NE,1970,0,3102,2,1,1264.220951,1264.220951,3507,NO,35.86,41.64,1,0.47,6106,115.038175,124.576234,134.441166,140.458109,I,Above,Gable,0,5701,Wood,38.75399097,0,0,,,,1,1,,0.03,nav,1,1970,2,, 6977,NJBF000075153,6 EXPLORER COVE,Brigantine,NJ,39.38886913,-74.40048014,RES1,3001,,16,NE,1968,1968,3102,1,1,2186.539773,2186.539773,3507,NO,18.78,25.73,1,-0.34,6106,114.907127,124.45901,134.309997,140.358686,I,Above,Gable,0,5701,Wood,22.2563676,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 6978,NJBF000075208,,Brigantine,NJ,39.38906562,-74.39441112,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2886.878436,2886.878436,3507,NO,18.87,31.44,1,-0.1,6106,115.031274,124.569987,134.434332,140.45188,I,Above,Gable,0,5701,Wood,25.15478324,0,0,,,,1,1,,0.03,nav,1,1969,1,, 6979,NJBF000077118,2901 REVERE BLVD,Brigantine,NJ,39.39666586,-74.38549308,RES1,3001,,16,NE,1956,1956,3102,3,1,1792.37658,1792.37658,3507,NO,54.63,62.07,1,-0.3,6106,115.132753,124.659767,134.540938,140.492475,I,Above,Gable,0,5701,Wood,58.35141215,0,1.1,,,,1,1,,0.03,nav,1,1956,3,, 6980,NJBF000076181,,Brigantine,NJ,39.392513,-74.3886435,RES1,3001,,NaN,NE,1969,0,3102,2,1,2702.341706,2702.341706,3507,NO,34.14,42.24,1,-0.06,6106,115.112887,124.64269,134.518614,140.497144,I,Above,Hip,0,5701,Wood,38.18854911,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6981,NJBF000078269,103 13TH STREET SO,Brigantine,NJ,39.40429331,-74.37363818,RES1,3001,,16,NE,1958,1958,3102,1,1,1763.309087,1763.309087,3505,NO,17.6,30.23,3,3.71,6106,115.293655,124.806497,134.711496,140.581457,I,Above,Flat,0,5701,Wood,23.9149825,0,0,,,,1,1,,0.03,nav,1,1958,1,, 6982,NJBF000077751,1904 REVERE BLVD,Brigantine,NJ,39.40068587,-74.37812041,RES1,3001,,17,NE,1955,1955,3101,1,1,2540.408301,2540.408301,3507,NO,17.43,23.55,1,2.15,6106,115.240726,124.757965,134.654346,140.556844,I,Above,Hip,0,5701,Wood,20.49031987,0,0,,,,1,1,,0.03,nav,1,1955,1,, 6983,NJBF000075340,362 GULL COVE,Brigantine,NJ,39.38956175,-74.40573246,RES3B,3001,,35,ME,1984,1984,3301,2,1,2492.986347,2492.986347,3507,YES,29.98,44.89,1,1.39,6106,114.7898,124.354308,134.193589,140.265739,I,Above,Gable,0,5701,Wood,37.43424035,0,0,,,,1,1,,0.03,nav,1,1984,2,, 6984,NJBF000078266,214 11TH STREET SO,Brigantine,NJ,39.404254,-74.3719225,RES1,3001,,15,NE,1954,1954,3102,1,1,1036.303955,1036.303955,3505,NO,18.45,26.59,3,0.54,6106,115.328949,124.839332,134.748559,140.609061,I,Above,Gable,0,5701,Wood,22.52153523,0,0,,,,1,1,,0.03,nav,1,1954,1,, 6985,NJBF000078249,222 11TH STREET SO,Brigantine,NJ,39.40409003,-74.37179397,RES1,3001,,16,NE,1946,1946,3102,1,1,1313.175957,1313.175957,3505,NO,17.57,30.47,3,4.28,6106,115.333293,124.843385,134.753032,140.613164,I,Above,Hip,0,5701,Wood,24.0204285,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 6986,NJBF000076202,3416 W BRIGANTINE AVE,Brigantine,NJ,39.39258266,-74.38752696,RES1,3001,,16,NE,1954,1954,3102,2,1,1056.542049,1056.542049,3507,NO,21.9,36.35,1,0.7,6106,115.135182,124.662873,134.541335,140.513794,I,Above,Gable,0,5701,Wood,29.12518203,0,0.1,,,,1,1,,0.03,nav,1,1954,2,, 6987,NJBF000077748,1307 OCEAN AVE,Brigantine,NJ,39.40067358,-74.3710495,RES1,3001,,17,NE,1945,1945,3102,3,1,1601.877789,1601.877789,3502,NO,52.63,59.2,5,4.58,6110,115.384967,124.891441,134.805001,140.668194,I,Above,Hip,0,5701,Wood,55.91357015,0,1.1,,,,1,1,,0.35,nav,1,1945,3,, 6988,NJBF000077754,1301 OCEAN AVE,Brigantine,NJ,39.40072692,-74.37092441,RES1,3001,,16,NE,1930,1930,3102,2,1,1376.133723,1376.133723,3502,NO,37.82,50.85,5,10.4,6110,115.386938,124.893274,134.807111,140.669481,I,Above,Flat,0,5701,Wood,44.33395329,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 6989,NJBF000077736,2005 REVERE BLVD,Brigantine,NJ,39.40062496,-74.37918414,RES1,3001,,17,NE,1953,1953,3101,2,1,1545.993098,1545.993098,3507,NO,36.13,50.92,1,1.91,6106,115.219629,124.738535,134.632403,140.54082,I,Above,Hip,0,5701,Wood,43.52540747,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 6990,NJBF000076205,332 33RD STREET SO,Brigantine,NJ,39.39259157,-74.38583517,RES1,3001,,16,NE,1956,1956,3102,2,1,1371.25063,1371.25063,3507,NO,33.62,47.4,1,-0.34,6106,115.169976,124.694441,134.576812,140.540245,I,Above,Hip,0,5701,Wood,40.51038753,0,0,,,,1,1,,0.03,nav,1,1956,2,, 6991,NJBF000080251,43 CUMMINGS PLACE,Brigantine,NJ,39.41444496,-74.37407883,RES1,3001,,16,NE,1972,1972,3102,2,1,1374.165067,1374.165067,3507,NO,38.81,49.68,1,2.24,6106,115.178698,124.696746,134.593008,140.444637,I,Above,Flat,0,5701,Wood,44.24597469,0,0,,,,1,1,,0.03,nav,1,1972,2,, 6992,NJBF000076190,325 34TH STREET SO,Brigantine,NJ,39.39253217,-74.38636703,RES1,3001,,15,NE,1951,1951,3102,1,1,769.1663567,769.1663567,3507,NO,19.12,31.86,1,1.22,6106,115.159666,124.685091,134.566256,140.53268,I,Above,Flat,0,5701,Wood,25.48926079,0,0,,,,1,1,,0.03,nav,1,1951,1,, 6993,NJBF000076062,,Brigantine,NJ,39.39211095,-74.40733217,RES1,3001,,NaN,NE,1969,0,3103,5,1,1978.678866,1978.678866,3505,NO,85.61,95.9,3,2,6106,114.728671,124.298427,134.133034,140.205218,I,Above,Gable,0,5701,Wood,90.7537972,0,0,,,,1,1,,0.03,nav,1,1969,5,, 6994,NJBF000075524,201 LAGOON BLVD,Brigantine,NJ,39.39017102,-74.4022087,RES1,3001,,16,NE,1978,1978,3102,2,1,2032.559035,2032.559035,3507,YES,35.5,46.84,1,0.66,6106,114.856797,124.413543,134.260171,140.313651,I,Above,Gable,0,5701,Wood,41.16766719,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 6995,NJBF000080221,9 CUMMINGS PLACE,Brigantine,NJ,39.41433581,-74.37205916,RES1,3001,,17,NE,1972,2017,3102,3,1,1131.791651,1131.791651,3507,NO,53.28,67.61,1,1.1,6106,115.220699,124.73624,134.637553,140.478535,I,Above,Gable,0,5701,Wood,60.4402701,0,1.1,,,,1,1,,0.03,nav,1,1972,3,, 6996,NJBF000080210,10 CUMMINGS PLACE,Brigantine,NJ,39.41429652,-74.37254252,RES1,3001,,16,NE,1972,1972,3102,2,1,2178.087993,2178.087993,3507,NO,37.19,42.61,1,1.3,6106,115.21131,124.727426,134.62758,140.471252,I,Above,Gable,0,5701,Wood,39.89888725,0,0,,,,1,1,,0.03,nav,1,1972,2,, 6997,NJBF000079784,,Brigantine,NJ,39.41281726,-74.36090057,RES1,3001,,NaN,NE,1969,0,3102,2,1,1208.581616,1208.581616,3507,NO,29.9,39.24,1,0.82,6106,115.46139,124.96384,134.894401,140.675567,I,Above,Flat,0,5701,Wood,34.56965147,0,0,,,,1,1,,0.03,nav,1,1969,2,, 6998,NJBF000079650,105 6TH STREET NO,Brigantine,NJ,39.41214088,-74.36125553,RES1,3001,,47,NE,1983,1983,3102,2,2,1873.671957,1873.671957,3507,NO,28.98,37.72,1,0.89,6106,115.461324,124.963732,134.893938,140.678361,I,Above,Gable,0,5701,Wood,33.34736272,0,0,,,,1,1,,0.03,nav,1,1983,2,, 6999,NJBF000079668,103 6TH STREET NO,Brigantine,NJ,39.41223235,-74.36137292,RES1,3001,,15,NE,1955,1955,3102,1,1,1459.395145,1459.395145,3507,NO,15.04,22.78,1,0.7,6106,115.45802,124.960604,134.890438,140.675379,I,Above,Flat,0,5701,Wood,18.91019338,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 7000,NJBF000079467,506 E BEACH AVE,Brigantine,NJ,39.41128166,-74.36083355,RES1,3001,,19,NE,1953,2018,3102,2,1,1034.505068,1034.505068,3507,NO,36.61,49.06,1,2.09,6106,115.478808,124.980238,134.912205,140.695706,I,Above,Hip,0,5701,Wood,42.83436736,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 7001,NJBF000078085,313 11TH STREET SO,Brigantine,NJ,39.4028226,-74.36998712,RES1,3001,,16,NE,1951,1951,3102,1,1,1436.553358,1436.553358,3502,NO,31.42,41.99,5,14.62,6110,115.383496,124.890153,134.805051,140.657661,I,Above,Hip,0,5701,Wood,36.70683995,0,0,,,,1,1,,0.35,nav,1,1951,1,, 7002,NJBF000076327,217 37TH STREET SO,Brigantine,NJ,39.3929817,-74.39086368,RES1,3001,,43,NE,1948,1948,3102,2,2,929.9346046,929.9346046,3507,NO,29.02,36.64,1,2.05,6106,115.06189,124.59644,134.467065,140.455978,I,Above,Hip,0,5701,Wood,32.83158498,0,0.1,,,,1,1,,0.03,nav,1,1948,2,, 7003,NJBF000078139,1107 W BRIGANTINE AVE,Brigantine,NJ,39.40319805,-74.37114655,RES1,3001,,18,NE,2004,2004,3102,2,1,2357.338344,2357.338344,3505,NO,32.13,46.44,3,8.98,6106,115.355937,124.864494,134.776299,140.634677,I,Above,Hip,0,5701,Wood,39.28584307,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 7004,NJBF000075582,282 40TH STREET SO,Brigantine,NJ,39.39039393,-74.39185562,RES1,3001,,17,NE,2008,2008,3102,3,1,1397.947828,1397.947828,3507,NO,59.42,68.26,1,1.93,6106,115.069659,124.604148,134.473688,140.4745,I,Above,Hip,0,5701,Wood,63.84045061,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 7005,NJBF000075212,,Brigantine,NJ,39.38907405,-74.39054465,RES1,3001,,NaN,NE,1969,0,3102,2,1,1139.458536,1139.458536,3507,NO,32.11,39.34,1,-0.07,6110,115.111353,124.641991,134.515051,140.512467,I,Above,Gable,0,5701,Wood,35.72390108,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7006,NJBF000078029,349 10TH STREET SO,Brigantine,NJ,39.40243146,-74.36849253,RES1,3001,,18,NE,2012,2012,3102,2,1,1870.394325,1870.394325,3502,NO,26.75,33.71,5,-0.11,6110,115.418002,124.922296,134.84113,140.686043,I,Above,Gable,0,5701,Wood,30.23247211,0,0,,,,1,1,,0.35,nav,1,2012,2,, 7007,NJBF000078016,353 10TH STREET SO,Brigantine,NJ,39.40232524,-74.36843113,RES1,3001,,15,NE,1952,1952,3102,1,1,1151.953332,1151.953332,3502,NO,18.74,25.64,5,-0.38,6110,115.420395,124.924519,134.843571,140.68835,I,Above,Gable,0,5701,Wood,22.19209615,0,0,,,,1,1,,0.35,nav,1,1952,1,, 7008,NJBF000078047,247 14TH STREET SO,Brigantine,NJ,39.40254,-74.3731535,RES1,3001,,16,NE,1955,1955,3102,1,1,768.4444751,768.4444751,3505,NO,17.7,24.77,3,4.41,6106,115.322161,124.833119,134.740411,140.611437,I,Above,Hip,0,5701,Wood,21.23628412,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7009,NJBF000078032,251 14TH STREET SO,Brigantine,NJ,39.4024485,-74.3730755,RES1,3001,,16,NE,1964,1964,3102,2,1,956.9846624,956.9846624,3505,NO,32.36,40.62,3,-2.86,6106,115.32475,124.835528,134.74307,140.613853,I,Above,Gable,0,5701,Wood,36.48761301,0,0,,,,1,1,,0.03,nav,1,1964,2,, 7010,NJBF000077777,336 14TH STREET SO,Brigantine,NJ,39.40081335,-74.37219089,RES1,3001,,16,NE,1954,1954,3102,1,1,1335.324946,1335.324946,3502,NO,21.73,28.73,5,5.16,6106,115.360249,124.868501,134.779181,140.648531,I,Above,Hip,0,5701,Wood,25.23081718,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7011,NJBF000077643,302 17TH STREET SO,Brigantine,NJ,39.40005044,-74.37481938,RES1,3001,,16,NE,1958,1958,3102,1,1,1613.769812,1613.769812,3505,NO,11.38,22.48,3,0.55,6106,115.314924,124.826532,134.731247,140.616987,I,Above,Gable,0,5701,Wood,16.93076113,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 7012,NJBF000077637,317 16TH STREET SO,Brigantine,NJ,39.4000045,-74.37308508,RES1,3001,,18,NE,1980,1980,3102,2,1,2359.928209,2359.928209,3505,YES,34.49,44.86,3,0.65,6106,115.350741,124.859678,134.768636,140.644776,I,Above,Hip,0,5701,Wood,39.67256818,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 7013,NJBF000077616,321 16TH STREET SO,Brigantine,NJ,39.39987064,-74.37294134,RES1,3001,,19,NE,2005,2005,3102,3,1,2424.092264,2424.092264,3505,NO,38.49,48.9,3,4.52,6106,115.355116,124.863729,134.773113,140.648736,I,Above,Hip,0,5701,Wood,43.69531056,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7014,NJBF000077426,104 26TH STREET SO,Brigantine,NJ,39.39855181,-74.38398169,RES1,3001,,15,NE,1951,1951,3102,1,1,1088.876771,1088.876771,3507,NO,17.27,30.91,1,0.04,6106,115.143517,124.669124,134.552808,140.491781,I,Above,Hip,0,5701,Wood,24.09356352,0,0,,,,1,1,,0.03,nav,1,1951,1,, 7015,NJBF000077349,315 21ST STREET SO,Brigantine,NJ,39.39805298,-74.37688474,RES1,3001,,17,NE,1958,1958,3102,2,1,2142.772287,2142.772287,3507,NO,21.47,35.47,1,-0.31,6106,115.294275,124.807566,134.708392,140.610087,I,Above,Gable,0,5701,Wood,28.46732884,0,0,,,,1,1,,0.03,nav,1,1958,2,, 7016,NJBF000077307,306 22ND STREET SO,Brigantine,NJ,39.39780763,-74.37841431,RES1,3001,,17,NE,1988,1988,3102,2,1,1818.11288,1818.11288,3507,NO,32.51,41.09,1,1.67,6106,115.265658,124.781251,134.678541,140.589225,I,Above,Hip,0,5701,Wood,36.80031167,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 7017,NJBF000076936,211 31ST STREET SO,Brigantine,NJ,39.39550432,-74.38603329,COM1,3001,,NaN,ME,1969,0,3401,2,1,2068.799087,2068.799087,3507,YES,33.78,38.91,1,-0.87,6106,115.134199,124.661361,134.541876,140.499126,I,Above,Gable,0,NaN,Wood,36.34368308,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7018,NJBF000077098,3107 BAYSHORE AVENUE,Brigantine,NJ,39.39649661,-74.38793605,RES1,3001,,18,NE,2004,2004,3102,2,1,2358.64218,2358.64218,3507,NO,37.68,51.52,1,0.82,6106,115.084269,124.615671,134.491257,140.456028,I,Above,Hip,0,5701,Wood,44.60282856,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 7019,NJBF000077180,310 23RD STREET SO,Brigantine,NJ,39.3970865,-74.3789075,RES1,3001,,16,NE,1954,1954,3102,2,1,1650.32971,1650.32971,3507,YES,38.66,45.41,1,1.06,6106,115.263365,124.779203,134.675694,140.590755,I,Above,Gable,0,5701,Wood,42.03606659,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7020,NJBF000077468,307 20TH STREET SO,Brigantine,NJ,39.39886036,-74.37645259,RES1,3001,,16,NE,1954,1954,3102,1,1,2435.920645,2435.920645,3507,NO,15.91,22.82,1,-0.44,6106,115.294391,124.807631,134.70906,140.606532,I,Above,Flat,0,5701,Wood,19.36416518,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 7021,NJBF000077126,2104 OCEAN AVE,Brigantine,NJ,39.3967182,-74.37678491,RES1,3001,,18,NE,1970,1970,3102,2,1,2894.022904,2894.022904,3507,NO,21.7,33.71,1,-0.14,6106,115.310775,124.822795,134.724556,140.628749,I,Above,Gable,0,5701,Wood,27.70286074,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 7022,NJBF000076980,405 24TH STREET SO,Brigantine,NJ,39.39568808,-74.3779956,RES1,3001,,20,NE,2001,2001,3102,3,1,706.1032346,706.1032346,3507,NO,47.33,52.85,1,0.16,6106,115.297197,124.810334,134.709707,140.623,I,Above,Hip,0,5701,Wood,50.09045318,0,1.2,,,,1,1,,0.03,nav,1,2001,3,, 7023,NJBF000076900,,Brigantine,NJ,39.39527682,-74.38523661,RES1,3001,,NaN,NE,1969,0,3102,2,1,2021.461768,2021.461768,3507,NO,39.05,53.8,1,2.06,6106,115.153045,124.67857,134.561052,140.51464,I,Above,Gable,0,5701,Wood,46.42498476,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7024,NJBF000076884,,Brigantine,NJ,39.39518783,-74.38507707,RES1,3001,,NaN,NE,1969,0,3102,2,1,1578.119017,1578.119017,3507,NO,38.47,50.46,1,-0.51,6106,115.157303,124.682466,134.565366,140.518322,I,Above,Hip,0,5701,Wood,44.46284091,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7025,NJBF000075752,331 GULL COVE,Brigantine,NJ,39.390992,-74.4048165,RES3B,3001,,35,ME,1999,1998,3301,3,1,7527.73042,7527.73042,3507,NO,34.35,48.29,1,0.07,6106,114.793404,124.356664,134.197245,140.26089,I,Above,Hip,0,5701,Wood,41.31638506,0,1.1,,,,1,1,,0.03,nav,1,1999,3,, 7026,NJBF000076700,4205 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39444412,-74.40306968,RES1,3001,,43,NE,1954,1954,3102,1,2,2582.308714,2582.308714,3507,NO,19.2,24.31,1,0.33,6106,114.792621,124.353799,134.19642,140.241921,I,Above,Gable,0,5701,Wood,21.75287404,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7027,NJBF000076643,2805 OCEAN AVE,Brigantine,NJ,39.39418331,-74.38192127,RES1,3001,,18,NE,1930,1930,3102,2,1,2180.142827,2180.142827,3507,NO,25.24,37.76,1,2.05,6106,115.23312,124.751751,134.642534,140.580945,I,Above,Hip,0,5701,Wood,31.50301635,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 7028,NJBF000076128,,Brigantine,NJ,39.39232287,-74.40689235,RES1,3001,,NaN,NE,1969,0,3103,5,1,1667.579794,1667.579794,3505,NO,62.7,77,3,1.1,6106,114.735594,124.304427,134.139871,140.209392,I,Above,Gable,0,5701,Wood,69.85093614,0,0,,,,1,1,,0.03,nav,1,1969,5,, 7029,NJBF000075765,342 36TH STREET SO,Brigantine,NJ,39.39104061,-74.38769024,RES1,3001,,43,NE,1958,1958,3102,2,3,1132.99384,1132.99384,3507,NO,34.63,42.79,1,2.43,6106,115.148717,124.675404,134.554172,140.531409,I,Above,Gable,0,5701,Wood,38.70662539,0,0,,,,1,1,,0.03,nav,1,1958,2,, 7030,NJBF000076348,3312 W BRIGANTINE AVE,Brigantine,NJ,39.39306677,-74.38682511,COM1,3001,,NaN,ME,1969,0,3401,1,1,2151.363094,2151.363094,3507,NO,16.89,23.68,1,1.93,6106,115.144376,124.67112,134.550981,140.518498,I,Above,Flat,0,NaN,Wood,20.28607242,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7031,NJBF000076818,3925 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39491444,-74.39654344,RES1,3001,,17,NE,1958,1958,3102,2,1,3140.401704,3140.401704,3507,NO,38.66,49.07,1,2.2,6106,114.923324,124.470725,134.327547,140.340141,I,Above,Flat,0,5701,Wood,43.86363498,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 7032,NJBF000075604,105 SHIPMASTER DRIVE,Brigantine,NJ,39.39047725,-74.40292909,RES1,3001,,18,NE,1989,1989,3102,2,1,2113.305091,2113.305091,3507,NO,39.65,48.69,1,1.15,6106,114.838429,124.397022,134.24194,140.298033,I,Above,Flat,0,5701,Wood,44.16999031,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 7033,NJBF000080508,1315 SHERIDAN BLVD,Brigantine,NJ,39.41529966,-74.37417271,RES1,3001,,16,NE,1970,1970,3102,1,1,2117.612021,2117.612021,3507,NO,21,34.78,1,2.9,6106,115.168023,124.686404,134.581697,140.432169,I,Above,Gable,0,5701,Wood,27.8889087,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 7034,NJBF000081163,831 W SHORE DR,Brigantine,NJ,39.41783338,-74.38196378,RES1,3001,,16,NE,1973,1973,3103,2,1,961.5065677,961.5065677,3505,NO,31.63,38.48,3,8.12,6106,114.984308,124.512931,134.387154,140.272819,I,Above,Gable,0,5701,Wood,35.05473771,0,0,,,,1,1,,0.03,nav,1,1973,2,, 7035,NJBF000081106,826 BOBBY JONES RD,Brigantine,NJ,39.41756266,-74.381743,RES1,3001,,16,NE,1979,1979,3103,2,1,1286.550894,1286.550894,3505,NO,32.64,38.96,3,5.28,6106,114.991518,124.519851,134.394847,140.279954,I,Above,Gable,0,5701,Wood,35.80244816,0,0,,,,1,1,,0.03,nav,1,1979,2,, 7036,NJBF000074632,,Brigantine,NJ,39.38726263,-74.40114969,RES1,3001,,NaN,NE,1969,0,3102,2,1,1490.696212,1490.696212,3507,NO,37.92,50.11,1,-0.79,6106,114.910829,124.46297,134.313165,140.369708,I,Above,Gable,0,5701,Wood,44.01525869,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7037,NJBF000078328,210 10TH STREET SO,Brigantine,NJ,39.4047635,-74.371308,RES1,3001,,17,NE,2010,2010,3102,2,1,1662.59695,1662.59695,3505,NO,28.08,36.23,3,1.92,6106,115.336001,124.845871,134.756274,140.612275,I,Above,Gable,0,5701,Wood,32.15371027,0,0,,,,1,1,,0.03,nav,1,2010,2,, 7038,NJBF000077746,337 15TH STREET SO,Brigantine,NJ,39.40065749,-74.37252411,RES1,3001,,19,NE,2005,2005,3102,3,1,1896.017952,1896.017952,3502,NO,54.05,64.78,5,-2.32,6106,115.355149,124.863769,134.773724,140.645288,I,Above,Hip,0,5701,Wood,59.41498488,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7039,NJBF000078126,243 13TH STREET SO,Brigantine,NJ,39.4030985,-74.3723105,RES1,3001,,15,NE,1954,1954,3102,1,1,566.8336011,566.8336011,3505,NO,18.12,24.31,3,3,6106,115.333371,124.843506,134.752518,140.617635,I,Above,Gable,0,5701,Wood,21.21313258,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7040,NJBF000074389,4523 W BRIGANTINE AVE,Brigantine,NJ,39.38618016,-74.39627985,RES1,3001,,16,NE,1968,1968,3102,1,1,1596.341044,1596.341044,3507,NO,16.68,29.17,1,0.92,6110,115.02437,124.564558,134.425869,140.460861,I,Above,Hip,0,5701,Wood,22.92814201,0,0,,,,1,1,,0.35,nav,1,1968,1,, 7041,NJBF000075219,,Brigantine,NJ,39.38909799,-74.39263785,RES1,3001,,NaN,NE,1969,0,3102,2,1,2675.249622,2675.249622,3507,NO,39.39,45.21,1,2.83,6106,115.067715,124.602711,134.471026,140.479326,I,Above,Flat,0,5701,Wood,42.29746908,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7042,NJBF000081064,2 11TH STREET NO,Brigantine,NJ,39.41740466,-74.36226917,RES1,3001,,15,NE,1970,1970,3102,1,1,1269.82497,1269.82497,3507,NO,19.58,29.15,1,2.41,6106,115.38633,124.892435,134.815514,140.596663,I,Above,Hip,0,5701,Wood,24.3624542,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 7043,NJBF000078149,336 8TH STREET SO,Brigantine,NJ,39.40326709,-74.36768171,RES1,3001,,15,NE,1955,1955,3102,1,1,1289.377744,1289.377744,3502,NO,33.03,44.24,5,14.57,6110,115.425492,124.929354,134.84969,140.688229,I,Above,Gable,0,5701,Wood,38.63499219,0,0,,,,1,1,,0.35,nav,1,1955,1,, 7044,NJBF000078138,340 8TH STREET SO,Brigantine,NJ,39.40319552,-74.36758271,RES1,3001,,15,NE,1963,1963,3102,1,1,1384.158944,1384.158944,3502,NO,11.39,26.02,5,-0.36,6110,115.428257,124.931931,134.852557,140.690674,I,Above,Gable,0,5701,Wood,18.70672689,0,0,,,,1,1,,0.35,nav,1,1963,1,, 7045,NJBF000076345,,Brigantine,NJ,39.39305873,-74.38515885,RES1,3001,,NaN,NE,1955,0,3102,2,1,2828.307502,2828.307502,3507,NO,39.59,50.16,1,2.06,6106,115.178797,124.702387,134.586115,140.544766,I,Above,Gable,0,5701,Wood,44.87431186,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7046,NJBF000074382,2 SCHOONER COVE,Brigantine,NJ,39.38616343,-74.40028182,RES1,3001,,43,NE,1977,1977,3102,2,2,1539.923213,1539.923213,3507,NO,29.2,42.96,1,2.27,6110,114.941131,124.490341,134.342862,140.398197,I,Above,Hip,0,5701,Wood,36.07581406,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7047,NJBF000080381,1400 SHERIDAN BLVD,Brigantine,NJ,39.41489228,-74.37447351,RES1,3001,,16,NE,1967,1967,3102,2,1,2046.004134,2046.004134,3507,YES,33.55,41.46,1,1.75,6106,115.166111,124.684766,134.579678,140.432541,I,Above,Gable,0,5701,Wood,37.5039346,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 7048,NJBF000077882,2201 BAYSHORE AVE,Brigantine,NJ,39.40143264,-74.38161814,RES1,3001,,16,NE,1936,1936,3102,2,1,1182.639928,1182.639928,3507,YES,36.91,44.23,1,1.44,6106,115.161201,124.684596,134.572179,140.49181,I,Above,Gable,0,5701,Wood,40.56875637,0,1.2,,,,1,1,,0.03,nav,1,1936,2,, 7049,NJBF000073608,5234 LAGOON BLVD,Brigantine,NJ,39.38198837,-74.40955931,RES1,3001,,16,NE,1975,1975,3103,1,1,2061.371163,2061.371163,3505,NO,18.57,29.24,3,5.24,6106,114.793223,124.361247,134.195473,140.308458,I,Above,Flat,0,5701,Wood,23.90549423,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7050,NJBF000075592,350 37TH STREET SO,Brigantine,NJ,39.3904325,-74.387887,RES1,3001,,16,NE,1952,1952,3102,2,1,1068.207632,1068.207632,3507,NO,25.15,35.92,1,2.73,6106,115.151336,124.677866,134.556439,140.536274,I,Above,Gable,0,5701,Wood,30.53275076,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7051,NJBF000078101,332 9TH STREET SO,Brigantine,NJ,39.40296,-74.368508,RES1,3001,,19,NE,2008,2008,3102,3,1,1245.234672,1245.234672,3502,NO,59.42,70.54,5,9.99,6110,115.412034,124.916767,134.83524,140.679143,I,Above,Flat,0,5701,Wood,64.98098456,0,1.1,,,,1,1,,0.35,nav,1,2008,3,, 7052,NJBF000077755,103 23RD STREET SO,Brigantine,NJ,39.40072844,-74.38156706,RES1,3001,,16,NE,1952,1952,3101,1,1,1341.03687,1341.03687,3507,NO,14.68,28.67,1,2.49,6106,115.16976,124.69264,134.58077,140.501763,I,Above,Hip,0,5701,Wood,21.67673987,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7053,NJBF000080261,1402 SHERIDAN BLVD,Brigantine,NJ,39.41447909,-74.37649824,RES1,3001,,16,NE,2014,2014,3103,2,1,1381.870875,1381.870875,3505,NO,26.15,39.14,3,4.5,6106,115.129327,124.650452,134.540791,140.405167,I,Above,Gable,0,5701,Wood,32.64627777,0,0,,,,1,1,,0.03,nav,1,2014,2,, 7054,NJBF000080273,1402 SHERIDAN BLVD,Brigantine,NJ,39.4145181,-74.37633006,RES1,3001,,16,NE,2014,2014,3103,2,1,507.3263223,507.3263223,3505,NO,36.72,46.32,3,3.42,6106,115.132334,124.653251,134.543965,140.407379,I,Above,Hip,0,5701,Wood,41.5231328,0,0,,,,1,1,,0.03,nav,1,2014,2,, 7055,NJBF000076254,244 36TH STREET SO,Brigantine,NJ,39.39274271,-74.38970793,RES1,3001,,47,NE,1997,1997,3102,2,2,2089.622567,2089.622567,3507,NO,34.52,48.33,1,2.21,6106,115.088395,124.620469,134.493847,140.477365,I,Above,Flat,0,5701,Wood,41.42245756,0,0,,,,1,1,,0.03,nav,1,1997,2,, 7056,NJBF000080548,706 STERLING PLACE,Brigantine,NJ,39.41539049,-74.38028,RES1,3001,,16,NE,1972,1972,3103,2,1,1444.626185,1444.626185,3505,YES,31.76,43.54,3,-0.62,6106,115.043252,124.569517,134.449949,140.33208,I,Above,Hip,0,5701,Wood,37.65078197,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7057,NJBF000075814,317 GULL COVE,Brigantine,NJ,39.39124323,-74.40430605,RES3B,3001,,35,ME,1991,1991,3301,3,1,7479.670384,7479.670384,3507,YES,31.24,40.45,1,-0.42,6106,114.80134,124.363573,134.205137,140.265633,I,Above,Flat,0,5701,Wood,35.8446028,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 7058,NJBF000080879,26 COLLETTE CIRCLE,Brigantine,NJ,39.4166913,-74.37751138,RES1,3001,,17,NE,1997,1997,3103,2,1,2346.051717,2346.051717,3505,NO,38.96,51.18,3,3.95,6106,115.086214,124.609004,134.494949,140.360235,I,Above,Gable,0,5701,Wood,45.07008773,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 7059,NJBF000078296,215 11TH STREET SO,Brigantine,NJ,39.40449878,-74.37152551,RES1,3001,,15,NE,1954,1954,3102,1,1,1199.867568,1199.867568,3505,NO,12.28,17.66,3,-2.09,6106,115.334389,124.844384,134.754424,140.612199,I,Above,Hip,0,5701,Wood,14.97252952,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7060,NJBF000080374,607 LAFAYETTE BLVD,Brigantine,NJ,39.4148787,-74.37816143,RES1,3001,,17,NE,1999,1999,3103,2,1,1463.670189,1463.670189,3505,NO,35.41,45.46,3,8.11,6106,115.091494,124.614865,134.500836,140.373096,I,Above,Gable,0,5701,Wood,40.43434957,0,0,,,,1,1,,0.03,nav,1,1999,2,, 7061,NJBF000080838,802 SARAZEN RD,Brigantine,NJ,39.41653511,-74.37675386,RES1,3001,,16,NE,1982,1982,3103,2,1,1994.458416,1994.458416,3505,NO,31.63,41,3,-2.43,6106,115.103141,124.624958,134.512876,140.374536,I,Above,Gable,0,5701,Wood,36.31747958,0,0,,,,1,1,,0.03,nav,1,1982,2,, 7062,NJBF000078068,317 11TH STREET SO,Brigantine,NJ,39.4027206,-74.36992238,RES1,3001,,15,NE,1954,1954,3102,1,1,1077.493276,1077.493276,3502,NO,24.86,37.25,5,5.99,6110,115.385906,124.892395,134.807516,140.659971,I,Above,Gable,0,5701,Wood,31.05487722,0,0,,,,1,1,,0.35,nav,1,1954,1,, 7063,NJBF000081044,823 W SHORE DR,Brigantine,NJ,39.41734387,-74.38243571,RES1,3001,,16,NE,1968,1968,3103,2,1,1138.797368,1138.797368,3505,NO,39.41,49.36,3,7.57,6106,114.979648,124.508912,134.382457,140.271476,I,Above,Hip,0,5701,Wood,44.38474578,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7064,NJBF000074595,14 SHIPMASTER DR,Brigantine,NJ,39.38714216,-74.39942633,RES1,3001,,16,NE,1971,1971,3102,1,1,2140.72826,2140.72826,3507,NO,11.11,24.57,1,0.45,6110,114.948146,124.496248,134.350259,140.398551,I,Above,Gable,0,5701,Wood,17.84196611,0,0,,,,1,1,,0.35,nav,1,1971,1,, 7065,NJBF000080746,804 BOBBY JONES RD,Brigantine,NJ,39.41615067,-74.38188257,RES1,3001,,17,NE,1975,1975,3103,3,1,1534.286012,1534.286012,3505,NO,44.34,52.17,3,5.51,6106,115.002946,124.531442,134.407374,140.296072,I,Above,Gable,0,5701,Wood,48.2545696,0,0,,,,1,1,,0.03,nav,1,1975,3,, 7066,NJBF000077724,109 22ND STREET SO,Brigantine,NJ,39.40054639,-74.38025525,RES1,3001,,16,NE,1956,1956,3101,2,1,1658.275518,1658.275518,3507,YES,29.16,37.44,1,1.22,6106,115.198565,124.719162,134.610519,140.524901,I,Above,Gable,0,5701,Wood,33.29692745,0,0,,,,1,1,,0.03,nav,1,1956,2,, 7067,NJBF000080134,35 CUMMINGS PLACE,Brigantine,NJ,39.41402939,-74.37354314,RES1,3001,,16,NE,1978,1978,3102,1,1,2019.019565,2019.019565,3507,NO,14.48,20.58,1,0.08,6106,115.193829,124.711094,134.609022,140.458591,I,Above,Hip,0,5701,Wood,17.52995203,0,0,,,,1,1,,0.03,nav,1,1978,1,, 7068,NJBF000077371,2500 REVERE BLVD,Brigantine,NJ,39.39820521,-74.38242072,RES1,3001,,16,NE,1954,1954,3102,2,1,1582.22565,1582.22565,3507,YES,39.14,48.92,1,1.06,6106,115.179285,124.701941,134.589493,140.520978,I,Above,Hip,0,5701,Wood,44.02647401,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 7069,NJBF000075817,352 35TH STREET SO,Brigantine,NJ,39.39124874,-74.38673533,RES1,3001,,43,NE,1951,1951,3102,2,2,1226.393375,1226.393375,3507,YES,25.01,38.04,1,1.45,6106,115.166143,124.691156,134.572036,140.543654,I,Above,Gable,0,5701,Wood,31.52164607,0,0,,,,1,1,,0.03,nav,1,1951,2,, 7070,NJBF000075289,117 44TH STREET SO,Brigantine,NJ,39.38936822,-74.39559554,RES1,3001,,16,NE,1968,1968,3102,2,1,1272.695172,1272.695172,3507,NO,26.12,40.03,1,-0.85,6106,115.003332,124.544835,134.406405,140.429202,I,Above,Hip,0,5701,Wood,33.07689647,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7071,NJBF000075794,,Brigantine,NJ,39.39116302,-74.38722083,RES1,3001,,NaN,NE,1969,0,3102,2,1,2463.809642,2463.809642,3507,NO,21.9,29.4,1,-0.02,6106,115.157058,124.682938,134.562734,140.537163,I,Above,Flat,0,5701,Wood,25.6524728,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7072,NJBF000077100,100 30TH STREET SO,Brigantine,NJ,39.3965385,-74.3866661,RES1,3001,,15,NE,1920,1920,3102,2,1,2150.75338,2150.75338,3507,NO,32.5,38.51,1,0.14,6106,115.109991,124.639062,134.51757,140.475599,I,Above,Gable,0,5701,Wood,35.50382602,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 7073,NJBF000077737,105 23RD STREET SO,Brigantine,NJ,39.4006256,-74.38142145,RES1,3001,,18,NE,2005,2005,3101,2,1,2090.979657,2090.979657,3507,NO,34.54,45.99,1,0.95,6106,115.173839,124.696412,134.584949,140.5054,I,Above,Hip,0,5701,Wood,40.26782664,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 7074,NJBF000075166,4501 PRIVATEER RD,Brigantine,NJ,39.38891902,-74.39865064,RES1,3001,,17,NE,2009,2009,3102,2,1,1944.282021,1944.282021,3507,NO,32.05,40.26,1,-0.25,6106,114.944705,124.492525,134.34751,140.386964,I,Above,Gable,0,5701,Wood,36.15458107,0,1.1,,,,1,1,,0.03,nav,1,2009,2,, 7075,NJBF000075576,3919 W BRIGANTINE AVE,Brigantine,NJ,39.39035319,-74.39115605,RES1,3001,,16,NE,1957,1957,3102,1,1,1171.126661,1171.126661,3507,NO,17.74,23.33,1,2.94,6106,115.084608,124.617628,134.488772,140.486046,I,Above,Flat,0,5701,Wood,20.5327707,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 7076,NJBF000075645,91 LAGOON BLVD,Brigantine,NJ,39.39058838,-74.39942306,RES1,3001,,17,NE,1988,1988,3102,3,1,2498.677092,2498.677092,3507,NO,59.86,73.38,1,1.86,6106,114.91034,124.461124,134.31367,140.352327,I,Above,Hip,0,5701,Wood,66.61869717,0,1.1,,,,1,1,,0.03,nav,1,1988,3,, 7077,NJBF000077087,2301 OCEAN AVE,Brigantine,NJ,39.39641963,-74.3782863,RES1,3001,,19,NE,1988,1988,3102,3,1,2412.420874,2412.420874,3507,NO,42.68,48.92,1,2.09,6110,115.283307,124.797557,134.695872,140.609066,I,Above,Flat,0,5701,Wood,45.80373688,0,1.1,,,,1,1,,0.35,nav,1,1988,3,, 7078,NJBF000076231,263 36TH STREET SO,Brigantine,NJ,39.392664,-74.388909,RES1,3001,,45,NE,1964,1964,3102,2,2,1356.369073,1356.369073,3507,NO,28.89,40.83,1,-0.35,6106,115.105765,124.636208,134.511453,140.490991,I,Above,Flat,0,5701,Wood,34.85844079,0,0,,,,1,1,,0.03,nav,1,1964,2,, 7079,NJBF000076794,,Brigantine,NJ,39.3948296,-74.38158769,RES1,3001,,NaN,NE,1969,0,3102,2,1,2496.612629,2496.612629,3507,NO,34.9,46.2,1,0.57,6110,115.232906,124.751497,134.642757,140.577799,I,Above,Flat,0,5701,Wood,40.54767487,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7080,NJBF000077343,2504 REVERE BLVD,Brigantine,NJ,39.39800689,-74.3827088,RES1,3001,,16,NE,1959,1954,3102,2,1,3175.575087,3175.575087,3507,NO,27.78,39.98,1,1.04,6106,115.175506,124.698521,134.585502,140.519,I,Above,Gable,0,5701,Wood,33.87664117,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 7081,NJBF000074634,20 SHIPMASTER DR,Brigantine,NJ,39.38728673,-74.40003629,RES1,3001,,43,NE,1971,1971,3102,2,2,2413.509273,2413.509273,3507,NO,22.98,30.1,1,-0.98,6106,114.933818,124.483428,134.336045,140.386982,I,Above,Gable,0,5701,Wood,26.53943429,0,0,,,,1,1,,0.03,nav,1,1971,2,, 7082,NJBF000076892,306 28TH STREET SO,Brigantine,NJ,39.395218,-74.38264833,RES1,3001,,16,NE,1928,1928,3102,2,1,1212.124399,1212.124399,3507,NO,28.18,42.56,1,1.82,6106,115.206918,124.727712,134.616286,140.556142,I,Above,Hip,0,5701,Wood,35.37402993,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 7083,NJBF000074478,4515 W BRIGANTINE AVE,Brigantine,NJ,39.38663102,-74.39553214,RES1,3001,,16,NE,1968,1968,3102,2,1,1842.184137,1842.184137,3507,YES,37.1,44.11,1,1.86,6110,115.03492,124.573881,134.436684,140.466595,I,Above,Hip,0,5701,Wood,40.60879837,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 7084,NJBF000076806,,Brigantine,NJ,39.39487821,-74.3978116,RES3A,3001,,NaN,NE,1969,0,3301,2,1,3065.932625,3065.932625,3507,NO,37.35,50.03,1,-0.16,6106,114.897368,124.447402,134.301406,140.320353,I,Above,Hip,0,5701,Wood,43.6902536,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7085,NJBF000077573,2513 BAYSHORE AVE,Brigantine,NJ,39.39955486,-74.38434873,RES1,3001,,18,NE,2001,2001,3102,3,1,2285.466961,2285.466961,3507,NO,42.7,55.84,1,1.48,6106,115.125238,124.652127,134.534378,140.472889,I,Above,Hip,0,5701,Wood,49.26873189,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 7086,NJBF000077584,322 16TH STREET SO,Brigantine,NJ,39.39963012,-74.37330042,RES1,3001,,18,NE,1994,1994,3102,2,1,1806.295255,1806.295255,3505,NO,23.56,29.25,3,1.31,6106,115.3504,124.859359,134.768003,140.646174,I,Above,Flat,0,5701,Wood,26.40469055,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 7087,NJBF000073605,5101 HARBOR BEACH BLVD,Brigantine,NJ,39.38194218,-74.40525201,RES1,3001,,17,NE,1987,1987,3101,2,1,1350.453774,1350.453774,3507,NO,23.94,37.48,1,1,6106,114.884259,124.44141,134.284726,140.376932,I,Above,Gable,0,5701,Wood,30.70630736,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 7088,NJBF000077591,2501 BAYSHORE AVE,Brigantine,NJ,39.39967864,-74.38414483,RES1,3001,,21,NE,2005,2005,3102,2,1,3764.436926,3764.436926,3507,NO,35.36,47.83,1,1.13,6106,115.1281,124.654712,134.53737,140.47451,I,Above,Gable,0,5701,Wood,41.5940062,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 7089,NJBF000076248,348 32ND STREET SO,Brigantine,NJ,39.39271932,-74.38479468,RES1,3001,,16,NE,1955,1955,3102,2,1,1535.570505,1535.570505,3507,NO,27.67,36.87,1,0.05,6106,115.190012,124.712629,134.597358,140.554898,I,Above,Hip,0,5701,Wood,32.2733737,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7090,NJBF000075629,,Brigantine,NJ,39.390558,-74.41087449,RES1,3001,,NaN,NE,1969,0,3103,5,1,1681.667922,1681.667922,3505,NO,104.65,119.47,3,7.22,6106,114.671186,124.248646,134.076493,140.169555,I,Above,Hip,0,5701,Wood,112.0598473,0,0,,,,1,1,,0.03,nav,1,1969,5,, 7091,NJBF000075515,3707 OCEAN AVE,Brigantine,NJ,39.39013991,-74.38766921,RES1,3001,,43,NE,1950,1950,3102,2,2,1090.697841,1090.697841,3507,NO,36.25,43.97,1,2.15,6110,115.159067,124.6849,134.564095,140.543516,I,Above,Gable,0,5701,Wood,40.11033999,0,1.2,,,,1,1,,0.35,nav,1,1950,2,, 7092,NJBF000078210,251 11TH STREET SO,Brigantine,NJ,39.40368825,-74.37077924,RES1,3001,,17,NE,2005,2005,3102,2,1,1813.69461,1813.69461,3505,NO,39.29,51.02,3,1.5,6106,115.358186,124.86658,134.778983,140.634259,I,Above,Gable,0,5701,Wood,45.1541644,0,0,,,,1,1,,0.03,nav,1,2005,2,, 7093,NJBF000075978,244 38TH STREET SO,Brigantine,NJ,39.39182044,-74.39128234,RES1,3001,,43,NE,1949,1949,3102,1,2,1701.24901,1701.24901,3507,NO,17.69,27.14,1,0.21,6106,115.065919,124.600406,134.470618,140.464716,I,Above,Gable,0,5701,Wood,22.41344536,0,0,,,,1,1,,0.03,nav,1,1949,1,, 7094,NJBF000080791,101 MARSDEN PLACE,Brigantine,NJ,39.4163104,-74.3808833,RES1,3001,,16,NE,1972,1972,3103,1,1,1901.766587,1901.766587,3505,NO,26.12,40.29,3,7.47,6106,115.021657,124.548808,134.426986,140.310307,I,Above,Gable,0,5701,Wood,33.20712581,0,0,,,,1,1,,0.03,nav,1,1972,1,, 7095,NJBF000078257,211 12TH STREET SO,Brigantine,NJ,39.40418159,-74.3723538,RES1,3001,,15,NE,1954,1954,3102,1,1,1339.626874,1339.626874,3505,NO,10.23,20.39,3,-1.55,6106,115.320937,124.831879,134.740092,140.603158,I,Above,Gable,0,5701,Wood,15.30980084,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7096,NJBF000076183,228 37TH STREET SO,Brigantine,NJ,39.39251402,-74.39091916,RES1,3001,,16,NE,1949,1949,3102,1,1,1257.04072,1257.04072,3507,NO,19.75,26.97,1,0.88,6106,115.065852,124.600154,134.470874,140.461284,I,Above,Hip,0,5701,Wood,23.36205679,0,0,,,,1,1,,0.03,nav,1,1949,1,, 7097,NJBF000076772,,Brigantine,NJ,39.39473992,-74.40074864,RES1,3001,,NaN,NE,1969,0,3102,2,1,2544.32179,2544.32179,3507,NO,38.39,49.46,1,0.4,6106,114.837791,124.394024,134.241586,140.275182,I,Above,Gable,0,5701,Wood,43.92701376,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7098,NJBF000077495,2304 REVERE BLVD,Brigantine,NJ,39.39904509,-74.38113292,RES1,3001,,16,NE,1954,1954,3101,1,1,1996.29312,1996.29312,3507,NO,14.4,25.89,1,1.16,6106,115.196666,124.717711,134.607845,140.530436,I,Above,Hip,0,5701,Wood,20.1452283,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7099,NJBF000080414,1300 SHERIDAN BLVD,Brigantine,NJ,39.41497224,-74.37264209,RES1,3001,,16,NE,1974,1974,3102,2,1,1066.551631,1066.551631,3507,YES,35.84,42.88,1,1.06,6106,115.202367,124.7188,134.618131,140.461043,I,Above,Gable,0,5701,Wood,39.36027892,0,0,,,,1,1,,0.03,nav,1,1974,2,, 7100,NJBF000077685,2004 REVERE BLVD,Brigantine,NJ,39.40033851,-74.37883733,RES1,3001,,16,NE,1955,1955,3101,2,1,1226.601946,1226.601946,3507,NO,28.97,34.84,1,2.98,6106,115.229785,124.747936,134.642802,140.549989,I,Above,Hip,0,5701,Wood,31.90218828,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7101,NJBF000074180,4616 HARBOR BEACH BLVD,Brigantine,NJ,39.38526877,-74.39849128,RES3C,3001,,37,ME,1978,1978,3301,3,1,7514.434071,7514.434071,3507,YES,56.17,64.41,1,-0.83,6106,114.988447,124.532745,134.389515,140.438326,I,Above,Gable,0,5701,Wood,60.28799251,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 7102,NJBF000077407,402 17TH STREET SO,Brigantine,NJ,39.39844334,-74.37339146,RES1,3001,,19,NE,1995,1995,3102,2,1,3188.508822,3188.508822,3505,NO,23.95,34.94,3,-2.38,6106,115.361361,124.86947,134.77854,140.659843,I,Above,Hip,0,5701,Wood,29.44588623,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 7103,NJBF000075646,83 LAGOON BLVD,Brigantine,NJ,39.3906036,-74.39860247,RES1,3001,,18,NE,2004,2004,3102,3,1,1933.272305,1933.272305,3507,NO,40.63,54.73,1,1.77,6106,114.927261,124.476248,134.330599,140.365143,I,Above,Hip,0,5701,Wood,47.67811761,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 7104,NJBF000075732,314 GULL COVE,Brigantine,NJ,39.39090856,-74.40411664,RES3B,3001,,35,ME,1984,1984,3301,2,1,3686.520553,3686.520553,3507,YES,38.05,52.33,1,2.85,6106,114.808914,124.370509,134.212643,140.273199,I,Above,Gable,0,5701,Wood,45.19082507,0,0,,,,1,1,,0.03,nav,1,1984,2,, 7105,NJBF000073953,,Brigantine,NJ,39.38418692,-74.40309569,RES3C,3001,,NaN,ME,1969,0,3301,1,1,10340.70548,10340.70548,3507,NO,18.69,27.19,1,0.26,6110,114.904294,124.458332,134.305487,140.380485,I,Above,Flat,0,NaN,Wood,22.93616763,0,0,,,,1,1,,0.35,nav,1,1969,1,, 7106,NJBF000073924,,Brigantine,NJ,39.38403036,-74.40203545,RES3D,3001,,NaN,ME,1969,0,3301,1,1,13077.52361,13077.52361,3507,NO,14.47,24.09,1,1.98,6106,114.928251,124.479618,134.329116,140.39929,I,Above,Gable,0,NaN,Wood,19.27921797,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7107,NJBF000074463,15 CASA COURT,Brigantine,NJ,39.38654479,-74.40240143,RES3B,3001,,33,ME,1980,1980,3301,2,1,5706.712105,5706.712105,3507,YES,23.39,30.18,1,1.08,6106,114.892627,124.44708,134.294845,140.359616,I,Above,Flat,0,5701,Wood,26.7864036,0,0,,,,1,1,,0.03,nav,1,1980,2,, 7108,NJBF000074518,4603 HARBOR BEACH BLVD,Brigantine,NJ,39.38681127,-74.39807993,RES1,3001,,43,NE,1976,1976,3102,2,2,1414.950198,1414.950198,3507,NO,34.07,39.49,1,2.57,6110,114.979873,124.524651,134.38175,140.424182,I,Above,Hip,0,5701,Wood,36.77942042,0,0,,,,1,1,,0.35,nav,1,1976,2,, 7109,NJBF000078078,335 10TH STREET SO,Brigantine,NJ,39.40277141,-74.36882455,RES1,3001,,18,NE,2008,2008,3102,3,1,1929.349436,1929.349436,3502,NO,54.43,61.94,5,5.12,6106,115.407628,124.912645,134.830449,140.676554,I,Above,Hip,0,5701,Wood,58.18349082,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 7110,NJBF000080361,1306 SHERIDAN BLVD,Brigantine,NJ,39.41482884,-74.37349964,RES1,3001,,16,NE,1973,1973,3102,3,1,1926.449078,1926.449078,3507,NO,57.17,68.51,1,2.13,6106,115.186476,124.703912,134.601262,140.449051,I,Above,Gable,0,5701,Wood,62.84052101,0,1.2,,,,1,1,,0.03,nav,1,1973,3,, 7111,NJBF000075491,203 LAGOON BLVD,Brigantine,NJ,39.39005072,-74.40252012,RES1,3001,,16,NE,1978,1978,3102,2,1,1125.240567,1125.240567,3507,YES,39.81,48.95,1,2.22,6106,114.851614,124.408987,134.254993,140.310323,I,Above,Hip,0,5701,Wood,44.37984281,0,0,,,,1,1,,0.03,nav,1,1978,2,, 7112,NJBF000078297,1201 W BEACH AVE,Brigantine,NJ,39.4045071,-74.37322793,RES1,3001,,15,NE,1950,1950,3102,1,1,914.3560917,914.3560917,3505,NO,16.32,30.47,3,-1.2,6106,115.299721,124.812115,134.717975,140.585212,I,Above,Gable,0,5701,Wood,23.39830792,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7113,NJBF000079176,,Brigantine,NJ,39.4099745,-74.3608185,RES3D,3001,,NaN,E,1969,0,3303,4,1,17716.59119,17716.59119,3507,NO,66.89,78.18,1,2.15,6106,115.492881,124.993421,134.926439,140.712208,I,Above,Flat,0,NaN,Wood,72.53180499,0,0,,,,1,1,,0.03,nav,1,1969,4,, 7114,NJBF000073716,,Brigantine,NJ,39.38271445,-74.40222643,RES3B,3001,,NaN,ME,1982,0,3301,1,1,6304.213648,6304.213648,3507,NO,13.42,23.82,1,2.82,6106,114.939,124.489553,134.339086,140.413999,I,Above,Hip,0,5701,Wood,18.62068225,0,0,,,,1,1,,0.03,nav,1,1982,1,, 7115,NJBF000075488,4407 WHALERMAN RD,Brigantine,NJ,39.39004852,-74.39955267,RES1,3001,,16,NE,1968,1968,3102,2,1,1911.26158,1911.26158,3507,YES,31.79,41,1,2.75,6106,114.913521,124.464206,134.316709,140.35751,I,Above,Hip,0,5701,Wood,36.39454588,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7116,NJBF000078285,219 11TH STREET SO,Brigantine,NJ,39.40441873,-74.37142926,RES1,3001,,16,NE,1954,1954,3102,2,1,1535.417421,1535.417421,3505,NO,33.97,44.63,3,6.78,6106,115.337209,124.847015,134.757346,140.614745,I,Above,Gable,0,5701,Wood,39.30052973,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7117,NJBF000077471,106 25TH STREET SO,Brigantine,NJ,39.39887704,-74.38320648,RES1,3001,,17,NE,1999,1999,3102,2,1,2055.883884,2055.883884,3507,NO,30.86,44.08,1,1.51,6106,115.15596,124.680431,134.565758,140.499836,I,Above,Gable,0,5701,Wood,37.47032501,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 7118,NJBF000075478,301 40TH STREET SO,Brigantine,NJ,39.3899895,-74.3906175,RES1,3001,,45,NE,1954,1954,3102,2,2,1774.532976,1774.532976,3507,NO,25.51,38.44,1,0.59,6106,115.099751,124.631359,134.503878,140.499288,I,Above,Flat,0,5701,Wood,31.97216228,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7119,NJBF000078298,222 10TH STREET SO,Brigantine,NJ,39.40450777,-74.37102037,RES1,3001,,15,NE,1954,1954,3102,1,1,1217.880803,1217.880803,3505,NO,23.57,34.53,3,7.83,6106,115.344567,124.853867,134.765147,140.620067,I,Above,Gable,0,5701,Wood,29.04840966,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7120,NJBF000077459,105 26TH STREET SO,Brigantine,NJ,39.39878332,-74.3836399,RES1,3001,,15,NE,1950,1950,3102,1,1,1095.406585,1095.406585,3507,NO,15.99,27.65,1,1.36,6106,115.148061,124.673223,134.557581,140.494188,I,Above,Hip,0,5701,Wood,21.82234043,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7121,NJBF000076572,226 34TH STREET SO,Brigantine,NJ,39.39395035,-74.38859419,RES1,3001,,17,NE,2015,2015,3102,1,1,1040.41467,1040.41467,3507,NO,14.71,26.57,1,-0.93,6106,115.098261,124.629095,134.504456,140.47907,I,Above,Gable,0,5701,Wood,20.64043217,0,0,,,,1,1,,0.03,nav,1,2015,1,, 7122,NJBF000077463,2400 REVERE BLVD,Brigantine,NJ,39.39879441,-74.38154736,RES1,3001,,16,NE,1954,1954,3102,1,1,1809.814098,1809.814098,3507,YES,15.62,22.2,1,1.61,6106,115.190877,124.712447,134.601741,140.527147,I,Above,Hip,0,5701,Wood,18.91053641,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7123,NJBF000077230,213 26TH STREET SO,Brigantine,NJ,39.39736947,-74.38192582,RES1,3001,,17,NE,1956,1956,3102,2,1,3276.508364,3276.508364,3507,YES,35.31,45.42,1,1.71,6106,115.198448,124.719643,134.608817,140.539628,I,Above,Gable,0,5701,Wood,40.36253725,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 7124,NJBF000077243,104 28TH STREET SO,Brigantine,NJ,39.39743756,-74.38520007,RES1,3001,,16,NE,1955,1955,3102,1,1,1240.541689,1240.541689,3507,NO,12.71,26.46,1,1.42,6106,115.13046,124.657481,134.538923,140.487029,I,Above,Gable,0,5701,Wood,19.58602407,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7125,NJBF000077244,2705 REVERE BLVD,Brigantine,NJ,39.39743999,-74.38450667,RES1,3001,,16,NE,1925,1925,3102,2,1,621.8452615,621.8452615,3507,NO,27.95,39.76,1,2.11,6106,115.144685,124.670466,134.553529,140.497964,I,Above,Hip,0,5701,Wood,33.85396098,0,0,,,,1,1,,0.03,nav,1,1925,2,, 7126,NJBF000077208,2700 REVERE BLVD,Brigantine,NJ,39.39726329,-74.38378938,RES1,3001,,18,NE,2003,2003,3102,2,1,1825.140118,1825.140118,3507,NO,23.22,36.65,1,1.42,6106,115.161345,124.685726,134.570568,140.511614,I,Above,Hip,0,5701,Wood,29.93728795,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 7127,NJBF000077254,320 21ST STREET SO,Brigantine,NJ,39.39751377,-74.37703466,RES1,3001,,16,NE,1972,1972,3102,1,1,2777.385533,2777.385533,3507,NO,19.1,29.38,1,-0.18,6106,115.297038,124.810134,134.710884,140.61464,I,Above,Hip,0,5701,Wood,24.24094426,0,0,,,,1,1,,0.03,nav,1,1972,1,, 7128,NJBF000077219,2002 OCEAN AVE,Brigantine,NJ,39.39730882,-74.37580735,RES1,3001,,17,NE,1947,1947,3102,2,1,2289.461778,2289.461778,3507,YES,31.58,38.14,1,2.58,6106,115.324349,124.835288,134.7391,140.636497,I,Above,Gable,0,5701,Wood,34.85712725,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 7129,NJBF000077424,2207 W BRIGANTINE AVE,Brigantine,NJ,39.39853505,-74.37964158,RES1,3001,,16,NE,1948,1948,3101,2,1,1225.968123,1225.968123,3507,NO,23.38,34.39,1,0.82,6106,115.232686,124.750869,134.644833,140.560546,I,Above,Gable,0,5701,Wood,28.88304336,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 7130,NJBF000077248,301 24TH STREET SO,Brigantine,NJ,39.39747495,-74.3797484,RES1,3001,,15,NE,1962,1962,3102,1,1,1498.56124,1498.56124,3507,NO,15.7,25.22,1,0.38,6106,115.241948,124.759505,134.653788,140.572545,I,Above,Hip,0,5701,Wood,20.46013033,0,0,,,,1,1,,0.03,nav,1,1962,1,, 7131,NJBF000077436,400 17TH STREET SO,Brigantine,NJ,39.39861886,-74.37354511,RES1,3001,,19,NE,2016,2016,3102,3,1,2210.879392,2210.879392,3505,NO,52.5,63,3,-1.89,6106,115.356319,124.864815,134.773415,140.655196,I,Above,Flat,0,5701,Wood,57.75169624,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 7132,NJBF000076597,,Brigantine,NJ,39.39404392,-74.401377,RES1,3001,,NaN,NE,1969,0,3102,2,1,3512.715794,3512.715794,3507,NO,35.93,45.38,1,0.53,6106,114.832193,124.38943,134.235977,140.274527,I,Above,Hip,0,5701,Wood,40.65321584,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7133,NJBF000077253,302 23RD STREET SO,Brigantine,NJ,39.3975051,-74.37924142,RES1,3001,,17,NE,1930,1930,3102,2,1,2295.16338,2295.16338,3507,NO,21.26,26.55,1,-0.95,6106,115.252006,124.768736,134.664211,140.580129,I,Above,Gable,0,5701,Wood,23.90852355,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 7134,NJBF000077439,1801 OCEAN AVE,Brigantine,NJ,39.39863661,-74.37467988,RES1,3001,,16,NE,1957,1957,3102,2,1,1802.245106,1802.245106,3505,YES,41.9,52.85,3,4.69,6106,115.332983,124.843251,134.749086,140.637195,I,Above,Flat,0,5701,Wood,47.37759235,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 7135,NJBF000077432,2406 REVERE BLVD,Brigantine,NJ,39.3985924,-74.38190277,RES1,3001,,16,NE,1956,1956,3102,2,1,1436.222892,1436.222892,3507,YES,25.62,37.86,1,1.73,6106,115.185749,124.707785,134.596348,140.524141,I,Above,Gable,0,5701,Wood,31.73891396,0,0,,,,1,1,,0.03,nav,1,1956,2,, 7136,NJBF000077419,2406 REVERE BLVD,Brigantine,NJ,39.39850601,-74.38181683,RES1,3001,,16,NE,1956,1956,3102,2,1,518.9139246,518.9139246,3507,YES,28.99,42.2,1,2.02,6106,115.188436,124.710266,134.59908,140.526614,I,Above,Gable,0,5701,Wood,35.59516765,0,0,,,,1,1,,0.03,nav,1,1956,2,, 7137,NJBF000077399,201 25TH STREET SO,Brigantine,NJ,39.3983771,-74.38187107,RES1,3001,,18,NE,2000,2000,3102,2,1,2318.284941,2318.284941,3507,NO,36.91,48.4,1,1.66,6106,115.188716,124.710547,134.599305,140.527434,I,Above,Gable,0,5701,Wood,42.65672597,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 7138,NJBF000077433,2604 BAYSHORE AVE,Brigantine,NJ,39.39859288,-74.38458146,RES1,3001,,16,NE,1950,1950,3102,2,1,1791.031889,1791.031889,3507,NO,36.68,46.06,1,1.28,6106,115.130774,124.657461,134.539716,140.481758,I,Above,Gable,0,5701,Wood,41.36858942,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7139,NJBF000077225,2503 W BRIGANTINE AVE,Brigantine,NJ,39.39734835,-74.38154168,RES1,3001,,17,NE,1954,1954,3102,2,1,2094.10346,2094.10346,3507,NO,34.82,47.82,1,1.61,6106,115.206551,124.727067,134.61716,140.545951,I,Above,Gable,0,5701,Wood,41.32003184,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7140,NJBF000077438,200 24TH STREET SO,Brigantine,NJ,39.39862952,-74.38140231,RES1,3001,,17,NE,1958,1958,3102,1,1,3143.998222,3143.998222,3507,NO,17.16,29.8,1,2.6,6106,115.195611,124.716821,134.606549,140.531561,I,Above,Hip,0,5701,Wood,23.47803671,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 7141,NJBF000077422,200 24TH STREET SO,Brigantine,NJ,39.39852366,-74.38149269,RES1,3001,,17,NE,1958,1958,3102,1,1,508.9809248,508.9809248,3507,NO,14.7,24.71,1,0.88,6106,115.194886,124.716175,134.605746,140.531497,I,Above,Gable,0,5701,Wood,19.70673214,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 7142,NJBF000077221,323 22ND STREET SO,Brigantine,NJ,39.39732655,-74.37728921,RES1,3001,,20,NE,2006,2006,3102,3,1,2250.098268,2250.098268,3507,NO,54.69,61.48,1,0.27,6106,115.293869,124.807226,134.707464,140.613055,I,Above,Gable,0,5701,Wood,58.08266176,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 7143,NJBF000077256,309 23RD STREET SO,Brigantine,NJ,39.39752971,-74.37867573,RES1,3001,,16,NE,1960,1960,3102,1,1,1734.714652,1734.714652,3507,NO,13.25,22.9,1,0.74,6106,115.263301,124.779109,134.675919,140.588684,I,Above,Hip,0,5701,Wood,18.07581076,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 7144,NJBF000080591,1306 DUNCAN PLACE,Brigantine,NJ,39.4155592,-74.37360994,RES1,3001,,17,NE,1994,1994,3102,1,1,2024.42709,2024.42709,3507,NO,13.47,23.9,1,1.46,6106,115.176763,124.694519,134.590964,140.437938,I,Above,Gable,0,5701,Wood,18.68604109,0,1.1,,,,1,1,,0.03,nav,1,1994,1,, 7145,NJBF000080505,1311 SHERIDAN BLVD,Brigantine,NJ,39.41528819,-74.37375559,RES1,3001,,16,NE,1970,1970,3102,1,1,1626.645428,1626.645428,3507,NO,13.77,24.67,1,0.48,6106,115.176586,124.694454,134.590777,140.439051,I,Above,Gable,0,5701,Wood,19.22166973,0,0,,,,1,1,,0.03,nav,1,1970,1,, 7146,NJBF000077185,,Brigantine,NJ,39.39711348,-74.38610537,RES1,3001,,NaN,NE,1969,0,3102,2,1,2171.560349,2171.560349,3507,NO,33.81,40.65,1,-0.66,6106,115.115343,124.643779,134.523286,140.476953,I,Above,Gable,0,5701,Wood,37.23121665,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7147,NJBF000077202,,Brigantine,NJ,39.39722487,-74.38624029,RES1,3001,,NaN,NE,1969,0,3102,2,1,2858.818793,2858.818793,3507,NO,38.96,53.95,1,2.32,6106,115.111359,124.640117,134.519249,140.47335,I,Above,Hip,0,5701,Wood,46.45339763,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7148,NJBF000077178,319 23RD STREET SO,Brigantine,NJ,39.3970835,-74.378249,RES1,3001,,19,NE,1964,2018,3102,3,1,2050.277577,2050.277577,3507,NO,59.85,70.83,1,2.95,6106,115.276865,124.791604,134.689668,140.601119,I,Above,Gable,0,5701,Wood,65.33974676,0,0,,,,1,1,,0.03,nav,1,1964,3,, 7149,NJBF000075603,,Brigantine,NJ,39.39047597,-74.38638009,RES3C,3001,,NaN,E,1969,0,3303,3,1,5023.546625,5023.546625,3507,NO,60.06,65.26,1,2.03,6106,115.181974,124.705595,134.58762,140.559289,I,Above,Hip,0,NaN,Wood,62.66339547,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7150,NJBF000073168,42 OCEAN DRIVE WEST,Brigantine,NJ,39.37845362,-74.40825106,RES1,3001,,17,NE,1980,1980,3103,3,1,1746.398811,1746.398811,3505,NO,49.24,61.43,3,8.35,6106,114.86069,124.421827,134.259886,140.377238,I,Above,Hip,0,5701,Wood,55.33086746,0,1.1,,,,1,1,,0.03,nav,1,1980,3,, 7151,NJBF000076804,3939 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39487106,-74.39708415,RES1,3001,,43,NE,1954,1954,3102,2,2,1015.643518,1015.643518,3507,NO,39.41,53.47,1,1.07,6106,114.912559,124.461062,134.316696,140.332079,I,Above,Hip,0,5701,Wood,46.4403112,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7152,NJBF000075531,,Brigantine,NJ,39.39020146,-74.41308615,RES1,3001,,NaN,NE,2007,0,3103,5,1,1532.579595,1532.579595,3505,NO,66.9,81.84,3,8.75,6106,114.628564,124.211321,134.034696,140.138808,I,Above,Gable,0,5701,Wood,74.37039279,0,0,,,,1,1,,0.03,nav,1,2007,5,, 7153,NJBF000075885,329 36TH STREET SO,Brigantine,NJ,39.39149685,-74.38766133,RES1,3001,,15,NE,1952,1952,3102,1,1,713.4011676,713.4011676,3507,NO,18.29,26.41,1,-0.29,6106,115.144308,124.671339,134.549977,140.525899,I,Above,Hip,0,5701,Wood,22.34814914,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 7154,NJBF000074699,13 SHIPMASTER DR,Brigantine,NJ,39.38749845,-74.39925529,RES1,3001,,16,NE,1968,1968,3102,2,1,1309.376941,1309.376941,3507,NO,25.99,31.33,1,-0.16,6110,114.947777,124.495792,134.350037,140.396475,I,Above,Hip,0,5701,Wood,28.65807672,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7155,NJBF000077567,303 19TH STREET SO,Brigantine,NJ,39.3995109,-74.37593365,RES1,3001,,17,NE,1987,1987,3102,2,1,1665.714538,1665.714538,3507,NO,34.25,40.51,1,1.55,6106,115.297975,124.810901,134.713221,140.606354,I,Above,Flat,0,5701,Wood,37.37980797,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 7156,NJBF000079582,601 E BEACH AVE,Brigantine,NJ,39.41177762,-74.36087937,RES1,3001,,16,NE,1945,1945,3102,1,1,1332.649933,1332.649933,3507,NO,12.59,17.97,1,1.82,6106,115.472703,124.974495,134.905954,140.688831,I,Above,Hip,0,5701,Wood,15.2829008,0,0,,,,1,1,,0.03,nav,1,1945,1,, 7157,NJBF000077106,2701 W BRIGANTINE AVE,Brigantine,NJ,39.39657401,-74.38297333,RES1,3001,,18,NE,1974,1974,3102,2,1,1066.778535,1066.778535,3507,NO,25.79,39.2,1,2.14,6106,115.185545,124.707976,134.5951,140.533439,I,Above,Gable,0,5701,Wood,32.49914788,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 7158,NJBF000077764,111 21ST STREET SO,Brigantine,NJ,39.40075866,-74.3793341,RES1,3001,,16,NE,1956,1956,3101,1,1,1400.464226,1400.464226,3507,NO,16.1,26.16,1,-0.63,6106,115.215129,124.734367,134.627797,140.53672,I,Above,Hip,0,5701,Wood,21.13068169,0,0,,,,1,1,,0.03,nav,1,1956,1,, 7159,NJBF000077014,301 28TH STREET SO,Brigantine,NJ,39.39586824,-74.38268241,RES1,3001,,16,NE,1952,1952,3102,2,1,2318.628838,2318.628838,3507,NO,33.14,45.34,1,0.03,6106,115.199165,124.720538,134.608708,140.54718,I,Above,Gable,0,5701,Wood,39.24003274,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7160,NJBF000073534,5113 HARBOR BEACH BLVD,Brigantine,NJ,39.38139029,-74.40629103,RES1,3001,,16,NE,1975,1975,3103,1,1,2614.292063,2614.292063,3505,NO,10.98,21.48,3,-0.45,6106,114.868659,124.42785,134.269143,140.368092,I,Above,Flat,0,5701,Wood,16.23131757,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7161,NJBF000075399,4412 PRIVATEER RD,Brigantine,NJ,39.38972555,-74.39816401,RES1,3001,,16,NE,1968,1968,3102,1,1,1644.181146,1644.181146,3507,NO,14.85,20.84,1,1.72,6106,114.945987,124.493359,134.349071,140.383855,I,Above,Hip,0,5701,Wood,17.84541097,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7162,NJBF000075213,4419 WHALERMAN RD,Brigantine,NJ,39.38907966,-74.39952007,RES1,3001,,16,NE,1968,1968,3102,2,1,1548.922881,1548.922881,3507,YES,37.58,47.3,1,2.38,6106,114.924828,124.474712,134.327715,140.371055,I,Above,Gable,0,5701,Wood,42.44144242,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7163,NJBF000076104,350 33RD STREET SO,Brigantine,NJ,39.39223957,-74.38548249,RES1,3001,,19,NE,2008,2008,3102,3,1,1583.529639,1583.529639,3507,NO,59.64,65.46,1,1.59,6106,115.181105,124.704597,134.587944,140.550365,I,Above,Gable,0,5701,Wood,62.5505778,0,1.2,,,,1,1,,0.03,nav,1,2008,3,, 7164,NJBF000077756,208 18TH STREET SO,Brigantine,NJ,39.4007303,-74.37653713,RES1,3001,,16,NE,1970,1970,3101,1,1,1425.529534,1425.529534,3507,NO,18.21,26.99,1,1.88,6106,115.272581,124.787355,134.68752,140.581252,I,Above,Gable,0,5701,Wood,22.59716127,0,0,,,,1,1,,0.03,nav,1,1970,1,, 7165,NJBF000073115,5212 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37786841,-74.40581139,RES1,3001,,18,NE,1981,1981,3101,3,1,2037.608186,2037.608186,3507,NO,46.5,59.55,1,2.75,6106,114.9187,124.472936,134.316261,140.423276,I,Above,Hip,0,5701,Wood,53.02737924,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 7166,NJBF000076069,3601 W BRIGANTINE AVE,Brigantine,NJ,39.39213055,-74.38899834,RES1,3001,,15,NE,1940,1940,3102,1,1,1556.990604,1556.990604,3507,NO,11.35,20.66,1,0.66,6106,115.10975,124.639935,134.51522,140.496588,I,Above,Flat,0,5701,Wood,16.00307476,0,0,,,,1,1,,0.03,nav,1,1940,1,, 7167,NJBF000078140,,Brigantine,NJ,39.40319835,-74.36977259,COM1,3001,,NaN,ME,1969,0,3401,3,1,3244.647227,3244.647227,3507,NO,58.43,71.42,1,2.53,6110,115.383832,124.890476,134.80567,140.656282,I,Above,Flat,0,NaN,Wood,64.92438424,0,0,,,,1,1,,0.35,nav,1,1969,3,, 7168,NJBF000073207,12 HARBOUR COURT,Brigantine,NJ,39.37897595,-74.40586844,RES1,3001,,16,NE,1975,1975,3101,2,1,1386.319973,1386.319973,3507,NO,28.5,42.51,1,0.57,6106,114.904871,124.460489,134.303398,140.407417,I,Above,Gable,0,5701,Wood,35.50875323,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7169,NJBF000074270,4621 SCHOONER RD,Brigantine,NJ,39.3856779,-74.40015993,RES1,3001,,43,NE,1977,1977,3102,2,2,1343.376225,1343.376225,3507,NO,24.89,39.25,1,2.95,6110,114.949066,124.497564,134.350534,140.406628,I,Above,Gable,0,5701,Wood,32.07004311,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7170,NJBF000074989,339 42ND STREET SO,Brigantine,NJ,39.38838065,-74.39091505,RES1,3001,,15,NE,1977,1977,3102,2,1,1488.612927,1488.612927,3507,NO,27.51,39.31,1,2.31,6110,115.111354,124.642112,134.514607,140.515786,I,Above,Gable,0,5701,Wood,33.40972316,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7171,NJBF000075961,239 39TH STREET SO,Brigantine,NJ,39.39176424,-74.39167503,RES1,3001,,43,NE,1949,1949,3102,1,2,1765.939905,1765.939905,3507,NO,17.25,24.6,1,1.34,6106,115.058396,124.593634,134.462979,140.45926,I,Above,Hip,0,5701,Wood,20.92789357,0,0,,,,1,1,,0.03,nav,1,1949,1,, 7172,NJBF000078062,341 10TH STREET SO,Brigantine,NJ,39.40264876,-74.36871787,RES1,3001,,15,NE,1954,1954,3102,2,1,1423.998002,1423.998002,3502,NO,39.01,46.21,5,10.09,6110,115.411104,124.915879,134.834022,140.67977,I,Above,Gable,0,5701,Wood,42.60925201,0,0,,,,1,1,,0.35,nav,1,1954,2,, 7173,NJBF000075916,227 40TH STREET SO,Brigantine,NJ,39.39162133,-74.39289552,RES1,3001,,15,NE,1929,1929,3102,1,1,1168.338445,1168.338445,3507,NO,10.76,17.18,1,-0.55,6106,115.034667,124.572288,134.438932,140.441886,I,Above,Gable,0,5701,Wood,13.96538281,0,0,,,,1,1,,0.03,nav,1,1929,1,, 7174,NJBF000075691,307 ARBEGAST DRIVE,Brigantine,NJ,39.39075351,-74.40363262,RES3B,3001,,35,ME,1984,1984,3301,2,1,4885.917183,4885.917183,3507,YES,22.69,29.52,1,-0.14,6106,114.820711,124.381095,134.224353,140.283039,I,Above,Gable,0,5701,Wood,26.10567033,0,0,,,,1,1,,0.03,nav,1,1984,2,, 7175,NJBF000080394,,Brigantine,NJ,39.41491686,-74.35485938,RES1,3001,,NaN,NE,1969,0,3102,2,1,2368.16528,2368.16528,3507,NO,35.93,49.96,1,-0.02,6106,115.560555,125.058648,135.003011,140.745042,I,Above,Flat,0,5701,Wood,42.9445986,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7176,NJBF000075679,266 40TH STREET SO,Brigantine,NJ,39.39068899,-74.39228584,RES1,3001,,16,NE,1950,1950,3102,2,1,1282.90767,1282.90767,3507,NO,30.49,42.06,1,1.3,6106,115.057511,124.593131,134.46157,140.463836,I,Above,Hip,0,5701,Wood,36.27549707,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7177,NJBF000073884,,Brigantine,NJ,39.38376416,-74.40014819,RES3C,3001,,NaN,E,1969,0,3303,4,1,14073.37844,14073.37844,3507,NO,56.21,66.71,1,-0.35,6106,114.970677,124.51735,134.371028,140.432476,I,Above,Gable,0,NaN,Wood,61.45924366,0,0,,,,1,1,,0.03,nav,1,1969,4,, 7178,NJBF000073978,,Brigantine,NJ,39.3842854,-74.39967181,RES3C,3001,,NaN,E,1969,0,3303,3,1,13517.07295,13517.07295,3507,NO,57.33,62.39,1,0.44,6106,114.974788,124.52086,134.375396,140.432961,I,Above,Gable,0,NaN,Wood,59.86461336,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7179,NJBF000073894,,Brigantine,NJ,39.3838268,-74.39933658,RES3C,3001,,NaN,E,1969,0,3303,3,1,12329.05955,12329.05955,3507,NO,37.8,47.78,1,0.69,6106,114.986909,124.531758,134.387181,140.444337,I,Above,Flat,0,NaN,Wood,42.78739291,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7180,NJBF000076071,332 34TH STREET SO,Brigantine,NJ,39.39213167,-74.38652336,RES1,3001,,15,NE,1954,1954,3102,1,1,856.9215393,856.9215393,3507,NO,15.32,28.01,1,0.37,6106,115.160829,124.686209,134.567192,140.535452,I,Above,Hip,0,5701,Wood,21.66262716,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7181,NJBF000076419,4317 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39333251,-74.40620326,RES1,3001,,45,NE,1954,1954,3102,2,2,1748.609915,1748.609915,3507,NO,37.57,52.36,1,-0.05,6106,114.73914,124.306873,134.143276,140.206653,I,Above,Flat,0,5701,Wood,44.96822906,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7182,NJBF000077985,1001 OCEAN AVE,Brigantine,NJ,39.40211317,-74.36879104,RES1,3001,,17,NE,1968,1968,3102,2,1,554.7030658,554.7030658,3502,NO,25.69,32.01,5,-0.76,6110,115.415366,124.919814,134.838101,140.685383,I,Above,Hip,0,5701,Wood,28.84746958,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7183,NJBF000077964,1001 OCEAN AVE,Brigantine,NJ,39.4019445,-74.368643,RES1,3001,,17,NE,1968,1968,3102,2,1,1196.982132,1196.982132,3502,NO,41.61,50.72,5,10.24,6110,115.420181,124.924288,134.843043,140.68983,I,Above,Gable,0,5701,Wood,46.16246631,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7184,NJBF000075639,,Brigantine,NJ,39.39057558,-74.38872636,RES1,3001,,NaN,NE,1969,0,3102,2,1,2129.411463,2129.411463,3507,NO,27.99,42.47,1,-0.68,6106,115.132427,124.660746,134.537335,140.521257,I,Above,Hip,0,5701,Wood,35.22760844,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7185,NJBF000076365,328 32ND STREET SO,Brigantine,NJ,39.39315354,-74.38523698,RES1,3001,,15,NE,1955,1955,3102,1,1,922.6299109,922.6299109,3507,NO,15.79,29.13,1,1.29,6106,115.176152,124.699969,134.583472,140.542305,I,Above,Hip,0,5701,Wood,22.4592452,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7186,NJBF000077559,2204 REVERE BLVD,Brigantine,NJ,39.3994525,-74.38038968,RES1,3001,,16,NE,1954,1954,3101,1,1,2000.863321,2000.863321,3507,NO,19.6,30.63,1,0.52,6106,115.207506,124.72759,134.619259,140.536895,I,Above,Gable,0,5701,Wood,25.11404752,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7187,NJBF000074666,4503 W BRIGANTINE AVE,Brigantine,NJ,39.38739648,-74.39459883,RES1,3001,,16,NE,1968,1968,3102,2,1,927.6967996,927.6967996,3507,NO,28.15,40.16,1,1.02,6110,115.045827,124.583465,134.448056,140.471076,I,Above,Hip,0,5701,Wood,34.15669282,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 7188,NJBF000075638,93 LAGOON BLVD,Brigantine,NJ,39.39057441,-74.39964983,RES1,3001,,17,NE,1986,1986,3102,2,1,2557.54281,2557.54281,3507,NO,33.71,44.76,1,-0.27,6106,114.905764,124.457041,134.309093,140.34891,I,Above,Hip,0,5701,Wood,39.23360009,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 7189,NJBF000077218,2919 BAYSHORE AVE,Brigantine,NJ,39.39730787,-74.38686767,RES1,3001,,16,NE,1964,1964,3102,2,1,1549.207099,1549.207099,3507,YES,33.58,42.9,1,-0.8,6106,115.097539,124.627501,134.505127,140.462314,I,Above,Flat,0,5701,Wood,38.24085925,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 7190,NJBF000078287,1112 W BEACH AVE,Brigantine,NJ,39.40442464,-74.37241981,RES1,3001,,17,NE,2017,2017,3102,2,1,974.7135097,974.7135097,3505,NO,26.83,33.28,3,-2.08,6106,115.317015,124.828211,134.736104,140.599025,I,Above,Gable,0,5701,Wood,30.05242513,0,0,,,,1,1,,0.03,nav,1,2017,2,, 7191,NJBF000077454,208 23RD STREET SO,Brigantine,NJ,39.39873041,-74.38035777,RES1,3001,,16,NE,1937,1937,3101,1,1,1175.892105,1175.892105,3507,NO,18.21,24.45,1,1.37,6106,115.215927,124.735447,134.627599,140.546743,I,Above,Gable,0,5701,Wood,21.32844498,0,0,,,,1,1,,0.03,nav,1,1937,1,, 7192,NJBF000077430,300 21ST STREET SO,Brigantine,NJ,39.39858745,-74.37801213,RES1,3001,,17,NE,1989,1989,3102,2,1,1918.76578,1918.76578,3507,NO,35.71,45.71,1,1.59,6106,115.265475,124.781015,134.678846,140.585533,I,Above,Hip,0,5701,Wood,40.71169827,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 7193,NJBF000077238,311 23RD STREET SO,Brigantine,NJ,39.39740189,-74.37854154,RES1,3001,,16,NE,1950,1950,3102,1,1,2851.139587,2851.139587,3507,NO,11.39,21.56,1,0.24,6106,115.267428,124.78291,134.680109,140.592434,I,Above,Gable,0,5701,Wood,16.47409317,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7194,NJBF000075483,4 LAGOON BLVD,Brigantine,NJ,39.39001812,-74.40004869,RES1,3001,,18,NE,1994,1994,3102,2,1,1951.921259,1951.921259,3507,NO,23.82,35.72,1,-0.37,6106,114.903524,124.455291,134.306718,140.350055,I,Above,Gable,0,5701,Wood,29.76938636,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 7195,NJBF000077214,106 28TH STREET SO,Brigantine,NJ,39.39728477,-74.38500984,RES1,3001,,16,NE,1954,1954,3102,1,1,1336.935919,1336.935919,3507,NO,18.49,29.33,1,1.51,6106,115.136014,124.662588,134.544558,140.492031,I,Above,Gable,0,5701,Wood,23.91075579,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7196,NJBF000077457,100 26TH STREET SO,Brigantine,NJ,39.3987642,-74.38426143,RES1,3001,,15,NE,1960,1960,3102,1,1,1444.810456,1444.810456,3507,NO,12.74,20.36,1,2.15,6106,115.135513,124.661748,134.544658,140.484599,I,Above,Hip,0,5701,Wood,16.55098234,0,0,,,,1,1,,0.03,nav,1,1960,1,, 7197,NJBF000077241,314 22ND STREET SO,Brigantine,NJ,39.39741577,-74.37806779,RES1,3001,,18,NE,2013,2013,3102,3,1,2335.570496,2335.570496,3507,NO,45.61,53.25,1,0.39,6106,115.276975,124.791684,134.690008,140.599695,I,Above,Hip,0,5701,Wood,49.42659076,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 7198,NJBF000077711,309 16TH STREET SO,Brigantine,NJ,39.400468,-74.373342,RES1,3001,,16,NE,1956,1956,3102,1,1,575.3006721,575.3006721,3505,NO,14.72,27.44,3,-1.4,6106,115.340528,124.850217,134.758285,140.634855,I,Above,Flat,0,5701,Wood,21.08183547,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 7199,NJBF000075444,,Brigantine,NJ,39.3898885,-74.391784,RES1,3001,,NaN,NE,1969,0,3102,2,1,2909.330523,2909.330523,3507,NO,30.9,40.55,1,-0.75,6106,115.076714,124.610624,134.480541,140.482309,I,Above,Flat,0,5701,Wood,35.72498322,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7200,NJBF000080106,801 E EVANS BLVD,Brigantine,NJ,39.41394464,-74.36118749,RES1,3001,,16,NE,1981,1981,3102,1,1,1647.876338,1647.876338,3507,NO,13.06,18.9,1,0.94,6106,115.443882,124.947264,134.876156,140.657007,I,Above,Hip,0,5701,Wood,15.98206259,0,0,,,,1,1,,0.03,nav,1,1981,1,, 7201,NJBF000075455,12 LAGOON BLVD,Brigantine,NJ,39.38993535,-74.40097048,RES1,3001,,16,NE,1976,1976,3102,1,1,2103.450884,2103.450884,3507,NO,17.55,29.19,1,1.54,6106,114.885228,124.439002,134.288446,140.336546,I,Above,Gable,0,5701,Wood,23.36979517,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 7202,NJBF000075479,,Brigantine,NJ,39.38999091,-74.38858501,RES1,3001,,NaN,NE,1969,0,3102,2,1,1052.155749,1052.155749,3507,NO,29,35.63,1,0.1,6110,115.141783,124.669296,134.546452,140.531129,I,Above,Hip,0,5701,Wood,32.31490096,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7203,NJBF000073733,14 SURFSIDE RD,Brigantine,NJ,39.38278553,-74.40179601,RES3B,3001,,37,ME,1982,1982,3301,3,1,10930.5777,10930.5777,3507,NO,56.76,67.9,1,2.69,6106,114.94719,124.496787,134.347223,140.41977,I,Above,Gable,0,5701,Wood,62.3344156,0,1.1,,,,1,1,,0.03,nav,1,1982,3,, 7204,NJBF000076707,4201 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39446987,-74.40290516,RES1,3001,,15,NE,1955,1955,3102,2,1,993.6249298,993.6249298,3507,NO,38.25,52.37,1,2.4,6106,114.795782,124.356606,134.199575,140.24422,I,Above,Gable,0,5701,Wood,45.30893842,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 7205,NJBF000074861,4506 HARBOR BEACH BLVD,Brigantine,NJ,39.38800876,-74.39705549,RES1,3001,,16,NE,1968,1968,3102,2,1,2232.780683,2232.780683,3507,YES,23.83,30.7,1,2.66,6106,114.987965,124.531505,134.390394,140.42432,I,Above,Gable,0,5701,Wood,27.26356572,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 7206,NJBF000080974,14 11TH STREET NO,Brigantine,NJ,39.41706543,-74.36196895,RES1,3001,,17,NE,2002,2002,3102,2,1,2016.420972,2016.420972,3507,NO,29.76,36.68,1,-0.28,6106,115.395854,124.901531,134.825685,140.605695,I,Above,Hip,0,5701,Wood,33.21785644,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 7207,NJBF000080002,1006 E BEACH AVE,Brigantine,NJ,39.41362932,-74.35761469,RES1,3001,,19,NE,2009,2009,3102,3,1,1688.375039,1688.375039,3507,NO,45.2,51.99,1,0.77,6106,115.518841,125.01858,134.9569,140.717427,I,Above,Flat,0,5701,Wood,48.59273181,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 7208,NJBF000077840,107 20TH STREET SO,Brigantine,NJ,39.40116631,-74.37858829,RES1,3001,,15,NE,1954,1954,3101,1,1,1478.421593,1478.421593,3507,NO,18.2,32.74,1,-0.31,6106,115.226031,124.74434,134.639314,140.543269,I,Above,Gable,0,5701,Wood,25.4691982,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7209,NJBF000075862,,Brigantine,NJ,39.39141245,-74.40886517,RES1,3001,,NaN,NE,2009,0,3103,6,1,1812.416998,1812.416998,3505,NO,79.82,86.8,3,6.5,6106,114.704103,124.277137,134.10882,140.190143,I,Above,Flat,0,5701,Wood,83.31096988,0,0,,,,1,1,,0.03,nav,1,2009,6,, 7210,NJBF000077334,2813 BAYSHORE AVE,Brigantine,NJ,39.39795147,-74.38620601,RES1,3001,,19,NE,2002,2002,3102,2,1,2384.22121,2384.22121,3507,NO,35.43,45.76,1,0.5,6106,115.104255,124.63343,134.512244,140.464388,I,Above,Gable,0,5701,Wood,40.59867969,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 7211,NJBF000075133,319 42ND STREET SO,Brigantine,NJ,39.38879596,-74.39150153,RES1,3001,,47,NE,1977,1977,3102,3,2,1596.789336,1596.789336,3507,NO,43.81,57.62,1,2.1,6110,115.0946,124.626958,134.49796,140.501131,I,Above,Flat,0,5701,Wood,50.7157579,0,0,,,,1,1,,0.35,nav,1,1977,3,, 7212,NJBF000075859,263 39TH STREET SO,Brigantine,NJ,39.39138902,-74.39116108,RES1,3001,,43,NE,1952,1952,3102,1,2,1702.594011,1702.594011,3507,NO,20.93,34.17,1,1.96,6106,115.073139,124.607034,134.477715,140.472309,I,Above,Hip,0,5701,Wood,27.55390044,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7213,NJBF000075269,34 GULL COVE,Brigantine,NJ,39.38930728,-74.40608828,RES3B,3001,,35,ME,1984,1984,3301,2,1,5029.900484,5029.900484,3507,YES,39.09,52.94,1,2.56,6106,114.785129,124.350314,134.188947,140.263532,I,Above,Gable,0,5701,Wood,46.01443665,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 7214,NJBF000075068,4013 OCEAN AVE,Brigantine,NJ,39.38862206,-74.38973791,RES1,3001,,47,NE,1981,1981,3102,2,2,2001.005537,2001.005537,3507,NO,32.46,42.85,1,-0.48,6110,115.133058,124.661625,134.536698,140.531031,I,Above,Gable,0,5701,Wood,37.65416438,0,0,,,,1,1,,0.35,nav,1,1981,2,, 7215,NJBF000076103,300 35TH STREET SO,Brigantine,NJ,39.39223644,-74.38782318,RES1,3001,,15,NE,1946,1946,3102,1,1,2487.608644,2487.608644,3507,NO,18.49,31.99,1,1.87,6106,115.132867,124.660843,134.53878,140.513684,I,Above,Flat,0,5701,Wood,25.2430172,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 7216,NJBF000080228,559 CAVERLY DR,Brigantine,NJ,39.41437776,-74.37631785,RES1,3001,,17,NE,1979,1979,3103,2,1,1996.988594,1996.988594,3505,YES,26.72,39.69,3,3.76,6106,115.134013,124.654882,134.545745,140.409375,I,Above,Gable,0,5701,Wood,33.20381063,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 7217,NJBF000080973,906 SARAZEN RD,Brigantine,NJ,39.41706364,-74.37792461,RES1,3001,,16,NE,1968,1968,3103,1,1,2176.317354,2176.317354,3505,NO,11.19,16.31,3,-2.83,6106,115.074034,124.597387,134.481996,140.348688,I,Above,Flat,0,5701,Wood,13.74626744,0,0,,,,1,1,,0.03,nav,1,1968,1,, 7218,NJBF000076341,230 36TH STREET SO,Brigantine,NJ,39.39305135,-74.39000363,RES1,3001,,29,NE,1933,1933,3102,2,2,2256.334852,2256.334852,3507,NO,25.25,37.46,1,-0.51,6106,115.07892,124.611818,134.484374,140.468644,I,Above,Gable,0,5701,Wood,31.35544562,0,0,,,,1,1,,0.03,nav,1,1933,2,, 7219,NJBF000075230,314 41ST STREET SO,Brigantine,NJ,39.38912373,-74.39131754,RES1,3001,,43,NE,1977,1977,3102,2,2,1119.841311,1119.841311,3507,NO,26.75,35.52,1,2.84,6110,115.09479,124.627064,134.498351,140.499695,I,Above,Hip,0,5701,Wood,31.13459013,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7220,NJBF000077266,2907 BAYSHORE AVE,Brigantine,NJ,39.39755898,-74.3867133,RES1,3001,,16,NE,1976,1976,3102,2,1,1900.772044,1900.772044,3507,NO,24.58,39.52,1,1.55,6106,115.098032,124.627874,134.505724,140.461482,I,Above,Flat,0,5701,Wood,32.04911011,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 7221,NJBF000077472,2407 REVERE BLVD,Brigantine,NJ,39.39889213,-74.38221721,RES1,3001,,15,NE,1954,1954,3101,1,1,1224.670205,1224.670205,3507,NO,16.43,28.25,1,0.27,6106,115.176088,124.698868,134.58652,140.515288,I,Above,Flat,0,5701,Wood,22.33813295,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7222,NJBF000080905,818 W SHORE DR,Brigantine,NJ,39.41681266,-74.38302515,RES1,3001,,21,NE,2017,2017,3103,3,1,1456.022307,1456.022307,3505,NO,41.7,46.89,3,8.93,6106,114.973032,124.503103,134.375728,140.268777,I,Above,Gable,0,5701,Wood,44.29178008,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 7223,NJBF000074430,4608 SCHOONER RD,Brigantine,NJ,39.3863865,-74.39874,RES1,3001,,43,NE,1977,1977,3102,2,2,1404.049043,1404.049043,3507,NO,37.79,50.22,1,1.67,6110,114.970818,124.516707,134.372517,140.419468,I,Above,Flat,0,5701,Wood,44.00521914,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7224,NJBF000077624,304 17TH STREET SO,Brigantine,NJ,39.39991627,-74.37473151,RES1,3001,,16,NE,1958,1958,3102,1,1,1847.514073,1847.514073,3505,NO,19.53,28.88,3,0.32,6106,115.318139,124.829509,134.734511,140.620064,I,Above,Hip,0,5701,Wood,24.20945967,0,0,,,,1,1,,0.03,nav,1,1958,1,, 7225,NJBF000075310,8 44TH COVE,Brigantine,NJ,39.38943872,-74.39625133,RES1,3001,,15,NE,1968,1968,3102,2,1,915.729004,915.729004,3507,NO,27.91,40.33,1,0.92,6106,114.988936,124.53191,134.39199,140.417924,I,Above,Gable,0,5701,Wood,34.11752289,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7226,NJBF000077138,315 24TH STREET SO,Brigantine,NJ,39.39680155,-74.37904954,RES1,3001,,16,NE,1950,1950,3102,2,1,1572.889991,1572.889991,3507,NO,34.51,44.15,1,-0.48,6106,115.263524,124.779371,134.675668,140.592177,I,Above,Gable,0,5701,Wood,39.33084153,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7227,NJBF000078056,813 OCEAN AVE,Brigantine,NJ,39.40261791,-74.36754458,RES1,3001,,17,NE,1960,1960,3102,2,1,3117.834013,3117.834013,3502,NO,40.13,46.59,5,12.73,6110,115.435214,124.938375,134.859451,140.698537,I,Above,Gable,0,5701,Wood,43.35804041,0,0,,,,1,1,,0.35,nav,1,1960,2,, 7228,NJBF000074434,103 HUDSON DR,Brigantine,NJ,39.38641627,-74.39724939,RES1,3001,,16,NE,1968,1968,3102,1,1,1619.240441,1619.240441,3507,NO,19.88,29.8,1,1.27,6110,115.001569,124.544132,134.403213,140.442515,I,Above,Gable,0,5701,Wood,24.83971816,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 7229,NJBF000077656,2400 BAYSHORE AVE,Brigantine,NJ,39.400159,-74.382792,RES1,3001,,16,NE,1940,1940,3101,2,1,1687.194233,1687.194233,3507,NO,37.75,46.31,1,1.49,6106,115.150731,124.675316,134.560881,140.489726,I,Above,Flat,0,5701,Wood,42.03334492,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 7230,NJBF000077640,214 19TH STREET SO,Brigantine,NJ,39.4000457,-74.3771481,RES1,3001,,19,NE,2009,2009,3101,3,1,3001.542476,3001.542476,3507,NO,49.9,61.6,1,2.29,6106,115.26744,124.782682,134.681772,140.580397,I,Above,Hip,0,5701,Wood,55.74880914,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 7231,NJBF000079732,1001 E BRIGANTINE AVE,Brigantine,NJ,39.41258603,-74.35703333,RES1,3001,,15,NE,1938,1938,3102,2,1,1158.532828,1158.532828,3507,NO,37.32,43.93,1,-0.21,6106,115.54142,125.039929,134.980615,140.739468,I,Above,Flat,0,5701,Wood,40.62669042,0,0,,,,1,1,,0.03,nav,1,1938,2,, 7232,NJBF000078146,313 10TH STREET SO,Brigantine,NJ,39.40313067,-74.36914708,RES1,3001,,18,NE,1955,2004,3102,3,1,1703.134087,1703.134087,3502,NO,59.75,72.19,5,13.34,6106,115.397247,124.902982,134.819766,140.66696,I,Above,Gable,0,5701,Wood,65.97288273,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 7233,NJBF000077183,2801 REVERE BLVD,Brigantine,NJ,39.39710449,-74.38488872,RES1,3001,,18,NE,1956,1956,3102,2,1,2671.301388,2671.301388,3507,YES,27.5,41.33,1,-0.52,6106,115.140452,124.666683,134.549032,140.496306,I,Above,Gable,0,5701,Wood,34.41615333,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 7234,NJBF000075566,343 38TH STREET SO,Brigantine,NJ,39.39033176,-74.38838947,RES1,3001,,18,NE,2015,2015,3102,2,1,1403.342623,1403.342623,3507,NO,37.63,43.38,1,1.03,6110,115.142077,124.669508,134.546972,140.529734,I,Above,Gable,0,5701,Wood,40.50739788,0,1.1,,,,1,1,,0.35,nav,1,2015,2,, 7235,NJBF000077505,301 20TH STREET SO,Brigantine,NJ,39.39911558,-74.37672805,RES1,3001,,17,NE,1956,1956,3102,2,1,1937.364563,1937.364563,3507,NO,35.81,48.55,1,-0.84,6106,115.286016,124.799893,134.700519,140.598932,I,Above,Hip,0,5701,Wood,42.18265489,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 7236,NJBF000077480,300 20TH STREET SO,Brigantine,NJ,39.39893217,-74.37720451,RES1,3001,,18,NE,2001,2001,3102,3,1,1922.554529,1922.554529,3507,NO,57.43,72.06,1,-0.75,6106,115.278253,124.792752,134.692332,140.593793,I,Above,Hip,0,5701,Wood,64.74501922,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 7237,NJBF000076981,313 27TH STREET SO,Brigantine,NJ,39.39569343,-74.38126847,RES1,3001,,18,NE,1934,1934,3102,2,1,2983.20592,2983.20592,3507,NO,30.58,43.24,1,1.59,6106,115.23009,124.748835,134.640427,140.571665,I,Above,Gable,0,5701,Wood,36.91279178,0,1.2,,,,1,1,,0.03,nav,1,1934,2,, 7238,NJBF000076812,,Brigantine,NJ,39.39489072,-74.3982998,RES1,3001,,NaN,NE,1969,0,3102,2,1,2654.80104,2654.80104,3507,NO,32.38,47.36,1,2.84,6106,114.887092,124.438162,134.291072,140.312375,I,Above,Hip,0,5701,Wood,39.87196494,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7239,NJBF000078151,329 9TH STREET SO,Brigantine,NJ,39.40328301,-74.36816316,RES1,3001,,18,NE,2004,2004,3102,3,1,1867.942072,1867.942072,3502,NO,48,57.8,5,-4.15,6106,115.415574,124.920092,134.839222,140.680485,I,Above,Gable,0,5701,Wood,52.90299141,0,0,,,,1,1,,0.03,nav,1,2004,3,, 7240,NJBF000077240,204 26TH STREET SO,Brigantine,NJ,39.39740678,-74.38271937,RES1,3001,,16,NE,1956,1956,3102,2,1,1488.577584,1488.577584,3507,YES,25.84,32.07,1,2.21,6106,115.181765,124.704367,134.591649,140.526631,I,Above,Gable,0,5701,Wood,28.95654953,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 7241,NJBF000077450,2201 W BRIGANTINE AVE,Brigantine,NJ,39.39871415,-74.37929178,RES1,3001,,16,NE,1964,1964,3101,1,1,2299.44315,2299.44315,3507,NO,13.72,23.69,1,-0.65,6106,115.237923,124.755658,134.650359,140.563752,I,Above,Hip,0,5701,Wood,18.70459379,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 7242,NJBF000076533,211 36TH STREET SO,Brigantine,NJ,39.39380604,-74.39021874,RES1,3001,,NaN,NE,1954,1947,3102,1,1,936.4116357,936.4116357,3507,NO,15.94,29.06,1,-0.22,6106,115.066264,124.600153,134.471855,140.455302,I,Above,Hip,0,5701,Wood,22.49850194,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7243,NJBF000075476,3719 OCEAN AVE,Brigantine,NJ,39.38998168,-74.38800251,RES1,3001,,NaN,NE,1969,0,3102,2,1,3307.935269,3307.935269,3507,NO,22.21,35.85,1,-0.92,6106,115.15391,124.680257,134.55875,140.540356,I,Above,Flat,0,5701,Wood,29.03163739,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7244,NJBF000075742,283 39TH STREET SO,Brigantine,NJ,39.39096173,-74.39058555,RES1,3001,,15,NE,1949,1949,3102,1,1,1589.734885,1589.734885,3507,NO,16.28,30.92,1,0.18,6106,115.08972,124.622099,134.494276,140.486983,I,Above,Gable,0,5701,Wood,23.60015108,0,0,,,,1,1,,0.03,nav,1,1949,1,, 7245,NJBF000075205,106 45TH STREET SO,Brigantine,NJ,39.38906326,-74.39626731,RES1,3001,,16,NE,1968,1968,3102,2,1,1002.451727,1002.451727,3507,NO,39.39,46.23,1,1.98,6106,114.992739,124.53544,134.395644,140.422684,I,Above,Gable,0,5701,Wood,42.80985223,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7246,NJBF000076639,216 34TH STREET SO,Brigantine,NJ,39.39415637,-74.38885861,RES1,3001,,17,NE,2010,2010,3102,1,1,1706.074691,1706.074691,3507,NO,18.41,24.81,1,2.46,6106,115.090553,124.622053,134.496704,140.472181,I,Above,Hip,0,5701,Wood,21.60997611,0,0,,,,1,1,,0.03,nav,1,2010,1,, 7247,NJBF000077193,317 23RD STREET SO,Brigantine,NJ,39.39717404,-74.37832263,RES1,3001,,16,NE,1962,1962,3102,2,1,2034.42149,2034.42149,3507,NO,37.11,50.17,1,0.4,6106,115.274376,124.789311,134.687152,140.598802,I,Above,Gable,0,5701,Wood,43.64004094,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 7248,NJBF000078112,348 8TH STREET SO,Brigantine,NJ,39.40301283,-74.36741777,RES1,3001,,20,NE,2015,2015,3102,3,1,970.2036361,970.2036361,3502,NO,61.35,74.85,5,12.25,6110,115.433557,124.936866,134.858017,140.69556,I,Above,Hip,0,5701,Wood,68.09748023,0,1.1,,,,1,1,,0.35,nav,1,2015,3,, 7249,NJBF000078107,343 9TH STREET SO,Brigantine,NJ,39.4029933,-74.36787693,RES1,3001,,20,NE,2012,2012,3102,3,1,1752.894126,1752.894126,3502,NO,66.87,79.81,5,13.18,6110,115.424471,124.928378,134.848399,140.68862,I,Above,Hip,0,5701,Wood,73.33762689,0,1.1,,,,1,1,,0.35,nav,1,2012,3,, 7250,NJBF000078088,238 13TH STREET SO,Brigantine,NJ,39.40285317,-74.37308658,RES1,3001,,16,NE,1950,1950,3102,2,1,515.7392676,515.7392676,3505,NO,25.91,40.89,3,1.46,6106,115.320184,124.831265,134.738528,140.608508,I,Above,Hip,0,5701,Wood,33.39996377,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7251,NJBF000080423,216 15TH STREET NO,Brigantine,NJ,39.41499413,-74.35440821,RES1,3001,,19,NE,2004,2004,3103,3,1,1847.268337,1847.268337,3507,NO,39.83,48.67,1,1.58,6106,115.568766,125.066525,135.011996,140.751206,I,Above,Hip,0,5701,Wood,44.2531017,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 7252,NJBF000078095,31 17TH STREET SO,Brigantine,NJ,39.40290828,-74.37680963,RES1,3001,,16,NE,1925,1925,3102,2,1,1266.442394,1266.442394,3507,NO,38.26,52.37,1,1.09,6106,115.243764,124.760424,134.658607,140.548996,I,Above,Gable,0,5701,Wood,45.31565972,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 7253,NJBF000080900,804 STERLING PLACE,Brigantine,NJ,39.41678747,-74.38113291,RES1,3001,,16,NE,1974,1974,3103,2,1,1525.672643,1525.672643,3505,NO,35.32,42.34,3,8.93,6106,115.011747,124.539255,134.41641,140.300024,I,Above,Hip,0,5701,Wood,38.8330851,0,0,,,,1,1,,0.03,nav,1,1974,2,, 7254,NJBF000078084,,Brigantine,NJ,39.4028163,-74.37732258,RES1,3001,,NaN,NE,1960,0,3102,2,1,2268.34198,2268.34198,3507,NO,35.68,45.28,1,1.06,6106,115.234277,124.751666,134.648669,140.542055,I,Above,Flat,0,5701,Wood,40.48026109,0,0,,,,1,1,,0.03,nav,1,1960,2,, 7255,NJBF000080736,703 SARAZEN RD,Brigantine,NJ,39.41610273,-74.3749866,RES1,3001,,17,NE,1990,1990,3102,2,1,2150.666751,2150.666751,3507,NO,33.63,46.67,1,0.18,6106,115.143332,124.662884,134.555483,140.408719,I,Above,Gable,0,5701,Wood,40.14895121,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 7256,NJBF000074821,12 45TH COVE,Brigantine,NJ,39.38787928,-74.39656341,RES1,3001,,16,NE,1968,1968,3102,2,1,1322.647627,1322.647627,3507,YES,30.86,40.24,1,-0.37,6110,114.99964,124.541987,134.402018,140.4338,I,Above,Gable,0,5701,Wood,35.54983408,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 7257,NJBF000074906,4511 PRIVATEER RD,Brigantine,NJ,39.38814458,-74.39880805,RES1,3001,,16,NE,1968,1968,3102,1,1,1997.577806,1997.577806,3507,NO,14.62,28.42,1,-0.54,6106,114.949954,124.497502,134.352465,140.394857,I,Above,Gable,0,5701,Wood,21.52403858,0,0,,,,1,1,,0.03,nav,1,1968,1,, 7258,NJBF000075589,311 39TH STREET SO,Brigantine,NJ,39.39042644,-74.38981086,RES1,3001,,43,NE,1954,1954,3102,2,2,1366.233615,1366.233615,3507,NO,35.37,42.4,1,2.94,6106,115.111642,124.641999,134.516172,140.506207,I,Above,Gable,0,5701,Wood,38.88409988,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7259,NJBF000077697,2413 BAYSHORE AVE,Brigantine,NJ,39.40038442,-74.38339197,RES1,3001,,21,NE,2008,2008,3101,3,1,2185.308707,2185.308707,3507,YES,36.03,47,1,1.86,6106,115.136024,124.661769,134.545785,140.477278,I,Above,Flat,0,5701,Wood,41.51118594,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 7260,NJBF000076385,4321 HARBOR BEACH BLVD,Brigantine,NJ,39.39322423,-74.39787945,RES1,3001,,NaN,NE,1969,0,3102,2,1,1578.991724,1578.991724,3507,NO,31.62,42.77,1,0.58,6106,114.913817,124.463009,134.317713,140.341484,I,Above,Hip,0,5701,Wood,37.19696894,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7261,NJBF000076274,4321 HARBOR BEACH BLVD,Brigantine,NJ,39.3928158,-74.39783215,RES1,3001,,NaN,NE,1969,0,3102,2,1,2568.425399,2568.425399,3507,NO,28.18,40.84,1,0.83,6106,114.919212,124.468044,134.323055,140.347706,I,Above,Gable,0,5701,Wood,34.50695398,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7262,NJBF000076219,4321 HARBOR BEACH BLVD,Brigantine,NJ,39.3926382,-74.39780824,RES1,3001,,NaN,NE,1969,0,3102,2,1,2114.78517,2114.78517,3507,NO,23.74,31.17,1,0.08,6106,114.921641,124.470305,134.325457,140.350475,I,Above,Flat,0,5701,Wood,27.45522661,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7263,NJBF000078181,1429 BAYSHORE AVE,Brigantine,NJ,39.40345177,-74.37536238,RES1,3001,,NaN,NE,1926,1926,3102,2,1,1089.371522,1089.371522,3507,NO,32.24,38.4,1,-0.33,6106,115.267495,124.78232,134.683663,140.564936,I,Above,Hip,0,5701,Wood,35.31924166,0,0,,,,1,1,,0.03,nav,1,1926,2,, 7264,NJBF000077729,1604 W BRIGANTINE AVE,Brigantine,NJ,39.40059471,-74.37462215,RES1,3001,,17,NE,1942,1942,3102,1,1,2844.224028,2844.224028,3505,NO,15.22,27.87,3,3.03,6106,115.313086,124.824808,134.729688,140.613127,I,Above,Hip,0,5701,Wood,21.54019123,0,1.1,,,,1,1,,0.03,nav,1,1942,1,, 7265,NJBF000076579,4200 HARBOR BEACH BLVD,Brigantine,NJ,39.3939716,-74.3970645,COM1,3001,,NaN,ME,1969,0,3401,1,1,4360.417036,4360.417036,3507,NO,16.4,25.05,1,1.35,6106,114.922664,124.470592,134.326736,140.344445,I,Above,Flat,0,NaN,Wood,20.72841747,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7266,NJBF000076179,4200 HARBOR BEACH BLVD,Brigantine,NJ,39.39250053,-74.39614766,COM1,3001,,NaN,ME,1969,0,3401,1,1,51991.48038,51991.48038,3507,NO,16.94,24.58,1,2.54,6106,114.957617,124.50266,134.36158,140.378696,I,Above,Flat,0,NaN,Wood,20.75958798,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7267,NJBF000076532,4200 HARBOR BEACH BLVD,Brigantine,NJ,39.39380202,-74.39430524,COM1,3001,,NaN,ME,1969,0,3401,1,1,44602.48834,44602.48834,3507,NO,15.12,25.39,1,1.53,6106,114.981741,124.523829,134.386252,140.390617,I,Above,Flat,0,NaN,Wood,20.25882778,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7268,NJBF000075360,15 EXPLORER RD,Brigantine,NJ,39.3896318,-74.40107124,RES1,3001,,16,NE,1968,1968,3102,1,1,1741.856277,1741.856277,3507,NO,15.25,20.64,1,1.5,6106,114.886435,124.44022,134.289579,140.339029,I,Above,Gable,0,5701,Wood,17.94467288,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7269,NJBF000080292,6 CUMMINGS PLACE,Brigantine,NJ,39.41458773,-74.37260738,RES1,3001,,16,NE,1972,1972,3102,1,1,2133.893382,2133.893382,3507,NO,13.68,19.92,1,2.02,6106,115.207021,124.723302,134.62305,140.466508,I,Above,Gable,0,5701,Wood,16.7991629,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 7270,NJBF000074805,339 43RD STREET SO,Brigantine,NJ,39.38783934,-74.39142145,RES1,3001,,16,NE,1956,1956,3102,1,1,1932.065684,1932.065684,3507,NO,15.1,24.01,1,-0.12,6110,115.106874,124.638173,134.509731,140.515001,I,Above,Gable,0,5701,Wood,19.55122077,0,0,,,,1,1,,0.35,nav,1,1956,1,, 7271,NJBF000073582,5105 HARBOR BEACH BLVD,Brigantine,NJ,39.38177553,-74.40559076,RES1,3001,,16,NE,1975,1975,3101,1,1,1780.228111,1780.228111,3507,NO,18.49,31.42,1,2.54,6106,114.879011,124.436839,134.279489,140.373855,I,Above,Gable,0,5701,Wood,24.95512437,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7272,NJBF000076166,331 34TH STREET SO,Brigantine,NJ,39.39245864,-74.38625254,RES1,3001,,43,NE,2010,2010,3102,2,2,1210.010196,1210.010196,3507,NO,38.98,47.01,1,2.26,6106,115.162816,124.68796,134.569422,140.535421,I,Above,Gable,0,5701,Wood,42.99437622,0,0,,,,1,1,,0.03,nav,1,2010,2,, 7273,NJBF000080573,603 SARAZEN RD,Brigantine,NJ,39.41549558,-74.37425834,RES1,3001,,16,NE,1984,1984,3102,3,1,2057.781239,2057.781239,3507,NO,41.37,49.77,1,2.32,6106,115.164295,124.682826,134.57774,140.428285,I,Above,Gable,0,5701,Wood,45.57142839,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 7274,NJBF000078039,1713 BAYSHORE AVE,Brigantine,NJ,39.40249189,-74.37751166,RES1,3001,,19,NE,2013,2013,3102,3,1,2640.167259,2640.167259,3507,NO,47.74,59.56,1,-0.9,6106,115.233867,124.751344,134.648094,140.543228,I,Above,Hip,0,5701,Wood,53.64724006,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 7275,NJBF000077362,320 20TH STREET SO,Brigantine,NJ,39.39811305,-74.37646214,RES1,3001,,17,NE,1988,1988,3102,2,1,1460.726455,1460.726455,3507,NO,20.45,30.8,1,-0.75,6106,115.302269,124.814928,134.71674,140.615954,I,Above,Gable,0,5701,Wood,25.62572117,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 7276,NJBF000073782,9 SURFSIDE RD,Brigantine,NJ,39.38311187,-74.40127661,RES3C,3001,,37,ME,1978,1978,3301,3,1,8129.159787,8129.159787,3507,YES,36.45,48,1,0.39,6106,114.954387,124.503074,134.354523,140.423525,I,Above,Flat,0,5701,Wood,42.22748763,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 7277,NJBF000078327,201 11TH STREET SO,Brigantine,NJ,39.40474959,-74.37180212,RES1,3001,,16,NE,1941,1941,3102,2,1,931.1271417,931.1271417,3505,NO,38.37,47.76,3,6.52,6106,115.326119,124.836664,134.745861,140.604654,I,Above,Flat,0,5701,Wood,43.0660877,0,0,,,,1,1,,0.03,nav,1,1941,2,, 7278,NJBF000075501,4407 HARBOR BEACH BLVD,Brigantine,NJ,39.39007392,-74.39777985,RES1,3001,,16,NE,1968,1968,3102,2,1,1159.002098,1159.002098,3507,YES,37.5,45.68,1,1.22,6106,114.950166,124.496962,134.35337,140.385273,I,Above,Gable,0,5701,Wood,41.5856092,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7279,NJBF000075482,320 39TH STREET SO,Brigantine,NJ,39.39000349,-74.38992575,RES1,3001,,15,NE,1946,1946,3102,1,1,1362.649529,1362.649529,3507,NO,18.28,26.56,1,0.16,6106,115.113918,124.644134,134.518223,140.50996,I,Above,Gable,0,5701,Wood,22.42053239,0,0,,,,1,1,,0.03,nav,1,1946,1,, 7280,NJBF000075991,20 BEACH COVE,Brigantine,NJ,39.39185722,-74.40229259,RES1,3001,,19,NE,1976,2018,3102,3,1,1483.912567,1483.912567,3507,NO,45.13,52.13,1,2.34,6106,114.83671,124.394733,134.240379,140.289483,I,Above,Gable,0,5701,Wood,48.63187121,0,1.1,,,,1,1,,0.03,nav,1,1976,3,, 7281,NJBF000076912,302 28TH STREET SO,Brigantine,NJ,39.39537402,-74.38287316,RES1,3001,,17,NE,1927,1927,3102,2,1,1972.728861,1972.728861,3507,NO,38.82,53.2,1,0.47,6106,115.200602,124.721922,134.60989,140.550584,I,Above,Hip,0,5701,Wood,46.01342087,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 7282,NJBF000073566,53 COQUILLE BEACH DR,Brigantine,NJ,39.38164929,-74.40154129,RES3B,3001,,37,ME,1982,1982,3301,3,1,3030.994749,3030.994749,3507,NO,34.43,47.47,1,2.79,6106,114.965327,124.513155,134.364502,140.439024,I,Above,Gable,0,5701,Wood,40.95181245,0,1.1,,,,1,1,,0.03,nav,1,1982,3,, 7283,NJBF000076033,251 38TH STREET SO,Brigantine,NJ,39.39200591,-74.39075097,RES1,3001,,16,NE,1950,1950,3102,1,1,1430.287143,1430.287143,3507,NO,18.99,24.91,1,2.92,6106,115.074874,124.60844,134.479776,140.470632,I,Above,Flat,0,5701,Wood,21.94704865,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7284,NJBF000075891,238 39TH STREET SO,Brigantine,NJ,39.39152245,-74.39207372,RES1,3001,,14,NE,1950,1950,3102,1,1,732.2808463,732.2808463,3507,NO,11.03,24.97,1,0.39,6106,115.052779,124.588638,134.457187,140.456165,I,Above,Gable,0,5701,Wood,17.99988762,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7285,NJBF000078383,1205 BAYSHORE AVE,Brigantine,NJ,39.40516784,-74.37396696,RES1,3001,,16,NE,1948,1948,3102,2,1,2161.030241,2161.030241,3505,NO,27.87,37.12,3,4.2,6106,115.277692,124.791548,134.695165,140.565082,I,Above,Flat,0,5701,Wood,32.49715753,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 7286,NJBF000077052,2500 W BRIGANTINE AVE,Brigantine,NJ,39.3961425,-74.37959,COM8,3001,,NaN,ME,1969,0,3401,2,1,600.4490411,600.4490411,3507,NO,29.07,43.99,1,-0.69,6110,115.259609,124.775829,134.671176,140.592189,I,Above,Hip,0,NaN,Wood,36.530796,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7287,NJBF000075925,119 SHIPMASTER DRIVE,Brigantine,NJ,39.39164975,-74.403089,RES1,3001,,18,NE,1993,1993,3102,2,1,2532.608032,2532.608032,3507,YES,28.34,36.53,1,1.09,6106,114.822344,124.38204,134.22605,140.279567,I,Above,Flat,0,5701,Wood,32.4300848,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 7288,NJBF000080944,820 W SHORE DR,Brigantine,NJ,39.41696005,-74.38311248,RES1,3001,,17,NE,1996,1996,3103,2,1,2019.453397,2019.453397,3505,NO,32.88,41.93,3,-2.65,6106,114.96978,124.499968,134.372255,140.265433,I,Above,Hip,0,5701,Wood,37.40512834,0,1.2,,,,1,1,,0.03,nav,1,1996,2,, 7289,NJBF000080616,710 STERLING PLACE,Brigantine,NJ,39.4156271,-74.38051437,RES1,3001,,16,NE,1983,1983,3103,1,1,1744.143851,1744.143851,3505,NO,14.01,25.61,3,-1.47,6106,115.036087,124.562691,134.442355,140.325196,I,Above,Hip,0,5701,Wood,19.81133076,0,0,,,,1,1,,0.03,nav,1,1983,1,, 7290,NJBF000077908,333 13TH STREET SO,Brigantine,NJ,39.40156461,-74.37108404,RES1,3001,,16,NE,2002,2002,3102,2,1,1581.789428,1581.789428,3502,NO,34.49,42.66,5,9.64,6106,115.374686,124.881922,134.794877,140.656362,I,Above,Hip,0,5701,Wood,38.57328706,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 7291,NJBF000073784,,Brigantine,NJ,39.38311437,-74.40384976,RES3D,3001,,NaN,ME,1969,0,3301,2,1,14492.62119,14492.62119,3507,NO,25.92,40.43,1,-0.81,6106,114.900501,124.455353,134.301266,140.383113,I,Above,Flat,0,NaN,Wood,33.17625239,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7292,NJBF000076769,4129 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3947218,-74.4003628,RES1,3001,,18,NE,2005,2005,3102,3,1,1909.856015,1909.856015,3507,NO,43.23,52.2,1,0.01,6106,114.846017,124.401404,134.249828,140.281615,I,Above,Hip,0,5701,Wood,47.71741819,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7293,NJBF000075702,,Brigantine,NJ,39.3907935,-74.41023299,RES1,3001,,NaN,NE,1969,0,3103,5,1,2835.91,2835.91,3505,NO,64.85,78.09,3,8.37,6106,114.682089,124.258106,134.087191,140.176626,I,Above,Flat,0,5701,Wood,71.4684731,0,0,,,,1,1,,0.03,nav,1,1969,5,, 7294,NJBF000075167,125 44TH STREET SO,Brigantine,NJ,39.38892113,-74.39499117,RES1,3001,,16,NE,1968,1968,3102,1,1,1649.173727,1649.173727,3507,NO,19.54,25.39,1,0.64,6106,115.020825,124.560654,134.423762,140.444677,I,Above,Gable,0,5701,Wood,22.4665764,0,0,,,,1,1,,0.03,nav,1,1968,1,, 7295,NJBF000075196,123 44TH STREET SO,Brigantine,NJ,39.3890356,-74.39513951,RES1,3001,,16,NE,1968,1968,3102,2,1,1713.404966,1713.404966,3507,NO,24.35,31.05,1,0.3,6106,115.016462,124.556708,134.419436,140.440803,I,Above,Gable,0,5701,Wood,27.69765218,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7296,NJBF000079426,502 E BEACH AVE,Brigantine,NJ,39.411093,-74.361078,RES1,3001,,43,NE,1986,1986,3102,2,2,1231.71993,1231.71993,3507,NO,34.97,46.57,1,1.02,6106,115.475886,124.97745,134.908942,140.694206,I,Above,Gable,0,5701,Wood,40.76719136,0,0,,,,1,1,,0.03,nav,1,1986,2,, 7297,NJBF000075917,265 38TH STREET SO,Brigantine,NJ,39.3916249,-74.39022717,RES1,3001,,43,NE,1950,1950,3102,2,2,2594.968167,2594.968167,3507,NO,24.22,36.85,1,2.85,6106,115.089881,124.622089,134.494791,140.483903,I,Above,Hip,0,5701,Wood,30.53552172,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7298,NJBF000075699,3519 OCEAN AVE,Brigantine,NJ,39.39078799,-74.3868781,RES1,3001,,47,NE,1950,1950,3102,2,2,1161.862272,1161.862272,3507,NO,36.16,44.53,1,2.56,6106,115.168261,124.693137,134.573883,140.547431,I,Above,Gable,0,5701,Wood,40.34579949,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 7299,NJBF000080800,715 LAFAYETTE BLVD,Brigantine,NJ,39.41635243,-74.37940552,RES1,3001,,16,NE,1971,1971,3103,1,1,3132.663348,3132.663348,3505,NO,17.93,24.75,3,2.29,6106,115.051222,124.576418,134.458099,140.333814,I,Above,Gable,0,5701,Wood,21.34058057,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 7300,NJBF000080649,708 LAFAYETTE BLVD,Brigantine,NJ,39.41576908,-74.37955921,RES1,3001,,16,NE,1970,1970,3103,2,1,1418.53345,1418.53345,3505,YES,25.02,37.63,3,1.91,6106,115.054041,124.579382,134.461211,140.338884,I,Above,Gable,0,5701,Wood,31.32324854,0,0,,,,1,1,,0.03,nav,1,1970,2,, 7301,NJBF000077690,109 23RD STREET SO,Brigantine,NJ,39.40035003,-74.38119548,RES1,3001,,16,NE,1950,1950,3101,1,1,1177.975989,1177.975989,3507,NO,17,27.49,1,0.28,6106,115.181416,124.703438,134.592674,140.512557,I,Above,Flat,0,5701,Wood,22.24534016,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7302,NJBF000074900,429 SEAHORSE RD,Brigantine,NJ,39.38811264,-74.40409644,RES3B,3001,,35,ME,1987,1987,3301,3,1,5433.184268,5433.184268,3507,NO,41.62,49.33,1,0.11,6106,114.839893,124.399546,134.242997,140.311524,I,Above,Gable,0,5701,Wood,45.47241719,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 7303,NJBF000077761,1600 W BRIGANTINE AVE,Brigantine,NJ,39.40074796,-74.37433215,RES1,3001,,17,NE,1960,1960,3102,2,1,2797.290453,2797.290453,3505,NO,24.67,34.76,3,-0.7,6106,115.317354,124.828751,134.734247,140.615734,I,Above,Flat,0,5701,Wood,29.71761658,0,0,,,,1,1,,0.03,nav,1,1960,2,, 7304,NJBF000076084,125 SHIPMASTER DRIVE,Brigantine,NJ,39.39219239,-74.4031729,RES1,3001,,19,NE,2017,2017,3102,3,1,3615.375912,3615.375912,3507,NO,54.16,63.29,1,2.93,6106,114.814722,124.374929,134.218489,140.270865,I,Above,Hip,0,5701,Wood,58.72160984,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 7305,NJBF000074803,439 SEAHORSE RD,Brigantine,NJ,39.38782989,-74.40433052,RES3B,3001,,35,ME,1987,1987,3301,3,1,3610.292532,3610.292532,3507,NO,53.17,59.35,1,1.32,6106,114.838086,124.398083,134.241149,140.311632,I,Above,Hip,0,5701,Wood,56.2603013,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 7306,NJBF000075760,10 BEACH COVE,Brigantine,NJ,39.39101838,-74.40220571,RES1,3001,,18,NE,1976,1976,3102,2,1,2252.754692,2252.754692,3507,NO,32.18,40.39,1,1.14,6106,114.847634,124.404934,134.251174,140.302234,I,Above,Hip,0,5701,Wood,36.28817306,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 7307,NJBF000075795,,Brigantine,NJ,39.39116521,-74.39087596,RES1,3001,,NaN,NE,1969,0,3102,2,1,2806.149565,2806.149565,3507,NO,26.83,36.05,1,-0.54,6106,115.081492,124.614627,134.486055,140.479748,I,Above,Gable,0,5701,Wood,31.43707852,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7308,NJBF000073164,5 HARBOUR COURT,Brigantine,NJ,39.37842508,-74.40723973,RES1,3001,,16,NE,1975,1975,3103,2,1,1636.390712,1636.390712,3505,YES,26.86,41.22,3,3.39,6106,114.882297,124.440801,134.280981,140.393442,I,Above,Gable,0,5701,Wood,34.03946748,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7309,NJBF000077914,215 16TH STREET SO,Brigantine,NJ,39.40162338,-74.37454636,RES1,3001,,16,NE,1950,1950,3102,2,1,1231.772738,1231.772738,3505,NO,27.68,38.71,3,0.14,6106,115.30362,124.815984,134.720442,140.6012,I,Above,Hip,0,5701,Wood,33.19347175,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 7310,NJBF000075881,340 35TH STREET SO,Brigantine,NJ,39.3914826,-74.38703513,RES1,3001,,18,NE,2016,2016,3102,3,1,911.9443518,911.9443518,3507,NO,45.69,58.65,1,1.89,6106,115.157383,124.683184,134.563271,140.535898,I,Above,Flat,0,5701,Wood,52.16736098,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 7311,NJBF000075492,342 38TH STREET SO,Brigantine,NJ,39.39005269,-74.38870084,RES1,3001,,15,NE,1952,1952,3102,1,1,894.5707669,894.5707669,3507,NO,12.08,26.54,1,0.39,6106,115.138702,124.666502,134.543367,140.528501,I,Above,Flat,0,5701,Wood,19.30874704,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7312,NJBF000077200,307 24TH STREET SO,Brigantine,NJ,39.3972206,-74.37947841,RES1,3001,,16,NE,1964,1964,3102,1,1,2004.323471,2004.323471,3507,NO,19.72,28.19,1,2.98,6106,115.250224,124.767127,134.662187,140.580063,I,Above,Gable,0,5701,Wood,23.95158046,0,0,,,,1,1,,0.03,nav,1,1964,1,, 7313,NJBF000077152,,Brigantine,NJ,39.3968835,-74.38745938,RES3E,3001,,NaN,E,1969,0,3303,3,1,10607.33474,10607.33474,3507,NO,38.72,51.87,1,0.31,6106,115.08993,124.620702,134.497185,140.458507,I,Above,Flat,0,NaN,Wood,45.29719482,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7314,NJBF000077197,2004 OCEAN AVE,Brigantine,NJ,39.39720969,-74.37606832,RES1,3001,,NaN,NE,1950,1950,3102,2,1,1970.250238,1970.250238,3507,NO,22.25,34.84,1,1.1,6106,115.320091,124.831366,134.7346,140.633677,I,Above,Hip,0,5701,Wood,28.54635375,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7315,NJBF000078309,1206 BAYSHORE AVE,Brigantine,NJ,39.40461199,-74.37344462,RES1,3001,,27,NE,1927,1927,3102,2,2,516.6098848,516.6098848,3505,NO,40.09,46.65,3,1.2,6106,115.294196,124.806965,134.712226,140.580441,I,Above,Hip,0,5701,Wood,43.37058383,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 7316,NJBF000078161,,Brigantine,NJ,39.40344437,-74.36786653,RES1,3001,,NaN,NE,2003,0,3102,2,1,3868.237029,3868.237029,3502,NO,41.51,54.29,5,12.96,6110,115.419851,124.924099,134.843864,140.6831,I,Above,Hip,0,5701,Wood,47.89800847,0,0,,,,1,1,,0.35,nav,1,2003,2,, 7317,NJBF000074723,4501 W BRIGANTINE AVE,Brigantine,NJ,39.38756375,-74.39443118,RES1,3001,,15,NE,1968,1968,3102,1,1,1839.793742,1839.793742,3507,NO,20.08,34.26,1,2.07,6110,115.047456,124.584885,134.449786,140.471484,I,Above,Gable,0,5701,Wood,27.17409522,0,0,,,,1,1,,0.35,nav,1,1968,1,, 7318,NJBF000074762,408 ALBACORE LANE,Brigantine,NJ,39.38769787,-74.40286885,RES3B,3001,,16,ME,2004,2004,3301,1,1,4042.749286,4042.749286,3507,NO,11.48,24.41,1,-0.62,6112,114.870116,124.426585,134.272865,140.336625,I,Above,Flat,0,5701,Wood,17.9444963,0,0,,,,1,1,,0.35,nav,1,2004,1,, 7319,NJBF000080055,27 CUMMINGS PLACE,Brigantine,NJ,39.41378,-74.372893,RES1,3001,,16,NE,1972,1972,3102,2,1,958.1746293,958.1746293,3507,NO,23.98,35.59,1,2,6106,115.209553,124.725936,134.625669,140.472226,I,Above,Gable,0,5701,Wood,29.78491397,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7320,NJBF000074656,322 44TH STREET SO,Brigantine,NJ,39.387364,-74.392826,RES1,3001,,20,NE,2008,2008,3102,3,1,1706.648849,1706.648849,3507,NO,52.67,66.34,1,2.04,6110,115.083003,124.616811,134.485384,140.499279,I,Above,Hip,0,5701,Wood,59.50600001,0,1.1,,,,1,1,,0.35,nav,1,2008,3,, 7321,NJBF000074688,318 44TH STREET SO,Brigantine,NJ,39.38745402,-74.3929272,RES1,3001,,NaN,NE,1950,1950,3102,2,3,1348.948606,1348.948606,3507,NO,36.28,46.88,1,2.29,6110,115.079908,124.614015,134.482328,140.496509,I,Above,Gable,0,5701,Wood,41.57929629,0,0,,,,1,1,,0.35,nav,1,1950,2,, 7322,NJBF000074508,2 LIGHTHOUSE COVE,Brigantine,NJ,39.38676452,-74.40083174,RES1,3001,,43,NE,1984,1984,3102,2,2,1373.775858,1373.775858,3507,NO,40.33,54.72,1,2.95,6110,114.922976,124.47397,134.325057,140.381434,I,Above,Gable,0,5701,Wood,47.52540974,0,0,,,,1,1,,0.35,nav,1,1984,2,, 7323,NJBF000073616,5000 HARBOR BEACH BLVD,Brigantine,NJ,39.38202483,-74.40388101,RES1,3001,,43,NE,1975,1975,3101,2,2,1492.095228,1492.095228,3507,NO,22,32.92,1,0.61,6106,114.912079,124.465948,134.312157,140.397331,I,Above,Gable,0,5701,Wood,27.45951595,0,0,,,,1,1,,0.03,nav,1,1975,2,, 7324,NJBF000074442,4517 W BRIGANTINE AVE,Brigantine,NJ,39.38645545,-74.39572343,RES1,3001,,16,NE,1968,1968,3102,2,1,1472.29898,1472.29898,3507,NO,37.3,50.12,1,0.55,6110,115.032903,124.572119,134.434563,140.465938,I,Above,Gable,0,5701,Wood,43.70973831,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 7325,NJBF000074465,,Brigantine,NJ,39.38656177,-74.4019442,RES1,3001,,NaN,NE,1969,0,3102,2,1,1309.957922,1309.957922,3507,NO,24.84,33.61,1,0.38,6110,114.901992,124.455392,134.304141,140.366609,I,Above,Hip,0,5701,Wood,29.22456315,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7326,NJBF000073604,1 OCEAN DRIVE WEST,Brigantine,NJ,39.381929,-74.40982127,RES1,3001,,16,NE,1975,1975,3103,2,1,1613.92681,1613.92681,3505,NO,31.64,40.93,3,2.13,6106,114.788369,124.357011,134.19071,140.305126,I,Above,Flat,0,5701,Wood,36.28827647,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7327,NJBF000074398,4602 HARBOR BEACH BLVD,Brigantine,NJ,39.38623716,-74.39762383,RES1,3001,,17,NE,1988,1988,3102,1,1,1888.349906,1888.349906,3507,NO,19.13,29.84,1,2.15,6106,114.995746,124.538984,134.397305,140.439013,I,Above,Gable,0,5701,Wood,24.48352682,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 7328,NJBF000074411,4609 HARBOR BEACH BLVD,Brigantine,NJ,39.38628926,-74.39840869,RES1,3001,,16,NE,1957,1957,3102,1,1,1746.058953,1746.058953,3507,NO,20.92,26.17,1,1.79,6110,114.978808,124.52386,134.380434,140.425984,I,Above,Hip,0,5701,Wood,23.54396798,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 7329,NJBF000073550,5102 HARBOR BEACH BLVD,Brigantine,NJ,39.38153677,-74.40476876,RES1,3001,,18,NE,2005,2005,3101,3,1,1569.419635,1569.419635,3507,NO,41.15,51.36,1,-0.01,6106,114.898952,124.454511,134.298984,140.389994,I,Above,Hip,0,5701,Wood,46.25423246,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7330,NJBF000075043,331 42ND STREET SO,Brigantine,NJ,39.38853376,-74.39115488,RES1,3001,,43,NE,1977,1977,3102,2,2,1367.365176,1367.365176,3507,NO,34.71,48.73,1,0.19,6110,115.104688,124.636086,134.507977,140.510017,I,Above,Flat,0,5701,Wood,41.72025295,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7331,NJBF000074360,6 SCHOONER COVE,Brigantine,NJ,39.38606807,-74.40098703,RES1,3001,,43,NE,1977,1977,3102,2,2,1505.285718,1505.285718,3507,NO,33.51,42.82,1,0.11,6110,114.927463,124.478218,134.329238,140.388364,I,Above,Gable,0,5701,Wood,38.16788598,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7332,NJBF000074443,111 HUDSON DR,Brigantine,NJ,39.38645884,-74.39634954,RES1,3001,,16,NE,1968,1968,3102,1,1,1825.007456,1825.007456,3507,NO,14.97,26.05,1,0.93,6110,115.01981,124.560414,134.421467,140.456052,I,Above,Gable,0,5701,Wood,20.51127583,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 7333,NJBF000073491,11 OCEAN DRIVE EAST,Brigantine,NJ,39.38112086,-74.40334881,RES1,3001,,16,NE,1975,1975,3101,1,1,1985.774182,1985.774182,3507,NO,20.65,34.59,1,2.49,6106,114.933421,124.485072,134.332702,140.417851,I,Above,Hip,0,5701,Wood,27.62245762,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7334,NJBF000073340,5216 WATERVIEW DR,Brigantine,NJ,39.37995372,-74.40801753,RES1,3001,,16,NE,1975,1975,3103,3,1,2053.136867,2053.136867,3505,NO,39.12,52.9,3,7.17,6106,114.848568,124.410684,134.248793,140.360487,I,Above,Hip,0,5701,Wood,46.01263441,0,1.2,,,,1,1,,0.03,nav,1,1975,3,, 7335,NJBF000074310,20 LIGHTHOUSE DR,Brigantine,NJ,39.3858485,-74.4019065,RES1,3001,,43,NE,1986,1986,3102,2,2,1515.019715,1515.019715,3507,NO,33.52,44.46,1,0.64,6110,114.910689,124.463393,134.312503,140.376821,I,Above,Gable,0,5701,Wood,38.98999529,0,0,,,,1,1,,0.35,nav,1,1986,2,, 7336,NJBF000073364,1 SEA SPRAY COURT,Brigantine,NJ,39.38012552,-74.40544074,RES1,3001,,16,NE,1975,1975,3101,1,1,2351.988212,2351.988212,3507,NO,19.9,34.41,1,1.84,6106,114.900787,124.456566,134.300047,140.398543,I,Above,Hip,0,5701,Wood,27.15300349,0,0,,,,1,1,,0.03,nav,1,1975,1,, 7337,NJBF000073334,13 SANDY LANE,Brigantine,NJ,39.37991681,-74.40560099,RES1,3001,,16,NE,1975,1975,3101,2,1,1854.455608,1854.455608,3507,YES,36.77,45.47,1,2.12,6106,114.899795,124.455754,134.298958,140.398866,I,Above,Gable,0,5701,Wood,41.11745027,0,0,,,,1,1,,0.03,nav,1,1975,2,, 7338,NJBF000073512,5108 HARBOR BEACH BLVD,Brigantine,NJ,39.38123942,-74.40529813,RES1,3001,,43,NE,1975,1975,3101,2,2,1804.024981,1804.024981,3507,NO,30.98,40.31,1,2.51,6106,114.89121,124.447779,134.291222,140.385727,I,Above,Gable,0,5701,Wood,35.64505712,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7339,NJBF000073307,11 SEA SPRAY COURT,Brigantine,NJ,39.37972238,-74.40519313,RES1,3001,,16,NE,1973,1973,3101,1,1,2008.172083,2008.172083,3507,NO,18.87,27.27,1,-0.38,6106,114.910574,124.465304,134.309427,140.407883,I,Above,Hip,0,5701,Wood,23.07355694,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 7340,NJBF000073328,10 SEA SPRAY COURT,Brigantine,NJ,39.37985513,-74.40504109,RES1,3001,,16,NE,1975,1975,3101,2,1,1841.181461,1841.181461,3507,NO,39.51,49.49,1,1.89,6106,114.912257,124.46675,134.311156,140.408462,I,Above,Hip,0,5701,Wood,44.499049,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7341,NJBF000073270,5114 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37946743,-74.40427694,RES1,3001,,16,NE,1975,1975,3101,2,1,1864.153172,1864.153172,3507,NO,32.08,40.86,1,1.04,6106,114.932697,124.484868,134.331004,140.42563,I,Above,Gable,0,5701,Wood,36.47074254,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7342,NJBF000074284,502 LAGOON BLVD,Brigantine,NJ,39.38573357,-74.40367422,RES3B,3001,,33,ME,1980,1980,3301,2,1,4977.208543,4977.208543,3507,YES,21.2,34.4,1,-0.47,6106,114.874981,124.431758,134.277093,140.350459,I,Above,Gable,0,5701,Wood,27.79962445,0,0,,,,1,1,,0.03,nav,1,1980,2,, 7343,NJBF000073277,5211 SEA SPRAY RD,Brigantine,NJ,39.37952175,-74.40708184,RES1,3001,,16,NE,1975,1975,3103,2,1,2671.238263,2671.238263,3505,NO,35.98,45.91,3,5.24,6106,114.87315,124.432431,134.272631,140.381033,I,Above,Hip,0,5701,Wood,40.94054484,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7344,NJBF000073504,5117 HARBOR BEACH BLVD,Brigantine,NJ,39.38118382,-74.40661624,RES1,3001,,17,NE,1987,1987,3103,2,1,1311.238939,1311.238939,3505,NO,31.61,36.72,3,0.26,6110,114.864153,124.423955,134.264627,140.365783,I,Above,Hip,0,5701,Wood,34.16752103,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 7345,NJBF000073221,5214 SEA SPRAY RD,Brigantine,NJ,39.37908919,-74.40721174,RES1,3001,,16,NE,1975,1975,3103,2,1,1737.945031,1737.945031,3505,NO,40.6,52.97,3,5.54,6106,114.875332,124.434484,134.274537,140.384873,I,Above,Gable,0,5701,Wood,46.78788658,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7346,NJBF000073074,5220 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37731948,-74.40671724,RES1,3001,,18,NE,1975,1975,3103,2,1,2690.670236,2690.670236,3505,NO,28.32,40.56,3,2.31,6106,114.905927,124.461847,134.303411,140.416579,I,Above,Gable,0,5701,Wood,34.4396317,0,0,,,,1,1,,0.03,nav,1,1975,2,, 7347,NJBF000073046,2 SUNSET COURT,Brigantine,NJ,39.37691568,-74.40665735,RES1,3001,,17,NE,1975,1975,3103,2,1,1992.381605,1992.381605,3505,NO,27.99,33.62,3,-0.96,6106,114.911806,124.467104,134.308893,140.422961,I,Above,Gable,0,5701,Wood,30.8039311,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7348,NJBF000074188,4625 SCHOONER RD,Brigantine,NJ,39.38529537,-74.40077635,RES1,3001,,43,NE,1977,1977,3102,2,2,1411.845161,1411.845161,3507,NO,36.58,47.76,1,-0.15,6110,114.940461,124.49004,134.341811,140.402078,I,Above,Gable,0,5701,Wood,42.17181942,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7349,NJBF000074165,12 LIGHTHOUSE DR,Brigantine,NJ,39.38518113,-74.40162727,RES1,3001,,43,NE,1985,1985,3102,2,2,1568.146158,1568.146158,3507,NO,29.17,38.53,1,2.06,6110,114.923946,124.475408,134.325373,140.390216,I,Above,Gable,0,5701,Wood,33.85155669,0,0,,,,1,1,,0.35,nav,1,1985,2,, 7350,NJBF000074127,10 LIGHTHOUSE DR,Brigantine,NJ,39.38502502,-74.40152495,RES1,3001,,43,NE,1980,1980,3102,2,2,1713.089785,1713.089785,3507,NO,29.37,42.39,1,1.51,6110,114.927815,124.478898,134.329141,140.393921,I,Above,Gable,0,5701,Wood,35.87919353,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 7351,NJBF000074149,,Brigantine,NJ,39.3851045,-74.39968117,RES1,3001,,NaN,NE,1969,0,3102,2,1,1789.922291,1789.922291,3507,NO,27.62,38.27,1,2.77,6106,114.965456,124.512325,134.366551,140.421853,I,Above,Gable,0,5701,Wood,32.94365028,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7352,NJBF000074069,6 LIGHTHOUSE DR,Brigantine,NJ,39.38472062,-74.40130577,RES1,3001,,43,NE,1986,1986,3102,2,2,1379.071323,1379.071323,3507,NO,38.37,44.53,1,2.53,6110,114.935781,124.486072,134.336902,140.401455,I,Above,Gable,0,5701,Wood,41.45251857,0,0,,,,1,1,,0.35,nav,1,1986,2,, 7353,NJBF000073876,29 HORIZON LANE,Brigantine,NJ,39.3837185,-74.41108618,RES1,3001,,37,NE,1998,1998,3103,2,1,4831.273334,4831.273334,3505,YES,33.8,48.52,3,0.43,6106,114.741739,124.315171,134.145579,140.260503,I,Above,Gable,0,5701,Wood,41.16096982,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 7354,NJBF000075104,103 45TH STREET SO,Brigantine,NJ,39.38871541,-74.39684985,RES1,3001,,15,NE,1968,1968,3102,2,1,1293.183547,1293.183547,3507,NO,33.83,47.62,1,0.56,6106,114.984444,124.528128,134.387182,140.418131,I,Above,Hip,0,5701,Wood,40.721097,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7355,NJBF000077585,104 24TH STREET SO,Brigantine,NJ,39.39963183,-74.38267248,RES1,3001,,16,NE,1957,1957,3102,1,1,653.5711333,653.5711333,3507,YES,12.46,23.28,1,0.47,6106,115.158826,124.682873,134.569029,140.498478,I,Above,Flat,0,5701,Wood,17.8694973,0,0,,,,1,1,,0.03,nav,1,1957,1,, 7356,NJBF000077594,104 24TH STREET SO,Brigantine,NJ,39.3996965,-74.38240494,RES1,3001,,16,NE,1957,1957,3101,1,1,2027.458041,2027.458041,3507,YES,18.14,25.9,1,1.87,6106,115.163616,124.68725,134.574,140.501876,I,Above,Flat,0,5701,Wood,22.01734433,0,0,,,,1,1,,0.03,nav,1,1957,1,, 7357,NJBF000077341,2807 BAYSHORE AVE,Brigantine,NJ,39.39799997,-74.38603785,RES1,3001,,17,NE,1966,1966,3102,2,1,1874.515417,1874.515417,3507,NO,30.35,36.4,1,2.23,6106,115.107185,124.636088,134.515266,140.466411,I,Above,Gable,0,5701,Wood,33.37452969,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 7358,NJBF000077652,108 23RD STREET SO,Brigantine,NJ,39.40013421,-74.38169511,RES1,3001,,14,NE,1955,1955,3101,1,1,1858.392526,1858.392526,3507,NO,17.93,24.15,1,-0.03,6106,115.173483,124.696201,134.584377,140.507438,I,Above,Gable,0,5701,Wood,21.04044973,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7359,NJBF000080684,8 COLLETTE CIRCLE,Brigantine,NJ,39.41590642,-74.37651107,RES1,3001,,17,NE,2004,2004,3103,2,1,2501.990841,2501.990841,3505,NO,33.26,46.84,3,4.92,6106,115.114474,124.635889,134.524956,140.386579,I,Above,Hip,0,5701,Wood,40.04925233,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 7360,NJBF000080693,6 COLLETTE CIRCLE,Brigantine,NJ,39.41593262,-74.37634229,RES1,3001,,17,NE,1999,1999,3103,3,1,2426.738642,2426.738642,3505,NO,32.78,40.94,3,-2.76,6106,115.117623,124.63883,134.528283,140.388969,I,Above,Hip,0,5701,Wood,36.8600194,0,1.2,,,,1,1,,0.03,nav,1,1999,3,, 7361,NJBF000077351,1905 OCEAN AVE,Brigantine,NJ,39.39805457,-74.37573473,RES1,3001,,16,NE,1960,1960,3102,1,1,1898.189571,1898.189571,3507,NO,20.23,31.13,1,2.44,6106,115.317743,124.829193,134.732788,140.628093,I,Above,Gable,0,5701,Wood,25.68216001,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 7362,NJBF000074846,404 ALBACORE LANE,Brigantine,NJ,39.3879708,-74.40269886,RES3B,3001,,35,ME,1987,1987,3301,2,1,4077.461216,4077.461216,3507,NO,21.75,27.59,1,0.74,6110,114.870665,124.426948,134.273482,140.335627,I,Above,Flat,0,5701,Wood,24.67055729,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 7363,NJBF000076503,234 34TH STREET SO,Brigantine,NJ,39.393681,-74.388464,RES1,3001,,45,NE,1952,1952,3102,2,2,969.7621408,969.7621408,3507,NO,24.44,38.29,1,-0.75,6106,115.10387,124.634247,134.510037,140.484652,I,Above,Hip,0,5701,Wood,31.36293156,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 7364,NJBF000076515,234 34TH STREET SO,Brigantine,NJ,39.39374536,-74.38837258,RES1,3001,,45,NE,1952,1952,3102,2,2,1427.875405,1427.875405,3507,NO,25.76,39.59,1,-0.93,6106,115.105052,124.635303,134.511271,140.485247,I,Above,Hip,0,5701,Wood,32.67240119,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 7365,NJBF000078045,325 11TH STREET SO,Brigantine,NJ,39.40253567,-74.36975757,RES1,3001,,16,NE,1947,1947,3102,2,1,1167.075978,1167.075978,3502,NO,36.34,42.26,5,-1.08,6106,115.391214,124.897333,134.812972,140.664884,I,Above,Gable,0,5701,Wood,39.30142474,0,0,,,,1,1,,0.03,nav,1,1947,2,, 7366,NJBF000075547,330 38TH STREET SO,Brigantine,NJ,39.3902689,-74.38902824,RES1,3001,,15,NE,1952,1952,3102,1,1,1113.293982,1113.293982,3507,NO,16.63,27.68,1,2.1,6106,115.129562,124.65821,134.534237,140.520547,I,Above,Gable,0,5701,Wood,22.15610711,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7367,NJBF000077444,321 19TH STREET SO,Brigantine,NJ,39.39866546,-74.37514743,RES1,3001,,20,NE,2006,2006,3102,3,1,2558.244333,2558.244333,3507,NO,54.14,67.17,1,-0.81,6106,115.323154,124.834175,134.738864,140.629519,I,Above,Hip,0,5701,Wood,60.65624028,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 7368,NJBF000080913,809 BOBBY JONES RD,Brigantine,NJ,39.41684126,-74.3815878,RES1,3001,,16,NE,1974,1974,3103,2,1,1734.189299,1734.189299,3505,NO,29.9,35.81,3,2.71,6106,115.001958,124.530077,134.406097,140.291895,I,Above,Gable,0,5701,Wood,32.85214456,0,0,,,,1,1,,0.03,nav,1,1974,2,, 7369,NJBF000075754,353 36TH STREET SO,Brigantine,NJ,39.39100478,-74.38708503,RES1,3001,,28,NE,1950,1950,3102,2,1,1700.995856,1700.995856,3507,NO,30,43.21,1,0.59,6106,115.161602,124.687076,134.567253,140.541357,I,Above,Hip,0,5701,Wood,36.60703572,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7370,NJBF000075777,353 36TH STREET SO,Brigantine,NJ,39.39107904,-74.38698234,RES1,3001,,28,NE,1950,1950,3102,2,1,645.4656405,645.4656405,3507,NO,26.71,40.49,1,-0.92,6106,115.162914,124.688254,134.568637,140.542004,I,Above,Flat,0,5701,Wood,33.59906593,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7371,NJBF000073383,8 SEA SPRAY COURT,Brigantine,NJ,39.38029677,-74.40483435,RES1,3001,,16,NE,1975,1975,3101,2,1,2289.689632,2289.689632,3507,NO,36.61,45.37,1,2.7,6106,114.911594,124.46604,134.310755,140.405731,I,Above,Gable,0,5701,Wood,40.99464398,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7372,NJBF000074745,4515 WHALERMAN RD,Brigantine,NJ,39.38764916,-74.3997206,RES1,3001,,16,NE,1968,1968,3102,1,1,1638.190731,1638.190731,3507,NO,13.69,25.72,1,0.02,6110,114.936391,124.485586,134.338747,140.387094,I,Above,Flat,0,5701,Wood,19.70366687,0,0,,,,1,1,,0.35,nav,1,1968,1,, 7373,NJBF000077314,2401 W BRIGANTINE AVE,Brigantine,NJ,39.3978578,-74.38074356,RES1,3001,,16,NE,1961,1961,3102,1,1,2414.73977,2414.73977,3507,NO,20.24,29.16,1,1.62,6106,115.217409,124.736941,134.628653,140.551926,I,Above,Hip,0,5701,Wood,24.7016684,0,0,,,,1,1,,0.03,nav,1,1961,1,, 7374,NJBF000076797,3931 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39483546,-74.39669986,RES1,3001,,43,NE,1958,1958,3102,2,2,1359.621412,1359.621412,3507,NO,27.82,34.8,1,1.41,6106,114.920917,124.468598,134.32511,140.338692,I,Above,Flat,0,5701,Wood,31.30849411,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 7375,NJBF000075840,13 BEACH COVE,Brigantine,NJ,39.3913295,-74.4016845,RES1,3001,,16,NE,1972,1972,3102,2,1,1901.510507,1901.510507,3507,NO,40.69,47.14,1,1.87,6106,114.855122,124.411448,134.258679,140.306336,I,Above,Gable,0,5701,Wood,43.91432543,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 7376,NJBF000080790,,Brigantine,NJ,39.41630949,-74.3768835,RES1,3001,,NaN,NE,1997,0,3103,6,1,742.2675196,742.2675196,3505,NO,96.07,109.95,3,-0.09,6106,115.102808,124.624756,134.512561,140.37534,I,Above,Gable,0,5701,Wood,103.0142095,0,0,,,,1,1,,0.03,nav,1,1997,6,, 7377,NJBF000080766,5 COLLETTE CIRCLE,Brigantine,NJ,39.41622122,-74.37688413,RES1,3001,,17,NE,1998,1998,3103,2,1,1361.888549,1361.888549,3505,NO,24.23,35.87,3,-1.62,6106,115.103704,124.625639,134.513523,140.376474,I,Above,Flat,0,5701,Wood,30.04921368,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 7378,NJBF000077327,211 25TH STREET SO,Brigantine,NJ,39.39792203,-74.38143527,RES1,3001,,17,NE,1930,1930,3102,2,1,1609.294353,1609.294353,3507,NO,31.51,43.64,1,0.77,6106,115.202554,124.723312,134.613351,140.540207,I,Above,Gable,0,5701,Wood,37.57354503,0,0,,,,1,1,,0.03,nav,1,1930,2,, 7379,NJBF000075214,4420 PRIVATEER RD,Brigantine,NJ,39.38908346,-74.39814855,RES1,3001,,16,NE,1968,1968,3102,1,1,1773.203823,1773.203823,3507,NO,14.61,29.29,1,-0.32,6106,114.953357,124.500195,134.356218,140.392703,I,Above,Hip,0,5701,Wood,21.95180648,0,0,,,,1,1,,0.03,nav,1,1968,1,, 7380,NJBF000077418,2501 REVERE BLVD,Brigantine,NJ,39.39850482,-74.38279063,RES1,3001,,18,NE,2005,2005,3102,3,1,2466.135396,2466.135396,3507,NO,40.65,52.93,1,0.79,6106,115.168469,124.691972,134.578485,140.511237,I,Above,Hip,0,5701,Wood,46.79285214,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7381,NJBF000075356,329 40TH STREET SO,Brigantine,NJ,39.38960509,-74.39000287,RES1,3001,,18,NE,2006,2006,3102,3,1,1326.365752,1326.365752,3507,NO,49.24,62.39,1,2.05,6110,115.116712,124.646727,134.520804,140.513981,I,Above,Gable,0,5701,Wood,55.8155428,0,1.1,,,,1,1,,0.35,nav,1,2006,3,, 7382,NJBF000074757,,Brigantine,NJ,39.38768944,-74.39331798,RES3D,3001,,NaN,ME,1969,0,3301,2,1,2936.40075,2936.40075,3507,NO,22.4,31.94,1,1.21,6106,115.069186,124.604344,134.47169,140.48728,I,Above,Gable,0,NaN,Wood,27.17050402,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7383,NJBF000076834,322 27TH STREET SO,Brigantine,NJ,39.39497692,-74.38119606,RES1,3001,,17,NE,1994,1994,3102,2,1,1999.484323,1999.484323,3507,NO,37,47.39,1,2.98,6106,115.239352,124.757376,134.64949,140.582045,I,Above,Hip,0,5701,Wood,42.19088866,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 7384,NJBF000074474,,Brigantine,NJ,39.386619,-74.3991735,RES1,3001,,NaN,NE,1969,0,3102,2,1,1312.843069,1312.843069,3507,NO,34.49,46.09,1,1.07,6110,114.959194,124.506272,134.361041,140.409532,I,Above,Gable,0,5701,Wood,40.29094927,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7385,NJBF000077967,333 12TH STREET SO,Brigantine,NJ,39.40197044,-74.37029291,RES1,3001,,16,NE,1954,1954,3102,2,1,1345.386658,1345.386658,3502,NO,44.14,57.46,5,12.2,6106,115.386414,124.892842,134.807503,140.663644,I,Above,Hip,0,5701,Wood,50.79847626,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7386,NJBF000077614,100 24TH STREET SO,Brigantine,NJ,39.39984277,-74.38274964,RES1,3001,,16,NE,1956,1956,3101,2,1,2683.244954,2683.244954,3507,YES,25.81,39.03,1,-0.44,6106,115.154969,124.679284,134.565134,140.4945,I,Above,Hip,0,5701,Wood,32.41675456,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 7387,NJBF000077639,2404 BAYSHORE AVE,Brigantine,NJ,39.40003918,-74.38291877,RES1,3001,,17,NE,1992,1992,3101,2,1,1809.98277,1809.98277,3507,NO,36.7,41.76,1,-0.35,6106,115.149408,124.674135,134.559471,140.489272,I,Above,Hip,0,5701,Wood,39.22865942,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 7388,NJBF000080864,802 STERLING PLACE,Brigantine,NJ,39.41664644,-74.38110393,RES1,3001,,17,NE,1995,1995,3103,1,1,2272.573458,2272.573458,3505,NO,13.02,25.6,3,-2.05,6106,115.013764,124.541227,134.418577,140.302332,I,Above,Hip,0,5701,Wood,19.30843633,0,1.1,,,,1,1,,0.03,nav,1,1995,1,, 7389,NJBF000080458,1413 SHERIDAN BLVD,Brigantine,NJ,39.41511525,-74.37606893,RES1,3001,,16,NE,1966,1966,3103,1,1,1395.086477,1395.086477,3505,NO,23.69,34.33,3,6.8,6106,115.131513,124.652222,134.543055,140.403916,I,Above,Flat,0,5701,Wood,29.00860347,0,0,,,,1,1,,0.03,nav,1,1966,1,, 7390,NJBF000080395,1304 SHERIDAN BLVD,Brigantine,NJ,39.41491844,-74.37311023,RES1,3001,,16,NE,1972,1972,3102,2,1,1026.013721,1026.013721,3507,YES,34.59,45.42,1,-0.12,6106,115.193454,124.710439,134.608667,140.454196,I,Above,Hip,0,5701,Wood,40.00450215,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7391,NJBF000077223,2101 OCEAN AVE,Brigantine,NJ,39.39734563,-74.37683708,RES1,3001,,17,NE,1954,1954,3102,1,1,3220.770616,3220.770616,3507,NO,12.59,25.99,1,-0.05,6110,115.302904,124.815539,134.716852,140.619895,I,Above,Hip,0,5701,Wood,19.28681216,0,1.2,,,,1,1,,0.35,nav,1,1954,1,, 7392,NJBF000074316,,Brigantine,NJ,39.38587904,-74.39512172,RES1,3001,,NaN,NE,1969,0,3102,2,1,19570.77272,19570.77272,3507,NO,28.28,42.42,1,1.27,6106,115.051817,124.589163,134.453152,140.482993,I,Above,Flat,0,5701,Wood,35.35158488,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7393,NJBF000077980,1600 REVERE BLVD,Brigantine,NJ,39.40208789,-74.3755586,RES1,3001,,16,NE,1955,1955,3101,2,1,2337.002925,2337.002925,3507,NO,38.82,44.32,1,0.56,6106,115.278008,124.792227,134.693945,140.579283,I,Above,Hip,0,5701,Wood,41.57201735,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 7394,NJBF000077808,204 18TH STREET SO,Brigantine,NJ,39.40096779,-74.37676169,RES1,3001,,16,NE,1971,1971,3101,1,1,1553.497256,1553.497256,3507,NO,10.79,18.27,1,-0.35,6106,115.26544,124.780734,134.680217,140.574652,I,Above,Hip,0,5701,Wood,14.52898748,0,0,,,,1,1,,0.03,nav,1,1971,1,, 7395,NJBF000073598,2 SEASIDE RD,Brigantine,NJ,39.3819117,-74.40375076,RES1,3001,,16,NE,1975,1975,3101,2,1,1815.698091,1815.698091,3507,YES,35.6,45.83,1,0.68,6106,114.916076,124.469515,134.316038,140.400894,I,Above,Gable,0,5701,Wood,40.71261885,0,0,,,,1,1,,0.03,nav,1,1975,2,, 7396,NJBF000076994,205 30TH STREET SO,Brigantine,NJ,39.395769,-74.385106,RES1,3001,,16,NE,1955,1955,3102,2,1,1309.784696,1309.784696,3507,YES,26.14,32.13,1,2.35,6106,115.15041,124.676067,134.558606,140.51029,I,Above,Gable,0,5701,Wood,29.13705689,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7397,NJBF000077216,305 24TH STREET SO,Brigantine,NJ,39.39729805,-74.37956354,RES1,3001,,15,NE,1954,1954,3102,1,1,1715.583256,1715.583256,3507,NO,16.47,26.23,1,1.62,6106,115.24763,124.764739,134.659553,140.577719,I,Above,Gable,0,5701,Wood,21.35271678,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7398,NJBF000078013,317 12TH STREET SO,Brigantine,NJ,39.40230583,-74.37061164,RES1,3001,,16,NE,1938,1938,3102,2,1,1296.703732,1296.703732,3502,NO,27.08,34.67,5,3.19,6106,115.376336,124.883475,134.797147,140.654387,I,Above,Flat,0,5701,Wood,30.87723422,0,0,,,,1,1,,0.03,nav,1,1938,2,, 7399,NJBF000073441,5101 OCEAN DRIVE SOUTH,Brigantine,NJ,39.38074284,-74.40361122,RES1,3001,,16,NE,1975,1975,3101,2,1,1720.392563,1720.392563,3507,YES,30.05,41.23,1,1.98,6106,114.932202,124.484098,134.331282,140.418844,I,Above,Gable,0,5701,Wood,35.63955687,0,0,,,,1,1,,0.03,nav,1,1975,2,, 7400,NJBF000076501,235 35TH STREET SO,Brigantine,NJ,39.39366368,-74.38885022,RES1,3001,,17,NE,2017,2017,3102,3,1,1196.817073,1196.817073,3507,NO,39.07,53.08,1,2.88,6106,115.096086,124.627197,134.502107,140.478787,I,Above,Gable,0,5701,Wood,46.07536372,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 7401,NJBF000077374,108 26TH STREET SO,Brigantine,NJ,39.39821438,-74.38364617,RES1,3001,,16,NE,1951,1951,3102,1,1,2213.781994,2213.781994,3507,NO,17.35,32.23,1,0.67,6106,115.154046,124.678838,134.563499,140.501499,I,Above,Gable,0,5701,Wood,24.79046187,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 7402,NJBF000075952,,Brigantine,NJ,39.39173808,-74.39111715,RES1,3001,,NaN,NE,1969,0,3102,2,1,1956.82913,1956.82913,3507,NO,36.06,48.23,1,-0.67,6106,115.070231,124.604319,134.474943,140.468399,I,Above,Gable,0,5701,Wood,42.14380893,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7403,NJBF000077949,1804 BAYSHORE AVE,Brigantine,NJ,39.40185723,-74.37807438,RES1,3001,,20,NE,2007,2007,3101,3,1,2496.529689,2496.529689,3507,NO,37.15,46.17,1,1.37,6106,115.229158,124.747105,134.642895,140.542502,I,Above,Flat,0,5701,Wood,41.6601781,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 7404,NJBF000074065,,Brigantine,NJ,39.384701,-74.4002615,RES1,3001,,NaN,NE,1969,0,3102,2,1,1466.458975,1466.458975,3507,NO,35.41,47.7,1,2.22,6106,114.95784,124.505674,134.358781,140.418145,I,Above,Hip,0,5701,Wood,41.55726849,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7405,NJBF000075827,,Brigantine,NJ,39.39128466,-74.3891036,RES1,3001,,NaN,NE,1969,0,3102,2,1,1792.25378,1792.25378,3507,NO,31.86,45.18,1,0.15,6106,115.116826,124.646512,134.521931,140.506027,I,Above,Flat,0,5701,Wood,38.51861365,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7406,NJBF000077824,1605 W BRIGANTINE AVE,Brigantine,NJ,39.40105906,-74.37509564,RES1,3001,,17,NE,1960,1960,3101,2,1,3372.451706,3372.451706,3507,NO,25.22,33.34,1,0.27,6106,115.298449,124.811238,134.714696,140.599742,I,Above,Gable,0,5701,Wood,29.28188585,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 7407,NJBF000078059,1112-8 W BRIGANTINE AVE,Brigantine,NJ,39.40264429,-74.37085525,COM1,3001,,NaN,ME,1969,1970,3401,1,1,1679.21833,1679.21833,3507,NO,22.19,36.54,1,2.83,6106,115.367785,124.875522,134.78839,140.64629,I,Above,Flat,0,NaN,Wood,29.36728685,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7408,NJBF000077629,1501 OCEAN AVE,Brigantine,NJ,39.3999523,-74.37250393,RES1,3001,,16,NE,1953,1953,3102,1,1,2085.33277,2085.33277,3505,NO,18.72,27.45,3,7.03,6106,115.36314,124.871165,134.781571,140.654555,I,Above,Gable,0,5701,Wood,23.08461916,0,1.2,,,,1,1,,0.03,nav,1,1953,1,, 7409,NJBF000074326,68 DELMAR DRIVE,Brigantine,NJ,39.38590859,-74.40225916,RES3B,3001,,33,ME,1980,1980,3301,2,1,3652.905007,3652.905007,3507,YES,31.44,40.46,1,0.77,6106,114.902643,124.456226,134.304548,140.370443,I,Above,Gable,0,5701,Wood,35.94946509,0,0,,,,1,1,,0.03,nav,1,1980,2,, 7410,NJBF000077487,2107 W BRIGANTINE AVE,Brigantine,NJ,39.39899129,-74.37892067,RES1,3001,,16,NE,1953,1953,3101,1,1,1879.223074,1879.223074,3507,NO,14.5,23.64,1,2.11,6106,115.242534,124.759863,134.655296,140.566028,I,Above,Gable,0,5701,Wood,19.06927862,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 7411,NJBF000078019,1206 W BRIGANTINE AVE,Brigantine,NJ,39.40236656,-74.37135829,COM1,3001,737,NaN,ME,1969,1950,3401,1,1,10556.67314,10556.67314,3507,NO,15.56,21.11,1,2.33,6106,115.360528,124.868771,134.78057,140.641895,I,Above,Flat,0,NaN,Wood,18.33543634,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7412,NJBF000078040,316 11TH STREET SO,Brigantine,NJ,39.40249439,-74.37034312,RES1,3001,,16,NE,1955,1955,3102,2,1,1509.119621,1509.119621,3502,NO,36.8,43.97,5,7.11,6110,115.379787,124.886691,134.800912,140.656232,I,Above,Gable,0,5701,Wood,40.38610032,0,0,,,,1,1,,0.35,nav,1,1955,2,, 7413,NJBF000078022,320 11TH STREET SO,Brigantine,NJ,39.40237094,-74.37027087,RES1,3001,,18,NE,2007,2007,3102,3,1,2996.979319,2996.979319,3502,NO,41.88,48.38,5,2.28,6106,115.382565,124.889274,134.803747,140.658918,I,Above,Gable,0,5701,Wood,45.12900694,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 7414,NJBF000078132,317 10TH STREET SO,Brigantine,NJ,39.40313067,-74.36914708,RES1,3001,,16,NE,1955,1955,3102,2,1,1513.664795,1513.664795,3502,NO,32.28,46.6,5,-2.61,6110,115.397247,124.902982,134.819766,140.66696,I,Above,Gable,0,5701,Wood,39.44293822,0,0,,,,1,1,,0.35,nav,1,1955,2,, 7415,NJBF000075970,223 40TH STREET SO,Brigantine,NJ,39.39179932,-74.39310256,RES1,3001,,43,NE,1947,1947,3102,1,3,3377.731061,3377.731061,3507,NO,12.57,18.59,1,-0.8,6106,115.028433,124.566617,134.432712,140.436259,I,Above,Gable,0,5701,Wood,15.57614259,0,0,,,,1,1,,0.03,nav,1,1947,1,, 7416,NJBF000080668,713 STERLING PLACE,Brigantine,NJ,39.41586309,-74.38014256,RES1,3001,,16,NE,1972,1972,3103,2,1,1508.568227,1508.568227,3505,NO,40.39,47.58,3,1.99,6106,115.041225,124.567353,134.447698,140.328167,I,Above,Hip,0,5701,Wood,43.98263576,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7417,NJBF000076522,249 34TH STREET SO,Brigantine,NJ,39.3937701,-74.38769815,RES1,3001,,16,NE,1960,1960,3102,1,1,2455.007068,2455.007068,3507,NO,15.15,28.89,1,0.37,6106,115.118708,124.647682,134.525194,140.495559,I,Above,Hip,0,5701,Wood,22.02064211,0,0,,,,1,1,,0.03,nav,1,1960,1,, 7418,NJBF000075437,339 39TH STREET SO,Brigantine,NJ,39.38987225,-74.38911412,RES1,3001,,15,NE,1954,1954,3102,1,1,1023.133625,1023.133625,3507,NO,17.75,27.06,1,0.4,6110,115.132158,124.660621,134.536616,140.524404,I,Above,Gable,0,5701,Wood,22.40837112,0,0,,,,1,1,,0.35,nav,1,1954,1,, 7419,NJBF000078135,,Brigantine,NJ,39.40314677,-74.37762639,RES1,3001,,NaN,NE,1954,0,3102,2,1,1182.034696,1182.034696,3507,NO,24.21,37.22,1,1.9,6106,115.224578,124.742636,134.638699,140.532997,I,Above,Gable,0,5701,Wood,30.7149881,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7420,NJBF000078128,239 13TH STREET SO,Brigantine,NJ,39.4031125,-74.3725885,RES1,3001,,16,NE,1948,1948,3102,1,1,1535.548665,1535.548665,3505,NO,20.17,31.78,3,6.74,6106,115.32755,124.838094,134.746413,140.613061,I,Above,Flat,0,5701,Wood,25.97423849,0,0,,,,1,1,,0.03,nav,1,1948,1,, 7421,NJBF000078116,243 13TH STREET SO,Brigantine,NJ,39.40304613,-74.37248138,RES1,3001,,15,NE,1954,1954,3102,1,1,1293.857726,1293.857726,3505,NO,19.78,26.78,3,0.61,6106,115.33045,124.840792,134.749417,140.615602,I,Above,Flat,0,5701,Wood,23.28025101,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7422,NJBF000081089,825 W SHORE DR,Brigantine,NJ,39.41750717,-74.38234243,RES1,3001,,16,NE,1973,1973,3103,2,1,638.5851596,638.5851596,3505,YES,25.58,36.84,3,3.29,6106,114.979914,124.509049,134.38267,140.270887,I,Above,Gable,0,5701,Wood,31.21073406,0,0,,,,1,1,,0.03,nav,1,1973,2,, 7423,NJBF000074954,5 45TH COVE,Brigantine,NJ,39.38828005,-74.39614181,RES1,3001,,16,NE,1968,1968,3102,2,1,2202.102121,2202.102121,3507,YES,28.54,41.2,1,-0.28,6110,115.003969,124.54574,134.406545,140.435084,I,Above,Gable,0,5701,Wood,34.86866921,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 7424,NJBF000077222,103 29TH STREET SO,Brigantine,NJ,39.39734486,-74.38566383,RES1,3001,,16,NE,1950,1950,3102,2,1,1482.047966,1482.047966,3507,NO,25.18,35.38,1,1.41,6106,115.121918,124.649712,134.530122,140.480901,I,Above,Gable,0,5701,Wood,30.28133185,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 7425,NJBF000073559,5100 HARBOR BEACH BLVD,Brigantine,NJ,39.38161298,-74.40461402,RES1,3001,,17,NE,1975,1975,3101,1,1,1981.850598,1981.850598,3507,NO,11.72,21.64,1,0.26,6106,114.901347,124.456601,134.301379,140.391398,I,Above,Hip,0,5701,Wood,16.6808203,0,0,,,,1,1,,0.03,nav,1,1975,1,, 7426,NJBF000077655,1419 OCEAN AVE,Brigantine,NJ,39.40014806,-74.37212883,RES1,3001,,17,NE,1946,1946,3102,2,1,1193.004083,1193.004083,3502,NO,31.14,39.4,5,7.76,6110,115.368662,124.876289,134.787501,140.657943,I,Above,Gable,0,5701,Wood,35.27086598,0,1.1,,,,1,1,,0.35,nav,1,1946,2,, 7427,NJBF000075266,25 EXPLORER RD,Brigantine,NJ,39.38929233,-74.40211766,RES1,3001,,16,NE,1968,1968,3102,2,1,1630.230218,1630.230218,3507,YES,27.26,39.39,1,1.39,6106,114.868304,124.424227,134.271451,140.326987,I,Above,Gable,0,5701,Wood,33.32583378,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7428,NJBF000076012,,Brigantine,NJ,39.39194613,-74.38635349,RES1,3001,,NaN,NE,1969,0,3102,2,1,1470.738736,1470.738736,3507,NO,31.19,39.88,1,2.61,6106,115.166373,124.691266,134.572725,140.540545,I,Above,Hip,0,5701,Wood,35.53495237,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7429,NJBF000075083,8 EXPLORER COVE,Brigantine,NJ,39.38864711,-74.4006316,RES1,3001,,16,NE,1968,1968,3102,1,1,2247.063434,2247.063434,3507,NO,18.87,29.54,1,-0.36,6106,114.906395,124.458452,134.309201,140.359267,I,Above,Hip,0,5701,Wood,24.20289545,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7430,NJBF000075656,5 BEACH COVE,Brigantine,NJ,39.39063218,-74.40168197,RES1,3001,,16,NE,1974,1974,3102,2,1,1911.351852,1911.351852,3507,YES,23.25,29.68,1,0.45,6106,114.862769,124.418631,134.266197,140.315808,I,Above,Gable,0,5701,Wood,26.46868838,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 7431,NJBF000080980,808 LAFAYETTE BLVD,Brigantine,NJ,39.41708694,-74.38032199,RES1,3001,,16,NE,2016,2016,3103,3,1,1586.583006,1586.583006,3505,NO,56.45,68.77,3,-1.17,6106,115.025179,124.551625,134.430449,140.309354,I,Above,Gable,0,5701,Wood,62.61471674,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 7432,NJBF000075784,338 36TH STREET SO,Brigantine,NJ,39.39111504,-74.38777759,RES1,3001,,16,NE,1956,1956,3102,2,1,1213.889946,1213.889946,3507,NO,35.76,41.74,1,2.27,6106,115.146086,124.673011,134.551546,140.529061,I,Above,Gable,0,5701,Wood,38.75242556,0,0,,,,1,1,,0.03,nav,1,1956,2,, 7433,NJBF000073185,37 OCEAN DRIVE WEST,Brigantine,NJ,39.37873507,-74.40780893,RES1,3001,,17,NE,1975,1975,3103,2,1,2340.445886,2340.445886,3505,NO,38.26,45.46,3,-0.32,6106,114.866796,124.427097,134.266001,140.380336,I,Above,Hip,0,5701,Wood,41.85851071,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7434,NJBF000075838,,Brigantine,NJ,39.39132746,-74.38623198,RES1,3001,,NaN,NE,1969,0,3102,2,1,1749.783758,1749.783758,3507,NO,34.35,47.58,1,0.38,6106,115.175662,124.699775,134.581783,140.550513,I,Above,Flat,0,5701,Wood,40.96268006,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7435,NJBF000079412,500 E BEACH AVE,Brigantine,NJ,39.41103559,-74.36121608,RES1,3001,,43,NE,1955,1955,3102,2,2,1138.336778,1138.336778,3507,NO,38.02,52.04,1,2.83,6106,115.473709,124.975382,134.906567,140.692737,I,Above,Flat,0,5701,Wood,45.02759938,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7436,NJBF000076247,3406 W BRIGANTINE AVE,Brigantine,NJ,39.392719,-74.3873265,RES1,3001,,43,NE,1956,1956,3102,2,2,1027.725967,1027.725967,3507,NO,36.31,44.09,1,1.41,6106,115.137822,124.665241,134.544102,140.515158,I,Above,Gable,0,5701,Wood,40.20184341,0,0,,,,1,1,,0.03,nav,1,1956,2,, 7437,NJBF000075446,4409 PRIVATEER RD,Brigantine,NJ,39.38989202,-74.39860648,RES1,3001,,16,NE,1968,1968,3102,2,1,986.4910809,986.4910809,3507,NO,25.52,32.03,1,-0.93,6106,114.934965,124.483437,134.338099,140.374631,I,Above,Gable,0,5701,Wood,28.77430097,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7438,NJBF000077634,301 18TH STREET SO,Brigantine,NJ,39.39999324,-74.37526762,RES1,3001,,15,NE,1970,1970,3102,1,1,1790.902871,1790.902871,3507,NO,9.72,17.65,1,-0.96,6106,115.30638,124.818637,134.722296,140.610659,I,Above,Hip,0,5701,Wood,13.68851245,0,0,,,,1,1,,0.03,nav,1,1970,1,, 7439,NJBF000080698,4 COLLETTE CIRCLE,Brigantine,NJ,39.4159541,-74.37616576,RES1,3001,,17,NE,1997,1997,3103,2,1,1943.697354,1943.697354,3505,NO,34.59,43.39,3,2.79,6106,115.120975,124.641964,134.531826,140.39155,I,Above,Hip,0,5701,Wood,38.99196742,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 7440,NJBF000076735,,Brigantine,NJ,39.39459922,-74.40196908,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1843.674535,1843.674535,3507,NO,27.14,41.48,1,-0.88,6106,114.813902,124.372725,134.217677,140.257509,I,Above,Hip,0,5701,Wood,34.30705733,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7441,NJBF000080937,902 SARAZEN RD,Brigantine,NJ,39.41694399,-74.37760249,RES1,3001,,16,NE,1967,1967,3103,2,1,1315.471211,1315.471211,3505,YES,42.41,53.96,3,7.5,6106,115.081799,124.604732,134.49023,140.35549,I,Above,Flat,0,5701,Wood,48.18358766,0,0,,,,1,1,,0.03,nav,1,1967,2,, 7442,NJBF000081139,816 LAFAYETTE BLVD,Brigantine,NJ,39.41771142,-74.3804179,RES1,3001,,17,NE,1988,1988,3103,2,1,1565.525809,1565.525809,3505,NO,36.29,41.97,3,4.65,6106,115.016924,124.543513,134.42154,140.299679,I,Above,Hip,0,5701,Wood,39.13017767,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 7443,NJBF000080328,110 12TH STREET NO,Brigantine,NJ,39.41470855,-74.35775907,RES1,3001,,16,NE,1962,1962,3102,2,1,786.26676,786.26676,3507,NO,34.71,46.53,1,2.7,6106,115.504688,125.005223,134.942253,140.701815,I,Above,Gable,0,5701,Wood,40.61983168,0,0,,,,1,1,,0.03,nav,1,1962,2,, 7444,NJBF000075155,,Brigantine,NJ,39.38887798,-74.39289942,RES1,3001,,NaN,NE,1969,0,3102,2,1,2802.12645,2802.12645,3507,NO,23.58,37.65,1,1.67,6106,115.06473,124.600078,134.467895,140.478135,I,Above,Flat,0,5701,Wood,30.61167342,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7445,NJBF000076016,214 39TH STREET SO,Brigantine,NJ,39.39195782,-74.39270014,RES1,3001,,43,NE,1970,1970,3102,2,2,874.9391803,874.9391803,3507,NO,37.25,43.94,1,-0.52,6106,115.035048,124.572527,134.43946,140.440518,I,Above,Flat,0,5701,Wood,40.59791529,0,0,,,,1,1,,0.03,nav,1,1970,2,, 7446,NJBF000075316,115 44TH STREET SO,Brigantine,NJ,39.389461,-74.39579934,RES1,3001,,16,NE,1968,1968,3102,1,1,2186.418506,2186.418506,3507,NO,13.48,27.57,1,2.22,6106,114.998091,124.540106,134.401184,140.424763,I,Above,Gable,0,5701,Wood,20.52427811,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7447,NJBF000076800,4029 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3948494,-74.39881605,RES1,3001,,47,NE,1974,1974,3102,2,2,2254.496935,2254.496935,3507,NO,21.99,36.2,1,0.46,6106,114.876822,124.428962,134.280747,140.304683,I,Above,Gable,0,5701,Wood,29.09391646,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 7448,NJBF000077665,1413 OCEAN AVE,Brigantine,NJ,39.40021665,-74.37196297,RES1,3001,,15,NE,1958,1958,3102,1,1,1258.361372,1258.361372,3502,NO,22.54,30.02,5,5.11,6110,115.371297,124.878734,134.790314,140.659668,I,Above,Gable,0,5701,Wood,26.27858283,0,0,,,,1,1,,0.35,nav,1,1958,1,, 7449,NJBF000077673,1407 OCEAN AVE,Brigantine,NJ,39.40025924,-74.37183381,RES1,3001,,43,NE,1945,1945,3102,2,2,1374.233443,1374.233443,3502,NO,30.94,41.98,5,3.62,6110,115.373469,124.880751,134.792622,140.661156,I,Above,Hip,0,5701,Wood,36.45970322,0,0,,,,1,1,,0.35,nav,1,1945,2,, 7450,NJBF000076713,,Brigantine,NJ,39.39450428,-74.39237214,COM1,3001,,NaN,ME,1969,0,3401,3,1,7571.445056,7571.445056,3507,NO,32.77,39.02,1,0.27,6106,115.014176,124.552821,134.419267,140.411981,I,Above,Gable,0,NaN,Wood,35.89369096,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7451,NJBF000076801,4005 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3948539,-74.39756153,RES1,3001,,15,NE,1950,1950,3102,1,1,1446.075146,1446.075146,3507,NO,18.74,31.75,1,-0.21,6106,114.902818,124.452312,134.306887,140.324671,I,Above,Gable,0,5701,Wood,25.24546217,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7452,NJBF000077653,305 17TH STREET SO,Brigantine,NJ,39.40014188,-74.37425158,RES1,3001,,16,NE,1954,1954,3102,1,1,1949.643007,1949.643007,3505,YES,20.47,26.32,3,2.79,6106,115.325493,124.836305,134.742343,140.624719,I,Above,Hip,0,5701,Wood,23.39610049,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7453,NJBF000074339,4613 HARBOR BEACH BLVD,Brigantine,NJ,39.385961,-74.398604,RES1,3001,,16,NE,1970,1970,3102,2,1,1658.716563,1658.716563,3507,NO,29.36,43.08,1,-0.57,6110,114.978387,124.523583,134.379852,140.427304,I,Above,Gable,0,5701,Wood,36.22062017,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 7454,NJBF000073200,10 HARBOUR COURT,Brigantine,NJ,39.37886364,-74.40633082,RES1,3001,,16,NE,1975,1975,3103,2,1,1216.933177,1216.933177,3505,YES,34.86,42.83,3,5.75,6106,114.896414,124.453082,134.295048,140.401699,I,Above,Gable,0,5701,Wood,38.84188106,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7455,NJBF000073796,12 ROSS DRIVE EAST,Brigantine,NJ,39.38320556,-74.40064726,RES3C,3001,,37,ME,1986,1986,3301,2,1,7546.615642,7546.615642,3507,NO,39.58,47.15,1,1.21,6106,114.966505,124.513798,134.366579,140.432135,I,Above,Gable,0,5701,Wood,43.36730948,0,0,,,,1,1,,0.03,nav,1,1986,2,, 7456,NJBF000074816,,Brigantine,NJ,39.3878691,-74.39087781,RES3D,3001,,NaN,E,1969,0,3303,3,1,4948.076897,4948.076897,3507,NO,51.27,62.03,1,-0.92,6110,115.117795,124.647991,134.520767,140.523097,I,Above,Gable,0,NaN,Wood,56.64894887,0,0,,,,1,1,,0.35,nav,1,1969,3,, 7457,NJBF000077664,111 23RD STREET SO,Brigantine,NJ,39.4002166,-74.3810784,RES1,3001,,16,NE,1950,1950,3101,1,1,1236.478157,1236.478157,3507,NO,11.89,21.64,1,-0.95,6106,115.185234,124.706975,134.596568,140.516132,I,Above,Gable,0,5701,Wood,16.76350086,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7458,NJBF000076077,264 36TH STREET SO,Brigantine,NJ,39.39216117,-74.389165,RES1,3001,,43,NE,1955,1955,3102,1,2,765.6824596,765.6824596,3507,NO,12.95,25.12,1,-0.99,6106,115.105972,124.63651,134.511399,140.493567,I,Above,Flat,0,5701,Wood,19.03738316,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 7459,NJBF000075662,107 SHIPMASTER DRIVE,Brigantine,NJ,39.39064985,-74.4029537,RES1,3001,,18,NE,1988,1988,3102,2,1,2420.079064,2420.079064,3507,NO,22.42,36.3,1,-1,6106,114.836024,124.394786,134.239569,140.295289,I,Above,Hip,0,5701,Wood,29.35873429,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 7460,NJBF000080588,1308 DUNCAN PLACE,Brigantine,NJ,39.41555058,-74.37378246,RES1,3001,,17,NE,1995,1995,3102,2,1,1579.828723,1579.828723,3507,NO,31.31,39.42,1,1.43,6106,115.173365,124.691328,134.587358,140.435265,I,Above,Gable,0,5701,Wood,35.36342574,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 7461,NJBF000075423,,Brigantine,NJ,39.38982314,-74.38831167,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3170.048355,3170.048355,3507,NO,22.18,31.8,1,-0.94,6106,115.149278,124.676093,134.553943,140.537601,I,Above,Flat,0,NaN,Wood,26.99230026,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7462,NJBF000081003,813 STERLING PLACE,Brigantine,NJ,39.41719058,-74.38076606,RES1,3001,,16,NE,1972,1972,3103,2,1,1494.031543,1494.031543,3505,NO,25.85,31.01,3,-0.55,6106,115.015114,124.542148,134.419815,140.300758,I,Above,Hip,0,5701,Wood,28.42842709,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7463,NJBF000080991,813 STERLING PLACE,Brigantine,NJ,39.41714449,-74.38060999,RES1,3001,,16,NE,1972,1972,3103,2,1,577.3270292,577.3270292,3505,NO,35.79,42.52,3,-2.02,6106,115.018756,124.545583,134.423666,140.303915,I,Above,Flat,0,5701,Wood,39.15578599,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7464,NJBF000074493,33 LIGHTHOUSE DR,Brigantine,NJ,39.38667971,-74.40137509,RES1,3001,,43,NE,1986,1986,3102,2,2,1635.080146,1635.080146,3507,NO,24.06,37.41,1,-0.88,6110,114.912575,124.464752,134.314691,140.374006,I,Above,Hip,0,5701,Wood,30.73610682,0,0,,,,1,1,,0.35,nav,1,1986,2,, 7465,NJBF000076521,,Brigantine,NJ,39.39376908,-74.40201325,RES1,3001,,NaN,NE,1969,0,3102,2,1,2866.526881,2866.526881,3507,NO,29.36,42.19,1,-0.78,6106,114.821902,124.380392,134.225685,140.268055,I,Above,Gable,0,5701,Wood,35.77414617,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7466,NJBF000075756,318 37TH STREET SO,Brigantine,NJ,39.39100702,-74.38874617,RES1,3001,,16,NE,1952,1952,3102,2,2,1379.047888,1379.047888,3507,NO,26.2,34,1,2.89,6106,115.127276,124.656013,134.532373,140.515293,I,Above,Flat,0,5701,Wood,30.09986812,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7467,NJBF000076895,311 28TH STREET SO,Brigantine,NJ,39.39522686,-74.38200138,RES1,3001,,17,NE,1954,1954,3102,2,1,2105.857982,2105.857982,3507,NO,29.61,35.02,1,1.87,6106,115.220108,124.73976,134.629853,140.566185,I,Above,Gable,0,5701,Wood,32.31414399,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7468,NJBF000076910,2905 W BRIGANTINE AVE,Brigantine,NJ,39.39536672,-74.38458888,RES1,3001,,16,NE,1972,1972,3102,2,1,2128.187903,2128.187903,3507,NO,22.31,35.04,1,0.16,6106,115.165402,124.689811,134.573761,140.523676,I,Above,Gable,0,5701,Wood,28.6781806,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 7469,NJBF000075414,18 LAGOON BLVD,Brigantine,NJ,39.38976853,-74.40167931,RES1,3001,,17,NE,1983,1983,3102,2,1,2479.34688,2479.34688,3507,NO,25.62,32.09,1,2.42,6106,114.87225,124.427511,134.275479,140.327518,I,Above,Gable,0,5701,Wood,28.85602923,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 7470,NJBF000074544,,Brigantine,NJ,39.386914,-74.39216863,RES3C,3001,,NaN,ME,1969,0,3301,2,1,9262.049351,9262.049351,3507,NO,27.25,41.43,1,0.7,6106,115.101636,124.633618,134.503835,140.515487,I,Above,Flat,0,NaN,Wood,34.34223374,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7471,NJBF000077942,204 16TH STREET SO,Brigantine,NJ,39.40181195,-74.37525221,RES1,3001,,16,NE,1956,1956,3101,2,1,1809.581905,1809.581905,3507,NO,31.26,41.79,1,2.4,6106,115.287213,124.800776,134.703406,140.587658,I,Above,Hip,0,5701,Wood,36.52643815,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 7472,NJBF000077029,2801 W BRIGANTINE AVE,Brigantine,NJ,39.39596002,-74.38358795,RES1,3001,,19,NE,1956,1956,3102,2,1,3386.59525,3386.59525,3507,NO,24.99,38.44,1,-0.16,6106,115.179555,124.702613,134.588608,140.531727,I,Above,Hip,0,5701,Wood,31.71502895,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 7473,NJBF000075987,4525 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39183981,-74.40936335,RES1,3001,,18,NE,2006,2006,3103,3,1,1796.660533,1796.660533,3505,NO,51.28,65.78,3,-2.44,6106,114.689049,124.263492,134.093896,140.176225,I,Above,Flat,0,5701,Wood,58.53034492,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 7474,NJBF000075893,13 ATLANTIS COVE,Brigantine,NJ,39.3915314,-74.40039979,RES1,3001,,18,NE,2005,2005,3102,2,1,2661.775985,2661.775985,3507,NO,23.42,36.54,1,1.94,6106,114.879714,124.433304,134.283258,140.324091,I,Above,Gable,0,5701,Wood,29.97781637,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 7475,NJBF000075396,5 EXPLORER RD,Brigantine,NJ,39.38971295,-74.4000013,RES1,3001,,16,NE,1968,1968,3102,1,1,1651.835881,1651.835881,3507,NO,14.7,20.77,1,0.12,6106,114.907862,124.459299,134.310967,140.354921,I,Above,Gable,0,5701,Wood,17.73690193,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7476,NJBF000077161,311 24TH STREET SO,Brigantine,NJ,39.39694051,-74.37920341,RES1,3001,,15,NE,1954,1954,3102,1,1,2338.144467,2338.144467,3507,NO,19.48,25.23,1,2.36,6106,115.258885,124.775102,134.670963,140.587987,I,Above,Hip,0,5701,Wood,22.35602043,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7477,NJBF000074704,447 SEAHORSE RD,Brigantine,NJ,39.3875074,-74.40444475,RES3B,3001,,35,ME,1987,1987,3301,3,1,3509.387071,3509.387071,3507,NO,54.07,59.86,1,0.52,6106,114.839254,124.399277,134.242234,140.314207,I,Above,Hip,0,5701,Wood,56.96516837,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 7478,NJBF000075177,9 SAILFISH DRIVE,Brigantine,NJ,39.38895827,-74.40289887,RES3B,3001,,35,E,1987,1987,3303,3,1,8057.625072,8057.625072,3507,NO,36.12,51.03,1,-0.08,6106,114.855649,124.413128,134.258802,140.319093,I,Above,Gable,0,5701,Wood,43.57627129,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 7479,NJBF000075211,338 SEASHELL LANE,Brigantine,NJ,39.38907385,-74.40455442,RES3B,3001,,35,ME,1984,1984,3301,2,1,3474.408339,3474.408339,3507,YES,30.8,42.21,1,2.67,6106,114.819779,124.381191,134.223231,140.291179,I,Above,Gable,0,5701,Wood,36.50062066,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 7480,NJBF000077321,,Brigantine,NJ,39.39789657,-74.37445689,RES1,3001,,NaN,NE,1969,0,3102,2,1,2397.345236,2397.345236,3505,NO,26.57,36.35,3,1.05,6106,115.345534,124.854833,134.761602,140.650118,I,Above,Hip,0,5701,Wood,31.46370989,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7481,NJBF000077630,309 17TH STREET SO,Brigantine,NJ,39.39995991,-74.37408071,RES1,3001,,16,NE,1958,1958,3102,1,1,2348.090946,2348.090946,3505,NO,17.45,25.06,3,4.08,6106,115.330935,124.841344,134.747902,140.629724,I,Above,Gable,0,5701,Wood,21.2547538,0,1.2,,,,1,1,,0.03,nav,1,1958,1,, 7482,NJBF000077201,105 29TH STREET SO,Brigantine,NJ,39.39722387,-74.38550601,RES1,3001,,16,NE,1952,1952,3102,1,1,1308.732126,1308.732126,3507,NO,14.01,23.13,1,0.33,6106,115.126471,124.653897,134.53474,140.484982,I,Above,Gable,0,5701,Wood,18.56871389,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 7483,NJBF000077698,1401 OCEAN AVE,Brigantine,NJ,39.40038548,-74.37174626,RES1,3001,,20,NE,2005,2005,3102,3,1,3825.928531,3825.928531,3502,NO,34.74,49.46,5,-1.26,6106,115.373903,124.881158,134.793174,140.660937,I,Above,Hip,0,5701,Wood,42.09976109,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7484,NJBF000076038,336 34TH STREET SO,Brigantine,NJ,39.39202746,-74.38645998,RES1,3001,,18,NE,2006,2006,3102,3,1,1364.408512,1364.408512,3507,NO,35.67,45.99,1,-0.39,6106,115.163278,124.688447,134.569623,140.537811,I,Above,Gable,0,5701,Wood,40.83019253,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 7485,NJBF000076246,317 34TH STREET SO,Brigantine,NJ,39.3927185,-74.38652,RES1,3001,,43,NE,1952,1952,3102,1,2,1390.236294,1390.236294,3507,NO,14.6,29.18,1,1.76,6106,115.154467,124.680341,134.561067,140.527836,I,Above,Gable,0,5701,Wood,21.88899876,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7486,NJBF000076879,,Brigantine,NJ,39.39515484,-74.39065208,COM8,3001,,NaN,ME,1969,0,3401,3,1,610.7445594,610.7445594,3507,NO,39.53,47.61,1,2.94,6106,115.042702,124.578391,134.448428,140.43065,I,Above,Gable,0,NaN,Wood,43.56697022,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7487,NJBF000080831,800 STERLING PLACE,Brigantine,NJ,39.41651099,-74.38103949,RES1,3001,,16,NE,1971,1971,3103,2,1,2167.530049,2167.530049,3505,NO,35.85,44.48,3,8.36,6106,115.016451,124.543822,134.421448,140.305149,I,Above,Gable,0,5701,Wood,40.16702547,0,0,,,,1,1,,0.03,nav,1,1971,2,, 7488,NJBF000074676,,Brigantine,NJ,39.38741806,-74.40105534,RES1,3001,,NaN,NE,1969,0,3102,2,1,1374.53319,1374.53319,3507,NO,33.48,42.52,1,1.99,6106,114.911102,124.463151,134.31349,140.369123,I,Above,Gable,0,5701,Wood,37.99940896,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7489,NJBF000076663,400 27TH STREET SO,Brigantine,NJ,39.39424808,-74.38036293,RES1,3001,,20,NE,2000,2000,3102,3,1,1682.715198,1682.715198,3507,NO,52.13,59.84,1,2.48,6106,115.264391,124.780322,134.674754,140.604492,I,Above,Hip,0,5701,Wood,55.98353046,0,1.2,,,,1,1,,0.03,nav,1,2000,3,, 7490,NJBF000077194,2505 W BRIGANTINE AVE,Brigantine,NJ,39.39717955,-74.38174972,RES1,3001,,19,NE,2007,2007,3102,3,1,2313.647969,2313.647969,3507,NO,36.96,48.49,1,0.98,6106,115.204098,124.724848,134.614538,140.544849,I,Above,Hip,0,5701,Wood,42.723067,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 7491,NJBF000077354,1804 OCEAN AVE,Brigantine,NJ,39.39807152,-74.3746056,RES1,3001,,21,NE,2007,2007,3102,3,1,3577.416103,3577.416103,3505,NO,45.15,58.63,3,5.6,6106,115.340601,124.850281,134.756598,140.645556,I,Above,Hip,0,5701,Wood,51.88597956,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 7492,NJBF000077846,1901 REVERE BLVD,Brigantine,NJ,39.40120214,-74.37813863,RES1,3001,,17,NE,1960,1960,3101,2,1,2322.164324,2322.164324,3507,NO,32.32,46.6,1,2.18,6106,115.23482,124.752439,134.648469,140.549904,I,Above,Hip,0,5701,Wood,39.45820983,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 7493,NJBF000076819,3825 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39491941,-74.39418514,RES1,3001,,16,NE,1944,1944,3102,1,1,1638.130936,1638.130936,3507,NO,18.48,28.27,1,-0.33,6106,114.972157,124.514721,134.376846,140.377657,I,Above,Gable,0,5701,Wood,23.375758,0,0,,,,1,1,,0.03,nav,1,1944,1,, 7494,NJBF000075400,4412 WHALERMAN RD,Brigantine,NJ,39.38972665,-74.39907843,RES1,3001,,16,NE,1968,1968,3102,2,1,1050.517432,1050.517432,3507,NO,23.46,33.15,1,1.33,6106,114.926942,124.476334,134.330027,140.369367,I,Above,Hip,0,5701,Wood,28.30374112,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7495,NJBF000078113,323 10TH STREET SO,Brigantine,NJ,39.40301707,-74.36902231,RES1,3001,,15,NE,1954,1954,3102,2,1,1414.471581,1414.471581,3502,NO,35.51,43.65,5,4.51,6110,115.401001,124.906478,134.823642,140.670361,I,Above,Hip,0,5701,Wood,39.57848465,0,0,,,,1,1,,0.35,nav,1,1954,2,, 7496,NJBF000080180,555 CAVERLY DR,Brigantine,NJ,39.41419234,-74.37609395,RES1,3001,,16,NE,1978,1978,3103,1,1,1514.112342,1514.112342,3505,NO,17.41,28.17,3,2.92,6106,115.140463,124.661001,134.552566,140.415386,I,Above,Gable,0,5701,Wood,22.7880641,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 7497,NJBF000074308,23 LIGHTHOUSE DR,Brigantine,NJ,39.38584566,-74.40134759,RES1,3001,,43,NE,1984,1984,3102,2,2,1410.650719,1410.650719,3507,NO,35.44,44.91,1,2.31,6110,114.922384,124.473784,134.324105,140.385661,I,Above,Hip,0,5701,Wood,40.17439535,0,0,,,,1,1,,0.35,nav,1,1984,2,, 7498,NJBF000079841,211 10TH STREET NO,Brigantine,NJ,39.41307769,-74.35753444,RES1,3001,,19,NE,2004,2004,3102,3,1,2304.744346,2304.744346,3507,NO,34.22,46.84,1,1.77,6106,115.526226,125.025536,134.964523,140.725507,I,Above,Hip,0,5701,Wood,40.53031489,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 7499,NJBF000077069,302 26TH STREET SO,Brigantine,NJ,39.39628734,-74.38144023,RES1,3001,,16,NE,1955,1955,3102,1,1,1404.311708,1404.311708,3507,NO,18.14,23.22,1,-0.53,6106,115.220118,124.73964,134.630527,140.561284,I,Above,Hip,0,5701,Wood,20.68153234,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7500,NJBF000075554,327 ARBEGAST DRIVE,Brigantine,NJ,39.39027955,-74.40446714,RES3B,3001,,35,ME,1984,1984,3301,2,1,4984.802962,4984.802962,3507,YES,24.82,31.4,1,2.93,6106,114.808439,124.370448,134.212122,140.276163,I,Above,Gable,0,5701,Wood,28.1101103,0,0,,,,1,1,,0.03,nav,1,1984,2,, 7501,NJBF000075091,129 44TH STREET SO,Brigantine,NJ,39.38868547,-74.39465592,RES1,3001,,16,NE,1968,1968,3102,1,1,1699.671303,1699.671303,3507,NO,20.49,27.66,1,2.14,6106,115.030387,124.569295,134.433249,140.453082,I,Above,Hip,0,5701,Wood,24.07312159,0,0,,,,1,1,,0.03,nav,1,1968,1,, 7502,NJBF000075053,131 44TH STREET SO,Brigantine,NJ,39.38857,-74.39453215,RES1,3001,,16,NE,1968,1968,3102,1,1,2227.154007,2227.154007,3507,NO,20.66,31.95,1,1.49,6106,115.034232,124.572775,134.437052,140.456558,I,Above,Hip,0,5701,Wood,26.30685153,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7503,NJBF000075624,342 37TH STREET SO,Brigantine,NJ,39.39054426,-74.38814087,RES1,3001,,20,NE,2004,2004,3102,3,1,1909.544375,1909.544375,3507,NO,35.2,48.01,1,1.42,6106,115.144867,124.671998,134.549942,140.530843,I,Above,Hip,0,5701,Wood,41.60313821,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 7504,NJBF000074350,,Brigantine,NJ,39.3860267,-74.40192411,RES1,3001,,NaN,NE,1969,0,3102,2,1,1576.321384,1576.321384,3507,NO,27.41,41.01,1,-0.17,6110,114.908338,124.461238,134.310239,140.374138,I,Above,Hip,0,5701,Wood,34.2100162,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7505,NJBF000078089,336 9TH STREET SO,Brigantine,NJ,39.40286514,-74.36843762,RES1,3001,,17,NE,2002,2002,3102,3,1,1327.511503,1327.511503,3502,NO,47.22,55.98,5,13.11,6110,115.41447,124.919033,134.837739,140.681438,I,Above,Gable,0,5701,Wood,51.60074879,0,0,,,,1,1,,0.35,nav,1,2002,3,, 7506,NJBF000075164,339 41ST STREET SO,Brigantine,NJ,39.38891567,-74.3902982,RES1,3001,,43,NE,1964,1964,3102,2,2,1778.352735,1778.352735,3507,NO,29.19,42.37,1,2.12,6110,115.118213,124.6482,134.521884,140.518411,I,Above,Hip,0,5701,Wood,35.77852733,0,0,,,,1,1,,0.35,nav,1,1964,2,, 7507,NJBF000081024,820 BOBBY JONES RD,Brigantine,NJ,39.4172488,-74.38205237,RES1,3001,,17,NE,1979,1979,3103,2,1,2036.940681,2036.940681,3505,NO,32.56,47.46,3,5.98,6106,114.988409,124.517156,134.391702,140.278996,I,Above,Gable,0,5701,Wood,40.01312363,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 7508,NJBF000074667,22 SHIPMASTER DR,Brigantine,NJ,39.38739997,-74.40019781,RES1,3001,,16,NE,1971,1971,3102,2,1,1268.462188,1268.462188,3507,YES,36.77,47.42,1,0.22,6106,114.929189,124.479262,134.33148,140.382906,I,Above,Hip,0,5701,Wood,42.09467342,0,0,,,,1,1,,0.03,nav,1,1971,2,, 7509,NJBF000077074,2305 OCEAN AVE,Brigantine,NJ,39.39632434,-74.37862541,RES1,3001,,16,NE,1940,1940,3102,2,1,745.102872,745.102872,3507,NO,30.1,37.2,1,1.23,6110,115.277409,124.792147,134.689701,140.604988,I,Above,Hip,0,5701,Wood,33.64960683,0,1.2,,,,1,1,,0.35,nav,1,1940,2,, 7510,NJBF000075895,,Brigantine,NJ,39.3915424,-74.41017085,RES1,3001,,NaN,NE,1969,0,3103,4,1,2770.721453,2770.721453,3505,NO,55.37,67.91,3,-1.69,6106,114.675317,124.25156,134.0804,140.167301,I,Above,Hip,0,5701,Wood,61.64315097,0,0,,,,1,1,,0.03,nav,1,1969,4,, 7511,NJBF000075640,317 ARBEGAST DRIVE,Brigantine,NJ,39.39057852,-74.40414293,RES3B,3001,,35,ME,1984,1984,3301,2,1,4304.715674,4304.715674,3507,YES,25.2,40.16,1,0.59,6106,114.811958,124.373406,134.215641,140.277272,I,Above,Gable,0,5701,Wood,32.68149899,0,0,,,,1,1,,0.03,nav,1,1984,2,, 7512,NJBF000074514,108 HUDSON DR,Brigantine,NJ,39.38678818,-74.39663868,RES1,3001,,16,NE,1968,1968,3102,2,1,1528.642445,1528.642445,3507,YES,31.41,43.02,1,2.22,6110,115.010141,124.551687,134.411975,140.447137,I,Above,Gable,0,5701,Wood,37.21464999,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 7513,NJBF000075203,4118 W BRIGANTINE AVE,Brigantine,NJ,39.38906048,-74.39182883,RES1,3001,,47,NE,2009,2009,3102,3,2,2245.094977,2245.094977,3507,NO,51.46,57.56,1,1.08,6110,115.084908,124.618182,134.488339,140.492524,I,Above,Gable,0,5701,Wood,54.51162344,0,0,,,,1,1,,0.35,nav,1,2009,3,, 7514,NJBF000077456,2701 BAYSHORE AVE,Brigantine,NJ,39.39875893,-74.38515845,RES1,3001,,16,NE,1955,1955,3102,2,1,1853.706013,1853.706013,3507,YES,26.46,38.2,1,-0.08,6106,115.117139,124.644953,134.525762,140.470444,I,Above,Hip,0,5701,Wood,32.33165304,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7515,NJBF000076303,,Brigantine,NJ,39.392905,-74.387966,RES1,3001,,NaN,NE,1969,0,3102,2,1,1458.884223,1458.884223,3507,NO,25.85,35.33,1,0.06,6106,115.122605,124.651408,134.52871,140.502673,I,Above,Flat,0,5701,Wood,30.59009546,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7516,NJBF000077475,1705 OCEAN AVE,Brigantine,NJ,39.3989089,-74.37425939,RES1,3001,,16,NE,1962,1962,3102,2,1,1532.127734,1532.127734,3505,NO,29.77,36.24,3,0.74,6106,115.338632,124.84847,134.755178,140.640324,I,Above,Hip,0,5701,Wood,33.00079076,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 7517,NJBF000077328,312 21ST STREET SO,Brigantine,NJ,39.39792452,-74.37743115,RES1,3001,,16,NE,1952,1952,3102,2,1,1701.198173,1701.198173,3507,YES,27.32,40.51,1,0.72,6106,115.284498,124.798572,134.698155,140.603159,I,Above,Gable,0,5701,Wood,33.91459462,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7518,NJBF000078162,332 8TH STREET SO,Brigantine,NJ,39.40335854,-74.36775038,RES1,3001,,16,NE,1956,1956,3102,1,1,1619.158281,1619.158281,3502,NO,30.75,37.99,5,11.88,6110,115.42313,124.927155,134.847265,140.686005,I,Above,Hip,0,5701,Wood,34.37372313,0,0,,,,1,1,,0.35,nav,1,1956,1,, 7519,NJBF000075650,4717 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39061447,-74.41212967,RES1,3001,,47,NE,1981,1981,3103,2,2,1446.528934,1446.528934,3505,NO,41.3,48.95,3,7.89,6106,114.644199,124.224781,134.049954,140.148518,I,Above,Flat,0,5701,Wood,45.1260806,0,0,,,,1,1,,0.03,nav,1,1981,2,, 7520,NJBF000074428,105 HUDSON DR,Brigantine,NJ,39.38638128,-74.39702742,RES1,3001,,16,NE,1968,1968,3102,2,1,1371.520218,1371.520218,3507,NO,25.56,38.99,1,0.61,6110,115.006582,124.548617,134.408201,140.446467,I,Above,Gable,0,5701,Wood,32.27548363,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7521,NJBF000077997,348 10TH STREET SO,Brigantine,NJ,39.40220352,-74.36889052,RES1,3001,,15,NE,1958,1958,3102,1,1,1287.947288,1287.947288,3502,NO,30.43,43.63,5,12.29,6110,115.412362,124.917021,134.835005,140.682669,I,Above,Flat,0,5701,Wood,37.02638754,0,0,,,,1,1,,0.35,nav,1,1958,1,, 7522,NJBF000078049,336 10TH STREET SO,Brigantine,NJ,39.4025531,-74.36926315,RES1,3001,,16,NE,1954,1954,3102,2,1,1132.393132,1132.393132,3502,NO,33.41,47.81,5,4.89,6110,115.401077,124.906524,134.823377,140.672435,I,Above,Gable,0,5701,Wood,40.60616921,0,0,,,,1,1,,0.35,nav,1,1954,2,, 7523,NJBF000078027,358 9TH STREET SO,Brigantine,NJ,39.40240733,-74.3679854,RES1,3001,,20,NE,1954,2018,3102,3,1,1151.338841,1151.338841,3502,NO,60.53,72.09,5,6.56,6110,115.428558,124.932142,134.852252,140.694302,I,Above,Gable,0,5701,Wood,66.30758763,0,1.1,,,,1,1,,0.35,nav,1,1954,3,, 7524,NJBF000074873,,Brigantine,NJ,39.38804347,-74.39289698,RES3D,3001,,NaN,ME,1969,0,3301,1,1,2772.822438,2772.822438,3507,NO,19.56,26.83,1,2.79,6110,115.074002,124.608593,134.476747,140.4892,I,Above,Hip,0,NaN,Wood,23.1969909,0,0,,,,1,1,,0.35,nav,1,1969,1,, 7525,NJBF000077992,1218 W BRIGANTINE AVE,Brigantine,NJ,39.40217535,-74.37174352,COM1,3001,,NaN,ME,1969,0,3401,2,1,4286.64338,4286.64338,3507,NO,23.63,30.18,1,2.02,6106,115.354737,124.863388,134.774356,140.638264,I,Above,Flat,0,NaN,Wood,26.90099729,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7526,NJBF000077072,2604 W BRIGANTINE AVE,Brigantine,NJ,39.39631494,-74.38199124,RES1,3001,,16,NE,1958,1958,3102,1,1,3629.600254,3629.600254,3507,NO,21.27,34.81,1,2.21,6106,115.208508,124.729014,134.618585,140.552257,I,Above,Hip,0,5701,Wood,28.04344991,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 7527,NJBF000075565,286 40TH STREET SO,Brigantine,NJ,39.39032949,-74.39174302,RES1,3001,,16,NE,1955,1955,3102,1,1,852.2066588,852.2066588,3507,NO,12.22,22.24,1,0.35,6106,115.072714,124.606916,134.476739,140.477135,I,Above,Hip,0,5701,Wood,17.22939145,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7528,NJBF000075940,15 ATLANTIS COVE,Brigantine,NJ,39.39170018,-74.400417,RES1,3001,,17,NE,1988,1988,3102,3,1,1529.100204,1529.100204,3507,NO,41.29,55.89,1,1.49,6106,114.877524,124.431262,134.281097,140.321541,I,Above,Gable,0,5701,Wood,48.59137669,0,1.2,,,,1,1,,0.03,nav,1,1988,3,, 7529,NJBF000074422,4519 W BRIGANTINE AVE,Brigantine,NJ,39.38635693,-74.39587688,RES1,3001,,15,NE,1968,1968,3102,1,1,1525.609983,1525.609983,3507,NO,19.86,29.59,1,1.61,6110,115.030788,124.570252,134.432391,140.464826,I,Above,Hip,0,5701,Wood,24.72600873,0,0,,,,1,1,,0.35,nav,1,1968,1,, 7530,NJBF000075416,302 SEASHELL LANE,Brigantine,NJ,39.38977853,-74.40313004,RES3B,3001,,35,ME,1984,1984,3301,2,1,3347.002535,3347.002535,3507,YES,24.12,32.88,1,0.65,6106,114.841843,124.40043,134.245234,140.304293,I,Above,Gable,0,5701,Wood,28.50297462,0,0,,,,1,1,,0.03,nav,1,1984,2,, 7531,NJBF000077820,344 13TH STREET SO,Brigantine,NJ,39.40103884,-74.37123687,RES1,3001,,16,NE,1952,1952,3102,2,1,1192.215552,1192.215552,3502,NO,40.7,53.8,5,10.32,6106,115.377222,124.884262,134.79715,140.660625,I,Above,Hip,0,5701,Wood,47.25080348,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 7532,NJBF000075101,,Brigantine,NJ,39.38870491,-74.39203821,RES1,3001,,NaN,NE,1969,0,3102,2,1,1694.680324,1694.680324,3507,NO,39.95,53.4,1,2.94,6110,115.084496,124.617886,134.487714,140.493929,I,Above,Flat,0,5701,Wood,46.67393325,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7533,NJBF000075060,310 42ND STREET SO,Brigantine,NJ,39.38860711,-74.39195315,RES1,3001,,15,NE,1952,1952,3102,1,1,1788.967772,1788.967772,3507,NO,12.6,24.88,1,-0.96,6110,115.087341,124.620465,134.490524,140.496553,I,Above,Gable,0,5701,Wood,18.74084735,0,1.1,,,,1,1,,0.35,nav,1,1952,1,, 7534,NJBF000078033,15 19TH STREET SO,Brigantine,NJ,39.40245099,-74.3786265,RES1,3001,,17,NE,1956,1956,3102,2,1,1566.377343,1566.377343,3507,YES,33.39,39.41,1,0.76,6106,115.211559,124.730747,134.624845,140.526108,I,Above,Gable,0,5701,Wood,36.39981464,0,0,,,,1,1,,0.03,nav,1,1956,2,, 7535,NJBF000080694,16 COLLETTE CIRCLE,Brigantine,NJ,39.41593548,-74.37729144,RES1,3001,,17,NE,1999,1999,3103,2,1,2752.544626,2752.544626,3505,NO,43.22,50.1,3,7.67,6106,115.098368,124.620778,134.507929,140.373562,I,Above,Hip,0,5701,Wood,46.66026152,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 7536,NJBF000077626,115 23RD STREET SO,Brigantine,NJ,39.39992638,-74.38083997,RES1,3001,,16,NE,1956,1956,3101,1,1,1818.381743,1818.381743,3507,NO,12.72,21.58,1,-0.77,6106,115.193222,124.714376,134.604703,140.523665,I,Above,Flat,0,5701,Wood,17.15127384,0,0,,,,1,1,,0.03,nav,1,1956,1,, 7537,NJBF000076710,3648 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39448538,-74.39188016,COM1,3001,,NaN,ME,1969,0,3401,1,1,2915.016002,2915.016002,3507,YES,15.65,20.78,1,-0.78,6106,115.02456,124.562212,134.429787,140.420037,I,Above,Flat,0,NaN,Wood,18.21778553,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7538,NJBF000079600,603 E BEACH AVE,Brigantine,NJ,39.41186493,-74.36081777,RES1,3001,,43,NE,1953,1953,3102,1,2,1612.220037,1612.220037,3507,NO,18.01,31.56,1,1.41,6106,115.473017,124.974801,134.906346,140.688713,I,Above,Hip,0,5701,Wood,24.78112351,0,0,,,,1,1,,0.03,nav,1,1953,1,, 7539,NJBF000077486,2105 W BRIGANTINE AVE,Brigantine,NJ,39.39898895,-74.37874316,RES1,3001,,16,NE,1983,1983,3101,2,1,1491.273138,1491.273138,3507,NO,38.49,43.64,1,0.22,6106,115.246197,124.763232,134.659092,140.568858,I,Above,Gable,0,5701,Wood,41.06204408,0,0,,,,1,1,,0.03,nav,1,1983,2,, 7540,NJBF000077470,201 24TH STREET SO,Brigantine,NJ,39.3988638,-74.38100414,RES1,3001,,16,NE,1954,1954,3101,1,1,1238.09874,1238.09874,3507,NO,16.68,30.04,1,2.72,6106,115.201253,124.721954,134.612496,140.534816,I,Above,Gable,0,5701,Wood,23.36086629,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7541,NJBF000079232,220 5TH STREET NO,Brigantine,NJ,39.41025565,-74.36086734,RES1,3001,,45,NE,1973,1973,3102,2,2,1790.022601,1790.022601,3507,NO,25.75,35.13,1,-0.74,6106,115.488926,124.989712,134.92239,140.707934,I,Above,Hip,0,5701,Wood,30.43586472,0,0,,,,1,1,,0.03,nav,1,1973,2,, 7542,NJBF000078335,1107 W BEACH AVE,Brigantine,NJ,39.40480633,-74.3725946,RES1,3001,,16,NE,1959,1959,3102,1,1,1482.146772,1482.146772,3505,NO,14.14,28,3,-1.89,6106,115.309416,124.821105,134.728319,140.591411,I,Above,Hip,0,5701,Wood,21.06999673,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 7543,NJBF000076325,254 35TH STREET SO,Brigantine,NJ,39.39296926,-74.38878684,RES1,3001,,14,NE,1948,1948,3102,1,1,1375.870438,1375.870438,3507,NO,15.33,22.8,1,-0.62,6106,115.104957,124.635404,134.510789,140.488908,I,Above,Gable,0,5701,Wood,19.06605637,0,1.2,,,,1,1,,0.03,nav,1,1948,1,, 7544,NJBF000077981,332 11TH STREET SO,Brigantine,NJ,39.4020928,-74.36999784,RES1,3001,,17,NE,1954,1954,3102,3,1,1580.282824,1580.282824,3502,NO,53.43,59.31,5,3.46,6106,115.391086,124.897195,134.81251,140.666717,I,Above,Hip,0,5701,Wood,56.37046912,0,1.1,,,,1,1,,0.03,nav,1,1954,3,, 7545,NJBF000080474,1411 SHERIDAN BLVD,Brigantine,NJ,39.41518471,-74.37573335,RES1,3001,,17,NE,1963,1963,3103,2,1,1821.071903,1821.071903,3505,NO,32.63,41.57,3,3.07,6106,115.137606,124.657904,134.549493,140.408448,I,Above,Gable,0,5701,Wood,37.10066044,0,0,,,,1,1,,0.03,nav,1,1963,2,, 7546,NJBF000080467,1411 SHERIDAN BLVD,Brigantine,NJ,39.41515803,-74.37589016,RES1,3001,,17,NE,1963,1963,3103,2,1,1466.963153,1466.963153,3505,NO,30.49,45.28,3,-2.43,6106,115.134701,124.655192,134.546422,140.406257,I,Above,Gable,0,5701,Wood,37.88372239,0,0,,,,1,1,,0.03,nav,1,1963,2,, 7547,NJBF000074388,306 DOLPHIN DRIVE,Brigantine,NJ,39.38617827,-74.39448796,RES1,3001,,17,NE,2001,2001,3102,2,1,2557.912583,2557.912583,3507,NO,33.31,43.55,1,-0.04,6110,115.061669,124.597918,134.46321,140.488951,I,Above,Hip,0,5701,Wood,38.43198827,0,1.1,,,,1,1,,0.35,nav,1,2001,2,, 7548,NJBF000075709,7 BEACH COVE,Brigantine,NJ,39.39081974,-74.4016766,RES1,3001,,16,NE,1972,1972,3102,2,1,1717.532876,1717.532876,3507,NO,26.81,41.48,1,0.13,6106,114.860825,124.416801,134.264291,140.313346,I,Above,Flat,0,5701,Wood,34.1453238,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 7549,NJBF000078363,1217 BAYSHORE AVE,Brigantine,NJ,39.4050125,-74.374111,RES1,3001,,17,NE,1946,1946,3102,2,1,684.4487049,684.4487049,3505,NO,28.21,39.62,3,2.84,6106,115.276414,124.790382,134.693752,140.564793,I,Above,Flat,0,5701,Wood,33.91549764,0,0,,,,1,1,,0.03,nav,1,1946,2,, 7550,NJBF000076940,213 30TH STREET SO,Brigantine,NJ,39.39552138,-74.38479027,RES1,3001,,15,NE,1956,1956,3102,2,1,1539.879272,1539.879272,3507,YES,27.88,41.48,1,2.85,6106,115.159597,124.684491,134.567893,140.518504,I,Above,Gable,0,5701,Wood,34.68026651,0,0,,,,1,1,,0.03,nav,1,1956,2,, 7551,NJBF000074580,13 LIGHTHOUSE COVE,Brigantine,NJ,39.38709933,-74.40044864,RES1,3001,,43,NE,1984,1984,3102,2,2,1454.375282,1454.375282,3507,NO,31.7,38.83,1,0.69,6110,114.927277,124.477673,134.329463,140.382988,I,Above,Gable,0,5701,Wood,35.26544852,0,0,,,,1,1,,0.35,nav,1,1984,2,, 7552,NJBF000077447,102 26TH STREET SO,Brigantine,NJ,39.39867595,-74.38412458,RES1,3001,,15,NE,1960,1960,3102,1,1,1063.344949,1063.344949,3507,NO,16.67,22.09,1,2.39,6106,115.13925,124.665189,134.548468,140.487901,I,Above,Gable,0,5701,Wood,19.37961271,0,0,,,,1,1,,0.03,nav,1,1960,1,, 7553,NJBF000073466,5114 HARBOR BEACH BLVD,Brigantine,NJ,39.38095067,-74.40583391,RES1,3001,,16,NE,1975,1975,3101,1,1,1924.123944,1924.123944,3507,NO,15.41,28.08,1,1.22,6106,114.883207,124.440818,134.283216,140.381219,I,Above,Gable,0,5701,Wood,21.74224087,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7554,NJBF000073484,5112 HARBOR BEACH BLVD,Brigantine,NJ,39.38107223,-74.40569336,RES1,3001,,16,NE,1972,1972,3101,2,1,1330.947341,1330.947341,3507,YES,24.03,38.91,1,2.05,6106,114.884802,124.442184,134.284843,140.381792,I,Above,Gable,0,5701,Wood,31.46866058,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 7555,NJBF000077476,212 22ND STREET SO,Brigantine,NJ,39.39890895,-74.37941652,RES1,3001,,16,NE,1954,1954,3101,1,1,1820.351826,1820.351826,3507,NO,16.38,25.1,1,-0.2,6106,115.233267,124.751352,134.645646,140.559269,I,Above,Hip,0,5701,Wood,20.74288399,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7556,NJBF000075327,331 40TH STREET SO,Brigantine,NJ,39.389505,-74.3899245,RES1,3001,,43,NE,1954,1954,3102,2,2,667.6170559,667.6170559,3507,NO,21.19,33.28,1,0.07,6110,115.119429,124.649195,134.523491,140.516516,I,Above,Flat,0,5701,Wood,27.23257356,0,0,,,,1,1,,0.35,nav,1,1954,2,, 7557,NJBF000077285,315 22ND STREET SO,Brigantine,NJ,39.39766687,-74.37766792,RES1,3001,,15,NE,1961,1961,3102,1,1,1617.682248,1617.682248,3507,NO,14.13,25.34,1,2.07,6110,115.282441,124.796695,134.695846,140.60275,I,Above,Hip,0,5701,Wood,19.73373579,0,0,,,,1,1,,0.35,nav,1,1961,1,, 7558,NJBF000074942,4509 PRIVATEER RD,Brigantine,NJ,39.38825328,-74.39863476,RES1,3001,,16,NE,1968,1968,3102,2,1,1004.733081,1004.733081,3507,NO,29.51,35.02,1,0.83,6106,114.952369,124.499618,134.354917,140.396141,I,Above,Flat,0,5701,Wood,32.26416619,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7559,NJBF000075564,3900 W BRIGANTINE AVE,Brigantine,NJ,39.39032144,-74.3903214,RES1,3001,,43,NE,1954,1954,3102,2,2,1356.271963,1356.271963,3507,NO,30.68,40.51,1,1.03,6106,115.102245,124.63354,134.506595,140.499582,I,Above,Flat,0,5701,Wood,35.59554733,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7560,NJBF000077293,316 21ST STREET SO,Brigantine,NJ,39.39771108,-74.37721084,RES1,3001,,20,NE,2005,2005,3102,3,1,2630.840076,2630.840076,3507,NO,41.16,54.75,1,-0.85,6106,115.291309,124.804852,134.705076,140.609355,I,Above,Gable,0,5701,Wood,47.95567395,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7561,NJBF000077886,339 13TH STREET SO,Brigantine,NJ,39.40145212,-74.37098158,RES1,3001,,20,NE,2009,2009,3102,3,1,2314.749486,2314.749486,3502,NO,59.85,66.65,5,13.32,6106,115.377971,124.884972,134.798245,140.659393,I,Above,Gable,0,5701,Wood,63.24673852,0,0,,,,1,1,,0.03,nav,1,2009,3,, 7562,NJBF000080443,1415 SHERIDAN BLVD,Brigantine,NJ,39.41506917,-74.37622623,RES1,3001,,16,NE,1967,1967,3103,1,1,1428.389511,1428.389511,3505,NO,24.07,37.38,3,8.24,6106,115.128801,124.649701,134.540192,140.401969,I,Above,Flat,0,5701,Wood,30.72669731,0,0,,,,1,1,,0.03,nav,1,1967,1,, 7563,NJBF000075575,334 GULL COVE,Brigantine,NJ,39.39035092,-74.40479807,RES3B,3001,,35,ME,1984,1984,3301,2,1,3756.273902,3756.273902,3507,YES,35.55,40.91,1,0.01,6106,114.800745,124.363569,134.204494,140.269908,I,Above,Gable,0,5701,Wood,38.2256492,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 7564,NJBF000078170,227 13TH STREET SO,Brigantine,NJ,39.403396,-74.3728032,RES1,3001,,17,NE,2016,2016,3102,2,1,1037.604488,1037.604488,3505,NO,30.95,41.42,3,7.37,6106,115.320172,124.831221,134.738837,140.606073,I,Above,Flat,0,5701,Wood,36.18806043,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 7565,NJBF000075328,19 EXPLORER RD,Brigantine,NJ,39.38951412,-74.40149866,RES1,3001,,16,NE,1968,1968,3102,1,1,1736.759387,1736.759387,3507,NO,13.36,27.31,1,2.32,6106,114.878796,124.433466,134.281942,140.333823,I,Above,Flat,0,5701,Wood,20.33828333,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7566,NJBF000076404,,Brigantine,NJ,39.39328211,-74.40446968,RES1,3001,,NaN,NE,1969,0,3102,2,1,2839.199807,2839.199807,3507,NO,33.56,43.8,1,-0.37,6106,114.775891,124.339633,134.179816,140.235233,I,Above,Hip,0,5701,Wood,38.68100916,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7567,NJBF000075245,347 40TH STREET SO,Brigantine,NJ,39.38921546,-74.38949706,RES1,3001,,NaN,NE,1952,0,3102,2,1,688.561439,688.561439,3507,NO,29.63,44.35,1,2.25,6106,115.131487,124.660119,134.535507,140.527023,I,Above,Hip,0,5701,Wood,36.99137233,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7568,NJBF000078379,140 11TH STREET SO,Brigantine,NJ,39.40514986,-74.37275039,RES1,3001,,16,NE,1973,1973,3102,1,1,1520.421489,1520.421489,3505,NO,19.73,32.56,3,6.28,6106,115.302621,124.814746,134.721351,140.58458,I,Above,Hip,0,5701,Wood,26.14884555,0,0,,,,1,1,,0.03,nav,1,1973,1,, 7569,NJBF000078216,238 11TH STREET SO,Brigantine,NJ,39.40374184,-74.3714351,RES1,3001,,15,NE,1950,1950,3102,1,1,1022.676385,1022.676385,3505,NO,23.27,37.11,3,6.46,6106,115.344289,124.853637,134.76439,140.623242,I,Above,Hip,0,5701,Wood,30.19221924,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7570,NJBF000081495,1013 E SHORE DR,Brigantine,NJ,39.41959644,-74.36236784,RES1,3001,,17,NE,1986,1986,3102,2,1,2075.651144,2075.651144,3507,NO,38.07,50.02,1,2.92,6106,115.361849,124.86887,134.789627,140.567722,I,Above,Hip,0,5701,Wood,44.04199733,0,0,,,,1,1,,0.03,nav,1,1986,2,, 7571,NJBF000075485,4813 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39003499,-74.41357425,RES1,3001,,18,NE,2000,2000,3103,2,1,2007.507037,2007.507037,3505,NO,33.05,39.07,3,2.96,6106,114.620093,124.203992,134.02643,140.133231,I,Above,Hip,0,5701,Wood,36.05630004,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 7572,NJBF000075490,2 LAGOON BLVD,Brigantine,NJ,39.39004985,-74.39979465,RES1,3001,,16,NE,1968,1968,3102,2,1,1577.212321,1577.212321,3507,YES,25.56,30.94,1,0.36,6106,114.908468,124.459691,134.311662,140.353656,I,Above,Gable,0,5701,Wood,28.25013786,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7573,NJBF000075025,27 SAILFISH DRIVE,Brigantine,NJ,39.38847595,-74.40248995,RES3B,3001,,35,ME,1987,1987,3301,3,1,7229.905199,7229.905199,3507,NO,55.94,61.87,1,2.81,6106,114.869482,124.425662,134.272434,140.332113,I,Above,Gable,0,5701,Wood,58.90735826,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 7574,NJBF000074916,409 LAGOON BLVD,Brigantine,NJ,39.38816897,-74.40503632,RES3B,3001,,35,ME,1984,1984,3301,2,1,3745.993322,3745.993322,3507,YES,33.22,39.48,1,-0.21,6106,114.819608,124.381519,134.22292,140.295814,I,Above,Gable,0,5701,Wood,36.35012771,0,0,,,,1,1,,0.03,nav,1,1984,2,, 7575,NJBF000074606,72 SAILFISH DRIVE,Brigantine,NJ,39.38718097,-74.40293127,RES3B,3001,,35,ME,2001,2001,3301,3,1,6357.808982,6357.808982,3507,NO,38.45,43.51,1,0.27,6106,114.874519,124.430727,134.277088,140.342636,I,Above,Flat,0,5701,Wood,40.97955731,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 7576,NJBF000075054,4505 PRIVATEER RD,Brigantine,NJ,39.38858009,-74.39862542,RES1,3001,,16,NE,1968,1968,3102,1,1,1636.477182,1636.477182,3507,NO,14.1,28.21,1,0.44,6106,114.948975,124.496468,134.351653,140.391918,I,Above,Hip,0,5701,Wood,21.15385489,0,0,,,,1,1,,0.03,nav,1,1968,1,, 7577,NJBF000077305,108 27TH STREET SO,Brigantine,NJ,39.3977838,-74.38436168,RES1,3001,,17,NE,1968,1968,3102,2,1,1912.39616,1912.39616,3507,YES,36.99,51.91,1,1.32,6106,115.143962,124.669723,134.552939,140.495773,I,Above,Gable,0,5701,Wood,44.45062504,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7578,NJBF000073051,5 SUNSET COURT,Brigantine,NJ,39.37695845,-74.40730318,RES1,3001,,16,NE,1975,1975,3103,1,1,1520.001146,1520.001146,3505,NO,19.59,28.52,3,2.28,6106,114.897731,124.454743,134.295173,140.412334,I,Above,Gable,0,5701,Wood,24.05184125,0,0,,,,1,1,,0.03,nav,1,1975,1,, 7579,NJBF000075297,4416 WHALERMAN RD,Brigantine,NJ,39.38939048,-74.39907909,RES1,3001,,16,NE,1968,1968,3102,2,1,1650.095048,1650.095048,3507,NO,28.81,34.09,1,2.04,6106,114.930616,124.479754,134.333593,140.373875,I,Above,Gable,0,5701,Wood,31.44626356,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7580,NJBF000079326,213 5TH STREET NO,Brigantine,NJ,39.4106504,-74.36073314,RES1,3001,,16,NE,1953,1953,3102,2,1,1166.072997,1166.072997,3507,NO,29.31,41.46,1,-0.03,6106,115.487476,124.988385,134.921103,140.70515,I,Above,Hip,0,5701,Wood,35.38166209,0,0,,,,1,1,,0.03,nav,1,1953,2,, 7581,NJBF000079345,213 5TH STREET NO,Brigantine,NJ,39.41074074,-74.36059439,RES1,3001,,16,NE,1953,1953,3102,2,1,727.8649408,727.8649408,3507,NO,22.76,28.67,1,0.2,6106,115.489314,124.990137,134.923139,140.70621,I,Above,Hip,0,5701,Wood,25.71421446,0,0,,,,1,1,,0.03,nav,1,1953,2,, 7582,NJBF000077951,1013 OCEAN AVE,Brigantine,NJ,39.4018635,-74.3689425,RES1,3001,,17,NE,1970,1970,3102,2,1,523.7236354,523.7236354,3502,NO,26.47,34.31,5,-2.78,6110,115.414964,124.91942,134.83748,140.686154,I,Above,Hip,0,5701,Wood,30.39188291,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 7583,NJBF000074524,465 SEAHORSE RD,Brigantine,NJ,39.38685205,-74.40412946,RES3B,3001,,35,ME,1987,1987,3301,3,1,3730.569532,3730.569532,3507,NO,55.13,60.65,1,1,6106,114.853087,124.411857,134.255766,140.328109,I,Above,Flat,0,5701,Wood,57.88891224,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 7584,NJBF000077875,204 17TH STREET SO,Brigantine,NJ,39.40138823,-74.37604452,RES1,3001,,15,NE,1956,1956,3101,1,1,2122.299624,2122.299624,3507,NO,16.81,26.14,1,0.45,6106,115.275576,124.790053,134.691018,140.580578,I,Above,Gable,0,5701,Wood,21.47627023,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 7585,NJBF000077070,208 28TH STREET SO,Brigantine,NJ,39.39628744,-74.38392726,RES1,3001,,16,NE,1956,1956,3102,2,1,1816.36085,1816.36085,3507,YES,23.29,31.94,1,1.18,6106,115.169049,124.692962,134.577993,140.522134,I,Above,Gable,0,5701,Wood,27.61531204,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 7586,NJBF000077025,213 29TH STREET SO,Brigantine,NJ,39.39592869,-74.38406096,RES1,3001,,15,NE,1954,1954,3102,2,1,1502.041341,1502.041341,3507,YES,23.48,37.72,1,0.26,6106,115.170169,124.694052,134.578954,140.524679,I,Above,Flat,0,5701,Wood,30.60398699,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 7587,NJBF000077837,200 18TH STREET SO,Brigantine,NJ,39.40114038,-74.37695349,RES1,3001,,16,NE,1930,1930,3101,2,1,2753.672536,2753.672536,3507,YES,38.29,45.41,1,0.31,6106,115.259701,124.775413,134.674333,140.569432,I,Above,Hip,0,5701,Wood,41.85047895,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 7588,NJBF000076619,215 35TH STREET SO,Brigantine,NJ,39.39410834,-74.38936285,RES1,3001,,19,NE,2013,2013,3102,3,1,947.3207154,947.3207154,3507,NO,51.97,59.19,1,2.39,6106,115.080668,124.613108,134.486624,140.464851,I,Above,Flat,0,5701,Wood,55.57575382,0,0,,,,1,1,,0.03,nav,1,2013,3,, 7589,NJBF000080038,705 E EVANS BLVD,Brigantine,NJ,39.41373677,-74.36140501,RES1,3001,,17,NE,2015,2015,3102,3,1,1531.044613,1531.044613,3507,NO,39.31,46.32,1,1.36,6106,115.441669,124.945155,134.873667,140.656139,I,Above,Hip,0,5701,Wood,42.81439353,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 7590,NJBF000074859,126 45TH STREET SO,Brigantine,NJ,39.38800284,-74.39434301,RES1,3001,,16,NE,1968,1968,3102,2,1,1223.927203,1223.927203,3507,NO,23.59,30.8,1,-0.48,6110,115.044423,124.58206,134.446987,140.467047,I,Above,Gable,0,5701,Wood,27.19659323,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7591,NJBF000074891,310 43RD STREET SO,Brigantine,NJ,39.38808611,-74.39255617,RES1,3001,,19,NE,2011,2011,3102,3,1,1720.89355,1720.89355,3507,NO,41.86,52.47,1,0.3,6110,115.080601,124.614512,134.483415,140.493977,I,Above,Flat,0,5701,Wood,47.16399091,0,1.1,,,,1,1,,0.35,nav,1,2011,3,, 7592,NJBF000076055,402 32ND STREET SO,Brigantine,NJ,39.39208748,-74.38404361,RES1,3001,,43,NE,1977,1977,3102,2,2,1524.109774,1524.109774,3507,NO,35.92,47.69,1,-0.85,6106,115.2124,124.733055,134.619814,140.574865,I,Above,Flat,0,5701,Wood,41.80116906,0,0,,,,1,1,,0.03,nav,1,1977,2,, 7593,NJBF000074705,436 SEAHORSE RD,Brigantine,NJ,39.38750764,-74.40391546,RES3B,3001,,35,ME,1987,1987,3301,3,1,3904.457674,3904.457674,3507,NO,32.91,38.9,1,0.51,6106,114.850333,124.409106,134.253205,140.322607,I,Above,Gable,0,5701,Wood,35.90536464,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 7594,NJBF000077708,345 15TH STREET SO,Brigantine,NJ,39.40046143,-74.37237772,RES1,3001,,16,NE,1955,1955,3102,2,1,1218.110055,1218.110055,3502,NO,32.89,41.05,5,-4.05,6106,115.360227,124.868475,134.7789,140.650067,I,Above,Gable,0,5701,Wood,36.9723683,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 7595,NJBF000077496,2504 BAYSHORE AVE,Brigantine,NJ,39.39904717,-74.38381653,RES1,3001,,17,NE,1960,1960,3102,2,1,721.5061324,721.5061324,3507,NO,21.87,32.38,1,-0.16,6106,115.141597,124.66724,134.551032,140.487947,I,Above,Hip,0,5701,Wood,27.12708317,0,0,,,,1,1,,0.03,nav,1,1960,2,, 7596,NJBF000077881,328 13TH STREET SO,Brigantine,NJ,39.40142535,-74.37164619,RES1,3001,,16,NE,1952,1952,3102,2,1,1223.851054,1223.851054,3502,NO,34.54,44.17,5,5.01,6106,115.364764,124.8727,134.784358,140.649318,I,Above,Gable,0,5701,Wood,39.35384952,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7597,NJBF000076475,401 29TH STREET SO,Brigantine,NJ,39.39356082,-74.38136943,RES1,3001,,16,NE,1952,1952,3102,1,1,2042.917535,2042.917535,3507,YES,14.33,28.01,1,2.28,6106,115.25125,124.76835,134.660722,140.59762,I,Above,Hip,0,5701,Wood,21.16929592,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 7598,NJBF000077767,329 15TH STREET SO,Brigantine,NJ,39.40076239,-74.3726329,RES1,3001,,18,NE,2005,2005,3102,3,1,2050.834016,2050.834016,3502,NO,39.74,51.09,5,5.78,6106,115.351803,124.860666,134.770295,140.642244,I,Above,Hip,0,5701,Wood,45.4197096,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7599,NJBF000077136,2800 REVERE BLVD,Brigantine,NJ,39.39676376,-74.38450624,RES1,3001,,16,NE,1955,1955,3102,1,1,2050.029809,2050.029809,3507,NO,18.58,26.99,1,1.21,6106,115.151993,124.677295,134.560721,140.506789,I,Above,Hip,0,5701,Wood,22.78845368,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 7600,NJBF000077182,107 29TH STREET SO,Brigantine,NJ,39.397094,-74.385359,RES1,3001,,16,NE,1952,1952,3102,1,1,1519.920173,1519.920173,3507,NO,17.89,28.92,1,2.9,6106,115.130895,124.657965,134.539222,140.489005,I,Above,Gable,0,5701,Wood,23.40855917,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7601,NJBF000076096,246 37TH STREET SO,Brigantine,NJ,39.39221004,-74.39042548,RES1,3001,,15,NE,1943,1943,3102,1,1,986.1487446,986.1487446,3507,NO,17.35,22.61,1,0.99,6106,115.079389,124.612465,134.484451,140.473081,I,Above,Gable,0,5701,Wood,19.97984468,0,0,,,,1,1,,0.03,nav,1,1943,1,, 7602,NJBF000076164,256 36TH STREET SO,Brigantine,NJ,39.3924542,-74.38934034,RES1,3001,,16,NE,1949,1949,3102,1,1,1358.949263,1358.949263,3507,NO,16.16,28.15,1,1.33,6106,115.099154,124.630274,134.504628,140.486963,I,Above,Gable,0,5701,Wood,22.15377976,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 7603,NJBF000076820,2904 W BRIGANTINE AVE,Brigantine,NJ,39.3949211,-74.38409621,RES1,3001,,16,NE,1948,1948,3102,1,1,1751.856361,1751.856361,3507,NO,14.98,22.67,1,-0.69,6106,115.180383,124.703546,134.588869,140.537238,I,Above,Gable,0,5701,Wood,18.82156786,0,0,,,,1,1,,0.03,nav,1,1948,1,, 7604,NJBF000076786,301 30TH STREET SO,Brigantine,NJ,39.39479167,-74.38395865,RES1,3001,,16,NE,1983,1983,3102,2,1,1634.79208,1634.79208,3507,NO,38.08,49.59,1,1.37,6106,115.184603,124.707413,134.59312,140.541069,I,Above,Gable,0,5701,Wood,43.8328605,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 7605,NJBF000076808,403 26TH STREET SO,Brigantine,NJ,39.39488066,-74.37914971,RES1,3001,,NaN,NE,1972,1972,3102,2,1,3358.759524,3358.759524,3507,NO,34.74,42.55,1,0.35,6106,115.282354,124.796742,134.693752,140.615315,I,Above,Flat,0,5701,Wood,38.64412147,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7606,NJBF000076841,3717 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39501032,-74.39249896,RES1,3001,,47,NE,1925,1925,3102,2,3,1922.236176,1922.236176,3507,YES,37.04,42.4,1,0.44,6106,115.00608,124.545313,134.411212,140.403256,I,Above,Gable,0,5701,Wood,39.72319941,0,0,,,,1,1,,0.03,nav,1,1925,2,, 7607,NJBF000077874,325 14TH STREET SO,Brigantine,NJ,39.40138728,-74.3720977,RES1,3001,,16,NE,1970,1970,3102,2,1,1021.579361,1021.579361,3502,NO,38.8,50.76,5,0.06,6110,115.35598,124.864543,134.775115,140.642704,I,Above,Gable,0,5701,Wood,44.77937481,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 7608,NJBF000080150,553 CAVERLY DR,Brigantine,NJ,39.41407859,-74.37595369,RES1,3001,,16,NE,1979,1979,3103,1,1,1512.153325,1512.153325,3505,NO,14.41,24.55,3,1.01,6106,115.144462,124.664792,134.556793,140.419099,I,Above,Gable,0,5701,Wood,19.48003914,0,0,,,,1,1,,0.03,nav,1,1979,1,, 7609,NJBF000080515,1303 SHERIDAN BLVD,Brigantine,NJ,39.41530992,-74.37303258,RES1,3001,,17,NE,1978,1978,3102,2,1,1567.898723,1567.898723,3507,NO,28.03,34.05,1,-0.7,6106,115.190988,124.707985,134.606062,140.450427,I,Above,Gable,0,5701,Wood,31.04206467,0,0,,,,1,1,,0.03,nav,1,1978,2,, 7610,NJBF000077387,2200 W BRIGANTINE AVE,Brigantine,NJ,39.39828203,-74.37884842,RES1,3001,,19,NE,2004,2004,3102,3,1,2398.812931,2398.812931,3507,NO,50.64,58.29,1,0.09,6106,115.251663,124.76834,134.664337,140.576306,I,Above,Hip,0,5701,Wood,54.46197869,0,1.3,,,,1,1,,0.03,nav,1,2004,3,, 7611,NJBF000077376,301-03 22ND STREET SO,Brigantine,NJ,39.39823839,-74.37819927,RES1,3001,,16,NE,1955,1955,3102,2,1,1653.445457,1653.445457,3507,NO,22.88,37.08,1,1.32,6106,115.265414,124.78099,134.678564,140.587077,I,Above,Gable,0,5701,Wood,29.97758022,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7612,NJBF000074538,32 LIGHTHOUSE DR,Brigantine,NJ,39.38690391,-74.4018534,RES1,3001,,43,NE,1981,1981,3102,2,2,1665.544399,1665.544399,3507,NO,32.87,46.77,1,1.71,6110,114.900111,124.453582,134.302393,140.363434,I,Above,Gable,0,5701,Wood,39.81546983,0,0,,,,1,1,,0.35,nav,1,1981,2,, 7613,NJBF000081199,,Brigantine,NJ,39.41798939,-74.38267722,RES1,3001,,NaN,NE,1985,0,3103,6,1,4600.53119,4600.53119,3505,NO,101.6,112.04,3,-1.99,6106,114.968254,124.497824,134.370208,140.259109,I,Above,Hip,0,5701,Wood,106.8232885,0,0,,,,1,1,,0.03,nav,1,1985,6,, 7614,NJBF000075092,334 41ST STREET SO,Brigantine,NJ,39.38869163,-74.39076685,RES1,3001,,47,NE,1977,1977,3102,3,2,1860.857962,1860.857962,3507,NO,54.45,65.73,1,1.75,6110,115.110978,124.641721,134.514429,140.514013,I,Above,Hip,0,5701,Wood,60.08832439,0,0,,,,1,1,,0.35,nav,1,1977,3,, 7615,NJBF000080639,711 STERLING PLACE,Brigantine,NJ,39.41573001,-74.3800601,RES1,3001,,16,NE,1974,1974,3103,3,1,1311.896131,1311.896131,3505,NO,33.12,46.49,3,-1.52,6106,115.044263,124.570267,134.450929,140.331244,I,Above,Gable,0,5701,Wood,39.8076496,0,1.1,,,,1,1,,0.03,nav,1,1974,3,, 7616,NJBF000077865,,Brigantine,NJ,39.4013259,-74.36984217,RES1,3001,,NaN,NE,1969,0,3102,2,1,1627.490651,1627.490651,3502,NO,52.11,59.82,5,14.35,6110,115.402482,124.907759,134.823914,140.678852,I,Above,Hip,0,5701,Wood,55.96149011,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7617,NJBF000074115,4630 HARBOR BEACH BLVD,Brigantine,NJ,39.3849612,-74.3988677,RES3C,3001,,37,ME,1978,1978,3301,3,1,3350.778704,3350.778704,3507,YES,40.68,48.81,1,-0.5,6106,114.984018,124.528886,134.38494,140.436528,I,Above,Gable,0,5701,Wood,44.74422747,0,0,,,,1,1,,0.03,nav,1,1978,3,, 7618,NJBF000080636,42 KIRKWOOD CIRCLE,Brigantine,NJ,39.41570973,-74.36208666,RES1,3001,,17,NE,1999,1999,3102,2,1,2151.446514,2151.446514,3507,NO,29.03,40.52,1,2.29,6106,115.407485,124.912662,134.837734,140.620716,I,Above,Hip,0,5701,Wood,34.77320329,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 7619,NJBF000077880,1507 W BRIGANTINE AVE,Brigantine,NJ,39.40142521,-74.37434848,RES1,3001,,16,NE,1950,1950,3102,1,1,1936.938741,1936.938741,3505,NO,12.81,24.2,3,-2.41,6106,115.309773,124.821696,134.726753,140.606846,I,Above,Gable,0,5701,Wood,18.5055015,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7620,NJBF000077896,1704 REVERE BLVD,Brigantine,NJ,39.4015293,-74.37663001,RES1,3001,,17,NE,1958,1958,3101,2,1,2466.585778,2466.585778,3507,NO,29.15,38.36,1,0.42,6106,115.262135,124.777612,134.677079,140.569539,I,Above,Gable,0,5701,Wood,33.75253244,0,1.2,,,,1,1,,0.03,nav,1,1958,2,, 7621,NJBF000077623,114 23RD STREET SO,Brigantine,NJ,39.39991367,-74.38144317,RES1,3001,,15,NE,1956,1956,3101,2,1,1430.225579,1430.225579,3507,YES,40.4,51.62,1,1.97,6106,115.180999,124.703152,134.592054,140.51428,I,Above,Gable,0,5701,Wood,46.00607976,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 7622,NJBF000074645,,Brigantine,NJ,39.38731962,-74.39184309,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4887.077389,4887.077389,3507,NO,11.47,17,1,-0.78,6110,115.103885,124.635572,134.506374,140.515235,I,Above,Flat,0,NaN,Wood,14.23603223,0,0,,,,1,1,,1,nav,1,1969,1,, 7623,NJBF000074710,,Brigantine,NJ,39.38752605,-74.39212331,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6376.6021,6376.6021,3507,NO,19.08,33,1,0.22,6110,115.09579,124.628264,134.498358,140.508142,I,Above,Flat,0,NaN,Wood,26.0355897,0,0,,,,1,1,,1,nav,1,1969,1,, 7624,NJBF000074776,,Brigantine,NJ,39.3877565,-74.3923615,RES1,3001,,NaN,NE,1950,0,3102,2,1,1111.994872,1111.994872,3507,NO,37.51,47.25,1,-0.39,6110,115.08827,124.621466,134.490934,140.501356,I,Above,Flat,0,5701,Wood,42.38001006,0,0,,,,1,1,,0.35,nav,1,1950,2,, 7625,NJBF000077367,2801 BAYSHORE AVE,Brigantine,NJ,39.3981355,-74.38595233,RES1,3001,,19,NE,2014,2014,3102,3,1,2607.560953,2607.560953,3507,NO,41.05,47.61,1,1.31,6106,115.107494,124.63633,134.515633,140.465995,I,Above,Gable,0,5701,Wood,44.33002835,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 7626,NJBF000080628,711 BOBBY JONES RD,Brigantine,NJ,39.41565578,-74.38116991,RES1,3001,,16,NE,1972,1972,3103,2,1,1438.038812,1438.038812,3505,NO,27.05,34.54,3,2.39,6106,115.022461,124.549956,134.428025,140.31414,I,Above,Gable,0,5701,Wood,30.7936792,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7627,NJBF000076557,,Brigantine,NJ,39.39388798,-74.40169794,RES1,3001,,NaN,NE,1969,0,3102,2,1,2800.753804,2800.753804,3507,NO,33.93,47.23,1,2.13,6106,114.827185,124.385044,134.230966,140.271493,I,Above,Gable,0,5701,Wood,40.58289154,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7628,NJBF000074793,4514 PRIVATEER RD,Brigantine,NJ,39.38779365,-74.3985903,RES1,3001,,16,NE,1968,1968,3102,1,1,1859.499273,1859.499273,3507,NO,14.73,25.02,1,0.22,6110,114.95837,124.505138,134.360725,140.402999,I,Above,Hip,0,5701,Wood,19.87504029,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 7629,NJBF000074169,,Brigantine,NJ,39.38519996,-74.39646782,RES3D,3001,,NaN,E,1969,0,3303,3,1,19446.76387,19446.76387,3507,NO,41.12,49.72,1,2.89,6106,115.031378,124.571046,134.432293,140.470944,I,Above,Flat,0,NaN,Wood,45.41806687,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7630,NJBF000080734,18 COLLETTE CIRCLE,Brigantine,NJ,39.41606987,-74.37747147,RES1,3001,,16,NE,1951,1951,3103,1,1,1747.516599,1747.516599,3505,NO,15.79,22.06,3,-2.52,6106,115.093343,124.616002,134.502599,140.3689,I,Above,Hip,0,5701,Wood,18.92473413,0,0,,,,1,1,,0.03,nav,1,1951,1,, 7631,NJBF000074911,,Brigantine,NJ,39.38816103,-74.39276528,RES3D,3001,,NaN,ME,1969,0,3301,2,1,2655.161208,2655.161208,3507,NO,27.83,34.17,1,2.53,6110,115.075434,124.609855,134.478259,140.489711,I,Above,Hip,0,NaN,Wood,30.99686845,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7632,NJBF000076334,312 33RD STREET SO,Brigantine,NJ,39.39302211,-74.38628662,RES1,3001,,15,NE,1954,1954,3102,1,1,943.2751407,943.2751407,3507,NO,16.67,29.26,1,0.58,6106,115.155959,124.681644,134.56277,140.52754,I,Above,Hip,0,5701,Wood,22.96634738,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7633,NJBF000080569,701 LAFAYETTE BLVD,Brigantine,NJ,39.41548033,-74.37871278,RES1,3001,,16,NE,1965,1965,3103,2,1,2050.621254,2050.621254,3505,NO,32.74,38.75,3,7.64,6106,115.074158,124.598346,134.482465,140.356371,I,Above,Gable,0,5701,Wood,35.74264467,0,0,,,,1,1,,0.03,nav,1,1965,2,, 7634,NJBF000080947,16 11TH STREET NO,Brigantine,NJ,39.41697,-74.3617885,RES1,3001,,17,NE,1986,1986,3102,1,1,1309.191555,1309.191555,3507,NO,16.59,28.1,1,-0.75,6106,115.400446,124.905911,134.830609,140.609751,I,Above,Hip,0,5701,Wood,22.34398539,0,0,,,,1,1,,0.03,nav,1,1986,1,, 7635,NJBF000080923,18 11TH STREET NO,Brigantine,NJ,39.41688487,-74.36169647,RES1,3001,,17,NE,2000,2000,3102,2,1,2319.328431,2319.328431,3507,NO,34.59,43.74,1,0.64,6106,115.40319,124.908528,134.833541,140.612294,I,Above,Hip,0,5701,Wood,39.16268989,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 7636,NJBF000080550,702 LAFAYETTE BLVD,Brigantine,NJ,39.41539701,-74.37927256,RES1,3001,,15,NE,1972,1972,3103,2,1,1486.303554,1486.303554,3505,NO,35.92,46.35,3,7.98,6106,115.063634,124.588552,134.471396,140.348353,I,Above,Flat,0,5701,Wood,41.13711198,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 7637,NJBF000074600,4507 W BRIGANTINE AVE,Brigantine,NJ,39.38716044,-74.39487604,RES1,3001,,16,NE,1968,1968,3102,2,1,1424.456922,1424.456922,3507,NO,34.65,47.87,1,-0.71,6110,115.042687,124.580708,134.444771,140.469861,I,Above,Hip,0,5701,Wood,41.26150135,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 7638,NJBF000074239,19 LIGHTHOUSE DR,Brigantine,NJ,39.3855172,-74.40122953,RES1,3001,,43,NE,1980,1980,3102,2,2,1389.185809,1389.185809,3507,NO,33.95,46.12,1,0.68,6110,114.928506,124.47934,134.330042,140.391947,I,Above,Gable,0,5701,Wood,40.03590498,0,0,,,,1,1,,0.35,nav,1,1980,2,, 7639,NJBF000077339,402 18TH STREET SO,Brigantine,NJ,39.39798202,-74.37404633,RES1,3001,,20,NE,1980,1980,3102,2,1,2354.283476,2354.283476,3505,YES,24.01,31.06,3,-1.9,6106,115.352997,124.861726,134.769447,140.655463,I,Above,Flat,0,5701,Wood,27.53848874,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 7640,NJBF000076821,3721 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.394925,-74.3926645,RES1,3001,,16,NE,1963,1963,3102,2,1,938.0490193,938.0490193,3507,NO,31.31,42.61,1,1.65,6106,115.003584,124.54309,134.408658,140.401762,I,Above,Hip,0,5701,Wood,36.96327556,0,0,,,,1,1,,0.03,nav,1,1963,2,, 7641,NJBF000074267,4617 HARBOR BEACH BLVD,Brigantine,NJ,39.38566667,-74.39893509,RES1,3001,,43,NE,1970,1970,3102,2,2,1688.782696,1688.782696,3507,NO,37.95,52.83,1,2.06,6110,114.974753,124.520433,134.376085,140.426035,I,Above,Hip,0,5701,Wood,45.3875317,0,0,,,,1,1,,0.35,nav,1,1970,2,, 7642,NJBF000076155,301 35TH STREET SO,Brigantine,NJ,39.39242462,-74.38750917,RES1,3001,,45,NE,1952,1952,3102,2,2,2096.371158,2096.371158,3507,NO,26.96,39.85,1,-0.7,6106,115.137281,124.664806,134.543381,140.516144,I,Above,Hip,0,5701,Wood,33.40603881,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7643,NJBF000076153,3519 W BRIGANTINE AVE,Brigantine,NJ,39.3924015,-74.3886965,RES1,3001,,16,NE,1964,1964,3102,2,1,982.2352103,982.2352103,3507,NO,27.41,36.14,1,2.32,6106,115.113037,124.64285,134.518706,140.497796,I,Above,Flat,0,5701,Wood,31.77492425,0,0,,,,1,1,,0.03,nav,1,1964,2,, 7644,NJBF000079711,104 QUAY BLVD,Brigantine,NJ,39.4124367,-74.36129472,RES1,3001,,43,NE,1960,1960,3102,3,2,1266.368653,1266.368653,3507,NO,40.77,47.81,1,0.64,6106,115.457444,124.960071,134.889938,140.674062,I,Above,Gable,0,5701,Wood,44.29095872,0,1.1,,,,1,1,,0.03,nav,1,1960,3,, 7645,NJBF000078079,,Brigantine,NJ,39.4028879,-74.37227899,RES1,3001,,NaN,NE,1945,0,3102,2,1,3606.767268,3606.767268,3505,NO,39,45.88,3,2.63,6106,115.336242,124.846183,134.755401,140.620792,I,Above,Flat,0,5701,Wood,42.4403024,0,0,,,,1,1,,0.03,nav,1,1945,2,, 7646,NJBF000078105,1018 W BRIGANTINE AVE,Brigantine,NJ,39.40297187,-74.3702291,COM1,3001,,NaN,ME,1969,1950,3401,2,1,4378.668596,4378.668596,3507,NO,35.35,45,1,0.25,6106,115.376991,124.884097,134.798305,140.651975,I,Above,Flat,0,NaN,Wood,40.17623476,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7647,NJBF000078124,230 13TH STREET SO,Brigantine,NJ,39.40308932,-74.37313946,RES1,3001,,15,NE,1962,1962,3102,1,1,1342.126168,1342.126168,3505,NO,10.82,20.95,3,-0.77,6106,115.31661,124.827931,134.734919,140.604683,I,Above,Gable,0,5701,Wood,15.88396118,0,0,,,,1,1,,0.03,nav,1,1962,1,, 7648,NJBF000078137,226 13TH STREET SO,Brigantine,NJ,39.40317649,-74.37320092,RES1,3001,,15,NE,1962,1962,3102,1,1,1200.611767,1200.611767,3505,NO,16.98,29.72,3,5.62,6106,115.314421,124.825892,134.732674,140.602597,I,Above,Gable,0,5701,Wood,23.34873003,0,0,,,,1,1,,0.03,nav,1,1962,1,, 7649,NJBF000076156,232 37TH STREET SO,Brigantine,NJ,39.39242465,-74.39076877,RES1,3001,,15,NE,1940,1940,3102,1,1,1018.927469,1018.927469,3507,NO,15.08,21.53,1,-0.17,6106,115.069926,124.603859,134.474961,140.464824,I,Above,Gable,0,5701,Wood,18.30121377,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 7650,NJBF000075927,230 39TH STREET SO,Brigantine,NJ,39.391655,-74.392296,RES1,3001,,45,NE,1962,1962,3102,3,2,1603.823095,1603.823095,3507,NO,47.35,52.87,1,1.92,6106,115.046727,124.583144,134.45113,140.450905,I,Above,Gable,0,5701,Wood,50.11079512,0,1.2,,,,1,1,,0.03,nav,1,1962,3,, 7651,NJBF000073414,5202 HARBOR BEACH BLVD,Brigantine,NJ,39.38052552,-74.406929,RES1,3001,,16,NE,1975,1975,3103,2,1,1786.145031,1786.145031,3505,YES,39.97,51.84,3,2.64,6106,114.865001,124.424931,134.265151,140.369803,I,Above,Gable,0,5701,Wood,45.90251489,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7652,NJBF000078034,1301 W BRIGANTINE AVE,Brigantine,NJ,39.40245408,-74.37249336,COM1,3001,,NaN,ME,1969,0,3401,2,1,4286.614975,4286.614975,3507,YES,31.63,40.31,1,1.89,6106,115.336525,124.846461,134.755423,140.62294,I,Above,Flat,0,NaN,Wood,35.97307494,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7653,NJBF000077924,2107 BAYSHORE AVE,Brigantine,NJ,39.4016916,-74.3807764,RES1,3001,,19,NE,2013,2013,3102,3,1,2341.648664,2341.648664,3507,NO,39.65,45.95,1,-0.72,6106,115.17568,124.697848,134.587275,140.501817,I,Above,Gable,0,5701,Wood,42.80337259,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 7654,NJBF000075889,15 BEACH COVE,Brigantine,NJ,39.39151163,-74.40170818,RES1,3001,,16,NE,1976,1976,3102,2,1,1558.593405,1558.593405,3507,YES,40.1,50.97,1,1.28,6106,114.852655,124.409149,134.256241,140.303494,I,Above,Gable,0,5701,Wood,45.53851406,0,0,,,,1,1,,0.03,nav,1,1976,2,, 7655,NJBF000077845,320 14TH STREET SO,Brigantine,NJ,39.40119463,-74.37248293,RES1,3001,,19,NE,2013,2013,3102,3,1,1077.414782,1077.414782,3502,NO,33.57,45.18,5,-0.26,6106,115.350207,124.859186,134.768929,140.639097,I,Above,Flat,0,5701,Wood,39.37574858,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 7656,NJBF000077905,353 12TH STREET SO,Brigantine,NJ,39.40155228,-74.36994368,RES1,3001,,NaN,NE,1969,0,3102,3,1,3350.008335,3350.008335,3502,NO,70.82,84.44,5,12.63,6106,115.397984,124.903588,134.819358,140.6744,I,Above,Gable,0,5701,Wood,77.62712199,0,1.2,,,,1,1,,0.03,nav,1,1969,3,, 7657,NJBF000077923,353 12TH STREET SO,Brigantine,NJ,39.40167853,-74.36962946,RES1,3001,,NaN,NE,1958,0,3102,3,1,792.7937341,792.7937341,3502,NO,51.35,57.94,5,-1.32,6110,115.403017,124.90828,134.824752,140.677731,I,Above,Hip,0,5701,Wood,54.64692795,0,1.2,,,,1,1,,0.35,nav,1,1958,3,, 7658,NJBF000077920,206 16TH STREET SO,Brigantine,NJ,39.40167006,-74.37514365,RES1,3001,,16,NE,1962,1962,3101,2,1,1470.588467,1470.588467,3507,NO,27.88,38.03,1,-0.75,6106,115.290932,124.804232,134.707209,140.591176,I,Above,Hip,0,5701,Wood,32.95592178,0,0,,,,1,1,,0.03,nav,1,1962,2,, 7659,NJBF000076525,229 35TH STREET SO,Brigantine,NJ,39.39377888,-74.3889433,RES1,3001,,45,NE,1952,1952,3102,2,2,1490.82901,1490.82901,3507,NO,38.61,49.4,1,1.61,6106,115.092915,124.624294,134.498935,140.475809,I,Above,Hip,0,5701,Wood,44.00678479,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7660,NJBF000076504,246 33RD STREET SO,Brigantine,NJ,39.39368384,-74.38701692,RES1,3001,,15,NE,1950,1950,3102,1,2,646.5765787,646.5765787,3507,NO,14.76,22.48,1,2.35,6106,115.133689,124.661298,134.540424,140.507411,I,Above,Flat,0,5701,Wood,18.62084463,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 7661,NJBF000076493,246 33RD STREET SO,Brigantine,NJ,39.39362466,-74.38711954,RES1,3001,,15,NE,1950,1950,3102,1,2,827.9750017,827.9750017,3507,NO,13.3,27.74,1,0.55,6106,115.132208,124.659965,134.538882,140.506561,I,Above,Hip,0,5701,Wood,20.52115548,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 7662,NJBF000076505,246 33RD STREET SO,Brigantine,NJ,39.39368898,-74.38720805,RES1,3001,,15,NE,1950,1950,3102,1,2,869.3552436,869.3552436,3507,NO,19.83,25.74,1,2.36,6106,115.129696,124.657672,134.536354,140.504338,I,Above,Hip,0,5701,Wood,22.78554789,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 7663,NJBF000077554,207 22ND STREET SO,Brigantine,NJ,39.3994045,-74.3792955,RES1,3001,,15,NE,1926,1926,3101,2,1,1409.442549,1409.442549,3507,NO,24.63,36.49,1,-0.29,6106,115.230433,124.748675,134.642982,140.554798,I,Above,Gable,0,5701,Wood,30.55793575,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 7664,NJBF000077504,309 19TH STREET SO,Brigantine,NJ,39.39909883,-74.37550241,RES1,3001,,19,NE,2009,2009,3102,3,1,1057.725257,1057.725257,3507,NO,46.86,58.65,1,-0.76,6106,115.311229,124.823155,134.726748,140.618407,I,Above,Gable,0,5701,Wood,52.75027881,0,0,,,,1,1,,0.03,nav,1,2009,3,, 7665,NJBF000077516,309 19TH STREET SO,Brigantine,NJ,39.39918715,-74.3755862,RES1,3001,,19,NE,2009,2009,3102,3,1,1587.335581,1587.335581,3507,NO,57.58,65.97,1,0.46,6106,115.308566,124.820693,134.724035,140.615964,I,Above,Flat,0,5701,Wood,61.77531933,0,0,,,,1,1,,0.03,nav,1,2009,3,, 7666,NJBF000077492,314 18TH STREET SO,Brigantine,NJ,39.39903211,-74.37506821,RES1,3001,,16,NE,1969,1969,3102,2,1,1462.607979,1462.607979,3507,NO,25.4,35.22,1,2.19,6106,115.320806,124.832,134.73668,140.626073,I,Above,Gable,0,5701,Wood,30.31182589,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 7667,NJBF000076040,312 35TH STREET SO,Brigantine,NJ,39.39203019,-74.38773539,RES1,3001,,16,NE,1948,1948,3102,1,1,2209.754052,2209.754052,3507,NO,12.06,23.28,1,0.95,6106,115.136939,124.66457,134.542802,140.517763,I,Above,Gable,0,5701,Wood,17.66961641,0,0,,,,1,1,,0.03,nav,1,1948,1,, 7668,NJBF000075280,320 SEASHELL LANE,Brigantine,NJ,39.38934508,-74.40377499,RES3B,3001,,35,ME,1984,1984,3301,2,1,4413.446436,4413.446436,3507,YES,21.71,29.17,1,-0.02,6106,114.833106,124.392887,134.236489,140.299907,I,Above,Gable,0,5701,Wood,25.43952808,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 7669,NJBF000075887,222 40TH STREET SO,Brigantine,NJ,39.39150355,-74.39343149,RES1,3001,,15,NE,1956,1956,3102,1,1,1160.410789,1160.410789,3507,NO,14.09,21.52,1,-0.37,6106,115.024856,124.563491,134.42898,140.434989,I,Above,Gable,0,5701,Wood,17.80368236,0,0,,,,1,1,,0.03,nav,1,1956,1,, 7670,NJBF000077490,104 25TH STREET SO,Brigantine,NJ,39.3990277,-74.38328457,RES1,3001,,15,NE,1955,1955,3102,1,1,1235.274107,1235.274107,3507,NO,20.41,27.58,1,1.05,6106,115.15272,124.677427,134.562483,140.496621,I,Above,Gable,0,5701,Wood,23.99241148,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 7671,NJBF000074874,121 45TH STREET SO,Brigantine,NJ,39.3880454,-74.39508391,RES1,3001,,16,NE,1968,1968,3102,2,1,2611.005863,2611.005863,3507,YES,33.92,39.18,1,-0.97,6106,115.028562,124.567832,134.431088,140.45485,I,Above,Gable,0,5701,Wood,36.55008551,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7672,NJBF000076160,316 34TH STREET SO,Brigantine,NJ,39.39243665,-74.38693309,RES1,3001,,43,NE,1952,1952,3102,2,2,1322.808748,1322.808748,3507,NO,38.76,53.55,1,0.82,6106,115.149033,124.67546,134.555359,140.525035,I,Above,Hip,0,5701,Wood,46.15531882,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7673,NJBF000077499,1701 OCEAN AVE,Brigantine,NJ,39.39907322,-74.37395396,RES1,3001,,16,NE,1934,1934,3102,1,1,2296.246337,2296.246337,3505,NO,17.48,27.96,3,4.72,6106,115.34308,124.852582,134.759942,140.643014,I,Above,Hip,0,5701,Wood,22.71871518,0,1.1,,,,1,1,,0.03,nav,1,1934,1,, 7674,NJBF000076000,3619 W BRIGANTINE AVE,Brigantine,NJ,39.3918862,-74.3892932,RES1,3001,,43,NE,1962,1962,3102,2,2,1198.807237,1198.807237,3507,NO,27.03,40.38,1,1.48,6106,115.106335,124.636899,134.511619,140.495166,I,Above,Flat,0,5701,Wood,33.70593964,0,0,,,,1,1,,0.03,nav,1,1962,2,, 7675,NJBF000075347,4010 W BRIGANTINE AVE,Brigantine,NJ,39.38957647,-74.39123584,RES1,3001,,16,NE,1964,1964,3102,2,1,826.7916045,826.7916045,3507,NO,32.42,40.36,1,2.87,6110,115.091503,124.624011,134.4953,140.495027,I,Above,Gable,0,5701,Wood,36.38685313,0,0,,,,1,1,,0.35,nav,1,1964,2,, 7676,NJBF000075512,,Brigantine,NJ,39.39011855,-74.39308921,COM8,3001,,NaN,ME,1969,0,3401,2,1,28963.24779,28963.24779,3507,NO,31.16,42.99,1,2.31,6106,115.047123,124.583935,134.450807,140.458732,I,Above,Flat,0,NaN,Wood,37.07386252,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7677,NJBF000075081,111 45TH STREET SO,Brigantine,NJ,39.38864188,-74.39597025,RES1,3001,,16,NE,1968,1968,3102,2,1,1846.096388,1846.096388,3507,YES,26.56,35.37,1,-0.97,6106,115.003552,124.545257,134.406297,140.432973,I,Above,Gable,0,5701,Wood,30.96254116,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7678,NJBF000075393,20 LAGOON BLVD,Brigantine,NJ,39.38971103,-74.40188733,RES1,3001,,16,NE,1974,1974,3102,1,1,2140.915984,2140.915984,3507,NO,14.79,26.73,1,0.47,6106,114.868543,124.424236,134.271777,140.324995,I,Above,Hip,0,5701,Wood,20.76096702,0,0,,,,1,1,,0.03,nav,1,1974,1,, 7679,NJBF000075703,352 36TH STREET SO,Brigantine,NJ,39.39079817,-74.38738753,RES1,3001,,16,NE,1954,1954,3102,1,1,814.9459219,814.9459219,3507,NO,15.54,22.74,1,0.55,6106,115.157624,124.683503,134.56307,140.539316,I,Above,Gable,0,5701,Wood,19.14001129,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7680,NJBF000074975,3 45TH COVE,Brigantine,NJ,39.38834116,-74.39585471,RES1,3001,,16,NE,1968,1968,3102,2,1,1678.948121,1678.948121,3507,YES,26.21,34.12,1,-0.13,6106,115.009264,124.550463,134.411882,140.43879,I,Above,Gable,0,5701,Wood,30.16497329,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7681,NJBF000074978,29 SHIPMASTER DR,Brigantine,NJ,39.38834947,-74.40121833,RES1,3001,,43,NE,1968,1968,3102,2,2,1211.460037,1211.460037,3507,NO,23.17,30.75,1,0.94,6106,114.897442,124.450603,134.300199,140.353999,I,Above,Gable,0,5701,Wood,26.96423525,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7682,NJBF000075694,4705 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39076347,-74.41180329,RES1,3001,,16,NE,1968,1968,3103,2,1,1506.890827,1506.890827,3505,YES,40.74,52.55,3,3.06,6106,114.64946,124.229308,134.055094,140.151733,I,Above,Gable,0,5701,Wood,46.64595457,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7683,NJBF000075733,326 37TH STREET SO,Brigantine,NJ,39.3909119,-74.38860822,RES1,3001,,47,NE,1960,1960,3102,2,4,2103.767565,2103.767565,3507,NO,35.75,44.34,1,-0.52,6106,115.131171,124.659552,134.536269,140.518704,I,Above,Gable,0,5701,Wood,40.04146242,0,0,,,,1,1,,0.03,nav,1,1960,2,, 7684,NJBF000075665,103 44TH STREET SO,Brigantine,NJ,39.39065387,-74.39670737,RES1,3001,,16,NE,1968,1968,3102,2,1,1786.555221,1786.555221,3507,YES,21.72,27.75,1,0.16,6106,114.966136,124.511042,134.369574,140.394504,I,Above,Hip,0,5701,Wood,24.73445703,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 7685,NJBF000075500,101 SHIPMASTER DRIVE,Brigantine,NJ,39.39007045,-74.40274937,RES1,3001,,18,NE,1988,1988,3102,2,1,2457.616807,2457.616807,3507,NO,29.72,34.9,1,-0.55,6106,114.846625,124.404534,134.250033,140.306418,I,Above,Hip,0,5701,Wood,32.31116878,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 7686,NJBF000075968,18 ATLANTIS COVE,Brigantine,NJ,39.39179303,-74.40095721,RES1,3001,,16,NE,1972,1972,3102,2,1,1748.286126,1748.286126,3507,YES,24.54,33.93,1,1.77,6106,114.865262,124.420257,134.26886,140.311677,I,Above,Gable,0,5701,Wood,29.23468694,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7687,NJBF000075242,,Brigantine,NJ,39.38920128,-74.39145233,RES1,3001,,NaN,NE,1969,0,3102,2,1,1738.259625,1738.259625,3507,NO,26.99,33.15,1,2.92,6110,115.091164,124.623784,134.494736,140.496579,I,Above,Hip,0,5701,Wood,30.06854875,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7688,NJBF000075339,314 40TH STREET SO,Brigantine,NJ,39.38956153,-74.39060814,RES1,3001,,43,NE,1935,1935,3102,2,2,1333.678441,1333.678441,3507,YES,25.07,33.67,1,1.15,6110,115.104663,124.635871,134.50859,140.505062,I,Above,Flat,0,5701,Wood,29.36947405,0,1.1,,,,1,1,,0.35,nav,1,1935,2,, 7689,NJBF000075884,,Brigantine,NJ,39.39149173,-74.38633965,RES1,3001,,NaN,NE,1969,0,3102,2,1,2271.315162,2271.315162,3507,NO,23.21,31.72,1,1.4,6106,115.171622,124.69609,134.577778,140.54667,I,Above,Flat,0,5701,Wood,27.4675177,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7690,NJBF000076005,,Brigantine,NJ,39.39191386,-74.38683086,RES1,3001,,NaN,NE,1969,0,3102,2,1,1285.21646,1285.21646,3507,NO,36.61,41.63,1,2.11,6106,115.156865,124.682648,134.563016,140.533468,I,Above,Flat,0,5701,Wood,39.11870884,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7691,NJBF000075971,348 34TH STREET SO,Brigantine,NJ,39.3917995,-74.386146,RES1,3001,,43,NE,1947,1947,3102,2,2,794.3980456,794.3980456,3507,NO,30.52,35.75,1,0.97,6106,115.172254,124.696621,134.578624,140.545707,I,Above,Flat,0,5701,Wood,33.13371422,0,0,,,,1,1,,0.03,nav,1,1947,2,, 7692,NJBF000076683,3810 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3943404,-74.39399491,COM4,3001,,NaN,ME,1969,0,3401,1,1,3162.200415,3162.200415,3507,NO,14.52,22.75,1,1.45,6106,114.982345,124.524153,134.387005,140.388384,I,Above,Hip,0,NaN,Wood,18.63459466,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7693,NJBF000076687,312 29TH STREET SO,Brigantine,NJ,39.39435327,-74.38294822,RES1,3001,,16,NE,1958,1958,3102,1,1,2053.237272,2053.237272,3507,NO,22.09,34.6,1,2.61,6106,115.210166,124.730785,134.619073,140.562644,I,Above,Gable,0,5701,Wood,28.3450009,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 7694,NJBF000075998,4000 BAYSHORE AVE,Brigantine,NJ,39.39188096,-74.39389425,RES1,3001,,47,NE,1984,1984,3102,2,3,1926.199973,1926.199973,3507,NO,39.88,45.34,1,1.67,6106,115.011139,124.551021,134.415294,140.422669,I,Above,Hip,0,5701,Wood,42.61271043,0,0,,,,1,1,,0.03,nav,1,1984,2,, 7695,NJBF000077520,313 18TH STREET SO,Brigantine,NJ,39.39919666,-74.37453958,RES1,3001,,16,NE,1957,1957,3102,2,1,1560.437028,1560.437028,3505,YES,43.13,53.31,3,6.69,6106,115.329796,124.840302,134.746171,140.632249,I,Above,Hip,0,5701,Wood,48.2207114,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 7696,NJBF000075740,344 36TH STREET SO,Brigantine,NJ,39.390952,-74.38760654,RES1,3001,,43,NE,1984,1984,3102,2,2,1086.31292,1086.31292,3507,NO,36.65,42.46,1,0.57,6106,115.151409,124.677854,134.556852,140.533873,I,Above,Hip,0,5701,Wood,39.55468311,0,0,,,,1,1,,0.03,nav,1,1984,2,, 7697,NJBF000077212,405 20TH STREET SO,Brigantine,NJ,39.39727831,-74.37500422,RES1,3001,,20,NE,2011,2011,3102,3,1,2909.855648,2909.855648,3507,NO,47.61,60.06,1,0.52,6106,115.34108,124.85071,134.756477,140.649453,I,Above,Hip,0,5701,Wood,53.83614626,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 7698,NJBF000075924,,Brigantine,NJ,39.39164833,-74.38722648,RES1,3001,,NaN,NE,1969,0,3102,2,1,1046.833302,1046.833302,3507,NO,23.19,28.49,1,0.84,6106,115.151631,124.677947,134.557521,140.530748,I,Above,Flat,0,5701,Wood,25.84372665,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7699,NJBF000076366,317 33RD STREET SO,Brigantine,NJ,39.39317016,-74.38586207,RES1,3001,,16,NE,1955,1955,3102,2,1,1092.354375,1092.354375,3507,NO,38.69,47.3,1,-0.07,6106,115.163102,124.688106,134.57015,140.532285,I,Above,Gable,0,5701,Wood,42.99399856,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7700,NJBF000077670,112 22ND STREET SO,Brigantine,NJ,39.40024833,-74.38062587,RES1,3001,,16,NE,1954,1954,3101,2,1,1575.747031,1575.747031,3507,NO,30.25,38.34,1,1.11,6106,115.194158,124.71517,134.605819,140.522884,I,Above,Gable,0,5701,Wood,34.29387783,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7701,NJBF000075956,261 38TH STREET SO,Brigantine,NJ,39.39174799,-74.39038764,RES1,3001,,43,NE,1950,1950,3102,2,2,983.4760965,983.4760965,3507,NO,34.38,47.43,1,-0.38,6106,115.085205,124.617835,134.490115,140.479749,I,Above,Hip,0,5701,Wood,40.90712947,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7702,NJBF000074687,13 HUDSON COVE,Brigantine,NJ,39.38745332,-74.39611333,RES1,3001,,16,NE,1968,1968,3102,2,1,2375.520345,2375.520345,3507,YES,33.5,47.09,1,2.08,6110,115.013716,124.554701,134.415899,140.446549,I,Above,Gable,0,5701,Wood,40.29105096,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 7703,NJBF000074736,4511 HARBOR BEACH BLVD,Brigantine,NJ,39.38760803,-74.3978197,RES1,3001,,16,NE,1968,1968,3102,2,1,2057.18904,2057.18904,3507,NO,29.6,40.43,1,0.87,6106,114.976467,124.521359,134.378717,140.417624,I,Above,Gable,0,5701,Wood,35.01433356,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7704,NJBF000077728,1319 OCEAN AVE,Brigantine,NJ,39.40056714,-74.3713725,RES1,3001,,15,NE,1954,1954,3102,1,1,2158.145791,2158.145791,3502,NO,18.66,24.61,5,2.93,6106,115.379531,124.886388,134.799214,140.664474,I,Above,Hip,0,5701,Wood,21.63962862,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7705,NJBF000077727,209 19TH STREET SO,Brigantine,NJ,39.40056395,-74.37682921,RES1,3001,,16,NE,1955,1955,3101,2,1,2223.644407,2223.644407,3507,YES,25.96,36.58,1,2.27,6106,115.268399,124.783511,134.68307,140.578778,I,Above,Gable,0,5701,Wood,31.26865436,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 7706,NJBF000076312,316 33RD STREET SO,Brigantine,NJ,39.39293951,-74.38619166,RES1,3001,,16,NE,1952,1952,3102,2,1,877.8056642,877.8056642,3507,NO,23.48,35.39,1,0.9,6106,115.158813,124.684249,134.565633,140.530103,I,Above,Hip,0,5701,Wood,29.43487101,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7707,NJBF000073900,,Brigantine,NJ,39.38384646,-74.40243128,RES3D,3001,,NaN,ME,1969,0,3301,2,1,13303.56312,13303.56312,3507,NO,20.82,31.92,1,-0.63,6106,114.922022,124.474158,134.322866,140.395544,I,Above,Gable,0,NaN,Wood,26.36745446,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7708,NJBF000073724,1 OCKENLANDER DRIVE,Brigantine,NJ,39.38273892,-74.40921545,RES1,3001,,17,NE,1987,1987,3103,2,1,1922.216057,1922.216057,3505,NO,34.77,48.07,3,4.34,6106,114.792052,124.359874,134.194555,140.303615,I,Above,Gable,0,5701,Wood,41.41812877,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 7709,NJBF000080967,811 STERLING PLACE,Brigantine,NJ,39.41704449,-74.3807155,RES1,3001,,16,NE,1977,1977,3103,1,1,1629.492252,1629.492252,3505,NO,13.87,19.25,3,1.44,6106,115.017636,124.544598,134.42252,140.303501,I,Above,Flat,0,5701,Wood,16.55681098,0,0,,,,1,1,,0.03,nav,1,1977,1,, 7710,NJBF000080823,811 W SHORE DR,Brigantine,NJ,39.41647281,-74.38240055,RES1,3001,,18,NE,2005,2005,3103,3,1,1834.56511,1834.56511,3505,NO,47.73,61.41,3,0.75,6106,114.989156,124.518369,134.392781,140.283417,I,Above,Flat,0,5701,Wood,54.57389614,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7711,NJBF000080526,1401 SHERIDAN BLVD,Brigantine,NJ,39.41533588,-74.37474408,RES1,3001,,16,NE,1969,1969,3102,1,1,1810.985831,1810.985831,3507,NO,14.24,20,1,0.17,6106,115.156094,124.675188,134.569055,140.422489,I,Above,Hip,0,5701,Wood,17.12027647,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 7712,NJBF000080598,703 LAFAYETTE BLVD,Brigantine,NJ,39.41559265,-74.37881727,RES1,3001,,16,NE,1966,1966,3103,1,1,1510.425646,1510.425646,3505,NO,22.91,35.79,3,3.43,6106,115.070895,124.595236,134.479005,140.35322,I,Above,Gable,0,5701,Wood,29.34545647,0,0,,,,1,1,,0.03,nav,1,1966,1,, 7713,NJBF000080576,707 STERLING PLACE,Brigantine,NJ,39.4155015,-74.37981498,RES1,3001,,16,NE,1976,1976,3103,2,1,1817.567442,1817.567442,3505,NO,31.16,45.69,3,6.62,6106,115.051568,124.577221,134.458671,140.338199,I,Above,Flat,0,5701,Wood,38.42551109,0,0,,,,1,1,,0.03,nav,1,1976,2,, 7714,NJBF000080511,1403 SHERIDAN BLVD,Brigantine,NJ,39.41530515,-74.37487209,RES1,3001,,16,NE,1969,1969,3102,2,1,1290.393596,1290.393596,3507,YES,38.15,46.33,1,2.41,6106,115.153819,124.673065,134.566647,140.420819,I,Above,Flat,0,5701,Wood,42.24233137,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7715,NJBF000080494,1309 SHERIDAN BLVD,Brigantine,NJ,39.41526483,-74.37356554,RES1,3001,,16,NE,1972,1972,3102,1,1,1783.574486,1783.574486,3507,NO,10.02,22.04,1,-0.88,6106,115.180667,124.698297,134.595106,140.442409,I,Above,Hip,0,5701,Wood,16.03404996,0,0,,,,1,1,,0.03,nav,1,1972,1,, 7716,NJBF000078423,128 11TH STREET SO,Brigantine,NJ,39.40543765,-74.37294664,RES1,3001,,15,NE,1952,1952,3102,1,1,1126.066917,1126.066917,3505,NO,14.94,20.9,3,1.83,6106,115.295569,124.808148,134.714078,140.577794,I,Above,Flat,0,5701,Wood,17.91997046,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7717,NJBF000075860,4615 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39138906,-74.41046244,RES1,3001,,17,NE,1947,1947,3103,2,1,1783.696309,1783.696309,3505,NO,42.06,56.49,3,3.51,6106,114.670861,124.247735,134.076036,140.164718,I,Above,Hip,0,5701,Wood,49.27148897,0,0,,,,1,1,,0.03,nav,1,1947,2,, 7718,NJBF000076620,111 38TH STREET SO,Brigantine,NJ,39.39410926,-74.39325708,COM1,3001,,NaN,ME,1969,0,3401,1,1,2479.813174,2479.813174,3507,NO,16.6,29.05,1,1.06,6106,115.00013,124.540289,134.404926,140.403176,I,Above,Flat,0,NaN,Wood,22.82824283,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7719,NJBF000075865,241 40TH STREET SO,Brigantine,NJ,39.39142242,-74.39256866,RES1,3001,,17,NE,1988,1988,3102,2,1,1000.047461,1000.047461,3507,NO,24.3,35.53,1,1.04,6106,115.043618,124.580412,134.447885,140.449681,I,Above,Gable,0,5701,Wood,29.91716614,0,0,,,,1,1,,0.03,nav,1,1988,2,, 7720,NJBF000076647,,Brigantine,NJ,39.3941951,-74.38817793,RES1,3001,,NaN,NE,1952,0,3102,2,1,1015.096471,1015.096471,3507,NO,35.09,43.94,1,1.62,6106,115.104184,124.634404,134.510603,140.482418,I,Above,Hip,0,5701,Wood,39.51494952,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7721,NJBF000077853,329 14TH STREET SO,Brigantine,NJ,39.40124185,-74.37194681,RES1,3001,,16,NE,1970,1970,3102,2,1,958.1866579,958.1866579,3502,NO,29.73,44.38,5,8.53,6106,115.360606,124.868837,134.779865,140.646915,I,Above,Gable,0,5701,Wood,37.05449293,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 7722,NJBF000078264,1118 W BEACH AVE,Brigantine,NJ,39.4042315,-74.37245667,RES1,3001,,15,NE,1956,1956,3102,1,1,605.5691276,605.5691276,3505,NO,12.65,23,3,2.12,6106,115.318313,124.829433,134.737362,140.600896,I,Above,Gable,0,5701,Wood,17.82373811,0,0,,,,1,1,,0.03,nav,1,1956,1,, 7723,NJBF000077718,2401 BAYSHORE AVE,Brigantine,NJ,39.40051243,-74.38309925,RES1,3001,,18,NE,2016,2016,3101,3,1,2229.672798,2229.672798,3507,NO,55.82,62.47,1,0,6106,115.140667,124.665991,134.550623,140.480263,I,Above,Flat,0,5701,Wood,59.14761868,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 7724,NJBF000080372,1308 SHERIDAN BLVD,Brigantine,NJ,39.41487329,-74.37367098,RES1,3001,,16,NE,1972,1972,3102,1,1,1713.552976,1713.552976,3507,NO,18.48,32.35,1,1.9,6106,115.182563,124.700221,134.597113,140.445732,I,Above,Gable,0,5701,Wood,25.41389848,0,0,,,,1,1,,0.03,nav,1,1972,1,, 7725,NJBF000079631,107 6TH STREET NO,Brigantine,NJ,39.4120465,-74.361147,RES1,3001,,47,NE,1981,1981,3102,2,2,1994.690821,1994.690821,3507,NO,27.84,36.68,1,2.5,6106,115.464499,124.966736,134.897296,140.681253,I,Above,Gable,0,5701,Wood,32.26200163,0,0,,,,1,1,,0.03,nav,1,1981,2,, 7726,NJBF000079526,507 E BEACH AVE,Brigantine,NJ,39.411526,-74.361186,RES1,3001,,15,NE,1955,1955,3102,1,1,746.4333273,746.4333273,3507,NO,14.59,28.58,1,-0.05,6106,115.469173,124.971126,134.902002,140.687117,I,Above,Flat,0,5701,Wood,21.58185013,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 7727,NJBF000078225,227 12TH STREET SO,Brigantine,NJ,39.40383026,-74.37202133,RES1,3001,,16,NE,1953,1953,3102,2,1,1598.298357,1598.298357,3505,NO,27.49,39.92,3,4.41,6106,115.331447,124.841681,134.750938,140.612887,I,Above,Hip,0,5701,Wood,33.70339791,0,0,,,,1,1,,0.03,nav,1,1953,2,, 7728,NJBF000078239,226 11TH STREET SO,Brigantine,NJ,39.40399055,-74.37172051,RES1,3001,,16,NE,1950,1950,3102,1,1,1529.036881,1529.036881,3505,NO,14.38,26.26,3,-2.75,6106,115.335829,124.845751,134.755641,140.615573,I,Above,Hip,0,5701,Wood,20.32453546,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7729,NJBF000078235,230 11TH STREET SO,Brigantine,NJ,39.40391739,-74.37162268,RES1,3001,,16,NE,1979,1979,3102,2,1,1362.434696,1362.434696,3505,NO,30.32,43.17,3,0.24,6106,115.338607,124.848341,134.75852,140.618058,I,Above,Hip,0,5701,Wood,36.74277492,0,0,,,,1,1,,0.03,nav,1,1979,2,, 7730,NJBF000078057,1701 BAYSHORE AVE,Brigantine,NJ,39.40261942,-74.37711678,RES1,3001,,17,NE,1970,1970,3102,2,1,2237.097383,2237.097383,3507,YES,40.32,46.89,1,1.59,6106,115.240576,124.757524,134.655147,140.547848,I,Above,Hip,0,5701,Wood,43.60915548,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 7731,NJBF000078131,1113 W BRIGANTINE AVE,Brigantine,NJ,39.40312817,-74.37127705,RES1,3001,,18,NE,2006,2006,3102,2,1,2147.051445,2147.051445,3505,NO,34.52,49.18,3,5.9,6106,115.354044,124.862732,134.774262,140.633519,I,Above,Gable,0,5701,Wood,41.85244439,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 7732,NJBF000078147,244 12TH STREET SO,Brigantine,NJ,39.40324523,-74.37213493,RES1,3001,,15,NE,1950,1950,3102,1,1,1054.793445,1054.793445,3505,NO,25.89,40.72,3,6.65,6106,115.335361,124.84535,134.754698,140.618524,I,Above,Hip,0,5701,Wood,33.30501411,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 7733,NJBF000077912,101 19TH STREET SO,Brigantine,NJ,39.40161456,-74.37788416,RES1,3001,,16,NE,1956,1956,3101,1,1,1969.104147,1969.104147,3507,NO,21.26,32.64,1,2.1,6106,115.235619,124.75311,134.649503,140.548621,I,Above,Gable,0,5701,Wood,26.95051436,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 7734,NJBF000077786,203 19TH STREET SO,Brigantine,NJ,39.40086183,-74.37717632,RES1,3001,,16,NE,1978,1978,3101,3,1,1085.68893,1085.68893,3507,NO,37.44,49.59,1,-0.92,6106,115.258123,124.773991,134.672538,140.569482,I,Above,Gable,0,5701,Wood,43.51680711,0,0,,,,1,1,,0.03,nav,1,1978,3,, 7735,NJBF000077397,101 27TH STREET SO,Brigantine,NJ,39.39836503,-74.38432797,RES1,3001,,19,NE,2006,2006,3102,3,1,2405.620868,2405.620868,3507,NO,55.31,62.45,1,1.9,6106,115.138418,124.664509,134.547485,140.488739,I,Above,Gable,0,5701,Wood,58.87881817,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 7736,NJBF000077532,201 23RD STREET SO,Brigantine,NJ,39.39928828,-74.38027106,RES1,3001,,16,NE,1958,1958,3101,2,1,1311.020544,1311.020544,3507,YES,24.79,30.47,1,0.54,6106,115.211713,124.731484,134.62353,140.540906,I,Above,Hip,0,5701,Wood,27.62550336,0,0,,,,1,1,,0.03,nav,1,1958,2,, 7737,NJBF000077547,201 23RD STREET SO,Brigantine,NJ,39.3993585,-74.380199,RES1,3001,,16,NE,1958,1958,3101,2,1,516.1292312,516.1292312,3507,YES,35.54,48.98,1,2.9,6106,115.212436,124.732137,134.624314,140.541139,I,Above,Gable,0,5701,Wood,42.25972598,0,0,,,,1,1,,0.03,nav,1,1958,2,, 7738,NJBF000077515,2300 REVERE BLVD,Brigantine,NJ,39.39917547,-74.38084234,RES1,3001,,16,NE,1954,1954,3101,1,1,2745.631634,2745.631634,3507,NO,13.56,21.71,1,-0.93,6106,115.201232,124.721878,134.61263,140.533351,I,Above,Gable,0,5701,Wood,17.63543633,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7739,NJBF000073372,5107 OCEAN DRIVE SOUTH,Brigantine,NJ,39.38021805,-74.40420326,RES1,3001,,17,NE,1978,1978,3101,2,1,1930.580181,1930.580181,3507,YES,31.88,37.59,1,1.56,6106,114.925729,124.478527,134.324606,140.416664,I,Above,Gable,0,5701,Wood,34.73149071,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 7740,NJBF000077085,201 29TH STREET SO,Brigantine,NJ,39.39641417,-74.38461111,RES1,3001,,16,NE,1955,1955,3102,1,1,1706.950746,1706.950746,3507,NO,19.87,30.79,1,0.58,6106,115.153615,124.678851,134.562214,140.509692,I,Above,Flat,0,5701,Wood,25.32951505,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7741,NJBF000077478,204 23RD STREET SO,Brigantine,NJ,39.39892574,-74.3805646,RES1,3001,,16,NE,1954,1954,3101,1,1,2000.673057,2000.673057,3507,NO,14.52,27.92,1,-0.96,6106,115.20958,124.729587,134.621137,140.540944,I,Above,Gable,0,5701,Wood,21.21612386,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7742,NJBF000077142,203 28TH STREET SO,Brigantine,NJ,39.39684667,-74.38385099,RES1,3001,,16,NE,1950,1950,3102,1,1,1126.619851,1126.619851,3507,NO,20.54,30.99,1,1.82,6106,115.164559,124.68875,134.573668,140.516047,I,Above,Gable,0,5701,Wood,25.76219884,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7743,NJBF000075009,,Brigantine,NJ,39.3884277,-74.3899808,RES1,3001,,NaN,NE,1969,0,3102,2,1,1981.135042,1981.135042,3507,NO,24.05,29.12,1,-0.97,6110,115.130176,124.659056,134.533652,140.529777,I,Above,Flat,0,5701,Wood,26.5827059,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7744,NJBF000074545,4511 W BRIGANTINE AVE,Brigantine,NJ,39.3869142,-74.39518614,RES1,3001,,16,NE,1968,1968,3102,2,1,1818.513154,1818.513154,3507,YES,21.54,35.31,1,-0.13,6110,115.038972,124.57744,134.440906,140.468263,I,Above,Hip,0,5701,Wood,28.42583349,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 7745,NJBF000073329,5202 WATERVIEW DR,Brigantine,NJ,39.3798613,-74.4064572,RES1,3001,,16,NE,1975,1975,3103,1,1,1951.992947,1951.992947,3505,NO,16.58,24.55,3,3.36,6106,114.882446,124.440499,134.281914,140.386224,I,Above,Gable,0,5701,Wood,20.56757752,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7746,NJBF000074661,4513 HARBOR BEACH BLVD,Brigantine,NJ,39.38738196,-74.397857,RES1,3001,,16,NE,1968,1968,3102,2,1,1629.09719,1629.09719,3507,YES,29.17,42.91,1,2.53,6106,114.978195,124.522975,134.380342,140.420062,I,Above,Gable,0,5701,Wood,36.04024672,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7747,NJBF000074015,7 ALBERTA DRIVE,Brigantine,NJ,39.38445479,-74.40434987,RES3B,3001,,33,ME,1987,1987,3301,2,1,5392.027459,5392.027459,3507,NO,35.33,46.33,1,2.79,6106,114.875042,124.432333,134.276699,140.3571,I,Above,Flat,0,5701,Wood,40.83124805,0,0,,,,1,1,,0.03,nav,1,1987,2,, 7748,NJBF000074894,4513 PRIVATEER RD,Brigantine,NJ,39.38810208,-74.39902521,RES1,3001,,16,NE,1968,1968,3102,1,1,1979.35709,1979.35709,3507,NO,18.92,32.6,1,1,6110,114.945905,124.493904,134.348408,140.392007,I,Above,Flat,0,5701,Wood,25.76162325,0,0,,,,1,1,,0.35,nav,1,1968,1,, 7749,NJBF000074590,12 SHIPMASTER DR,Brigantine,NJ,39.38712393,-74.39917196,RES1,3001,,43,NE,1971,1971,3102,2,2,1792.664789,1792.664789,3507,NO,23.93,37.22,1,1.1,6110,114.953642,124.501154,134.355729,140.402797,I,Above,Flat,0,5701,Wood,30.57541458,0,0,,,,1,1,,0.35,nav,1,1971,2,, 7750,NJBF000074588,4514 HARBOR BEACH BLVD,Brigantine,NJ,39.38711783,-74.39727569,RES1,3001,,16,NE,1968,1968,3102,2,1,1818.500551,1818.500551,3507,YES,29.36,42.09,1,2.96,6106,114.993219,124.536474,134.395227,140.432729,I,Above,Gable,0,5701,Wood,35.72701889,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7751,NJBF000074578,,Brigantine,NJ,39.38709483,-74.392429,RES1,3001,,NaN,NE,1969,0,3102,2,1,1216.58517,1216.58517,3507,NO,36.44,45.26,1,-0.49,6110,115.094229,124.626937,134.496503,140.509038,I,Above,Gable,0,5701,Wood,40.85019646,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7752,NJBF000074613,,Brigantine,NJ,39.38719333,-74.392565,RES1,3001,,NaN,NE,1969,0,3102,2,1,1252.196178,1252.196178,3507,NO,40.88,55.42,1,1.91,6110,115.090318,124.623409,134.492633,140.505619,I,Above,Gable,0,5701,Wood,48.14833588,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7753,NJBF000074636,,Brigantine,NJ,39.38729151,-74.39270517,RES1,3001,,NaN,NE,2008,0,3102,2,1,1240.20537,1240.20537,3507,NO,30.79,41.04,1,2.45,6110,115.086313,124.619796,134.488668,140.502122,I,Above,Hip,0,5701,Wood,35.91506504,0,0,,,,1,1,,0.35,nav,1,2008,2,, 7754,NJBF000074484,,Brigantine,NJ,39.38664739,-74.40042979,RES1,3001,,NaN,NE,1969,0,3102,2,1,1531.319488,1531.319488,3507,NO,33.14,39.8,1,1.96,6110,114.932675,124.482645,134.334656,140.389363,I,Above,Gable,0,5701,Wood,36.47157911,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7755,NJBF000077822,,Brigantine,NJ,39.40105117,-74.37956944,RES1,3001,,NaN,NE,1969,0,3101,1,1,2251.210621,2251.210621,3507,NO,16.2,27.36,1,1.64,6106,115.207204,124.727013,134.619707,140.529233,I,Above,Gable,0,5701,Wood,21.77999083,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7756,NJBF000077588,101 25TH STREET SO,Brigantine,NJ,39.399659,-74.3829635,RES1,3001,,17,NE,2007,2007,3101,2,1,717.4318611,717.4318611,3507,NO,23.98,33.24,1,0.33,6106,115.152548,124.677112,134.562563,140.4935,I,Above,Flat,0,5701,Wood,28.60601041,0,0,,,,1,1,,0.03,nav,1,2007,2,, 7757,NJBF000077598,201 22ND STREET SO,Brigantine,NJ,39.39972516,-74.37950663,RES1,3001,,16,NE,1959,1959,3101,2,1,1951.963498,1951.963498,3507,NO,27.46,36.41,1,0.19,6106,115.222662,124.741477,134.635096,140.547326,I,Above,Hip,0,5701,Wood,31.93423901,0,0,,,,1,1,,0.03,nav,1,1959,2,, 7758,NJBF000077400,106 26TH STREET SO,Brigantine,NJ,39.39837881,-74.38381984,RES1,3001,,16,NE,1951,1951,3102,2,1,2233.737357,2233.737357,3507,NO,39.49,47.36,1,1.4,6106,115.148701,124.673909,134.55807,140.496598,I,Above,Gable,0,5701,Wood,43.42383625,0,0,,,,1,1,,0.03,nav,1,1951,2,, 7759,NJBF000077329,304 22ND STREET SO,Brigantine,NJ,39.39792473,-74.37851341,RES1,3001,,16,NE,1958,1958,3102,2,1,1758.427177,1758.427177,3507,NO,29.92,36.72,1,2.36,6106,115.262369,124.778218,134.675208,140.586166,I,Above,Gable,0,5701,Wood,33.32037693,0,0,,,,1,1,,0.03,nav,1,1958,2,, 7760,NJBF000075047,10 WHALERMAN COVE,Brigantine,NJ,39.38854125,-74.39974679,RES1,3001,,16,NE,1968,1968,3102,2,1,1083.623671,1083.623671,3507,NO,23.22,34.43,1,0.49,6106,114.926019,124.475993,134.328727,140.374703,I,Above,Gable,0,5701,Wood,28.82558983,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7761,NJBF000074272,,Brigantine,NJ,39.38567998,-74.40128922,RES1,3001,,NaN,NE,1969,0,3102,2,1,1408.489236,1408.489236,3507,NO,29.68,34.75,1,2.02,6110,114.925461,124.476578,134.32709,140.388824,I,Above,Hip,0,5701,Wood,32.21538819,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7762,NJBF000073330,5214 WATERVIEW DR,Brigantine,NJ,39.37990655,-74.40782199,RES1,3001,,16,NE,1975,1975,3103,2,1,1202.865686,1202.865686,3505,NO,34.2,39.46,3,5.53,6106,114.853223,124.41479,134.253324,140.364202,I,Above,Gable,0,5701,Wood,36.82996432,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7763,NJBF000074334,4617 SCHOONER RD,Brigantine,NJ,39.38594402,-74.39980834,RES1,3001,,43,NE,1977,1977,3102,2,2,1249.129914,1249.129914,3507,NO,32.58,40.54,1,2.92,6110,114.953457,124.501385,134.355023,140.408599,I,Above,Gable,0,5701,Wood,36.55853079,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7764,NJBF000076427,,Brigantine,NJ,39.39336319,-74.39374426,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4804.056683,4804.056683,3507,NO,34.24,48.27,1,2.4,6106,114.998126,124.538767,134.402672,140.405358,I,Above,Flat,0,5701,Wood,41.2569727,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7765,NJBF000073315,26 OCEAN DRIVE WEST,Brigantine,NJ,39.37976947,-74.40913168,RES1,3001,,17,NE,1975,2018,3103,2,1,2217.712998,2217.712998,3505,NO,35.74,45.03,3,-0.76,6106,114.827213,124.392003,134.227842,140.345514,I,Above,Gable,0,5701,Wood,40.38904969,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 7766,NJBF000073195,9 HARBOUR COURT,Brigantine,NJ,39.37883302,-74.40654941,RES1,3001,,16,NE,1978,1978,3103,1,1,1975.751664,1975.751664,3505,NO,23.22,32.83,3,8.95,6106,114.892184,124.449372,134.290888,140.398712,I,Above,Gable,0,5701,Wood,28.02462582,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 7767,NJBF000073205,36 OCEAN DRIVE WEST,Brigantine,NJ,39.37891392,-74.40857088,RES1,3001,,16,NE,1975,1975,3103,1,1,2105.159181,2105.159181,3505,NO,15.87,29.68,3,1.2,6106,114.848721,124.411177,134.248439,140.365969,I,Above,Hip,0,5701,Wood,22.77663352,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7768,NJBF000077261,402 19TH STREET SO,Brigantine,NJ,39.39753951,-74.37481112,RES1,3001,,20,NE,1997,1997,3102,3,1,3848.731398,3848.731398,3505,NO,49.71,64.24,3,4.18,6106,115.342179,124.851729,134.757827,140.64913,I,Above,Hip,0,5701,Wood,56.97473685,0,0,,,,1,1,,0.03,nav,1,1997,3,, 7769,NJBF000074184,522 CASA DRIVE,Brigantine,NJ,39.38528599,-74.40285192,RES3B,3001,,33,ME,1980,1980,3301,2,1,5504.582097,5504.582097,3507,YES,36.42,44.97,1,2.51,6110,114.897158,124.4516,134.298877,140.369494,I,Above,Gable,0,5701,Wood,40.696166,0,0,,,,1,1,,0.35,nav,1,1980,2,, 7770,NJBF000076008,,Brigantine,NJ,39.39193199,-74.40918099,RES1,3001,,NaN,NE,1969,0,3103,6,1,2686.84097,2686.84097,3505,NO,96.02,105.48,3,5,6106,114.691873,124.265925,134.09667,140.177892,I,Above,Gable,0,5701,Wood,100.7461225,0,0,,,,1,1,,0.03,nav,1,1969,6,, 7771,NJBF000075844,14 BEACH COVE,Brigantine,NJ,39.39133833,-74.40218135,RES1,3001,,16,NE,1976,1976,3102,2,1,1862.808481,1862.808481,3507,YES,30.53,45.3,1,-0.78,6106,114.844678,124.402126,134.248268,140.298301,I,Above,Gable,0,5701,Wood,37.91247023,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 7772,NJBF000074903,4509 WHALERMAN RD,Brigantine,NJ,39.38813691,-74.39950513,RES1,3001,,16,NE,1968,1968,3102,1,1,1838.649051,1838.649051,3507,NO,14.99,23.44,1,-0.23,6110,114.935513,124.484619,134.338054,140.383955,I,Above,Gable,0,5701,Wood,19.21473943,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 7773,NJBF000075270,4 EXPLORER RD,Brigantine,NJ,39.38931014,-74.39998758,RES1,3001,,16,NE,1968,1968,3102,1,1,2112.201796,2112.201796,3507,NO,10.46,21.24,1,-0.45,6106,114.912548,124.463657,134.315531,140.360549,I,Above,Gable,0,5701,Wood,15.85022524,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7774,NJBF000075222,100 45TH STREET SO,Brigantine,NJ,39.38910428,-74.39705073,RES1,3001,,16,NE,1968,1968,3102,2,1,2934.845081,2934.845081,3507,YES,32.01,42.19,1,0.2,6106,114.975981,124.520423,134.378868,140.409767,I,Above,Gable,0,5701,Wood,37.09650173,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 7775,NJBF000074977,7 45TH COVE,Brigantine,NJ,39.38834742,-74.39640268,RES1,3001,,16,NE,1968,1968,3102,2,1,846.5738266,846.5738266,3507,NO,26.6,34.87,1,1.32,6110,114.997801,124.540199,134.400397,140.430082,I,Above,Gable,0,5701,Wood,30.73425246,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7776,NJBF000074343,,Brigantine,NJ,39.38597987,-74.39388659,RES1,3001,,NaN,NE,1969,0,3102,2,1,2318.691301,2318.691301,3507,NO,40.26,54.37,1,2.74,6106,115.076366,124.611116,134.47782,140.500967,I,Above,Hip,0,5701,Wood,47.31720944,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7777,NJBF000073275,5209 SEA SPRAY RD,Brigantine,NJ,39.37949787,-74.40685415,RES1,3001,,16,NE,1975,1975,3103,2,1,2273.807435,2273.807435,3505,NO,32.43,46.48,3,3.21,6106,114.878217,124.436893,134.277579,140.384929,I,Above,Gable,0,5701,Wood,39.45673476,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7778,NJBF000074939,,Brigantine,NJ,39.38824602,-74.3926684,RES3D,3001,,NaN,ME,1969,0,3301,2,1,2357.893859,2357.893859,3507,NO,34.46,45.04,1,0.77,6110,115.076506,124.6108,134.479389,140.490109,I,Above,Gable,0,NaN,Wood,39.74813813,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7779,NJBF000074786,315 44TH STREET SO,Brigantine,NJ,39.38777428,-74.39272706,RES1,3001,,17,NE,2017,2017,3102,3,1,918.6318054,918.6318054,3507,NO,55.73,68.01,1,1.15,6110,115.080509,124.614492,134.483132,140.495416,I,Above,Gable,0,5701,Wood,61.87083683,0,1.1,,,,1,1,,0.35,nav,1,2017,3,, 7780,NJBF000074877,,Brigantine,NJ,39.38805686,-74.39051189,RES1,3001,,NaN,NE,1969,0,3102,2,1,2004.272382,2004.272382,3507,NO,35.04,43.14,1,2.72,6110,115.123292,124.652911,134.526443,140.526347,I,Above,Gable,0,5701,Wood,39.08835623,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7781,NJBF000074984,139 44TH STREET SO,Brigantine,NJ,39.38836795,-74.39418925,RES1,3001,,16,NE,1976,1976,3102,2,1,1589.557124,1589.557124,3507,YES,36.27,48.66,1,1.65,6106,115.043586,124.581218,134.446345,140.464627,I,Above,Gable,0,5701,Wood,42.4642221,0,0,,,,1,1,,0.03,nav,1,1976,2,, 7782,NJBF000073075,56 OCEAN DRIVE WEST,Brigantine,NJ,39.37733301,-74.40720206,RES1,3001,,20,NE,1975,1975,3103,3,1,2334.157825,2334.157825,3505,NO,39.97,50.93,3,2.62,6106,114.895563,124.452746,134.293293,140.408831,I,Above,Hip,0,5701,Wood,45.45198932,0,1.2,,,,1,1,,0.03,nav,1,1975,3,, 7783,NJBF000074560,,Brigantine,NJ,39.3869854,-74.40004882,RES1,3001,,NaN,NE,1969,0,3102,2,1,1389.623427,1389.623427,3507,NO,26.69,39.22,1,2.92,6112,114.936886,124.486271,134.338981,140.390832,I,Above,Gable,0,5701,Wood,32.95452632,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7784,NJBF000073589,5103 HARBOR BEACH BLVD,Brigantine,NJ,39.38185361,-74.40541807,RES1,3001,,17,NE,1987,1987,3101,2,1,1241.230926,1241.230926,3507,NO,38.3,43.64,1,1.68,6106,114.881765,124.439241,134.282232,140.375516,I,Above,Gable,0,5701,Wood,40.96981321,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 7785,NJBF000075418,4410 HARBOR BEACH BLVD,Brigantine,NJ,39.38978709,-74.39707438,RES1,3001,,16,NE,1968,1968,3102,1,1,2565.507991,2565.507991,3507,NO,14.34,25.27,1,1.04,6106,114.968,124.513036,134.371136,140.400281,I,Above,Flat,0,5701,Wood,19.80111211,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7786,NJBF000074715,9 HUDSON COVE,Brigantine,NJ,39.38754017,-74.39657952,RES1,3001,,15,NE,1968,1968,3102,1,1,1587.808368,1587.808368,3507,NO,14.72,23.78,1,2.61,6112,115.003035,124.545124,134.405252,140.438049,I,Above,Gable,0,5701,Wood,19.249681,0,0,,,,1,1,,0.35,nav,1,1968,1,, 7787,NJBF000077901,210 16TH STREET SO,Brigantine,NJ,39.40154067,-74.37501324,RES1,3001,,16,NE,1962,1962,3101,2,1,1155.105207,1155.105207,3507,NO,24.88,37.84,1,2.93,6106,115.294981,124.807991,134.711364,140.59489,I,Above,Hip,0,5701,Wood,31.36438604,0,0,,,,1,1,,0.03,nav,1,1962,2,, 7788,NJBF000074255,7 BEACON LANE,Brigantine,NJ,39.38560626,-74.3978971,RES3C,3001,,37,ME,1978,1978,3301,3,1,6146.92937,6146.92937,3507,YES,55.6,65.07,1,-0.29,6106,114.997077,124.540345,134.398297,140.443147,I,Above,Gable,0,5701,Wood,60.33725711,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 7789,NJBF000077999,344 10TH STREET SO,Brigantine,NJ,39.40221821,-74.36911486,RES1,3001,,17,NE,1985,1985,3102,3,1,786.5573916,786.5573916,3502,NO,53.3,60,5,3.31,6110,115.407668,124.912647,134.830068,140.678982,I,Above,Gable,0,5701,Wood,56.65020459,0,0,,,,1,1,,0.35,nav,1,1985,3,, 7790,NJBF000081103,7 11TH STREET NO,Brigantine,NJ,39.41754666,-74.36179147,RES1,3001,,16,NE,1974,1974,3102,1,1,1363.767115,1363.767115,3507,NO,10.27,18.61,1,-0.52,6106,115.394458,124.900172,134.824335,140.602525,I,Above,Gable,0,5701,Wood,14.44050966,0,0,,,,1,1,,0.03,nav,1,1974,1,, 7791,NJBF000077717,108 22ND STREET SO,Brigantine,NJ,39.40050939,-74.3809121,RES1,3001,,16,NE,1952,1952,3101,1,1,1200.141538,1200.141538,3507,NO,15.28,26.02,1,-1,6106,115.185512,124.707167,134.596982,140.514979,I,Above,Gable,0,5701,Wood,20.64974672,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7792,NJBF000077842,208 17TH STREET SO,Brigantine,NJ,39.4011836,-74.3758615,RES1,3001,,16,NE,1924,1924,3101,2,1,1954.047871,1954.047871,3507,NO,21.78,28.33,1,0.34,6106,115.281512,124.795562,134.697093,140.586091,I,Above,Hip,0,5701,Wood,25.0537502,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 7793,NJBF000077347,302 22ND STREET SO,Brigantine,NJ,39.39804816,-74.37864848,RES1,3001,,19,NE,2008,2008,3102,3,1,2804.337228,2804.337228,3507,NO,36.25,43.8,1,-0.51,6106,115.258279,124.774446,134.671048,140.582462,I,Above,Hip,0,5701,Wood,40.02599098,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 7794,NJBF000073611,39 COQUILLE BEACH DR,Brigantine,NJ,39.38201131,-74.40129905,RES3B,3001,,37,ME,1982,1982,3301,3,1,9450.432185,9450.432185,3507,NO,39.28,47.09,1,2.14,6106,114.966308,124.513935,134.365691,140.437952,I,Above,Hip,0,5701,Wood,43.18730693,0,1.1,,,,1,1,,0.03,nav,1,1982,3,, 7795,NJBF000074490,115 HUDSON DR,Brigantine,NJ,39.38666897,-74.39599083,RES1,3001,,16,NE,1968,1968,3102,2,1,1510.47927,1510.47927,3507,NO,27.42,34.41,1,0.03,6110,115.024949,124.564954,134.426724,140.458891,I,Above,Flat,0,5701,Wood,30.91487125,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7796,NJBF000074446,4607 HARBOR BEACH BLVD,Brigantine,NJ,39.38645997,-74.39827982,RES1,3001,,43,NE,1976,1976,3102,2,2,1339.705764,1339.705764,3507,NO,28.23,39.99,1,-0.88,6110,114.979598,124.524513,134.381306,140.425727,I,Above,Hip,0,5701,Wood,34.1070613,0,0,,,,1,1,,0.35,nav,1,1976,2,, 7797,NJBF000075678,281 40TH STREET SO,Brigantine,NJ,39.39068775,-74.39152298,RES1,3001,,17,NE,1952,1952,3102,1,1,1748.662422,1748.662422,3507,NO,21.14,35.82,1,2.51,6106,115.073329,124.607382,134.477549,140.475858,I,Above,Gable,0,5701,Wood,28.47909084,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7798,NJBF000078270,250 9TH STREET SO,Brigantine,NJ,39.40429431,-74.36969311,RES1,3001,,16,NE,1980,1980,3102,2,1,1079.627919,1079.627919,3505,NO,28.12,38.76,3,1.34,6106,115.373769,124.881106,134.795801,140.643686,I,Above,Gable,0,5701,Wood,33.43869542,0,0,,,,1,1,,0.03,nav,1,1980,2,, 7799,NJBF000078247,901 W BRIGANTINE AVE,Brigantine,NJ,39.40407756,-74.36977311,COM1,3003,737,NaN,ME,1930,0,3401,1,1,8174.841874,8174.841874,3507,NO,12.4,17.96,1,-0.09,6106,115.374446,124.881737,134.796373,140.645158,I,Above,Flat,0,NaN,Wood,15.18129512,0,0,,,,1,1,,0.03,nav,1,1930,1,, 7800,NJBF000073818,,Brigantine,NJ,39.38336785,-74.40337214,RES3D,3001,,NaN,ME,1969,0,3301,1,1,14372.97421,14372.97421,3507,NO,12.33,20.32,1,0.84,6106,114.90767,124.461608,134.308458,140.387198,I,Above,Gable,0,NaN,Wood,16.32520218,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7801,NJBF000073417,5206 HARBOR BEACH BLVD,Brigantine,NJ,39.3805661,-74.40742698,RES1,3001,,16,NE,1975,1975,3103,2,1,1658.790278,1658.790278,3505,YES,29.62,38.85,3,-1.44,6110,114.85408,124.415311,134.254471,140.361441,I,Above,Gable,0,5701,Wood,34.23266444,0,0,,,,1,1,,0.35,nav,1,1975,2,, 7802,NJBF000075874,,Brigantine,NJ,39.39145854,-74.38820475,RES1,3001,,NaN,NE,1969,0,3102,2,1,1949.571434,1949.571434,3507,NO,29.87,37.52,1,-0.17,6106,115.133492,124.661553,134.538958,140.517861,I,Above,Gable,0,5701,Wood,33.69104774,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7803,NJBF000073215,33 OCEAN DRIVE WEST,Brigantine,NJ,39.379031,-74.40800449,RES1,3001,,20,NE,2008,2008,3103,3,1,2170.729154,2170.729154,3505,NO,36.49,44.12,3,3.53,6106,114.859328,124.420446,134.258858,140.373261,I,Above,Flat,0,5701,Wood,40.30421588,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 7804,NJBF000077357,400 18TH STREET SO,Brigantine,NJ,39.39808549,-74.37416264,RES1,3001,,21,NE,2008,2008,3102,3,1,1992.923645,1992.923645,3505,NO,51.23,63.15,3,-2.43,6106,115.349496,124.858495,134.765879,140.652322,I,Above,Hip,0,5701,Wood,57.19043479,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 7805,NJBF000076840,3725 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3950101,-74.39279469,RES1,3001,,17,NE,1965,1965,3102,2,1,2017.350841,2017.350841,3507,NO,24.42,38.29,1,-0.56,6106,114.999955,124.539778,134.405005,140.398553,I,Above,Hip,0,5701,Wood,31.35335971,0,0,,,,1,1,,0.03,nav,1,1965,2,, 7806,NJBF000075654,77 LAGOON BLVD,Brigantine,NJ,39.39062285,-74.39795459,RES1,3001,,18,NE,2008,2008,3102,3,1,2552.191754,2552.191754,3507,NO,39.43,48.11,1,0.51,6106,114.940519,124.488105,134.34388,140.375149,I,Above,Gable,0,5701,Wood,43.77015114,0,1.2,,,,1,1,,0.03,nav,1,2008,3,, 7807,NJBF000073667,,Brigantine,NJ,39.38235945,-74.40281641,RES3B,3001,,NaN,ME,1982,0,3301,2,1,7198.199673,7198.199673,3507,NO,24.88,30.05,1,-0.95,6106,114.930636,124.482254,134.330636,140.409528,I,Above,Gable,0,5701,Wood,27.46627158,0,0,,,,1,1,,0.03,nav,1,1982,2,, 7808,NJBF000074368,4527 W BRIGANTINE AVE,Brigantine,NJ,39.38609358,-74.39670687,RES1,3001,,16,NE,1976,1976,3102,2,1,1321.546282,1321.546282,3507,NO,25.96,32.99,1,1.69,6110,115.016437,124.557493,134.417891,140.455309,I,Above,Hip,0,5701,Wood,29.47380494,0,0,,,,1,1,,0.35,nav,1,1976,2,, 7809,NJBF000077568,215 21ST STREET SO,Brigantine,NJ,39.399517,-74.3782255,RES1,3001,,18,NE,2014,2014,3101,2,1,1501.159604,1501.159604,3507,NO,26.55,33.09,1,0.83,6106,115.251114,124.767694,134.664498,140.570225,I,Above,Gable,0,5701,Wood,29.82229466,0,0,,,,1,1,,0.03,nav,1,2014,2,, 7810,NJBF000074100,39 BEACON LANE,Brigantine,NJ,39.38490304,-74.39692667,RES3C,3001,,37,ME,1978,1978,3301,3,1,7430.100811,7430.100811,3507,YES,47.59,57.86,1,2.03,6106,115.025134,124.565541,134.425879,140.467711,I,Above,Gable,0,5701,Wood,52.72740164,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 7811,NJBF000074574,34 LIGHTHOUSE DR,Brigantine,NJ,39.3870802,-74.40181488,RES1,3001,,43,NE,1981,1981,3102,2,2,1543.659009,1543.659009,3507,NO,39.77,52.74,1,0.85,6110,114.89896,124.452488,134.301309,140.361661,I,Above,Gable,0,5701,Wood,46.25208553,0,0,,,,1,1,,0.35,nav,1,1981,2,, 7812,NJBF000073462,10 OCEAN DRIVE EAST,Brigantine,NJ,39.38091588,-74.40386622,RES1,3001,,16,NE,1975,1975,3101,1,1,1943.639746,1943.639746,3507,NO,17.25,25.55,1,1.17,6106,114.924899,124.477602,134.324191,140.412524,I,Above,Gable,0,5701,Wood,21.40222728,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7813,NJBF000080795,801 BOBBY JONES RD,Brigantine,NJ,39.41632899,-74.38144645,RES1,3001,,16,NE,1972,1972,3103,2,1,2088.983897,2088.983897,3505,NO,31.64,43.75,3,7.48,6106,115.010025,124.537935,134.414752,140.300881,I,Above,Hip,0,5701,Wood,37.69273093,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7814,NJBF000078288,200 11TH STREET SO,Brigantine,NJ,39.40444665,-74.37202725,RES1,3001,,16,NE,1964,1964,3102,2,1,505.5931777,505.5931777,3505,YES,26.68,40.82,3,4.99,6106,115.324766,124.835424,134.744268,140.604951,I,Above,Flat,0,5701,Wood,33.75052829,0,0,,,,1,1,,0.03,nav,1,1964,2,, 7815,NJBF000076090,127 SHIPMASTER DRIVE,Brigantine,NJ,39.39220308,-74.40349316,RES1,3001,,20,NE,1991,1991,3102,3,1,2735.199172,2735.199172,3507,YES,34.36,47.17,1,1.5,6106,114.807924,124.368862,134.21172,140.265592,I,Above,Flat,0,5701,Wood,40.76288145,0,1.2,,,,1,1,,0.03,nav,1,1991,3,, 7816,NJBF000077878,,Brigantine,NJ,39.40140556,-74.37298352,RES4,3001,,NaN,ME,1969,0,3401,3,1,29095.4786,29095.4786,3507,NO,42.17,49.51,1,-0.81,6106,115.33775,124.847627,134.756021,140.628544,I,Above,Flat,0,NaN,Wood,45.84088187,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7817,NJBF000077830,305 15TH STREET SO,Brigantine,NJ,39.40109099,-74.37291814,RES1,3001,,19,NE,2011,2011,3102,2,1,1334.64325,1334.64325,3502,NO,46.14,57.48,5,11.25,6106,115.342471,124.852011,134.760751,140.633587,I,Above,Gable,0,5701,Wood,51.80927969,0,0,,,,1,1,,0.03,nav,1,2011,2,, 7818,NJBF000077799,1219 OCEAN AVE,Brigantine,NJ,39.400929,-74.3705765,RES1,3001,,16,NE,1962,1962,3102,2,1,962.6632396,962.6632396,3502,NO,34.46,42.22,5,11.11,6110,115.391839,124.897838,134.812414,140.672375,I,Above,Hip,0,5701,Wood,38.33962703,0,0,,,,1,1,,0.35,nav,1,1962,2,, 7819,NJBF000077162,213 27TH STREET SO,Brigantine,NJ,39.396942,-74.3827415,RES1,3001,,16,NE,1956,1956,3102,2,1,1571.291169,1571.291169,3507,YES,39.29,45.02,1,2.62,6106,115.186332,124.70863,134.596107,140.532319,I,Above,Hip,0,5701,Wood,42.15255939,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 7820,NJBF000076393,4321 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39324103,-74.40634302,RES1,3001,,43,NE,1954,1954,3103,2,2,1452.228336,1452.228336,3505,NO,37.84,45.56,3,-0.11,6106,114.737201,124.305213,134.141363,140.205657,I,Above,Hip,0,5701,Wood,41.69774931,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7821,NJBF000075913,3707 W BRIGANTINE AVE,Brigantine,NJ,39.39160776,-74.38975176,RES1,3001,,47,NE,1950,1950,3102,2,2,2014.72359,2014.72359,3507,NO,28.63,37.78,1,0.45,6106,115.09989,124.631135,134.50493,140.491599,I,Above,Hip,0,5701,Wood,33.20564261,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7822,NJBF000076159,402 31ST STREET SO,Brigantine,NJ,39.39243538,-74.38324208,RES1,3001,,20,NE,2007,2007,3102,3,1,1782.637191,1782.637191,3507,NO,51.04,59.82,1,0.17,6106,115.225087,124.744569,134.633049,140.582895,I,Above,Hip,0,5701,Wood,55.43224224,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 7823,NJBF000074701,122 HUDSON DR,Brigantine,NJ,39.38750282,-74.39572088,RES1,3001,,16,NE,1968,1968,3102,1,1,1698.934606,1698.934606,3507,NO,16.25,24.79,1,-0.61,6110,115.021316,124.561488,134.423538,140.452043,I,Above,Gable,0,5701,Wood,20.52269963,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 7824,NJBF000074671,,Brigantine,NJ,39.38740899,-74.40165273,RES1,3001,,NaN,NE,1969,0,3102,2,1,1364.81108,1364.81108,3507,NO,36.29,42.95,1,0.99,6106,114.898712,124.452131,134.301172,140.359787,I,Above,Gable,0,5701,Wood,39.62124094,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7825,NJBF000077277,2703 REVERE BLVD,Brigantine,NJ,39.39763207,-74.38417847,RES1,3001,,18,NE,2007,2007,3102,3,1,3266.045265,3266.045265,3507,NO,41.83,56.71,1,1.58,6106,115.149379,124.674708,134.558439,140.500664,I,Above,Hip,0,5701,Wood,49.26788947,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 7826,NJBF000076023,316 35TH STREET SO,Brigantine,NJ,39.391985,-74.3875925,RES1,3001,,43,NE,1952,1952,3102,2,2,1368.423917,1368.423917,3507,NO,26.33,39.53,1,2.78,6106,115.140383,124.667698,134.54628,140.520598,I,Above,Gable,0,5701,Wood,32.93379116,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7827,NJBF000074577,121 HUDSON DR,Brigantine,NJ,39.3870933,-74.39552501,RES1,3001,,16,NE,1968,1968,3102,2,1,1533.002297,1533.002297,3507,NO,26.46,32.96,1,1.72,6110,115.029936,124.569309,134.431953,140.460569,I,Above,Gable,0,5701,Wood,29.70862879,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7828,NJBF000073579,1 OCEAN DRIVE EAST,Brigantine,NJ,39.38174211,-74.40405895,RES1,3001,,16,NE,1975,1975,3101,1,1,2064.821308,2064.821308,3507,NO,17.34,30.5,1,2.17,6106,114.911533,124.465554,134.311474,140.398359,I,Above,Hip,0,5701,Wood,23.92095519,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 7829,NJBF000074362,4529 W BRIGANTINE AVE,Brigantine,NJ,39.38608014,-74.39694701,RES1,3001,,16,NE,1968,1968,3102,2,1,1442.797122,1442.797122,3507,NO,26.24,40.67,1,1.5,6106,115.011595,124.553173,134.413045,140.451732,I,Above,Gable,0,5701,Wood,33.45439404,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7830,NJBF000073338,5200 WATERVIEW DR,Brigantine,NJ,39.37994034,-74.40624055,RES1,3001,,16,NE,1975,1975,3101,2,1,1823.827749,1823.827749,3507,NO,40.66,53.87,1,2,6106,114.88609,124.443681,134.285527,140.388536,I,Above,Flat,0,5701,Wood,47.26525322,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7831,NJBF000073224,5210 SEA SPRAY RD,Brigantine,NJ,39.37909769,-74.40676349,RES1,3001,,16,NE,1975,1975,3103,2,1,1213.685418,1213.685418,3505,NO,24.76,34.71,3,1.66,6106,114.884672,124.44269,134.283682,140.391776,I,Above,Gable,0,5701,Wood,29.734425,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7832,NJBF000074348,25 LIGHTHOUSE DR,Brigantine,NJ,39.38600732,-74.40138629,RES1,3001,,43,NE,1981,1981,3102,2,2,1487.2275,1487.2275,3507,NO,32.81,39.47,1,0.18,6110,114.919803,124.471432,134.321609,140.382894,I,Above,Hip,0,5701,Wood,36.13800404,0,0,,,,1,1,,0.35,nav,1,1981,2,, 7833,NJBF000075262,343 40TH STREET SO,Brigantine,NJ,39.389284,-74.3896163,RES1,3001,,16,NE,1940,1940,3102,1,1,766.5851569,766.5851569,3507,NO,10.23,18.21,1,-0.8,6110,115.128263,124.6572,134.532289,140.524256,I,Above,Flat,0,5701,Wood,14.22035409,0,0,,,,1,1,,0.35,nav,1,1940,1,, 7834,NJBF000074158,4627 SCHOONER RD,Brigantine,NJ,39.3851325,-74.4009745,RES1,3001,,43,NE,1977,1977,3102,2,2,1575.964029,1575.964029,3507,NO,26.51,32.25,1,2.5,6110,114.938118,124.488012,134.33941,140.401137,I,Above,Gable,0,5701,Wood,29.37918308,0,0,,,,1,1,,0.35,nav,1,1977,2,, 7835,NJBF000074152,12 BEACON LANE,Brigantine,NJ,39.38512102,-74.39794764,RES3C,3001,,37,ME,1978,1978,3301,3,1,8389.049469,8389.049469,3507,YES,41.27,47.19,1,2.31,6106,115.001421,124.544345,134.402359,140.448817,I,Above,Gable,0,5701,Wood,44.2284431,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 7836,NJBF000073314,5110 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37975875,-74.40395901,RES1,3001,,19,NE,1990,1990,3101,2,1,1927.867362,1927.867362,3507,NO,28.24,35.84,1,1.75,6106,114.936053,124.487754,134.334483,140.42666,I,Above,Gable,0,5701,Wood,32.03831351,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 7837,NJBF000078074,353 9TH STREET SO,Brigantine,NJ,39.4027495,-74.36769,RES1,3001,,16,NE,1958,1958,3102,2,1,1240.604321,1240.604321,3502,YES,29.13,43.62,5,5.78,6110,115.430873,124.934334,134.85497,140.694619,I,Above,Flat,0,5701,Wood,36.37878961,0,0,,,,1,1,,0.35,nav,1,1958,2,, 7838,NJBF000074096,52 DELMAR DRIVE,Brigantine,NJ,39.3848912,-74.40240906,RES1,3001,,33,NE,1980,1980,3102,2,1,7339.009167,7339.009167,3507,YES,34.2,45.61,1,0.54,6110,114.910821,124.463865,134.312245,140.381807,I,Above,Flat,0,5701,Wood,39.90489504,0,0,,,,1,1,,0.35,nav,1,1980,2,, 7839,NJBF000077414,1805 OCEAN AVE,Brigantine,NJ,39.39849331,-74.3750185,RES1,3001,,19,NE,2003,2003,3102,3,1,3348.853277,3348.853277,3507,NO,39.67,49.26,1,1.55,6106,115.327643,124.838321,134.743415,140.633736,I,Above,Flat,0,5701,Wood,44.46448639,0,1.2,,,,1,1,,0.03,nav,1,2003,3,, 7840,NJBF000075833,115 SHIPMASTER DRIVE,Brigantine,NJ,39.39130775,-74.40306319,RES1,3001,,18,NE,1992,1992,3102,2,1,2752.878233,2752.878233,3507,NO,38.14,51.12,1,-0.64,6106,114.826596,124.386024,134.230256,140.284623,I,Above,Gable,0,5701,Wood,44.62895389,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 7841,NJBF000077804,201 19TH STREET SO,Brigantine,NJ,39.40094646,-74.37727872,RES1,3001,,17,NE,2017,2017,3101,2,1,1456.708312,1456.708312,3507,NO,25.81,36.78,1,2.09,6106,115.255121,124.771209,134.669459,140.566778,I,Above,Gable,0,5701,Wood,31.29146738,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 7842,NJBF000078280,101 13TH STREET SO,Brigantine,NJ,39.40439795,-74.37369836,RES1,3001,,18,NE,2006,2006,3102,3,1,527.4131663,527.4131663,3505,NO,59.18,72.67,3,4.3,6106,115.29132,124.804316,134.709099,140.579169,I,Above,Hip,0,5701,Wood,65.92828384,0,0,,,,1,1,,0.03,nav,1,2006,3,, 7843,NJBF000076506,,Brigantine,NJ,39.39369228,-74.40233601,RES3D,3001,,NaN,E,1969,0,3303,4,1,5553.822286,5553.822286,3507,NO,49.66,60.93,1,1.9,6106,114.815998,124.375163,134.219789,140.263919,I,Above,Flat,0,NaN,Wood,55.29577079,0,0,,,,1,1,,0.03,nav,1,1969,4,, 7844,NJBF000076491,253 34TH STREET SO,Brigantine,NJ,39.39361034,-74.38762639,RES1,3001,,27,NE,1950,1950,3102,1,2,1595.652843,1595.652843,3507,NO,13.66,20.82,1,0.25,6106,115.121935,124.650646,134.528401,140.49879,I,Above,Gable,0,5701,Wood,17.23828011,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7845,NJBF000073190,6 HARBOUR COURT,Brigantine,NJ,39.37880299,-74.407334,RES1,3001,,17,NE,1975,1975,3103,2,1,1614.212547,1614.212547,3505,NO,33.8,47.6,3,1.57,6106,114.876017,124.435173,134.275051,140.386845,I,Above,Gable,0,5701,Wood,40.70013326,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 7846,NJBF000077646,201 21ST STREET SO,Brigantine,NJ,39.40006808,-74.37874437,RES1,3001,,16,NE,1959,1959,3101,1,1,2418.833991,2418.833991,3507,NO,18.76,29.12,1,1.43,6106,115.23459,124.752403,134.647649,140.554948,I,Above,Gable,0,5701,Wood,23.94144054,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 7847,NJBF000076688,,Brigantine,NJ,39.3943746,-74.39329567,COM1,3001,,NaN,ME,1969,0,3401,3,1,2946.721968,2946.721968,3507,NO,39.2,45.33,1,-0.05,6106,114.996444,124.536859,134.401274,140.399024,I,Above,Flat,0,NaN,Wood,42.26689379,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7848,NJBF000076436,214 36TH STREET SO,Brigantine,NJ,39.39339333,-74.39047008,RES1,3001,,43,NE,1952,1952,3102,2,2,1586.337697,1586.337697,3507,NO,37.81,47.22,1,0.64,6106,115.065564,124.599642,134.47097,140.45678,I,Above,Hip,0,5701,Wood,42.51249302,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 7849,NJBF000076726,4173 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39455768,-74.4023514,RES1,3001,,17,NE,1954,2018,3102,2,1,1517.25029,1517.25029,3507,NO,26.15,31.21,1,0.81,6106,114.806384,124.366026,134.210162,140.251929,I,Above,Gable,0,5701,Wood,28.68143195,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7850,NJBF000075615,318 38TH STREET SO,Brigantine,NJ,39.3905061,-74.38933457,RES1,3001,,43,NE,1950,1950,3102,2,2,1209.623671,1209.623671,3507,NO,26.6,33.51,1,1.22,6106,115.120607,124.650078,134.525304,140.512624,I,Above,Hip,0,5701,Wood,30.05572955,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7851,NJBF000075996,403 33RD STREET SO,Brigantine,NJ,39.39187482,-74.3843665,RES1,3001,,43,NE,1978,1978,3102,2,2,1124.585371,1124.585371,3507,NO,28.75,43.26,1,2.17,6106,115.208098,124.729162,134.615264,140.572581,I,Above,Flat,0,5701,Wood,36.00686935,0,0,,,,1,1,,0.03,nav,1,1978,2,, 7852,NJBF000075257,10 EXPLORER RD,Brigantine,NJ,39.38925776,-74.40062481,RES1,3001,,16,NE,1968,1968,3102,2,1,2268.964677,2268.964677,3507,NO,30.58,43.84,1,-0.67,6106,114.899835,124.452338,134.302839,140.351149,I,Above,Gable,0,5701,Wood,37.21142662,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7853,NJBF000075363,,Brigantine,NJ,39.38964244,-74.39522646,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2063.049855,2063.049855,3507,NO,13.8,26.45,1,2.4,6106,115.008008,124.548941,134.411221,140.431391,I,Above,Flat,0,5701,Wood,20.12266556,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7854,NJBF000075272,4417 WHALERMAN RD,Brigantine,NJ,39.38932076,-74.39949467,RES1,3001,,16,NE,1968,1968,3102,2,1,1666.458843,1666.458843,3507,YES,29.28,40.65,1,0.42,6106,114.922704,124.472717,134.32567,140.368213,I,Above,Gable,0,5701,Wood,34.96553793,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7855,NJBF000075813,9 ATLANTIS COVE,Brigantine,NJ,39.39123122,-74.400369,RES1,3001,,18,NE,2002,2002,3102,3,1,2881.895685,2881.895685,3507,NO,57.32,63.03,1,2.63,6106,114.883623,124.436946,134.28711,140.328629,I,Above,Gable,0,5701,Wood,60.17365632,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 7856,NJBF000075223,104 45TH STREET SO,Brigantine,NJ,39.38910464,-74.39648887,RES1,3001,,16,NE,1968,1968,3102,2,1,1106.363826,1106.363826,3507,NO,38.88,50.54,1,0.78,6106,114.98766,124.530878,134.390571,140.418622,I,Above,Flat,0,5701,Wood,44.70719651,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7857,NJBF000076006,238 38TH STREET SO,Brigantine,NJ,39.39191461,-74.39141437,RES1,3001,,43,NE,1960,1960,3102,2,2,1544.948264,1544.948264,3507,NO,27.9,37.46,1,0.85,6106,115.062149,124.596978,134.466846,140.461381,I,Above,Gable,0,5701,Wood,32.6769222,0,0,,,,1,1,,0.03,nav,1,1960,2,, 7858,NJBF000075583,3 BEACH COVE,Brigantine,NJ,39.39039557,-74.40163822,RES1,3001,,16,NE,1974,1974,3102,2,1,3367.660057,3367.660057,3507,NO,31.8,41.35,1,2.91,6106,114.866259,124.421862,134.269634,140.319698,I,Above,Hip,0,5701,Wood,36.57442448,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 7859,NJBF000075250,323 41ST STREET SO,Brigantine,NJ,39.38922925,-74.39077571,RES1,3001,,43,NE,1964,1964,3102,2,2,1184.132016,1184.132016,3507,NO,22.83,36.18,1,-0.86,6110,115.104858,124.636111,134.508584,140.506809,I,Above,Hip,0,5701,Wood,29.50361555,0,0,,,,1,1,,0.35,nav,1,1964,2,, 7860,NJBF000074836,4512 PRIVATEER RD,Brigantine,NJ,39.38791589,-74.39839472,RES1,3001,,16,NE,1968,1968,3102,1,1,1839.773663,1839.773663,3507,NO,17.34,24,1,1.36,6106,114.961086,124.507521,134.363487,140.404441,I,Above,Hip,0,5701,Wood,20.66948677,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7861,NJBF000076414,231 36TH STREET SO,Brigantine,NJ,39.39330111,-74.38969739,RES1,3001,,16,NE,1952,1952,3102,2,1,1008.366174,1008.366174,3507,NO,26.86,32.41,1,-0.49,6106,115.082542,124.615027,134.488168,140.470197,I,Above,Flat,0,5701,Wood,29.63685511,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 7862,NJBF000076097,209 39TH STREET SO,Brigantine,NJ,39.3922115,-74.392352,RES1,3001,,16,NE,1950,1950,3102,1,1,884.0415387,884.0415387,3507,NO,15.9,23.34,1,0.36,6106,115.039485,124.576447,134.444051,140.442652,I,Above,Gable,0,5701,Wood,19.62012949,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7863,NJBF000075342,4414 WHALERMAN RD,Brigantine,NJ,39.38956692,-74.39904581,RES1,3001,,16,NE,1968,1968,3102,1,1,1630.78879,1630.78879,3507,NO,20.06,31.47,1,0.72,6106,114.929362,124.478562,134.332396,140.372022,I,Above,Gable,0,5701,Wood,25.76380534,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7864,NJBF000076099,220 38TH STREET SO,Brigantine,NJ,39.39221358,-74.3917667,RES1,3001,,14,NE,1949,1949,3102,1,1,957.6332401,957.6332401,3507,NO,19.07,29.76,1,1.27,6106,115.051576,124.587353,134.456282,140.451863,I,Above,Hip,0,5701,Wood,24.41493616,0,0,,,,1,1,,0.03,nav,1,1949,1,, 7865,NJBF000075012,4507 PRIVATEER RD,Brigantine,NJ,39.38843826,-74.39858604,RES1,3001,,16,NE,1968,1968,3102,2,1,1001.952147,1001.952147,3507,NO,24.01,36.18,1,-0.59,6106,114.951351,124.498642,134.353973,140.394437,I,Above,Hip,0,5701,Wood,30.09306238,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7866,NJBF000075069,33 SHIPMASTER DR,Brigantine,NJ,39.38862456,-74.40147246,RES1,3001,,16,NE,1970,1970,3102,1,1,1948.155664,1948.155664,3507,NO,15.17,25.9,1,0.22,6106,114.889106,124.443059,134.291983,140.346251,I,Above,Gable,0,5701,Wood,20.53412236,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 7867,NJBF000075442,4410 PRIVATEER RD,Brigantine,NJ,39.38988635,-74.39820019,RES1,3001,,16,NE,1968,1968,3102,2,1,1018.088244,1018.088244,3507,NO,34.64,40.44,1,1.43,6106,114.943484,124.491057,134.346619,140.381142,I,Above,Gable,0,5701,Wood,37.53822405,0,0,,,,1,1,,0.03,nav,1,1968,2,, 7868,NJBF000075518,4001 W BRIGANTINE AVE,Brigantine,NJ,39.39015667,-74.39140297,RES1,3001,,43,NE,1955,1955,3102,1,2,1557.034597,1557.034597,3507,NO,20.11,26.44,1,2.84,6106,115.081648,124.615005,134.485672,140.484748,I,Above,Hip,0,5701,Wood,23.27525408,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7869,NJBF000075227,121 44TH STREET SO,Brigantine,NJ,39.38911837,-74.39530003,RES1,3001,,16,NE,1968,1968,3102,1,1,1953.958971,1953.958971,3507,NO,16.26,22.46,1,1.82,6106,115.012234,124.552893,134.415229,140.437193,I,Above,Hip,0,5701,Wood,19.35608751,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 7870,NJBF000077636,2429 BAYSHORE AVE,Brigantine,NJ,39.40000135,-74.38391896,RES1,3001,,17,NE,1946,1946,3102,2,1,1286.818181,1286.818181,3507,NO,34.01,44.41,1,0.53,6106,115.129299,124.655717,134.538718,140.4739,I,Above,Gable,0,5701,Wood,39.2087959,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 7871,NJBF000076035,232 38TH STREET SO,Brigantine,NJ,39.39201337,-74.39151288,RES1,3001,,16,NE,1949,1949,3102,1,1,1387.820409,1387.820409,3507,NO,11.9,19.56,1,-0.02,6106,115.059029,124.594135,134.463734,140.458526,I,Above,Gable,0,5701,Wood,15.72944246,0,0,,,,1,1,,0.03,nav,1,1949,1,, 7872,NJBF000075652,270 40TH STREET SO,Brigantine,NJ,39.39062066,-74.39217402,RES1,3001,,16,NE,1953,1953,3102,1,1,1200.886087,1200.886087,3507,NO,14.4,19.97,1,-0.73,6106,115.060578,124.595911,134.464633,140.466498,I,Above,Hip,0,5701,Wood,17.18453233,0,0,,,,1,1,,0.03,nav,1,1953,1,, 7873,NJBF000075823,319 37TH STREET SO,Brigantine,NJ,39.39127525,-74.38841555,RES1,3001,,47,NE,1985,1985,3102,2,2,1456.033472,1456.033472,3507,NO,28.82,40.95,1,2.8,6106,115.131152,124.65947,134.53647,140.516959,I,Above,Gable,0,5701,Wood,34.88705392,0,0,,,,1,1,,0.03,nav,1,1985,2,, 7874,NJBF000075872,226 40TH STREET SO,Brigantine,NJ,39.39144368,-74.39331534,RES1,3001,,15,NE,1956,1956,3102,1,1,1138.590105,1138.590105,3507,NO,13.73,23.45,1,0.52,6106,115.027916,124.566265,134.432043,140.437616,I,Above,Hip,0,5701,Wood,18.59002852,0,0,,,,1,1,,0.03,nav,1,1956,1,, 7875,NJBF000075307,335 40TH STREET SO,Brigantine,NJ,39.38942599,-74.38982183,RES1,3001,,43,NE,1952,1952,3102,2,2,755.0045121,755.0045121,3507,NO,26.01,38.59,1,-0.5,6110,115.122432,124.651918,134.52648,140.519167,I,Above,Flat,0,5701,Wood,32.29750728,0,0,,,,1,1,,0.35,nav,1,1952,2,, 7876,NJBF000075642,285 40TH STREET SO,Brigantine,NJ,39.39058375,-74.39143829,RES1,3001,,43,NE,1953,1953,3102,2,1,1132.072281,1132.072281,3507,NO,29.37,37.24,1,2.94,6106,115.076231,124.610023,134.480428,140.478567,I,Above,Gable,0,5701,Wood,33.3060497,0,0,,,,1,1,,0.03,nav,1,1953,2,, 7877,NJBF000075619,,Brigantine,NJ,39.390532,-74.3913185,RES1,3001,,NaN,NE,1953,0,3102,2,1,1713.683911,1713.683911,3507,NO,21.67,27.51,1,-0.69,6106,115.079287,124.61279,134.48349,140.48114,I,Above,Flat,0,5701,Wood,24.59201889,0,0,,,,1,1,,0.03,nav,1,1953,2,, 7878,NJBF000076003,4432 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39190797,-74.40780571,RES1,3001,,18,NE,1987,1987,3103,2,1,1732.479999,1732.479999,3505,NO,23.43,29.07,3,-2.94,6106,114.720937,124.291706,134.1254,140.200375,I,Above,Hip,0,5701,Wood,26.24503546,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 7879,NJBF000076724,4177 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39454676,-74.40252166,RES1,3001,,15,NE,1950,1950,3102,2,1,791.2774692,791.2774692,3507,NO,31.87,43.59,1,0.76,6106,114.802939,124.362953,134.206719,140.24933,I,Above,Hip,0,5701,Wood,37.72850117,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 7880,NJBF000075686,3806 W BRIGANTINE AVE,Brigantine,NJ,39.39072506,-74.38977819,RES1,3001,,18,NE,2004,2004,3102,3,1,1570.237041,1570.237041,3507,NO,56.02,62.19,1,2.75,6106,115.109038,124.639588,134.513709,140.502796,I,Above,Flat,0,5701,Wood,59.1055335,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 7881,NJBF000075004,120 45TH STREET SO,Brigantine,NJ,39.38841855,-74.3948359,RES1,3001,,16,NE,1963,1963,3102,1,1,2167.042976,2167.042976,3507,NO,19.38,28.24,1,0.82,6110,115.029583,124.568647,134.432306,140.453783,I,Above,Gable,0,5701,Wood,23.81242661,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 7882,NJBF000076701,,Brigantine,NJ,39.39444669,-74.38922908,COM1,3001,,NaN,ME,1969,0,3401,1,1,3688.695888,3688.695888,3507,NO,17.14,27.7,1,2.81,6106,115.079757,124.612185,134.485842,140.462509,I,Above,Gable,0,NaN,Wood,22.41770042,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7883,NJBF000076047,22 BEACH COVE,Brigantine,NJ,39.39205075,-74.4022894,RES1,3001,,16,NE,1979,1979,3102,3,1,1728.46139,1728.46139,3507,NO,43.03,52.15,1,-0.43,6106,114.834692,124.392823,134.238382,140.286918,I,Above,Gable,0,5701,Wood,47.58901275,0,1.1,,,,1,1,,0.03,nav,1,1979,3,, 7884,NJBF000076088,,Brigantine,NJ,39.39220095,-74.39312299,RES1,3001,,NaN,NE,1969,0,3102,2,1,3569.262192,3569.262192,3507,NO,38.49,52.85,1,2.11,6106,115.023632,124.562163,134.428026,140.430614,I,Above,Gable,0,5701,Wood,45.67202672,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7885,NJBF000076054,206 39TH STREET SO,Brigantine,NJ,39.39208644,-74.3929532,RES1,3001,,47,NE,1955,1955,3102,3,2,1860.725145,1860.725145,3507,NO,36.76,50.47,1,2.89,6106,115.028409,124.566504,134.432806,140.434825,I,Above,Flat,0,5701,Wood,43.61528375,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 7886,NJBF000075381,319 SEASHELL LANE,Brigantine,NJ,39.38969643,-74.40399933,RES3B,3001,,35,ME,1984,1984,3301,2,1,4323.250301,4323.250301,3507,YES,28.71,41.38,1,-0.25,6106,114.824589,124.385128,134.228086,140.291571,I,Above,Gable,0,5701,Wood,35.0439213,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 7887,NJBF000077650,318 15TH STREET SO,Brigantine,NJ,39.40010825,-74.3727127,RES1,3001,,18,NE,2001,2001,3102,3,1,2480.175841,2480.175841,3505,NO,43.5,53.45,3,7.99,6106,115.357206,124.865669,134.775476,140.649299,I,Above,Hip,0,5701,Wood,48.47027894,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 7888,NJBF000074485,309 DOLPHIN DR,Brigantine,NJ,39.38664851,-74.39459912,RES1,3001,,19,NE,1997,1997,3102,3,1,1811.614147,1811.614147,3507,YES,33.12,45.37,1,-0.93,6110,115.05412,124.591062,134.455934,140.480976,I,Above,Gable,0,5701,Wood,39.24362746,0,0,,,,1,1,,0.35,nav,1,1997,3,, 7889,NJBF000075487,3713 OCEAN AVE,Brigantine,NJ,39.39003801,-74.38784585,RES1,3001,,17,NE,1952,1952,3102,2,1,1291.570678,1291.570678,3507,NO,25.82,31.47,1,-0.52,6110,115.156536,124.682624,134.561454,140.54208,I,Above,Flat,0,5701,Wood,28.6489259,0,0,,,,1,1,,0.35,nav,1,1952,2,, 7890,NJBF000076376,259 35TH STREET SO,Brigantine,NJ,39.39319525,-74.38832968,RES1,3001,,16,NE,1952,1952,3102,1,1,1400.25468,1400.25468,3507,NO,16.08,30.65,1,-0.83,6106,115.111929,124.641667,134.517996,140.493141,I,Above,Gable,0,5701,Wood,23.36311149,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7891,NJBF000075809,254 39TH STREET SO,Brigantine,NJ,39.39121744,-74.39167714,RES1,3001,,16,NE,1950,1950,3102,1,1,1863.276695,1863.276695,3507,NO,10.47,24.99,1,-0.77,6106,115.064339,124.599143,134.468729,140.466452,I,Above,Flat,0,5701,Wood,17.72799351,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7892,NJBF000077632,1800 W BRIGANTINE AVE,Brigantine,NJ,39.39997309,-74.37583929,RES1,3001,,16,NE,1930,1930,3102,2,1,2195.056688,2195.056688,3507,NO,33.35,40.14,1,2.69,6106,115.294946,124.808076,134.710364,140.601937,I,Above,Gable,0,5701,Wood,36.74486961,0,0,,,,1,1,,0.03,nav,1,1930,2,, 7893,NJBF000075834,348 35TH STREET SO,Brigantine,NJ,39.3913083,-74.38686825,RES1,3001,,18,NE,2004,2004,3102,3,1,1878.55809,1878.55809,3507,NO,44.51,53.49,1,0.79,6106,115.162751,124.688074,134.568621,140.5408,I,Above,Gable,0,5701,Wood,49.00018591,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 7894,NJBF000075801,323 37TH STREET SO,Brigantine,NJ,39.39118532,-74.38832538,RES1,3001,,16,NE,1952,1952,3102,1,1,1086.31164,1086.31164,3507,NO,14.21,19.3,1,1.23,6106,115.13402,124.66208,134.539328,140.519566,I,Above,Gable,0,5701,Wood,16.75554268,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7895,NJBF000077099,403 22ND STREET SO,Brigantine,NJ,39.39649854,-74.37658812,RES1,3001,,17,NE,1926,1926,3102,3,1,1556.062412,1556.062412,3507,NO,49.9,62.95,1,0.95,6106,115.31718,124.828689,134.731034,140.634633,I,Above,Gable,0,5701,Wood,56.42317457,0,1.1,,,,1,1,,0.03,nav,1,1926,3,, 7896,NJBF000076396,313 33RD STREET SO,Brigantine,NJ,39.39325543,-74.38594305,RES1,3001,,16,NE,1956,1956,3102,1,1,1004.96446,1004.96446,3507,NO,12.9,21.4,1,0.31,6106,115.160505,124.685733,134.567549,140.529904,I,Above,Gable,0,5701,Wood,17.14872354,0,0,,,,1,1,,0.03,nav,1,1956,1,, 7897,NJBF000076978,300 27TH STREET SO,Brigantine,NJ,39.39568118,-74.38215382,RES1,3001,,15,NE,1954,1954,3102,1,1,553.9780925,553.9780925,3507,NO,14.7,27.55,1,2.3,6106,115.212036,124.732326,134.621833,140.557905,I,Above,Gable,0,5701,Wood,21.12667689,0,0,,,,1,1,,0.03,nav,1,1954,1,, 7898,NJBF000074683,11 SHIPMASTER DRIVE,Brigantine,NJ,39.38744131,-74.3989606,RES1,3001,,16,NE,1968,1968,3102,2,1,1725.230008,1725.230008,3507,NO,37.64,45.76,1,0.11,6110,114.954536,124.501841,134.356754,140.401876,I,Above,Flat,0,5701,Wood,41.70171549,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 7899,NJBF000076044,210 39TH STREET SO,Brigantine,NJ,39.3920435,-74.392803,RES1,3001,,43,NE,1955,1955,3102,2,3,761.9729665,761.9729665,3507,NO,26.12,32.14,1,1.88,6106,115.031986,124.569741,134.436402,140.437765,I,Above,Gable,0,5701,Wood,29.12905209,0,0,,,,1,1,,0.03,nav,1,1955,2,, 7900,NJBF000078204,320 8TH STREET SO,Brigantine,NJ,39.40362876,-74.36801002,COM1,3001,,16,ME,1960,1960,3401,1,1,1677.292478,1677.292478,3507,NO,13.08,21.1,1,2.18,6110,115.414977,124.919558,134.838852,140.678528,I,Above,Hip,0,NaN,Wood,17.0903506,0,0,,,,1,1,,0.35,nav,1,1960,1,, 7901,NJBF000077612,1905 W BRIGANTINE AVE,Brigantine,NJ,39.39981808,-74.3773076,RES1,3001,,17,NE,1958,1958,3101,2,1,3988.578617,3988.578617,3507,YES,38.72,52.89,1,2.65,6106,115.26662,124.781949,134.680784,140.580803,I,Above,Hip,0,5701,Wood,45.80184589,0,1.2,,,,1,1,,0.03,nav,1,1958,2,, 7902,NJBF000076165,,Brigantine,NJ,39.39245722,-74.39438143,RES3C,3001,,NaN,ME,1969,0,3301,1,1,5553.82842,5553.82842,3507,NO,16.72,24,1,0.33,6106,114.994765,124.536079,134.398985,140.407306,I,Above,Flat,0,5701,Wood,20.35871658,0,0,,,,1,1,,0.03,nav,1,1969,1,, 7903,NJBF000078220,247 11TH STREET SO,Brigantine,NJ,39.40378511,-74.37086366,RES1,3001,,16,NE,1944,1944,3102,2,1,1376.529225,1376.529225,3505,YES,32.48,46.85,3,0.64,6106,115.355426,124.864008,134.776139,140.631692,I,Above,Gable,0,5701,Wood,39.66600374,0,1.1,,,,1,1,,0.03,nav,1,1944,2,, 7904,NJBF000075812,238 40TH STREET SO,Brigantine,NJ,39.39123034,-74.39299585,RES1,3001,,16,NE,1949,1949,3102,1,1,732.1340248,732.1340248,3507,NO,15.39,23.23,1,1.22,6106,115.03687,124.574391,134.440986,140.445487,I,Above,Gable,0,5701,Wood,19.31155455,0,0,,,,1,1,,0.03,nav,1,1949,1,, 7905,NJBF000074926,7 SHIPMASTER COVE,Brigantine,NJ,39.38819433,-74.40006634,RES1,3001,,16,NE,1968,1968,3102,1,1,2119.803315,2119.803315,3507,NO,12.93,23.12,1,-0.17,6110,114.923186,124.473605,134.325785,140.37432,I,Above,Gable,0,5701,Wood,18.02172556,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 7906,NJBF000074934,119 45TH STREET SO,Brigantine,NJ,39.38821387,-74.39531309,RES1,3001,,16,NE,1968,1968,3102,2,1,2011.621341,2011.621341,3507,YES,38.22,52.41,1,2.89,6106,115.021935,124.561848,134.424526,140.449005,I,Above,Gable,0,5701,Wood,45.31473056,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7907,NJBF000076556,403 28TH STREET SO,Brigantine,NJ,39.3938793,-74.38042584,RES1,3001,,NaN,NE,1969,0,3102,2,1,2573.026528,2573.026528,3507,NO,38.46,50.33,1,1.33,6106,115.267129,124.782843,134.677296,140.608261,I,Above,Hip,0,5701,Wood,44.39685689,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7908,NJBF000074697,24 SHIPMASTER DR,Brigantine,NJ,39.387474,-74.40043028,RES1,3001,,16,NE,1971,1971,3102,2,1,1531.563088,1531.563088,3507,YES,26.36,39.65,1,0.9,6106,114.92353,124.474194,134.325874,140.378246,I,Above,Gable,0,5701,Wood,33.0049581,0,0,,,,1,1,,0.03,nav,1,1971,2,, 7909,NJBF000078197,1007 W BRIGANTINE AVE,Brigantine,NJ,39.4035885,-74.37035511,COM1,3001,,45,ME,1942,1942,3401,2,4,2064.233685,2064.233685,3507,YES,38.63,48.06,1,2.43,6106,115.367859,124.875594,134.789105,140.642199,I,Above,Flat,0,NaN,Wood,43.34366955,0,0,,,,1,1,,0.03,nav,1,1942,2,, 7910,NJBF000078194,239 12TH STREET SO,Brigantine,NJ,39.40358198,-74.37180182,RES1,3001,,15,NE,1950,1950,3102,1,1,1399.436423,1399.436423,3505,NO,21.49,28.44,3,3.88,6106,115.338537,124.84829,134.758243,140.61949,I,Above,Gable,0,5701,Wood,24.96738431,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7911,NJBF000076235,4324 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39267567,-74.40611058,RES1,3001,,18,NE,2005,2005,3102,3,1,1469.429226,1469.429226,3507,NO,50.04,58.43,1,1.74,6106,114.748127,124.315323,134.152267,140.217124,I,Above,Gable,0,5701,Wood,54.23233289,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 7912,NJBF000075404,,Brigantine,NJ,39.38973854,-74.38839197,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2054.131607,2054.131607,3507,NO,27.83,34.51,1,2.2,6110,115.148552,124.675448,134.553149,140.537449,I,Above,Flat,0,NaN,Wood,31.17190454,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7913,NJBF000075807,278 38TH STREET SO,Brigantine,NJ,39.39120825,-74.3903257,RES1,3001,,43,NE,1938,1938,3102,2,2,935.4274884,935.4274884,3507,NO,38.41,52.54,1,-0.54,6106,115.092401,124.624463,134.497124,140.487834,I,Above,Gable,0,5701,Wood,45.47362021,0,0,,,,1,1,,0.03,nav,1,1938,2,, 7914,NJBF000078167,1501 BAYSHORE AVE,Brigantine,NJ,39.40337834,-74.37556179,RES1,3001,,NaN,NE,2012,2012,3102,2,1,2753.281336,2753.281336,3507,NO,31.83,46.4,1,1.36,6106,115.264207,124.779282,134.680188,140.56272,I,Above,Hip,0,5701,Wood,39.11568469,0,0,,,,1,1,,0.03,nav,1,2012,2,, 7915,NJBF000075468,4300 BAYSHORE AVE,Brigantine,NJ,39.38996531,-74.39450434,COM8,3001,,NaN,ME,1900,1900,3401,2,1,833.8901758,833.8901758,3507,NO,35.76,46.77,1,1.83,6106,115.019454,124.559114,134.422872,140.438481,I,Above,Hip,0,NaN,Wood,41.26489414,0,0,,,,1,1,,0.03,nav,1,1900,2,, 7916,NJBF000075712,4300 BAYSHORE AVE,Brigantine,NJ,39.39083586,-74.39501214,COM8,3001,,NaN,ME,1900,1900,3401,2,1,3838.137687,3838.137687,3507,NO,38.53,53.36,1,1.81,6106,114.999359,124.540786,134.403023,140.418885,I,Above,Gable,0,NaN,Wood,45.94470282,0,0,,,,1,1,,0.03,nav,1,1900,2,, 7917,NJBF000076228,209 38TH STREET SO,Brigantine,NJ,39.39265864,-74.39166307,RES1,3001,,15,NE,1985,1985,3102,1,1,1398.564184,1398.564184,3507,NO,17.32,26.18,1,2.45,6106,115.048877,124.584783,134.453742,140.447624,I,Above,Hip,0,5701,Wood,21.75022887,0,0,,,,1,1,,0.03,nav,1,1985,1,, 7918,NJBF000075273,,Brigantine,NJ,39.38932318,-74.38900726,RES3C,3001,,NaN,ME,1969,0,3301,2,1,9757.354445,9757.354445,3507,NO,32.62,45.7,1,0.57,6106,115.14043,124.668173,134.544635,140.533274,I,Above,Hip,0,NaN,Wood,39.15841793,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7919,NJBF000076514,400 28TH STREET SO,Brigantine,NJ,39.39374452,-74.38100866,RES1,3001,,16,NE,1954,1954,3102,1,1,1241.119851,1241.119851,3507,NO,13.89,27.29,1,1.64,6106,115.256629,124.773253,134.66639,140.600875,I,Above,Gable,0,5701,Wood,20.586016,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7920,NJBF000075796,258 39TH STREET SO,Brigantine,NJ,39.39116706,-74.39152703,RES1,3001,,14,NE,1950,1950,3102,1,1,884.5674904,884.5674904,3507,NO,14.52,28.13,1,2.51,6106,115.067993,124.602451,134.472399,140.469474,I,Above,Hip,0,5701,Wood,21.32657896,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7921,NJBF000077311,2001 OCEAN AVE,Brigantine,NJ,39.39783114,-74.37619913,RES1,3001,,16,NE,1957,1957,3102,2,1,2536.19503,2536.19503,3507,YES,23,31.46,1,-0.9,6106,115.31069,124.822696,134.725291,140.623686,I,Above,Gable,0,5701,Wood,27.22872485,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 7922,NJBF000074695,57 SAILFISH DRIVE,Brigantine,NJ,39.3874702,-74.40198993,RES3B,3001,,35,ME,1987,1987,3301,3,1,5943.720457,5943.720457,3507,NO,47.52,56.21,1,1.91,6110,114.890999,124.445246,134.293529,140.353631,I,Above,Gable,0,5701,Wood,51.86833611,0,1.1,,,,1,1,,0.35,nav,1,1987,3,, 7923,NJBF000076488,219 36TH STREET SO,Brigantine,NJ,39.39359741,-74.38997492,RES1,3001,,19,NE,2016,2016,3102,2,1,1193.416747,1193.416747,3507,NO,32.27,41.42,1,2.88,6106,115.073577,124.606832,134.479194,140.461911,I,Above,Flat,0,5701,Wood,36.84690004,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 7924,NJBF000076866,318 27TH STREET SO,Brigantine,NJ,39.39512175,-74.38130574,RES1,3001,,16,NE,1926,1926,3102,2,1,1283.495957,1283.495957,3507,YES,34.05,39.22,1,-0.83,6106,115.235516,124.753855,134.64564,140.578447,I,Above,Gable,0,5701,Wood,36.63140756,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 7925,NJBF000078248,1300 BAYSHORE AVE,Brigantine,NJ,39.40408504,-74.37397955,RES1,3001,,16,NE,1958,1958,3102,1,1,2041.437671,2041.437671,3505,NO,12.18,21.85,3,-2.41,6106,115.288906,124.802108,134.706407,140.578704,I,Above,Gable,0,5701,Wood,17.01564884,0,0,,,,1,1,,0.03,nav,1,1958,1,, 7926,NJBF000077803,209 18TH STREET SO,Brigantine,NJ,39.40094168,-74.37615263,RES1,3001,,15,NE,1960,1960,3101,2,1,1742.142625,1742.142625,3507,YES,27.97,38.09,1,1.15,6106,115.278146,124.792474,134.693443,140.584588,I,Above,Gable,0,5701,Wood,33.03057287,0,0,,,,1,1,,0.03,nav,1,1960,2,, 7927,NJBF000080484,1409 SHERIDAN BLVD,Brigantine,NJ,39.41522735,-74.37554329,RES1,3001,,16,NE,1967,1967,3103,1,1,1342.303754,1342.303754,3505,NO,23.18,30.76,3,5.02,6106,115.141026,124.661093,134.553108,140.410979,I,Above,Gable,0,5701,Wood,26.96953302,0,0,,,,1,1,,0.03,nav,1,1967,1,, 7928,NJBF000076481,226 35TH STREET SO,Brigantine,NJ,39.39358123,-74.38942316,RES1,3001,,18,NE,2015,2015,3102,2,1,718.2602111,718.2602111,3507,NO,30.63,44.91,1,-0.23,6106,115.085156,124.617318,134.490952,140.470837,I,Above,Hip,0,5701,Wood,37.77342606,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 7929,NJBF000076810,3915 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39488307,-74.39604138,RES1,3001,,20,NE,2012,2012,3102,3,1,2889.94899,2889.94899,3507,NO,50.78,64.46,1,1.29,6106,114.934072,124.480414,134.338379,140.348565,I,Above,Hip,0,5701,Wood,57.61619972,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 7930,NJBF000075904,218 40TH STREET SO,Brigantine,NJ,39.39158262,-74.3935398,RES1,3001,,17,NE,2004,2004,3102,2,1,1451.286633,1451.286633,3507,NO,41.29,47.58,1,2.74,6106,115.021733,124.560654,134.425862,140.432219,I,Above,Hip,0,5701,Wood,44.43622651,0,0,,,,1,1,,0.03,nav,1,2004,2,, 7931,NJBF000077483,113 25TH STREET SO,Brigantine,NJ,39.39895296,-74.38260695,RES1,3001,,15,NE,1956,1956,3101,1,1,1456.688942,1456.688942,3507,NO,12.81,26.51,1,-0.86,6106,115.167435,124.690924,134.577621,140.508328,I,Above,Gable,0,5701,Wood,19.66241247,0,0,,,,1,1,,0.03,nav,1,1956,1,, 7932,NJBF000077667,2105 REVERE BLVD,Brigantine,NJ,39.4002239,-74.37990649,RES1,3001,,16,NE,1950,1950,3101,1,1,2105.965857,2105.965857,3507,NO,13.8,22.26,1,1.34,6106,115.209151,124.728962,134.621341,140.534582,I,Above,Gable,0,5701,Wood,18.03219281,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 7933,NJBF000075802,334 36TH STREET SO,Brigantine,NJ,39.39119338,-74.38788091,RES1,3001,,16,NE,1952,1952,3102,1,1,1155.173655,1155.173655,3507,NO,13.53,22.88,1,-0.62,6106,115.143103,124.670298,134.548562,140.526426,I,Above,Flat,0,5701,Wood,18.20613463,0,0,,,,1,1,,0.03,nav,1,1952,1,, 7934,NJBF000074982,,Brigantine,NJ,39.38836292,-74.39355418,RES1,3001,,NaN,NE,1969,0,3102,2,1,2520.567777,2520.567777,3507,NO,25.97,34.24,1,1.83,6106,115.056826,124.593101,134.459652,140.474664,I,Above,Hip,0,5701,Wood,30.10090019,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7935,NJBF000075920,16 ATLANTIS COVE,Brigantine,NJ,39.39163525,-74.40094428,RES1,3001,,18,NE,2000,2000,3102,2,1,3099.415184,3099.415184,3507,NO,23.36,30.11,1,-0.87,6106,114.867248,124.422113,134.270822,140.314018,I,Above,Gable,0,5701,Wood,26.7330948,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 7936,NJBF000075713,258 40TH STREET SO,Brigantine,NJ,39.39084049,-74.39248688,RES1,3001,,16,NE,1949,1949,3102,1,1,1265.20525,1265.20525,3507,NO,19.82,33.46,1,2.94,6106,115.05169,124.587848,134.455766,140.458673,I,Above,Gable,0,5701,Wood,26.63761272,0,0,,,,1,1,,0.03,nav,1,1949,1,, 7937,NJBF000074495,4604 SCHOONER RD,Brigantine,NJ,39.386686,-74.3985285,RES1,3001,,43,NE,1979,1979,3102,2,2,1616.088795,1616.088795,3507,NO,23.19,29.9,1,1.22,6110,114.971921,124.517597,134.373758,140.418804,I,Above,Gable,0,5701,Wood,26.54031257,0,0,,,,1,1,,0.35,nav,1,1979,2,, 7938,NJBF000074864,32 SHIPMASTER DR,Brigantine,NJ,39.3880144,-74.40145718,RES1,3001,,16,NE,1970,1970,3102,1,1,2105.600405,2105.600405,3507,NO,11.05,20.32,1,0.17,6106,114.896138,124.449586,134.298802,140.35473,I,Above,Gable,0,5701,Wood,15.68727108,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 7939,NJBF000075900,251 39TH STREET SO,Brigantine,NJ,39.39155439,-74.39142406,RES1,3001,,15,NE,1960,1960,3102,1,1,1385.937571,1385.937571,3507,NO,11.65,21.67,1,0.96,6106,115.065889,124.600451,134.47046,140.465989,I,Above,Hip,0,5701,Wood,16.66313612,0,0,,,,1,1,,0.03,nav,1,1960,1,, 7940,NJBF000075999,410 32ND STREET SO,Brigantine,NJ,39.39188353,-74.38385078,RES1,3001,,20,NE,2008,2008,3102,3,1,1707.56963,1707.56963,3507,NO,47.43,58.22,1,1.36,6106,115.218602,124.738712,134.62601,140.580516,I,Above,Hip,0,5701,Wood,52.82206523,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 7941,NJBF000077649,114 22ND STREET SO,Brigantine,NJ,39.4001072,-74.38052239,RES1,3001,,16,NE,1950,1950,3101,1,1,2208.01698,2208.01698,3507,NO,12.49,23.43,1,0.72,6106,115.197795,124.718542,134.609521,140.526353,I,Above,Hip,0,5701,Wood,17.96025736,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7942,NJBF000075233,,Brigantine,NJ,39.38913614,-74.39065305,RES1,3001,,NaN,NE,1969,0,3102,2,1,1281.865196,1281.865196,3507,NO,30.32,41.58,1,0.3,6110,115.108432,124.639348,134.512138,140.50996,I,Above,Gable,0,5701,Wood,35.94856651,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7943,NJBF000080332,4 CUMMINGS PLACE,Brigantine,NJ,39.41472137,-74.37259536,RES1,3001,,16,NE,1972,1972,3102,2,1,1488.430486,1488.430486,3507,NO,29.94,44.91,1,2.17,6106,115.205896,124.722202,134.621865,140.465003,I,Above,Flat,0,5701,Wood,37.42427743,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 7944,NJBF000075095,4500 HARBOR BEACH BLVD,Brigantine,NJ,39.3886979,-74.39706,RES1,3001,,16,NE,1968,1968,3102,2,1,1624.18153,1624.18153,3507,YES,27.61,37.89,1,1.53,6106,114.980262,124.524392,134.382987,140.415046,I,Above,Gable,0,5701,Wood,32.75179217,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 7945,NJBF000076941,2402 OCEAN AVE,Brigantine,NJ,39.39552181,-74.37870381,RES1,3001,,19,NE,1926,1926,3102,2,1,2366.087771,2366.087771,3507,YES,31.97,39.62,1,-0.39,6106,115.284508,124.798695,134.696459,140.614055,I,Above,Gable,0,5701,Wood,35.79715775,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 7946,NJBF000076919,2804 W BRIGANTINE AVE,Brigantine,NJ,39.39543245,-74.38334829,RES1,3001,,15,NE,1947,2018,3102,2,1,1134.771979,1134.771979,3507,NO,38.55,44.19,1,0.7,6106,115.190212,124.712429,134.599252,140.542362,I,Above,Hip,0,5701,Wood,41.36922804,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 7947,NJBF000078123,337 9TH STREET SO,Brigantine,NJ,39.40308741,-74.36798196,RES1,3001,,20,NE,2014,2014,3102,3,1,1392.912824,1392.912824,3502,NO,64.5,75.74,5,11.6,6110,115.421338,124.92546,134.845162,140.685791,I,Above,Gable,0,5701,Wood,70.12105066,0,1.1,,,,1,1,,0.35,nav,1,2014,3,, 7948,NJBF000075892,,Brigantine,NJ,39.39152412,-74.38465509,RES3C,3001,,NaN,E,1969,0,3303,4,1,4342.492595,4342.492595,3507,NO,52.82,62.29,1,-0.58,6106,115.206002,124.72729,134.61287,140.572621,I,Above,Hip,0,NaN,Wood,57.5564728,0,0,,,,1,1,,0.03,nav,1,1969,4,, 7949,NJBF000080282,1401 E BRIGANTINE AVE,Brigantine,NJ,39.41455646,-74.35453684,RES1,3001,,19,NE,2004,2004,3103,3,1,1411.771518,1411.771518,3507,NO,47.71,58.62,1,-0.21,6106,115.570761,125.068342,135.013855,140.754546,I,Above,Hip,0,5701,Wood,53.1676033,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 7950,NJBF000074649,120 HUDSON DR,Brigantine,NJ,39.38733562,-74.39590505,RES1,3001,,16,NE,1968,1968,3102,2,1,944.2766682,944.2766682,3507,NO,37.76,48.75,1,2.75,6110,115.019339,124.559763,134.421469,140.451373,I,Above,Gable,0,5701,Wood,43.25793335,0,0,,,,1,1,,0.35,nav,1,1968,2,, 7951,NJBF000076284,4312 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39284656,-74.40563709,RES1,3001,,18,NE,1999,1999,3102,2,1,2405.442453,2405.442453,3507,NO,30.11,37.95,1,1.13,6106,114.756194,124.322383,134.160262,140.222409,I,Above,Hip,0,5701,Wood,34.02616291,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 7952,NJBF000074535,,Brigantine,NJ,39.38688595,-74.40131071,RES1,3001,,NaN,NE,1969,0,3102,2,1,1353.853971,1353.853971,3507,NO,38.04,45.14,1,1.15,6110,114.911633,124.463834,134.31383,140.372242,I,Above,Hip,0,5701,Wood,41.59148113,0,0,,,,1,1,,0.35,nav,1,1969,2,, 7953,NJBF000074252,58 DELMAR DRIVE,Brigantine,NJ,39.38558122,-74.40228962,RES3B,3001,,33,ME,1980,1980,3301,2,1,4746.784321,4746.784321,3507,YES,32.24,37.44,1,-0.92,6110,114.905636,124.459008,134.307388,140.374378,I,Above,Gable,0,5701,Wood,34.83707777,0,0,,,,1,1,,0.35,nav,1,1980,2,, 7954,NJBF000077485,,Brigantine,NJ,39.39895569,-74.37765322,RES1,3001,,NaN,NE,1969,0,3102,2,1,2418.928767,2418.928767,3507,NO,38.3,47.7,1,-0.55,6106,115.26884,124.784078,134.682568,140.58644,I,Above,Hip,0,5701,Wood,43.00146053,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7955,NJBF000077464,,Brigantine,NJ,39.39880981,-74.3775367,RES1,3001,,NaN,NE,1969,0,3102,2,1,1978.797532,1978.797532,3507,NO,25.66,35.81,1,2.9,6106,115.272783,124.787723,134.686572,140.590138,I,Above,Hip,0,5701,Wood,30.7350383,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7956,NJBF000077712,310 15TH STREET SO,Brigantine,NJ,39.40047234,-74.37299893,RES1,3001,,16,NE,1954,1954,3102,1,1,1882.744253,1882.744253,3505,NO,18.94,30.37,3,2.93,6106,115.347469,124.856648,134.76555,140.640187,I,Above,Flat,0,5701,Wood,24.65541561,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 7957,NJBF000081115,827 W SHORE DR,Brigantine,NJ,39.41759779,-74.38220131,RES1,3001,,18,NE,2004,2004,3103,2,1,2062.339415,2062.339415,3505,NO,37.2,50.55,3,3.93,6106,114.981862,124.510806,134.384679,140.272006,I,Above,Hip,0,5701,Wood,43.87244213,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 7958,NJBF000081243,905 E SHORE DR,Brigantine,NJ,39.41827665,-74.3623069,RES1,3001,,16,NE,1972,1972,3102,2,1,1201.855926,1201.855926,3507,YES,28.93,42.82,1,-0.03,6106,115.376598,124.883086,134.805257,140.58517,I,Above,Gable,0,5701,Wood,35.8790658,0,0,,,,1,1,,0.03,nav,1,1972,2,, 7959,NJBF000076311,329 33RD STREET SO,Brigantine,NJ,39.39293358,-74.38556279,RES1,3001,,15,NE,1955,1955,3102,1,1,1184.482339,1184.482339,3507,NO,19.44,25.57,1,1.75,6106,115.171841,124.696084,134.57893,140.540055,I,Above,Flat,0,5701,Wood,22.5070972,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7960,NJBF000075568,4733 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39033832,-74.41273995,RES1,3001,,15,NE,1930,1930,3103,2,1,852.2644664,852.2644664,3505,NO,22.61,33.6,3,-1.57,6102,114.634359,124.21632,134.040351,140.142495,I,Above,Hip,0,5701,Wood,28.10108023,0,0,,,,1,1,,0.03,nav,1,1930,2,, 7961,NJBF000075581,,Brigantine,NJ,39.39039247,-74.41259067,RES1,3001,,NaN,NE,1930,0,3103,4,1,1232.85462,1232.85462,3505,NO,49.47,58.27,3,-1.48,6102,114.636908,124.218524,134.042841,140.144152,I,Above,Flat,0,5701,Wood,53.87198001,0,0,,,,1,1,,0.03,nav,1,1930,4,, 7962,NJBF000080575,708 STERLING PLACE,Brigantine,NJ,39.41549854,-74.38037878,RES1,3001,,16,NE,1972,1972,3103,3,1,1806.197637,1806.197637,3505,NO,48.66,53.68,3,6.55,6106,115.040131,124.566541,134.446641,140.329055,I,Above,Gable,0,5701,Wood,51.16780083,0,1.2,,,,1,1,,0.03,nav,1,1972,3,, 7963,NJBF000080686,14 COLLETTE CIRCLE,Brigantine,NJ,39.41590971,-74.3770758,RES1,3001,,17,NE,1960,1960,3103,2,1,1514.429233,1514.429233,3505,NO,25.54,37.84,3,-0.39,6106,115.102981,124.625113,134.512807,140.377371,I,Above,Gable,0,5701,Wood,31.68902272,0,0,,,,1,1,,0.03,nav,1,1960,2,, 7964,NJBF000080464,701 STERLING PLACE,Brigantine,NJ,39.41515266,-74.37951102,RES1,3001,,16,NE,1955,1955,3103,1,1,1745.040842,1745.040842,3505,NO,19.76,25.09,3,1.1,6106,115.061287,124.586491,134.468975,140.347651,I,Above,Gable,0,5701,Wood,22.42627857,0,0,,,,1,1,,0.03,nav,1,1955,1,, 7965,NJBF000080434,609 LAFAYETTE BLVD,Brigantine,NJ,39.41504731,-74.37829622,RES1,3001,,17,NE,1973,1973,3103,2,1,2104.489536,2104.489536,3505,YES,36.38,44.13,3,6.09,6106,115.087038,124.610614,134.496115,140.368736,I,Above,Hip,0,5701,Wood,40.25804524,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 7966,NJBF000076608,318 29TH STREET SO,Brigantine,NJ,39.3940805,-74.3826335,RES1,3001,,16,NE,1958,1958,3102,1,1,1321.76406,1321.76406,3507,NO,14.77,29.73,1,1.92,6106,115.219605,124.739426,134.628583,140.571108,I,Above,Flat,0,5701,Wood,22.24912988,0,0,,,,1,1,,0.03,nav,1,1958,1,, 7967,NJBF000076633,4233 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39414175,-74.40425785,RES1,3001,,16,NE,1952,1952,3102,1,1,1929.687579,1929.687579,3507,NO,17.32,27.03,1,1.99,6106,114.77108,124.334769,134.17496,140.226921,I,Above,Hip,0,5701,Wood,22.17502598,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 7968,NJBF000078349,113 12TH STREET SO,Brigantine,NJ,39.4049122,-74.37299906,RES1,3001,,15,NE,1948,1948,3102,2,1,1135.189748,1135.189748,3505,NO,35.51,41.21,3,-2.04,6106,115.300082,124.812408,134.718562,140.583673,I,Above,Hip,0,5701,Wood,38.36083567,0,0,,,,1,1,,0.03,nav,1,1948,2,, 7969,NJBF000075853,,Brigantine,NJ,39.39136711,-74.38611162,RES3C,3001,,NaN,E,1969,0,3303,3,1,1981.883672,1981.883672,3507,NO,53.9,65.37,1,0.68,6106,115.177697,124.701616,134.583884,140.55187,I,Above,Flat,0,NaN,Wood,59.63837894,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7970,NJBF000075855,,Brigantine,NJ,39.39137416,-74.38450089,RES3C,3001,,NaN,E,1969,0,3303,3,1,2718.547834,2718.547834,3507,NO,46.46,55.46,1,-0.38,6106,115.210823,124.731682,134.617685,140.576975,I,Above,Hip,0,NaN,Wood,50.96029687,0,0,,,,1,1,,0.03,nav,1,1969,3,, 7971,NJBF000075181,335 41ST STREET SO,Brigantine,NJ,39.38897913,-74.39042713,RES1,3001,,43,NE,1964,1964,3102,2,2,1112.238333,1112.238333,3507,NO,41.82,50.47,1,2.99,6110,115.114846,124.645155,134.518521,140.515564,I,Above,Gable,0,5701,Wood,46.14025411,0,0,,,,1,1,,0.35,nav,1,1964,2,, 7972,NJBF000080157,12 CUMMINGS PLACE,Brigantine,NJ,39.41411064,-74.37247295,RES1,3001,,16,NE,1972,1972,3102,2,1,2180.262128,2180.262128,3507,NO,30.27,44,1,2.5,6106,115.214642,124.730614,134.631099,140.474751,I,Above,Gable,0,5701,Wood,37.13660163,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 7973,NJBF000078258,247 10TH STREET SO,Brigantine,NJ,39.40419,-74.37011617,RES1,3001,,16,NE,1950,1950,3102,1,1,1196.744667,1196.744667,3505,NO,22.95,28.39,3,3.74,6106,115.366295,124.874134,134.78785,140.638342,I,Above,Gable,0,5701,Wood,25.67143181,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7974,NJBF000074751,28 SHIPMASTER DR,Brigantine,NJ,39.3876676,-74.40084989,RES1,3001,,16,NE,1971,1971,3102,2,1,1857.289568,1857.289568,3507,YES,28.38,35.61,1,0.23,6106,114.912623,124.464405,134.315089,140.368998,I,Above,Gable,0,5701,Wood,31.99242679,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 7975,NJBF000076199,4425 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39257252,-74.40787184,RES1,3001,,43,NE,1954,1954,3103,2,2,3449.23561,3449.23561,3505,YES,29.07,38.39,3,4.28,6102,114.712394,124.28365,134.116861,140.19018,I,Above,Hip,0,5701,Wood,33.7280683,0,0,,,,1,1,,0.03,nav,1,1954,2,, 7976,NJBF000077741,202 19TH STREET SO,Brigantine,NJ,39.40064331,-74.37763647,RES1,3001,,17,NE,1927,1927,3101,2,1,3004.352802,3004.352802,3507,YES,28.07,38.8,1,2.26,6106,115.251074,124.767514,134.665084,140.565036,I,Above,Hip,0,5701,Wood,33.43606867,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 7977,NJBF000076193,215 38TH STREET SO,Brigantine,NJ,39.39255009,-74.39151741,RES1,3001,,16,NE,1957,1957,3102,1,1,1269.964846,1269.964846,3507,NO,16.01,28.44,1,0.64,6106,115.053086,124.588616,134.457958,140.45137,I,Above,Hip,0,5701,Wood,22.22493593,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 7978,NJBF000080215,115 11TH STREET NO,Brigantine,NJ,39.41431406,-74.35780246,RES1,3001,,47,NE,2010,2010,3102,3,2,1791.612583,1791.612583,3507,NO,42.46,55.68,1,-0.95,6106,115.507943,125.008281,134.945539,140.706014,I,Above,Hip,0,5701,Wood,49.06905978,0,0,,,,1,1,,0.03,nav,1,2010,3,, 7979,NJBF000080005,703 E EVANS BLVD,Brigantine,NJ,39.41363608,-74.36152502,RES1,3001,,16,NE,1971,1971,3102,2,1,1395.174993,1395.174993,3507,NO,22.95,29.84,1,-0.34,6106,115.44031,124.943862,134.872152,140.655494,I,Above,Hip,0,5701,Wood,26.39425708,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 7980,NJBF000080096,31 CUMMINGS PLACE,Brigantine,NJ,39.41390589,-74.37322766,RES1,3001,,17,NE,1987,1987,3102,1,1,1399.85115,1399.85115,3507,NO,15.06,22.13,1,2.19,6106,115.201473,124.71831,134.617115,140.465231,I,Above,Gable,0,5701,Wood,18.59485917,0,0,,,,1,1,,0.03,nav,1,1987,1,, 7981,NJBF000078231,1306 BAYSHORE AVE,Brigantine,NJ,39.40389783,-74.37418206,RES1,3001,,16,NE,1960,1960,3102,1,1,1981.232816,1981.232816,3505,NO,25.14,39.26,3,6.34,6106,115.286781,124.800156,134.704084,140.577897,I,Above,Hip,0,5701,Wood,32.20074772,0,0,,,,1,1,,0.03,nav,1,1960,1,, 7982,NJBF000078230,243 11TH STREET SO,Brigantine,NJ,39.4038936,-74.37096878,RES1,3001,,15,NE,1950,1950,3102,1,1,1633.906378,1633.906378,3505,NO,18.27,25.29,3,7.21,6106,115.352134,124.860938,134.772741,140.628656,I,Above,Gable,0,5701,Wood,21.78189995,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7983,NJBF000074429,26 LIGHTHOUSE DR,Brigantine,NJ,39.38638318,-74.40195301,RES1,3001,,43,NE,1986,1986,3102,2,2,1465.649926,1465.649926,3507,NO,37.96,49.88,1,-0.78,6110,114.903786,124.457056,134.305856,140.368881,I,Above,Gable,0,5701,Wood,43.91860093,0,0,,,,1,1,,0.35,nav,1,1986,2,, 7984,NJBF000078127,344 8TH STREET SO,Brigantine,NJ,39.40310342,-74.36749889,RES1,3001,,15,NE,1955,1955,3102,1,1,1483.422685,1483.422685,3502,NO,10.99,17.22,5,-1.48,6110,115.430953,124.934442,134.855335,140.693159,I,Above,Gable,0,5701,Wood,14.1039443,0,0,,,,1,1,,0.35,nav,1,1955,1,, 7985,NJBF000078256,231 11TH STREET SO,Brigantine,NJ,39.40415636,-74.37119591,RES1,3001,,15,NE,1956,1956,3102,1,1,1414.852284,1414.852284,3505,NO,15.9,24.74,3,0.57,6106,115.344736,124.854039,134.765114,140.621756,I,Above,Gable,0,5701,Wood,20.32206816,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 7986,NJBF000078236,,Brigantine,NJ,39.40392177,-74.37331719,RES1,3001,,NaN,NE,1969,0,3102,2,1,1628.823132,1628.823132,3505,NO,24.7,30,3,-2.44,6106,115.304124,124.816264,134.722288,140.591261,I,Above,Hip,0,5701,Wood,27.34777759,0,0,,,,1,1,,0.03,nav,1,1969,2,, 7987,NJBF000078244,204 12TH STREET SO,Brigantine,NJ,39.40404793,-74.37284629,RES1,3001,,15,NE,1950,1950,3102,1,1,1021.640882,1021.640882,3505,NO,12.06,20.2,3,-1.99,6106,115.312361,124.823912,134.731006,140.597095,I,Above,Gable,0,5701,Wood,16.13051468,0,0,,,,1,1,,0.03,nav,1,1950,1,, 7988,NJBF000078121,19 17TH STREET SO,Brigantine,NJ,39.40308344,-74.37692611,RES1,3001,,16,NE,1955,1955,3102,1,1,2546.699334,2546.699334,3507,NO,19.36,32.28,1,0.06,6106,115.239538,124.756485,134.654277,140.544911,I,Above,Flat,0,5701,Wood,25.81851348,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 7989,NJBF000078183,234 12TH STREET SO,Brigantine,NJ,39.40347429,-74.37232801,RES1,3001,,16,NE,1950,1950,3102,1,1,1251.042155,1251.042155,3505,NO,15.87,28.18,3,2.63,6106,115.328998,124.839421,134.748152,140.612571,I,Above,Gable,0,5701,Wood,22.02541128,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 7990,NJBF000078158,316 9TH STREET SO,Brigantine,NJ,39.40331188,-74.36886492,RES1,3001,,19,NE,2009,2009,3102,3,1,1470.597532,1470.597532,3502,NO,29.1,41.83,5,-2.43,6110,115.401032,124.906521,134.823891,140.669103,I,Above,Hip,0,5701,Wood,35.46094522,0,0,,,,1,1,,0.35,nav,1,2009,3,, 7991,NJBF000078172,312 9TH STREET SO,Brigantine,NJ,39.40341548,-74.36888721,RES1,3001,,15,NE,1940,1940,3102,1,1,1306.293755,1306.293755,3502,NO,20.8,34.54,5,6.19,6110,115.399486,124.905083,134.822334,140.667459,I,Above,Hip,0,5701,Wood,27.67415552,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 7992,NJBF000077934,312 13TH STREET SO,Brigantine,NJ,39.40175834,-74.37195495,RES1,3001,,16,NE,1952,1952,3102,2,1,1168.227874,1168.227874,3502,NO,43.76,53.16,5,12.08,6106,115.354911,124.863551,134.774253,140.640241,I,Above,Flat,0,5701,Wood,48.46034171,0,0,,,,1,1,,0.03,nav,1,1952,2,, 7993,NJBF000077910,101 20TH STREET SO,Brigantine,NJ,39.40159363,-74.37894885,RES1,3001,,16,NE,1956,1956,3101,2,1,2036.208308,2036.208308,3507,YES,27.29,36.74,1,-0.49,6106,115.214086,124.733249,134.627099,140.532041,I,Above,Gable,0,5701,Wood,32.01288635,0,0,,,,1,1,,0.03,nav,1,1956,2,, 7994,NJBF000077966,320 12TH STREET SO,Brigantine,NJ,39.401967,-74.371005,RES1,3001,,15,NE,1950,1950,3102,2,1,1436.673958,1436.673958,3502,NO,43.86,58.85,5,8.62,6106,115.371983,124.879418,134.792327,140.652509,I,Above,Gable,0,5701,Wood,51.35496135,0,0,,,,1,1,,0.03,nav,1,1950,2,, 7995,NJBF000078003,201-03 16TH STREET SO,Brigantine,NJ,39.40223398,-74.37495317,RES1,3001,,16,NE,1952,1952,3102,2,1,603.582116,603.582116,3505,NO,40.15,51.33,3,3.77,6106,115.288799,124.802205,134.705303,140.586979,I,Above,Gable,0,5701,Wood,45.73836697,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 7996,NJBF000077978,345 11TH STREET SO,Brigantine,NJ,39.40208377,-74.36937482,RES1,3001,,16,NE,1954,1954,3102,2,1,1062.834646,1062.834646,3502,NO,29.66,36.31,5,-4.2,6110,115.403828,124.909061,134.82592,140.676598,I,Above,Hip,0,5701,Wood,32.98342158,0,0,,,,1,1,,0.35,nav,1,1954,2,, 7997,NJBF000077974,349 11TH STREET SO,Brigantine,NJ,39.40200896,-74.36926733,RES1,3001,,19,NE,2008,2008,3102,3,1,1712.643609,1712.643609,3502,NO,55.22,69.45,5,1.2,6110,115.406824,124.911847,134.829018,140.679237,I,Above,Hip,0,5701,Wood,62.3339271,0,1.1,,,,1,1,,0.35,nav,1,2008,3,, 7998,NJBF000077916,329 13TH STREET SO,Brigantine,NJ,39.40165892,-74.37118318,RES1,3001,,16,NE,1947,1947,3102,2,1,1281.738261,1281.738261,3502,NO,35.66,46.43,5,-2.83,6106,115.371666,124.879118,134.791773,140.653618,I,Above,Flat,0,5701,Wood,41.04269862,0,0,,,,1,1,,0.03,nav,1,1947,2,, 7999,NJBF000077960,1604 REVERE BLVD,Brigantine,NJ,39.40191698,-74.37586954,RES1,3001,,16,NE,1958,1958,3101,1,1,2748.305231,2748.305231,3507,YES,14.23,21.26,1,0.46,6106,115.273493,124.788068,134.689137,140.576563,I,Above,Hip,0,5701,Wood,17.74691651,0,1.2,,,,1,1,,0.03,nav,1,1958,1,, 8000,NJBF000077811,305 15TH STREET SO,Brigantine,NJ,39.400981,-74.3728635,RES1,3001,,19,NE,2011,2011,3102,2,1,554.7062648,554.7062648,3502,NO,46.19,51.66,5,12.05,6106,115.34477,124.854145,134.763084,140.63585,I,Above,Gable,0,5701,Wood,48.92285688,0,0,,,,1,1,,0.03,nav,1,2011,2,, 8001,NJBF000077680,306 16TH STREET SO,Brigantine,NJ,39.40028247,-74.37392775,RES1,3001,,17,NE,1997,1997,3102,1,1,2772.028708,2772.028708,3505,NO,12.81,21.55,3,1.27,6106,115.33059,124.841018,134.747765,140.628023,I,Above,Hip,0,5701,Wood,17.18198548,0,0,,,,1,1,,0.03,nav,1,1997,1,, 8002,NJBF000077828,,Brigantine,NJ,39.40107672,-74.37913977,RES1,3001,,NaN,NE,1969,0,3101,1,1,1754.117067,1754.117067,3507,NO,14.96,26.04,1,-0.54,6106,115.215698,124.734833,134.628537,140.535686,I,Above,Hip,0,5701,Wood,20.5007895,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8003,NJBF000077841,1601 W BRIGANTINE AVE,Brigantine,NJ,39.4011771,-74.37471758,RES1,3001,,16,NE,1953,1953,3102,1,1,1775.745791,1775.745791,3505,NO,15.85,28.17,3,-2.41,6106,115.304889,124.81719,134.721496,140.604186,I,Above,Gable,0,5701,Wood,22.00702377,0,0,,,,1,1,,0.03,nav,1,1953,1,, 8004,NJBF000077644,310 16TH STREET SO,Brigantine,NJ,39.40006352,-74.37372117,RES1,3001,,16,NE,1952,1952,3102,1,1,1721.432186,1721.432186,3505,NO,16.01,23.98,3,2.49,6106,115.337152,124.847095,134.75447,140.634049,I,Above,Gable,0,5701,Wood,19.9995104,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 8005,NJBF000077782,109 21ST STREET SO,Brigantine,NJ,39.40085273,-74.37939508,RES1,3001,,16,NE,1956,1956,3101,1,1,1786.241167,1786.241167,3507,NO,19.31,30.19,1,1.8,6106,115.212877,124.732275,134.625504,140.534542,I,Above,Gable,0,5701,Wood,24.75246379,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 8006,NJBF000077610,2406 BAYSHORE AVE,Brigantine,NJ,39.3998103,-74.38317525,RES1,3001,,16,NE,1958,1958,3101,2,1,1574.004663,1574.004663,3507,YES,30.01,41.83,1,1.93,6106,115.146605,124.671626,134.556491,140.488191,I,Above,Gable,0,5701,Wood,35.91818912,0,0,,,,1,1,,0.03,nav,1,1958,2,, 8007,NJBF000074042,,Brigantine,NJ,39.38459443,-74.40219066,RES3D,3001,,NaN,ME,1969,0,3301,2,1,10013.18999,10013.18999,3507,NO,27.5,35.87,1,-0.63,6110,114.918691,124.47095,134.31991,140.389242,I,Above,Flat,0,NaN,Wood,31.68433776,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8008,NJBF000076650,316 29TH STREET SO,Brigantine,NJ,39.39421658,-74.38277201,RES1,3001,,15,NE,1953,1953,3102,2,1,1452.930785,1452.930785,3507,YES,21.18,28.13,1,-0.52,6106,115.215265,124.735452,134.624219,140.567167,I,Above,Hip,0,5701,Wood,24.65514556,0,0,,,,1,1,,0.03,nav,1,1953,2,, 8009,NJBF000077284,310 22ND STREET SO,Brigantine,NJ,39.39766468,-74.37829817,RES1,3001,,20,NE,2008,2008,3102,3,1,2990.587088,2990.587088,3507,NO,33.64,46.14,1,0.58,6106,115.269577,124.784865,134.682508,140.592885,I,Above,Gable,0,5701,Wood,39.88780048,0,1.2,,,,1,1,,0.03,nav,1,2008,3,, 8010,NJBF000077561,304 18TH STREET SO,Brigantine,NJ,39.3994741,-74.37541656,RES1,3001,,16,NE,1959,1959,3102,2,1,1720.410785,1720.410785,3507,NO,26.1,34.93,1,1.68,6106,115.308924,124.821011,134.724602,140.614949,I,Above,Hip,0,5701,Wood,30.51741637,0,0,,,,1,1,,0.03,nav,1,1959,2,, 8011,NJBF000077600,305 18TH STREET SO,Brigantine,NJ,39.39974141,-74.37502334,RES1,3001,,16,NE,1957,1957,3102,1,1,1721.689992,1721.689992,3507,NO,16.59,29.33,1,0.85,6106,115.314087,124.825771,134.730166,140.617727,I,Above,Hip,0,5701,Wood,22.96313321,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 8012,NJBF000077409,204 24TH STREET SO,Brigantine,NJ,39.39845388,-74.38129028,RES1,3001,,16,NE,1956,1956,3102,1,1,2848.827761,2848.827761,3507,NO,14.76,22.88,1,-0.01,6106,115.199799,124.720694,134.610785,140.535608,I,Above,Hip,0,5701,Wood,18.82099248,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 8013,NJBF000077417,111 26TH STREET SO,Brigantine,NJ,39.39850285,-74.38325997,RES1,3001,,16,NE,1958,1958,3102,1,1,2354.204461,2354.204461,3507,NO,17.6,31.37,1,-0.68,6106,115.158866,124.68318,134.568589,140.503845,I,Above,Gable,0,5701,Wood,24.48502064,0,0,,,,1,1,,0.03,nav,1,1958,1,, 8014,NJBF000077322,104 27TH STREET SO,Brigantine,NJ,39.39789671,-74.38450733,RES1,3001,,17,NE,1950,1950,3102,2,1,1907.916491,1907.916491,3507,NO,34.48,40.29,1,1.85,6106,115.139768,124.665862,134.548677,140.492006,I,Above,Gable,0,5701,Wood,37.38250414,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8015,NJBF000077571,300 19TH STREET SO,Brigantine,NJ,39.39954247,-74.37659138,RES1,3001,,16,NE,1954,1954,3102,1,1,1859.709884,1859.709884,3507,YES,17.12,24.84,1,2.58,6106,115.28423,124.798215,134.698932,140.595628,I,Above,Hip,0,5701,Wood,20.97965678,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 8016,NJBF000077574,106 24TH STREET SO,Brigantine,NJ,39.3995593,-74.38228393,RES1,3001,,16,NE,1950,1950,3101,1,1,1775.214784,1775.214784,3507,NO,11.15,21.93,1,0.56,6106,115.167563,124.690902,134.578018,140.505571,I,Above,Hip,0,5701,Wood,16.53766347,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8017,NJBF000077560,309 18TH STREET SO,Brigantine,NJ,39.39946302,-74.37478821,RES1,3001,,16,NE,1954,1954,3102,1,1,1545.509272,1545.509272,3505,NO,12.81,26.83,3,2.14,6106,115.321872,124.832974,134.738095,140.624965,I,Above,Hip,0,5701,Wood,19.8226178,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8018,NJBF000077297,2600 REVERE BLVD,Brigantine,NJ,39.39773286,-74.38311476,RES1,3001,,18,NE,1956,1956,3102,3,1,2652.39413,2652.39413,3507,NO,50.8,63.13,1,1.73,6106,115.170123,124.693651,134.579825,140.516147,I,Above,Gable,0,5701,Wood,56.96721233,0,1.2,,,,1,1,,0.03,nav,1,1956,3,, 8019,NJBF000077276,212 25TH STREET SO,Brigantine,NJ,39.39762917,-74.38174802,RES1,3001,,16,NE,1956,1956,3102,2,1,1294.114061,1294.114061,3507,YES,23.93,32.96,1,1.98,6106,115.199294,124.720374,134.60983,140.539066,I,Above,Gable,0,5701,Wood,28.44637529,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8020,NJBF000077597,212 20TH STREET SO,Brigantine,NJ,39.39971936,-74.37791895,RES1,3001,,16,NE,1960,1960,3101,1,1,1526.770762,1526.770762,3507,NO,15.2,23.63,1,1.41,6106,115.255199,124.771433,134.668856,140.572449,I,Above,Hip,0,5701,Wood,19.41380181,0,0,,,,1,1,,0.03,nav,1,1960,1,, 8021,NJBF000077423,212 23RD STREET SO,Brigantine,NJ,39.39853474,-74.38019943,RES1,3001,,18,NE,2015,2015,3101,2,1,1001.440669,1001.440669,3507,NO,26.16,38.47,1,1.86,6106,115.221281,124.740394,134.633031,140.551768,I,Above,Gable,0,5701,Wood,32.31287787,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 8022,NJBF000077324,204 25TH STREET SO,Brigantine,NJ,39.39790968,-74.38210924,RES1,3001,,16,NE,1954,1954,3102,1,1,1659.110783,1659.110783,3507,NO,18.78,26.62,1,2.52,6106,115.188861,124.710768,134.599219,140.529731,I,Above,Hip,0,5701,Wood,22.70198025,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 8023,NJBF000075644,85 LAGOON BLVD,Brigantine,NJ,39.39058719,-74.39880483,RES1,3001,,17,NE,1987,1987,3102,2,1,2467.635851,2467.635851,3507,NO,27.05,33.67,1,3,6106,114.92322,124.472641,134.326551,140.362151,I,Above,Hip,0,5701,Wood,30.35648535,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 8024,NJBF000077552,1504 OCEAN AVE,Brigantine,NJ,39.39939103,-74.37248058,RES1,3001,,18,NE,1992,1992,3102,2,1,1986.358271,1986.358271,3505,NO,45.05,53.69,3,8.9,6106,115.369656,124.877183,134.787957,140.662038,I,Above,Hip,0,5701,Wood,49.36818203,0,0,,,,1,1,,0.03,nav,1,1992,2,, 8025,NJBF000073392,5215 WATERVIEW DR,Brigantine,NJ,39.38035259,-74.40801242,RES1,3001,,16,NE,1975,1975,3103,2,1,1894.648891,1894.648891,3505,YES,24.52,29.8,3,-1.23,6106,114.844182,124.406687,134.244686,140.35515,I,Above,Gable,0,5701,Wood,27.1589194,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8026,NJBF000077546,2005 W BRIGANTINE AVE,Brigantine,NJ,39.39935472,-74.3780361,RES1,3001,,16,NE,1950,1950,3101,2,1,1476.811051,1476.811051,3507,NO,36.27,41.73,1,0.01,6106,115.256718,124.772874,134.670223,140.575285,I,Above,Gable,0,5701,Wood,38.99915393,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8027,NJBF000076604,230 33RD STREET SO,Brigantine,NJ,39.39405496,-74.38751586,RES1,3001,,45,NE,1952,1952,3102,2,2,1280.077632,1280.077632,3507,NO,23.54,36.51,1,-0.03,6106,115.119362,124.64821,134.526005,140.494694,I,Above,Flat,0,5701,Wood,30.02632555,0,0,,,,1,1,,0.03,nav,1,1952,2,, 8028,NJBF000073404,2 SURF LANE,Brigantine,NJ,39.38048047,-74.40461851,RES1,3001,,16,NE,1975,1975,3101,1,1,2008.648042,2008.648042,3507,NO,19.98,29.89,1,1.86,6106,114.914034,124.468139,134.313257,140.406624,I,Above,Gable,0,5701,Wood,24.93717681,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 8029,NJBF000075670,,Brigantine,NJ,39.39066702,-74.38728998,RES1,3001,,NaN,NE,1966,0,3102,2,1,2466.089186,2466.089186,3507,NO,22.94,30.34,1,1.51,6106,115.161089,124.686658,134.566505,140.542562,I,Above,Flat,0,5701,Wood,26.64462709,0,0,,,,1,1,,0.03,nav,1,1966,2,, 8030,NJBF000075636,87 LAGOON BLVD,Brigantine,NJ,39.39056884,-74.39902127,RES1,3001,,17,NE,1981,1981,3102,3,1,2026.839316,2026.839316,3507,NO,37.81,52.18,1,-0.45,6106,114.918919,124.468803,134.322244,140.358964,I,Above,Gable,0,5701,Wood,44.99387383,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 8031,NJBF000073379,5211 WATERVIEW DR,Brigantine,NJ,39.38027397,-74.4075626,RES1,3001,,45,NE,1975,1975,3103,3,2,1474.784752,1474.784752,3505,NO,43.72,53.91,3,7.6,6106,114.854519,124.415801,134.254766,140.363276,I,Above,Gable,0,5701,Wood,48.81542318,0,0,,,,1,1,,0.03,nav,1,1975,3,, 8032,NJBF000077054,202 29TH STREET SO,Brigantine,NJ,39.39615917,-74.38494831,RES1,3001,,17,NE,1932,1932,3102,2,1,2014.58386,2014.58386,3507,YES,27.95,36.07,1,0.73,6106,115.14944,124.675099,134.557807,140.507697,I,Above,Hip,0,5701,Wood,32.01118427,0,0,,,,1,1,,0.03,nav,1,1932,2,, 8033,NJBF000077154,2201 OCEAN AVE,Brigantine,NJ,39.39691041,-74.37762244,RES1,3001,,18,NE,1982,1982,3102,1,1,4795.377728,4795.377728,3507,NO,17.26,30.2,1,1.96,6106,115.291577,124.805135,134.70479,140.613182,I,Above,Gable,0,5701,Wood,23.73115956,0,1.1,,,,1,1,,0.03,nav,1,1982,1,, 8034,NJBF000077018,312 26TH STREET SO,Brigantine,NJ,39.39589824,-74.380992,RES1,3001,,16,NE,1955,1955,3102,1,1,2677.828561,2677.828561,3507,NO,18.88,33.85,1,0.85,6106,115.233527,124.751958,134.644101,140.57335,I,Above,Hip,0,5701,Wood,26.36417612,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8035,NJBF000077048,209 29TH STREET SO,Brigantine,NJ,39.39611099,-74.38421129,RES1,3001,,18,NE,2007,2007,3102,2,1,2900.697959,2900.697959,3507,NO,30.88,40.03,1,-0.69,6106,115.165115,124.689406,134.573863,140.519947,I,Above,Flat,0,5701,Wood,35.45382585,0,1.2,,,,1,1,,0.03,nav,1,2007,2,, 8036,NJBF000077164,405 21ST STREET SO,Brigantine,NJ,39.39695795,-74.37586881,RES1,3001,,17,NE,1960,1960,3102,2,1,2282.314866,2282.314866,3507,NO,39.35,49.05,1,2.01,6106,115.326889,124.837627,134.74147,140.640011,I,Above,Flat,0,5701,Wood,44.1977782,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 8037,NJBF000077150,323 23RD STREET SO,Brigantine,NJ,39.39687932,-74.37812828,RES1,3001,,16,NE,1932,1932,3102,2,2,1184.407733,1184.407733,3507,NO,27.33,37.41,1,1.95,6106,115.281562,124.795931,134.694391,140.605649,I,Above,Flat,0,5701,Wood,32.36963799,0,1.2,,,,1,1,,0.03,nav,1,1932,2,, 8038,NJBF000077189,200 27TH STREET SO,Brigantine,NJ,39.39712815,-74.38361759,RES1,3001,,16,NE,1956,1956,3102,1,1,1997.320052,1997.320052,3507,NO,18.81,26.79,1,0.92,6106,115.166314,124.690295,134.575611,140.51607,I,Above,Gable,0,5701,Wood,22.80119606,0,0,,,,1,1,,0.03,nav,1,1956,1,, 8039,NJBF000077153,314 23RD STREET SO,Brigantine,NJ,39.39689741,-74.37869581,RES1,3001,,18,NE,2012,2012,3102,3,1,2357.659838,2357.659838,3507,NO,47.74,57.34,1,2.57,6106,115.269742,124.785073,134.682166,140.59651,I,Above,Gable,0,5701,Wood,52.54333187,0,0,,,,1,1,,0.03,nav,1,2012,3,, 8040,NJBF000077046,301 27TH STREET SO,Brigantine,NJ,39.39609706,-74.38178512,RES1,3001,,15,NE,1955,1955,3102,2,1,2161.102192,2161.102192,3507,YES,37.22,50.92,1,-0.44,6106,115.215098,124.735072,134.62524,140.558319,I,Above,Gable,0,5701,Wood,44.07113947,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 8041,NJBF000077168,2904 BAYSHORE AVE,Brigantine,NJ,39.39698684,-74.38645694,RES1,3001,,16,NE,1957,1957,3102,1,1,2668.947463,2668.947463,3507,YES,18.35,28.9,1,2.52,6106,115.109455,124.638449,134.517204,140.473029,I,Above,Gable,0,5701,Wood,23.62745486,0,0,,,,1,1,,0.03,nav,1,1957,1,, 8042,NJBF000077093,323 24TH STREET SO,Brigantine,NJ,39.39646013,-74.37883827,RES1,3001,,16,NE,1945,1945,3102,2,1,1602.221705,1602.221705,3507,NO,39.46,53.09,1,1.12,6106,115.271572,124.786782,134.683759,140.599901,I,Above,Flat,0,5701,Wood,46.27676825,0,0,,,,1,1,,0.03,nav,1,1945,2,, 8043,NJBF000077058,401 23RD STREET SO,Brigantine,NJ,39.39618848,-74.377398,RES1,3001,,19,NE,1991,1991,3102,3,1,2751.365096,2751.365096,3507,NO,46.9,57.47,1,2.04,6106,115.303996,124.81657,134.717126,140.625944,I,Above,Hip,0,5701,Wood,52.18893179,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 8044,NJBF000077036,2300 OCEAN AVE,Brigantine,NJ,39.39601579,-74.37788724,RES1,3001,,20,NE,2004,2004,3102,3,1,2911.922972,2911.922972,3507,NO,57.34,68.25,1,2.46,6106,115.295861,124.8091,134.708571,140.620498,I,Above,Hip,0,5701,Wood,62.79352125,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 8045,NJBF000077166,100 29TH STREET SO,Brigantine,NJ,39.39697858,-74.38596598,RES1,3001,,15,NE,1955,1955,3102,2,1,1926.880296,1926.880296,3507,YES,32.08,40.98,1,2.35,6106,115.119646,124.647738,134.527641,140.480905,I,Above,Gable,0,5701,Wood,36.53237299,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 8046,NJBF000076898,321 27TH STREET SO,Brigantine,NJ,39.39525826,-74.38088109,RES1,3001,,16,NE,1934,1934,3102,2,1,1173.78744,1173.78744,3507,NO,27.23,39.17,1,1.25,6106,115.242757,124.760466,134.653189,140.583355,I,Above,Flat,0,5701,Wood,33.1977381,0,1.1,,,,1,1,,0.03,nav,1,1934,2,, 8047,NJBF000076988,,Brigantine,NJ,39.39573743,-74.38257222,RES1,3001,,NaN,NE,1969,0,3102,2,1,1648.606999,1648.606999,3507,NO,33.72,41.13,1,2.7,6106,115.202845,124.723919,134.612414,140.550609,I,Above,Hip,0,5701,Wood,37.42612559,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8048,NJBF000076853,308 28TH STREET SO,Brigantine,NJ,39.39507508,-74.38250235,RES1,3001,,16,NE,1975,1975,3102,2,1,1271.665175,1271.665175,3507,NO,30.81,40.37,1,-0.56,6106,115.211472,124.731888,134.620876,140.560288,I,Above,Gable,0,5701,Wood,35.59021883,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 8049,NJBF000076995,2805 W BRIGANTINE AVE,Brigantine,NJ,39.39577082,-74.38384976,RES1,3001,,16,NE,1956,1956,3102,2,1,1612.689554,1612.689554,3507,YES,28.19,41.55,1,2.54,6106,115.176218,124.699601,134.585077,140.530057,I,Above,Hip,0,5701,Wood,34.8707196,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8050,NJBF000077015,,Brigantine,NJ,39.39587168,-74.37711672,RES1,3001,,NaN,NE,1969,0,3102,2,1,2605.842149,2605.842149,3507,NO,23.66,31.74,1,0.85,6106,115.31318,124.825012,134.726398,140.634385,I,Above,Hip,0,5701,Wood,27.70002497,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8051,NJBF000075035,40 SHIPMASTER DR,Brigantine,NJ,39.38851155,-74.40204895,RES1,3001,,16,NE,1976,1976,3102,2,1,1738.173899,1738.173899,3507,NO,29.67,43.38,1,2.83,6106,114.878299,124.433489,134.281205,140.338624,I,Above,Gable,0,5701,Wood,36.52539464,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 8052,NJBF000074987,38 SHIPMASTER DR,Brigantine,NJ,39.38837271,-74.40193066,RES1,3001,,16,NE,1970,1970,3102,1,1,2520.683463,2520.683463,3507,NO,12.62,21.38,1,-0.8,6106,114.88229,124.437104,134.285136,140.342374,I,Above,Gable,0,5701,Wood,17.00180913,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 8053,NJBF000075162,4500 WHALERMAN RD,Brigantine,NJ,39.3888977,-74.39904259,RES1,3001,,16,NE,1968,1968,3102,1,1,1720.818599,1720.818599,3507,NO,18.73,31.37,1,1.98,6106,114.936768,124.485445,134.339575,140.381047,I,Above,Gable,0,5701,Wood,25.05284538,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8054,NJBF000076779,311 29TH STREET SO,Brigantine,NJ,39.39476614,-74.3826917,RES1,3001,,19,NE,1987,1987,3102,3,1,1899.348011,1899.348011,3507,NO,38.13,51.64,1,-0.27,6106,115.210929,124.731432,134.620123,140.561309,I,Above,Gable,0,5701,Wood,44.88417066,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 8055,NJBF000076433,238 35TH STREET SO,Brigantine,NJ,39.39337678,-74.38918482,RES1,3001,,14,NE,1947,1947,3102,1,1,816.8713991,816.8713991,3507,NO,18.73,27.23,1,0.97,6106,115.092291,124.623834,134.498112,140.477275,I,Above,Gable,0,5701,Wood,22.97740584,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8056,NJBF000076715,308 29TH STREET SO,Brigantine,NJ,39.3945098,-74.38315021,RES1,3001,,16,NE,1968,1968,3102,1,1,2477.948533,2477.948533,3507,NO,20.71,35.58,1,1.96,6106,115.204304,124.725418,134.613158,140.557438,I,Above,Flat,0,5701,Wood,28.14552869,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 8057,NJBF000076723,3600 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39454459,-74.39018175,COM1,3001,,NaN,ME,1969,0,3401,1,1,1844.036142,1844.036142,3507,YES,15.35,23.59,1,2.61,6106,115.059012,124.593362,134.464784,140.446145,I,Above,Hip,0,NaN,Wood,19.46700715,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8058,NJBF000076413,320 32ND STREET SO,Brigantine,NJ,39.3933,-74.3854505,RES1,3001,,16,NE,1955,1955,3102,2,1,1439.727955,1439.727955,3507,NO,33.55,40.68,1,1.58,6106,115.17015,124.69449,134.577428,140.537044,I,Above,Gable,0,5701,Wood,37.11750737,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8059,NJBF000076694,4213 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39441419,-74.40345565,RES1,3001,,43,NE,1962,1962,3102,1,3,2469.356573,2469.356573,3507,NO,14.42,23.57,1,0.87,6106,114.784894,124.346917,134.188711,140.236121,I,Above,Hip,0,5701,Wood,18.99744096,0,0,,,,1,1,,0.03,nav,1,1962,1,, 8060,NJBF000076464,223 36TH STREET SO,Brigantine,NJ,39.39351681,-74.38984158,RES1,3001,,17,NE,2015,2015,3102,3,1,1542.751526,1542.751526,3507,NO,39.19,52.11,1,0.17,6106,115.077195,124.610129,134.482834,140.465065,I,Above,Flat,0,5701,Wood,45.6499702,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 8061,NJBF000075935,18 BEACH COVE,Brigantine,NJ,39.39167864,-74.40221263,RES1,3001,,16,NE,1976,1976,3102,2,1,2428.119416,2428.119416,3507,YES,38.42,44.47,1,2.13,6106,114.840309,124.398043,134.24395,140.293172,I,Above,Gable,0,5701,Wood,41.44743101,0,0,,,,1,1,,0.03,nav,1,1976,2,, 8062,NJBF000075419,3 44TH COVE,Brigantine,NJ,39.3897912,-74.39667068,RES1,3001,,16,NE,1968,1968,3102,1,1,1824.091213,1824.091213,3507,NO,18.57,29.63,1,2.72,6106,114.976338,124.520502,134.379496,140.406596,I,Above,Hip,0,5701,Wood,24.09744577,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8063,NJBF000075972,222 39TH STREET SO,Brigantine,NJ,39.39180461,-74.39249635,RES1,3001,,43,NE,1955,1955,3102,2,2,1312.435378,1312.435378,3507,NO,25.12,39.87,1,-0.28,6106,115.040945,124.577888,134.445353,140.445764,I,Above,Gable,0,5701,Wood,32.49529381,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8064,NJBF000075421,315 40TH STREET SO,Brigantine,NJ,39.389818,-74.390332,RES1,3001,,16,NE,1952,1952,3102,1,1,1072.128959,1072.128959,3507,NO,15.82,28.09,1,0.25,6110,115.107554,124.638429,134.51167,140.506024,I,Above,Gable,0,5701,Wood,21.95689256,0,0,,,,1,1,,0.35,nav,1,1952,1,, 8065,NJBF000075731,4608 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39090495,-74.40991917,RES1,3001,,19,NE,2001,2001,3103,3,1,1466.120414,1466.120414,3505,NO,45.82,54.73,3,1.97,6106,114.687478,124.262789,134.092485,140.180153,I,Above,Gable,0,5701,Wood,50.27423606,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 8066,NJBF000075831,250 39TH STREET SO,Brigantine,NJ,39.39129383,-74.39176141,RES1,3001,,14,NE,1960,1960,3102,1,1,838.4543289,838.4543289,3507,NO,10.39,20.65,1,-0.21,6106,115.061757,124.596794,134.466155,140.464112,I,Above,Gable,0,5701,Wood,15.52098677,0,0,,,,1,1,,0.03,nav,1,1960,1,, 8067,NJBF000075948,328 35TH STREET SO,Brigantine,NJ,39.39172076,-74.3873353,RES1,3001,,43,NE,1940,1940,3102,1,2,1607.164051,1607.164051,3507,NO,15.98,27.48,1,2.52,6106,115.148581,124.675171,134.554462,140.528084,I,Above,Gable,0,5701,Wood,21.73067643,0,0,,,,1,1,,0.03,nav,1,1940,1,, 8068,NJBF000075830,4617 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39129096,-74.410597,RES1,3001,,43,NE,1950,1950,3103,2,2,1550.062128,1550.062128,3505,NO,40.46,54.04,3,6.13,6106,114.669085,124.246239,134.074304,140.163893,I,Above,Hip,0,5701,Wood,47.24945959,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 8069,NJBF000077864,332 13TH STREET SO,Brigantine,NJ,39.40132157,-74.37150742,RES1,3001,,15,NE,1952,1952,3102,1,1,1326.562273,1326.562273,3502,NO,24.83,39.69,5,13.9,6110,115.368695,124.87635,134.788409,140.652805,I,Above,Gable,0,5701,Wood,32.25990979,0,0,,,,1,1,,0.35,nav,1,1952,1,, 8070,NJBF000077863,101 21ST STREET SO,Brigantine,NJ,39.4013182,-74.37982717,RES1,3001,,16,NE,1956,1956,3101,2,1,1666.538547,1666.538547,3507,YES,32.59,46.88,1,2.98,6106,115.199078,124.719475,134.611393,140.5217,I,Above,Gable,0,5701,Wood,39.73474698,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8071,NJBF000074505,30 LIGHTHOUSE DR,Brigantine,NJ,39.3867355,-74.4019105,RES1,3001,,43,NE,1986,1986,3102,2,2,1331.878759,1331.878759,3507,NO,27.02,38.49,1,0.5,6110,114.900777,124.454243,134.302996,140.364799,I,Above,Gable,0,5701,Wood,32.75446612,0,0,,,,1,1,,0.35,nav,1,1986,2,, 8072,NJBF000077310,301 23RD STREET SO,Brigantine,NJ,39.3978199,-74.37887354,RES1,3001,,20,NE,2011,2011,3102,3,1,1963.752966,1963.752966,3507,NO,41.55,51.54,1,-0.27,6106,115.256116,124.77248,134.668664,140.581842,I,Above,Hip,0,5701,Wood,46.54291114,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 8073,NJBF000077473,308 19TH STREET SO,Brigantine,NJ,39.39889251,-74.37601999,RES1,3001,,16,NE,1956,1956,3102,1,1,2150.52156,2150.52156,3507,NO,18.25,24.94,1,2.03,6106,115.302876,124.815455,134.717911,140.612909,I,Above,Gable,0,5701,Wood,21.5966371,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 8074,NJBF000077073,104 30TH STREET SO,Brigantine,NJ,39.39631544,-74.38637624,RES1,3001,,16,NE,1954,1954,3102,1,1,1352.280176,1352.280176,3507,NO,18.56,31.84,1,1.43,6106,115.118368,124.646749,134.526048,140.483105,I,Above,Flat,0,5701,Wood,25.20043562,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8075,NJBF000077055,3001 REVERE BLVD,Brigantine,NJ,39.39616475,-74.38621978,RES1,3001,,15,NE,1954,1954,3102,2,1,1476.874469,1476.874469,3507,YES,39.01,47.37,1,0.84,6106,115.1232,124.651187,134.530927,140.487532,I,Above,Flat,0,5701,Wood,43.19244819,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8076,NJBF000076434,4313 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39338003,-74.40602015,RES1,3001,,NaN,NE,2013,2013,3102,2,1,1098.320478,1098.320478,3507,NO,36.74,46.08,1,-0.02,6106,114.74246,124.309794,134.146568,140.208958,I,Above,Flat,0,5701,Wood,41.41022601,0,0,,,,1,1,,0.03,nav,1,2013,2,, 8077,NJBF000076626,,Brigantine,NJ,39.39412967,-74.400352,RES1,3001,,NaN,NE,1969,0,3102,2,1,2906.073897,2906.073897,3507,NO,24.62,36.84,1,1.8,6106,114.852608,124.407655,134.256415,140.289787,I,Above,Gable,0,5701,Wood,30.73180705,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8078,NJBF000081048,812 LAFAYETTE BLVD,Brigantine,NJ,39.41735755,-74.38036276,RES1,3001,,16,NE,1955,1955,3103,2,1,1121.357162,1121.357162,3505,NO,27.8,38.29,3,5.24,6106,115.021606,124.548116,134.426596,140.305164,I,Above,Gable,0,5701,Wood,33.04730667,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8079,NJBF000076154,4404 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39240752,-74.40673475,RES1,3001,,18,NE,1997,1997,3103,2,1,1257.922346,1257.922346,3505,NO,19.55,30.56,3,-2.92,6106,114.737963,124.306473,134.14221,140.210754,I,Above,Flat,0,5701,Wood,25.05159759,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 8080,NJBF000076120,,Brigantine,NJ,39.39230114,-74.39057686,RES1,3001,,NaN,NE,1969,0,3102,2,1,2587.639632,2587.639632,3507,NO,33.36,43.85,1,1.07,6106,115.075251,124.608703,134.4803,140.469487,I,Above,Hip,0,5701,Wood,38.60579985,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8081,NJBF000076589,237 34TH STREET SO,Brigantine,NJ,39.39400197,-74.38802278,RES1,3001,,15,NE,1953,1953,3102,1,1,812.0754309,812.0754309,3507,NO,20.7,26.84,1,2.51,6106,115.109479,124.639255,134.515906,140.487395,I,Above,Gable,0,5701,Wood,23.77132742,0,0,,,,1,1,,0.03,nav,1,1953,1,, 8082,NJBF000078009,1813 BAYSHORE AVE,Brigantine,NJ,39.4022775,-74.37846744,RES1,3001,,17,NE,1956,1956,3102,2,1,2261.561434,2261.561434,3507,YES,36.85,43.25,1,-0.61,6106,115.216658,124.735489,134.630076,140.530871,I,Above,Hip,0,5701,Wood,40.04781888,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8083,NJBF000080248,5 BRADY PLACE,Brigantine,NJ,39.41443084,-74.3729605,RES1,3001,,17,NE,1972,1972,3102,2,1,1954.910593,1954.910593,3507,NO,31.13,36.37,1,0.56,6106,115.201474,124.718139,134.617153,140.462817,I,Above,Gable,0,5701,Wood,33.75056607,0,0,,,,1,1,,0.03,nav,1,1972,2,, 8084,NJBF000080770,806 BOBBY JONES RD,Brigantine,NJ,39.41623348,-74.38196831,RES1,3001,,16,NE,1961,1961,3103,1,1,1873.059871,1873.059871,3505,NO,16,21.89,3,5.29,6106,115.000388,124.529003,134.404659,140.293616,I,Above,Flat,0,5701,Wood,18.94494161,0,0,,,,1,1,,0.03,nav,1,1961,1,, 8085,NJBF000074910,34 SHIPMASTER DR,Brigantine,NJ,39.3881605,-74.401594,RES1,3001,,43,NE,1970,1970,3102,2,2,1285.839391,1285.839391,3507,NO,35.59,46.82,1,0.58,6106,114.89167,124.445546,134.294403,140.350591,I,Above,Gable,0,5701,Wood,41.20300001,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8086,NJBF000077234,403 20TH STREET SO,Brigantine,NJ,39.39739224,-74.37511559,RES1,3001,,20,NE,2013,2013,3102,3,1,1980.946949,1980.946949,3507,NO,45.54,59.04,1,2.58,6106,115.337558,124.847464,134.752902,140.646248,I,Above,Flat,0,5701,Wood,52.2921493,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 8087,NJBF000074080,8 LIGHTHOUSE DR,Brigantine,NJ,39.38478115,-74.4013897,RES1,3001,,43,NE,1985,1985,3102,2,2,637.4432542,637.4432542,3507,NO,22.83,33.73,1,-0.29,6110,114.933356,124.4839,134.334525,140.399327,I,Above,Gable,0,5701,Wood,28.28096694,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 8088,NJBF000074971,6 SHIPMASTER COVE,Brigantine,NJ,39.38833615,-74.40030571,RES1,3001,,16,NE,1968,1968,3102,1,1,2483.773278,2483.773278,3507,NO,15.53,21.8,1,1.89,6110,114.916616,124.467691,134.319286,140.368614,I,Above,Gable,0,5701,Wood,18.66230962,0,0,,,,1,1,,0.35,nav,1,1968,1,, 8089,NJBF000074635,4505 W BRIGANTINE AVE,Brigantine,NJ,39.38728964,-74.39471832,RES1,3001,,16,NE,1968,1968,3102,2,1,1178.966355,1178.966355,3507,NO,29.95,39.22,1,1.23,6110,115.044529,124.582327,134.446693,140.470615,I,Above,Gable,0,5701,Wood,34.58318184,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8090,NJBF000074605,6 HUDSON COVE,Brigantine,NJ,39.38717896,-74.3966914,RES1,3001,,16,NE,1968,1968,3102,2,1,1450.597608,1450.597608,3507,NO,40.96,54.81,1,2.12,6110,115.004723,124.546736,134.406759,140.441113,I,Above,Gable,0,5701,Wood,47.8878402,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8091,NJBF000073134,46 OCEAN DRIVE WEST,Brigantine,NJ,39.37814691,-74.40808244,RES1,3001,,16,NE,1975,1975,3103,2,1,2236.589963,2236.589963,3505,NO,32.22,42.62,3,8.78,6106,114.867745,124.428111,134.266607,140.384053,I,Above,Hip,0,5701,Wood,37.42030906,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8092,NJBF000073236,5201 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37918724,-74.40537397,RES1,3001,,16,NE,1975,1975,3101,2,1,1839.344454,1839.344454,3507,YES,24.32,33.53,1,0.92,6106,114.912849,124.467454,134.311346,140.412281,I,Above,Hip,0,5701,Wood,28.92113941,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8093,NJBF000074448,76 DELMAR DRIVE,Brigantine,NJ,39.38647188,-74.40298346,RES3B,3001,,33,ME,1980,1980,3301,2,1,6919.228964,6919.228964,3507,YES,25.17,33.2,1,-0.75,6106,114.881265,124.437022,134.283557,140.3514,I,Above,Gable,0,5701,Wood,29.18484169,0,0,,,,1,1,,0.03,nav,1,1980,2,, 8094,NJBF000074458,31 LIGHTHOUSE DR,Brigantine,NJ,39.38651368,-74.40140672,RES1,3001,,43,NE,1980,1980,3102,2,2,1568.836961,1568.836961,3507,NO,32.75,38.81,1,-0.72,6110,114.913745,124.465856,134.31579,140.375736,I,Above,Hip,0,5701,Wood,35.78108977,0,0,,,,1,1,,0.35,nav,1,1980,2,, 8095,NJBF000074432,109 HUDSON DR,Brigantine,NJ,39.38639638,-74.39656537,RES1,3001,,16,NE,1968,1968,3102,2,1,1426.015429,1426.015429,3507,NO,29.78,42.02,1,0.53,6110,115.016035,124.557057,134.417657,140.453517,I,Above,Gable,0,5701,Wood,35.90136601,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8096,NJBF000074461,307 DOLPHIN DR,Brigantine,NJ,39.38653007,-74.39469498,RES1,3001,,19,NE,1997,1997,3102,3,1,1911.458912,1911.458912,3507,YES,51.95,61.68,1,-0.44,6110,115.053448,124.590485,134.455188,140.481049,I,Above,Hip,0,5701,Wood,56.8184347,0,1.1,,,,1,1,,0.35,nav,1,1997,3,, 8097,NJBF000075899,,Brigantine,NJ,39.39155088,-74.38593232,RES3C,3001,,NaN,E,1969,0,3303,3,1,5081.561786,5081.561786,3507,NO,49.19,61.79,1,1.65,6106,115.179388,124.703126,134.585732,140.55229,I,Above,Flat,0,NaN,Wood,55.49221921,0,0,,,,1,1,,0.03,nav,1,1969,3,, 8098,NJBF000078254,240 10TH STREET SO,Brigantine,NJ,39.40412032,-74.37066242,RES1,3001,,16,NE,1954,1954,3102,1,1,1182.177863,1182.177863,3505,NO,14.62,26.46,3,-1.04,6106,115.35596,124.864499,134.776913,140.630628,I,Above,Gable,0,5701,Wood,20.53844738,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8099,NJBF000077766,213 18TH STREET SO,Brigantine,NJ,39.40076072,-74.37597592,RES1,3001,,16,NE,1955,1955,3101,2,1,1470.865545,1470.865545,3507,YES,37.58,44.69,1,2.95,6106,115.283696,124.79762,134.699123,140.589695,I,Above,Gable,0,5701,Wood,41.13659859,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8100,NJBF000077618,2104 REVERE BLVD,Brigantine,NJ,39.39987956,-74.37962017,RES1,3001,,16,NE,1957,1957,3101,1,1,1608.937712,1608.937712,3507,NO,14.1,23.73,1,1.95,6106,115.218688,124.737796,134.631056,140.543542,I,Above,Gable,0,5701,Wood,18.91775273,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 8101,NJBF000077797,300 15TH STREET SO,Brigantine,NJ,39.40092102,-74.37340902,RES1,3001,,17,NE,1987,1987,3102,2,1,1575.466185,1575.466185,3505,NO,26.86,37.51,3,1.54,6106,115.334299,124.844439,134.752081,140.628037,I,Above,Gable,0,5701,Wood,32.18426827,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 8102,NJBF000074847,20 45TH COVE,Brigantine,NJ,39.38797164,-74.39566374,RES1,3001,,16,NE,1968,1968,3102,1,1,1609.215744,1609.215744,3507,NO,11.35,25.64,1,-0.71,6106,115.017312,124.557775,134.419767,140.446703,I,Above,Hip,0,5701,Wood,18.49634837,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8103,NJBF000077726,348 14TH STREET SO,Brigantine,NJ,39.40055794,-74.37192418,RES1,3001,,16,NE,1956,1956,3102,2,1,992.7151562,992.7151562,3502,NO,45.48,58.67,5,14.18,6106,115.368421,124.876077,134.787558,140.655954,I,Above,Hip,0,5701,Wood,52.07865426,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8104,NJBF000076275,255 36TH STREET SO,Brigantine,NJ,39.39281855,-74.38910579,RES1,3001,,16,NE,1952,1952,3102,1,1,1225.237273,1225.237273,3507,NO,18.73,33.65,1,2.51,6106,115.100004,124.630956,134.505678,140.485853,I,Above,Flat,0,5701,Wood,26.18938054,0,0,,,,1,1,,0.03,nav,1,1952,1,, 8105,NJBF000078400,1118 BAYSHORE AVE,Brigantine,NJ,39.40528582,-74.37339888,RES1,3001,,15,NE,1952,1952,3102,1,1,1264.693712,1264.693712,3505,NO,19.71,34.36,3,7.44,6106,115.287991,124.801113,134.706039,140.572574,I,Above,Flat,0,5701,Wood,27.03037204,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 8106,NJBF000078399,1112 BAYSHORE AVE,Brigantine,NJ,39.4052807,-74.37323499,RES1,3001,,16,NE,1951,1951,3102,2,1,846.7816487,846.7816487,3505,NO,34.15,44.94,3,0.24,6106,115.291378,124.804265,134.709595,140.575235,I,Above,Gable,0,5701,Wood,39.54418558,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 8107,NJBF000078372,1019 W BEACH AVE,Brigantine,NJ,39.40511021,-74.37210266,RES1,3001,,16,NE,1985,1985,3102,2,1,1165.440487,1165.440487,3505,NO,28.92,34.26,3,6.29,6106,115.316188,124.827385,134.735604,140.595322,I,Above,Hip,0,5701,Wood,31.59020371,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8108,NJBF000080189,18 CUMMINGS PLACE,Brigantine,NJ,39.41421391,-74.37298113,RES1,3001,,16,NE,1972,1972,3102,1,1,1389.500075,1389.500075,3507,NO,20.4,26.6,1,2.26,6106,115.203302,124.719927,134.619077,140.465268,I,Above,Gable,0,5701,Wood,23.49968051,0,0,,,,1,1,,0.03,nav,1,1972,1,, 8109,NJBF000080917,814 BOBBY JONES RD,Brigantine,NJ,39.41684642,-74.38210516,RES1,3001,,16,NE,1969,1969,3103,2,1,2211.704287,2211.704287,3505,YES,34.92,48.22,3,6.44,6106,114.991402,124.520218,134.395001,140.283385,I,Above,Hip,0,5701,Wood,41.56997371,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 8110,NJBF000074602,16 SHIPMASTER DR,Brigantine,NJ,39.38717232,-74.3996355,RES1,3001,,16,NE,1971,1971,3102,1,1,2138.770074,2138.770074,3507,NO,16.7,28.08,1,2.08,6110,114.943434,124.492038,134.345577,140.394837,I,Above,Gable,0,5701,Wood,22.39179778,0,1.1,,,,1,1,,0.35,nav,1,1971,1,, 8111,NJBF000074772,21 SHIPMASTER DR,Brigantine,NJ,39.38774381,-74.39998429,RES1,3001,,16,NE,1968,1968,3102,1,1,1692.907267,1692.907267,3507,NO,12.79,25.01,1,0.16,6110,114.929856,124.479726,134.332272,140.381664,I,Above,Hip,0,5701,Wood,18.89856528,0,0,,,,1,1,,0.35,nav,1,1968,1,, 8112,NJBF000077658,1704 W BRIGANTINE AVE,Brigantine,NJ,39.40017502,-74.37539898,RES1,3001,,16,NE,1960,1960,3102,1,1,2419.244305,2419.244305,3507,NO,15.39,29.21,1,-0.07,6106,115.301753,124.814351,134.717589,140.606273,I,Above,Hip,0,5701,Wood,22.2973288,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 8113,NJBF000076180,336 33RD STREET SO,Brigantine,NJ,39.39250129,-74.38576249,RES1,3001,,18,NE,2004,2004,3102,3,1,1825.67128,1825.67128,3507,NO,37.04,42.44,1,1.21,6106,115.172477,124.696725,134.579306,140.542576,I,Above,Hip,0,5701,Wood,39.74049311,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 8114,NJBF000077113,200 28TH STREET SO,Brigantine,NJ,39.39663847,-74.38429437,RES1,3001,,16,NE,1956,1956,3102,2,1,1929.976106,1929.976106,3507,YES,34.36,40.63,1,-0.86,6106,115.157712,124.682541,134.56653,140.511777,I,Above,Hip,0,5701,Wood,37.49377307,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8115,NJBF000076549,227 35TH STREET SO,Brigantine,NJ,39.39386064,-74.38907582,RES1,3001,,43,NE,1954,1954,3102,2,2,1223.726776,1223.726776,3507,NO,35.87,50.17,1,2.44,6106,115.089278,124.620976,134.495272,140.472632,I,Above,Gable,0,5701,Wood,43.02171973,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8116,NJBF000076815,3845 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3948955,-74.39495,RES1,3001,,NaN,NE,1969,2019,3102,2,1,1098.807484,1098.807484,3507,NO,26.39,36.24,1,2.27,6106,114.956565,124.500671,134.361083,140.365796,I,Above,Flat,0,5701,Wood,31.31371656,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8117,NJBF000076019,269 37TH STREET SO,Brigantine,NJ,39.39196155,-74.38944433,RES1,3001,,17,NE,1950,1950,3102,2,1,1131.993622,1131.993622,3507,NO,24.57,34.48,1,0.31,6106,115.102382,124.633308,134.507648,140.491792,I,Above,Gable,0,5701,Wood,29.52734146,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8118,NJBF000074834,,Brigantine,NJ,39.3879125,-74.3915295,RES1,3001,,NaN,NE,1969,0,3102,2,1,1686.677441,1686.677441,3507,NO,24.6,38.58,1,2.28,6110,115.103805,124.635401,134.506685,140.512335,I,Above,Flat,0,5701,Wood,31.59052088,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8119,NJBF000077851,102 20TH STREET SO,Brigantine,NJ,39.40123976,-74.37929764,RES1,3001,,16,NE,1950,1950,3101,2,1,2123.683887,2123.683887,3507,NO,40.32,49.88,1,1.87,6106,115.210728,124.730222,134.623451,140.531083,I,Above,Hip,0,5701,Wood,45.10006606,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 8120,NJBF000077873,100 20TH STREET SO,Brigantine,NJ,39.40138195,-74.37943424,RES1,3001,,17,NE,1989,1989,3101,2,1,2084.006792,2084.006792,3507,NO,23.17,35.98,1,1.03,6106,115.206432,124.726236,134.619055,140.527097,I,Above,Hip,0,5701,Wood,29.57253092,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 8121,NJBF000077898,200 17TH STREET SO,Brigantine,NJ,39.40153313,-74.37614892,RES1,3001,,16,NE,1958,1958,3101,1,1,1988.041087,1988.041087,3507,NO,15.11,28.9,1,-0.13,6106,115.271905,124.786643,134.687269,140.577079,I,Above,Flat,0,5701,Wood,22.00337681,0,0,,,,1,1,,0.03,nav,1,1958,1,, 8122,NJBF000076273,3119 OCEAN AVE,Brigantine,NJ,39.39281401,-74.38425033,RES1,3001,,16,NE,1960,1960,3102,2,1,542.732149,542.732149,3507,NO,29.4,36.81,1,0.79,6106,115.200193,124.721877,134.607834,140.562203,I,Above,Hip,0,5701,Wood,33.10541031,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 8123,NJBF000074048,6 BRAMBLE DRIVE,Brigantine,NJ,39.38461323,-74.39856955,RES3C,3001,,37,ME,1978,1978,3301,2,1,4759.052314,4759.052314,3507,YES,25.17,39.79,1,-0.04,6106,114.994122,124.537974,134.394803,140.445849,I,Above,Gable,0,5701,Wood,32.48070509,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 8124,NJBF000076027,,Brigantine,NJ,39.39199014,-74.40765224,RES1,3001,,NaN,NE,1969,0,3103,4,1,1592.959485,1592.959485,3505,NO,67.87,80.28,3,5.91,6106,114.723277,124.293725,134.127707,140.201728,I,Above,Gable,0,5701,Wood,74.0768103,0,0,,,,1,1,,0.03,nav,1,1969,4,, 8125,NJBF000078209,215 13TH STREET SO,Brigantine,NJ,39.40367975,-74.37302215,RES1,3001,,16,NE,1954,1954,3102,1,1,1191.401277,1191.401277,3505,NO,11.28,17.65,3,-2.74,6106,115.312696,124.824252,134.731152,140.599002,I,Above,Flat,0,5701,Wood,14.46739742,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8126,NJBF000077352,202 25TH STREET SO,Brigantine,NJ,39.39805765,-74.38224478,RES1,3001,,15,NE,1950,1950,3102,1,1,1741.846103,1741.846103,3507,NO,16.01,28.26,1,0.87,6106,115.184478,124.706725,134.594774,140.525665,I,Above,Hip,0,5701,Wood,22.13578768,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8127,NJBF000074387,27 LIGHTHOUSE DR,Brigantine,NJ,39.38617711,-74.40141958,RES1,3001,,43,NE,1980,1980,3102,2,2,1462.631908,1462.631908,3507,NO,40.58,55.28,1,1.92,6110,114.917207,124.469061,134.319099,140.380069,I,Above,Flat,0,5701,Wood,47.93083071,0,0,,,,1,1,,0.35,nav,1,1980,2,, 8128,NJBF000075084,9 EXPLORER COVE,Brigantine,NJ,39.38865,-74.400948,RES1,3001,,16,NE,1968,1968,3102,2,1,1261.126547,1261.126547,3507,NO,37.54,42.65,1,-0.74,6106,114.899769,124.452545,134.302602,140.35422,I,Above,Gable,0,5701,Wood,40.09216439,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8129,NJBF000076847,3801 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39503292,-74.39334022,RES1,3001,,17,NE,1952,1952,3102,2,1,6613.366227,6613.366227,3507,NO,25.87,37.2,1,0.91,6106,114.988427,124.529356,134.393335,140.389584,I,Above,Gable,0,5701,Wood,31.53593227,0,0,,,,1,1,,0.03,nav,1,1952,2,, 8130,NJBF000077715,107 23RD STREET SO,Brigantine,NJ,39.40048908,-74.38134021,RES1,3001,,18,NE,2017,2017,3101,2,1,1126.454153,1126.454153,3507,NO,32.68,41.05,1,-0.15,6106,115.176961,124.699313,134.588123,140.508459,I,Above,Gable,0,5701,Wood,36.86785821,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 8131,NJBF000076645,211 35TH STREET SO,Brigantine,NJ,39.39418807,-74.3894601,RES1,3001,,15,NE,1947,1947,3102,1,1,901.41803,901.41803,3507,NO,14.56,20.74,1,2.83,6106,115.077797,124.610484,134.483738,140.462266,I,Above,Hip,0,5701,Wood,17.64972093,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8132,NJBF000074790,4508 HARBOR BEACH BLVD,Brigantine,NJ,39.38779074,-74.39710482,RES1,3001,,18,NE,2011,2011,3102,3,1,2061.868517,2061.868517,3507,NO,54.6,66.57,1,1.6,6106,114.989332,124.532796,134.391662,140.426441,I,Above,Gable,0,5701,Wood,60.58240621,0,0,,,,1,1,,0.03,nav,1,2011,3,, 8133,NJBF000076644,4104 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39418733,-74.3992833,RES1,3001,,16,NE,2003,2003,3102,3,1,1379.294801,1379.294801,3507,NO,47.91,62.76,1,-0.16,6106,114.874234,124.427005,134.2781,140.306125,I,Above,Flat,0,5701,Wood,55.33480488,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 8134,NJBF000076642,4108 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39418239,-74.39955393,RES1,3001,,16,NE,2002,2002,3102,3,1,3838.104465,3838.104465,3507,NO,45.34,56.41,1,2.2,6106,114.868651,124.422002,134.2725,140.301858,I,Above,Hip,0,5701,Wood,50.8737481,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 8135,NJBF000075201,18 EXPLORER RD,Brigantine,NJ,39.38905358,-74.40170236,RES1,3001,,16,NE,1968,1968,3102,2,1,1022.932989,1022.932989,3507,NO,25.08,35.79,1,0.08,6106,114.879597,124.434396,134.282632,140.336811,I,Above,Hip,0,5701,Wood,30.43637518,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8136,NJBF000077833,100 21ST STREET SO,Brigantine,NJ,39.40111887,-74.38029733,RES1,3001,,16,NE,1956,1956,3101,2,1,1491.533609,1491.533609,3507,YES,36.05,46.04,1,2.96,6106,115.191587,124.712621,134.603537,140.516827,I,Above,Hip,0,5701,Wood,41.04363943,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8137,NJBF000077771,301 16TH STREET SO,Brigantine,NJ,39.40077889,-74.37377714,RES1,3001,,17,NE,1910,1910,3102,2,1,2067.512275,2067.512275,3505,NO,25.8,36.28,3,-0.34,6106,115.328328,124.838911,134.745739,140.624063,I,Above,Gable,0,5701,Wood,31.04062023,0,0,,,,1,1,,0.03,nav,1,1910,2,, 8138,NJBF000074459,105 SAILFISH DRIVE,Brigantine,NJ,39.3865199,-74.40371457,RES3B,3001,,35,ME,1987,1987,3301,3,1,7094.314805,7094.314805,3507,NO,49.41,54.92,1,2.55,6106,114.865419,124.422943,134.267879,140.339168,I,Above,Flat,0,5701,Wood,52.16455447,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 8139,NJBF000077077,,Brigantine,NJ,39.39636338,-74.37710472,RES1,3001,,NaN,NE,1969,0,3102,2,1,2114.62585,2114.62585,3507,NO,25.81,38.32,1,-0.94,6106,115.308087,124.820328,134.721499,140.628286,I,Above,Hip,0,5701,Wood,32.06411881,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8140,NJBF000076086,3200 OCEAN AVE,Brigantine,NJ,39.39219651,-74.38416021,RES1,3001,,49,NE,2015,2015,3102,3,2,1552.46439,1552.46439,3507,NO,50.73,60.45,1,-0.32,6106,115.208806,124.729776,134.616217,140.571623,I,Above,Flat,0,5701,Wood,55.5923459,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 8141,NJBF000076629,,Brigantine,NJ,39.39413184,-74.40051976,RES1,3001,,NaN,NE,1969,0,3102,2,1,2281.892678,2281.892678,3507,NO,24.75,35.82,1,0.2,6106,114.84909,124.404503,134.252892,140.287069,I,Above,Hip,0,5701,Wood,30.28712521,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8142,NJBF000074321,,Brigantine,NJ,39.38589563,-74.39405637,RES1,3001,,NaN,NE,1969,0,3102,2,1,1879.671171,1879.671171,3507,NO,26.19,40.56,1,0.16,6106,115.073791,124.608824,134.475181,140.499437,I,Above,Flat,0,5701,Wood,33.37422857,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8143,NJBF000074170,15 DELMAR COURT,Brigantine,NJ,39.38520672,-74.40202179,RES1,3001,,33,NE,1980,1980,3102,2,1,4459.619254,4459.619254,3507,YES,34.47,43.78,1,2.58,6110,114.915398,124.467811,134.316911,140.383644,I,Above,Gable,0,5701,Wood,39.12566811,0,0,,,,1,1,,0.35,nav,1,1980,2,, 8144,NJBF000073983,4701 HARBOR BEACH BLVD,Brigantine,NJ,39.38430056,-74.40083905,RES3A,3001,,43,NE,1985,1985,3301,2,2,1573.933885,1573.933885,3507,NO,24.05,34.44,1,1.66,6106,114.95023,124.499036,134.351027,140.414436,I,Above,Gable,0,5701,Wood,29.24454491,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8145,NJBF000077872,2213 BAYSHORE AVE,Brigantine,NJ,39.40137241,-74.38200273,RES1,3001,,17,NE,1989,1989,3102,2,1,2380.451697,2380.451697,3507,NO,31.24,38.32,1,-0.5,6106,115.153966,124.677962,134.564669,140.486488,I,Above,Hip,0,5701,Wood,34.77970256,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 8146,NJBF000076306,340 32ND STREET SO,Brigantine,NJ,39.392914,-74.384952,RES1,3001,,15,NE,1948,1948,3102,2,1,836.5793084,836.5793084,3507,NO,28.93,34.79,1,1.47,6106,115.184645,124.707725,134.592,140.5499,I,Above,Hip,0,5701,Wood,31.86173031,0,0.2,,,,1,1,,0.03,nav,1,1948,2,, 8147,NJBF000080130,551 CAVERLY DR,Brigantine,NJ,39.41402301,-74.37580115,RES1,3001,,16,NE,1979,1979,3103,2,1,1938.302945,1938.302945,3505,YES,27.49,36.19,3,4.21,6106,115.148139,124.668258,134.560679,140.422288,I,Above,Hip,0,5701,Wood,31.841153,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 8148,NJBF000074520,,Brigantine,NJ,39.38682569,-74.40103129,RES1,3001,,NaN,NE,1969,0,3102,2,1,1517.77969,1517.77969,3507,NO,32.07,39.61,1,-0.08,6110,114.918145,124.46965,134.320279,140.377472,I,Above,Hip,0,5701,Wood,35.83912548,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8149,NJBF000081484,,Brigantine,NJ,39.41947998,-74.36226798,RES1,3001,,NaN,NE,1986,0,3102,2,1,3650.709581,3650.709581,3507,NO,37.1,46.69,1,0.21,6106,115.365041,124.871932,134.793055,140.570773,I,Above,Flat,0,5701,Wood,41.89405654,0,0,,,,1,1,,0.03,nav,1,1986,2,, 8150,NJBF000074616,15 LIGHTHOUSE COVE,Brigantine,NJ,39.38720894,-74.40084726,RES1,3001,,43,NE,1985,1985,3102,2,2,1430.386884,1430.386884,3507,NO,25.1,32.17,1,2.29,6110,114.917753,124.469153,134.32003,140.375223,I,Above,Gable,0,5701,Wood,28.63422569,0,0,,,,1,1,,0.35,nav,1,1985,2,, 8151,NJBF000080271,601 LAFAYETTE BLVD,Brigantine,NJ,39.41451599,-74.37773599,RES1,3001,,16,NE,1968,1968,3103,2,1,1689.548388,1689.548388,3505,YES,37.71,46.15,3,1.55,6106,115.103831,124.626578,134.513888,140.384668,I,Above,Flat,0,5701,Wood,41.93082595,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 8152,NJBF000074237,16 LIGHTHOUSE DR,Brigantine,NJ,39.38551143,-74.40178678,RES1,3001,,43,NE,1980,1980,3102,2,2,1581.056205,1581.056205,3507,NO,34.68,44.72,1,2.47,6110,114.916931,124.469061,134.318557,140.383252,I,Above,Gable,0,5701,Wood,39.69841962,0,0,,,,1,1,,0.35,nav,1,1980,2,, 8153,NJBF000074216,4623 SCHOONER RD,Brigantine,NJ,39.38540736,-74.40055882,RES1,3001,,43,NE,1977,1977,3102,2,2,2072.801648,2072.801648,3507,NO,40.13,52.79,1,2.32,6110,114.943748,124.492924,134.345125,140.403988,I,Above,Gable,0,5701,Wood,46.4572805,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 8154,NJBF000074225,,Brigantine,NJ,39.3854535,-74.3997095,RES1,3001,,NaN,NE,1977,0,3102,2,1,1294.020313,1294.020313,3507,NO,23.99,33.74,1,1.08,6110,114.960963,124.508221,134.362257,140.416722,I,Above,Hip,0,5701,Wood,28.86064144,0,0,,,,1,1,,0.35,nav,1,1977,2,, 8155,NJBF000080783,1 COLLETTE CIRCLE,Brigantine,NJ,39.41628884,-74.37653165,RES1,3001,,17,NE,1996,1996,3103,2,1,1329.883364,1329.883364,3505,NO,35.04,42.54,3,3.72,6106,115.110144,124.631647,134.520323,140.381306,I,Above,Hip,0,5701,Wood,38.79097761,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 8156,NJBF000080776,3 COLLETTE CIRCLE,Brigantine,NJ,39.41626327,-74.37670887,RES1,3001,,17,NE,1997,1997,3103,2,1,1671.895477,1671.895477,3505,NO,32.02,40.62,3,7.84,6106,115.106823,124.628543,134.516813,140.378771,I,Above,Flat,0,5701,Wood,36.31770083,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 8157,NJBF000074631,18 SHIPMASTER DR,Brigantine,NJ,39.38725783,-74.39982652,RES1,3001,,16,NE,1971,1971,3102,2,1,1220.3928,1220.3928,3507,YES,27.67,38.93,1,1.94,6110,114.938499,124.487609,134.340695,140.390669,I,Above,Gable,0,5701,Wood,33.29958866,0,0,,,,1,1,,0.35,nav,1,1971,2,, 8158,NJBF000080803,22 COLLETTE CIRCLE,Brigantine,NJ,39.41636715,-74.37759733,RES1,3001,,17,NE,1994,1994,3103,2,1,1778.44162,1778.44162,3505,NO,32.88,40.18,3,3.21,6106,115.087765,124.610625,134.496653,140.363021,I,Above,Hip,0,5701,Wood,36.53114192,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 8159,NJBF000078066,,Brigantine,NJ,39.40270885,-74.37663071,RES1,3001,,NaN,NE,2015,0,3102,2,1,946.7921058,946.7921058,3507,NO,31.51,45.51,1,-0.69,6106,115.249532,124.765792,134.664532,140.554383,I,Above,Hip,0,5701,Wood,38.50989519,0,0,,,,1,1,,0.03,nav,1,2015,2,, 8160,NJBF000081323,1 12TH STREET NO,Brigantine,NJ,39.41863604,-74.3618544,RES1,3001,,17,NE,1985,1985,3102,2,2,1046.744191,1046.744191,3507,NO,31.75,43.42,1,-0.79,6106,115.381996,124.888204,134.811186,140.587936,I,Above,Gable,0,5701,Wood,37.58962187,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 8161,NJBF000078071,1 19TH STREET SO,Brigantine,NJ,39.40274122,-74.37888671,RES1,3001,,17,NE,1962,1962,3102,2,1,2035.141081,2035.141081,3507,NO,26.59,31.82,1,1.54,6106,115.203145,124.72292,134.616209,140.51823,I,Above,Gable,0,5701,Wood,29.20298383,0,0,,,,1,1,,0.03,nav,1,1962,2,, 8162,NJBF000079609,109 6TH STREET NO,Brigantine,NJ,39.41192188,-74.36105463,RES1,3001,,15,NE,1955,1955,3102,1,1,988.5956561,988.5956561,3507,NO,18.69,27.29,1,1.62,6106,115.467657,124.969722,134.900616,140.684261,I,Above,Hip,0,5701,Wood,22.99051654,0,0,,,,1,1,,0.03,nav,1,1955,1,, 8163,NJBF000080129,803 E EVANS BLVD,Brigantine,NJ,39.41401754,-74.36104648,RES1,3001,,17,NE,1981,2017,3102,2,1,1986.767179,1986.767179,3507,NO,22.12,33.54,1,-0.88,6106,115.445954,124.949236,134.878425,140.658334,I,Above,Hip,0,5701,Wood,27.83149755,0,0,,,,1,1,,0.03,nav,1,1981,2,, 8164,NJBF000076357,263 35TH STREET SO,Brigantine,NJ,39.39310698,-74.38818988,RES1,3001,,16,NE,1947,1947,3102,1,1,1233.877252,1233.877252,3507,NO,17.96,23.11,1,-0.52,6106,115.115778,124.645176,134.521868,140.4965,I,Above,Hip,0,5701,Wood,20.53222357,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8165,NJBF000076359,4329 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39312299,-74.4066355,RES1,3001,,NaN,NE,1956,1956,3103,2,1,2773.349573,2773.349573,3505,NO,27.2,41.88,3,-2.82,6106,114.732363,124.300994,134.136576,140.202569,I,Above,Flat,0,5701,Wood,34.54405432,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 8166,NJBF000078060,330 10TH STREET SO,Brigantine,NJ,39.40264585,-74.36942065,RES1,3001,,19,NE,2007,2007,3102,3,1,1656.995231,1656.995231,3502,NO,42.42,48.65,5,-4.06,6110,115.396875,124.902613,134.819018,140.668782,I,Above,Gable,0,5701,Wood,45.5381169,0,1.1,,,,1,1,,0.35,nav,1,2007,3,, 8167,NJBF000076773,2604 OCEAN AVE,Brigantine,NJ,39.39474784,-74.38011114,RES1,3001,,16,NE,1952,1952,3102,1,1,748.9251937,748.9251937,3507,NO,18.66,26.88,1,1.08,6106,115.264104,124.780035,134.674828,140.601993,I,Above,Hip,0,5701,Wood,22.76932944,0,0,,,,1,1,,0.03,nav,1,1952,1,, 8168,NJBF000075597,4404 HARBOR BEACH BLVD,Brigantine,NJ,39.39044629,-74.39712166,RES1,3001,,16,NE,1968,1968,3102,2,1,1707.192081,1707.192081,3507,NO,36.62,48.61,1,2.14,6106,114.959782,124.505428,134.363131,140.390714,I,Above,Gable,0,5701,Wood,42.61621434,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8169,NJBF000076214,,Brigantine,NJ,39.3926081,-74.39390789,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4024.962828,4024.962828,3507,NO,14.16,26.1,1,0.43,6106,115.002929,124.543374,134.407274,140.412791,I,Above,Gable,0,5701,Wood,20.13177777,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8170,NJBF000074499,106 HUDSON DR,Brigantine,NJ,39.38671992,-74.39685499,RES1,3001,,16,NE,1968,1968,3102,2,1,909.539583,909.539583,3507,NO,30.28,43.78,1,1.35,6110,115.006399,124.548361,134.408198,140.444651,I,Above,Gable,0,5701,Wood,37.03324458,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8171,NJBF000075103,107 45TH STREET SO,Brigantine,NJ,39.38871152,-74.39641769,RES1,3001,,15,NE,1963,1963,3102,1,1,1602.710252,1602.710252,3507,NO,13.94,27.66,1,2.05,6106,114.993464,124.536202,134.396217,140.424982,I,Above,Gable,0,5701,Wood,20.80278333,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 8172,NJBF000081012,810 STERLING PLACE,Brigantine,NJ,39.41721265,-74.38122444,RES1,3001,,16,NE,1973,1973,3103,1,1,1382.441632,1382.441632,3505,NO,18.16,29.08,3,5.69,6106,115.005592,124.533232,134.409785,140.292994,I,Above,Gable,0,5701,Wood,23.62169143,0,0,,,,1,1,,0.03,nav,1,1973,1,, 8173,NJBF000081026,823 W SHORE DR,Brigantine,NJ,39.41725746,-74.3823028,RES1,3001,,16,NE,1968,1968,3103,2,1,529.5330854,529.5330854,3505,NO,29.01,39.34,3,5.88,6106,114.983228,124.512313,134.386254,140.274787,I,Above,Flat,0,5701,Wood,34.17405192,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8174,NJBF000076420,407 29TH STREET SO,Brigantine,NJ,39.39333453,-74.38102472,RES1,3001,,21,NE,1969,2018,3102,2,1,2971.244632,2971.244632,3507,NO,32.45,46.1,1,1.44,6106,115.260786,124.777069,134.670355,140.605913,I,Above,Flat,0,5701,Wood,39.27764699,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 8175,NJBF000077938,209 16TH STREET SO,Brigantine,NJ,39.4017879,-74.37465071,RES1,3001,,16,NE,1956,1956,3102,1,1,2735.435622,2735.435622,3505,NO,15.61,26.18,3,2.31,6106,115.299716,124.812356,134.71646,140.597439,I,Above,Hip,0,5701,Wood,20.89144599,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 8176,NJBF000080618,1300 DUNCAN PLACE,Brigantine,NJ,39.41562885,-74.37309031,RES1,3001,,17,NE,1999,1999,3102,2,1,1595.110127,1595.110127,3507,NO,31.43,42.01,1,-0.56,6106,115.186565,124.703711,134.601369,140.445431,I,Above,Gable,0,5701,Wood,36.72390059,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 8177,NJBF000080962,807 LAFAYETTE BLVD,Brigantine,NJ,39.41703295,-74.37974495,RES1,3001,,17,NE,1970,1970,3103,2,1,2082.529461,2082.529461,3505,NO,26.17,31.81,3,-1.1,6106,115.037437,124.563125,134.443381,140.319462,I,Above,Hip,0,5701,Wood,28.98656232,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8178,NJBF000075714,315 38TH STREET SO,Brigantine,NJ,39.39084308,-74.3891372,RES1,3001,,43,NE,1956,1956,3102,2,2,927.8036694,927.8036694,3507,NO,40.57,54.83,1,2.17,6106,115.120996,124.650367,134.525902,140.511309,I,Above,Gable,0,5701,Wood,47.69710893,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8179,NJBF000076123,324 34TH STREET SO,Brigantine,NJ,39.39230681,-74.386692,RES1,3001,,15,NE,1947,1947,3102,1,1,836.6427208,836.6427208,3507,NO,14.03,20.53,1,2.32,6106,115.155427,124.681281,134.561795,140.530516,I,Above,Flat,0,5701,Wood,17.28093564,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8180,NJBF000074981,,Brigantine,NJ,39.38835768,-74.39219217,RES1,3001,,NaN,NE,1969,0,3102,2,1,2656.909245,2656.909245,3507,NO,32.15,43.23,1,-0.44,6110,115.08514,124.618536,134.488153,140.496092,I,Above,Hip,0,5701,Wood,37.68861857,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8181,NJBF000075513,,Brigantine,NJ,39.39012141,-74.38681593,RES3C,3001,,NaN,E,1969,0,3303,4,1,3284.984072,3284.984072,3507,NO,65.59,78.18,1,1,6110,115.17689,124.70103,134.582195,140.557102,I,Above,Flat,0,NaN,Wood,71.8881314,0,0,,,,1,1,,0.35,nav,1,1969,4,, 8182,NJBF000075072,42 SHIPMASTER DR,Brigantine,NJ,39.38863293,-74.40221246,RES1,3001,,16,NE,1977,1977,3102,1,1,2069.5,2069.5,3507,NO,14.22,25.44,1,2.92,6106,114.873566,124.429222,134.276531,140.334403,I,Above,Hip,0,5701,Wood,19.8321992,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 8183,NJBF000075693,,Brigantine,NJ,39.39076134,-74.39105196,RES1,3001,,NaN,NE,1960,0,3102,2,1,1807.863594,1807.863594,3507,NO,26.37,40.74,1,1.62,6106,115.08228,124.615434,134.486639,140.482304,I,Above,Hip,0,5701,Wood,33.55566285,0,0,,,,1,1,,0.03,nav,1,1960,2,, 8184,NJBF000075041,118 45TH STREET SO,Brigantine,NJ,39.38852997,-74.39507165,RES1,3001,,NaN,NE,1968,1968,3102,2,1,1622.220623,1622.220623,3507,NO,25.16,38.66,1,0.66,6106,115.023454,124.563122,134.426209,140.448597,I,Above,Gable,0,5701,Wood,31.91127657,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8185,NJBF000075294,23 EXPLORER RD,Brigantine,NJ,39.38938264,-74.40190343,RES1,3001,,16,NE,1968,1968,3102,1,1,1589.935367,1589.935367,3507,NO,17.51,32.44,1,0.01,6106,114.871797,124.427294,134.274946,140.329174,I,Above,Hip,0,5701,Wood,24.97831095,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8186,NJBF000075933,,Brigantine,NJ,39.39166582,-74.38655927,RES1,3001,,NaN,NE,1969,0,3102,2,1,1138.179299,1138.179299,3507,NO,25.19,37.93,1,2.15,6106,115.165195,124.690238,134.571344,140.540969,I,Above,Flat,0,5701,Wood,31.5582025,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8187,NJBF000075701,6 ATLANTIS COVE,Brigantine,NJ,39.39079247,-74.40096911,RES1,3001,,16,NE,1972,1972,3102,2,1,5092.849959,5092.849959,3507,NO,27.96,35.98,1,1.64,6106,114.875896,124.430262,134.279315,140.324999,I,Above,Gable,0,5701,Wood,31.97245129,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 8188,NJBF000075375,323 40TH STREET SO,Brigantine,NJ,39.38967527,-74.39012383,RES1,3001,,16,NE,1954,1954,3102,2,1,1283.2438,1283.2438,3507,NO,27.98,42.93,1,2.91,6110,115.113436,124.64376,134.517533,140.511165,I,Above,Hip,0,5701,Wood,35.45333419,0,0,,,,1,1,,0.35,nav,1,1954,2,, 8189,NJBF000075673,,Brigantine,NJ,39.39066866,-74.41053768,RES1,3001,,NaN,NE,1969,0,3103,6,1,2349.835431,2349.835431,3505,NO,96.44,102.41,3,-2.95,6106,114.677039,124.253735,134.082237,140.173437,I,Above,Hip,0,5701,Wood,99.42362226,0,0,,,,1,1,,0.03,nav,1,1969,6,, 8190,NJBF000077133,402 21ST STREET SO,Brigantine,NJ,39.39673571,-74.37629818,RES1,3001,,18,NE,1950,1950,3102,2,1,2858.17219,2858.17219,3507,NO,25.48,30.96,1,2.98,6106,115.320534,124.831775,134.734697,140.636138,I,Above,Flat,0,5701,Wood,28.22014647,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 8191,NJBF000075215,108 45TH STREET SO,Brigantine,NJ,39.38908905,-74.39602216,RES1,3001,,16,NE,1968,1968,3102,1,1,1906.96146,1906.96146,3507,NO,18.83,25.66,1,-0.22,6106,114.997547,124.539739,134.400477,140.426201,I,Above,Hip,0,5701,Wood,22.24600368,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8192,NJBF000076064,352 33RD STREET SO,Brigantine,NJ,39.39211389,-74.38523263,RES1,3001,,18,NE,2008,2008,3102,3,1,2440.065654,2440.065654,3507,NO,48.8,63.45,1,-0.4,6106,115.187617,124.710527,134.594508,140.555906,I,Above,Hip,0,5701,Wood,56.1258259,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 8193,NJBF000075607,278 40TH STREET SO,Brigantine,NJ,39.39048298,-74.39192806,RES1,3001,,16,NE,1950,1950,3102,1,1,1235.67096,1235.67096,3507,NO,14.48,28.65,1,2.89,6106,115.06719,124.601902,134.47124,140.472192,I,Above,Hip,0,5701,Wood,21.56491595,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8194,NJBF000075945,4504 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39171245,-74.40827243,RES1,3001,,18,NE,2003,2003,3103,2,1,1935.617111,1935.617111,3505,NO,28.34,41.91,3,-0.97,6106,114.713291,124.285065,134.117861,140.195566,I,Above,Flat,0,5701,Wood,35.12798313,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 8195,NJBF000075287,2 EXPLORER RD,Brigantine,NJ,39.38936096,-74.39976918,RES1,3001,,16,NE,1968,1968,3102,2,1,1039.810072,1039.810072,3507,NO,32.25,39.66,1,2.25,6106,114.916555,124.46721,134.319544,140.363334,I,Above,Hip,0,5701,Wood,35.95344234,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8196,NJBF000075412,347 39TH STREET SO,Brigantine,NJ,39.38976566,-74.38885694,RES1,3001,,17,NE,2000,2000,3102,2,1,1430.945235,1430.945235,3507,NO,25.59,34.55,1,0.62,6110,115.138641,124.666492,134.543118,140.529818,I,Above,Gable,0,5701,Wood,30.06888784,0,0,,,,1,1,,0.35,nav,1,2000,2,, 8197,NJBF000075174,46 SHIPMASTER DR,Brigantine,NJ,39.38894551,-74.40244341,RES1,3001,,43,NE,1970,1970,3102,2,2,1797.19267,1797.19267,3507,NO,33.35,43.05,1,0.27,6106,114.865307,124.421726,134.268396,140.326502,I,Above,Gable,0,5701,Wood,38.2015132,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8198,NJBF000075042,144 44TH STREET SO,Brigantine,NJ,39.38853294,-74.39377576,RES1,3001,,43,NE,1968,1968,3102,2,2,1050.428416,1050.428416,3507,NO,21.7,30.19,1,-0.92,6106,115.050339,124.587237,134.453222,140.468928,I,Above,Flat,0,5701,Wood,25.94796402,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8199,NJBF000075958,4529 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39175896,-74.40952838,RES1,3001,,16,NE,1954,1954,3103,1,1,1051.354787,1051.354787,3505,NO,20.98,26.12,3,3.22,6106,114.686463,124.261262,134.091357,140.17468,I,Above,Hip,0,5701,Wood,23.55023615,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8200,NJBF000075789,242 40TH STREET SO,Brigantine,NJ,39.39114502,-74.39290516,RES1,3001,,19,NE,2008,2008,3102,3,1,1692.467421,1692.467421,3507,NO,57.32,65.3,1,0.4,6106,115.039686,124.576952,134.44379,140.448048,I,Above,Gable,0,5701,Wood,61.31001348,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 8201,NJBF000075923,4508 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39164723,-74.40841464,RES1,3001,,18,NE,2003,2003,3103,3,1,1692.245689,1692.245689,3505,NO,53.32,58.73,3,7.78,6106,114.710997,124.283077,134.115601,140.194157,I,Above,Hip,0,5701,Wood,56.02333765,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 8202,NJBF000075202,48 SHIPMASTER DR,Brigantine,NJ,39.38905706,-74.40254816,RES1,3001,,16,NE,1970,1970,3102,1,1,1951.433564,1951.433564,3507,NO,12.79,21.5,1,1.28,6106,114.861898,124.418638,134.265031,140.323332,I,Above,Gable,0,5701,Wood,17.14220893,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 8203,NJBF000075979,257 38TH STREET SO,Brigantine,NJ,39.39182143,-74.39049028,RES1,3001,,43,NE,1945,1945,3102,2,2,1201.897736,1201.897736,3507,YES,25.67,36.63,1,1.55,6106,115.082296,124.61519,134.487205,140.477182,I,Above,Hip,0,5701,Wood,31.14758187,0,0,,,,1,1,,0.03,nav,1,1945,2,, 8204,NJBF000075497,4408 PRIVATEER RD,Brigantine,NJ,39.39006455,-74.39815287,RES1,3001,,16,NE,1968,1968,3102,1,1,1676.795577,1676.795577,3507,NO,19.64,26.04,1,0.66,6106,114.942502,124.490107,134.345694,140.379488,I,Above,Flat,0,5701,Wood,22.83950421,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8205,NJBF000075398,4411 WHALERMAN RD,Brigantine,NJ,39.38972174,-74.39952432,RES1,3001,,16,NE,1970,1970,3102,2,1,2028.818531,2028.818531,3507,YES,24.98,32.68,1,0.03,6106,114.917705,124.468084,134.320797,140.362365,I,Above,Gable,0,5701,Wood,28.82889585,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 8206,NJBF000075596,3613 OCEAN AVE,Brigantine,NJ,39.39044385,-74.38733052,RES1,3001,,47,NE,1940,1940,3102,2,2,1847.797955,1847.797955,3507,NO,29.7,35.53,1,0.03,6106,115.162697,124.688144,134.56799,140.544833,I,Above,Gable,0,5701,Wood,32.61357268,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 8207,NJBF000075727,5 ATLANTIS COVE,Brigantine,NJ,39.39089165,-74.4003764,RES1,3001,,17,NE,1997,1997,3102,2,1,2476.997186,2476.997186,3507,NO,31.49,40.03,1,-0.56,6106,114.887168,124.440278,134.290586,140.333087,I,Above,Gable,0,5701,Wood,35.76064651,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 8208,NJBF000075229,,Brigantine,NJ,39.38912297,-74.38937897,RES3C,3001,,NaN,ME,1969,0,3301,2,1,1356.380326,1356.380326,3507,NO,37.57,49.9,1,-0.7,6110,115.134945,124.663253,134.538946,140.530076,I,Above,Hip,0,NaN,Wood,43.73421415,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8209,NJBF000074863,314 43RD STREET SO,Brigantine,NJ,39.38801366,-74.39244355,RES1,3001,,47,NE,1974,1974,3102,2,2,1596.759244,1596.759244,3507,NO,29.53,36.98,1,0.82,6110,115.083721,124.61733,134.486514,140.496682,I,Above,Gable,0,5701,Wood,33.25269155,0,0,,,,1,1,,0.35,nav,1,1974,2,, 8210,NJBF000076111,21 ATLANTIS COVE,Brigantine,NJ,39.39225582,-74.40045016,RES1,3001,,17,NE,1986,1986,3102,2,1,3571.784136,3571.784136,3507,NO,32.47,43.41,1,1.24,6106,114.870804,124.424968,134.274461,140.313515,I,Above,Gable,0,5701,Wood,37.9416759,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 8211,NJBF000076052,19 ATLANTIS COVE,Brigantine,NJ,39.3920672,-74.40031472,RES1,3001,,17,NE,1993,1993,3102,2,1,4271.656769,4271.656769,3507,YES,38.35,47.83,1,-0.09,6106,114.875665,124.429413,134.279295,140.318218,I,Above,Hip,0,5701,Wood,43.08737895,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 8212,NJBF000076560,240 33RD STREET SO,Brigantine,NJ,39.39390441,-74.38730059,RES1,3001,,15,NE,1950,1950,3102,1,1,1122.962612,1122.962612,3507,NO,12.38,26.33,1,-0.1,6106,115.125438,124.65376,134.532124,140.500059,I,Above,Gable,0,5701,Wood,19.35273936,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8213,NJBF000075508,303 SEASHELL LANE,Brigantine,NJ,39.39009576,-74.40333881,RES3B,3001,,35,ME,1984,1984,3301,2,1,2390.709965,2390.709965,3507,YES,29.81,41.9,1,2.78,6106,114.834018,124.393299,134.237504,140.296663,I,Above,Gable,0,5701,Wood,35.85586441,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8214,NJBF000076189,312 34TH STREET SO,Brigantine,NJ,39.39253164,-74.38701984,RES1,3001,,15,NE,1952,1952,3102,1,1,1263.690136,1263.690136,3507,NO,20.02,25.43,1,1.73,6106,115.1462,124.672873,134.552528,140.522427,I,Above,Hip,0,5701,Wood,22.72723256,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 8215,NJBF000075811,,Brigantine,NJ,39.39122204,-74.40932381,RES1,3001,,NaN,NE,1969,0,3103,4,1,2160.984087,2160.984087,3505,NO,55.04,67.45,3,2.25,6106,114.696532,124.27057,134.101371,140.185367,I,Above,Gable,0,5701,Wood,61.24349028,0,0,,,,1,1,,0.03,nav,1,1969,4,, 8216,NJBF000075908,42ND STREET SO,Brigantine,NJ,39.39158882,-74.39414174,COM8,3001,,NaN,ME,1969,0,3401,1,1,1587.666659,1587.666659,3507,NO,20.1,32.94,1,1.51,6106,115.009183,124.54936,134.413209,140.422626,I,Above,Flat,0,NaN,Wood,26.52273617,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8217,NJBF000081185,833 W SHORE DR,Brigantine,NJ,39.41793163,-74.38184841,RES1,3001,,16,NE,1972,1972,3103,2,1,1097.117305,1097.117305,3505,NO,26.44,41.1,3,2.61,6106,114.985666,124.514133,134.388542,140.273427,I,Above,Gable,0,5701,Wood,33.76921541,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 8218,NJBF000076921,320 26TH STREET SO,Brigantine,NJ,39.3954441,-74.38048222,RES1,3001,,16,NE,1955,1955,3102,1,1,1315.556336,1315.556336,3507,NO,15.96,30.85,1,2.23,6110,115.248918,124.766089,134.659665,140.587211,I,Above,Hip,0,5701,Wood,23.40598739,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 8219,NJBF000076911,307 28TH STREET SO,Brigantine,NJ,39.39537031,-74.38216907,RES1,3001,,16,NE,1952,1952,3102,1,1,1544.048346,1544.048346,3507,NO,10.96,16.48,1,-0.73,6106,115.215104,124.73517,134.624797,140.561696,I,Above,Gable,0,5701,Wood,13.71903111,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 8220,NJBF000075800,12 BEACH COVE,Brigantine,NJ,39.39118269,-74.40220563,RES1,3001,,NaN,NE,1976,1976,3102,2,1,2156.561571,2156.561571,3507,NO,35.78,43.26,1,2.26,6106,114.84584,124.403246,134.249408,140.300001,I,Above,Gable,0,5701,Wood,39.52370267,0,0,,,,1,1,,0.03,nav,1,1976,2,, 8221,NJBF000077302,2800 BAYSHORE AVE,Brigantine,NJ,39.39776347,-74.38550796,RES1,3001,,17,NE,1994,1994,3102,2,1,948.5522404,948.5522404,3507,NO,36.94,48.86,1,-0.08,6106,115.120631,124.648424,134.52897,140.477908,I,Above,Hip,0,5701,Wood,42.89727426,0,0,,,,1,1,,0.03,nav,1,1994,2,, 8222,NJBF000076832,3805 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39496811,-74.39361115,RES1,3001,,16,NE,1950,1950,3102,1,1,2562.230847,2562.230847,3507,NO,16.81,23.97,1,-0.73,6106,114.983517,124.52495,134.388349,140.386138,I,Above,Hip,0,5701,Wood,20.38960448,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 8223,NJBF000080909,28 COLLETTE CIRCLE,Brigantine,NJ,39.4168303,-74.37741298,RES1,3001,,18,NE,2000,2000,3103,3,1,2211.811779,2211.811779,3505,NO,55.77,62.29,3,5.7,6106,115.086787,124.60947,134.495527,140.360032,I,Above,Hip,0,5701,Wood,59.03157821,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 8224,NJBF000074299,,Brigantine,NJ,39.38581483,-74.39922472,RES1,3001,,NaN,NE,1979,0,3102,2,1,1325.209715,1325.209715,3507,NO,23.43,34.61,1,2.4,6110,114.967057,124.513534,134.368496,140.419497,I,Above,Gable,0,5701,Wood,29.0226153,0,0,,,,1,1,,0.35,nav,1,1979,2,, 8225,NJBF000081515,,Brigantine,NJ,39.41974216,-74.36253097,RES1,3001,,NaN,NE,1980,0,3102,2,1,3916.303857,3916.303857,3507,NO,28.02,38.33,1,1.9,6106,115.357087,124.864305,134.784506,140.563284,I,Above,Gable,0,5701,Wood,33.17789106,0,0,,,,1,1,,0.03,nav,1,1980,2,, 8226,NJBF000074081,,Brigantine,NJ,39.38478498,-74.40069773,RES1,3001,,NaN,NE,1977,0,3102,2,1,1533.112803,1533.112803,3507,NO,29.11,36.15,1,2.7,6106,114.947773,124.496703,134.348829,140.410153,I,Above,Gable,0,5701,Wood,32.6296521,0,0,,,,1,1,,0.03,nav,1,1977,2,, 8227,NJBF000077730,300 16TH STREET SO,Brigantine,NJ,39.40059479,-74.37415414,RES1,3001,,16,NE,1963,1963,3102,1,1,1917.263057,1917.263057,3505,NO,12.44,23.93,3,-2.42,6106,115.322623,124.833635,134.739652,140.620483,I,Above,Gable,0,5701,Wood,18.18654615,0,1.2,,,,1,1,,0.03,nav,1,1963,1,, 8228,NJBF000081471,,Brigantine,NJ,39.41940144,-74.36211593,RES1,3001,,NaN,NE,1969,0,3102,2,1,2286.122776,2286.122776,3507,NO,30.17,42.54,1,2.53,6106,115.368898,124.875624,134.797209,140.574196,I,Above,Flat,0,5701,Wood,36.35530708,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8229,NJBF000077876,103 20TH STREET SO,Brigantine,NJ,39.40139888,-74.37876932,RES1,3001,,17,NE,2015,2015,3101,1,1,2737.258761,2737.258761,3507,NO,12.02,18.52,1,1.16,6106,115.219844,124.738595,134.632995,140.537404,I,Above,Gable,0,5701,Wood,15.26887931,0,1.1,,,,1,1,,0.03,nav,1,2015,1,, 8230,NJBF000077879,209 17TH STREET SO,Brigantine,NJ,39.40140595,-74.37542839,RES1,3001,,16,NE,1958,1958,3101,2,1,1165.860103,1165.860103,3507,NO,31.2,43.59,1,1.07,6106,115.287966,124.801511,134.703958,140.590076,I,Above,Gable,0,5701,Wood,37.39044897,0,0,,,,1,1,,0.03,nav,1,1958,2,, 8231,NJBF000080118,33 CUMMINGS PLACE,Brigantine,NJ,39.41396701,-74.37338245,RES1,3001,,16,NE,1978,1978,3102,2,1,1561.904889,1561.904889,3507,NO,25.15,37.05,1,0.39,6106,115.197727,124.714773,134.613149,140.461974,I,Above,Hip,0,5701,Wood,31.09845896,0,0,,,,1,1,,0.03,nav,1,1978,2,, 8232,NJBF000080099,549 CAVERLY DR,Brigantine,NJ,39.41391765,-74.37567317,RES1,3001,,16,NE,1979,1979,3103,1,1,1609.508168,1609.508168,3505,NO,18.79,31.22,3,4.51,6106,115.151813,124.671741,134.564562,140.425702,I,Above,Gable,0,5701,Wood,25.00749761,0,0,,,,1,1,,0.03,nav,1,1979,1,, 8233,NJBF000075474,10 LAGOON BLVD,Brigantine,NJ,39.38997803,-74.40075879,RES1,3001,,16,NE,1968,1968,3102,2,1,1776.945484,1776.945484,3507,YES,32.74,44.22,1,1.96,6106,114.889158,124.442488,134.292375,140.339319,I,Above,Flat,0,5701,Wood,38.48300405,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8234,NJBF000074651,4512 HARBOR BEACH BLVD,Brigantine,NJ,39.38734442,-74.39714614,RES1,3001,,16,NE,1968,1968,3102,2,1,2477.847968,2477.847968,3507,NO,36.17,46.21,1,1.44,6106,114.993423,124.536589,134.395541,140.431759,I,Above,Gable,0,5701,Wood,41.19074354,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8235,NJBF000075087,116 45TH STREET SO,Brigantine,NJ,39.38865983,-74.39525923,RES1,3001,,16,NE,1968,1968,3102,2,1,1054.389107,1054.389107,3507,NO,29.17,39.31,1,-0.41,6106,115.018134,124.558316,134.420933,140.443928,I,Above,Gable,0,5701,Wood,34.23669024,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8236,NJBF000077370,105 27TH STREET SO,Brigantine,NJ,39.39817392,-74.3841724,RES1,3001,,16,NE,1962,1962,3102,2,1,1308.979004,1308.979004,3507,YES,25.13,39.14,1,2.02,6106,115.143673,124.669362,134.55281,140.493698,I,Above,Gable,0,5701,Wood,32.13619307,0,0,,,,1,1,,0.03,nav,1,1962,2,, 8237,NJBF000080868,812 BOBBY JONES RD,Brigantine,NJ,39.41666556,-74.38207576,RES1,3001,,18,NE,2000,2000,3103,3,1,1256.469238,1256.469238,3505,NO,64.46,75.88,3,8.98,6106,114.993811,124.522585,134.397599,140.286207,I,Above,Gable,0,5701,Wood,70.16872118,0,0,,,,1,1,,0.03,nav,1,2000,3,, 8238,NJBF000080810,,Brigantine,NJ,39.41642574,-74.38201039,RES1,3001,,NaN,NE,1971,0,3103,5,1,3237.038855,3237.038855,3505,NO,64.18,69.99,3,-1.06,6106,114.99758,124.526259,134.401644,140.290414,I,Above,Gable,0,5701,Wood,67.08522272,0,0,,,,1,1,,0.03,nav,1,1971,5,, 8239,NJBF000080933,806 STERLING PLACE,Brigantine,NJ,39.416937,-74.381165,RES1,3001,,16,NE,1973,1973,3103,1,1,1335.952172,1335.952172,3505,NO,13.67,19.83,3,2.94,6106,115.00958,124.537136,134.414078,140.29755,I,Above,Gable,0,5701,Wood,16.75191886,0,0,,,,1,1,,0.03,nav,1,1973,1,, 8240,NJBF000080813,1327 RAY AVE,Brigantine,NJ,39.41643141,-74.37558031,RES1,3001,,17,NE,1994,1994,3103,1,1,1494.767178,1494.767178,3505,NO,17.71,29.56,3,-1.48,6106,115.127979,124.64832,134.539183,140.394906,I,Above,Flat,0,5701,Wood,23.6367699,0,0,,,,1,1,,0.03,nav,1,1994,1,, 8241,NJBF000080681,800 BOBBY JONES RD,Brigantine,NJ,39.41589561,-74.3818127,RES1,3001,,16,NE,1963,1963,3103,2,1,1542.526033,1542.526033,3505,NO,36.84,51.73,3,8.89,6106,115.006954,124.535342,134.411666,140.300537,I,Above,Gable,0,5701,Wood,44.28548368,0,0,,,,1,1,,0.03,nav,1,1963,2,, 8242,NJBF000080594,1304 DUNCAN PLACE,Brigantine,NJ,39.41558107,-74.3734358,RES1,3001,,17,NE,2000,1985,3102,2,1,1898.903015,1898.903015,3507,NO,21.44,32.96,1,-0.82,6106,115.180058,124.697609,134.59446,140.440464,I,Above,Gable,0,5701,Wood,27.19695642,0,0,,,,1,1,,0.03,nav,1,2000,2,, 8243,NJBF000080657,713 BOBBY JONES RD,Brigantine,NJ,39.41581311,-74.38115782,RES1,3001,,16,NE,1960,1960,3103,1,1,2095.940227,2095.940227,3505,NO,16.88,22.51,3,3.03,6106,115.021111,124.548601,134.426561,140.312292,I,Above,Hip,0,5701,Wood,19.69766536,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 8244,NJBF000080721,802 BOBBY JONES RD,Brigantine,NJ,39.416016,-74.38184239,RES1,3001,,16,NE,1974,1974,3103,2,1,1119.533295,1119.533295,3505,NO,25.74,30.79,3,0.64,6106,115.005148,124.533581,134.409731,140.2985,I,Above,Hip,0,5701,Wood,28.26326255,0,0,,,,1,1,,0.03,nav,1,1974,2,, 8245,NJBF000079713,106 QUAY BLVD,Brigantine,NJ,39.41244419,-74.36108256,RES1,3001,,15,NE,1949,1949,3102,1,1,988.0294903,988.0294903,3507,NO,12.83,17.89,1,-0.63,6106,115.461632,124.964044,134.894446,140.677327,I,Above,Flat,0,5701,Wood,15.35582452,0,0,,,,1,1,,0.03,nav,1,1949,1,, 8246,NJBF000078234,223 12TH STREET SO,Brigantine,NJ,39.40391268,-74.37210562,RES1,3001,,16,NE,1953,1953,3102,2,1,1228.802401,1228.802401,3505,NO,27.66,34.86,3,3.95,6106,115.328837,124.839247,134.748242,140.610492,I,Above,Gable,0,5701,Wood,31.25826449,0,0,,,,1,1,,0.03,nav,1,1953,2,, 8247,NJBF000078190,1419 BAYSHORE AVE,Brigantine,NJ,39.40354886,-74.37525457,RES1,3001,,16,NE,1953,1953,3102,2,1,2525.437282,2525.437282,3507,NO,40.68,48.57,1,2.43,6106,115.268644,124.783371,134.684913,140.565388,I,Above,Flat,0,5701,Wood,44.62211616,0,0,,,,1,1,,0.03,nav,1,1953,2,, 8248,NJBF000078240,246 10TH STREET SO,Brigantine,NJ,39.40399474,-74.37058286,RES1,3001,,17,NE,2005,2005,3102,1,1,1972.939893,1972.939893,3505,NO,23.25,38.15,3,6.64,6106,115.358894,124.867236,134.779925,140.633456,I,Above,Gable,0,5701,Wood,30.70103406,0,0,,,,1,1,,0.03,nav,1,2005,1,, 8249,NJBF000078232,250 10TH STREET SO,Brigantine,NJ,39.40390763,-74.37043536,RES1,3001,,16,NE,1954,1954,3102,2,1,1243.313366,1243.313366,3505,YES,32.08,47.04,3,-2.47,6106,115.362825,124.8709,134.784011,140.636888,I,Above,Hip,0,5701,Wood,39.56341614,0,0.1,,,,1,1,,0.03,nav,1,1954,2,, 8250,NJBF000078213,231 12TH STREET SO,Brigantine,NJ,39.40372361,-74.3719304,RES1,3001,,16,NE,1950,1950,3102,2,1,762.67077,762.67077,3505,YES,33.73,48.18,3,-1.02,6106,115.334425,124.844456,134.754005,140.615669,I,Above,Hip,0,5701,Wood,40.95443297,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8251,NJBF000078208,1413 BAYSHORE AVE,Brigantine,NJ,39.40365222,-74.37511144,RES1,3001,,19,NE,1953,2018,3102,3,1,1654.601925,1654.601925,3507,NO,42.33,51.22,1,0.41,6106,115.270483,124.785062,134.686887,140.566348,I,Above,Hip,0,5701,Wood,46.77500968,0,1.1,,,,1,1,,0.03,nav,1,1953,3,, 8252,NJBF000078191,246 11TH STREET SO,Brigantine,NJ,39.40355796,-74.37128695,RES1,3001,,15,NE,1950,1950,3102,1,1,1041.979264,1041.979264,3505,NO,15.5,25.89,3,2.8,6106,115.349255,124.858266,134.7695,140.627908,I,Above,Hip,0,5701,Wood,20.69610675,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8253,NJBF000078243,235 11TH STREET SO,Brigantine,NJ,39.40403148,-74.3710782,RES1,3001,,16,NE,1950,1950,3102,1,1,1602.528173,1602.528173,3505,NO,21.81,32.85,3,8.9,6106,115.348462,124.857514,134.768961,140.625202,I,Above,Gable,0,5701,Wood,27.3299192,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8254,NJBF000078148,1101 W BRIGANTINE AVE,Brigantine,NJ,39.40325573,-74.37100288,RES1,3001,,18,NE,2003,2003,3102,3,1,1837.120041,1837.120041,3505,NO,56.63,66.4,3,3.05,6106,115.358243,124.86664,134.778763,140.636208,I,Above,Gable,0,5701,Wood,61.5119141,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 8255,NJBF000078125,2 16TH STREET SO,Brigantine,NJ,39.40309784,-74.37647313,RES1,3001,,17,NE,1988,1988,3102,3,1,2479.6535,2479.6535,3507,NO,35.93,45.07,1,-0.64,6106,115.248616,124.764884,134.663761,140.551892,I,Above,Flat,0,5701,Wood,40.50064886,0,1.1,,,,1,1,,0.03,nav,1,1988,3,, 8256,NJBF000078041,201 15TH STREET SO,Brigantine,NJ,39.40250189,-74.37406472,GOV1,3001,,NaN,E,1969,0,3401,2,1,16993.93864,16993.93864,3507,YES,34.6,47.53,1,1.5,6106,115.304025,124.816294,134.721387,140.597563,I,Above,Gable,0,NaN,Wood,41.06211611,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8257,NJBF000078102,201 15TH STREET SO,Brigantine,NJ,39.40296011,-74.37451053,EDU1,3001,,NaN,E,1969,0,3401,2,1,6294.024516,6294.024516,3507,YES,27.36,39.35,1,-0.7,6106,115.290062,124.803302,134.707025,140.584678,I,Above,Hip,0,NaN,Wood,33.35519599,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8258,NJBF000078130,1 18TH STREET SO,Brigantine,NJ,39.40311924,-74.37811712,RES1,3001,,17,NE,1988,1988,3102,3,1,1331.27057,1331.27057,3507,NO,32.07,41.24,1,-0.54,6106,115.214854,124.733654,134.628553,140.525572,I,Above,Gable,0,5701,Wood,36.65266568,0,0,,,,1,1,,0.03,nav,1,1988,3,, 8259,NJBF000078312,227 10TH STREET SO,Brigantine,NJ,39.40464841,-74.3705179,RES1,3001,,15,NE,1955,1955,3102,1,1,890.3224372,890.3224372,3505,NO,19.58,26.07,3,0.23,6106,115.353268,124.861975,134.774401,140.626209,I,Above,Gable,0,5701,Wood,22.82455709,0,0,,,,1,1,,0.03,nav,1,1955,1,, 8260,NJBF000078184,250 11TH STREET SO,Brigantine,NJ,39.40348226,-74.37119683,RES1,3001,,15,NE,1954,1954,3102,1,1,1001.384634,1001.384634,3505,NO,11.99,21.19,3,-2.79,6106,115.351893,124.860724,134.772227,140.630289,I,Above,Hip,0,5701,Wood,16.5907442,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 8261,NJBF000078241,219 12TH STREET SO,Brigantine,NJ,39.40399866,-74.37219917,RES1,3001,,15,NE,1956,1956,3102,1,1,1041.806294,1041.806294,3505,NO,21.56,33.31,3,4.91,6106,115.326033,124.836632,134.745344,140.607931,I,Above,Hip,0,5701,Wood,27.43223318,0,0,,,,1,1,,0.03,nav,1,1956,1,, 8262,NJBF000078036,329 11TH STREET SO,Brigantine,NJ,39.40246187,-74.36967674,RES1,3001,,19,NE,2008,2008,3102,3,1,1829.115803,1829.115803,3502,NO,57.63,67.86,5,5.46,6110,115.39365,124.899599,134.815484,140.667089,I,Above,Gable,0,5701,Wood,62.74716619,0,1.1,,,,1,1,,0.35,nav,1,2008,3,, 8263,NJBF000078042,309 12TH STREET SO,Brigantine,NJ,39.40250269,-74.37082141,COM1,3001,,19,ME,2008,2008,3401,3,1,2130.12851,2130.12851,3507,NO,55.46,67.79,1,0.73,6106,115.369983,124.877567,134.790604,140.64861,I,Above,Flat,0,NaN,Wood,61.62332968,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 8264,NJBF000078024,340 10TH STREET SO,Brigantine,NJ,39.4023725,-74.36908283,RES1,3001,,19,NE,2013,2013,3102,3,1,1167.599796,1167.599796,3502,NO,40.92,47.31,5,2.84,6110,115.406667,124.911724,134.829132,140.677541,I,Above,Hip,0,5701,Wood,44.11888152,0,1.1,,,,1,1,,0.35,nav,1,2013,3,, 8265,NJBF000077919,1700 REVERE BLVD,Brigantine,NJ,39.40166935,-74.37631678,RES1,3001,,18,NE,1945,1945,3101,3,1,2477.085132,2477.085132,3507,NO,36.32,42.73,1,2.75,6106,115.267025,124.782115,134.682253,140.572685,I,Above,Gable,0,5701,Wood,39.5225729,0,0,,,,1,1,,0.03,nav,1,1945,3,, 8266,NJBF000077958,1007 OCEAN AVE,Brigantine,NJ,39.40189624,-74.36882215,RES1,3001,,21,NE,2004,2004,3102,3,1,2157.669546,2157.669546,3502,NO,41.28,47.54,5,7.62,6110,115.417065,124.92138,134.83972,140.687632,I,Above,Flat,0,5701,Wood,44.41062581,0,1.1,,,,1,1,,0.35,nav,1,2004,3,, 8267,NJBF000078018,1801 BAYSHORE AVE,Brigantine,NJ,39.40236197,-74.37805981,RES1,3001,,16,NE,1960,1960,3102,2,1,1862.573589,1862.573589,3507,YES,28,36.53,1,2.49,6106,115.224064,124.742311,134.637823,140.536223,I,Above,Hip,0,5701,Wood,32.26305646,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 8268,NJBF000077927,1904 BAYSHORE AVE,Brigantine,NJ,39.40170958,-74.37907541,RES1,3001,,17,NE,1998,1998,3101,2,1,1355.06741,1355.06741,3507,NO,26.8,36.8,1,1.07,6106,115.210274,124.729711,134.62319,140.52855,I,Above,Hip,0,5701,Wood,31.79905577,0,1.2,,,,1,1,,0.03,nav,1,1998,2,, 8269,NJBF000077968,1701 REVERE BLVD,Brigantine,NJ,39.40197082,-74.37662901,RES1,3001,,16,NE,1962,1962,3101,1,1,2759.520987,2759.520987,3507,NO,18.46,29.5,1,-0.78,6106,115.257436,124.773211,134.672412,140.563885,I,Above,Gable,0,5701,Wood,23.97881684,0,1.2,,,,1,1,,0.03,nav,1,1962,1,, 8270,NJBF000078058,319 11TH STREET SO,Brigantine,NJ,39.4026283,-74.36986369,RES1,3001,,16,NE,1954,1950,3102,2,1,1223.681303,1223.681303,3502,NO,32.55,41.79,5,5.66,6106,115.388078,124.894416,134.809736,140.662057,I,Above,Hip,0,5701,Wood,37.1734694,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 8271,NJBF000077909,,Brigantine,NJ,39.40159031,-74.38111221,RES1,3001,,NaN,NE,2017,0,3102,2,1,4332.830237,4332.830237,3507,NO,21.35,33.4,1,-0.34,6106,115.169889,124.692545,134.581235,140.497806,I,Above,Flat,0,5701,Wood,27.37512129,0,0,,,,1,1,,0.03,nav,1,2017,2,, 8272,NJBF000077809,2204 BAYSHORE AVE,Brigantine,NJ,39.40096821,-74.38176937,RES1,3001,,16,NE,1955,1955,3101,2,1,1853.170081,1853.170081,3507,NO,37.83,43.18,1,0.77,6106,115.163062,124.686427,134.573933,140.495446,I,Above,Gable,0,5701,Wood,40.50614488,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 8273,NJBF000077704,301 17TH STREET SO,Brigantine,NJ,39.40041333,-74.374371,RES1,3001,,16,NE,1948,1948,3102,1,1,521.5783499,521.5783499,3505,NO,20.68,25.95,3,6.13,6106,115.320156,124.831357,134.736952,140.619394,I,Above,Hip,0,5701,Wood,23.31364536,0,1.2,,,,1,1,,0.03,nav,1,1948,1,, 8274,NJBF000077662,,Brigantine,NJ,39.40019525,-74.37086114,RES1,3001,,NaN,NE,1969,0,3102,2,1,2330.127856,2330.127856,3502,NO,34.73,49.36,5,0.22,6110,115.393945,124.899751,134.814046,140.677199,I,Above,Hip,0,5701,Wood,42.04493939,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8275,NJBF000077703,206 19TH STREET SO,Brigantine,NJ,39.40040709,-74.37740165,RES1,3001,,16,NE,1958,1958,3101,1,1,1874.607178,1874.607178,3507,NO,14.05,26.68,1,-0.65,6106,115.258381,124.774285,134.672555,140.571759,I,Above,Gable,0,5701,Wood,20.36616482,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 8276,NJBF000077838,340 13TH STREET SO,Brigantine,NJ,39.4011464,-74.37133566,RES1,3001,,15,NE,1959,1959,3102,1,1,1087.901816,1087.901816,3502,NO,18.39,25.15,5,3.89,6110,115.37406,124.881329,134.793911,140.657718,I,Above,Gable,0,5701,Wood,21.77285078,0,1.1,,,,1,1,,0.35,nav,1,1959,1,, 8277,NJBF000077847,2104 BAYSHORE AVE,Brigantine,NJ,39.40120222,-74.38084334,RES1,3001,,15,NE,1956,1956,3101,2,1,1572.689414,1572.689414,3507,NO,38.82,50.31,1,2.37,6106,115.179528,124.701507,134.591073,140.5071,I,Above,Gable,0,5701,Wood,44.56459868,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8278,NJBF000077675,314 15TH STREET SO,Brigantine,NJ,39.4002655,-74.372944,RES1,3001,,15,NE,1937,1937,3102,2,1,574.4727737,574.4727737,3505,NO,43.89,58.6,3,5.8,6106,115.350803,124.859738,134.768891,140.643669,I,Above,Flat,0,5701,Wood,51.24306717,0,1.2,,,,1,1,,0.03,nav,1,1937,2,, 8279,NJBF000077798,107 21ST STREET SO,Brigantine,NJ,39.4009235,-74.3795285,RES1,3001,,16,NE,1960,1960,3101,1,1,1404.062771,1404.062771,3507,NO,13.69,25.1,1,0.83,6106,115.209389,124.72905,134.621916,140.531519,I,Above,Gable,0,5701,Wood,19.3943948,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 8280,NJBF000077816,1213 OCEAN AVE,Brigantine,NJ,39.40101908,-74.37045691,RES1,3001,,18,NE,2012,2012,3102,3,1,1863.264164,1863.264164,3502,NO,46.68,54.84,5,10.64,6110,115.393289,124.899191,134.814009,140.673101,I,Above,Hip,0,5701,Wood,50.75724442,0,0,,,,1,1,,0.35,nav,1,2012,3,, 8281,NJBF000077638,2100 REVERE BLVD,Brigantine,NJ,39.40003579,-74.37932741,RES1,3001,,15,NE,1956,1956,3101,1,1,2196.599636,2196.599636,3507,NO,15.75,28.19,1,2.97,6106,115.22301,124.741747,134.635617,140.546157,I,Above,Hip,0,5701,Wood,21.97196835,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 8282,NJBF000077821,101 22ND STREET SO,Brigantine,NJ,39.40104683,-74.38072,RES1,3001,,16,NE,1956,1956,3101,2,1,1500.591073,1500.591073,3507,YES,29.12,43.84,1,-0.83,6106,115.183698,124.705379,134.595331,140.511056,I,Above,Gable,0,5701,Wood,36.47974275,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8283,NJBF000077583,308 17TH STREET SO,Brigantine,NJ,39.39962944,-74.37447983,RES1,3001,,16,NE,1954,1954,3102,1,1,2657.77337,2657.77337,3505,NO,11.07,24.48,3,-0.13,6106,115.326365,124.837123,134.742898,140.627681,I,Above,Gable,0,5701,Wood,17.77416779,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 8284,NJBF000077586,2408 BAYSHORE AVE,Brigantine,NJ,39.3996433,-74.38334986,RES1,3001,,17,NE,2004,2004,3101,2,1,2340.479812,2340.479812,3507,NO,27,33.76,1,0.83,6106,115.144801,124.670016,134.554566,140.48759,I,Above,Hip,0,5701,Wood,30.38339753,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 8285,NJBF000077691,2101 REVERE BLVD,Brigantine,NJ,39.40035153,-74.37964276,RES1,3001,,17,NE,1956,1956,3101,2,1,2115.838711,2115.838711,3507,NO,35.41,50.17,1,0.41,6106,115.213162,124.73263,134.625561,140.537087,I,Above,Gable,0,5701,Wood,42.79042844,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 8286,NJBF000077760,1200 OCEAN AVE,Brigantine,NJ,39.40074498,-74.36989223,RES1,3001,,19,NE,1988,1988,3102,3,1,3347.116531,3347.116531,3502,NO,49.01,58.87,5,3.3,6110,115.407714,124.912583,134.828951,140.685407,I,Above,Flat,0,5701,Wood,53.94446882,0,0,,,,1,1,,0.35,nav,1,1988,3,, 8287,NJBF000077801,104 21ST STREET SO,Brigantine,NJ,39.40093353,-74.38018021,RES1,3001,,16,NE,1956,1956,3101,2,1,2971.974438,2971.974438,3507,YES,26.79,37.08,1,1.89,6106,115.195955,124.71668,134.607986,140.521072,I,Above,Hip,0,5701,Wood,31.93285899,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8288,NJBF000074274,,Brigantine,NJ,39.385691,-74.3993835,RES1,3001,,NaN,NE,1969,0,3102,2,1,1335.399936,1335.399936,3507,NO,38.88,44.44,1,2.3,6110,114.965139,124.511865,134.366527,140.418674,I,Above,Hip,0,5701,Wood,41.65637616,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8289,NJBF000077562,108 24TH STREET SO,Brigantine,NJ,39.39947487,-74.38219046,RES1,3001,,16,NE,1960,1960,3101,1,1,1611.46906,1611.46906,3507,NO,14.63,24.71,1,-0.07,6106,115.17039,124.693514,134.5809,140.508149,I,Above,Hip,0,5701,Wood,19.67050663,0,0,,,,1,1,,0.03,nav,1,1960,1,, 8290,NJBF000077331,319 21ST STREET SO,Brigantine,NJ,39.39793558,-74.3767512,RES1,3001,,19,NE,1964,2017,3102,3,1,2487.973334,2487.973334,3507,NO,48.74,60.35,1,2.32,6106,115.298277,124.811258,134.712469,140.613688,I,Above,Hip,0,5701,Wood,54.54843356,0,1.1,,,,1,1,,0.03,nav,1,1964,3,, 8291,NJBF000077569,2001 W BRIGANTINE AVE,Brigantine,NJ,39.39952382,-74.37775735,RES1,3001,,NaN,NE,1959,0,3101,1,1,2083.861716,2083.861716,3507,NO,16.4,23.15,1,-0.73,6106,115.260604,124.776435,134.674358,140.577507,I,Above,Hip,0,5701,Wood,19.77652702,0,0,,,,1,1,,0.03,nav,1,1959,1,, 8292,NJBF000077556,200 22ND STREET SO,Brigantine,NJ,39.39943426,-74.37988408,RES1,3001,,16,NE,1954,1954,3101,1,1,1746.247974,1746.247974,3507,NO,10.78,23.33,1,-0.05,6106,115.218068,124.737301,134.630186,140.54513,I,Above,Gable,0,5701,Wood,17.05522281,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 8293,NJBF000077590,302 18TH STREET SO,Brigantine,NJ,39.39967688,-74.37561006,RES1,3001,,NaN,NE,1959,1959,3102,2,1,1327.052675,1327.052675,3507,NO,32.93,44.4,1,-0.3,6106,115.302801,124.815348,134.718358,140.609323,I,Above,Hip,0,5701,Wood,38.6646448,0,0,,,,1,1,,0.03,nav,1,1959,2,, 8294,NJBF000077593,113 24TH STREET SO,Brigantine,NJ,39.39968657,-74.38171784,RES1,3001,,17,NE,1998,1998,3101,2,1,2312.130496,2312.130496,3507,NO,35.42,47.07,1,0.8,6106,115.177794,124.70026,134.588641,140.51287,I,Above,Hip,0,5701,Wood,41.2408772,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 8295,NJBF000077498,200 23RD STREET SO,Brigantine,NJ,39.39907148,-74.38069317,RES1,3001,,15,NE,1954,1954,3101,1,1,1474.903305,1474.903305,3507,NO,12.83,27.76,1,-0.87,6106,115.205401,124.725724,134.616889,140.537049,I,Above,Gable,0,5701,Wood,20.29352853,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8296,NJBF000077539,212 21ST STREET SO,Brigantine,NJ,39.39932067,-74.3786893,RES1,3001,,18,NE,2009,2009,3101,1,1,2836.441139,2836.441139,3507,NO,13.11,21.08,1,-0.87,6106,115.243732,124.760922,134.656726,140.565435,I,Above,Hip,0,5701,Wood,17.09530008,0,0,,,,1,1,,0.03,nav,1,2009,1,, 8297,NJBF000075622,3601 OCEAN AVE,Brigantine,NJ,39.39054059,-74.38716653,RES1,3001,,17,NE,1966,1966,3102,2,1,2405.731588,2405.731588,3507,NO,38.35,48.86,1,1.86,6106,115.165015,124.690229,134.570413,140.546133,I,Above,Flat,0,5701,Wood,43.60597884,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 8298,NJBF000073385,5213 WATERVIEW DR,Brigantine,NJ,39.38030818,-74.4077817,RES1,3001,,16,NE,1975,1975,3103,2,1,1118.800286,1118.800286,3505,NO,25.1,33.25,3,0.75,6106,114.849529,124.411402,134.249897,140.359375,I,Above,Gable,0,5701,Wood,29.17544387,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8299,NJBF000075647,,Brigantine,NJ,39.39060721,-74.41069891,RES1,3001,,NaN,NE,1969,0,3103,5,1,2109.238493,2109.238493,3505,NO,90.11,97.09,3,8.54,6106,114.67433,124.251387,134.079579,140.171699,I,Above,Gable,0,5701,Wood,93.60240807,0,0,,,,1,1,,0.03,nav,1,1969,5,, 8300,NJBF000077511,102 25TH STREET SO,Brigantine,NJ,39.39914823,-74.38342317,RES1,3001,,15,NE,1955,1955,3102,1,1,1252.352659,1252.352659,3507,NO,15.01,21.7,1,2.33,6106,115.148602,124.673626,134.558288,140.492875,I,Above,Gable,0,5701,Wood,18.35370866,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8301,NJBF000077500,315 18TH STREET SO,Brigantine,NJ,39.39907399,-74.37439914,RES1,3001,,16,NE,1956,1956,3102,1,1,2777.237874,2777.237874,3505,NO,23.33,34.68,3,5.04,6106,115.333997,124.844186,134.750465,140.636027,I,Above,Hip,0,5701,Wood,29.0052336,0,0,,,,1,1,,0.03,nav,1,1956,1,, 8302,NJBF000075660,343 GULL COVE,Brigantine,NJ,39.39063768,-74.40517017,RES3B,3001,,35,ME,1987,1987,3301,2,1,6813.108637,6813.108637,3507,YES,25.41,30.43,1,2.47,6106,114.789846,124.353714,134.1937,140.26005,I,Above,Gable,0,5701,Wood,27.91987252,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 8303,NJBF000077115,319 24TH STREET SO,Brigantine,NJ,39.3966476,-74.37896195,RES1,3001,,NaN,NE,1955,1955,3102,2,1,1926.888566,1926.888566,3507,NO,27.71,33.78,1,-0.72,6106,115.266995,124.782568,134.679154,140.595539,I,Above,Hip,0,5701,Wood,30.74700713,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8304,NJBF000077111,209 28TH STREET SO,Brigantine,NJ,39.396601,-74.383559,RES1,3001,,17,NE,1988,1988,3102,2,1,1695.324637,1695.324637,3507,NO,37.47,42.68,1,-0.39,6106,115.173216,124.696706,134.582438,140.523852,I,Above,Gable,0,5701,Wood,40.07266635,0,0,,,,1,1,,0.03,nav,1,1988,2,, 8305,NJBF000077104,2707 W BRIGANTINE AVE,Brigantine,NJ,39.39656985,-74.38340921,RES1,3001,,20,NE,1927,1927,3102,2,1,1200.015379,1200.015379,3507,YES,21.67,26.87,1,-0.58,6106,115.176633,124.699833,134.585934,140.52662,I,Above,Gable,0,5701,Wood,24.27053356,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 8306,NJBF000077124,212 27TH STREET SO,Brigantine,NJ,39.396691,-74.3830785,RES1,3001,,16,NE,1955,1955,3102,1,1,1513.246888,1513.246888,3507,NO,16.13,27.86,1,0.78,6106,115.182124,124.704828,134.591644,140.530266,I,Above,Gable,0,5701,Wood,21.99174179,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8307,NJBF000077170,321 23RD STREET SO,Brigantine,NJ,39.39699043,-74.37814007,RES1,3001,,16,NE,1945,1945,3102,2,1,1554.724594,1554.724594,3507,NO,35.67,44.48,1,2.75,6106,115.280113,124.794594,134.692968,140.604036,I,Above,Gable,0,5701,Wood,40.0775472,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 8308,NJBF000076972,304 27TH STREET SO,Brigantine,NJ,39.39565939,-74.38196184,RES1,3001,,15,NE,1983,1983,3102,2,1,2242.16995,2242.16995,3507,NO,33.98,41.01,1,0.55,6110,115.216216,124.73615,134.626121,140.561206,I,Above,Hip,0,5701,Wood,37.49541464,0,1.1,,,,1,1,,0.35,nav,1,1983,2,, 8309,NJBF000077001,309 27TH STREET SO,Brigantine,NJ,39.39580263,-74.38140824,RES1,3001,,19,NE,2007,2007,3102,3,1,2325.373498,2325.373498,3507,NO,47.19,56.82,1,1.06,6106,115.226023,124.745102,134.636309,140.568045,I,Above,Gable,0,5701,Wood,52.00375598,0,1.2,,,,1,1,,0.03,nav,1,2007,3,, 8310,NJBF000076993,314 26TH STREET SO,Brigantine,NJ,39.39576363,-74.38083467,RES1,3001,,16,NE,1962,1962,3102,2,1,1334.999158,1334.999158,3507,YES,23.04,35.79,1,1.79,6106,115.238202,124.75625,134.648832,140.577545,I,Above,Gable,0,5701,Wood,29.416661,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 8311,NJBF000077053,212 28TH STREET SO,Brigantine,NJ,39.39614733,-74.38377054,RES1,3001,,15,NE,1955,1955,3102,1,1,1660.491798,1660.491798,3507,NO,17.99,29.73,1,2.23,6106,115.17377,124.697298,134.582767,140.526413,I,Above,Hip,0,5701,Wood,23.85767136,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8312,NJBF000077141,104 29TH STREET SO,Brigantine,NJ,39.3968265,-74.385726,RES1,3001,,16,NE,1955,1955,3102,2,1,1356.297885,1356.297885,3507,YES,24.2,30.05,1,-0.74,6106,115.126223,124.653773,134.534315,140.486689,I,Above,Gable,0,5701,Wood,27.12888247,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 8313,NJBF000076913,208 30TH STREET SO,Brigantine,NJ,39.39537743,-74.38537319,RES1,3001,,15,NE,1952,1952,3102,1,1,2223.802795,2223.802795,3507,NO,14.15,27.9,1,-0.8,6106,115.149162,124.675012,134.557128,140.511193,I,Above,Hip,0,5701,Wood,21.02447751,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 8314,NJBF000076938,2901 W BRIGANTINE AVE,Brigantine,NJ,39.39551627,-74.38426924,RES1,3001,,16,NE,1954,1954,3102,1,1,1677.283151,1677.283151,3507,NO,20.43,28.39,1,1.37,6106,115.170367,124.69431,134.578934,140.526776,I,Above,Gable,0,5701,Wood,24.41101166,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 8315,NJBF000076961,406 23RD STREET SO,Brigantine,NJ,39.39558567,-74.37748805,RES1,3001,,21,NE,2004,2004,3102,3,1,2668.367898,2668.367898,3507,NO,53.43,62.24,1,-0.67,6110,115.308704,124.8209,134.721538,140.632249,I,Above,Hip,0,5701,Wood,57.83696764,0,1.1,,,,1,1,,0.35,nav,1,2004,3,, 8316,NJBF000076862,400 25TH STREET SO,Brigantine,NJ,39.39510832,-74.37890843,RES1,3001,,16,NE,1957,1957,3102,2,1,2835.585201,2835.585201,3507,NO,34.99,44.99,1,2.56,6110,115.284838,124.799011,134.696489,140.616182,I,Above,Flat,0,5701,Wood,39.98989127,0,1.2,,,,1,1,,0.35,nav,1,1957,2,, 8317,NJBF000076835,,Brigantine,NJ,39.39498076,-74.38367687,RES1,3001,,NaN,NE,1969,0,3102,2,1,2114.304663,2114.304663,3507,NO,36.39,50.93,1,-0.56,6106,115.188347,124.710797,134.597073,140.543046,I,Above,Hip,0,5701,Wood,43.66220595,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8318,NJBF000076855,,Brigantine,NJ,39.39508975,-74.38380456,RES1,3001,,NaN,NE,1969,0,3102,2,1,2018.080202,2018.080202,3507,NO,34.03,47.63,1,0.66,6106,115.184531,124.7073,134.593222,140.539617,I,Above,Hip,0,5701,Wood,40.83104851,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8319,NJBF000076833,317 28TH STREET SO,Brigantine,NJ,39.39497527,-74.38177909,RES1,3001,,16,NE,1954,1954,3102,2,1,1442.622566,1442.622566,3507,NO,26.33,35.33,1,2.8,6110,115.227407,124.746457,134.637196,140.572929,I,Above,Gable,0,5701,Wood,30.82970116,0,0,,,,1,1,,0.35,nav,1,1954,2,, 8320,NJBF000075785,113 SHIPMASTER DRIVE,Brigantine,NJ,39.39112557,-74.4030469,RES1,3001,,19,NE,1989,1989,3102,3,1,2156.61207,2156.61207,3507,YES,57.76,70.13,1,1.07,6106,114.828906,124.388184,134.232539,140.287348,I,Above,Flat,0,5701,Wood,63.94670732,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 8321,NJBF000075744,111 SHIPMASTER DRIVE,Brigantine,NJ,39.39096388,-74.40302507,RES1,3001,,18,NE,2001,2001,3102,3,1,2631.435082,2631.435082,3507,NO,54.24,64.61,1,-0.34,6106,114.831126,124.390252,134.234732,140.289897,I,Above,Gable,0,5701,Wood,59.42387906,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 8322,NJBF000076867,313 28TH STREET SO,Brigantine,NJ,39.39512232,-74.38195227,RES1,3001,,16,NE,1920,1920,3102,2,1,1203.228197,1203.228197,3507,NO,29,34.78,1,2.73,6106,115.222256,124.741734,134.631994,140.568313,I,Above,Hip,0,5701,Wood,31.88874944,0,0,,,,1,1,,0.03,nav,1,1920,2,, 8323,NJBF000076782,4027 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3947703,-74.39864326,RES1,3001,,43,NE,1956,1956,3102,2,2,1881.592546,1881.592546,3507,YES,37.37,45.1,1,1.88,6106,114.881266,124.432996,134.285207,140.308515,I,Above,Gable,0,5701,Wood,41.23404251,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8324,NJBF000076790,314 28TH STREET SO,Brigantine,NJ,39.39480794,-74.38223864,RES1,3001,,16,NE,1970,1970,3102,1,1,1941.815883,1941.815883,3507,NO,14.57,28.22,1,-0.2,6106,115.219778,124.739506,134.629242,140.567873,I,Above,Gable,0,5701,Wood,21.39060281,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 8325,NJBF000075764,,Brigantine,NJ,39.391026,-74.409792,RES1,3001,,NaN,NE,2001,0,3103,6,1,2299.432242,2299.432242,3505,NO,89.88,97.96,3,-2.27,6106,114.688835,124.263901,134.093806,140.18053,I,Above,Hip,0,5701,Wood,93.92274615,0,0,,,,1,1,,0.03,nav,1,2001,6,, 8326,NJBF000075130,127 44TH STREET SO,Brigantine,NJ,39.38878795,-74.394851,RES1,3001,,16,NE,1968,1968,3102,1,1,2147.37646,2147.37646,3507,NO,14.53,24.05,1,1.92,6106,115.0252,124.564615,134.42809,140.448647,I,Above,Hip,0,5701,Wood,19.2895356,0,0,,,,1,1,,0.03,nav,1,1968,1,, 8327,NJBF000076822,,Brigantine,NJ,39.39492509,-74.39548026,RES1,3001,,NaN,NE,1949,0,3102,2,1,1815.262543,1815.262543,3507,NO,30.9,38.02,1,1.22,6106,114.945254,124.490465,134.349668,140.35695,I,Above,Gable,0,5701,Wood,34.45561832,0,0,,,,1,1,,0.03,nav,1,1949,2,, 8328,NJBF000075065,4501 HARBOR BEACH BLVD,Brigantine,NJ,39.38861318,-74.39773413,RES1,3001,,16,NE,1968,1968,3102,2,1,1659.428946,1659.428946,3507,NO,22.2,28.18,1,0.01,6106,114.967169,124.512712,134.369851,140.405547,I,Above,Gable,0,5701,Wood,25.18659676,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8329,NJBF000075021,318 42ND STREET SO,Brigantine,NJ,39.38846983,-74.39171836,RES1,3001,,15,NE,1952,1952,3102,1,1,1341.83691,1341.83691,3507,NO,14.77,22.91,1,2.64,6110,115.093728,124.626236,134.49688,140.502042,I,Above,Gable,0,5701,Wood,18.8398593,0,0,,,,1,1,,0.35,nav,1,1952,1,, 8330,NJBF000075757,,Brigantine,NJ,39.39100839,-74.39271449,RES1,3001,,NaN,NE,1967,0,3102,2,1,2316.93922,2316.93922,3507,NO,29.9,44.18,1,2.44,6106,115.045145,124.581907,134.449238,140.452873,I,Above,Gable,0,5701,Wood,37.03794301,0,0,,,,1,1,,0.03,nav,1,1967,2,, 8331,NJBF000075738,254 40TH STREET SO,Brigantine,NJ,39.390935,-74.39258,RES1,3001,,16,NE,1952,1952,3102,2,2,702.1846954,702.1846954,3507,NO,22.28,28.22,1,-0.37,6106,115.048722,124.585149,134.452814,140.455951,I,Above,Gable,0,5701,Wood,25.24889704,0,0,,,,1,1,,0.03,nav,1,1952,2,, 8332,NJBF000075067,4301 W BRIGANTINE AVE,Brigantine,NJ,39.38862049,-74.39319516,RES1,3001,,43,NE,1976,1976,3102,2,2,1472.914895,1472.914895,3507,NO,29.86,42.62,1,-0.22,6106,115.061437,124.59718,134.464436,140.476899,I,Above,Hip,0,5701,Wood,36.23582363,0,0,,,,1,1,,0.03,nav,1,1976,2,, 8333,NJBF000075137,140 44TH STREET SO,Brigantine,NJ,39.38880655,-74.39406466,RES1,3001,,47,NE,1969,1969,3102,2,2,1410.176597,1410.176597,3507,NO,38.22,47.38,1,2.22,6106,115.041314,124.579067,134.444294,140.460757,I,Above,Flat,0,5701,Wood,42.79920306,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8334,NJBF000074547,10 LIGHTHOUSE COVE,Brigantine,NJ,39.38692897,-74.39984884,RES1,3001,,43,NE,1984,1984,3102,2,2,1326.932456,1326.932456,3507,NO,30.47,40.18,1,-0.8,6112,114.941679,124.490561,134.34373,140.394739,I,Above,Gable,0,5701,Wood,35.32778075,0,0,,,,1,1,,0.35,nav,1,1984,2,, 8335,NJBF000076714,317 29TH STREET SO,Brigantine,NJ,39.3945065,-74.3824065,RES1,3001,,20,NE,2015,2015,3102,3,1,1481.79192,1481.79192,3507,NO,43.4,52.15,1,-0.05,6110,115.219616,124.73939,134.628877,140.569148,I,Above,Flat,0,5701,Wood,47.77288426,0,1.1,,,,1,1,,0.35,nav,1,2015,3,, 8336,NJBF000076375,,Brigantine,NJ,39.39319365,-74.39023453,RES1,3001,,NaN,NE,1969,0,3102,2,1,2261.647193,2261.647193,3507,NO,36.08,42.33,1,0.89,6106,115.072588,124.606051,134.478011,140.463114,I,Above,Hip,0,5701,Wood,39.20357672,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8337,NJBF000074929,27 SHIPMASTER DR,Brigantine,NJ,39.38819995,-74.401019,RES1,3001,,16,NE,1968,1968,3102,2,1,1650.382538,1650.382538,3507,YES,27.12,38.84,1,-0.63,6106,114.903235,124.455825,134.305919,140.359159,I,Above,Gable,0,5701,Wood,32.98371589,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8338,NJBF000076749,303 30TH STREET SO,Brigantine,NJ,39.39465573,-74.38378617,RES1,3001,,18,NE,2005,2005,3102,3,1,3400.347108,3400.347108,3507,NO,53.42,64.59,1,1.7,6106,115.18964,124.712025,134.598204,140.545555,I,Above,Hip,0,5701,Wood,59.00472387,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 8339,NJBF000075896,4330 HARBOR BEACH BLVD,Brigantine,NJ,39.39154435,-74.39706057,COM1,3001,,NaN,ME,1969,0,3401,1,1,3426.332641,3426.332641,3507,NO,21.28,27.66,1,2.67,6106,114.949062,124.495379,134.352716,140.376997,I,Above,Flat,0,NaN,Wood,24.47140355,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8340,NJBF000075919,3612 W BRIGANTINE AVE,Brigantine,NJ,39.39163488,-74.38874562,RES1,3001,,16,NE,1964,1964,3102,1,1,1190.215256,1190.215256,3507,NO,17.23,31.13,1,-0.88,6106,115.120387,124.649662,134.525747,140.507059,I,Above,Flat,0,5701,Wood,24.18035375,0,0,,,,1,1,,0.03,nav,1,1964,1,, 8341,NJBF000076053,,Brigantine,NJ,39.39207951,-74.39348462,RES1,3001,,NaN,NE,1969,0,3102,2,1,2518.125839,2518.125839,3507,NO,36.74,46.22,1,0.55,6106,115.017449,124.556633,134.421736,140.426495,I,Above,Hip,0,5701,Wood,41.47772898,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8342,NJBF000076139,260 36TH STREET SO,Brigantine,NJ,39.39236367,-74.38919852,RES1,3001,,43,NE,1953,1953,3102,2,2,1363.220838,1363.220838,3507,NO,37.77,43.16,1,1.48,6106,115.10305,124.63382,134.508539,140.490366,I,Above,Gable,0,5701,Wood,40.46665466,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 8343,NJBF000075873,3713 W BRIGANTINE AVE,Brigantine,NJ,39.39145322,-74.38984133,RES1,3001,,16,NE,1950,1950,3102,1,1,1431.370104,1431.370104,3507,NO,11.98,20.87,1,-0.06,6106,115.099748,124.631042,134.504702,140.492238,I,Above,Gable,0,5701,Wood,16.42715833,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8344,NJBF000075724,348 36TH STREET SO,Brigantine,NJ,39.39088609,-74.38749576,RES1,3001,,45,NE,1954,1954,3102,3,2,963.620074,963.620074,3507,NO,34.68,49.41,1,-0.91,6106,115.154426,124.680596,134.559877,140.536475,I,Above,Hip,0,5701,Wood,42.04384206,0,0,,,,1,1,,0.03,nav,1,1954,3,, 8345,NJBF000074662,8 HUDSON COVE,Brigantine,NJ,39.38738238,-74.39671664,RES1,3001,,16,NE,1968,1968,3102,1,1,2186.903453,2186.903453,3507,NO,18.79,30.17,1,0.23,6112,115.001933,124.544184,134.404071,140.437999,I,Above,Gable,0,5701,Wood,24.47982444,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 8346,NJBF000075256,12 EXPLORER RD,Brigantine,NJ,39.38925738,-74.40084894,RES1,3001,,16,NE,1968,1968,3102,2,1,1514.843279,1514.843279,3507,YES,34.67,41.13,1,0.39,6106,114.895173,124.448182,134.298193,140.347609,I,Above,Gable,0,5701,Wood,37.90215474,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8347,NJBF000075720,,Brigantine,NJ,39.39086819,-74.41007668,RES1,3001,,NaN,NE,1969,0,3103,4,1,1812.843444,1812.843444,3505,NO,73.47,78.83,3,4.74,6106,114.684563,124.260239,134.089618,140.178118,I,Above,Flat,0,5701,Wood,76.14989759,0,0,,,,1,1,,0.03,nav,1,1969,4,, 8348,NJBF000075286,4414 HARBOR BEACH BLVD,Brigantine,NJ,39.38935926,-74.39709937,RES1,3001,,16,NE,1968,1968,3102,2,1,1616.741188,1616.741188,3507,YES,32.56,40.23,1,1.69,6106,114.972179,124.516931,134.375161,140.405603,I,Above,Gable,0,5701,Wood,36.39413874,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8349,NJBF000074423,107 HUDSON DR,Brigantine,NJ,39.3863586,-74.39679136,RES1,3001,,16,NE,1968,1968,3102,1,1,2068.757947,2068.757947,3507,NO,14.8,20.91,1,-0.76,6110,115.011741,124.55323,134.413344,140.450464,I,Above,Gable,0,5701,Wood,17.85784314,0,0,,,,1,1,,0.35,nav,1,1968,1,, 8350,NJBF000074300,4619 SCHOONER RD,Brigantine,NJ,39.38582152,-74.39996034,RES1,3001,,43,NE,1977,1977,3102,2,2,1323.718451,1323.718451,3507,NO,37.08,46.4,1,2.87,6110,114.95164,124.499807,134.35316,140.407843,I,Above,Gable,0,5701,Wood,41.73831126,0,0,,,,1,1,,0.35,nav,1,1977,2,, 8351,NJBF000074041,4 LIGHTHOUSE DR,Brigantine,NJ,39.38458487,-74.40116025,RES1,3001,,43,NE,1985,1985,3102,2,2,1371.302897,1371.302897,3507,NO,31.4,43.99,1,1.18,6110,114.94035,124.490173,134.341368,140.405578,I,Above,Gable,0,5701,Wood,37.6954143,0,0,,,,1,1,,0.35,nav,1,1985,2,, 8352,NJBF000074208,17 LIGHTHOUSE DR,Brigantine,NJ,39.38536803,-74.40114846,RES1,3001,,43,NE,1980,1980,3102,2,2,1438.183113,1438.183113,3507,NO,36.54,47,1,2.36,6110,114.931876,124.482387,134.333322,140.395242,I,Above,Hip,0,5701,Wood,41.77026091,0,0,,,,1,1,,0.35,nav,1,1980,2,, 8353,NJBF000073316,25 OCEAN DRIVE WEST,Brigantine,NJ,39.37977184,-74.40845615,RES1,3001,,21,NE,2005,2005,3103,3,1,1649.603963,1649.603963,3505,NO,64.35,78.57,3,6.75,6106,114.841411,124.404463,134.241712,140.356089,I,Above,Hip,0,5701,Wood,71.46060751,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 8354,NJBF000073289,5203 SEA SPRAY RD,Brigantine,NJ,39.3795957,-74.40619068,RES1,3001,,17,NE,1988,1988,3101,2,1,1894.514138,1894.514138,3507,NO,28.61,39.53,1,1.6,6106,114.89104,124.448143,134.290195,140.393978,I,Above,Gable,0,5701,Wood,34.06760363,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 8355,NJBF000077382,304 21ST STREET SO,Brigantine,NJ,39.39826161,-74.37766815,RES1,3001,,16,NE,1956,1956,3102,1,1,2071.551161,2071.551161,3507,NO,17.58,29.85,1,2.32,6106,115.276014,124.790741,134.689574,140.595114,I,Above,Gable,0,5701,Wood,23.71369114,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 8356,NJBF000076765,4141 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39471307,-74.40090947,RES1,3001,,18,NE,2005,2005,3102,3,1,2196.030962,2196.030962,3507,NO,39.12,51.06,1,2.41,6106,114.834751,124.391317,134.23854,140.272981,I,Above,Gable,0,5701,Wood,45.08899186,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 8357,NJBF000080222,41 CUMMINGS PLACE,Brigantine,NJ,39.41433811,-74.37393703,RES1,3001,,16,NE,1972,1972,3102,2,1,1171.359292,1171.359292,3507,NO,29.8,36.22,1,-0.22,6106,115.182673,124.700516,134.597216,140.448294,I,Above,Hip,0,5701,Wood,33.00781721,0,0,,,,1,1,,0.03,nav,1,1972,2,, 8358,NJBF000079965,200 11TH STREET NO,Brigantine,NJ,39.4134955,-74.3574715,RES1,3001,,43,NE,1950,1950,3102,2,2,842.7233612,842.7233612,3507,NO,34.07,42.69,1,0.14,6106,115.523096,125.022617,134.961418,140.721325,I,Above,Flat,0,5701,Wood,38.37854575,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 8359,NJBF000079870,102 HEALD RD,Brigantine,NJ,39.41316799,-74.36106811,RES1,3001,,17,NE,2017,2017,3102,2,1,933.4798764,933.4798764,3507,NO,27.01,32.95,1,-0.68,6106,115.454371,124.957195,134.887041,140.668559,I,Above,Flat,0,5701,Wood,29.9815029,0,0,,,,1,1,,0.03,nav,1,2017,2,, 8360,NJBF000076358,250 35TH STREET SO,Brigantine,NJ,39.39310732,-74.38888658,RES1,3001,,14,NE,1947,1947,3102,1,1,714.9289745,714.9289745,3507,NO,13.4,19.1,1,-0.25,6106,115.101387,124.632138,134.507228,140.48552,I,Above,Hip,0,5701,Wood,16.25333448,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8361,NJBF000075580,105 LAGOON BLVD,Brigantine,NJ,39.39039082,-74.40130867,RES1,3001,,17,NE,1993,1993,3102,2,1,3154.858397,3154.858397,3507,NO,30.17,37.86,1,2.48,6106,114.873177,124.428034,134.276528,140.325002,I,Above,Flat,0,5701,Wood,34.01234347,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 8362,NJBF000076310,249 36TH STREET SO,Brigantine,NJ,39.39293201,-74.38921272,RES1,3001,,45,NE,1950,1950,3102,2,2,1571.896882,1571.896882,3507,NO,39.23,54.02,1,0.45,6106,115.096561,124.627812,134.502236,140.482682,I,Above,Gable,0,5701,Wood,46.62534036,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8363,NJBF000074111,4627 HARBOR BEACH BLVD,Brigantine,NJ,39.38494853,-74.39987948,RES1,3001,,43,NE,1976,1976,3102,2,2,1772.122517,1772.122517,3507,YES,26.86,37.33,1,2.48,6106,114.963051,124.510232,134.364082,140.42082,I,Above,Gable,0,5701,Wood,32.09562181,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 8364,NJBF000079447,504 E BEACH AVE,Brigantine,NJ,39.41118374,-74.36097657,RES1,3001,,47,NE,1953,1953,3102,2,2,1922.942962,1922.942962,3507,YES,32.87,43.29,1,1.48,6106,115.476962,124.978478,134.910157,140.694668,I,Above,Flat,0,5701,Wood,38.08111601,0,0,,,,1,1,,0.03,nav,1,1953,2,, 8365,NJBF000079270,208 5TH STREET NO,Brigantine,NJ,39.41042601,-74.36112242,RES1,3001,,43,NE,1970,1970,3102,2,2,4483.948853,4483.948853,3507,NO,35.41,47.52,1,0.88,6106,115.482009,124.983181,134.915079,140.701804,I,Above,Gable,0,5701,Wood,41.46601758,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8366,NJBF000074379,4525 W BRIGANTINE AVE,Brigantine,NJ,39.38614469,-74.39648585,RES1,3001,,16,NE,1968,1968,3102,2,1,2135.355191,2135.355191,3507,NO,22.53,33.85,1,-0.29,6110,115.020471,124.561083,134.421951,140.458096,I,Above,Gable,0,5701,Wood,28.19177584,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 8367,NJBF000077519,1904 W BRIGANTINE AVE,Brigantine,NJ,39.3991965,-74.376856,RES1,3001,,16,NE,1956,1956,3102,2,1,631.8066991,631.8066991,3507,YES,33.72,46.5,1,0.03,6106,115.28253,124.796673,134.696945,140.595882,I,Above,Gable,0,5701,Wood,40.10912921,0,0.1,,,,1,1,,0.03,nav,1,1956,2,, 8368,NJBF000077427,1704 OCEAN AVE,Brigantine,NJ,39.39855668,-74.37390911,RES1,3001,,19,NE,1999,1999,3102,2,1,3095.678946,3095.678946,3505,NO,22.96,30.09,3,1.37,6106,115.34957,124.858574,134.766323,140.650288,I,Above,Hip,0,5701,Wood,26.52330072,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 8369,NJBF000078202,900-12 W BRIGANTINE AVE,Brigantine,NJ,39.40362197,-74.36908587,COM8,3001,,NaN,ME,1969,0,3401,2,1,4807.33338,4807.33338,3507,NO,29.94,44.31,1,0.41,6106,115.393241,124.899264,134.815891,140.661721,I,Above,Flat,0,NaN,Wood,37.12571371,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8370,NJBF000078169,900-12 W BRIGANTINE AVE,Brigantine,NJ,39.40338659,-74.36927928,COM3,3001,,NaN,ME,1969,0,3401,2,1,1273.572517,1273.572517,3507,NO,22.9,31.4,1,0.16,6106,115.391835,124.897944,134.814242,140.661655,I,Above,Hip,0,NaN,Wood,27.14883646,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8371,NJBF000078186,,Brigantine,NJ,39.40351812,-74.37057616,COM1,3001,,NaN,ME,2005,0,3401,1,1,7480.552623,7480.552623,3507,NO,17.58,30.12,1,-0.83,6106,115.364119,124.87211,134.78512,140.639608,I,Above,Hip,0,NaN,Wood,23.85216099,0,0,,,,1,1,,0.03,nav,1,2005,1,, 8372,NJBF000078326,1208 BAYSHORE AVE,Brigantine,NJ,39.40474017,-74.37364353,RES1,3001,,27,NE,1930,1930,3102,2,2,1764.112843,1764.112843,3505,NO,28.53,43.48,3,-2.54,6106,115.288792,124.801926,134.706616,140.57566,I,Above,Hip,0,5701,Wood,36.00482934,0,0,,,,1,1,,0.03,nav,1,1930,2,, 8373,NJBF000078134,,Brigantine,NJ,39.40314652,-74.3759187,RES1,3001,,NaN,NE,1969,0,3102,2,1,4160.869152,4160.869152,3507,NO,32.66,43.44,1,-0.6,6106,115.259388,124.774851,134.675038,140.560031,I,Above,Hip,0,5701,Wood,38.0504988,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8374,NJBF000078122,248 12TH STREET SO,Brigantine,NJ,39.40308665,-74.37212816,RES1,3001,,16,NE,1948,1948,3102,2,1,1333.534322,1333.534322,3505,NO,35.04,42.81,3,8.11,6106,115.337188,124.847055,134.75652,140.620642,I,Above,Hip,0,5701,Wood,38.92550865,0,0,,,,1,1,,0.03,nav,1,1948,2,, 8375,NJBF000078007,335 11TH STREET SO,Brigantine,NJ,39.40225168,-74.36955839,RES1,3001,,17,NE,1954,1954,3102,3,1,1592.627388,1592.627388,3502,NO,50.06,60.35,5,-2.71,6110,115.398314,124.903934,134.820239,140.671608,I,Above,Gable,0,5701,Wood,55.2060607,0,0,,,,1,1,,0.35,nav,1,1954,3,, 8376,NJBF000077700,110 22ND STREET SO,Brigantine,NJ,39.40038791,-74.38079022,RES1,3001,,16,NE,1950,1950,3101,1,1,1341.970544,1341.970544,3507,NO,18.6,24.01,1,0.17,6106,115.189303,124.710678,134.600855,140.518477,I,Above,Gable,0,5701,Wood,21.30832359,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 8377,NJBF000077950,1312 W BRIGANTINE AVE,Brigantine,NJ,39.4018592,-74.37235712,COM1,3001,,NaN,ME,1969,0,3401,1,1,13242.20017,13242.20017,3507,NO,16.14,28,1,0.19,6106,115.345654,124.854954,134.764611,140.632641,I,Above,Flat,0,NaN,Wood,22.07159308,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8378,NJBF000077404,,Brigantine,NJ,39.39841997,-74.37716508,RES1,3001,,NaN,NE,1969,0,3102,2,1,3136.035791,3136.035791,3507,NO,33.04,41.76,1,2.81,6106,115.28459,124.798626,134.698582,140.600988,I,Above,Flat,0,5701,Wood,37.40043427,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8379,NJBF000077657,308 16TH STREET SO,Brigantine,NJ,39.40017443,-74.37380219,RES1,3001,,18,NE,2009,2009,3102,3,1,1928.997778,1928.997778,3505,NO,35.5,47.68,3,3.22,6106,115.334318,124.844471,134.751586,140.631377,I,Above,Gable,0,5701,Wood,41.58750015,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 8380,NJBF000077377,314 20TH STREET SO,Brigantine,NJ,39.39823976,-74.37655779,RES1,3001,,17,NE,1987,1987,3102,3,1,1834.054369,1834.054369,3507,NO,44.74,50.98,1,1.77,6106,115.298936,124.811852,134.713364,140.612823,I,Above,Hip,0,5701,Wood,47.86065782,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 8381,NJBF000077393,2505 REVERE BLVD,Brigantine,NJ,39.39834138,-74.38306383,RES1,3001,,18,NE,2011,2011,3102,3,1,2376.342686,2376.342686,3507,NO,47.27,61.6,1,-0.86,6106,115.164629,124.688492,134.574453,140.509051,I,Above,Gable,0,5701,Wood,54.43544332,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 8382,NJBF000077565,1601 OCEAN AVE,Brigantine,NJ,39.39949714,-74.37317271,RES1,3001,,16,NE,1951,1951,3102,2,1,1970.560094,1970.560094,3505,NO,26.77,34.24,3,4.86,6106,115.354421,124.863079,134.772106,140.649855,I,Above,Flat,0,5701,Wood,30.50528962,0,0,,,,1,1,,0.03,nav,1,1951,2,, 8383,NJBF000076592,206 35TH STREET SO,Brigantine,NJ,39.3940293,-74.38997508,RES1,3001,,18,NE,2016,2016,3102,3,1,965.6374504,965.6374504,3507,NO,38.07,49.01,1,2.79,6106,115.068884,124.602459,134.47461,140.45622,I,Above,Hip,0,5701,Wood,43.54145116,0,0,,,,1,1,,0.03,nav,1,2016,3,, 8384,NJBF000073447,1 SANDY LANE,Brigantine,NJ,39.38078742,-74.40626384,RES1,3001,,16,NE,1975,1975,3103,1,1,2063.199605,2063.199605,3505,NO,10.83,17.92,3,-1.63,6106,114.876027,124.434548,134.276088,140.376696,I,Above,Flat,0,5701,Wood,14.37251152,0,0,,,,1,1,,0.03,nav,1,1975,1,, 8385,NJBF000077157,2100 OCEAN AVE,Brigantine,NJ,39.39692402,-74.37650793,RES1,3001,,19,NE,1959,1959,3102,2,1,2745.498031,2745.498031,3507,NO,26.54,34.62,1,2.18,6106,115.314202,124.825946,134.728268,140.630448,I,Above,Gable,0,5701,Wood,30.58166357,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 8386,NJBF000077068,2206 OCEAN AVE,Brigantine,NJ,39.39628496,-74.3775295,RES1,3001,,19,NE,1996,1996,3102,2,1,1985.621241,1985.621241,3507,NO,20.94,30.89,1,-0.84,6106,115.300262,124.813137,134.713331,140.622651,I,Above,Hip,0,5701,Wood,25.91342333,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 8387,NJBF000077024,305 27TH STREET SO,Brigantine,NJ,39.39592504,-74.38163631,RES1,3001,,16,NE,1929,1929,3102,2,1,1230.126549,1230.126549,3507,NO,30.43,43.32,1,2.6,6106,115.220021,124.739597,134.630204,140.562886,I,Above,Gable,0,5701,Wood,36.87533384,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 8388,NJBF000077369,2305 W BRIGANTINE AVE,Brigantine,NJ,39.39817343,-74.38025642,RES1,3001,,15,NE,1955,1955,3101,1,1,1888.453486,1888.453486,3507,NO,15.27,29.3,1,0.65,6106,115.224012,124.742954,134.635654,140.555544,I,Above,Gable,0,5701,Wood,22.28616688,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8389,NJBF000076825,3935 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39493786,-74.39689137,RES1,3001,,47,NE,1956,1956,3102,2,2,1679.349592,1679.349592,3507,YES,34.31,40.01,1,2.34,6106,114.915844,124.463983,134.320013,140.334263,I,Above,Flat,0,5701,Wood,37.16171004,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8390,NJBF000074995,401 LAGOON BLVD,Brigantine,NJ,39.38839363,-74.40483181,RES3B,3001,,35,ME,1997,1997,3301,2,1,3111.196729,3111.196729,3507,YES,40.07,45.5,1,1.85,6106,114.821409,124.382999,134.224742,140.296,I,Above,Gable,0,5701,Wood,42.78380857,0,0,,,,1,1,,0.03,nav,1,1997,2,, 8391,NJBF000074707,127 HUDSON DR,Brigantine,NJ,39.38751004,-74.39506116,RES1,3001,,16,NE,1968,1968,3102,2,1,1286.68067,1286.68067,3507,YES,35.67,46.02,1,-0.45,6110,115.034961,124.573703,134.43722,140.462314,I,Above,Gable,0,5701,Wood,40.84304408,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8392,NJBF000077251,109 28TH STREET SO,Brigantine,NJ,39.39749928,-74.38463538,RES1,3001,,16,NE,1926,1926,3102,2,1,904.1534066,904.1534066,3507,NO,34.96,46.13,1,-1,6106,115.141419,124.667469,134.550201,140.495171,I,Above,Hip,0,5701,Wood,40.54328867,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 8393,NJBF000076527,242 33RD STREET SO,Brigantine,NJ,39.39379315,-74.38724258,COM1,3001,,NaN,ME,1969,0,3401,2,1,2109.305907,2109.305907,3507,NO,35.06,46.93,1,0.74,6106,115.127842,124.655966,134.534518,140.502426,I,Above,Gable,0,NaN,Wood,40.99433647,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8394,NJBF000075902,,Brigantine,NJ,39.39156215,-74.39087861,RES1,3001,,NaN,NE,1978,0,3102,2,1,1985.43302,1985.43302,3507,NO,24.03,37.58,1,0.73,6106,115.077082,124.610548,134.481793,140.474468,I,Above,Flat,0,5701,Wood,30.80482955,0,0,,,,1,1,,0.03,nav,1,1978,2,, 8395,NJBF000076106,317 35TH STREET SO,Brigantine,NJ,39.39223999,-74.38722082,RES1,3001,,45,NE,1956,1956,3102,2,2,1414.373123,1414.373123,3507,NO,38.52,44.23,1,1.32,6106,115.145248,124.672061,134.551385,140.523088,I,Above,Hip,0,5701,Wood,41.37235294,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8396,NJBF000076126,255 37TH STREET SO,Brigantine,NJ,39.39231882,-74.38981998,RES1,3001,,15,NE,1955,1955,3102,1,1,1696.036379,1696.036379,3507,NO,15.26,25.04,1,2.1,6106,115.090708,124.622668,134.495985,140.481179,I,Above,Gable,0,5701,Wood,20.15051931,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 8397,NJBF000076085,,Brigantine,NJ,39.39219399,-74.4086055,RES1,3001,,NaN,NE,1969,0,3103,5,1,1838.49762,1838.49762,3505,NO,67.31,77.15,3,1.34,6106,114.701122,124.273928,134.105766,140.183573,I,Above,Gable,0,5701,Wood,72.23082197,0,0,,,,1,1,,0.03,nav,1,1969,5,, 8398,NJBF000077027,3005-11 REVERE BLVD,Brigantine,NJ,39.3959548,-74.38646584,COM1,3001,,NaN,ME,1969,0,3401,2,1,2444.095689,2444.095689,3507,NO,26.97,33.58,1,1.94,6106,115.120403,124.648695,134.527972,140.486392,I,Above,Gable,0,NaN,Wood,30.27177621,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8399,NJBF000074798,14 45TH COVE,Brigantine,NJ,39.38780795,-74.39630587,RES1,3001,,15,NE,1968,1968,3102,1,1,1642.50534,1642.50534,3507,NO,10.64,25.16,1,-0.79,6110,115.005772,124.547493,134.408124,140.438789,I,Above,Gable,0,5701,Wood,17.90082848,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 8400,NJBF000077268,102 28TH STREET SO,Brigantine,NJ,39.39757548,-74.38532449,RES1,3001,,16,NE,1956,1956,3102,2,1,1591.030214,1591.030214,3507,YES,33.98,41.59,1,-0.47,6106,115.126436,124.653773,134.534851,140.483278,I,Above,Hip,0,5701,Wood,37.78609343,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8401,NJBF000074479,,Brigantine,NJ,39.38663523,-74.39816058,RES1,3001,,NaN,NE,1969,0,3102,2,1,1607.126467,1607.126467,3507,NO,30.12,37.54,1,2.11,6110,114.980137,124.52494,134.381928,140.425259,I,Above,Hip,0,5701,Wood,33.82829413,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8402,NJBF000075385,4006 W BRIGANTINE AVE,Brigantine,NJ,39.38970107,-74.39100182,RES1,3001,,15,NE,1950,1950,3102,1,1,1513.13819,1513.13819,3507,NO,11.52,23.25,1,0.88,6110,115.094972,124.627111,134.498878,140.497053,I,Above,Gable,0,5701,Wood,17.38512436,0,0,,,,1,1,,0.35,nav,1,1950,1,, 8403,NJBF000075460,322 ARBEGAST DRIVE,Brigantine,NJ,39.38993989,-74.40419226,RES3B,3001,,35,ME,1998,1998,3301,2,1,4975.049989,4975.049989,3507,NO,21.54,28.02,1,0.23,6106,114.817892,124.379042,134.22147,140.285177,I,Above,Hip,0,5701,Wood,24.77827653,0,0,,,,1,1,,0.03,nav,1,1998,2,, 8404,NJBF000075317,327 SEASHELL LANE,Brigantine,NJ,39.38946529,-74.40429053,RES3B,3001,,35,ME,1984,1984,3301,2,1,3712.666734,3712.666734,3507,YES,38.29,44.87,1,-0.58,6106,114.821006,124.38207,134.224501,140.290055,I,Above,Gable,0,5701,Wood,41.58197862,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8405,NJBF000075649,3812 W BRIGANTINE AVE,Brigantine,NJ,39.39061046,-74.38995481,RES1,3001,,43,NE,1954,1954,3102,2,2,1037.171533,1037.171533,3507,NO,30.74,44.97,1,1.97,6106,115.10664,124.637447,134.511213,140.501528,I,Above,Hip,0,5701,Wood,37.8543615,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8406,NJBF000075345,4413 PRIVATEER RD,Brigantine,NJ,39.38957276,-74.39862365,RES1,3001,,16,NE,1968,1968,3102,2,1,1348.396208,1348.396208,3507,NO,29.79,43.87,1,-0.83,6106,114.938086,124.486356,134.341118,140.378624,I,Above,Hip,0,5701,Wood,36.8303598,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8407,NJBF000075302,4416 PRIVATEER RD,Brigantine,NJ,39.3894085,-74.3981965,RES1,3001,,16,NE,1968,1968,3102,2,1,1353.036712,1353.036712,3507,YES,28.76,36.7,1,1.28,6106,114.948798,124.495996,134.351775,140.387595,I,Above,Gable,0,5701,Wood,32.73042904,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8408,NJBF000075252,4418 PRIVATEER RD,Brigantine,NJ,39.3892357,-74.39815682,RES1,3001,,16,NE,1968,1968,3102,1,1,1641.601444,1641.601444,3507,NO,17.88,29.22,1,2.19,6106,114.95151,124.498486,134.354426,140.390528,I,Above,Gable,0,5701,Wood,23.54589613,0,0,,,,1,1,,0.03,nav,1,1968,1,, 8409,NJBF000074886,25 SHIPMASTER DR,Brigantine,NJ,39.3880755,-74.40078087,RES1,3001,,43,NE,1968,1968,3102,2,2,1914.562335,1914.562335,3507,NO,29.82,44.8,1,-0.79,6106,114.909578,124.461527,134.312193,140.36461,I,Above,Gable,0,5701,Wood,37.30924873,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8410,NJBF000074770,4518 PRIVATEER RD,Brigantine,NJ,39.38773021,-74.39916594,RES1,3001,,16,NE,1972,1972,3102,1,1,1451.367591,1451.367591,3507,NO,16.31,23.46,1,-0.07,6106,114.94707,124.495079,134.349425,140.394768,I,Above,Hip,0,5701,Wood,19.88173129,0,0,,,,1,1,,0.03,nav,1,1972,1,, 8411,NJBF000074236,,Brigantine,NJ,39.38549692,-74.39578957,RES1,3001,,NaN,NE,1969,0,3102,2,1,19376.00451,19376.00451,3507,NO,32.32,42.49,1,0.44,6106,115.042178,124.580627,134.443269,140.477609,I,Above,Flat,0,5701,Wood,37.40523358,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8412,NJBF000074201,4624 SCHOONER RD,Brigantine,NJ,39.38534437,-74.39985389,RES1,3001,,43,NE,1978,1978,3102,2,2,1554.662303,1554.662303,3507,NO,36.09,43.07,1,0.22,6110,114.959171,124.50666,134.360421,140.415919,I,Above,Hip,0,5701,Wood,39.57880196,0,0,,,,1,1,,0.35,nav,1,1978,2,, 8413,NJBF000074176,,Brigantine,NJ,39.38523301,-74.39946316,RES1,3001,,NaN,NE,1969,0,3102,2,1,1343.430588,1343.430588,3507,NO,24.02,30.58,1,2.67,6106,114.968569,124.515056,134.369712,140.42355,I,Above,Gable,0,5701,Wood,27.29967999,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8414,NJBF000074037,4633 HARBOR BEACH BLVD,Brigantine,NJ,39.38457226,-74.40045222,RES1,3001,,43,NE,1976,1976,3102,2,2,1415.456102,1415.456102,3507,NO,30.36,39.17,1,1.54,6106,114.95529,124.503447,134.356184,140.416876,I,Above,Hip,0,5701,Wood,34.76595922,0,0,,,,1,1,,0.03,nav,1,1976,2,, 8415,NJBF000073596,5002 HARBOR BEACH BLVD,Brigantine,NJ,39.38188636,-74.40418162,RES1,3001,,18,NE,2008,2008,3101,3,1,2058.950249,2058.950249,3507,NO,40.89,54.94,1,-0.08,6106,114.907333,124.461799,134.30741,140.394486,I,Above,Flat,0,5701,Wood,47.91731585,0,1.2,,,,1,1,,0.03,nav,1,2008,3,, 8416,NJBF000080965,12 KIRBY PLACE,Brigantine,NJ,39.41703985,-74.36213284,RES1,3001,,16,NE,1968,1968,3102,1,1,2042.143967,2042.143967,3507,YES,16.82,30.22,1,-0.2,6106,115.392821,124.898643,134.822402,140.60339,I,Above,Hip,0,5701,Wood,23.52250495,0,0,,,,1,1,,0.03,nav,1,1968,1,, 8417,NJBF000080934,806 LAFAYETTE BLVD,Brigantine,NJ,39.41694027,-74.38028082,RES1,3001,,15,NE,1972,1972,3103,1,1,1201.880843,1201.880843,3505,NO,23.24,29.05,3,5.32,6106,115.0275,124.553885,134.43294,140.311932,I,Above,Flat,0,5701,Wood,26.14421897,0,0,,,,1,1,,0.03,nav,1,1972,1,, 8418,NJBF000081047,815 STERLING PLACE,Brigantine,NJ,39.41735379,-74.38077983,RES1,3001,,16,NE,1977,1977,3103,2,1,1243.122912,1243.122912,3505,NO,41.3,52.25,3,4.86,6106,115.013182,124.540239,134.417724,140.298409,I,Above,Hip,0,5701,Wood,46.77943292,0,0,,,,1,1,,0.03,nav,1,1977,2,, 8419,NJBF000080867,801 LAFAYETTE BLVD,Brigantine,NJ,39.41665739,-74.37959639,RES1,3001,,17,NE,1997,1997,3103,2,1,1518.427084,1518.427084,3505,NO,31,41.04,3,1.53,6106,115.044271,124.56974,134.450693,140.326766,I,Above,Hip,0,5701,Wood,36.01957167,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 8420,NJBF000080678,1313 DUNCAN PLACE,Brigantine,NJ,39.41588849,-74.37421339,RES1,3001,,17,NE,1987,1987,3102,1,1,1483.510248,1483.510248,3507,NO,16.86,27.82,1,0.96,6106,115.161195,124.679758,134.574437,140.423989,I,Above,Flat,0,5701,Wood,22.3379764,0,0,,,,1,1,,0.03,nav,1,1987,1,, 8421,NJBF000080837,814 W SHORE DR,Brigantine,NJ,39.41653274,-74.38300711,RES1,3001,,17,NE,1997,1997,3103,2,1,2154.871628,2154.871628,3505,NO,36.16,45.22,3,-2.2,6106,114.976226,124.506273,134.379191,140.272731,I,Above,Hip,0,5701,Wood,40.68989195,0,1.2,,,,1,1,,0.03,nav,1,1997,2,, 8422,NJBF000074907,37 SAILFISH DRIVE,Brigantine,NJ,39.38814825,-74.40214848,RES3B,3001,,35,ME,1987,1987,3301,3,1,3514.750886,3514.750886,3507,NO,52.58,59.09,1,0.17,6106,114.880231,124.435374,134.283029,140.341972,I,Above,Gable,0,5701,Wood,55.83291976,0,0,,,,1,1,,0.03,nav,1,1987,3,, 8423,NJBF000076188,349 33RD STREET SO,Brigantine,NJ,39.39252974,-74.38507564,RES1,3001,,18,NE,2017,2017,3102,3,1,1949.073529,1949.073529,3507,NO,54.07,59.76,1,1.75,6106,115.186293,124.709273,134.593434,140.552953,I,Above,Hip,0,5701,Wood,56.91559969,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 8424,NJBF000074820,426 SEAHORSE RD,Brigantine,NJ,39.38787912,-74.40369161,RES3B,3001,,35,ME,1987,1987,3301,3,1,8082.717928,8082.717928,3507,NO,42.75,49.29,1,2.14,6106,114.850916,124.409446,134.25387,140.321116,I,Above,Gable,0,5701,Wood,46.02018823,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 8425,NJBF000080557,38 KIRKWOOD CIRCLE,Brigantine,NJ,39.41543817,-74.36196804,RES1,3001,,17,NE,1996,1996,3102,2,1,2281.054839,2281.054839,3507,NO,36.42,41.47,1,1.26,6106,115.412691,124.917621,134.843236,140.626003,I,Above,Gable,0,5701,Wood,38.94770552,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 8426,NJBF000079999,23 CUMMINGS PLACE,Brigantine,NJ,39.41362431,-74.3725861,RES1,3001,,16,NE,1973,1973,3102,2,1,984.2061824,984.2061824,3507,NO,31.7,40.07,1,0.73,6106,115.217375,124.733329,134.633948,140.47915,I,Above,Gable,0,5701,Wood,35.88499212,0,0,,,,1,1,,0.03,nav,1,1973,2,, 8427,NJBF000074597,14 LIGHTHOUSE COVE,Brigantine,NJ,39.38715485,-74.40064897,RES1,3001,,43,NE,1984,1984,3102,2,2,1410.155424,1410.155424,3507,NO,34.57,39.98,1,-0.82,6110,114.922483,124.473384,134.324715,140.379077,I,Above,Gable,0,5701,Wood,37.27422514,0,0,,,,1,1,,0.35,nav,1,1984,2,, 8428,NJBF000080502,700 LAFAYETTE BLVD,Brigantine,NJ,39.41528593,-74.37916395,RES1,3001,,16,NE,1972,1972,3103,1,1,1923.243131,1923.243131,3505,NO,16.82,28.06,3,2.64,6106,115.066979,124.591737,134.47494,140.351562,I,Above,Hip,0,5701,Wood,22.44142704,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 8429,NJBF000077850,349 13TH STREET SO,Brigantine,NJ,39.40122538,-74.37076979,RES1,3001,,16,NE,1947,1947,3102,2,1,945.3683506,945.3683506,3502,NO,30.93,44.32,5,4.53,6106,115.384716,124.891233,134.80516,140.66559,I,Above,Gable,0,5701,Wood,37.62179126,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 8430,NJBF000077854,350 12TH STREET SO,Brigantine,NJ,39.40124497,-74.37034608,RES1,3001,,18,NE,1991,1991,3102,2,1,1941.328858,1941.328858,3502,YES,24.65,35.5,5,-0.64,6110,115.393116,124.899043,134.814002,140.671982,I,Above,Hip,0,5701,Wood,30.07848967,0,1.1,,,,1,1,,0.35,nav,1,1991,2,, 8431,NJBF000075159,112 45TH STREET SO,Brigantine,NJ,39.38889533,-74.39559693,RES1,3001,,15,NE,1968,1968,3102,1,1,1668.580794,1668.580794,3507,NO,18.96,26.54,1,0.4,6106,115.008518,124.549629,134.411396,140.435481,I,Above,Gable,0,5701,Wood,22.75022717,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8432,NJBF000075206,15 GULL COVE,Brigantine,NJ,39.38906498,-74.40501011,RES3B,3001,,35,ME,1984,1984,3301,2,1,3441.328848,3441.328848,3507,YES,34.8,41.75,1,2.8,6106,114.810337,124.372814,134.213875,140.284034,I,Above,Gable,0,5701,Wood,38.27243738,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8433,NJBF000075200,4 EXPLORER COVE,Brigantine,NJ,39.38905045,-74.40060366,RES1,3001,,16,NE,1968,1968,3102,2,1,1870.318105,1870.318105,3507,YES,20.89,32.6,1,-0.86,6106,114.902554,124.454854,134.305491,140.354284,I,Above,Gable,0,5701,Wood,26.74521903,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8434,NJBF000076244,233 37TH STREET SO,Brigantine,NJ,39.39270886,-74.3904247,RES1,3001,,45,NE,1961,1961,3102,2,2,2075.169577,2075.169577,3507,NO,34.85,45.99,1,1.79,6106,115.073943,124.607411,134.479166,140.466507,I,Above,Gable,0,5701,Wood,40.41718741,0,0,,,,1,1,,0.03,nav,1,1961,2,, 8435,NJBF000075193,4417 HARBOR BEACH BLVD,Brigantine,NJ,39.38903013,-74.3977753,RES1,3001,,16,NE,1968,1968,3102,1,1,1856.479774,1856.479774,3507,NO,12.15,22.47,1,-0.78,6106,114.961727,124.507698,134.36457,140.399323,I,Above,Gable,0,5701,Wood,17.30784193,0,0,,,,1,1,,0.03,nav,1,1968,1,, 8436,NJBF000075173,322 41ST STREET SO,Brigantine,NJ,39.38894549,-74.39111479,RES1,3001,,45,NE,1977,1977,3102,2,2,1509.240359,1509.240359,3507,NO,39.41,44.53,1,0.57,6110,115.100973,124.632665,134.504484,140.505234,I,Above,Flat,0,5701,Wood,41.96832217,0,0,,,,1,1,,0.35,nav,1,1977,2,, 8437,NJBF000074974,,Brigantine,NJ,39.38834084,-74.39013537,RES1,3001,,NaN,NE,1969,0,3102,2,1,1896.437488,1896.437488,3507,NO,30.15,44.1,1,1.18,6110,115.127952,124.657065,134.531344,140.528512,I,Above,Flat,0,5701,Wood,37.12209912,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8438,NJBF000078262,234 10TH STREET SO,Brigantine,NJ,39.40422202,-74.3707628,RES1,3001,,16,NE,1954,1954,3102,2,1,1382.028284,1382.028284,3505,YES,22.16,32.23,3,-0.51,6106,115.352825,124.861574,134.773673,140.627744,I,Above,Hip,0,5701,Wood,27.19264275,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8439,NJBF000077753,340 14TH STREET SO,Brigantine,NJ,39.40072683,-74.37213045,RES1,3001,,16,NE,1952,1952,3102,2,1,1070.881046,1070.881046,3502,NO,40.12,48.5,5,5.68,6106,115.362414,124.870508,134.781387,140.65058,I,Above,Hip,0,5701,Wood,44.30567331,0,0,,,,1,1,,0.03,nav,1,1952,2,, 8440,NJBF000080163,16 CUMMINGS PLACE,Brigantine,NJ,39.41412321,-74.37278722,RES1,3001,,16,NE,1973,1973,3102,2,1,1264.132495,1264.132495,3507,NO,25.13,33.83,1,1.41,6106,115.208164,124.724525,134.624228,140.46955,I,Above,Gable,0,5701,Wood,29.480833,0,0,,,,1,1,,0.03,nav,1,1973,2,, 8441,NJBF000075265,4106 W BRIGANTINE AVE,Brigantine,NJ,39.38929077,-74.39156578,RES1,3001,,43,NE,1977,1977,3102,2,2,1254.636912,1254.636912,3507,NO,24.67,32.91,1,2.26,6110,115.087809,124.620745,134.491403,140.493605,I,Above,Hip,0,5701,Wood,28.79039107,0,0,,,,1,1,,0.35,nav,1,1977,2,, 8442,NJBF000075819,341 36TH STREET SO,Brigantine,NJ,39.39125954,-74.38735723,RES1,3001,,27,NE,1956,1956,3102,2,2,1573.577169,1573.577169,3507,NO,39.84,51.64,1,2.18,6106,115.153186,124.679416,134.558857,140.533765,I,Above,Hip,0,5701,Wood,45.73729139,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8443,NJBF000077750,303 16TH STREET SO,Brigantine,NJ,39.40067627,-74.37368342,RES1,3001,,16,NE,1958,1958,3102,2,1,1680.14535,1680.14535,3505,NO,44.48,51.76,3,8.59,6106,115.331349,124.841711,134.748828,140.626852,I,Above,Gable,0,5701,Wood,48.11762526,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 8444,NJBF000077735,1204 OCEAN AVE,Brigantine,NJ,39.40062471,-74.37018761,RES1,3001,,21,NE,2011,2011,3102,3,1,2127.156247,2127.156247,3502,NO,61.45,71.09,5,9.53,6110,115.402992,124.908185,134.823891,140.682292,I,Above,Hip,0,5701,Wood,66.2700997,0,1.1,,,,1,1,,0.35,nav,1,2011,3,, 8445,NJBF000076217,,Brigantine,NJ,39.39263544,-74.38846239,RES1,3001,,NaN,NE,1969,0,3102,2,1,2597.657963,2597.657963,3507,NO,28.97,37.24,1,0.94,6106,115.115313,124.64486,134.521146,140.498408,I,Above,Flat,0,5701,Wood,33.10418872,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8446,NJBF000080252,8 CUMMINGS PLACE,Brigantine,NJ,39.4144469,-74.37254026,RES1,3001,,16,NE,1972,1972,3102,2,1,1408.639366,1408.639366,3507,NO,25.61,38.45,1,0.79,6106,115.209827,124.725985,134.626019,140.469386,I,Above,Gable,0,5701,Wood,32.03066898,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 8447,NJBF000080204,557 CAVERLY DR,Brigantine,NJ,39.41427002,-74.37620356,RES1,3001,,16,NE,1979,1979,3103,1,1,1937.217062,1937.217062,3505,NO,19.49,31.91,3,1.33,6106,115.137432,124.65813,134.549362,140.412606,I,Above,Gable,0,5701,Wood,25.69978007,0,0,,,,1,1,,0.03,nav,1,1979,1,, 8448,NJBF000080022,25 CUMMINGS PLACE,Brigantine,NJ,39.41368575,-74.37276259,RES1,3001,,16,NE,1973,1973,3102,2,1,1229.460621,1229.460621,3507,YES,29.51,38.28,1,2.36,6106,115.213153,124.729346,134.629477,140.475515,I,Above,Gable,0,5701,Wood,33.89071632,0,0,,,,1,1,,0.03,nav,1,1973,2,, 8449,NJBF000079818,223 10TH STREET NO,Brigantine,NJ,39.4129765,-74.357387,RES1,3001,,47,NE,1968,1968,3102,2,4,1751.92859,1751.92859,3507,NO,33.47,39.25,1,2.37,6106,115.53024,125.029344,134.968795,140.729082,I,Above,Hip,0,5701,Wood,36.35755854,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8450,NJBF000079791,229 10TH STREET NO,Brigantine,NJ,39.41285197,-74.35724885,RES1,3001,,47,NE,1968,1968,3102,2,4,2076.892084,2076.892084,3507,NO,38.89,52.05,1,0.03,6106,115.534304,125.033196,134.973105,140.732786,I,Above,Hip,0,5701,Wood,45.4703846,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8451,NJBF000079782,107 QUAY BLVD,Brigantine,NJ,39.4128145,-74.3610845,RES1,3001,,43,NE,1974,1974,3102,2,2,993.6765957,993.6765957,3507,NO,40.19,51.9,1,1.38,6106,115.457714,124.96035,134.890444,140.672681,I,Above,Flat,0,5701,Wood,46.04805412,0,0,,,,1,1,,0.03,nav,1,1974,2,, 8452,NJBF000079292,204 5TH STREET NO,Brigantine,NJ,39.41051667,-74.36125135,RES1,3001,,18,NE,2006,2006,3102,3,1,2258.17174,2258.17174,3507,NO,34.76,41.6,1,1,6106,115.478458,124.979828,134.911327,140.69864,I,Above,Flat,0,5701,Wood,38.18280961,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 8453,NJBF000074421,29 LIGHTHOUSE DR,Brigantine,NJ,39.38634539,-74.40142867,RES1,3001,,43,NE,1980,1980,3102,2,2,1543.059759,1543.059759,3507,NO,32.16,41.86,1,1.24,6110,114.915157,124.467176,134.317129,140.377665,I,Above,Gable,0,5701,Wood,37.00612064,0,0,,,,1,1,,0.35,nav,1,1980,2,, 8454,NJBF000080775,810 W SHORE DR,Brigantine,NJ,39.41626269,-74.38293053,RES1,3001,,18,NE,2009,2009,3103,3,1,2583.990737,2583.990737,3505,NO,52.35,65.66,3,-2.9,6106,114.980502,124.51044,134.38378,140.277501,I,Above,Hip,0,5701,Wood,59.00400556,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 8455,NJBF000074179,518 LAGOON BLVD,Brigantine,NJ,39.38526695,-74.40379816,RES3B,3001,,33,ME,1980,1980,3301,2,1,8150.196867,8150.196867,3507,YES,30.29,41.94,1,-0.93,6106,114.877569,124.434244,134.279491,140.35482,I,Above,Gable,0,5701,Wood,36.11464424,0,0,,,,1,1,,0.03,nav,1,1980,2,, 8456,NJBF000078306,211 11TH STREET SO,Brigantine,NJ,39.40459089,-74.37161203,RES1,3001,,15,NE,1961,1961,3102,1,1,978.1061852,978.1061852,3505,NO,15.93,30.06,3,1.65,6106,115.331666,124.841841,134.75161,140.609673,I,Above,Gable,0,5701,Wood,22.99419031,0,0,,,,1,1,,0.03,nav,1,1961,1,, 8457,NJBF000078010,1212 W BRIGANTINE AVE,Brigantine,NJ,39.40227808,-74.3715973,COM1,3001,,NaN,ME,1969,0,3401,2,1,4461.756039,4461.756039,3507,NO,38.7,47.15,1,0.42,6106,115.356623,124.86514,134.776407,140.639268,I,Above,Flat,0,NaN,Wood,42.92505613,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8458,NJBF000078099,11 18TH STREET SO,Brigantine,NJ,39.40294969,-74.37795557,RES1,3001,,16,NE,1955,1955,3102,1,1,2723.399226,2723.399226,3507,NO,12.35,21.76,1,-0.46,6106,115.219935,124.738383,134.633777,140.530301,I,Above,Gable,0,5701,Wood,17.0532329,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 8459,NJBF000078054,20 18TH STREET SO,Brigantine,NJ,39.4026075,-74.3782505,RES1,3001,,15,NE,1927,1927,3102,1,1,1399.198978,1399.198978,3507,NO,13.37,24.73,1,-0.71,6106,115.217568,124.736264,134.631166,140.530045,I,Above,Hip,0,5701,Wood,19.04934864,0,0,,,,1,1,,0.03,nav,1,1927,1,, 8460,NJBF000077911,1801 REVERE BLVD,Brigantine,NJ,39.40161347,-74.37738357,RES1,3001,,16,NE,1956,1956,3101,2,1,2115.143259,2115.143259,3507,YES,28.07,38.7,1,0.15,6106,115.245849,124.762555,134.660153,140.556551,I,Above,Gable,0,5701,Wood,33.38692012,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8461,NJBF000077987,919 OCEAN AVE,Brigantine,NJ,39.40214536,-74.36831076,RES1,3001,,16,NE,1957,1957,3102,2,1,1390.253677,1390.253677,3502,YES,24.85,38.95,5,-0.8,6110,115.424758,124.928573,134.848031,140.692496,I,Above,Flat,0,5701,Wood,31.89786635,0,1.1,,,,1,1,,0.35,nav,1,1957,2,, 8462,NJBF000077848,205 18TH STREET SO,Brigantine,NJ,39.401207,-74.376287,RES1,3001,,19,NE,2008,2008,3101,3,1,1505.425761,1505.425761,3507,NO,37.04,43.04,1,2.03,6106,115.272576,124.787299,134.687787,140.57908,I,Above,Gable,0,5701,Wood,40.04297633,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 8463,NJBF000077815,328 14TH STREET SO,Brigantine,NJ,39.40101777,-74.37232989,RES1,3001,,15,NE,1952,1952,3102,2,1,931.9439617,931.9439617,3502,NO,43.75,50.15,5,5.49,6106,115.355219,124.863836,134.774057,140.643747,I,Above,Hip,0,5701,Wood,46.94813764,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 8464,NJBF000076969,3004 REVERE BLVD,Brigantine,NJ,39.39564949,-74.38611764,COM1,3001,,NaN,ME,1969,0,3401,1,1,4091.117561,4091.117561,3507,NO,20.52,30.18,1,2.48,6106,115.130879,124.658305,134.538548,140.495889,I,Above,Flat,0,NaN,Wood,25.35179772,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 8465,NJBF000077051,2904 REVERE BLVD,Brigantine,NJ,39.39612636,-74.38544085,RES1,3001,,17,NE,1989,1989,3102,3,1,2519.315338,2519.315338,3507,NO,55.6,69.77,1,1.75,6106,115.139655,124.666186,134.547761,140.500347,I,Above,Hip,0,5701,Wood,62.68652806,0,1.2,,,,1,1,,0.03,nav,1,1989,3,, 8466,NJBF000077031,201 30TH STREET SO,Brigantine,NJ,39.39596685,-74.38538331,RES1,3001,,15,NE,1929,1929,3102,2,1,1062.563698,1062.563698,3507,NO,23.01,31.33,1,0.45,6106,115.142567,124.668877,134.550669,140.503337,I,Above,Gable,0,5701,Wood,27.17396111,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 8467,NJBF000077469,318 18TH STREET SO,Brigantine,NJ,39.3988613,-74.37486624,RES1,3001,,19,NE,1998,1998,3102,3,1,1592.342311,1592.342311,3505,NO,53.89,62.71,3,8.22,6106,115.326771,124.837512,134.742775,140.631423,I,Above,Hip,0,5701,Wood,58.30136337,0,1.1,,,,1,1,,0.03,nav,1,1998,3,, 8468,NJBF000076926,405 24TH STREET SO,Brigantine,NJ,39.39546767,-74.37787532,RES1,3001,,20,NE,2001,2001,3102,3,1,4487.595201,4487.595201,3507,NO,49.94,57.1,1,1.56,6110,115.302069,124.81481,134.714578,140.627713,I,Above,Flat,0,5701,Wood,53.51792198,0,1.2,,,,1,1,,0.35,nav,1,2001,3,, 8469,NJBF000076889,,Brigantine,NJ,39.3952095,-74.3802165,RES1,3001,,NaN,NE,1969,0,3102,2,1,1984.551925,1984.551925,3507,NO,38.95,53.34,1,1.58,6106,115.256909,124.773422,134.667741,140.594394,I,Above,Flat,0,5701,Wood,46.14418798,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8470,NJBF000075773,262 39TH STREET SO,Brigantine,NJ,39.39106539,-74.39146773,RES1,3001,,43,NE,1935,1935,3102,2,2,1541.202242,1541.202242,3507,NO,31.63,41.73,1,0.57,6106,115.070333,124.604586,134.474714,140.471749,I,Above,Gable,0,5701,Wood,36.67996218,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 8471,NJBF000076767,4133 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3947198,-74.40056,RES1,3001,,17,NE,1956,1956,3102,2,1,1751.309202,1751.309202,3507,NO,30.27,39.7,1,2.89,6106,114.841939,124.397752,134.245742,140.278484,I,Above,Gable,0,5701,Wood,34.98972122,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8472,NJBF000076758,400 26TH STREET SO,Brigantine,NJ,39.39468885,-74.37961337,RES1,3001,,17,NE,1955,1955,3102,3,1,2357.008135,2357.008135,3507,NO,43,53.05,1,0.31,6106,115.274958,124.789974,134.685976,140.610544,I,Above,Hip,0,5701,Wood,48.02517392,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 8473,NJBF000076109,,Brigantine,NJ,39.3922525,-74.4070325,RES1,3001,,NaN,NE,1969,0,3103,5,1,2044.135726,2044.135726,3505,NO,64.82,76.05,3,7.68,6106,114.73343,124.302554,134.137733,140.208113,I,Above,Gable,0,5701,Wood,70.43134494,0,0,,,,1,1,,0.03,nav,1,1969,5,, 8474,NJBF000077449,2100 W BRIGANTINE AVE,Brigantine,NJ,39.39870635,-74.37811058,RES1,3001,,17,NE,1957,1957,3102,2,1,2406.435527,2406.435527,3507,NO,27.44,32.67,1,2.55,6106,115.262169,124.77796,134.67549,140.582446,I,Above,Hip,0,5701,Wood,30.05641044,0,0,,,,1,1,,0.03,nav,1,1957,2,, 8475,NJBF000078086,1201 W BRIGANTINE AVE,Brigantine,NJ,39.40283615,-74.37170817,COM1,3001,,NaN,ME,1969,0,3401,1,1,2908.65879,2908.65879,3507,NO,12.44,26.43,1,-0.37,6106,115.348403,124.857491,134.768142,140.630441,I,Above,Flat,0,NaN,Wood,19.43794735,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8476,NJBF000076693,2700 OCEAN AVE,Brigantine,NJ,39.39439979,-74.38056276,RES1,3001,,20,NE,2014,2014,3102,3,1,3729.141911,3729.141911,3507,NO,48.61,61.82,1,1.94,6110,115.258628,124.775045,134.668931,140.599404,I,Above,Hip,0,5701,Wood,55.21620889,0,1.1,,,,1,1,,0.35,nav,1,2014,3,, 8477,NJBF000075588,339 38TH STREET SO,Brigantine,NJ,39.39042224,-74.38848519,RES1,3001,,47,NE,1952,1952,3102,2,2,1359.13832,1359.13832,3507,NO,33.3,42.47,1,2.05,6110,115.139102,124.666805,134.544011,140.527051,I,Above,Hip,0,5701,Wood,37.88195938,0,0,,,,1,1,,0.35,nav,1,1952,2,, 8478,NJBF000081155,832 BOBBY JONES RD,Brigantine,NJ,39.41779439,-74.38130371,RES1,3001,,16,NE,1971,1971,3103,2,1,1103.965517,1103.965517,3505,NO,24.64,35.55,3,3.21,6106,114.998103,124.525853,134.401685,140.284123,I,Above,Gable,0,5701,Wood,30.09625961,0,0,,,,1,1,,0.03,nav,1,1971,2,, 8479,NJBF000075529,323 39TH STREET SO,Brigantine,NJ,39.3901971,-74.38948893,RES1,3001,,17,NE,1928,1928,3102,2,1,1632.424031,1632.424031,3507,NO,31.49,42.3,1,-0.96,6110,115.120822,124.65033,134.525334,140.514265,I,Above,Flat,0,5701,Wood,36.89495275,0,1.1,,,,1,1,,0.35,nav,1,1928,2,, 8480,NJBF000078133,244 12TH STREET SO,Brigantine,NJ,39.4031445,-74.3722275,RES1,3001,,15,NE,1950,1950,3102,1,1,573.9405651,573.9405651,3505,NO,10.24,19.43,3,-1.62,6106,115.334558,124.844606,134.753792,140.618345,I,Above,Hip,0,5701,Wood,14.83115032,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 8481,NJBF000075839,305 GULL COVE,Brigantine,NJ,39.39132746,-74.40373781,RES3B,3001,,35,ME,1991,1991,3301,3,1,7990.610292,7990.610292,3507,YES,43.08,57.83,1,1.63,6106,114.812295,124.373275,134.21603,140.273576,I,Above,Flat,0,5701,Wood,50.45336947,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 8482,NJBF000076386,235 36TH STREET SO,Brigantine,NJ,39.3932265,-74.3895885,RES1,3001,,43,NE,1947,1947,3102,2,2,1136.411144,1136.411144,3507,NO,39.94,51.88,1,1.14,6106,115.08559,124.617806,134.491229,140.472888,I,Above,Gable,0,5701,Wood,45.90785299,0,0,,,,1,1,,0.03,nav,1,1947,2,, 8483,NJBF000075717,274 39TH STREET SO,Brigantine,NJ,39.39084993,-74.39114086,RES1,3001,,45,NE,1960,1960,3102,2,2,1244.312095,1244.312095,3507,NO,24.41,38.94,1,0.86,6106,115.079461,124.612871,134.483835,140.479731,I,Above,Gable,0,5701,Wood,31.67849941,0,0,,,,1,1,,0.03,nav,1,1960,2,, 8484,NJBF000077888,2201 BAYSHORE AVE,Brigantine,NJ,39.40145509,-74.38186115,RES1,3001,,16,NE,1936,1936,3102,2,1,1569.701782,1569.701782,3507,YES,30.02,38.54,1,0.66,6106,115.155991,124.6798,134.566794,140.487666,I,Above,Hip,0,5701,Wood,34.28023221,0,1.2,,,,1,1,,0.03,nav,1,1936,2,, 8485,NJBF000073513,12 SEASIDE RD,Brigantine,NJ,39.38124838,-74.40305528,RES1,3001,,16,NE,1975,1975,3101,1,1,1917.929324,1917.929324,3507,NO,12.87,22.14,1,0.11,6106,114.938148,124.489215,134.337434,140.42074,I,Above,Gable,0,5701,Wood,17.50685701,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 8486,NJBF000080364,2 CUMMINGS PLACE,Brigantine,NJ,39.41484857,-74.37261623,RES1,3001,,16,NE,1970,1970,3102,2,1,1039.290492,1039.290492,3507,YES,24.18,29.63,1,2.74,6106,115.204156,124.720523,134.620025,140.463031,I,Above,Gable,0,5701,Wood,26.90580433,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8487,NJBF000078267,1313 BAYSHORE AVE,Brigantine,NJ,39.40426972,-74.37471845,RES1,3001,,19,NE,2005,2005,3102,2,1,4027.375792,4027.375792,3505,NO,23.44,38.44,3,-0.22,6106,115.271925,124.786315,134.688696,140.564663,I,Above,Gable,0,5701,Wood,30.9370451,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 8488,NJBF000075848,230 40TH STREET SO,Brigantine,NJ,39.39136402,-74.39321287,RES1,3001,,15,NE,1949,1949,3102,1,1,1351.970753,1351.970753,3507,NO,14.72,29.23,1,2.08,6106,115.030906,124.568981,134.435025,140.440287,I,Above,Gable,0,5701,Wood,21.97840971,0,0,,,,1,1,,0.03,nav,1,1949,1,, 8489,NJBF000075829,234 40TH STREET SO,Brigantine,NJ,39.39128647,-74.39311683,RES1,3001,,19,NE,2009,2009,3102,3,1,1853.282088,1853.282088,3507,NO,34.38,45.21,1,1.28,6106,115.033749,124.571564,134.437861,140.442836,I,Above,Gable,0,5701,Wood,39.79586001,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 8490,NJBF000076637,226 33RD STREET SO,Brigantine,NJ,39.3941505,-74.3876225,COM1,3001,,NaN,ME,1969,1958,3401,1,1,1463.486108,1463.486108,3507,NO,11.85,20.95,1,1.23,6106,115.116111,124.645237,134.522738,140.491749,I,Above,Flat,0,NaN,Wood,16.40295823,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8491,NJBF000076257,337 33RD STREET SO,Brigantine,NJ,39.39275183,-74.38538565,RES1,3001,,15,NE,1955,1955,3102,1,1,1200.750817,1200.750817,3507,NO,16.74,22.23,1,-0.48,6106,115.177478,124.701232,134.584572,140.545203,I,Above,Gable,0,5701,Wood,19.48216642,0,0,,,,1,1,,0.03,nav,1,1955,1,, 8492,NJBF000074397,4610 SCHOONER RD,Brigantine,NJ,39.3862355,-74.39884523,RES1,3001,,43,NE,1978,1978,3102,2,2,1664.577655,1664.577655,3507,NO,24.62,36.39,1,2.2,6110,114.970316,124.516307,134.371944,140.419851,I,Above,Gable,0,5701,Wood,30.50173716,0,0,,,,1,1,,0.35,nav,1,1978,2,, 8493,NJBF000074367,4612 SCHOONER RD,Brigantine,NJ,39.38608918,-74.39896158,RES1,3001,,43,NE,1979,1979,3102,2,2,1640.593047,1640.593047,3507,NO,38.11,46.34,1,-0.26,6110,114.969498,124.515623,134.371059,140.419964,I,Above,Gable,0,5701,Wood,42.22361625,0,0,,,,1,1,,0.35,nav,1,1979,2,, 8494,NJBF000076266,4316 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39278074,-74.40578404,RES1,3001,,17,NE,1986,1986,3102,2,1,1258.321881,1258.321881,3507,NO,36.86,49.58,1,-0.76,6106,114.753832,124.320326,134.157922,140.220947,I,Above,Hip,0,5701,Wood,43.22347712,0,0,,,,1,1,,0.03,nav,1,1986,2,, 8495,NJBF000078274,223 11TH STREET SO,Brigantine,NJ,39.40432966,-74.37135493,RES1,3001,,45,NE,1954,1956,3102,2,2,1288.956995,1288.956995,3505,NO,27.4,37.01,3,2.13,6106,115.339657,124.8493,134.759871,140.617042,I,Above,Gable,0,5701,Wood,32.20515088,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8496,NJBF000078268,243 10TH STREET SO,Brigantine,NJ,39.40428375,-74.37019591,RES1,3001,,15,NE,1950,1950,3102,1,1,1146.516601,1146.516601,3505,NO,25.35,31.36,3,6.22,6106,115.363672,124.871686,134.785144,140.635892,I,Above,Hip,0,5701,Wood,28.35651018,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8497,NJBF000080491,1405 SHERIDAN BLVD,Brigantine,NJ,39.41525336,-74.37518474,RES1,3001,,16,NE,1970,1970,3103,2,1,1638.788489,1638.788489,3505,YES,35.57,43.16,3,-1.08,6106,115.148012,124.667637,134.560501,140.41643,I,Above,Gable,0,5701,Wood,39.36787989,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8498,NJBF000080671,1315 DUNCAN PLACE,Brigantine,NJ,39.41586991,-74.37439341,RES1,3001,,17,NE,1989,1989,3102,1,1,1919.941394,1919.941394,3507,NO,13.89,20.45,1,1.95,6106,115.157736,124.676514,134.57077,140.421311,I,Above,Flat,0,5701,Wood,17.16850028,0,0,,,,1,1,,0.03,nav,1,1989,1,, 8499,NJBF000080368,1310 SHERIDAN BLVD,Brigantine,NJ,39.41486215,-74.37389409,RES1,3001,,17,NE,1989,1989,3102,1,1,2800.331012,2800.331012,3507,NO,18.85,32.85,1,0.4,6106,115.178162,124.696091,134.592447,140.442279,I,Above,Gable,0,5701,Wood,25.85203013,0,1.1,,,,1,1,,0.03,nav,1,1989,1,, 8500,NJBF000080852,11 COLLETTE CIRCLE,Brigantine,NJ,39.41658678,-74.3769735,RES1,3001,,16,NE,1961,1961,3103,1,1,1093.996155,1093.996155,3505,NO,16.44,25.66,3,-1.32,6106,115.098154,124.620254,134.507592,140.370295,I,Above,Hip,0,5701,Wood,21.05196077,0,0,,,,1,1,,0.03,nav,1,1961,1,, 8501,NJBF000081150,832 W SHORE DR,Brigantine,NJ,39.41777419,-74.38281052,RES1,3001,,17,NE,1964,1964,3103,2,1,2736.31525,2736.31525,3505,NO,31.53,44.23,3,1.44,6106,114.967695,124.497454,134.369716,140.259723,I,Above,Gable,0,5701,Wood,37.88180006,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 8502,NJBF000080532,705 STERLING PLACE,Brigantine,NJ,39.41534364,-74.37970462,RES1,3001,,16,NE,1976,1976,3103,2,1,1665.548154,1665.548154,3505,NO,38.53,48.22,3,4.99,6106,115.055401,124.580888,134.46274,140.342023,I,Above,Flat,0,5701,Wood,43.37480462,0,0,,,,1,1,,0.03,nav,1,1976,2,, 8503,NJBF000080886,807 BOBBY JONES RD,Brigantine,NJ,39.41670672,-74.38157822,RES1,3001,,16,NE,2016,2016,3103,3,1,1690.868693,1690.868693,3505,NO,56.66,64.79,3,7.07,6106,115.003516,124.531619,134.407782,140.293803,I,Above,Gable,0,5701,Wood,60.72519322,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 8504,NJBF000080833,803 STERLING PLACE,Brigantine,NJ,39.41651518,-74.38054256,RES1,3001,,17,NE,1964,2018,3103,2,1,1381.578432,1381.578432,3505,NO,28.48,39.57,3,0.1,6106,115.026485,124.553194,134.432003,140.313183,I,Above,Gable,0,5701,Wood,34.02488037,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 8505,NJBF000081050,826 W SHORE DR,Brigantine,NJ,39.41736082,-74.38300346,RES1,3001,,16,NE,1961,1961,3103,2,1,2455.229409,2455.229409,3505,NO,38.34,51.23,3,4.36,6106,114.967952,124.497984,134.370167,140.261976,I,Above,Hip,0,5701,Wood,44.78377145,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 8506,NJBF000076203,,Brigantine,NJ,39.39258625,-74.39230781,RES1,3001,,NaN,NE,1969,0,3102,2,1,2064.921931,2064.921931,3507,NO,30.82,45.33,1,0.38,6106,115.036319,124.573475,134.441003,140.438398,I,Above,Flat,0,5701,Wood,38.07917778,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8507,NJBF000080809,801 STERLING PLACE,Brigantine,NJ,39.41642092,-74.38044102,RES1,3001,,16,NE,1974,1974,3103,1,1,1893.679312,1893.679312,3505,NO,17.16,25.93,3,-0.86,6106,115.029509,124.556077,134.435214,140.316067,I,Above,Hip,0,5701,Wood,21.54752295,0,1.2,,,,1,1,,0.03,nav,1,1974,1,, 8508,NJBF000075584,304 ARBEGAST DRIVE,Brigantine,NJ,39.39040533,-74.4035147,RES3B,3001,,35,ME,1987,1987,3301,2,1,3214.092195,3214.092195,3507,YES,28.19,41.03,1,1.86,6106,114.826974,124.386863,134.230542,140.289662,I,Above,Gable,0,5701,Wood,34.61280732,0,0,,,,1,1,,0.03,nav,1,1987,2,, 8509,NJBF000074399,4521 W BRIGANTINE AVE,Brigantine,NJ,39.38623952,-74.39602792,RES1,3001,,16,NE,1968,1968,3102,2,1,1080.832072,1080.832072,3507,NO,41.24,48.96,1,2.5,6110,115.028947,124.568634,134.430481,140.464013,I,Above,Gable,0,5701,Wood,45.10033229,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8510,NJBF000080704,716 STERLING PLACE,Brigantine,NJ,39.41597551,-74.38070582,RES1,3001,,16,NE,1972,1972,3103,2,1,1225.399332,1225.399332,3505,YES,40.02,50.86,3,8.07,6106,115.028641,124.555532,134.43443,140.317534,I,Above,Flat,0,5701,Wood,45.43704733,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 8511,NJBF000076196,241 37TH STREET SO,Brigantine,NJ,39.39255998,-74.3902704,RES1,3001,,29,NE,1949,1949,3102,2,2,2132.181166,2132.181166,3507,NO,31.11,42.31,1,0.73,6106,115.078773,124.611817,134.483995,140.470914,I,Above,Gable,0,5701,Wood,36.71302501,0,0,,,,1,1,,0.03,nav,1,1949,2,, 8512,NJBF000081055,812 STERLING PLACE,Brigantine,NJ,39.41737021,-74.38132313,RES1,3001,,16,NE,1978,1978,3103,2,1,1998.654531,1998.654531,3505,YES,29.96,44.3,3,8.13,6106,115.001995,124.52977,134.405944,140.289333,I,Above,Gable,0,5701,Wood,37.12845859,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 8513,NJBF000077289,107 28TH STREET SO,Brigantine,NJ,39.39767903,-74.38477186,RES1,3001,,18,NE,2004,2004,3102,2,1,3334.80392,3334.80392,3507,NO,28.41,34.82,1,1.99,6106,115.136666,124.663084,134.545397,140.490656,I,Above,Hip,0,5701,Wood,31.61472175,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 8514,NJBF000080964,819 W SHORE DR,Brigantine,NJ,39.41703772,-74.3825047,RES1,3001,,18,NE,2017,2017,3103,3,1,1876.52947,1876.52947,3505,NO,62.2,75.9,3,4.29,6106,114.981333,124.510693,134.384351,140.274342,I,Above,Gable,0,5701,Wood,69.0503269,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 8515,NJBF000078006,913 OCEAN AVE,Brigantine,NJ,39.40225133,-74.36821643,RES1,3001,,19,NE,1989,1989,3102,2,1,1437.741509,1437.741509,3502,NO,42.28,56.14,5,6.85,6110,115.425548,124.929319,134.848949,140.692649,I,Above,Flat,0,5701,Wood,49.21204596,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 8516,NJBF000076924,300 28TH STREET SO,Brigantine,NJ,39.39546355,-74.38297947,RES1,3001,,17,NE,2015,2015,3102,2,1,1579.706584,1579.706584,3507,NO,25.27,36.17,1,2.65,6106,115.197447,124.719029,134.606703,140.54775,I,Above,Hip,0,5701,Wood,30.72078437,0,0,,,,1,1,,0.03,nav,1,2015,2,, 8517,NJBF000076891,,Brigantine,NJ,39.39521464,-74.381469,RES1,3001,,NaN,NE,1969,0,3102,2,1,1687.830876,1687.830876,3507,NO,23.75,30.2,1,-0.25,6106,115.231159,124.749863,134.641216,140.574689,I,Above,Flat,0,5701,Wood,26.97474901,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8518,NJBF000076905,,Brigantine,NJ,39.39531898,-74.38161496,RES1,3001,,NaN,NE,1969,0,3102,2,1,2148.458242,2148.458242,3507,NO,40.95,53.59,1,2.51,6106,115.227032,124.746078,134.637036,140.571054,I,Above,Hip,0,5701,Wood,47.27147506,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8519,NJBF000076963,303 28TH STREET SO,Brigantine,NJ,39.39559883,-74.3824335,RES1,3001,,16,NE,1955,1955,3102,2,1,1055.220536,1055.220536,3507,YES,23.51,34.36,1,0.56,6106,115.207176,124.727896,134.616785,140.554567,I,Above,Gable,0,5701,Wood,28.9315075,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8520,NJBF000077084,102 30TH STREET SO,Brigantine,NJ,39.3964092,-74.38652982,RES1,3001,,17,NE,1952,1952,3102,2,1,2288.922335,2288.922335,3507,NO,24.62,34.47,1,1.73,6106,115.114183,124.642913,134.521805,140.479439,I,Above,Gable,0,5701,Wood,29.54153007,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 8521,NJBF000078217,,Brigantine,NJ,39.40375203,-74.36826383,COM1,3001,,NaN,ME,1969,0,3401,3,1,1231.637456,1231.637456,3507,NO,37.21,47.81,1,1.43,6110,115.408517,124.913531,134.832116,140.672992,I,Above,Gable,0,NaN,Wood,42.51087645,0,0,,,,1,1,,0.35,nav,1,1969,3,, 8522,NJBF000075641,89 LAGOON BLVD,Brigantine,NJ,39.39057925,-74.39922465,RES1,3001,,18,NE,2002,2002,3102,2,1,3256.693624,3256.693624,3507,NO,31.03,37.65,1,2.25,6106,114.914562,124.464902,134.317889,140.355592,I,Above,Hip,0,5701,Wood,34.33910294,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 8523,NJBF000074565,4 SHIPMASTER DR,Brigantine,NJ,39.38702766,-74.39838513,RES1,3001,,16,NE,1971,1971,3102,2,1,1712.675904,1712.675904,3507,YES,26.34,32.21,1,1.88,6110,114.971112,124.516766,134.373109,140.41648,I,Above,Gable,0,5701,Wood,29.27109424,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 8524,NJBF000076541,214 35TH STREET SO,Brigantine,NJ,39.39383807,-74.3897553,RES1,3001,,47,NE,1984,1984,3102,2,2,1451.041772,1451.041772,3507,NO,23.43,35.01,1,2.27,6106,115.075504,124.608507,134.481256,140.462212,I,Above,Gable,0,5701,Wood,29.22321507,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8525,NJBF000080758,713 LAFAYETTE BLVD,Brigantine,NJ,39.41618041,-74.379275,RES1,3001,,16,NE,1972,1972,3103,1,1,1931.403699,1931.403699,3505,NO,23.23,36.8,3,8.07,6106,115.055628,124.580636,134.462785,140.338174,I,Above,Flat,0,5701,Wood,30.01162939,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 8526,NJBF000077488,305 20TH STREET SO,Brigantine,NJ,39.39900444,-74.37663147,RES1,3001,,16,NE,1962,1962,3102,2,1,1426.857951,1426.857951,3507,YES,36.1,42.37,1,2.86,6106,115.289204,124.80284,134.703761,140.601892,I,Above,Gable,0,5701,Wood,39.2355869,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 8527,NJBF000078096,2 18TH STREET SO,Brigantine,NJ,39.40290945,-74.37856715,RES1,3001,,16,NE,1950,1950,3102,1,1,2741.783315,2741.783315,3507,NO,16.13,26.96,1,0.34,6106,115.207896,124.72727,134.621221,140.52114,I,Above,Gable,0,5701,Wood,21.54365163,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 8528,NJBF000075504,327 39TH STREET SO,Brigantine,NJ,39.39008423,-74.38944298,RES1,3001,,14,NE,1952,1952,3102,1,1,772.8556441,772.8556441,3507,NO,13.67,28.31,1,1.18,6110,115.123018,124.652332,134.527489,140.516469,I,Above,Gable,0,5701,Wood,20.98918554,0,0,,,,1,1,,0.35,nav,1,1952,1,, 8529,NJBF000074464,113 HUDSON DR,Brigantine,NJ,39.38654892,-74.39615897,RES1,3001,,16,NE,1968,1968,3102,2,1,1723.760054,1723.760054,3507,NO,31.51,36.94,1,2.91,6110,115.022786,124.563051,134.424493,140.457851,I,Above,Hip,0,5701,Wood,34.22393862,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8530,NJBF000076402,3618 BAYSHORE AVE,Brigantine,NJ,39.39327735,-74.39124412,RES1,3001,,43,NE,1958,1958,3102,1,2,2333.281337,2333.281337,3507,NO,10.98,17.92,1,-0.8,6106,115.05082,124.586348,134.455966,140.44608,I,Above,Hip,0,5701,Wood,14.45012718,0,0,,,,1,1,,0.03,nav,1,1958,1,, 8531,NJBF000073292,12 SEA SPRAY COURT,Brigantine,NJ,39.37961824,-74.40532158,RES1,3001,,16,NE,1973,1973,3101,2,1,1480.047423,1480.047423,3507,NO,27.79,34.14,1,2.57,6106,114.909046,124.463987,134.307867,140.407271,I,Above,Gable,0,5701,Wood,30.96229461,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 8532,NJBF000080258,7 CUMMINGS PLACE,Brigantine,NJ,39.41446634,-74.37208464,RES1,3001,,16,NE,1972,1972,3102,2,1,1121.972104,1121.972104,3507,NO,31.37,40.23,1,0.59,6106,115.218835,124.734448,134.635585,140.476459,I,Above,Flat,0,5701,Wood,35.79619013,0,0,,,,1,1,,0.03,nav,1,1972,2,, 8533,NJBF000075559,3707 OCEAN AVE,Brigantine,NJ,39.39030082,-74.38786581,RES1,3001,,43,NE,1950,1950,3102,2,2,647.1716522,647.1716522,3507,NO,33.6,43.17,1,2.59,6106,115.153224,124.679592,134.558269,140.538329,I,Above,Gable,0,5701,Wood,38.3808826,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 8534,NJBF000073739,,Brigantine,NJ,39.38283061,-74.4041715,RES3D,3001,,NaN,ME,1969,0,3301,1,1,10814.56262,10814.56262,3507,NO,15.8,23.79,1,2.32,6106,114.896925,124.452289,134.29761,140.381875,I,Above,Gable,0,NaN,Wood,19.79637386,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8535,NJBF000074711,314 44TH STREET SO,Brigantine,NJ,39.38752838,-74.39304528,RES1,3001,,43,NE,1950,1950,3102,2,2,1272.371779,1272.371779,3507,YES,24.9,30.81,1,2.25,6106,115.076638,124.611065,134.479085,140.493684,I,Above,Gable,0,5701,Wood,27.8535425,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8536,NJBF000075549,107 44TH STREET SO,Brigantine,NJ,39.39027003,-74.39667242,RES1,3001,,16,NE,1968,1968,3102,1,1,2232.145762,2232.145762,3507,NO,17.94,28.49,1,1.39,6106,114.971066,124.515605,134.374387,140.400186,I,Above,Gable,0,5701,Wood,23.21308997,0,0,,,,1,1,,0.03,nav,1,1968,1,, 8537,NJBF000080399,1302 SHERIDAN BLVD,Brigantine,NJ,39.41492855,-74.37292827,RES1,3001,,16,NE,1974,1974,3102,2,1,1004.205217,1004.205217,3507,NO,32.4,46.97,1,2.68,6106,115.197023,124.71379,134.612456,140.456986,I,Above,Flat,0,5701,Wood,39.68664177,0,0,,,,1,1,,0.03,nav,1,1974,2,, 8538,NJBF000077676,2006 REVERE BLVD,Brigantine,NJ,39.40026551,-74.37894593,RES1,3001,,15,NE,1955,1955,3101,1,1,1100.687413,1100.687413,3507,NO,20.34,30.79,1,1.18,6106,115.228338,124.746615,134.641263,140.549208,I,Above,Gable,0,5701,Wood,25.56832235,0,0,,,,1,1,,0.03,nav,1,1955,1,, 8539,NJBF000078092,347 9TH STREET SO,Brigantine,NJ,39.40288298,-74.36778093,RES1,3001,,17,NE,1954,1954,3102,2,1,1904.80836,1904.80836,3502,NO,24.04,35.21,5,0.29,6110,115.427594,124.931285,134.851612,140.691508,I,Above,Hip,0,5701,Wood,29.62777909,0,0,,,,1,1,,0.35,nav,1,1954,2,, 8540,NJBF000074771,,Brigantine,NJ,39.38773612,-74.40143646,RES1,3001,,NaN,NE,1969,0,3102,2,1,1420.284232,1420.284232,3507,NO,37.09,42.58,1,-0.42,6106,114.899639,124.452819,134.302197,140.358811,I,Above,Gable,0,5701,Wood,39.83849272,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8541,NJBF000075651,81 LAGOON BLVD,Brigantine,NJ,39.39061511,-74.39838031,RES1,3001,,17,NE,1987,1987,3102,3,1,2183.60293,2183.60293,3507,NO,38,47.34,1,1.4,6106,114.931762,124.480271,134.335108,140.368517,I,Above,Hip,0,5701,Wood,42.67058122,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 8542,NJBF000077535,105 25TH STREET SO,Brigantine,NJ,39.39930485,-74.38290897,RES1,3001,,18,NE,1956,1956,3101,2,1,2769.713926,2769.713926,3507,YES,25.16,34.57,1,-0.28,6106,115.157466,124.681707,134.567491,140.498974,I,Above,Flat,0,5701,Wood,29.86650765,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8543,NJBF000077187,209 27TH STREET SO,Brigantine,NJ,39.39712022,-74.38291289,RES1,3001,,18,NE,2011,2011,3102,2,1,3364.775737,3364.775737,3507,NO,27.31,39.54,1,-0.5,6106,115.180879,124.703611,134.590589,140.527297,I,Above,Hip,0,5701,Wood,33.42195768,0,1.1,,,,1,1,,0.03,nav,1,2011,2,, 8544,NJBF000076904,2806 W BRIGANTINE AVE,Brigantine,NJ,39.39530814,-74.38339932,RES1,3001,,17,NE,1958,1958,3102,2,1,2178.829812,2178.829812,3507,NO,29.87,34.99,1,1.98,6106,115.19051,124.71272,134.599486,140.54317,I,Above,Gable,0,5701,Wood,32.43013258,0,1.2,,,,1,1,,0.03,nav,1,1958,2,, 8545,NJBF000074594,67 SAILFISH DRIVE,Brigantine,NJ,39.38713944,-74.40217339,RES3B,3001,,35,ME,1987,1987,3301,3,1,4069.77784,4069.77784,3507,NO,41.07,48.62,1,-0.58,6106,114.890828,124.445234,134.293255,140.355203,I,Above,Gable,0,5701,Wood,44.84631055,0,0,,,,1,1,,0.03,nav,1,1987,3,, 8546,NJBF000078094,329 10TH STREET SO,Brigantine,NJ,39.40290416,-74.36890845,RES1,3001,,16,NE,1954,1954,3102,2,1,1322.726875,1322.726875,3502,NO,51.05,64.15,5,14.79,6110,115.404522,124.909755,134.827272,140.673575,I,Above,Hip,0,5701,Wood,57.60185373,0,0,,,,1,1,,0.35,nav,1,1954,2,, 8547,NJBF000077762,108 21ST STREET SO,Brigantine,NJ,39.40075076,-74.37997748,RES1,3001,,15,NE,1956,1956,3101,2,1,1463.965327,1463.965327,3507,YES,28.92,35.99,1,1.77,6106,115.202063,124.722339,134.614238,140.526651,I,Above,Gable,0,5701,Wood,32.45456163,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8548,NJBF000075852,,Brigantine,NJ,39.39136673,-74.39057773,RES1,3001,,NaN,NE,1969,0,3102,2,1,2166.955952,2166.955952,3507,NO,26.34,36.3,1,2.63,6106,115.085445,124.618145,134.490163,140.481776,I,Above,Gable,0,5701,Wood,31.3208781,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8549,NJBF000077481,,Brigantine,NJ,39.39893326,-74.38493175,RES1,3001,,NaN,NE,1948,0,3102,2,1,2095.46027,2095.46027,3507,NO,23.74,30.4,1,-0.36,6106,115.119919,124.647443,134.528683,140.471756,I,Above,Hip,0,5701,Wood,27.07424431,0,0,,,,1,1,,0.03,nav,1,1948,2,, 8550,NJBF000077467,2600 BAYSHORE AVE,Brigantine,NJ,39.3988365,-74.3843845,RES1,3001,,17,NE,2015,2015,3102,2,1,1701.860439,1701.860439,3507,NO,28.5,38.23,1,1.41,6106,115.132205,124.658703,134.541282,140.481698,I,Above,Hip,0,5701,Wood,33.36745498,0,0,,,,1,1,,0.03,nav,1,2015,2,, 8551,NJBF000078286,1207 W BEACH AVE,Brigantine,NJ,39.40442212,-74.37336119,RES1,3001,,16,NE,1952,1952,3102,1,1,1410.524595,1410.524595,3505,NO,11.62,19.38,3,-1.29,6106,115.297919,124.810447,134.716039,140.584192,I,Above,Hip,0,5701,Wood,15.49821214,0,0,,,,1,1,,0.03,nav,1,1952,1,, 8552,NJBF000078281,226 10TH STREET SO,Brigantine,NJ,39.40439916,-74.37096508,RES1,3001,,16,NE,1946,1946,3102,1,1,1558.718867,1558.718867,3505,NO,18.26,29.24,3,5.29,6106,115.346842,124.855992,134.767479,140.622317,I,Above,Hip,0,5701,Wood,23.74962286,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 8553,NJBF000076563,241 34TH STREET SO,Brigantine,NJ,39.3939168,-74.38792833,RES1,3001,,14,NE,1950,1950,3102,1,1,947.7289547,947.7289547,3507,NO,13.86,18.98,1,2.09,6106,115.112364,124.641892,134.518803,140.490007,I,Above,Gable,0,5701,Wood,16.41940441,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 8554,NJBF000077442,112 25TH STREET SO,Brigantine,NJ,39.39865791,-74.38293362,RES1,3001,,17,NE,1920,1920,3102,2,1,1823.14443,1823.14443,3507,NO,28.07,41.16,1,1.68,6106,115.163892,124.687746,134.573837,140.506987,I,Above,Flat,0,5701,Wood,34.61088311,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 8555,NJBF000077425,316 19TH STREET SO,Brigantine,NJ,39.39853949,-74.37567789,RES1,3001,,17,NE,2011,2011,3102,2,1,3083.028966,3083.028966,3507,YES,33.68,45.55,1,0.77,6106,115.313677,124.825432,134.728906,140.622802,I,Above,Hip,0,5701,Wood,39.61184417,0,0,,,,1,1,,0.03,nav,1,2011,2,, 8556,NJBF000077236,304 23RD STREET SO,Brigantine,NJ,39.39739478,-74.37915717,RES1,3001,,15,NE,1960,1960,3102,1,1,1434.086954,1434.086954,3507,NO,16.48,29.52,1,1.35,6106,115.254915,124.771417,134.667151,140.582865,I,Above,Hip,0,5701,Wood,23.00094283,0,0,,,,1,1,,0.03,nav,1,1960,1,, 8557,NJBF000077239,2705 REVERE BLVD,Brigantine,NJ,39.39740629,-74.3843474,RES1,3001,,16,NE,1925,1925,3102,2,1,966.6176309,966.6176309,3507,NO,24.12,38.01,1,2.28,6106,115.148339,124.673812,134.557268,140.500936,I,Above,Gable,0,5701,Wood,31.06887812,0,0,,,,1,1,,0.03,nav,1,1925,2,, 8558,NJBF000077237,2913 BAYSHORE AVE,Brigantine,NJ,39.39739542,-74.38676144,RES1,3001,,NaN,NE,1958,1958,3102,2,1,1701.319049,1701.319049,3507,NO,30.73,38.58,1,1.15,6106,115.098807,124.62863,134.506457,140.46287,I,Above,Flat,0,5701,Wood,34.65841377,0,0,,,,1,1,,0.03,nav,1,1958,2,, 8559,NJBF000077233,303 24TH STREET SO,Brigantine,NJ,39.39738984,-74.37965641,RES1,3001,,15,NE,1955,1955,3102,1,1,1487.348059,1487.348059,3507,NO,15.74,28.18,1,2.87,6106,115.244751,124.762087,134.656634,140.575088,I,Above,Gable,0,5701,Wood,21.95688074,0,0,,,,1,1,,0.03,nav,1,1955,1,, 8560,NJBF000077440,,Brigantine,NJ,39.39864346,-74.37691406,RES1,3001,,NaN,NE,1969,0,3102,2,1,1174.503594,1174.503594,3507,NO,36.21,44.59,1,1.6,6106,115.287314,124.801121,134.701559,140.602071,I,Above,Hip,0,5701,Wood,40.40031466,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8561,NJBF000077462,2409 REVERE BLVD,Brigantine,NJ,39.39878982,-74.38239775,RES1,3001,,17,NE,1956,1956,3101,2,1,1990.685877,1990.685877,3507,NO,23.95,31.47,1,-0.06,6106,115.173471,124.696491,134.583773,140.51375,I,Above,Hip,0,5701,Wood,27.71118239,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8562,NJBF000077451,2404 REVERE BLVD,Brigantine,NJ,39.39871738,-74.38171971,RES1,3001,,16,NE,1956,1956,3102,2,1,1552.991098,1552.991098,3507,YES,28.44,35.97,1,-0.51,6106,115.188158,124.709969,134.598895,140.525412,I,Above,Flat,0,5701,Wood,32.20225029,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8563,NJBF000077249,2503 W BRIGANTINE AVE,Brigantine,NJ,39.3974815,-74.3816665,RES1,3001,,17,NE,1954,1954,3102,2,1,681.7436656,681.7436656,3507,NO,33.22,44.08,1,1.95,6106,115.202572,124.723402,134.613131,140.542275,I,Above,Hip,0,5701,Wood,38.65189582,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8564,NJBF000077271,2005 OCEAN AVE,Brigantine,NJ,39.39758492,-74.37642852,RES1,3001,,19,NE,1976,1976,3102,2,1,2287.290164,2287.290164,3507,YES,32.48,43.6,1,2.21,6106,115.308653,124.820826,134.722996,140.623228,I,Above,Gable,0,5701,Wood,38.04042356,0,0,,,,1,1,,0.03,nav,1,1976,2,, 8565,NJBF000077245,319 22ND STREET SO,Brigantine,NJ,39.39744293,-74.37749596,RES1,3001,,15,NE,1954,1954,3102,1,1,1612.033009,1612.033009,3507,NO,15.61,28.65,1,0.95,6106,115.288381,124.802172,134.701853,140.608322,I,Above,Flat,0,5701,Wood,22.12804024,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8566,NJBF000077252,209 26TH STREET SO,Brigantine,NJ,39.39750309,-74.38215737,RES1,3001,,16,NE,1962,1962,3102,1,1,1833.152185,1833.152185,3507,NO,9.63,16.36,1,-0.96,6106,115.192263,124.713957,134.602514,140.53425,I,Above,Gable,0,5701,Wood,12.99167897,0,0,,,,1,1,,0.03,nav,1,1962,1,, 8567,NJBF000077448,311 20TH STREET SO,Brigantine,NJ,39.39869009,-74.37628608,RES1,3001,,19,NE,2011,2011,3102,3,1,1787.373271,1787.373271,3507,NO,54.79,65.69,1,1.72,6106,115.299634,124.812475,134.714399,140.611331,I,Above,Gable,0,5701,Wood,60.23869334,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 8568,NJBF000077274,317 22ND STREET SO,Brigantine,NJ,39.39759449,-74.37754061,RES1,3001,,20,NE,2006,2006,3102,3,1,2079.333353,2079.333353,3507,NO,35.84,43.79,1,-0.24,6106,115.285827,124.799815,134.699308,140.605679,I,Above,Hip,0,5701,Wood,39.81611245,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 8569,NJBF000076586,223 35TH STREET SO,Brigantine,NJ,39.39398406,-74.38914438,RES1,3001,,17,NE,1987,1987,3102,3,1,1468.834932,1468.834932,3507,NO,32.54,42.4,1,0.98,6106,115.086537,124.61846,134.49254,140.469941,I,Above,Flat,0,5701,Wood,37.46823944,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 8570,NJBF000076167,221 38TH STREET SO,Brigantine,NJ,39.3924615,-74.3914205,RES1,3001,,43,NE,1952,1952,3102,3,2,941.6823609,941.6823609,3507,NO,54.27,64.27,1,2.45,6106,115.056053,124.591321,134.460924,140.454064,I,Above,Hip,0,5701,Wood,59.2715827,0,0,,,,1,1,,0.03,nav,1,1952,3,, 8571,NJBF000079030,,Brigantine,NJ,39.40910742,-74.3609695,RES3D,3001,,NaN,E,1969,0,3303,4,1,10852.52825,10852.52825,3507,NO,50.19,61.09,1,2.6,6106,115.498986,124.999081,134.932363,140.720603,I,Above,Flat,0,NaN,Wood,55.64122669,0,0,,,,1,1,,0.03,nav,1,1969,4,, 8572,NJBF000080863,805 STERLING PLACE,Brigantine,NJ,39.41664234,-74.38059316,RES1,3001,,16,NE,1975,1975,3103,1,1,1344.537465,1344.537465,3505,NO,20.37,32.99,3,6.32,6106,115.024183,124.550965,134.429541,140.310717,I,Above,Gable,0,5701,Wood,26.68156939,0,0,,,,1,1,,0.03,nav,1,1975,1,, 8573,NJBF000074187,21 BEACON LANE,Brigantine,NJ,39.38529502,-74.39741463,RES3C,3001,,37,ME,1978,1978,3301,3,1,6591.402962,6591.402962,3507,YES,50.83,57.15,1,0.17,6106,115.01059,124.552475,134.4116,140.454851,I,Above,Hip,0,5701,Wood,53.99061097,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 8574,NJBF000075544,3906 W BRIGANTINE AVE,Brigantine,NJ,39.39024592,-74.39044474,RES1,3001,,16,NE,1952,1952,3102,2,1,863.0215872,863.0215872,3507,NO,36.52,47.52,1,0.52,6106,115.100504,124.631984,134.504789,140.498622,I,Above,Hip,0,5701,Wood,42.02112478,0,0,,,,1,1,,0.03,nav,1,1952,2,, 8575,NJBF000078192,324 8TH STREET SO,Brigantine,NJ,39.40355802,-74.36789791,RES1,3001,,15,NE,1956,1956,3102,1,1,1477.706487,1477.706487,3502,NO,25.45,35.6,5,13.29,6110,115.418005,124.922382,134.841999,140.681179,I,Above,Hip,0,5701,Wood,30.52400457,0,0,,,,1,1,,0.35,nav,1,1956,1,, 8576,NJBF000076124,,Brigantine,NJ,39.39231085,-74.38733433,RES1,3001,,NaN,NE,1956,0,3102,2,1,989.1246841,989.1246841,3507,NO,26.29,41.15,1,0.53,6106,115.142139,124.669231,134.548261,140.520385,I,Above,Hip,0,5701,Wood,33.71880569,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8577,NJBF000075825,272 38TH STREET SO,Brigantine,NJ,39.3912775,-74.3904405,RES1,3001,,43,NE,1974,1974,3102,2,2,939.8401454,939.8401454,3507,NO,28.99,38.08,1,0.33,6106,115.089276,124.621624,134.493995,140.485119,I,Above,Gable,0,5701,Wood,33.53490531,0,0,,,,1,1,,0.03,nav,1,1974,2,, 8578,NJBF000075530,4406 HARBOR BEACH BLVD,Brigantine,NJ,39.39019812,-74.39706868,RES1,3001,,16,NE,1970,1970,3102,1,1,1845.274845,1845.274845,3507,NO,18.4,24.38,1,-0.6,6106,114.963599,124.508942,134.366873,140.394867,I,Above,Gable,0,5701,Wood,21.38641007,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 8579,NJBF000075562,,Brigantine,NJ,39.39031352,-74.38622216,RES3C,3001,,NaN,E,1969,0,3303,4,1,2455.647509,2455.647509,3507,NO,45.74,55.34,1,2.99,6106,115.187019,124.710183,134.592639,140.563869,I,Above,Flat,0,NaN,Wood,50.54117952,0,0,,,,1,1,,0.03,nav,1,1969,4,, 8580,NJBF000075877,,Brigantine,NJ,39.3914653,-74.39073583,RES1,3001,,NaN,NE,1969,0,3102,2,1,1774.635112,1774.635112,3507,NO,21.87,36.28,1,0.67,6106,115.081103,124.614202,134.485815,140.477998,I,Above,Hip,0,5701,Wood,29.07237798,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8581,NJBF000076149,3118 OCEAN AVE,Brigantine,NJ,39.39238877,-74.38377273,RES1,3001,,18,NE,1989,1989,3102,3,1,1945.634603,1945.634603,3507,NO,52.65,60.62,1,1.71,6106,115.214666,124.735088,134.622348,140.575186,I,Above,Flat,0,5701,Wood,56.63411615,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 8582,NJBF000077080,300 26TH STREET SO,Brigantine,NJ,39.39639477,-74.38158609,RES1,3001,,17,NE,1990,1990,3102,2,1,2021.526151,2021.526151,3507,NO,37.39,47.28,1,1.77,6106,115.215953,124.735814,134.6263,140.557591,I,Above,Gable,0,5701,Wood,42.33550651,0,0,,,,1,1,,0.03,nav,1,1990,2,, 8583,NJBF000075915,,Brigantine,NJ,39.39161152,-74.38770766,RES1,3001,,NaN,NE,1969,0,3102,2,1,1482.633772,1482.633772,3507,NO,37.79,51.54,1,-1,6106,115.142077,124.669298,134.547778,140.523657,I,Above,Hip,0,5701,Wood,44.66666117,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8584,NJBF000079382,201 5TH STREET NO,Brigantine,NJ,39.41090471,-74.3610039,RES1,3001,,15,NE,1955,1955,3102,1,1,781.0166328,781.0166328,3507,NO,21.47,31.16,1,2.62,6106,115.479348,124.980712,134.912539,140.69771,I,Above,Gable,0,5701,Wood,26.31424681,0,0,,,,1,1,,0.03,nav,1,1955,1,, 8585,NJBF000075406,,Brigantine,NJ,39.38974238,-74.39539578,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2179.560716,2179.560716,3507,NO,16.9,29.12,1,-0.43,6106,115.003377,124.544756,134.406613,140.427379,I,Above,Gable,0,5701,Wood,23.00579025,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8586,NJBF000076382,,Brigantine,NJ,39.3932106,-74.3865163,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4768.352779,4768.352779,3507,NO,14.98,24.92,1,2.32,6106,115.149175,124.67545,134.555959,140.521474,I,Above,Hip,0,NaN,Wood,19.95004392,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8587,NJBF000077086,2701 W BRIGANTINE AVE,Brigantine,NJ,39.3964183,-74.3828622,RES1,3001,,18,NE,1974,1974,3102,2,1,2560.318807,2560.318807,3507,NO,37.26,52.18,1,-0.5,6106,115.189512,124.711629,134.599094,140.537213,I,Above,Gable,0,5701,Wood,44.72200897,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 8588,NJBF000073432,15 OCEAN DRIVE EAST,Brigantine,NJ,39.38067453,-74.40284635,RES1,3001,,16,NE,1975,1975,3101,2,1,2345.791299,2345.791299,3507,YES,23.57,30.82,1,2.11,6106,114.949006,124.49896,134.347798,140.431714,I,Above,Gable,0,5701,Wood,27.19203251,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8589,NJBF000075422,16 LAGOON BLVD,Brigantine,NJ,39.38981927,-74.40147109,RES1,3001,,17,NE,1985,1985,3102,2,1,2818.865669,2818.865669,3507,YES,37.59,45.87,1,3,6106,114.876044,124.430869,134.279269,140.33015,I,Above,Gable,0,5701,Wood,41.73386351,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8590,NJBF000073711,2 OCKENLANDER DRIVE,Brigantine,NJ,39.38264151,-74.40941475,RES1,3001,,18,NE,2002,2002,3103,2,1,1588.999028,1588.999028,3505,NO,36.75,47.23,3,-0.12,6106,114.788929,124.357174,134.19147,140.30178,I,Above,Hip,0,5701,Wood,41.99305814,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 8591,NJBF000075407,319 40TH STREET SO,Brigantine,NJ,39.389747,-74.390228,RES1,3001,,16,NE,1952,1952,3102,2,1,897.3605352,897.3605352,3507,NO,36.5,44.25,1,-0.14,6110,115.110489,124.641089,134.514596,140.508588,I,Above,Gable,0,5701,Wood,40.37385999,0,0,,,,1,1,,0.35,nav,1,1952,2,, 8592,NJBF000073686,4 OCKENLANDER DRIVE,Brigantine,NJ,39.38249477,-74.40988147,RES1,3001,,17,NE,1992,1992,3103,2,1,2521.355921,2521.355921,3505,NO,41.53,52.45,3,3.37,6106,114.780765,124.35007,134.183444,140.296422,I,Above,Gable,0,5701,Wood,46.98941718,0,1.2,,,,1,1,,0.03,nav,1,1992,2,, 8593,NJBF000079680,101 6TH STREET NO,Brigantine,NJ,39.41230201,-74.36149416,RES1,3001,,15,NE,1953,1953,3102,1,1,913.016595,913.016595,3507,NO,14.58,26.28,1,1.43,6106,115.454856,124.957607,134.887077,140.672594,I,Above,Flat,0,5701,Wood,20.43075276,0,0,,,,1,1,,0.03,nav,1,1953,1,, 8594,NJBF000075980,337 35TH STREET SO,Brigantine,NJ,39.39182596,-74.38674877,RES1,3001,,15,NE,1952,1952,3102,1,1,1469.602079,1469.602079,3507,YES,14.59,21.68,1,1.79,6106,115.159521,124.68507,134.565666,140.535903,I,Above,Flat,0,5701,Wood,18.13787643,0,0,,,,1,1,,0.03,nav,1,1952,1,, 8595,NJBF000075721,101 44TH STREET SO,Brigantine,NJ,39.39087946,-74.39674111,RES1,3001,,16,NE,1968,1968,3102,1,1,2108.667352,2108.667352,3507,NO,15.06,24.7,1,2.03,6106,114.96297,124.508117,134.366472,140.39096,I,Above,Gable,0,5701,Wood,19.88015335,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8596,NJBF000078048,345 10TH STREET SO,Brigantine,NJ,39.40254987,-74.36858463,RES1,3001,,19,NE,2012,2012,3102,3,1,2089.271103,2089.271103,3502,NO,45.04,52.5,5,4.28,6110,115.414861,124.919376,134.83791,140.683102,I,Above,Hip,0,5701,Wood,48.76990406,0,1.1,,,,1,1,,0.35,nav,1,2012,3,, 8597,NJBF000080195,39 CUMMINGS PLACE,Brigantine,NJ,39.41422343,-74.37381346,RES1,3001,,16,NE,1977,1977,3102,1,1,1520.588596,1520.588596,3507,NO,12.93,20.59,1,0.59,6106,115.186366,124.704022,134.601125,140.451763,I,Above,Gable,0,5701,Wood,16.76168762,0,0,,,,1,1,,0.03,nav,1,1977,1,, 8598,NJBF000075690,262 40TH STREET SO,Brigantine,NJ,39.3907429,-74.39239829,RES1,3001,,17,NE,2003,2003,3102,2,1,1267.944747,1267.944747,3507,NO,23.84,35.79,1,-0.99,6106,115.054598,124.590493,134.458655,140.461358,I,Above,Hip,0,5701,Wood,29.81415251,0,0,,,,1,1,,0.03,nav,1,2003,2,, 8599,NJBF000078025,313 12TH STREET SO,Brigantine,NJ,39.40239266,-74.37075022,RES1,3001,,16,NE,1952,1952,3102,2,1,1125.968794,1125.968794,3502,NO,25.24,32.46,5,1.9,6106,115.372602,124.880002,134.793281,140.651118,I,Above,Flat,0,5701,Wood,28.84780058,0,0,,,,1,1,,0.03,nav,1,1952,2,, 8600,NJBF000073991,,Brigantine,NJ,39.38433312,-74.39901687,RES3C,3001,,NaN,E,1969,0,3303,4,1,11913.97043,11913.97043,3507,NO,78.45,89.7,1,2.99,6106,114.987925,124.532531,134.38848,140.442585,I,Above,Gable,0,NaN,Wood,84.07353811,0,0,,,,1,1,,0.03,nav,1,1969,4,, 8601,NJBF000073695,3 OCKENLANDER DRIVE,Brigantine,NJ,39.38253028,-74.4096167,RES1,3001,,18,NE,1996,1996,3103,2,1,1776.304468,1776.304468,3505,YES,26.72,38.18,3,-2.32,6106,114.785931,124.354591,134.188505,140.300119,I,Above,Hip,0,5701,Wood,32.44737075,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 8602,NJBF000077739,306 15TH STREET SO,Brigantine,NJ,39.40063626,-74.37318311,RES1,3001,,20,NE,2005,2005,3102,3,1,1923.076441,1923.076441,3505,NO,36.37,49.07,3,-2.86,6106,115.34196,124.851543,134.759901,140.635213,I,Above,Flat,0,5701,Wood,42.71576695,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 8603,NJBF000075824,267 39TH STREET SO,Brigantine,NJ,39.39127668,-74.39104907,RES1,3001,,16,NE,1949,1949,3102,1,1,1701.974555,1701.974555,3507,NO,18.75,31.71,1,2.28,6106,115.076684,124.610261,134.481246,140.475549,I,Above,Hip,0,5701,Wood,25.22799195,0,0,,,,1,1,,0.03,nav,1,1949,1,, 8604,NJBF000077734,1705 W BRIGANTINE AVE,Brigantine,NJ,39.40061916,-74.37578003,RES1,3001,,16,NE,1958,1958,3101,2,1,2029.65224,2029.65224,3507,NO,22.03,32.41,1,-0.69,6106,115.289216,124.802734,134.704793,140.594599,I,Above,Hip,0,5701,Wood,27.21645796,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 8605,NJBF000076351,213 37TH STREET SO,Brigantine,NJ,39.39307474,-74.39094507,RES1,3001,,16,NE,1948,1948,3102,1,1,1544.255287,1544.255287,3507,NO,13.68,19.54,1,0.35,6106,115.059202,124.593984,134.46438,140.453472,I,Above,Hip,0,5701,Wood,16.60880247,0,1.2,,,,1,1,,0.03,nav,1,1948,1,, 8606,NJBF000077267,200 26TH STREET SO,Brigantine,NJ,39.39757468,-74.38291512,RES1,3001,,16,NE,1956,2018,3102,3,1,1553.521038,1553.521038,3507,NO,40.61,52.29,1,2.16,6106,115.175931,124.698997,134.585727,140.521357,I,Above,Gable,0,5701,Wood,46.44624075,0,1.1,,,,1,1,,0.03,nav,1,1956,3,, 8607,NJBF000076598,,Brigantine,NJ,39.394046,-74.389251,RES1,3001,,NaN,NE,1969,0,3102,2,1,1488.289579,1488.289579,3507,NO,38.22,44.58,1,2.11,6106,115.083654,124.615831,134.489634,140.467436,I,Above,Flat,0,5701,Wood,41.4000353,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8608,NJBF000078291,235 10TH STREET SO,Brigantine,NJ,39.40446799,-74.37036784,RES1,3001,,17,NE,1994,1994,3102,2,1,1542.099737,1542.099737,3505,NO,38.45,53.04,3,3.32,6106,115.358224,124.866602,134.779517,140.630853,I,Above,Flat,0,5701,Wood,45.74476414,0,0,,,,1,1,,0.03,nav,1,1994,2,, 8609,NJBF000075451,3700 OCEAN AVE,Brigantine,NJ,39.3899155,-74.3872015,RES3C,3001,,49,E,2001,2001,3303,3,2,2392.929782,2392.929782,3507,NO,40.32,50.88,1,-0.21,6106,115.171182,124.695887,134.576247,140.553744,I,Above,Hip,0,NaN,Wood,45.59661361,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 8610,NJBF000077722,305 16TH STREET SO,Brigantine,NJ,39.40053191,-74.3735729,RES1,3001,,16,NE,1968,1968,3102,1,1,2179.188688,2179.188688,3505,NO,13.91,23.51,3,-1.68,6106,115.335135,124.845222,134.752689,140.630413,I,Above,Gable,0,5701,Wood,18.71382294,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8611,NJBF000075480,4408 HARBOR BEACH BLVD,Brigantine,NJ,39.38999797,-74.3970627,RES1,3001,,16,NE,1968,1968,3102,1,1,2441.402445,2441.402445,3507,NO,16.69,28.34,1,-0.42,6106,114.965916,124.511091,134.369124,140.397635,I,Above,Gable,0,5701,Wood,22.51189284,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8612,NJBF000076296,206 37TH STREET SO,Brigantine,NJ,39.39287658,-74.39141218,RES1,3001,,15,NE,1950,1950,3102,1,1,855.8349977,855.8349977,3507,NO,14.34,29.04,1,1.61,6106,115.051697,124.587263,134.456689,140.448709,I,Above,Hip,0,5701,Wood,21.6927154,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 8613,NJBF000074546,110 HUDSON DR,Brigantine,NJ,39.38692343,-74.39636161,RES1,3001,,16,NE,1968,1968,3102,2,1,1905.895454,1905.895454,3507,YES,23.96,33.55,1,1.63,6110,115.014409,124.555465,134.416316,140.44969,I,Above,Gable,0,5701,Wood,28.75705706,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 8614,NJBF000075469,335 39TH STREET SO,Brigantine,NJ,39.38996672,-74.38920829,RES1,3001,,43,NE,1948,1948,3102,1,2,1593.728335,1593.728335,3507,NO,14.53,22.08,1,2.8,6106,115.129167,124.657904,134.533646,140.521686,I,Above,Flat,0,5701,Wood,18.30691548,0,0,,,,1,1,,0.03,nav,1,1948,1,, 8615,NJBF000075471,337 ARBEGAST DRIVE,Brigantine,NJ,39.38997122,-74.40476382,RES3B,3001,,35,ME,1984,1984,3301,2,1,4679.737895,4679.737895,3507,YES,29.69,36.43,1,2.06,6106,114.805594,124.368095,134.209273,140.275625,I,Above,Gable,0,5701,Wood,33.06343931,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8616,NJBF000075473,4817 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.38997765,-74.41372055,RES1,3001,,18,NE,2002,2002,3103,2,1,1947.17901,1947.17901,3505,NO,32.19,42.11,3,7.72,6106,114.617616,124.201857,134.024016,140.131648,I,Above,Hip,0,5701,Wood,37.14807772,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 8617,NJBF000077617,303 18TH STREET SO,Brigantine,NJ,39.39987949,-74.37514664,RES1,3001,,18,NE,2007,2007,3102,2,1,2057.046413,2057.046413,3507,NO,24.62,32.23,1,0.18,6106,115.310074,124.822056,134.726073,140.614017,I,Above,Hip,0,5701,Wood,28.42450067,0,0,,,,1,1,,0.03,nav,1,2007,2,, 8618,NJBF000077174,402 20TH STREET SO,Brigantine,NJ,39.39704487,-74.37548583,RES1,3001,,20,NE,2003,2003,3102,3,1,3114.482614,3114.482614,3507,NO,38.08,48.39,1,0.85,6106,115.333767,124.843965,134.748687,140.644889,I,Above,Hip,0,5701,Wood,43.23806065,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 8619,NJBF000077391,208 24TH STREET SO,Brigantine,NJ,39.39832455,-74.38115735,RES1,3001,,16,NE,1956,1956,3102,1,1,1368.342491,1368.342491,3507,NO,9.74,20.92,1,-0.86,6106,115.203913,124.72449,134.614967,140.539376,I,Above,Gable,0,5701,Wood,15.32790464,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 8620,NJBF000077381,405 18TH STREET SO,Brigantine,NJ,39.3982544,-74.37363038,RES1,3001,,20,NE,2013,2013,3102,3,1,1718.225957,1718.225957,3505,NO,39.97,52.89,3,2.07,6110,115.358534,124.866851,134.775439,140.658508,I,Above,Hip,0,5701,Wood,46.43162437,0,1.2,,,,1,1,,0.35,nav,1,2013,3,, 8621,NJBF000075344,4412 HARBOR BEACH BLVD,Brigantine,NJ,39.38957005,-74.39713052,RES1,3001,,16,NE,1968,1968,3102,2,1,1767.789586,1767.789586,3507,YES,25.1,34.61,1,0.82,6106,114.969196,124.514185,134.372253,140.402279,I,Above,Hip,0,5701,Wood,29.85742176,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8622,NJBF000076187,,Brigantine,NJ,39.39252464,-74.38338911,RES1,3001,,NaN,NE,1969,0,3102,2,1,2242.372369,2242.372369,3507,NO,39.12,50.47,1,0.43,6106,115.221076,124.740911,134.629007,140.57943,I,Above,Flat,0,5701,Wood,44.79515536,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8623,NJBF000078166,301 10TH STREET SO,Brigantine,NJ,39.40337433,-74.36945699,COM1,3001,,NaN,ME,1969,0,3401,3,1,937.9310639,937.9310639,3507,NO,55.9,65.03,1,0.6,6106,115.388364,124.894706,134.810571,140.659023,I,Above,Flat,0,NaN,Wood,60.4655536,0,0,,,,1,1,,0.03,nav,1,1969,3,, 8624,NJBF000078154,301 10TH STREET SO,Brigantine,NJ,39.40313067,-74.36914708,RES1,3001,,NaN,NE,1955,0,3102,3,1,514.6043741,514.6043741,3502,NO,56.16,65.91,5,12.65,6106,115.397247,124.902982,134.819766,140.66696,I,Above,Gable,0,5701,Wood,61.03508116,0,0,,,,1,1,,0.03,nav,1,1955,3,, 8625,NJBF000078182,301 10TH STREET SO,Brigantine,NJ,39.40345692,-74.36955137,COM8,3001,,NaN,ME,1969,0,3401,3,1,1461.897374,1461.897374,3507,NO,47.31,55.8,1,0.18,6106,115.385571,124.892104,134.807684,140.656498,I,Above,Flat,0,NaN,Wood,51.55269595,0,0,,,,1,1,,0.03,nav,1,1969,3,, 8626,NJBF000077834,333 14TH STREET SO,Brigantine,NJ,39.40112253,-74.37187917,RES1,3001,,16,NE,1958,1958,3102,2,1,1402.629636,1402.629636,3502,NO,38.89,53.84,5,5.84,6106,115.363266,124.871305,134.782569,140.649492,I,Above,Gable,0,5701,Wood,46.36761525,0,0.1,,,,1,1,,0.03,nav,1,1958,2,, 8627,NJBF000077823,337 14TH STREET SO,Brigantine,NJ,39.40105767,-74.37177307,RES1,3001,,15,NE,1952,1952,3102,1,1,1104.993514,1104.993514,3502,NO,23.52,34.27,5,8.61,6106,115.36612,124.873953,134.785515,140.651979,I,Above,Gable,0,5701,Wood,28.89577076,0,0,,,,1,1,,0.03,nav,1,1952,1,, 8628,NJBF000077602,1804 W BRIGANTINE AVE,Brigantine,NJ,39.39975787,-74.37618988,RES1,3001,,17,NE,1987,1987,3102,2,1,1878.636168,1878.636168,3507,NO,38.42,45.87,1,-0.05,6106,115.290094,124.80361,134.705173,140.599168,I,Above,Hip,0,5701,Wood,42.14380665,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 8629,NJBF000077857,1800 REVERE BLVD,Brigantine,NJ,39.4012743,-74.37709845,RES1,3001,,16,NE,1926,1926,3101,1,1,2384.06237,2384.06237,3507,NO,12.69,24.21,1,-0.48,6106,115.255309,124.771339,134.66983,140.565423,I,Above,Gable,0,5701,Wood,18.44896067,0,0,,,,1,1,,0.03,nav,1,1926,1,, 8630,NJBF000080383,1421 SHERIDAN BLVD,Brigantine,NJ,39.41489298,-74.37674117,RES1,3001,,17,NE,1989,1989,3103,1,1,1886.927272,1886.927272,3505,NO,15.16,28.17,3,-2.05,6106,115.12016,124.641684,134.531078,140.395905,I,Above,Gable,0,5701,Wood,21.66522341,0,1.1,,,,1,1,,0.03,nav,1,1989,1,, 8631,NJBF000075110,4007 OCEAN AVE,Brigantine,NJ,39.38874117,-74.38965922,RES1,3001,,21,NE,2004,2004,3102,3,1,2422.928169,2422.928169,3507,NO,49.62,58.49,1,0.06,6110,115.133376,124.661894,134.537101,140.530706,I,Above,Hip,0,5701,Wood,54.05352431,0,1.1,,,,1,1,,0.35,nav,1,2004,3,, 8632,NJBF000076308,,Brigantine,NJ,39.39292434,-74.39411571,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4870.837674,4870.837674,3507,NO,30.95,41.18,1,-0.85,6106,114.995182,124.53628,134.399559,140.405295,I,Above,Gable,0,5701,Wood,36.06871375,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8633,NJBF000080610,1302 DUNCAN PLACE,Brigantine,NJ,39.41561067,-74.37326823,RES1,3001,,17,NE,2000,2000,3102,2,1,1613.267024,1613.267024,3507,NO,24.8,38.57,1,0.31,6106,115.183149,124.700505,134.597741,140.44279,I,Above,Gable,0,5701,Wood,31.68588041,0,0,,,,1,1,,0.03,nav,1,2000,2,, 8634,NJBF000080159,37 CUMMINGS PLACE,Brigantine,NJ,39.41411769,-74.3736719,RES1,3001,,16,NE,1977,1977,3102,3,1,1700.767666,1700.767666,3507,NO,36.75,51.02,1,0.25,6106,115.190301,124.707752,134.605289,140.455377,I,Above,Gable,0,5701,Wood,43.88487797,0,1.2,,,,1,1,,0.03,nav,1,1977,3,, 8635,NJBF000079875,606 E EVANS BLVD,Brigantine,NJ,39.41319329,-74.36139009,RES1,3001,,17,NE,1960,1960,3102,3,1,1430.931099,1430.931099,3507,NO,43.73,48.75,1,0.72,6106,115.44764,124.950806,134.87981,140.663149,I,Above,Gable,0,5701,Wood,46.24411017,0,1.2,,,,1,1,,0.03,nav,1,1960,3,, 8636,NJBF000078142,235 13TH STREET SO,Brigantine,NJ,39.40320909,-74.3726403,RES1,3001,,16,NE,1948,1948,3102,1,1,1191.772441,1191.772441,3505,NO,22.68,33.58,3,5.38,6106,115.325479,124.836164,134.744298,140.611023,I,Above,Hip,0,5701,Wood,28.12805012,0,0,,,,1,1,,0.03,nav,1,1948,1,, 8637,NJBF000077692,309 16TH STREET SO,Brigantine,NJ,39.40037248,-74.37342143,RES1,3001,,16,NE,1956,1956,3102,1,1,1659.620393,1659.620393,3505,NO,20.86,33.8,3,4.66,6106,115.339951,124.849684,134.757613,140.634836,I,Above,Hip,0,5701,Wood,27.32829009,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 8638,NJBF000076937,308 27TH STREET SO,Brigantine,NJ,39.395516,-74.38180922,RES1,3001,,16,NE,1926,1926,3102,2,1,1659.158291,1659.158291,3507,NO,27.66,40.47,1,1.08,6106,115.220909,124.740459,134.630862,140.56546,I,Above,Gable,0,5701,Wood,34.06781361,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 8639,NJBF000076025,3212 OCEAN AVE,Brigantine,NJ,39.391988,-74.384461,RES1,3001,,43,NE,1978,1978,3102,2,2,1760.884836,1760.884836,3507,NO,32.25,45.33,1,1.92,6106,115.204901,124.726246,134.612077,140.569628,I,Above,Gable,0,5701,Wood,38.79055188,0,0,,,,1,1,,0.03,nav,1,1978,2,, 8640,NJBF000078081,239 14TH STREET SO,Brigantine,NJ,39.40279449,-74.37318255,RES1,3001,,17,NE,1954,1954,3102,2,1,812.4983321,812.4983321,3505,NO,37.07,50.65,3,6.49,6106,115.31886,124.83004,134.737104,140.607746,I,Above,Hip,0,5701,Wood,43.86201157,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 8641,NJBF000078069,239 14TH STREET SO,Brigantine,NJ,39.40272949,-74.37329088,RES1,3001,,17,NE,1954,1954,3102,2,1,996.2961945,996.2961945,3505,NO,38.91,53.06,3,5.3,6106,115.317356,124.828647,134.735489,140.606871,I,Above,Hip,0,5701,Wood,45.98409393,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 8642,NJBF000078380,105 12TH STREET SO,Brigantine,NJ,39.4051501,-74.37321801,RES1,3001,,16,NE,1947,1947,3102,1,1,1883.69246,1883.69246,3505,NO,20.46,28.1,3,2.79,6106,115.29311,124.805893,134.711352,140.577174,I,Above,Hip,0,5701,Wood,24.28059416,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8643,NJBF000075598,4725 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39044682,-74.41242144,RES1,3001,,17,NE,1989,1989,3103,3,1,1403.200058,1403.200058,3505,NO,50.47,55.65,3,7.91,6102,114.639887,124.221108,134.045754,140.146134,I,Above,Hip,0,5701,Wood,53.06129815,0,1.2,,,,1,1,,0.03,nav,1,1989,3,, 8644,NJBF000077308,1900 OCEAN AVE,Brigantine,NJ,39.39781782,-74.37506601,RES1,3001,,16,NE,1958,1958,3102,1,1,1942.705084,1942.705084,3507,YES,16.81,24.8,1,-0.67,6106,115.333964,124.844154,134.749491,140.641596,I,Above,Hip,0,5701,Wood,20.80302838,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 8645,NJBF000077963,200 16TH STREET SO,Brigantine,NJ,39.4019392,-74.37540177,RES1,3001,,15,NE,1951,1951,3101,1,1,1671.109913,1671.109913,3507,NO,13.04,21.38,1,1.54,6106,115.282799,124.796678,134.698867,140.583667,I,Above,Gable,0,5701,Wood,17.20898189,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 8646,NJBF000077793,325 15TH STREET SO,Brigantine,NJ,39.40090303,-74.37276636,RES1,3001,,15,NE,1954,1954,3102,1,1,1197.411246,1197.411246,3502,NO,23.24,29.82,5,7.42,6106,115.347582,124.856752,134.765974,140.638364,I,Above,Hip,0,5701,Wood,26.5311268,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8647,NJBF000077415,2104 W BRIGANTINE AVE,Brigantine,NJ,39.39849883,-74.37836231,RES1,3001,,NaN,NE,1955,1955,3102,2,1,1898.122485,1898.122485,3507,NO,37.35,47.84,1,1.62,6106,115.259266,124.77531,134.672351,140.581159,I,Above,Hip,0,5701,Wood,42.5953845,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8648,NJBF000074279,,Brigantine,NJ,39.385711,-74.400874,RES1,3001,,NaN,NE,1969,0,3102,2,1,1277.244006,1277.244006,3507,NO,24.59,38.42,1,0.63,6110,114.933787,124.483967,134.335369,140.394945,I,Above,Gable,0,5701,Wood,31.50634654,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8649,NJBF000077207,205 27TH STREET SO,Brigantine,NJ,39.39726114,-74.38308055,RES1,3001,,16,NE,1956,1956,3102,1,1,1231.0799,1231.0799,3507,NO,13.41,26.32,1,0.57,6106,115.175908,124.699038,134.585546,140.522816,I,Above,Hip,0,5701,Wood,19.86385854,0,0,,,,1,1,,0.03,nav,1,1956,1,, 8650,NJBF000077466,211 23RD STREET SO,Brigantine,NJ,39.3988161,-74.37981379,RES1,3001,,17,NE,1950,1950,3101,2,1,1567.180607,1567.180607,3507,NO,38.11,45.62,1,0.66,6106,115.226141,124.744816,134.638215,140.554211,I,Above,Flat,0,5701,Wood,41.86687448,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8651,NJBF000075579,,Brigantine,NJ,39.39039058,-74.385845,RES3C,3001,,NaN,E,1969,0,3303,3,1,2557.878177,2557.878177,3507,NO,45.5,57.69,1,1.98,6106,115.193947,124.716454,134.599749,140.568756,I,Above,Flat,0,NaN,Wood,51.5952786,0,0,,,,1,1,,0.03,nav,1,1969,3,, 8652,NJBF000080521,1301 SHERIDAN BLVD,Brigantine,NJ,39.41532589,-74.37275033,RES1,3001,,16,NE,1972,1972,3102,1,1,1224.6959,1224.6959,3507,NO,19.07,30.02,1,1.62,6106,115.196548,124.713208,134.611966,140.454783,I,Above,Flat,0,5701,Wood,24.54764713,0,0,,,,1,1,,0.03,nav,1,1972,1,, 8653,NJBF000076582,234 33RD STREET SO,Brigantine,NJ,39.39397754,-74.38741615,RES1,3001,,17,NE,1935,1935,3102,2,1,1558.84471,1558.84471,3507,NO,28.07,37.92,1,0.51,6106,115.122261,124.65086,134.528923,140.497278,I,Above,Gable,0,5701,Wood,32.99258439,0,0,,,,1,1,,0.03,nav,1,1935,2,, 8654,NJBF000076607,,Brigantine,NJ,39.3940735,-74.401199,RES1,3001,,NaN,NE,1983,0,3102,2,1,2604.613573,2604.613573,3507,NO,31.39,44.31,1,2.2,6106,114.835588,124.392451,134.239374,140.276988,I,Above,Hip,0,5701,Wood,37.84908676,0,0,,,,1,1,,0.03,nav,1,1983,2,, 8655,NJBF000077279,,Brigantine,NJ,39.39764556,-74.37532449,RES1,3001,,NaN,NE,1955,0,3102,2,1,2107.637887,2107.637887,3507,NO,40.86,50.76,1,2.55,6106,115.33056,124.841014,134.745817,140.639753,I,Above,Gable,0,5701,Wood,45.81175374,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8656,NJBF000077226,2000 OCEAN AVE,Brigantine,NJ,39.39736246,-74.37569991,RES1,3001,,17,NE,1927,1927,3102,2,1,2397.272444,2397.272444,3507,NO,29.85,41.24,1,-0.53,6106,115.32596,124.836772,134.740815,140.637494,I,Above,Gable,0,5701,Wood,35.54720765,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 8657,NJBF000077441,205 24TH STREET SO,Brigantine,NJ,39.39865772,-74.38083633,RES1,3001,,16,NE,1958,1958,3101,2,1,1471.881368,1471.881368,3507,YES,38.5,50.8,1,-0.22,6106,115.206909,124.727181,134.618237,140.540132,I,Above,Hip,0,5701,Wood,44.64950293,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 8658,NJBF000076561,3512 BAYSHORE AVE,Brigantine,NJ,39.3939071,-74.39034485,RES1,3001,,15,NE,1954,1954,3102,1,1,1516.54776,1516.54776,3507,NO,17.24,30.4,1,0.18,6106,115.062563,124.596774,134.468138,140.451979,I,Above,Hip,0,5701,Wood,23.82025042,0,0,,,,1,1,,0.03,nav,1,1954,1,, 8659,NJBF000077127,318 23RD STREET SO,Brigantine,NJ,39.39671924,-74.37852975,RES1,3001,,16,NE,1962,1962,3102,1,1,2093.102041,2093.102041,3507,NO,19.04,25.43,1,2.53,6106,115.275069,124.789976,134.687557,140.601401,I,Above,Hip,0,5701,Wood,22.23427152,0,0,,,,1,1,,0.03,nav,1,1962,1,, 8660,NJBF000078211,222 12TH STREET SO,Brigantine,NJ,39.40369107,-74.37255517,RES1,3001,,16,NE,1950,1950,3102,1,1,1340.67451,1340.67451,3505,NO,20.38,32.2,3,3.59,6106,115.322074,124.832969,134.741006,140.606232,I,Above,Hip,0,5701,Wood,26.29182169,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 8661,NJBF000075982,4006 BAYSHORE AVE,Brigantine,NJ,39.39182702,-74.39402984,RES1,3001,,43,NE,1984,1984,3102,2,2,1539.750273,1539.750273,3507,NO,29.23,44.08,1,-0.16,6106,115.008908,124.549031,134.413023,140.421235,I,Above,Hip,0,5701,Wood,36.65395739,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8662,NJBF000075746,335 37TH STREET SO,Brigantine,NJ,39.39096977,-74.38800266,RES1,3001,,16,NE,1954,1954,3102,2,1,1007.421515,1007.421515,3507,YES,23.22,37.72,1,1.76,6106,115.143033,124.670271,134.548351,140.527431,I,Above,Flat,0,5701,Wood,30.47385496,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8663,NJBF000074811,,Brigantine,NJ,39.38786456,-74.39404373,REL1,3001,,NaN,ME,1969,0,3401,2,1,3309.203745,3309.203745,3507,NO,32.3,45.05,1,-0.36,6110,115.052161,124.589032,134.454682,140.473568,I,Above,Gable,0,NaN,Wood,38.67440397,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8664,NJBF000077606,306 17TH STREET SO,Brigantine,NJ,39.39979472,-74.37459921,RES1,3001,,16,NE,1950,1950,3102,1,1,1370.998467,1370.998467,3505,NO,20.4,25.44,3,3.46,6106,115.322152,124.833224,134.738617,140.623696,I,Above,Hip,0,5701,Wood,22.91719811,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8665,NJBF000075311,4413 HARBOR BEACH BLVD,Brigantine,NJ,39.38944569,-74.39774859,RES1,3001,,17,NE,1968,1968,3102,2,1,2792.780947,2792.780947,3507,YES,31.56,36.88,1,-0.1,6106,114.957697,124.503941,134.360693,140.394168,I,Above,Gable,0,5701,Wood,34.22143655,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8666,NJBF000077030,2700 W BRIGANTINE AVE,Brigantine,NJ,39.39596131,-74.38238242,RES1,3001,,16,NE,1955,1955,3102,1,1,3518.787975,3518.787975,3507,NO,20.33,34.97,1,2.56,6106,115.204317,124.725233,134.614062,140.550693,I,Above,Gable,0,5701,Wood,27.65358634,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 8667,NJBF000075969,,Brigantine,NJ,39.3917942,-74.38555404,RES1,3001,,NaN,NE,1950,0,3102,2,1,1674.235726,1674.235726,3507,NO,33.09,41.62,1,1.84,6106,115.184513,124.707747,134.591123,140.555044,I,Above,Gable,0,5701,Wood,37.35529194,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8668,NJBF000075984,3315 OCEAN AVE,Brigantine,NJ,39.39183217,-74.38540949,RES1,3001,,16,NE,1950,1950,3102,2,2,831.091558,831.091558,3507,NO,23.59,32.91,1,-0.64,6106,115.187084,124.710077,134.593773,140.55682,I,Above,Gable,0,5701,Wood,28.2536014,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8669,NJBF000078097,238 13TH STREET SO,Brigantine,NJ,39.40291018,-74.37296176,RES1,3001,,16,NE,1950,1950,3102,2,1,1176.182033,1176.182033,3505,NO,39.98,53.7,3,2.95,6106,115.322118,124.833059,134.740591,140.609752,I,Above,Gable,0,5701,Wood,46.83765236,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8670,NJBF000080454,214 15TH STREET NO,Brigantine,NJ,39.41510746,-74.35451492,RES1,3001,,20,NE,2007,2007,3103,3,1,1789.131741,1789.131741,3507,NO,47.04,61.66,1,0.65,6106,115.565448,125.063372,135.008466,140.748133,I,Above,Hip,0,5701,Wood,54.34977371,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 8671,NJBF000078104,247 13TH STREET SO,Brigantine,NJ,39.40296301,-74.37239036,RES1,3001,,18,NE,1954,1954,3102,3,1,1547.742802,1547.742802,3505,NO,60.65,73.58,3,7.29,6106,115.333185,124.843338,134.752238,140.618091,I,Above,Hip,0,5701,Wood,67.11749166,0,0,,,,1,1,,0.03,nav,1,1954,3,, 8672,NJBF000078093,251 13TH STREET SO,Brigantine,NJ,39.4028879,-74.37227899,RES1,3001,,16,NE,1945,1945,3102,2,1,1580.269549,1580.269549,3505,NO,29.42,37.4,3,7.16,6106,115.336242,124.846183,134.755401,140.620792,I,Above,Flat,0,5701,Wood,33.40767328,0,0,,,,1,1,,0.03,nav,1,1945,2,, 8673,NJBF000080691,709 LAFAYETTE BLVD,Brigantine,NJ,39.41592655,-74.37912263,RES1,3001,,16,NE,1970,1970,3103,2,1,1171.440334,1171.440334,3505,NO,32.39,42.96,3,7.82,6106,115.061285,124.586067,134.468806,140.343923,I,Above,Flat,0,5701,Wood,37.67589189,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8674,NJBF000080419,608 LAFAYETTE BLVD,Brigantine,NJ,39.4149874,-74.37898613,RES1,3001,,NaN,NE,1964,1964,3103,5,1,1398.126125,1398.126125,3505,NO,71.27,78.73,3,3.2,6106,115.073642,124.598122,134.482012,140.358323,I,Above,Hip,0,5701,Wood,75.00033228,0,0,,,,1,1,,0.03,nav,1,1964,5,, 8675,NJBF000080871,816 W SHORE DR,Brigantine,NJ,39.41667209,-74.38311477,RES1,3001,,16,NE,1966,1966,3103,2,1,1619.828268,1619.828268,3505,NO,28.77,38.74,3,-1.06,6106,114.972626,124.502821,134.375359,140.269149,I,Above,Flat,0,5701,Wood,33.75287753,0,0,,,,1,1,,0.03,nav,1,1966,2,, 8676,NJBF000075842,337 36TH STREET SO,Brigantine,NJ,39.39133629,-74.38746927,RES1,3001,,27,NE,1956,1956,3102,2,2,812.8818249,812.8818249,3507,NO,23.56,32.61,1,-0.98,6106,115.150039,124.676554,134.555705,140.531016,I,Above,Hip,0,5701,Wood,28.08209057,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8677,NJBF000075572,,Brigantine,NJ,39.39034345,-74.38913834,RES1,3001,,NaN,NE,1969,0,3102,2,1,1644.572883,1644.572883,3507,NO,33.81,48.72,1,0.56,6106,115.126473,124.655407,134.531152,140.517852,I,Above,Hip,0,5701,Wood,41.26420304,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8678,NJBF000075117,7 EXPLORER COVE,Brigantine,NJ,39.38875586,-74.40111482,RES1,3001,,16,NE,1970,1970,3102,2,1,1337.560211,1337.560211,3507,YES,30.52,36.8,1,0.17,6106,114.895119,124.448357,134.298003,140.350144,I,Above,Gable,0,5701,Wood,33.6605539,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8679,NJBF000074618,123 HUDSON DR,Brigantine,NJ,39.38721041,-74.39536423,RES1,3001,,16,NE,1968,1968,3102,1,1,1686.686869,1686.686869,3507,NO,10.38,22.96,1,-0.81,6110,115.031987,124.571115,134.434073,140.461541,I,Above,Gable,0,5701,Wood,16.67297826,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 8680,NJBF000080739,1318 RAY AVE,Brigantine,NJ,39.41611527,-74.37475293,RES1,3001,,18,NE,2005,2005,3102,3,1,1493.702604,1493.702604,3507,NO,42.84,57.06,1,-0.41,6106,115.147946,124.667214,134.560373,140.41235,I,Above,Gable,0,5701,Wood,49.94972655,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 8681,NJBF000077713,,Brigantine,NJ,39.40047498,-74.37633991,RES1,3001,,NaN,NE,1969,0,3101,1,1,1429.905731,1429.905731,3507,NO,19.75,29.23,1,1.14,6106,115.279334,124.793617,134.694407,140.587624,I,Above,Hip,0,5701,Wood,24.48860641,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8682,NJBF000077688,,Brigantine,NJ,39.40034803,-74.37622133,RES1,3001,,NaN,NE,1969,0,3101,1,1,1438.031296,1438.031296,3507,NO,12.12,23.01,1,0.12,6106,115.283125,124.797129,134.69828,140.591125,I,Above,Hip,0,5701,Wood,17.56293266,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8683,NJBF000076569,210 35TH STREET SO,Brigantine,NJ,39.39394419,-74.38982887,RES1,3001,,35,NE,1947,1947,3102,1,1,1208.343272,1208.343272,3507,NO,12.63,26.01,1,-0.76,6106,115.072824,124.60605,134.478578,140.459647,I,Above,Flat,0,5701,Wood,19.31874399,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8684,NJBF000073515,,Brigantine,NJ,39.38125686,-74.40225168,RES3B,3001,,NaN,ME,1982,0,3301,2,1,6373.932552,6373.932552,3507,NO,24.67,35.5,1,-0.9,6106,114.954868,124.503996,134.353934,140.433175,I,Above,Gable,0,5701,Wood,30.08456524,0,0,,,,1,1,,0.03,nav,1,1982,2,, 8685,NJBF000076736,4169 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39460704,-74.40216582,RES1,3001,,45,NE,1954,1954,3102,2,2,1480.04343,1480.04343,3507,NO,30.99,38.09,1,2.45,6106,114.809713,124.368972,134.213487,140.254236,I,Above,Flat,0,5701,Wood,34.53945481,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8686,NJBF000080498,1307 SHERIDAN BLVD,Brigantine,NJ,39.41527241,-74.37339065,RES1,3001,,16,NE,1972,1972,3102,1,1,1808.77489,1808.77489,3507,NO,14.49,24.93,1,2.2,6106,115.184136,124.701555,134.598787,140.445142,I,Above,Flat,0,5701,Wood,19.70854767,0,0,,,,1,1,,0.03,nav,1,1972,1,, 8687,NJBF000075031,,Brigantine,NJ,39.38849609,-74.39241514,RES3D,3001,,NaN,ME,1969,0,3301,2,1,4847.256963,4847.256963,3507,NO,37.22,47.41,1,-1,6110,115.078989,124.612978,134.482039,140.490775,I,Above,Flat,0,NaN,Wood,42.31462882,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8688,NJBF000074937,,Brigantine,NJ,39.38824249,-74.39026016,RES1,3001,,NaN,NE,1969,0,3102,2,1,2039.676501,2039.676501,3507,NO,22.68,34.73,1,-0.74,6110,115.12646,124.655736,134.52977,140.527857,I,Above,Flat,0,5701,Wood,28.70786994,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8689,NJBF000077257,312 22ND STREET SO,Brigantine,NJ,39.39753273,-74.37816572,RES1,3001,,16,NE,1960,1960,3102,2,1,1645.795376,1645.795376,3507,NO,26.34,32.6,1,2.86,6106,115.273704,124.788669,134.686698,140.596654,I,Above,Gable,0,5701,Wood,29.46673927,0,0,,,,1,1,,0.03,nav,1,1960,2,, 8690,NJBF000080314,603 LAFAYETTE BLVD,Brigantine,NJ,39.41466788,-74.37791856,RES1,3001,,16,NE,1979,1979,3103,2,1,1660.106314,1660.106314,3505,NO,33.75,43.06,3,4.39,6106,115.098562,124.621578,134.508315,140.379742,I,Above,Gable,0,5701,Wood,38.40211615,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 8691,NJBF000078277,239 10TH STREET SO,Brigantine,NJ,39.40436377,-74.37030298,RES1,3001,,17,NE,2004,2004,3102,2,1,2169.392892,2169.392892,3505,NO,29.34,38.75,3,6.98,6106,115.360649,124.868866,134.782008,140.633194,I,Above,Flat,0,5701,Wood,34.0461453,0,0,,,,1,1,,0.03,nav,1,2004,2,, 8692,NJBF000075986,233 39TH STREET SO,Brigantine,NJ,39.39183962,-74.39183588,RES1,3001,,16,NE,1949,1949,3102,1,1,1152.07061,1152.07061,3507,NO,14.19,22.37,1,2.71,6106,115.054232,124.589857,134.458802,140.455716,I,Above,Gable,0,5701,Wood,18.28040892,0,0,,,,1,1,,0.03,nav,1,1949,1,, 8693,NJBF000076447,4321 HARBOR BEACH BLVD,Brigantine,NJ,39.39344211,-74.39795514,RES1,3001,,NaN,NE,1969,0,3102,2,1,1964.382466,1964.382466,3507,NO,22.7,37,1,0.64,6106,114.90988,124.459369,134.313796,140.337347,I,Above,Hip,0,5701,Wood,29.84750811,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8694,NJBF000076333,4321 HARBOR BEACH BLVD,Brigantine,NJ,39.39301371,-74.39784179,RES1,3001,,NaN,NE,1969,0,3102,2,1,1878.41081,1878.41081,3507,NO,24.73,38.04,1,2.28,6106,114.916859,124.465839,134.32073,140.344891,I,Above,Gable,0,5701,Wood,31.38757229,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8695,NJBF000077313,2819 BAYSHORE AVE,Brigantine,NJ,39.3978545,-74.38633982,RES1,3001,,19,NE,2008,2008,3102,2,1,2599.223364,2599.223364,3507,NO,22.76,28.06,1,1.09,6106,115.102529,124.631884,134.510439,140.46352,I,Above,Gable,0,5701,Wood,25.4119773,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 8696,NJBF000077705,304 16TH STREET SO,Brigantine,NJ,39.40042929,-74.37405601,RES1,3001,,16,NE,1929,1929,3102,1,1,2095.370414,2095.370414,3505,NO,19.37,31.21,3,8.69,6106,115.326403,124.837138,134.743489,140.624139,I,Above,Hip,0,5701,Wood,25.28894884,0,0,,,,1,1,,0.03,nav,1,1929,1,, 8697,NJBF000077379,1800 OCEAN AVE,Brigantine,NJ,39.39825108,-74.37435875,RES1,3001,,18,NE,1986,1986,3102,2,1,3265.82472,3265.82472,3505,NO,36.29,48.77,3,6.17,6106,115.343702,124.853148,134.759968,140.647141,I,Above,Gable,0,5701,Wood,42.52758875,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 8698,NJBF000076574,4200 HARBOR BEACH BLVD,Brigantine,NJ,39.39395378,-74.3958776,COM1,3001,,NaN,ME,1969,0,3401,1,1,30348.72028,30348.72028,3507,NO,11.42,24.21,1,-0.5,6106,114.947476,124.492911,134.35172,140.363579,I,Above,Flat,0,NaN,Wood,17.81313951,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8699,NJBF000075433,326 39TH STREET SO,Brigantine,NJ,39.38985798,-74.38970885,RES1,3001,,16,NE,1954,1954,3102,2,1,889.1672846,889.1672846,3507,NO,34.83,45.25,1,0.69,6110,115.120006,124.649653,134.524297,140.515266,I,Above,Hip,0,5701,Wood,40.04085647,0,0,,,,1,1,,0.35,nav,1,1954,2,, 8700,NJBF000076065,,Brigantine,NJ,39.39211421,-74.40875433,RES1,3001,,NaN,NE,1969,0,3103,5,1,1649.406443,1649.406443,3505,NO,97.67,109.86,3,1.24,6106,114.698861,124.271983,134.103545,140.182272,I,Above,Hip,0,5701,Wood,103.7634773,0,0,,,,1,1,,0.03,nav,1,1969,5,, 8701,NJBF000075749,304 GULL COVE,Brigantine,NJ,39.39098069,-74.40363797,RES3B,3001,,35,ME,1984,1984,3301,2,1,3418.636169,3418.636169,3507,YES,34.19,39.27,1,1.46,6106,114.818139,124.378678,134.221817,140.279876,I,Above,Gable,0,5701,Wood,36.73272301,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8702,NJBF000076452,3218 W BRIGANTINE AVE,Brigantine,NJ,39.39347255,-74.38614391,COM1,3001,,NaN,ME,1969,0,3401,1,1,5376.98637,5376.98637,3507,NO,19.37,27.14,1,1.74,6106,115.153984,124.67977,134.561019,140.523901,I,Above,Flat,0,NaN,Wood,23.25414044,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8703,NJBF000075847,315 37TH STREET SO,Brigantine,NJ,39.39135319,-74.38852238,RES1,3001,,45,NE,1954,1954,3102,2,2,1091.260887,1091.260887,3507,NO,37.98,52.36,1,0.15,6106,115.128107,124.6567,134.533423,140.514274,I,Above,Hip,0,5701,Wood,45.16981596,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8704,NJBF000074979,419 SEAHORSE RD,Brigantine,NJ,39.388354,-74.40388344,RES3B,3001,,35,ME,1987,1987,3301,3,1,2633.745698,2633.745698,3507,NO,47.17,53.03,1,2.74,6110,114.841703,124.401032,134.244839,140.311639,I,Above,Gable,0,5701,Wood,50.09778853,0,1.1,,,,1,1,,0.35,nav,1,1987,3,, 8705,NJBF000077151,406 20TH STREET SO,Brigantine,NJ,39.39688119,-74.37530494,RES1,3001,,21,NE,1981,1981,3102,3,1,2787.130002,2787.130002,3507,YES,44.9,58.46,1,1.31,6102,115.339243,124.849008,134.75425,140.649811,I,Above,Flat,0,5701,Wood,51.68097275,0,0,,,,1,1,,0.03,nav,1,1981,3,, 8706,NJBF000075094,409 SEAHORSE RD,Brigantine,NJ,39.3886968,-74.40359634,RES3B,3001,,35,E,2001,2001,3303,3,1,9249.495762,9249.495762,3507,NO,42.18,48.16,1,0.51,6106,114.843942,124.40285,134.247128,140.311549,I,Above,Flat,0,5701,Wood,45.17184751,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 8707,NJBF000074109,11 BRAMBLE DRIVE,Brigantine,NJ,39.38493027,-74.39821573,RES3C,3001,,37,ME,1978,1978,3301,2,1,7762.187188,7762.187188,3507,NO,37.26,46.08,1,1.85,6106,114.997965,124.541314,134.398808,140.447165,I,Above,Gable,0,5701,Wood,41.6672177,0,0,,,,1,1,,0.03,nav,1,1978,2,, 8708,NJBF000078070,12 18TH STREET SO,Brigantine,NJ,39.40273394,-74.3783732,RES1,3001,,17,NE,1952,1952,3102,1,1,2064.571003,2064.571003,3507,NO,18.51,32.58,1,1.2,6106,115.213717,124.732682,134.62721,140.526472,I,Above,Gable,0,5701,Wood,25.54946086,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 8709,NJBF000081001,813 BOBBY JONES RD,Brigantine,NJ,39.41717254,-74.38154843,RES1,3001,,16,NE,1974,1974,3103,2,1,1817.111188,1817.111188,3505,NO,29,38.39,3,6.85,6106,114.999415,124.527487,134.403302,140.288223,I,Above,Flat,0,5701,Wood,33.6920154,0,0,,,,1,1,,0.03,nav,1,1974,2,, 8710,NJBF000075300,6 44TH COVE,Brigantine,NJ,39.3894037,-74.39648484,RES1,3001,,15,NE,1968,1968,3102,1,1,1627.445314,1627.445314,3507,NO,18.44,30.09,1,2.13,6106,114.984456,124.527908,134.387482,140.414698,I,Above,Flat,0,5701,Wood,24.26883046,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8711,NJBF000076267,214 37TH STREET SO,Brigantine,NJ,39.39278299,-74.39129327,RES1,3001,,43,NE,1960,1960,3102,2,2,1727.109091,1727.109091,3507,NO,35.39,41.88,1,1.45,6106,115.055183,124.59044,134.460181,140.45183,I,Above,Hip,0,5701,Wood,38.63541693,0,0,,,,1,1,,0.03,nav,1,1960,2,, 8712,NJBF000080835,719 LAFAYETTE BLVD,Brigantine,NJ,39.41652334,-74.37953803,RES1,3001,,NaN,NE,1972,1972,3103,4,1,1407.560964,1407.560964,3505,NO,67.35,72.59,3,-1.22,6106,115.046807,124.572191,134.453402,140.329448,I,Above,Hip,0,5701,Wood,69.96941476,0,0,,,,1,1,,0.03,nav,1,1972,4,, 8713,NJBF000078412,1201 BAYSHORE AVE,Brigantine,NJ,39.40534513,-74.3739656,RES1,3001,,17,NE,1966,1966,3102,2,1,2256.526469,2256.526469,3505,NO,38.92,53.12,3,3.1,6106,115.27584,124.789801,134.693301,140.562838,I,Above,Hip,0,5701,Wood,46.0205839,0,0,,,,1,1,,0.03,nav,1,1966,2,, 8714,NJBF000077525,211 22ND STREET SO,Brigantine,NJ,39.39922456,-74.37904363,RES1,3001,,18,NE,2004,2004,3101,2,1,2984.960689,2984.960689,3507,NO,27.47,41.23,1,2.94,6106,115.237502,124.755203,134.650211,140.561076,I,Above,Flat,0,5701,Wood,34.35240052,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 8715,NJBF000080716,715 STERLING PLACE,Brigantine,NJ,39.41600318,-74.3802473,RES1,3001,,16,NE,1975,1975,3103,2,1,1242.127703,1242.127703,3505,YES,34.76,40.44,3,7.06,6106,115.037691,124.563969,134.443942,140.324656,I,Above,Flat,0,5701,Wood,37.59891558,0,0,,,,1,1,,0.03,nav,1,1975,2,, 8716,NJBF000076211,4328 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3926022,-74.4062778,RES1,3001,,19,NE,2003,2003,3103,3,1,1790.867298,1790.867298,3505,NO,49.29,54.59,3,8.92,6106,114.745432,124.312977,134.149599,140.21545,I,Above,Hip,0,5701,Wood,51.93892416,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 8717,NJBF000074940,,Brigantine,NJ,39.38824648,-74.39203383,RES1,3001,,NaN,NE,1969,0,3102,2,1,2507.710335,2507.710335,3507,NO,34.56,48.56,1,-0.51,6110,115.089656,124.622617,134.492635,140.500044,I,Above,Gable,0,5701,Wood,41.55999111,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8718,NJBF000074902,,Brigantine,NJ,39.38813548,-74.39187683,RES1,3001,,NaN,NE,1969,0,3102,2,1,2571.426257,2571.426257,3507,NO,23.35,35.22,1,-0.87,6110,115.09414,124.62667,134.497085,140.503966,I,Above,Gable,0,5701,Wood,29.28258086,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8719,NJBF000077383,203 25TH STREET SO,Brigantine,NJ,39.39826657,-74.38180337,RES1,3001,,17,NE,1928,1928,3102,2,1,1009.993365,1009.993365,3507,YES,22.34,29.79,1,-0.72,6106,115.191294,124.71293,134.60191,140.529933,I,Above,Hip,0,5701,Wood,26.06374572,0,0,,,,1,1,,0.03,nav,1,1928,2,, 8720,NJBF000077885,1805 REVERE BLVD,Brigantine,NJ,39.40144721,-74.37769313,RES1,3001,,15,NE,1956,1956,3101,2,1,1691.702742,1691.702742,3507,YES,24.64,33.97,1,2.52,6106,115.241313,124.758392,134.655347,140.553801,I,Above,Gable,0,5701,Wood,29.30576124,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8721,NJBF000081108,828 W SHORE DR,Brigantine,NJ,39.4175663,-74.38313558,RES1,3001,,17,NE,1993,1993,3103,2,1,3254.589542,3254.589542,3505,NO,32.16,45.79,3,3.27,6106,114.963184,124.49339,134.365071,140.257118,I,Above,Flat,0,5701,Wood,38.97208063,0,0,,,,1,1,,0.03,nav,1,1993,2,, 8722,NJBF000073556,5109 HARBOR BEACH BLVD,Brigantine,NJ,39.38157655,-74.4059376,RES1,3001,,17,NE,1987,1987,3101,2,1,1407.221572,1407.221572,3507,NO,25.29,36.75,1,0.43,6106,114.873966,124.432461,134.27444,140.371102,I,Above,Flat,0,5701,Wood,31.01641148,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 8723,NJBF000077894,317 14TH STREET SO,Brigantine,NJ,39.40150205,-74.37220101,RES1,3001,,16,NE,1951,1951,3102,2,1,1661.641463,1661.641463,3502,NO,35.19,42.48,5,0.29,6106,115.352652,124.861454,134.771706,140.639627,I,Above,Flat,0,5701,Wood,38.83801739,0,0,,,,1,1,,0.03,nav,1,1951,2,, 8724,NJBF000077694,349 15TH STREET SO,Brigantine,NJ,39.40037965,-74.37226051,RES1,3001,,16,NE,1946,1946,3102,2,1,732.1973843,732.1973843,3502,NO,44.46,57.98,5,5.72,6106,115.363479,124.871489,134.782247,140.65293,I,Above,Flat,0,5701,Wood,51.22173107,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 8725,NJBF000077806,1504 W BRIGANTINE AVE,Brigantine,NJ,39.40095727,-74.37394656,RES1,3001,,16,NE,1963,1963,3102,1,1,2751.63413,2751.63413,3505,NO,13.05,21.19,3,-1.55,6106,115.322956,124.833929,134.740239,140.619123,I,Above,Flat,0,5701,Wood,17.11773204,0,1.2,,,,1,1,,0.03,nav,1,1963,1,, 8726,NJBF000081070,824 BOBBY JONES RD,Brigantine,NJ,39.41744079,-74.38187195,RES1,3001,,16,NE,1970,1970,3103,2,1,1219.722385,1219.722385,3505,YES,26.58,38.48,3,3.4,6106,114.990128,124.518634,134.393434,140.279435,I,Above,Gable,0,5701,Wood,32.53258898,0,0,,,,1,1,,0.03,nav,1,1970,2,, 8727,NJBF000075449,4410 WHALERMAN RD,Brigantine,NJ,39.38990629,-74.39907957,RES1,3001,,16,NE,1968,1968,3102,2,1,1575.471133,1575.471133,3507,YES,37.36,43.17,1,1.74,6106,114.92494,124.47447,134.328079,140.366932,I,Above,Gable,0,5701,Wood,40.26781077,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8728,NJBF000078090,352 8TH STREET SO,Brigantine,NJ,39.40287384,-74.36739789,RES1,3001,,16,NE,1974,1974,3102,1,1,2193.869926,2193.869926,3502,NO,20.98,27.96,5,6.58,6110,115.435451,124.938621,134.859907,140.697621,I,Above,Hip,0,5701,Wood,24.47066468,0,0,,,,1,1,,0.35,nav,1,1974,1,, 8729,NJBF000080076,547 CAVERLY DR,Brigantine,NJ,39.41384123,-74.37551063,RES1,3001,,15,NE,1980,1980,3103,1,1,1225.385085,1225.385085,3505,NO,19.9,34.54,3,7.12,6106,115.155889,124.675589,134.568869,140.429304,I,Above,Gable,0,5701,Wood,27.21932858,0,0,,,,1,1,,0.03,nav,1,1980,1,, 8730,NJBF000077666,210 19TH STREET SO,Brigantine,NJ,39.400218,-74.37724995,RES1,3001,,16,NE,1955,1955,3101,1,1,2359.913605,2359.913605,3507,NO,21.33,31.44,1,2.94,6106,115.263512,124.77904,134.677785,140.576582,I,Above,Gable,0,5701,Wood,26.38813674,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8731,NJBF000075688,,Brigantine,NJ,39.39073169,-74.41039063,RES1,3001,,NaN,NE,1969,0,3103,4,1,2772.769346,2772.769346,3505,NO,61.81,70.67,3,1.94,6106,114.679444,124.255813,134.084595,140.174936,I,Above,Gable,0,5701,Wood,66.24194811,0,0,,,,1,1,,0.03,nav,1,1969,4,, 8732,NJBF000076017,,Brigantine,NJ,39.39195968,-74.38810596,RES1,3001,,NaN,NE,1969,0,3102,2,1,1884.559062,1884.559062,3507,NO,27.51,38.35,1,2.32,6106,115.130046,124.65834,134.53575,140.512853,I,Above,Hip,0,5701,Wood,32.92700281,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8733,NJBF000081141,829 W SHORE DR,Brigantine,NJ,39.41771983,-74.38212791,RES1,3001,,17,NE,1973,1973,3103,3,1,1558.633694,1558.633694,3505,NO,32.47,44.73,3,-0.19,6106,114.982115,124.510959,134.384895,140.271609,I,Above,Hip,0,5701,Wood,38.60389381,0,1.1,,,,1,1,,0.03,nav,1,1973,3,, 8734,NJBF000074936,4508 PRIVATEER RD,Brigantine,NJ,39.38822549,-74.39820179,RES1,3001,,16,NE,1968,1968,3102,2,1,1310.592816,1310.592816,3507,NO,38.38,48.08,1,-0.13,6106,114.961698,124.507959,134.364225,140.403351,I,Above,Flat,0,5701,Wood,43.23154278,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8735,NJBF000077935,201 17TH STREET SO,Brigantine,NJ,39.40176163,-74.3757572,RES1,3001,,16,NE,1930,1930,3101,2,1,2084.253975,2084.253975,3507,NO,34.96,44.13,1,0.61,6106,115.277452,124.791748,134.693185,140.580332,I,Above,Gable,0,5701,Wood,39.54585452,0,0,,,,1,1,,0.03,nav,1,1930,2,, 8736,NJBF000079306,217 5TH STREET NO,Brigantine,NJ,39.41057986,-74.36062291,RES1,3001,,15,NE,1951,1951,3102,1,1,1328.973963,1328.973963,3507,NO,15.52,28.53,1,-0.42,6106,115.490424,124.99117,134.924222,140.707753,I,Above,Gable,0,5701,Wood,22.02870078,0,0,,,,1,1,,0.03,nav,1,1951,1,, 8737,NJBF000075734,3519 OCEAN AVE,Brigantine,NJ,39.3909185,-74.387005,RES1,3001,,47,NE,1950,1950,3102,2,2,826.6247876,826.6247876,3507,NO,37.02,42.54,1,1.99,6106,115.16421,124.68945,134.569848,140.543746,I,Above,Hip,0,5701,Wood,39.78197166,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 8738,NJBF000077891,1107 OCEAN AVE,Brigantine,NJ,39.40147639,-74.36959177,RES1,3001,,20,NE,2003,2003,3102,3,1,2212.751796,2212.751796,3502,NO,67.73,78.76,5,10.5,6110,115.405947,124.910994,134.827678,140.680873,I,Above,Hip,0,5701,Wood,73.24573393,0,1.1,,,,1,1,,0.35,nav,1,2003,3,, 8739,NJBF000074775,4516 PRIVATEER RD,Brigantine,NJ,39.38774965,-74.3988268,RES1,3001,,16,NE,1968,1968,3102,1,1,1582.199942,1582.199942,3507,NO,15.94,26.45,1,-0.01,6110,114.953916,124.501179,134.356262,140.39985,I,Above,Hip,0,5701,Wood,21.19508686,0,0,,,,1,1,,0.35,nav,1,1968,1,, 8740,NJBF000077580,317 17TH STREET SO,Brigantine,NJ,39.39960535,-74.37379112,RES1,3001,,16,NE,1962,1962,3102,1,1,3049.886194,3049.886194,3505,NO,9.35,18.5,3,-2.8,6106,115.340666,124.850351,134.757813,140.638795,I,Above,Hip,0,5701,Wood,13.92341767,0,0,,,,1,1,,0.03,nav,1,1962,1,, 8741,NJBF000077295,2825 BAYSHORE AVE,Brigantine,NJ,39.39772391,-74.38642225,RES1,3001,,18,NE,2000,2000,3102,3,1,2513.709533,2513.709533,3507,NO,53.79,65.48,1,0,6106,115.102248,124.631668,134.510104,140.463935,I,Above,Gable,0,5701,Wood,59.63353949,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 8742,NJBF000074922,409 ALBACORE LANE,Brigantine,NJ,39.3881841,-74.40310811,RES3B,3001,,35,ME,2002,2002,3301,3,1,6828.052744,6828.052744,3507,NO,49.69,64.02,1,2.3,6106,114.859774,124.417169,134.262726,140.326255,I,Above,Flat,0,5701,Wood,56.85719343,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 8743,NJBF000074973,408 SEAHORSE RD,Brigantine,NJ,39.38833959,-74.40329378,RES3B,3001,,35,ME,1987,1987,3301,3,1,9633.02855,9633.02855,3507,NO,58.28,67.09,1,2.64,6106,114.854172,124.412116,134.257203,140.321188,I,Above,Flat,0,5701,Wood,62.68706602,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 8744,NJBF000076200,4421 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39257756,-74.40766552,RES1,3001,,19,NE,2015,2015,3103,3,1,1275.108972,1275.108972,3505,NO,37.51,48.5,3,5.28,6106,114.716652,124.287426,134.121076,140.193431,I,Above,Flat,0,5701,Wood,43.00671904,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 8745,NJBF000077774,104 22ND STREET SO,Brigantine,NJ,39.40079013,-74.3811286,RES1,3001,,17,NE,1954,1954,3101,2,1,907.7076872,907.7076872,3507,NO,34.04,42.38,1,0.23,6106,115.178068,124.700261,134.589393,140.507902,I,Above,Gable,0,5701,Wood,38.20658268,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8746,NJBF000077145,208 27TH STREET SO,Brigantine,NJ,39.39686002,-74.38333867,RES1,3001,,17,NE,1959,1959,3102,2,1,1569.795992,1569.795992,3507,YES,31.37,42.78,1,2.63,6106,115.174937,124.698229,134.584342,140.523955,I,Above,Gable,0,5701,Wood,37.07608427,0,0,,,,1,1,,0.03,nav,1,1959,2,, 8747,NJBF000077171,204 27TH STREET SO,Brigantine,NJ,39.39700432,-74.38346708,RES1,3001,,16,NE,1962,1962,3102,1,1,1422.567636,1422.567636,3507,NO,16.71,26.95,1,1.81,6106,115.170754,124.694377,134.580114,140.520065,I,Above,Gable,0,5701,Wood,21.83054105,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 8748,NJBF000077510,109 25TH STREET SO,Brigantine,NJ,39.39914809,-74.38276346,RES1,3001,,NaN,NE,1956,1956,3101,1,1,1685.224428,1685.224428,3507,NO,15.07,22.56,1,2.29,6106,115.162144,124.68603,134.572249,140.503326,I,Above,Flat,0,5701,Wood,18.81563135,0,0,,,,1,1,,0.03,nav,1,1956,1,, 8749,NJBF000076079,239 38TH STREET SO,Brigantine,NJ,39.39217123,-74.39101714,RES1,3001,,16,NE,1955,1955,3102,1,1,1113.102579,1113.102579,3507,NO,15.21,23.34,1,1.12,6106,115.067568,124.601799,134.472454,140.464263,I,Above,Gable,0,5701,Wood,19.27493564,0,0,,,,1,1,,0.03,nav,1,1955,1,, 8750,NJBF000076067,215 39TH STREET SO,Brigantine,NJ,39.39212585,-74.39222414,RES1,3001,,16,NE,1955,1955,3102,1,1,1372.901536,1372.901536,3507,NO,19.98,28.33,1,0.57,6106,115.043074,124.57971,134.447644,140.445811,I,Above,Hip,0,5701,Wood,24.15361636,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8751,NJBF000077176,2004 OCEAN AVE,Brigantine,NJ,39.39706826,-74.37601498,RES1,3001,,NaN,NE,1950,1950,3102,2,1,702.2824324,702.2824324,3507,NO,32.33,40.8,1,-0.73,6106,115.322713,124.833782,134.737216,140.636321,I,Above,Flat,0,5701,Wood,36.5634074,0,0,,,,1,1,,0.03,nav,1,1950,2,, 8752,NJBF000077609,300 18TH STREET SO,Brigantine,NJ,39.39980787,-74.37574889,RES1,3001,,17,NE,1987,1987,3102,2,1,1765.893721,1765.893721,3507,NO,20.64,30.22,1,-0.79,6106,115.298556,124.81142,134.71402,140.605463,I,Above,Flat,0,5701,Wood,25.42701906,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 8753,NJBF000078196,219 13TH STREET SO,Brigantine,NJ,39.40358497,-74.37296373,RES1,3001,,16,NE,1957,1957,3102,2,1,1024.329072,1024.329072,3505,NO,20.58,33.46,3,-1.02,6106,115.314886,124.826295,134.733397,140.601127,I,Above,Flat,0,5701,Wood,27.01692378,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 8754,NJBF000075776,4600 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39107708,-74.4096379,RES1,3001,,47,NE,1987,1987,3103,2,2,1998.767535,1998.767535,3505,NO,44.51,53.82,3,6.72,6106,114.691514,124.266234,134.09644,140.182308,I,Above,Gable,0,5701,Wood,49.16640925,0,0,,,,1,1,,0.03,nav,1,1987,2,, 8755,NJBF000076849,2605 OCEAN AVE,Brigantine,NJ,39.39503977,-74.38056111,RES1,3001,,17,NE,1960,1960,3102,2,1,3719.391926,3719.391926,3507,NO,23.56,33.7,1,-0.72,6106,115.251694,124.76866,134.662246,140.591183,I,Above,Gable,0,5701,Wood,28.62892147,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 8756,NJBF000074297,508 CASA DRIVE,Brigantine,NJ,39.3858057,-74.40279443,RES3B,3001,,33,ME,1980,1980,3301,2,1,8302.4157,8302.4157,3507,YES,30.12,35.92,1,0.43,6106,114.892597,124.44735,134.294555,140.363387,I,Above,Gable,0,5701,Wood,33.01718131,0,0,,,,1,1,,0.03,nav,1,1980,2,, 8757,NJBF000075946,3606 W BRIGANTINE AVE,Brigantine,NJ,39.39171258,-74.38862771,RES1,3001,,16,NE,1957,1957,3102,1,1,1557.556571,1557.556571,3507,NO,18.43,29.5,1,-0.17,6106,115.12197,124.651079,134.5274,140.50789,I,Above,Gable,0,5701,Wood,23.96564139,0,0,,,,1,1,,0.03,nav,1,1957,1,, 8758,NJBF000077012,402 23RD STREET SO,Brigantine,NJ,39.395845,-74.377769,RES1,3001,,16,NE,1968,1968,3102,2,1,1347.250068,1347.250068,3507,YES,29.48,39.79,1,2.39,6106,115.300135,124.813029,134.712867,140.624537,I,Above,Hip,0,5701,Wood,34.63495807,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8759,NJBF000074880,4510 PRIVATEER RD,Brigantine,NJ,39.38806111,-74.39824422,RES1,3001,,16,NE,1968,1968,3102,1,1,1851.829796,1851.829796,3507,NO,17.15,25.14,1,1.01,6106,114.962632,124.508851,134.365091,140.404883,I,Above,Hip,0,5701,Wood,21.14564297,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8760,NJBF000074722,41 LIGHTHOUSE DR,Brigantine,NJ,39.38756049,-74.40095379,RES1,3001,,43,NE,1986,1986,3102,2,2,1680.917254,1680.917254,3507,NO,24.23,37.35,1,0.43,6106,114.911643,124.463576,134.314077,140.368807,I,Above,Gable,0,5701,Wood,30.7915033,0,0,,,,1,1,,0.03,nav,1,1986,2,, 8761,NJBF000074655,125 HUDSON DR,Brigantine,NJ,39.38736137,-74.39521935,RES1,3001,,17,NE,1968,1968,3102,2,1,2033.577089,2033.577089,3507,YES,31.98,45.02,1,0.14,6110,115.033328,124.572278,134.4355,140.461812,I,Above,Gable,0,5701,Wood,38.50081848,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 8762,NJBF000073554,4 OCEAN DRIVE WEST,Brigantine,NJ,39.38156611,-74.41028682,RES1,3001,,18,NE,1988,1988,3103,2,1,2294.077482,2294.077482,3505,NO,36.91,50.82,3,-0.72,6106,114.782629,124.352138,134.184991,140.302738,I,Above,Flat,0,5701,Wood,43.86190923,0,0,,,,1,1,,0.03,nav,1,1988,2,, 8763,NJBF000077303,313 22ND STREET SO,Brigantine,NJ,39.39777494,-74.37772389,RES1,3001,,16,NE,1960,1960,3102,1,1,1892.682033,1892.682033,3507,NO,16.61,30.14,1,1.97,6106,115.280128,124.794561,134.69352,140.600485,I,Above,Hip,0,5701,Wood,23.37370104,0,0,,,,1,1,,0.03,nav,1,1960,1,, 8764,NJBF000073543,48 COQUILLE BEACH DR,Brigantine,NJ,39.38149318,-74.40198178,RES3B,3001,,37,ME,1982,1982,3301,3,1,9333.672494,9333.672494,3507,NO,48.19,59.44,1,-0.05,6106,114.957856,124.506581,134.357027,140.434225,I,Above,Flat,0,5701,Wood,53.81661677,0,1.1,,,,1,1,,0.03,nav,1,1982,3,, 8765,NJBF000074378,4533 W BRIGANTINE AVE,Brigantine,NJ,39.38614325,-74.39736264,RES1,3001,,17,NE,1968,1968,3102,2,1,2062.596544,2062.596544,3507,YES,24.15,35.39,1,2.4,6106,115.002229,124.544795,134.403727,140.444364,I,Above,Gable,0,5701,Wood,29.77324695,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8766,NJBF000074393,24 LIGHTHOUSE DR,Brigantine,NJ,39.38620445,-74.40195074,RES1,3001,,43,NE,1981,1981,3102,2,2,1352.733802,1352.733802,3507,NO,27.17,35.88,1,1.89,6110,114.905811,124.458925,134.3078,140.371326,I,Above,Gable,0,5701,Wood,31.5271212,0,0,,,,1,1,,0.35,nav,1,1981,2,, 8767,NJBF000074359,4615 SCHOONER RD,Brigantine,NJ,39.38606522,-74.3996895,RES1,3001,,43,NE,1977,1977,3102,2,2,1904.277459,1904.277459,3507,NO,23.69,31.69,1,-0.47,6110,114.954597,124.502359,134.356213,140.408849,I,Above,Gable,0,5701,Wood,27.68903749,0,0,,,,1,1,,0.35,nav,1,1977,2,, 8768,NJBF000073479,5203 HARBOR BEACH BLVD,Brigantine,NJ,39.38105028,-74.40711767,RES1,3001,,17,NE,1986,1986,3103,2,1,1260.86144,1260.86144,3505,NO,21.83,34.87,3,-2.07,6110,114.855114,124.416046,134.255703,140.359715,I,Above,Hip,0,5701,Wood,28.35086125,0,0,,,,1,1,,0.35,nav,1,1986,2,, 8769,NJBF000074314,1 SCHOONER COVE,Brigantine,NJ,39.38587848,-74.40034868,RES1,3001,,43,NE,1977,1977,3102,2,2,1556.973855,1556.973855,3507,NO,31.88,42.42,1,2.25,6110,114.942896,124.49201,134.344492,140.400969,I,Above,Hip,0,5701,Wood,37.14942728,0,0,,,,1,1,,0.35,nav,1,1977,2,, 8770,NJBF000073361,5109 OCEAN DRIVE SOUTH,Brigantine,NJ,39.38009777,-74.40430078,RES1,3001,,18,NE,1980,1980,3101,2,1,1077.628731,1077.628731,3507,NO,37.94,47.57,1,1.5,6106,114.925033,124.477946,134.323851,140.41675,I,Above,Gable,0,5701,Wood,42.75483586,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 8771,NJBF000073486,5201 HARBOR BEACH BLVD,Brigantine,NJ,39.38109148,-74.40684619,RES1,3001,,17,NE,1987,1987,3103,2,1,1556.152834,1556.152834,3505,NO,29.59,37.09,3,5.03,6110,114.860369,124.420656,134.260873,140.363432,I,Above,Flat,0,5701,Wood,33.34035886,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 8772,NJBF000073342,5218 WATERVIEW DR,Brigantine,NJ,39.37995879,-74.40827455,RES1,3001,,18,NE,1975,1975,3103,2,1,2560.758689,2560.758689,3505,NO,27.62,33.26,3,-1.73,6106,114.843103,124.405882,134.243452,140.356384,I,Above,Gable,0,5701,Wood,30.44211127,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8773,NJBF000073335,23 OCEAN DRIVE WEST,Brigantine,NJ,39.37992025,-74.40853987,RES1,3001,,16,NE,1975,1975,3103,1,1,1572.224911,1572.224911,3505,NO,19.66,32.87,3,4.96,6106,114.837967,124.401386,134.238414,140.352754,I,Above,Gable,0,5701,Wood,26.26797079,0,0,,,,1,1,,0.03,nav,1,1975,1,, 8774,NJBF000073352,11 SANDY LANE,Brigantine,NJ,39.38005141,-74.40575443,RES1,3001,,16,NE,1975,1975,3101,1,1,1927.493355,1927.493355,3507,NO,16.57,31.36,1,2,6106,114.895063,124.451547,134.294388,140.394659,I,Above,Flat,0,5701,Wood,23.96475926,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 8775,NJBF000074271,18 LIGHTHOUSE DR,Brigantine,NJ,39.38567824,-74.4018569,RES1,3001,,43,NE,1980,1980,3102,2,2,1372.248733,1372.248733,3507,NO,32.64,41.81,1,-0.27,6110,114.913612,124.466053,134.315334,140.379898,I,Above,Gable,0,5701,Wood,37.22373345,0,0,,,,1,1,,0.35,nav,1,1980,2,, 8776,NJBF000073273,5213 SEA SPRAY RD,Brigantine,NJ,39.37949104,-74.40726124,RES1,3001,,16,NE,1975,1975,3103,1,1,2358.652041,2358.652041,3505,NO,11.03,21.5,3,-2.92,6106,114.869738,124.429441,134.269275,140.37865,I,Above,Gable,0,5701,Wood,16.26718366,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 8777,NJBF000073345,5111 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37996603,-74.40447474,RES1,3001,,16,NE,1975,1975,3101,1,1,1950.134603,1950.134603,3507,NO,16.4,29.21,1,-0.03,6106,114.922878,124.476081,134.321655,140.415811,I,Above,Gable,0,5701,Wood,22.80634374,0,0,,,,1,1,,0.03,nav,1,1975,1,, 8778,NJBF000073204,5205 OCEAN DRIVE SOUTH,Brigantine,NJ,39.3789125,-74.4056015,RES1,3001,,16,NE,1975,1975,3101,2,1,1674.329432,1674.329432,3507,NO,24.12,34.4,1,0.26,6106,114.911188,124.466065,134.309552,140.412436,I,Above,Gable,0,5701,Wood,29.2627894,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8779,NJBF000073063,6 SUNSET COURT,Brigantine,NJ,39.37711249,-74.40728399,RES1,3001,,17,NE,1975,1975,3103,2,1,1469.603446,1469.603446,3505,NO,40.41,51.27,3,3.53,6106,114.896367,124.453508,134.293939,140.410545,I,Above,Gable,0,5701,Wood,45.84086681,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8780,NJBF000073079,5218 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37736725,-74.40643947,RES1,3001,,17,NE,1975,1975,3103,2,1,2032.155445,2032.155445,3505,NO,27.31,37.28,3,6.17,6106,114.911225,124.466488,134.308622,140.42026,I,Above,Gable,0,5701,Wood,32.29479617,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8781,NJBF000073295,28 OCEAN DRIVE WEST,Brigantine,NJ,39.37964514,-74.40902685,RES1,3001,,20,NE,2005,2005,3103,3,1,2199.083186,2199.083186,3505,NO,49.85,62.11,3,2.04,6106,114.830828,124.395221,134.231317,140.348855,I,Above,Hip,0,5701,Wood,55.98104284,0,1.2,,,,1,1,,0.03,nav,1,2005,3,, 8782,NJBF000073214,5203 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37902098,-74.40545183,RES1,3001,,16,NE,1978,1978,3101,2,1,1036.993617,1036.993617,3507,NO,38.58,48.34,1,0.58,6106,114.913099,124.467718,134.311491,140.413305,I,Above,Gable,0,5701,Wood,43.45601005,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 8783,NJBF000080427,4417 SHERIDAN BLVD,Brigantine,NJ,39.41500927,-74.37642264,RES1,3001,,16,NE,2016,2016,3103,3,1,1787.373174,1787.373174,3505,NO,66.71,79.13,3,8.25,6106,115.125421,124.64656,134.536625,140.399555,I,Above,Gable,0,5701,Wood,72.91869373,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 8784,NJBF000073879,56 HORIZON LANE,Brigantine,NJ,39.38373275,-74.41169625,RES1,3001,,37,NE,1987,1987,3103,3,1,4255.71698,4255.71698,3505,YES,46.26,51.86,3,-2.16,6106,114.728734,124.303746,134.13288,140.250613,I,Above,Gable,0,5701,Wood,49.06432249,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 8785,NJBF000074082,513 LAGOON BLVD,Brigantine,NJ,39.38478717,-74.40532077,RES3B,3001,,37,ME,1985,1985,3301,2,1,5368.270997,5368.270997,3507,NO,33.54,39.73,1,-0.91,6106,114.850996,124.410926,134.253092,140.337265,I,Above,Gable,0,5701,Wood,36.63406375,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8786,NJBF000075064,8 WHALERMAN COVE,Brigantine,NJ,39.3886125,-74.3999925,RES1,3001,,16,NE,1968,1968,3102,2,1,1263.603665,1263.603665,3507,YES,29.15,38.35,1,0.96,6110,114.920118,124.470701,134.322867,140.369858,I,Above,Gable,0,5701,Wood,33.7501369,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8787,NJBF000077380,319 20TH STREET SO,Brigantine,NJ,39.39825373,-74.37592176,RES1,3001,,18,NE,1993,1993,3102,2,1,1727.745685,1727.745685,3507,NO,40.55,53.59,1,1.88,6106,115.311774,124.823684,134.726722,140.622619,I,Above,Hip,0,5701,Wood,47.06987054,0,0,,,,1,1,,0.03,nav,1,1993,2,, 8788,NJBF000077443,107 26TH STREET SO,Brigantine,NJ,39.39866006,-74.38346657,RES1,3001,,16,NE,1956,1956,3102,1,1,1779.666011,1779.666011,3507,NO,10.31,20.98,1,-0.8,6106,115.152932,124.677711,134.562545,140.498528,I,Above,Gable,0,5701,Wood,15.64028632,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 8789,NJBF000075465,4013 W BRIGANTINE AVE,Brigantine,NJ,39.38995471,-74.39161265,RES1,3001,,43,NE,1955,1955,3102,2,2,1427.036742,1427.036742,3507,NO,24.42,31.56,1,-0.67,6106,115.07952,124.613135,134.483411,140.484112,I,Above,Gable,0,5701,Wood,27.98976366,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8790,NJBF000075445,311 40TH STREET SO,Brigantine,NJ,39.3898895,-74.3904335,RES1,3001,,45,NE,1954,1954,3102,2,2,946.8572929,946.8572929,3507,NO,26.73,39.39,1,1.93,6106,115.10465,124.635796,134.508775,140.503477,I,Above,Gable,0,5701,Wood,33.0605707,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8791,NJBF000074406,92 DELMAR DRIVE,Brigantine,NJ,39.38627072,-74.40359437,RES3B,3001,,33,ME,1980,1980,3301,2,1,7570.170236,7570.170236,3507,YES,29.21,37.92,1,1.88,6106,114.870706,124.42774,134.273036,140.344455,I,Above,Gable,0,5701,Wood,33.56472231,0,0,,,,1,1,,0.03,nav,1,1980,2,, 8792,NJBF000076204,321 34TH STREET SO,Brigantine,NJ,39.39258652,-74.38647691,RES1,3001,,15,NE,1929,1929,3102,2,1,906.4733247,906.4733247,3507,NO,32.15,41.96,1,-0.38,6106,115.156797,124.682477,134.563363,140.530235,I,Above,Hip,0,5701,Wood,37.05489871,0,0,,,,1,1,,0.03,nav,1,1929,2,, 8793,NJBF000074665,3 SHIPMASTER DR,Brigantine,NJ,39.38738666,-74.39813923,RES1,3001,,16,NE,1968,1968,3102,2,1,1140.719258,1140.719258,3507,NO,37.87,44.38,1,0.88,6110,114.972265,124.517679,134.374422,140.415554,I,Above,Gable,0,5701,Wood,41.12797455,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8794,NJBF000080897,807 STERLING PLACE,Brigantine,NJ,39.41676911,-74.3806513,RES1,3001,,16,NE,1977,1977,3103,2,1,1321.706381,1321.706381,3505,YES,22.12,34.89,3,0.75,6106,115.021719,124.548584,134.426907,140.308121,I,Above,Gable,0,5701,Wood,28.50297953,0,0,,,,1,1,,0.03,nav,1,1977,2,, 8795,NJBF000078117,,Brigantine,NJ,39.40305065,-74.37008345,COM1,3001,,NaN,ME,1969,0,3401,2,1,3858.51976,3858.51976,3507,NO,29.1,35.62,1,-0.69,6106,115.379111,124.886073,134.800593,140.65327,I,Above,Flat,0,NaN,Wood,32.36017838,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8796,NJBF000077645,113 23RD STREET SO,Brigantine,NJ,39.40006427,-74.38096646,RES1,3001,,17,NE,1954,1954,3101,2,1,1711.441801,1711.441801,3507,NO,26.16,39.68,1,1.76,6106,115.189164,124.710619,134.600567,140.519886,I,Above,Hip,0,5701,Wood,32.91850736,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8797,NJBF000075612,346 37TH STREET SO,Brigantine,NJ,39.39049926,-74.38801311,RES1,3001,,43,NE,1980,1980,3102,2,2,1411.628783,1411.628783,3507,NO,37.98,46.74,1,1.58,6106,115.148007,124.674845,134.553101,140.533437,I,Above,Hip,0,5701,Wood,42.35839401,0,0,,,,1,1,,0.03,nav,1,1980,2,, 8798,NJBF000073151,43 OCEAN DRIVE WEST,Brigantine,NJ,39.37829699,-74.407507,RES1,3001,,16,NE,1975,1975,3103,1,1,1491.504187,1491.504187,3505,NO,12.01,22.03,3,-2.55,6106,114.878138,124.437186,134.276842,140.391005,I,Above,Gable,0,5701,Wood,17.01870021,0,0,,,,1,1,,0.03,nav,1,1975,1,, 8799,NJBF000073138,45 OCEAN DRIVE WEST,Brigantine,NJ,39.37818099,-74.40745417,RES1,3001,,16,NE,1975,1975,3103,1,1,1505.611507,1505.611507,3505,NO,15.07,29.4,3,0.07,6106,114.880575,124.43936,134.279158,140.393407,I,Above,Flat,0,5701,Wood,22.2342427,0,0,,,,1,1,,0.03,nav,1,1975,1,, 8800,NJBF000074338,4614 SCHOONER RD,Brigantine,NJ,39.3859571,-74.39909635,RES1,3001,,43,NE,1979,1979,3102,2,2,1557.42306,1557.42306,3507,NO,39.91,52.33,1,1.03,6110,114.968169,124.514481,134.369672,140.419624,I,Above,Gable,0,5701,Wood,46.12130365,0,0,,,,1,1,,0.35,nav,1,1979,2,, 8801,NJBF000075078,142 44TH STREET SO,Brigantine,NJ,39.38863982,-74.39386985,RES1,3001,,47,NE,1968,1968,3102,2,2,1604.259277,1604.259277,3507,NO,32.94,41.93,1,2.81,6106,115.047206,124.584398,134.45013,140.466034,I,Above,Flat,0,5701,Wood,37.43827566,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8802,NJBF000077386,2303 W BRIGANTINE AVE,Brigantine,NJ,39.39828008,-74.38006594,RES1,3001,,16,NE,1940,1940,3101,1,1,1778.538556,1778.538556,3507,NO,15.74,21.59,1,2.32,6106,115.226751,124.745453,134.638547,140.557156,I,Above,Hip,0,5701,Wood,18.66408057,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 8803,NJBF000080858,805 BOBBY JONES RD,Brigantine,NJ,39.41659559,-74.38146795,RES1,3001,,16,NE,2016,2016,3103,3,1,2553.876168,2553.876168,3505,NO,46.1,54.5,3,2.75,6106,115.006875,124.534825,134.411351,140.297045,I,Above,Hip,0,5701,Wood,50.30067781,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 8804,NJBF000075793,310 37TH STREET SO,Brigantine,NJ,39.39115885,-74.38894223,RES1,3001,,43,NE,1954,1954,3102,2,2,1192.278835,1192.278835,3507,NO,34.13,42.82,1,0.86,6106,115.121557,124.650813,134.526658,140.510224,I,Above,Flat,0,5701,Wood,38.47516648,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8805,NJBF000074371,4531 W BRIGANTINE AVE,Brigantine,NJ,39.38611155,-74.39715529,RES1,3001,,16,NE,1968,1968,3102,1,1,1811.214932,1811.214932,3507,NO,13.29,18.8,1,0.86,6106,115.006906,124.548979,134.40838,140.448042,I,Above,Gable,0,5701,Wood,16.04784575,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8806,NJBF000081013,810 LAFAYETTE BLVD,Brigantine,NJ,39.41721299,-74.38034644,RES1,3001,,16,NE,1972,1972,3103,2,1,1245.293125,1245.293125,3505,YES,35.61,50.12,3,-0.49,6106,115.023418,124.5499,134.428552,140.307325,I,Above,Gable,0,5701,Wood,42.86251556,0,0,,,,1,1,,0.03,nav,1,1972,2,, 8807,NJBF000077435,,Brigantine,NJ,39.39861843,-74.3774013,RES1,3001,,NaN,NE,1969,0,3102,2,1,2485.002235,2485.002235,3507,NO,28.54,43.3,1,0.81,6110,115.277632,124.792204,134.691485,140.59474,I,Above,Gable,0,5701,Wood,35.91980027,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8808,NJBF000075380,351 39TH STREET SO,Brigantine,NJ,39.3896949,-74.38875689,RES1,3001,,45,NE,1954,1954,3102,2,3,1437.021584,1437.021584,3507,NO,38.28,44.82,1,0.67,6110,115.141492,124.669077,134.545961,140.532313,I,Above,Gable,0,5701,Wood,41.55102997,0,1.1,,,,1,1,,0.35,nav,1,1954,2,, 8809,NJBF000075573,2 BEACH COVE,Brigantine,NJ,39.39034761,-74.40212822,RES1,3001,,16,NE,1977,1977,3102,2,1,1889.431658,1889.431658,3507,YES,38.32,47.76,1,0.12,6106,114.856557,124.413239,134.259962,140.312546,I,Above,Flat,0,5701,Wood,43.04183902,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 8810,NJBF000077344,214 24TH STREET SO,Brigantine,NJ,39.39801205,-74.38088252,RES1,3001,,16,NE,1958,1958,3102,2,1,1456.463369,1456.463369,3507,NO,38.16,45.45,1,-0.35,6106,115.2129,124.732783,134.624081,140.547745,I,Above,Gable,0,5701,Wood,41.80356687,0,0,,,,1,1,,0.03,nav,1,1958,2,, 8811,NJBF000078263,227 11TH STREET SO,Brigantine,NJ,39.4042249,-74.37128294,RES1,3001,,15,NE,1948,1948,3102,1,1,1482.061142,1482.061142,3505,NO,11,17.41,3,-0.72,6106,115.342236,124.851707,134.762523,140.619509,I,Above,Gable,0,5701,Wood,14.20561234,0,0,,,,1,1,,0.03,nav,1,1948,1,, 8812,NJBF000075128,114 45TH STREET SO,Brigantine,NJ,39.38878528,-74.39542592,RES1,3001,,16,NE,1968,1968,3102,2,1,1720.674105,1720.674105,3507,NO,38.58,52.5,1,-0.01,6106,115.013285,124.553934,134.416127,140.439637,I,Above,Gable,0,5701,Wood,45.53957839,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8813,NJBF000080510,210 15TH STREET NO,Brigantine,NJ,39.4153051,-74.35475793,RES1,3001,,19,NE,2004,2004,3103,3,1,1769.887088,1769.887088,3507,NO,51.8,62.56,1,0.04,6106,115.558527,125.056783,135.001071,140.741872,I,Above,Hip,0,5701,Wood,57.18109816,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 8814,NJBF000080480,210 15TH STREET NO,Brigantine,NJ,39.41520961,-74.3546337,RES1,3001,,19,NE,2004,2004,3103,3,1,2129.75935,2129.75935,3507,NO,44.54,52.28,1,2.98,6106,115.561996,125.060086,135.00478,140.744994,I,Above,Gable,0,5701,Wood,48.40772174,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 8815,NJBF000074724,4510 HARBOR BEACH BLVD,Brigantine,NJ,39.38756487,-74.39714128,RES1,3001,,15,NE,1968,1968,3102,2,1,1942.670113,1942.670113,3507,YES,30.62,44.51,1,0.41,6106,114.991082,124.53443,134.393306,140.42889,I,Above,Gable,0,5701,Wood,37.56477661,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8816,NJBF000076466,244 34TH STREET SO,Brigantine,NJ,39.39352642,-74.38817381,RES1,3001,,16,NE,1947,1947,3102,2,1,1585.258065,1585.258065,3507,NO,30.29,37.22,1,-0.88,6106,115.111542,124.64124,134.517772,140.491257,I,Above,Gable,0,5701,Wood,33.75305306,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 8817,NJBF000073413,5204 HARBOR BEACH BLVD,Brigantine,NJ,39.38051424,-74.40716784,RES1,3001,,43,NE,1975,1975,3103,2,2,1409.099284,1409.099284,3505,NO,43.15,53.65,3,6.43,6106,114.860112,124.420635,134.260356,140.366214,I,Above,Gable,0,5701,Wood,48.4006458,0,0,,,,1,1,,0.03,nav,1,1975,2,, 8818,NJBF000077902,2000 BAYSHORE AVE,Brigantine,NJ,39.40154606,-74.37958434,RES1,3001,,17,NE,2010,2010,3101,2,1,1600.929453,1600.929453,3507,NO,21.59,27.76,1,0.13,6106,115.201617,124.721766,134.614126,140.522604,I,Above,Flat,0,5701,Wood,24.67348073,0,0,,,,1,1,,0.03,nav,1,2010,2,, 8819,NJBF000078193,228 12TH STREET SO,Brigantine,NJ,39.40357741,-74.37246175,RES1,3001,,18,NE,2007,2007,3102,2,1,1809.388045,1809.388045,3505,NO,44.13,53.4,3,6.17,6106,115.325178,124.835863,134.7442,140.609149,I,Above,Gable,0,5701,Wood,48.76634201,0,0,,,,1,1,,0.03,nav,1,2007,2,, 8820,NJBF000074781,125 45TH STREET SO,Brigantine,NJ,39.38776751,-74.39470409,RES1,3001,,16,NE,1968,1968,3102,2,1,1925.883083,1925.883083,3507,YES,32.85,41.01,1,2.7,6110,115.039524,124.577726,134.441939,140.464495,I,Above,Gable,0,5701,Wood,36.92902655,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 8821,NJBF000077299,2802 BAYSHORE AVE,Brigantine,NJ,39.39773539,-74.38565843,RES1,3001,,16,NE,1925,1925,3102,2,1,1520.939437,1520.939437,3507,NO,38.45,45.7,1,2.61,6106,115.117847,124.645892,134.526103,140.475898,I,Above,Hip,0,5701,Wood,42.07471753,0,0,,,,1,1,,0.03,nav,1,1925,2,, 8822,NJBF000073422,5103 OCEAN DRIVE SOUTH,Brigantine,NJ,39.380613,-74.4037355,RES1,3001,,16,NE,1978,1978,3101,2,1,1017.706525,1017.706525,3507,NO,25.27,37.09,1,-0.18,6106,114.931072,124.483136,134.330095,140.418656,I,Above,Gable,0,5701,Wood,31.18326971,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 8823,NJBF000080733,805 W SHORE DR,Brigantine,NJ,39.41606769,-74.38228307,RES1,3001,,16,NE,1963,1963,3103,1,1,1145.410321,1145.410321,3505,NO,14.04,22.35,3,3.12,6106,114.995654,124.524694,134.399747,140.290628,I,Above,Hip,0,5701,Wood,18.19039181,0,0,,,,1,1,,0.03,nav,1,1963,1,, 8824,NJBF000075722,3813 W BRIGANTINE AVE,Brigantine,NJ,39.39088057,-74.39045505,RES1,3001,,16,NE,1955,1955,3102,1,1,2245.568467,2245.568467,3507,NO,14.54,24.18,1,1.11,6106,115.093319,124.625366,134.497876,140.490109,I,Above,Gable,0,5701,Wood,19.35773446,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8825,NJBF000078115,252 12TH STREET SO,Brigantine,NJ,39.40303932,-74.37199325,RES1,3001,,16,NE,1952,1952,3102,2,1,1831.472119,1831.472119,3505,NO,32.27,45.39,3,-1.21,6106,115.340445,124.850084,134.75991,140.623377,I,Above,Flat,0,5701,Wood,38.82965925,0,0,,,,1,1,,0.03,nav,1,1952,2,, 8826,NJBF000079919,204 11TH STREET NO,Brigantine,NJ,39.41332947,-74.35726921,RES1,3001,,43,NE,1964,1964,3102,2,2,837.6307606,837.6307606,3507,NO,36.95,45.87,1,2.77,6106,115.52891,125.028134,134.967598,140.726587,I,Above,Hip,0,5701,Wood,41.41072586,0,0,,,,1,1,,0.03,nav,1,1964,2,, 8827,NJBF000076530,3219 W BRIGANTINE AVE,Brigantine,NJ,39.39379934,-74.38661504,COM1,3001,,NaN,ME,1969,0,3401,2,1,1616.751743,1616.751743,3507,NO,22.43,31.13,1,0.5,6106,115.140724,124.667662,134.547665,140.512234,I,Above,Gable,0,NaN,Wood,26.78229255,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8828,NJBF000077323,309 22ND STREET SO,Brigantine,NJ,39.39790419,-74.37788723,RES1,3001,,17,NE,1968,1968,3102,2,1,2177.257761,2177.257761,3507,NO,25.87,34.34,1,1.55,6106,115.275401,124.790203,134.688704,140.59627,I,Above,Flat,0,5701,Wood,30.10130386,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8829,NJBF000076519,2804 OCEAN AVE,Brigantine,NJ,39.39375751,-74.38156549,RES1,3001,,18,NE,1953,1953,3102,2,1,3542.421274,3542.421274,3507,NO,32.43,39.97,1,0.27,6106,115.245072,124.762696,134.654516,140.592011,I,Above,Hip,0,5701,Wood,36.19973552,0,1.2,,,,1,1,,0.03,nav,1,1953,2,, 8830,NJBF000080014,17 CUMMINGS PLACE,Brigantine,NJ,39.41367156,-74.37212027,RES1,3001,,16,NE,1974,1974,3102,1,1,3151.96855,3151.96855,3507,NO,13.13,25.7,1,0.08,6106,115.22631,124.741709,134.643433,140.48602,I,Above,Hip,0,5701,Wood,19.41650104,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 8831,NJBF000076437,,Brigantine,NJ,39.39339541,-74.3885034,RES1,3001,,NaN,NE,1969,0,3102,2,1,1690.090729,1690.090729,3507,NO,40.23,46.74,1,2.97,6106,115.106178,124.636409,134.512245,140.487791,I,Above,Gable,0,5701,Wood,43.4880477,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8832,NJBF000080757,1312 RAY AVE,Brigantine,NJ,39.41617681,-74.37429109,RES1,3001,,17,NE,1986,1986,3102,2,1,1759.825095,1759.825095,3507,NO,31.22,45.8,1,2.41,6106,115.156662,124.675381,134.569613,140.419025,I,Above,Gable,0,5701,Wood,38.50979666,0,0,,,,1,1,,0.03,nav,1,1986,2,, 8833,NJBF000080796,809 W SHORE DR,Brigantine,NJ,39.41633879,-74.38231336,RES1,3001,,18,NE,2010,2010,3103,3,1,1582.018982,1582.018982,3505,NO,40.73,54.85,3,3.48,6106,114.992301,124.52139,134.396132,140.286602,I,Above,Hip,0,5701,Wood,47.78740836,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 8834,NJBF000076253,,Brigantine,NJ,39.39273872,-74.40595838,RES1,3001,,NaN,NE,1969,0,3102,2,1,1576.427093,1576.427093,3507,NO,28.09,39.26,1,0.83,6106,114.750647,124.317521,134.154763,140.218723,I,Above,Hip,0,5701,Wood,33.67908513,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8835,NJBF000077412,209 24TH STREET SO,Brigantine,NJ,39.39848075,-74.38065913,RES1,3001,,18,NE,2016,2016,3101,2,1,2133.604856,2133.604856,3507,NO,30.33,38.58,1,2.32,6106,115.21244,124.732286,134.62386,140.545213,I,Above,Hip,0,5701,Wood,34.45659499,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 8836,NJBF000074318,7 SCHOONER COVE,Brigantine,NJ,39.38588622,-74.40098592,RES1,3001,,43,NE,1977,1977,3102,2,2,1408.937996,1408.937996,3507,NO,24.31,34.05,1,2.59,6110,114.929504,124.480097,134.33119,140.390828,I,Above,Hip,0,5701,Wood,29.18298207,0,0,,,,1,1,,0.35,nav,1,1977,2,, 8837,NJBF000076915,,Brigantine,NJ,39.3953855,-74.378491,RES1,3001,,NaN,NE,1926,0,3102,2,1,1078.828312,1078.828312,3507,NO,23.82,31.6,1,0.1,6106,115.290351,124.804058,134.702396,140.619133,I,Above,Hip,0,5701,Wood,27.71140469,0,0,,,,1,1,,0.03,nav,1,1926,2,, 8838,NJBF000076309,,Brigantine,NJ,39.39292527,-74.39315512,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4260.937984,4260.937984,3507,NO,28.78,40.72,1,1.78,6106,115.015087,124.554215,134.419664,140.420506,I,Above,Gable,0,5701,Wood,34.74790223,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8839,NJBF000077785,345 14TH STREET SO,Brigantine,NJ,39.40086175,-74.37159934,RES1,3001,,15,NE,1954,1954,3102,1,1,1178.430635,1178.430635,3502,NO,28.57,43.24,5,9.71,6110,115.371764,124.879188,134.79129,140.657193,I,Above,Gable,0,5701,Wood,35.90862595,0,1.1,,,,1,1,,0.35,nav,1,1954,1,, 8840,NJBF000076570,2800 OCEAN AVE,Brigantine,NJ,39.39394458,-74.381287,RES1,3001,,18,NE,1958,1958,3102,2,1,3347.171738,3347.171738,3507,NO,34.44,44.18,1,2.02,6106,115.248737,124.766031,134.65842,140.593946,I,Above,Gable,0,5701,Wood,39.3075505,0,0,,,,1,1,,0.03,nav,1,1958,2,, 8841,NJBF000077514,2401 REVERE BLVD,Brigantine,NJ,39.39916417,-74.38187902,RES1,3001,,18,NE,2013,2013,3101,1,1,1396.900049,1396.900049,3507,NO,14.27,19.81,1,2.93,6106,115.1801,124.702488,134.590787,140.517104,I,Above,Hip,0,5701,Wood,17.04022022,0,0,,,,1,1,,0.03,nav,1,2013,1,, 8842,NJBF000075947,,Brigantine,NJ,39.39171732,-74.40968887,RES1,3001,,NaN,NE,1969,0,3103,5,1,2005.295991,2005.295991,3505,NO,58.67,65.48,3,1.57,6106,114.68354,124.258705,134.088479,140.172662,I,Above,Hip,0,5701,Wood,62.07817097,0,0,,,,1,1,,0.03,nav,1,1969,5,, 8843,NJBF000073524,5106 HARBOR BEACH BLVD,Brigantine,NJ,39.38134593,-74.40515168,RES1,3001,,16,NE,1977,1977,3101,2,1,1283.692595,1283.692595,3507,NO,25.31,31.09,1,-0.73,6106,114.893068,124.449382,134.293101,140.386569,I,Above,Gable,0,5701,Wood,28.20400246,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 8844,NJBF000076256,,Brigantine,NJ,39.39274468,-74.38900722,RES1,3001,,NaN,NE,1952,0,3102,2,1,1601.639028,1601.639028,3507,NO,30.04,36.71,1,2.53,6106,115.102857,124.633556,134.508539,140.488384,I,Above,Gable,0,5701,Wood,33.37574332,0,0,,,,1,1,,0.03,nav,1,1952,2,, 8845,NJBF000076057,21 BEACH COVE,Brigantine,NJ,39.39209227,-74.40164571,RES1,3001,,16,NE,1979,1979,3102,2,1,1770.202401,1770.202401,3507,YES,27.55,39.51,1,2.38,6106,114.847657,124.404373,134.251319,140.296638,I,Above,Hip,0,5701,Wood,33.53124852,0,0,,,,1,1,,0.03,nav,1,1979,2,, 8846,NJBF000078394,136 11TH STREET SO,Brigantine,NJ,39.40523655,-74.37281273,RES1,3001,,15,NE,1950,1950,3102,1,1,1140.329223,1140.329223,3505,NO,20.46,33.69,3,8.54,6106,115.300419,124.812687,134.719079,140.582476,I,Above,Hip,0,5701,Wood,27.07528319,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 8847,NJBF000076158,353 33RD STREET SO,Brigantine,NJ,39.39242787,-74.38502174,RES1,3001,,16,NE,1924,1924,3102,2,1,989.3912797,989.3912797,3507,NO,24.12,33.1,1,-0.78,6106,115.188523,124.711312,134.595644,140.555126,I,Above,Hip,0,5701,Wood,28.61111843,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 8848,NJBF000077933,330 12TH STREET SO,Brigantine,NJ,39.40175785,-74.37082784,RES1,3001,,16,NE,1948,1948,3102,2,1,2287.716221,2287.716221,3502,NO,35.51,47.2,5,-1.33,6106,115.377819,124.88484,134.798309,140.657934,I,Above,Gable,0,5701,Wood,41.35359622,0,0,,,,1,1,,0.03,nav,1,1948,2,, 8849,NJBF000077917,336 12TH STREET SO,Brigantine,NJ,39.40165895,-74.37069398,RES1,3001,,17,NE,1996,1996,3102,2,1,1601.344902,1601.344902,3502,NO,17.9,25.21,5,-3.63,6106,115.381603,124.888355,134.802214,140.661289,I,Above,Hip,0,5701,Wood,21.55284848,0,0,,,,1,1,,0.03,nav,1,1996,2,, 8850,NJBF000078222,216 12TH STREET SO,Brigantine,NJ,39.40379384,-74.37266783,RES1,3001,,16,NE,1951,1951,3102,1,1,1796.148561,1796.148561,3505,NO,13.62,22.08,3,0.18,6106,115.318681,124.829807,134.737501,140.603138,I,Above,Hip,0,5701,Wood,17.8539711,0,0,,,,1,1,,0.03,nav,1,1951,1,, 8851,NJBF000076691,4209 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3943926,-74.40323851,RES1,3001,,15,NE,1948,1948,3102,1,1,883.6050722,883.6050722,3507,NO,16.76,29.39,1,2.78,6106,114.789644,124.351173,134.193452,140.239897,I,Above,Gable,0,5701,Wood,23.07516061,0,0,,,,1,1,,0.03,nav,1,1948,1,, 8852,NJBF000077139,215 27TH STREET SO,Brigantine,NJ,39.39681189,-74.38260662,RES1,3001,,17,NE,1985,1985,3102,2,1,1472.280182,1472.280182,3507,NO,24.8,32.11,1,1.02,6106,115.190487,124.712453,134.600314,140.536118,I,Above,Gable,0,5701,Wood,28.45448997,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8853,NJBF000075178,110 45TH STREET SO,Brigantine,NJ,39.38896112,-74.39582548,RES1,3001,,15,NE,1968,1968,3102,2,1,1179.91216,1179.91216,3507,NO,33.92,43.45,1,1.8,6106,115.003052,124.544711,134.405942,140.43101,I,Above,Gable,0,5701,Wood,38.68768157,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8854,NJBF000077790,350 13TH STREET SO,Brigantine,NJ,39.40087076,-74.37114428,RES1,3001,,17,NE,1945,1945,3102,2,1,2646.3006,2646.3006,3502,NO,24.49,34.6,5,1.67,6106,115.380918,124.887689,134.800902,140.664211,I,Above,Hip,0,5701,Wood,29.54434485,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 8855,NJBF000075448,322 39TH STREET SO,Brigantine,NJ,39.38990535,-74.38984763,RES1,3001,,16,NE,1940,1940,3102,1,1,1523.169009,1523.169009,3507,NO,15.23,20.28,1,1.02,6106,115.116612,124.646583,134.52089,140.51247,I,Above,Gable,0,5701,Wood,17.75444959,0,0,,,,1,1,,0.03,nav,1,1940,1,, 8856,NJBF000076163,3112 OCEAN AVE,Brigantine,NJ,39.3924527,-74.38365478,RES1,3001,,20,NE,2009,2009,3102,3,1,2082.73229,2082.73229,3507,NO,59.95,70.51,1,1.72,6106,115.216392,124.736654,134.62416,140.576202,I,Above,Flat,0,5701,Wood,65.23081987,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 8857,NJBF000075293,339 40TH STREET SO,Brigantine,NJ,39.38938238,-74.38970793,RES1,3001,,16,NE,1941,1941,3102,2,1,1262.45359,1262.45359,3507,NO,36.27,51.27,1,2.57,6106,115.125277,124.654491,134.52933,140.521529,I,Above,Hip,0,5701,Wood,43.76936823,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 8858,NJBF000074146,503 LAGOON BLVD,Brigantine,NJ,39.3850771,-74.40496417,RES3B,3001,,37,ME,1985,1985,3301,2,1,3728.197828,3728.197828,3507,NO,36.89,43.51,1,-0.3,6106,114.855255,124.414569,134.257387,140.338971,I,Above,Gable,0,5701,Wood,40.19752443,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8859,NJBF000075030,113 45TH STREET SO,Brigantine,NJ,39.38849353,-74.39573824,RES1,3001,,16,NE,1968,1968,3102,1,1,1573.323194,1573.323194,3507,NO,16.23,21.43,1,0.88,6106,115.010008,124.551084,134.412701,140.438596,I,Above,Gable,0,5701,Wood,18.83117506,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8860,NJBF000078141,333 9TH STREET SO,Brigantine,NJ,39.40320482,-74.36805629,RES1,3001,,17,NE,2004,2004,3102,2,1,1540.068056,1540.068056,3502,NO,28.66,42.41,5,0.64,6110,115.418576,124.92289,134.842335,140.683145,I,Above,Gable,0,5701,Wood,35.5375135,0,0,,,,1,1,,0.35,nav,1,2004,2,, 8861,NJBF000074220,21 DELMAR LANE,Brigantine,NJ,39.38542571,-74.40534891,RES3B,3001,,37,ME,1985,1985,3301,2,1,4600.829062,4600.829062,3507,NO,35.27,44.36,1,-0.05,6106,114.843312,124.40385,134.24571,140.328142,I,Above,Gable,0,5701,Wood,39.81580582,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8862,NJBF000076051,325 35TH STREET SO,Brigantine,NJ,39.39206517,-74.38704936,RES1,3001,,43,NE,1963,1963,3102,2,2,928.2100078,928.2100078,3507,NO,37.8,46.99,1,-0.52,6106,115.150712,124.677046,134.556844,140.528075,I,Above,Gable,0,5701,Wood,42.39127207,0,0,,,,1,1,,0.03,nav,1,1963,2,, 8863,NJBF000075378,11 EXPLORER RD,Brigantine,NJ,39.38969209,-74.40064322,RES1,3001,,16,NE,1968,1968,3102,1,1,1677.881246,1677.881246,3507,NO,17.33,28.02,1,1.67,6106,114.894706,124.447569,134.297838,140.345016,I,Above,Gable,0,5701,Wood,22.67737116,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8864,NJBF000076013,,Brigantine,NJ,39.391951,-74.39010467,RES1,3001,,NaN,NE,1969,0,3102,2,1,2162.510108,2162.510108,3507,NO,26.82,38.15,1,1.25,6106,115.088837,124.621067,134.493901,140.481533,I,Above,Gable,0,5701,Wood,32.48834197,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8865,NJBF000075677,6 BEACH COVE,Brigantine,NJ,39.39068432,-74.40216699,RES1,3001,,19,NE,2005,2005,3102,3,1,2151.692436,2151.692436,3507,NO,45.62,57.11,1,2.55,6106,114.852082,124.409076,134.255558,140.307377,I,Above,Hip,0,5701,Wood,51.36459718,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 8866,NJBF000078072,342 9TH STREET SO,Brigantine,NJ,39.40274141,-74.36832508,RES1,3001,,16,NE,1954,1954,3102,1,1,2321.695872,2321.695872,3502,NO,24.97,32.43,5,10.59,6110,115.418088,124.9224,134.841462,140.684771,I,Above,Gable,0,5701,Wood,28.69971115,0,0,,,,1,1,,0.35,nav,1,1954,1,, 8867,NJBF000074435,4 SCHOONER COVE,Brigantine,NJ,39.38641675,-74.40078138,RES1,3001,,43,NE,1977,1977,3102,2,2,1406.410908,1406.410908,3507,NO,22.84,29.48,1,-0.83,6110,114.927895,124.478475,134.32981,140.386919,I,Above,Gable,0,5701,Wood,26.15731073,0,0,,,,1,1,,0.35,nav,1,1977,2,, 8868,NJBF000078052,312 11TH STREET SO,Brigantine,NJ,39.40258799,-74.37042217,RES1,3001,,16,NE,1955,1955,3102,2,1,1123.494791,1123.494791,3502,NO,30.9,37.87,5,-4.21,6106,115.377178,124.884264,134.798232,140.653802,I,Above,Gable,0,5701,Wood,34.38664631,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8869,NJBF000075633,97 LAGOON BLVD,Brigantine,NJ,39.39056484,-74.40007301,RES1,3001,,17,NE,1988,1988,3102,2,1,2008.109593,2008.109593,3507,NO,24.7,29.82,1,2.06,6106,114.897048,124.449258,134.300383,140.34231,I,Above,Gable,0,5701,Wood,27.26054449,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 8870,NJBF000075459,311 SEASHELL LANE,Brigantine,NJ,39.38993743,-74.40368014,RES3B,3001,,35,ME,1984,1984,3301,2,1,3832.882773,3832.882773,3507,YES,23.97,31.07,1,-0.42,6106,114.828626,124.388588,134.232127,140.293384,I,Above,Gable,0,5701,Wood,27.51725762,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 8871,NJBF000075050,4504 PRIVATEER RD,Brigantine,NJ,39.38855363,-74.39816859,RES1,3001,,17,NE,1968,1968,3102,2,1,1419.755767,1419.755767,3507,YES,35.67,45.68,1,2.45,6106,114.95876,124.505218,134.36142,140.399469,I,Above,Hip,0,5701,Wood,40.67621856,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8872,NJBF000075017,,Brigantine,NJ,39.388449,-74.3934445,RES1,3001,,NaN,NE,1969,0,3102,2,1,3071.515571,3071.515571,3507,NO,34.9,48.1,1,-0.76,6106,115.058138,124.594258,134.46102,140.475237,I,Above,Flat,0,5701,Wood,41.50356185,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8873,NJBF000078164,,Brigantine,NJ,39.40336393,-74.37576624,RES1,3001,,NaN,NE,1969,0,3102,2,1,2591.780605,2591.780605,3507,NO,30.32,38.97,1,1.95,6106,115.2602,124.77557,134.67599,140.559671,I,Above,Hip,0,5701,Wood,34.64626371,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8874,NJBF000077044,,Brigantine,NJ,39.3960692,-74.37728587,RES1,3001,,NaN,NE,1969,0,3102,2,1,2088.900198,2088.900198,3507,NO,27.68,34.76,1,0.1,6106,115.307581,124.819865,134.720749,140.629221,I,Above,Hip,0,5701,Wood,31.2222148,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8875,NJBF000080340,108 12TH STREET NO,Brigantine,NJ,39.41476646,-74.35789162,RES1,3001,,47,NE,1986,1986,3102,2,2,1642.920517,1642.920517,3507,NO,27.44,41,1,2.98,6106,115.50143,125.002121,134.938759,140.699007,I,Above,Hip,0,5701,Wood,34.22144567,0,0,,,,1,1,,0.03,nav,1,1986,2,, 8876,NJBF000078180,325 9TH STREET SO,Brigantine,NJ,39.4034515,-74.3681295,RES1,3001,,16,NE,1954,1954,3102,2,1,751.454594,751.454594,3502,NO,19.97,28.9,5,-3.65,6106,115.414457,124.91906,134.838169,140.67889,I,Above,Gable,0,5701,Wood,24.43481374,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8877,NJBF000078165,325 9TH STREET SO,Brigantine,NJ,39.40337179,-74.36824295,RES1,3001,,16,NE,1954,1954,3102,2,1,989.9566718,989.9566718,3502,NO,16.16,28.21,5,-4.91,6106,115.413001,124.917696,134.836572,140.678109,I,Above,Gable,0,5701,Wood,22.18630661,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8878,NJBF000073103,5214 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37764389,-74.4060853,RES1,3001,,20,NE,2007,2007,3101,3,1,2510.661497,2510.661497,3507,NO,44.19,54.42,1,1.21,6106,114.9155,124.470177,134.312984,140.422032,I,Above,Flat,0,5701,Wood,49.305239,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 8879,NJBF000080581,1310 DUNCAN PLACE,Brigantine,NJ,39.41552868,-74.37397058,RES1,3001,,18,NE,2000,2000,3102,2,1,1750.841923,1750.841923,3507,NO,37.29,49.33,1,0.04,6106,115.169766,124.687953,134.58354,140.432496,I,Above,Gable,0,5701,Wood,43.31098269,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 8880,NJBF000075106,105 45TH STREET SO,Brigantine,NJ,39.38872287,-74.39663932,RES1,3001,,15,NE,1968,1968,3102,1,1,1867.032621,1867.032621,3507,NO,14.86,21.65,1,2.31,6106,114.988746,124.531975,134.391494,140.421351,I,Above,Gable,0,5701,Wood,18.25111211,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 8881,NJBF000076807,,Brigantine,NJ,39.39487822,-74.39807473,RES3A,3001,,NaN,NE,1969,0,3301,1,1,4138.871915,4138.871915,3507,NO,18.54,30.68,1,1.04,6106,114.891906,124.442493,134.295912,140.316148,I,Above,Hip,0,5701,Wood,24.60828353,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8882,NJBF000075561,103 SHIPMASTER DRIVE,Brigantine,NJ,39.39031312,-74.40291496,RES1,3001,,18,NE,1988,1988,3102,2,1,2022.16228,2022.16228,3507,NO,25.01,35.5,1,2.62,6106,114.840508,124.398961,134.243986,140.30048,I,Above,Hip,0,5701,Wood,30.25259003,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 8883,NJBF000074769,126 HUDSON DR,Brigantine,NJ,39.38772352,-74.39539911,RES1,3001,,16,NE,1968,1968,3102,2,1,1030.88566,1030.88566,3507,NO,26.41,38,1,0.34,6110,115.025565,124.565233,134.427913,140.454165,I,Above,Gable,0,5701,Wood,32.20552189,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8884,NJBF000076208,3406 W BRIGANTINE AVE,Brigantine,NJ,39.3925935,-74.38716,RES1,3001,,43,NE,1956,1956,3102,2,2,1112.534067,1112.534067,3507,NO,39.24,49.46,1,0.32,6106,115.142645,124.669638,134.548942,140.51943,I,Above,Flat,0,5701,Wood,44.35012589,0,0,,,,1,1,,0.03,nav,1,1956,2,, 8885,NJBF000077173,2704 REVERE BLVD,Brigantine,NJ,39.39703268,-74.38412724,RES1,3001,,17,NE,1960,1960,3102,2,1,2029.794157,2029.794157,3507,YES,38.73,50.35,1,0.89,6106,115.156881,124.681697,134.565869,140.50927,I,Above,Gable,0,5701,Wood,44.53855307,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 8886,NJBF000077536,112 24TH STREET SO,Brigantine,NJ,39.39930556,-74.38210786,RES1,3001,,16,NE,1967,1967,3101,1,1,2073.727712,2073.727712,3507,NO,16.75,23.42,1,-0.83,6106,115.173882,124.696755,134.584431,140.51164,I,Above,Gable,0,5701,Wood,20.08447741,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 8887,NJBF000077681,104 23RD STREET SO,Brigantine,NJ,39.40028998,-74.3817918,RES1,3001,,16,NE,1966,1966,3101,2,1,1473.129577,1473.129577,3507,NO,38.25,45.08,1,2.72,6106,115.169828,124.692808,134.580663,140.503878,I,Above,Gable,0,5701,Wood,41.66142965,0,0,,,,1,1,,0.03,nav,1,1966,2,, 8888,NJBF000077455,312 19TH STREET SO,Brigantine,NJ,39.39874215,-74.37589154,RES1,3001,,16,NE,1923,1923,3102,1,1,2105.178783,2105.178783,3507,YES,18.98,24.34,1,2.56,6106,115.307118,124.819374,134.722221,140.61685,I,Above,Hip,0,5701,Wood,21.66216799,0,1.2,,,,1,1,,0.03,nav,1,1923,1,, 8889,NJBF000080700,2 COLLETTE CIRCLE,Brigantine,NJ,39.41596657,-74.37598152,RES1,3001,,17,NE,1997,1997,3103,2,1,2333.353962,2333.353962,3505,NO,26.43,33.42,3,2.44,6106,115.12457,124.645331,134.535628,140.394362,I,Above,Gable,0,5701,Wood,29.92230262,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 8890,NJBF000075856,271-273 38TH STREET SO,Brigantine,NJ,39.391377,-74.389962,RES1,3001,,43,NE,1947,1947,3102,1,2,1465.092423,1465.092423,3507,NO,17.96,26.56,1,1.01,6106,115.098078,124.629551,134.502968,140.491334,I,Above,Flat,0,5701,Wood,22.26114649,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8891,NJBF000075710,343 37TH STREET SO,Brigantine,NJ,39.39082484,-74.38779113,RES1,3001,,43,NE,1984,1984,3102,2,2,1022.294267,1022.294267,3507,NO,38.58,53.38,1,-0.31,6110,115.149005,124.675699,134.554327,140.532651,I,Above,Hip,0,5701,Wood,45.97716949,0,0,,,,1,1,,0.35,nav,1,1984,2,, 8892,NJBF000076360,3407 W BRIGANTINE AVE,Brigantine,NJ,39.3931263,-74.3877901,RES1,3001,,45,NE,1952,1952,3102,1,3,2034.852467,2034.852467,3507,NO,17.31,25.36,1,0.33,6106,115.123826,124.652467,134.530072,140.502548,I,Above,Hip,0,5701,Wood,21.33730809,0,0,,,,1,1,,0.03,nav,1,1952,1,, 8893,NJBF000075329,,Brigantine,NJ,39.38951584,-74.39504256,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2773.683985,2773.683985,3507,NO,40.59,50.09,1,2.25,6106,115.013194,124.553633,134.416376,140.435951,I,Above,Gable,0,5701,Wood,45.33803254,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8894,NJBF000074852,331 43RD STREET SO,Brigantine,NJ,39.387979,-74.391625,RES1,3001,,18,NE,2003,2003,3102,3,1,1798.036935,1798.036935,3507,NO,37.31,51.88,1,2.17,6110,115.101093,124.63295,134.503994,140.509966,I,Above,Hip,0,5701,Wood,44.59385477,0,1.1,,,,1,1,,0.35,nav,1,2003,3,, 8895,NJBF000076173,202 38TH STREET SO,Brigantine,NJ,39.39247896,-74.39218184,RES1,3001,,15,NE,1949,1949,3102,1,1,1466.196763,1466.196763,3507,NO,14.57,21.98,1,-0.57,6106,115.040094,124.576914,134.444778,140.441805,I,Above,Hip,0,5701,Wood,18.27480093,0,0,,,,1,1,,0.03,nav,1,1949,1,, 8896,NJBF000077988,341 11TH STREET SO,Brigantine,NJ,39.40214571,-74.36943172,RES1,3001,,16,NE,1928,1928,3102,2,1,904.4517902,904.4517902,3502,NO,32.42,45.13,5,9.59,6110,115.402007,124.907368,134.824049,140.674922,I,Above,Hip,0,5701,Wood,38.77812153,0,0,,,,1,1,,0.35,nav,1,1928,2,, 8897,NJBF000075867,333 36TH STREET SO,Brigantine,NJ,39.39143002,-74.38754193,RES1,3001,,15,NE,1946,1946,3102,1,1,1479.895007,1479.895007,3507,NO,17.36,23.99,1,-0.4,6106,115.1475,124.67424,134.553182,140.528642,I,Above,Hip,0,5701,Wood,20.67256581,0,0,,,,1,1,,0.03,nav,1,1946,1,, 8898,NJBF000080740,107 MARSDEN PLACE,Brigantine,NJ,39.41612821,-74.38137945,RES1,3001,,16,NE,1967,1967,3103,1,1,2616.762341,2616.762341,3505,NO,10.4,20.03,3,-1.83,6106,115.013424,124.541233,134.418388,140.304591,I,Above,Gable,0,5701,Wood,15.21656206,0,0,,,,1,1,,0.03,nav,1,1967,1,, 8899,NJBF000075388,3 EXPLORER RD,Brigantine,NJ,39.38970359,-74.39978856,RES1,3001,,16,NE,1968,1968,3102,2,1,1194.468224,1194.468224,3507,NO,37.9,43.76,1,1.93,6106,114.912379,124.463336,134.315474,140.358405,I,Above,Gable,0,5701,Wood,40.82961515,0,0,,,,1,1,,0.03,nav,1,1968,2,, 8900,NJBF000076059,,Brigantine,NJ,39.3920948,-74.3908753,RES1,3001,,NaN,NE,1955,0,3102,2,1,1991.240455,1991.240455,3507,NO,25.4,35.1,1,0.65,6106,115.071336,124.605222,134.476235,140.467504,I,Above,Gable,0,5701,Wood,30.24874183,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8901,NJBF000076192,252 36TH STREET SO,Brigantine,NJ,39.39254999,-74.38946713,RES1,3001,,15,NE,1948,1948,3102,1,1,1151.03489,1151.03489,3507,NO,12.85,24.81,1,1.09,6106,115.095481,124.626928,134.500947,140.483701,I,Above,Hip,0,5701,Wood,18.83082278,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 8902,NJBF000075194,342 40TH STREET SO,Brigantine,NJ,39.38903068,-74.38991277,RES1,3001,,15,NE,1950,1950,3102,1,1,1052.230889,1052.230889,3507,NO,16.12,21.33,1,-0.12,6110,115.124912,124.654219,134.528732,140.522927,I,Above,Hip,0,5701,Wood,18.72361281,0,0,,,,1,1,,0.35,nav,1,1950,1,, 8903,NJBF000078108,20 17TH STREET SO,Brigantine,NJ,39.40299388,-74.37748775,RES1,3001,,16,NE,1955,1955,3102,2,1,2110.712905,2110.712905,3507,NO,21.87,29.96,1,0.08,6106,115.229019,124.746771,134.643264,140.537152,I,Above,Gable,0,5701,Wood,25.91778623,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 8904,NJBF000075129,,Brigantine,NJ,39.38878686,-74.3921672,RES1,3001,,NaN,NE,1969,0,3102,2,1,1575.953613,1575.953613,3507,NO,37.69,50.34,1,1.8,6110,115.080915,124.614649,134.484152,140.490824,I,Above,Gable,0,5701,Wood,44.01497665,0,0,,,,1,1,,0.35,nav,1,1969,2,, 8905,NJBF000076080,261 37TH STREET SO,Brigantine,NJ,39.39217789,-74.38972416,RES1,3001,,15,NE,1955,1955,3102,1,1,1657.087579,1657.087579,3507,NO,16.73,31.56,1,0.99,6106,115.094233,124.625889,134.499491,140.484545,I,Above,Hip,0,5701,Wood,24.14368664,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 8906,NJBF000076403,,Brigantine,NJ,39.3932799,-74.40426967,RES1,3001,,NaN,NE,1969,0,3102,2,1,2905.027821,2905.027821,3507,NO,37.89,45.77,1,2.87,6106,114.780088,124.343375,134.183994,140.238474,I,Above,Hip,0,5701,Wood,41.82763805,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8907,NJBF000076717,401 27TH STREET SO,Brigantine,NJ,39.39451612,-74.37994784,RES1,3001,,21,NE,2008,2008,3102,3,1,2462.461224,2462.461224,3507,NO,50.45,56.63,1,2.1,6106,115.269977,124.785421,134.68071,140.607531,I,Above,Hip,0,5701,Wood,53.53895694,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 8908,NJBF000075352,113 44TH STREET SO,Brigantine,NJ,39.38959094,-74.39600187,RES1,3001,,18,NE,2006,2006,3102,2,1,2702.978774,2702.978774,3507,NO,24.79,31.98,1,2.63,6106,114.992443,124.535001,134.395571,140.419828,I,Above,Hip,0,5701,Wood,28.38725866,0,0,,,,1,1,,0.03,nav,1,2006,2,, 8909,NJBF000073851,9 ROSS DRIVE EAST,Brigantine,NJ,39.38357319,-74.40043935,RES3C,3001,,37,ME,1978,1978,3301,3,1,8610.198897,8610.198897,3507,YES,56.81,63.72,1,2.19,6106,114.966736,124.513903,134.367014,140.430474,I,Above,Gable,0,5701,Wood,60.26407737,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 8910,NJBF000077465,317 19TH STREET SO,Brigantine,NJ,39.39881108,-74.37530208,RES1,3001,,17,NE,1950,1950,3102,2,1,2485.828276,2485.828276,3507,YES,28.5,37.36,1,1.74,6106,115.318415,124.829798,134.734033,140.625224,I,Above,Flat,0,5701,Wood,32.93028371,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 8911,NJBF000075374,347 ARBEGAST DRIVE,Brigantine,NJ,39.38967512,-74.4050616,RES3B,3001,,35,ME,1984,1984,3301,2,1,4134.729751,4134.729751,3507,YES,39.03,50.45,1,2.98,6106,114.802588,124.365594,134.206265,140.274898,I,Above,Gable,0,5701,Wood,44.74128123,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8912,NJBF000076110,264 36TH STREET SO,Brigantine,NJ,39.39225289,-74.38910253,RES1,3001,,43,NE,1955,1955,3102,1,2,963.8205219,963.8205219,3507,NO,12.87,24.86,1,-0.81,6106,115.106247,124.636738,134.511727,140.493335,I,Above,Hip,0,5701,Wood,18.8662237,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 8913,NJBF000075845,246 39TH STREET SO,Brigantine,NJ,39.39134779,-74.39188441,RES1,3001,,17,NE,2010,2010,3102,1,1,1707.533322,1707.533322,3507,NO,13.44,27.67,1,2.65,6106,115.058618,124.59395,134.463008,140.46146,I,Above,Gable,0,5701,Wood,20.55627458,0,1.2,,,,1,1,,0.03,nav,1,2010,1,, 8914,NJBF000076262,4413 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39277219,-74.4073852,RES1,3001,,19,NE,2008,2008,3103,3,1,1981.897992,1981.897992,3505,NO,58.04,68.02,3,3.7,6106,114.720447,124.290656,134.124808,140.195297,I,Above,Hip,0,5701,Wood,63.02831877,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 8915,NJBF000079984,21 CUMMINGS PLACE,Brigantine,NJ,39.41357072,-74.37240971,RES1,3001,,16,NE,1978,1978,3102,3,1,1451.29346,1451.29346,3507,NO,53.02,62.81,1,1.15,6106,115.221484,124.737204,134.6383,140.482653,I,Above,Gable,0,5701,Wood,57.91059789,0,1.2,,,,1,1,,0.03,nav,1,1978,3,, 8916,NJBF000080580,704 LAFAYETTE BLVD,Brigantine,NJ,39.41552528,-74.37937727,RES1,3001,,16,NE,1971,1971,3103,2,1,1466.337612,1466.337612,3505,YES,29.47,43.09,3,-1.18,6106,115.060219,124.585291,134.467772,140.345005,I,Above,Gable,0,5701,Wood,36.27999526,0,0,,,,1,1,,0.03,nav,1,1971,2,, 8917,NJBF000081213,903 E SHORE DR,Brigantine,NJ,39.4180803,-74.36227208,RES1,3001,,16,NE,1957,1957,3102,1,1,1882.780186,1882.780186,3507,NO,16.47,30.02,1,0.99,6106,115.379324,124.885704,134.808148,140.588189,I,Above,Hip,0,5701,Wood,23.2474614,0,0,,,,1,1,,0.03,nav,1,1957,1,, 8918,NJBF000081176,1 11TH STREET NO,Brigantine,NJ,39.41788951,-74.36215308,RES1,3001,,17,NE,1986,1986,3102,1,1,1516.865424,1516.865424,3507,NO,14.45,24.75,1,0.45,6106,115.383666,124.889859,134.812783,140.592463,I,Above,Hip,0,5701,Wood,19.60100292,0,0,,,,1,1,,0.03,nav,1,1986,1,, 8919,NJBF000077312,314 21ST STREET SO,Brigantine,NJ,39.39783914,-74.37732879,RES1,3001,,16,NE,1930,1930,3102,1,1,2206.124232,2206.124232,3507,NO,17.76,24.53,1,0.03,6106,115.287513,124.801352,134.701225,140.605863,I,Above,Hip,0,5701,Wood,21.14572437,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 8920,NJBF000074357,,Brigantine,NJ,39.38605477,-74.39371852,RES1,3001,,NaN,NE,1969,0,3102,2,1,2228.979813,2228.979813,3507,NO,36.46,51.46,1,0.34,6106,115.079021,124.61348,134.480533,140.502601,I,Above,Flat,0,5701,Wood,43.95750034,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8921,NJBF000075816,3706 W BRIGANTINE AVE,Brigantine,NJ,39.39124445,-74.38923446,RES1,3001,,43,NE,1958,1958,3102,2,2,1268.806539,1268.806539,3507,NO,37.33,49.45,1,1.15,6106,115.114589,124.644498,134.519637,140.504523,I,Above,Flat,0,5701,Wood,43.3908037,0,0,,,,1,1,,0.03,nav,1,1958,2,, 8922,NJBF000074812,45 SAILFISH DRIVE,Brigantine,NJ,39.3878662,-74.40192862,RES3B,3001,,35,ME,1987,1987,3301,3,1,3683.742395,3683.742395,3507,NO,38.46,44.67,1,2.19,6110,114.88791,124.442328,134.290579,140.349251,I,Above,Gable,0,5701,Wood,41.56467804,0,0,,,,1,1,,0.35,nav,1,1987,3,, 8923,NJBF000074241,509 CASA DRIVE,Brigantine,NJ,39.38552512,-74.40333793,RES3B,3001,,33,ME,1980,1980,3301,2,1,7417.025987,7417.025987,3507,YES,33.97,45.14,1,0.63,6106,114.884333,124.440134,134.286272,140.358594,I,Above,Gable,0,5701,Wood,39.55334712,0,0,,,,1,1,,0.03,nav,1,1980,2,, 8924,NJBF000076770,,Brigantine,NJ,39.39472567,-74.40161441,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2860.966669,2860.966669,3507,NO,21.7,26.88,1,-0.73,6106,114.819934,124.378042,134.223706,140.261489,I,Above,Flat,0,5701,Wood,24.28865171,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8925,NJBF000076319,,Brigantine,NJ,39.3929583,-74.3869249,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2046.338955,2046.338955,3507,NO,40.41,52.44,1,2.9,6106,115.143504,124.670349,134.550029,140.518351,I,Above,Flat,0,NaN,Wood,46.42129033,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8926,NJBF000078143,320 9TH STREET SO,Brigantine,NJ,39.40322013,-74.36876767,RES1,3001,,16,NE,1954,1954,3102,1,1,1599.915633,1599.915633,3502,NO,15.77,21.86,5,-1.22,6110,115.403982,124.909269,134.826937,140.671786,I,Above,Hip,0,5701,Wood,18.81142668,0,0,,,,1,1,,0.35,nav,1,1954,1,, 8927,NJBF000075967,4500 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39178997,-74.40809977,RES1,3001,,18,NE,1997,1997,3103,2,1,1909.528105,1909.528105,3505,YES,33.47,40.01,3,3.02,6106,114.716052,124.287458,134.120582,140.197263,I,Above,Hip,0,5701,Wood,36.74004005,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 8928,NJBF000077538,,Brigantine,NJ,39.3993175,-74.38473367,COM8,3001,,NaN,ME,1969,0,3401,3,1,1294.648868,1294.648868,3507,NO,46.51,54.38,1,1.26,6106,115.119866,124.647282,134.528766,140.469871,I,Above,Flat,0,NaN,Wood,50.44543179,0,0,,,,1,1,,0.03,nav,1,1969,3,, 8929,NJBF000077529,100 25TH STREET SO,Brigantine,NJ,39.39926835,-74.38358529,RES1,3001,,16,NE,1977,1977,3102,1,1,1624.741036,1624.741036,3507,NO,18.65,28.04,1,2.73,6106,115.143992,124.669374,134.553586,140.488746,I,Above,Gable,0,5701,Wood,23.34105182,0,0,,,,1,1,,0.03,nav,1,1977,1,, 8930,NJBF000080543,,Brigantine,NJ,39.41537616,-74.37859908,RES1,3001,,NaN,NE,1969,0,3103,6,1,2509.982755,2509.982755,3505,NO,96.02,106.65,3,4.74,6106,115.077531,124.601556,134.48604,140.359567,I,Above,Hip,0,5701,Wood,101.3320788,0,0,,,,1,1,,0.03,nav,1,1969,6,, 8931,NJBF000075826,,Brigantine,NJ,39.39128188,-74.40917918,RES1,3001,,NaN,NE,1969,0,3103,4,1,2558.298657,2558.298657,3505,NO,42.99,57.04,3,-1.22,6106,114.698925,124.272645,134.103724,140.186876,I,Above,Gable,0,5701,Wood,50.01813564,0,0,,,,1,1,,0.03,nav,1,1969,4,, 8932,NJBF000075260,346 SEASHELL LANE,Brigantine,NJ,39.38926951,-74.4048363,RES3B,3001,,35,ME,1984,1984,3301,2,1,3682.019017,3682.019017,3507,YES,32.75,47.05,1,2.08,6106,114.811737,124.373944,134.215287,140.284018,I,Above,Gable,0,5701,Wood,39.90055654,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8933,NJBF000076665,218 33RD STREET SO,Brigantine,NJ,39.3942625,-74.3877865,COM1,3001,,NaN,ME,1969,0,3401,2,1,2766.409519,2766.409519,3507,NO,36.14,41.67,1,1.63,6106,115.111512,124.641035,134.518104,140.487695,I,Above,Flat,0,NaN,Wood,38.90614407,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8934,NJBF000077211,315 23RD STREET SO,Brigantine,NJ,39.39727411,-74.37839801,RES1,3001,,16,NE,1954,1954,3102,3,1,1935.570681,1935.570681,3507,NO,52.45,60.63,1,-0.81,6106,115.271759,124.7869,134.684509,140.59634,I,Above,Hip,0,5701,Wood,56.54317618,0,1.2,,,,1,1,,0.03,nav,1,1954,3,, 8935,NJBF000077604,313 17TH STREET SO,Brigantine,NJ,39.39978128,-74.37393555,RES1,3001,,16,NE,1948,1948,3102,2,1,1350.679774,1350.679774,3505,YES,23.99,29.35,3,1.95,6106,115.335816,124.845863,134.752874,140.63428,I,Above,Gable,0,5701,Wood,26.66548375,0,0,,,,1,1,,0.03,nav,1,1948,2,, 8936,NJBF000077301,,Brigantine,NJ,39.39775841,-74.37431084,RES1,3001,,NaN,NE,1969,0,3102,2,1,2656.398553,2656.398553,3505,NO,37.21,45.33,3,-0.14,6106,115.350018,124.858968,134.766165,140.654171,I,Above,Hip,0,5701,Wood,41.27237058,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8937,NJBF000074725,40 LIGHTHOUSE DR,Brigantine,NJ,39.38756936,-74.40155865,RES1,3001,,43,NE,1981,1981,3102,2,2,1474.324375,1474.324375,3507,NO,31.13,37.44,1,0.09,6106,114.898911,124.452241,134.30142,140.359116,I,Above,Hip,0,5701,Wood,34.28513861,0,0,,,,1,1,,0.03,nav,1,1981,2,, 8938,NJBF000074017,525 LAGOON BLVD,Brigantine,NJ,39.38447459,-74.40573627,RES3B,3001,,37,ME,1985,1985,3301,2,1,5327.425607,5327.425607,3507,NO,31.71,44.69,1,-0.17,6106,114.845765,124.406437,134.247835,140.334944,I,Above,Gable,0,5701,Wood,38.20287863,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8939,NJBF000073946,537 LAGOON BLVD,Brigantine,NJ,39.38415763,-74.40613856,RES3B,3001,,37,ME,1985,1985,3301,2,1,6686.151249,6686.151249,3507,NO,31.34,36.41,1,0.36,6106,114.840841,124.402225,134.242883,140.332884,I,Above,Gable,0,5701,Wood,33.87560639,0,0,,,,1,1,,0.03,nav,1,1985,2,, 8940,NJBF000076850,,Brigantine,NJ,39.39504948,-74.39048187,COM8,3001,,NaN,ME,1969,0,3401,3,1,3272.283241,3272.283241,3507,NO,52.13,61.24,1,-0.05,6106,115.04736,124.582645,134.453125,140.434744,I,Above,Hip,0,NaN,Wood,56.68574274,0,0,,,,1,1,,0.03,nav,1,1969,3,, 8941,NJBF000077947,337 12TH STREET SO,Brigantine,NJ,39.40185306,-74.37022305,RES1,3001,,16,NE,1954,1954,3102,2,1,1273.610259,1273.610259,3502,NO,24.74,32.85,5,0.38,6106,115.389089,124.895327,134.81023,140.666222,I,Above,Gable,0,5701,Wood,28.79458427,0,0,,,,1,1,,0.03,nav,1,1954,2,, 8942,NJBF000077929,343 12TH STREET SO,Brigantine,NJ,39.40171449,-74.37015102,RES1,3001,,20,NE,2008,2008,3102,3,1,1401.221309,1401.221309,3502,NO,65.8,78.94,5,9.55,6106,115.392042,124.898068,134.813232,140.669108,I,Above,Hip,0,5701,Wood,72.36828923,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 8943,NJBF000077930,2105 BAYSHORE AVE,Brigantine,NJ,39.4017192,-74.38062181,RES1,3001,,16,NE,1952,1952,3102,2,1,1522.293368,1522.293368,3507,YES,36.41,47.11,1,1.99,6106,115.178543,124.700477,134.590255,140.503911,I,Above,Flat,0,5701,Wood,41.76246722,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 8944,NJBF000075348,310 SEASHELL LANE,Brigantine,NJ,39.38958277,-74.40346284,RES3B,3001,,35,ME,1984,1984,3301,2,1,4128.06306,4128.06306,3507,YES,29.72,37.14,1,1.23,6106,114.837026,124.396247,134.240418,140.301647,I,Above,Gable,0,5701,Wood,33.42884369,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 8945,NJBF000077827,,Brigantine,NJ,39.40107219,-74.38246043,RES1,3001,,NaN,NE,1962,0,3101,1,1,2796.755606,2796.755606,3507,NO,16.73,24.74,1,2.96,6106,115.147797,124.672378,134.558184,140.483128,I,Above,Gable,0,5701,Wood,20.73617907,0,0,,,,1,1,,0.03,nav,1,1962,1,, 8946,NJBF000074534,4516 HARBOR BEACH BLVD,Brigantine,NJ,39.38687525,-74.39733403,RES1,3001,,16,NE,1966,1966,3102,1,1,2620.824951,2620.824951,3507,NO,14.92,20.74,1,-0.99,6106,114.994705,124.537872,134.396591,140.435058,I,Above,Hip,0,5701,Wood,17.82991783,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 8947,NJBF000077714,2304 BAYSHORE AVE,Brigantine,NJ,39.40048471,-74.38234492,RES1,3001,,15,NE,1956,1956,3101,1,1,1442.408996,1442.408996,3507,NO,16.8,23.85,1,-0.89,6106,115.156413,124.680444,134.566875,140.49258,I,Above,Flat,0,5701,Wood,20.32163059,0,0,,,,1,1,,0.03,nav,1,1956,1,, 8948,NJBF000075545,,Brigantine,NJ,39.39025481,-74.39164137,RES1,3001,,NaN,NE,1955,0,3102,2,1,1721.710905,1721.710905,3507,NO,29.04,34.37,1,0.25,6106,115.07564,124.60957,134.479656,140.479715,I,Above,Gable,0,5701,Wood,31.70781225,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8949,NJBF000077601,1505 OCEAN AVE,Brigantine,NJ,39.39975516,-74.3728325,RES1,3001,,19,NE,1998,1998,3102,3,1,2185.535496,2185.535496,3505,NO,47.69,61.91,3,8.93,6106,115.358564,124.866921,134.776634,140.651903,I,Above,Hip,0,5701,Wood,54.80019362,0,1.2,,,,1,1,,0.03,nav,1,1998,3,, 8950,NJBF000077453,1700 OCEAN AVE,Brigantine,NJ,39.3987295,-74.37366741,RES1,3001,,NaN,NE,1953,1953,3102,2,1,1707.450295,1707.450295,3505,NO,27.21,38.11,3,-2.49,6106,115.352633,124.86141,134.769654,140.651874,I,Above,Hip,0,5701,Wood,32.65972116,0,0,,,,1,1,,0.03,nav,1,1953,2,, 8951,NJBF000073474,13 OCEAN DRIVE EAST,Brigantine,NJ,39.38099165,-74.40317165,RES1,3001,,16,NE,1975,1975,3101,2,1,1699.396703,1699.396703,3507,NO,36.92,50.05,1,-0.87,6106,114.938589,124.489673,134.33772,140.422356,I,Above,Gable,0,5701,Wood,43.48479649,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8952,NJBF000073305,5201 SEA SPRAY RD,Brigantine,NJ,39.37970529,-74.40602638,RES1,3001,,17,NE,1975,1975,3101,2,1,1666.068785,1666.068785,3507,NO,25.68,31.42,1,-0.59,6106,114.893271,124.450073,134.292442,140.395084,I,Above,Flat,0,5701,Wood,28.55028329,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8953,NJBF000076939,315 27TH STREET SO,Brigantine,NJ,39.39552131,-74.38108628,RES1,3001,,16,NE,1966,1966,3102,1,1,1998.649645,1998.649645,3507,NO,16.65,29.85,1,2.45,6106,115.235692,124.753978,134.646086,140.576744,I,Above,Hip,0,5701,Wood,23.25021773,0,0,,,,1,1,,0.03,nav,1,1966,1,, 8954,NJBF000077097,2600 W BRIGANTINE AVE,Brigantine,NJ,39.39649249,-74.38174489,RES1,3001,,NaN,NE,1960,0,3102,2,1,1638.197271,1638.197271,3507,NO,30.78,37.82,1,1.13,6106,115.21164,124.731854,134.621915,140.553835,I,Above,Flat,0,5701,Wood,34.29876546,0,0,,,,1,1,,0.03,nav,1,1960,2,, 8955,NJBF000078035,338 10TH STREET SO,Brigantine,NJ,39.402457,-74.3691835,RES1,3001,,16,NE,1959,1959,3102,2,1,1222.296872,1222.296872,3502,NO,37.08,49.86,5,4.58,6110,115.403707,124.908971,134.826077,140.674885,I,Above,Gable,0,5701,Wood,43.46846044,0,1.1,,,,1,1,,0.35,nav,1,1959,2,, 8956,NJBF000075788,10 ATLANTIS COVE,Brigantine,NJ,39.39114201,-74.40091035,RES1,3001,,16,NE,1972,1972,3102,2,1,1372.663443,1372.663443,3507,YES,32.42,45.54,1,2.55,6106,114.873315,124.427784,134.276802,140.321215,I,Above,Gable,0,5701,Wood,38.9786019,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 8957,NJBF000075637,,Brigantine,NJ,39.39056946,-74.38944984,RES1,3001,,NaN,NE,1969,0,3102,2,1,1542.137483,1542.137483,3507,NO,34.35,48.62,1,0.26,6106,115.117536,124.647293,134.52223,140.509993,I,Above,Hip,0,5701,Wood,41.48171106,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8958,NJBF000075516,338 38TH STREET SO,Brigantine,NJ,39.39014849,-74.38879211,RES1,3001,,16,NE,1946,1946,3102,2,1,1026.526381,1026.526381,3507,NO,24.04,36.76,1,2.26,6106,115.135774,124.663842,134.540459,140.525831,I,Above,Flat,0,5701,Wood,30.40095753,0,0,,,,1,1,,0.03,nav,1,1946,2,, 8959,NJBF000076826,,Brigantine,NJ,39.394947,-74.394399,RES1,3001,,NaN,NE,1953,0,3102,2,1,1843.780631,1843.780631,3507,NO,33.17,38.99,1,0.26,6106,114.967422,124.510437,134.372065,140.373877,I,Above,Gable,0,5701,Wood,36.07654033,0,0,,,,1,1,,0.03,nav,1,1953,2,, 8960,NJBF000081030,824 W SHORE DR,Brigantine,NJ,39.41727651,-74.38329566,RES1,3001,,17,NE,1993,1993,3103,3,1,2134.182325,2134.182325,3505,NO,39.49,47.04,3,6.31,6106,114.962842,124.493276,134.36484,140.258277,I,Above,Gable,0,5701,Wood,43.26534817,0,1.1,,,,1,1,,0.03,nav,1,1993,3,, 8961,NJBF000075408,4411 PRIVATEER RD,Brigantine,NJ,39.38974963,-74.39863831,RES1,3001,,16,NE,1969,1969,3102,1,1,1442.686283,1442.686283,3507,NO,16.36,26.39,1,-0.73,6106,114.935855,124.48429,134.338943,140.376029,I,Above,Gable,0,5701,Wood,21.37762033,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 8962,NJBF000075772,,Brigantine,NJ,39.39106159,-74.41109606,RES1,3001,,NaN,NE,1969,0,3103,5,1,2545.074925,2545.074925,3505,NO,90.57,99.35,3,0.92,6106,114.661081,124.239339,134.066466,140.159006,I,Above,Flat,0,5701,Wood,94.96129016,0,0,,,,1,1,,0.03,nav,1,1969,5,, 8963,NJBF000076098,24 BEACH COVE,Brigantine,NJ,39.39221171,-74.40210634,RES1,3001,,16,NE,1977,1977,3102,2,1,1837.712979,1837.712979,3507,NO,34.64,45.25,1,0.65,6106,114.836766,124.394583,134.240463,140.287662,I,Above,Hip,0,5701,Wood,39.94487038,0,0,,,,1,1,,0.03,nav,1,1977,2,, 8964,NJBF000075112,4503 PRIVATEER RD,Brigantine,NJ,39.38874517,-74.398646,RES1,3001,,16,NE,1969,1969,3102,1,1,2027.297801,2027.297801,3507,NO,12.02,23.91,1,-0.52,6106,114.946722,124.494394,134.349463,140.389375,I,Above,Gable,0,5701,Wood,17.96212959,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 8965,NJBF000081394,,Brigantine,NJ,39.41901143,-74.36201446,RES1,3001,,NaN,NE,1969,0,3102,2,1,2553.131294,2553.131294,3507,NO,24.24,38.43,1,0.58,6106,115.37494,124.881434,134.803652,140.580697,I,Above,Flat,0,5701,Wood,31.33501995,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8966,NJBF000077278,2901 BAYSHORE AVE,Brigantine,NJ,39.39763302,-74.38655721,RES1,3001,,18,NE,1989,1989,3102,2,1,2957.510549,2957.510549,3507,NO,36.88,50.87,1,0.48,6106,115.100448,124.630054,134.508226,140.462986,I,Above,Gable,0,5701,Wood,43.8783647,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 8967,NJBF000076499,,Brigantine,NJ,39.39366166,-74.38955407,RES1,3001,,NaN,NE,1969,0,3102,2,1,2153.303318,2153.303318,3507,NO,30.05,42.45,1,0.08,6106,115.081569,124.614048,134.487343,140.467703,I,Above,Flat,0,5701,Wood,36.25005677,0,0,,,,1,1,,0.03,nav,1,1969,2,, 8968,NJBF000077061,2305 OCEAN AVE,Brigantine,NJ,39.39624303,-74.37858714,RES1,3001,,16,NE,1940,1940,3102,2,1,1001.633875,1001.633875,3507,NO,31.94,39.56,1,2.68,6110,115.279066,124.793672,134.691358,140.606624,I,Above,Gable,0,5701,Wood,35.75242436,0,1.2,,,,1,1,,0.35,nav,1,1940,2,, 8969,NJBF000076676,4217 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39431143,-74.40357119,RES1,3001,,16,NE,1964,1964,3102,2,2,1178.440172,1178.440172,3507,NO,23.35,31.27,1,1.71,6106,114.7836,124.345829,134.187427,140.235673,I,Above,Gable,0,5701,Wood,27.30933239,0,0,,,,1,1,,0.03,nav,1,1964,2,, 8970,NJBF000075587,4700 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39042219,-74.41117687,RES1,3001,,47,NE,1989,1989,3103,3,2,1451.154917,1451.154917,3505,NO,56.04,62.81,3,3.02,6106,114.666294,124.244427,134.071702,140.166552,I,Above,Flat,0,5701,Wood,59.42854554,0,1.2,,,,1,1,,0.03,nav,1,1989,3,, 8971,NJBF000075033,4505 WHALERMAN RD,Brigantine,NJ,39.388502,-74.3994895,RES1,3001,,16,NE,1968,1968,3102,2,1,2490.262748,2490.262748,3507,YES,37.45,52.38,1,0.48,6106,114.931807,124.481172,134.334486,140.379292,I,Above,Flat,0,5701,Wood,44.91534081,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 8972,NJBF000077120,3000 BAYSHORE AVE,Brigantine,NJ,39.39668036,-74.38686004,RES1,3001,,16,NE,1956,1956,3102,2,1,2019.003682,2019.003682,3507,YES,37.45,43.24,1,1.56,6106,115.104465,124.633991,134.511973,140.470669,I,Above,Hip,0,5701,Wood,40.34891485,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 8973,NJBF000073394,5217 WATERVIEW DR,Brigantine,NJ,39.38035598,-74.40824513,RES1,3001,,16,NE,1975,1975,3103,2,1,1100.06657,1100.06657,3505,NO,44.15,55.14,3,6.75,6106,114.839246,124.402349,134.239859,140.351448,I,Above,Flat,0,5701,Wood,49.6455391,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 8974,NJBF000080327,1401 E BRIGANTINE AVE,Brigantine,NJ,39.41470742,-74.35465539,RES1,3001,,19,NE,2004,2004,3103,3,1,1555.203778,1555.203778,3507,NO,48.97,62.29,1,1.36,6106,115.566825,125.064607,135.009683,140.750834,I,Above,Hip,0,5701,Wood,55.62901278,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 8975,NJBF000080299,1405 E BRIGANTINE AVE,Brigantine,NJ,39.41461141,-74.35439145,RES1,3001,,19,NE,2003,2003,3103,3,1,2128.48883,2128.48883,3507,NO,41.68,50.88,1,1.31,6106,115.573104,125.070597,135.016444,140.75617,I,Above,Gable,0,5701,Wood,46.27976533,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 8976,NJBF000075879,,Brigantine,NJ,39.39147246,-74.41032176,RES1,3001,,NaN,NE,1969,0,3103,5,1,2873.453945,2873.453945,3505,NO,69.89,82.44,3,0.99,6106,114.672904,124.249478,134.078034,140.165831,I,Above,Hip,0,5701,Wood,76.16469291,0,0,,,,1,1,,0.03,nav,1,1969,5,, 8977,NJBF000075057,8 GULL COVE,Brigantine,NJ,39.38858559,-74.40510915,RES3B,3001,,35,ME,1984,1984,3301,2,1,3914.373951,3914.373951,3507,YES,35.12,42.91,1,0.05,6106,114.813508,124.375887,134.216949,140.288977,I,Above,Gable,0,5701,Wood,39.01804236,0,0,,,,1,1,,0.03,nav,1,1984,2,, 8978,NJBF000080819,1325 RAY AVE,Brigantine,NJ,39.41646023,-74.37539581,RES1,3001,,17,NE,1989,1989,3103,1,1,1795.070041,1795.070041,3505,NO,14.37,22.95,3,0.79,6106,115.131409,124.651529,134.542813,140.397514,I,Above,Gable,0,5701,Wood,18.65858884,0,1.2,,,,1,1,,0.03,nav,1,1989,1,, 8979,NJBF000078110,234 13TH STREET SO,Brigantine,NJ,39.40299674,-74.37305147,RES1,3001,,15,NE,1962,1962,3102,1,1,848.8138488,848.8138488,3505,NO,22.23,28.66,3,3.39,6106,115.31938,124.83051,134.737771,140.607242,I,Above,Flat,0,5701,Wood,25.44167179,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 8980,NJBF000073203,11 HARBOUR COURT,Brigantine,NJ,39.37889453,-74.40613533,RES1,3001,,16,NE,1978,1978,3101,1,1,1988.417229,1988.417229,3507,NO,19.88,25.18,1,2.4,6106,114.900181,124.456386,134.298755,140.404341,I,Above,Gable,0,5701,Wood,22.52836305,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 8981,NJBF000074569,4509 W BRIGANTINE AVE,Brigantine,NJ,39.38704619,-74.39504613,RES1,3001,,16,NE,1968,1968,3102,2,1,1438.156077,1438.156077,3507,YES,31.51,38.99,1,1.75,6110,115.040418,124.578703,134.442431,140.468707,I,Above,Gable,0,5701,Wood,35.25243835,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8982,NJBF000077518,312 18TH STREET SO,Brigantine,NJ,39.39918977,-74.37518625,RES1,3001,,15,NE,1950,1950,3102,1,1,1525.500066,1525.500066,3507,NO,16.97,30.55,1,2.89,6106,115.316695,124.828199,134.732507,140.622204,I,Above,Flat,0,5701,Wood,23.76390942,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 8983,NJBF000078011,901 OCEAN AVE,Brigantine,NJ,39.4022808,-74.36791713,RES1,3001,,21,NE,2009,2009,3102,3,1,2973.357658,2973.357658,3502,NO,52.95,67.23,5,8.96,6110,115.431288,124.934677,134.855031,140.696952,I,Above,Gable,0,5701,Wood,60.09023351,0,1.1,,,,1,1,,0.35,nav,1,2009,3,, 8984,NJBF000075367,338 39TH STREET SO,Brigantine,NJ,39.38964655,-74.38938334,RES1,3001,,16,NE,1940,1940,3102,1,1,887.6813236,887.6813236,3507,NO,13.23,25.01,1,1.47,6110,115.129076,124.657875,134.533348,140.523142,I,Above,Hip,0,5701,Wood,19.11894487,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 8985,NJBF000078294,1301 BAYSHORE AVE,Brigantine,NJ,39.40448596,-74.37446315,RES1,3001,,17,NE,2001,2001,3102,2,1,5018.238351,5018.238351,3505,NO,37.2,44.28,3,1.52,6106,115.274824,124.788978,134.691838,140.565939,I,Above,Gable,0,5701,Wood,40.73874698,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 8986,NJBF000077975,313 13TH STREET SO,Brigantine,NJ,39.40200983,-74.37150545,RES1,3001,,15,NE,1950,1950,3102,1,1,901.0639672,901.0639672,3502,NO,33.21,43.96,5,13.86,6106,115.361361,124.869544,134.781199,140.644113,I,Above,Gable,0,5701,Wood,38.58483935,0,0,,,,1,1,,0.03,nav,1,1950,1,, 8987,NJBF000076623,3500 BAYSHORE AVE,Brigantine,NJ,39.39412454,-74.39007417,RES1,3001,,14,NE,1947,1947,3102,1,1,846.9648077,846.9648077,3507,NO,15.33,20.65,1,2.28,6106,115.065797,124.599635,134.471513,140.45339,I,Above,Flat,0,5701,Wood,17.99191804,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8988,NJBF000077784,1900 REVERE BLVD,Brigantine,NJ,39.40086,-74.3778135,RES1,3001,,16,NE,1954,1954,3101,2,1,1275.315298,1275.315298,3507,YES,40.7,49.57,1,1.7,6106,115.245115,124.761988,134.659002,140.559437,I,Above,Gable,0,5701,Wood,45.13161017,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 8989,NJBF000077773,304 15TH STREET SO,Brigantine,NJ,39.40078535,-74.37328326,RES1,3001,,17,NE,1987,1987,3102,2,1,1377.570735,1377.570735,3505,NO,27.17,38.39,3,4.65,6110,115.338324,124.848172,134.7562,140.631747,I,Above,Flat,0,5701,Wood,32.77920981,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 8990,NJBF000077156,2805 REVERE BLVD,Brigantine,NJ,39.39691577,-74.38513349,RES1,3001,,16,NE,1956,1956,3102,1,1,1212.658013,1212.658013,3507,NO,13.93,26.58,1,-0.97,6106,115.137461,124.663999,134.545879,140.494902,I,Above,Gable,0,5701,Wood,20.2545267,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 8991,NJBF000076224,352 32ND STREET SO,Brigantine,NJ,39.39265214,-74.38467046,RES1,3001,,15,NE,1947,1947,3102,1,1,896.0801587,896.0801587,3507,NO,18.74,31.69,1,0.39,6106,115.193319,124.715644,134.600695,140.557728,I,Above,Hip,0,5701,Wood,25.21766517,0,0,,,,1,1,,0.03,nav,1,1947,1,, 8992,NJBF000075361,13 EXPLORER RD,Brigantine,NJ,39.38963437,-74.40086702,RES1,3001,,16,NE,1968,1968,3102,1,1,1975.096157,1975.096157,3507,NO,13.42,28.12,1,2.42,6106,114.890668,124.443994,134.293799,140.342242,I,Above,Hip,0,5701,Wood,20.76838241,0,0,,,,1,1,,0.03,nav,1,1968,1,, 8993,NJBF000079250,214 5TH STREET NO,Brigantine,NJ,39.410344,-74.360983,RES1,3001,,43,NE,1955,1955,3102,2,2,1369.39768,1369.39768,3507,NO,29.65,36.26,1,1.6,6106,115.485667,124.986636,134.918951,140.705013,I,Above,Hip,0,5701,Wood,32.95496952,0,0,,,,1,1,,0.03,nav,1,1955,2,, 8994,NJBF000074744,129 HUDSON DR,Brigantine,NJ,39.3876475,-74.3949135,RES1,3001,,16,NE,1968,1968,3102,2,1,1176.431655,1176.431655,3507,YES,24.43,30.93,1,-0.17,6110,115.036499,124.575047,134.438838,140.462804,I,Above,Gable,0,5701,Wood,27.67929113,0,0,,,,1,1,,0.35,nav,1,1968,2,, 8995,NJBF000078233,806-18 W BRIGANTINE AVE,Brigantine,NJ,39.40390839,-74.3685866,COM1,3001,,NaN,ME,1969,0,3401,1,1,7088.344149,7088.344149,3507,NO,11.64,20.31,1,-0.46,6106,115.400306,124.90587,134.823554,140.665953,I,Above,Flat,0,NaN,Wood,15.97408666,0,0,,,,1,1,,0.03,nav,1,1969,1,, 8996,NJBF000075620,99 LAGOON BLVD,Brigantine,NJ,39.39053469,-74.40035123,RES1,3001,,17,NE,1990,1990,3102,2,1,2174.759021,2174.759021,3507,NO,31.72,39.06,1,0.89,6106,114.891582,124.44439,134.294918,140.338296,I,Above,Gable,0,5701,Wood,35.3863163,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 8997,NJBF000077948,2013 BAYSHORE AVE,Brigantine,NJ,39.40185575,-74.38012219,RES1,3001,,17,NE,1985,1985,3102,2,1,2321.879302,2321.879302,3507,NO,25.66,38.05,1,-0.58,6106,115.187313,124.70852,134.599406,140.51007,I,Above,Hip,0,5701,Wood,31.85687406,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 8998,NJBF000075536,,Brigantine,NJ,39.39021634,-74.38610772,RES3C,3001,,NaN,E,1969,0,3303,3,1,2736.721699,2736.721699,3507,NO,44.53,57.14,1,0.17,6110,115.190452,124.713303,134.596062,140.566926,I,Above,Flat,0,NaN,Wood,50.83469544,0,0,,,,1,1,,1,nav,1,1969,3,, 8999,NJBF000074401,304 DOLPHIN DRIVE,Brigantine,NJ,39.38624933,-74.39428975,RES1,3001,,17,NE,2002,2002,3102,2,1,1760.422816,1760.422816,3507,NO,33.44,41.69,1,-0.61,6110,115.064993,124.60088,134.466589,140.491108,I,Above,Hip,0,5701,Wood,37.5644015,0,1.1,,,,1,1,,0.35,nav,1,2002,2,, 9000,NJBF000078344,1217 BAYSHORE AVE,Brigantine,NJ,39.40488559,-74.37408946,RES1,3001,,17,NE,1946,1946,3102,2,1,1825.203825,1825.203825,3505,NO,35.13,42.16,3,7.17,6106,115.278195,124.792055,134.695563,140.566751,I,Above,Gable,0,5701,Wood,38.64798724,0,0,,,,1,1,,0.03,nav,1,1946,2,, 9001,NJBF000076387,324 32ND STREET SO,Brigantine,NJ,39.39322741,-74.38535012,RES1,3001,,16,NE,1955,1955,3102,2,1,1654.942989,1654.942989,3507,NO,26.26,36.13,1,2.33,6106,115.173028,124.697118,134.580324,140.539581,I,Above,Hip,0,5701,Wood,31.19817066,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9002,NJBF000076968,209 30TH STREET SO,Brigantine,NJ,39.39564026,-74.38494075,RES1,3001,,16,NE,1956,1956,3102,2,1,1405.400535,1405.400535,3507,YES,33.27,45.65,1,-0.21,6106,115.155201,124.68046,134.56345,140.514573,I,Above,Gable,0,5701,Wood,39.45636814,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9003,NJBF000074881,11 45TH COVE,Brigantine,NJ,39.38806738,-74.39670274,RES1,3001,,16,NE,1968,1968,3102,2,1,1657.742592,1657.742592,3507,NO,37.89,43.6,1,2.75,6110,114.99465,124.537466,134.397112,140.42909,I,Above,Gable,0,5701,Wood,40.74336121,0,0,,,,1,1,,0.35,nav,1,1968,2,, 9004,NJBF000080748,717 STERLING PLACE,Brigantine,NJ,39.41615315,-74.3802782,RES1,3001,,16,NE,1963,1963,3103,1,1,1992.714006,1992.714006,3505,NO,20.03,25.16,3,1.78,6106,115.035538,124.56187,134.441636,140.322203,I,Above,Gable,0,5701,Wood,22.59562295,0,0,,,,1,1,,0.03,nav,1,1963,1,, 9005,NJBF000077805,212 17TH STREET SO,Brigantine,NJ,39.40094679,-74.37564562,RES1,3001,,17,NE,2003,2003,3101,2,1,2784.570675,2784.570675,3507,NO,29.1,36.56,1,-0.98,6106,115.288434,124.801984,134.704175,140.592513,I,Above,Flat,0,5701,Wood,32.82805335,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 9006,NJBF000074601,455 SEAHORSE RD,Brigantine,NJ,39.38716949,-74.40432815,RES3B,3001,,35,ME,1987,1987,3301,3,1,4493.71286,4493.71286,3507,NO,56.03,63.91,1,1.2,6106,114.845425,124.404914,134.248264,140.320653,I,Above,Gable,0,5701,Wood,59.97082373,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 9007,NJBF000077647,204 20TH STREET SO,Brigantine,NJ,39.40007897,-74.37826327,RES1,3001,,17,NE,1956,1956,3101,2,1,1798.615153,1798.615153,3507,YES,27.14,37.15,1,2.84,6106,115.244305,124.76135,134.657742,140.562396,I,Above,Gable,0,5701,Wood,32.14212822,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9008,NJBF000073835,4814 HARBOR BEACH BLVD,Brigantine,NJ,39.38347149,-74.40111489,RES3C,3001,,37,ME,1978,1978,3301,3,1,5032.846781,5032.846781,3507,YES,41.82,49.79,1,2.13,6106,114.953749,124.502405,134.354085,140.421246,I,Above,Hip,0,5701,Wood,45.80569879,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 9009,NJBF000075185,,Brigantine,NJ,39.38899124,-74.39275888,RES1,3001,,NaN,NE,1969,0,3102,2,1,1372.543207,1372.543207,3507,NO,34.96,49.11,1,2.74,6106,115.066386,124.601541,134.469627,140.47884,I,Above,Flat,0,5701,Wood,42.03806184,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9010,NJBF000076496,402 28TH STREET SO,Brigantine,NJ,39.39364597,-74.38091845,RES1,3001,,20,NE,1989,1989,3102,2,1,2440.044045,2440.044045,3507,NO,27.06,37.61,1,2.23,6106,115.25958,124.775953,134.669351,140.603574,I,Above,Hip,0,5701,Wood,32.3320413,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 9011,NJBF000073576,2 OCEAN DRIVE WEST,Brigantine,NJ,39.38172799,-74.410348,RES1,3001,,19,NE,2004,2004,3103,3,1,1947.466506,1947.466506,3505,YES,57.89,66.41,3,8.88,6106,114.779525,124.34934,134.18201,140.299553,I,Above,Flat,0,5701,Wood,62.14959459,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 9012,NJBF000077075,405 22ND STREET SO,Brigantine,NJ,39.39633497,-74.37639345,RES1,3001,,20,NE,2012,2012,3102,3,1,2835.89998,2835.89998,3507,NO,40.95,55.71,1,1.71,6102,115.322948,124.833995,134.736891,140.639779,I,Above,Hip,0,5701,Wood,48.32803116,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 9013,NJBF000077941,1900 BAYSHORE AVE,Brigantine,NJ,39.4018076,-74.37868268,RES1,3001,,16,NE,1948,1948,3101,1,1,1584.711896,1584.711896,3507,NO,19.06,31.83,1,-0.42,6106,115.21724,124.736117,134.630474,140.533494,I,Above,Gable,0,5701,Wood,25.44411865,0,0,,,,1,1,,0.03,nav,1,1948,1,, 9014,NJBF000077317,101 28TH STREET SO,Brigantine,NJ,39.39786655,-74.38501931,RES1,3001,,15,NE,1956,1956,3102,2,1,1966.012757,1966.012757,3507,NO,37.72,47.75,1,-0.35,6106,115.129567,124.656553,134.538185,140.484294,I,Above,Gable,0,5701,Wood,42.73580812,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9015,NJBF000077318,101 28TH STREET SO,Brigantine,NJ,39.39787783,-74.3848855,RES1,3001,,15,NE,1956,1956,3102,2,1,585.8682503,585.8682503,3507,NO,31.16,45.73,1,-0.54,6106,115.132204,124.658958,134.540897,140.486272,I,Above,Flat,0,5701,Wood,38.44223202,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9016,NJBF000075851,4524 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39136599,-74.4090345,RES1,3001,,18,NE,2009,2009,3103,3,1,2012.042543,2012.042543,3505,NO,49.23,64.02,3,3.95,6106,114.701036,124.274454,134.105798,140.188039,I,Above,Hip,0,5701,Wood,56.62628165,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 9017,NJBF000078310,1229 BAYSHORE AVE,Brigantine,NJ,39.40464436,-74.37421229,RES1,3001,,18,NE,2014,2014,3102,3,1,1951.207714,1951.207714,3505,NO,48.24,61.88,3,6.8,6106,115.278257,124.792145,134.695513,140.567894,I,Above,Flat,0,5701,Wood,55.05670471,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 9018,NJBF000078185,223 13TH STREET SO,Brigantine,NJ,39.4034967,-74.3728921,RES1,3001,,16,NE,1950,1950,3102,2,1,1197.46572,1197.46572,3505,NO,26.65,38.15,3,0.33,6106,115.317287,124.828532,134.735867,140.603384,I,Above,Gable,0,5701,Wood,32.39976194,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 9019,NJBF000077512,403 16TH STREET SO,Brigantine,NJ,39.39915566,-74.37230422,RES1,3001,,18,NE,1991,1991,3102,2,1,1872.166787,1872.166787,3505,NO,24.77,31.32,3,2.19,6110,115.375796,124.88286,134.794195,140.667789,I,Above,Hip,0,5701,Wood,28.04256541,0,1.1,,,,1,1,,0.35,nav,1,1991,2,, 9020,NJBF000075942,3701 W BRIGANTINE AVE,Brigantine,NJ,39.39170548,-74.3896679,RES1,3001,,43,NE,1957,1957,3102,1,2,2850.437624,2850.437624,3507,NO,16.78,26.48,1,0.78,6106,115.100565,124.631723,134.505666,140.491646,I,Above,Hip,0,5701,Wood,21.63185273,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 9021,NJBF000078369,144 11TH STREET SO,Brigantine,NJ,39.4050591,-74.37266177,RES1,3001,,16,NE,1956,1956,3102,1,1,1265.978658,1265.978658,3505,NO,25.57,32.79,3,8.21,6106,115.305373,124.817317,134.724199,140.587131,I,Above,Hip,0,5701,Wood,29.17725668,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9022,NJBF000075079,,Brigantine,NJ,39.38864102,-74.39125417,RES1,3001,,NaN,NE,1969,0,3102,2,1,1293.859144,1293.859144,3507,NO,36.97,44.06,1,1.59,6110,115.101453,124.633155,134.50478,140.507058,I,Above,Flat,0,5701,Wood,40.51868997,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9023,NJBF000077957,1501 W BRIGANTINE AVE,Brigantine,NJ,39.4018911,-74.37432011,REL1,3001,,NaN,ME,1969,0,3401,1,1,14843.95971,14843.95971,3507,NO,12.08,18.34,1,0.88,6106,115.305358,124.817575,134.722421,140.60134,I,Above,Gable,0,NaN,Wood,15.21153939,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9024,NJBF000075770,,Brigantine,NJ,39.39105136,-74.38945763,RES1,3001,,NaN,NE,1969,0,3102,2,1,1845.826022,1845.826022,3507,NO,31.4,43.79,1,2.35,6106,115.112076,124.642266,134.516977,140.503539,I,Above,Flat,0,5701,Wood,37.59494822,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9025,NJBF000075324,3819 OCEAN AVE,Brigantine,NJ,39.38948148,-74.38857566,RES1,3001,,43,NE,1950,1950,3102,2,2,1056.845375,1056.845375,3507,YES,25.88,31.92,1,1.44,6110,115.147596,124.674621,134.552005,140.537947,I,Above,Flat,0,5701,Wood,28.89947453,0,1.2,,,,1,1,,0.35,nav,1,1950,2,, 9026,NJBF000074245,9 SCHOONER COVE,Brigantine,NJ,39.385551,-74.4007465,RES1,3001,,43,NE,1977,1977,3102,2,2,1319.955093,1319.955093,3507,NO,22.23,34.26,1,-0.76,6110,114.93824,124.487979,134.33972,140.399111,I,Above,Gable,0,5701,Wood,28.24517184,0,0,,,,1,1,,0.35,nav,1,1977,2,, 9027,NJBF000076066,405 32ND STREET SO,Brigantine,NJ,39.39211705,-74.38337803,RES1,3001,,16,NE,1958,1958,3102,1,1,1928.913991,1928.913991,3507,NO,13.67,19.55,1,0.55,6106,115.225778,124.745222,134.633523,140.584889,I,Above,Gable,0,5701,Wood,16.60847088,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 9028,NJBF000075029,135 44TH STREET SO,Brigantine,NJ,39.38849161,-74.39434516,RES1,3001,,16,NE,1973,1973,3102,1,1,1487.474058,1487.474058,3507,NO,16.82,24.22,1,-0.09,6106,115.038977,124.577052,134.441779,140.460532,I,Above,Hip,0,5701,Wood,20.52042401,0,0,,,,1,1,,0.03,nav,1,1973,1,, 9029,NJBF000077936,348 11TH STREET SO,Brigantine,NJ,39.40178091,-74.36967841,RES1,3001,,16,NE,1958,1958,3102,1,1,1520.140248,1520.140248,3502,NO,30.11,35.76,5,12.49,6106,115.400928,124.906341,134.822632,140.675675,I,Above,Hip,0,5701,Wood,32.9315749,0,0,,,,1,1,,0.03,nav,1,1958,1,, 9030,NJBF000077105,322 23RD STREET SO,Brigantine,NJ,39.39657165,-74.37844806,RES1,3001,,16,NE,1954,1954,3102,1,1,1710.297212,1710.297212,3507,NO,16.35,27.54,1,-0.18,6106,115.278341,124.79299,134.690841,140.604575,I,Above,Hip,0,5701,Wood,21.94427035,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 9031,NJBF000075832,12 ATLANTIS COVE,Brigantine,NJ,39.39130436,-74.40093184,RES1,3001,,16,NE,1972,1972,3102,2,1,1962.902537,1962.902537,3507,NO,40.82,50.34,1,2.35,6106,114.871095,124.425719,134.274612,140.318678,I,Above,Gable,0,5701,Wood,45.58050592,0,0,,,,1,1,,0.03,nav,1,1972,2,, 9032,NJBF000075175,5 WHALERMAN COVE,Brigantine,NJ,39.38895195,-74.40000599,RES1,3001,,16,NE,1968,1968,3102,2,1,1266.169131,1266.169131,3507,NO,38.01,43.85,1,2.59,6110,114.916102,124.466978,134.318968,140.365079,I,Above,Gable,0,5701,Wood,40.9295952,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 9033,NJBF000077575,,Brigantine,NJ,39.39955973,-74.37157082,RES4,3001,,NaN,E,1969,0,3404,4,1,16682.04314,16682.04314,3507,NO,49.75,62.79,1,-0.08,6106,115.386353,124.892666,134.805573,140.674132,I,Above,Flat,0,NaN,Wood,56.26864458,0,0,,,,2,2,,0.03,nav,1,1969,4,, 9034,NJBF000077543,,Brigantine,NJ,39.39934321,-74.37117414,COM8,3001,,NaN,ME,1969,0,3401,3,1,6265.724999,6265.724999,3507,NO,34,41.96,1,1.1,6102,115.396771,124.902313,134.816312,140.683086,I,Above,Hip,0,5701,Wood,37.98008318,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9035,NJBF000076764,318 28TH STREET SO,Brigantine,NJ,39.39471074,-74.38208074,RES1,3001,,17,NE,1950,1950,3102,2,1,1880.62795,1880.62795,3507,NO,27.73,38.94,1,2.37,6110,115.224079,124.743444,134.6336,140.571607,I,Above,Gable,0,5701,Wood,33.33478463,0,0,,,,1,1,,0.35,nav,1,1950,2,, 9036,NJBF000077931,1013 OCEAN AVE,Brigantine,NJ,39.40172721,-74.36902053,RES1,3001,,17,NE,1970,1970,3102,2,1,1574.110254,1574.110254,3502,NO,38.23,46.23,5,2.73,6110,115.414841,124.919295,134.837242,140.686647,I,Above,Flat,0,5701,Wood,42.23178489,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 9037,NJBF000077355,308 21ST STREET SO,Brigantine,NJ,39.39807889,-74.37758259,RES1,3001,,16,NE,1954,1954,3102,2,1,2443.44721,2443.44721,3507,NO,31.03,38.84,1,-0.88,6106,115.279727,124.794172,134.693307,140.598797,I,Above,Gable,0,5701,Wood,34.93472042,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 9038,NJBF000077982,316 12TH STREET SO,Brigantine,NJ,39.40209497,-74.37106267,RES1,3001,,18,NE,2015,2015,3102,3,1,943.9118612,943.9118612,3502,NO,58.26,66.05,5,10.77,6106,115.369433,124.877049,134.789739,140.649977,I,Above,Flat,0,5701,Wood,62.15581006,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 9039,NJBF000077995,312 12TH STREET SO,Brigantine,NJ,39.40219252,-74.37116618,RES1,3001,,43,NE,1954,1954,3102,2,2,1175.467103,1175.467103,3502,NO,40.66,47.22,5,3.67,6106,115.366291,124.874129,134.786506,140.647118,I,Above,Flat,0,5701,Wood,43.9375826,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9040,NJBF000074818,128 HUDSON DR,Brigantine,NJ,39.38787526,-74.39527451,RES1,3001,,16,NE,1968,1968,3102,1,1,1556.207273,1556.207273,3507,NO,18.95,25.65,1,0.68,6110,115.026472,124.566005,134.428902,140.454107,I,Above,Gable,0,5701,Wood,22.29803204,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 9041,NJBF000077758,205 19TH STREET SO,Brigantine,NJ,39.4007371,-74.37705156,RES1,3001,,16,NE,1965,1965,3101,2,1,2598.036574,2598.036574,3507,YES,28.2,40.96,1,1.39,6106,115.261993,124.777578,134.676498,140.573042,I,Above,Gable,0,5701,Wood,34.5772852,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 9042,NJBF000077042,,Brigantine,NJ,39.39605686,-74.38728311,RES1,3001,,NaN,NE,1969,0,3102,2,1,1998.491272,1998.491272,3507,NO,38.16,46.31,1,-0.65,6106,115.102472,124.632353,134.509682,140.472139,I,Above,Flat,0,5701,Wood,42.23325288,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9043,NJBF000077725,341 15TH STREET SO,Brigantine,NJ,39.400552,-74.372444,RES1,3001,,16,NE,1950,1950,3102,1,1,1289.329164,1289.329164,3502,NO,22.33,31.84,5,4.3,6110,115.357906,124.866324,134.776535,140.647877,I,Above,Gable,0,5701,Wood,27.08444145,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 9044,NJBF000076784,2701 OCEAN AVE,Brigantine,NJ,39.39477945,-74.38098036,RES1,3001,,20,NE,2009,2009,3102,3,1,4127.395472,4127.395472,3507,NO,39.1,52.52,1,1.98,6110,115.24594,124.763417,134.656137,140.587987,I,Above,Hip,0,5701,Wood,45.80987787,0,1.1,,,,1,1,,0.35,nav,1,2009,3,, 9045,NJBF000077506,2504 BAYSHORE AVE,Brigantine,NJ,39.39911867,-74.38394306,RES1,3001,,17,NE,1960,1960,3102,2,1,1763.086828,1763.086828,3507,NO,34.81,49.3,1,2.55,6106,115.138239,124.664147,134.547602,140.485012,I,Above,Hip,0,5701,Wood,42.05774301,0,0,,,,1,1,,0.03,nav,1,1960,2,, 9046,NJBF000074889,,Brigantine,NJ,39.3880775,-74.391298,RES3D,3001,,NaN,E,1969,0,3303,4,1,7037.954205,7037.954205,3507,NO,70.29,84.32,1,-0.48,6110,115.106774,124.638042,134.509787,140.513779,I,Above,Flat,0,NaN,Wood,77.30439702,0,0,,,,1,1,,0.35,nav,1,1969,4,, 9047,NJBF000074755,,Brigantine,NJ,39.38768576,-74.39120316,RES3D,3001,,NaN,E,1969,0,3303,3,1,6289.917524,6289.917524,3507,NO,44.01,58.69,1,-0.03,6106,115.11309,124.643788,134.515897,140.520422,I,Above,Gable,0,NaN,Wood,51.34787697,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9048,NJBF000077800,103 22ND STREET SO,Brigantine,NJ,39.40093347,-74.38060008,RES1,3001,,16,NE,1956,1956,3101,3,1,1506.626769,1506.626769,3507,NO,37.9,47.39,1,2.72,6106,115.187371,124.708783,134.599088,140.514433,I,Above,Gable,0,5701,Wood,42.64633461,0,1.1,,,,1,1,,0.03,nav,1,1956,3,, 9049,NJBF000076803,,Brigantine,NJ,39.39486806,-74.39631467,RES3A,3001,,NaN,NE,1969,0,3301,1,1,3244.41732,3244.41732,3507,NO,21.83,36.35,1,2.66,6106,114.92855,124.47545,134.332808,140.344395,I,Above,Gable,0,5701,Wood,29.08828788,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9050,NJBF000077895,324 13TH STREET SO,Brigantine,NJ,39.40152245,-74.3717361,RES1,3001,,16,NE,1960,1960,3102,1,1,1636.643183,1636.643183,3502,NO,34.32,44.11,5,14.98,6110,115.361894,124.870036,134.781415,140.646675,I,Above,Hip,0,5701,Wood,39.21728294,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9051,NJBF000076685,319 29TH STREET SO,Brigantine,NJ,39.39434483,-74.38223298,RES1,3001,,16,NE,1958,1958,3102,2,1,1547.877869,1547.877869,3507,NO,32.86,44.08,1,2.99,6110,115.224945,124.744272,134.634244,140.57396,I,Above,Hip,0,5701,Wood,38.46734592,0,0,,,,1,1,,0.35,nav,1,1958,2,, 9052,NJBF000076731,2705 OCEAN AVE,Brigantine,NJ,39.39458399,-74.38125337,RES1,3001,,18,NE,2003,2003,3102,2,1,2697.332843,2697.332843,3507,NO,30.82,39.82,1,-0.31,6110,115.242462,124.760252,134.652421,140.586228,I,Above,Hip,0,5701,Wood,35.32021976,0,1.1,,,,1,1,,0.35,nav,1,2003,2,, 9053,NJBF000076092,328 34TH STREET SO,Brigantine,NJ,39.39220551,-74.38662862,RES1,3001,,16,NE,1948,1948,3102,2,1,1067.457995,1067.457995,3507,NO,34.28,48.19,1,-0.69,6106,115.157832,124.683479,134.564184,140.532824,I,Above,Flat,0,5701,Wood,41.23339647,0,0,,,,1,1,,0.03,nav,1,1948,2,, 9054,NJBF000076094,341 34TH STREET SO,Brigantine,NJ,39.39220802,-74.38596757,RES1,3001,,16,NE,1952,1952,3102,1,1,1540.259324,1540.259324,3507,NO,14.45,21.18,1,1.03,6106,115.171439,124.695826,134.57806,140.543164,I,Above,Hip,0,5701,Wood,17.81729371,0,0,,,,1,1,,0.03,nav,1,1952,1,, 9055,NJBF000077620,208 20TH STREET SO,Brigantine,NJ,39.39989976,-74.37809385,RES1,3001,,16,NE,1958,1958,3101,1,1,2836.993941,2836.993941,3507,NO,10.48,23.37,1,-0.92,6106,115.249679,124.766325,134.663226,140.567364,I,Above,Hip,0,5701,Wood,16.92416776,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 9056,NJBF000081027,811 LAFAYETTE BLVD,Brigantine,NJ,39.41727508,-74.37986893,RES1,3001,,15,NE,1970,1970,3103,1,1,1451.540171,1451.540171,3505,NO,22.42,32.36,3,6.98,6106,115.032471,124.558333,134.438072,140.3143,I,Above,Hip,0,5701,Wood,27.39009908,0,0,,,,1,1,,0.03,nav,1,1970,1,, 9057,NJBF000076829,3833 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39496277,-74.39454117,RES1,3001,,18,NE,1953,1953,3102,2,1,1763.171506,1763.171506,3507,NO,27.75,42.59,1,2.81,6106,114.964308,124.507621,134.36892,140.371403,I,Above,Hip,0,5701,Wood,35.16905206,0,0,,,,1,1,,0.03,nav,1,1953,2,, 9058,NJBF000073832,48 HORIZON LANE,Brigantine,NJ,39.38345296,-74.41150918,RES1,3001,,37,NE,1987,1987,3103,2,1,3895.350028,3895.350028,3505,YES,33.03,43.7,3,7.29,6110,114.735789,124.310091,134.139721,140.257444,I,Above,Flat,0,5701,Wood,38.36468938,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 9059,NJBF000080982,822 W SHORE DR,Brigantine,NJ,39.41709087,-74.38307234,RES1,3001,,19,NE,2016,2016,3103,3,1,2786.046642,2786.046642,3505,NO,54.33,65.48,3,5.27,6106,114.969272,124.499403,134.371667,140.264375,I,Above,Gable,0,5701,Wood,59.90571829,0,0,,,,1,1,,0.03,nav,1,2016,3,, 9060,NJBF000080595,40 KIRKWOOD CIRCLE,Brigantine,NJ,39.41558358,-74.3620359,RES1,3001,,17,NE,1996,1996,3102,2,1,1619.960495,1619.960495,3507,NO,27.16,37.81,1,0.54,6106,115.409813,124.914881,134.840194,140.6231,I,Above,Hip,0,5701,Wood,32.48521666,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 9061,NJBF000080506,1305 SHERIDAN BLVD,Brigantine,NJ,39.41528909,-74.37321256,RES1,3001,,16,NE,1971,1971,3102,2,1,1871.901394,1871.901394,3507,NO,30.72,43.27,1,-0.46,6106,115.187563,124.704771,134.602424,140.447794,I,Above,Gable,0,5701,Wood,36.99731697,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 9062,NJBF000077398,213 24TH STREET SO,Brigantine,NJ,39.39836929,-74.38050756,RES1,3001,,17,NE,2003,2003,3101,2,1,1891.030812,1891.030812,3507,NO,25.83,36.43,1,0.03,6106,115.216739,124.736249,134.628243,140.549041,I,Above,Flat,0,5701,Wood,31.12761066,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 9063,NJBF000077719,112 21ST STREET SO,Brigantine,NJ,39.40051689,-74.37977746,RES1,3001,,17,NE,1958,1958,3101,2,1,2109.460741,2109.460741,3507,NO,37.58,42.84,1,-0.85,6106,115.208656,124.728452,134.620966,140.532838,I,Above,Flat,0,5701,Wood,40.20915775,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 9064,NJBF000074548,4603 SCHOONER RD,Brigantine,NJ,39.38693134,-74.3989858,RES1,3001,,43,NE,1977,1977,3102,2,2,1358.896197,1358.896197,3507,NO,23.8,29.18,1,0.37,6110,114.959657,124.506582,134.361642,140.408314,I,Above,Gable,0,5701,Wood,26.49030254,0,0,,,,1,1,,0.35,nav,1,1977,2,, 9065,NJBF000074509,104 HUDSON DR,Brigantine,NJ,39.38676959,-74.39711922,RES1,3001,,16,NE,1968,1968,3102,2,1,1749.385548,1749.385548,3507,YES,33.02,45.63,1,1.78,6110,115.000347,124.542941,134.402175,140.439837,I,Above,Gable,0,5701,Wood,39.32277576,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 9066,NJBF000080641,712 STERLING PLACE,Brigantine,NJ,39.41573634,-74.38061883,RES1,3001,,16,NE,1984,1984,3103,1,1,2099.547538,2099.547538,3505,NO,24.4,35.04,3,6.55,6106,115.032846,124.559601,134.438918,140.32207,I,Above,Gable,0,5701,Wood,29.7201421,0,0,,,,1,1,,0.03,nav,1,1984,1,, 9067,NJBF000075135,5 GULL COVE,Brigantine,NJ,39.38880401,-74.4046622,RES3B,3001,,35,ME,1984,1984,3301,2,1,3749.245594,3749.245594,3507,YES,26.82,38.61,1,0.68,6106,114.820474,124.381953,134.223881,140.29313,I,Above,Gable,0,5701,Wood,32.71559052,0,0,,,,1,1,,0.03,nav,1,1984,2,, 9068,NJBF000075108,4502 WHALERMAN RD,Brigantine,NJ,39.38873121,-74.39903295,RES1,3001,,16,NE,1968,1968,3102,1,1,1637.190053,1637.190053,3507,NO,20.96,27.41,1,2.74,6106,114.938813,124.487336,134.341559,140.383445,I,Above,Hip,0,5701,Wood,24.18328348,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 9069,NJBF000081140,830 W SHORE DR,Brigantine,NJ,39.41771682,-74.3831027,RES1,3001,,20,NE,2010,2010,3103,3,1,3569.787179,3569.787179,3505,NO,57.43,65.51,3,1.49,6106,114.962335,124.49249,134.364111,140.255685,I,Above,Hip,0,5701,Wood,61.47349756,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 9070,NJBF000078293,1106 W BEACH AVE,Brigantine,NJ,39.40448176,-74.37226703,RES1,3001,,16,NE,1974,1974,3102,2,1,1732.329119,1732.329119,3505,NO,26.99,40.42,3,-0.69,6106,115.319518,124.830537,134.738768,140.600716,I,Above,Hip,0,5701,Wood,33.7031203,0,0,,,,1,1,,0.03,nav,1,1974,2,, 9071,NJBF000077889,2004 BAYSHORE AVE,Brigantine,NJ,39.40145704,-74.37995471,RES1,3001,,16,NE,1965,1965,3101,2,1,2197.223547,2197.223547,3507,YES,34.95,47.95,1,2.44,6106,115.194978,124.71567,134.607198,140.517876,I,Above,Gable,0,5701,Wood,41.45000028,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 9072,NJBF000078404,132 11TH STREET SO,Brigantine,NJ,39.40531882,-74.37294888,RES1,3001,,18,NE,2012,2012,3102,3,1,1829.509526,1829.509526,3505,NO,62.67,77.07,3,6.21,6106,115.296788,124.809297,134.715301,140.579278,I,Above,Hip,0,5701,Wood,69.86787602,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 9073,NJBF000080818,801 SARAZEN RD,Brigantine,NJ,39.41645936,-74.3757669,RES1,3001,,17,NE,1998,1998,3103,2,1,2049.921959,2049.921959,3505,NO,35.43,41.29,3,0.75,6106,115.123907,124.644484,134.534866,140.391517,I,Above,Hip,0,5701,Wood,38.36452107,0,1.2,,,,1,1,,0.03,nav,1,1998,2,, 9074,NJBF000074718,58 SAILFISH DRIVE,Brigantine,NJ,39.38755371,-74.40248868,RES3B,3001,,35,ME,2001,2001,3301,3,1,7367.342168,7367.342168,3507,NO,41.56,48.86,1,-0.52,6110,114.879646,124.435117,134.282282,140.344594,I,Above,Flat,0,5701,Wood,45.20988625,0,1.1,,,,1,1,,0.35,nav,1,2001,3,, 9075,NJBF000074844,,Brigantine,NJ,39.38796094,-74.39300713,RES3D,3001,,NaN,ME,1969,0,3301,2,1,2869.88548,2869.88548,3507,NO,26.76,40.98,1,0.83,6110,115.072627,124.607376,134.475314,140.48856,I,Above,Hip,0,NaN,Wood,33.86670556,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9076,NJBF000077607,116 23RD STREET SO,Brigantine,NJ,39.3997998,-74.38133362,RES1,3001,,17,NE,1956,2018,3101,2,1,1460.227784,1460.227784,3507,NO,36.89,45.07,1,-0.2,6106,115.184453,124.706347,134.595574,140.517482,I,Above,Flat,0,5701,Wood,40.97791671,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9077,NJBF000077641,110 23RD STREET SO,Brigantine,NJ,39.40004624,-74.38158553,RES1,3001,,16,NE,1956,1956,3101,2,1,2189.738048,2189.738048,3507,NO,27.57,40.34,1,0.85,6106,115.176657,124.699135,134.587622,140.510305,I,Above,Hip,0,5701,Wood,33.95419474,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9078,NJBF000077906,340 12TH STREET SO,Brigantine,NJ,39.40155346,-74.37061811,RES1,3001,,16,NE,1940,1940,3102,1,1,1180.480478,1180.480478,3502,NO,18.7,29.64,5,4.98,6106,115.384284,124.890844,134.804953,140.663823,I,Above,Gable,0,5701,Wood,24.17261212,0,0,,,,1,1,,0.03,nav,1,1940,1,, 9079,NJBF000077887,344 12TH STREET SO,Brigantine,NJ,39.40145481,-74.37052823,RES1,3001,,16,NE,1950,1950,3102,2,1,1493.080929,1493.080929,3502,NO,34.44,45.38,5,12.3,6106,115.387164,124.893518,134.807906,140.666473,I,Above,Flat,0,5701,Wood,39.91243889,0,0,,,,1,1,,0.03,nav,1,1950,2,, 9080,NJBF000074721,,Brigantine,NJ,39.38755743,-74.39167971,RES3C,3001,,NaN,ME,1969,0,3301,1,1,11740.4232,11740.4232,3507,NO,13.82,27.56,1,2.4,6110,115.104633,124.636205,134.507286,140.514662,I,Above,Flat,0,NaN,Wood,20.68858324,0,0,,,,1,1,,0.35,nav,1,1969,1,, 9081,NJBF000074752,,Brigantine,NJ,39.3876755,-74.3924555,RES1,3001,,NaN,NE,1950,0,3102,2,1,1463.819948,1463.819948,3507,NO,24.01,32.04,1,-0.25,6110,115.087239,124.620555,134.489845,140.500969,I,Above,Flat,0,5701,Wood,28.02488453,0,0,,,,1,1,,0.35,nav,1,1950,2,, 9082,NJBF000076323,202 37TH STREET SO,Brigantine,NJ,39.39296734,-74.39153467,RES1,3001,,16,NE,1949,1949,3102,2,1,924.9567623,924.9567623,3507,NO,27.84,34.68,1,-0.39,6106,115.048172,124.584052,134.453156,140.445576,I,Above,Gable,0,5701,Wood,31.25815683,0,0.1,,,,1,1,,0.03,nav,1,1949,2,, 9083,NJBF000080952,904 SARAZEN RD,Brigantine,NJ,39.4170065,-74.37775549,RES1,3001,,16,NE,1967,1968,3103,2,1,1317.527667,1317.527667,3505,NO,38.71,48.27,3,7.51,6106,115.078069,124.601201,134.486273,140.352202,I,Above,Hip,0,5701,Wood,43.49010271,0,0,,,,1,1,,0.03,nav,1,1967,2,, 9084,NJBF000081368,1001 E SHORE DR,Brigantine,NJ,39.41888418,-74.36208028,RES1,3001,,17,NE,1955,2018,3102,2,1,3907.257077,3907.257077,3507,NO,25.21,40.19,1,1.82,6106,115.374919,124.881426,134.803599,140.581225,I,Above,Gable,0,5701,Wood,32.7022309,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9085,NJBF000077693,101 24TH STREET SO,Brigantine,NJ,39.40037599,-74.38240327,RES1,3001,,18,NE,2009,2009,3101,3,1,1398.986448,1398.986448,3507,YES,33.34,42.38,1,-0.96,6106,115.156388,124.68045,134.566807,140.493076,I,Above,Flat,0,5701,Wood,37.85960376,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 9086,NJBF000074941,4504 HARBOR BEACH BLVD,Brigantine,NJ,39.3882507,-74.39705654,RES1,3001,,16,NE,1962,1962,3102,1,1,2314.759519,2314.759519,3507,NO,16.52,24.21,1,2.01,6106,114.985252,124.529002,134.387789,140.421059,I,Above,Gable,0,5701,Wood,20.36584229,0,1.2,,,,1,1,,0.03,nav,1,1962,1,, 9087,NJBF000074899,4401 W BRIGANTINE AVE,Brigantine,NJ,39.38811167,-74.3938015,RES1,3001,,16,NE,1983,1983,3102,2,1,668.3992635,668.3992635,3507,NO,24.06,37.84,1,2.22,6106,115.054474,124.591049,134.457146,140.47411,I,Above,Gable,0,5701,Wood,30.94944642,0,0,,,,1,1,,0.03,nav,1,1983,2,, 9088,NJBF000074912,124 45TH STREET SO,Brigantine,NJ,39.3881638,-74.39450527,RES1,3001,,16,NE,1968,1968,3102,1,1,2324.330195,2324.330195,3507,NO,11.51,20.14,1,0.94,6106,115.039278,124.577406,134.441907,140.462368,I,Above,Gable,0,5701,Wood,15.82876689,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 9089,NJBF000076321,,Brigantine,NJ,39.39296002,-74.3899311,RES1,3001,,NaN,NE,1955,0,3102,2,1,1741.21156,1741.21156,3507,NO,29.73,39.47,1,0.95,6106,115.08142,124.614104,134.48687,140.470993,I,Above,Hip,0,5701,Wood,34.59816279,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9090,NJBF000080761,1310 RAY AVE,Brigantine,NJ,39.4161915,-74.37407796,RES1,3001,,17,NE,1989,1989,3102,2,1,1790.334955,1790.334955,3507,NO,26.5,40.52,1,1.82,6106,115.160829,124.679292,134.574033,140.422288,I,Above,Flat,0,5701,Wood,33.51177301,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 9091,NJBF000078111,312 10TH STREET SO,Brigantine,NJ,39.40301098,-74.3696216,RES1,3001,,16,NE,1954,1954,3102,2,1,1022.993927,1022.993927,3502,NO,48.86,63.27,5,12.67,6106,115.388894,124.895189,134.810872,140.661017,I,Above,Gable,0,5701,Wood,56.06485824,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9092,NJBF000075782,257 40TH STREET SO,Brigantine,NJ,39.39111252,-74.39217216,RES1,3001,,43,NE,1947,1947,3102,2,2,891.3091936,891.3091936,3507,YES,28.78,35.99,1,-0.12,6106,115.055226,124.590957,134.459468,140.460027,I,Above,Gable,0,5701,Wood,32.38561027,0,0,,,,1,1,,0.03,nav,1,1947,2,, 9093,NJBF000078329,1223 BAYSHORE AVE,Brigantine,NJ,39.40476848,-74.37413733,RES1,3001,,16,NE,1960,1960,3102,2,1,1611.286555,1611.286555,3505,NO,40.25,46.2,3,2.84,6106,115.278469,124.792325,134.695794,140.567498,I,Above,Hip,0,5701,Wood,43.22623706,0,0,,,,1,1,,0.03,nav,1,1960,2,, 9094,NJBF000076361,226 36TH STREET SO,Brigantine,NJ,39.39313335,-74.39011245,RES1,3001,,16,NE,1981,1981,3102,1,1,1465.928913,1465.928913,3507,NO,14.55,20.33,1,1.99,6106,115.075794,124.608968,134.481239,140.465859,I,Above,Hip,0,5701,Wood,17.44048213,0,0,,,,1,1,,0.03,nav,1,1981,1,, 9095,NJBF000076162,3207 OCEAN AVE,Brigantine,NJ,39.3924513,-74.3845892,RES1,3001,,17,NE,1954,1954,3102,2,1,1265.172914,1265.172914,3507,NO,28.48,40.93,1,-0.31,6106,115.197188,124.719186,134.604515,140.561609,I,Above,Flat,0,5701,Wood,34.70307229,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9096,NJBF000076060,,Brigantine,NJ,39.392099,-74.3858185,RES1,3001,,NaN,NE,1969,0,3102,2,1,2643.70607,2643.70607,3507,NO,29.46,38.69,1,2.6,6106,115.175726,124.699732,134.582362,140.546936,I,Above,Flat,0,5701,Wood,34.07679993,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9097,NJBF000078026,1604 BAYSHORE AVE,Brigantine,NJ,39.40240466,-74.3763401,RES1,3001,,16,NE,1954,1954,3101,1,1,1708.351842,1708.351842,3507,YES,14.39,29.07,1,0.39,6106,115.258704,124.774323,134.673955,140.562885,I,Above,Flat,0,5701,Wood,21.73125613,0,0,,,,1,1,,0.03,nav,1,1954,1,, 9098,NJBF000076823,3813-17 ATL-BRIGANTINE BL,Brigantine,NJ,39.39493362,-74.39389875,RES1,3001,,45,NE,1970,1970,3102,2,4,2883.595752,2883.595752,3507,NO,25.47,31.92,1,2.78,6106,114.97792,124.519913,134.382677,140.382008,I,Above,Gable,0,5701,Wood,28.69709693,0,0,,,,1,1,,0.03,nav,1,1970,2,, 9099,NJBF000076140,251 37TH STREET SO,Brigantine,NJ,39.39236499,-74.38999958,RES1,3001,,15,NE,1955,1955,3102,1,1,725.7918796,725.7918796,3507,NO,14.65,22.43,1,2.26,6106,115.086484,124.618838,134.491723,140.477738,I,Above,Gable,0,5701,Wood,18.54213819,0,0,,,,1,1,,0.03,nav,1,1955,1,, 9100,NJBF000076236,341 33RD STREET SO,Brigantine,NJ,39.39267691,-74.38528653,RES1,3001,,16,NE,1955,1955,3102,2,1,833.8099378,833.8099378,3507,NO,24.69,36.25,1,-0.47,6106,115.180338,124.703841,134.587446,140.547732,I,Above,Gable,0,5701,Wood,30.46921525,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9101,NJBF000076453,210 36TH STREET SO,Brigantine,NJ,39.39347298,-74.39065223,RES1,3001,,43,NE,1953,1953,3102,1,2,765.0904124,765.0904124,3507,NO,21.04,27.09,1,1.77,6106,115.060932,124.595429,134.466303,140.45285,I,Above,Gable,0,5701,Wood,24.0648198,0,1.2,,,,1,1,,0.03,nav,1,1953,1,, 9102,NJBF000076467,210 36TH STREET SO,Brigantine,NJ,39.39353221,-74.3905552,RES1,3001,,43,NE,1953,1953,3102,1,2,784.7053663,784.7053663,3507,NO,15.26,28.34,1,0.65,6106,115.062296,124.596645,134.467712,140.453604,I,Above,Gable,0,5701,Wood,21.79926153,0,1.2,,,,1,1,,0.03,nav,1,1953,1,, 9103,NJBF000074240,4619 HARBOR BEACH BLVD,Brigantine,NJ,39.38552243,-74.39912336,RES1,3001,,43,NE,1970,1970,3102,2,2,5461.699443,5461.699443,3507,NO,35.33,46.3,1,1.24,6106,114.972445,124.518421,134.373714,140.425022,I,Above,Gable,0,5701,Wood,40.81736459,0,0,,,,1,1,,0.03,nav,1,1970,2,, 9104,NJBF000078020,1307-17 W BRIGANTINE AVE,Brigantine,NJ,39.40236874,-74.37278784,COM1,3001,,NaN,ME,1964,0,3401,2,1,8064.289547,8064.289547,3507,NO,31.29,44.16,1,0.42,6106,115.331433,124.841735,134.750028,140.619377,I,Above,Flat,0,NaN,Wood,37.72565769,0,0,,,,1,1,,0.03,nav,1,1964,2,, 9105,NJBF000076520,218 35TH STREET SO,Brigantine,NJ,39.39376728,-74.38965227,RES1,3001,,43,NE,1964,1964,3102,2,2,1346.315425,1346.315425,3507,NO,35.36,47.71,1,0.43,6106,115.078403,124.611152,134.484172,140.464774,I,Above,Hip,0,5701,Wood,41.53378846,0,0,,,,1,1,,0.03,nav,1,1964,2,, 9106,NJBF000078000,328 11TH STREET SO,Brigantine,NJ,39.4022237,-74.3700725,RES1,3001,,16,NE,1955,1955,3102,2,1,1146.612416,1146.612416,3502,NO,37.92,48.75,5,-0.05,6106,115.38816,124.894477,134.809527,140.663884,I,Above,Flat,0,5701,Wood,43.33577869,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9107,NJBF000075937,17 BEACH COVE,Brigantine,NJ,39.39168387,-74.40173278,RES1,3001,,16,NE,1972,1972,3102,2,1,1310.271389,1310.271389,3507,NO,36.36,43.07,1,1.58,6106,114.850267,124.406925,134.25388,140.300768,I,Above,Gable,0,5701,Wood,39.71532756,0,0,,,,1,1,,0.03,nav,1,1972,2,, 9108,NJBF000076480,3606 BAYSHORE AVE,Brigantine,NJ,39.39357364,-74.39084837,RES1,3001,,43,NE,1953,1953,3102,2,3,1228.213579,1228.213579,3507,YES,32.2,44.23,1,1.37,6106,115.055781,124.590741,134.461119,140.448419,I,Above,Flat,0,5701,Wood,38.21185607,0,0,,,,1,1,,0.03,nav,1,1953,2,, 9109,NJBF000075897,301 37TH STREET SO,Brigantine,NJ,39.39154859,-74.3888592,RES1,3001,,16,NE,1961,1961,3102,1,1,950.8970416,950.8970416,3507,NO,17.63,22.93,1,0.09,6106,115.118994,124.64842,134.524284,140.506411,I,Above,Hip,0,5701,Wood,20.28079857,0,1.1,,,,1,1,,0.03,nav,1,1961,1,, 9110,NJBF000077904,1101 OCEAN AVE,Brigantine,NJ,39.40154794,-74.36942666,RES1,3001,,19,NE,2011,2011,3102,3,1,1902.472944,1902.472944,3502,NO,44.92,57.13,5,3.42,6110,115.408523,124.913397,134.830446,140.682548,I,Above,Flat,0,5701,Wood,51.02394244,0,1.1,,,,1,1,,0.35,nav,1,2011,3,, 9111,NJBF000075886,237 40TH STREET SO,Brigantine,NJ,39.39150138,-74.39267383,RES1,3001,,17,NE,1999,1999,3102,2,1,1176.418906,1176.418906,3507,NO,33.4,42.1,1,2.32,6106,115.040579,124.57765,134.44485,140.446979,I,Above,Gable,0,5701,Wood,37.74718778,0,0,,,,1,1,,0.03,nav,1,1999,2,, 9112,NJBF000076473,,Brigantine,NJ,39.39355732,-74.3869704,COM1,3001,,NaN,ME,1969,0,3401,1,1,2390.747648,2390.747648,3507,NO,15.63,22.95,1,0.8,6106,115.136042,124.66346,134.542755,140.509811,I,Above,Flat,0,NaN,Wood,19.28764244,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9113,NJBF000076518,246 33RD STREET SO,Brigantine,NJ,39.39375024,-74.38709077,RES1,3001,,15,NE,1950,1950,3102,1,2,809.6549508,809.6549508,3507,NO,12.41,26.44,1,-0.33,6106,115.131445,124.659246,134.53817,140.505382,I,Above,Flat,0,5701,Wood,19.42368595,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 9114,NJBF000077946,340 11TH STREET SO,Brigantine,NJ,39.40185251,-74.36980048,RES1,3001,,18,NE,2012,2012,3102,3,1,1441.822539,1441.822539,3502,NO,43.32,56.56,5,6.35,6106,115.397678,124.903321,134.819268,140.672854,I,Above,Gable,0,5701,Wood,49.9421742,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 9115,NJBF000076792,307 29TH STREET SO,Brigantine,NJ,39.394826,-74.382818,RES1,3001,,16,NE,1927,1927,3102,2,1,927.546488,927.546488,3507,NO,29.35,42.11,1,2.77,6106,115.207688,124.728465,134.616831,140.558553,I,Above,Gable,0,5701,Wood,35.72989421,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 9116,NJBF000077528,204 22ND STREET SO,Brigantine,NJ,39.39926016,-74.3797534,RES1,3001,,18,NE,2011,2011,3101,2,1,2538.699933,2538.699933,3507,NO,36.21,50.65,1,2.48,6106,115.222618,124.741511,134.634807,140.549443,I,Above,Hip,0,5701,Wood,43.43384822,0,1.1,,,,1,1,,0.03,nav,1,2011,2,, 9117,NJBF000075953,317 36TH STREET SO,Brigantine,NJ,39.3917445,-74.387922,RES1,3001,,45,NE,1956,1956,3102,2,2,907.6182325,907.6182325,3507,NO,37.1,46.57,1,1.12,6106,115.1362,124.663953,134.541882,140.518558,I,Above,Gable,0,5701,Wood,41.83565947,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9118,NJBF000077553,1605 OCEAN AVE,Brigantine,NJ,39.3994005,-74.373472,RES1,3001,,17,NE,1995,1995,3102,2,1,2024.894646,2024.894646,3505,NO,22.21,32.07,3,-0.13,6106,115.349376,124.858408,134.766761,140.646404,I,Above,Flat,0,5701,Wood,27.1420821,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 9119,NJBF000077544,1607 OCEAN AVE,Brigantine,NJ,39.39934637,-74.37361026,RES1,3001,,NaN,NE,1995,1962,3102,2,1,2416.746605,2416.746605,3505,NO,27.08,33.24,3,1.98,6110,115.347146,124.856345,134.764391,140.644929,I,Above,Flat,0,5701,Wood,30.15986495,0,0,,,,1,1,,0.35,nav,1,1995,2,, 9120,NJBF000076056,265 37TH STREET SO,Brigantine,NJ,39.39209017,-74.3896027,RES1,3001,,29,NE,1925,1925,3102,2,2,1706.59268,1706.59268,3507,NO,26.2,33.51,1,2.61,6106,115.097696,124.629041,134.50296,140.487607,I,Above,Hip,0,5701,Wood,29.85509772,0,0,,,,1,1,,0.03,nav,1,1925,2,, 9121,NJBF000076144,344 33RD STREET SO,Brigantine,NJ,39.39237856,-74.38556389,RES1,3001,,15,NE,1955,1955,3102,2,1,1291.798054,1291.798054,3507,YES,31.38,45,1,-0.67,6106,115.177893,124.701661,134.584756,140.54727,I,Above,Gable,0,5701,Wood,38.19064224,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9122,NJBF000077534,307 19TH STREET SO,Brigantine,NJ,39.3992914,-74.37566603,RES1,3001,,19,NE,2008,2008,3102,3,1,1604.486449,1604.486449,3507,NO,34.76,42.54,1,1.95,6106,115.305813,124.818148,134.721238,140.613378,I,Above,Hip,0,5701,Wood,38.64641181,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 9123,NJBF000075876,257 39TH STREET SO,Brigantine,NJ,39.39146511,-74.39132104,RES1,3001,,16,NE,1949,1949,3102,1,1,855.1833288,855.1833288,3507,NO,11.85,23.26,1,-0.19,6106,115.068995,124.603276,134.47356,140.468786,I,Above,Gable,0,5701,Wood,17.55513472,0,0,,,,1,1,,0.03,nav,1,1949,1,, 9124,NJBF000075676,,Brigantine,NJ,39.39067767,-74.39093148,RES1,3001,,NaN,NE,1969,0,3102,2,1,1644.866486,1644.866486,3507,NO,31.4,41.69,1,-0.33,6106,115.085696,124.618535,134.49005,140.4853,I,Above,Flat,0,5701,Wood,36.5473907,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9125,NJBF000077507,2101 W BRIGANTINE AVE,Brigantine,NJ,39.39912871,-74.37854548,RES1,3001,,17,NE,1948,1948,3101,2,1,2061.587231,2061.587231,3507,NO,36.87,50.86,1,0.9,6106,115.248741,124.765556,134.661812,140.570175,I,Above,Gable,0,5701,Wood,43.86649197,0,0,,,,1,1,,0.03,nav,1,1948,2,, 9126,NJBF000076760,4145 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39469627,-74.40108936,RES1,3001,,16,NE,1966,1966,3102,2,1,1204.211986,1204.211986,3507,NO,26.45,40.81,1,2.37,6106,114.831186,124.388135,134.234971,140.270323,I,Above,Gable,0,5701,Wood,33.63004019,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 9127,NJBF000075235,102 45TH STREET SO,Brigantine,NJ,39.38915083,-74.39671077,RES1,3001,,16,NE,1978,1978,3102,1,1,2165.532214,2165.532214,3507,NO,16.75,22.55,1,2.18,6106,114.982537,124.526275,134.385455,140.414506,I,Above,Hip,0,5701,Wood,19.64782476,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 9128,NJBF000077521,304 19TH STREET SO,Brigantine,NJ,39.39919773,-74.37633241,RES1,3001,,16,NE,1954,1954,3102,1,1,1793.081501,1793.081501,3507,NO,14.98,28.71,1,0.17,6106,115.29322,124.806531,134.708066,140.604105,I,Above,Hip,0,5701,Wood,21.84350304,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 9129,NJBF000074858,4407 W BRIGANTINE AVE,Brigantine,NJ,39.38800279,-74.39386899,RES1,3001,,16,NE,1952,1952,3102,2,1,1171.649704,1171.649704,3507,NO,41.38,55.7,1,2.8,6106,115.054268,124.59089,134.456877,140.474486,I,Above,Gable,0,5701,Wood,48.54205051,0,0,,,,1,1,,0.03,nav,1,1952,2,, 9130,NJBF000076148,227 38TH STREET SO,Brigantine,NJ,39.39238855,-74.3912655,RES1,3001,,16,NE,1953,1953,3102,2,1,1540.053271,1540.053271,3507,NO,37.22,50.33,1,0.67,6106,115.060036,124.594938,134.464925,140.457458,I,Above,Hip,0,5701,Wood,43.77387729,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 9131,NJBF000075243,50 SHIPMASTER DR,Brigantine,NJ,39.38920725,-74.40262108,RES1,3001,,16,NE,1970,1970,3102,2,1,1277.440472,1277.440472,3507,NO,36.09,42.44,1,1.15,6106,114.85873,124.415746,134.261914,140.320142,I,Above,Gable,0,5701,Wood,39.26314804,0,0,,,,1,1,,0.03,nav,1,1970,2,, 9132,NJBF000075729,339 37TH STREET SO,Brigantine,NJ,39.39089616,-74.38789855,RES1,3001,,43,NE,1954,1954,3102,2,1,1348.525348,1348.525348,3507,NO,34.88,42.2,1,-0.27,6110,115.145994,124.672963,134.551313,140.53003,I,Above,Hip,0,5701,Wood,38.54019207,0,0,,,,1,1,,0.35,nav,1,1954,2,, 9133,NJBF000077508,205 23RD STREET SO,Brigantine,NJ,39.3991373,-74.3801359,RES1,3001,,16,NE,1957,1957,3101,2,1,1606.648996,1606.648996,3507,YES,30.02,40.67,1,0.33,6106,115.216098,124.735539,134.627992,140.544988,I,Above,Hip,0,5701,Wood,35.3446093,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 9134,NJBF000075888,16 BEACH COVE,Brigantine,NJ,39.39150629,-74.4021678,RES1,3001,,16,NE,1976,1976,3102,2,1,1356.693696,1356.693696,3507,YES,29.56,40.61,1,1.18,6106,114.843125,124.40065,134.246739,140.296233,I,Above,Hip,0,5701,Wood,35.0885343,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 9135,NJBF000076134,3213 OCEAN AVE,Brigantine,NJ,39.3923433,-74.38475093,RES1,3001,,43,NE,1956,1956,3102,2,2,1104.513628,1104.513628,3507,NO,40.99,54.6,1,2.19,6106,115.195036,124.717241,134.602241,140.560476,I,Above,Flat,0,5701,Wood,47.79751653,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9136,NJBF000076116,3219 OCEAN AVE,Brigantine,NJ,39.39227953,-74.38486893,RES1,3001,,20,NE,2010,2010,3102,3,1,1547.363295,1547.363295,3507,YES,51.26,58.29,1,-0.57,6106,115.193296,124.715667,134.600421,140.559447,I,Above,Flat,0,5701,Wood,54.77183161,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 9137,NJBF000075350,,Brigantine,NJ,39.38958526,-74.39204526,RES1,3001,,NaN,NE,1969,0,3102,2,1,2438.277478,2438.277478,3507,NO,33.66,39.12,1,0.34,6110,115.074642,124.608828,134.478282,140.482208,I,Above,Gable,0,5701,Wood,36.38891465,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9138,NJBF000075791,356 35TH STREET SO,Brigantine,NJ,39.39115182,-74.38662744,RES1,3001,,16,NE,1958,1958,3102,2,1,1621.082984,1621.082984,3507,YES,29.07,34.55,1,-0.92,6106,115.169437,124.694155,134.575325,140.546611,I,Above,Gable,0,5701,Wood,31.81156117,0,0,,,,1,1,,0.03,nav,1,1958,2,, 9139,NJBF000075976,121 SHIPMASTER DRIVE,Brigantine,NJ,39.39181318,-74.40315379,RES1,3001,,18,NE,1994,1994,3102,3,1,2179.295625,2179.295625,3507,YES,56.29,67.62,1,2.23,6106,114.819221,124.379162,134.222951,140.276315,I,Above,Flat,0,5701,Wood,61.95813405,0,1.1,,,,1,1,,0.03,nav,1,1994,3,, 9140,NJBF000074960,343 42ND STREET SO,Brigantine,NJ,39.3882896,-74.39080656,RES1,3001,,47,NE,1977,1977,3102,3,2,1480.949885,1480.949885,3507,NO,55.38,67.24,1,2.12,6110,115.114599,124.645048,134.517823,140.518673,I,Above,Hip,0,5701,Wood,61.31183555,0,0,,,,1,1,,0.35,nav,1,1977,3,, 9141,NJBF000075522,4805 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.390166,-74.41324114,RES1,3001,,19,NE,2007,2007,3103,3,1,1957.267503,1957.267503,3505,NO,45.09,59.09,3,5.26,6106,114.625682,124.20881,134.031878,140.136791,I,Above,Flat,0,5701,Wood,52.09199641,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 9142,NJBF000074823,311 44TH STREET SO,Brigantine,NJ,39.38788106,-74.39279516,RES1,3001,,47,NE,1978,1978,3102,2,2,1929.178547,1929.178547,3507,NO,33.42,43.73,1,1.32,6110,115.077913,124.612139,134.480585,140.492938,I,Above,Gable,0,5701,Wood,38.57496656,0,1.1,,,,1,1,,0.35,nav,1,1978,2,, 9143,NJBF000075903,336 35TH STREET SO,Brigantine,NJ,39.391573,-74.3871165,RES1,3001,,16,NE,1946,1946,3102,2,1,1275.694361,1275.694361,3507,NO,28.46,42.22,1,-0.49,6106,115.154703,124.680742,134.5606,140.533437,I,Above,Hip,0,5701,Wood,35.3375575,0,0,,,,1,1,,0.03,nav,1,1946,2,, 9144,NJBF000075353,5 44TH COVE,Brigantine,NJ,39.38959182,-74.3966891,RES1,3001,,16,NE,1967,1967,3102,1,1,2253.571947,2253.571947,3507,NO,18.5,27.06,1,0.12,6106,114.978148,124.522193,134.381234,140.408968,I,Above,Gable,0,5701,Wood,22.78337024,0,0,,,,1,1,,0.03,nav,1,1967,1,, 9145,NJBF000075728,269 40TH STREET SO,Brigantine,NJ,39.39089528,-74.39183958,RES1,3001,,17,NE,2002,2002,3102,2,1,1235.362848,1235.362848,3507,NO,29.69,36.26,1,2.06,6106,115.064492,124.599366,134.468724,140.468136,I,Above,Gable,0,5701,Wood,32.97881364,0,0,,,,1,1,,0.03,nav,1,2002,2,, 9146,NJBF000076709,307 30TH STREET SO,Brigantine,NJ,39.39448418,-74.38359594,RES1,3001,,17,NE,1955,1955,3102,1,1,2984.594236,2984.594236,3507,NO,11.36,18.79,1,0.58,6106,115.195418,124.717318,134.604025,140.550773,I,Above,Hip,0,5701,Wood,15.07481138,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 9147,NJBF000075346,,Brigantine,NJ,39.38957551,-74.40222385,RES1,3001,,NaN,NE,1997,0,3102,2,1,4836.099123,4836.099123,3507,NO,31.42,41.86,1,-0.14,6106,114.862983,124.419351,134.266217,140.321461,I,Above,Gable,0,5701,Wood,36.64085899,0,0,,,,1,1,,0.03,nav,1,1997,2,, 9148,NJBF000074943,9 45TH COVE,Brigantine,NJ,39.3882534,-74.39666241,RES1,3001,,16,NE,1966,1966,3102,2,1,1565.655361,1565.655361,3507,NO,34.88,48.57,1,2.25,6110,114.99345,124.536334,134.395996,140.427256,I,Above,Gable,0,5701,Wood,41.72496223,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 9149,NJBF000076142,333 34TH STREET SO,Brigantine,NJ,39.39236716,-74.38617053,RES1,3001,,16,NE,1954,1954,3102,2,2,1398.220508,1398.220508,3507,NO,34.49,41.13,1,-0.78,6106,115.165513,124.690423,134.572116,140.537908,I,Above,Hip,0,5701,Wood,37.80628215,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9150,NJBF000076121,337 34TH STREET SO,Brigantine,NJ,39.39230225,-74.38605978,RES1,3001,,15,NE,1960,1960,3102,1,2,1950.210366,1950.210366,3507,NO,18.69,25.2,1,2.62,6106,115.168513,124.693156,134.575135,140.540496,I,Above,Gable,0,5701,Wood,21.94519409,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9151,NJBF000077686,,Brigantine,NJ,39.40034371,-74.37058294,RES1,3001,,NaN,NE,1969,0,3102,2,1,2239.896863,2239.896863,3502,NO,43.76,51,5,5.74,6110,115.397991,124.903518,134.818412,140.679664,I,Above,Hip,0,5701,Wood,47.37861394,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9152,NJBF000076446,3313 W BRIGANTINE AVE,Brigantine,NJ,39.3934415,-74.3872095,RES1,3001,,16,NE,1940,1940,3102,2,1,927.35255,927.35255,3507,NO,40.66,48.06,1,1.78,6106,115.132366,124.660147,134.538945,140.507555,I,Above,Flat,0,5701,Wood,44.35849661,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 9153,NJBF000076468,3313 W BRIGANTINE AVE,Brigantine,NJ,39.39353235,-74.38737455,RES1,3001,,16,NE,1940,1940,3102,2,1,1278.895399,1278.895399,3507,NO,28.02,33.96,1,1.13,6106,115.127962,124.656132,134.534503,140.503764,I,Above,Gable,0,5701,Wood,30.99057488,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 9154,NJBF000077702,213 19TH STREET SO,Brigantine,NJ,39.40040222,-74.3767096,RES1,3001,,16,NE,1956,1956,3101,2,1,1954.880021,1954.880021,3507,YES,25.5,30.98,1,2.39,6106,115.272565,124.787374,134.687313,140.582731,I,Above,Gable,0,5701,Wood,28.23939166,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9155,NJBF000075938,,Brigantine,NJ,39.39168781,-74.38480504,RES3C,3001,,NaN,E,1969,0,3303,4,1,1436.772701,1436.772701,3507,NO,72.13,84.46,1,-0.69,6106,115.20111,124.72283,134.607991,140.568144,I,Above,Gable,0,NaN,Wood,78.2908115,0,0,,,,1,1,,0.03,nav,1,1969,4,, 9156,NJBF000076045,221 39TH STREET SO,Brigantine,NJ,39.39204656,-74.39206154,RES1,3001,,43,NE,1949,1949,3102,1,2,1783.069152,1783.069152,3507,NO,21.11,35.93,1,1.75,6106,115.047291,124.583537,134.451874,140.449414,I,Above,Flat,0,5701,Wood,28.51741215,0,0,,,,1,1,,0.03,nav,1,1949,1,, 9157,NJBF000075602,101 LAGOON BLVD,Brigantine,NJ,39.39047276,-74.40096225,RES1,3001,,17,NE,1998,1998,3102,1,1,3133.914121,3133.914121,3507,YES,15.74,29.7,1,1.59,6106,114.87952,124.433653,134.282869,140.329416,I,Above,Hip,0,5701,Wood,22.71735072,0,1.2,,,,1,1,,0.03,nav,1,1998,1,, 9158,NJBF000076411,255 35TH STREET SO,Brigantine,NJ,39.39329852,-74.38842066,RES1,3001,,43,NE,1964,1964,3102,2,2,1329.139698,1329.139698,3507,NO,21.83,34.38,1,-0.35,6106,115.108917,124.638914,134.514984,140.490343,I,Above,Gable,0,5701,Wood,28.10409817,0,0,,,,1,1,,0.03,nav,1,1964,2,, 9159,NJBF000075282,6 EXPLORER RD,Brigantine,NJ,39.38934793,-74.4001976,RES1,3001,,16,NE,1968,1968,3102,2,1,1128.800758,1128.800758,3507,YES,29.74,35.16,1,2.28,6106,114.907753,124.459362,134.310759,140.356709,I,Above,Flat,0,5701,Wood,32.44818595,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9160,NJBF000074072,6 DELMAR DRIVE,Brigantine,NJ,39.38473868,-74.40421347,RES3B,3001,,33,ME,1980,1980,3301,2,1,6068.772969,6068.772969,3507,YES,31.6,41.66,1,1.84,6106,114.874749,124.431961,134.276515,140.355416,I,Above,Gable,0,5701,Wood,36.62898545,0,0,,,,1,1,,0.03,nav,1,1980,2,, 9161,NJBF000076445,250 34TH STREET SO,Brigantine,NJ,39.39343429,-74.38804153,RES1,3001,,16,NE,1947,1947,3102,1,1,1061.008208,1061.008208,3507,NO,14.31,21.51,1,2.38,6106,115.115268,124.64464,134.521519,140.494543,I,Above,Flat,0,5701,Wood,17.90884317,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 9162,NJBF000075368,332 ARBEGAST DRIVE,Brigantine,NJ,39.38964952,-74.40449047,RES3B,3001,,35,ME,1998,1998,3301,2,1,4227.696041,4227.696041,3507,NO,35.64,45.64,1,2.16,6106,114.814825,124.376476,134.218394,140.284366,I,Above,Hip,0,5701,Wood,40.63759442,0,0,,,,1,1,,0.03,nav,1,1998,2,, 9163,NJBF000076718,3620 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39452022,-74.39079169,COM1,3001,,NaN,ME,1969,0,3401,1,1,3719.717967,3719.717967,3507,NO,18.57,29.56,1,1.05,6106,115.046678,124.582204,134.452243,140.436817,I,Above,Flat,0,NaN,Wood,24.06269031,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9164,NJBF000074062,30 BEACON LANE,Brigantine,NJ,39.38468846,-74.39742045,RES3C,3001,,37,ME,1978,1978,3301,3,1,7783.057435,7783.057435,3507,YES,44.33,49.45,1,1.3,6106,115.017264,124.558572,134.417899,140.462858,I,Above,Gable,0,5701,Wood,46.8889905,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 9165,NJBF000075509,3912 W BRIGANTINE AVE,Brigantine,NJ,39.39010717,-74.39057198,RES1,3001,,43,NE,1954,1954,3102,2,2,962.8141121,962.8141121,3507,NO,30.24,37.19,1,-0.87,6106,115.099404,124.631022,134.503597,140.498457,I,Above,Hip,0,5701,Wood,33.71455217,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9166,NJBF000075318,318 40TH STREET SO,Brigantine,NJ,39.38946536,-74.39055443,RES1,3001,,43,NE,1980,1980,3102,2,2,1518.69194,1518.69194,3507,NO,36.8,46.65,1,1.08,6110,115.106851,124.637862,134.510743,140.507185,I,Above,Flat,0,5701,Wood,41.72358289,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 9167,NJBF000076089,403 32ND STREET SO,Brigantine,NJ,39.39220112,-74.38345702,RES1,3001,,18,NE,1988,1988,3102,2,1,1996.531884,1996.531884,3507,NO,28.44,33.8,1,2.37,6106,115.22323,124.742898,134.630978,140.582565,I,Above,Gable,0,5701,Wood,31.11816139,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 9168,NJBF000075366,4411 HARBOR BEACH BLVD,Brigantine,NJ,39.38964596,-74.39775794,RES1,3001,,17,NE,2002,2002,3102,2,1,2025.063984,2025.063984,3507,NO,35.28,49.89,1,2.98,6106,114.955315,124.501734,134.35838,140.39135,I,Above,Gable,0,5701,Wood,42.58255674,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 9169,NJBF000075332,342 39TH STREET SO,Brigantine,NJ,39.38953407,-74.38933161,RES1,3001,,45,NE,1952,1952,3102,2,2,1733.979007,1733.979007,3507,YES,29.97,36.76,1,2.46,6106,115.131378,124.659971,134.535606,140.525422,I,Above,Hip,0,5701,Wood,33.36569251,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 9170,NJBF000075232,14 EXPLORER RD,Brigantine,NJ,39.38912965,-74.40127938,RES1,3001,,16,NE,1968,1968,3102,2,1,2089.9712,2089.9712,3507,YES,37.04,42.98,1,1.87,6106,114.887593,124.441484,134.29061,140.342499,I,Above,Gable,0,5701,Wood,40.00801387,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9171,NJBF000076378,3401 W BRIGANTINE AVE,Brigantine,NJ,39.39319713,-74.38766591,RES1,3001,,45,NE,1950,1950,3102,2,3,2824.794645,2824.794645,3507,NO,29.55,40.07,1,2.19,6106,115.12561,124.65407,134.531928,140.503569,I,Above,Hip,0,5701,Wood,34.80741141,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 9172,NJBF000076108,3506 W BRIGANTINE AVE,Brigantine,NJ,39.39224654,-74.38801984,RES1,3001,,45,NE,1952,1952,3102,2,3,1021.305805,1021.305805,3507,NO,23.76,31.19,1,-0.33,6106,115.12868,124.657047,134.534527,140.510445,I,Above,Gable,0,5701,Wood,27.47349867,0,0,,,,1,1,,0.03,nav,1,1952,2,, 9173,NJBF000075505,4407 PRIVATEER RD,Brigantine,NJ,39.39008479,-74.3986402,RES1,3001,,16,NE,1968,1968,3102,2,1,1245.765829,1245.765829,3507,YES,26.38,39.63,1,1.35,6106,114.932144,124.480835,134.335336,140.371504,I,Above,Gable,0,5701,Wood,33.00418986,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9174,NJBF000075241,334 40TH STREET SO,Brigantine,NJ,39.38918845,-74.39010573,RES1,3001,,45,NE,1954,1954,3102,3,2,1118.662023,1118.662023,3507,NO,50.1,57.39,1,2.06,6110,115.119182,124.649028,134.523039,140.517844,I,Above,Gable,0,5701,Wood,53.74419167,0,0,,,,1,1,,0.35,nav,1,1954,3,, 9175,NJBF000076430,3612 BAYSHORE AVE,Brigantine,NJ,39.39337318,-74.39100649,RES1,3001,,45,NE,1955,1955,3102,1,2,2098.868913,2098.868913,3507,NO,18.54,27.65,1,-0.68,6106,115.054699,124.589824,134.459939,140.448575,I,Above,Gable,0,5701,Wood,23.0915964,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 9176,NJBF000074684,9 SHIPMASTER DR,Brigantine,NJ,39.38744194,-74.39874524,RES1,3001,,16,NE,1968,1968,3102,1,1,1672.831324,1672.831324,3507,NO,18.47,29.3,1,2.87,6110,114.959028,124.505847,134.361235,140.405268,I,Above,Gable,0,5701,Wood,23.88442542,0,0,,,,1,1,,0.35,nav,1,1968,1,, 9177,NJBF000076362,239 36TH STREET SO,Brigantine,NJ,39.39313724,-74.38948783,RES1,3001,,43,NE,1964,1964,3102,2,2,1085.764841,1085.764841,3507,NO,26.99,35.67,1,-0.31,6106,115.088646,124.620595,134.494292,140.475651,I,Above,Gable,0,5701,Wood,31.32681603,0,0,,,,1,1,,0.03,nav,1,1964,2,, 9178,NJBF000076043,254 37TH STREET SO,Brigantine,NJ,39.39204141,-74.39023712,RES1,3001,,43,NE,1960,1960,3102,1,2,1437.957749,1437.957749,3507,NO,16.13,24.8,1,0.71,6106,115.085123,124.617689,134.490181,140.478269,I,Above,Gable,0,5701,Wood,20.46398204,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9179,NJBF000074673,5 SHIPMASTER DR,Brigantine,NJ,39.38741613,-74.39831439,RES1,3001,,16,NE,1968,1968,3102,1,1,1692.442978,1692.442978,3507,NO,17.06,31.07,1,-0.18,6110,114.968298,124.514128,134.370474,140.412409,I,Above,Gable,0,5701,Wood,24.06233433,0,0,,,,1,1,,0.35,nav,1,1968,1,, 9180,NJBF000077796,102 22ND STREET SO,Brigantine,NJ,39.40092094,-74.38126395,RES1,3001,,19,NE,2004,2004,3101,3,1,1880.867578,1880.867578,3507,NO,58.96,66.48,1,2.79,6106,115.173906,124.696404,134.585137,140.504065,I,Above,Hip,0,5701,Wood,62.71919848,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 9181,NJBF000077743,1313 OCEAN AVE,Brigantine,NJ,39.40064446,-74.37127956,RES1,3001,,18,NE,2005,2005,3102,3,1,2674.877812,2674.877812,3502,NO,54.57,62.89,5,13.36,6106,115.380594,124.887378,134.800389,140.664955,I,Above,Hip,0,5701,Wood,58.73042834,0,0,,,,1,1,,0.03,nav,1,2005,3,, 9182,NJBF000077867,201 18TH STREET SO,Brigantine,NJ,39.40133954,-74.3764564,RES1,3001,,17,NE,1956,1956,3101,2,1,3400.491501,3400.491501,3507,YES,30.13,37.49,1,-0.15,6106,115.267705,124.782783,134.682783,140.574709,I,Above,Hip,0,5701,Wood,33.80874314,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9183,NJBF000077870,212 16TH STREET SO,Brigantine,NJ,39.401365,-74.37488946,RES1,3001,,16,NE,1954,1954,3102,1,1,1889.343341,1889.343341,3505,NO,14.71,24.12,3,-2.48,6106,115.299392,124.812087,134.715867,140.599092,I,Above,Hip,0,5701,Wood,19.41358881,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 9184,NJBF000081090,814 LAFAYETTE BLVD,Brigantine,NJ,39.41750771,-74.3803883,RES1,3001,,16,NE,1969,1969,3103,1,1,1754.752649,1754.752649,3505,NO,17.49,28.27,3,-1.79,6106,115.019583,124.546129,134.424413,140.302807,I,Above,Flat,0,5701,Wood,22.87993085,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9185,NJBF000080924,817 W SHORE DR,Brigantine,NJ,39.41688521,-74.38252029,RES1,3001,,16,NE,1978,1978,3103,2,1,1326.171543,1326.171543,3505,NO,31.63,44.62,3,0.63,6106,114.982573,124.511953,134.385713,140.276094,I,Above,Gable,0,5701,Wood,38.12280657,0,0.1,,,,1,1,,0.03,nav,1,1978,2,, 9186,NJBF000080929,817 W SHORE DR,Brigantine,NJ,39.41691342,-74.38236424,RES1,3001,,16,NE,1978,1978,3103,2,1,507.4101692,507.4101692,3505,NO,29.09,34.64,3,4.09,6106,114.985461,124.514629,134.388735,140.278279,I,Above,Gable,0,5701,Wood,31.86814625,0,0.1,,,,1,1,,0.03,nav,1,1978,2,, 9187,NJBF000080793,800 SARAZEN RD,Brigantine,NJ,39.41631672,-74.37632308,RES1,3001,,17,NE,2002,2002,3103,2,1,2538.515791,2538.515791,3505,NO,24.38,39.06,3,-2.72,6106,115.114093,124.635338,134.524496,140.384333,I,Above,Hip,0,5701,Wood,31.72378828,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 9188,NJBF000080711,1303 DUNCAN PLACE,Brigantine,NJ,39.41598629,-74.37333057,RES1,3001,,16,NE,1988,1988,3102,2,1,1371.969323,1371.969323,3507,NO,34.86,41.45,1,2.46,6106,115.178036,124.695556,134.592307,140.436978,I,Above,Gable,0,5701,Wood,38.15450061,0,0,,,,1,1,,0.03,nav,1,1988,2,, 9189,NJBF000080642,705 LAFAYETTE BLVD,Brigantine,NJ,39.41573932,-74.37891818,RES1,3001,,17,NE,1967,1967,3103,2,1,2689.635617,2689.635617,3505,YES,18.11,23.15,3,-2.95,6106,115.067359,124.59185,134.475248,140.349689,I,Above,Gable,0,5701,Wood,20.63010396,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 9190,NJBF000080708,710 LAFAYETTE BLVD,Brigantine,NJ,39.41598122,-74.37970457,RES1,3001,,16,NE,1964,1964,3103,2,1,1979.912293,1979.912293,3505,NO,30.94,37.8,3,0.32,6106,115.048921,124.574477,134.455769,140.333761,I,Above,Gable,0,5701,Wood,34.37172688,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 9191,NJBF000080495,103 12TH STREET NO,Brigantine,NJ,39.41526496,-74.35793015,COM4,3001,,NaN,ME,1969,1950,3401,3,1,905.0608111,905.0608111,3507,NO,57.44,71.73,1,0.47,6106,115.495475,124.996491,134.932597,140.692239,I,Above,Gable,0,NaN,Wood,64.58483232,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9192,NJBF000080429,227 14TH STREET NO,Brigantine,NJ,39.41502138,-74.35501977,RES1,3001,,19,NE,2004,2004,3103,3,1,1564.655685,1564.655685,3507,NO,52.03,62.89,1,1.59,6106,115.556251,125.054549,134.998403,140.741226,I,Above,Gable,0,5701,Wood,57.45637423,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 9193,NJBF000075863,344 35TH STREET SO,Brigantine,NJ,39.39141501,-74.38692866,RES1,3001,,16,NE,1954,1954,3102,2,1,836.6046454,836.6046454,3507,NO,29.55,41.81,1,1.5,6106,115.160317,124.685853,134.566213,140.538447,I,Above,Gable,0,5701,Wood,35.68132586,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9194,NJBF000075209,4420 WHALERMAN RD,Brigantine,NJ,39.38906669,-74.39901442,RES1,3001,,16,NE,1968,1968,3102,1,1,2351.318923,2351.318923,3507,NO,12.58,27.54,1,1.04,6106,114.935516,124.48426,134.338382,140.379238,I,Above,Hip,0,5701,Wood,20.05793112,0,0,,,,1,1,,0.03,nav,1,1968,1,, 9195,NJBF000075179,,Brigantine,NJ,39.3889645,-74.391738,RES1,3001,,NaN,NE,1969,0,3102,2,1,1483.979701,1483.979701,3507,NO,36.81,50.19,1,-0.74,6110,115.087842,124.620843,134.491244,140.495204,I,Above,Gable,0,5701,Wood,43.49847949,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9196,NJBF000080190,11 CUMMINGS PLACE,Brigantine,NJ,39.41421438,-74.37203629,RES1,3001,,16,NE,1976,1976,3102,2,1,1758.221179,1758.221179,3507,NO,22.63,33.72,1,1.03,6106,115.222421,124.737896,134.639369,140.480459,I,Above,Gable,0,5701,Wood,28.17188571,0,0,,,,1,1,,0.03,nav,1,1976,2,, 9197,NJBF000078272,1118 W BEACH AVE,Brigantine,NJ,39.40431853,-74.37253765,RES1,3001,,15,NE,1956,1956,3102,1,1,1403.740073,1403.740073,3505,NO,13.17,23.16,3,-2.4,6106,115.315743,124.827035,134.734708,140.59851,I,Above,Gable,0,5701,Wood,18.165877,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9198,NJBF000077742,106 22ND STREET SO,Brigantine,NJ,39.40064434,-74.38101882,RES1,3001,,17,NE,1951,1951,3101,2,1,2309.720162,2309.720162,3507,NO,34.02,46.21,1,-0.56,6106,115.181879,124.703797,134.593278,140.511536,I,Above,Gable,0,5701,Wood,40.11110369,0,0,,,,1,1,,0.03,nav,1,1951,2,, 9199,NJBF000080170,,Brigantine,NJ,39.41414766,-74.35768368,RES1,3001,,NaN,NE,1969,0,3102,2,1,1581.658913,1581.658913,3507,NO,37.6,47.54,1,0.32,6106,115.512039,125.012166,134.94987,140.709929,I,Above,Gable,0,5701,Wood,42.57211117,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9200,NJBF000076197,3201 OCEAN AVE,Brigantine,NJ,39.39256256,-74.38450285,RES1,3001,,17,NE,1958,1958,3102,2,2,1992.504324,1992.504324,3507,NO,39.11,49.5,1,2.94,6106,115.197732,124.719668,134.605147,140.561501,I,Above,Flat,0,5701,Wood,44.30397984,0,0,,,,1,1,,0.03,nav,1,1958,2,, 9201,NJBF000078316,214 10TH STREET SO,Brigantine,NJ,39.40467646,-74.3712039,RES1,3001,,15,NE,1956,1956,3102,1,1,1431.37011,1431.37011,3505,NO,17.79,31.13,3,6.97,6106,115.339047,124.848715,134.759432,140.615033,I,Above,Hip,0,5701,Wood,24.45632998,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9202,NJBF000078055,348 9TH STREET SO,Brigantine,NJ,39.40261521,-74.36820467,RES1,3001,,16,NE,1952,1952,3102,2,1,1223.110684,1223.110684,3502,NO,34.38,45.93,5,1.2,6110,115.42187,124.925919,134.845356,140.688238,I,Above,Gable,0,5701,Wood,40.1577221,0,0,,,,1,1,,0.35,nav,1,1952,2,, 9203,NJBF000073393,1 SURF LANE,Brigantine,NJ,39.38035407,-74.4044536,RES1,3001,,17,NE,1975,1975,3101,2,1,2407.963436,2407.963436,3507,YES,36.76,49.47,1,1.46,6106,114.918923,124.472486,134.317992,140.410905,I,Above,Hip,0,5701,Wood,43.11614119,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 9204,NJBF000077109,,Brigantine,NJ,39.39658267,-74.38762001,COM1,3001,,NaN,ME,1969,0,3401,1,1,1465.604003,1465.604003,3507,NO,20.88,26.07,1,1.74,6106,115.089855,124.620724,134.496996,140.459905,I,Above,Flat,0,NaN,Wood,23.47580027,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9205,NJBF000076964,202 30TH STREET SO,Brigantine,NJ,39.3956043,-74.3855657,RES1,3001,,17,NE,1993,1993,3102,2,1,1424.447154,1424.447154,3507,NO,30.35,41.94,1,0.28,6106,115.14273,124.669106,134.550657,140.505187,I,Above,Hip,0,5701,Wood,36.14663038,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 9206,NJBF000076984,404 23RD STREET SO,Brigantine,NJ,39.39570732,-74.37761981,RES1,3001,,21,NE,2003,2003,3102,3,1,2464.678552,2464.678552,3507,NO,44.57,51.79,1,-0.68,6110,115.304685,124.817209,134.717472,140.628636,I,Above,Hip,0,5701,Wood,48.17607741,0,1.1,,,,1,1,,0.35,nav,1,2003,3,, 9207,NJBF000077140,103 30TH STREET SO,Brigantine,NJ,39.39681872,-74.38631748,RES1,3001,,16,NE,1955,1955,3102,1,1,1869.975216,1869.975216,3507,NO,12.21,21.27,1,0.89,6106,115.114146,124.64277,134.52194,140.477444,I,Above,Flat,0,5701,Wood,16.73910141,0,0,,,,1,1,,0.03,nav,1,1955,1,, 9208,NJBF000077143,103 30TH STREET SO,Brigantine,NJ,39.396853,-74.386171,RES1,3001,,16,NE,1955,1955,3102,1,1,590.7620037,590.7620037,3507,NO,18.92,30.54,1,0.96,6106,115.116785,124.645165,134.524657,140.479309,I,Above,Gable,0,5701,Wood,24.72946886,0,0,,,,1,1,,0.03,nav,1,1955,1,, 9209,NJBF000077175,309 24TH STREET SO,Brigantine,NJ,39.39706636,-74.3793792,RES1,3001,,16,NE,1962,1962,3102,1,1,2146.765664,2146.765664,3507,NO,15.56,21.57,1,2.28,6106,115.253928,124.770542,134.665918,140.583614,I,Above,Gable,0,5701,Wood,18.56841042,0,0,,,,1,1,,0.03,nav,1,1962,1,, 9210,NJBF000076811,3907 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39488518,-74.3956396,RES1,3001,,16,NE,1949,1949,3102,1,1,1726.594332,1726.594332,3507,YES,18.37,25.24,1,0.48,6106,114.942367,124.487883,134.346748,140.354933,I,Above,Gable,0,5701,Wood,21.80352712,0,0,,,,1,1,,0.03,nav,1,1949,1,, 9211,NJBF000075019,31 SHIPMASTER DR,Brigantine,NJ,39.38846692,-74.40134194,RES1,3001,,16,NE,1968,1968,3102,2,1,1969.039915,1969.039915,3507,YES,28.22,41.16,1,2.78,6106,114.893556,124.447091,134.296366,140.350443,I,Above,Gable,0,5701,Wood,34.6904385,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 9212,NJBF000076816,3911 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39489644,-74.39580347,RES1,3001,,16,NE,1950,1950,3102,1,1,2125.563234,2125.563234,3507,NO,18.3,31.29,1,-0.85,6106,114.938869,124.484727,134.343219,140.352187,I,Above,Hip,0,5701,Wood,24.7961275,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 9213,NJBF000074553,119 HUDSON DR,Brigantine,NJ,39.38695766,-74.39565021,RES1,3001,,16,NE,1968,1968,3102,1,1,2161.742642,2161.742642,3507,NO,14.12,24.9,1,2.11,6110,115.028834,124.568357,134.430775,140.460401,I,Above,Hip,0,5701,Wood,19.5065398,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 9214,NJBF000074563,4601 HARBOR BEACH BLVD,Brigantine,NJ,39.38700296,-74.39800147,RES1,3001,,16,NE,1970,1970,3102,2,1,1754.470147,1754.470147,3507,YES,32.89,40.09,1,0.6,6110,114.979391,124.524162,134.38136,140.422859,I,Above,Gable,0,5701,Wood,36.49184287,0,0,,,,1,1,,0.35,nav,1,1970,2,, 9215,NJBF000075052,4504 WHALERMAN RD,Brigantine,NJ,39.38855861,-74.39906338,RES1,3001,,16,NE,1968,1968,3102,2,1,979.2013379,979.2013379,3507,NO,34.97,48.58,1,0.61,6106,114.94008,124.488533,134.342763,140.385278,I,Above,Flat,0,5701,Wood,41.77820758,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9216,NJBF000076667,4221 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3942672,-74.40373716,RES1,3001,,45,NE,1955,1955,3102,2,2,1644.019769,1644.019769,3507,NO,27.96,41.97,1,1.22,6106,114.78061,124.343189,134.184448,140.233601,I,Above,Flat,0,5701,Wood,34.96762891,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9217,NJBF000075540,312 ARBEGAST DRIVE,Brigantine,NJ,39.39023269,-74.40389865,RES3B,3001,,35,ME,2000,2000,3301,2,1,5232.916645,5232.916645,3507,NO,23.63,31.29,1,2.11,6106,114.820823,124.381486,134.224412,140.28587,I,Above,Gable,0,5701,Wood,27.46056148,0,0,,,,1,1,,0.03,nav,1,2000,2,, 9218,NJBF000074947,4513 PRIVATEER RD,Brigantine,NJ,39.3882645,-74.3990335,RES1,3001,,16,NE,1968,1968,3102,1,1,501.1776423,501.1776423,3507,NO,14.72,22.72,1,0.87,6110,114.943932,124.492083,134.3465,140.389692,I,Above,Flat,0,5701,Wood,18.72172858,0,0,,,,1,1,,0.35,nav,1,1968,1,, 9219,NJBF000074576,10 SHIPMASTER DR,Brigantine,NJ,39.387082,-74.39891167,RES1,3001,,16,NE,1970,1970,3102,1,1,1842.018914,1842.018914,3507,NO,19.08,24.49,1,0.46,6110,114.959529,124.506416,134.361579,140.407457,I,Above,Gable,0,5701,Wood,21.787917,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 9220,NJBF000076302,,Brigantine,NJ,39.39290491,-74.4052642,RES1,3001,,NaN,NE,1969,0,3102,2,1,2782.409146,2782.409146,3507,NO,24.89,33.51,1,0.29,6106,114.763364,124.328725,134.167382,140.227614,I,Above,Flat,0,5701,Wood,29.20087536,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9221,NJBF000076399,,Brigantine,NJ,39.39326088,-74.39334466,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4309.76879,4309.76879,3507,NO,12.27,24.73,1,0.98,6106,115.0075,124.547255,134.412112,140.413038,I,Above,Gable,0,5701,Wood,18.49880176,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9222,NJBF000077843,,Brigantine,NJ,39.40118679,-74.37969484,RES1,3001,,NaN,NE,1969,0,3101,1,1,1878.860344,1878.860344,3507,NO,11.76,23.17,1,-0.14,6106,115.203176,124.723276,134.615588,140.525483,I,Above,Gable,0,5701,Wood,17.46356975,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9223,NJBF000077608,111 24TH STREET SO,Brigantine,NJ,39.39980503,-74.3818379,RES1,3001,,15,NE,1956,1956,3101,1,1,1448.5941,1448.5941,3507,NO,14.77,20.89,1,-0.11,6106,115.174072,124.696817,134.584846,140.50944,I,Above,Flat,0,5701,Wood,17.83064884,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 9224,NJBF000077564,101 25TH STREET SO,Brigantine,NJ,39.39948953,-74.38312632,RES1,3001,,17,NE,2007,2007,3101,2,1,2903.283502,2903.283502,3507,NO,29.46,36.66,1,1.24,6106,115.151034,124.675767,134.560933,140.493131,I,Above,Gable,0,5701,Wood,33.05682945,0,0,,,,1,1,,0.03,nav,1,2007,2,, 9225,NJBF000077674,1805 W BRIGANTINE AVE,Brigantine,NJ,39.40026299,-74.37664084,RES1,3001,,16,NE,1955,1955,3101,2,1,1831.278428,1831.278428,3507,YES,21.9,32.69,1,-0.94,6106,115.275464,124.790064,134.69025,140.5856,I,Above,Gable,0,5701,Wood,27.29815456,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 9226,NJBF000077663,1805 W BRIGANTINE AVE,Brigantine,NJ,39.40020148,-74.37653218,RES1,3001,,16,NE,1955,1955,3101,2,1,2198.598017,2198.598017,3507,YES,40.31,52.12,1,2.96,6106,115.278355,124.792738,134.693223,140.588111,I,Above,Gable,0,5701,Wood,46.21453621,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 9227,NJBF000077281,205 26TH STREET SO,Brigantine,NJ,39.39766062,-74.38236072,RES1,3001,,16,NE,1956,1956,3102,1,1,1787.76599,1787.76599,3507,NO,18.32,30.77,1,2.26,6106,115.186374,124.708537,134.596527,140.528983,I,Above,Gable,0,5701,Wood,24.54307173,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9228,NJBF000077502,208 22ND STREET SO,Brigantine,NJ,39.39907966,-74.37956858,RES1,3001,,16,NE,1956,1956,3101,1,1,1839.80465,1839.80465,3507,NO,18.77,24.42,1,2.52,6106,115.228318,124.746778,134.640614,140.554668,I,Above,Gable,0,5701,Wood,21.59607464,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 9229,NJBF000073701,,Brigantine,NJ,39.38257774,-74.40465118,RES3D,3001,,NaN,ME,1969,0,3301,2,1,11099.44099,11099.44099,3507,NO,35.79,42.45,1,2.31,6106,114.889721,124.446011,134.290395,140.377768,I,Above,Flat,0,NaN,Wood,39.12142898,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9230,NJBF000077205,318 22ND STREET SO,Brigantine,NJ,39.39725813,-74.37791021,RES1,3001,,15,NE,1960,1960,3102,1,1,1347.172446,1347.172446,3507,NO,21.68,29.89,1,2.49,6106,115.281917,124.796237,134.695022,140.604202,I,Above,Hip,0,5701,Wood,25.78388724,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 9231,NJBF000077108,2804 REVERE BLVD,Brigantine,NJ,39.39657755,-74.3847811,RES1,3001,,18,NE,2009,2009,3102,2,1,3357.443307,3357.443307,3507,NO,33.27,43.97,1,0.72,6106,115.148347,124.674009,134.55689,140.504871,I,Above,Hip,0,5701,Wood,38.61761945,0,1.1,,,,1,1,,0.03,nav,1,2009,2,, 9232,NJBF000076842,3733 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39501343,-74.39309455,RES1,3001,,16,NE,1948,1948,3102,1,1,2389.267062,2389.267062,3507,NO,17.14,30.33,1,1.58,6106,114.993714,124.534139,134.398684,140.393745,I,Above,Flat,0,5701,Wood,23.73299855,0,0,,,,1,1,,0.03,nav,1,1948,1,, 9233,NJBF000075769,261 40TH STREET SO,Brigantine,NJ,39.39104719,-74.39204745,RES1,3001,,43,NE,1945,1945,3102,1,1,1515.528599,1515.528599,3507,YES,15.81,29.24,1,-0.9,6106,115.058538,124.59396,134.462783,140.462869,I,Above,Gable,0,5701,Wood,22.52735755,0,0,,,,1,1,,0.03,nav,1,1945,1,, 9234,NJBF000076670,3418 BAYSHORE AVE,Brigantine,NJ,39.3942865,-74.389554,COM1,3001,,NaN,ME,1969,0,3401,2,1,2011.345312,2011.345312,3507,NO,23.54,29.6,1,2.34,6106,115.074792,124.607733,134.480724,140.45949,I,Above,Hip,0,NaN,Wood,26.5735553,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9235,NJBF000074372,4611 HARBOR BEACH BLVD,Brigantine,NJ,39.38611673,-74.39848694,RES1,3001,,16,NE,1969,1969,3102,1,1,1348.409919,1348.409919,3507,NO,13.87,22.75,1,2.48,6110,114.979092,124.524165,134.380633,140.427057,I,Above,Gable,0,5701,Wood,18.30887884,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 9236,NJBF000073581,3 OCEAN DRIVE WEST,Brigantine,NJ,39.38176137,-74.40975636,RES1,3001,,16,NE,1977,1977,3103,1,1,2078.419873,2078.419873,3505,NO,11.52,18.17,3,0.01,6106,114.791622,124.359944,134.193836,140.308454,I,Above,Hip,0,5701,Wood,14.8445805,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 9237,NJBF000073544,5111 HARBOR BEACH BLVD,Brigantine,NJ,39.38149914,-74.4061339,RES1,3001,,16,NE,1977,1977,3101,2,1,1797.275394,1797.275394,3507,NO,31.62,39.85,1,0.84,6106,114.870729,124.429635,134.271225,140.36908,I,Above,Flat,0,5701,Wood,35.73535086,0,0,,,,1,1,,0.03,nav,1,1977,2,, 9238,NJBF000074295,4615 HARBOR BEACH BLVD,Brigantine,NJ,39.38579947,-74.39879179,RES1,3001,,43,NE,1971,1971,3102,2,2,1997.481095,1997.481095,3507,NO,30.74,41.85,1,1.74,6110,114.976267,124.521743,134.377659,140.426516,I,Above,Gable,0,5701,Wood,36.29754631,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 9239,NJBF000073518,5115 HARBOR BEACH BLVD,Brigantine,NJ,39.38129124,-74.40648543,RES1,3001,,16,NE,1975,1975,3103,2,1,1561.692613,1561.692613,3505,NO,23.21,35.94,3,0.75,6110,114.865699,124.425278,134.266193,140.366388,I,Above,Gable,0,5701,Wood,29.57645019,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 9240,NJBF000074177,4626 SCHOONER RD,Brigantine,NJ,39.38523396,-74.40000916,RES1,3001,,43,NE,1978,1978,3102,2,2,1541.490603,1541.490603,3507,NO,38.35,51.07,1,0.11,6110,114.95716,124.504906,134.358369,140.414958,I,Above,Hip,0,5701,Wood,44.71266861,0,0,,,,1,1,,0.35,nav,1,1978,2,, 9241,NJBF000074157,4628 SCHOONER RD,Brigantine,NJ,39.38513142,-74.40017909,RES1,3001,,43,NE,1977,1977,3102,2,2,1387.649557,1387.649557,3507,NO,29.73,36.19,1,-0.19,6110,114.954757,124.502802,134.355932,140.413667,I,Above,Gable,0,5701,Wood,32.96070228,0,0,,,,1,1,,0.35,nav,1,1977,2,, 9242,NJBF000076229,4417 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39266017,-74.40753203,RES1,3001,,43,NE,1956,1956,3103,1,2,1948.720317,1948.720317,3505,NO,14.37,19.44,3,-1.16,6106,114.718575,124.289074,134.122969,140.194465,I,Above,Gable,0,5701,Wood,16.9066071,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9243,NJBF000076243,220 37TH STREET SO,Brigantine,NJ,39.39270672,-74.3911782,RES1,3001,,15,NE,1954,1954,3102,1,1,847.6572595,847.6572595,3507,NO,16.26,30.38,1,-0.53,6106,115.05839,124.593359,134.463398,140.454649,I,Above,Hip,0,5701,Wood,23.31547895,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 9244,NJBF000078251,215 12TH STREET SO,Brigantine,NJ,39.40409801,-74.37226242,RES1,3001,,16,NE,1950,1950,3102,2,1,1622.274447,1622.274447,3505,NO,37.81,48.09,3,2.3,6106,115.3237,124.834455,134.742949,140.605678,I,Above,Gable,0,5701,Wood,42.95101401,0,0,,,,1,1,,0.03,nav,1,1950,2,, 9245,NJBF000075906,,Brigantine,NJ,39.39158502,-74.38646098,RES1,3001,,NaN,NE,1969,0,3102,2,1,1599.300345,1599.300345,3507,NO,37.89,51.55,1,1.23,6106,115.168106,124.692889,134.574256,140.543562,I,Above,Flat,0,5701,Wood,44.71795798,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9246,NJBF000075914,234 39TH STREET SO,Brigantine,NJ,39.39160969,-74.39215927,RES1,3001,,16,NE,1950,1950,3102,1,1,1239.35812,1239.35812,3507,NO,11.26,21.53,1,-0.16,6106,115.050056,124.586158,134.454475,140.453662,I,Above,Gable,0,5701,Wood,16.39668104,0,0,,,,1,1,,0.03,nav,1,1950,1,, 9247,NJBF000075929,214 40TH STREET SO,Brigantine,NJ,39.39165807,-74.39364577,RES1,3001,,18,NE,2004,2004,3102,3,1,1529.473079,1529.473079,3507,NO,40.89,55.19,1,2.87,6106,115.018716,124.557914,134.422849,140.429549,I,Above,Gable,0,5701,Wood,48.04121618,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 9248,NJBF000075864,311 37TH STREET SO,Brigantine,NJ,39.39141543,-74.38863765,RES1,3001,,14,NE,1954,1954,3102,1,1,981.8821311,981.8821311,3507,NO,15.13,27.48,1,1.98,6106,115.12503,124.653905,134.530335,140.51164,I,Above,Hip,0,5701,Wood,21.30532113,0,0,,,,1,1,,0.03,nav,1,1954,1,, 9249,NJBF000073459,5116 HARBOR BEACH BLVD,Brigantine,NJ,39.3808885,-74.4060165,RES1,3001,,43,NE,1975,1975,3101,2,2,1244.276859,1244.276859,3507,NO,35.49,50.43,1,0.86,6106,114.880075,124.438079,134.28011,140.379202,I,Above,Flat,0,5701,Wood,42.96069846,0,0,,,,1,1,,0.03,nav,1,1975,2,, 9250,NJBF000075697,330 37TH ST SO,Brigantine,NJ,39.39078179,-74.38844635,RES1,3001,,47,NE,1984,1984,3102,2,2,1237.831369,1237.831369,3507,NO,22.1,27.51,1,0.54,6106,115.135948,124.663894,134.541037,140.522947,I,Above,Gable,0,5701,Wood,24.80432652,0,0,,,,1,1,,0.03,nav,1,1984,2,, 9251,NJBF000075089,109 45TH STREET SO,Brigantine,NJ,39.38868496,-74.39617878,RES1,3001,,16,NE,1968,1968,3102,2,1,1568.435732,1568.435732,3507,NO,29.35,44.06,1,1.34,6106,114.998732,124.540928,134.401485,140.429108,I,Above,Hip,0,5701,Wood,36.70096138,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9252,NJBF000073454,18 SEASIDE RD,Brigantine,NJ,39.38084834,-74.40258989,RES1,3001,,16,NE,1975,1975,3101,2,1,2217.252006,2217.252006,3507,YES,36.3,49.02,1,1.11,6106,114.952412,124.501927,134.351262,140.433388,I,Above,Gable,0,5701,Wood,42.6597101,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 9253,NJBF000073124,48 OCEAN DRIVE WEST,Brigantine,NJ,39.3779928,-74.40797188,RES1,3001,,16,NE,1975,1975,3103,2,1,2014.949038,2014.949038,3505,NO,29.07,39.1,3,-0.12,6106,114.871817,124.431728,134.270496,140.387864,I,Above,Hip,0,5701,Wood,34.08403229,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 9254,NJBF000074965,4507 WHALERMAN RD,Brigantine,NJ,39.38830282,-74.39950342,RES1,3001,,16,NE,1970,1970,3102,1,1,1680.686927,1680.686927,3507,NO,16.1,23.65,1,1.68,6106,114.933726,124.482962,134.336331,140.381758,I,Above,Gable,0,5701,Wood,19.8757387,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 9255,NJBF000074908,,Brigantine,NJ,39.388149,-74.390395,RES1,3001,,NaN,NE,1969,0,3102,2,1,2325.47498,2325.47498,3507,NO,40.44,46.06,1,2.82,6110,115.124695,124.654161,134.527923,140.526968,I,Above,Flat,0,5701,Wood,43.25234536,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9256,NJBF000075484,6 LAGOON BLVD,Brigantine,NJ,39.39003384,-74.40028439,RES1,3001,,16,NE,1968,1968,3102,2,1,1583.895007,1583.895007,3507,YES,22.9,30.69,1,0.48,6106,114.89845,124.450754,134.301658,140.346109,I,Above,Flat,0,5701,Wood,26.79443686,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 9257,NJBF000074390,5 CASA COURT,Brigantine,NJ,39.38618725,-74.40226239,RES3B,3001,,33,ME,1980,1980,3301,2,1,3545.015817,3545.015817,3507,YES,25.44,39.45,1,0.85,6106,114.899498,124.453325,134.301532,140.366645,I,Above,Gable,0,5701,Wood,32.4459702,0,0,,,,1,1,,0.03,nav,1,1980,2,, 9258,NJBF000074799,16 45TH COVE,Brigantine,NJ,39.38781457,-74.39609231,RES1,3001,,16,NE,1968,1968,3102,2,1,2017.916453,2017.916453,3507,NO,35.68,45.69,1,2.73,6110,115.010147,124.551406,134.412508,140.442062,I,Above,Flat,0,5701,Wood,40.68639314,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 9259,NJBF000074817,421 ALBACORE LANE,Brigantine,NJ,39.3878695,-74.403389,RES3B,3001,,35,ME,2002,2001,3301,3,1,4284.217337,4284.217337,3507,NO,44.56,58.73,1,0.95,6110,114.857351,124.415165,134.260248,140.326048,I,Above,Flat,0,5701,Wood,51.64852096,0,1.1,,,,1,1,,0.35,nav,1,2002,3,, 9260,NJBF000080710,702 SARAZEN RD,Brigantine,NJ,39.41598499,-74.37582164,RES1,3001,,17,NE,1998,1998,3103,1,1,2272.856457,2272.856457,3505,NO,14.43,24.27,3,-1.13,6106,115.127628,124.648192,134.538862,140.396721,I,Above,Gable,0,5701,Wood,19.34602823,0,0,,,,1,1,,0.03,nav,1,1998,1,, 9261,NJBF000074901,22 45TH COVE,Brigantine,NJ,39.38812237,-74.39550138,RES1,3001,,16,NE,1968,1968,3102,2,1,1678.538943,1678.538943,3507,NO,38.12,52.96,1,2.92,6106,115.019043,124.559284,134.421579,140.447272,I,Above,Gable,0,5701,Wood,45.53699143,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9262,NJBF000074738,124 HUDSON DR,Brigantine,NJ,39.38761072,-74.39554825,RES1,3001,,15,NE,1968,1968,3102,2,1,902.2695385,902.2695385,3507,NO,26.92,39.47,1,1.25,6110,115.023718,124.563609,134.426002,140.453325,I,Above,Gable,0,5701,Wood,33.19479214,0,0,,,,1,1,,0.35,nav,1,1968,2,, 9263,NJBF000076297,225 37TH STREET SO,Brigantine,NJ,39.3928866,-74.39064505,RES1,3001,,28,NE,1937,1937,3102,1,2,3288.510527,3288.510527,3507,NO,13.1,27.11,1,-0.56,6106,115.067454,124.601496,134.472665,140.460689,I,Above,Hip,0,5701,Wood,20.10466147,0,0,,,,1,1,,0.03,nav,1,1937,1,, 9264,NJBF000080768,20 COLLETTE CIRCLE,Brigantine,NJ,39.41622793,-74.37754099,RES1,3001,,17,NE,1997,1997,3103,2,1,2231.487477,2231.487477,3505,NO,42.04,52.22,3,5.28,6106,115.090315,124.613085,134.499372,140.365725,I,Above,Hip,0,5701,Wood,47.1333904,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 9265,NJBF000076354,321 33RD STREET SO,Brigantine,NJ,39.39309424,-74.38574725,RES1,3001,,15,NE,1955,1955,3102,1,1,969.256672,969.256672,3507,NO,19.32,28.81,1,2.78,6106,115.166302,124.691026,134.573371,140.535082,I,Above,Hip,0,5701,Wood,24.06587044,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 9266,NJBF000078012,344 10TH STREET SO,Brigantine,NJ,39.40229248,-74.36900117,RES1,3001,,17,NE,1985,1985,3102,3,1,1027.84711,1027.84711,3502,NO,34.35,41.48,5,-3.81,6110,115.409187,124.914068,134.831727,140.679835,I,Above,Gable,0,5701,Wood,37.91679674,0,0,,,,1,1,,0.35,nav,1,1985,3,, 9267,NJBF000076212,347 33RD STREET SO,Brigantine,NJ,39.39260544,-74.38516954,RES1,3001,,16,NE,1955,1955,3102,2,1,1581.67718,1581.67718,3507,NO,24.62,33.12,1,-0.27,6106,115.183536,124.706757,134.590666,140.550503,I,Above,Hip,0,5701,Wood,28.86691665,0,0.1,,,,1,1,,0.03,nav,1,1955,2,, 9268,NJBF000077984,1417 W BRIGANTINE AVE,Brigantine,NJ,39.40210609,-74.373612,GOV2,3001,,NaN,E,1969,0,3401,1,1,19978.47439,19978.47439,3507,NO,12.39,24.72,1,1.17,6106,115.317476,124.828796,134.735236,140.609751,I,Above,Flat,0,NaN,Wood,18.55315059,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 9269,NJBF000074685,7 SHIPMASTER DR,Brigantine,NJ,39.38744589,-74.39854354,RES1,3001,,16,NE,1968,1968,3102,1,1,2213.33275,2213.33275,3507,NO,16.83,26.09,1,2.17,6110,114.963173,124.509544,134.365372,140.408383,I,Above,Gable,0,5701,Wood,21.45833948,0,0,,,,1,1,,0.35,nav,1,1968,1,, 9270,NJBF000074457,4600 HARBOR BEACH BLVD,Brigantine,NJ,39.38650669,-74.39749286,RES1,3001,,16,NE,1968,1968,3102,2,1,1745.067775,1745.067775,3507,YES,29.37,44.12,1,2.56,6110,114.995476,124.538667,134.397175,140.437469,I,Above,Gable,0,5701,Wood,36.7415119,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 9271,NJBF000073568,5107 HARBOR BEACH BLVD,Brigantine,NJ,39.38166938,-74.40574775,RES1,3001,,17,NE,1981,1981,3101,2,1,1641.671581,1641.671581,3507,NO,38.75,53.3,1,2.57,6106,114.87692,124.435032,134.277384,140.372839,I,Above,Gable,0,5701,Wood,46.02359475,0,0,,,,1,1,,0.03,nav,1,1981,2,, 9272,NJBF000075751,9 BEACH COVE,Brigantine,NJ,39.39098904,-74.40164456,RES1,3001,,16,NE,1972,1972,3102,1,1,2815.99145,2815.99145,3507,NO,18.27,31.77,1,2.18,6106,114.859653,124.415669,134.263148,140.311571,I,Above,Gable,0,5701,Wood,25.01910417,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 9273,NJBF000075792,11 BEACH COVE,Brigantine,NJ,39.39115458,-74.40158679,RES1,3001,,16,NE,1972,1972,3102,2,1,4305.407605,4305.407605,3507,NO,26.63,33.13,1,0.17,6106,114.859057,124.415051,134.262579,140.310251,I,Above,Hip,0,5701,Wood,29.87800052,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 9274,NJBF000079881,206 11TH STREET NO,Brigantine,NJ,39.4132155,-74.3572095,RES1,3001,,19,NE,2012,2012,3102,3,1,1880.65942,1880.65942,3507,NO,39.19,48.97,1,1.66,6106,115.531305,125.030398,134.970112,140.728939,I,Above,Hip,0,5701,Wood,44.08143183,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 9275,NJBF000075611,335 38TH STREET SO,Brigantine,NJ,39.39049854,-74.38858066,RES1,3001,,20,NE,2005,2005,3102,3,1,1661.240951,1661.240951,3507,NO,41.36,50.15,1,2.51,6106,115.136271,124.664233,134.541187,140.524538,I,Above,Flat,0,5701,Wood,45.75873538,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 9276,NJBF000079512,505 E BEACH AVE,Brigantine,NJ,39.41145623,-74.36132067,RES1,3001,,43,NE,1955,1955,3102,2,2,1200.787738,1200.787738,3507,NO,34.09,42,1,-0.45,6106,115.467192,124.969243,134.899831,140.685856,I,Above,Flat,0,5701,Wood,38.04341931,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9277,NJBF000074511,4513 W BRIGANTINE AVE,Brigantine,NJ,39.38677518,-74.39534712,RES1,3001,,16,NE,2003,2003,3102,2,1,2146.08576,2146.08576,3507,NO,24.81,30.49,1,2.75,6110,115.037168,124.575858,134.439019,140.467583,I,Above,Hip,0,5701,Wood,27.6498265,0,1.1,,,,1,1,,0.35,nav,1,2003,2,, 9278,NJBF000076112,4501 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39226142,-74.40847586,RES1,3001,,45,NE,1977,1977,3103,2,2,1777.654044,1777.654044,3505,NO,29.18,39.14,3,4.93,6106,114.703103,124.275635,134.107715,140.184731,I,Above,Gable,0,5701,Wood,34.16036384,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 9279,NJBF000074513,117 HUDSON DR,Brigantine,NJ,39.3867778,-74.39582467,RES1,3001,,16,NE,1968,1968,3102,2,1,2251.560065,2251.560065,3507,YES,26.88,39.24,1,1.21,6110,115.027192,124.566933,134.42903,140.460047,I,Above,Hip,0,5701,Wood,33.05818381,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 9280,NJBF000080249,36 CUMMINGS PLACE,Brigantine,NJ,39.41443631,-74.37342696,RES1,3001,,16,NE,1984,1984,3102,2,1,1164.922951,1164.922951,3507,NO,26.76,33.55,1,1.65,6106,115.191991,124.70923,134.607096,140.455253,I,Above,Flat,0,5701,Wood,30.15458978,0,0,,,,1,1,,0.03,nav,1,1984,2,, 9281,NJBF000078212,1300 W BEACH AVE,Brigantine,NJ,39.40369129,-74.37361488,RES1,3001,,15,NE,1955,1955,3102,1,1,1939.503861,1939.503861,3505,NO,18.62,26.59,3,1.59,6106,115.300518,124.812935,134.718379,140.589499,I,Above,Gable,0,5701,Wood,22.60578905,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 9282,NJBF000076839,3729 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3950055,-74.39293094,RES1,3001,,17,NE,1950,1950,3102,2,1,1457.645524,1457.645524,3507,NO,37.5,43.36,1,-0.84,6106,114.997184,124.537276,134.402196,140.396445,I,Above,Hip,0,5701,Wood,40.42798423,0,0,,,,1,1,,0.03,nav,1,1950,2,, 9283,NJBF000077687,1700 W BRIGANTINE AVE,Brigantine,NJ,39.40034747,-74.3750879,RES1,3001,,16,NE,1966,1966,3102,1,1,2566.359315,2566.359315,3507,NO,16.41,28.11,1,2.61,6106,115.306248,124.818496,134.722389,140.608966,I,Above,Hip,0,5701,Wood,22.26208409,0,1.2,,,,1,1,,0.03,nav,1,1966,1,, 9284,NJBF000073672,76 COQUILLE BEACH DR,Brigantine,NJ,39.38242253,-74.40240113,RES3B,3001,,NaN,ME,1969,0,3301,1,1,1617.676576,1617.676576,3507,NO,13.66,19.91,1,-0.47,6106,114.938607,124.48929,134.338542,140.41517,I,Above,Gable,0,5701,Wood,16.78385087,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9285,NJBF000074497,,Brigantine,NJ,39.38669498,-74.40063203,RES1,3001,,NaN,NE,1969,0,3102,2,1,1365.234914,1365.234914,3507,NO,34.49,44.47,1,0.99,6110,114.927926,124.478402,134.329952,140.385531,I,Above,Gable,0,5701,Wood,39.47797723,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9286,NJBF000074019,20 DELMAR DRIVE,Brigantine,NJ,39.38447844,-74.40368807,RES3B,3001,,33,ME,1980,1980,3301,2,1,7502.114301,7502.114301,3507,YES,30.65,43.04,1,-0.04,6106,114.888652,124.444372,134.290149,140.367228,I,Above,Gable,0,5701,Wood,36.84558374,0,0,,,,1,1,,0.03,nav,1,1980,2,, 9287,NJBF000074581,448 SEAHORSE RD,Brigantine,NJ,39.38710061,-74.40372557,RES3B,3001,,35,ME,1987,1987,3301,3,1,8325.880675,8325.880675,3507,NO,55.38,65,1,1.24,6106,114.858773,124.416786,134.261461,140.331122,I,Above,Gable,0,5701,Wood,60.19016914,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 9288,NJBF000073219,5212 SEA SPRAY RD,Brigantine,NJ,39.37906774,-74.4069697,RES1,3001,,16,NE,1975,1975,3103,1,1,1914.698376,1914.698376,3505,NO,15.44,20.97,3,4.57,6106,114.88066,124.439173,134.279739,140.388945,I,Above,Gable,0,5701,Wood,18.20573184,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 9289,NJBF000075321,,Brigantine,NJ,39.38947396,-74.39115963,RES1,3001,,NaN,NE,1964,0,3102,2,1,1937.317557,1937.317557,3507,NO,33.01,42.4,1,1.64,6110,115.094202,124.626463,134.497966,140.497563,I,Above,Gable,0,5701,Wood,37.70194715,0,0,,,,1,1,,0.35,nav,1,1964,2,, 9290,NJBF000078067,23 18TH STREET SO,Brigantine,NJ,39.40271524,-74.37769026,RES1,3001,,18,NE,2005,2005,3102,2,1,2917.608852,2917.608852,3507,NO,41.79,53.09,1,2.89,6106,115.227862,124.745754,134.641936,140.537541,I,Above,Hip,0,5701,Wood,47.43755679,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 9291,NJBF000078302,200 11TH STREET SO,Brigantine,NJ,39.4045635,-74.372147,RES1,3001,,16,NE,1964,1964,3102,2,1,1289.145177,1289.145177,3505,YES,27.66,38.69,3,1.73,6106,115.321086,124.83199,134.740462,140.601569,I,Above,Gable,0,5701,Wood,33.17605335,0,0,,,,1,1,,0.03,nav,1,1964,2,, 9292,NJBF000078307,218 10TH STREET SO,Brigantine,NJ,39.40459331,-74.37110898,RES1,3001,,15,NE,1956,1956,3102,1,1,1319.242365,1319.242365,3505,NO,13.94,26.05,3,2.05,6106,115.341857,124.851338,134.762343,140.617585,I,Above,Gable,0,5701,Wood,19.99254072,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9293,NJBF000078303,231 10TH STREET SO,Brigantine,NJ,39.40456752,-74.37042096,RES1,3001,,17,NE,2002,2002,3102,2,1,1648.820458,1648.820458,3505,NO,41.47,51.66,3,4.06,6106,115.356086,124.864605,134.777324,140.628751,I,Above,Hip,0,5701,Wood,46.56240406,0,1.2,,,,1,1,,0.03,nav,1,2002,2,, 9294,NJBF000080753,714 LAFAYETTE BLVD,Brigantine,NJ,39.41616356,-74.37984717,RES1,3001,,16,NE,1964,1964,3103,3,1,1605.950669,1605.950669,3505,NO,52.55,61.78,3,7.06,6106,115.044179,124.569939,134.450729,140.329076,I,Above,Gable,0,5701,Wood,57.16562443,0,1.1,,,,1,1,,0.03,nav,1,1964,3,, 9295,NJBF000075689,347 37TH STREET SO,Brigantine,NJ,39.39073348,-74.38771516,RES1,3001,,15,NE,1952,1952,3102,1,1,941.8080752,941.8080752,3507,NO,11.03,19.37,1,0.11,6106,115.151587,124.678048,134.556891,140.535044,I,Above,Hip,0,5701,Wood,15.19676386,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 9296,NJBF000080705,700 SARAZEN RD,Brigantine,NJ,39.41597696,-74.37558763,RES1,3001,,17,NE,1996,1996,3103,2,1,2081.367691,2081.367691,3505,NO,28.25,36.46,3,-1.95,6106,115.132449,124.65272,134.543967,140.400612,I,Above,Gable,0,5701,Wood,32.35430466,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 9297,NJBF000074693,429 ALBACORE LANE,Brigantine,NJ,39.38746818,-74.40352335,RES3B,3001,,35,ME,1987,1987,3301,3,1,5011.289501,5011.289501,3507,NO,49.45,60.56,1,0.35,6106,114.858974,124.416795,134.261757,140.329368,I,Above,Gable,0,5701,Wood,55.00576826,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 9298,NJBF000075495,344 GULL COVE,Brigantine,NJ,39.39005932,-74.40511025,RES3B,3001,,35,ME,1984,1984,3301,2,1,4449.782097,4449.782097,3507,YES,35.64,45.09,1,1.56,6106,114.797399,124.360765,134.201154,140.2689,I,Above,Gable,0,5701,Wood,40.36474577,0,0,,,,1,1,,0.03,nav,1,1984,2,, 9299,NJBF000073418,5200 HARBOR BEACH BLVD,Brigantine,NJ,39.38057356,-74.40666895,RES1,3001,,16,NE,1973,1973,3103,2,1,1948.015881,1948.015881,3505,YES,39.79,52.52,3,3.66,6106,114.869923,124.429246,134.269999,140.373231,I,Above,Gable,0,5701,Wood,46.15776614,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 9300,NJBF000077856,316 14TH STREET SO,Brigantine,NJ,39.40126583,-74.37266013,RES1,3001,,19,NE,2007,2007,3102,3,1,1821.679425,1821.679425,3502,NO,54.88,69.55,5,7.51,6106,115.345844,124.855138,134.764406,140.635415,I,Above,Hip,0,5701,Wood,62.21338618,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 9301,NJBF000076141,320 34TH STREET SO,Brigantine,NJ,39.39236519,-74.38681485,RES1,3001,,15,NE,1952,1952,3102,1,1,1024.335176,1024.335176,3507,NO,10.96,21.53,1,-0.23,6106,115.152255,124.678394,134.558598,140.527828,I,Above,Flat,0,5701,Wood,16.2440174,0,0,,,,1,1,,0.03,nav,1,1952,1,, 9302,NJBF000077188,2105 OCEAN AVE,Brigantine,NJ,39.39712542,-74.37712627,RES1,3001,,16,NE,1955,1955,3102,1,1,2280.605184,2280.605184,3507,NO,18.41,28.11,1,2.86,6106,115.29939,124.812312,134.713046,140.618198,I,Above,Gable,0,5701,Wood,23.26130497,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 9303,NJBF000076743,,Brigantine,NJ,39.3946367,-74.40180635,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2701.855064,2701.855064,3507,NO,17.11,26.76,1,0.05,6106,114.81689,124.375374,134.220664,140.259612,I,Above,Gable,0,5701,Wood,21.93207128,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9304,NJBF000075199,24 GULL COVE,Brigantine,NJ,39.38904903,-74.40573252,RES3B,3001,,35,ME,1984,1984,3301,2,1,4952.622747,4952.622747,3507,YES,33.76,42.2,1,1.83,6106,114.795379,124.359552,134.199065,140.27272,I,Above,Gable,0,5701,Wood,37.9799262,0,0,,,,1,1,,0.03,nav,1,1984,2,, 9305,NJBF000074792,4513 WHALERMAN RD,Brigantine,NJ,39.38779364,-74.3995961,RES1,3001,,16,NE,1968,1968,3102,2,1,1793.885176,1793.885176,3507,YES,25.35,35.09,1,-0.64,6110,114.937398,124.486429,134.339805,140.387121,I,Above,Gable,0,5701,Wood,30.21989306,0,0,,,,1,1,,0.35,nav,1,1968,2,, 9306,NJBF000074510,4605 SCHOONER RD,Brigantine,NJ,39.38677321,-74.39905844,RES1,3001,,43,NE,1977,1977,3102,2,2,1390.870936,1390.870936,3507,NO,32.98,47.23,1,-0.86,6110,114.959906,124.506856,134.36182,140.409296,I,Above,Hip,0,5701,Wood,40.1059851,0,0,,,,1,1,,0.35,nav,1,1977,2,, 9307,NJBF000078304,1214 BAYSHORE AVE,Brigantine,NJ,39.40457856,-74.37367289,RES1,3001,,16,NE,1961,1961,3102,1,1,1418.352624,1418.352624,3505,NO,21.01,32.68,3,8.04,6106,115.289909,124.802983,134.707709,140.577255,I,Above,Hip,0,5701,Wood,26.84256459,0,0,,,,1,1,,0.03,nav,1,1961,1,, 9308,NJBF000073496,5110 HARBOR BEACH BLVD,Brigantine,NJ,39.3811448,-74.40549465,RES1,3001,,16,NE,1972,1972,3101,1,1,1962.818922,1962.818922,3507,NO,12.8,22.39,1,0.34,6106,114.888135,124.445098,134.288153,140.383909,I,Above,Gable,0,5701,Wood,17.59492885,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 9309,NJBF000074247,4620 SCHOONER RD,Brigantine,NJ,39.38556948,-74.39953416,RES1,3001,,43,NE,1977,1977,3102,2,2,1276.677733,1276.677733,3507,NO,27.52,38.65,1,2.51,6110,114.963346,124.510306,134.364683,140.417934,I,Above,Gable,0,5701,Wood,33.08227162,0,0,,,,1,1,,0.35,nav,1,1977,2,, 9310,NJBF000073537,5104 HARBOR BEACH BLVD,Brigantine,NJ,39.38144226,-74.40497816,RES1,3001,,16,NE,1975,1975,3101,1,1,1959.627083,1959.627083,3507,NO,16.04,26.29,1,0.24,6106,114.895637,124.451617,134.295676,140.388,I,Above,Gable,0,5701,Wood,21.16354306,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 9311,NJBF000073276,5207 SEA SPRAY RD,Brigantine,NJ,39.37950932,-74.40666097,RES1,3001,,16,NE,1975,1975,3103,2,1,1277.91419,1277.91419,3505,NO,36.16,42.77,3,5.88,6106,114.882149,124.440348,134.281436,140.387801,I,Above,Gable,0,5701,Wood,39.46263907,0,0,,,,1,1,,0.03,nav,1,1975,2,, 9312,NJBF000073029,3 SUNSET COURT,Brigantine,NJ,39.37665257,-74.40681218,RES1,3001,,21,NE,2009,2009,3103,3,1,3904.285923,3904.285923,3505,YES,57.75,72.54,3,6.59,6106,114.911561,124.466949,134.308478,140.424104,I,Above,Gable,0,5701,Wood,65.14601039,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 9313,NJBF000080892,815 W SHORE DR,Brigantine,NJ,39.41674591,-74.38252765,RES1,3001,,18,NE,1969,2018,3103,3,1,1352.409909,1352.409909,3505,NO,51.7,62.53,3,3.65,6106,114.983814,124.513205,134.387071,140.277778,I,Above,Hip,0,5701,Wood,57.11399512,0,1.1,,,,1,1,,0.03,nav,1,1969,3,, 9314,NJBF000076440,,Brigantine,NJ,39.39340416,-74.38975955,RES1,3001,,NaN,NE,2015,0,3102,2,1,1495.044287,1495.044287,3507,NO,33.04,44.95,1,-0.17,6106,115.080119,124.612807,134.485753,140.467847,I,Above,Flat,0,5701,Wood,38.99629881,0,0,,,,1,1,,0.03,nav,1,2015,2,, 9315,NJBF000074501,89 SAILFISH DRIVE,Brigantine,NJ,39.38672956,-74.40303853,RES3B,3001,,35,ME,1987,1987,3301,3,1,8772.868194,8772.868194,3507,NO,34.35,41.65,1,-0.68,6106,114.87724,124.43334,134.27965,140.347026,I,Above,Gable,0,5701,Wood,38.00094646,0,0,,,,1,1,,0.03,nav,1,1987,3,, 9316,NJBF000075944,352 34TH STREET SO,Brigantine,NJ,39.39171134,-74.38605394,RES1,3001,,43,NE,1954,1954,3102,2,2,1251.503279,1251.503279,3507,NO,29.16,39.98,1,0.45,6106,115.175116,124.69923,134.581484,140.548295,I,Above,Flat,0,5701,Wood,34.56839191,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9317,NJBF000078290,101 13TH STREET SO,Brigantine,NJ,39.40446308,-74.3738,RES1,3001,,18,NE,2006,2006,3102,3,1,1584.243199,1584.243199,3505,NO,38.83,45.63,3,-2.45,6106,115.288556,124.801739,134.706231,140.576726,I,Above,Hip,0,5701,Wood,42.22731628,0,0,,,,1,1,,0.03,nav,1,2006,3,, 9318,NJBF000075616,,Brigantine,NJ,39.39050742,-74.3900283,RES1,3001,,NaN,NE,1969,0,3102,2,1,1899.116436,1899.116436,3507,NO,25.22,39.28,1,1.16,6106,115.106262,124.637127,134.510771,140.501736,I,Above,Gable,0,5701,Wood,32.2528368,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9319,NJBF000073060,1 SUNSET COURT,Brigantine,NJ,39.3770862,-74.40667245,RES1,3001,,17,NE,1975,1975,3103,2,1,2134.341538,2134.341538,3505,NO,33.69,40.99,3,4.63,6106,114.909542,124.465077,134.306793,140.42043,I,Above,Hip,0,5701,Wood,37.33672159,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 9320,NJBF000080294,42 CUMMINGS PLACE,Brigantine,NJ,39.41459165,-74.37362681,RES1,3001,,16,NE,1984,1984,3102,1,1,1266.890128,1266.890128,3507,NO,17.61,23.42,1,0.18,6106,115.186339,124.703868,134.60111,140.450037,I,Above,Gable,0,5701,Wood,20.51544624,0,0,,,,1,1,,0.03,nav,1,1984,1,, 9321,NJBF000075684,334 37TH STREET SO,Brigantine,NJ,39.39070604,-74.38833366,RES1,3001,,43,NE,1954,1954,3102,2,2,1067.377031,1067.377031,3507,NO,33.47,43.17,1,-0.83,6110,115.139097,124.666755,134.544187,140.525698,I,Above,Gable,0,5701,Wood,38.31783985,0,0,,,,1,1,,0.35,nav,1,1954,2,, 9322,NJBF000075001,4506 PRIVATEER RD,Brigantine,NJ,39.38841213,-74.39814304,RES1,3001,,16,NE,1968,1968,3102,1,1,1586.812665,1586.812665,3507,NO,17,30.61,1,-0.87,6106,114.960866,124.50715,134.363469,140.40178,I,Above,Gable,0,5701,Wood,23.80401928,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 9323,NJBF000080769,103 MARSDEN PLACE,Brigantine,NJ,39.4162305,-74.3810025,RES1,3001,,16,NE,1968,1968,3103,2,1,1235.317999,1235.317999,3505,NO,35.54,45.01,3,-1.8,6106,115.02005,124.547357,134.425321,140.309408,I,Above,Flat,0,5701,Wood,40.27410962,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 9324,NJBF000080313,47 CUMMINGS PLACE,Brigantine,NJ,39.41466254,-74.37430464,RES1,3001,,16,NE,1973,1973,3102,2,1,1516.832233,1516.832233,3507,NO,37.31,43.7,1,0.64,6106,115.171883,124.69027,134.585792,140.438201,I,Above,Gable,0,5701,Wood,40.5018236,0,0,,,,1,1,,0.03,nav,1,1973,2,, 9325,NJBF000077484,313 19TH STREET SO,Brigantine,NJ,39.39895358,-74.37547069,RES1,3001,,17,NE,1957,1957,3102,2,1,2207.383164,2207.383164,3507,YES,29.84,35.68,1,2.04,6106,115.313424,124.825186,134.728934,140.620746,I,Above,Gable,0,5701,Wood,32.7582319,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 9326,NJBF000075989,4326 HARBOR BEACH BLVD,Brigantine,NJ,39.39184927,-74.39698746,GOV1,3001,,NaN,E,1969,0,3401,1,1,6317.255846,6317.255846,3507,NO,13.77,25.1,1,1.45,6106,114.947278,124.493652,134.35101,140.374091,I,Above,Flat,0,NaN,Wood,19.43307973,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9327,NJBF000075284,8 EXPLORER RD,Brigantine,NJ,39.3893525,-74.40042271,RES1,3001,,16,NE,1968,1968,3102,1,1,1359.523655,1359.523655,3507,NO,21.34,35.27,1,2.27,6106,114.903007,124.455125,134.306026,140.353073,I,Above,Gable,0,5701,Wood,28.30395854,0,0,,,,1,1,,0.03,nav,1,1968,1,, 9328,NJBF000075384,9 EXPLORER RD,Brigantine,NJ,39.38970028,-74.40044228,RES1,3001,,16,NE,1968,1968,3102,2,1,2170.209531,2170.209531,3507,NO,24.19,35.22,1,1.99,6106,114.89881,124.451226,134.301933,140.348099,I,Above,Gable,0,5701,Wood,29.70540196,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9329,NJBF000075236,,Brigantine,NJ,39.38915092,-74.38922093,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3611.516985,3611.516985,3507,NO,15.12,22.74,1,0.15,6106,115.137904,124.665919,134.541961,140.532181,I,Above,Flat,0,NaN,Wood,18.93240041,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9330,NJBF000076690,2801 OCEAN AVE,Brigantine,NJ,39.39438556,-74.38165981,RES1,3001,,19,NE,2006,2006,3102,3,1,2135.327076,2135.327076,3507,NO,57.31,71.48,1,1.08,6110,115.236266,124.754606,134.645909,140.58241,I,Above,Hip,0,5701,Wood,64.39453446,0,1.1,,,,1,1,,0.35,nav,1,2006,3,, 9331,NJBF000075303,21 EXPLORER RD,Brigantine,NJ,39.38941231,-74.40170214,RES1,3001,,16,NE,1968,1968,3102,2,1,1460.54496,1460.54496,3507,YES,38.07,44.81,1,0.53,6106,114.875675,124.430734,134.278812,140.331975,I,Above,Gable,0,5701,Wood,41.43767076,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9332,NJBF000074850,4511 WHALERMAN RD,Brigantine,NJ,39.38797509,-74.3995127,RES1,3001,,16,NE,1968,1968,3102,2,1,1255.478034,1255.478034,3507,YES,34.16,48.02,1,1.26,6110,114.937132,124.486125,134.339608,140.386003,I,Above,Gable,0,5701,Wood,41.08870258,0,0,,,,1,1,,0.35,nav,1,1968,2,, 9333,NJBF000075428,120 44TH STREET SO,Brigantine,NJ,39.38984583,-74.39557743,RES3A,3001,,47,NE,1979,1979,3301,2,3,2008.754835,2008.754835,3507,NO,36.83,48.97,1,0.62,6106,114.998475,124.540325,134.401733,140.423139,I,Above,Flat,0,5701,Wood,42.89697756,0,0,,,,1,1,,0.03,nav,1,1979,2,, 9334,NJBF000075857,11 ATLANTIS COVE,Brigantine,NJ,39.39138383,-74.40039007,RES1,3001,,17,NE,1990,1990,3102,3,1,1976.331201,1976.331201,3507,NO,51.6,59.34,1,-0.02,6106,114.881521,124.434992,134.285038,140.326232,I,Above,Flat,0,5701,Wood,55.46852768,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 9335,NJBF000075253,4415 HARBOR BEACH BLVD,Brigantine,NJ,39.38924318,-74.397779,RES1,3001,,16,NE,1968,1968,3102,1,1,2151.682987,2151.682987,3507,NO,16.98,28.25,1,1.5,6106,114.959302,124.505452,134.362224,140.39641,I,Above,Gable,0,5701,Wood,22.6144007,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 9336,NJBF000075594,3913 W BRIGANTINE AVE,Brigantine,NJ,39.390436,-74.39103817,RES1,3001,,43,NE,1950,1950,3102,2,2,809.2386163,809.2386163,3507,NO,35.57,48.24,1,-0.84,6106,115.086139,124.61899,134.490366,140.486806,I,Above,Flat,0,5701,Wood,41.90643513,0,0,,,,1,1,,0.03,nav,1,1950,2,, 9337,NJBF000075928,245 39TH STREET SO,Brigantine,NJ,39.39165782,-74.39156887,RES1,3001,,15,NE,1948,1948,3102,1,1,946.3212479,946.3212479,3507,NO,16.57,22.22,1,0.98,6106,115.061749,124.596688,134.466322,140.462331,I,Above,Hip,0,5701,Wood,19.39526978,0,0,,,,1,1,,0.03,nav,1,1948,1,, 9338,NJBF000075494,331 39TH STREET SO,Brigantine,NJ,39.39005716,-74.38928302,RES1,3001,,18,NE,2005,2005,3102,3,1,1454.405174,1454.405174,3507,NO,48.46,63.03,1,1.86,6110,115.126624,124.655593,134.531126,140.519331,I,Above,Flat,0,5701,Wood,55.74594686,0,1.1,,,,1,1,,0.35,nav,1,2005,3,, 9339,NJBF000075169,5 EXPLORER COVE,Brigantine,NJ,39.38893277,-74.40121427,RES1,3001,,16,NE,1968,1968,3102,2,1,2038.00342,2038.00342,3507,NO,26.79,32.31,1,-0.85,6106,114.89111,124.444706,134.29406,140.346187,I,Above,Gable,0,5701,Wood,29.55238913,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 9340,NJBF000075687,277 40TH STREET SO,Brigantine,NJ,39.39073146,-74.3916565,RES1,3001,,16,NE,1964,1964,3102,1,1,969.179824,969.179824,3507,NO,19.97,31.38,1,0.54,6106,115.070102,124.604463,134.47431,140.473198,I,Above,Gable,0,5701,Wood,25.67095452,0,0,,,,1,1,,0.03,nav,1,1964,1,, 9341,NJBF000075309,4415 PRIVATEER RD,Brigantine,NJ,39.3894295,-74.3985985,RES1,3001,,16,NE,1968,1968,3102,2,1,1278.515899,1278.515899,3507,YES,34.61,42.58,1,1.05,6106,114.940187,124.48829,134.34317,140.38095,I,Above,Gable,0,5701,Wood,38.59478896,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9342,NJBF000075664,4402 HARBOR BEACH BLVD,Brigantine,NJ,39.39065268,-74.39712906,RES1,3001,,16,NE,1968,1968,3102,2,1,1222.758176,1222.758176,3507,NO,37.24,48.99,1,0.37,6106,114.957373,124.503188,134.360783,140.387835,I,Above,Flat,0,5701,Wood,43.11645977,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 9343,NJBF000075502,4809 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39007762,-74.41340494,RES1,3001,,18,NE,1946,1946,3103,2,1,1625.634853,1625.634853,3505,NO,43.11,50.39,3,8.87,6106,114.623183,124.206679,134.029448,140.135364,I,Above,Flat,0,5701,Wood,46.75413634,0,0,,,,1,1,,0.03,nav,1,1946,2,, 9344,NJBF000075930,411 33RD STREET SO,Brigantine,NJ,39.39166243,-74.38411468,RES1,3001,,47,NE,1978,1978,3102,2,2,2096.915663,2096.915663,3507,NO,34.72,47.85,1,2.07,6106,115.215606,124.736005,134.622783,140.57927,I,Above,Flat,0,5701,Wood,41.28471694,0,0,,,,1,1,,0.03,nav,1,1978,2,, 9345,NJBF000076115,401 32ND STREET SO,Brigantine,NJ,39.39227736,-74.38355371,RES1,3001,,17,NE,1958,1958,3102,2,1,1395.951374,1395.951374,3507,NO,37.36,49.58,1,2.03,6106,115.220401,124.740317,134.628137,140.580064,I,Above,Flat,0,5701,Wood,43.47226472,0,0,,,,1,1,,0.03,nav,1,1958,2,, 9346,NJBF000075725,4400 HARBOR BEACH BLVD,Brigantine,NJ,39.3908861,-74.39706203,RES1,3001,,16,NE,1965,1965,3102,2,1,1712.285709,1712.285709,3507,YES,37.8,48.88,1,0.88,6106,114.95622,124.502063,134.359701,140.385781,I,Above,Gable,0,5701,Wood,43.33927398,0,0,,,,1,1,,0.03,nav,1,1965,2,, 9347,NJBF000075392,,Brigantine,NJ,39.3897103,-74.39081047,RES1,3001,,NaN,NE,1950,0,3102,2,1,2989.108379,2989.108379,3507,NO,31.46,43.64,1,0.23,6110,115.098849,124.630602,134.502802,140.499947,I,Above,Flat,0,5701,Wood,37.54847745,0,0,,,,1,1,,0.35,nav,1,1950,2,, 9348,NJBF000075218,4419 PRIVATEER RD,Brigantine,NJ,39.38909164,-74.39864836,RES1,3001,,16,NE,1968,1968,3102,1,1,1824.312698,1824.312698,3507,NO,13.41,21.29,1,2.75,6106,114.942866,124.490816,134.345734,140.384693,I,Above,Gable,0,5701,Wood,17.35177257,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 9349,NJBF000075599,105 44TH STREET SO,Brigantine,NJ,39.39046138,-74.39671243,RES1,3001,,16,NE,1968,1968,3102,1,1,2087.163412,2087.163412,3507,NO,20.19,28.69,1,1.3,6106,114.968144,124.512914,134.371522,140.397002,I,Above,Gable,0,5701,Wood,24.44093197,0,0,,,,1,1,,0.03,nav,1,1968,1,, 9350,NJBF000075698,3800 W BRIGANTINE AVE,Brigantine,NJ,39.39078311,-74.38967154,RES1,3001,,45,NE,1958,1958,3102,2,4,2197.44343,2197.44343,3507,NO,36.56,49.34,1,1.22,6106,115.110593,124.640981,134.515319,140.503699,I,Above,Hip,0,5701,Wood,42.94754902,0,0,,,,1,1,,0.03,nav,1,1958,2,, 9351,NJBF000075963,407 33RD STREET SO,Brigantine,NJ,39.39177432,-74.38424512,RES1,3001,,NaN,NE,1978,0,3102,2,2,1525.189468,1525.189468,3507,NO,39.75,49.17,1,2.35,6106,115.211699,124.732444,134.618871,140.575784,I,Above,Flat,0,5701,Wood,44.45830489,0,0,,,,1,1,,0.03,nav,1,1978,2,, 9352,NJBF000075911,,Brigantine,NJ,39.39160184,-74.41003899,RES1,3001,,NaN,NE,1969,0,3103,5,1,2524.843463,2524.843463,3505,NO,102.85,112.03,3,5.66,6106,114.677439,124.253392,134.082482,140.168602,I,Above,Gable,0,5701,Wood,107.4405011,0,0,,,,1,1,,0.03,nav,1,1969,5,, 9353,NJBF000075277,326 40TH STREET SO,Brigantine,NJ,39.38933858,-74.39031735,RES1,3001,,15,NE,1950,1950,3102,1,1,1048.615884,1048.615884,3507,NO,13.11,20.55,1,0.77,6110,115.113147,124.643561,134.517032,140.512555,I,Above,Gable,0,5701,Wood,16.82990401,0,0,,,,1,1,,0.35,nav,1,1950,1,, 9354,NJBF000075341,4414 PRIVATEER RD,Brigantine,NJ,39.38956563,-74.39817811,RES1,3001,,16,NE,1968,1968,3102,2,1,1360.383035,1360.383035,3507,NO,23.02,35.82,1,-0.16,6106,114.94745,124.49473,134.350481,140.385777,I,Above,Hip,0,5701,Wood,29.41867607,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9355,NJBF000075191,3 WHALERMAN COVE,Brigantine,NJ,39.3890173,-74.39974413,RES1,3001,,16,NE,1968,1968,3102,2,1,1404.248738,1404.248738,3507,NO,32.75,44.8,1,2.94,6110,114.92085,124.471188,134.323726,140.368354,I,Above,Flat,0,5701,Wood,38.77764848,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 9356,NJBF000075539,336 38TH STREET SO,Brigantine,NJ,39.39022447,-74.38890159,RES1,3001,,17,NE,1952,1952,3102,2,1,836.5614861,836.5614861,3507,NO,26.21,36.09,1,-0.11,6106,115.132663,124.661019,134.537353,140.523111,I,Above,Hip,0,5701,Wood,31.15112672,0,0,,,,1,1,,0.03,nav,1,1952,2,, 9357,NJBF000075658,338 37TH STREET SO,Brigantine,NJ,39.39063556,-74.38822217,RES1,3001,,43,NE,1950,1950,3102,2,2,1773.432352,1773.432352,3507,NO,35.99,43.58,1,-0.18,6106,115.142181,124.669555,134.547274,140.52837,I,Above,Gable,0,5701,Wood,39.78459968,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 9358,NJBF000074104,4632 SCHOONER RD,Brigantine,NJ,39.38491533,-74.40049951,RES1,3001,,43,NE,1977,1977,3102,2,2,1390.939306,1390.939306,3507,NO,37.78,46.96,1,1.66,6110,114.95046,124.499049,134.351559,140.41152,I,Above,Hip,0,5701,Wood,42.36739917,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 9359,NJBF000075787,4625 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39113893,-74.41091386,RES1,3001,,16,NE,1939,1939,3103,1,1,893.217476,893.217476,3505,NO,17.37,24.46,3,-0.6,6106,114.664071,124.241923,134.069394,140.160879,I,Above,Gable,0,5701,Wood,20.91260582,0,1.1,,,,1,1,,0.03,nav,1,1939,1,, 9360,NJBF000075281,52 SHIPMASTER DR,Brigantine,NJ,39.38934743,-74.40274155,RES1,3001,,16,NE,1976,1976,3102,2,1,1340.944143,1340.944143,3507,NO,28.24,34.72,1,0.33,6106,114.85467,124.412064,134.257906,140.316322,I,Above,Gable,0,5701,Wood,31.48048847,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 9361,NJBF000074842,,Brigantine,NJ,39.38794803,-74.39233016,RES1,3001,,NaN,NE,1974,0,3102,2,1,1785.487982,1785.487982,3507,NO,35.29,43.39,1,2.85,6110,115.086817,124.620124,134.48959,140.499338,I,Above,Gable,0,5701,Wood,39.34283506,0,0,,,,1,1,,0.35,nav,1,1974,2,, 9362,NJBF000075503,314 39TH STREET SO,Brigantine,NJ,39.39007832,-74.39001667,RES1,3001,,43,NE,1952,1952,3102,2,2,895.3379088,895.3379088,3507,NO,24.56,32.52,1,2.68,6106,115.11121,124.641676,134.515526,140.507547,I,Above,Gable,0,5701,Wood,28.53891684,0,0,,,,1,1,,0.03,nav,1,1952,2,, 9363,NJBF000076669,2803 OCEAN AVE,Brigantine,NJ,39.39428055,-74.38174735,RES1,3001,,16,NE,1954,1954,3102,1,1,1651.473054,1651.473054,3507,NO,12.66,25.26,1,1.02,6110,115.235624,124.754029,134.645176,140.582404,I,Above,Hip,0,5701,Wood,18.95941744,0,0,,,,1,1,,0.35,nav,1,1954,1,, 9364,NJBF000076101,23 BEACH COVE,Brigantine,NJ,39.39222825,-74.40187511,RES1,3001,,17,NE,1982,1982,3102,2,1,1619.101098,1619.101098,3507,NO,24.7,38.04,1,2.88,6106,114.84141,124.398719,134.245097,140.291138,I,Above,Flat,0,5701,Wood,31.3662456,0,0,,,,1,1,,0.03,nav,1,1982,2,, 9365,NJBF000075355,3813 OCEAN AVE,Brigantine,NJ,39.389597,-74.388532,RES1,3001,,20,NE,2004,2004,3102,3,1,1748.386483,1748.386483,3507,NO,35.42,50.35,1,-0.34,6110,115.147225,124.67427,134.551708,140.537117,I,Above,Flat,0,5701,Wood,42.88551682,0,1.1,,,,1,1,,0.35,nav,1,2004,3,, 9366,NJBF000076010,232 38TH STREET SO,Brigantine,NJ,39.39193908,-74.39156422,RES1,3001,,16,NE,1949,1949,3102,1,1,531.6246293,531.6246293,3507,NO,13.92,26.86,1,1.25,6106,115.058781,124.593933,134.46345,140.458699,I,Above,Gable,0,5701,Wood,20.39380772,0,0,,,,1,1,,0.03,nav,1,1949,1,, 9367,NJBF000075247,,Brigantine,NJ,39.38921872,-74.39462222,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2676.689463,2676.689463,3507,NO,39.82,53.46,1,1.23,6106,115.025207,124.564499,134.428308,140.446528,I,Above,Gable,0,5701,Wood,46.63868796,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9368,NJBF000075759,3501 OCEAN AVE,Brigantine,NJ,39.39101583,-74.38653123,RES1,3001,,20,NE,2009,2009,3102,3,1,2294.856967,2294.856967,3507,NO,55.56,65.16,1,2.14,6106,115.172913,124.697322,134.578772,140.549887,I,Above,Hip,0,5701,Wood,60.35875619,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 9369,NJBF000076068,8 MARC LANE,Brigantine,NJ,39.39212705,-74.39515348,RES3C,3001,,33,ME,1984,1984,3301,3,1,6219.871358,6219.871358,3507,NO,48.58,54.94,1,0.71,6106,114.98234,124.525027,134.386355,140.399467,I,Above,Gable,0,5701,Wood,51.76125404,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 9370,NJBF000075248,4418 WHALERMAN RD,Brigantine,NJ,39.3892208,-74.39905088,RES1,3001,,17,NE,2006,2006,3102,2,1,1556.32899,1556.32899,3507,NO,26.64,31.76,1,2.15,6106,114.933054,124.482,134.335974,140.376586,I,Above,Hip,0,5701,Wood,29.20069116,0,0,,,,1,1,,0.03,nav,1,2006,2,, 9371,NJBF000075926,254 38TH STREET SO,Brigantine,NJ,39.39164992,-74.3910049,RES1,3001,,43,NE,1978,1978,3102,2,3,1379.448432,1379.448432,3507,NO,35.43,45.97,1,1.65,6106,115.073511,124.607303,134.478222,140.471324,I,Above,Gable,0,5701,Wood,40.70011715,0,0,,,,1,1,,0.03,nav,1,1978,2,, 9372,NJBF000075682,,Brigantine,NJ,39.39069614,-74.3861751,RES3C,3001,,NaN,E,1969,0,3303,3,1,2316.328654,2316.328654,3507,NO,55.56,64.97,1,-0.98,6106,115.183779,124.707208,134.589614,140.559627,I,Above,Hip,0,NaN,Wood,60.26593324,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9373,NJBF000075037,,Brigantine,NJ,39.38851532,-74.38986239,RES1,3001,,NaN,NE,1969,0,3102,2,1,1727.930262,1727.930262,3507,NO,25.08,32.55,1,0.12,6110,115.131676,124.660395,134.535228,140.530496,I,Above,Flat,0,5701,Wood,28.81670491,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9374,NJBF000076721,,Brigantine,NJ,39.39453928,-74.39134597,COM1,3001,,NaN,ME,1969,0,3401,1,1,9527.630594,9527.630594,3507,NO,17.49,31.31,1,2.14,6106,115.035019,124.57165,134.440415,140.427788,I,Above,Flat,0,NaN,Wood,24.40126736,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9375,NJBF000074813,18 45TH COVE,Brigantine,NJ,39.38786751,-74.39586677,RES1,3001,,14,NE,1968,1968,3102,1,1,1719.760203,1719.760203,3507,NO,11.51,22.78,1,-0.64,6110,115.01424,124.555055,134.416636,140.444894,I,Above,Gable,0,5701,Wood,17.14607484,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 9376,NJBF000077651,,Brigantine,NJ,39.40012081,-74.37100499,RES1,3001,,NaN,NE,1969,0,3102,2,1,2323.132563,2323.132563,3502,NO,32.75,38.27,5,4.49,6110,115.391815,124.897768,134.811751,140.675882,I,Above,Hip,0,5701,Wood,35.50953176,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9377,NJBF000076368,209 37TH STREET SO,Brigantine,NJ,39.39317222,-74.39107947,RES1,3001,,14,NE,1946,1946,3102,1,1,2250.42439,2250.42439,3507,NO,19.75,28.53,1,0.76,6106,115.055375,124.590497,134.460541,140.450074,I,Above,Hip,0,5701,Wood,24.14085413,0,1.2,,,,1,1,,0.03,nav,1,1946,1,, 9378,NJBF000077045,304 26TH STREET SO,Brigantine,NJ,39.39608688,-74.38125246,RES1,3001,,15,NE,1956,1956,3102,1,1,2885.8229,2885.8229,3507,NO,20.88,26.12,1,2.38,6106,115.226143,124.745179,134.636611,140.566824,I,Above,Hip,0,5701,Wood,23.49535682,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 9379,NJBF000075931,323 36TH STREET SO,Brigantine,NJ,39.39166363,-74.38783656,RES1,3001,,16,NE,1952,1952,3102,2,1,1155.159264,1155.159264,3507,NO,38.42,51.92,1,-0.55,6106,115.138843,124.666361,134.544521,140.520952,I,Above,Hip,0,5701,Wood,45.17283774,0,0,,,,1,1,,0.03,nav,1,1952,2,, 9380,NJBF000075761,266 39TH STREET SO,Brigantine,NJ,39.39102129,-74.39130902,RES1,3001,,16,NE,1953,1953,3102,1,1,718.7003023,718.7003023,3507,NO,18,32.66,1,-0.79,6106,115.074107,124.608001,134.478508,140.474832,I,Above,Gable,0,5701,Wood,25.33038394,0,0,,,,1,1,,0.03,nav,1,1953,1,, 9381,NJBF000075768,331 37TH STREET SO,Brigantine,NJ,39.39104417,-74.38811386,RES1,3001,,43,NE,1960,1960,3102,2,2,945.7612759,945.7612759,3507,NO,37.94,46.47,1,2.85,6106,115.139927,124.667449,134.545242,140.524722,I,Above,Gable,0,5701,Wood,42.20172119,0,0,,,,1,1,,0.03,nav,1,1960,2,, 9382,NJBF000076095,22 ATLANTIS COVE,Brigantine,NJ,39.39220874,-74.40096877,RES1,3001,,16,NE,1974,1974,3102,2,1,2721.509736,2721.509736,3507,YES,33.35,47.97,1,0.08,6106,114.860501,124.415782,134.264157,140.305867,I,Above,Hip,0,5701,Wood,40.65961767,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 9383,NJBF000077005,300 27TH STREET SO,Brigantine,NJ,39.39581531,-74.38217239,RES1,3001,,15,NE,1954,1954,3102,1,1,1458.810634,1458.810634,3507,NO,13.56,22.31,1,2.29,6110,115.210212,124.730642,134.620039,140.555887,I,Above,Hip,0,5701,Wood,17.93816683,0,0,,,,1,1,,0.35,nav,1,1954,1,, 9384,NJBF000076951,2800 W BRIGANTINE AVE,Brigantine,NJ,39.39555266,-74.38314189,RES1,3001,,16,NE,1954,1954,3102,1,1,1897.174816,1897.174816,3507,NO,13.55,25.82,1,1.14,6106,115.193132,124.715076,134.602322,140.544032,I,Above,Hip,0,5701,Wood,19.68460387,0,0,,,,1,1,,0.03,nav,1,1954,1,, 9385,NJBF000077062,205 29TH STREET SO,Brigantine,NJ,39.39624954,-74.38443248,RES1,3001,,17,NE,1956,1956,3102,2,1,1941.920824,1941.920824,3507,YES,34.35,47.4,1,-0.77,6106,115.159068,124.68386,134.567728,140.514652,I,Above,Gable,0,5701,Wood,40.87468314,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9386,NJBF000075985,19 BEACH COVE,Brigantine,NJ,39.39183394,-74.40167408,RES1,3001,,16,NE,1976,1976,3102,2,1,2247.83386,2247.83386,3507,YES,35.15,48.06,1,1.32,6106,114.84987,124.40649,134.253501,140.299681,I,Above,Gable,0,5701,Wood,41.60325365,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 9387,NJBF000076032,406 32ND STREET SO,Brigantine,NJ,39.39200441,-74.38393284,RES1,3001,,43,NE,1968,1968,3102,2,2,1644.474165,1644.474165,3507,NO,24.18,34.85,1,0.51,6106,115.215596,124.735968,134.623023,140.577678,I,Above,Gable,0,5701,Wood,29.51672866,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9388,NJBF000076133,,Brigantine,NJ,39.39234113,-74.3946579,RES3C,3001,,NaN,ME,1969,0,3301,1,1,5220.57791,5220.57791,3507,NO,20.72,33.86,1,2.98,6106,114.990281,124.532088,134.394426,140.404461,I,Above,Gable,0,5701,Wood,27.2878418,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9389,NJBF000075955,226 39TH STREET SO,Brigantine,NJ,39.39174675,-74.3923756,RES1,3001,,16,NE,1923,1923,3102,2,1,1827.646854,1827.646854,3507,NO,27.31,38.03,1,-0.89,6106,115.044064,124.580717,134.44848,140.448426,I,Above,Gable,0,5701,Wood,32.67039361,0,0,,,,1,1,,0.03,nav,1,1923,2,, 9390,NJBF000075954,,Brigantine,NJ,39.3917455,-74.386655,RES1,3001,,NaN,NE,1969,0,3102,2,1,1451.393152,1451.393152,3507,NO,38.12,44.85,1,0.77,6106,115.162348,124.687646,134.568495,140.538434,I,Above,Flat,0,5701,Wood,41.48290324,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9391,NJBF000078206,242 11TH STREET SO,Brigantine,NJ,39.40364376,-74.37138554,RES1,3001,,16,NE,1950,1950,3102,2,1,1635.665852,1635.665852,3505,NO,31.7,39.75,3,4.47,6106,115.346328,124.855539,134.766475,140.625258,I,Above,Gable,0,5701,Wood,35.72564299,0,0,,,,1,1,,0.03,nav,1,1950,2,, 9392,NJBF000078214,1007 W BRIGANTINE AVE,Brigantine,NJ,39.40373126,-74.37048403,RES1,3001,,45,NE,1942,1942,3102,2,4,837.1757961,837.1757961,3505,YES,36.33,50.92,3,8.13,6106,115.363716,124.871733,134.784835,140.638358,I,Above,Flat,0,5701,Wood,43.62727371,0,0,,,,1,1,,0.03,nav,1,1942,2,, 9393,NJBF000076223,248 36TH STREET SO,Brigantine,NJ,39.39265029,-74.38961218,RES1,3001,,NaN,NE,1953,0,3102,2,1,1394.919122,1394.919122,3507,NO,28.83,37.27,1,1.61,6106,115.091393,124.623205,134.496846,140.480102,I,Above,Flat,0,5701,Wood,33.04804043,0,0,,,,1,1,,0.03,nav,1,1953,2,, 9394,NJBF000078199,239 12TH STREET SO,Brigantine,NJ,39.403603,-74.371639,RES1,3001,,15,NE,1950,1950,3102,1,1,535.9582002,535.9582002,3505,NO,21.22,34.35,3,8.28,6106,115.341625,124.851163,134.761503,140.621792,I,Above,Gable,0,5701,Wood,27.78707023,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 9395,NJBF000075221,4300 BAYSHORE AVE,Brigantine,NJ,39.38910212,-74.39307311,COM8,3001,,NaN,ME,1900,1900,3401,3,1,2135.326539,2135.326539,3507,NO,58.53,63.93,1,2.11,6106,115.058649,124.59456,134.461894,140.47244,I,Above,Hip,0,NaN,Wood,61.23217617,0,0,,,,1,1,,0.03,nav,1,1900,3,, 9396,NJBF000073966,22 BRAMBLE DRIVE,Brigantine,NJ,39.38423638,-74.39813804,RES3C,3001,,37,ME,1978,1978,3301,3,1,8525.809735,8525.809735,3507,YES,34.05,43.93,1,1.21,6106,115.00735,124.549845,134.40775,140.457644,I,Above,Gable,0,5701,Wood,38.98895112,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 9397,NJBF000076389,242 35TH STREET SO,Brigantine,NJ,39.39323056,-74.38902163,RES1,3001,,29,NE,1947,1947,3102,1,2,1503.696063,1503.696063,3507,NO,18.09,30.8,1,-0.29,6106,115.097248,124.628359,134.503081,140.481764,I,Above,Gable,0,5701,Wood,24.44560302,0,0,,,,1,1,,0.03,nav,1,1947,1,, 9398,NJBF000076330,267 35TH STREET SO,Brigantine,NJ,39.39300245,-74.38806944,RES1,3001,,16,NE,1949,1949,3102,2,1,1017.421461,1017.421461,3507,NO,27.02,34.44,1,2.74,6106,115.119421,124.648501,134.525521,140.499781,I,Above,Gable,0,5701,Wood,30.73028209,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 9399,NJBF000074767,319 44TH STREET SO,Brigantine,NJ,39.3877145,-74.3926225,RES1,3001,,16,NE,1950,1950,3102,2,1,972.7238757,972.7238757,3507,NO,31.47,42.38,1,1.03,6110,115.083321,124.617029,134.485925,140.497824,I,Above,Gable,0,5701,Wood,36.92703394,0,0,,,,1,1,,0.35,nav,1,1950,2,, 9400,NJBF000080146,13 CUMMINGS PLACE,Brigantine,NJ,39.41406431,-74.37201404,RES1,3001,,16,NE,1976,1976,3102,2,1,1347.316099,1347.316099,3507,NO,25.17,38.71,1,-0.6,6106,115.224412,124.739811,134.641466,140.482725,I,Above,Gable,0,5701,Wood,31.94101546,0,0,,,,1,1,,0.03,nav,1,1976,2,, 9401,NJBF000080488,1407 SHERIDAN BLVD,Brigantine,NJ,39.41523672,-74.37536261,RES1,3001,,16,NE,1968,1968,3103,3,1,1342.198537,1342.198537,3505,NO,50.92,65.83,3,6.28,6106,115.14457,124.664414,134.556858,140.41376,I,Above,Gable,0,5701,Wood,58.37469651,0,0,,,,1,1,,0.03,nav,1,1968,3,, 9402,NJBF000080672,714 STERLING PLACE,Brigantine,NJ,39.41587337,-74.3806377,RES1,3001,,16,NE,1972,1972,3103,2,1,1676.125513,1676.125513,3505,YES,36.07,45.19,3,6.03,6106,115.031068,124.55786,134.437011,140.31998,I,Above,Gable,0,5701,Wood,40.63199179,0,0,,,,1,1,,0.03,nav,1,1972,2,, 9403,NJBF000079666,102 7TH STREET NO,Brigantine,NJ,39.41222697,-74.36090134,RES1,3001,,47,NE,1990,1990,3102,2,2,2145.863896,2145.863896,3507,NO,37.72,46.58,1,2.61,6106,115.467559,124.969653,134.900695,140.682903,I,Above,Gable,0,5701,Wood,42.15016072,0,0,,,,1,1,,0.03,nav,1,1990,2,, 9404,NJBF000076061,226 38TH STREET SO,Brigantine,NJ,39.3921064,-74.39163419,RES1,3001,,15,NE,1949,1949,3102,1,1,1064.424036,1064.424036,3507,NO,17.04,23.07,1,-0.33,6106,115.055508,124.590932,134.460214,140.455389,I,Above,Gable,0,5701,Wood,20.05332353,0,0,,,,1,1,,0.03,nav,1,1949,1,, 9405,NJBF000076830,,Brigantine,NJ,39.3949635,-74.394823,RES1,3001,,NaN,NE,1969,0,3102,2,1,2356.14045,2356.14045,3507,NO,31.75,40.52,1,0.66,6106,114.958453,124.502342,134.363004,140.366899,I,Above,Gable,0,5701,Wood,36.13612131,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9406,NJBF000077810,341 14TH STREET SO,Brigantine,NJ,39.40097717,-74.37169591,RES1,3001,,16,NE,1952,1952,3102,2,1,1143.332886,1143.332886,3502,NO,39.82,52.95,5,7.79,6110,115.368556,124.876213,134.78801,140.654214,I,Above,Gable,0,5701,Wood,46.38345536,0,0,,,,1,1,,0.35,nav,1,1952,2,, 9407,NJBF000076449,,Brigantine,NJ,39.39346216,-74.38932232,RES1,3001,,NaN,NE,2015,0,3102,2,1,1687.099837,1687.099837,3507,NO,39.46,54.28,1,0.86,6106,115.088537,124.620411,134.494334,140.473996,I,Above,Hip,0,5701,Wood,46.87290886,0,0,,,,1,1,,0.03,nav,1,2015,2,, 9408,NJBF000075708,273 40TH STREET SO,Brigantine,NJ,39.39081922,-74.39175476,RES1,3001,,43,NE,1978,1978,3102,2,2,1127.379645,1127.379645,3507,NO,36.7,49.97,1,-0.92,6106,115.067086,124.601723,134.471307,140.470478,I,Above,Gable,0,5701,Wood,43.33719999,0,0,,,,1,1,,0.03,nav,1,1978,2,, 9409,NJBF000075216,338 40TH STREET SO,Brigantine,NJ,39.38908951,-74.39003133,RES1,3001,,45,NE,1997,1997,3102,2,2,2076.395244,2076.395244,3507,NO,32.5,43.19,1,0.08,6110,115.121818,124.65142,134.525641,140.520306,I,Above,Gable,0,5701,Wood,37.84569074,0,0,,,,1,1,,0.35,nav,1,1997,2,, 9410,NJBF000074462,,Brigantine,NJ,39.3865355,-74.39863652,RES1,3001,,NaN,NE,1979,0,3102,2,1,1453.040375,1453.040375,3507,NO,35.89,41.09,1,2.18,6110,114.971313,124.517101,134.37308,140.419095,I,Above,Flat,0,5701,Wood,38.48949483,0,0,,,,1,1,,0.35,nav,1,1979,2,, 9411,NJBF000075258,119 44TH STREET SO,Brigantine,NJ,39.3892614,-74.39547147,RES1,3001,,16,NE,1968,1968,3102,2,1,1413.717729,1413.717729,3507,NO,34.68,43.15,1,2.24,6106,115.007107,124.548252,134.410147,140.432597,I,Above,Hip,0,5701,Wood,38.91559701,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9412,NJBF000074862,4507 HARBOR BEACH BLVD,Brigantine,NJ,39.38801175,-74.39771239,RES1,3001,,16,NE,1968,1968,3102,2,1,1059.485309,1059.485309,3507,NO,26.51,38.12,1,1.77,6106,114.974253,124.519249,134.376683,140.413927,I,Above,Gable,0,5701,Wood,32.31127751,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 9413,NJBF000075498,4007 W BRIGANTINE AVE,Brigantine,NJ,39.39006676,-74.39153023,RES1,3001,,43,NE,1952,1952,3102,1,2,2013.055614,2013.055614,3507,NO,10.84,24.72,1,-0.88,6106,115.080007,124.613548,134.483965,140.483939,I,Above,Flat,0,5701,Wood,17.78343699,0,0,,,,1,1,,0.03,nav,1,1952,1,, 9414,NJBF000075220,328 SEASHELL LANE,Brigantine,NJ,39.3891012,-74.40409527,RES3B,3001,,35,ME,1984,1984,3301,2,1,3940.648629,3940.648629,3507,YES,25.27,38.36,1,0.4,6106,114.829084,124.389441,134.23246,140.298124,I,Above,Hip,0,5701,Wood,31.81452186,0,0,,,,1,1,,0.03,nav,1,1984,2,, 9415,NJBF000077589,204 21ST STREET SO,Brigantine,NJ,39.39966122,-74.37899454,RES1,3001,,17,NE,1956,1956,3101,2,1,3317.561495,3317.561495,3507,NO,32.46,37.79,1,2.53,6106,115.233822,124.751756,134.646635,140.556231,I,Above,Hip,0,5701,Wood,35.1247036,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 9416,NJBF000076295,262 35TH STREET SO,Brigantine,NJ,39.39287376,-74.3886209,RES1,3001,,14,NE,1947,1947,3102,1,1,1167.965201,1167.965201,3507,NO,21.12,34.68,1,2.17,6106,115.109421,124.63947,134.515279,140.492769,I,Above,Gable,0,5701,Wood,27.89790475,0,0,,,,1,1,,0.03,nav,1,1947,1,, 9417,NJBF000075432,14 LAGOON BLVD,Brigantine,NJ,39.389856,-74.40122282,RES1,3001,,17,NE,1979,1979,3102,2,1,2344.088801,2344.088801,3507,NO,40.21,46.18,1,2.14,6106,114.880814,124.435103,134.284029,140.333592,I,Above,Gable,0,5701,Wood,43.19673022,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 9418,NJBF000076335,,Brigantine,NJ,39.39303261,-74.39387228,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4204.950137,4204.950137,3507,NO,18.25,31.46,1,2.55,6106,114.999055,124.539728,134.403506,140.407714,I,Above,Gable,0,5701,Wood,24.85481698,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9419,NJBF000080363,1413 E BRIGANTINE AVE,Brigantine,NJ,39.4148404,-74.3541927,RES1,3001,,18,NE,2004,2004,3103,3,1,2164.33685,2164.33685,3507,NO,35.93,47.91,1,2.78,6106,115.57467,125.072147,135.018312,140.756481,I,Above,Hip,0,5701,Wood,41.91518413,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 9420,NJBF000080369,106 12TH STREET NO,Brigantine,NJ,39.41486764,-74.35799794,RES1,3001,,15,NE,1925,1925,3102,1,1,1352.751218,1352.751218,3507,NO,14.31,25.38,1,0.75,6106,115.498244,124.999092,134.935369,140.696069,I,Above,Gable,0,5701,Wood,19.84584823,0,0,,,,1,1,,0.03,nav,1,1925,1,, 9421,NJBF000078083,242 13TH STREET SO,Brigantine,NJ,39.40280191,-74.37285692,RES1,3001,,17,NE,1950,1950,3102,2,1,1626.362701,1626.362701,3505,NO,26.42,39.05,3,3.7,6106,115.325406,124.836118,134.743975,140.612781,I,Above,Flat,0,5701,Wood,32.73506881,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 9422,NJBF000077706,2000 REVERE BLVD,Brigantine,NJ,39.40044834,-74.37859624,RES1,3001,,16,NE,1956,1956,3101,1,1,2555.962436,2555.962436,3507,NO,18.4,25.9,1,2.64,6106,115.233545,124.751383,134.646762,140.552391,I,Above,Gable,0,5701,Wood,22.15162945,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9423,NJBF000077731,212 18TH STREET SO,Brigantine,NJ,39.400597,-74.37644631,RES1,3001,,16,NE,1964,1964,3101,2,1,1325.495862,1325.495862,3507,YES,36.29,41.87,1,2.08,6106,115.275863,124.7904,134.690863,140.584391,I,Above,Hip,0,5701,Wood,39.07990308,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 9424,NJBF000080300,1 BRADY PLACE,Brigantine,NJ,39.41461396,-74.37299521,RES1,3001,,16,NE,1972,1972,3102,1,1,1215.703129,1215.703129,3507,NO,17.1,22.46,1,1.71,6106,115.198904,124.715664,134.614437,140.459932,I,Above,Gable,0,5701,Wood,19.78004309,0,0,,,,1,1,,0.03,nav,1,1972,1,, 9425,NJBF000075198,318 41ST STREET SO,Brigantine,NJ,39.38903804,-74.39120789,RES1,3001,,43,NE,1977,1977,3102,2,2,1203.839961,1203.839961,3507,NO,35.47,42.16,1,-0.1,6110,115.098019,124.629988,134.501559,140.502552,I,Above,Flat,0,5701,Wood,38.81527667,0,0,,,,1,1,,0.35,nav,1,1977,2,, 9426,NJBF000080326,1425 SHERIDAN BLVD,Brigantine,NJ,39.41470508,-74.37711634,RES1,3001,,NaN,NE,1969,0,3103,1,1,575.8054452,575.8054452,3505,NO,20.67,26.87,3,2.61,6106,115.114478,124.63645,134.525097,140.392262,I,Above,Flat,0,5701,Wood,23.76710057,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9427,NJBF000074797,23 SHIPMASTER DR,Brigantine,NJ,39.38780756,-74.40016923,RES1,3001,,16,NE,1968,1968,3102,2,1,1631.509491,1631.509491,3507,YES,33.09,39.17,1,0.68,6106,114.925291,124.475633,134.327748,140.37788,I,Above,Gable,0,5701,Wood,36.13144431,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 9428,NJBF000077361,2307 W BRIGANTINE AVE,Brigantine,NJ,39.39810768,-74.38037163,RES1,3001,,17,NE,1950,1950,3101,1,1,1579.597329,1579.597329,3507,NO,17.15,24.99,1,2.58,6106,115.222336,124.741425,134.633885,140.554556,I,Above,Hip,0,5701,Wood,21.07049092,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 9429,NJBF000077378,210 24TH STREET SO,Brigantine,NJ,39.39824125,-74.38101374,RES1,3001,,17,NE,1925,1925,3102,2,1,1508.41831,1508.41831,3507,NO,27.59,41.61,1,0.42,6106,115.207749,124.728021,134.618884,140.542718,I,Above,Gable,0,5701,Wood,34.59774765,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 9430,NJBF000077356,305 22ND STREET SO,Brigantine,NJ,39.39808179,-74.3780487,RES1,3001,,16,NE,1964,1964,3102,1,1,2079.175603,2079.175603,3507,NO,17.21,23.97,1,0.33,6106,115.270166,124.785374,134.683391,140.591439,I,Above,Gable,0,5701,Wood,20.58910664,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 9431,NJBF000077372,1901 OCEAN AVE,Brigantine,NJ,39.398207,-74.37539798,RES1,3001,,17,NE,1988,1988,3102,2,1,2293.850275,2293.850275,3507,NO,33.26,38.78,1,1.66,6106,115.322979,124.83402,134.738348,140.631432,I,Above,Gable,0,5701,Wood,36.02092685,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 9432,NJBF000077363,2204 W BRIGANTINE AVE,Brigantine,NJ,39.39811941,-74.37916048,RES1,3001,,16,NE,1956,1956,3102,1,1,2618.677201,2618.677201,3507,NO,15.94,27.36,1,2.57,6106,115.247035,124.764105,134.659446,140.573496,I,Above,Hip,0,5701,Wood,21.64766233,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9433,NJBF000076298,4308 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39289026,-74.40545766,RES1,3001,,17,NE,1982,1982,3102,2,1,2670.87809,2670.87809,3507,NO,32.33,43.08,1,0.16,6106,114.759472,124.325271,134.163515,140.2247,I,Above,Hip,0,5701,Wood,37.70177383,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 9434,NJBF000075613,,Brigantine,NJ,39.39050021,-74.41103471,RES1,3001,,NaN,NE,1989,0,3103,5,1,1398.204056,1398.204056,3505,NO,93.18,99.09,3,8.44,6106,114.668433,124.246257,134.073793,140.167762,I,Above,Hip,0,5701,Wood,96.13559258,0,0,,,,1,1,,0.03,nav,1,1989,5,, 9435,NJBF000080970,808 STERLING PLACE,Brigantine,NJ,39.41706218,-74.3811985,RES1,3001,,16,NE,1974,1974,3103,2,1,1224.248119,1224.248119,3505,NO,28.08,36.25,3,6.75,6106,115.007646,124.535249,134.412,140.295384,I,Above,Flat,0,5701,Wood,32.16712176,0,0,,,,1,1,,0.03,nav,1,1974,2,, 9436,NJBF000080463,611 LAFAYETTE BLVD,Brigantine,NJ,39.41514545,-74.37841058,RES1,3001,,16,NE,1966,1966,3103,3,1,1578.341081,1578.341081,3505,NO,55.47,68.34,3,6.24,6106,115.083703,124.607447,134.492585,140.365604,I,Above,Gable,0,5701,Wood,61.90466302,0,1.2,,,,1,1,,0.03,nav,1,1966,3,, 9437,NJBF000080496,1313 SHERIDAN BLVD,Brigantine,NJ,39.41526589,-74.37391474,RES1,3001,,16,NE,1970,1970,3102,2,1,1309.889847,1309.889847,3507,NO,34.16,39.31,1,-0.09,6106,115.173593,124.69165,134.587604,140.436767,I,Above,Hip,0,5701,Wood,36.73545621,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 9438,NJBF000076635,,Brigantine,NJ,39.39414559,-74.39999525,RES1,3001,,NaN,NE,1957,0,3102,2,1,2388.420937,2388.420937,3507,NO,34.87,40.26,1,1.29,6106,114.859865,124.414147,134.263688,140.295286,I,Above,Hip,0,5701,Wood,37.5639116,0,0,,,,1,1,,0.03,nav,1,1957,2,, 9439,NJBF000076631,,Brigantine,NJ,39.39413626,-74.40017111,RES1,3001,,NaN,NE,1969,0,3102,2,1,2482.794236,2482.794236,3507,NO,25.04,31.55,1,0.05,6106,114.85631,124.410968,134.260125,140.292604,I,Above,Flat,0,5701,Wood,28.2990563,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9440,NJBF000078364,109 12TH STREET SO,Brigantine,NJ,39.4050125,-74.37309067,RES1,3001,,16,NE,1950,1950,3102,1,1,1939.05398,1939.05398,3505,NO,12.93,22.99,3,1.73,6106,115.297153,124.809671,134.715533,140.580943,I,Above,Gable,0,5701,Wood,17.95825961,0,0,,,,1,1,,0.03,nav,1,1950,1,, 9441,NJBF000076654,3519 BAYSHORE AVE,Brigantine,NJ,39.3942315,-74.3906055,COM1,3001,,NaN,ME,1969,0,3401,3,1,889.1647442,889.1647442,3507,NO,41.86,54.42,1,0.94,6106,115.053654,124.588611,134.459219,140.443576,I,Above,Gable,0,NaN,Wood,48.13788913,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9442,NJBF000076621,2807 OCEAN AVE,Brigantine,NJ,39.39411466,-74.38203206,RES1,3001,,17,NE,1926,1926,3102,2,1,1638.255724,1638.255724,3507,YES,21.75,28.62,1,0.37,6110,115.231582,124.750353,134.640907,140.580086,I,Above,Hip,0,5701,Wood,25.18435688,0,1.1,,,,1,1,,0.35,nav,1,1926,2,, 9443,NJBF000075849,,Brigantine,NJ,39.39136535,-74.38502322,RES3C,3001,,NaN,E,1969,0,3303,3,1,5057.699673,5057.699673,3507,NO,49.18,54.78,1,-0.06,6106,115.200168,124.722006,134.606799,140.568933,I,Above,Flat,0,NaN,Wood,51.97975624,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9444,NJBF000076622,4140 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39411909,-74.40085273,RES1,3001,,17,NE,1991,1991,3102,3,1,2066.726827,2066.726827,3507,NO,49.44,56.94,1,2.69,6106,114.842298,124.398429,134.24609,140.281911,I,Above,Hip,0,5701,Wood,53.18895625,0,0,,,,1,1,,0.03,nav,1,1991,3,, 9445,NJBF000076611,4144 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39408727,-74.40101144,RES1,3001,,47,NE,1983,1983,3102,3,3,1860.818512,1860.818512,3507,NO,43.75,49.04,1,1.27,6106,114.839352,124.395811,134.243141,140.279812,I,Above,Hip,0,5701,Wood,46.39111426,0,1.2,,,,1,1,,0.03,nav,1,1983,3,, 9446,NJBF000076616,404 27TH STREET SO,Brigantine,NJ,39.39410533,-74.38019061,RES1,3001,,17,NE,1986,1986,3102,2,1,1720.542472,1720.542472,3507,NO,35.85,45.52,1,-0.58,6106,115.269481,124.784984,134.679889,140.609023,I,Above,Hip,0,5701,Wood,40.68387063,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 9447,NJBF000074029,29 BRAMBLE DRIVE,Brigantine,NJ,39.38453959,-74.39769525,RES3C,3001,,37,ME,1978,1978,3301,3,1,8837.380106,8837.380106,3507,YES,60.26,71.97,1,2.9,6106,115.013186,124.554972,134.413746,140.460525,I,Above,Gable,0,5701,Wood,66.11248882,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 9448,NJBF000075180,37 SHIPMASTER DR,Brigantine,NJ,39.38897009,-74.40187988,RES1,3001,,43,NE,1968,1968,3102,2,2,1428.335889,1428.335889,3507,NO,32.21,41.56,1,1.87,6106,114.876802,124.431946,134.27983,140.335119,I,Above,Gable,0,5701,Wood,36.88790495,0,0,,,,1,1,,0.03,nav,1,1968,2,, 9449,NJBF000077738,344 14TH STREET SO,Brigantine,NJ,39.40063198,-74.3720294,RES1,3001,,17,NE,1954,1954,3102,2,1,1673.808656,1673.808656,3502,NO,36.85,43.47,5,-1.16,6106,115.36549,124.873359,134.78454,140.653369,I,Above,Hip,0,5701,Wood,40.16141283,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9450,NJBF000077744,2300 BAYSHORE AVE,Brigantine,NJ,39.40065143,-74.38214998,RES1,3001,,17,NE,1957,1957,3101,2,1,2636.985275,2636.985275,3507,YES,30.41,40.01,1,-0.54,6106,115.158638,124.682444,134.569237,140.493517,I,Above,Hip,0,5701,Wood,35.21002793,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 9451,NJBF000080413,1419 SHERIDAN BLVD,Brigantine,NJ,39.41496909,-74.37660301,RES1,3001,,16,NE,1966,1966,3103,1,1,2376.709351,2376.709351,3505,NO,20.61,34.04,3,2.18,6106,115.122181,124.643543,134.533206,140.397159,I,Above,Gable,0,5701,Wood,27.32534437,0,0,,,,1,1,,0.03,nav,1,1966,1,, 9452,NJBF000075305,357 ARBEGAST DRIVE,Brigantine,NJ,39.38941715,-74.4053862,RES3B,3001,,35,ME,1984,1984,3301,2,1,4050.241547,4050.241547,3507,YES,25.57,39.41,1,0.42,6106,114.798623,124.362221,134.202313,140.273241,I,Above,Gable,0,5701,Wood,32.49238611,0,0,,,,1,1,,0.03,nav,1,1984,2,, 9453,NJBF000080342,605 LAFAYETTE BLVD,Brigantine,NJ,39.4147701,-74.37803107,RES1,3001,,16,NE,1979,1979,3103,2,1,1197.074966,1197.074966,3505,NO,37.27,42.38,3,1.72,6106,115.095246,124.618427,134.504807,140.376611,I,Above,Gable,0,5701,Wood,39.82426846,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 9454,NJBF000080357,,Brigantine,NJ,39.41481271,-74.37692927,RES1,3001,,NaN,NE,1969,0,3103,5,1,2995.986224,2995.986224,3505,NO,90.16,100.88,3,-2.95,6106,115.117166,124.638917,134.527924,140.393895,I,Above,Hip,0,5701,Wood,95.51751187,0,0,,,,1,1,,0.03,nav,1,1969,5,, 9455,NJBF000080201,1404 SHERIDAN BLVD,Brigantine,NJ,39.414267,-74.37694641,RES1,3001,,16,NE,1959,1959,3103,2,1,1275.908662,1275.908662,3505,NO,24.62,29.79,3,3.3,6106,115.122412,124.644072,134.533507,140.400658,I,Above,Gable,0,5701,Wood,27.20626328,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 9456,NJBF000079942,202 11TH STREET NO,Brigantine,NJ,39.41341073,-74.35736253,RES1,3001,,15,NE,1948,1948,3102,1,1,1005.555939,1005.555939,3507,NO,14.27,26.05,1,1.67,6106,115.526169,125.025534,134.964687,140.724093,I,Above,Gable,0,5701,Wood,20.15661614,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 9457,NJBF000078237,210 12TH STREET SO,Brigantine,NJ,39.403928,-74.3727535,RES1,3001,,15,NE,1954,1954,3102,1,1,971.9895325,971.9895325,3505,NO,20.02,27.86,3,5.97,6106,115.315507,124.826846,134.734244,140.600075,I,Above,Gable,0,5701,Wood,23.94225766,0,0,,,,1,1,,0.03,nav,1,1954,1,, 9458,NJBF000078223,1401 BAYSHORE AVE,Brigantine,NJ,39.40381358,-74.37495294,RES1,3001,,17,NE,1979,1979,3102,2,1,2844.185037,2844.185037,3505,NO,38.02,46.64,3,5.19,6106,115.271979,124.786429,134.688534,140.566775,I,Above,Flat,0,5701,Wood,42.33436161,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 9459,NJBF000078224,234 11TH STREET SO,Brigantine,NJ,39.40381933,-74.37154126,RES1,3001,,15,NE,1958,1958,3102,1,1,986.3451841,986.3451841,3505,NO,12.59,24.77,3,-2.59,6106,115.341316,124.850866,134.76131,140.620594,I,Above,Gable,0,5701,Wood,18.67616183,0,0,,,,1,1,,0.03,nav,1,1958,1,, 9460,NJBF000078156,231 13TH STREET SO,Brigantine,NJ,39.40330486,-74.37272111,RES1,3001,,15,NE,1959,1959,3102,1,1,1147.151285,1147.151285,3505,NO,19.97,29.63,3,6.37,6106,115.322809,124.833677,134.741552,140.608524,I,Above,Gable,0,5701,Wood,24.7994858,0,0,,,,1,1,,0.03,nav,1,1959,1,, 9461,NJBF000078157,,Brigantine,NJ,39.40330949,-74.3778034,RES1,3001,,NaN,NE,1954,0,3102,2,1,1752.58303,1752.58303,3507,NO,37.98,48.51,1,2.8,6106,115.219246,124.737674,134.633208,140.528106,I,Above,Hip,0,5701,Wood,43.24384616,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9462,NJBF000078276,1213 W BEACH AVE,Brigantine,NJ,39.40434653,-74.3734792,RES1,3001,,16,NE,1997,1997,3102,2,1,2123.147055,2123.147055,3505,NO,29.93,42.56,3,-2.18,6106,115.296315,124.808964,134.714316,140.583283,I,Above,Hip,0,5701,Wood,36.24482229,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 9463,NJBF000078320,1111 W BEACH AVE,Brigantine,NJ,39.40469571,-74.37277004,RES1,3001,,15,NE,1948,1948,3102,1,1,1677.939717,1677.939717,3505,NO,21.54,28.25,3,7.48,6106,115.307026,124.818892,134.725749,140.590045,I,Above,Flat,0,5701,Wood,24.89171353,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 9464,NJBF000077932,100 18TH STREET SO,Brigantine,NJ,39.4017491,-74.37749968,RES1,3001,,16,NE,1960,1960,3101,2,1,1622.233566,1622.233566,3507,NO,25.59,36.98,1,2.48,6106,115.24203,124.759007,134.656244,140.55297,I,Above,Hip,0,5701,Wood,31.28051724,0,0,,,,1,1,,0.03,nav,1,1960,2,, 9465,NJBF000077903,205 17TH STREET SO,Brigantine,NJ,39.40154774,-74.37552565,RES1,3001,,16,NE,1954,1954,3101,1,1,1913.269493,1913.269493,3507,NO,17.73,24.52,1,1.75,6106,115.284449,124.798244,134.700369,140.586714,I,Above,Hip,0,5701,Wood,21.1222401,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 9466,NJBF000077979,201-03 16TH STREET SO,Brigantine,NJ,39.402084,-74.374975,RES1,3001,,16,NE,1952,1952,3102,2,1,1414.440194,1414.440194,3505,NO,25.63,40.05,3,-1.68,6106,115.289953,124.803287,134.706424,140.588549,I,Above,Gable,0,5701,Wood,32.83914946,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 9467,NJBF000077970,205 16TH STREET SO,Brigantine,NJ,39.40197705,-74.3747899,RES1,3001,,16,NE,1945,1945,3102,1,1,2960.146242,2960.146242,3505,NO,19.94,28.41,3,7.38,6106,115.294865,124.807847,134.711498,140.592834,I,Above,Hip,0,5701,Wood,24.17644633,0,0,,,,1,1,,0.03,nav,1,1945,1,, 9468,NJBF000078014,1504 REVERE BLVD,Brigantine,NJ,39.402316,-74.37515129,RES1,3001,,16,NE,1958,1958,3102,1,1,2169.186876,2169.186876,3507,NO,17.58,24.28,1,0.57,6106,115.28389,124.797649,134.700217,140.582806,I,Above,Hip,0,5701,Wood,20.92705473,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 9469,NJBF000077977,327 12TH STREET SO,Brigantine,NJ,39.40206809,-74.37043439,RES1,3001,,19,NE,2017,2017,3102,3,1,831.2319991,831.2319991,3502,NO,59.59,67.63,5,13.28,6106,115.3825,124.889204,134.803458,140.660193,I,Above,Hip,0,5701,Wood,63.61118784,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 9470,NJBF000077952,326 12TH STREET SO,Brigantine,NJ,39.40186383,-74.37089679,RES1,3001,,16,NE,1945,1945,3102,2,1,893.3396293,893.3396293,3502,NO,25.65,33.26,5,-2.15,6106,115.375281,124.882482,134.795719,140.655509,I,Above,Gable,0,5701,Wood,29.45460308,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 9471,NJBF000077780,2319 BAYSHORE AVE,Brigantine,NJ,39.4008368,-74.38274792,RES1,3001,,16,NE,1948,1948,3101,2,1,2953.191626,2953.191626,3507,NO,36.01,41.99,1,1.59,6106,115.144398,124.669323,134.55459,140.481609,I,Above,Gable,0,5701,Wood,38.99936526,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 9472,NJBF000077829,207 18TH STREET SO,Brigantine,NJ,39.40108951,-74.37626266,RES1,3001,,16,NE,1951,1951,3101,1,1,1522.061338,1522.061338,3507,NO,15.62,29.47,1,0.95,6106,115.274317,124.788921,134.689536,140.580958,I,Above,Gable,0,5701,Wood,22.54274646,0,0,,,,1,1,,0.03,nav,1,1951,1,, 9473,NJBF000077613,200 21ST STREET SO,Brigantine,NJ,39.39983439,-74.37913588,RES1,3001,,16,NE,1958,1958,3101,1,1,2075.155234,2075.155234,3507,NO,19.39,24.6,1,1.53,6106,115.229082,124.747368,134.64181,140.551777,I,Above,Gable,0,5701,Wood,21.99348967,0,0,,,,1,1,,0.03,nav,1,1958,1,, 9474,NJBF000077759,1701 W BRIGANTINE AVE,Brigantine,NJ,39.40074348,-74.37546679,RES1,3001,,18,NE,1962,1962,3101,2,1,2918.259528,2918.259528,3507,YES,35.33,48.76,1,-0.06,6106,115.294271,124.807397,134.710141,140.597941,I,Above,Gable,0,5701,Wood,42.04428836,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9475,NJBF000077802,,Brigantine,NJ,39.40094151,-74.37902333,RES1,3001,,NaN,NE,1969,0,3101,1,1,1720.736411,1720.736411,3507,NO,20.87,32.54,1,2.88,6106,115.219532,124.73839,134.632455,140.539278,I,Above,Hip,0,5701,Wood,26.70868824,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9476,NJBF000077792,332 14TH STREET SO,Brigantine,NJ,39.40090257,-74.37229496,RES1,3001,,18,NE,2006,2006,3102,3,1,2815.764218,2815.764218,3502,NO,43.03,51.77,5,-0.32,6106,115.357166,124.865642,134.776015,140.645757,I,Above,Gable,0,5701,Wood,47.39915021,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 9477,NJBF000077672,200 20TH STREET SO,Brigantine,NJ,39.4002581,-74.37839191,RES1,3001,,16,NE,1952,1952,3101,1,1,1564.322174,1564.322174,3507,NO,19.85,32.13,1,2.97,6106,115.23975,124.757128,134.653107,140.558058,I,Above,Hip,0,5701,Wood,25.99146845,0,0,,,,1,1,,0.03,nav,1,1952,1,, 9478,NJBF000077603,318 16TH STREET SO,Brigantine,NJ,39.399759,-74.37342431,RES1,3001,,16,NE,1950,1950,3102,1,1,2975.930586,2975.930586,3505,NO,20.94,27.49,3,6.98,6106,115.346485,124.855736,134.764005,140.642589,I,Above,Hip,0,5701,Wood,24.21186059,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 9479,NJBF000077625,314 16TH STREET SO,Brigantine,NJ,39.39991686,-74.37357441,RES1,3001,,20,NE,2007,2007,3102,3,1,2835.961117,2835.961117,3505,NO,48.66,54.85,3,6.84,6106,115.341728,124.851333,134.759148,140.638226,I,Above,Hip,0,5701,Wood,51.75277578,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 9480,NJBF000077668,103 24TH STREET SO,Brigantine,NJ,39.40022516,-74.38218959,RES1,3001,,18,NE,2002,2002,3101,2,1,2514.49506,2514.49506,3507,NO,30.97,37.88,1,-0.38,6106,115.162366,124.685974,134.572925,140.498414,I,Above,Hip,0,5701,Wood,34.42290638,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 9481,NJBF000077707,100 23RD STREET SO,Brigantine,NJ,39.40044933,-74.38194616,RES1,3001,,16,NE,1956,1956,3101,2,1,1294.990434,1294.990434,3507,YES,28.44,42.4,1,-0.69,6106,115.164974,124.688313,134.575709,140.499374,I,Above,Gable,0,5701,Wood,35.42220454,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9482,NJBF000077781,206 18TH STREET SO,Brigantine,NJ,39.40084941,-74.3767146,RES1,3001,,16,NE,1930,1930,3101,1,1,1769.883858,1769.883858,3507,YES,12.78,26.78,1,-0.58,6106,115.267673,124.78281,134.682476,140.57692,I,Above,Gable,0,5701,Wood,19.77548486,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 9483,NJBF000077581,307 18TH STREET SO,Brigantine,NJ,39.39960896,-74.37486833,RES1,3001,,19,NE,2009,2009,3102,3,1,1693.492495,1693.492495,3505,NO,53.55,67.73,3,1.53,6106,115.318669,124.83001,134.734854,140.621846,I,Above,Hip,0,5701,Wood,60.63922876,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 9484,NJBF000077595,118 23RD STREET SO,Brigantine,NJ,39.39970399,-74.3812512,RES1,3001,,15,NE,1955,1955,3101,1,1,1674.09661,1674.09661,3507,NO,17.75,31.67,1,1.74,6106,115.187181,124.708873,134.598352,140.520038,I,Above,Gable,0,5701,Wood,24.71073249,0,0,,,,1,1,,0.03,nav,1,1955,1,, 9485,NJBF000077566,310 17TH STREET SO,Brigantine,NJ,39.39950033,-74.37436328,RES1,3001,,16,NE,1958,1958,3102,1,1,2385.514577,2385.514577,3505,NO,21.84,28.09,3,5.15,6106,115.330139,124.840615,134.746746,140.631162,I,Above,Gable,0,5701,Wood,24.96644313,0,0,,,,1,1,,0.03,nav,1,1958,1,, 9486,NJBF000077287,2405 W BRIGANTINE AVE,Brigantine,NJ,39.3976737,-74.38107322,RES1,3001,,17,NE,1956,1956,3102,2,1,2101.456543,2101.456543,3507,YES,23.65,33.02,1,-0.96,6106,115.21265,124.732605,134.623635,140.549121,I,Above,Gable,0,5701,Wood,28.33593496,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9487,NJBF000077578,203 22ND STREET SO,Brigantine,NJ,39.39959822,-74.37939695,RES1,3001,,16,NE,1960,1960,3101,1,1,2887.011429,2887.011429,3507,NO,10.68,21.87,1,-0.77,6106,115.226275,124.744821,134.638775,140.5507,I,Above,Flat,0,5701,Wood,16.27307109,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 9488,NJBF000077280,300 23RD STREET SO,Brigantine,NJ,39.39765603,-74.379424,RES1,3001,,17,NE,1926,1926,3102,2,1,2923.065005,2923.065005,3507,NO,33.76,41.78,1,2.97,6106,115.246628,124.763781,134.658741,140.575307,I,Above,Hip,0,5701,Wood,37.76712852,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 9489,NJBF000077401,320 19TH STREET SO,Brigantine,NJ,39.39837937,-74.37555719,RES1,3001,,16,NE,1950,1950,3102,1,1,1820.266948,1820.266948,3507,NO,18.57,27.05,1,-0.86,6106,115.317875,124.829308,134.733161,140.626743,I,Above,Hip,0,5701,Wood,22.81032646,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 9490,NJBF000077304,208 25TH STREET SO,Brigantine,NJ,39.39777497,-74.38192266,RES1,3001,,16,NE,1956,1956,3102,2,1,1339.599758,1339.599758,3507,YES,24.63,36.18,1,1.96,6106,115.194131,124.715619,134.604583,140.534415,I,Above,Hip,0,5701,Wood,30.40209786,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9491,NJBF000077406,2713 BAYSHORE AVE,Brigantine,NJ,39.39843857,-74.38550784,RES1,3001,,17,NE,1985,1985,3102,1,1,1524.066164,1524.066164,3507,NO,19.92,29.74,1,2.83,6106,115.113374,124.641608,134.521779,140.469074,I,Above,Gable,0,5701,Wood,24.83024089,0,0,,,,1,1,,0.03,nav,1,1985,1,, 9492,NJBF000074261,7 DELMAR LANE,Brigantine,NJ,39.38563531,-74.40467045,RES3B,3001,,37,ME,1985,1985,3301,2,1,6442.565064,6442.565064,3507,NO,23.89,31.77,1,-0.59,6106,114.855222,124.414297,134.25753,140.33605,I,Above,Flat,0,5701,Wood,27.82793142,0,0,,,,1,1,,0.03,nav,1,1985,2,, 9493,NJBF000077410,2408 REVERE BLVD,Brigantine,NJ,39.39845727,-74.38206052,RES1,3001,,17,NE,2000,2000,3102,1,1,1790.25388,1790.25388,3507,NO,16.55,28.68,1,-0.81,6106,115.18396,124.706172,134.594436,140.523396,I,Above,Hip,0,5701,Wood,22.61491551,0,0,,,,1,1,,0.03,nav,1,2000,1,, 9494,NJBF000077570,2301 REVERE BLVD,Brigantine,NJ,39.39952672,-74.38113389,RES1,3001,,17,NE,1956,1956,3101,2,1,2488.687962,2488.687962,3507,YES,33.65,43.05,1,0.3,6106,115.191475,124.712851,134.60271,140.524181,I,Above,Gable,0,5701,Wood,38.35115255,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9495,NJBF000077340,324 20TH STREET SO,Brigantine,NJ,39.39799584,-74.3763814,RES1,3001,,19,NE,1987,1987,3102,3,1,2655.675043,2655.675043,3507,NO,34.91,44.3,1,0.72,6106,115.305188,124.817622,134.719691,140.618722,I,Above,Hip,0,5701,Wood,39.60728222,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 9496,NJBF000077294,305 23RD STREET SO,Brigantine,NJ,39.39771549,-74.37877343,RES1,3001,,19,NE,2009,2009,3102,3,1,2677.752259,2677.752259,3507,NO,44.51,56.93,1,0.1,6106,115.259317,124.775431,134.671912,140.584781,I,Above,Gable,0,5701,Wood,50.71962496,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 9497,NJBF000077563,208 21ST STREET SO,Brigantine,NJ,39.39948531,-74.37884539,RES1,3001,,16,NE,1951,1951,3101,2,1,1613.118089,1613.118089,3507,NO,29.66,37.78,1,2.89,6106,115.23878,124.756343,134.65168,140.560864,I,Above,Gable,0,5701,Wood,33.71858207,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 9498,NJBF000077557,,Brigantine,NJ,39.39955973,-74.37157082,RES4,3001,,NaN,E,1969,0,3404,6,1,5776.817012,5776.817012,3507,NO,67.03,80.62,1,-0.49,6106,115.386353,124.892666,134.805573,140.674132,I,Above,Flat,0,NaN,Wood,73.82867626,0,0,,,,2,2,,0.03,nav,1,1969,6,, 9499,NJBF000077395,2301 W BRIGANTINE AVE,Brigantine,NJ,39.39835664,-74.37997093,RES1,3001,,16,NE,1986,1986,3101,2,1,2184.957416,2184.957416,3507,NO,32.95,45.69,1,-0.3,6106,115.227867,124.746467,134.639745,140.557659,I,Above,Hip,0,5701,Wood,39.31851502,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 9500,NJBF000077306,201 26TH STREET SO,Brigantine,NJ,39.39779311,-74.38251221,RES1,3001,,16,NE,1956,1956,3102,1,1,3308.023542,3308.023542,3507,NO,20.51,34.42,1,2.17,6106,115.181853,124.704373,134.591936,140.524888,I,Above,Hip,0,5701,Wood,27.46213405,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 9501,NJBF000077296,323 21ST STREET SO,Brigantine,NJ,39.39772578,-74.37661568,RES1,3001,,16,NE,1936,1936,3102,2,1,1130.470986,1130.470986,3507,NO,21.75,32.12,1,-0.32,6106,115.303307,124.815898,134.717544,140.618493,I,Above,Gable,0,5701,Wood,26.93336502,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 9502,NJBF000077358,100 27TH STREET SO,Brigantine,NJ,39.39809273,-74.3847361,RES1,3001,,16,NE,1956,1956,3102,2,1,1853.926456,1853.926456,3507,YES,38.23,51.5,1,1.02,6106,115.132956,124.659588,134.541759,140.485825,I,Above,Hip,0,5701,Wood,44.86312592,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9503,NJBF000077579,2200 REVERE BLVD,Brigantine,NJ,39.3995998,-74.38006744,RES1,3001,,16,NE,1954,1954,3101,2,1,2223.461235,2223.461235,3507,YES,37.06,42.19,1,2.7,6106,115.212542,124.732192,134.624547,140.540097,I,Above,Gable,0,5701,Wood,39.62742204,0,0,,,,1,1,,0.03,nav,1,1954,2,, 9504,NJBF000077540,311 18TH STREET SO,Brigantine,NJ,39.39932785,-74.37465301,RES1,3001,,17,NE,1957,1957,3102,2,1,2164.766338,2164.766338,3505,NO,40.46,46.8,3,6.35,6106,115.326079,124.836865,134.742388,140.628806,I,Above,Hip,0,5701,Wood,43.6279453,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 9505,NJBF000077531,401 16TH STREET SO,Brigantine,NJ,39.39927583,-74.37239831,RES1,3001,,18,NE,1992,1992,3102,2,1,2180.147828,2180.147828,3505,NO,38.54,50.92,3,0.84,6110,115.372587,124.879893,134.790933,140.664796,I,Above,Hip,0,5701,Wood,44.72673542,0,0,,,,1,1,,0.35,nav,1,1992,2,, 9506,NJBF000075671,326 GULL COVE,Brigantine,NJ,39.3906676,-74.40453527,RES3B,3001,,35,ME,1984,1984,3301,2,1,3720.641463,3720.641463,3507,YES,24.95,35.67,1,-0.7,6106,114.802797,124.365208,134.206552,140.269796,I,Above,Gable,0,5701,Wood,30.31364943,0,0,,,,1,1,,0.03,nav,1,1984,2,, 9507,NJBF000077550,2305 REVERE BLVD,Brigantine,NJ,39.39938045,-74.38141224,RES1,3001,,17,NE,1956,1956,3101,2,1,1476.29736,1476.29736,3507,YES,22.46,29.28,1,1.14,6106,115.187355,124.709099,134.598382,140.521689,I,Above,Hip,0,5701,Wood,25.86899281,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9508,NJBF000073396,5219 WATERVIEW DR,Brigantine,NJ,39.38037582,-74.40850784,RES1,3001,,16,NE,1975,1975,3103,2,1,2018.482594,2018.482594,3505,NO,30.14,44.02,3,7.41,6106,114.833486,124.397281,134.234235,140.347042,I,Above,Flat,0,5701,Wood,37.0816807,0,0,,,,1,1,,0.03,nav,1,1975,2,, 9509,NJBF000073374,5207 WATERVIEW DR,Brigantine,NJ,39.3802335,-74.40710196,RES1,3001,,16,NE,1974,1974,3103,1,1,2111.145556,2111.145556,3505,NO,23.88,31.36,3,4.4,6106,114.864665,124.424736,134.264681,140.371054,I,Above,Gable,0,5701,Wood,27.62002596,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 9510,NJBF000077501,2000 W BRIGANTINE AVE,Brigantine,NJ,39.39907467,-74.37736383,RES1,3001,,18,NE,1957,1957,3102,2,1,3099.877718,3099.877718,3507,YES,23.64,35.95,1,0.71,6106,115.273465,124.788328,134.687446,140.589458,I,Above,Gable,0,5701,Wood,29.79593165,0,0,,,,1,1,,0.03,nav,1,1957,2,, 9511,NJBF000076601,220 34TH STREET SO,Brigantine,NJ,39.3940505,-74.3887465,RES1,3001,,43,NE,1952,1952,3102,2,2,1210.391805,1210.391805,3507,NO,27.58,41.61,1,-0.8,6106,115.094037,124.625239,134.500202,140.475357,I,Above,Hip,0,5701,Wood,34.59560061,0,0,,,,1,1,,0.03,nav,1,1952,2,, 9512,NJBF000077537,308 18TH STREET SO,Brigantine,NJ,39.39931122,-74.375278,RES1,3001,,18,NE,2001,2001,3102,2,1,2429.570134,2429.570134,3507,NO,33.64,44.52,1,2.07,6106,115.313515,124.825258,134.729276,140.619214,I,Above,Flat,0,5701,Wood,39.08022275,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 9513,NJBF000077057,100 31ST STREET SO,Brigantine,NJ,39.39618715,-74.38745829,COM1,3001,,NaN,ME,1969,0,3401,1,1,4598.025261,4598.025261,3507,NO,17.17,26.38,1,-0.92,6106,115.097463,124.627761,134.504616,140.467665,I,Above,Flat,0,NaN,Wood,21.77424139,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9514,NJBF000077040,204 29TH STREET SO,Brigantine,NJ,39.39604811,-74.3848185,RES1,3001,,17,NE,1931,1931,3102,2,1,1427.371693,1427.371693,3507,YES,40.02,48.98,1,2.75,6106,115.153315,124.678655,134.561725,140.511195,I,Above,Hip,0,5701,Wood,44.5028069,0,0,,,,1,1,,0.03,nav,1,1931,2,, 9515,NJBF000077114,2205 OCEAN AVE,Brigantine,NJ,39.39664261,-74.37787656,RES1,3001,,16,NE,1954,1954,3102,2,1,1180.596874,1180.596874,3507,YES,30.25,36.13,1,1.9,6110,115.289256,124.803012,134.702193,140.612612,I,Above,Gable,0,5701,Wood,33.1906293,0,0,,,,1,1,,0.35,nav,1,1954,2,, 9516,NJBF000077066,400 22ND STREET SO,Brigantine,NJ,39.39625304,-74.37695933,RES1,3001,,16,NE,1956,1956,3102,2,1,1425.462089,1425.462089,3507,YES,27.89,40.21,1,2.76,6106,115.312268,124.824173,134.725749,140.631978,I,Above,Hip,0,5701,Wood,34.04859456,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9517,NJBF000077092,204 28TH STREET SO,Brigantine,NJ,39.39645408,-74.38411756,RES1,3001,,16,NE,1956,1956,3102,2,1,1647.823703,1647.823703,3507,YES,34.89,42.82,1,1.14,6106,115.163318,124.687697,134.572194,140.516949,I,Above,Gable,0,5701,Wood,38.85190015,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9518,NJBF000077159,323 23RD STREET SO,Brigantine,NJ,39.39692833,-74.37797226,RES1,3001,,16,NE,1932,1932,3102,2,2,1048.656782,1048.656782,3507,NO,38.86,44.05,1,-0.03,6106,115.284223,124.798374,134.697181,140.607466,I,Above,Hip,0,5701,Wood,41.45469993,0,1.2,,,,1,1,,0.03,nav,1,1932,2,, 9519,NJBF000077101,404 21ST STREET SO,Brigantine,NJ,39.39655068,-74.37617744,RES1,3001,,19,NE,1998,1998,3102,2,1,1919.272809,1919.272809,3507,YES,34.13,45.74,1,0.18,6106,115.325015,124.835899,134.739206,140.640394,I,Above,Flat,0,5701,Wood,39.93644779,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 9520,NJBF000077021,,Brigantine,NJ,39.39591454,-74.37911948,RES1,3001,,NaN,NE,1969,0,3102,2,1,1777.725193,1777.725193,3507,NO,37.49,50.4,1,0.37,6110,115.271734,124.786963,134.683544,140.602505,I,Above,Hip,0,5701,Wood,43.94801775,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9521,NJBF000077213,306 23RD STREET SO,Brigantine,NJ,39.39727918,-74.3790605,RES1,3001,,16,NE,1965,1965,3102,2,1,1896.564708,1896.564708,3507,NO,40.34,53.38,1,2.27,6106,115.258155,124.774403,134.670429,140.585882,I,Above,Gable,0,5701,Wood,46.86012814,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 9522,NJBF000076986,200 30TH STREET SO,Brigantine,NJ,39.39571559,-74.38571984,RES1,3001,,16,NE,1940,1940,3102,2,1,1186.742585,1186.742585,3507,NO,28.72,40.85,1,1.47,6106,115.138348,124.66509,134.546225,140.501296,I,Above,Flat,0,5701,Wood,34.78762489,0,0,,,,1,1,,0.03,nav,1,1940,2,, 9523,NJBF000076881,301 29TH STREET SO,Brigantine,NJ,39.39516915,-74.38315848,RES1,3001,,16,NE,1946,1946,3102,1,1,2041.284029,2041.284029,3507,NO,13.16,23.83,1,0.95,6106,115.196972,124.718639,134.606038,140.548763,I,Above,Hip,0,5701,Wood,18.49504842,0,0,,,,1,1,,0.03,nav,1,1946,1,, 9524,NJBF000076861,,Brigantine,NJ,39.39510296,-74.3913262,RES1,3001,,NaN,NE,1969,0,3102,2,1,2199.066034,2199.066034,3507,NO,35.39,45.81,1,0.77,6106,115.029335,124.566308,134.434831,140.420647,I,Above,Gable,0,5701,Wood,40.59646277,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9525,NJBF000076827,305 29TH STREET SO,Brigantine,NJ,39.39495212,-74.38296782,RES1,3001,,17,NE,1988,1988,3102,2,1,2084.149459,2084.149459,3507,NO,35.39,49.54,1,2.35,6106,115.203235,124.724385,134.612337,140.554564,I,Above,Flat,0,5701,Wood,42.46316616,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 9526,NJBF000076931,305 28TH STREET SO,Brigantine,NJ,39.39548435,-74.3823105,RES1,3001,,16,NE,1955,1955,3102,2,1,1465.059031,1465.059031,3507,YES,22.3,36.43,1,0.47,6106,115.21095,124.73136,134.620596,140.557989,I,Above,Gable,0,5701,Wood,29.3637717,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9527,NJBF000073986,,Brigantine,NJ,39.38430868,-74.40150298,RES3D,3001,,NaN,ME,1969,0,3301,1,1,12783.42287,12783.42287,3507,NO,16.19,28.57,1,-0.04,6110,114.93626,124.486632,134.337182,140.403898,I,Above,Gable,0,NaN,Wood,22.37909276,0,0,,,,1,1,,0.35,nav,1,1969,1,, 9528,NJBF000075105,323 42ND STREET SO,Brigantine,NJ,39.3887176,-74.39138396,RES1,3001,,43,NE,1979,1979,3102,2,2,1319.336155,1319.336155,3507,NO,29.85,43.52,1,2.64,6110,115.097908,124.629949,134.50125,140.504008,I,Above,Gable,0,5701,Wood,36.68579157,0,0,,,,1,1,,0.35,nav,1,1979,2,, 9529,NJBF000075774,,Brigantine,NJ,39.39106973,-74.3906849,RES1,3001,,NaN,NE,1969,0,3102,2,1,1291.133614,1291.133614,3507,NO,35.43,42.5,1,0.6,6106,115.086486,124.619156,134.49106,140.484004,I,Above,Gable,0,5701,Wood,38.96875426,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9530,NJBF000076761,4125 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39469933,-74.40019985,RES1,3001,,16,NE,1955,1955,3102,1,1,1419.422312,1419.422312,3507,NO,18.9,26.22,1,0.29,6106,114.849655,124.404679,134.253475,140.284539,I,Above,Hip,0,5701,Wood,22.56065934,0,0,,,,1,1,,0.03,nav,1,1955,1,, 9531,NJBF000074950,4 SHIPMASTER COVE,Brigantine,NJ,39.38826621,-74.40058791,RES1,3001,,16,NE,1968,1968,3102,1,1,2175.95464,2175.95464,3507,NO,12.99,22.75,1,-0.36,6110,114.911503,124.463163,134.314171,140.365093,I,Above,Gable,0,5701,Wood,17.86735177,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 9532,NJBF000074957,122 45TH STREET SO,Brigantine,NJ,39.3882878,-74.39465482,RES1,3001,,16,NE,1968,1968,3102,1,1,2092.985118,2092.985118,3507,NO,18.06,26.16,1,0.47,6106,115.034791,124.573351,134.437467,140.458366,I,Above,Hip,0,5701,Wood,22.10912274,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 9533,NJBF000076423,256 34TH STREET SO,Brigantine,NJ,39.39334567,-74.38790525,RES1,3001,,16,NE,1952,1952,3102,1,1,904.6100035,904.6100035,3507,NO,21.09,29.2,1,2.56,6106,115.119054,124.648093,134.525329,140.497855,I,Above,Gable,0,5701,Wood,25.14564583,0,0,,,,1,1,,0.03,nav,1,1952,1,, 9534,NJBF000076653,2704 OCEAN AVE,Brigantine,NJ,39.39422699,-74.38085047,RES1,3001,,19,NE,2001,2001,3102,2,1,2033.844713,2033.844713,3507,NO,28.25,39.22,1,1.79,6110,115.254627,124.771397,134.664686,140.597145,I,Above,Gable,0,5701,Wood,33.73403544,0,1.1,,,,1,1,,0.35,nav,1,2001,2,, 9535,NJBF000076455,245 35TH STREET SO,Brigantine,NJ,39.39347798,-74.38862876,RES1,3001,,16,NE,1952,1952,3102,1,1,877.234247,877.234247,3507,NO,15.12,23.59,1,2.2,6106,115.102673,124.633213,134.50872,140.484715,I,Above,Gable,0,5701,Wood,19.35284556,0,0,,,,1,1,,0.03,nav,1,1952,1,, 9536,NJBF000076131,406 31ST STREET SO,Brigantine,NJ,39.3923331,-74.38309761,RES1,3001,,17,NE,1956,1956,3102,2,1,2894.069977,2894.069977,3507,NO,27.83,34.1,1,-0.49,6106,115.229167,124.748292,134.637154,140.586467,I,Above,Flat,0,5701,Wood,30.96576922,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9537,NJBF000076046,4513 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39204814,-74.4089316,RES1,3001,,NaN,NE,1952,1952,3103,5,1,1767.988722,1767.988722,3505,NO,97.58,109.25,3,2.03,6106,114.695842,124.269356,134.100572,140.18031,I,Above,Flat,0,5701,Wood,103.4148222,0,0,,,,1,1,,0.03,nav,1,1952,5,, 9538,NJBF000076070,250 37TH STREET SO,Brigantine,NJ,39.392131,-74.3903285,RES1,3001,,43,NE,1955,1955,3102,2,2,958.7771124,958.7771124,3507,NO,27.16,33.01,1,-0.46,6106,115.082258,124.615077,134.487321,140.47565,I,Above,Gable,0,5701,Wood,30.08949561,0,0,,,,1,1,,0.03,nav,1,1955,2,, 9539,NJBF000075723,4701 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39088091,-74.41151375,RES1,3001,,16,NE,1973,1973,3103,2,1,1146.833643,1146.833643,3505,NO,29.62,35.76,3,5.55,6106,114.654257,124.233451,134.059787,140.154764,I,Above,Flat,0,5701,Wood,32.69444661,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 9540,NJBF000075997,,Brigantine,NJ,39.391879,-74.3926185,RES1,3001,,NaN,NE,1970,0,3102,2,1,1653.744064,1653.744064,3507,NO,27.63,41.05,1,-0.78,6106,115.037609,124.574859,134.442014,140.442859,I,Above,Gable,0,5701,Wood,34.34146446,0,0,,,,1,1,,0.03,nav,1,1970,2,, 9541,NJBF000075736,270 39TH STREET SO,Brigantine,NJ,39.39092874,-74.39122408,RES1,3001,,16,NE,1953,1953,3102,1,1,916.7392058,916.7392058,3507,NO,15.76,23.47,1,1.22,6106,115.076876,124.61052,134.481261,140.477383,I,Above,Gable,0,5701,Wood,19.61630207,0,0,,,,1,1,,0.03,nav,1,1953,1,, 9542,NJBF000077844,1500 W BRIGANTINE AVE,Brigantine,NJ,39.40118786,-74.37364403,COM1,3001,,NaN,ME,1969,0,3401,2,1,2053.348351,2053.348351,3507,NO,24.09,32.2,1,-0.95,6106,115.32665,124.837343,134.744255,140.620943,I,Above,Flat,0,NaN,Wood,28.14692749,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9543,NJBF000077852,336 13TH STREET SO,Brigantine,NJ,39.40124073,-74.37141819,RES1,3001,,19,NE,1947,2018,3102,3,1,987.3542841,987.3542841,3502,NO,27.59,33.39,5,-4.02,6110,115.371374,124.878836,134.791161,140.655228,I,Above,Gable,0,5701,Wood,30.49127562,0,0,,,,1,1,,0.35,nav,1,1947,3,, 9544,NJBF000075850,324 36TH STREET SO,Brigantine,NJ,39.39136538,-74.38807845,RES1,3001,,47,NE,1960,1960,3102,2,2,1522.779131,1522.779131,3507,NO,32.14,44.81,1,-0.19,6106,115.137146,124.664877,134.542614,140.521085,I,Above,Gable,0,5701,Wood,38.47471183,0,0,,,,1,1,,0.03,nav,1,1960,2,, 9545,NJBF000080355,237 14TH STREET NO,Brigantine,NJ,39.41480616,-74.35477021,RES1,3001,,18,NE,2005,2005,3103,3,1,1864.205046,1864.205046,3507,NO,57.06,67.01,1,0.4,6106,115.563492,125.061437,135.006128,140.747807,I,Above,Flat,0,5701,Wood,62.03400215,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 9546,NJBF000076194,4429 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39255318,-74.40803055,RES1,3001,,45,NE,1960,1960,3103,2,2,557.6032949,557.6032949,3505,NO,24.13,37.73,3,1.76,6106,114.70928,124.280901,134.113782,140.187891,I,Above,Hip,0,5701,Wood,30.9303087,0,0,,,,1,1,,0.03,nav,1,1960,2,, 9547,NJBF000076161,4429 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39244453,-74.40798507,RES1,3001,,45,NE,1960,1960,3103,2,2,1464.188986,1464.188986,3505,NO,41.3,54.19,3,7.98,6106,114.711405,124.282865,134.115901,140.190117,I,Above,Flat,0,5701,Wood,47.74566252,0,0,,,,1,1,,0.03,nav,1,1960,2,, 9548,NJBF000078215,1001 W BRIGANTINE AVE,Brigantine,NJ,39.40374145,-74.37027767,COM1,3001,,NaN,ME,1942,0,3401,1,1,2286.526538,2286.526538,3507,NO,18.56,30.48,1,2.72,6106,115.36779,124.87553,134.789134,140.641474,I,Above,Flat,0,NaN,Wood,24.51771142,0,0,,,,1,1,,0.03,nav,1,1942,1,, 9549,NJBF000078207,1001 W BRIGANTINE AVE,Brigantine,NJ,39.40364855,-74.37016604,COM1,3001,,NaN,ME,1942,0,3401,1,1,994.9965918,994.9965918,3507,NO,15.62,23.12,1,2.3,6106,115.371044,124.878563,134.792502,140.6444,I,Above,Flat,0,NaN,Wood,19.36827079,0,0,,,,1,1,,0.03,nav,1,1942,1,, 9550,NJBF000077330,301 23RD STREET SO,Brigantine,NJ,39.39792721,-74.37904044,RES1,3001,,20,NE,2011,2011,3102,3,1,1529.176872,1529.176872,3507,NO,53.48,65.64,1,-0.79,6106,115.251563,124.768286,134.664016,140.577855,I,Above,Gable,0,5701,Wood,59.55702187,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 9551,NJBF000077121,205 28TH STREET SO,Brigantine,NJ,39.39668348,-74.38370067,RES1,3001,,16,NE,1956,1956,3102,2,1,1097.293353,1097.293353,3507,NO,37.31,47.07,1,2.17,6106,115.169413,124.693216,134.578572,140.520547,I,Above,Hip,0,5701,Wood,42.18996601,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9552,NJBF000076802,300 29TH STREET SO,Brigantine,NJ,39.39486117,-74.38351949,RES1,3001,,16,NE,1956,1956,3102,2,1,1343.61941,1343.61941,3507,YES,29.5,34.95,1,2.2,6106,115.1929,124.714968,134.601672,140.547088,I,Above,Hip,0,5701,Wood,32.22783508,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 9553,NJBF000076768,,Brigantine,NJ,39.39472056,-74.40136105,RES3A,3001,,NaN,NE,1966,0,3301,1,1,2805.339441,2805.339441,3507,NO,17.19,29.16,1,2.92,6106,114.825256,124.382809,134.229033,140.265619,I,Above,Flat,0,5701,Wood,23.17377794,0,0,,,,1,1,,0.03,nav,1,1966,1,, 9554,NJBF000076702,217 34TH STREET SO,Brigantine,NJ,39.39445624,-74.38849893,COM1,3001,,NaN,ME,1969,0,3401,2,1,5198.240645,5198.240645,3507,YES,38.43,46.35,1,0.5,6106,115.094727,124.625757,134.501088,140.473925,I,Above,Gable,0,NaN,Wood,42.39199642,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 9555,NJBF000076661,,Brigantine,NJ,39.39424439,-74.3975805,COM1,3001,,NaN,ME,1969,0,3401,3,1,3146.410436,3146.410436,3507,NO,45.57,60.44,1,0.85,6106,114.908992,124.458173,134.313024,140.332552,I,Above,Flat,0,NaN,Wood,53.00304261,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9556,NJBF000076678,,Brigantine,NJ,39.3943155,-74.394558,COM4,3001,,NaN,ME,1969,0,3401,3,1,2025.035798,2025.035798,3507,NO,43.97,57.59,1,2.54,6106,114.970948,124.51389,134.375483,140.379766,I,Above,Flat,0,NaN,Wood,50.7810041,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9557,NJBF000075586,,Brigantine,NJ,39.39041712,-74.38924289,RES1,3001,,NaN,NE,1969,0,3102,2,1,1646.728286,1646.728286,3507,NO,29.69,44.55,1,2.23,6106,115.123488,124.652697,134.528171,140.515235,I,Above,Hip,0,5701,Wood,37.11887379,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9558,NJBF000074729,,Brigantine,NJ,39.38757818,-74.39314961,RES1,3001,,NaN,NE,1969,0,3102,2,1,2269.019441,2269.019441,3507,NO,36.26,46.51,1,0.39,6106,115.073904,124.608602,134.476366,140.491379,I,Above,Gable,0,5701,Wood,41.38479014,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9559,NJBF000075910,,Brigantine,NJ,39.39159683,-74.38832014,RES1,3001,,NaN,NE,1969,0,3102,2,1,1779.063883,1779.063883,3507,NO,25.64,36.11,1,1.93,6106,115.129603,124.658009,134.535088,140.514248,I,Above,Gable,0,5701,Wood,30.87372321,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9560,NJBF000076152,208 38TH STREET SO,Brigantine,NJ,39.39239642,-74.39202355,RES1,3001,,14,NE,1953,1953,3102,1,1,758.8302414,758.8302414,3507,NO,21.28,35.51,1,2.7,6106,115.04427,124.580707,134.448968,140.445399,I,Above,Hip,0,5701,Wood,28.3963761,0,0,,,,1,1,,0.03,nav,1,1953,1,, 9561,NJBF000077661,313 16TH STREET SO,Brigantine,NJ,39.40018982,-74.37322443,RES1,3001,,20,NE,2009,2009,3102,3,1,3183.706585,3183.706585,3505,NO,48.65,60.97,3,5.86,6106,115.345919,124.855213,134.763727,140.640243,I,Above,Flat,0,5701,Wood,54.81268765,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 9562,NJBF000077258,2501 W BRIGANTINE AVE,Brigantine,NJ,39.3975345,-74.38158267,RES1,3001,,16,NE,1953,1953,3102,1,1,602.5435736,602.5435736,3507,NO,12.88,23.37,1,-0.25,6106,115.203703,124.724429,134.614326,140.542897,I,Above,Hip,0,5701,Wood,18.12515303,0,1.2,,,,1,1,,0.03,nav,1,1953,1,, 9563,NJBF000077242,2501 W BRIGANTINE AVE,Brigantine,NJ,39.39742073,-74.38144957,RES1,3001,,16,NE,1953,1953,3102,1,1,1305.278357,1305.278357,3507,NO,15.1,23.8,1,-0.63,6106,115.20765,124.728062,134.618334,140.546455,I,Above,Gable,0,5701,Wood,19.44920658,0,1.2,,,,1,1,,0.03,nav,1,1953,1,, 9564,NJBF000075343,17 EXPLORER RD,Brigantine,NJ,39.38956837,-74.40129144,RES1,3001,,16,NE,1968,1968,3102,1,1,1673.56053,1673.56053,3507,NO,11.49,24.35,1,-0.88,6106,114.882545,124.436783,134.285689,140.336398,I,Above,Gable,0,5701,Wood,17.91942628,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 9565,NJBF000074091,8 LIGHTHOUSE DR,Brigantine,NJ,39.38486919,-74.40142349,RES1,3001,,43,NE,1985,1985,3102,2,2,1466.807602,1466.807602,3507,NO,23.9,38.3,1,-0.17,6110,114.931685,124.482387,134.332909,140.397625,I,Above,Gable,0,5701,Wood,31.10351032,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 9566,NJBF000074716,26 SHIPMASTER DR,Brigantine,NJ,39.387541,-74.40063895,RES1,3001,,16,NE,1971,1971,3102,1,1,1557.961082,1557.961082,3507,NO,17.05,25.7,1,-0.14,6106,114.918429,124.469624,134.320821,140.374043,I,Above,Gable,0,5701,Wood,21.3754286,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 9567,NJBF000073639,17 MANITOBA AVE,Brigantine,NJ,39.38216388,-74.4048205,RES1,3001,,17,NE,1985,1985,3101,2,1,1611.817186,1611.817186,3507,NO,25.82,38.64,1,0.88,6106,114.890826,124.44713,134.291291,140.380713,I,Above,Gable,0,5701,Wood,32.22703141,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 9568,NJBF000073293,5112 OCEAN DRIVE SOUTH,Brigantine,NJ,39.3796193,-74.40411479,RES1,3001,,16,NE,1975,1975,3101,2,1,1882.881406,1882.881406,3507,NO,33.44,43.07,1,1.86,6106,114.93437,124.486304,134.332742,140.42611,I,Above,Gable,0,5701,Wood,38.25401144,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 9569,NJBF000073027,4 SUNSET COURT,Brigantine,NJ,39.37662909,-74.40712533,RES1,3001,,20,NE,1988,1988,3103,3,1,3388.232871,3388.232871,3505,NO,46.61,52.45,3,6.69,6106,114.90525,124.461417,134.302299,140.419558,I,Above,Flat,0,5701,Wood,49.52984807,0,1.2,,,,1,1,,0.03,nav,1,1988,3,, 9570,NJBF000074433,310 RAINBOW DRIVE,Brigantine,NJ,39.38640156,-74.39480627,RES1,3001,,18,NE,2002,2002,3102,2,1,1967.66746,1967.66746,3507,NO,24.8,34.8,1,1.96,6110,115.052564,124.589721,134.454224,140.481007,I,Above,Gable,0,5701,Wood,29.79837145,0,1.1,,,,1,1,,0.35,nav,1,2002,2,, 9571,NJBF000079428,204 6TH STREET NO,Brigantine,NJ,39.41109656,-74.36067822,RES1,3001,,15,NE,1950,1950,3102,1,1,872.8453155,872.8453155,3507,NO,21.03,27.55,1,1.58,6106,115.483886,124.985032,134.917542,140.700465,I,Above,Gable,0,5701,Wood,24.28932725,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 9572,NJBF000080701,1305 DUNCAN PLACE,Brigantine,NJ,39.41596741,-74.37352742,RES1,3001,,17,NE,1999,1999,3102,2,1,1864.114259,1864.114259,3507,NO,39.12,52.22,1,1.34,6106,115.174266,124.692017,134.588304,140.434057,I,Above,Gable,0,5701,Wood,45.66818596,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 9573,NJBF000076294,333 33RD STREET SO,Brigantine,NJ,39.392868,-74.38544507,RES1,3001,,17,NE,1955,1955,3102,2,1,1526.955542,1526.955542,3507,NO,30.76,45.1,1,-0.91,6106,115.174994,124.698958,134.582109,140.542766,I,Above,Gable,0,5701,Wood,37.93012039,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 9574,NJBF000077660,300 17TH STREET SO,Brigantine,NJ,39.40018151,-74.3749457,RES1,3001,,16,NE,1954,1954,3102,2,1,1797.635525,1797.635525,3505,NO,35.53,46.54,3,3.57,6106,115.310916,124.822821,134.727152,140.613306,I,Above,Gable,0,5701,Wood,41.0325294,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 9575,NJBF000080333,1415 E BRIGANTINE AVE,Brigantine,NJ,39.41472939,-74.35428991,RES1,3001,,19,NE,2004,2004,3103,3,1,2377.837629,2377.837629,3507,NO,53.79,65.6,1,0.92,6106,115.573891,125.071376,135.017384,140.756314,I,Above,Hip,0,5701,Wood,59.6927573,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 9576,NJBF000078273,230 10TH STREET SO,Brigantine,NJ,39.4043215,-74.370879,RES1,3001,,16,NE,2003,2003,3102,2,1,1637.192666,1637.192666,3505,NO,36.94,44.78,3,2.86,6106,115.349406,124.858385,134.770133,140.624649,I,Above,Gable,0,5701,Wood,40.85782871,0,0,,,,1,1,,0.03,nav,1,2003,2,, 9577,NJBF000078278,246 9TH STREET SO,Brigantine,NJ,39.40438683,-74.36978276,RES1,3001,,17,NE,1950,1950,3102,2,1,1564.693786,1564.693786,3505,NO,37.59,50.64,3,-0.32,6106,115.370954,124.878479,134.792891,140.641093,I,Above,Gable,0,5701,Wood,44.11520862,0,0,,,,1,1,,0.03,nav,1,1950,2,, 9578,NJBF000076738,,Brigantine,NJ,39.39462095,-74.40254122,RES1,3001,,NaN,NE,1950,0,3101,1,1,645.8468555,645.8468555,3507,NO,19.45,28.26,1,0.18,6106,114.801749,124.361842,134.205527,140.24802,I,Above,Gable,0,5701,Wood,23.85455092,0,0,,,,1,1,,0.03,nav,1,1950,1,, 9579,NJBF000074583,,Brigantine,NJ,39.38710271,-74.39299856,RES3D,3001,,NaN,ME,1969,0,3301,1,1,33127.04881,33127.04881,3507,NO,16.13,29.84,1,1.9,6110,115.08231,124.616238,134.484521,140.500017,I,Above,Flat,0,NaN,Wood,22.98628581,0,0,,,,1,1,,0.35,nav,1,1969,1,, 9580,NJBF000074475,,Brigantine,NJ,39.38661916,-74.39378983,RES3D,3001,,NaN,ME,1969,0,3301,2,1,26815.87725,26815.87725,3507,NO,34.57,48.28,1,-0.6,6110,115.071265,124.606426,134.473116,140.494036,I,Above,Flat,0,NaN,Wood,41.42400016,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9581,NJBF000075519,,Brigantine,NJ,39.39015721,-74.38820504,RES1,3001,,NaN,NE,1969,0,3102,2,1,1323.039993,1323.039993,3507,NO,35.08,46.91,1,0.71,6110,115.147807,124.674715,134.552673,140.534905,I,Above,Gable,0,5701,Wood,40.99647618,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9582,NJBF000075681,4713 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3906901,-74.41198638,RES1,3001,,17,NE,2014,2014,3103,3,1,1277.336603,1277.336603,3505,NO,42.19,51.68,3,6.08,6102,114.646404,124.226668,134.052105,140.149789,I,Above,Gable,0,5701,Wood,46.93453987,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 9583,NJBF000076119,203 39TH STREET SO,Brigantine,NJ,39.39229485,-74.39244783,RES1,3001,,18,NE,2012,2012,3102,2,1,2153.400999,2153.400999,3507,NO,32.64,44.75,1,-0.57,6106,115.036591,124.573813,134.44116,140.440037,I,Above,Gable,0,5701,Wood,38.69453415,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 9584,NJBF000076287,,Brigantine,NJ,39.39285153,-74.40714077,RES1,3001,,NaN,NE,1969,0,3103,5,1,765.718653,765.718653,3505,NO,78.63,86.96,3,7.36,6106,114.724692,124.29437,134.129004,140.198131,I,Above,Flat,0,5701,Wood,82.79893818,0,0,,,,1,1,,0.03,nav,1,1969,5,, 9585,NJBF000076512,3605 BAYSHORE AVE,Brigantine,NJ,39.39373537,-74.39138021,COM1,3001,,NaN,ME,1969,0,3401,2,1,16517.23099,16517.23099,3507,YES,25.2,34.72,1,0.23,6106,115.043031,124.579164,134.44825,140.437878,I,Above,Flat,0,NaN,Wood,29.96015819,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9586,NJBF000076720,320 28TH STREET SO,Brigantine,NJ,39.39453835,-74.38193023,RES1,3001,,20,NE,2014,2014,3102,3,1,2162.53528,2162.53528,3507,NO,40.6,50.8,1,-0.44,6106,115.229064,124.748015,134.638609,140.576213,I,Above,Flat,0,5701,Wood,45.70270974,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 9587,NJBF000076914,319 27TH STREET SO,Brigantine,NJ,39.39538524,-74.38091261,RES1,3001,,19,NE,2014,2014,3102,3,1,1773.127441,1773.127441,3507,NO,33.36,43.71,1,-0.41,6106,115.24072,124.758591,134.651175,140.581214,I,Above,Gable,0,5701,Wood,38.53479504,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 9588,NJBF000077421,2604 BAYSHORE AVE,Brigantine,NJ,39.39852075,-74.38441331,RES1,3001,,16,NE,1950,1950,3102,2,1,604.8268757,604.8268757,3507,NO,35.87,42.39,1,1.51,6106,115.134997,124.661341,134.544031,140.485359,I,Above,Hip,0,5701,Wood,39.12975541,0,0,,,,1,1,,0.03,nav,1,1950,2,, 9589,NJBF000077413,,Brigantine,NJ,39.39848504,-74.37680805,RES1,3001,,NaN,NE,1969,0,3102,2,1,2748.821284,2748.821284,3507,NO,39.69,54.66,1,2.26,6106,115.291184,124.804696,134.705475,140.605761,I,Above,Flat,0,5701,Wood,47.17114292,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9590,NJBF000077429,,Brigantine,NJ,39.39856875,-74.37294342,GOV1,3001,,NaN,E,1969,0,3401,3,1,1383.135653,1383.135653,3507,NO,45.34,52.96,1,0.42,6110,115.369126,124.876658,134.786751,140.665247,I,Above,Hip,0,NaN,Wood,49.15152332,0,0,,,,1,1,,0.35,nav,1,1969,3,, 9591,NJBF000077836,305 15TH STREET SO,Brigantine,NJ,39.40113523,-74.37275683,RES1,3001,,19,NE,2011,2011,3102,2,1,508.8622693,508.8622693,3502,NO,34.16,41.62,5,0.94,6106,115.345275,124.854612,134.763719,140.635557,I,Above,Flat,0,5701,Wood,37.88946093,0,0,,,,1,1,,0.03,nav,1,2011,2,, 9592,NJBF000077971,336 11TH STREET SO,Brigantine,NJ,39.40198211,-74.36983642,RES1,3001,,20,NE,2013,2013,3102,3,1,1355.023583,1355.023583,3502,NO,48.36,59.09,5,12.58,6106,115.395564,124.90136,134.817141,140.67066,I,Above,Flat,0,5701,Wood,53.72634849,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 9593,NJBF000078002,341 11TH STREET SO,Brigantine,NJ,39.40223001,-74.36924974,RES1,3001,,16,NE,1928,1928,3102,2,1,774.4406245,774.4406245,3502,NO,33.06,46.19,5,0.03,6110,115.4048,124.909975,134.827056,140.676715,I,Above,Gable,0,5701,Wood,39.62463018,0,0,,,,1,1,,0.35,nav,1,1928,2,, 9594,NJBF000078114,343 9TH STREET SO,Brigantine,NJ,39.40303442,-74.36768608,RES1,3001,,20,NE,2012,2012,3102,3,1,841.3219019,841.3219019,3502,NO,52.44,65.7,5,-3.4,6110,115.427903,124.931587,134.852057,140.691097,I,Above,Flat,0,5701,Wood,59.07207892,0,1.1,,,,1,1,,0.35,nav,1,2012,3,, 9595,NJBF000080669,705 LAFAYETTE BLVD,Brigantine,NJ,39.41586506,-74.37901229,RES1,3001,,17,NE,1967,1967,3103,2,1,651.3401386,651.3401386,3505,YES,42.05,49.97,3,4.02,6106,115.064169,124.588798,134.471859,140.34653,I,Above,Flat,0,5701,Wood,46.00710689,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 9596,NJBF000081169,830 BOBBY JONES RD,Brigantine,NJ,39.41785478,-74.38157549,RES1,3001,,16,NE,1971,1971,3103,2,1,721.132602,721.132602,3505,YES,40.34,54.97,3,8.29,6106,114.991986,124.520093,134.395222,140.278896,I,Above,Hip,0,5701,Wood,47.65551879,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 9597,NJBF000076138,,Brigantine,NJ,39.39238091,-74.39258575,RES1,3001,,NaN,NE,1969,0,3102,2,1,1474.284339,1474.284339,3507,NO,35.05,43.32,1,-0.1,6106,115.032796,124.570363,134.437357,140.436717,I,Above,Hip,0,5701,Wood,39.18698979,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9598,NJBF000076157,,Brigantine,NJ,39.3924473,-74.39269671,RES1,3001,,NaN,NE,1969,0,3102,2,1,1474.713418,1474.713418,3507,NO,32.71,47.33,1,-0.48,6106,115.029777,124.56762,134.434332,140.434089,I,Above,Hip,0,5701,Wood,40.02002716,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9599,NJBF000077959,2001 BAYSHORE AVE,Brigantine,NJ,39.40189889,-74.37993015,RES1,3001,,21,NE,2012,2012,3102,2,1,3578.148824,3578.148824,3507,NO,32.6,41.31,1,2.72,6106,115.190782,124.711706,134.603024,140.512559,I,Above,Gable,0,5701,Wood,36.95645328,0,0,,,,1,1,,0.03,nav,1,2012,2,, 9600,NJBF000077286,2304 W BRIGANTINE AVE,Brigantine,NJ,39.39769572,-74.37990236,RES1,3001,,20,NE,2014,2014,3102,3,1,5585.249187,5585.249187,3507,NO,43.86,55.18,1,2.79,6106,115.236407,124.754394,134.648193,140.567273,I,Above,Hip,0,5701,Wood,49.51740162,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 9601,NJBF000075403,332 39TH STREET SO,Brigantine,NJ,39.38978717,-74.38958972,RES1,3001,,19,NE,2016,2016,3102,3,1,1730.99088,1730.99088,3507,NO,47.1,54.92,1,-0.59,6106,115.12325,124.652594,134.527537,140.518063,I,Above,Hip,0,5701,Wood,51.01071368,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 9602,NJBF000076015,353 34TH STREET SO,Brigantine,NJ,39.39194383,-74.38573297,RES1,3001,,19,NE,2017,2017,3102,3,1,1179.311997,1179.311997,3507,NO,46.34,59.08,1,1.03,6106,115.179177,124.702885,134.585781,140.550287,I,Above,Gable,0,5701,Wood,52.7135354,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 9603,NJBF000076845,,Brigantine,NJ,39.39497005,-74.39193025,RES1,3001,,NaN,NE,1969,0,3102,2,1,3985.129219,3985.129219,3507,NO,25.98,37.16,1,0.19,6106,115.018282,124.556359,134.423573,140.412822,I,Above,Gable,0,5701,Wood,31.5681552,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9604,NJBF000076270,229 37TH STREET SO,Brigantine,NJ,39.39275662,-74.39054203,RES1,3001,,17,NE,2013,2013,3102,2,1,1780.864213,1780.864213,3507,NO,26.03,31.79,1,2.48,6106,115.071,124.604738,134.476203,140.464028,I,Above,Gable,0,5701,Wood,28.90617118,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 9605,NJBF000075552,319 39TH STREET SO,Brigantine,NJ,39.39027171,-74.38959934,RES1,3001,,NaN,NE,1952,0,3102,2,2,1882.449618,1882.449618,3507,NO,23.52,34.29,1,2.43,6106,115.117721,124.647517,134.522238,140.511555,I,Above,Gable,0,5701,Wood,28.90516772,0,0,,,,1,1,,0.03,nav,1,1952,2,, 9606,NJBF000076050,,Brigantine,NJ,39.392065,-74.3882465,RES1,3001,,NaN,NE,1969,0,3102,2,1,2294.780236,2294.780236,3507,NO,27.04,38.54,1,2.63,6106,115.126005,124.654661,134.531703,140.509278,I,Above,Hip,0,5701,Wood,32.78707845,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9607,NJBF000080302,112 12TH STREET NO,Brigantine,NJ,39.41462031,-74.35765444,RES1,3001,,NaN,NE,1966,1966,3102,2,1,1279.503651,1279.503651,3507,NO,36.12,44.43,1,-0.65,6106,115.507718,125.008104,134.945482,140.704574,I,Above,Gable,0,5701,Wood,40.27722481,0,0,,,,1,1,,0.03,nav,1,1966,2,, 9608,NJBF000079351,,Brigantine,NJ,39.41076102,-74.36085155,RES1,3001,,NaN,NE,1969,0,3102,2,1,1087.406216,1087.406216,3507,NO,34.5,40.48,1,-0.43,6106,115.483917,124.985025,134.917353,140.701896,I,Above,Gable,0,5701,Wood,37.49304965,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9609,NJBF000076002,255 38TH STREET SO,Brigantine,NJ,39.3918955,-74.3906255,RES1,3001,,19,NE,1950,2018,3102,2,1,1159.683525,1159.683525,3507,NO,29.72,37.75,1,-0.51,6106,115.078694,124.611919,134.483592,140.47408,I,Above,Gable,0,5701,Wood,33.73156899,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 9610,NJBF000075569,315 39TH STREET SO,Brigantine,NJ,39.39033933,-74.38971631,RES1,3001,,47,NE,1950,1950,3102,2,2,2108.978428,2108.978428,3507,NO,25.89,33.95,1,2.36,6106,115.114564,124.644654,134.51908,140.50884,I,Above,Hip,0,5701,Wood,29.92090137,0,0,,,,1,1,,0.03,nav,1,1950,2,, 9611,NJBF000075467,,Brigantine,NJ,39.38996346,-74.39571345,RES1,3001,,NaN,NE,1969,0,3102,2,1,2262.773667,2262.773667,3507,NO,35.41,43.42,1,-0.83,6106,114.994365,124.5366,134.397654,140.419434,I,Above,Flat,0,5701,Wood,39.4161113,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9612,NJBF000076485,,Brigantine,NJ,39.39358749,-74.38872917,RES1,3001,,NaN,NE,1969,0,3102,2,1,1516.349004,1516.349004,3507,NO,35.31,41.79,1,1.88,6106,115.099422,124.63024,134.505465,140.481707,I,Above,Gable,0,5701,Wood,38.54817621,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9613,NJBF000075553,,Brigantine,NJ,39.39027919,-74.38826465,RES1,3001,,NaN,NE,1969,0,3102,2,1,1440.518866,1440.518866,3507,NO,28.54,42.33,1,2.04,6106,115.145223,124.672361,134.550131,140.532369,I,Above,Hip,0,5701,Wood,35.43603814,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9614,NJBF000075994,,Brigantine,NJ,39.39186938,-74.386263,RES1,3001,,NaN,NE,1969,0,3102,2,1,1454.786429,1454.786429,3507,NO,22.97,32.78,1,-0.57,6106,115.169073,124.693726,134.575428,140.54296,I,Above,Hip,0,5701,Wood,27.87357697,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9615,NJBF000076263,3400 W BRIGANTINE AVE,Brigantine,NJ,39.39277448,-74.38722095,COM4,3001,,NaN,ME,1969,0,3401,2,1,1584.188068,1584.188068,3507,NO,38.87,48.12,1,1.06,6106,115.139408,124.666669,134.545749,140.516105,I,Above,Flat,0,NaN,Wood,43.49461249,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9616,NJBF000076225,3400 W BRIGANTINE AVE,Brigantine,NJ,39.39265333,-74.38704697,RES1,3001,,NaN,NE,1969,0,3102,2,1,1042.136586,1042.136586,3507,NO,22.16,27.76,1,-0.66,6106,115.14432,124.671146,134.550684,140.520421,I,Above,Gable,0,5701,Wood,24.95933594,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9617,NJBF000074427,,Brigantine,NJ,39.38637624,-74.39306619,RES3D,3001,,NaN,ME,1969,0,3301,2,1,2334.740801,2334.740801,3507,NO,36.37,42.19,1,0,6110,115.089007,124.622374,134.490773,140.508565,I,Above,Hip,0,NaN,Wood,39.27690566,0,0,,,,1,1,,1,nav,1,1969,2,, 9618,NJBF000076737,313 29TH STREET SO,Brigantine,NJ,39.3946316,-74.3825733,RES1,3001,,20,NE,1939,2018,3102,3,1,1329.838453,1329.838453,3507,NO,55.5,62.97,1,2.55,6106,115.214833,124.735011,134.624047,140.564912,I,Above,Hip,0,5701,Wood,59.23785717,0,1.1,,,,1,1,,0.03,nav,1,1939,3,, 9619,NJBF000076113,,Brigantine,NJ,39.39227357,-74.39112847,RES1,3001,,NaN,NE,1969,0,3102,2,1,1318.18839,1318.18839,3507,NO,23.33,34.77,1,1.4,6106,115.064147,124.598681,134.469036,140.461154,I,Above,Hip,0,5701,Wood,29.04727883,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9620,NJBF000075409,,Brigantine,NJ,39.38975977,-74.38740612,RES3C,3001,,NaN,E,1969,0,3303,3,1,2689.22668,2689.22668,3507,NO,44.61,55.06,1,0.74,6106,115.168692,124.693652,134.573606,140.552592,I,Above,Flat,0,NaN,Wood,49.83897033,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9621,NJBF000077859,2100 BAYSHORE AVE,Brigantine,NJ,39.40127554,-74.38041163,RES1,3001,,19,NE,2013,2013,3101,3,1,2534.141573,2534.141573,3507,NO,41.19,52,1,2.83,6106,115.187559,124.708879,134.599427,140.512974,I,Above,Gable,0,5701,Wood,46.59720069,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 9622,NJBF000077965,,Brigantine,NJ,39.40197402,-74.37772177,RES1,3001,,NaN,NE,1969,0,3101,1,1,1760.17907,1760.17907,3507,NO,15.36,26.7,1,-0.17,6106,115.235098,124.752569,134.649134,140.546566,I,Above,Gable,0,5701,Wood,21.03205045,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9623,NJBF000075018,4502 HARBOR BEACH BLVD,Brigantine,NJ,39.38842406,-74.39711875,RES1,3001,,16,NE,1968,1968,3102,2,1,1553.179137,1553.179137,3507,YES,38.81,50.35,1,1.98,6106,114.982053,124.526085,134.384663,140.417773,I,Above,Hip,0,5701,Wood,44.58078384,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 9624,NJBF000076336,,Brigantine,NJ,39.39304238,-74.39455599,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4789.868104,4789.868104,3507,NO,30.75,42.42,1,-0.69,6106,114.984777,124.526866,134.389097,140.396748,I,Above,Flat,0,5701,Wood,36.58671831,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9625,NJBF000076686,,Brigantine,NJ,39.39436233,-74.39569532,COM4,3001,,NaN,ME,1969,0,3401,2,1,4162.507699,4162.507699,3507,NO,22.87,28.32,1,0.8,6106,114.946866,124.492177,134.351188,140.361043,I,Above,Flat,0,NaN,Wood,25.59532091,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9626,NJBF000077135,2500 W BRIGANTINE AVE,Brigantine,NJ,39.39675909,-74.38061714,COM8,3001,,NaN,ME,1969,0,3401,2,1,1659.2331,1659.2331,3507,NO,27.66,32.97,1,2.62,6106,115.231885,124.750358,134.642951,140.568121,I,Above,Gable,0,NaN,Wood,30.31510185,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9627,NJBF000086175,157 WHEAT ROAD,Buena,NJ,39.51156129,-74.93726101,RES1,3001,,16,NE,1977,1977,3102,2,1,1365.3908,1365.3908,3505,NO,35.6,48.15,3,4.78,6112,107.375817,116.25851,125.947663,128.96846,I,Above,Gable,0,5701,,41.87395742,0,0,,,,1,1,,0.15,nav,1,1977,2,, 9628,NJBF000086182,143 WHEAT ROAD,Buena,NJ,39.51165476,-74.93557065,RES1,3001,,17,NE,1969,1969,3102,1,1,2334.230547,2334.230547,3505,NO,15.51,25.16,3,2.91,6112,107.385819,116.270933,125.960278,128.986657,I,Above,Hip,0,5701,,20.3324785,0,0,,,,1,1,,0.35,nav,1,1969,1,, 9629,NJBF000086244,178 WHEAT ROAD,Buena,NJ,39.51221194,-74.93667387,RES1,3001,,17,NE,1900,1900,3102,1,1,1770.051287,1770.051287,3505,NO,18.17,25,3,6.3,6112,107.377096,116.258659,125.948182,128.969438,I,Above,Gable,0,5701,,21.58503008,0,0,,,,1,1,,0.15,nav,1,1900,1,, 9630,NJBF000086246,174 WHEAT ROAD,Buena,NJ,39.51226437,-74.93585762,RES1,3001,,17,NE,1950,1950,3102,1,1,1463.3935,1463.3935,3505,NO,16.88,28.08,3,1.4,6112,107.381905,116.26461,125.954229,128.978157,I,Above,Flat,0,5701,,22.48101038,0,1.1,,,,1,1,,0.15,nav,1,1950,1,, 9631,NJBF000086268,174 WHEAT ROAD,Buena,NJ,39.51244411,-74.93601341,RES1,3001,,17,NE,1950,1950,3102,1,1,1130.27513,1130.27513,3505,NO,15.66,27.07,3,0.09,6109,107.380319,116.2622,125.951895,128.97486,I,Above,Flat,0,5701,,21.36050579,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 9632,NJBF000086915,378 SOUTH BREWSTER RD,Buena,NJ,39.5212994,-74.96668534,RES1,3001,,16,NE,1976,1976,3101,1,1,1982.355194,1982.355194,3505,NO,25.34,39.83,3,6.8,6112,107.164421,115.971471,125.663652,128.572219,I,Above,Hip,0,5701,,32.58693684,0,0,,,,1,1,,0.15,nav,1,1976,1,, 9633,NJBF000086918,386 SOUTH BREWSTER ROAD,Buena,NJ,39.52140417,-74.96771946,RES1,3001,,16,NE,1960,1960,3101,1,1,501.1584612,501.1584612,3505,NO,16.51,30.83,3,4.82,6112,107.157934,115.963114,125.655317,128.560756,I,Above,Gable,0,5701,,23.67235834,0,0,,,,1,1,,0.15,nav,1,1960,1,, 9634,NJBF000086955,403 PLYMOUTH STREET,Buena,NJ,39.52274924,-74.92260639,GOV1,3002,,NaN,E,1969,0,3401,1,1,3339.455695,3339.455695,3507,NO,17.55,25.2,1,2.3,6112,107.427676,116.296146,125.992254,129.036245,I,Above,Flat,0,5701,,21.37419566,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9635,NJBF000086964,403 PLYMOUTH STREET,Buena,NJ,39.52299431,-74.92371159,GOV1,3002,,NaN,E,1969,0,3401,1,1,1912.548793,1912.548793,3507,NO,16.26,29.54,1,2.25,6112,107.419926,116.285911,125.982024,129.021638,I,Above,Flat,0,5701,,22.89933537,0,0,,,,1,1,,1,nav,1,1969,1,, 9636,NJBF000086973,403 PLYMOUTH STREET,Buena,NJ,39.52314999,-74.92381642,GOV1,3002,,NaN,E,1969,0,3401,1,1,2598.330106,2598.330106,3507,NO,14.43,20.81,1,2.04,6112,107.418748,116.284045,125.980225,129.01911,I,Above,Flat,0,5701,,17.61848523,0,0,,,,1,1,,1,nav,1,1969,1,, 9637,NJBF000086975,403 PLYMOUTH STREET,Buena,NJ,39.52318284,-74.92349489,GOV1,3002,,NaN,E,1969,0,3401,1,1,7657.93184,7657.93184,3507,NO,16.05,26.37,1,0.3,6112,107.420644,116.286305,125.982536,129.022435,I,Above,Flat,0,5701,,21.20761795,0,0,,,,1,1,,1,nav,1,1969,1,, 9638,NJBF000086990,220 HAMMONTON ROAD,Buena,NJ,39.52341505,-74.91965974,RES1,3001,,15,NE,1940,1940,3102,1,1,1667.300062,1667.300062,3505,NO,21.11,31.31,3,1.74,6112,107.443922,116.314471,126.011236,129.063738,I,Above,Flat,0,5701,,26.20918334,0,0,,,,1,1,,0.15,nav,1,1940,1,, 9639,NJBF000086993,403 PLYMOUTH STREET,Buena,NJ,39.52347877,-74.92399881,GOV1,3002,,NaN,E,1969,0,3401,1,1,8296.731184,8296.731184,3507,NO,12.84,18.15,1,1.43,6112,107.416492,116.280393,125.976719,129.01419,I,Above,Flat,0,5701,,15.49597529,0,0,,,,1,1,,1,nav,1,1969,1,, 9640,NJBF000088836,102 UNEXPECTED ROAD,Buena Vista,NJ,39.56085682,-74.92888736,RES1,3001,,16,NE,1940,1940,3101,1,2,1581.6,1581.6,3507,NO,13.79,23.03,1,-0.5,6112,107.265228,115.99212,125.707241,128.654877,I,Above,Gable,0,5701,,18.41008444,0,0,,,,1,1,,0.35,nav,1,1940,1,, 9641,NJBF000085603,3701 OAK ROAD,Buena Vista,NJ,39.49578346,-74.93178867,COM1,3001,,NaN,ME,1969,0,3401,1,1,1435.642906,1435.642906,3507,NO,18.88,30.23,1,-0.36,6112,107.466678,116.408197,126.090064,129.170937,I,Above,Flat,0,NaN,,24.55176238,0,0,,,,1,1,,0.15,nav,1,1969,1,, 9642,NJBF000085550,,Buena Vista,NJ,39.49318849,-74.94886879,IND3,3002,,NaN,E,1969,0,3401,3,1,5644.39303,5644.39303,3507,NO,40.32,53.13,1,2.31,6112,107.373291,116.292209,125.971324,128.995288,I,Above,Hip,0,NaN,,46.72816966,0,0,,,,1,1,,0.15,nav,1,1969,3,, 9643,NJBF000086228,214 OAK ISLAND ROAD,Buena Vista,NJ,39.51209101,-74.91174034,RES1,3001,999,NaN,NE,1969,0,3102,2,1,588.3824345,588.3824345,3507,NO,24.58,34.27,1,1.67,6112,107.532425,116.454613,126.146572,129.258187,I,Above,Gable,0,5701,,29.42493183,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9644,NJBF000085672,OAK ROAD,Buena Vista,NJ,39.49904302,-74.96243032,AGR1,3002,,NaN,NE,1969,0,3401,3,1,1068.853468,1068.853468,3507,NO,54.14,64.17,1,-0.48,6112,107.270512,116.148959,125.830225,128.795031,I,Above,Gable,0,NaN,,59.15063465,0,0,,,,1,1,,0.35,nav,1,1969,3,, 9645,NJBF000086592,160 FURSIN AVENUE,Buena Vista,NJ,39.51549743,-74.91202159,RES1,3001,999,NaN,NE,1969,0,3102,2,1,670.4960758,670.4960758,3507,NO,31.28,39.01,1,2.15,6112,107.518937,116.428795,126.122423,129.223203,I,Above,Gable,0,NaN,,35.1438602,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9646,NJBF000082857,202 MC DONALD AVENUE,Buena Vista,NJ,39.43437203,-74.85792486,RES1,3001,,15,NE,1950,1950,3101,1,1,947.0059119,947.0059119,3505,NO,19.86,26.37,3,4.23,6112,108.185092,117.475929,127.142388,130.892566,I,Above,Gable,0,5701,,23.11213688,0,0,,,,1,1,,1,nav,1,1950,1,, 9647,NJBF000086595,160 FURSIN AVENUE,Buena Vista,NJ,39.51552401,-74.91163634,RES1,3001,999,NaN,NE,1969,0,3102,2,1,719.2558845,719.2558845,3507,NO,21.81,35.59,1,0.23,6112,107.521287,116.431662,126.125346,129.227485,I,Above,Flat,0,NaN,,28.69998571,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9648,NJBF000085602,3701 OAK ROAD,Buena Vista,NJ,39.49577252,-74.93164083,COM1,3001,,NaN,ME,1969,0,3401,1,1,1495.442076,1495.442076,3507,NO,15.8,30.45,1,0.33,6112,107.467619,116.409433,126.091308,129.172779,I,Above,Flat,0,NaN,,23.12800936,0,0,,,,1,1,,0.15,nav,1,1969,1,, 9649,NJBF000082397,1312 TUCKAHOE ROAD,Buena Vista,NJ,39.42956735,-74.84931315,RES1,3001,,17,NE,1988,1988,3101,1,1,1203.936956,1203.936956,3505,NO,23.3,35.59,3,4.81,6112,108.263442,117.590981,127.258183,131.101499,I,Above,Gable,0,5701,,29.44669015,0,0,,,,1,1,,0.15,nav,1,1988,1,, 9650,NJBF000082404,1304 TUCKAHOE ROAD,Buena Vista,NJ,39.42963888,-74.85018143,RES1,3001,,17,NE,1978,1978,3101,2,1,1011.029737,1011.029737,3505,NO,29.4,41.36,3,3.87,6112,108.257526,117.582498,127.249451,131.085481,I,Above,Gable,0,5701,,35.38134692,0,0,,,,1,1,,0.35,nav,1,1978,2,, 9651,NJBF000082416,1312 TUCKAHOE ROAD,Buena Vista,NJ,39.42973084,-74.84898051,RES1,3001,,17,NE,1988,1988,3101,1,1,1383.263905,1383.263905,3505,NO,20.98,28.18,3,4.5,6112,108.264766,117.59275,127.26012,131.105176,I,Above,Gable,0,5701,,24.57682654,0,0,,,,1,1,,0.15,nav,1,1988,1,, 9652,NJBF000085261,255 LLEWELLYN AVENUE,Buena Vista,NJ,39.47823033,-74.8606048,RES1,3001,,17,NE,1950,1950,3101,1,1,1314.442438,1314.442438,3507,NO,18.21,32.06,1,2.89,6112,107.98331,117.123524,126.805899,130.309567,I,Above,Gable,0,5701,,25.13800543,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 9653,NJBF000085265,728 MAIN AVENUE,Buena Vista,NJ,39.47886126,-74.87648544,RES1,3001,,17,NE,1965,1965,3101,2,1,631.0474463,631.0474463,3507,NO,27.79,36.02,1,2.02,6112,107.877484,116.981545,126.662147,130.066396,I,Above,Gable,0,5701,,31.90420599,0,0,,,,1,1,,0.15,nav,1,1965,2,, 9654,NJBF000085281,737 MAIN AVENUE,Buena Vista,NJ,39.48017054,-74.87699733,RES1,3001,,17,NE,1960,1960,3101,1,2,1581.010884,1581.010884,3507,NO,15.55,30.08,1,0.92,6112,107.869229,116.967629,126.648724,130.04393,I,Above,Gable,0,5701,,22.81623668,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9655,NJBF000085354,139 CIMINO BOULEVARD,Buena Vista,NJ,39.48577517,-74.93299818,RES1,3001,,17,NE,1972,1972,3101,1,1,1279.564707,1279.564707,3505,NO,24.32,38.56,3,8.32,6112,107.497444,116.467185,126.143958,129.247475,I,Above,Flat,0,5701,,31.44021994,0,0,,,,1,1,,0.15,nav,1,1972,1,, 9656,NJBF000085362,148 CIMINO BOULEVARD,Buena Vista,NJ,39.48613624,-74.93154883,RES1,3001,,17,NE,2000,2000,3101,2,1,2406.91109,2406.91109,3505,NO,37.9,50.79,3,3.48,6112,107.504844,116.476222,126.153324,129.261748,I,Above,Gable,0,5701,,44.34330215,0,1.1,,,,1,1,,0.35,nav,1,2000,2,, 9657,NJBF000085453,4149 POST ROAD,Buena Vista,NJ,39.48920312,-74.94422913,RES1,3001,,17,NE,1970,1970,3101,1,1,2462.182824,2462.182824,3505,NO,17.36,26.93,3,3.92,6112,107.416382,116.355257,126.032719,129.083366,I,Above,Gable,0,5701,,22.14586801,0,0,,,,1,1,,0.15,nav,1,1970,1,, 9658,NJBF000085454,4159 POST ROAD,Buena Vista,NJ,39.48926508,-74.94264203,RES1,3001,,17,NE,1957,1957,3101,1,1,2180.110327,2180.110327,3505,NO,7.64,14.63,3,-2.93,6112,107.425679,116.367266,126.044893,129.101361,I,Above,Flat,0,5701,,11.13664466,0,0,,,,1,1,,0.15,nav,1,1957,1,, 9659,NJBF000085480,4114 POST ROAD,Buena Vista,NJ,39.4902406,-74.94884912,RES1,3001,,17,NE,1989,1989,3102,2,1,2355.551322,2355.551322,3505,NO,24.7,38.87,3,0.84,6112,107.384707,116.312195,125.989816,129.02087,I,Above,Hip,0,5701,,31.78571723,0,0,,,,1,1,,0.35,nav,1,1989,2,, 9660,NJBF000085485,4246 POST ROAD,Buena Vista,NJ,39.49045551,-74.93423986,RES1,3001,,17,NE,1969,2018,3101,1,1,1055.647346,1055.647346,3505,NO,10.52,20.2,3,-2.59,6112,107.471879,116.425268,126.104257,129.190008,I,Above,Gable,0,5701,,15.35977813,0,0,,,,1,1,,0.15,nav,1,1969,1,, 9661,NJBF000085493,369 LINCOLN AVENUE,Buena Vista,NJ,39.49081358,-74.95045519,RES1,3001,,17,NE,1995,1995,3102,1,1,1951.328073,1951.328073,3505,NO,22.76,35.42,3,8.68,6112,107.37291,116.295856,125.973651,128.997538,I,Above,Gable,0,5701,,29.08806964,0,0,,,,1,1,,0.35,nav,1,1995,1,, 9662,NJBF000085497,369 LINCOLN AVENUE,Buena Vista,NJ,39.49105455,-74.95045304,RES1,3001,,17,NE,1995,1995,3102,1,1,1115.740228,1115.740228,3505,NO,18.98,29.79,3,1.38,6112,107.371994,116.294252,125.972169,128.995496,I,Above,Gable,0,5701,,24.38324766,0,0,,,,1,1,,0.35,nav,1,1995,1,, 9663,NJBF000085501,365 LINCOLN AVENUE,Buena Vista,NJ,39.49138313,-74.95069638,RES1,3001,,17,NE,1940,1940,3102,2,1,1752.617083,1752.617083,3505,NO,37.73,43.16,3,4.05,6112,107.369284,116.290162,125.968229,128.989913,I,Above,Hip,0,5701,,40.44584184,0,0,,,,1,1,,0.35,nav,1,1940,2,, 9664,NJBF000085503,365 LINCOLN AVENUE,Buena Vista,NJ,39.49142153,-74.9504018,RES1,3001,,17,NE,1940,1940,3102,2,1,1209.773174,1209.773174,3505,NO,30.89,38.22,3,7.88,6112,107.370889,116.292181,125.970289,128.992934,I,Above,Flat,0,5701,,34.55181599,0,0,,,,1,1,,0.35,nav,1,1940,2,, 9665,NJBF000085507,361 LINCOLN AVENUE,Buena Vista,NJ,39.49182302,-74.95031595,RES1,3001,,17,NE,1975,1975,3102,1,1,1631.451199,1631.451199,3505,NO,16.68,21.89,3,1.83,6112,107.369863,116.290154,125.968472,128.990482,I,Above,Gable,0,5701,,19.28601131,0,0,,,,1,1,,0.35,nav,1,1975,1,, 9666,NJBF000085520,355 LINCOLN AVENUE,Buena Vista,NJ,39.49233995,-74.95008075,RES1,3001,,17,NE,1999,1999,3102,2,1,1829.194175,1829.194175,3505,YES,40.95,49.65,3,6.36,6112,107.369286,116.288504,125.967102,128.988734,I,Above,Flat,0,5701,,45.30072983,0,0,,,,1,1,,0.35,nav,1,1999,2,, 9667,NJBF000085525,,Buena Vista,NJ,39.49242975,-74.94801005,IND3,3002,,NaN,E,1969,0,3401,3,1,4468.766126,4468.766126,3507,NO,48.54,58.68,1,0.04,6112,107.381324,116.30398,125.982775,129.011631,I,Above,Flat,0,NaN,,53.612923,0,0,,,,1,1,,1,nav,1,1969,3,, 9668,NJBF000085527,351 LINCOLN AVENUE,Buena Vista,NJ,39.49251143,-74.94945223,RES1,3001,,17,NE,1973,1973,3102,1,1,654.3199136,654.3199136,3505,NO,13.13,25.72,3,1.53,6109,107.37239,116.292235,125.970965,128.994444,I,Above,Hip,0,5701,,19.42639899,0,0,,,,1,1,,0.03,nav,1,1973,1,, 9669,NJBF000085531,351 LINCOLN AVENUE,Buena Vista,NJ,39.49255473,-74.94970007,RES1,3001,,17,NE,1973,1973,3102,1,1,1634.367147,1634.367147,3505,NO,18.82,32.85,3,7.24,6112,107.37074,116.290015,125.968749,128.991237,I,Above,Gable,0,5701,,25.8326166,0,0,,,,1,1,,0.35,nav,1,1973,1,, 9670,NJBF000085534,,Buena Vista,NJ,39.49267191,-74.94856486,IND3,3002,,NaN,E,1969,0,3401,2,1,25543.26538,25543.26538,3507,NO,27.5,41.56,1,-0.12,6109,107.377079,116.298039,125.976915,129.003195,I,Above,Flat,0,NaN,,34.5337754,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9671,NJBF000085546,,Buena Vista,NJ,39.49298282,-74.94924589,IND3,3002,,NaN,E,1969,0,3401,3,1,7205.293073,7205.293073,3507,NO,47.8,54.48,1,-0.71,6112,107.371818,116.290662,125.969645,128.992746,I,Above,Flat,0,NaN,,51.13979092,0,0,,,,1,1,,1,nav,1,1969,3,, 9672,NJBF000085596,3701 OAK ROAD,Buena Vista,NJ,39.49523089,-74.9321059,COM1,3001,,NaN,ME,1969,0,3401,1,1,662.0683873,662.0683873,3507,NO,14.1,28.2,1,1.89,6112,107.466809,116.40947,126.091033,129.172179,I,Above,Flat,0,NaN,,21.15179335,0,0,,,,1,1,,0.15,nav,1,1969,1,, 9673,NJBF000085597,3701 OAK ROAD,Buena Vista,NJ,39.49525231,-74.93236667,COM1,3001,,NaN,ME,1969,0,3401,3,1,692.1206696,692.1206696,3507,NO,32.87,44.98,1,-0.38,6112,107.465139,116.40727,126.088818,129.1689,I,Above,Flat,0,NaN,,38.92581304,0,0,,,,1,1,,0.15,nav,1,1969,3,, 9674,NJBF000085600,3701 OAK ROAD,Buena Vista,NJ,39.49549727,-74.93159287,COM1,3001,,NaN,ME,1969,0,3401,2,1,844.3103585,844.3103585,3507,NO,30.26,40.3,1,2.96,6112,107.468944,116.411697,126.093441,129.175846,I,Above,Flat,0,NaN,,35.28434066,0,0,,,,1,1,,0.15,nav,1,1969,2,, 9675,NJBF000085601,3701 OAK ROAD,Buena Vista,NJ,39.49563474,-74.93195841,COM1,3001,,NaN,ME,1969,0,3401,1,1,2303.839958,2303.839958,3507,NO,18.21,24.69,1,-0.79,6112,107.4662,116.407877,126.089654,129.170276,I,Above,Flat,0,NaN,,21.44723109,0,0,,,,1,1,,0.15,nav,1,1969,1,, 9676,NJBF000085614,3718 OAK ROAD,Buena Vista,NJ,39.49703266,-74.93096933,COM1,3001,,17,ME,2002,2002,3401,1,1,3722.363204,3722.363204,3507,NO,17.14,25.27,1,1.35,6112,107.467028,116.406118,126.08868,129.169318,I,Above,Gable,0,5701,,21.20574336,0,0,,,,1,1,,0.35,nav,1,2002,1,, 9677,NJBF000085619,3806 OAK ROAD,Buena Vista,NJ,39.49728895,-74.9238647,COM1,3001,,NaN,ME,1969,0,3401,1,1,3301.610183,3301.610183,3507,NO,14.17,20.77,1,-0.97,6112,107.509684,116.460558,126.143956,129.251616,I,Above,Hip,0,NaN,,17.46648577,0,0,,,,1,1,,1,nav,1,1969,1,, 9678,NJBF000085630,3806 OAK ROAD,Buena Vista,NJ,39.49756617,-74.92354412,COM1,3001,,NaN,ME,1900,0,3401,1,1,1092.46457,1092.46457,3507,NO,19.84,32.45,1,1.66,6112,107.510641,116.4612,126.144766,129.252901,I,Above,Flat,0,5701,,26.14523108,0,0,,,,1,1,,0.15,nav,1,1900,1,, 9679,NJBF000085705,350 UNION ROAD,Buena Vista,NJ,39.50120446,-74.91963495,COM1,3001,,17,ME,1900,1900,3401,1,1,2735.535786,2735.535786,3507,NO,12.79,23.75,1,-0.22,6112,107.521531,116.467178,126.152933,129.265935,I,Above,Flat,0,5701,,18.26970478,0,1.2,,,,1,1,,0.15,nav,1,1900,1,, 9680,NJBF000085994,175 LINCOLN AVENUE,Buena Vista,NJ,39.50610885,-74.93454222,COM1,3001,,NaN,ME,2000,2000,3401,1,1,1903.820283,1903.820283,3507,NO,16.56,29.13,1,-0.79,6112,107.411952,116.316393,126.003098,129.046755,I,Above,Flat,0,NaN,,22.8450028,0,0,,,,1,1,,0.03,nav,1,2000,1,, 9681,NJBF000086151,223 COUNTRY CLUB LANE,Buena Vista,NJ,39.51025779,-74.89306619,RES1,3001,,17,NE,1995,1995,3102,1,1,6670.141759,6670.141759,3504,NO,14.4,23.6,-4,0,6112,107.658044,116.617535,126.310698,129.502232,I,Above,Hip,0,5701,,18.99896624,0,1.2,,,,1,1,,0.35,nav,1,1995,1,, 9682,NJBF000086199,214 OAK ISLAND ROAD,Buena Vista,NJ,39.51177336,-74.91194982,RES1,3001,999,NaN,NE,1969,0,3102,2,1,694.061497,694.061497,3507,NO,24.65,29.89,1,-0.67,6112,107.532199,116.455149,126.146927,129.258672,I,Above,Flat,0,5701,,27.27304023,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9683,NJBF000086208,214 OAK ISLAND ROAD,Buena Vista,NJ,39.51183699,-74.91244395,RES1,3001,999,NaN,NE,1969,0,3102,2,1,710.5363232,710.5363232,3507,NO,40.55,45.84,1,2.47,6112,107.528861,116.450785,126.142541,129.252221,I,Above,Gable,0,5701,,43.19924803,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9684,NJBF000086209,MARBLE ROAD,Buena Vista,NJ,39.51184916,-74.91341442,RES1,3001,,NaN,NE,1969,0,3102,2,1,713.4456628,713.4456628,3507,NO,32.47,38.94,1,-0.29,6112,107.522706,116.443011,126.134666,129.240637,I,Above,Gable,0,5701,,35.70425783,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9685,NJBF000086226,214 OAK ISLAND ROAD,Buena Vista,NJ,39.51205398,-74.91191282,RES1,3001,999,NaN,NE,1969,0,3102,2,1,776.4475212,776.4475212,3507,NO,37.09,48.36,1,1.35,6112,107.53146,116.453496,126.145418,129.256483,I,Above,Gable,0,5701,,42.72193437,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9686,NJBF000086233,214 OAK ISLAND ROAD,Buena Vista,NJ,39.5121335,-74.91151308,RES1,3001,999,NaN,NE,1969,0,3102,2,1,728.9631293,728.9631293,3507,NO,37.1,49.81,1,2.7,6112,107.533713,116.456124,126.148129,129.260484,I,Above,Gable,0,5701,,43.45596686,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9687,NJBF000086307,107 ELM LANE,Buena Vista,NJ,39.51277152,-74.8930059,RES1,3001,,17,NE,1995,1995,3102,2,1,2160.702542,2160.702542,3504,NO,38.86,47.36,-4,0,6112,107.649939,116.600216,126.294645,129.477752,I,Above,Hip,0,5701,,43.10978407,0,1.1,,,,1,1,,0.35,nav,1,1995,2,, 9688,NJBF000086358,214 OAK ISLAND ROAD,Buena Vista,NJ,39.51317968,-74.9121259,RES1,3001,999,NaN,NE,1969,0,3102,2,1,2230.501591,2230.501591,3507,NO,25.11,32.97,1,2.51,6109,107.52623,116.444008,126.136466,129.243464,I,Above,Gable,0,5701,,29.03922227,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9689,NJBF000086377,214 OAK ISLAND ROAD,Buena Vista,NJ,39.51332296,-74.91212353,RES1,3001,999,NaN,NE,1969,0,3102,2,1,570.9541196,570.9541196,3507,NO,28.31,42.03,1,1.14,6112,107.52575,116.443034,126.135564,129.242157,I,Above,Gable,0,5701,,35.17283024,0,0,,,,1,1,,1,nav,1,1969,2,, 9690,NJBF000086396,214 OAK ISLAND ROAD,Buena Vista,NJ,39.51347747,-74.91214122,RES1,3001,999,NaN,NE,1969,0,3102,2,1,698.9070889,698.9070889,3507,NO,27.27,32.32,1,-0.87,6112,107.525113,116.441833,126.134438,129.240525,I,Above,Gable,0,5701,,29.79493335,0,0,,,,1,1,,1,nav,1,1969,2,, 9691,NJBF000086411,OAK ISLAND ROAD,Buena Vista,NJ,39.51359282,-74.91234995,RES1,3001,999,NaN,NE,1969,0,3102,2,1,611.6606724,611.6606724,3507,NO,34.72,49.2,1,2.95,6112,107.523393,116.439374,126.132014,129.236983,I,Above,Gable,0,5701,,41.95633096,0,0,,,,1,1,,1,nav,1,1969,2,, 9692,NJBF000086549,OAK ISLAND ROAD,Buena Vista,NJ,39.51489889,-74.9154647,RES1,3001,999,NaN,NE,1969,0,3102,2,1,664.9730571,664.9730571,3507,NO,23.11,30.98,1,0.59,6112,107.499265,116.405745,126.098693,129.188408,I,Above,Gable,0,NaN,,27.04687057,0,0,,,,1,1,,0.7,nav,1,1969,2,, 9693,NJBF000086546,OAK ISLAND ROAD,Buena Vista,NJ,39.51488448,-74.91578696,RES1,3001,999,NaN,NE,1969,0,3102,2,1,4062.613955,4062.613955,3507,NO,38.89,50.47,1,0.33,6112,107.49729,116.403312,126.096217,129.184789,I,Above,Flat,0,NaN,,44.67871357,0,0,,,,1,1,,1,nav,1,1969,2,, 9694,NJBF000086556,160 FURSIN AVENUE,Buena Vista,NJ,39.51502474,-74.91299926,RES1,3001,999,NaN,NE,1969,0,3102,2,1,506.0060517,506.0060517,3507,NO,22.93,32.67,1,1.29,6112,107.514378,116.424336,126.117618,129.216099,I,Above,Gable,0,NaN,,27.80218206,0,0,,,,1,1,,1,nav,1,1969,2,, 9695,NJBF000086565,160 FURSIN AVENUE,Buena Vista,NJ,39.51511566,-74.91387113,RES1,3001,999,NaN,NE,1969,0,3102,2,1,570.9490639,570.9490639,3507,NO,20.8,35.08,1,-0.61,6112,107.508563,116.416821,126.110052,129.205046,I,Above,Gable,0,NaN,,27.94206521,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9696,NJBF000086566,160 FURSIN AVENUE,Buena Vista,NJ,39.51513038,-74.91437548,RES1,3001,999,NaN,NE,1969,0,3102,2,1,712.4799956,712.4799956,3507,NO,28.96,37.77,1,2.9,6112,107.505337,116.412747,126.105929,129.199022,I,Above,Gable,0,NaN,,33.36410524,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9697,NJBF000086569,160 FURSIN AVENUE,Buena Vista,NJ,39.51515172,-74.91454265,RES1,3001,999,NaN,NE,1969,0,3102,2,1,611.6636849,611.6636849,3507,NO,33.43,40.6,1,1.26,6112,107.504202,116.41127,126.104445,129.196857,I,Above,Flat,0,NaN,,37.01460427,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9698,NJBF000086573,160 FURSIN AVENUE,Buena Vista,NJ,39.51522943,-74.91474631,RES1,3001,999,NaN,NE,1969,0,3102,2,1,505.0392025,505.0392025,3507,NO,36.41,43.41,1,2.05,6112,107.502659,116.409138,126.102329,129.19378,I,Above,Gable,0,NaN,,39.90987082,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9699,NJBF000086580,160 FURSIN AVENUE,Buena Vista,NJ,39.51529673,-74.91502391,RES1,3001,999,NaN,NE,1969,0,3102,2,1,703.7561396,703.7561396,3507,NO,26.72,37.28,1,0.3,6109,107.500674,116.406478,126.099672,129.189911,I,Above,Gable,0,NaN,,31.99586613,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9700,NJBF000086582,213 OAK ISLAND ROAD,Buena Vista,NJ,39.51532179,-74.91579462,RES1,3001,999,NaN,NE,1969,0,3102,2,1,554.4715923,554.4715923,3507,NO,34.36,48.38,1,-0.08,6112,107.495734,116.400232,126.093354,129.180693,I,Above,Gable,0,NaN,,41.36951102,0,0,,,,1,1,,1,nav,1,1969,2,, 9701,NJBF000086583,FURSIN AVENUE,Buena Vista,NJ,39.51532187,-74.91745874,RES1,3001,999,NaN,NE,1969,0,3102,2,1,2137.429374,2137.429374,3507,NO,37.42,51.13,1,-0.23,6112,107.485276,116.387142,126.080083,129.161341,I,Above,Flat,0,5701,,44.27825202,0,0,,,,1,1,,1,nav,1,1969,2,, 9702,NJBF000086590,160 FURSIN AVENUE,Buena Vista,NJ,39.51545439,-74.91239214,RES1,3001,999,NaN,NE,1969,0,3102,2,1,632.4085657,632.4085657,3507,NO,28.34,35.72,1,-0.92,6112,107.516745,116.426168,126.119732,129.219259,I,Above,Gable,0,NaN,,32.02887035,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9703,NJBF000086594,160 FURSIN AVENUE,Buena Vista,NJ,39.51552202,-74.9117831,RES1,3001,999,NaN,NE,1969,0,3102,2,1,692.1168933,692.1168933,3507,NO,32.02,43.11,1,1.92,6112,107.520364,116.430513,126.124179,129.225778,I,Above,Flat,0,NaN,,37.56422283,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9704,NJBF000086596,213 OAK ISLAND ROAD,Buena Vista,NJ,39.51555546,-74.90913118,RES1,3001,999,NaN,NE,1969,0,3102,2,1,872.42242,872.42242,3507,NO,25.8,38.47,1,0.6,6112,107.537062,116.451293,126.145275,129.256691,I,Above,Gable,0,NaN,,32.13601867,0,0,,,,1,1,,0.7,nav,1,1969,2,, 9705,NJBF000086604,160 FURSIN AVENUE,Buena Vista,NJ,39.51563957,-74.91021256,RES1,3001,999,NaN,NE,1969,0,3102,2,1,848.1865101,848.1865101,3507,NO,24.5,35.15,1,2.97,6112,107.529906,116.442124,126.136027,129.243144,I,Above,Gable,0,NaN,,29.82653318,0,0,,,,1,1,,1,nav,1,1969,2,, 9706,NJBF000086617,FURSIN AVENUE,Buena Vista,NJ,39.51586891,-74.91768299,RES1,3001,999,NaN,NE,1969,0,3102,2,1,1470.511506,1470.511506,3507,NO,36.58,43.44,1,1.5,6112,107.481988,116.381623,126.074813,129.15378,I,Above,Gable,0,5701,,40.00707887,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9707,NJBF000086649,155 FURSIN AVENUE,Buena Vista,NJ,39.51669001,-74.9167205,RES1,3001,,17,NE,1977,1977,3102,2,1,1264.048999,1264.048999,3505,YES,27.77,41.67,3,0.98,6109,107.485225,116.383542,126.077247,129.157498,I,Above,Gable,0,5701,,34.72022716,0,0,,,,1,1,,0.03,nav,1,1977,2,, 9708,NJBF000086648,155 FURSIN AVENUE,Buena Vista,NJ,39.51668481,-74.91703244,RES1,3001,,17,NE,1977,1977,3102,2,1,1818.52658,1818.52658,3505,YES,35.8,44.05,3,2.14,6112,107.48328,116.381126,126.074795,129.153929,I,Above,Flat,0,5701,,39.92285502,0,0,,,,1,1,,0.35,nav,1,1977,2,, 9709,NJBF000086653,147 FURSIN AVENUE,Buena Vista,NJ,39.51683952,-74.91683576,RES1,3001,,17,NE,1940,1940,3102,1,1,549.62847,549.62847,3505,NO,19.49,27.06,3,0.98,6109,107.483982,116.3816,126.075367,129.154795,I,Above,Gable,0,5701,,23.27391099,0,0,,,,1,1,,0.03,nav,1,1940,1,, 9710,NJBF000086663,FURSIN AVENUE,Buena Vista,NJ,39.51707809,-74.91751391,RES1,3001,,NaN,NE,1969,0,3102,2,1,1581.994043,1581.994043,3505,NO,35.94,49.84,3,7.03,6109,107.478905,116.374643,126.068456,129.144798,I,Above,Gable,0,5701,,42.89227429,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9711,NJBF000086687,FURSIN AVENUE,Buena Vista,NJ,39.51749601,-74.91823098,RES1,3001,,NaN,NE,1962,0,3102,2,1,2136.463682,2136.463682,3505,NO,43.33,50.01,3,6.81,6112,107.472971,116.366153,126.060097,129.132752,I,Above,Gable,0,5701,,46.66801552,0,0,,,,1,1,,0.35,nav,1,1962,2,, 9712,NJBF000086813,123 FURSIN AVENUE,Buena Vista,NJ,39.51912141,-74.91858294,RES1,3001,,17,NE,1980,1980,3102,2,1,1359.039506,1359.039506,3505,NO,36.67,44.11,3,7.63,6112,107.465216,116.352254,126.046974,129.11412,I,Above,Gable,0,5701,,40.38703204,0,0,,,,1,1,,0.35,nav,1,1980,2,, 9713,NJBF000086851,119 FURSIN AVENUE,Buena Vista,NJ,39.5196514,-74.91882514,RES1,3001,,17,NE,1940,1940,3102,1,1,2099.223623,2099.223623,3505,NO,27.29,41.55,3,8.5,6112,107.461894,116.346731,126.041691,129.106609,I,Above,Hip,0,5701,,34.42345551,0,0,,,,1,1,,0.35,nav,1,1940,1,, 9714,NJBF000086869,115 FURSIN AVENUE,Buena Vista,NJ,39.51993413,-74.9188964,RES1,3001,,15,NE,1950,1950,3102,1,1,949.9723995,949.9723995,3505,NO,16.78,28.94,3,-2.53,6112,107.460486,116.344238,126.039332,129.103272,I,Above,Gable,0,5701,,22.86104662,0,0,,,,1,1,,0.35,nav,1,1950,1,, 9715,NJBF000086877,113 FURSIN AVENUE,Buena Vista,NJ,39.52001382,-74.9192869,RES1,3001,,17,NE,1965,1965,3102,1,1,1547.09577,1547.09577,3505,NO,24.18,37.6,3,4.68,6112,107.457758,116.340638,126.03573,129.098085,I,Above,Gable,0,5701,,30.88760388,0,0,,,,1,1,,0.35,nav,1,1965,1,, 9716,NJBF000086887,109 FURSIN AVENUE,Buena Vista,NJ,39.52026378,-74.91986334,RES1,3001,,17,NE,1940,1940,3102,2,1,2519.868043,2519.868043,3505,NO,24.9,34.7,3,3.62,6112,107.453292,116.334434,126.029589,129.089281,I,Above,Hip,0,5701,,29.79892579,0,0,,,,1,1,,0.35,nav,1,1940,2,, 9717,NJBF000086916,207 ROUTE 54,Buena Vista,NJ,39.52130051,-74.92013885,RES1,3001,,17,NE,1980,1980,3102,2,1,1492.820944,1492.820944,3505,NO,26.54,31.89,3,-1.3,6112,107.448044,116.325192,126.020839,129.076944,I,Above,Gable,0,5701,,29.21846287,0,0,,,,1,1,,0.35,nav,1,1980,2,, 9718,NJBF000086921,213 ROUTE 54,Buena Vista,NJ,39.5215009,-74.91998478,RES1,3001,,17,NE,1940,1940,3102,2,1,737.6881541,737.6881541,3505,NO,33.21,42.35,3,-2.34,6112,107.448334,116.325024,126.020788,129.076928,I,Above,Gable,0,5701,,37.77802009,0,0,,,,1,1,,0.35,nav,1,1940,2,, 9719,NJBF000086923,PANCOAST MILL ROAD,Buena Vista,NJ,39.52164163,-74.87513215,RES1,3001,,NaN,NE,1969,0,3101,1,1,628.1385388,628.1385388,3505,NO,25.39,35.82,3,5.98,6112,107.738824,116.682988,126.384039,129.608855,I,Above,Flat,0,5701,,30.60329815,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9720,NJBF000086927,480 PANCOAST MILL ROAD,Buena Vista,NJ,39.52186374,-74.87442055,RES1,3001,,17,NE,1964,1964,3101,1,1,3026.299636,3026.299636,3505,NO,11.66,18.42,3,-2.06,6112,107.742895,116.687246,126.388494,129.615416,I,Above,Hip,0,5701,,15.0388625,0,0,,,,1,1,,0.03,nav,1,1964,1,, 9721,NJBF000086953,479 PANCOAST MILL ROAD,Buena Vista,NJ,39.52273619,-74.87380015,RES1,3001,,17,NE,1930,1930,3101,3,1,1250.471684,1250.471684,3505,NO,49.6,63.36,3,1.45,6112,107.74432,116.686061,126.387852,129.614296,I,Above,Hip,0,5701,,56.4802409,0,0,,,,1,1,,0.35,nav,1,1930,3,, 9722,NJBF000086962,479 PANCOAST MILL ROAD,Buena Vista,NJ,39.5229132,-74.87364615,RES1,3001,,17,NE,1930,1930,3101,3,1,775.4793546,775.4793546,3505,NO,56.46,66.56,3,3.2,6112,107.744799,116.68605,126.387955,129.614419,I,Above,Gable,0,5701,,61.50930375,0,0,,,,1,1,,0.35,nav,1,1930,3,, 9723,NJBF000086967,116 WALNUT LANE,Buena Vista,NJ,39.5230414,-74.87285931,RES1,3001,,17,NE,1940,1940,3101,2,1,1057.563648,1057.563648,3505,NO,27.89,34.52,3,4.89,6112,107.7497,116.691618,126.393677,129.622876,I,Above,Gable,0,5701,,31.20636763,0,0,,,,1,1,,0.35,nav,1,1940,2,, 9724,NJBF000086971,225 ROUTE 54,Buena Vista,NJ,39.52314076,-74.91927454,RES1,3001,,17,NE,1920,1920,3102,2,1,3040.881084,3040.881084,3505,NO,37.49,44.89,3,-0.39,6112,107.447266,116.319337,126.016007,129.07052,I,Above,Flat,0,5701,,41.18978901,0,0,,,,1,1,,0.35,nav,1,1920,2,, 9725,NJBF000087184,244 PANCOAST MILL ROAD,Buena Vista,NJ,39.5266174,-74.89904337,RES1,3001,,17,NE,1985,1985,3102,2,1,1112.829905,1112.829905,3505,NO,23.35,37.24,3,-0.96,6112,107.565073,116.454225,126.155119,129.272726,I,Above,Gable,0,5701,,30.29555171,0,0,,,,1,1,,0.35,nav,1,1985,2,, 9726,NJBF000087202,238 PANCOAST MILL ROAD,Buena Vista,NJ,39.52688995,-74.89927049,RES1,3001,,17,NE,1972,1972,3102,2,1,3430.526436,3430.526436,3505,NO,38.43,51.28,3,3.7,6112,107.562715,116.450511,126.151522,129.267557,I,Above,Hip,0,5701,,44.85149805,0,1.1,,,,1,1,,0.35,nav,1,1972,2,, 9727,NJBF000087239,243 PANCOAST MILL ROAD,Buena Vista,NJ,39.52764873,-74.8989861,RES1,3001,,17,NE,1975,1975,3102,2,1,1882.493736,1882.493736,3505,YES,26.93,38.44,3,-2.34,6112,107.562103,116.447447,126.1489,129.263927,I,Above,Gable,0,5701,,32.68461506,0,0,,,,1,1,,0.35,nav,1,1975,2,, 9728,NJBF000088781,UNEXPECTED ROAD REAR,Buena Vista,NJ,39.56003635,-74.92905072,RES1,3001,,NaN,NE,1940,0,3101,1,1,1582.965893,1582.965893,3507,NO,18.21,28.17,1,1.82,6112,107.266733,115.996378,125.711031,128.659556,I,Above,Flat,0,5701,,23.19352673,0,0,,,,1,1,,0.03,nav,1,1940,1,, 9729,NJBF000088826,102 UNEXPECTED ROAD,Buena Vista,NJ,39.56068712,-74.92878732,RES1,3001,,16,NE,1940,1940,3101,1,2,776.4615407,776.4615407,3507,NO,16.74,28.4,1,1.16,6112,107.266388,115.993987,125.709033,128.657247,I,Above,Flat,0,5701,,22.57268731,0,0,,,,1,1,,0.35,nav,1,1940,1,, 9730,NJBF000088855,110 UNEXPECTED ROAD,Buena Vista,NJ,39.56111067,-74.92749905,RES1,3001,,16,NE,1920,1920,3101,1,1,1104.100961,1104.100961,3507,NO,18.34,25.06,1,2.99,6112,107.27325,116.000639,125.716128,128.667435,I,Above,Gable,0,5701,,21.69881848,0,0,,,,1,1,,1,nav,1,1920,1,, 9731,NJBF000089368,245 ROME AVENUE,Buena Vista,NJ,39.56085682,-74.92888736,RES1,3001,,17,NE,1940,1975,3101,1,1,1657.606134,1657.606134,3507,NO,14.02,23.24,1,1.95,6112,107.265228,115.99212,125.707241,128.654877,I,Above,Gable,0,5701,,18.62938344,0,0,,,,1,1,,0.35,nav,1,1940,1,, 9732,NJBF000090464,117 JACKSON ROAD,Buena Vista,NJ,39.58885627,-74.88106809,RES1,3001,,16,NE,1960,1965,3101,1,2,2155.938246,2155.938246,3507,NO,18.19,32.69,1,1.05,6112,107.499729,116.151343,125.898029,128.954129,I,Above,Hip,0,5701,,25.4400367,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9733,NJBF000090475,117 JACKSON ROAD,Buena Vista,NJ,39.58885627,-74.88106809,RES1,3001,,16,NE,1960,1965,3101,1,2,1220.526786,1220.526786,3507,NO,21.42,30.73,1,2.97,6112,107.499729,116.151343,125.898029,128.954129,I,Above,Hip,0,5701,,26.07275249,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9734,NJBF000090552,,Buena Vista,NJ,39.58871772,-74.873797,RES1,3001,,NaN,NE,1979,0,3101,1,1,1981.354696,1981.354696,3507,NO,17.65,26.53,1,-0.59,6112,107.550995,116.206553,125.955704,129.039249,I,Above,Flat,0,5701,,22.0863578,0,0,,,,1,1,,0.03,nav,1,1979,1,, 9735,NJBF000090553,130 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58873187,-74.87332048,RES1,3001,,17,NE,1995,1995,3101,1,1,1829.16045,1829.16045,3507,YES,14.04,24.77,1,2.54,6112,107.554317,116.210027,125.959359,129.044705,I,Above,Gable,0,5701,,19.40871733,0,0,,,,1,1,,0.35,nav,1,1995,1,, 9736,NJBF000090555,132 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58882523,-74.87296016,RES1,3001,,17,NE,1965,1965,3101,1,1,2214.960949,2214.960949,3507,NO,21.29,33.45,1,2.74,6112,107.556594,116.212045,125.961589,129.04814,I,Above,Flat,0,5701,,27.36940311,0,0,,,,1,1,,0.35,nav,1,1965,1,, 9737,NJBF000090557,4 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58885627,-74.88106809,RES1,3001,,17,NE,1960,1960,3101,1,1,1522.849177,1522.849177,3507,YES,12.53,19.07,1,0.18,6112,107.499729,116.151343,125.898029,128.954129,I,Above,Hip,0,5701,,15.79720378,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 9738,NJBF000090560,122 LAKE GEORGE DRIVE,Buena Vista,NJ,39.5889318,-74.87443122,RES1,3001,,17,NE,1956,1956,3101,1,1,1411.369365,1411.369365,3507,NO,13.67,28.34,1,2.95,6112,107.545931,116.200235,125.949358,129.03007,I,Above,Gable,0,5701,,21.00500999,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9739,NJBF000090559,124 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58891257,-74.87413025,RES1,3001,,17,NE,1960,1960,3101,2,1,2064.72648,2064.72648,3507,NO,27.77,41.6,1,0.04,6112,107.548103,116.202628,125.95184,129.033737,I,Above,Gable,0,5701,,34.68129315,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 9740,NJBF000090567,LAKE GEORGE DRIVE,Buena Vista,NJ,39.58907718,-74.8769144,RES1,3001,,NaN,NE,1977,0,3101,1,1,2356.484928,2356.484928,3507,NO,16.39,24.41,1,-0.79,6112,107.528092,116.180625,125.928995,129.000049,I,Above,Gable,0,5701,,20.40061965,0,0,,,,1,1,,0.03,nav,1,1977,1,, 9741,NJBF000090568,134 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58907763,-74.87276695,RES1,3001,,17,NE,1971,1971,3101,1,1,2152.940886,2152.940886,3507,YES,16.37,26.19,1,1.02,6112,107.557246,116.211634,125.96148,129.048284,I,Above,Gable,0,5701,,21.28011754,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 9742,NJBF000090569,136 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58921136,-74.87249586,RES1,3001,,17,NE,1956,1956,3101,1,1,1097.304451,1097.304451,3507,NO,10.73,22.19,1,-0.33,6112,107.558786,116.21269,125.962755,129.050344,I,Above,Gable,0,5701,,16.45831742,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9743,NJBF000090570,2 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58925349,-74.88121558,RES1,3001,,17,NE,1956,1956,3101,2,1,1255.30397,1255.30397,3507,NO,34.18,43.05,1,1.19,6112,107.497576,116.147375,125.894353,128.949183,I,Above,Gable,0,5701,,38.61511627,0,0,,,,1,1,,0.03,nav,1,1956,2,, 9744,NJBF000090575,140 LAKE GEORGE DRIVE,Buena Vista,NJ,39.5893794,-74.87236799,RES1,3001,,17,NE,1986,1986,3101,1,1,637.8327866,637.8327866,3507,NO,19.67,27.81,1,0.91,6112,107.559218,116.212414,125.962681,129.050438,I,Above,Gable,0,5701,,23.73951524,0,0,,,,1,1,,0.03,nav,1,1986,1,, 9745,NJBF000090578,140 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58942299,-74.87215408,RES1,3001,,17,NE,1986,1986,3101,1,1,1161.294126,1161.294126,3507,NO,16.12,25.44,1,1.75,6112,107.560607,116.213696,125.96408,129.052577,I,Above,Gable,0,5701,,20.78233535,0,0,,,,1,1,,0.03,nav,1,1986,1,, 9746,NJBF000090591,146 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58980617,-74.871375,RES1,3001,,17,NE,1971,1971,3101,1,1,994.5535284,994.5535284,3507,YES,19.96,34.16,1,0.61,6112,107.565042,116.216722,125.967743,129.058504,I,Above,Flat,0,5701,,27.06255779,0,0,,,,1,1,,0.03,nav,1,1971,1,, 9747,NJBF000090590,144 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58979902,-74.87170443,RES1,3001,,17,NE,1970,1970,3101,3,1,3282.215439,3282.215439,3507,NO,48.22,59.23,1,0.47,6109,107.562734,116.214304,125.965201,129.054702,I,Above,Gable,0,5701,,53.72261369,0,1.1,,,,1,1,,0.03,nav,1,1970,3,, 9748,NJBF000090597,148 LAKE GEORGE DRIVE,Buena Vista,NJ,39.58990961,-74.87104186,RES1,3001,,17,NE,1956,1956,3101,1,1,2496.087643,2496.087643,3507,NO,15.93,29.86,1,1.27,6112,107.567109,116.218456,125.969693,129.061542,I,Above,Flat,0,5701,,22.89319041,0,0,,,,1,1,,0.03,nav,1,1956,1,, 9749,NJBF000090603,,Buena Vista,NJ,39.59001536,-74.87062147,RES1,3001,,NaN,NE,1960,0,3101,1,1,2450.523902,2450.523902,3507,NO,19.98,25.89,1,1.64,6112,107.569797,116.220844,125.97233,129.065609,I,Above,Gable,0,5701,,22.93832293,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9750,NJBF000090607,156 LAKE GEORGE DRIVE,Buena Vista,NJ,39.59009095,-74.86994939,RES1,3001,,17,NE,1960,1960,3101,1,1,1739.005331,1739.005331,3507,NO,17.73,23.2,1,0.5,6112,107.574351,116.225333,125.977133,129.072881,I,Above,Flat,0,5701,,20.46486705,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9751,NJBF000090611,LAKE GEORGE DRIVE,Buena Vista,NJ,39.59017642,-74.88102086,RES1,3001,,NaN,NE,1969,0,3101,1,1,1189.397444,1189.397444,3507,NO,20.21,28.54,1,2.57,6112,107.496317,116.142141,125.889998,128.943838,I,Above,Flat,0,5701,,24.37624457,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9752,NJBF000090609,,Buena Vista,NJ,39.59012725,-74.87597321,RES1,3001,,NaN,NE,1969,0,3101,1,1,2337.101472,2337.101472,3507,NO,12.84,21.5,1,-0.17,6109,107.531732,116.179975,125.929634,129.002231,I,Above,Gable,0,5701,,17.16969334,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9753,NJBF000090610,103 CLOVER TERRACE,Buena Vista,NJ,39.59016707,-74.87643275,RES1,3001,,17,NE,1960,1960,3101,1,1,1642.099292,1642.099292,3507,NO,14.28,20.71,1,2.07,6112,107.528392,116.176256,125.925785,128.996579,I,Above,Gable,0,5701,,17.49199495,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 9754,NJBF000090617,,Buena Vista,NJ,39.59031318,-74.88118091,RES1,3001,,NaN,NE,1969,0,3101,1,1,2357.481748,2357.481748,3507,NO,18.75,32.08,1,2.02,6112,107.494816,116.139967,125.887885,128.940891,I,Above,Flat,0,5701,,25.41667524,0,0,,,,1,1,,1,nav,1,1969,1,, 9755,NJBF000090627,7 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59048719,-74.88052824,RES1,3001,,17,NE,1956,1956,3101,1,1,1292.153263,1292.153263,3507,NO,14.66,25.4,1,-0.36,6112,107.498868,116.143536,125.891849,128.94691,I,Above,Gable,0,5701,,20.02858983,0,0,,,,1,1,,0.35,nav,1,1956,1,, 9756,NJBF000090625,11 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59048151,-74.87995224,RES1,3001,,17,NE,1952,1952,3101,1,1,3389.836987,3389.836987,3507,YES,11.65,19.55,1,-0.04,6112,107.502896,116.147835,125.896356,128.95353,I,Above,Gable,0,5701,,15.59782965,0,0,,,,1,1,,0.35,nav,1,1952,1,, 9757,NJBF000090631,119 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59052037,-74.87424568,RES1,3001,,17,NE,1960,1960,3101,1,1,2913.876891,2913.876891,3507,NO,14.27,26.44,1,1.41,6109,107.54277,116.189978,125.940629,129.018995,I,Above,Gable,0,5701,,20.35895981,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 9758,NJBF000090635,15 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59054623,-74.87944465,RES1,3001,,17,NE,1960,1960,3101,1,1,1402.661115,1402.661115,3507,NO,15.36,22.08,1,-0.07,6112,107.506251,116.151126,125.899891,128.958804,I,Above,Flat,0,5701,,18.7183355,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9759,NJBF000090629,,Buena Vista,NJ,39.5904933,-74.88123553,RES1,3001,,NaN,NE,1969,0,3101,1,1,5873.307512,5873.307512,3507,NO,12.06,26.64,1,1.11,6112,107.493924,116.138258,125.886315,128.938789,I,Above,Flat,0,5701,,19.35052056,0,0,,,,1,1,,0.35,nav,1,1969,1,, 9760,NJBF000090644,117 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59068106,-74.87466386,RES1,3001,,17,NE,1986,1986,3101,1,1,1901.882434,1901.882434,3507,YES,15.9,27.34,1,1.33,6109,107.539374,116.185679,125.936326,129.012798,I,Above,Gable,0,5701,,21.6226884,0,0,,,,1,1,,0.03,nav,1,1986,1,, 9761,NJBF000090647,21 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59071184,-74.87846861,RES1,3001,,17,NE,1956,1956,3101,1,1,1280.524058,1280.524058,3507,NO,21.84,35.34,1,2.42,6112,107.512598,116.157154,125.906428,128.968623,I,Above,Gable,0,5701,,28.58977261,0,0,,,,1,1,,0.35,nav,1,1956,1,, 9762,NJBF000090651,113 CEDAR LAKE DRIVE,Buena Vista,NJ,39.5907551,-74.87515497,RES1,3001,,17,NE,1971,1971,3101,1,1,933.4923988,933.4923988,3507,YES,17.91,30.15,1,2,6112,107.535712,116.181477,125.932011,129.006488,I,Above,Gable,0,5701,,24.03313548,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 9763,NJBF000090654,115 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59076582,-74.87490197,RES1,3001,,17,NE,1986,1960,3101,1,1,1510.253718,1510.253718,3507,YES,12.91,25.58,1,0.51,6112,107.537461,116.183282,125.933919,129.00933,I,Above,Gable,0,5701,,19.24267876,0,1.1,,,,1,1,,0.03,nav,1,1986,1,, 9764,NJBF000090664,123 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59084902,-74.87365599,RES1,3001,,17,NE,1971,1971,3101,2,1,3779.500791,3779.500791,3507,NO,27.48,38.24,1,0.24,6109,107.546003,116.191969,125.943141,129.023115,I,Above,Hip,0,5701,,32.85858964,0,1.2,,,,1,1,,0.03,nav,1,1971,2,, 9765,NJBF000090666,111 CEDAR LAKE DRIVE,Buena Vista,NJ,39.590919,-74.87539483,RES1,3001,,17,NE,1971,1971,3101,1,1,1410.408771,1410.408771,3507,YES,11.46,23.24,1,-0.32,6112,107.533563,116.178488,125.929086,129.002345,I,Above,Gable,0,5701,,17.34934995,0,1.1,,,,1,1,,0.35,nav,1,1971,1,, 9766,NJBF000090667,25 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59093048,-74.87797869,RES1,3001,,17,NE,1956,1956,3101,1,1,1562.588722,1562.588722,3507,NO,20.38,29.62,1,2.17,6112,107.51541,116.159202,125.908854,128.972451,I,Above,Gable,0,5701,,24.9996869,0,0,,,,1,1,,0.35,nav,1,1956,1,, 9767,NJBF000090668,109 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59095775,-74.87561275,RES1,3001,,17,NE,1971,1971,3101,1,1,1612.988369,1612.988369,3507,YES,20.91,31.03,1,1.56,6112,107.531921,116.17658,125.927133,128.999498,I,Above,Gable,0,5701,,25.96798323,0,1.1,,,,1,1,,0.35,nav,1,1971,1,, 9768,NJBF000090679,105 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59115371,-74.87630315,RES1,3001,,17,NE,1965,1965,3101,1,1,1780.689578,1780.689578,3507,YES,17.98,28.55,1,1.71,6112,107.526524,116.170014,125.920492,128.989898,I,Above,Flat,0,5701,,23.26477143,0,0,,,,1,1,,0.35,nav,1,1965,1,, 9769,NJBF000090680,103 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59115612,-74.8766508,RES1,3001,,17,NE,1960,1960,3101,1,1,1777.784845,1777.784845,3507,YES,16.87,28.14,1,2.01,6112,107.524076,116.167413,125.917764,128.985867,I,Above,Hip,0,5701,,22.50784784,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9770,NJBF000090683,116 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59120271,-74.87445522,RES1,3001,,17,NE,1959,1959,3101,1,1,1813.667209,1813.667209,3507,NO,13.71,22.61,1,2.21,6112,107.539379,116.183411,125.934618,129.010878,I,Above,Gable,0,5701,,18.15820971,0,0,,,,1,1,,0.35,nav,1,1959,1,, 9771,NJBF000090686,101 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59121998,-74.87689367,RES1,3001,,17,NE,1960,1960,3101,1,1,1596.516782,1596.516782,3507,NO,13.08,18.99,1,0.6,6112,107.522192,116.165141,125.91546,128.982536,I,Above,Gable,0,5701,,16.03788541,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9772,NJBF000090685,127 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59120903,-74.8733397,RES1,3001,,17,NE,1971,1971,3101,2,1,1338.6784,1338.6784,3507,NO,26.08,31.28,1,1.26,6112,107.547222,116.191684,125.943309,129.023788,I,Above,Gable,0,5701,,28.67887733,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 9773,NJBF000090687,114 CEDAR LAKE DRIVE,Buena Vista,NJ,39.5912275,-74.87469459,RES1,3001,,17,NE,1962,1962,3101,1,1,1340.608274,1340.608274,3507,NO,12.87,21.42,1,1.46,6112,107.537619,116.181439,125.932581,129.007886,I,Above,Gable,0,5701,,17.14445761,0,0,,,,1,1,,0.35,nav,1,1962,1,, 9774,NJBF000090688,118 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59123041,-74.87407438,RES1,3001,,17,NE,1971,1971,3101,1,1,1162.245371,1162.245371,3507,NO,13.68,24.59,1,1.37,6112,107.541987,116.186053,125.937427,129.015077,I,Above,Hip,0,5701,,19.13213149,0,0,,,,1,1,,0.35,nav,1,1971,1,, 9775,NJBF000090690,112 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59129007,-74.87496134,RES1,3001,,17,NE,1962,1962,3101,1,1,1201.991653,1201.991653,3507,NO,21.4,28.16,1,2.44,6112,107.535572,116.179003,125.930104,129.004287,I,Above,Gable,0,5701,,24.77605642,0,0,,,,1,1,,0.35,nav,1,1962,1,, 9776,NJBF000090691,118 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59133814,-74.87393692,RES1,3001,,17,NE,1971,1971,3101,1,1,705.698114,705.698114,3507,NO,11.49,21.66,1,-0.23,6112,107.542649,116.186282,125.937807,129.015768,I,Above,Flat,0,5701,,16.57471155,0,0,,,,1,1,,0.35,nav,1,1971,1,, 9777,NJBF000090693,129 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59138502,-74.87318869,RES1,3001,,17,NE,1971,1971,3101,1,1,1654.687038,1654.687038,3507,NO,18.74,23.83,1,-0.15,6112,107.547794,116.191518,125.943363,129.024077,I,Above,Gable,0,5701,,21.28223443,0,0,,,,1,1,,0.35,nav,1,1971,1,, 9778,NJBF000090699,301 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59147372,-74.86942178,RES1,3001,,17,NE,1978,1978,3101,1,1,1439.482547,1439.482547,3507,YES,13.24,20.9,1,-0.69,6112,107.574228,116.219059,125.972375,129.067437,I,Above,Gable,0,5701,,17.07041358,0,0,,,,1,1,,0.35,nav,1,1978,1,, 9779,NJBF000090705,131 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59157854,-74.87305202,RES1,3001,,17,NE,1956,1956,3101,1,1,1266.931867,1266.931867,3507,NO,18.28,29.42,1,-0.23,6112,107.548217,116.191114,125.943193,129.024051,I,Above,Hip,0,5701,,23.84750777,0,0,,,,1,1,,0.35,nav,1,1956,1,, 9780,NJBF000090714,217 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59178096,-74.87007345,RES1,3001,,17,NE,1960,1960,3101,1,1,850.1124405,850.1124405,3507,NO,17.44,31.43,1,-0.17,6112,107.568745,116.211904,125.965277,129.057195,I,Above,Gable,0,5701,,24.43408283,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9781,NJBF000090719,201 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59182581,-74.87230915,RES1,3001,,17,NE,1971,1971,3101,1,1,1678.910741,1678.910741,3507,YES,16.46,23.97,1,0.22,6112,107.552775,116.194843,125.947431,129.030645,I,Above,Flat,0,5701,,20.21432766,0,0,,,,1,1,,0.03,nav,1,1971,1,, 9782,NJBF000090722,203 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59187429,-74.87203533,RES1,3001,,17,NE,1960,1960,3101,1,1,1902.843854,1902.843854,3507,NO,17.46,31.05,1,1.88,6112,107.554579,116.196536,125.949272,129.033441,I,Above,Flat,0,5701,,24.25454446,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 9783,NJBF000090725,207 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59188395,-74.87152595,RES1,3001,,17,NE,1960,1960,3101,1,1,2056.95631,2056.95631,3507,YES,15.83,28.99,1,2.26,6112,107.558154,116.200266,125.953201,129.039304,I,Above,Flat,0,5701,,22.4091596,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9784,NJBF000090728,205 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59191279,-74.87176291,RES1,3001,,17,NE,1960,1960,3101,1,1,930.5769141,930.5769141,3507,NO,14.71,23.01,1,0.68,6112,107.556394,116.198281,125.951155,129.036291,I,Above,Flat,0,5701,,18.8573912,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 9785,NJBF000090724,213 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59188299,-74.87063593,RES1,3001,,17,NE,1971,1971,3101,1,1,1890.228776,1890.228776,3507,YES,20.77,30.05,1,1.87,6112,107.564465,116.206932,125.960196,129.049732,I,Above,Gable,0,5701,,25.40789862,0,0,,,,1,1,,0.03,nav,1,1971,1,, 9786,NJBF000090729,209 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59194977,-74.87127978,RES1,3001,,17,NE,1960,1960,3101,1,1,1591.684626,1591.684626,3507,YES,19.68,34.65,1,1.72,6112,107.559711,116.201619,125.954708,129.041627,I,Above,Gable,0,5701,,27.16441699,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9787,NJBF000090732,211 CEDAR LAKE DRIVE,Buena Vista,NJ,39.59202555,-74.87092931,RES1,3001,,17,NE,1975,1975,3101,1,1,1889.265722,1889.265722,3507,NO,13.12,26.59,1,-0.54,6112,107.561987,116.203683,125.956975,129.045097,I,Above,Gable,0,5701,,19.85610366,0,0,,,,1,1,,0.35,nav,1,1975,1,, 9788,NJBF000091009,130 WEST BEACH ROAD,Buena Vista,NJ,39.59877518,-74.88779344,RES1,3001,,17,NE,1960,1960,3101,1,1,1644.03048,1644.03048,3507,NO,20.65,32.22,1,1.58,6112,107.425002,116.030793,125.783553,128.798002,I,Above,Gable,0,5701,,26.43414616,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9789,NJBF000091016,120 WEST BEACH ROAD,Buena Vista,NJ,39.59886428,-74.88633361,RES1,3001,,17,NE,1971,1971,3101,1,1,964.51228,964.51228,3507,NO,15.29,25.34,1,0.91,6112,107.434828,116.040675,125.794141,128.813403,I,Above,Flat,0,5701,,20.31294365,0,0,,,,1,1,,0.35,nav,1,1971,1,, 9790,NJBF000091019,122 WEST BEACH ROAD,Buena Vista,NJ,39.59887579,-74.88659391,RES1,3001,,17,NE,1960,1960,3101,1,1,1575.197652,1575.197652,3507,YES,13.76,25.73,1,1.44,6112,107.432996,116.038713,125.792077,128.810429,I,Above,Gable,0,5701,,19.74495397,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 9791,NJBF000091022,124 WEST BEACH ROAD,Buena Vista,NJ,39.598893,-74.88686152,RES1,3001,,17,NE,1960,1960,3101,1,1,1613.00499,1613.00499,3507,YES,13.33,18.69,1,-0.47,6112,107.431095,116.036658,125.789922,128.807329,I,Above,Gable,0,5701,,16.01083429,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 9792,NJBF000091024,126 WEST BEACH ROAD,Buena Vista,NJ,39.59890957,-74.88712556,RES1,3001,,17,NE,1960,1960,3101,1,1,930.5915152,930.5915152,3507,NO,18.43,31.91,1,2.75,6112,107.429223,116.034632,125.787798,128.804275,I,Above,Gable,0,5701,,25.17268087,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9793,NJBF000091020,205 FOX LANE,Buena Vista,NJ,39.59888561,-74.88531186,RES1,3001,,17,NE,1960,1960,3101,1,1,1357.098781,1357.098781,3507,YES,14,20.43,1,2.79,6112,107.441842,116.047898,125.801822,128.824554,I,Above,Hip,0,5701,,17.21767858,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 9794,NJBF000091025,128 WEST BEACH ROAD,Buena Vista,NJ,39.59892718,-74.88741694,RES1,3001,,17,NE,1960,1960,3101,1,1,2656.025406,2656.025406,3507,YES,17.82,29.53,1,2.89,6112,107.427165,116.032413,125.785469,128.800925,I,Above,Gable,0,5701,,23.67147659,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9795,NJBF000091028,203 FOX LANE,Buena Vista,NJ,39.59904887,-74.8851193,RES1,3001,,17,NE,1960,1960,3101,1,1,1116.692761,1116.692761,3507,NO,19.66,31.73,1,0.77,6112,107.442717,116.048119,125.802274,128.825376,I,Above,Gable,0,5701,,25.69458164,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9796,NJBF000091033,126 WEST BEACH ROAD,Buena Vista,NJ,39.59912028,-74.88703266,RES1,3001,,17,NE,1960,1960,3101,1,1,582.5800549,582.5800549,3507,NO,18.97,31.5,1,-0.31,6112,107.429269,116.033796,125.78719,128.803608,I,Above,Flat,0,5701,,25.23721942,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9797,NJBF000091053,110 MAYFLOWER LANE,Buena Vista,NJ,39.59955469,-74.88487718,RES1,3001,,17,NE,1955,1955,3101,1,1,746.4042691,746.4042691,3507,NO,10.02,21.93,1,-0.87,6112,107.442961,116.046221,125.800943,128.823961,I,Above,Gable,0,5701,,15.97553803,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 9798,NJBF000091058,202 CAINS MILL ROAD,Buena Vista,NJ,39.59971082,-74.88161149,RES1,3001,,17,NE,1968,1968,3101,2,1,1144.798274,1144.798274,3507,NO,38.61,51.45,1,2.45,6112,107.465242,116.068727,125.825015,128.859106,I,Above,Gable,0,5701,,45.02954132,0,0,,,,1,1,,0.35,nav,1,1968,2,, 9799,NJBF000091065,201 CAINS MILL ROAD,Buena Vista,NJ,39.59984906,-74.88218686,RES1,3001,,17,NE,1965,1965,3101,1,1,1780.711202,1780.711202,3507,NO,15.83,24.71,1,1.5,6112,107.460835,116.063552,125.819718,128.851535,I,Above,Flat,0,5701,,20.26989123,0,0,,,,1,1,,0.35,nav,1,1965,1,, 9800,NJBF000091068,200 CAINS MILL ROAD,Buena Vista,NJ,39.59991369,-74.88154272,RES1,3001,,17,NE,1960,1960,3101,1,1,1631.438555,1631.438555,3507,NO,14.44,21.26,1,0.64,6112,107.465143,116.067747,125.824256,128.858209,I,Above,Gable,0,5701,,17.85282733,0,0,,,,1,1,,0.35,nav,1,1960,1,, 9801,NJBF000091089,4 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60036292,-74.88238683,RES1,3001,,17,NE,1960,1960,3101,1,1,917.0037495,917.0037495,3507,NO,14.17,21.13,1,1.72,6112,107.457988,116.058379,125.814939,128.845108,I,Above,Flat,0,5701,,17.65073083,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 9802,NJBF000091091,6 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60038258,-74.88264078,RES1,3001,,17,NE,1960,1960,3101,1,1,961.5964971,961.5964971,3507,NO,14.8,28.42,1,2.93,6112,107.456161,116.056397,125.812864,128.842111,I,Above,Gable,0,5701,,21.61276357,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 9803,NJBF000091093,8 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60040218,-74.88290209,RES1,3001,,17,NE,1962,1962,3101,1,1,1891.201067,1891.201067,3507,NO,12.85,21.16,1,0.37,6112,107.45429,116.054372,125.810742,128.839046,I,Above,Flat,0,5701,,17.00432624,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 9804,NJBF000091092,2 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60039384,-74.88214681,RES1,3001,,17,NE,2014,2014,3101,1,1,1791.360331,1791.360331,3507,NO,11.32,16.84,1,-0.73,6112,107.459573,116.05989,125.816586,128.847535,I,Above,Hip,0,5701,,14.07977917,0,0,,,,1,1,,0.03,nav,1,2014,1,, 9805,NJBF000091095,10 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60042554,-74.88316814,RES1,3001,,17,NE,1968,1968,3101,1,1,2504.807244,2504.807244,3507,NO,20.81,26.93,1,1.62,6112,107.45237,116.052276,125.808551,128.835887,I,Above,Gable,0,5701,,23.86757939,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 9806,NJBF000091096,100 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60044082,-74.88341669,RES1,3001,,17,NE,1958,1958,3101,1,1,1707.606551,1707.606551,3507,NO,12.38,26.9,1,1.71,6112,107.450595,116.050369,125.806548,128.832993,I,Above,Flat,0,5701,,19.64162036,0,0,,,,1,1,,0.03,nav,1,1958,1,, 9807,NJBF000091102,108 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60055675,-74.88451456,RES1,3001,,17,NE,1958,1958,3101,1,1,1843.691917,1843.691917,3507,NO,10.37,16.76,1,-0.48,6112,107.442635,116.041608,125.797409,128.819852,I,Above,Gable,0,5701,,13.56371424,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 9808,NJBF000091109,110 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60060507,-74.88479782,RES1,3001,,17,NE,1959,1959,3101,1,1,1386.174234,1386.174234,3507,NO,14.53,21.19,1,2.53,6112,107.440534,116.039221,125.794942,128.816325,I,Above,Flat,0,5701,,17.8624832,0,0,,,,1,1,,0.03,nav,1,1959,1,, 9809,NJBF000091107,106 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60058889,-74.88418777,RES1,3001,,17,NE,1965,1965,3101,1,1,4181.793881,4181.793881,3507,NO,16.27,29.63,1,1.15,6112,107.444815,116.043735,125.79971,128.823221,I,Above,Hip,0,5701,,22.95053657,0,0,,,,1,1,,0.03,nav,1,1965,1,, 9810,NJBF000091121,116 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60082803,-74.88516154,RES1,3001,,17,NE,1965,1965,3101,2,1,551.3609556,551.3609556,3507,NO,25.36,39.72,1,0.37,6110,107.437376,116.034992,125.790756,128.810487,I,Above,Hip,0,5701,,32.54191758,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 9811,NJBF000091119,116 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60079294,-74.8853781,RES1,3001,,17,NE,1965,1965,3101,2,1,2240.181296,2240.181296,3507,NO,37.86,49.28,1,-0.72,6112,107.435977,116.033689,125.789326,128.80838,I,Above,Gable,0,5701,,43.5708752,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 9812,NJBF000091126,118 WEST COLLINGS DRIVE,Buena Vista,NJ,39.60096946,-74.88561494,RES1,3001,,17,NE,1965,1965,3101,1,1,2748.116511,2748.116511,3507,NO,18.85,32.15,1,1.54,6112,107.433835,116.030717,125.786409,128.804336,I,Above,Gable,0,5701,,25.49768105,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 9813,NJBF000091195,106 MILL LANE,Buena Vista,NJ,39.60193121,-74.88417477,RES1,3001,,NaN,NE,1970,1963,3101,1,1,1962.959909,1962.959909,3507,NO,16.51,25.09,1,0.64,6112,107.441106,116.034135,125.791367,128.812472,I,Above,Gable,0,5701,,20.80285124,0,0,,,,1,1,,0.03,nav,1,1970,1,, 9814,NJBF000086641,152 FURSIN AVENUE,Buena Vista,NJ,39.51645682,-74.91795183,RES1,3001,,17,NE,1940,1940,3102,2,1,1507.434721,1507.434721,3505,NO,20.34,28.96,3,-2.67,6112,107.478281,116.375472,126.068927,129.145344,I,Above,Gable,0,5701,,24.64922898,0,0,,,,1,1,,0.35,nav,1,1940,2,, 9815,NJBF000086951,116 WALNUT LANE,Buena Vista,NJ,39.52271076,-74.87316154,RES1,3001,,17,NE,1940,1940,3101,2,1,2155.832226,2155.832226,3505,NO,31.11,41.06,3,5.07,6112,107.748695,116.691507,126.393352,129.622451,I,Above,Gable,0,5701,,36.0840174,0,0,,,,1,1,,0.35,nav,1,1940,2,, 9816,NJBF000051934,102 CARL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1995,3102,2,1,1074.173298,1074.173298,3507,NO,38.46,45.53,1,1.7,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,41.99266435,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9817,NJBF000051101,121 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,1962,3102,2,1,1933.914279,1933.914279,3507,NO,22.33,37.26,1,-0.71,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,29.79308459,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9818,NJBF000051641,109 GRISCOM MILL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1978,3102,2,1,2522.892203,2522.892203,3507,NO,30.02,43.62,1,-0.27,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,36.822824,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9819,NJBF000051520,416 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1920,3102,2,1,2218.164886,2218.164886,3507,NO,35.5,45.97,1,0.82,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,40.73397083,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9820,NJBF000051478,416 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1920,3102,2,1,2106.888992,2106.888992,3507,NO,36.96,42.88,1,0.37,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,39.91826489,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9821,NJBF000051111,103 AETNA DRIVE,Corbin City,NJ,39.30000401,-74.75469487,RES1,3001,,16,NE,2007,2007,3102,2,1,2009.496017,2009.496017,3507,YES,32.21,45.51,1,0.92,6106,109.997758,119.747937,129.336763,134.771048,I,Above,Flat,0,5701,,38.85856516,0,0,,,,1,1,,0.03,nav,1,2007,2,, 9822,NJBF000051119,120 MAIN STREET,Corbin City,NJ,39.30020768,-74.75375974,RES1,3001,,16,NE,1900,1900,3102,2,1,941.1604209,941.1604209,3507,NO,32.42,41.29,1,1.73,6110,110.003778,119.756388,129.346895,134.787044,I,Above,Gable,0,5701,,36.85743762,0,0,,,,1,1,,0.35,nav,1,1900,2,, 9823,NJBF000051344,133 CARL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,2005,3102,2,1,1780.219735,1780.219735,3507,NO,35.58,49.19,1,2.09,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,42.3844598,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9824,NJBF000051336,133 CARL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,2005,3102,2,1,3694.818194,3694.818194,3507,NO,28.19,37.3,1,2.54,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,32.74408441,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9825,NJBF000052354,227 HEAD OF RIVER ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,53,NE,1962,1960,3102,2,1,542.4639664,542.4639664,3507,NO,30.79,43.19,1,2.67,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,36.98750631,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9826,NJBF000051114,107 AETNA DRIVE,Corbin City,NJ,39.30010862,-74.75602179,RES1,3001,,16,NE,1948,1948,3102,1,1,1477.761471,1477.761471,3507,NO,21.09,27.3,1,1.63,6106,109.984394,119.731347,129.319028,134.742474,I,Above,Flat,0,5701,,24.1901828,0,0,,,,1,1,,0.03,nav,1,1948,1,, 9827,NJBF000051295,409 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1933,3102,2,1,1142.677005,1142.677005,3507,NO,38.12,43.89,1,1.56,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,41.00374508,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9828,NJBF000051098,119 MAIN STREET,Corbin City,NJ,39.29973485,-74.75397539,RES1,3001,,17,NE,2003,2003,3102,1,1,4760.65529,4760.65529,3507,NO,13.83,25.64,1,-0.9,6106,110.007639,119.759441,129.348226,134.789715,I,Above,Hip,0,5701,,19.73745525,0,0,,,,1,1,,0.03,nav,1,2003,1,, 9829,NJBF000051112,307 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1952,3102,2,1,2040.788979,2040.788979,3507,NO,39.15,53.37,1,2.21,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,46.25788548,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9830,NJBF000051165,207 MAIN STREET,Corbin City,NJ,39.3015104,-74.75492382,RES1,3001,,15,NE,1860,1843,3102,2,1,1762.427645,1762.427645,3507,NO,32.57,44.25,1,-0.24,6112,109.977221,119.72768,129.320926,134.743949,I,Above,Gable,0,5701,,38.4118645,0,0,,,,1,1,,0.35,nav,1,1860,2,, 9831,NJBF000051258,,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1372.402495,1372.402495,3507,NO,35.81,48.25,1,-0.03,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,42.02988385,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9832,NJBF000051176,209 MAIN STREET,Corbin City,NJ,39.30167961,-74.7550295,RES1,3001,,16,NE,1860,1860,3102,2,1,839.32198,839.32198,3507,NO,35.41,44.88,1,1.52,6112,109.974183,119.724473,129.318123,134.739259,I,Above,Gable,0,5701,,40.14687627,0,1.1,,,,1,1,,0.15,nav,1,1860,2,, 9833,NJBF000051088,114 MAIN STREET,Corbin City,NJ,39.29943294,-74.75319189,RES1,3001,,16,NE,1900,1900,3102,2,1,1090.812858,1090.812858,3507,NO,35.94,47.22,1,1.58,6106,110.018534,119.772087,129.360793,134.81016,I,Above,Gable,0,5701,,41.58149008,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 9834,NJBF000051598,424 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1996,3102,2,1,2451.187047,2451.187047,3507,NO,28.83,38.02,1,1.68,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,33.42408689,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9835,NJBF000051093,303 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1988,3102,2,1,2185.767062,2185.767062,3507,NO,27.52,33.76,1,-0.54,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,30.64444194,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 9836,NJBF000051128,201 MAIN STREET,Corbin City,NJ,39.300354,-74.7543875,RES1,3001,,15,NE,1900,1900,3102,2,3,1856.966759,1856.966759,3507,NO,30.03,35.53,1,0.5,6106,109.996256,119.747396,129.337657,134.772083,I,Above,Gable,0,5701,,32.7798786,0,0,,,,1,1,,0.03,nav,1,1900,2,, 9837,NJBF000051185,335 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1969,3102,2,1,2458.127946,2458.127946,3507,NO,23.32,34.93,1,-0.37,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,29.12667253,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9838,NJBF000051162,126 AETNA DRIVE,Corbin City,NJ,39.30149169,-74.76012876,RES1,3001,,16,NE,2009,2009,3102,1,1,7748.119105,7748.119105,3507,NO,18.37,32.47,1,0.34,6112,109.930586,119.668017,129.255418,134.638344,I,Above,Flat,0,5701,,25.41837948,0,0,,,,1,1,,0.35,nav,1,2009,1,, 9839,NJBF000051079,112 MAIN STREET,Corbin City,NJ,39.29918629,-74.75295301,RES1,3001,,17,NE,2007,2007,3102,2,1,2251.013004,2251.013004,3507,NO,37.93,45.43,1,2.2,6112,110.023782,119.777774,129.365965,134.818709,I,Above,Gable,0,5701,,41.67819642,0,1.1,,,,1,1,,0.35,nav,1,2007,2,, 9840,NJBF000051250,,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,2498.212938,2498.212938,3507,NO,26.71,39.18,1,2.43,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,32.94680931,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9841,NJBF000051246,,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1021.811811,1021.811811,3507,NO,38.96,44.42,1,1.17,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,41.68869205,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9842,NJBF000051350,406 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1992,3102,2,1,2055.020992,2055.020992,3507,NO,25.84,33.18,1,1.99,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,29.50675848,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9843,NJBF000051669,428 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1993,3102,2,1,1747.807328,1747.807328,3507,NO,37.83,48.55,1,2.59,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,43.18996533,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9844,NJBF000051090,119 ROUTE 50,Corbin City,NJ,39.29948951,-74.75210001,COM1,3001,649,NaN,ME,1969,0,3401,3,1,8585.392506,8585.392506,3507,NO,54.12,66.58,1,1.07,6112,110.027853,119.784128,129.374233,134.831551,I,Above,Hip,0,5701,,60.35309517,0,0,,,,1,1,,1,nav,1,1969,3,, 9845,NJBF000051074,115 ROUTE 50,Corbin City,NJ,39.29899688,-74.75199225,RES1,3001,,18,NE,1930,1930,3102,3,1,1269.539386,1269.539386,3507,NO,36.98,42.83,1,-0.88,6106,110.034965,119.7912,129.379861,134.8411,I,Above,Hip,0,5701,,39.90540329,0,0,,,,1,1,,0.03,nav,1,1930,3,, 9846,NJBF000051477,427 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1999,3102,2,1,2064.846957,2064.846957,3507,NO,38.75,50.22,1,1.93,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,44.48132307,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9847,NJBF000051458,,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,521.3942229,521.3942229,3507,NO,26.11,31.81,1,1.99,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,28.96046211,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9848,NJBF000051100,305 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1994,3102,2,1,1574.178989,1574.178989,3507,NO,31.98,39.87,1,1.15,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,35.92446256,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9849,NJBF000051134,108 AETNA DRIVE,Corbin City,NJ,39.30055224,-74.75571732,RES1,3001,,16,NE,1990,1990,3102,2,1,1492.583278,1492.583278,3507,NO,34.06,45.75,1,2,6106,109.981747,119.729702,129.319097,134.742081,I,Above,Gable,0,5701,,39.90126969,0,0,,,,1,1,,0.03,nav,1,1990,2,, 9850,NJBF000051141,108 AETNA DRIVE,Corbin City,NJ,39.30090958,-74.75572929,RES1,3001,,16,NE,1990,1990,3102,2,1,809.4925049,809.4925049,3507,NO,38.9,50.72,1,2.16,6110,109.977264,119.725386,129.315876,134.736504,I,Above,Gable,0,5701,,44.80863621,0,0,,,,1,1,,0.35,nav,1,1990,2,, 9851,NJBF000051259,509 BEACH DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1950,3102,2,1,2224.476592,2224.476592,3507,NO,23.33,28.37,1,-0.89,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,25.8534967,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9852,NJBF000051142,203 MAIN STREET,Corbin City,NJ,39.30094078,-74.7546077,RES1,3001,,15,NE,1840,1840,3102,2,1,1501.290731,1501.290731,3507,NO,31.83,45.17,1,2.76,6110,109.987052,119.73798,129.329822,134.758858,I,Above,Hip,0,5701,,38.50151233,0,0,,,,1,1,,0.35,nav,1,1840,2,, 9853,NJBF000051139,124 MAIN STREET,Corbin City,NJ,39.30078958,-74.75405894,RES1,3001,,15,NE,1900,1900,3102,2,1,1577.757046,1577.757046,3507,NO,33.95,40.71,1,-0.58,6112,109.993895,119.746101,129.33809,134.772284,I,Above,Hip,0,5701,,37.32568048,0,0,,,,1,1,,0.35,nav,1,1900,2,, 9854,NJBF000051357,413 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1996,3102,3,2,4955.407672,4955.407672,3507,NO,60.18,71.37,1,2.13,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,65.77466487,0,0,,,,1,1,,0.03,nav,1,1962,3,, 9855,NJBF000051087,106 ROUTE 50,Corbin City,NJ,39.29948951,-74.75210001,COM1,3001,999,16,ME,1969,1998,3401,1,1,3369.80008,3369.80008,3507,NO,13.88,19.01,1,0.08,6112,110.027853,119.784128,129.374233,134.831551,I,Above,Hip,0,5701,,16.44343148,0,0,,,,1,1,,1,nav,1,1969,1,, 9856,NJBF000051117,113 AETNA DRIVE,Corbin City,NJ,39.30015196,-74.75728778,RES1,3001,,16,NE,1900,1900,3102,2,1,1995.494402,1995.494402,3507,NO,38.44,50.62,1,-0.43,6106,109.972383,119.71622,129.302639,134.716074,I,Above,Gable,0,5701,,44.530396,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 9857,NJBF000051640,439 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1996,3102,2,1,2194.320842,2194.320842,3507,NO,39.3,45.71,1,2.47,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,42.5071316,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9858,NJBF000051663,439 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1996,3102,2,1,657.3489922,657.3489922,3507,NO,27.47,33.69,1,2.52,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,30.5795857,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9859,NJBF000051137,321 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,2007,3102,2,1,2413.012696,2413.012696,3507,NO,34.93,44.21,1,-0.39,6110,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,39.57333673,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9860,NJBF000051071,110 MAIN STREET,Corbin City,NJ,39.29889882,-74.75247445,RES1,3001,,16,NE,1970,1970,3102,1,1,845.6343618,845.6343618,3507,NO,20.28,30.61,1,1.32,6106,110.031742,119.786735,129.374548,134.832743,I,Above,Gable,0,5701,,25.44590542,0,0,,,,1,1,,0.03,nav,1,1970,1,, 9861,NJBF000051073,110 MAIN STREET,Corbin City,NJ,39.2989823,-74.75273067,RES1,3001,,16,NE,1970,1970,3102,1,1,1505.859479,1505.859479,3507,NO,19.1,30.91,1,2.2,6112,110.028348,119.782762,129.370553,134.826271,I,Above,Gable,0,5701,,25.00504671,0,0,,,,1,1,,0.35,nav,1,1970,1,, 9862,NJBF000051282,407 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1951,3102,1,1,2774.68663,2774.68663,3507,NO,20.67,32.61,1,1.19,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,26.63663402,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 9863,NJBF000052541,217 HEAD OF RIVER ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1900,3102,2,1,1339.270316,1339.270316,3507,NO,39.82,50.89,1,0.94,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,45.3568613,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9864,NJBF000051110,116 MAIN STREET,Corbin City,NJ,39.30000303,-74.75307083,RES1,3001,,NaN,NE,1969,0,3102,2,1,640.9458633,640.9458633,3507,NO,29.9,38.06,1,0.48,6110,110.012602,119.766794,129.35743,134.804129,I,Above,Gable,0,5701,,33.98112244,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9865,NJBF000051152,118 ROUTE 50,Corbin City,NJ,39.30126682,-74.75232916,RES1,3001,,16,NE,1974,1974,3102,2,1,1653.65399,1653.65399,3507,NO,24.74,39.73,1,-0.97,6112,110.003773,119.760556,129.355992,134.800403,I,Above,Gable,0,5701,,32.23521372,0,0,,,,1,1,,0.35,nav,1,1974,2,, 9866,NJBF000051130,120 MAIN STREET,Corbin City,NJ,39.30041608,-74.75303482,RES1,3001,,16,NE,1900,1900,3102,2,1,937.0268403,937.0268403,3507,NO,28.33,37.55,1,1.46,6110,110.007833,119.76236,129.354334,134.798707,I,Above,Gable,0,5701,,32.93987405,0,0,,,,1,1,,0.35,nav,1,1900,2,, 9867,NJBF000051132,311 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1810,3102,2,1,1935.504308,1935.504308,3507,NO,27.17,36.5,1,2.4,6110,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,31.83746445,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9868,NJBF000051127,315 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,15,NE,1962,1948,3102,1,1,746.7829961,746.7829961,3507,NO,13.16,24.29,1,2.56,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,18.72407239,0,0,,,,1,1,,0.03,nav,1,1962,1,, 9869,NJBF000051129,311 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1810,3102,2,1,625.7905023,625.7905023,3507,NO,32.23,39.59,1,-0.73,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,35.90579641,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9870,NJBF000051329,133 CARL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,2005,3102,2,1,509.9196482,509.9196482,3507,NO,26.53,34.21,1,1.7,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,30.37310283,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9871,NJBF000051097,301 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1996,3102,2,2,1223.877111,1223.877111,3507,NO,39.36,53.34,1,2.3,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,46.35172044,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9872,NJBF000051091,301 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1996,3102,2,2,1717.69982,1717.69982,3507,NO,22.43,36.08,1,0.38,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,29.25517825,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9873,NJBF000051242,503 BEACH DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,18,NE,1962,1962,3102,2,1,1138.732791,1138.732791,3507,NO,28.85,40.3,1,-0.1,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,34.57625861,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9874,NJBF000051244,503 BEACH DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,18,NE,1962,1962,3102,2,1,642.3574632,642.3574632,3507,NO,39.38,51.46,1,0.61,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,45.42339972,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9875,NJBF000051109,103 AETNA DRIVE,Corbin City,NJ,39.29999156,-74.75443429,RES1,3001,,16,NE,2007,2007,3102,2,1,1241.587342,1241.587342,3507,YES,36.47,41.58,1,-0.92,6106,110.000285,119.751103,129.340182,134.77654,I,Above,Flat,0,5701,,39.02340032,0,0,,,,1,1,,0.03,nav,1,2007,2,, 9876,NJBF000051251,,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,2328.207364,2328.207364,3507,NO,26.36,38.31,1,2.09,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,32.33842738,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9877,NJBF000051057,106 MAIN STREET,Corbin City,NJ,39.298423,-74.7524085,RES1,3001,,16,NE,2015,2015,3102,2,1,1086.711382,1086.711382,3507,NO,36.52,44.75,1,-0.05,6106,110.038248,119.793106,129.379475,134.841162,I,Above,Gable,0,5701,,40.63184891,0,0,,,,1,1,,0.03,nav,1,2015,2,, 9878,NJBF000051153,205 MAIN STREET,Corbin City,NJ,39.30131767,-74.75480275,RES1,3001,,15,NE,1920,1920,3102,2,1,2010.84842,2010.84842,3507,NO,40.08,49.49,1,1.65,6112,109.980665,119.73132,129.32411,134.749272,I,Above,Gable,0,5701,,44.78670439,0,0,,,,1,1,,0.35,nav,1,1920,2,, 9879,NJBF000051161,329 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1993,3102,2,1,1464.163552,1464.163552,3507,NO,40.98,53.67,1,2.1,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,47.32474986,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9880,NJBF000051105,107 AETNA DRIVE,Corbin City,NJ,39.2999505,-74.7558575,RES1,3001,,16,NE,1948,1948,3102,1,1,631.7720964,631.7720964,3507,NO,15.96,29.49,1,2.42,6106,109.987817,119.735088,129.32246,134.748166,I,Above,Flat,0,5701,,22.72670307,0,0,,,,1,1,,0.03,nav,1,1948,1,, 9881,NJBF000051116,123 AETNA DRIVE,Corbin City,NJ,39.30011835,-74.75890364,RES1,3001,,17,NE,1998,1998,3102,2,1,2482.71083,2482.71083,3507,NO,32.54,47.38,1,1.77,6106,109.958179,119.697984,129.282533,134.68371,I,Above,Gable,0,5701,,39.96164954,0,0,,,,1,1,,0.03,nav,1,1998,2,, 9882,NJBF000051095,119 MAIN STREET,Corbin City,NJ,39.29968493,-74.75417859,RES1,3001,,17,NE,2003,2003,3102,1,1,618.2750859,618.2750859,3507,NO,14.68,28.07,1,1.7,6106,110.00639,119.75766,129.34606,134.786307,I,Above,Gable,0,5701,,21.37831667,0,0,,,,1,1,,0.03,nav,1,2003,1,, 9883,NJBF000051064,106 MAIN STREET,Corbin City,NJ,39.29854589,-74.7522443,RES1,3001,,16,NE,2015,2015,3102,2,1,1152.412742,1152.412742,3507,NO,37.67,47.93,1,-0.95,6106,110.038243,119.793581,129.380525,134.84269,I,Above,Gable,0,5701,,42.80044217,0,0,,,,1,1,,0.03,nav,1,2015,2,, 9884,NJBF000050814,100 ROUTE 50,Corbin City,NJ,39.29544193,-74.75082353,RES1,3001,,16,NE,1983,1983,3102,2,1,1478.981833,1478.981833,3507,NO,26.48,32.72,1,0.47,6106,110.090221,119.846992,129.425457,134.917907,I,Above,Gable,0,5701,,29.60238094,0,0,,,,1,1,,0.03,nav,1,1983,2,, 9885,NJBF000051183,,Corbin City,NJ,39.30141525,-74.75432418,RES1,3001,,NaN,NE,1980,0,3102,2,1,5145.468434,5145.468434,3507,NO,37.44,49.41,1,1.3,6112,109.983819,119.735722,129.329352,134.757577,I,Above,Hip,0,5701,,43.42397702,0,0,,,,1,1,,0.15,nav,1,1980,2,, 9886,NJBF000051345,404 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1321.311209,1321.311209,3507,NO,25.56,34.28,1,1.66,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,29.92059716,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9887,NJBF000051131,201 MAIN STREET,Corbin City,NJ,39.3004405,-74.754542,RES1,3001,,15,NE,1900,1900,3102,2,3,1065.863012,1065.863012,3507,NO,39.72,51.16,1,1.85,6106,109.993786,119.744594,129.334954,134.767651,I,Above,Gable,0,5701,,45.4384493,0,0,,,,1,1,,0.03,nav,1,1900,2,, 9888,NJBF000051181,335 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1969,3102,2,1,716.3163992,716.3163992,3507,NO,33.51,39.58,1,0.35,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,36.54104186,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9889,NJBF000051199,335 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1969,3102,2,1,1469.157022,1469.157022,3507,NO,23.11,35.86,1,-0.89,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,29.48767265,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9890,NJBF000051121,117 AETNA DRIVE,Corbin City,NJ,39.30024097,-74.75790008,RES1,3001,,16,NE,1930,1930,3102,2,1,1242.102635,1242.102635,3507,NO,29.76,38.94,1,-0.39,6106,109.965761,119.708125,129.294148,134.702298,I,Above,Flat,0,5701,,34.34960948,0,0,,,,1,1,,0.03,nav,1,1930,2,, 9891,NJBF000051135,122 MAIN STREET,Corbin City,NJ,39.30059388,-74.75393596,RES1,3001,,15,NE,1900,1900,3102,2,1,2005.621835,2005.621835,3507,NO,31.38,39.07,1,2.75,6110,109.997423,119.749822,129.341339,134.777709,I,Above,Gable,0,5701,,35.22596252,0,0,,,,1,1,,0.35,nav,1,1900,2,, 9892,NJBF000051070,108 MAIN STREET,Corbin City,NJ,39.29880621,-74.75258196,RES1,3001,,16,NE,1854,1854,3102,2,1,909.2367512,909.2367512,3507,NO,31.73,43.83,1,2.78,6106,110.031901,119.786572,129.373969,134.831929,I,Above,Gable,0,5701,,37.77843487,0,0,,,,1,1,,0.03,nav,1,1854,2,, 9893,NJBF000051118,111 AETNA DRIVE,Corbin City,NJ,39.30017237,-74.75676533,RES1,3001,,16,NE,1948,1948,3102,2,1,2263.958143,2263.958143,3507,NO,32.87,38.56,1,0.01,6106,109.97688,119.722025,129.309082,134.726417,I,Above,Gable,0,5701,,35.7185828,0,0,,,,1,1,,0.03,nav,1,1948,2,, 9894,NJBF000051513,429 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,2004,3102,2,1,3459.172354,3459.172354,3507,NO,32.8,41.56,1,0.63,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,37.17779615,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9895,NJBF000051078,115 ROUTE 50,Corbin City,NJ,39.29914689,-74.75184891,RES1,3001,,18,NE,1930,1930,3102,3,1,1077.52298,1077.52298,3507,NO,48.15,60.03,1,0.46,6106,110.034419,119.791098,129.380396,134.841777,I,Above,Gable,0,5701,,54.08762051,0,0,,,,1,1,,0.03,nav,1,1930,3,, 9896,NJBF000051055,107 ROUTE 50,Corbin City,NJ,39.29841088,-74.75176419,RES1,3001,,16,NE,1900,1900,3102,2,1,1689.274121,1689.274121,3507,NO,22.72,28.36,1,-0.72,6106,110.044354,119.80078,129.387826,134.85448,I,Above,Hip,0,5701,,25.54440068,0,0,,,,1,1,,0.03,nav,1,1900,2,, 9897,NJBF000051443,421 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,2016,3102,1,1,2065.696932,2065.696932,3507,NO,13.87,20.53,1,2.12,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,17.19906272,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 9898,NJBF000051226,200 CARL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,2002,3102,2,1,1512.787299,1512.787299,3507,NO,38.23,52.66,1,1.41,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,45.44645185,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9899,NJBF000051115,305 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1994,3102,2,1,866.6507116,866.6507116,3507,NO,29.11,42.52,1,-0.47,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,35.81842274,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9900,NJBF000051395,413 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1996,3102,3,2,2866.801636,2866.801636,3507,NO,56.26,67.89,1,0.73,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,62.07718747,0,0,,,,1,1,,0.03,nav,1,1962,3,, 9901,NJBF000051081,106 ROUTE 50,Corbin City,NJ,39.29948951,-74.75210001,COM1,3001,999,16,ME,1969,1998,3401,1,1,1435.877521,1435.877521,3507,NO,17.56,27.57,1,2.52,6106,110.027853,119.784128,129.374233,134.831551,I,Above,Hip,0,5701,,22.5641162,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9902,NJBF000051526,431 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1163.294771,1163.294771,3507,NO,30.41,38.04,1,1.24,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,34.22653379,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9903,NJBF000051372,131 CARL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1984,3102,1,1,1598.666872,1598.666872,3507,NO,20.3,31.7,1,1.39,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,26.00419445,0,0,,,,1,1,,0.03,nav,1,1962,1,, 9904,NJBF000051133,321 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,2007,3102,2,1,1519.900267,1519.900267,3507,NO,38.47,43.64,1,0.6,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,41.05280581,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9905,NJBF000051084,115 MAIN STREET,Corbin City,NJ,39.2992926,-74.75351719,RES1,3001,,16,NE,1947,1947,3102,2,1,1544.961003,1544.961003,3507,NO,39.35,47.65,1,1.35,6106,110.017284,119.769953,129.357855,134.805628,I,Above,Gable,0,5701,,43.49659157,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 9906,NJBF000051050,104 MAIN STREET,Corbin City,NJ,39.29829557,-74.75220884,RES1,3001,,17,NE,1770,1770,3102,3,1,1942.917103,1942.917103,3507,NO,35.58,50.22,1,0.31,6106,110.041672,119.79694,129.383125,134.84713,I,Above,Gable,0,5701,,42.90190798,0,0,,,,1,1,,0.03,nav,1,1770,3,, 9907,NJBF000051076,119 ROUTE 50,Corbin City,NJ,39.29902554,-74.75238883,RES1,3001,649,NaN,NE,1970,0,3102,3,1,641.2079345,641.2079345,3507,NO,55.2,67.28,1,2.28,6106,110.03095,119.786229,129.37454,134.832581,I,Above,Gable,0,5701,,61.24039318,0,0,,,,1,1,,0.03,nav,1,1970,3,, 9908,NJBF000051123,119 AETNA DRIVE,Corbin City,NJ,39.30026144,-74.75806619,RES1,3001,,16,NE,1960,1960,3102,2,1,1006.75167,1006.75167,3507,NO,34.18,44.91,1,1.26,6106,109.964017,119.705979,129.291882,134.698624,I,Above,Flat,0,5701,,39.54654409,0,0,,,,1,1,,0.03,nav,1,1960,2,, 9909,NJBF000051107,118 MAIN STREET,Corbin City,NJ,39.29997418,-74.75364177,RES1,3001,,16,NE,1900,1900,3102,2,1,796.8221524,796.8221524,3507,NO,22.26,35.24,1,0.51,6110,110.007738,119.760503,129.350409,134.792934,I,Above,Gable,0,5701,,28.75141971,0,0,,,,1,1,,0.35,nav,1,1900,2,, 9910,NJBF000051267,511 BEACH DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1994,3102,2,1,1340.24984,1340.24984,3507,NO,32.91,42.06,1,0.95,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,37.48399058,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 9911,NJBF000051085,106 ROUTE 50,Corbin City,NJ,39.29948951,-74.75210001,COM1,3001,999,16,ME,1969,1998,3401,3,1,979.0434767,979.0434767,3507,NO,50.37,60.69,1,1.53,6106,110.027853,119.784128,129.374233,134.831551,I,Above,Hip,0,5701,,55.52751564,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9912,NJBF000051092,106 ROUTE 50,Corbin City,NJ,39.29948951,-74.75210001,COM1,3001,999,16,ME,1969,1998,3401,3,1,1141.858522,1141.858522,3507,NO,49.24,62.65,1,1.44,6106,110.027853,119.784128,129.374233,134.831551,I,Above,Hip,0,5701,,55.94696484,0,0,,,,1,1,,0.03,nav,1,1969,3,, 9913,NJBF000051106,303 AETNA DRIVE,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1988,3102,2,1,1321.225962,1321.225962,3507,NO,31.67,41.16,1,2.69,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,36.41070037,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 9914,NJBF000051149,202 MAIN STREET,Corbin City,NJ,39.30120975,-74.75434368,RES1,3001,,16,NE,1920,1920,3102,2,1,1103.117058,1103.117058,3507,NO,25.25,35.16,1,2.36,6112,109.986151,119.737888,129.330861,134.760224,I,Above,Gable,0,5701,,30.20513658,0,0,,,,1,1,,0.35,nav,1,1920,2,, 9915,NJBF000051159,204 MAIN STREET,Corbin City,NJ,39.30141525,-74.75432418,RES1,3001,,16,NE,1980,1980,3102,1,1,1108.912772,1108.912772,3507,NO,14.77,24.11,1,1.18,6112,109.983819,119.735722,129.329352,134.757577,I,Above,Hip,0,5701,,19.44098718,0,0,,,,1,1,,0.15,nav,1,1980,1,, 9916,NJBF000051172,208 MAIN STREET,Corbin City,NJ,39.30160653,-74.75453385,RES1,3001,,15,NE,1890,1920,3102,2,1,2761.61514,2761.61514,3507,NO,39.24,50.2,1,1.04,6112,109.979564,119.731051,129.325038,134.750442,I,Above,Gable,0,5701,,44.71976829,0,0,,,,1,1,,0.35,nav,1,1890,2,, 9917,NJBF000051364,131 CARL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1984,3102,1,1,1162.20882,1162.20882,3507,NO,19.57,30.92,1,0.4,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,25.24434551,0,0,,,,1,1,,0.03,nav,1,1962,1,, 9918,NJBF000051918,102 CARL ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1995,3102,2,1,2918.663158,2918.663158,3507,NO,29.52,43.26,1,-0.06,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,36.38938906,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9919,NJBF000052044,104 HEAD OF RIVER ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,15,NE,1962,1940,3102,2,1,622.7813264,622.7813264,3507,NO,30.91,38.16,1,0.53,6109,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,34.53347691,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9920,NJBF000052071,,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,639.7489234,639.7489234,3507,NO,35.49,44.92,1,2.08,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,40.20108442,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9921,NJBF000052095,104 HEAD OF RIVER ROAD,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,15,NE,1962,1940,3102,2,1,2014.736566,2014.736566,3507,NO,25.57,33.46,1,-0.97,6109,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,29.51539784,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9922,NJBF000052109,510 ROUTE 50,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1975,3102,2,1,2301.186097,2301.186097,3507,NO,38.26,48.23,1,2.84,6109,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,43.24694272,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9923,NJBF000052112,512 ROUTE 50,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,15,NE,1962,1940,3102,2,1,1150.608743,1150.608743,3507,YES,23.78,31.66,1,-0.89,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,27.72009934,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9924,NJBF000052150,,Corbin City,NJ,39.31313618,-74.7673151,COM1,3001,,NaN,ME,1969,0,3401,1,1,1066.271902,1066.271902,3507,NO,15.13,26.14,1,-0.94,6109,109.732091,119.455254,129.067432,134.319467,I,Above,Hip,0,5701,,20.63515444,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9925,NJBF000052234,600 ROUTE 50,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,15,NE,1962,1940,3102,2,1,1354.160412,1354.160412,3507,NO,26.97,40.89,1,0.1,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,33.93013128,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9926,NJBF000052306,602 ROUTE 50,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1938,3102,2,1,1224.270189,1224.270189,3507,NO,29.93,37.82,1,-0.06,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,33.87904941,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9927,NJBF000054083,650 ROUTE 50,Corbin City,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1930,3102,2,1,2575.579642,2575.579642,3507,NO,32.63,45.47,1,1.51,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,39.04794158,0,0,,,,1,1,,0.03,nav,1,1962,2,, 9928,NJBF000072831,135 GARNETT LANE,Egg Harbor,NJ,39.37511675,-74.58604463,RES1,3001,,16,NE,2005,2005,3102,2,1,2579.278413,2579.278413,3507,NO,29,37.43,1,2.6,6112,110.96108,121.28815,130.953681,137.12639,I,Above,Gable,0,5701,,33.21916734,0,0,,,,1,1,,0.35,nav,1,2005,2,, 9929,NJBF000072900,122 GARNETT LANE,Egg Harbor,NJ,39.37554697,-74.58580994,RES1,3001,,16,NE,2005,2005,3102,2,1,2441.260454,2441.260454,3507,NO,27.38,33.19,1,0.27,6112,110.962265,121.287807,130.952318,137.124636,I,Above,Hip,0,5701,,30.28394272,0,0,,,,1,1,,0.35,nav,1,2005,2,, 9930,NJBF000078030,117 MAIN AVENUE,Egg Harbor,NJ,39.40244716,-74.59340885,RES1,3001,,16,NE,1960,1960,3102,1,1,2445.97018,2445.97018,3507,NO,18.34,28.4,1,-0.36,6112,110.651641,120.900169,130.500518,136.549278,I,Above,Flat,0,5701,,23.36929958,0,1.2,,,,1,1,,0.15,nav,1,1960,1,, 9931,NJBF000072995,100 BURNSIDE DRIVE,Egg Harbor,NJ,39.3763222,-74.58891847,RES1,3001,,16,NE,2003,2003,3102,1,1,2682.948311,2682.948311,3507,NO,17.92,31.9,1,-0.04,6112,110.88378,121.227124,130.892764,137.048315,I,Above,Gable,0,5701,,24.90623691,0,0,,,,1,1,,0.35,nav,1,2003,1,, 9932,NJBF000069388,17 FRONT STREET,Egg Harbor,NJ,39.36003129,-74.58021183,RES1,3001,,16,NE,1959,1959,3101,1,1,1583.793273,1583.793273,3507,NO,15.51,30.44,1,1.71,6112,111.275082,121.545316,131.228686,137.477588,I,Above,Gable,0,5701,,22.97712625,0,0,,,,1,1,,0.35,nav,1,1959,1,, 9933,NJBF000069450,9 FRONT STREET,Egg Harbor,NJ,39.3604925,-74.57963662,RES1,3001,,16,NE,1954,1954,3101,1,1,1221.307074,1221.307074,3507,NO,16.31,26.61,1,-0.29,6112,111.281566,121.5503,131.23275,137.482544,I,Above,Hip,0,5701,,21.46164672,0,0,,,,1,1,,0.35,nav,1,1954,1,, 9934,NJBF000069466,7 FRONT STREET,Egg Harbor,NJ,39.36067243,-74.57955631,RES1,3001,,16,NE,1954,1954,3101,2,1,2047.50211,2047.50211,3507,NO,25.69,37.34,1,1.66,6112,111.280912,121.549772,131.231967,137.481501,I,Above,Flat,0,5701,,31.51415736,0,1.1,,,,1,1,,0.35,nav,1,1954,2,, 9935,NJBF000078120,4045 SPRUCE AVENUE,Egg Harbor,NJ,39.40307302,-74.59121644,RES1,3001,,16,NE,1951,1951,3102,1,1,1756.27683,1756.27683,3507,NO,12.8,26.54,1,0.32,6112,110.693621,120.930338,130.527147,136.584675,I,Above,Gable,0,5701,,19.66572284,0,1.2,,,,1,1,,0.15,nav,1,1951,1,, 9936,NJBF000083289,FAA TECH CENTER,Egg Harbor,NJ,39.44120101,-74.56824444,GOV1,3003,,NaN,E,1969,0,3401,1,1,530.7404598,530.7404598,3507,NO,14.81,27.15,1,0.81,6112,111.040028,120.94421,130.448392,136.453306,I,Above,Flat,0,NaN,,20.97912318,0,0,,,,1,1,,1,nav,1,1969,1,, 9937,NJBF000078155,4045 SPRUCE AVENUE,Egg Harbor,NJ,39.40329835,-74.5908878,RES1,3001,,16,NE,1951,1951,3102,1,1,2460.040128,2460.040128,3507,NO,13.73,19.92,1,0.17,6112,110.699586,120.933622,130.529502,136.587907,I,Above,Gable,0,5701,,16.82647645,0,1.2,,,,1,1,,0.15,nav,1,1951,1,, 9938,NJBF000078176,4039 SPRUCE AVENUE,Egg Harbor,NJ,39.40344152,-74.59081194,RES1,3001,,16,NE,1986,1986,3102,1,1,1430.672925,1430.672925,3507,NO,21.14,35.93,1,2.02,6112,110.700741,120.933521,130.528893,136.587215,I,Above,Gable,0,5701,,28.53345259,0,1.2,,,,1,1,,0.15,nav,1,1986,1,, 9939,NJBF000066882,100 BLACKMAN ROAD,Egg Harbor,NJ,39.35114757,-74.585629,AGR1,3001,739,NaN,NE,1969,0,3401,3,1,3352.475683,3352.475683,3507,NO,32.99,45.65,1,1.24,6110,111.289369,121.548459,131.243482,137.498378,I,Above,Flat,0,NaN,,39.32022251,0,0,,,,1,1,,0.15,nav,1,1969,3,, 9940,NJBF000065405,BEVIS MILL ROAD ROW,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,NaN,NE,1981,0,3101,1,1,672.087414,672.087414,3505,NO,11.15,19.1,3,-1.38,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,15.12197589,0,0,,,,1,1,,0.35,nav,1,1981,1,, 9941,NJBF000066953,100 BLACKMAN ROAD,Egg Harbor,NJ,39.35143853,-74.58551345,AGR1,3001,739,NaN,NE,1969,0,3401,2,1,2754.982525,2754.982525,3507,NO,36.66,50.08,1,-0.15,6110,111.28722,121.547247,131.242006,137.496455,I,Above,Flat,0,NaN,,43.37216136,0,0,,,,1,1,,0.15,nav,1,1969,2,, 9942,NJBF000064932,1455 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34570854,-74.68222342,RES1,3001,,16,NE,1860,1860,3102,2,1,1345.929778,1345.929778,3505,NO,44.51,54.36,3,7.21,6106,110.04088,120.033287,129.864736,135.574923,I,Above,Flat,0,5701,,49.43554233,0,1.1,,,,1,1,,0.03,nav,1,1860,2,, 9943,NJBF000070810,,Egg Harbor,NJ,39.36851918,-74.58379263,RES1,3001,,NaN,NE,1969,0,3101,1,1,592.4407888,592.4407888,3507,NO,20.83,33.03,1,2.78,6110,111.084443,121.394232,131.069342,137.274287,I,Above,Gable,0,5701,,26.93191904,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9944,NJBF000075377,6 SHIPS DRIVE,Egg Harbor,NJ,39.38969153,-74.7179864,RES1,3001,,15,NE,1960,1960,3102,1,1,839.9158011,839.9158011,3507,NO,19.95,26.21,1,1.26,6106,109.355081,119.233626,128.979013,134.180023,I,Above,Gable,0,5701,,23.07850609,0,0,,,,1,1,,0.03,nav,1,1960,1,, 9945,NJBF000066619,ZION ROAD LL,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,NaN,NE,1981,0,3101,1,1,632.9637812,632.9637812,3505,NO,16.49,22.39,3,4.68,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,19.43773087,0,0,,,,1,1,,0.35,nav,1,1981,1,, 9946,NJBF000067303,100 BLACKMAN ROAD,Egg Harbor,NJ,39.35298703,-74.58329145,AGR1,3001,739,NaN,NE,1969,0,3401,3,1,2666.065824,2666.065824,3507,NO,33.75,40.47,1,2.08,6112,111.310739,121.568545,131.260445,137.519506,I,Above,Flat,0,NaN,,37.11133107,0,0,,,,1,1,,0.15,nav,1,1969,3,, 9947,NJBF000083267,FAA TECH CENTER,Egg Harbor,NJ,39.4405767,-74.57876061,GOV1,3003,,NaN,E,1969,0,3401,2,1,1156.370402,1156.370402,3507,NO,30.46,36.48,1,1.75,6112,110.851703,120.780479,130.266759,136.249072,I,Above,Gable,0,NaN,,33.47234366,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9948,NJBF000076343,5012 SPRUCE AVENUE,Egg Harbor,NJ,39.3930533,-74.59150555,RES1,3001,,16,NE,2013,2013,3102,1,1,557.5078951,557.5078951,3507,NO,18.35,28.82,1,0.72,6112,110.718855,121.020188,130.647387,136.735338,I,Above,Gable,0,5701,,23.58609231,0,0,,,,1,1,,0.35,nav,1,2013,1,, 9949,NJBF000052972,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31805065,-74.63456655,RES1,3001,,NaN,NE,1969,0,3101,1,1,1141.827281,1141.827281,3505,NO,26.31,36.01,3,8.57,6106,111.031772,121.121196,130.840506,136.968877,I,Above,Flat,0,5701,,31.15766746,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9950,NJBF000074552,1133 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38626699,-74.7155085,IND2,3001,510,NaN,ME,1969,0,3401,1,1,1346.400504,1346.400504,3507,NO,15.02,26.39,1,1.1,6106,109.394753,119.288656,129.040929,134.281774,I,Above,Hip,0,NaN,,20.70769136,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9951,NJBF000074151,202 ATHENS AVENUE,Egg Harbor,NJ,39.38511649,-74.50847049,RES3C,3001,,16,E,1986,1986,3303,2,1,807.650086,807.650086,3507,NO,27.09,36.44,1,0.36,6106,112.615795,122.533506,132.203541,138.538146,I,Above,Hip,0,NaN,,31.7640944,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 9952,NJBF000073442,8006 BLACK HORSE PIKE,Egg Harbor,NJ,39.3807485,-74.495048,COM1,3003,999,NaN,ME,1969,0,3401,2,1,1307.383838,1307.383838,3507,NO,26.83,41.74,1,-0.81,6106,112.957162,122.818667,132.508828,138.864625,I,Above,Flat,0,NaN,,34.28480368,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9953,NJBF000074467,201 GENOA AVENUE,Egg Harbor,NJ,39.38657099,-74.51657899,RES1,3001,,16,NE,1930,1930,3102,2,1,954.8259427,954.8259427,3505,NO,31.39,44.75,3,5.63,6106,112.421856,122.374693,132.034399,138.35693,I,Above,Hip,0,5701,,38.07005211,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 9954,NJBF000074426,203 GENOA AVENUE,Egg Harbor,NJ,39.38637231,-74.51671311,RES1,3001,,16,NE,1925,1925,3102,2,1,1619.990019,1619.990019,3505,NO,34.61,42.61,3,-0.35,6106,112.420747,122.374415,132.034235,138.357488,I,Above,Hip,0,5701,,38.6073793,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 9955,NJBF000074320,200 WEST PLAZA PLACE,Egg Harbor,NJ,39.38589004,-74.51147387,RES1,3001,,16,NE,1954,1954,3102,2,1,1805.916245,1805.916245,3505,NO,31.92,38.56,3,3.97,6106,112.541672,122.472115,132.137981,138.467481,I,Above,Gable,0,5701,,35.24069476,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 9956,NJBF000051511,119 MORRIS AVENUE,Egg Harbor,NJ,39.30783054,-74.63565398,RES1,3001,,16,NE,2014,2014,3102,2,1,1420.226804,1420.226804,3505,NO,36.98,48.13,3,3.85,6106,111.200728,121.239262,130.93191,137.094061,I,Above,Gable,0,5701,,42.55704538,0,0,,,,1,1,,0.03,nav,1,2014,2,, 9957,NJBF000064131,606 NATHAN LANE,Egg Harbor,NJ,39.34365892,-74.63977499,RES1,3001,,16,NE,1981,1981,3101,1,1,1587.550904,1587.550904,3505,NO,17.77,26.15,3,-0.42,6110,110.492909,120.711327,130.487133,136.484832,I,Above,Gable,0,5701,,21.96127984,0,0,,,,1,1,,0.35,nav,1,1981,1,, 9958,NJBF000054605,47 SOMERS AVENUE,Egg Harbor,NJ,39.32385804,-74.64258583,RES1,3001,,16,NE,2006,2006,3102,1,1,1370.148188,1370.148188,3505,NO,17.12,23.25,3,4.74,6106,110.815828,120.91623,130.657604,136.718861,I,Above,Gable,0,5701,,20.18507488,0,0,,,,1,1,,0.03,nav,1,2006,1,, 9959,NJBF000077247,1053 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39746972,-74.7169346,RES1,3001,,18,NE,1965,1965,3102,2,1,1548.388505,1548.388505,3507,NO,24.11,33.37,1,1.82,6106,109.315041,119.184614,128.918663,134.084627,I,Above,Gable,0,5701,,28.74187379,0,0,,,,1,1,,0.03,nav,1,1965,2,, 9960,NJBF000061665,,Egg Harbor,NJ,39.33803805,-74.63855072,RES1,3001,,NaN,NE,1969,0,3101,1,1,1612.105768,1612.105768,3505,NO,19.96,28.44,3,8.59,6106,110.611063,120.799866,130.566154,136.593656,I,Above,Hip,0,5701,,24.20149417,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9961,NJBF000067493,142 LEES LANE,Egg Harbor,NJ,39.3536485,-74.6939025,RES1,3001,,16,NE,1790,1790,3101,2,1,1824.974546,1824.974546,3507,NO,35.54,46.08,1,1,6112,109.846265,119.810003,129.629189,135.214875,I,Above,Gable,0,5701,,40.81080843,0,0,,,,1,1,,0.35,nav,1,1790,2,, 9962,NJBF000067461,142 LEES LANE,Egg Harbor,NJ,39.35356437,-74.69384355,RES1,3001,,16,NE,1790,1790,3101,2,1,655.6974446,655.6974446,3507,NO,40.42,49.51,1,2.65,6112,109.847705,119.811503,129.630784,135.217331,I,Above,Gable,0,5701,,44.96647477,0,0,,,,1,1,,0.35,nav,1,1790,2,, 9963,NJBF000063317,15 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34139601,-74.59535234,RES1,3001,,16,NE,1992,1992,3102,1,1,3748.868441,3748.868441,3507,NO,20.96,32.65,1,2.32,6112,111.255126,121.490971,131.197637,137.440516,I,Above,Gable,0,5701,,26.80795224,0,0,,,,1,1,,0.35,nav,1,1992,1,, 9964,NJBF000063997,129 BEVIS MILL ROAD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1981,3101,2,1,765.8974808,765.8974808,3505,NO,30.63,38.75,3,0.05,6112,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,34.69159463,0,0,,,,1,1,,0.35,nav,1,1979,2,, 9965,NJBF000063902,129 BEVIS MILL ROAD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1981,3101,2,1,2355.176016,2355.176016,3505,NO,25.03,31.12,3,-1.42,6112,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,28.07608706,0,0,,,,1,1,,0.35,nav,1,1979,2,, 9966,NJBF000063728,1607 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34253435,-74.65023191,RES1,3001,,16,NE,1900,1900,3101,2,2,2233.963467,2233.963467,3507,NO,22.9,34.09,1,-0.98,6112,110.39202,120.551495,130.346419,136.284649,I,Above,Hip,0,5701,,28.49465847,0,1.2,,,,1,1,,0.35,nav,1,1900,2,, 9967,NJBF000063635,1607 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3422565,-74.6504435,RES1,3001,,16,NE,1900,1900,3101,2,2,707.3006023,707.3006023,3507,NO,33.25,45.93,1,-0.92,6110,110.394485,120.551487,130.346329,136.284416,I,Above,Gable,0,5701,,39.58932073,0,1.2,,,,1,1,,0.35,nav,1,1900,2,, 9968,NJBF000066561,1100 LAKESIDE DRIVE,Egg Harbor,NJ,39.3500769,-74.59040991,RES1,3001,,16,NE,1969,1969,3101,2,1,1718.256852,1718.256852,3505,NO,36.41,47.2,3,-2.14,6112,111.20587,121.477951,131.17803,137.415017,I,Above,Gable,0,5701,,41.8029684,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 9969,NJBF000065653,1122 LAKESIDE DRIVE,Egg Harbor,NJ,39.34771913,-74.59244453,RES1,3001,,16,NE,1969,1969,3101,1,1,1945.823338,1945.823338,3505,NO,25.87,33.67,3,7.82,6106,111.203356,121.469206,131.172264,137.407726,I,Above,Gable,0,5701,,29.77022667,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 9970,NJBF000065859,1109 JORENE DRIVE,Egg Harbor,NJ,39.34829046,-74.58706641,RES1,3001,,16,NE,1969,1969,3101,2,1,1825.51511,1825.51511,3505,NO,21.01,28.12,3,-1.59,6106,111.305217,121.555417,131.253051,137.510969,I,Above,Hip,0,5701,,24.56302986,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 9971,NJBF000066168,1106 MARLOU AVENUE,Egg Harbor,NJ,39.34910075,-74.58843409,RES1,3001,,16,NE,1972,1972,3101,1,1,2241.681832,2241.681832,3505,NO,13.05,24.83,3,-1.17,6112,111.263249,121.522811,131.221392,137.470545,I,Above,Gable,0,5701,,18.93995615,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 9972,NJBF000064255,1600 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34402028,-74.65126605,RES1,3001,,16,NE,1957,1957,3101,1,1,1597.386907,1597.386907,3507,NO,15.88,29.23,1,0.61,6112,110.355497,120.51614,130.31563,136.24105,I,Above,Hip,0,5701,,22.55209694,0,0,,,,1,1,,0.15,nav,1,1957,1,, 9973,NJBF000065978,1109 MARLOU AVENUE,Egg Harbor,NJ,39.34859484,-74.58813313,RES1,3001,,16,NE,1975,1975,3101,2,1,1978.198511,1978.198511,3505,NO,40.04,53.9,3,5.16,6112,111.277874,121.533631,131.232132,137.484297,I,Above,Gable,0,5701,,46.97165212,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 9974,NJBF000064356,176 BLACKMAN ROAD,Egg Harbor,NJ,39.344294,-74.5920445,RES1,3001,,NaN,NE,1969,0,3102,2,1,510.969719,510.969719,3505,NO,35.21,42.29,3,2.66,6106,111.270154,121.514675,131.218004,137.466589,I,Above,Hip,0,5701,,38.75367809,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9975,NJBF000066167,152 LEES LANE,Egg Harbor,NJ,39.34909534,-74.69753695,RES1,3001,,16,NE,1928,1928,3101,2,1,1188.256309,1188.256309,3507,NO,35.57,49.71,1,1.47,6106,109.873265,119.819317,129.626248,135.20833,I,Above,Hip,0,5701,,42.63626151,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 9976,NJBF000054533,49 SOMERS AVENUE,Egg Harbor,NJ,39.32365208,-74.64229226,RES1,3001,,16,NE,1991,1991,3102,1,1,1745.736287,1745.736287,3505,NO,13.52,21.79,3,0,6106,110.823435,120.923642,130.664191,136.727947,I,Above,Gable,0,5701,,17.65051323,0,0,,,,1,1,,0.03,nav,1,1991,1,, 9977,NJBF000054461,49 SOMERS AVENUE,Egg Harbor,NJ,39.32345952,-74.64248233,RES1,3001,,16,NE,1991,1991,3102,1,1,629.7482085,629.7482085,3505,NO,17.93,24.84,3,-0.91,6106,110.824364,120.923146,130.663375,136.726833,I,Above,Gable,0,5701,,21.38628362,0,0,,,,1,1,,0.03,nav,1,1991,1,, 9978,NJBF000061692,330 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1978,3102,1,1,2527.814348,2527.814348,3505,NO,21.51,27.08,3,4.58,6112,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,24.29567295,0,1.2,,,,1,1,,0.35,nav,1,1993,1,, 9979,NJBF000073037,3312 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37674996,-74.57967137,RES1,3001,,NaN,NE,1969,0,3102,2,1,1939.524297,1939.524297,3507,NO,25.92,37.53,1,-0.05,6112,111.091091,121.380373,131.038185,137.233109,I,Above,Gable,0,5701,,31.7279145,0,0,,,,1,1,,0.35,nav,1,1969,2,, 9980,NJBF000066127,132 CINDY DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1106.015725,1106.015725,3505,NO,18.12,30.8,3,6.69,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,24.45882297,0,0,,,,1,1,,0.35,nav,1,1981,1,, 9981,NJBF000071296,3364 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37011558,-74.58144116,RES1,3001,,16,NE,1958,1958,3101,1,1,3537.844464,3537.844464,3507,NO,11.82,17.16,1,-0.44,6106,111.119491,121.41803,131.088809,137.298579,I,Above,Gable,0,5701,,14.49178084,0,1.2,,,,1,1,,0.03,nav,1,1958,1,, 9982,NJBF000063445,11 BEAVER DRIVE,Egg Harbor,NJ,39.34175484,-74.61184818,RES1,3001,,16,NE,1984,1984,3102,1,1,2292.025557,2292.025557,3505,NO,23.75,36.8,3,5.83,6112,110.942442,121.204994,130.931982,137.092844,I,Above,Hip,0,5701,,30.276645,0,1.1,,,,1,1,,0.35,nav,1,1984,1,, 9983,NJBF000074506,205 TOULON AVENUE,Egg Harbor,NJ,39.38674281,-74.5174236,RES1,3001,,16,NE,1950,1950,3102,1,1,1678.924449,1678.924449,3505,NO,19.12,30.22,3,0.63,6106,112.401471,122.357973,132.016612,138.33761,I,Above,Flat,0,5701,,24.67088492,0,0,,,,1,1,,0.03,nav,1,1950,1,, 9984,NJBF000052038,4 O'BYRNE DRIVE,Egg Harbor,NJ,39.31259802,-74.57917073,RES1,3001,,16,NE,1959,1959,3102,1,1,1374.586339,1374.586339,3507,NO,20.71,25.97,1,2.98,6106,112.07892,122.11196,131.78589,138.182298,I,Above,Gable,0,5701,,23.33918187,0,0,,,,1,1,,0.03,nav,1,1959,1,, 9985,NJBF000052014,8 O'BYRNE DRIVE,Egg Harbor,NJ,39.31242147,-74.5791839,RES1,3001,,16,NE,1959,1959,3102,1,1,1210.446255,1210.446255,3507,NO,17.4,24.56,1,0.44,6106,112.081775,122.113918,131.787625,138.184446,I,Above,Hip,0,5701,,20.97895407,0,0,,,,1,1,,0.03,nav,1,1959,1,, 9986,NJBF000074641,200 LYONS COURT,Egg Harbor,NJ,39.3873153,-74.51846895,RES1,3001,,16,NE,1940,1940,3102,1,1,1628.529474,1628.529474,3505,NO,22.14,34.97,3,6.21,6106,112.372935,122.333544,131.990409,138.307944,I,Above,Gable,0,5701,,28.55578689,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 9987,NJBF000074690,7001 BLACK HORSE PIKE,Egg Harbor,NJ,39.38745867,-74.51841835,RES1,3001,649,NaN,NE,1940,0,3102,2,1,973.8108818,973.8108818,3505,NO,41.69,55.79,3,8.76,6106,112.372735,122.332935,131.989665,138.306643,I,Above,Flat,0,5701,,48.73838119,0,0,,,,1,1,,0.03,nav,1,1940,2,, 9988,NJBF000074230,205 SEVILLE AVENUE,Egg Harbor,NJ,39.38547491,-74.51037743,RES1,3001,,16,NE,1951,1951,3102,1,1,1858.838797,1858.838797,3505,NO,15.67,26.32,3,3.36,6106,112.570005,122.495914,132.163449,138.49544,I,Above,Hip,0,5701,,20.99384053,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 9989,NJBF000074455,7034 BLACK HORSE PIKE,Egg Harbor,NJ,39.38649278,-74.51009909,COM1,3003,30,NaN,ME,1969,0,3401,1,1,1061.679651,1061.679651,3507,NO,17.92,30.6,1,-0.4,6106,112.566411,122.490128,132.156794,138.484517,I,Above,Flat,0,NaN,,24.25545092,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9990,NJBF000074444,7042 BLACK HORSE PIKE,Egg Harbor,NJ,39.38645935,-74.50983839,COM1,3003,210,NaN,ME,1969,0,3401,2,1,3156.928808,3156.928808,3507,NO,32.51,42.61,1,-0.24,6106,112.572522,122.49511,132.162105,138.490122,I,Above,Flat,0,NaN,,37.55916117,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9991,NJBF000074307,7043 BLACK HORSE PIKE,Egg Harbor,NJ,39.3858454,-74.51014093,RES1,3001,,16,NE,1951,1951,3102,1,1,1569.836918,1569.836918,3505,NO,17.81,28.43,3,5.96,6106,112.571683,122.496202,132.163569,138.494088,I,Above,Flat,0,5701,,23.1176602,0,0,,,,1,1,,0.03,nav,1,1951,1,, 9992,NJBF000067981,MARGATE BLVD.,Egg Harbor,NJ,39.35523472,-74.54092572,RES1,3001,999,NaN,NE,1969,0,3102,2,1,1732.130466,1732.130466,3507,NO,30.15,41.05,1,1.29,6106,112.220622,122.28109,131.958696,138.361021,I,Above,Gable,0,5701,,35.60042354,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9993,NJBF000073439,8008 BLACK HORSE PIKE,Egg Harbor,NJ,39.3807298,-74.49454048,COM1,3003,737,NaN,ME,1969,0,3401,1,1,4508.889276,4508.889276,3507,NO,13.31,22.72,1,0.16,6106,112.968606,122.827946,132.518754,138.874491,I,Above,Flat,0,NaN,,18.01685344,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9994,NJBF000081799,651 S MILL ROAD,Egg Harbor,NJ,39.42309854,-74.52518899,COM1,3001,951,NaN,ME,1969,0,3401,1,1,56866.36453,56866.36453,3507,NO,18.19,28.21,1,2.82,6112,111.961776,121.847437,131.444271,137.605399,I,Above,Flat,0,NaN,,23.20111529,0,0,,,,1,1,,1,nav,1,1969,1,, 9995,NJBF000073121,8029 BLACK HORSE PIKE,Egg Harbor,NJ,39.37794072,-74.49089143,COM1,3003,530,NaN,ME,1969,0,3401,2,1,66732.37376,66732.37376,3507,NO,22.49,33.17,1,1.08,6106,113.078652,122.922847,132.620576,138.987644,I,Above,Flat,0,NaN,,27.8309865,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9996,NJBF000073112,8029 BLACK HORSE PIKE,Egg Harbor,NJ,39.37776946,-74.49144781,COM1,3003,530,NaN,ME,1969,0,3401,1,1,686.1996543,686.1996543,3507,NO,18.7,32.14,1,2.84,6106,113.068148,122.914706,132.611873,138.980022,I,Above,Gable,0,NaN,,25.42030865,0,0,,,,1,1,,0.03,nav,1,1969,1,, 9997,NJBF000052255,,Egg Harbor,NJ,39.31366166,-74.57652422,RES1,3001,,NaN,NE,1969,0,3102,2,1,2475.659804,2475.659804,3507,NO,39.34,46.3,1,2.54,6106,112.111865,122.14399,131.818437,138.221783,I,Above,Flat,0,5701,,42.81990912,0,0,,,,1,1,,0.03,nav,1,1969,2,, 9998,NJBF000074277,200 TOLEDO AVENUE,Egg Harbor,NJ,39.3857053,-74.512656,RES1,3001,,16,NE,1962,1962,3102,1,1,813.3535416,813.3535416,3505,NO,13.23,23.47,3,2.45,6106,112.5172,122.453136,132.117957,138.447443,I,Above,Flat,0,5701,,18.34922368,0,0,,,,1,1,,0.03,nav,1,1962,1,, 9999,NJBF000074024,1512 BAY DRIVE,Egg Harbor,NJ,39.38452478,-74.5083671,RES3C,3001,,16,E,1930,1930,3303,2,1,1952.014928,1952.014928,3507,NO,24.02,38.06,1,2.51,6106,112.623836,122.541563,132.212369,138.549616,I,Above,Gable,0,NaN,,31.03801129,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 10000,NJBF000074070,205 NAPLES AVENUE,Egg Harbor,NJ,39.38472447,-74.50829782,RES3C,3001,,16,E,1992,1992,3303,1,1,2166.638886,2166.638886,3507,NO,14.88,28.69,1,2.86,6106,112.623426,122.540689,132.211351,138.547759,I,Above,Flat,0,NaN,,21.785281,0,0,,,,1,1,,0.03,nav,1,1992,1,, 10001,NJBF000073256,325 SANDERLING LANE,Egg Harbor,NJ,39.3793704,-74.49326937,RES3C,3001,,NaN,E,1969,0,3303,4,1,8549.257615,8549.257615,3507,NO,52.36,61.32,1,2.55,6106,113.010913,122.865106,132.558675,138.920217,I,Above,Hip,0,NaN,,56.83855858,0,0,,,,1,1,,0.03,nav,1,1969,4,, 10002,NJBF000073196,325 SANDERLING LANE,Egg Harbor,NJ,39.37884254,-74.4936334,RES3C,3001,,NaN,E,1969,0,3303,3,1,8393.168973,8393.168973,3507,NO,41.44,55.7,1,0.14,6106,113.008385,122.864198,132.557761,138.921862,I,Above,Gable,0,NaN,,48.57171006,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10003,NJBF000073152,325 SANDERLING LANE,Egg Harbor,NJ,39.37831249,-74.493988,RES3C,3001,,NaN,E,1969,0,3303,3,1,8190.385668,8190.385668,3507,NO,48.62,56.19,1,1.37,6106,113.006116,122.863496,132.557069,138.923738,I,Above,Gable,0,NaN,,52.40379608,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10004,NJBF000073125,325 SANDERLING LANE,Egg Harbor,NJ,39.37799299,-74.49420699,RES3C,3001,,NaN,E,1969,0,3303,3,1,8381.397481,8381.397481,3507,NO,54.91,60.56,1,-0.29,6106,113.004634,122.862974,132.556545,138.924757,I,Above,Hip,0,NaN,,57.73677661,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10005,NJBF000073291,325 SANDERLING LANE,Egg Harbor,NJ,39.379611,-74.4948855,RES3C,3001,,NaN,E,1969,0,3303,4,1,10448.97781,10448.97781,3507,NO,77.17,92.13,1,2.46,6106,112.972596,122.833659,132.525022,138.885984,I,Above,Hip,0,NaN,,84.65337494,0,0,,,,1,1,,0.03,nav,1,1969,4,, 10006,NJBF000073086,325 SANDERLING LANE,Egg Harbor,NJ,39.37745578,-74.49379968,RES3C,3001,,NaN,E,1969,0,3303,3,1,811.1860997,811.1860997,3507,NO,44.69,55.41,1,-0.75,6106,113.019357,122.875964,132.570476,138.94104,I,Above,Flat,0,NaN,,50.05194491,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10007,NJBF000073669,7079 BLACK HORSE PIKE,Egg Harbor,NJ,39.38240006,-74.50233917,COM1,3003,530,NaN,ME,1969,0,3401,3,1,10857.50603,10857.50603,3507,NO,54.19,68.16,1,1.22,6106,112.778703,122.671141,132.351003,138.69969,I,Above,Flat,0,NaN,,61.17374114,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10008,NJBF000073411,8010 BLACK HORSE PIKE,Egg Harbor,NJ,39.38050549,-74.49393026,COM1,3003,530,NaN,ME,1969,0,3401,1,1,4278.189215,4278.189215,3507,NO,19.93,32.59,1,0.93,6106,112.984441,122.841236,132.533003,138.889572,I,Above,Flat,0,NaN,,26.25707412,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10009,NJBF000082289,64 ABLES RUN DRIVE,Egg Harbor,NJ,39.42865815,-74.52403567,RES1,3001,,37,NE,2006,2006,3102,2,1,3807.419873,3807.419873,3505,NO,28.76,34.77,3,2.13,6112,111.953784,121.810714,131.402058,137.540166,I,Above,Hip,0,5701,,31.76511414,0,0,,,,1,1,,0.03,nav,1,2006,2,, 10010,NJBF000082369,78 ABLES RUN DRIVE,Egg Harbor,NJ,39.42930872,-74.52373877,RES1,3001,,37,NE,2008,2008,3102,2,1,5777.581721,5777.581721,3505,NO,28.12,34.71,3,4.59,6112,111.956231,121.809202,131.400218,137.535744,I,Above,Hip,0,5701,,31.41473406,0,0,,,,1,1,,0.35,nav,1,2008,2,, 10011,NJBF000082192,399 S MILL ROAD,Egg Harbor,NJ,39.42767314,-74.52310062,COM1,3001,,NaN,ME,1969,0,3401,1,1,1012.453867,1012.453867,3507,NO,19.98,34.8,1,0.85,6112,111.978474,121.836902,131.430951,137.574239,I,Above,Gable,0,NaN,,27.3863158,0,0,,,,1,1,,1,nav,1,1969,1,, 10012,NJBF000081980,115 HOLLY ROAD,Egg Harbor,NJ,39.42503504,-74.51973238,RES1,3001,,17,NE,1944,1944,3102,1,2,1080.235383,1080.235383,3505,NO,24.57,30.8,3,8.46,6112,112.063281,121.922196,131.524865,137.682449,I,Above,Gable,0,5701,,27.6847579,0,0,,,,1,1,,0.35,nav,1,1944,1,, 10013,NJBF000081928,127 HOLLY ROAD,Egg Harbor,NJ,39.42461984,-74.51866633,RES1,3001,,13,NE,1920,1920,3102,1,1,836.5205449,836.5205449,3505,NO,21.74,30.39,3,3.4,6112,112.087856,121.944956,131.549817,137.709996,I,Above,Gable,0,5701,,26.06564672,0,0,,,,1,1,,0.35,nav,1,1920,1,, 10014,NJBF000082137,400 & 408 S MILL RD,Egg Harbor,NJ,39.42691131,-74.52146454,RES1,3001,,17,NE,1940,1940,3102,2,3,1094.662624,1094.662624,3505,NO,35.89,43.48,3,4.28,6106,112.016456,121.872976,131.470558,137.618603,I,Above,Gable,0,5701,,39.68847239,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10015,NJBF000073311,8018 BLACK HORSE PIKE,Egg Harbor,NJ,39.37974809,-74.49229642,COM1,3003,530,NaN,ME,1969,0,3401,3,1,3141.013628,3141.013628,3507,NO,34.11,39.13,1,0.34,6106,113.028493,122.878495,132.572963,138.932366,I,Above,Flat,0,NaN,,36.62060164,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10016,NJBF000073992,7070 BLACK HORSE PIKE,Egg Harbor,NJ,39.38434273,-74.50331743,COM1,3003,530,NaN,ME,1969,0,3401,2,1,5977.672115,5977.672115,3507,NO,29.26,34.87,1,2.45,6106,112.737626,122.633198,132.309942,138.649769,I,Above,Flat,0,NaN,,32.06399194,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10017,NJBF000074196,7051 BLACK HORSE PIKE,Egg Harbor,NJ,39.38533696,-74.50819043,RES3C,3001,,16,E,1945,1945,3303,2,2,2715.424365,2715.424365,3507,NO,33.51,46.26,1,0.99,6106,112.619863,122.536144,132.206245,138.540016,I,Above,Flat,0,NaN,,39.88812905,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 10018,NJBF000073855,7078 BLACK HORSE PIKE,Egg Harbor,NJ,39.38358019,-74.50170076,COM1,3003,530,NaN,ME,1969,0,3401,3,1,4319.83453,4319.83453,3507,NO,46.12,51.2,1,-0.69,6106,112.781014,122.670019,132.349445,138.692937,I,Above,Flat,0,NaN,,48.65974255,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10019,NJBF000066172,1110 LAKESIDE DRIVE,Egg Harbor,NJ,39.3491135,-74.591422,RES1,3001,,16,NE,1969,1969,3101,1,1,691.2699404,691.2699404,3505,NO,12.2,19.71,3,-2.56,6106,111.200864,121.471234,131.172751,137.408297,I,Above,Gable,0,5701,,15.95326295,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 10020,NJBF000053103,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31871287,-74.63438312,RES1,3001,,NaN,NE,1969,0,3101,1,1,1393.999327,1393.999327,3505,NO,16.02,28.64,3,5.46,6106,111.022351,121.115467,130.836271,136.963068,I,Above,Hip,0,5701,,22.3306283,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10021,NJBF000053014,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31825706,-74.63521972,RES1,3001,,NaN,NE,1969,0,3101,1,1,1678.801176,1678.801176,3505,NO,22.12,32.5,3,6.84,6106,111.018676,121.107989,130.828354,136.952437,I,Above,Gable,0,5701,,27.30961264,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10022,NJBF000052919,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31777933,-74.63460544,RES1,3001,,NaN,NE,1969,0,3101,1,1,1530.592961,1530.592961,3505,NO,23.03,28.07,3,7.5,6106,111.036178,121.124159,130.842818,136.972037,I,Above,Flat,0,5701,,25.55022208,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10023,NJBF000052901,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31771033,-74.6334575,RES1,3001,,NaN,NE,1969,0,3101,1,1,1799.864762,1799.864762,3505,NO,16.89,28.78,3,4.11,6106,111.053973,121.143527,130.861081,136.996661,I,Above,Flat,0,5701,,22.83618319,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10024,NJBF000052877,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3175965,-74.6336055,RES1,3001,,NaN,NE,1969,0,3101,1,1,1487.836511,1487.836511,3505,NO,22.51,29.67,3,8.76,6106,111.053891,121.142626,130.86002,136.995249,I,Above,Flat,0,5701,,26.08582641,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10025,NJBF000053338,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31956648,-74.63344508,RES1,3001,,NaN,NE,1969,0,3101,1,1,1766.903421,1766.903421,3505,NO,22.48,31.49,3,7.65,6106,111.020274,121.11943,130.841503,136.970025,I,Above,Flat,0,5701,,26.98273092,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10026,NJBF000053113,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,,NaN,NE,1969,0,3101,1,1,1334.547211,1334.547211,3505,NO,21.58,33.22,3,5.78,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,27.39819323,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10027,NJBF000053052,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.318446,-74.632731,RES1,3001,,NaN,NE,1969,0,3101,1,1,1470.094626,1470.094626,3505,NO,21.11,35.08,3,4.16,6106,111.051084,121.145613,130.864365,137.000975,I,Above,Flat,0,5701,,28.0972281,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10028,NJBF000052908,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3177356,-74.63416477,RES1,3001,,NaN,NE,1969,0,3101,1,1,1069.094238,1069.094238,3505,NO,15.6,29.17,3,0.49,6106,111.043289,121.131801,130.849995,136.981723,I,Above,Flat,0,5701,,22.38679071,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10029,NJBF000053216,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31912918,-74.63390977,RES1,3001,,NaN,NE,1969,0,3101,1,1,1649.052552,1649.052552,3505,NO,22.69,35.99,3,3.2,6106,111.021558,121.117639,130.839061,136.966781,I,Above,Flat,0,5701,,29.33761804,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10030,NJBF000052982,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31811394,-74.63348477,RES1,3001,,NaN,NE,1969,0,3101,1,1,812.687805,812.687805,3505,NO,20.05,34.86,3,4.73,6106,111.046213,121.137793,130.856367,136.990252,I,Above,Gable,0,5701,,27.45522809,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10031,NJBF000052866,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31754485,-74.63404279,RES1,3001,,NaN,NE,1969,0,3101,1,1,2015.223973,2015.223973,3505,NO,20.69,28.42,3,6.17,6106,111.048526,121.136274,130.853891,136.987002,I,Above,Flat,0,5701,,24.55817934,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10032,NJBF000053071,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3185407,-74.63259154,RES1,3001,,NaN,NE,1969,0,3101,1,1,1605.686036,1605.686036,3505,NO,16.15,22.27,3,-2.05,6106,111.051368,121.146616,130.865479,137.002463,I,Above,Flat,0,5701,,19.21305993,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10033,NJBF000052912,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.317761,-74.633832,RES1,3001,,NaN,NE,1969,0,3101,1,1,1415.912076,1415.912076,3505,NO,16.36,24.76,3,-1.08,6106,111.047636,121.136833,130.854819,136.988219,I,Above,Flat,0,5701,,20.56110144,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10034,NJBF000052893,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3176715,-74.6339265,RES1,3001,,NaN,NE,1969,0,3101,1,1,807.6937705,807.6937705,3505,NO,24.04,36.65,3,4.77,6106,111.047886,121.136472,130.854313,136.987552,I,Above,Flat,0,5701,,30.34507721,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10035,NJBF000052964,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31799565,-74.63392236,RES1,3001,,NaN,NE,1969,0,3101,1,1,1873.212698,1873.212698,3505,NO,15.68,24.64,3,0.47,6106,111.042054,121.132299,130.850942,136.98296,I,Above,Flat,0,5701,,20.15577513,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10036,NJBF000053130,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31881534,-74.63301452,RES1,3001,,NaN,NE,1969,0,3101,1,1,1629.833622,1629.833622,3505,NO,20.55,32.14,3,2.52,6106,111.040218,121.136198,130.856085,136.989777,I,Above,Gable,0,5701,,26.3448057,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10037,NJBF000053100,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31870565,-74.63313951,RES1,3001,,NaN,NE,1969,0,3101,1,1,1595.486994,1595.486994,3505,NO,15.64,25.96,3,1.81,6106,111.040399,121.135605,130.855335,136.988781,I,Above,Flat,0,5701,,20.80233473,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10038,NJBF000052995,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31815902,-74.63374635,RES1,3001,,NaN,NE,1969,0,3101,1,1,1392.72215,1392.72215,3505,NO,20.68,35.31,3,6.46,6106,111.041621,121.132996,130.851897,136.984224,I,Above,Flat,0,5701,,27.99542569,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10039,NJBF000053392,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31975793,-74.63328664,RES1,3001,,NaN,NE,1969,0,3101,1,1,1970.807129,1970.807129,3505,NO,20.92,27.73,3,8.37,6106,111.019043,121.119475,130.841868,136.970496,I,Above,Gable,0,5701,,24.32738209,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10040,NJBF000052987,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.318128,-74.633034,RES1,3001,,NaN,NE,1969,0,3101,1,1,1464.951593,1464.951593,3505,NO,12.71,18.84,3,-2.44,6106,111.052492,121.144884,130.863117,136.99934,I,Above,Gable,0,5701,,15.77193053,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10041,NJBF000052946,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.317912,-74.6345105,RES1,3001,,NaN,NE,1969,0,3101,1,1,1017.160509,1017.160509,3505,NO,14.65,27.77,3,2.11,6106,111.035107,121.123923,130.842839,136.972045,I,Above,Hip,0,5701,,21.2096923,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10042,NJBF000053067,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31851704,-74.63464607,RES1,3001,,NaN,NE,1969,0,3101,1,1,1143.783992,1143.783992,3505,NO,13.69,21.22,3,1.67,6106,111.022152,121.113804,130.834343,136.960492,I,Above,Hip,0,5701,,17.45562649,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10043,NJBF000053155,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31892014,-74.63292133,RES1,3001,,NaN,NE,1969,0,3101,1,1,910.3560993,910.3560993,3505,NO,19.26,26.7,3,2.05,6106,111.039661,121.136343,130.856403,136.990192,I,Above,Gable,0,5701,,22.98305015,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10044,NJBF000053042,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31839356,-74.633532,RES1,3001,,NaN,NE,1969,0,3101,1,1,1245.953007,1245.953007,3505,NO,25.03,34.57,3,7.05,6106,111.040425,121.133365,130.852666,136.985227,I,Above,Flat,0,5701,,29.79885911,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10045,NJBF000053138,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3188545,-74.6322805,RES1,3001,,NaN,NE,1969,0,3101,1,1,871.5640371,871.5640371,3505,NO,17.96,27.97,3,-0.39,6106,111.050168,121.147557,130.866906,137.004342,I,Above,Gable,0,5701,,22.96550372,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10046,NJBF000052967,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31802296,-74.63436352,RES1,3001,,NaN,NE,1969,0,3101,1,1,1315.914318,1315.914318,3505,NO,16.46,28.75,3,-1.04,6106,111.035198,121.124829,130.843903,136.973464,I,Above,Flat,0,5701,,22.6019955,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10047,NJBF000052853,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3174912,-74.63371391,RES1,3001,,NaN,NE,1969,0,3101,1,1,1463.6191,1463.6191,3505,NO,13.22,18.97,3,-2.86,6106,111.054261,121.142278,130.859496,136.99456,I,Above,Hip,0,5701,,16.0937337,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10048,NJBF000053062,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31848613,-74.63501194,RES1,3001,,NaN,NE,1969,0,3101,1,1,1869.8062,1869.8062,3505,NO,16.01,24.67,3,4.25,6106,111.017479,121.108323,130.829091,136.9534,I,Above,Gable,0,5701,,20.3382013,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10049,NJBF000062311,15 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33920979,-74.6420152,RES1,3001,,15,NE,1950,1950,3101,1,1,1214.158787,1214.158787,3505,NO,15.51,30.31,3,-1.16,6106,110.546071,120.728062,130.502178,136.504462,I,Above,Gable,0,5701,,22.90965231,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10050,NJBF000063403,10 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34161904,-74.59457691,RES1,3001,,16,NE,1990,1990,3102,2,1,2433.493252,2433.493252,3507,NO,32.23,39.29,1,-0.3,6112,111.266402,121.501706,131.207596,137.453328,I,Above,Gable,0,5701,,35.75842341,0,0,,,,1,1,,0.35,nav,1,1990,2,, 10051,NJBF000062278,20 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33913799,-74.64275973,RES1,3001,,16,NE,1940,1940,3101,1,1,809.5740804,809.5740804,3505,NO,8.67,16.05,3,-2.67,6106,110.538234,120.716652,130.491963,136.490082,I,Above,Flat,0,5701,,12.35748766,0,0,,,,1,1,,0.03,nav,1,1940,1,, 10052,NJBF000063140,1622 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3409674,-74.64799127,IND2,3001,737,NaN,ME,1969,0,3401,2,1,5626.890429,5626.890429,3507,NO,25.74,40.4,1,-0.97,6106,110.444141,120.60779,130.395696,136.354446,I,Above,Gable,0,NaN,,33.07236531,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10053,NJBF000065846,1115 LAKESIDE DRIVE,Egg Harbor,NJ,39.34826644,-74.59130785,RES1,3001,,16,NE,1969,1969,3101,2,1,2165.440378,2165.440378,3505,NO,33.94,47.11,3,-0.07,6106,111.217449,121.482647,131.184362,137.423238,I,Above,Hip,0,5701,,40.52918004,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10054,NJBF000065659,5 CARANN LANE,Egg Harbor,NJ,39.34774235,-74.58953855,RES1,3001,,16,NE,1975,1975,3101,2,1,1738.710358,1738.710358,3505,NO,33.24,46.55,3,-1.42,6112,111.262779,121.518945,131.219087,137.467734,I,Above,Gable,0,5701,,39.89433741,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 10055,NJBF000070645,677 ZION ROAD,Egg Harbor,NJ,39.36777836,-74.58138079,RES1,3001,569,NaN,NE,1940,0,3101,1,1,1605.905453,1605.905453,3507,NO,11.32,21.21,1,-0.44,6110,111.148185,121.443332,131.117694,137.335603,I,Above,Gable,0,5701,,16.26386674,0,0,,,,1,1,,0.35,nav,1,1940,1,, 10056,NJBF000057264,135 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33025353,-74.6487969,RES1,3001,,16,NE,1994,1994,3102,2,1,2930.49288,2930.49288,3505,NO,35.66,45.36,3,6.95,6110,110.622822,120.732839,130.497719,136.496465,I,Above,Gable,0,5701,,40.50969779,0,1.2,,,,1,1,,0.35,nav,1,1994,2,, 10057,NJBF000069400,1325 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36011579,-74.70786605,IND2,3002,,16,ME,1998,1998,3401,2,1,8504.910948,8504.910948,3507,NO,37.2,44.25,1,0.49,6112,109.671858,119.5953,129.385413,134.830677,I,Above,Hip,0,5701,,40.72556418,0,0,,,,1,1,,1,nav,1,1998,2,, 10058,NJBF000068514,1335 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35697466,-74.70722294,RES1,3001,,16,NE,2006,2006,3101,2,1,2372.743178,2372.743178,3507,NO,37.14,50.75,1,-0.45,6112,109.709759,119.632442,129.423906,134.891005,I,Above,Flat,0,5701,,43.94562371,0,0,,,,1,1,,0.35,nav,1,2006,2,, 10059,NJBF000065371,105 BAKER PLACE ROAD,Egg Harbor,NJ,39.34688267,-74.66356656,RES1,3001,,16,NE,2004,2004,3101,2,1,2901.023956,2901.023956,3507,NO,40.09,54.36,1,2.63,6110,110.187587,120.27986,130.110332,135.943279,I,Above,Gable,0,5701,,47.22836254,0,0,,,,1,1,,0.35,nav,1,2004,2,, 10060,NJBF000061991,105 LAUTOKA DRIVE,Egg Harbor,NJ,39.33860078,-74.63971197,RES1,3001,,16,NE,1965,1965,3101,1,1,1321.969256,1321.969256,3505,NO,8.84,13.91,3,-1.68,6110,110.585912,120.773685,130.542825,136.561245,I,Above,Gable,0,5701,,11.37879592,0,0,,,,1,1,,0.35,nav,1,1965,1,, 10061,NJBF000066898,8058 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35119727,-74.66989587,RES1,3001,,16,NE,1880,1880,3102,2,1,1511.334936,1511.334936,3505,NO,28.7,36.03,3,4.42,6106,110.068357,120.1232,129.977324,135.74753,I,Above,Gable,0,5701,,32.36466062,0,0,,,,1,1,,0.03,nav,1,1880,2,, 10062,NJBF000053533,82 SOMERS AVENUE,Egg Harbor,NJ,39.32029,-74.638626,RES1,3001,,16,NE,1962,1962,3102,1,1,932.6382342,932.6382342,3505,NO,15.82,23.05,3,0.39,6106,110.933883,121.026594,130.755036,136.852681,I,Above,Gable,0,5701,,19.43450905,0,0,,,,1,1,,0.03,nav,1,1962,1,, 10063,NJBF000054537,1756 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32366844,-74.63815586,RES1,3001,,16,NE,2005,2005,3102,2,1,2470.083657,2470.083657,3505,NO,44.04,55.43,3,8.14,6106,110.879056,120.989772,130.726241,136.813117,I,Above,Gable,0,5701,,49.73491095,0,0,,,,1,1,,0.03,nav,1,2005,2,, 10064,NJBF000069509,1357 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36104786,-74.69423857,RES1,3001,,16,NE,1997,1997,3101,1,1,2560.801222,2560.801222,3507,NO,19.65,33.04,1,2.03,6112,109.759619,119.735506,129.551441,135.096695,I,Above,Gable,0,5701,,26.34502329,0,0,,,,1,1,,0.35,nav,1,1997,1,, 10065,NJBF000070982,,Egg Harbor,NJ,39.36904335,-74.71620693,RES1,3001,,NaN,NE,1969,0,3101,1,1,1228.125973,1228.125973,3507,NO,13.27,27.86,1,0.15,6106,109.527073,119.424037,129.195492,134.526015,I,Above,Hip,0,5701,,20.56528088,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10066,NJBF000064268,8 MICHAL DRIVE,Egg Harbor,NJ,39.34405868,-74.63884879,RES1,3001,,16,NE,1980,1980,3101,1,1,1312.345131,1312.345131,3505,NO,16.13,23.33,3,0.8,6112,110.497008,120.722079,130.496457,136.498098,I,Above,Gable,0,5701,,19.73237826,0,0,,,,1,1,,0.35,nav,1,1980,1,, 10067,NJBF000071151,1239 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36958774,-74.70846512,RES1,3001,,15,NE,1948,1948,3101,1,1,1192.692637,1192.692637,3507,NO,13.18,24.45,1,-0.35,6110,109.575259,119.503888,129.286556,134.676133,I,Above,Gable,0,5701,,18.81259358,0,0,,,,1,1,,0.35,nav,1,1948,1,, 10068,NJBF000071926,1221 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37201315,-74.71133964,RES1,3001,,16,NE,1940,1940,3101,1,1,2215.22093,2215.22093,3507,NO,14,23.56,1,0.06,6110,109.533969,119.451567,129.227457,134.580878,I,Above,Hip,0,5701,,18.77845762,0,0,,,,1,1,,0.35,nav,1,1940,1,, 10069,NJBF000064551,1579 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34476713,-74.65560397,RES1,3001,,16,NE,2007,2007,3101,2,1,1966.302169,1966.302169,3507,NO,22.51,32.24,1,-0.71,6110,110.298016,120.435704,130.245407,136.139951,I,Above,Flat,0,5701,,27.37538309,0,1.1,,,,1,1,,0.35,nav,1,2007,2,, 10070,NJBF000074040,1141 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38457492,-74.71585423,RES1,3001,,15,NE,1900,1900,3102,2,1,848.2173929,848.2173929,3507,NO,38.06,47.65,1,-0.05,6112,109.404261,119.298276,129.052742,134.30014,I,Above,Gable,0,5701,,42.85312078,0,0,,,,1,1,,0.35,nav,1,1900,2,, 10071,NJBF000056435,3 PROSPECT AVENUE,Egg Harbor,NJ,39.32846345,-74.64821327,RES1,3001,,16,NE,1978,1978,3102,1,1,3973.264239,3973.264239,3505,NO,21.76,29.14,3,3.34,6106,110.661587,120.765803,130.525237,136.534948,I,Above,Gable,0,5701,,25.44813992,0,1.2,,,,1,1,,0.03,nav,1,1978,1,, 10072,NJBF000075674,1105 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39067049,-74.71718699,RES1,3001,,16,NE,1950,1950,3102,1,1,1029.817053,1029.817053,3507,NO,15.19,28.62,1,-0.09,6106,109.35418,119.234898,128.979362,134.181565,I,Above,Gable,0,5701,,21.90446695,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10073,NJBF000075634,1105 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.390567,-74.716942,RES1,3001,,16,NE,1950,1950,3102,1,1,644.5527161,644.5527161,3507,NO,10.3,21.74,1,-0.35,6112,109.356499,119.238473,128.98325,134.188084,I,Above,Gable,0,5701,,16.02088187,0,0,,,,1,1,,0.35,nav,1,1950,1,, 10074,NJBF000063592,213 ROSEMARIE DRIVE,Egg Harbor,NJ,39.3421299,-74.59852568,RES1,3001,,16,NE,1965,1965,3102,2,1,2504.392338,2504.392338,3507,NO,29.15,39.76,1,0.78,6112,111.180323,121.428138,131.138323,137.363877,I,Above,Gable,0,5701,,34.45510209,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 10075,NJBF000077818,1025 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40102542,-74.71632429,RES1,3001,,16,NE,1979,1979,3102,2,1,1698.76841,1698.76841,3507,NO,35.34,43.28,1,-0.86,6106,109.299912,119.164097,128.89267,134.043642,I,Above,Hip,0,5701,,39.30963996,0,0,,,,1,1,,0.03,nav,1,1979,2,, 10076,NJBF000063409,204 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34164295,-74.59736948,RES1,3001,,16,NE,1969,1969,3102,2,1,2654.892532,2654.892532,3507,NO,30.92,37.8,1,2.55,6110,111.211421,121.453553,131.162398,137.395039,I,Above,Hip,0,5701,,34.35617148,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10077,NJBF000070100,3414 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36581331,-74.58108232,RES1,3001,,16,NE,1912,1912,3101,2,1,3375.376583,3375.376583,3507,NO,34.1,42.11,1,1.69,6110,111.179094,121.469023,131.145981,137.371788,I,Above,Hip,0,5701,,38.1018588,0,1.2,,,,1,1,,0.35,nav,1,1912,2,, 10078,NJBF000070148,3414 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36601723,-74.58118761,RES1,3001,,16,NE,1912,1912,3101,2,1,669.9368781,669.9368781,3507,NO,31.47,46.41,1,2.54,6110,111.174141,121.46506,131.141815,137.366481,I,Above,Gable,0,5701,,38.93757214,0,1.2,,,,1,1,,0.03,nav,1,1912,2,, 10079,NJBF000063200,38 VELLA LA VELLA LANE,Egg Harbor,NJ,39.3411116,-74.64184197,RES1,3001,,16,NE,2014,2014,3101,2,1,1808.298094,1808.298094,3505,NO,38.37,46.15,3,0.64,6106,110.513842,120.707558,130.484226,136.479816,I,Above,Gable,0,5701,,42.25855043,0,0,,,,1,1,,0.03,nav,1,2014,2,, 10080,NJBF000068388,15 WILLOWBROOK LANE,Egg Harbor,NJ,39.35658571,-74.58079059,RES1,3001,,16,NE,1980,1980,3101,2,1,2852.167096,2852.167096,3507,NO,21.97,31.31,1,0.25,6112,111.311268,121.572446,131.259583,137.51749,I,Above,Gable,0,5701,,26.63931609,0,1.2,,,,1,1,,0.35,nav,1,1980,2,, 10081,NJBF000076502,1085 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39366412,-74.71714525,RES1,3001,,16,NE,1960,1960,3102,1,1,1931.609183,1931.609183,3507,NO,18.27,23.3,1,2.14,6106,109.335842,119.211873,128.951786,134.137487,I,Above,Gable,0,5701,,20.78358837,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 10082,NJBF000064576,1581 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3448295,-74.654637,RES1,3001,219,NaN,NE,1969,0,3101,1,1,548.6627689,548.6627689,3507,NO,13.96,27.06,1,2.44,6112,110.306799,120.450756,130.258572,136.159058,I,Above,Flat,0,5701,,20.50881881,0,0,,,,1,1,,0.35,nav,1,1969,1,, 10083,NJBF000062342,284 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1974,3102,2,1,2983.257813,2983.257813,3505,NO,20.78,26.36,3,-1.21,6112,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,23.57136936,0,0,,,,1,1,,0.35,nav,1,1993,2,, 10084,NJBF000057835,1720 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33021668,-74.64166888,RES1,3001,,16,NE,1930,1968,3102,2,1,1280.691557,1280.691557,3505,NO,42.38,56.04,3,5.61,6106,110.713153,120.847789,130.603714,136.644489,I,Above,Gable,0,5701,,49.20853845,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 10085,NJBF000057868,1720 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33021668,-74.64166888,RES1,3001,,16,NE,1930,1968,3102,2,1,1592.112459,1592.112459,3505,NO,33.78,40.36,3,1.02,6106,110.713153,120.847789,130.603714,136.644489,I,Above,Gable,0,5701,,37.07371293,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 10086,NJBF000071097,1239 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36940246,-74.70826038,RES1,3001,,15,NE,1948,1948,3101,1,1,1155.480569,1155.480569,3507,NO,14.17,22.07,1,1.8,6112,109.578364,119.507739,129.290913,134.683126,I,Above,Hip,0,5701,,18.12171072,0,0,,,,1,1,,0.35,nav,1,1948,1,, 10087,NJBF000066259,1109 FURMAN DRIVE,Egg Harbor,NJ,39.34931795,-74.59180331,RES1,3001,,16,NE,1969,1969,3101,2,1,1923.900652,1923.900652,3505,NO,33.6,39.38,3,4.02,6110,111.18957,121.462411,131.164238,137.397355,I,Above,Hip,0,5701,,36.48892957,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10088,NJBF000066170,1111 FURMAN DRIVE,Egg Harbor,NJ,39.34910258,-74.59199069,RES1,3001,,16,NE,1969,1969,3101,1,1,2363.925233,2363.925233,3505,NO,24.94,35.36,3,5.81,6110,111.189295,121.461569,131.163676,137.396641,I,Above,Gable,0,5701,,30.14828977,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10089,NJBF000064581,124 WHARF ROAD,Egg Harbor,NJ,39.344836,-74.671617,RES1,3001,,16,NE,1976,1976,3102,2,1,1655.569306,1655.569306,3505,NO,38.04,45.6,3,0.03,6106,110.145234,120.18423,130.019242,135.807259,I,Above,Gable,0,5701,,41.82035438,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 10090,NJBF000062122,110 LAUTOKA DRIVE,Egg Harbor,NJ,39.33883283,-74.63885367,RES1,3001,,16,NE,1950,1950,3101,1,1,1210.464438,1210.464438,3505,NO,14.94,29.45,3,-1.03,6106,110.592602,120.785048,130.553055,136.5756,I,Above,Gable,0,5701,,22.19499374,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10091,NJBF000061866,5001 OCEAN HTS AVENUE,Egg Harbor,NJ,39.33839448,-74.59845342,COM3,3001,999,NaN,ME,1969,0,3401,1,1,1604.064584,1604.064584,3507,NO,15.15,28.26,1,1.69,6106,111.249028,121.472577,131.181805,137.4201,I,Above,Hip,0,NaN,,21.70750352,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10092,NJBF000061783,5001 OCEAN HTS AVENUE,Egg Harbor,NJ,39.338251,-74.599117,COM3,3001,999,NaN,ME,1969,0,3401,1,1,1507.998564,1507.998564,3507,NO,14.02,26.7,1,1.04,6106,111.239015,121.462888,131.172775,137.408419,I,Above,Flat,0,NaN,,20.36168635,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10093,NJBF000066349,1107 FURMAN DRIVE,Egg Harbor,NJ,39.34953287,-74.59161524,RES1,3001,,16,NE,1969,1969,3101,1,1,2107.930405,2107.930405,3505,NO,18.91,27.48,3,8.06,6112,111.189861,121.463256,131.164799,137.398068,I,Above,Gable,0,5701,,23.19871737,0,0,,,,1,1,,0.35,nav,1,1969,1,, 10094,NJBF000062998,114 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34066544,-74.61136286,RES1,3001,,16,NE,1976,1976,3102,2,1,3131.991013,3131.991013,3505,NO,28.69,34.6,3,4.83,6110,110.971401,121.225907,130.951781,137.118968,I,Above,Hip,0,5701,,31.64558981,0,1.2,,,,1,1,,0.35,nav,1,1976,2,, 10095,NJBF000062480,104 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.33956163,-74.64113134,RES1,3001,,16,NE,1990,1990,3101,1,1,1144.116677,1144.116677,3505,NO,16.81,24.41,3,-0.17,6106,110.550625,120.738341,130.511442,136.517572,I,Above,Gable,0,5701,,20.60772989,0,0,,,,1,1,,0.03,nav,1,1990,1,, 10096,NJBF000059234,1707 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3338245,-74.642908,RES1,3001,,16,NE,1950,1950,3102,1,1,2082.60835,2082.60835,3505,NO,27.43,34.29,3,8.31,6106,110.632138,120.781243,130.546763,136.565668,I,Above,Hip,0,5701,,30.86384891,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 10097,NJBF000063992,220 STEELMANVILLE ROAD,Egg Harbor,NJ,39.343293,-74.608226,RES1,3001,,16,NE,1925,1925,3102,1,1,636.938813,636.938813,3505,NO,10.32,22.2,3,-0.99,6112,110.977683,121.248973,130.97137,137.145366,I,Above,Gable,0,5701,,16.25953192,0,0,,,,1,1,,0.35,nav,1,1925,1,, 10098,NJBF000064095,220 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34356394,-74.60805917,RES1,3001,,16,NE,1925,1925,3102,1,1,1903.294595,1903.294595,3505,NO,25.27,39.97,3,8.61,6112,110.975649,121.248716,130.970934,137.144834,I,Above,Gable,0,5701,,32.61940509,0,0,,,,1,1,,0.35,nav,1,1925,1,, 10099,NJBF000064044,220 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34341615,-74.60815578,RES1,3001,,16,NE,1925,1925,3102,1,1,1609.959277,1609.959277,3505,NO,16.68,23.65,3,0.92,6112,110.976654,121.248757,130.971081,137.145004,I,Above,Gable,0,5701,,20.16322582,0,0,,,,1,1,,0.35,nav,1,1925,1,, 10100,NJBF000063903,5 OSPREY COURT,Egg Harbor,NJ,39.34303663,-74.60835127,RES1,3001,,16,NE,1993,1993,3102,2,1,2926.972962,2926.972962,3505,NO,37.77,43.17,3,7.91,6112,110.980205,121.24978,130.972295,137.146548,I,Above,Hip,0,5701,,40.4731518,0,0,,,,1,1,,0.35,nav,1,1993,2,, 10101,NJBF000062125,327 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1968,3102,1,1,1697.932525,1697.932525,3505,NO,11.16,21.03,3,-0.52,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,16.09718087,0,0,,,,1,1,,0.03,nav,1,1993,1,, 10102,NJBF000051601,108 MORRIS AVENUE,Egg Harbor,NJ,39.30890598,-74.63655782,RES1,3001,,17,NE,1960,1960,3102,1,1,1059.489122,1059.489122,3505,NO,9.74,17.06,3,-2.11,6106,111.168351,121.210614,130.906733,137.06006,I,Above,Gable,0,5701,,13.3987195,0,0,,,,1,1,,0.03,nav,1,1960,1,, 10103,NJBF000076497,1086 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39365079,-74.71573106,RES1,3001,,16,NE,1940,1940,3102,1,1,3066.884853,3066.884853,3507,NO,13.82,26.1,1,1.57,6106,109.345562,119.228034,128.968697,134.166364,I,Above,Gable,0,5701,,19.9572556,0,0,,,,1,1,,0.03,nav,1,1940,1,, 10104,NJBF000063315,11 DORATO DRIVE,Egg Harbor,NJ,39.34139338,-74.59963297,RES1,3001,,16,NE,1988,1988,3102,2,1,1982.249791,1982.249791,3507,NO,28.02,39.23,1,1.23,6112,111.172343,121.417652,131.128977,137.351724,I,Above,Gable,0,5701,,33.62953301,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 10105,NJBF000066064,155 BLACKMAN ROAD,Egg Harbor,NJ,39.34882923,-74.5900663,RES1,3001,,16,NE,1969,1969,3101,1,1,1993.062125,1993.062125,3505,NO,23.17,28.8,3,5.98,6112,111.233725,121.49774,131.198007,137.440687,I,Above,Gable,0,5701,,25.98496677,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10106,NJBF000066674,322 FRANK LANE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1423.859297,1423.859297,3505,NO,21.67,33.93,3,4.83,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,27.80008023,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 10107,NJBF000069211,113 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1970,3102,1,1,2856.908386,2856.908386,3505,NO,25.25,35.62,3,7.75,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,30.43507685,0,0,,,,1,1,,0.35,nav,1,1987,1,, 10108,NJBF000060746,1654 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33648744,-74.64387328,RES1,3001,,16,NE,1830,1830,3101,2,1,1602.554056,1602.554056,3505,NO,44.86,58.67,3,7.05,6106,110.572237,120.731593,130.503997,136.506299,I,Above,Gable,0,5701,,51.76364728,0,0,,,,1,1,,0.03,nav,1,1830,2,, 10109,NJBF000063361,1618 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34150393,-74.64853858,RES1,3001,,45,NE,1972,1972,3101,1,2,1909.631552,1909.631552,3507,NO,16.64,25.06,1,0.25,6112,110.428588,120.592103,130.381981,136.335093,I,Above,Gable,0,5701,,20.85016053,0,0,,,,1,1,,0.35,nav,1,1972,1,, 10110,NJBF000055657,23 SOMERS AVENUE,Egg Harbor,NJ,39.32667285,-74.64464327,RES1,3001,,16,NE,1989,1989,3102,1,1,2454.004902,2454.004902,3505,NO,25.12,36.19,3,7.77,6106,110.738464,120.846265,130.597082,136.635084,I,Above,Gable,0,5701,,30.65556362,0,0,,,,1,1,,0.03,nav,1,1989,1,, 10111,NJBF000064209,608 NATHAN LANE,Egg Harbor,NJ,39.34389469,-74.63963887,RES1,3001,,16,NE,1981,1981,3101,1,1,1681.32875,1681.32875,3505,NO,25.14,38.32,3,8.94,6110,110.490279,120.7108,130.486577,136.484142,I,Above,Gable,0,5701,,31.7304014,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10112,NJBF000064079,134 WHARF ROAD,Egg Harbor,NJ,39.34351134,-74.6719777,RES1,3001,,15,NE,1900,1900,3102,1,1,602.3911227,602.3911227,3505,NO,23.31,29.84,3,7.64,6112,110.161566,120.197569,130.027859,135.819615,I,Above,Gable,0,5701,,26.57457373,0,1.2,,,,1,1,,0.35,nav,1,1900,1,, 10113,NJBF000062763,110 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34017616,-74.61210879,RES1,3001,,16,NE,1984,1984,3102,2,1,2913.893661,2913.893661,3505,NO,38.47,48.8,3,5.25,6110,110.967699,121.218926,130.945603,137.11068,I,Above,Gable,0,5701,,43.63187807,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 10114,NJBF000066125,1104 JORENE DRIVE,Egg Harbor,NJ,39.3489875,-74.58710665,RES1,3001,,16,NE,1969,1969,3101,2,1,1683.067706,1683.067706,3505,NO,46.47,54.82,3,8.42,6110,111.292943,121.546941,131.244337,137.49979,I,Above,Gable,0,5701,,50.64414369,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10115,NJBF000075382,1109 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38969746,-74.71682413,RES1,3001,,16,NE,1975,1975,3102,1,1,2354.395673,2354.395673,3507,NO,18.65,28.27,1,2.46,6110,109.362908,119.246664,128.992832,134.203537,I,Above,Gable,0,5701,,23.45891174,0,1.2,,,,1,1,,0.35,nav,1,1975,1,, 10116,NJBF000053041,211 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32151783,-74.64972133,RES1,3001,,NaN,NE,1925,0,3102,2,1,691.5186256,691.5186256,3505,NO,21.77,34.46,3,0.74,6102,110.765075,120.834942,130.575881,136.605861,I,Above,Gable,0,5701,,28.11639932,0,0,,,,1,1,,0.03,nav,1,1925,2,, 10117,NJBF000063223,4041 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34116451,-74.6009954,RES1,3001,,16,NE,1929,1929,3102,1,1,1095.465895,1095.465895,3507,NO,18.54,33.52,1,0.29,6112,111.150587,121.396974,131.109821,137.326804,I,Above,Hip,0,5701,,26.03123601,0,0,,,,1,1,,0.35,nav,1,1929,1,, 10118,NJBF000062687,102 KATHYS LANE,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1920,3101,1,1,1181.551418,1181.551418,3505,NO,17.5,31.44,3,1.71,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,24.47036172,0,0,,,,1,1,,0.03,nav,1,1979,1,, 10119,NJBF000064912,177 BLACKMAN ROAD,Egg Harbor,NJ,39.34564925,-74.59289082,RES1,3001,,16,NE,1965,1965,3102,2,1,1332.137881,1332.137881,3505,NO,30.49,42.12,3,6.29,6112,111.229711,121.484802,131.188809,137.429058,I,Above,Gable,0,5701,,36.30583402,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 10120,NJBF000061638,13 GLEN AIRE DRIVE,Egg Harbor,NJ,39.33799665,-74.61540001,RES1,3001,,16,NE,2009,2009,3102,2,1,3065.197376,3065.197376,3505,NO,31.83,42.69,3,2.57,6112,110.953141,121.188718,130.918649,137.074426,I,Above,Hip,0,5701,,37.26049424,0,0,,,,1,1,,0.35,nav,1,2009,2,, 10121,NJBF000065737,,Egg Harbor,NJ,39.34795123,-74.67194211,RES1,3001,,NaN,NE,1969,0,3102,2,1,615.2741826,615.2741826,3505,NO,39.76,51.17,3,6.18,6112,110.09709,120.13606,129.982659,135.753878,I,Above,Hip,0,5701,,45.46915627,0,0,,,,1,1,,0.35,nav,1,1969,2,, 10122,NJBF000061587,19 OTTER LANE,Egg Harbor,NJ,39.33790497,-74.61314842,RES1,3001,,16,NE,2006,2006,3102,2,1,3913.410989,3913.410989,3505,NO,37.58,45.75,3,1.01,6112,110.992755,121.227974,130.954751,137.122488,I,Above,Gable,0,5701,,41.66624927,0,0,,,,1,1,,0.35,nav,1,2006,2,, 10123,NJBF000062191,11 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33896294,-74.64149987,RES1,3001,,15,NE,1950,1950,3101,1,1,2110.614569,2110.614569,3505,NO,20.68,26.65,3,6.95,6110,110.556902,120.739629,130.512445,136.518804,I,Above,Gable,0,5701,,23.66414657,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 10124,NJBF000060421,352 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1999,3102,2,1,3384.309605,3384.309605,3505,NO,30.73,41.2,3,5.82,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,35.96492905,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10125,NJBF000063272,9 DORATO DRIVE,Egg Harbor,NJ,39.34129053,-74.59895119,RES1,3001,,16,NE,1988,1988,3102,2,1,2312.740903,2312.740903,3507,NO,35.61,46.77,1,-0.11,6106,111.187235,121.430502,131.14104,137.367373,I,Above,Gable,0,5701,,41.18813757,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 10126,NJBF000064182,113 NANCY DRIVE,Egg Harbor,NJ,39.34379786,-74.59323046,RES1,3001,,16,NE,1975,1975,3102,1,1,2166.256838,2166.256838,3505,NO,18.21,26.28,3,3.53,6112,111.254943,121.499944,131.204505,137.449288,I,Above,Hip,0,5701,,22.24626657,0,1.2,,,,1,1,,0.35,nav,1,1975,1,, 10127,NJBF000060751,396 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33649188,-74.63735621,RES1,3001,,16,NE,1991,1991,3101,2,1,1805.42457,1805.42457,3505,NO,33.59,43.57,3,4.3,6106,110.655048,120.838799,130.600676,136.641294,I,Above,Gable,0,5701,,38.57895999,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 10128,NJBF000064708,618 NATHAN LANE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1981,3101,1,1,1531.38759,1531.38759,3505,NO,24.35,36.83,3,6.16,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,30.5872689,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10129,NJBF000054748,1761 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3242152,-74.6393016,RES1,3001,,16,NE,1964,1964,3102,1,1,857.7438894,857.7438894,3505,NO,8.89,23.56,3,-2.69,6106,110.85345,120.96416,130.703139,136.781458,I,Above,Gable,0,5701,,16.22892307,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 10130,NJBF000065306,102 BAKER PLACE ROAD,Egg Harbor,NJ,39.34669598,-74.66238034,RES1,3001,,16,NE,1978,1978,3101,1,1,1573.124285,1573.124285,3507,NO,14.33,19.77,1,2.62,6106,110.201477,120.301342,130.128976,135.97067,I,Above,Gable,0,5701,,17.05294499,0,1.2,,,,1,1,,0.03,nav,1,1978,1,, 10131,NJBF000065164,102 BAKER PLACE ROAD,Egg Harbor,NJ,39.34629219,-74.66280697,RES1,3001,,16,NE,1978,1978,3101,1,1,3881.336929,3881.336929,3507,NO,13.53,20.24,1,-0.83,6112,110.203742,120.299641,130.127199,135.967871,I,Above,Gable,0,5701,,16.88557801,0,1.2,,,,1,1,,0.35,nav,1,1978,1,, 10132,NJBF000058166,121 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33181795,-74.64591281,RES1,3001,,16,NE,1857,1857,3102,1,1,575.3395928,575.3395928,3505,NO,19.97,32.55,3,0.81,6106,110.630536,120.758474,130.523679,136.533064,I,Above,Gable,0,5701,,26.26352033,0,1.1,,,,1,1,,0.03,nav,1,1857,1,, 10133,NJBF000062258,10 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33909672,-74.61103161,RES1,3001,,16,NE,1982,1982,3102,2,1,2475.770667,2475.770667,3505,NO,34.07,48.32,3,2.26,6106,111.00665,121.249863,130.97452,137.148887,I,Above,Hip,0,5701,,41.19671705,0,1.2,,,,1,1,,0.03,nav,1,1982,2,, 10134,NJBF000066150,1108 FURMAN DRIVE,Egg Harbor,NJ,39.34905398,-74.59273645,RES1,3001,,16,NE,1969,1969,3101,2,1,2057.07291,2057.07291,3505,NO,28.3,41.31,3,-2.33,6110,111.174777,121.449304,131.152208,137.381893,I,Above,Gable,0,5701,,34.80177839,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10135,NJBF000069775,7101 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1995,3102,3,1,1611.881001,1611.881001,3505,NO,46.34,52.17,3,-2.77,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,49.25768716,0,0,,,,1,1,,0.35,nav,1,1987,3,, 10136,NJBF000069545,7115 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1985,3102,2,1,2243.915803,2243.915803,3505,NO,30.14,43.19,3,2.14,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,36.66488686,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10137,NJBF000066088,9 BONNIE DRIVE,Egg Harbor,NJ,39.34887746,-74.59459367,RES1,3001,,16,NE,1969,1969,3101,2,1,1764.279774,1764.279774,3505,NO,30,43.13,3,-2.49,6110,111.139771,121.419342,131.124314,137.345923,I,Above,Hip,0,5701,,36.56708318,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10138,NJBF000060767,402 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33651533,-74.63839876,RES1,3001,,16,NE,1960,1960,3101,1,1,805.8860981,805.8860981,3505,NO,19.61,33.15,3,4.49,6106,110.640962,120.821267,130.584868,136.619335,I,Above,Flat,0,5701,,26.3826187,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 10139,NJBF000063217,150 BEVIS MILL ROAD,Egg Harbor,NJ,39.3411435,-74.6403945,RES1,3001,,16,NE,1999,1999,3101,2,1,1161.750688,1161.750688,3505,NO,32.05,46.08,3,7.38,6110,110.531036,120.731225,130.505246,136.509378,I,Above,Gable,0,5701,,39.06241422,0,0,,,,1,1,,0.35,nav,1,1999,2,, 10140,NJBF000062919,1624 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1924,3101,1,1,2300.407014,2300.407014,3505,NO,18.27,32.61,3,1.94,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,25.4417468,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 10141,NJBF000065013,1573 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34589965,-74.65679765,RES1,3001,,16,NE,1900,1900,3101,2,1,1137.424457,1137.424457,3507,NO,39.41,52.29,1,0.7,6112,110.26761,120.402113,130.21638,136.098266,I,Above,Gable,0,5701,,45.85234031,0,0,,,,1,1,,0.35,nav,1,1900,2,, 10142,NJBF000065703,1113 MARLOU AVENUE,Egg Harbor,NJ,39.34786156,-74.58884357,RES1,3001,,16,NE,1974,1974,3101,2,1,1539.569679,1539.569679,3505,NO,31.65,42.26,3,-2.91,6110,111.275193,121.52957,131.229006,137.480389,I,Above,Gable,0,5701,,36.95462136,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 10143,NJBF000052851,1797 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31748688,-74.63500263,RES1,3001,,16,NE,2015,2015,3102,1,1,508.2779851,508.2779851,3505,NO,22.34,31.84,3,5.04,6106,111.035783,121.121605,130.839845,136.968072,I,Above,Flat,0,5701,,27.09108805,0,0,,,,1,1,,0.03,nav,1,2015,1,, 10144,NJBF000077067,1066 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39627649,-74.71631449,RES1,3001,,16,NE,1962,1962,3102,1,1,1284.463078,1284.463078,3507,NO,15.52,26.44,1,1.19,6106,109.326108,119.200965,128.937164,134.11513,I,Above,Gable,0,5701,,20.98071398,0,0,,,,1,1,,0.03,nav,1,1962,1,, 10145,NJBF000058797,1712 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33295553,-74.64197834,RES1,3001,,15,NE,1950,1950,3102,1,1,966.9309174,966.9309174,3505,NO,18.81,26.18,3,5.47,6106,110.659617,120.807503,130.569849,136.597739,I,Above,Gable,0,5701,,22.49576716,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10146,NJBF000062910,4046 OCEAN HTS AVENUE,Egg Harbor,NJ,39.340468,-74.599715,RES1,3001,,16,NE,1975,1975,3102,1,1,1634.443752,1634.443752,3507,NO,13.9,19.23,1,1.44,6110,111.187507,121.42692,131.138144,137.363588,I,Above,Gable,0,5701,,16.56273596,0,1.1,,,,1,1,,0.15,nav,1,1975,1,, 10147,NJBF000054682,52 SOMERS AVENUE,Egg Harbor,NJ,39.32405736,-74.64157576,RES1,3001,,16,NE,1975,1975,3102,1,1,2306.040941,2306.040941,3505,NO,11.43,18.86,3,-1.29,6106,110.825676,120.929745,130.670636,136.736806,I,Above,Gable,0,5701,,15.14329366,0,0,,,,1,1,,0.03,nav,1,1975,1,, 10148,NJBF000052619,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31603144,-74.63133531,COM3,3001,999,16,ME,1970,1970,3401,2,1,1350.152271,1350.152271,3507,NO,32.56,39.13,1,1.12,6106,111.115633,121.199782,130.911518,137.064645,I,Above,Flat,0,NaN,,35.84282429,0,0,,,,1,1,,0.03,nav,1,1970,2,, 10149,NJBF000052731,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,1070.973817,1070.973817,3505,NO,14.46,25.03,3,0.04,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,19.74516021,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10150,NJBF000052737,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,762.6328328,762.6328328,3505,NO,15.35,26.03,3,2.23,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,20.69020933,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10151,NJBF000052744,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,1069.83354,1069.83354,3505,NO,22.5,31.9,3,8.48,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,27.20104249,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10152,NJBF000052789,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,1124.485906,1124.485906,3505,NO,11.95,24.3,3,-1.65,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,18.12323745,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10153,NJBF000052697,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,1354.272421,1354.272421,3505,NO,27.86,41.57,3,8.83,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,34.71441673,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10154,NJBF000052691,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,887.4040969,887.4040969,3505,NO,15.65,25.86,3,3.27,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,20.75441073,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10155,NJBF000062329,14 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33923385,-74.61193223,RES1,3001,,16,NE,2017,2017,3102,2,1,2494.708568,2494.708568,3505,NO,21.63,28.03,3,0.2,6110,110.988504,121.232962,130.958907,137.128202,I,Above,Hip,0,5701,,24.83050117,0,0,,,,1,1,,0.03,nav,1,2017,2,, 10156,NJBF000075383,4 SHIPS DRIVE,Egg Harbor,NJ,39.3896986,-74.71772157,RES1,3001,,16,NE,1965,1965,3102,1,1,2115.096618,2115.096618,3507,NO,17.12,31.03,1,0.46,6106,109.35682,119.236538,128.982095,134.185276,I,Above,Hip,0,5701,,24.07732958,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 10157,NJBF000076004,1097 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39191238,-74.71793727,RES1,3001,219,16,NE,1950,1950,3102,1,1,2430.703722,2430.703722,3507,NO,19.53,27.02,1,1.13,6106,109.34124,119.216661,128.958793,134.147713,I,Above,Flat,0,5701,,23.27815141,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 10158,NJBF000065132,107 BAKER PLACE ROAD,Egg Harbor,NJ,39.34621386,-74.66402917,RES1,3001,,16,NE,2007,2007,3101,2,1,3067.223522,3067.223522,3507,NO,27.36,36.93,1,2.71,6112,110.193576,120.281124,130.110839,135.943724,I,Above,Gable,0,5701,,32.14151141,0,0,,,,1,1,,0.35,nav,1,2007,2,, 10159,NJBF000066104,1473 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34891686,-74.67649866,RES1,3001,219,16,NE,1930,1930,3102,2,2,1040.10474,1040.10474,3505,NO,44.49,53.42,3,8.29,6106,110.044797,120.060578,129.910152,135.645131,I,Above,Hip,0,5701,,48.95440936,0,0,,,,1,1,,0.03,nav,1,1930,2,, 10160,NJBF000066017,1473 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34869944,-74.67611054,RES1,3001,219,16,NE,1930,1930,3102,2,2,814.2413718,814.2413718,3505,NO,32.34,40.61,3,2.43,6106,110.051061,120.068515,129.917687,135.656424,I,Above,Gable,0,5701,,36.4743055,0,0,,,,1,1,,0.03,nav,1,1930,2,, 10161,NJBF000065321,20 CARANN LANE,Egg Harbor,NJ,39.3467325,-74.58730809,RES1,3001,,16,NE,1969,1969,3101,2,1,1793.215024,1793.215024,3505,NO,25.36,40.15,3,-1.4,6106,111.32588,121.568677,131.26704,137.528969,I,Above,Gable,0,5701,,32.75629535,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 10162,NJBF000065433,1561 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.347068,-74.6591435,RES1,3001,,16,NE,1860,1860,3101,2,1,1083.180985,1083.180985,3507,NO,31.25,42.67,1,-0.46,6112,110.22618,120.349302,130.170751,136.032183,I,Above,Hip,0,5701,,36.96124872,0,0,,,,1,1,,0.35,nav,1,1860,2,, 10163,NJBF000071764,3356 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37154545,-74.57879839,RES1,3001,,16,NE,1981,1981,3101,2,1,1868.164791,1868.164791,3507,NO,40.66,52.07,1,2.13,6106,111.16395,121.44861,131.115238,137.33137,I,Above,Flat,0,5701,,46.36515074,0,0,,,,1,1,,0.03,nav,1,1981,2,, 10164,NJBF000066271,1118 BERRY DRIVE,Egg Harbor,NJ,39.34934597,-74.59551681,RES1,3001,,16,NE,1969,1969,3101,1,1,2133.079366,2133.079366,3505,NO,13,19.11,3,0.98,6112,111.112974,121.398269,131.104096,137.319784,I,Above,Gable,0,5701,,16.05230217,0,1.2,,,,1,1,,0.35,nav,1,1969,1,, 10165,NJBF000069633,7109 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1975,3102,1,1,1633.998789,1633.998789,3505,NO,16.84,28.03,3,-2.15,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,22.43571822,0,0,,,,1,1,,0.35,nav,1,1987,1,, 10166,NJBF000062878,107 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34042139,-74.6128287,RES1,3001,,16,NE,2016,2016,3102,1,1,3743.689582,3743.689582,3505,NO,24.6,36.46,3,8.84,6110,110.9507,121.203829,130.931627,137.092132,I,Above,Hip,0,5701,,30.52588967,0,0,,,,1,1,,0.03,nav,1,2016,1,, 10167,NJBF000063722,6 OSPREY COURT,Egg Harbor,NJ,39.34251234,-74.60850365,RES1,3001,,16,NE,1993,1993,3102,2,1,4009.510884,4009.510884,3505,NO,29.8,44.33,3,5.95,6112,110.987252,121.253209,130.975811,137.151113,I,Above,Hip,0,5701,,37.0643683,0,1.2,,,,1,1,,0.03,nav,1,1993,2,, 10168,NJBF000076292,1089 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.392865,-74.71762558,RES1,3001,,16,NE,1960,1960,3102,1,1,1021.65457,1021.65457,3507,NO,14.47,23.58,1,0.6,6106,109.337441,119.212686,128.953562,134.139723,I,Above,Gable,0,5701,,19.02711982,0,0,,,,1,1,,0.03,nav,1,1960,1,, 10169,NJBF000066593,324 FRANK LANE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1129.987273,1129.987273,3505,NO,14.64,27.7,3,2.74,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,21.17001384,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10170,NJBF000066333,1116 BERRY DRIVE,Egg Harbor,NJ,39.34949438,-74.59521864,RES1,3001,,16,NE,1969,1969,3101,1,1,1670.075626,1670.075626,3505,NO,11.26,17.2,3,0.39,6112,111.116501,121.401743,131.107177,137.323777,I,Above,Gable,0,5701,,14.2291747,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10171,NJBF000065448,17 JODEL LANE,Egg Harbor,NJ,39.34711198,-74.58715293,RES1,3001,,16,NE,1985,1985,3101,1,1,4408.137366,4408.137366,3505,NO,24.14,29.22,3,4.74,6106,111.322821,121.567095,131.265208,137.526589,I,Above,Gable,0,5701,,26.67893227,0,1.2,,,,1,1,,0.03,nav,1,1985,1,, 10172,NJBF000062414,105 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.33939998,-74.64153166,RES1,3001,,16,NE,1999,1999,3101,1,1,1386.847793,1386.847793,3505,NO,13.25,24.83,3,2.64,6110,110.548594,120.7337,130.507263,136.511659,I,Above,Gable,0,5701,,19.04081455,0,0,,,,1,1,,0.35,nav,1,1999,1,, 10173,NJBF000056622,138 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32888183,-74.64662251,RES1,3001,,16,NE,1995,1995,3102,1,1,1284.911695,1284.911695,3505,NO,9.31,18.53,3,-1.44,6106,110.67394,120.78556,130.544312,136.561658,I,Above,Gable,0,5701,,13.92034434,0,0,,,,1,1,,0.03,nav,1,1995,1,, 10174,NJBF000055477,32 SOMERS AVENUE,Egg Harbor,NJ,39.32619937,-74.64323279,RES1,3001,,16,NE,1992,1992,3102,2,1,2696.433312,2696.433312,3505,NO,36,42.39,3,6.76,6106,110.765237,120.875041,130.623123,136.671184,I,Above,Gable,0,5701,,39.19214524,0,0,,,,1,1,,0.03,nav,1,1992,2,, 10175,NJBF000054069,1769 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32228689,-74.63898408,RES1,3001,,16,NE,1952,1952,3102,1,1,1648.349858,1648.349858,3505,NO,16.51,28.4,3,-2.23,6106,110.892765,120.994565,130.72843,136.816184,I,Above,Gable,0,5701,,22.45703949,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 10176,NJBF000054111,1769 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32240275,-74.63933085,RES1,3001,,16,NE,1952,1952,3102,1,1,1693.746919,1693.746919,3505,NO,14.57,28.85,3,-1.96,6106,110.885911,120.987473,130.721961,136.80733,I,Above,Flat,0,5701,,21.70923876,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 10177,NJBF000061791,6 CAMELOT COURT,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1986,3101,2,1,2212.563044,2212.563044,3505,NO,35.45,43.4,3,-0.18,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,39.42186425,0,1.2,,,,1,1,,0.03,nav,1,1979,2,, 10178,NJBF000064603,616 NATHAN LANE,Egg Harbor,NJ,39.34487846,-74.63898199,RES1,3001,,16,NE,1981,1981,3101,1,1,1387.364199,1387.364199,3505,NO,26.31,37.34,3,7.04,6112,110.480407,120.710206,130.485583,136.483142,I,Above,Gable,0,5701,,31.82470218,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 10179,NJBF000063417,33 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34165956,-74.593005,RES1,3001,,16,NE,1994,1994,3102,1,1,3379.452834,3379.452834,3507,NO,12.6,19.67,1,0.71,6112,111.296761,121.52822,131.232528,137.485344,I,Above,Hip,0,5701,,16.13115316,0,0,,,,1,1,,0.03,nav,1,1994,1,, 10180,NJBF000067602,138 LEES LANE,Egg Harbor,NJ,39.35394446,-74.69330944,RES1,3001,,16,NE,1983,1983,3101,2,1,1772.451603,1772.451603,3507,NO,25.16,39.47,1,2.7,6112,109.84724,119.813406,129.634058,135.222647,I,Above,Gable,0,5701,,32.31539173,0,0,,,,1,1,,0.35,nav,1,1983,2,, 10181,NJBF000061524,1 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33778953,-74.63961916,RES1,3001,,NaN,NE,1970,0,3101,1,1,681.335803,681.335803,3505,NO,22,32.28,3,2.57,6106,110.6019,120.785257,130.552958,136.575183,I,Above,Gable,0,5701,,27.13870826,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10182,NJBF000063474,12 MAY DRIVE,Egg Harbor,NJ,39.34181921,-74.60937104,RES1,3001,,16,NE,1978,1978,3102,2,1,1430.413206,1430.413206,3505,NO,38.35,47.91,3,8.98,6106,110.984733,121.246428,130.97001,137.143325,I,Above,Gable,0,5701,,43.12912794,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 10183,NJBF000064905,1569 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3456275,-74.6574855,RES1,3001,,16,NE,1800,1800,3101,2,1,566.1624544,566.1624544,3507,NO,38.38,50.29,1,2.66,6110,110.265242,120.394246,130.209475,136.088085,I,Above,Gable,0,5701,,44.33452767,0,0,,,,1,1,,0.35,nav,1,1800,2,, 10184,NJBF000065332,162 BLACKMAN ROAD,Egg Harbor,NJ,39.346758,-74.5901975,RES1,3001,,16,NE,1970,1970,3101,2,1,1450.759774,1450.759774,3505,NO,36.75,50.53,3,8.25,6106,111.265704,121.518632,131.219701,137.468601,I,Above,Gable,0,5701,,43.63632834,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 10185,NJBF000065400,162 BLACKMAN ROAD,Egg Harbor,NJ,39.34695647,-74.59064383,RES1,3001,,16,NE,1970,1970,3101,2,1,1754.439766,1754.439766,3505,NO,35.4,42.87,3,3.4,6106,111.253196,121.508734,131.210188,137.456414,I,Above,Gable,0,5701,,39.13374501,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 10186,NJBF000069443,6 WATER STREET,Egg Harbor,NJ,39.3604565,-74.57876,RES1,3001,,16,NE,1890,1890,3101,2,1,725.0333495,725.0333495,3507,NO,23.02,31.47,1,0.04,6112,111.301667,121.565817,131.247677,137.501274,I,Above,Flat,0,5701,,27.24363633,0,0,,,,1,1,,0.35,nav,1,1890,2,, 10187,NJBF000075567,200 HARBOR DRIVE,Egg Harbor,NJ,39.39033746,-74.71864717,RES1,3001,,16,NE,1975,1975,3102,2,1,2527.616853,2527.616853,3507,NO,21.21,31.06,1,-0.05,6106,109.346432,119.221097,128.965097,134.156936,I,Above,Gable,0,5701,,26.13152125,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 10188,NJBF000065320,212 THOMAS DRIVE,Egg Harbor,NJ,39.34672821,-74.59482851,RES1,3001,,16,NE,1990,1990,3102,1,1,3802.416058,3802.416058,3505,NO,22.98,30.66,3,8.27,6106,111.171997,121.439351,131.145201,137.372875,I,Above,Gable,0,5701,,26.82153393,0,0,,,,1,1,,0.03,nav,1,1990,1,, 10189,NJBF000062524,10 OTTER LANE,Egg Harbor,NJ,39.3396301,-74.61381374,RES1,3001,,16,NE,2003,2003,3102,2,1,5457.81167,5457.81167,3505,NO,19.8,32.02,3,-1.94,6112,110.948867,121.196358,130.925122,137.083329,I,Above,Hip,0,5701,,25.90954939,0,0,,,,1,1,,0.03,nav,1,2003,2,, 10190,NJBF000067926,135 THOMPSONS LANE,Egg Harbor,NJ,39.35504766,-74.69697969,RES1,3001,510,16,NE,1970,1970,3101,1,1,2346.553305,2346.553305,3507,NO,18.13,32.03,1,0.71,6112,109.806706,119.762308,129.57503,135.130465,I,Above,Gable,0,5701,,25.08007458,0,0,,,,1,1,,1,nav,1,1970,1,, 10191,NJBF000068107,8025 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1987,3102,2,1,964.0047156,964.0047156,3505,NO,30.1,38.45,3,-2.18,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,34.2741078,0,0,,,,1,1,,0.35,nav,1,1987,2,, 10192,NJBF000057684,1723 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33098611,-74.64185131,IND2,3002,959,NaN,ME,1969,0,3401,3,1,7153.751923,7153.751923,3507,NO,58.56,63.78,1,0.89,6106,110.696883,120.834901,130.592793,136.629403,I,Above,Flat,0,5703,,61.16946147,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10193,NJBF000065731,1120 LAKESIDE DRIVE,Egg Harbor,NJ,39.34794238,-74.59226331,RES1,3001,,16,NE,1969,1969,3101,2,1,2599.56344,2599.56344,3505,NO,21.93,27.13,3,-1.07,6106,111.203296,121.469841,131.172642,137.408203,I,Above,Gable,0,5701,,24.53387406,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10194,NJBF000063124,16 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34093098,-74.59403183,RES1,3001,,16,NE,1987,1987,3102,2,1,2544.960211,2544.960211,3507,NO,30.48,37.61,1,2.36,6112,111.289274,121.518962,131.224219,137.474713,I,Above,Hip,0,5701,,34.04401198,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10195,NJBF000069255,14 BRIAN AVENUE,Egg Harbor,NJ,39.35938391,-74.57955625,RES1,3001,,16,NE,1945,1945,3101,1,1,3333.512954,3333.512954,3507,NO,16.79,31.71,1,-0.08,6112,111.298697,121.563574,131.247134,137.500967,I,Above,Gable,0,5701,,24.25028819,0,1.2,,,,1,1,,0.35,nav,1,1945,1,, 10196,NJBF000066707,320 FRANK LANE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1614.701355,1614.701355,3505,NO,15.58,29.39,3,3.01,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,22.48493708,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 10197,NJBF000064299,610 NATHAN LANE,Egg Harbor,NJ,39.34414662,-74.6394726,RES1,3001,,16,NE,1981,1981,3101,1,1,1513.240422,1513.240422,3505,NO,22.3,35.58,3,8.21,6112,110.487722,120.710594,130.486288,136.483836,I,Above,Gable,0,5701,,28.93867075,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10198,NJBF000063750,5 MAY DRIVE,Egg Harbor,NJ,39.34259917,-74.60978832,RES1,3001,,16,NE,1972,1972,3102,2,1,1412.540992,1412.540992,3505,NO,31.42,40.89,3,-1.37,6110,110.962719,121.23032,130.9547,137.12317,I,Above,Gable,0,5701,,36.15658302,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 10199,NJBF000075093,1119 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38869399,-74.71744069,RES1,3001,,16,NE,1985,1985,3102,1,1,3001.834938,3001.834938,3507,NO,18.81,27.68,1,0.4,6112,109.365316,119.247655,128.994885,134.20606,I,Above,Gable,0,5701,,23.24431544,0,0,,,,1,1,,0.03,nav,1,1985,1,, 10200,NJBF000074999,1119 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38840585,-74.71745451,RES1,3001,,16,NE,1985,1985,3102,1,1,1194.34144,1194.34144,3507,NO,14.79,20.91,1,2.95,6112,109.367133,119.249782,128.997423,134.210097,I,Above,Flat,0,5701,,17.84717975,0,0,,,,1,1,,0.35,nav,1,1985,1,, 10201,NJBF000061199,401 STEELMANVILLE ROAD,Egg Harbor,NJ,39.337226,-74.638359,RES1,3001,,16,NE,1975,1975,3101,1,1,857.8460762,857.8460762,3505,NO,19.81,25.14,3,0.56,6112,110.62844,120.813093,130.577786,136.609651,I,Above,Gable,0,5701,,22.47198748,0,0,,,,1,1,,0.35,nav,1,1975,1,, 10202,NJBF000065003,122 WHARF ROAD,Egg Harbor,NJ,39.345882,-74.6710785,RES1,3001,,16,NE,1994,1994,3102,2,1,1515.469715,1515.469715,3505,NO,37.82,43.59,3,4.71,6112,110.134666,120.177456,130.015941,135.802754,I,Above,Flat,0,5701,,40.70578249,0,0,,,,1,1,,0.35,nav,1,1994,2,, 10203,NJBF000068747,3540 BARGAINTOWN ROAD,Egg Harbor,NJ,39.35753476,-74.58096935,RES1,3001,,16,NE,2002,2002,3101,2,1,4505.423071,4505.423071,3507,NO,31.16,37.8,1,0.89,6112,111.293574,121.559105,131.245528,137.499526,I,Above,Gable,0,5701,,34.47917155,0,0,,,,1,1,,0.35,nav,1,2002,2,, 10204,NJBF000057546,129 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.330758,-74.646604,RES1,3001,,16,NE,1950,1950,3102,2,1,1343.337909,1343.337909,3505,NO,33.97,42.21,3,-0.6,6106,110.640837,120.76122,130.524722,136.534403,I,Above,Gable,0,5701,,38.09075507,0,0,,,,1,1,,0.03,nav,1,1950,2,, 10205,NJBF000057441,129 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33057947,-74.64649209,RES1,3001,,16,NE,1950,1950,3102,2,1,2575.984275,2575.984275,3505,NO,30.71,40.57,3,5.35,6106,110.645407,120.765359,130.528275,136.53936,I,Above,Flat,0,5701,,35.64223176,0,0,,,,1,1,,0.03,nav,1,1950,2,, 10206,NJBF000077090,1061 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39645224,-74.716853,RES1,3001,,16,NE,1950,1950,3102,2,1,920.9437186,920.9437186,3507,NO,32.75,47.52,1,0.77,6106,109.321397,119.193455,128.929146,134.101566,I,Above,Gable,0,5701,,40.13679225,0,0,,,,1,1,,0.03,nav,1,1950,2,, 10207,NJBF000055015,42 SOMERS AVENUE,Egg Harbor,NJ,39.32489733,-74.64230228,RES1,3001,,16,NE,1966,1966,3102,1,1,3501.114894,3501.114894,3505,YES,15.67,23.13,3,-0.75,6106,110.800891,120.907069,130.650848,136.70951,I,Above,Gable,0,5701,,19.40185147,0,0,,,,1,1,,0.03,nav,1,1966,1,, 10208,NJBF000054188,62 SOMERS AVENUE,Egg Harbor,NJ,39.32266491,-74.64037646,RES1,3001,,16,NE,1990,1990,3102,1,1,2213.970537,2213.970537,3505,NO,16.15,24.25,3,-2.95,6110,110.866947,120.967282,130.703434,136.781935,I,Above,Hip,0,5701,,20.20260006,0,0,,,,1,1,,0.35,nav,1,1990,1,, 10209,NJBF000063119,116 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34092696,-74.6109378,RES1,3001,,16,NE,1987,1987,3102,2,1,1831.007623,1831.007623,3505,NO,24.17,37.09,3,1.35,6112,110.973876,121.230089,130.955489,137.123932,I,Above,Gable,0,5701,,30.62876734,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 10210,NJBF000062096,9 VELLA LA VELLA LANE,Egg Harbor,NJ,39.3387905,-74.64106793,RES1,3001,,15,NE,1955,1955,3101,1,1,1524.013415,1524.013415,3505,NO,14.71,26.96,3,2.35,6110,110.565393,120.748899,130.520686,136.530311,I,Above,Gable,0,5701,,20.83712112,0,0,,,,1,1,,0.35,nav,1,1955,1,, 10211,NJBF000075745,208 HARBOR DRIVE,Egg Harbor,NJ,39.39096715,-74.71993051,RES1,3001,,16,NE,1970,1970,3102,1,1,2961.549823,2961.549823,3507,NO,14.6,20.64,1,1.67,6106,109.333701,119.201712,128.943954,134.121453,I,Above,Hip,0,5701,,17.61793944,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 10212,NJBF000063426,209 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34169991,-74.59810588,RES1,3001,,16,NE,1965,1965,3102,1,1,2064.282783,2064.282783,3507,NO,14.15,22.36,1,2.06,6110,111.196142,121.44027,131.149932,137.378908,I,Above,Flat,0,5701,,18.25491942,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 10213,NJBF000061711,17 OTTER LANE,Egg Harbor,NJ,39.33812732,-74.61355163,RES1,3001,,16,NE,1989,1989,3102,2,1,3113.600196,3113.600196,3505,NO,36.32,51.25,3,1.32,6112,110.981711,121.218499,130.945973,137.11085,I,Above,Flat,0,5701,,43.78143033,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 10214,NJBF000066983,1449 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35158728,-74.6797552,RES1,3001,,16,NE,1815,1815,3102,2,1,1563.751581,1563.751581,3505,NO,31.42,38.13,3,0.62,6112,109.98215,119.987635,129.838631,135.537752,I,Above,Hip,0,5701,,34.77532878,0,1.1,,,,1,1,,0.35,nav,1,1815,2,, 10215,NJBF000066956,1449 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3514445,-74.6799025,RES1,3001,,16,NE,1815,1815,3102,2,1,505.4589887,505.4589887,3505,NO,34.52,48.96,3,5.21,6112,109.982852,119.98768,129.838096,135.536861,I,Above,Gable,0,5701,,41.73664404,0,1.1,,,,1,1,,0.35,nav,1,1815,2,, 10216,NJBF000061948,7 GLEN AIRE DRIVE,Egg Harbor,NJ,39.33853075,-74.61585218,RES1,3001,,16,NE,2003,2003,3102,1,1,3884.062962,3884.062962,3505,NO,16,28.62,3,1.39,6112,110.935517,121.174743,130.905688,137.057204,I,Above,Gable,0,5701,,22.30991396,0,0,,,,1,1,,0.35,nav,1,2003,1,, 10217,NJBF000062667,4 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.3399508,-74.6104972,RES1,3001,,16,NE,1978,1978,3102,2,1,3317.102485,3317.102485,3505,NO,41.54,47.94,3,3.87,6110,110.999925,121.248964,130.973336,137.147442,I,Above,Gable,0,5701,,44.74103642,0,1.2,,,,1,1,,0.35,nav,1,1978,2,, 10218,NJBF000061857,318 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1989,3102,2,1,3323.933919,3323.933919,3505,NO,26.55,34.54,3,1.64,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,30.5428788,0,1.2,,,,1,1,,0.03,nav,1,1993,2,, 10219,NJBF000062124,14 VELLA LA VELLA LANE,Egg Harbor,NJ,39.338835,-74.6421905,RES1,3001,,16,NE,1958,1958,3101,1,1,724.7491238,724.7491238,3505,NO,18.3,29.96,3,4.82,6110,110.550687,120.729819,130.503631,136.506395,I,Above,Gable,0,5701,,24.13196331,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 10220,NJBF000051506,112 WATERWAY AVENUE,Egg Harbor,NJ,39.30777271,-74.63686025,RES1,3001,,16,NE,1950,1950,3102,1,1,1392.154588,1392.154588,3505,NO,22.6,35.19,3,5.6,6102,111.18428,121.220968,130.914003,137.070175,I,Above,Gable,0,5701,,28.8929287,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 10221,NJBF000051514,110 WATERWAY AVENUE,Egg Harbor,NJ,39.3078531,-74.63695295,RES1,3001,,NaN,NE,1950,0,3102,2,1,814.5539802,814.5539802,3505,NO,30,41.42,3,-1.81,6102,111.181506,121.218431,130.911737,137.067117,I,Above,Gable,0,5701,,35.71078388,0,0,,,,1,1,,0.03,nav,1,1950,2,, 10222,NJBF000063999,107 NANCY DRIVE,Egg Harbor,NJ,39.34330957,-74.59237206,RES1,3001,,16,NE,1975,1975,3102,2,1,2088.701832,2088.701832,3507,NO,29.83,35.2,1,2.29,6110,111.280611,121.520239,131.223956,137.474271,I,Above,Gable,0,5701,,32.51888437,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 10223,NJBF000076174,1091 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39248037,-74.71705832,RES1,3001,,16,NE,1930,1930,3102,2,1,2053.817328,2053.817328,3507,NO,40.21,52.06,1,2.22,6112,109.343677,119.22213,128.963916,134.15702,I,Above,Gable,0,5701,,46.13617555,0,0.2,,,,1,1,,0.35,nav,1,1930,2,, 10224,NJBF000066201,1107 LAKESIDE DRIVE,Egg Harbor,NJ,39.34918098,-74.59047025,RES1,3001,,16,NE,1969,1969,3101,1,1,2202.588048,2202.588048,3505,NO,12.22,21.85,3,-1.84,6110,111.219477,121.486868,131.187396,137.427075,I,Above,Gable,0,5701,,17.03508517,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10225,NJBF000065555,167 BLACKMAN ROAD,Egg Harbor,NJ,39.34746032,-74.59129902,RES1,3001,,16,NE,1969,1969,3101,1,1,2132.094275,2132.094275,3505,NO,21.37,26.52,3,6.09,6106,111.231228,121.491815,131.193779,137.435359,I,Above,Gable,0,5701,,23.94753554,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10226,NJBF000051542,116 MORRIS AVENUE,Egg Harbor,NJ,39.30816947,-74.63557965,RES1,3001,,16,NE,1970,1970,3102,1,1,1428.111612,1428.111612,3505,NO,24.06,29.1,3,7.2,6106,111.195744,121.235926,130.929493,137.090719,I,Above,Flat,0,5701,,26.58166116,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10227,NJBF000051531,116 MORRIS AVENUE,Egg Harbor,NJ,39.30804712,-74.63544289,RES1,3001,,16,NE,1970,1970,3102,1,1,1507.664782,1507.664782,3505,NO,23.24,29.32,3,8.2,6106,111.199927,121.239723,130.932882,137.095281,I,Above,Gable,0,5701,,26.2801032,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10228,NJBF000062951,1 OTTER LANE,Egg Harbor,NJ,39.34056275,-74.61534368,RES1,3001,,16,NE,2003,2003,3102,2,1,3183.501159,3183.501159,3505,NO,32.05,42.86,3,3.66,6110,110.905438,121.159463,130.890926,137.037841,I,Above,Hip,0,5701,,37.45568599,0,0,,,,1,1,,0.35,nav,1,2003,2,, 10229,NJBF000060808,386 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33656828,-74.63574784,RES1,3001,,16,NE,1900,1900,3101,2,1,1787.494136,1787.494136,3505,NO,32.25,41.77,3,3.98,6106,110.675015,120.864498,130.623902,136.673504,I,Above,Flat,0,5701,,37.00863545,0,0,,,,1,1,,0.03,nav,1,1900,2,, 10230,NJBF000067429,8041 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35344926,-74.67022798,RES1,3001,,16,NE,1998,1998,3102,2,1,3609.849667,3609.849667,3505,NO,18.43,28.35,3,-2.63,6106,110.034252,120.09101,129.949391,135.706829,I,Above,Gable,0,5701,,23.39020728,0,1.2,,,,1,1,,0.03,nav,1,1998,2,, 10231,NJBF000067511,8039 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35369291,-74.67000435,RES1,3001,,16,NE,1990,1990,3102,2,1,1293.83058,1293.83058,3505,NO,28.74,34.84,3,5.14,6112,110.032734,120.092164,129.949935,135.707799,I,Above,Gable,0,5701,,31.78983293,0,0,,,,1,1,,0.35,nav,1,1990,2,, 10232,NJBF000074337,7050 BLACK HORSE PIKE,Egg Harbor,NJ,39.38594757,-74.50836757,COM1,3003,560,NaN,ME,1969,0,3401,3,1,1177.845405,1177.845405,3507,NO,55.78,67.71,1,0.63,6106,112.610012,122.526551,132.195767,138.526777,I,Above,Flat,0,NaN,,61.74328423,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10233,NJBF000074129,213 EAST PLAZA PLACE,Egg Harbor,NJ,39.38502564,-74.51172909,RES1,3001,,16,NE,1954,1954,3102,1,1,2274.60838,2274.60838,3505,NO,12.61,19.4,3,0.73,6106,112.544313,122.476692,132.14329,138.476368,I,Above,Hip,0,5701,,16.00397646,0,0,,,,1,1,,0.03,nav,1,1954,1,, 10234,NJBF000073826,7075 BLACK HORSE PIKE,Egg Harbor,NJ,39.3834117,-74.50305319,COM1,3003,,NaN,ME,1969,0,3401,1,1,2345.490875,2345.490875,3507,NO,16.68,23.53,1,2.74,6106,112.752721,122.647731,132.325742,138.669772,I,Above,Gable,0,NaN,,20.10097826,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10235,NJBF000074471,207 TOULON AVENUE,Egg Harbor,NJ,39.38660272,-74.51753087,RES1,3001,,NaN,NE,1925,0,3102,2,1,2060.402586,2060.402586,3505,NO,37.87,52.62,3,8.61,6106,112.400403,122.357553,132.016262,138.33775,I,Above,Hip,0,5701,,45.242691,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 10236,NJBF000074441,209 TOULON AVENUE,Egg Harbor,NJ,39.38644498,-74.51760081,RES1,3001,,16,NE,1925,1925,3102,1,1,1650.266401,1650.266401,3505,NO,20.53,32.96,3,4.97,6106,112.400326,122.357975,132.016814,138.338904,I,Above,Hip,0,5701,,26.74500915,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 10237,NJBF000074668,201 FRANKFORT COURT,Egg Harbor,NJ,39.3874035,-74.51803499,RES1,3001,,16,NE,1925,1925,3102,2,1,1678.440357,1678.440357,3505,NO,34.9,44.69,3,-2.74,6106,112.381759,122.340276,131.997461,138.31506,I,Above,Hip,0,5701,,39.79030714,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 10238,NJBF000074124,1350 BAY DRIVE,Egg Harbor,NJ,39.38500941,-74.51068248,RES1,3001,,16,NE,1950,1950,3102,1,1,3563.790781,3563.790781,3505,NO,20.97,30.21,3,8.64,6106,112.567732,122.495417,132.163155,138.49699,I,Above,Gable,0,5701,,25.59224673,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 10239,NJBF000074503,7034 BLACK HORSE PIKE,Egg Harbor,NJ,39.38673145,-74.51112855,COM1,3003,30,NaN,ME,1969,0,3401,1,1,16006.5251,16006.5251,3507,NO,15.82,23.69,1,-0.47,6106,112.541309,122.46938,132.134636,138.460709,I,Above,Flat,0,NaN,,19.75550367,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10240,NJBF000081999,102 HOLLY ROAD,Egg Harbor,NJ,39.42527553,-74.5212769,RES1,3001,,17,NE,1980,1980,3102,1,1,1432.438495,1432.438495,3505,NO,9.4,16.59,3,-1.57,6112,112.029907,121.892938,131.492888,137.648186,I,Above,Gable,0,5701,,12.99528579,0,0,,,,1,1,,0.35,nav,1,1980,1,, 10241,NJBF000082272,52 ABLES RUN DRIVE,Egg Harbor,NJ,39.42853969,-74.52482629,RES1,3001,,37,NE,2006,2006,3102,2,1,7568.990999,7568.990999,3505,NO,26.66,36.8,3,-0.27,6112,111.938287,121.798291,131.38853,137.5264,I,Above,Hip,0,5701,,31.73103226,0,0,,,,1,1,,0.03,nav,1,2006,2,, 10242,NJBF000073477,8006 BLACK HORSE PIKE,Egg Harbor,NJ,39.3810295,-74.4953985,COM1,3003,999,NaN,ME,1969,0,3401,3,1,2388.189299,2388.189299,3507,NO,43.36,50,1,2.4,6106,112.946521,122.809444,132.498922,138.853532,I,Above,Flat,0,NaN,,46.67820254,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10243,NJBF000074054,1502 BAY DRIVE,Egg Harbor,NJ,39.38464266,-74.50882342,RES3C,3001,,NaN,E,1945,1945,3303,2,1,1370.412761,1370.412761,3507,NO,26.37,39.14,1,0.29,6106,112.612562,122.53223,132.202403,138.5389,I,Above,Gable,0,NaN,,32.75707902,0,1.2,,,,1,1,,0.03,nav,1,1945,2,, 10244,NJBF000074529,204 FRANKFORT COURT,Egg Harbor,NJ,39.38686746,-74.51778058,RES1,3001,,16,NE,1925,1925,3102,1,1,1861.479086,1861.479086,3505,NO,13.64,19.25,3,-1.61,6106,112.392382,122.350374,132.008498,138.32862,I,Above,Hip,0,5701,,16.44157283,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 10245,NJBF000082049,105 HOLLY ROAD,Egg Harbor,NJ,39.42599365,-74.51905689,RES1,3001,,NaN,NE,1940,0,3102,2,1,1114.269548,1114.269548,3505,NO,26.23,34.55,3,4.37,6106,112.071488,121.924097,131.526617,137.680565,I,Above,Gable,0,5701,,30.39351802,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10246,NJBF000052021,7 POINT DRIVE,Egg Harbor,NJ,39.31249999,-74.57957549,RES1,3001,,16,NE,1959,1959,3102,1,1,1504.888508,1504.888508,3507,NO,12.02,22.18,1,-0.94,6106,112.072817,122.106293,131.780224,138.175396,I,Above,Hip,0,5701,,17.09872065,0,0,,,,1,1,,0.03,nav,1,1959,1,, 10247,NJBF000074250,205 WEST PLAZA PLACE,Egg Harbor,NJ,39.38557322,-74.51243306,RES1,3001,,16,NE,1925,1925,3102,2,1,702.6444053,702.6444053,3505,NO,44.05,56.61,3,8.75,6106,112.523416,122.458472,132.123684,138.453901,I,Above,Flat,0,5701,,50.32962731,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 10248,NJBF000074246,202 TOLEDO AVENUE,Egg Harbor,NJ,39.38556324,-74.51269516,RES1,3001,,16,NE,1954,1962,3102,1,1,2712.543742,2712.543742,3505,NO,15.04,27.31,3,0.13,6106,112.517693,122.45394,132.118887,138.448959,I,Above,Flat,0,5701,,21.17590123,0,0,,,,1,1,,0.03,nav,1,1954,1,, 10249,NJBF000074258,7033 BLACK HORSE PIKE,Egg Harbor,NJ,39.38562474,-74.51225349,RES1,3001,,16,NE,1999,1999,3102,2,1,1475.443058,1475.443058,3505,NO,43.59,50.76,3,5.88,6106,112.526915,122.461111,132.126453,138.456573,I,Above,Hip,0,5701,,47.17585376,0,0,,,,1,1,,0.03,nav,1,1999,2,, 10250,NJBF000067893,114 MARGATE BLVD.,Egg Harbor,NJ,39.35493067,-74.5398855,RES1,3001,,16,NE,1973,1973,3102,1,1,1644.293937,1644.293937,3507,NO,17.89,26.26,1,2.37,6106,112.247972,122.302695,131.980716,138.386968,I,Above,Flat,0,5701,,22.07783325,0,0,,,,1,1,,0.03,nav,1,1973,1,, 10251,NJBF000067932,114 MARGATE BLVD.,Egg Harbor,NJ,39.3550585,-74.54060524,RES1,3001,,16,NE,1973,1973,3102,1,1,964.1598162,964.1598162,3507,NO,13.49,22.07,1,-0.82,6106,112.23014,122.288664,131.966451,138.370287,I,Above,Flat,0,5701,,17.7799346,0,0,,,,1,1,,0.03,nav,1,1973,1,, 10252,NJBF000062268,292 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1950,3102,1,1,1403.129165,1403.129165,3505,NO,16.57,27.44,3,4.74,6110,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,22.00484519,0,0,,,,1,1,,0.35,nav,1,1993,1,, 10253,NJBF000067709,147 THOMPSONS LANE,Egg Harbor,NJ,39.35423708,-74.69788932,RES1,3001,,16,NE,2005,2005,3101,3,1,1421.05405,1421.05405,3507,NO,48.08,53.56,1,0.23,6110,109.809284,119.760654,129.571142,135.123934,I,Above,Gable,0,5701,,50.82002555,0,0,,,,1,1,,0.35,nav,1,2005,3,, 10254,NJBF000077990,1019 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40216083,-74.71620151,RES1,3001,,16,NE,1975,1975,3102,2,1,1232.341793,1232.341793,3507,NO,26.68,33.32,1,2.44,6106,109.294858,119.15674,128.883514,134.02906,I,Above,Gable,0,5701,,29.99902504,0,0,,,,1,1,,0.03,nav,1,1975,2,, 10255,NJBF000065577,1124 LAKESIDE DRIVE,Egg Harbor,NJ,39.34751003,-74.59271232,RES1,3001,,16,NE,1969,1969,3101,1,1,1949.450037,1949.450037,3505,NO,17.11,25.36,3,5.9,6106,111.201458,121.466955,131.170353,137.405274,I,Above,Gable,0,5701,,21.23452664,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10256,NJBF000066591,8062 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35017287,-74.6702877,RES1,3001,,16,NE,1880,1880,3102,2,1,998.2220475,998.2220475,3505,NO,38.45,46.13,3,6.07,6106,110.07954,120.130393,129.982528,135.754785,I,Above,Flat,0,5701,,42.29270578,0,1.1,,,,1,1,,0.03,nav,1,1880,2,, 10257,NJBF000065237,213 THOMAS DRIVE,Egg Harbor,NJ,39.34648316,-74.59533646,RES1,3001,,16,NE,1973,1973,3102,2,1,1370.741773,1370.741773,3505,NO,32.61,42.8,3,-0.56,6112,111.166068,121.433399,131.139855,137.365968,I,Above,Hip,0,5701,,37.7058429,0,1.1,,,,1,1,,0.35,nav,1,1973,2,, 10258,NJBF000063407,20 BEAVER DRIVE,Egg Harbor,NJ,39.34162959,-74.61252371,RES1,3001,,16,NE,1986,1986,3102,2,1,3218.826422,3218.826422,3505,NO,34.53,39.61,3,8.92,6112,110.933109,121.194943,130.922841,137.080653,I,Above,Gable,0,5701,,37.07014717,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 10259,NJBF000066317,1517 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34945954,-74.66557571,RES1,3001,,16,NE,1845,1845,3102,2,1,1079.894604,1079.894604,3505,NO,42.09,54.02,3,4.12,6112,110.13065,120.21479,130.055292,135.863049,I,Above,Gable,0,5701,,48.0531055,0,1.2,,,,1,1,,0.35,nav,1,1845,2,, 10260,NJBF000063578,8 MAY DRIVE,Egg Harbor,NJ,39.34209667,-74.60911631,RES1,3001,,16,NE,1972,1972,3102,1,1,3552.430228,3552.430228,3505,NO,18.92,31.58,3,6.12,6106,110.984066,121.247561,130.970881,137.144523,I,Above,Gable,0,5701,,25.25090208,0,1.2,,,,1,1,,0.03,nav,1,1972,1,, 10261,NJBF000063130,12 BEAVER DRIVE,Egg Harbor,NJ,39.34094935,-74.61152207,RES1,3001,,16,NE,1986,1986,3102,2,1,2690.610701,2690.610701,3505,NO,38.65,47.19,3,2.29,6110,110.96329,121.219897,130.946112,137.111487,I,Above,Hip,0,5701,,42.92027215,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 10262,NJBF000063890,41 STONEY CREEK DRIVE,Egg Harbor,NJ,39.3430053,-74.59325398,RES1,3001,,16,NE,1987,1987,3102,2,1,2357.688573,2357.688573,3507,NO,30.89,42.35,1,1.86,6112,111.268285,121.508563,131.21317,137.460446,I,Above,Hip,0,5701,,36.6199729,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10263,NJBF000052829,1799 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3173526,-74.63471185,RES1,3001,,16,NE,1950,1950,3102,2,2,1373.474353,1373.474353,3505,NO,39.42,45.97,3,4.03,6106,111.042393,121.128042,130.845711,136.976007,I,Above,Gable,0,5701,,42.69711477,0,0,,,,1,1,,0.03,nav,1,1950,2,, 10264,NJBF000054408,1758 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32331598,-74.63782653,RES1,3001,,16,NE,2007,2007,3102,2,1,2268.976173,2268.976173,3505,NO,38.81,53.7,3,6.09,6106,110.889992,120.999678,130.734959,136.825049,I,Above,Gable,0,5701,,46.25704764,0,0,,,,1,1,,0.03,nav,1,2007,2,, 10265,NJBF000065258,22 CARANN LANE,Egg Harbor,NJ,39.34654944,-74.58705948,RES1,3001,,16,NE,1998,1998,3101,2,1,1703.09875,1703.09875,3505,NO,33.23,45.47,3,5.1,6106,111.334113,121.575034,131.273224,137.536855,I,Above,Gable,0,5701,,39.34948888,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 10266,NJBF000075820,3 RIVER DRIVE,Egg Harbor,NJ,39.39125959,-74.72113478,RES1,3001,,16,NE,1962,1962,3102,1,1,1596.580359,1596.580359,3507,NO,18.73,29.91,1,-0.3,6106,109.323683,119.185924,128.926957,134.092665,I,Above,Hip,0,5701,,24.3184926,0,0,,,,1,1,,0.03,nav,1,1962,1,, 10267,NJBF000064808,125 WHARF ROAD,Egg Harbor,NJ,39.34538225,-74.67352206,RES1,3001,,16,NE,1974,1974,3102,2,1,2066.24047,2066.24047,3505,NO,26.47,39.32,3,4.72,6112,110.120345,120.149621,129.987264,135.759676,I,Above,Gable,0,5701,,32.89634829,0,0,,,,1,1,,0.35,nav,1,1974,2,, 10268,NJBF000064821,125 WHARF ROAD,Egg Harbor,NJ,39.3454005,-74.673748,RES1,3001,,16,NE,1974,1974,3102,2,1,1072.496714,1072.496714,3505,NO,44.65,57.78,3,7.69,6106,110.118096,120.146231,129.983959,135.754732,I,Above,Gable,0,5701,,51.2175116,0,0,,,,1,1,,0.03,nav,1,1974,2,, 10269,NJBF000063512,7 DORATO DRIVE,Egg Harbor,NJ,39.34190929,-74.59906566,RES1,3001,,16,NE,1988,1988,3102,2,1,1810.998507,1810.998507,3507,NO,23.21,35.46,1,-0.13,6112,111.1739,121.421425,131.132191,137.355915,I,Above,Gable,0,5701,,29.33468128,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 10270,NJBF000065385,18 CARANN LANE,Egg Harbor,NJ,39.34691165,-74.58757398,RES1,3001,,16,NE,1969,1969,3101,2,1,1580.006827,1580.006827,3505,NO,24.05,37.09,3,2.21,6106,111.317376,121.562085,131.260638,137.520804,I,Above,Gable,0,5701,,30.57307513,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10271,NJBF000062710,1 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.3400711,-74.61128987,RES1,3001,,16,NE,1978,1978,3102,1,1,3880.746667,3880.746667,3505,NO,16.25,23.17,3,2.37,6110,110.983849,121.234076,130.959578,137.129221,I,Above,Gable,0,5701,,19.70954787,0,1.1,,,,1,1,,0.35,nav,1,1978,1,, 10272,NJBF000066452,173 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34978061,-74.59676921,RES1,3001,,16,NE,1965,1965,3101,1,1,1753.907332,1753.907332,3505,NO,20.77,30.68,3,6.79,6110,111.080123,121.371943,131.079034,137.287307,I,Above,Gable,0,5701,,25.72252599,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 10273,NJBF000063980,145 WHARF ROAD,Egg Harbor,NJ,39.34326317,-74.67795603,RES1,3001,,16,NE,1926,1926,3102,1,1,596.3620727,596.3620727,3505,NO,11.19,23.83,3,-2.14,6106,110.111853,120.119646,129.947817,135.699711,I,Above,Gable,0,5701,,17.51248703,0,0,,,,1,1,,0.03,nav,1,1926,1,, 10274,NJBF000061584,405 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33790418,-74.63708563,RES1,3001,,16,NE,1988,1988,3101,1,1,2959.326575,2959.326575,3505,NO,18.14,28.3,3,5.75,6110,110.632586,120.825813,130.589429,136.626015,I,Above,Flat,0,5701,,23.21799996,0,1.2,,,,1,1,,0.35,nav,1,1988,1,, 10275,NJBF000062758,218 BLACKMAN ROAD,Egg Harbor,NJ,39.34016018,-74.5970167,RES1,3001,,16,NE,1985,1985,3102,1,1,2409.806734,2409.806734,3507,NO,13.2,25.57,1,2.53,6112,111.244767,121.476672,131.184877,137.424073,I,Above,Gable,0,5701,,19.38393215,0,1.2,,,,1,1,,0.35,nav,1,1985,1,, 10276,NJBF000065906,1116 LAKESIDE DRIVE,Egg Harbor,NJ,39.34841499,-74.59181928,RES1,3001,,16,NE,1969,1969,3101,1,1,2043.338852,2043.338852,3505,NO,18.39,28.09,3,6.34,6106,111.204417,121.472194,131.174378,137.410417,I,Above,Gable,0,5701,,23.24330522,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10277,NJBF000062862,205 LAKEVIEW DRIVE,Egg Harbor,NJ,39.34037868,-74.61025477,RES1,3001,,16,NE,1974,1974,3102,1,1,2935.921025,2935.921025,3505,NO,16.22,28.02,3,-2.11,6106,110.996127,121.248089,130.972328,137.146172,I,Above,Gable,0,5701,,22.11795581,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 10278,NJBF000063519,211 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34192477,-74.59832839,RES1,3001,,16,NE,1965,1965,3102,2,1,2007.722535,2007.722535,3507,NO,27.55,33.29,1,2.88,6112,111.187822,121.433882,131.143821,137.370998,I,Above,Hip,0,5701,,30.42205485,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 10279,NJBF000069712,3426 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36319955,-74.58059006,RES1,3001,,16,NE,1965,1965,3101,1,1,4325.126086,4325.126086,3507,NO,17.03,27.89,1,2.95,6112,111.223784,121.505043,131.185053,137.421741,I,Above,Gable,0,5701,,22.45520545,0,1.2,,,,1,1,,0.35,nav,1,1965,1,, 10280,NJBF000069540,312 CENTRAL AVENUE,Egg Harbor,NJ,39.36142306,-74.57772035,RES1,3001,,16,NE,1976,1976,3101,2,2,1109.212886,1109.212886,3507,NO,36.33,47.35,1,0.71,6106,111.311891,121.573427,131.253502,137.508195,I,Above,Gable,0,5701,,41.83754115,0,0,,,,1,1,,0.03,nav,1,1976,2,, 10281,NJBF000055461,29 SOMERS AVENUE,Egg Harbor,NJ,39.32616019,-74.64427854,RES1,3001,,16,NE,1964,1964,3102,1,1,1927.820853,1927.820853,3505,NO,10.05,24.21,3,-2.96,6106,110.752344,120.858838,130.607935,136.65014,I,Above,Hip,0,5701,,17.12996077,0,0,,,,1,1,,0.03,nav,1,1964,1,, 10282,NJBF000055376,29 SOMERS AVENUE,Egg Harbor,NJ,39.3259257,-74.64437023,RES1,3001,,16,NE,1964,1964,3102,1,1,1567.654523,1567.654523,3505,NO,19.26,31.6,3,-0.13,6106,110.755357,120.860473,130.609056,136.651694,I,Above,Flat,0,5701,,25.43279913,0,0,,,,1,1,,0.03,nav,1,1964,1,, 10283,NJBF000062658,100 ANITA DRIVE,Egg Harbor,NJ,39.33993452,-74.59492669,RES1,3001,,16,NE,1970,1970,3102,2,1,2244.548364,2244.548364,3507,NO,29.63,35.9,1,-0.19,6106,111.289362,121.515092,131.221083,137.470716,I,Above,Gable,0,5701,,32.76497331,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 10284,NJBF000063834,600 NATHAN LANE,Egg Harbor,NJ,39.34283792,-74.64031939,RES1,3001,,16,NE,1981,1981,3101,1,1,2390.54901,2390.54901,3505,NO,23.35,32.53,3,4.62,6112,110.501176,120.712038,130.488013,136.485757,I,Above,Gable,0,5701,,27.93942822,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10285,NJBF000067578,1432 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.353876,-74.681287,RES1,3001,,16,NE,1968,1968,3102,1,1,701.1137568,701.1137568,3505,NO,18.23,24.31,3,7.7,6112,109.940415,119.945491,129.794689,135.471709,I,Above,Gable,0,5701,,21.26917974,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 10286,NJBF000055246,36 SOMERS AVENUE,Egg Harbor,NJ,39.32555916,-74.64289872,RES1,3001,,16,NE,1966,1966,3102,1,1,2650.35617,2650.35617,3505,NO,16.64,24.25,3,-2.22,6106,110.781113,120.888805,130.634898,136.687474,I,Above,Gable,0,5701,,20.44639082,0,1.2,,,,1,1,,0.03,nav,1,1966,1,, 10287,NJBF000065829,1119 FURMAN DRIVE,Egg Harbor,NJ,39.34819881,-74.59281636,RES1,3001,,16,NE,1969,1969,3101,1,1,1986.945488,1986.945488,3505,NO,23.35,31.73,3,7.38,6106,111.187613,121.457461,131.160755,137.39291,I,Above,Gable,0,5701,,27.5406204,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10288,NJBF000065590,1553 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3475425,-74.6604715,RES1,3001,,16,NE,1900,1900,3101,2,1,840.8309406,840.8309406,3507,NO,27.88,39.46,1,0.11,6112,110.206169,120.321722,130.14698,135.997548,I,Above,Gable,0,5701,,33.66616296,0,1.2,,,,1,1,,0.35,nav,1,1900,2,, 10289,NJBF000062892,4051 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34044871,-74.60050924,RES1,3001,,16,NE,1974,1974,3102,1,1,1955.091888,1955.091888,3507,NO,18.42,31.41,1,0.97,6112,111.172788,121.413556,131.125675,137.347392,I,Above,Hip,0,5701,,24.91665524,0,0,,,,1,1,,0.15,nav,1,1974,1,, 10290,NJBF000063432,146 BEVIS MILL ROAD,Egg Harbor,NJ,39.3417168,-74.64100794,RES1,3001,,16,NE,1986,1986,3101,1,1,1410.701752,1410.701752,3505,NO,18.44,26.81,3,2.71,6106,110.513079,120.714063,130.489985,136.488127,I,Above,Hip,0,5701,,22.62288349,0,0,,,,1,1,,0.03,nav,1,1986,1,, 10291,NJBF000073141,1182 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37819377,-74.71260325,RES1,3001,,16,NE,1951,1951,3102,1,1,1866.60423,1866.60423,3507,NO,15,21.94,1,-0.3,6106,109.473988,119.386201,129.152828,134.46222,I,Above,Gable,0,5701,,18.47062935,0,1.2,,,,1,1,,0.03,nav,1,1951,1,, 10292,NJBF000060788,394 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33654804,-74.63694375,RES1,3001,,16,NE,1988,1988,3101,2,1,2181.094372,2181.094372,3505,NO,35.19,44.13,3,5.71,6106,110.659456,120.844924,130.606225,136.649007,I,Above,Hip,0,5701,,39.65913109,0,0,,,,1,1,,0.03,nav,1,1988,2,, 10293,NJBF000052623,1809 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31604989,-74.63236141,COM3,3001,,NaN,ME,1969,0,3401,2,1,6048.903217,6048.903217,3507,NO,38.6,48.86,1,1.88,6106,111.10021,121.18299,130.895557,137.043258,I,Above,Flat,0,NaN,,43.72909681,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10294,NJBF000065956,1108 JORENE DRIVE,Egg Harbor,NJ,39.34853137,-74.58750622,RES1,3001,,16,NE,1973,1973,3101,2,1,1357.881415,1357.881415,3505,NO,35.54,42.86,3,0.97,6112,111.292043,121.545146,131.243091,137.498264,I,Above,Gable,0,5701,,39.20262564,0,1.1,,,,1,1,,0.35,nav,1,1973,2,, 10295,NJBF000065552,103 BAKER PLACE ROAD,Egg Harbor,NJ,39.34744819,-74.66290639,RES1,3001,,16,NE,1998,1998,3101,2,1,1381.030585,1381.030585,3507,NO,38.64,45.54,1,2.08,6112,110.185018,120.283311,130.113698,135.948513,I,Above,Gable,0,5701,,42.0925996,0,0,,,,1,1,,0.35,nav,1,1998,2,, 10296,NJBF000065635,103 BAKER PLACE ROAD,Egg Harbor,NJ,39.34766583,-74.66294155,RES1,3001,,16,NE,1998,1998,3101,2,1,672.28015,672.28015,3507,NO,27.02,41.38,1,-0.81,6110,110.181348,120.279978,130.110908,135.944502,I,Above,Gable,0,5701,,34.20204809,0,0,,,,1,1,,0.35,nav,1,1998,2,, 10297,NJBF000065270,119 WHARF ROAD,Egg Harbor,NJ,39.3465919,-74.67320222,RES1,3001,,16,NE,1980,1980,3102,1,1,2651.938297,2651.938297,3505,NO,12.81,24.35,3,-1.09,6112,110.105679,120.137129,129.979258,135.748174,I,Above,Gable,0,5701,,18.58251861,0,0,,,,1,1,,0.35,nav,1,1980,1,, 10298,NJBF000052601,1822 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31589,-74.6307145,COM3,3001,,16,ME,1984,1984,3401,1,1,754.0307407,754.0307407,3507,NO,17.96,31.84,1,2.02,6106,111.127387,121.211657,130.922572,137.079457,I,Above,Flat,0,NaN,,24.90043636,0,0,,,,1,1,,0.03,nav,1,1984,1,, 10299,NJBF000063552,9 MAY DRIVE,Egg Harbor,NJ,39.34203077,-74.60983385,RES1,3001,,16,NE,1971,1971,3102,2,1,1921.783164,1921.783164,3505,NO,29.14,42.49,3,7,6106,110.972552,121.23609,130.96037,137.130589,I,Above,Gable,0,5701,,35.814585,0,1.2,,,,1,1,,0.03,nav,1,1971,2,, 10300,NJBF000069652,300 CENTRAL AVENUE,Egg Harbor,NJ,39.36250905,-74.57999635,RES1,3001,,17,NE,1988,1988,3101,2,1,4331.253413,4331.253413,3507,NO,36.15,47.78,1,1.65,6112,111.246282,121.522607,131.203019,137.444545,I,Above,Gable,0,5701,,41.96627809,0,1.1,,,,1,1,,0.35,nav,1,1988,2,, 10301,NJBF000056061,1742 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3276418,-74.63956941,RES1,3001,560,NaN,NE,1969,0,3102,2,1,4245.148962,4245.148962,3505,NO,26.02,35.26,3,2.97,6106,110.787585,120.915165,130.662606,136.725756,I,Above,Gable,0,5701,,30.63864113,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10302,NJBF000071686,3358 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37128058,-74.58095425,RES1,3001,,16,NE,1955,1955,3101,1,1,653.5263806,653.5263806,3507,NO,20.07,28.27,1,1.8,6112,111.117585,121.414352,131.08287,137.290796,I,Above,Gable,0,5701,,24.17247114,0,1.1,,,,1,1,,0.15,nav,1,1955,1,, 10303,NJBF000063571,3 BEAVER DRIVE,Egg Harbor,NJ,39.34208179,-74.61108081,RES1,3001,,16,NE,1986,1986,3102,2,1,2158.161981,2158.161981,3505,NO,30.44,43.6,3,3.46,6112,110.949649,121.214263,130.940288,137.103947,I,Above,Gable,0,5701,,37.02001177,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 10304,NJBF000055104,35 SOMERS AVENUE,Egg Harbor,NJ,39.325132,-74.6434855,RES1,3001,,16,NE,1965,1965,3102,1,1,1847.848821,1847.848821,3505,NO,16.84,24.82,3,5.18,6106,110.781105,120.885069,130.630666,136.681627,I,Above,Gable,0,5701,,20.82949976,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 10305,NJBF000075231,1113 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38912374,-74.71739665,RES1,3001,,16,NE,1997,1997,3102,2,1,1060.264245,1060.264245,3507,NO,37.14,45.52,1,-0.61,6112,109.362777,119.244743,128.991372,134.200501,I,Above,Hip,0,5701,,41.32994797,0,1.1,,,,1,1,,0.35,nav,1,1997,2,, 10306,NJBF000065996,1115 FURMAN DRIVE,Egg Harbor,NJ,39.34864714,-74.59237455,RES1,3001,,16,NE,1969,1969,3101,1,1,2655.402124,2655.402124,3505,NO,13.63,21.13,3,1.76,6110,111.189069,121.460044,131.162722,137.395429,I,Above,Gable,0,5701,,17.37787974,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10307,NJBF000057458,133 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33060575,-74.64848096,RES1,3001,,16,NE,1994,1994,3102,2,1,2625.283369,2625.283369,3505,NO,23.75,32.39,3,-1.6,6112,110.620468,120.733226,130.498652,136.497809,I,Above,Hip,0,5701,,28.07080907,0,0,,,,1,1,,0.35,nav,1,1994,2,, 10308,NJBF000065997,130 CINDY DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1861.39892,1861.39892,3505,NO,20.2,31.5,3,2.47,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,25.85137021,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 10309,NJBF000073073,3308 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37730951,-74.57923266,RES1,3001,,16,NE,1960,1960,3102,1,1,2476.331266,2476.331266,3507,NO,10.28,20.56,1,-0.63,6112,111.095855,121.382175,131.038635,137.233507,I,Above,Hip,0,5701,,15.42138689,0,0,,,,1,1,,0.35,nav,1,1960,1,, 10310,NJBF000066351,8065 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.34953906,-74.67125223,RES1,3001,,16,NE,1987,1987,3102,1,1,1421.31069,1421.31069,3505,NO,26.15,35.35,3,7.78,6106,110.080345,120.12423,129.975788,135.744344,I,Above,Gable,0,5701,,30.75052455,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 10311,NJBF000062410,113 LAUTOKA DRIVE,Egg Harbor,NJ,39.33939678,-74.63896529,RES1,3001,,16,NE,1997,1997,3101,1,1,1720.318985,1720.318985,3505,NO,16.98,29.97,3,-0.89,6110,110.580858,120.776284,130.545306,136.56494,I,Above,Gable,0,5701,,23.47534174,0,0,,,,1,1,,0.35,nav,1,1997,1,, 10312,NJBF000063090,19 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34087274,-74.59492694,RES1,3001,,16,NE,1995,1995,3102,2,1,2818.803072,2818.803072,3507,NO,34.43,42.67,1,1.7,6112,111.272721,121.504275,131.210432,137.456994,I,Above,Gable,0,5701,,38.54845689,0,0,,,,1,1,,0.35,nav,1,1995,2,, 10313,NJBF000058118,122 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.3317425,-74.645434,RES1,3001,,15,NE,1950,1950,3102,1,2,1435.114715,1435.114715,3505,NO,16.52,30.71,3,3.43,6106,110.63784,120.767176,130.531566,136.5441,I,Above,Gable,0,5701,,23.6130063,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 10314,NJBF000055832,19 SOMERS AVENUE,Egg Harbor,NJ,39.32708643,-74.64513488,RES1,3001,,16,NE,1990,1990,3102,2,1,1480.479335,1480.479335,3505,NO,42.47,52.21,3,7.9,6112,110.724769,120.832969,130.585391,136.618847,I,Above,Gable,0,5701,,47.3404446,0,0,,,,1,1,,0.35,nav,1,1990,2,, 10315,NJBF000070913,702 DELAWARE AVENUE,Egg Harbor,NJ,39.36883847,-74.58101326,RES1,3001,,NaN,NE,1969,0,3101,1,1,1831.996038,1831.996038,3507,NO,19.85,27.42,1,2.49,6106,111.143989,121.438622,131.111106,137.327018,I,Above,Gable,0,5701,,23.63570862,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10316,NJBF000064500,1583 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3446435,-74.6545105,RES1,3001,,16,NE,1970,1970,3101,1,1,1184.670041,1184.670041,3507,NO,20.77,35.33,1,2.42,6112,110.311179,120.455137,130.26236,136.164464,I,Above,Gable,0,5701,,28.05168457,0,0,,,,1,1,,0.35,nav,1,1970,1,, 10317,NJBF000062176,155 ROBERT BEST ROAD,Egg Harbor,NJ,39.33892901,-74.63860934,RES1,3001,,16,NE,1960,1960,3101,1,1,641.6167076,641.6167076,3505,NO,14.03,21.54,3,-0.65,6106,110.593981,120.787933,130.555657,136.579258,I,Above,Gable,0,5701,,17.78303808,0,0,,,,1,1,,0.03,nav,1,1960,1,, 10318,NJBF000062249,108 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.3390835,-74.6408695,RES1,3001,,16,NE,2011,2011,3101,2,1,887.0778232,887.0778232,3505,NO,31.42,40.63,3,2.22,6110,110.562559,120.74857,130.520471,136.530094,I,Above,Gable,0,5701,,36.02501391,0,0,,,,1,1,,0.35,nav,1,2011,2,, 10319,NJBF000064496,614 NATHAN LANE,Egg Harbor,NJ,39.34463448,-74.63915141,RES1,3001,,16,NE,1981,1981,3101,1,1,1471.457251,1471.457251,3505,NO,14.69,21.99,3,3.43,6112,110.482788,120.710241,130.485745,136.483268,I,Above,Hip,0,5701,,18.33794086,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 10320,NJBF000064400,612 NATHAN LANE,Egg Harbor,NJ,39.34439104,-74.63930841,RES1,3001,,16,NE,1981,1981,3101,1,1,1389.067128,1389.067128,3505,NO,25.05,31.29,3,5.81,6112,110.485296,120.710474,130.486071,136.483628,I,Above,Gable,0,5701,,28.17175397,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 10321,NJBF000062465,5 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33951958,-74.611474,RES1,3001,,16,NE,1978,1978,3102,2,1,2418.632648,2418.632648,3505,NO,30.68,43.85,3,2.41,6110,110.991029,121.237392,130.962869,137.133503,I,Above,Gable,0,5701,,37.26468196,0,0,,,,1,1,,0.35,nav,1,1978,2,, 10322,NJBF000062828,2 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34031445,-74.61086026,RES1,3001,,16,NE,1980,1980,3102,2,1,1666.118394,1666.118394,3505,NO,33.4,38.68,3,1.62,6110,110.986763,121.238554,130.963583,137.134571,I,Above,Gable,0,5701,,36.03663799,0,1.2,,,,1,1,,0.35,nav,1,1980,2,, 10323,NJBF000066118,4 BONNIE DRIVE,Egg Harbor,NJ,39.34896558,-74.5937217,RES1,3001,,16,NE,1969,1969,3101,2,1,1691.97456,1691.97456,3505,NO,43.25,51.36,3,7.2,6110,111.156049,121.433334,131.137324,137.362717,I,Above,Hip,0,5701,,47.30385775,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10324,NJBF000081869,133 SUMMIT AVENUE,Egg Harbor,NJ,39.42397052,-74.52954911,COM1,3001,,16,ME,1990,1990,3401,2,1,2632.08729,2632.08729,3507,NO,24.09,29.7,1,-0.57,6112,111.866698,121.76337,131.352398,137.505131,I,Above,Gable,0,NaN,,26.89606984,0,0,,,,1,1,,0.35,nav,1,1990,2,, 10325,NJBF000066299,1105 LAKESIDE DRIVE,Egg Harbor,NJ,39.34942814,-74.5902569,RES1,3001,,16,NE,1969,1969,3101,1,1,1986.57326,1986.57326,3505,NO,11.81,16.91,3,-0.65,6110,111.219803,121.487788,131.188001,137.427834,I,Above,Gable,0,5701,,14.36036455,0,0,,,,1,1,,0.35,nav,1,1969,1,, 10326,NJBF000063205,17 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34111706,-74.59513662,RES1,3001,,16,NE,1994,1994,3102,2,1,2807.459957,2807.459957,3507,NO,30.79,37.73,1,0.75,6112,111.264283,121.497866,131.204273,137.449064,I,Above,Gable,0,5701,,34.26240864,0,0,,,,1,1,,0.35,nav,1,1994,2,, 10327,NJBF000072815,3324 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37504466,-74.57822008,RES1,3001,,16,NE,1968,1968,3102,2,1,1930.519243,1930.519243,3507,NO,33.37,44.44,1,0.45,6112,111.140722,121.422567,131.082716,137.289432,I,Above,Gable,0,5701,,38.90482042,0,0,,,,1,1,,0.35,nav,1,1968,2,, 10328,NJBF000062848,153 BEVIS MILL ROAD,Egg Harbor,NJ,39.34035225,-74.64016595,RES1,3001,,16,NE,1975,1975,3101,1,1,1472.163972,1472.163972,3505,NO,24.65,33.36,3,6.49,6112,110.548279,120.744659,130.517181,136.525866,I,Above,Gable,0,5701,,29.00511713,0,0,,,,1,1,,0.35,nav,1,1975,1,, 10329,NJBF000075748,205 HARBOR DRIVE,Egg Harbor,NJ,39.39097126,-74.71895626,RES1,3001,,17,NE,2015,2015,3102,1,1,3685.621524,3685.621524,3507,NO,18.62,29.91,1,1.64,6106,109.340276,119.212614,128.955492,134.141161,I,Above,Gable,0,5701,,24.26812442,0,1.2,,,,1,1,,0.03,nav,1,2015,1,, 10330,NJBF000066128,1103 JORENE DRIVE,Egg Harbor,NJ,39.34899366,-74.58646075,RES1,3001,,16,NE,1969,1969,3101,2,1,1871.025438,1871.025438,3505,NO,36.61,42.85,3,3.34,6110,111.306417,121.557997,131.254806,137.513099,I,Above,Gable,0,5701,,39.7311916,0,0,,,,1,1,,0.35,nav,1,1969,2,, 10331,NJBF000062516,1635 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1780,3101,2,1,1726.761174,1726.761174,3505,NO,43.07,48.86,3,8.38,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,45.96732407,0,1.2,,,,1,1,,0.03,nav,1,1979,2,, 10332,NJBF000058806,112 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33296817,-74.64449849,RES1,3001,,16,NE,1860,1860,3102,2,1,803.6644662,803.6644662,3505,NO,26.57,33.14,3,1.91,6106,110.627581,120.766414,130.532358,136.545382,I,Above,Gable,0,5701,,29.85554146,0,1.2,,,,1,1,,0.03,nav,1,1860,2,, 10333,NJBF000069543,290 ASBURY ROAD,Egg Harbor,NJ,39.36146254,-74.67092529,REL1,3001,,NaN,ME,1969,0,3401,2,1,1947.972988,1947.972988,3507,NO,22.17,28.44,1,-0.62,6112,109.924726,120.016502,129.856577,135.571724,I,Above,Gable,0,5701,,25.30418786,0,0,,,,1,1,,0.7,nav,1,1969,2,, 10334,NJBF000064300,139 WHARF ROAD,Egg Harbor,NJ,39.34414705,-74.67608411,RES1,3001,,16,NE,1929,1929,3102,1,1,2011.849686,2011.849686,3505,NO,13.54,24.3,3,-2.53,6106,110.115629,120.13203,129.964567,135.72518,I,Above,Hip,0,5701,,18.91913193,0,1.2,,,,1,1,,0.03,nav,1,1929,1,, 10335,NJBF000053448,84 SOMERS AVENUE,Egg Harbor,NJ,39.31997111,-74.63829058,RES1,3001,,16,NE,1940,1940,3102,1,1,1937.058429,1937.058429,3505,NO,17.45,29.45,3,-1.34,6106,110.944305,121.036163,130.76349,136.864234,I,Above,Gable,0,5701,,23.45006913,0,0,,,,1,1,,0.03,nav,1,1940,1,, 10336,NJBF000062108,5 GLEN AIRE DRIVE,Egg Harbor,NJ,39.3388099,-74.61588814,RES1,3001,,16,NE,2003,2003,3102,2,1,3920.360812,3920.360812,3505,NO,28.4,40.3,3,0.16,6112,110.929631,121.170837,130.902024,137.052355,I,Above,Hip,0,5701,,34.35116557,0,0,,,,1,1,,0.35,nav,1,2003,2,, 10337,NJBF000067025,174 THOMPSONS LANE,Egg Harbor,NJ,39.35173317,-74.70297103,RES1,3001,,16,NE,1991,1991,3101,1,1,1183.621622,1183.621622,3507,NO,14.76,28.87,1,2.23,6110,109.800062,119.731587,129.529457,135.056974,I,Above,Flat,0,5701,,21.81359244,0,0,,,,1,1,,0.35,nav,1,1991,1,, 10338,NJBF000064080,104 NANCY DRIVE,Egg Harbor,NJ,39.34351405,-74.59172047,RES1,3001,,16,NE,1995,1995,3102,2,1,2783.163253,2783.163253,3507,NO,25.9,40.29,1,-0.86,6106,111.290176,121.529123,131.232187,137.484805,I,Above,Gable,0,5701,,33.09472455,0,0,,,,1,1,,0.03,nav,1,1995,2,, 10339,NJBF000068930,3534 BARGAINTOWN ROAD,Egg Harbor,NJ,39.35805051,-74.58051923,RES1,3001,,16,NE,1953,1953,3101,1,1,1678.518665,1678.518665,3507,NO,17.14,28.12,1,0.14,6112,111.296122,121.561301,131.246895,137.501093,I,Above,Gable,0,5701,,22.62949098,0,1.2,,,,1,1,,0.35,nav,1,1953,1,, 10340,NJBF000074385,1133 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38617344,-74.7164196,IND2,3001,510,NaN,ME,1969,0,3401,3,1,3939.907332,3939.907332,3507,NO,52.76,62.2,1,2.29,6110,109.389255,119.279161,129.030847,134.26464,I,Above,Gable,0,NaN,,57.47905495,0,0,,,,1,1,,1,nav,1,1969,3,, 10341,NJBF000064297,135 WHARF ROAD,Egg Harbor,NJ,39.34413794,-74.67484814,RES1,3001,,16,NE,1960,1960,3102,1,1,2385.517176,2385.517176,3505,NO,11.12,25.34,3,-2.13,6106,110.126668,120.148796,129.981699,135.750872,I,Above,Gable,0,5701,,18.22973232,0,0,,,,1,1,,0.03,nav,1,1960,1,, 10342,NJBF000066541,1462 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3500161,-74.67665484,RES1,3001,,16,NE,1974,1974,3102,1,1,3170.001253,3170.001253,3505,NO,19.17,24.9,3,0.91,6106,110.028424,120.043699,129.896782,135.625417,I,Above,Gable,0,5701,,22.03239553,0,1.2,,,,1,1,,0.03,nav,1,1974,1,, 10343,NJBF000061892,103 LAUTOKA DRIVE,Egg Harbor,NJ,39.33842865,-74.64005766,RES1,3001,,16,NE,1988,1988,3101,1,1,1639.637441,1639.637441,3505,NO,27.48,38.87,3,8.1,6110,110.584666,120.770082,130.539549,136.556618,I,Above,Hip,0,5701,,33.17213522,0,0,,,,1,1,,0.35,nav,1,1988,1,, 10344,NJBF000060834,398 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33661489,-74.63777914,RES1,3001,,16,NE,2011,2011,3101,1,1,1446.487662,1446.487662,3505,NO,17.36,30.85,3,6.21,6106,110.647227,120.830273,130.593033,136.630708,I,Above,Hip,0,5701,,24.10355498,0,0,,,,1,1,,0.03,nav,1,2011,1,, 10345,NJBF000057007,1730 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32972328,-74.6400281,RES1,3001,,16,NE,1975,1975,3102,1,1,3311.579238,3311.579238,3505,NO,24.32,32.68,3,5.34,6106,110.74363,120.88079,130.6335,136.685708,I,Above,Gable,0,5701,,28.50180934,0,0,,,,1,1,,0.03,nav,1,1975,1,, 10346,NJBF000067774,8035 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.354465,-74.670005,RES1,3001,,16,NE,1987,1987,3102,2,1,1763.268328,1763.268328,3505,NO,44.2,58.69,3,8.7,6106,110.022186,120.084504,129.941902,135.696172,I,Above,Gable,0,5701,,51.44419645,0,0,,,,1,1,,0.03,nav,1,1987,2,, 10347,NJBF000065948,7 BONNIE DRIVE,Egg Harbor,NJ,39.34851424,-74.59419582,RES1,3001,,16,NE,1969,1969,3101,2,1,1186.348712,1186.348712,3505,NO,33.21,38.28,3,2.56,6106,111.154078,121.430226,131.13489,137.359575,I,Above,Flat,0,5701,,35.74607508,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10348,NJBF000066030,7 BONNIE DRIVE,Egg Harbor,NJ,39.34872656,-74.59429976,RES1,3001,,16,NE,1969,1969,3101,2,1,1904.19682,1904.19682,3505,NO,23.18,28.18,3,-0.19,6106,111.148321,121.426064,131.130768,137.354256,I,Above,Gable,0,5701,,25.68258126,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10349,NJBF000056758,2 SOMERS AVENUE,Egg Harbor,NJ,39.32919567,-74.64596991,RES1,3001,,16,NE,1994,1994,3102,1,1,1291.186206,1291.186206,3505,NO,20.04,33.56,3,3.81,6110,110.676539,120.791859,130.550655,136.570539,I,Above,Gable,0,5701,,26.79884417,0,0,,,,1,1,,0.35,nav,1,1994,1,, 10350,NJBF000056734,2 SOMERS AVENUE,Egg Harbor,NJ,39.329142,-74.6457765,RES1,3001,,16,NE,1994,1994,3102,1,1,781.2941035,781.2941035,3505,NO,18.7,25.98,3,2.78,6106,110.679941,120.795672,130.554101,136.575347,I,Above,Gable,0,5701,,22.33621759,0,0,,,,1,1,,0.03,nav,1,1994,1,, 10351,NJBF000066362,1500 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34956561,-74.67056528,RES1,3001,,16,NE,1840,1840,3102,2,1,2309.732606,2309.732606,3505,NO,38.21,44.16,3,3.06,6110,110.085822,120.134283,129.984988,135.758158,I,Above,Hip,0,5701,,41.18534654,0,1.2,,,,1,1,,0.35,nav,1,1840,2,, 10352,NJBF000066394,1500 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34964929,-74.6701765,RES1,3001,,16,NE,1840,1840,3102,2,1,796.15605,796.15605,3505,NO,36.64,51.39,3,3.93,6110,110.087963,120.139142,129.989501,135.764965,I,Above,Gable,0,5701,,44.01436045,0,1.2,,,,1,1,,0.15,nav,1,1840,2,, 10353,NJBF000064523,110 BAKER PLACE ROAD,Egg Harbor,NJ,39.34471,-74.6634155,RES1,3001,,16,NE,1987,1987,3101,2,1,1023.790301,1023.790301,3507,NO,22.68,30.8,1,-0.53,6112,110.222577,120.310542,130.135187,135.978941,I,Above,Gable,0,5701,,26.73687288,0,0,,,,1,1,,0.35,nav,1,1987,2,, 10354,NJBF000065356,164 BLACKMAN ROAD,Egg Harbor,NJ,39.34682852,-74.59097684,RES1,3001,,16,NE,1997,1997,3101,1,1,2145.911016,2145.911016,3505,NO,23,28.54,3,5.36,6106,111.248512,121.504431,131.206248,137.451376,I,Above,Gable,0,5701,,25.77049786,0,0,,,,1,1,,0.03,nav,1,1997,1,, 10355,NJBF000065252,164 BLACKMAN ROAD,Egg Harbor,NJ,39.34653203,-74.59050685,RES1,3001,,16,NE,1997,1997,3101,1,1,616.2129874,616.2129874,3505,NO,21.8,33.68,3,3.8,6106,111.263177,121.515854,131.217282,137.465523,I,Above,Gable,0,5701,,27.73944867,0,0,,,,1,1,,0.03,nav,1,1997,1,, 10356,NJBF000081901,133 HOLLY ROAD,Egg Harbor,NJ,39.42439816,-74.51837505,RES1,3001,,17,NE,1990,1990,3102,1,1,1271.079553,1271.079553,3505,NO,18.38,32.04,3,5.98,6112,112.09524,121.952287,131.557884,137.719232,I,Above,Flat,0,5701,,25.20797714,0,0,,,,1,1,,0.35,nav,1,1990,1,, 10357,NJBF000074622,7005 BLACK HORSE PIKE,Egg Harbor,NJ,39.38722012,-74.51749691,RES1,3001,,16,NE,1940,1940,3102,2,1,1734.952205,1734.952205,3505,NO,23.73,31.18,3,-2.47,6106,112.395404,122.351684,132.009644,138.328546,I,Above,Gable,0,5701,,27.45706453,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10358,NJBF000074504,400 BAY DRIVE,Egg Harbor,NJ,39.38673337,-74.5188691,RES1,3001,,16,NE,1955,1955,3102,2,1,1822.827903,1822.827903,3505,NO,42.53,48.21,3,7.09,6106,112.369451,122.332589,131.989808,138.309391,I,Above,Hip,0,5701,,45.36631819,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 10359,NJBF000074254,203 SEVILLE AVENUE,Egg Harbor,NJ,39.38558969,-74.51028437,RES1,3001,,16,NE,1951,1951,3102,1,1,1116.91921,1116.91921,3505,NO,19.28,33.8,3,6.34,6106,112.570961,122.496352,132.163855,138.495402,I,Above,Flat,0,5701,,26.53943636,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 10360,NJBF000074280,201 SEVILLE AVENUE,Egg Harbor,NJ,39.3857111,-74.51020793,RES1,3001,,16,NE,1951,2010,3102,2,1,1192.828971,1192.828971,3505,NO,27.04,35.49,3,-2.71,6106,112.571484,122.496425,132.163872,138.494936,I,Above,Flat,0,5701,,31.2627382,0,0,,,,1,1,,0.03,nav,1,1951,2,, 10361,NJBF000082293,36 ABLES RUN DRIVE,Egg Harbor,NJ,39.42869434,-74.52572594,RES1,3001,,37,NE,2007,2007,3102,2,1,7387.508721,7387.508721,3505,NO,34.51,48.71,3,-0.96,6112,111.919049,121.781212,131.369835,137.506139,I,Above,Hip,0,5701,,41.61194269,0,0,,,,1,1,,0.35,nav,1,2007,2,, 10362,NJBF000081939,107 SUMMIT AV (JOSEPH LA),Egg Harbor,NJ,39.42471563,-74.52646713,COM1,3001,,17,ME,1954,1954,3401,1,1,3044.176935,3044.176935,3507,NO,16.25,29.03,1,2.45,6112,111.926043,121.808909,131.401582,137.554462,I,Above,Gable,0,NaN,,22.63902781,0,1.1,,,,1,1,,0.35,nav,1,1954,1,, 10363,NJBF000074586,7007 BLACK HORSE PIKE,Egg Harbor,NJ,39.38711427,-74.51722738,RES1,3001,,16,NE,1929,1929,3102,2,2,1519.676062,1519.676062,3505,NO,44.73,54.7,3,6.5,6106,112.402386,122.35756,132.015927,138.335538,I,Above,Hip,0,5701,,49.71619759,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 10364,NJBF000074335,7052 BLACK HORSE PIKE,Egg Harbor,NJ,39.38594415,-74.50794114,COM1,3003,,NaN,ME,1969,0,3401,1,1,5811.578009,5811.578009,3507,NO,11.74,17.83,1,0.23,6106,112.619516,122.534168,132.203869,138.535096,I,Above,Flat,0,NaN,,14.78504648,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10365,NJBF000074396,201 FLORENCE AVENUE,Egg Harbor,NJ,39.38622451,-74.51485629,RES1,3001,,16,NE,1998,1998,3102,1,1,1843.119417,1843.119417,3505,NO,15.02,21.16,3,-0.55,6106,112.463392,122.408762,132.070658,138.396188,I,Above,Gable,0,5701,,18.09017069,0,1.1,,,,1,1,,0.03,nav,1,1998,1,, 10366,NJBF000074355,201 FLORENCE AVENUE,Egg Harbor,NJ,39.38604594,-74.51496659,RES1,3001,,16,NE,1998,1998,3102,1,1,1696.740994,1696.740994,3505,NO,17.29,28.73,3,3.85,6106,112.462621,122.40868,132.07068,138.396884,I,Above,Flat,0,5701,,23.01406303,0,1.1,,,,1,1,,0.03,nav,1,1998,1,, 10367,NJBF000073142,,Egg Harbor,NJ,39.37822954,-74.4885919,COM1,3003,,NaN,ME,1969,0,3401,3,1,3667.453829,3667.453829,3507,NO,50.03,56.76,1,-0.84,6106,113.126443,122.960951,132.661388,139.025723,I,Above,Flat,0,NaN,,53.39029739,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10368,NJBF000052123,1 POINT DRIVE,Egg Harbor,NJ,39.31299958,-74.57951414,RES1,3001,,16,NE,1959,1959,3102,1,1,1429.704636,1429.704636,3507,NO,16.17,31.14,1,1.65,6106,112.065215,122.101177,131.775726,138.169815,I,Above,Flat,0,5701,,23.65264453,0,0,,,,1,1,,0.03,nav,1,1959,1,, 10369,NJBF000074341,206 PALERMO AVENUE,Egg Harbor,NJ,39.3859709,-74.51534775,RES1,3001,,16,NE,1957,1957,3102,1,1,1796.031579,1796.031579,3505,NO,24.85,33.07,3,5.64,6106,112.454866,122.402735,132.064436,138.390634,I,Above,Gable,0,5701,,28.96235316,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 10370,NJBF000074262,205 EAST PLAZA PLACE,Egg Harbor,NJ,39.38563596,-74.51127531,RES1,3001,,16,NE,1954,1954,3102,2,1,1062.30548,1062.30548,3505,NO,28.19,42.04,3,-0.16,6106,112.548524,122.478311,132.144688,138.47542,I,Above,Gable,0,5701,,35.111974,0,0,,,,1,1,,0.03,nav,1,1954,2,, 10371,NJBF000074234,207 EAST PLAZA PLACE,Egg Harbor,NJ,39.38549207,-74.51138098,RES1,3001,,16,NE,1948,1948,3102,1,1,1031.582464,1031.582464,3505,NO,17.42,31.64,3,2.83,6106,112.547554,122.47795,132.144379,138.475667,I,Above,Gable,0,5701,,24.52763377,0,0,,,,1,1,,0.03,nav,1,1948,1,, 10372,NJBF000082317,72 ABLES RUN DRIVE,Egg Harbor,NJ,39.42894116,-74.52393504,RES1,3001,,37,NE,2006,2006,3102,2,1,7517.409843,7517.409843,3505,NO,38.68,46.84,3,6.47,6112,111.954272,121.809572,131.400727,137.537688,I,Above,Hip,0,5701,,42.75607081,0,0,,,,1,1,,0.03,nav,1,2006,2,, 10373,NJBF000081983,504 S MILL ROAD,Egg Harbor,NJ,39.425043,-74.52147699,RES1,3001,,17,NE,1940,1940,3102,1,1,699.9858408,699.9858408,3505,NO,14.24,27.4,3,0.4,6110,112.027153,121.891853,131.491792,137.647931,I,Above,Gable,0,5701,,20.8227458,0,0,,,,1,1,,0.35,nav,1,1940,1,, 10374,NJBF000069602,308 CENTRAL AVENUE,Egg Harbor,NJ,39.36202763,-74.5786485,RES1,3001,,16,NE,1950,1950,3101,1,1,7400.626151,7400.626151,3507,NO,16.52,25.48,1,1.92,6112,111.282972,121.550964,131.230981,137.479788,I,Above,Hip,0,5701,,20.99905686,0,1.2,,,,1,1,,0.35,nav,1,1950,1,, 10375,NJBF000062127,155 ROBERT BEST ROAD,Egg Harbor,NJ,39.33883782,-74.63845261,RES1,3001,,16,NE,1960,1960,3101,1,1,1769.626397,1769.626397,3505,NO,24.74,37.65,3,8.59,6106,110.597653,120.79164,130.55896,136.583842,I,Above,Gable,0,5701,,31.19166527,0,0,,,,1,1,,0.03,nav,1,1960,1,, 10376,NJBF000062283,153 ROBERT BEST ROAD,Egg Harbor,NJ,39.33914537,-74.63798213,RES1,3001,,16,NE,1950,1950,3101,1,1,1752.015947,1752.015947,3505,NO,19.36,30.36,3,1.38,6110,110.598082,120.795698,130.562641,136.589062,I,Above,Gable,0,5701,,24.86412329,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 10377,NJBF000062335,153 ROBERT BEST ROAD,Egg Harbor,NJ,39.33924264,-74.63800157,RES1,3001,,16,NE,1950,1950,3101,1,1,609.9379194,609.9379194,3505,NO,25.41,30.49,3,7.37,6110,110.596023,120.794167,130.561282,136.587195,I,Above,Gable,0,5701,,27.95348813,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 10378,NJBF000065568,15 JODEL LANE,Egg Harbor,NJ,39.34748097,-74.58742667,RES1,3001,,16,NE,1969,1969,3101,2,1,1758.648397,1758.648397,3505,NO,38.23,48.47,3,3.37,6106,111.311003,121.55824,131.256485,137.515446,I,Above,Gable,0,5701,,43.35333578,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10379,NJBF000056440,12 SOMERS AVENUE,Egg Harbor,NJ,39.32847597,-74.64531958,RES1,3001,,16,NE,2002,2002,3102,1,1,2745.322608,2745.322608,3505,NO,19.57,33.3,3,7.67,6112,110.697586,120.811716,130.567921,136.594581,I,Above,Flat,0,5701,,26.43767681,0,0,,,,1,1,,0.35,nav,1,2002,1,, 10380,NJBF000062705,8 OTTER LANE,Egg Harbor,NJ,39.3400523,-74.61398422,RES1,3001,,16,NE,2000,2000,3102,2,1,3650.378561,3650.378561,3505,NO,33.88,41.88,3,7.65,6106,110.938004,121.188526,130.917763,137.073592,I,Above,Gable,0,5701,,37.88057727,0,0,,,,1,1,,0.03,nav,1,2000,2,, 10381,NJBF000066465,10 DINA DRIVE,Egg Harbor,NJ,39.3498263,-74.58635171,RES1,3001,,16,NE,1969,1969,3101,1,1,1993.347954,1993.347954,3505,NO,10.88,17.74,3,-1.53,6112,111.295223,121.550629,131.24697,137.503018,I,Above,Gable,0,5701,,14.31104276,0,1.1,,,,1,1,,0.15,nav,1,1969,1,, 10382,NJBF000066236,1101 JORENE DRIVE,Egg Harbor,NJ,39.34925947,-74.58613219,RES1,3001,,16,NE,1969,1969,3101,2,1,1439.940556,1439.940556,3505,NO,36.3,48.11,3,5.86,6110,111.309048,121.56072,131.257122,137.516,I,Above,Gable,0,5701,,42.20114682,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10383,NJBF000065134,1559 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34622467,-74.65941665,RES1,3001,,16,NE,1990,1990,3101,2,1,1903.746802,1903.746802,3507,NO,30.26,35.3,1,1.99,6112,110.236901,120.355301,130.175758,136.039118,I,Above,Gable,0,5701,,32.78462853,0,0,,,,1,1,,0.15,nav,1,1990,2,, 10384,NJBF000065120,1559 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34618098,-74.65980882,RES1,3001,,16,NE,1990,1990,3101,2,1,857.4335536,857.4335536,3507,NO,22.47,29.07,1,0.01,6110,110.233837,120.349477,130.170672,136.031652,I,Above,Gable,0,5701,,25.77096637,0,0,,,,1,1,,0.15,nav,1,1990,2,, 10385,NJBF000065994,1114 LAKESIDE DRIVE,Egg Harbor,NJ,39.34864243,-74.59163032,RES1,3001,,16,NE,1969,1969,3101,1,1,2092.664102,2092.664102,3505,NO,14.6,28.54,3,1.66,6106,111.204488,121.472913,131.174822,137.410977,I,Above,Gable,0,5701,,21.56870457,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10386,NJBF000054774,48 SOMERS AVENUE,Egg Harbor,NJ,39.32427186,-74.64187282,RES1,3001,,16,NE,1996,1996,3102,1,1,1740.320948,1740.320948,3505,NO,19.58,27.02,3,7.06,6112,110.817842,120.922162,130.663902,136.727525,I,Above,Gable,0,5701,,23.29830917,0,0,,,,1,1,,0.35,nav,1,1996,1,, 10387,NJBF000063357,14 MAY DRIVE,Egg Harbor,NJ,39.34149603,-74.60965448,RES1,3001,,16,NE,1972,1972,3102,2,1,3150.243313,3150.243313,3505,NO,24.84,30.59,3,1.71,6106,110.985766,121.245345,130.969205,137.142208,I,Above,Gable,0,5701,,27.71206523,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 10388,NJBF000069730,6 VILLANOVA COURT,Egg Harbor,NJ,39.36344946,-74.68851649,RES1,3001,,16,NE,1999,1999,3101,2,1,3024.845873,3024.845873,3507,NO,36.46,49.57,1,2.63,6112,109.774667,119.779561,129.602092,135.178432,I,Above,Hip,0,5701,,43.01525061,0,0,,,,1,1,,0.35,nav,1,1999,2,, 10389,NJBF000051517,119 MORRIS AVENUE,Egg Harbor,NJ,39.30790864,-74.63594109,RES1,3001,,16,NE,2014,2014,3102,2,1,2152.914191,2152.914191,3505,NO,23.01,37.45,3,-2.87,6106,111.195157,121.233679,130.926681,137.087057,I,Above,Gable,0,5701,,30.23247991,0,0,,,,1,1,,0.03,nav,1,2014,2,, 10390,NJBF000070412,3408 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36700164,-74.58114363,RES1,3001,,17,NE,1996,1996,3101,2,1,7185.600195,7185.600195,3507,NO,29.88,44.76,1,2.51,6112,111.162974,121.455504,131.130828,137.352366,I,Above,Hip,0,5701,,37.31991836,0,0,,,,1,1,,0.35,nav,1,1996,2,, 10391,NJBF000069769,3422 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36381943,-74.58077772,RES1,3001,,16,NE,1956,1956,3101,2,1,3673.86839,3673.86839,3507,NO,37.63,44.56,1,1.95,6112,111.211446,121.495255,131.17463,137.408439,I,Above,Gable,0,5701,,41.09299112,0,1.1,,,,1,1,,0.35,nav,1,1956,2,, 10392,NJBF000069808,3420 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36416973,-74.58091308,RES1,3001,,16,NE,1820,1820,3101,2,1,1430.533774,1430.533774,3507,NO,31.61,38.18,1,1.06,6112,111.203845,121.489224,131.16825,137.400304,I,Above,Gable,0,5701,,34.89511415,0,0,,,,1,1,,0.35,nav,1,1820,2,, 10393,NJBF000051650,102 MORRIS AVENUE,Egg Harbor,NJ,39.30941044,-74.63707819,RES1,3001,,16,NE,1930,1930,3102,1,1,3307.167806,3307.167806,3505,NO,14.42,21.38,3,1.35,6106,111.151823,121.195664,130.893467,137.042134,I,Above,Hip,0,5701,,17.89995556,0,0,,,,1,1,,0.03,nav,1,1930,1,, 10394,NJBF000063289,4039 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34133914,-74.60119409,RES1,3001,,NaN,NE,1930,1930,3102,2,1,1314.094346,1314.094346,3507,NO,33.25,40.23,1,-0.99,6110,111.143662,121.391563,131.10468,137.32012,I,Above,Flat,0,5701,,36.74275534,0,0,,,,1,1,,0.35,nav,1,1930,2,, 10395,NJBF000065750,1117 LAKESIDE DRIVE,Egg Harbor,NJ,39.34798613,-74.59156989,RES1,3001,,16,NE,1969,1969,3101,1,1,2571.28183,2571.28183,3505,NO,12.29,18.49,3,1.69,6106,111.216775,121.481268,131.183343,137.421944,I,Above,Gable,0,5701,,15.39148603,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 10396,NJBF000062476,101 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.33954954,-74.64195707,RES1,3001,,16,NE,1950,1950,3101,1,1,1078.502028,1078.502028,3505,NO,11.1,22.59,3,-1.13,6106,110.540643,120.724819,130.499372,136.500621,I,Above,Gable,0,5701,,16.84662312,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10397,NJBF000069494,2 WATER STREET,Egg Harbor,NJ,39.36090729,-74.57805407,RES1,3001,,16,NE,1982,1982,3101,1,1,1669.811419,1669.811419,3507,NO,14.24,21.21,1,-0.08,6112,111.311343,121.573176,131.254053,137.509087,I,Above,Gable,0,5701,,17.72432605,0,1.2,,,,1,1,,0.03,nav,1,1982,1,, 10398,NJBF000069490,4 WATER STREET,Egg Harbor,NJ,39.36089002,-74.57844738,RES1,3001,,16,NE,1832,1832,3101,2,1,1097.327024,1097.327024,3507,NO,28.5,34.51,1,2.09,6112,111.302768,121.566575,131.247742,137.501197,I,Above,Gable,0,5701,,31.5059328,0,1.2,,,,1,1,,0.35,nav,1,1832,2,, 10399,NJBF000064293,112 NANCY DRIVE,Egg Harbor,NJ,39.34412228,-74.59292279,RES1,3001,,16,NE,1970,1970,3102,2,1,1934.593191,1934.593191,3505,NO,27.01,40.45,3,-0.1,6112,111.255466,121.501538,131.205765,137.450894,I,Above,Gable,0,5701,,33.72792138,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 10400,NJBF000063001,106 ANITA DRIVE,Egg Harbor,NJ,39.34067388,-74.59551477,RES1,3001,,16,NE,1970,1970,3102,2,1,2215.167611,2215.167611,3507,NO,26.83,39.79,1,2.58,6112,111.264755,121.496483,131.203214,137.447709,I,Above,Gable,0,5701,,33.30723964,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 10401,NJBF000070214,,Egg Harbor,NJ,39.36624929,-74.71168091,RES1,3001,,NaN,NE,1969,0,3101,1,1,526.7239258,526.7239258,3507,NO,18.87,27.3,1,0.72,6106,109.584135,119.497855,129.278386,134.660457,I,Above,Gable,0,5701,,23.0831665,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10402,NJBF000069912,3418 BARGAINTOWN ROAD,Egg Harbor,NJ,39.3649472,-74.58062687,RES1,3001,,16,NE,1945,1945,3101,1,1,3323.260247,3323.260247,3507,NO,16.32,22.83,1,1.59,6110,111.200331,121.485955,131.16375,137.394411,I,Above,Hip,0,5701,,19.57913509,0,0,,,,1,1,,0.35,nav,1,1945,1,, 10403,NJBF000063316,165 WHARF ROAD,Egg Harbor,NJ,39.3413941,-74.68001459,RES1,3001,,16,NE,1980,1980,3102,2,1,3325.857933,3325.857933,3505,NO,31.35,42.96,3,-0.86,6106,110.120446,120.118733,129.938482,135.685119,I,Above,Hip,0,5701,,37.15227549,0,0,,,,1,1,,0.03,nav,1,1980,2,, 10404,NJBF000063425,145 WHARF ROAD,Egg Harbor,NJ,39.3416895,-74.6797675,RES1,3001,,16,NE,1926,1926,3102,1,1,1533.785176,1533.785176,3505,NO,13.22,26.01,3,-2.71,6106,110.118403,120.117865,129.938893,135.685817,I,Above,Gable,0,5701,,19.61477912,0,0,,,,1,1,,0.03,nav,1,1926,1,, 10405,NJBF000069746,1332 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3635973,-74.69931677,RES1,3001,,16,NE,2009,2009,3101,1,1,1750.377276,1750.377276,3507,NO,13.99,24.56,1,1.18,6112,109.696656,119.656774,129.460718,134.953889,I,Above,Gable,0,5701,,19.27382997,0,0,,,,1,1,,0.15,nav,1,2009,1,, 10406,NJBF000063063,201 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34082234,-74.59730792,RES1,3001,,16,NE,1967,1967,3102,2,1,2038.617384,2038.617384,3507,NO,35.2,49.13,1,2.52,6106,111.227289,121.464046,131.172695,137.408342,I,Above,Gable,0,5701,,42.16391854,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 10407,NJBF000062994,201 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34065617,-74.59747155,RES1,3001,,16,NE,1967,1967,3102,2,1,854.0447683,854.0447683,3507,NO,31.48,38.21,1,-0.5,6106,111.227096,121.463151,131.171945,137.407371,I,Above,Gable,0,5701,,34.84337738,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 10408,NJBF000067264,1442 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35282077,-74.68019967,RES1,3001,,16,NE,1940,1940,3102,2,1,1974.901569,1974.901569,3505,NO,20.42,26.91,3,-1.05,6106,109.962492,119.968616,129.82006,135.510021,I,Above,Gable,0,5701,,23.66521672,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10409,NJBF000066177,107 WHARF ROAD,Egg Harbor,NJ,39.34912434,-74.67097809,RES1,3001,,16,NE,1978,1978,3102,1,1,1075.424197,1075.424197,3505,NO,20.13,32.55,3,3.85,6112,110.088597,120.134047,129.983857,135.75624,I,Above,Gable,0,5701,,26.34089031,0,0,,,,1,1,,0.35,nav,1,1978,1,, 10410,NJBF000066076,1540 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34823817,-74.66211316,RES1,3001,,16,NE,1980,1840,3101,2,1,1520.188517,1520.188517,3507,NO,26.74,41.33,1,2.91,6112,110.180195,120.28632,130.116553,135.953111,I,Above,Gable,0,5701,,34.03431743,0,0,,,,1,1,,0.35,nav,1,1980,2,, 10411,NJBF000075304,1111 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38941462,-74.71723047,RES1,3001,,16,NE,1965,1965,3102,1,1,2313.398555,2313.398555,3507,NO,18.98,30.29,1,1.95,6110,109.361999,119.244319,128.990633,134.199526,I,Above,Hip,0,5701,,24.63259678,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 10412,NJBF000065968,5 BONNIE DRIVE,Egg Harbor,NJ,39.34857463,-74.59397517,RES1,3001,,16,NE,1969,1969,3101,2,1,1545.583915,1545.583915,3505,NO,29.22,39.4,3,4.44,6106,111.157539,121.433343,131.137747,137.363262,I,Above,Gable,0,5701,,34.30680894,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10413,NJBF000066270,8 BONNIE DRIVE,Egg Harbor,NJ,39.349344,-74.59441902,RES1,3001,,16,NE,1969,1969,3101,2,1,2090.532825,2090.532825,3505,NO,38.68,51.87,3,7.41,6110,111.135373,121.417152,131.121757,137.342626,I,Above,Gable,0,5701,,45.27606037,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10414,NJBF000062357,8 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33928278,-74.61072996,RES1,3001,,16,NE,1978,1978,3102,1,1,3299.164728,3299.164728,3505,NO,11.9,25.4,3,-1.47,6110,111.008407,121.252816,130.977168,137.152422,I,Above,Gable,0,5701,,18.64788896,0,1.2,,,,1,1,,0.03,nav,1,1978,1,, 10415,NJBF000053419,1783 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31985931,-74.63749638,RES1,3001,,15,NE,1940,1940,3102,1,1,919.1069949,919.1069949,3505,NO,24.93,38.18,3,7.22,6106,110.957412,121.050375,130.776727,136.882255,I,Above,Gable,0,5701,,31.55279953,0,0,,,,1,1,,0.03,nav,1,1940,1,, 10416,NJBF000060159,1658 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33550001,-74.64305651,RES1,3001,739,15,NE,1860,1860,3102,2,1,2243.433789,2243.433789,3505,NO,31.45,40.89,3,0.52,6106,110.600075,120.757452,130.526621,136.537812,I,Above,Hip,0,5701,,36.17143727,0,0,,,,1,1,,0.03,nav,1,1860,2,, 10417,NJBF000062598,101 ANITA DRIVE,Egg Harbor,NJ,39.33978056,-74.59534302,RES1,3001,,16,NE,1970,1970,3102,1,1,3247.897901,3247.897901,3507,NO,16.21,23.95,1,0.09,6106,111.283991,121.509739,131.21612,137.464339,I,Above,Gable,0,5701,,20.0809757,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 10418,NJBF000063336,9 BEAVER DRIVE,Egg Harbor,NJ,39.34144433,-74.61162581,RES1,3001,,16,NE,1984,1984,3102,2,1,2170.745876,2170.745876,3505,NO,29.43,36.16,3,7.97,6110,110.952159,121.212377,130.938937,137.102037,I,Above,Gable,0,5701,,32.79930056,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 10419,NJBF000051529,3 JONES AVENUE,Egg Harbor,NJ,39.30802649,-74.6363299,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1625.566275,1625.566275,3505,NO,25.4,32.53,3,0.71,6106,111.187418,121.225964,130.919479,137.0774,I,Above,Flat,0,5701,,28.96473504,0,0,,,,1,1,,0.03,nav,1,1960,2,, 10420,NJBF000070011,3416 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36547401,-74.58074444,RES1,3001,,16,NE,1960,1960,3101,2,1,2615.080834,2615.080834,3507,NO,34.5,48.33,1,2.05,6106,111.191009,121.478398,131.155569,137.383959,I,Above,Gable,0,5701,,41.41098466,0,0,,,,1,1,,0.03,nav,1,1960,2,, 10421,NJBF000054214,1762 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,2007,3102,2,1,3631.691747,3631.691747,3505,NO,32.48,40.87,3,5.84,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,36.67538406,0,0,,,,1,1,,0.03,nav,1,2007,2,, 10422,NJBF000063252,18 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34122911,-74.59378914,RES1,3001,,16,NE,1987,1987,3102,2,1,2325.517505,2325.517505,3507,NO,32.99,45.31,1,2.21,6112,111.288812,121.519707,131.224757,137.475391,I,Above,Gable,0,5701,,39.14708886,0,0,,,,1,1,,0.35,nav,1,1987,2,, 10423,NJBF000065644,1119 LAKESIDE DRIVE,Egg Harbor,NJ,39.34769065,-74.59160536,RES1,3001,,16,NE,1969,1969,3101,1,1,992.9986999,992.9986999,3505,NO,17.93,27,3,5.88,6106,111.22104,121.483965,131.186169,137.425585,I,Above,Flat,0,5701,,22.46486245,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10424,NJBF000066515,326 FRANK LANE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1706.996813,1706.996813,3505,NO,20.25,34.31,3,7.21,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,27.2794039,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 10425,NJBF000064063,109 NANCY DRIVE,Egg Harbor,NJ,39.3434705,-74.592657,RES1,3001,,16,NE,1975,1975,3102,2,1,2150.385093,2150.385093,3507,NO,23.16,35.83,1,-0.21,6110,111.272102,121.513509,131.217505,137.46599,I,Above,Gable,0,5701,,29.49771417,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 10426,NJBF000070667,668 ZION ROAD,Egg Harbor,NJ,39.3679858,-74.5836177,RES1,3001,,16,NE,1970,1970,3101,1,1,3547.206269,3547.206269,3507,NO,18.62,27.26,1,0.83,6112,111.094809,121.402767,131.078551,137.28606,I,Above,Hip,0,5701,,22.94178049,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 10427,NJBF000062044,156 ROBERT BEST ROAD,Egg Harbor,NJ,39.33870308,-74.63686045,RES1,3001,,16,NE,1990,1990,3101,2,1,2120.203002,2120.203002,3505,NO,33.13,47.92,3,2.52,6110,110.620812,120.819759,130.584142,136.618877,I,Above,Gable,0,5701,,40.52423361,0,0,,,,1,1,,0.35,nav,1,1990,2,, 10428,NJBF000059508,1706 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33436496,-74.64240644,RES1,3001,999,16,NE,1958,1958,3102,2,1,2135.223809,2135.223809,3505,NO,24.9,35.48,3,1.38,6106,110.628712,120.782523,130.548416,136.568075,I,Above,Gable,0,5701,,30.19306654,0,0,,,,1,1,,0.03,nav,1,1958,2,, 10429,NJBF000063080,4042 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34085271,-74.60000355,RES1,3001,,16,NE,1970,1970,3102,2,1,1598.532088,1598.532088,3507,NO,31.05,44.82,1,2.87,6112,111.17504,121.417528,131.129167,137.351947,I,Above,Gable,0,5701,,37.93413967,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 10430,NJBF000063046,4042 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34078189,-74.59975378,RES1,3001,,16,NE,1970,1970,3102,2,1,706.3802171,706.3802171,3507,NO,39.06,44.12,1,1.74,6110,111.181082,121.422625,131.133966,137.358176,I,Above,Flat,0,5701,,41.58972984,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 10431,NJBF000062898,23 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34045673,-74.59435561,RES1,3001,,16,NE,1987,1987,3102,2,1,2363.605028,2363.605028,3507,NO,22.75,31.18,1,-0.09,6106,111.291282,121.518861,131.224373,137.474927,I,Above,Hip,0,5701,,26.96743589,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 10432,NJBF000065982,157 BLACKMAN ROAD,Egg Harbor,NJ,39.34860678,-74.59028659,RES1,3001,,16,NE,1969,1969,3101,1,1,1677.569498,1677.569498,3505,NO,23.48,35.6,3,6.59,6110,111.232838,121.49641,131.19698,137.439389,I,Above,Gable,0,5701,,29.54042834,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10433,NJBF000063257,205 ROSEMARIE DRIVE,Egg Harbor,NJ,39.3412385,-74.5976675,RES1,3001,,16,NE,1965,1965,3102,2,1,1876.167517,1876.167517,3507,NO,32.62,42.62,1,-0.18,6106,111.212864,121.453075,131.162186,137.39476,I,Above,Hip,0,5701,,37.61696734,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 10434,NJBF000065192,24 CARANN LANE,Egg Harbor,NJ,39.34636546,-74.58678107,RES1,3001,,16,NE,1996,1996,3101,2,1,1337.481067,1337.481067,3505,NO,30.12,37.61,3,0.34,6106,111.342949,121.581892,131.279884,137.545341,I,Above,Gable,0,5701,,33.86234665,0,0,,,,1,1,,0.03,nav,1,1996,2,, 10435,NJBF000069419,116 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1961,3102,2,1,4569.57945,4569.57945,3505,NO,24.59,36.24,3,0.11,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,30.4156562,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10436,NJBF000073457,1165 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38087421,-74.71719897,RES1,3001,959,NaN,NE,1969,0,3102,2,1,1708.47793,1708.47793,3507,NO,34.95,41.59,1,-0.66,6106,109.422329,119.313224,129.071426,134.328315,I,Above,Flat,0,5701,,38.26906963,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10437,NJBF000073538,1155 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38144904,-74.7169623,RES1,3001,,16,NE,1928,1928,3102,2,1,1820.925645,1820.925645,3507,NO,27.62,41.29,1,0.27,6110,109.419601,119.311163,129.068869,134.324512,I,Above,Gable,0,5701,,34.45503255,0,0,,,,1,1,,0.35,nav,1,1928,2,, 10438,NJBF000067853,40 ENGLISH LANE,Egg Harbor,NJ,39.35478849,-74.67315719,RES1,3001,,16,NE,1965,1965,3102,1,1,2526.706366,2526.706366,3505,NO,21.78,36.47,3,2.53,6112,109.992586,120.031449,129.895442,135.626082,I,Above,Gable,0,5701,,29.12159326,0,0,,,,1,1,,0.35,nav,1,1965,1,, 10439,NJBF000056269,4 PROSPECT AVENUE,Egg Harbor,NJ,39.3281055,-74.648947,RES1,3001,,16,NE,1980,1980,3102,2,1,1075.846495,1075.846495,3505,NO,18.59,30.37,3,-2.44,6110,110.658844,120.758927,130.51818,136.525045,I,Above,Gable,0,5701,,24.47903213,0,0,,,,1,1,,0.15,nav,1,1980,2,, 10440,NJBF000056356,8 PROSPECT AVENUE,Egg Harbor,NJ,39.32829755,-74.64935362,RES1,3001,,16,NE,1926,1926,3102,1,2,1730.279382,1730.279382,3505,NO,21.53,30.57,3,8.65,6106,110.650446,120.749929,130.510146,136.513787,I,Above,Flat,0,5701,,26.05201348,0,0,,,,1,1,,0.03,nav,1,1926,1,, 10441,NJBF000056386,8 PROSPECT AVENUE,Egg Harbor,NJ,39.32836553,-74.64904909,RES1,3001,,16,NE,1926,1926,3102,1,2,1152.049837,1152.049837,3505,NO,19.74,28.17,3,3.39,6106,110.652992,120.753847,130.513926,136.519091,I,Above,Gable,0,5701,,23.95238524,0,0,,,,1,1,,0.03,nav,1,1926,1,, 10442,NJBF000062546,7 OTTER LANE,Egg Harbor,NJ,39.33967835,-74.61471098,RES1,3001,,16,NE,1999,1999,3102,2,1,2981.133255,2981.133255,3505,NO,31.02,43.86,3,0.09,6112,110.932825,121.180573,130.910631,137.064009,I,Above,Gable,0,5701,,37.436548,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 10443,NJBF000061619,324 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,NaN,NE,1993,0,3102,2,1,901.9257795,901.9257795,3505,NO,41.96,48.25,3,3.47,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,45.10736247,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10444,NJBF000064341,1587 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3442558,-74.65338261,RES1,3001,,16,NE,2006,2006,3101,2,1,1991.100026,1991.100026,3507,NO,20.34,31.83,1,-1,6112,110.329251,120.478427,130.282649,136.19363,I,Above,Hip,0,5701,,26.08687421,0,0,,,,1,1,,0.35,nav,1,2006,2,, 10445,NJBF000071127,3368 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36950746,-74.58136707,RES1,3001,,16,NE,1923,1923,3101,1,1,1533.695358,1533.695358,3507,NO,17.04,22.51,1,-0.17,6110,111.128147,121.425604,131.097302,137.309443,I,Above,Gable,0,5701,,19.77224325,0,1.2,,,,1,1,,0.35,nav,1,1923,1,, 10446,NJBF000067859,55 ENGLISH LANE,Egg Harbor,NJ,39.354811,-74.678188,RES1,3001,,16,NE,1735,1735,3102,1,1,683.3893498,683.3893498,3505,NO,18.86,33.81,3,5.16,6112,109.952671,119.970485,129.826931,135.521692,I,Above,Gable,0,5701,,26.33726954,0,1.1,,,,1,1,,0.35,nav,1,1735,1,, 10447,NJBF000071280,1235 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37005,-74.709819,RES1,3001,,15,NE,1900,1900,3101,2,2,935.9087276,935.9087276,3507,NO,25.01,38.14,1,-0.76,6106,109.561788,119.485025,129.265198,134.641477,I,Above,Gable,0,5701,,31.57398116,0,0,,,,1,1,,0.03,nav,1,1900,2,, 10448,NJBF000062098,7 VELLA LA VELLA LANE,Egg Harbor,NJ,39.338791,-74.640657,RES1,3001,,16,NE,1920,1920,3101,2,1,742.0495934,742.0495934,3505,NO,25.35,33.88,3,2.33,6110,110.570534,120.755696,130.526769,136.538834,I,Above,Gable,0,5701,,29.61224712,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 10449,NJBF000063765,138 BEVIS MILL ROAD,Egg Harbor,NJ,39.34264432,-74.64293862,RES1,3001,,16,NE,1900,1900,3101,2,1,926.48277,926.48277,3505,NO,37.98,43.53,3,6.88,6106,110.4731,120.670732,130.451559,136.43428,I,Above,Gable,0,5701,,40.75627136,0,0,,,,1,1,,0.03,nav,1,1900,2,, 10450,NJBF000056288,,Egg Harbor,NJ,39.32814472,-74.64480332,RES1,3001,,NaN,NE,1975,0,3102,2,1,600.6585559,600.6585559,3505,NO,40.45,51.61,3,2.15,6106,110.710079,120.824336,130.579106,136.610142,I,Above,Gable,0,5701,,46.02619537,0,0,,,,1,1,,0.03,nav,1,1975,2,, 10451,NJBF000065174,211 THOMAS DRIVE,Egg Harbor,NJ,39.34630799,-74.59497232,RES1,3001,,16,NE,1965,1965,3102,2,1,2166.991976,2166.991976,3505,NO,33.64,41.9,3,-1.02,6110,111.176408,121.44162,131.147712,137.376114,I,Above,Gable,0,5701,,37.76852222,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 10452,NJBF000076380,1087 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39320318,-74.71714375,RES1,3001,,16,NE,1972,1972,3102,1,1,1623.67429,1623.67429,3507,NO,15.34,25.91,1,1.7,6106,109.338651,119.215492,128.956117,134.144426,I,Above,Gable,0,5701,,20.62541174,0,0,,,,1,1,,0.03,nav,1,1972,1,, 10453,NJBF000056076,150 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32766638,-74.6475149,RES1,3001,,16,NE,1900,1900,3102,2,1,1657.046352,1657.046352,3505,NO,34.92,40.03,3,-1.53,6106,110.684363,120.787435,130.543964,136.561115,I,Above,Gable,0,5701,,37.47703142,0,0,,,,1,1,,0.03,nav,1,1900,2,, 10454,NJBF000063127,103 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34094051,-74.6132812,RES1,3001,,16,NE,1978,1978,3102,1,1,2234.316875,2234.316875,3505,NO,19.56,34.48,3,2.7,6106,110.933141,121.190084,130.918766,137.075092,I,Above,Gable,0,5701,,27.02291332,0,1.2,,,,1,1,,0.03,nav,1,1978,1,, 10455,NJBF000066025,1110 FURMAN DRIVE,Egg Harbor,NJ,39.34871141,-74.59305001,RES1,3001,,16,NE,1969,1969,3101,1,1,1981.236866,1981.236866,3505,NO,15.67,23.5,3,0.54,6106,111.174135,121.447726,131.15109,137.380459,I,Above,Gable,0,5701,,19.58146541,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10456,NJBF000072982,1195 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37621259,-74.71409586,RES1,3001,,16,NE,1970,1970,3102,1,1,2509.693435,2509.693435,3507,NO,18.9,26.22,1,-0.09,6106,109.479825,119.385943,129.153392,134.461511,I,Above,Gable,0,5701,,22.55660791,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10457,NJBF000066950,168 THOMPSONS LANE,Egg Harbor,NJ,39.351425,-74.7027575,RES1,3001,,16,NE,1982,1982,3101,2,1,1305.053842,1305.053842,3507,NO,32.08,46.01,1,0.49,6106,109.805264,119.737151,129.535217,135.065972,I,Above,Gable,0,5701,,39.04140037,0,0,,,,1,1,,0.03,nav,1,1982,2,, 10458,NJBF000065756,9 JODEL LANE,Egg Harbor,NJ,39.34801065,-74.58823672,RES1,3001,,16,NE,1969,1969,3101,1,1,2254.644589,2254.644589,3505,NO,18.45,32.89,3,4.2,6110,111.28535,121.538358,131.237172,137.490787,I,Above,Gable,0,5701,,25.67003799,0,1.2,,,,1,1,,0.35,nav,1,1969,1,, 10459,NJBF000065693,9 JODEL LANE,Egg Harbor,NJ,39.34784268,-74.58828218,RES1,3001,,16,NE,1969,1969,3101,1,1,871.4111913,871.4111913,3505,NO,24.01,30.7,3,6.31,6110,111.287196,121.539461,131.238374,137.492339,I,Above,Gable,0,5701,,27.35487553,0,1.2,,,,1,1,,0.35,nav,1,1969,1,, 10460,NJBF000066101,174 STEELMANVILLE ROAD,Egg Harbor,NJ,39.3489095,-74.5973195,RES1,3001,,16,NE,1965,1965,3101,1,1,1313.336559,1313.336559,3505,NO,26.27,34.76,3,8.31,6112,111.084133,121.372197,131.080251,137.288833,I,Above,Gable,0,5701,,30.51397008,0,0,,,,1,1,,0.35,nav,1,1965,1,, 10461,NJBF000066113,1109 LAKESIDE DRIVE,Egg Harbor,NJ,39.34893579,-74.59067735,RES1,3001,,16,NE,1969,1969,3101,1,1,2418.516762,2418.516762,3505,NO,18.96,32.01,3,5.93,6110,111.219264,121.486033,131.186866,137.426411,I,Above,Gable,0,5701,,25.48602594,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10462,NJBF000058271,1716 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33201261,-74.64147193,IND2,3002,210,NaN,ME,1969,0,3401,3,1,3754.215864,3754.215864,3507,NO,53.51,65.58,1,1.37,6106,110.683188,120.827835,130.587462,136.622119,I,Above,Hip,0,5703,,59.54605275,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10463,NJBF000065228,19 CARANN LANE,Egg Harbor,NJ,39.34645492,-74.58768182,RES1,3001,,16,NE,1996,1996,3101,2,1,1519.975691,1519.975691,3505,NO,38.66,45.43,3,0.93,6106,111.32274,121.565356,131.264134,137.52531,I,Above,Gable,0,5701,,42.04188924,0,0,,,,1,1,,0.03,nav,1,1996,2,, 10464,NJBF000062803,6 OTTER LANE,Egg Harbor,NJ,39.3402623,-74.61421655,RES1,3001,,16,NE,2007,2007,3102,1,1,3933.365493,3933.365493,3505,NO,24.08,32.51,3,5.79,6110,110.930088,121.182112,130.911792,137.065665,I,Above,Hip,0,5701,,28.2958183,0,0,,,,1,1,,0.35,nav,1,2007,1,, 10465,NJBF000067523,1444 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35372954,-74.67941365,RES1,3001,,16,NE,1978,1978,3102,1,1,1721.528291,1721.528291,3505,NO,22.81,36.65,3,8.71,6112,109.956952,119.967566,129.821412,135.512604,I,Above,Gable,0,5701,,29.72607052,0,0,,,,1,1,,0.35,nav,1,1978,1,, 10466,NJBF000062473,19 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33953711,-74.64242229,RES1,3001,,16,NE,2015,2015,3101,1,1,1917.981108,1917.981108,3505,NO,16.07,29.41,3,1,6106,110.535178,120.717292,130.492653,136.491171,I,Above,Gable,0,5701,,22.74040625,0,1.1,,,,1,1,,0.03,nav,1,2015,1,, 10467,NJBF000066062,19 DINA DRIVE,Egg Harbor,NJ,39.3488254,-74.58536408,RES1,3001,,16,NE,1985,1985,3101,1,1,2696.743335,2696.743335,3505,NO,16.3,25.76,3,4.06,6106,111.332294,121.578792,131.274705,137.538379,I,Above,Gable,0,5701,,21.03113429,0,1.2,,,,1,1,,0.03,nav,1,1985,1,, 10468,NJBF000075875,211 HARBOR DRIVE,Egg Harbor,NJ,39.39146312,-74.71990767,RES1,3001,,16,NE,1970,1970,3102,1,1,720.8594901,720.8594901,3507,NO,19.54,26.48,1,0.83,6106,109.330702,119.198043,128.939599,134.114485,I,Above,Gable,0,5701,,23.01053923,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10469,NJBF000076585,1084 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39398331,-74.715825,RES1,3001,,16,NE,1800,1800,3102,2,1,1651.684809,1651.684809,3507,NO,33.06,47.69,1,1.49,6110,109.342924,119.224376,128.964462,134.159472,I,Above,Gable,0,5701,,40.37213236,0,0,,,,1,1,,0.35,nav,1,1800,2,, 10470,NJBF000063237,121 PERRY LANE,Egg Harbor,NJ,39.3412,-74.6524965,RES1,3001,,16,NE,1998,1998,3101,1,1,2046.648161,2046.648161,3507,NO,12.6,24.1,1,-0.28,6106,110.39019,120.53122,130.327877,136.257584,I,Above,Gable,0,5701,,18.35265001,0,1.2,,,,1,1,,0.03,nav,1,1998,1,, 10471,NJBF000054715,1754 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3241385,-74.638353,RES1,3001,,16,NE,2004,2004,3102,1,1,1794.096668,1794.096668,3505,NO,11.49,22.88,3,-2.19,6110,110.867802,120.980452,130.718263,136.802183,I,Above,Gable,0,5701,,17.18748126,0,0,,,,1,1,,0.35,nav,1,2004,1,, 10472,NJBF000054844,1754 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32447302,-74.63864181,RES1,3001,,16,NE,2004,2004,3102,1,1,1216.216229,1216.216229,3505,NO,22.55,33.5,3,6.9,6106,110.857756,120.971415,130.710337,136.791318,I,Above,Gable,0,5701,,28.02464713,0,0,,,,1,1,,0.03,nav,1,2004,1,, 10473,NJBF000054870,46 SOMERS AVENUE,Egg Harbor,NJ,39.3245245,-74.64190035,RES1,3001,,16,NE,1989,1989,3102,2,1,1651.760695,1651.760695,3505,NO,30.09,44.56,3,4.16,6106,110.812923,120.918399,130.660814,136.723263,I,Above,Gable,0,5701,,37.32543961,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 10474,NJBF000070156,323 BETSEY SCULL ROAD,Egg Harbor,NJ,39.36603732,-74.70973924,RES1,3001,,16,NE,1915,1915,3101,1,1,2724.644883,2724.644883,3507,NO,15.5,30.18,1,2.79,6106,109.599633,119.520864,129.304756,134.703395,I,Above,Gable,0,5701,,22.84260338,0,0,,,,1,1,,0.03,nav,1,1915,1,, 10475,NJBF000062068,14 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33874251,-74.6420368,RES1,3001,,16,NE,1958,1958,3101,1,1,1695.368032,1695.368032,3505,NO,13.48,21.35,3,-2.02,6110,110.554235,120.733486,130.50688,136.510931,I,Above,Gable,0,5701,,17.41766214,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 10476,NJBF000053851,186 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32151783,-74.64972133,RES1,3001,,15,NE,1925,1925,3102,1,1,672.4216433,672.4216433,3505,NO,23.96,37.33,3,8.61,6106,110.765075,120.834942,130.575881,136.605861,I,Above,Gable,0,5701,,30.64740478,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 10477,NJBF000053913,186 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32174493,-74.64986504,RES1,3001,,15,NE,1925,1925,3102,1,1,1439.421433,1439.421433,3505,NO,19.95,31.88,3,0.68,6106,110.759268,120.829644,130.571371,136.599561,I,Above,Gable,0,5701,,25.9134512,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 10478,NJBF000054989,37 SOMERS AVENUE,Egg Harbor,NJ,39.32482019,-74.64313899,RES1,3001,,16,NE,1993,1993,3102,2,1,2019.509042,2019.509042,3505,NO,37.23,45.06,3,6.14,6106,110.791243,120.894708,130.639141,136.693348,I,Above,Gable,0,5701,,41.14725428,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10479,NJBF000068593,12 WILLOWBROOK LANE,Egg Harbor,NJ,39.35720064,-74.58106499,RES1,3001,,16,NE,1974,1974,3101,1,1,3020.550731,3020.550731,3507,NO,13.66,25.34,1,0.58,6112,111.296284,121.561059,131.24786,137.502559,I,Above,Hip,0,5701,,19.49947208,0,1.2,,,,1,1,,0.35,nav,1,1974,1,, 10480,NJBF000066086,1113 FURMAN DRIVE,Egg Harbor,NJ,39.34887347,-74.59221245,RES1,3001,,16,NE,1969,1969,3101,1,1,1724.721687,1724.721687,3505,NO,16.2,25.91,3,-2.02,6110,111.18861,121.460329,131.162754,137.395463,I,Above,Gable,0,5701,,21.05708495,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10481,NJBF000069161,3526 BARGAINTOWN ROAD,Egg Harbor,NJ,39.35900797,-74.58111147,RES1,3001,,16,NE,1955,1955,3101,2,1,1956.074091,1956.074091,3507,NO,27.19,35.29,1,1.13,6112,111.269392,121.540786,131.225896,137.474385,I,Above,Gable,0,5701,,31.24063036,0,0,,,,1,1,,0.35,nav,1,1955,2,, 10482,NJBF000055791,1750 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32698363,-74.63796057,RES1,3001,,16,NE,2005,2005,3102,2,1,2659.266325,2659.266325,3505,NO,38.4,51.2,3,0.04,6112,110.821293,120.949754,130.693803,136.768646,I,Above,Flat,0,5701,,44.79897793,0,0,,,,1,1,,0.35,nav,1,2005,2,, 10483,NJBF000064127,111 NANCY DRIVE,Egg Harbor,NJ,39.34363341,-74.59294916,RES1,3001,,16,NE,1973,1973,3102,2,1,2214.410229,2214.410229,3507,NO,25.15,30.52,1,0.24,6110,111.263438,121.506649,131.210932,137.457548,I,Above,Gable,0,5701,,27.83181823,0,1.1,,,,1,1,,0.35,nav,1,1973,2,, 10484,NJBF000063721,4030 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34250417,-74.600954,COM3,3001,,NaN,ME,1969,0,3401,1,1,11396.21483,11396.21483,3507,NO,12.03,17.16,1,1.15,6112,111.127063,121.382275,131.095304,137.307981,I,Above,Hip,0,5701,,14.59296408,0,0,,,,1,1,,0.35,nav,1,1969,1,, 10485,NJBF000062572,150 ROBERT BEST ROAD,Egg Harbor,NJ,39.33973954,-74.63635516,RES1,3001,,16,NE,1999,1999,3101,1,1,1200.864133,1200.864133,3505,NO,21.43,29.66,3,7.93,6110,110.608272,120.815523,130.580419,136.613993,I,Above,Gable,0,5701,,25.54318026,0,0,,,,1,1,,0.35,nav,1,1999,1,, 10486,NJBF000055742,26 SOMERS AVENUE,Egg Harbor,NJ,39.32687154,-74.64392291,RES1,3001,,16,NE,1966,1966,3102,1,1,2833.062682,2833.062682,3505,NO,16.38,22.04,3,-0.43,6106,110.744189,120.855149,130.605696,136.647044,I,Above,Gable,0,5701,,19.20612851,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 10487,NJBF000066307,132 BEVIS MILL ROAD,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1960,3101,1,1,1293.029075,1293.029075,3505,NO,20.73,31.73,3,3.84,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,26.22931783,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10488,NJBF000075537,1107 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39021749,-74.71691577,RES1,3001,29,NaN,NE,1969,0,3102,2,1,3704.685907,3704.685907,3507,NO,31.88,40.4,1,1.09,6112,109.358922,119.241525,128.986847,134.193865,I,Above,Gable,0,5701,,36.13970083,0,0,,,,1,1,,0.35,nav,1,1969,2,, 10489,NJBF000067085,100 BLACKMAN ROAD,Egg Harbor,NJ,39.35202798,-74.58402969,AGR1,3001,739,NaN,NE,1969,0,3401,1,1,22380.6479,22380.6479,3507,NO,13.07,26.19,1,-0.92,6106,111.309707,121.566334,131.259464,137.51847,I,Above,Flat,0,NaN,,19.62797886,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10490,NJBF000067007,100 BLACKMAN ROAD,Egg Harbor,NJ,39.35167933,-74.58330698,AGR1,3001,739,NaN,NE,1969,0,3401,1,1,63021.73323,63021.73323,3507,NO,10.69,18.02,1,0.11,6106,111.330701,121.582654,131.275388,137.538679,I,Above,Flat,0,NaN,,14.35413518,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10491,NJBF000067313,100 BLACKMAN ROAD,Egg Harbor,NJ,39.3530356,-74.58411928,AGR1,3001,739,NaN,NE,1969,0,3401,3,1,45232.04545,45232.04545,3507,NO,35.19,50,1,0.73,6112,111.292102,121.553722,131.246287,137.501585,I,Above,Flat,0,NaN,,42.59530341,0,0,,,,1,1,,0.15,nav,1,1969,3,, 10492,NJBF000066459,ZION ROAD LL,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,NaN,NE,1981,0,3101,1,1,725.2957958,725.2957958,3505,NO,17.39,29.29,3,5.88,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,23.34170311,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10493,NJBF000066743,ZION ROAD LL,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,NaN,NE,1981,0,3101,1,1,1280.447302,1280.447302,3505,NO,20.94,32.2,3,3.98,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,26.56896467,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10494,NJBF000062504,115 LAUTOKA DRIVE,Egg Harbor,NJ,39.33959494,-74.63873384,RES1,3001,,16,NE,1997,1997,3101,2,1,1373.966296,1373.966296,3505,NO,35.1,48.48,3,-2.39,6112,110.580176,120.777697,130.546593,136.566796,I,Above,Gable,0,5701,,41.79296372,0,0,,,,1,1,,0.35,nav,1,1997,2,, 10495,NJBF000062198,22 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33897569,-74.64376397,RES1,3001,,16,NE,1965,1965,3101,1,1,2424.628845,2424.628845,3505,NO,18.14,32.44,3,0.27,6106,110.528943,120.702116,130.478916,136.471668,I,Above,Gable,0,5701,,25.28775449,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 10496,NJBF000075951,213 HARBOR DRIVE,Egg Harbor,NJ,39.39173428,-74.72041917,RES1,3001,,16,NE,1972,1972,3102,2,1,3119.198959,3119.198959,3507,NO,35.37,42.67,1,2.01,6106,109.325527,119.190175,128.931019,134.100068,I,Above,Gable,0,5701,,39.02170693,0,0,,,,1,1,,0.03,nav,1,1972,2,, 10497,NJBF000073391,8014 BLACK HORSE PIKE,Egg Harbor,NJ,39.38034923,-74.4935107,COM1,3003,280,NaN,ME,1969,0,3401,1,1,4377.977803,4377.977803,3507,NO,15.18,28.32,1,1.68,6106,112.995335,122.850383,132.542809,138.899945,I,Above,Flat,0,NaN,,21.75116542,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10498,NJBF000081964,508 S MILL ROAD,Egg Harbor,NJ,39.42493492,-74.52185523,RES1,3001,,16,NE,1930,1930,3102,1,1,1140.573187,1140.573187,3505,NO,16.95,26.14,3,-1.65,6112,112.019979,121.886407,131.485899,137.642183,I,Above,Gable,0,5701,,21.54548805,0,0,,,,1,1,,0.35,nav,1,1930,1,, 10499,NJBF000074438,7013 BLACK HORSE PIKE,Egg Harbor,NJ,39.38642442,-74.51604061,RES1,3001,,NaN,NE,1920,0,3102,2,1,2536.072169,2536.072169,3505,NO,33.08,40.7,3,2.45,6106,112.43519,122.385736,132.046172,138.36982,I,Above,Hip,0,5701,,36.88845877,0,0,,,,1,1,,0.03,nav,1,1920,2,, 10500,NJBF000074400,203 PALERMO AVENUE,Egg Harbor,NJ,39.38624042,-74.51581723,RES1,3001,,16,NE,1925,1925,3102,1,1,2498.509447,2498.509447,3505,NO,26.48,34.77,3,8.98,6106,112.441901,122.391624,132.052516,138.377151,I,Above,Hip,0,5701,,30.62451726,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 10501,NJBF000074212,,Egg Harbor,NJ,39.38538267,-74.51176041,RES1,3001,,NaN,NE,1969,0,3102,2,1,1318.109418,1318.109418,3505,NO,34.38,48.04,3,6.09,6106,112.540186,122.472385,132.138536,138.470044,I,Above,Gable,0,5701,,41.20757411,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10502,NJBF000074392,202 GENOA AVENUE,Egg Harbor,NJ,39.38620436,-74.5161609,RES1,3001,,16,NE,1928,1928,3102,2,1,1769.16384,1769.16384,3505,NO,33.39,47.81,3,1.73,6106,112.434596,122.385926,132.046512,138.370992,I,Above,Flat,0,5701,,40.5982246,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 10503,NJBF000073226,,Egg Harbor,NJ,39.37911135,-74.490676,COM1,3003,,NaN,ME,1969,0,3401,1,1,8359.377407,8359.377407,3507,NO,13.69,24.49,1,-0.45,6106,113.071025,122.914256,132.61131,138.972847,I,Above,Flat,0,NaN,,19.09250294,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10504,NJBF000074352,7039 BLACK HORSE PIKE,Egg Harbor,NJ,39.38603792,-74.51046792,RES1,3001,,16,NE,1951,1951,3102,1,1,1074.037342,1074.037342,3505,NO,17.51,23.8,3,1.56,6106,112.562578,122.488376,132.155163,138.48465,I,Above,Hip,0,5701,,20.65659598,0,0,,,,1,1,,0.03,nav,1,1951,1,, 10505,NJBF000052294,135 LONGPORT BLVD.,Egg Harbor,NJ,39.3138325,-74.579041,COM1,3001,649,NaN,ME,1969,0,3401,1,1,2839.184011,2839.184011,3507,NO,18.62,30.01,1,2.52,6106,112.059789,122.099005,131.774438,138.168097,I,Above,Gable,0,NaN,,24.31745049,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10506,NJBF000074221,208 EAST PLAZA PLACE,Egg Harbor,NJ,39.38542858,-74.51084586,RES1,3001,,16,NE,1951,1951,3102,2,1,1238.490514,1238.490514,3505,NO,29.05,34.62,3,4,6106,112.560037,122.488089,132.155168,138.487072,I,Above,Hip,0,5701,,31.83932538,0,0,,,,1,1,,0.03,nav,1,1951,2,, 10507,NJBF000074582,204 LYONS COURT,Egg Harbor,NJ,39.3871025,-74.51861449,RES1,3001,,16,NE,1928,1928,3102,2,1,1930.537331,1930.537331,3505,NO,28.41,42.79,3,7.4,6106,112.371688,122.333219,131.990214,138.308502,I,Above,Gable,0,5701,,35.60115111,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 10508,NJBF000074244,206 EAST PLAZA PLACE,Egg Harbor,NJ,39.38554951,-74.51079619,RES1,3001,,16,NE,1951,1951,3102,1,1,1035.500558,1035.500558,3505,NO,20.82,32.43,3,3.92,6106,112.559983,122.487701,132.154694,138.486104,I,Above,Hip,0,5701,,26.62268042,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 10509,NJBF000074235,205 WEST PLAZA PLACE,Egg Harbor,NJ,39.38549571,-74.5122994,RES1,3001,,16,NE,1925,1925,3102,2,1,1064.782894,1064.782894,3505,NO,28.8,37.31,3,-2.16,6106,112.52713,122.461654,132.127099,138.457744,I,Above,Hip,0,5701,,33.05639342,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 10510,NJBF000074211,209 WEST PLAZA PLACE,Egg Harbor,NJ,39.3853814,-74.51239622,RES1,3001,,16,NE,2015,2015,3102,2,1,1532.164702,1532.164702,3505,NO,44.07,53.77,3,6,6106,112.526079,122.461147,132.126624,138.457698,I,Above,Hip,0,5701,,48.91780177,0,1.2,,,,1,1,,0.03,nav,1,2015,2,, 10511,NJBF000074181,209 WEST PLAZA PLACE,Egg Harbor,NJ,39.38527099,-74.51246749,RES1,3001,,16,NE,2015,2015,3102,2,1,1529.442301,1529.442301,3505,NO,36.8,46.72,3,7.09,6106,112.525558,122.461047,132.126578,138.458078,I,Above,Hip,0,5701,,41.7613004,0,1.2,,,,1,1,,0.03,nav,1,2015,2,, 10512,NJBF000082400,86 ABLES RUN DRIVE,Egg Harbor,NJ,39.42960507,-74.52359108,RES1,3001,,37,NE,2008,2008,3102,2,1,7388.449016,7388.449016,3505,NO,25.82,37.08,3,1.17,6112,111.95761,121.808737,131.39963,137.53399,I,Above,Hip,0,5701,,31.44982788,0,0,,,,1,1,,0.35,nav,1,2008,2,, 10513,NJBF000074150,202 ATHENS AVENUE,Egg Harbor,NJ,39.38511448,-74.50865599,RES3C,3001,,16,E,1986,1986,3303,2,1,2558.252334,2558.252334,3507,NO,28.39,41.46,1,1.6,6106,112.611688,122.530228,132.200059,138.534579,I,Above,Hip,0,NaN,,34.92659324,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 10514,NJBF000074561,205 FRANKFORT COURT,Egg Harbor,NJ,39.38698657,-74.51828128,RES1,3001,,NaN,NE,1920,2016,3102,2,1,1717.105815,1717.105815,3505,NO,27.67,42.55,3,0.41,6106,112.380155,122.340296,131.997769,138.316883,I,Above,Gable,0,5701,,35.10901499,0,0,,,,1,1,,0.03,nav,1,1920,2,, 10515,NJBF000074519,205 FRANKFORT COURT,Egg Harbor,NJ,39.3868229,-74.51837263,RES1,3001,,NaN,NE,1927,2016,3102,2,1,1071.293039,1071.293039,3505,NO,46.91,60.04,3,8.62,6106,112.379637,122.340392,131.997984,138.317699,I,Above,Hip,0,5701,,53.47231143,0,0,,,,1,1,,0.03,nav,1,1927,2,, 10516,NJBF000074095,203 NAPLES AVENUE,Egg Harbor,NJ,39.38488904,-74.50813518,RES3C,3001,,16,E,1925,1925,3303,2,2,1118.016094,1118.016094,3507,NO,26.28,40.51,1,1.67,6106,112.625435,122.541842,132.212502,138.548265,I,Above,Hip,0,NaN,,33.39341417,0,0,,,,1,1,,0.03,nav,1,1925,2,, 10517,NJBF000082282,44 ABLES RUN DRIVE,Egg Harbor,NJ,39.42861491,-74.52528019,RES1,3001,,37,NE,2007,2007,3102,2,1,7903.375999,7903.375999,3505,NO,32.16,39.94,3,-0.08,6112,111.928594,121.789701,131.379128,137.516224,I,Above,Hip,0,5701,,36.0492219,0,0,,,,1,1,,0.03,nav,1,2007,2,, 10518,NJBF000074248,204 WEST PLAZA PLACE,Egg Harbor,NJ,39.3855711,-74.51160921,RES1,3001,,16,NE,1930,1930,3102,1,1,2652.940242,2652.940242,3505,NO,15.75,30.27,3,3.96,6106,112.541733,122.473081,132.139174,138.469968,I,Above,Flat,0,5701,,23.00882514,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 10519,NJBF000074202,200 ATHENS AVENUE,Egg Harbor,NJ,39.38534576,-74.50854792,RES3C,3001,,16,E,1986,1986,3303,2,1,1456.720999,1456.720999,3507,NO,34.4,43.64,1,2.57,6106,112.611834,122.529699,132.199391,138.532948,I,Above,Gable,0,NaN,,39.01874009,0,0,,,,1,1,,0.03,nav,1,1986,2,, 10520,NJBF000074537,7007 BLACK HORSE PIKE,Egg Harbor,NJ,39.38689917,-74.51738805,RES1,3001,,16,NE,1929,1929,3102,2,2,2400.997205,2400.997205,3505,NO,39.67,46.12,3,8.43,6106,112.400814,122.356973,132.01545,138.33582,I,Above,Gable,0,5701,,42.89734512,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 10521,NJBF000074167,211 EAST PLAZA PLACE,Egg Harbor,NJ,39.38519371,-74.5115656,RES1,3001,,16,NE,1951,1951,3102,1,1,944.2481137,944.2481137,3505,NO,16.76,25.45,3,4.94,6106,112.546313,122.47781,132.144387,138.476846,I,Above,Gable,0,5701,,21.10572997,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 10522,NJBF000074660,200 LYONS COURT,Egg Harbor,NJ,39.38737647,-74.51830091,RES1,3001,,16,NE,1940,1940,3102,1,1,1061.412208,1061.412208,3505,NO,16.62,26.4,3,0.05,6106,112.376102,122.335868,131.992821,138.310269,I,Above,Gable,0,5701,,21.50841627,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 10523,NJBF000074190,210 EAST PLAZA PLACE,Egg Harbor,NJ,39.38530215,-74.51092281,RES1,3001,,16,NE,1951,1951,3102,1,1,1006.625331,1006.625331,3505,NO,15.55,28.42,3,3.99,6106,112.559551,122.488062,132.155204,138.487612,I,Above,Hip,0,5701,,21.98304753,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 10524,NJBF000074340,7043 BLACK HORSE PIKE,Egg Harbor,NJ,39.38596485,-74.51007398,RES1,3001,,16,NE,1951,1951,3102,1,1,1153.758321,1153.758321,3505,NO,24.51,35.05,3,6.84,6106,112.572017,122.496126,132.163429,138.493464,I,Above,Gable,0,5701,,29.77814246,0,0,,,,1,1,,0.03,nav,1,1951,1,, 10525,NJBF000051497,116 WATERWAY AVENUE,Egg Harbor,NJ,39.30762204,-74.63615015,RES1,3001,,16,NE,1950,1950,3102,1,1,1116.552621,1116.552621,3505,NO,26.22,35.4,3,7.52,6106,111.197264,121.234203,130.926487,137.0869,I,Above,Gable,0,5701,,30.8106833,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10526,NJBF000051468,124 WATERWAY AVENUE,Egg Harbor,NJ,39.30733036,-74.63569291,RES1,3001,,NaN,NE,1950,0,3102,2,1,1425.656196,1425.656196,3505,NO,33.73,48.31,3,-0.56,6106,111.209139,121.245329,130.936577,137.100462,I,Above,Gable,0,5701,,41.01777407,0,0,,,,1,1,,0.03,nav,1,1950,2,, 10527,NJBF000065721,3 CARANN LANE,Egg Harbor,NJ,39.3479244,-74.58980773,RES1,3001,,16,NE,1975,1975,3101,1,1,1985.472977,1985.472977,3505,NO,25.24,36.76,3,6.71,6112,111.254167,121.51228,131.212621,137.459454,I,Above,Hip,0,5701,,31.0000837,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 10528,NJBF000073044,1189 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37685819,-74.7135144,RES1,3001,,16,NE,1991,1991,3102,2,1,1900.664848,1900.664848,3507,NO,24.59,35.05,1,2.02,6110,109.478522,119.387045,129.154391,134.4637,I,Above,Gable,0,5701,,29.81841089,0,0,,,,1,1,,0.35,nav,1,1991,2,, 10529,NJBF000063932,43 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34311985,-74.59362492,RES1,3001,,16,NE,1987,1987,3102,2,1,2192.315786,2192.315786,3507,NO,34.64,48.95,1,2.8,6112,111.258884,121.50088,131.205863,137.451057,I,Above,Gable,0,5701,,41.79456103,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10530,NJBF000076696,1078 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39442178,-74.7163461,RES1,3001,,NaN,NE,1930,1930,3102,1,1,1177.256188,1177.256188,3507,NO,17.05,23.05,1,0.81,6106,109.336742,119.215026,128.954158,134.142313,I,Above,Gable,0,5701,,20.0469815,0,1.2,,,,1,1,,0.03,nav,1,1930,1,, 10531,NJBF000075786,207 HARBOR DRIVE,Egg Harbor,NJ,39.39113531,-74.71937497,RES1,3001,,17,NE,1960,1960,3102,2,1,1810.320734,1810.320734,3507,NO,22.93,28.36,1,-0.63,6106,109.336394,119.206614,128.948983,134.130206,I,Above,Gable,0,5701,,25.64486236,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 10532,NJBF000063025,109 ANITA DRIVE,Egg Harbor,NJ,39.34072754,-74.59620733,RES1,3001,,16,NE,1970,1970,3102,1,1,1434.039224,1434.039224,3507,NO,17.08,22.86,1,2.67,6112,111.250314,121.483997,131.191459,137.432562,I,Above,Hip,0,5701,,19.96932983,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 10533,NJBF000067213,177 THOMPSONS LANE,Egg Harbor,NJ,39.35257947,-74.70303035,IND2,3002,,16,ME,2002,2002,3401,1,1,533.8195948,533.8195948,3507,NO,16.86,22.76,1,1.94,6110,109.789825,119.722078,129.52047,135.043073,I,Above,Flat,0,5701,,19.8081171,0,0,,,,1,1,,0.15,nav,1,2002,1,, 10534,NJBF000067093,169 THOMPSONS LANE,Egg Harbor,NJ,39.35206378,-74.70225364,RES1,3001,,16,NE,1940,1940,3101,2,1,2042.375839,2042.375839,3507,NO,40.37,46.99,1,2.31,6110,109.801639,119.735869,129.535551,135.066751,I,Above,Gable,0,5701,,43.67979723,0,1.1,,,,1,1,,0.15,nav,1,1940,2,, 10535,NJBF000066336,16 DINA DRIVE,Egg Harbor,NJ,39.34950532,-74.58534809,RES1,3001,,16,NE,1969,1969,3101,2,1,3981.104201,3981.104201,3505,NO,44.14,56.82,3,8.62,6106,111.321648,121.571504,131.267106,137.528628,I,Above,Gable,0,5701,,50.47999791,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10536,NJBF000065805,161 BLACKMAN ROAD,Egg Harbor,NJ,39.34815614,-74.59068315,RES1,3001,,16,NE,1969,1969,3101,1,1,1687.721607,1687.721607,3505,NO,24.52,32.97,3,6.3,6110,111.23219,121.494628,131.195753,137.437848,I,Above,Gable,0,5701,,28.74198673,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10537,NJBF000064290,124 BEVIS MILL ROAD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1955,3101,1,1,1337.473686,1337.473686,3505,NO,26.17,37.57,3,8.09,6110,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,31.86766892,0,0,,,,1,1,,0.35,nav,1,1979,1,, 10538,NJBF000064420,124 BEVIS MILL ROAD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1955,3101,1,1,681.8374405,681.8374405,3505,NO,18.43,27.8,3,7.48,6112,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,23.11953885,0,0,,,,1,1,,0.35,nav,1,1979,1,, 10539,NJBF000067026,148 LEES LANE,Egg Harbor,NJ,39.3517387,-74.69541516,RES1,3001,,16,NE,1985,1985,3101,2,1,1791.34927,1791.34927,3507,NO,33.89,48.67,1,1.28,6106,109.857577,119.813624,129.628154,135.212366,I,Above,Gable,0,5701,,41.27966235,0,0,,,,1,1,,0.03,nav,1,1985,2,, 10540,NJBF000062955,4 OTTER LANE,Egg Harbor,NJ,39.34057252,-74.61446333,RES1,3001,,16,NE,2003,2003,3102,1,1,4776.725761,4776.725761,3505,NO,16.58,29.37,3,4.79,6110,110.920043,121.1743,130.904494,137.055979,I,Above,Hip,0,5701,,22.97606079,0,0,,,,1,1,,0.35,nav,1,2003,1,, 10541,NJBF000066369,1109 BERRY DRIVE,Egg Harbor,NJ,39.34958693,-74.59388994,RES1,3001,,16,NE,1969,1969,3101,2,1,2092.577908,2092.577908,3505,NO,35.8,49.7,3,-0.59,6112,111.142072,121.423542,131.127472,137.350007,I,Above,Gable,0,5701,,42.75113162,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10542,NJBF000062306,288 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1980,3102,1,1,2401.587543,2401.587543,3505,NO,8.12,22.74,3,-2.47,6112,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,15.42761793,0,0,,,,1,1,,0.35,nav,1,1993,1,, 10543,NJBF000063284,31 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34132052,-74.59311229,RES1,3001,,16,NE,1998,1998,3102,1,1,3432.106991,3432.106991,3507,NO,13.65,25.61,1,0.13,6112,111.300583,121.530272,131.234657,137.48809,I,Above,Gable,0,5701,,19.63012581,0,0,,,,1,1,,0.35,nav,1,1998,1,, 10544,NJBF000071237,1234 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36987062,-74.70742003,RES1,3001,,NaN,NE,1950,0,3101,1,1,1249.162191,1249.162191,3507,NO,18.24,27.99,1,0.66,6112,109.579847,119.513013,129.296908,134.693277,I,Above,Hip,0,5701,,23.11877319,0,0,,,,1,1,,0.35,nav,1,1950,1,, 10545,NJBF000063174,1617 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34105724,-74.64891101,IND2,3001,959,NaN,ME,1969,0,3401,3,1,8170.184101,8170.184101,3507,NO,46.81,53.27,1,-0.72,6110,110.432176,120.59157,130.381345,136.334032,I,Above,Flat,0,NaN,,50.03932255,0,0,,,,1,1,,0.35,nav,1,1969,3,, 10546,NJBF000065600,7 CARANN LANE,Egg Harbor,NJ,39.34756554,-74.58926584,RES1,3001,,16,NE,1971,1971,3101,2,1,1652.261669,1652.261669,3505,NO,36.43,47,3,1.15,6112,111.271373,121.525615,131.22555,137.476007,I,Above,Gable,0,5701,,41.71563271,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 10547,NJBF000065648,165 BLACKMAN ROAD,Egg Harbor,NJ,39.34769985,-74.59108584,RES1,3001,,16,NE,1969,1969,3101,1,1,2017.040998,2017.040998,3505,NO,15.26,24.83,3,1.89,6106,111.231553,121.492792,131.19447,137.436231,I,Above,Gable,0,5701,,20.04697859,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10548,NJBF000063400,8 OSPREY COURT,Egg Harbor,NJ,39.34160927,-74.60788224,RES1,3001,,16,NE,1995,1995,3102,2,1,1585.956876,1585.956876,3505,NO,26.17,35.41,3,3.35,6112,111.015266,121.274234,130.995756,137.177329,I,Above,Hip,0,5701,,30.78829102,0,0,,,,1,1,,0.35,nav,1,1995,2,, 10549,NJBF000063100,108 ANITA DRIVE,Egg Harbor,NJ,39.34089496,-74.59572455,RES1,3001,,16,NE,1970,1970,3102,2,1,2310.067262,2310.067262,3507,NO,37.42,48.46,1,1.29,6112,111.256729,121.490337,131.197321,137.440116,I,Above,Gable,0,5701,,42.93946389,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 10550,NJBF000067322,177 THOMPSONS LANE,Egg Harbor,NJ,39.35308069,-74.70413669,IND2,3002,,16,ME,2002,2002,3401,2,1,16254.45413,16254.45413,3507,NO,25.28,30.66,1,0.79,6106,109.77576,119.704898,129.501261,135.012793,I,Above,Flat,0,5701,,27.96762941,0,0,,,,1,1,,0.03,nav,1,2002,2,, 10551,NJBF000067348,177 THOMPSONS LANE,Egg Harbor,NJ,39.35318758,-74.70369244,IND2,3002,,16,ME,2002,2002,3401,3,1,4634.821042,4634.821042,3507,NO,60.67,75.15,1,2.53,6106,109.777871,119.708602,129.505979,135.020332,I,Above,Flat,0,5701,,67.90966511,0,0,,,,1,1,,0.03,nav,1,2002,3,, 10552,NJBF000067399,177 THOMPSONS LANE,Egg Harbor,NJ,39.353331,-74.7032935,IND2,3002,,16,ME,2002,2002,3401,1,1,944.2586742,944.2586742,3507,NO,12.85,22.62,1,1.9,6106,109.779218,119.711428,129.509742,135.026367,I,Above,Flat,0,5701,,17.73397637,0,0,,,,1,1,,0.03,nav,1,2002,1,, 10553,NJBF000067372,177 THOMPSONS LANE,Egg Harbor,NJ,39.352883,-74.703189,IND2,3002,,16,ME,2002,2002,3401,3,1,2815.424598,2815.424598,3507,NO,56.15,61.91,1,-0.16,6106,109.785134,119.717197,129.515454,135.035245,I,Above,Flat,0,5701,,59.02858244,0,0,,,,1,1,,0.03,nav,1,2002,3,, 10554,NJBF000059404,174 WHARF ROAD,Egg Harbor,NJ,39.33418904,-74.67668884,GOV1,3001,510,NaN,E,1969,0,3401,2,1,833.3678421,833.3678421,3507,NO,37.42,49.71,1,2.7,6106,110.25757,120.262212,130.057372,135.861374,I,Above,Flat,0,5701,,43.56650302,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10555,NJBF000064950,202 THOMAS DRIVE,Egg Harbor,NJ,39.34573944,-74.59341879,RES1,3001,,16,NE,1965,1965,3102,2,1,2649.225985,2649.225985,3505,NO,35.2,44.46,3,-1.28,6112,111.217499,121.474712,131.179252,137.416767,I,Above,Gable,0,5701,,39.83080869,0,0,,,,1,1,,0.35,nav,1,1965,2,, 10556,NJBF000066321,1100 JORENE DRIVE,Egg Harbor,NJ,39.34946316,-74.58672919,RES1,3001,,16,NE,1969,1969,3101,2,1,2097.838034,2097.838034,3505,NO,42.22,54.03,3,8.16,6112,111.293145,121.548161,131.245009,137.500578,I,Above,Gable,0,5701,,48.12455475,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10557,NJBF000066215,1102 JORENE DRIVE,Egg Harbor,NJ,39.34921026,-74.58691029,RES1,3001,,16,NE,1972,1972,3101,1,1,1980.291297,1980.291297,3505,NO,26.33,35.9,3,7.6,6112,111.293447,121.547855,131.244977,137.500574,I,Above,Gable,0,5701,,31.11837856,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 10558,NJBF000066628,1506 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35028526,-74.66846313,RES1,3001,,16,NE,1983,1983,3102,2,1,1988.709033,1988.709033,3505,NO,42.62,55.71,3,4.03,6112,110.093518,120.157799,130.006593,135.790886,I,Above,Hip,0,5701,,49.16353522,0,0,,,,1,1,,0.15,nav,1,1983,2,, 10559,NJBF000063871,603 NATHAN LANE,Egg Harbor,NJ,39.34294749,-74.63956645,RES1,3001,,16,NE,1980,1980,3101,1,1,2244.446004,2244.446004,3505,NO,19.42,30.12,3,3.54,6112,110.50845,120.723303,130.497945,136.499762,I,Above,Gable,0,5701,,24.76866349,0,0,,,,1,1,,0.35,nav,1,1980,1,, 10560,NJBF000063975,24 RUSHWOOD DRIVE,Egg Harbor,NJ,39.3432395,-74.6393655,RES1,3001,,16,NE,1980,1980,3101,2,1,1185.111482,1185.111482,3505,NO,37.41,52.32,3,5.8,6112,110.505589,120.723165,130.497734,136.499576,I,Above,Gable,0,5701,,44.86601822,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 10561,NJBF000062565,111 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33972364,-74.61182945,RES1,3001,,16,NE,1976,1976,3102,2,1,2593.421044,2593.421044,3505,NO,37.88,45.19,3,7.72,6110,110.981049,121.22897,130.955036,137.123138,I,Above,Gable,0,5701,,41.5356116,0,1.2,,,,1,1,,0.35,nav,1,1976,2,, 10562,NJBF000055524,159 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32632847,-74.64871622,RES1,3001,,16,NE,1956,1956,3102,1,1,2660.057903,2660.057903,3505,NO,18.86,28.26,3,7.3,6106,110.693029,120.786224,130.540304,136.555978,I,Above,Hip,0,5701,,23.56270221,0,0,,,,1,1,,0.03,nav,1,1956,1,, 10563,NJBF000068165,8023 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3558805,-74.668721,RES1,3001,,16,NE,1987,1987,3102,2,1,1030.214171,1030.214171,3505,NO,37.68,48.92,3,3.62,6112,110.013366,120.092718,129.944799,135.70147,I,Above,Gable,0,5701,,43.30142812,0,0,,,,1,1,,0.35,nav,1,1987,2,, 10564,NJBF000068174,8023 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35589603,-74.66889569,RES1,3001,,16,NE,1987,1987,3102,2,1,831.0565246,831.0565246,3505,NO,39.44,54.21,3,1.23,6112,110.011752,120.089745,129.94223,135.697605,I,Above,Gable,0,5701,,46.82186241,0,0,,,,1,1,,0.35,nav,1,1987,2,, 10565,NJBF000062344,154 ROBERT BEST ROAD,Egg Harbor,NJ,39.33926045,-74.63687739,RES1,3001,,16,NE,1970,1970,3101,1,1,1753.139644,1753.139644,3505,NO,10.8,18.34,3,0.29,6110,110.610309,120.81267,130.577847,136.610277,I,Above,Gable,0,5701,,14.57114369,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 10566,NJBF000062142,152 ROBERT BEST ROAD,Egg Harbor,NJ,39.33888301,-74.63623967,RES1,3001,,16,NE,2014,2014,3101,2,1,701.4609776,701.4609776,3505,NO,39.76,51.46,3,4.26,6106,110.625636,120.827874,130.59144,136.629071,I,Above,Flat,0,5701,,45.61241668,0,0,,,,1,1,,0.03,nav,1,2014,2,, 10567,NJBF000062310,110 KATHYS LANE,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,2009,3101,1,1,1574.736092,1574.736092,3505,NO,17.38,22.86,3,6.5,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,20.12298435,0,0,,,,1,1,,0.03,nav,1,1979,1,, 10568,NJBF000062812,1623 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1900,3101,2,1,1074.635767,1074.635767,3505,NO,35.05,42.52,3,-2.33,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,38.78444222,0,1.2,,,,1,1,,0.03,nav,1,1979,2,, 10569,NJBF000062564,4055 OCEAN HTS AVENUE,Egg Harbor,NJ,39.33972017,-74.60015856,RES1,3001,,16,NE,1925,1925,3102,1,1,1484.126364,1484.126364,3507,NO,15.12,27.97,1,1.18,6106,111.192647,121.427986,131.139508,137.365332,I,Above,Gable,0,5701,,21.54536711,0,1.2,,,,1,1,,0.03,nav,1,1925,1,, 10570,NJBF000063770,6 MAY DRIVE,Egg Harbor,NJ,39.34265903,-74.60919788,RES1,3001,,16,NE,1988,1988,3102,2,1,1918.4073,1918.4073,3505,NO,29.77,37.81,3,0.85,6112,110.972091,121.239684,130.963268,137.134536,I,Above,Gable,0,5701,,33.78854316,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 10571,NJBF000061965,160 ROBERT BEST ROAD,Egg Harbor,NJ,39.33855667,-74.63792235,RES1,3001,,16,NE,1920,1920,3101,2,1,1520.103525,1520.103525,3505,NO,36.38,46.68,3,5.65,6110,110.609665,120.803906,130.5699,136.599015,I,Above,Gable,0,5701,,41.52782347,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 10572,NJBF000065910,1117 FURMAN DRIVE,Egg Harbor,NJ,39.34842286,-74.5926173,RES1,3001,,16,NE,1969,1969,3101,1,1,1641.312727,1641.312727,3505,NO,11.94,18.01,3,-2.48,6110,111.18789,121.458382,131.161391,137.393724,I,Above,Gable,0,5701,,14.977285,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10573,NJBF000069382,10 FRONT STREET,Egg Harbor,NJ,39.35999665,-74.57938986,RES1,3001,,16,NE,1968,1968,3101,1,1,2408.002323,2408.002323,3507,NO,12.22,26.46,1,-0.14,6112,111.293894,121.559862,131.242663,137.49515,I,Above,Gable,0,5701,,19.33889407,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 10574,NJBF000053685,1775 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3208795,-74.6381255,RES1,3001,,15,NE,1940,1940,3102,1,1,956.3324063,956.3324063,3505,NO,20.95,28.3,3,7.99,6106,110.930135,121.026846,130.756352,136.854415,I,Above,Gable,0,5701,,24.6255761,0,0,,,,1,1,,0.03,nav,1,1940,1,, 10575,NJBF000075799,2 RIVER DRIVE,Egg Harbor,NJ,39.39117476,-74.72045197,RES1,3001,,16,NE,2000,2000,3102,2,1,1987.106695,1987.106695,3507,NO,24.37,37.79,1,2.43,6106,109.328847,119.194232,128.935837,134.107777,I,Above,Hip,0,5701,,31.07934337,0,0,,,,1,1,,0.03,nav,1,2000,2,, 10576,NJBF000074795,1123 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3878025,-74.7169215,RES1,3001,,16,NE,1965,1965,3102,1,1,991.8794899,991.8794899,3507,NO,18.82,29.18,1,-0.15,6112,109.374776,119.260574,129.009493,134.230008,I,Above,Gable,0,5701,,24.0003401,0,0,,,,1,1,,0.35,nav,1,1965,1,, 10577,NJBF000051579,107 MORRIS AVENUE,Egg Harbor,NJ,39.30861034,-74.63685954,RES1,3001,,16,NE,1950,1950,3102,1,1,1278.372829,1278.372829,3505,NO,26.12,32.88,3,8.11,6106,111.169297,121.209789,130.905213,137.058128,I,Above,Gable,0,5701,,29.49976653,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10578,NJBF000054310,60 SOMERS AVENUE,Egg Harbor,NJ,39.3230405,-74.6408175,RES1,3001,,16,NE,1991,1991,3102,1,1,2179.447938,2179.447938,3505,NO,24.65,35.39,3,8.26,6110,110.854212,120.955285,130.692821,136.767352,I,Above,Gable,0,5701,,30.02214528,0,0,,,,1,1,,0.35,nav,1,1991,1,, 10579,NJBF000054293,60 SOMERS AVENUE,Egg Harbor,NJ,39.3229785,-74.640656,RES1,3001,,16,NE,1991,1991,3102,1,1,1838.120405,1838.120405,3505,NO,20.09,26.86,3,4.83,6112,110.857504,120.958678,130.6959,136.771581,I,Above,Gable,0,5701,,23.47618796,0,0,,,,1,1,,0.35,nav,1,1991,1,, 10580,NJBF000062354,12 OTTER LANE,Egg Harbor,NJ,39.33927954,-74.61362094,RES1,3001,,16,NE,1998,1998,3102,2,1,4935.350171,4935.350171,3505,NO,33.14,47.18,3,1.39,6112,110.958757,121.203743,130.932035,137.092481,I,Above,Hip,0,5701,,40.16003726,0,1.2,,,,1,1,,0.35,nav,1,1998,2,, 10581,NJBF000063134,29 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34096088,-74.59325901,RES1,3001,,16,NE,1987,1987,3102,2,1,2421.521954,2421.521954,3507,NO,24.52,38.24,1,2.25,6112,111.303997,121.531884,131.236375,137.49031,I,Above,Gable,0,5701,,31.38016116,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10582,NJBF000065507,218 THOMAS DRIVE,Egg Harbor,NJ,39.34728035,-74.59572355,RES1,3001,,16,NE,1991,1991,3102,2,1,2668.950676,2668.950676,3505,NO,25.48,40.29,3,3.13,6106,111.144439,121.417783,131.124491,137.346118,I,Above,Gable,0,5701,,32.88552765,0,0,,,,1,1,,0.03,nav,1,1991,2,, 10583,NJBF000065815,1111 MARLOU AVENUE,Egg Harbor,NJ,39.34817828,-74.58856651,RES1,3001,,16,NE,1969,1969,3101,2,1,2560.365535,2560.365535,3505,NO,28.53,41.7,3,-1.6,6110,111.27571,121.530809,131.229873,137.481462,I,Above,Gable,0,5701,,35.11685968,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10584,NJBF000066218,1120 BERRY DRIVE,Egg Harbor,NJ,39.34921858,-74.59581868,RES1,3001,,16,NE,1969,1969,3101,2,1,2271.333626,2271.333626,3505,NO,26.62,40.41,3,3.56,6112,111.109026,121.394495,131.100712,137.315396,I,Above,Gable,0,5701,,33.51829672,0,0,,,,1,1,,0.35,nav,1,1969,2,, 10585,NJBF000062579,102 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.33975153,-74.64143917,RES1,3001,,16,NE,2012,2012,3101,2,1,827.7927645,827.7927645,3505,NO,21.87,31.78,3,-2.61,6106,110.543371,120.730902,130.504842,136.508366,I,Above,Hip,0,5701,,26.82394908,0,0,,,,1,1,,0.03,nav,1,2012,2,, 10586,NJBF000065479,115 WHARF ROAD,Egg Harbor,NJ,39.34718821,-74.67267884,RES1,3001,,16,NE,1968,1968,3102,1,1,2798.323954,2798.323954,3505,NO,16.25,24.24,3,1.19,6110,110.101659,120.136152,129.980346,135.750064,I,Above,Hip,0,5701,,20.24561341,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 10587,NJBF000069627,306 CENTRAL AVENUE,Egg Harbor,NJ,39.3622217,-74.5789111,RES1,3001,,16,NE,1986,1986,3101,1,1,3264.115633,3264.115633,3507,NO,17.54,30.2,1,1.81,6112,111.274482,121.544363,131.224337,137.471393,I,Above,Gable,0,5701,,23.86753751,0,1.2,,,,1,1,,0.35,nav,1,1986,1,, 10588,NJBF000069667,1350 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36265642,-74.69494354,RES1,3001,,16,NE,1984,1984,3101,1,1,3647.225325,3647.225325,3507,NO,19.85,28.52,1,2.16,6112,109.737394,119.713537,129.526357,135.057984,I,Above,Hip,0,5701,,24.18598644,0,1.1,,,,1,1,,0.35,nav,1,1984,1,, 10589,NJBF000066416,1104 FURMAN DRIVE,Egg Harbor,NJ,39.34970241,-74.59209214,RES1,3001,,16,NE,1969,1969,3101,2,1,2191.807844,2191.807844,3505,NO,22.98,31.79,3,-2.38,6112,111.177163,121.453175,131.155141,137.38565,I,Above,Gable,0,5701,,27.38478706,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10590,NJBF000064966,120 WHARF ROAD,Egg Harbor,NJ,39.34581217,-74.67029996,RES1,3001,,16,NE,2002,2002,3102,1,1,770.7070184,770.7070184,3505,NO,13.45,19.59,3,-2.76,6110,110.142623,120.189853,130.027457,135.819902,I,Above,Gable,0,5701,,16.51758486,0,0,,,,1,1,,0.15,nav,1,2002,1,, 10591,NJBF000065100,120 WHARF ROAD,Egg Harbor,NJ,39.34614554,-74.67048258,RES1,3001,,16,NE,2002,2002,3102,1,1,3568.248691,3568.248691,3505,NO,16.43,30.28,3,5.85,6112,110.136076,120.182523,130.021469,135.811114,I,Above,Gable,0,5701,,23.35284248,0,0,,,,1,1,,0.35,nav,1,2002,1,, 10592,NJBF000057071,139 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.3298595,-74.648742,RES1,3001,,16,NE,1985,1985,3102,2,1,2161.21509,2161.21509,3505,NO,36.39,46.22,3,-0.28,6112,110.630452,120.738932,130.5027,136.50343,I,Above,Hip,0,5701,,41.30076143,0,0,,,,1,1,,0.35,nav,1,1985,2,, 10593,NJBF000066087,1108 MARLOU AVENUE,Egg Harbor,NJ,39.34887683,-74.58864949,RES1,3001,,16,NE,1969,1969,3101,2,1,1745.270727,1745.270727,3505,NO,25.34,35.74,3,0.64,6112,111.262443,121.521601,131.220478,137.469402,I,Above,Gable,0,5701,,30.5364952,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10594,NJBF000066055,1121 BERRY DRIVE,Egg Harbor,NJ,39.34879547,-74.59532376,RES1,3001,,16,NE,1969,1969,3101,1,1,521.0799465,521.0799465,3505,NO,19.12,27.09,3,4.86,6106,111.126345,121.407716,131.113527,137.331974,I,Above,Gable,0,5701,,23.10400198,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10595,NJBF000065451,16 CARANN LANE,Egg Harbor,NJ,39.34712977,-74.58779611,RES1,3001,,16,NE,1969,1969,3101,1,1,3410.148971,3410.148971,3505,NO,16.8,29.33,3,1.53,6106,111.30914,121.555815,131.254508,137.512974,I,Above,Gable,0,5701,,23.0644925,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 10596,NJBF000061849,300 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,2000,3102,1,1,3198.066696,3198.066696,3505,NO,22.66,27.7,3,3.17,6110,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,25.18149371,0,0,,,,1,1,,0.35,nav,1,1993,1,, 10597,NJBF000073110,1181 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37774499,-74.71328299,RES1,3001,,16,NE,1950,1950,3102,2,1,774.5927701,774.5927701,3507,NO,38.18,44.05,1,1,6110,109.472967,119.382308,129.148776,134.455091,I,Above,Gable,0,5701,,41.11491896,0,0,,,,1,1,,0.35,nav,1,1950,2,, 10598,NJBF000064037,604 NATHAN LANE,Egg Harbor,NJ,39.34340041,-74.63995589,RES1,3001,,16,NE,1981,1981,3101,1,1,2105.953796,2105.953796,3505,NO,15.5,29.06,3,-2.68,6110,110.495405,120.711384,130.487274,136.48493,I,Above,Gable,0,5701,,22.28034661,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10599,NJBF000069736,3424 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36353264,-74.58070253,RES1,3001,,16,NE,1969,1969,3101,2,1,1927.324846,1927.324846,3507,NO,22.83,32.5,1,0.33,6112,111.21687,121.499571,131.179251,137.41434,I,Above,Gable,0,5701,,27.6655117,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10600,NJBF000067458,142 LEES LANE,Egg Harbor,NJ,39.35355313,-74.69414425,RES1,3001,,16,NE,1790,1790,3101,2,1,1830.807511,1830.807511,3507,NO,28.95,43.22,1,2.19,6112,109.845559,119.808353,129.626947,135.211316,I,Above,Gable,0,5701,,36.0839393,0,0,,,,1,1,,0.15,nav,1,1790,2,, 10601,NJBF000065557,12 CARANN LANE,Egg Harbor,NJ,39.34746104,-74.58837695,RES1,3001,,16,NE,1969,1969,3101,1,1,2164.53826,2164.53826,3505,NO,16.01,30.21,3,0.59,6106,111.291564,121.542099,131.241227,137.496018,I,Above,Gable,0,5701,,23.11126977,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10602,NJBF000066107,1107 MARLOU AVENUE,Egg Harbor,NJ,39.34892134,-74.58795419,RES1,3001,,16,NE,1969,1969,3101,2,1,1731.833877,1731.833877,3505,NO,27.82,39.08,3,4.74,6112,111.276255,121.533082,131.231287,137.483182,I,Above,Gable,0,5701,,33.45154436,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10603,NJBF000065822,1114 MARLOU AVENUE,Egg Harbor,NJ,39.34818611,-74.58929824,RES1,3001,,16,NE,1969,1969,3101,2,1,1332.195884,1332.195884,3505,NO,41.07,55.37,3,3.05,6112,111.260374,121.518132,131.21789,137.466165,I,Above,Gable,0,5701,,48.22154209,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10604,NJBF000070325,315 BETSEY SCULL ROAD,Egg Harbor,NJ,39.36671767,-74.70787157,RES1,3001,,16,NE,1993,1993,3101,2,1,1322.84552,1322.84552,3507,NO,27.04,33.9,1,-0.2,6112,109.60609,119.535248,129.321662,134.731407,I,Above,Gable,0,5701,,30.47238258,0,0,,,,1,1,,0.35,nav,1,1993,2,, 10605,NJBF000062970,203 LAKEVIEW DRIVE,Egg Harbor,NJ,39.34061515,-74.61050186,RES1,3001,,16,NE,1978,1978,3102,2,1,1754.540985,1754.540985,3505,NO,27.96,38.63,3,0.29,6110,110.987366,121.241138,130.965812,137.137574,I,Above,Gable,0,5701,,33.29362309,0,1.1,,,,1,1,,0.35,nav,1,1978,2,, 10606,NJBF000066341,2 EVE DRIVE,Egg Harbor,NJ,39.34952252,-74.59264982,RES1,3001,,16,NE,1969,1969,3101,2,1,2133.839891,2133.839891,3505,NO,33.97,46.38,3,8.11,6112,111.168645,121.445567,131.148194,137.376717,I,Above,Flat,0,5701,,40.17754702,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10607,NJBF000066298,1106 FURMAN DRIVE,Egg Harbor,NJ,39.34942457,-74.59236469,RES1,3001,,16,NE,1969,1969,3101,2,1,1341.844054,1341.844054,3505,NO,24.9,37.68,3,0.28,6112,111.176169,121.451557,131.153924,137.384093,I,Above,Gable,0,5701,,31.28805665,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10608,NJBF000066265,1108 LAKESIDE DRIVE,Egg Harbor,NJ,39.34932985,-74.59101932,RES1,3001,,16,NE,1969,1969,3101,2,1,1679.916558,1679.916558,3505,NO,27.45,42.36,3,1.47,6110,111.205601,121.475764,131.176784,137.413462,I,Above,Gable,0,5701,,34.90549337,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10609,NJBF000065953,1107 JORENE DRIVE,Egg Harbor,NJ,39.3485247,-74.58687181,RES1,3001,,16,NE,1969,1969,3101,2,1,1872.674915,1872.674915,3505,NO,36.84,44.56,3,3.14,6106,111.305432,121.556139,131.253507,137.511517,I,Above,Gable,0,5701,,40.69986362,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10610,NJBF000063308,148 BEVIS MILL ROAD,Egg Harbor,NJ,39.34137553,-74.64060688,RES1,3001,,16,NE,2003,2003,3101,1,1,1618.762292,1618.762292,3505,NO,9.21,22.96,3,-1.41,6110,110.52419,120.724866,130.49959,136.501513,I,Above,Gable,0,5701,,16.08506799,0,0,,,,1,1,,0.35,nav,1,2003,1,, 10611,NJBF000075890,213 HARBOR DRIVE,Egg Harbor,NJ,39.3915217,-74.72084482,RES1,3001,,16,NE,1972,1972,3102,2,1,2577.450468,2577.450468,3507,NO,36.82,45.39,1,0.15,6106,109.323982,119.187087,128.927951,134.094614,I,Above,Flat,0,5701,,41.10644621,0,0,,,,1,1,,0.03,nav,1,1972,2,, 10612,NJBF000077576,1035 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39958894,-74.71686095,RES1,3001,,16,NE,1990,1990,3102,2,1,1442.34233,1442.34233,3507,NO,37.43,49.39,1,2.11,6106,109.303844,119.16904,128.899754,134.054326,I,Above,Hip,0,5701,,43.40832267,0,0,,,,1,1,,0.03,nav,1,1990,2,, 10613,NJBF000070903,3374 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36880938,-74.58146598,RES1,3001,,16,NE,1920,1920,3101,2,1,1948.39036,1948.39036,3507,NO,24.06,36.84,1,1.78,6106,111.134008,121.431146,131.104007,137.318077,I,Above,Gable,0,5701,,30.45085075,0,0,,,,1,1,,0.03,nav,1,1920,2,, 10614,NJBF000066370,170 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34958775,-74.59611023,RES1,3001,,16,NE,1969,1969,3101,1,1,1675.012831,1675.012831,3505,NO,13.69,22.02,3,-1.29,6112,111.096787,121.385398,131.091805,137.303868,I,Above,Hip,0,5701,,17.85414568,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10615,NJBF000066520,171 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34997054,-74.59652064,RES1,3001,,16,NE,1965,1965,3101,1,1,2035.513792,2035.513792,3505,NO,13.25,21.22,3,2.25,6112,111.081874,121.374093,131.080818,137.289635,I,Above,Gable,0,5701,,17.23785247,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 10616,NJBF000055639,28 SOMERS AVENUE,Egg Harbor,NJ,39.32662424,-74.64370812,RES1,3001,,16,NE,1970,1970,3102,2,1,1060.724597,1060.724597,3505,NO,35.72,50.43,3,-1.57,6106,110.751423,120.861851,130.61153,136.655129,I,Above,Gable,0,5701,,43.07450585,0,0,,,,1,1,,0.03,nav,1,1970,2,, 10617,NJBF000066395,1114 BERRY DRIVE,Egg Harbor,NJ,39.34964944,-74.59493065,RES1,3001,,16,NE,1965,1965,3101,1,1,2744.343367,2744.343367,3505,NO,13.05,18.79,3,-0.31,6112,111.119725,121.404968,131.110019,137.327458,I,Above,Gable,0,5701,,15.92045194,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 10618,NJBF000065496,169 BLACKMAN ROAD,Egg Harbor,NJ,39.347251,-74.59149881,RES1,3001,,16,NE,1971,1971,3101,1,1,1644.944206,1644.944206,3505,NO,14.12,28.78,3,-2.77,6106,111.230663,121.490717,131.192943,137.434298,I,Above,Gable,0,5701,,21.44841167,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 10619,NJBF000063303,166 WHARF ROAD,Egg Harbor,NJ,39.34136674,-74.67545596,RES1,3001,,16,NE,2012,2012,3102,2,1,4710.508517,4710.508517,3505,NO,28.01,36.04,3,-0.77,6106,110.16171,120.179205,130.001589,135.779743,I,Above,Hip,0,5701,,32.02856063,0,0,,,,1,1,,0.03,nav,1,2012,2,, 10620,NJBF000066250,152 LEES LANE,Egg Harbor,NJ,39.3493035,-74.6970055,RES1,3001,,16,NE,1928,1928,3101,2,1,1127.632695,1127.632695,3507,NO,36.58,49.69,1,2.89,6106,109.874861,119.822827,129.631195,135.216144,I,Above,Gable,0,5701,,43.13302496,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 10621,NJBF000066227,152 LEES LANE,Egg Harbor,NJ,39.34924048,-74.69717668,RES1,3001,,16,NE,1928,1928,3101,2,1,996.5901031,996.5901031,3507,NO,25.91,33.86,1,1.43,6106,109.874298,119.821652,129.629563,135.213568,I,Above,Gable,0,5701,,29.88716219,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 10622,NJBF000066809,151 LEES LANE,Egg Harbor,NJ,39.35085608,-74.69839711,RES1,3001,,16,NE,1965,1965,3101,2,1,2689.846426,2689.846426,3507,NO,28,36.34,1,0.28,6106,109.845286,119.790625,129.597682,135.164216,I,Above,Flat,0,5701,,32.17464811,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 10623,NJBF000061111,393 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33707314,-74.6369977,RES1,3001,,16,NE,1800,1800,3101,2,1,1238.103051,1238.103051,3505,NO,31.86,44.64,3,-1.97,6106,110.649064,120.837527,130.599739,136.640129,I,Above,Gable,0,5701,,38.25060392,0,1.2,,,,1,1,,0.03,nav,1,1800,2,, 10624,NJBF000063695,35 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34241813,-74.59307104,RES1,3001,,16,NE,2000,2000,3102,2,1,2030.684727,2030.684727,3507,NO,33.15,45.34,1,-0.91,6110,111.282184,121.518409,131.222823,137.472861,I,Above,Gable,0,5701,,39.24591133,0,0,,,,1,1,,0.35,nav,1,2000,2,, 10625,NJBF000066211,134 CINDY DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1807.010137,1807.010137,3505,NO,14.58,22.93,3,-0.01,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,18.75538195,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10626,NJBF000071232,3364 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36985275,-74.58154229,RES1,3001,,16,NE,1958,1958,3101,1,1,1076.908229,1076.908229,3507,NO,12.49,19.74,1,1.18,6112,111.120183,121.419018,131.090294,137.300517,I,Above,Gable,0,5701,,16.11633381,0,1.2,,,,1,1,,0.35,nav,1,1958,1,, 10627,NJBF000062644,148 ROBERT BEST ROAD,Egg Harbor,NJ,39.33991702,-74.63597981,RES1,3001,,16,NE,1970,1970,3101,2,1,1905.508459,1905.508459,3505,NO,32.86,43.85,3,5.91,6112,110.609921,120.819628,130.584089,136.61915,I,Above,Gable,0,5701,,38.35532571,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 10628,NJBF000066382,1527 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34962128,-74.6648799,RES1,3001,,16,NE,1900,1900,3102,2,1,1421.096411,1421.096411,3505,NO,35.62,43.18,3,1.57,6112,110.134409,120.224114,130.063315,135.875052,I,Above,Gable,0,5701,,39.40469418,0,0,,,,1,1,,0.35,nav,1,1900,2,, 10629,NJBF000065862,1112 FURMAN DRIVE,Egg Harbor,NJ,39.3482965,-74.59341697,RES1,3001,,16,NE,1972,1972,3101,2,1,2044.173842,2044.173842,3505,NO,31.09,43.82,3,3.29,6106,111.173679,121.446047,131.149944,137.378989,I,Above,Hip,0,5701,,37.45681877,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 10630,NJBF000065051,204 THOMAS DRIVE,Egg Harbor,NJ,39.34600542,-74.59368051,RES1,3001,,16,NE,1991,1991,3102,1,1,2091.815912,2091.815912,3505,NO,11.82,26.38,3,-0.33,6110,111.207623,121.46721,131.171978,137.4074,I,Above,Hip,0,5701,,19.0983531,0,1.1,,,,1,1,,0.35,nav,1,1991,1,, 10631,NJBF000066166,1110 LAKESIDE DRIVE,Egg Harbor,NJ,39.34909356,-74.59121761,RES1,3001,,16,NE,1969,1969,3101,1,1,2029.614925,2029.614925,3505,NO,23.5,37.62,3,7.41,6106,111.205419,121.474966,131.176283,137.412831,I,Above,Gable,0,5701,,30.55670523,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 10632,NJBF000052717,1810 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,NaN,NE,1969,0,3101,1,1,1280.850355,1280.850355,3505,NO,13.86,26.03,3,-1.35,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,19.94469043,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10633,NJBF000052993,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31814442,-74.63531962,RES1,3001,,NaN,NE,1969,0,3101,1,1,1873.537271,1873.537271,3505,NO,26.5,36.12,3,7.21,6106,111.019304,121.107869,130.82803,136.952016,I,Above,Flat,0,5701,,31.31054245,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10634,NJBF000053096,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3186675,-74.632505,RES1,3001,,NaN,NE,1969,0,3101,1,1,1464.313678,1464.313678,3505,NO,14.23,27.4,3,3.51,6106,111.05033,121.146375,130.865467,137.00243,I,Above,Gable,0,5701,,20.81531515,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10635,NJBF000052832,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31737436,-74.63384356,RES1,3001,,NaN,NE,1969,0,3101,1,1,1544.043197,1544.043197,3505,NO,13.04,24.03,3,-1.19,6106,111.054514,121.141722,130.858752,136.993577,I,Above,Hip,0,5701,,18.53443954,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10636,NJBF000053018,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.318289,-74.6336585,RES1,3001,,NaN,NE,1969,0,3101,1,1,1077.741393,1077.741393,3505,NO,26.56,35.36,3,8.22,6106,111.04052,121.13271,130.851858,136.984153,I,Above,Flat,0,5701,,30.95921094,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10637,NJBF000053246,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31923768,-74.63381078,RES1,3001,,NaN,NE,1969,0,3101,1,1,1693.346975,1693.346975,3505,NO,21.23,35.09,3,4.32,6106,111.020993,121.11781,130.839411,136.96724,I,Above,Flat,0,5701,,28.1623695,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10638,NJBF000053085,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31859619,-74.6332736,RES1,3001,,NaN,NE,1969,0,3101,1,1,1531.815977,1531.815977,3505,NO,18.92,28.89,3,4.42,6106,111.040468,121.134882,130.854458,136.987615,I,Above,Hip,0,5701,,23.90800755,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10639,NJBF000052971,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.318045,-74.6350635,RES1,3001,,NaN,NE,1969,0,3102,2,1,1275.671698,1275.671698,3505,NO,41.83,56.65,3,3.28,6106,111.024761,121.113284,130.832986,136.958726,I,Above,Hip,0,5701,,49.23923675,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10640,NJBF000053193,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31903848,-74.63405914,RES1,3001,,NaN,NE,1969,0,3101,1,1,1050.059597,1050.059597,3505,NO,17.96,27.99,3,4.8,6106,111.021076,121.116428,130.837755,136.96503,I,Above,Gable,0,5701,,22.97158259,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10641,NJBF000052990,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31813585,-74.63494809,RES1,3001,,NaN,NE,1969,0,3101,1,1,938.9050715,938.9050715,3505,NO,19.67,32.09,3,4.16,6106,111.024765,121.113952,130.833788,136.959796,I,Above,Hip,0,5701,,25.87974702,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10642,NJBF000053133,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31881938,-74.63430699,RES1,3001,,NaN,NE,1969,0,3101,1,1,1962.991395,1962.991395,3505,NO,17.68,26.03,3,3.5,6106,111.021509,121.115301,130.836302,136.963096,I,Above,Hip,0,5701,,21.85772638,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10643,NJBF000053034,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.318344,-74.6328345,RES1,3001,,NaN,NE,1969,0,3101,1,1,1223.741992,1223.741992,3505,NO,13.47,23.61,3,-0.52,6106,111.051436,121.145268,130.86386,137.00031,I,Above,Gable,0,5701,,18.54272973,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10644,NJBF000053063,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31849181,-74.63340917,RES1,3001,,NaN,NE,1969,0,3101,1,1,1230.230617,1230.230617,3505,NO,16.08,22.02,3,-0.56,6106,111.040414,121.134065,130.853502,136.986341,I,Above,Flat,0,5701,,19.04985303,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10645,NJBF000053006,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31822444,-74.63291635,RES1,3001,,NaN,NE,1969,0,3101,1,1,1878.682627,1878.682627,3505,NO,24.36,38.82,3,5.48,6106,111.052452,121.145531,130.8639,137.00038,I,Above,Gable,0,5701,,31.58938699,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10646,NJBF000052937,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3178695,-74.6340815,RES1,3001,,NaN,NE,1969,0,3101,1,1,1649.281145,1649.281145,3505,NO,23.23,32.39,3,4.32,6106,111.042058,121.131393,130.849853,136.981511,I,Above,Flat,0,5701,,27.80907624,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10647,NJBF000053011,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31824299,-74.63485198,RES1,3001,,NaN,NE,1969,0,3101,1,1,1569.325353,1569.325353,3505,NO,11.03,17.83,3,0.11,6106,111.024191,121.114089,130.834115,136.960221,I,Above,Hip,0,5701,,14.43020215,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10648,NJBF000053001,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.318208,-74.633355,RES1,3001,,NaN,NE,1969,0,3101,1,1,1196.645315,1196.645315,3505,NO,21.93,36.14,3,3.43,6106,111.046379,121.138657,130.857354,136.991568,I,Above,Flat,0,5701,,29.03565379,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10649,NJBF000052945,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31790285,-74.63326815,RES1,3001,,NaN,NE,1969,0,3101,1,1,2010.426781,2010.426781,3505,NO,17.97,25.52,3,4,6106,111.053205,121.144058,130.861933,136.997779,I,Above,Flat,0,5701,,21.74802713,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10650,NJBF000052936,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.317868,-74.6337215,RES1,3001,,NaN,NE,1969,0,3101,1,1,1336.877699,1336.877699,3505,NO,19.94,25.27,3,3.54,6106,111.047288,121.137217,130.855377,136.988955,I,Above,Flat,0,5701,,22.60273055,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10651,NJBF000053269,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3193348,-74.63370854,RES1,3001,,NaN,NE,1969,0,3101,1,1,2132.062724,2132.062724,3505,NO,19.03,28.9,3,3.42,6106,111.02069,121.118187,130.839934,136.967935,I,Above,Gable,0,5701,,23.96585131,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10652,NJBF000053190,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3190336,-74.63268289,RES1,3001,,NaN,NE,1969,0,3101,1,1,1636.741444,1636.741444,3505,NO,24.34,35.89,3,6.92,6106,111.04103,121.1387,130.858828,136.993444,I,Above,Flat,0,5701,,30.11541451,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10653,NJBF000053303,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31943617,-74.63357096,RES1,3001,,NaN,NE,1969,0,3101,1,1,1516.024354,1516.024354,3505,NO,22.03,34.16,3,8.59,6106,111.020833,121.119094,130.840965,136.969314,I,Above,Flat,0,5701,,28.09358363,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10654,NJBF000052884,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31763298,-74.63432765,RES1,3001,,NaN,NE,1969,0,3101,1,1,1651.359972,1651.359972,3505,NO,22.79,34.16,3,4.22,6106,111.042818,121.130533,130.8486,136.979858,I,Above,Flat,0,5701,,28.47676833,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10655,NJBF000053159,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31893342,-74.63417116,RES1,3001,,NaN,NE,1969,0,3101,1,1,2549.931241,2549.931241,3505,NO,19.12,24.26,3,7.33,6106,111.021383,121.115998,130.837164,136.964245,I,Above,Hip,0,5701,,21.69017126,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10656,NJBF000053039,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31837554,-74.63511725,RES1,3001,,NaN,NE,1969,0,3101,1,1,1647.886777,1647.886777,3505,NO,15.08,26.7,3,0.07,6106,111.017981,121.10808,130.828659,136.952833,I,Above,Gable,0,5701,,20.88851201,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10657,NJBF000053036,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31835555,-74.63475136,RES1,3001,,NaN,NE,1969,0,3101,1,1,1388.340918,1388.340918,3505,NO,15.4,27,3,3.95,6106,111.02358,121.114229,130.834454,136.960663,I,Above,Flat,0,5701,,21.19944987,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10658,NJBF000052966,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.318011,-74.6331465,RES1,3001,,NaN,NE,1969,0,3101,1,1,1728.307828,1728.307828,3505,NO,9.49,17.57,3,-1.17,6106,111.053003,121.14461,130.862649,136.998727,I,Above,Flat,0,5701,,13.53312708,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10659,NJBF000053135,1790 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31883338,-74.63473799,RES1,3001,,NaN,NE,1969,0,3101,1,1,952.6555707,952.6555707,3505,NO,17.43,25.21,3,4.79,6106,111.015077,121.108175,130.829578,136.954012,I,Above,Flat,0,5701,,21.31669923,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10660,NJBF000065115,209 THOMAS DRIVE,Egg Harbor,NJ,39.346171,-74.5946035,RES1,3001,,16,NE,1965,1965,3102,2,1,1399.69486,1399.69486,3505,NO,40.11,48.66,3,5.32,6112,111.186173,121.449483,131.155203,137.385781,I,Above,Gable,0,5701,,44.38420288,0,1.1,,,,1,1,,0.15,nav,1,1965,2,, 10661,NJBF000062464,103 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.33951772,-74.6417264,RES1,3001,,16,NE,1990,1990,3101,1,1,1511.224578,1511.224578,3505,NO,12.29,22.43,3,1.63,6110,110.544064,120.729035,130.503126,136.505886,I,Above,Gable,0,5701,,17.35971117,0,0,,,,1,1,,0.35,nav,1,1990,1,, 10662,NJBF000062199,20 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33897715,-74.64300494,RES1,3001,,16,NE,1940,1940,3101,1,1,877.4490137,877.4490137,3505,NO,20.68,26.27,3,4.36,6106,110.538141,120.71461,130.490083,136.48739,I,Above,Gable,0,5701,,23.47453596,0,0,,,,1,1,,0.03,nav,1,1940,1,, 10663,NJBF000067867,311 POPLAR AVENUE,Egg Harbor,NJ,39.35483152,-74.58089572,RES1,3001,,16,NE,1972,1972,3101,2,1,1404.719523,1404.719523,3507,NO,30.34,42.38,1,2.6,6106,111.33484,121.589704,131.278362,137.541625,I,Above,Gable,0,5701,,36.35866768,0,0,,,,1,1,,0.03,nav,1,1972,2,, 10664,NJBF000065616,111 WHARF ROAD,Egg Harbor,NJ,39.3476221,-74.67257756,RES1,3001,,16,NE,1980,1980,3102,1,1,2315.020753,2315.020753,3505,NO,17.75,25.96,3,5.51,6112,110.09631,120.13151,129.977273,135.74565,I,Above,Gable,0,5701,,21.85312284,0,1.1,,,,1,1,,0.03,nav,1,1980,1,, 10665,NJBF000056214,148 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.327981,-74.647392,RES1,3001,,15,NE,1945,1945,3102,1,1,857.9552279,857.9552279,3505,NO,19.03,27.38,3,1.69,6106,110.680319,120.785217,130.542458,136.559022,I,Above,Flat,0,5701,,23.20274537,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 10666,NJBF000069487,1325 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36086122,-74.70706643,IND2,3002,,16,ME,1998,1998,3401,2,1,8033.583718,8033.583718,3507,NO,34.62,48.38,1,0.89,6112,109.669855,119.596955,129.388394,134.835902,I,Above,Flat,0,5701,,41.49968965,0,0,,,,1,1,,1,nav,1,1998,2,, 10667,NJBF000065355,105 BAKER PLACE ROAD,Egg Harbor,NJ,39.3468235,-74.663785,RES1,3001,,16,NE,2004,2004,3101,2,1,868.7490507,868.7490507,3507,NO,25.57,32.38,1,2.04,6110,110.186496,120.277137,130.107899,135.939662,I,Above,Hip,0,5701,,28.9741946,0,0,,,,1,1,,0.35,nav,1,2004,2,, 10668,NJBF000062241,12 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.3390752,-74.61156451,RES1,3001,,16,NE,1975,1975,3102,2,1,2264.348759,2264.348759,3505,NO,41.56,48.56,3,7.12,6110,110.997831,121.241063,130.966424,137.138152,I,Above,Gable,0,5701,,45.05761702,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 10669,NJBF000067040,1441 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35178082,-74.68035147,RES1,3001,,16,NE,1994,1994,3102,1,1,1287.184084,1287.184084,3505,NO,15.79,25.49,3,4.76,6110,109.974831,119.978696,129.828597,135.522522,I,Above,Gable,0,5701,,20.63918563,0,0,,,,1,1,,0.35,nav,1,1994,1,, 10670,NJBF000063250,1620 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3412275,-74.648298,RES1,3001,,16,NE,1750,1750,3101,2,1,1132.186093,1132.186093,3507,NO,20.81,30.73,1,-0.21,6106,110.436109,120.599496,130.388436,136.344198,I,Above,Flat,0,5701,,25.77077907,0,0,,,,1,1,,0.03,nav,1,1750,2,, 10671,NJBF000064589,1579 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34485949,-74.65579251,RES1,3001,,16,NE,2007,2007,3101,2,1,842.9286513,842.9286513,3507,NO,39.06,48.93,1,1.36,6112,110.294597,120.431469,130.241733,136.134659,I,Above,Gable,0,5701,,43.99299371,0,1.1,,,,1,1,,0.35,nav,1,2007,2,, 10672,NJBF000064729,1579 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34517863,-74.65580567,RES1,3001,,16,NE,2007,2007,3101,2,1,1837.396663,1837.396663,3507,NO,37.49,47.37,1,0.86,6112,110.289225,120.427281,130.238158,136.129608,I,Above,Gable,0,5701,,42.4280549,0,1.1,,,,1,1,,0.35,nav,1,2007,2,, 10673,NJBF000063475,1611 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3418215,-74.64966119,RES1,3001,,16,NE,1947,1947,3101,1,1,597.5120402,597.5120402,3507,NO,12.53,26.15,1,-0.77,6110,110.41056,120.569722,130.36229,136.307094,I,Above,Gable,0,5701,,19.34002984,0,1.2,,,,1,1,,0.35,nav,1,1947,1,, 10674,NJBF000075606,102 BYRON DRIVE,Egg Harbor,NJ,39.39048256,-74.71748979,RES1,3001,,16,NE,1950,1950,3102,2,1,2143.368355,2143.368355,3507,NO,32.06,41.25,1,1.57,6106,109.353325,119.232956,128.977506,134.178222,I,Above,Gable,0,5701,,36.65339389,0,0,,,,1,1,,0.03,nav,1,1950,2,, 10675,NJBF000075556,102 BYRON DRIVE,Egg Harbor,NJ,39.39028258,-74.71742318,RES1,3001,,16,NE,1965,1950,3102,2,1,1716.010016,1716.010016,3507,NO,32.04,41.61,1,0.44,6106,109.355064,119.235289,128.980181,134.182583,I,Above,Gable,0,5701,,36.82620356,0,0,,,,1,1,,0.03,nav,1,1965,2,, 10676,NJBF000066725,,Egg Harbor,NJ,39.35058447,-74.67466062,RES1,3001,,NaN,NE,1969,0,3102,2,1,1187.188861,1187.188861,3505,NO,36.45,44.03,3,1.56,6112,110.037132,120.061183,129.918201,135.65813,I,Above,Hip,0,5701,,40.24063795,0,0,,,,1,1,,0.35,nav,1,1969,2,, 10677,NJBF000059197,1708 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33375547,-74.64214324,GOV2,3004,,NaN,E,1969,0,3401,2,1,8513.82903,8513.82903,3507,NO,24.27,37.19,1,0.92,6106,110.643066,120.794596,130.558848,136.582531,I,Above,Flat,0,NaN,,30.72869212,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10678,NJBF000062514,21 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33960909,-74.64267802,RES1,3001,,16,NE,2007,2007,3101,1,1,1366.293389,1366.293389,3505,NO,18.88,31.02,3,6.17,6106,110.530756,120.712172,130.488104,136.484794,I,Above,Gable,0,5701,,24.94959218,0,0,,,,1,1,,0.03,nav,1,2007,1,, 10679,NJBF000065741,1121 FURMAN DRIVE,Egg Harbor,NJ,39.34796683,-74.59300783,RES1,3001,,16,NE,1971,1971,3101,1,1,1898.090691,1898.090691,3505,NO,9.63,24.22,3,-2.47,6106,111.187632,121.456753,131.160323,137.39236,I,Above,Gable,0,5701,,16.92215311,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 10680,NJBF000073005,1193 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37641914,-74.71331354,RES1,3001,,16,NE,1965,1965,3102,1,1,1256.354562,1256.354562,3507,NO,16.07,21.89,1,1.66,6112,109.48343,119.392891,129.161025,134.474375,I,Above,Flat,0,5701,,18.97963348,0,0,,,,1,1,,0.35,nav,1,1965,1,, 10681,NJBF000063099,34 VELLA LA VELLA LANE,Egg Harbor,NJ,39.340894,-74.64208506,RES1,3001,,16,NE,2007,2007,3101,2,1,3113.501558,3113.501558,3505,NO,36.03,42.75,3,8.46,6106,110.51482,120.706188,130.482997,136.478014,I,Above,Gable,0,5701,,39.39108413,0,0,,,,1,1,,0.03,nav,1,2007,2,, 10682,NJBF000061549,314 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1900,3102,2,1,1636.659481,1636.659481,3505,NO,20.1,31.9,3,-1.21,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,25.99680002,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10683,NJBF000061492,314 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1900,3102,2,1,2783.341484,2783.341484,3505,NO,28.1,40.12,3,4.21,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,34.10903174,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10684,NJBF000076955,1071 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.395559,-74.71687456,RES1,3001,,16,NE,2014,2014,3102,3,1,965.8325283,965.8325283,3507,NO,33.32,48.29,1,-0.9,6106,109.326418,119.200152,128.937241,134.114522,I,Above,Hip,0,5701,,40.80483128,0,0,,,,1,1,,0.03,nav,1,2014,3,, 10685,NJBF000064228,110 NANCY DRIVE,Egg Harbor,NJ,39.343945,-74.592649,RES1,3001,,16,NE,1975,1975,3102,2,1,2235.034927,2235.034927,3505,NO,30.01,42.06,3,6.9,6110,111.264036,121.508256,131.212219,137.459186,I,Above,Hip,0,5701,,36.03151016,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 10686,NJBF000064602,1581 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3448775,-74.6547945,RES1,3001,219,NaN,NE,1969,0,3101,1,1,1060.859245,1060.859245,3507,NO,19.48,30.63,1,0.78,6112,110.304406,120.447589,130.255815,136.155086,I,Above,Gable,0,5701,,25.05680816,0,0,,,,1,1,,0.35,nav,1,1969,1,, 10687,NJBF000056732,141 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.3291335,-74.6475875,RES1,3001,,16,NE,1993,1993,3102,2,1,1873.30664,1873.30664,3505,NO,37.02,47.04,3,1,6106,110.657473,120.766874,130.52739,136.538002,I,Above,Gable,0,5701,,42.02737415,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10688,NJBF000077710,1029 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40046615,-74.71663132,RES1,3001,,16,NE,1960,1960,3102,1,1,1132.022775,1132.022775,3507,NO,10.57,20.06,1,-0.48,6106,109.300733,119.164893,128.894279,134.045819,I,Above,Hip,0,5701,,15.31188151,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 10689,NJBF000064539,124 WHARF ROAD,Egg Harbor,NJ,39.34473966,-74.67172775,RES1,3001,,16,NE,1976,1976,3102,2,1,1033.314301,1033.314301,3505,NO,30.77,40.81,3,4.86,6110,110.145654,120.183975,130.01869,135.8064,I,Above,Gable,0,5701,,35.79299073,0,1.2,,,,1,1,,0.35,nav,1,1976,2,, 10690,NJBF000062997,21 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34066182,-74.5946755,RES1,3001,,16,NE,1987,1987,3102,2,1,2202.245696,2202.245696,3507,NO,32.41,42.7,1,1.84,6110,111.281397,121.511027,131.216895,137.465311,I,Above,Gable,0,5701,,37.55150648,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10691,NJBF000065788,1 CARANN LANE,Egg Harbor,NJ,39.34810033,-74.59008333,RES1,3001,,16,NE,1975,1975,3101,1,1,1597.343355,1597.343355,3505,NO,11.51,24.62,3,-0.52,6110,111.245532,121.505579,131.20613,137.451137,I,Above,Gable,0,5701,,18.06435924,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 10692,NJBF000062820,105 ANITA DRIVE,Egg Harbor,NJ,39.340295,-74.5958048,RES1,3001,,16,NE,1970,1970,3102,2,1,2504.956875,2504.956875,3507,NO,37.7,52.25,1,-0.35,6110,111.265848,121.495882,131.202844,137.447239,I,Above,Gable,0,5701,,44.97160331,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 10693,NJBF000059201,109 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33376387,-74.6449702,RES1,3001,,16,NE,1985,1985,3102,2,1,2652.569482,2652.569482,3505,NO,41.54,50.46,3,5.29,6106,110.607479,120.748503,130.516897,136.52385,I,Above,Gable,0,5701,,46.00182697,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 10694,NJBF000065842,18 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34825949,-74.5944693,RES1,3001,,16,NE,1969,1969,3101,1,1,2510.109434,2510.109434,3505,NO,24.6,38.81,3,8.92,6106,111.152891,121.428382,131.133427,137.357685,I,Above,Gable,0,5701,,31.70565196,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10695,NJBF000065921,3 BONNIE DRIVE,Egg Harbor,NJ,39.34844511,-74.59368134,RES1,3001,,16,NE,1969,1969,3101,2,1,1584.722026,1584.722026,3505,NO,29.99,40.82,3,3.37,6106,111.165752,121.439846,131.143977,137.371297,I,Above,Flat,0,5701,,35.40392299,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10696,NJBF000062943,216 BLACKMAN ROAD,Egg Harbor,NJ,39.34055641,-74.59686282,RES1,3001,,16,NE,2005,2005,3102,2,1,2900.599349,2900.599349,3507,NO,37.67,49.34,1,1.61,6112,111.240657,121.474738,131.182861,137.421471,I,Above,Hip,0,5701,,43.50494073,0,0,,,,1,1,,0.35,nav,1,2005,2,, 10697,NJBF000063305,102 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34136805,-74.61300978,RES1,3001,,16,NE,1986,1986,3102,1,1,2020.928381,2020.928381,3505,NO,17.03,29.35,3,2.25,6110,110.929705,121.189722,130.918205,137.074426,I,Above,Gable,0,5701,,23.18714723,0,1.1,,,,1,1,,0.35,nav,1,1986,1,, 10698,NJBF000065533,9 CARANN LANE,Egg Harbor,NJ,39.34736354,-74.58899186,RES1,3001,,16,NE,1975,1975,3101,2,1,1733.092903,1733.092903,3505,NO,37.21,49.27,3,5.66,6110,111.280422,121.532595,131.232332,137.484684,I,Above,Hip,0,5701,,43.23567912,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 10699,NJBF000075563,101 BYRON DRIVE,Egg Harbor,NJ,39.39031523,-74.71797327,RES1,3001,,16,NE,1975,1975,3102,2,1,1939.519246,1939.519246,3507,NO,22.95,29.28,1,-0.92,6106,109.351135,119.228845,128.973327,134.170941,I,Above,Flat,0,5701,,26.11408281,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 10700,NJBF000051686,9 BETHUNE AVENUE,Egg Harbor,NJ,39.30991843,-74.63656786,RES1,3001,,15,NE,1975,1975,3102,1,1,875.5891907,875.5891907,3505,NO,18.07,28.46,3,1.91,6106,111.150051,121.19696,130.895936,137.045278,I,Above,Gable,0,5701,,23.26626152,0,0,,,,1,1,,0.03,nav,1,1975,1,, 10701,NJBF000063494,206 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34187184,-74.59759612,RES1,3001,,16,NE,1971,1971,3102,2,1,2607.352377,2607.352377,3507,NO,39.48,51.64,1,1.25,6110,111.202927,121.447033,131.156155,137.386968,I,Above,Hip,0,5701,,45.5602333,0,1.2,,,,1,1,,0.35,nav,1,1971,2,, 10702,NJBF000056028,15 SOMERS AVENUE,Egg Harbor,NJ,39.3275517,-74.64558022,RES1,3001,,16,NE,1987,1987,3102,1,1,1647.42296,1647.42296,3505,NO,12.76,25.89,3,0.81,6106,110.710776,120.819726,130.573847,136.602797,I,Above,Gable,0,5701,,19.32275002,0,0,,,,1,1,,0.03,nav,1,1987,1,, 10703,NJBF000055517,23 SOMERS AVENUE,Egg Harbor,NJ,39.326308,-74.645493,RES1,3001,,16,NE,1989,1989,3102,1,1,1275.631438,1275.631438,3505,NO,13.41,18.98,3,1.12,6106,110.734077,120.837538,130.588299,136.622878,I,Above,Gable,0,5701,,16.1923368,0,0,,,,1,1,,0.03,nav,1,1989,1,, 10704,NJBF000063420,4035 OCEAN HTS AVENUE,Egg Harbor,NJ,39.3416625,-74.6014565,COM4,3001,,16,ME,1995,1995,3401,1,1,1914.684787,1914.684787,3507,NO,16.48,27.76,1,1.62,6110,111.132837,121.383361,131.09685,137.309938,I,Above,Gable,0,NaN,,22.12025651,0,1.1,,,,1,1,,0.35,nav,1,1995,1,, 10705,NJBF000063381,4035 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34155565,-74.60158711,IND6,3001,,16,E,1995,1995,3401,1,1,1342.613624,1342.613624,3507,NO,16.22,25.97,1,1.37,6106,111.132293,121.382341,131.095964,137.308776,I,Above,Flat,0,NaN,,21.09312741,0,1.1,,,,1,1,,0.03,nav,1,1995,1,, 10706,NJBF000065983,22 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34861574,-74.59518207,RES1,3001,,16,NE,1969,1969,3101,1,1,2063.786137,2063.786137,3505,NO,19.22,28.71,3,3.14,6106,111.132299,121.41215,131.117864,137.33758,I,Above,Gable,0,5701,,23.96288472,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10707,NJBF000063300,99 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34136209,-74.61376619,RES1,3001,,16,NE,1973,1973,3102,2,1,2017.641538,2017.641538,3505,NO,27.45,36.9,3,5.7,6110,110.916907,121.176942,130.906506,137.05882,I,Above,Hip,0,5701,,32.17188865,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 10708,NJBF000064069,134 WHARF ROAD,Egg Harbor,NJ,39.34348981,-74.6721647,RES1,3001,,15,NE,1900,1900,3102,1,1,1490.741774,1490.741774,3505,NO,21.11,29.39,3,5.87,6112,110.160184,120.1952,130.025478,135.81606,I,Above,Gable,0,5701,,25.24986626,0,1.2,,,,1,1,,0.35,nav,1,1900,1,, 10709,NJBF000065690,11 JODEL LANE,Egg Harbor,NJ,39.34782407,-74.58795961,RES1,3001,,16,NE,1969,1969,3101,1,1,1913.943107,1913.943107,3505,NO,9.72,20.17,3,-1.72,6106,111.294218,121.54522,131.24384,137.499306,I,Above,Gable,0,5701,,14.94834165,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10710,NJBF000066161,17 DINA DRIVE,Egg Harbor,NJ,39.34908429,-74.58575506,RES1,3001,,16,NE,1985,1985,3101,1,1,3798.932392,3798.932392,3505,NO,17.67,28.95,3,5.93,6106,111.319842,121.569167,131.265311,137.526422,I,Above,Hip,0,5701,,23.31350792,0,1.2,,,,1,1,,0.03,nav,1,1985,1,, 10711,NJBF000076979,1069 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3956875,-74.71678749,RES1,3001,,16,NE,1965,1965,3102,1,1,842.4293965,842.4293965,3507,NO,14.87,27.16,1,-0.7,6106,109.326269,119.200149,128.937074,134.114369,I,Above,Gable,0,5701,,21.01504075,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 10712,NJBF000066072,29 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34883829,-74.59614326,RES1,3001,,16,NE,1987,1987,3101,1,1,2286.690408,2286.690408,3505,NO,10.64,16.75,3,-2.49,6106,111.109034,121.393174,131.099894,137.31432,I,Above,Gable,0,5701,,13.69300701,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 10713,NJBF000065154,21 CARANN LANE,Egg Harbor,NJ,39.34627462,-74.58740784,RES1,3001,,16,NE,1999,1999,3101,2,1,1987.580586,1987.580586,3505,NO,26.57,38.9,3,-1.71,6106,111.331424,121.5721,131.270677,137.533654,I,Above,Gable,0,5701,,32.73580089,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 10714,NJBF000065839,1541 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34823817,-74.66211316,RES1,3001,,16,NE,1980,1980,3101,1,1,2684.830729,2684.830729,3507,NO,19.75,33.16,1,0.54,6112,110.180195,120.28632,130.116553,135.953111,I,Above,Gable,0,5701,,26.45543129,0,1.2,,,,1,1,,0.35,nav,1,1980,1,, 10715,NJBF000065760,1541 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34801928,-74.66215691,RES1,3001,,16,NE,1980,1980,3101,1,1,1468.149485,1468.149485,3507,NO,20.98,29.57,1,2.87,6112,110.18315,120.288316,130.118234,135.95548,I,Above,Gable,0,5701,,25.27422905,0,1.2,,,,1,1,,0.35,nav,1,1980,1,, 10716,NJBF000060241,1653 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33563962,-74.64444209,RES1,3001,,16,NE,1900,1900,3101,3,1,943.2589249,943.2589249,3505,NO,46.66,51.93,3,2.71,6106,110.580426,120.733055,130.504665,136.507046,I,Above,Gable,0,5701,,49.29615964,0,1.2,,,,1,1,,0.03,nav,1,1900,3,, 10717,NJBF000070284,3410 BARGAINTOWN ROAD,Egg Harbor,NJ,39.366566,-74.5811815,RES1,3001,,16,NE,1955,1955,3101,1,1,2105.412866,2105.412866,3507,NO,15.34,23,1,-0.87,6106,111.167487,121.459429,131.135405,137.358253,I,Above,Gable,0,5701,,19.16820325,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 10718,NJBF000053829,70 SOMERS AVENUE,Egg Harbor,NJ,39.32142395,-74.63960379,RES1,3001,,16,NE,1990,1990,3102,1,1,2244.25644,2244.25644,3505,NO,16.33,27.59,3,2.29,6106,110.899898,120.995991,130.728231,136.815981,I,Above,Gable,0,5701,,21.96264916,0,0,,,,1,1,,0.03,nav,1,1990,1,, 10719,NJBF000067361,8043 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35321252,-74.67042262,RES1,3001,,16,NE,1998,1995,3102,2,1,2244.593287,2244.593287,3505,NO,36.28,48.7,3,4.93,6110,110.035898,120.090332,129.949161,135.70634,I,Above,Hip,0,5701,,42.4888455,0,0,,,,1,1,,0.35,nav,1,1998,2,, 10720,NJBF000065766,,Egg Harbor,NJ,39.34803261,-74.67171967,RES1,3001,,NaN,NE,1969,0,3102,2,1,2846.325483,2846.325483,3505,NO,32,37.84,3,5.08,6112,110.097831,120.138149,129.984878,135.757243,I,Above,Hip,0,5701,,34.92298894,0,0,,,,1,1,,0.35,nav,1,1969,2,, 10721,NJBF000066290,5 EVE DRIVE,Egg Harbor,NJ,39.3493897,-74.59340525,RES1,3001,,16,NE,1969,1969,3101,2,1,2449.758744,2449.758744,3505,NO,44.27,53.6,3,8.12,6112,111.155356,121.434066,131.137551,137.363008,I,Above,Hip,0,5701,,48.93506285,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10722,NJBF000054434,58 SOMERS AVENUE,Egg Harbor,NJ,39.32339314,-74.64109539,RES1,3001,,16,NE,1991,1991,3102,2,1,2296.591285,2296.591285,3505,NO,29.37,40.28,3,4.66,6106,110.844098,120.946186,130.684899,136.756451,I,Above,Hip,0,5701,,34.82683036,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 10723,NJBF000069648,302 CENTRAL AVENUE,Egg Harbor,NJ,39.36246493,-74.57950088,RES1,3001,,16,NE,1953,1953,3101,1,1,1434.426054,1434.426054,3507,NO,16.92,26.96,1,1.12,6112,111.257994,121.531606,131.211712,137.455476,I,Above,Gable,0,5701,,21.94156165,0,1.2,,,,1,1,,0.03,nav,1,1953,1,, 10724,NJBF000062467,220 BLACKMAN ROAD,Egg Harbor,NJ,39.33952034,-74.59685641,RES1,3001,,16,NE,1992,1992,3102,2,1,1736.591503,1736.591503,3507,NO,26.19,38.2,1,2.51,6106,111.259342,121.486834,131.194717,137.436772,I,Above,Gable,0,5701,,32.19812317,0,0,,,,1,1,,0.03,nav,1,1992,2,, 10725,NJBF000063221,10 BEAVER DRIVE,Egg Harbor,NJ,39.34116094,-74.61116602,RES1,3001,,16,NE,1979,1979,3102,2,1,2400.70195,2400.70195,3505,NO,32.49,46.42,3,4.44,6110,110.965495,121.22349,130.949299,137.115754,I,Above,Gable,0,5701,,39.45274214,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 10726,NJBF000063332,1613 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34143067,-74.6496,RES1,3001,,16,NE,1900,1900,3101,2,1,1123.327727,1123.327727,3507,NO,23.98,30.8,1,2.8,6112,110.417991,120.575601,130.367345,136.31418,I,Above,Hip,0,5701,,27.38922789,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 10727,NJBF000064694,129 WHARF ROAD,Egg Harbor,NJ,39.34510051,-74.67406334,RES1,3001,,16,NE,1970,1970,3102,1,1,2654.156761,2654.156761,3505,NO,22.01,34.75,3,8.35,6106,110.11965,120.146068,129.982676,135.752693,I,Above,Gable,0,5701,,28.38155935,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10728,NJBF000052194,,Egg Harbor,NJ,39.313342,-74.576561,RES1,3001,,NaN,NE,1969,0,3102,2,1,513.9709823,513.9709823,3507,NO,31.38,45.83,1,2.45,6106,112.116725,122.147281,131.821354,138.225386,I,Above,Flat,0,5701,,38.60485866,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10729,NJBF000074298,7029 BLACK HORSE PIKE,Egg Harbor,NJ,39.3858105,-74.51259466,RES1,3001,,NaN,NE,1962,0,3102,2,1,904.0402707,904.0402707,3505,NO,39.06,47.62,3,4.84,6106,112.517551,122.453111,132.117873,138.446949,I,Above,Flat,0,5701,,43.3391172,0,0,,,,1,1,,0.03,nav,1,1962,2,, 10730,NJBF000074292,7033 BLACK HORSE PIKE,Egg Harbor,NJ,39.3857771,-74.51212623,RES1,3001,,16,NE,1999,1999,3102,2,1,1745.480355,1745.480355,3505,NO,27.35,32.99,3,4.12,6106,112.52828,122.46176,132.127059,138.456609,I,Above,Hip,0,5701,,30.17316794,0,0,,,,1,1,,0.03,nav,1,1999,2,, 10731,NJBF000073218,325 SANDERLING LANE,Egg Harbor,NJ,39.37905713,-74.49348051,RES3C,3001,,NaN,E,1969,0,3303,3,1,8148.970277,8148.970277,3507,NO,54.6,68.73,1,-0.53,6106,113.009502,122.864641,132.558211,138.921273,I,Above,Hip,0,NaN,,61.66497708,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10732,NJBF000073173,325 SANDERLING LANE,Egg Harbor,NJ,39.37852199,-74.49384149,RES3C,3001,,NaN,E,1969,0,3303,4,1,8506.525553,8506.525553,3507,NO,50.56,58.88,1,2.39,6106,113.007157,122.863891,132.557468,138.92312,I,Above,Gable,0,NaN,,54.71881636,0,0,,,,1,1,,0.03,nav,1,1969,4,, 10733,NJBF000073147,325 SANDERLING LANE,Egg Harbor,NJ,39.37828393,-74.49495976,RES3C,3001,,NaN,E,1969,0,3303,3,1,3518.860185,3518.860185,3507,NO,32.78,42.41,1,0.37,6106,112.984862,122.846421,132.538832,138.905914,I,Above,Hip,0,NaN,,37.59073037,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10734,NJBF000073252,325 SANDERLING LANE,Egg Harbor,NJ,39.3793384,-74.49418286,RES3C,3001,,NaN,E,1969,0,3303,4,1,8579.03096,8579.03096,3507,NO,44.39,52.5,1,1.26,6106,112.991004,122.849105,132.541568,138.903575,I,Above,Hip,0,NaN,,48.44553179,0,0,,,,1,1,,0.03,nav,1,1969,4,, 10735,NJBF000073298,325 SANDERLING LANE,Egg Harbor,NJ,39.37965849,-74.4939695,RES3C,3001,,NaN,E,1969,0,3303,4,1,8054.747916,8054.747916,3507,NO,73.62,83.45,1,2.72,6106,112.992375,122.849514,132.541965,138.902432,I,Above,Hip,0,NaN,,78.5332398,0,0,,,,1,1,,0.03,nav,1,1969,4,, 10736,NJBF000073415,8010 BLACK HORSE PIKE,Egg Harbor,NJ,39.38055907,-74.49419367,COM1,3003,530,NaN,ME,1969,0,3401,3,1,1768.68038,1768.68038,3507,NO,56.28,70.76,1,0.5,6106,112.978037,122.835944,132.527334,138.883744,I,Above,Flat,0,NaN,,63.51871159,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10737,NJBF000081934,512 S MILL ROAD,Egg Harbor,NJ,39.42469516,-74.52198372,RES1,3001,,17,NE,1950,1950,3102,1,1,1445.207379,1445.207379,3505,NO,16.92,27.81,3,-1.86,6112,112.01873,121.886623,131.486228,137.643438,I,Above,Gable,0,5701,,22.36690203,0,0,,,,1,1,,0.35,nav,1,1950,1,, 10738,NJBF000074276,208 PALERMO AVENUE,Egg Harbor,NJ,39.38570099,-74.5155315,RES1,3001,,16,NE,1970,1970,3102,1,1,1589.034695,1589.034695,3505,NO,16.92,27.71,3,1.85,6106,112.453359,122.402338,132.064182,138.391376,I,Above,Gable,0,5701,,22.31689741,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10739,NJBF000074263,208 PALERMO AVENUE,Egg Harbor,NJ,39.385645,-74.51539949,RES1,3001,,16,NE,1970,1970,3102,1,1,511.0807182,511.0807182,3505,NO,22.38,28.96,3,6.96,6106,112.456826,122.405259,132.067305,138.394855,I,Above,Gable,0,5701,,25.67338508,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10740,NJBF000082331,12 ABLES RUN DRIVE,Egg Harbor,NJ,39.42902852,-74.52706782,RES1,3001,,37,NE,2008,2007,3102,2,1,7378.464162,7378.464162,3505,NO,41.35,50.84,3,3.56,6112,111.889848,121.754705,131.340786,137.474233,I,Above,Hip,0,5701,,46.09420081,0,0,,,,1,1,,0.35,nav,1,2008,2,, 10741,NJBF000082309,20 ABLES RUN DRIVE,Egg Harbor,NJ,39.42887549,-74.52663548,RES1,3001,,37,NE,2008,2008,3102,2,1,7612.668604,7612.668604,3505,NO,34.34,45.98,3,5.85,6112,111.89951,121.763721,131.350679,137.485258,I,Above,Hip,0,5701,,40.16286623,0,0,,,,1,1,,0.35,nav,1,2008,2,, 10742,NJBF000082153,101 PLEASANT AVE,Egg Harbor,NJ,39.42711058,-74.52356057,COM1,3001,560,NaN,ME,1969,0,3401,2,1,5510.584365,5510.584365,3507,NO,33.73,47.41,1,2.24,6112,111.972226,121.834687,131.42872,137.574041,I,Above,Flat,0,NaN,,40.56721172,0,0,,,,1,1,,0.7,nav,1,1969,2,, 10743,NJBF000081877,MILL RD,Egg Harbor,NJ,39.4240715,-74.52399399,COM1,3001,,NaN,ME,1969,0,3401,3,1,35369.01813,35369.01813,3507,NO,42.38,56.12,1,1.81,6112,111.98083,121.858197,131.455529,137.613626,I,Above,Flat,0,NaN,,49.25001526,0,0,,,,1,1,,0.35,nav,1,1969,3,, 10744,NJBF000082182,403 OHIO AVE,Egg Harbor,NJ,39.42750999,-74.50897165,RES1,3001,,17,NE,1978,1978,3102,2,1,1717.614082,1717.614082,3505,NO,29.23,43.38,3,-0.21,6106,112.270522,122.084301,131.701152,137.854206,I,Above,Hip,0,5701,,36.3060054,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 10745,NJBF000081993,115 HOLLY ROAD,Egg Harbor,NJ,39.42521499,-74.51933866,RES1,3001,,17,NE,1944,1944,3102,1,2,932.297915,932.297915,3505,NO,18.38,27.23,3,0.37,6112,112.070329,121.927175,131.530231,137.687338,I,Above,Gable,0,5701,,22.80326077,0,0,,,,1,1,,0.35,nav,1,1944,1,, 10746,NJBF000082000,111 HOLLY ROAD,Egg Harbor,NJ,39.42527952,-74.51834414,RES1,3001,,NaN,NE,1920,0,3102,2,1,665.676553,665.676553,3505,NO,27.56,35.99,3,5.27,6112,112.090519,121.943791,131.548324,137.705888,I,Above,Flat,0,5701,,31.77084073,0,0,,,,1,1,,0.35,nav,1,1920,2,, 10747,NJBF000081908,131 HOLLY ROAD,Egg Harbor,NJ,39.42445816,-74.51851449,RES1,3001,,NaN,NE,1990,0,3102,1,1,706.3231786,706.3231786,3505,NO,17.67,23.07,3,5.24,6112,112.091992,121.949256,131.554561,137.715549,I,Above,Gable,0,5701,,20.37158977,0,0,,,,1,1,,0.35,nav,1,1990,1,, 10748,NJBF000082495,308 S MILL ROAD,Egg Harbor,NJ,39.43038351,-74.5171265,RES1,3001,,17,NE,1927,1927,3102,2,1,1574.402424,1574.402424,3505,NO,34.36,45.18,3,2.57,6110,112.085263,121.91261,131.512978,137.649182,I,Above,Hip,0,5701,,39.77108584,0,0,,,,1,1,,0.35,nav,1,1927,2,, 10749,NJBF000082472,308 S MILL ROAD,Egg Harbor,NJ,39.43023973,-74.51694058,RES1,3001,,17,NE,1927,1927,3102,2,1,875.1272091,875.1272091,3505,NO,37.7,43.69,3,3.17,6106,112.089909,121.917315,131.518147,137.655113,I,Above,Gable,0,5701,,40.69300785,0,0,,,,1,1,,0.03,nav,1,1927,2,, 10750,NJBF000081959,127 HOLLY ROAD,Egg Harbor,NJ,39.424888,-74.5182695,RES1,3001,,13,NE,1920,1920,3102,1,1,1298.748995,1298.748995,3505,NO,13.95,28.22,3,0.92,6106,112.09443,121.949092,131.554234,137.713544,I,Above,Gable,0,5701,,21.08299311,0,0,,,,1,1,,0.03,nav,1,1920,1,, 10751,NJBF000082146,400 & 408 S MILL RD,Egg Harbor,NJ,39.42699126,-74.52162241,RES1,3001,,17,NE,1940,1940,3102,2,3,821.9325766,821.9325766,3505,NO,36.67,41.76,3,5.72,6106,112.012763,121.869441,131.466676,137.614239,I,Above,Gable,0,5701,,39.21495404,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10752,NJBF000082121,400 & 408 S MILL RD,Egg Harbor,NJ,39.42671649,-74.5214965,RES1,3001,,17,NE,1940,1940,3102,2,3,1473.200453,1473.200453,3505,NO,35.33,47.99,3,3.45,6106,112.016951,121.874432,131.47221,137.621076,I,Above,Gable,0,5701,,41.65902561,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10753,NJBF000082168,400 & 408 S MILL RD,Egg Harbor,NJ,39.42736743,-74.52108069,RES1,3001,,17,NE,1940,1940,3102,2,3,1542.985905,1542.985905,3505,NO,41.65,54.36,3,4.53,6106,112.021708,121.874965,131.472585,137.618965,I,Above,Gable,0,5701,,48.0028858,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10754,NJBF000073343,8018 BLACK HORSE PIKE,Egg Harbor,NJ,39.3799592,-74.49260508,COM1,3003,530,NaN,ME,1969,0,3401,1,1,4629.695848,4629.695848,3507,NO,15.56,29.28,1,-0.04,6106,113.019449,122.870726,132.564626,138.923193,I,Above,Flat,0,NaN,,22.41926196,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10755,NJBF000074420,7017 BLACK HORSE PIKE,Egg Harbor,NJ,39.38634233,-74.51513077,RES1,3001,,16,NE,1920,1920,3102,2,1,1448.563191,1448.563191,3505,NO,24.69,39.39,3,-2.06,6106,112.456178,122.402673,132.064143,138.388938,I,Above,Gable,0,5701,,32.03707097,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 10756,NJBF000074120,1300 BAY DRIVE,Egg Harbor,NJ,39.38498831,-74.51099984,RES1,3001,,16,NE,1930,1930,3102,1,1,2534.986392,2534.986392,3505,NO,15.02,28.77,3,-0.1,6106,112.560873,122.490004,132.157424,138.491149,I,Above,Hip,0,5701,,21.89625872,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 10757,NJBF000073947,7074 BLACK HORSE PIKE,Egg Harbor,NJ,39.38415921,-74.50287876,COM1,3003,530,NaN,ME,1969,0,3401,1,1,8772.794085,8772.794085,3507,NO,14.24,21.04,1,0.62,6106,112.749153,122.642933,132.320381,138.661113,I,Above,Hip,0,NaN,,17.64394322,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10758,NJBF000074144,201 NAPLES AVENUE,Egg Harbor,NJ,39.38506952,-74.50813161,RES3C,3001,,45,E,1950,1950,3303,1,2,2337.094744,2337.094744,3507,NO,11.35,25.27,1,0.07,6106,112.623741,122.539987,132.21045,138.54542,I,Above,Hip,0,NaN,,18.30706466,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10759,NJBF000074268,204 EAST PLAZA PLACE,Egg Harbor,NJ,39.38567219,-74.51071098,RES1,3001,,16,NE,2015,2015,3102,1,1,1099.266839,1099.266839,3505,NO,20.48,27.28,3,8.55,6106,112.560697,122.487923,132.154868,138.485799,I,Above,Hip,0,5701,,23.87822686,0,0,,,,1,1,,0.03,nav,1,2015,1,, 10760,NJBF000074346,7035 BLACK HORSE PIKE,Egg Harbor,NJ,39.38599972,-74.51128496,RES1,3001,,16,NE,1954,1954,3102,1,1,1673.220747,1673.220747,3505,NO,27.34,40.63,3,8.02,6106,112.544814,122.474305,132.140247,138.469392,I,Above,Hip,0,5701,,33.98323544,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 10761,NJBF000074293,203 EAST PLAZA PLACE,Egg Harbor,NJ,39.38578499,-74.51121847,RES1,3001,,16,NE,1954,1954,3102,2,1,1039.240117,1039.240117,3505,NO,22.19,36.25,3,-0.95,6106,112.54836,122.477753,132.144018,138.474139,I,Above,Flat,0,5701,,29.21845532,0,0,,,,1,1,,0.03,nav,1,1954,2,, 10762,NJBF000074453,209 TOULON AVENUE,Egg Harbor,NJ,39.3864919,-74.51773833,RES1,3001,,16,NE,1925,1925,3102,1,1,691.2115038,691.2115038,3505,NO,8.55,14.25,3,-1.97,6106,112.396841,122.355065,132.013708,138.335463,I,Above,Hip,0,5701,,11.39939196,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 10763,NJBF000051565,111 MORRIS AVENUE,Egg Harbor,NJ,39.30840931,-74.63656805,RES1,3001,,16,NE,2014,2014,3102,2,1,1536.100621,1536.100621,3505,NO,35.14,40.6,3,0.96,6106,111.177113,121.217088,130.911803,137.06701,I,Above,Gable,0,5701,,37.86754276,0,0,,,,1,1,,0.03,nav,1,2014,2,, 10764,NJBF000063157,203 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34100853,-74.59747301,RES1,3001,,16,NE,1969,1969,3102,2,1,2591.990021,2591.990021,3507,NO,25.54,39.32,1,0.8,6106,111.220752,121.459064,131.167925,137.402178,I,Above,Gable,0,5701,,32.4336833,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 10765,NJBF000051572,,Egg Harbor,NJ,39.30845588,-74.63594751,RES1,3001,,NaN,NE,1969,0,3102,2,1,2110.131471,2110.131471,3505,NO,32.19,44.97,3,4.75,6106,111.185249,121.226271,130.920823,137.079046,I,Above,Flat,0,5701,,38.57939791,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10766,NJBF000063569,208 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34207935,-74.59781403,RES1,3001,,16,NE,1969,1969,3102,2,1,1881.702914,1881.702914,3507,NO,36.87,46.1,1,-0.33,6112,111.195001,121.440922,131.150308,137.379404,I,Above,Gable,0,5701,,41.48694113,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10767,NJBF000059744,1702 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33477784,-74.6426939,RES1,3001,,16,NE,1880,1880,3102,2,1,2042.809986,2042.809986,3505,NO,39.56,52.15,3,3.54,6106,110.61763,120.77256,130.539726,136.556007,I,Above,Gable,0,5701,,45.85183272,0,1.1,,,,1,1,,0.03,nav,1,1880,2,, 10768,NJBF000059594,1704 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3345212,-74.64263406,RES1,3001,210,15,NE,1955,1955,3102,2,1,1137.856112,1137.856112,3505,NO,31.73,46.58,3,-2.14,6106,110.623021,120.776813,130.543366,136.561047,I,Above,Flat,0,5701,,39.15445419,0,0,,,,1,1,,0.03,nav,1,1955,2,, 10769,NJBF000064124,106 NANCY DRIVE,Egg Harbor,NJ,39.34363037,-74.59206722,RES1,3001,,16,NE,1975,1975,3102,2,1,2621.187811,2621.187811,3507,NO,35.06,40.34,1,2.81,6110,111.281188,121.521839,131.225239,137.475898,I,Above,Gable,0,5701,,37.69949219,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 10770,NJBF000070457,24 LIDA AVENUE,Egg Harbor,NJ,39.3672165,-74.6980735,RES1,3001,,16,NE,1965,1965,3101,1,1,1119.636722,1119.636722,3507,NO,20.95,26.11,1,2.94,6112,109.66921,119.639669,129.441052,134.924962,I,Above,Gable,0,5701,,23.53353461,0,0,,,,1,1,,1,nav,1,1965,1,, 10771,NJBF000063106,14 BEAVER DRIVE,Egg Harbor,NJ,39.34090615,-74.61193314,RES1,3001,,16,NE,1979,1979,3102,2,1,2177.459574,2177.459574,3505,NO,27.93,41.78,3,4.15,6110,110.956975,121.213407,130.940175,137.103589,I,Above,Gable,0,5701,,34.85278749,0,0,,,,1,1,,0.35,nav,1,1979,2,, 10772,NJBF000055747,154 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.3268825,-74.64723083,RES1,3001,,16,NE,1850,1850,3102,3,1,733.564781,733.564781,3505,NO,46.87,52.84,3,1.27,6106,110.701801,120.802319,130.556432,136.578506,I,Above,Gable,0,5701,,49.8543209,0,0,,,,1,1,,0.03,nav,1,1850,3,, 10773,NJBF000055924,154 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32729316,-74.6475465,RES1,3001,,16,NE,1850,1850,3102,3,1,1880.553558,1880.553558,3505,NO,31.7,40.7,3,-1.99,6106,110.69057,120.791872,130.547427,136.565943,I,Above,Gable,0,5701,,36.19882511,0,0,,,,1,1,,0.03,nav,1,1850,3,, 10774,NJBF000076567,1083 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39392561,-74.71711966,RES1,3001,,18,NE,2015,2015,3102,2,1,3161.101787,3161.101787,3507,NO,31.51,41.97,1,2.63,6106,109.33443,119.210108,128.949628,134.134062,I,Above,Hip,0,5701,,36.74022003,0,0,,,,1,1,,0.03,nav,1,2015,2,, 10775,NJBF000069572,7115 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1985,3102,2,1,537.2624791,537.2624791,3505,NO,26.06,31.77,3,-2.89,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,28.91423823,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10776,NJBF000066019,9 BONNIE DRIVE,Egg Harbor,NJ,39.3487015,-74.5944655,RES1,3001,,16,NE,1969,1969,3101,2,1,796.4248524,796.4248524,3505,NO,40.06,49.44,3,3.63,6106,111.145406,121.423519,131.128412,137.351214,I,Above,Gable,0,5701,,44.74625799,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10777,NJBF000060866,402 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33666937,-74.63826456,RES1,3001,,16,NE,1960,1960,3101,1,1,1113.98076,1113.98076,3505,NO,16.95,26.93,3,3.01,6106,110.639883,120.821565,130.585202,136.619836,I,Above,Gable,0,5701,,21.93895748,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 10778,NJBF000061981,12 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33858596,-74.64185315,RES1,3001,,16,NE,2000,2000,3101,1,1,1111.114936,1111.114936,3505,NO,13.13,28.07,3,-0.25,6110,110.559348,120.738472,130.511288,136.517074,I,Above,Gable,0,5701,,20.59795491,0,0,,,,1,1,,0.35,nav,1,2000,1,, 10779,NJBF000061935,18 OTTER LANE,Egg Harbor,NJ,39.33850801,-74.61281894,RES1,3001,,16,NE,2001,2001,3102,2,1,5773.755285,5773.755285,3505,NO,34.31,47.57,3,5.81,6112,110.986981,121.226438,130.953161,137.120462,I,Above,Hip,0,5701,,40.9368181,0,0,,,,1,1,,0.03,nav,1,2001,2,, 10780,NJBF000069118,3530 BARGAINTOWN ROAD,Egg Harbor,NJ,39.35883684,-74.58201103,RES1,3001,,16,NE,1973,1973,3101,2,1,1878.228118,1878.228118,3507,NO,31.37,38.67,1,-0.72,6112,111.251852,121.527103,131.213091,137.458291,I,Above,Gable,0,5701,,35.01997245,0,1.2,,,,1,1,,0.35,nav,1,1973,2,, 10781,NJBF000062810,102 ANITA DRIVE,Egg Harbor,NJ,39.34027057,-74.59503086,RES1,3001,,16,NE,1970,1970,3102,2,1,1895.976716,1895.976716,3507,NO,36.89,51.31,1,0.66,6106,111.281364,121.509429,131.215592,137.463646,I,Above,Gable,0,5701,,44.0993629,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 10782,NJBF000059511,1703 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33437329,-74.64303342,RES1,3001,,16,NE,2000,2000,3102,1,1,1130.809517,1130.809517,3505,NO,11.65,19.19,3,-2.62,6106,110.620673,120.77219,130.539039,136.554969,I,Above,Gable,0,5701,,15.41675734,0,0,,,,1,1,,0.03,nav,1,2000,1,, 10783,NJBF000059420,104 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33421093,-74.64353371,RES1,3001,,16,NE,1994,1994,3102,1,1,2366.064788,2366.064788,3505,NO,19.82,33.06,3,1.15,6106,110.617313,120.766097,130.533354,136.546986,I,Above,Hip,0,5701,,26.44222401,0,0,,,,1,1,,0.03,nav,1,1994,1,, 10784,NJBF000065995,1110 MARLOU AVENUE,Egg Harbor,NJ,39.3486468,-74.5888497,RES1,3001,,16,NE,1969,1969,3101,1,1,2399.470596,2399.470596,3505,NO,12.95,19.46,3,-0.44,6110,111.262048,121.520702,131.219861,137.468638,I,Above,Gable,0,5701,,16.20846388,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10785,NJBF000051500,121 MORRIS AVENUE,Egg Harbor,NJ,39.30767682,-74.63577998,RES1,3001,,16,NE,1940,1940,3102,2,1,805.9088422,805.9088422,3505,NO,22.49,34.66,3,-1.13,6106,111.201655,121.239322,130.931593,137.093692,I,Above,Flat,0,5701,,28.5737992,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10786,NJBF000051488,1 CREEK ROAD,Egg Harbor,NJ,39.30757136,-74.6355903,RES1,3001,,16,NE,1950,1950,3102,1,1,1784.005568,1784.005568,3505,NO,16.12,29.98,3,1.75,6106,111.206321,121.243743,130.935627,137.09911,I,Above,Gable,0,5701,,23.04721409,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10787,NJBF000052648,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31623132,-74.63164825,COM3,3001,999,16,ME,1970,1970,3401,2,1,2552.088589,2552.088589,3507,NO,40.87,51.13,1,2.06,6106,111.107373,121.192109,130.904577,137.055315,I,Above,Flat,0,NaN,,46.00127834,0,0,,,,1,1,,0.03,nav,1,1970,2,, 10788,NJBF000052685,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31655154,-74.63157769,COM1,3001,999,16,ME,1970,1970,3401,2,1,665.977146,665.977146,3507,NO,30.37,41.31,1,2.05,6106,111.102543,121.189031,130.902233,137.052119,I,Above,Flat,0,NaN,,35.83849124,0,0,,,,1,1,,0.03,nav,1,1970,2,, 10789,NJBF000052716,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,1080.338159,1080.338159,3505,NO,19.05,24.15,3,0.3,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,21.59562729,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10790,NJBF000052754,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,804.3045961,804.3045961,3505,NO,22.25,35.36,3,4.39,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,28.80707593,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10791,NJBF000052765,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,927.4310685,927.4310685,3505,NO,20.03,33.95,3,6.85,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,26.98944295,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10792,NJBF000052771,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,962.3572858,962.3572858,3505,NO,18.37,29.39,3,7.39,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,23.88352347,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10793,NJBF000052782,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,1029.646488,1029.646488,3505,NO,20,30,3,0.96,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,24.9989363,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10794,NJBF000052797,1814 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,16,NE,1969,1970,3101,1,1,1003.468194,1003.468194,3505,NO,20.73,27.1,3,1.28,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,23.91341115,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10795,NJBF000052702,1810 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,NaN,NE,1969,0,3101,1,1,1217.836636,1217.836636,3505,NO,16.5,23.12,3,2.92,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,19.81117789,0,0,,,,1,1,,0.03,nav,1,1969,1,, 10796,NJBF000064363,112 BAKER PLACE ROAD,Egg Harbor,NJ,39.34430996,-74.66346909,RES1,3001,,16,NE,1988,1988,3101,2,1,1734.735141,1734.735141,3507,NO,36.57,48.34,1,2.9,6106,110.228298,120.314963,130.138604,135.983803,I,Above,Gable,0,5701,,42.45469685,0,0,,,,1,1,,0.03,nav,1,1988,2,, 10797,NJBF000076075,1095 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39215006,-74.71713978,RES1,3001,,16,NE,2007,2007,3102,2,1,2098.809708,2098.809708,3507,NO,28.22,36.88,1,2.02,6106,109.345167,119.223791,128.966035,134.160309,I,Above,Flat,0,5701,,32.55092649,0,0,,,,1,1,,0.03,nav,1,2007,2,, 10798,NJBF000066067,1473 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34883237,-74.67638809,RES1,3001,219,16,NE,1930,1930,3102,2,2,1238.516792,1238.516792,3505,NO,44.08,58.89,3,6.44,6106,110.046899,120.06315,129.912538,135.648701,I,Above,Hip,0,5701,,51.48193516,0,0,,,,1,1,,0.03,nav,1,1930,2,, 10799,NJBF000065441,216 THOMAS DRIVE,Egg Harbor,NJ,39.34709541,-74.59530695,RES1,3001,,16,NE,1992,1992,3102,1,1,3079.275951,3079.275951,3505,NO,18.35,31.88,3,4.41,6106,111.156026,121.427019,131.133309,137.357518,I,Above,Gable,0,5701,,25.11364409,0,0,,,,1,1,,0.03,nav,1,1992,1,, 10800,NJBF000062275,111 LAUTOKA DRIVE,Egg Harbor,NJ,39.33913572,-74.63913221,RES1,3001,,16,NE,1965,1965,3101,1,1,2020.693693,2020.693693,3505,NO,15.85,30.44,3,0.59,6110,110.583508,120.776713,130.54565,136.565345,I,Above,Hip,0,5701,,23.14469202,0,0,,,,1,1,,0.35,nav,1,1965,1,, 10801,NJBF000062188,109 LAUTOKA DRIVE,Egg Harbor,NJ,39.33895561,-74.63935988,RES1,3001,,16,NE,1965,1965,3101,1,1,2540.199703,2540.199703,3505,NO,21.53,31.72,3,5.1,6106,110.583899,120.775143,130.544212,136.563284,I,Above,Gable,0,5701,,26.62846577,0,0,,,,1,1,,0.03,nav,1,1965,1,, 10802,NJBF000063287,12 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34133193,-74.59466286,RES1,3001,,16,NE,1993,1993,3102,2,1,2117.344154,2117.344154,3507,NO,40.19,49.57,1,1.56,6112,111.26978,121.503526,131.209473,137.455749,I,Above,Gable,0,5701,,44.876952,0,0,,,,1,1,,0.35,nav,1,1993,2,, 10803,NJBF000069664,7109 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1975,3102,1,1,2983.681164,2983.681164,3505,NO,21.72,31.45,3,6.38,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,26.58224355,0,0,,,,1,1,,0.35,nav,1,1987,1,, 10804,NJBF000064846,1577 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34546951,-74.65616284,RES1,3001,,16,NE,2006,2006,3101,2,1,1628.616901,1628.616901,3507,NO,26.04,38.04,1,-0.7,6112,110.280898,120.417831,130.229981,136.117858,I,Above,Gable,0,5701,,32.04050547,0,0,,,,1,1,,0.35,nav,1,2006,2,, 10805,NJBF000062896,33 VELLA LA VELLA LANE,Egg Harbor,NJ,39.3404515,-74.641835,RES1,3001,,16,NE,2007,2007,3101,1,1,2122.367252,2122.367252,3505,NO,16.39,29.94,3,-1.74,6112,110.525846,120.715744,130.491449,136.489763,I,Above,Gable,0,5701,,23.1662664,0,0,,,,1,1,,0.35,nav,1,2007,1,, 10806,NJBF000067672,8034 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35412416,-74.66867752,RES1,3001,,15,NE,1890,1890,3102,2,1,1526.780081,1526.780081,3505,NO,45.37,52.88,3,8.74,6112,110.037641,120.109792,129.963686,135.728773,I,Above,Gable,0,5701,,49.12603519,0,0,,,,1,1,,0.35,nav,1,1890,2,, 10807,NJBF000067754,8034 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3543698,-74.66857683,RES1,3001,,15,NE,1890,1890,3102,2,1,884.8331786,884.8331786,3505,NO,27.22,37.78,3,1.3,6112,110.03508,120.109025,129.962514,135.727165,I,Above,Gable,0,5701,,32.49749307,0,0,,,,1,1,,0.35,nav,1,1890,2,, 10808,NJBF000076317,1089 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39295379,-74.71728998,RES1,3001,,16,NE,1960,1960,3102,1,1,3004.484294,3004.484294,3507,NO,17.92,32.67,1,2,6106,109.33918,119.215789,128.956717,134.145201,I,Above,Hip,0,5701,,25.29423771,0,0,,,,1,1,,0.03,nav,1,1960,1,, 10809,NJBF000066398,4 EVE DRIVE,Egg Harbor,NJ,39.3496698,-74.59299306,RES1,3001,,16,NE,1969,1969,3101,1,1,1996.393568,1996.393568,3505,NO,11.84,21.65,3,-1.84,6112,111.159103,121.438038,131.140967,137.367409,I,Above,Hip,0,5701,,16.74435166,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10810,NJBF000062726,145 ROBERT BEST ROAD,Egg Harbor,NJ,39.34008926,-74.63693313,RES1,3001,,16,NE,1979,1979,3101,1,1,1433.703931,1433.703931,3505,NO,12.46,25.95,3,0.74,6112,110.594278,120.801653,130.568015,136.596831,I,Above,Gable,0,5701,,19.20289458,0,1.1,,,,1,1,,0.35,nav,1,1979,1,, 10811,NJBF000054131,1769 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3224843,-74.63928776,RES1,3001,,16,NE,1952,1952,3102,1,1,964.6554251,964.6554251,3505,NO,19.86,25.78,3,4.98,6106,110.885031,120.987098,130.72175,136.807035,I,Above,Gable,0,5701,,22.82275953,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 10812,NJBF000063828,3 MAY DRIVE,Egg Harbor,NJ,39.34280511,-74.60997851,RES1,3001,,16,NE,1978,1978,3102,2,1,2311.093941,2311.093941,3505,NO,46.34,53.94,3,7.45,6110,110.955471,121.224693,130.949391,137.116165,I,Above,Gable,0,5701,,50.1413868,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 10813,NJBF000063408,8 DORATO DRIVE,Egg Harbor,NJ,39.34164211,-74.59888683,RES1,3001,,16,NE,1988,1988,3102,2,1,1972.038993,1972.038993,3507,NO,26.67,31.93,1,2.21,6112,111.182143,121.427559,131.138083,137.363551,I,Above,Gable,0,5701,,29.29700829,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 10814,NJBF000066399,1103 LAKESIDE DRIVE,Egg Harbor,NJ,39.34966985,-74.59006059,RES1,3001,,16,NE,1969,1969,3101,2,1,2131.089224,2131.089224,3505,NO,34.63,42.71,3,0.88,6112,111.219878,121.488473,131.188387,137.428311,I,Above,Gable,0,5701,,38.6688415,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10815,NJBF000061858,6 CAMELOT COURT,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1986,3101,2,1,630.8599527,630.8599527,3505,NO,32.96,45.17,3,8.78,6110,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,39.06387697,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 10816,NJBF000061469,1 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33770132,-74.6394765,RES1,3001,,NaN,NE,1970,0,3101,1,1,576.8899783,576.8899783,3505,NO,13.12,19.08,3,2.36,6106,110.605339,120.788709,130.556028,136.579445,I,Above,Gable,0,5701,,16.09981075,0,0,,,,1,1,,0.03,nav,1,1970,1,, 10817,NJBF000056394,9 SOMERS AVENUE,Egg Harbor,NJ,39.32837816,-74.64629204,RES1,3001,,16,NE,1936,1936,3102,1,1,2012.335008,2012.335008,3505,NO,12.05,19.21,3,-1.83,6106,110.687056,120.797481,130.554546,136.575923,I,Above,Gable,0,5701,,15.62778054,0,1.2,,,,1,1,,0.03,nav,1,1936,1,, 10818,NJBF000063178,14 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34106837,-74.59442597,RES1,3001,,16,NE,1987,1987,3102,2,1,1771.735132,1771.735132,3507,NO,41.41,48.03,1,2.96,6112,111.279104,121.510626,131.216299,137.464533,I,Above,Gable,0,5701,,44.71990002,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 10819,NJBF000053144,89 SOMERS AVENUE,Egg Harbor,NJ,39.31814442,-74.63531962,RES3A,3001,,45,NE,1969,1965,3301,1,2,3209.761305,3209.761305,3507,NO,16.4,21.85,1,2.29,6106,111.019304,121.107869,130.82803,136.952016,I,Above,Flat,0,5701,,19.12302625,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 10820,NJBF000066225,1468 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34923033,-74.67629859,COM3,3004,,NaN,ME,1969,0,3401,3,1,2285.81622,2285.81622,3507,NO,46.18,57.67,1,-0.74,6106,110.042152,120.058822,129.909684,135.644572,I,Above,Gable,0,5701,,51.92633394,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10821,NJBF000068075,135 THOMPSONS LANE,Egg Harbor,NJ,39.35554842,-74.6976896,RES1,3001,510,16,NE,1970,1970,3101,1,1,3575.254362,3575.254362,3507,NO,18.49,23.65,1,1.07,6112,109.795676,119.749603,129.560851,135.108343,I,Above,Gable,0,5701,,21.06896964,0,0,,,,1,1,,0.7,nav,1,1970,1,, 10822,NJBF000068508,135 THOMPSONS LANE,Egg Harbor,NJ,39.35696165,-74.69792553,RES1,3001,510,16,NE,1970,1970,3101,1,1,518.0402071,518.0402071,3507,NO,21.29,28.47,1,2.62,6112,109.777908,119.733138,129.543876,135.082246,I,Above,Gable,0,5701,,24.87950053,0,0,,,,1,1,,0.7,nav,1,1970,1,, 10823,NJBF000068135,8025 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35575656,-74.66917562,RES1,3001,,16,NE,1987,1987,3102,2,1,872.4030682,872.4030682,3505,NO,36.47,41.58,3,6.59,6110,110.011385,120.086416,129.939837,135.6939,I,Above,Gable,0,5701,,39.02446206,0,0,,,,1,1,,0.35,nav,1,1987,2,, 10824,NJBF000066466,1104 LAKESIDE DRIVE,Egg Harbor,NJ,39.34982651,-74.5905859,RES1,3001,,16,NE,1969,1969,3101,1,1,2140.264593,2140.264593,3505,NO,13.82,23.44,3,-1.69,6112,111.206338,121.477695,131.178064,137.415075,I,Above,Gable,0,5701,,18.63335516,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10825,NJBF000065182,119 WHARF ROAD,Egg Harbor,NJ,39.346325,-74.6733445,RES1,3001,,16,NE,1980,1980,3102,1,1,1144.787683,1144.787683,3505,NO,10.48,22.08,3,-1.97,6110,110.108283,120.138885,129.980041,135.749236,I,Above,Gable,0,5701,,16.2792261,0,0,,,,1,1,,0.35,nav,1,1980,1,, 10826,NJBF000066428,138 CINDY DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1550.915633,1550.915633,3505,NO,16.17,22.35,3,0.18,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,19.26358027,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 10827,NJBF000055724,21 SOMERS AVENUE,Egg Harbor,NJ,39.32682837,-74.64500134,RES1,3001,,16,NE,1987,1987,3102,2,1,2959.937744,2959.937744,3505,NO,32.97,47.29,3,0.27,6106,110.731095,120.838509,130.590114,136.625408,I,Above,Hip,0,5701,,40.12873388,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 10828,NJBF000067307,8044 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35300943,-74.6688973,RES1,3001,,16,NE,1993,1993,3102,1,1,1200.745673,1200.745673,3505,NO,11.92,24.57,3,-2.91,6112,110.051289,120.117903,129.972275,135.740997,I,Above,Gable,0,5701,,18.24322494,0,0,,,,1,1,,0.35,nav,1,1993,1,, 10829,NJBF000068067,312 POPLAR AVENUE,Egg Harbor,NJ,39.35552981,-74.58072482,RES1,3001,,16,NE,1989,1989,3101,2,1,3836.999645,3836.999645,3507,NO,22.97,35.39,1,1.53,6112,111.328225,121.585053,131.273028,137.534711,I,Above,Gable,0,5701,,29.17855652,0,0,,,,1,1,,0.35,nav,1,1989,2,, 10830,NJBF000059585,1704 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33449894,-74.64241921,RES1,3001,210,15,NE,1955,1955,3102,2,1,901.0429056,901.0429056,3505,NO,29.94,42.33,3,2.01,6106,110.626128,120.780604,130.546788,136.565826,I,Above,Gable,0,5701,,36.13412765,0,0,,,,1,1,,0.03,nav,1,1955,2,, 10831,NJBF000062905,219 BLACKMAN ROAD,Egg Harbor,NJ,39.34046484,-74.59776111,RES1,3001,,16,NE,1965,1965,3102,2,1,2831.232859,2831.232859,3507,NO,27.12,35.72,1,1.09,6106,111.224953,121.460405,131.169472,137.404173,I,Above,Gable,0,5701,,31.42224603,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 10832,NJBF000068870,3538 BARGAINTOWN ROAD,Egg Harbor,NJ,39.35785144,-74.58084258,RES1,3001,,16,NE,2007,2007,3101,2,1,3278.182759,3278.182759,3507,NO,26.47,33.61,1,-0.25,6112,111.291814,121.557868,131.243898,137.497383,I,Above,Hip,0,5701,,30.04187415,0,0,,,,1,1,,0.35,nav,1,2007,2,, 10833,NJBF000077103,1059 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39656975,-74.71684914,RES1,3001,,16,NE,1999,1999,3102,2,1,1095.866086,1095.866086,3507,NO,35.98,42.2,1,0.8,6106,109.320747,119.192583,128.92809,134.099876,I,Above,Hip,0,5701,,39.09123858,0,0,,,,1,1,,0.03,nav,1,1999,2,, 10834,NJBF000064707,201 THOMAS DRIVE,Egg Harbor,NJ,39.34512207,-74.59346619,RES1,3001,,16,NE,1965,1965,3102,2,1,2700.860552,2700.860552,3505,NO,32.06,43.14,3,5.92,6112,111.227224,121.480875,131.185557,137.424892,I,Above,Hip,0,5701,,37.59993299,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 10835,NJBF000054158,62 SOMERS AVENUE,Egg Harbor,NJ,39.32257353,-74.64022583,RES1,3001,,16,NE,1990,1990,3102,1,1,1037.753561,1037.753561,3505,NO,18.18,25.07,3,4.87,6106,110.870626,120.970882,130.706657,136.78636,I,Above,Hip,0,5701,,21.62400298,0,0,,,,1,1,,0.03,nav,1,1990,1,, 10836,NJBF000077272,1051 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39758604,-74.71703712,RES1,3001,,16,NE,1940,1940,3102,1,1,3007.330098,3007.330098,3507,NO,16.71,24.06,1,0.29,6106,109.313685,119.182551,128.916377,134.08082,I,Above,Flat,0,5701,,20.38252659,0,0,,,,1,1,,0.03,nav,1,1940,1,, 10837,NJBF000077298,1049 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39773363,-74.71692046,RES1,3001,,16,NE,1940,1940,3102,1,1,811.3227867,811.3227867,3507,NO,19.89,26.76,1,1.23,6106,109.31366,119.182736,128.916374,134.080969,I,Above,Hip,0,5701,,23.32971988,0,0,,,,1,1,,0.03,nav,1,1940,1,, 10838,NJBF000061598,17 OTTER LANE,Egg Harbor,NJ,39.33791995,-74.61356418,RES1,3001,,16,NE,1989,1989,3102,2,1,1419.891179,1419.891179,3505,NO,37.3,45.62,3,5.71,6110,110.985416,121.220742,130.948093,137.113639,I,Above,Gable,0,5701,,41.46126595,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 10839,NJBF000065282,17 CARANN LANE,Egg Harbor,NJ,39.34661273,-74.58794243,RES1,3001,,16,NE,1975,1975,3101,2,1,1809.025839,1809.025839,3505,NO,35.6,49.19,3,2.89,6106,111.314715,121.559102,131.258076,137.51758,I,Above,Gable,0,5701,,42.39464705,0,0,,,,1,1,,0.03,nav,1,1975,2,, 10840,NJBF000062502,6 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33959254,-74.61049261,RES1,3001,,16,NE,1976,1976,3102,2,1,4640.578088,4640.578088,3505,NO,41.45,53.82,3,4.48,6106,111.006718,121.253216,130.97741,137.152786,I,Above,Flat,0,5701,,47.63438168,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 10841,NJBF000062893,151 BEVIS MILL ROAD,Egg Harbor,NJ,39.34044904,-74.64054386,RES1,3001,,16,NE,2012,2012,3101,1,1,2178.516278,2178.516278,3505,NO,21.58,29.72,3,2.37,6112,110.541809,120.737197,130.510542,136.516585,I,Above,Hip,0,5701,,25.64841967,0,0,,,,1,1,,0.35,nav,1,2012,1,, 10842,NJBF000062140,16 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33887833,-74.64238652,RES1,3001,,16,NE,1965,1965,3101,1,1,1611.561746,1611.561746,3505,NO,17.22,22.51,3,-0.19,6110,110.547488,120.726034,130.500261,136.501672,I,Above,Gable,0,5701,,19.86618603,0,0,,,,1,1,,0.35,nav,1,1965,1,, 10843,NJBF000064493,184 BLACKMAN ROAD,Egg Harbor,NJ,39.34462597,-74.5931848,RES1,3001,,16,NE,1990,1990,3102,1,1,1144.600022,1144.600022,3505,NO,22.81,27.88,3,5.62,6112,111.241465,121.491318,131.195769,137.438035,I,Above,Gable,0,5701,,25.34358445,0,0,,,,1,1,,0.35,nav,1,1990,1,, 10844,NJBF000063811,39 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34275636,-74.5929994,RES1,3001,,16,NE,1987,1987,3102,2,1,2690.180212,2690.180212,3507,NO,23.51,31.4,1,1.34,6112,111.277715,121.515784,131.220133,137.469394,I,Above,Gable,0,5701,,27.45409661,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10845,NJBF000056332,14 SOMERS AVENUE,Egg Harbor,NJ,39.32823438,-74.64512842,RES1,3001,,16,NE,1968,1968,3102,1,1,2274.643438,2274.643438,3505,NO,15.81,27.54,3,-1.56,6106,110.704347,120.817967,130.573336,136.602112,I,Above,Hip,0,5701,,21.67623993,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 10846,NJBF000062195,14 OTTER LANE,Egg Harbor,NJ,39.33896851,-74.61342704,RES1,3001,,16,NE,1997,1997,3102,2,1,3865.051753,3865.051753,3505,NO,37.8,51.52,3,8.56,6112,110.967927,121.210692,130.93853,137.101077,I,Above,Hip,0,5701,,44.66069906,0,0,,,,1,1,,0.35,nav,1,1997,2,, 10847,NJBF000063249,200 ROSEMARIE DRIVE,Egg Harbor,NJ,39.3412238,-74.59693888,RES1,3001,,16,NE,1969,1969,3102,2,1,1584.87759,1584.87759,3507,NO,33.93,44.04,1,-0.94,6110,111.227246,121.46574,131.17406,137.410107,I,Above,Gable,0,5701,,38.98489131,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10848,NJBF000069431,8 FRONT STREET,Egg Harbor,NJ,39.36034425,-74.57915743,RES1,3001,,16,NE,1994,1994,3101,2,1,2116.310138,2116.310138,3507,NO,29.62,40.55,1,-0.5,6112,111.294324,121.560165,131.242428,137.494736,I,Above,Gable,0,5701,,35.08291482,0,0,,,,1,1,,0.35,nav,1,1994,2,, 10849,NJBF000061644,19 GLEN AIRE DRIVE,Egg Harbor,NJ,39.33800178,-74.61427163,RES1,3001,,16,NE,2003,2003,3102,2,1,2495.259663,2495.259663,3505,NO,21.63,34.15,3,-2.29,6112,110.971919,121.20777,130.936144,137.09775,I,Above,Hip,0,5701,,27.88786756,0,0,,,,1,1,,0.03,nav,1,2003,2,, 10850,NJBF000062670,5 OTTER LANE,Egg Harbor,NJ,39.33997416,-74.61487691,RES1,3001,,16,NE,2002,2002,3102,2,1,2081.601422,2081.601422,3505,NO,39.76,44.98,3,2.09,6110,110.924429,121.174284,130.904749,137.056208,I,Above,Gable,0,5701,,42.36975065,0,0,,,,1,1,,0.35,nav,1,2002,2,, 10851,NJBF000078028,1019 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40242659,-74.71595585,RES1,3001,,16,NE,1975,1975,3102,2,1,1758.782797,1758.782797,3507,NO,27.71,36.82,1,-0.11,6106,109.295216,119.157519,128.883918,134.030043,I,Above,Gable,0,5701,,32.26747448,0,0,,,,1,1,,0.03,nav,1,1975,2,, 10852,NJBF000066649,8062 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35035506,-74.67020671,RES1,3001,,16,NE,1880,1880,3102,2,1,1285.082963,1285.082963,3505,NO,41.89,49.02,3,5.37,6106,110.077643,120.129238,129.981761,135.75373,I,Above,Gable,0,5701,,45.45617501,0,1.1,,,,1,1,,0.03,nav,1,1880,2,, 10853,NJBF000063399,100 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34160344,-74.61325985,RES1,3001,,16,NE,1975,1975,3102,2,1,2819.904456,2819.904456,3505,NO,26.34,38.62,3,4.6,6110,110.92098,121.182742,130.91168,137.065771,I,Above,Gable,0,5701,,32.4816924,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 10854,NJBF000066418,1517 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34970544,-74.66563604,RES1,3001,,16,NE,1845,1845,3102,2,1,2001.602866,2001.602866,3505,NO,26.48,37.89,3,0.82,6112,110.126502,120.210766,130.051898,135.858132,I,Above,Gable,0,5701,,32.1812235,0,1.2,,,,1,1,,0.35,nav,1,1845,2,, 10855,NJBF000062825,14 OSPREY COURT,Egg Harbor,NJ,39.34030729,-74.60663497,RES1,3001,,16,NE,1996,1996,3102,2,1,3061.752943,3061.752943,3505,NO,30.15,38.03,3,6.37,6112,111.061978,121.310588,131.030056,137.222356,I,Above,Hip,0,5701,,34.08946275,0,0,,,,1,1,,0.35,nav,1,1996,2,, 10856,NJBF000063448,22 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34176317,-74.59367935,RES1,3001,,16,NE,1987,1987,3102,2,1,1800.816225,1800.816225,3507,NO,27.28,32.8,1,0.32,6112,111.281594,121.515467,131.220457,137.46985,I,Above,Hip,0,5701,,30.04081176,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 10857,NJBF000061659,8 CAMELOT COURT,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,2000,3101,2,1,2665.645219,2665.645219,3505,NO,39.49,51.31,3,4.63,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,45.39730354,0,0,,,,1,1,,0.03,nav,1,1979,2,, 10858,NJBF000060894,406 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33671372,-74.6385915,RES1,3001,,15,NE,1950,1950,3101,1,1,1046.717832,1046.717832,3505,NO,22.18,31.91,3,3.36,6106,110.634804,120.815601,130.579844,136.612392,I,Above,Gable,0,5701,,27.04302599,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 10859,NJBF000060850,406 STEELMANVILLE ROAD,Egg Harbor,NJ,39.336646,-74.6387465,RES1,3001,,15,NE,1950,1950,3101,1,1,651.4166101,651.4166101,3505,NO,8.54,20.41,3,-2.49,6106,110.634052,120.813903,130.578284,136.610206,I,Above,Gable,0,5701,,14.4747963,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 10860,NJBF000063149,150A BEVIS MILL ROAD,Egg Harbor,NJ,39.34098334,-74.64006741,RES1,3001,,16,NE,2006,2006,3101,1,1,3226.849111,3226.849111,3505,NO,15.98,28.26,3,2.71,6110,110.538024,120.738619,130.511821,136.518553,I,Above,Hip,0,5701,,22.12207138,0,0,,,,1,1,,0.35,nav,1,2006,1,, 10861,NJBF000065878,25 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34833573,-74.59566655,RES1,3001,,16,NE,2009,2009,3101,2,1,2438.000558,2438.000558,3505,NO,29.12,38.5,3,-0.18,6106,111.127308,121.406945,131.113293,137.331657,I,Above,Gable,0,5701,,33.80886058,0,0,,,,1,1,,0.03,nav,1,2009,2,, 10862,NJBF000064082,145 WHARF ROAD,Egg Harbor,NJ,39.34352163,-74.67815262,RES1,3001,,16,NE,1926,1926,3102,1,1,1027.564543,1027.564543,3505,NO,13.15,24.58,3,-2,6106,110.106421,120.113521,129.942479,135.691764,I,Above,Gable,0,5701,,18.86633517,0,0,,,,1,1,,0.03,nav,1,1926,1,, 10863,NJBF000064145,145 WHARF ROAD,Egg Harbor,NJ,39.34370581,-74.67773476,RES1,3001,,16,NE,1926,1926,3102,1,1,1650.806349,1650.806349,3505,NO,10.76,19.74,3,-1.54,6106,110.107456,120.11641,129.94635,135.69765,I,Above,Hip,0,5701,,15.25075339,0,0,,,,1,1,,0.03,nav,1,1926,1,, 10864,NJBF000061517,405 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33778166,-74.63657848,RES1,3001,,16,NE,1988,1988,3101,1,1,1415.160547,1415.160547,3505,NO,25.24,37.62,3,7.39,6106,110.641525,120.835748,130.598334,136.638353,I,Above,Gable,0,5701,,31.43010824,0,1.2,,,,1,1,,0.03,nav,1,1988,1,, 10865,NJBF000062337,4052 OCEAN HTS AVENUE,Egg Harbor,NJ,39.33924632,-74.59866689,RES1,3001,,16,NE,1890,1890,3102,2,1,1394.473898,1394.473898,3507,NO,36.05,42.55,1,-0.62,6106,111.229557,121.459009,131.168744,137.403215,I,Above,Hip,0,5701,,39.29573136,0,1.1,,,,1,1,,0.03,nav,1,1890,2,, 10866,NJBF000062699,4048 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34004125,-74.59934975,RES1,3001,,NaN,NE,1890,0,3102,2,1,512.1242514,512.1242514,3507,NO,31.48,40.95,1,0.88,6106,111.202178,121.438105,131.148814,137.377416,I,Above,Gable,0,5701,,36.21558876,0,0,,,,1,1,,0.03,nav,1,1890,2,, 10867,NJBF000069421,108 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1990,3102,2,1,4909.343728,4909.343728,3505,NO,28.76,41.91,3,4.69,6103,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,35.33344876,0,0,,,,1,1,,0.03,nav,1,1987,2,, 10868,NJBF000060001,101 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33522401,-74.64343841,RES1,3001,,16,NE,1900,1900,3102,2,1,1448.323552,1448.323552,3505,NO,36.61,51.46,3,1.57,6106,110.600297,120.754735,130.523941,136.534,I,Above,Hip,0,5701,,44.03429569,0,0,,,,1,1,,0.03,nav,1,1900,2,, 10869,NJBF000062869,4049 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34039452,-74.60112374,RES1,3001,,16,NE,1954,1954,3102,1,1,3261.62914,3261.62914,3507,NO,11.73,22.54,1,1.1,6106,111.162159,121.403664,131.116475,137.335423,I,Above,Gable,0,5701,,17.13576552,0,0,,,,1,1,,0.03,nav,1,1954,1,, 10870,NJBF000056147,18 SOMERS AVENUE,Egg Harbor,NJ,39.32781678,-74.64462611,RES1,3001,,16,NE,1987,1987,3102,2,1,1038.973173,1038.973173,3505,NO,30.15,38.63,3,2.65,6106,110.71821,120.831478,130.585214,136.618625,I,Above,Gable,0,5701,,34.38906804,0,0,,,,1,1,,0.03,nav,1,1987,2,, 10871,NJBF000063801,236 STEELMANVILLE ROAD,Egg Harbor,NJ,39.3427341,-74.61058361,RES1,3001,,16,NE,1974,1974,3102,1,1,3571.705227,3571.705227,3505,NO,24.87,38.18,3,6.52,6112,110.946115,121.215203,130.940727,137.104649,I,Above,Gable,0,5701,,31.52645369,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 10872,NJBF000066814,1454 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35087499,-74.67838667,RES1,3001,,16,NE,1940,1940,3102,2,1,1112.164392,1112.164392,3505,NO,26.84,40.64,3,0.81,6112,110.00264,120.011879,129.864432,135.576716,I,Above,Flat,0,5701,,33.7399034,0,0,,,,1,1,,0.15,nav,1,1940,2,, 10873,NJBF000067670,1432 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35412048,-74.68150951,RES1,3001,,16,NE,1968,1968,3102,1,1,1848.547294,1848.547294,3505,NO,16.14,23.13,3,-0.12,6112,109.935583,119.940557,129.789212,135.463435,I,Above,Flat,0,5701,,19.63283167,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 10874,NJBF000056543,10 PROSPECT AVENUE,Egg Harbor,NJ,39.32869965,-74.64974522,RES1,3001,,15,NE,1910,1910,3102,2,1,1126.106998,1126.106998,3505,NO,28,40.47,3,4.2,6106,110.638601,120.738407,130.500154,136.499777,I,Above,Gable,0,5701,,34.23437967,0,1.2,,,,1,1,,0.03,nav,1,1910,2,, 10875,NJBF000069462,4 WATER STREET,Egg Harbor,NJ,39.36063064,-74.57863065,RES1,3001,,16,NE,1832,1832,3101,2,1,1127.562235,1127.562235,3507,NO,25,39.44,1,-0.66,6112,111.302166,121.56617,131.24775,137.501301,I,Above,Gable,0,5701,,32.21749943,0,1.2,,,,1,1,,0.35,nav,1,1832,2,, 10876,NJBF000069477,4 WATER STREET,Egg Harbor,NJ,39.360718,-74.5785475,RES1,3001,,16,NE,1832,1832,3101,2,1,1095.948479,1095.948479,3507,NO,28.27,38.52,1,-0.55,6112,111.302863,121.566689,131.248115,137.501727,I,Above,Gable,0,5701,,33.39560995,0,1.2,,,,1,1,,0.35,nav,1,1832,2,, 10877,NJBF000063887,1 MAY DRIVE,Egg Harbor,NJ,39.34299391,-74.61022669,RES1,3001,,16,NE,1972,1972,3102,2,1,2299.459288,2299.459288,3505,NO,32.7,43.59,3,1.17,6110,110.947534,121.218292,130.943383,137.108226,I,Above,Gable,0,5701,,38.1455061,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 10878,NJBF000069596,310 CENTRAL AVENUE,Egg Harbor,NJ,39.36197897,-74.57812797,RES1,3001,,16,NE,1980,1980,3101,2,1,2450.608786,2450.608786,3507,NO,24.83,33.15,1,0.74,6112,111.295309,121.560457,131.240172,137.49131,I,Above,Gable,0,5701,,28.98853386,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 10879,NJBF000069562,310 CENTRAL AVENUE,Egg Harbor,NJ,39.36164167,-74.57776381,RES1,3001,,16,NE,1980,1980,3101,2,1,1487.376195,1487.376195,3507,NO,32.1,42.62,1,-0.76,6103,111.307975,121.570331,131.250186,137.503964,I,Above,Gable,0,5701,,37.36082486,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 10880,NJBF000067274,159 THOMPSONS LANE,Egg Harbor,NJ,39.35284941,-74.69980716,RES1,3001,,16,NE,1997,1997,3101,2,1,2842.445395,2842.445395,3507,NO,24.77,34.56,1,1.53,6110,109.81099,119.754172,129.559736,135.105301,I,Above,Hip,0,5701,,29.66822754,0,1.2,,,,1,1,,0.15,nav,1,1997,2,, 10881,NJBF000067225,159 THOMPSONS LANE,Egg Harbor,NJ,39.35265798,-74.70015816,RES1,3001,,16,NE,1997,1997,3101,2,1,1045.094825,1045.094825,3507,NO,23.69,29.28,1,2.46,6106,109.810566,119.752359,129.557029,135.100946,I,Above,Gable,0,5701,,26.48566504,0,1.2,,,,1,1,,0.03,nav,1,1997,2,, 10882,NJBF000060297,360 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1989,3102,2,1,1854.892449,1854.892449,3505,NO,36.11,50.84,3,5.97,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,43.47223157,0,1.2,,,,1,1,,0.03,nav,1,1993,2,, 10883,NJBF000066034,1111 LAKESIDE DRIVE,Egg Harbor,NJ,39.34873396,-74.59091287,RES1,3001,,16,NE,1969,1969,3101,1,1,1485.641369,1485.641369,3505,NO,18.02,27.44,3,2.48,6106,111.217753,121.484222,131.18537,137.424505,I,Above,Gable,0,5701,,22.72795502,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10884,NJBF000065947,1113 LAKESIDE DRIVE,Egg Harbor,NJ,39.34851241,-74.59110413,RES1,3001,,16,NE,1969,1969,3101,2,1,1815.211979,1815.211979,3505,NO,32.71,45.85,3,-2.65,6106,111.217524,121.483411,131.184833,137.423829,I,Above,Gable,0,5701,,39.28287205,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 10885,NJBF000066044,1106 JORENE DRIVE,Egg Harbor,NJ,39.348755,-74.58731353,RES1,3001,,16,NE,1969,1969,3101,2,1,1533.580017,1533.580017,3505,NO,43.98,52.23,3,5.89,6110,111.292392,121.545958,131.243638,137.498931,I,Above,Gable,0,5701,,48.10659004,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10886,NJBF000062273,290 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1978,3102,1,1,1725.110809,1725.110809,3505,NO,18.81,27.21,3,2.3,6112,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,23.00965424,0,1.1,,,,1,1,,0.35,nav,1,1993,1,, 10887,NJBF000063051,152 BEVIS MILL ROAD,Egg Harbor,NJ,39.340787,-74.63981942,RES1,3001,,16,NE,1950,1950,3101,1,1,2253.679381,2253.679381,3505,NO,24.12,31.86,3,6,6112,110.544688,120.745126,130.51761,136.526607,I,Above,Gable,0,5701,,27.99345319,0,0,,,,1,1,,0.35,nav,1,1950,1,, 10888,NJBF000077747,1027 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40065857,-74.71633372,RES1,3001,,16,NE,1980,1980,3102,1,1,663.8591748,663.8591748,3507,NO,15.2,21.77,1,2.6,6106,109.301773,119.166806,128.895966,134.048933,I,Above,Gable,0,5701,,18.4858699,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 10889,NJBF000077763,1027 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40075696,-74.71648086,RES1,3001,,16,NE,1980,1980,3102,1,1,3560.15206,3560.15206,3507,NO,14.3,22.84,1,0.2,6106,109.300232,119.164365,128.893326,134.044488,I,Above,Gable,0,5701,,18.57017718,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 10890,NJBF000066357,1102 MARLOU AVENUE,Egg Harbor,NJ,39.3495535,-74.58802604,RES1,3001,,16,NE,1969,1969,3101,1,1,2402.579142,2402.579142,3505,NO,15.51,23.15,3,2.98,6112,111.264388,121.524813,131.222816,137.472311,I,Above,Gable,0,5701,,19.32805706,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10891,NJBF000066264,1104 MARLOU AVENUE,Egg Harbor,NJ,39.34932956,-74.58823976,RES1,3001,,16,NE,1969,1969,3101,1,1,2200.215836,2200.215836,3505,NO,23.6,33.2,3,5.52,6112,111.26355,121.523605,131.221907,137.471176,I,Above,Gable,0,5701,,28.39984184,0,1.2,,,,1,1,,0.35,nav,1,1969,1,, 10892,NJBF000052617,1820 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.316018,-74.6311155,COM3,3001,510,NaN,ME,1969,0,3401,2,1,1080.973184,1080.973184,3507,NO,32.52,39.16,1,-0.97,6106,111.119103,121.203488,130.915024,137.069339,I,Above,Flat,0,NaN,,35.84071733,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10893,NJBF000052615,1820 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31599979,-74.63100553,COM3,3001,510,NaN,ME,1969,0,3401,2,1,521.0107397,521.0107397,3507,NO,38.62,53.33,1,2.93,6106,111.121057,121.2055,130.916907,137.071862,I,Above,Flat,0,NaN,,45.97251025,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10894,NJBF000066358,1106 LAKESIDE DRIVE,Egg Harbor,NJ,39.34955426,-74.59079526,RES1,3001,,16,NE,1969,1969,3101,2,1,1568.005218,1568.005218,3505,NO,27.32,37.72,3,-0.06,6112,111.206522,121.477129,131.177828,137.414789,I,Above,Gable,0,5701,,32.52239682,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10895,NJBF000074174,209 SEVILLE AVENUE,Egg Harbor,NJ,39.38522566,-74.51051428,RES1,3001,,16,NE,1951,1951,3102,1,1,1414.725122,1414.725122,3505,NO,12.49,19.2,3,-2.21,6106,112.569365,122.496109,132.163779,138.496773,I,Above,Flat,0,5701,,15.84437694,0,0,,,,1,1,,0.03,nav,1,1951,1,, 10896,NJBF000052110,2 O'BYRNE DRIVE,Egg Harbor,NJ,39.31292817,-74.57912915,RES1,3001,,16,NE,1959,1959,3102,1,1,1340.112025,1340.112025,3507,NO,15.87,25.12,1,-0.77,6106,112.073942,122.108615,131.78295,138.178652,I,Above,Gable,0,5701,,20.49491642,0,0,,,,1,1,,0.03,nav,1,1959,1,, 10897,NJBF000052070,2 O'BYRNE DRIVE,Egg Harbor,NJ,39.31276104,-74.57914685,RES1,3001,,16,NE,1959,1959,3102,1,1,1415.237736,1415.237736,3507,NO,19.2,28.67,1,0.41,6106,112.076524,122.110363,131.784492,138.180564,I,Above,Gable,0,5701,,23.93358627,0,0,,,,1,1,,0.03,nav,1,1959,1,, 10898,NJBF000074296,202 EAST PLAZA PLACE,Egg Harbor,NJ,39.38580307,-74.51063992,RES1,3001,,16,NE,1951,1951,3102,1,1,830.8535715,830.8535715,3505,NO,17.38,25.98,3,2.75,6106,112.561014,122.487802,132.154673,138.485078,I,Above,Gable,0,5701,,21.6804084,0,0,,,,1,1,,0.03,nav,1,1951,1,, 10899,NJBF000074330,200 EAST PLAZA PLACE,Egg Harbor,NJ,39.38592457,-74.51055291,RES1,3001,,16,NE,1951,1951,3102,2,1,1313.108926,1313.108926,3505,NO,37.53,51.36,3,-0.14,6106,112.561775,122.48806,132.154884,138.484811,I,Above,Hip,0,5701,,44.44528812,0,1.2,,,,1,1,,0.03,nav,1,1951,2,, 10900,NJBF000074502,206 FRANKFORT COURT,Egg Harbor,NJ,39.3867305,-74.51785065,RES1,3001,,16,NE,1925,1925,3102,2,1,1398.791071,1398.791071,3505,NO,36.54,51.29,3,-0.29,6106,112.392104,122.350575,132.008804,138.329438,I,Above,Flat,0,5701,,43.91303098,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 10901,NJBF000082031,105 HOLLY ROAD,Egg Harbor,NJ,39.42575762,-74.51951318,RES1,3001,,NaN,NE,1940,0,3102,2,1,541.0384838,541.0384838,3505,NO,28.65,36.94,3,3.76,6106,112.063481,121.918598,131.520697,137.675321,I,Above,Gable,0,5701,,32.79108797,0,0,,,,1,1,,0.03,nav,1,1940,2,, 10902,NJBF000082389,310 S MILL ROAD,Egg Harbor,NJ,39.4295212,-74.51741152,RES1,3001,,NaN,NE,1969,0,3102,2,1,2456.81765,2456.81765,3505,NO,31.84,45.11,3,3.02,6106,112.084467,121.916514,131.517413,137.657198,I,Above,Gable,0,5701,,38.47777593,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10903,NJBF000082379,310 S MILL ROAD,Egg Harbor,NJ,39.42941352,-74.51695468,RES1,3001,,NaN,NE,1969,0,3102,2,1,1836.665739,1836.665739,3505,NO,39.42,45.63,3,2.71,6106,112.094464,121.925544,131.527303,137.667874,I,Above,Gable,0,5701,,42.52550897,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10904,NJBF000082434,310 S MILL ROAD,Egg Harbor,NJ,39.42985584,-74.51743772,RES1,3001,,NaN,NE,1969,0,3102,2,1,4138.093576,4138.093576,3505,NO,36.05,42.96,3,5.37,6106,112.081976,121.912628,131.513098,137.651398,I,Above,Flat,0,5701,,39.50434732,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10905,NJBF000082456,310 S MILL ROAD,Egg Harbor,NJ,39.4300977,-74.51750906,RES1,3001,,NaN,NE,1969,0,3102,2,1,560.8542554,560.8542554,3505,NO,34.3,47.99,3,0.25,6106,112.079112,121.908915,131.508992,137.646181,I,Above,Gable,0,5701,,41.14149159,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10906,NJBF000074312,7031 BLACK HORSE PIKE,Egg Harbor,NJ,39.38587169,-74.51228598,RES1,3001,,NaN,NE,1969,0,3102,2,1,1520.836982,1520.836982,3505,NO,30.46,42.78,3,-2.79,6106,112.52382,122.457928,132.122945,138.451973,I,Above,Gable,0,5701,,36.61917687,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10907,NJBF000067976,114 MARGATE BLVD.,Egg Harbor,NJ,39.35521958,-74.54016597,RES1,3001,,16,NE,1973,1973,3102,1,1,2349.303157,2349.303157,3507,NO,13.57,19.29,1,2.13,6106,112.237898,122.294592,131.972363,138.376822,I,Above,Flat,0,5701,,16.43049708,0,0,,,,1,1,,0.03,nav,1,1973,1,, 10908,NJBF000074562,7005 BLACK HORSE PIKE,Egg Harbor,NJ,39.38699811,-74.51766506,RES1,3001,,16,NE,1925,1940,3102,2,1,2037.636891,2037.636891,3505,NO,25.22,33.53,3,1.43,6106,112.393738,122.351047,132.009121,138.328801,I,Above,Gable,0,5701,,29.37606382,0,0,,,,1,1,,0.03,nav,1,1925,2,, 10909,NJBF000074550,204 LYONS COURT,Egg Harbor,NJ,39.38694296,-74.51870499,RES1,3001,,16,NE,1928,1928,3102,2,1,1598.419995,1598.419995,3505,NO,27.84,33.88,3,5.4,6106,112.371142,122.33328,131.99039,138.309256,I,Above,Hip,0,5701,,30.86313259,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 10910,NJBF000074409,200 GENOA AVENUE,Egg Harbor,NJ,39.386278,-74.51601899,RES1,3001,,16,NE,1920,1920,3102,1,1,536.9113234,536.9113234,3505,NO,17.06,31.42,3,3.45,6106,112.437054,122.387657,132.048296,138.372588,I,Above,Flat,0,5701,,24.23837285,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 10911,NJBF000051994,8 O'BYRNE DRIVE,Egg Harbor,NJ,39.31226827,-74.57919221,RES1,3001,,16,NE,1959,1959,3102,1,1,1248.939033,1248.939033,3507,NO,15.94,26.99,1,0.05,6106,112.084306,122.115666,131.789179,138.186369,I,Above,Flat,0,5701,,21.46369249,0,0,,,,1,1,,0.03,nav,1,1959,1,, 10912,NJBF000082300,28 ABLES RUN DRIVE,Egg Harbor,NJ,39.42877178,-74.52617827,RES1,3001,,37,NE,2007,2007,3102,2,1,7365.891184,7365.891184,3505,NO,38.53,46.9,3,6.37,6112,111.909395,121.772634,131.360445,137.495948,I,Above,Hip,0,5701,,42.71288381,0,0,,,,1,1,,0.35,nav,1,2007,2,, 10913,NJBF000073390,8012 BLACK HORSE PIKE,Egg Harbor,NJ,39.38033785,-74.49374336,COM1,3003,999,NaN,ME,1950,1950,3401,2,1,2404.890882,2404.890882,3507,NO,24.54,37.44,1,0.78,6106,112.990314,122.846352,132.538498,138.895767,I,Above,Flat,0,NaN,,30.99333269,0,0,,,,1,1,,0.03,nav,1,1950,2,, 10914,NJBF000074204,207 SEVILLE AVENUE,Egg Harbor,NJ,39.38535001,-74.51045063,RES1,3001,,16,NE,1951,1951,3102,1,1,1377.82129,1377.82129,3505,NO,17.11,29.38,3,6.42,6106,112.569567,122.495919,132.163516,138.496008,I,Above,Hip,0,5701,,23.24695219,0,0,,,,1,1,,0.03,nav,1,1951,1,, 10915,NJBF000081943,515 S MILL ROAD,Egg Harbor,NJ,39.42475081,-74.52301428,COM1,3001,999,17,ME,1950,1950,3401,1,1,6823.18628,6823.18628,3507,NO,16.47,29.07,1,0.84,6110,111.997111,121.868217,131.466155,137.622217,I,Above,Flat,0,NaN,,22.77305536,0,0,,,,1,1,,0.35,nav,1,1950,1,, 10916,NJBF000074556,7007 BLACK HORSE PIKE,Egg Harbor,NJ,39.3869745,-74.5171835,RES1,3001,,16,NE,1929,1929,3102,2,2,1088.012768,1088.012768,3505,NO,34.68,48.94,3,7.45,6106,112.404637,122.359776,132.018363,138.338606,I,Above,Gable,0,5701,,41.81129116,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 10917,NJBF000065202,208 THOMAS DRIVE,Egg Harbor,NJ,39.346391,-74.59415765,RES1,3001,,16,NE,1990,1990,3102,2,1,2107.773328,2107.773328,3505,NO,33.63,39.79,3,6.93,6106,111.191338,121.454667,131.159866,137.391792,I,Above,Gable,0,5701,,36.70941919,0,0,,,,1,1,,0.03,nav,1,1990,2,, 10918,NJBF000063929,127 BEVIS MILL ROAD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1986,3101,2,1,3989.920874,3989.920874,3505,NO,44.79,53.12,3,6.49,6112,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,48.95509783,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 10919,NJBF000072707,1197 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37461158,-74.71643315,RES1,3001,,16,NE,1950,1950,3101,1,1,1646.586693,1646.586693,3507,NO,16.37,29.16,1,-0.66,6106,109.477214,119.373632,129.139945,134.43787,I,Above,Gable,0,5701,,22.76770978,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10920,NJBF000063648,7 MAY DRIVE,Egg Harbor,NJ,39.34230215,-74.60963893,RES1,3001,,16,NE,1975,1975,3102,2,1,2060.407609,2060.407609,3505,NO,32.13,38.15,3,-0.26,6110,110.970929,121.236283,130.960376,137.130643,I,Above,Gable,0,5701,,35.13896564,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 10921,NJBF000066504,1101 LAKESIDE DRIVE,Egg Harbor,NJ,39.34991579,-74.58974193,RES1,3001,,16,NE,1969,1969,3101,1,1,3241.467074,3241.467074,3505,NO,13.81,19.78,3,0.35,6112,111.222477,121.491234,131.190723,137.431283,I,Above,Gable,0,5701,,16.79077947,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10922,NJBF000062843,4048 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34033773,-74.59941953,RES1,3001,,NaN,NE,1969,0,3102,2,1,758.4105012,758.4105012,3507,NO,27.47,34.15,1,2.02,6106,111.195473,121.433471,131.144333,137.371613,I,Above,Gable,0,5701,,30.80999051,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10923,NJBF000061167,1648 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33717807,-74.64432719,RES1,3001,,16,NE,1987,1987,3101,2,1,1153.176551,1153.176551,3505,NO,40.48,48.46,3,2.76,6106,110.554306,120.715426,130.489905,136.486656,I,Above,Gable,0,5701,,44.46740235,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 10924,NJBF000065911,1112 MARLOU AVENUE,Egg Harbor,NJ,39.34842342,-74.58903326,RES1,3001,,16,NE,1969,1969,3101,1,1,1988.495868,1988.495868,3505,NO,20.97,34.03,3,7.89,6110,111.261946,121.520049,131.219467,137.468157,I,Above,Gable,0,5701,,27.49673217,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 10925,NJBF000051476,,Egg Harbor,NJ,39.30746792,-74.63595075,RES1,3001,,NaN,NE,1945,0,3102,2,1,846.920593,846.920593,3505,NO,26.79,37.81,3,-2.84,6106,111.202913,121.239406,130.931161,137.093192,I,Above,Gable,0,5701,,32.29849992,0,0,,,,1,1,,0.03,nav,1,1945,2,, 10926,NJBF000071474,3360 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37071406,-74.58136276,RES1,3001,,16,NE,1940,1940,3101,2,1,652.2395906,652.2395906,3507,NO,26.09,40.24,1,2.8,6112,111.114533,121.413189,131.082938,137.291026,I,Above,Hip,0,5701,,33.16551015,0,1.1,,,,1,1,,0.15,nav,1,1940,2,, 10927,NJBF000065480,11 CARANN LANE,Egg Harbor,NJ,39.34719061,-74.5887653,RES1,3001,,16,NE,1975,1975,3101,1,1,2128.810977,2128.810977,3505,NO,11.84,23.8,3,0.05,6110,111.288013,121.538442,131.238017,137.491955,I,Above,Hip,0,5701,,17.81742231,0,0,,,,1,1,,0.35,nav,1,1975,1,, 10928,NJBF000071494,3360 BARGAINTOWN ROAD,Egg Harbor,NJ,39.3707705,-74.5815425,RES1,3001,,16,NE,1940,1940,3101,2,1,1453.046125,1453.046125,3507,NO,25.67,31.88,1,1.06,6112,111.109819,121.409542,131.079328,137.28646,I,Above,Gable,0,5701,,28.7739237,0,1.1,,,,1,1,,0.35,nav,1,1940,2,, 10929,NJBF000055203,35 SOMERS AVENUE,Egg Harbor,NJ,39.32543681,-74.64380846,RES1,3001,,16,NE,1965,1965,3102,1,1,4515.561411,4515.561411,3505,NO,15.98,30.5,3,-2.81,6106,110.771416,120.875891,130.622614,136.670481,I,Above,Hip,0,5701,,23.24085215,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 10930,NJBF000052512,1821 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31523417,-74.62983534,COM3,3001,510,NaN,ME,1969,0,3401,3,1,5709.232128,5709.232128,3507,NO,53.11,66.25,1,0.4,6106,111.15244,121.234452,130.943107,137.106999,I,Above,Flat,0,NaN,,59.68201559,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10931,NJBF000067543,149 THOMPSONS LANE,Egg Harbor,NJ,39.35377586,-74.69781842,RES1,3001,,16,NE,1999,1999,3101,1,1,3240.432563,3240.432563,3507,NO,20.35,30.54,1,2.93,6106,109.815175,119.766144,129.576599,135.132316,I,Above,Hip,0,5701,,25.44251217,0,0,,,,1,1,,0.03,nav,1,1999,1,, 10932,NJBF000073065,3308 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37712027,-74.57909882,RES1,3001,,16,NE,1960,1960,3102,1,1,1008.702515,1008.702515,3507,NO,13.78,20.29,1,1.73,6112,111.100678,121.386393,131.043143,137.239214,I,Above,Flat,0,5701,,17.03398945,0,0,,,,1,1,,0.35,nav,1,1960,1,, 10933,NJBF000066448,1112 BERRY DRIVE,Egg Harbor,NJ,39.34977855,-74.5945815,RES1,3001,,16,NE,1969,1969,3101,2,1,1930.119186,1930.119186,3505,NO,19.59,30.54,3,-2.68,6112,111.124642,121.409521,131.11413,137.332777,I,Above,Gable,0,5701,,25.06717309,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 10934,NJBF000063327,202 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34141615,-74.59718896,RES1,3001,,16,NE,1969,1969,3102,2,1,2092.053714,2092.053714,3507,NO,38.35,53.15,1,1.26,6110,111.218967,121.459247,131.167865,137.402104,I,Above,Gable,0,5701,,45.75051139,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 10935,NJBF000062544,18 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33967335,-74.61245632,RES1,3001,,16,NE,1976,1976,3102,1,1,2948.789332,2948.789332,3505,NO,19.69,31.39,3,1.96,6106,110.971216,121.218914,130.945813,137.110877,I,Above,Gable,0,5701,,25.54083653,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 10936,NJBF000062422,16 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33942076,-74.61223342,RES1,3001,,16,NE,1981,1981,3102,1,1,3531.073117,3531.073117,3505,NO,13.25,27.94,3,-2.41,6110,110.979799,121.225656,130.952113,137.119209,I,Above,Gable,0,5701,,20.59687776,0,1.1,,,,1,1,,0.03,nav,1,1981,1,, 10937,NJBF000063202,263 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34111559,-74.61533577,RES1,3001,,16,NE,1915,1915,3102,1,1,1553.886293,1553.886293,3505,NO,16.04,23.82,3,3.78,6106,110.895076,121.153141,130.884875,137.029855,I,Above,Gable,0,5701,,19.93370783,0,0,,,,1,1,,0.03,nav,1,1915,1,, 10938,NJBF000063245,269 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34121638,-74.61592461,RES1,3001,,16,NE,1959,1959,3102,1,1,5082.550138,5082.550138,3505,NO,16.4,23.09,3,-0.34,6106,110.883348,121.141978,130.87463,137.016154,I,Above,Gable,0,5701,,19.74248134,0,1.2,,,,1,1,,0.03,nav,1,1959,1,, 10939,NJBF000057924,122 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33138436,-74.64448871,RES1,3001,,15,NE,1950,1950,3102,1,2,613.203344,613.203344,3505,NO,26.05,39.16,3,7.75,6106,110.65607,120.787066,130.549362,136.56894,I,Above,Gable,0,5701,,32.60417037,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 10940,NJBF000064722,180 BLACKMAN ROAD,Egg Harbor,NJ,39.34516215,-74.59274605,RES1,3001,,16,NE,1960,1960,3102,1,1,1972.925989,1972.925989,3505,NO,9.49,24.24,3,-2.31,6106,111.241034,121.492795,131.19673,137.439251,I,Above,Gable,0,5701,,16.86269621,0,0,,,,1,1,,0.03,nav,1,1960,1,, 10941,NJBF000055151,40 SOMERS AVENUE,Egg Harbor,NJ,39.32528199,-74.64255533,RES1,3001,,16,NE,1964,1964,3102,1,1,1511.725832,1511.725832,3505,NO,13.47,22.46,3,-1.31,6106,110.79062,120.897954,130.642979,136.698642,I,Above,Gable,0,5701,,17.96740175,0,0,,,,1,1,,0.03,nav,1,1964,1,, 10942,NJBF000063944,602 NATHAN LANE,Egg Harbor,NJ,39.3431615,-74.64011573,RES1,3001,,16,NE,1981,1981,3101,1,1,1629.698934,1629.698934,3505,NO,19.37,25.45,3,5.94,6110,110.497774,120.71155,130.487495,136.48515,I,Above,Gable,0,5701,,22.40838348,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10943,NJBF000061624,6 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33797252,-74.64095367,RES1,3001,,16,NE,1988,1988,3101,2,1,1115.400443,1115.400443,3505,NO,37.73,51.84,3,0.2,6106,110.581667,120.760929,130.531187,136.544796,I,Above,Gable,0,5701,,44.78652395,0,0,,,,1,1,,0.03,nav,1,1988,2,, 10944,NJBF000070612,3400 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36777836,-74.58138079,RES1,3001,,16,NE,1940,1940,3101,1,1,1676.442482,1676.442482,3507,NO,13.74,22.34,1,1.71,6110,111.148185,121.443332,131.117694,137.335603,I,Above,Gable,0,5701,,18.04314061,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 10945,NJBF000071049,3372 BARGAINTOWN ROAD,Egg Harbor,NJ,39.3692335,-74.58151,RES1,3001,,NaN,NE,1952,0,3101,1,1,1327.566855,1327.566855,3507,NO,15.01,26.42,1,0.85,6110,111.128057,121.42599,131.098225,137.310676,I,Above,Gable,0,5701,,20.7177413,0,0,,,,1,1,,0.35,nav,1,1952,1,, 10946,NJBF000062906,25 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34046499,-74.59397899,RES1,3001,,16,NE,1987,1987,3102,2,1,3055.314684,3055.314684,3507,NO,28.56,41.76,1,1.41,6106,111.298544,121.525237,131.230373,137.482631,I,Above,Gable,0,5701,,35.15564604,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 10947,NJBF000066155,31 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34907316,-74.59636109,RES1,3001,,16,NE,1985,1985,3101,1,1,2831.650196,2831.650196,3505,NO,9.68,15.52,3,-2.71,6106,111.100577,121.386814,131.093702,137.306303,I,Above,Gable,0,5701,,12.59931406,0,1.2,,,,1,1,,0.03,nav,1,1985,1,, 10948,NJBF000054238,1765 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32281824,-74.63949077,RES1,3001,,16,NE,1962,1962,3102,1,1,3517.908763,3517.908763,3505,NO,14.64,28.96,3,2.47,6106,110.876208,120.979451,130.715141,136.797968,I,Above,Gable,0,5701,,21.7989399,0,1.2,,,,1,1,,0.03,nav,1,1962,1,, 10949,NJBF000065918,154 BLACKMAN ROAD,Egg Harbor,NJ,39.34843654,-74.58973142,RES1,3001,,16,NE,1974,1974,3101,1,1,1715.459228,1715.459228,3505,NO,12.18,17.64,3,0.11,6112,111.247205,121.507876,131.207963,137.453455,I,Above,Gable,0,5701,,14.91045865,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 10950,NJBF000067402,8043 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35333718,-74.67070588,RES1,3001,,16,NE,1998,1995,3102,2,1,746.0199466,746.0199466,3505,NO,35.04,43.29,3,-2.42,6106,110.031881,120.084279,129.943989,135.698618,I,Above,Gable,0,5701,,39.16324318,0,0,,,,1,1,,0.03,nav,1,1998,2,, 10951,NJBF000061340,324 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,NaN,NE,1993,0,3102,2,1,1143.226309,1143.226309,3505,NO,25.99,39.28,3,-1.4,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,32.63500196,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10952,NJBF000062789,155 BEVIS MILL ROAD,Egg Harbor,NJ,39.34022946,-74.63982247,RES1,3001,,16,NE,1972,1972,3101,1,1,2194.166232,2194.166232,3505,NO,12.21,26.59,3,-2.81,6112,110.554825,120.751875,130.523602,136.534826,I,Above,Flat,0,5701,,19.39789715,0,0,,,,1,1,,0.35,nav,1,1972,1,, 10953,NJBF000066963,133 FLORIDA AVENUE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1980,3101,1,1,1615.86011,1615.86011,3505,NO,17.58,27.82,3,2.51,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,22.70139921,0,0,,,,1,1,,0.35,nav,1,1981,1,, 10954,NJBF000075719,205 HARBOR DRIVE,Egg Harbor,NJ,39.39086495,-74.71885685,RES1,3001,,17,NE,2015,2015,3102,1,1,829.7206397,829.7206397,3507,NO,18.98,30.8,1,2.74,6106,109.341623,119.214563,128.957659,134.144758,I,Above,Gable,0,5701,,24.88534065,0,1.2,,,,1,1,,0.03,nav,1,2015,1,, 10955,NJBF000062405,1635 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1780,3101,2,1,984.9301812,984.9301812,3505,NO,26.14,31.41,3,-0.48,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,28.77748644,0,1.2,,,,1,1,,0.03,nav,1,1979,2,, 10956,NJBF000058875,112 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33309609,-74.64457996,RES1,3001,,16,NE,1860,1860,3102,2,1,1844.867999,1844.867999,3505,NO,26.37,32.71,3,-2.92,6106,110.624267,120.763434,130.529781,136.541794,I,Above,Hip,0,5701,,29.5402066,0,1.2,,,,1,1,,0.03,nav,1,1860,2,, 10957,NJBF000075608,202 HARBOR DRIVE,Egg Harbor,NJ,39.39048758,-74.71898679,RES1,3001,,16,NE,1972,1972,3102,2,1,1765.365284,1765.365284,3507,NO,38.68,44.65,1,0.04,6106,109.343159,119.216086,128.95964,134.147775,I,Above,Gable,0,5701,,41.6631554,0,0,,,,1,1,,0.03,nav,1,1972,2,, 10958,NJBF000062928,107 ANITA DRIVE,Egg Harbor,NJ,39.34052033,-74.59600952,RES1,3001,,16,NE,1970,1970,3102,2,1,1978.411738,1978.411738,3507,NO,30.12,37.56,1,0.11,6112,111.257852,121.489772,131.19699,137.439694,I,Above,Gable,0,5701,,33.83585148,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 10959,NJBF000063852,4 MAY DRIVE,Egg Harbor,NJ,39.34289407,-74.60943128,RES1,3001,,16,NE,1982,1982,3102,2,1,3124.01109,3124.01109,3505,NO,33.64,43.39,3,2.34,6112,110.963539,121.233008,130.95697,137.126231,I,Above,Hip,0,5701,,38.51494328,0,0,,,,1,1,,0.35,nav,1,1982,2,, 10960,NJBF000062013,296 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1993,3102,2,1,2691.323458,2691.323458,3505,NO,34.62,42.43,3,3.92,6110,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,38.52105459,0,0,,,,1,1,,0.35,nav,1,1993,2,, 10961,NJBF000075909,1099 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39159333,-74.71728595,RES1,3001,,16,NE,1993,1993,3102,2,1,2236.854436,2236.854436,3507,NO,25.01,31.69,1,2.27,6106,109.347659,119.226516,128.969522,134.165705,I,Above,Hip,0,5701,,28.34760279,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10962,NJBF000075815,1101 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39124399,-74.71729999,RES1,3001,,16,NE,1993,1993,3102,2,1,964.6532598,964.6532598,3507,NO,25.5,33.45,1,0.05,6106,109.349765,119.229103,128.972629,134.170658,I,Above,Gable,0,5701,,29.47673765,0,0,,,,1,1,,0.03,nav,1,1993,2,, 10963,NJBF000063458,5 BEAVER DRIVE,Egg Harbor,NJ,39.34178617,-74.61114285,RES1,3001,,16,NE,1986,1986,3102,2,1,2378.385782,2378.385782,3505,NO,43.3,55.47,3,4.91,6112,110.954135,121.216633,130.942644,137.107024,I,Above,Gable,0,5701,,49.38404656,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 10964,NJBF000066084,1112 LAKESIDE DRIVE,Egg Harbor,NJ,39.34886114,-74.59144758,RES1,3001,,16,NE,1969,1969,3101,1,1,2305.02469,2305.02469,3505,NO,14.94,27.26,3,0.08,6106,111.204566,121.473603,131.175245,137.41151,I,Above,Gable,0,5701,,21.10089257,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10965,NJBF000065571,1549 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34748601,-74.66100884,RES1,3001,,16,NE,1970,1970,3101,1,1,2195.693737,2195.693737,3507,NO,17.52,27.22,1,1.56,6112,110.202022,120.313646,130.139992,135.987252,I,Above,Gable,0,5701,,22.37050626,0,0,,,,1,1,,0.35,nav,1,1970,1,, 10966,NJBF000069556,290 ASBURY ROAD,Egg Harbor,NJ,39.361618,-74.6709625,REL1,3001,,NaN,ME,1969,0,3401,1,1,2604.895996,2604.895996,3507,NO,15.46,25.85,1,2.46,6112,109.922559,120.014846,129.854448,135.568599,I,Above,Gable,0,5701,,20.65433002,0,0,,,,1,1,,0.7,nav,1,1969,1,, 10967,NJBF000064313,139 WHARF ROAD,Egg Harbor,NJ,39.3441855,-74.6765085,RES1,3001,,16,NE,1929,1929,3102,1,1,657.5321381,657.5321381,3505,NO,20.42,33.53,3,4.97,6106,110.111343,120.125859,129.958333,135.715831,I,Above,Flat,0,5701,,26.97817437,0,1.2,,,,1,1,,0.03,nav,1,1929,1,, 10968,NJBF000063347,207 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34146965,-74.59789152,RES1,3001,,16,NE,1965,1965,3102,2,1,2301.037826,2301.037826,3507,NO,32.77,44.45,1,-0.33,6110,111.204397,121.44658,131.155972,137.386724,I,Above,Gable,0,5701,,38.6066659,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 10969,NJBF000063322,18 BEAVER DRIVE,Egg Harbor,NJ,39.34140267,-74.61229612,RES1,3001,,16,NE,1978,1978,3102,2,1,2043.752168,2043.752168,3505,NO,27.12,42.01,3,1.14,6112,110.941327,121.201456,130.928941,137.088732,I,Above,Gable,0,5701,,34.56419604,0,1.1,,,,1,1,,0.35,nav,1,1978,2,, 10970,NJBF000062520,280 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33961753,-74.61701037,RES1,3001,,16,NE,2005,2005,3102,2,1,3260.074042,3260.074042,3505,NO,24.96,35.28,3,3.66,6112,110.895785,121.142304,130.875644,137.017185,I,Above,Hip,0,5701,,30.11665146,0,0,,,,1,1,,0.35,nav,1,2005,2,, 10971,NJBF000051621,106 MORRIS AVENUE,Egg Harbor,NJ,39.30914984,-74.63690179,RES1,3001,,16,NE,1960,1960,3102,1,1,1830.023594,1830.023594,3505,NO,19.8,27.6,3,5.37,6106,111.159016,121.201917,130.898895,137.04949,I,Above,Hip,0,5701,,23.70182782,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 10972,NJBF000057760,131 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33112005,-74.64787464,RES1,3001,,16,NE,1982,1982,3102,2,1,3588.200246,3588.200246,3505,NO,27.12,32.68,3,1.96,6106,110.618787,120.736133,130.502139,136.502762,I,Above,Flat,0,5701,,29.89995157,0,0,,,,1,1,,0.03,nav,1,1982,2,, 10973,NJBF000073064,1185 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37711945,-74.71413702,RES1,3001,,16,NE,1990,1990,3102,1,1,3093.033627,3093.033627,3507,NO,13.7,28.17,1,2.02,6106,109.472214,119.377986,129.144275,134.447071,I,Above,Gable,0,5701,,20.93571314,0,0,,,,1,1,,0.03,nav,1,1990,1,, 10974,NJBF000074403,1133 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38625139,-74.71785218,IND2,3001,510,NaN,ME,1969,0,3401,3,1,6858.366894,6858.366894,3507,NO,36.52,46.35,1,0.44,6106,109.379069,119.262507,129.012919,134.234365,I,Above,Flat,0,NaN,,41.43646728,0,0,,,,1,1,,0.03,nav,1,1969,3,, 10975,NJBF000074408,1133 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38627749,-74.718251,IND2,3001,510,NaN,ME,1969,0,3401,2,1,2080.446227,2080.446227,3507,NO,33.34,44.07,1,-0.96,6106,109.376202,119.257842,129.007892,134.225869,I,Above,Gable,0,NaN,,38.70631455,0,0,,,,1,1,,0.03,nav,1,1969,2,, 10976,NJBF000076699,1079 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39444375,-74.71705233,RES1,3001,,16,NE,1971,1971,3102,2,1,2183.142779,2183.142779,3507,NO,33.57,45.78,1,0.35,6106,109.331789,119.206834,128.945583,134.127667,I,Above,Gable,0,5701,,39.6752426,0,0,,,,1,1,,0.03,nav,1,1971,2,, 10977,NJBF000063970,2 MAY DRIVE,Egg Harbor,NJ,39.34323064,-74.60975295,RES1,3001,,16,NE,1970,1970,3102,2,1,2090.510645,2090.510645,3505,NO,43.74,53.39,3,8.83,6112,110.951496,121.223646,130.948131,137.11457,I,Above,Gable,0,5701,,48.56169485,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 10978,NJBF000065772,21 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34805761,-74.59506269,RES1,3001,,16,NE,1987,1987,3101,1,1,2351.548028,2351.548028,3505,NO,15.06,20.19,3,-1.84,6106,111.144306,121.420424,131.126184,137.348325,I,Above,Gable,0,5701,,17.62499166,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 10979,NJBF000060729,398 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33646008,-74.63783023,RES1,3001,,16,NE,2011,2011,3101,1,1,1224.158096,1224.158096,3505,NO,19.6,31.36,3,3.16,6106,110.649407,120.831356,130.593947,136.631942,I,Above,Hip,0,5701,,25.47652838,0,0,,,,1,1,,0.03,nav,1,2011,1,, 10980,NJBF000063091,2 OTTER LANE,Egg Harbor,NJ,39.34087578,-74.61464067,RES1,3001,,16,NE,1985,1985,3102,2,1,2847.184081,2847.184081,3505,NO,32.76,42.7,3,-2.55,6110,110.9113,121.16774,130.898343,137.04782,I,Above,Gable,0,5701,,37.72821691,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 10981,NJBF000056733,1734 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32914131,-74.64035371,RES1,3001,,16,NE,1984,1984,3102,2,1,2723.301195,2723.301195,3505,NO,33.94,44.73,3,4.82,6106,110.749896,120.883022,130.634841,136.687516,I,Above,Gable,0,5701,,39.33339518,0,0,,,,1,1,,0.03,nav,1,1984,2,, 10982,NJBF000054553,56 SOMERS AVENUE,Egg Harbor,NJ,39.32371058,-74.64141537,RES1,3001,,16,NE,1988,1988,3102,1,1,2920.04658,2920.04658,3505,NO,16.7,29.43,3,-1.31,6106,110.834069,120.936878,130.676721,136.745193,I,Above,Gable,0,5701,,23.06502588,0,1.2,,,,1,1,,0.03,nav,1,1988,1,, 10983,NJBF000061566,15 GLEN AIRE DRIVE,Egg Harbor,NJ,39.33787128,-74.61499987,RES1,3001,,16,NE,2003,2003,3102,2,1,2996.300699,2996.300699,3505,NO,32.92,41.76,3,8.91,6112,110.962195,121.196986,130.926271,137.084573,I,Above,Hip,0,5701,,37.34113028,0,0,,,,1,1,,0.35,nav,1,2003,2,, 10984,NJBF000065916,20 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34843032,-74.59484063,RES1,3001,,16,NE,1969,1969,3101,1,1,2216.621379,2216.621379,3505,NO,18.69,32.25,3,5.49,6106,111.142408,121.420082,131.125481,137.347422,I,Above,Gable,0,5701,,25.47071518,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10985,NJBF000054691,43 SOMERS AVENUE,Egg Harbor,NJ,39.32407614,-74.64274183,RES1,3001,,16,NE,1955,1955,3102,1,1,1641.946591,1641.946591,3505,NO,19.32,28.08,3,5.12,6106,110.809844,120.910863,130.652959,136.712447,I,Above,Gable,0,5701,,23.6972724,0,0,,,,1,1,,0.03,nav,1,1955,1,, 10986,NJBF000066474,1500 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34985567,-74.67036533,RES1,3001,,16,NE,1840,1840,3102,2,1,799.2490649,799.2490649,3505,NO,30.4,40.65,3,4.11,6106,110.083395,120.133442,129.984747,135.757947,I,Above,Gable,0,5701,,35.5259342,0,1.2,,,,1,1,,0.03,nav,1,1840,2,, 10987,NJBF000061785,8 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33825444,-74.64148636,RES1,3001,,16,NE,1970,1970,3101,1,1,1210.159512,1210.159512,3505,NO,16.77,31.57,3,0.99,6110,110.569916,120.748655,130.520287,136.529603,I,Above,Flat,0,5701,,24.17092596,0,0,,,,1,1,,0.35,nav,1,1970,1,, 10988,NJBF000065823,1118 LAKESIDE DRIVE,Egg Harbor,NJ,39.34818745,-74.59201958,RES1,3001,,16,NE,1969,1969,3101,1,1,1713.875538,1713.875538,3505,NO,20.89,29.4,3,7.71,6106,111.204134,121.471282,131.173752,137.409621,I,Above,Gable,0,5701,,25.14742745,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 10989,NJBF000063466,6 BEAVER DRIVE,Egg Harbor,NJ,39.34180236,-74.61055225,RES1,3001,,16,NE,1979,1979,3102,1,1,2435.047397,2435.047397,3505,NO,14.74,25.72,3,-2.35,6106,110.964189,121.226509,130.951704,137.119058,I,Above,Flat,0,5701,,20.22521656,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 10990,NJBF000063306,1615 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34137353,-74.64912356,RES1,3001,,16,NE,1810,1810,3101,2,1,977.7391084,977.7391084,3507,NO,23.82,35.66,1,1.52,6112,110.424287,120.584118,130.374866,136.324898,I,Above,Hip,0,5701,,29.73645667,0,0,,,,1,1,,0.35,nav,1,1810,2,, 10991,NJBF000063365,8 BEAVER DRIVE,Egg Harbor,NJ,39.3415132,-74.61075755,RES1,3001,,16,NE,1978,1978,3102,2,1,2661.027333,2661.027333,3505,NO,35.05,49.89,3,7.08,6110,110.966006,121.226349,130.951728,137.119039,I,Above,Gable,0,5701,,42.46894942,0,0,,,,1,1,,0.03,nav,1,1978,2,, 10992,NJBF000067585,151 THOMPSONS LANE,Egg Harbor,NJ,39.35389261,-74.69934945,RES1,3001,,16,NE,1980,1980,3101,2,1,2640.293185,2640.293185,3507,NO,22.27,28.52,1,-0.07,6106,109.802316,119.748344,129.555483,135.099055,I,Above,Hip,0,5701,,25.39753261,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 10993,NJBF000066417,12 DINA DRIVE,Egg Harbor,NJ,39.34970539,-74.58602615,RES1,3001,,16,NE,1969,1969,3101,2,1,1668.828957,1668.828957,3505,NO,43.22,53.64,3,6.4,6112,111.304072,121.557592,131.253699,137.511583,I,Above,Hip,0,5701,,48.43207327,0,1.1,,,,1,1,,0.15,nav,1,1969,2,, 10994,NJBF000067422,58 ENGLISH LANE,Egg Harbor,NJ,39.3534165,-74.67700517,RES1,3001,,16,NE,1996,1996,3102,1,1,1153.369374,1153.369374,3505,NO,16.12,29.76,3,-0.23,6112,109.980064,119.997343,129.85721,135.567105,I,Above,Gable,0,5701,,22.93802342,0,0,,,,1,1,,0.15,nav,1,1996,1,, 10995,NJBF000069355,110 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1709,3102,2,1,2489.930205,2489.930205,3505,NO,38.92,47.46,3,1.93,6103,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,43.1898712,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 10996,NJBF000061392,171 ROBERT BEST ROAD,Egg Harbor,NJ,39.33755786,-74.64000838,RES1,3001,,16,NE,1950,1950,3101,1,1,1368.549561,1368.549561,3505,NO,15.64,27.58,3,-1.74,6106,110.601176,120.781709,130.549685,136.570553,I,Above,Gable,0,5701,,21.61056411,0,0,,,,1,1,,0.03,nav,1,1950,1,, 10997,NJBF000063440,1616 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34173476,-74.64872857,RES1,3001,,16,NE,1900,1900,3101,2,1,933.546054,933.546054,3507,NO,35.34,49.22,1,2.66,6112,110.422442,120.58611,130.376751,136.327715,I,Above,Hip,0,5701,,42.28214201,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 10998,NJBF000069679,298 CENTRAL AVENUE,Egg Harbor,NJ,39.3627943,-74.58051841,RES1,3001,,NaN,NE,1969,0,3101,1,1,1225.292193,1225.292193,3507,NO,16.26,23.49,1,2.92,6112,111.230766,121.510587,131.191041,137.429397,I,Above,Flat,0,5701,,19.87546162,0,0,,,,1,1,,0.35,nav,1,1969,1,, 10999,NJBF000063148,204 LAKEVIEW DRIVE,Egg Harbor,NJ,39.34098331,-74.61019398,RES1,3001,,16,NE,1978,1978,3102,2,1,2822.403249,2822.403249,3505,NO,24.16,36.4,3,-2.48,6106,110.985861,121.242101,130.966506,137.138551,I,Above,Gable,0,5701,,30.27819548,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 11000,NJBF000051502,,Egg Harbor,NJ,39.30769647,-74.63540795,RES1,3001,,NaN,NE,1950,0,3102,2,1,1634.065787,1634.065787,3505,NO,38.53,43.73,3,7.08,6106,111.206732,121.244958,130.937111,137.101044,I,Above,Gable,0,5701,,41.12697076,0,0,,,,1,1,,0.03,nav,1,1950,2,, 11001,NJBF000066057,2 BONNIE DRIVE,Egg Harbor,NJ,39.34880875,-74.59340015,RES1,3001,,16,NE,1969,1969,3101,1,1,2006.926854,2006.926854,3505,NO,19.46,32.76,3,6.23,6110,111.165304,121.440617,131.144319,137.371735,I,Above,Hip,0,5701,,26.11075898,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 11002,NJBF000063572,24 STONEY CREEK DRIVE,Egg Harbor,NJ,39.3420849,-74.59363198,RES1,3001,,16,NE,1987,1987,3102,2,1,2408.135711,2408.135711,3507,NO,23.96,34.55,1,2.85,6112,111.276871,121.512585,131.217549,137.466104,I,Above,Hip,0,5701,,29.25769778,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 11003,NJBF000064618,182 BLACKMAN ROAD,Egg Harbor,NJ,39.34491103,-74.59302009,RES1,3001,,16,NE,1970,1970,3102,2,1,1863.96728,1863.96728,3505,NO,30.42,43.77,3,6.79,6112,111.239848,121.490926,131.195174,137.437262,I,Above,Gable,0,5701,,37.09561841,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 11004,NJBF000067601,,Egg Harbor,NJ,39.35394238,-74.67343937,RES1,3001,,NaN,NE,1969,0,3102,2,1,1115.202907,1115.202907,3505,NO,35.16,46.72,3,1.71,6110,110.001583,120.033336,129.900328,135.632968,I,Above,Gable,0,5701,,40.93804103,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11005,NJBF000067536,,Egg Harbor,NJ,39.35375506,-74.67381487,RES1,3001,,NaN,NE,1969,0,3102,2,1,1038.943448,1038.943448,3505,NO,26.85,36.02,3,2.02,6110,110.001064,120.029351,129.897127,135.628,I,Above,Gable,0,5701,,31.43696084,0,0,,,,1,1,,0.15,nav,1,1969,2,, 11006,NJBF000072897,1201 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37552587,-74.71360967,COM1,3004,510,NaN,ME,1969,0,3401,2,1,9581.753699,9581.753699,3507,NO,25.25,39.95,1,1.06,6110,109.488744,119.397027,129.165895,134.481745,I,Above,Flat,0,NaN,,32.59574573,0,0,,,,1,1,,1,nav,1,1969,2,, 11007,NJBF000072933,1201 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37573599,-74.71299199,COM1,3004,510,NaN,ME,1969,0,3401,1,1,5114.855636,5114.855636,3507,NO,18.01,32.44,1,1.37,6110,109.491193,119.402117,129.171489,134.491206,I,Above,Flat,0,NaN,,25.22605457,0,0,,,,1,1,,1,nav,1,1969,1,, 11008,NJBF000072924,1201 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37566639,-74.71323218,COM1,3004,510,NaN,ME,1969,0,3401,2,1,8190.596273,8190.596273,3507,NO,31.05,41.04,1,1.14,6110,109.490147,119.400042,129.169207,134.487358,I,Above,Flat,0,NaN,,36.04644298,0,0,,,,1,1,,1,nav,1,1969,2,, 11009,NJBF000069861,3420 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36462895,-74.58078901,RES1,3001,,16,NE,1820,1820,3101,2,1,843.1989885,843.1989885,3507,NO,37.83,52.25,1,1.04,6112,111.200732,121.486517,131.164853,137.395892,I,Above,Gable,0,5701,,45.03685251,0,0,,,,1,1,,0.35,nav,1,1820,2,, 11010,NJBF000073864,1145 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38364286,-74.71599587,RES1,3001,,16,NE,1989,1989,3102,1,1,1676.286261,1676.286261,3507,NO,15.26,25.33,1,1.15,6110,109.409976,119.304168,129.059832,134.311242,I,Above,Hip,0,5701,,20.29582505,0,0,,,,1,1,,0.35,nav,1,1989,1,, 11011,NJBF000077319,1045 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39788657,-74.71693806,RES1,3001,,17,NE,2015,2015,3102,2,1,1374.703036,1374.703036,3507,NO,33.35,45.91,1,-0.46,6106,109.312679,119.181344,128.914732,134.078308,I,Above,Flat,0,5701,,39.62975628,0,0,,,,1,1,,0.03,nav,1,2015,2,, 11012,NJBF000062554,101 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.33969279,-74.64204854,RES1,3001,,16,NE,1950,1950,3101,1,1,1495.093721,1495.093721,3505,NO,10.8,24.51,3,-0.74,6106,110.536931,120.721533,130.496474,136.496591,I,Above,Hip,0,5701,,17.65194597,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11013,NJBF000065655,1123 FURMAN DRIVE,Egg Harbor,NJ,39.34772158,-74.59321492,RES1,3001,,16,NE,1969,1969,3101,1,1,1969.056294,1969.056294,3505,NO,18.39,26.55,3,4.5,6106,111.187586,121.455935,131.159798,137.391689,I,Above,Gable,0,5701,,22.47135158,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11014,NJBF000063022,105 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34071989,-74.61302018,RES1,3001,,16,NE,1975,1975,3102,2,1,2101.807978,2101.807978,3505,NO,31.47,41.76,3,4.16,6110,110.941781,121.197095,130.925304,137.083765,I,Above,Gable,0,5701,,36.61496261,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 11015,NJBF000063193,104 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34110221,-74.61271712,RES1,3001,,16,NE,1977,1977,3102,1,1,2713.423544,2713.423544,3505,NO,23.69,36.25,3,4.6,6110,110.93976,121.197796,130.92575,137.084428,I,Above,Hip,0,5701,,29.97193538,0,1.1,,,,1,1,,0.35,nav,1,1977,1,, 11016,NJBF000065728,1114 FURMAN DRIVE,Egg Harbor,NJ,39.34793332,-74.59366865,RES1,3001,,16,NE,1969,1969,3101,1,1,2030.786839,2030.786839,3505,NO,16.33,29.06,3,2.43,6106,111.174736,121.445771,131.150054,137.379134,I,Above,Gable,0,5701,,22.69364372,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11017,NJBF000065734,1114 FURMAN DRIVE,Egg Harbor,NJ,39.3479465,-74.593851,RES1,3001,,16,NE,1969,1969,3101,1,1,656.0495096,656.0495096,3505,NO,15.87,23.98,3,1.99,6106,111.170811,121.442498,131.146972,137.375161,I,Above,Gable,0,5701,,19.92779448,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11018,NJBF000062706,103 ANITA DRIVE,Egg Harbor,NJ,39.34005507,-74.59562301,RES1,3001,,16,NE,1970,1970,3102,2,1,2395.289689,2395.289689,3507,NO,34.1,48.6,1,2.99,6106,111.273664,121.501773,131.208499,137.454525,I,Above,Hip,0,5701,,41.35164787,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 11019,NJBF000070164,,Egg Harbor,NJ,39.36606262,-74.71157831,RES1,3001,,NaN,NE,1969,0,3101,1,1,4564.977548,4564.977548,3507,NO,19.11,26.68,1,1.23,6106,109.586616,119.500631,129.281455,134.665357,I,Above,Gable,0,5701,,22.89273717,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11020,NJBF000065784,16 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34808579,-74.59411125,RES1,3001,,16,NE,1969,1969,3101,1,1,1618.611451,1618.611451,3505,NO,16.72,26.31,3,0.18,6106,111.163128,121.436466,131.141176,137.367686,I,Above,Gable,0,5701,,21.51553928,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11021,NJBF000065891,159 BLACKMAN ROAD,Egg Harbor,NJ,39.34837053,-74.59049315,RES1,3001,,16,NE,1969,1969,3101,1,1,2728.649334,2728.649334,3505,NO,19.09,28.71,3,0.27,6110,111.232515,121.495497,131.196358,137.438608,I,Above,Gable,0,5701,,23.8961351,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 11022,NJBF000063029,149 BEVIS MILL ROAD,Egg Harbor,NJ,39.34074013,-74.64068504,RES1,3001,,16,NE,2011,2011,3101,2,1,1536.330217,1536.330217,3505,NO,33.78,48.04,3,2.4,6110,110.534775,120.731305,130.505314,136.509341,I,Above,Gable,0,5701,,40.90994886,0,0,,,,1,1,,0.35,nav,1,2011,2,, 11023,NJBF000061847,161 ROBERT BEST ROAD,Egg Harbor,NJ,39.33836292,-74.63894254,RES1,3001,,16,NE,1965,1965,3101,1,1,2423.576796,2423.576796,3505,NO,17.15,27.44,3,0.97,6106,110.600069,120.78936,130.556813,136.580716,I,Above,Gable,0,5701,,22.2947248,0,0,,,,1,1,,0.03,nav,1,1965,1,, 11024,NJBF000061729,20 OTTER LANE,Egg Harbor,NJ,39.33815815,-74.61228748,RES1,3001,,16,NE,1999,1999,3102,2,1,5376.22886,5376.22886,3505,NO,25.52,38.88,3,-2.3,6110,111.002677,121.239593,130.965378,137.136635,I,Above,Hip,0,5701,,32.19982812,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 11025,NJBF000054462,51 SOMERS AVENUE,Egg Harbor,NJ,39.32345962,-74.64207068,RES1,3001,,16,NE,1950,1950,3102,1,1,1986.572092,1986.572092,3505,NO,22.25,30.11,3,4.59,6106,110.829832,120.929704,130.669538,136.73532,I,Above,Gable,0,5701,,26.18157058,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11026,NJBF000067258,50 ENGLISH LANE,Egg Harbor,NJ,39.35279475,-74.67370124,RES1,3001,,16,NE,1995,1995,3102,2,1,551.1737495,551.1737495,3505,NO,21.09,32.82,3,-2.86,6112,110.014874,120.043009,129.908578,135.644786,I,Above,Gable,0,5701,,26.95414506,0,0,,,,1,1,,0.15,nav,1,1995,2,, 11027,NJBF000067281,50 ENGLISH LANE,Egg Harbor,NJ,39.35289115,-74.67422244,RES1,3001,,16,NE,1995,1995,3102,2,1,2927.86172,2927.86172,3505,NO,37.63,44.47,3,1.52,6112,110.009361,120.034875,129.900475,135.632565,I,Above,Hip,0,5701,,41.05157505,0,0,,,,1,1,,0.15,nav,1,1995,2,, 11028,NJBF000069838,7095 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1986,3102,2,1,3697.832863,3697.832863,3505,NO,34.71,48.33,3,3.47,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,41.51950724,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 11029,NJBF000062305,107 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.33918876,-74.64133795,RES1,3001,,15,NE,1950,1950,3101,1,1,1393.345352,1393.345352,3505,NO,26.57,37.15,3,7.83,6110,110.554818,120.739514,130.512404,136.518812,I,Above,Hip,0,5701,,31.85872898,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11030,NJBF000063314,165 WHARF ROAD,Egg Harbor,NJ,39.34139213,-74.67951372,RES1,3001,,16,NE,1980,1980,3102,2,1,1721.826857,1721.826857,3505,NO,36.6,50.06,3,-1.7,6106,110.12492,120.125199,129.945382,135.6955,I,Above,Gable,0,5701,,43.33023697,0,0,,,,1,1,,0.03,nav,1,1980,2,, 11031,NJBF000069762,1332 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36373303,-74.69954182,RES1,3001,,16,NE,2009,2009,3101,1,1,2272.69031,2272.69031,3507,NO,15.15,21.74,1,-0.5,6112,109.69368,119.653093,129.456498,134.947219,I,Above,Gable,0,5701,,18.44699948,0,0,,,,1,1,,0.15,nav,1,2009,1,, 11032,NJBF000069764,1332 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36376565,-74.69913456,RES1,3001,,16,NE,2009,2009,3101,1,1,626.8766514,626.8766514,3507,NO,17.46,25.32,1,-0.11,6110,109.696211,119.657305,129.461394,134.955087,I,Above,Flat,0,5701,,21.38969259,0,0,,,,1,1,,0.15,nav,1,2009,1,, 11033,NJBF000067143,176 THOMPSONS LANE,Egg Harbor,NJ,39.35227481,-74.70438754,IND2,3002,510,NaN,ME,1969,0,3401,1,1,4478.964104,4478.964104,3507,NO,17.77,30.85,1,2.66,6106,109.783103,119.71056,129.505828,135.019723,I,Above,Flat,0,5701,,24.31191234,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11034,NJBF000061768,101 LAUTOKA DRIVE,Egg Harbor,NJ,39.33822463,-74.6403434,RES1,3001,,16,NE,1990,1990,3101,2,1,1563.884209,1563.884209,3505,NO,37.35,51.21,3,7.66,6110,110.58478,120.767894,130.537524,136.553731,I,Above,Gable,0,5701,,44.2805821,0,0,,,,1,1,,0.35,nav,1,1990,2,, 11035,NJBF000062654,113 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33992509,-74.61156303,RES1,3001,,16,NE,1975,1975,3102,2,1,1934.337804,1934.337804,3505,NO,43.82,56.27,3,5.44,6110,110.981863,121.231141,130.956944,137.125703,I,Above,Gable,0,5701,,50.04466557,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 11036,NJBF000066447,1105 FURMAN DRIVE,Egg Harbor,NJ,39.34977532,-74.59139485,RES1,3001,,16,NE,1969,1969,3101,2,1,1268.510811,1268.510811,3505,NO,19.68,31.42,3,-2.58,6112,111.190384,121.464353,131.165566,137.399044,I,Above,Hip,0,5701,,25.54837446,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 11037,NJBF000066383,1105 FURMAN DRIVE,Egg Harbor,NJ,39.34962445,-74.59132539,RES1,3001,,16,NE,1969,1969,3101,2,1,771.3854561,771.3854561,3505,NO,37.34,47.97,3,5.47,6112,111.194353,121.467233,131.168441,137.402741,I,Above,Hip,0,5701,,42.65470561,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 11038,NJBF000075397,2 SHIPS DRIVE,Egg Harbor,NJ,39.38971593,-74.71727188,RES1,3001,,16,NE,1969,1969,3102,2,1,1006.777034,1006.777034,3507,NO,31.78,37.72,1,2.29,6110,109.359754,119.241467,128.987305,134.194156,I,Above,Gable,0,5701,,34.75296761,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11039,NJBF000062996,35 VELLA LA VELLA LANE,Egg Harbor,NJ,39.34065719,-74.64170542,RES1,3001,,16,NE,2006,2006,3101,1,1,2976.463299,2976.463299,3505,NO,17.54,24.23,3,1.78,6106,110.523732,120.715389,130.491155,136.489416,I,Above,Gable,0,5701,,20.88291964,0,0,,,,1,1,,0.03,nav,1,2006,1,, 11040,NJBF000053455,1779 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.320001,-74.6375465,RES1,3001,,15,NE,1955,1955,3102,1,1,1123.260458,1123.260458,3505,NO,20.69,34.51,3,6.38,6106,110.954137,121.047704,130.774462,136.879159,I,Above,Gable,0,5701,,27.60237771,0,0,,,,1,1,,0.03,nav,1,1955,1,, 11041,NJBF000061755,166 ROBERT BEST ROAD,Egg Harbor,NJ,39.3381904,-74.63811168,RES1,3001,,16,NE,1999,1999,3101,2,1,5414.752095,5414.752095,3505,NO,31.18,43.47,3,7.58,6106,110.613947,120.805268,130.571043,136.600508,I,Above,Hip,0,5701,,37.32626619,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 11042,NJBF000065425,171 BLACKMAN ROAD,Egg Harbor,NJ,39.34703831,-74.59172076,RES1,3001,,16,NE,1969,1969,3101,1,1,2293.138301,2293.138301,3505,NO,13.22,24.25,3,-1.92,6106,111.229733,121.489287,131.191796,137.432837,I,Above,Hip,0,5701,,18.7322379,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11043,NJBF000064856,179 BLACKMAN ROAD,Egg Harbor,NJ,39.34548844,-74.59316288,RES1,3001,,15,NE,1850,1850,3102,2,1,1997.480576,1997.480576,3505,NO,25.52,31.04,3,1.85,6112,111.226996,121.481944,131.18626,137.425786,I,Above,Gable,0,5701,,28.2782921,0,0,,,,1,1,,0.35,nav,1,1850,2,, 11044,NJBF000062063,16 OTTER LANE,Egg Harbor,NJ,39.33873522,-74.61314845,RES1,3001,,16,NE,1996,1996,3102,2,1,3817.060034,3817.060034,3505,NO,33.63,46.03,3,5.91,6112,110.97709,121.218181,130.945493,137.110303,I,Above,Hip,0,5701,,39.83126283,0,0,,,,1,1,,0.03,nav,1,1996,2,, 11045,NJBF000065666,1119 LAKESIDE DRIVE,Egg Harbor,NJ,39.34776152,-74.59177598,RES1,3001,,16,NE,1969,1969,3101,1,1,2482.716887,2482.716887,3505,NO,18.93,29.68,3,4.32,6106,111.21633,121.480229,131.182586,137.420983,I,Above,Gable,0,5701,,24.30682791,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11046,NJBF000070938,1245 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36892576,-74.70805463,RES1,3001,,16,NE,1914,1914,3101,1,1,1765.793719,1765.793719,3507,NO,18.58,25.56,1,-0.11,6112,109.584143,119.51408,129.29807,134.694478,I,Above,Gable,0,5701,,22.07052266,0,0,,,,1,1,,0.35,nav,1,1914,1,, 11047,NJBF000070815,1245 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.368533,-74.7084875,RES1,3001,,16,NE,1914,1914,3101,1,1,827.3003995,827.3003995,3507,NO,13.82,23.96,1,0.23,6112,109.584794,119.512701,129.296431,134.691517,I,Above,Gable,0,5701,,18.88848441,0,0,,,,1,1,,0.35,nav,1,1914,1,, 11048,NJBF000074197,209 EAST PLAZA PLACE,Egg Harbor,NJ,39.38533999,-74.5114655,RES1,3001,,16,NE,1985,1985,3102,1,1,980.9916042,980.9916042,3505,NO,20.05,28.72,3,4.25,6106,112.54715,122.478062,132.144577,138.47647,I,Above,Flat,0,5701,,24.38458053,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 11049,NJBF000052052,5 POINT DRIVE,Egg Harbor,NJ,39.31266398,-74.57956793,RES1,3001,,16,NE,2015,2015,3102,3,1,1421.833931,1421.833931,3507,NO,34.54,42.66,1,0.01,6106,112.070072,122.104393,131.778532,138.173301,I,Above,Gable,0,5701,,38.60129902,0,0,,,,1,1,,0.03,nav,1,2015,3,, 11050,NJBF000052082,3 POINT DRIVE,Egg Harbor,NJ,39.31281936,-74.57954361,RES1,3001,,16,NE,1959,1959,3102,1,1,1922.657824,1922.657824,3507,NO,15.9,30.11,1,0.46,6106,112.067814,122.102894,131.777223,138.171675,I,Above,Gable,0,5701,,23.00592949,0,0,,,,1,1,,0.03,nav,1,1959,1,, 11051,NJBF000074498,7009 BLACK HORSE PIKE,Egg Harbor,NJ,39.38671224,-74.51683863,RES1,3001,,NaN,NE,1925,0,3102,2,1,2330.600999,2330.600999,3505,NO,43.58,52.11,3,5.18,6106,112.414758,122.368624,132.02789,138.349578,I,Above,Gable,0,5701,,47.84552903,0,0,,,,1,1,,0.03,nav,1,1925,2,, 11052,NJBF000074260,205 FLORENCE AVENUE,Egg Harbor,NJ,39.38563449,-74.51522647,RES1,3001,,16,NE,1925,1925,3102,2,1,3168.753869,3168.753869,3505,NO,27.03,33.17,3,-2.04,6106,112.460776,122.408432,132.070668,138.398416,I,Above,Hip,0,5701,,30.09889673,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 11053,NJBF000052211,103 ANCHORAGE DRIVE,Egg Harbor,NJ,39.31343367,-74.57964035,RES1,3001,,16,NE,1966,1966,3102,1,1,1647.125188,1647.125188,3507,NO,10.18,21.8,1,-0.34,6106,112.055151,122.093695,131.768832,138.161313,I,Above,Flat,0,5701,,15.9873488,0,0,,,,1,1,,0.03,nav,1,1966,1,, 11054,NJBF000074617,201 FRANKFORT COURT,Egg Harbor,NJ,39.38720918,-74.51817535,RES1,3001,,16,NE,1925,1925,3102,2,1,1228.111109,1228.111109,3505,NO,38.91,46.29,3,4.8,6106,112.380448,122.339839,131.997133,138.315414,I,Above,Gable,0,5701,,42.5999702,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 11055,NJBF000074395,203 GENOA AVENUE,Egg Harbor,NJ,39.38622243,-74.51684114,RES1,3001,,16,NE,1925,1925,3102,2,1,2099.736282,2099.736282,3505,NO,26.71,41.06,3,-0.93,6106,112.419314,122.373729,132.033608,138.35738,I,Above,Hip,0,5701,,33.88310396,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 11056,NJBF000074333,207 PALERMO AVENUE,Egg Harbor,NJ,39.38594123,-74.51596223,RES1,3001,,16,NE,1925,1925,3102,2,1,1134.561913,1134.561913,3505,NO,31.6,43.45,3,0.31,6106,112.441504,122.392202,132.053315,138.379098,I,Above,Hip,0,5701,,37.52583489,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 11057,NJBF000074373,204 PALERMO AVENUE,Egg Harbor,NJ,39.38611727,-74.51524241,RES1,3001,,16,NE,1912,1912,3102,1,1,2341.848769,2341.848769,3505,NO,22.88,32.48,3,7.72,6106,112.455839,122.403075,132.064705,138.39037,I,Above,Hip,0,5701,,27.68243202,0,1.1,,,,1,1,,0.03,nav,1,1912,1,, 11058,NJBF000082549,303 S MILL ROAD,Egg Harbor,NJ,39.43082746,-74.51759689,RES1,3001,,16,NE,2010,2010,3102,2,1,1592.025624,1592.025624,3505,NO,36.5,50.94,3,8.95,6110,112.073086,121.899915,131.499018,137.632945,I,Above,Gable,0,5701,,43.72056274,0,1.1,,,,1,1,,0.35,nav,1,2010,2,, 11059,NJBF000082273,60 ABLES RUN DRIVE,Egg Harbor,NJ,39.42854097,-74.52436216,RES1,3001,,37,NE,2006,2006,3102,2,1,5887.260575,5887.260575,3505,NO,33.88,46.91,3,6.55,6112,111.947769,121.806283,131.397255,137.535568,I,Above,Hip,0,5701,,40.39643274,0,0,,,,1,1,,0.03,nav,1,2006,2,, 11060,NJBF000081947,510 S MILL ROAD,Egg Harbor,NJ,39.42477435,-74.52176314,RES1,3001,,17,NE,1950,1950,3102,2,1,895.5727826,895.5727826,3505,NO,21.88,29.97,3,-0.67,6112,112.022832,121.889645,131.489489,137.646548,I,Above,Gable,0,5701,,25.92412987,0,0,,,,1,1,,0.35,nav,1,1950,2,, 11061,NJBF000081989,504 S MILL ROAD,Egg Harbor,NJ,39.42518367,-74.52161661,RES1,3001,,17,NE,1940,1940,3102,1,1,1453.838657,1453.838657,3505,NO,18.53,29.39,3,4.59,6106,112.023427,121.887986,131.487526,137.642937,I,Above,Hip,0,5701,,23.9610132,0,0,,,,1,1,,0.03,nav,1,1940,1,, 11062,NJBF000081994,119 HOLLY ROAD,Egg Harbor,NJ,39.42521571,-74.51881959,RES1,3001,,16,NE,1930,1930,3102,1,1,2565.916045,2565.916045,3505,NO,13.79,28.06,3,1.47,6112,112.081058,121.936177,131.540044,137.697536,I,Above,Hip,0,5701,,20.92601436,0,0,,,,1,1,,0.35,nav,1,1930,1,, 11063,NJBF000074418,7015 BLACK HORSE PIKE,Egg Harbor,NJ,39.38633213,-74.51573808,RES1,3001,,NaN,NE,1925,0,3102,2,1,1406.776993,1406.776993,3505,NO,34.01,39.26,3,0.25,6106,112.442788,122.392054,132.052912,138.377224,I,Above,Hip,0,5701,,36.63509961,0,0,,,,1,1,,0.03,nav,1,1925,2,, 11064,NJBF000074413,208 TOULON AVENUE,Egg Harbor,NJ,39.38630423,-74.51707876,RES1,3001,,16,NE,1925,1925,3102,2,1,2370.607349,2370.607349,3505,NO,28.27,37.51,3,3.13,6106,112.413252,122.368667,132.028204,138.351401,I,Above,Gable,0,5701,,32.88929263,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 11065,NJBF000074452,208 TOULON AVENUE,Egg Harbor,NJ,39.3864845,-74.51699685,RES1,3001,,16,NE,1925,1925,3102,2,1,2267.31338,2267.31338,3505,NO,27.75,35.38,3,5.27,6106,112.413375,122.368216,132.027608,138.350113,I,Above,Gable,0,5701,,31.56329062,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 11066,NJBF000073362,8014 BLACK HORSE PIKE,Egg Harbor,NJ,39.38010272,-74.49324497,COM1,3003,280,NaN,ME,1969,0,3401,1,1,4069.516619,4069.516619,3507,NO,17.33,24.12,1,2.31,6106,113.003783,122.857751,132.550723,138.908887,I,Above,Flat,0,NaN,,20.72517717,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11067,NJBF000073368,8014 BLACK HORSE PIKE,Egg Harbor,NJ,39.38017695,-74.49295018,COM1,3003,280,NaN,ME,1969,0,3401,2,1,2111.300186,2111.300186,3507,NO,37.86,43.65,1,-0.15,6106,113.009541,122.862241,132.55552,138.913228,I,Above,Flat,0,NaN,,40.75593291,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11068,NJBF000073344,8014 BLACK HORSE PIKE,Egg Harbor,NJ,39.37996091,-74.49285703,COM1,3003,280,NaN,ME,1969,0,3401,2,1,3260.36576,3260.36576,3507,NO,32.05,46.39,1,1.41,6106,113.013852,122.866198,132.559779,138.918441,I,Above,Flat,0,NaN,,39.21725897,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11069,NJBF000073089,8037 BLACK HORSE PIKE,Egg Harbor,NJ,39.37747502,-74.48922361,COM1,3003,530,NaN,ME,1969,0,3401,1,1,13856.30552,13856.30552,3507,NO,14.13,23.55,1,-0.96,6106,113.120515,122.95766,132.657873,139.026134,I,Above,Flat,0,NaN,,18.83964478,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11070,NJBF000082330,76 W DELRAY LANE,Egg Harbor,NJ,39.42902676,-74.52763763,RES1,3001,,37,NE,2007,2007,3102,2,1,3718.310716,3718.310716,3505,NO,30.18,37.39,3,1.84,6112,111.878244,121.744924,131.330107,137.462956,I,Above,Hip,0,5701,,33.7840268,0,0,,,,1,1,,0.35,nav,1,2007,2,, 11071,NJBF000074476,208 FRANKFORT COURT,Egg Harbor,NJ,39.38662128,-74.51778143,RES1,3001,,16,NE,1925,1925,3102,1,1,631.0997731,631.0997731,3505,NO,15.87,27.42,3,3.63,6106,112.394678,122.352953,132.01139,138.332556,I,Above,Gable,0,5701,,21.6431821,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 11072,NJBF000074106,206 ATHENS AVENUE,Egg Harbor,NJ,39.38492434,-74.50886827,RES3C,3001,,16,E,1945,1945,3303,1,1,784.7972039,784.7972039,3507,NO,13.16,19.33,1,-0.16,6106,112.608828,122.52847,132.19828,138.533523,I,Above,Gable,0,NaN,,16.24285721,0,1.2,,,,1,1,,0.03,nav,1,1945,1,, 11073,NJBF000074071,1500 BAY DRIVE,Egg Harbor,NJ,39.38473223,-74.50899683,RES3C,3001,,16,E,1962,1962,3303,1,1,2271.793926,2271.793926,3507,NO,16.84,23.84,1,-0.44,6106,112.607832,122.528206,132.198088,138.534104,I,Above,Gable,0,NaN,,20.34031593,0,0,,,,1,1,,0.03,nav,1,1962,1,, 11074,NJBF000074163,212 EAST PLAZA PLACE,Egg Harbor,NJ,39.38517253,-74.51101189,RES1,3001,,16,NE,1951,1951,3102,1,1,1172.720391,1172.720391,3505,NO,18.66,33.2,3,6.58,6106,112.558819,122.487844,132.155038,138.487951,I,Above,Gable,0,5701,,25.93239225,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 11075,NJBF000074363,205 PALERMO AVENUE,Egg Harbor,NJ,39.38608014,-74.51590573,RES1,3001,,16,NE,1925,1925,3102,2,1,1254.011236,1254.011236,3505,NO,36.65,43.46,3,7,6106,112.441434,122.391732,132.05273,138.37797,I,Above,Flat,0,5701,,40.05280215,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 11076,NJBF000074345,202 GENOA AVENUE,Egg Harbor,NJ,39.38599876,-74.51630651,RES1,3001,,16,NE,1928,1928,3102,2,1,2046.375924,2046.375924,3505,NO,29.6,44.57,3,4.83,6106,112.433287,122.3855,132.046192,138.371413,I,Above,Gable,0,5701,,37.08620944,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 11077,NJBF000073201,,Egg Harbor,NJ,39.37888379,-74.49000353,COM1,3003,,NaN,ME,1969,0,3401,1,1,11293.99442,11293.99442,3507,NO,18.21,28.2,1,1.36,6106,113.088285,122.928702,132.6268,138.989004,I,Above,Flat,0,NaN,,23.20578214,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11078,NJBF000074304,203 FLORENCE AVENUE,Egg Harbor,NJ,39.38583188,-74.51505236,RES1,3001,,16,NE,1922,1922,3102,2,1,1833.966889,1833.966889,3505,NO,38.83,51.08,3,5.99,6106,112.462762,122.409426,132.0716,138.398648,I,Above,Hip,0,5701,,44.9533772,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 11079,NJBF000074294,205 FLORENCE AVENUE,Egg Harbor,NJ,39.38578894,-74.51522732,RES1,3001,,16,NE,1925,1925,3102,2,1,676.8143793,676.8143793,3505,NO,45.27,55.08,3,7.89,6106,112.459281,122.406786,132.068832,138.395915,I,Above,Hip,0,5701,,50.17895277,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 11080,NJBF000074489,209 FRANKFORT COURT,Egg Harbor,NJ,39.38666519,-74.51853555,RES1,3001,,16,NE,1927,1927,3102,1,1,2462.306725,2462.306725,3505,NO,18.92,24,3,3.12,6106,112.377487,122.339174,131.996807,138.317023,I,Above,Gable,0,5701,,21.45764046,0,1.1,,,,1,1,,0.03,nav,1,1927,1,, 11081,NJBF000074309,206 PALERMO AVENUE,Egg Harbor,NJ,39.38584569,-74.51547816,RES1,3001,,16,NE,1970,1957,3102,1,1,1340.907648,1340.907648,3505,NO,21.21,35.98,3,6.14,6106,112.453161,122.401751,132.063472,138.390092,I,Above,Gable,0,5701,,28.59091274,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 11082,NJBF000074353,,Egg Harbor,NJ,39.38604144,-74.51025538,RES1,3001,,NaN,NE,1951,0,3102,2,1,1425.77082,1425.77082,3505,NO,40.4,54,3,3.89,6106,112.567274,122.492119,132.159135,138.488735,I,Above,Gable,0,5701,,47.19845409,0,0,,,,1,1,,0.03,nav,1,1951,2,, 11083,NJBF000082143,MADISON SQ,Egg Harbor,NJ,39.42698175,-74.52509791,COM1,3001,,NaN,ME,1969,0,3401,3,1,2911.092108,2911.092108,3507,NO,51.38,62.41,1,1.08,6112,111.941405,121.809466,131.401255,137.545677,I,Above,Hip,0,NaN,,56.89601997,0,0,,,,1,1,,0.7,nav,1,1969,3,, 11084,NJBF000082443,14 DELRAY LANE,Egg Harbor,NJ,39.4300141,-74.52481686,RES1,3001,,37,NE,2006,2006,3102,2,1,5770.203773,5770.203773,3505,NO,39.23,53.64,3,5.43,6112,111.930365,121.783432,131.371874,137.503259,I,Above,Hip,0,5701,,46.43449885,0,0,,,,1,1,,0.35,nav,1,2006,2,, 11085,NJBF000082430,26 DELRAY LANE,Egg Harbor,NJ,39.42982453,-74.52414371,RES1,3001,,37,NE,2006,2006,3102,2,1,5923.558736,5923.558736,3505,NO,41.07,52.05,3,4.98,6112,111.945115,121.796957,131.386701,137.51957,I,Above,Hip,0,5701,,46.55970194,0,0,,,,1,1,,0.35,nav,1,2006,2,, 11086,NJBF000074329,,Egg Harbor,NJ,39.3859245,-74.50737833,COM1,3003,,NaN,ME,1969,0,3401,2,1,1652.895302,1652.895302,3507,NO,37.15,46,1,1.55,6106,112.632177,122.544358,132.214717,138.546275,I,Above,Flat,0,NaN,,41.57530056,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11087,NJBF000074743,,Egg Harbor,NJ,39.38762237,-74.51832917,COM1,3003,,NaN,ME,1969,0,3401,1,1,1107.569605,1107.569605,3507,NO,17.7,29.42,1,2.05,6106,112.373206,122.332797,131.989405,138.305784,I,Above,Flat,0,NaN,,23.55896184,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11088,NJBF000082354,4 ABLES RUN DRIVE,Egg Harbor,NJ,39.42922998,-74.52746308,RES1,3001,,37,NE,2008,2008,3102,2,1,7520.253165,7520.253165,3505,NO,29.56,40.33,3,8.49,6112,111.880719,121.745871,131.331073,137.463215,I,Above,Gable,0,5701,,34.94660786,0,0,,,,1,1,,0.35,nav,1,2008,2,, 11089,NJBF000061764,11 GLEN AIRE DRIVE,Egg Harbor,NJ,39.33821123,-74.61569259,RES1,3001,,16,NE,2003,2003,3102,2,1,3796.798334,3796.798334,3505,NO,31.38,37.35,3,-2,6112,110.944218,121.181222,130.911717,137.065205,I,Above,Flat,0,5701,,34.36406323,0,0,,,,1,1,,0.35,nav,1,2003,2,, 11090,NJBF000081860,139 SUMMIT AVENUE,Egg Harbor,NJ,39.42384467,-74.52793946,COM1,3001,,NaN,ME,1969,0,3401,1,1,3137.060922,3137.060922,3507,NO,18.15,27.66,1,0.59,6112,111.900614,121.792378,131.384014,137.539088,I,Above,Flat,0,NaN,,22.90406054,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11091,NJBF000062246,13 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33907944,-74.64181752,RES1,3001,,15,NE,1950,1950,3101,1,1,582.5419206,582.5419206,3505,NO,10.38,23.23,3,-1.13,6110,110.550867,120.732938,130.506497,136.51049,I,Above,Gable,0,5701,,16.80442441,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11092,NJBF000066013,152 BLACKMAN ROAD,Egg Harbor,NJ,39.34869169,-74.58955431,RES1,3001,,16,NE,1969,1969,3101,1,1,1658.401024,1658.401024,3505,NO,17.8,28.12,3,1.19,6112,111.246643,121.508079,131.207899,137.453351,I,Above,Gable,0,5701,,22.96165669,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 11093,NJBF000062757,105 KATHYS LANE,Egg Harbor,NJ,39.34016,-74.6508005,IND2,3001,999,NaN,ME,1969,0,3401,1,1,4275.357305,4275.357305,3507,NO,13.28,26.71,1,0.25,6106,110.42657,120.571986,130.363454,136.308197,I,Above,Flat,0,NaN,,19.99464004,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11094,NJBF000062754,105 KATHYS LANE,Egg Harbor,NJ,39.34015196,-74.65027594,IND2,3001,999,NaN,ME,1969,0,3401,2,1,10753.85911,10753.85911,3507,NO,39.1,46.2,1,2.98,6106,110.432557,120.580638,130.371158,136.319198,I,Above,Flat,0,NaN,,42.65206213,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11095,NJBF000061836,15 OTTER LANE,Egg Harbor,NJ,39.3383449,-74.61378551,RES1,3001,,16,NE,1999,1999,3102,2,1,2094.415428,2094.415428,3505,NO,34.54,44.26,3,4.74,6112,110.973633,121.211956,130.939894,137.102795,I,Above,Gable,0,5701,,39.39984803,0,0,,,,1,1,,0.35,nav,1,1999,2,, 11096,NJBF000075192,1113 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38902225,-74.71793213,RES1,3001,,16,NE,1997,1997,3102,2,1,3256.836463,3256.836463,3507,NO,38.19,50.69,1,2.77,6110,109.359833,119.23954,128.985941,134.19117,I,Above,Gable,0,5701,,44.43841076,0,1.1,,,,1,1,,0.35,nav,1,1997,2,, 11097,NJBF000073423,1165 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38061376,-74.71679376,RES1,3001,959,NaN,NE,1969,0,3102,2,1,1729.565127,1729.565127,3507,NO,27.02,38.9,1,1.35,6110,109.427022,119.319837,129.078787,134.340461,I,Above,Hip,0,5701,,32.95956669,0,0,,,,1,1,,1,nav,1,1969,2,, 11098,NJBF000073438,1165 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38072451,-74.71672359,RES1,3001,959,NaN,NE,1969,0,3102,2,1,3918.035615,3918.035615,3507,NO,27.23,35.82,1,1.4,6110,109.426652,119.319706,129.078588,134.34022,I,Above,Flat,0,5701,,31.52804364,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11099,NJBF000073555,1155 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38156942,-74.71691573,RES1,3001,,16,NE,1928,1928,3102,2,1,717.4665135,717.4665135,3507,NO,36.5,51.2,1,0.16,6110,109.419013,119.310697,129.068294,134.323647,I,Above,Gable,0,5701,,43.84915957,0,0,,,,1,1,,0.35,nav,1,1928,2,, 11100,NJBF000063484,22 BEAVER DRIVE,Egg Harbor,NJ,39.34184945,-74.61268702,RES1,3001,,16,NE,1986,1986,3102,2,1,1907.674396,1907.674396,3505,NO,41.11,48.15,3,4.57,6112,110.926165,121.189632,130.917846,137.074039,I,Above,Gable,0,5701,,44.63313582,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 11101,NJBF000063033,4047 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34074817,-74.60084323,RES1,3001,,16,NE,1950,1950,3102,1,1,2246.158613,2246.158613,3507,NO,17.63,28.32,1,-0.05,6112,111.16104,121.404387,131.116963,137.336077,I,Above,Gable,0,5701,,22.97580857,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11102,NJBF000062907,104 ANITA DRIVE,Egg Harbor,NJ,39.34046544,-74.5952992,RES1,3001,,16,NE,1970,1970,3102,2,1,2926.041341,2926.041341,3507,NO,21.34,34.17,1,0.18,6110,111.272685,121.502596,131.209068,137.455249,I,Above,Gable,0,5701,,27.75560404,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 11103,NJBF000061678,324 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,NaN,NE,1993,0,3102,2,1,1899.644178,1899.644178,3505,NO,40.01,47.63,3,2.2,6106,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,43.81851053,0,0,,,,1,1,,0.03,nav,1,1993,2,, 11104,NJBF000057037,324 STEELMANVILLE ROAD,Egg Harbor,NJ,39.32978243,-74.62585716,AGR1,3001,,NaN,NE,1969,0,3401,2,1,2505.398034,2505.398034,3507,NO,26.07,36.85,1,2.58,6106,110.942866,121.113076,130.847586,136.978062,I,Above,Gable,0,NaN,,31.46084667,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11105,NJBF000064253,1587 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.344015,-74.654012,RES1,3001,,16,NE,2006,2006,3101,2,1,1055.93852,1055.93852,3507,NO,28.59,40.46,1,0.07,6110,110.326747,120.471108,130.276179,136.184186,I,Above,Gable,0,5701,,34.52298098,0,0,,,,1,1,,0.35,nav,1,2006,2,, 11106,NJBF000062568,3 W.LAKEVIEW DRIVE,Egg Harbor,NJ,39.33973375,-74.61104694,RES1,3001,,16,NE,1978,1978,3102,2,1,2199.332128,2199.332128,3505,NO,31.3,36.35,3,6.61,6112,110.994412,121.242147,130.967154,137.139218,I,Above,Gable,0,5701,,33.82536718,0,0,,,,1,1,,0.35,nav,1,1978,2,, 11107,NJBF000062428,282 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33944663,-74.61754121,RES1,3001,,16,NE,1993,1993,3102,1,1,2463.956332,2463.956332,3505,NO,11.55,18.78,3,-0.38,6110,110.890344,121.135326,130.869332,137.008684,I,Above,Gable,0,5701,,15.16604707,0,0,,,,1,1,,0.35,nav,1,1993,1,, 11108,NJBF000077877,1030 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40140234,-74.71278354,RES1,3001,,NaN,NE,1969,0,3102,2,1,5798.613708,5798.613708,3507,NO,32.44,43.41,1,2.97,6106,109.322681,119.202032,128.930779,134.109666,I,Above,Flat,0,5701,,37.92758461,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11109,NJBF000077778,1030 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40083454,-74.71173147,RES1,3001,,NaN,NE,1969,0,3102,2,1,4746.769587,4746.769587,3507,NO,23.24,28.48,1,-0.53,6112,109.332977,119.218608,128.948538,134.139539,I,Above,Flat,0,5701,,25.85744119,0,0,,,,1,1,,1,nav,1,1969,2,, 11110,NJBF000056605,7 PROSPECT AVENUE,Egg Harbor,NJ,39.3288552,-74.64907538,RES1,3001,,15,NE,1920,1920,3102,1,1,895.7033405,895.7033405,3505,NO,25.75,34.24,3,7.31,6112,110.644064,120.746945,130.508388,136.511347,I,Above,Gable,0,5701,,29.99439927,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11111,NJBF000061001,1645 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33688308,-74.64544119,RES1,3001,,NaN,NE,1830,0,3101,1,1,958.3298127,958.3298127,3505,NO,20.58,29.03,3,4.26,6106,110.54608,120.700946,130.476666,136.46794,I,Above,Gable,0,5701,,24.80885384,0,0,,,,1,1,,0.03,nav,1,1830,1,, 11112,NJBF000061092,1647 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33704334,-74.64509331,RES1,3001,,15,NE,1830,1830,3101,2,2,1195.19922,1195.19922,3505,NO,34.01,39.2,3,1.97,6106,110.547429,120.704601,130.480074,136.472781,I,Above,Hip,0,5701,,36.6036367,0,0,,,,1,1,,0.03,nav,1,1830,2,, 11113,NJBF000062406,106 HOLLYWOOD DRIVE,Egg Harbor,NJ,39.33939089,-74.64085768,RES1,3001,,15,NE,1940,1940,3101,1,1,990.1807516,990.1807516,3505,NO,15.66,30.36,3,2.06,6110,110.557122,120.744967,130.517323,136.52577,I,Above,Gable,0,5701,,23.01047397,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11114,NJBF000065353,15 CARANN LANE,Egg Harbor,NJ,39.34681847,-74.58822565,RES1,3001,,16,NE,1980,1980,3101,1,1,2764.30483,2764.30483,3505,NO,22.87,30.69,3,7.16,6106,111.305408,121.551909,131.251088,137.508657,I,Above,Gable,0,5701,,26.78369156,0,1.1,,,,1,1,,0.03,nav,1,1980,1,, 11115,NJBF000056737,9 PROSPECT AVENUE,Egg Harbor,NJ,39.32914327,-74.64916761,RES1,3001,,16,NE,1995,1995,3102,2,1,2906.479601,2906.479601,3505,NO,29.68,42.12,3,2.08,6112,110.637857,120.741652,130.503981,136.505178,I,Above,Gable,0,5701,,35.89862345,0,0,,,,1,1,,0.35,nav,1,1995,2,, 11116,NJBF000066377,14 DINA DRIVE,Egg Harbor,NJ,39.34960601,-74.58574191,RES1,3001,,16,NE,1969,1969,3101,2,1,1416.769971,1416.769971,3505,NO,28.64,40.08,3,7.15,6112,111.311679,121.563588,131.259489,137.518949,I,Above,Gable,0,5701,,34.35734454,0,1.1,,,,1,1,,0.15,nav,1,1969,2,, 11117,NJBF000071008,1235 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3691225,-74.711939,RES1,3001,,15,NE,1900,1900,3101,2,2,1312.968177,1312.968177,3507,NO,33.93,39,1,2.21,6106,109.555653,119.469776,129.247669,134.612033,I,Above,Flat,0,5701,,36.46638899,0,0,,,,1,1,,0.03,nav,1,1900,2,, 11118,NJBF000062070,7 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33874557,-74.64048253,RES1,3001,,16,NE,1920,1920,3101,2,1,1076.504125,1076.504125,3505,NO,27.94,41.53,3,3.56,6110,110.573536,120.759131,130.529831,136.543109,I,Above,Gable,0,5701,,34.73624089,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 11119,NJBF000065827,23 BROOKSIDE DRIVE,Egg Harbor,NJ,39.3481952,-74.59536582,RES1,3001,,16,NE,1970,1970,3101,1,1,1982.737574,1982.737574,3505,NO,17.38,25.58,3,6.62,6106,111.13582,121.413689,131.119744,137.34,I,Above,Hip,0,5701,,21.4812557,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 11120,NJBF000065747,1111 JORENE DRIVE,Egg Harbor,NJ,39.34798235,-74.58730353,RES1,3001,,16,NE,1969,1969,3101,2,1,2286.198586,2286.198586,3505,NO,37.41,43.73,3,6.04,6106,111.305301,121.554756,131.252718,137.510588,I,Above,Hip,0,5701,,40.56743569,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 11121,NJBF000065627,10 CARANN LANE,Egg Harbor,NJ,39.3476538,-74.58862173,RES1,3001,,16,NE,1969,1969,3101,2,1,1644.117651,1644.117651,3505,NO,43.37,54.94,3,5.77,6110,111.283264,121.535719,131.235015,137.488076,I,Above,Hip,0,5701,,49.1594841,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 11122,NJBF000063219,16 BEAVER DRIVE,Egg Harbor,NJ,39.34115299,-74.61220823,RES1,3001,,16,NE,1986,1986,3102,1,1,2322.220612,2322.220612,3505,NO,21.65,34.53,3,5.27,6112,110.947564,121.205857,130.933115,137.094242,I,Above,Gable,0,5701,,28.09221941,0,1.1,,,,1,1,,0.35,nav,1,1986,1,, 11123,NJBF000052925,1791 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31781743,-74.6354791,RES1,3001,,NaN,NE,1969,0,3102,2,1,999.5484289,999.5484289,3505,NO,32.57,43.36,3,0.95,6106,111.02298,121.109619,130.82908,136.953483,I,Above,Flat,0,5701,,37.96255061,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11124,NJBF000052907,1795 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31773244,-74.63521953,RES1,3001,,15,NE,1950,1950,3102,1,1,877.0848271,877.0848271,3505,NO,24.47,35.08,3,7.63,6106,111.028223,121.114896,130.833932,136.960051,I,Above,Hip,0,5701,,29.77527304,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11125,NJBF000069620,304 CENTRAL AVENUE,Egg Harbor,NJ,39.36217543,-74.57943383,RES1,3001,,16,NE,1920,1920,3101,1,1,973.1196458,973.1196458,3507,NO,21.37,32.95,1,2.83,6112,111.263355,121.535845,131.216246,137.461264,I,Above,Gable,0,5701,,27.16051194,0,1.2,,,,1,1,,0.35,nav,1,1920,1,, 11126,NJBF000063808,138 BEVIS MILL ROAD,Egg Harbor,NJ,39.34275019,-74.64305793,RES1,3001,,16,NE,1900,1900,3101,2,1,926.5741611,926.5741611,3505,NO,42.59,49.35,3,6.35,6106,110.469791,120.667473,130.448668,136.430234,I,Above,Gable,0,5701,,45.97122266,0,0,,,,1,1,,0.03,nav,1,1900,2,, 11127,NJBF000055943,17 SOMERS AVENUE,Egg Harbor,NJ,39.32734665,-74.64537147,RES1,3001,,16,NE,1989,1989,3102,1,1,960.413027,960.413027,3505,NO,23.09,31.98,3,4.38,6112,110.717095,120.825763,130.579121,136.610132,I,Above,Gable,0,5701,,27.53760315,0,0,,,,1,1,,0.35,nav,1,1989,1,, 11128,NJBF000056231,16 SOMERS AVENUE,Egg Harbor,NJ,39.3280107,-74.64491545,RES1,3001,,16,NE,1975,1975,3102,1,1,2082.97819,2082.97819,3505,NO,18.7,28.84,3,0.94,6106,110.711047,120.824305,130.578863,136.609796,I,Above,Gable,0,5701,,23.77108896,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 11129,NJBF000065129,206 THOMAS DRIVE,Egg Harbor,NJ,39.34619772,-74.59393797,RES1,3001,,16,NE,1991,1991,3102,2,1,1813.830371,1813.830371,3505,NO,33.11,41.67,3,-0.74,6106,111.199107,121.46062,131.165623,137.399212,I,Above,Gable,0,5701,,37.39028441,0,0,,,,1,1,,0.03,nav,1,1991,2,, 11130,NJBF000063906,105 NANCY DRIVE,Egg Harbor,NJ,39.34304203,-74.59195646,RES1,3001,,16,NE,1969,1969,3102,2,1,2279.874715,2279.874715,3507,NO,29.89,35.74,1,1.49,6106,111.293606,121.530442,131.233754,137.486841,I,Above,Hip,0,5701,,32.81828154,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 11131,NJBF000070233,3412 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36634355,-74.5812741,RES1,3001,,16,NE,1914,1914,3101,1,1,3834.657416,3834.657416,3507,NO,18.72,32.06,1,0.81,6103,111.168123,121.460154,131.136515,137.359712,I,Above,Gable,0,5701,,25.38565476,0,0,,,,1,1,,0.03,nav,1,1914,1,, 11132,NJBF000075493,3 SHIPS DRIVE,Egg Harbor,NJ,39.39005478,-74.71794184,RES1,3001,,16,NE,1975,1975,3102,2,1,1556.980816,1556.980816,3507,NO,41.49,48.5,1,2.56,6106,109.353023,119.231249,128.976133,134.17547,I,Above,Gable,0,5701,,44.99347875,0,0,,,,1,1,,0.03,nav,1,1975,2,, 11133,NJBF000062954,27 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34057134,-74.59341593,RES1,3001,,16,NE,1996,1996,3102,2,1,2984.810066,2984.810066,3507,NO,39.7,47.52,1,2.23,6106,111.307761,121.533677,131.23827,137.492759,I,Above,Gable,0,5701,,43.60828536,0,0,,,,1,1,,0.03,nav,1,1996,2,, 11134,NJBF000066891,168 THOMPSONS LANE,Egg Harbor,NJ,39.35118639,-74.70245702,RES1,3001,,16,NE,1982,1982,3101,2,1,2230.253061,2230.253061,3507,NO,24.52,38.36,1,1.91,6110,109.810345,119.742954,129.541454,135.075745,I,Above,Flat,0,5701,,31.4389208,0,0,,,,1,1,,0.35,nav,1,1982,2,, 11135,NJBF000075995,1097 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39187308,-74.71737036,RES1,3001,219,16,NE,1950,1950,3102,1,1,2492.051647,2492.051647,3507,NO,21.57,34.57,1,2.52,6106,109.345333,119.223367,128.965898,134.1598,I,Above,Hip,0,5701,,28.06629563,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 11136,NJBF000074404,1136 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38626699,-74.7155085,RES1,3001,,16,NE,1992,1992,3102,1,1,1283.111091,1283.111091,3507,NO,12.89,26.19,1,0.7,6112,109.394753,119.288656,129.040929,134.281774,I,Above,Hip,0,5701,,19.53577257,0,0,,,,1,1,,0.35,nav,1,1992,1,, 11137,NJBF000073081,1188 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37738325,-74.71260694,RES1,3001,,NaN,NE,1975,0,3102,2,1,1353.587358,1353.587358,3507,NO,39.02,45.72,1,2.43,6112,109.480419,119.392798,129.160513,134.474323,I,Above,Gable,0,5701,,42.36782138,0,0,,,,1,1,,0.35,nav,1,1975,2,, 11138,NJBF000063078,106 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34084812,-74.61251318,RES1,3001,,16,NE,1974,1974,3102,1,1,2701.122051,2701.122051,3505,NO,22.47,35.1,3,5.32,6110,110.948063,121.204221,130.931775,137.092404,I,Above,Hip,0,5701,,28.78372295,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 11139,NJBF000062322,114 LAUTOKA DRIVE,Egg Harbor,NJ,39.33922297,-74.63833854,RES1,3001,,16,NE,1975,1975,3101,1,1,1268.039996,1268.039996,3505,NO,21.75,30.74,3,4.57,6110,110.592054,120.788812,130.556488,136.580502,I,Above,Gable,0,5701,,26.24445544,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11140,NJBF000062267,114 LAUTOKA DRIVE,Egg Harbor,NJ,39.33911737,-74.63856563,RES1,3001,,16,NE,1975,1975,3101,1,1,893.7184887,893.7184887,3505,NO,13.19,24.94,3,-2.69,6106,110.591086,120.786341,130.554262,136.577365,I,Above,Hip,0,5701,,19.06175724,0,0,,,,1,1,,0.03,nav,1,1975,1,, 11141,NJBF000052713,1810 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.31874396,-74.63239768,RES1,3001,999,NaN,NE,1969,0,3101,1,1,1218.048632,1218.048632,3505,NO,18.51,27.68,3,-0.47,6106,111.05048,121.147098,130.866284,137.003519,I,Above,Hip,0,5701,,23.09878788,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11142,NJBF000066169,6 BONNIE DRIVE,Egg Harbor,NJ,39.34910207,-74.59404939,RES1,3001,,16,NE,1971,1971,3101,2,1,1271.816403,1271.816403,3505,NO,24.36,39.08,3,-2.16,6110,111.147051,121.426201,131.130494,137.353905,I,Above,Gable,0,5701,,31.72135505,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 11143,NJBF000075898,211 HARBOR DRIVE,Egg Harbor,NJ,39.39155001,-74.72007139,RES1,3001,,16,NE,1970,1970,3102,1,1,2009.732936,2009.732936,3507,NO,12.43,20.24,1,0.24,6106,109.329047,119.195528,128.936856,134.109877,I,Above,Gable,0,5701,,16.3349307,0,0,,,,1,1,,0.03,nav,1,1970,1,, 11144,NJBF000072075,1219 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37251299,-74.71177281,RES1,3001,,16,NE,1996,1996,3101,2,1,1821.51378,1821.51378,3507,NO,30.11,40.87,1,1.15,6112,109.526672,119.442566,129.217306,134.564516,I,Above,Hip,0,5701,,35.49405128,0,0,,,,1,1,,0.35,nav,1,1996,2,, 11145,NJBF000067243,8047 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35271458,-74.66993233,RES1,3001,,16,NE,1995,1995,3102,2,1,3870.907133,3870.907133,3505,NO,31.08,44.63,3,2.26,6112,110.046817,120.10408,129.961078,135.723987,I,Above,Flat,0,5701,,37.85925216,0,0,,,,1,1,,0.35,nav,1,1995,2,, 11146,NJBF000062495,106 KATHYS LANE,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1997,3101,1,1,2357.24851,2357.24851,3505,NO,19.58,30.38,3,4.76,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,24.97787112,0,1.2,,,,1,1,,0.03,nav,1,1979,1,, 11147,NJBF000065803,1479 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3481554,-74.67228819,RES1,3001,,16,NE,1987,1987,3102,2,1,2170.9087,2170.9087,3505,NO,31.64,39.09,3,4.84,6106,110.091188,120.128209,129.975783,135.743661,I,Above,Hip,0,5701,,35.36337233,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 11148,NJBF000065881,1479 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34834552,-74.67205059,RES1,3001,,16,NE,1987,1987,3102,2,1,551.3133411,551.3133411,3505,NO,39.29,48.07,3,8.35,6106,110.090499,120.128968,129.977083,135.745701,I,Above,Gable,0,5701,,43.67844136,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 11149,NJBF000054861,41 SOMERS AVENUE,Egg Harbor,NJ,39.32450064,-74.64297935,RES1,3001,,16,NE,1958,1958,3102,1,1,1784.558344,1784.558344,3505,NO,23.62,36.01,3,4.8,6106,110.799079,120.901471,130.644912,136.701328,I,Above,Gable,0,5701,,29.81326766,0,0,,,,1,1,,0.03,nav,1,1958,1,, 11150,NJBF000077654,1031 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.4001455,-74.71669049,RES1,3001,,16,NE,1975,1975,3102,2,1,1607.663933,1607.663933,3507,NO,37.13,48.55,1,1.89,6106,109.302031,119.16669,128.896569,134.049428,I,Above,Gable,0,5701,,42.84128412,0,0,,,,1,1,,0.03,nav,1,1975,2,, 11151,NJBF000059315,107 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.33399173,-74.64440023,RES1,3001,,16,NE,1930,1930,3102,2,1,646.8685252,646.8685252,3505,NO,30.27,37.18,3,1.7,6106,110.610457,120.75482,130.522886,136.532286,I,Above,Gable,0,5701,,33.72534504,0,0,,,,1,1,,0.03,nav,1,1930,2,, 11152,NJBF000053671,76 SOMERS AVENUE,Egg Harbor,NJ,39.32083943,-74.63901793,RES1,3001,,16,NE,2001,2001,3102,2,1,3572.407579,3572.407579,3505,NO,29.31,40.52,3,5.04,6106,110.91853,121.013081,130.743285,136.836599,I,Above,Hip,0,5701,,34.91355698,0,0,,,,1,1,,0.03,nav,1,2001,2,, 11153,NJBF000055958,1748 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32736631,-74.63842395,RES1,3001,,16,NE,2006,2006,3102,2,1,1973.228583,1973.228583,3505,NO,44.59,54.42,3,6.67,6106,110.808034,120.937296,130.682753,136.753477,I,Above,Gable,0,5701,,49.50772892,0,0,,,,1,1,,0.03,nav,1,2006,2,, 11154,NJBF000069323,105 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1950,3102,1,2,536.5546891,536.5546891,3505,NO,16.28,24.55,3,0.46,6106,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,20.41852859,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 11155,NJBF000069278,105 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1950,3102,1,2,1622.122005,1622.122005,3505,NO,24.99,30.4,3,6.09,6106,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,27.6933691,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 11156,NJBF000069270,105 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1950,3102,1,2,1554.93227,1554.93227,3505,NO,16.64,25.85,3,2.04,6106,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,21.24411739,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 11157,NJBF000069320,105 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1950,3102,1,2,2006.050666,2006.050666,3505,NO,25.65,39.75,3,8.69,6106,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,32.69746178,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 11158,NJBF000062196,18 VELLA LA VELLA LANE,Egg Harbor,NJ,39.33897266,-74.64263093,RES1,3001,,16,NE,1996,1996,3101,1,1,1726.874335,1726.874335,3505,NO,27.23,36.71,3,8.47,6110,110.542783,120.720828,130.495639,136.495204,I,Above,Flat,0,5701,,31.9695549,0,0,,,,1,1,,0.35,nav,1,1996,1,, 11159,NJBF000063555,4030 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34204177,-74.60112778,RES1,3001,,NaN,NE,1925,0,3102,2,1,1856.689318,1856.689318,3507,NO,23.8,32.18,1,-0.18,6110,111.132139,121.384601,131.097769,137.311162,I,Above,Hip,0,5701,,27.98822806,0,0,,,,1,1,,0.03,nav,1,1925,2,, 11160,NJBF000056387,144 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32836582,-74.64701705,RES1,3001,,16,NE,2016,2016,3102,2,1,1924.12246,1924.12246,3505,NO,39.61,46.31,3,5.12,6106,110.678176,120.786089,130.543939,136.561108,I,Above,Gable,0,5701,,42.95747447,0,0,,,,1,1,,0.03,nav,1,2016,2,, 11161,NJBF000056333,144 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.328235,-74.6471585,RES1,3001,,16,NE,2016,2016,3102,2,1,1735.783182,1735.783182,3505,NO,42.79,52.57,3,5.44,6106,110.678726,120.785561,130.543222,136.5601,I,Above,Gable,0,5701,,47.68371116,0,0,,,,1,1,,0.03,nav,1,2016,2,, 11162,NJBF000075692,201 HARBOR DRIVE,Egg Harbor,NJ,39.39075849,-74.718626,RES1,3001,,16,NE,1994,1994,3102,2,1,1351.57915,1351.57915,3507,NO,37.51,48.63,1,0.65,6106,109.343871,119.218004,128.961406,134.151048,I,Above,Gable,0,5701,,43.07294784,0,0,,,,1,1,,0.03,nav,1,1994,2,, 11163,NJBF000066371,132 BEVIS MILL ROAD,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1960,3101,1,1,1945.77342,1945.77342,3505,NO,17.64,26.81,3,2.98,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,22.22563959,0,0,,,,1,1,,0.35,nav,1,1981,1,, 11164,NJBF000066942,8056 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35138197,-74.66922579,RES1,3001,,16,NE,1985,1985,3102,2,1,2849.349819,2849.349819,3505,NO,31.4,44.56,3,-0.94,6106,110.071386,120.131668,129.984648,135.758623,I,Above,Gable,0,5701,,37.98220439,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 11165,NJBF000066906,8056 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35123415,-74.66877212,RES1,3001,,16,NE,1985,1985,3102,2,1,535.483596,535.483596,3505,NO,29.87,35.91,3,7.14,6110,110.077318,120.140868,129.992456,135.770245,I,Above,Gable,0,5701,,32.88969716,0,1.2,,,,1,1,,0.15,nav,1,1985,2,, 11166,NJBF000067017,100 BLACKMAN ROAD,Egg Harbor,NJ,39.35170803,-74.58397917,AGR1,3001,739,NaN,NE,1969,0,3401,2,1,580.6368883,580.6368883,3507,NO,25.99,36.69,1,0.13,6106,111.315814,121.570739,131.264017,137.524297,I,Above,Flat,0,NaN,,31.33882411,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11167,NJBF000066949,100 BLACKMAN ROAD,Egg Harbor,NJ,39.35142489,-74.58409865,AGR1,3001,739,NaN,NE,1969,0,3401,1,1,1743.715118,1743.715118,3507,NO,13.14,20.42,1,-0.69,6106,111.317685,121.571789,131.265333,137.52602,I,Above,Flat,0,NaN,,16.78077544,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11168,NJBF000067064,100 BLACKMAN ROAD,Egg Harbor,NJ,39.35191202,-74.58391934,AGR1,3001,739,NaN,NE,1969,0,3401,1,1,1870.108932,1870.108932,3507,NO,16.61,30.56,1,0.9,6106,111.313907,121.569526,131.262633,137.522503,I,Above,Flat,0,NaN,,23.58530976,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11169,NJBF000051465,128 WATERWAY AVENUE,Egg Harbor,NJ,39.30724252,-74.63560367,RES1,3001,,16,NE,1950,1950,3102,1,1,1130.207998,1130.207998,3505,NO,12.89,21.48,3,-0.47,6106,111.211994,121.247898,130.938859,137.103536,I,Above,Gable,0,5701,,17.18673961,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11170,NJBF000057244,1727 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33021668,-74.64166888,RES1,3001,,16,NE,1930,1930,3102,1,1,1325.935372,1325.935372,3505,NO,23.48,28.83,3,8.95,6106,110.713153,120.847789,130.603714,136.644489,I,Above,Gable,0,5701,,26.15708104,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 11171,NJBF000064175,108 NANCY DRIVE,Egg Harbor,NJ,39.34378673,-74.59236467,RES1,3001,,16,NE,1975,1975,3102,2,1,2190.042902,2190.042902,3505,NO,30.38,38.03,3,-0.25,6110,111.272479,121.514932,131.21862,137.467405,I,Above,Gable,0,5701,,34.20549439,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 11172,NJBF000061734,102 LAUTOKA DRIVE,Egg Harbor,NJ,39.33816764,-74.63951449,RES1,3001,,16,NE,1970,1970,3101,1,1,2503.658315,2503.658315,3505,NO,12.14,20.87,3,1.22,6106,110.596336,120.782312,130.550438,136.571764,I,Above,Gable,0,5701,,16.50449625,0,0,,,,1,1,,0.03,nav,1,1970,1,, 11173,NJBF000065419,13 CARANN LANE,Egg Harbor,NJ,39.34700814,-74.58848849,RES1,3001,,16,NE,1975,1975,3101,1,1,2498.958338,2498.958338,3505,NO,20.13,34.88,3,5.08,6106,111.296808,121.545264,131.244633,137.50041,I,Above,Gable,0,5701,,27.50249066,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 11174,NJBF000061573,17 GLEN AIRE DRIVE,Egg Harbor,NJ,39.33788306,-74.61469455,RES1,3001,,16,NE,2003,2003,3102,2,1,2663.378813,2663.378813,3505,NO,33.79,46.17,3,-0.45,6112,110.967069,121.202011,130.930883,137.090723,I,Above,Hip,0,5701,,39.98012474,0,0,,,,1,1,,0.03,nav,1,2003,2,, 11175,NJBF000063585,103 PERRY LANE,Egg Harbor,NJ,39.34211312,-74.65173534,RES1,3001,,16,NE,2003,2003,3101,2,1,4120.114885,4120.114885,3507,NO,32.42,38.98,1,0.02,6106,110.382884,120.532116,130.329168,136.259759,I,Above,Hip,0,5701,,35.70166247,0,0,,,,1,1,,0.03,nav,1,2003,2,, 11176,NJBF000065055,,Egg Harbor,NJ,39.34602133,-74.684612,RES1,3001,,NaN,NE,1969,0,3102,2,1,2919.490768,2919.490768,3505,NO,31.37,45.15,3,-2.09,6106,110.016647,120.000929,129.829207,135.520913,I,Above,Flat,0,5701,,38.25859224,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11177,NJBF000062114,5002 OCEAN HTS AVENUE,Egg Harbor,NJ,39.33881864,-74.59823119,COM8,3001,999,NaN,ME,1969,0,3401,1,1,3143.758128,3143.758128,3507,NO,12.92,21.97,1,-0.28,6106,111.24558,121.47143,131.180564,137.418498,I,Above,Flat,0,NaN,,17.44377895,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11178,NJBF000067104,169 THOMPSONS LANE,Egg Harbor,NJ,39.3521155,-74.7025675,RES1,3001,,16,NE,1940,1940,3101,2,1,849.0174324,849.0174324,3507,NO,27.69,38.04,1,0.84,6110,109.798673,119.731932,129.530976,135.05953,I,Above,Flat,0,5701,,32.86464742,0,1.1,,,,1,1,,0.15,nav,1,1940,2,, 11179,NJBF000073098,1186 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.377577,-74.7126002,RES1,3001,,16,NE,1975,1975,3102,1,1,1411.231299,1411.231299,3507,NO,13.6,22.66,1,0.93,6112,109.478913,119.391285,129.158749,134.471551,I,Above,Gable,0,5701,,18.12698028,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11180,NJBF000059944,1700 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3351275,-74.64273724,COM3,3001,219,NaN,ME,1969,0,3401,1,1,7203.058961,7203.058961,3507,NO,13.41,20.69,1,0.54,6106,110.610796,120.76742,130.535351,136.549958,I,Above,Flat,0,5701,,17.05381653,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11181,NJBF000056314,1738 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32819808,-74.64010524,RES1,3001,,NaN,NE,1969,0,3102,2,1,4420.87315,4420.87315,3505,NO,45.3,55.94,3,7.76,6106,110.770325,120.899274,130.648636,136.706514,I,Above,Gable,0,5701,,50.61920124,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11182,NJBF000061049,389 STEELMANVILLE ROAD,Egg Harbor,NJ,39.33696749,-74.63615367,RES1,3001,,16,NE,1974,1974,3101,1,1,1811.12469,1811.12469,3505,NO,14.04,20.02,3,-2.11,6106,110.662209,120.852832,130.613502,136.659193,I,Above,Gable,0,5701,,17.02849763,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 11183,NJBF000066050,1105 JORENE DRIVE,Egg Harbor,NJ,39.34876475,-74.58667392,RES1,3001,,16,NE,1969,1969,3101,2,1,1468.38334,1468.38334,3505,NO,30.12,38.74,3,6.22,6106,111.305668,121.556876,131.253971,137.512071,I,Above,Gable,0,5701,,34.43146369,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 11184,NJBF000067190,8050 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35250747,-74.66910449,RES1,3001,,16,NE,1994,1994,3102,1,1,2302.753727,2302.753727,3505,NO,14.45,20.52,3,0.75,6112,110.05658,120.120151,129.974642,135.744253,I,Above,Gable,0,5701,,17.48142248,0,0,,,,1,1,,0.35,nav,1,1994,1,, 11185,NJBF000065565,7 CARANN LANE,Egg Harbor,NJ,39.347476,-74.5893595,RES1,3001,,16,NE,1971,1971,3101,2,1,607.1342805,607.1342805,3505,NO,38.1,43.97,3,1.25,6110,111.27093,121.525004,131.225058,137.475386,I,Above,Gable,0,5701,,41.03823292,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 11186,NJBF000051580,110 MORRIS AVENUE,Egg Harbor,NJ,39.30861581,-74.6361943,RES1,3001,,16,NE,1950,1950,3102,1,1,1548.154281,1548.154281,3505,NO,20.03,33.41,3,2.48,6106,111.178814,121.220243,130.915365,137.0717,I,Above,Gable,0,5701,,26.71846626,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11187,NJBF000068004,8029 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35531107,-74.66958416,RES1,3001,,16,NE,1985,1985,3102,2,1,1430.979614,1430.979614,3505,NO,39.79,47.45,3,6.97,6106,110.014124,120.08369,129.938883,135.692163,I,Above,Gable,0,5701,,43.62056574,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 11188,NJBF000065725,163 BLACKMAN ROAD,Egg Harbor,NJ,39.34792925,-74.5908911,RES1,3001,,16,NE,1969,1969,3101,1,1,2012.66028,2012.66028,3505,NO,13.51,18.85,3,-2.89,6110,111.231712,121.493586,131.194995,137.43689,I,Above,Gable,0,5701,,16.18131567,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 11189,NJBF000063487,8 OSPREY COURT,Egg Harbor,NJ,39.34185617,-74.6079179,RES1,3001,,16,NE,1995,1995,3102,2,1,3078.427413,3078.427413,3505,NO,26.81,35.08,3,-0.58,6112,111.010015,121.270766,130.992409,137.172945,I,Above,Hip,0,5701,,30.94197686,0,0,,,,1,1,,0.35,nav,1,1995,2,, 11190,NJBF000058998,1711 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3333285,-74.644364,RES1,3001,,NaN,NE,1969,0,3102,2,1,1129.523091,1129.523091,3505,NO,43.73,50.6,3,8.37,6106,110.622784,120.763932,130.530491,136.542826,I,Above,Gable,0,5701,,47.16317494,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11191,NJBF000064531,127 WHARF ROAD,Egg Harbor,NJ,39.34472223,-74.67342538,RES1,3001,,16,NE,1972,1972,3102,1,1,1727.861642,1727.861642,3505,NO,15.46,22.56,3,1.91,6110,110.130792,120.160216,129.995375,135.771563,I,Above,Gable,0,5701,,19.01008883,0,1.2,,,,1,1,,0.35,nav,1,1972,1,, 11192,NJBF000066281,1104 MARLOU AVENUE,Egg Harbor,NJ,39.34936,-74.5884905,RES1,3001,,16,NE,1969,1969,3101,1,1,716.3940251,716.3940251,3505,NO,14.89,22.05,3,3.9,6112,111.257799,121.518948,131.217475,137.465519,I,Above,Gable,0,5701,,18.46906394,0,1.2,,,,1,1,,0.35,nav,1,1969,1,, 11193,NJBF000063423,1 DORATO DRIVE,Egg Harbor,NJ,39.34166975,-74.60073288,RES1,3001,,16,NE,1987,1987,3102,2,1,3383.870833,3383.870833,3507,NO,35.86,48.18,1,2.89,6112,111.146383,121.395638,131.108279,137.324827,I,Above,Gable,0,5701,,42.01513725,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 11194,NJBF000052891,219 JEFFERS LANDING ROAD,Egg Harbor,NJ,39.32151783,-74.64972133,RES1,3001,,15,NE,1925,1935,3102,1,1,1207.682225,1207.682225,3505,YES,10.31,20.39,3,-2.9,6102,110.765075,120.834942,130.575881,136.605861,I,Above,Gable,0,5701,,15.34876832,0,0,,,,1,1,,0.03,nav,1,1925,1,, 11195,NJBF000067203,177 THOMPSONS LANE,Egg Harbor,NJ,39.3525465,-74.704084,IND2,3002,,16,ME,2002,2002,3401,1,1,12792.33979,12792.33979,3507,NO,16.43,27.09,1,0.19,6106,109.782267,119.711011,129.507126,135.021891,I,Above,Flat,0,5701,,21.76125176,0,0,,,,1,1,,0.03,nav,1,2002,1,, 11196,NJBF000067351,177 THOMPSONS LANE,Egg Harbor,NJ,39.35319758,-74.7034983,IND2,3002,,16,ME,2002,2002,3401,2,1,799.0096439,799.0096439,3507,NO,24.07,32.51,1,1.96,6106,109.77921,119.710595,129.508393,135.024169,I,Above,Flat,0,5701,,28.29015757,0,0,,,,1,1,,0.03,nav,1,2002,2,, 11197,NJBF000067279,177 THOMPSONS LANE,Egg Harbor,NJ,39.352883,-74.703189,IND2,3002,,16,ME,2002,2002,3401,2,1,14775.27703,14775.27703,3507,NO,24.88,37.52,1,-0.94,6110,109.785134,119.717197,129.515454,135.035245,I,Above,Flat,0,5701,,31.20377837,0,0,,,,1,1,,1,nav,1,2002,2,, 11198,NJBF000067326,177 THOMPSONS LANE,Egg Harbor,NJ,39.352883,-74.703189,IND2,3002,,16,ME,2002,2002,3401,1,1,812.6472179,812.6472179,3507,NO,20.16,27.78,1,1.32,6106,109.785134,119.717197,129.515454,135.035245,I,Above,Flat,0,5701,,23.97000567,0,0,,,,1,1,,0.03,nav,1,2002,1,, 11199,NJBF000072957,1191 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37597746,-74.71678868,RES1,3001,,16,NE,1950,1950,3102,2,1,2697.531126,2697.531126,3507,NO,33.65,46.01,1,0.97,6106,109.463553,119.358245,129.122674,134.410135,I,Above,Gable,0,5701,,39.82720017,0,0,,,,1,1,,0.03,nav,1,1950,2,, 11200,NJBF000077619,1033 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39988,-74.7168035,RES1,3001,,16,NE,1977,1977,3102,2,1,1236.346735,1236.346735,3507,NO,25.5,38.24,1,2.46,6106,109.302675,119.167453,128.897722,134.051133,I,Above,Gable,0,5701,,31.87349241,0,0,,,,1,1,,0.03,nav,1,1977,2,, 11201,NJBF000065625,13 JODEL LANE,Egg Harbor,NJ,39.34763998,-74.58769866,RES1,3001,,16,NE,1969,1969,3101,1,1,1710.600429,1710.600429,3505,NO,23.03,30.91,3,3.53,6106,111.302703,121.551774,131.250216,137.507447,I,Above,Gable,0,5701,,26.96763511,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11202,NJBF000077890,1023 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40147149,-74.71645799,RES1,3001,,16,NE,1805,1805,3102,2,1,818.2734131,818.2734131,3507,NO,28.39,37.9,1,0.54,6106,109.296643,119.159119,128.886942,134.034237,I,Above,Gable,0,5701,,33.1444995,0,0,,,,1,1,,0.03,nav,1,1805,2,, 11203,NJBF000077926,1023 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.40169942,-74.71640855,RES1,3001,,16,NE,1805,1805,3102,2,1,2800.601842,2800.601842,3507,NO,33.78,41.66,1,2.38,6106,109.295799,119.157923,128.885392,134.031806,I,Above,Gable,0,5701,,37.72070128,0,0,,,,1,1,,0.03,nav,1,1805,2,, 11204,NJBF000064442,9 MICHAL DRIVE,Egg Harbor,NJ,39.3444966,-74.63857056,RES1,3001,,16,NE,1976,1976,3101,1,1,1800.938389,1800.938389,3505,NO,18.23,30.44,3,2.25,6112,110.492433,120.721571,130.495798,136.497349,I,Above,Gable,0,5701,,24.33771017,0,1.1,,,,1,1,,0.35,nav,1,1976,1,, 11205,NJBF000073058,3310 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37708273,-74.57943374,RES1,3001,,16,NE,1970,1970,3102,2,1,1511.811411,1511.811411,3507,NO,29.77,35.15,1,1.95,6112,111.093379,121.381043,131.038066,137.232862,I,Above,Gable,0,5701,,32.46242952,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 11206,NJBF000073052,3310 BARGAINTOWN ROAD,Egg Harbor,NJ,39.3769835,-74.57953133,RES1,3001,,16,NE,1970,1970,3102,2,1,501.6209781,501.6209781,3507,NO,37.55,45.66,1,-0.07,6112,111.09209,121.38039,131.037664,137.232387,I,Above,Gable,0,5701,,41.60237278,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 11207,NJBF000062852,112 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34035869,-74.61172802,RES1,3001,,16,NE,1978,1978,3102,2,1,1641.036082,1641.036082,3505,NO,33.82,41.44,3,7.65,6110,110.970832,121.223267,130.949505,137.115895,I,Above,Gable,0,5701,,37.628972,0,1.1,,,,1,1,,0.35,nav,1,1978,2,, 11208,NJBF000062656,4055 OCEAN HTS AVENUE,Egg Harbor,NJ,39.33993319,-74.59998584,RES1,3001,,16,NE,1925,1925,3102,1,1,1698.937888,1698.937888,3507,NO,19.29,24.61,1,1.72,6106,111.192056,121.428475,131.139865,137.365803,I,Above,Hip,0,5701,,21.94585822,0,1.2,,,,1,1,,0.03,nav,1,1925,1,, 11209,NJBF000062693,109 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.3400262,-74.61264755,RES1,3001,,16,NE,1976,1976,3102,1,1,3976.239633,3976.239633,3505,NO,13.64,24.17,3,-0.77,6110,110.961261,121.21152,130.938869,137.101701,I,Above,Gable,0,5701,,18.90553656,0,1.2,,,,1,1,,0.35,nav,1,1976,1,, 11210,NJBF000067106,8051 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35212953,-74.67016799,RES1,3001,,16,NE,1986,1986,3102,1,1,2335.201704,2335.201704,3505,NO,10.7,23.17,3,-2.34,6112,110.052998,120.107145,129.9639,135.727889,I,Above,Gable,0,5701,,16.93293636,0,0,,,,1,1,,0.35,nav,1,1986,1,, 11211,NJBF000067136,8051 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.35224442,-74.6704518,RES1,3001,,16,NE,1986,1986,3102,1,1,1161.624027,1161.624027,3505,NO,21.41,33.76,3,8.85,6106,110.049055,120.101127,129.95881,135.720298,I,Above,Gable,0,5701,,27.58479356,0,0,,,,1,1,,0.03,nav,1,1986,1,, 11212,NJBF000074629,1133 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38725149,-74.71768049,IND2,3001,510,NaN,ME,1969,0,3401,3,1,8322.319897,8322.319897,3507,NO,46.14,53.56,1,2.56,6110,109.373379,119.256445,129.005583,134.222857,I,Above,Flat,0,NaN,,49.84617299,0,0,,,,1,1,,1,nav,1,1969,3,, 11213,NJBF000063680,,Egg Harbor,NJ,39.34236481,-74.61048585,RES1,3001,,NaN,NE,1974,0,3102,2,1,6443.554203,6443.554203,3505,NO,31.01,40.11,3,2.16,6106,110.954773,121.221127,130.946409,137.112128,I,Above,Gable,0,5701,,35.55719459,0,0,,,,1,1,,0.03,nav,1,1974,2,, 11214,NJBF000061544,2 VELLA LA VELLA LANE,Egg Harbor,NJ,39.3378286,-74.64047961,RES1,3001,,16,NE,1975,1975,3101,2,1,2061.828125,2061.828125,3505,NO,30.33,42.44,3,1.75,6106,110.590256,120.770545,130.539762,136.556756,I,Above,Gable,0,5701,,36.38267073,0,0,,,,1,1,,0.03,nav,1,1975,2,, 11215,NJBF000065589,1121 LAKESIDE DRIVE,Egg Harbor,NJ,39.34753545,-74.5919867,RES1,3001,,16,NE,1969,1969,3101,1,1,2029.003161,2029.003161,3505,NO,20.25,30.85,3,3.11,6106,111.215852,121.479141,131.181782,137.419961,I,Above,Gable,0,5701,,25.5502126,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11216,NJBF000065508,1123 LAKESIDE DRIVE,Egg Harbor,NJ,39.34728355,-74.592202,RES1,3001,,16,NE,1969,1969,3101,1,1,2383.393805,2383.393805,3505,NO,22.93,31.08,3,7.7,6106,111.215719,121.478256,131.18119,137.41921,I,Above,Hip,0,5701,,27.00247546,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 11217,NJBF000065585,1555 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34753259,-74.66005194,RES1,3001,,16,NE,1928,1928,3101,1,1,4973.147644,4973.147644,3507,NO,18.99,24.26,1,2.02,6112,110.21026,120.328697,130.152999,136.006382,I,Above,Hip,0,5701,,21.62479952,0,1.2,,,,1,1,,0.35,nav,1,1928,1,, 11218,NJBF000066895,78 ENGLISH LANE,Egg Harbor,NJ,39.35119329,-74.67737174,RES1,3001,,16,NE,1987,1987,3102,1,1,2779.068675,2779.068675,3505,NO,15.07,26.72,3,2.83,6110,110.006629,120.019639,129.87498,135.592925,I,Above,Gable,0,5701,,20.89585883,0,0,,,,1,1,,0.35,nav,1,1987,1,, 11219,NJBF000064956,1575 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34575983,-74.65649002,RES1,3001,,16,NE,1800,1800,3101,2,1,1469.22134,1469.22134,3507,NO,30.64,36.01,1,0.01,6112,110.272927,120.408888,130.222249,136.106744,I,Above,Hip,0,5701,,33.3252409,0,1.2,,,,1,1,,0.35,nav,1,1800,2,, 11220,NJBF000065588,13 BROOKSIDE DRIVE,Egg Harbor,NJ,39.34753485,-74.59390062,RES1,3001,,16,NE,1994,1994,3101,2,1,1477.837596,1477.837596,3505,NO,41.96,49.16,3,5.69,6106,111.176836,121.446239,131.150886,137.380209,I,Above,Hip,0,5701,,45.56087898,0,0,,,,1,1,,0.03,nav,1,1994,2,, 11221,NJBF000068916,8009 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1996,3102,2,1,3138.856049,3138.856049,3505,NO,43.23,50.14,3,7.53,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,46.6857828,0,0,,,,1,1,,0.35,nav,1,1987,2,, 11222,NJBF000071761,3354 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37153433,-74.57970461,RES1,3001,,16,NE,1955,1955,3101,1,1,2239.372246,2239.372246,3507,NO,19.7,29.95,1,2.1,6110,111.143348,121.433162,131.1004,137.312768,I,Above,Gable,0,5701,,24.8240765,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 11223,NJBF000071762,3354 BARGAINTOWN ROAD,Egg Harbor,NJ,39.37154369,-74.57943165,RES1,3001,,16,NE,1955,1955,3101,1,1,521.2218561,521.2218561,3507,NO,19.47,25.64,1,0.67,6106,111.149476,121.437742,131.104783,137.318265,I,Above,Gable,0,5701,,22.55848539,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 11224,NJBF000065272,210 THOMAS DRIVE,Egg Harbor,NJ,39.3465971,-74.59450551,RES1,3001,,16,NE,1991,1991,3102,1,1,2648.584298,2648.584298,3505,NO,21.57,35.39,3,8.01,6106,111.180765,121.446372,131.151901,137.38152,I,Above,Gable,0,5701,,28.4794488,0,0,,,,1,1,,0.03,nav,1,1991,1,, 11225,NJBF000062916,108 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.34048489,-74.61222529,RES1,3001,,16,NE,1981,1981,3102,2,1,2364.480539,2364.480539,3505,NO,31.28,44.33,3,8.2,6110,110.959872,121.213348,130.940333,137.103726,I,Above,Gable,0,5701,,37.80566102,0,1.2,,,,1,1,,0.35,nav,1,1981,2,, 11226,NJBF000061317,5012 OCEAN HTS AVENUE,Egg Harbor,NJ,39.33743407,-74.59664473,COM3,3001,510,NaN,ME,1970,1970,3401,3,1,717.3381176,717.3381176,3507,NO,57.39,63.81,1,-0.64,6106,111.300852,121.514707,131.221707,137.471581,I,Above,Flat,0,NaN,,60.60248102,0,0,,,,1,1,,0.03,nav,1,1970,3,, 11227,NJBF000061262,5012 OCEAN HTS AVENUE,Egg Harbor,NJ,39.3373363,-74.59674502,COM3,3001,510,NaN,ME,1970,1970,3401,3,1,1517.349938,1517.349938,3507,NO,51.13,62.19,1,-0.23,6106,111.300699,121.51414,131.221204,137.470935,I,Above,Hip,0,NaN,,56.66035404,0,0,,,,1,1,,0.03,nav,1,1970,3,, 11228,NJBF000069581,1354 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36187877,-74.69559424,RES1,3001,,16,NE,1958,1958,3101,1,1,3091.897709,3091.897709,3507,NO,16.12,22.51,1,2.04,6110,109.740995,119.713123,129.525633,135.056302,I,Above,Gable,0,5701,,19.31562133,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 11229,NJBF000077460,1041 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39878573,-74.71687539,RES1,3001,,16,NE,1960,1960,3102,2,1,1231.165779,1231.165779,3507,NO,27.52,36.21,1,1.42,6106,109.308128,119.175096,128.907081,134.066093,I,Above,Hip,0,5701,,31.86877629,0,0,,,,1,1,,0.03,nav,1,1960,2,, 11230,NJBF000077482,1041 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39894732,-74.71692484,RES1,3001,,16,NE,1960,1960,3102,2,1,2333.109685,2333.109685,3507,NO,26.99,38.1,1,2.94,6106,109.306899,119.173278,128.904991,134.062664,I,Above,Flat,0,5701,,32.5426672,0,0,,,,1,1,,0.03,nav,1,1960,2,, 11231,NJBF000069681,1350 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.36281201,-74.69497833,RES1,3001,,16,NE,1984,1984,3101,1,1,693.4092645,693.4092645,3507,NO,20.92,28.54,1,2.83,6112,109.735508,119.711803,129.524372,135.054937,I,Above,Hip,0,5701,,24.72997868,0,1.1,,,,1,1,,0.35,nav,1,1984,1,, 11232,NJBF000066216,3 EVE DRIVE,Egg Harbor,NJ,39.34921237,-74.59307695,RES1,3001,,16,NE,1969,1969,3101,2,1,1524.299713,1524.299713,3505,NO,29.49,36.15,3,-2.44,6112,111.165101,121.441683,131.144888,137.372465,I,Above,Gable,0,5701,,32.8217885,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 11233,NJBF000065364,214 THOMAS DRIVE,Egg Harbor,NJ,39.34685613,-74.59511742,RES1,3001,,16,NE,1988,1988,3102,1,1,1867.827887,1867.827887,3505,NO,15.44,26.13,3,-2.26,6106,111.163988,121.432966,131.139103,137.365,I,Above,Hip,0,5701,,20.78404486,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 11234,NJBF000069339,14 FRONT STREET,Egg Harbor,NJ,39.35975381,-74.57949364,RES1,3001,,16,NE,1930,1930,3101,1,1,2202.622309,2202.622309,3507,NO,14.65,22.32,1,0.86,6112,111.294935,121.560673,131.243805,137.496665,I,Above,Gable,0,5701,,18.48647247,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 11235,NJBF000076908,1073 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39535454,-74.71700674,RES1,3001,,16,NE,1965,1965,3102,1,1,927.3892419,927.3892419,3507,NO,17.65,31.37,1,1.23,6106,109.326708,119.20024,128.937588,134.114908,I,Above,Flat,0,5701,,24.51090098,0,0,,,,1,1,,0.03,nav,1,1965,1,, 11236,NJBF000063006,32 VELLA LA VELLA LANE,Egg Harbor,NJ,39.34068534,-74.64230956,RES1,3001,,16,NE,1950,1950,3101,1,1,1723.539388,1723.539388,3505,NO,14.56,23.5,3,0.34,6106,110.515854,120.705016,130.481937,136.476451,I,Above,Gable,0,5701,,19.0339538,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11237,NJBF000066102,1121 BERRY DRIVE,Egg Harbor,NJ,39.34891107,-74.59546185,RES1,3001,,16,NE,1969,1969,3101,1,1,2088.74111,2088.74111,3505,NO,18.63,28.05,3,0.31,6106,111.121555,121.404054,131.109979,137.327385,I,Above,Gable,0,5701,,23.34199474,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11238,NJBF000063354,20 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34148341,-74.59373162,RES1,3001,,16,NE,1987,1987,3102,2,1,2125.115302,2125.115302,3507,NO,27.84,39.49,1,-0.05,6112,111.285468,121.517769,131.222787,137.472853,I,Above,Flat,0,5701,,33.66712846,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 11239,NJBF000054032,66 SOMERS AVENUE,Egg Harbor,NJ,39.32216116,-74.64017372,RES1,3001,,16,NE,1984,1984,3102,2,1,2363.491865,2363.491865,3505,NO,34.02,44.8,3,-2.9,6106,110.878797,120.977156,130.711821,136.793464,I,Above,Gable,0,5701,,39.40909852,0,0,,,,1,1,,0.03,nav,1,1984,2,, 11240,NJBF000073116,1181 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.37789359,-74.71327528,RES1,3001,,16,NE,1950,1950,3102,2,1,1768.1027,1768.1027,3507,NO,33.72,41.63,1,0.39,6110,109.471836,119.381174,129.147456,134.453016,I,Above,Gable,0,5701,,37.67462162,0,0,,,,1,1,,0.35,nav,1,1950,2,, 11241,NJBF000065512,14 CARANN LANE,Egg Harbor,NJ,39.34728836,-74.58810528,RES1,3001,,16,NE,1969,1969,3101,2,1,1473.517843,1473.517843,3505,NO,25.97,39.66,3,-1.07,6106,111.300092,121.548722,131.247651,137.504223,I,Above,Gable,0,5701,,32.81288075,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11242,NJBF000056637,,Egg Harbor,NJ,39.32894012,-74.64979283,RES1,3001,,NaN,NE,1880,0,3102,2,1,1183.327945,1183.327945,3505,NO,33.89,40.95,3,7.37,6106,110.633803,120.734458,130.496919,136.495246,I,Above,Gable,0,5701,,37.42023117,0,0,,,,1,1,,0.03,nav,1,1880,2,, 11243,NJBF000063777,25 ISAACS LANE,Egg Harbor,NJ,39.34267425,-74.63977146,RES1,3001,,16,NE,1980,1980,3101,1,1,1256.229249,1256.229249,3505,NO,20.58,30.6,3,4.42,6112,110.510895,120.723147,130.497879,136.499568,I,Above,Hip,0,5701,,25.59061141,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11244,NJBF000075861,,Egg Harbor,NJ,39.39140501,-74.71977516,RES1,3001,,NaN,NE,1970,0,3102,2,1,1896.265397,1896.265397,3507,NO,33.72,44.96,1,-0.01,6106,109.33197,119.199993,128.941717,134.11805,I,Above,Gable,0,5701,,39.34353595,0,0,,,,1,1,,0.03,nav,1,1970,2,, 11245,NJBF000063515,7 OSPREY COURT,Egg Harbor,NJ,39.34191886,-74.60736183,RES1,3001,,16,NE,1996,1996,3102,2,1,3545.688627,3545.688627,3505,NO,37.09,42.49,3,5.37,6112,111.018869,121.279521,131.000446,137.18356,I,Above,Gable,0,5701,,39.79139038,0,0,,,,1,1,,0.35,nav,1,1996,2,, 11246,NJBF000066334,175 STEELMANVILLE ROAD,Egg Harbor,NJ,39.349497,-74.597426,RES1,3001,,16,NE,1980,1980,3101,1,1,1501.379722,1501.379722,3505,NO,21.52,30.98,3,5.18,6112,111.071779,121.363821,131.07179,137.277876,I,Above,Gable,0,5701,,26.2500021,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11247,NJBF000063767,238 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34264949,-74.61083644,RES1,3001,,16,NE,1940,1940,3102,1,1,2203.108291,2203.108291,3505,NO,17.08,26.05,3,2.56,6112,110.94328,121.21189,130.937744,137.100671,I,Above,Gable,0,5701,,21.56492602,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 11248,NJBF000056554,,Egg Harbor,NJ,39.32874366,-74.64953964,RES1,3001,,NaN,NE,1910,0,3102,2,1,1610.094301,1610.094301,3505,NO,29.62,38.4,3,-1.5,6106,110.640329,120.741061,130.502708,136.503367,I,Above,Gable,0,5701,,34.00847132,0,0,,,,1,1,,0.03,nav,1,1910,2,, 11249,NJBF000065894,128 CINDY DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1457.688405,1457.688405,3505,NO,18.26,24.83,3,-0.77,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,21.54243433,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 11250,NJBF000081876,127 SUMMIT AVENUE,Egg Harbor,NJ,39.42405351,-74.52990228,COM1,3001,,NaN,ME,1990,1940,3401,2,1,710.4878186,710.4878186,3507,NO,27.73,36.05,1,0.38,6112,111.858964,121.756455,131.344833,137.496801,I,Above,Flat,0,NaN,,31.89293054,0,0,,,,1,1,,0.35,nav,1,1990,2,, 11251,NJBF000066915,131 FLORIDA AVENUE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1980,3101,1,1,2165.715394,2165.715394,3505,NO,17.85,24,3,5.73,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,20.92254136,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 11252,NJBF000056483,,Egg Harbor,NJ,39.328575,-74.6492645,RES1,3001,,NaN,NE,1926,0,3102,2,1,1720.022677,1720.022677,3505,NO,32.4,41.7,3,3.14,6106,110.646664,120.747655,130.50854,136.511545,I,Above,Flat,0,5701,,37.0476407,0,0,,,,1,1,,0.03,nav,1,1926,2,, 11253,NJBF000051501,,Egg Harbor,NJ,39.30768404,-74.63624016,RES1,3001,,NaN,NE,1950,0,3102,2,1,1850.270136,1850.270136,3505,NO,19.62,30.53,3,-2.48,6106,111.194848,121.231953,130.924453,137.084164,I,Above,Hip,0,5701,,25.07615065,0,0,,,,1,1,,0.03,nav,1,1950,2,, 11254,NJBF000065514,1557 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.347293,-74.659901,RES1,3001,,16,NE,1965,1965,3101,1,1,964.0167898,964.0167898,3507,NO,16.61,28.39,1,1.65,6112,110.215444,120.334126,130.15766,136.013104,I,Above,Gable,0,5701,,22.49855762,0,0,,,,1,1,,0.15,nav,1,1965,1,, 11255,NJBF000054066,66 SOMERS AVENUE,Egg Harbor,NJ,39.32227913,-74.64033377,RES1,3001,,16,NE,1984,1984,3102,2,1,699.8363887,699.8363887,3505,NO,36.99,45.3,3,0.83,6106,110.874492,120.973041,130.70816,136.788439,I,Above,Gable,0,5701,,41.14332921,0,0,,,,1,1,,0.03,nav,1,1984,2,, 11256,NJBF000054299,57 SOMERS AVENUE,Egg Harbor,NJ,39.32300038,-74.64173957,RES1,3001,,NaN,NE,1968,2017,3102,2,1,694.0233108,694.0233108,3505,NO,35.66,44.13,3,3.89,6106,110.842535,120.941061,130.679377,136.748882,I,Above,Hip,0,5701,,39.89019231,0,0,,,,1,1,,0.03,nav,1,1968,2,, 11257,NJBF000054667,1761 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32401958,-74.63933087,RES1,3001,,16,NE,1964,1964,3102,1,1,1602.258473,1602.258473,3505,NO,19.38,26.28,3,8.85,6106,110.856594,120.966248,130.704777,136.78371,I,Above,Gable,0,5701,,22.82980954,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 11258,NJBF000055179,,Egg Harbor,NJ,39.32537267,-74.64451698,RES1,3001,,NaN,NE,1969,0,3102,2,1,1142.824739,1142.824739,3505,NO,35.77,49.22,3,-2.64,6106,110.76335,120.865435,130.612715,136.656772,I,Above,Gable,0,5701,,42.49392697,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11259,NJBF000055249,31 SOMERS AVENUE,Egg Harbor,NJ,39.32556566,-74.64440423,RES1,3001,,NaN,NE,1969,0,3102,2,1,603.4667591,603.4667591,3505,NO,28.78,41.6,3,1.21,6106,110.76136,120.864685,130.612358,136.656275,I,Above,Gable,0,5701,,35.18748245,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11260,NJBF000055527,1752 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32634605,-74.63737385,RES1,3001,,16,NE,2013,2013,3102,2,1,2039.084589,2039.084589,3505,NO,30.91,38.62,3,-1.85,6106,110.840969,120.967543,130.709468,136.790121,I,Above,Gable,0,5701,,34.76097682,0,0,,,,1,1,,0.03,nav,1,2013,2,, 11261,NJBF000056657,1734 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32897984,-74.64015326,RES1,3001,,16,NE,1984,1984,3102,2,1,817.1314319,817.1314319,3505,NO,27.5,32.56,3,-0.55,6106,110.755481,120.888363,130.639568,136.694039,I,Above,Flat,0,5701,,30.02894647,0,0,,,,1,1,,0.03,nav,1,1984,2,, 11262,NJBF000056783,1731 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.32925249,-74.64110135,RES1,3001,,16,NE,1958,1958,3102,1,1,1460.741749,1460.741749,3505,NO,18.8,29.37,3,0.71,6106,110.738044,120.869484,130.622488,136.670432,I,Above,Hip,0,5701,,24.08603684,0,1.2,,,,1,1,,0.03,nav,1,1958,1,, 11263,NJBF000060414,1653 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.33592826,-74.64411994,RES1,3001,,16,NE,1900,1900,3101,3,1,1348.315243,1348.315243,3505,NO,60.28,72.54,3,2,6106,110.579224,120.734645,130.506336,136.509455,I,Above,Hip,0,5701,,66.41006579,0,1.2,,,,1,1,,0.03,nav,1,1900,3,, 11264,NJBF000061444,,Egg Harbor,NJ,39.33763872,-74.59929961,COM3,3001,,NaN,ME,1969,0,3401,2,1,603.8801701,603.8801701,3507,NO,21.86,30.45,1,-0.76,6106,111.246658,121.466904,131.176748,137.413554,I,Above,Flat,0,NaN,,26.15280061,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11265,NJBF000061814,104 LAUTOKA DRIVE,Egg Harbor,NJ,39.33830217,-74.63920159,RES1,3001,,16,NE,1996,1996,3101,1,1,1570.275703,1570.275703,3505,NO,15.42,21.92,3,-1.16,6106,110.59787,120.785822,130.553624,136.576249,I,Above,Gable,0,5701,,18.66877028,0,0,,,,1,1,,0.03,nav,1,1996,1,, 11266,NJBF000061850,16 GLEN AIRE DRIVE,Egg Harbor,NJ,39.33836832,-74.61478563,RES1,3001,,16,NE,2003,2003,3102,1,1,3662.028692,3662.028692,3505,NO,22.82,30.26,3,5.73,6112,110.956369,121.194731,130.924067,137.081713,I,Above,Gable,0,5701,,26.54255768,0,0,,,,1,1,,0.35,nav,1,2003,1,, 11267,NJBF000062021,13 OTTER LANE,Egg Harbor,NJ,39.33866509,-74.61425413,RES1,3001,,16,NE,2001,2001,3102,1,1,3935.378482,3935.378482,3505,NO,10.88,18.55,3,-3,6112,110.959686,121.200244,130.929037,137.088386,I,Above,Hip,0,5701,,14.71546668,0,0,,,,1,1,,0.35,nav,1,2001,1,, 11268,NJBF000062389,9 OTTER LANE,Egg Harbor,NJ,39.33934768,-74.61456087,RES1,3001,,16,NE,1986,1986,3102,2,1,3079.488547,3079.488547,3505,NO,30.61,41.09,3,-1.87,6112,110.941595,121.186995,130.916645,137.071977,I,Above,Hip,0,5701,,35.84638102,0,0,,,,1,1,,0.35,nav,1,1986,2,, 11269,NJBF000062457,152 ROBERT BEST ROAD,Egg Harbor,NJ,39.3395035,-74.636683,RES1,3001,,16,NE,2014,2014,3101,2,1,1158.07511,1158.07511,3505,NO,27.25,32.37,3,0.42,6106,110.608358,120.812939,130.578102,136.610701,I,Above,Gable,0,5701,,29.80980007,0,0,,,,1,1,,0.03,nav,1,2014,2,, 11270,NJBF000062651,110 E.LAKEVIEW DRIVE,Egg Harbor,NJ,39.3399213,-74.6121896,RES1,3001,,16,NE,1984,1984,3102,2,1,554.4438333,554.4438333,3505,NO,36.29,50.43,3,-0.35,6106,110.971111,121.220531,130.947192,137.11275,I,Above,Gable,0,5701,,43.35947209,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 11271,NJBF000062720,278 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34008328,-74.61653645,RES1,3001,,16,NE,2010,2010,3102,2,1,1960.899555,1960.899555,3505,NO,43.41,48.56,3,6.57,6112,110.894752,121.14487,130.877804,137.020173,I,Above,Hip,0,5701,,45.98608041,0,0,,,,1,1,,0.35,nav,1,2010,2,, 11272,NJBF000063052,212 BLACKMAN ROAD,Egg Harbor,NJ,39.34078725,-74.5963952,RES1,3001,,16,NE,1950,1950,3102,1,1,534.0819338,534.0819338,3507,NO,14.77,22.76,1,2.59,6112,111.245608,121.480095,131.187765,137.427798,I,Above,Gable,0,5701,,18.76394831,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11273,NJBF000063165,145 BEVIS MILL ROAD,Egg Harbor,NJ,39.34102855,-74.64121752,RES1,3001,,16,NE,1973,1973,3101,1,1,631.0237979,631.0237979,3505,NO,16.21,28.18,3,3.02,6106,110.522968,120.71893,130.494322,136.493993,I,Above,Flat,0,5701,,22.19285771,0,0,,,,1,1,,0.03,nav,1,1973,1,, 11274,NJBF000063082,214 BLACKMAN ROAD,Egg Harbor,NJ,39.34085788,-74.59663905,RES1,3001,,16,NE,1970,1970,3102,2,1,2511.470032,2511.470032,3507,NO,35.25,49.32,1,-0.79,6112,111.239603,121.475095,131.183035,137.421695,I,Above,Gable,0,5701,,42.28759898,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 11275,NJBF000063183,10 BEAVER DRIVE,Egg Harbor,NJ,39.3410797,-74.61095748,RES1,3001,,16,NE,1979,1979,3102,2,1,620.3630562,620.3630562,3505,NO,32.88,39.65,3,-2,6110,110.970666,121.227987,130.953475,137.121286,I,Above,Hip,0,5701,,36.26493378,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 11276,NJBF000063180,4040 OCEAN HTS AVENUE,Egg Harbor,NJ,39.3410727,-74.60020956,RES1,3001,,16,NE,1976,1976,3102,1,1,2061.705718,2061.705718,3507,NO,13.25,22.61,1,-0.22,6112,111.167139,121.411464,131.123386,137.344445,I,Above,Gable,0,5701,,17.93214942,0,1.1,,,,1,1,,0.35,nav,1,1976,1,, 11277,NJBF000063263,202 LAKEVIEW DRIVE,Egg Harbor,NJ,39.34126325,-74.61049893,RES1,3001,,16,NE,1981,1981,3102,1,1,1804.844169,1804.844169,3505,NO,25.2,38.46,3,7.2,6106,110.975246,121.233658,130.958587,137.128098,I,Above,Gable,0,5701,,31.82830689,0,1.1,,,,1,1,,0.03,nav,1,1981,1,, 11278,NJBF000063397,146 BEVIS MILL ROAD,Egg Harbor,NJ,39.34159482,-74.64080979,RES1,3001,,16,NE,1986,1986,3101,1,1,510.8236567,510.8236567,3505,NO,19.09,30.89,3,7.29,6110,110.517718,120.718834,130.494225,136.494048,I,Above,Gable,0,5701,,24.9875567,0,0,,,,1,1,,0.35,nav,1,1986,1,, 11279,NJBF000063380,12 DORATO DRIVE,Egg Harbor,NJ,39.34155009,-74.60002137,RES1,3001,,16,NE,1988,1988,3102,2,1,2000.631083,2000.631083,3507,NO,26.93,36.72,1,1.2,6112,111.162102,121.409203,131.121,137.341366,I,Above,Gable,0,5701,,31.82449706,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 11280,NJBF000063460,135 ROBERT BEST ROAD,Egg Harbor,NJ,39.341787,-74.63500328,RES1,3001,,16,NE,1980,1980,3101,1,1,1534.421136,1534.421136,3505,NO,17.1,27.6,3,-0.17,6112,110.58808,120.813466,130.578301,136.611692,I,Above,Gable,0,5701,,22.35058432,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11281,NJBF000063431,13 DORATO DRIVE,Egg Harbor,NJ,39.34171674,-74.59968055,RES1,3001,,16,NE,1988,1988,3102,2,1,2020.990273,2020.990273,3507,NO,23.12,35.41,1,-0.45,6112,111.165575,121.413102,131.124537,137.345971,I,Above,Gable,0,5701,,29.2659149,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 11282,NJBF000073175,325 SANDERLING LANE,Egg Harbor,NJ,39.37859402,-74.49465093,RES3C,3001,,NaN,E,1969,0,3303,3,1,6196.410159,6196.410159,3507,NO,49.5,55.74,1,1.49,6106,112.988445,122.848647,132.541171,138.906741,I,Above,Flat,0,NaN,,52.61818785,0,0,,,,1,1,,0.03,nav,1,1969,3,, 11283,NJBF000073193,325 SANDERLING LANE,Egg Harbor,NJ,39.37881525,-74.49449929,RES3C,3001,,NaN,E,1969,0,3303,4,1,6375.516642,6375.516642,3507,NO,75.55,84.92,1,-0.99,6106,112.989489,122.849014,132.541536,138.906045,I,Above,Hip,0,NaN,,80.23451668,0,0,,,,1,1,,0.03,nav,1,1969,4,, 11284,NJBF000073309,325 SANDERLING LANE,Egg Harbor,NJ,39.37972516,-74.49574074,RES3C,3001,,NaN,E,1969,0,3303,4,1,6106.8969,6106.8969,3507,NO,53.24,59.19,1,2.93,6106,112.952438,122.817156,132.507372,138.868023,I,Above,Gable,0,NaN,,56.21677979,0,0,,,,1,1,,0.03,nav,1,1969,4,, 11285,NJBF000073337,325 SANDERLING LANE,Egg Harbor,NJ,39.37993196,-74.49563927,RES3C,3001,,NaN,E,1969,0,3303,4,1,9116.269649,9116.269649,3507,NO,77.7,85.09,1,0.83,6106,112.952544,122.81678,132.506938,138.866619,I,Above,Gable,0,NaN,,81.39431055,0,0,,,,1,1,,0.03,nav,1,1969,4,, 11286,NJBF000073347,325 SANDERLING LANE,Egg Harbor,NJ,39.37997095,-74.49464681,RES3C,3001,,NaN,E,1969,0,3303,4,1,6961.817763,6961.817763,3507,NO,49.87,61.77,1,0.96,6106,112.974115,122.834089,132.525432,138.884675,I,Above,Gable,0,NaN,,55.81980022,0,0,,,,1,1,,0.03,nav,1,1969,4,, 11287,NJBF000073416,8008 BLACK HORSE PIKE,Egg Harbor,NJ,39.3805621,-74.49437761,COM1,3003,737,NaN,ME,1969,0,3401,2,1,844.2340072,844.2340072,3507,NO,24.09,34.08,1,1.19,6106,112.973932,122.832624,132.523782,138.880237,I,Above,Flat,0,NaN,,29.08670908,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11288,NJBF000073489,,Egg Harbor,NJ,39.38110797,-74.49501128,COM1,3003,,NaN,ME,1969,0,3401,2,1,1298.824323,1298.824323,3507,NO,36.24,46.55,1,2.18,6106,112.954275,122.81552,132.505407,138.859554,I,Above,Flat,0,NaN,,41.39689506,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11289,NJBF000074132,1200 BAY DRIVE,Egg Harbor,NJ,39.38502818,-74.51195886,RES1,3001,,NaN,NE,1969,0,3102,2,1,2338.899621,2338.899621,3505,NO,28.39,41.06,3,3.71,6106,112.539184,122.472598,132.13895,138.471861,I,Above,Gable,0,5701,,34.72532555,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11290,NJBF000081917,514 S MILL ROAD,Egg Harbor,NJ,39.42449647,-74.52195539,RES1,3001,,17,NE,1930,1930,3102,2,1,920.8350172,920.8350172,3505,NO,29.04,39.84,3,4.54,6112,112.020507,121.889158,131.489067,137.647162,I,Above,Gable,0,5701,,34.43821268,0,0,,,,1,1,,0.35,nav,1,1930,2,, 11291,NJBF000081912,133 HOLLY ROAD,Egg Harbor,NJ,39.42447866,-74.51821771,RES1,3001,,17,NE,1990,1990,3102,1,1,1517.917246,1517.917246,3505,NO,16.02,24.92,3,3.9,6110,112.098,121.954186,131.559926,137.721038,I,Above,Flat,0,5701,,20.47277269,0,0,,,,1,1,,0.35,nav,1,1990,1,, 11292,NJBF000081922,515 S MILL ROAD,Egg Harbor,NJ,39.42454455,-74.52275458,COM1,3001,999,17,ME,1950,1950,3401,1,1,782.2133819,782.2133819,3507,NO,16.97,29.67,1,2.21,6112,112.003672,121.874803,131.473411,137.630595,I,Above,Gable,0,NaN,,23.31922905,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11293,NJBF000081966,108 HOLLY ROAD,Egg Harbor,NJ,39.42494471,-74.52058696,RES1,3001,,17,NE,1952,1952,3102,2,1,1589.632467,1589.632467,3505,NO,34.04,43.24,3,-0.48,6112,112.046134,121.908283,131.509734,137.667029,I,Above,Gable,0,5701,,38.6415372,0,0,,,,1,1,,0.35,nav,1,1952,2,, 11294,NJBF000081967,123 HOLLY ROAD,Egg Harbor,NJ,39.42494623,-74.5192799,RES1,3001,,17,NE,1972,1972,3102,1,1,1730.179981,1730.179981,3505,NO,12.76,20.53,3,-2.95,6112,112.073168,121.930953,131.534442,137.692756,I,Above,Gable,0,5701,,16.64272717,0,0,,,,1,1,,0.35,nav,1,1972,1,, 11295,NJBF000082094,400 & 408 S MILL RD,Egg Harbor,NJ,39.42639897,-74.52202772,RES1,3001,,17,NE,1940,1940,3102,2,3,902.4106022,902.4106022,3505,NO,36.47,41.74,3,-1.18,6106,112.00784,121.86846,131.465803,137.615593,I,Above,Flat,0,5701,,39.10830842,0,0,,,,1,1,,0.03,nav,1,1940,2,, 11296,NJBF000082318,72 W DELRAY LANE,Egg Harbor,NJ,39.42896007,-74.52851998,RES1,3001,,37,NE,2007,2007,3102,2,1,6235.462357,6235.462357,3505,NO,26.86,40.21,3,3.95,6112,111.860639,121.730449,131.314324,137.446508,I,Above,Hip,0,5701,,33.53632093,0,0,,,,1,1,,0.35,nav,1,2007,2,, 11297,NJBF000082320,47 ABLES RUN DRIVE,Egg Harbor,NJ,39.42899206,-74.52458405,RES1,3001,,37,NE,2006,2006,3102,2,1,3985.728955,3985.728955,3505,NO,26.95,40.73,3,4.29,6112,111.940731,121.797859,131.38792,137.524038,I,Above,Hip,0,5701,,33.84144627,0,0,,,,1,1,,0.03,nav,1,2006,2,, 11298,NJBF000082329,41 ABLES RUN DRIVE,Egg Harbor,NJ,39.4290267,-74.5249377,RES1,3001,,37,NE,2006,2006,3102,2,1,7561.423085,7561.423085,3505,NO,29.75,43.77,3,5.76,6112,111.933309,121.7914,131.380856,137.516476,I,Above,Hip,0,5701,,36.75869027,0,0,,,,1,1,,0.03,nav,1,2006,2,, 11299,NJBF000082337,33 ABLES RUN DRIVE,Egg Harbor,NJ,39.42910603,-74.52538501,RES1,3001,,37,NE,2006,2006,3102,2,1,7525.554435,7525.554435,3505,NO,28.82,42.75,3,2,6112,111.923752,121.782893,131.371543,137.506374,I,Above,Hip,0,5701,,35.78530485,0,0,,,,1,1,,0.03,nav,1,2006,2,, 11300,NJBF000082358,66 W DELRAY LANE,Egg Harbor,NJ,39.42925682,-74.52833228,RES1,3001,,37,NE,2007,2007,3102,2,1,5978.597837,5978.597837,3505,NO,32.91,42.59,3,-0.71,6112,111.862886,121.730663,131.314458,137.445539,I,Above,Hip,0,5701,,37.74698008,0,0,,,,1,1,,0.35,nav,1,2007,2,, 11301,NJBF000082439,20 DELRAY LANE,Egg Harbor,NJ,39.42992482,-74.52447098,RES1,3001,,37,NE,2006,2006,3102,2,1,6162.735618,6162.735618,3505,NO,31.52,40.83,3,-2.1,6112,111.937901,121.790301,131.379403,137.511517,I,Above,Hip,0,5701,,36.17211848,0,0,,,,1,1,,0.35,nav,1,2006,2,, 11302,NJBF000063538,1609 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34198501,-74.65039266,RES1,3001,,16,NE,2013,2013,3101,2,1,2902.75963,2902.75963,3507,NO,31.35,42.4,1,2.96,6106,110.399685,120.555685,130.349941,136.289489,I,Above,Hip,0,5701,,36.87451913,0,0,,,,1,1,,0.03,nav,1,2013,2,, 11303,NJBF000063548,133 ROBERT BEST ROAD,Egg Harbor,NJ,39.34201951,-74.63471097,RES1,3001,,16,NE,1972,1972,3101,1,1,1635.232243,1635.232243,3505,NO,12.48,20.79,3,-0.19,6112,110.5876,120.81558,130.580115,136.614294,I,Above,Gable,0,5701,,16.63385362,0,0,,,,1,1,,0.35,nav,1,1972,1,, 11304,NJBF000063522,4030 OCEAN HTS AVENUE,Egg Harbor,NJ,39.34194368,-74.60127579,RES1,3001,,NaN,NE,1925,0,3102,2,1,1239.734717,1239.734717,3507,NO,25.91,39.25,1,1.42,6110,111.131114,121.383196,131.096522,137.30953,I,Above,Flat,0,5701,,32.5757537,0,0,,,,1,1,,0.03,nav,1,1925,2,, 11305,NJBF000063586,139 BEVIS MILL ROAD,Egg Harbor,NJ,39.34211413,-74.64312488,RES1,3001,,16,NE,1989,1989,3101,2,1,1143.786438,1143.786438,3505,NO,33.32,45.9,3,-0.48,6106,110.480386,120.674063,130.454545,136.438306,I,Above,Gable,0,5701,,39.60976821,0,0,,,,1,1,,0.03,nav,1,1989,2,, 11306,NJBF000063596,144 BEVIS MILL ROAD,Egg Harbor,NJ,39.34213547,-74.64179247,RES1,3001,,16,NE,1979,1979,3101,2,1,2006.472319,2006.472319,3505,NO,37.38,44.57,3,2.22,6106,110.495988,120.695961,130.473915,136.465648,I,Above,Hip,0,5701,,40.97801129,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 11307,NJBF000063603,1609 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34215815,-74.65000549,RES1,3001,,16,NE,2013,2013,3101,2,1,2601.14992,2601.14992,3507,NO,35.69,46.58,1,-0.51,6110,110.400972,120.559894,130.353718,136.294957,I,Above,Hip,0,5701,,41.13483288,0,0,,,,1,1,,0.35,nav,1,2013,2,, 11308,NJBF000063581,6 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34210459,-74.59407551,RES1,3001,,16,NE,1987,1987,3102,2,1,3253.954069,3253.954069,3507,NO,32.99,47.38,1,-0.74,6112,111.267728,121.504734,131.210149,137.456597,I,Above,Gable,0,5701,,40.18962234,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 11309,NJBF000063602,6 DORATO DRIVE,Egg Harbor,NJ,39.34215793,-74.59921492,RES1,3001,,16,NE,1988,1988,3102,2,1,2264.281051,2264.281051,3507,NO,32.93,43.34,1,-0.1,6112,111.166556,121.416015,131.126982,137.349165,I,Above,Gable,0,5701,,38.13487379,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 11310,NJBF000063656,4 STONEY CREEK DRIVE,Egg Harbor,NJ,39.34231498,-74.59388295,RES1,3001,,16,NE,2002,2002,3102,2,1,1900.803099,1900.803099,3507,NO,35.45,40.72,1,0.93,6112,111.26786,121.505644,131.210874,137.457522,I,Above,Gable,0,5701,,38.0820382,0,0,,,,1,1,,0.35,nav,1,2002,2,, 11311,NJBF000063665,215 ROSEMARIE DRIVE,Egg Harbor,NJ,39.34234081,-74.59870808,RES1,3001,,16,NE,1965,1965,3102,2,1,2508.562717,2508.562717,3507,NO,22.62,30.3,1,1.55,6112,111.173026,121.4226,131.133014,137.357,I,Above,Gable,0,5701,,26.46001901,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 11312,NJBF000063719,129 ROBERT BEST ROAD,Egg Harbor,NJ,39.34249934,-74.63417858,RES1,3001,,16,NE,1980,1980,3101,1,1,1471.400996,1471.400996,3505,NO,16.3,27.8,3,3.5,6112,110.58572,120.818808,130.582824,136.618225,I,Above,Gable,0,5701,,22.05044936,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11313,NJBF000063799,127 ROBERT BEST ROAD,Egg Harbor,NJ,39.34272854,-74.63396789,RES1,3001,,16,NE,1980,1980,3101,1,1,1430.707779,1430.707779,3505,NO,15.88,25.73,3,-0.86,6112,110.58423,120.819625,130.583461,136.619189,I,Above,Gable,0,5701,,20.80515553,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 11314,NJBF000064394,135 WHARF ROAD,Egg Harbor,NJ,39.34437741,-74.67615919,RES1,3001,,16,NE,1960,1960,3102,1,1,750.2590904,750.2590904,3505,NO,20.27,30.86,3,3.49,6106,110.111663,120.127832,129.961188,135.720187,I,Above,Gable,0,5701,,25.56581488,0,0,,,,1,1,,0.03,nav,1,1960,1,, 11315,NJBF000064462,1585 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34454923,-74.6539648,RES1,3001,,16,NE,1920,1920,3101,1,1,1746.699658,1746.699658,3507,NO,18.48,24.93,1,1.15,6112,110.318345,120.465254,130.271184,136.177188,I,Above,Gable,0,5701,,21.70147085,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11316,NJBF000064411,186 BLACKMAN ROAD,Egg Harbor,NJ,39.34442593,-74.59342175,RES1,3001,,16,NE,1900,1900,3102,2,1,1263.962512,1263.962512,3505,NO,32.44,47.15,3,2.33,6112,111.24018,121.489514,131.194227,137.436061,I,Above,Flat,0,5701,,39.7966239,0,0,,,,1,1,,0.35,nav,1,1900,2,, 11317,NJBF000064585,,Egg Harbor,NJ,39.34484618,-74.5936187,COM1,3001,,NaN,ME,1969,0,3401,2,1,2178.976067,2178.976067,3507,NO,39.91,51.46,1,1.6,6112,111.228936,121.48137,131.186244,137.425784,I,Above,Flat,0,NaN,,45.68507556,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11318,NJBF000064848,203 THOMAS DRIVE,Egg Harbor,NJ,39.34547384,-74.59383743,RES1,3001,,16,NE,1965,1965,3102,1,1,2273.993747,2273.993747,3505,NO,20.05,30.65,3,4.82,6112,111.213668,121.470522,131.175542,137.411998,I,Above,Gable,0,5701,,25.35204084,0,1.2,,,,1,1,,0.15,nav,1,1965,1,, 11319,NJBF000064940,205 THOMAS DRIVE,Egg Harbor,NJ,39.34572056,-74.59406405,RES1,3001,,16,NE,1965,1965,3102,1,1,2860.417236,2860.417236,3505,NO,24.51,30.26,3,7.58,6112,111.204825,121.463833,131.169055,137.403639,I,Above,Gable,0,5701,,27.38790909,0,1.2,,,,1,1,,0.15,nav,1,1965,1,, 11320,NJBF000065033,207 THOMAS DRIVE,Egg Harbor,NJ,39.34596529,-74.59432834,RES1,3001,,16,NE,1965,1965,3102,2,1,1999.666319,1999.666319,3505,NO,23.06,31.13,3,-1.36,6112,111.19529,121.456546,131.162007,137.394555,I,Above,Hip,0,5701,,27.09738368,0,1.2,,,,1,1,,0.15,nav,1,1965,2,, 11321,NJBF000065145,22 CLOVER HILL CIRCLE,Egg Harbor,NJ,39.34625827,-74.5981508,RES1,3001,,16,NE,1998,1998,3102,2,1,2262.35565,2262.35565,3505,NO,28.77,35.9,3,-2.67,6112,111.114071,121.387624,131.097304,137.310826,I,Above,Gable,0,5701,,32.33838558,0,0,,,,1,1,,0.35,nav,1,1998,2,, 11322,NJBF000065190,20 CLOVER HILL CIRCLE,Egg Harbor,NJ,39.34636261,-74.59783928,RES1,3001,,16,NE,1998,1998,3102,2,1,1894.021516,1894.021516,3505,NO,23.66,29.85,3,0.45,6112,111.118371,121.391793,131.101093,137.315754,I,Above,Gable,0,5701,,26.7577757,0,0,,,,1,1,,0.35,nav,1,1998,2,, 11323,NJBF000065301,215 THOMAS DRIVE,Egg Harbor,NJ,39.34667518,-74.59560792,RES1,3001,,16,NE,1965,1965,3102,2,1,2259.451693,2259.451693,3505,NO,21.5,29.48,3,-2.55,6112,111.157279,121.426569,131.133285,137.357479,I,Above,Gable,0,5701,,25.48939734,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 11324,NJBF000065382,217 THOMAS DRIVE,Egg Harbor,NJ,39.34690288,-74.59594745,RES1,3001,,16,NE,1965,1965,3102,2,1,1941.508323,1941.508323,3505,NO,25.84,37.59,3,0.47,6112,111.146523,121.418186,131.125231,137.347066,I,Above,Gable,0,5701,,31.71461889,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 11325,NJBF000065520,1557 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34732258,-74.65957336,RES1,3001,,16,NE,1965,1965,3101,1,1,1385.14241,1385.14241,3507,NO,14.62,24.07,1,1.08,6112,110.218075,120.339122,130.16198,136.019454,I,Above,Gable,0,5701,,19.34309598,0,0,,,,1,1,,0.35,nav,1,1965,1,, 11326,NJBF000065637,158 BLACKMAN ROAD,Egg Harbor,NJ,39.34767705,-74.5902562,RES1,3001,,16,NE,1950,1950,3101,1,1,1069.145926,1069.145926,3505,NO,19.16,26.3,3,6.71,6110,111.249043,121.507331,131.208192,137.453807,I,Above,Flat,0,5701,,22.73093352,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11327,NJBF000065861,103 WHARF ROAD,Egg Harbor,NJ,39.34829495,-74.67108691,RES1,3001,,16,NE,2013,2013,3102,1,1,2939.212672,2939.212672,3505,NO,10.19,17.11,3,-1.83,6112,110.099539,120.143837,129.990916,135.766415,I,Above,Gable,0,5701,,13.65090198,0,0,,,,1,1,,0.35,nav,1,2013,1,, 11328,NJBF000065990,,Egg Harbor,NJ,39.34863318,-74.66119592,REL1,3001,,NaN,ME,1969,0,3401,2,1,2592.904296,2592.904296,3505,NO,38,45.38,3,5.33,6112,110.182551,120.296483,130.125294,135.966196,I,Above,Gable,0,5701,,41.69463468,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11329,NJBF000066046,127 CINDY DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1355.092103,1355.092103,3505,NO,23.26,29.4,3,8.19,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,26.3310829,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 11330,NJBF000066174,229 MITCHELL DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,2621.971195,2621.971195,3505,NO,24.49,33.92,3,8.25,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,29.20415378,0,0,,,,1,1,,0.35,nav,1,1981,1,, 11331,NJBF000066223,1501 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3492263,-74.67054673,RES1,3001,,16,NE,1900,1900,3102,2,1,1795.173241,1795.173241,3505,NO,37.43,44.16,3,3.42,6112,110.090834,120.139176,129.988754,135.763631,I,Above,Flat,0,5701,,40.79346092,0,0,,,,1,1,,0.35,nav,1,1900,2,, 11332,NJBF000066182,148 BLACKMAN ROAD,Egg Harbor,NJ,39.34913242,-74.58914047,RES1,3001,,16,NE,1969,1969,3101,1,1,1904.670683,1904.670683,3505,NO,17.9,28.38,3,0.03,6112,111.247983,121.510308,131.209551,137.455424,I,Above,Gable,0,5701,,23.13725206,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 11333,NJBF000066189,1105 MARLOU AVENUE,Egg Harbor,NJ,39.34915,-74.58773666,RES1,3001,,16,NE,1969,1969,3101,2,1,1854.506162,1854.506162,3505,NO,36.99,45.09,3,2.15,6112,111.277049,121.534272,131.23218,137.484292,I,Above,Gable,0,5701,,41.03971514,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 11334,NJBF000066316,1455 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.34945745,-74.67765252,RES1,3001,,16,NE,1860,1860,3102,2,1,1465.619754,1465.619754,3505,NO,36.19,43.67,3,0.73,6112,110.0278,120.038981,129.888885,135.613171,I,Above,Gable,0,5701,,39.9282781,0,1.1,,,,1,1,,0.35,nav,1,1860,2,, 11335,NJBF000066277,1103 MARLOU AVENUE,Egg Harbor,NJ,39.3493517,-74.58753686,RES1,3001,,16,NE,2002,2002,3101,2,1,1783.509545,1783.509545,3505,NO,35.26,48.61,3,4.68,6112,111.277945,121.535471,131.233107,137.485448,I,Above,Gable,0,5701,,41.93306502,0,1.1,,,,1,1,,0.35,nav,1,2002,2,, 11336,NJBF000066363,2 EVE DRIVE,Egg Harbor,NJ,39.34956928,-74.59240686,RES1,3001,,16,NE,1969,1969,3101,2,1,921.8041232,921.8041232,3505,NO,39.37,52.12,3,3.39,6112,111.172884,121.449235,131.151587,137.381082,I,Above,Hip,0,5701,,45.7467857,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 11337,NJBF000066391,1101 MARLOU AVENUE,Egg Harbor,NJ,39.3496335,-74.58720628,RES1,3001,,16,NE,1969,1969,3101,1,1,2055.87898,2055.87898,3505,NO,15.01,26.43,3,2.59,6112,111.280313,121.538041,131.235247,137.488136,I,Above,Gable,0,5701,,20.72091547,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 11338,NJBF000066472,325 FRANK LANE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1971,3101,1,1,1276.575461,1276.575461,3505,NO,26.43,41.34,3,7.4,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,33.88465264,0,0,,,,1,1,,0.35,nav,1,1981,1,, 11339,NJBF000066431,168 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34973774,-74.59580184,RES1,3001,,16,NE,1969,1969,3101,1,1,1782.555882,1782.555882,3505,NO,10.34,22.71,3,-1.17,6112,111.100466,121.389021,131.095017,137.308039,I,Above,Flat,0,5701,,16.5267181,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 11340,NJBF000066482,166 STEELMANVILLE ROAD,Egg Harbor,NJ,39.34986389,-74.59549636,RES1,3001,,16,NE,1969,1969,3101,1,1,2435.847993,2435.847993,3505,NO,24.62,29.82,3,8.54,6112,111.104537,121.392878,131.098475,137.312524,I,Above,Hip,0,5701,,27.22063515,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11341,NJBF000066609,24 SCARLETT OAK CIRCLE,Egg Harbor,NJ,39.35021782,-74.59612144,RES1,3001,,16,NE,2008,2008,3101,1,1,3269.460887,3269.460887,3505,NO,23.01,36.52,3,7.32,6112,111.085761,121.378223,131.084382,137.294274,I,Above,Hip,0,5701,,29.76349916,0,0,,,,1,1,,0.35,nav,1,2008,1,, 11342,NJBF000066730,,Egg Harbor,NJ,39.35060386,-74.69873295,RES1,3001,,NaN,NE,1969,0,3101,1,1,1415.198737,1415.198737,3507,NO,18.59,23.84,1,1.03,6106,109.845723,119.789688,129.595748,135.16108,I,Above,Gable,0,5701,,21.21804748,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11343,NJBF000066689,22 SCARLETT OAK CIRCLE,Egg Harbor,NJ,39.35047544,-74.59625051,RES1,3001,,16,NE,2004,2004,3101,2,1,2528.904066,2528.904066,3505,NO,33.99,45.31,3,-2.79,6112,111.07872,121.373147,131.079342,137.287749,I,Above,Gable,0,5701,,39.64949116,0,0,,,,1,1,,0.35,nav,1,2004,2,, 11344,NJBF000066777,20 SCARLETT OAK CIRCLE,Egg Harbor,NJ,39.35074044,-74.5964271,RES1,3001,,16,NE,2004,2004,3101,2,1,3511.787372,3511.787372,3505,NO,30.2,35.83,3,3.22,6112,111.070606,121.367196,131.073474,137.280148,I,Above,Gable,0,5701,,33.01590945,0,0,,,,1,1,,0.35,nav,1,2004,2,, 11345,NJBF000067079,9 SHADOW DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1970,3101,1,1,1439.417348,1439.417348,3505,NO,15.06,26.67,3,-1.53,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,20.86737691,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 11346,NJBF000067119,1448 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35216833,-74.67957089,RES1,3001,,16,NE,1974,1974,3102,1,1,1936.692324,1936.692324,3505,NO,16.81,26.3,3,4.63,6112,109.975994,119.982909,129.835206,135.532829,I,Above,Gable,0,5701,,21.55375635,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11347,NJBF000067125,7 SHADOW DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1972,3101,1,1,1491.75885,1491.75885,3505,NO,17.27,26.08,3,-0.97,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,21.67658991,0,0,,,,1,1,,0.35,nav,1,1981,1,, 11348,NJBF000067160,5 SHADOW DRIVE,Egg Harbor,NJ,39.34512733,-74.63882304,RES1,3001,,16,NE,1981,1975,3101,1,1,1783.535904,1783.535904,3505,NO,21.93,28.74,3,5.05,6112,110.47781,120.709953,130.485219,136.482734,I,Above,Gable,0,5701,,25.33463227,0,0,,,,1,1,,0.35,nav,1,1981,1,, 11349,NJBF000067363,142 LEES LANE,Egg Harbor,NJ,39.35322079,-74.69380568,RES1,3001,,16,NE,1790,1790,3101,2,1,1606.424238,1606.424238,3507,NO,21.49,27.56,1,-0.61,6110,109.852087,119.815479,129.634681,135.223264,I,Above,Gable,0,5701,,24.52497913,0,0,,,,1,1,,0.03,nav,1,1790,2,, 11350,NJBF000067643,1432 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3540564,-74.68179285,RES1,3001,,16,NE,1968,1968,3102,1,1,944.1068751,944.1068751,3505,NO,9.71,14.74,3,-2.41,6112,109.934191,119.938099,129.78606,135.458551,I,Above,Gable,0,5701,,12.22126156,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 11351,NJBF000067733,1432 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35430614,-74.68140982,RES1,3001,,16,NE,1968,1968,3102,1,1,622.2972059,622.2972059,3505,NO,26.46,32.93,3,7.98,6112,109.934008,119.939783,129.788667,135.462704,I,Above,Gable,0,5701,,29.69625445,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 11352,NJBF000068307,135 THOMPSONS LANE,Egg Harbor,NJ,39.35629103,-74.69893728,RES1,3001,510,16,NE,1970,1970,3101,1,1,699.8551922,699.8551922,3507,NO,18.81,26.12,1,-0.59,6112,109.778009,119.728723,129.537333,135.071526,I,Above,Gable,0,5701,,22.46615435,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11353,NJBF000068351,22 ENGLISH LANE,Egg Harbor,NJ,39.35646082,-74.67355327,RES1,3001,,16,NE,1995,1995,3102,2,1,1202.930278,1202.930278,3505,NO,37.16,43.08,3,7.76,6112,109.967585,120.014152,129.872773,135.592719,I,Above,Flat,0,5701,,40.1207469,0,0,,,,1,1,,0.15,nav,1,1995,2,, 11354,NJBF000068470,135 THOMPSONS LANE,Egg Harbor,NJ,39.35686771,-74.69777653,RES1,3001,510,16,NE,1970,1970,3101,1,1,647.5129106,647.5129106,3507,NO,15.24,20.34,1,-0.1,6112,109.780061,119.735671,129.546737,135.086724,I,Above,Gable,0,5701,,17.78601381,0,0,,,,1,1,,0.7,nav,1,1970,1,, 11355,NJBF000068473,135 THOMPSONS LANE,Egg Harbor,NJ,39.35687109,-74.69800866,RES1,3001,510,16,NE,1970,1970,3101,1,1,648.4800949,648.4800949,3507,NO,19.58,24.68,1,1.78,6112,109.778319,119.733121,129.543692,135.081905,I,Above,Gable,0,5701,,22.13207713,0,0,,,,1,1,,0.7,nav,1,1970,1,, 11356,NJBF000068614,10 WILLOWBROOK LANE,Egg Harbor,NJ,39.35724686,-74.58146839,RES1,3001,,16,NE,1974,1974,3101,2,1,1834.885718,1834.885718,3507,NO,36.18,45.44,1,-0.75,6112,111.286726,121.553607,131.240682,137.493505,I,Above,Gable,0,5701,,40.81310195,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 11357,NJBF000069025,3532 BARGAINTOWN ROAD,Egg Harbor,NJ,39.35842972,-74.58167848,RES1,3001,,16,NE,1993,1993,3101,2,1,2387.381406,2387.381406,3507,NO,26.27,38.25,1,1.69,6112,111.265038,121.537223,131.223349,137.471336,I,Above,Gable,0,5701,,32.26277223,0,0,,,,1,1,,0.35,nav,1,1993,2,, 11358,NJBF000069313,1325 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.35963329,-74.7093608,RES1,3001,,16,NE,1998,1998,3101,2,1,1914.607952,1914.607952,3507,NO,27.18,33.4,1,2.15,6110,109.66618,119.58375,129.371076,134.80727,I,Above,Hip,0,5701,,30.29428262,0,0,,,,1,1,,0.03,nav,1,1998,2,, 11359,NJBF000069341,114 ZION ROAD,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1900,3102,2,1,1593.556027,1593.556027,3505,NO,28.77,37.31,3,5.43,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,33.04031425,0,0,,,,1,1,,0.35,nav,1,1987,2,, 11360,NJBF000069306,8 BRIAN AVENUE,Egg Harbor,NJ,39.35960468,-74.58076484,RES1,3001,,16,NE,1954,1954,3101,1,1,1819.37016,1819.37016,3507,NO,11.31,17.12,1,-0.4,6112,111.26869,121.540344,131.224578,137.472553,I,Above,Gable,0,5701,,14.21438945,0,0,,,,1,1,,0.35,nav,1,1954,1,, 11361,NJBF000069356,17 FRONT STREET,Egg Harbor,NJ,39.3598439,-74.58025947,RES1,3001,,16,NE,1958,1959,3101,1,1,3238.430272,3238.430272,3507,NO,11.17,18.49,1,-0.61,6112,111.276629,121.546509,131.230111,137.479439,I,Above,Hip,0,5701,,14.82796713,0,0,,,,1,1,,0.35,nav,1,1958,1,, 11362,NJBF000069481,5 WATER STREET,Egg Harbor,NJ,39.36075337,-74.57897579,RES1,3001,,15,NE,1840,1840,3101,2,1,1008.069904,1008.069904,3507,NO,39.31,51.83,1,0.42,6112,111.292783,121.558912,131.240602,137.492302,I,Above,Gable,0,5701,,45.57031051,0,0,,,,1,1,,0.35,nav,1,1840,2,, 11363,NJBF000069493,3 WATER STREET,Egg Harbor,NJ,39.36090349,-74.57871772,RES1,3001,,16,NE,1850,1850,3101,2,1,1474.30737,1474.30737,3507,NO,39.24,47.96,1,0.28,6112,111.296521,121.56176,131.243102,137.495381,I,Above,Gable,0,5701,,43.60248154,0,1.2,,,,1,1,,0.35,nav,1,1850,2,, 11364,NJBF000069520,3 WATER STREET,Egg Harbor,NJ,39.3611644,-74.57862822,RES1,3001,,16,NE,1850,1850,3101,2,1,2169.293736,2169.293736,3507,NO,28.41,33.65,1,1.95,6112,111.295005,121.560524,131.241513,137.493295,I,Above,Gable,0,5701,,31.0312547,0,1.2,,,,1,1,,0.35,nav,1,1850,2,, 11365,NJBF000070185,3411 BARGAINTOWN ROAD,Egg Harbor,NJ,39.3661309,-74.58198626,RES1,3001,,16,NE,1965,1965,3101,1,1,2117.92486,2117.92486,3507,NO,19.43,30.96,1,0.98,6112,111.154634,121.450146,131.127348,137.348201,I,Above,Hip,0,5701,,25.19295935,0,0,,,,1,1,,0.35,nav,1,1965,1,, 11366,NJBF000070526,7075 ENGLISH CREEK AVENUE,Egg Harbor,NJ,39.3556585,-74.6688285,RES1,3001,,16,NE,1987,1995,3102,2,1,3785.173098,3785.173098,3505,NO,37.37,51.24,3,0.9,6112,110.015496,120.092909,129.94563,135.702574,I,Above,Gable,0,5701,,44.30757895,0,0,,,,1,1,,0.35,nav,1,1987,2,, 11367,NJBF000070509,3401 BARGAINTOWN ROAD,Egg Harbor,NJ,39.36740645,-74.58200912,RES1,3001,,16,NE,1920,1920,3101,2,1,1732.136921,1732.136921,3507,NO,31.46,42.03,1,1.45,6112,111.138403,121.436424,131.11181,137.328271,I,Above,Gable,0,5701,,36.74389109,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 11368,NJBF000070549,673 ZION ROAD,Egg Harbor,NJ,39.36754576,-74.58293692,RES1,3001,,16,NE,1991,1991,3101,1,1,1310.493805,1310.493805,3507,NO,16.11,25.99,1,2.19,6112,111.115615,121.419031,131.094931,137.306897,I,Above,Gable,0,5701,,21.04907125,0,0,,,,1,1,,0.35,nav,1,1991,1,, 11369,NJBF000070561,675 ZION ROAD,Egg Harbor,NJ,39.36760027,-74.58250313,RES1,3001,,16,NE,2006,2006,3101,2,1,3084.304476,3084.304476,3507,NO,30.72,36.25,1,2.96,6112,111.124823,121.425919,131.101399,137.315069,I,Above,Hip,0,5701,,33.48250511,0,0,,,,1,1,,0.35,nav,1,2006,2,, 11370,NJBF000071027,3393 BARGAINTOWN ROAD,Egg Harbor,NJ,39.3691756,-74.58275563,COM4,3001,951,NaN,ME,1989,1989,3401,3,1,28185.72138,28185.72138,3507,NO,38.79,53.45,1,-0.01,6112,111.100319,121.405205,131.078471,137.285731,I,Above,Gable,0,NaN,,46.11784376,0,0,,,,1,1,,1,nav,1,1989,3,, 11371,NJBF000072362,415 DELAWARE AVENUE,Egg Harbor,NJ,39.37340321,-74.60883281,RES1,3001,,16,NE,2007,2007,3102,2,1,4084.64518,4084.64518,3507,NO,32.89,39.4,1,0.61,6112,110.456269,120.919634,130.615029,136.679767,I,Above,Gable,0,5701,,36.14972297,0,0,,,,1,1,,0.35,nav,1,2007,2,, 11372,NJBF000072397,411 DELAWARE AVENUE,Egg Harbor,NJ,39.3735148,-74.60982689,RES1,3001,,16,NE,1988,1988,3102,1,1,2594.823677,2594.823677,3507,NO,15.21,28.37,1,-0.1,6112,110.432262,120.901857,130.598518,136.657399,I,Above,Gable,0,5701,,21.7902164,0,1.2,,,,1,1,,0.15,nav,1,1988,1,, 11373,NJBF000072418,409 DELAWARE AVENUE,Egg Harbor,NJ,39.373589,-74.61011712,RES1,3001,,NaN,NE,1969,0,3102,2,1,1610.013915,1610.013915,3507,NO,38.34,44.21,1,2.58,6112,110.424796,120.896271,130.593223,136.650241,I,Above,Gable,0,5701,,41.27679856,0,0,,,,1,1,,0.15,nav,1,1969,2,, 11374,NJBF000072451,411 DELAWARE AVENUE,Egg Harbor,NJ,39.37370089,-74.60984058,RES1,3001,,16,NE,1988,1988,3102,1,1,669.7956623,669.7956623,3507,NO,19.39,32.83,1,2.74,6112,110.429878,120.899809,130.596118,136.654263,I,Above,Flat,0,5701,,26.10900424,0,1.2,,,,1,1,,0.15,nav,1,1988,1,, 11375,NJBF000072431,1035 OLD ZION ROAD,Egg Harbor,NJ,39.37153433,-74.57970461,RES1,3001,,NaN,NE,1955,0,3101,1,1,1915.334036,1915.334036,3507,NO,12.32,26.31,1,-0.13,6112,111.143348,121.433162,131.1004,137.312768,I,Above,Gable,0,5701,,19.31539531,0,0,,,,1,1,,0.35,nav,1,1955,1,, 11376,NJBF000072491,128 BAYBERRY AVENUE,Egg Harbor,NJ,39.37385202,-74.61429122,RES1,3001,,16,NE,1966,1966,3102,1,1,1757.330551,1757.330551,3507,NO,13.01,23.1,1,0.44,6112,110.326318,120.823863,130.526827,136.559474,I,Above,Gable,0,5701,,18.05822017,0,0,,,,1,1,,0.35,nav,1,1966,1,, 11377,NJBF000072500,413 DELAWARE AVENUE,Egg Harbor,NJ,39.37388584,-74.60915625,RES1,3001,,52,NE,1966,1966,3102,2,1,680.4455013,680.4455013,3507,NO,28.49,35.08,1,0.13,6112,110.443566,120.909497,130.604403,136.665667,I,Above,Gable,0,5701,,31.78459136,0,0,,,,1,1,,0.35,nav,1,1966,2,, 11378,NJBF000072535,126 BAYBERRY AVENUE,Egg Harbor,NJ,39.37401365,-74.61454358,RES1,3001,,16,NE,1968,1968,3102,1,1,1948.299914,1948.299914,3507,NO,18.46,33.01,1,0.47,6112,110.318688,120.81808,130.521119,136.551739,I,Above,Gable,0,5701,,25.73305674,0,0,,,,1,1,,0.35,nav,1,1968,1,, 11379,NJBF000072533,7115 RIDGE AVENUE,Egg Harbor,NJ,39.37401106,-74.61285041,RES1,3001,,16,NE,1963,1963,3102,1,1,2445.554318,2445.554318,3507,NO,16.53,26.55,1,2.81,6112,110.357515,120.846412,130.546743,136.586991,I,Above,Gable,0,5701,,21.54130393,0,0,,,,1,1,,0.35,nav,1,1963,1,, 11380,NJBF000072568,120 BAYBERRY AVENUE,Egg Harbor,NJ,39.37412345,-74.61507087,RES1,3001,,16,NE,2010,2010,3102,1,1,1843.624077,1843.624077,3507,NO,15.54,24.14,1,2.41,6112,110.305399,120.808238,130.511908,136.53912,I,Above,Gable,0,5701,,19.83935523,0,0,,,,1,1,,0.35,nav,1,2010,1,, 11381,NJBF000072594,130 BAYBERRY AVENUE,Egg Harbor,NJ,39.37421528,-74.61332962,RES1,3001,,16,NE,1999,1999,3102,1,1,2042.314328,2042.314328,3507,NO,15.11,26.89,1,-0.28,6112,110.344281,120.836421,130.537092,136.573896,I,Above,Gable,0,5701,,21.00043078,0,0,,,,1,1,,0.35,nav,1,1999,1,, 11382,NJBF000072603,118 BAYBERRY AVENUE,Egg Harbor,NJ,39.37424023,-74.61535998,RES1,3001,,16,NE,2010,2010,3102,1,1,2273.974219,2273.974219,3507,NO,13.77,28.37,1,0.46,6112,110.297473,120.802296,130.506194,136.531325,I,Above,Gable,0,5701,,21.0728185,0,1.2,,,,1,1,,0.35,nav,1,2010,1,, 11383,NJBF000072615,7110 RIDGE AVENUE,Egg Harbor,NJ,39.37428177,-74.61199556,RES1,3001,,16,NE,1977,1977,3102,1,1,1757.352584,1757.352584,3507,NO,13.45,18.88,1,1.62,6103,110.37417,120.858076,130.556506,136.600594,I,Above,Gable,0,5701,,16.16514538,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 11384,NJBF000072630,130 BAYBERRY AVENUE,Egg Harbor,NJ,39.37433375,-74.61369503,RES1,3001,,16,NE,1999,1999,3102,1,1,2764.451299,2764.451299,3507,NO,21.52,32.08,1,2.42,6112,110.334624,120.829179,130.530184,136.564491,I,Above,Hip,0,5701,,26.80231696,0,0,,,,1,1,,0.35,nav,1,1999,1,, 11385,NJBF000072657,116 BAYBERRY AVENUE,Egg Harbor,NJ,39.37442756,-74.61571913,RES1,3001,,16,NE,2009,2009,3102,2,1,3677.556374,3677.556374,3507,NO,35.71,41.96,1,1.05,6112,110.287177,120.794511,130.498604,136.520989,I,Above,Gable,0,5701,,38.83425132,0,0,,,,1,1,,0.35,nav,1,2009,2,, 11386,NJBF000072662,7111 RIDGE AVENUE,Egg Harbor,NJ,39.37444105,-74.61265113,RES1,3001,,16,NE,1964,1964,3102,1,1,1602.267518,1602.267518,3507,NO,18.69,28.83,1,0.22,6103,110.357455,120.84559,130.544715,136.58455,I,Above,Gable,0,5701,,23.75749841,0,0,,,,1,1,,0.03,nav,1,1964,1,, 11387,NJBF000072690,7108 RIDGE AVENUE,Egg Harbor,NJ,39.3745531,-74.61189544,RES1,3001,,16,NE,1988,1988,3102,1,1,1702.105266,1702.105266,3507,NO,11.93,20.82,1,-0.33,6103,110.373655,120.857148,130.554857,136.598546,I,Above,Gable,0,5701,,16.37847683,0,0,,,,1,1,,0.03,nav,1,1988,1,, 11388,NJBF000072736,7106 RIDGE AVENUE,Egg Harbor,NJ,39.37472283,-74.61179628,RES1,3001,,16,NE,1992,1992,3102,1,1,523.4255798,523.4255798,3507,NO,18.47,33.03,1,-0.46,6103,110.374196,120.857163,130.554362,136.598002,I,Above,Gable,0,5701,,25.74800517,0,0,,,,1,1,,0.03,nav,1,1992,1,, 11389,NJBF000072724,122 BAYBERRY AVENUE,Egg Harbor,NJ,39.37469411,-74.61432018,RES1,3001,,16,NE,1990,1990,3102,2,1,3004.858373,3004.858373,3507,NO,26.65,41.5,1,-0.02,6112,110.316486,120.81529,130.516543,136.545995,I,Above,Gable,0,5701,,34.07488756,0,0,,,,1,1,,0.35,nav,1,1990,2,, 11390,NJBF000072761,7106 RIDGE AVENUE,Egg Harbor,NJ,39.37483091,-74.61171495,RES1,3001,,16,NE,1992,1992,3102,1,1,2019.058269,2019.058269,3507,NO,18.14,29.74,1,0.03,6103,110.374973,120.857475,130.554323,136.598032,I,Above,Gable,0,5701,,23.9406886,0,0,,,,1,1,,0.03,nav,1,1992,1,, 11391,NJBF000072784,405 DELAWARE AVENUE,Egg Harbor,NJ,39.37491743,-74.61067978,RES1,3001,,16,NE,2012,2012,3102,2,1,3864.013583,3864.013583,3507,NO,23.17,34.39,1,-0.87,6106,110.397911,120.873955,130.569032,136.618221,I,Above,Hip,0,5701,,28.77968549,0,0,,,,1,1,,0.03,nav,1,2012,2,, 11392,NJBF000072830,7107 RIDGE AVENUE,Egg Harbor,NJ,39.37511095,-74.61229607,RES1,3001,,16,NE,1970,1970,3102,1,1,2478.514948,2478.514948,3507,NO,15.91,25.72,1,-0.15,6103,110.358863,120.845069,130.542228,136.581673,I,Above,Hip,0,5701,,20.81629642,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 11393,NJBF000072823,,Egg Harbor,NJ,39.3750742,-74.58623155,RES1,3001,,NaN,NE,2005,0,3102,2,1,2707.259758,2707.259758,3507,NO,25.16,31.48,1,0.71,6112,110.957223,121.285398,130.951166,137.123179,I,Above,Hip,0,5701,,28.32112628,0,0,,,,1,1,,0.35,nav,1,2005,2,, 11394,NJBF000072856,403 DELAWARE AVENUE,Egg Harbor,NJ,39.37524011,-74.61093803,RES1,3001,,16,NE,1968,1968,3102,1,1,1806.788776,1806.788776,3507,NO,18.66,32.69,1,1.89,6112,110.388848,120.86652,130.56131,136.607915,I,Above,Gable,0,5701,,25.67306807,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 11395,NJBF000072835,139 GARNETT LANE,Egg Harbor,NJ,39.3751215,-74.58645478,RES1,3001,,16,NE,2005,2005,3102,2,1,2646.196427,2646.196427,3507,NO,21.24,35.93,1,-0.4,6112,110.951657,121.281124,130.946987,137.117836,I,Above,Gable,0,5701,,28.58483401,0,0,,,,1,1,,0.35,nav,1,2005,2,, 11396,NJBF000072861,141 GARNETT LANE,Egg Harbor,NJ,39.37525485,-74.58665111,RES1,3001,,16,NE,2005,2005,3102,2,1,2958.306222,2958.306222,3507,NO,37.23,45.85,1,2.21,6112,110.945859,121.276431,130.9422,137.111713,I,Above,Hip,0,5701,,41.54011585,0,0,,,,1,1,,0.35,nav,1,2005,2,, 11397,NJBF000072896,130 GARNETT LANE,Egg Harbor,NJ,39.37552386,-74.5866269,RES1,3001,,16,NE,2005,2005,3102,2,1,2804.193,2804.193,3507,NO,24.81,33.57,1,-0.69,6112,110.943794,121.274123,130.939352,137.108068,I,Above,Gable,0,5701,,29.18720291,0,0,,,,1,1,,0.35,nav,1,2005,2,, 11398,NJBF000072901,124 GARNETT LANE,Egg Harbor,NJ,39.37555004,-74.58598309,RES1,3001,,16,NE,2005,2005,3102,2,1,2719.851495,2719.851495,3507,NO,23.48,28.77,1,-0.03,6112,110.958278,121.284829,130.949476,137.121007,I,Above,Hip,0,5701,,26.12563145,0,0,,,,1,1,,0.35,nav,1,2005,2,, 11399,NJBF000072940,7101 RIDGE AVENUE,Egg Harbor,NJ,39.37576781,-74.61183393,RES1,3001,,16,NE,1956,1956,3102,1,1,659.1286356,659.1286356,3507,NO,15.89,28.34,1,0.1,6112,110.36338,120.84647,130.541505,136.581212,I,Above,Gable,0,5701,,22.11255485,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 11400,NJBF000072920,86 BURNSIDE DRIVE,Egg Harbor,NJ,39.37564984,-74.58988216,RES1,3001,,16,NE,2003,2003,3102,1,1,2684.960824,2684.960824,3507,NO,10.63,19.41,1,-0.76,6112,110.868073,121.21749,130.885351,137.038683,I,Above,Gable,0,5701,,15.01970783,0,0,,,,1,1,,0.35,nav,1,2003,1,, 11401,NJBF000072923,128 GARNETT LANE,Egg Harbor,NJ,39.37565918,-74.58644931,RES1,3001,,16,NE,2005,2005,3102,2,1,2707.258095,2707.258095,3507,NO,27.2,35.54,1,-0.87,6112,110.946564,121.275792,130.94061,137.109676,I,Above,Gable,0,5701,,31.3715748,0,0,,,,1,1,,0.35,nav,1,2005,2,, 11402,NJBF000072927,80 BURNSIDE DRIVE,Egg Harbor,NJ,39.37568935,-74.59051695,RES1,3001,,16,NE,2004,2004,3102,2,1,5758.558593,5758.558593,3507,NO,31.82,43.82,1,0.85,6112,110.85316,121.206313,130.874695,137.024921,I,Above,Gable,0,5701,,37.81629329,0,0,,,,1,1,,0.35,nav,1,2004,2,, 11403,NJBF000072926,88 BURNSIDE DRIVE,Egg Harbor,NJ,39.37568615,-74.58965701,RES1,3001,,16,NE,2003,2003,3102,2,1,2667.51903,2667.51903,3507,NO,36.93,46.78,1,-0.26,6112,110.87288,121.220952,130.888532,137.042793,I,Above,Hip,0,5701,,41.85335644,0,0,,,,1,1,,0.35,nav,1,2003,2,, 11404,NJBF000072930,76 BURNSIDE DRIVE,Egg Harbor,NJ,39.37571014,-74.59078643,RES1,3001,,16,NE,2004,2004,3102,1,1,2744.106476,2744.106476,3507,NO,17.08,32.03,1,2.61,6112,110.846799,121.201535,130.870133,137.019022,I,Above,Hip,0,5701,,24.55455809,0,0,,,,1,1,,0.35,nav,1,2004,1,, 11405,NJBF000072928,126 GARNETT LANE,Egg Harbor,NJ,39.37569752,-74.58624494,RES1,3001,,16,NE,2005,2005,3102,2,1,2612.270706,2612.270706,3507,NO,24.96,32.46,1,0.81,6112,110.950856,121.278872,130.943446,137.113301,I,Above,Hip,0,5701,,28.7099636,0,0,,,,1,1,,0.03,nav,1,2005,2,, 11406,NJBF000072938,90 BURNSIDE DRIVE,Egg Harbor,NJ,39.37575293,-74.58947183,RES1,3001,,16,NE,2003,2003,3102,1,1,2520.186945,2520.186945,3507,NO,12.07,19.56,1,-0.53,6112,110.876475,121.223422,130.8907,137.045596,I,Above,Hip,0,5701,,15.81324147,0,0,,,,1,1,,0.35,nav,1,2003,1,, 11407,NJBF000072936,,Egg Harbor,NJ,39.37574871,-74.57252453,RES1,3001,,NaN,NE,2002,0,3102,2,1,1893.030934,1893.030934,3507,NO,34.62,44.49,1,-0.79,6112,111.263783,121.513036,131.169057,137.396179,I,Above,Gable,0,5701,,39.55503801,0,0,,,,1,1,,0.15,nav,1,2002,2,, 11408,NJBF000072947,92 BURNSIDE DRIVE,Egg Harbor,NJ,39.37585282,-74.58931743,RES1,3001,,16,NE,2003,2003,3102,1,1,2622.925315,2622.925315,3507,NO,19.8,28.46,1,2.18,6112,110.87907,121.225052,130.891989,137.047269,I,Above,Hip,0,5701,,24.13003633,0,0,,,,1,1,,0.35,nav,1,2003,1,, 11409,NJBF000072955,66 BURNSIDE DRIVE,Egg Harbor,NJ,39.37593393,-74.59219614,RES1,3001,,16,NE,2004,2004,3102,2,1,2498.853545,2498.853545,3507,NO,37.56,50.94,1,1.86,6112,110.812385,121.175369,130.8449,136.986343,I,Above,Flat,0,5701,,44.24656307,0,0,,,,1,1,,0.03,nav,1,2004,2,, 11410,NJBF000072952,,Egg Harbor,NJ,39.37590117,-74.57276904,RES1,3001,,NaN,NE,2002,0,3102,2,1,2286.587033,2286.587033,3507,NO,31.64,46.27,1,1.97,6112,111.25673,121.507285,131.163132,137.388792,I,Above,Gable,0,5701,,38.95648564,0,0,,,,1,1,,0.15,nav,1,2002,2,, 11411,NJBF000072964,319 DELAWARE AVENUE,Egg Harbor,NJ,39.37604425,-74.61245596,RES1,3001,,16,NE,1974,1974,3102,1,1,1889.187646,1889.187646,3507,NO,21.08,35.87,1,2.9,6112,110.346682,120.833445,130.528846,136.564061,I,Above,Gable,0,5701,,28.47418777,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11412,NJBF000072959,64 BURNSIDE DRIVE,Egg Harbor,NJ,39.37598882,-74.59237723,RES1,3001,,16,NE,2004,2004,3102,1,1,2511.442998,2511.442998,3507,NO,15.22,25.34,1,2.74,6112,110.807722,121.171751,130.841352,136.981744,I,Above,Gable,0,5701,,20.27954779,0,0,,,,1,1,,0.35,nav,1,2004,1,, 11413,NJBF000072958,94 BURNSIDE DRIVE,Egg Harbor,NJ,39.37598154,-74.58920371,RES1,3001,,16,NE,2003,2003,3102,1,1,2667.515675,2667.515675,3507,NO,18.79,29.89,1,1.22,6112,110.880433,121.225677,130.892254,137.047625,I,Above,Hip,0,5701,,24.33823595,0,0,,,,1,1,,0.35,nav,1,2003,1,, 11414,NJBF000072961,62 BURNSIDE DRIVE,Egg Harbor,NJ,39.37601877,-74.59253882,RES1,3001,,16,NE,2004,2004,3102,2,1,2742.148996,2742.148996,3507,NO,24.72,34.24,1,1.91,6112,110.80373,121.168705,130.838408,136.977924,I,Above,Gable,0,5701,,29.48193303,0,0,,,,1,1,,0.35,nav,1,2004,2,, 11415,NJBF000072968,60 BURNSIDE DRIVE,Egg Harbor,NJ,39.37605821,-74.5926977,RES1,3001,,16,NE,2004,2004,3102,1,1,2561.879375,2561.879375,3507,NO,13.84,24.81,1,-0.08,6112,110.799723,121.16562,130.835406,136.974027,I,Above,Gable,0,5701,,19.32712995,0,0,,,,1,1,,0.35,nav,1,2004,1,, 11416,NJBF000072973,58 BURNSIDE DRIVE,Egg Harbor,NJ,39.3760968,-74.59287281,RES1,3001,,16,NE,2004,2004,3102,1,1,2581.260826,2581.260826,3507,NO,14.13,21.6,1,0.32,6112,110.795351,121.162265,130.83215,136.969798,I,Above,Gable,0,5701,,17.86468987,0,0,,,,1,1,,0.35,nav,1,2004,1,, 11417,NJBF000072977,56 BURNSIDE DRIVE,Egg Harbor,NJ,39.37614317,-74.59304991,RES1,3001,,16,NE,2004,2004,3102,1,1,2648.11959,2648.11959,3507,NO,16.39,21.86,1,1.17,6112,110.790868,121.158807,130.828779,136.96542,I,Above,Gable,0,5701,,19.12529495,0,0,,,,1,1,,0.15,nav,1,2004,1,, 11418,NJBF000072969,6837 MILL ROAD,Egg Harbor,NJ,39.3760743,-74.57302048,RES1,3001,,16,NE,2002,2002,3102,2,1,2217.751517,2217.751517,3507,NO,30.5,40.92,1,0.13,6112,111.24932,121.5012,131.156839,137.380936,I,Above,Gable,0,5701,,35.70959716,0,0,,,,1,1,,0.35,nav,1,2002,2,, 11419,NJBF000072979,54 BURNSIDE DRIVE,Egg Harbor,NJ,39.37617967,-74.59321464,RES1,3001,,16,NE,2004,2004,3102,1,1,2914.707375,2914.707375,3507,NO,17.71,28.4,1,0.22,6112,110.786745,121.155643,130.825709,136.96143,I,Above,Gable,0,5701,,23.05475159,0,0,,,,1,1,,0.15,nav,1,2004,1,, 11420,NJBF000072991,315 DELAWARE AVENUE,Egg Harbor,NJ,39.37628393,-74.61296197,RES1,3001,,16,NE,2009,2009,3102,2,1,3017.452714,3017.452714,3507,NO,35.11,40.95,1,2.19,6112,110.333061,120.822715,130.518381,136.549871,I,Above,Gable,0,5701,,38.03020892,0,0,,,,1,1,,0.35,nav,1,2009,2,, 11421,NJBF000072980,98 BURNSIDE DRIVE,Egg Harbor,NJ,39.37620648,-74.58900689,RES1,3001,,16,NE,2003,2003,3102,1,1,2585.137019,2585.137019,3507,NO,19.5,29.04,1,1.74,6112,110.88283,121.226776,130.892728,137.048258,I,Above,Hip,0,5701,,24.27197575,0,0,,,,1,1,,0.35,nav,1,2003,1,, 11422,NJBF000072983,52 BURNSIDE DRIVE,Egg Harbor,NJ,39.37621633,-74.59337604,RES1,3001,,16,NE,2004,2004,3102,1,1,2541.510472,2541.510472,3507,NO,20.67,33.63,1,1.76,6112,110.782724,121.152557,130.822715,136.957537,I,Above,Gable,0,5701,,27.14838508,0,0,,,,1,1,,0.15,nav,1,2004,1,, 11423,NJBF000072999,30 JACKSON DRIVE,Egg Harbor,NJ,39.37633501,-74.58525668,RES1,3001,,16,NE,2005,2005,3102,1,1,2608.377284,2608.377284,3507,NO,14.63,25.61,1,2.86,6112,110.967388,121.289271,130.951802,137.123944,I,Above,Hip,0,5701,,20.11927926,0,0,,,,1,1,,0.35,nav,1,2005,1,, 11424,NJBF000073008,28 JACKSON DRIVE,Egg Harbor,NJ,39.37645326,-74.58516548,RES1,3001,,16,NE,2005,2005,3102,2,1,2583.178513,2583.178513,3507,NO,34.73,40.06,1,-0.15,6112,110.968381,121.289648,130.951874,137.124029,I,Above,Hip,0,5701,,37.39888461,0,0,,,,1,1,,0.35,nav,1,2005,2,, 11425,NJBF000073018,7118 FERNWOOD AVENUE,Egg Harbor,NJ,39.37655032,-74.6169358,RES1,3001,,16,NE,2009,2009,3102,1,1,3901.4605,3901.4605,3507,NO,11.37,19.85,1,-0.15,6112,110.240137,120.754121,130.455595,136.463227,I,Above,Gable,0,5701,,15.60859235,0,0,,,,1,1,,0.35,nav,1,2009,1,, 11426,NJBF000073022,26 JACKSON DRIVE,Egg Harbor,NJ,39.37656736,-74.58507153,RES1,3001,,16,NE,2005,2005,3102,1,1,2493.04923,2493.04923,3507,NO,12.41,25.21,1,0.34,6112,110.969439,121.290082,130.95201,137.124196,I,Above,Gable,0,5701,,18.81312045,0,0,,,,1,1,,0.35,nav,1,2005,1,, 11427,NJBF000073025,3312 BARGAINTOWN ROAD,Egg Harbor,NJ,39.3766233,-74.57945881,RES1,3001,,NaN,NE,1969,0,3102,2,1,763.8103451,763.8103451,3507,NO,40.58,52.04,1,2.03,6112,111.097129,121.385286,131.043213,137.239454,I,Above,Gable,0,5701,,46.30931016,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11428,NJBF000073034,24 JACKSON DRIVE,Egg Harbor,NJ,39.37673427,-74.58495254,RES1,3001,,16,NE,2005,2005,3102,1,1,2585.118756,2585.118756,3507,NO,11.24,22.66,1,0.06,6112,110.970602,121.290425,130.951929,137.124084,I,Above,Hip,0,5701,,16.94894312,0,0,,,,1,1,,0.35,nav,1,2005,1,, 11429,NJBF000073071,1010 OLD ZION ROAD,Egg Harbor,NJ,39.37727532,-74.58218147,RES1,3001,,16,NE,2007,2007,3102,1,1,1879.476667,1879.476667,3507,NO,17.57,24.68,1,1.05,6112,111.028909,121.332206,130.990616,137.173094,I,Above,Gable,0,5701,,21.12775451,0,0,,,,1,1,,0.35,nav,1,2007,1,, 11430,NJBF000073085,1010 OLD ZION ROAD,Egg Harbor,NJ,39.37743755,-74.58219681,RES1,3001,,16,NE,2007,2007,3102,1,1,835.5366136,835.5366136,3507,NO,16.52,28.38,1,0.64,6112,111.027048,121.330287,130.988384,137.170245,I,Above,Gable,0,5701,,22.44875902,0,0,,,,1,1,,0.35,nav,1,2007,1,, 11431,NJBF000073088,1009 OLD ZION ROAD,Egg Harbor,NJ,39.37747004,-74.58349661,RES1,3001,,16,NE,1890,1890,3102,2,1,1580.913394,1580.913394,3507,NO,23.48,35.58,1,2.04,6112,110.997086,121.307807,130.966752,137.142857,I,Above,Gable,0,5701,,29.53003029,0,0,,,,1,1,,0.35,nav,1,1890,2,, 11432,NJBF000073101,1009 OLD ZION ROAD,Egg Harbor,NJ,39.37758459,-74.58289885,RES1,3001,,16,NE,1890,1890,3102,2,1,1430.689943,1430.689943,3507,NO,25.58,36.72,1,-0.42,6112,111.009688,121.316837,130.975125,137.153453,I,Above,Gable,0,5701,,31.14670541,0,0,,,,1,1,,0.35,nav,1,1890,2,, 11433,NJBF000073097,1010 OLD ZION ROAD,Egg Harbor,NJ,39.37756661,-74.58178097,RES1,3001,,16,NE,2007,2007,3102,1,1,1921.164193,1921.164193,3507,NO,15.22,26.07,1,2.82,6112,111.035362,121.336078,130.993637,137.176856,I,Above,Gable,0,5701,,20.64279581,0,0,,,,1,1,,0.35,nav,1,2007,1,, 11434,NJBF000073106,1006 OLD ZION ROAD,Egg Harbor,NJ,39.37767241,-74.58206355,RES1,3001,,16,NE,1970,1970,3102,2,1,739.5825473,739.5825473,3507,NO,22.27,34.82,1,-0.13,6110,111.02795,121.330192,130.987731,137.16938,I,Above,Gable,0,5701,,28.54548734,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 11435,NJBF000073120,1006 OLD ZION ROAD,Egg Harbor,NJ,39.37791842,-74.58231503,RES1,3001,,16,NE,1970,1970,3102,2,1,1919.214582,1919.214582,3507,NO,27.42,33.07,1,2.71,6110,111.020001,121.323432,130.980647,137.160387,I,Above,Gable,0,5701,,30.24428146,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 11436,NJBF000073191,6701 MILL ROAD,Egg Harbor,NJ,39.37881361,-74.58255161,RES1,3001,,16,NE,1965,1965,3102,1,1,1698.220031,1698.220031,3507,NO,18.39,29.96,1,1.15,6110,111.006663,121.310375,130.965921,137.141631,I,Above,Gable,0,5701,,24.17632995,0,0,,,,1,1,,0.35,nav,1,1965,1,, 11437,NJBF000073223,6623 MILL ROAD,Egg Harbor,NJ,39.37909613,-74.58593258,RES1,3001,,16,NE,1980,1980,3102,2,1,1707.898724,1707.898724,3507,NO,33.09,46.47,1,2.52,6112,110.927244,121.250055,130.907472,137.067327,I,Above,Gable,0,5701,,39.78029877,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 11438,NJBF000073247,6700 MILL ROAD,Egg Harbor,NJ,39.37929929,-74.58258671,RES1,3001,,16,NE,1965,1965,3102,1,1,2861.376002,2861.376002,3507,NO,19.99,34.61,1,2.15,6112,111.001675,121.304908,130.95947,137.133404,I,Above,Gable,0,5701,,27.29909729,0,0,,,,1,1,,0.35,nav,1,1965,1,, 11439,NJBF000073296,5117 SPRUCE AVENUE,Egg Harbor,NJ,39.37964526,-74.58366065,RES1,3001,,16,NE,1982,1982,3102,2,1,3345.668256,3345.668256,3507,NO,34.13,39.21,1,2.04,6112,110.974306,121.28317,130.937743,137.10584,I,Above,Gable,0,5701,,36.67076224,0,0,,,,1,1,,0.35,nav,1,1982,2,, 11440,NJBF000073331,6708 MILL ROAD,Egg Harbor,NJ,39.37990979,-74.58120963,RES1,3001,,16,NE,1988,1988,3102,2,1,3222.897112,3222.897112,3507,NO,23.33,34.97,1,0.46,6112,111.02779,121.322216,130.974606,137.152408,I,Above,Gable,0,5701,,29.14863749,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 11441,NJBF000073475,5112 SPRUCE AVENUE,Egg Harbor,NJ,39.38101074,-74.58178725,RES1,3001,,16,NE,1960,1960,3102,1,1,1974.458335,1974.458335,3507,NO,10.26,21.85,1,-0.74,6112,111.005584,121.301365,130.951771,137.123422,I,Above,Gable,0,5701,,16.05856027,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 11442,NJBF000073514,5108 SPRUCE AVENUE,Egg Harbor,NJ,39.38125323,-74.58164411,RES1,3001,,16,NE,1950,1950,3102,1,1,899.5104444,899.5104444,3507,NO,13.46,21.63,1,-0.27,6112,111.006872,121.301377,130.95117,137.122624,I,Above,Hip,0,5701,,17.54847461,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 11443,NJBF000073526,5108 SPRUCE AVENUE,Egg Harbor,NJ,39.38136277,-74.58174509,RES1,3001,,16,NE,1950,1950,3102,1,1,1623.584427,1623.584427,3507,NO,19.06,28.83,1,0.14,6112,111.003702,121.29856,130.948177,137.118831,I,Above,Gable,0,5701,,23.9467341,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 11444,NJBF000073506,3215 FIRE ROAD,Egg Harbor,NJ,39.38118621,-74.57636546,RES1,3001,,NaN,NE,1969,0,3102,2,1,19006.97406,19006.97406,3507,NO,24.82,34.11,1,0.29,6110,111.12704,121.391975,131.039074,137.232654,I,Above,Flat,0,5701,,29.465449,0,0,,,,1,1,,1,nav,1,1969,2,, 11445,NJBF000073558,,Egg Harbor,NJ,39.381595,-74.57887214,RES1,3001,,NaN,NE,1969,0,3102,2,1,2564.777897,2564.777897,3507,NO,39.43,48.85,1,1.83,6110,111.066896,121.345122,130.992586,137.174566,I,Above,Gable,0,5701,,44.14049226,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11446,NJBF000073570,5110 SPRUCE AVENUE,Egg Harbor,NJ,39.38167418,-74.58197301,RES1,3001,,16,NE,1967,1967,3102,1,1,2774.147041,2774.147041,3507,NO,16.79,31.31,1,1.19,6112,110.996068,121.29158,130.940659,137.109296,I,Above,Hip,0,5701,,24.04909753,0,0,,,,1,1,,0.35,nav,1,1967,1,, 11447,NJBF000073597,,Egg Harbor,NJ,39.38189165,-74.57944655,RES1,3001,,NaN,NE,1969,0,3102,2,1,2187.712084,2187.712084,3507,NO,26.03,37.89,1,1.58,6110,111.051496,121.332356,130.979487,137.158084,I,Above,Gable,0,5701,,31.95635021,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11448,NJBF000073595,,Egg Harbor,NJ,39.38187896,-74.5788681,RES1,3001,,NaN,NE,1969,0,3102,2,1,3632.945052,3632.945052,3507,NO,30.55,36.34,1,2.3,6110,111.064699,121.342343,130.989194,137.170239,I,Above,Flat,0,5701,,33.44829421,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11449,NJBF000073599,5102 SPRUCE AVENUE,Egg Harbor,NJ,39.3819133,-74.58213952,RES1,3001,,16,NE,1960,1960,3102,1,1,3097.891418,3097.891418,3507,NO,18.56,28.8,1,-0.87,6112,110.990412,121.286359,130.935016,137.102138,I,Above,Gable,0,5701,,23.67868777,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 11450,NJBF000073636,,Egg Harbor,NJ,39.38215504,-74.57845156,RES1,3001,,NaN,NE,1969,0,3102,2,1,2556.050574,2556.050574,3507,NO,24.62,36.63,1,0.86,6110,111.071903,121.346661,130.992699,137.174537,I,Above,Gable,0,5701,,30.62466547,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11451,NJBF000073645,,Egg Harbor,NJ,39.38222094,-74.57950705,RES1,3001,,NaN,NE,1969,0,3102,2,1,2194.496235,2194.496235,3507,NO,40.76,52.87,1,1.97,6110,111.047528,121.328043,130.97449,137.151736,I,Above,Gable,0,5701,,46.81509977,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11452,NJBF000073671,,Egg Harbor,NJ,39.38242076,-74.57823215,RES1,3001,,NaN,NE,1969,0,3102,2,1,2279.795142,2279.795142,3507,NO,32.37,40.44,1,0.17,6110,111.074764,121.347742,130.993092,137.174944,I,Above,Gable,0,5701,,36.40114023,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11453,NJBF000073684,,Egg Harbor,NJ,39.38247512,-74.57864244,RES1,3001,,NaN,NE,1969,0,3102,2,1,4015.800755,4015.800755,3507,NO,30.23,42.82,1,2.43,6112,111.065075,121.340221,130.98566,137.165644,I,Above,Gable,0,5701,,36.52555754,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11454,NJBF000073688,,Egg Harbor,NJ,39.38250441,-74.57928176,RES1,3001,,NaN,NE,1969,0,3102,2,1,2393.201028,2393.201028,3507,NO,30.74,36.49,1,-0.68,6110,111.050389,121.329041,130.974748,137.151984,I,Above,Gable,0,5701,,33.61923693,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11455,NJBF000073690,3206 FIRE ROAD,Egg Harbor,NJ,39.38250839,-74.57335917,RES1,3001,,NaN,NE,1969,0,3102,2,1,11902.00566,11902.00566,3507,NO,30.28,40.46,1,0.4,6112,111.184179,121.429981,131.073097,137.27406,I,Above,Flat,0,5701,,35.36702951,0,0,,,,1,1,,1,nav,1,1969,2,, 11456,NJBF000073736,,Egg Harbor,NJ,39.38279576,-74.57906833,RES1,3001,,NaN,NE,1969,0,3102,2,1,2566.701588,2566.701588,3507,NO,38.84,52.48,1,-0.03,6110,111.052945,121.329762,130.974715,137.151863,I,Above,Gable,0,5701,,45.66017983,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11457,NJBF000073758,5090 SPRUCE AVENUE,Egg Harbor,NJ,39.38298573,-74.58323517,RES1,3001,,16,NE,2000,2000,3102,1,1,3517.588068,3517.588068,3507,NO,19.36,27.1,1,1.89,6112,110.957501,121.257103,130.904056,137.062862,I,Above,Gable,0,5701,,23.23322241,0,1.2,,,,1,1,,0.35,nav,1,2000,1,, 11458,NJBF000073834,,Egg Harbor,NJ,39.38346514,-74.57431777,RES1,3001,,NaN,NE,1969,0,3102,2,1,26527.33044,26527.33044,3507,NO,25.09,33.76,1,2.11,6112,111.154872,121.403977,131.045387,137.2394,I,Above,Flat,0,5701,,29.42260756,0,0,,,,1,1,,1,nav,1,1969,2,, 11459,NJBF000073908,5086 SPRUCE AVENUE,Egg Harbor,NJ,39.38392224,-74.5844936,RES1,3001,,16,NE,1960,1960,3102,1,1,5039.393949,5039.393949,3507,NO,11.17,18.97,1,0.54,6112,110.92238,121.226509,130.872141,137.022314,I,Above,Gable,0,5701,,15.07025991,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11460,NJBF000073957,5080 SPRUCE AVENUE,Egg Harbor,NJ,39.38419789,-74.58525213,RES1,3001,,16,NE,1959,1959,3102,2,1,1783.512237,1783.512237,3507,NO,30.61,43.04,1,-0.99,6112,110.903435,121.210964,130.856469,137.002364,I,Above,Gable,0,5701,,36.82867981,0,0,,,,1,1,,0.15,nav,1,1959,2,, 11461,NJBF000074064,5076 SPRUCE AVENUE,Egg Harbor,NJ,39.38469646,-74.58525602,RES1,3001,,16,NE,1900,1900,3102,2,1,2012.272848,2012.272848,3507,NO,38.6,52.89,1,0.45,6110,110.899931,121.205989,130.85032,136.994546,I,Above,Flat,0,5701,,45.74687304,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 11462,NJBF000074061,5076 SPRUCE AVENUE,Egg Harbor,NJ,39.38468774,-74.58626499,RES1,3001,,16,NE,1900,1900,3102,2,1,3301.443258,3301.443258,3507,NO,35.25,40.88,1,0.41,6112,110.877404,121.189024,130.834086,136.973817,I,Above,Gable,0,5701,,38.06140626,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 11463,NJBF000074130,5074 SPRUCE AVENUE,Egg Harbor,NJ,39.3850277,-74.58630595,RES1,3001,,16,NE,1980,1980,3102,2,1,1096.281275,1096.281275,3507,NO,35.32,41.65,1,-0.18,6112,110.874228,121.184992,130.829268,136.967689,I,Above,Gable,0,5701,,38.48680377,0,1.1,,,,1,1,,0.15,nav,1,1980,2,, 11464,NJBF000074214,5074 SPRUCE AVENUE,Egg Harbor,NJ,39.3853999,-74.58599048,RES1,3001,,16,NE,1980,1980,3102,2,1,1602.249771,1602.249771,3507,NO,37.47,50.87,1,-0.33,6112,110.878844,121.186673,130.829828,136.96844,I,Above,Gable,0,5701,,44.16970127,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 11465,NJBF000074173,3187 FIRE ROAD,Egg Harbor,NJ,39.38522194,-74.57178036,RES1,3001,569,NaN,NE,1969,0,3102,2,1,16167.35915,16167.35915,3507,NO,35.1,46.75,1,1.53,6112,111.198385,121.429638,131.066444,137.264246,I,Above,Flat,0,5701,,40.92611078,0,0,,,,1,1,,1,nav,1,1969,2,, 11466,NJBF000074384,5072 SPRUCE AVENUE,Egg Harbor,NJ,39.38617074,-74.58655759,RES1,3001,,16,NE,1988,1988,3102,2,1,2707.259302,2707.259302,3507,NO,35.84,50.49,1,0.62,6112,110.861276,121.169538,130.811215,136.944719,I,Above,Gable,0,5701,,43.16689245,0,0,,,,1,1,,0.03,nav,1,1988,2,, 11467,NJBF000074494,1133 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38668179,-74.71833261,IND2,3001,510,NaN,ME,1969,0,3401,3,1,1343.006341,1343.006341,3507,NO,36.92,45.73,1,1.67,6106,109.372861,119.253685,129.003107,134.218129,I,Above,Gable,0,NaN,,41.32899555,0,0,,,,1,1,,0.03,nav,1,1969,3,, 11468,NJBF000074625,1119 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.38722949,-74.72234547,RES1,3001,,16,NE,1985,1985,3102,1,1,1042.016761,1042.016761,3507,NO,17.19,25.79,1,1.23,6106,109.342099,119.204703,128.950121,134.128521,I,Above,Flat,0,5701,,21.49011292,0,0,,,,1,1,,0.03,nav,1,1985,1,, 11469,NJBF000074653,1133 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.3873553,-74.7175188,IND2,3001,510,NaN,ME,1969,0,3401,2,1,785.1490784,785.1490784,3507,NO,28.18,35.08,1,0.09,6110,109.373759,119.25742,129.006534,134.224567,I,Above,Flat,0,NaN,,31.6310538,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11470,NJBF000075767,5028 SPRUCE AVENUE,Egg Harbor,NJ,39.39104266,-74.58993605,RES1,3001,,16,NE,1980,1980,3102,2,1,581.585013,581.585013,3507,NO,26.54,39.77,1,0.71,6112,110.76095,121.065606,130.697154,136.799098,I,Above,Gable,0,5701,,33.15592948,0,0,,,,1,1,,0.35,nav,1,1980,2,, 11471,NJBF000075779,5028 SPRUCE AVENUE,Egg Harbor,NJ,39.3910819,-74.58952141,RES1,3001,,16,NE,1980,1980,3102,2,1,1279.490036,1279.490036,3507,NO,30.33,37.93,1,1.65,6112,110.76971,121.072167,130.703296,136.807063,I,Above,Gable,0,5701,,34.12765559,0,0,,,,1,1,,0.35,nav,1,1980,2,, 11472,NJBF000075810,5028 SPRUCE AVENUE,Egg Harbor,NJ,39.391221,-74.58964009,RES1,3001,,16,NE,1980,1980,3102,2,1,2009.366193,2009.366193,3507,NO,26.69,40.52,1,-0.74,6112,110.766506,121.068842,130.699682,136.802439,I,Above,Gable,0,5701,,33.60608399,0,0,,,,1,1,,0.35,nav,1,1980,2,, 11473,NJBF000075858,5028 SPRUCE AVENUE,Egg Harbor,NJ,39.39138385,-74.59012091,RES1,3001,,16,NE,1980,1980,3102,2,1,1945.390903,1945.390903,3507,NO,35.15,49.33,1,2.85,6112,110.755422,121.059242,130.690001,136.789963,I,Above,Gable,0,5701,,42.24015266,0,0,,,,1,1,,0.03,nav,1,1980,2,, 11474,NJBF000076146,5018 SPRUCE AVENUE,Egg Harbor,NJ,39.3923813,-74.59048582,RES1,3001,,16,NE,1970,1970,3102,1,1,2928.257562,2928.257562,3507,NO,15.79,26.98,1,2.97,6103,110.74327,121.043598,130.671887,136.766883,I,Above,Gable,0,5701,,21.38458915,0,0,,,,1,1,,0.03,nav,1,1970,1,, 11475,NJBF000076227,5016 SPRUCE AVENUE,Egg Harbor,NJ,39.3926586,-74.59079771,RES1,3001,,16,NE,2002,2002,3102,2,1,2407.752619,2407.752619,3507,NO,30.41,44.28,1,0.44,6103,110.735466,121.035739,130.663492,136.756105,I,Above,Gable,0,5701,,37.34732291,0,0,,,,1,1,,0.03,nav,1,2002,2,, 11476,NJBF000076337,5012 SPRUCE AVENUE,Egg Harbor,NJ,39.3930385,-74.59132568,RES1,3001,,16,NE,2013,2013,3102,1,1,2195.499417,2195.499417,3507,NO,13.92,21.22,1,-0.21,6110,110.722722,121.023318,130.650415,136.739274,I,Above,Hip,0,5701,,17.56668599,0,0,,,,1,1,,0.03,nav,1,2013,1,, 11477,NJBF000076416,5010 SPRUCE AVENUE,Egg Harbor,NJ,39.39331285,-74.59161715,RES1,3001,,16,NE,1966,1966,3102,1,1,579.6444428,579.6444428,3507,NO,15.85,28.16,1,0.14,6112,110.715492,121.015864,130.642416,136.728991,I,Above,Gable,0,5701,,22.00497958,0,0,,,,1,1,,0.03,nav,1,1966,1,, 11478,NJBF000076432,5010 SPRUCE AVENUE,Egg Harbor,NJ,39.39337609,-74.59176214,RES1,3001,,16,NE,1966,1966,3102,1,1,2065.259205,2065.259205,3507,NO,12.45,17.73,1,0.38,6112,110.712187,121.012852,130.63934,136.725014,I,Above,Gable,0,5701,,15.09418864,0,0,,,,1,1,,0.35,nav,1,1966,1,, 11479,NJBF000076584,5008 SPRUCE AVENUE,Egg Harbor,NJ,39.39398086,-74.59111953,RES1,3001,,16,NE,1982,1982,3102,1,1,2000.646131,2000.646131,3507,NO,13.77,20.8,1,-0.83,6103,110.723417,121.017769,130.642035,136.728835,I,Above,Gable,0,5701,,17.28434321,0,1.1,,,,1,1,,0.03,nav,1,1982,1,, 11480,NJBF000076813,5002 SPRUCE AVENUE,Egg Harbor,NJ,39.39489182,-74.5929046,RES1,3001,,16,NE,1945,1945,3102,2,1,849.105659,849.105659,3507,NO,22.77,28.25,1,0.09,6112,110.682761,120.979478,130.602531,136.677761,I,Above,Gable,0,5701,,25.5097763,0,1.2,,,,1,1,,0.35,nav,1,1945,2,, 11481,NJBF000077338,1045 MAYS LANDING S.P.RD,Egg Harbor,NJ,39.39797331,-74.71690874,RES1,3001,,17,NE,2015,2015,3102,2,1,1252.370788,1252.370788,3507,NO,25.73,32.67,1,2.08,6106,109.312398,119.181008,128.914271,134.077605,I,Above,Hip,0,5701,,29.1997851,0,0,,,,1,1,,0.03,nav,1,2015,2,, 11482,NJBF000077259,,Egg Harbor,NJ,39.39753572,-74.59186273,RES1,3001,,NaN,NE,1969,0,3102,2,1,3383.84538,3383.84538,3507,NO,25.75,37.26,1,1.76,6110,110.695769,120.97174,130.586158,136.657985,I,Above,Gable,0,5701,,31.50360637,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11483,NJBF000077335,,Egg Harbor,NJ,39.39796133,-74.59210566,RES1,3001,,NaN,NE,1969,0,3102,2,1,1632.302384,1632.302384,3507,NO,37,47.25,1,1.67,6112,110.6895,120.963711,130.577032,136.646328,I,Above,Flat,0,5701,,42.1246329,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11484,NJBF000077765,5007 TREMONT AVENUE,Egg Harbor,NJ,39.40076059,-74.61244636,RES1,3001,,16,NE,1965,1965,3102,2,1,1115.675636,1115.675636,3507,NO,31.67,38.31,1,0.7,6112,110.298949,120.606763,130.233842,136.182385,I,Above,Gable,0,5701,,34.98988837,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 11485,NJBF000077769,,Egg Harbor,NJ,39.40077093,-74.61193873,RES1,3001,,NaN,NE,1969,0,3102,2,1,1000.321312,1000.321312,3507,NO,33.76,39.84,1,1.58,6112,110.307664,120.614797,130.241122,136.192715,I,Above,Gable,0,5701,,36.79927729,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11486,NJBF000077862,,Egg Harbor,NJ,39.40131455,-74.59197074,RES1,3001,,NaN,NE,1969,0,3102,2,1,872.3666823,872.3666823,3507,NO,26.58,39.67,1,0.15,6112,110.682964,120.934398,130.537286,136.596647,I,Above,Gable,0,5701,,33.12422911,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11487,NJBF000077893,4065 RIDGE AVENUE,Egg Harbor,NJ,39.40148488,-74.59893042,RES1,3001,,16,NE,1920,1920,3102,1,1,1245.556942,1245.556942,3507,NO,16.89,24.04,1,-0.89,6112,110.545741,120.818753,130.42699,136.450415,I,Above,Gable,0,5701,,20.46546797,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11488,NJBF000077900,117 MAIN AVENUE,Egg Harbor,NJ,39.40153662,-74.5941837,RES1,3001,,16,NE,1960,1960,3102,1,1,1017.772351,1017.772351,3507,NO,21.92,34.17,1,2.78,6112,110.638369,120.895942,130.499788,136.547538,I,Above,Flat,0,5701,,28.04551987,0,1.2,,,,1,1,,0.15,nav,1,1960,1,, 11489,NJBF000077954,117 MAIN AVENUE,Egg Harbor,NJ,39.40187172,-74.59491004,RES1,3001,,16,NE,1960,1960,3102,1,1,1178.665088,1178.665088,3507,NO,14.01,26.81,1,1.28,6112,110.623312,120.880911,130.484277,136.527322,I,Above,Flat,0,5701,,20.40941195,0,1.2,,,,1,1,,0.15,nav,1,1960,1,, 11490,NJBF000077972,4098 TREMONT AVENUE,Egg Harbor,NJ,39.40198526,-74.61128679,RES1,3001,,16,NE,1962,1962,3102,1,1,2253.633821,2253.633821,3507,NO,18.75,28.06,1,0.03,6112,110.31883,120.614411,130.235915,136.187304,I,Above,Flat,0,5701,,23.40643133,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 11491,NJBF000078008,4096 TREMONT AVENUE,Egg Harbor,NJ,39.40225228,-74.61115414,RES1,3001,,16,NE,1968,1968,3102,2,1,1007.106106,1007.106106,3507,NO,29.31,42.58,1,-0.69,6112,110.321099,120.614158,130.234612,136.185897,I,Above,Gable,0,5701,,35.94398433,0,0,,,,1,1,,0.35,nav,1,1968,2,, 11492,NJBF000078015,4095 TREMONT AVENUE,Egg Harbor,NJ,39.40231683,-74.61168294,RES1,3001,,16,NE,1960,1960,3102,1,1,1231.985923,1231.985923,3507,NO,14.95,20.65,1,-0.09,6112,110.312002,120.605113,130.226101,136.173949,I,Above,Hip,0,5701,,17.79792428,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11493,NJBF000078017,117 MAIN AVENUE,Egg Harbor,NJ,39.40234626,-74.5932787,RES1,3001,,16,NE,1960,1960,3102,1,1,2649.091835,2649.091835,3507,NO,14.73,26.34,1,0.19,6112,110.654439,120.903246,130.50382,136.55354,I,Above,Flat,0,5701,,20.53142306,0,1.2,,,,1,1,,0.15,nav,1,1960,1,, 11494,NJBF000078044,117 MAIN AVENUE,Egg Harbor,NJ,39.40252145,-74.59300587,RES1,3001,,16,NE,1960,1960,3102,1,1,1425.837709,1425.837709,3507,NO,12.15,26.08,1,1.52,6112,110.659438,120.906093,130.505906,136.556428,I,Above,Gable,0,5701,,19.11693296,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 11495,NJBF000078050,4045 SPRUCE AVENUE,Egg Harbor,NJ,39.40257519,-74.59128447,RES1,3001,,16,NE,1951,1951,3102,1,1,2772.967737,2772.967737,3507,NO,21.07,34.78,1,2.1,6112,110.693502,120.933888,130.532327,136.591076,I,Above,Gable,0,5701,,27.92805664,0,1.2,,,,1,1,,0.35,nav,1,1951,1,, 11496,NJBF000078073,4092 TREMONT AVENUE,Egg Harbor,NJ,39.40274542,-74.61085229,RES1,3001,,16,NE,1966,1966,3102,1,1,1573.185627,1573.185627,3507,NO,15.48,29.52,1,1.2,6112,110.326256,120.614593,130.233027,136.184463,I,Above,Gable,0,5701,,22.49785364,0,0,,,,1,1,,0.35,nav,1,1966,1,, 11497,NJBF000078246,4039 SPRUCE AVENUE,Egg Harbor,NJ,39.40405886,-74.59063063,RES1,3001,,16,NE,1986,1986,3102,1,1,2395.120899,2395.120899,3507,NO,14.49,20.07,1,1.06,6112,110.702823,120.930713,130.523994,136.581272,I,Above,Gable,0,5701,,17.2788044,0,1.2,,,,1,1,,0.35,nav,1,1986,1,, 11498,NJBF000078295,4035 SPRUCE AVENUE,Egg Harbor,NJ,39.40449282,-74.59036783,RES1,3001,,16,NE,1965,1965,3102,1,1,1848.450963,1848.450963,3507,NO,18.57,32.15,1,-0.01,6112,110.70698,120.930968,130.522691,136.579884,I,Above,Gable,0,5701,,25.35857325,0,0,,,,1,1,,0.35,nav,1,1965,1,, 11499,NJBF000078317,4078 TREMONT AVENUE,Egg Harbor,NJ,39.40467713,-74.60994465,RES1,3001,,16,NE,1968,1968,3102,1,1,1124.382587,1124.382587,3507,NO,13.63,27.81,1,-0.86,6109,110.341615,120.611855,130.222713,136.173101,I,Above,Gable,0,5701,,20.72114161,0,0,,,,1,1,,0.03,nav,1,1968,1,, 11500,NJBF000078497,4074 TREMONT AVENUE,Egg Harbor,NJ,39.40583379,-74.60933296,RES1,3001,,16,NE,1966,1966,3102,1,1,1234.886258,1234.886258,3507,NO,16.4,28.88,1,1.77,6109,110.351937,120.611301,130.217494,136.1677,I,Above,Gable,0,5701,,22.63718359,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 11501,NJBF000078716,4061 TREMONT AVENUE,Egg Harbor,NJ,39.40711569,-74.60928595,RES1,3001,,16,NE,1990,1990,3102,1,1,1134.073225,1134.073225,3507,NO,18.75,28.49,1,-0.42,6112,110.352487,120.600608,130.202465,136.148669,I,Above,Gable,0,5701,,23.62081969,0,0,,,,1,1,,0.35,nav,1,1990,1,, 11502,NJBF000079099,4056 IVINS AVENUE,Egg Harbor,NJ,39.40954706,-74.61409937,RES1,3001,,16,NE,1938,1938,3102,1,1,2024.889061,2024.889061,3507,NO,15,25.87,1,0.06,6112,110.272502,120.502823,130.103593,136.011382,I,Above,Gable,0,5701,,20.43404972,0,0,,,,1,1,,0.35,nav,1,1938,1,, 11503,NJBF000079925,101 DOGWOOD AVENUE,Egg Harbor,NJ,39.41334555,-74.65208512,RES1,3001,,16,NE,1970,1970,3102,2,1,1893.07415,1893.07415,3507,NO,39.09,44.8,1,2.23,6112,109.780396,119.89839,129.55352,135.168995,I,Above,Gable,0,5701,,41.94472115,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 11504,NJBF000079967,101 DOGWOOD AVENUE,Egg Harbor,NJ,39.41351995,-74.65244988,RES1,3001,,16,NE,1970,1970,3102,2,1,961.5569712,961.5569712,3507,NO,26.89,37.13,1,2.64,6112,109.776501,119.891791,129.54704,135.158802,I,Above,Gable,0,5701,,32.01141086,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 11505,NJBF000080529,4015 IVINS AVENUE,Egg Harbor,NJ,39.4153401,-74.61267895,RES1,3001,,16,NE,1974,1974,3102,1,1,831.6670327,831.6670327,3507,NO,14.48,26.33,1,2.42,6112,110.29588,120.474187,130.053394,135.950247,I,Above,Flat,0,5701,,20.40528134,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 11506,NJBF000080683,4009 IVINS AVENUE,Egg Harbor,NJ,39.41590215,-74.61167294,RES1,3001,,16,NE,1979,1979,3102,1,1,2388.363343,2388.363343,3507,NO,11.82,17.51,1,0.55,6112,110.312059,120.484991,130.060701,135.962199,I,Above,Gable,0,5701,,14.66441491,0,1.1,,,,1,1,,0.35,nav,1,1979,1,, 11507,NJBF000080794,4007 IVINS AVENUE,Egg Harbor,NJ,39.41632388,-74.61140206,RES1,3001,,16,NE,1974,1974,3102,1,1,1613.890213,1613.890213,3507,NO,14.28,27.36,1,2.32,6112,110.316418,120.485513,130.059371,135.961187,I,Above,Gable,0,5701,,20.81750247,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11508,NJBF000081904,127 SUMMIT AVENUE,Egg Harbor,NJ,39.42441149,-74.53081517,COM1,3001,,NaN,ME,1940,1940,3401,2,1,8539.456263,8539.456263,3507,NO,23.07,34.55,1,-0.95,6112,111.838206,121.737139,131.323631,137.47299,I,Above,Flat,0,NaN,,28.80995124,0,0,,,,1,1,,1,nav,1,1940,2,, 11509,NJBF000083089,FAA TECH CENTER,Egg Harbor,NJ,39.43661228,-74.55245827,GOV1,3003,,NaN,E,1969,0,3401,1,1,9287.44171,9287.44171,3507,NO,14,22.82,1,1.08,6112,111.350991,121.248753,130.784516,136.845709,I,Above,Flat,0,NaN,,18.41328742,0,0,,,,1,1,,1,nav,1,1969,1,, 11510,NJBF000083297,FAA TECH CENTER,Egg Harbor,NJ,39.44142143,-74.5666626,GOV1,3003,,NaN,E,1969,0,3401,2,1,712.4327651,712.4327651,3507,NO,30.77,39.01,1,2.74,6112,111.068467,120.967799,130.474523,136.481946,I,Above,Hip,0,NaN,,34.889518,0,0,,,,1,1,,1,nav,1,1969,2,, 11511,NJBF000083379,FAA TECH CENTER,Egg Harbor,NJ,39.44325888,-74.56669188,GOV1,3003,,NaN,E,1969,0,3401,1,1,6767.645195,6767.645195,3507,NO,19.63,34.32,1,0.94,6112,111.063195,120.949522,130.454894,136.452303,I,Above,Hip,0,NaN,,26.97665619,0,0,,,,1,1,,1,nav,1,1969,1,, 11512,NJBF000083391,FAA TECH CENTER,Egg Harbor,NJ,39.44334277,-74.59808921,GOV1,3003,,NaN,E,1969,0,3401,2,1,13078.32577,13078.32577,3507,NO,22.22,36.86,1,0.6,6112,110.518968,120.450029,129.925155,135.810654,I,Above,Flat,0,NaN,,29.53798095,0,0,,,,1,1,,0.7,nav,1,1969,2,, 11513,NJBF000073209,6707 MILL ROAD,Egg Harbor,NJ,39.37899466,-74.58151677,RES1,3001,999,NaN,NE,1969,0,3102,2,1,1144.746146,1144.746146,3507,NO,38.86,46.86,1,1.99,6110,111.028654,121.326183,130.980673,137.16023,I,Above,Gable,0,5701,,42.86089368,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11514,NJBF000087566,630 LIVERPOOL AVE,Egg Harbor City,NJ,39.5364916,-74.63984362,RES1,3001,,16,NE,1925,1925,3101,1,1,707.4272975,707.4272975,3505,NO,19.25,30.7,3,1.98,6112,109.818368,118.977702,128.603909,133.523523,I,Above,Gable,0,5701,,24.97256963,0,0,,,,1,1,,0.35,nav,1,1925,1,, 11515,NJBF000087401,624 ST LOUIS AVE,Egg Harbor City,NJ,39.53290603,-74.63472322,RES1,3001,,16,NE,1940,1940,3101,1,1,1440.918422,1440.918422,3505,NO,15.49,24.07,3,4.03,6112,109.889109,119.079867,128.697459,133.679332,I,Above,Gable,0,5701,,19.78210765,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11516,NJBF000087587,658 LIVERPOOL AVE,Egg Harbor City,NJ,39.53710494,-74.63912838,RES1,3001,,16,NE,1979,1979,3101,1,1,696.7252736,696.7252736,3505,NO,12.79,27.25,3,0.15,6112,109.826073,118.980923,128.607376,133.528286,I,Above,Gable,0,5701,,20.02320097,0,0,,,,1,1,,0.35,nav,1,1979,1,, 11517,NJBF000087378,618 ST LOUIS AVE,Egg Harbor City,NJ,39.53256438,-74.63481231,RES1,3001,,16,NE,1940,1955,3101,2,1,553.7117992,553.7117992,3505,YES,22.68,29.42,3,0.42,6112,109.888628,119.082075,128.699296,133.6828,I,Above,Gable,0,5701,,26.04816128,0,1.1,,,,1,1,,0.35,nav,1,1940,2,, 11518,NJBF000088683,CITY PARK-LAKE,Egg Harbor City,NJ,39.55845149,-74.61011093,COM4,3001,,NaN,ME,1960,1960,3401,3,1,1501.05832,1501.05832,3507,NO,39.03,53.23,1,0.18,6112,110.149418,119.144412,128.779298,133.774066,I,Above,Hip,0,NaN,,46.13089529,0,0,,,,1,1,,0.03,nav,1,1960,3,, 11519,NJBF000087844,1200 PHILADELPHIA AVE,Egg Harbor City,NJ,39.54371416,-74.62984085,RES1,3001,,NaN,NE,1918,0,3102,2,1,1108.359367,1108.359367,3505,NO,25.43,36.21,3,-0.82,6106,109.929249,119.035851,128.664156,133.610433,I,Above,Gable,0,5701,,30.82212874,0,0,,,,1,1,,0.03,nav,1,1918,2,, 11520,NJBF000087666,644 NORFOLK AVE,Egg Harbor City,NJ,39.5390465,-74.64257292,RES1,3001,,15,NE,1910,1910,3101,2,1,952.0665703,952.0665703,3505,NO,30.3,37.66,3,-0.68,6112,109.779854,118.917338,128.549018,133.431008,I,Above,Gable,0,5701,,33.9796666,0,0,,,,1,1,,0.35,nav,1,1910,2,, 11521,NJBF000087003,241 BALTIMORE AVE,Egg Harbor City,NJ,39.5237725,-74.63441642,RES1,3001,,16,NE,1975,1975,3101,1,1,544.0888334,544.0888334,3505,NO,19.9,30.65,3,8.91,6112,109.909366,119.173485,128.779375,133.825191,I,Above,Hip,0,5701,,25.27297613,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11522,NJBF000087555,,Egg Harbor City,NJ,39.53619488,-74.63350332,COM8,3001,,NaN,ME,1969,0,3401,2,1,2705.712211,2705.712211,3507,NO,21.28,31.28,1,-0.58,6112,109.89821,119.06328,128.684219,133.653165,I,Above,Flat,0,NaN,,26.28217249,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11523,NJBF000087682,801 PHILADELPHIA AVE,Egg Harbor City,NJ,39.539567,-74.63734192,IND2,3002,330,NaN,ME,1966,1966,3401,1,1,1025.391058,1025.391058,3507,NO,20.43,32.51,1,2.06,6112,109.843481,118.979665,128.607999,133.525931,I,Above,Hip,0,5701,,26.46877542,0,0,,,,1,1,,1,nav,1,1966,1,, 11524,NJBF000087111,116 BOSTON AVE,Egg Harbor City,NJ,39.52523704,-74.64119658,RES1,3001,,16,NE,1960,1960,3101,1,1,815.8189532,815.8189532,3505,NO,18.27,26.08,3,0.53,6106,109.821758,119.069975,128.683133,133.668316,I,Above,Hip,0,5701,,22.17294688,0,0,,,,1,1,,0.03,nav,1,1960,1,, 11525,NJBF000089757,,Egg Harbor City,NJ,39.5700695,-74.5482605,RES1,3001,,NaN,NE,1969,0,3102,2,1,757.1715116,757.1715116,3504,NO,21.97,32.28,-4,0,6110,110.976164,119.889834,129.498111,134.836457,I,Above,Flat,0,5701,,27.12640968,0,0,,,,1,1,,0.15,nav,1,1969,2,, 11526,NJBF000089773,,Egg Harbor City,NJ,39.57017067,-74.5481645,RES1,3001,,NaN,NE,1969,0,3102,2,1,1155.177351,1155.177351,3504,NO,24.25,32.95,-4,0,6110,110.977176,119.890072,129.498382,134.836823,I,Above,Gable,0,5701,,28.60386583,0,0,,,,1,1,,0.15,nav,1,1969,2,, 11527,NJBF000090198,3900-3958 NEW ORLEANS AVE,Egg Harbor City,NJ,39.57222059,-74.58226679,RES1,3001,,NaN,NE,1969,0,3101,1,1,1241.139352,1241.139352,3507,NO,13,22.25,1,0.97,6110,110.483787,119.374021,129.008242,134.11554,I,Above,Gable,0,5701,,17.62609029,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11528,NJBF000090191,3900-3958 NEW ORLEANS AVE,Egg Harbor City,NJ,39.57222059,-74.58226679,RES1,3001,,NaN,NE,1969,0,3101,1,1,2280.605972,2280.605972,3507,NO,16.2,30.45,1,1.06,6112,110.483787,119.374021,129.008242,134.11554,I,Above,Gable,0,5701,,23.32625816,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11529,NJBF000089710,1501-59 SAVANNA AVE,Egg Harbor City,NJ,39.56967537,-74.54491255,RES1,3001,,NaN,NE,1969,0,3102,2,1,2271.914686,2271.914686,3504,NO,33.64,44.56,-4,0,6106,111.027155,119.944659,129.550517,134.910767,I,Above,Gable,0,5701,,39.0964389,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11530,NJBF000089722,,Egg Harbor City,NJ,39.56981167,-74.54818294,RES1,3001,,NaN,NE,1969,0,3102,2,1,705.1262654,705.1262654,3504,NO,36.44,48.73,-4,0,6110,110.978322,119.894038,129.502026,134.842076,I,Above,Flat,0,5701,,42.58335405,0,0,,,,1,1,,0.15,nav,1,1969,2,, 11531,NJBF000089718,,Egg Harbor City,NJ,39.56978752,-74.54840396,RES1,3001,,NaN,NE,1969,0,3102,2,1,1518.315923,1518.315923,3504,NO,23.44,31.72,-4,0,6112,110.975164,119.891022,129.499125,134.837958,I,Above,Gable,0,5701,,27.57651148,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11532,NJBF000086889,1659 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52030262,-74.63500845,RES1,3001,999,NaN,NE,1967,1967,3101,1,1,835.5497869,835.5497869,3505,NO,21.07,30.82,3,7.04,6112,109.907659,119.199273,128.801449,133.866558,I,Above,Gable,0,5701,,25.94647722,0,0,,,,1,1,,0.15,nav,1,1967,1,, 11533,NJBF000086925,15 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52175571,-74.64067375,RES1,3001,,16,NE,1968,1968,3101,2,1,1727.300665,1727.300665,3505,NO,25.76,36.85,3,3.88,6112,109.834023,119.110375,128.718954,133.731782,I,Above,Gable,0,5701,,31.30334,0,0.3,,,,1,1,,0.35,nav,1,1968,2,, 11534,NJBF000086929,15 NEW ORLEANS AVE,Egg Harbor City,NJ,39.5219194,-74.64047709,RES1,3001,,16,NE,1968,1968,3101,2,1,1771.892738,1771.892738,3505,NO,27.02,35.67,3,-1.36,6112,109.836212,119.111395,128.720001,133.733201,I,Above,Hip,0,5701,,31.34271114,0,0.3,,,,1,1,,0.35,nav,1,1968,2,, 11535,NJBF000086932,15 NEW ORLEANS AVE,Egg Harbor City,NJ,39.5220055,-74.64040645,RES1,3001,,16,NE,1968,1968,3101,2,1,752.182659,752.182659,3505,NO,30.81,37.3,3,2.58,6112,109.836957,119.1115,128.720149,133.733296,I,Above,Hip,0,5701,,34.0552018,0,0.3,,,,1,1,,0.35,nav,1,1968,2,, 11536,NJBF000086939,25 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52214029,-74.64011514,RES1,3001,,16,NE,1955,1955,3101,1,1,1018.747862,1018.747862,3505,NO,14.51,21.67,3,-0.12,6112,109.840366,119.114023,128.72259,133.737007,I,Above,Hip,0,5701,,18.08993453,0,0,,,,1,1,,0.35,nav,1,1955,1,, 11537,NJBF000086954,259 BREMEN AVE,Egg Harbor City,NJ,39.52273772,-74.63222893,RES1,3001,,16,NE,1930,1930,3101,1,1,1596.44593,1596.44593,3505,NO,23.44,34.49,3,5.72,6106,109.939001,119.212665,128.815553,133.884531,I,Above,Gable,0,5701,,28.960659,0,0,,,,1,1,,0.03,nav,1,1930,1,, 11538,NJBF000086947,1314 WHITE HORSE PK,Egg Harbor City,NJ,39.52260519,-74.63968079,COM1,3002,,NaN,ME,2014,2014,3401,1,1,14249.81597,14249.81597,3507,NO,14.15,20.2,1,2.48,6110,109.845021,119.115247,128.724006,133.738514,I,Above,Flat,0,NaN,,17.17357067,0,0,,,,1,1,,1,nav,1,2014,1,, 11539,NJBF000086961,259 BREMEN AVE,Egg Harbor City,NJ,39.52288621,-74.63241587,RES1,3001,,16,NE,1930,1930,3101,1,1,515.6685609,515.6685609,3505,NO,11.8,21.2,3,-0.77,6106,109.936357,119.208727,128.811944,133.87854,I,Above,Gable,0,5701,,16.50032499,0,0,,,,1,1,,0.03,nav,1,1930,1,, 11540,NJBF000086978,313-327 BREMEN AVE,Egg Harbor City,NJ,39.52325498,-74.6318278,RES1,3001,,NaN,NE,1969,0,3101,1,1,1377.375174,1377.375174,3505,NO,26.33,31.49,3,7.94,6112,109.943245,119.212974,128.81618,133.884581,I,Above,Gable,0,5701,,28.9067941,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11541,NJBF000086982,1123 ATLANTIC AVE,Egg Harbor City,NJ,39.52331856,-74.64284085,COM1,3001,999,NaN,ME,1956,1956,3401,2,1,1587.733873,1587.733873,3507,NO,25.57,37.85,1,0.99,6106,109.804581,119.066988,128.679218,133.665011,I,Above,Flat,0,NaN,,31.70857514,0,0,,,,1,1,,0.03,nav,1,1956,2,, 11542,NJBF000086984,53 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52335887,-74.64062331,RES1,3001,,15,NE,1940,1940,3101,1,1,678.5174152,678.5174152,3505,NO,18.15,28.18,3,4.42,6110,109.832029,119.095612,128.706048,133.708329,I,Above,Gable,0,5701,,23.16769564,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11543,NJBF000086988,1615 BEETHOVEN ST,Egg Harbor City,NJ,39.52340767,-74.63249127,RES1,3001,,NaN,NE,1980,1980,3101,1,1,1029.40461,1029.40461,3505,NO,12.37,20.6,3,1.71,6106,109.934503,119.202636,128.806552,133.869043,I,Above,Gable,0,5701,,16.48666697,0,0,,,,1,1,,0.03,nav,1,1980,1,, 11544,NJBF000086998,258 BALTIMORE AVE,Egg Harbor City,NJ,39.52363691,-74.63371415,RES1,3001,,16,NE,1956,1956,3101,1,1,1683.691421,1683.691421,3505,NO,11.57,17.64,3,-2.79,6112,109.918518,119.184124,128.789289,133.841212,I,Above,Gable,0,5701,,14.60465556,0,0,,,,1,1,,0.35,nav,1,1956,1,, 11545,NJBF000087000,241 BALTIMORE AVE,Egg Harbor City,NJ,39.52365347,-74.63451162,RES1,3001,,16,NE,1975,1975,3101,1,1,1925.04093,1925.04093,3505,NO,13.3,27.22,3,1.84,6112,109.90835,119.173369,128.77919,133.825105,I,Above,Gable,0,5701,,20.26131934,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11546,NJBF000087001,11 11TH TERRACE,Egg Harbor City,NJ,39.52370036,-74.64307291,COM1,3001,219,NaN,ME,1946,1946,3401,1,1,3637.837324,3637.837324,3507,NO,11.35,17.48,1,0.43,6106,109.801089,119.060301,128.673174,133.654614,I,Above,Flat,0,NaN,,14.41697078,0,0,,,,1,1,,0.03,nav,1,1946,1,, 11547,NJBF000087004,1120 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52378083,-74.64201979,COM1,3001,569,NaN,ME,1979,1979,3401,1,1,2262.379443,2262.379443,3507,NO,20.24,30.96,1,2.25,6106,109.813981,119.073264,128.685359,133.674222,I,Above,Hip,0,NaN,,25.59811885,0,0,,,,1,1,,0.03,nav,1,1979,1,, 11548,NJBF000087009,259 BALTIMORE AVE,Egg Harbor City,NJ,39.52385791,-74.63432832,RES1,3001,,16,NE,1985,1985,3101,1,1,663.0093277,663.0093277,3505,NO,23.45,37.97,3,5.56,6112,109.910336,119.173816,128.77974,133.825622,I,Above,Gable,0,5701,,30.71337969,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 11549,NJBF000087013,1603 BEETHOVEN ST,Egg Harbor City,NJ,39.52392773,-74.63343693,RES1,3001,,15,NE,1950,1950,3101,1,1,1022.623032,1022.623032,3505,NO,18.54,26.29,3,3.47,6106,109.921544,119.184971,128.790273,133.842259,I,Above,Gable,0,5701,,22.41483739,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11550,NJBF000087014,1204 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52395709,-74.64100421,COM1,3001,739,NaN,ME,1970,1970,3401,1,1,2549.287372,2549.287372,3507,NO,16.71,24.03,1,2.65,6110,109.826298,119.084855,128.696319,133.691658,I,Above,Hip,0,NaN,,20.37348328,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11551,NJBF000087015,259 BALTIMORE AVE,Egg Harbor City,NJ,39.52395732,-74.63422363,RES1,3001,,16,NE,1985,1985,3101,1,1,1981.271651,1981.271651,3505,NO,18.28,26.09,3,6.84,6112,109.911487,119.174232,128.780195,133.826172,I,Above,Gable,0,5701,,22.18718699,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 11552,NJBF000087020,1114 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52404831,-74.64192318,COM1,3001,190,NaN,ME,1945,1945,3401,2,1,1136.039828,1136.039828,3507,NO,29.28,38.3,1,-0.05,6106,109.814741,119.07196,128.684292,133.672073,I,Above,Gable,0,NaN,,33.79108974,0,0,,,,1,1,,0.03,nav,1,1945,2,, 11553,NJBF000087023,359 BREMEN AVE,Egg Harbor City,NJ,39.52407053,-74.63106899,RES1,3001,,16,NE,1930,1930,3101,1,1,659.118868,659.118868,3505,NO,10.61,21.19,3,-2.3,6112,109.951556,119.215134,128.818752,133.887166,I,Above,Gable,0,5701,,15.9031179,0,0,,,,1,1,,0.35,nav,1,1930,1,, 11554,NJBF000087017,1225 WHITE HORSE PIKE,Egg Harbor City,NJ,39.5240048,-74.64004435,COM1,3001,739,NaN,ME,1962,1962,3401,1,1,5109.226811,5109.226811,3507,NO,16.86,30.24,1,-0.05,6110,109.838168,119.096971,128.707702,133.709944,I,Above,Hip,0,NaN,,23.5509401,0,0,,,,1,1,,0.35,nav,1,1962,1,, 11555,NJBF000087024,132 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52408961,-74.63910473,RES1,3001,,15,NE,1920,1920,3101,1,2,1415.54513,1415.54513,3505,NO,19.97,30.97,3,2.27,6112,109.84975,119.108476,128.71854,133.727258,I,Above,Hip,0,5701,,25.46672199,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11556,NJBF000087025,117 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52414736,-74.63976344,RES1,3001,,16,NE,1980,1980,3101,2,1,1250.407836,1250.407836,3505,NO,39.07,51.05,3,2.72,6112,109.841435,119.099285,128.709956,133.713345,I,Above,Gable,0,5701,,45.05881563,0,0,,,,1,1,,0.35,nav,1,1980,2,, 11557,NJBF000087033,117 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52419798,-74.63987965,RES1,3001,,16,NE,1980,1980,3101,2,1,512.7650688,512.7650688,3505,NO,34.78,45.88,3,0.33,6112,109.83989,119.097257,128.708085,133.710248,I,Above,Flat,0,5701,,40.3301003,0,0,,,,1,1,,0.35,nav,1,1980,2,, 11558,NJBF000087028,1013 ATLANTIC AVE,Egg Harbor City,NJ,39.52416262,-74.64413126,RES1,3001,,43,NE,1920,1920,3101,2,2,2406.796672,2406.796672,3505,NO,41.33,50.26,3,5.76,6110,109.787286,119.042077,128.65638,133.626636,I,Above,Gable,0,5701,,45.79466256,0,0,,,,1,1,,0.35,nav,1,1920,2,, 11559,NJBF000087029,40 BOSTON AVE,Egg Harbor City,NJ,39.52418706,-74.64274999,COM1,3001,569,NaN,ME,1962,1962,3401,2,1,3915.036763,3915.036763,3507,NO,35.93,50.39,1,2.14,6106,109.804276,119.059828,128.673011,133.653587,I,Above,Flat,0,NaN,,43.16151642,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11560,NJBF000087036,136 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52425831,-74.63884511,RES1,3001,,16,NE,1952,1952,3101,1,1,1272.699403,1272.699403,3505,NO,19.4,33.24,3,0.88,6112,109.85272,119.110268,128.720322,133.729846,I,Above,Hip,0,5701,,26.32301518,0,0,,,,1,1,,0.35,nav,1,1952,1,, 11561,NJBF000087039,1211 WHITE HORSE PK,Egg Harbor City,NJ,39.52427356,-74.64060253,COM1,3001,999,NaN,ME,1945,1945,3401,1,1,1184.498147,1184.498147,3507,NO,14.43,22.16,1,0.52,6110,109.830756,119.087047,128.69856,133.694765,I,Above,Flat,0,NaN,,18.29755765,0,0,,,,1,1,,0.35,nav,1,1945,1,, 11562,NJBF000087040,23 BOSTON AVENUE,Egg Harbor City,NJ,39.52428284,-74.64367327,RES1,3001,,16,NE,2002,2002,3101,1,1,1208.732028,1208.732028,3505,NO,18.56,29.12,3,7.75,6110,109.792727,119.046882,128.660945,133.633866,I,Above,Gable,0,5701,,23.83971642,0,0,,,,1,1,,0.35,nav,1,2002,1,, 11563,NJBF000087035,1120 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52423931,-74.64187486,COM1,3001,569,NaN,ME,1979,1979,3401,1,1,4668.182888,4668.182888,3507,NO,21.48,30.34,1,2.79,6106,109.815018,119.070747,128.683267,133.670111,I,Above,Flat,0,NaN,,25.91315609,0,0,,,,1,1,,0.03,nav,1,1979,1,, 11564,NJBF000087041,127 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52429204,-74.63959235,RES1,3001,,16,NE,1950,1950,3101,1,1,1436.112274,1436.112274,3505,NO,14.77,23.34,3,-1.29,6112,109.843326,119.100128,128.710833,133.714521,I,Above,Gable,0,5701,,19.05428621,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11565,NJBF000087037,301 BALTIMORE AVE,Egg Harbor City,NJ,39.52425933,-74.63385914,RES1,3001,,16,NE,1975,1975,3101,1,1,3298.560993,3298.560993,3505,NO,19.32,32.84,3,8.44,6112,109.915605,119.176136,128.782179,133.8288,I,Above,Gable,0,5701,,26.08165902,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11566,NJBF000087045,140 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52439087,-74.638709,RES1,3001,,16,NE,1957,1957,3101,1,1,1426.824732,1426.824732,3505,NO,19.26,25.1,3,3.61,6112,109.854198,119.110768,128.720872,133.730511,I,Above,Gable,0,5701,,22.17897965,0,0,,,,1,1,,0.35,nav,1,1957,1,, 11567,NJBF000087047,2 ST LOUIS AVE,Egg Harbor City,NJ,39.52445238,-74.64453201,RES1,3001,,16,NE,1998,1998,3101,2,1,1166.087765,1166.087765,3505,NO,30.69,44.81,3,0.81,6112,109.781879,119.03409,128.64907,133.61431,I,Above,Gable,0,5701,,37.74913809,0,0,,,,1,1,,0.35,nav,1,1998,2,, 11568,NJBF000087048,1650 BUERGER ST,Egg Harbor City,NJ,39.52447686,-74.63134207,RES1,3001,,16,NE,1954,1954,3101,1,1,1358.962455,1358.962455,3505,NO,15.92,25.43,3,3.24,6112,109.947348,119.207515,128.811848,133.875505,I,Above,Gable,0,5701,,20.67541244,0,0,,,,1,1,,0.35,nav,1,1954,1,, 11569,NJBF000087053,112 HAVANA AVE,Egg Harbor City,NJ,39.52451117,-74.64045512,RES1,3001,,16,NE,1975,1975,3101,1,1,1083.683439,1083.683439,3505,NO,17.83,28.85,3,6.43,6106,109.832201,119.086696,128.698372,133.69408,I,Above,Hip,0,5701,,23.33902168,0,0,,,,1,1,,0.03,nav,1,1975,1,, 11570,NJBF000087051,1106 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52448741,-74.64215896,COM4,3001,,NaN,ME,1915,1915,3401,2,1,2811.009757,2811.009757,3507,NO,33.19,40.83,1,0.15,6106,109.811088,119.064649,128.677699,133.66071,I,Above,Hip,0,5701,,37.00729214,0,0,,,,1,1,,0.03,nav,1,1915,2,, 11571,NJBF000087056,48 BOSTON AVE,Egg Harbor City,NJ,39.52454087,-74.64240633,COM4,3001,,16,ME,1930,1930,3401,2,1,1603.251925,1603.251925,3507,NO,31.99,39.45,1,0.97,6106,109.807941,119.060906,128.674225,133.654999,I,Above,Gable,0,5701,,35.72269423,0,0,,,,1,1,,0.03,nav,1,1930,2,, 11572,NJBF000087058,1112 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52454893,-74.64196228,COM4,3001,,15,ME,1940,1940,3401,1,1,1245.566351,1245.566351,3507,NO,16.28,29.95,1,2.58,6106,109.813424,119.066623,128.679585,133.663664,I,Above,Hip,0,5701,,23.11231571,0,0,,,,1,1,,0.03,nav,1,1940,1,, 11573,NJBF000087057,158 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52454874,-74.63845155,RES1,3001,,16,NE,1940,1940,3101,1,1,1458.823453,1458.823453,3505,NO,22.22,34,3,6.08,6112,109.857149,119.112617,128.722703,133.733193,I,Above,Gable,0,5701,,28.1115737,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11574,NJBF000087062,31 BOSTON AVE,Egg Harbor City,NJ,39.52457683,-74.64361938,RES1,3001,,16,NE,1980,1980,3101,1,1,1854.280515,1854.280515,3505,NO,19.52,27.12,3,0.22,6106,109.792906,119.044757,128.659125,133.630457,I,Above,Gable,0,5701,,23.32056255,0,0,,,,1,1,,0.03,nav,1,1980,1,, 11575,NJBF000087066,10 ST LOUIS AVE 1,Egg Harbor City,NJ,39.52460272,-74.64432531,RES1,3001,,16,NE,2003,2003,3101,1,1,1067.214333,1067.214333,3505,NO,15.44,26.42,3,3.67,6112,109.784174,119.035329,128.650314,133.616104,I,Above,Gable,0,5701,,20.92884434,0,0,,,,1,1,,0.35,nav,1,2003,1,, 11576,NJBF000087067,50 BOSTON AVE,Egg Harbor City,NJ,39.52462228,-74.64235842,COM4,3001,,16,ME,1940,1940,3401,1,1,1062.362767,1062.362767,3507,NO,16.77,25.03,1,0.09,6106,109.8084,119.060752,128.674128,133.654715,I,Above,Gable,0,5701,,20.89820977,0,0,,,,1,1,,0.03,nav,1,1940,1,, 11577,NJBF000087060,135 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52455425,-74.63935949,RES1,3001,,16,NE,1925,1925,3101,1,1,5037.259249,5037.259249,3505,NO,18.83,26.47,3,7.86,6106,109.845795,119.100651,128.711482,133.715138,I,Above,Hip,0,5701,,22.65093802,0,0,,,,1,1,,0.03,nav,1,1925,1,, 11578,NJBF000087069,124 HAVANA AVE,Egg Harbor City,NJ,39.52469809,-74.64031043,RES1,3001,,15,NE,1930,1930,3101,2,1,1122.717729,1122.717729,3505,NO,25.68,37.78,3,-1.8,6106,109.833693,119.086789,128.69857,133.694099,I,Above,Gable,0,5701,,31.7305377,0,0,,,,1,1,,0.03,nav,1,1930,2,, 11579,NJBF000087071,149 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52471297,-74.63911003,RES1,3001,,15,NE,1920,1920,3101,2,1,550.9945746,550.9945746,3505,NO,38.76,45.7,3,6.29,6110,109.848638,119.102381,128.713201,133.717645,I,Above,Hip,0,5701,,42.22948573,0,0,,,,1,1,,0.35,nav,1,1920,2,, 11580,NJBF000087070,1115 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52470985,-74.64143773,RES1,3001,,NaN,NE,1940,0,3101,1,1,1040.060304,1040.060304,3505,NO,19.37,25.43,3,7.21,6106,109.819652,119.071915,128.684637,133.671581,I,Above,Hip,0,5701,,22.39914411,0,0,,,,1,1,,0.03,nav,1,1940,1,, 11581,NJBF000087072,47 BOSTON AVE,Egg Harbor City,NJ,39.52472661,-74.64302501,COM1,3001,,NaN,ME,1946,1946,3401,1,1,3134.757901,3134.757901,3507,NO,14.68,28.9,1,2.22,6106,109.799983,119.051046,128.665099,133.63992,I,Above,Hip,0,5701,,21.78886956,0,0,,,,1,1,,0.03,nav,1,1946,1,, 11582,NJBF000087073,18 ST LOUIS AVE,Egg Harbor City,NJ,39.52477846,-74.64414521,RES1,3001,,16,NE,2000,2000,3101,1,1,1217.454176,1217.454176,3505,NO,22.86,32.95,3,5.63,6112,109.786097,119.035985,128.651029,133.616999,I,Above,Gable,0,5701,,27.90668835,0,0,,,,1,1,,0.35,nav,1,2000,1,, 11583,NJBF000087079,153 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52485607,-74.63898227,RES1,3001,,16,NE,1930,1930,3101,1,1,1303.728065,1303.728065,3505,NO,23.22,36.84,3,6.67,6110,109.849997,119.102677,128.713566,133.717998,I,Above,Hip,0,5701,,30.03073143,0,0,,,,1,1,,0.35,nav,1,1930,1,, 11584,NJBF000087086,26 ST LOUIS AVE,Egg Harbor City,NJ,39.52492157,-74.64392972,RES1,3001,,16,NE,1996,1996,3101,2,1,1721.488402,1721.488402,3505,NO,37.42,47.39,3,6.49,6112,109.788503,119.037395,128.65243,133.619057,I,Above,Gable,0,5701,,42.40515267,0,0,,,,1,1,,0.35,nav,1,1996,2,, 11585,NJBF000087089,153 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52493396,-74.63914347,RES1,3001,,16,NE,1930,1930,3101,1,1,1063.294342,1063.294342,3505,NO,15.86,29.3,3,-0.43,6110,109.847852,119.099808,128.710922,133.713617,I,Above,Gable,0,5701,,22.58489188,0,0,,,,1,1,,0.35,nav,1,1930,1,, 11586,NJBF000087090,235 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52494515,-74.6369547,RES1,3001,999,NaN,NE,1960,1960,3101,1,1,1760.261619,1760.261619,3505,NO,24.98,35.81,3,7.57,6112,109.875271,119.128488,128.737845,133.756829,I,Above,Hip,0,5701,,30.39485087,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11587,NJBF000087084,200 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52491473,-74.63799712,RES1,3001,,16,NE,1970,1970,3101,2,1,3133.78431,3133.78431,3505,NO,28.46,40.03,3,6.05,6112,109.862231,119.115054,128.725215,133.736622,I,Above,Gable,0,5701,,34.24502569,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 11588,NJBF000087093,352 BALTIMORE AVE,Egg Harbor City,NJ,39.52499399,-74.63222123,RES1,3001,,16,NE,1920,1920,3101,2,1,1112.77092,1112.77092,3505,NO,40.73,48.8,3,5.39,6112,109.935199,119.190738,128.796397,133.850095,I,Above,Hip,0,5701,,44.76126279,0,0,,,,1,1,,0.35,nav,1,1920,2,, 11589,NJBF000087095,236 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52501972,-74.63606735,RES1,3001,,16,NE,1934,1934,3101,2,1,2708.824001,2708.824001,3505,NO,22.05,36.84,3,-2.8,6112,109.886332,119.139479,128.748214,133.773301,I,Above,Gable,0,5701,,29.44400829,0,0,,,,1,1,,0.35,nav,1,1934,2,, 11590,NJBF000087096,235 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52503089,-74.63713242,RES1,3001,999,NaN,NE,1960,1960,3101,1,1,1668.184084,1668.184084,3505,NO,23.31,37.25,3,7.94,6112,109.872897,119.125319,128.734923,133.752003,I,Above,Gable,0,5701,,30.27743273,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11591,NJBF000087097,144 HAVANA AVE,Egg Harbor City,NJ,39.52504899,-74.63982584,RES1,3001,,16,NE,1987,1987,3101,2,1,1336.666754,1336.666754,3505,NO,33.53,47.3,3,0.15,6110,109.839132,119.089735,128.701545,133.69833,I,Above,Hip,0,5701,,40.41380712,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 11592,NJBF000087102,40 10TH TERRACE,Egg Harbor City,NJ,39.52510027,-74.64298773,COM1,3001,,NaN,ME,1920,1920,3401,1,1,1688.536799,1688.536799,3507,NO,14.43,20.14,1,0.75,6110,109.799818,119.047935,128.662403,133.634971,I,Above,Gable,0,5701,,17.28463662,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11593,NJBF000087108,201 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52520243,-74.63863062,RES1,3001,,16,NE,1982,1982,3101,1,1,1696.286878,1696.286878,3505,NO,21.42,34.96,3,8.76,6112,109.8538,119.103934,128.714958,133.71967,I,Above,Flat,0,5701,,28.18874442,0,0,,,,1,1,,0.35,nav,1,1982,1,, 11594,NJBF000087107,,Egg Harbor City,NJ,39.52519297,-74.63778296,RES1,3001,,NaN,NE,2006,0,3101,1,1,1793.22534,1793.22534,3505,NO,22.68,32.01,3,7.44,6112,109.864442,119.115172,128.725498,133.736617,I,Above,Gable,0,5701,,27.34582502,0,0,,,,1,1,,0.35,nav,1,2006,1,, 11595,NJBF000087110,258 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52521142,-74.63583571,RES1,3001,,16,NE,1930,1930,3101,2,1,1187.407793,1187.407793,3505,NO,33.01,45.17,3,7.89,6112,109.888918,119.140671,128.749456,133.774963,I,Above,Gable,0,5701,,39.09039392,0,0,,,,1,1,,0.35,nav,1,1930,2,, 11596,NJBF000087109,108 BOSTON AVE,Egg Harbor City,NJ,39.52521069,-74.64163095,RES1,3001,,16,NE,1970,1970,3101,1,1,2630.69603,2630.69603,3505,NO,23.26,35.98,3,7.33,6106,109.816418,119.064557,128.67804,133.660123,I,Above,Gable,0,5701,,29.61949196,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 11597,NJBF000087113,235 NEW ORLEANS AVE,Egg Harbor City,NJ,39.5252563,-74.63672037,RES1,3001,999,NaN,NE,1960,1960,3101,1,1,558.3217208,558.3217208,3505,NO,17.46,23.93,3,1.44,6112,109.877696,119.128564,128.738112,133.756736,I,Above,Gable,0,5701,,20.6991167,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11598,NJBF000087105,1006 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52514307,-74.64356321,COM1,3001,739,NaN,ME,1996,1996,3401,1,1,13010.11892,13010.11892,3507,NO,13.92,23.68,1,1.47,6106,109.792655,119.040039,128.655034,133.622947,I,Above,Flat,0,NaN,,18.79853931,0,0,,,,1,1,,0.03,nav,1,1996,1,, 11599,NJBF000087115,116 BOSTON AVE,Egg Harbor City,NJ,39.52530793,-74.64148807,RES1,3001,,16,NE,1960,1960,3101,1,1,1512.125339,1512.125339,3505,NO,20.39,27.08,3,4.25,6110,109.818027,119.065488,128.67897,133.661475,I,Above,Gable,0,5701,,23.73089769,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11600,NJBF000087116,150 HAVANA AVE,Egg Harbor City,NJ,39.52532088,-74.6395417,RES1,3001,,16,NE,1980,1980,3101,1,1,2222.698,2222.698,3505,NO,16.43,30.86,3,5.08,6106,109.842213,119.090825,128.702733,133.699804,I,Above,Gable,0,5701,,23.6454906,0,0,,,,1,1,,0.03,nav,1,1980,1,, 11601,NJBF000087117,359 BALTIMORE AVE,Egg Harbor City,NJ,39.52535669,-74.63251065,RES1,3001,,15,NE,1905,1905,3101,1,1,1058.495014,1058.495014,3505,NO,17.93,27.3,3,2.23,6112,109.930862,119.183327,128.789663,133.838765,I,Above,Flat,0,5701,,22.61596745,0,0,,,,1,1,,0.35,nav,1,1905,1,, 11602,NJBF000087119,219 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52537732,-74.63836103,RES1,3001,,15,NE,1930,1930,3101,1,1,1201.942894,1201.942894,3505,NO,20.48,31.39,3,7.66,6110,109.856882,119.105784,128.716802,133.722349,I,Above,Hip,0,5701,,25.93440138,0,0,,,,1,1,,0.35,nav,1,1930,1,, 11603,NJBF000087120,1019 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52540027,-74.64224916,RES1,3001,,NaN,NE,1926,1926,3101,1,1,1279.491199,1279.491199,3505,NO,17.56,24.07,3,-1.88,6106,109.808447,119.054671,128.668889,133.645017,I,Above,Hip,0,5701,,20.81721583,0,0,,,,1,1,,0.03,nav,1,1926,1,, 11604,NJBF000087118,226 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52537448,-74.6375815,RES1,3001,,16,NE,1970,1970,3101,1,1,1797.113458,1797.113458,3505,NO,10.36,17.77,3,-1.19,6112,109.866668,119.116072,128.726457,133.737857,I,Above,Gable,0,5701,,14.06521275,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11605,NJBF000087121,300 NEW ORLEANS AVE,Egg Harbor City,NJ,39.5254168,-74.63547733,RES1,3001,,16,NE,2007,2007,3101,1,1,1772.873528,1772.873528,3505,NO,13.29,21.63,3,-2.97,6112,109.893097,119.143409,128.752161,133.778936,I,Above,Gable,0,5701,,17.46278057,0,0,,,,1,1,,0.35,nav,1,2007,1,, 11606,NJBF000087123,107 BOSTON AVE,Egg Harbor City,NJ,39.52546314,-74.64215306,RES1,3001,,16,NE,1930,1930,3101,2,1,1160.261874,1160.261874,3505,NO,20.4,33.85,3,-1.72,6106,109.809528,119.055314,128.669529,133.645956,I,Above,Hip,0,5701,,27.12577841,0,0,,,,1,1,,0.03,nav,1,1930,2,, 11607,NJBF000087122,105 BOSTON AVE,Egg Harbor City,NJ,39.52544448,-74.64253647,COM1,3001,,16,ME,1925,1925,3401,2,1,2653.971237,2653.971237,3507,NO,22.63,32.08,1,0.18,6110,109.804824,119.050506,128.665013,133.63867,I,Above,Gable,0,NaN,,27.35295565,0,0,,,,1,1,,0.35,nav,1,1925,2,, 11608,NJBF000087127,257 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52549981,-74.63626259,RES1,3001,,16,NE,1960,1960,3101,1,1,1096.292902,1096.292902,3505,NO,16.67,26.25,3,-1.39,6112,109.883033,119.132219,128.7417,133.76207,I,Above,Hip,0,5701,,21.46193891,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11609,NJBF000087129,128 BOSTON AVE,Egg Harbor City,NJ,39.5255013,-74.64123246,RES1,3001,,16,NE,1954,1954,3101,1,1,2223.606367,2223.606367,3505,NO,15.06,28.49,3,-1.26,6106,109.820878,119.066966,128.680472,133.663598,I,Above,Hip,0,5701,,21.77181668,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 11610,NJBF000087131,232 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52553162,-74.63730737,RES1,3001,,16,NE,1960,1960,3101,1,1,4246.536111,4246.536111,3505,NO,15.43,29.35,3,3.42,6110,109.869838,119.118144,128.728502,133.740875,I,Above,Gable,0,5701,,22.39129753,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 11611,NJBF000087133,403 BALTIMORE AVE,Egg Harbor City,NJ,39.52560171,-74.63219358,RES1,3001,,16,NE,1950,1950,3101,1,1,1466.561268,1466.561268,3505,NO,21.67,33.23,3,4.9,6112,109.934476,119.185145,128.791538,133.84131,I,Above,Gable,0,5701,,27.44943079,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11612,NJBF000087134,200 HAVANA AVE,Egg Harbor City,NJ,39.52561075,-74.6392275,RES1,3001,,16,NE,1970,1970,3101,1,1,1944.446585,1944.446585,3505,NO,18.88,26.65,3,7.95,6106,109.845639,119.092132,128.704137,133.701597,I,Above,Gable,0,5701,,22.76580281,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 11613,NJBF000087136,1100 ARAGO STREET,Egg Harbor City,NJ,39.52566382,-74.6401881,RES1,3001,,16,NE,2006,2006,3101,1,1,1302.755262,1302.755262,3505,NO,14.09,25.41,3,1.38,6106,109.833579,119.07904,128.69189,133.681777,I,Above,Hip,0,5701,,19.74998701,0,0,,,,1,1,,0.03,nav,1,2006,1,, 11614,NJBF000087132,924 WHITE HORSE PK,Egg Harbor City,NJ,39.52559353,-74.64400256,COM1,3001,,NaN,ME,1985,1985,3401,1,1,6037.831017,6037.831017,3507,NO,17.27,25.13,1,-0.8,6112,109.786484,119.029979,128.645877,133.607387,I,Above,Flat,0,NaN,,21.19853469,0,0,,,,1,1,,1,nav,1,1985,1,, 11615,NJBF000087137,136 BOSTON AVE,Egg Harbor City,NJ,39.52567301,-74.64102654,RES1,3001,,16,NE,1955,1955,3101,1,1,2263.340633,2263.340633,3505,NO,15.57,22.42,3,5.07,6106,109.823131,119.067981,128.681527,133.665032,I,Above,Gable,0,5701,,18.99801517,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 11616,NJBF000087138,117 BOSTON AVE,Egg Harbor City,NJ,39.52569085,-74.64188134,RES1,3001,,16,NE,1929,1929,3101,2,1,1310.508986,1310.508986,3505,NO,30.66,39.1,3,7.03,6112,109.812511,119.056659,128.670926,133.647862,I,Above,Gable,0,5701,,34.87774655,0,1.1,,,,1,1,,0.35,nav,1,1929,2,, 11617,NJBF000087139,140 BOSTON AVE,Egg Harbor City,NJ,39.52569894,-74.64062942,RES1,3001,,16,NE,1956,1956,3101,1,1,1132.154891,1132.154891,3505,NO,15.06,24.22,3,3.88,6106,109.828032,119.072932,128.686184,133.672513,I,Above,Gable,0,5701,,19.64294961,0,0,,,,1,1,,0.03,nav,1,1956,1,, 11618,NJBF000087141,403 BALTIMORE AVE,Egg Harbor City,NJ,39.52572239,-74.6325134,RES1,3001,,16,NE,1950,1950,3101,1,1,824.872666,824.872666,3505,NO,20.86,30.77,3,3.49,6106,109.930194,119.179727,128.786518,133.83313,I,Above,Gable,0,5701,,25.81083313,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11619,NJBF000087144,140 BOSTON AVE,Egg Harbor City,NJ,39.52578806,-74.64081304,RES1,3001,,16,NE,1956,1956,3101,1,1,1984.172747,1984.172747,3505,NO,19.68,32.34,3,6.04,6110,109.825595,119.069665,128.683175,133.667514,I,Above,Gable,0,5701,,26.0078202,0,0,,,,1,1,,0.35,nav,1,1956,1,, 11620,NJBF000087146,102 ST LOUIS AVE,Egg Harbor City,NJ,39.52580632,-74.64302637,COM1,3001,,43,ME,1910,1910,3401,2,3,2375.764521,2375.764521,3507,NO,36.7,44.51,1,-0.23,6112,109.798164,119.040635,128.65598,133.623468,I,Above,Hip,0,NaN,,40.60465574,0,0,,,,1,1,,0.35,nav,1,1910,2,, 11621,NJBF000087140,1017 WHITE HORSE PIKE,Egg Harbor City,NJ,39.52571894,-74.64274343,COM1,3001,,NaN,ME,1910,1921,3401,2,1,7684.706767,7684.706767,3507,NO,31.64,37.47,1,1.1,6106,109.801804,119.045157,128.660165,133.630388,I,Above,Flat,0,NaN,,34.55549119,0,0,,,,1,1,,0.03,nav,1,1910,2,, 11622,NJBF000087147,127 BOSTON AVE,Egg Harbor City,NJ,39.52583405,-74.64169944,RES1,3001,,16,NE,1954,1954,3101,1,1,1753.481977,1753.481977,3505,NO,25.28,39.61,3,6.28,6112,109.814524,119.057652,128.671941,133.649282,I,Above,Gable,0,5701,,32.44388477,0,0,,,,1,1,,0.35,nav,1,1954,1,, 11623,NJBF000087148,117 BOSTON AVE,Egg Harbor City,NJ,39.52584866,-74.64214581,RES1,3001,,16,NE,1929,1929,3101,2,1,1679.825999,1679.825999,3505,NO,28.83,37.79,3,-2.17,6112,109.808964,119.051678,128.666353,133.640213,I,Above,Flat,0,5701,,33.30962153,0,1.1,,,,1,1,,0.35,nav,1,1929,2,, 11624,NJBF000087149,156 BOSTON AVE,Egg Harbor City,NJ,39.52590757,-74.64069883,RES1,3001,,16,NE,1955,1955,3101,1,1,1567.3691,1567.3691,3505,NO,18.83,32.93,3,7.68,6106,109.826807,119.069994,128.683556,133.66794,I,Above,Hip,0,5701,,25.88068107,0,0,,,,1,1,,0.03,nav,1,1955,1,, 11625,NJBF000087150,201 HAVANA AVE,Egg Harbor City,NJ,39.52594206,-74.63968247,RES1,3001,,16,NE,1957,1957,3101,1,1,1609.067868,1609.067868,3505,NO,25.84,35.73,3,8.39,6106,109.839409,119.082972,128.695748,133.687553,I,Above,Hip,0,5701,,30.78736823,0,0,,,,1,1,,0.03,nav,1,1957,1,, 11626,NJBF000087151,137 BOSTON AVE,Egg Harbor City,NJ,39.52599696,-74.64157608,RES1,3001,,16,NE,1963,1963,3101,1,1,1920.205586,1920.205586,3505,NO,14.74,26.28,3,3.54,6112,109.815772,119.057681,128.672067,133.649231,I,Above,Hip,0,5701,,20.5123126,0,0,,,,1,1,,0.35,nav,1,1963,1,, 11627,NJBF000087156,158 BOSTON AVE,Egg Harbor City,NJ,39.52606536,-74.64055721,RES1,3001,,16,NE,1953,1953,3101,1,1,3292.754757,3292.754757,3505,NO,13.74,19.65,3,0.5,6110,109.828305,119.07033,128.683967,133.668356,I,Above,Hip,0,5701,,16.6948854,0,1.2,,,,1,1,,0.35,nav,1,1953,1,, 11628,NJBF000087158,141 BOSTON AVE,Egg Harbor City,NJ,39.52611154,-74.64141869,RES1,3001,,16,NE,1961,1961,3101,2,1,1407.446443,1407.446443,3505,NO,36.04,43.07,3,2.7,6112,109.817523,119.058617,128.673014,133.650584,I,Above,Hip,0,5701,,39.55606424,0,0,,,,1,1,,0.35,nav,1,1961,2,, 11629,NJBF000087159,118 ST LOUIS AVE,Egg Harbor City,NJ,39.52611411,-74.6426407,RES1,3001,,43,NE,1914,1914,3101,2,2,1421.978621,1421.978621,3505,NO,36.42,51.37,3,3.22,6112,109.802397,119.042672,128.658072,133.626389,I,Above,Gable,0,5701,,43.8977634,0,0,,,,1,1,,0.35,nav,1,1914,2,, 11630,NJBF000087161,126 ST LOUIS AVE,Egg Harbor City,NJ,39.52615567,-74.64233953,RES1,3001,,16,NE,1940,1940,3101,2,1,883.0350783,883.0350783,3505,NO,41.63,52.2,3,6.31,6112,109.806045,119.046185,128.661389,133.631699,I,Above,Gable,0,5701,,46.91220859,0,0,,,,1,1,,0.35,nav,1,1940,2,, 11631,NJBF000087160,215 HAVANA AVE,Egg Harbor City,NJ,39.52614797,-74.6394456,RES1,3001,,16,NE,1954,1954,3101,1,1,2852.692337,2852.692337,3505,NO,22.53,32.45,3,6.82,6106,109.842,119.084066,128.696902,133.689083,I,Above,Hip,0,5701,,27.48862886,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 11632,NJBF000087164,105-111 ST LOUIS AVE,Egg Harbor City,NJ,39.52619726,-74.64330475,RES1,3001,,16,NE,2000,2000,3101,1,1,1112.762563,1112.762563,3505,NO,19.38,27.49,3,4.67,6112,109.794065,119.033235,128.64928,133.612001,I,Above,Gable,0,5701,,23.43614757,0,0,,,,1,1,,0.35,nav,1,2000,1,, 11633,NJBF000087165,151 BOSTON AVE,Egg Harbor City,NJ,39.52625289,-74.64126863,RES1,3001,,16,NE,1949,1949,3101,2,1,1072.055177,1072.055177,3505,NO,27.84,34.53,3,4.66,6112,109.819143,119.05921,128.673656,133.651402,I,Above,Gable,0,5701,,31.18317112,0,0.1,,,,1,1,,0.35,nav,1,1949,2,, 11634,NJBF000087166,115 ST LOUIS AVE,Egg Harbor City,NJ,39.52628418,-74.64309161,RES1,3001,,16,NE,1930,1930,3101,2,1,1096.282517,1096.282517,3505,NO,33.13,41.45,3,0.24,6112,109.796544,119.035164,128.651139,133.614886,I,Above,Gable,0,5701,,37.29166154,0,0.2,,,,1,1,,0.35,nav,1,1930,2,, 11635,NJBF000087168,126 ST LOUIS AVE,Egg Harbor City,NJ,39.52632524,-74.64239693,RES1,3001,,16,NE,1940,1940,3101,2,1,1204.856632,1204.856632,3505,NO,37.55,44.8,3,4.32,6112,109.805054,119.04381,128.659265,133.627998,I,Above,Hip,0,5701,,41.17413891,0,0,,,,1,1,,0.35,nav,1,1940,2,, 11636,NJBF000087169,200 BOSTON AVE,Egg Harbor City,NJ,39.52632878,-74.64035139,RES1,3001,,16,NE,1950,1950,3101,1,1,1316.323394,1316.323394,3505,NO,20.83,30.13,3,6.74,6106,109.830416,119.070466,128.684257,133.668406,I,Above,Gable,0,5701,,25.48120099,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11637,NJBF000087171,219 HAVANA AVE,Egg Harbor City,NJ,39.52638804,-74.63922148,RES1,3001,,16,NE,1960,1960,3101,1,1,1989.023346,1989.023346,3505,NO,18,25.23,3,1.35,6106,109.844396,119.084685,128.697632,133.689875,I,Above,Hip,0,5701,,21.61485551,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 11638,NJBF000087175,208 BOSTON AVE,Egg Harbor City,NJ,39.52644494,-74.64025434,RES1,3001,,16,NE,1960,1960,3101,1,1,621.327784,621.327784,3505,NO,17.4,26.55,3,-1.28,6106,109.831424,119.07061,128.684463,133.668556,I,Above,Gable,0,5701,,21.97405271,0,0,,,,1,1,,0.03,nav,1,1960,1,, 11639,NJBF000087174,117 ST LOUIS AVE,Egg Harbor City,NJ,39.52643234,-74.64301389,RES1,3001,,16,NE,1960,1960,3101,1,1,2216.804523,2216.804523,3505,NO,12.98,22.63,3,-1.77,6112,109.797255,119.034749,128.650839,133.614174,I,Above,Hip,0,5701,,17.80508164,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 11640,NJBF000087177,159 BOSTON AVE,Egg Harbor City,NJ,39.52647037,-74.64099051,RES1,3001,,16,NE,1920,1920,3101,2,1,891.759468,891.759468,3505,NO,26.46,38.67,3,1.36,6110,109.822222,119.060738,128.675221,133.653593,I,Above,Gable,0,5701,,32.56684841,0,0,,,,1,1,,0.35,nav,1,1920,2,, 11641,NJBF000087179,301 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52651466,-74.63701913,RES1,3001,,16,NE,1974,1974,3101,1,1,2571.584994,2571.584994,3505,NO,17.13,31.23,3,0.78,6106,109.871758,119.11237,128.723704,133.73156,I,Above,Hip,0,5701,,24.18206339,0,0,,,,1,1,,0.03,nav,1,1974,1,, 11642,NJBF000087181,223 HAVANA AVE,Egg Harbor City,NJ,39.52655846,-74.63896114,RES1,3001,,16,NE,1963,1963,3101,1,1,1539.261852,1539.261852,3505,NO,17.43,27.97,3,-0.25,6110,109.84735,119.086442,128.699387,133.692428,I,Above,Gable,0,5701,,22.69984151,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 11643,NJBF000087182,212 BOSTON AVE,Egg Harbor City,NJ,39.52656615,-74.64009122,RES1,3001,,16,NE,1953,1953,3101,1,1,1669.152377,1669.152377,3505,NO,14.97,26.22,3,2.3,6112,109.833245,119.071568,128.685437,133.669936,I,Above,Hip,0,5701,,20.59475098,0,0,,,,1,1,,0.35,nav,1,1953,1,, 11644,NJBF000087183,159 BOSTON AVE,Egg Harbor City,NJ,39.52660364,-74.64118102,RES1,3001,,16,NE,1920,1920,3101,2,1,589.3357752,589.3357752,3505,NO,42.73,55.95,3,7.18,6112,109.819636,119.05696,128.671761,133.647792,I,Above,Hip,0,5701,,49.33773478,0,0,,,,1,1,,0.35,nav,1,1920,2,, 11645,NJBF000087187,228 BOSTON AVE,Egg Harbor City,NJ,39.52665499,-74.6395109,RES1,3001,,16,NE,1955,1955,3101,1,1,667.1301771,667.1301771,3505,NO,16.26,25.14,3,5.42,6110,109.840318,119.078294,128.691803,133.680058,I,Above,Gable,0,5701,,20.69817579,0,0,,,,1,1,,0.35,nav,1,1955,1,, 11646,NJBF000087186,252 HAVANA AVE,Egg Harbor City,NJ,39.52665136,-74.63797763,RES1,3001,,16,NE,1950,1950,3101,1,1,1698.236964,1698.236964,3505,NO,16.76,29.43,3,3.8,6106,109.859487,119.098436,128.710706,133.710478,I,Above,Gable,0,5701,,23.09270099,0,0,,,,1,1,,0.03,nav,1,1950,1,, 11647,NJBF000087188,224 BOSTON AVE,Egg Harbor City,NJ,39.52674203,-74.63987981,RES1,3001,,16,NE,1940,1940,3101,2,1,1491.765698,1491.765698,3505,NO,25.6,37.76,3,4.39,6112,109.83557,119.07262,128.686534,133.671427,I,Above,Gable,0,5701,,31.68374653,0,0,,,,1,1,,0.35,nav,1,1940,2,, 11648,NJBF000087189,315 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52674698,-74.63685847,RES1,3001,,16,NE,1962,1962,3101,1,1,2463.006965,2463.006965,3505,NO,13.77,23.12,3,-2.61,6112,109.873378,119.112229,128.72372,133.731205,I,Above,Gable,0,5701,,18.44439129,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 11649,NJBF000087193,1017 ARAGO ST,Egg Harbor City,NJ,39.52676183,-74.64093691,RES1,3001,,16,NE,1940,1940,3101,1,1,1740.882442,1740.882442,3505,NO,17.77,26.98,3,6.53,6112,109.822393,119.058614,128.673409,133.650209,I,Above,Gable,0,5701,,22.37584539,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11650,NJBF000087191,225 HAVANA AVE,Egg Harbor City,NJ,39.52675128,-74.63876119,RES1,3001,,16,NE,1964,1964,3101,1,1,2494.033175,2494.033175,3505,NO,21.16,34.11,3,4.11,6110,109.849516,119.087188,128.70021,133.693442,I,Above,Gable,0,5701,,27.63749114,0,0,,,,1,1,,0.35,nav,1,1964,1,, 11651,NJBF000087194,359 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52679958,-74.63475323,RES1,3001,,16,NE,1972,1972,3101,2,1,1124.396753,1124.396753,3505,YES,43.94,50.1,3,7.38,6112,109.899838,119.13948,128.749369,133.772139,I,Above,Gable,0,5701,,47.01904067,0,0,,,,1,1,,0.35,nav,1,1972,2,, 11652,NJBF000087201,236 BOSTON AVE,Egg Harbor City,NJ,39.52686496,-74.6394916,RES1,3001,,16,NE,1955,1955,3101,1,1,502.4190797,502.4190797,3505,NO,19.28,32.38,3,4.08,6112,109.840193,119.076504,128.690254,133.67723,I,Above,Hip,0,5701,,25.83058714,0,0,,,,1,1,,0.35,nav,1,1955,1,, 11653,NJBF000087195,400 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52680479,-74.63402118,RES1,3001,,16,NE,1960,1960,3101,1,1,1742.825282,1742.825282,3505,NO,15.76,26.08,3,-1.92,6106,109.909103,119.149115,128.758434,133.786589,I,Above,Gable,0,5701,,20.92407121,0,0,,,,1,1,,0.03,nav,1,1960,1,, 11654,NJBF000087198,228 BOSTON AVE,Egg Harbor City,NJ,39.52683722,-74.63970663,RES1,3001,,16,NE,1955,1955,3101,1,1,1719.5627,1719.5627,3505,NO,9.65,17.39,3,-1.3,6112,109.837561,119.073962,128.687851,133.673402,I,Above,Hip,0,5701,,13.51759858,0,0,,,,1,1,,0.35,nav,1,1955,1,, 11655,NJBF000087200,215 BOSTON AVE,Egg Harbor City,NJ,39.52686117,-74.64049337,RES1,3001,,16,NE,1910,1910,3101,2,1,1228.105,1228.105,3505,NO,40.3,52.66,3,3.61,6112,109.827738,119.063452,128.678007,133.657483,I,Above,Gable,0,5701,,46.47827233,0,0,,,,1,1,,0.35,nav,1,1910,2,, 11656,NJBF000087203,336 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52689258,-74.63572146,RES1,3001,,16,NE,1955,1955,3101,2,1,2394.204689,2394.204689,3505,NO,40.48,46.22,3,3.68,6112,109.887443,119.125788,128.736556,133.751515,I,Above,Gable,0,5701,,43.35034754,0,1.1,,,,1,1,,0.35,nav,1,1955,2,, 11657,NJBF000087204,251 HAVANA AVE,Egg Harbor City,NJ,39.52690645,-74.63852698,RES1,3001,,16,NE,1960,1960,3101,1,1,2479.492631,2479.492631,3505,NO,24.75,37.36,3,8.99,6112,109.852173,119.08875,128.701774,133.695709,I,Above,Hip,0,5701,,31.05284918,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11658,NJBF000087206,300 HAVANA AVE,Egg Harbor City,NJ,39.52694867,-74.63765657,RES1,3001,,16,NE,1963,1963,3101,2,1,1383.207734,1383.207734,3505,NO,21.19,35.65,3,-0.04,6112,109.862993,119.099752,128.712132,133.712285,I,Above,Gable,0,5701,,28.4189767,0,0,,,,1,1,,0.35,nav,1,1963,2,, 11659,NJBF000087205,325 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52694578,-74.63654823,RES1,3001,,16,NE,1958,1958,3101,1,1,2440.712546,2440.712546,3505,NO,16.17,31.11,3,0.34,6112,109.87693,119.11437,128.725861,133.734308,I,Above,Gable,0,5701,,23.64005192,0,1.2,,,,1,1,,0.35,nav,1,1958,1,, 11660,NJBF000087207,236 BOSTON AVE,Egg Harbor City,NJ,39.52698825,-74.63951297,RES1,3001,,16,NE,1955,1955,3101,1,1,2290.216025,2290.216025,3505,NO,15.16,20.34,3,-1.12,6112,109.839719,119.075034,128.688952,133.674937,I,Above,Hip,0,5701,,17.75069853,0,0,,,,1,1,,0.35,nav,1,1955,1,, 11661,NJBF000087210,344 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52704552,-74.63552822,RES1,3001,,16,NE,1963,1963,3101,1,1,2420.358068,2420.358068,3505,NO,24.22,33.38,3,6.76,6112,109.889609,119.126839,128.737645,133.753002,I,Above,Hip,0,5701,,28.80021663,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 11662,NJBF000087213,333 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.5271154,-74.63631841,RES1,3001,,16,NE,1960,1960,3101,1,1,1437.491678,1437.491678,3505,NO,16.12,30.21,3,-1.09,6112,109.879528,119.11575,128.727268,133.736283,I,Above,Hip,0,5701,,23.16427965,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11663,NJBF000087215,244 BOSTON AVE,Egg Harbor City,NJ,39.52714674,-74.63942206,RES1,3001,,16,NE,1930,1930,3101,1,1,972.2174773,972.2174773,3505,NO,10.72,19.67,3,-2.24,6112,109.840578,119.07468,128.68872,133.674312,I,Above,Gable,0,5701,,15.19510866,0,0,,,,1,1,,0.35,nav,1,1930,1,, 11664,NJBF000087216,401 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52714705,-74.63446898,RES1,3001,,15,NE,1970,1970,3101,2,1,1353.152778,1353.152778,3505,NO,29.57,38.9,3,-2.94,6112,109.90282,119.13984,128.749937,133.772463,I,Above,Gable,0,5701,,34.23465912,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 11665,NJBF000087217,312 HAVANA AVE,Egg Harbor City,NJ,39.52715708,-74.63747104,RES1,3001,,15,NE,1930,1930,3101,1,1,1287.248902,1287.248902,3505,NO,24.69,36.94,3,7.76,6112,109.864963,119.10017,128.712658,133.712792,I,Above,Hip,0,5701,,30.81284435,0,0,,,,1,1,,0.35,nav,1,1930,1,, 11666,NJBF000087223,248 BOSTON AVE,Egg Harbor City,NJ,39.52725815,-74.63930089,RES1,3001,,15,NE,1900,1900,3101,1,1,943.1405179,943.1405179,3505,NO,8.83,16.45,3,-1.78,6112,109.841895,119.075185,128.689264,133.675013,I,Above,Gable,0,5701,,12.63975428,0,0,,,,1,1,,0.35,nav,1,1900,1,, 11667,NJBF000087220,314 HAVANA AVE,Egg Harbor City,NJ,39.52723877,-74.63736249,RES1,3001,,15,NE,1929,1929,3101,1,1,1673.994412,1673.994412,3505,NO,11.43,16.54,3,-0.38,6112,109.866188,119.100803,128.713305,133.713699,I,Above,Hip,0,5701,,13.98319522,0,0,,,,1,1,,0.35,nav,1,1929,1,, 11668,NJBF000087226,250 BOSTON AVE,Egg Harbor City,NJ,39.52736225,-74.63917649,RES1,3001,,17,NE,1991,1991,3101,2,1,1566.203066,1566.203066,3505,NO,30.63,40.63,3,5.86,6112,109.843274,119.07581,128.689917,133.6759,I,Above,Gable,0,5701,,35.62989611,0,0,,,,1,1,,0.35,nav,1,1991,2,, 11669,NJBF000087227,318 HAVANA AVE,Egg Harbor City,NJ,39.52736691,-74.63715323,RES1,3001,,16,NE,1958,1958,3101,2,1,1674.967368,1674.967368,3505,NO,39.28,51.91,3,8.95,6112,109.868587,119.102303,128.714796,133.715884,I,Above,Gable,0,5701,,45.59375292,0,0,,,,1,1,,0.35,nav,1,1958,2,, 11670,NJBF000087231,311 HAVANA AVE,Egg Harbor City,NJ,39.52744545,-74.63809058,RES1,3001,,16,NE,1902,1902,3101,2,1,1237.803339,1237.803339,3505,NO,39.44,53.46,3,6.33,6112,109.85669,119.089223,128.702562,133.696113,I,Above,Gable,0,5701,,46.45339697,0,0,,,,1,1,,0.35,nav,1,1902,2,, 11671,NJBF000087230,1102 BEETHOVEN ST,Egg Harbor City,NJ,39.52743101,-74.63899788,RES1,3001,,16,NE,1950,1950,3101,1,1,1775.925721,1775.925721,3505,NO,14.17,26.35,3,-2.84,6112,109.845375,119.07747,128.691518,133.67837,I,Above,Gable,0,5701,,20.25714517,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 11672,NJBF000087232,457 ANTWERP AVE,Egg Harbor City,NJ,39.52746073,-74.63208842,RES1,3001,,16,NE,1922,1922,3101,2,1,1348.31588,1348.31588,3505,NO,34.11,45.29,3,0.9,6112,109.932518,119.168316,128.776949,133.81492,I,Above,Gable,0,5701,,39.6989875,0,0,,,,1,1,,0.35,nav,1,1922,2,, 11673,NJBF000087242,420 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52777251,-74.63469969,RES1,3001,,16,NE,1966,1966,3101,2,1,2685.954949,2685.954949,3505,NO,32.57,46.13,3,1.77,6112,109.898784,119.130658,128.741718,133.7583,I,Above,Gable,0,5701,,39.35025958,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 11674,NJBF000087248,430 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52801369,-74.63448918,RES1,3001,,16,NE,1960,1960,3101,1,1,1558.662411,1558.662411,3505,NO,20.32,28.19,3,8.47,6112,109.901024,119.131084,128.74228,133.758797,I,Above,Gable,0,5701,,24.25156187,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11675,NJBF000087251,434 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52817695,-74.63430068,RES1,3001,,16,NE,1966,1966,3101,1,1,2019.079057,2019.079057,3505,NO,18.62,32.24,3,6.32,6112,109.903112,119.13197,128.743223,133.760031,I,Above,Gable,0,5701,,25.42698983,0,0,,,,1,1,,0.35,nav,1,1966,1,, 11676,NJBF000087252,425 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52825132,-74.63504066,RES1,3001,,16,NE,1980,1980,3101,1,1,2558.983122,2558.983122,3505,NO,12.46,25.12,3,1.77,6112,109.893621,119.121475,128.7334,133.744225,I,Above,Gable,0,5701,,18.79190113,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11677,NJBF000087255,444 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52832922,-74.63413185,RES1,3001,,16,NE,1963,1963,3101,2,1,1802.922298,1802.922298,3505,NO,40.45,50.08,3,2.47,6106,109.904979,119.132712,128.744024,133.761057,I,Above,Gable,0,5701,,45.2648239,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 11678,NJBF000087258,503 NEW ORLEANS AVE,Egg Harbor City,NJ,39.52841349,-74.63283436,RES1,3001,,14,NE,1920,1920,3101,1,1,1304.127996,1304.127996,3505,NO,16.82,29.17,3,0.83,6110,109.921301,119.149062,128.759471,133.785522,I,Above,Gable,0,5701,,22.99319417,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11679,NJBF000087262,437 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52856397,-74.63467486,RES1,3001,,16,NE,1960,1960,3101,1,1,1596.44442,1596.44442,3505,NO,16.1,29.6,3,1.64,6112,109.897686,119.123236,128.735267,133.746693,I,Above,Gable,0,5701,,22.8511224,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11680,NJBF000087264,445 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52874482,-74.63447528,RES1,3001,,16,NE,1960,1960,3101,1,1,1907.51366,1907.51366,3505,NO,21.45,34.81,3,3.4,6112,109.899889,119.124099,128.736202,133.747888,I,Above,Gable,0,5701,,28.12978767,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11681,NJBF000087267,459 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.5288835,-74.63428026,RES1,3001,,16,NE,1964,1964,3101,1,1,2180.421716,2180.421716,3505,NO,15.77,28.7,3,0.52,6112,109.902108,119.125319,128.737443,133.749643,I,Above,Hip,0,5701,,22.23573703,0,0,,,,1,1,,0.35,nav,1,1964,1,, 11682,NJBF000087273,442 HAVANA AVE,Egg Harbor City,NJ,39.52928131,-74.63498681,RES1,3001,,16,NE,1928,1928,3101,1,1,1534.417409,1534.417409,3505,NO,19.09,27.86,3,2.64,6112,109.892453,119.112086,128.725264,133.72954,I,Above,Gable,0,5701,,23.4777921,0,0,,,,1,1,,0.35,nav,1,1928,1,, 11683,NJBF000087276,540 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52942297,-74.63255611,RES1,3001,,16,NE,1960,1960,3101,1,1,823.9212592,823.9212592,3505,NO,23.72,37.94,3,5.93,6110,109.922998,119.142804,128.754275,133.775567,I,Above,Gable,0,5701,,30.82677821,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11684,NJBF000087283,540 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.52964728,-74.63270879,RES1,3001,,16,NE,1960,1960,3101,1,1,831.6695074,831.6695074,3505,NO,16.26,29.44,3,4.45,6112,109.920642,119.138572,128.750445,133.769101,I,Above,Gable,0,5701,,22.8504057,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11685,NJBF000087284,542 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.5296969,-74.63243876,RES1,3001,,16,NE,1960,1960,3101,1,1,2066.570294,2066.570294,3505,NO,20.23,26.48,3,1.56,6112,109.923983,119.141653,128.753382,133.773691,I,Above,Gable,0,5701,,23.35717202,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11686,NJBF000087287,501-507 HAVANA AVE,Egg Harbor City,NJ,39.52994558,-74.63507901,RES1,3001,,16,NE,2006,2006,3101,1,1,1327.943749,1327.943749,3505,NO,20.53,32.9,3,5.03,6112,109.890086,119.104344,128.718433,133.717546,I,Above,Gable,0,5701,,26.71348691,0,0,,,,1,1,,0.35,nav,1,2006,1,, 11687,NJBF000087289,509 HAVANA AVE,Egg Harbor City,NJ,39.52998133,-74.63484325,RES1,3001,,15,NE,1940,1940,3101,1,1,1329.897978,1329.897978,3505,NO,10.04,22,3,-0.6,6112,109.893001,119.107108,128.721058,133.721686,I,Above,Hip,0,5701,,16.01942996,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11688,NJBF000087299,559 SAN FRANCISCO AVE,Egg Harbor City,NJ,39.53018073,-74.63281852,RES1,3001,,16,NE,1975,1975,3101,2,1,2261.399554,2261.399554,3505,NO,30.2,43.77,3,6.41,6112,109.918263,119.131853,128.744489,133.758742,I,Above,Hip,0,5701,,36.98534027,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 11689,NJBF000087310,514 BOSTON AVE,Egg Harbor City,NJ,39.53056436,-74.63538937,RES1,3001,,16,NE,1974,1974,3101,2,1,1112.764015,1112.764015,3505,YES,33.22,40.56,3,6.61,6112,109.885052,119.094192,128.709306,133.701957,I,Above,Gable,0,5701,,36.89000909,0,0,,,,1,1,,0.35,nav,1,1974,2,, 11690,NJBF000087319,520 BOSTON AVE,Egg Harbor City,NJ,39.5307169,-74.635263,RES1,3001,,15,NE,1920,1920,3101,1,1,1419.064968,1419.064968,3505,NO,17.99,30.02,3,1.77,6112,109.88636,119.094345,128.709554,133.702112,I,Above,Gable,0,5701,,24.00499696,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11691,NJBF000087324,524 BOSTON AVE,Egg Harbor City,NJ,39.53082458,-74.63508578,RES1,3001,,16,NE,1978,1978,3101,1,1,1620.684456,1620.684456,3505,NO,17.66,24.67,3,1.39,6112,109.888393,119.09561,128.71082,133.703966,I,Above,Gable,0,5701,,21.16756233,0,0,,,,1,1,,0.35,nav,1,1978,1,, 11692,NJBF000087337,611 HAVANA AVE,Egg Harbor City,NJ,39.53147842,-74.63323487,RES1,3001,,16,NE,1960,1960,3101,1,1,2388.386556,2388.386556,3505,NO,16.21,30.94,3,1.69,6112,109.910583,119.113559,128.728172,133.730639,I,Above,Gable,0,5701,,23.57149312,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11693,NJBF000087340,549 BOSTON AVE,Egg Harbor City,NJ,39.53158269,-74.63521102,RES1,3001,,16,NE,1960,1960,3101,1,1,2778.043576,2778.043576,3505,NO,16.64,29.92,3,-1.31,6112,109.885423,119.086505,128.702778,133.689902,I,Above,Gable,0,5701,,23.27966818,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11694,NJBF000087343,625 HAVANA AVE,Egg Harbor City,NJ,39.53168276,-74.63298783,RES1,3001,,16,NE,1950,1950,3101,2,1,1543.143163,1543.143163,3505,NO,22.27,30.05,3,0.06,6112,109.913332,119.114793,128.729479,133.732395,I,Above,Gable,0,5701,,26.16220151,0,0,,,,1,1,,0.35,nav,1,1950,2,, 11695,NJBF000087346,625 HAVANA AVE,Egg Harbor City,NJ,39.5317461,-74.63293459,RES1,3001,,16,NE,1950,1950,3101,2,1,589.3426883,589.3426883,3505,NO,31.91,38.66,3,8.56,6112,109.913886,119.11487,128.729596,133.73248,I,Above,Gable,0,5701,,35.28493824,0,0,,,,1,1,,0.35,nav,1,1950,2,, 11696,NJBF000087345,559 BOSTON AVE,Egg Harbor City,NJ,39.53174546,-74.63486516,RES1,3001,,16,NE,1890,1890,3101,2,1,1178.686376,1178.686376,3505,NO,30.34,37.94,3,-1.69,6112,109.889484,119.089457,128.705668,133.694273,I,Above,Gable,0,5701,,34.13886847,0,0,,,,1,1,,0.35,nav,1,1890,2,, 11697,NJBF000087352,600-606 10TH TERRACE,Egg Harbor City,NJ,39.53197869,-74.63457119,RES1,3001,,NaN,NE,1915,0,3101,1,1,1646.846792,1646.846792,3505,NO,19.61,33.81,3,4.64,6112,109.892757,119.091015,128.707299,133.696515,I,Above,Gable,0,5701,,26.70850671,0,0,,,,1,1,,0.35,nav,1,1915,1,, 11698,NJBF000087365,605 BOSTON AVE,Egg Harbor City,NJ,39.53226118,-74.63439297,RES1,3001,,16,NE,1960,1960,3101,1,1,1625.533091,1625.533091,3505,NO,20.6,29.17,3,8.04,6112,109.894478,119.090573,128.707081,133.695725,I,Above,Gable,0,5701,,24.88895949,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11699,NJBF000087368,621 BOSTON AVE,Egg Harbor City,NJ,39.53237717,-74.63425373,RES1,3001,,16,NE,1988,1988,3101,1,1,1630.378288,1630.378288,3505,NO,16.73,29.27,3,0.35,6112,109.896016,119.091256,128.707806,133.696703,I,Above,Gable,0,5701,,22.99983671,0,0,,,,1,1,,0.35,nav,1,1988,1,, 11700,NJBF000087375,,Egg Harbor City,NJ,39.53253742,-74.63171634,RES1,3001,,NaN,NE,1850,0,3102,2,1,798.7120265,798.7120265,3505,NO,39.49,47.53,3,8.27,6112,109.927879,119.123142,128.737957,133.744524,I,Above,Gable,0,5701,,43.51083678,0,0,,,,1,1,,0.35,nav,1,1850,2,, 11701,NJBF000087381,625 BOSTON AVE,Egg Harbor City,NJ,39.532644,-74.63404911,RES1,3001,,16,NE,1980,1980,3101,2,2,1062.359446,1062.359446,3505,NO,30.79,40.32,3,2.29,6106,109.898105,119.091315,128.708051,133.696677,I,Above,Gable,0,5701,,35.55579955,0,0,,,,1,1,,0.03,nav,1,1980,2,, 11702,NJBF000087384,743 HAVANA AVE,Egg Harbor City,NJ,39.53268529,-74.631644,RES1,3001,,15,NE,1850,1850,3102,2,1,1144.750582,1144.750582,3505,NO,30.23,38.98,3,6.31,6112,109.928514,119.122627,128.737578,133.743684,I,Above,Hip,0,5701,,34.6052209,0,0,,,,1,1,,0.35,nav,1,1850,2,, 11703,NJBF000087385,618 ST LOUIS AVE,Egg Harbor City,NJ,39.53270721,-74.63456467,RES1,3001,,16,NE,1955,1955,3101,2,1,516.6397629,516.6397629,3505,YES,25.66,33.83,3,1.21,6112,109.891474,119.083909,128.701122,133.685501,I,Above,Gable,0,5701,,29.74376564,0,1.1,,,,1,1,,0.35,nav,1,1955,2,, 11704,NJBF000087393,747 HAVANA AVE,Egg Harbor City,NJ,39.53280846,-74.63152371,RES1,3001,,15,NE,1920,1920,3102,1,1,1159.282352,1159.282352,3505,NO,19.44,33.68,3,7.66,6112,109.929807,119.122993,128.738012,133.744178,I,Above,Hip,0,5701,,26.55926205,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11705,NJBF000087406,630 ST LOUIS AVE,Egg Harbor City,NJ,39.53295741,-74.63435273,RES1,3001,,16,NE,1956,1956,3101,2,1,1791.285092,1791.285092,3505,NO,34.3,45.57,3,7.05,6112,109.893679,119.084225,128.701597,133.685873,I,Above,Gable,0,5701,,39.93579637,0,0,,,,1,1,,0.35,nav,1,1956,2,, 11706,NJBF000087410,630 ST LOUIS AVE,Egg Harbor City,NJ,39.53307116,-74.63451724,RES1,3001,,16,NE,1956,1956,3101,2,1,1510.181512,1510.181512,3505,NO,19.89,29.22,3,-1.74,6112,109.891397,119.080943,128.698589,133.680885,I,Above,Gable,0,5701,,24.55545876,0,0,,,,1,1,,0.35,nav,1,1956,2,, 11707,NJBF000087412,735 HAVANA AVE,Egg Harbor City,NJ,39.53314689,-74.63115692,RES1,3001,,15,NE,1952,1952,3102,1,1,1461.719081,1461.719081,3505,NO,16.72,31.67,3,3.79,6112,109.933833,119.124481,128.739662,133.746258,I,Above,Gable,0,5701,,24.19102353,0,0,,,,1,1,,0.35,nav,1,1952,1,, 11708,NJBF000087413,720 BOSTON AVE,Egg Harbor City,NJ,39.53318444,-74.63192608,RES1,3001,,15,NE,1940,1940,3102,1,1,1672.048425,1672.048425,3505,NO,22.69,29.84,3,7.61,6112,109.92398,119.113951,128.729762,133.730453,I,Above,Gable,0,5701,,26.26044691,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11709,NJBF000087416,634 ST LOUIS AVE,Egg Harbor City,NJ,39.53323295,-74.6343479,RES1,3001,,16,NE,1947,1947,3101,1,1,1153.469318,1153.469318,3505,NO,21.61,27.58,3,4.15,6112,109.893223,119.081562,128.699287,133.681751,I,Above,Gable,0,5701,,24.59710642,0,0,,,,1,1,,0.35,nav,1,1947,1,, 11710,NJBF000087427,634 ST LOUIS AVE,Egg Harbor City,NJ,39.53341192,-74.63423478,RES1,3001,,16,NE,1947,1947,3101,1,1,1011.96581,1011.96581,3505,NO,21.63,34.84,3,8.55,6112,109.894311,119.081276,128.699146,133.68125,I,Above,Gable,0,5701,,28.23699598,0,0,,,,1,1,,0.35,nav,1,1947,1,, 11711,NJBF000087431,658 ST LOUIS AVE,Egg Harbor City,NJ,39.53351738,-74.63403835,RES1,3001,,16,NE,1957,1957,3101,2,1,1321.169298,1321.169298,3505,YES,42.22,55.24,3,3.74,6112,109.896599,119.082826,128.70068,133.683542,I,Above,Hip,0,5701,,48.73205085,0,0,,,,1,1,,0.35,nav,1,1957,2,, 11712,NJBF000087447,700 ST LOUIS AVE,Egg Harbor City,NJ,39.53380901,-74.63366019,RES1,3001,,16,NE,1970,1970,3101,1,1,2429.090703,2429.090703,3505,NO,21.74,26.97,3,2.97,6112,109.900819,119.084904,128.702847,133.686555,I,Above,Gable,0,5701,,24.35044728,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11713,NJBF000087453,714 ST LOUIS AVE,Egg Harbor City,NJ,39.5339963,-74.63348174,RES1,3001,,16,NE,1923,1923,3101,2,1,1383.213382,1383.213382,3505,NO,24.07,29.3,3,0.83,6112,109.902712,119.085392,128.703442,133.687216,I,Above,Gable,0,5701,,26.68328869,0,0,,,,1,1,,0.35,nav,1,1923,2,, 11714,NJBF000087454,1100 DUERER ST,Egg Harbor City,NJ,39.53403943,-74.63132579,COM1,3001,219,NaN,ME,1954,1954,3401,1,1,4284.350208,4284.350208,3507,NO,20.77,26.21,1,1.34,6112,109.929969,119.113382,128.72985,133.729244,I,Above,Flat,0,NaN,,23.49240188,0,0,,,,1,1,,0.35,nav,1,1954,1,, 11715,NJBF000087461,1101 DUERER ST,Egg Harbor City,NJ,39.53423881,-74.63095647,RES1,3001,,15,NE,1910,1910,3102,2,1,1116.658203,1116.658203,3505,NO,38.27,46.76,3,5.46,6112,109.934291,119.116281,128.732731,133.73351,I,Above,Hip,0,5701,,42.51571118,0,0,,,,1,1,,0.35,nav,1,1910,2,, 11716,NJBF000087460,711 ST LOUIS AVE,Egg Harbor City,NJ,39.53423704,-74.63388761,RES1,3001,,15,NE,1974,1930,3101,1,1,3655.268556,3655.268556,3505,NO,15.03,24.93,3,-2.82,6112,109.897124,119.077667,128.69634,133.675497,I,Above,Gable,0,5701,,19.9789929,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11717,NJBF000087472,725 ST LOUIS AVE,Egg Harbor City,NJ,39.53448325,-74.6336962,RES1,3001,,16,NE,1970,1970,3101,2,1,1513.097682,1513.097682,3505,NO,35.81,41.4,3,-0.95,6112,109.899078,119.07775,128.696597,133.675533,I,Above,Gable,0,5701,,38.60690905,0,0,,,,1,1,,0.35,nav,1,1970,2,, 11718,NJBF000087485,729-31 ST LOUIS AVE,Egg Harbor City,NJ,39.53478812,-74.63364432,RES1,3001,,NaN,NE,1969,0,3101,1,1,977.0573509,977.0573509,3505,NO,12.14,18.33,3,-2.94,6112,109.89915,119.075408,128.694612,133.671896,I,Above,Gable,0,5701,,15.23628412,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11719,NJBF000087514,320 NEW YORK AVE,Egg Harbor City,NJ,39.53538881,-74.64910627,RES1,3001,,16,NE,1976,1976,3101,1,1,2589.021191,2589.021191,3505,NO,20.21,27.27,3,8.66,6112,109.707256,118.869679,128.501775,133.358322,I,Above,Gable,0,5701,,23.7395414,0,0,,,,1,1,,0.35,nav,1,1976,1,, 11720,NJBF000087516,339 NORFOLK AVE,Egg Harbor City,NJ,39.53552723,-74.64820898,RES1,3001,,16,NE,1958,1958,3101,1,1,526.3307766,526.3307766,3505,NO,19.5,29.53,3,1.94,6112,109.717829,118.879751,128.511306,133.373814,I,Above,Gable,0,5701,,24.51351399,0,0,,,,1,1,,0.35,nav,1,1958,1,, 11721,NJBF000087517,534 LIVERPOOL AVE,Egg Harbor City,NJ,39.53554856,-74.64137633,RES1,3001,,16,NE,1945,1945,3101,1,1,1509.213338,1509.213338,3505,NO,16.22,25.48,3,-0.75,6112,109.801211,118.967174,128.593353,133.507715,I,Above,Gable,0,5701,,20.85045479,0,0,,,,1,1,,0.35,nav,1,1945,1,, 11722,NJBF000087524,521 LIVERPOOL AVE,Egg Harbor City,NJ,39.53571733,-74.64233382,RES1,3001,,16,NE,1930,1930,3101,1,1,671.7384807,671.7384807,3505,NO,16.45,27.33,3,2.45,6112,109.789098,118.953163,128.580311,133.486307,I,Above,Gable,0,5701,,21.88804264,0,0,,,,1,1,,0.35,nav,1,1930,1,, 11723,NJBF000087522,417 WASHINGTON AVE,Egg Harbor City,NJ,39.53566238,-74.64588385,RES1,3001,,16,NE,1986,1986,3101,1,1,3235.567064,3235.567064,3505,NO,12.01,19.88,3,-1.81,6112,109.745773,118.908113,128.537993,133.417379,I,Above,Gable,0,5701,,15.94357535,0,1.1,,,,1,1,,0.35,nav,1,1986,1,, 11724,NJBF000087526,357 NORFOLK AVE,Egg Harbor City,NJ,39.53573238,-74.64759358,RES1,3001,,16,NE,1965,1965,3101,1,1,1156.389622,1156.389622,3505,NO,20.96,30.75,3,7.26,6112,109.724892,118.885591,128.516918,133.382767,I,Above,Gable,0,5701,,25.85368944,0,0,,,,1,1,,0.35,nav,1,1965,1,, 11725,NJBF000087529,540 LIVERPOOL AVE,Egg Harbor City,NJ,39.53576309,-74.64111388,RES1,3001,,16,NE,1900,1900,3101,1,1,1497.578164,1497.578164,3505,NO,14.73,25.79,3,-1.99,6112,109.804043,118.968456,128.594706,133.509616,I,Above,Hip,0,5701,,20.26069057,0,0,,,,1,1,,0.35,nav,1,1900,1,, 11726,NJBF000087534,224 HAMBURG AVE,Egg Harbor City,NJ,39.53582944,-74.65251924,RES1,3001,,16,NE,1921,1921,3101,2,1,1077.8676,1077.8676,3505,NO,36,49.05,3,-2.56,6112,109.665544,118.822192,128.457572,133.284876,I,Above,Gable,0,5701,,42.52540509,0,0,,,,1,1,,0.15,nav,1,1921,2,, 11727,NJBF000087532,535 LIVERPOOL AVE,Egg Harbor City,NJ,39.53579063,-74.64179579,RES1,3001,,16,NE,1953,1953,3101,1,1,1205.827932,1205.827932,3505,NO,21.77,29.61,3,2.46,6112,109.795581,118.959375,128.586196,133.495767,I,Above,Hip,0,5701,,25.68626832,0,0,,,,1,1,,0.35,nav,1,1953,1,, 11728,NJBF000087530,410 NORFOLK AVE,Egg Harbor City,NJ,39.53577208,-74.64657569,RES1,3001,,16,NE,1928,1928,3101,1,1,2562.859236,2562.859236,3505,NO,25.88,31.24,3,6.39,6112,109.73716,118.898192,128.528762,133.40213,I,Above,Gable,0,5701,,28.56338547,0,0,,,,1,1,,0.35,nav,1,1928,1,, 11729,NJBF000087538,444 WASHINGTON AVE,Egg Harbor City,NJ,39.53588134,-74.6447426,RES1,3001,,17,NE,1981,1981,3101,2,1,2025.858484,2025.858484,3505,NO,25.33,33.05,3,2.81,6112,109.759275,118.920587,128.549845,133.436461,I,Above,Flat,0,5701,,29.19129953,0,1.2,,,,1,1,,0.35,nav,1,1981,2,, 11730,NJBF000087539,502 CLAUDIUS ST,Egg Harbor City,NJ,39.53589704,-74.64090814,RES1,3001,,17,NE,1977,1977,3101,2,1,1847.49186,1847.49186,3505,NO,43.32,49.32,3,8.69,6112,109.806334,118.9698,128.596063,133.511632,I,Above,Gable,0,5701,,46.31706371,0,1.2,,,,1,1,,0.35,nav,1,1977,2,, 11731,NJBF000087541,458 WASHINGTON AVE,Egg Harbor City,NJ,39.53594738,-74.64436988,RES1,3001,,16,NE,1950,1950,3101,1,1,1138.940759,1138.940759,3505,NO,17.19,28.43,3,2.28,6112,109.763709,118.924726,128.553774,133.442786,I,Above,Gable,0,5701,,22.81137895,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11732,NJBF000087543,435 WASHINGTON AVE,Egg Harbor City,NJ,39.5360058,-74.64563395,RES1,3001,,16,NE,1907,1907,3101,2,1,1525.703036,1525.703036,3505,NO,33.62,48.17,3,-1.55,6112,109.748181,118.907952,128.538075,133.417068,I,Above,Gable,0,5701,,40.89694042,0,0,,,,1,1,,0.35,nav,1,1907,2,, 11733,NJBF000087547,458 WASHINGTON AVE,Egg Harbor City,NJ,39.53609215,-74.64456642,RES1,3001,,16,NE,1950,1950,3101,1,1,1628.429248,1628.429248,3505,NO,13.9,25.86,3,-0.63,6112,109.761045,118.920792,128.550182,133.436735,I,Above,Gable,0,5701,,19.8809071,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11734,NJBF000087551,505 CLAUDIUS ST,Egg Harbor City,NJ,39.53614015,-74.64052416,RES1,3001,,16,NE,1955,1955,3101,1,1,2286.588289,2286.588289,3505,NO,22.9,30.04,3,5.13,6112,109.810621,118.972373,128.598651,133.515493,I,Above,Hip,0,5701,,26.47108125,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 11735,NJBF000087559,445 WASHINGTON AVE,Egg Harbor City,NJ,39.53630388,-74.64509031,RES1,3001,,17,NE,1955,1955,3101,1,1,4435.560889,4435.560889,3505,NO,18.51,29.08,3,3.85,6106,109.754257,118.912002,128.542079,133.423227,I,Above,Hip,0,5701,,23.79619019,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 11736,NJBF000087563,620 LIVERPOOL AVE,Egg Harbor City,NJ,39.53636716,-74.6403711,RES1,3001,,15,NE,1940,1940,3101,1,1,1513.102372,1513.102372,3505,YES,15.07,26.44,3,0.57,6112,109.812083,118.972116,128.59857,133.515049,I,Above,Gable,0,5701,,20.75583045,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11737,NJBF000087565,,Egg Harbor City,NJ,39.53648163,-74.64100743,RES1,3001,,NaN,NE,1969,0,3101,1,1,1848.482257,1848.482257,3505,NO,14.72,27.03,3,-2.17,6106,109.804009,118.962764,128.589864,133.50078,I,Above,Gable,0,5701,,20.87484922,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11738,NJBF000087567,533 LONDON AVE,Egg Harbor City,NJ,39.53650914,-74.642789,COM8,3001,,NaN,ME,1932,1932,3401,2,1,2449.444993,2449.444993,3507,NO,22.92,37.24,1,0.56,6106,109.782025,118.939529,128.568059,133.465319,I,Above,Hip,0,5701,,30.07869861,0,0,,,,1,1,,0.03,nav,1,1932,2,, 11739,NJBF000087569,626 LIVERPOOL AVE,Egg Harbor City,NJ,39.53654249,-74.64019711,RES1,3001,,15,NE,1940,1940,3101,1,1,1608.068185,1608.068185,3505,NO,21.79,33.39,3,2.77,6112,109.813904,118.972642,128.599188,133.51581,I,Above,Gable,0,5701,,27.59052229,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11740,NJBF000087571,509 WASHINGTON AVE,Egg Harbor City,NJ,39.53659965,-74.64465757,RES1,3001,,16,NE,1955,1955,3101,1,1,3167.713623,3167.713623,3505,NO,21.64,34.05,3,2.92,6106,109.758976,118.914639,128.544757,133.427217,I,Above,Hip,0,5701,,27.84509001,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 11741,NJBF000087574,630 LIVERPOOL AVE,Egg Harbor City,NJ,39.53665359,-74.64005655,RES1,3001,,16,NE,1925,1925,3101,1,1,1258.167063,1258.167063,3505,NO,9.34,18.1,3,-2.94,6112,109.815423,118.973349,128.599932,133.516861,I,Above,Hip,0,5701,,13.71923656,0,0,,,,1,1,,0.35,nav,1,1925,1,, 11742,NJBF000087573,,Egg Harbor City,NJ,39.53663682,-74.63329735,COM8,3001,,NaN,ME,1969,0,3401,1,1,630.0615036,630.0615036,3507,NO,20.66,30.92,1,1.92,6112,109.899948,119.061583,128.682948,133.650477,I,Above,Flat,0,NaN,,25.78974781,0,0,,,,1,1,,1,nav,1,1969,1,, 11743,NJBF000087577,632 LIVERPOOL AVE,Egg Harbor City,NJ,39.53676536,-74.63989603,RES1,3001,,16,NE,2002,2002,3101,1,1,1664.317348,1664.317348,3505,NO,27.03,38.78,3,8.07,6112,109.817205,118.974337,128.60094,133.518341,I,Above,Gable,0,5701,,32.90584701,0,0,,,,1,1,,0.35,nav,1,2002,1,, 11744,NJBF000087572,,Egg Harbor City,NJ,39.53661719,-74.63371611,COM8,3001,,NaN,ME,1974,0,3401,3,1,22574.24565,22574.24565,3507,NO,36.87,48.44,1,1.02,6112,109.894701,119.056288,128.677944,133.642502,I,Above,Flat,0,NaN,,42.65523937,0,0,,,,1,1,,1,nav,1,1974,3,, 11745,NJBF000087583,648 LIVERPOOL AVE,Egg Harbor City,NJ,39.53700547,-74.63963565,RES1,3001,,16,NE,1980,1980,3101,1,1,1108.884804,1108.884804,3505,NO,8.67,16.41,3,-2.29,6112,109.819967,118.975333,128.602048,133.519805,I,Above,Gable,0,5701,,12.53909453,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11746,NJBF000087586,59 BUERGER ST,Egg Harbor City,NJ,39.53708641,-74.64954164,RES1,3001,,17,NE,1960,1960,3101,2,1,2715.05781,2715.05781,3505,YES,27.63,37.22,3,-1.84,6106,109.698899,118.847644,128.48225,133.324113,I,Above,Gable,0,5701,,32.42305565,0,0,,,,1,1,,0.03,nav,1,1960,2,, 11747,NJBF000087591,658 LIVERPOOL AVE,Egg Harbor City,NJ,39.53719395,-74.63940291,RES1,3001,,16,NE,1979,1979,3101,1,1,1896.18065,1896.18065,3505,NO,17.84,27.35,3,2.94,6112,109.822493,118.976483,128.603265,133.521514,I,Above,Gable,0,5701,,22.59291322,0,0,,,,1,1,,0.35,nav,1,1979,1,, 11748,NJBF000087594,328 HAMBURG AVE,Egg Harbor City,NJ,39.53730224,-74.65076483,RES1,3001,,15,NE,1940,1940,3101,1,1,1053.647515,1053.647515,3505,NO,23.43,37.26,3,5.17,6112,109.68382,118.83006,128.465914,133.296926,I,Above,Gable,0,5701,,30.34813223,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11749,NJBF000087607,425 NEW YORK AVE,Egg Harbor City,NJ,39.53755617,-74.64833675,RES1,3001,,16,NE,1958,1958,3101,1,1,2213.904776,2213.904776,3505,NO,21.85,27.62,3,4.7,6112,109.712544,118.858355,128.492611,133.340591,I,Above,Gable,0,5701,,24.73421883,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 11750,NJBF000087612,504 NEW YORK AVE,Egg Harbor City,NJ,39.53774069,-74.64626503,RES1,3001,,16,NE,1960,1960,3101,1,1,2314.713514,2314.713514,3505,NO,20.2,32.76,3,6.59,6112,109.737278,118.882921,128.515783,133.378382,I,Above,Gable,0,5701,,26.47799927,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 11751,NJBF000087620,620 WASHINGTON AVE,Egg Harbor City,NJ,39.53793275,-74.64230372,RES1,3001,,16,NE,1986,1986,3101,2,1,2137.332034,2137.332034,3505,NO,30.48,39.47,3,6.63,6112,109.785287,118.931763,128.561771,133.453206,I,Above,Gable,0,5701,,34.97422761,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 11752,NJBF000087627,543 NORFOLK AVE,Egg Harbor City,NJ,39.53807446,-74.64488204,RES1,3001,,16,NE,1950,1950,3101,2,1,1730.226954,1730.226954,3505,NO,27.81,37.15,3,-0.16,6112,109.753475,118.89732,128.529528,133.400452,I,Above,Hip,0,5701,,32.47934188,0,0,,,,1,1,,0.35,nav,1,1950,2,, 11753,NJBF000087628,518 NEW YORK AVE,Egg Harbor City,NJ,39.53811845,-74.64591567,RES1,3001,,16,NE,1973,1973,3101,2,1,1756.393525,1756.393525,3505,YES,27.48,35.97,3,1.94,6112,109.740808,118.88368,128.516758,133.379508,I,Above,Gable,0,5701,,31.72318179,0,0,,,,1,1,,0.35,nav,1,1973,2,, 11754,NJBF000087629,,Egg Harbor City,NJ,39.53816959,-74.64361259,RES1,3001,,NaN,NE,1940,0,3101,1,1,1258.180304,1258.180304,3505,NO,15.69,24.65,3,-1.96,6112,109.768789,118.912624,128.543965,133.423897,I,Above,Gable,0,5701,,20.16867916,0,0,,,,1,1,,0.35,nav,1,1940,1,, 11755,NJBF000087634,543 NORFOLK AVE,Egg Harbor City,NJ,39.53822134,-74.64463236,RES1,3001,,16,NE,1950,1950,3101,2,1,529.2382301,529.2382301,3505,NO,32.66,38.04,3,0.67,6112,109.756245,118.899074,128.531278,133.403126,I,Above,Gable,0,5701,,35.35081575,0,0,,,,1,1,,0.35,nav,1,1950,2,, 11756,NJBF000087611,901 DUERER ST,Egg Harbor City,NJ,39.53771571,-74.63075148,IND2,3001,959,NaN,ME,1988,1988,3401,2,1,35836.85398,35836.85398,3507,NO,39.87,51.46,1,2.33,6112,109.930057,119.084276,128.705152,133.684307,I,Above,Flat,0,NaN,,45.66706928,0,0,,,,1,1,,1,nav,1,1988,2,, 11757,NJBF000087639,124 CLAUDIUS ST,Egg Harbor City,NJ,39.53837448,-74.64456886,RES1,3001,,16,NE,1975,1975,3101,2,1,1051.70338,1051.70338,3505,YES,26.96,34.93,3,2.37,6112,109.756723,118.898377,128.530732,133.40204,I,Above,Gable,0,5701,,30.9449748,0,0,,,,1,1,,0.35,nav,1,1975,2,, 11758,NJBF000087642,500-512 DUERER ST,Egg Harbor City,NJ,39.53848893,-74.63781278,RES1,3001,,45,NE,1980,1980,3101,2,2,1261.075533,1261.075533,3505,NO,36.28,44.06,3,7.61,6112,109.839735,118.984266,128.611527,133.533092,I,Above,Hip,0,5701,,40.16991783,0,0,,,,1,1,,0.35,nav,1,1980,2,, 11759,NJBF000087644,540 NEW YORK AVE,Egg Harbor City,NJ,39.53850401,-74.64544182,RES1,3001,,16,NE,1980,1980,3101,2,1,1357.034853,1357.034853,3505,NO,38.97,49.44,3,3.01,6112,109.745842,118.885944,128.519154,133.382948,I,Above,Gable,0,5701,,44.20657761,0,0,,,,1,1,,0.35,nav,1,1980,2,, 11760,NJBF000087674,644 NORFOLK AVE,Egg Harbor City,NJ,39.53923711,-74.64280725,RES1,3001,,15,NE,1910,1910,3101,2,1,1586.759424,1586.759424,3505,NO,35.76,48.65,3,0.39,6112,109.776617,118.912452,128.544567,133.423512,I,Above,Flat,0,5701,,42.20399158,0,0,,,,1,1,,0.35,nav,1,1910,2,, 11761,NJBF000087677,1010-1058 CHICAGO AVE,Egg Harbor City,NJ,39.54371416,-74.62984085,RES1,3001,,NaN,NE,1918,1991,3102,2,1,1134.088948,1134.088948,3505,NO,42.86,52.11,3,6.64,6106,109.929249,119.035851,128.664156,133.610433,I,Above,Gable,0,5701,,47.48518389,0,0,,,,1,1,,0.03,nav,1,1918,2,, 11762,NJBF000087685,801 PHILADELPHIA AVE,Egg Harbor City,NJ,39.539567,-74.63734192,IND2,3002,330,NaN,ME,1966,1966,3401,1,1,2938.930276,2938.930276,3507,NO,19.01,26.83,1,1.99,6112,109.843481,118.979665,128.607999,133.525931,I,Above,Hip,0,5701,,22.92148806,0,0,,,,1,1,,1,nav,1,1966,1,, 11763,NJBF000087716,1000-58 CINCINNATI AVE,Egg Harbor City,NJ,39.54371416,-74.62984085,RES1,3001,29,NaN,NE,1918,1972,3102,2,1,2163.495994,2163.495994,3505,NO,34.2,44.51,3,6.44,6112,109.929249,119.035851,128.664156,133.610433,I,Above,Gable,0,5701,,39.35605174,0,0,,,,1,1,,1,nav,1,1918,2,, 11764,NJBF000087718,1000-58 CINCINNATI AVE,Egg Harbor City,NJ,39.54371416,-74.62984085,RES1,3001,29,NaN,NE,1918,1972,3102,2,1,3632.954851,3632.954851,3505,NO,27.67,35.93,3,3.64,6112,109.929249,119.035851,128.664156,133.610433,I,Above,Gable,0,5701,,31.79811071,0,0,,,,1,1,,1,nav,1,1918,2,, 11765,NJBF000087865,721 MOSS MILL ROAD,Egg Harbor City,NJ,39.54422669,-74.62633173,RES1,3001,,16,NE,1975,1975,3102,2,1,1112.760953,1112.760953,3505,YES,40.08,54.92,3,8.01,6112,109.972844,119.076791,128.703218,133.671891,I,Above,Gable,0,5701,,47.49988891,0,0,,,,1,1,,0.35,nav,1,1975,2,, 11766,NJBF000087870,1254 PHILADELPHIA AVE,Egg Harbor City,NJ,39.54443725,-74.62905556,RES1,3001,,14,NE,1915,1915,3102,2,1,767.7023814,767.7023814,3505,NO,45.41,52.66,3,8.87,6106,109.937669,119.038819,128.667537,133.614855,I,Above,Flat,0,5701,,49.03340177,0,0,,,,1,1,,0.03,nav,1,1915,2,, 11767,NJBF000087880,1300 PHILADELPHIA AVE,Egg Harbor City,NJ,39.54477442,-74.62867207,RES1,3001,,15,NE,1920,1920,3102,1,1,1578.044891,1578.044891,3505,NO,10.51,24.03,3,-2.54,6112,109.941824,119.040436,128.669336,133.617272,I,Above,Flat,0,5701,,17.26876441,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11768,NJBF000087909,,Egg Harbor City,NJ,39.54571785,-74.63218781,RES1,3001,,NaN,NE,1969,0,3102,2,1,1738.934703,1738.934703,3505,NO,38.6,45.12,3,1.27,6112,109.895352,118.984914,128.617732,133.533501,I,Above,Hip,0,5701,,41.85896967,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11769,NJBF000087912,,Egg Harbor City,NJ,39.54584313,-74.63233569,RES1,3001,,NaN,NE,1969,0,3102,2,1,1031.345909,1031.345909,3505,NO,30.73,40.08,3,4.14,6112,109.893224,118.981723,128.614825,133.528676,I,Above,Hip,0,5701,,35.40910914,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11770,NJBF000088089,1533 PHILADELPHIA AVE,Egg Harbor City,NJ,39.54843004,-74.62542163,RES1,3001,,16,NE,1956,1956,3101,1,1,2875.935953,2875.935953,3507,NO,16.29,26.97,1,2.03,6112,109.975194,119.045815,128.677425,133.625376,I,Above,Gable,0,5701,,21.62869818,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 11771,NJBF000088108,1551 PHILADELPHIA AVE,Egg Harbor City,NJ,39.54868174,-74.62498494,RES1,3001,,16,NE,1979,1979,3101,2,1,1904.691553,1904.691553,3507,NO,33.15,41.74,1,2.58,6112,109.980213,119.048978,128.680624,133.630138,I,Above,Hip,0,5701,,37.44734231,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 11772,NJBF000088133,,Egg Harbor City,NJ,39.54897445,-74.62307769,RES1,3001,,NaN,NE,1969,0,3101,1,1,663.002614,663.002614,3507,NO,14.35,21.61,1,1.79,6112,110.004002,119.071122,128.701792,133.663334,I,Above,Hip,0,5701,,17.98371876,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11773,NJBF000088137,1622 PHILADELPHIA AVE,Egg Harbor City,NJ,39.5490727,-74.62347417,RES1,3001,,16,NE,1968,1968,3101,1,1,3221.010497,3221.010497,3507,NO,18.62,28.41,1,0.75,6112,109.998688,119.064873,128.69597,133.653986,I,Above,Gable,0,5701,,23.51670976,0,0,,,,1,1,,0.35,nav,1,1968,1,, 11774,NJBF000088233,1736 PHILADELPHIA AVE,Egg Harbor City,NJ,39.55087863,-74.62134979,RES1,3001,,16,NE,1980,1980,3101,1,1,2542.479663,2542.479663,3507,NO,19.23,33.3,1,2.86,6112,110.021831,119.074277,128.706388,133.668213,I,Above,Gable,0,5701,,26.26415104,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 11775,NJBF000088822,CITY PARK-LAKE,Egg Harbor City,NJ,39.55087863,-74.62134979,RES1,3001,,NaN,NE,1980,1960,3101,1,1,2743.135309,2743.135309,3507,NO,19.62,30.91,1,0.32,6112,110.021831,119.074277,128.706388,133.668213,I,Above,Gable,0,5701,,25.26474076,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11776,NJBF000088902,2326 NEW YORK AVE,Egg Harbor City,NJ,39.55087863,-74.62134979,RES1,3001,,17,NE,1980,1973,3101,2,1,2155.731575,2155.731575,3507,NO,20.48,25.66,1,-0.54,6112,110.021831,119.074277,128.706388,133.668213,I,Above,Gable,0,5701,,23.06961808,0,1.2,,,,1,1,,0.35,nav,1,1980,2,, 11777,NJBF000088916,2336 NEW YORK AVE,Egg Harbor City,NJ,39.55087863,-74.62134979,RES1,3001,,17,NE,1980,1972,3101,1,1,2563.813997,2563.813997,3507,NO,19.89,31.05,1,2.94,6112,110.021831,119.074277,128.706388,133.668213,I,Above,Gable,0,5701,,25.47176106,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11778,NJBF000088943,,Egg Harbor City,NJ,39.55087863,-74.62134979,RES1,3001,,NaN,NE,1980,0,3101,1,1,4628.433588,4628.433588,3507,NO,16.74,28.89,1,-0.83,6112,110.021831,119.074277,128.706388,133.668213,I,Above,Gable,0,5701,,22.81452376,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11779,NJBF000090062,,Egg Harbor City,NJ,39.57222059,-74.58226679,RES1,3001,,NaN,NE,1969,0,3101,1,1,1709.848147,1709.848147,3507,NO,19.62,29.21,1,1.76,6112,110.483787,119.374021,129.008242,134.11554,I,Above,Gable,0,5701,,24.41135037,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11780,NJBF000090981,,Egg Harbor City,NJ,39.59858084,-74.58054464,RES1,3001,,NaN,NE,1960,0,3102,2,1,4199.002256,4199.002256,3507,NO,30.18,44.3,1,2.16,6106,110.413508,119.093449,128.76564,133.738156,I,Above,Gable,0,5701,,37.23685122,0,0,,,,1,1,,0.03,nav,1,1960,2,, 11781,NJBF000066787,TUCKAHOE RD,Estell Manor,NJ,39.3507851,-74.76568013,RES4,3001,,NaN,ME,1969,0,3401,1,1,715.1569851,715.1569851,3507,NO,17.52,29.44,1,0.95,6112,109.349723,119.076955,128.76489,133.795455,I,Above,Gable,0,5701,,23.48311871,0,0,,,,1,1,,0.7,nav,1,1969,1,, 11782,NJBF000066838,TUCKAHOE RD,Estell Manor,NJ,39.35096457,-74.76512643,RES4,3001,,NaN,ME,1969,0,3401,3,1,729.7600727,729.7600727,3507,NO,48.15,55.82,1,1.73,6112,109.351999,119.080925,128.76983,133.803924,I,Above,Gable,0,5701,,51.98222828,0,0,,,,1,1,,1,nav,1,1969,3,, 11783,NJBF000066970,TUCKAHOE RD,Estell Manor,NJ,39.35149704,-74.76430939,RES4,3001,,NaN,ME,1969,0,3401,2,1,725.0340973,725.0340973,3507,NO,30.07,37.4,1,0.14,6112,109.352836,119.084168,128.774817,133.812483,I,Above,Gable,0,5701,,33.73368523,0,0,,,,1,1,,0.7,nav,1,1969,2,, 11784,NJBF000066935,TUCKAHOE RD,Estell Manor,NJ,39.35135381,-74.76456947,RES4,3001,,NaN,ME,1969,0,3401,3,1,613.9122659,613.9122659,3507,NO,56.07,62.58,1,1.73,6112,109.352321,119.082877,128.773003,133.809371,I,Above,Gable,0,5701,,59.32194961,0,0,,,,1,1,,0.7,nav,1,1969,3,, 11785,NJBF000066908,TUCKAHOE RD,Estell Manor,NJ,39.35124523,-74.76501132,RES4,3001,,NaN,ME,1969,0,3401,2,1,634.7175002,634.7175002,3507,NO,26.44,39.97,1,-0.75,6112,109.35018,119.079369,128.768762,133.802102,I,Above,Gable,0,5701,,33.20118746,0,0,,,,1,1,,0.7,nav,1,1969,2,, 11786,NJBF000067008,230 ROUTE 50,Estell Manor,NJ,39.35168054,-74.76248939,RES4,3001,73,NaN,ME,1969,0,3401,3,1,573.4370125,573.4370125,3507,NO,39.65,47.34,1,1.51,6112,109.364144,119.101222,128.7946,133.846342,I,Above,Gable,0,5701,,43.49452172,0,0,,,,1,1,,0.35,nav,1,1969,3,, 11787,NJBF000070484,,Estell Manor,NJ,39.36732921,-74.81054746,RES1,3001,,NaN,NE,1969,0,3102,2,1,1151.044068,1151.044068,3505,NO,41.18,53.01,3,7.65,6112,108.897963,118.46988,128.125422,132.668905,I,Above,Flat,0,5701,,47.09587542,0,0,,,,1,1,,0.15,nav,1,1969,2,, 11788,NJBF000067039,TUCKAHOE RD,Estell Manor,NJ,39.35178034,-74.76302495,RES4,3001,,NaN,ME,1969,0,3401,3,1,749.0771775,749.0771775,3507,NO,46.82,56.35,1,-0.16,6112,109.359365,119.094695,128.787442,133.834105,I,Above,Gable,0,5701,,51.58560886,0,0,,,,1,1,,0.35,nav,1,1969,3,, 11789,NJBF000066905,TUCKAHOE RD,Estell Manor,NJ,39.35123335,-74.76515693,RES4,3001,,NaN,ME,1969,0,3401,3,1,748.2648867,748.2648867,3507,NO,46,59.23,1,2.49,6112,109.349247,119.077975,128.767155,133.799347,I,Above,Gable,0,5701,,52.61415699,0,0,,,,1,1,,0.7,nav,1,1969,3,, 11790,NJBF000067013,TUCKAHOE RD,Estell Manor,NJ,39.35169954,-74.76352589,RES4,3001,,NaN,ME,1969,0,3401,1,1,621.7409131,621.7409131,3507,NO,15.55,27.37,1,-0.19,6112,109.356531,119.090288,128.782251,133.825218,I,Above,Gable,0,5701,,21.46196167,0,0,,,,1,1,,0.7,nav,1,1969,1,, 11791,NJBF000067005,230 ROUTE 50,Estell Manor,NJ,39.35166754,-74.76228589,RES4,3001,73,NaN,ME,1969,0,3401,3,1,674.3560674,674.3560674,3507,NO,60.92,74.6,1,2.44,6112,109.365723,119.103455,128.7971,133.850616,I,Above,Gable,0,5701,,67.75685463,0,0,,,,1,1,,0.7,nav,1,1969,3,, 11792,NJBF000081098,1079 TWELFTH AVE,Estell Manor,NJ,39.41753903,-74.79732738,RES1,3001,73,16,NE,1920,1920,3101,1,1,616.5238445,616.5238445,3507,NO,12.85,24.69,1,1.02,6112,108.662997,118.178315,127.862315,132.210459,I,Above,Gable,0,5701,,18.76833988,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11793,NJBF000070464,,Estell Manor,NJ,39.36723554,-74.81030537,RES1,3001,,NaN,NE,1969,0,3102,2,1,3712.299267,3712.299267,3505,NO,32.78,41.48,3,7.47,6112,108.900309,118.473089,128.128757,132.674919,I,Above,Gable,0,5701,,37.13240001,0,0,,,,1,1,,0.15,nav,1,1969,2,, 11794,NJBF000052989,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1201.204116,1201.204116,3507,NO,29.43,36.85,1,2.39,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,33.14317615,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11795,NJBF000052292,124 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1953,3102,1,1,2478.326964,2478.326964,3507,NO,16.4,24.1,1,1.44,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,20.24810107,0,1.2,,,,1,1,,0.03,nav,1,1962,1,, 11796,NJBF000076537,191 ROUTE 50,Estell Manor,NJ,39.39382753,-74.74814218,RES1,3001,,NaN,NE,1969,0,3102,2,1,610.0928694,610.0928694,3507,NO,39.39,45.44,1,2.66,6109,109.125506,118.872293,128.591011,133.5113,I,Above,Flat,0,5701,,42.41099303,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11797,NJBF000051899,500 AETNA DR,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1995,3102,2,1,869.8551143,869.8551143,3507,NO,34.33,46.23,1,1.69,6110,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,40.28117426,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11798,NJBF000051870,500 AETNA DR,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1995,3102,2,1,2722.930186,2722.930186,3507,NO,26.43,36.61,1,1.66,6110,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,31.51924509,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11799,NJBF000052142,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1233.42261,1233.42261,3507,NO,37.25,50.93,1,2.13,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,44.08956114,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11800,NJBF000052248,118 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1960,3102,2,1,1542.650058,1542.650058,3507,NO,38.3,52.35,1,2.19,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,45.32773601,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11801,NJBF000052434,118 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1960,3102,2,1,571.2609775,571.2609775,3507,NO,25.67,38.43,1,-0.79,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,32.04994101,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11802,NJBF000052398,118 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1960,3102,2,1,4208.949439,4208.949439,3507,NO,26.38,38.1,1,0.86,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,32.23953566,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11803,NJBF000071913,,Estell Manor,NJ,39.371979,-74.85337158,RES1,3001,,NaN,NE,1969,0,3102,2,1,936.2610581,936.2610581,3505,NO,34.79,44.3,3,3.93,6112,108.578512,118.016571,127.646126,131.791683,I,Above,Gable,0,5701,,39.54399994,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11804,NJBF000052057,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,674.9886066,674.9886066,3507,NO,29.14,41.88,1,0.96,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,35.51234007,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11805,NJBF000052039,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,2949.292824,2949.292824,3507,NO,24.86,36.85,1,0.53,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,30.85475399,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11806,NJBF000082374,101 ROUTE 50,Estell Manor,NJ,39.42934714,-74.73785358,RES1,3001,,16,NE,1955,1955,3102,1,1,1087.48989,1087.48989,3507,NO,16.81,21.85,1,-0.42,6112,109.021855,118.702362,128.394428,133.190942,I,Above,Gable,0,5701,,19.32831855,0,0,,,,1,1,,0.35,nav,1,1955,1,, 11807,NJBF000051623,215 LORDS LANE,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1962,3102,1,1,1941.239641,1941.239641,3507,NO,21.29,33.08,1,2.69,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,27.18747633,0,0,,,,1,1,,0.03,nav,1,1962,1,, 11808,NJBF000052145,127 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1958,3102,2,1,1419.067077,1419.067077,3507,NO,23.35,31.29,1,0.4,6110,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,27.31987603,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11809,NJBF000052088,127 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1958,3102,2,1,775.8191156,775.8191156,3507,NO,35,48.95,1,1.42,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,41.97431655,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11810,NJBF000052097,127 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1958,3102,2,1,874.1193694,874.1193694,3507,NO,33.09,41.81,1,0.95,6110,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,37.4518559,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11811,NJBF000052127,125 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1977,3102,2,1,3548.940191,3548.940191,3507,NO,31.56,39.29,1,0.54,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,35.42514541,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11812,NJBF000052168,125 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1977,3102,2,1,2668.30943,2668.30943,3507,NO,32.59,39.33,1,-0.58,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,35.96186614,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11813,NJBF000052075,110 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1950,3102,2,1,1569.824687,1569.824687,3507,NO,20.58,32.28,1,-0.43,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,26.42937131,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11814,NJBF000052266,201 LORDS LANE,Estell Manor,NJ,39.31370328,-74.80471943,AGR1,3001,,NaN,NE,1969,0,3401,1,1,5820.117111,5820.117111,3507,NO,17.15,24.11,1,2.11,6112,109.421048,119.043833,128.619981,133.559463,I,Above,Flat,0,5701,,20.6312739,0,0,,,,1,1,,0.15,nav,1,1969,1,, 11815,NJBF000052301,201 LORDS LANE,Estell Manor,NJ,39.313862,-74.8047315,AGR1,3002,,NaN,NE,1969,0,3401,1,1,6101.248557,6101.248557,3507,NO,14.82,29.06,1,1.24,6112,109.419335,119.04206,128.618558,133.556878,I,Above,Flat,0,5703,,21.93641131,0,0,,,,1,1,,0.15,nav,1,1969,1,, 11816,NJBF000073136,209 ROUTE 50,Estell Manor,NJ,39.37817349,-74.73770049,RES1,3001,,16,NE,1900,1900,3102,2,1,717.0338666,717.0338666,3507,NO,38.39,48.92,1,0.7,6106,109.305065,119.114209,128.851572,133.953089,I,Above,Flat,0,5701,,43.65901639,0,0,,,,1,1,,0.03,nav,1,1900,2,, 11817,NJBF000051943,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1308.011141,1308.011141,3507,NO,29.93,37.03,1,1.76,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,33.4769299,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11818,NJBF000051602,206 LORDS LANE,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1988,3102,2,1,1947.122259,1947.122259,3507,NO,31.07,45.73,1,-0.33,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,38.39845365,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11819,NJBF000051615,206 LORDS LANE,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1988,3102,2,1,946.9768076,946.9768076,3507,NO,32.22,37.81,1,-0.21,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,35.01705118,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11820,NJBF000052149,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1555.283758,1555.283758,3507,NO,36.7,47.9,1,1.96,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,42.29976437,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11821,NJBF000052885,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,2506.215789,2506.215789,3507,NO,30.58,37.27,1,1.46,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,33.92511085,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11822,NJBF000051547,505 AETNA DRIVE,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,2009,3102,2,1,2735.576888,2735.576888,3507,NO,35.06,44.71,1,1.47,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,39.88260953,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11823,NJBF000051600,211 LORDS LANE,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,2000,3102,2,1,2986.895872,2986.895872,3507,NO,31.22,36.68,1,-0.57,6110,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,33.94874807,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11824,NJBF000052023,203 LORDS LANE,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,17,NE,1962,1974,3102,2,1,3260.018104,3260.018104,3507,NO,27.66,38.76,1,2.49,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,33.20982077,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11825,NJBF000052017,127 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1958,3102,2,1,647.4238258,647.4238258,3507,NO,39.17,47.21,1,1.19,6110,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,43.19249251,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11826,NJBF000076759,189 ROUTE 50,Estell Manor,NJ,39.39469564,-74.74735174,RES1,3001,,16,NE,1850,1850,3102,2,1,4026.421594,4026.421594,3507,NO,27.49,41.04,1,2.41,6112,109.125344,118.873531,128.592306,133.514238,I,Above,Gable,0,5701,,34.26788752,0,1.1,,,,1,1,,0.15,nav,1,1850,2,, 11827,NJBF000051858,125 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1977,3102,2,1,2802.136328,2802.136328,3507,NO,34.68,49.07,1,0.68,6106,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,41.8770813,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11828,NJBF000052076,125 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1977,3102,2,1,3543.991452,3543.991452,3507,NO,36.71,47.81,1,-0.84,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,42.2611157,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11829,NJBF000052158,110 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1950,3102,2,1,2437.337091,2437.337091,3507,NO,30.88,40.27,1,1.47,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,35.57854732,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11830,NJBF000052116,110 HEAD OF THE RIVER RD,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,16,NE,1962,1950,3102,2,1,869.2345189,869.2345189,3507,NO,30.11,42.3,1,-0.63,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,36.20581179,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 11831,NJBF000074958,109 ROUTE 50,Estell Manor,NJ,39.38828899,-74.73949099,RES1,3001,,NaN,NE,1969,0,3102,2,1,1502.626104,1502.626104,3507,NO,32.52,38.7,1,-0.36,6112,109.219715,119.009842,128.739348,133.766603,I,Above,Gable,0,5701,,35.61241224,0,0,,,,1,1,,0.7,nav,1,1969,2,, 11832,NJBF000073163,209 ROUTE 50,Estell Manor,NJ,39.37842235,-74.73769373,RES1,3001,,16,NE,1900,1900,3102,2,1,1923.230724,1923.230724,3507,NO,37.53,51.76,1,2.19,6106,109.303183,119.112129,128.849387,133.949505,I,Above,Gable,0,5701,,44.6442241,0,0,,,,1,1,,0.03,nav,1,1900,2,, 11833,NJBF000051808,,Estell Manor,NJ,39.31091106,-74.82089975,REL1,3001,,NaN,ME,1969,0,3401,3,1,1279.533331,1279.533331,3507,NO,44.95,54.4,1,2.28,6112,109.320874,118.901063,128.458973,133.279131,I,Above,Flat,0,5701,,49.67833548,0,0,,,,1,1,,1,nav,1,1969,3,, 11834,NJBF000071801,,Estell Manor,NJ,39.37166567,-74.85309616,RES1,3001,,NaN,NE,1969,0,3102,2,1,1932.034657,1932.034657,3505,NO,33.39,48.2,3,1.81,6112,108.582517,118.021824,127.651233,131.801091,I,Above,Gable,0,5701,,40.79686546,0,0,,,,1,1,,1,nav,1,1969,2,, 11835,NJBF000070152,,Estell Manor,NJ,39.36603509,-74.85677767,RES1,3001,,NaN,NE,1958,0,3102,2,1,2675.157422,2675.157422,3505,NO,36.49,45.38,3,0.84,6112,108.598049,118.034784,127.656387,131.810177,I,Above,Gable,0,5701,,40.93886561,0,0,,,,1,1,,0.35,nav,1,1958,2,, 11836,NJBF000051822,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,1208.762309,1208.762309,3507,NO,39.45,53.69,1,0.8,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,46.56691615,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11837,NJBF000051841,,Estell Manor,NJ,39.29979524,-74.75863948,RES1,3001,,NaN,NE,1962,0,3102,2,1,605.8310147,605.8310147,3507,NO,29.18,38.97,1,1.71,6112,109.964489,119.704786,129.288628,134.69391,I,Above,Flat,0,5701,,34.07099802,0,0,,,,1,1,,0.03,nav,1,1962,2,, 11838,NJBF000070193,,Estell Manor,NJ,39.36616077,-74.80915184,RES1,3001,,NaN,NE,1969,0,3102,2,1,16511.28891,16511.28891,3505,NO,34.84,43.06,3,-0.29,6112,108.916387,118.494032,128.149721,132.712634,I,Above,Hip,0,5701,,38.94889326,0,0,,,,1,1,,0.15,nav,1,1969,2,, 11839,NJBF000070333,,Estell Manor,NJ,39.36673844,-74.82710903,RES1,3001,,NaN,NE,1969,0,3102,2,1,1628.292743,1628.292743,3505,NO,36.68,47.78,3,6.32,6112,108.79098,118.313196,127.954849,132.358807,I,Above,Gable,0,5701,,42.23350729,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11840,NJBF000070540,222 FIRST AVE,Estell Manor,NJ,39.36751735,-74.78955944,RES1,3001,,16,NE,1953,1953,3102,2,1,3898.668575,3898.668575,3505,NO,28.97,42.04,3,4.98,6112,109.038552,118.676642,128.352116,133.075792,I,Above,Flat,0,5701,,35.50296831,0,0,,,,1,1,,0.15,nav,1,1953,2,, 11841,NJBF000070639,222 FIRST AVE,Estell Manor,NJ,39.36788273,-74.79007216,RES1,3001,,16,NE,1953,1953,3102,2,1,2452.436598,2452.436598,3505,NO,24.69,38.37,3,0.17,6112,109.032171,118.668201,128.343431,133.060402,I,Above,Flat,0,5701,,31.5283379,0,0,,,,1,1,,0.15,nav,1,1953,2,, 11842,NJBF000070687,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36805545,-74.8547139,RES1,3001,,NaN,NE,1969,0,3102,2,1,585.4950035,585.4950035,3505,NO,35.72,50.48,3,3.35,6112,108.59731,118.037139,127.662016,131.820678,I,Above,Gable,0,5701,,43.10063349,0,0,,,,1,1,,1,nav,1,1969,2,, 11843,NJBF000070947,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36894998,-74.85425317,RES1,3001,,NaN,NE,1969,0,3102,2,1,516.6618051,516.6618051,3505,NO,34.75,42.86,3,0.96,6112,108.594006,118.033898,127.659951,131.816929,I,Above,Gable,0,5701,,38.80472083,0,0,,,,1,1,,1,nav,1,1969,2,, 11844,NJBF000070981,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36904286,-74.85429265,RES1,3001,,NaN,NE,1969,0,3102,2,1,581.6027974,581.6027974,3505,NO,22.42,33.7,3,-2.4,6112,108.593083,118.03273,127.658854,131.81491,I,Above,Gable,0,5701,,28.05894307,0,0,,,,1,1,,1,nav,1,1969,2,, 11845,NJBF000071092,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36937316,-74.8541457,RES1,3001,,NaN,NE,1969,0,3102,2,1,746.3994985,746.3994985,3505,NO,22.59,35.29,3,0.55,6112,108.591719,118.03132,127.657861,131.813103,I,Above,Gable,0,5701,,28.93972295,0,0,,,,1,1,,1,nav,1,1969,2,, 11846,NJBF000071125,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36950301,-74.85455229,RES1,3001,,NaN,NE,1969,0,3102,2,1,616.5046417,616.5046417,3505,NO,35.16,47.18,3,1.06,6112,108.588118,118.026377,127.652818,131.803792,I,Above,Gable,0,5701,,41.16947967,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11847,NJBF000071134,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36953325,-74.85395881,RES1,3001,,NaN,NE,1969,0,3102,2,1,667.8713161,667.8713161,3505,NO,34.9,49.58,3,1.41,6112,108.591824,118.031731,127.658541,131.814373,I,Above,Flat,0,5701,,42.24100405,0,0,,,,1,1,,1,nav,1,1969,2,, 11848,NJBF000071139,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36955654,-74.853527,RES1,3001,,NaN,NE,1969,0,3102,2,1,800.6878108,800.6878108,3505,NO,29.31,36.5,3,3.59,6112,108.594509,118.035615,127.662696,131.822056,I,Above,Gable,0,5701,,32.90206592,0,0,,,,1,1,,1,nav,1,1969,2,, 11849,NJBF000071144,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36957154,-74.85338069,RES1,3001,,NaN,NE,1969,0,3102,2,1,703.7436251,703.7436251,3505,NO,22.64,37.03,3,-0.88,6112,108.595367,118.03687,127.66405,131.824558,I,Above,Gable,0,5701,,29.83617855,0,0,,,,1,1,,1,nav,1,1969,2,, 11850,NJBF000071150,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36958462,-74.85313196,RES1,3001,,NaN,NE,1969,0,3102,2,1,600.9934322,600.9934322,3505,NO,32.09,43.85,3,4.64,6112,108.596921,118.039117,127.666453,131.829,I,Above,Gable,0,5701,,37.97138793,0,0,,,,1,1,,1,nav,1,1969,2,, 11851,NJBF000071175,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36966846,-74.85442534,RES1,3001,,NaN,NE,1969,0,3102,2,1,885.9838766,885.9838766,3505,NO,27.81,40.33,3,1.13,6110,108.587792,118.026179,127.652858,131.803881,I,Above,Gable,0,5701,,34.06722511,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11852,NJBF000071183,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36968718,-74.85283519,RES1,3001,,NaN,NE,1969,0,3102,2,1,539.9313382,539.9313382,3505,NO,34.08,45.02,3,1.11,6112,108.598162,118.041063,127.668672,131.833111,I,Above,Flat,0,5701,,39.54988975,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11853,NJBF000071194,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36973245,-74.85414267,RES1,3001,,NaN,NE,1969,0,3102,2,1,1048.829721,1048.829721,3505,NO,42.65,49.41,3,6.08,6112,108.589203,118.028303,127.655207,131.808229,I,Above,Gable,0,5701,,46.02678728,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11854,NJBF000071200,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36974557,-74.85311842,RES1,3001,,NaN,NE,1969,0,3102,2,1,864.6538777,864.6538777,3505,NO,36.95,46.71,3,1.71,6112,108.595875,118.037882,127.665388,131.827047,I,Above,Gable,0,5701,,41.83060967,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11855,NJBF000071203,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36974974,-74.85431628,RES1,3001,,NaN,NE,1969,0,3102,2,1,745.4338979,745.4338979,3505,NO,21.92,28.33,3,-2,6110,108.587933,118.026514,127.653338,131.804775,I,Above,Gable,0,5701,,25.12817609,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11856,NJBF000071212,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36978426,-74.85325381,RES1,3001,,NaN,NE,1969,0,3102,2,1,808.4349265,808.4349265,3505,NO,33.1,39.59,3,4.92,6112,108.594708,118.036273,127.663738,131.824002,I,Above,Gable,0,5701,,36.3417689,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11857,NJBF000071215,LAZY RIVER CAMPGROUND,Estell Manor,NJ,39.36978757,-74.85342411,RES1,3001,,NaN,NE,1969,0,3102,2,1,757.0621176,757.0621176,3505,NO,29.12,35.85,3,-1.32,6110,108.593557,118.03463,127.662001,131.820793,I,Above,Gable,0,5701,,32.48626987,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11858,NJBF000073269,118 NINTH AVE,Estell Manor,NJ,39.37946006,-74.84395458,RES1,3001,,15,NE,1900,1900,3101,1,1,1411.376965,1411.376965,3507,NO,13.16,22.94,1,1.76,6112,108.588798,118.042575,127.684378,131.863893,I,Above,Gable,0,5701,,18.05371775,0,1.2,,,,1,1,,0.03,nav,1,1900,1,, 11859,NJBF000073310,,Estell Manor,NJ,39.37972823,-74.84386798,AGR1,3001,,NaN,NE,1969,0,3401,3,1,756.0919103,756.0919103,3507,NO,43.8,58.15,1,1.75,6112,108.587551,118.041148,127.683225,131.86183,I,Above,Gable,0,NaN,,50.9725247,0,0,,,,1,1,,0.03,nav,1,1969,3,, 11860,NJBF000075160,112 STEELMAN LANDING RD,Estell Manor,NJ,39.38889729,-74.7469293,RES1,3001,,16,NE,1996,1996,3102,1,1,1491.789019,1491.789019,3507,NO,15.41,20.68,1,2.42,6112,109.165808,118.925875,128.648393,133.608443,I,Above,Hip,0,5701,,18.04199063,0,1.2,,,,1,1,,0.35,nav,1,1996,1,, 11861,NJBF000075905,197 ROUTE 50,Estell Manor,NJ,39.39158319,-74.74977337,RES1,3001,,16,NE,1988,1988,3102,1,1,1340.594179,1340.594179,3507,NO,17.97,23.84,1,1.47,6112,109.129001,118.873617,128.592298,133.511917,I,Above,Gable,0,5701,,20.90733092,0,0,,,,1,1,,0.35,nav,1,1988,1,, 11862,NJBF000076048,195 ROUTE 50,Estell Manor,NJ,39.39205582,-74.74946613,RES1,3001,,16,NE,1890,1890,3102,2,2,2820.739556,2820.739556,3507,NO,21.76,33.63,1,0.46,6112,109.127983,118.872933,128.591616,133.511058,I,Above,Hip,0,5701,,27.6966578,0,0,,,,1,1,,0.35,nav,1,1890,2,, 11863,NJBF000076837,187 ROUTE 50,Estell Manor,NJ,39.39498697,-74.74696334,RES1,3001,,16,NE,1850,1829,3102,2,1,636.164056,636.164056,3507,NO,23.14,36.82,1,0.02,6112,109.126139,118.875271,128.594145,133.517699,I,Above,Gable,0,5701,,29.98145328,0,0,,,,1,1,,0.15,nav,1,1850,2,, 11864,NJBF000076875,187 ROUTE 50,Estell Manor,NJ,39.39514461,-74.74705756,RES1,3001,,16,NE,1829,1829,3102,2,1,1776.542812,1776.542812,3507,NO,37.43,45.18,1,1.4,6112,109.124519,118.872973,128.591674,133.513468,I,Above,Gable,0,5701,,41.30523786,0,0,,,,1,1,,0.35,nav,1,1829,2,, 11865,NJBF000076947,185 ROUTE 50,Estell Manor,NJ,39.39554198,-74.74703722,RES1,3001,,16,NE,1930,1930,3102,2,1,1668.160317,1668.160317,3507,NO,35.21,42.75,1,2.23,6112,109.122201,118.869952,128.588409,133.508019,I,Above,Gable,0,5701,,38.98138056,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 11866,NJBF000076970,185 ROUTE 50,Estell Manor,NJ,39.39564975,-74.74659452,RES1,3001,,16,NE,1930,1930,3102,2,1,1427.833029,1427.833029,3507,NO,31.05,40.88,1,0.63,6112,109.124502,118.873758,128.59246,133.515242,I,Above,Gable,0,5701,,35.96262396,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 11867,NJBF000078159,78 MAPLE AVE,Estell Manor,NJ,39.40331673,-74.76574652,RES1,3001,,NaN,NE,1975,0,3102,2,1,2592.005095,2592.005095,3505,NO,24.8,39.49,3,-0.43,6112,108.950548,118.611012,128.313299,133.023511,I,Above,Flat,0,5701,,32.14331132,0,0,,,,1,1,,0.35,nav,1,1975,2,, 11868,NJBF000079386,41 MAPLE AVE,Estell Manor,NJ,39.41658874,-74.79469126,RES1,3001,,16,NE,1969,1980,3101,2,1,1857.253146,1857.253146,3507,NO,29.17,37.49,1,0.22,6112,108.68539,118.211885,127.897025,132.27378,I,Above,Gable,0,5701,,33.32805729,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 11869,NJBF000080854,,Estell Manor,NJ,39.41658874,-74.79469126,RES1,3001,,NaN,NE,1969,0,3101,1,1,2205.25114,2205.25114,3507,NO,19.12,30.1,1,0.18,6112,108.68539,118.211885,127.897025,132.27378,I,Above,Gable,0,5701,,24.6094883,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11870,NJBF000090775,1503 MAYS LANDING RD,Folsom,NJ,39.59309484,-74.83816694,RES1,3001,,16,NE,1992,1992,3101,2,1,2031.402613,2031.402613,3505,NO,37.37,44.09,3,5.3,6112,107.798676,116.447163,126.21276,129.438485,I,Above,Gable,0,5701,,40.73106045,0,1.2,,,,1,1,,0.35,nav,1,1992,2,, 11871,NJBF000091014,103 E COLLINGS DR,Folsom,NJ,39.59884301,-74.87825028,RES1,3001,,16,NE,1960,1960,3101,1,2,1180.187929,1180.187929,3507,NO,16.62,26.45,1,0.33,6112,107.491209,116.099501,125.856414,128.904077,I,Above,Flat,0,5701,,21.53292918,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11872,NJBF000091023,103 E COLLINGS DR,Folsom,NJ,39.5988975,-74.87843411,RES1,3001,,16,NE,1960,1960,3101,1,2,2013.864449,2013.864449,3507,NO,14.59,26.53,1,1.27,6112,107.489766,116.097764,125.85465,128.90155,I,Above,Gable,0,5701,,20.56070515,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11873,NJBF000091114,126 S RIVER DR,Folsom,NJ,39.60072349,-74.86361285,RES1,3001,,16,NE,1976,1976,3101,2,1,829.5346216,829.5346216,3507,NO,29.87,42.02,1,2.19,6106,107.590074,116.193406,125.958475,129.057224,I,Above,Gable,0,5701,,35.9434547,0,0,,,,1,1,,0.03,nav,1,1976,2,, 11874,NJBF000091638,1314 MAYS LANDING RD,Folsom,NJ,39.61266862,-74.84973407,RES1,3001,,16,NE,1953,1953,3101,1,1,1370.498306,1370.498306,3507,NO,19.24,26.17,1,0.52,6112,107.658657,116.205001,125.990577,129.117086,I,Above,Gable,0,5701,,22.70735247,0,0,,,,1,1,,0.35,nav,1,1953,1,, 11875,NJBF000090772,1252 11TH ST,Folsom,NJ,39.5930395,-74.83986185,RES1,3001,,16,NE,1952,1952,3101,1,1,1439.801825,1439.801825,3505,NO,9.64,21.15,3,-1.33,6112,107.78605,116.434229,126.199254,129.417186,I,Above,Gable,0,5701,,15.39798302,0,0,,,,1,1,,0.35,nav,1,1952,1,, 11876,NJBF000090773,1252 11TH ST,Folsom,NJ,39.59305564,-74.84001856,RES1,3001,,16,NE,1952,1952,3101,1,1,539.0030057,539.0030057,3505,NO,13.59,25.9,3,0.38,6112,107.784826,116.432868,126.197864,129.415024,I,Above,Gable,0,5701,,19.74587535,0,0,,,,1,1,,0.35,nav,1,1952,1,, 11877,NJBF000091632,1316 MAYS LANDING RD,Folsom,NJ,39.6124335,-74.84956201,RES1,3001,,15,NE,1920,1920,3101,1,1,1620.024958,1620.024958,3507,NO,16.83,30.94,1,1.75,6112,107.660584,116.208118,125.993468,129.121234,I,Above,Gable,0,5701,,23.88373699,0,0,,,,1,1,,0.35,nav,1,1920,1,, 11878,NJBF000091006,105 E COLLINGS DR,Folsom,NJ,39.598759,-74.87798684,RES1,3001,,16,NE,1960,1960,3101,1,1,1524.353239,1524.353239,3507,NO,13.28,21.12,1,0.07,6112,107.493291,116.102035,125.85898,128.907749,I,Above,Hip,0,5701,,17.19711901,0,0,,,,1,1,,0.35,nav,1,1960,1,, 11879,NJBF000091210,12 14TH ST,Folsom,NJ,39.60207108,-74.86744723,RES1,3001,,NaN,NE,1969,0,3101,1,1,817.7049162,817.7049162,3507,NO,17.37,29.12,1,2.92,6106,107.558764,116.154889,125.919758,129.000942,I,Above,Gable,0,5701,,23.24566784,0,0,,,,1,1,,0.03,nav,1,1969,1,, 11880,NJBF000090589,11TH ST,Folsom,NJ,39.59305564,-74.84001856,RES1,3001,,NaN,NE,1952,0,3101,1,1,954.4113621,954.4113621,3505,NO,15.84,24.16,3,-2.45,6112,107.784826,116.432868,126.197864,129.415024,I,Above,Gable,0,5701,,19.99554722,0,0,,,,1,1,,0.35,nav,1,1952,1,, 11881,NJBF000089549,1416 BLACK HORSE PK,Folsom,NJ,39.56763955,-74.81947147,RES1,3001,,16,NE,1952,1952,3102,1,1,1054.639179,1054.639179,3505,NO,20.67,32.12,3,4.55,6112,108.008941,116.802107,126.542923,129.937181,I,Above,Flat,0,5701,,26.39460867,0,0,,,,1,1,,1,nav,1,1952,1,, 11882,NJBF000089560,1416 BLACK HORSE PK,Folsom,NJ,39.56776807,-74.81906352,RES1,3001,,16,NE,1952,1952,3101,1,1,1626.563335,1626.563335,3507,NO,18.8,25.86,1,-0.05,6112,108.011759,116.80456,126.545542,129.94187,I,Above,Gable,0,5701,,22.33198279,0,0,,,,1,1,,1,nav,1,1952,1,, 11883,NJBF000089658,1409 BLACK HORSE PK,Folsom,NJ,39.56916364,-74.82128541,COM8,3001,371,NaN,ME,1969,0,3401,2,1,2033.689842,2033.689842,3507,NO,28.59,37.75,1,0.27,6112,107.99096,116.77457,126.516793,129.89591,I,Above,Flat,0,NaN,,33.17100417,0,0,,,,1,1,,0.7,nav,1,1969,2,, 11884,NJBF000089681,1409 BLACK HORSE PK,Folsom,NJ,39.56937766,-74.82227467,RES4,3001,371,NaN,ME,1969,0,3401,1,1,956.4107968,956.4107968,3507,NO,14.25,26.39,1,2.05,6112,107.982772,116.764487,126.50683,129.87954,I,Above,Gable,0,5701,,20.32381356,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11885,NJBF000089674,1409 BLACK HORSE PK,Folsom,NJ,39.569303,-74.82184926,RES4,3001,371,NaN,ME,1969,0,3401,1,1,6280.372281,6280.372281,3507,NO,15.09,28.55,1,0.58,6112,107.986249,116.768688,126.510998,129.88641,I,Above,Flat,0,5701,,21.81932901,0,0,,,,1,1,,0.7,nav,1,1969,1,, 11886,NJBF000089686,1409 BLACK HORSE PK,Folsom,NJ,39.56942518,-74.82247355,RES4,3001,371,NaN,ME,1969,0,3401,2,1,814.2319976,814.2319976,3507,NO,33.33,41.2,1,1.24,6112,107.981117,116.762432,126.504802,129.876219,I,Above,Flat,0,5701,,37.26082287,0,0,,,,1,1,,0.35,nav,1,1969,2,, 11887,NJBF000089703,1412 BLACK HORSE PK,Folsom,NJ,39.56956497,-74.82066461,RES1,3001,,15,NE,1900,1900,3102,2,1,1222.347974,1222.347974,3505,NO,35.18,42.74,3,2.67,6112,107.994702,116.776642,126.519344,129.900964,I,Above,Gable,0,5701,,38.96283097,0,0,,,,1,1,,0.03,nav,1,1900,2,, 11888,NJBF000089707,1409 BLACK HORSE PK,Folsom,NJ,39.56962394,-74.8222693,RES4,3001,371,NaN,ME,1969,0,3401,2,1,1703.530299,1703.530299,3507,NO,30.1,38.83,1,1.62,6112,107.982175,116.762587,126.505186,129.877238,I,Above,Gable,0,5701,,34.46573765,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11889,NJBF000089732,2021 LAKE DR,Folsom,NJ,39.56991112,-74.8228582,RES1,3001,,15,NE,1950,1950,3102,1,1,1330.896518,1330.896518,3505,NO,15.88,29.56,3,4.84,6112,107.976892,116.755334,126.498167,129.865988,I,Above,Gable,0,5701,,22.71949554,0,0,,,,1,1,,0.35,nav,1,1950,1,, 11890,NJBF000089783,2019 LAKE DR,Folsom,NJ,39.5702388,-74.82311066,RES1,3001,,16,NE,1958,1958,3102,1,1,2201.374845,2201.374845,3505,NO,17.17,23.56,3,0.94,6112,107.974088,116.750599,126.493744,129.859183,I,Above,Gable,0,5701,,20.36173911,0,0,,,,1,1,,0.35,nav,1,1958,1,, 11891,NJBF000089813,2010 LAKE DR,Folsom,NJ,39.57047412,-74.82582944,RES1,3001,,16,NE,1978,1978,3102,2,1,1958.079728,1958.079728,3505,NO,21.12,29.41,3,-2.3,6112,107.952626,116.725875,126.468941,129.818149,I,Above,Gable,0,5701,,25.26328279,0,1.2,,,,1,1,,0.35,nav,1,1978,2,, 11892,NJBF000089818,2012 LAKE DR,Folsom,NJ,39.57047904,-74.82543169,RES1,3001,,16,NE,1982,1982,3102,1,1,1751.59368,1751.59368,3505,NO,12.3,19.44,3,1.28,6112,107.95565,116.729168,126.472288,129.823741,I,Above,Flat,0,5701,,15.86970552,0,1.1,,,,1,1,,0.35,nav,1,1982,1,, 11893,NJBF000089817,2017 LAKE DR,Folsom,NJ,39.57047807,-74.8233935,RES1,3001,,16,NE,1952,1952,3102,1,1,2765.523378,2765.523378,3505,NO,17.11,30.12,3,-2.23,6112,107.971294,116.746328,126.489689,129.852833,I,Above,Gable,0,5701,,23.61680319,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 11894,NJBF000089856,,Folsom,NJ,39.5707051,-74.82688333,RES1,3001,,NaN,NE,1995,0,3102,2,1,2339.930171,2339.930171,3505,NO,24.21,30.71,3,-0.48,6112,107.943965,116.715221,126.45839,129.801008,I,Above,Flat,0,5701,,27.45914244,0,0,,,,1,1,,0.35,nav,1,1995,2,, 11895,NJBF000089882,2013 LAKE DR,Folsom,NJ,39.57083696,-74.82447313,RES1,3001,,16,NE,1955,1955,3102,2,1,1201.982639,1201.982639,3505,NO,35.11,49.08,3,6.33,6112,107.96206,116.734395,126.478002,129.83395,I,Above,Flat,0,5701,,42.09427821,0,0,,,,1,1,,0.35,nav,1,1955,2,, 11896,NJBF000089905,2011 LAKE DR,Folsom,NJ,39.57097391,-74.82476143,RES1,3001,,16,NE,1995,1995,3102,2,1,1751.610335,1751.610335,3505,NO,23.78,36.17,3,-2.56,6112,107.959491,116.730891,126.474606,129.828532,I,Above,Gable,0,5701,,29.97584313,0,0,,,,1,1,,0.35,nav,1,1995,2,, 11897,NJBF000089920,2013 LAKE DR,Folsom,NJ,39.57105011,-74.82406125,RES1,3001,,16,NE,1955,1955,3102,2,1,2965.217636,2965.217636,3505,NO,23.98,38.82,3,-0.28,6112,107.964663,116.736173,126.480052,129.83777,I,Above,Hip,0,5701,,31.40089798,0,0,,,,1,1,,0.35,nav,1,1955,2,, 11898,NJBF000089935,2007 LAKE DR,Folsom,NJ,39.57112833,-74.82517748,RES1,3001,,16,NE,1972,1972,3102,2,1,1985.223856,1985.223856,3505,NO,37.31,45.91,3,1.04,6112,107.955899,116.72618,126.470004,129.821139,I,Above,Gable,0,5701,,41.61090961,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 11899,NJBF000089957,2001 LAKE DR,Folsom,NJ,39.57128862,-74.82669029,RES1,3001,,16,NE,2005,2005,3102,1,1,2520.298535,2520.298535,3505,NO,23.15,34.92,3,6.79,6112,107.9439,116.712232,126.456028,129.798167,I,Above,Gable,0,5701,,29.03526357,0,1.2,,,,1,1,,0.03,nav,1,2005,1,, 11900,NJBF000089976,2005 LAKE DR,Folsom,NJ,39.57145358,-74.82592286,RES1,3001,,16,NE,1969,1969,3102,2,1,1928.03608,1928.03608,3505,NO,43.47,50.87,3,7.46,6112,107.94933,116.717351,126.461418,129.807436,I,Above,Flat,0,5701,,47.16860154,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 11901,NJBF000090019,3004 8TH ST,Folsom,NJ,39.57182431,-74.82827087,RES1,3001,,16,NE,1986,1986,3102,2,1,2626.926007,2626.926007,3505,NO,35.89,43.07,3,7.74,6112,107.93043,116.694816,126.438949,129.770817,I,Above,Gable,0,5701,,39.47763266,0,0,,,,1,1,,0.35,nav,1,1986,2,, 11902,NJBF000090046,1403 BLACK HORSE PK,Folsom,NJ,39.57210713,-74.82361495,COM1,3001,,NaN,ME,1969,0,3401,2,1,2076.319194,2076.319194,3507,NO,36.71,48.38,1,2.39,6109,107.965322,116.731547,126.476591,129.83392,I,Above,Flat,0,NaN,,42.54091793,0,0,,,,1,1,,0.03,nav,1,1969,2,, 11903,NJBF000090065,3004 8TH ST,Folsom,NJ,39.57224174,-74.8280012,RES1,3001,,16,NE,1986,1986,3102,2,1,2996.250017,2996.250017,3505,NO,34.92,49.13,3,4.12,6112,107.931384,116.693776,126.438379,129.770639,I,Above,Flat,0,5701,,42.02290773,0,0,,,,1,1,,0.35,nav,1,1986,2,, 11904,NJBF000090130,1402 BLACK HORSE PK,Folsom,NJ,39.57305665,-74.82362547,COM1,3001,,NaN,ME,1969,0,3401,1,1,3505.135895,3505.135895,3507,NO,14.94,21.91,1,1.34,6112,107.962757,116.723926,126.469977,129.824596,I,Above,Flat,0,NaN,,18.42270198,0,0,,,,1,1,,1,nav,1,1969,1,, 11905,NJBF000090150,1402 BLACK HORSE PK,Folsom,NJ,39.57334229,-74.82353953,COM1,3001,,NaN,ME,1969,0,3401,1,1,6149.672828,6149.672828,3507,NO,18.77,31.58,1,1.32,6112,107.962665,116.722377,126.468743,129.823047,I,Above,Flat,0,NaN,,25.17639563,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11906,NJBF000090162,1400 BLACK HORSE PK,Folsom,NJ,39.5736207,-74.82424207,COM1,3001,,NaN,ME,1969,0,3401,1,1,3388.218871,3388.218871,3507,NO,16.5,29.27,1,-0.92,6112,107.956533,116.71428,126.460851,129.810405,I,Above,Gable,0,NaN,,22.88169807,0,0,,,,1,1,,1,nav,1,1969,1,, 11907,NJBF000090458,1528 MAYS LANDING RD,Folsom,NJ,39.56763955,-74.81947147,RES1,3001,,17,NE,1952,1979,3102,2,1,6257.100772,6257.100772,3505,NO,37.04,45.74,3,7.81,6109,108.008941,116.802107,126.542923,129.937181,I,Above,Flat,0,5701,,41.38973402,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 11908,NJBF000090469,1526 MAYS LANDING RD,Folsom,NJ,39.56763955,-74.81947147,RES1,3001,,17,NE,1952,1967,3102,1,1,4125.521322,4125.521322,3505,NO,22.45,28.28,3,7.16,6112,108.008941,116.802107,126.542923,129.937181,I,Above,Flat,0,5701,,25.3615078,0,1.2,,,,1,1,,1,nav,1,1952,1,, 11909,NJBF000090473,1526 MAYS LANDING RD,Folsom,NJ,39.56763955,-74.81947147,RES1,3001,,17,NE,1952,1967,3102,1,1,1518.966518,1518.966518,3505,NO,18.07,25.1,3,4.8,6112,108.008941,116.802107,126.542923,129.937181,I,Above,Flat,0,5701,,21.58770479,0,1.2,,,,1,1,,1,nav,1,1952,1,, 11910,NJBF000090474,1920 12TH ST,Folsom,NJ,39.58535961,-74.85993016,IND2,3001,,NaN,ME,1969,0,3401,2,1,28557.50714,28557.50714,3507,NO,35.67,50.33,1,-0.68,6112,107.659189,116.336883,126.087458,129.233631,I,Above,Flat,0,NaN,,43.00067117,0,0,,,,1,1,,1,nav,1,1969,2,, 11911,NJBF000090516,1916 12TH ST,Folsom,NJ,39.58535961,-74.85993016,IND2,3001,,16,ME,1969,2003,3401,1,1,2740.357113,2740.357113,3507,NO,15,24.95,1,-0.45,6112,107.659189,116.336883,126.087458,129.233631,I,Above,Flat,0,NaN,,19.976281,0,1.2,,,,1,1,,1,nav,1,1969,1,, 11912,NJBF000090523,1524 MAYS LANDING RD,Folsom,NJ,39.56763955,-74.81947147,RES1,3001,,17,NE,1952,1965,3102,2,2,10636.60766,10636.60766,3505,NO,34.93,45.97,3,1.05,6112,108.008941,116.802107,126.542923,129.937181,I,Above,Flat,0,5701,,40.44978104,0,0,,,,1,1,,1,nav,1,1952,2,, 11913,NJBF000090645,1519 MAYS LANDING RD,Folsom,NJ,39.59068661,-74.83556387,RES1,3001,,16,NE,1952,1952,3101,1,1,3059.270143,3059.270143,3505,NO,21.85,32.17,3,8.84,6112,107.824838,116.486773,126.250262,129.494656,I,Above,Gable,0,5701,,27.01141496,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 11914,NJBF000090658,1515 MAYS LANDING RD,Folsom,NJ,39.5908205,-74.83703393,RES1,3001,,16,NE,1956,1956,3101,1,1,2338.04539,2338.04539,3505,NO,17.83,24.11,3,0.57,6112,107.813354,116.474027,126.237268,129.474244,I,Above,Gable,0,5701,,20.97035156,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 11915,NJBF000090716,406 E COLLINGS DR,Folsom,NJ,39.59180094,-74.86447703,RES1,3001,,16,NE,1974,1974,3101,1,1,1489.890539,1489.890539,3507,NO,16.91,26.93,1,0.69,6112,107.608629,116.25388,126.009313,129.123302,I,Above,Gable,0,5701,,21.9156005,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11916,NJBF000090734,404 E COLLINGS DR,Folsom,NJ,39.59206234,-74.86467026,RES1,3001,,16,NE,1974,1974,3101,1,1,1360.973787,1360.973787,3507,NO,16.29,22.78,1,0.56,6112,107.606519,116.250469,126.006094,129.118769,I,Above,Hip,0,5701,,19.53737262,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11917,NJBF000090742,404 E COLLINGS DR,Folsom,NJ,39.59216401,-74.86474937,RES1,3001,,16,NE,1974,1974,3101,1,1,534.1056631,534.1056631,3507,NO,10.9,18.03,1,-0.21,6112,107.60567,116.24911,126.004809,129.116957,I,Above,Flat,0,5701,,14.4660428,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11918,NJBF000090755,400 E COLLINGS DR,Folsom,NJ,39.59267358,-74.8650526,RES1,3001,,16,NE,1975,1975,3101,2,1,2110.283553,2110.283553,3507,NO,34.68,39.73,1,0.24,6112,107.602073,116.243004,125.999103,129.108984,I,Above,Gable,0,5701,,37.2037599,0,0,,,,1,1,,0.35,nav,1,1975,2,, 11919,NJBF000090759,1814 12TH ST,Folsom,NJ,39.59305564,-74.84001856,RES1,3001,,16,NE,1952,1973,3101,1,1,3369.455119,3369.455119,3505,NO,16.15,23.58,3,2.57,6112,107.784826,116.432868,126.197864,129.415024,I,Above,Gable,0,5701,,19.86319317,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 11920,NJBF000090769,328 E COLLINGS DR,Folsom,NJ,39.59291817,-74.86506026,RES1,3001,,16,NE,1974,1974,3101,1,1,1599.422788,1599.422788,3507,NO,20.43,29.74,1,1.48,6112,107.601344,116.241127,125.99747,129.10682,I,Above,Gable,0,5701,,25.08661319,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11921,NJBF000090776,326 E COLLINGS DR,Folsom,NJ,39.59314814,-74.86504082,RES1,3001,,16,NE,1975,1975,3101,1,1,2396.236037,2396.236037,3507,NO,17.89,24.92,1,1.66,6112,107.600841,116.239551,125.996133,129.105084,I,Above,Gable,0,5701,,21.40636149,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 11922,NJBF000090777,1814 12TH ST,Folsom,NJ,39.59305564,-74.84001856,RES1,3001,,16,NE,1952,1973,3101,1,1,2407.856903,2407.856903,3505,NO,24.71,39.1,3,7.98,6112,107.784826,116.432868,126.197864,129.415024,I,Above,Gable,0,5701,,31.90280176,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 11923,NJBF000090786,1814 12TH ST,Folsom,NJ,39.59305564,-74.84001856,RES1,3001,,16,NE,1952,1973,3101,1,1,1221.397404,1221.397404,3505,NO,19.61,30.36,3,7.61,6112,107.784826,116.432868,126.197864,129.415024,I,Above,Gable,0,5701,,24.98189882,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 11924,NJBF000090800,320 E COLLINGS DR,Folsom,NJ,39.59375271,-74.86566256,RES1,3001,,16,NE,1973,1973,3101,1,1,2038.533385,2038.533385,3507,NO,19.63,26.38,1,2.93,6112,107.594701,116.230348,125.987309,129.092542,I,Above,Gable,0,5701,,23.00218262,0,0,,,,1,1,,0.35,nav,1,1973,1,, 11925,NJBF000090802,318 E COLLINGS DR,Folsom,NJ,39.59382164,-74.86594402,RES1,3001,,16,NE,1975,1975,3101,1,1,1608.156345,1608.156345,3507,NO,18.39,32,1,1.73,6112,107.592496,116.227721,125.984645,129.088625,I,Above,Gable,0,5701,,25.19690952,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11926,NJBF000090806,316 E COLLINGS DR,Folsom,NJ,39.59391993,-74.86624712,RES1,3001,,16,NE,1975,1975,3101,1,1,1706.47085,1706.47085,3507,NO,20.49,32.03,1,2.92,6112,107.590055,116.224714,125.981622,129.084204,I,Above,Gable,0,5701,,26.26142705,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11927,NJBF000090809,253 FENIMORE DR,Folsom,NJ,39.59400391,-74.85918266,RES1,3001,,16,NE,1973,1973,3101,1,1,2096.710104,2096.710104,3507,NO,19.09,28.73,1,1.55,6112,107.640714,116.277428,126.037047,129.167947,I,Above,Gable,0,5701,,23.91295772,0,0,,,,1,1,,0.35,nav,1,1973,1,, 11928,NJBF000090813,307 E COLLINGS DR,Folsom,NJ,39.59406961,-74.86779257,RES1,3001,,16,NE,1968,1968,3101,1,1,2026.906847,2026.906847,3507,NO,16.09,24.76,1,2.86,6112,107.578587,116.212003,125.968476,129.064684,I,Above,Hip,0,5701,,20.42426017,0,0,,,,1,1,,0.35,nav,1,1968,1,, 11929,NJBF000090815,314 E COLLINGS DR,Folsom,NJ,39.59409663,-74.86642591,RES1,3001,,16,NE,1975,1975,3101,1,1,1518.003768,1518.003768,3507,NO,11.42,23.27,1,-0.2,6112,107.588281,116.222049,125.979069,129.080583,I,Above,Gable,0,5701,,17.3466978,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11930,NJBF000090816,311 E COLLINGS DR,Folsom,NJ,39.59414579,-74.86728859,RES1,3001,,16,NE,1972,1972,3101,1,1,1783.599537,1783.599537,3507,NO,14.25,26.2,1,-0.96,6112,107.581974,116.215213,125.971953,129.069978,I,Above,Hip,0,5701,,20.22529679,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 11931,NJBF000090817,251 FENIMORE DR,Folsom,NJ,39.59415313,-74.8594674,RES1,3001,,16,NE,1974,1974,3101,1,1,2025.937583,2025.937583,3507,NO,21.42,36.12,1,2.28,6112,107.638244,116.274145,126.033817,129.163227,I,Above,Gable,0,5701,,28.76972565,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11932,NJBF000090819,312 E COLLINGS DR,Folsom,NJ,39.59424749,-74.8665866,RES1,3001,,16,NE,1975,1975,3101,1,1,1284.398902,1284.398902,3507,NO,15.61,24.18,1,1.53,6112,107.586712,116.219723,125.976832,129.077406,I,Above,Gable,0,5701,,19.89487295,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11933,NJBF000090821,309 E COLLINGS DR,Folsom,NJ,39.59426648,-74.86750533,RES1,3001,,16,NE,1968,1968,3101,1,1,1846.60624,1846.60624,3507,NO,20.57,33.18,1,2.27,6112,107.580097,116.212701,125.969479,129.066415,I,Above,Gable,0,5701,,26.87738826,0,0,,,,1,1,,0.35,nav,1,1968,1,, 11934,NJBF000090823,233 E COLLINGS DR,Folsom,NJ,39.59431669,-74.87172875,RES1,3001,,16,NE,1958,1958,3101,1,1,1470.505988,1470.505988,3507,NO,14.46,22.77,1,1.05,6112,107.549904,116.180796,125.935997,129.016537,I,Above,Gable,0,5701,,18.61445976,0,0,,,,1,1,,0.35,nav,1,1958,1,, 11935,NJBF000090822,249 FENIMORE DR,Folsom,NJ,39.5942905,-74.85965515,RES1,3001,,16,NE,1973,1973,3101,1,1,2080.236543,2080.236543,3507,NO,11.15,24.89,1,-0.09,6112,107.636503,116.271682,126.031431,129.159772,I,Above,Gable,0,5701,,18.01982918,0,0,,,,1,1,,0.35,nav,1,1973,1,, 11936,NJBF000090824,300 E COLLINGS DR,Folsom,NJ,39.5943505,-74.86843654,RES1,3001,,16,NE,1972,1972,3101,2,1,3155.232385,3155.232385,3507,NO,24.49,37.28,1,2.92,6112,107.573212,116.205102,125.961608,129.054741,I,Above,Gable,0,5701,,30.88764692,0,0,,,,1,1,,0.03,nav,1,1972,2,, 11937,NJBF000090825,310 E COLLINGS DR,Folsom,NJ,39.59441443,-74.86676705,RES1,3001,,16,NE,1980,1980,3101,1,1,1663.414674,1663.414674,3507,NO,16.24,23.22,1,0.66,6112,107.584959,116.217128,125.974337,129.073862,I,Above,Gable,0,5701,,19.73362744,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11938,NJBF000090826,247 FENIMORE DR,Folsom,NJ,39.59445326,-74.85985923,RES1,3001,,16,NE,1974,1974,3101,1,1,1531.57433,1531.57433,3507,NO,18.61,24.53,1,2.51,6112,107.634574,116.268904,126.028749,129.155903,I,Above,Gable,0,5701,,21.57277889,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11939,NJBF000090828,248 E COLLINGS DR,Folsom,NJ,39.59450372,-74.86914171,RES1,3001,,16,NE,1972,1972,3101,2,1,1800.086049,1800.086049,3507,NO,26.53,38.58,1,0.34,6112,107.567759,116.198691,125.955078,129.045169,I,Above,Gable,0,5701,,32.55751092,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 11940,NJBF000090829,302 E COLLINGS DR,Folsom,NJ,39.59452062,-74.86806854,RES1,3001,,16,NE,1960,1960,3101,1,1,1886.356644,1886.356644,3507,NO,14.41,19.6,1,-0.27,6103,107.57536,116.206583,125.9634,129.057619,I,Above,Gable,0,5701,,17.00686282,0,0,,,,1,1,,0.03,nav,1,1960,1,, 11941,NJBF000090830,308 E COLLINGS DR,Folsom,NJ,39.59455903,-74.86694497,RES1,3001,,16,NE,1975,1975,3101,2,1,1513.150116,1513.150116,3507,NO,36.1,47.7,1,1.45,6112,107.583283,116.214713,125.972,129.070531,I,Above,Gable,0,5701,,41.90109291,0,0,,,,1,1,,0.35,nav,1,1975,2,, 11942,NJBF000090831,231 E COLLINGS DR,Folsom,NJ,39.59458576,-74.87214009,RES1,3001,,16,NE,1972,1972,3101,2,1,1493.770958,1493.770958,3507,NO,33.19,38.31,1,2.62,6112,107.546239,116.175755,125.931057,129.009506,I,Above,Gable,0,5701,,35.748866,0,1.1,,,,1,1,,0.35,nav,1,1972,2,, 11943,NJBF000090833,243 FENIMORE DR,Folsom,NJ,39.59475503,-74.86027546,RES1,3001,,16,NE,1975,1975,3101,1,1,1282.449256,1282.449256,3507,NO,21.06,32.35,1,1.62,6112,107.630727,116.263471,126.023481,129.148284,I,Above,Gable,0,5701,,26.70361919,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11944,NJBF000090834,244 E COLLINGS DR,Folsom,NJ,39.594787,-74.86990353,RES1,3001,,16,NE,1972,1972,3101,1,1,1992.022163,1992.022163,3507,NO,18.78,30.32,1,0.31,6112,107.561546,116.190908,125.947279,129.033867,I,Above,Gable,0,5701,,24.54874234,0,0,,,,1,1,,0.03,nav,1,1972,1,, 11945,NJBF000090836,241 FENIMORE DR,Folsom,NJ,39.59489733,-74.86049795,RES1,3001,,16,NE,1974,1974,3101,1,1,1568.415128,1568.415128,3507,NO,12.94,19.98,1,2.43,6112,107.62872,116.260711,126.020787,129.144377,I,Above,Gable,0,5701,,16.46120253,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11946,NJBF000090837,304 E COLLINGS DR,Folsom,NJ,39.59492128,-74.8676516,RES1,3001,,16,NE,1972,1972,3101,1,1,1870.844386,1870.844386,3507,NO,20.94,34.22,1,2.39,6103,107.577222,116.206725,125.964103,129.059136,I,Above,Gable,0,5701,,27.57805324,0,0,,,,1,1,,0.03,nav,1,1972,1,, 11947,NJBF000090839,227 E COLLINGS DR,Folsom,NJ,39.59499979,-74.87243299,RES1,3001,,16,NE,1975,1975,3101,1,1,2577.493609,2577.493609,3507,NO,13.85,27.4,1,1.03,6112,107.543004,116.170525,125.926115,129.002641,I,Above,Flat,0,5701,,20.62527083,0,1.2,,,,1,1,,0.35,nav,1,1975,1,, 11948,NJBF000090840,225 FENIMORE DR,Folsom,NJ,39.5950019,-74.86281534,RES1,3001,,16,NE,1974,1974,3101,1,1,1195.203127,1195.203127,3507,NO,14.85,28.26,1,0.92,6112,107.611697,116.242426,126.001741,129.115736,I,Above,Gable,0,5701,,21.55454725,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11949,NJBF000090841,239 FENIMORE DR,Folsom,NJ,39.5950436,-74.86075665,RES1,3001,,16,NE,1974,1974,3101,1,1,2198.488099,2198.488099,3507,NO,14.27,24.99,1,1.28,6112,107.62644,116.257643,126.017777,129.139997,I,Above,Flat,0,5701,,19.62990771,0,1.2,,,,1,1,,0.35,nav,1,1974,1,, 11950,NJBF000090843,237 FENIMORE DR,Folsom,NJ,39.59517681,-74.86107482,RES1,3001,,16,NE,1974,1974,3101,1,1,1492.795325,1492.795325,3507,NO,18.57,30.48,1,2.59,6112,107.623772,116.254236,126.014391,129.135036,I,Above,Flat,0,5701,,24.52524574,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11951,NJBF000090844,229 FENIMORE DR,Folsom,NJ,39.5951804,-74.86223079,RES1,3001,,16,NE,1975,1975,3101,1,1,823.9446889,823.9446889,3507,NO,21.23,33.94,1,2.69,6112,107.615415,116.245489,126.005211,129.121178,I,Above,Flat,0,5701,,27.58150573,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11952,NJBF000090847,235 FENIMORE DR,Folsom,NJ,39.59523351,-74.86133169,RES1,3001,,16,NE,1972,1972,3101,1,1,1292.140818,1292.140818,3507,NO,18.41,28.42,1,2.92,6112,107.621757,116.251865,126.011984,129.131465,I,Above,Gable,0,5701,,23.41249698,0,0,,,,1,1,,0.35,nav,1,1972,1,, 11953,NJBF000090848,233 FENIMORE DR,Folsom,NJ,39.59527995,-74.86159339,RES1,3001,,16,NE,1975,1975,3101,1,1,1784.569767,1784.569767,3507,NO,13.57,26.83,1,-0.77,6112,107.619744,116.249548,126.009616,129.127945,I,Above,Gable,0,5701,,20.20150708,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11954,NJBF000090850,231 FENIMORE DR,Folsom,NJ,39.5953181,-74.86183399,RES1,3001,,16,NE,1975,1975,3101,1,1,2479.602511,2479.602511,3507,NO,15.29,22.22,1,0.13,6112,107.617898,116.247444,126.007461,129.124735,I,Above,Gable,0,5701,,18.7516288,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11955,NJBF000090851,225 E COLLINGS DR,Folsom,NJ,39.59537086,-74.87241801,RES1,3001,,16,NE,1973,1973,3101,2,1,1542.256045,1542.256045,3507,NO,34.32,49.05,1,-0.82,6112,107.542071,116.167899,125.923856,128.999711,I,Above,Gable,0,5701,,41.68382001,0,1.1,,,,1,1,,0.35,nav,1,1973,2,, 11956,NJBF000090852,229 FENIMORE DR,Folsom,NJ,39.59538244,-74.86210262,RES1,3001,,16,NE,1975,1975,3101,1,1,1903.798592,1903.798592,3507,NO,20.47,29.77,1,1.58,6112,107.615779,116.244934,126.004915,129.12097,I,Above,Flat,0,5701,,25.1178115,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11957,NJBF000090853,227 FENIMORE DR,Folsom,NJ,39.59543983,-74.86234559,RES1,3001,,16,NE,1975,1975,3101,1,1,1505.404033,1505.404033,3507,NO,15.4,21.14,1,2.86,6112,107.613865,116.242666,126.002616,129.11757,I,Above,Gable,0,5701,,18.27097327,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11958,NJBF000090855,225 FENIMORE DR,Folsom,NJ,39.59549959,-74.862615,RES1,3001,,16,NE,1974,1974,3101,1,1,1465.652786,1465.652786,3507,NO,11.85,22.19,1,0.24,6112,107.611758,116.240188,126.000098,129.113846,I,Above,Hip,0,5701,,17.0209609,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11959,NJBF000090856,223 FENIMORE DR,Folsom,NJ,39.59555071,-74.86287417,RES1,3001,,16,NE,1974,1974,3101,1,1,1435.606105,1435.606105,3507,NO,16.2,24.45,1,-0.87,6112,107.60975,116.237855,125.997719,129.110321,I,Above,Gable,0,5701,,20.32191009,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11960,NJBF000090858,221 FENIMORE DR,Folsom,NJ,39.59559232,-74.8631466,RES1,3001,,16,NE,1975,1975,3101,1,1,1282.449018,1282.449018,3507,NO,16.71,24.32,1,0.78,6112,107.607669,116.235492,125.995295,129.106718,I,Above,Gable,0,5701,,20.51262084,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11961,NJBF000090859,219 FENIMORE DR,Folsom,NJ,39.59565884,-74.86339735,RES1,3001,,16,NE,1970,1970,3101,1,1,1567.446986,1567.446986,3507,NO,10.84,22.47,1,-0.16,6112,107.605683,116.233109,125.992885,129.103169,I,Above,Gable,0,5701,,16.65873713,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11962,NJBF000090860,217 FENIMORE DRIVE,Folsom,NJ,39.5957242,-74.86365858,RES1,3001,,16,NE,1970,1970,3101,1,1,1472.434518,1472.434518,3507,NO,19.66,30.92,1,1.45,6112,107.603616,116.230652,125.990394,129.099498,I,Above,Gable,0,5701,,25.29081079,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11963,NJBF000090862,221 E COLLINGS DR,Folsom,NJ,39.59575114,-74.87261859,RES1,3001,,16,NE,1955,1955,3101,1,1,2139.358648,2139.358648,3507,NO,15.47,26.93,1,1.27,6112,107.539584,116.163606,125.919854,128.994205,I,Above,Flat,0,5701,,21.19864495,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 11964,NJBF000090864,215 FENIMORE DR,Folsom,NJ,39.59577551,-74.86390448,RES1,3001,,16,NE,1970,1970,3101,1,1,1397.813025,1397.813025,3507,NO,17.3,24.38,1,0.45,6112,107.601709,116.228421,125.988123,129.096143,I,Above,Flat,0,5701,,20.84261109,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11965,NJBF000090867,213 FENIMORE DR,Folsom,NJ,39.59582597,-74.86416474,RES1,3001,,16,NE,1970,1970,3101,1,1,1465.652781,1465.652781,3507,NO,18.29,26.29,1,0.74,6112,107.599693,116.226086,125.985739,129.092618,I,Above,Gable,0,5701,,22.28852635,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11966,NJBF000090869,211 FENIMORE DR,Folsom,NJ,39.59587794,-74.86440349,RES1,3001,,16,NE,1970,1970,3101,1,1,1251.443939,1251.443939,3507,NO,18.06,24.9,1,1.9,6112,107.597838,116.22391,125.983525,129.089352,I,Above,Gable,0,5701,,21.47738177,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11967,NJBF000090870,209 FENIMORE DR,Folsom,NJ,39.59592652,-74.86467932,RES1,3001,,16,NE,1973,1973,3101,1,1,1534.484707,1534.484707,3507,NO,17.04,30.82,1,1.52,6112,107.595718,116.221473,125.981031,129.085664,I,Above,Gable,0,5701,,23.92963065,0,0,,,,1,1,,0.35,nav,1,1973,1,, 11968,NJBF000090875,207 FENIMORE DR,Folsom,NJ,39.59597932,-74.86491998,RES1,3001,,16,NE,1970,1970,3101,1,1,1189.410639,1189.410639,3507,NO,16.23,22.19,1,2.78,6112,107.593843,116.219276,125.978795,129.082367,I,Above,Gable,0,5701,,19.21036592,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11969,NJBF000090877,205 FENIMORE DR,Folsom,NJ,39.59602154,-74.86519715,RES1,3001,,16,NE,1973,1973,3101,1,1,1945.48138,1945.48138,3507,NO,14.06,28.9,1,2.2,6112,107.591735,116.216879,125.976333,129.078725,I,Above,Hip,0,5701,,21.48264431,0,0,,,,1,1,,0.35,nav,1,1973,1,, 11970,NJBF000090881,203 FENIMORE DR,Folsom,NJ,39.5961029,-74.8654842,RES1,3001,,16,NE,1980,1980,3101,1,1,1464.690234,1464.690234,3507,NO,18.61,29.57,1,0.55,6112,107.58945,116.214123,125.973549,129.074643,I,Above,Gable,0,5701,,24.08805452,0,0,,,,1,1,,0.35,nav,1,1980,1,, 11971,NJBF000090888,201 FENIMORE DR,Folsom,NJ,39.59624961,-74.86575793,RES1,3001,,16,NE,1970,1970,3101,1,1,1663.413286,1663.413286,3507,NO,15.66,22.61,1,0.77,6112,107.587076,116.210973,125.970443,129.070157,I,Above,Gable,0,5701,,19.13228839,0,0,,,,1,1,,0.35,nav,1,1970,1,, 11972,NJBF000090891,218 E COLLINGS DR,Folsom,NJ,39.59632903,-74.87256908,RES1,3001,,16,NE,1956,1956,3101,1,1,3796.944372,3796.944372,3507,NO,11.61,26.18,1,-0.08,6112,107.538319,116.159712,125.916546,128.989949,I,Above,Gable,0,5701,,18.89500751,0,0,,,,1,1,,0.03,nav,1,1956,1,, 11973,NJBF000090892,102 LAKEVIEW LANE,Folsom,NJ,39.59639956,-74.87135568,RES1,3001,,16,NE,1970,1970,3101,2,1,1424.941567,1424.941567,3507,NO,36.26,44.31,1,1.12,6112,107.54672,116.168172,125.925565,129.003403,I,Above,Gable,0,5701,,40.28467728,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 11974,NJBF000090897,214 E COLLINGS DR,Folsom,NJ,39.59652485,-74.87301568,RES1,3001,,16,NE,1960,1960,3101,1,1,1827.645274,1827.645274,3507,NO,13.79,22.49,1,1.89,6112,107.534605,116.154961,125.911806,128.983147,I,Above,Gable,0,5701,,18.13851679,0,0,,,,1,1,,0.03,nav,1,1960,1,, 11975,NJBF000090900,212 E COLLINGS DR,Folsom,NJ,39.5966245,-74.87319278,RES1,3001,,16,NE,1960,1960,3101,1,1,1467.249417,1467.249417,3507,NO,16.89,24.65,1,0.33,6112,107.533075,116.152923,125.909793,128.980278,I,Above,Flat,0,5701,,20.77043726,0,0,,,,1,1,,0.03,nav,1,1960,1,, 11976,NJBF000090907,210 E COLLINGS DR,Folsom,NJ,39.59677397,-74.87356559,RES1,3001,,16,NE,1956,1956,3101,1,1,1589.408715,1589.408715,3507,NO,13.56,18.79,1,0.98,6112,107.530016,116.149063,125.905928,128.974726,I,Above,Gable,0,5701,,16.17410504,0,0,,,,1,1,,0.35,nav,1,1956,1,, 11977,NJBF000090908,134 FENIMORE DR,Folsom,NJ,39.59681101,-74.86562809,RES1,3001,,16,NE,1976,1976,3101,2,1,1747.371605,1747.371605,3507,NO,24.18,36.76,1,2.53,6112,107.586449,116.207748,125.967849,129.066913,I,Above,Gable,0,5701,,30.47139023,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 11978,NJBF000090916,132 FENIMORE DR,Folsom,NJ,39.59698738,-74.86576806,RES1,3001,,16,NE,1974,1974,3101,1,1,1721.020401,1721.020401,3507,NO,15.63,23.71,1,-0.42,6112,107.584955,116.205385,125.965612,129.063764,I,Above,Gable,0,5701,,19.66977622,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 11979,NJBF000090925,130 FENIMORE DR,Folsom,NJ,39.59717653,-74.86589677,RES1,3001,,16,NE,1970,1970,3101,2,1,1374.63122,1374.63122,3507,NO,23.47,34.79,1,0.8,6112,107.583501,116.203,125.963373,129.060628,I,Above,Hip,0,5701,,29.1309485,0,0,,,,1,1,,0.35,nav,1,1970,2,, 11980,NJBF000090927,129 FENIMORE DR,Folsom,NJ,39.59721005,-74.86693806,RES1,3001,,16,NE,1975,1975,3101,1,1,1852.426813,1852.426813,3507,NO,12.27,18.55,1,0.3,6112,107.575951,116.194989,125.954978,129.048114,I,Above,Gable,0,5701,,15.40674751,0,1.2,,,,1,1,,0.03,nav,1,1975,1,, 11981,NJBF000090930,123 FENIMORE DR,Folsom,NJ,39.59724706,-74.8677086,RES1,3001,,16,NE,1968,1968,3101,2,1,555.4401446,555.4401446,3507,NO,25.71,39.81,1,2.27,6112,107.570333,116.188971,125.948687,129.038764,I,Above,Gable,0,5701,,32.76270275,0,0,,,,1,1,,0.03,nav,1,1968,2,, 11982,NJBF000090928,FENIMORE DR,Folsom,NJ,39.59722734,-74.86741781,RES1,3001,,NaN,NE,1968,0,3101,1,1,1538.36433,1538.36433,3507,NO,13.57,27.72,1,1.44,6112,107.572469,116.191286,125.9511,129.042341,I,Above,Gable,0,5701,,20.64658009,0,0,,,,1,1,,0.03,nav,1,1968,1,, 11983,NJBF000090938,123 FENIMORE DR,Folsom,NJ,39.59740704,-74.86778007,RES1,3001,,16,NE,1968,1968,3101,2,1,1648.867622,1648.867622,3507,NO,27.44,35.37,1,0.49,6112,107.569379,116.18725,125.947101,129.036578,I,Above,Gable,0,5701,,31.40436556,0,0,,,,1,1,,0.35,nav,1,1968,2,, 11984,NJBF000090939,121 FENIMORE DR,Folsom,NJ,39.59742436,-74.86800222,RES1,3001,,16,NE,1978,1978,3101,1,1,2721.937245,2721.937245,3507,NO,21.29,32.44,1,1.9,6112,107.567745,116.185472,125.945251,129.033837,I,Above,Gable,0,5701,,26.86725082,0,0,,,,1,1,,0.03,nav,1,1978,1,, 11985,NJBF000090947,124 FENIMORE DR,Folsom,NJ,39.59761363,-74.86656022,RES1,3001,,16,NE,1975,1975,3101,1,1,1360.977152,1360.977152,3507,NO,17.99,24.08,1,1.05,6112,107.577533,116.194788,125.955346,129.049119,I,Above,Hip,0,5701,,21.03411463,0,0,,,,1,1,,0.35,nav,1,1975,1,, 11986,NJBF000090948,204 E COLLINGS DR,Folsom,NJ,39.59762032,-74.87403977,RES1,3001,,16,NE,1958,1958,3101,1,1,1790.39408,1790.39408,3507,NO,15.59,30.35,1,2.97,6112,107.524293,116.139338,125.896837,128.962222,I,Above,Gable,0,5701,,22.97093004,0,0,,,,1,1,,0.35,nav,1,1958,1,, 11987,NJBF000090946,214 S RIVER DR,Folsom,NJ,39.5983015,-74.86204702,RES1,3001,,16,NE,1974,1974,3101,1,1,1260.143624,1260.143624,3507,NO,13.47,20.55,1,1.23,6112,107.608097,116.223357,125.986458,129.096528,I,Above,Gable,0,5701,,17.01115906,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11988,NJBF000090953,122 FENIMORE DR,Folsom,NJ,39.59772192,-74.86685997,RES1,3001,,16,NE,1972,1972,3101,1,1,1858.251322,1858.251322,3507,NO,17.12,27.94,1,0.52,6112,107.575083,116.191747,125.952295,129.044682,I,Above,Gable,0,5701,,22.52980974,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 11989,NJBF000090954,200 E COLLINGS DR,Folsom,NJ,39.59773624,-74.87454591,RES1,3001,,16,NE,1958,1958,3101,1,1,1852.439969,1852.439969,3507,NO,13.34,20.63,1,-0.39,6112,107.520393,116.13476,125.892162,128.955449,I,Above,Gable,0,5701,,16.98389361,0,0,,,,1,1,,0.35,nav,1,1958,1,, 11990,NJBF000090959,212 S RIVER DR,Folsom,NJ,39.5983015,-74.86204702,RES1,3001,,16,NE,1974,1976,3101,1,1,2084.09421,2084.09421,3507,NO,19.92,34.18,1,2.67,6110,107.608097,116.223357,125.986458,129.096528,I,Above,Gable,0,5701,,27.04911478,0,1.2,,,,1,1,,0.35,nav,1,1974,1,, 11991,NJBF000090962,122 E COLLINGS DR,Folsom,NJ,39.5978403,-74.87535712,RES1,3001,,16,NE,1958,1958,3101,1,1,1369.700244,1369.700244,3507,NO,16.77,29.89,1,2.13,6112,107.514379,116.128033,125.885199,128.945297,I,Above,Gable,0,5701,,23.3307328,0,0,,,,1,1,,0.35,nav,1,1958,1,, 11992,NJBF000090963,126 E COLLINGS DR,Folsom,NJ,39.59787267,-74.87475223,RES1,3001,,16,NE,1960,1960,3101,1,1,1323.166809,1323.166809,3507,NO,12.75,21.42,1,-0.1,6112,107.518554,116.132237,125.889688,128.951948,I,Above,Gable,0,5701,,17.085602,0,0,,,,1,1,,0.03,nav,1,1960,1,, 11993,NJBF000090966,120 E COLLINGS DR,Folsom,NJ,39.59794376,-74.8755815,RES1,3001,,16,NE,1956,1956,3101,1,1,523.4519042,523.4519042,3507,NO,14.89,26.85,1,-0.01,6112,107.512508,116.125624,125.882798,128.941873,I,Above,Gable,0,5701,,20.86817549,0,0,,,,1,1,,0.35,nav,1,1956,1,, 11994,NJBF000090969,,Folsom,NJ,39.59800553,-74.86939636,RES1,3001,,NaN,NE,1969,0,3101,1,1,1347.386704,1347.386704,3507,NO,15.61,22.59,1,0.55,6112,107.556174,116.170791,125.930595,129.012664,I,Above,Gable,0,5701,,19.10063087,0,0,,,,1,1,,0.35,nav,1,1969,1,, 11995,NJBF000090970,120 E COLLINGS DR,Folsom,NJ,39.59803963,-74.87567017,RES1,3001,,16,NE,1956,1956,3101,1,1,2335.16177,2335.16177,3507,NO,12.13,18.81,1,0.07,6112,107.511611,116.124266,125.881496,128.940059,I,Above,Hip,0,5701,,15.47180407,0,0,,,,1,1,,0.35,nav,1,1956,1,, 11996,NJBF000090979,210 S RIVER DR,Folsom,NJ,39.5983015,-74.86204702,RES1,3001,,16,NE,1974,1974,3101,1,1,703.7504722,703.7504722,3507,NO,20.23,26.98,1,0.75,6110,107.608097,116.223357,125.986458,129.096528,I,Above,Gable,0,5701,,23.60316963,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11997,NJBF000090982,210 S RIVER DR,Folsom,NJ,39.5983132,-74.86184127,RES1,3001,,16,NE,1974,1974,3101,1,1,1458.863404,1458.863404,3507,NO,20.08,31.71,1,1.22,6110,107.609552,116.224811,125.988007,129.098872,I,Above,Gable,0,5701,,25.89328881,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11998,NJBF000090984,200 BLACK HORSE PK,Folsom,NJ,39.5983015,-74.86204702,RES1,3001,,NaN,NE,1974,0,3101,1,1,2047.264172,2047.264172,3507,NO,16.33,27.12,1,2.4,6112,107.608097,116.223357,125.986458,129.096528,I,Above,Gable,0,5701,,21.72471776,0,0,,,,1,1,,0.35,nav,1,1974,1,, 11999,NJBF000090989,,Folsom,NJ,39.5985198,-74.86220854,RES1,3001,,NaN,NE,1969,0,3101,1,1,523.4490679,523.4490679,3507,NO,12.64,26.97,1,0.09,6110,107.606319,116.220492,125.983762,129.092721,I,Above,Gable,0,5701,,19.80478261,0,0,,,,1,1,,0.35,nav,1,1969,1,, 12000,NJBF000090987,206 S RIVER DR,Folsom,NJ,39.59851454,-74.86243855,RES1,3001,,16,NE,1974,1974,3101,1,1,2320.616447,2320.616447,3507,NO,18.26,28.32,1,2.42,6106,107.604672,116.218807,125.981979,129.090036,I,Above,Gable,0,5701,,23.28831626,0,0,,,,1,1,,0.03,nav,1,1974,1,, 12001,NJBF000090988,105 FENIMORE DR,Folsom,NJ,39.59851811,-74.86967698,RES1,3001,,16,NE,1956,1956,3101,1,1,2890.600806,2890.600806,3507,NO,12.98,23.02,1,-0.89,6112,107.552741,116.164905,125.925114,129.005083,I,Above,Hip,0,5701,,18.0024414,0,1.2,,,,1,1,,0.35,nav,1,1956,1,, 12002,NJBF000090996,114 E COLLINGS DR,Folsom,NJ,39.59860436,-74.87614046,RES1,3001,,16,NE,1955,1955,3101,2,1,1916.403242,1916.403242,3507,NO,34.01,45.97,1,1,6112,107.506715,116.116681,125.874262,128.930021,I,Above,Gable,0,5701,,39.99011857,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12003,NJBF000091007,33 FENIMORE DR,Folsom,NJ,39.59876818,-74.87063428,RES1,3001,,16,NE,1967,1967,3101,2,1,2559.097651,2559.097651,3507,NO,38.91,48.09,1,2.25,6112,107.545229,116.155974,125.916038,128.991885,I,Above,Gable,0,5701,,43.50083348,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 12004,NJBF000091008,108 FENIMORE DR,Folsom,NJ,39.59877193,-74.86911053,RES1,3001,,16,NE,1967,1967,3101,2,1,1204.89848,1204.89848,3507,NO,28.77,41.49,1,2.2,6112,107.556068,116.167206,125.927911,129.009516,I,Above,Gable,0,5701,,35.13065536,0,0,,,,1,1,,0.35,nav,1,1967,2,, 12005,NJBF000091012,27 FENIMORE DR,Folsom,NJ,39.59881873,-74.87135622,RES1,3001,,16,NE,1990,1990,3101,1,1,1391.977569,1391.977569,3507,NO,19.67,31.06,1,1.87,6112,107.539953,116.150266,125.910079,128.98311,I,Above,Gable,0,5701,,25.36689985,0,0,,,,1,1,,0.35,nav,1,1990,1,, 12006,NJBF000091015,29 FENIMORE DR,Folsom,NJ,39.59884311,-74.87109468,RES1,3001,,16,NE,1973,1973,3101,1,1,1946.455463,1946.455463,3507,NO,17.57,28.48,1,0.49,6112,107.541741,116.152014,125.911961,128.985924,I,Above,Flat,0,5701,,23.0244263,0,0,,,,1,1,,0.35,nav,1,1973,1,, 12007,NJBF000091031,106 E COLLINGS DR,Folsom,NJ,39.59907069,-74.87722615,RES1,3001,,16,NE,1968,1968,3101,1,1,2023.030819,2023.030819,3507,NO,18.22,28.64,1,1.74,6112,107.497759,116.105313,125.862884,128.913805,I,Above,Hip,0,5701,,23.42661986,0,0,,,,1,1,,0.35,nav,1,1968,1,, 12008,NJBF000091027,110 E COLLINGS DR,Folsom,NJ,39.59902927,-74.87658404,RES1,3001,,16,NE,1968,1968,3101,1,1,2943.917508,2943.917508,3507,NO,16.16,30.06,1,0.06,6112,107.502394,116.110315,125.86812,128.921447,I,Above,Gable,0,5701,,23.11374913,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 12009,NJBF000091032,21 FENIMORE DR,Folsom,NJ,39.59911205,-74.87226326,RES1,3001,,16,NE,1977,1977,3101,1,1,2130.633859,2130.633859,3507,NO,18.74,31.45,1,2.31,6112,107.532694,116.141414,125.901139,128.970197,I,Above,Hip,0,5701,,25.09581559,0,1.2,,,,1,1,,0.03,nav,1,1977,1,, 12010,NJBF000091034,100 FENIMORE DR,Folsom,NJ,39.5991554,-74.87019124,RES1,3001,,16,NE,1957,1957,3101,1,1,1234.955192,1234.955192,3507,NO,14.99,27.49,1,2.27,6110,107.547301,116.156373,125.917018,128.993759,I,Above,Gable,0,5701,,21.23859837,0,0,,,,1,1,,0.35,nav,1,1957,1,, 12011,NJBF000091035,7 E COLLINGS DR,Folsom,NJ,39.59916264,-74.8795294,RES1,3001,,16,NE,1955,1955,3101,1,1,1057.563731,1057.563731,3507,NO,19.83,29.73,1,1.14,6112,107.481342,116.087842,125.844512,128.886992,I,Above,Gable,0,5701,,24.78026242,0,0,,,,1,1,,0.35,nav,1,1955,1,, 12012,NJBF000091037,102 E COLLINGS DR,Folsom,NJ,39.59921326,-74.87772703,RES1,3001,,16,NE,1956,1956,3101,1,1,1540.309689,1540.309689,3507,NO,14.02,20.09,1,1.59,6112,107.493839,116.100615,125.858108,128.90695,I,Above,Gable,0,5701,,17.0583787,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12013,NJBF000091039,5 E COLLINGS DR,Folsom,NJ,39.59925166,-74.87994281,RES1,3001,,16,NE,1955,1955,3101,2,1,638.4148973,638.4148973,3507,NO,20.92,29.21,1,-0.21,6112,107.478193,116.08418,125.840757,128.881597,I,Above,Gable,0,5701,,25.06365191,0,0,,,,1,1,,0.35,nav,1,1955,2,, 12014,NJBF000091040,5 E COLLINGS DR,Folsom,NJ,39.59925442,-74.87970435,RES1,3001,,16,NE,1955,1955,3101,2,1,1031.393766,1031.393766,3507,NO,37.46,51.96,1,2.74,6112,107.47986,116.085905,125.842587,128.884272,I,Above,Gable,0,5701,,44.71348072,0,0,,,,1,1,,0.35,nav,1,1955,2,, 12015,NJBF000091038,108 E COLLINGS DR,Folsom,NJ,39.59924134,-74.87689282,RES1,3001,,16,NE,1958,1958,3101,1,1,2339.050177,2339.050177,3507,NO,18.75,28.63,1,1.94,6112,107.499623,116.106502,125.864381,128.916181,I,Above,Hip,0,5701,,23.69361855,0,0,,,,1,1,,0.03,nav,1,1958,1,, 12016,NJBF000091042,100 E COLLINGS DR,Folsom,NJ,39.5992622,-74.87805903,RES1,3001,,16,NE,1960,1960,3101,1,1,1794.263922,1794.263922,3507,NO,21.92,27.69,1,2.88,6112,107.491369,116.097834,125.855232,128.902786,I,Above,Gable,0,5701,,24.80471755,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12017,NJBF000091043,144 S RIVER DR,Folsom,NJ,39.59927828,-74.86372702,RES1,3001,,16,NE,1975,1975,3101,1,1,1593.612797,1593.612797,3507,NO,18.72,31.2,1,1.23,6112,107.593264,116.203434,125.966899,129.068258,I,Above,Gable,0,5701,,24.96339138,0,0,,,,1,1,,0.35,nav,1,1975,1,, 12018,NJBF000091045,12 E COLLINGS DR,Folsom,NJ,39.59934549,-74.87832139,RES1,3001,,16,NE,1960,1960,3101,1,1,1352.24917,1352.24917,3507,NO,13.75,21.45,1,0.08,6112,107.489297,116.095316,125.852681,128.899137,I,Above,Gable,0,5701,,17.5994612,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12019,NJBF000091044,19 FENIMORE DR,Folsom,NJ,39.59930918,-74.87249575,RES1,3001,,16,NE,1981,1981,3101,1,1,3529.403209,3529.403209,3507,NO,14.8,27.54,1,0.94,6112,107.53049,116.138242,125.898067,128.965868,I,Above,Hip,0,5701,,21.16690174,0,1.2,,,,1,1,,0.35,nav,1,1981,1,, 12020,NJBF000091048,E COLLINGS DR,Folsom,NJ,39.59943264,-74.87858512,RES1,3001,,16,NE,1960,1960,3101,1,1,1620.757853,1620.757853,3507,NO,19.94,32.35,1,0.56,6112,107.487196,116.092749,125.850085,128.895428,I,Above,Hip,0,5701,,26.14458197,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 12021,NJBF000091051,17 FENIMORE DR,Folsom,NJ,39.59949911,-74.87264092,RES1,3001,,16,NE,1966,1966,3101,2,1,2005.591698,2005.591698,3507,NO,23.93,29.11,1,0.38,6112,107.52893,116.135772,125.895726,128.962613,I,Above,Gable,0,5701,,26.52352072,0,1.2,,,,1,1,,0.35,nav,1,1966,2,, 12022,NJBF000091052,140 S RIVER DR,Folsom,NJ,39.59954311,-74.86411005,RES1,3001,,16,NE,1974,1974,3101,1,1,1377.445063,1377.445063,3507,NO,17.63,24.2,1,2.1,6106,107.589769,116.198585,125.962176,129.061476,I,Above,Gable,0,5701,,20.91521616,0,0,,,,1,1,,0.03,nav,1,1974,1,, 12023,NJBF000091056,138 S RIVER DR,Folsom,NJ,39.59967337,-74.86432913,RES1,3001,,16,NE,1976,1976,3101,1,1,1533.519291,1533.519291,3507,NO,17.61,31.34,1,1.85,6106,107.587831,116.195976,125.959615,129.057787,I,Above,Gable,0,5701,,24.47247943,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12024,NJBF000091057,15 FENIMORE DR,Folsom,NJ,39.59970933,-74.87284012,RES1,3001,,16,NE,1972,1972,3101,1,1,3175.5972,3175.5972,3507,NO,18.53,30.58,1,0.3,6112,107.526931,116.132757,125.892838,128.958572,I,Above,Hip,0,5701,,24.5551227,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12025,NJBF000091069,13 FENIMORE DR,Folsom,NJ,39.59992932,-74.8730225,RES1,3001,,16,NE,1957,1957,3101,1,1,2064.72006,2064.72006,3507,NO,19.78,27.27,1,2.77,6112,107.525017,116.129788,125.890012,128.954635,I,Above,Gable,0,5701,,23.52406419,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 12026,NJBF000091073,134 S RIVER DR,Folsom,NJ,39.60004347,-74.86461722,RES1,3001,,16,NE,1976,1976,3101,1,1,1958.095607,1958.095607,3507,NO,18.98,24.82,1,0.02,6110,107.58473,116.191052,125.954967,129.051239,I,Above,Hip,0,5701,,21.89653806,0,1.1,,,,1,1,,0.35,nav,1,1976,1,, 12027,NJBF000091075,11 FENIMORE DR,Folsom,NJ,39.60013485,-74.87326812,RES1,3001,,16,NE,1970,1970,3101,1,1,1788.458982,1788.458982,3507,NO,14.48,23.1,1,0.22,6112,107.522704,116.126469,125.886794,128.950106,I,Above,Hip,0,5701,,18.7876111,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 12028,NJBF000091076,5 FENIMORE DR,Folsom,NJ,39.60017948,-74.87415097,RES1,3001,,16,NE,1955,1955,3101,1,1,2237.266171,2237.266171,3507,NO,16.79,31.28,1,0.04,6112,107.516331,116.119672,125.879659,128.939637,I,Above,Flat,0,5701,,24.03559955,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12029,NJBF000091077,132 S RIVER DR,Folsom,NJ,39.60020029,-74.86444828,RES1,3001,,16,NE,1976,1976,3101,1,1,2003.644131,2003.644131,3507,NO,19.65,33.68,1,2.67,6110,107.58551,116.191129,125.955283,129.051883,I,Above,Gable,0,5701,,26.66420526,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12030,NJBF000091085,9 FENIMORE DR,Folsom,NJ,39.60026182,-74.87361045,RES1,3001,,16,NE,1968,1968,3101,1,1,1360.972887,1360.972887,3507,NO,19.3,27.81,1,0.25,6112,107.519926,116.123024,125.883328,128.945131,I,Above,Hip,0,5701,,23.55700388,0,0,,,,1,1,,0.03,nav,1,1968,1,, 12031,NJBF000091087,5 FENIMORE DR,Folsom,NJ,39.60033352,-74.87439457,RES1,3001,,16,NE,1955,1955,3101,1,1,991.6461391,991.6461391,3507,NO,19.72,32.69,1,0.78,6112,107.51417,116.116743,125.876779,128.93556,I,Above,Gable,0,5701,,26.20566158,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12032,NJBF000091086,125 E PARK AVE,Folsom,NJ,39.60029796,-74.86547727,RES1,3001,,16,NE,1972,1972,3101,1,1,1964.862799,1964.862799,3507,NO,15.31,29.09,1,0.06,6110,107.577836,116.182747,125.946573,129.038976,I,Above,Gable,0,5701,,22.20235816,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12033,NJBF000091088,130 S RIVER DR,Folsom,NJ,39.60035916,-74.86425901,RES1,3001,,16,NE,1976,1976,3101,1,1,1779.736972,1779.736972,3507,NO,20.89,31.61,1,1.95,6106,107.586429,116.19134,125.955744,129.052744,I,Above,Gable,0,5701,,26.25230309,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 12034,NJBF000091094,123 PARK AVE,Folsom,NJ,39.60041972,-74.8656788,RES1,3001,,16,NE,1976,1976,3101,1,1,1529.629943,1529.629943,3507,NO,18.2,28.27,1,1.82,6112,107.576045,116.180333,125.944203,129.035572,I,Above,Gable,0,5701,,23.23218599,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12035,NJBF000091101,,Folsom,NJ,39.6005484,-74.86492899,RES1,3001,,NaN,NE,1969,0,3101,1,1,1176.798119,1176.798119,3507,NO,14.09,28.25,1,-0.75,6106,107.581081,116.184939,125.949264,129.043265,I,Above,Gable,0,5701,,21.17083691,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12036,NJBF000091100,128 S RIVER DR,Folsom,NJ,39.60053904,-74.86406526,RES1,3001,,16,NE,1976,1976,3101,1,1,1644.028653,1644.028653,3507,NO,12.31,20.68,1,-0.66,6106,107.587327,116.191429,125.956108,129.053484,I,Above,Gable,0,5701,,16.49302749,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12037,NJBF000091103,6 FENIMORE DR,Folsom,NJ,39.60056209,-74.87299104,RES1,3001,,16,NE,1976,1976,3101,1,1,1787.471758,1787.471758,3507,NO,12.38,21.9,1,1.12,6112,107.523471,116.125346,125.886222,128.949715,I,Above,Hip,0,5701,,17.14112793,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12038,NJBF000091110,117 PARK AVE,Folsom,NJ,39.60060531,-74.86662021,RES1,3001,,16,NE,1975,1975,3101,1,1,535.0786883,535.0786883,3507,NO,11.38,16.65,1,-0.1,6106,107.568776,116.171971,125.935638,129.023004,I,Above,Gable,0,5701,,14.01849233,0,0,,,,1,1,,0.03,nav,1,1975,1,, 12039,NJBF000091104,119 E PARK AVE,Folsom,NJ,39.60056594,-74.86595338,RES1,3001,,16,NE,1958,1958,3101,1,1,2304.261751,2304.261751,3507,NO,16.84,23.58,1,1.91,6106,107.573671,116.177206,125.941115,129.031125,I,Above,Gable,0,5701,,20.20869172,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 12040,NJBF000091111,4 FENIMORE DR,Folsom,NJ,39.60067595,-74.87343809,RES1,3001,,16,NE,1960,1960,3101,1,1,1217.503667,1217.503667,3507,NO,10.06,23.69,1,-0.8,6112,107.519984,116.121228,125.882025,128.943646,I,Above,Gable,0,5701,,16.87694376,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12041,NJBF000091117,126 S RIVER DR,Folsom,NJ,39.60075658,-74.86391712,RES1,3001,,16,NE,1976,1976,3101,2,1,1442.382927,1442.382927,3507,NO,23.52,33.54,1,1.75,6106,107.587788,116.190889,125.955866,129.053358,I,Above,Gable,0,5701,,28.53468601,0,0,,,,1,1,,0.03,nav,1,1976,2,, 12042,NJBF000091120,117 PARK AVE,Folsom,NJ,39.60082394,-74.86659534,RES1,3001,,16,NE,1975,1975,3101,1,1,1669.223489,1669.223489,3507,NO,19.71,33.25,1,1.35,6106,107.568346,116.170517,125.934427,129.021435,I,Above,Hip,0,5701,,26.48143714,0,0,,,,1,1,,0.03,nav,1,1975,1,, 12043,NJBF000091123,115 PARK AVE,Folsom,NJ,39.60089151,-74.86684729,RES1,3001,,16,NE,1976,1976,3101,1,1,1292.140576,1292.140576,3507,NO,13.83,28.3,1,-0.14,6110,107.566349,116.168143,125.932017,129.01792,I,Above,Gable,0,5701,,21.0656445,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12044,NJBF000091124,113 PARK AVE,Folsom,NJ,39.60095018,-74.86708888,RES1,3001,,16,NE,1990,1990,3101,1,1,1256.285564,1256.285564,3507,NO,19.28,27.05,1,2.72,6106,107.564453,116.165919,125.929751,129.01461,I,Above,Gable,0,5701,,23.16566756,0,0,,,,1,1,,0.03,nav,1,1990,1,, 12045,NJBF000091127,111 PARK AVE,Folsom,NJ,39.60089151,-74.86684729,RES1,3001,,16,NE,1976,1976,3101,1,1,1824.304199,1824.304199,3507,NO,16.45,27.33,1,2.33,6110,107.566349,116.168143,125.932017,129.01792,I,Above,Gable,0,5701,,21.88622734,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12046,NJBF000091132,,Folsom,NJ,39.60105652,-74.87269223,RES1,3001,,NaN,NE,1969,0,3101,1,1,1006.187724,1006.187724,3507,NO,11.71,25.31,1,0.73,6112,107.524204,116.123878,125.885388,128.949005,I,Above,Hip,0,5701,,18.51016672,0,0,,,,1,1,,0.35,nav,1,1969,1,, 12047,NJBF000091131,122 PARK AVE,Folsom,NJ,39.60104465,-74.86576836,RES1,3001,,16,NE,1976,1976,3101,1,1,1511.273011,1511.273011,3507,NO,16.34,27.17,1,1.22,6110,107.573667,116.174985,125.939485,129.029209,I,Above,Gable,0,5701,,21.75520221,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12048,NJBF000091133,124 S RIVER DR,Folsom,NJ,39.60106834,-74.86402739,RES1,3001,,16,NE,1976,1976,3101,1,1,1260.16112,1260.16112,3507,NO,18.18,29.47,1,2.54,6106,107.586131,116.18773,125.952998,129.049404,I,Above,Gable,0,5701,,23.82393801,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12049,NJBF000091134,109 PARK AVE,Folsom,NJ,39.60109057,-74.86764656,RES1,3001,,16,NE,1976,1976,3101,1,1,1903.808725,1903.808725,3507,NO,20.6,27.2,1,1.75,6106,107.560063,116.160741,125.924482,129.006924,I,Above,Gable,0,5701,,23.8978242,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12050,NJBF000091138,120 PARK AVE,Folsom,NJ,39.60114743,-74.86599221,RES1,3001,,16,NE,1976,1976,3101,1,1,1462.334952,1462.334952,3507,NO,16.12,28.11,1,-0.72,6110,107.571774,116.172561,125.937074,129.025724,I,Above,Gable,0,5701,,22.11379193,0,1.1,,,,1,1,,0.35,nav,1,1976,1,, 12051,NJBF000091141,105 PARK AVE,Folsom,NJ,39.6011839,-74.86809539,RES1,3001,,16,NE,1972,1972,3101,1,1,1579.078681,1579.078681,3507,NO,17.51,28.7,1,1.64,6106,107.556597,116.156738,125.920384,129.000935,I,Above,Gable,0,5701,,23.10396572,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12052,NJBF000091143,118 E PARK AVE,Folsom,NJ,39.6012267,-74.86627962,RES1,3001,,16,NE,1970,1970,3101,2,1,1828.084107,1828.084107,3507,NO,24.42,30.66,1,1.57,6106,107.569484,116.169829,125.934304,129.021683,I,Above,Gable,0,5701,,27.53987843,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 12053,NJBF000091144,122 S RIVER DR,Folsom,NJ,39.60124504,-74.8641693,RES1,3001,,16,NE,1976,1976,3101,1,1,1208.769805,1208.769805,3507,NO,14.82,24.71,1,2.95,6106,107.584616,116.185343,125.950742,129.046223,I,Above,Gable,0,5701,,19.76389187,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12054,NJBF000091147,,Folsom,NJ,39.60129141,-74.87399199,RES1,3001,,NaN,NE,1950,0,3101,1,1,993.5929246,993.5929246,3507,NO,20.27,27.02,1,1.9,6112,107.514337,116.112635,125.873809,128.932192,I,Above,Hip,0,5701,,23.64159409,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12055,NJBF000091148,101 PARK AVE,Folsom,NJ,39.60089151,-74.86684729,RES1,3001,,17,NE,1976,1972,3101,1,1,1920.293003,1920.293003,3507,NO,12.84,19.79,1,0.1,6110,107.566349,116.168143,125.932017,129.01792,I,Above,Gable,0,5701,,16.31379544,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12056,NJBF000091151,122 PARK AVE,Folsom,NJ,39.60132326,-74.86553578,RES1,3001,,16,NE,1976,1976,3101,1,1,1260.165453,1260.165453,3507,NO,14.28,19.32,1,2.84,6106,107.574561,116.174618,125.939516,129.029551,I,Above,Gable,0,5701,,16.80003365,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12057,NJBF000091150,116 PARK AVE,Folsom,NJ,39.60131097,-74.86656435,RES1,3001,,16,NE,1969,1969,3101,1,1,1517.042242,1517.042242,3507,NO,12.49,26.47,1,0.06,6106,107.567212,116.167099,125.931541,129.017659,I,Above,Gable,0,5701,,19.47876058,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12058,NJBF000091149,114 CAINS MILL RD,Folsom,NJ,39.60130897,-74.88139096,RES1,3001,,16,NE,1955,1955,3101,1,1,3372.367815,3372.367815,3507,NO,18.93,31.59,1,0.5,6112,107.462264,116.058717,125.816615,128.848508,I,Above,Hip,0,5701,,25.25975977,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12059,NJBF000091153,1204 11TH ST,Folsom,NJ,39.60135889,-74.82866149,RES1,3001,,16,NE,1978,1978,3102,2,1,1139.943095,1139.943095,3507,NO,33.16,44.7,1,1.52,6112,107.849036,116.456592,126.235503,129.483674,I,Above,Flat,0,5701,,38.93093115,0,0,,,,1,1,,0.35,nav,1,1978,2,, 12060,NJBF000091156,89 PARK AVE,Folsom,NJ,39.60140215,-74.86919285,RES1,3001,,16,NE,1975,1975,3101,2,1,712.4666682,712.4666682,3507,NO,23.21,32.45,1,0.46,6110,107.548142,116.147019,125.910416,128.986376,I,Above,Gable,0,5701,,27.83071841,0,0,,,,1,1,,0.35,nav,1,1975,2,, 12061,NJBF000091157,120 S RIVER DR,Folsom,NJ,39.60142264,-74.86431739,RES1,3001,,16,NE,1976,1976,3101,1,1,1161.282993,1161.282993,3507,NO,11.82,22.21,1,-0.66,6106,107.583055,116.182905,125.948434,129.042965,I,Above,Flat,0,5701,,17.01310181,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12062,NJBF000091159,113 CAINS MILL RD,Folsom,NJ,39.60145554,-74.88229636,RES1,3001,,16,NE,1960,1960,3101,1,1,1360.964107,1360.964107,3507,NO,18.36,30.19,1,0.25,6112,107.455533,116.051112,125.808744,128.83721,I,Above,Gable,0,5701,,24.27269643,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12063,NJBF000091164,,Folsom,NJ,39.60150204,-74.88130195,RES1,3001,,NaN,NE,1969,0,3101,1,1,1261.124064,1261.124064,3507,NO,14.8,20.34,1,1.45,6112,107.462341,116.057958,125.81608,128.847925,I,Above,Gable,0,5701,,17.56891062,0,0,,,,1,1,,0.35,nav,1,1969,1,, 12064,NJBF000091163,87 S PARK AVE,Folsom,NJ,39.60148971,-74.8694672,RES1,3001,,16,NE,1957,1957,3101,2,1,2467.959592,2467.959592,3507,NO,36.99,50.95,1,0.18,6106,107.54594,116.144347,125.907716,128.982467,I,Above,Gable,0,5701,,43.97066566,0,0,,,,1,1,,0.03,nav,1,1957,2,, 12065,NJBF000091167,112 PARK AVE.,Folsom,NJ,39.60161084,-74.86755214,RES1,3001,,16,NE,1968,1968,3101,1,1,1101.183286,1101.183286,3507,NO,21.72,36.36,1,2.77,6110,107.559294,116.157555,125.921888,129.003622,I,Above,Gable,0,5701,,29.03915185,0,0,,,,1,1,,0.35,nav,1,1968,1,, 12066,NJBF000091168,83 PARK AVE,Folsom,NJ,39.60163759,-74.8699922,RES1,3001,,16,NE,1972,1972,3101,1,1,1301.842449,1301.842449,3507,NO,10.86,21.58,1,0.21,6106,107.541781,116.139384,125.902678,128.975162,I,Above,Gable,0,5701,,16.21798154,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12067,NJBF000091173,103 MILL LANE,Folsom,NJ,39.60172092,-74.88293604,RES1,3001,,16,NE,1990,1990,3101,2,1,1340.606638,1340.606638,3507,NO,32.91,42.26,1,1.19,6112,107.450323,116.044575,125.80217,128.827927,I,Above,Hip,0,5701,,37.58417757,0,0,,,,1,1,,0.03,nav,1,1990,2,, 12068,NJBF000091178,79 PARK AVE,Folsom,NJ,39.60177407,-74.87046546,RES1,3001,,16,NE,1988,1988,3101,2,1,1418.159331,1418.159331,3507,NO,30.12,37.02,1,1.61,6110,107.53803,116.134898,125.898125,128.968569,I,Above,Gable,0,5701,,33.56827635,0,0,,,,1,1,,0.35,nav,1,1988,2,, 12069,NJBF000091176,111 CAINS MILL RD,Folsom,NJ,39.6017684,-74.88232246,RES1,3001,,16,NE,1940,1940,3101,1,1,1426.897274,1426.897274,3507,NO,10.65,16.31,1,0.12,6112,107.454469,116.048662,125.806578,128.834376,I,Above,Gable,0,5701,,13.48144702,0,0,,,,1,1,,0.35,nav,1,1940,1,, 12070,NJBF000091174,37 E BLACK HORSE PK,Folsom,NJ,39.60172605,-74.87670028,RES1,3001,,NaN,NE,1969,0,3101,1,1,8675.681371,8675.681371,3507,NO,15.11,21.94,1,0.22,6106,107.493994,116.089689,125.850094,128.897819,I,Above,Flat,0,5701,,18.52318875,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12071,NJBF000091177,116 S RIVER DR,Folsom,NJ,39.60177183,-74.86460989,RES1,3001,,16,NE,1976,1976,3101,1,1,1234.94907,1234.94907,3507,NO,10.92,24.53,1,0.19,6106,107.579975,116.178106,125.943888,129.03655,I,Above,Gable,0,5701,,17.72500718,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12072,NJBF000091180,110 CAINS MILL RD,Folsom,NJ,39.60179676,-74.88151581,RES1,3001,,16,NE,1960,1960,3101,1,1,1298.938752,1298.938752,3507,NO,14.56,21.23,1,-0.04,6112,107.460013,116.054268,125.812576,128.843125,I,Above,Gable,0,5701,,17.89503401,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12073,NJBF000091181,14 14TH ST,Folsom,NJ,39.6017998,-74.86797473,RES1,3001,,16,NE,1948,1948,3101,1,1,1620.755489,1620.755489,3507,NO,17.46,32.38,1,-0.39,6110,107.555738,116.153023,125.917372,128.997114,I,Above,Hip,0,5701,,24.92192943,0,0,,,,1,1,,0.35,nav,1,1948,1,, 12074,NJBF000091183,,Folsom,NJ,39.60184077,-74.87606945,RES1,3001,,NaN,NE,1969,0,3101,1,1,2435.992216,2435.992216,3507,NO,18.85,28.46,1,0.64,6112,107.498118,116.093436,125.854238,128.904011,I,Above,Gable,0,5701,,23.65491593,0,0,,,,1,1,,1,nav,1,1969,1,, 12075,NJBF000091186,86 E PARK AVE,Folsom,NJ,39.60185262,-74.86870977,RES1,3001,,16,NE,1968,1968,3101,2,1,1670.175291,1670.175291,3507,NO,30.66,37.83,1,1.79,6110,107.550333,116.147213,125.911295,128.988154,I,Above,Gable,0,5701,,34.24340732,0,0,,,,1,1,,0.35,nav,1,1968,2,, 12076,NJBF000091193,105 MILL LANE,Folsom,NJ,39.60189892,-74.88324175,RES1,3001,,16,NE,1960,1960,3101,1,1,1119.595437,1119.595437,3507,NO,16.08,29.59,1,1.34,6112,107.447688,116.041081,125.798706,128.823079,I,Above,Flat,0,5701,,22.83463935,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12077,NJBF000091187,111 S RIVER DR,Folsom,NJ,39.60185733,-74.8654385,RES1,3001,,16,NE,1976,1976,3101,1,1,1601.373096,1601.373096,3507,NO,16.05,25.84,1,-0.12,6106,107.57378,116.171334,125.93685,129.026145,I,Above,Gable,0,5701,,20.9423554,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12078,NJBF000091192,84 PARK AVE,Folsom,NJ,39.60189733,-74.8690151,RES1,3001,,16,NE,1976,1976,3101,1,1,1928.046319,1928.046319,3507,NO,15.2,26.32,1,2.7,6112,107.548031,116.14464,125.908635,128.984257,I,Above,Gable,0,5701,,20.75824438,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12079,NJBF000091198,,Folsom,NJ,39.60195882,-74.87645071,RES1,3001,,NaN,NE,1969,0,3101,1,1,615.5272112,615.5272112,3507,NO,20.75,34.57,1,2.61,6112,107.495093,116.08979,125.850538,128.898709,I,Above,Flat,0,5701,,27.66207241,0,0,,,,1,1,,1,nav,1,1969,1,, 12080,NJBF000091184,1202 11TH ST,Folsom,NJ,39.60184373,-74.82831959,RES1,3001,,NaN,NE,1977,0,3102,2,1,2986.54598,2986.54598,3507,NO,36.52,44.14,1,-0.2,6112,107.850368,116.455385,126.235052,129.483447,I,Above,Gable,0,5701,,40.32937561,0,0,,,,1,1,,0.35,nav,1,1977,2,, 12081,NJBF000091194,82 E PARK AVE,Folsom,NJ,39.60193006,-74.86924431,RES1,3001,,16,NE,1956,1956,3101,1,1,1265.003116,1265.003116,3507,NO,18.09,24.74,1,-0.09,6112,107.546303,116.142709,125.906638,128.981333,I,Above,Gable,0,5701,,21.41618957,0,0,,,,1,1,,0.35,nav,1,1956,1,, 12082,NJBF000091201,BRADDOCK LAKE,Folsom,NJ,39.60198988,-74.87736013,RES1,3001,,NaN,NE,1950,0,3101,1,1,665.9442376,665.9442376,3507,NO,15.18,24.67,1,0.08,6106,107.488604,116.082956,125.843326,128.88818,I,Above,Gable,0,5701,,19.9220323,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12083,NJBF000091197,114 S RIVER DR,Folsom,NJ,39.60193472,-74.86474506,RES1,3001,,16,NE,1976,1976,3101,1,1,1526.71994,1526.71994,3507,NO,15.79,27.92,1,2.99,6106,107.57855,116.17588,125.94178,129.033578,I,Above,Gable,0,5701,,21.85669264,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12084,NJBF000091202,114 S RIVER DR,Folsom,NJ,39.60198991,-74.86458992,RES1,3001,,16,NE,1976,1976,3101,1,1,656.2492751,656.2492751,3507,NO,13.32,25.57,1,0.23,6106,107.579513,116.176614,125.942641,129.034921,I,Above,Gable,0,5701,,19.44480205,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12085,NJBF000091205,,Folsom,NJ,39.60200988,-74.88121649,RES1,3001,,NaN,NE,1960,0,3101,1,1,1231.085239,1231.085239,3507,NO,18.7,24.73,1,0.76,6112,107.461507,116.054887,125.813534,128.844733,I,Above,Gable,0,5701,,21.71381735,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12086,NJBF000091204,109 S RIVER DR,Folsom,NJ,39.60200577,-74.86565077,RES1,3001,,16,NE,1976,1976,3101,1,1,1287.292011,1287.292011,3507,NO,16.22,29.16,1,0.72,6106,107.571834,116.16864,125.934224,129.02239,I,Above,Gable,0,5701,,22.68833518,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12087,NJBF000091196,BLACK HORSE PK,Folsom,NJ,39.60193341,-74.87368262,COM8,3001,,NaN,ME,1969,0,3401,1,1,6594.507586,6594.507586,3507,NO,16.18,31.05,1,-0.05,6112,107.514724,116.110154,125.872117,128.930367,I,Above,Flat,0,NaN,,23.61047866,0,0,,,,1,1,,1,nav,1,1969,1,, 12088,NJBF000091200,12 14TH ST,Folsom,NJ,39.60198757,-74.867767,RES1,3001,,16,NE,1972,1972,3101,2,1,1802.997673,1802.997673,3507,NO,35.5,41.19,1,2.13,6106,107.556703,116.153151,125.917791,128.997934,I,Above,Gable,0,5701,,38.34502709,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12089,NJBF000091203,29 BLACK HORSE PK,Folsom,NJ,39.60200511,-74.87691262,RES1,3001,,NaN,NE,1969,0,3101,1,1,2041.4553,2041.4553,3507,NO,18.05,25.65,1,-0.55,6106,107.491709,116.086093,125.84668,128.893104,I,Above,Flat,0,5701,,21.84976357,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12090,NJBF000091207,107 S RIVER DR,Folsom,NJ,39.60204421,-74.86592487,RES1,3001,,16,NE,1976,1976,3101,1,1,1513.147772,1513.147772,3507,NO,13.71,23.92,1,-0.36,6106,107.569759,116.166329,125.931834,129.018871,I,Above,Gable,0,5701,,18.81257075,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12091,NJBF000091208,1200 11TH ST,Folsom,NJ,39.60204988,-74.82844971,RES1,3001,,16,NE,1977,1977,3102,2,1,707.6245464,707.6245464,3507,NO,33.06,40.41,1,-0.54,6112,107.848811,116.452695,126.232598,129.479784,I,Above,Gable,0,5701,,36.73953593,0,0,,,,1,1,,0.35,nav,1,1977,2,, 12092,NJBF000091216,31 BLACK HORSE PK,Folsom,NJ,39.60213797,-74.87708733,RES1,3001,,NaN,NE,1969,0,3101,2,1,1370.669466,1370.669466,3507,NO,34.25,48.66,1,2.52,6112,107.49011,116.083854,125.844494,128.89004,I,Above,Flat,0,5701,,41.45642013,0,0,,,,1,1,,1,nav,1,1969,2,, 12093,NJBF000091217,67 PARK AVE,Folsom,NJ,39.60214544,-74.87200036,RES1,3001,,16,NE,1972,1972,3101,1,1,1748.706769,1748.706769,3507,NO,16.58,29.69,1,2.02,6110,107.526071,116.120891,125.883822,128.947831,I,Above,Gable,0,5701,,23.13880388,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12094,NJBF000091215,78 E PARK AVE,Folsom,NJ,39.60213326,-74.86991115,RES1,3001,,16,NE,1962,1962,3101,1,1,2185.903207,2185.903207,3507,NO,14.9,22.47,1,-0.74,6112,107.540976,116.136295,125.900143,128.971929,I,Above,Gable,0,5701,,18.68129322,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 12095,NJBF000091221,10 WILLOW LANE,Folsom,NJ,39.60216244,-74.868504,RES1,3001,,16,NE,1972,1972,3101,1,1,1379.380745,1379.380745,3507,NO,14.51,26.4,1,1.09,6106,107.550944,116.146423,125.910923,128.987927,I,Above,Gable,0,5701,,20.45173279,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 12096,NJBF000091219,104 CAINS MILL RD,Folsom,NJ,39.60215648,-74.88134496,RES1,3001,,16,NE,1960,1960,3101,1,1,2549.410829,2549.410829,3507,NO,18.96,32.79,1,0.02,6112,107.460194,116.052894,125.811623,128.842099,I,Above,Gable,0,5701,,25.87139584,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12097,NJBF000091222,65 PARK AVE,Folsom,NJ,39.60217531,-74.87229292,RES1,3001,,16,NE,1972,1972,3101,1,1,1899.938581,1899.938581,3507,NO,18.6,31.99,1,0.4,6110,107.523905,116.118525,125.881356,128.944225,I,Above,Gable,0,5701,,25.29194309,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12098,NJBF000091220,76 E PARK AVE,Folsom,NJ,39.60216067,-74.87018198,RES1,3001,,16,NE,1948,1948,3101,1,1,1724.481947,1724.481947,3507,NO,13.75,24.8,1,-0.18,6110,107.538965,116.134097,125.897854,128.968572,I,Above,Flat,0,5701,,19.27885048,0,0,,,,1,1,,0.35,nav,1,1948,1,, 12099,NJBF000091225,25 BLACK HORSE PK,Folsom,NJ,39.60220182,-74.8773462,RES1,3001,,16,NE,1950,1950,3101,2,1,1557.73881,1557.73881,3507,NO,33.54,38.76,1,-0.56,6112,107.488106,116.081504,125.84209,128.886588,I,Above,Gable,0,5701,,36.15313337,0,0,,,,1,1,,0.35,nav,1,1950,2,, 12100,NJBF000091226,,Folsom,NJ,39.6022163,-74.86496045,RES1,3001,,NaN,NE,1976,0,3101,1,1,2972.029077,2972.029077,3507,NO,16.77,30.79,1,2.24,6110,107.576221,116.172175,125.938287,129.028666,I,Above,Gable,0,5701,,23.78266351,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12101,NJBF000091230,6 14TH ST,Folsom,NJ,39.60231131,-74.86738407,RES1,3001,,16,NE,1967,1967,3101,1,1,661.0947061,661.0947061,3507,NO,14.09,25.98,1,1.32,6106,107.558546,116.153558,125.918711,128.999639,I,Above,Gable,0,5701,,20.03580581,0,0,,,,1,1,,0.03,nav,1,1967,1,, 12102,NJBF000091234,76 E PARK AVE,Folsom,NJ,39.60233818,-74.87022537,RES1,3001,,16,NE,1948,1948,3101,1,1,553.5032955,553.5032955,3507,NO,15.81,21.82,1,1.25,6112,107.538164,116.132465,125.896388,128.966588,I,Above,Gable,0,5701,,18.81460051,0,0,,,,1,1,,0.35,nav,1,1948,1,, 12103,NJBF000091231,101 S RIVER DR,Folsom,NJ,39.60231605,-74.86677717,RES1,3001,,16,NE,1976,1976,3101,1,1,1262.093413,1262.093413,3507,NO,17.43,31.88,1,1.82,6106,107.562885,116.157997,125.923422,129.006644,I,Above,Gable,0,5701,,24.656118,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12104,NJBF000091233,BLACK HORSE PK,Folsom,NJ,39.60233148,-74.87803209,RES1,3001,,NaN,NE,1969,0,3101,1,1,1961.006355,1961.006355,3507,NO,15.43,27.24,1,2.15,6106,107.482918,116.075582,125.835986,128.877794,I,Above,Flat,0,5701,,21.33604144,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12105,NJBF000091229,10 WILLOW LANE,Folsom,NJ,39.6022965,-74.86899581,RES1,3001,,16,NE,1972,1972,3101,1,1,4587.917978,4587.917978,3507,NO,18.97,27.96,1,0.15,6112,107.54705,116.141797,125.906222,128.9811,I,Above,Hip,0,5701,,23.46860975,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12106,NJBF000091238,107 CAINS MILL RD,Folsom,NJ,39.60239611,-74.8819901,RES1,3001,,16,NE,1960,1960,3101,1,1,1025.581182,1025.581182,3507,NO,13.17,26.98,1,-0.21,6112,107.455011,116.046498,125.805164,128.832951,I,Above,Flat,0,5701,,20.07743953,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12107,NJBF000091241,102 CAINS MILL RD,Folsom,NJ,39.6024178,-74.88126498,RES1,3001,,16,NE,1975,1975,3101,1,1,1318.309038,1318.309038,3507,NO,14.45,26.54,1,-0.55,6112,107.460013,116.051567,125.810584,128.840851,I,Above,Gable,0,5701,,20.49148981,0,0,,,,1,1,,0.35,nav,1,1975,1,, 12108,NJBF000091243,11 WILLOW LANE,Folsom,NJ,39.60243005,-74.86966684,RES1,3001,,16,NE,1972,1972,3101,1,1,1587.796243,1587.796243,3507,NO,17.69,23.84,1,-0.63,6112,107.541887,116.135876,125.900143,128.972239,I,Above,Gable,0,5701,,20.76399302,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12109,NJBF000091242,6 14TH ST,Folsom,NJ,39.60241989,-74.86723436,RES1,3001,,16,NE,1967,1967,3101,1,1,2579.434017,2579.434017,3507,NO,11.84,22.42,1,0.78,6106,107.559318,116.153848,125.919184,129.000455,I,Above,Gable,0,5701,,17.13322972,0,0,,,,1,1,,0.03,nav,1,1967,1,, 12110,NJBF000091248,1 FRANCIS LANE,Folsom,NJ,39.60248426,-74.88259731,RES1,3001,,16,NE,1986,1986,3101,1,1,1395.866622,1395.866622,3507,NO,11.25,23.99,1,-0.17,6112,107.450528,116.041487,125.79996,128.825482,I,Above,Gable,0,5701,,17.61830341,0,0,,,,1,1,,0.35,nav,1,1986,1,, 12111,NJBF000091246,9 14TH ST,Folsom,NJ,39.60246841,-74.86799537,RES1,3001,,16,NE,1972,1972,3101,1,1,1662.436097,1662.436097,3507,NO,17.11,31.75,1,-0.81,6112,107.553732,116.147884,125.912934,128.991229,I,Above,Gable,0,5701,,24.42706145,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12112,NJBF000091251,106 S RIVER DR,Folsom,NJ,39.60251301,-74.8656909,RES1,3001,,16,NE,1974,1974,3101,1,1,1523.79967,1523.79967,3507,NO,18.75,25.96,1,1.79,6106,107.570136,116.164537,125.930652,129.017605,I,Above,Gable,0,5701,,22.35726493,0,0,,,,1,1,,0.03,nav,1,1974,1,, 12113,NJBF000091247,108 S RIVER DR,Folsom,NJ,39.60247242,-74.86535389,RES1,3001,,16,NE,1976,1976,3101,1,1,2553.263478,2553.263478,3507,NO,13.96,21.86,1,2.35,6106,107.572673,116.167336,125.933554,129.021883,I,Above,Flat,0,5701,,17.9063412,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12114,NJBF000091255,104 S RIVER DR,Folsom,NJ,39.60254506,-74.86598485,RES1,3001,,16,NE,1976,1976,3101,1,1,1159.824945,1159.824945,3507,NO,13.67,23.27,1,2.89,6106,107.567934,116.162126,125.928146,129.013908,I,Above,Gable,0,5701,,18.4708758,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12115,NJBF000091258,,Folsom,NJ,39.60256161,-74.87153325,RES1,3001,,NaN,NE,1969,0,3101,1,1,1182.609767,1182.609767,3507,NO,17.49,26.49,1,2.69,6112,107.528224,116.121216,125.884788,128.949688,I,Above,Gable,0,5701,,21.99202694,0,0,,,,1,1,,0.35,nav,1,1969,1,, 12116,NJBF000091256,8 PINE LANE,Folsom,NJ,39.60254539,-74.87024249,RES1,3001,,16,NE,1972,1972,3101,1,1,1574.23091,1574.23091,3507,NO,18.48,27.64,1,0.24,6112,107.537464,116.1308,125.894933,128.964651,I,Above,Hip,0,5701,,23.058695,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12117,NJBF000091253,,Folsom,NJ,39.60251612,-74.87894755,RES1,3001,,NaN,NE,1960,0,3101,1,1,3542.985495,3542.985495,3507,NO,19.37,26.91,1,-0.08,6110,107.475964,116.067594,125.827763,128.865974,I,Above,Gable,0,5701,,23.13801145,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12118,NJBF000091262,100 CAINS MILL RD,Folsom,NJ,39.60258874,-74.88111657,RES1,3001,,16,NE,1953,1953,3101,1,1,1852.437123,1852.437123,3507,NO,17.93,28.55,1,2.88,6112,107.460565,116.05139,125.81064,128.841104,I,Above,Gable,0,5701,,23.23628646,0,1.1,,,,1,1,,0.35,nav,1,1953,1,, 12119,NJBF000091267,13 E.BLACK HORSE PK.,Folsom,NJ,39.60262234,-74.88002492,RES1,3001,,16,NE,1970,1970,3101,1,1,1031.396066,1031.396066,3507,NO,17.01,25.27,1,1.08,6112,107.468113,116.059033,125.818814,128.853034,I,Above,Gable,0,5701,,21.13790029,0,0,,,,1,1,,0.03,nav,1,1970,1,, 12120,NJBF000091269,6 WILLOW LANE,Folsom,NJ,39.60264959,-74.86868485,RES1,3001,,16,NE,1972,1972,3101,1,1,1238.825791,1238.825791,3507,NO,15.34,21.63,1,-0.88,6106,107.548288,116.141449,125.906387,128.981711,I,Above,Hip,0,5701,,18.48646642,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12121,NJBF000091266,7 14TH ST,Folsom,NJ,39.60261757,-74.86784517,RES1,3001,,16,NE,1972,1972,3101,1,1,2377.830595,2377.830595,3507,NO,12.19,26.32,1,-0.75,6112,107.554388,116.147866,125.913144,128.991695,I,Above,Hip,0,5701,,19.25216472,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12122,NJBF000091270,9 WILLOW LANE,Folsom,NJ,39.60266281,-74.86951669,RES1,3001,,16,NE,1972,1972,3101,1,1,1936.771036,1936.771036,3507,NO,15,22.59,1,-0.64,6112,107.542307,116.135241,125.899821,128.972004,I,Above,Gable,0,5701,,18.79515094,0,1.2,,,,1,1,,0.35,nav,1,1972,1,, 12123,NJBF000091271,,Folsom,NJ,39.60270077,-74.87967491,RES1,3001,,NaN,NE,1970,0,3101,1,1,2319.668318,2319.668318,3507,NO,14,21.5,1,1.43,6112,107.470343,116.060986,125.821004,128.856304,I,Above,Flat,0,5701,,17.7452565,0,0,,,,1,1,,0.35,nav,1,1970,1,, 12124,NJBF000091273,62 PARK AVE,Folsom,NJ,39.6027284,-74.87246451,RES1,3001,,16,NE,1972,1972,3101,1,1,1788.449527,1788.449527,3507,NO,18.12,30.99,1,1.98,6112,107.521135,116.113171,125.876496,128.937634,I,Above,Gable,0,5701,,24.55487733,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12125,NJBF000091272,6 PINE LANE,Folsom,NJ,39.60271294,-74.87005342,RES1,3001,,16,NE,1972,1972,3101,1,1,1764.22225,1764.22225,3507,NO,12.56,27.46,1,1.49,6112,107.538343,116.130936,125.895329,128.965412,I,Above,Hip,0,5701,,20.01002571,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12126,NJBF000091277,103 CAINS MILL RD,Folsom,NJ,39.60277025,-74.88182542,RES1,3001,,15,NE,1952,1952,3101,1,1,1447.23636,1447.23636,3507,NO,15.68,26.85,1,-0.29,6112,107.455106,116.044971,125.804071,128.831736,I,Above,Gable,0,5701,,21.26380391,0,0,,,,1,1,,0.35,nav,1,1952,1,, 12127,NJBF000091275,5 PINE LANE,Folsom,NJ,39.60275439,-74.87097707,RES1,3001,,16,NE,1972,1972,3101,1,1,2012.371293,2012.371293,3507,NO,13.66,27.22,1,0.23,6112,107.531643,116.123861,125.887882,128.954452,I,Above,Hip,0,5701,,20.43813248,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12128,NJBF000091280,7 WILLOW LANE,Folsom,NJ,39.60283472,-74.86933151,RES1,3001,,16,NE,1972,1972,3101,1,1,1694.424713,1694.424713,3507,NO,16.17,23.56,1,1.99,6112,107.543148,116.135317,125.900162,128.972686,I,Above,Gable,0,5701,,19.86612385,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12129,NJBF000091284,4 OAK LANE,Folsom,NJ,39.6029159,-74.87169954,RES1,3001,,16,NE,1972,1972,3101,1,1,2060.85987,2060.85987,3507,NO,15.27,23.92,1,2.26,6112,107.526045,116.117368,125.881233,128.944809,I,Above,Gable,0,5701,,19.59327603,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12130,NJBF000091283,2 WILLOW LANE,Folsom,NJ,39.60291452,-74.86827281,RES1,3001,,16,NE,1972,1972,3101,1,1,2062.786425,2062.786425,3507,NO,18.08,31.16,1,2.81,6112,107.550496,116.142498,125.907902,128.984232,I,Above,Gable,0,5701,,24.62137164,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12131,NJBF000091285,4 PINE LANE,Folsom,NJ,39.60293781,-74.86981517,RES1,3001,,16,NE,1972,1972,3101,1,1,2162.627663,2162.627663,3507,NO,11.51,24.11,1,0.38,6112,107.539412,116.131006,125.895743,128.966256,I,Above,Hip,0,5701,,17.81095683,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12132,NJBF000091288,3 PINE LANE,Folsom,NJ,39.60297487,-74.87074177,RES1,3001,,16,NE,1972,1972,3101,1,1,1867.939635,1867.939635,3507,NO,14.76,23.67,1,0.77,6112,107.532699,116.123939,125.888298,128.955293,I,Above,Hip,0,5701,,19.21377727,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12133,NJBF000091289,5 WILLOW LANE,Folsom,NJ,39.60299569,-74.86914159,RES1,3001,,16,NE,1974,1974,3101,1,1,1505.399472,1505.399472,3507,NO,17.11,27.23,1,2.45,6112,107.544056,116.135511,125.900612,128.973518,I,Above,Gable,0,5701,,22.17084506,0,0,,,,1,1,,0.35,nav,1,1974,1,, 12134,NJBF000091290,BLACK HORSE PK,Folsom,NJ,39.60300915,-74.88101965,RES1,3001,,NaN,NE,1969,0,3101,1,1,3749.458873,3749.458873,3507,NO,17.99,32.88,1,-0.68,6112,107.460057,116.049034,125.808735,128.838752,I,Above,Gable,0,5701,,25.43583563,0,0,,,,1,1,,0.35,nav,1,1969,1,, 12135,NJBF000091295,,Folsom,NJ,39.60307556,-74.88068326,RES1,3001,,NaN,NE,1969,0,3101,1,1,868.533389,868.533389,3507,NO,19.41,29.76,1,0.11,6112,107.462226,116.050976,125.810897,128.841963,I,Above,Gable,0,5701,,24.58273355,0,0,,,,1,1,,0.35,nav,1,1969,1,, 12136,NJBF000091298,52 PARK AVE,Folsom,NJ,39.6030977,-74.87394378,RES1,3001,,16,NE,1958,1958,3101,1,1,1311.52641,1311.52641,3507,NO,14.03,22.52,1,0.31,6110,107.509609,116.099646,125.862681,128.917689,I,Above,Gable,0,5701,,18.27491569,0,0,,,,1,1,,0.35,nav,1,1958,1,, 12137,NJBF000091300,3 OAK LANE,Folsom,NJ,39.60311511,-74.87236628,RES1,3001,,16,NE,1972,1972,3101,1,1,1558.70936,1558.70936,3507,NO,17.47,23.63,1,0.62,6112,107.520754,116.111027,125.874797,128.935529,I,Above,Gable,0,5701,,20.54983125,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12138,NJBF000091303,50 PARK AVE,Folsom,NJ,39.6031677,-74.87421647,RES1,3001,,16,NE,1958,1958,3101,2,1,2376.83752,2376.83752,3507,NO,29.36,39.48,1,1.37,6110,107.507486,116.097149,125.860132,128.914015,I,Above,Gable,0,5701,,34.42151533,0,1.2,,,,1,1,,0.35,nav,1,1958,2,, 12139,NJBF000091304,1 PINE LANE,Folsom,NJ,39.60319335,-74.87050415,RES1,3001,,16,NE,1972,1972,3101,1,1,1669.217646,1669.217646,3507,NO,13.36,18.44,1,0.5,6112,107.533785,116.12406,125.888755,128.956193,I,Above,Gable,0,5701,,15.90392483,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12140,NJBF000091305,2 OAK LANE,Folsom,NJ,39.60320507,-74.87156092,RES1,3001,,16,NE,1972,1972,3101,1,1,2439.858886,2439.858886,3507,NO,19.64,31.27,1,0.48,6112,107.526225,116.116239,125.880469,128.943978,I,Above,Gable,0,5701,,25.45289054,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12141,NJBF000091309,52 PARK AVE,Folsom,NJ,39.60327754,-74.87387296,RES1,3001,,16,NE,1958,1958,3101,1,1,624.2541934,624.2541934,3507,NO,13,27.96,1,2.45,6112,107.509607,116.098834,125.862086,128.916997,I,Above,Gable,0,5701,,20.48152618,0,0,,,,1,1,,0.35,nav,1,1958,1,, 12142,NJBF000091308,2 PINE LANE,Folsom,NJ,39.60324879,-74.8696907,RES1,3001,,16,NE,1976,1976,3101,1,1,2667.651052,2667.651052,3507,NO,12.13,20.56,1,-0.78,6110,107.539428,116.129598,125.89472,128.965063,I,Above,Gable,0,5701,,16.34039133,0,1.1,,,,1,1,,0.35,nav,1,1976,1,, 12143,NJBF000091313,46 E PARK AVE,Folsom,NJ,39.60332026,-74.87463064,RES1,3001,,16,NE,1968,1968,3101,1,1,1753.54522,1753.54522,3507,NO,17.45,29.28,1,0.96,6112,107.504123,116.093008,125.855956,128.90804,I,Above,Hip,0,5701,,23.36727399,0,0,,,,1,1,,0.35,nav,1,1968,1,, 12144,NJBF000091314,1 OAK LANE,Folsom,NJ,39.60334836,-74.87226976,RES1,3001,,16,NE,1970,1970,3101,1,1,1661.466962,1661.466962,3507,NO,18.1,27.6,1,0.78,6112,107.520784,116.110001,125.874057,128.934676,I,Above,Gable,0,5701,,22.84875139,0,0,,,,1,1,,0.35,nav,1,1970,1,, 12145,NJBF000091306,16 BLACK HORSE PK,Folsom,NJ,39.60321008,-74.87849499,COM4,3003,,NaN,ME,1969,0,3401,1,1,18099.27792,18099.27792,3507,NO,14.92,24.33,1,0.67,6112,107.47719,116.065797,125.826858,128.865351,I,Above,Flat,0,NaN,,19.62789356,0,0,,,,1,1,,0.35,nav,1,1969,1,, 12146,NJBF000091317,27 S RIVER DR,Folsom,NJ,39.60344473,-74.86918592,RES1,3001,,16,NE,1972,1972,3101,1,1,1357.106272,1357.106272,3507,NO,21.47,36.17,1,2.78,6112,107.542488,116.131838,125.897397,128.969223,I,Above,Gable,0,5701,,28.81840173,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12147,NJBF000091318,40 PARK AVE,Folsom,NJ,39.60344849,-74.87529997,RES1,3001,,16,NE,1968,1968,3101,1,1,3104.828463,3104.828463,3507,NO,16.29,26.96,1,0.86,6112,107.499033,116.087203,125.849974,128.899397,I,Above,Gable,0,5701,,21.6254308,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 12148,NJBF000091321,17 S RIVER DR,Folsom,NJ,39.60346469,-74.8709221,RES1,3001,,16,NE,1972,1972,3101,1,1,2304.154097,2304.154097,3507,NO,21.89,29.39,1,2.87,6112,107.530046,116.118979,125.883771,128.949114,I,Above,Gable,0,5701,,25.63608803,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12149,NJBF000091324,27 PARK AVE,Folsom,NJ,39.60352956,-74.87758746,RES1,3001,,16,NE,1975,1975,3101,1,1,1464.692124,1464.692124,3507,NO,16.78,30.73,1,2.46,6110,107.482674,116.070021,125.83182,128.872916,I,Above,Gable,0,5701,,23.75726952,0,0,,,,1,1,,0.35,nav,1,1975,1,, 12150,NJBF000091323,2 S RIVER DR,Folsom,NJ,39.60352541,-74.87387729,RES1,3001,,16,NE,1972,1972,3101,1,1,1516.075927,1516.075927,3507,NO,15.79,23.57,1,-0.96,6112,107.508886,116.09698,125.860484,128.914895,I,Above,Gable,0,5701,,19.6813997,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12151,NJBF000091326,25 S RIVER DR,Folsom,NJ,39.60355403,-74.86937035,RES1,3001,,16,NE,1972,1972,3101,1,1,2006.551642,2006.551642,3507,NO,14.85,22.1,1,0.21,6112,107.540868,116.129677,125.895268,128.966186,I,Above,Gable,0,5701,,18.47356582,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12152,NJBF000091327,10 E BLACK HORSE PK,Folsom,NJ,39.60356405,-74.87956621,COM1,3001,,NaN,ME,1969,0,3401,1,1,5041.610071,5041.610071,3507,NO,18.77,31.96,1,1.98,6112,107.468674,116.055474,125.816389,128.850442,I,Above,Gable,0,NaN,,25.36766776,0,0,,,,1,1,,0.35,nav,1,1969,1,, 12153,NJBF000091330,11 S RIVER DR,Folsom,NJ,39.60363984,-74.8720537,RES1,3001,,16,NE,1970,1970,3101,1,1,1308.628808,1308.628808,3507,NO,16.48,21.55,1,0.67,6112,107.521501,116.109412,125.873871,128.934699,I,Above,Gable,0,5701,,19.01640952,0,0,,,,1,1,,0.35,nav,1,1970,1,, 12154,NJBF000091332,34 PARK AVE,Folsom,NJ,39.60364759,-74.87625813,RES1,3001,,16,NE,1956,1956,3101,1,1,1718.656026,1718.656026,3507,NO,18.96,31.12,1,2.02,6112,107.491707,116.07878,125.841313,128.886912,I,Above,Gable,0,5701,,25.03865964,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 12155,NJBF000091333,9 S RIVER DR,Folsom,NJ,39.60366148,-74.87234263,RES1,3001,,16,NE,1972,1972,3101,1,1,1496.662186,1496.662186,3507,NO,16.61,23.26,1,0.15,6112,107.519389,116.107148,125.871497,128.931225,I,Above,Hip,0,5701,,19.936713,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12156,NJBF000091335,15 E PARK AVE,Folsom,NJ,39.60370061,-74.87912622,RES1,3001,,16,NE,1960,1960,3101,2,1,554.4671908,554.4671908,3507,NO,26.21,32.03,1,1.39,6112,107.471375,116.057648,125.818903,128.85424,I,Above,Gable,0,5701,,29.11942298,0,0,,,,1,1,,0.35,nav,1,1960,2,, 12157,NJBF000091336,21 PARK AVE,Folsom,NJ,39.60370171,-74.87835955,RES1,3001,,16,NE,1973,1973,3101,1,1,1527.692769,1527.692769,3507,NO,18.04,29.22,1,1.19,6112,107.476753,116.063172,125.824784,128.862816,I,Above,Gable,0,5701,,23.63218535,0,1.1,,,,1,1,,0.35,nav,1,1973,1,, 12158,NJBF000091337,4 S RIVER DR,Folsom,NJ,39.60371669,-74.87362717,RES1,3001,,16,NE,1972,1972,3101,2,1,1587.806648,1587.806648,3507,NO,21.08,33.96,1,-0.93,6112,107.510119,116.09738,125.861197,128.916136,I,Above,Gable,0,5701,,27.52381229,0,0,,,,1,1,,0.35,nav,1,1972,2,, 12159,NJBF000091338,19 E PARK AVE,Folsom,NJ,39.60377576,-74.87860011,RES1,3001,,16,NE,1957,1957,3101,1,1,1553.860151,1553.860151,3507,NO,18.69,31.61,1,0.04,6112,107.474858,116.060897,125.822471,128.859516,I,Above,Gable,0,5701,,25.14797154,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 12160,NJBF000091342,32 PARK AVE,Folsom,NJ,39.60379581,-74.87667892,RES1,3001,,16,NE,1976,1976,3101,1,1,1932.891563,1932.891563,3507,NO,19.71,32.12,1,0.85,6112,107.488321,116.074642,125.837129,128.880941,I,Above,Gable,0,5701,,25.9155689,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12161,NJBF000091345,30 PARK AVE,Folsom,NJ,39.60384721,-74.87692008,RES1,3001,,16,NE,1976,1976,3101,1,1,1232.044787,1232.044787,3507,NO,21.55,30.17,1,2.69,6112,107.486479,116.072523,125.834949,128.877804,I,Above,Gable,0,5701,,25.8602914,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12162,NJBF000091344,6 S RIVER DR,Folsom,NJ,39.60383976,-74.87339443,RES1,3001,,16,NE,1972,1972,3101,1,1,1393.928514,1393.928514,3507,NO,20.11,33.84,1,2.99,6112,107.511426,116.098166,125.862217,128.91776,I,Above,Hip,0,5701,,26.97489119,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12163,NJBF000091347,,Folsom,NJ,39.60379297,-74.88321049,COM1,NaN,,NaN,ME,1969,0,3401,1,1,756.0948184,756.0948184,NaN,NO,17.29,32.07,1,-0.73,6112,107.442554,116.027593,125.787032,128.808031,I,Above,Flat,0,5701,,24.6809105,0,0,,,,1,1,NumberofStories0 manually entered based on street-level imagery.,1,nav,1,1969,1,, 12164,NJBF000091348,15 E PARK AVE,Folsom,NJ,39.60389718,-74.8791459,RES1,3001,,16,NE,1960,1960,3101,2,1,1642.081201,1642.081201,3507,NO,33.02,43.81,1,1.36,6112,107.470683,116.056071,125.817511,128.852407,I,Above,Gable,0,5701,,38.41137262,0,0,,,,1,1,,0.35,nav,1,1960,2,, 12165,NJBF000091350,28 PARK AVE,Folsom,NJ,39.60392057,-74.87718598,RES1,3001,,16,NE,1976,1976,3101,1,1,1731.270601,1731.270601,3507,NO,20.28,27.65,1,1.76,6112,107.484397,116.070054,125.832432,128.874199,I,Above,Gable,0,5701,,23.96633607,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12166,NJBF000091351,8 S RIVER DR,Folsom,NJ,39.60393575,-74.87318235,RES1,3001,,16,NE,1972,1972,3101,1,1,1925.131322,1925.131322,3507,NO,21.52,27.74,1,2.44,6112,107.512661,116.098998,125.863247,128.91937,I,Above,Gable,0,5701,,24.6262242,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12167,NJBF000091354,26 PARK AVE,Folsom,NJ,39.60397293,-74.87746361,RES1,3001,,16,NE,1976,1976,3101,1,1,1655.639792,1655.639792,3507,NO,22.19,28.36,1,2.91,6112,107.482293,116.067662,125.829962,128.870644,I,Above,Gable,0,5701,,25.27726355,0,0,,,,1,1,,0.35,nav,1,1976,1,, 12168,NJBF000091353,13 E PARK AVE,Folsom,NJ,39.60397262,-74.87935062,RES1,3001,,16,NE,1975,1975,3101,1,1,1887.335231,1887.335231,3507,NO,16.85,27.19,1,1.93,6112,107.46903,116.054037,125.815456,128.849489,I,Above,Flat,0,5701,,22.01731442,0,0,,,,1,1,,0.35,nav,1,1975,1,, 12169,NJBF000091356,5 N RIVER DR,Folsom,NJ,39.60400065,-74.87609772,RES1,3001,,16,NE,1956,1956,3101,1,1,1255.321123,1255.321123,3507,NO,19.73,28.69,1,2.39,6112,107.491844,116.077343,125.840308,128.885795,I,Above,Gable,0,5701,,24.21194057,0,0,,,,1,1,,0.35,nav,1,1956,1,, 12170,NJBF000091360,24 PARK AVE,Folsom,NJ,39.60403571,-74.87770887,RES1,3001,,16,NE,1976,1976,3101,1,1,1618.826855,1618.826855,3507,NO,20.24,28.98,1,2.78,6112,107.480391,116.065429,125.827678,128.867372,I,Above,Gable,0,5701,,24.60930847,0,1.1,,,,1,1,,0.35,nav,1,1976,1,, 12171,NJBF000091358,24 S RIVER DR,Folsom,NJ,39.604022,-74.87080451,RES1,3001,,16,NE,1972,1972,3101,1,1,2306.091967,2306.091967,3507,NO,19.02,27.42,1,-0.03,6112,107.529322,116.115692,125.881125,128.945778,I,Above,Hip,0,5701,,23.2190025,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12172,NJBF000091359,20 S RIVER DR,Folsom,NJ,39.60402532,-74.87140044,RES1,3001,,16,NE,1972,1972,3101,1,1,1648.861382,1648.861382,3507,NO,18.47,23.62,1,1.01,6112,107.525076,116.111326,125.876489,128.938946,I,Above,Hip,0,5701,,21.04524309,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12173,NJBF000091357,22 S RIVER DR,Folsom,NJ,39.60402121,-74.87107477,RES1,3001,,16,NE,1972,1972,3101,1,1,1911.568019,1911.568019,3507,NO,18.87,24.1,1,0.23,6112,107.527401,116.113728,125.879036,128.942696,I,Above,Flat,0,5701,,21.48492805,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12174,NJBF000091361,5 PARK AVE,Folsom,NJ,39.60405773,-74.88042387,RES1,3001,,16,NE,1960,1960,3101,2,1,968.3801806,968.3801806,3507,NO,22.2,28.58,1,-0.57,6112,107.461268,116.045686,125.806687,128.836813,I,Above,Flat,0,5701,,25.38774163,0,0,,,,1,1,,0.35,nav,1,1960,2,, 12175,NJBF000091363,26 S RIVER DR,Folsom,NJ,39.60405901,-74.87051591,RES1,3001,,16,NE,1972,1972,3101,1,1,1462.751703,1462.751703,3507,NO,14.4,22.47,1,0.6,6112,107.531279,116.117528,125.883133,128.948777,I,Above,Hip,0,5701,,18.43358684,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12176,NJBF000091362,10 S RIVER DR,Folsom,NJ,39.60405825,-74.87296156,RES1,3001,,16,NE,1972,1972,3101,1,1,1897.016876,1897.016876,3507,NO,13.07,21.45,1,0.11,6112,107.51388,116.099696,125.864174,128.920855,I,Above,Flat,0,5701,,17.25937796,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12177,NJBF000091364,28 S RIVER DR,Folsom,NJ,39.60408455,-74.87027984,RES1,3001,,16,NE,1972,1972,3101,1,1,2300.268052,2300.268052,3507,NO,17.88,30.45,1,-0.08,6112,107.532889,116.119059,125.8848,128.951263,I,Above,Hip,0,5701,,24.16749265,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12178,NJBF000091367,34 S RIVER DR,Folsom,NJ,39.60410697,-74.86933143,RES1,3001,,16,NE,1971,1971,3101,1,1,1578.101991,1578.101991,3507,NO,20.22,33.41,1,1.34,6112,107.539603,116.125837,125.892036,128.961972,I,Above,Gable,0,5701,,26.81132695,0,0,,,,1,1,,0.35,nav,1,1971,1,, 12179,NJBF000091366,18 S RIVER DR,Folsom,NJ,39.60410647,-74.87172071,RES1,3001,,16,NE,1972,1972,3101,1,1,1821.417371,1821.417371,3507,NO,15.62,20.93,1,2.89,6112,107.522565,116.108382,125.873483,128.9346,I,Above,Hip,0,5701,,18.27593928,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12180,NJBF000091373,5 N RIVER DR,Folsom,NJ,39.60415596,-74.87603414,RES1,3001,,16,NE,1956,1956,3101,1,1,580.6405173,580.6405173,3507,NO,15.16,21.82,1,-0.72,6110,107.49186,116.076667,125.839818,128.885234,I,Above,Gable,0,5701,,18.49380324,0,0,,,,1,1,,0.35,nav,1,1956,1,, 12181,NJBF000091371,32 S RIVER DR,Folsom,NJ,39.60414523,-74.86967534,RES1,3001,,16,NE,1972,1972,3101,1,1,1526.733512,1526.733512,3507,NO,15.2,28.01,1,-0.6,6112,107.537039,116.123036,125.889119,128.9577,I,Above,Gable,0,5701,,21.60401152,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12182,NJBF000091370,23 N RIVER DR,Folsom,NJ,39.60412612,-74.87662828,RES1,3001,,16,NE,1974,1974,3101,1,1,2101.560481,2101.560481,3507,NO,18.53,31.31,1,0.29,6112,107.487753,116.072586,125.835431,128.878787,I,Above,Flat,0,5701,,24.91664802,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 12183,NJBF000091369,30 S RIVER DR,Folsom,NJ,39.60411918,-74.87000504,RES1,3001,,16,NE,1972,1972,3101,1,1,2564.891272,2564.891272,3507,NO,14.94,20.16,1,1.05,6112,107.534756,116.120816,125.88672,128.954131,I,Above,Hip,0,5701,,17.55007767,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12184,NJBF000091374,16 S RIVER DR,Folsom,NJ,39.60416092,-74.87199784,RES1,3001,,16,NE,1972,1972,3101,1,1,1896.053332,1896.053332,3507,NO,20.02,29.8,1,1.78,6112,107.520441,116.105955,125.870985,128.930978,I,Above,Gable,0,5701,,24.91141184,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12185,NJBF000091376,BLACK HORSE PK,Folsom,NJ,39.60379297,-74.88321049,COM1,NaN,,NaN,ME,1969,0,3401,1,1,1544.17938,1544.17938,NaN,NO,14.21,22.99,1,1.98,6112,107.442554,116.027593,125.787032,128.808031,I,Above,Flat,0,5701,,18.60069746,0,0,,,,1,1,,1,nav,1,1969,1,, 12186,NJBF000091375,12 S RIVER DR,Folsom,NJ,39.60416441,-74.87269326,RES1,3001,,16,NE,1972,1972,3101,1,1,2562.964275,2562.964275,3507,NO,14.46,19.91,1,2.85,6112,107.515493,116.10087,125.865582,128.923032,I,Above,Hip,0,5701,,17.18603948,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12187,NJBF000091377,7 E PARK AVE.,Folsom,NJ,39.60420245,-74.88015731,RES1,3001,,16,NE,1960,1960,3101,1,1,733.8034015,733.8034015,3507,NO,12.58,22.41,1,-0.93,6110,107.462732,116.046558,125.807826,128.838611,I,Above,Gable,0,5701,,17.49643119,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12188,NJBF000091378,14 S RIVER DR,Folsom,NJ,39.60421865,-74.87230216,RES1,3001,,16,NE,1972,1972,3101,1,1,1610.095435,1610.095435,3507,NO,19.57,28.86,1,1.04,6112,107.518117,116.103309,125.86826,128.927026,I,Above,Gable,0,5701,,24.213504,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12189,NJBF000091380,16 E PARK AVE,Folsom,NJ,39.60425484,-74.87875954,RES1,3001,,16,NE,1968,1968,3101,2,1,2199.780527,2199.780527,3507,NO,25.58,35.09,1,-0.22,6110,107.472384,116.056237,125.818213,128.853785,I,Above,Gable,0,5701,,30.33626258,0,0,,,,1,1,,0.35,nav,1,1968,2,, 12190,NJBF000091381,5 PARK AVE,Folsom,NJ,39.60427034,-74.88038844,RES1,3001,,16,NE,1960,1960,3101,2,1,1453.061927,1453.061927,3507,NO,31.52,43.4,1,1.14,6112,107.460922,116.0444,125.805626,128.835479,I,Above,Gable,0,5701,,37.46184277,0,0,,,,1,1,,0.35,nav,1,1960,2,, 12191,NJBF000091384,3 PARK AVE,Folsom,NJ,39.60432638,-74.88063176,RES1,3001,,16,NE,1960,1960,3101,1,1,1260.16416,1260.16416,3507,NO,17.55,23.5,1,-0.1,6112,107.459055,116.042236,125.803402,128.832303,I,Above,Gable,0,5701,,20.52946487,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12192,NJBF000091383,21 N RIVER DR,Folsom,NJ,39.60431119,-74.87655698,RES1,3001,,16,NE,1974,1974,3101,1,1,1401.69049,1401.69049,3507,NO,14.81,27.6,1,2.87,6112,107.487734,116.07174,125.834805,128.878057,I,Above,Gable,0,5701,,21.20600102,0,0,,,,1,1,,0.35,nav,1,1974,1,, 12193,NJBF000091392,19 N RIVER DR,Folsom,NJ,39.60450339,-74.87648138,RES1,3001,,16,NE,1974,1974,3101,1,1,1472.448757,1472.448757,3507,NO,20.67,34.09,1,1.19,6112,107.48773,116.070879,125.834174,128.877325,I,Above,Gable,0,5701,,27.37767668,0,0,,,,1,1,,0.35,nav,1,1974,1,, 12194,NJBF000091419,24 CAINS MILL RD,Folsom,NJ,39.60498047,-74.8806212,RES1,3001,,16,NE,1972,1972,3101,1,1,1506.371726,1506.371726,3507,NO,12.5,21.16,1,0.67,6112,107.457287,116.037548,125.799363,128.827074,I,Above,Gable,0,5701,,16.83168434,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12195,NJBF000091428,22 CAINS MILL RD,Folsom,NJ,39.60518826,-74.88057528,RES1,3001,,16,NE,1972,1972,3101,1,1,1536.413294,1536.413294,3507,NO,11.23,20.6,1,-0.65,6112,107.457022,116.036361,125.798404,128.825884,I,Above,Gable,0,5701,,15.91749577,0,0,,,,1,1,,0.35,nav,1,1972,1,, 12196,NJBF000091565,1328 MAYS LANDING RD,Folsom,NJ,39.61031883,-74.84809787,RES1,3001,,15,NE,1876,1876,3101,2,1,1172.084276,1172.084276,3507,NO,34.71,43.6,1,2.35,6112,107.677306,116.235599,126.018875,129.157712,I,Above,Gable,0,5701,,39.15655442,0,0,,,,1,1,,0.35,nav,1,1876,2,, 12197,NJBF000091569,1328 MAYS LANDING RD,Folsom,NJ,39.61049552,-74.84755522,RES1,3001,,15,NE,1876,1876,3101,2,1,916.0359735,916.0359735,3507,NO,26.89,39.18,1,1.33,6112,107.680867,116.238286,126.022038,129.162655,I,Above,Gable,0,5701,,33.03383593,0,0,,,,1,1,,0.35,nav,1,1876,2,, 12198,NJBF000091576,1328 MAYS LANDING RD,Folsom,NJ,39.61078409,-74.84759713,RES1,3001,,15,NE,1876,1876,3101,2,1,1678.918456,1678.918456,3507,NO,21.41,33.39,1,-0.05,6112,107.679761,116.235715,126.019822,129.159558,I,Above,Gable,0,5701,,27.39763212,0,0,,,,1,1,,0.15,nav,1,1876,2,, 12199,NJBF000091595,1326 MAYS LANDING RD,Folsom,NJ,39.61139871,-74.84834071,RES1,3001,,16,NE,1986,1986,3101,1,1,3571.53457,3571.53457,3507,NO,17.38,26.69,1,0.03,6112,107.672523,116.225326,126.009895,129.145098,I,Above,Gable,0,5701,,22.03226879,0,0,,,,1,1,,0.15,nav,1,1986,1,, 12200,NJBF000091661,1312 MAYS LANDING RD,Folsom,NJ,39.61324499,-74.85008432,RES1,3001,,16,NE,1978,1978,3101,1,1,1872.763648,1872.763648,3507,NO,10.26,24,1,-0.35,6112,107.654466,116.197898,125.984061,129.107781,I,Above,Gable,0,5701,,17.12987598,0,0,,,,1,1,,0.35,nav,1,1978,1,, 12201,NJBF000091679,1310 MAYS LANDING RD,Folsom,NJ,39.61354228,-74.85029354,RES1,3001,,16,NE,1965,1965,3101,1,1,2752.946595,2752.946595,3507,NO,13.24,20.28,1,-0.87,6112,107.652086,116.194019,125.98047,129.102639,I,Above,Gable,0,5701,,16.75972702,0,0,,,,1,1,,0.35,nav,1,1965,1,, 12202,NJBF000091685,1310 MAYS LANDING RD,Folsom,NJ,39.61380043,-74.85017299,RES1,3001,,16,NE,1965,1965,3101,1,1,1811.718577,1811.718577,3507,NO,13.54,28.25,1,2.38,6109,107.652272,116.1929,125.979749,129.101774,I,Above,Gable,0,5701,,20.89662967,0,0,,,,1,1,,0.03,nav,1,1965,1,, 12203,NJBF000091727,1304 MAYS LANDING RD,Folsom,NJ,39.61475332,-74.85079045,RES1,3001,,16,NE,1966,1966,3101,1,1,1981.381264,1981.381264,3507,NO,17.25,30.34,1,2.33,6112,107.645055,116.180883,125.968687,129.08598,I,Above,Gable,0,5701,,23.79433155,0,0,,,,1,1,,0.03,nav,1,1966,1,, 12204,NJBF000091368,9 E PARK AVE,Folsom,NJ,39.60411312,-74.87988132,RES1,3001,,16,NE,1960,1960,3101,1,1,1670.123511,1670.123511,3507,NO,13.44,20.38,1,0.36,6112,107.464918,116.049195,125.810504,128.84242,I,Above,Flat,0,5701,,16.90715147,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12205,NJBF000083250,1111 SHELBURNE AVE,Galloway,NJ,39.44029794,-74.51607199,RES1,3001,,17,NE,1967,1967,3102,1,1,1857.852223,1857.852223,3505,NO,21.19,28.16,3,8.58,6112,112.051064,121.829059,131.421027,137.513847,I,Above,Gable,0,5701,,24.67352854,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 12206,NJBF000083234,345 E WHITE HORSE PIKE,Galloway,NJ,39.44002337,-74.51922424,RES4,3001,218,NaN,ME,1959,1959,3401,1,1,709.2436621,709.2436621,3507,NO,11.13,25.55,1,0.61,6112,111.989561,121.777489,131.364497,137.455973,I,Above,Flat,0,NaN,,18.34300615,0,0,,,,1,1,,1,nav,1,1959,1,, 12207,NJBF000085646,101 VERA KING FARRIS DR,Galloway,NJ,39.49795458,-74.52913098,EDU2,3003,,NaN,E,1969,0,3401,2,1,7126.090017,7126.090017,3507,NO,37.37,49.73,1,1.48,6112,111.554635,121.004894,130.569199,136.352411,I,Above,Gable,0,NaN,,43.54891133,0,0,,,,1,1,,1,nav,1,1969,2,, 12208,NJBF000085643,STOCKTON STATE COLLEGE,Galloway,NJ,39.49792365,-74.52988364,EDU2,3003,,NaN,E,1969,0,3401,3,1,7116.180782,7116.180782,3507,NO,44.46,58.76,1,0.91,6112,111.54178,120.99287,130.556608,136.337685,I,Above,Flat,0,NaN,,51.60794904,0,0,,,,1,1,,1,nav,1,1969,3,, 12209,NJBF000085883,228 S MANNHEIM AVE,Galloway,NJ,39.50482245,-74.57180384,RES1,3001,,16,NE,1950,1950,3102,1,1,880.4478482,880.4478482,3507,NO,16.09,24.49,1,2.61,6112,110.831084,120.2565,129.808796,135.380312,I,Above,Gable,0,NaN,,20.29037529,0,0,,,,1,1,,0.15,nav,1,1950,1,, 12210,NJBF000083237,1104 MARLBOROUGH AVE,Galloway,NJ,39.44004104,-74.51626002,RES1,3001,,17,NE,1956,1956,3102,2,1,1639.906884,1639.906884,3505,NO,44.73,51.47,3,8.65,6112,112.048692,121.828453,131.420344,137.51418,I,Above,Gable,0,5701,,48.10243607,0,0,,,,1,1,,0.35,nav,1,1956,2,, 12211,NJBF000084169,493 HOLLY AVE,Galloway,NJ,39.4573796,-74.54343169,RES1,3001,,16,NE,1948,1948,3101,1,1,1648.654808,1648.654808,3507,NO,11.78,23.33,1,0.19,6112,111.447795,121.19141,130.730178,136.699568,I,Above,Gable,0,5701,,17.55251841,0,0,,,,1,1,,0.35,nav,1,1948,1,, 12212,NJBF000085569,161 S POMONA RD,Galloway,NJ,39.46873647,-74.46164931,RES1,3001,,16,NE,1961,1961,3101,1,1,581.2669853,581.2669853,3507,NO,18.86,32.4,1,2.16,6112,112.952723,122.490519,132.149008,138.134439,I,Above,Gable,0,5701,,25.62901004,0,0,,,,1,1,,0.35,nav,1,1961,1,, 12213,NJBF000086111,427 HERSCHEL ST,Galloway,NJ,39.50800283,-74.56551634,RES1,3001,,16,NE,1980,1980,3102,2,2,739.9626895,739.9626895,3504,NO,30.68,36.05,-4,0,6112,110.92126,120.319656,129.875545,135.458077,I,Above,Gable,0,5701,,33.36504753,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 12214,NJBF000082468,587 FOURTH ST,Galloway,NJ,39.43022347,-74.48422973,RES1,3001,,17,NE,1984,1984,3102,2,1,1861.621821,1861.621821,3507,NO,30.05,43.4,1,2.21,6112,112.764008,122.49356,132.149009,138.288037,I,Above,Gable,0,5701,,36.72758615,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 12215,NJBF000085568,161 S POMONA RD,Galloway,NJ,39.49380778,-74.54191727,RES1,3001,,16,NE,1961,1961,3101,1,1,1730.186014,1730.186014,3507,NO,19.09,25.85,1,0.45,6112,111.350628,120.840847,130.394192,136.158695,I,Above,Gable,0,5701,,22.4726059,0,0,,,,1,1,,0.35,nav,1,1961,1,, 12216,NJBF000086171,605 MOTTS CREEK RD,Galloway,NJ,39.51154317,-74.47187899,RES1,3001,,16,NE,1810,1810,3102,2,1,2229.520873,2229.520873,3507,NO,39.84,51.92,1,1.27,6112,112.499651,121.829979,131.440883,137.294579,I,Above,Hip,0,5701,,45.88014765,0,1.1,,,,1,1,,0.35,nav,1,1810,2,, 12217,NJBF000087599,31 N FRANKFURT AVE,Galloway,NJ,39.53737186,-74.59263172,RES1,3001,,16,NE,1948,1948,3101,1,1,2567.279938,2567.279938,3507,NO,18.25,28.15,1,2.53,6112,110.44157,119.609627,129.205404,134.450669,I,Above,Gable,0,5701,,23.20199741,0,0,,,,1,1,,0.35,nav,1,1948,1,, 12218,NJBF000086572,131 S MANNHEIM AVE,Galloway,NJ,39.5151987,-74.56496136,RES1,3001,,16,NE,1976,1976,3101,2,1,574.0628636,574.0628636,3507,NO,32.86,41.5,1,1.42,6112,110.909973,120.252392,129.815375,135.356699,I,Above,Gable,0,5701,,37.17843266,0,0,,,,1,1,,0.03,nav,1,1976,2,, 12219,NJBF000078649,1006 BAYSHORE AVE,Galloway,NJ,39.40670066,-74.37322002,RES1,3001,,21,NE,2015,2015,3102,3,1,1546.841945,1546.841945,3507,YES,55,69.14,1,1.64,6106,115.276688,124.790389,134.694781,140.557364,I,Above,Hip,0,5701,,62.07187035,0,0,,,,1,1,,0.03,nav,1,2015,3,, 12220,NJBF000076588,4241 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39399387,-74.40456648,RES1,3001,,18,NE,2005,2005,3102,3,1,2284.732135,2284.732135,3505,NO,35.87,49.89,3,0.36,6106,114.76624,124.330552,134.170152,140.223981,I,Above,Hip,0,5701,,42.88098741,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 12221,NJBF000081792,1406 E SHORE DR,Galloway,NJ,39.4230161,-74.3661573,RES1,3001,,17,NE,1990,1990,3102,2,1,1893.141588,1893.141588,3507,NO,26.83,35.25,1,2.8,6106,115.25109,124.762364,134.670139,140.463756,I,Above,Gable,0,5701,,31.04154061,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 12222,NJBF000080553,132 ROOSEVELT BLVD NO,Galloway,NJ,39.41540167,-74.37016793,RES1,3001,,15,NE,1955,1955,3102,1,1,1359.58604,1359.58604,3507,NO,12.99,22.75,1,-0.28,6106,115.247942,124.761595,134.666656,140.495355,I,Above,Hip,0,5701,,17.86774215,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12223,NJBF000081338,933 N SHORE DR,Galloway,NJ,39.41870598,-74.3769079,RES1,3001,,16,NE,1962,1962,3103,1,1,1581.35535,1581.35535,3505,NO,18.57,27.43,3,1.72,6106,115.078004,124.600222,134.485778,140.344044,I,Above,Hip,0,5701,,22.99901214,0,0,,,,1,1,,0.03,nav,1,1962,1,, 12224,NJBF000080772,14 VARDON RD,Galloway,NJ,39.416249,-74.3729575,RES1,3001,,16,NE,1985,1985,3102,1,1,1460.463919,1460.463919,3507,NO,12.58,17.92,1,-0.05,6106,115.182908,124.700043,134.597477,140.439653,I,Above,Gable,0,5701,,15.2525439,0,0,,,,1,1,,0.03,nav,1,1985,1,, 12225,NJBF000076444,351 31ST STREET SO,Galloway,NJ,39.3934295,-74.3836815,RES1,3001,,19,NE,2010,2010,3102,3,1,2163.908488,2163.908488,3507,NO,56.39,62.75,1,2.68,6106,115.205165,124.726333,134.613338,140.563121,I,Above,Gable,0,5701,,59.57207634,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 12226,NJBF000079359,304 LAFAYETTE PLACE,Galloway,NJ,39.41079566,-74.36813456,RES1,3001,,18,NE,2005,2005,3102,2,1,1970.698717,1970.698717,3507,NO,25.55,31.49,1,1.24,6106,115.336749,124.846092,134.760021,140.586172,I,Above,Gable,0,5701,,28.51711682,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 12227,NJBF000080615,131 ROOSEVELT BLVD NO,Galloway,NJ,39.41562635,-74.3697232,RES1,3001,,16,NE,1966,1966,3102,2,1,1216.877402,1216.877402,3507,NO,35.69,44.23,1,1.63,6106,115.254622,124.767838,134.673805,140.499661,I,Above,Gable,0,5701,,39.96053437,0,0,,,,1,1,,0.03,nav,1,1966,2,, 12228,NJBF000080635,8 VARDON RD,Galloway,NJ,39.41570252,-74.37282403,RES1,3001,,16,NE,1982,1982,3102,1,1,1385.046627,1385.046627,3507,NO,16.7,22.88,1,-0.22,6106,115.191186,124.708032,134.606278,140.448775,I,Above,Gable,0,5701,,19.79053234,0,0,,,,1,1,,0.03,nav,1,1982,1,, 12229,NJBF000077260,2604 REVERE BLVD,Galloway,NJ,39.39753876,-74.3833878,RES1,3001,,17,NE,2004,2004,3102,2,1,2636.587531,2636.587531,3507,NO,26.18,33.28,1,-0.28,6106,115.166607,124.690476,134.576113,140.514357,I,Above,Hip,0,5701,,29.72802876,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 12230,NJBF000081117,726 SHERIDAN BLVD,Galloway,NJ,39.4176075,-74.3664295,RES1,3001,,16,NE,1980,1980,3102,2,1,1075.617527,1075.617527,3507,NO,27.15,34.14,1,1.85,6106,115.30065,124.810941,134.723335,140.527503,I,Above,Flat,0,5701,,30.64301063,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 12231,NJBF000081105,724 SHERIDAN BLVD,Galloway,NJ,39.41756186,-74.36623575,RES1,3001,,16,NE,1980,1980,3102,2,1,1033.27962,1033.27962,3507,NO,23.57,35.81,1,-0.06,6106,115.305005,124.815083,134.728003,140.53118,I,Above,Gable,0,5701,,29.68865952,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 12232,NJBF000078625,1033 BAYSHORE AVE,Galloway,NJ,39.40655812,-74.37377799,RES1,3001,,18,NE,1997,1997,3102,2,1,2337.471621,2337.471621,3507,NO,29.05,42.27,1,-0.52,6102,115.266858,124.781253,134.68438,140.550329,I,Above,Hip,0,5701,,35.66037661,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 12233,NJBF000079513,423 LAFAYETTE BLVD,Galloway,NJ,39.411467,-74.3706675,RES1,3001,,16,NE,1965,1965,3102,1,1,1275.84863,1275.84863,3507,NO,14.49,26.09,1,-0.07,6106,115.278555,124.791306,134.698419,140.537339,I,Above,Gable,0,5701,,20.29181156,0,0,,,,1,1,,0.03,nav,1,1965,1,, 12234,NJBF000081431,216 WASHINGTON DR,Galloway,NJ,39.41918298,-74.36978369,RES1,3001,,16,NE,1970,1970,3102,2,1,2083.28362,2083.28362,3507,YES,34.71,47.48,1,1.91,6106,115.217018,124.731213,134.633767,140.453537,I,Above,Gable,0,5701,,41.09341583,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 12235,NJBF000081841,1411 E SHORE DR,Galloway,NJ,39.42360405,-74.36582721,RES1,3001,,16,NE,1967,1967,3102,2,1,2138.598444,2138.598444,3507,NO,37.53,50.76,1,0.04,6106,115.251775,124.762833,134.670821,140.461699,I,Above,Gable,0,5701,,44.14465884,0,0,,,,1,1,,0.03,nav,1,1967,2,, 12236,NJBF000081450,,Galloway,NJ,39.41927268,-74.36206685,RES1,3001,,NaN,NE,1969,0,3102,2,1,2434.710334,2434.710334,3507,NO,35.29,48.23,1,1.75,6106,115.371191,124.877828,134.799661,140.576578,I,Above,Flat,0,5701,,41.76029707,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12237,NJBF000078334,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,3855.540223,3855.540223,3505,NO,28.56,40.94,3,0.66,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,34.74794059,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12238,NJBF000080083,115 10TH STREET NO,Galloway,NJ,39.41386432,-74.3585592,RES1,3001,,47,NE,1959,1959,3102,2,2,1675.354391,1675.354391,3507,YES,23.5,32.76,1,-0.23,6106,115.497464,124.998239,134.93393,140.699614,I,Above,Flat,0,5701,,28.13164074,0,0,,,,1,1,,0.03,nav,1,1959,2,, 12239,NJBF000080109,1102 E BEACH AVE,Galloway,NJ,39.4139485,-74.357222,RES1,3001,,17,NE,1950,1950,3102,2,1,1090.49037,1090.49037,3507,NO,25.21,39.12,1,0.71,6106,115.523382,125.022958,134.962024,140.719693,I,Above,Gable,0,5701,,32.16481577,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 12240,NJBF000081632,1218 E SHORE DR,Galloway,NJ,39.42108593,-74.36516351,RES1,3001,,18,NE,2007,2007,3102,3,1,1606.14754,1606.14754,3507,NO,45.33,55.71,1,-0.86,6106,115.290566,124.800573,134.712802,140.504093,I,Above,Hip,0,5701,,50.51764367,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 12241,NJBF000081659,1224 E SHORE DR,Galloway,NJ,39.42148927,-74.36530087,RES1,3001,,17,NE,1981,1981,3102,2,1,1029.725029,1029.725029,3507,NO,33.42,42.54,1,0.07,6106,115.283723,124.793946,134.705426,140.496816,I,Above,Gable,0,5701,,37.98163516,0,0,,,,1,1,,0.03,nav,1,1981,2,, 12242,NJBF000081585,219 HAGEN RD,Galloway,NJ,39.42056072,-74.36682748,RES1,3001,,17,NE,1988,1988,3102,2,1,1545.052682,1545.052682,3507,NO,31.52,39.11,1,-0.05,6106,115.262505,124.773976,134.682556,140.483868,I,Above,Gable,0,5701,,35.31880687,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 12243,NJBF000081397,1 SPALDING PLACE,Galloway,NJ,39.41902575,-74.36308062,RES1,3001,,17,NE,1987,1987,3102,2,1,2250.897112,2250.897112,3507,NO,31.47,41.7,1,-0.96,6106,115.353385,124.860867,134.780364,140.563415,I,Above,Hip,0,5701,,36.58233153,0,0,,,,1,1,,0.03,nav,1,1987,2,, 12244,NJBF000081388,214 WASHINGTON DR,Galloway,NJ,39.41898265,-74.36965016,RES1,3001,,16,NE,1971,1971,3102,2,1,2001.177347,2001.177347,3507,YES,34.28,43.96,1,1.92,6106,115.221753,124.735766,134.638842,140.458241,I,Above,Gable,0,5701,,39.11943533,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 12245,NJBF000081451,,Galloway,NJ,39.41927676,-74.37017705,RES1,3001,,NaN,NE,1969,0,3102,2,1,3110.771685,3110.771685,3507,NO,37.5,49.34,1,1.79,6106,115.208144,124.722774,134.624266,140.445988,I,Above,Gable,0,5701,,43.41803469,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12246,NJBF000081391,1001 N SHORE DR,Galloway,NJ,39.41899558,-74.37605539,RES1,3001,,17,NE,1989,1989,3103,2,1,1938.777987,1938.777987,3505,NO,38.04,51.92,3,8.78,6106,115.092331,124.613544,134.500895,140.354198,I,Above,Gable,0,5701,,44.97857636,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 12247,NJBF000081400,217 ROOSEVELT BLVD NO,Galloway,NJ,39.41903188,-74.37010746,RES1,3001,,18,NE,2012,2012,3102,2,1,2821.925025,2821.925025,3507,NO,28.99,41.42,1,0.06,6106,115.212046,124.726555,134.628453,140.450233,I,Above,Hip,0,5701,,35.2053421,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 12248,NJBF000081513,1021 N SHORE DR,Galloway,NJ,39.41972355,-74.37434118,RES1,3001,,16,NE,1966,1966,3102,1,1,1493.970374,1493.970374,3507,NO,19.82,26.59,1,1.05,6106,115.119614,124.638887,134.529717,140.372739,I,Above,Gable,0,5701,,23.20738387,0,0,,,,1,1,,0.03,nav,1,1966,1,, 12249,NJBF000081503,1019 N SHORE DR,Galloway,NJ,39.41966079,-74.37449676,RES1,3001,,17,NE,1967,1967,3102,1,1,1455.806842,1455.806842,3507,NO,16.23,22.26,1,2.46,6106,115.1171,124.636546,134.527056,140.371009,I,Above,Gable,0,5701,,19.24549887,0,0,,,,1,1,,0.03,nav,1,1967,1,, 12250,NJBF000081378,1000 E SHORE DR,Galloway,NJ,39.41894817,-74.36271908,RES1,3001,,16,NE,1972,1972,3102,1,1,2093.951198,2093.951198,3507,NO,10.68,22.9,1,-0.71,6106,115.361447,124.868565,134.789055,140.570192,I,Above,Hip,0,5701,,16.79019512,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 12251,NJBF000081412,1002 FOWNES AVE,Galloway,NJ,39.41905659,-74.36407236,RES1,3001,,16,NE,1968,1968,3102,1,1,1340.536517,1340.536517,3507,NO,14.03,23.27,1,2.03,6106,115.333179,124.841603,134.758565,140.547131,I,Above,Gable,0,5701,,18.65194517,0,0,,,,1,1,,0.03,nav,1,1968,1,, 12252,NJBF000080339,,Galloway,NJ,39.41476559,-74.36833207,RES1,3001,,NaN,NE,1969,0,3102,2,1,1430.492289,1430.492289,3507,NO,30.2,45,1,2.4,6106,115.291547,124.802895,134.713071,140.532861,I,Above,Hip,0,5701,,37.60248248,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12253,NJBF000080346,,Galloway,NJ,39.41478582,-74.36815991,RES1,3001,,NaN,NE,1969,0,3102,2,1,560.7730759,560.7730759,3507,NO,25.55,35.9,1,2.9,6106,115.29481,124.805973,134.71656,140.535362,I,Above,Flat,0,5701,,30.7238255,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12254,NJBF000080763,32 12TH STREET NO,Galloway,NJ,39.41620888,-74.35964587,RES1,3001,,16,NE,1957,1957,3102,1,1,1689.455588,1689.455588,3507,NO,15.15,27.5,1,0.59,6106,115.451293,124.954391,134.88525,140.653332,I,Above,Gable,0,5701,,21.3265223,0,0,,,,1,1,,0.03,nav,1,1957,1,, 12255,NJBF000081366,220 ROOSEVELT BLVD NO,Galloway,NJ,39.41886173,-74.3705843,RES1,3001,,16,NE,1964,1964,3102,2,1,1623.38154,1623.38154,3507,NO,35.37,47.25,1,-0.09,6106,115.204161,124.719151,134.62003,140.444682,I,Above,Gable,0,5701,,41.31283341,0,0,,,,1,1,,0.03,nav,1,1964,2,, 12256,NJBF000080264,903 E EVANS BLVD,Galloway,NJ,39.41448639,-74.36040371,RES1,3001,,17,NE,2012,2012,3102,2,1,1315.871842,1315.871842,3507,NO,34.43,41.21,1,2.11,6106,115.453973,124.95688,134.887311,140.662695,I,Above,Flat,0,5701,,37.82056488,0,0,,,,1,1,,0.03,nav,1,2012,2,, 12257,NJBF000080289,905 E EVANS BLVD,Galloway,NJ,39.41458211,-74.3602668,RES1,3001,,16,NE,1956,1956,3102,1,1,1546.25954,1546.25954,3507,NO,12.45,20.98,1,1.38,6106,115.455724,124.958551,134.889249,140.663674,I,Above,Flat,0,5701,,16.71703529,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12258,NJBF000080387,24 KIRKWOOD CIRCLE,Galloway,NJ,39.41489907,-74.36288396,RES1,3001,,16,NE,1985,1985,3102,2,1,1139.816016,1139.816016,3507,NO,38.1,46.29,1,2.97,6106,115.399873,124.905458,134.829216,140.618155,I,Above,Gable,0,5701,,42.19562725,0,0,,,,1,1,,0.03,nav,1,1985,2,, 12259,NJBF000080400,,Galloway,NJ,39.41492997,-74.35854316,RES1,3001,,NaN,NE,1969,0,3102,2,1,1974.547501,1974.547501,3507,NO,38.07,43.62,1,2.01,6106,115.486678,124.988065,134.922885,140.686676,I,Above,Flat,0,5701,,40.84340175,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12260,NJBF000080285,132 LINCOLN DR,Galloway,NJ,39.41456806,-74.37071443,RES1,3001,,16,NE,1973,1973,3102,3,1,1591.27974,1591.27974,3507,NO,35.67,43.17,1,1.62,6106,115.245499,124.759514,134.663947,140.497183,I,Above,Gable,0,5701,,39.41854199,0,1.2,,,,1,1,,0.03,nav,1,1973,3,, 12261,NJBF000081324,907 FOWNES AVE,Galloway,NJ,39.4186395,-74.363614,RES1,3001,,17,NE,1988,1988,3102,2,1,1058.416239,1058.416239,3507,NO,24.18,39.12,1,2.43,6106,115.346654,124.854504,134.773021,140.559714,I,Above,Gable,0,5701,,31.64735088,0,0,,,,1,1,,0.03,nav,1,1988,2,, 12262,NJBF000081198,1315 VARDON RD,Galloway,NJ,39.417989,-74.3744305,RES1,3001,,17,NE,1987,1987,3102,1,1,1753.341949,1753.341949,3507,NO,17.14,24.31,1,2.01,6106,115.135373,124.654565,134.546811,140.393527,I,Above,Gable,0,5701,,20.72659412,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 12263,NJBF000081218,1303 VARDON RD,Galloway,NJ,39.41809115,-74.37337317,RES1,3001,,17,NE,1986,1986,3102,2,1,1585.173566,1585.173566,3507,NO,34.69,46.88,1,-0.61,6106,115.155718,124.673692,134.568431,140.409372,I,Above,Gable,0,5701,,40.78529284,0,0,,,,1,1,,0.03,nav,1,1986,2,, 12264,NJBF000079182,12 FRANKLIN PLACE,Galloway,NJ,39.4099991,-74.36703946,RES1,3001,,16,NE,1973,1973,3102,2,1,1285.446063,1285.446063,3507,YES,38.25,46.3,1,0.5,6106,115.367231,124.87483,134.792111,140.613622,I,Above,Gable,0,5701,,42.27328444,0,0,,,,1,1,,0.03,nav,1,1973,2,, 12265,NJBF000078618,,Galloway,NJ,39.40652,-74.3654455,RES3B,3001,,NaN,ME,1969,0,3301,2,1,4284.745759,4284.745759,3507,NO,33.39,42.39,1,1.36,6106,115.436091,124.939529,134.863326,140.682489,I,Above,Hip,0,NaN,,37.89068133,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12266,NJBF000079178,9 FRANKLIN PLACE,Galloway,NJ,39.40998607,-74.36657973,RES1,3001,,18,NE,2004,2004,3102,2,1,1791.721921,1791.721921,3507,NO,24.01,31.94,1,2.51,6106,115.376637,124.883683,134.802122,140.621061,I,Above,Gable,0,5701,,27.97707926,0,0,,,,1,1,,0.03,nav,1,2004,2,, 12267,NJBF000081305,911 N SHORE DR,Galloway,NJ,39.41857223,-74.37887443,RES1,3001,,17,NE,2000,2000,3103,2,1,1866.670771,1866.670771,3505,NO,30.67,36.12,3,6.11,6106,115.039544,124.564177,134.445113,140.313717,I,Above,Flat,0,5701,,33.39271587,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 12268,NJBF000079431,508 RISLEY RD,Galloway,NJ,39.41110315,-74.37404619,RES1,3001,,16,NE,1978,1978,3102,1,1,1717.455335,1717.455335,3507,NO,9.81,15.94,1,-0.75,6106,115.213882,124.730789,134.62988,140.487951,I,Above,Gable,0,5701,,12.87599032,0,0,,,,1,1,,0.03,nav,1,1978,1,, 12269,NJBF000080127,111 10TH STREET NO,Galloway,NJ,39.41401153,-74.35871586,RES1,3001,,43,NE,1978,1978,3102,2,2,1100.216702,1100.216702,3507,NO,36.06,50.3,1,-0.18,6106,115.492772,124.993785,134.928948,140.6953,I,Above,Gable,0,5701,,43.18059278,0,0,,,,1,1,,0.03,nav,1,1978,2,, 12270,NJBF000080254,705 W SHORE DR,Galloway,NJ,39.41444993,-74.38047428,RES1,3001,,16,NE,2015,2015,3103,3,1,1572.952276,1572.952276,3505,NO,49.02,59.49,3,4.85,6106,115.048887,124.575302,134.456082,140.341138,I,Above,Flat,0,5701,,54.25601906,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 12271,NJBF000080272,114 12TH STREET NO,Galloway,NJ,39.41451784,-74.35754595,RES1,3001,,43,NE,1970,1970,3102,2,2,1332.386407,1332.386407,3507,NO,35.83,46.5,1,-0.27,6106,115.510945,125.01117,134.948914,140.707541,I,Above,Hip,0,5701,,41.16355291,0,0,,,,1,1,,0.03,nav,1,1970,2,, 12272,NJBF000080260,608 BOBBY JONES RD,Galloway,NJ,39.41447259,-74.37973924,RES1,3001,,18,NE,2004,2004,3103,1,1,2532.870915,2532.870915,3505,NO,23.77,34.68,3,6.01,6106,115.063592,124.589008,134.47153,140.352768,I,Above,Hip,0,5701,,29.22639465,0,1.1,,,,1,1,,0.03,nav,1,2004,1,, 12273,NJBF000081136,801 FOWNES AVE,Galloway,NJ,39.41768458,-74.36344575,RES1,3001,,17,NE,1989,1989,3102,2,1,1075.563169,1075.563169,3507,NO,22.69,31.34,1,-0.28,6106,115.359821,124.867164,134.787,140.574348,I,Above,Gable,0,5701,,27.013934,0,0,,,,1,1,,0.03,nav,1,1989,2,, 12274,NJBF000079592,,Galloway,NJ,39.41183157,-74.35811362,COM4,3001,,NaN,ME,2004,0,3401,3,1,6110.08511,6110.08511,3507,NO,43.81,56.44,1,-0.17,6106,115.527657,125.026695,134.965199,140.731756,I,Above,Flat,0,NaN,,50.12542512,0,0,,,,1,1,,0.03,nav,1,2004,3,, 12275,NJBF000079553,604 E BEACH AVE,Galloway,NJ,39.4116595,-74.360307,RES1,3001,,43,NE,1960,1960,3102,2,2,1368.452971,1368.452971,3507,NO,25.09,32.66,1,0.05,6106,115.485445,124.986571,134.919586,140.699338,I,Above,Gable,0,5701,,28.877293,0,0,,,,1,1,,0.03,nav,1,1960,2,, 12276,NJBF000079434,424 LAFAYETTE BLVD,Galloway,NJ,39.41111455,-74.37092472,RES1,3001,,16,NE,1958,1958,3102,2,1,1061.465961,1061.465961,3507,YES,24.13,32.7,1,1.52,6106,115.276997,124.789911,134.696665,140.537694,I,Above,Flat,0,5701,,28.4128812,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 12277,NJBF000081052,17 MACDERMOTT PLACE,Galloway,NJ,39.41736407,-74.36621968,RES1,3001,,18,NE,2009,2009,3102,2,1,2115.629965,2115.629965,3507,NO,24.66,30.98,1,0.6,6106,115.307359,124.817355,134.730497,140.53393,I,Above,Hip,0,5701,,27.81584406,0,1.2,,,,1,1,,0.03,nav,1,2009,2,, 12278,NJBF000081145,10 12TH STREET NO,Galloway,NJ,39.41775402,-74.36155213,RES1,3001,,16,NE,1957,1957,3102,1,1,1500.452202,1500.452202,3507,NO,20.26,33.21,1,0.98,6106,115.397121,124.902698,134.827277,140.60376,I,Above,Gable,0,5701,,26.73578902,0,0,,,,1,1,,0.03,nav,1,1957,1,, 12279,NJBF000081125,12 12TH STREET NO,Galloway,NJ,39.41764197,-74.36142134,RES1,3001,,17,NE,2007,2007,3102,3,1,1667.547296,1667.547296,3507,NO,38.94,44.36,1,0.84,6106,115.400902,124.90631,134.831327,140.607247,I,Above,Hip,0,5701,,41.65155297,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 12280,NJBF000080291,700 BOBBY JONES RD,Galloway,NJ,39.41458513,-74.38012185,RES1,3001,,16,NE,1969,1969,3103,1,1,2016.790862,2016.790862,3505,NO,20.87,27.23,3,3.16,6106,115.054665,124.580618,134.462125,140.3451,I,Above,Gable,0,5701,,24.05050632,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12281,NJBF000080759,702 SHERIDAN BLVD,Galloway,NJ,39.41618359,-74.36557351,RES1,3001,,17,NE,1998,1998,3102,1,1,1885.814922,1885.814922,3507,NO,13.35,18.7,1,1.48,6106,115.332492,124.841396,134.75723,140.559127,I,Above,Gable,0,5701,,16.02181514,0,1.1,,,,1,1,,0.03,nav,1,1998,1,, 12282,NJBF000080305,1201 E BEACH AVE,Galloway,NJ,39.41462396,-74.35705815,RES1,3001,,43,NE,1950,1950,3102,2,2,1175.787347,1175.787347,3507,NO,36.84,50.87,1,-0.99,6106,115.519613,125.019459,134.958372,140.713943,I,Above,Flat,0,5701,,43.85659744,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12283,NJBF000081270,849 W SHORE DR,Galloway,NJ,39.41841399,-74.38050424,RES1,3001,,16,NE,1978,1978,3103,2,1,1299.848527,1299.848527,3505,NO,39.51,53.7,3,1.6,6106,115.008089,124.534792,134.411964,140.289137,I,Above,Gable,0,5701,,46.60363598,0,0,,,,1,1,,0.03,nav,1,1978,2,, 12284,NJBF000081157,803 FOWNES AVE,Galloway,NJ,39.41780692,-74.36347032,RES1,3001,,17,NE,1987,1987,3102,3,1,1595.822886,1595.822886,3507,NO,34.11,39.72,1,2.37,6106,115.358085,124.865498,134.785159,140.572437,I,Above,Hip,0,5701,,36.91116115,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 12285,NJBF000081232,41 VARDON RD,Galloway,NJ,39.41820789,-74.37281082,RES1,3001,,NaN,NE,2000,1982,3102,2,1,1800.818894,1800.818894,3507,NO,28.22,40.52,1,1.88,6106,115.165879,124.683228,134.579236,140.41698,I,Above,Gable,0,5701,,34.37138028,0,0,,,,1,1,,0.03,nav,1,2000,2,, 12286,NJBF000080992,204 ROOSEVELT BLVD NO,Galloway,NJ,39.41714541,-74.37052323,RES1,3001,,16,NE,1978,1978,3102,1,1,3004.062378,3004.062378,3507,NO,17.09,26.55,1,0.94,6106,115.222903,124.737451,134.640076,140.467497,I,Above,Gable,0,5701,,21.81924186,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 12287,NJBF000076448,4309 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39345422,-74.40587566,RES1,3001,,19,NE,2003,2003,3102,3,1,1944.257317,1944.257317,3505,NO,57.36,66.63,3,8.53,6106,114.744675,124.311713,134.148759,140.210265,I,Above,Gable,0,5701,,61.99615663,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 12288,NJBF000079209,7 FRANKLIN PLACE,Galloway,NJ,39.41015359,-74.36655791,RES1,3001,,16,NE,1960,1960,3102,2,1,999.7354719,999.7354719,3507,NO,36.81,50.54,1,2.79,6106,115.37532,124.882436,134.800802,140.619296,I,Above,Gable,0,5701,,43.67522388,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 12289,NJBF000081252,1304 VARDON CIRCLE,Galloway,NJ,39.41831795,-74.37365056,RES1,3001,,17,NE,1987,1987,3102,1,1,2223.608354,2223.608354,3507,NO,21.41,33.75,1,1.92,6106,115.147795,124.666124,134.559971,140.401961,I,Above,Flat,0,5701,,27.57999976,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 12290,NJBF000079197,102 ROOSEVELT BLVD SO,Galloway,NJ,39.41010819,-74.36550171,RES1,3001,,16,NE,1960,1960,3102,1,1,1223.300055,1223.300055,3507,NO,13.05,21.84,1,-0.29,6106,115.397116,124.902969,134.82402,140.636601,I,Above,Gable,0,5701,,17.44722664,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12291,NJBF000079092,220 3RD STREET NO,Galloway,NJ,39.40948036,-74.36235111,RES1,3001,,16,NE,1957,1957,3102,1,1,2180.138005,2180.138005,3507,NO,14.44,19.74,1,1.53,6106,115.467233,124.969109,134.898596,140.694214,I,Above,Gable,0,5701,,17.0860435,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 12292,NJBF000080656,801 W SHORE DR,Galloway,NJ,39.41581282,-74.3821296,RES1,3001,,16,NE,1964,1964,3103,2,1,1951.012551,1951.012551,3505,NO,36.15,44.46,3,-1.32,6106,115.00135,124.530168,134.40581,140.29645,I,Above,Flat,0,5701,,40.30402139,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 12293,NJBF000081264,902 E SHORE DR,Galloway,NJ,39.418371,-74.3628395,RES1,3001,,17,NE,1987,1987,3102,1,1,1529.253759,1529.253759,3507,NO,14.86,19.99,1,0.8,6106,115.364938,124.871961,134.792691,140.575466,I,Above,Hip,0,5701,,17.42262462,0,0,,,,1,1,,0.03,nav,1,1987,1,, 12294,NJBF000079837,21 ROOSEVELT BLVD NO,Galloway,NJ,39.41306186,-74.36787675,RES1,3001,,16,NE,1972,1972,3102,2,1,2328.77102,2328.77102,3507,YES,34.09,47.29,1,-0.89,6106,115.318364,124.828495,134.741245,140.561667,I,Above,Hip,0,5701,,40.69290348,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 12295,NJBF000077204,208 26TH STREET SO,Galloway,NJ,39.39724037,-74.38258099,RES1,3001,,15,NE,1959,1959,3102,2,1,2123.957009,2123.957009,3507,YES,35.24,47.53,1,0.55,6106,115.186399,124.708638,134.596335,140.530975,I,Above,Gable,0,5701,,41.38347145,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 12296,NJBF000081244,1310 VARDON CIRCLE,Galloway,NJ,39.41828095,-74.37416523,RES1,3001,,15,NE,1960,1960,3102,2,1,1339.833193,1339.833193,3507,NO,37.82,48.76,1,2.81,6106,115.137784,124.656704,134.549329,140.394098,I,Above,Flat,0,5701,,43.29406894,0,0,,,,1,1,,0.03,nav,1,1960,2,, 12297,NJBF000078578,128 10TH STREET SO,Galloway,NJ,39.4063257,-74.37272651,RES1,3001,,17,NE,1946,1946,3102,2,1,1749.315223,1749.315223,3507,YES,35.47,46.8,1,1.62,6106,115.290655,124.80346,134.709322,140.569966,I,Above,Gable,0,5701,,41.13647792,0,0,,,,1,1,,0.03,nav,1,1946,2,, 12298,NJBF000081506,1010 N SHORE DR,Galloway,NJ,39.41968084,-74.37553109,RES1,3001,,18,NE,1955,2017,3103,2,1,2153.194796,2153.194796,3505,NO,31.9,41.84,3,8.79,6106,115.096007,124.616645,134.504617,140.353919,I,Above,Flat,0,5701,,36.86939252,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 12299,NJBF000081514,1010 N SHORE DR,Galloway,NJ,39.41974184,-74.37536595,RES1,3001,,18,NE,2017,2017,3103,2,1,1463.057207,1463.057207,3505,NO,26.38,37.88,3,4.95,6106,115.098726,124.619175,134.507491,140.355823,I,Above,Flat,0,5701,,32.12634314,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 12300,NJBF000081409,922 N SHORE DR,Galloway,NJ,39.41905134,-74.37784401,RES1,3001,,16,NE,1956,1956,3103,2,1,1703.268936,1703.268936,3505,NO,32.05,39.48,3,6.51,6106,115.055575,124.578945,134.461913,140.32433,I,Above,Hip,0,5701,,35.76464932,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 12301,NJBF000081811,1403 E SHORE DR,Galloway,NJ,39.42322476,-74.36515734,RES1,3001,,20,NE,2012,2012,3102,3,1,2860.241411,2860.241411,3507,YES,57.52,66.07,1,1.81,6106,115.269032,124.779445,134.689509,140.477319,I,Above,Hip,0,5701,,61.79451528,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 12302,NJBF000081427,1004 FOWNES AVE,Galloway,NJ,39.419175,-74.364057,RES1,3001,,17,NE,1978,1978,3102,2,1,1092.472694,1092.472694,3507,NO,36.9,42.21,1,2.73,6106,115.332272,124.84072,134.757607,140.545892,I,Above,Gable,0,5701,,39.55576741,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 12303,NJBF000081837,,Galloway,NJ,39.42357971,-74.36630498,RES1,3001,,NaN,NE,1969,0,3102,2,1,1993.491866,1993.491866,3507,NO,24.5,38.99,1,0.78,6106,115.242431,124.753912,134.660729,140.45425,I,Above,Hip,0,5701,,31.74644452,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12304,NJBF000080098,1007 E BEACH AVE,Galloway,NJ,39.41390853,-74.35799184,RES1,3001,,43,NE,1978,1978,3102,2,2,1121.723832,1121.723832,3507,NO,24.61,30.25,1,-0.87,6106,115.508361,125.008628,134.945741,140.708016,I,Above,Hip,0,5701,,27.43453085,0,0,,,,1,1,,0.03,nav,1,1978,2,, 12305,NJBF000081842,,Galloway,NJ,39.42360939,-74.36605521,RES1,3001,,NaN,NE,1969,0,3102,2,1,1767.968553,1767.968553,3507,NO,23.57,32.75,1,1.39,6106,115.247153,124.758414,134.665825,140.457939,I,Above,Flat,0,5701,,28.16099724,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12306,NJBF000081413,924 N SHORE DR,Galloway,NJ,39.41905775,-74.37767495,RES1,3001,,16,NE,1972,1972,3103,1,1,2511.18266,2511.18266,3505,NO,19.45,31.42,3,7.5,6106,115.058926,124.58209,134.465459,140.326997,I,Above,Gable,0,5701,,25.43653239,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 12307,NJBF000081746,1305 E SHORE DR,Galloway,NJ,39.42249291,-74.36498319,RES1,3001,,17,NE,1989,1989,3102,2,1,1882.363971,1882.363971,3507,NO,25.75,32.15,1,-0.55,6106,115.279924,124.790057,134.701316,140.489334,I,Above,Flat,0,5701,,28.95260057,0,0,,,,1,1,,0.03,nav,1,1989,2,, 12308,NJBF000081665,4 HUTCHISON PLACE,Galloway,NJ,39.42156432,-74.36584144,RES1,3001,,17,NE,1986,1986,3102,2,1,1532.930185,1532.930185,3507,NO,28.75,35.44,1,0.87,6106,115.272125,124.782862,134.692913,140.487153,I,Above,Gable,0,5701,,32.09209123,0,0,,,,1,1,,0.03,nav,1,1986,2,, 12309,NJBF000081383,3 SPALDING PLACE,Galloway,NJ,39.41896875,-74.36326085,RES1,3001,,17,NE,1987,1987,3102,1,1,1162.028477,1162.028477,3507,NO,13.19,24.53,1,0.35,6106,115.350358,124.857988,134.777084,140.561243,I,Above,Hip,0,5701,,18.8621599,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 12310,NJBF000081452,2 ROYAL PLACE,Galloway,NJ,39.4192785,-74.3630825,RES1,3001,,16,NE,1985,1985,3102,1,1,1119.110946,1119.110946,3507,NO,18.03,30.87,1,1.82,6106,115.350765,124.858333,134.777584,140.560231,I,Above,Gable,0,5701,,24.45105049,0,0,,,,1,1,,0.03,nav,1,1985,1,, 12311,NJBF000081395,205 HAGEN RD,Galloway,NJ,39.41901779,-74.36661831,RES1,3001,,17,NE,1989,1989,3102,3,1,2229.804502,2229.804502,3507,NO,44.05,52.5,1,1.57,6106,115.282423,124.793318,134.703916,140.506695,I,Above,Gable,0,5701,,48.27301834,0,1.2,,,,1,1,,0.03,nav,1,1989,3,, 12312,NJBF000080281,716 W SHORE DR,Galloway,NJ,39.41455487,-74.38175387,RES1,3001,,20,NE,2009,2009,3103,3,1,2668.011255,2668.011255,3505,YES,39.51,52.33,3,2.09,6106,115.021783,124.549982,134.427613,140.318972,I,Above,Hip,0,5701,,45.91978836,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 12313,NJBF000081380,1001 FOWNES AVE,Galloway,NJ,39.41895436,-74.36356495,RES1,3001,,18,NE,2005,2005,3102,2,1,1831.266506,1831.266506,3507,NO,26.42,35.05,1,1.94,6106,115.34441,124.852321,134.770662,140.556556,I,Above,Hip,0,5701,,30.73597951,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 12314,NJBF000080792,704 SHERIDAN BLVD,Galloway,NJ,39.41631041,-74.36556851,RES1,3001,,18,NE,2000,2000,3102,2,1,1738.780326,1738.780326,3507,NO,38,52.89,1,0.45,6106,115.331294,124.840242,134.755976,140.557623,I,Above,Hip,0,5701,,45.44645118,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 12315,NJBF000081306,201 HAGEN RD,Galloway,NJ,39.41857247,-74.36655867,RES1,3001,,17,NE,1989,1989,3102,2,1,2166.386732,2166.386732,3507,NO,26.91,32.54,1,1.81,6106,115.288166,124.798879,134.710047,140.513266,I,Above,Gable,0,5701,,29.72167053,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 12316,NJBF000081325,906 FOWNES AVE,Galloway,NJ,39.41864547,-74.36414275,RES1,3001,,16,NE,1980,1980,3102,1,1,1633.922249,1633.922249,3507,NO,16.76,23.88,1,0.93,6106,115.335972,124.844329,134.761504,140.551156,I,Above,Gable,0,5701,,20.32128723,0,0,,,,1,1,,0.03,nav,1,1980,1,, 12317,NJBF000081205,212 ROOSEVELT BLVD NO,Galloway,NJ,39.41802778,-74.37046933,RES1,3001,,16,NE,1960,1960,3102,2,1,2412.774026,2412.774026,3507,NO,35.69,45.63,1,3,6106,115.214975,124.72967,134.631615,140.457143,I,Above,Gable,0,5701,,40.66227031,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 12318,NJBF000081311,925 N SHORE DR,Galloway,NJ,39.41858301,-74.37761649,RES1,3001,,16,NE,1961,1961,3103,1,1,1898.934418,1898.934418,3505,NO,20.2,31.84,3,1.45,6106,115.064915,124.587989,134.471948,140.334095,I,Above,Flat,0,5701,,26.02231265,0,0,,,,1,1,,0.03,nav,1,1961,1,, 12319,NJBF000079435,306 E EVANS BLVD,Galloway,NJ,39.41111684,-74.3635508,RES1,3001,,16,NE,1965,1965,3102,2,1,1209.952479,1209.952479,3507,YES,37.72,52.17,1,1.47,6106,115.425867,124.930113,134.855304,140.654837,I,Above,Hip,0,5701,,44.94579679,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 12320,NJBF000078866,136 4TH STREET SO,Galloway,NJ,39.408022,-74.367501,RES1,3001,,45,NE,1984,1984,3102,2,2,1621.564365,1621.564365,3507,NO,36.88,47.88,1,1.77,6106,115.378674,124.885658,134.803251,140.631212,I,Above,Gable,0,5701,,42.38469708,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12321,NJBF000077346,109 27TH STREET SO,Galloway,NJ,39.39804095,-74.38401993,RES1,3001,,17,NE,1928,1928,3102,2,1,1993.439657,1993.439657,3507,NO,28.15,33.87,1,1.95,6106,115.148225,124.673556,134.557434,140.497835,I,Above,Gable,0,5701,,31.01420455,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 12322,NJBF000080949,23 VARDON RD,Galloway,NJ,39.4169835,-74.3725165,RES1,3001,,16,NE,1981,1981,3102,3,1,1160.720132,1160.720132,3507,NO,51.88,59.51,1,2.49,6106,115.184289,124.70107,134.598925,140.43737,I,Above,Flat,0,5701,,55.69307983,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 12323,NJBF000080942,1302 OUIMET RD,Galloway,NJ,39.41695763,-74.37353979,RES1,3001,,17,NE,1993,1993,3102,1,1,2341.654331,2341.654331,3507,NO,15.72,26.5,1,0.24,6106,115.16388,124.681853,134.577221,140.421166,I,Above,Hip,0,5701,,21.10944657,0,0,,,,1,1,,0.03,nav,1,1993,1,, 12324,NJBF000081091,1314 VARDON RD,Galloway,NJ,39.41750823,-74.37473057,RES1,3001,,17,NE,1987,1987,3102,1,1,1203.258764,1203.258764,3507,NO,14.98,25.55,1,1.62,6106,115.134195,124.653675,134.545631,140.394832,I,Above,Flat,0,5701,,20.26200009,0,0,,,,1,1,,0.03,nav,1,1987,1,, 12325,NJBF000080743,808 W SHORE DR,Galloway,NJ,39.41614296,-74.38285533,RES1,3001,,16,NE,1968,1968,3103,1,1,1435.564702,1435.564702,3505,NO,19.33,28.15,3,0.75,6106,114.983262,124.513093,134.386719,140.28031,I,Above,Hip,0,5701,,23.74075082,0,0,,,,1,1,,0.03,nav,1,1968,1,, 12326,NJBF000080882,1301 RAY AVE,Galloway,NJ,39.416699,-74.373282,RES1,3001,,16,NE,1985,1985,3102,2,1,837.9466887,837.9466887,3507,NO,39.06,47.96,1,2.76,6106,115.171738,124.689356,134.58559,140.428651,I,Above,Flat,0,5701,,43.51124505,0,0,,,,1,1,,0.03,nav,1,1985,2,, 12327,NJBF000080804,16 VARDON RD,Galloway,NJ,39.41637205,-74.37295786,RES1,3001,,17,NE,1991,1991,3102,2,1,1336.469718,1336.469718,3507,NO,34.52,49.23,1,-0.49,6106,115.18163,124.698794,134.596116,140.438065,I,Above,Flat,0,5701,,41.87482049,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 12328,NJBF000080816,1101 SHERIDAN BLVD,Galloway,NJ,39.41645323,-74.37051718,RES1,3001,,18,NE,1996,1996,3102,2,1,2847.793526,2847.793526,3507,NO,38.27,50.76,1,1.11,6106,115.230108,124.744469,134.647734,140.47639,I,Above,Hip,0,5701,,44.51273149,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 12329,NJBF000080801,1102 JENKINS PKWY,Galloway,NJ,39.41635764,-74.36017388,RES1,3001,,17,NE,2004,2004,3102,2,1,1583.40748,1583.40748,3507,NO,41.04,54.92,1,2.82,6106,115.439165,124.942827,134.8722,140.643089,I,Above,Hip,0,5701,,47.98029783,0,0,,,,1,1,,0.03,nav,1,2004,2,, 12330,NJBF000080888,1324 OUIMET RD,Galloway,NJ,39.41671946,-74.37546617,RES1,3001,,17,NE,1981,1981,3103,2,1,1470.47833,1470.47833,3505,NO,35.2,43.15,3,8.9,6106,115.127353,124.647601,134.538482,140.393051,I,Above,Flat,0,5701,,39.17397096,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 12331,NJBF000080729,9 VARDON RD,Galloway,NJ,39.41602987,-74.37236592,RES1,3001,,16,NE,1982,1982,3102,2,1,1867.652181,1867.652181,3507,NO,39.66,47.55,1,2.8,6106,115.197096,124.71348,134.612562,140.451985,I,Above,Flat,0,5701,,43.60130924,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 12332,NJBF000080605,35 KIRKWOOD CIRCLE,Galloway,NJ,39.41560488,-74.36335606,RES1,3001,,17,NE,1990,1990,3102,2,1,1311.891447,1311.891447,3507,NO,34.03,43.03,1,1.7,6106,115.383076,124.889467,134.811412,140.601811,I,Above,Hip,0,5701,,38.52809517,0,0,,,,1,1,,0.03,nav,1,1990,2,, 12333,NJBF000080679,7 VARDON RD,Galloway,NJ,39.41589112,-74.37236232,RES1,3001,,17,NE,1987,1987,3102,1,1,1660.078629,1660.078629,3507,NO,14.68,28.69,1,1.09,6106,115.1986,124.714945,134.61416,140.453823,I,Above,Flat,0,5701,,21.68406291,0,0,,,,1,1,,0.03,nav,1,1987,1,, 12334,NJBF000080697,38 12TH STREET NO,Galloway,NJ,39.41595309,-74.35937184,RES1,3001,,NaN,NE,1980,1957,3102,2,1,2560.233975,2560.233975,3507,NO,39.37,49.57,1,0.54,6106,115.459438,124.962151,134.893942,140.66086,I,Above,Hip,0,5701,,44.46977142,0,0,,,,1,1,,0.03,nav,1,1980,2,, 12335,NJBF000080667,804 W SHORE DR,Galloway,NJ,39.41586145,-74.3827582,RES1,3001,,16,NE,1956,1956,3103,2,1,1690.381426,1690.381426,3505,NO,29.07,43.23,3,-2.94,6106,114.98809,124.517779,134.391884,140.285577,I,Above,Flat,0,5701,,36.15075638,0,0,,,,1,1,,0.03,nav,1,1956,2,, 12336,NJBF000076272,3113 OCEAN AVE,Galloway,NJ,39.3928108,-74.38406834,RES1,3001,,16,NE,1947,1947,3102,2,1,1199.345862,1199.345862,3507,NO,37.01,49.78,1,-0.15,6106,115.203971,124.725316,134.611698,140.565092,I,Above,Hip,0,5701,,43.3914227,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 12337,NJBF000079601,110 6TH STREET NO,Galloway,NJ,39.4118678,-74.36161692,RES1,3001,,43,NE,1955,1955,3102,2,2,1268.079498,1268.079498,3507,NO,25.67,36.06,1,1.88,6106,115.456924,124.959542,134.889047,140.676052,I,Above,Flat,0,5701,,30.86557176,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 12338,NJBF000079581,203 7TH STREET NO,Galloway,NJ,39.4117685,-74.35959817,RES1,3001,,19,NE,2007,2007,3102,3,1,1884.742632,1884.742632,3507,NO,44.23,54.34,1,0.03,6106,115.498533,124.999007,134.93375,140.709156,I,Above,Flat,0,5701,,49.28276053,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 12339,NJBF000080048,111 LINCOLN DR,Galloway,NJ,39.41376123,-74.36969634,RES1,3001,,16,NE,1961,1961,3102,1,1,1040.276541,1040.276541,3507,NO,15.7,22.68,1,0.66,6106,115.274395,124.786926,134.694566,140.523749,I,Above,Gable,0,5701,,19.19285006,0,0,,,,1,1,,0.03,nav,1,1961,1,, 12340,NJBF000080053,1213 E BRIGANTINE AVE,Galloway,NJ,39.41377531,-74.35558653,RES1,3001,,19,NE,2000,2000,3102,3,1,2304.161076,2304.161076,3507,NO,41.35,47.54,1,-0.3,6106,115.557925,125.055904,134.999351,140.747599,I,Above,Hip,0,5701,,44.44290606,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 12341,NJBF000079755,12 QUAY BLVD,Galloway,NJ,39.41271961,-74.3660743,RES1,3001,,16,NE,2016,2016,3102,1,1,1180.490048,1180.490048,3507,NO,14.37,27.72,1,1.4,6106,115.358289,124.866212,134.783758,140.594706,I,Above,Gable,0,5701,,21.04647067,0,1.1,,,,1,1,,0.03,nav,1,2016,1,, 12342,NJBF000079889,42 HEALD RD,Galloway,NJ,39.41323781,-74.3632433,RES1,3001,,18,NE,2005,2005,3102,3,1,1601.647559,1601.647559,3507,NO,39.41,47.44,1,0.57,6106,115.409913,124.915025,134.839282,140.633206,I,Above,Gable,0,5701,,43.42312213,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 12343,NJBF000079548,200 SHERIDAN PLACE,Galloway,NJ,39.4116335,-74.3659215,RES1,3001,,16,NE,1977,1977,3102,1,1,1509.747671,1509.747671,3507,NO,16.83,23.97,1,2.12,6106,115.372693,124.879887,134.798694,140.610791,I,Above,Gable,0,5701,,20.39770677,0,0,,,,1,1,,0.03,nav,1,1977,1,, 12344,NJBF000079734,304 SHERIDAN PLACE,Galloway,NJ,39.41259597,-74.36585594,RES1,3001,,16,NE,1972,1972,3102,1,1,1267.396337,1267.396337,3507,NO,15.16,23.9,1,2.97,6106,115.363974,124.871592,134.789787,140.599733,I,Above,Hip,0,5701,,19.53087162,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12345,NJBF000079722,506 CAVERLY DR,Galloway,NJ,39.41250245,-74.37363859,RES1,3001,,17,NE,1987,1987,3102,2,1,1827.212002,1827.212002,3507,NO,27.17,41.5,1,1.7,6106,115.207638,124.724533,134.623497,140.476579,I,Above,Gable,0,5701,,34.33414083,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 12346,NJBF000079716,510 E EVANS BLVD,Galloway,NJ,39.41246851,-74.36233802,RES1,3001,,16,NE,1978,1978,3102,2,1,2087.238312,2087.238312,3507,NO,28.65,38.51,1,1.88,6106,115.436139,124.939871,134.867057,140.657156,I,Above,Gable,0,5701,,33.57730585,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 12347,NJBF000079745,17 QUAY CIRCLE,Galloway,NJ,39.41266173,-74.36714257,RES1,3001,,16,NE,1974,1974,3102,1,1,1535.232104,1535.232104,3507,NO,14.62,27.22,1,0.94,6106,115.337331,124.846437,134.761351,140.578416,I,Above,Hip,0,5701,,20.92147101,0,0,,,,1,1,,0.03,nav,1,1974,1,, 12348,NJBF000079677,,Galloway,NJ,39.41228569,-74.35884112,RES1,3001,,NaN,NE,2005,0,3102,2,1,2482.829992,2482.829992,3507,NO,29.07,38.22,1,-0.49,6106,115.508309,125.008364,134.944634,140.714689,I,Above,Hip,0,5701,,33.64502124,0,0,,,,1,1,,0.03,nav,1,2005,2,, 12349,NJBF000079628,520 W SHORE DR,Galloway,NJ,39.41203216,-74.37583612,RES1,3001,,16,NE,1972,1972,3103,2,1,2213.100245,2213.100245,3505,NO,29.15,42.95,3,2.95,6106,115.167939,124.687539,134.581523,140.447314,I,Above,Flat,0,5701,,36.04877993,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 12350,NJBF000079736,510 CAVERLY DR,Galloway,NJ,39.41261647,-74.3740031,RES1,3001,,16,NE,1981,1981,3102,1,1,1728.006937,1728.006937,3507,NO,18.19,25.82,1,-0.85,6106,115.199083,124.716482,134.614461,140.469277,I,Above,Gable,0,5701,,22.00065556,0,0,,,,1,1,,0.03,nav,1,1981,1,, 12351,NJBF000079148,,Galloway,NJ,39.409829,-74.3616395,RES1,3001,,NaN,NE,1948,0,3102,2,1,1427.244963,1427.244963,3507,NO,31.48,41.06,1,-0.92,6106,115.47789,124.979219,134.910254,140.701084,I,Above,Hip,0,5701,,36.27224362,0,0,,,,1,1,,0.03,nav,1,1948,2,, 12352,NJBF000078911,117 5TH STREET SO,Galloway,NJ,39.40829733,-74.36820343,RES1,3001,,15,NE,1951,1951,3102,1,1,944.705169,944.705169,3507,NO,12.6,27.5,1,1.84,6106,115.361579,124.869606,134.78525,140.61664,I,Above,Hip,0,5701,,20.04794491,0,0,,,,1,1,,0.03,nav,1,1951,1,, 12353,NJBF000079438,207 6TH STREET NO,Galloway,NJ,39.41114112,-74.36004009,RES1,3001,,16,NE,1955,1955,3102,1,1,1971.872511,1971.872511,3507,NO,19.78,25.55,1,1.4,6106,115.496246,124.996758,134.930865,140.709976,I,Above,Gable,0,5701,,22.66690549,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12354,NJBF000078922,200 2ND STREET SO,Galloway,NJ,39.40837139,-74.36546726,RES1,3001,,43,NE,1950,1950,3102,2,2,931.1816407,931.1816407,3507,NO,23.98,31.86,1,0.98,6106,115.416093,124.920823,134.843257,140.658949,I,Above,Gable,0,5701,,27.92143307,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 12355,NJBF000078855,201 3RD STREET SO,Galloway,NJ,39.40796256,-74.36566357,RES1,3001,,15,NE,1951,1951,3102,1,1,1113.068963,1113.068963,3507,NO,9.86,17.87,1,-0.7,6106,115.41642,124.921118,134.843353,140.660959,I,Above,Gable,0,5701,,13.86314552,0,0,,,,1,1,,0.03,nav,1,1951,1,, 12356,NJBF000079517,106 HAMILTON PLACE,Galloway,NJ,39.41149434,-74.3625991,RES1,3001,,16,NE,1960,1960,3102,1,1,1265.346653,1265.346653,3507,NO,17.32,29.03,1,0.37,6106,115.441085,124.94452,134.871826,140.665188,I,Above,Gable,0,5701,,23.17404931,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12357,NJBF000079500,1 GIRARD PLACE,Galloway,NJ,39.41142787,-74.36725347,RES1,3001,,16,NE,1972,1972,3102,2,1,1494.571161,1494.571161,3507,YES,27.86,35.69,1,2.76,6106,115.347964,124.856588,134.772222,140.59222,I,Above,Gable,0,5701,,31.77762747,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 12358,NJBF000079448,430 LAFAYETTE BLVD,Galloway,NJ,39.41119085,-74.3714428,RES1,3001,,17,NE,1985,1985,3102,3,1,1001.116784,1001.116784,3507,NO,48.76,57.96,1,0.55,6106,115.265719,124.779317,134.684732,140.528458,I,Above,Hip,0,5701,,53.3560595,0,1.1,,,,1,1,,0.03,nav,1,1985,3,, 12359,NJBF000079123,453 W SHORE DR,Galloway,NJ,39.40966498,-74.37307132,RES1,3001,,16,NE,1977,1977,3102,2,1,981.6809858,981.6809858,3507,NO,28.71,43.45,1,-0.27,6106,115.248629,124.763642,134.666235,140.521916,I,Above,Gable,0,5701,,36.08280706,0,0,,,,1,1,,0.03,nav,1,1977,2,, 12360,NJBF000079348,507 HACKNEY PLACE,Galloway,NJ,39.41074221,-74.37400969,RES1,3001,,16,NE,1960,1960,3102,1,1,1519.324246,1519.324246,3507,NO,16.22,25.77,1,-0.17,6106,115.218363,124.735079,134.634542,140.493147,I,Above,Gable,0,5701,,20.99709641,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 12361,NJBF000079154,457 W SHORE DR,Galloway,NJ,39.40987904,-74.3733582,RES1,3001,,16,NE,1963,1963,3102,1,1,1426.425796,1426.425796,3507,NO,20.36,33.09,1,1.36,6106,115.240575,124.756064,134.65779,140.514602,I,Above,Gable,0,5701,,26.72618583,0,0,,,,1,1,,0.03,nav,1,1963,1,, 12362,NJBF000079376,502 W SHORE DR,Galloway,NJ,39.41089276,-74.37519496,RES1,3001,,18,NE,2009,2009,3103,2,1,2696.709783,2696.709783,3505,NO,26.45,39.83,3,3.13,6106,115.192747,124.711096,134.607548,140.47223,I,Above,Hip,0,5701,,33.14070137,0,1.2,,,,1,1,,0.03,nav,1,2009,2,, 12363,NJBF000079441,510 RISLEY RD,Galloway,NJ,39.41115535,-74.37419503,RES1,3001,,16,NE,1980,1980,3102,2,1,1753.831994,1753.831994,3507,YES,25.98,31.42,1,2.21,6106,115.21032,124.727442,134.626128,140.484899,I,Above,Gable,0,5701,,28.69894277,0,0,,,,1,1,,0.03,nav,1,1980,2,, 12364,NJBF000079360,448 RISLEY RD,Galloway,NJ,39.4108008,-74.37303104,RES1,3001,,16,NE,1985,1985,3102,1,1,1549.17469,1549.17469,3507,NO,18.74,25.43,1,2.67,6106,115.237603,124.753063,134.654878,140.508053,I,Above,Gable,0,5701,,22.08625073,0,0,,,,1,1,,0.03,nav,1,1985,1,, 12365,NJBF000079339,300 E EVANS BLVD,Galloway,NJ,39.41072382,-74.36360613,RES1,3001,,16,NE,1958,1958,3102,1,1,1330.501857,1330.501857,3507,NO,17.21,22.49,1,0.89,6106,115.428879,124.932948,134.858307,140.65888,I,Above,Gable,0,5701,,19.8501439,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 12366,NJBF000079336,202 LAFAYETTE PLACE,Galloway,NJ,39.41072035,-74.36709948,RES1,3001,,16,NE,1970,1970,3102,2,1,1524.726147,1524.726147,3507,NO,41.12,46.84,1,2.58,6106,115.35847,124.86654,134.783115,140.603589,I,Above,Flat,0,5701,,43.98061238,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 12367,NJBF000079104,209 2ND STREET NO,Galloway,NJ,39.40959047,-74.36307462,RES1,3001,,15,NE,1954,1954,3102,1,1,942.5322197,942.5322197,3507,NO,19.69,26.64,1,2.76,6106,115.451492,124.954249,134.881818,140.68143,I,Above,Gable,0,5701,,23.16650077,0,0,,,,1,1,,0.03,nav,1,1954,1,, 12368,NJBF000079282,441 HACKNEY PLACE,Galloway,NJ,39.41048569,-74.37299521,RES1,3001,,15,NE,1966,1966,3102,1,1,1608.386893,1608.386893,3507,NO,16.14,29.1,1,2.59,6106,115.241611,124.75689,134.659039,140.51265,I,Above,Flat,0,5701,,22.62075761,0,0,,,,1,1,,0.03,nav,1,1966,1,, 12369,NJBF000079111,470 W SHORE DR,Galloway,NJ,39.40961685,-74.37453933,RES1,3001,,16,NE,1947,1947,3102,2,4,1189.764404,1189.764404,3507,YES,27.17,35.79,1,0.76,6106,115.219339,124.736291,134.635329,140.499085,I,Above,Flat,0,5701,,31.47955871,0,0,,,,1,1,,0.03,nav,1,1947,2,, 12370,NJBF000079100,202 2ND STREET NO,Galloway,NJ,39.40955476,-74.36365415,RES1,3001,,15,NE,1955,1955,3102,1,1,1358.723098,1358.723098,3507,NO,12.35,21.68,1,-0.78,6106,115.440193,124.943581,134.869711,140.672733,I,Above,Flat,0,5701,,17.01444111,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12371,NJBF000079022,100 2ND STREET SO,Galloway,NJ,39.40906308,-74.36612327,RES1,3001,,15,NE,1952,1952,3102,1,1,708.6953246,708.6953246,3507,NO,16.32,30.67,1,2.78,6106,115.395558,124.901511,134.82179,140.639899,I,Above,Gable,0,5701,,23.49291349,0,0,,,,1,1,,0.03,nav,1,1952,1,, 12372,NJBF000079086,204 2ND STREET NO,Galloway,NJ,39.40944711,-74.36356126,RES1,3001,,19,NE,2004,2004,3102,3,1,2069.932438,2069.932438,3507,NO,49.97,62.28,1,1.94,6106,115.443204,124.946416,134.872862,140.67555,I,Above,Flat,0,5701,,56.12282464,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 12373,NJBF000079044,202 W EVANS BLVD,Galloway,NJ,39.40918147,-74.36639317,RES1,3001,,16,NE,1978,1978,3102,2,1,1318.446383,1318.446383,3507,NO,29.67,44.48,1,0.85,6106,115.388865,124.895212,134.814727,140.634146,I,Above,Gable,0,5701,,37.07576751,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 12374,NJBF000079040,207 ROOSEVELT BLVD SO,Galloway,NJ,39.40916427,-74.36367892,RES1,3001,,15,NE,1972,1972,3102,2,1,1289.996476,1289.996476,3507,YES,31.15,41.93,1,-0.21,6106,115.443806,124.946967,134.873326,140.677226,I,Above,Gable,0,5701,,36.54178426,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12375,NJBF000079062,,Galloway,NJ,39.40926763,-74.37276731,RES1,3001,,NaN,NE,1969,0,3102,2,1,2766.231574,2766.231574,3507,NO,20.64,30.67,1,-0.91,6106,115.258943,124.773367,134.677007,140.531829,I,Above,Gable,0,5701,,25.65452466,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12376,NJBF000078688,,Galloway,NJ,39.40693648,-74.36336193,RES3C,3001,,NaN,ME,1969,0,3301,1,1,11551.98615,11551.98615,3507,NO,14.56,22.56,1,-0.97,6106,115.47375,124.974982,134.903743,140.710037,I,Above,Flat,0,NaN,,18.56248738,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12377,NJBF000078744,123 9TH STREET SO,Galloway,NJ,39.40728376,-74.37183045,RES1,3001,,16,NE,1962,1962,3102,2,1,1065.536584,1065.536584,3507,YES,36.67,50.21,1,1.76,6106,115.298766,124.810902,134.718295,140.571998,I,Above,Gable,0,5701,,43.43694611,0,0,,,,1,1,,0.03,nav,1,1962,2,, 12378,NJBF000078764,225 3RD STREET SO,Galloway,NJ,39.40742015,-74.36519933,RES1,3001,,14,NE,1951,1951,3102,1,1,1018.86755,1018.86755,3507,NO,17.74,24.61,1,2.21,6106,115.431548,124.935318,134.859108,140.675097,I,Above,Gable,0,5701,,21.17829007,0,0,,,,1,1,,0.03,nav,1,1951,1,, 12379,NJBF000078740,,Galloway,NJ,39.40727169,-74.3649902,RES1,3001,,NaN,NE,1948,0,3102,2,1,2011.145192,2011.145192,3507,NO,21.17,28.29,1,-0.81,6106,115.437335,124.94075,134.86517,140.680242,I,Above,Hip,0,5701,,24.73019056,0,0,,,,1,1,,0.03,nav,1,1948,2,, 12380,NJBF000078728,223 4TH STREET SO,Galloway,NJ,39.40719809,-74.36608749,RES1,3001,,15,NE,1956,1956,3102,1,1,1184.647731,1184.647731,3507,NO,15.24,29.11,1,-0.29,6106,115.415958,124.920658,134.842375,140.663892,I,Above,Gable,0,5701,,22.17458005,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12381,NJBF000078819,907 BAYSHORE AVE,Galloway,NJ,39.40775383,-74.373014,RES1,3001,,43,NE,1969,1969,3102,2,2,1603.257221,1603.257221,3507,NO,37.22,45.44,1,2.83,6106,115.269795,124.783787,134.687936,140.547206,I,Above,Flat,0,5701,,41.33117907,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12382,NJBF000078774,,Galloway,NJ,39.40747846,-74.3663494,RES1,3001,,NaN,NE,1969,0,3102,2,1,991.4424461,991.4424461,3507,NO,38.32,43.62,1,1.93,6106,115.407703,124.912913,134.833776,140.656245,I,Above,Hip,0,5701,,40.96943823,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12383,NJBF000078761,215 4TH STREET SO,Galloway,NJ,39.40740698,-74.36622704,RES1,3001,,18,NE,2006,2006,3102,3,1,1484.214097,1484.214097,3507,NO,49.79,57.2,1,-0.1,6106,115.410919,124.915932,134.837151,140.659061,I,Above,Hip,0,5701,,53.49342865,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 12384,NJBF000078780,,Galloway,NJ,39.40751686,-74.36287744,RES1,3001,,NaN,NE,1998,0,3102,2,1,1845.49459,1845.49459,3507,NO,33.79,45.14,1,0.86,6110,115.477372,124.978465,134.908046,140.710407,I,Above,Flat,0,5701,,39.46694806,0,0,,,,1,1,,0.35,nav,1,1998,2,, 12385,NJBF000078940,110 3RD STREET SO,Galloway,NJ,39.40852235,-74.36681479,RES1,3001,,15,NE,1951,1951,3102,1,1,947.2812526,947.2812526,3507,NO,16.18,29.3,1,2.25,6106,115.387273,124.893725,134.81267,140.635761,I,Above,Hip,0,5701,,22.74392316,0,1.2,,,,1,1,,0.03,nav,1,1951,1,, 12386,NJBF000078834,121 6TH STREET SO,Galloway,NJ,39.40781583,-74.36884069,RES1,3001,,16,NE,2016,2016,3102,3,1,1116.314969,1116.314969,3507,NO,37.69,51.85,1,2.19,6106,115.353734,124.862275,134.77668,140.612617,I,Above,Hip,0,5701,,44.76780974,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 12387,NJBF000078787,218 3RD STREET SO,Galloway,NJ,39.4075505,-74.365951,RES1,3001,,19,NE,2004,2004,3102,3,1,1734.155685,1734.155685,3507,NO,41.67,50.33,1,1.17,6106,115.414985,124.919755,134.841565,140.661617,I,Above,Gable,0,5701,,45.99993554,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 12388,NJBF000078775,,Galloway,NJ,39.40748973,-74.36584859,RES1,3001,,NaN,NE,2004,0,3102,2,1,1494.093244,1494.093244,3507,NO,22.01,30.61,1,0.92,6106,115.417679,124.922285,134.844393,140.663978,I,Above,Gable,0,5701,,26.30946055,0,0,,,,1,1,,0.03,nav,1,2004,2,, 12389,NJBF000078827,216 VERNON PLACE,Galloway,NJ,39.40778171,-74.3641292,RES1,3001,,17,NE,2017,2017,3102,2,1,1518.16214,1518.16214,3507,NO,38.65,46.17,1,2.01,6106,115.449317,124.952062,134.87829,140.687411,I,Above,Hip,0,5701,,42.41007343,0,0,,,,1,1,,0.03,nav,1,2017,2,, 12390,NJBF000078739,124 8TH STREET SO,Galloway,NJ,39.407266,-74.3713125,RES1,3001,,16,NE,1963,1963,3102,2,1,1417.626647,1417.626647,3507,YES,27.19,32.75,1,0.4,6106,115.309442,124.820877,134.729556,140.580427,I,Above,Gable,0,5701,,29.97123051,0,0,,,,1,1,,0.03,nav,1,1963,2,, 12391,NJBF000078723,118 9TH STREET SO,Galloway,NJ,39.40715649,-74.37233007,RES1,3001,,16,NE,1953,1953,3102,1,1,1570.191365,1570.191365,3507,NO,19.4,33.22,1,1.36,6106,115.289967,124.802705,134.70896,140.565692,I,Above,Hip,0,5701,,26.31135899,0,0,,,,1,1,,0.03,nav,1,1953,1,, 12392,NJBF000078641,,Galloway,NJ,39.40664457,-74.36735697,RES1,3001,,NaN,NE,1969,0,3102,2,1,1519.621811,1519.621811,3507,NO,33.69,39.33,1,-0.97,6106,115.396132,124.902039,134.820966,140.650827,I,Above,Flat,0,5701,,36.50974969,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12393,NJBF000078638,238 4TH STREET SO,Galloway,NJ,39.40661345,-74.36619647,RES1,3001,,16,NE,1955,1955,3102,2,1,1703.929676,1703.929676,3507,NO,23.81,33.01,1,1.51,6106,115.419949,124.924379,134.846231,140.66952,I,Above,Gable,0,5701,,28.40812732,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12394,NJBF000078696,506 W BEACH AVE,Galloway,NJ,39.4069759,-74.36778131,RES1,3001,,16,NE,1955,1955,3102,1,1,1429.26538,1429.26538,3507,NO,17.9,25.49,1,-0.3,6106,115.384052,124.890717,134.808355,140.639969,I,Above,Flat,0,5701,,21.69231236,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12395,NJBF000078698,500 W BEACH AVE,Galloway,NJ,39.406989,-74.367594,RES1,3001,,16,NE,1950,1950,3102,1,1,2282.664235,2282.664235,3507,NO,10.95,18.03,1,-0.58,6106,115.387698,124.894135,134.81223,140.642757,I,Above,Hip,0,5701,,14.4897306,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 12396,NJBF000078521,248 5TH STREET SO,Galloway,NJ,39.40597734,-74.3667339,RES1,3001,,43,NE,1955,1955,3102,2,2,1390.791348,1390.791348,3505,NO,19.41,28.47,3,-1.62,6106,115.415814,124.920471,134.841411,140.669042,I,Above,Hip,0,5701,,23.94167381,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12397,NJBF000078502,248 5TH STREET SO,Galloway,NJ,39.40588719,-74.36683918,RES1,3001,,43,NE,1955,1955,3102,2,2,556.1664746,556.1664746,3505,NO,24.66,35.62,3,-0.38,6106,115.414646,124.919371,134.84011,140.668521,I,Above,Hip,0,5701,,30.14132417,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12398,NJBF000078469,,Galloway,NJ,39.40570217,-74.36874439,RES1,3001,,NaN,NE,1955,0,3102,2,1,1740.27764,1740.27764,3505,NO,42.69,47.86,3,7.23,6106,115.378045,124.885099,134.801216,140.640848,I,Above,Flat,0,5701,,45.27384808,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12399,NJBF000078442,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,2273.605359,2273.605359,3505,NO,47.24,56.32,3,9,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,51.7804627,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12400,NJBF000078470,171 10TH STREET SO,Galloway,NJ,39.40570266,-74.371483,RES1,3001,,16,NE,1950,1950,3102,1,1,1013.796037,1013.796037,3505,NO,14.64,22.97,3,-1.34,6106,115.322496,124.833215,134.74256,140.597589,I,Above,Hip,0,5701,,18.8077191,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12401,NJBF000078452,175 10TH STREET SO,Galloway,NJ,39.40560125,-74.371393,RES1,3001,,16,NE,1937,1937,3102,1,1,1328.703486,1328.703486,3505,NO,17.18,32.08,3,-0.25,6106,115.325402,124.835934,134.745569,140.600307,I,Above,Gable,0,5701,,24.62669582,0,0,,,,1,1,,0.03,nav,1,1937,1,, 12402,NJBF000078475,131 11TH STREET SO,Galloway,NJ,39.40574403,-74.37264519,RES1,3001,,19,NE,2016,2016,3102,2,1,1489.846851,1489.846851,3505,NO,36.97,45.47,3,2.97,6106,115.298468,124.810813,134.717275,140.578678,I,Above,Gable,0,5701,,41.22432855,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 12403,NJBF000078390,226 8TH STREET SO,Galloway,NJ,39.40522426,-74.36945779,RES1,3001,,18,NE,2013,2013,3102,2,1,1036.751692,1036.751692,3505,NO,19.7,27.13,3,-2.72,6106,115.368648,124.876319,134.790986,140.63563,I,Above,Gable,0,5701,,23.41188042,0,0,,,,1,1,,0.03,nav,1,2013,2,, 12404,NJBF000082765,114 MINNETONKA AVE,Galloway,NJ,39.43324964,-74.51629341,RES1,3001,,17,NE,1975,1975,3102,1,1,1328.276706,1328.276706,3505,NO,25.06,31.57,3,5.82,6112,112.085742,121.897668,131.496227,137.620393,I,Above,Gable,0,5701,,28.31551522,0,0,,,,1,1,,0.35,nav,1,1975,1,, 12405,NJBF000078387,239 8TH STREET SO,Galloway,NJ,39.4052099,-74.36877702,RES1,3001,,16,NE,1950,1950,3102,2,1,1495.411069,1495.411069,3505,NO,35.03,44.31,3,8.19,6106,115.382598,124.889356,134.805721,140.646538,I,Above,Hip,0,5701,,39.67065469,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12406,NJBF000078456,135 11TH STREET SO,Galloway,NJ,39.40562384,-74.37262829,RES1,3001,,16,NE,1922,1922,3102,2,1,1052.803169,1052.803169,3505,NO,18.89,29.85,3,-2.59,6106,115.300082,124.81233,134.718916,140.580475,I,Above,Flat,0,5701,,24.369715,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 12407,NJBF000078472,135 11TH STREET SO,Galloway,NJ,39.4057225,-74.3724345,RES1,3001,,16,NE,1922,1922,3102,2,1,641.1148131,641.1148131,3505,NO,30.78,35.9,3,-0.07,6106,115.302976,124.815015,134.722009,140.582286,I,Above,Flat,0,5701,,33.33674746,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 12408,NJBF000078322,230 9TH STREET SO,Galloway,NJ,39.40472805,-74.37012365,RES1,3001,,16,NE,1946,1946,3102,2,1,1302.050697,1302.050697,3505,NO,34.85,49.19,3,6.85,6106,115.360411,124.868637,134.781984,140.631407,I,Above,Gable,0,5701,,42.02061443,0,0,,,,1,1,,0.03,nav,1,1946,2,, 12409,NJBF000078376,223 9TH STREET SO,Galloway,NJ,39.40513941,-74.36981382,RES1,3001,,16,NE,1954,1954,3102,2,1,1579.122791,1579.122791,3505,NO,21.34,33.07,3,-2.38,6106,115.362333,124.870422,134.784264,140.631093,I,Above,Flat,0,5701,,27.20550706,0,0,,,,1,1,,0.03,nav,1,1954,2,, 12410,NJBF000078463,182 9TH STREET SO,Galloway,NJ,39.40565799,-74.37098177,RES1,3001,,16,NE,1950,1950,3102,1,1,1303.279928,1303.279928,3505,NO,16.41,23.5,3,-2.19,6106,115.333139,124.843148,134.753757,140.60608,I,Above,Gable,0,5701,,19.95467156,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12411,NJBF000083417,733 VILLAGE DR,Galloway,NJ,39.44376238,-74.47067718,RES1,3001,,16,NE,1990,1990,3102,2,1,2417.544029,2417.544029,3505,NO,36.11,50.2,3,6.37,6112,112.944557,122.594347,132.260492,138.337375,I,Above,Gable,0,5701,,43.15780599,0,0,,,,1,1,,0.35,nav,1,1990,2,, 12412,NJBF000084275,820 SOMERSTOWN LN,Galloway,NJ,39.46385842,-74.450589,RES1,3001,,NaN,NE,1836,2017,3102,2,1,1830.713416,1830.713416,3505,NO,22.1,34.85,3,-1.59,6112,113.202528,122.74473,132.426571,138.417313,I,Above,Gable,0,5701,,28.47577798,0,0,,,,1,1,,0.7,nav,1,1836,2,, 12413,NJBF000083281,544 BROOK LN,Galloway,NJ,39.44092457,-74.48340039,RES1,3001,,16,NE,1950,1950,3102,2,1,1375.240915,1375.240915,3505,NO,45.95,51.26,3,8.68,6112,112.706335,122.396223,132.042743,138.138747,I,Above,Gable,0,5701,,48.60150126,0,0,,,,1,1,,0.35,nav,1,1950,2,, 12414,NJBF000076596,315 30TH STREET SO,Galloway,NJ,39.39403905,-74.38309791,RES1,3001,,15,NE,1936,1936,3102,2,1,1658.941781,1658.941781,3507,NO,28.65,40.76,1,-0.3,6106,115.210506,124.731131,134.619217,140.564362,I,Above,Gable,0,5701,,34.7070787,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 12415,NJBF000076973,2501 OCEAN AVE,Galloway,NJ,39.3956598,-74.37953422,RES1,3001,,18,NE,1969,1969,3102,2,1,2356.158292,2356.158292,3507,NO,34.51,40.44,1,2.03,6110,115.266004,124.781723,134.677443,140.599285,I,Above,Gable,0,5701,,37.47492478,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 12416,NJBF000076730,3002 W BRIGANTINE AVE,Galloway,NJ,39.39456727,-74.3845357,RES1,3001,,15,NE,1954,1954,3102,1,1,1359.105462,1359.105462,3507,YES,18.42,26.99,1,-0.2,6106,115.175181,124.698863,134.583331,140.534923,I,Above,Flat,0,5701,,22.70825314,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 12417,NJBF000076681,302 30TH STREET SO,Galloway,NJ,39.39433559,-74.38414806,RES1,3001,,15,NE,1957,1957,3102,1,1,1334.517053,1334.517053,3507,NO,16.78,24.74,1,1.76,6106,115.185677,124.708461,134.593947,140.544026,I,Above,Gable,0,5701,,20.75608608,0,0,,,,1,1,,0.03,nav,1,1957,1,, 12418,NJBF000079611,9 ROOSEVELT BLVD NO,Galloway,NJ,39.41193716,-74.36660703,RES1,3001,,16,NE,1955,1955,3102,1,1,2165.929513,2165.929513,3507,NO,11.86,25.97,1,-0.24,6106,115.355693,124.863829,134.780674,140.596079,I,Above,Gable,0,5701,,18.91545552,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 12419,NJBF000080090,202 12TH STREET NO,Galloway,NJ,39.41388411,-74.35676195,RES1,3001,,43,NE,1972,1972,3102,2,2,1433.23373,1433.23373,3507,NO,22.68,36.89,1,0.45,6106,115.533264,125.032377,134.972686,140.727739,I,Above,Flat,0,5701,,29.78942487,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12420,NJBF000080027,104 ROOSEVELT BLVD NO,Galloway,NJ,39.4137057,-74.36912529,RES1,3001,,16,NE,1978,1978,3102,1,1,1404.12323,1404.12323,3507,NO,19.82,29.68,1,2.26,6106,115.286496,124.79834,134.707444,140.533584,I,Above,Gable,0,5701,,24.75308736,0,0,,,,1,1,,0.03,nav,1,1978,1,, 12421,NJBF000079891,44 HEALD RD,Galloway,NJ,39.41324347,-74.36307723,RES1,3001,,16,NE,2016,2016,3102,2,1,1726.814678,1726.814678,3507,NO,27.2,41.88,1,-0.77,6106,115.413201,124.91814,134.842814,140.635778,I,Above,Hip,0,5701,,34.54139633,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 12422,NJBF000078876,,Galloway,NJ,39.4080745,-74.362268,RES1,3001,,NaN,NE,1969,0,3102,2,1,2079.286517,2079.286517,3507,NO,37.37,46.2,1,0.96,6110,115.483749,124.984548,134.915277,140.713035,I,Above,Flat,0,5701,,41.78704377,0,0,,,,1,1,,0.35,nav,1,1969,2,, 12423,NJBF000079876,526 CAVERLY DR,Galloway,NJ,39.41319842,-74.37519949,RES1,3001,,16,NE,1980,1980,3103,2,1,1103.469716,1103.469716,3505,NO,43.71,51.64,3,6.55,6106,115.168832,124.687952,134.582531,140.442587,I,Above,Flat,0,5701,,47.67689141,0,0,,,,1,1,,0.03,nav,1,1980,2,, 12424,NJBF000079172,204 E BEACH AVE,Galloway,NJ,39.4099553,-74.36311219,RES1,3001,,45,NE,1955,1955,3102,2,2,2640.453257,2640.453257,3507,YES,34.65,41.64,1,-0.98,6106,115.446906,124.949943,134.877142,140.67629,I,Above,Hip,0,5701,,38.14823445,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12425,NJBF000079696,5 HAMILTON PLACE,Galloway,NJ,39.41238838,-74.36656652,RES1,3001,,16,NE,1972,1972,3102,2,1,1104.305053,1104.305053,3507,YES,29.61,40.77,1,1.5,6106,115.351802,124.860118,134.776698,140.591038,I,Above,Hip,0,5701,,35.19399062,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12426,NJBF000079709,504 CAVERLY DR,Galloway,NJ,39.41243516,-74.3735025,RES1,3001,,17,NE,1993,1993,3102,1,1,1908.503232,1908.503232,3507,NO,17.05,25.86,1,-0.91,6106,115.211087,124.727785,134.627137,140.479618,I,Above,Flat,0,5701,,21.45447037,0,0,,,,1,1,,0.03,nav,1,1993,1,, 12427,NJBF000079640,14 ROOSEVELT BLVD NO,Galloway,NJ,39.41210084,-74.36759853,RES1,3001,,16,NE,1968,1968,3102,2,1,1617.766179,1617.766179,3507,NO,23.75,32.65,1,-0.74,6106,115.333965,124.843328,134.757558,140.578228,I,Above,Gable,0,5701,,28.20059808,0,0,,,,1,1,,0.03,nav,1,1968,2,, 12428,NJBF000079606,103 HAMILTON PLACE,Galloway,NJ,39.41191379,-74.36247949,RES1,3001,,15,NE,1956,1956,3102,1,1,1241.06391,1241.06391,3507,NO,17.79,24.39,1,1.42,6106,115.439104,124.942661,134.869937,140.661846,I,Above,Hip,0,5701,,21.09009308,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12429,NJBF000079618,516 LAFAYETTE BLVD,Galloway,NJ,39.41198764,-74.37437075,RES1,3001,,16,NE,1980,1980,3102,2,1,1344.322991,1344.322991,3507,NO,39.01,46.91,1,1.91,6106,115.198117,124.715775,134.613366,140.47141,I,Above,Hip,0,5701,,42.96097636,0,0,,,,1,1,,0.03,nav,1,1980,2,, 12430,NJBF000079531,500 LAFAYETTE BLVD,Galloway,NJ,39.41154841,-74.37312082,RES1,3001,,16,NE,1981,1981,3102,1,1,1910.993898,1910.993898,3507,NO,20.06,28.32,1,2.03,6106,115.228018,124.743897,134.644901,140.497075,I,Above,Gable,0,5701,,24.18954003,0,0,,,,1,1,,0.03,nav,1,1981,1,, 12431,NJBF000079541,8 GIRARD PLACE,Galloway,NJ,39.4115951,-74.36771512,RES1,3001,,16,NE,1964,1964,3102,1,1,1439.716474,1439.716474,3507,NO,20.37,31.84,1,2.23,6106,115.336894,124.846145,134.760491,140.582766,I,Above,Hip,0,5701,,26.10250608,0,0,,,,1,1,,0.03,nav,1,1964,1,, 12432,NJBF000079459,508 W SHORE DR,Galloway,NJ,39.41125233,-74.37543512,RES1,3001,,17,NE,1991,1991,3103,2,1,2694.89493,2694.89493,3505,NO,33.18,43.48,3,-1.33,6106,115.184152,124.702953,134.598537,140.463773,I,Above,Hip,0,5701,,38.33406462,0,0,,,,1,1,,0.03,nav,1,1991,2,, 12433,NJBF000078849,214 VERNON PLACE,Galloway,NJ,39.40791893,-74.36425354,RES1,3001,,16,NE,1953,1953,3102,2,1,1037.277373,1037.277373,3507,NO,30.26,41.64,1,-0.94,6106,115.445347,124.948334,134.874149,140.68373,I,Above,Flat,0,5701,,35.94870528,0,0,,,,1,1,,0.03,nav,1,1953,2,, 12434,NJBF000079362,306 LAFAYETTE PLACE,Galloway,NJ,39.41080503,-74.36829912,RES1,3001,,16,NE,1964,1964,3102,1,1,1716.231145,1716.231145,3507,NO,13.16,26.79,1,0.88,6106,115.333341,124.842886,134.756398,140.583451,I,Above,Hip,0,5701,,19.97395311,0,0,,,,1,1,,0.03,nav,1,1964,1,, 12435,NJBF000076550,4249 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39386215,-74.40489176,RES1,3001,,18,NE,2002,2002,3102,3,1,1989.74258,1989.74258,3505,NO,60.63,72,3,5.91,6106,114.76085,124.325837,134.164799,140.220535,I,Above,Hip,0,5701,,66.31909011,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 12436,NJBF000079377,402 LAFAYETTE BLVD,Galloway,NJ,39.410894,-74.368909,RES1,3001,,16,NE,1950,1950,3102,1,1,1168.946728,1168.946728,3507,NO,12.91,26.63,1,0.66,6106,115.320082,124.830409,134.742334,140.572622,I,Above,Gable,0,5701,,19.7703615,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12437,NJBF000079266,225 5TH STREET NO,Galloway,NJ,39.41040886,-74.36043232,RES1,3001,,43,NE,1940,1940,3102,2,2,1021.655952,1021.655952,3507,NO,26.1,35.24,1,-0.34,6106,115.496063,124.996491,134.930163,140.712884,I,Above,Gable,0,5701,,30.67297614,0,0,,,,1,1,,0.03,nav,1,1940,2,, 12438,NJBF000079315,100 LAFAYETTE PLACE,Galloway,NJ,39.41060673,-74.36604386,RES1,3001,,16,NE,1961,1961,3102,3,1,1231.824605,1231.824605,3507,NO,59.17,70.32,1,1.36,6106,115.380949,124.887721,134.807027,140.621747,I,Above,Gable,0,5701,,64.74148005,0,1.1,,,,1,1,,0.03,nav,1,1961,3,, 12439,NJBF000079196,208 4TH STREET NO,Galloway,NJ,39.41009238,-74.36189082,RES1,3001,,15,NE,1926,1926,3102,1,1,860.5654549,860.5654549,3507,NO,19.45,34.27,1,0.44,6106,115.47005,124.97183,134.902025,140.69384,I,Above,Hip,0,5701,,26.86049743,0,0,,,,1,1,,0.03,nav,1,1926,1,, 12440,NJBF000079203,11 GIRARD PLACE,Galloway,NJ,39.41013712,-74.36744346,RES1,3001,,17,NE,2017,2017,3102,3,1,1433.672312,1433.672312,3507,NO,50.11,64.72,1,0.19,6106,115.357624,124.865784,134.781949,140.605476,I,Above,Hip,0,5701,,57.41532123,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 12441,NJBF000079078,203 ROOSEVELT BLVD SO,Galloway,NJ,39.40938524,-74.36390118,RES1,3001,,15,NE,1955,1955,3102,1,1,960.5978123,960.5978123,3507,NO,17.96,31.44,1,2.49,6106,115.437003,124.940562,134.866196,140.670961,I,Above,Hip,0,5701,,24.69720614,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12442,NJBF000079046,101 2ND STREET SO,Galloway,NJ,39.40918466,-74.36565669,RES1,3001,,16,NE,1955,1955,3102,1,1,1899.693179,1899.693179,3507,NO,21.3,35.01,1,2.52,6106,115.403684,124.909158,134.830516,140.645734,I,Above,Gable,0,5701,,28.15850115,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 12443,NJBF000078990,216 2ND STREET NO,Galloway,NJ,39.40884737,-74.36277564,RES1,3001,,16,NE,1955,1955,3102,2,1,966.4717464,966.4717464,3507,NO,32.83,45.67,1,2.3,6106,115.465347,124.967267,134.896146,140.695412,I,Above,Hip,0,5701,,39.25111558,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 12444,NJBF000078942,109 4TH STREET SO,Galloway,NJ,39.40853235,-74.36729129,RES1,3001,,15,NE,1951,1951,3102,1,1,756.5057208,756.5057208,3507,NO,11,21.54,1,0.49,6106,115.377548,124.884588,134.802335,140.628108,I,Above,Gable,0,5701,,16.27136055,0,0,,,,1,1,,0.03,nav,1,1951,1,, 12445,NJBF000078818,141 5TH STREET SO,Galloway,NJ,39.40775332,-74.36773717,RES1,3001,,43,NE,1951,1951,3102,2,2,1492.531552,1492.531552,3507,NO,39.58,48.6,1,1.46,6106,115.376737,124.883846,134.801044,140.630871,I,Above,Hip,0,5701,,44.08779746,0,0,,,,1,1,,0.03,nav,1,1951,2,, 12446,NJBF000078768,,Galloway,NJ,39.40743538,-74.37037141,RES1,3001,,NaN,NE,1984,0,3102,2,1,1736.260909,1736.260909,3507,NO,23.87,34.88,1,1.52,6106,115.32676,124.837048,134.747933,140.593212,I,Above,Gable,0,5701,,29.37097323,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12447,NJBF000078778,,Galloway,NJ,39.40750967,-74.37023652,RES1,3001,,NaN,NE,1984,0,3102,2,1,507.2177084,507.2177084,3507,NO,37.71,51.31,1,1.88,6106,115.328685,124.838843,134.750005,140.594384,I,Above,Flat,0,5701,,44.51055278,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12448,NJBF000078699,,Galloway,NJ,39.40699066,-74.36475976,RES1,3001,,NaN,NE,1969,0,3102,2,1,1455.662526,1455.662526,3507,NO,24.48,31.63,1,-0.62,6106,115.444954,124.947894,134.873089,140.687379,I,Above,Hip,0,5701,,28.05227729,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12449,NJBF000080197,708 W SHORE DR,Galloway,NJ,39.41422891,-74.38112929,RES1,3001,,NaN,NE,1956,1956,3103,5,1,1614.020435,1614.020435,3505,NO,97.51,110.26,3,8.91,6106,115.037821,124.565112,134.444513,140.333374,I,Above,Flat,0,5701,,103.8845332,0,0,,,,1,1,,0.03,nav,1,1956,5,, 12450,NJBF000082588,157 S MILL ROAD,Galloway,NJ,39.43128898,-74.51542127,RES1,3001,,17,NE,2003,2003,3102,2,1,1809.134662,1809.134662,3505,NO,28.13,39.02,3,5.62,6110,112.11486,121.93294,131.53506,137.668441,I,Above,Gable,0,5701,,33.57453937,0,0,,,,1,1,,0.35,nav,1,2003,2,, 12451,NJBF000078445,519 W BRIGANTINE AVE,Galloway,NJ,39.405558,-74.3668955,RES1,3001,,43,NE,1955,1955,3102,2,3,612.4073421,612.4073421,3505,NO,39.17,46.54,3,8.48,6106,115.417006,124.921568,134.842388,140.671775,I,Above,Flat,0,5701,,42.8559577,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12452,NJBF000077428,2707 BAYSHORE AVE,Galloway,NJ,39.39856581,-74.38538968,RES1,3001,,20,NE,2007,2007,3102,3,1,2682.979143,2682.979143,3507,NO,50.19,57.81,1,1.62,6106,115.114438,124.642542,134.522918,140.469285,I,Above,Flat,0,5701,,54.00087695,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 12453,NJBF000080998,31 MACDONALD PLACE,Galloway,NJ,39.41716695,-74.36700064,RES1,3001,,15,NE,1980,1980,3102,1,1,1760.275247,1760.275247,3507,NO,18.52,27.46,1,1.15,6106,115.293662,124.804404,134.71577,140.523878,I,Above,Gable,0,5701,,22.99252995,0,0,,,,1,1,,0.03,nav,1,1980,1,, 12454,NJBF000077000,,Galloway,NJ,39.3958025,-74.38877,RES3D,3001,,NaN,ME,1969,0,3301,2,1,5317.60267,5317.60267,3507,NO,33.79,47.39,1,-0.12,6106,115.074558,124.607063,134.481087,140.451935,I,Above,Flat,0,NaN,,40.58874816,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12455,NJBF000076751,3212-18 ATL-BRIGANTINE BL,Galloway,NJ,39.39466207,-74.38753773,COM1,3001,,NaN,ME,1969,0,3401,2,1,5981.629137,5981.629137,3507,NO,23.28,34.03,1,1.16,6106,115.112315,124.641666,134.519113,140.486394,I,Above,Flat,0,NaN,,28.65709236,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12456,NJBF000076746,,Galloway,NJ,39.3946424,-74.38624793,COM1,3001,,NaN,ME,1969,0,3401,3,1,9907.441534,9907.441534,3507,NO,38.06,49.56,1,2.89,6106,115.139119,124.666029,134.546474,140.506998,I,Above,Flat,0,NaN,,43.81048552,0,0,,,,1,1,,0.03,nav,1,1969,3,, 12457,NJBF000080988,1327 OUIMET RD,Galloway,NJ,39.4171165,-74.3757505,RES1,3001,,16,NE,1985,1985,3103,1,1,1324.314753,1324.314753,3505,NO,25.82,36.44,3,8.72,6106,115.117563,124.638217,134.528049,140.383343,I,Above,Gable,0,5701,,31.12761262,0,0,,,,1,1,,0.03,nav,1,1985,1,, 12458,NJBF000079856,104 HEALD RD,Galloway,NJ,39.41311427,-74.36088656,RES1,3001,,15,NE,1950,1950,3102,1,1,1501.786444,1501.786444,3507,NO,18.54,29.27,1,2.17,6106,115.45857,124.96118,134.891533,140.672096,I,Above,Hip,0,5701,,23.90544175,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 12459,NJBF000080290,600 LAFAYETTE BLVD,Galloway,NJ,39.41458239,-74.37866765,RES1,3001,,16,NE,1960,1960,3103,1,1,1814.238285,1814.238285,3505,NO,17.11,27.17,3,6.58,6106,115.084235,124.608228,134.493232,140.368721,I,Above,Hip,0,5701,,22.14134936,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12460,NJBF000078373,243 8TH STREET SO,Galloway,NJ,39.40512243,-74.36867679,RES1,3001,,NaN,NE,1950,1950,3102,2,2,1037.629926,1037.629926,3505,NO,26.41,35.54,3,3.17,6106,115.385559,124.892123,134.808795,140.649224,I,Above,Hip,0,5701,,30.97555911,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12461,NJBF000080932,202 ROOSEVELT BLVD NO,Galloway,NJ,39.41693132,-74.37050852,RES1,3001,,16,NE,1972,1972,3102,1,1,2333.680261,2333.680261,3507,NO,16.17,27.45,1,1.42,6106,115.225375,124.739853,134.642707,140.470443,I,Above,Gable,0,5701,,21.8132413,0,1.2,,,,1,1,,0.03,nav,1,1972,1,, 12462,NJBF000081093,802 FOWNES AVE,Galloway,NJ,39.41751457,-74.36386778,RES1,3001,,16,NE,1976,1976,3102,2,1,1346.333551,1346.333551,3507,NO,25.53,37.38,1,-0.46,6106,115.353092,124.860783,134.779708,140.569724,I,Above,Gable,0,5701,,31.4544853,0,0,,,,1,1,,0.03,nav,1,1976,2,, 12463,NJBF000080908,1314 OUIMET RD,Galloway,NJ,39.41682301,-74.3745943,RES1,3001,,17,NE,1986,1986,3102,1,1,1694.008669,1694.008669,3507,NO,14.6,25.31,1,0.27,6106,115.14394,124.663146,134.556059,140.40584,I,Above,Gable,0,5701,,19.95756368,0,0,,,,1,1,,0.03,nav,1,1986,1,, 12464,NJBF000080972,17 11TH STREET NO,Galloway,NJ,39.41706313,-74.36120732,RES1,3001,,16,NE,1978,1978,3102,1,1,1586.060868,1586.060868,3507,NO,20.19,28.5,1,1.77,6106,115.411163,124.91612,134.842216,140.617873,I,Above,Hip,0,5701,,24.34526622,0,0,,,,1,1,,0.03,nav,1,1978,1,, 12465,NJBF000080959,1335 OUIMET RD,Galloway,NJ,39.41702785,-74.37638888,RES1,3001,,16,NE,1981,1981,3103,2,1,1943.307133,1943.307133,3505,YES,30.15,35.42,3,2.07,6106,115.10552,124.626948,134.515307,140.374107,I,Above,Gable,0,5701,,32.78106658,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 12466,NJBF000081021,1340 VARDON RD,Galloway,NJ,39.41724427,-74.3770081,RES1,3001,,17,NE,1988,1988,3103,1,1,2108.30497,2108.30497,3505,NO,21.06,32.71,3,5.68,6106,115.090788,124.613009,134.499672,140.361271,I,Above,Gable,0,5701,,26.88088635,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 12467,NJBF000081032,1338 VARDON RD,Galloway,NJ,39.41728571,-74.3768261,RES1,3001,,17,NE,1989,1989,3103,2,1,1264.831169,1264.831169,3505,NO,36.52,48.84,3,1.16,6106,115.094049,124.616048,134.503113,140.363687,I,Above,Flat,0,5701,,42.68229364,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 12468,NJBF000080968,10 KIRBY PLACE,Galloway,NJ,39.41704984,-74.36231441,RES1,3001,,16,NE,1958,1958,3102,1,1,1512.499173,1512.499173,3507,NO,16.63,26.6,1,0.39,6106,115.389085,124.895084,134.818375,140.600376,I,Above,Gable,0,5701,,21.6152921,0,0,,,,1,1,,0.03,nav,1,1958,1,, 12469,NJBF000081058,11 11TH STREET NO,Galloway,NJ,39.41737405,-74.36154554,RES1,3001,,19,NE,2009,2009,3102,3,1,2673.316826,2673.316826,3507,NO,35.18,44.01,1,0.39,6106,115.401156,124.906566,134.831513,140.608592,I,Above,Hip,0,5701,,39.59674736,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 12470,NJBF000080707,56 KIRKWOOD CIRCLE,Galloway,NJ,39.41597949,-74.36332516,RES1,3001,,17,NE,1997,1997,3102,2,1,1530.171858,1530.171858,3507,NO,36.31,48.48,1,1.28,6106,115.379833,124.886359,134.808051,140.597627,I,Above,Hip,0,5701,,42.39140595,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 12471,NJBF000080876,,Galloway,NJ,39.41668544,-74.37303974,RES1,3001,,NaN,NE,1969,0,3102,2,1,2250.557903,2250.557903,3507,NO,34.57,43.04,1,-0.83,6106,115.176773,124.694102,134.590943,140.43274,I,Above,Gable,0,5701,,38.80355014,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12472,NJBF000080895,1320 OUIMET RD,Galloway,NJ,39.41676112,-74.37510285,RES1,3001,,17,NE,1985,1985,3103,2,1,2030.05032,2030.05032,3505,NO,39.5,44.52,3,4.4,6106,115.134272,124.654084,134.545812,140.398393,I,Above,Gable,0,5701,,42.00887759,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 12473,NJBF000080717,62 KIRKWOOD CIRCLE,Galloway,NJ,39.41600537,-74.3638808,RES1,3001,,16,NE,1972,1972,3102,1,1,1486.132453,1486.132453,3507,NO,13.86,26.71,1,-0.91,6106,115.368389,124.875486,134.795748,140.588429,I,Above,Gable,0,5701,,20.28467225,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12474,NJBF000080220,110 WASHINGTON DR,Galloway,NJ,39.41433496,-74.36855799,RES1,3001,,16,NE,1969,1969,3102,2,1,1296.183592,1296.183592,3507,YES,23.66,36.74,1,-0.92,6106,115.291438,124.802877,134.712859,140.534695,I,Above,Gable,0,5701,,30.1989813,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12475,NJBF000080731,701 E SHORE DR,Galloway,NJ,39.41605668,-74.36452026,RES1,3001,,16,NE,1971,1971,3102,2,1,1927.292324,1927.292324,3507,NO,33.29,45.38,1,1.93,6106,115.355004,124.862772,134.781374,140.577573,I,Above,Gable,0,5701,,39.33133918,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 12476,NJBF000080619,43 KIRKWOOD CIRCLE,Galloway,NJ,39.41562934,-74.36407445,RES1,3001,,18,NE,2001,2001,3102,2,1,2254.028747,2254.028747,3507,NO,32.29,44.41,1,0.26,6106,115.368393,124.875524,134.795631,140.590059,I,Above,Gable,0,5701,,38.35055279,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 12477,NJBF000080617,41 KIRKWOOD CIRCLE,Galloway,NJ,39.41562719,-74.36385057,RES1,3001,,16,NE,1982,1982,3102,2,1,1381.443548,1381.443548,3507,NO,23.35,31.84,1,2.34,6106,115.372898,124.8798,134.800473,140.593642,I,Above,Flat,0,5701,,27.59129299,0,0.2,,,,1,1,,0.03,nav,1,1982,2,, 12478,NJBF000080583,5 MACDONALD PLACE,Galloway,NJ,39.41553257,-74.36628004,RES1,3001,,17,NE,1985,1985,3102,1,1,1436.030212,1436.030212,3507,NO,14.11,28.21,1,-0.9,6106,115.324992,124.834387,134.749025,140.556023,I,Above,Gable,0,5701,,21.15872257,0,0,,,,1,1,,0.03,nav,1,1985,1,, 12479,NJBF000080544,38 11TH STREET NO,Galloway,NJ,39.41538149,-74.35986775,RES1,3001,,17,NE,1989,1989,3102,2,1,2094.520946,2094.520946,3507,NO,22.08,30.75,1,0.16,6106,115.455427,124.958303,134.889328,140.660083,I,Above,Gable,0,5701,,26.4126767,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 12480,NJBF000080504,21 KIRKWOOD CIRCLE,Galloway,NJ,39.41528699,-74.36303588,RES1,3001,,18,NE,2000,2000,3102,2,1,1917.683073,1917.683073,3507,NO,26.32,32.19,1,0.07,6106,115.392798,124.898721,134.821756,140.610886,I,Above,Hip,0,5701,,29.25528313,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 12481,NJBF000080501,718 BOBBY JONES RD,Galloway,NJ,39.41528154,-74.38143942,RES1,3001,,17,NE,2017,2017,3103,3,1,1673.060655,1673.060655,3505,NO,39.69,47.1,3,1.48,6106,115.020792,124.548625,134.426379,140.314628,I,Above,Flat,0,5701,,43.39793447,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 12482,NJBF000080431,32 KIRKWOOD CIRCLE,Galloway,NJ,39.41504221,-74.36217184,RES1,3001,,17,NE,1993,1993,3102,1,1,1633.858816,1633.858816,3507,NO,14.21,26.63,1,-0.39,6106,115.412698,124.917636,134.843079,140.627697,I,Above,Gable,0,5701,,20.42141132,0,1.1,,,,1,1,,0.03,nav,1,1993,1,, 12483,NJBF000079977,701 E EVANS BLVD,Galloway,NJ,39.41354678,-74.36173801,RES1,3001,,16,NE,1968,1968,3102,1,1,2072.078097,2072.078097,3507,NO,16.12,31.08,1,0.89,6106,115.436957,124.940676,134.868498,140.653226,I,Above,Gable,0,5701,,23.59876441,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 12484,NJBF000078414,900 W BEACH AVE,Galloway,NJ,39.405371,-74.370633,RES1,3001,,15,NE,1955,1955,3102,1,1,1422.196645,1422.196645,3505,NO,11.09,24.59,3,-2.07,6106,115.34326,124.85261,134.764273,140.615232,I,Above,Gable,0,5701,,17.84290382,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12485,NJBF000080432,505 SHERIDAN PLACE,Galloway,NJ,39.4150447,-74.36504953,RES1,3001,,17,NE,1990,1990,3102,2,1,1837.901766,1837.901766,3507,NO,26.66,39.68,1,1.13,6106,115.354796,124.862685,134.780842,140.581809,I,Above,Flat,0,5701,,33.17395559,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 12486,NJBF000080507,36 KIRKWOOD CIRCLE,Galloway,NJ,39.41529875,-74.36201328,RES1,3001,,17,NE,1996,1996,3102,2,1,1575.659512,1575.659512,3507,NO,32.57,46.49,1,-0.08,6106,115.413227,124.918134,134.843757,140.62702,I,Above,Gable,0,5701,,39.52650453,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 12487,NJBF000079974,107 LINCOLN DR,Galloway,NJ,39.41354082,-74.36947922,RES1,3001,,16,NE,1967,1967,3102,1,1,1659.830008,1659.830008,3507,NO,20.18,25.98,1,1.05,6106,115.281054,124.793245,134.701609,140.530011,I,Above,Gable,0,5701,,23.08080453,0,0,,,,1,1,,0.03,nav,1,1967,1,, 12488,NJBF000080425,700 STERLING PLACE,Galloway,NJ,39.41499987,-74.37996683,RES1,3001,,16,NE,1973,1973,3103,1,1,2882.843611,2882.843611,3505,NO,18.55,27.78,3,3.96,6106,115.053583,124.57938,134.460902,140.34223,I,Above,Hip,0,5701,,23.16195014,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 12489,NJBF000076615,241 33RD STREET SO,Galloway,NJ,39.39410228,-74.38688787,RES1,3001,,45,NE,1950,1950,3102,1,1,1587.404337,1587.404337,3507,NO,18.03,23.1,1,-0.08,6106,115.131799,124.659492,134.538717,140.503974,I,Above,Gable,0,5701,,20.56775103,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 12490,NJBF000078361,211 10TH STREET SO,Galloway,NJ,39.4049995,-74.370857,RES1,3001,,16,NE,1981,1981,3102,2,1,1261.45816,1261.45816,3505,NO,22.93,34.05,3,-2.5,6106,115.342651,124.852059,134.763417,140.6164,I,Above,Gable,0,5701,,28.49030424,0,0,,,,1,1,,0.03,nav,1,1981,2,, 12491,NJBF000078392,607 W BRIGANTINE AVE,Galloway,NJ,39.405228,-74.36732783,RES1,3001,,16,NE,1958,1958,3102,2,1,858.672153,858.672153,3505,NO,38.22,52.8,3,4.32,6110,115.411751,124.91663,134.836589,140.669116,I,Above,Gable,0,5701,,45.5069381,0,0,,,,1,1,,0.35,nav,1,1958,2,, 12492,NJBF000078362,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,3172.631751,3172.631751,3505,NO,36.84,44.12,3,3.57,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,40.47951737,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12493,NJBF000078336,246 8TH STREET SO,Galloway,NJ,39.40481228,-74.36906553,RES1,3001,,45,NE,1948,1948,3102,2,2,1772.048851,1772.048851,3505,NO,24.93,30.31,3,3.92,6106,115.380971,124.887832,134.803743,140.647012,I,Above,Gable,0,5701,,27.61957982,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 12494,NJBF000078681,219 5TH STREET SO,Galloway,NJ,39.406895,-74.36689,RES1,3001,,16,NE,1952,1952,3102,1,1,1754.548245,1754.548245,3507,NO,18.95,31.29,1,2.76,6106,115.402931,124.908421,134.82834,140.655043,I,Above,Hip,0,5701,,25.11920032,0,0,,,,1,1,,0.03,nav,1,1952,1,, 12495,NJBF000079923,541 LAFAYETTE BLVD,Galloway,NJ,39.41334256,-74.37616814,RES1,3001,,16,NE,1975,1975,3103,3,1,1323.867083,1323.867083,3505,NO,42.09,47.65,3,5.88,6106,115.147685,124.668105,134.560206,140.425114,I,Above,Gable,0,5701,,44.87458827,0,1.1,,,,1,1,,0.03,nav,1,1975,3,, 12496,NJBF000079589,235 8TH STREET NO,Galloway,NJ,39.41181699,-74.35848085,RES1,3001,,16,NE,1950,1950,3102,2,1,1636.306833,1636.306833,3507,YES,23.38,36.28,1,-0.3,6106,115.520451,125.01984,134.957412,140.726163,I,Above,Hip,0,5701,,29.83170276,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12497,NJBF000079584,,Galloway,NJ,39.41179162,-74.37468574,RES1,3001,,NaN,NE,1972,0,3102,2,1,2037.045345,2037.045345,3507,NO,33.41,39.72,1,1.52,6106,115.193757,124.711758,134.608737,140.468867,I,Above,Gable,0,5701,,36.56670211,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12498,NJBF000079896,539 LAFAYETTE BLVD,Galloway,NJ,39.41326548,-74.37601682,RES1,3001,,16,NE,1960,1960,3103,2,1,1597.630027,1597.630027,3505,NO,36.97,48.24,3,8.92,6106,115.151551,124.671753,134.564286,140.428551,I,Above,Flat,0,5701,,42.60860649,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 12499,NJBF000079596,107 BAYSHORE AVE,Galloway,NJ,39.41184502,-74.36807438,RES1,3001,,17,NE,2016,2016,3102,2,1,1773.622568,1773.622568,3507,NO,34.7,46.04,1,0.73,6106,115.327039,124.836835,134.750085,140.573895,I,Above,Flat,0,5701,,40.37124102,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 12500,NJBF000079899,107 8TH STREET NO,Galloway,NJ,39.41326974,-74.36025731,RES1,3001,,43,NE,1950,1950,3102,1,2,1808.775124,1808.775124,3507,NO,11.1,19.47,1,-0.24,6106,115.469594,124.971665,134.903497,140.680127,I,Above,Gable,0,5701,,15.28481002,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12501,NJBF000080199,600 BOBBY JONES RD,Galloway,NJ,39.41423935,-74.37903709,RES1,3001,,17,NE,1967,1967,3103,2,1,1793.04854,1793.04854,3505,NO,35.55,48.69,3,2.49,6106,115.080247,124.604676,134.489085,140.367182,I,Above,Gable,0,5701,,42.11823334,0,0,,,,1,1,,0.03,nav,1,1967,2,, 12502,NJBF000079025,304 W EVANS BLVD,Galloway,NJ,39.40907484,-74.36763697,RES1,3001,,16,NE,1955,1955,3102,1,1,1410.587821,1410.587821,3507,NO,14.79,24.87,1,-0.22,6106,115.364843,124.872633,134.789115,140.615789,I,Above,Hip,0,5701,,19.8320995,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12503,NJBF000078998,101 4TH STREET SO,Galloway,NJ,39.40890498,-74.36759685,RES1,3001,,17,NE,2005,2005,3102,1,1,1739.277147,1739.277147,3507,NO,16.81,28.19,1,1.42,6106,115.367438,124.875079,134.791787,140.618565,I,Above,Gable,0,5701,,22.50074198,0,0,,,,1,1,,0.03,nav,1,2005,1,, 12504,NJBF000079009,100 3RD STREET SO,Galloway,NJ,39.4089813,-74.36720474,RES1,3001,,NaN,NE,1954,0,3102,2,2,1057.741895,1057.741895,3507,NO,21.54,29.43,1,-0.23,6106,115.374563,124.881769,134.799401,140.623814,I,Above,Flat,0,5701,,25.48364585,0,0,,,,1,1,,0.03,nav,1,1954,2,, 12505,NJBF000079252,306 E BEACH AVE,Galloway,NJ,39.41035381,-74.36213201,RES1,3001,,16,NE,1962,1962,3102,3,1,1447.926786,1447.926786,3507,NO,37.03,42.28,1,1.79,6106,115.462445,124.964659,134.894041,140.686776,I,Above,Hip,0,5701,,39.65505223,0,1.1,,,,1,1,,0.03,nav,1,1962,3,, 12506,NJBF000079254,435 HACKNEY PLACE,Galloway,NJ,39.41036177,-74.37249547,RES1,3001,,16,NE,1977,1977,3102,1,1,1858.908131,1858.908131,3507,NO,15.13,27.69,1,0.99,6106,115.253039,124.767614,134.671087,140.522218,I,Above,Flat,0,5701,,21.41059957,0,0,,,,1,1,,0.03,nav,1,1977,1,, 12507,NJBF000080196,219 13TH STREET NO,Galloway,NJ,39.41422802,-74.35522116,RES1,3001,,17,NE,1950,1950,3102,3,1,1289.28367,1289.28367,3507,YES,55.37,69.43,1,2.14,6106,115.560511,125.058467,135.002481,140.747798,I,Above,Hip,0,5701,,62.40310129,0,0,,,,1,1,,0.03,nav,1,1950,3,, 12508,NJBF000080176,112 ROOSEVELT BLVD NO,Galloway,NJ,39.41418327,-74.3695073,RES1,3001,,16,NE,1961,1961,3102,1,1,1384.200737,1384.200737,3507,NO,14.28,26.5,1,2.56,6106,115.273852,124.786322,134.694074,140.521425,I,Above,Flat,0,5701,,20.39235312,0,1.1,,,,1,1,,0.03,nav,1,1961,1,, 12509,NJBF000080171,548 CAVERLY DR,Galloway,NJ,39.41414872,-74.37673749,RES1,3001,,16,NE,1979,1979,3103,2,1,1124.690956,1124.690956,3505,NO,32.21,43.69,3,1.45,6106,115.127862,124.649224,134.539265,140.405555,I,Above,Gable,0,5701,,37.94736272,0,0,,,,1,1,,0.03,nav,1,1979,2,, 12510,NJBF000080193,1313 E BRIGANTINE AVE,Galloway,NJ,39.41422001,-74.35489857,RES1,3001,,17,NE,2002,2002,3102,3,1,1855.158586,1855.158586,3507,NO,45.79,60.51,1,0.31,6106,115.567034,125.064704,135.009562,140.752968,I,Above,Flat,0,5701,,53.14751592,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 12511,NJBF000080324,907 E EVANS BLVD,Galloway,NJ,39.414701,-74.36012853,RES1,3001,,16,NE,1965,1965,3102,1,1,1528.035073,1528.035073,3507,YES,13.4,19.03,1,-0.57,6106,115.457256,124.960015,134.890963,140.664385,I,Above,Hip,0,5701,,16.21794928,0,0,,,,1,1,,0.03,nav,1,1965,1,, 12512,NJBF000080354,604 LAFAYETTE BLVD,Galloway,NJ,39.41479995,-74.37872561,RES1,3001,,16,NE,1974,1974,3103,1,1,1567.24202,1567.24202,3505,NO,20.84,35.22,3,3.68,6106,115.08083,124.604936,134.489613,140.36496,I,Above,Gable,0,5701,,28.0260415,0,0,,,,1,1,,0.03,nav,1,1974,1,, 12513,NJBF000080390,201 13TH STREET NO,Galloway,NJ,39.41490305,-74.35615372,RES1,3001,,43,NE,1976,1976,3102,2,2,1021.593039,1021.593039,3507,NO,36.98,47.65,1,-0.82,6106,115.5348,125.03401,134.975021,140.724783,I,Above,Gable,0,5701,,42.31445396,0,0,,,,1,1,,0.03,nav,1,1976,2,, 12514,NJBF000079996,49 HEALD RD,Galloway,NJ,39.41360738,-74.36269171,RES1,3001,,17,NE,2000,2000,3102,2,1,1781.397754,1781.397754,3507,NO,25.42,32.98,1,0.72,6106,115.417154,124.921886,134.847233,140.637343,I,Above,Gable,0,5701,,29.1981165,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 12515,NJBF000080015,41 HEALD RD,Galloway,NJ,39.41367574,-74.36349329,RES1,3001,,16,NE,1977,1977,3102,1,1,1461.80237,1461.80237,3507,NO,17.15,26.38,1,1.39,6106,115.400326,124.905929,134.829187,140.623759,I,Above,Gable,0,5701,,21.7621005,0,0,,,,1,1,,0.03,nav,1,1977,1,, 12516,NJBF000079963,8 HEALD RD,Galloway,NJ,39.4134878,-74.36715047,RES1,3001,,15,NE,1968,1968,3102,1,1,1823.12301,1823.12301,3507,NO,17.79,31.84,1,1.71,6106,115.328612,124.838105,134.752318,140.56789,I,Above,Gable,0,5701,,24.81583443,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 12517,NJBF000080020,1001 E BEACH AVE,Galloway,NJ,39.413683,-74.35835143,RES1,3001,,19,NE,2012,2012,3102,3,1,1963.829503,1963.829503,3507,NO,45.55,52.1,1,-0.17,6106,115.503524,125.003991,134.940369,140.705139,I,Above,Flat,0,5701,,48.82753836,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 12518,NJBF000080058,501 SHERIDAN PLACE,Galloway,NJ,39.41378551,-74.36522294,RES1,3001,,16,NE,1972,1972,3102,1,1,2610.582028,2610.582028,3507,NO,16.09,23.12,1,0.17,6106,115.364359,124.87186,134.790659,140.594858,I,Above,Gable,0,5701,,19.60658565,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12519,NJBF000080039,110 10TH STREET NO,Galloway,NJ,39.4137417,-74.35906456,RES1,3001,,43,NE,1980,1980,3102,2,2,1578.527646,1578.527646,3507,NO,27.71,33.46,1,0.4,6106,115.48859,124.989775,134.924268,140.693125,I,Above,Gable,0,5701,,30.58522289,0,0,,,,1,1,,0.03,nav,1,1980,2,, 12520,NJBF000080068,551 LAFAYETTE BLVD,Galloway,NJ,39.41381982,-74.37690818,RES1,3001,,16,NE,1964,1964,3103,1,1,1364.242692,1364.242692,3505,NO,25.33,31.99,3,7.35,6106,115.127768,124.649278,134.539183,140.407032,I,Above,Gable,0,5701,,28.66153139,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 12521,NJBF000079958,543 LAFAYETTE BLVD,Galloway,NJ,39.41345917,-74.37633969,RES1,3001,,16,NE,1960,1960,3103,3,1,1589.861108,1589.861108,3505,NO,39.49,53.22,3,4.01,6106,115.143002,124.663678,134.555264,140.420848,I,Above,Flat,0,5701,,46.35581417,0,1.2,,,,1,1,,0.03,nav,1,1960,3,, 12522,NJBF000079997,45 HEALD RD,Galloway,NJ,39.41361462,-74.36305761,RES1,3001,,16,NE,1968,1968,3102,2,1,1362.295482,1362.295482,3507,YES,28.31,40.88,1,2.34,6106,115.409711,124.914827,134.839239,140.631432,I,Above,Hip,0,5701,,34.59500256,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 12523,NJBF000080013,43 HEALD RD,Galloway,NJ,39.41366046,-74.36328832,RES1,3001,,17,NE,1995,1995,3102,2,1,2054.575726,2054.575726,3507,NO,38.55,43.9,1,0.23,6106,115.404616,124.909996,134.833787,140.627216,I,Above,Hip,0,5701,,41.22404733,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 12524,NJBF000080049,559 W SHORE DR,Galloway,NJ,39.41376136,-74.37811557,RES1,3001,,16,NE,1965,1965,3103,1,1,2033.124058,2033.124058,3505,NO,14.73,29.2,3,2.89,6106,115.103849,124.626949,134.513983,140.388273,I,Above,Gable,0,5701,,21.96504694,0,0,,,,1,1,,0.03,nav,1,1965,1,, 12525,NJBF000080069,1100 E BEACH AVE,Galloway,NJ,39.41382466,-74.35731266,RES1,3001,,19,NE,2010,2010,3102,3,1,1455.566569,1455.566569,3507,NO,32.66,40.55,1,-0.82,6106,115.522844,125.022426,134.961361,140.719774,I,Above,Hip,0,5701,,36.6021488,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 12526,NJBF000079952,4 HEALD RD,Galloway,NJ,39.4134525,-74.3675685,RES1,3001,,16,NE,1971,1971,3102,2,1,1125.178348,1125.178348,3507,YES,31.7,44.96,1,-0.71,6106,115.320533,124.830484,134.74368,140.561658,I,Above,Flat,0,5701,,38.32833732,0,0,,,,1,1,,0.03,nav,1,1971,2,, 12527,NJBF000079975,102 ROOSEVELT BLVD NO,Galloway,NJ,39.41354281,-74.36896617,RES1,3001,,15,NE,1964,1964,3102,1,1,1304.365597,1304.365597,3507,NO,20.84,28.8,1,2.53,6106,115.291394,124.802987,134.712624,140.538191,I,Above,Hip,0,5701,,24.81706448,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 12528,NJBF000080064,105 9TH STREET NO,Galloway,NJ,39.4138153,-74.35966725,RES1,3001,,16,NE,1955,1955,3102,2,1,1421.824463,1421.824463,3507,NO,27.29,38.48,1,-0.49,6106,115.475751,124.977561,134.910449,140.682698,I,Above,Gable,0,5701,,32.88700452,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 12529,NJBF000080035,,Galloway,NJ,39.41372881,-74.37975477,RES1,3001,,NaN,NE,1960,0,3103,6,1,2541.577382,2541.577382,3505,NO,113.18,122.73,3,7.95,6106,115.070873,124.596189,134.479304,140.362158,I,Above,Hip,0,5701,,117.9537784,0,0,,,,1,1,,0.03,nav,1,1960,6,, 12530,NJBF000079865,110 LINCOLN DR,Galloway,NJ,39.41315262,-74.36969008,RES1,3001,,16,NE,1967,1967,3102,2,1,1483.100902,1483.100902,3507,YES,29.32,34.56,1,1.89,6106,115.280808,124.793093,134.701256,140.531554,I,Above,Gable,0,5701,,31.94159934,0,0,,,,1,1,,0.03,nav,1,1967,2,, 12531,NJBF000079767,113 QUAY BLVD,Galloway,NJ,39.41274471,-74.3603789,RES1,3001,,15,NE,1950,1950,3102,1,1,742.3575,742.3575,3507,NO,19.32,26.94,1,2.02,6106,115.472629,124.974506,134.906461,140.684717,I,Above,Gable,0,5701,,23.12911044,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12532,NJBF000079770,527 LAFAYETTE BLVD,Galloway,NJ,39.41276072,-74.37512065,RES1,3001,,16,NE,1972,1972,3103,1,1,1491.095264,1491.095264,3505,NO,15.5,23.56,3,-2.55,6106,115.174919,124.693807,134.588938,140.449451,I,Above,Gable,0,5701,,19.52783864,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12533,NJBF000079831,108 LINCOLN DR,Galloway,NJ,39.41302785,-74.36947538,RES1,3001,,16,NE,1957,1957,3102,1,1,1597.38083,1597.38083,3507,NO,15.46,24.56,1,1.58,6106,115.286448,124.798426,134.707227,140.536576,I,Above,Gable,0,5701,,20.00911355,0,0,,,,1,1,,0.03,nav,1,1957,1,, 12534,NJBF000079808,531 LAFAYETTE BLVD,Galloway,NJ,39.41294059,-74.37540249,RES1,3001,,16,NE,1973,1973,3103,1,1,2213.837082,2213.837082,3505,NO,23.57,30.27,3,6.14,6106,115.167363,124.686671,134.580969,140.442619,I,Above,Hip,0,5701,,26.92134729,0,0,,,,1,1,,0.03,nav,1,1973,1,, 12535,NJBF000079804,534 W SHORE DR,Galloway,NJ,39.41291065,-74.37638287,RES1,3001,,16,NE,1970,1970,3103,2,1,2251.033562,2251.033562,3505,NO,35.65,45.66,3,3.61,6106,115.147769,124.668355,134.560292,140.427207,I,Above,Gable,0,5701,,40.6563331,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 12536,NJBF000079617,501 LAFAYETTE BLVD,Galloway,NJ,39.41198317,-74.37304895,RES1,3001,,16,NE,1957,1957,3102,1,1,2530.859314,2530.859314,3507,NO,11.88,20.96,1,-0.58,6106,115.224966,124.74092,134.641752,140.492673,I,Above,Gable,0,5701,,16.41827308,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 12537,NJBF000079743,523 LAFAYETTE BLVD,Galloway,NJ,39.41265007,-74.37480922,RES1,3001,,16,NE,1984,1984,3102,1,1,1846.144167,1846.144167,3507,NO,12.08,19.3,1,-0.32,6106,115.182392,124.70084,134.596823,140.455891,I,Above,Gable,0,5701,,15.69306341,0,0,,,,1,1,,0.03,nav,1,1984,1,, 12538,NJBF000079619,101 HAMILTON PLACE,Galloway,NJ,39.41198808,-74.3626103,RES1,3001,,43,NE,1970,1970,3102,1,2,1798.410795,1798.410795,3507,NO,16.01,23.3,1,1.94,6106,115.435694,124.939435,134.866319,140.65885,I,Above,Gable,0,5701,,19.6548957,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 12539,NJBF000079731,237 QUAY BLVD,Galloway,NJ,39.41258505,-74.35758124,RES1,3001,,43,NE,1955,1955,3102,2,2,824.7313316,824.7313316,3507,NO,33.31,42.28,1,-0.85,6106,115.530447,125.029476,134.968747,140.730851,I,Above,Flat,0,5701,,37.7944612,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12540,NJBF000079786,600 E EVANS BLVD,Galloway,NJ,39.41283093,-74.3618451,RES1,3001,,16,NE,1976,1976,3102,1,1,1999.409471,1999.409471,3507,NO,10.88,18.68,1,0.25,6106,115.442273,124.945698,134.873842,140.660451,I,Above,Hip,0,5701,,14.77780096,0,0,,,,1,1,,0.03,nav,1,1976,1,, 12541,NJBF000079749,512 CAVERLY DR,Galloway,NJ,39.4126871,-74.37416177,RES1,3001,,16,NE,1980,1980,3102,1,1,1538.010189,1538.010189,3507,NO,18.28,33.08,1,-0.89,6106,115.195127,124.712753,134.610286,140.465814,I,Above,Gable,0,5701,,25.67890442,0,0,,,,1,1,,0.03,nav,1,1980,1,, 12542,NJBF000079551,102 HAMILTON PLACE,Galloway,NJ,39.41165743,-74.36290847,RES1,3001,,43,NE,1969,1969,3102,3,2,1234.177846,1234.177846,3507,NO,48.25,57.52,1,2.61,6106,115.43316,124.937025,134.863418,140.658265,I,Above,Flat,0,5701,,52.88739624,0,0,,,,1,1,,0.03,nav,1,1969,3,, 12543,NJBF000079630,106 6TH STREET NO,Galloway,NJ,39.41204595,-74.36183498,RES1,3001,,43,NE,1956,1956,3102,2,2,1354.406591,1354.406591,3507,YES,31.89,38.03,1,1.54,6106,115.450677,124.953631,134.882439,140.670389,I,Above,Gable,0,5701,,34.95929643,0,0,,,,1,1,,0.03,nav,1,1956,2,, 12544,NJBF000079663,706 E BEACH AVE,Galloway,NJ,39.41222225,-74.35954665,RES1,3001,,16,NE,1955,1955,3102,1,1,1405.293382,1405.293382,3507,NO,17.95,31.71,1,2.73,6106,115.494808,124.995525,134.930034,140.704346,I,Above,Flat,0,5701,,24.82881603,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12545,NJBF000079473,407 LAFAYETTE BLVD,Galloway,NJ,39.41131133,-74.36919834,RES1,3001,,16,NE,1956,1956,3102,1,1,1288.106882,1288.106882,3507,NO,13.47,19.5,1,-0.36,6106,115.30989,124.820772,134.73165,140.562744,I,Above,Gable,0,5701,,16.48283737,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12546,NJBF000079487,206 7TH STREET NO,Galloway,NJ,39.41135915,-74.35974906,RES1,3001,,15,NE,1955,1955,3102,1,1,1058.683305,1058.683305,3507,NO,19.42,33.37,1,1.14,6106,115.499802,125.000161,134.934841,140.711858,I,Above,Gable,0,5701,,26.39289735,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12547,NJBF000079444,517 W SHORE DR,Galloway,NJ,39.41115752,-74.37479869,RES1,3001,,16,NE,1972,1972,3102,2,1,1680.312544,1680.312544,3507,NO,22.9,34.62,1,0.14,6106,115.198035,124.715955,134.613164,140.47518,I,Above,Gable,0,5701,,28.76277528,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 12548,NJBF000079407,515 HACKNEY PLACE,Galloway,NJ,39.4110037,-74.3746923,RES1,3001,,16,NE,1956,1956,3102,1,1,1515.356867,1515.356867,3507,NO,12.12,19.23,1,0.86,6106,115.201804,124.719525,134.617116,140.478869,I,Above,Hip,0,5701,,15.67292483,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12549,NJBF000079482,409 LAFAYETTE BLVD,Galloway,NJ,39.41134464,-74.36937658,RES1,3001,,NaN,NE,1965,1965,3102,2,1,1564.43554,1564.43554,3507,NO,35.05,46,1,1.31,6106,115.305917,124.817032,134.727438,140.559461,I,Above,Hip,0,5701,,40.52263612,0,0,,,,1,1,,0.03,nav,1,1965,2,, 12550,NJBF000079518,118 BAYSHORE AVE,Galloway,NJ,39.41149639,-74.36866025,RES1,3001,,16,NE,1964,1964,3102,1,1,1873.909237,1873.909237,3507,NO,11.94,18.61,1,-0.95,6106,115.318836,124.829159,134.741228,140.568973,I,Above,Gable,0,5701,,15.27428393,0,0,,,,1,1,,0.03,nav,1,1964,1,, 12551,NJBF000079464,3 GIRARD PLACE,Galloway,NJ,39.41127259,-74.36719343,RES1,3001,,16,NE,1962,1962,3102,1,1,1667.589714,1667.589714,3507,NO,14.45,20.96,1,1.12,6106,115.350794,124.859267,134.775174,140.595128,I,Above,Hip,0,5701,,17.70650286,0,0,,,,1,1,,0.03,nav,1,1962,1,, 12552,NJBF000079167,,Galloway,NJ,39.4099435,-74.359849,RES3D,3001,,NaN,E,1969,0,3303,4,1,4222.487632,4222.487632,3507,NO,57.3,69.72,1,2.03,6106,115.512689,125.01218,134.947698,140.727836,I,Above,Hip,0,NaN,,63.5118624,0,0,,,,1,1,,0.03,nav,1,1969,4,, 12553,NJBF000079543,,Galloway,NJ,39.41160323,-74.35941033,RES1,3001,,NaN,NE,1969,0,3102,2,1,1505.930671,1505.930671,3507,NO,34.12,47.02,1,-0.39,6106,115.504049,125.004225,134.939581,140.714176,I,Above,Hip,0,5701,,40.56980871,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12554,NJBF000079350,146 RISLEY RD,Galloway,NJ,39.41076076,-74.37290886,RES1,3001,,15,NE,1984,1984,3102,1,1,1716.226553,1716.226553,3507,NO,12.72,18.29,1,0.39,6106,115.240492,124.755777,134.657923,140.510514,I,Above,Gable,0,5701,,15.50381271,0,0,,,,1,1,,0.03,nav,1,1984,1,, 12555,NJBF000079162,459 W SHORE DR,Galloway,NJ,39.4099205,-74.3735075,RES1,3001,,16,NE,2015,2015,3102,2,1,1023.460864,1023.460864,3507,NO,29.98,39.33,1,-0.14,6106,115.237104,124.75281,134.654138,140.511683,I,Above,Gable,0,5701,,34.65822178,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 12556,NJBF000079411,416 LAFAYETTE BLVD,Galloway,NJ,39.41102844,-74.37022389,RES1,3001,,16,NE,1968,1968,3102,1,1,1385.234759,1385.234759,3507,NO,15.64,29.89,1,-0.94,6106,115.292089,124.804092,134.712648,140.549979,I,Above,Gable,0,5701,,22.76322735,0,0,,,,1,1,,0.03,nav,1,1968,1,, 12557,NJBF000079358,500 W SHORE DR,Galloway,NJ,39.4107934,-74.37510571,RES1,3001,,16,NE,1966,1966,3103,1,1,2132.159032,2132.159032,3505,NO,18.7,28.89,3,3.11,6106,115.195592,124.713784,134.610532,140.474939,I,Above,Flat,0,5701,,23.79346865,0,0,,,,1,1,,0.03,nav,1,1966,1,, 12558,NJBF000079372,302 E EVANS BLVD,Galloway,NJ,39.410876,-74.3636875,RES1,3001,,16,NE,1966,1966,3102,2,1,1144.870704,1144.870704,3507,YES,28.18,36.03,1,2.14,6106,115.425653,124.929905,134.85494,140.655699,I,Above,Gable,0,5701,,32.10569649,0,0,,,,1,1,,0.03,nav,1,1966,2,, 12559,NJBF000079392,513 HACKNEY PLACE,Galloway,NJ,39.41094188,-74.37449642,RES1,3001,,17,NE,1997,1997,3102,2,1,1634.566467,1634.566467,3507,NO,34.76,42.05,1,1.21,6106,115.206425,124.723862,134.621981,140.482804,I,Above,Hip,0,5701,,38.40258873,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 12560,NJBF000079106,,Galloway,NJ,39.40959518,-74.36034898,RES3D,3001,,NaN,E,1969,0,3303,3,1,8765.802376,8765.802376,3507,NO,56.82,71.04,1,1.63,6106,115.506307,125.006081,134.940582,140.724291,I,Above,Flat,0,NaN,,63.92801955,0,0,,,,1,1,,0.03,nav,1,1969,3,, 12561,NJBF000079383,500 RISLEY RD,Galloway,NJ,39.410905,-74.373408,RES1,3001,,16,NE,1984,1984,3102,3,1,1525.810687,1525.810687,3507,NO,59.02,65.41,1,2.75,6106,115.228878,124.744871,134.64568,140.500696,I,Above,Flat,0,5701,,62.21759844,0,1.2,,,,1,1,,0.03,nav,1,1984,3,, 12562,NJBF000079338,404 E BEACH AVE,Galloway,NJ,39.41072378,-74.36162048,RES1,3001,,15,NE,1950,1950,3102,1,1,684.4428355,684.4428355,3507,NO,17.3,25.79,1,-0.78,6106,115.46886,124.970761,134.90116,140.690246,I,Above,Hip,0,5701,,21.54650943,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12563,NJBF000079357,406 E BEACH AVE,Galloway,NJ,39.41079336,-74.36149337,RES1,3001,,16,NE,1951,1951,3102,1,1,1140.698451,1140.698451,3507,NO,16.78,27.72,1,0.12,6106,115.47069,124.9725,134.903168,140.69139,I,Above,Hip,0,5701,,22.24675627,0,0,,,,1,1,,0.03,nav,1,1951,1,, 12564,NJBF000079191,,Galloway,NJ,39.41005181,-74.37123797,RES1,3001,,NaN,NE,1969,0,3102,2,1,1367.043546,1367.043546,3507,NO,25.84,36.49,1,-0.85,6106,115.281743,124.794557,134.701364,140.546213,I,Above,Flat,0,5701,,31.1675387,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12565,NJBF000079088,315 E BRIGANTINE AVE,Galloway,NJ,39.40946236,-74.36128757,RES1,3001,,43,NE,1950,1950,3102,2,2,3055.493229,3055.493229,3507,NO,27.16,38.34,1,1.29,6106,115.488821,124.989515,134.92172,140.711174,I,Above,Flat,0,5701,,32.75166108,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12566,NJBF000079275,103 ROOSEVELT BLVD SO,Galloway,NJ,39.41044783,-74.36501185,RES1,3001,,16,NE,1960,1960,3102,2,1,1577.474165,1577.474165,3507,NO,28.51,33.55,1,0.05,6106,115.403434,124.908923,134.830947,140.640092,I,Above,Hip,0,5701,,31.03088728,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 12567,NJBF000079072,,Galloway,NJ,39.4093214,-74.36157792,RES1,3001,,NaN,NE,1969,0,3102,2,1,1633.569482,1633.569482,3507,NO,32.18,41.75,1,0.68,6106,115.484472,124.985385,134.916956,140.708365,I,Above,Hip,0,5701,,36.9627786,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12568,NJBF000079296,443 HACKNEY PLACE,Galloway,NJ,39.41053551,-74.37314501,RES1,3001,,16,NE,1972,1972,3102,1,1,1869.100211,1869.100211,3507,NO,18.38,25.47,1,0.42,6106,115.238049,124.753545,134.655287,140.509614,I,Above,Gable,0,5701,,21.92463909,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 12569,NJBF000079194,440 HACKNEY PLACE,Galloway,NJ,39.41007552,-74.37299496,RES1,3001,,16,NE,1976,1976,3102,1,1,2659.339389,2659.339389,3507,NO,16.4,23.58,1,1.72,6106,115.245883,124.760982,134.663448,140.517883,I,Above,Gable,0,5701,,19.99247186,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 12570,NJBF000079276,510 HACKNEY PLACE,Galloway,NJ,39.41046526,-74.37434228,RES1,3001,,17,NE,1970,1970,3102,3,1,1954.906903,1954.906903,3507,NO,51.95,62.66,1,1.42,6106,115.214507,124.731551,134.630418,140.491378,I,Above,Gable,0,5701,,57.30604837,0,0,,,,1,1,,0.03,nav,1,1970,3,, 12571,NJBF000079120,307 BAYSHORE AVE,Galloway,NJ,39.40964911,-74.36848154,RES1,3001,,16,NE,1961,1961,3102,1,1,1286.786537,1286.786537,3507,NO,15.05,22.45,1,0.76,6106,115.341736,124.850889,134.764834,140.595147,I,Above,Gable,0,5701,,18.75155185,0,0,,,,1,1,,0.03,nav,1,1961,1,, 12572,NJBF000079096,223 3RD STREET NO,Galloway,NJ,39.409531,-74.3618405,RES1,3001,,15,NE,1951,1951,3102,1,1,920.2536044,920.2536044,3507,NO,20.59,30.08,1,2.06,6106,115.476984,124.97833,134.909078,140.701627,I,Above,Hip,0,5701,,25.33073711,0,0,,,,1,1,,0.03,nav,1,1951,1,, 12573,NJBF000079219,420 W SHORE DR,Galloway,NJ,39.41019859,-74.37089557,RES1,3001,,19,NE,1977,2017,3102,2,1,1300.573106,1300.573106,3507,NO,24.51,34.51,1,2.18,6106,115.287134,124.799584,134.707123,140.549794,I,Above,Gable,0,5701,,29.50674854,0,0,,,,1,1,,0.03,nav,1,1977,2,, 12574,NJBF000079082,401 BAYSHORE AVE,Galloway,NJ,39.40941354,-74.36857523,RES1,3001,,18,NE,2006,2006,3102,3,1,1728.091816,1728.091816,3507,NO,32.37,39.92,1,-0.21,6106,115.342319,124.851456,134.765347,140.59664,I,Above,Gable,0,5701,,36.14934757,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 12575,NJBF000079026,,Galloway,NJ,39.40907962,-74.36443053,RES1,3001,,NaN,NE,1969,0,3102,2,1,2876.238954,2876.238954,3507,NO,23.51,33.99,1,2,6106,115.429527,124.933499,134.858021,140.666413,I,Above,Flat,0,5701,,28.75095356,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12576,NJBF000078958,107 4TH STREET SO,Galloway,NJ,39.40863027,-74.36735156,RES1,3001,,16,NE,2016,2016,3102,1,1,812.6352126,812.6352126,3507,NO,14.99,28.38,1,-0.2,6106,115.375283,124.882458,134.799981,140.625908,I,Above,Gable,0,5701,,21.68789455,0,0,,,,1,1,,0.03,nav,1,2016,1,, 12577,NJBF000079049,217 2ND STREET NO,Galloway,NJ,39.40919156,-74.36257011,RES1,3001,,16,NE,2016,2016,3102,1,1,1043.947854,1043.947854,3507,NO,15.54,27.89,1,1.75,6106,115.465858,124.967782,134.896929,140.694354,I,Above,Hip,0,5701,,21.71271787,0,0,,,,1,1,,0.03,nav,1,2016,1,, 12578,NJBF000079067,403 BAYSHORE AVE,Galloway,NJ,39.40929543,-74.36863927,RES1,3001,,16,NE,1963,1963,3102,1,1,1315.858837,1315.858837,3507,NO,18.51,29.03,1,1.15,6106,115.342273,124.851423,134.765244,140.597129,I,Above,Gable,0,5701,,23.76686574,0,0,,,,1,1,,0.03,nav,1,1963,1,, 12579,NJBF000079039,210 2ND STREET NO,Galloway,NJ,39.40915697,-74.36316366,RES1,3001,,15,NE,1955,1955,3102,1,1,775.3727335,775.3727335,3507,NO,14.71,20.28,1,1.95,6106,115.454259,124.95683,134.884497,140.685432,I,Above,Gable,0,5701,,17.49084966,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12580,NJBF000078977,406 W EVANS BLVD,Galloway,NJ,39.40876125,-74.36827738,RES1,3001,,16,NE,1960,1960,3102,1,1,986.5907153,986.5907153,3507,NO,14.13,25.86,1,0.99,6106,115.355202,124.863597,134.778716,140.609612,I,Above,Gable,0,5701,,19.99562261,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 12581,NJBF000079016,221 2ND STREET NO,Galloway,NJ,39.40902955,-74.36233539,RES1,3001,,19,NE,2007,2007,3102,3,1,1658.076802,1658.076802,3507,NO,54.99,69.65,1,1.28,6106,115.4723,124.97385,134.903713,140.700073,I,Above,Flat,0,5701,,62.31953156,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 12582,NJBF000079029,456 W SHORE DR,Galloway,NJ,39.40910449,-74.37309346,RES1,3001,,18,NE,1968,1968,3102,3,1,3539.914425,3539.914425,3507,NO,57.57,68.74,1,-0.85,6106,115.254044,124.768823,134.671785,140.528725,I,Above,Hip,0,5701,,63.15291022,0,1.1,,,,1,1,,0.03,nav,1,1968,3,, 12583,NJBF000079048,458 W SHORE DR,Galloway,NJ,39.40918927,-74.37327012,RES1,3001,,19,NE,1965,1965,3102,3,1,5017.864637,5017.864637,3507,NO,44.11,58.29,1,0.02,6106,115.249564,124.764619,134.667084,140.524817,I,Above,Hip,0,5701,,51.19914995,0,1.1,,,,1,1,,0.03,nav,1,1965,3,, 12584,NJBF000078802,218 VERNON PLACE,Galloway,NJ,39.4076475,-74.36402,RES1,3001,,43,NE,1953,1953,3102,2,2,1141.425071,1141.425071,3507,NO,37.56,46.36,1,1.31,6106,115.452934,124.955456,134.882055,140.690802,I,Above,Gable,0,5701,,41.95719311,0,0,,,,1,1,,0.03,nav,1,1953,2,, 12585,NJBF000078776,109 W BRIGANTINE AVE,Galloway,NJ,39.40749177,-74.36389508,RES1,3001,,NaN,NE,1953,0,3102,2,1,2233.964205,2233.964205,3507,NO,39.19,46.14,1,1.05,6106,115.457107,124.959371,134.886396,140.694718,I,Above,Hip,0,5701,,42.6671385,0,0,,,,1,1,,0.03,nav,1,1953,2,, 12586,NJBF000078786,219 2ND STREET SO,Galloway,NJ,39.40754923,-74.36421044,RES1,3001,,16,NE,1955,1955,3102,1,1,884.1110672,884.1110672,3507,NO,18.66,31.08,1,0.07,6106,115.450148,124.952825,134.879014,140.68905,I,Above,Flat,0,5701,,24.87044224,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 12587,NJBF000078804,913 BAYSHORE AVE,Galloway,NJ,39.407658,-74.37316236,RES1,3001,,20,NE,2007,2007,3102,3,1,1832.128051,1832.128051,3507,YES,35.02,48.17,1,2.82,6102,115.267799,124.781941,134.685796,140.546077,I,Above,Gable,0,5701,,41.5941675,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 12588,NJBF000080522,,Galloway,NJ,39.41533021,-74.35662775,RES1,3001,,NaN,NE,1969,0,3102,2,1,3890.115028,3890.115028,3507,NO,34.39,45.22,1,1.61,6106,115.520867,125.020755,134.960167,140.712034,I,Above,Flat,0,5701,,39.80552151,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12589,NJBF000078483,238 6TH STREET SO,Galloway,NJ,39.40577945,-74.3676777,RES1,3001,,45,NE,1950,1950,3102,2,2,1737.700439,1737.700439,3505,NO,28.39,36.73,3,1.3,6106,115.398814,124.904536,134.823254,140.656673,I,Above,Gable,0,5701,,32.56172674,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 12590,NJBF000078546,164 9TH STREET SO,Galloway,NJ,39.40611436,-74.37139033,RES1,3001,,17,NE,2011,2011,3102,2,1,1553.999866,1553.999866,3505,NO,36.46,50.11,3,4.8,6106,115.320036,124.830885,134.740178,140.59384,I,Above,Hip,0,5701,,43.28511122,0,0,,,,1,1,,0.03,nav,1,2011,2,, 12591,NJBF000078433,168 10TH STREET SO,Galloway,NJ,39.40548864,-74.37192406,RES1,3001,,16,NE,2017,2017,3102,1,1,1194.863889,1194.863889,3505,NO,18.97,25.78,3,-0.1,6106,115.315808,124.826998,134.735403,140.593333,I,Above,Gable,0,5701,,22.37479453,0,0,,,,1,1,,0.03,nav,1,2017,1,, 12592,NJBF000078420,168 10TH STREET SO,Galloway,NJ,39.40540284,-74.37202471,RES1,3001,,16,NE,2017,2017,3102,1,1,832.4773525,832.4773525,3505,NO,16.8,26.31,3,2.59,6106,115.314668,124.825943,134.734157,140.592829,I,Above,Flat,0,5701,,21.55928735,0,0,,,,1,1,,0.03,nav,1,2017,1,, 12593,NJBF000078899,121 5TH STREET SO,Galloway,NJ,39.40821344,-74.36810832,RES1,3001,,15,NE,1955,1955,3102,1,1,948.6231148,948.6231148,3507,NO,18.84,32.19,1,1.93,6106,115.364385,124.872243,134.788184,140.619204,I,Above,Gable,0,5701,,25.51561242,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12594,NJBF000080366,,Galloway,NJ,39.4148515,-74.355593,RES1,3001,,NaN,NE,1949,0,3102,2,1,3248.594098,3248.594098,3507,NO,21.17,34.14,1,-0.15,6106,115.546565,125.045251,134.987763,140.734277,I,Above,Hip,0,5701,,27.65587876,0,0,,,,1,1,,0.03,nav,1,1949,2,, 12595,NJBF000078378,210 9TH STREET SO,Galloway,NJ,39.40514614,-74.37050704,RES1,3001,,16,NE,1954,1954,3102,2,1,1950.421001,1950.421001,3505,NO,36.12,44.67,3,3.94,6106,115.348203,124.857232,134.769357,140.620073,I,Above,Hip,0,5701,,40.39191644,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 12596,NJBF000076395,3005 OCEAN AVE,Galloway,NJ,39.3932547,-74.38335313,RES1,3001,,16,NE,1954,1954,3102,2,1,1744.179774,1744.179774,3507,NO,37.17,45.27,1,2.4,6106,115.213824,124.73424,134.622092,140.57053,I,Above,Hip,0,5701,,41.22178444,0,0,,,,1,1,,0.03,nav,1,1954,2,, 12597,NJBF000076390,3015 OCEAN AVE,Galloway,NJ,39.39323087,-74.38347839,RES1,3001,,19,NE,2004,2004,3102,3,1,2069.071344,2069.071344,3507,NO,36.31,48.51,1,-0.26,6110,115.211516,124.732139,134.61971,140.568884,I,Above,Gable,0,5701,,42.41058965,0,1.1,,,,1,1,,0.35,nav,1,2004,3,, 12598,NJBF000076364,401 30TH STREET SO,Galloway,NJ,39.39314504,-74.38209264,RES1,3001,,19,NE,1958,1958,3102,2,1,2217.752017,2217.752017,3507,NO,25.61,34.49,1,0.41,6106,115.24093,124.758957,134.649814,140.591673,I,Above,Flat,0,5701,,30.04828519,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 12599,NJBF000080303,115 ROOSEVELT BLVD NO,Galloway,NJ,39.41462294,-74.3692333,RES1,3001,,16,NE,1974,1974,3102,1,1,1390.78242,1390.78242,3507,NO,14.85,21.82,1,0.5,6106,115.274842,124.787158,134.695215,140.520238,I,Above,Flat,0,5701,,18.33636938,0,0,,,,1,1,,0.03,nav,1,1974,1,, 12600,NJBF000080440,,Galloway,NJ,39.41506049,-74.35711118,RES3D,3001,,NaN,ME,1969,0,3301,1,1,3224.951306,3224.951306,3507,NO,18.81,33.33,1,0.71,6106,115.51401,125.014166,134.952565,140.707728,I,Above,Flat,0,NaN,,26.067129,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12601,NJBF000081242,1312 VARDON CIRCLE,Galloway,NJ,39.41827095,-74.37432037,RES1,3001,,18,NE,2001,2001,3102,2,1,1877.685476,1877.685476,3507,NO,26.27,40.26,1,0.14,6106,115.134753,124.653853,134.546108,140.391712,I,Above,Gable,0,5701,,33.26728116,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 12602,NJBF000078897,215 VERNON PLACE,Galloway,NJ,39.40820835,-74.36396966,RES1,3001,,43,NE,1950,1950,3102,2,2,1435.357852,1435.357852,3507,NO,30.51,45.11,1,1.14,6106,115.448023,124.950876,134.8772,140.684589,I,Above,Flat,0,5701,,37.81206069,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12603,NJBF000081180,207 ROOSEVELT BLVD NO,Galloway,NJ,39.41791764,-74.36994059,RES1,3001,,16,NE,1965,1965,3102,3,1,2281.333121,2281.333121,3507,NO,55.76,65.6,1,-0.37,6106,115.226744,124.740836,134.644191,140.467062,I,Above,Hip,0,5701,,60.68007638,0,1.2,,,,1,1,,0.03,nav,1,1965,3,, 12604,NJBF000080437,131 LINCOLN DR,Galloway,NJ,39.41505773,-74.37046474,RES1,3001,,16,NE,1967,1967,3102,1,1,1813.450689,1813.450689,3507,NO,12.7,24.75,1,-1,6106,115.245483,124.759369,134.663994,140.494954,I,Above,Gable,0,5701,,18.72550933,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 12605,NJBF000079664,511 LAFAYETTE BLVD,Galloway,NJ,39.41222263,-74.37381891,RES1,3001,,16,NE,1979,1979,3102,1,1,1494.850298,1494.850298,3507,NO,14.49,21.28,1,1.84,6106,115.206876,124.723904,134.622654,140.477259,I,Above,Flat,0,5701,,17.88591365,0,0,,,,1,1,,0.03,nav,1,1979,1,, 12606,NJBF000078831,401 W BEACH AVE,Galloway,NJ,39.40780061,-74.36716051,RES1,3001,,16,NE,1900,1900,3102,3,1,1115.43635,1115.43635,3507,NO,43.53,49.54,1,1.81,6106,115.387879,124.894301,134.812903,140.639367,I,Above,Flat,0,5701,,46.53649642,0,0,,,,1,1,,0.03,nav,1,1900,3,, 12607,NJBF000081247,1002 VARDON CIRCLE,Galloway,NJ,39.41829566,-74.37494238,RES1,3001,,17,NE,2006,2006,3102,2,1,2722.613098,2722.613098,3507,NO,25.23,39.39,1,1.23,6106,115.121925,124.641758,134.532473,140.381294,I,Above,Gable,0,5701,,32.30805212,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 12608,NJBF000081320,929 N SHORE DR,Galloway,NJ,39.41861339,-74.37724158,RES1,3001,,17,NE,1964,1964,3103,3,1,2428.541978,2428.541978,3505,NO,49.79,62.03,3,4.24,6106,115.072184,124.594802,134.479637,140.339802,I,Above,Gable,0,5701,,55.90900307,0,1.2,,,,1,1,,0.03,nav,1,1964,3,, 12609,NJBF000080334,713 W SHORE DR,Galloway,NJ,39.4147317,-74.38119916,RES1,3001,,16,NE,1974,1974,3103,1,1,1588.438777,1588.438777,3505,NO,13.93,23.66,3,-1.48,6106,115.03127,124.558718,134.437521,140.325692,I,Above,Flat,0,5701,,18.79567075,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 12610,NJBF000079918,112 LINCOLN DR,Galloway,NJ,39.4133235,-74.3698965,RES1,3001,,16,NE,1968,1968,3102,2,1,1657.14877,1657.14877,3507,YES,33.89,39.1,1,-0.25,6106,115.274886,124.787482,134.694993,140.526103,I,Above,Gable,0,5701,,36.49395712,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 12611,NJBF000079933,,Galloway,NJ,39.4133625,-74.3587485,RES1,3001,,NaN,NE,1969,0,3102,2,1,1502.076763,1502.076763,3507,NO,29.48,40.3,1,0.2,6106,115.498896,124.999545,134.935168,140.702824,I,Above,Hip,0,5701,,34.88757924,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12612,NJBF000079885,,Galloway,NJ,39.41322713,-74.3563472,RES3C,3001,,NaN,E,1969,0,3303,3,1,7111.782447,7111.782447,3507,NO,39.64,49.86,1,0.88,6106,115.548447,125.046748,134.988681,140.742372,I,Above,Flat,0,NaN,,44.75286129,0,0,,,,1,1,,0.03,nav,1,1969,3,, 12613,NJBF000082174,30 NATALIE TERRACE,Galloway,NJ,39.42744649,-74.4953245,RES1,3001,,17,NE,1958,1958,3102,1,1,548.6337182,548.6337182,3505,NO,14.03,21.95,3,-2.6,6112,112.553754,122.325251,131.964672,138.119353,I,Above,Gable,0,5701,,17.98879736,0,0,,,,1,1,,0.35,nav,1,1958,1,, 12614,NJBF000081168,8 12TH STREET NO,Galloway,NJ,39.41785413,-74.36166565,RES1,3001,,16,NE,1957,1957,3102,2,1,1453.433861,1453.433861,3507,NO,21.05,27.76,1,-0.17,6106,115.393805,124.899529,134.823726,140.600693,I,Above,Gable,0,5701,,24.40657254,0,0,,,,1,1,,0.03,nav,1,1957,2,, 12615,NJBF000081238,214 ROOSEVELT BLVD NO,Galloway,NJ,39.41824868,-74.37044907,RES1,3001,,16,NE,1962,1962,3102,2,1,1299.846872,1299.846872,3507,NO,31.05,41.93,1,2.85,6106,115.213125,124.727845,134.629635,140.454657,I,Above,Gable,0,5701,,36.49193495,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 12616,NJBF000080396,129 LINCOLN DR,Galloway,NJ,39.41491927,-74.37037888,RES1,3001,,17,NE,2015,2015,3102,3,1,1691.845981,1691.845981,3507,NO,51.93,63.63,1,2.65,6106,115.248651,124.762392,134.66735,140.498101,I,Above,Gable,0,5701,,57.78079526,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 12617,NJBF000081259,208 WASHINGTON DR,Galloway,NJ,39.41834638,-74.36951172,RES1,3001,,16,NE,1969,1969,3102,2,1,1917.446063,1917.446063,3507,YES,30.91,36.27,1,-0.12,6106,115.231024,124.744752,134.648771,140.468551,I,Above,Gable,0,5701,,33.59026764,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 12618,NJBF000081068,1324 VARDON RD,Galloway,NJ,39.41743966,-74.37557745,RES1,3001,,17,NE,1992,1992,3103,2,1,1295.397894,1295.397894,3505,NO,26.37,34.06,3,-0.86,6106,115.117771,124.638258,134.528216,140.381984,I,Above,Flat,0,5701,,30.21413124,0,0,,,,1,1,,0.03,nav,1,1992,2,, 12619,NJBF000078385,,Galloway,NJ,39.40520415,-74.36830463,RES1,3001,,NaN,NE,1969,0,3102,2,1,1441.592585,1441.592585,3505,NO,25.76,38.34,3,2.67,6110,115.392224,124.898356,134.815898,140.654046,I,Above,Gable,0,5701,,32.05297215,0,0,,,,1,1,,0.35,nav,1,1969,2,, 12620,NJBF000079961,12 HEALD RD,Galloway,NJ,39.41346752,-74.36678458,RES1,3001,,15,NE,1972,1972,3102,2,1,1142.662354,1142.662354,3507,NO,31.25,39.19,1,2.17,6106,115.336181,124.845255,134.760398,140.573964,I,Above,Gable,0,5701,,35.21951941,0,0.1,,,,1,1,,0.03,nav,1,1972,2,, 12621,NJBF000078549,175 9TH STREET SO,Galloway,NJ,39.406127,-74.370716,RES1,3001,,16,NE,1978,1978,3102,2,1,1410.237157,1410.237157,3505,NO,39.12,46.54,3,6.46,6106,115.333572,124.84352,134.754466,140.604336,I,Above,Gable,0,5701,,42.83280363,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 12622,NJBF000078530,179 9TH STREET SO,Galloway,NJ,39.40601797,-74.37063552,RES1,3001,,16,NE,1954,1954,3102,1,1,1430.313332,1430.313332,3505,NO,17.13,28.85,3,2.38,6106,115.336347,124.846119,134.757337,140.606983,I,Above,Gable,0,5701,,22.98728721,0,0,,,,1,1,,0.03,nav,1,1954,1,, 12623,NJBF000078403,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,2538.956026,2538.956026,3505,NO,28.13,34.75,3,-0.09,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,31.43984232,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12624,NJBF000080664,40 12TH STREET NO,Galloway,NJ,39.41585451,-74.35922959,RES1,3001,,18,NE,2006,2006,3102,3,1,2413.001525,2413.001525,3507,NO,35.51,45.98,1,2.03,6106,115.4633,124.965831,134.898074,140.664329,I,Above,Hip,0,5701,,40.74790591,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 12625,NJBF000079956,6 HEALD RD,Galloway,NJ,39.41345586,-74.36735398,RES1,3001,,16,NE,1968,1968,3102,1,1,1677.478312,1677.478312,3507,NO,20.03,32.3,1,2.36,6106,115.324829,124.834538,134.748268,140.565039,I,Above,Gable,0,5701,,26.16624898,0,0,,,,1,1,,0.03,nav,1,1968,1,, 12626,NJBF000079844,535 LAFAYETTE BLVD,Galloway,NJ,39.41308817,-74.37572632,RES1,3001,,16,NE,1972,1972,3103,3,1,1056.592461,1056.592461,3505,NO,42.66,48.19,3,7.91,6106,115.159276,124.67905,134.572437,140.435514,I,Above,Gable,0,5701,,45.42530824,0,1.2,,,,1,1,,0.03,nav,1,1972,3,, 12627,NJBF000080191,208 13TH STREET NO,Galloway,NJ,39.4142163,-74.35588226,RES1,3001,,17,NE,1990,1990,3102,2,1,917.7198641,917.7198641,3507,NO,37.74,43.54,1,1.32,6106,115.547412,125.045945,134.988252,140.737528,I,Above,Gable,0,5701,,40.6396068,0,0,,,,1,1,,0.03,nav,1,1990,2,, 12628,NJBF000079236,502 HACKNEY PLACE,Galloway,NJ,39.41027333,-74.37373733,RES1,3001,,16,NE,1965,1965,3102,1,1,1216.546926,1216.546926,3507,NO,16.83,28.65,1,-0.82,6106,115.22878,124.744942,134.645438,140.503512,I,Above,Gable,0,5701,,22.73661309,0,0,,,,1,1,,0.03,nav,1,1965,1,, 12629,NJBF000080426,113 WASHINGTON DR,Galloway,NJ,39.41500651,-74.36848822,RES1,3001,,17,NE,1986,1986,3102,2,1,1347.965109,1347.965109,3507,NO,40.95,45.96,1,2.46,6106,115.285914,124.797527,134.707105,140.527315,I,Above,Hip,0,5701,,43.45571936,0,0,,,,1,1,,0.03,nav,1,1986,2,, 12630,NJBF000079238,201 E BEACH AVE,Galloway,NJ,39.41028403,-74.36389279,RES1,3001,,16,NE,1955,1955,3101,1,1,1431.346908,1431.346908,3507,NO,17.51,25.26,1,-0.77,6106,115.427713,124.931833,134.856806,140.659845,I,Above,Hip,0,5701,,21.38113412,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12631,NJBF000081676,1228 E SHORE DR,Galloway,NJ,39.42174134,-74.36544531,RES1,3001,,17,NE,2001,2001,3102,2,1,1595.594437,1595.594437,3507,NO,33.79,40.26,1,1.94,6106,115.278277,124.788684,134.699549,140.491322,I,Above,Gable,0,5701,,37.02984947,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 12632,NJBF000080925,1310 OUIMET RD,Galloway,NJ,39.41689266,-74.37423195,RES1,3001,,15,NE,1950,1950,3102,1,1,789.176095,789.176095,3507,NO,16.15,23.56,1,-0.49,6106,115.150549,124.669333,134.563067,140.410802,I,Above,Gable,0,5701,,19.85366627,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12633,NJBF000081045,1005 OUIMET RD,Galloway,NJ,39.41734545,-74.37379732,RES1,3001,,16,NE,1981,1981,3102,1,1,2167.710675,2167.710675,3507,NO,15.72,28.88,1,0.35,6106,115.15474,124.673087,134.567474,140.412053,I,Above,Flat,0,5701,,22.29986712,0,1.1,,,,1,1,,0.03,nav,1,1981,1,, 12634,NJBF000081666,227 HAGEN RD,Galloway,NJ,39.42157256,-74.36701498,RES1,3001,,17,NE,1995,1995,3102,2,1,1771.432467,1771.432467,3507,NO,30.79,42.57,1,1.77,6106,115.248461,124.760305,134.667409,140.468061,I,Above,Gable,0,5701,,36.68076893,0,0,,,,1,1,,0.03,nav,1,1995,2,, 12635,NJBF000080527,,Galloway,NJ,39.41533603,-74.35726037,RES3D,3001,,NaN,ME,1969,0,3301,2,1,4414.206879,4414.206879,3507,NO,36.03,44.44,1,1.1,6102,115.508154,125.008607,134.946379,140.701965,I,Above,Hip,0,NaN,,40.23736412,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12636,NJBF000080902,20 11TH STREET NO,Galloway,NJ,39.41680507,-74.36154525,RES1,3001,,17,NE,1989,1989,3102,1,1,1324.068105,1324.068105,3507,NO,20.7,31.14,1,1.44,6106,115.407045,124.912205,134.837675,140.615699,I,Above,Hip,0,5701,,25.91710098,0,0,,,,1,1,,0.03,nav,1,1989,1,, 12637,NJBF000080878,22 11TH STREET NO,Galloway,NJ,39.41668726,-74.36142322,RES1,3001,,16,NE,1976,1976,3102,2,1,1963.137871,1963.137871,3507,NO,26.7,36.89,1,1.53,6106,115.410711,124.915702,134.84159,140.619113,I,Above,Hip,0,5701,,31.79810444,0,0,,,,1,1,,0.03,nav,1,1976,2,, 12638,NJBF000080612,3 VARDON RD,Galloway,NJ,39.41561845,-74.3722841,RES1,3001,,17,NE,1992,1992,3102,2,1,2108.95668,2108.95668,3507,NO,29.27,43.03,1,2.35,6106,115.202975,124.719157,134.618805,140.458563,I,Above,Gable,0,5701,,36.14986593,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 12639,NJBF000080570,1201 SHERIDAN BLVD,Galloway,NJ,39.41548128,-74.37222982,RES1,3001,,16,NE,1964,1964,3102,2,1,3249.635612,3249.635612,3507,NO,29.9,43.11,1,0.61,6106,115.205472,124.721554,134.621454,140.461181,I,Above,Flat,0,5701,,36.50106547,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 12640,NJBF000081700,10 TRAVERS PLACE,Galloway,NJ,39.42201515,-74.36658062,RES1,3001,,18,NE,2000,2000,3102,2,1,1793.99101,1793.99101,3507,NO,22.62,28.11,1,0.33,6106,115.2527,124.76421,134.671952,140.469507,I,Above,Hip,0,5701,,25.36755353,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 12641,NJBF000080489,135 LINCOLN DR,Galloway,NJ,39.41524221,-74.37052914,RES1,3001,,17,NE,1974,2017,3102,3,1,1976.334648,1976.334648,3507,NO,40.25,53.83,1,-0.72,6106,115.242298,124.756316,134.660623,140.491588,I,Above,Gable,0,5701,,47.04129676,0,1.2,,,,1,1,,0.03,nav,1,1974,3,, 12642,NJBF000081126,1302 VARDON RD,Galloway,NJ,39.41764909,-74.37365967,RES1,3001,,18,NE,2001,2001,3102,2,1,2047.620084,2047.620084,3507,NO,30.36,35.82,1,1.54,6106,115.154414,124.672651,134.567095,140.41038,I,Above,Hip,0,5701,,33.08600897,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 12643,NJBF000081121,1304 VARDON RD,Galloway,NJ,39.41762749,-74.37380994,RES1,3001,,17,NE,1996,1996,3102,2,1,1065.53026,1065.53026,3507,NO,37.64,49.35,1,0.24,6106,115.151606,124.670016,134.564113,140.408232,I,Above,Hip,0,5701,,43.49603165,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 12644,NJBF000078590,223 6TH STREET SO,Galloway,NJ,39.40637404,-74.36759767,RES1,3001,,16,NE,1955,1955,3102,2,1,1244.296518,1244.296518,3507,NO,34.5,40.46,1,1.53,6106,115.394125,124.900155,134.818667,140.65044,I,Above,Gable,0,5701,,37.48285752,0,0.1,,,,1,1,,0.03,nav,1,1955,2,, 12645,NJBF000079175,8 SHERIDAN PLACE,Galloway,NJ,39.40997223,-74.36613993,RES1,3001,,18,NE,2002,2002,3102,2,1,1246.860825,1246.860825,3507,NO,32,40.2,1,-0.62,6106,115.385667,124.892185,134.811739,140.628207,I,Above,Gable,0,5701,,36.09868747,0,0,,,,1,1,,0.03,nav,1,2002,2,, 12646,NJBF000081544,222 HAGEN RD,Galloway,NJ,39.42000863,-74.36726467,RES1,3001,,17,NE,1993,1993,3102,2,1,1970.030176,1970.030176,3507,NO,24.51,38.15,1,1.26,6106,115.259314,124.771095,134.679121,140.483764,I,Above,Hip,0,5701,,31.32950121,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 12647,NJBF000081007,38 MACDONALD PLACE,Galloway,NJ,39.41720093,-74.36755465,RES1,3001,,17,NE,2000,2000,3102,2,1,2027.930321,2027.930321,3507,NO,35.49,50.26,1,2.27,6106,115.282158,124.793494,134.703444,140.514552,I,Above,Gable,0,5701,,42.87744045,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 12648,NJBF000080312,214 14TH STREET NO,Galloway,NJ,39.41465485,-74.35526392,RES1,3001,,43,NE,1976,1976,3102,2,2,1186.899372,1186.899372,3507,NO,33.96,43.34,1,2.93,6106,115.555191,125.053464,134.997,140.741874,I,Above,Gable,0,5701,,38.64938761,0,0,,,,1,1,,0.03,nav,1,1976,2,, 12649,NJBF000081558,224 HAGEN RD,Galloway,NJ,39.42013791,-74.36726863,RES1,3001,,17,NE,1990,1990,3102,2,1,1273.686044,1273.686044,3507,NO,25.66,37.73,1,1.62,6106,115.257921,124.769735,134.677625,140.482071,I,Above,Hip,0,5701,,31.69409572,0,0,,,,1,1,,0.03,nav,1,1990,2,, 12650,NJBF000079179,13 GIRARD PLACE,Galloway,NJ,39.40999302,-74.36746049,RES1,3001,,17,NE,2017,2017,3102,3,1,1317.65692,1317.65692,3507,NO,43.49,54.5,1,2.01,6106,115.358789,124.866889,134.783122,140.607022,I,Above,Hip,0,5701,,48.99501027,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 12651,NJBF000080397,503 SHERIDAN PLACE,Galloway,NJ,39.41492408,-74.36510991,RES1,3001,,16,NE,1979,1979,3102,1,1,1951.752689,1951.752689,3507,NO,13.31,26.69,1,-0.44,6106,115.35484,124.86274,134.78085,140.582371,I,Above,Gable,0,5701,,20.00165175,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 12652,NJBF000079633,110 BAYSHORE AVE,Galloway,NJ,39.41205,-74.368615,RES1,3001,,16,NE,1968,1968,3102,2,1,1454.577561,1454.577561,3507,NO,24.08,32.53,1,0.72,6106,115.313978,124.824509,134.736247,140.562685,I,Above,Gable,0,5701,,28.3037012,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 12653,NJBF000078544,115 11TH STREET SO,Galloway,NJ,39.40609219,-74.37296424,RES1,3001,,17,NE,2016,2016,3102,3,1,929.5164434,929.5164434,3505,NO,52.64,59.94,3,4.91,6106,115.288312,124.801307,134.706749,140.56919,I,Above,Gable,0,5701,,56.29124043,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 12654,NJBF000081527,220 HAGEN RD,Galloway,NJ,39.41986737,-74.36725857,RES1,3001,,17,NE,1992,1992,3102,2,1,2313.895017,2313.895017,3507,NO,25.48,32.12,1,-0.61,6106,115.260879,124.772623,134.680802,140.485654,I,Above,Gable,0,5701,,28.79965521,0,0,,,,1,1,,0.03,nav,1,1992,2,, 12655,NJBF000076744,3300 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39463795,-74.38813398,COM1,3001,,NaN,ME,1969,1981,3401,3,1,2298.080408,2298.080408,3507,NO,33.59,48.21,1,1.47,6106,115.100284,124.63075,134.506832,140.477299,I,Above,Hip,0,NaN,,40.89878834,0,0,,,,1,1,,0.03,nav,1,1969,3,, 12656,NJBF000080497,40 11TH STREET NO,Galloway,NJ,39.4152694,-74.359769,RES1,3001,,17,NE,2016,2016,3102,3,1,2366.681836,2366.681836,3507,NO,41.69,52.41,1,0.85,6106,115.458575,124.961298,134.892675,140.663044,I,Above,Hip,0,5701,,47.05010744,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 12657,NJBF000079281,2 LAFAYETTE PLACE,Galloway,NJ,39.41048472,-74.36473046,RES1,3001,,16,NE,1962,1962,3102,1,1,2424.241835,2424.241835,3507,NO,18.75,31.22,1,2.77,6106,115.408732,124.913922,134.836627,140.644091,I,Above,Hip,0,5701,,24.98424341,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 12658,NJBF000079911,548 W SHORE DR,Galloway,NJ,39.4133092,-74.3775606,RES1,3001,,17,NE,2015,2015,3103,3,1,2805.436844,2805.436844,3505,NO,41.62,49.92,3,4.61,6106,115.119759,124.642015,134.530768,140.403077,I,Above,Hip,0,5701,,45.76974769,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 12659,NJBF000079962,10 HEALD RD,Galloway,NJ,39.41347452,-74.36696157,RES1,3001,,16,NE,1972,1972,3102,2,1,1195.915951,1195.915951,3507,YES,33.48,42.9,1,1.22,6106,115.332539,124.841814,134.756508,140.571053,I,Above,Hip,0,5701,,38.19404749,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12660,NJBF000079820,536 W SHORE DR,Galloway,NJ,39.41298022,-74.37654145,RES1,3001,,17,NE,1986,1986,3103,2,1,2249.642868,2249.642868,3505,NO,39.74,45.94,3,4.66,6106,115.143851,124.664666,134.556162,140.423772,I,Above,Flat,0,5701,,42.84153943,0,0,,,,1,1,,0.03,nav,1,1986,2,, 12661,NJBF000078952,212 ROOSEVELT BLVD SO,Galloway,NJ,39.40860305,-74.36393206,RES1,3001,,15,NE,1950,1950,3102,1,1,1255.322223,1255.322223,3507,NO,13.05,25.38,1,0.19,6106,115.444619,124.947697,134.87383,140.680249,I,Above,Hip,0,5701,,19.21803566,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12662,NJBF000078812,132 5TH STREET SO,Galloway,NJ,39.40770613,-74.36830453,RES1,3001,,16,NE,1950,1950,3102,2,1,1579.950314,1579.950314,3507,YES,35.49,47.81,1,1.5,6106,115.365742,124.873536,134.789352,140.622485,I,Above,Hip,0,5701,,41.64732764,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12663,NJBF000078799,136 5TH STREET SO,Galloway,NJ,39.40762306,-74.36822598,RES1,3001,,43,NE,1951,1951,3102,2,2,1130.826512,1130.826512,3507,NO,39.55,51.97,1,2.31,6106,115.368216,124.875858,134.79193,140.624781,I,Above,Gable,0,5701,,45.75984744,0,0,,,,1,1,,0.03,nav,1,1951,2,, 12664,NJBF000078513,123 11TH STREET SO,Galloway,NJ,39.40592991,-74.37280046,RES1,3001,,17,NE,2015,2015,3102,1,1,1467.45148,1467.45148,3505,NO,24.9,35.57,3,6.99,6106,115.293354,124.806026,134.711981,140.573854,I,Above,Hip,0,5701,,30.23676068,0,0,,,,1,1,,0.03,nav,1,2015,1,, 12665,NJBF000079939,535 CAVERLY DR,Galloway,NJ,39.41339838,-74.37466843,RES1,3001,,16,NE,1981,1981,3102,1,1,1680.664142,1680.664142,3507,NO,20.12,27.02,1,1.05,6106,115.177536,124.696032,134.59174,140.448568,I,Above,Gable,0,5701,,23.5691629,0,0,,,,1,1,,0.03,nav,1,1981,1,, 12666,NJBF000078464,160 10TH STREET SO,Galloway,NJ,39.40566253,-74.37212305,RES1,3001,,18,NE,2007,2007,3102,3,1,2406.919632,2406.919632,3505,NO,55.72,69.07,3,3.38,6106,115.309926,124.821499,134.729297,140.587973,I,Above,Hip,0,5701,,62.39473442,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 12667,NJBF000081266,211 ROOSEVELT BLVD NO,Galloway,NJ,39.41838027,-74.36996776,RES1,3001,,16,NE,1977,1977,3102,2,1,1632.64735,1632.64735,3507,YES,23.54,30.9,1,1.37,6106,115.221487,124.735713,134.63857,140.46076,I,Above,Gable,0,5701,,27.22192181,0,0,,,,1,1,,0.03,nav,1,1977,2,, 12668,NJBF000079947,600 W SHORE DR,Galloway,NJ,39.41343541,-74.37907814,RES1,3001,,17,NE,1973,1973,3103,2,1,2858.631461,2858.631461,3505,NO,34.16,45.02,3,7.89,6106,115.087647,124.611981,134.496969,140.376929,I,Above,Hip,0,5701,,39.5930957,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 12669,NJBF000079754,14 QUAY BLVD,Galloway,NJ,39.4127135,-74.3658245,RES1,3001,,16,NE,1969,1969,3102,2,1,1154.817672,1154.817672,3507,NO,30.18,35.72,1,0.14,6106,115.363371,124.871013,134.789189,140.598743,I,Above,Gable,0,5701,,32.95126245,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12670,NJBF000078531,239 6TH STREET SO,Galloway,NJ,39.40602234,-74.36727292,RES1,3001,,16,NE,1955,1955,3102,1,1,1057.380246,1057.380246,3505,NO,19.09,30.67,3,-0.03,6106,115.404433,124.909806,134.829369,140.659991,I,Above,Gable,0,5701,,24.87736242,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12671,NJBF000078838,215 2ND STREET SO,Galloway,NJ,39.40783044,-74.36444567,RES1,3001,,16,NE,1952,1952,3102,2,1,1212.021527,1212.021527,3507,NO,26.76,41.21,1,1.49,6106,115.442414,124.945566,134.870961,140.681821,I,Above,Hip,0,5701,,33.98649955,0,0.1,,,,1,1,,0.03,nav,1,1952,2,, 12672,NJBF000078806,217 2ND STREET SO,Galloway,NJ,39.40768068,-74.364321,RES1,3001,,19,NE,2006,2006,3102,3,1,1411.60031,1411.60031,3507,NO,50.59,58.92,1,1.34,6106,115.446511,124.949413,134.875228,140.685652,I,Above,Flat,0,5701,,54.75633421,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 12673,NJBF000079620,525 RISLEY RD,Galloway,NJ,39.41199564,-74.37514163,RES1,3001,,16,NE,1972,1972,3103,2,1,1362.901749,1362.901749,3505,NO,38.3,45.59,3,2.01,6106,115.182395,124.701065,134.596768,140.458929,I,Above,Gable,0,5701,,41.94203448,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12674,NJBF000080329,720 W SHORE DR,Galloway,NJ,39.41471227,-74.38198869,RES1,3001,,16,NE,1960,1960,3103,2,1,2131.776851,2131.776851,3505,NO,32,37.6,3,8.9,6106,115.015403,124.543946,134.420882,140.313102,I,Above,Gable,0,5701,,34.80320121,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 12675,NJBF000082292,433 WHITE HORSE PIKE,Galloway,NJ,39.428686,-74.50727453,COM1,3001,,NaN,ME,1969,0,3401,3,1,5835.024991,5835.024991,3507,NO,47.68,57.52,1,-0.05,6112,112.29809,122.101877,131.720177,137.868758,I,Above,Flat,0,NaN,,52.60414511,0,0,,,,1,1,,1,nav,1,1969,3,, 12676,NJBF000082529,824 OHIO AVE,Galloway,NJ,39.43066339,-74.51449499,RES1,3001,,17,NE,1960,1960,3102,1,1,1888.262371,1888.262371,3505,NO,23.31,31.7,3,5.48,6110,112.137492,121.955468,131.559791,137.69649,I,Above,Gable,0,5701,,27.50609705,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12677,NJBF000082238,233 N SHORE ROAD,Galloway,NJ,39.42824991,-74.49662525,RES1,3001,,17,NE,1950,1950,3102,1,1,2686.312334,2686.312334,3505,NO,16.82,27.18,3,3.33,6112,112.521233,122.293868,131.930259,138.081768,I,Above,Hip,0,5701,,21.99709815,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 12678,NJBF000082227,OHIO AVE,Galloway,NJ,39.42806998,-74.51028975,RES1,3001,,NaN,NE,1977,0,3102,2,1,2601.351007,2601.351007,3505,NO,36.09,44.51,3,-0.9,6110,112.239761,122.055473,131.669549,137.819669,I,Above,Gable,0,5701,,40.30029752,0,0,,,,1,1,,0.35,nav,1,1977,2,, 12679,NJBF000082265,625 OHIO AVE,Galloway,NJ,39.42849403,-74.51092067,RES1,3001,,17,NE,1900,1900,3102,2,2,1452.378141,1452.378141,3505,NO,32.52,41.69,3,6.1,6110,112.224099,122.040079,131.65265,137.800662,I,Above,Gable,0,5701,,37.10546989,0,0,,,,1,1,,0.35,nav,1,1900,2,, 12680,NJBF000082275,627 OHIO AVE,Galloway,NJ,39.42854284,-74.5112538,RES1,3001,,17,NE,1962,1962,3102,1,1,1666.055718,1666.055718,3505,NO,18.02,29.12,3,3.55,6110,112.216931,122.033759,131.645734,137.793381,I,Above,Hip,0,5701,,23.57248194,0,0,,,,1,1,,0.35,nav,1,1962,1,, 12681,NJBF000082251,627 OHIO AVE,Galloway,NJ,39.42838547,-74.51135532,RES1,3001,,17,NE,1962,1962,3102,1,1,787.4612252,787.4612252,3505,NO,21.77,29.95,3,5.36,6110,112.215829,122.033623,131.645614,137.793897,I,Above,Gable,0,5701,,25.85976182,0,0,,,,1,1,,0.35,nav,1,1962,1,, 12682,NJBF000082411,711 OHIO AVE,Galloway,NJ,39.42970073,-74.51346381,RES1,3001,,17,NE,1973,1973,3102,1,1,2901.521036,2901.521036,3505,NO,22.52,27.6,3,6.2,6106,112.164388,121.983302,131.59038,137.731873,I,Above,Flat,0,5701,,25.05883517,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 12683,NJBF000082606,101 MINNETONKA AVE,Galloway,NJ,39.43146767,-74.51536076,RES1,3001,,17,NE,1972,1972,3102,1,1,2273.946069,2273.946069,3505,NO,24.56,29.67,3,7.14,6110,112.115038,121.932144,131.534164,137.666798,I,Above,Gable,0,5701,,27.11796278,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12684,NJBF000082392,712 OHIO AVE,Galloway,NJ,39.42954333,-74.51205492,RES1,3001,,17,NE,1930,1930,3102,1,1,1947.376028,1947.376028,3505,NO,18.17,25.53,3,1.33,6110,112.194292,122.009483,131.619029,137.761957,I,Above,Gable,0,5701,,21.846664,0,0,,,,1,1,,0.35,nav,1,1930,1,, 12685,NJBF000082570,150 S MILL ROAD,Galloway,NJ,39.43108925,-74.51438806,RES1,3001,,17,NE,1963,1963,3102,1,1,1751.990882,1751.990882,3505,NO,25.25,39.79,3,7.66,6110,112.137158,121.95295,131.556974,137.691875,I,Above,Gable,0,5701,,32.52226594,0,0,,,,1,1,,0.35,nav,1,1963,1,, 12686,NJBF000082391,702 OHIO AVE,Galloway,NJ,39.429537,-74.51168999,RES1,3001,,17,NE,1920,1920,3102,2,1,1222.119609,1222.119609,3505,NO,27.26,39.89,3,4.9,6112,112.201832,122.015912,131.626058,137.769193,I,Above,Gable,0,5701,,33.57427108,0,0,,,,1,1,,0.35,nav,1,1920,2,, 12687,NJBF000082490,810 OHIO AVE,Galloway,NJ,39.43035378,-74.51360309,RES1,3001,,17,NE,1900,1900,3102,3,1,982.6306638,982.6306638,3505,NO,57.02,69.29,3,3.25,6110,112.15761,121.974165,131.580285,137.718856,I,Above,Gable,0,5701,,63.1559263,0,0,,,,1,1,,0.35,nav,1,1900,3,, 12688,NJBF000082189,224 N SHORE ROAD,Galloway,NJ,39.4276101,-74.4963701,RES1,3001,,17,NE,1915,1915,3102,1,1,1035.499809,1035.499809,3505,NO,12.26,21.1,3,0.21,6110,112.530913,122.305032,131.942528,138.096685,I,Above,Gable,0,5701,,16.68110834,0,0,,,,1,1,,0.35,nav,1,1915,1,, 12689,NJBF000082171,18 NATALIE TERRACE,Galloway,NJ,39.42739343,-74.49594883,RES1,3001,,16,NE,1920,1920,3102,2,1,976.0851352,976.0851352,3505,NO,47.3,55.07,3,8.35,6106,112.541148,122.314738,131.953169,138.108173,I,Above,Gable,0,5701,,51.1854916,0,0,,,,1,1,,0.03,nav,1,1920,2,, 12690,NJBF000082180,18 NATALIE TERRACE,Galloway,NJ,39.42749299,-74.495792,RES1,3001,,16,NE,1920,1920,3102,2,1,617.2552371,617.2552371,3505,NO,36.27,44.62,3,5.2,6106,112.543715,122.316477,131.955064,138.109627,I,Above,Gable,0,5701,,40.44516996,0,0,,,,1,1,,0.03,nav,1,1920,2,, 12691,NJBF000082181,32 NATALIE TERRACE,Galloway,NJ,39.42750307,-74.49509858,RES1,3001,,17,NE,1927,1927,3102,1,1,1574.768874,1574.768874,3505,NO,12.15,25.71,3,0.34,6112,112.558029,122.328643,131.96838,138.122783,I,Above,Gable,0,5701,,18.93294624,0,0,,,,1,1,,0.35,nav,1,1927,1,, 12692,NJBF000082566,105 CREEK COURT,Galloway,NJ,39.43103636,-74.48455146,RES1,3001,,17,NE,1987,1987,3102,2,1,2512.92466,2512.92466,3507,NO,37.26,45.46,1,0.21,6106,112.751529,122.479327,132.133405,138.269355,I,Above,Gable,0,5701,,41.3623822,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 12693,NJBF000082484,10 ANDREA LANE,Galloway,NJ,39.43031169,-74.49175085,RES1,3001,,17,NE,1997,1997,3102,2,1,1474.923577,1474.923577,3507,NO,26.91,37.56,1,2.33,6112,112.607885,122.358745,132.001212,138.143177,I,Above,Gable,0,5701,,32.23534985,0,0,,,,1,1,,0.35,nav,1,1997,2,, 12694,NJBF000082429,14 ANDREA LANE,Galloway,NJ,39.4298205,-74.49185549,RES1,3001,,17,NE,2000,2000,3102,2,1,1735.361003,1735.361003,3507,NO,22.76,28.66,1,0.31,6106,112.609148,122.362028,132.004822,138.148847,I,Above,Gable,0,5701,,25.71057442,0,0,,,,1,1,,0.03,nav,1,2000,2,, 12695,NJBF000082415,527 FOURTH STREET,Galloway,NJ,39.42972779,-74.48476732,RES1,3001,,17,NE,2006,2006,3102,2,1,3240.026924,3240.026924,3507,NO,37.48,48.83,1,-0.29,6112,112.756466,122.489148,132.144169,138.2855,I,Above,Gable,0,5701,,43.15356575,0,1.1,,,,1,1,,0.35,nav,1,2006,2,, 12696,NJBF000082196,444 FOURTH ST,Galloway,NJ,39.42772017,-74.48496503,RES1,3001,,17,NE,2004,2004,3102,2,1,2561.911159,2561.911159,3507,NO,41.41,50.86,1,2.87,6106,112.766949,122.5066,132.163319,138.312862,I,Above,Hip,0,5701,,46.1331882,0,0,,,,1,1,,0.03,nav,1,2004,2,, 12697,NJBF000082202,444 FOURTH ST,Galloway,NJ,39.42779031,-74.48475857,RES1,3001,,17,NE,2004,2004,3102,2,1,555.8842588,555.8842588,3507,NO,31.25,43.44,1,1.67,6106,112.770716,122.509547,132.166549,138.315685,I,Above,Gable,0,5701,,37.34966263,0,0,,,,1,1,,0.03,nav,1,2004,2,, 12698,NJBF000082589,601 HAY ROAD,Galloway,NJ,39.43128936,-74.48282771,RES1,3001,,18,NE,1987,1987,3102,2,1,2620.21288,2620.21288,3507,NO,33.61,45.9,1,1.71,6112,112.785296,122.507454,132.164266,138.298169,I,Above,Gable,0,5701,,39.75700149,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 12699,NJBF000082636,602 FOURTH ST,Galloway,NJ,39.43184262,-74.48250411,RES1,3001,,17,NE,1970,1970,3102,2,1,3971.483841,3971.483841,3507,NO,38.01,43.54,1,-0.64,6112,112.787993,122.507447,132.16427,138.295762,I,Above,Gable,0,5701,,40.77553956,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 12700,NJBF000082898,10 E CURRAN DRIVE,Galloway,NJ,39.43470586,-74.48158931,RES1,3001,,17,NE,1972,1972,3102,1,1,1659.009509,1659.009509,3507,NO,18.23,25.74,1,0.13,6112,112.786367,122.493812,132.14941,138.268984,I,Above,Gable,0,5701,,21.98554487,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 12701,NJBF000082187,500 FOURTH ST,Galloway,NJ,39.42759012,-74.48404245,RES1,3001,,17,NE,1950,1950,3102,1,1,4787.853475,4787.853475,3507,NO,12.63,24.32,1,0.16,6106,112.787081,122.524446,132.182887,138.332381,I,Above,Hip,0,5701,,18.47190477,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 12702,NJBF000079603,523 RISLEY RD,Galloway,NJ,39.41189463,-74.37498531,RES1,3001,,16,NE,1963,1963,3102,2,1,1203.304331,1203.304331,3507,NO,32.21,43.94,1,2.46,6106,115.186625,124.705054,134.601221,140.462746,I,Above,Gable,0,5701,,38.07341322,0,0,,,,1,1,,0.03,nav,1,1963,2,, 12703,NJBF000079610,229 8TH STREET NO,Galloway,NJ,39.41192907,-74.358556,RES1,3001,,19,NE,2005,2005,3102,3,1,1535.76981,1535.76981,3507,NO,55.85,66.8,1,2.64,6106,115.517771,125.01731,134.954599,140.723597,I,Above,Hip,0,5701,,61.32667897,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 12704,NJBF000080255,112 WASHINGTON DR,Galloway,NJ,39.41445047,-74.3686468,RES1,3001,,16,NE,1970,1970,3102,1,1,1330.123787,1330.123787,3507,NO,16.91,22.25,1,1.74,6106,115.288455,124.800039,134.709701,140.531815,I,Above,Gable,0,5701,,19.58154338,0,0,,,,1,1,,0.03,nav,1,1970,1,, 12705,NJBF000089505,CLARKS LANDING RD,Galloway,NJ,39.56709566,-74.54322504,RES1,3001,,NaN,NE,1969,0,3102,2,1,891.6098602,891.6098602,3504,NO,30.12,35.79,-4,0,6112,111.062657,120.000731,129.603397,134.985651,I,Above,Gable,0,5701,,32.9552629,0,0,,,,1,1,,0.35,nav,1,1969,2,, 12706,NJBF000083531,722 BARTLETT AVE,Galloway,NJ,39.4466865,-74.469611,RES1,3001,,16,NE,1941,1941,3102,1,2,1416.110452,1416.110452,3505,NO,19.93,33.82,3,1.12,6110,112.945426,122.582629,132.2479,138.31327,I,Above,Gable,0,5701,,26.87815464,0,0,,,,1,1,,0.35,nav,1,1941,1,, 12707,NJBF000083498,724 OCEAN AVE,Galloway,NJ,39.44590651,-74.46958568,RES1,3001,,16,NE,1979,1979,3102,1,1,1646.356192,1646.356192,3505,NO,18.62,30.93,3,5.21,6112,112.951417,122.591327,132.257375,138.325528,I,Above,Gable,0,5701,,24.77474453,0,0,,,,1,1,,0.35,nav,1,1979,1,, 12708,NJBF000086829,215 MOTTS CREEK RD,Galloway,NJ,39.51932326,-74.4379023,RES1,3001,,16,NE,1946,1946,3102,1,1,1857.072023,1857.072023,3507,NO,16.3,25.74,1,2.24,6106,113.063794,122.355019,131.991987,137.85686,I,Above,Flat,0,5701,,21.02249462,0,0,,,,1,1,,0.03,nav,1,1946,1,, 12709,NJBF000086623,857 MOTTS CREEK RD,Galloway,NJ,39.51607662,-74.44068416,RES1,3001,,16,NE,1946,1946,3102,1,1,847.5158378,847.5158378,3507,NO,17.41,23.94,1,2.78,6106,113.034982,122.341717,131.979745,137.848789,I,Above,Gable,0,5701,,20.67437415,0,0,,,,1,1,,0.03,nav,1,1946,1,, 12710,NJBF000084056,730 CHANESE LN,Galloway,NJ,39.45379122,-74.46124555,RES1,3001,,16,NE,1957,1957,3102,1,1,988.578724,988.578724,3505,NO,15.15,26.44,3,2.23,6112,113.062989,122.658414,132.331685,138.364799,I,Above,Gable,0,5701,,20.79812157,0,0,,,,1,1,,0.35,nav,1,1957,1,, 12711,NJBF000084729,204 S NEW YORK RD,Galloway,NJ,39.46848934,-74.46200868,RES1,3001,,16,NE,1886,1886,3102,2,1,849.5723538,849.5723538,3505,NO,41.22,47.43,3,6.6,6112,112.947363,122.486675,132.144806,138.131204,I,Above,Flat,0,5701,,44.32574943,0,0,,,,1,1,,0.35,nav,1,1886,2,, 12712,NJBF000084721,204 S NEW YORK RD,Galloway,NJ,39.46835499,-74.46208149,RES1,3001,,16,NE,1886,1886,3102,2,1,841.4467705,841.4467705,3505,NO,36.43,51.4,3,3.33,6106,112.946853,122.486822,132.144959,138.131817,I,Above,Gable,0,5701,,43.91265816,0,0,,,,1,1,,0.03,nav,1,1886,2,, 12713,NJBF000083317,535 S NEW YORK RD,Galloway,NJ,39.44213787,-74.47824021,RES1,3001,,16,NE,1977,1977,3102,2,1,1356.352731,1356.352731,3505,NO,35.68,42.42,3,5.2,6110,112.802714,122.475645,132.130012,138.218596,I,Above,Gable,0,5701,,39.05021447,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 12714,NJBF000083265,604 BROOK LN,Galloway,NJ,39.44053381,-74.48124473,RES1,3001,,16,NE,1996,1996,3102,2,1,1215.054567,1215.054567,3505,NO,35.34,49.06,3,-2.18,6110,112.752756,122.438785,132.08941,138.185913,I,Above,Gable,0,5701,,42.20252459,0,1.1,,,,1,1,,0.35,nav,1,1996,2,, 12715,NJBF000083266,602 BROOK LN,Galloway,NJ,39.44056627,-74.48154934,RES1,3001,,16,NE,1995,1995,3102,2,1,1145.314243,1145.314243,3505,NO,24.91,36.95,3,3.02,6112,112.74636,122.43302,132.083086,138.179622,I,Above,Gable,0,5701,,30.92984455,0,1.1,,,,1,1,,0.35,nav,1,1995,2,, 12716,NJBF000088924,807 CLARKS LANDING RD,Galloway,NJ,39.5621935,-74.538562,RES1,3001,,16,NE,1700,1700,3102,2,1,2536.800558,2536.800558,3504,NO,23.21,36.54,-4,0,6106,111.152636,120.129841,129.726318,135.15766,I,Above,Gable,0,5701,,29.87324644,0,0,,,,1,1,,0.03,nav,1,1700,2,, 12717,NJBF000088903,807 CLARKS LANDING RD,Galloway,NJ,39.56198332,-74.53887087,RES1,3001,,16,NE,1700,1700,3102,2,1,1639.75093,1639.75093,3504,NO,29.51,42.91,-4,0,6112,111.148815,120.127591,129.724058,135.154653,I,Above,Hip,0,5701,,36.20690212,0,0,,,,1,1,,0.35,nav,1,1700,2,, 12718,NJBF000086609,844 MOTTS CREEK RD,Galloway,NJ,39.51570459,-74.44052429,RES1,3001,,16,NE,2016,2016,3102,1,1,1389.19791,1389.19791,3507,NO,13.29,22.86,1,-0.46,6106,113.040355,122.349034,131.987682,137.857372,I,Above,Gable,0,5701,,18.07411995,0,0,,,,1,1,,0.03,nav,1,2016,1,, 12719,NJBF000083419,729 VILLAGE DR,Galloway,NJ,39.4437775,-74.47116559,RES1,3001,,16,NE,1989,1989,3102,2,1,2390.229447,2390.229447,3505,NO,26.76,39.75,3,-0.96,6112,112.934545,122.585369,132.250633,138.327881,I,Above,Gable,0,5701,,33.25509492,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 12720,NJBF000083384,736 VILLAGE DR,Galloway,NJ,39.44328023,-74.4704336,RES1,3001,,16,NE,1990,1990,3102,2,1,2322.735021,2322.735021,3505,NO,31.01,40.52,3,-0.9,6112,112.952907,122.603818,132.270851,138.349278,I,Above,Gable,0,5701,,35.7683282,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 12721,NJBF000083421,727 VILLAGE DR,Galloway,NJ,39.44380212,-74.47138055,RES1,3001,,16,NE,1990,1990,3102,2,1,1660.339952,1660.339952,3505,NO,26.72,33.6,3,1.28,6112,112.930024,122.581244,132.246105,138.323448,I,Above,Gable,0,5701,,30.15884914,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 12722,NJBF000087391,694 NACOTE CREEK,Galloway,NJ,39.53278,-74.4647625,RES1,3001,,16,NE,1936,1936,3101,1,1,758.5012207,758.5012207,3505,NO,11.25,23.82,3,0.32,6106,112.502193,121.706411,131.307536,137.118356,I,Above,Hip,0,5701,,17.53246993,0,0,,,,1,1,,0.03,nav,1,1936,1,, 12723,NJBF000087443,711 LINDBERGH AVE,Galloway,NJ,39.53376313,-74.46316158,RES1,3001,,16,NE,1956,1956,3101,1,1,1200.505356,1200.505356,3505,NO,15.27,25.11,3,4.06,6106,112.524238,121.723056,131.324373,137.135978,I,Above,Gable,0,5701,,20.19245683,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12724,NJBF000086634,865 MOTTS CREEK RD,Galloway,NJ,39.51628088,-74.43995505,RES1,3001,,15,NE,1936,1936,3102,1,1,703.8644333,703.8644333,3507,NO,15.02,25.04,1,1.76,6106,113.046865,122.352801,131.991363,137.860282,I,Above,Flat,0,5701,,20.02973033,0,0,,,,1,1,,0.03,nav,1,1936,1,, 12725,NJBF000083411,739 VILLAGE DR,Galloway,NJ,39.44366004,-74.46993553,RES1,3001,,16,NE,1994,1994,3102,2,1,1645.229527,1645.229527,3505,YES,43,50.67,3,8.69,6112,112.960284,122.60878,132.276335,138.35293,I,Above,Gable,0,5701,,46.83694407,0,0,,,,1,1,,0.35,nav,1,1994,2,, 12726,NJBF000083425,723 VILLAGE DR,Galloway,NJ,39.44405223,-74.47195335,RES1,3001,,16,NE,1989,1989,3102,2,1,2294.89185,2294.89185,3505,NO,35.12,48.52,3,0.02,6112,112.916685,122.568305,132.231921,138.308821,I,Above,Gable,0,5701,,41.82078771,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 12727,NJBF000086950,327 N NEW YORK RD,Galloway,NJ,39.52268239,-74.46065173,RES1,3001,,16,NE,2002,2002,3101,2,1,1987.156854,1987.156854,3505,NO,33.81,43.97,3,6.21,6106,112.634552,121.900228,131.51252,137.352695,I,Above,Gable,0,5701,,38.88947641,0,1.2,,,,1,1,,0.03,nav,1,2002,2,, 12728,NJBF000085814,65 TO 83 OYSTER CREEK RD,Galloway,NJ,39.50369009,-74.41468516,GOV1,3001,,16,E,1950,1950,3401,3,8,1013.366787,1013.366787,3502,NO,36.76,41.77,5,3.94,6106,113.601155,122.973745,132.661749,138.534025,I,Above,Gable,0,5701,,39.26653576,0,0,,,,1,1,,0.03,nav,1,1950,3,, 12729,NJBF000086969,329 N NEW YORK RD,Galloway,NJ,39.5231292,-74.46071687,RES1,3001,,16,NE,2004,2004,3101,2,1,4475.480524,4475.480524,3505,NO,42.88,53.66,3,4.32,6110,112.630708,121.893778,131.505635,137.344714,I,Above,Hip,0,5701,,48.26659558,0,1.2,,,,1,1,,0.35,nav,1,2004,2,, 12730,NJBF000084049,732 CHANESE LN,Galloway,NJ,39.45358038,-74.46087011,RES1,3001,,16,NE,1957,1957,3102,1,1,1581.547639,1581.547639,3505,NO,18.29,32.23,3,1.25,6112,113.07198,122.66749,132.341626,138.375058,I,Above,Gable,0,5701,,25.26085802,0,0,,,,1,1,,0.35,nav,1,1957,1,, 12731,NJBF000083412,735 VILLAGE DR,Galloway,NJ,39.44369221,-74.47042186,RES1,3001,,16,NE,1994,1994,3102,2,1,1402.391162,1402.391162,3505,NO,42.34,53.54,3,8.53,6112,112.950216,122.599681,132.266344,138.343258,I,Above,Gable,0,5701,,47.94203904,0,1.2,,,,1,1,,0.35,nav,1,1994,2,, 12732,NJBF000083354,528 S NEW YORK RD,Galloway,NJ,39.44291549,-74.47725399,RES1,3001,,16,NE,1930,1930,3102,2,1,1239.18602,1239.18602,3505,NO,36.22,48.54,3,-0.69,6110,112.817329,122.485117,132.140484,138.225487,I,Above,Gable,0,5701,,42.38202929,0,0,,,,1,1,,0.35,nav,1,1930,2,, 12733,NJBF000083243,603 PRICE LN,Galloway,NJ,39.44013981,-74.4818973,RES1,3001,,16,NE,1980,1980,3102,2,1,1494.263041,1494.263041,3505,NO,32.49,40.26,3,7.08,6112,112.742203,122.431283,132.081143,138.179525,I,Above,Gable,0,5701,,36.37852151,0,0,,,,1,1,,0.35,nav,1,1980,2,, 12734,NJBF000083346,714 PENNSYLVANIA AVE,Galloway,NJ,39.44276574,-74.47436438,RES1,3001,,16,NE,1997,1997,3102,1,1,1861.761679,1861.761679,3505,NO,17.75,28.76,3,3.65,6112,112.876909,122.538533,132.199108,138.282672,I,Above,Gable,0,5701,,23.25925064,0,1.1,,,,1,1,,0.35,nav,1,1997,1,, 12735,NJBF000083185,613 S NEW YORK RD,Galloway,NJ,39.4395005,-74.47985249,RES1,3001,282,16,NE,1900,1900,3102,2,1,758.3782383,758.3782383,3505,NO,30.88,37.05,3,4.12,6112,112.788219,122.474543,132.128569,138.228306,I,Above,Gable,0,5701,,33.96855541,0,0,,,,1,1,,0.35,nav,1,1900,2,, 12736,NJBF000084033,745 CHANESE LN,Galloway,NJ,39.45327921,-74.45952294,RES1,3001,,16,NE,1960,1960,3102,1,1,1068.905286,1068.905286,3505,YES,21.27,29.41,3,4.95,6110,113.100996,122.695171,132.371978,138.404987,I,Above,Gable,0,5701,,25.34266458,0,0,,,,1,1,,0.35,nav,1,1960,1,, 12737,NJBF000083388,704 PENNSYLVANIA AVE,Galloway,NJ,39.44330357,-74.47662324,RES1,3001,,16,NE,1936,1936,3102,2,1,594.2336347,594.2336347,3505,NO,29.69,38.34,3,6.36,6112,112.827416,122.492324,132.148432,138.231553,I,Above,Gable,0,5701,,34.01230357,0,0,,,,1,1,,0.35,nav,1,1936,2,, 12738,NJBF000080235,714 W SHORE DR,Galloway,NJ,39.41439607,-74.3815873,RES1,3001,,16,NE,1965,1965,3103,1,1,1490.791217,1490.791217,3505,NO,27.32,35.21,3,7.98,6106,115.026801,124.55475,134.432915,140.323758,I,Above,Gable,0,5701,,31.26237153,0,0,,,,1,1,,0.03,nav,1,1965,1,, 12739,NJBF000079613,,Galloway,NJ,39.41194249,-74.35989608,RES1,3001,,NaN,NE,1969,0,3102,2,1,1708.063747,1708.063747,3507,NO,27.17,33.28,1,1.01,6106,115.490734,124.991623,134.925463,140.702311,I,Above,Gable,0,5701,,30.22704086,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12740,NJBF000079177,436 HACKNEY PLACE,Galloway,NJ,39.40997846,-74.37256516,RES1,3001,,17,NE,1979,1979,3102,2,1,2069.758881,2069.758881,3507,YES,33.5,41.54,1,2.21,6106,115.255624,124.770116,134.673713,140.525997,I,Above,Hip,0,5701,,37.51883141,0,0,,,,1,1,,0.03,nav,1,1979,2,, 12741,NJBF000078292,242 9TH STREET SO,Galloway,NJ,39.40447814,-74.36984153,RES1,3001,,15,NE,1954,1954,3102,1,1,1147.801768,1147.801768,3505,NO,18.5,28.43,3,1.71,6106,115.368789,124.876458,134.790665,140.639013,I,Above,Hip,0,5701,,23.46418808,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 12742,NJBF000079170,201 3RD STREET NO,Galloway,NJ,39.40995281,-74.36231164,RES1,3001,,15,NE,1956,1956,3102,1,1,921.3287354,921.3287354,3507,NO,18.72,28.33,1,2.35,6106,115.463038,124.965187,134.894417,140.688934,I,Above,Hip,0,5701,,23.52343798,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12743,NJBF000079201,,Galloway,NJ,39.41013194,-74.37481888,RES3B,3001,,NaN,ME,1969,0,3301,1,1,4058.62166,4058.62166,3507,NO,18.6,29.42,1,0.46,6106,115.208289,124.725836,134.623797,140.48801,I,Above,Gable,0,5701,,24.00966916,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12744,NJBF000078927,120 4TH STREET SO,Galloway,NJ,39.4083905,-74.367814,RES1,3001,,43,NE,1988,1988,3102,2,2,869.0280147,869.0280147,3507,NO,24.11,29.38,1,1.37,6106,115.368458,124.876057,134.792602,140.621611,I,Above,Gable,0,5701,,26.74587673,0,0,,,,1,1,,0.03,nav,1,1988,2,, 12745,NJBF000079181,,Galloway,NJ,39.40999843,-74.36182346,RES1,3001,,NaN,NE,1926,0,3102,2,1,1604.135864,1604.135864,3507,NO,25.12,33.27,1,0.73,6106,115.472408,124.974051,134.90449,140.696082,I,Above,Hip,0,5701,,29.19679997,0,0,,,,1,1,,0.03,nav,1,1926,2,, 12746,NJBF000079187,438 HACKNEY PLACE,Galloway,NJ,39.41002446,-74.37274164,RES1,3001,,17,NE,2013,2013,3102,2,1,1393.131395,1393.131395,3507,NO,33.06,39.42,1,1.19,6106,115.251556,124.7663,134.669426,140.522585,I,Above,Gable,0,5701,,36.24024696,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 12747,NJBF000078279,,Galloway,NJ,39.40439156,-74.36674961,RES3F,3003,,NaN,E,1969,0,3303,3,1,37273.3589,37273.3589,3501,NO,40.19,52.41,7,6.84,6106,115.432351,124.93586,134.857808,140.688705,I,Above,Flat,0,5701,,46.2998451,0,0,,,,1,1,,0.03,nav,1,1969,3,, 12748,NJBF000078931,206 VERNON PLACE,Galloway,NJ,39.40845149,-74.36474476,RES1,3001,,15,NE,1953,1953,3102,1,1,800.5848859,800.5848859,3507,NO,19.42,31.65,1,1.93,6106,115.429822,124.933748,134.857942,140.669335,I,Above,Flat,0,5701,,25.53516893,0,0,,,,1,1,,0.03,nav,1,1953,1,, 12749,NJBF000077446,2703 BAYSHORE AVE,Galloway,NJ,39.39866849,-74.38526621,RES1,3001,,17,NE,1958,1958,3102,2,1,2059.746495,2059.746495,3507,YES,26.99,41.52,1,-0.23,6106,115.115894,124.643842,134.52445,140.469919,I,Above,Gable,0,5701,,34.25479171,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 12750,NJBF000076559,312 30TH STREET SO,Galloway,NJ,39.39390267,-74.38362128,RES1,3001,,16,NE,1964,1964,3102,2,1,1540.636422,1540.636422,3507,YES,35.21,48.38,1,2.19,6106,115.201235,124.722697,134.609621,140.557923,I,Above,Hip,0,5701,,41.79328648,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 12751,NJBF000078925,207 W BEACH AVE,Galloway,NJ,39.40838833,-74.36608747,RES1,3001,,15,NE,1970,1970,3102,1,1,639.0856186,639.0856186,3507,NO,16.61,29.91,1,1.9,6106,115.403393,124.908878,134.829744,140.648948,I,Above,Flat,0,5701,,23.26229702,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 12752,NJBF000078697,203 W BRIGANTINE AVE,Galloway,NJ,39.4069875,-74.3644105,RES1,3001,,43,NE,1952,1952,3102,1,2,1888.436313,1888.436313,3507,NO,19.22,33.83,1,2.35,6106,115.452042,124.954559,134.880636,140.692917,I,Above,Hip,0,5701,,26.52731086,0,0,,,,1,1,,0.03,nav,1,1952,1,, 12753,NJBF000079468,403 LAFAYETTE BLVD,Galloway,NJ,39.41128225,-74.36884642,RES1,3001,,16,NE,1958,1958,3102,1,1,1353.034711,1353.034711,3507,NO,12.34,24.63,1,0.43,6106,115.317308,124.82775,134.739526,140.568717,I,Above,Hip,0,5701,,18.48370075,0,0,,,,1,1,,0.03,nav,1,1958,1,, 12754,NJBF000079934,24 HEALD RD,Galloway,NJ,39.4133656,-74.36485431,RES1,3001,,16,NE,1970,1970,3102,1,1,1176.570332,1176.570332,3507,NO,9.99,17.91,1,-0.97,6106,115.376153,124.883052,134.803132,140.606002,I,Above,Hip,0,5701,,13.94750511,0,0,,,,1,1,,0.03,nav,1,1970,1,, 12755,NJBF000079140,102 E BEACH AVE,Galloway,NJ,39.40978417,-74.3641325,RES1,3001,,16,NE,1959,1959,3102,1,1,1577.140112,1577.140112,3507,NO,17.63,29.32,1,1.84,6106,115.428149,124.932227,134.856977,140.662323,I,Above,Hip,0,5701,,23.47281045,0,0,,,,1,1,,0.03,nav,1,1959,1,, 12756,NJBF000081046,206 ROOSEVELT BLVD NO,Galloway,NJ,39.41735359,-74.3705005,RES1,3001,,16,NE,1969,1969,3102,2,1,1957.710577,1957.710577,3507,YES,33.43,46.33,1,0.52,6106,115.221211,124.735785,134.638273,140.465195,I,Above,Gable,0,5701,,39.88272144,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 12757,NJBF000079379,213 6TH STREET NO,Galloway,NJ,39.41089728,-74.35976957,RES1,3001,,NaN,NE,1948,0,3102,2,2,1481.663785,1481.663785,3507,NO,25.84,35.83,1,0.82,6106,115.504234,125.004304,134.939292,140.717254,I,Above,Hip,0,5701,,30.83659388,0,0,,,,1,1,,0.03,nav,1,1948,2,, 12758,NJBF000078667,250 3RD STREET SO,Galloway,NJ,39.40683569,-74.36528571,RES1,3001,,17,NE,1997,1997,3102,2,1,1881.080143,1881.080143,3507,NO,23.73,30.6,1,-0.91,6106,115.435974,124.939441,134.863422,140.681046,I,Above,Hip,0,5701,,27.16164576,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 12759,NJBF000078671,239 4TH STREET SO,Galloway,NJ,39.40685288,-74.36575986,RES1,3001,,43,NE,1951,1951,3102,2,2,1572.869474,1572.869474,3507,NO,23.99,35.42,1,-0.32,6106,115.426218,124.930277,134.853056,140.673373,I,Above,Flat,0,5701,,29.70778985,0,0,,,,1,1,,0.03,nav,1,1951,2,, 12760,NJBF000080404,14 KIRKWOOD CIRCLE,Galloway,NJ,39.41494626,-74.3637756,RES1,3001,,17,NE,1986,1986,3102,1,1,1730.940073,1730.940073,3507,NO,15.14,29.5,1,-0.41,6106,115.381452,124.88797,134.809428,140.603364,I,Above,Gable,0,5701,,22.32008728,0,0,,,,1,1,,0.03,nav,1,1986,1,, 12761,NJBF000079153,476 W SHORE DR,Galloway,NJ,39.40987543,-74.37456888,RES1,3001,,16,NE,1955,1955,3102,2,2,1918.458868,1918.458868,3507,NO,22.61,32.36,1,-0.5,6106,115.216041,124.733144,134.631912,140.495302,I,Above,Flat,0,5701,,27.48692213,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12762,NJBF000079982,57 HEALD RD,Galloway,NJ,39.41356102,-74.36198942,RES1,3001,,17,NE,1986,1986,3102,2,1,1581.005564,1581.005564,3507,NO,30.46,40.89,1,0.39,6106,115.431766,124.935749,134.862921,140.649071,I,Above,Gable,0,5701,,35.67685471,0,0,,,,1,1,,0.03,nav,1,1986,2,, 12763,NJBF000080438,1005 E EVANS BLVD,Galloway,NJ,39.41505922,-74.35958912,RES1,3001,,16,NE,1972,1972,3102,1,1,1675.021382,1675.021382,3507,NO,19.55,31.42,1,1.79,6106,115.464366,124.966806,134.898827,140.668504,I,Above,Hip,0,5701,,25.48734504,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12764,NJBF000079912,103 LINCOLN DR,Galloway,NJ,39.41331006,-74.36899569,RES1,3001,,16,NE,1960,1960,3102,3,1,1551.169822,1551.169822,3507,NO,50.14,58.34,1,0.82,6106,115.293201,124.804734,134.714491,140.540661,I,Above,Hip,0,5701,,54.23839415,0,1.1,,,,1,1,,0.03,nav,1,1960,3,, 12765,NJBF000079980,210 12TH STREET NO,Galloway,NJ,39.41355695,-74.35637411,RES1,3001,,45,NE,1960,1960,3102,2,1,1921.071103,1921.071103,3507,NO,34.66,41.62,1,0.25,6106,115.544452,125.042998,134.984586,140.737884,I,Above,Flat,0,5701,,38.14014052,0,0,,,,1,1,,0.03,nav,1,1960,2,, 12766,NJBF000079371,431 RISLEY RD,Galloway,NJ,39.41087273,-74.37152305,RES1,3001,,17,NE,1986,1986,3102,2,1,1182.88746,1182.88746,3507,NO,33.88,46.75,1,0.41,6106,115.267409,124.780967,134.686435,140.531227,I,Above,Gable,0,5701,,40.31750345,0,0,,,,1,1,,0.03,nav,1,1986,2,, 12767,NJBF000078415,240 7TH STREET SO,Galloway,NJ,39.4053714,-74.36841928,RES1,3001,,16,NE,1960,1960,3102,2,1,1399.865244,1399.865244,3505,NO,26.2,38.52,3,1.19,6106,115.388141,124.89454,134.811688,140.650145,I,Above,Gable,0,5701,,32.35866998,0,0,,,,1,1,,0.03,nav,1,1960,2,, 12768,NJBF000076456,312 32ND STREET SO,Galloway,NJ,39.39348131,-74.38561304,RES1,3001,,15,NE,1959,1959,3102,1,1,1026.221495,1026.221495,3507,NO,15.84,27.91,1,-0.42,6106,115.164838,124.689632,134.572109,140.532141,I,Above,Gable,0,5701,,21.87803496,0,0,,,,1,1,,0.03,nav,1,1959,1,, 12769,NJBF000079000,103 3RD STREET SO,Galloway,NJ,39.40891253,-74.36650873,RES1,3001,,16,NE,1950,1950,3102,1,1,1008.036997,1008.036997,3507,NO,14.74,25.45,1,2.56,6106,115.38934,124.895663,134.815086,140.635681,I,Above,Hip,0,5701,,20.09616678,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12770,NJBF000080760,1 MACDERMOTT PLACE,Galloway,NJ,39.41619072,-74.36594607,RES1,3001,,17,NE,1990,1990,3102,2,1,2195.066091,2195.066091,3507,NO,29.61,36.13,1,-0.68,6106,115.324933,124.834229,134.749121,140.553086,I,Above,Gable,0,5701,,32.87324503,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 12771,NJBF000079091,216 3RD STREET NO,Galloway,NJ,39.40947849,-74.36257317,RES1,3001,,15,NE,1952,1952,3102,1,1,502.6220115,502.6220115,3507,NO,17.14,25.36,1,2.42,6106,115.462783,124.964905,134.89383,140.690741,I,Above,Gable,0,5701,,21.24664408,0,0,,,,1,1,,0.03,nav,1,1952,1,, 12772,NJBF000078938,205 2ND STREET SO,Galloway,NJ,39.40850358,-74.36505875,RES1,3001,,43,NE,1955,1955,3102,2,2,992.762923,992.762923,3507,NO,24.24,32.64,1,0.13,6106,115.422926,124.927258,134.850622,140.663719,I,Above,Gable,0,5701,,28.44373913,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12773,NJBF000076656,4028 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39423798,-74.39837073,RES1,3001,,18,NE,2003,2003,3102,3,1,1595.28314,1595.28314,3505,NO,48.43,55,3,3.38,6106,114.892644,124.443495,134.296589,140.320017,I,Above,Hip,0,5701,,51.71715395,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 12774,NJBF000080100,103 ROOSEVELT BLVD NO,Galloway,NJ,39.41392802,-74.36869911,RES1,3001,,18,NE,2013,2013,3102,2,1,1822.294663,1822.294663,3507,NO,27.52,38.6,1,-0.63,6106,115.2928,124.80424,134.714217,140.537588,I,Above,Hip,0,5701,,33.06261592,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 12775,NJBF000080089,122 LINCOLN DR,Galloway,NJ,39.41388286,-74.37031542,RES1,3001,,17,NE,1970,1970,3102,1,1,3424.835418,3424.835418,3507,NO,15.2,30.12,1,2.06,6106,115.260628,124.773933,134.679936,140.512286,I,Above,Hip,0,5701,,22.65943477,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 12776,NJBF000080037,122 LINCOLN DR,Galloway,NJ,39.41373635,-74.37028479,RES1,3001,,17,NE,1970,1970,3102,1,1,672.0152463,672.0152463,3507,NO,19.63,26.49,1,1.48,6106,115.262753,124.775968,134.68217,140.514633,I,Above,Hip,0,5701,,23.0602169,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 12777,NJBF000080101,,Galloway,NJ,39.4139315,-74.38051,RES1,3001,,NaN,NE,1969,0,3103,5,1,1233.209068,1233.209068,3505,NO,85.52,96.41,3,3.59,6106,115.053455,124.579845,134.460979,140.347296,I,Above,Gable,0,5701,,90.96260825,0,0,,,,1,1,,0.03,nav,1,1969,5,, 12778,NJBF000078408,251 7TH STREET SO,Galloway,NJ,39.40533069,-74.36780748,RES1,3001,,16,NE,1957,1957,3102,2,2,1221.055938,1221.055938,3505,NO,35.68,46.48,3,6.28,6106,115.40096,124.906532,134.825229,140.660284,I,Above,Gable,0,5701,,41.07828795,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 12779,NJBF000079261,437 HACKNEY PLACE,Galloway,NJ,39.41038734,-74.37264795,RES1,3001,,16,NE,1977,1977,3102,2,1,1337.612117,1337.612117,3507,NO,28.58,41.78,1,-0.93,6106,115.249677,124.764461,134.667539,140.519456,I,Above,Gable,0,5701,,35.17908744,0,0.1,,,,1,1,,0.03,nav,1,1977,2,, 12780,NJBF000081810,1425 E SHORE DR,Galloway,NJ,39.42321264,-74.36706292,RES1,3001,,20,NE,2009,2009,3102,2,1,2905.453938,2905.453938,3507,YES,23.81,35.1,1,-0.7,6106,115.230923,124.743048,134.648355,140.446584,I,Above,Hip,0,5701,,29.45670802,0,1.1,,,,1,1,,0.03,nav,1,2009,2,, 12781,NJBF000078482,200 8TH STREET SO,Galloway,NJ,39.4057697,-74.36986907,RES1,3001,,18,NE,1945,1945,3102,2,1,3374.601037,3374.601037,3505,NO,38.87,48.66,3,1.61,6106,115.354526,124.863111,134.776394,140.622241,I,Above,Hip,0,5701,,43.76513997,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 12782,NJBF000078368,234 8TH STREET SO,Galloway,NJ,39.4050565,-74.369281,RES1,3001,,16,NE,1984,1984,3102,1,1,1501.950322,1501.950322,3505,NO,18.1,30.74,3,0.91,6106,115.374009,124.881329,134.796545,140.640531,I,Above,Gable,0,5701,,24.42324418,0,0,,,,1,1,,0.03,nav,1,1984,1,, 12783,NJBF000080845,17 VARDON RD,Galloway,NJ,39.41657011,-74.3724779,RES1,3001,,17,NE,1997,1997,3102,2,1,2233.181226,2233.181226,3507,NO,29.99,37.97,1,-0.05,6106,115.189307,124.705952,134.604276,140.443285,I,Above,Hip,0,5701,,33.97776897,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 12784,NJBF000080812,15 VARDON RD,Galloway,NJ,39.41642993,-74.3724599,RES1,3001,,17,NE,1989,1989,3102,2,1,1904.640578,1904.640578,3507,NO,30.55,43.7,1,0.81,6106,115.191102,124.707694,134.606188,140.445363,I,Above,Hip,0,5701,,37.12574757,0,0,,,,1,1,,0.03,nav,1,1989,2,, 12785,NJBF000076222,,Galloway,NJ,39.39264277,-74.38344789,RES1,3001,,NaN,NE,1969,0,3102,2,1,1541.893456,1541.893456,3505,NO,36.3,51.12,3,5.79,6106,115.218569,124.738618,134.626524,140.576977,I,Above,Hip,0,5701,,43.70927834,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12786,NJBF000079916,26 HEALD RD,Galloway,NJ,39.413318,-74.364653,RES1,3001,,16,NE,1970,1970,3102,1,1,1292.792409,1292.792409,3507,NO,11.39,18.38,1,-0.91,6106,115.3807,124.887358,134.807985,140.609801,I,Above,Gable,0,5701,,14.88780248,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 12787,NJBF000080165,605 W SHORE DR,Galloway,NJ,39.41413458,-74.37957953,RES1,3001,,17,NE,1990,1990,3103,2,1,1528.868536,1528.868536,3505,NO,22.75,36.28,3,-2.19,6106,115.070277,124.595424,134.478615,140.35973,I,Above,Gable,0,5701,,29.51730555,0,0,,,,1,1,,0.03,nav,1,1990,2,, 12788,NJBF000080223,116 ROOSEVELT BLVD NO,Galloway,NJ,39.41434491,-74.36964792,RES1,3001,,16,NE,1968,1968,3102,2,1,1765.527411,1765.527411,3507,NO,36.4,43.02,1,1.65,6106,115.269332,124.782025,134.689289,140.517112,I,Above,Flat,0,5701,,39.70828948,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 12789,NJBF000078941,219 ROOSEVELT BLVD SO,Galloway,NJ,39.4085247,-74.36297459,RES1,3001,,20,NE,2013,2013,3102,3,1,1725.793453,1725.793453,3507,NO,32.13,44.61,1,-0.46,6106,115.464736,124.96666,134.89527,140.696295,I,Above,Hip,0,5701,,38.37220372,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 12790,NJBF000080079,11 HEALD RD,Galloway,NJ,39.41385412,-74.3671759,RES1,3001,,17,NE,1965,1965,3102,2,1,2378.23651,2378.23651,3507,NO,40.39,46.43,1,2.97,6106,115.324294,124.833976,134.747817,140.56286,I,Above,Hip,0,5701,,43.40576669,0,0,,,,1,1,,0.03,nav,1,1965,2,, 12791,NJBF000078457,,Galloway,NJ,39.40562757,-74.36756944,RES1,3001,,NaN,NE,1950,0,3102,2,1,2636.605421,2636.605421,3505,NO,33.67,40.98,3,4.23,6106,115.402623,124.908099,134.82719,140.66029,I,Above,Flat,0,5701,,37.32724207,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12792,NJBF000076673,227 33RD STREET SO,Galloway,NJ,39.39430375,-74.38712708,RES1,3001,,43,NE,1952,1952,3102,1,2,1007.891118,1007.891118,3507,NO,12.27,27.27,1,1.5,6106,115.124676,124.652978,134.531551,140.497565,I,Above,Hip,0,5701,,19.76888299,0,0,,,,1,1,,0.03,nav,1,1952,1,, 12793,NJBF000076347,408 29TH STREET SO,Galloway,NJ,39.39306451,-74.38149083,RES1,3001,,20,NE,2008,2008,3102,3,1,2376.518582,2376.518582,3507,NO,36.35,42.1,1,2.87,6106,115.254174,124.771044,134.663354,140.602116,I,Above,Hip,0,5701,,39.2248217,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 12794,NJBF000080001,109 9TH STREET NO,Galloway,NJ,39.41362923,-74.35945267,RES1,3001,,16,NE,2015,2015,3102,1,1,1519.267588,1519.267588,3507,NO,14.95,22.65,1,-0.33,6106,115.481985,124.983478,134.91707,140.68839,I,Above,Gable,0,5701,,18.80334119,0,0,,,,1,1,,0.03,nav,1,2015,1,, 12795,NJBF000080524,11 KIRKWOOD CIRCLE,Galloway,NJ,39.41533133,-74.36390552,RES1,3001,,16,NE,1955,1955,3102,1,1,1510.839832,1510.839832,3507,NO,10.86,18.06,1,-0.12,6106,115.374853,124.88168,134.802474,140.596472,I,Above,Gable,0,5701,,14.46093521,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12796,NJBF000078357,231 9TH STREET SO,Galloway,NJ,39.40497912,-74.3696996,RES1,3001,,15,NE,1952,1952,3102,1,1,1136.263419,1136.263419,3505,NO,17.42,26.08,3,0.96,6106,115.366343,124.87417,134.7884,140.634914,I,Above,Gable,0,5701,,21.75232705,0,0,,,,1,1,,0.03,nav,1,1952,1,, 12797,NJBF000082442,502 LAZY LANE,Galloway,NJ,39.42996905,-74.48374109,RES1,3001,,17,NE,1986,1986,3102,2,1,3761.597001,3761.597001,3507,NO,32.86,46.24,1,0.26,6112,112.775962,122.504951,132.161501,138.301251,I,Above,Gable,0,5701,,39.54902654,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 12798,NJBF000080256,,Galloway,NJ,39.41446416,-74.35510405,RES1,3001,,NaN,NE,1969,0,3102,2,1,1381.066042,1381.066042,3507,NO,37.36,42.38,1,2.33,6106,115.560385,125.058395,135.002511,140.746742,I,Above,Gable,0,5701,,39.86822273,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12799,NJBF000080238,220 14TH STREET NO,Galloway,NJ,39.41439813,-74.35498646,RES1,3001,,18,NE,2004,2004,3102,3,1,1701.839353,1701.839353,3507,NO,49.02,61.93,1,0.79,6106,115.563434,125.061298,135.005778,140.749412,I,Above,Hip,0,5701,,55.47730132,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 12800,NJBF000079788,529 LAFAYETTE BLVD,Galloway,NJ,39.41284383,-74.37527008,RES1,3001,,16,NE,1973,1973,3103,2,1,1150.804754,1150.804754,3505,NO,24.36,32.05,3,1.9,6106,115.171041,124.690148,134.584847,140.445988,I,Above,Flat,0,5701,,28.20475595,0,0,,,,1,1,,0.03,nav,1,1973,2,, 12801,NJBF000081158,,Galloway,NJ,39.4178085,-74.368277,RES1,3001,,NaN,NE,1969,0,3102,2,1,2354.116581,2354.116581,3507,NO,28,40.78,1,0.55,6106,115.2614,124.773677,134.681268,140.49527,I,Above,Gable,0,5701,,34.39055799,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12802,NJBF000080352,,Galloway,NJ,39.41479529,-74.35547748,RES1,3001,,NaN,NE,1969,0,3102,2,1,1990.660667,1990.660667,3507,NO,35.11,43.13,1,2.54,6106,115.54947,125.048018,134.99088,140.736795,I,Above,Gable,0,5701,,39.11933346,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12803,NJBF000079171,465 W SHORE DR,Galloway,NJ,39.40995384,-74.37408202,RES1,3001,,15,NE,1971,1971,3102,1,1,1258.334111,1258.334111,3507,NO,15.13,21.03,1,0.81,6106,115.225103,124.741587,134.641484,140.502076,I,Above,Hip,0,5701,,18.07863374,0,0,,,,1,1,,0.03,nav,1,1971,1,, 12804,NJBF000079301,434 RISLEY RD,Galloway,NJ,39.41055629,-74.37185359,RES1,3001,,17,NE,1985,1985,3102,2,1,1408.966983,1408.966983,3507,NO,37.34,50.22,1,-0.91,6106,115.264007,124.777843,134.682743,140.529978,I,Above,Gable,0,5701,,43.77879722,0,0,,,,1,1,,0.03,nav,1,1985,2,, 12805,NJBF000078437,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,5556.110164,5556.110164,3505,NO,31.97,37.32,3,6.1,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,34.64473646,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12806,NJBF000082294,629 OHIO AVE,Galloway,NJ,39.42871425,-74.5115539,RES1,3001,,17,NE,1962,1962,3102,1,1,1830.853589,1830.853589,3505,NO,26.01,38.18,3,6.68,6110,112.209692,122.026761,131.638055,137.784821,I,Above,Gable,0,5701,,32.09482636,0,0,,,,1,1,,0.35,nav,1,1962,1,, 12807,NJBF000081131,817 LAFAYETTE BLVD,Galloway,NJ,39.41766768,-74.37987765,RES1,3001,,16,NE,1972,1972,3103,1,1,1556.835658,1556.835658,3505,NO,15.12,24.39,3,-0.14,6106,115.028314,124.554203,134.433562,140.309052,I,Above,Hip,0,5701,,19.75610021,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12808,NJBF000078928,113 5TH STREET SO,Galloway,NJ,39.40839975,-74.36827914,RES1,3001,,43,NE,1982,1982,3102,2,2,1023.532146,1023.532146,3507,NO,37.8,50.45,1,0.77,6106,115.358958,124.867142,134.782521,140.614137,I,Above,Flat,0,5701,,44.12541411,0,0,,,,1,1,,0.03,nav,1,1982,2,, 12809,NJBF000080011,1207 E BRIGANTINE AVE,Galloway,NJ,39.41365641,-74.35567822,RES1,3001,,19,NE,2004,2004,3102,3,1,2053.91475,2053.91475,3507,NO,35.65,41.39,1,1.31,6106,115.557349,125.05533,134.998641,140.747629,I,Above,Hip,0,5701,,38.51819076,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 12810,NJBF000078571,,Galloway,NJ,39.40626754,-74.36633834,RES1,3001,,NaN,NE,1954,0,3102,2,1,1912.426408,1912.426408,3507,NO,21.92,30.28,1,-0.36,6106,115.420735,124.9251,134.846833,140.671618,I,Above,Hip,0,5701,,26.09841682,0,0,,,,1,1,,0.03,nav,1,1954,2,, 12811,NJBF000078557,251 5TH STREET SO,Galloway,NJ,39.40617499,-74.3662676,RES1,3001,,17,NE,1955,1955,3102,2,1,1054.433956,1054.433956,3505,NO,36.41,51.31,3,0.58,6106,115.423137,124.927348,134.84932,140.673887,I,Above,Gable,0,5701,,43.86222571,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12812,NJBF000080338,704 BOBBY JONES RD,Galloway,NJ,39.41476358,-74.38037686,RES1,3001,,16,NE,1972,1972,3103,1,1,1354.557249,1354.557249,3505,NO,17.89,26.82,3,1.11,6106,115.047656,124.57398,134.454722,140.338635,I,Above,Gable,0,5701,,22.35503797,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12813,NJBF000082365,707 OHIO AVE,Galloway,NJ,39.42929462,-74.51264408,RES1,3001,,17,NE,1970,1970,3102,2,1,1997.589556,1997.589556,3505,NO,26.94,34.52,3,-1.6,6106,112.183697,122.001766,131.610634,137.754336,I,Above,Hip,0,5701,,30.73126485,0,0,,,,1,1,,0.03,nav,1,1970,2,, 12814,NJBF000078489,209 8TH STREET SO,Galloway,NJ,39.4058051,-74.36934909,RES1,3001,,16,NE,1952,1952,3102,2,1,1613.181809,1613.181809,3505,NO,32.29,46.76,3,0.78,6106,115.364695,124.872614,134.787161,140.630005,I,Above,Gable,0,5701,,39.52459084,0,0,,,,1,1,,0.03,nav,1,1952,2,, 12815,NJBF000079676,230 QUAY BLVD,Galloway,NJ,39.41228508,-74.35788507,RES1,3001,,45,NE,1975,1975,3102,2,2,1352.290572,1352.290572,3507,NO,37.24,49.59,1,0.07,6106,115.527497,125.026618,134.965348,140.729766,I,Above,Hip,0,5701,,43.41533069,0,0,,,,1,1,,0.03,nav,1,1975,2,, 12816,NJBF000078533,140 10TH STREET SO,Galloway,NJ,39.40603302,-74.37249,RES1,3001,,17,NE,2014,2014,3102,2,1,1845.849884,1845.849884,3505,NO,33.98,42.49,3,8.42,6106,115.298562,124.810866,134.717511,140.577453,I,Above,Hip,0,5701,,38.23698328,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 12817,NJBF000076752,3200 ATL-BRIGANTINE BLVD,Galloway,NJ,39.3946626,-74.38689087,COM1,3001,,NaN,ME,1969,0,3401,2,1,2079.5238,2079.5238,3507,NO,24.54,31.59,1,1.74,6106,115.125642,124.653773,134.532717,140.496587,I,Above,Gable,0,NaN,,28.0634144,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12818,NJBF000079580,114 BAYSHORE AVE,Galloway,NJ,39.41176542,-74.3686059,RES1,3001,,16,NE,1963,1963,3102,2,1,1297.601704,1297.601704,3507,YES,24.03,38.05,1,2.34,6106,115.317126,124.827513,134.739502,140.566432,I,Above,Gable,0,5701,,31.04242791,0,0,,,,1,1,,0.03,nav,1,1963,2,, 12819,NJBF000079002,206 ROOSEVELT BLVD SO,Galloway,NJ,39.40893952,-74.36425483,RES1,3001,,14,NE,1950,1950,3102,2,1,680.2407682,680.2407682,3507,NO,37.83,49.46,1,-0.18,6106,115.434552,124.938228,134.863298,140.670942,I,Above,Gable,0,5701,,43.64348757,0,0.1,,,,1,1,,0.03,nav,1,1950,2,, 12820,NJBF000076170,20 MARC LANE,Galloway,NJ,39.39247158,-74.39507118,RES3C,3001,,33,ME,1984,1984,3301,3,1,4096.135219,4096.135219,3507,NO,35.3,50.05,1,0.99,6106,114.980288,124.523049,134.384397,140.39617,I,Above,Gable,0,NaN,,42.67430589,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 12821,NJBF000076580,325 31ST STREET SO,Galloway,NJ,39.3939723,-74.3842568,RES1,3001,,16,NE,1955,1955,3102,1,1,1762.996892,1762.996892,3507,NO,17.25,29.69,1,-0.7,6106,115.1874,124.710084,134.595489,140.547046,I,Above,Gable,0,5701,,23.47110713,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 12822,NJBF000080914,1312 OUIMET RD,Galloway,NJ,39.41684247,-74.37440055,RES1,3001,,17,NE,1986,1986,3102,2,1,1530.922569,1530.922569,3507,NO,31.98,40.99,1,-0.06,6106,115.147651,124.666628,134.559995,140.408721,I,Above,Gable,0,5701,,36.48469196,0,0,,,,1,1,,0.03,nav,1,1986,2,, 12823,NJBF000080057,610 W SHORE DR,Galloway,NJ,39.41378358,-74.38001488,RES1,3001,,16,NE,1956,1956,3103,1,1,2357.245725,2357.245725,3505,NO,16.97,22.46,3,-0.48,6102,115.065024,124.590707,134.473152,140.357231,I,Above,Hip,0,5701,,19.71302746,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 12824,NJBF000080851,23 MACDONALD PLACE,Galloway,NJ,39.41658411,-74.36685821,RES1,3001,,17,NE,1999,1999,3102,2,1,1906.905855,1906.905855,3507,NO,24.15,29.92,1,2.95,6106,115.302529,124.812926,134.725179,140.533525,I,Above,Gable,0,5701,,27.03650829,0,0,,,,1,1,,0.03,nav,1,1999,2,, 12825,NJBF000080094,103 9TH STREET NO,Galloway,NJ,39.41390031,-74.35977566,RES1,3001,,43,NE,1955,1955,3102,2,2,1507.422687,1507.422687,3507,NO,39.25,47.7,1,1.15,6106,115.472678,124.974644,134.90718,140.679919,I,Above,Hip,0,5701,,43.47701791,0,0,,,,1,1,,0.03,nav,1,1955,2,, 12826,NJBF000081743,1504 E SHORE DR,Galloway,NJ,39.42247207,-74.36736833,RES1,3001,,16,NE,1955,1955,3102,1,1,1021.942742,1021.942742,3507,NO,18.93,27.19,1,1.04,6106,115.232278,124.744594,134.649904,140.450994,I,Above,Hip,0,5701,,23.06118088,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12827,NJBF000081566,1206 E SHORE DR,Galloway,NJ,39.4202925,-74.36445429,RES1,3001,,17,NE,1998,1998,3102,2,1,1429.456614,1429.456614,3507,NO,36.28,47.85,1,1.02,6106,115.312887,124.822035,134.736836,140.52549,I,Above,Hip,0,5701,,42.06332956,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 12828,NJBF000080562,27 KIRKWOOD CIRCLE,Galloway,NJ,39.41546589,-74.36252921,RES1,3001,,18,NE,2004,2004,3102,2,1,1870.972159,1870.972159,3507,NO,37.73,48.89,1,-0.05,6106,115.401133,124.906631,134.830796,140.616724,I,Above,Hip,0,5701,,43.31050929,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 12829,NJBF000076605,321 31ST STREET SO,Galloway,NJ,39.39405829,-74.3843385,RES1,3001,,17,NE,1955,1955,3102,2,1,1868.542974,1868.542974,3507,NO,32.29,42.6,1,1.49,6106,115.184796,124.7077,134.592875,140.544656,I,Above,Gable,0,5701,,37.44508484,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 12830,NJBF000080787,12 MACDERMOTT PLACE,Galloway,NJ,39.41630045,-74.36646019,RES1,3001,,18,NE,2000,2000,3102,2,1,2605.13103,2605.13103,3507,NO,33.03,44.99,1,2.38,6106,115.313463,124.82334,134.736845,140.543483,I,Above,Hip,0,5701,,39.01121729,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 12831,NJBF000081233,1314 VARDON CIRCLE,Galloway,NJ,39.41821886,-74.37447168,RES1,3001,,17,NE,1997,1997,3102,2,1,1720.208989,1720.208989,3507,NO,32.97,41.25,1,0.3,6106,115.132208,124.651479,134.543412,140.389912,I,Above,Gable,0,5701,,37.10869371,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 12832,NJBF000076289,402 30TH STREET SO,Galloway,NJ,39.39286025,-74.38244157,RES1,3001,,18,NE,1959,1959,3102,2,1,1411.172731,1411.172731,3507,NO,36.76,42.34,1,1.6,6106,115.236879,124.755281,134.645447,140.589901,I,Above,Flat,0,5701,,39.54865818,0,0,,,,1,1,,0.03,nav,1,1959,2,, 12833,NJBF000081079,203 ROOSEVELT BLVD NO,Galloway,NJ,39.417464,-74.369988,RES1,3001,,18,NE,2005,2005,3102,2,1,1890.729372,1890.729372,3507,NO,33.75,46.41,1,1.02,6106,115.230434,124.744468,134.648125,140.472069,I,Above,Gable,0,5701,,40.08015471,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 12834,NJBF000081099,815 LAFAYETTE BLVD,Galloway,NJ,39.41754077,-74.37988884,RES1,3001,,16,NE,1969,1969,3103,2,1,1332.943913,1332.943913,3505,YES,26.65,37.86,3,1.68,6106,115.029375,124.555273,134.434723,140.310521,I,Above,Hip,0,5701,,32.25338539,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12835,NJBF000081087,200 WASHINGTON DR,Galloway,NJ,39.41749749,-74.36956207,RES1,3001,,16,NE,1968,1968,3102,2,1,1460.435266,1460.435266,3507,NO,28.38,35.13,1,2.79,6106,115.238686,124.752262,134.656945,140.478515,I,Above,Gable,0,5701,,31.75098325,0,0,,,,1,1,,0.03,nav,1,1968,2,, 12836,NJBF000081096,31 VARDON RD,Galloway,NJ,39.4175235,-74.3726845,RES1,3001,,17,NE,1999,1999,3102,2,1,1720.746676,1720.746676,3507,NO,29.51,43.71,1,1.35,6106,115.175387,124.692471,134.58942,140.427758,I,Above,Gable,0,5701,,36.61023944,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 12837,NJBF000080158,210 13TH STREET NO,Galloway,NJ,39.41411317,-74.35580869,RES1,3001,,43,NE,1950,1950,3102,2,2,996.3379953,996.3379953,3507,NO,31.95,41.42,1,2.64,6106,115.549949,125.04835,134.990934,140.739946,I,Above,Gable,0,5701,,36.68529617,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12838,NJBF000080737,34 12TH STREET NO,Galloway,NJ,39.41610581,-74.35948401,RES1,3001,,16,NE,1980,1980,3102,2,1,1786.794091,1786.794091,3507,YES,22.29,30.74,1,0.19,6106,115.455607,124.958503,134.88987,140.657184,I,Above,Gable,0,5701,,26.51635841,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 12839,NJBF000081809,1423 E SHORE DR,Galloway,NJ,39.42320876,-74.36684462,RES1,3001,,NaN,NE,1986,1986,3102,1,1,1432.129604,1432.129604,3507,NO,18.36,31.1,1,0.13,6106,115.235339,124.747263,134.653118,140.45017,I,Above,Gable,0,5701,,24.72997002,0,0,,,,1,1,,0.03,nav,1,1986,1,, 12840,NJBF000078371,250 7TH STREET SO,Galloway,NJ,39.405107,-74.3682015,RES1,3001,,15,NE,1949,1949,3102,1,1,821.3125717,821.3125717,3505,NO,12.7,19.37,3,-0.21,6106,115.395361,124.901288,134.819153,140.656906,I,Above,Gable,0,5701,,16.03396107,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 12841,NJBF000081212,39 VARDON RD,Galloway,NJ,39.41807029,-74.37277911,RES1,3001,,17,NE,2000,2000,3102,2,1,2418.740224,2418.740224,3507,NO,23.42,33.6,1,0.57,6106,115.167929,124.685219,134.581433,140.419261,I,Above,Flat,0,5701,,28.51028232,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 12842,NJBF000081187,37 VARDON RD,Galloway,NJ,39.41793857,-74.37273902,RES1,3001,,17,NE,1998,1998,3102,2,1,1963.709462,1963.709462,3507,NO,36.61,45.25,1,0.47,6106,115.17007,124.687291,134.583726,140.421582,I,Above,Hip,0,5701,,40.92952921,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 12843,NJBF000081779,1412 E SHORE DR,Galloway,NJ,39.42284344,-74.36656524,RES1,3001,,16,NE,1955,1955,3102,1,1,2684.579698,2684.579698,3507,NO,18.15,32.77,1,0.1,6106,115.244651,124.756272,134.663205,140.459326,I,Above,Hip,0,5701,,25.45732497,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12844,NJBF000076495,4321 HARBOR BEACH BLVD,Galloway,NJ,39.39363048,-74.39804965,RES1,3001,,NaN,NE,1969,0,3102,2,1,1889.303848,1889.303848,3505,NO,42.82,57.42,3,4.24,6106,114.905874,124.455681,134.309801,140.333309,I,Above,Hip,0,5701,,50.11904894,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12845,NJBF000079719,530 LAFAYETTE BLVD,Galloway,NJ,39.41247646,-74.37549053,RES1,3001,,16,NE,1978,1978,3103,1,1,2628.11478,2628.11478,3505,NO,25.58,31.19,3,6.68,6106,115.170355,124.689638,134.584101,140.447158,I,Above,Gable,0,5701,,28.38775861,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 12846,NJBF000081714,1515 E SHORE DR,Galloway,NJ,39.42219275,-74.36853475,RES1,3001,,17,NE,2002,2002,3102,2,1,2210.767681,2210.767681,3507,NO,36.73,44.7,1,-0.2,6106,115.211651,124.725046,134.627736,140.435598,I,Above,Hip,0,5701,,40.7121866,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 12847,NJBF000079816,100 LINCOLN DR,Galloway,NJ,39.41296848,-74.36874355,RES1,3001,,16,NE,1970,1970,3102,2,1,1161.912008,1161.912008,3507,NO,27.69,40.84,1,2.11,6106,115.301836,124.81293,134.723597,140.549015,I,Above,Gable,0,5701,,34.26283245,0,0,,,,1,1,,0.03,nav,1,1970,2,, 12848,NJBF000080870,1303 RAY AVE,Galloway,NJ,39.41666878,-74.3734967,RES1,3001,,17,NE,1987,1987,3102,1,1,1538.38502,1538.38502,3507,NO,19.92,34.63,1,1.06,6106,115.167698,124.685564,134.581298,140.425559,I,Above,Gable,0,5701,,27.2769402,0,0,,,,1,1,,0.03,nav,1,1987,1,, 12849,NJBF000079490,,Galloway,NJ,39.41137014,-74.36143415,RES1,3001,,NaN,NE,1969,0,3102,2,1,1034.709629,1034.709629,3507,NO,27.67,39.18,1,0.62,6106,115.465821,124.967938,134.898305,140.685142,I,Above,Gable,0,5701,,33.42379552,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12850,NJBF000078726,128 8TH STREET SO,Galloway,NJ,39.40718482,-74.37122741,RES1,3001,,16,NE,1957,1957,3102,2,1,1530.977587,1530.977587,3507,NO,22.25,31.96,1,0.57,6106,115.31204,124.823312,134.732261,140.582819,I,Above,Hip,0,5701,,27.105713,0,0,,,,1,1,,0.03,nav,1,1957,2,, 12851,NJBF000078870,212 VERNON PLACE,Galloway,NJ,39.40805768,-74.36439109,RES1,3001,,43,NE,1952,1952,3102,3,2,1015.562099,1015.562099,3507,NO,59.05,66.73,1,1.82,6106,115.441114,124.944358,134.869728,140.679834,I,Above,Flat,0,5701,,62.88841354,0,0,,,,1,1,,0.03,nav,1,1952,3,, 12852,NJBF000080567,129 ROOSEVELT BLVD NO,Galloway,NJ,39.41547947,-74.36968466,RES1,3001,,16,NE,1970,1970,3102,2,1,1426.04884,1426.04884,3507,NO,40.25,50.2,1,1.49,6106,115.2569,124.770027,134.676217,140.502136,I,Above,Flat,0,5701,,45.2225134,0,0,,,,1,1,,0.03,nav,1,1970,2,, 12853,NJBF000080283,109 11TH STREET NO,Galloway,NJ,39.41456088,-74.35817742,RES1,3001,,15,NE,1953,1953,3102,1,1,1117.743882,1117.743882,3507,NO,15.52,23.31,1,-0.04,6106,115.497854,124.998688,134.934768,140.697033,I,Above,Flat,0,5701,,19.41850807,0,0,,,,1,1,,0.03,nav,1,1953,1,, 12854,NJBF000081025,20 12TH STREET NO,Galloway,NJ,39.41725565,-74.36092574,RES1,3001,,16,NE,1957,1957,3102,1,1,1246.016496,1246.016496,3507,NO,16.67,23.27,1,1.84,6106,115.414807,124.919589,134.846224,140.61995,I,Above,Gable,0,5701,,19.97198203,0,0,,,,1,1,,0.03,nav,1,1957,1,, 12855,NJBF000080834,1319 RAY AVE,Galloway,NJ,39.41651673,-74.3748816,RES1,3001,,17,NE,1985,1985,3102,2,1,1672.86803,1672.86803,3507,NO,37.54,47.54,1,-0.91,6106,115.141232,124.660733,134.553219,140.405104,I,Above,Gable,0,5701,,42.54403457,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 12856,NJBF000079119,,Galloway,NJ,39.40964851,-74.361879,RES1,3001,,NaN,NE,1969,0,3102,2,1,1842.009099,1842.009099,3507,NO,24.46,33.56,1,-0.42,6106,115.474956,124.976425,134.906985,140.699544,I,Above,Hip,0,5701,,29.01186158,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12857,NJBF000078660,134 9TH STREET SO,Galloway,NJ,39.40677481,-74.37197638,RES1,3001,,18,NE,2014,2014,3102,2,1,1772.145426,1772.145426,3507,NO,36.38,41.4,1,0.49,6106,115.301166,124.813206,134.720599,140.576156,I,Above,Hip,0,5701,,38.89366236,0,0,,,,1,1,,0.03,nav,1,2014,2,, 12858,NJBF000078648,138 9TH STREET SO,Galloway,NJ,39.4066972,-74.37188293,RES1,3001,,16,NE,1950,1950,3102,3,1,1354.977656,1354.977656,3507,NO,57.14,64.67,1,1.3,6106,115.303876,124.815744,134.723421,140.578623,I,Above,Gable,0,5701,,60.90364275,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 12859,NJBF000081312,2 SPALDING PLACE,Galloway,NJ,39.41858335,-74.36305929,RES1,3001,,17,NE,1989,1989,3102,2,1,1748.810407,1748.810407,3507,NO,36.07,41.19,1,1.95,6106,115.358368,124.865674,134.785648,140.569309,I,Above,Hip,0,5701,,38.63336235,0,0,,,,1,1,,0.03,nav,1,1989,2,, 12860,NJBF000078313,234 9TH STREET SO,Galloway,NJ,39.40465385,-74.37000921,RES1,3001,,15,NE,1954,1954,3102,1,1,1080.962473,1080.962473,3505,NO,14.19,19.81,3,-1.3,6106,115.36353,124.871549,134.785228,140.634155,I,Above,Gable,0,5701,,17.00415246,0,0,,,,1,1,,0.03,nav,1,1954,1,, 12861,NJBF000077315,2605 REVERE BLVD,Galloway,NJ,39.39786011,-74.38374698,RES1,3001,,18,NE,2009,2009,3102,3,1,3521.373937,3521.373937,3507,NO,37.22,50.74,1,1.04,6106,115.155779,124.680505,134.565123,140.504509,I,Above,Gable,0,5701,,43.98240734,0,1.2,,,,1,1,,0.03,nav,1,2009,3,, 12862,NJBF000081512,218 HAGEN RD,Galloway,NJ,39.41972249,-74.36722391,RES1,3001,,17,NE,1992,1992,3102,2,1,1619.40489,1619.40489,3507,NO,24.76,33.71,1,2.87,6106,115.263059,124.774735,134.683142,140.488049,I,Above,Gable,0,5701,,29.23267506,0,0,,,,1,1,,0.03,nav,1,1992,2,, 12863,NJBF000079427,443 RISLEY RD,Galloway,NJ,39.41109546,-74.37256628,RES1,3001,,16,NE,1983,1983,3102,2,1,1523.129434,1523.129434,3507,NO,36.79,44.51,1,2.13,6106,115.24397,124.758953,134.66168,140.511736,I,Above,Gable,0,5701,,40.65003044,0,0,,,,1,1,,0.03,nav,1,1983,2,, 12864,NJBF000079418,441 RISLEY RD,Galloway,NJ,39.41105594,-74.37239867,RES1,3001,,16,NE,1984,1984,3102,2,1,1937.20276,1937.20276,3507,NO,24.01,30.19,1,1.71,6106,115.24776,124.762512,134.66568,140.514903,I,Above,Gable,0,5701,,27.09666734,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12865,NJBF000079113,,Galloway,NJ,39.40962703,-74.37423405,RES1,3001,,NaN,NE,1947,0,3102,2,1,1561.028236,1561.028236,3507,NO,37.05,42.95,1,2.56,6106,115.225426,124.741972,134.641748,140.503831,I,Above,Hip,0,5701,,40.00209946,0,0,,,,1,1,,0.03,nav,1,1947,2,, 12866,NJBF000079853,527 CAVERLY DR,Galloway,NJ,39.41311032,-74.37405803,RES1,3001,,17,NE,1983,1983,3102,2,1,1984.88806,1984.88806,3507,NO,32.34,44.24,1,1.26,6106,115.192868,124.710498,134.607936,140.462069,I,Above,Gable,0,5701,,38.28981608,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 12867,NJBF000080912,1107 JENKINS PKWY,Galloway,NJ,39.41683937,-74.36041083,RES1,3001,,17,NE,1990,1990,3102,2,1,2148.537569,2148.537569,3507,NO,22.61,28.85,1,-0.65,6106,115.429439,124.933552,134.861885,140.633341,I,Above,Gable,0,5701,,25.73436811,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 12868,NJBF000081318,927 N SHORE DR,Galloway,NJ,39.4186064,-74.377455,RES1,3001,,16,NE,1962,1962,3103,2,1,1531.298209,1531.298209,3505,NO,31.59,41.96,3,-1.77,6106,115.067942,124.590821,134.475146,140.336422,I,Above,Gable,0,5701,,36.77898724,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 12869,NJBF000080589,46 12TH STREET NO,Galloway,NJ,39.41555681,-74.35889026,RES1,3001,,NaN,NE,1986,1957,3102,2,1,2088.733957,2088.733957,3507,NO,26.63,38.88,1,1.42,6106,115.473207,124.975265,134.908644,140.673415,I,Above,Gable,0,5701,,32.7547946,0,0,,,,1,1,,0.03,nav,1,1986,2,, 12870,NJBF000078665,,Galloway,NJ,39.40682054,-74.36465905,RES1,3001,,NaN,NE,1969,0,3102,2,1,2224.688296,2224.688296,3507,NO,21.27,28.9,1,0.19,6106,115.448795,124.951491,134.877059,140.691095,I,Above,Flat,0,5701,,25.0808866,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12871,NJBF000081708,6 TRAVERS PLACE,Galloway,NJ,39.42214261,-74.36626211,RES1,3001,,17,NE,1992,1992,3102,1,1,1976.402766,1976.402766,3507,NO,12.77,18.71,1,0.76,6106,115.257808,124.769043,134.677452,140.473055,I,Above,Hip,0,5701,,15.73916183,0,0,,,,1,1,,0.03,nav,1,1992,1,, 12872,NJBF000080194,110 11TH STREET NO,Galloway,NJ,39.41422309,-74.35841357,RES1,3001,,43,NE,1950,1950,3102,2,2,1511.435357,1511.435357,3507,NO,26.87,34.45,1,0.11,6106,115.496627,124.997481,134.93324,140.697465,I,Above,Gable,0,5701,,30.65921188,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12873,NJBF000081128,804 FOWNES AVE,Galloway,NJ,39.41765112,-74.36391391,RES1,3001,,16,NE,1978,1978,3102,2,1,1222.54509,1222.54509,3507,NO,28.24,43.01,1,-0.71,6106,115.35077,124.858556,134.77724,140.567283,I,Above,Hip,0,5701,,35.62198239,0,0,,,,1,1,,0.03,nav,1,1978,2,, 12874,NJBF000078565,171 9TH STREET SO,Galloway,NJ,39.40621838,-74.37081217,RES1,3001,,17,NE,1959,1959,3102,2,1,1625.053084,1625.053084,3505,NO,20.26,34.86,3,-1.76,6106,115.330663,124.840796,134.751443,140.601664,I,Above,Flat,0,5701,,27.56297661,0,0,,,,1,1,,0.03,nav,1,1959,2,, 12875,NJBF000079761,801 E BEACH AVE,Galloway,NJ,39.41272878,-74.35963277,RES1,3001,,43,NE,1950,1950,3102,1,2,1189.444896,1189.444896,3507,NO,12.61,19.99,1,1.3,6106,115.487775,124.988897,134.922774,140.696703,I,Above,Hip,0,5701,,16.3017833,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12876,NJBF000081481,209 HAGEN RD,Galloway,NJ,39.41945206,-74.3666958,RES1,3001,,17,NE,1988,1988,3102,2,1,2097.013843,2097.013843,3507,NO,24.3,38.7,1,2.25,6106,115.276426,124.787512,134.697499,140.499967,I,Above,Gable,0,5701,,31.49907746,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 12877,NJBF000078912,101 6TH STREET SO,Galloway,NJ,39.4083055,-74.369149,RES1,3001,,NaN,NE,1950,1950,3102,2,1,547.2477466,547.2477466,3507,NO,25.68,32.11,1,1.96,6106,115.342352,124.851576,134.764861,140.601558,I,Above,Flat,0,5701,,28.89654742,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12878,NJBF000078902,101 6TH STREET SO,Galloway,NJ,39.40824328,-74.36926338,RES1,3001,,NaN,NE,1950,1950,3102,2,1,985.461016,985.461016,3507,NO,28.85,37.6,1,0.72,6106,115.340697,124.850029,134.763076,140.600536,I,Above,Flat,0,5701,,33.22811637,0,0,,,,1,1,,0.03,nav,1,1950,2,, 12879,NJBF000081466,1000 N SHORE DR,Galloway,NJ,39.41937097,-74.37632976,RES1,3001,,17,NE,2002,2002,3103,3,1,2548.078059,2548.078059,3505,NO,38.47,48.3,3,4.58,6106,115.082982,124.604542,134.49087,140.34489,I,Above,Hip,0,5701,,43.38648202,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 12880,NJBF000078846,103 W BRIGANTINE AVE,Galloway,NJ,39.40789013,-74.36336428,RES1,3001,,16,NE,1953,1953,3102,1,1,1438.709776,1438.709776,3507,NO,18.31,33,1,2.61,6110,115.463605,124.965531,134.893615,140.698099,I,Above,Flat,0,5701,,25.65679343,0,0,,,,1,1,,0.35,nav,1,1953,1,, 12881,NJBF000079289,221 5TH STREET NO,Galloway,NJ,39.41050554,-74.36051315,RES1,3001,,47,NE,1955,1955,3102,3,2,1604.590108,1604.590108,3507,NO,53.97,62.31,1,0.83,6106,115.493414,124.993994,134.927384,140.710404,I,Above,Gable,0,5701,,58.13869206,0,0,,,,1,1,,0.03,nav,1,1955,3,, 12882,NJBF000079425,,Galloway,NJ,39.41109246,-74.35948633,RES1,3001,,NaN,NE,1969,0,3102,2,1,1562.482944,1562.482944,3507,NO,27.53,37.38,1,0.95,6106,115.50789,125.0078,134.943364,140.71931,I,Above,Flat,0,5701,,32.4557549,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12883,NJBF000081802,1427 E SHORE DR,Galloway,NJ,39.42312241,-74.36718883,RES1,3001,,19,NE,2007,2007,3102,2,1,3066.987589,3066.987589,3507,NO,37.01,42.34,1,-0.62,6106,115.229312,124.741542,134.646629,140.445688,I,Above,Hip,0,5701,,39.67671328,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 12884,NJBF000081215,900 LAFAYETTE BLVD,Galloway,NJ,39.41808308,-74.38034652,RES1,3001,,16,NE,1966,1966,3103,2,1,1711.013699,1711.013699,3505,NO,32.51,45.84,3,7.46,6106,115.01461,124.541112,134.418966,140.296005,I,Above,Gable,0,5701,,39.17254479,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 12885,NJBF000081206,900 LAFAYETTE BLVD,Galloway,NJ,39.41803384,-74.3805692,RES1,3001,,16,NE,1966,1966,3103,2,1,546.9631561,546.9631561,3505,NO,33.65,47.18,3,7.7,6106,115.0106,124.537389,134.414757,140.293014,I,Above,Gable,0,5701,,40.4150476,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 12886,NJBF000081430,210 HAGEN RD,Galloway,NJ,39.41918209,-74.36716985,RES1,3001,,17,NE,1993,1993,3102,3,1,2114.561047,2114.561047,3507,NO,57.27,66.17,1,-0.77,6106,115.269648,124.78114,134.690201,140.495736,I,Above,Hip,0,5701,,61.716616,0,1.1,,,,1,1,,0.03,nav,1,1993,3,, 12887,NJBF000080135,110 ROOSEVELT BLVD NO,Galloway,NJ,39.41403437,-74.36945806,RES1,3001,,17,NE,1976,1976,3102,2,1,2505.35682,2505.35682,3507,NO,32.42,43.14,1,1.95,6106,115.27638,124.788738,134.696738,140.524098,I,Above,Gable,0,5701,,37.78114194,0,0,,,,1,1,,0.03,nav,1,1976,2,, 12888,NJBF000080670,28 11TH STREET NO,Galloway,NJ,39.41586917,-74.36048097,RES1,3001,,16,NE,1984,1984,3102,1,1,1896.213284,1896.213284,3507,NO,17.16,27.54,1,1.85,6106,115.438071,124.941779,134.870804,140.644285,I,Above,Gable,0,5701,,22.35163637,0,0,,,,1,1,,0.03,nav,1,1984,1,, 12889,NJBF000079938,407 SHERIDAN PLACE,Galloway,NJ,39.41339641,-74.36525525,RES1,3001,,16,NE,1973,1973,3102,1,1,1810.365521,1810.365521,3507,NO,19.55,25.27,1,2.03,6106,115.367765,124.875114,134.794159,140.599245,I,Above,Hip,0,5701,,22.41254523,0,0,,,,1,1,,0.03,nav,1,1973,1,, 12890,NJBF000079660,18 QUAY CIRCLE,Galloway,NJ,39.41220182,-74.36799362,REL1,3001,,NaN,ME,1969,0,3401,1,1,4284.28126,4284.28126,3507,NO,11.5,19.27,1,0.17,6106,115.324939,124.834811,134.747973,140.570661,I,Above,Gable,0,NaN,,15.38249937,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12891,NJBF000081037,1334 VARDON RD,Galloway,NJ,39.4173168,-74.37645507,RES1,3001,,18,NE,2007,2007,3103,3,1,1726.91297,1726.91297,3505,NO,42.55,48.3,3,-2.25,6106,115.101247,124.622792,134.510728,140.369314,I,Above,Gable,0,5701,,45.42480059,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 12892,NJBF000081036,1336 VARDON RD,Galloway,NJ,39.41731341,-74.37665237,RES1,3001,,16,NE,1997,1997,3103,2,1,1471.650046,1471.650046,3505,NO,23.24,31.9,3,-0.84,6106,115.097298,124.619085,134.506548,140.366165,I,Above,Hip,0,5701,,27.56870619,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 12893,NJBF000078895,301 W BEACH AVE,Galloway,NJ,39.40819604,-74.36643211,RES1,3001,,16,NE,1969,1969,3102,2,1,1170.700336,1170.700336,3507,YES,26.98,37.46,1,1.92,6106,115.398447,124.904227,134.824368,140.645912,I,Above,Flat,0,5701,,32.22359702,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12894,NJBF000080137,124 LINCOLN DR,Galloway,NJ,39.41404194,-74.37042121,RES1,3001,,17,NE,1973,1973,3102,2,1,1881.753344,1881.753344,3507,NO,25.31,32.5,1,1.43,6106,115.256845,124.770332,134.675938,140.508567,I,Above,Gable,0,5701,,28.90811482,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 12895,NJBF000082350,519 FOURTH ST,Galloway,NJ,39.42921604,-74.48494808,RES1,3001,,17,NE,2007,2007,3102,2,1,2415.217964,2415.217964,3507,NO,25.08,37.77,1,-0.67,6110,112.756418,122.49127,132.146496,138.289994,I,Above,Gable,0,5701,,31.42543619,0,1.2,,,,1,1,,0.35,nav,1,2007,2,, 12896,NJBF000076451,3001 OCEAN AVE,Galloway,NJ,39.3934649,-74.3831259,RES1,3001,,21,NE,2017,2017,3102,3,1,2985.981213,2985.981213,3507,NO,36.4,43.36,1,2.17,6106,115.216197,124.73638,134.624668,140.571364,I,Above,Hip,0,5701,,39.88137367,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 12897,NJBF000081111,208 ROOSEVELT BLVD NO,Galloway,NJ,39.41758207,-74.37048734,RES1,3001,,16,NE,1972,1972,3102,2,1,1781.863967,1781.863967,3507,NO,40.96,55.62,1,2.88,6106,115.219164,124.733777,134.636091,140.462523,I,Above,Hip,0,5701,,48.28963985,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 12898,NJBF000079943,20 HEALD RD,Galloway,NJ,39.413421,-74.3661015,RES1,3001,,19,NE,2001,2001,3102,3,1,1681.129885,1681.129885,3507,NO,43.14,53.47,1,1.7,6106,115.350458,124.858749,134.775646,140.585459,I,Above,Hip,0,5701,,48.30699493,0,0,,,,1,1,,0.03,nav,1,2001,3,, 12899,NJBF000080827,1002 SHERIDAN BLVD,Galloway,NJ,39.41648433,-74.36986983,RES1,3001,,18,NE,2000,2000,3102,2,1,1783.633089,1783.633089,3507,NO,35.36,42.85,1,0.67,6106,115.242847,124.756488,134.661327,140.48641,I,Above,Hip,0,5701,,39.1048766,0,1.2,,,,1,1,,0.03,nav,1,2000,2,, 12900,NJBF000078798,,Galloway,NJ,39.40761915,-74.3653253,RES1,3001,,NaN,NE,2005,0,3102,2,1,1544.912429,1544.912429,3507,NO,29.61,42.11,1,2.99,6106,115.4269,124.930958,134.85429,140.670618,I,Above,Hip,0,5701,,35.85990797,0,0,,,,1,1,,0.03,nav,1,2005,2,, 12901,NJBF000081346,204 HAGEN RD,Galloway,NJ,39.41875696,-74.36707773,RES1,3001,,17,NE,1993,1993,3102,2,1,1636.399392,1636.399392,3507,NO,26.89,33.96,1,0.92,6106,115.275836,124.787125,134.69682,140.502581,I,Above,Hip,0,5701,,30.42089308,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 12902,NJBF000078935,109 5TH STREET SO,Galloway,NJ,39.40848513,-74.36837692,RES1,3001,,18,NE,2008,2008,3102,3,1,1305.489461,1305.489461,3507,NO,44.68,52.77,1,2.3,6106,115.356081,124.864438,134.779511,140.611512,I,Above,Hip,0,5701,,48.72106095,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 12903,NJBF000078548,215 7TH STREET SO,Galloway,NJ,39.40612138,-74.36850008,RES1,3001,,16,NE,1950,1950,3102,1,1,1167.073949,1167.073949,3505,NO,22.22,30.07,3,8.12,6106,115.378546,124.885565,134.802005,140.639407,I,Above,Hip,0,5701,,26.14436864,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12904,NJBF000076677,3116 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39431503,-74.38587892,COM1,3001,,NaN,ME,1969,0,3401,1,1,1917.024584,1917.024584,3507,YES,13.11,22.46,1,-0.63,6106,115.150274,124.67624,134.557702,140.517079,I,Above,Flat,0,NaN,,17.78707587,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12905,NJBF000076425,,Galloway,NJ,39.3933532,-74.38479288,RES1,3001,,NaN,NE,1969,0,3102,2,1,2645.310407,2645.310407,3507,NO,32.63,38.23,1,2.92,6106,115.183122,124.706278,134.590723,140.546683,I,Above,Gable,0,5701,,35.43191773,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12906,NJBF000078498,247 6TH STREET SO,Galloway,NJ,39.40584553,-74.36709363,RES1,3001,,15,NE,1950,1950,3102,1,1,1264.326513,1264.326513,3505,NO,21.78,35.05,3,5.89,6106,115.409922,124.914943,134.835072,140.665023,I,Above,Flat,0,5701,,28.41832879,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12907,NJBF000079882,48 HEALD RD,Galloway,NJ,39.41321856,-74.36271917,RES1,3001,,16,NE,1957,1957,3102,1,1,1643.73415,1643.73415,3507,NO,16.91,29,1,-0.34,6106,115.420652,124.925203,134.850805,140.641758,I,Above,Gable,0,5701,,22.95361312,0,0,,,,1,1,,0.03,nav,1,1957,1,, 12908,NJBF000078857,213 2ND STREET SO,Galloway,NJ,39.40796896,-74.36455451,RES1,3001,,15,NE,1942,1942,3102,1,1,749.9140803,749.9140803,3507,NO,12.3,25.56,1,-0.11,6106,115.438745,124.942122,134.867142,140.678364,I,Above,Gable,0,5701,,18.92871594,0,0,,,,1,1,,0.03,nav,1,1942,1,, 12909,NJBF000079695,7 HAMILTON PLACE,Galloway,NJ,39.41238174,-74.36641232,RES1,3001,,16,NE,1972,1972,3102,2,1,1124.932788,1124.932788,3507,YES,34.42,42.07,1,1.92,6106,115.354991,124.863128,134.780102,140.59358,I,Above,Gable,0,5701,,38.24436032,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12910,NJBF000080253,101 10TH STREET NO,Galloway,NJ,39.414447,-74.35926242,RES1,3001,,43,NE,1972,1972,3102,2,2,1257.951871,1257.951871,3507,NO,20.59,25.76,1,-0.66,6106,115.47729,124.979077,134.912466,140.681274,I,Above,Hip,0,5701,,23.17479145,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12911,NJBF000080535,601 SHERIDAN BLVD,Galloway,NJ,39.41535026,-74.36504819,RES1,3001,,16,NE,1984,1984,3102,1,1,1344.823815,1344.823815,3507,NO,15.6,23.62,1,-0.69,6106,115.351683,124.859701,134.777597,140.578012,I,Above,Hip,0,5701,,19.61075518,0,0,,,,1,1,,0.03,nav,1,1984,1,, 12912,NJBF000081361,937 N SHORE DR,Galloway,NJ,39.41883246,-74.37656169,RES1,3001,,16,NE,1971,1971,3103,1,1,1491.33109,1491.33109,3505,NO,20.26,26.27,3,1.74,6106,115.083732,124.605541,134.491816,140.348055,I,Above,Hip,0,5701,,23.26272548,0,0,,,,1,1,,0.03,nav,1,1971,1,, 12913,NJBF000079269,439 HACKNEY PLACE,Galloway,NJ,39.41042042,-74.3728425,RES1,3001,,16,NE,1978,1978,3102,1,1,1207.647887,1207.647887,3507,NO,13.46,20.91,1,-0.23,6106,115.24538,124.760432,134.663006,140.515921,I,Above,Gable,0,5701,,17.18697039,0,0,,,,1,1,,0.03,nav,1,1978,1,, 12914,NJBF000079457,307 LAFAYETTE PLACE,Galloway,NJ,39.41123432,-74.36822605,RES1,3001,,16,NE,1961,1961,3102,1,1,1895.880477,1895.880477,3507,NO,14.14,23.5,1,1.14,6106,115.330337,124.840013,134.753371,140.579193,I,Above,Gable,0,5701,,18.82025424,0,0,,,,1,1,,0.03,nav,1,1961,1,, 12915,NJBF000079451,305 LAFAYETTE PLACE,Galloway,NJ,39.41119884,-74.36809962,RES1,3001,,16,NE,1962,1962,3102,1,1,1372.334793,1372.334793,3507,NO,15.59,27.61,1,2.06,6106,115.333248,124.842756,134.756455,140.58164,I,Above,Hip,0,5701,,21.60099098,0,0,,,,1,1,,0.03,nav,1,1962,1,, 12916,NJBF000081250,845 W SHORE DR,Galloway,NJ,39.41830687,-74.38082483,RES1,3001,,18,NE,2011,2011,3103,2,1,2074.983042,2074.983042,3505,NO,29.05,40.49,3,-1.57,6106,115.002655,124.529774,134.406277,140.285279,I,Above,Flat,0,5701,,34.77027549,0,1.1,,,,1,1,,0.03,nav,1,2011,2,, 12917,NJBF000080687,46 KIRKWOOD CIRCLE,Galloway,NJ,39.41591136,-74.36238574,RES1,3001,,16,NE,1983,1983,3102,1,1,2003.483411,2003.483411,3507,NO,11.81,25.62,1,-0.21,6106,115.3994,124.904965,134.829099,140.613446,I,Above,Hip,0,5701,,18.71447641,0,1.1,,,,1,1,,0.03,nav,1,1983,1,, 12918,NJBF000081682,7 HUTCHISON PLACE,Galloway,NJ,39.42180621,-74.36623499,RES1,3001,,17,NE,1985,1985,3102,3,1,1312.241174,1312.241174,3507,NO,36.02,44.07,1,0.42,6106,115.261763,124.772913,134.681732,140.477738,I,Above,Gable,0,5701,,40.04690013,0,1.1,,,,1,1,,0.03,nav,1,1985,3,, 12919,NJBF000078503,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,2352.933232,2352.933232,3505,NO,33.53,47.34,3,-2.74,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,40.43240018,0,0,,,,1,1,,0.03,nav,1,1984,2,, 12920,NJBF000081461,1006 FOWNES AVE,Galloway,NJ,39.41933659,-74.36406016,RES1,3001,,17,NE,2005,2005,3102,2,1,1839.12158,1839.12158,3507,NO,27.7,42.01,1,1.97,6106,115.330555,124.839056,134.75578,140.543813,I,Above,Hip,0,5701,,34.85174725,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 12921,NJBF000078605,122 10TH STREET SO,Galloway,NJ,39.40647103,-74.37283615,RES1,3001,,16,NE,1946,1946,3102,1,1,1535.471942,1535.471942,3507,NO,14.53,27.7,1,-0.94,6106,115.286912,124.799951,134.705445,140.56639,I,Above,Flat,0,5701,,21.11751635,0,0,,,,1,1,,0.03,nav,1,1946,1,, 12922,NJBF000078950,204 VERNON PLACE,Galloway,NJ,39.40858953,-74.36486173,RES1,3001,,15,NE,1958,1958,3102,1,1,867.1773399,867.1773399,3507,NO,14.99,23.53,1,2.86,6106,115.425995,124.930151,134.853948,140.665749,I,Above,Flat,0,5701,,19.25773856,0,0,,,,1,1,,0.03,nav,1,1958,1,, 12923,NJBF000080061,211 12TH STREET NO,Galloway,NJ,39.413803,-74.3560375,RES1,3001,,15,NE,1945,1945,3102,1,1,698.6692276,698.6692276,3507,YES,19.06,29.38,1,1.02,6106,115.548626,125.047028,134.989283,140.740166,I,Above,Gable,0,5701,,24.22025496,0,0,,,,1,1,,0.03,nav,1,1945,1,, 12924,NJBF000079819,,Galloway,NJ,39.41297973,-74.35929433,RES1,3001,,NaN,NE,1969,0,3102,2,1,1510.482447,1510.482447,3507,NO,35.9,43.12,1,2.69,6106,115.491954,124.992897,134.927437,140.698946,I,Above,Gable,0,5701,,39.51301011,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12925,NJBF000081315,905 N SHORE DR,Galloway,NJ,39.41858749,-74.37939849,RES1,3001,,NaN,NE,1981,0,3103,6,1,1497.241527,1497.241527,3505,NO,65.75,76.8,3,-2.88,6106,115.028773,124.554065,134.433728,140.304966,I,Above,Flat,0,5701,,71.27931675,0,0,,,,1,1,,0.03,nav,1,1981,6,, 12926,NJBF000079484,800 E BRIGANTINE AVE,Galloway,NJ,39.411348,-74.3579855,RES3D,3001,,20,E,2013,2013,3303,3,1,943.1764116,943.1764116,3507,NO,57.39,69.85,1,-0.63,6106,115.535329,125.033906,134.973127,140.739764,I,Above,Flat,0,NaN,,63.62196433,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 12927,NJBF000079765,4 QUAY BLVD,Galloway,NJ,39.41273904,-74.36662365,RES1,3001,,16,NE,1972,1972,3102,2,1,1280.255815,1280.255815,3507,NO,25.3,40.21,1,1.99,6106,115.347,124.855552,134.771703,140.585712,I,Above,Flat,0,5701,,32.75351348,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 12928,NJBF000081202,840 BOBBY JONES RD,Galloway,NJ,39.41800791,-74.38069379,RES1,3001,,16,NE,1972,1972,3103,1,1,1011.770779,1011.770779,3505,NO,21.84,29.65,3,8.93,6106,115.008326,124.535277,134.41237,140.291309,I,Above,Gable,0,5701,,25.74498058,0,0,,,,1,1,,0.03,nav,1,1972,1,, 12929,NJBF000076630,317 31ST STREET SO,Galloway,NJ,39.39413307,-74.38444419,RES1,3001,,16,NE,1947,1947,3102,2,1,919.5287217,919.5287217,3507,NO,29.07,36.85,1,0.79,6106,115.181798,124.704959,134.58985,140.542015,I,Above,Gable,0,5701,,32.95891653,0,0,,,,1,1,,0.03,nav,1,1947,2,, 12930,NJBF000079452,447 RISLEY RD,Galloway,NJ,39.411201,-74.3728675,RES1,3001,,15,NE,1984,1984,3102,1,1,2292.088298,2292.088298,3507,NO,16.95,23.95,1,0.99,6106,115.236769,124.752182,134.654085,140.50557,I,Above,Gable,0,5701,,20.45023914,0,0,,,,1,1,,0.03,nav,1,1984,1,, 12931,NJBF000082206,507 OHIO AVE,Galloway,NJ,39.42783049,-74.50970949,RES1,3001,,17,NE,1963,1963,3102,2,1,1314.139416,1314.139416,3505,NO,33.37,46.28,3,2.14,6112,112.253265,122.068105,131.683397,137.834791,I,Above,Gable,0,5701,,39.82506473,0,0,,,,1,1,,0.35,nav,1,1963,2,, 12932,NJBF000078527,219 7TH STREET SO,Galloway,NJ,39.40601162,-74.36839156,RES1,3001,,43,NE,1949,1949,3102,2,2,1264.726012,1264.726012,3505,NO,28.52,41.49,3,-1.35,6106,115.381888,124.888693,134.805476,140.642485,I,Above,Hip,0,5701,,35.00413513,0,0,,,,1,1,,0.03,nav,1,1949,2,, 12933,NJBF000080604,200 MARSDEN PLACE,Galloway,NJ,39.41560473,-74.38159839,RES1,3001,,15,NE,1955,1955,3103,1,1,1564.129973,1564.129973,3505,NO,20.68,27.47,3,3.82,6106,115.014278,124.542353,134.419446,140.307833,I,Above,Flat,0,5701,,24.07383419,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12934,NJBF000080560,137 LINCOLN DR,Galloway,NJ,39.41546307,-74.370601,RES1,3001,,16,NE,1969,1969,3102,3,1,1911.199396,1911.199396,3507,NO,39.52,44.74,1,0.1,6106,115.238572,124.752742,134.656677,140.487622,I,Above,Hip,0,5701,,42.13060979,0,1.2,,,,1,1,,0.03,nav,1,1969,3,, 12935,NJBF000079408,504 W SHORE DR,Galloway,NJ,39.41101256,-74.37528999,RES1,3001,,19,NE,2014,2014,3103,2,1,2495.748673,2495.748673,3505,NO,29.87,36.23,3,-0.92,6106,115.189573,124.708094,134.604221,140.469167,I,Above,Flat,0,5701,,33.05241383,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 12936,NJBF000079678,220 QUAY BLVD,Galloway,NJ,39.41229523,-74.35865912,RES1,3001,,15,NE,1950,1950,3102,1,1,1487.353468,1487.353468,3507,NO,15.8,22.12,1,1.11,6106,115.511866,125.011749,134.948479,140.717447,I,Above,Hip,0,5701,,18.96207812,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12937,NJBF000080424,2 KIRKWOOD CIRCLE,Galloway,NJ,39.41499552,-74.36484497,RES1,3001,,17,NE,2002,2002,3102,3,1,2054.651228,2054.651228,3507,NO,46.86,58.11,1,2.93,6106,115.359429,124.867081,134.785797,140.585695,I,Above,Gable,0,5701,,52.48939511,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 12938,NJBF000082159,34 NATALIE TERRACE,Galloway,NJ,39.4272438,-74.49520388,RES1,3001,,17,NE,1929,1929,3102,2,1,1303.793116,1303.793116,3505,NO,33.63,45.13,3,3.82,6112,112.557649,122.329477,131.969314,138.124816,I,Above,Flat,0,5701,,39.37910673,0,0,,,,1,1,,0.35,nav,1,1929,2,, 12939,NJBF000079880,23 ROOSEVELT BLVD NO,Galloway,NJ,39.4132127,-74.36797687,RES1,3001,,17,NE,1987,1987,3102,1,1,1942.02056,1942.02056,3507,NO,19.86,28.69,1,0.67,6106,115.314779,124.825091,134.737467,140.558164,I,Above,Hip,0,5701,,24.27753259,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 12940,NJBF000079909,25 ROOSEVELT BLVD NO,Galloway,NJ,39.41330658,-74.36805753,RES1,3001,,16,NE,1965,1965,3102,1,1,1943.465323,1943.465323,3507,NO,13.74,27.8,1,2.71,6106,115.31217,124.822616,134.734711,140.555683,I,Above,Hip,0,5701,,20.76827795,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 12941,NJBF000081309,919 N SHORE DR,Galloway,NJ,39.41857747,-74.37815377,RES1,3001,,16,NE,1972,1972,3103,2,1,1079.35737,1079.35737,3505,YES,30.42,43.89,3,6.75,6106,115.05408,124.577817,134.460483,140.325401,I,Above,Flat,0,5701,,37.15207558,0,0,,,,1,1,,0.03,nav,1,1972,2,, 12942,NJBF000079674,208 QUAY BLVD,Galloway,NJ,39.41228383,-74.35900992,RES1,3001,,18,NE,2005,2005,3102,3,1,1371.225575,1371.225575,3507,NO,35.92,48.48,1,-0.04,6106,115.504938,125.00516,134.940997,140.712048,I,Above,Hip,0,5701,,42.19971312,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 12943,NJBF000084730,741 GREAT CREEK RD,Galloway,NJ,39.46850513,-74.45400927,RES1,3001,,16,NE,1965,1965,3102,2,1,2652.511309,2652.511309,3505,NO,31.65,44.88,3,8.56,6112,113.10302,122.631932,132.303224,138.284017,I,Above,Gable,0,5701,,38.26516534,0,0,,,,1,1,,0.35,nav,1,1965,2,, 12944,NJBF000083309,,Galloway,NJ,39.44184837,-74.47958149,RES1,3001,,NaN,NE,1985,0,3102,2,1,676.9922676,676.9922676,3505,NO,41.57,49.06,3,4.18,6106,112.77752,122.454703,132.107,138.19749,I,Above,Gable,0,5701,,45.31343666,0,0,,,,1,1,,0.03,nav,1,1985,2,, 12945,NJBF000089112,831 CLARKS LANDING RD,Galloway,NJ,39.56386159,-74.54075045,RES1,3001,,16,NE,1962,1962,3102,1,1,2499.442403,2499.442403,3504,NO,14.08,24.26,-4,0,6110,111.11282,120.076634,129.675403,135.086857,I,Above,Hip,0,5701,,19.1682476,0,0,,,,1,1,,0.35,nav,1,1962,1,, 12946,NJBF000089128,831 CLARKS LANDING RD,Galloway,NJ,39.5640102,-74.54088587,RES1,3001,,16,NE,1962,1962,3102,1,1,780.0941101,780.0941101,3504,NO,15.26,21.71,-4,0,6110,111.110174,120.072809,129.67176,135.081762,I,Above,Hip,0,5701,,18.48758281,0,0,,,,1,1,,0.35,nav,1,1962,1,, 12947,NJBF000083403,745 VILLAGE DR,Galloway,NJ,39.44355994,-74.46914488,RES1,3001,,16,NE,1994,1994,3102,1,1,1790.154592,1790.154592,3505,NO,14.02,25.1,3,0.34,6112,112.977017,122.624103,132.293159,138.369385,I,Above,Gable,0,5701,,19.55615256,0,0,,,,1,1,,0.35,nav,1,1994,1,, 12948,NJBF000086143,132 N NEW YORK RD,Galloway,NJ,39.50979175,-74.45715252,RES1,3001,,16,NE,1981,1981,3102,2,1,1896.218263,1896.218263,3507,NO,39.12,49.17,1,2.44,6112,112.776044,122.113792,131.740897,137.614188,I,Above,Hip,0,5701,,44.14688343,0,0,,,,1,1,,0.35,nav,1,1981,2,, 12949,NJBF000089492,852 CLARKS LANDING RD,Galloway,NJ,39.56697173,-74.54476418,RES1,3001,,16,NE,1984,1984,3102,1,1,2848.049482,2848.049482,3504,NO,16.01,28.14,-4,0,6110,111.04024,119.978963,129.58239,134.956255,I,Above,Gable,0,5701,,22.0745735,0,1.2,,,,1,1,,0.35,nav,1,1984,1,, 12950,NJBF000083406,743 VILLAGE DR,Galloway,NJ,39.44360429,-74.46942781,RES1,3001,,16,NE,1991,1991,3102,2,1,1762.340594,1762.340594,3505,NO,19.88,25.23,3,-2.4,6112,112.970971,122.618533,132.287044,138.363375,I,Above,Gable,0,5701,,22.55160014,0,1.1,,,,1,1,,0.35,nav,1,1991,2,, 12951,NJBF000086173,557 MOTTS CREEK RD,Galloway,NJ,39.51567317,-74.44340613,RES1,3001,,16,NE,1956,2004,3102,2,1,2780.411604,2780.411604,3507,NO,41.35,51.23,1,2.52,6112,112.988235,122.296246,131.931852,137.800664,I,Above,Flat,0,5701,,46.28791136,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 12952,NJBF000086162,557 MOTTS CREEK RD,Galloway,NJ,39.51567317,-74.44340613,RES1,3001,,16,NE,1956,2004,3102,2,1,2683.52344,2683.52344,3507,NO,31.42,36.46,1,0.99,6112,112.988235,122.296246,131.931852,137.800664,I,Above,Flat,0,5701,,33.94029496,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 12953,NJBF000083435,721 VILLAGE DR,Galloway,NJ,39.44422105,-74.47217744,RES1,3001,,16,NE,1989,1989,3102,2,1,2727.422895,2727.422895,3505,NO,20.98,28.06,3,-2.01,6112,112.910965,122.562489,132.22555,138.302011,I,Above,Hip,0,5701,,24.52304426,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 12954,NJBF000083322,,Galloway,NJ,39.44225299,-74.4730465,RES1,3001,,NaN,NE,1969,0,3102,2,1,641.1922746,641.1922746,3505,NO,30.48,42.5,3,-0.88,6112,112.907248,122.567634,132.231017,138.315461,I,Above,Gable,0,5701,,36.49022156,0,0,,,,1,1,,0.35,nav,1,1969,2,, 12955,NJBF000083257,549 OLD SHORE RD,Galloway,NJ,39.44042845,-74.47926621,RES1,3001,,16,NE,1901,1901,3102,2,2,1989.978834,1989.978834,3505,NO,36.95,50.53,3,3.23,6112,112.793709,122.475279,132.129455,138.225246,I,Above,Gable,0,5701,,43.74048923,0,0,,,,1,1,,0.35,nav,1,1901,2,, 12956,NJBF000084061,728 CHANESE LN,Galloway,NJ,39.45391088,-74.46141811,RES1,3001,,16,NE,1957,1957,3102,1,1,1444.360881,1444.360881,3505,NO,16.09,29.98,3,4.51,6112,113.058712,122.654013,132.326866,138.359753,I,Above,Gable,0,5701,,23.03339226,0,0,,,,1,1,,0.35,nav,1,1957,1,, 12957,NJBF000084896,825 DOUGHTY RD,Galloway,NJ,39.47064114,-74.45329153,RES1,3001,,16,NE,2005,2005,3102,2,1,1385.307073,1385.307073,3505,NO,36.28,50.42,3,2.95,6112,113.102268,122.621833,132.292167,138.266258,I,Above,Gable,0,5701,,43.34975941,0,0,,,,1,1,,0.35,nav,1,2005,2,, 12958,NJBF000084887,825 DOUGHTY RD,Galloway,NJ,39.47055199,-74.45315199,RES1,3001,,16,NE,2005,2005,3102,2,1,1095.582219,1095.582219,3505,NO,29.21,34.76,3,7.75,6110,113.1056,122.625357,132.296012,138.27024,I,Above,Flat,0,5701,,31.9822003,0,0,,,,1,1,,0.35,nav,1,2005,2,, 12959,NJBF000083195,718 BROOK LN,Galloway,NJ,39.43937174,-74.47502003,RES1,3001,,16,NE,1935,1935,3102,2,1,1810.426325,1810.426325,3505,NO,37.22,45.44,3,7.53,6106,112.887567,122.562515,132.22515,138.321994,I,Above,Gable,0,5701,,41.32978426,0,0,,,,1,1,,0.03,nav,1,1935,2,, 12960,NJBF000084754,205 S NEW YORK RD,Galloway,NJ,39.46876603,-74.46257678,RES1,3001,,16,NE,1835,1835,3102,2,1,1344.322781,1344.322781,3505,NO,28.64,35.78,3,3.13,6110,112.934486,122.473396,132.13035,138.116176,I,Above,Gable,0,5701,,32.20690924,0,0,,,,1,1,,0.35,nav,1,1835,2,, 12961,NJBF000086276,204 N NEW YORK RD,Galloway,NJ,39.51251867,-74.45761408,RES1,3001,,16,NE,2003,2003,3102,2,1,1730.651268,1730.651268,3507,NO,30.09,41.73,1,-0.39,6112,112.750851,122.073901,131.698012,137.564627,I,Above,Gable,0,5701,,35.90864415,0,1.2,,,,1,1,,0.35,nav,1,2003,2,, 12962,NJBF000083192,517 HOLLY BROOK RD,Galloway,NJ,39.43926021,-74.48450635,RES1,3001,,16,NE,1985,1985,3102,1,1,2753.119618,2753.119618,3505,NO,15.48,20.65,3,4.42,6106,112.695134,122.393993,132.040154,138.143229,I,Above,Gable,0,5701,,18.06319301,0,0,,,,1,1,,0.03,nav,1,1985,1,, 12963,NJBF000084830,614 GREAT CREEK RD,Galloway,NJ,39.46966947,-74.46525982,RES1,3001,,NaN,NE,1990,1990,3102,2,1,3237.466448,3237.466448,3505,NO,27.59,36.5,3,2.19,6112,112.876488,122.415143,132.066964,138.051104,I,Above,Gable,0,5701,,32.04723251,0,0.3,,,,1,1,,0.35,nav,1,1990,2,, 12964,NJBF000086605,839 MOTTS CREEK RD,Galloway,NJ,39.51567317,-74.44340613,RES1,3001,,15,NE,1956,1956,3102,1,1,1277.770998,1277.770998,3507,NO,17.14,24.4,1,-0.12,6106,112.988235,122.296246,131.931852,137.800664,I,Above,Flat,0,5701,,20.76864225,0,0,,,,1,1,,0.03,nav,1,1956,1,, 12965,NJBF000083473,729 BELMAR AVE,Galloway,NJ,39.44534999,-74.468906,RES1,3001,,16,NE,1941,1941,3102,1,1,2079.215296,2079.215296,3505,NO,15.33,25.84,3,-0.2,6106,112.969085,122.609486,132.277264,138.346817,I,Above,Gable,0,5701,,20.58308219,0,0,,,,1,1,,0.03,nav,1,1941,1,, 12966,NJBF000083194,519 HOLLY BROOK RD,Galloway,NJ,39.43927628,-74.48478816,RES1,3001,,16,NE,1986,1986,3102,2,1,1213.477125,1213.477125,3505,NO,34.36,43.43,3,0.98,6112,112.689287,122.388801,132.034459,138.137589,I,Above,Flat,0,5701,,38.89622999,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 12967,NJBF000086816,206 MOTTS CREEK RD,Galloway,NJ,39.51914589,-74.43723081,RES1,3001,100,NaN,NE,1969,0,3102,1,1,1211.852213,1211.852213,3507,NO,15.41,20.5,1,1.48,6106,113.077123,122.369558,132.007445,137.872761,I,Above,Flat,0,5701,,17.95706088,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12968,NJBF000083311,602 SHARSWOOD AVE,Galloway,NJ,39.44194354,-74.47980969,RES1,3001,,16,NE,1921,1921,3102,1,1,507.4330403,507.4330403,3505,NO,13.73,27.49,3,1.08,6112,112.772219,122.449598,132.101407,138.191654,I,Above,Gable,0,5701,,20.61108661,0,0,,,,1,1,,0.35,nav,1,1921,1,, 12969,NJBF000083359,746 VILLAGE DR,Galloway,NJ,39.44300285,-74.46904121,RES1,3001,,16,NE,1998,1998,3102,2,1,2433.258776,2433.258776,3505,NO,40.97,47.55,3,3.27,6106,112.98312,122.631866,132.301638,138.379781,I,Above,Gable,0,5701,,44.25712679,0,1.2,,,,1,1,,0.03,nav,1,1998,2,, 12970,NJBF000089655,901 CLARKS LANDING RD,Galloway,NJ,39.56911654,-74.54437981,RES1,3001,,15,NE,1974,1974,3102,1,1,597.6981882,597.6981882,3504,NO,14.13,22.04,-4,0,6110,111.03731,119.959308,129.564359,134.930385,I,Above,Gable,0,5701,,18.08421429,0,0,,,,1,1,,0.15,nav,1,1974,1,, 12971,NJBF000089661,901 CLARKS LANDING RD,Galloway,NJ,39.56919903,-74.54528926,RES1,3001,,15,NE,1974,1974,3102,1,1,3723.268805,3723.268805,3504,NO,15.84,29.39,-4,0,6106,111.023506,119.944662,129.550327,134.91059,I,Above,Gable,0,5701,,22.61401587,0,0,,,,1,1,,0.03,nav,1,1974,1,, 12972,NJBF000084663,223 S NEW YORK RD,Galloway,NJ,39.467579,-74.46513876,RES1,3001,101,15,NE,1906,1906,3102,1,1,932.7631692,932.7631692,3505,NO,20.12,29.5,3,8.41,6112,112.892484,122.439942,132.093807,138.084648,I,Above,Gable,0,5701,,24.81005011,0,0,,,,1,1,,0.03,nav,1,1906,1,, 12973,NJBF000084665,223 S NEW YORK RD,Galloway,NJ,39.4675815,-74.46444449,RES1,3001,101,15,NE,1906,1906,3102,1,1,1687.956326,1687.956326,3505,NO,13.12,23.29,3,1.84,6112,112.905988,122.452457,132.107448,138.097961,I,Above,Flat,0,5701,,18.20210437,0,0,,,,1,1,,1,nav,1,1906,1,, 12974,NJBF000084646,223 S NEW YORK RD,Galloway,NJ,39.4672064,-74.46448226,RES1,3001,101,15,NE,1906,1906,3102,1,1,1297.258696,1297.258696,3505,NO,21.18,28.02,3,1.84,6112,112.907724,122.455834,132.111101,138.102843,I,Above,Gable,0,5701,,24.5993385,0,0,,,,1,1,,1,nav,1,1906,1,, 12975,NJBF000084658,223 S NEW YORK RD,Galloway,NJ,39.46743628,-74.46423154,RES1,3001,101,15,NE,1906,1906,3102,1,1,833.5889155,833.5889155,3505,NO,16.58,22.3,3,4.48,6112,112.911076,122.457864,132.113332,138.104212,I,Above,Gable,0,5701,,19.43663678,0,0,,,,1,1,,0.15,nav,1,1906,1,, 12976,NJBF000083037,636 S NEW YORK RD,Galloway,NJ,39.43506906,-74.48136987,RES1,3001,,17,NE,1961,1961,3102,2,1,2578.783183,2578.783183,3507,NO,39.49,49.65,1,1.77,6112,112.788288,122.493922,132.149549,138.267554,I,Above,Gable,0,5701,,44.56838925,0,1.2,,,,1,1,,0.35,nav,1,1961,2,, 12977,NJBF000083363,744 VILLAGE DR,Galloway,NJ,39.44301861,-74.46936916,RES1,3001,,16,NE,1994,1994,3102,2,1,1682.472989,1682.472989,3505,NO,33.76,47.03,3,6.52,6106,112.976356,122.625779,132.294952,138.373348,I,Above,Gable,0,5701,,40.395345,0,0,,,,1,1,,0.03,nav,1,1994,2,, 12978,NJBF000086625,855 MOTTS CREEK RD,Galloway,NJ,39.516085,-74.441046,RES1,3001,,15,NE,1955,1955,3102,1,1,752.9250428,752.9250428,3507,NO,18.88,24.79,1,2.34,6106,113.028356,122.334936,131.972567,137.841492,I,Above,Gable,0,5701,,21.83199102,0,0,,,,1,1,,0.03,nav,1,1955,1,, 12979,NJBF000086647,MOTTS CREEK RD,Galloway,NJ,39.51664583,-74.43896448,RES1,3001,,NaN,NE,1956,0,3102,2,1,857.0594803,857.0594803,3507,NO,36.1,47.3,1,2.24,6106,113.062429,122.366859,132.006036,137.874635,I,Above,Flat,0,5701,,41.69850072,0,0,,,,1,1,,0.03,nav,1,1956,2,, 12980,NJBF000083970,746 CHANESE LN,Galloway,NJ,39.45267765,-74.45941138,RES1,3001,,16,NE,1958,1958,3102,1,1,524.0178385,524.0178385,3505,NO,12.57,25.1,3,-1.15,6106,113.107531,122.703615,132.381208,138.416057,I,Above,Hip,0,5701,,18.83525184,0,0,,,,1,1,,0.03,nav,1,1958,1,, 12981,NJBF000083372,748 VILLAGE DR,Galloway,NJ,39.44318742,-74.46869572,RES1,3001,,16,NE,1990,1990,3102,2,1,2510.951806,2510.951806,3505,NO,21.75,33.58,3,-2.33,6112,112.988791,122.636148,132.306359,138.383504,I,Above,Gable,0,5701,,27.66775746,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 12982,NJBF000086574,811 MOTTS CREEK RD,Galloway,NJ,39.515236,-74.447559,RES1,3001,,16,NE,1969,1969,3102,1,1,1071.674854,1071.674854,3507,NO,17.2,28.39,1,2.85,6106,112.915775,122.225115,131.856853,137.724568,I,Above,Gable,0,5701,,22.79656805,0,0,,,,1,1,,0.03,nav,1,1969,1,, 12983,NJBF000079135,5 SHERIDAN PLACE,Galloway,NJ,39.40973639,-74.36570393,RES1,3001,,18,NE,2002,2002,3102,2,1,1713.322633,1713.322633,3507,NO,33.19,47.7,1,-0.64,6106,115.396944,124.90281,134.823637,140.638074,I,Above,Gable,0,5701,,40.44768396,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 12984,NJBF000079539,200 7TH STREET NO,Galloway,NJ,39.41158751,-74.36004367,RES1,3001,,15,NE,1953,1953,3102,1,1,762.1201883,762.1201883,3507,NO,21.94,28.07,1,2.74,6106,115.491473,124.992284,134.926028,140.704367,I,Above,Gable,0,5701,,25.00619955,0,0,,,,1,1,,0.03,nav,1,1953,1,, 12985,NJBF000078621,606 W BEACH AVE,Galloway,NJ,39.40653343,-74.36850815,RES1,3001,,45,NE,1983,1983,3102,2,2,1508.350221,1508.350221,3507,NO,33.49,47,1,1.24,6106,115.374022,124.881325,134.797462,140.634082,I,Above,Flat,0,5701,,40.24304674,0,0,,,,1,1,,0.03,nav,1,1983,2,, 12986,NJBF000080341,1004 E EVANS BLVD,Galloway,NJ,39.4147688,-74.35923722,RES1,3001,,16,NE,1978,1978,3102,2,1,1430.599813,1430.599813,3507,NO,27.47,33.72,1,1.03,6106,115.47444,124.976386,134.909562,140.677679,I,Above,Gable,0,5701,,30.59804116,0,0,,,,1,1,,0.03,nav,1,1978,2,, 12987,NJBF000078377,230 8TH STREET SO,Galloway,NJ,39.40514356,-74.36935012,RES1,3001,,15,NE,1954,1954,3102,1,1,1148.514338,1148.514338,3505,NO,13.1,26.73,3,-1.15,6106,115.371687,124.879159,134.794146,140.638344,I,Above,Gable,0,5701,,19.91374932,0,0,,,,1,1,,0.03,nav,1,1954,1,, 12988,NJBF000076435,340 31ST STREET SO,Galloway,NJ,39.39338159,-74.38426941,RES1,3001,,15,NE,1955,1955,3102,1,1,1317.293084,1317.293084,3507,NO,15.45,29.09,1,0.14,6106,115.193591,124.715801,134.601454,140.554526,I,Above,Gable,0,5701,,22.27045697,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 12989,NJBF000076258,404 30TH STREET SO,Galloway,NJ,39.3927538,-74.3823552,RES1,3001,,21,NE,1988,1988,3102,3,1,2146.893495,2146.893495,3507,NO,43.09,53.73,1,-0.12,6106,115.239829,124.757977,134.648394,140.592632,I,Above,Gable,0,5701,,48.41068413,0,1.2,,,,1,1,,0.03,nav,1,1988,3,, 12990,NJBF000079583,107 HAMILTON PLACE,Galloway,NJ,39.4117835,-74.362199,RES1,3001,,43,NE,1977,1977,3102,2,2,990.5065744,990.5065744,3507,NO,21.6,29.48,1,-0.11,6106,115.446108,124.949289,134.877381,140.667909,I,Above,Gable,0,5701,,25.54065658,0,0,,,,1,1,,0.03,nav,1,1977,2,, 12991,NJBF000079063,401 W EVANS BLVD,Galloway,NJ,39.40927,-74.3682485,RES1,3001,,17,NE,1986,1986,3102,1,1,1430.24444,1430.24444,3507,NO,12.29,18.63,1,-0.64,6106,115.350422,124.859076,134.773887,140.60363,I,Above,Gable,0,5701,,15.45931445,0,0,,,,1,1,,0.03,nav,1,1986,1,, 12992,NJBF000080712,806 W SHORE DR,Galloway,NJ,39.41598676,-74.38280862,RES1,3001,,16,NE,1964,1964,3103,2,1,1751.441958,1751.441958,3505,YES,33.41,40.24,3,7.54,6106,114.985777,124.51554,134.389413,140.283099,I,Above,Hip,0,5701,,36.82359848,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 12993,NJBF000079742,,Galloway,NJ,39.41264887,-74.35807793,RES1,3001,,NaN,NE,1969,0,3102,2,1,2253.409888,2253.409888,3507,NO,27.46,35.07,1,2.99,6106,115.519812,125.01936,134.957298,140.722229,I,Above,Flat,0,5701,,31.2648606,0,0,,,,1,1,,0.03,nav,1,1969,2,, 12994,NJBF000079932,101 LINCOLN DR,Galloway,NJ,39.41336074,-74.36880497,RES1,3001,,16,NE,1962,1962,3102,1,1,1713.432984,1713.432984,3507,NO,14.52,24.5,1,0.53,6106,115.29653,124.807861,134.718051,140.543068,I,Above,Gable,0,5701,,19.50707434,0,1.2,,,,1,1,,0.03,nav,1,1962,1,, 12995,NJBF000080662,31 11TH STREET NO,Galloway,NJ,39.41584414,-74.35974617,RES1,3001,,16,NE,1985,2018,3102,2,1,1510.100824,1510.100824,3507,NO,22.26,34.13,1,-0.68,6106,115.45307,124.956074,134.887003,140.656273,I,Above,Gable,0,5701,,28.19410819,0,0,,,,1,1,,0.03,nav,1,1985,2,, 12996,NJBF000080139,601 W SHORE DR,Galloway,NJ,39.4140455,-74.37910345,RES1,3001,,16,NE,1977,1977,3103,2,1,537.9923342,537.9923342,3505,NO,24.62,35.82,3,-0.16,6106,115.08088,124.605364,134.489779,140.368612,I,Above,Gable,0,5701,,30.22071713,0,0,,,,1,1,,0.03,nav,1,1977,2,, 12997,NJBF000079497,113 BAYSHORE AVE,Galloway,NJ,39.41139942,-74.36816071,RES1,3001,,16,NE,1960,1960,3102,1,1,1318.914816,1318.914816,3507,NO,16.15,27.58,1,2.2,6106,115.32993,124.83961,134.752999,140.578143,I,Above,Gable,0,5701,,21.86428526,0,0,,,,1,1,,0.03,nav,1,1960,1,, 12998,NJBF000079874,112 9TH STREET NO,Galloway,NJ,39.41317773,-74.35960084,RES1,3001,,15,NE,1950,1950,3102,1,1,1666.373981,1666.373981,3507,NO,16.69,24.79,1,2.49,6106,115.483724,124.98509,134.918679,140.691641,I,Above,Flat,0,5701,,20.73779056,0,0,,,,1,1,,0.03,nav,1,1950,1,, 12999,NJBF000080994,24 MACDERMOTT PLACE,Galloway,NJ,39.41714716,-74.3666283,RES1,3001,,16,NE,1981,1981,3102,2,1,1233.455486,1233.455486,3507,NO,36.42,51.07,1,0.54,6106,115.301375,124.811722,134.72404,140.530117,I,Above,Gable,0,5701,,43.74617495,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 13000,NJBF000080781,141 ROOSEVELT BLVD NO,Galloway,NJ,39.41628303,-74.36991077,RES1,3001,,16,NE,1950,1950,3102,1,1,1113.714093,1113.714093,3507,NO,15,25.8,1,1.04,6106,115.244081,124.75771,134.662628,140.488302,I,Above,Gable,0,5701,,20.39835067,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 13001,NJBF000080752,139 ROOSEVELT BLVD NO,Galloway,NJ,39.41616131,-74.36987236,RES1,3001,,16,NE,1965,1965,3102,1,1,1615.160023,1615.160023,3507,NO,19.93,32.57,1,1.01,6106,115.24612,124.759669,134.664792,140.490477,I,Above,Hip,0,5701,,26.25399247,0,0,,,,1,1,,0.03,nav,1,1965,1,, 13002,NJBF000081526,1014 N SHORE DR,Galloway,NJ,39.41985781,-74.37504021,RES1,3001,,17,NE,1989,1989,3103,2,1,1247.716069,1247.716069,3505,NO,30.51,42.26,3,4.6,6106,115.104142,124.624222,134.51322,140.359642,I,Above,Flat,0,5701,,36.38343264,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 13003,NJBF000078875,,Galloway,NJ,39.40807372,-74.37236132,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1723.747955,1723.747955,3507,NO,16.04,27.03,1,0.01,6106,115.279687,124.792969,134.698488,140.55351,I,Above,Flat,0,5701,,21.53674639,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13004,NJBF000078864,,Galloway,NJ,39.40801849,-74.37256556,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1865.811632,1865.811632,3507,NO,35.67,43.89,1,0.65,6106,115.276116,124.789642,134.694699,140.550964,I,Above,Hip,0,5701,,39.78059854,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13005,NJBF000076483,321 32ND STREET SO,Galloway,NJ,39.39358618,-74.38503823,RES1,3001,,18,NE,2003,2003,3102,2,1,1765.014607,1765.014607,3507,NO,37.84,45.89,1,1.37,6106,115.175534,124.699342,134.583107,140.539804,I,Above,Hip,0,5701,,41.86773782,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 13006,NJBF000080301,5 CUMMINGS PLACE,Galloway,NJ,39.4146179,-74.37213273,RES1,3001,,16,NE,1976,1976,3102,1,1,1130.815073,1130.815073,3507,NO,19.54,31.08,1,1.76,6106,115.2163,124.732018,134.632906,140.473749,I,Above,Gable,0,5701,,25.30844233,0,0,,,,1,1,,0.03,nav,1,1976,1,, 13007,NJBF000079394,435 RISLEY RD,Galloway,NJ,39.41095381,-74.37189061,RES1,3001,,15,NE,1982,1982,3102,1,1,1602.513634,1602.513634,3507,NO,16.65,23.5,1,-0.51,6106,115.259112,124.773173,134.677671,140.52432,I,Above,Flat,0,5701,,20.07169408,0,0,,,,1,1,,0.03,nav,1,1982,1,, 13008,NJBF000078901,209 2ND STREET SO,Galloway,NJ,39.40823987,-74.364801,RES1,3001,,16,NE,1950,1950,3102,2,1,1291.647392,1291.647392,3507,NO,37.2,47.08,1,2.21,6106,115.430919,124.93477,134.858975,140.671095,I,Above,Flat,0,5701,,42.13886447,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13009,NJBF000079075,206 2ND STREET NO,Galloway,NJ,39.4093526,-74.36340886,RES1,3001,,15,NE,1955,1955,3102,1,1,1584.445343,1584.445343,3507,NO,17.28,23.32,1,0.02,6106,115.447257,124.950235,134.877136,140.679122,I,Above,Gable,0,5701,,20.30059525,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13010,NJBF000076344,347 32ND STREET SO,Galloway,NJ,39.3930558,-74.3844454,RES1,3001,,16,NE,1964,1964,3102,2,1,1717.522986,1717.522986,3507,YES,26.61,32.91,1,2.61,6106,115.193531,124.715788,134.60118,140.556003,I,Above,Gable,0,5701,,29.76214853,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 13011,NJBF000080530,1106 E EVANS BLVD,Galloway,NJ,39.41534233,-74.35851317,RES1,3001,,43,NE,1977,1977,3102,2,2,1156.78816,1156.78816,3507,NO,35.72,48.13,1,1.19,6106,115.482995,124.984588,134.919125,140.682053,I,Above,Gable,0,5701,,41.92504631,0,0,,,,1,1,,0.03,nav,1,1977,2,, 13012,NJBF000080003,,Galloway,NJ,39.41363153,-74.35647667,RES1,3001,,NaN,NE,1969,0,3102,2,1,1532.798365,1532.798365,3507,NO,40.24,51.6,1,1.6,6106,115.541605,125.040294,134.981553,140.735337,I,Above,Flat,0,5701,,45.918832,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13013,NJBF000078633,,Galloway,NJ,39.4065975,-74.3649765,RES3B,3001,,NaN,ME,1950,0,3301,1,1,2902.993888,2902.993888,3507,NO,18.74,30.2,1,0.68,6106,115.444769,124.947687,134.872612,140.688915,I,Above,Gable,0,NaN,,24.47380093,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13014,NJBF000080744,10 MACDERMOTT PLACE,Galloway,NJ,39.4161435,-74.3664412,RES1,3001,,17,NE,1999,1999,3102,2,1,1562.534824,1562.534824,3507,NO,35.07,41.37,1,1.28,6106,115.315462,124.825261,134.738955,140.545765,I,Above,Hip,0,5701,,38.2219278,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 13015,NJBF000081747,9 TRAVERS PLACE,Galloway,NJ,39.42249428,-74.36659068,RES1,3001,,17,NE,1985,1985,3102,2,1,995.3518611,995.3518611,3507,NO,35.97,49.49,1,-0.9,6106,115.247655,124.759249,134.666477,140.463305,I,Above,Gable,0,5701,,42.72866812,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13016,NJBF000079641,104 6TH STREET NO,Galloway,NJ,39.41210252,-74.3620013,RES1,3001,,16,NE,1960,1960,3102,2,1,2123.525588,2123.525588,3507,NO,29.33,35.81,1,0.82,6106,115.446742,124.949905,134.878245,140.667053,I,Above,Gable,0,5701,,32.57069253,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 13017,NJBF000078933,111 4TH STREET SO,Galloway,NJ,39.40845689,-74.36719814,RES1,3001,,43,NE,1960,1960,3102,1,2,965.8528178,965.8528178,3507,NO,14.32,27.46,1,0.48,6106,115.380217,124.887097,134.805131,140.630523,I,Above,Flat,0,5701,,20.89107097,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13018,NJBF000081576,1030 N SHORE DR,Galloway,NJ,39.42041935,-74.37379906,RES1,3001,,17,NE,1970,1970,3102,2,1,2344.581059,2344.581059,3507,NO,28.49,35.51,1,-0.22,6106,115.123539,124.642251,134.533733,140.372651,I,Above,Flat,0,5701,,32.00111153,0,0,,,,1,1,,0.03,nav,1,1970,2,, 13019,NJBF000080308,125 LINCOLN DR,Galloway,NJ,39.41464207,-74.37026437,RES1,3001,,16,NE,1970,1970,3102,2,1,1407.396027,1407.396027,3507,NO,34.88,41.86,1,-0.32,6106,115.253828,124.767341,134.672824,140.503465,I,Above,Gable,0,5701,,38.36867726,0,0,,,,1,1,,0.03,nav,1,1970,2,, 13020,NJBF000080957,901 SARAZEN RD,Galloway,NJ,39.41702251,-74.37695017,RES1,3001,,17,NE,1991,1991,3103,2,1,1142.139812,1142.139812,3505,NO,38.17,50.34,3,2.65,6106,115.094208,124.616332,134.503335,140.365063,I,Above,Flat,0,5701,,44.25716652,0,0,,,,1,1,,0.03,nav,1,1991,2,, 13021,NJBF000081307,213 ROOSEVELT BLVD NO,Galloway,NJ,39.41857349,-74.36999394,RES1,3001,,16,NE,1970,1970,3102,2,1,1545.703003,1545.703003,3507,YES,32.95,46.32,1,0.8,6106,115.218996,124.733291,134.635903,140.457889,I,Above,Gable,0,5701,,39.63760838,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 13022,NJBF000080828,26 11TH STREET NO,Galloway,NJ,39.41648735,-74.36121107,RES1,3001,,17,NE,1989,1989,3102,1,1,1843.62954,1843.62954,3507,NO,10.92,23.37,1,0.16,6106,115.417031,124.921729,134.848338,140.624982,I,Above,Hip,0,5701,,17.14444152,0,1.1,,,,1,1,,0.03,nav,1,1989,1,, 13023,NJBF000078405,254 6TH STREET SO,Galloway,NJ,39.40532243,-74.36718141,RES1,3001,,16,NE,1958,1958,3102,1,1,1357.410652,1357.410652,3505,NO,14.82,22.72,3,-1.88,6106,115.413727,124.918484,134.838748,140.670245,I,Above,Hip,0,5701,,18.7711246,0,0,,,,1,1,,0.03,nav,1,1958,1,, 13024,NJBF000081617,1 GOLF COURSE DR,Galloway,NJ,39.42092639,-74.3705901,COM8,3001,,NaN,ME,1969,0,3401,1,1,3978.998687,3978.998687,3507,NO,18.09,29.91,1,1.04,6106,115.183109,124.698418,134.597288,140.418334,I,Above,Gable,0,NaN,,23.99693292,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13025,NJBF000081568,217 HAGEN RD,Galloway,NJ,39.42032334,-74.36680175,RES1,3001,,17,NE,1988,1988,3102,2,1,2074.09183,2074.09183,3507,NO,29.42,39.6,1,2.67,6106,115.265427,124.776822,134.685698,140.487274,I,Above,Gable,0,5701,,34.51113753,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 13026,NJBF000082344,646 OHIO AVE,Galloway,NJ,39.42917012,-74.51132965,RES1,3001,,17,NE,1971,1971,3102,1,1,2007.885728,2007.885728,3505,NO,17.72,23.09,3,4.64,6110,112.211491,122.025974,131.637117,137.782016,I,Above,Gable,0,5701,,20.40645488,0,0,,,,1,1,,0.35,nav,1,1971,1,, 13027,NJBF000081599,1040 N SHORE DR,Galloway,NJ,39.42068021,-74.37304871,RES1,3001,,NaN,NE,1960,1960,3102,2,1,2639.749483,2639.749483,3507,NO,30.48,36.85,1,0.65,6106,115.136037,124.65394,134.547004,140.381515,I,Above,Flat,0,5701,,33.66711318,0,0,,,,1,1,,0.03,nav,1,1960,2,, 13028,NJBF000078884,,Galloway,NJ,39.40813845,-74.36656701,RES1,3001,,NaN,NE,1969,0,3102,2,1,2025.678001,2025.678001,3507,NO,37.5,51.74,1,-0.76,6106,115.396331,124.902239,134.822083,140.644509,I,Above,Gable,0,5701,,44.62199797,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13029,NJBF000080652,33 11TH STREET NO,Galloway,NJ,39.415776,-74.35959,RES1,3001,,17,NE,1989,1989,3102,2,1,1687.866798,1687.866798,3507,NO,39.01,45.41,1,0.66,6106,115.456903,124.959726,134.891115,140.659594,I,Above,Gable,0,5701,,42.212662,0,0,,,,1,1,,0.03,nav,1,1989,2,, 13030,NJBF000081348,221 LINCOLN DR,Galloway,NJ,39.41876081,-74.37090751,RES1,3001,,16,NE,1965,1965,3102,2,1,2623.518336,2623.518336,3507,YES,22.15,31.01,1,1,6106,115.198656,124.713979,134.614154,140.440727,I,Above,Gable,0,5701,,26.57725071,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 13031,NJBF000081283,219 LINCOLN DR,Galloway,NJ,39.41847689,-74.37091077,RES1,3001,,16,NE,1965,1965,3102,2,1,1714.959062,1714.959062,3507,YES,31.23,45.85,1,-0.1,6106,115.201486,124.716758,134.617192,140.444292,I,Above,Hip,0,5701,,38.54171416,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13032,NJBF000082496,105 WEILER LANE EAST,Galloway,NJ,39.43038775,-74.48478264,RES1,3001,,17,NE,1984,1984,3102,2,1,2109.951488,2109.951488,3507,NO,23.76,32.4,1,2.72,6106,112.751382,122.481962,132.13629,138.274975,I,Above,Gable,0,5701,,28.08237715,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 13033,NJBF000079504,211 7TH STREET NO,Galloway,NJ,39.4114364,-74.35922261,RES1,3001,,16,NE,1950,1950,3102,2,1,1463.181699,1463.181699,3507,NO,27.41,42.11,1,1.03,6106,115.509557,125.009432,134.9454,140.719191,I,Above,Gable,0,5701,,34.76027919,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13034,NJBF000081182,1319 VARDON RD,Galloway,NJ,39.41792404,-74.37484127,RES1,3001,,17,NE,1988,1988,3102,1,1,2047.418266,2047.418266,3507,NO,10.83,24.43,1,-0.64,6106,115.127743,124.647411,134.538716,140.387709,I,Above,Gable,0,5701,,17.63068984,0,0,,,,1,1,,0.03,nav,1,1988,1,, 13035,NJBF000079469,401 LAFAYETTE BLVD,Galloway,NJ,39.41128457,-74.36869663,RES1,3001,,18,NE,2011,2011,3102,3,1,1741.325293,1741.325293,3507,YES,45.54,55.79,1,2.08,6106,115.320288,124.830552,134.742697,140.571052,I,Above,Hip,0,5701,,50.66378684,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 13036,NJBF000079509,419 LAFAYETTE BLVD,Galloway,NJ,39.41144969,-74.37030527,RES1,3001,,16,NE,1962,1962,3102,1,1,1803.318197,1803.318197,3507,NO,18.36,30.71,1,0.23,6106,115.286056,124.798353,134.706375,140.543333,I,Above,Gable,0,5701,,24.53304979,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 13037,NJBF000079381,102 PUTNAM PLACE,Galloway,NJ,39.41089903,-74.36306755,RES1,3001,,16,NE,1962,1962,3102,2,1,1196.679264,1196.679264,3507,YES,23.92,31.69,1,1.51,6106,115.437879,124.941461,134.868046,140.665199,I,Above,Gable,0,5701,,27.80628348,0,0,,,,1,1,,0.03,nav,1,1962,2,, 13038,NJBF000079363,104 PUTNAM PLACE,Galloway,NJ,39.41080977,-74.36287785,RES1,3001,,16,NE,1967,1967,3102,2,1,1338.123268,1338.123268,3507,YES,30.82,36.02,1,-0.03,6106,115.442639,124.945957,134.873093,140.669313,I,Above,Gable,0,5701,,33.42020336,0,0,,,,1,1,,0.03,nav,1,1967,2,, 13039,NJBF000080225,215 13TH STREET NO,Galloway,NJ,39.41436385,-74.35544442,RES1,3001,,20,NE,2007,2007,3102,3,1,1902.579095,1902.579095,3507,YES,41.72,48.43,1,2.2,6106,115.554629,125.052871,134.996189,140.742613,I,Above,Flat,0,5701,,45.07190424,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 13040,NJBF000080626,44 12TH STREET NO,Galloway,NJ,39.4156545,-74.3589865,RES1,3001,,16,NE,1957,1957,3102,2,1,1604.628287,1604.628287,3507,NO,38.29,47.95,1,0.48,6106,115.470245,124.972446,134.905489,140.670663,I,Above,Gable,0,5701,,43.11806542,0,0,,,,1,1,,0.03,nav,1,1957,2,, 13041,NJBF000080149,106 WASHINGTON DR,Galloway,NJ,39.41407523,-74.36838192,RES1,3001,,16,NE,1972,1972,3102,2,1,1736.680356,1736.680356,3507,YES,26.39,34.42,1,0.84,6106,115.297678,124.808814,134.719456,140.540799,I,Above,Flat,0,5701,,30.40865634,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13042,NJBF000079559,1 PUTNAM PLACE,Galloway,NJ,39.41168671,-74.36623248,RES1,3001,,17,NE,1980,2017,3102,2,1,1117.072752,1117.072752,3507,NO,25.37,31.8,1,1.01,6106,115.365866,124.873444,134.791428,140.605185,I,Above,Hip,0,5701,,28.58403511,0,0,,,,1,1,,0.03,nav,1,1980,2,, 13043,NJBF000080102,108 ROOSEVELT BLVD NO,Galloway,NJ,39.41393488,-74.36935117,RES1,3001,,16,NE,1971,1971,3102,2,1,1278.116362,1278.116362,3507,NO,34.67,41.87,1,2.94,6106,115.279564,124.79176,134.70011,140.527066,I,Above,Hip,0,5701,,38.26852702,0,0,,,,1,1,,0.03,nav,1,1971,2,, 13044,NJBF000081483,1008 FOWNES AVE,Galloway,NJ,39.41945915,-74.3639984,RES1,3001,,17,NE,1970,1970,3102,2,1,1485.495606,1485.495606,3507,NO,28.84,37.26,1,0.56,6106,115.330552,124.839033,134.755796,140.54328,I,Above,Flat,0,5701,,33.0476998,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 13045,NJBF000079873,402 SHERIDAN PLACE,Galloway,NJ,39.41317311,-74.36577851,RES1,3001,,16,NE,1968,1968,3102,1,1,1430.216789,1430.216789,3507,NO,22.4,37.26,1,2.92,6106,115.359524,124.867341,134.785253,140.593705,I,Above,Hip,0,5701,,29.83143739,0,0,,,,1,1,,0.03,nav,1,1968,1,, 13046,NJBF000081672,11 HUTCHISON PLACE,Galloway,NJ,39.4216995,-74.3665315,RES1,3001,,17,NE,1989,1989,3102,1,1,1548.926723,1548.926723,3507,NO,15.14,24.05,1,2.77,6106,115.256894,124.768303,134.676488,140.474288,I,Above,Gable,0,5701,,19.59173674,0,0,,,,1,1,,0.03,nav,1,1989,1,, 13047,NJBF000076428,2904 OCEAN AVE,Galloway,NJ,39.3933683,-74.38223396,RES1,3001,,20,NE,2008,2008,3102,3,1,1420.529073,1420.529073,3507,NO,41.97,53.76,1,1.65,6106,115.235593,124.754073,134.644498,140.586584,I,Above,Flat,0,5701,,47.86545736,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 13048,NJBF000080166,,Galloway,NJ,39.41413767,-74.36781042,RES1,3001,,NaN,NE,1969,0,3102,2,1,1851.765143,1851.765143,3507,NO,25.57,35.44,1,0.28,6106,115.308567,124.81908,134.731096,140.549149,I,Above,Hip,0,5701,,30.5089467,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13049,NJBF000080637,16 MACDONALD PLACE,Galloway,NJ,39.41571276,-74.36718684,RES1,3001,,17,NE,2002,2002,3102,2,1,2155.517685,2155.517685,3507,NO,23.83,38,1,1.04,6106,115.304866,124.815304,134.727511,140.539237,I,Above,Hip,0,5701,,30.91314745,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 13050,NJBF000080054,540 CAVERLY DR,Galloway,NJ,39.4137758,-74.37623358,RES1,3001,,17,NE,1988,1988,3103,1,1,1692.737341,1692.737341,3505,NO,19.19,26.63,3,5.71,6106,115.141894,124.662513,134.55409,140.418478,I,Above,Hip,0,5701,,22.9063582,0,0,,,,1,1,,0.03,nav,1,1988,1,, 13051,NJBF000080986,25 VARDON RD,Galloway,NJ,39.41710614,-74.37256841,RES1,3001,,17,NE,1985,1985,3102,2,1,1323.232962,1323.232962,3507,NO,25.54,40.19,1,2.6,6106,115.182014,124.698879,134.596498,140.434988,I,Above,Gable,0,5701,,32.86510688,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13052,NJBF000078718,238 3RD STREET S0,Galloway,NJ,39.407137,-74.365496,RES1,3001,,17,NE,1930,1930,3102,2,1,1159.953128,1159.953128,3507,YES,25.6,34.04,1,2.85,6106,115.428544,124.932479,134.855722,140.673967,I,Above,Gable,0,5701,,29.81853509,0,0,,,,1,1,,0.03,nav,1,1930,2,, 13053,NJBF000076954,,Galloway,NJ,39.395557,-74.3890555,RES3D,3001,,NaN,ME,1969,0,3301,2,1,5188.841052,5188.841052,3507,NO,40.88,52.85,1,2.89,6106,115.071334,124.604214,134.477709,140.450658,I,Above,Flat,0,NaN,,46.86241707,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13054,NJBF000081505,211 HAGEN RD,Galloway,NJ,39.41967774,-74.36670948,RES1,3001,,17,NE,1988,1988,3102,2,1,1321.703235,1321.703235,3507,NO,39.86,47.14,1,1.24,6106,115.273862,124.785016,134.694753,140.496908,I,Above,Gable,0,5701,,43.49732143,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 13055,NJBF000078535,807 W BEACH AVE,Galloway,NJ,39.40603959,-74.37031782,RES1,3001,,16,NE,1950,1950,3102,2,1,1307.391527,1307.391527,3505,NO,26.8,38.24,3,1.6,6106,115.342564,124.851923,134.763912,140.61173,I,Above,Flat,0,5701,,32.51880634,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13056,NJBF000078967,,Galloway,NJ,39.40871089,-74.36406622,RES1,3001,,NaN,NE,1950,0,3102,2,1,2322.432084,2322.432084,3507,NO,26.71,40.92,1,2.01,6106,115.440777,124.944083,134.869799,140.676787,I,Above,Gable,0,5701,,33.81433932,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13057,NJBF000079024,405 W EVANS BLVD,Galloway,NJ,39.40907029,-74.36850587,RES1,3001,,16,NE,1966,1966,3102,3,1,1522.709185,1522.709185,3507,NO,48.11,59.67,1,1.98,6106,115.347324,124.856182,134.770502,140.602081,I,Above,Flat,0,5701,,53.89008902,0,1.1,,,,1,1,,0.03,nav,1,1966,3,, 13058,NJBF000079957,113 9TH STREET NO,Galloway,NJ,39.4134565,-74.3592265,RES1,3001,,43,NE,1973,1973,3102,2,2,1110.670694,1110.670694,3507,NO,37.93,43.63,1,-0.64,6106,115.488315,124.989485,134.923801,140.694095,I,Above,Hip,0,5701,,40.77851892,0,0,,,,1,1,,0.03,nav,1,1973,2,, 13059,NJBF000078966,106 3RD STREET SO,Galloway,NJ,39.40870471,-74.36698592,RES1,3001,,16,NE,1950,1950,3102,2,1,1188.84351,1188.84351,3507,NO,31.54,42.12,1,1.98,6106,115.381891,124.888664,134.807047,140.630754,I,Above,Gable,0,5701,,36.82878585,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 13060,NJBF000078980,104 3RD STREET SO,Galloway,NJ,39.408808,-74.36703,RES1,3001,,18,NE,2016,2016,3102,3,1,926.9584192,926.9584192,3507,NO,38.15,50.82,1,1.26,6106,115.379919,124.886808,134.805005,140.628761,I,Above,Gable,0,5701,,44.48781178,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 13061,NJBF000081600,1212 E SHORE DR,Galloway,NJ,39.42069001,-74.36487817,RES1,3001,,17,NE,1987,1987,3102,1,1,1946.03131,1946.03131,3507,NO,21.04,33.07,1,2.86,6106,115.300334,124.80998,134.723322,140.513679,I,Above,Gable,0,5701,,27.05210829,0,0,,,,1,1,,0.03,nav,1,1987,1,, 13062,NJBF000079151,14 FRANKLIN PLACE,Galloway,NJ,39.4098592,-74.36708265,RES1,3001,,NaN,NE,1952,0,3102,2,1,1431.982042,1431.982042,3507,NO,33.75,42.32,1,1.68,6106,115.36781,124.875382,134.792659,140.614688,I,Above,Gable,0,5701,,38.0344738,0,0,,,,1,1,,0.03,nav,1,1952,2,, 13063,NJBF000080148,27 HEALD CIRCLE,Galloway,NJ,39.41406977,-74.36610358,RES1,3001,,16,NE,1980,1980,3102,2,1,1006.26787,1006.26787,3507,NO,33.98,39.18,1,1.47,6106,115.343665,124.852256,134.7686,140.577247,I,Above,Hip,0,5701,,36.58175424,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13064,NJBF000080167,29 HEALD CIRCLE,Galloway,NJ,39.41413919,-74.36598379,RES1,3001,,16,NE,1980,1980,3102,2,1,1182.685748,1182.685748,3507,NO,38.73,44.98,1,1.97,6106,115.345368,124.853859,134.770445,140.578293,I,Above,Gable,0,5701,,41.85555776,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13065,NJBF000080029,201 11TH STREET NO,Galloway,NJ,39.41370625,-74.35714086,RES1,3001,,15,NE,1953,1953,3102,1,1,933.931625,933.931625,3507,NO,11.48,21.07,1,-0.53,6106,115.527533,125.02688,134.96636,140.723956,I,Above,Hip,0,5701,,16.27656555,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13066,NJBF000082371,550 FOURTH ST,Galloway,NJ,39.42932916,-74.48400136,RES1,3001,,17,NE,1978,1978,3102,2,1,2352.292999,2352.292999,3507,NO,29.52,43.61,1,1.41,6106,112.775221,122.506999,132.163745,138.306223,I,Above,Gable,0,5701,,36.56599949,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 13067,NJBF000079061,200 ROOSEVELT BLVD SO,Galloway,NJ,39.40926653,-74.36467721,RES1,3001,,18,NE,2006,2006,3102,3,1,1646.185821,1646.185821,3507,NO,34.25,47.93,1,-0.59,6106,115.422596,124.926974,134.850737,140.660188,I,Above,Gable,0,5701,,41.08978302,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 13068,NJBF000078704,231 4TH STREET SO,Galloway,NJ,39.40702695,-74.36591994,RES1,3001,,43,NE,1956,1956,3102,2,2,1485.242825,1485.242825,3507,NO,37.5,49.25,1,1.02,6106,115.421142,124.925519,134.847775,140.66867,I,Above,Hip,0,5701,,43.37508918,0,0,,,,1,1,,0.03,nav,1,1956,2,, 13069,NJBF000079725,15 QUAY CIRCLE,Galloway,NJ,39.4125241,-74.36715044,RES1,3001,,16,NE,1972,1972,3102,1,1,1624.036618,1624.036618,3507,NO,18.1,31.45,1,1.73,6106,115.338625,124.847673,134.762682,140.580044,I,Above,Gable,0,5701,,24.77322847,0,0,,,,1,1,,0.03,nav,1,1972,1,, 13070,NJBF000079728,521 LAFAYETTE BLVD,Galloway,NJ,39.41256342,-74.37465822,RES1,3001,,16,NE,1984,1984,3102,2,1,1307.831644,1307.831644,3507,NO,37.64,46.32,1,0.69,6106,115.186352,124.704577,134.600999,140.459434,I,Above,Flat,0,5701,,41.98084831,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13071,NJBF000080730,700 SHERIDAN BLVD,Galloway,NJ,39.41605029,-74.36557219,RES1,3001,,17,NE,1997,1997,3102,2,1,1242.950654,1242.950654,3507,NO,25.1,35.87,1,0.13,6106,115.333913,124.842764,134.758722,140.560844,I,Above,Gable,0,5701,,30.48494285,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 13072,NJBF000079080,,Galloway,NJ,39.40941065,-74.36282283,RES1,3001,,NaN,NE,1953,0,3102,2,1,1283.762646,1283.762646,3507,NO,38.53,49.77,1,0.61,6106,115.458453,124.960809,134.889151,140.687637,I,Above,Gable,0,5701,,44.15253114,0,0,,,,1,1,,0.03,nav,1,1953,2,, 13073,NJBF000079859,538 W SHORE DR,Galloway,NJ,39.41313192,-74.37663866,RES1,3001,,18,NE,2014,2014,3103,2,1,1369.461577,1369.461577,3505,NO,36.66,47.19,3,5.92,6106,115.140298,124.661282,134.552415,140.420236,I,Above,Flat,0,5701,,41.92576297,0,0,,,,1,1,,0.03,nav,1,2014,2,, 13074,NJBF000078756,229 3RD STREET SO,Galloway,NJ,39.40734647,-74.36509502,RES1,3001,,43,NE,1948,1948,3102,2,3,1413.255195,1413.255195,3507,YES,28.13,41.68,1,0.24,6106,115.434431,124.938025,134.862128,140.677662,I,Above,Gable,0,5701,,34.90130036,0,0,,,,1,1,,0.03,nav,1,1948,2,, 13075,NJBF000078543,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,3309.919796,3309.919796,3505,NO,29.1,34.63,3,7.25,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,31.86413641,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13076,NJBF000079892,213 11TH STREET NO,Galloway,NJ,39.41324702,-74.35659149,RES1,3001,,19,NE,2017,2017,3102,3,1,788.860742,788.860742,3507,NO,52.97,63.76,1,1.68,6106,115.543351,125.04189,134.983175,140.738283,I,Above,Hip,0,5701,,58.36232693,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 13077,NJBF000079901,903 E BEACH AVE,Galloway,NJ,39.413271,-74.35887,RES1,3001,,43,NE,1953,1953,3102,2,2,1052.849618,1052.849618,3507,NO,25.11,34.86,1,1.5,6106,115.49742,124.998129,134.933517,140.702039,I,Above,Hip,0,5701,,29.98260533,0,0,,,,1,1,,0.03,nav,1,1953,2,, 13078,NJBF000079156,463 W SHORE DR,Galloway,NJ,39.40988666,-74.3739361,RES1,3001,,16,NE,1976,1976,3102,1,1,1721.543382,1721.543382,3507,NO,19.11,27.3,1,-0.2,6106,115.228764,124.745024,134.64533,140.505267,I,Above,Hip,0,5701,,23.20165838,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 13079,NJBF000080453,128 ROOSEVELT BLVD NO,Galloway,NJ,39.41510242,-74.37005556,RES1,3001,,16,NE,1971,1971,3102,1,1,1570.833289,1570.833289,3507,NO,19.02,24.34,1,1.14,6106,115.25329,124.766717,134.672317,140.500963,I,Above,Hip,0,5701,,21.67824693,0,0,,,,1,1,,0.03,nav,1,1971,1,, 13080,NJBF000079506,400 E EVANS BLVD,Galloway,NJ,39.41143998,-74.36350762,RES1,3001,,16,NE,1967,1967,3102,2,1,1508.916378,1508.916378,3507,NO,34.44,48.51,1,2.59,6106,115.423351,124.927741,134.852786,140.65148,I,Above,Gable,0,5701,,41.47751016,0,0,,,,1,1,,0.03,nav,1,1967,2,, 13081,NJBF000082266,OHIO AVE,Galloway,NJ,39.42850372,-74.50998751,RES1,3001,,NaN,NE,1930,0,3102,2,1,2379.284706,2379.284706,3505,NO,35.64,41.18,3,7.76,6112,112.243272,122.056278,131.670354,137.818728,I,Above,Gable,0,5701,,38.41010205,0,0,,,,1,1,,0.35,nav,1,1930,2,, 13082,NJBF000081390,906 N SHORE DR,Galloway,NJ,39.4189931,-74.37923886,RES1,3001,,17,NE,1987,1987,3103,2,1,1739.639209,1739.639209,3505,NO,38.61,49.36,3,4.97,6106,115.027904,124.552998,134.432662,140.3023,I,Above,Flat,0,5701,,43.98795018,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 13083,NJBF000079202,444 HACKNEY PLACE,Galloway,NJ,39.41013312,-74.37326009,RES1,3001,,NaN,NE,1966,1966,3102,2,1,1682.799195,1682.799195,3507,NO,38.13,50.18,1,2.09,6106,115.239915,124.755387,134.657159,140.512923,I,Above,Gable,0,5701,,44.15688183,0,0,,,,1,1,,0.03,nav,1,1966,2,, 13084,NJBF000079356,302 LAFAYETTE PLACE,Galloway,NJ,39.41077717,-74.36799003,RES1,3001,,16,NE,1958,1958,3102,1,1,1465.300613,1465.300613,3507,NO,20.26,33.61,1,1.02,6106,115.339877,124.849037,134.763342,140.588717,I,Above,Gable,0,5701,,26.93891461,0,0,,,,1,1,,0.03,nav,1,1958,1,, 13085,NJBF000079354,300 LAFAYETTE PLACE,Galloway,NJ,39.41077504,-74.36781832,RES1,3001,,16,NE,1962,1962,3102,2,1,1111.270522,1111.270522,3507,YES,28.4,35.16,1,1.43,6106,115.343373,124.852326,134.767062,140.591475,I,Above,Gable,0,5701,,31.77875865,0,0,,,,1,1,,0.03,nav,1,1962,2,, 13086,NJBF000078685,115 10TH STREET SO,Galloway,NJ,39.40692463,-74.37260857,RES1,3001,,NaN,NE,1946,1946,3102,2,1,1095.070709,1095.070709,3507,NO,36.18,50.79,1,1.79,6106,115.286736,124.799724,134.705457,140.564207,I,Above,Hip,0,5701,,43.48378306,0,0,,,,1,1,,0.03,nav,1,1946,2,, 13087,NJBF000079692,528 W SHORE DR,Galloway,NJ,39.41235696,-74.37632368,RES1,3001,,16,NE,1984,1984,3103,2,1,606.5837015,606.5837015,3505,NO,25.33,37.31,3,0.97,6106,115.154677,124.675026,134.567561,140.435285,I,Above,Flat,0,5701,,31.31954681,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 13088,NJBF000078654,,Galloway,NJ,39.40674298,-74.36742396,RES1,3001,,NaN,NE,1949,0,3102,2,1,1098.833336,1098.833336,3507,NO,24.25,31.4,1,2.64,6106,115.393739,124.899797,134.818489,140.648536,I,Above,Gable,0,5701,,27.82613067,0,0,,,,1,1,,0.03,nav,1,1949,2,, 13089,NJBF000079168,434 HACKNEY PLACE,Galloway,NJ,39.40994448,-74.37240019,RES1,3001,,15,NE,1966,1966,3102,1,1,1399.719827,1399.719827,3507,NO,12.45,23.54,1,1.09,6106,115.259324,124.773585,134.677613,140.529063,I,Above,Gable,0,5701,,17.99568417,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 13090,NJBF000078773,214 2ND STREET SO,Galloway,NJ,39.40746869,-74.36470497,RES1,3001,,18,NE,1955,2018,3102,2,1,900.5749737,900.5749737,3507,NO,25.18,37.62,1,1.55,6106,115.441004,124.944214,134.869213,140.682261,I,Above,Gable,0,5701,,31.39549512,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 13091,NJBF000079988,53 HEALD RD,Galloway,NJ,39.41357777,-74.3623313,RES1,3001,,16,NE,1977,1977,3102,1,1,1602.510909,1602.510909,3507,NO,15.99,21.59,1,-0.61,6106,115.424715,124.929058,134.855346,140.643434,I,Above,Hip,0,5701,,18.79011116,0,0,,,,1,1,,0.03,nav,1,1977,1,, 13092,NJBF000079251,,Galloway,NJ,39.41034985,-74.360083,RES3D,3001,,NaN,E,1969,0,3303,4,1,8508.801886,8508.801886,3507,NO,55.68,69.81,1,-0.32,6106,115.503699,125.00372,134.938329,140.719109,I,Above,Gable,0,NaN,,62.74481816,0,0,,,,1,1,,0.03,nav,1,1969,4,, 13093,NJBF000081435,934 N SHORE DR,Galloway,NJ,39.41920821,-74.3768422,RES1,3001,,18,NE,2000,2000,3103,2,1,2212.206545,2212.206545,3505,NO,20.91,29.67,3,-2.24,6106,115.07427,124.596433,134.481675,140.338646,I,Above,Hip,0,5701,,25.29238222,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 13094,NJBF000080343,,Galloway,NJ,39.4147715,-74.355931,RES1,3001,,NaN,NE,1948,0,3102,2,1,1848.805254,1848.805254,3507,NO,26.33,32.61,1,1.29,6106,115.540628,125.039559,134.981263,140.729915,I,Above,Gable,0,5701,,29.46589703,0,0,,,,1,1,,0.03,nav,1,1948,2,, 13095,NJBF000078305,251 9TH STREET SO,Galloway,NJ,39.40458775,-74.36931094,RES1,3001,,19,NE,2001,2001,3102,3,1,3438.166378,3438.166378,3505,NO,39.41,47.89,3,-1.12,6106,115.378387,124.885417,134.800867,140.645984,I,Above,Hip,0,5701,,43.64781363,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 13096,NJBF000081060,1301 OUIMET RD,Galloway,NJ,39.41738104,-74.3734489,RES1,3001,,16,NE,1952,1952,3102,1,1,1942.221743,1942.221743,3507,NO,17.53,23.92,1,0.08,6106,115.161407,124.679352,134.574558,140.417226,I,Above,Gable,0,5701,,20.72836795,0,0,,,,1,1,,0.03,nav,1,1952,1,, 13097,NJBF000081049,1303 OUIMET RD,Galloway,NJ,39.41735903,-74.37360269,RES1,3001,,17,NE,1986,1986,3102,2,1,2324.716897,2324.716897,3507,NO,40.88,47.1,1,2.96,6106,115.158519,124.67664,134.571489,140.415015,I,Above,Gable,0,5701,,43.99064154,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 13098,NJBF000081667,244 HAGEN RD,Galloway,NJ,39.42157292,-74.36757275,RES1,3001,,17,NE,1988,1988,3102,1,1,1991.035901,1991.035901,3507,NO,16.21,21.22,1,1.68,6106,115.237251,124.74963,134.655341,140.459031,I,Above,Flat,0,5701,,18.71863648,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 13099,NJBF000078319,255 8TH STREET SO,Galloway,NJ,39.4046948,-74.36835524,RES1,3001,,17,NE,1950,1950,3102,2,2,2163.265253,2163.265253,3505,NO,40.47,54.33,3,8.37,6106,115.396624,124.902457,134.82021,140.659677,I,Above,Hip,0,5701,,47.40153925,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 13100,NJBF000079928,530 CAVERLY DR,Galloway,NJ,39.41335222,-74.37551302,RES1,3001,,16,NE,1980,1980,3103,1,1,1612.451276,1612.451276,3505,NO,13.15,21.06,3,0.96,6106,115.160878,124.680448,134.574135,140.435553,I,Above,Gable,0,5701,,17.10691756,0,0,,,,1,1,,0.03,nav,1,1980,1,, 13101,NJBF000078242,,Galloway,NJ,39.40401598,-74.36830227,COM1,3001,,NaN,ME,1969,0,3401,1,1,3614.004472,3614.004472,3507,NO,10.52,15.59,1,-0.74,6106,115.404931,124.910194,134.828517,140.669068,I,Above,Flat,0,NaN,,13.0548258,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13102,NJBF000080961,906 SHERIDAN BLVD,Galloway,NJ,39.41702934,-74.36901689,RES1,3001,,16,NE,1968,1968,3102,2,1,1687.936355,1687.936355,3507,YES,21.34,28.22,1,0.21,6106,115.254464,124.767318,134.673783,140.493223,I,Above,Gable,0,5701,,24.77970007,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 13103,NJBF000080894,906 SHERIDAN BLVD,Galloway,NJ,39.41675944,-74.36905716,RES1,3001,,16,NE,1968,1968,3102,2,1,3291.617891,3291.617891,3507,YES,31.95,38.02,1,1.35,6106,115.256424,124.769245,134.675855,140.496,I,Above,Gable,0,5701,,34.98644393,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 13104,NJBF000080244,1202 E BEACH AVE,Galloway,NJ,39.414425,-74.3566105,RES1,3001,,43,NE,1977,1977,3102,2,2,929.7623233,929.7623233,3507,NO,26.83,37.9,1,-0.96,6106,115.530638,125.029957,134.970197,140.723455,I,Above,Gable,0,5701,,32.36643789,0,0,,,,1,1,,0.03,nav,1,1977,2,, 13105,NJBF000081104,14 12TH STREET NO,Galloway,NJ,39.4175529,-74.36128738,RES1,3001,,16,NE,1957,1957,3102,2,1,2079.070283,2079.070283,3507,NO,33.19,47.17,1,-0.56,6106,115.404506,124.909752,134.835193,140.610494,I,Above,Hip,0,5701,,40.17951319,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 13106,NJBF000078650,1031 BAYSHORE AVE,Galloway,NJ,39.4067045,-74.3737575,RES1,3001,,18,NE,1997,1997,3102,2,1,2308.600649,2308.600649,3507,NO,25.03,34.83,1,-0.61,6102,115.265747,124.780194,134.68327,140.548798,I,Above,Hip,0,5701,,29.92833966,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 13107,NJBF000076460,,Galloway,NJ,39.39349581,-74.40354487,RES3D,3001,,NaN,E,1969,0,3303,4,1,11954.32397,11954.32397,3507,NO,71.99,80.44,1,1.3,6106,114.792895,124.354657,134.196742,140.247178,I,Above,Gable,0,NaN,,76.21935678,0,0,,,,1,1,,0.03,nav,1,1969,4,, 13108,NJBF000079014,101 3RD STREET SO,Galloway,NJ,39.40902299,-74.36660684,RES1,3001,,16,NE,1955,1955,3102,2,1,1160.020659,1160.020659,3507,NO,32.48,39.64,1,0.9,6106,115.386204,124.892712,134.811808,140.632748,I,Above,Gable,0,5701,,36.05983792,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13109,NJBF000080445,122 WASHINGTON DR,Galloway,NJ,39.41507731,-74.36903669,RES1,3001,,16,NE,1970,1970,3102,2,1,1475.038529,1475.038529,3507,YES,35.92,44.11,1,1.71,6106,115.274116,124.786372,134.694523,140.517629,I,Above,Gable,0,5701,,40.01560555,0,0,,,,1,1,,0.03,nav,1,1970,2,, 13110,NJBF000079144,204 3RD STREET NO,Galloway,NJ,39.409813,-74.3627765,RES1,3001,,16,NE,1953,1953,3102,1,1,1261.271704,1261.271704,3507,NO,21.03,26.5,1,2.28,6106,115.455168,124.957737,134.885896,140.683363,I,Above,Gable,0,5701,,23.76444693,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13111,NJBF000080460,4 MACDONALD PLACE,Galloway,NJ,39.4151345,-74.366299,RES1,3001,,17,NE,1972,1972,3102,2,1,1163.423493,1163.423493,3507,NO,29.21,41.24,1,-0.86,6106,115.328718,124.837974,134.752913,140.56073,I,Above,Flat,0,5701,,35.22290792,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13112,NJBF000080482,200 14TH STREET NO,Galloway,NJ,39.415218,-74.3559365,RES1,3001,,43,NE,1958,1958,3102,2,2,1484.960176,1484.960176,3507,NO,22.87,37.59,1,1.02,6106,115.535879,125.035092,134.976395,140.724348,I,Above,Hip,0,5701,,30.23071239,0,0,,,,1,1,,0.03,nav,1,1958,2,, 13113,NJBF000081680,9 HUTCHISON PLACE,Galloway,NJ,39.42176874,-74.36642311,RES1,3001,,16,NE,1987,1987,3102,1,1,1551.909553,1551.909553,3507,NO,19.88,25.22,1,1.99,6106,115.258364,124.769683,134.678069,140.475164,I,Above,Gable,0,5701,,22.5469866,0,1.2,,,,1,1,,0.03,nav,1,1987,1,, 13114,NJBF000079472,405 LAFAYETTE BLVD,Galloway,NJ,39.41129767,-74.36902015,RES1,3001,,16,NE,1977,1977,3102,2,1,1500.843458,1500.843458,3507,NO,32.63,40.43,1,-0.32,6106,115.313624,124.824284,134.735615,140.565744,I,Above,Gable,0,5701,,36.5329956,0,0,,,,1,1,,0.03,nav,1,1977,2,, 13115,NJBF000079842,,Galloway,NJ,39.41307847,-74.35950377,RES1,3001,,NaN,NE,1969,0,3102,2,1,2334.171847,2334.171847,3507,NO,36.55,48.6,1,2.67,6106,115.486715,124.987925,134.921846,140.694414,I,Above,Flat,0,5701,,42.57382482,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13116,NJBF000081181,204 WASHINGTON DR,Galloway,NJ,39.4179197,-74.36952849,RES1,3001,,16,NE,1968,1968,3102,2,1,1839.055706,1839.055706,3507,YES,37.44,50.11,1,0.17,6106,115.235049,124.748694,134.653071,140.473697,I,Above,Gable,0,5701,,43.77538113,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 13117,NJBF000081522,1025 N SHORE DR,Galloway,NJ,39.41983376,-74.37399895,RES1,3001,,16,NE,1965,1965,3102,1,1,1926.81822,1926.81822,3507,NO,17.12,22.3,1,2.18,6106,115.125409,124.644302,134.535862,140.376892,I,Above,Flat,0,5701,,19.70896285,0,0,,,,1,1,,0.03,nav,1,1965,1,, 13118,NJBF000079702,1 HAMILTON PLACE,Galloway,NJ,39.41240505,-74.36689569,RES1,3001,,16,NE,1972,1972,3102,2,1,1217.852839,1217.852839,3507,YES,20.92,26.79,1,-0.44,6106,115.344988,124.853688,134.76943,140.585588,I,Above,Flat,0,5701,,23.8540046,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13119,NJBF000081517,1102 E SHORE DR,Galloway,NJ,39.41974461,-74.3633869,RES1,3001,,16,NE,1982,1982,3102,2,1,1813.654147,1813.654147,3507,NO,25.67,40.27,1,2.66,6106,115.339889,124.84789,134.76592,140.549509,I,Above,Gable,0,5701,,32.96678808,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 13120,NJBF000081017,1001 SHERIDAN BLVD,Galloway,NJ,39.41722131,-74.36964327,RES1,3001,,16,NE,1972,1972,3102,1,1,2560.027408,2560.027408,3507,NO,14.48,23.9,1,1.88,6106,115.239876,124.753469,134.658204,140.480712,I,Above,Gable,0,5701,,19.18846526,0,1.2,,,,1,1,,0.03,nav,1,1972,1,, 13121,NJBF000078833,208 3RD STREET SO,Galloway,NJ,39.40780491,-74.36605037,RES3B,3001,,33,ME,1930,1930,3301,2,1,6140.497181,6140.497181,3507,YES,36.31,48.93,1,2.14,6106,115.410291,124.915352,134.836732,140.656854,I,Above,Flat,0,NaN,,42.6225878,0,0,,,,1,1,,0.03,nav,1,1930,2,, 13122,NJBF000076465,,Galloway,NJ,39.39352185,-74.40571765,RES1,3001,,NaN,NE,1969,0,3102,2,1,2774.247344,2774.247344,3505,NO,18.37,30.94,3,-2.75,6106,114.747246,124.313955,134.151307,140.21188,I,Above,Gable,0,5701,,24.65642902,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13123,NJBF000080147,205 12TH STREET NO,Galloway,NJ,39.41406778,-74.35628965,RES1,3001,,29,NE,1950,1950,3102,2,2,1863.652018,1863.652018,3507,NO,32.62,42.58,1,-0.3,6106,115.540792,125.039595,134.98097,140.732917,I,Above,Gable,0,5701,,37.60183431,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13124,NJBF000079125,101 W EVANS BLVD,Galloway,NJ,39.40968922,-74.36530974,RES1,3001,,16,NE,1950,1950,3102,1,1,2298.43233,2298.43233,3507,NO,15.29,21.35,1,0.71,6106,115.405388,124.910766,134.832619,140.644896,I,Above,Gable,0,5701,,18.31895963,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 13125,NJBF000079263,205 BAYSHORE AVE,Galloway,NJ,39.41039178,-74.36833307,RES1,3001,,16,NE,1962,1962,3102,1,1,1424.711615,1424.711615,3507,NO,21.53,32.6,1,2.68,6106,115.33697,124.846341,134.76009,140.588127,I,Above,Hip,0,5701,,27.06531887,0,0,,,,1,1,,0.03,nav,1,1962,1,, 13126,NJBF000080408,,Galloway,NJ,39.41495567,-74.35566714,RES1,3001,,NaN,NE,1969,0,3102,2,1,1709.440212,1709.440212,3507,NO,28.3,43.03,1,0.34,6106,115.54399,125.042806,134.985035,140.731818,I,Above,Hip,0,5701,,35.66386266,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13127,NJBF000076771,4121 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39472902,-74.40003616,RES1,3001,,43,NE,1952,1952,3102,1,2,1091.038144,1091.038144,3505,NO,17.04,24.57,3,5.79,6106,114.852744,124.40743,134.256574,140.286762,I,Above,Gable,0,5701,,20.80612343,0,0,,,,1,1,,0.03,nav,1,1952,1,, 13128,NJBF000076377,348 31ST STREET SO,Galloway,NJ,39.39319636,-74.3841003,RES1,3001,,16,NE,1955,1955,3102,1,1,1596.73604,1596.73604,3507,NO,18,24.72,1,-0.83,6106,115.199101,124.72084,134.606973,140.559592,I,Above,Gable,0,5701,,21.36004913,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13129,NJBF000079346,226 6TH STREET NO,Galloway,NJ,39.4107415,-74.3602165,RES1,3001,,16,NE,1953,1953,3102,1,1,1074.908619,1074.908619,3507,NO,19.53,34.38,1,2.97,6106,115.496882,124.997311,134.931275,140.712137,I,Above,Flat,0,5701,,26.95616869,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13130,NJBF000079913,34 HEALD RD,Galloway,NJ,39.41331046,-74.36396513,RES1,3001,,16,NE,1972,1972,3102,2,1,1087.154312,1087.154312,3507,NO,35.99,47.77,1,1.65,6106,115.394635,124.900549,134.82292,140.620838,I,Above,Gable,0,5701,,41.8808272,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13131,NJBF000079979,604 W SHORE DR,Galloway,NJ,39.4135508,-74.37943188,RES1,3001,,18,NE,2012,2012,3103,2,1,2703.963566,2703.963566,3505,NO,31.7,38.88,3,4.65,6106,115.079263,124.604103,134.488143,140.369697,I,Above,Flat,0,5701,,35.29074335,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 13132,NJBF000079112,100 E BEACH AVE,Galloway,NJ,39.40962316,-74.36420398,RES1,3001,,16,NE,1925,1925,3102,2,1,1044.871844,1044.871844,3507,NO,39.69,45.86,1,2.43,6106,115.42839,124.932449,134.857138,140.663201,I,Above,Hip,0,5701,,42.77553541,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 13133,NJBF000079218,107 ROOSEVELT BLVD SO,Galloway,NJ,39.41019847,-74.36474701,RES1,3001,,16,NE,1955,1955,3102,1,1,1197.876978,1197.876978,3507,NO,16.62,23.32,1,1.47,6106,115.4114,124.916437,134.83932,140.647419,I,Above,Gable,0,5701,,19.97455579,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13134,NJBF000082158,38 NATALIE TERRACE,Galloway,NJ,39.42720446,-74.49508196,RES1,3001,,17,NE,1927,1927,3102,1,1,1439.083922,1439.083922,3505,NO,10.94,23.58,3,-0.07,6112,112.560461,122.332054,131.972138,138.127784,I,Above,Gable,0,5701,,17.25649181,0,0,,,,1,1,,0.35,nav,1,1927,1,, 13135,NJBF000082524,589 FOURTH ST,Galloway,NJ,39.43063844,-74.48400654,RES1,3001,,17,NE,1984,1984,3102,2,1,2340.274593,2340.274593,3507,NO,30.58,38.7,1,1.71,6112,112.765628,122.493202,132.14862,138.28585,I,Above,Gable,0,5701,,34.64019557,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 13136,NJBF000081147,721 SHERIDAN BLVD,Galloway,NJ,39.41776106,-74.3656584,RES1,3001,,17,NE,1986,1986,3102,1,1,1789.359956,1789.359956,3507,NO,17.48,24.06,1,-0.76,6106,115.31459,124.824145,134.738332,140.537952,I,Above,Hip,0,5701,,20.77052,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13137,NJBF000080169,117 LINCOLN DR,Galloway,NJ,39.41414548,-74.36995021,RES1,3001,,16,NE,1976,1976,3102,1,1,1634.191742,1634.191742,3507,NO,13.02,25.6,1,1.46,6106,115.265297,124.778269,134.684954,140.514809,I,Above,Hip,0,5701,,19.30873745,0,0,,,,1,1,,0.03,nav,1,1976,1,, 13138,NJBF000081310,4 SPALDING PLACE,Galloway,NJ,39.41858027,-74.36324171,RES1,3001,,17,NE,1989,1989,3102,2,1,1930.507571,1930.507571,3507,NO,37.02,44.11,1,-0.2,6106,115.354726,124.862203,134.781717,140.566414,I,Above,Flat,0,5701,,40.56577232,0,0,,,,1,1,,0.03,nav,1,1989,2,, 13139,NJBF000082205,228 N SHORE ROAD,Galloway,NJ,39.42781517,-74.49621425,RES1,3001,,17,NE,1927,1927,3102,1,1,1691.43822,1691.43822,3505,NO,15.29,24.71,3,-1.39,6112,112.532738,122.305661,131.9432,138.096478,I,Above,Gable,0,5701,,19.99592657,0,0,,,,1,1,,0.35,nav,1,1927,1,, 13140,NJBF000079365,220 6TH STREET NO,Galloway,NJ,39.41081956,-74.3603584,RES1,3001,,18,NE,1958,1958,3102,3,1,1800.446245,1800.446245,3507,NO,51.17,59.9,1,1.48,6106,115.493228,124.993856,134.9274,140.708948,I,Above,Hip,0,5701,,55.53820393,0,1.1,,,,1,1,,0.03,nav,1,1958,3,, 13141,NJBF000080565,1 MACDONALD PLACE,Galloway,NJ,39.41547636,-74.36610648,RES1,3001,,17,NE,1999,1999,3102,2,1,1812.054846,1812.054846,3507,NO,37.46,43.52,1,0.24,6106,115.329084,124.838271,134.753396,140.559523,I,Above,Gable,0,5701,,40.49049596,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 13142,NJBF000081707,1229 E SHORE DR,Galloway,NJ,39.42209684,-74.36488668,RES1,3001,,18,NE,2007,2007,3102,3,1,2587.223245,2587.223245,3507,NO,56.7,69.16,1,3,6106,115.285861,124.795832,134.707737,140.49586,I,Above,Hip,0,5701,,62.92975729,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 13143,NJBF000079616,105 BAYSHORE AVE,Galloway,NJ,39.41198228,-74.36802901,RES1,3001,,16,NE,1965,1965,3102,2,1,1982.960355,1982.960355,3507,NO,36.54,48.72,1,1.27,6106,115.326521,124.83633,134.749583,140.572882,I,Above,Hip,0,5701,,42.63019701,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 13144,NJBF000081795,,Galloway,NJ,39.4230535,-74.365055,RES1,3001,,NaN,NE,1969,0,3102,2,1,2013.306972,2013.306972,3507,NO,31.8,42.75,1,2.01,6106,115.272805,124.7831,134.693598,140.481119,I,Above,Flat,0,5701,,37.27824535,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13145,NJBF000081005,1319 OUIMET RD,Galloway,NJ,39.41719849,-74.3750465,RES1,3001,,16,NE,1985,1985,3103,1,1,1489.348578,1489.348578,3505,NO,13.44,25.93,3,-2.99,6106,115.130976,124.650788,134.542259,140.393705,I,Above,Flat,0,5701,,19.68624624,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13146,NJBF000082290,614 OHIO AVE,Galloway,NJ,39.42866856,-74.51033454,RES1,3001,,16,NE,1910,1910,3102,2,1,1219.829081,1219.829081,3505,NO,25.62,34.47,3,-0.81,6112,112.235088,122.048512,131.661838,137.809353,I,Above,Gable,0,5701,,30.04903536,0,0,,,,1,1,,0.35,nav,1,1910,2,, 13147,NJBF000082752,600 SOOY LANE,Galloway,NJ,39.43316829,-74.48175087,RES1,3001,,17,NE,1982,1982,3102,1,1,2485.647018,2485.647018,3507,NO,21.03,33.94,1,2.23,6110,112.794,122.507033,132.163857,138.289609,I,Above,Gable,0,5701,,27.48336647,0,1.1,,,,1,1,,0.35,nav,1,1982,1,, 13148,NJBF000078900,,Galloway,NJ,39.40822102,-74.37131444,RES3A,3001,,NaN,NE,1969,0,3301,1,1,9616.815624,9616.815624,3507,NO,11.86,22.16,1,-0.51,6106,115.299378,124.81135,134.719339,140.568277,I,Above,Flat,0,5701,,17.01118178,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13149,NJBF000079234,429 W SHORE DR,Galloway,NJ,39.41026406,-74.37191908,RES1,3001,,16,NE,1960,1960,3102,1,1,2377.378343,2377.378343,3507,NO,21.13,26.99,1,2.09,6106,115.265734,124.779521,134.684486,140.532659,I,Above,Gable,0,5701,,24.05939784,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 13150,NJBF000079644,218 9TH STREET NO,Galloway,NJ,39.41212454,-74.35829765,RES1,3001,,43,NE,1950,1950,3102,1,2,1595.391115,1595.391115,3507,YES,17.46,25.05,1,1.21,6106,115.520891,125.020307,134.958103,140.725238,I,Above,Gable,0,5701,,21.25708246,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13151,NJBF000079615,,Galloway,NJ,39.41198147,-74.35928818,RES1,3001,,NaN,NE,1969,0,3102,2,1,1649.057155,1649.057155,3507,NO,27.05,36.49,1,2.5,6106,115.502534,125.002835,134.938203,140.711417,I,Above,Gable,0,5701,,31.76883068,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13152,NJBF000079476,105 PUTNAM PLACE,Galloway,NJ,39.41131686,-74.36291865,RES1,3001,,15,NE,1956,1956,3102,1,1,2113.005571,2113.005571,3507,NO,13.69,21.11,1,1.42,6106,115.436498,124.940172,134.866807,140.662336,I,Above,Gable,0,5701,,17.39825865,0,0,,,,1,1,,0.03,nav,1,1956,1,, 13153,NJBF000079278,2 SHERIDAN PLACE,Galloway,NJ,39.41047078,-74.36603512,RES1,3001,,16,NE,1962,1962,3102,2,1,1242.783472,1242.783472,3507,YES,31.2,36.45,1,2.81,6106,115.382555,124.889239,134.808673,140.623599,I,Above,Gable,0,5701,,33.82387241,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 13154,NJBF000076655,4032 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39423514,-74.39852354,RES1,3001,,17,NE,1994,1994,3102,2,1,1332.145748,1332.145748,3505,NO,30.47,42.66,3,8.34,6106,114.889496,124.440671,134.293427,140.317613,I,Above,Gable,0,5701,,36.56292862,0,0,,,,1,1,,0.03,nav,1,1994,2,, 13155,NJBF000080969,24 VARDON RD,Galloway,NJ,39.41705587,-74.37312475,RES1,3001,,16,NE,1985,1985,3102,1,1,1588.439973,1588.439973,3507,NO,14.83,29.22,1,0.02,6106,115.171269,124.688773,134.58507,140.426624,I,Above,Hip,0,5701,,22.02550051,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13156,NJBF000081263,847 W SHORE DR,Galloway,NJ,39.41837093,-74.38066995,RES1,3001,,16,NE,1964,1964,3103,1,1,1561.761263,1561.761263,3505,NO,15.79,27.71,3,-1.77,6106,115.005155,124.532072,134.408887,140.286982,I,Above,Gable,0,5701,,21.75332391,0,0,,,,1,1,,0.03,nav,1,1964,1,, 13157,NJBF000078434,236 7TH STREET SO,Galloway,NJ,39.40548965,-74.3685291,RES1,3001,,16,NE,1953,1953,3102,2,1,1225.994129,1225.994129,3505,NO,46.45,52.52,3,7.86,6106,115.38465,124.891276,134.80807,140.646911,I,Above,Hip,0,5701,,49.48540378,0,0.1,,,,1,1,,0.03,nav,1,1953,2,, 13158,NJBF000081109,800 SHERIDAN BLVD,Galloway,NJ,39.41756783,-74.36687708,RES1,3001,,17,NE,1990,1990,3102,2,1,1014.134369,1014.134369,3507,NO,27.28,39.03,1,-0.7,6106,115.292045,124.802785,134.714094,140.520812,I,Above,Hip,0,5701,,33.15607649,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 13159,NJBF000081116,1308 VARDON RD,Galloway,NJ,39.41759994,-74.37419731,RES1,3001,,18,NE,2001,2001,3102,2,1,1197.286856,1197.286856,3507,NO,36.16,46.05,1,-0.28,6106,115.144057,124.662918,134.556093,140.402308,I,Above,Gable,0,5701,,41.1062524,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 13160,NJBF000081313,907 N SHORE DR,Galloway,NJ,39.41858507,-74.37921124,RES1,3001,,16,NE,1958,1958,3103,1,1,1786.458482,1786.458482,3505,NO,13.74,19.68,3,-1.56,6106,115.032583,124.55764,134.437753,140.308046,I,Above,Hip,0,5701,,16.70805484,0,0,,,,1,1,,0.03,nav,1,1958,1,, 13161,NJBF000080597,800 W SHORE DR,Galloway,NJ,39.41559079,-74.38266922,RES1,3001,,NaN,NE,1973,0,3103,4,1,2396.533855,2396.533855,3505,NO,60.22,65.99,3,7.16,6106,114.992638,124.522191,134.396745,140.290555,I,Above,Flat,0,5701,,63.10426753,0,0,,,,1,1,,0.03,nav,1,1973,4,, 13162,NJBF000080958,4 KIRBY PLACE,Galloway,NJ,39.41702708,-74.36284913,RES1,3001,,17,NE,1991,1991,3102,1,1,2021.106167,2021.106167,3507,NO,21.35,29.02,1,2.49,6106,115.378581,124.885086,134.80704,140.592121,I,Above,Gable,0,5701,,25.18583958,0,1.1,,,,1,1,,0.03,nav,1,1991,1,, 13163,NJBF000080706,54 KIRKWOOD CIRCLE,Galloway,NJ,39.4159777,-74.36314636,RES1,3001,,17,NE,2000,2000,3102,2,1,1823.359446,1823.359446,3507,NO,36.15,42.24,1,0.45,6106,115.38344,124.889788,134.811934,140.600495,I,Above,Gable,0,5701,,39.19703102,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 13164,NJBF000080658,4 MACDERMOTT PLACE,Galloway,NJ,39.41582583,-74.3661322,RES1,3001,,17,NE,1985,1985,3102,2,1,1076.422454,1076.422454,3507,NO,27.54,40.23,1,-0.18,6106,115.32495,124.834302,134.749053,140.554702,I,Above,Gable,0,5701,,33.88151046,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13165,NJBF000080561,12 MACDONALD PLACE,Galloway,NJ,39.415465,-74.3669435,RES1,3001,,16,NE,1977,1977,3102,2,1,1115.975915,1115.975915,3507,YES,37.51,50.58,1,-0.56,6106,115.312318,124.8224,134.735434,140.546256,I,Above,Hip,0,5701,,44.04619832,0,0,,,,1,1,,0.03,nav,1,1977,2,, 13166,NJBF000078567,218 6TH STREET SO,Galloway,NJ,39.40624613,-74.36807899,RES1,3001,,15,NE,1960,1960,3102,1,1,1079.131104,1079.131104,3505,NO,15.16,22.55,3,2.09,6106,115.385746,124.892305,134.809707,140.64447,I,Above,Gable,0,5701,,18.85561819,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13167,NJBF000081261,43 VARDON RD,Galloway,NJ,39.41835041,-74.3727167,RES1,3001,,17,NE,2000,2000,3102,2,1,947.8199814,947.8199814,3507,NO,32.99,38.03,1,0.85,6106,115.166334,124.683599,134.579705,140.416688,I,Above,Gable,0,5701,,35.50699567,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 13168,NJBF000081292,45 VARDON RD,Galloway,NJ,39.41852737,-74.37289658,RES1,3001,,17,NE,1986,1986,3102,1,1,1918.679147,1918.679147,3507,NO,20.64,33.99,1,1.79,6106,115.160901,124.678397,134.573896,140.41151,I,Above,Flat,0,5701,,27.31614599,0,1.1,,,,1,1,,0.03,nav,1,1986,1,, 13169,NJBF000080718,64 KIRKWOOD CIRCLE,Galloway,NJ,39.41601043,-74.3640415,RES1,3001,,16,NE,1980,1980,3102,2,1,1349.59635,1349.59635,3507,NO,32.21,44.49,1,1.46,6106,115.365121,124.872382,134.792235,140.585813,I,Above,Gable,0,5701,,38.35047356,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13170,NJBF000080136,1104 E BEACH AVE,Galloway,NJ,39.41403752,-74.3571106,RES1,3001,,43,NE,1977,1977,3102,2,2,1084.002244,1084.002244,3507,NO,36.43,46.73,1,-0.82,6106,115.524666,125.024196,134.963473,140.720334,I,Above,Hip,0,5701,,41.57909195,0,0,,,,1,1,,0.03,nav,1,1977,2,, 13171,NJBF000081151,213 LINCOLN DR,Galloway,NJ,39.41777619,-74.37090253,RES1,3001,,16,NE,1971,1971,3102,1,1,1967.112115,1967.112115,3507,NO,13.62,22.8,1,0.54,6106,115.208792,124.72391,134.625017,140.453341,I,Above,Gable,0,5701,,18.21083539,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 13172,NJBF000080976,36 MACDONALD PLACE,Galloway,NJ,39.41707052,-74.36748164,RES1,3001,,17,NE,1997,1997,3102,2,1,1589.877499,1589.877499,3507,NO,29.23,43.04,1,2.57,6106,115.284962,124.79618,134.706431,140.517366,I,Above,Gable,0,5701,,36.13583765,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 13173,NJBF000080943,34 MACDONALD PLACE,Galloway,NJ,39.41695994,-74.36743978,RES1,3001,,17,NE,1996,1996,3102,2,1,1600.117482,1600.117482,3507,NO,31.28,41.05,1,2.35,6106,115.286946,124.798085,134.708542,140.519442,I,Above,Gable,0,5701,,36.16276416,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 13174,NJBF000081493,216 HAGEN RD,Galloway,NJ,39.4195813,-74.36724062,RES1,3001,,17,NE,2012,2012,3102,3,1,2220.211893,2220.211893,3507,NO,38.92,50.09,1,1.78,6106,115.264153,124.775814,134.684314,140.489555,I,Above,Hip,0,5701,,44.5053738,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 13175,NJBF000078566,158 9TH STREET SO,Galloway,NJ,39.40621947,-74.37147995,RES1,3001,,16,NE,1953,1953,3102,1,1,1448.307552,1448.307552,3505,NO,16.02,28.1,3,5.38,6106,115.3171,124.828136,134.737135,140.591082,I,Above,Hip,0,5701,,22.06097198,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13176,NJBF000078227,301 8TH STREET SO,Galloway,NJ,39.40386503,-74.36723149,REL1,3001,,NaN,ME,1969,0,3401,1,1,14615.57756,14615.57756,3507,NO,17.56,25.58,1,0.19,6106,115.428237,124.931968,134.853052,140.687781,I,Above,Flat,0,NaN,,21.57060752,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13177,NJBF000081405,222 ROOSEVELT BLVD NO,Galloway,NJ,39.41904492,-74.37065974,RES1,3001,,16,NE,1965,1965,3102,1,1,2257.474271,2257.474271,3507,NO,17.94,25.79,1,-0.6,6106,115.200768,124.715874,134.616392,140.441125,I,Above,Gable,0,5701,,21.86532832,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 13178,NJBF000078575,234 5TH STREET SO,Galloway,NJ,39.40629651,-74.36699933,RES1,3001,,16,NE,1950,1950,3102,1,1,1131.50691,1131.50691,3507,NO,12.38,19.75,1,0.84,6106,115.40706,124.912277,134.832337,140.660847,I,Above,Hip,0,5701,,16.06555977,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 13179,NJBF000078564,238 5TH STREET SO,Galloway,NJ,39.40621741,-74.36692297,RES1,3001,,43,NE,1966,1966,3102,2,2,834.8798678,834.8798678,3505,NO,30.51,44.06,3,6.43,6106,115.409446,124.91451,134.834815,140.66305,I,Above,Hip,0,5701,,37.28403347,0,0,,,,1,1,,0.03,nav,1,1966,2,, 13180,NJBF000081340,935 N SHORE DR,Galloway,NJ,39.41873626,-74.37673848,RES1,3001,,17,NE,1987,1987,3103,1,1,1304.109066,1304.109066,3505,NO,16.12,24.52,3,-1.55,6106,115.081141,124.603156,134.489095,140.346426,I,Above,Hip,0,5701,,20.32180682,0,0,,,,1,1,,0.03,nav,1,1987,1,, 13181,NJBF000080847,708 SHERIDAN BLVD,Galloway,NJ,39.41657625,-74.36561668,RES1,3001,,16,NE,1986,1986,3102,1,1,1517.55492,1517.55492,3507,NO,19.26,25.84,1,2.58,6106,115.327589,124.836687,134.752061,140.553511,I,Above,Gable,0,5701,,22.55194599,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13182,NJBF000080815,706 SHERIDAN BLVD,Galloway,NJ,39.4164463,-74.36558698,RES1,3001,,18,NE,2000,2000,3102,2,1,1944.461486,1944.461486,3507,NO,34.71,40.54,1,2.97,6106,115.329531,124.838549,134.754116,140.555625,I,Above,Flat,0,5701,,37.62492478,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 13183,NJBF000080953,1337 OUIMET RD,Galloway,NJ,39.41701133,-74.37656308,RES1,3001,,17,NE,1980,1980,3103,2,1,1241.843533,1241.843533,3505,YES,26.61,32.08,3,0.49,6106,115.102169,124.62381,134.511763,140.371502,I,Above,Flat,0,5701,,29.34396998,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13184,NJBF000081286,200 HAGEN RD,Galloway,NJ,39.41849833,-74.36707745,RES1,3001,,17,NE,1996,1996,3102,2,1,2225.906198,2225.906198,3507,YES,34.89,43.13,1,1.53,6106,115.278502,124.78972,134.699662,140.505865,I,Above,Hip,0,5701,,39.01124877,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 13185,NJBF000076902,,Galloway,NJ,39.39529126,-74.38827228,COM1,3001,,NaN,ME,2011,0,3401,2,1,18252.86561,18252.86561,3507,NO,28.42,35.05,1,2.19,6106,115.090363,124.621566,134.497002,140.466546,I,Above,Flat,0,NaN,,31.7374936,0,0,,,,1,1,,0.03,nav,1,2011,2,, 13186,NJBF000080270,123 LINCOLN DR,Galloway,NJ,39.41451312,-74.37019197,RES1,3001,,16,NE,1965,1965,3102,1,1,1403.493531,1403.493531,3507,NO,18.02,25.55,1,1.51,6106,115.256612,124.769997,134.675769,140.506258,I,Above,Flat,0,5701,,21.78564224,0,0,,,,1,1,,0.03,nav,1,1965,1,, 13187,NJBF000081201,1311 VARDON RD,Galloway,NJ,39.4179995,-74.3740955,RES1,3001,,16,NE,1975,1975,3102,1,1,1322.439959,1322.439959,3507,NO,14.8,29.01,1,1.71,6106,115.142053,124.660853,134.553909,140.398835,I,Above,Gable,0,5701,,21.90403492,0,0,,,,1,1,,0.03,nav,1,1975,1,, 13188,NJBF000079858,9 QUAY BLVD,Galloway,NJ,39.41312946,-74.36699926,RES1,3001,,16,NE,1969,1969,3102,2,1,1210.535287,1210.535287,3507,YES,35.53,48.14,1,0.2,6106,115.335384,124.844543,134.759433,140.574824,I,Above,Flat,0,5701,,41.83553494,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 13189,NJBF000078869,129 5TH STREET SO,Galloway,NJ,39.40804814,-74.36794945,RES1,3001,,45,NE,1957,1957,3102,2,2,1358.284483,1358.284483,3507,NO,38.09,47.54,1,-0.44,6106,115.369339,124.876897,134.793355,140.6238,I,Above,Hip,0,5701,,42.81421481,0,0,,,,1,1,,0.03,nav,1,1957,2,, 13190,NJBF000080630,9 MACDONALD PLACE,Galloway,NJ,39.41566261,-74.36656891,RES1,3001,,16,NE,1980,1980,3102,2,1,1307.310679,1307.310679,3507,NO,35.16,47.31,1,2.19,6106,115.31783,124.827585,134.741384,140.549762,I,Above,Gable,0,5701,,41.23238217,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13191,NJBF000080606,7 MACDONALD PLACE,Galloway,NJ,39.41560538,-74.36642546,RES1,3001,,17,NE,1986,1986,3102,1,1,1560.48649,1560.48649,3507,NO,16.2,21.57,1,2.77,6106,115.321329,124.830907,134.745118,140.552797,I,Above,Gable,0,5701,,18.88362908,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13192,NJBF000079410,439 RISLEY RD,Galloway,NJ,39.4110232,-74.37223495,RES1,3001,,15,NE,1982,1982,3102,1,1,1519.015457,1519.015457,3507,NO,13.91,19.77,1,1.76,6106,115.251426,124.765955,134.669551,140.517945,I,Above,Gable,0,5701,,16.83719132,0,0,,,,1,1,,0.03,nav,1,1982,1,, 13193,NJBF000079401,437 RISLEY RD,Galloway,NJ,39.41099394,-74.37206145,RES1,3001,,15,NE,1982,1982,3102,1,1,1659.171929,1659.171929,3507,NO,12.82,23.9,1,2.2,6106,115.255252,124.769547,134.673595,140.521095,I,Above,Gable,0,5701,,18.35984763,0,0,,,,1,1,,0.03,nav,1,1982,1,, 13194,NJBF000080941,11 MACDERMOTT PLACE,Galloway,NJ,39.41695416,-74.36606167,RES1,3001,,17,NE,1996,1996,3102,2,1,1320.609612,1320.609612,3507,NO,28.52,36.68,1,-0.38,6106,115.314748,124.824442,134.738356,140.541626,I,Above,Gable,0,5701,,32.60176978,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 13195,NJBF000079432,205 LAFAYETTE PLACE,Galloway,NJ,39.41111019,-74.36728782,RES1,3001,,16,NE,1964,1964,3102,2,1,1605.340341,1605.340341,3507,YES,33.58,40.3,1,0.91,6106,115.350578,124.859078,134.774875,140.595672,I,Above,Gable,0,5701,,36.93922587,0,0,,,,1,1,,0.03,nav,1,1964,2,, 13196,NJBF000081441,1004 E SHORE DR,Galloway,NJ,39.4192265,-74.3627695,RES1,3001,,16,NE,1955,1955,3102,2,1,1226.946479,1226.946479,3507,NO,26.45,32.34,1,2.27,6106,115.357585,124.864847,134.784942,140.565904,I,Above,Hip,0,5701,,29.39747697,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13197,NJBF000081295,917 N SHORE DR,Galloway,NJ,39.41853862,-74.37833927,RES1,3001,,17,NE,1988,1988,3103,2,1,1822.322498,1822.322498,3505,NO,36.38,41.92,3,2.42,6106,115.050716,124.574682,134.456936,140.322875,I,Above,Gable,0,5701,,39.15207214,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 13198,NJBF000080645,125 WASHINGTON DR,Galloway,NJ,39.41575355,-74.36884055,RES1,3001,,16,NE,1969,1969,3102,2,1,1734.731904,1734.731904,3507,YES,31.28,44.65,1,2.61,6106,115.271101,124.783368,134.691413,140.5122,I,Above,Flat,0,5701,,37.96647552,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13199,NJBF000080563,1103 E EVANS BLVD,Galloway,NJ,39.41547171,-74.35910064,RES1,3001,,17,NE,1986,1986,3102,1,1,1142.128855,1142.128855,3507,NO,14.72,28.74,1,0.44,6106,115.46986,124.972067,134.904979,140.671122,I,Above,Gable,0,5701,,21.72958197,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13200,NJBF000079414,506 RISLEY RD,Galloway,NJ,39.41105019,-74.37388946,RES1,3001,,16,NE,1980,1980,3102,1,1,1632.559282,1632.559282,3507,NO,19.05,26.17,1,2.75,6106,115.217617,124.734297,134.633814,140.491143,I,Above,Gable,0,5701,,22.61304148,0,0,,,,1,1,,0.03,nav,1,1980,1,, 13201,NJBF000079006,,Galloway,NJ,39.40896333,-74.36343062,RES1,3001,,NaN,NE,1955,0,3102,2,1,2326.222095,2326.222095,3507,NO,30.64,40.68,1,1.39,6106,115.450923,124.953667,134.880802,140.683646,I,Above,Gable,0,5701,,35.66015253,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13202,NJBF000081124,719 SHERIDAN BLVD,Galloway,NJ,39.41763799,-74.36553563,RES1,3001,,17,NE,1980,1980,3102,2,1,1454.972714,1454.972714,3507,NO,39.73,49.06,1,2.21,6106,115.318305,124.827696,134.742304,140.541455,I,Above,Gable,0,5701,,44.39512688,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13203,NJBF000081330,856 W SHORE DR,Galloway,NJ,39.41866248,-74.38112568,RES1,3001,,19,NE,2014,2014,3103,2,1,1847.118022,1847.118022,3505,NO,19.77,34.3,3,-2.83,6106,114.992974,124.520475,134.39593,140.275734,I,Above,Hip,0,5701,,27.03253716,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 13204,NJBF000080643,132 WASHINGTON DR,Galloway,NJ,39.41574141,-74.36933038,RES1,3001,,16,NE,1969,1969,3102,1,1,1570.711303,1570.711303,3507,NO,15.74,28.97,1,-0.19,6106,115.26137,124.77418,134.681021,140.504514,I,Above,Gable,0,5701,,22.35054897,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13205,NJBF000078583,,Galloway,NJ,39.4063505,-74.365263,RES3B,3001,,NaN,ME,1969,0,3301,1,1,3757.540071,3757.540071,3507,NO,21.14,30.97,1,2.66,6106,115.441581,124.944673,134.869045,140.687484,I,Above,Hip,0,NaN,,26.0536583,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13206,NJBF000080826,201 LINCOLN DR,Galloway,NJ,39.41648346,-74.37086826,RES1,3001,,16,NE,1968,1968,3102,2,1,1829.680938,1829.680938,3507,YES,24.49,30.89,1,-0.37,6106,115.222716,124.737482,134.639853,140.470356,I,Above,Gable,0,5701,,27.68651992,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 13207,NJBF000080709,1301 DUNCAN PLACE,Galloway,NJ,39.41598479,-74.3731448,RES1,3001,,18,NE,2000,2000,3102,2,1,1220.561328,1220.561328,3507,NO,25.92,38.15,1,-0.44,6106,115.181807,124.699105,134.596313,140.439993,I,Above,Gable,0,5701,,32.03533445,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 13208,NJBF000080890,18 MACDERMOTT PLACE,Galloway,NJ,39.41672706,-74.36652365,RES1,3001,,18,NE,2005,2005,3102,2,1,2406.275042,2406.275042,3507,NO,31.91,45.15,1,2.86,6106,115.307783,124.817878,134.730839,140.537078,I,Above,Hip,0,5701,,38.531525,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 13209,NJBF000080620,35 11TH STREET NO,Galloway,NJ,39.41564283,-74.35950848,RES1,3001,,16,NE,1978,1978,3102,1,1,1761.376316,1761.376316,3507,NO,16.49,23.52,1,1.42,6106,115.459927,124.962604,134.894321,140.662545,I,Above,Gable,0,5701,,20.00731931,0,0,,,,1,1,,0.03,nav,1,1978,1,, 13210,NJBF000080745,22 MACDONALD PLACE,Galloway,NJ,39.41614534,-74.36734678,RES1,3001,,16,NE,1994,1994,3102,1,1,1846.047972,1846.047972,3507,NO,16.69,21.9,1,-0.05,6106,115.297194,124.80796,134.719384,140.531222,I,Above,Flat,0,5701,,19.29799262,0,1.1,,,,1,1,,0.03,nav,1,1994,1,, 13211,NJBF000081279,216 ROOSEVELT BLVD NO,Galloway,NJ,39.41845479,-74.37048728,RES1,3001,,16,NE,1962,1962,3102,2,1,1296.507662,1296.507662,3507,YES,26.9,39.61,1,2.26,6106,115.21026,124.725064,134.626567,140.451424,I,Above,Gable,0,5701,,33.25289711,0,0,,,,1,1,,0.03,nav,1,1962,2,, 13212,NJBF000080469,34 KIRKWOOD CIRCLE,Galloway,NJ,39.41516423,-74.36206164,RES1,3001,,17,NE,1987,1987,3102,1,1,1704.442468,1704.442468,3507,NO,18.44,27.03,1,-0.03,6106,115.413643,124.918532,134.844147,140.627924,I,Above,Gable,0,5701,,22.73532352,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 13213,NJBF000078817,706 BAYSHORE AVE,Galloway,NJ,39.407742,-74.3707655,RES1,3001,,16,NE,1952,1952,3102,1,1,1829.855676,1829.855676,3507,NO,15.79,21.66,1,-0.58,6106,115.315522,124.826506,134.736195,140.583057,I,Above,Hip,0,5701,,18.7257846,0,0,,,,1,1,,0.03,nav,1,1952,1,, 13214,NJBF000078797,106 SHERIDAN SQUARE,Galloway,NJ,39.40761873,-74.37054445,RES1,3001,,43,NE,1954,1954,3102,2,3,1553.355168,1553.355168,3507,NO,30.48,42.07,1,1.96,6106,115.321316,124.831939,134.742264,140.588137,I,Above,Gable,0,5701,,36.27892271,0,0,,,,1,1,,0.03,nav,1,1954,2,, 13215,NJBF000078777,900 BAYSHORE AVE,Galloway,NJ,39.40750283,-74.37259299,RES1,3001,,17,NE,1952,1952,3102,2,1,1288.168226,1288.168226,3507,NO,28.2,40.46,1,0.92,6106,115.280978,124.794265,134.699627,140.557097,I,Above,Hip,0,5701,,34.33074739,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 13216,NJBF000079773,19 QUAY CIRCLE,Galloway,NJ,39.41278284,-74.36710383,RES1,3001,,16,NE,1972,1972,3102,2,1,1862.701578,1862.701578,3507,NO,27.56,36.44,1,0.95,6106,115.33686,124.845978,134.760891,140.577512,I,Above,Gable,0,5701,,31.99923743,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 13217,NJBF000079768,2 QUAY BLVD,Galloway,NJ,39.41274647,-74.36685901,RES1,3001,,16,NE,1972,1972,3102,1,1,1542.949554,1542.949554,3507,NO,16.43,26.01,1,2.82,6106,115.342187,124.851009,134.766565,140.581881,I,Above,Gable,0,5701,,21.2207109,0,0,,,,1,1,,0.03,nav,1,1972,1,, 13218,NJBF000079861,906 E BEACH AVE,Galloway,NJ,39.41313797,-74.35825721,RES1,3001,,43,NE,1989,1989,3102,2,2,1468.551252,1468.551252,3507,NO,22.76,30.31,1,1.16,6106,115.511104,125.01114,134.948215,140.713362,I,Above,Hip,0,5701,,26.53729968,0,0,,,,1,1,,0.03,nav,1,1989,2,, 13219,NJBF000076494,328 31ST STREET SO,Galloway,NJ,39.39362805,-74.38453772,RES1,3001,,15,NE,1955,1955,3102,1,1,1153.178166,1153.178166,3507,NO,15.3,23.27,1,-0.37,6106,115.185369,124.708284,134.593195,140.547107,I,Above,Hip,0,5701,,19.28436251,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 13220,NJBF000078783,110 SHERIDAN SQUARE,Galloway,NJ,39.4075325,-74.370464,RES1,3001,,47,NE,1984,1984,3102,2,3,1647.931661,1647.931661,3507,NO,38.82,46.3,1,2.51,6106,115.323843,124.834311,134.744895,140.590496,I,Above,Gable,0,5701,,42.55720131,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13221,NJBF000079698,713 E BEACH AVE,Galloway,NJ,39.41239473,-74.35998642,RES1,3001,,16,NE,1960,1960,3102,1,1,915.1754394,915.1754394,3507,NO,20.47,35.29,1,2.47,6106,115.484182,124.985449,134.918694,140.695271,I,Above,Hip,0,5701,,27.88340249,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13222,NJBF000079681,513 LAFAYETTE BLVD,Galloway,NJ,39.41230533,-74.37398807,RES1,3001,,16,NE,1979,1979,3102,1,1,2274.255746,2274.255746,3507,NO,18.43,27.34,1,-0.38,6106,115.202602,124.719876,134.618146,140.473498,I,Above,Flat,0,5701,,22.88710571,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 13223,NJBF000079724,509 CAVERLY DR,Galloway,NJ,39.41252335,-74.37276123,RES1,3001,,16,NE,1981,1981,3102,2,1,2385.794394,2385.794394,3507,YES,37.08,44.74,1,1.87,6106,115.225208,124.740998,134.642098,140.490394,I,Above,Hip,0,5701,,40.9130762,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 13224,NJBF000079706,507 CAVERLY DR,Galloway,NJ,39.41242288,-74.37262533,RES1,3001,,17,NE,1987,1987,3102,2,1,2545.852496,2545.852496,3507,NO,30.94,45.67,1,0.55,6106,115.228997,124.744579,134.646096,140.493851,I,Above,Hip,0,5701,,38.30443817,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 13225,NJBF000078677,1000 BAYSHORE AVE,Galloway,NJ,39.4068819,-74.3731238,RES1,3001,,16,NE,1957,1957,3102,2,1,1654.062008,1654.062008,3507,NO,38.18,49.92,1,2.63,6106,115.276732,124.790401,134.694901,140.55658,I,Above,Hip,0,5701,,44.04854948,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 13226,NJBF000079547,116 BAYSHORE AVE,Galloway,NJ,39.41162335,-74.36862441,RES1,3001,,16,NE,1965,1965,3102,1,1,1568.700885,1568.700885,3507,NO,15.43,22.66,1,-0.14,6106,115.318241,124.828581,134.740639,140.567941,I,Above,Hip,0,5701,,19.04453625,0,0,,,,1,1,,0.03,nav,1,1965,1,, 13227,NJBF000078656,254 3RD STREET SO,Galloway,NJ,39.40675027,-74.36516584,RES3B,3001,,16,ME,1950,1950,3301,2,1,1861.681423,1861.681423,3507,NO,23.92,31.85,1,0.86,6106,115.439309,124.942569,134.866911,140.684011,I,Above,Hip,0,NaN,,27.88518254,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13228,NJBF000079470,203 6TH STREET NO,Galloway,NJ,39.41128846,-74.36024692,RES1,3001,,16,NE,1953,1953,3102,1,1,1184.011328,1184.011328,3507,NO,14.89,24.77,1,0.45,6106,115.490543,124.991366,134.924828,140.704889,I,Above,Gable,0,5701,,19.82721973,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13229,NJBF000079450,701 E BRIGANTINE AVE,Galloway,NJ,39.41119854,-74.35898269,RES1,3001,,15,NE,1951,1951,3102,1,1,884.9935109,884.9935109,3507,NO,12.75,25.47,1,0.73,6106,115.516866,125.016337,134.953108,140.725904,I,Above,Hip,0,5701,,19.1129104,0,0,,,,1,1,,0.03,nav,1,1951,1,, 13230,NJBF000078651,227 5TH STREET SO,Galloway,NJ,39.40670468,-74.36674486,RES1,3001,,16,NE,1949,1949,3102,1,1,1313.50143,1313.50143,3507,NO,17.52,27.14,1,-0.58,6106,115.407875,124.913053,134.833467,140.659718,I,Above,Hip,0,5701,,22.32716774,0,0,,,,1,1,,0.03,nav,1,1949,1,, 13231,NJBF000079494,442 LAFAYETTE BLVD,Galloway,NJ,39.41138145,-74.37245004,RES1,3001,,16,NE,1983,1983,3102,2,1,1200.472852,1200.472852,3507,NO,22.65,35.23,1,-0.24,6106,115.243348,124.758302,134.661087,140.509944,I,Above,Gable,0,5701,,28.93684315,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 13232,NJBF000078558,111 11TH STREET SO,Galloway,NJ,39.40617782,-74.37307128,RES1,3001,,NaN,NE,1950,1948,3102,2,1,862.16359,862.16359,3505,NO,31.01,43.63,3,-2.65,6106,115.28523,124.798424,134.703545,140.566397,I,Above,Hip,0,5701,,37.31973236,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13233,NJBF000079439,506 W SHORE DR,Galloway,NJ,39.41114581,-74.37536976,RES1,3001,,19,NE,2003,2003,3103,2,1,3199.093177,3199.093177,3505,YES,44.95,54.04,3,7.53,6106,115.18657,124.705246,134.601073,140.466177,I,Above,Flat,0,5701,,49.49013879,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 13234,NJBF000078620,242 4TH STREET SO,Galloway,NJ,39.40653144,-74.366084,RES1,3001,,18,NE,2014,2014,3102,3,1,1321.995157,1321.995157,3507,NO,39.37,46.6,1,0.89,6106,115.423082,124.927316,134.849504,140.672313,I,Above,Gable,0,5701,,42.98527701,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 13235,NJBF000078655,147 9TH STREET SO,Galloway,NJ,39.40674301,-74.37129298,RES1,3001,,15,NE,1954,1954,3102,1,1,1530.52556,1530.52556,3507,NO,14.19,24.87,1,2.16,6106,115.315361,124.826461,134.735558,140.587387,I,Above,Gable,0,5701,,19.53014532,0,0,,,,1,1,,0.03,nav,1,1954,1,, 13236,NJBF000079237,207 BAYSHORE AVE,Galloway,NJ,39.41027397,-74.36832895,RES1,3001,,16,NE,1972,1972,3102,3,1,1499.071598,1499.071598,3507,NO,37.27,48.39,1,1.57,6106,115.338285,124.847589,134.761438,140.589682,I,Above,Hip,0,5701,,42.83032873,0,1.1,,,,1,1,,0.03,nav,1,1972,3,, 13237,NJBF000078419,251 7TH STREET SO,Galloway,NJ,39.4053913,-74.36762715,RES1,3001,,16,NE,1957,1957,3102,2,2,525.3440731,525.3440731,3505,NO,41.45,56.04,3,6.43,6110,115.403966,124.909349,134.828454,140.662361,I,Above,Gable,0,5701,,48.74420439,0,1.1,,,,1,1,,0.35,nav,1,1957,2,, 13238,NJBF000081607,1042 N SHORE DR,Galloway,NJ,39.4207806,-74.37275117,RES1,3001,,NaN,NE,1961,0,3102,2,1,1376.408834,1376.408834,3507,NO,25.63,32.65,1,0.2,6106,115.141028,124.658615,134.552309,140.385072,I,Above,Gable,0,5701,,29.13992961,0,0,,,,1,1,,0.03,nav,1,1961,2,, 13239,NJBF000081763,1507 E SHORE DR,Galloway,NJ,39.42267795,-74.36792626,RES1,3001,,16,NE,1966,1966,3102,2,1,736.6929993,736.6929993,3507,YES,27.03,39.76,1,1.51,6106,115.218992,124.73186,134.635569,140.439342,I,Above,Flat,0,5701,,33.39471484,0,0,,,,1,1,,0.03,nav,1,1966,2,, 13240,NJBF000081610,1214 E SHORE DR,Galloway,NJ,39.42080466,-74.36498387,RES1,3001,,17,NE,2005,2005,3102,3,1,2353.206753,2353.206753,3507,NO,33.74,40.78,1,0.75,6106,115.297036,124.806809,134.71977,140.510526,I,Above,Hip,0,5701,,37.26045629,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 13241,NJBF000081766,1414 E SHORE DR,Galloway,NJ,39.42273318,-74.36680935,RES1,3001,,17,NE,1979,1979,3102,1,1,1336.354895,1336.354895,3507,NO,20.86,35.34,1,1.79,6106,115.240865,124.752695,134.659132,140.456759,I,Above,Gable,0,5701,,28.10200533,0,0,,,,1,1,,0.03,nav,1,1979,1,, 13242,NJBF000080832,703 SHERIDAN BLVD,Galloway,NJ,39.4165135,-74.36498745,RES1,3001,,17,NE,1969,1969,3102,1,1,2158.222803,2158.222803,3507,NO,14.51,26.04,1,-0.07,6106,115.340901,124.849328,134.766343,140.564372,I,Above,Gable,0,5701,,20.27492501,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 13243,NJBF000081606,221 HAGEN RD,Galloway,NJ,39.42077763,-74.3668732,RES1,3001,,17,NE,1989,1989,3102,2,1,1394.77568,1394.77568,3507,NO,26.06,32.01,1,1.7,6106,115.259377,124.770936,134.679187,140.480388,I,Above,Gable,0,5701,,29.03448264,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 13244,NJBF000078601,210 6TH STREET SO,Galloway,NJ,39.40643107,-74.36825928,RES1,3001,,43,NE,1957,1957,3102,2,2,1230.04329,1230.04329,3507,NO,33.85,45.13,1,0.1,6106,115.380143,124.887058,134.803884,140.639298,I,Above,Hip,0,5701,,39.4897498,0,0.1,,,,1,1,,0.03,nav,1,1957,2,, 13245,NJBF000078580,214 6TH STREET SO,Galloway,NJ,39.40633322,-74.36819049,RES1,3001,,45,NE,1980,1980,3102,2,2,1306.247797,1306.247797,3507,NO,35.72,42.23,1,2.45,6106,115.382577,124.889338,134.806404,140.641622,I,Above,Gable,0,5701,,38.97715274,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13246,NJBF000081251,3 DUNLAP PLACE,Galloway,NJ,39.41831636,-74.36325849,RES1,3001,,16,NE,1982,1982,3102,1,1,2107.586876,2107.586876,3507,NO,20.76,32.88,1,2.09,6106,115.357114,124.864511,134.784234,140.569461,I,Above,Gable,0,5701,,26.81621031,0,1.1,,,,1,1,,0.03,nav,1,1982,1,, 13247,NJBF000080997,22 12TH STREET NO,Galloway,NJ,39.41715892,-74.36082702,RES1,3001,,18,NE,2006,2006,3102,3,1,1686.085901,1686.085901,3507,NO,49.68,62.04,1,0.41,6106,115.417793,124.922439,134.849417,140.622735,I,Above,Gable,0,5701,,55.86020281,0,0,,,,1,1,,0.03,nav,1,2006,3,, 13248,NJBF000080971,24 12TH STREET NO,Galloway,NJ,39.4170622,-74.36068427,RES1,3001,,16,NE,1957,1957,3102,3,1,1977.364722,1977.364722,3507,NO,30.59,44.71,1,-0.94,6106,115.421662,124.926131,134.853563,140.62622,I,Above,Gable,0,5701,,37.65038462,0,1.1,,,,1,1,,0.03,nav,1,1957,3,, 13249,NJBF000081234,902 LAFAYETTE BLVD,Galloway,NJ,39.41821923,-74.38031303,RES1,3001,,16,NE,1965,1965,3103,2,1,1488.555576,1488.555576,3505,YES,31.31,41.66,3,2.68,6106,115.013929,124.540387,134.418197,140.294793,I,Above,Flat,0,5701,,36.4870228,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13250,NJBF000081134,805 E SHORE DR,Galloway,NJ,39.41767902,-74.36258792,RES1,3001,,16,NE,1953,1953,3102,1,1,1502.711776,1502.711776,3507,NO,16.51,25.01,1,1.25,6106,115.377107,124.883627,134.805642,140.588145,I,Above,Flat,0,5701,,20.75860455,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13251,NJBF000081282,904 FOWNES AVE,Galloway,NJ,39.41847645,-74.36412374,RES1,3001,,16,NE,1950,1950,3102,1,1,1971.262193,1971.262193,3507,NO,10.26,15.41,1,-0.64,6106,115.338085,124.846368,134.76375,140.55358,I,Above,Gable,0,5701,,12.83598479,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13252,NJBF000081042,27 VARDON RD,Galloway,NJ,39.41733803,-74.37261956,RES1,3001,,16,NE,1972,1972,3102,2,1,2547.17176,2547.17176,3507,NO,33.37,46.26,1,-0.33,6106,115.178596,124.695569,134.592849,140.431185,I,Above,Gable,0,5701,,39.81206263,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 13253,NJBF000080939,19 11TH STREET NO,Galloway,NJ,39.41694943,-74.36110182,RES1,3001,,16,NE,1966,1966,3102,2,1,1559.681003,1559.681003,3507,YES,27.13,32.87,1,1.58,6106,115.414446,124.919253,134.845721,140.620966,I,Above,Gable,0,5701,,29.99716267,0,0,,,,1,1,,0.03,nav,1,1966,2,, 13254,NJBF000080915,21 11TH STREET NO,Galloway,NJ,39.4168425,-74.360975,RES1,3001,,16,NE,1966,1966,3102,1,1,1498.313699,1498.313699,3507,NO,12.37,26.76,1,-0.4,6106,115.418088,124.922728,134.849616,140.624309,I,Above,Gable,0,5701,,19.56677814,0,0,,,,1,1,,0.03,nav,1,1966,1,, 13255,NJBF000081014,1317 OUIMET RD,Galloway,NJ,39.41721505,-74.37486436,RES1,3001,,16,NE,1985,1985,3102,1,1,1420.515843,1420.515843,3507,NO,16.41,23.12,1,0.26,6106,115.134485,124.654081,134.54598,140.396437,I,Above,Gable,0,5701,,19.76419121,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13256,NJBF000080920,705 E SHORE DR,Galloway,NJ,39.41686381,-74.36324192,RES1,3001,,16,NE,1966,1966,3102,1,1,2894.872839,2894.872839,3507,NO,21.79,27.59,1,2.49,6106,115.372368,124.879189,134.800295,140.587882,I,Above,Gable,0,5701,,24.69042662,0,1.2,,,,1,1,,0.03,nav,1,1966,1,, 13257,NJBF000081072,1322 VARDON RD,Galloway,NJ,39.41744512,-74.37541233,RES1,3001,,18,NE,2001,2001,3103,2,1,1792.150072,1792.150072,3505,NO,34.87,41.77,3,3.15,6106,115.121059,124.641347,134.531702,140.384597,I,Above,Hip,0,5701,,38.31763916,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 13258,NJBF000081077,1320 VARDON RD,Galloway,NJ,39.41746061,-74.37524256,RES1,3001,,17,NE,1986,1986,3103,2,1,1259.077978,1259.077978,3505,NO,23.3,33.91,3,0,6106,115.124315,124.644403,134.535154,140.387133,I,Above,Hip,0,5701,,28.60403926,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 13259,NJBF000081071,801 E SHORE DR,Galloway,NJ,39.41744199,-74.36275366,RES1,3001,,16,NE,1955,1955,3102,1,1,1405.177809,1405.177809,3507,NO,17.32,32.14,1,-0.67,6106,115.376214,124.882797,134.804611,140.588453,I,Above,Hip,0,5701,,24.73037285,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 13260,NJBF000081028,1311 OUIMET RD,Galloway,NJ,39.41727556,-74.37432905,RES1,3001,,16,NE,1985,1985,3102,1,1,2033.491799,2033.491799,3507,NO,16.48,26.29,1,1.44,6106,115.144686,124.663651,134.5568,140.404322,I,Above,Flat,0,5701,,21.38544482,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 13261,NJBF000080948,1300 OUIMET RD,Galloway,NJ,39.41697607,-74.3733347,RES1,3001,,17,NE,1988,1988,3102,2,1,1853.185985,1853.185985,3507,NO,22.78,31.37,1,1.15,6106,115.16784,124.685575,134.58143,140.424251,I,Above,Gable,0,5701,,27.07307318,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 13262,NJBF000081084,28 VARDON RD,Galloway,NJ,39.41748585,-74.37321496,RES1,3001,,16,NE,1948,1948,3102,1,1,1984.354442,1984.354442,3507,NO,13.02,20.47,1,2.3,6106,115.165066,124.682757,134.578441,140.419669,I,Above,Flat,0,5701,,16.74525115,0,0,,,,1,1,,0.03,nav,1,1948,1,, 13263,NJBF000080720,1006 JENKINS PARKWAY,Galloway,NJ,39.41601493,-74.36060879,RES1,3001,,16,NE,1952,1952,3102,2,1,1651.583358,1651.583358,3507,YES,35.33,46.61,1,2.31,6106,115.433991,124.937892,134.866461,140.640435,I,Above,Gable,0,5701,,40.97100359,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 13264,NJBF000080842,1315 RAY AVE,Galloway,NJ,39.4165555,-74.3745325,RES1,3001,,17,NE,1989,1989,3102,1,1,1776.226375,1776.226375,3507,NO,17.44,29.03,1,-0.56,6106,115.147897,124.666981,134.560284,140.410252,I,Above,Hip,0,5701,,23.23382664,0,0,,,,1,1,,0.03,nav,1,1989,1,, 13265,NJBF000080844,144 WASHINGTON DR,Galloway,NJ,39.41656812,-74.36953901,RES1,3001,,16,NE,1970,1970,3102,1,1,1302.513125,1302.513125,3507,NO,11.2,23.94,1,-0.81,6106,115.248663,124.761959,134.667544,140.490669,I,Above,Gable,0,5701,,17.57071189,0,0,,,,1,1,,0.03,nav,1,1970,1,, 13266,NJBF000080623,604 SHERIDAN BLVD,Galloway,NJ,39.4156527,-74.36559856,RES1,3001,,16,NE,1984,1984,3102,1,1,1831.815882,1831.815882,3507,NO,16.39,24.65,1,2.79,6106,115.337464,124.846186,134.762428,140.565403,I,Above,Gable,0,5701,,20.51820231,0,1.1,,,,1,1,,0.03,nav,1,1984,1,, 13267,NJBF000080690,803 W SHORE DR,Galloway,NJ,39.41592185,-74.38226094,RES1,3001,,16,NE,1974,1974,3103,2,1,1304.833907,1304.833907,3505,NO,22.38,28.8,3,-2.58,6106,114.997581,124.526585,134.401819,140.292891,I,Above,Flat,0,5701,,25.58690134,0,0,,,,1,1,,0.03,nav,1,1974,2,, 13268,NJBF000080512,125 ROOSEVELT BLVD NO,Galloway,NJ,39.41530749,-74.36958235,RES1,3001,,17,NE,1985,1985,3102,2,1,1360.928566,1360.928566,3507,NO,31.35,40.83,1,1.52,6106,115.260749,124.773702,134.680298,140.505971,I,Above,Gable,0,5701,,36.08763275,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13269,NJBF000080554,707 BOBBY JONES RD,Galloway,NJ,39.41542224,-74.38095011,RES1,3001,,16,NE,1955,1955,3103,2,1,1570.423495,1570.423495,3505,YES,34.88,46.59,3,1.76,6106,115.02931,124.556486,134.435287,140.320766,I,Above,Flat,0,5701,,40.73668845,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 13270,NJBF000080621,,Galloway,NJ,39.41564566,-74.37067026,RES1,3001,,NaN,NE,1969,0,3102,2,1,2379.30912,2379.30912,3507,NO,36.01,45.11,1,2.39,6106,115.235298,124.749603,134.653207,140.484186,I,Above,Gable,0,5701,,40.56303612,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13271,NJBF000080444,502 SHERIDAN PLACE,Galloway,NJ,39.41507598,-74.36573224,RES1,3001,,17,NE,1992,1992,3102,1,1,3954.175019,3954.175019,3507,NO,16.9,31.87,1,2.92,6106,115.340746,124.849371,134.765785,140.570532,I,Above,Gable,0,5701,,24.38742262,0,1.1,,,,1,1,,0.03,nav,1,1992,1,, 13272,NJBF000079995,100 WASHINGTON DR,Galloway,NJ,39.41360526,-74.3684793,RES1,3001,,16,NE,1971,1971,3102,1,1,1687.649802,1687.649802,3507,NO,11.93,17.37,1,-0.06,6106,115.300584,124.81164,134.722437,140.545191,I,Above,Flat,0,5701,,14.6522616,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 13273,NJBF000080028,102 WASHINGTON DR,Galloway,NJ,39.413706,-74.36837483,RES1,3001,,16,NE,1982,1982,3102,1,1,1784.52949,1784.52949,3507,NO,17.38,27.88,1,1.38,6106,115.301637,124.812616,134.723587,140.545576,I,Above,Hip,0,5701,,22.62811027,0,0,,,,1,1,,0.03,nav,1,1982,1,, 13274,NJBF000078346,215 10TH STREET SO,Galloway,NJ,39.40490585,-74.37073733,RES1,3001,,17,NE,2004,2004,3102,2,1,2644.871,2644.871,3505,NO,28.47,40.89,3,5.97,6106,115.346083,124.855265,134.766981,140.619485,I,Above,Gable,0,5701,,34.67631986,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 13275,NJBF000079210,,Galloway,NJ,39.41016223,-74.36204154,RES1,3001,,NaN,NE,1950,0,3102,2,1,2002.520226,2002.520226,3507,NO,33.18,42.62,1,-0.71,6106,115.466275,124.968265,134.898023,140.690587,I,Above,Hip,0,5701,,37.89694848,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13276,NJBF000080162,900 E EVANS BLVD,Galloway,NJ,39.4141212,-74.36009977,RES1,3001,,16,NE,1979,1979,3102,1,1,2309.849167,2309.849167,3507,NO,17.16,28.39,1,-0.15,6106,115.463873,124.966281,134.897801,140.672046,I,Above,Hip,0,5701,,22.77254371,0,1.2,,,,1,1,,0.03,nav,1,1979,1,, 13277,NJBF000080177,607 W SHORE DR,Galloway,NJ,39.41418355,-74.37975709,RES1,3001,,17,NE,1981,1981,3103,2,1,1630.125372,1630.125372,3505,YES,32.05,43.03,3,5.78,6106,115.066179,124.591574,134.4743,140.356225,I,Above,Gable,0,5701,,37.53996101,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 13278,NJBF000080179,902 E EVANS BLVD,Galloway,NJ,39.4141865,-74.3599905,RES1,3001,,16,NE,1985,1985,3102,2,1,1522.453225,1522.453225,3507,NO,26.29,33.67,1,1.91,6106,115.465404,124.967741,134.899487,140.672981,I,Above,Hip,0,5701,,29.97823289,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13279,NJBF000080119,,Galloway,NJ,39.41397659,-74.36753359,RES1,3001,,NaN,NE,1969,0,3102,2,1,2470.841147,2470.841147,3507,NO,35.37,49.65,1,-0.62,6106,115.3158,124.825936,134.738778,140.555592,I,Above,Hip,0,5701,,42.50794899,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13280,NJBF000080410,6 KIRKWOOD CIRCLE,Galloway,NJ,39.41495789,-74.36449435,RES1,3001,,17,NE,1987,1987,3102,1,1,2198.852011,2198.852011,3507,NO,17.01,23.23,1,1.15,6106,115.366885,124.874153,134.793787,140.59177,I,Above,Gable,0,5701,,20.11957183,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 13281,NJBF000079883,111 8TH STREET NO,Galloway,NJ,39.41322397,-74.35998566,RES1,3001,,43,NE,1955,1955,3102,1,2,1064.470159,1064.470159,3507,NO,19.6,28.62,1,2.07,6106,115.475515,124.977289,134.909854,140.684984,I,Above,Hip,0,5701,,24.10916356,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 13282,NJBF000079840,111 8TH STREET NO,Galloway,NJ,39.41306799,-74.36002209,RES1,3001,,43,NE,1955,1955,3102,1,2,2056.29643,2056.29643,3507,NO,15.32,26.76,1,-0.75,6106,115.476422,124.978138,134.91074,140.686351,I,Above,Gable,0,5701,,21.03694118,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 13283,NJBF000079810,521 CAVERLY DR,Galloway,NJ,39.41294323,-74.37360587,RES1,3001,,17,NE,1986,1986,3102,1,1,1976.8547,1976.8547,3507,NO,13.87,19.23,1,2.75,6106,115.203749,124.720752,134.619435,140.471469,I,Above,Gable,0,5701,,16.55329619,0,1.1,,,,1,1,,0.03,nav,1,1986,1,, 13284,NJBF000079785,517 CAVERLY DR,Galloway,NJ,39.41282086,-74.37328839,RES1,3001,,16,NE,1980,1980,3102,2,1,1943.117998,1943.117998,3507,YES,27.14,37.26,1,2.11,6106,115.211452,124.728011,134.627574,140.478134,I,Above,Hip,0,5701,,32.20057983,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13285,NJBF000079866,5 QUAY BLVD,Galloway,NJ,39.41315536,-74.36733836,RES1,3001,,16,NE,1968,1968,3102,1,1,1584.103712,1584.103712,3507,NO,18.79,27.46,1,-0.02,6106,115.328275,124.837831,134.751851,140.569091,I,Above,Flat,0,5701,,23.12569408,0,0,,,,1,1,,0.03,nav,1,1968,1,, 13286,NJBF000079658,509 LAFAYETTE BLVD,Galloway,NJ,39.41219387,-74.373658,RES1,3001,,17,NE,2005,2005,3102,1,1,1827.785359,1827.785359,3507,NO,16.93,23.64,1,1.6,6106,115.210439,124.72725,134.626418,140.480213,I,Above,Gable,0,5701,,20.2867699,0,0,,,,1,1,,0.03,nav,1,2005,1,, 13287,NJBF000079877,537 LAFAYETTE BLVD,Galloway,NJ,39.41320381,-74.37589172,RES1,3001,,16,NE,1973,1973,3103,2,1,2281.893348,2281.893348,3505,NO,29.53,35.9,3,-2.72,6106,115.154714,124.674737,134.567624,140.431349,I,Above,Gable,0,5701,,32.71251177,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 13288,NJBF000079857,11 QUAY BLVD,Galloway,NJ,39.41312407,-74.36681932,RES1,3001,,16,NE,1968,1968,3102,1,1,1358.393829,1358.393829,3507,NO,10.37,21.09,1,-0.55,6106,115.339066,124.84802,134.763365,140.577756,I,Above,Gable,0,5701,,15.7256049,0,0,,,,1,1,,0.03,nav,1,1968,1,, 13289,NJBF000079651,502 E EVANS BLVD,Galloway,NJ,39.41214344,-74.36285966,RES1,3001,,16,NE,1981,1981,3102,2,1,1220.942761,1220.942761,3507,NO,22.32,33.41,1,1.2,6106,115.429043,124.933141,134.859266,140.652957,I,Above,Hip,0,5701,,27.86770064,0,0,,,,1,1,,0.03,nav,1,1981,2,, 13290,NJBF000079622,223 8TH STREET NO,Galloway,NJ,39.41201207,-74.35868394,RES1,3001,,43,NE,1950,1950,3102,1,2,2166.93814,2166.93814,3507,NO,18.8,28.63,1,2.88,6106,115.514332,125.014052,134.950946,140.720553,I,Above,Gable,0,5701,,23.71087873,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13291,NJBF000079699,13 QUAY CIRCLE,Galloway,NJ,39.412396,-74.3670485,RES1,3001,,17,NE,1965,1965,3102,2,1,1250.00304,1250.00304,3507,NO,38.37,46.14,1,2.43,6106,115.342015,124.850884,134.766253,140.583281,I,Above,Gable,0,5701,,42.25504806,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13292,NJBF000079686,200 QUAY BLVD,Galloway,NJ,39.41233547,-74.3591604,RES1,3001,,43,NE,1952,1952,3102,2,2,1152.88055,1152.88055,3507,NO,28.93,39.81,1,2.87,6106,115.501393,125.001796,134.937207,140.709051,I,Above,Flat,0,5701,,34.36826172,0,0,,,,1,1,,0.03,nav,1,1952,2,, 13293,NJBF000079741,513 CAVERLY DR,Galloway,NJ,39.41264585,-74.37292979,RES1,3001,,18,NE,2001,2001,3102,2,1,1442.016865,1442.016865,3507,YES,31.57,44.49,1,-0.3,6106,115.220512,124.73656,134.637144,140.486114,I,Above,Hip,0,5701,,38.03217849,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 13294,NJBF000079756,8 QUAY BLVD,Galloway,NJ,39.4127227,-74.36640047,RES1,3001,,16,NE,1972,1972,3102,2,1,1289.822613,1289.822613,3507,NO,21.85,31.41,1,0.59,6106,115.351684,124.859976,134.776701,140.589479,I,Above,Hip,0,5701,,26.63209101,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13295,NJBF000079475,110 HAMILTON PLACE,Galloway,NJ,39.41131433,-74.3622791,RES1,3001,,16,NE,1935,1935,3102,1,1,1290.207388,1290.207388,3507,NO,16.19,26.94,1,2.64,6106,115.449411,124.952391,134.880653,140.672491,I,Above,Gable,0,5701,,21.56926441,0,0,,,,1,1,,0.03,nav,1,1935,1,, 13296,NJBF000079483,201 6TH STREET NO,Galloway,NJ,39.41134696,-74.36036697,RES1,3001,,43,NE,1951,1951,3102,2,2,998.7406814,998.7406814,3507,NO,36.25,44.19,1,1.12,6106,115.487512,124.988498,134.921607,140.702265,I,Above,Gable,0,5701,,40.22047196,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 13297,NJBF000078852,,Galloway,NJ,39.40793963,-74.36737478,RES1,3001,,NaN,NE,1984,0,3102,2,1,2253.449582,2253.449582,3507,NO,39.25,50.29,1,0.8,6106,115.382086,124.888862,134.806829,140.634236,I,Above,Gable,0,5701,,44.76961316,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13298,NJBF000078450,230 7TH STREET SO,Galloway,NJ,39.40558826,-74.36866185,RES1,3001,,43,NE,1954,1954,3102,1,2,1723.499595,1723.499595,3505,NO,10.02,16.26,3,-2.02,6106,115.380916,124.887784,134.804182,140.643579,I,Above,Flat,0,5701,,13.14339804,0,0,,,,1,1,,0.03,nav,1,1954,1,, 13299,NJBF000079093,32 GIRARD PLACE,Galloway,NJ,39.40948366,-74.36809431,RES1,3001,,16,NE,1982,1982,3102,2,1,1735.808147,1735.808147,3507,NO,36.49,44.61,1,2.09,6106,115.351311,124.859896,134.774932,140.603386,I,Above,Hip,0,5701,,40.54674135,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 13300,NJBF000079020,212 2ND STREET NO,Galloway,NJ,39.40906187,-74.36308045,RES1,3001,,43,NE,1955,1955,3102,2,2,1442.590678,1442.590678,3507,NO,31.93,45.55,1,0.39,6106,115.456953,124.959365,134.887315,140.687941,I,Above,Gable,0,5701,,38.74182875,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13301,NJBF000079053,,Galloway,NJ,39.409207,-74.3620465,RES1,3001,,NaN,NE,1969,0,3102,2,1,2297.410002,2297.410002,3507,NO,35.46,45.82,1,0.25,6106,115.476232,124.977584,134.908047,140.702402,I,Above,Hip,0,5701,,40.64052693,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13302,NJBF000078994,,Galloway,NJ,39.40888139,-74.36516774,RES1,3001,,NaN,NE,1953,0,3102,2,1,2818.723992,2818.723992,3507,NO,25.45,35.38,1,2.42,6106,115.416753,124.921459,134.844272,140.657273,I,Above,Hip,0,5701,,30.41814744,0,0,,,,1,1,,0.03,nav,1,1953,2,, 13303,NJBF000079045,200 W EVANS BLVD,Galloway,NJ,39.40918179,-74.3661972,RES1,3001,,16,NE,1958,1958,3102,2,1,1248.625162,1248.625162,3507,NO,32.44,46.62,1,-0.24,6106,115.392813,124.898926,134.818932,140.637234,I,Above,Flat,0,5701,,39.5318647,0,0,,,,1,1,,0.03,nav,1,1958,2,, 13304,NJBF000078815,107 W BRIGANTINE AVE,Galloway,NJ,39.40772444,-74.36358448,RES1,3001,,45,NE,1940,1940,3102,2,2,1561.881205,1561.881205,3507,NO,38.07,43.46,1,2.92,6106,115.460925,124.962989,134.890635,140.696711,I,Above,Gable,0,5701,,40.76387555,0,0,,,,1,1,,0.03,nav,1,1940,2,, 13305,NJBF000078627,146 9TH STREET SO,Galloway,NJ,39.40655865,-74.37175027,RES1,3001,,16,NE,1950,1950,3102,2,1,1408.893046,1408.893046,3507,YES,27.51,34.27,1,2.01,6106,115.308031,124.819637,134.727737,140.582485,I,Above,Gable,0,5701,,30.89098421,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13306,NJBF000078510,230 6TH STREET SO,Galloway,NJ,39.40590728,-74.36793541,RES1,3001,,15,NE,1930,1930,3102,2,1,891.6959535,891.6959535,3505,NO,39.03,49.13,3,8.92,6106,115.392254,124.898396,134.816387,140.651012,I,Above,Gable,0,5701,,44.08118459,0,0,,,,1,1,,0.03,nav,1,1930,2,, 13307,NJBF000078473,501 W BRIGANTINE AVE,Galloway,NJ,39.405731,-74.366446,RES1,3001,,43,NE,1955,1955,3102,1,2,1940.650185,1940.650185,3505,NO,19.06,26.38,3,1.34,6106,115.424251,124.928367,134.850194,140.676663,I,Above,Flat,0,5701,,22.71763398,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13308,NJBF000078381,613 W BRIGANTINE AVE,Galloway,NJ,39.40515456,-74.3674675,RES1,3001,,17,NE,1960,1960,3102,2,1,1462.996157,1462.996157,3505,NO,27.62,34.18,3,1.67,6110,115.409694,124.9147,134.834358,140.667833,I,Above,Gable,0,5701,,30.89955485,0,0,,,,1,1,,0.35,nav,1,1960,2,, 13309,NJBF000077065,3119 BAYSHORE AVE,Galloway,NJ,39.39625249,-74.38814025,RES1,3001,,17,NE,2002,2002,3102,2,1,2356.898648,2356.898648,3507,NO,21.82,33.47,1,-0.36,6106,115.082705,124.614325,134.489568,140.456013,I,Above,Hip,0,5701,,27.64724388,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 13310,NJBF000076657,304 30TH STREET SO,Galloway,NJ,39.39423918,-74.38401875,RES1,3001,,NaN,NE,1955,0,3102,2,1,1777.355985,1777.355985,3507,NO,26.31,34.41,1,0.84,6106,115.189387,124.711856,134.59769,140.547313,I,Above,Gable,0,5701,,30.36271085,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13311,NJBF000080538,10 MACDONALD PLACE,Galloway,NJ,39.41536694,-74.36680714,RES1,3001,,17,NE,2016,2016,3102,2,1,1549.837109,1549.837109,3507,NO,28.68,38.86,1,1.71,6106,115.316089,124.825986,134.739448,140.549683,I,Above,Gable,0,5701,,33.77385262,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 13312,NJBF000079849,,Galloway,NJ,39.41310117,-74.35710112,RES1,3001,,NaN,NE,1969,0,3102,2,1,2454.147355,2454.147355,3507,NO,26.97,33.4,1,0.62,6106,115.534662,125.03358,134.973667,140.732047,I,Above,Gable,0,5701,,30.18254445,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13313,NJBF000079645,,Galloway,NJ,39.41212536,-74.35966345,RES1,3001,,NaN,NE,1969,0,3102,2,1,1571.783068,1571.783068,3507,NO,28.29,34.65,1,2.25,6106,115.493496,124.994266,134.928557,140.703718,I,Above,Flat,0,5701,,31.46830752,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13314,NJBF000079143,,Galloway,NJ,39.40980904,-74.36329215,RES1,3001,,NaN,NE,1969,0,3102,2,1,1917.988913,1917.988913,3507,NO,33.29,42.27,1,1.72,6106,115.444815,124.947959,134.874814,140.675273,I,Above,Hip,0,5701,,37.78125541,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13315,NJBF000079033,302 W EVANS BLVD,Galloway,NJ,39.40912229,-74.3674806,RES1,3001,,17,NE,2013,2013,3102,2,1,1389.600721,1389.600721,3507,NO,31.8,45.26,1,1.91,6106,115.367503,124.875129,134.791966,140.617667,I,Above,Gable,0,5701,,38.53476377,0,0,,,,1,1,,0.03,nav,1,2013,2,, 13316,NJBF000080263,1499 SHERIDAN BLVD,Galloway,NJ,39.41448076,-74.37840453,RES1,3001,,17,NE,1990,1990,3103,2,1,1878.918953,1878.918953,3505,NO,30.52,36.18,3,6.88,6106,115.090608,124.614233,134.499958,140.374289,I,Above,Flat,0,5701,,33.35020797,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 13317,NJBF000078490,100 11TH STREET SO,Galloway,NJ,39.40580635,-74.37327226,RES1,3001,,16,NE,1948,1948,3102,2,1,2507.128235,2507.128235,3505,NO,38.38,48.47,3,8.76,6106,115.285074,124.79833,134.703214,140.567954,I,Above,Flat,0,5701,,43.42305638,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 13318,NJBF000082548,104 WEILER LANE EAST,Galloway,NJ,39.43082656,-74.4847453,RES1,3001,,17,NE,1984,1984,3102,2,1,1788.153541,1788.153541,3507,NO,31.52,40.2,1,1.88,6106,112.749018,122.47805,132.132002,138.268902,I,Above,Gable,0,5701,,35.86152499,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 13319,NJBF000081268,903 FOWNES AVE,Galloway,NJ,39.41839392,-74.36355878,RES1,3001,,16,NE,1985,1985,3102,1,1,1725.766081,1725.766081,3507,NO,11.83,23.27,1,0.52,6106,115.350271,124.857983,134.77687,140.563663,I,Above,Hip,0,5701,,17.54749747,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13320,NJBF000076704,210 33RD STREET SO,Galloway,NJ,39.39446269,-74.38798726,RES1,3001,,45,NE,1930,1930,3102,2,4,2563.312918,2563.312918,3507,NO,34.08,39.49,1,2.68,6106,115.105215,124.63527,134.511779,140.481916,I,Above,Flat,0,5701,,36.78575356,0,0,,,,1,1,,0.03,nav,1,1930,2,, 13321,NJBF000081741,1306 E SHORE DR,Galloway,NJ,39.42244721,-74.36575654,RES1,3001,,18,NE,2002,2002,3102,2,1,2040.234401,2040.234401,3507,NO,23.38,33.54,1,0.97,6106,115.264866,124.775688,134.685052,140.477396,I,Above,Flat,0,5701,,28.45865741,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 13322,NJBF000080461,115 WASHINGTON DR,Galloway,NJ,39.41513908,-74.36854139,RES1,3001,,16,NE,1960,1960,3102,1,1,1919.071543,1919.071543,3507,NO,21.56,26.98,1,2.41,6106,115.283484,124.795204,134.704535,140.524795,I,Above,Hip,0,5701,,24.27333594,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13323,NJBF000080782,133 WASHINGTON DR,Galloway,NJ,39.416286,-74.36900251,RES1,3001,,16,NE,1969,1969,3102,2,1,1667.893423,1667.893423,3507,NO,26.4,37.25,1,-0.18,6106,115.262366,124.774984,134.682154,140.502861,I,Above,Gable,0,5701,,31.82854254,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13324,NJBF000079969,539 CAVERLY DR,Galloway,NJ,39.41352532,-74.37497652,RES1,3001,,17,NE,1986,1986,3102,2,1,1094.306988,1094.306988,3507,NO,35.79,43.07,1,1.59,6106,115.169965,124.688893,134.583741,140.441965,I,Above,Gable,0,5701,,39.42957671,0,0,,,,1,1,,0.03,nav,1,1986,2,, 13325,NJBF000081759,1307 E SHORE DR,Galloway,NJ,39.42262511,-74.36508264,RES1,3001,,NaN,NE,1960,1958,3102,2,2,2086.268335,2086.268335,3507,NO,32.98,43.57,1,-0.73,6106,115.276583,124.786829,134.697701,140.486058,I,Above,Hip,0,5701,,38.2729655,0,0,,,,1,1,,0.03,nav,1,1960,2,, 13326,NJBF000081455,212 HAGEN RD,Galloway,NJ,39.41931413,-74.36716783,RES1,3001,,17,NE,1992,1992,3102,2,1,1757.728115,1757.728115,3507,NO,32.46,41.95,1,0.41,6106,115.268342,124.779865,134.688804,140.494102,I,Above,Hip,0,5701,,37.20292094,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 13327,NJBF000079915,32 HEALD RD,Galloway,NJ,39.41331515,-74.36415148,RES1,3001,,16,NE,1971,1971,3102,2,1,1090.139387,1090.139387,3507,NO,25.9,40.45,1,-0.11,6106,115.390839,124.896955,134.818851,140.61782,I,Above,Gable,0,5701,,33.17352278,0,0,,,,1,1,,0.03,nav,1,1971,2,, 13328,NJBF000080856,1309 RAY AVE,Galloway,NJ,39.41659505,-74.37400405,RES1,3001,,17,NE,1998,1998,3102,2,1,1747.311306,1747.311306,3507,NO,34.88,47.79,1,1.78,6106,115.1582,124.676656,134.571216,140.418309,I,Above,Gable,0,5701,,41.33622932,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 13329,NJBF000079224,,Galloway,NJ,39.41022194,-74.36926376,COM8,3001,,NaN,ME,1969,0,3401,2,1,7590.101889,7590.101889,3507,NO,25.84,35.58,1,-0.47,6106,115.319923,124.830344,134.741907,140.575478,I,Above,Flat,0,NaN,,30.71029348,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13330,NJBF000078960,217 ROOSEVELT BLVD SO,Galloway,NJ,39.40863759,-74.36310795,RES1,3001,,17,NE,2011,2011,3102,2,1,1658.13347,1658.13347,3507,NO,38.34,51.87,1,-0.01,6106,115.460862,124.963016,134.891207,140.692792,I,Above,Flat,0,5701,,45.10708749,0,0,,,,1,1,,0.03,nav,1,2011,2,, 13331,NJBF000079446,301 LAFAYETTE PLACE,Galloway,NJ,39.41117842,-74.3678404,RES1,3001,,16,NE,1968,1968,3102,1,1,2051.313889,2051.313889,3507,NO,15.71,29.97,1,-0.52,6106,115.33872,124.847907,134.762272,140.58604,I,Above,Gable,0,5701,,22.84315875,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 13332,NJBF000078356,1000 W BEACH AVE,Galloway,NJ,39.40497048,-74.37138548,RES1,3001,,15,NE,1961,1961,3102,1,1,1661.882506,1661.882506,3505,NO,27.67,34.26,3,8.19,6106,115.332252,124.842364,134.752442,140.608445,I,Above,Flat,0,5701,,30.96562244,0,0,,,,1,1,,0.03,nav,1,1961,1,, 13333,NJBF000080224,204 13TH STREET NO,Galloway,NJ,39.41435439,-74.35611143,RES1,3001,,15,NE,1945,1945,3102,1,1,963.7245903,963.7245903,3507,NO,18.7,23.82,1,1.99,6106,115.541388,125.040214,134.98181,140.732219,I,Above,Hip,0,5701,,21.26107925,0,0,,,,1,1,,0.03,nav,1,1945,1,, 13334,NJBF000080032,107 9TH STREET NO,Galloway,NJ,39.41371231,-74.35957196,RES1,3001,,15,NE,1955,1955,3102,2,1,913.6107321,913.6107321,3507,NO,36.53,41.89,1,1.14,6106,115.478731,124.980389,134.913607,140.685479,I,Above,Hip,0,5701,,39.21050269,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 13335,NJBF000079253,18 GIRARD PLACE,Galloway,NJ,39.4103559,-74.36794235,RES1,3001,,16,NE,1961,1961,3102,2,1,1314.001374,1314.001374,3507,NO,25.39,36.61,1,-0.48,6106,115.345249,124.854128,134.768879,140.594793,I,Above,Hip,0,5701,,31.00113189,0,0,,,,1,1,,0.03,nav,1,1961,2,, 13336,NJBF000080726,15 MACDONALD PLACE,Galloway,NJ,39.41602309,-74.36679943,RES1,3001,,17,NE,1985,1985,3102,1,1,1616.948001,1616.948001,3507,NO,13.43,22.27,1,0.94,6106,115.309489,124.819624,134.732527,140.541543,I,Above,Hip,0,5701,,17.84988806,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13337,NJBF000080685,13 MACDONALD PLACE,Galloway,NJ,39.4159091,-74.36672801,RES1,3001,,16,NE,1979,1979,3102,2,1,1861.486428,1861.486428,3507,NO,29.65,42.33,1,1.77,6106,115.312093,124.82211,134.735293,140.544117,I,Above,Flat,0,5701,,35.99279552,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 13338,NJBF000080536,7 KIRKWOOD CIRCLE,Galloway,NJ,39.41535174,-74.36427787,RES1,3001,,16,NE,1981,1981,3102,2,1,1457.696484,1457.696484,3507,NO,23.04,35.97,1,0.42,6106,115.367154,124.874373,134.794208,140.590276,I,Above,Gable,0,5701,,29.50427518,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 13339,NJBF000080545,600 SHERIDAN BLVD,Galloway,NJ,39.41538287,-74.36559757,RES1,3001,,16,NE,1970,1970,3102,1,1,1493.397857,1493.397857,3507,NO,10.92,18.64,1,-0.69,6106,115.340272,124.848882,134.765365,140.568813,I,Above,Hip,0,5701,,14.77947275,0,0,,,,1,1,,0.03,nav,1,1970,1,, 13340,NJBF000080889,1000 SHERIDAN BLVD,Galloway,NJ,39.41672618,-74.36955856,RES1,3001,,17,NE,1999,1999,3102,1,1,1707.443658,1707.443658,3507,NO,19.89,25.58,1,2.11,6106,115.246639,124.760003,134.665396,140.488344,I,Above,Hip,0,5701,,22.73759188,0,1.1,,,,1,1,,0.03,nav,1,1999,1,, 13341,NJBF000079562,506 LAFAYETTE BLVD,Galloway,NJ,39.41169639,-74.37358253,RES1,3001,,16,NE,1980,1980,3102,1,1,1781.544152,1781.544152,3507,NO,17.68,29.91,1,1.25,6106,115.217118,124.733649,134.633403,140.487783,I,Above,Flat,0,5701,,23.79499562,0,0,,,,1,1,,0.03,nav,1,1980,1,, 13342,NJBF000078603,,Galloway,NJ,39.40644533,-74.36650423,RES1,3001,,NaN,NE,1955,0,3102,2,1,1847.12618,1847.12618,3507,NO,34.08,46.72,1,0.61,6106,115.415502,124.920199,134.841396,140.666781,I,Above,Flat,0,5701,,40.39873191,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13343,NJBF000078585,243 5TH STREET SO,Galloway,NJ,39.40635482,-74.36642046,RES1,3001,,17,NE,1954,1954,3102,2,1,1905.728843,1905.728843,3507,NO,30.43,40.86,1,2.72,6106,115.418155,124.922684,134.844152,140.669234,I,Above,Gable,0,5701,,35.64257423,0,0,,,,1,1,,0.03,nav,1,1954,2,, 13344,NJBF000080306,709 W SHORE DR,Galloway,NJ,39.4146259,-74.38089412,RES1,3001,,15,NE,1963,1963,3103,1,1,1324.0542,1324.0542,3505,NO,20.1,32.02,3,7.47,6106,115.038552,124.565567,134.445191,140.332029,I,Above,Gable,0,5701,,26.06208005,0,0,,,,1,1,,0.03,nav,1,1963,1,, 13345,NJBF000081567,1026 N SHORE DR,Galloway,NJ,39.42031884,-74.37414548,RES1,3001,,17,NE,1989,1989,3102,2,1,3568.271434,3568.271434,3507,NO,21.39,31.94,1,-0.78,6106,115.117565,124.636656,134.527391,140.3683,I,Above,Flat,0,5701,,26.66679584,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 13346,NJBF000079976,545 LAFAYETTE BLVD,Galloway,NJ,39.41354453,-74.37647632,RES1,3001,,16,NE,1964,1964,3103,1,1,1246.121761,1246.121761,3505,NO,14.34,25.72,3,-2.02,6106,115.139358,124.660235,134.551419,140.417547,I,Above,Gable,0,5701,,20.03091922,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 13347,NJBF000078632,200 6TH STREET SO,Galloway,NJ,39.40659581,-74.36837966,RES1,3001,,45,NE,1980,1980,3102,2,2,1293.898002,1293.898002,3507,NO,22.28,32.16,1,0.69,6106,115.375947,124.883127,134.799538,140.635307,I,Above,Flat,0,5701,,27.2179838,0,0,,,,1,1,,0.03,nav,1,1980,2,, 13348,NJBF000078282,,Galloway,NJ,39.40440665,-74.36911712,COM1,3001,,NaN,ME,1969,0,3401,3,1,4312.224088,4312.224088,3507,NO,56.18,62.7,1,1.26,6106,115.384246,124.890887,134.806935,140.651323,I,Above,Flat,0,NaN,,59.44213185,0,0,,,,1,1,,0.03,nav,1,1969,3,, 13349,NJBF000079629,518 LAFAYETTE BLVD,Galloway,NJ,39.41203713,-74.37453053,RES1,3001,,16,NE,1984,1984,3102,1,1,1762.3935,1762.3935,3507,NO,16.81,22.73,1,1.7,6106,115.194365,124.712249,134.609409,140.468215,I,Above,Hip,0,5701,,19.77169701,0,0,,,,1,1,,0.03,nav,1,1984,1,, 13350,NJBF000078745,912 BAYSHORE AVE,Galloway,NJ,39.40729106,-74.37280199,RES1,3001,,17,NE,2001,2001,3102,2,1,1672.419552,1672.419552,3507,NO,34.27,42.34,1,2.62,6106,115.278965,124.79242,134.69742,140.556478,I,Above,Hip,0,5701,,38.30414211,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 13351,NJBF000079246,203 E BEACH AVE,Galloway,NJ,39.4103112,-74.3635574,RES1,3001,,15,NE,1955,1955,3101,1,1,922.2011863,922.2011863,3507,NO,18.58,28.72,1,0.74,6106,115.4342,124.93796,134.863761,140.664817,I,Above,Hip,0,5701,,23.65050047,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13352,NJBF000082706,111 MINNETONKA AVE,Galloway,NJ,39.43260033,-74.51603494,RES1,3001,,17,NE,1972,1972,3102,2,1,1629.900493,1629.900493,3505,NO,36.72,44.94,3,1.09,6110,112.094721,121.908817,131.508498,137.63571,I,Above,Gable,0,5701,,40.82934335,0,0,,,,1,1,,0.35,nav,1,1972,2,, 13353,NJBF000082537,420 N SHORE RD,Galloway,NJ,39.43009737,-74.49185665,RES1,3001,282,NaN,NE,1920,0,3102,2,1,527.1099983,527.1099983,3507,NO,25.74,33.73,1,2.19,6112,112.607184,122.359105,132.001612,138.144494,I,Above,Hip,0,5701,,29.73515441,0,0,,,,1,1,,0.35,nav,1,1920,2,, 13354,NJBF000082428,715 OHIO AVE,Galloway,NJ,39.42981448,-74.51380925,RES1,3001,,17,NE,1985,1985,3102,2,1,1608.522035,1608.522035,3505,NO,29.26,38.51,3,5.58,6106,112.156625,121.976132,131.582523,137.723329,I,Above,Gable,0,5701,,33.88473877,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13355,NJBF000082502,818 OHIO AVE,Galloway,NJ,39.43047422,-74.51399594,RES1,3001,,17,NE,1925,1925,3102,1,1,2003.421614,2003.421614,3505,NO,18.16,23.91,3,3.13,6110,112.148838,121.966091,131.571438,137.709258,I,Above,Hip,0,5701,,21.0338884,0,0,,,,1,1,,0.35,nav,1,1925,1,, 13356,NJBF000082451,742 OHIO AVE,Galloway,NJ,39.43007115,-74.51312999,RES1,3001,739,NaN,NE,1969,0,3102,2,1,2285.144253,2285.144253,3505,NO,30.3,35.48,3,8.67,6110,112.169012,121.985313,131.592519,137.732586,I,Above,Gable,0,5701,,32.89261164,0,0,,,,1,1,,0.35,nav,1,1969,2,, 13357,NJBF000082419,103 CANNON AVE,Galloway,NJ,39.42973567,-74.51163447,RES1,3001,,17,NE,2004,2004,3102,2,1,1442.02093,1442.02093,3505,NO,30.58,42.98,3,-0.56,6112,112.201765,122.014839,131.624854,137.767154,I,Above,Gable,0,5701,,36.78085421,0,0,,,,1,1,,0.35,nav,1,2004,2,, 13358,NJBF000082302,622 OHIO AVE,Galloway,NJ,39.42880913,-74.51070645,RES1,3001,,17,NE,1952,1952,3102,1,1,952.86615,952.86615,3505,NO,21.44,34.43,3,6.25,6112,112.226572,122.040588,131.653153,137.7999,I,Above,Flat,0,5701,,27.93776776,0,0,,,,1,1,,0.35,nav,1,1952,1,, 13359,NJBF000079546,111 HAMILTON PLACE,Galloway,NJ,39.41161883,-74.3619575,RES1,3001,,43,NE,1962,1962,3102,2,2,1161.368342,1161.368342,3507,NO,34.99,40.79,1,2.81,6106,115.452673,124.955499,134.884335,140.673764,I,Above,Gable,0,5701,,37.89210178,0,0,,,,1,1,,0.03,nav,1,1962,2,, 13360,NJBF000078562,134 10TH STREET SO,Galloway,NJ,39.40620101,-74.37259844,RES1,3001,,NaN,NE,1946,1946,3102,2,1,1432.98221,1432.98221,3505,NO,37.54,51.78,3,-1.38,6106,115.294595,124.807148,134.713412,140.573603,I,Above,Hip,0,5701,,44.65801672,0,0,,,,1,1,,0.03,nav,1,1946,2,, 13361,NJBF000079510,446 LAFAYETTE BLVD,Galloway,NJ,39.4114513,-74.37269805,RES1,3001,,16,NE,1973,1973,3102,2,1,2870.939932,2870.939932,3507,YES,25.66,33.3,1,-0.26,6106,115.237597,124.752895,134.655015,140.505084,I,Above,Flat,0,5701,,29.47709896,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 13362,NJBF000080304,601 BOBBY JONES RD,Galloway,NJ,39.41462328,-74.37901493,RES1,3001,,16,NE,1972,1972,3103,2,1,1285.464273,1285.464273,3505,YES,37.67,48.77,3,8.01,6106,115.076769,124.601232,134.485366,140.362566,I,Above,Flat,0,5701,,43.22128055,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13363,NJBF000080592,31 KIRKWOOD CIRCLE,Galloway,NJ,39.41555978,-74.36301838,RES1,3001,,16,NE,1982,1982,3102,2,1,2090.07982,2090.07982,3507,NO,26.48,36.12,1,-0.39,6106,115.390334,124.896365,134.819206,140.607761,I,Above,Gable,0,5701,,31.30114536,0,0,,,,1,1,,0.03,nav,1,1982,2,, 13364,NJBF000080556,4 VARDON RD,Galloway,NJ,39.41543744,-74.37275622,RES1,3001,,16,NE,1979,1979,3102,2,1,1146.387179,1146.387179,3507,NO,36.22,44.74,1,2.63,6106,115.195288,124.711985,134.610631,140.453268,I,Above,Gable,0,5701,,40.47620165,0,0,,,,1,1,,0.03,nav,1,1979,2,, 13365,NJBF000080785,140 WASHINGTON DR,Galloway,NJ,39.41629211,-74.3694924,RES1,3001,,16,NE,1969,1969,3102,1,1,1105.578206,1105.578206,3507,NO,18.11,30.81,1,1.03,6106,115.252442,124.765605,134.671554,140.494925,I,Above,Hip,0,5701,,24.45919502,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13366,NJBF000080371,708 BOBBY JONES RD,Galloway,NJ,39.4148725,-74.38072136,RES1,3001,,16,NE,1970,1970,3103,1,1,1448.602998,1448.602998,3505,NO,17.39,26.37,3,3,6106,115.039552,124.566359,134.446184,140.331629,I,Above,Gable,0,5701,,21.88002298,0,0,,,,1,1,,0.03,nav,1,1970,1,, 13367,NJBF000081095,1312 VARDON RD,Galloway,NJ,39.41751941,-74.37454972,RES1,3001,,16,NE,1965,1965,3102,1,1,1661.221605,1661.221605,3507,NO,13.05,23.24,1,-0.17,6106,115.137744,124.65701,134.549397,140.397625,I,Above,Gable,0,5701,,18.14446401,0,0,,,,1,1,,0.03,nav,1,1965,1,, 13368,NJBF000081146,,Galloway,NJ,39.41776018,-74.36856772,RES1,3001,,NaN,NE,1969,0,3102,2,1,2439.229116,2439.229116,3507,NO,24.84,37.47,1,2.38,6106,115.256029,124.768602,134.675513,140.491192,I,Above,Gable,0,5701,,31.15023956,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13369,NJBF000081705,,Galloway,NJ,39.42207729,-74.36749236,RES1,3001,,NaN,NE,1969,0,3102,2,1,1856.141559,1856.141559,3507,NO,25.69,33.52,1,-0.98,6106,115.233779,124.746157,134.651561,140.453975,I,Above,Hip,0,5701,,29.60639634,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13370,NJBF000080695,48 KIRKWOOD CIRCLE,Galloway,NJ,39.415942,-74.3625895,RES1,3001,,16,NE,2016,2016,3102,3,1,1395.43686,1395.43686,3507,NO,35.78,48.26,1,0.41,6106,115.395002,124.900781,134.824372,140.609824,I,Above,Gable,0,5701,,42.02305662,0,0,,,,1,1,,0.03,nav,1,2016,3,, 13371,NJBF000078609,1018 BAYSHORE AVE,Galloway,NJ,39.40647679,-74.37316804,RES1,3001,,17,NE,1968,1968,3102,2,1,1413.218588,1413.218588,3507,NO,34.47,47.33,1,2.89,6106,115.280105,124.793607,134.698283,140.561046,I,Above,Gable,0,5701,,40.89956922,0,0,,,,1,1,,0.03,nav,1,1968,2,, 13372,NJBF000081502,1008 N SHORE DR,Galloway,NJ,39.41965273,-74.37569523,RES1,3001,,16,NE,1955,1955,3103,1,1,2211.873562,2211.873562,3505,NO,19.63,32.01,3,3.66,6106,115.092975,124.613802,134.501403,140.351608,I,Above,Flat,0,5701,,25.81779063,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13373,NJBF000081227,839 W SHORE DR,Galloway,NJ,39.41815175,-74.38136557,RES1,3001,,16,NE,1972,1972,3103,2,1,1043.099347,1043.099347,3505,YES,35.55,49.06,3,2.17,6106,114.993236,124.521064,134.396418,140.278447,I,Above,Gable,0,5701,,42.30803197,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13374,NJBF000081491,1017 N SHORE DR,Galloway,NJ,39.4195178,-74.37478841,RES1,3001,,17,NE,1988,1988,3102,2,1,1925.28306,1925.28306,3507,NO,22.82,33.97,1,0.56,6106,115.112667,124.632435,134.522372,140.36811,I,Above,Hip,0,5701,,28.39636928,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 13375,NJBF000083376,740 VILLAGE DR,Galloway,NJ,39.44322408,-74.46983655,RES1,3001,,16,NE,1994,1994,3102,2,1,2019.530047,2019.530047,3505,NO,25.48,38.99,3,1.45,6112,112.965403,122.615172,132.283318,138.361406,I,Above,Gable,0,5701,,32.23441539,0,1.1,,,,1,1,,0.35,nav,1,1994,2,, 13376,NJBF000083325,,Galloway,NJ,39.44233518,-74.47290339,RES1,3001,,NaN,NE,1983,0,3102,2,1,3012.913221,3012.913221,3505,NO,25.84,38.95,3,-2.81,6112,112.909568,122.569341,132.232899,138.316922,I,Above,Gable,0,5701,,32.39573733,0,0,,,,1,1,,0.35,nav,1,1983,2,, 13377,NJBF000083992,744 CHANESE LN,Galloway,NJ,39.45286114,-74.45961657,RES1,3001,,16,NE,1960,1960,3102,1,1,1026.852346,1026.852346,3505,NO,12.97,26.78,3,-0.24,6106,113.102107,122.697919,132.374968,138.409444,I,Above,Gable,0,5701,,19.87433824,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13378,NJBF000084776,211 S NEW YORK RD,Galloway,NJ,39.469022,-74.4640765,RES1,3001,,16,NE,1886,1886,3102,1,1,552.5263856,552.5263856,3505,NO,19.28,33.08,3,6.7,6106,112.903663,122.443506,132.097802,138.083531,I,Above,Gable,0,5701,,26.18351936,0,0,,,,1,1,,0.03,nav,1,1886,1,, 13379,NJBF000087114,341 N NEW YORK RD,Galloway,NJ,39.5252775,-74.46143,RES1,3001,,16,NE,1994,1994,3101,1,1,810.3606802,810.3606802,3505,NO,25.85,33.43,3,7.26,6110,112.605182,121.855537,131.465007,137.298255,I,Above,Gable,0,5701,,29.64260417,0,0,,,,1,1,,0.35,nav,1,1994,1,, 13380,NJBF000084774,200 S NEW YORK RD,Galloway,NJ,39.46900881,-74.46174286,RES1,3001,565,NaN,NE,1921,1921,3102,2,2,3103.592067,3103.592067,3505,NO,34.89,47.55,3,2.36,6112,112.949083,122.485859,132.143944,138.128575,I,Above,Hip,0,5701,,41.22207313,0,0,,,,1,1,,0.35,nav,1,1921,2,, 13381,NJBF000083516,721 OCEAN AVE,Galloway,NJ,39.44633567,-74.46965094,RES1,3001,,16,NE,1956,1956,3102,1,1,1100.939819,1100.939819,3505,NO,24.83,33.83,3,8.89,6112,112.947082,122.585614,132.251144,138.317807,I,Above,Hip,0,5701,,29.33030113,0,0,,,,1,1,,0.35,nav,1,1956,1,, 13382,NJBF000083489,723 BELMAR AVE,Galloway,NJ,39.4456285,-74.469773,RES1,3001,,16,NE,1930,1930,3102,1,1,1542.12324,1542.12324,3505,NO,17.11,31.95,3,5.51,6110,112.949614,122.590908,132.256889,138.326211,I,Above,Gable,0,5701,,24.52837905,0,0,,,,1,1,,0.35,nav,1,1930,1,, 13383,NJBF000083484,725 BELMAR AVE,Galloway,NJ,39.44556327,-74.46947749,RES1,3001,,16,NE,1956,1956,3102,1,1,1903.181054,1903.181054,3505,NO,10.16,24.06,3,-1.16,6106,112.956047,122.596933,132.263498,138.332796,I,Above,Gable,0,5701,,17.11070422,0,0,,,,1,1,,0.03,nav,1,1956,1,, 13384,NJBF000083288,561 BROOK LN,Galloway,NJ,39.44116348,-74.48049571,RES1,3001,,16,NE,1998,1998,3102,1,1,1865.611148,1865.611148,3505,NO,27.1,37.78,3,8.15,6110,112.763655,122.445553,132.096895,138.190546,I,Above,Gable,0,5701,,32.43934593,0,0,,,,1,1,,0.35,nav,1,1998,1,, 13385,NJBF000084011,749 CHANESE LN,Galloway,NJ,39.45306588,-74.45886201,RES1,3001,,16,NE,1972,1972,3102,1,1,2356.864614,2356.864614,3505,NO,23.2,31.57,3,7.12,6106,113.115715,122.709462,132.387649,138.420628,I,Above,Gable,0,5701,,27.38189433,0,0,,,,1,1,,0.03,nav,1,1972,1,, 13386,NJBF000083420,731 VILLAGE DR,Galloway,NJ,39.44379599,-74.47089606,RES1,3001,,16,NE,1990,1990,3102,2,1,2754.121273,2754.121273,3505,NO,36.67,49.26,3,7.16,6112,112.939882,122.590042,132.255767,138.332716,I,Above,Gable,0,5701,,42.96601736,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 13387,NJBF000083345,529 S NEW YORK RD,Galloway,NJ,39.44275733,-74.47802367,COM1,3003,562,NaN,ME,1992,1992,3401,2,1,3439.636383,3439.636383,3507,NO,26.82,35.75,1,-0.02,6112,112.802825,122.472991,132.127159,138.213243,I,Above,Gable,0,NaN,,31.28504917,0,0,,,,1,1,,0.35,nav,1,1992,2,, 13388,NJBF000086191,661 MOTTS CREEK RD,Galloway,NJ,39.51567317,-74.44340613,RES1,3001,,16,NE,1956,1991,3102,2,1,1788.473591,1788.473591,3507,NO,33.21,47.46,1,1.92,6112,112.988235,122.296246,131.931852,137.800664,I,Above,Flat,0,5701,,40.33094821,0,0,,,,1,1,,0.03,nav,1,1956,2,, 13389,NJBF000083298,534 BROOK LN,Galloway,NJ,39.44148527,-74.48531255,RES1,3001,,16,NE,1996,1996,3102,1,1,2945.727775,2945.727775,3505,NO,26.66,39.16,3,7.44,6112,112.663785,122.356272,131.99897,138.093503,I,Above,Gable,0,5701,,32.90891444,0,0,,,,1,1,,0.35,nav,1,1996,1,, 13390,NJBF000084753,708 GREAT CREEK RD,Galloway,NJ,39.46876173,-74.46072905,RES1,3001,,16,NE,1964,1964,3102,1,1,1603.821123,1603.821123,3505,NO,23.73,34.79,3,7.45,6110,112.970438,122.506907,132.166871,138.151703,I,Above,Gable,0,5701,,29.26082046,0,0,,,,1,1,,0.03,nav,1,1964,1,, 13391,NJBF000084079,720 CHANESE LN,Galloway,NJ,39.45443382,-74.46227221,RES1,3001,,16,NE,1957,1957,3102,1,1,1069.658232,1069.658232,3505,NO,15.94,24,3,-2.65,6110,113.038019,122.632943,132.303797,138.335772,I,Above,Gable,0,5701,,19.96814861,0,0,,,,1,1,,0.35,nav,1,1957,1,, 13392,NJBF000086938,266 KINGS HIGHWAY,Galloway,NJ,39.52213918,-74.45442624,RES1,3001,,16,NE,1961,1961,3101,1,1,1332.208145,1332.208145,3505,NO,9.68,21.6,3,-2.2,6106,112.748675,122.018877,131.63694,137.485694,I,Above,Gable,0,5701,,15.63722987,0,1.2,,,,1,1,,0.03,nav,1,1961,1,, 13393,NJBF000086928,266 KINGS HIGHWAY,Galloway,NJ,39.52190251,-74.45478831,RES1,3001,,16,NE,1961,1961,3101,1,1,758.567134,758.567134,3505,NO,21.59,30.16,3,7.08,6106,112.743679,122.015115,131.633088,137.48194,I,Above,Flat,0,5701,,25.87776046,0,1.2,,,,1,1,,0.03,nav,1,1961,1,, 13394,NJBF000086677,885 MOTTS CREEK RD,Galloway,NJ,39.51737065,-74.43857045,RES1,3001,,15,NE,1946,1946,3102,1,1,1005.720738,1005.720738,3507,NO,14.67,29.61,1,1.09,6106,113.064739,122.365638,132.004339,137.871928,I,Above,Flat,0,5701,,22.14116168,0,0,,,,1,1,,0.03,nav,1,1946,1,, 13395,NJBF000086639,853 MOTTS CREEK RD,Galloway,NJ,39.51637271,-74.44142606,RES1,3001,,17,NE,1966,1966,3102,2,1,690.6656207,690.6656207,3507,NO,23.08,31.82,1,0.84,6106,113.019555,122.324541,131.961424,137.82976,I,Above,Gable,0,5701,,27.45064382,0,0,,,,1,1,,0.03,nav,1,1966,2,, 13396,NJBF000085950,47-49 OYSTER CREEK RD,Galloway,NJ,39.50570025,-74.41689621,GOV1,3001,739,NaN,E,1969,0,3401,2,1,850.8756211,850.8756211,3502,NO,29.68,44.61,5,2.53,6106,113.54508,122.908595,132.590312,138.463306,I,Above,Hip,0,NaN,,37.1440003,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13397,NJBF000084493,360 N NEW YORK RD,Galloway,NJ,39.46385842,-74.450589,RES1,3001,,NaN,NE,1969,0,3102,5,1,4155.810288,4155.810288,3505,NO,71.35,81.18,3,-0.57,6112,113.202528,122.74473,132.426571,138.417313,I,Above,Gable,0,5701,,76.26531742,0,0,,,,1,1,,0.7,nav,1,1969,5,, 13398,NJBF000087272,360 N NEW YORK RD,Galloway,NJ,39.529278,-74.460127,RES1,3001,,NaN,NE,1969,0,3101,5,1,2714.085194,2714.085194,3505,NO,52.33,66.51,3,-1.64,6106,112.604104,121.831194,131.438219,137.264659,I,Above,Hip,0,5701,,59.41718643,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13399,NJBF000087280,360 N NEW YORK RD,Galloway,NJ,39.5295965,-74.460543,RES1,3001,,NaN,NE,1969,0,3101,5,1,1641.683963,1641.683963,3505,NO,92.16,99.29,3,8.19,6106,112.594886,121.819932,131.426393,137.2515,I,Above,Gable,0,5701,,95.72429062,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13400,NJBF000087294,360 N NEW YORK RD,Galloway,NJ,39.5300925,-74.46061533,RES1,3001,,NaN,NE,1969,0,3101,5,1,2042.47267,2042.47267,3505,NO,90.18,98.6,3,-1.26,6106,112.590636,121.812686,131.418674,137.242601,I,Above,Gable,0,5701,,94.38991715,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13401,NJBF000087306,360 N NEW YORK RD,Galloway,NJ,39.53041988,-74.46044022,RES1,3001,,NaN,NE,1969,0,3101,5,1,1773.053714,1773.053714,3505,NO,101.71,106.94,3,8.83,6110,112.591739,121.811898,131.417726,137.241235,I,Above,Gable,0,5701,,104.3235077,0,0,,,,1,1,,1,nav,1,1969,5,, 13402,NJBF000085874,360 N NEW YORK RD,Galloway,NJ,39.50469576,-74.41514726,GOV1,3001,,NaN,E,1969,0,3401,5,1,1612.67846,1612.67846,3502,NO,88.62,97.91,5,-3.38,6106,113.585066,122.95343,132.639177,138.511124,I,Above,Flat,0,5701,,93.26229511,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13403,NJBF000085872,360 N NEW YORK RD,Galloway,NJ,39.50463858,-74.41494869,GOV1,3001,,NaN,E,1969,0,3401,5,1,928.3097136,928.3097136,3502,NO,66.34,75.08,5,-2.81,6106,113.589179,122.957859,132.643977,138.515742,I,Above,Gable,0,5701,,70.70967167,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13404,NJBF000085849,360 N NEW YORK RD,Galloway,NJ,39.5042685,-74.41474567,GOV1,3001,,NaN,E,1969,0,3401,5,1,974.0563882,974.0563882,3502,NO,65.37,73.86,5,-3.89,6106,113.595712,122.965965,132.652959,138.524804,I,Above,Flat,0,5701,,69.6116962,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13405,NJBF000085842,360 N NEW YORK RD,Galloway,NJ,39.50414865,-74.41467684,GOV1,3001,,NaN,E,1969,0,3401,5,1,1505.494767,1505.494767,3502,NO,77.08,84.02,5,7.22,6106,113.597891,122.968653,132.655937,138.527803,I,Above,Gable,0,5701,,80.54994691,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13406,NJBF000085827,360 N NEW YORK RD,Galloway,NJ,39.503866,-74.4144045,GOV1,3001,,NaN,E,1969,0,3401,5,1,1085.920017,1085.920017,3502,NO,59.32,72.17,5,-3.42,6106,113.605071,122.977078,132.665202,138.536982,I,Above,Flat,0,5701,,65.74126669,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13407,NJBF000085824,360 N NEW YORK RD,Galloway,NJ,39.50379209,-74.41415861,GOV1,3001,,NaN,E,1969,0,3401,5,1,895.6009346,895.6009346,3502,NO,66.6,81.06,5,-3.29,6106,113.610213,122.98262,132.671214,138.542753,I,Above,Flat,0,5701,,73.82813836,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13408,NJBF000085822,360 N NEW YORK RD,Galloway,NJ,39.50376896,-74.41398323,GOV1,3001,,NaN,E,1969,0,3401,5,1,744.1235749,744.1235749,3502,NO,75.76,84.85,5,2.68,6106,113.61367,122.986244,132.675126,138.546466,I,Above,Hip,0,5701,,80.30405725,0,0,,,,1,1,,0.03,nav,1,1969,5,, 13409,NJBF000083302,530 BROOK LN,Galloway,NJ,39.44159138,-74.48566998,RES1,3001,,16,NE,1975,1975,3102,1,1,2863.026788,2863.026788,3505,NO,25.72,39.9,3,7.66,6112,112.655847,122.348808,131.990794,138.085026,I,Above,Gable,0,5701,,32.8122871,0,0,,,,1,1,,0.35,nav,1,1975,1,, 13410,NJBF000086589,819 MOTTS CREEK RD,Galloway,NJ,39.5154315,-74.4465555,RES1,3001,,15,NE,1950,1950,3102,1,1,687.6896781,687.6896781,3507,NO,15.64,21.53,1,1.6,6106,112.932691,122.241209,131.873777,137.741643,I,Above,Hip,0,5701,,18.58478859,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13411,NJBF000079474,438 LAFAYETTE BLVD,Galloway,NJ,39.41131367,-74.37209802,RES1,3001,,16,NE,1983,1983,3102,3,1,1640.637074,1640.637074,3507,NO,44.22,52.62,1,2.5,6106,115.251175,124.765653,134.669357,140.516427,I,Above,Flat,0,5701,,48.4223921,0,1.1,,,,1,1,,0.03,nav,1,1983,3,, 13412,NJBF000078586,250 4TH STREET SO,Galloway,NJ,39.40635625,-74.36592477,RES1,3001,,20,NE,2017,2017,3102,3,1,868.3857723,868.3857723,3507,NO,43.77,55.24,1,0.89,6106,115.428151,124.932064,134.854771,140.677011,I,Above,Gable,0,5701,,49.50624829,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 13413,NJBF000077181,212 26TH STREET SO,Galloway,NJ,39.39709022,-74.38236233,RES1,3001,,18,NE,1956,1956,3102,2,1,1832.182543,1832.182543,3507,NO,33.66,39.93,1,2.44,6106,115.192513,124.714259,134.602551,140.536373,I,Above,Hip,0,5701,,36.79646247,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 13414,NJBF000079370,429 RISLEY RD,Galloway,NJ,39.41084732,-74.37134668,RES1,3001,,15,NE,1984,1984,3102,2,1,1500.033738,1500.033738,3507,NO,26.64,35.47,1,2.73,6106,115.271244,124.784568,134.69049,140.534366,I,Above,Gable,0,5701,,31.0550559,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 13415,NJBF000079066,215 2ND STREET NO,Galloway,NJ,39.40928643,-74.36271143,RES1,3001,,43,NE,1974,1974,3102,2,2,1042.922863,1042.922863,3507,NO,36.51,50.06,1,1.89,6106,115.462027,124.964173,134.892892,140.690961,I,Above,Gable,0,5701,,43.28627539,0,0,,,,1,1,,0.03,nav,1,1974,2,, 13416,NJBF000081470,1013 N SHORE DR,Galloway,NJ,39.41939852,-74.37510638,RES1,3001,,17,NE,1984,1984,3103,2,1,1509.513151,1509.513151,3505,NO,26.91,35.57,3,2.01,6106,115.107444,124.627571,134.516847,140.364463,I,Above,Gable,0,5701,,31.23907598,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13417,NJBF000079941,,Galloway,NJ,39.4134075,-74.35611726,RES3C,3001,,NaN,E,1969,0,3303,3,1,4745.849978,4745.849978,3507,NO,42.75,56.47,1,-0.2,6106,115.551167,125.049379,134.991759,140.743779,I,Above,Flat,0,NaN,,49.60922637,0,0,,,,1,1,,0.03,nav,1,1969,3,, 13418,NJBF000079145,,Galloway,NJ,39.40981584,-74.36208344,RES1,3001,,NaN,NE,2017,0,3102,2,1,1532.060375,1532.060375,3507,NO,34.66,42.55,1,2.82,6106,115.46909,124.970896,134.900812,140.694251,I,Above,Flat,0,5701,,38.60532802,0,0,,,,1,1,,0.03,nav,1,2017,2,, 13419,NJBF000080389,717 W SHORE DR,Galloway,NJ,39.41490116,-74.38151108,RES1,3001,,18,NE,2003,2003,3103,2,1,2041.986261,2041.986261,3505,NO,37.33,50.13,3,2.41,6106,115.023203,124.5511,134.429013,140.318418,I,Above,Gable,0,5701,,43.72991781,0,0,,,,1,1,,0.03,nav,1,2003,2,, 13420,NJBF000080822,14 MACDERMOTT PLACE,Galloway,NJ,39.41646853,-74.36645967,RES1,3001,,16,NE,1984,1984,3102,1,1,1570.958258,1570.958258,3507,NO,18.53,31.59,1,1.71,6106,115.311724,124.821662,134.735016,140.541354,I,Above,Flat,0,5701,,25.06182968,0,0,,,,1,1,,0.03,nav,1,1984,1,, 13421,NJBF000079894,110 9TH STREET NO,Galloway,NJ,39.41326197,-74.35972734,RES1,3001,,15,NE,1955,1955,3102,2,1,1161.921972,1161.921972,3507,NO,32.48,44.57,1,2.38,6106,115.480318,124.981858,134.915055,140.688608,I,Above,Gable,0,5701,,38.5252334,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13422,NJBF000081536,1107 E SHORE DR,Galloway,NJ,39.41995068,-74.36281916,RES1,3001,,19,NE,2011,2011,3102,3,1,1446.382913,1446.382913,3507,NO,32.51,42.25,1,0.94,6106,115.349175,124.856722,134.775989,140.556051,I,Above,Flat,0,5701,,37.38320503,0,0,,,,1,1,,0.03,nav,1,2011,3,, 13423,NJBF000078822,100 SHERIDAN SQUARE,Galloway,NJ,39.40777001,-74.37061038,RES1,3001,,43,NE,1952,1952,3102,2,2,1469.178504,1469.178504,3507,NO,30.52,41.72,1,-0.62,6106,115.318389,124.829185,134.739239,140.585175,I,Above,Hip,0,5701,,36.12143635,0,0,,,,1,1,,0.03,nav,1,1952,2,, 13424,NJBF000082323,703 OHIO AVE,Galloway,NJ,39.42900199,-74.51224449,RES1,3001,,17,NE,1959,1959,3102,2,1,712.2971054,712.2971054,3505,NO,20.25,32.03,3,-1.24,6106,112.193715,122.011757,131.621605,137.766784,I,Above,Gable,0,5701,,26.13734251,0,0,,,,1,1,,0.03,nav,1,1959,2,, 13425,NJBF000082720,113 MINNETONKA AVE,Galloway,NJ,39.43279049,-74.51629949,RES1,3001,,17,NE,1975,1975,3102,1,1,1335.536657,1335.536657,3505,NO,12.02,25.45,3,-2.78,6110,112.088254,121.902287,131.50133,137.627524,I,Above,Gable,0,5701,,18.73383984,0,0,,,,1,1,,0.35,nav,1,1975,1,, 13426,NJBF000078719,214 4TH STREET SO,Galloway,NJ,39.40714431,-74.36669255,RES1,3001,,16,NE,1950,1950,3102,1,1,1185.322113,1185.322113,3507,NO,18.69,28.99,1,0.85,6106,115.404281,124.909692,134.82993,140.655018,I,Above,Gable,0,5701,,23.84114597,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13427,NJBF000080212,1200 E BEACH AVE,Galloway,NJ,39.4143017,-74.35670235,RES1,3001,,16,NE,1950,1950,3102,3,1,2070.043508,2070.043508,3507,NO,54.65,66.3,1,0.6,6106,115.5301,125.029424,134.969534,140.723535,I,Above,Flat,0,5701,,60.47751291,0,1.2,,,,1,1,,0.03,nav,1,1950,3,, 13428,NJBF000076498,317 32ND STREET SO,Galloway,NJ,39.3936517,-74.38513419,RES1,3001,,15,NE,1955,1955,3102,1,1,1517.007634,1517.007634,3507,NO,19.87,28.9,1,1.64,6106,115.172837,124.696879,134.580389,140.537437,I,Above,Flat,0,5701,,24.38151091,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13429,NJBF000079625,2 HAMILTON PLACE,Galloway,NJ,39.41202514,-74.36629968,RES1,3001,,18,NE,2008,2008,3102,3,1,1674.626751,1674.626751,3507,NO,39.04,47.2,1,2.06,6106,115.360969,124.868799,134.786342,140.599853,I,Above,Gable,0,5701,,43.11644912,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 13430,NJBF000079554,210 8TH STREET NO,Galloway,NJ,39.41166565,-74.35891508,RES1,3001,,15,NE,1951,1951,3102,1,1,1272.764352,1272.764352,3507,NO,18.36,28.63,1,2.89,6106,115.513326,125.013045,134.949622,140.721195,I,Above,Hip,0,5701,,23.49742913,0,0,,,,1,1,,0.03,nav,1,1951,1,, 13431,NJBF000076450,336 31ST STREET SO,Galloway,NJ,39.39346275,-74.38435973,RES1,3001,,15,NE,1955,1955,3102,1,1,1163.576498,1163.576498,3507,NO,15.25,23.07,1,-0.45,6106,115.190834,124.713281,134.598684,140.552046,I,Above,Hip,0,5701,,19.16074366,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13432,NJBF000082499,107 WEILER LANE EAST,Galloway,NJ,39.43043199,-74.48512918,RES1,3001,,17,NE,1984,1984,3102,2,1,1878.951403,1878.951403,3507,NO,38,43.89,1,1.6,6106,112.743912,122.475328,132.129013,138.267716,I,Above,Hip,0,5701,,40.94279659,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 13433,NJBF000079208,,Galloway,NJ,39.41015007,-74.37113981,RES1,3001,,NaN,NE,1976,0,3102,2,1,1139.118768,1139.118768,3507,NO,33.76,44.07,1,2.36,6106,115.282705,124.795441,134.702415,140.546529,I,Above,Hip,0,5701,,38.91676539,0,0,,,,1,1,,0.03,nav,1,1976,2,, 13434,NJBF000078539,712 W BEACH AVE,Galloway,NJ,39.40607001,-74.36943281,RES1,3001,,43,NE,1957,1957,3102,2,2,1003.812453,1003.812453,3505,NO,34.18,47.44,3,1.65,6106,115.360186,124.868391,134.782549,140.625329,I,Above,Hip,0,5701,,40.80950309,0,0,,,,1,1,,0.03,nav,1,1957,2,, 13435,NJBF000078496,127 11TH STREET SO,Galloway,NJ,39.40583069,-74.37272784,RES1,3001,,16,NE,2016,2016,3102,2,1,1300.031772,1300.031772,3505,NO,39.78,49.54,3,3.75,6106,115.295863,124.808375,134.714574,140.576255,I,Above,Hip,0,5701,,44.65849943,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 13436,NJBF000078501,174 9TH STREET SO,Galloway,NJ,39.40587693,-74.37115825,RES1,3001,,16,NE,1950,1950,3102,3,1,1696.078083,1696.078083,3505,NO,39.82,47.31,3,6.39,6106,115.32725,124.837636,134.747664,140.600519,I,Above,Gable,0,5701,,43.56510288,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 13437,NJBF000079284,430 RISLEY RD,Galloway,NJ,39.41049081,-74.37152637,RES1,3001,,17,NE,1989,1989,3102,1,1,1810.033031,1810.033031,3507,NO,16.57,31.11,1,-0.7,6106,115.271329,124.784717,134.690475,140.536039,I,Above,Gable,0,5701,,23.83855574,0,1.1,,,,1,1,,0.03,nav,1,1989,1,, 13438,NJBF000079074,100 W BEACH AVE,Galloway,NJ,39.40934101,-74.36481333,RES1,3001,,16,NE,1962,1962,3102,1,1,1442.690727,1442.690727,3507,NO,15.69,25.54,1,-0.69,6106,115.419074,124.923657,134.847022,140.657114,I,Above,Hip,0,5701,,20.61404483,0,0,,,,1,1,,0.03,nav,1,1962,1,, 13439,NJBF000076662,,Galloway,NJ,39.39424669,-74.39874372,RES1,3001,,NaN,NE,1969,0,3102,2,1,2470.243505,2470.243505,3505,NO,21.57,29.03,3,0.55,6106,114.884794,124.436445,134.288706,140.313935,I,Above,Gable,0,5701,,25.29990357,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13440,NJBF000078448,223 8TH STREET SO,Galloway,NJ,39.40557579,-74.36908643,RES1,3001,,15,NE,1950,1950,3102,1,1,1041.484045,1041.484045,3505,NO,10.83,23.51,3,-1.06,6106,115.372452,124.87987,134.795224,140.637047,I,Above,Gable,0,5701,,17.17126125,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13441,NJBF000076472,332 31ST STREET SO,Galloway,NJ,39.39355282,-74.3844461,RES1,3001,,15,NE,1955,1955,3102,1,1,1239.941925,1239.941925,3507,NO,17.76,22.86,1,2.1,6106,115.188081,124.710763,134.595924,140.549526,I,Above,Hip,0,5701,,20.30887263,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 13442,NJBF000080808,26 MACDONALD PLACE,Galloway,NJ,39.41641597,-74.36733874,RES1,3001,,17,NE,1988,1988,3102,2,1,1850.931589,1850.931589,3507,NO,31.05,43.76,1,1.87,6106,115.294568,124.805419,134.716621,140.52793,I,Above,Gable,0,5701,,37.40565328,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 13443,NJBF000080651,30 11TH STREET NO,Galloway,NJ,39.41577518,-74.36036742,RES1,3001,,16,NE,1956,1956,3102,1,1,1690.691482,1690.691482,3507,NO,19.84,31.58,1,1.91,6106,115.441332,124.944884,134.874285,140.647265,I,Above,Gable,0,5701,,25.71077022,0,0,,,,1,1,,0.03,nav,1,1956,1,, 13444,NJBF000079424,111 PUTNAM PLACE,Galloway,NJ,39.4110809,-74.36253721,RES1,3001,,16,NE,1954,1954,3102,1,1,800.3036596,800.3036596,3507,NO,10.97,21.78,1,-0.03,6106,115.446661,124.949776,134.877565,140.67132,I,Above,Flat,0,5701,,16.37239103,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 13445,NJBF000079399,113 PUTNAM PLACE,Galloway,NJ,39.410981,-74.3624085,RES1,3001,,16,NE,1956,1956,3102,1,1,1035.075625,1035.075625,3507,NO,17.39,26.04,1,2.73,6106,115.450286,124.9532,134.881393,140.674589,I,Above,Hip,0,5701,,21.7114698,0,0,,,,1,1,,0.03,nav,1,1956,1,, 13446,NJBF000079684,526 LAFAYETTE BLVD,Galloway,NJ,39.41232561,-74.37512598,RES1,3001,,16,NE,1984,1984,3103,2,1,1270.225229,1270.225229,3505,NO,40.39,48.65,3,5.85,6106,115.179309,124.698066,134.59354,140.454952,I,Above,Gable,0,5701,,44.52180255,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13447,NJBF000079670,524 LAFAYETTE BLVD,Galloway,NJ,39.41225492,-74.37496937,RES1,3001,,16,NE,1980,1980,3102,2,1,1129.671381,1129.671381,3507,NO,27.02,34.2,1,-0.13,6106,115.183227,124.701756,134.597671,140.458386,I,Above,Gable,0,5701,,30.61016229,0,0,,,,1,1,,0.03,nav,1,1980,2,, 13448,NJBF000078675,130 9TH STREET SO,Galloway,NJ,39.40687643,-74.37204054,RES1,3001,,17,NE,2016,2016,3102,3,1,1242.75509,1242.75509,3507,NO,45.38,53.19,1,2.95,6106,115.298782,124.810969,134.718131,140.573841,I,Above,Gable,0,5701,,49.28292292,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 13449,NJBF000078614,307 W BRIGANTINE AVE,Galloway,NJ,39.406491,-74.365085,RES3B,3001,,19,ME,2009,2009,3301,3,1,2254.896767,2254.896767,3507,NO,45.9,58.13,1,2.19,6106,115.443692,124.946667,134.87139,140.688529,I,Above,Gable,0,NaN,,52.0140472,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 13450,NJBF000076756,3210 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39468142,-74.38712608,COM1,3001,,NaN,ME,1969,0,3401,2,1,2687.548479,2687.548479,3507,NO,22.34,29.71,1,-0.32,6106,115.120603,124.64919,134.527581,140.492645,I,Above,Hip,0,NaN,,26.02288466,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 13451,NJBF000081778,1400 E SHORE DR,Galloway,NJ,39.42283134,-74.36575134,RES1,3001,,17,NE,1990,1990,3102,2,1,1615.106694,1615.106694,3507,NO,23.95,29.16,1,2.18,6106,115.261103,124.771983,134.680966,140.47266,I,Above,Flat,0,5701,,26.55387541,0,0,,,,1,1,,0.03,nav,1,1990,2,, 13452,NJBF000079057,208 2ND STREET NO,Galloway,NJ,39.40924943,-74.3633089,RES1,3001,,43,NE,1951,1951,3102,2,2,1303.886082,1303.886082,3507,NO,34.9,42.45,1,0.15,6106,115.450368,124.953164,134.880395,140.681998,I,Above,Gable,0,5701,,38.67591093,0,0,,,,1,1,,0.03,nav,1,1951,2,, 13453,NJBF000077009,112 31ST STREET SO,Galloway,NJ,39.39582705,-74.38704855,RES1,3001,,47,NE,1978,1978,3102,2,4,2584.174457,2584.174457,3507,YES,22.68,35.22,1,0.59,6106,115.109778,124.639061,134.517051,140.478853,I,Above,Gable,0,5701,,28.94945131,0,0,,,,1,1,,0.03,nav,1,1978,2,, 13454,NJBF000079998,541 CAVERLY DR,Galloway,NJ,39.41361595,-74.37512254,RES1,3001,,16,NE,1982,1982,3103,1,1,1860.570461,1860.570461,3505,NO,10.15,18.73,3,-2.95,6106,115.166069,124.68521,134.579625,140.438446,I,Above,Gable,0,5701,,14.43713959,0,0,,,,1,1,,0.03,nav,1,1982,1,, 13455,NJBF000078988,104 2ND STREET SO,Galloway,NJ,39.40883922,-74.3659604,RES1,3001,,19,NE,1960,2018,3102,2,1,1485.256514,1485.256514,3507,NO,22.03,35.19,1,-0.21,6106,115.401207,124.906825,134.82768,140.64529,I,Above,Hip,0,5701,,28.60700432,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 13456,NJBF000078997,102 2ND STREET SO,Galloway,NJ,39.40890236,-74.36609588,RES1,3001,,16,NE,2017,2017,3102,1,1,1811.204255,1811.204255,3507,NO,21.15,34.26,1,2.97,6106,115.397798,124.903618,134.824084,140.642349,I,Above,Gable,0,5701,,27.70347314,0,0,,,,1,1,,0.03,nav,1,2017,1,, 13457,NJBF000081267,846 W SHORE DR,Galloway,NJ,39.41838404,-74.38187547,RES1,3001,,17,NE,2002,2002,3103,2,1,2011.84741,2011.84741,3505,NO,38.92,46.83,3,5.1,6106,114.980569,124.509057,134.382984,140.267092,I,Above,Hip,0,5701,,42.87800638,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 13458,NJBF000081389,910 N SHORE DR,Galloway,NJ,39.418991,-74.3788655,RES1,3001,,16,NE,1973,1973,3103,3,1,1272.007355,1272.007355,3505,NO,57.83,62.89,3,3.73,6106,115.035482,124.56011,134.440673,140.308421,I,Above,Flat,0,5701,,60.35973696,0,1.1,,,,1,1,,0.03,nav,1,1973,3,, 13459,NJBF000081403,928 N SHORE DR,Galloway,NJ,39.41904338,-74.37743074,RES1,3001,,17,NE,1970,1970,3103,2,1,4734.467275,4734.467275,3505,NO,28.55,43.1,3,7.35,6106,115.064016,124.586883,134.470856,140.331171,I,Above,Gable,0,5701,,35.82731758,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 13460,NJBF000080152,,Galloway,NJ,39.41408276,-74.35508731,RES1,3001,,NaN,NE,1969,0,3102,2,1,5583.491859,5583.491859,3507,NO,29.88,35.08,1,1.74,6106,115.564707,125.062449,135.006935,140.751689,I,Above,Flat,0,5701,,32.48030278,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13461,NJBF000081656,225 HAGEN RD,Galloway,NJ,39.42145834,-74.36694585,RES1,3001,,17,NE,1988,1988,3102,1,1,1386.173448,1386.173448,3507,NO,13.82,27.22,1,0.5,6106,115.251012,124.762771,134.670162,140.470628,I,Above,Flat,0,5701,,20.51754862,0,0,,,,1,1,,0.03,nav,1,1988,1,, 13462,NJBF000081623,236 HAGEN RD,Galloway,NJ,39.42097501,-74.36738729,RES1,3001,,17,NE,1994,1994,3102,2,1,2571.174139,2571.174139,3507,NO,27.5,38.38,1,-0.01,6106,115.247048,124.759145,134.665917,140.469595,I,Above,Hip,0,5701,,32.94097514,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 13463,NJBF000081692,12 TRAVERS PLACE,Galloway,NJ,39.42195113,-74.3667274,RES1,3001,,17,NE,1988,1988,3102,2,1,1598.106242,1598.106242,3507,NO,23.74,32.41,1,1.16,6106,115.250417,124.762053,134.669494,140.467952,I,Above,Hip,0,5701,,28.07564847,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 13464,NJBF000081650,10 HUTCHISON PLACE,Galloway,NJ,39.42134684,-74.3662932,RES1,3001,,17,NE,1987,1987,3102,2,1,1674.92032,1674.92032,3507,NO,32.24,46.66,1,0.22,6106,115.265252,124.77637,134.685506,140.482584,I,Above,Gable,0,5701,,39.45023134,0,0,,,,1,1,,0.03,nav,1,1987,2,, 13465,NJBF000081377,941 N SHORE DR,Galloway,NJ,39.41893417,-74.37619553,RES1,3001,,18,NE,2008,2008,3103,3,1,2400.754172,2400.754172,3505,NO,50.65,63.21,3,8.88,6106,115.090106,124.611483,134.49855,140.352701,I,Above,Flat,0,5701,,56.92864722,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 13466,NJBF000081459,1007 FOWNES AVE,Galloway,NJ,39.41932921,-74.36351808,RES1,3001,,16,NE,1979,1979,3102,2,1,1288.368298,1288.368298,3507,NO,36.07,41.42,1,0,6106,115.341515,124.849505,134.767606,140.552614,I,Above,Hip,0,5701,,38.74511503,0,0,,,,1,1,,0.03,nav,1,1979,2,, 13467,NJBF000081519,1023 N SHORE DR,Galloway,NJ,39.41978883,-74.37419172,RES1,3001,,16,NE,1965,1965,3102,1,1,1391.140953,1391.140953,3507,NO,18.41,25.06,1,0.94,6106,115.121967,124.641075,134.532207,140.374329,I,Above,Flat,0,5701,,21.7322524,0,0,,,,1,1,,0.03,nav,1,1965,1,, 13468,NJBF000081651,8 HUTCHISON PLACE,Galloway,NJ,39.42139623,-74.36614366,RES1,3001,,17,NE,1988,1988,3102,2,1,1789.944928,1789.944928,3507,NO,26.41,38.65,1,1.53,6106,115.267746,124.778734,134.688194,140.484374,I,Above,Hip,0,5701,,32.52697156,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 13469,NJBF000081583,1034 N SHORE DR,Galloway,NJ,39.42054451,-74.37350653,RES1,3001,,16,NE,1961,1961,3102,2,1,2412.113615,2412.113615,3507,YES,31.42,42.98,1,2.64,6106,115.12816,124.646557,134.53863,140.37579,I,Above,Gable,0,5701,,37.20292159,0,0,,,,1,1,,0.03,nav,1,1961,2,, 13470,NJBF000081500,1100 E SHORE DR,Galloway,NJ,39.41964537,-74.36316283,RES1,3001,,17,NE,1986,1986,3102,2,1,1493.416756,1493.416756,3507,NO,29.93,35.78,1,0.67,6106,115.345405,124.853167,134.771861,140.554356,I,Above,Hip,0,5701,,32.85437945,0,0,,,,1,1,,0.03,nav,1,1986,2,, 13471,NJBF000081355,203 HAGEN RD,Galloway,NJ,39.41878923,-74.3666203,RES1,3001,,17,NE,1991,1991,3102,2,1,2091.721216,2091.721216,3507,NO,34.97,45.2,1,0.12,6106,115.284721,124.795557,134.706367,140.50955,I,Above,Gable,0,5701,,40.08562429,0,1.1,,,,1,1,,0.03,nav,1,1991,2,, 13472,NJBF000080275,707 W SHORE DR,Galloway,NJ,39.4145205,-74.380672,RES1,3001,,16,NE,1959,1959,3103,2,1,1249.971805,1249.971805,3505,NO,27.29,35.36,3,-0.39,6106,115.044137,124.570834,134.451078,140.337,I,Above,Flat,0,5701,,31.32228841,0,0,,,,1,1,,0.03,nav,1,1959,2,, 13473,NJBF000080778,1103 SHERIDAN BLVD,Galloway,NJ,39.41626685,-74.37084879,RES1,3001,,17,NE,2015,2015,3102,3,1,1741.923998,1741.923998,3507,NO,53.94,60.5,1,1.34,6106,115.225312,124.739999,134.64261,140.473409,I,Above,Gable,0,5701,,57.21841241,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 13474,NJBF000081351,908 FOWNES AVE,Galloway,NJ,39.418773,-74.36409554,RES1,3001,,17,NE,1977,1977,3102,2,1,1204.988537,1204.988537,3507,NO,33.45,46.83,1,-0.99,6106,115.335604,124.843959,134.761131,140.550306,I,Above,Gable,0,5701,,40.14042602,0,0,,,,1,1,,0.03,nav,1,1977,2,, 13475,NJBF000080756,11 VARDON RD,Galloway,NJ,39.41616882,-74.37241546,RES1,3001,,18,NE,1989,2017,3102,3,1,1905.013116,1905.013116,3507,NO,31.96,42.71,1,-0.3,6106,115.194682,124.711159,134.609996,140.44942,I,Above,Flat,0,5701,,37.3325698,0,0,,,,1,1,,0.03,nav,1,1989,3,, 13476,NJBF000078595,201 7TH STREET SO,Galloway,NJ,39.40639,-74.36879442,RES1,3001,,16,NE,1950,1950,3102,3,1,1182.864224,1182.864224,3507,NO,40.91,52.55,1,0.64,6106,115.369744,124.877323,134.792848,140.631373,I,Above,Gable,0,5701,,46.72864665,0,0,,,,1,1,,0.03,nav,1,1950,3,, 13477,NJBF000081326,906 E SHORE DR,Galloway,NJ,39.41864864,-74.36279292,RES1,3001,,17,NE,1982,1982,3102,2,1,2100.99043,2100.99043,3507,NO,26.88,32.07,1,1.64,6106,115.363028,124.870109,134.790695,140.572744,I,Above,Hip,0,5701,,29.47658027,0,0,,,,1,1,,0.03,nav,1,1982,2,, 13478,NJBF000081296,904 E SHORE DR,Galloway,NJ,39.41853975,-74.36282063,RES1,3001,,17,NE,1985,1985,3102,3,1,1389.675961,1389.675961,3507,NO,32.76,43.19,1,0.6,6106,115.363585,124.870652,134.79127,140.573658,I,Above,Flat,0,5701,,37.97331534,0,1.1,,,,1,1,,0.03,nav,1,1985,3,, 13479,NJBF000081192,838 BOBBY JONES RD,Galloway,NJ,39.41796302,-74.38084511,RES1,3001,,16,NE,1972,1972,3103,2,1,1121.044145,1121.044145,3505,YES,23.12,29.48,3,1.13,6106,115.005716,124.532863,134.409637,140.289427,I,Above,Gable,0,5701,,26.30185607,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13480,NJBF000080126,212 13TH STREET NO,Galloway,NJ,39.414008,-74.355743,RES1,3001,,43,NE,1969,1969,3102,2,2,1513.800454,1513.800454,3507,NO,39.44,51.52,1,1.07,6106,115.552367,125.05064,134.993485,140.742277,I,Above,Hip,0,5701,,45.48214242,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13481,NJBF000080104,214 13TH STREET NO,Galloway,NJ,39.41393931,-74.35564916,RES1,3001,,19,NE,2009,2009,3102,3,1,1471.305748,1471.305748,3507,NO,43.76,58.76,1,-0.25,6106,115.554969,125.053113,134.99626,140.744607,I,Above,Hip,0,5701,,51.26073014,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 13482,NJBF000076329,405 30TH STREET SO,Galloway,NJ,39.39300111,-74.38190622,RES1,3001,,20,NE,1989,1989,3102,2,1,3013.934736,3013.934736,3507,NO,33.76,47.86,1,1.37,6106,115.246349,124.763909,134.65527,140.596457,I,Above,Hip,0,5701,,40.80734784,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 13483,NJBF000080318,711 W SHORE DR,Galloway,NJ,39.41468978,-74.38105123,RES1,3001,,15,NE,1963,1963,3103,1,1,1231.913113,1231.913113,3505,NO,10.23,22.99,3,-1.74,6106,115.034707,124.561946,134.441139,140.328645,I,Above,Gable,0,5701,,16.61182639,0,0,,,,1,1,,0.03,nav,1,1963,1,, 13484,NJBF000080309,120 ROOSEVELT BLVD NO,Galloway,NJ,39.41464433,-74.36981184,RES1,3001,,17,NE,1971,1971,3102,3,1,1665.607691,1665.607691,3507,NO,44.53,56.28,1,2.12,6106,115.262935,124.775926,134.682526,140.51069,I,Above,Hip,0,5701,,50.40654285,0,1.1,,,,1,1,,0.03,nav,1,1971,3,, 13485,NJBF000080754,17 MACDONALD PLACE,Galloway,NJ,39.41616483,-74.36682733,RES1,3001,,17,NE,1987,1987,3102,2,1,1353.909623,1353.909623,3507,NO,22.51,29.51,1,1.39,6106,115.307463,124.817679,134.730386,140.539304,I,Above,Hip,0,5701,,26.01314405,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 13486,NJBF000080317,134 LINCOLN DR,Galloway,NJ,39.4146865,-74.3707865,RES1,3001,,16,NE,1972,1972,3102,3,1,2109.657149,2109.657149,3507,NO,37.36,47.55,1,0.86,6106,115.242818,124.756957,134.66111,140.494515,I,Above,Gable,0,5701,,42.45672862,0,1.2,,,,1,1,,0.03,nav,1,1972,3,, 13487,NJBF000081015,1342 VARDON RD,Galloway,NJ,39.41721539,-74.37717255,RES1,3001,,16,NE,1990,1990,3103,2,1,1964.185878,1964.185878,3505,NO,31.99,41.82,3,2.83,6106,115.08774,124.610164,134.496453,140.358964,I,Above,Hip,0,5701,,36.905959,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 13488,NJBF000081009,903 SARAZEN RD,Galloway,NJ,39.41720712,-74.37734971,RES1,3001,,19,NE,1997,1997,3103,2,1,1748.735651,1748.735651,3505,NO,36.07,41.45,3,-2.71,6106,115.084236,124.606879,134.492748,140.35619,I,Above,Hip,0,5701,,38.75950952,0,0,,,,1,1,,0.03,nav,1,1997,2,, 13489,NJBF000081294,901 N SHORE DR,Galloway,NJ,39.41853154,-74.37974093,RES1,3001,,16,NE,1968,1968,3103,2,1,1603.684378,1603.684378,3505,YES,39.05,52.45,3,2.52,6106,115.022374,124.5481,134.426991,140.300076,I,Above,Gable,0,5701,,45.74911448,0,0,,,,1,1,,0.03,nav,1,1968,2,, 13490,NJBF000081186,808 FOWNES AVE,Galloway,NJ,39.417937,-74.3640045,RES1,3001,,16,NE,1954,1954,3102,1,1,1221.110066,1221.110066,3507,NO,14.71,24.34,1,0.76,6106,115.346025,124.854003,134.772194,140.562259,I,Above,Hip,0,5701,,19.52588572,0,0,,,,1,1,,0.03,nav,1,1954,1,, 13491,NJBF000078878,,Galloway,NJ,39.40808329,-74.36384753,RES1,3001,,NaN,NE,1950,0,3102,2,1,1659.327124,1659.327124,3507,NO,25.9,31.82,1,-0.64,6106,115.451804,124.954429,134.881151,140.688072,I,Above,Flat,0,5701,,28.86008318,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13492,NJBF000078861,219 VERNON PLACE,Galloway,NJ,39.407986,-74.36375,RES1,3001,,43,NE,1955,1955,3102,2,2,1105.611411,1105.611411,3507,NO,40.41,51.36,1,1.57,6106,115.454806,124.957249,134.884288,140.690827,I,Above,Hip,0,5701,,45.88737079,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13493,NJBF000081010,718 SHERIDAN BLVD,Galloway,NJ,39.41720765,-74.36582212,RES1,3001,,18,NE,2001,2001,3102,2,1,1300.134267,1300.134267,3507,NO,23.54,31.09,1,-0.8,6106,115.316967,124.826502,134.740787,140.542277,I,Above,Gable,0,5701,,27.31691536,0,0,,,,1,1,,0.03,nav,1,2001,2,, 13494,NJBF000081142,32 VARDON RD,Galloway,NJ,39.4177295,-74.37329029,RES1,3001,,17,NE,1981,1981,3102,2,1,1220.946658,1220.946658,3507,NO,39.4,53.74,1,2.9,6106,115.161067,124.678887,134.574163,140.415335,I,Above,Flat,0,5701,,46.56742842,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 13495,NJBF000081031,26 MACDERMOTT PLACE,Galloway,NJ,39.41728285,-74.36671479,RES1,3001,,17,NE,1988,1988,3102,1,1,1860.069874,1860.069874,3507,NO,21.87,33.5,1,2.99,6106,115.298229,124.80871,134.720686,140.527007,I,Above,Gable,0,5701,,27.68448898,0,0,,,,1,1,,0.03,nav,1,1988,1,, 13496,NJBF000080518,,Galloway,NJ,39.41531503,-74.38071635,RES1,3001,,NaN,NE,1971,0,3103,4,1,2140.499931,2140.499931,3505,NO,65.84,72.7,3,5.23,6106,115.035155,124.562002,134.441456,140.325964,I,Above,Gable,0,5701,,69.27303701,0,0,,,,1,1,,0.03,nav,1,1971,4,, 13497,NJBF000080459,123 ROOSEVELT BLVD NO,Galloway,NJ,39.41512912,-74.36950215,RES1,3001,,16,NE,1971,1971,3102,1,1,3162.661314,3162.661314,3507,NO,16.66,23.1,1,1.99,6106,115.264196,124.776998,134.683949,140.509512,I,Above,Gable,0,5701,,19.88060961,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 13498,NJBF000078447,179 10TH STREET SO,Galloway,NJ,39.40557397,-74.37116867,RES1,3001,,16,NE,1950,1950,3102,2,1,595.9374808,595.9374808,3505,NO,39.33,45.27,3,6.65,6106,115.330234,124.840443,134.750648,140.604191,I,Above,Gable,0,5701,,42.30200865,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 13499,NJBF000080472,704 STERLING PLACE,Galloway,NJ,39.4151785,-74.38032049,RES1,3001,,16,NE,1972,1972,3103,2,1,609.9611368,609.9611368,3505,NO,32.99,45.04,3,5.51,6106,115.044586,124.570882,134.451402,140.334171,I,Above,Flat,0,5701,,39.01325862,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13500,NJBF000080457,,Galloway,NJ,39.41511451,-74.35587151,RES1,3001,,NaN,NE,1958,0,3102,2,1,2078.789071,2078.789071,3507,NO,24.04,30.69,1,0.89,6106,115.538232,125.037326,134.978885,140.726626,I,Above,Hip,0,5701,,27.36566332,0,0,,,,1,1,,0.03,nav,1,1958,2,, 13501,NJBF000080471,1102 E EVANS BLVD,Galloway,NJ,39.41516988,-74.35873052,RES1,3001,,17,NE,2007,2007,3102,2,1,1353.524972,1353.524972,3507,NO,21.93,33.38,1,-0.62,6106,115.480414,124.982112,134.916239,140.680728,I,Above,Hip,0,5701,,27.65649732,0,0,,,,1,1,,0.03,nav,1,2007,2,, 13502,NJBF000078418,147 11TH STREET SO,Galloway,NJ,39.4053748,-74.37233505,RES1,3001,,16,NE,1960,1960,3102,1,1,1827.802986,1827.802986,3505,NO,16.63,30.32,3,3.48,6106,115.308669,124.820355,134.727828,140.588282,I,Above,Hip,0,5701,,23.47857222,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13503,NJBF000078345,701 W BRIGANTINE AVE,Galloway,NJ,39.40489812,-74.367955,RES1,3001,,15,NE,1948,1948,3102,1,1,1155.107794,1155.107794,3505,NO,14.39,24.53,3,-1.86,6110,115.402566,124.908021,134.826635,140.66341,I,Above,Gable,0,5701,,19.45900107,0,0,,,,1,1,,0.35,nav,1,1948,1,, 13504,NJBF000079585,,Galloway,NJ,39.41179884,-74.37240509,RES1,3001,,NaN,NE,1965,0,3102,2,1,1695.885542,1695.885542,3507,NO,36.06,49.88,1,2.35,6106,115.23992,124.754986,134.657547,140.505334,I,Above,Gable,0,5701,,42.97024134,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13505,NJBF000079936,558 W SHORE DR,Galloway,NJ,39.41338216,-74.37849181,RES1,3001,,NaN,NE,1963,1963,3103,5,1,1768.680701,1768.680701,3505,NO,60.99,68.68,3,-0.29,6106,115.100099,124.623624,134.510069,140.387092,I,Above,Flat,0,5701,,64.83198342,0,0,,,,1,1,,0.03,nav,1,1963,5,, 13506,NJBF000079887,558 W SHORE DR,Galloway,NJ,39.41323649,-74.378559,RES1,3001,,NaN,NE,1963,1963,3103,6,1,972.7851244,972.7851244,3505,NO,75.8,83.69,3,0.1,6106,115.100236,124.623821,134.510225,140.387897,I,Above,Flat,0,5701,,79.74461924,0,0,,,,1,1,,0.03,nav,1,1963,6,, 13507,NJBF000079935,115 9TH STREET NO,Galloway,NJ,39.41337023,-74.35911129,RES1,3001,,43,NE,1986,1986,3102,2,2,971.5037448,971.5037448,3507,NO,30.06,42,1,1.17,6106,115.491551,124.992555,134.927241,140.697006,I,Above,Gable,0,5701,,36.03361016,0,0,,,,1,1,,0.03,nav,1,1986,2,, 13508,NJBF000080175,706 W SHORE DR,Galloway,NJ,39.41418034,-74.38094885,RES1,3001,,16,NE,1967,1967,3103,2,1,1870.533703,1870.533703,3505,YES,36.56,49.18,3,4.08,6106,115.041983,124.569017,134.44889,140.336935,I,Above,Hip,0,5701,,42.87354647,0,0,,,,1,1,,0.03,nav,1,1967,2,, 13509,NJBF000080358,136 LINCOLN DR,Galloway,NJ,39.41481735,-74.37086833,RES1,3001,,17,NE,1974,1974,3102,2,1,2373.6285,2373.6285,3507,NO,35.69,47.48,1,0.84,6106,115.239823,124.754101,134.657938,140.491545,I,Above,Hip,0,5701,,41.5866176,0,0,,,,1,1,,0.03,nav,1,1974,2,, 13510,NJBF000080391,606 LAFAYETTE BLVD,Galloway,NJ,39.41490516,-74.37885024,RES1,3001,,18,NE,2007,2007,3103,2,1,2170.563687,2170.563687,3505,NO,42.24,50.08,3,6.75,6106,115.07724,124.601528,134.485816,140.361591,I,Above,Hip,0,5701,,46.16210359,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 13511,NJBF000080233,701 W SHORE DR,Galloway,NJ,39.41439101,-74.38027703,RES1,3001,,16,NE,1957,1957,3103,1,1,1810.701463,1810.701463,3505,NO,16.78,23.98,3,3.1,6106,115.053494,124.579631,134.460933,140.345102,I,Above,Gable,0,5701,,20.379069,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 13512,NJBF000080380,715 W SHORE DR,Galloway,NJ,39.41489149,-74.38126499,RES1,3001,,15,NE,1962,1962,3103,1,1,791.7799152,791.7799152,3505,NO,22.22,28.65,3,6.24,6106,115.028308,124.555864,134.434373,140.32255,I,Above,Gable,0,5701,,25.43374171,0,0,,,,1,1,,0.03,nav,1,1962,1,, 13513,NJBF000080344,127 LINCOLN DR,Galloway,NJ,39.41477411,-74.37034403,RES1,3001,,16,NE,1970,1970,3102,2,1,1118.36384,1118.36384,3507,YES,38.27,45.37,1,1.44,6106,115.250852,124.764503,134.669674,140.500505,I,Above,Gable,0,5701,,41.82316801,0,0,,,,1,1,,0.03,nav,1,1970,2,, 13514,NJBF000080348,706 BOBBY JONES RD,Galloway,NJ,39.41479033,-74.38055349,RES1,3001,,16,NE,1960,1960,3103,1,1,1311.838924,1311.838924,3505,NO,18.26,25.7,3,5.7,6106,115.043813,124.570381,134.450679,140.335438,I,Above,Gable,0,5701,,21.9771562,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13515,NJBF000080034,25 HEALD RD,Galloway,NJ,39.41372546,-74.36480343,RES1,3001,,16,NE,1969,1969,3102,2,1,1762.760924,1762.760924,3507,NO,33.5,43.31,1,0.59,6106,115.37345,124.88047,134.800378,140.602311,I,Above,Gable,0,5701,,38.40321792,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13516,NJBF000080077,19 HEALD RD,Galloway,NJ,39.41384128,-74.36675988,RES1,3001,,18,NE,2003,2003,3102,2,1,2791.512494,2791.512494,3507,NO,32.91,45.65,1,1.43,6106,115.332817,124.842029,134.756922,140.569664,I,Above,Hip,0,5701,,39.2779115,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 13517,NJBF000079540,212 8TH STREET NO,Galloway,NJ,39.41158898,-74.35880984,RES1,3001,,16,NE,1950,1950,3102,1,1,980.4232064,980.4232064,3507,NO,18.1,24.26,1,0.34,6106,115.516242,125.015805,134.952712,140.723802,I,Above,Hip,0,5701,,21.17626991,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13518,NJBF000079550,504 LAFAYETTE BLVD,Galloway,NJ,39.41164875,-74.37342796,RES1,3001,,16,NE,1981,1981,3102,1,1,1071.339043,1071.339043,3507,NO,18.03,26.48,1,1.77,6106,115.220748,124.737061,134.637232,140.490868,I,Above,Gable,0,5701,,22.25637061,0,0,,,,1,1,,0.03,nav,1,1981,1,, 13519,NJBF000079295,101 ROOSEVELT BLVD SO,Galloway,NJ,39.41053446,-74.36512955,RES1,3001,,16,NE,1962,1962,3102,1,1,1993.505093,1993.505093,3507,NO,11.18,18,1,-0.28,6106,115.400153,124.905828,134.827488,140.637145,I,Above,Hip,0,5701,,14.58663102,0,0,,,,1,1,,0.03,nav,1,1962,1,, 13520,NJBF000079101,305 W EVANS BLVD,Galloway,NJ,39.40955723,-74.36742636,RES1,3001,,15,NE,1956,1956,3102,1,1,958.0705732,958.0705732,3507,NO,16.55,27.35,1,1.1,6106,115.364047,124.87186,134.788508,140.613056,I,Above,Gable,0,5701,,21.95064981,0,0,,,,1,1,,0.03,nav,1,1956,1,, 13521,NJBF000079239,9 GIRARD PLACE,Galloway,NJ,39.41029014,-74.36743655,RES1,3001,,16,NE,1975,1975,3102,2,1,1095.892115,1095.892115,3507,NO,26.65,38.69,1,1.67,6106,115.356143,124.86438,134.780443,140.603643,I,Above,Gable,0,5701,,32.66684712,0,0,,,,1,1,,0.03,nav,1,1975,2,, 13522,NJBF000078481,154 10TH STREET SO,Galloway,NJ,39.40576604,-74.37227257,RES1,3001,,17,NE,2006,2006,3102,2,1,3099.891173,3099.891173,3505,NO,30.98,45.69,3,3.04,6106,115.305791,124.817634,134.724994,140.584288,I,Above,Gable,0,5701,,38.33661796,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 13523,NJBF000078526,159 10TH STREET SO,Galloway,NJ,39.40601049,-74.37172987,RES1,3001,,17,NE,1946,1946,3102,3,1,1707.027725,1707.027725,3505,NO,54.54,67.39,3,-2.26,6106,115.314235,124.825483,134.734011,140.58978,I,Above,Hip,0,5701,,60.96678665,0,1.1,,,,1,1,,0.03,nav,1,1946,3,, 13524,NJBF000078635,231 5TH STREET SO,Galloway,NJ,39.4066035,-74.366703,RES1,3001,,43,NE,1955,1955,3102,2,2,1203.592275,1203.592275,3507,NO,24.62,32.92,1,2.58,6106,115.409794,124.91485,134.835439,140.661649,I,Above,Gable,0,5701,,28.77260017,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13525,NJBF000078629,156 8TH STREET SO,Galloway,NJ,39.40656822,-74.3706583,RES1,3001,,17,NE,1985,1985,3102,2,1,1624.27925,1624.27925,3507,NO,28.85,42.25,1,1.21,6106,115.330087,124.840232,134.751017,140.599661,I,Above,Hip,0,5701,,35.54964456,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13526,NJBF000078691,140 8TH STREET SO,Galloway,NJ,39.406949,-74.37098517,RES1,3001,,18,NE,2015,2015,3102,2,1,1248.661942,1248.661942,3507,NO,30.33,36.53,1,2.39,6106,115.319435,124.830247,134.739958,140.58965,I,Above,Hip,0,5701,,33.43039321,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 13527,NJBF000078486,178 9TH STREET SO,Galloway,NJ,39.40579347,-74.37104344,RES1,3001,,17,NE,2015,2015,3102,2,1,983.1300403,983.1300403,3505,NO,30.65,41.68,3,5.59,6106,115.330472,124.84065,134.751017,140.603403,I,Above,Gable,0,5701,,36.16667713,0,0,,,,1,1,,0.03,nav,1,2015,2,, 13528,NJBF000076651,313 31ST STREET SO,Galloway,NJ,39.3942175,-74.384546,RES1,3001,,43,NE,1964,1964,3102,2,2,1836.691863,1836.691863,3507,NO,32.74,39.44,1,-0.53,6106,115.178773,124.702191,134.586804,140.539307,I,Above,Gable,0,5701,,36.09015948,0,0,,,,1,1,,0.03,nav,1,1964,2,, 13529,NJBF000077033,3201 BAYSHORE AVE,Galloway,NJ,39.39599434,-74.38839369,COM1,3001,,NaN,ME,1969,0,3401,2,1,4602.736573,4602.736573,3507,NO,37.92,46.5,1,0.58,6106,115.080251,124.612174,134.486966,140.45538,I,Above,Gable,0,NaN,,42.21304274,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13530,NJBF000076885,3107 ATL-BRIGANTINE BLVD,Galloway,NJ,39.395193,-74.386462,COM1,3001,,NaN,ME,1969,1960,3401,2,1,2117.948118,2117.948118,3507,NO,35.08,50.02,1,0.05,6106,115.128733,124.65646,134.536134,140.496422,I,Above,Flat,0,NaN,,42.55152212,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13531,NJBF000076703,219 33RD STREET SO,Galloway,NJ,39.39446119,-74.38733967,COM1,3001,,NaN,ME,1969,0,3401,2,1,1919.790695,1919.790695,3507,NO,27.74,39.53,1,2.02,6106,115.118579,124.647404,134.525408,140.492151,I,Above,Flat,0,NaN,,33.63319133,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 13532,NJBF000076671,231 33RD STREET SO,Galloway,NJ,39.39428699,-74.38695217,RES1,3001,,43,NE,1952,1952,3102,1,3,849.3320986,849.3320986,3507,NO,18.52,28.28,1,1.1,6106,115.128469,124.656426,134.535413,140.500546,I,Above,Flat,0,5701,,23.40021521,0,0,,,,1,1,,0.03,nav,1,1952,1,, 13533,NJBF000076652,231 33RD STREET SO,Galloway,NJ,39.39421929,-74.38705009,RES1,3001,,43,NE,1952,1952,3102,1,3,880.7257234,880.7257234,3507,NO,15.21,28.59,1,-0.91,6106,115.127188,124.655278,134.534071,140.499891,I,Above,Flat,0,5701,,21.89851428,0,0,,,,1,1,,0.03,nav,1,1952,1,, 13534,NJBF000080839,5 MACDERMOTT PLACE,Galloway,NJ,39.41653874,-74.36598113,RES1,3001,,16,NE,1947,1947,3102,2,1,947.1216138,947.1216138,3507,NO,26.78,32.56,1,-0.88,6106,115.320646,124.830107,134.7446,140.548147,I,Above,Flat,0,5701,,29.66861678,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 13535,NJBF000080750,25 11TH STREET NO,Galloway,NJ,39.41615946,-74.36009582,RES1,3001,,45,NE,1959,1959,3102,2,2,1660.064783,1660.064783,3507,YES,35.72,47.18,1,-0.24,6106,115.442789,124.946279,134.876031,140.646801,I,Above,Gable,0,5701,,41.44825608,0,0,,,,1,1,,0.03,nav,1,1959,2,, 13536,NJBF000078350,222 9TH STREET SO,Galloway,NJ,39.4049181,-74.37022785,RES1,3001,,15,NE,1954,1954,3102,2,1,1195.547839,1195.547839,3505,NO,39.86,53.38,3,5.06,6106,115.356283,124.86478,134.777745,140.627362,I,Above,Gable,0,5701,,46.61744462,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 13537,NJBF000080523,25 KIRKWOOD CIRCLE,Galloway,NJ,39.41533102,-74.36256582,RES1,3001,,16,NE,1982,1982,3102,2,1,1740.505347,1740.505347,3507,NO,24.75,36.39,1,1.87,6106,115.401787,124.907259,134.831448,140.617821,I,Above,Gable,0,5701,,30.57286344,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 13538,NJBF000079973,111 9TH STREET NO,Galloway,NJ,39.41354054,-74.35933572,RES1,3001,,43,NE,1973,1973,3102,2,2,1369.243588,1369.243588,3507,NO,26.53,39.13,1,2.36,6106,115.485251,124.986577,134.920544,140.691331,I,Above,Hip,0,5701,,32.82623578,0,0,,,,1,1,,0.03,nav,1,1973,2,, 13539,NJBF000080516,17 KIRKWOOD CIRCLE,Galloway,NJ,39.41531086,-74.36337231,RES1,3001,,16,NE,1955,1955,3102,1,1,1614.666959,1614.666959,3507,NO,13.36,21.02,1,-0.32,6106,115.385796,124.89207,134.814232,140.605234,I,Above,Flat,0,5701,,17.19058037,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13540,NJBF000079864,529 CAVERLY DR,Galloway,NJ,39.41314731,-74.37421879,RES1,3001,,17,NE,1985,1985,3102,2,1,1495.968323,1495.968323,3507,NO,31.86,45.98,1,2.26,6106,115.189223,124.70707,134.604084,140.459007,I,Above,Gable,0,5701,,38.91791547,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13541,NJBF000078588,,Galloway,NJ,39.40636837,-74.36396889,RES3C,3001,,NaN,ME,1969,0,3301,1,1,10960.66535,10960.66535,3507,NO,13.3,19.51,1,1.76,6110,115.467531,124.969063,134.896681,140.707599,I,Above,Flat,0,NaN,,16.40614585,0,0,,,,1,1,,0.35,nav,1,1969,1,, 13542,NJBF000078342,235 9TH STREET SO,Galloway,NJ,39.40486672,-74.36962433,RES1,3001,,15,NE,1954,1954,3102,1,1,1115.730788,1115.730788,3505,NO,19.63,29.4,3,3.43,6106,115.369074,124.876721,134.791213,140.637528,I,Above,Gable,0,5701,,24.51178497,0,0,,,,1,1,,0.03,nav,1,1954,1,, 13543,NJBF000078332,239 9TH STREET SO,Galloway,NJ,39.40478575,-74.36951709,RES1,3001,,15,NE,1955,1955,3102,1,1,1368.896323,1368.896323,3505,NO,24.21,36.96,3,8.41,6106,115.372105,124.879551,134.794362,140.640237,I,Above,Gable,0,5701,,30.58259302,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13544,NJBF000079593,303 SHERIDAN PLACE,Galloway,NJ,39.41183359,-74.3646627,EDU1,3001,,NaN,E,1969,0,3401,2,1,186822.1837,186822.1837,3507,NO,22,33.29,1,-0.81,6106,115.395965,124.901853,134.823666,140.628246,I,Above,Flat,0,NaN,,27.6418338,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13545,NJBF000079811,602 E EVANS BLVD,Galloway,NJ,39.4129513,-74.36174486,RES1,3001,,16,NE,2014,2014,3102,3,1,1548.13902,1548.13902,3507,NO,45,52.72,1,-0.34,6106,115.44303,124.946422,134.874721,140.66054,I,Above,Gable,0,5701,,48.85875102,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 13546,NJBF000079388,,Galloway,NJ,39.4109185,-74.3621515,RES1,3001,,NaN,NE,1969,0,3102,2,1,1808.37244,1808.37244,3507,NO,36.35,49.57,1,-0.42,6106,115.456129,124.958725,134.887622,140.679436,I,Above,Flat,0,5701,,42.95885546,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13547,NJBF000079389,410 LAFAYETTE BLVD,Galloway,NJ,39.41093109,-74.36961967,RES1,3001,,16,NE,1970,1970,3102,1,1,2079.864344,2079.864344,3507,NO,16.41,26.58,1,0.77,6106,115.305319,124.816531,134.726661,140.560834,I,Above,Gable,0,5701,,21.49834754,0,0,,,,1,1,,0.03,nav,1,1970,1,, 13548,NJBF000079391,408 LAFAYETTE BLVD,Galloway,NJ,39.41093823,-74.36943992,RES1,3001,,16,NE,1962,1962,3102,1,1,1161.231179,1161.231179,3507,NO,20,28.45,1,1.51,6106,115.308886,124.819882,134.730453,140.563612,I,Above,Hip,0,5701,,24.22740067,0,0,,,,1,1,,0.03,nav,1,1962,1,, 13549,NJBF000078608,219 6TH STREET SO,Galloway,NJ,39.40647427,-74.36765332,RES1,3001,,16,NE,1953,1953,3102,1,1,1723.172551,1723.172551,3507,NO,17.25,28.37,1,2.95,6106,115.391953,124.898121,134.816427,140.648313,I,Above,Hip,0,5701,,22.81369533,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13550,NJBF000078440,243 7TH STREET SO,Galloway,NJ,39.4055325,-74.36792693,RES1,3001,,17,NE,2004,2004,3102,2,1,1800.275252,1800.275252,3505,NO,37.06,45.8,3,-1.41,6106,115.396395,124.902266,134.820529,140.655863,I,Above,Flat,0,5701,,41.43239598,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 13551,NJBF000077149,2601 W BRIGANTINE AVE,Galloway,NJ,39.3968745,-74.382178,RES1,3001,,19,NE,2017,2017,3102,2,1,1447.167818,1447.167818,3507,NO,33.15,39.54,1,1.24,6106,115.198612,124.719875,134.608715,140.542059,I,Above,Gable,0,5701,,36.34351232,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 13552,NJBF000079387,406 LAFAYETTE BLVD,Galloway,NJ,39.41091782,-74.36926335,RES1,3001,,16,NE,1962,1962,3102,1,1,1254.092322,1254.092322,3507,NO,15.53,24.97,1,0.84,6106,115.312674,124.823444,134.73447,140.566684,I,Above,Gable,0,5701,,20.2489702,0,0,,,,1,1,,0.03,nav,1,1962,1,, 13553,NJBF000076708,214 32ND STREET SO,Galloway,NJ,39.39447289,-74.38676262,COM1,3001,,NaN,ME,1969,0,3401,1,1,3526.488049,3526.488049,3507,NO,21.39,27.78,1,2.12,6106,115.130343,124.658088,134.537422,140.501091,I,Above,Flat,0,NaN,,24.58167947,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13554,NJBF000080122,101 9TH STREET NO,Galloway,NJ,39.41399502,-74.35989054,RES1,3001,,17,NE,2004,2004,3102,2,1,1316.445664,1316.445664,3507,NO,30.13,41.27,1,2.39,6106,115.46938,124.971512,134.903674,140.67692,I,Above,Hip,0,5701,,35.69972384,0,0,,,,1,1,,0.03,nav,1,2004,2,, 13555,NJBF000081531,1104 FOWNES AVE,Galloway,NJ,39.4198924,-74.36395603,RES1,3001,,17,NE,2003,2003,3102,2,1,1933.516891,1933.516891,3507,NO,25.53,38.96,1,-0.67,6106,115.326971,124.835543,134.751992,140.538527,I,Above,Hip,0,5701,,32.24749625,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 13556,NJBF000081716,1302 E SHORE DR,Galloway,NJ,39.42222086,-74.36559088,RES1,3001,,17,NE,1980,1980,3102,1,1,2073.983636,2073.983636,3507,NO,21.51,33.33,1,2.9,6106,115.270483,124.781115,134.691126,140.482925,I,Above,Flat,0,5701,,27.41923388,0,0,,,,1,1,,0.03,nav,1,1980,1,, 13557,NJBF000081221,1000 VARDON CIRCLE,Galloway,NJ,39.41811119,-74.37493963,RES1,3001,,17,NE,1987,1987,3102,2,1,2096.633069,2096.633069,3507,NO,35.23,44.74,1,-0.54,6106,115.123843,124.643652,134.534543,140.383702,I,Above,Gable,0,5701,,39.98607156,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 13558,NJBF000080585,134 ROOSEVELT BLVD NO,Galloway,NJ,39.41553559,-74.37021235,RES1,3001,,16,NE,1972,1972,3102,2,1,975.7397868,975.7397868,3507,NO,35.92,47.26,1,0.6,6106,115.245676,124.759422,134.664256,140.492947,I,Above,Gable,0,5701,,41.58838568,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13559,NJBF000078889,105 6TH STREET SO,Galloway,NJ,39.40815584,-74.36919491,RES1,3001,,15,NE,1951,1951,3102,1,1,1128.754526,1128.754526,3507,NO,19.39,25.55,1,1.32,6106,115.342989,124.852183,134.765463,140.602713,I,Above,Gable,0,5701,,22.47019096,0,0,,,,1,1,,0.03,nav,1,1951,1,, 13560,NJBF000080596,14 MACDONALD PLACE,Galloway,NJ,39.4155844,-74.36707414,RES1,3001,,16,NE,1965,1965,3102,1,1,1478.897802,1478.897802,3507,NO,15.13,26.81,1,-0.03,6106,115.308472,124.81874,134.731344,140.542674,I,Above,Gable,0,5701,,20.97113713,0,0,,,,1,1,,0.03,nav,1,1965,1,, 13561,NJBF000080590,201 14TH STREET NO,Galloway,NJ,39.415559,-74.3557005,COM4,3001,,NaN,ME,1969,0,3401,1,1,728.8016615,728.8016615,3507,NO,16.35,27.43,1,0.85,6106,115.537048,125.036266,134.977881,140.723881,I,Above,Gable,0,NaN,,21.88888374,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13562,NJBF000081643,1220 E SHORE DR,Galloway,NJ,39.42121132,-74.36522197,RES1,3001,,17,NE,2002,2002,3102,3,1,2287.252025,2287.252025,3507,NO,34.86,48.9,1,-0.92,6106,115.288132,124.79822,134.710179,140.501586,I,Above,Hip,0,5701,,41.87722871,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 13563,NJBF000080542,5 KIRKWOOD CIRCLE,Galloway,NJ,39.41537431,-74.36443929,RES1,3001,,17,NE,1987,1987,3102,1,1,1780.121667,1780.121667,3507,NO,13.95,21.65,1,1.82,6106,115.363688,124.871083,134.790493,140.587431,I,Above,Flat,0,5701,,17.80084362,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 13564,NJBF000080245,103 WASHINGTON DR,Galloway,NJ,39.41442599,-74.36805392,RES1,3001,,16,NE,1966,1966,3102,3,1,1974.412801,1974.412801,3507,NO,48.23,56.57,1,0.9,6106,115.300667,124.811571,134.722732,140.541608,I,Above,Hip,0,5701,,52.40113152,0,1.2,,,,1,1,,0.03,nav,1,1966,3,, 13565,NJBF000081556,1202 E SHORE DR,Galloway,NJ,39.42012949,-74.36416233,RES1,3001,,17,NE,1986,1986,3102,2,1,1080.773673,1080.773673,3507,NO,25.03,37.79,1,1.89,6106,115.320419,124.829251,134.744948,140.532244,I,Above,Gable,0,5701,,31.40712385,0,0,,,,1,1,,0.03,nav,1,1986,2,, 13566,NJBF000079860,13 QUAY BLVD,Galloway,NJ,39.41313731,-74.36664143,RES1,3001,,16,NE,1967,1967,3102,1,1,2067.512582,2067.512582,3507,NO,14.12,21.19,1,-0.48,6106,115.342521,124.851281,134.76706,140.580429,I,Above,Hip,0,5701,,17.6545287,0,0,,,,1,1,,0.03,nav,1,1967,1,, 13567,NJBF000081297,915 N SHORE DR,Galloway,NJ,39.41854496,-74.37853321,RES1,3001,,15,NE,1953,1953,3103,1,1,1288.377599,1288.377599,3505,NO,13.45,18.67,3,-0.11,6106,115.046725,124.570932,134.452714,140.319632,I,Above,Hip,0,5701,,16.06191037,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13568,NJBF000081815,1405 E SHORE DR,Galloway,NJ,39.423284,-74.3653985,RES1,3001,,NaN,NE,1907,1960,3102,2,1,1170.805186,1170.805186,3507,NO,23.52,32.54,1,0.36,6106,115.263605,124.774239,134.683637,140.472676,I,Above,Hip,0,5701,,28.02975682,0,0,,,,1,1,,0.03,nav,1,1907,2,, 13569,NJBF000080416,4 KIRKWOOD CIRCLE,Galloway,NJ,39.41497921,-74.36466458,RES1,3001,,17,NE,1988,1988,3102,2,1,1721.364501,1721.364501,3507,NO,32.71,42.3,1,-0.15,6106,115.363227,124.870683,134.789867,140.58878,I,Above,Gable,0,5701,,37.5050986,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 13570,NJBF000080173,557 LAFAYETTE BLVD,Galloway,NJ,39.41417076,-74.37730679,RES1,3001,,16,NE,1966,1966,3103,2,1,2402.811235,2402.811235,3505,NO,35.08,49.44,3,1.21,6106,115.116071,124.638183,134.526825,140.39606,I,Above,Gable,0,5701,,42.26133325,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 13571,NJBF000080315,207 13TH STREET NO,Galloway,NJ,39.41467084,-74.35584351,RES1,3001,,43,NE,1949,1949,3102,1,2,1876.081116,1876.081116,3507,NO,15.52,21.77,1,0.2,6106,115.543422,125.042213,134.984229,140.73253,I,Above,Flat,0,5701,,18.64739049,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 13572,NJBF000078382,1013 W BEACH AVE,Galloway,NJ,39.40515779,-74.37197938,RES1,3001,,16,NE,1963,1963,3102,1,1,1340.029769,1340.029769,3505,NO,16.25,22.07,3,-1.98,6106,115.318198,124.829253,134.737745,140.596672,I,Above,Hip,0,5701,,19.16380854,0,0,,,,1,1,,0.03,nav,1,1963,1,, 13573,NJBF000080551,725 W SHORE DR,Galloway,NJ,39.41539772,-74.38201881,RES1,3001,,15,NE,1965,1965,3103,1,1,1798.071653,1798.071653,3505,NO,14.53,24.16,3,3.97,6106,115.007819,124.536459,134.412729,140.303671,I,Above,Gable,0,5701,,19.34391888,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 13574,NJBF000079569,,Galloway,NJ,39.41171539,-74.37453266,RES1,3001,,NaN,NE,1969,0,3102,2,1,2187.904807,2187.904807,3507,NO,37.6,51.77,1,1.2,6106,115.197658,124.715431,134.612845,140.472308,I,Above,Gable,0,5701,,44.68535553,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13575,NJBF000076789,,Galloway,NJ,39.39480384,-74.39978289,RES3A,3001,,NaN,NE,1972,0,3301,1,1,3852.311158,3852.311158,3507,NO,19.21,30.9,1,2.69,6106,114.857201,124.411383,134.261047,140.289804,I,Above,Gable,0,NaN,,25.05288476,0,0,,,,1,1,,0.03,nav,1,1972,1,, 13576,NJBF000080325,116 WASHINGTON DR,Galloway,NJ,39.41470368,-74.36881948,RES1,3001,,16,NE,1969,1969,3102,1,1,1707.540624,1707.540624,3507,NO,15.68,28.98,1,0.47,6106,115.282362,124.794236,134.703252,140.525846,I,Above,Gable,0,5701,,22.33075056,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13577,NJBF000080041,213 12TH STREET NO,Galloway,NJ,39.41375238,-74.35590458,RES1,3001,,16,NE,1978,1978,3102,2,1,1399.030249,1399.030249,3507,NO,21.68,36.12,1,0.01,6106,115.551801,125.050051,134.992691,140.742873,I,Above,Gable,0,5701,,28.89603035,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 13578,NJBF000080528,,Galloway,NJ,39.41533709,-74.37108979,RES1,3001,,NaN,NE,1969,0,3102,2,1,1939.387335,1939.387335,3507,NO,35.44,46.04,1,-0.07,6106,115.229989,124.744689,134.647525,140.481362,I,Above,Hip,0,5701,,40.74085429,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13579,NJBF000080921,20 MACDERMOTT PLACE,Galloway,NJ,39.41687247,-74.36652837,RES1,3001,,16,NE,1981,1981,3102,2,1,1586.899643,1586.899643,3507,NO,23.66,29.89,1,1.85,6106,115.306212,124.816362,134.729181,140.535187,I,Above,Hip,0,5701,,26.77612877,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 13580,NJBF000079329,,Galloway,NJ,39.41067047,-74.36345164,RES1,3001,,NaN,NE,1958,0,3102,2,1,1087.099619,1087.099619,3507,NO,33.95,47.99,1,0.38,6106,115.432548,124.936413,134.862203,140.66199,I,Above,Flat,0,5701,,40.97066465,0,0,,,,1,1,,0.03,nav,1,1958,2,, 13581,NJBF000081537,1016 N SHORE DR,Galloway,NJ,39.41995806,-74.37490305,RES1,3001,,16,NE,1956,1956,3102,2,1,1670.788733,1670.788733,3507,NO,26.82,39.47,1,2.66,6106,115.1059,124.625829,134.515064,140.360589,I,Above,Flat,0,5701,,33.14112157,0,0,,,,1,1,,0.03,nav,1,1956,2,, 13582,NJBF000081839,1409 E SHORE DR,Galloway,NJ,39.42359046,-74.3656222,RES1,3001,,18,NE,1992,1992,3102,3,1,3053.991675,3053.991675,3507,NO,56.25,68.87,1,0.37,6106,115.256026,124.766901,134.675417,140.465198,I,Above,Gable,0,5701,,62.56027457,0,1.1,,,,1,1,,0.03,nav,1,1992,3,, 13583,NJBF000079970,534 CAVERLY DR,Galloway,NJ,39.4135255,-74.3757925,RES1,3001,,16,NE,1980,1980,3103,2,1,1295.571618,1295.571618,3505,NO,23.92,30.65,3,1.03,6106,115.153419,124.6734,134.56626,140.428818,I,Above,Gable,0,5701,,27.28099017,0,0,,,,1,1,,0.03,nav,1,1980,2,, 13584,NJBF000080703,50 KIRKWOOD CIRCLE,Galloway,NJ,39.4159753,-74.36279335,RES1,3001,,17,NE,1998,1998,3102,2,1,1904.032171,1904.032171,3507,NO,30.27,39.38,1,0,6106,115.390563,124.896559,134.819603,140.606161,I,Above,Hip,0,5701,,34.82241499,0,1.2,,,,1,1,,0.03,nav,1,1998,2,, 13585,NJBF000081110,803 E SHORE DR,Galloway,NJ,39.41756938,-74.36266515,RES1,3001,,16,NE,1973,1973,3102,2,1,1260.619883,1260.619883,3507,NO,33.83,39.85,1,-0.09,6106,115.376694,124.883242,134.805165,140.588288,I,Above,Gable,0,5701,,36.83768428,0,0,,,,1,1,,0.03,nav,1,1973,2,, 13586,NJBF000081833,1417 E SHORE DR,Galloway,NJ,39.423485,-74.36650128,RES1,3001,,20,NE,2012,2012,3102,2,1,3712.100337,3712.100337,3507,NO,29.45,38.48,1,-0.66,6106,115.239458,124.751103,134.657529,140.452269,I,Above,Hip,0,5701,,33.96468378,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 13587,NJBF000079070,,Galloway,NJ,39.40931566,-74.37411844,RES1,3001,,NaN,NE,1969,0,3102,2,1,3126.601181,3126.601181,3507,NO,33.22,42.35,1,0.25,6106,115.231026,124.747278,134.647572,140.509663,I,Above,Hip,0,5701,,37.78946077,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13588,NJBF000079186,206 E BEACH AVE,Galloway,NJ,39.41001828,-74.3629556,RES1,3001,,43,NE,1945,1945,3102,2,2,1296.622348,1296.622348,3507,YES,28.16,33.3,1,2.63,6106,115.449386,124.952289,134.879836,140.677966,I,Above,Hip,0,5701,,30.73348246,0,0,,,,1,1,,0.03,nav,1,1945,2,, 13589,NJBF000079199,6 SHERIDAN PLACE,Galloway,NJ,39.41011831,-74.36612714,RES1,3001,,16,NE,1960,2017,3102,2,1,1213.309402,1213.309402,3507,NO,37.09,43.7,1,-0.24,6106,115.384398,124.890986,134.810461,140.626578,I,Above,Flat,0,5701,,40.3949248,0,0,,,,1,1,,0.03,nav,1,1960,2,, 13590,NJBF000076363,341 32ND STREET SO,Galloway,NJ,39.3931391,-74.38456701,RES1,3001,,16,NE,1956,1956,3102,2,1,1779.17866,1779.17866,3507,YES,35.21,42.71,1,0.86,6106,115.190112,124.712667,134.597737,140.553011,I,Above,Flat,0,5701,,38.9621712,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 13591,NJBF000078894,117 4TH STREET SO,Galloway,NJ,39.40818026,-74.36696014,RES1,3001,,43,NE,1951,1951,3102,2,2,1274.737802,1274.737802,3507,NO,23.35,30.07,1,2.29,6106,115.387946,124.894361,134.813192,140.637772,I,Above,Gable,0,5701,,26.70872467,0,0,,,,1,1,,0.03,nav,1,1951,2,, 13592,NJBF000080131,105 ROOSEVELT BLVD NO,Galloway,NJ,39.41402645,-74.36880818,RES1,3001,,16,NE,1966,1966,3102,2,1,1580.332677,1580.332677,3507,NO,24.32,38.54,1,2.94,6106,115.289587,124.80119,134.710813,140.534604,I,Above,Gable,0,5701,,31.43354415,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 13593,NJBF000080160,102 10TH STREET NO,Galloway,NJ,39.41411918,-74.35949135,RES1,3001,,43,NE,1965,1965,3102,2,2,1352.099613,1352.099613,3507,NO,30.1,38.57,1,1.16,6106,115.476113,124.97793,134.911012,140.681714,I,Above,Flat,0,5701,,34.33429753,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13594,NJBF000080956,711 SHERIDAN BLVD,Galloway,NJ,39.4170215,-74.3652115,RES1,3001,,17,NE,1970,1970,3102,2,1,1438.52071,1438.52071,3507,NO,29.78,43.09,1,2.66,6106,115.331158,124.840005,134.755994,140.554403,I,Above,Gable,0,5701,,36.43762733,0,0,,,,1,1,,0.03,nav,1,1970,2,, 13595,NJBF000080067,106 ROOSEVELT BLVD NO,Galloway,NJ,39.41381939,-74.36924576,RES1,3001,,16,NE,1972,1972,3102,2,1,1446.869681,1446.869681,3507,YES,30.56,41.88,1,0.7,6106,115.282884,124.794913,134.703621,140.530216,I,Above,Gable,0,5701,,36.221247,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13596,NJBF000079503,421 LAFAYETTE BLVD,Galloway,NJ,39.41143528,-74.37048913,RES1,3001,,16,NE,1966,1966,3102,2,1,1019.014341,1019.014341,3507,NO,27.57,34.43,1,-0.57,6106,115.282489,124.795006,134.702585,140.540587,I,Above,Flat,0,5701,,30.99542235,0,0,,,,1,1,,0.03,nav,1,1966,2,, 13597,NJBF000081260,1300 VARDON CIRCLE,Galloway,NJ,39.41834821,-74.37330768,RES1,3001,,17,NE,1998,1998,3102,2,1,2147.469111,2147.469111,3507,NO,35.15,42.86,1,1.44,6106,115.154419,124.672358,134.567016,140.407137,I,Above,Gable,0,5701,,39.00547572,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 13598,NJBF000081385,916 N SHORE DR,Galloway,NJ,39.418972,-74.3783485,RES1,3001,,16,NE,1973,1973,3103,2,1,811.1723727,811.1723727,3505,NO,19.12,32.76,3,-2.87,6106,115.046146,124.570134,134.451959,140.31711,I,Above,Flat,0,5701,,25.94050536,0,0,,,,1,1,,0.03,nav,1,1973,2,, 13599,NJBF000081417,930 N SHORE DR,Galloway,NJ,39.41910286,-74.37716942,RES1,3001,,19,NE,2015,2015,3103,2,1,1997.678154,1997.678154,3505,NO,32.72,47.57,3,1,6106,115.068713,124.591265,134.475815,140.334669,I,Above,Gable,0,5701,,40.14612755,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 13600,NJBF000081402,908 N SHORE DR,Galloway,NJ,39.41903825,-74.37905297,RES1,3001,,17,NE,1979,1979,3103,3,1,3453.455921,3453.455921,3505,NO,64.48,76.39,3,7.4,6106,115.03122,124.556081,134.43615,140.304757,I,Above,Flat,0,5701,,70.43263815,0,0,,,,1,1,,0.03,nav,1,1979,3,, 13601,NJBF000081827,1407 E SHORE DR,Galloway,NJ,39.42339907,-74.36552154,RES1,3001,,17,NE,1907,1907,3102,2,1,3012.700513,3012.700513,3507,NO,35.41,44.26,1,2.9,6106,115.259958,124.770719,134.679685,140.469221,I,Above,Hip,0,5701,,39.83564791,0,0,,,,1,1,,0.03,nav,1,1907,2,, 13602,NJBF000081684,1225 E SHORE DR,Galloway,NJ,39.42181921,-74.36490261,RES1,3001,,NaN,NE,1957,0,3102,2,1,1250.715121,1250.715121,3507,NO,34.55,47.09,1,2.45,6106,115.288359,124.798287,134.710435,140.499094,I,Above,Flat,0,5701,,40.81954962,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 13603,NJBF000081706,8 TRAVERS PLACE,Galloway,NJ,39.42208522,-74.36639284,RES1,3001,,17,NE,1989,1989,3102,2,1,1779.285357,1779.285357,3507,NO,34.87,43.01,1,0.57,6106,115.255766,124.767112,134.675253,140.471667,I,Above,Hip,0,5701,,38.94014842,0,0,,,,1,1,,0.03,nav,1,1989,2,, 13604,NJBF000081616,1046 N SHORE DR,Galloway,NJ,39.42091051,-74.37244146,RES1,3001,,16,NE,1961,1961,3102,2,1,1461.643708,1461.643708,3507,NO,32.68,46.24,1,0.34,6106,115.145967,124.663228,134.557556,140.388453,I,Above,Gable,0,5701,,39.45749329,0,0,,,,1,1,,0.03,nav,1,1961,2,, 13605,NJBF000081611,234 HAGEN RD,Galloway,NJ,39.42081907,-74.36737268,RES1,3001,,17,NE,1993,1993,3102,2,1,1582.694121,1582.694121,3507,NO,32.01,42.3,1,-0.79,6106,115.248912,124.760966,134.667928,140.471792,I,Above,Hip,0,5701,,37.15783805,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 13606,NJBF000081777,1309 E SHORE DR,Galloway,NJ,39.42281468,-74.36486825,RES1,3001,,16,NE,1960,1960,3102,2,1,1865.062133,1865.062133,3507,NO,34.87,41.62,1,0.15,6106,115.278971,124.78906,134.700276,140.487147,I,Above,Gable,0,5701,,38.24540848,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 13607,NJBF000081776,1505 E SHORE DR,Galloway,NJ,39.4228133,-74.36772836,RES1,3001,,16,NE,1955,1955,3102,1,1,3619.727786,3619.727786,3507,NO,18.86,31.52,1,2.98,6106,115.221607,124.734304,134.638367,140.440847,I,Above,Hip,0,5701,,25.18871025,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 13608,NJBF000081711,1512 E SHORE DR,Galloway,NJ,39.422152,-74.3680075,RES1,3001,,17,NE,1989,1989,3102,1,1,2037.304193,2037.304193,3507,NO,14.57,28.77,1,1.39,6106,115.222655,124.735537,134.639579,140.444664,I,Above,Hip,0,5701,,21.67203694,0,1.1,,,,1,1,,0.03,nav,1,1989,1,, 13609,NJBF000081738,1513 E SHORE DR,Galloway,NJ,39.42242753,-74.368459,RES1,3001,,16,NE,1981,1981,3102,2,1,1256.048367,1256.048367,3507,NO,27.52,38.07,1,1.5,6106,115.210806,124.724155,134.626795,140.433856,I,Above,Flat,0,5701,,32.79534795,0,0,,,,1,1,,0.03,nav,1,1981,2,, 13610,NJBF000081386,902 N SHORE DR,Galloway,NJ,39.41897233,-74.37960417,RES1,3001,,17,NE,1989,1989,3103,3,1,2444.0103,2444.0103,3505,NO,51.72,62.84,3,3.25,6106,115.020719,124.54627,134.425078,140.296606,I,Above,Hip,0,5701,,57.27626171,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 13611,NJBF000081453,4 ROYAL PLACE,Galloway,NJ,39.41928509,-74.36326823,RES1,3001,,17,NE,1989,1989,3102,2,1,1105.433019,1105.433019,3507,NO,24.37,37.05,1,0.41,6106,115.346981,124.854724,134.7735,140.557176,I,Above,Gable,0,5701,,30.71264138,0,0,,,,1,1,,0.03,nav,1,1989,2,, 13612,NJBF000081373,866 W SHORE DR,Galloway,NJ,39.41890899,-74.38020799,RES1,3001,,18,NE,2017,2017,3103,2,1,1159.550183,1159.550183,3505,NO,37,43.26,3,-0.77,6106,115.009109,124.535425,134.412844,140.287546,I,Above,Gable,0,5701,,40.13270197,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 13613,NJBF000081404,208 HAGEN RD,Galloway,NJ,39.41904413,-74.36715186,RES1,3001,,17,NE,1994,1994,3102,2,1,2384.134621,2384.134621,3507,NO,38.88,46.75,1,1.18,6106,115.271418,124.782857,134.692094,140.497768,I,Above,Hip,0,5701,,42.81334945,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 13614,NJBF000081565,226 HAGEN RD,Galloway,NJ,39.42027046,-74.36730455,RES1,3001,,17,NE,1992,1992,3102,2,1,1532.453454,1532.453454,3507,NO,38.56,46.12,1,0.76,6106,115.255855,124.767732,134.675404,140.479823,I,Above,Hip,0,5701,,42.33723889,0,0,,,,1,1,,0.03,nav,1,1992,2,, 13615,NJBF000081365,,Galloway,NJ,39.4188578,-74.38055295,RES1,3001,,NaN,NE,1969,0,3103,4,1,1290.953124,1290.953124,3505,NO,54.34,66.79,3,2.2,6106,115.002626,124.529383,134.406024,140.282564,I,Above,Gable,0,5701,,60.56562555,0,0,,,,1,1,,0.03,nav,1,1969,4,, 13616,NJBF000081375,,Galloway,NJ,39.41892916,-74.38036059,RES1,3001,,NaN,NE,2017,0,3103,4,1,3005.576752,3005.576752,3505,NO,79.05,85.21,3,7.25,6106,115.005806,124.532316,134.40935,140.284783,I,Above,Gable,0,5701,,82.1300566,0,0,,,,1,1,,0.03,nav,1,2017,4,, 13617,NJBF000081414,1002 E SHORE DR,Galloway,NJ,39.41905997,-74.36270777,RES1,3001,,16,NE,1970,1970,3102,1,1,1857.440799,1857.440799,3507,NO,18.64,33.11,1,2.38,6106,115.36052,124.867667,134.788078,140.568969,I,Above,Hip,0,5701,,25.8728199,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 13618,NJBF000081486,1004 N SHORE DR,Galloway,NJ,39.41950272,-74.37601315,RES1,3001,,16,NE,1955,1955,3103,2,1,1783.148692,1783.148692,3505,NO,32.1,46.66,3,7.64,6106,115.08806,124.609252,134.496224,140.348356,I,Above,Hip,0,5701,,39.37900587,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 13619,NJBF000081442,1009 N SHORE DR,Galloway,NJ,39.41923051,-74.37542258,RES1,3001,,17,NE,1997,1997,3103,1,1,2176.08814,2176.08814,3505,YES,20,30.91,3,8.24,6106,115.102735,124.623219,134.511883,140.361463,I,Above,Hip,0,5701,,25.45304549,0,1.1,,,,1,1,,0.03,nav,1,1997,1,, 13620,NJBF000080385,,Galloway,NJ,39.4148965,-74.368389,RES1,3001,,NaN,NE,1986,0,3102,2,1,2516.796112,2516.796112,3507,NO,28.87,43.08,1,2.35,6106,115.289056,124.800517,134.710438,140.530304,I,Above,Hip,0,5701,,35.97869548,0,0,,,,1,1,,0.03,nav,1,1986,2,, 13621,NJBF000080310,107 WASHINGTON DR,Galloway,NJ,39.41465121,-74.36823991,RES1,3001,,16,NE,1970,1970,3102,1,1,1981.391137,1981.391137,3507,NO,17.11,28.98,1,1.42,6106,115.294591,124.805791,134.716295,140.535788,I,Above,Hip,0,5701,,23.04689362,0,0,,,,1,1,,0.03,nav,1,1970,1,, 13622,NJBF000080277,211 13TH STREET NO,Galloway,NJ,39.41452673,-74.35564161,RES1,3001,,20,NE,2007,2007,3102,3,1,1940.08212,1940.08212,3507,YES,41.54,48.86,1,1.06,6106,115.548966,125.047487,134.990152,140.737488,I,Above,Flat,0,5701,,45.20106398,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 13623,NJBF000080320,,Galloway,NJ,39.414692,-74.3593565,RES1,3001,,NaN,NE,1969,0,3102,2,1,1614.014925,1614.014925,3507,NO,28.19,36.37,1,2.85,6106,115.472835,124.974851,134.907786,140.676732,I,Above,Gable,0,5701,,32.27887059,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13624,NJBF000080765,1306 RAY AVE,Galloway,NJ,39.41621545,-74.37373172,RES1,3001,,17,NE,1988,1988,3102,2,1,1589.540867,1589.540867,3507,NO,24.79,30.47,1,1.5,6106,115.167583,124.685635,134.5812,140.427572,I,Above,Flat,0,5701,,27.62985686,0,0,,,,1,1,,0.03,nav,1,1988,2,, 13625,NJBF000080780,1302 RAY AVE,Galloway,NJ,39.41627038,-74.37347042,RES1,3001,,17,NE,1994,1994,3102,1,1,3829.920928,3829.920928,3507,NO,17,27.74,1,-0.38,6106,115.17232,124.69007,134.586228,140.431101,I,Above,Flat,0,5701,,22.36747404,0,1.1,,,,1,1,,0.03,nav,1,1994,1,, 13626,NJBF000080370,26 KIRKWOOD CIRCLE,Galloway,NJ,39.41486896,-74.36271002,RES1,3001,,17,NE,1996,1996,3102,2,1,1843.713347,1843.713347,3507,NO,24.73,31.89,1,-0.91,6106,115.403682,124.909075,134.833301,140.621298,I,Above,Hip,0,5701,,28.31252559,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 13627,NJBF000081203,1309 VARDON RD,Galloway,NJ,39.41801765,-74.37391704,RES1,3001,,17,NE,1990,1990,3102,1,1,2082.913424,2082.913424,3507,NO,19.01,30.72,1,1.22,6106,115.145467,124.664062,134.557537,140.40149,I,Above,Gable,0,5701,,24.86049329,0,0,,,,1,1,,0.03,nav,1,1990,1,, 13628,NJBF000081211,1305 VARDON RD,Galloway,NJ,39.418065,-74.37355776,RES1,3001,,17,NE,1987,1987,3102,2,1,1862.819757,1862.819757,3507,NO,24.93,37.36,1,1.19,6106,115.152244,124.670429,134.564738,140.406707,I,Above,Gable,0,5701,,31.14636648,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 13629,NJBF000079161,,Galloway,NJ,39.4099195,-74.3717275,RES1,3001,,NaN,NE,1969,0,3102,2,1,1865.197267,1865.197267,3507,NO,25.98,37.73,1,1.2,6106,115.273194,124.786574,134.692274,140.540084,I,Above,Gable,0,5701,,31.85147873,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13630,NJBF000081214,837 W SHORE DR,Galloway,NJ,39.41808257,-74.38153306,RES1,3001,,17,NE,1972,1972,3103,2,1,1155.971137,1155.971137,3505,NO,42.37,55.63,3,6.46,6106,114.990541,124.518589,134.393609,140.276613,I,Above,Gable,0,5701,,49.00073836,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13631,NJBF000081223,1301 VARDON RD,Galloway,NJ,39.41812477,-74.37324656,RES1,3001,,18,NE,2003,2003,3102,2,1,1874.035784,1874.035784,3507,NO,21.56,29.37,1,0.33,6106,115.157917,124.675752,134.570768,140.410978,I,Above,Gable,0,5701,,25.46323865,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 13632,NJBF000079189,301 BAYSHORE AVE,Galloway,NJ,39.4100255,-74.3684165,RES1,3001,,18,NE,2016,2016,3102,3,1,1796.870603,1796.870603,3507,NO,51.87,65.16,1,2.46,6106,115.339122,124.848398,134.762222,140.591432,I,Above,Hip,0,5701,,58.51107103,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 13633,NJBF000078907,115 4TH STREET SO,Galloway,NJ,39.40826616,-74.36703199,RES1,3001,,15,NE,1955,1955,3102,1,1,784.1259689,784.1259689,3507,NO,19.59,29.5,1,1.03,6106,115.385584,124.892142,134.81073,140.635552,I,Above,Gable,0,5701,,24.5452651,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13634,NJBF000078598,164 8TH STREET SO,Galloway,NJ,39.40639534,-74.37048021,RES1,3001,,16,NE,1950,1950,3102,2,1,1126.884816,1126.884816,3507,YES,23.63,34.03,1,-0.14,6106,115.335525,124.845325,134.75667,140.60467,I,Above,Gable,0,5701,,28.82726556,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 13635,NJBF000079556,205 7TH STREET NO,Galloway,NJ,39.41166986,-74.35952569,RES1,3001,,15,NE,1955,1955,3102,1,1,918.5887933,918.5887933,3507,NO,16.06,25.56,1,-0.71,6106,115.501017,125.001354,134.93636,140.711518,I,Above,Hip,0,5701,,20.81129546,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13636,NJBF000079575,202 SHERIDAN PLACE,Galloway,NJ,39.41175046,-74.36590226,RES1,3001,,16,NE,1977,1977,3102,1,1,1535.406706,1535.406706,3507,NO,19.26,28.45,1,-0.18,6106,115.371865,124.879099,134.797862,140.609635,I,Above,Gable,0,5701,,23.85262987,0,0,,,,1,1,,0.03,nav,1,1977,1,, 13637,NJBF000080114,25 HEALD CIRCLE,Galloway,NJ,39.41396432,-74.36620395,RES1,3001,,17,NE,1969,1985,3102,2,1,1250.805617,1250.805617,3507,NO,21.88,28.42,1,0.8,6106,115.342749,124.851402,134.767584,140.576985,I,Above,Gable,0,5701,,25.14843174,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13638,NJBF000080268,113 ROOSEVELT BLVD NO,Galloway,NJ,39.4145051,-74.3691341,RES1,3001,,16,NE,1959,1959,3102,1,1,1735.33072,1735.33072,3507,NO,17.15,23.72,1,2.04,6106,115.278058,124.790218,134.698622,140.52332,I,Above,Gable,0,5701,,20.43166141,0,0,,,,1,1,,0.03,nav,1,1959,1,, 13639,NJBF000079571,606 E BEACH AVE,Galloway,NJ,39.41172636,-74.36018167,RES1,3001,,15,NE,1950,1950,3102,1,1,1008.827789,1008.827789,3507,NO,11.42,23.17,1,-0.03,6106,115.487254,124.988295,134.921576,140.700478,I,Above,Hip,0,5701,,17.2956526,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13640,NJBF000081100,804 SHERIDAN BLVD,Galloway,NJ,39.41754245,-74.36724538,RES1,3001,,16,NE,1957,1957,3102,1,1,1689.621604,1689.621604,3507,NO,13.71,24.31,1,-0.93,6106,115.284904,124.796019,134.706431,140.515228,I,Above,Gable,0,5701,,19.01180458,0,0,,,,1,1,,0.03,nav,1,1957,1,, 13641,NJBF000080123,1502 SHERIDAN BLVD,Galloway,NJ,39.41400315,-74.37817473,RES1,3001,,16,NE,1973,1973,3103,2,1,1180.052039,1180.052039,3505,NO,30.48,38.64,3,-0.7,6106,115.100171,124.623399,134.510086,140.384191,I,Above,Flat,0,5701,,34.56196032,0,0,,,,1,1,,0.03,nav,1,1973,2,, 13642,NJBF000079429,426 LAFAYETTE BLVD,Galloway,NJ,39.41109986,-74.37109826,RES1,3001,,17,NE,1988,1988,3102,1,1,1911.989845,1911.989845,3507,NO,20.41,34.2,1,1.26,6106,115.273651,124.786775,134.693113,140.535123,I,Above,Hip,0,5701,,27.30545238,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 13643,NJBF000079597,105 HAMILTON PLACE,Galloway,NJ,39.41185293,-74.36231725,RES1,3001,,15,NE,1960,1960,3102,1,1,921.4058958,921.4058958,3507,NO,10.94,20.62,1,0.25,6106,115.443001,124.94635,134.874086,140.66517,I,Above,Gable,0,5701,,15.77770238,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13644,NJBF000081159,926 SARAZEN RD,Galloway,NJ,39.41781192,-74.37944879,RES1,3001,,16,NE,1967,1967,3103,2,1,1976.263855,1976.263855,3505,YES,39.88,49.82,3,6.75,6106,115.035561,124.560902,134.441159,140.314183,I,Above,Gable,0,5701,,44.85156484,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 13645,NJBF000081143,924 SARAZEN RD,Galloway,NJ,39.41773327,-74.37925055,RES1,3001,,17,NE,1968,1968,3103,3,1,1820.953722,1820.953722,3505,NO,42.78,56.65,3,4.41,6106,115.040375,124.56546,134.446265,140.318437,I,Above,Gable,0,5701,,49.71639356,0,1.1,,,,1,1,,0.03,nav,1,1968,3,, 13646,NJBF000081253,1306 VARDON CIRCLE,Galloway,NJ,39.41832212,-74.37382612,RES1,3001,,17,NE,1987,1987,3102,1,1,1756.530175,1756.530175,3507,NO,11.38,25.51,1,-0.97,6106,115.144218,124.66275,134.556165,140.399072,I,Above,Gable,0,5701,,18.44626458,0,0,,,,1,1,,0.03,nav,1,1987,1,, 13647,NJBF000079949,114 LINCOLN DR,Galloway,NJ,39.41343574,-74.36998877,RES1,3001,,17,NE,1960,1960,3102,3,1,1953.594017,1953.594017,3507,NO,43.46,56.28,1,2.73,6106,115.271837,124.784587,134.691774,140.523181,I,Above,Flat,0,5701,,49.86840452,0,1.1,,,,1,1,,0.03,nav,1,1960,3,, 13648,NJBF000079335,,Galloway,NJ,39.41071303,-74.37382091,RES1,3001,,NaN,NE,1969,0,3102,2,1,2148.150922,2148.150922,3507,NO,34.62,44.59,1,1.67,6106,115.222498,124.738954,134.638902,140.496542,I,Above,Gable,0,5701,,39.60372198,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13649,NJBF000079327,,Galloway,NJ,39.41065157,-74.37360143,RES1,3001,,NaN,NE,1969,0,3102,2,1,3387.428921,3387.428921,3507,NO,24.19,37.49,1,2.49,6106,115.227595,124.743736,134.644271,140.500841,I,Above,Flat,0,5701,,30.83812108,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13650,NJBF000079217,201 E EVANS BLVD,Galloway,NJ,39.41019323,-74.36453886,RES1,3001,,16,NE,1956,1956,3102,2,1,1614.066159,1614.066159,3507,YES,34.3,47.46,1,-0.81,6106,115.415647,124.920443,134.843854,140.650771,I,Above,Gable,0,5701,,40.88240629,0,0,,,,1,1,,0.03,nav,1,1956,2,, 13651,NJBF000079071,,Galloway,NJ,39.40931783,-74.36218499,RES1,3001,,NaN,NE,1957,0,3102,2,1,2675.980746,2675.980746,3507,NO,21.81,33.01,1,0.15,6106,115.472283,124.973864,134.903895,140.698847,I,Above,Flat,0,5701,,27.41071119,0,0,,,,1,1,,0.03,nav,1,1957,2,, 13652,NJBF000078493,218 7TH STREET SO,Galloway,NJ,39.40581509,-74.36886912,RES1,3001,,16,NE,1955,1955,3102,1,1,1801.510132,1801.510132,3505,NO,20.67,27.95,3,1.75,6106,115.374315,124.881609,134.79734,140.63745,I,Above,Hip,0,5701,,24.30952753,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13653,NJBF000081249,1308 VARDON CIRCLE,Galloway,NJ,39.41830141,-74.37398532,RES1,3001,,17,NE,1993,1993,3102,2,1,1253.90827,1253.90827,3507,NO,38.75,47.88,1,1.83,6106,115.141219,124.659932,134.552978,140.396762,I,Above,Gable,0,5701,,43.31170712,0,0,,,,1,1,,0.03,nav,1,1993,2,, 13654,NJBF000081443,207 HAGEN RD,Galloway,NJ,39.41923622,-74.36665945,RES1,3001,,17,NE,1991,1991,3102,2,1,1839.390683,1839.390683,3507,NO,35.99,43.96,1,-0.07,6106,115.279373,124.790367,134.700654,140.503287,I,Above,Gable,0,5701,,39.9795291,0,1.1,,,,1,1,,0.03,nav,1,1991,2,, 13655,NJBF000081384,918 N SHORE DR,Galloway,NJ,39.41897192,-74.37815881,RES1,3001,,16,NE,1981,1981,3103,2,1,1783.369252,1783.369252,3505,NO,34.5,44.49,3,3.72,6106,115.049993,124.573747,134.456031,140.320211,I,Above,Flat,0,5701,,39.49515116,0,0,,,,1,1,,0.03,nav,1,1981,2,, 13656,NJBF000080044,101 ROOSEVELT BLVD NO,Galloway,NJ,39.41375542,-74.36856766,RES1,3001,,16,NE,1972,1972,3102,1,1,1561.093928,1561.093928,3507,NO,20.98,32.33,1,1.57,6106,115.297235,124.808454,134.718904,140.541871,I,Above,Hip,0,5701,,26.65412475,0,0,,,,1,1,,0.03,nav,1,1972,1,, 13657,NJBF000081426,912 N SHORE DR,Galloway,NJ,39.41917411,-74.37867884,RES1,3001,,17,NE,1994,1994,3103,2,1,2158.956785,2158.956785,3505,NO,31.65,36.73,3,3.54,6106,115.037427,124.561824,134.442664,140.309106,I,Above,Gable,0,5701,,34.19061996,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 13658,NJBF000081410,920 N SHORE DR,Galloway,NJ,39.4190525,-74.37799381,RES1,3001,,16,NE,1997,1997,3103,2,1,2902.276781,2902.276781,3505,NO,39.82,51.65,3,5.35,6106,115.052528,124.576081,134.458687,140.32187,I,Above,Hip,0,5701,,45.73429617,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 13659,NJBF000081432,1007 N SHORE DR,Galloway,NJ,39.41919448,-74.37557182,RES1,3001,,17,NE,1989,1989,3103,2,1,1955.905485,1955.905485,3505,NO,30.28,36.76,3,-0.55,6106,115.100096,124.620753,134.50909,140.359514,I,Above,Hip,0,5701,,33.52023303,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 13660,NJBF000081702,1 HUTCHISON PLACE,Galloway,NJ,39.42203045,-74.36577094,RES1,3001,,17,NE,1996,1996,3102,2,1,1573.917639,1573.917639,3507,NO,24.91,37.05,1,-0.89,6106,115.268806,124.779568,134.689322,140.482419,I,Above,Hip,0,5701,,30.97907777,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 13661,NJBF000081735,13 TRAVERS PLACE,Galloway,NJ,39.42237469,-74.36687086,RES1,3001,,17,NE,1993,1993,3102,1,1,2044.667546,2044.667546,3507,NO,15.97,27.88,1,0.82,6106,115.243237,124.755074,134.661724,140.460272,I,Above,Hip,0,5701,,21.92164365,0,1.1,,,,1,1,,0.03,nav,1,1993,1,, 13662,NJBF000081647,12 HUTCHISON PLACE,Galloway,NJ,39.42127344,-74.36643817,RES1,3001,,17,NE,1984,1984,3102,2,1,1860.939979,1860.939979,3507,NO,28.78,34.22,1,-0.53,6106,115.263091,124.774332,134.683179,140.481173,I,Above,Flat,0,5701,,31.49929518,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 13663,NJBF000081724,1510 E SHORE DR,Galloway,NJ,39.42230023,-74.36784507,RES1,3001,,17,NE,1985,1985,3102,1,1,1773.261014,1773.261014,3507,NO,12.76,25.55,1,1.38,6106,115.224435,124.73718,134.641477,140.445435,I,Above,Hip,0,5701,,19.15685901,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13664,NJBF000081447,936 N SHORE DR,Galloway,NJ,39.41926556,-74.37671755,RES1,3001,,17,NE,1950,1950,3103,2,1,2624.880948,2624.880948,3505,YES,35.44,48.09,3,-2.01,6106,115.076194,124.59821,134.483698,140.339919,I,Above,Hip,0,5701,,41.76751418,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 13665,NJBF000080402,,Galloway,NJ,39.41494263,-74.35748449,RES3D,3001,,NaN,ME,1969,0,3301,2,1,5024.843561,5024.843561,3507,NO,29.74,41.7,1,0.77,6106,115.507759,125.008182,134.945719,140.703273,I,Above,Flat,0,NaN,,35.71640469,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13666,NJBF000081304,850 W SHORE DR,Galloway,NJ,39.41857119,-74.38154981,RES1,3001,,21,NE,1973,2018,3103,3,1,2828.675732,2828.675732,3505,NO,43.79,49.49,3,4.62,6106,114.985285,124.513341,134.387868,140.269977,I,Above,Hip,0,5701,,46.64037334,0,0,,,,1,1,,0.03,nav,1,1973,3,, 13667,NJBF000081301,903 N SHORE DR,Galloway,NJ,39.41856385,-74.37955954,RES1,3001,,16,NE,1981,1981,3103,2,1,1467.459789,1467.459789,3505,YES,38.56,52.98,3,8.43,6106,115.025721,124.551218,134.430513,140.302618,I,Above,Gable,0,5701,,45.76932781,0,0,,,,1,1,,0.03,nav,1,1981,2,, 13668,NJBF000081300,210 WASHINGTON DR,Galloway,NJ,39.41855864,-74.36955205,RES1,3001,,16,NE,1971,1971,3102,2,1,1888.688493,1888.688493,3507,YES,40.43,47.94,1,1.58,6106,115.228046,124.741865,134.645585,140.465203,I,Above,Gable,0,5701,,44.18338635,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 13669,NJBF000079405,100 PUTNAM PLACE,Galloway,NJ,39.41100211,-74.36324185,RES1,3001,,16,NE,1967,1967,3102,2,1,923.0650263,923.0650263,3507,YES,36.31,45.18,1,1.84,6106,115.433296,124.937132,134.863195,140.661162,I,Above,Hip,0,5701,,40.74877662,0,0,,,,1,1,,0.03,nav,1,1967,2,, 13670,NJBF000081119,30 VARDON RD,Galloway,NJ,39.41762,-74.3732045,RES1,3001,,16,NE,1981,1981,3102,2,1,1066.050673,1066.050673,3507,NO,32.99,40.77,1,-0.68,6106,115.163924,124.681626,134.577213,140.418134,I,Above,Flat,0,5701,,36.87817362,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 13671,NJBF000081245,842 W SHORE DR,Galloway,NJ,39.4182846,-74.38222056,RES1,3001,,17,NE,1995,1995,3103,2,1,1807.665151,1807.665151,3505,NO,37.51,44.39,3,-0.49,6106,114.974539,124.503489,134.376683,140.262716,I,Above,Hip,0,5701,,40.94680561,0,0,,,,1,1,,0.03,nav,1,1995,2,, 13672,NJBF000080922,1308 OUIMET RD,Galloway,NJ,39.41688375,-74.3740656,RES1,3001,,17,NE,1986,1986,3102,1,1,1769.162866,1769.162866,3507,NO,11.04,18.68,1,-0.25,6106,115.153998,124.672582,134.56673,140.413604,I,Above,Gable,0,5701,,14.86140551,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13673,NJBF000081081,900 SHERIDAN BLVD,Galloway,NJ,39.41747082,-74.36763036,RES1,3001,,16,NE,1981,1981,3102,1,1,1702.020326,1702.020326,3507,NO,16.65,28.53,1,2.58,6106,115.27788,124.789377,134.698893,140.509937,I,Above,Flat,0,5701,,22.58934648,0,0,,,,1,1,,0.03,nav,1,1981,1,, 13674,NJBF000081034,1309 OUIMET RD,Galloway,NJ,39.41729796,-74.3741468,RES1,3001,,16,NE,1985,1985,3102,1,1,1766.128002,1766.128002,3507,NO,18.19,24.7,1,2.15,6106,115.148142,124.666895,134.560469,140.406988,I,Above,Gable,0,5701,,21.44323904,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13675,NJBF000080926,27 MACDONALD PLACE,Galloway,NJ,39.41689347,-74.36690971,RES1,3001,,17,NE,1986,1986,3102,1,1,1526.245296,1526.245296,3507,NO,16.85,24.36,1,2.24,6106,115.298307,124.808863,134.720707,140.528795,I,Above,Flat,0,5701,,20.60367595,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13676,NJBF000081035,912 SARAZEN RD,Galloway,NJ,39.4172982,-74.37834608,RES1,3001,,18,NE,2009,2009,3103,3,1,1462.295081,1462.295081,3505,NO,48.74,62.91,3,8.93,6106,115.063127,124.587034,134.470415,140.338814,I,Above,Hip,0,5701,,55.8238056,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 13677,NJBF000080874,705 SHERIDAN BLVD,Galloway,NJ,39.41667721,-74.36507736,RES1,3001,,17,NE,1971,1971,3102,1,1,1617.821374,1617.821374,3507,NO,11.2,17.37,1,0.23,6106,115.337412,124.845994,134.762635,140.560885,I,Above,Gable,0,5701,,14.28586495,0,0,,,,1,1,,0.03,nav,1,1971,1,, 13678,NJBF000081040,209 LINCOLN DR,Galloway,NJ,39.41733498,-74.37091542,RES1,3001,,16,NE,1979,1979,3102,1,1,2816.542081,2816.542081,3507,NO,17.49,32.37,1,0.95,6106,115.213052,124.728084,134.629566,140.458759,I,Above,Gable,0,5701,,24.93250798,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 13679,NJBF000081062,1326 VARDON RD,Galloway,NJ,39.41739172,-74.37577604,RES1,3001,,18,NE,2000,2000,3103,2,1,1302.192705,1302.192705,3505,NO,47.62,58.94,3,8.93,6106,115.114231,124.634954,134.524471,140.379372,I,Above,Hip,0,5701,,53.28134332,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 13680,NJBF000081057,1328 VARDON RD,Galloway,NJ,39.41737379,-74.37593389,RES1,3001,,18,NE,2000,2000,3103,2,1,1253.054661,1253.054661,3505,NO,28.63,40.82,3,4.2,6106,115.111216,124.632129,134.521279,140.377039,I,Above,Gable,0,5701,,34.72372154,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 13681,NJBF000080841,1313 RAY AVE,Galloway,NJ,39.4165555,-74.3743588,RES1,3001,,17,NE,1998,1998,3102,2,1,1368.881865,1368.881865,3507,NO,21.96,35.19,1,-0.53,6106,115.151417,124.670292,134.564019,140.413067,I,Above,Gable,0,5701,,28.57455512,0,1.2,,,,1,1,,0.03,nav,1,1998,2,, 13682,NJBF000080861,1101 JENKINS PKWY,Galloway,NJ,39.41661075,-74.36067936,RES1,3001,,NaN,NE,1965,1965,3102,2,1,1712.648467,1712.648467,3507,NO,36.11,42.19,1,-0.09,6106,115.426421,124.930676,134.858531,140.631909,I,Above,Hip,0,5701,,39.15301236,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13683,NJBF000080714,58 KIRKWOOD CIRCLE,Galloway,NJ,39.41599394,-74.36351468,RES1,3001,,16,NE,1981,1981,3102,1,1,1884.798668,1884.798668,3507,NO,20.12,33.73,1,1.59,6106,115.37586,124.882583,134.80378,140.594408,I,Above,Gable,0,5701,,26.92557175,0,0,,,,1,1,,0.03,nav,1,1981,1,, 13684,NJBF000080887,19 VARDON RD,Galloway,NJ,39.41670807,-74.37250348,RES1,3001,,17,NE,1998,1998,3102,1,1,2278.328731,2278.328731,3507,NO,20.46,25.82,1,2.62,6106,115.187391,124.704096,134.602235,140.44112,I,Above,Hip,0,5701,,23.14207442,0,1.1,,,,1,1,,0.03,nav,1,1998,1,, 13685,NJBF000080724,137 ROOSEVELT BLVD NO,Galloway,NJ,39.416021,-74.36984176,RES1,3001,,16,NE,1977,1977,3102,1,1,1614.853074,1614.853074,3507,NO,13.99,25.84,1,-0.17,6106,115.248162,124.761636,134.666958,140.492736,I,Above,Hip,0,5701,,19.9142834,0,0,,,,1,1,,0.03,nav,1,1977,1,, 13686,NJBF000080899,1318 OUIMET RD,Galloway,NJ,39.41678628,-74.37496344,RES1,3001,,16,NE,1985,1985,3102,1,1,1411.003224,1411.003224,3507,NO,13.95,22.44,1,1.37,6106,115.136851,124.656497,134.548543,140.400339,I,Above,Gable,0,5701,,18.19428854,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13687,NJBF000080519,15 KIRKWOOD CIRCLE,Galloway,NJ,39.41531972,-74.36358636,RES1,3001,,17,NE,1986,1986,3102,1,1,1549.736145,1549.736145,3507,NO,11.68,25.91,1,-0.56,6106,115.381401,124.887896,134.809509,140.601711,I,Above,Gable,0,5701,,18.7902222,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13688,NJBF000080531,119 WASHINGTON DR,Galloway,NJ,39.41534309,-74.36867346,RES1,3001,,16,NE,1958,1958,3102,2,1,2419.600823,2419.600823,3507,YES,38.03,50.73,1,2.86,6106,115.27872,124.790659,134.699484,140.520098,I,Above,Hip,0,5701,,44.38133743,0,1.2,,,,1,1,,0.03,nav,1,1958,2,, 13689,NJBF000080541,1 KIRKWOOD CIRCLE,Galloway,NJ,39.41537076,-74.36481076,RES1,3001,,17,NE,1992,1992,3102,2,1,1487.953243,1487.953243,3507,NO,36.51,51.47,1,0.38,6106,115.356235,124.864015,134.782489,140.581532,I,Above,Gable,0,5701,,43.98985711,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 13690,NJBF000080520,13 KIRKWOOD CIRCLE,Galloway,NJ,39.4153255,-74.3637645,RES1,3001,,17,NE,1986,1986,3102,1,1,1471.699318,1471.699318,3507,NO,14.93,20.52,1,-0.82,6106,115.37774,124.88442,134.805575,140.598782,I,Above,Gable,0,5701,,17.72522261,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13691,NJBF000080622,45 KIRKWOOD CIRCLE,Galloway,NJ,39.41564969,-74.36424836,RES1,3001,,17,NE,1992,1992,3102,2,1,1632.760469,1632.760469,3507,NO,26.98,37.76,1,2.99,6106,115.364677,124.871995,134.791644,140.587019,I,Above,Hip,0,5701,,32.37202473,0,0,,,,1,1,,0.03,nav,1,1992,2,, 13692,NJBF000080549,39 11TH STREET NO,Galloway,NJ,39.41539185,-74.35920496,RES1,3001,,18,NE,2007,2007,3102,3,1,2017.854939,2017.854939,3507,NO,39.9,48.59,1,-0.26,6106,115.468606,124.970867,134.903582,140.670465,I,Above,Hip,0,5701,,44.24195594,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 13693,NJBF000079602,,Galloway,NJ,39.4118745,-74.35940283,RES1,3001,,NaN,NE,2007,0,3102,2,1,604.0660483,604.0660483,3507,NO,32.48,41.23,1,-0.17,6106,115.501336,125.001684,134.936841,140.710917,I,Above,Flat,0,5701,,36.85476705,0,0,,,,1,1,,0.03,nav,1,2007,2,, 13694,NJBF000080047,545 CAVERLY DR,Galloway,NJ,39.41376094,-74.37540929,RES1,3001,,17,NE,1986,1986,3103,2,1,1332.654777,1332.654777,3505,NO,39.2,48.55,3,5.05,6106,115.158779,124.678327,134.571923,140.431976,I,Above,Flat,0,5701,,43.87231118,0,0,,,,1,1,,0.03,nav,1,1986,2,, 13695,NJBF000080024,543 CAVERLY DR,Galloway,NJ,39.41369378,-74.37523805,RES1,3001,,17,NE,1988,1988,3103,2,1,1939.38273,1939.38273,3505,NO,32.26,38.01,3,-2.34,6106,115.162935,124.682245,134.576314,140.435592,I,Above,Hip,0,5701,,35.13268118,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 13696,NJBF000080023,118 LINCOLN DR,Galloway,NJ,39.41368949,-74.37014766,RES1,3001,,16,NE,1973,1973,3102,2,1,1217.58016,1217.58016,3507,YES,30.93,43.11,1,1.11,6106,115.266008,124.779043,134.685623,140.517424,I,Above,Gable,0,5701,,37.02050668,0,0,,,,1,1,,0.03,nav,1,1973,2,, 13697,NJBF000080198,609 W SHORE DR,Galloway,NJ,39.41423256,-74.37989267,RES1,3001,,16,NE,1979,1979,3103,2,1,1061.728194,1061.728194,3505,NO,31.84,39.56,3,1.72,6106,115.062914,124.588502,134.47086,140.353383,I,Above,Gable,0,5701,,35.70205767,0,0,,,,1,1,,0.03,nav,1,1979,2,, 13698,NJBF000080060,802 E EVANS BLVD,Galloway,NJ,39.41379245,-74.36060118,RES1,3001,,15,NE,1955,1955,3102,1,1,1225.854328,1225.854328,3507,NO,13.48,19.65,1,2.41,6106,115.457243,124.959957,134.890474,140.668196,I,Above,Gable,0,5701,,16.56424766,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 13699,NJBF000080214,904 E EVANS BLVD,Galloway,NJ,39.4143115,-74.35990672,RES1,3001,,16,NE,1975,1975,3102,2,1,1353.07378,1353.07378,3507,NO,36.31,47.42,1,0.98,6106,115.465768,124.968096,134.899947,140.672745,I,Above,Hip,0,5701,,41.86434608,0,0,,,,1,1,,0.03,nav,1,1975,2,, 13700,NJBF000080019,538 CAVERLY DR,Galloway,NJ,39.413682,-74.37610249,RES1,3001,,17,NE,1987,1987,3103,1,1,1602.915479,1602.915479,3505,NO,13.14,23.94,3,-2.08,6106,115.145538,124.665961,134.557938,140.421817,I,Above,Flat,0,5701,,18.54036674,0,0,,,,1,1,,0.03,nav,1,1987,1,, 13701,NJBF000079904,40 HEALD RD,Galloway,NJ,39.41328414,-74.36341694,RES1,3001,,NaN,NE,1969,1969,3102,2,1,1058.241897,1058.241897,3507,NO,34.42,42.42,1,1.64,6106,115.405934,124.911253,134.835032,140.629868,I,Above,Gable,0,5701,,38.42036497,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13702,NJBF000079852,17 QUAY BLVD,Galloway,NJ,39.41310996,-74.36629394,RES1,3001,,16,NE,1968,1968,3102,1,1,1720.335969,1720.335969,3507,YES,16.85,24.29,1,1.85,6106,115.349798,124.858156,134.774828,140.586297,I,Above,Flat,0,5701,,20.56772207,0,0,,,,1,1,,0.03,nav,1,1968,1,, 13703,NJBF000079803,518 CAVERLY DR,Galloway,NJ,39.41290981,-74.37458916,RES1,3001,,17,NE,1987,1987,3102,2,1,1570.985119,1570.985119,3507,NO,25.41,33.42,1,2.73,6106,115.184169,124.702415,134.598721,140.456095,I,Above,Hip,0,5701,,29.41149121,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 13704,NJBF000079800,110 8TH STREET NO,Galloway,NJ,39.41290217,-74.36045245,RES1,3001,,17,NE,2015,2015,3102,3,1,907.3576337,907.3576337,3507,NO,41.31,54.17,1,0.69,6106,115.469522,124.971568,134.903206,140.681613,I,Above,Gable,0,5701,,47.74298412,0,0,,,,1,1,,0.03,nav,1,2015,3,, 13705,NJBF000079830,401 SHERIDAN PLACE,Galloway,NJ,39.41300625,-74.36531028,RES1,3001,,NaN,NE,1958,1958,3102,2,1,1508.636182,1508.636182,3507,NO,33.69,42.26,1,-0.3,6106,115.370712,124.877929,134.797159,140.603267,I,Above,Flat,0,5701,,37.97108069,0,0,,,,1,1,,0.03,nav,1,1958,2,, 13706,NJBF000079759,10 QUAY BLVD,Galloway,NJ,39.41272456,-74.36622043,RES1,3001,,16,NE,1973,1973,3102,3,1,1328.931911,1328.931911,3507,NO,42.12,50.7,1,-0.24,6106,115.355293,124.863383,134.780558,140.592319,I,Above,Flat,0,5701,,46.41068382,0,0,,,,1,1,,0.03,nav,1,1973,3,, 13707,NJBF000079798,,Galloway,NJ,39.4129005,-74.35672,RES1,3001,,NaN,NE,1969,0,3102,2,1,2333.089077,2333.089077,3507,NO,30.04,35.13,1,1.67,6106,115.544401,125.042828,134.984066,140.740526,I,Above,Hip,0,5701,,32.58609157,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13708,NJBF000079828,,Galloway,NJ,39.41299866,-74.35694456,RES1,3001,,NaN,NE,1969,0,3102,2,1,2504.162076,2504.162076,3507,NO,31.58,40.19,1,-0.18,6106,115.538856,125.03756,134.978134,140.735763,I,Above,Hip,0,5701,,35.88529235,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13709,NJBF000079779,,Galloway,NJ,39.412807,-74.356848,RES1,3001,,NaN,NE,1948,0,3102,2,1,2446.083654,2446.083654,3507,NO,27.77,42.58,1,0.94,6106,115.542811,125.041295,134.982278,140.739657,I,Above,Hip,0,5701,,35.17756108,0,0,,,,1,1,,0.03,nav,1,1948,2,, 13710,NJBF000079908,404 SHERIDAN PLACE,Galloway,NJ,39.41330526,-74.3657788,RES1,3001,,16,NE,1971,1971,3102,1,1,1597.05763,1597.05763,3507,NO,15.21,29.28,1,0.72,6106,115.358152,124.866032,134.783836,140.592046,I,Above,Hip,0,5701,,22.2473326,0,0,,,,1,1,,0.03,nav,1,1971,1,, 13711,NJBF000079697,508 E EVANS BLVD,Galloway,NJ,39.41239015,-74.3624601,RES1,3001,,17,NE,1999,1999,3102,1,1,1600.173746,1600.173746,3507,NO,17.83,30.41,1,1.49,6106,115.43451,124.938325,134.865266,140.656209,I,Above,Gable,0,5701,,24.11861392,0,0,,,,1,1,,0.03,nav,1,1999,1,, 13712,NJBF000079520,202 7TH STREET NO,Galloway,NJ,39.41150806,-74.35995504,RES1,3001,,15,NE,1950,1950,3102,1,1,1291.948168,1291.948168,3507,NO,17.6,23.71,1,-0.71,6106,115.4941,124.994768,134.928803,140.706763,I,Above,Hip,0,5701,,20.65530362,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13713,NJBF000079614,200 8TH STREET NO,Galloway,NJ,39.4119645,-74.3595095,RES1,3001,,43,NE,1947,1947,3102,2,2,624.0817652,624.0817652,3507,YES,33.38,41.13,1,0.2,6106,115.498244,124.998758,134.933569,140.708114,I,Above,Gable,0,5701,,37.25339621,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 13714,NJBF000079636,200 8TH STREET NO,Galloway,NJ,39.41206201,-74.35939166,RES1,3001,,43,NE,1947,1947,3102,2,2,833.4736074,833.4736074,3507,YES,30.4,36.65,1,2.5,6106,115.499597,125.000055,134.935091,140.708773,I,Above,Gable,0,5701,,33.52394758,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 13715,NJBF000079532,429 LAFAYETTE BLVD,Galloway,NJ,39.41155264,-74.37120402,RES1,3001,,16,NE,1957,1957,3102,1,1,1526.720765,1526.720765,3507,NO,15.04,28.86,1,2.95,6106,115.266793,124.780248,134.685966,140.527671,I,Above,Flat,0,5701,,21.95011075,0,0,,,,1,1,,0.03,nav,1,1957,1,, 13716,NJBF000079738,229 QUAY BLVD,Galloway,NJ,39.41262869,-74.35786146,RES1,3001,,15,NE,1949,1949,3102,1,1,965.449719,965.449719,3507,YES,18.06,32.42,1,0.08,6106,115.524372,125.023699,134.962212,140.725896,I,Above,Gable,0,5701,,25.24347905,0,0,,,,1,1,,0.03,nav,1,1949,1,, 13717,NJBF000079627,607 E BEACH AVE,Galloway,NJ,39.412031,-74.360592,RES1,3001,,19,NE,2008,2008,3102,3,1,2104.477447,2104.477447,3507,NO,42.18,57,1,0.94,6106,115.47582,124.977475,134.909464,140.69022,I,Above,Hip,0,5701,,49.58997951,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 13718,NJBF000079502,417 LAFAYETTE BLVD,Galloway,NJ,39.4114342,-74.37016224,RES1,3001,,16,NE,1960,1960,3102,2,1,1620.357286,1620.357286,3507,YES,37.45,51.82,1,0.16,6106,115.289115,124.801229,134.709618,140.545817,I,Above,Gable,0,5701,,44.63834462,0,0,,,,1,1,,0.03,nav,1,1960,2,, 13719,NJBF000079710,100 QUAY BLVD,Galloway,NJ,39.41243579,-74.36170038,RES1,3001,,16,NE,1957,1957,3102,1,1,2383.371184,2383.371184,3507,YES,19.38,29.09,1,1.8,6106,115.449313,124.952359,134.881195,140.667667,I,Above,Gable,0,5701,,24.23429443,0,0,,,,1,1,,0.03,nav,1,1957,1,, 13720,NJBF000079453,205 6TH STREET NO,Galloway,NJ,39.41120805,-74.3601491,RES1,3001,,15,NE,1959,1959,3102,1,1,881.4415962,881.4415962,3507,NO,21.49,30.63,1,2.24,6106,115.493352,124.994021,134.927796,140.707427,I,Above,Hip,0,5701,,26.05700133,0,0,,,,1,1,,0.03,nav,1,1959,1,, 13721,NJBF000078916,104 5TH STREET SO,Galloway,NJ,39.408329,-74.3688995,RES1,3001,,13,NE,1984,1984,3102,2,2,1660.562347,1660.562347,3507,NO,40.45,51.41,1,1.92,6106,115.34716,124.856081,134.76997,140.605215,I,Above,Hip,0,5701,,45.93225379,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13722,NJBF000079142,461 W SHORE DR,Galloway,NJ,39.4097991,-74.37377783,RES1,3001,,16,NE,1950,1950,3102,2,1,1693.29231,1693.29231,3507,YES,26.55,40,1,0.71,6106,115.232888,124.748899,134.649658,140.508916,I,Above,Gable,0,5701,,33.27499893,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 13723,NJBF000079124,455 W SHORE DR,Galloway,NJ,39.40967496,-74.37324417,RES1,3001,,16,NE,1967,1967,3102,1,1,1473.20339,1473.20339,3507,NO,14.37,28.51,1,2.45,6106,115.245016,124.760262,134.662423,140.519027,I,Above,Gable,0,5701,,21.4443502,0,0,,,,1,1,,0.03,nav,1,1967,1,, 13724,NJBF000079159,200 3RD STREET NO,Galloway,NJ,39.40991869,-74.36286039,RES1,3001,,43,NE,1959,1959,3102,2,2,1063.231453,1063.231453,3507,NO,35.38,46.91,1,0.83,6106,115.452361,124.955093,134.882959,140.680716,I,Above,Hip,0,5701,,41.14865036,0,0,,,,1,1,,0.03,nav,1,1959,2,, 13725,NJBF000078851,,Galloway,NJ,39.40793837,-74.37273181,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2570.658814,2570.658814,3507,NO,13.1,27.21,1,0.76,6106,115.273587,124.787295,134.692002,140.549344,I,Above,Gable,0,5701,,20.1553139,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13726,NJBF000078914,208 VERNON PLACE,Galloway,NJ,39.40831971,-74.36462884,RES1,3001,,16,NE,1950,1950,3102,2,1,855.9528757,855.9528757,3507,NO,24.13,34.68,1,0.92,6106,115.433545,124.937247,134.861828,140.672804,I,Above,Gable,0,5701,,29.40395926,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13727,NJBF000079320,,Galloway,NJ,39.41063699,-74.35891013,RES3D,3001,,NaN,E,1969,0,3303,3,1,4176.474196,4176.474196,3507,NO,41.7,55.86,1,1.44,6106,115.524243,125.02325,134.960646,140.734006,I,Above,Hip,0,NaN,,48.77887058,0,0,,,,1,1,,0.03,nav,1,1969,3,, 13728,NJBF000079130,457 W SHORE DR,Galloway,NJ,39.4097185,-74.37341,RES1,3001,,16,NE,1963,1963,3102,1,1,991.8642335,991.8642335,3507,NO,16.58,24.44,1,0.14,6106,115.241199,124.756685,134.658407,140.515828,I,Above,Gable,0,5701,,20.50783399,0,0,,,,1,1,,0.03,nav,1,1963,1,, 13729,NJBF000079138,28 GIRARD PLACE,Galloway,NJ,39.40975575,-74.36803735,RES1,3001,,15,NE,1962,1962,3102,2,1,1272.275878,1272.275878,3507,YES,31.96,41.41,1,0.15,6106,115.349612,124.858279,134.773252,140.600858,I,Above,Hip,0,5701,,36.68498044,0,0,,,,1,1,,0.03,nav,1,1962,2,, 13730,NJBF000079390,214 6TH STREET NO,Galloway,NJ,39.4109322,-74.36044786,RES1,3001,,15,NE,1960,1960,3102,1,1,995.5542687,995.5542687,3507,NO,15.08,30.03,1,2.55,6106,115.490242,124.991039,134.924266,140.70614,I,Above,Hip,0,5701,,22.55389163,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13731,NJBF000079158,303 BAYSHORE AVE,Galloway,NJ,39.40990074,-74.368426,RES1,3001,,19,NE,2007,2007,3102,3,1,1853.001445,1853.001445,3507,NO,53.88,59.38,1,-0.19,6106,115.340228,124.84945,134.763343,140.592853,I,Above,Hip,0,5701,,56.63024274,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 13732,NJBF000079332,442 RISLEY RD,Galloway,NJ,39.41068242,-74.37257947,RES1,3001,,16,NE,1984,1984,3102,1,1,1597.94379,1597.94379,3507,NO,20.69,30.63,1,2.02,6106,115.248003,124.762827,134.665845,140.516796,I,Above,Gable,0,5701,,25.65899854,0,0,,,,1,1,,0.03,nav,1,1984,1,, 13733,NJBF000079341,415 W SHORE DR,Galloway,NJ,39.41073622,-74.37008743,RES1,3001,,16,NE,1965,1965,3102,1,1,2004.920046,2004.920046,3507,NO,15.38,25.54,1,1.66,6106,115.297905,124.8096,134.718725,140.555867,I,Above,Hip,0,5701,,20.46097373,0,0,,,,1,1,,0.03,nav,1,1965,1,, 13734,NJBF000079337,444 RISLEY RD,Galloway,NJ,39.41072144,-74.37274529,RES1,3001,,16,NE,1983,1983,3102,1,1,1629.788973,1629.788973,3507,NO,17.49,30.77,1,1.69,6106,115.244233,124.759288,134.661868,140.513646,I,Above,Flat,0,5701,,24.13183996,0,0,,,,1,1,,0.03,nav,1,1983,1,, 13735,NJBF000079393,502 RISLEY RD,Galloway,NJ,39.41094591,-74.37356141,RES1,3001,,16,NE,1983,1983,3102,1,1,1881.275141,1881.275141,3507,NO,14.54,23.86,1,-0.06,6106,115.225349,124.741559,134.641961,140.497723,I,Above,Flat,0,5701,,19.2000095,0,0,,,,1,1,,0.03,nav,1,1983,1,, 13736,NJBF000079324,200 LAFAYETTE PLACE,Galloway,NJ,39.41064559,-74.36692405,RES1,3001,,16,NE,1980,1980,3102,2,1,1641.209662,1641.209662,3507,NO,29.22,40.58,1,1.42,6106,115.362778,124.870601,134.787671,140.607299,I,Above,Flat,0,5701,,34.8982073,0,0,,,,1,1,,0.03,nav,1,1980,2,, 13737,NJBF000079302,,Galloway,NJ,39.4105585,-74.3631225,RES1,3001,,NaN,NE,1955,0,3102,2,1,1380.924275,1380.924275,3507,NO,24.02,33.34,1,1.42,6106,115.440339,124.943771,134.87048,140.668575,I,Above,Hip,0,5701,,28.68348475,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13738,NJBF000079287,303 E BEACH AVE,Galloway,NJ,39.41049723,-74.36286946,RES1,3001,,NaN,NE,1969,0,3102,2,1,2308.893213,2308.893213,3507,YES,35.76,48.31,1,2.46,6106,115.446105,124.949218,134.876619,140.673361,I,Above,Flat,0,5701,,42.03558364,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 13739,NJBF000079273,301 E BEACH AVE,Galloway,NJ,39.41043265,-74.36302314,RES1,3001,,18,NE,2004,2004,3102,3,1,1354.799432,1354.799432,3507,NO,50.2,63.16,1,2.14,6106,115.443676,124.946918,134.873978,140.671728,I,Above,Flat,0,5701,,56.68042266,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 13740,NJBF000079322,15 LAFAYETTE PLACE,Galloway,NJ,39.410639,-74.363282,RES1,3001,,43,NE,1955,1955,3102,2,2,1378.875188,1378.875188,3507,NO,35.93,42.42,1,2.88,6106,115.436297,124.939955,134.866199,140.665064,I,Above,Gable,0,5701,,39.17445051,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13741,NJBF000079319,104 LAFAYETTE PLACE,Galloway,NJ,39.41062698,-74.36631171,RES1,3001,,16,NE,1964,1964,3102,1,1,1180.020755,1180.020755,3507,NO,11.16,22.41,1,0.31,6106,115.375331,124.882426,134.801044,140.617247,I,Above,Gable,0,5701,,16.78393352,0,0,,,,1,1,,0.03,nav,1,1964,1,, 13742,NJBF000078979,108 W BEACH AVE,Galloway,NJ,39.40879267,-74.36526951,RES1,3001,,15,NE,1953,1953,3102,1,1,1092.994212,1092.994212,3507,NO,15.89,21.33,1,-0.1,6106,115.415622,124.920391,134.843012,140.656766,I,Above,Hip,0,5701,,18.60832103,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13743,NJBF000079018,209 ROOSEVELT BLVD SO,Galloway,NJ,39.4090564,-74.36355116,RES1,3001,,15,NE,1955,1955,3102,1,1,1515.960254,1515.960254,3507,NO,15.17,28.29,1,2.91,6106,115.447524,124.950467,134.87723,140.680593,I,Above,Gable,0,5701,,21.72851318,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13744,NJBF000078981,103 4TH STREET SO,Galloway,NJ,39.40880858,-74.36751683,RES1,3001,,16,NE,1955,1955,3102,1,1,1523.374158,1523.374158,3507,NO,19.83,26.68,1,1.52,6106,115.370065,124.87755,134.794529,140.621042,I,Above,Gable,0,5701,,23.25081879,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13745,NJBF000078968,105 4TH STREET SO,Galloway,NJ,39.40871098,-74.36743537,RES1,3001,,16,NE,2016,2016,3102,1,1,1049.402214,1049.402214,3507,NO,13.79,20.08,1,1.82,6106,115.372753,124.880079,134.797335,140.623575,I,Above,Gable,0,5701,,16.93602651,0,0,,,,1,1,,0.03,nav,1,2016,1,, 13746,NJBF000079051,464 W SHORE DR,Galloway,NJ,39.40919763,-74.3736329,RES1,3001,,19,NE,2008,2008,3102,2,1,4299.942181,4299.942181,3507,NO,38.84,52.95,1,0.04,6106,115.242104,124.757649,134.659218,140.518913,I,Above,Hip,0,5701,,45.8918454,0,1.2,,,,1,1,,0.03,nav,1,2008,2,, 13747,NJBF000079069,,Galloway,NJ,39.40931166,-74.37262115,RES1,3001,,NaN,NE,1972,0,3102,2,1,2850.72008,2850.72008,3507,NO,24.13,32.33,1,1.82,6106,115.261444,124.775697,134.679661,140.533595,I,Above,Flat,0,5701,,28.23114194,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13748,NJBF000079036,,Galloway,NJ,39.4091307,-74.37288855,RES1,3001,,NaN,NE,1969,0,3102,2,1,2185.04126,2185.04126,3507,NO,29.44,40.87,1,2.22,6106,115.257901,124.772421,134.675864,140.531632,I,Above,Gable,0,5701,,35.15202797,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13749,NJBF000078724,,Galloway,NJ,39.4071615,-74.364938,RES1,3001,,NaN,NE,1969,0,3102,2,1,2101.435821,2101.435821,3507,NO,28.26,40.39,1,2.79,6106,115.439549,124.942824,134.867452,140.682438,I,Above,Hip,0,5701,,34.32476385,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13750,NJBF000078715,227 4TH STREET SO,Galloway,NJ,39.40711534,-74.36602729,RES1,3001,,15,NE,1945,1945,3102,2,1,624.3804368,624.3804368,3507,NO,36.54,46.3,1,-0.8,6106,115.418049,124.922618,134.844544,140.66588,I,Above,Gable,0,5701,,41.42184739,0,0,,,,1,1,,0.03,nav,1,1945,2,, 13751,NJBF000078763,906 BAYSHORE AVE,Galloway,NJ,39.40742,-74.372681,RES1,3001,,16,NE,1953,1953,3102,1,1,1022.457739,1022.457739,3507,NO,19.94,27.1,1,1.95,6106,115.280065,124.793426,134.698631,140.556756,I,Above,Hip,0,5701,,23.52118661,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 13752,NJBF000078748,148 5TH STREET SO,Galloway,NJ,39.40731599,-74.36795484,RES1,3001,,16,NE,1952,1952,3102,1,1,1599.665379,1599.665379,3507,NO,12.34,21.02,1,-0.8,6106,115.376939,124.884044,134.80101,140.632936,I,Above,Hip,0,5701,,16.68395444,0,0,,,,1,1,,0.03,nav,1,1952,1,, 13753,NJBF000078816,407 W BEACH AVE,Galloway,NJ,39.4077343,-74.36731969,RES1,3001,,43,NE,1955,1955,3102,1,2,1792.817199,1792.817199,3507,NO,18.37,27.74,1,2.52,6106,115.385371,124.891948,134.8102,140.637699,I,Above,Flat,0,5701,,23.05583581,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13754,NJBF000078765,119 9TH STREET SO,Galloway,NJ,39.40742331,-74.37195082,RES1,3001,,16,NE,1962,1962,3102,2,1,1154.139395,1154.139395,3507,YES,33.18,47.86,1,-0.51,6106,115.294848,124.807225,134.714221,140.56831,I,Above,Gable,0,5701,,40.52092296,0,0,,,,1,1,,0.03,nav,1,1962,2,, 13755,NJBF000078747,,Galloway,NJ,39.40731563,-74.36612918,RES1,3001,,NaN,NE,1969,0,3102,2,1,2061.624493,2061.624493,3507,NO,23.4,34.62,1,1.24,6106,115.413862,124.918692,134.840221,140.661749,I,Above,Hip,0,5701,,29.00822852,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13756,NJBF000078810,201 4TH STREET SO,Galloway,NJ,39.407701,-74.366488,RES1,3001,,47,NE,1951,1951,3102,2,2,1680.64246,1680.64246,3507,NO,34.03,41.66,1,0.83,6106,115.402539,124.908066,134.828423,140.65125,I,Above,Gable,0,5701,,37.84454396,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 13757,NJBF000078711,,Galloway,NJ,39.40707851,-74.36484116,RES1,3001,,NaN,NE,1969,0,3102,2,1,1549.927254,1549.927254,3507,NO,26.24,33.11,1,1.17,6106,115.442387,124.945486,134.870416,140.685003,I,Above,Hip,0,5701,,29.67426049,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13758,NJBF000078836,105 W BRIGANTINE AVE,Galloway,NJ,39.40782082,-74.36348008,RES1,3001,,17,NE,1998,1998,3102,2,1,1604.239682,1604.239682,3507,NO,29.01,34.77,1,-0.18,6106,115.461996,124.964008,134.891847,140.697136,I,Above,Hip,0,5701,,31.88672357,0,0,,,,1,1,,0.03,nav,1,1998,2,, 13759,NJBF000078790,212 2ND STREET SO,Galloway,NJ,39.40757648,-74.36482422,RES1,3001,,16,NE,1953,1953,3102,2,1,1231.160877,1231.160877,3507,NO,37.91,49.64,1,2.98,6106,115.43747,124.940897,134.86552,140.679048,I,Above,Flat,0,5701,,43.77541569,0,0,,,,1,1,,0.03,nav,1,1953,2,, 13760,NJBF000078975,,Galloway,NJ,39.40875139,-74.3658295,RES1,3001,,NaN,NE,1955,0,3102,2,1,1382.918094,1382.918094,3507,NO,26.21,35.97,1,2.72,6106,115.404759,124.910166,134.831412,140.648449,I,Above,Flat,0,5701,,31.09000459,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13761,NJBF000078832,208 2ND STREET SO,Galloway,NJ,39.40780148,-74.36500847,RES1,3001,,17,NE,2016,2016,3102,3,1,962.2619547,962.2619547,3507,NO,35.63,45.69,1,1.41,6106,115.431377,124.935178,134.859178,140.673331,I,Above,Gable,0,5701,,40.6599954,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 13762,NJBF000078784,140 5TH STREET SO,Galloway,NJ,39.40753449,-74.36811799,RES1,3001,,17,NE,2014,2014,3102,3,1,1021.645514,1021.645514,3507,NO,52.34,57.42,1,1.88,6106,115.37134,124.87879,134.795195,140.627611,I,Above,Hip,0,5701,,54.88025244,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 13763,NJBF000078789,419 W BEACH AVE,Galloway,NJ,39.4075685,-74.36759,RES1,3001,,16,NE,1948,1948,3102,2,1,1185.768546,1185.768546,3507,NO,25.28,30.83,1,-0.79,6106,115.381662,124.88847,134.806167,140.635525,I,Above,Hip,0,5701,,28.05547877,0,0.1,,,,1,1,,0.03,nav,1,1948,2,, 13764,NJBF000078793,104 W BRIGANTINE AVE,Galloway,NJ,39.40758796,-74.36279054,RES1,3001,,18,NE,2006,2006,3102,3,1,1533.960531,1533.960531,3507,NO,39.76,51.51,1,1.34,6110,115.478354,124.979399,134.909147,140.710873,I,Above,Flat,0,5701,,45.63777967,0,1.1,,,,1,1,,0.35,nav,1,2006,3,, 13765,NJBF000078828,128 5TH STREET SO,Galloway,NJ,39.40778808,-74.36839125,RES1,3001,,17,NE,2016,2016,3102,3,1,1732.192297,1732.192297,3507,NO,40.76,52.28,1,0.49,6106,115.363137,124.87109,134.786634,140.62009,I,Above,Hip,0,5701,,46.51530936,0,1.2,,,,1,1,,0.03,nav,1,2016,3,, 13766,NJBF000078725,918 BAYSHORE AVE,Galloway,NJ,39.4071846,-74.37287961,RES1,3001,,16,NE,1955,1955,3102,1,1,1973.207377,1973.207377,3507,NO,20.54,33.05,1,2.79,6106,115.278497,124.792,134.696884,140.556591,I,Above,Flat,0,5701,,26.79916322,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 13767,NJBF000078708,132 8TH STREET SO,Galloway,NJ,39.40706848,-74.37113024,RES1,3001,,16,NE,1950,1950,3102,1,1,1534.074906,1534.074906,3507,NO,18.39,31.45,1,2.38,6106,115.31524,124.826315,134.735585,140.585842,I,Above,Hip,0,5701,,24.92355788,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 13768,NJBF000078664,121 10TH STREET SO,Galloway,NJ,39.40680724,-74.37248158,RES1,3001,,16,NE,1946,1946,3102,2,1,1373.689764,1373.689764,3507,NO,40.69,48.77,1,2.22,6106,115.290558,124.803305,134.709432,140.567725,I,Above,Hip,0,5701,,44.72819369,0,0,,,,1,1,,0.03,nav,1,1946,2,, 13769,NJBF000078607,160 8TH STREET SO,Galloway,NJ,39.4064735,-74.37055833,RES1,3001,,15,NE,1961,1961,3102,1,1,1342.468943,1342.468943,3507,NO,11.43,22.21,1,-0.72,6106,115.333119,124.843072,134.75417,140.602448,I,Above,Hip,0,5701,,16.8224914,0,0,,,,1,1,,0.03,nav,1,1961,1,, 13770,NJBF000078644,211 6TH STREET SO,Galloway,NJ,39.40667534,-74.36781498,RES1,3001,,16,NE,1953,1953,3102,1,1,1881.287436,1881.287436,3507,NO,16.33,22.13,1,2.35,6106,115.386547,124.893056,134.81082,140.643226,I,Above,Hip,0,5701,,19.22993752,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13771,NJBF000078666,143 9TH STREET SO,Galloway,NJ,39.40683484,-74.37137043,RES1,3001,,16,NE,1955,1955,3102,1,1,1601.533075,1601.533075,3507,NO,12.81,25.55,1,1.55,6106,115.312829,124.824087,134.73293,140.584998,I,Above,Gable,0,5701,,19.17706146,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13772,NJBF000078441,818 W BEACH AVE,Galloway,NJ,39.40553977,-74.37027671,RES1,3001,,19,NE,2006,2006,3102,2,1,2072.216036,2072.216036,3505,NO,27.39,37.45,3,-0.05,6106,115.34869,124.85767,134.770099,140.618712,I,Above,Flat,0,5701,,32.41892262,0,1.2,,,,1,1,,0.03,nav,1,2006,2,, 13773,NJBF000078321,250 8TH STREET SO,Galloway,NJ,39.40470447,-74.36893658,RES1,3001,,43,NE,1954,1954,3102,2,2,1004.90948,1004.90948,3505,NO,33.51,46.33,3,7.53,6106,115.384734,124.891347,134.807648,140.650406,I,Above,Flat,0,5701,,39.92060538,0,0,,,,1,1,,0.03,nav,1,1954,2,, 13774,NJBF000082740,112 MINNETONKA AVE,Galloway,NJ,39.43304878,-74.51600094,RES1,3001,,17,NE,1975,1975,3102,1,1,2799.6481,2799.6481,3505,NO,18.23,27.56,3,4.77,6110,112.092831,121.904796,131.504049,137.629303,I,Above,Gable,0,5701,,22.89767601,0,0,,,,1,1,,0.35,nav,1,1975,1,, 13775,NJBF000078324,713 W BRIGANTINE AVE,Galloway,NJ,39.40473848,-74.36823953,RES1,3001,,16,NE,1956,1956,3102,2,1,1179.394186,1179.394186,3505,NO,38.89,50.1,3,0.74,6110,115.398496,124.904209,134.822219,140.660944,I,Above,Flat,0,5701,,44.49192642,0,1.2,,,,1,1,,0.35,nav,1,1956,2,, 13776,NJBF000078402,222 8TH STREET SO,Galloway,NJ,39.40531248,-74.36954484,RES1,3001,,15,NE,1954,1954,3102,1,1,1225.899668,1225.899668,3505,NO,13.07,23.1,3,-0.82,6106,115.36595,124.873797,134.78819,140.633146,I,Above,Gable,0,5701,,18.08551517,0,0,,,,1,1,,0.03,nav,1,1954,1,, 13777,NJBF000078461,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,1616.988594,1616.988594,3505,NO,36.66,51.42,3,7.62,6110,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,44.03698572,0,0,,,,1,1,,0.35,nav,1,1984,2,, 13778,NJBF000078537,226 6TH STREET SO,Galloway,NJ,39.40606002,-74.36794893,RES1,3001,,17,NE,1959,1959,3102,2,1,1724.112968,1724.112968,3505,YES,33.71,38.72,3,-1.82,6106,115.390348,124.896614,134.814466,140.648863,I,Above,Gable,0,5701,,36.21568795,0,0,,,,1,1,,0.03,nav,1,1959,2,, 13779,NJBF000078444,513 W BRIGANTINE AVE,Galloway,NJ,39.405557,-74.366727,RES1,3001,,16,NE,1984,1984,3102,3,1,1686.240714,1686.240714,3505,NO,56.71,64.23,3,6.03,6106,115.420416,124.924763,134.846003,140.67443,I,Above,Flat,0,5701,,60.47038311,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 13780,NJBF000078384,512 W BRIGANTINE AVE,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,43,NE,1984,1960,3102,2,2,1127.470443,1127.470443,3505,YES,28.41,43.17,3,4.84,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,35.79040385,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13781,NJBF000078395,1007 W BEACH AVE,Galloway,NJ,39.40523906,-74.37183633,RES1,3001,,16,NE,1952,1952,3102,2,1,1439.387412,1439.387412,3505,NO,29.09,42.9,3,1.76,6106,115.320243,124.831152,134.739942,140.597902,I,Above,Flat,0,5701,,35.9974396,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 13782,NJBF000079570,100 HAMILTON PLACE,Galloway,NJ,39.41171904,-74.36307624,RES1,3001,,43,NE,1962,1962,3102,2,2,1031.609821,1031.609821,3507,NO,26.78,32.51,1,1.73,6106,115.429129,124.933212,134.85913,140.654832,I,Above,Hip,0,5701,,29.64694121,0,0,,,,1,1,,0.03,nav,1,1962,2,, 13783,NJBF000077016,3118 BAYSHORE AVE,Galloway,NJ,39.39587378,-74.38760089,COM1,3001,,NaN,ME,2001,2001,3401,2,1,6187.828796,6187.828796,3507,NO,26.97,38.62,1,-0.86,6106,115.097895,124.628243,134.50493,140.469508,I,Above,Flat,0,NaN,,32.7925972,0,0,,,,1,1,,0.03,nav,1,2001,2,, 13784,NJBF000077079,3111 BAYSHORE AVE,Galloway,NJ,39.39637058,-74.38804423,RES1,3001,,21,NE,2004,2004,3102,3,1,3659.927751,3659.927751,3507,YES,47.58,57.73,1,-0.76,6106,115.083401,124.614921,134.490323,140.455971,I,Above,Hip,0,5701,,52.65616492,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 13785,NJBF000076871,3101 ATL-BRIGANTINE BLVD,Galloway,NJ,39.3951363,-74.38619623,COM1,3001,,NaN,ME,1969,0,3401,2,1,3746.825603,3746.825603,3507,NO,28.65,34.46,1,2.69,6106,115.13483,124.662019,134.54234,140.501363,I,Above,Gable,0,NaN,,31.55257351,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13786,NJBF000076901,2502 OCEAN AVE,Galloway,NJ,39.39528904,-74.37921717,RES1,3001,,NaN,NE,1922,0,3102,2,1,1209.964102,1209.964102,3507,NO,29.67,39.74,1,-0.42,6106,115.276536,124.791395,134.68805,140.609021,I,Above,Hip,0,5701,,34.70287907,0,0,,,,1,1,,0.03,nav,1,1922,2,, 13787,NJBF000076985,115 32ND STREET SO,Galloway,NJ,39.39570752,-74.3874601,COM1,3001,,NaN,ME,1969,0,3401,1,1,1636.15184,1636.15184,3507,NO,13.65,23.95,1,1.65,6106,115.102595,124.632562,134.509661,140.473915,I,Above,Flat,0,NaN,,18.80124457,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13788,NJBF000076617,3201 W BRIGANTINE AVE,Galloway,NJ,39.3941065,-74.3863605,COM1,3001,,NaN,ME,1969,0,3401,1,1,6163.644603,6163.644603,3507,NO,16.41,24.42,1,-0.52,6106,115.142638,124.669339,134.549785,140.512237,I,Above,Flat,0,NaN,,20.41802908,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13789,NJBF000078962,207 VERNON PLACE,Galloway,NJ,39.40866741,-74.36436316,RES1,3001,,43,NE,1959,1959,3102,2,2,839.7377162,839.7377162,3507,NO,33.01,38.05,1,1.52,6106,115.435251,124.938873,134.863871,140.672655,I,Above,Flat,0,5701,,35.53250137,0,0,,,,1,1,,0.03,nav,1,1959,2,, 13790,NJBF000081166,723 SHERIDAN BLVD,Galloway,NJ,39.4178435,-74.36583263,RES1,3001,,17,NE,1985,1985,3102,2,1,1306.393431,1306.393431,3507,NO,39.2,47.4,1,2.89,6106,115.31023,124.819989,134.73366,140.534112,I,Above,Gable,0,5701,,43.29989986,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 13791,NJBF000079579,5 ROOSEVELT BLVD NO,Galloway,NJ,39.41176091,-74.36640745,RES1,3001,,16,NE,1980,1980,3102,1,1,2285.24349,2285.24349,3507,NO,16.1,22.83,1,-0.86,6106,115.361564,124.86938,134.786867,140.601474,I,Above,Gable,0,5701,,19.46815061,0,1.1,,,,1,1,,0.03,nav,1,1980,1,, 13792,NJBF000080634,136 ROOSEVELT BLVD NO,Galloway,NJ,39.415694,-74.37027309,RES1,3001,,16,NE,1984,1984,3102,2,1,1445.752888,1445.752888,3507,NO,21.21,32.97,1,-0.75,6106,115.242821,124.756685,134.661229,140.48996,I,Above,Flat,0,5701,,27.08839714,0,0,,,,1,1,,0.03,nav,1,1984,2,, 13793,NJBF000080392,20 KIRKWOOD CIRCLE,Galloway,NJ,39.4149095,-74.3632655,RES1,3001,,16,NE,1981,1981,3102,2,1,1499.691366,1499.691366,3507,NO,36.55,45.32,1,1.36,6106,115.392101,124.898077,134.82086,140.611953,I,Above,Gable,0,5701,,40.93009258,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 13794,NJBF000079907,36 HEALD RD,Galloway,NJ,39.41329885,-74.36378158,RES1,3001,,16,NE,1974,1974,3102,1,1,1312.91561,1312.91561,3507,NO,20.21,31.9,1,2.12,6106,115.398432,124.904146,134.826989,140.623883,I,Above,Hip,0,5701,,26.05591273,0,0,,,,1,1,,0.03,nav,1,1974,1,, 13795,NJBF000079926,2 HEALD RD,Galloway,NJ,39.41334954,-74.36772222,RES1,3001,,16,NE,1968,1968,3102,2,1,2650.783807,2650.783807,3507,NO,31.68,44.4,1,2.29,6106,115.318504,124.828584,134.741483,140.560504,I,Above,Gable,0,5701,,38.03927887,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 13796,NJBF000079799,,Galloway,NJ,39.4129005,-74.3594125,RES1,3001,,NaN,NE,2005,0,3102,2,1,1586.264777,1586.264777,3507,NO,26.96,33.45,1,1.15,6106,115.490402,124.991413,134.925713,140.698058,I,Above,Flat,0,5701,,30.20477901,0,0,,,,1,1,,0.03,nav,1,2005,2,, 13797,NJBF000080984,1329 OUIMET RD,Galloway,NJ,39.41709338,-74.37592421,RES1,3001,,16,NE,1985,1985,3103,1,1,1372.929481,1372.929481,3505,NO,11.73,23.55,3,-0.52,6106,115.114274,124.635139,134.524568,140.380816,I,Above,Gable,0,5701,,17.63990851,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13798,NJBF000080977,1331 OUIMET RD,Galloway,NJ,39.41707329,-74.37607524,RES1,3001,,17,NE,1980,1980,3103,2,1,1511.892677,1511.892677,3505,YES,30.67,39.89,3,-1.95,6106,115.111421,124.632467,134.521548,140.378624,I,Above,Gable,0,5701,,35.28029267,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13799,NJBF000079757,100 BAYSHORE AVE,Galloway,NJ,39.41272273,-74.36840851,COM4,3001,,NaN,ME,1900,1900,3401,1,1,1095.504521,1095.504521,3507,NO,13.64,23.69,1,-0.02,6106,115.311143,124.821739,134.733442,140.557461,I,Above,Gable,0,NaN,,18.66745116,0,0,,,,1,1,,0.03,nav,1,1900,1,, 13800,NJBF000081173,834 BOBBY JONES RD,Galloway,NJ,39.41786863,-74.38116674,RES1,3001,,16,NE,1972,1972,3103,1,1,1511.155852,1511.155852,3505,NO,20.69,26.25,3,3.33,6106,115.000128,124.527697,134.403788,140.285386,I,Above,Gable,0,5701,,23.46961761,0,0,,,,1,1,,0.03,nav,1,1972,1,, 13801,NJBF000079656,522 LAFAYETTE BLVD,Galloway,NJ,39.4121759,-74.37481664,RES1,3001,,16,NE,1980,1980,3102,2,1,1545.081289,1545.081289,3507,NO,36.03,50.2,1,-0.65,6106,115.187127,124.705431,134.60178,140.461841,I,Above,Flat,0,5701,,43.11401088,0,0,,,,1,1,,0.03,nav,1,1980,2,, 13802,NJBF000079701,3 HAMILTON PLACE,Galloway,NJ,39.41240449,-74.36674273,RES1,3001,,16,NE,1972,1972,3102,2,1,1159.763498,1159.763498,3507,YES,31.95,43.05,1,1.47,6106,115.348085,124.85661,134.772736,140.588036,I,Above,Gable,0,5701,,37.49912078,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13803,NJBF000079712,517 LAFAYETTE BLVD,Galloway,NJ,39.41244117,-74.37430842,RES1,3001,,16,NE,1982,1982,3102,1,1,2255.224318,2255.224318,3507,YES,19.91,28.37,1,0.78,6106,115.194709,124.712441,134.609818,140.46662,I,Above,Gable,0,5701,,24.13975741,0,0,,,,1,1,,0.03,nav,1,1982,1,, 13804,NJBF000079708,104 BAYSHORE AVE,Galloway,NJ,39.41243331,-74.36850315,RES1,3001,,16,NE,1962,1962,3102,2,1,1790.83432,1790.83432,3507,NO,26.74,34.84,1,2.37,6106,115.312258,124.822833,134.734539,140.559628,I,Above,Hip,0,5701,,30.79245059,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 13805,NJBF000079514,509 RISLEY RD,Galloway,NJ,39.41149118,-74.37390376,RES1,3001,,16,NE,1981,1981,3102,1,1,1573.695005,1573.695005,3507,NO,18.02,31.29,1,-0.38,6106,115.212736,124.729606,134.628737,140.485261,I,Above,Flat,0,5701,,24.65490551,0,0,,,,1,1,,0.03,nav,1,1981,1,, 13806,NJBF000079505,507 RISLEY RD,Galloway,NJ,39.41143799,-74.37374139,RES1,3001,,16,NE,1981,1981,3102,1,1,1638.72121,1638.72121,3507,NO,14.61,23.19,1,1.57,6106,115.216591,124.733228,134.632801,140.488551,I,Above,Gable,0,5701,,18.90050981,0,0,,,,1,1,,0.03,nav,1,1981,1,, 13807,NJBF000079538,502 LAFAYETTE BLVD,Galloway,NJ,39.41158631,-74.37324754,RES1,3001,,16,NE,1980,1980,3102,2,1,2413.145248,2413.145248,3507,NO,36.29,45.28,1,1.24,6106,115.22505,124.741107,134.641769,140.494556,I,Above,Gable,0,5701,,40.78404203,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13808,NJBF000081696,3 HUTCHISON PLACE,Galloway,NJ,39.42197591,-74.36595288,RES1,3001,,17,NE,1986,1986,3102,1,1,1888.703519,1888.703519,3507,NO,15.82,21.98,1,1.6,6106,115.265701,124.77662,134.685973,140.480156,I,Above,Hip,0,5701,,18.89826796,0,1.1,,,,1,1,,0.03,nav,1,1986,1,, 13809,NJBF000079139,224 4TH STREET NO,Galloway,NJ,39.40976133,-74.36153371,RES1,3001,,18,NE,2007,2007,3102,3,1,1418.036754,1418.036754,3507,NO,37.11,42.21,1,2.15,6106,115.48072,124.981887,134.913241,140.703584,I,Above,Gable,0,5701,,39.65954768,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 13810,NJBF000079131,228 4TH STREET NO,Galloway,NJ,39.40971916,-74.36138303,RES1,3001,,NaN,NE,2007,0,3102,2,1,913.9776264,913.9776264,3507,YES,38.05,48.18,1,0.91,6106,115.484201,124.985175,134.916945,140.706484,I,Above,Gable,0,5701,,43.11469776,0,1.2,,,,1,1,,0.03,nav,1,2007,2,, 13811,NJBF000079369,509 HACKNEY PLACE,Galloway,NJ,39.41084365,-74.37426378,RES1,3001,,16,NE,1955,1955,3102,1,1,1740.868346,1740.868346,3507,NO,18.91,28.63,1,2.7,6106,115.21215,124.729242,134.628004,140.487775,I,Above,Hip,0,5701,,23.7731199,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 13812,NJBF000079385,509 HACKNEY PLACE,Galloway,NJ,39.41091019,-74.37407993,RES1,3001,,16,NE,1955,1955,3102,1,1,542.3872039,542.3872039,3507,NO,18.8,32.42,1,1.05,6106,115.215197,124.732072,134.631233,140.489876,I,Above,Flat,0,5701,,25.61090619,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 13813,NJBF000079374,400 LAFAYETTE BLVD,Galloway,NJ,39.41087787,-74.36874322,RES1,3001,,16,NE,1965,1965,3102,2,1,1239.287459,1239.287459,3507,NO,26.83,31.88,1,2.27,6106,115.323604,124.833722,134.746073,140.575466,I,Above,Gable,0,5701,,29.35545352,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13814,NJBF000079293,432 RISLEY RD,Galloway,NJ,39.4105196,-74.37172524,RES1,3001,,17,NE,1988,1988,3102,1,1,1366.262291,1366.262291,3507,NO,14.55,22.39,1,2.2,6106,115.266995,124.780651,134.685896,140.532495,I,Above,Gable,0,5701,,18.46936704,0,0,,,,1,1,,0.03,nav,1,1988,1,, 13815,NJBF000079105,319 E BRIGANTINE AVE,Galloway,NJ,39.4095945,-74.3612265,RES1,3001,,18,NE,2003,2003,3102,3,1,1977.155278,1977.155278,3507,NO,48.35,58.96,1,2.91,6106,115.488657,124.989376,134.921637,140.710493,I,Above,Hip,0,5701,,53.65782816,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 13816,NJBF000079102,201 W EVANS BLVD,Galloway,NJ,39.40956503,-74.36626981,RES1,3001,,16,NE,1955,1955,3102,1,1,1305.419946,1305.419946,3507,NO,18.1,25.92,1,-0.56,6106,115.387314,124.893746,134.813281,140.631265,I,Above,Gable,0,5701,,22.01181474,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13817,NJBF000078867,204 2ND STREET SO,Galloway,NJ,39.40804051,-74.36523572,RES1,3001,,16,NE,1950,1950,3102,1,1,1221.163219,1221.163219,3507,NO,13.32,27.67,1,-0.66,6106,115.424239,124.928475,134.851729,140.66673,I,Above,Flat,0,5701,,20.49471356,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13818,NJBF000078839,137 5TH STREET SO,Galloway,NJ,39.40784923,-74.36780119,RES1,3001,,43,NE,1951,1951,3102,2,2,1452.03785,1452.03785,3507,NO,32.2,38.53,1,1.94,6106,115.37443,124.88168,134.798649,140.62865,I,Above,Hip,0,5701,,35.36560847,0,0,,,,1,1,,0.03,nav,1,1951,2,, 13819,NJBF000079501,204 7TH STREET NO,Galloway,NJ,39.41143408,-74.35984284,RES1,3001,,15,NE,1951,1951,3102,1,1,912.8143717,912.8143717,3507,NO,19.79,27.25,1,1.79,6106,115.497127,124.997631,134.932011,140.709446,I,Above,Gable,0,5701,,23.51680764,0,0,,,,1,1,,0.03,nav,1,1951,1,, 13820,NJBF000081002,1321 OUIMET RD,Galloway,NJ,39.41717733,-74.37522583,RES1,3001,,17,NE,1986,1986,3103,1,1,1501.130227,1501.130227,3505,NO,22.93,36.39,3,4.44,6106,115.127548,124.647574,134.538625,140.391057,I,Above,Gable,0,5701,,29.65604593,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13821,NJBF000078468,233 7TH STREET SO,Galloway,NJ,39.40569281,-74.36812083,RES1,3001,,16,NE,1946,1946,3102,1,2,1192.187854,1192.187854,3505,NO,20.16,34.07,3,3.65,6106,115.390758,124.896993,134.814666,140.650779,I,Above,Gable,0,5701,,27.11714817,0,0,,,,1,1,,0.03,nav,1,1946,1,, 13822,NJBF000078429,519 W BRIGANTINE AVE,Galloway,NJ,39.40546704,-74.36683533,RES1,3001,,43,NE,1955,1955,3102,2,3,808.7542879,808.7542879,3505,NO,34.25,42.2,3,0.48,6106,115.419187,124.923606,134.844637,140.673863,I,Above,Flat,0,5701,,38.22468741,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13823,NJBF000078868,,Galloway,NJ,39.40804776,-74.36670731,RES1,3001,,NaN,NE,1969,0,3102,2,1,1468.334679,1468.334679,3507,NO,24.73,31.66,1,-0.95,6106,115.394451,124.900472,134.820031,140.64343,I,Above,Hip,0,5701,,28.1935468,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13824,NJBF000080955,29 MACDONALD PLACE,Galloway,NJ,39.4170208,-74.36696846,RES1,3001,,16,NE,1980,1980,3102,2,1,1704.720413,1704.720413,3507,NO,41.06,49.64,1,2.58,6106,115.295825,124.806485,134.718067,140.52625,I,Above,Flat,0,5701,,45.35240572,0,0,,,,1,1,,0.03,nav,1,1980,2,, 13825,NJBF000079165,3 SHERIDAN PLACE,Galloway,NJ,39.4099285,-74.365653,RES1,3001,,16,NE,1959,1959,3102,2,1,1589.83423,1589.83423,3507,NO,22.04,31.32,1,0.27,6106,115.395958,124.901879,134.822689,140.63647,I,Above,Hip,0,5701,,26.67988526,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 13826,NJBF000080978,716 SHERIDAN BLVD,Galloway,NJ,39.41708092,-74.36576123,RES1,3001,,16,NE,1960,1960,3102,2,1,1483.652441,1483.652441,3507,NO,25.46,30.58,1,0.71,6106,115.319499,124.828927,134.743481,140.544853,I,Above,Gable,0,5701,,28.02320599,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 13827,NJBF000081029,33 MACDONALD PLACE,Galloway,NJ,39.41727605,-74.36706178,RES1,3001,,17,NE,1998,1998,3102,2,1,1651.245571,1651.245571,3507,NO,23.6,29.21,1,2.31,6106,115.291316,124.802156,134.71327,140.521524,I,Above,Flat,0,5701,,26.40613065,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 13828,NJBF000080877,1103 JENKINS PKWY,Galloway,NJ,39.41668594,-74.36057653,RES1,3001,,16,NE,1977,1977,3102,2,1,956.6945438,956.6945438,3507,NO,30.58,38.62,1,1.63,6106,115.427692,124.931887,134.859934,140.6326,I,Above,Hip,0,5701,,34.6009841,0,0,,,,1,1,,0.03,nav,1,1977,2,, 13829,NJBF000076486,320 30TH STREET SO,Galloway,NJ,39.39359423,-74.3833159,RES1,3001,,17,NE,2009,2009,3102,2,1,1264.444903,1264.444903,3507,NO,40.31,48.4,1,2.13,6106,115.21088,124.731522,134.619305,140.566714,I,Above,Hip,0,5701,,44.3524129,0,0,,,,1,1,,0.03,nav,1,2009,2,, 13830,NJBF000078871,206 W BEACH AVE,Galloway,NJ,39.40806237,-74.3657915,RES1,3001,,43,NE,1953,1953,3102,2,2,1249.625478,1249.625478,3507,NO,25.78,40.3,1,2.84,6106,115.41279,124.917707,134.83955,140.657698,I,Above,Hip,0,5701,,33.03855263,0,0,,,,1,1,,0.03,nav,1,1953,2,, 13831,NJBF000081189,806 E SHORE DR,Galloway,NJ,39.41795288,-74.3630649,RES1,3001,,16,NE,1981,1981,3102,1,1,1610.071362,1610.071362,3507,NO,19.71,27.67,1,0.89,6106,115.364716,124.871795,134.792347,140.577091,I,Above,Flat,0,5701,,23.69082743,0,1.1,,,,1,1,,0.03,nav,1,1981,1,, 13832,NJBF000081191,806 E SHORE DR,Galloway,NJ,39.4179571,-74.36325925,RES1,3001,,16,NE,1981,1981,3102,1,1,1008.838439,1008.838439,3507,NO,21.5,27.69,1,2.92,6106,115.36078,124.868046,134.788103,140.573937,I,Above,Flat,0,5701,,24.59734536,0,1.1,,,,1,1,,0.03,nav,1,1981,1,, 13833,NJBF000078680,700 GEORGIA PLACE,Galloway,NJ,39.40689456,-74.36987306,RES1,3001,,16,NE,1948,1948,3102,2,1,1061.376542,1061.376542,3507,NO,34.44,45.01,1,2.16,6106,115.342547,124.851856,134.764354,140.607937,I,Above,Hip,0,5701,,39.7249997,0,0,,,,1,1,,0.03,nav,1,1948,2,, 13834,NJBF000080981,2 KIRBY PLACE,Galloway,NJ,39.4170881,-74.36303234,RES1,3001,,16,NE,1957,1957,3102,2,1,1298.955423,1298.955423,3507,NO,38.66,46.93,1,0.66,6106,115.374278,124.880985,134.802419,140.588435,I,Above,Flat,0,5701,,42.79588703,0,0,,,,1,1,,0.03,nav,1,1957,2,, 13835,NJBF000080936,1306 OUIMET RD,Galloway,NJ,39.41694377,-74.37385341,RES1,3001,,17,NE,1990,1990,3102,2,1,842.3208981,842.3208981,3507,NO,21.81,35.23,1,-0.39,6106,115.157694,124.676035,134.57065,140.416282,I,Above,Flat,0,5701,,28.52257216,0,0,,,,1,1,,0.03,nav,1,1990,2,, 13836,NJBF000081022,713 SHERIDAN BLVD,Galloway,NJ,39.41724567,-74.36528683,RES1,3001,,16,NE,1985,1985,3102,1,1,1422.418284,1422.418284,3507,NO,18.06,26.97,1,0.3,6106,115.327337,124.836341,134.751936,140.550375,I,Above,Flat,0,5701,,22.51690999,0,0,,,,1,1,,0.03,nav,1,1985,1,, 13837,NJBF000080927,205 LINCOLN DR,Galloway,NJ,39.41690923,-74.37091857,RES1,3001,,16,NE,1972,1972,3102,2,1,2507.224462,2507.224462,3507,YES,30.16,44.48,1,-0.68,6106,115.217326,124.73226,134.63412,140.464114,I,Above,Gable,0,5701,,37.31820372,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 13838,NJBF000080963,1333 OUIMET RD,Galloway,NJ,39.41703749,-74.37621486,RES1,3001,,NaN,NE,1980,1981,3103,5,1,1612.056352,1612.056352,3505,NO,70.97,84.03,3,-1.82,6106,115.108952,124.630166,134.51894,140.376815,I,Above,Gable,0,5701,,77.49880177,0,0,,,,1,1,,0.03,nav,1,1980,5,, 13839,NJBF000081011,1315 OUIMET RD,Galloway,NJ,39.41720982,-74.37467541,RES1,3001,,16,NE,1985,1985,3102,2,1,1652.435854,1652.435854,3507,NO,28.31,36.69,1,-0.75,6106,115.138359,124.657727,134.550092,140.399564,I,Above,Gable,0,5701,,32.49888756,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13840,NJBF000081041,1330 VARDON RD,Galloway,NJ,39.41733787,-74.37610971,RES1,3001,,17,NE,1950,1950,3103,3,1,1403.688848,1403.688848,3505,NO,57.91,64.08,3,0.09,6106,115.108019,124.629142,134.517897,140.374645,I,Above,Flat,0,5701,,60.99600615,0,0,,,,1,1,,0.03,nav,1,1950,3,, 13841,NJBF000080966,8 KIRBY PLACE,Galloway,NJ,39.41704153,-74.36248171,RES1,3001,,16,NE,1979,1979,3102,1,1,1717.263606,1717.263606,3507,NO,11.61,21.46,1,1.08,6106,115.385795,124.891952,134.814823,140.597794,I,Above,Gable,0,5701,,16.53525567,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 13842,NJBF000081059,800 FOWNES AVE,Galloway,NJ,39.41737799,-74.36378795,RES1,3001,,16,NE,1974,1974,3102,2,1,1213.13245,1213.13245,3507,NO,25.58,32.86,1,2.62,6106,115.356108,124.863668,134.782922,140.57272,I,Above,Hip,0,5701,,29.21602904,0,0,,,,1,1,,0.03,nav,1,1974,2,, 13843,NJBF000081075,9 11TH STREET NO,Galloway,NJ,39.41745107,-74.36167032,RES1,3001,,16,NE,1973,1973,3102,1,1,1684.987634,1684.987634,3507,NO,16.92,28.55,1,-0.9,6106,115.397875,124.903434,134.827994,140.605653,I,Above,Hip,0,5701,,22.73366963,0,0,,,,1,1,,0.03,nav,1,1973,1,, 13844,NJBF000080881,203 LINCOLN DR,Galloway,NJ,39.4166985,-74.37087921,RES1,3001,,16,NE,1972,1972,3102,2,1,1504.84548,1504.84548,3507,NO,29.03,42.84,1,2.99,6106,115.220282,124.735117,134.637266,140.467431,I,Above,Flat,0,5701,,35.93284337,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 13845,NJBF000080906,,Galloway,NJ,39.41681472,-74.37305762,RES1,3001,,NaN,NE,2002,0,3102,2,1,1979.647194,1979.647194,3507,NO,27.24,37.36,1,-0.45,6106,115.175082,124.69246,134.589139,140.430788,I,Above,Hip,0,5701,,32.30230064,0,0,,,,1,1,,0.03,nav,1,2002,2,, 13846,NJBF000080797,30 12TH STREET NO,Galloway,NJ,39.41634592,-74.35980097,RES1,3001,,15,NE,1957,1957,3102,2,1,2725.935218,2725.935218,3507,YES,31.41,43.18,1,1.94,6106,115.446767,124.950077,134.880417,140.649169,I,Above,Hip,0,5701,,37.29627749,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 13847,NJBF000080702,29 11TH STREET NO,Galloway,NJ,39.41597148,-74.35984832,RES1,3001,,17,NE,1985,1985,3102,2,1,1237.24551,1237.24551,3507,NO,38.31,43.73,1,0.44,6106,115.449709,124.952873,134.883428,140.653077,I,Above,Gable,0,5701,,41.02312163,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13848,NJBF000080814,135 WASHINGTON DR,Galloway,NJ,39.41643435,-74.36905421,RES1,3001,,16,NE,1969,1969,3102,2,1,1089.636414,1089.636414,3507,YES,28.11,38.41,1,-0.75,6106,115.259819,124.772539,134.679449,140.500166,I,Above,Flat,0,5701,,33.25666088,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13849,NJBF000080883,1328 OUIMET RD,Galloway,NJ,39.41670066,-74.37582333,RES1,3001,,16,NE,1985,1985,3103,2,1,826.328362,826.328362,3505,NO,37.14,50.95,3,-0.45,6106,115.120308,124.640992,134.531021,140.387497,I,Above,Flat,0,5701,,44.042435,0,0,,,,1,1,,0.03,nav,1,1985,2,, 13850,NJBF000080820,21 MACDONALD PLACE,Galloway,NJ,39.41646178,-74.36684164,RES1,3001,,16,NE,1984,1984,3102,1,1,1546.939798,1546.939798,3507,NO,14.97,23.36,1,1.22,6106,115.304105,124.814443,134.726846,140.53532,I,Above,Gable,0,5701,,19.16716614,0,0,,,,1,1,,0.03,nav,1,1984,1,, 13851,NJBF000080539,9 KIRKWOOD CIRCLE,Galloway,NJ,39.4153675,-74.3640725,RES1,3001,,17,NE,1989,1989,3102,1,1,1493.395995,1493.395995,3507,NO,15.4,28.21,1,0.78,6106,115.371112,124.878127,134.798466,140.593345,I,Above,Gable,0,5701,,21.80595887,0,0,,,,1,1,,0.03,nav,1,1989,1,, 13852,NJBF000080442,102 12TH STREET NO,Galloway,NJ,39.41506694,-74.35820822,RES1,3001,,43,NE,1960,1960,3102,2,2,1067.791167,1067.791167,3507,NO,41.45,54.34,1,2.68,6106,115.491966,124.993122,134.928685,140.690286,I,Above,Gable,0,5701,,47.89675845,0,0,,,,1,1,,0.03,nav,1,1960,2,, 13853,NJBF000078424,218 8TH STREET SO,Galloway,NJ,39.40544381,-74.36965152,RES1,3001,,16,NE,1985,1985,3102,1,1,2261.307983,2261.307983,3505,NO,14.95,23.72,3,-2.17,6106,115.362381,124.87046,134.7845,140.62979,I,Above,Gable,0,5701,,19.33366057,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 13854,NJBF000080476,730 W SHORE DR,Galloway,NJ,39.41518732,-74.38249593,RES1,3001,,17,NE,2004,2004,3103,2,1,2154.653688,2154.653688,3505,NO,32.03,45.06,3,0.34,6106,115.000257,124.529547,134.404865,140.29865,I,Above,Hip,0,5701,,38.54569075,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 13855,NJBF000078427,229 8TH STREET SO,Galloway,NJ,39.4054601,-74.36900525,RES1,3001,,43,NE,1950,1950,3102,2,2,1117.431837,1117.431837,3505,NO,34.83,46.81,3,7.77,6106,115.375324,124.882556,134.798188,140.639789,I,Above,Gable,0,5701,,40.8220266,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 13856,NJBF000080483,142 LINCOLN DR,Galloway,NJ,39.41522554,-74.3710083,RES1,3001,,16,NE,1960,1960,3102,2,1,1358.106625,1358.106625,3507,NO,25.81,31.72,1,0.11,6106,115.232787,124.747357,134.650493,140.484093,I,Above,Flat,0,5701,,28.76760639,0,0,,,,1,1,,0.03,nav,1,1960,2,, 13857,NJBF000080481,723 W SHORE DR,Galloway,NJ,39.41521336,-74.38189707,RES1,3001,,16,NE,1966,1966,3103,1,1,2764.869373,2764.869373,3505,NO,14.84,22.12,3,-2.12,6106,115.012179,124.540638,134.417359,140.30807,I,Above,Flat,0,5701,,18.47672626,0,1.2,,,,1,1,,0.03,nav,1,1966,1,, 13858,NJBF000078341,251 8TH STREET SO,Galloway,NJ,39.40486188,-74.36846279,RES1,3001,,16,NE,1948,1948,3102,2,1,634.9476824,634.9476824,3505,NO,32.39,42.93,3,-0.1,6106,115.392659,124.898756,134.81613,140.655872,I,Above,Gable,0,5701,,37.661396,0,0,,,,1,1,,0.03,nav,1,1948,2,, 13859,NJBF000079835,604 E EVANS BLVD,Galloway,NJ,39.41305101,-74.36156947,RES1,3001,,15,NE,1959,1959,3102,1,1,2167.797619,2167.797619,3507,NO,14.89,20.08,1,2.71,6106,115.445524,124.948792,134.877457,140.662082,I,Above,Gable,0,5701,,17.48011667,0,0,,,,1,1,,0.03,nav,1,1959,1,, 13860,NJBF000076636,313 30TH STREET SO,Galloway,NJ,39.39414721,-74.38323004,RES1,3001,,16,NE,1954,1954,3102,2,1,1769.798968,1769.798968,3507,YES,34.5,43.96,1,1.07,6106,115.206614,124.72757,134.615295,140.560891,I,Above,Gable,0,5701,,39.23279377,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 13861,NJBF000078431,143 11TH STREET SO,Galloway,NJ,39.40546991,-74.37240411,RES1,3001,,15,NE,1959,1959,3102,1,1,1404.081613,1404.081613,3505,NO,11.97,18.13,3,-0.61,6106,115.306262,124.818103,134.725342,140.585981,I,Above,Gable,0,5701,,15.04760221,0,0,,,,1,1,,0.03,nav,1,1959,1,, 13862,NJBF000078407,1001 W BEACH AVE,Galloway,NJ,39.40532969,-74.37169388,RES1,3001,,15,NE,1955,1955,3102,1,1,1506.688692,1506.688692,3505,NO,11.74,22.51,3,1.05,6106,115.322162,124.832934,134.742011,140.598991,I,Above,Flat,0,5701,,17.1247341,0,0,,,,1,1,,0.03,nav,1,1955,1,, 13863,NJBF000078355,242 8TH STREET SO,Galloway,NJ,39.40496943,-74.36917717,RES1,3001,,16,NE,1948,1948,3102,1,1,1099.99685,1099.99685,3505,NO,19.95,31.48,3,8.79,6106,115.377052,124.884172,134.799704,140.643281,I,Above,Gable,0,5701,,25.71244333,0,0,,,,1,1,,0.03,nav,1,1948,1,, 13864,NJBF000078359,247 8TH STREET SO,Galloway,NJ,39.40498758,-74.36858897,RES1,3001,,15,NE,1948,1948,3102,2,2,1177.339569,1177.339569,3505,NO,43.69,50.68,3,8.9,6106,115.388766,124.895119,134.812098,140.6523,I,Above,Hip,0,5701,,47.18231238,0,0,,,,1,1,,0.03,nav,1,1948,2,, 13865,NJBF000078647,234 4TH STREET SO,Galloway,NJ,39.40669452,-74.36629728,RES1,3001,,18,NE,2006,2006,3102,3,1,2000.295544,2000.295544,3507,NO,33.14,46.45,1,0.82,6106,115.417038,124.921651,134.843193,140.6669,I,Above,Hip,0,5701,,39.79584803,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 13866,NJBF000078410,215 9TH STREET SO,Galloway,NJ,39.40534158,-74.36999508,RES1,3001,,17,NE,2007,2007,3102,2,1,1797.715247,1797.715247,3505,NO,27.73,36.07,3,4.54,6106,115.356508,124.864978,134.778237,140.625669,I,Above,Hip,0,5701,,31.90163711,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 13867,NJBF000079608,112 BAYSHORE AVE,Galloway,NJ,39.41191681,-74.36860673,RES1,3001,,16,NE,1965,1965,3102,2,1,1491.934552,1491.934552,3507,YES,27.16,36.77,1,1.35,6106,115.315523,124.825983,134.737848,140.564494,I,Above,Gable,0,5701,,31.96744496,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13868,NJBF000079591,521 RISLEY RD,Galloway,NJ,39.41182392,-74.37485157,RES1,3001,,16,NE,1972,1972,3102,2,1,1167.328646,1167.328646,3507,NO,24.14,34.6,1,0.99,6106,115.190058,124.708288,134.604836,140.465792,I,Above,Gable,0,5701,,29.36937164,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13869,NJBF000079929,108 9TH STREET NO,Galloway,NJ,39.41335456,-74.35982033,RES1,3001,,16,NE,2015,2015,3102,1,1,981.5276997,981.5276997,3507,NO,19.68,34.31,1,1.68,6106,115.47748,124.979168,134.912049,140.685984,I,Above,Hip,0,5701,,26.99615916,0,0,,,,1,1,,0.03,nav,1,2015,1,, 13870,NJBF000079267,7 GIRARD PLACE,Galloway,NJ,39.41041605,-74.36737799,RES1,3001,,16,NE,1975,1975,3102,1,1,1928.678526,1928.678526,3507,NO,15.17,27.93,1,-0.45,6106,115.356016,124.864252,134.780365,140.602991,I,Above,Gable,0,5701,,21.54858976,0,0,,,,1,1,,0.03,nav,1,1975,1,, 13871,NJBF000079012,306 W EVANS BLVD,Galloway,NJ,39.40900632,-74.36777889,RES1,3001,,16,NE,1957,1957,3102,1,1,1335.217795,1335.217795,3507,NO,11.75,22.8,1,0.85,6106,115.362698,124.870621,134.7868,140.61441,I,Above,Flat,0,5701,,17.27798138,0,0,,,,1,1,,0.03,nav,1,1957,1,, 13872,NJBF000078995,102 3RD STREET SO,Galloway,NJ,39.4088916,-74.3671096,RES1,3001,,17,NE,2014,2014,3102,3,1,1237.056883,1237.056883,3507,NO,33.98,47.14,1,0.79,6106,115.377418,124.884456,134.802391,140.626438,I,Above,Gable,0,5701,,40.56320458,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 13873,NJBF000079007,407 W EVANS BLVD,Galloway,NJ,39.40896351,-74.36867183,RES1,3001,,NaN,NE,2016,1959,3102,2,1,1203.194,1203.194,3507,NO,31.75,39.23,1,1.01,6106,115.345079,124.854083,134.768069,140.600788,I,Above,Flat,0,5701,,35.48986693,0,0,,,,1,1,,0.03,nav,1,2016,2,, 13874,NJBF000079274,,Galloway,NJ,39.41044539,-74.35920985,RES3D,3001,,NaN,E,1969,0,3303,4,1,3618.095218,3618.095218,3507,NO,77,84.03,1,2.05,6106,115.52024,125.019419,134.956192,140.731665,I,Above,Flat,0,NaN,,80.51446624,0,0,,,,1,1,,0.03,nav,1,1969,4,, 13875,NJBF000080192,29 HEALD CIRCLE,Galloway,NJ,39.41421868,-74.36586626,RES1,3001,,16,NE,1980,1980,3102,2,1,1201.195058,1201.195058,3507,NO,41.48,48.97,1,2.55,6106,115.346916,124.855314,134.772129,140.579169,I,Above,Hip,0,5701,,45.22502141,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 13876,NJBF000080218,1321 E BRIGANTINE AVE,Galloway,NJ,39.41432566,-74.35480479,RES1,3001,,19,NE,2002,2002,3102,2,1,1993.699513,1993.699513,3507,NO,23.65,37.21,1,0.54,6106,115.567806,125.065465,135.010477,140.753147,I,Above,Hip,0,5701,,30.43114575,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 13877,NJBF000080407,30 KIRKWOOD CIRCLE,Galloway,NJ,39.4149522,-74.36233717,RES1,3001,,16,NE,1984,1984,3102,2,1,1425.495915,1425.495915,3507,NO,29.21,43.05,1,-0.77,6106,115.410316,124.915375,134.840476,140.626195,I,Above,Hip,0,5701,,36.12913467,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 13878,NJBF000080422,726 W SHORE DR,Galloway,NJ,39.41499367,-74.38227207,RES1,3001,,16,NE,1956,1956,3103,2,1,1703.310618,1703.310618,3505,NO,29.54,39.49,3,-1.88,6106,115.006776,124.535739,134.411757,140.304818,I,Above,Hip,0,5701,,34.5141696,0,0,,,,1,1,,0.03,nav,1,1956,2,, 13879,NJBF000080209,101 WASHINGTON DR,Galloway,NJ,39.41429523,-74.36796329,RES1,3001,,16,NE,1964,1964,3102,2,1,1635.362255,1635.362255,3507,NO,24.06,34.68,1,-0.52,6106,115.303857,124.814606,134.726106,140.544719,I,Above,Gable,0,5701,,29.36946487,0,0,,,,1,1,,0.03,nav,1,1964,2,, 13880,NJBF000080213,,Galloway,NJ,39.41430503,-74.35745784,RES1,3001,,NaN,NE,1969,0,3102,2,1,1625.023432,1625.023432,3507,NO,32.47,46.96,1,-0.62,6106,115.514929,125.014944,134.953097,140.711561,I,Above,Gable,0,5701,,39.7139218,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13881,NJBF000080331,603 BOBBY JONES RD,Galloway,NJ,39.41472054,-74.37916134,RES1,3001,,16,NE,1972,1972,3103,3,1,1069.032671,1069.032671,3505,NO,65.39,73.17,3,6.91,6106,115.072803,124.597477,134.481175,140.358929,I,Above,Hip,0,5701,,69.28062438,0,1.1,,,,1,1,,0.03,nav,1,1972,3,, 13882,NJBF000076198,419 31ST STREET SO,Galloway,NJ,39.39256602,-74.38262942,RES1,3001,,18,NE,1985,1985,3102,3,1,1905.485312,1905.485312,3507,NO,47.71,57.73,1,-0.15,6106,115.236257,124.754734,134.644592,140.590781,I,Above,Flat,0,5701,,52.72086088,0,0,,,,1,1,,0.03,nav,1,1985,3,, 13883,NJBF000080388,1 CUMMINGS PLACE,Galloway,NJ,39.41489978,-74.37214349,RES1,3001,,16,NE,1968,1968,3102,1,1,2629.363051,2629.363051,3507,NO,14.43,27.1,1,1.55,6106,115.213198,124.729012,134.629632,140.469992,I,Above,Gable,0,5701,,20.76872911,0,0,,,,1,1,,0.03,nav,1,1968,1,, 13884,NJBF000080386,22 KIRKWOOD CIRCLE,Galloway,NJ,39.41489852,-74.36305215,RES1,3001,,17,NE,1986,1986,3102,1,1,1368.450307,1368.450307,3507,NO,15.11,21.32,1,2.53,6106,115.396497,124.902251,134.825583,140.615481,I,Above,Gable,0,5701,,18.21566082,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13885,NJBF000080229,604 BOBBY JONES RD,Galloway,NJ,39.41437818,-74.37944472,RES1,3001,,16,NE,1970,1970,3103,2,1,1817.8033,1817.8033,3505,NO,36.01,42.97,3,8.87,6106,115.070537,124.59554,134.478849,140.358768,I,Above,Hip,0,5701,,39.49290759,0,0,,,,1,1,,0.03,nav,1,1970,2,, 13886,NJBF000080403,10 KIRKWOOD CIRCLE,Galloway,NJ,39.41494607,-74.36414819,RES1,3001,,16,NE,1987,1987,3102,1,1,1577.419014,1577.419014,3507,NO,19.14,29.18,1,0.9,6106,115.37397,124.880873,134.80139,140.597436,I,Above,Hip,0,5701,,24.16124293,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 13887,NJBF000080359,118 WASHINGTON DR,Galloway,NJ,39.41481754,-74.36889296,RES1,3001,,16,NE,1969,1969,3102,2,1,1483.836364,1483.836364,3507,YES,35.94,41.68,1,1.64,6106,115.279692,124.791693,134.700426,140.523217,I,Above,Hip,0,5701,,38.80945515,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13888,NJBF000080335,117 ROOSEVELT BLVD NO,Galloway,NJ,39.4147383,-74.36931332,RES1,3001,,16,NE,1960,1960,3102,1,1,1732.389083,1732.389083,3507,NO,21.16,30.87,1,2.39,6106,115.272041,124.78449,134.692249,140.517499,I,Above,Gable,0,5701,,26.01365887,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13889,NJBF000080065,204 12TH STREET NO,Galloway,NJ,39.41381583,-74.35664078,RES1,3001,,43,NE,1960,1960,3102,2,2,1025.505059,1025.505059,3507,NO,37.14,51.01,1,2.11,6106,115.536398,125.035356,134.976036,140.730486,I,Above,Flat,0,5701,,44.07483993,0,0,,,,1,1,,0.03,nav,1,1960,2,, 13890,NJBF000080181,807 E EVANS BLVD,Galloway,NJ,39.41419376,-74.36076219,RES1,3001,,16,NE,1973,1973,3102,2,1,1616.490957,1616.490957,3507,NO,34.47,43.6,1,2.5,6106,115.449825,124.952922,134.882687,140.660648,I,Above,Gable,0,5701,,39.0359494,0,0,,,,1,1,,0.03,nav,1,1973,2,, 13891,NJBF000080073,108 10TH STREET NO,Galloway,NJ,39.41383495,-74.35918835,RES1,3001,,17,NE,2015,2015,3102,3,1,1903.580562,1903.580562,3507,NO,38.93,44.04,1,-0.67,6106,115.485152,124.986511,134.92061,140.690028,I,Above,Gable,0,5701,,41.48729405,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 13892,NJBF000079214,500 HACKNEY PLACE,Galloway,NJ,39.41017087,-74.37359579,RES1,3001,,18,NE,1962,1962,3102,1,1,3245.918165,3245.918165,3507,NO,16.2,22.05,1,1.16,6106,115.232703,124.748635,134.649554,140.507069,I,Above,Gable,0,5701,,19.1255612,0,0,,,,1,1,,0.03,nav,1,1962,1,, 13893,NJBF000080025,33 HEALD RD,Galloway,NJ,39.41369606,-74.3641118,RES1,3001,,16,NE,1970,1970,3102,1,1,1903.173847,1903.173847,3507,NO,20.43,31.32,1,1.25,6106,115.387662,124.893929,134.815605,140.613668,I,Above,Gable,0,5701,,25.87442059,0,0,,,,1,1,,0.03,nav,1,1970,1,, 13894,NJBF000080016,37 HEALD RD,Galloway,NJ,39.41367829,-74.3637263,RES1,3001,,16,NE,1973,1973,3102,1,1,2068.323196,2068.323196,3507,NO,14.1,27.61,1,2.36,6106,115.395617,124.901466,134.824134,140.62003,I,Above,Gable,0,5701,,20.85663576,0,0,,,,1,1,,0.03,nav,1,1973,1,, 13895,NJBF000080004,203 11TH STREET NO,Galloway,NJ,39.413632,-74.3570065,RES1,3001,,45,NE,1955,1955,3102,3,2,935.4299125,935.4299125,3507,YES,32.05,42.59,1,-0.41,6106,115.531011,125.030186,134.970076,140.726998,I,Above,Gable,0,5701,,37.32250756,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 13896,NJBF000079946,,Galloway,NJ,39.41342992,-74.35674458,RES1,3001,,NaN,NE,1969,0,3102,2,1,1648.095907,1648.095907,3507,NO,39.05,45.85,1,1.12,6106,115.538351,125.037154,134.977888,140.733602,I,Above,Hip,0,5701,,42.45194791,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13897,NJBF000079927,,Galloway,NJ,39.41335001,-74.35665003,RES1,3001,,NaN,NE,1969,0,3102,2,1,1667.904811,1667.904811,3507,NO,25.42,39.34,1,1.94,6106,115.541091,125.039753,134.9808,140.736085,I,Above,Hip,0,5701,,32.38262077,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13898,NJBF000080108,553 LAFAYETTE BLVD,Galloway,NJ,39.4139459,-74.37701748,RES1,3001,,17,NE,1986,1986,3103,1,1,1974.676874,1974.676874,3505,NO,22.36,33.39,3,7.98,6106,115.124263,124.645945,134.53548,140.403648,I,Above,Gable,0,5701,,27.87387639,0,1.1,,,,1,1,,0.03,nav,1,1986,1,, 13899,NJBF000079950,16 HEALD RD,Galloway,NJ,39.4134367,-74.36644488,RES1,3001,,16,NE,1972,1972,3102,2,1,1019.554048,1019.554048,3507,NO,38.21,49.6,1,-0.68,6106,115.343357,124.852038,134.768059,140.579776,I,Above,Gable,0,5701,,43.90621522,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13900,NJBF000080217,602 BOBBY JONES RD,Galloway,NJ,39.41432293,-74.37926968,RES1,3001,,16,NE,1964,1964,3103,1,1,1599.099322,1599.099322,3505,NO,12.51,27.19,3,-1.62,6106,115.074654,124.599412,134.483189,140.362318,I,Above,Flat,0,5701,,19.85018712,0,0,,,,1,1,,0.03,nav,1,1964,1,, 13901,NJBF000080033,100 9TH STREET NO,Galloway,NJ,39.41371465,-74.36025858,RES1,3001,,16,NE,1957,1957,3102,3,1,1995.61261,1995.61261,3507,NO,31.49,41.53,1,-0.6,6106,115.464912,124.967244,134.8987,140.674569,I,Above,Flat,0,5701,,36.51059975,0,1.1,,,,1,1,,0.03,nav,1,1957,3,, 13902,NJBF000080009,547 LAFAYETTE BLVD,Galloway,NJ,39.41364491,-74.37663514,RES1,3001,,16,NE,1973,1973,3103,2,1,1601.022045,1601.022045,3505,YES,23.81,28.91,3,-0.17,6106,115.135105,124.656215,134.546929,140.413694,I,Above,Flat,0,5701,,26.35926909,0,0,,,,1,1,,0.03,nav,1,1973,2,, 13903,NJBF000079906,560 W SHORE DR,Galloway,NJ,39.4132879,-74.37870445,RES1,3001,,19,NE,2014,2014,3103,2,1,4264.085683,4264.085683,3505,NO,36.49,43.79,3,0.76,6102,115.096756,124.620549,134.506561,140.38488,I,Above,Hip,0,5701,,40.13910682,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 13904,NJBF000080085,104 WASHINGTON DR,Galloway,NJ,39.41386775,-74.36829707,RES1,3001,,16,NE,1977,1977,3102,1,1,1195.237494,1195.237494,3507,NO,13.94,27.68,1,1.74,6106,115.301535,124.81249,134.723519,140.544775,I,Above,Flat,0,5701,,20.80781441,0,0,,,,1,1,,0.03,nav,1,1977,1,, 13905,NJBF000079118,200 2ND STREET NO,Galloway,NJ,39.40964397,-74.36377333,RES1,3001,,15,NE,1953,1953,3102,1,1,961.5173556,961.5173556,3507,NO,16.14,30.57,1,0.96,6106,115.436858,124.940439,134.866201,140.669743,I,Above,Gable,0,5701,,23.35468962,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13906,NJBF000079940,532 CAVERLY DR,Galloway,NJ,39.41340591,-74.37566553,RES1,3001,,16,NE,1979,1979,3103,1,1,2203.111827,2203.111827,3505,NO,21.14,32.66,3,2.23,6106,115.157219,124.677003,134.570272,140.432394,I,Above,Gable,0,5701,,26.89925257,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 13907,NJBF000079994,47 HEALD RD,Galloway,NJ,39.41360508,-74.36287366,RES1,3001,,17,NE,1987,1987,3102,2,1,1362.3524,1362.3524,3507,NO,28.59,33.82,1,1.94,6106,115.413515,124.918435,134.843322,140.634478,I,Above,Flat,0,5701,,31.2059535,0,0,,,,1,1,,0.03,nav,1,1987,2,, 13908,NJBF000079960,106 9TH STREET NO,Galloway,NJ,39.41346367,-74.35991356,RES1,3001,,14,NE,1950,1950,3102,1,1,806.4533441,806.4533441,3507,NO,14.65,22.23,1,2.66,6106,115.474455,124.976301,134.90885,140.683145,I,Above,Gable,0,5701,,18.44155029,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13909,NJBF000080050,849 LAFAYETTE BLVD,Galloway,NJ,39.41376828,-74.37670434,RES1,3001,,16,NE,1973,1973,3103,2,1,2848.367316,2848.367316,3505,NO,39.8,50.76,3,7.03,6106,115.132441,124.653671,134.544115,140.410996,I,Above,Gable,0,5701,,45.27877586,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 13910,NJBF000079809,102 LINCOLN DR,Galloway,NJ,39.41294082,-74.36893689,RES1,3001,,16,NE,1970,1970,3102,2,1,1241.920293,1241.920293,3507,YES,22.35,32.58,1,0.39,6106,115.298218,124.809527,134.719736,140.546274,I,Above,Gable,0,5701,,27.4670225,0,0,,,,1,1,,0.03,nav,1,1970,2,, 13911,NJBF000079797,601 E EVANS BLVD,Galloway,NJ,39.41287681,-74.36264407,RES1,3001,,16,NE,1976,1976,3102,1,1,1824.263691,1824.263691,3507,NO,13.07,19.26,1,0.64,6106,115.425726,124.93001,134.856085,140.647217,I,Above,Hip,0,5701,,16.16469772,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 13912,NJBF000079747,,Galloway,NJ,39.41267728,-74.35890703,RES1,3001,,NaN,NE,1969,0,3102,2,1,2065.625331,2065.625331,3507,NO,35.68,41.06,1,2.01,6106,115.502889,125.003262,134.939045,140.708808,I,Above,Hip,0,5701,,38.36996123,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13913,NJBF000079806,900 E BEACH AVE,Galloway,NJ,39.41292397,-74.35864866,RES1,3001,,15,NE,1953,1953,3102,1,1,1120.957927,1120.957927,3507,NO,15.27,26.92,1,1.51,6106,115.505481,125.005759,134.942002,140.709823,I,Above,Gable,0,5701,,21.09412674,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13914,NJBF000079871,,Galloway,NJ,39.41316817,-74.35767021,RES1,3001,,NaN,NE,1969,0,3102,2,1,1587.081964,1587.081964,3507,NO,34.19,45.45,1,2.2,6106,115.522558,125.022055,134.960618,140.722251,I,Above,Gable,0,5701,,39.82199736,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13915,NJBF000079834,522 CAVERLY DR,Galloway,NJ,39.41303976,-74.37490719,RES1,3001,,17,NE,1988,1988,3102,2,1,1482.488233,1482.488233,3507,NO,35,43.55,1,0.59,6106,115.176381,124.695077,134.590499,140.449314,I,Above,Flat,0,5701,,39.27821735,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 13916,NJBF000079829,533 LAFAYETTE BLVD,Galloway,NJ,39.41300056,-74.37559617,RES1,3001,,16,NE,1972,1972,3103,1,1,1291.870904,1291.870904,3505,NO,24.55,33.39,3,6.64,6106,115.16281,124.682388,134.576164,140.438725,I,Above,Gable,0,5701,,28.97379927,0,0,,,,1,1,,0.03,nav,1,1972,1,, 13917,NJBF000079796,519 CAVERLY DR,Galloway,NJ,39.41287205,-74.37342899,RES1,3001,,16,NE,1985,1985,3102,1,1,1835.176232,1835.176232,3507,NO,15.84,21.88,1,-0.88,6106,115.208069,124.724824,134.623999,140.475219,I,Above,Gable,0,5701,,18.85893816,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 13918,NJBF000079879,901 E BEACH AVE,Galloway,NJ,39.41320985,-74.35898445,RES1,3001,,43,NE,1950,1950,3102,3,2,1699.290354,1699.290354,3507,YES,47.59,53.03,1,1.99,6106,115.49577,124.996553,134.931698,140.700994,I,Above,Gable,0,5701,,50.31342252,0,1.2,,,,1,1,,0.03,nav,1,1950,3,, 13919,NJBF000079848,19 QUAY BLVD,Galloway,NJ,39.41310095,-74.3661155,RES1,3001,,16,NE,1969,1969,3102,2,1,1840.010575,1840.010575,3507,YES,34.76,43.57,1,1.3,6106,115.35348,124.861636,134.778762,140.589245,I,Above,Hip,0,5701,,39.16639718,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 13920,NJBF000079683,506 E EVANS BLVD,Galloway,NJ,39.41232549,-74.36259048,RES1,3001,,16,NE,1980,1980,3102,1,1,1434.865117,1434.865117,3507,NO,14.19,19.74,1,1.48,6106,115.432574,124.936489,134.863152,140.654962,I,Above,Hip,0,5701,,16.96496704,0,0,,,,1,1,,0.03,nav,1,1980,1,, 13921,NJBF000079654,108 BAYSHORE AVE,Galloway,NJ,39.41216315,-74.36854586,RES1,3001,,16,NE,1962,1962,3102,2,1,1419.023694,1419.023694,3507,NO,31.3,45.22,1,1.47,6106,115.314196,124.824698,134.736517,140.562356,I,Above,Hip,0,5701,,38.25715743,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 13922,NJBF000079682,106 BAYSHORE AVE,Galloway,NJ,39.41230748,-74.3685438,RES1,3001,,16,NE,1980,1980,3102,1,1,1455.538508,1455.538508,3507,NO,20.7,32.88,1,2.26,6106,115.312739,124.823305,134.735012,140.560567,I,Above,Flat,0,5701,,26.79321393,0,0,,,,1,1,,0.03,nav,1,1980,1,, 13923,NJBF000079642,101 HAMILTON PLACE,Galloway,NJ,39.4121035,-74.362406,RES1,3001,,43,NE,1970,1970,3102,1,2,791.2939426,791.2939426,3507,NO,19.49,33.14,1,0.78,6106,115.438586,124.942177,134.869486,140.660632,I,Above,Gable,0,5701,,26.31146246,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 13924,NJBF000079635,702 E BEACH AVE,Galloway,NJ,39.41205611,-74.3598109,RES1,3001,,16,NE,1952,1952,3102,2,1,1160.544471,1160.544471,3507,NO,26.26,38.16,1,1.46,6106,115.491247,124.992122,134.926089,140.702238,I,Above,Hip,0,5701,,32.21215063,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 13925,NJBF000079673,500 CAVERLY DR,Galloway,NJ,39.41227594,-74.37313651,RES1,3001,,16,NE,1960,1960,3102,1,1,1681.269769,1681.269769,3507,NO,18.95,33.24,1,0.15,6106,115.220148,124.736323,134.636702,140.48752,I,Above,Hip,0,5701,,26.09144526,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13926,NJBF000079753,233 QUAY BLVD,Galloway,NJ,39.4127085,-74.3577355,RES1,3001,,43,NE,1945,1945,3102,2,3,904.1655003,904.1655003,3507,YES,35.22,45,1,1.16,6106,115.526041,125.0253,134.96407,140.726878,I,Above,Gable,0,5701,,40.11243686,0,0,,,,1,1,,0.03,nav,1,1945,2,, 13927,NJBF000079672,224 QUAY BLVD,Galloway,NJ,39.41227522,-74.35850232,RES1,3001,,19,NE,2006,2006,3102,3,1,1886.896463,1886.896463,3507,NO,49.29,54.5,1,2.09,6106,115.515226,125.014941,134.952091,140.720169,I,Above,Hip,0,5701,,51.89537976,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 13928,NJBF000079634,500 E EVANS BLVD,Galloway,NJ,39.41205394,-74.36296529,RES1,3001,,15,NE,1962,1962,3102,1,1,1623.895042,1623.895042,3507,NO,12.27,20.62,1,0,6106,115.42786,124.932019,134.85795,140.652406,I,Above,Hip,0,5701,,16.44644032,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 13929,NJBF000079721,519 LAFAYETTE BLVD,Galloway,NJ,39.41248376,-74.37447805,RES1,3001,,17,NE,1987,1987,3102,2,1,1430.797784,1430.797784,3507,NO,31.06,42.48,1,2.13,6106,115.190818,124.708784,134.60571,140.463338,I,Above,Hip,0,5701,,36.76664305,0,0,,,,1,1,,0.03,nav,1,1987,2,, 13930,NJBF000079536,104 HAMILTON PLACE,Galloway,NJ,39.41157556,-74.36273974,RES1,3001,,16,NE,1960,1960,3102,1,1,1415.593855,1415.593855,3507,NO,11.72,19.38,1,0.1,6106,115.437389,124.941025,134.867908,140.661934,I,Above,Gable,0,5701,,15.54974184,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 13931,NJBF000079566,109 BAYSHORE AVE,Galloway,NJ,39.41170719,-74.36811444,RES1,3001,,16,NE,1965,1965,3102,2,1,1626.261992,1626.261992,3507,YES,24.67,33.71,1,2.68,6106,115.327669,124.837444,134.750706,140.575001,I,Above,Gable,0,5701,,29.19308089,0,0,,,,1,1,,0.03,nav,1,1965,2,, 13932,NJBF000079525,600 E BEACH AVE,Galloway,NJ,39.41152068,-74.36053771,RES1,3001,,15,NE,1951,1951,3102,1,1,2308.034265,2308.034265,3507,NO,14.66,21.56,1,-0.28,6106,115.48225,124.983526,134.91606,140.697407,I,Above,Hip,0,5701,,18.10722484,0,1.2,,,,1,1,,0.03,nav,1,1951,1,, 13933,NJBF000079657,,Galloway,NJ,39.41218584,-74.35840994,RES1,3001,,NaN,NE,1969,0,3102,2,1,1781.180377,1781.180377,3507,NO,24.14,38.31,1,-0.97,6106,115.518005,125.017571,134.955029,140.722719,I,Above,Hip,0,5701,,31.22319022,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13934,NJBF000079643,,Galloway,NJ,39.41211659,-74.3608152,RES1,3001,,NaN,NE,1955,0,3102,2,1,2415.08855,2415.08855,3507,NO,28.77,40.98,1,2.64,6106,115.470439,124.972376,134.903726,140.685629,I,Above,Gable,0,5701,,34.87455655,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13935,NJBF000079639,520 LAFAYETTE BLVD,Galloway,NJ,39.41209194,-74.37465441,RES1,3001,,17,NE,1990,1990,3102,2,1,1668.290861,1668.290861,3507,NO,28.33,35.07,1,1.08,6106,115.191301,124.709364,134.60618,140.465535,I,Above,Gable,0,5701,,31.70236003,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 13936,NJBF000079688,707 E BEACH AVE,Galloway,NJ,39.41234326,-74.36013073,RES1,3001,,43,NE,1952,1952,3102,2,2,1494.849643,1494.849643,3507,NO,40.23,47.39,1,1.55,6106,115.481814,124.983195,134.916111,140.693626,I,Above,Gable,0,5701,,43.80897919,0,0,,,,1,1,,0.03,nav,1,1952,2,, 13937,NJBF000079461,2 FRANKLIN PLACE,Galloway,NJ,39.411258,-74.36684105,RES1,3001,,17,NE,1997,1997,3102,2,1,1370.116106,1370.116106,3507,NO,30.6,40.08,1,1.82,6106,115.358056,124.866111,134.78291,140.60091,I,Above,Gable,0,5701,,35.33840244,0,0,,,,1,1,,0.03,nav,1,1997,2,, 13938,NJBF000079460,107 PUTNAM PLACE,Galloway,NJ,39.41125587,-74.36280773,RES1,3001,,18,NE,2007,2007,3102,3,1,1501.516251,1501.516251,3507,NO,38.22,48.56,1,-0.08,6106,115.439372,124.942888,134.869852,140.664852,I,Above,Hip,0,5701,,43.38975282,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 13939,NJBF000079445,109 PUTNAM PLACE,Galloway,NJ,39.4111735,-74.362666,RES1,3001,,43,NE,1966,1966,3102,1,2,1943.367957,1943.367957,3507,NO,16.04,28.54,1,1,6106,115.4431,124.946412,134.873801,140.668133,I,Above,Hip,0,5701,,22.28748696,0,0,,,,1,1,,0.03,nav,1,1966,1,, 13940,NJBF000079150,203 2ND STREET NO,Galloway,NJ,39.40985561,-74.36345314,RES1,3001,,15,NE,1952,1952,3102,1,1,787.7665124,787.7665124,3507,NO,12.97,25.78,1,-0.19,6106,115.441077,124.944432,134.870844,140.672145,I,Above,Hip,0,5701,,19.37440504,0,0,,,,1,1,,0.03,nav,1,1952,1,, 13941,NJBF000079481,213 7TH STREET NO,Galloway,NJ,39.41134368,-74.35913656,RES1,3001,,16,NE,1950,1950,3102,2,1,1516.279299,1516.279299,3507,NO,25.58,39.69,1,1.76,6106,115.51225,125.011976,134.948238,140.721684,I,Above,Hip,0,5701,,32.63638467,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13942,NJBF000078853,133 5TH STREET SO,Galloway,NJ,39.4079484,-74.3678684,RES1,3001,,16,NE,1951,1951,3102,2,1,1299.326283,1299.326283,3507,NO,20.93,31.59,1,-0.96,6106,115.372032,124.879426,134.796158,140.626342,I,Above,Gable,0,5701,,26.25927199,0,0,,,,1,1,,0.03,nav,1,1951,2,, 13943,NJBF000078921,216 ROOSEVELT BLVD SO,Galloway,NJ,39.4083704,-74.36371552,RES1,3001,,15,NE,1950,1950,3102,1,1,1114.966654,1114.966654,3507,NO,18.16,26.1,1,0.41,6106,115.451434,124.954103,134.880951,140.686564,I,Above,Hip,0,5701,,22.13155714,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 13944,NJBF000079157,106 ROOSEVELT BLVD SO,Galloway,NJ,39.40989708,-74.36528092,RES1,3001,,16,NE,1959,1959,3102,1,1,1388.815604,1388.815604,3507,NO,14.66,27.86,1,2.19,6106,115.403789,124.909259,134.831027,140.642745,I,Above,Hip,0,5701,,21.26362864,0,0,,,,1,1,,0.03,nav,1,1959,1,, 13945,NJBF000079479,516 RISLEY RD,Galloway,NJ,39.4113347,-74.37466122,RES1,3001,,17,NE,1986,1986,3102,1,1,1302.764854,1302.764854,3507,NO,13.91,19.05,1,-0.76,6106,115.198999,124.716803,134.614208,140.475124,I,Above,Gable,0,5701,,16.48275619,0,0,,,,1,1,,0.03,nav,1,1986,1,, 13946,NJBF000078932,112 3RD STREET SO,Galloway,NJ,39.408453,-74.3667095,RES1,3001,,43,NE,1955,1955,3102,2,2,845.2543309,845.2543309,3507,NO,30.89,44.28,1,-0.46,6106,115.390142,124.896422,134.815682,140.638304,I,Above,Hip,0,5701,,37.58471578,0,0,,,,1,1,,0.03,nav,1,1955,2,, 13947,NJBF000079433,112 HAMILTON PLACE,Galloway,NJ,39.4111115,-74.3621965,RES1,3001,,16,NE,1969,1969,3102,2,1,606.2901129,606.2901129,3507,NO,24.64,35.8,1,0.89,6106,115.453209,124.955975,134.884607,140.676333,I,Above,Gable,0,5701,,30.22447839,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13948,NJBF000078917,207 2ND STREET SO,Galloway,NJ,39.40835218,-74.36493044,RES1,3001,,43,NE,1950,1950,3102,2,2,1340.012027,1340.012027,3507,NO,22.19,31.9,1,-0.19,6106,115.427133,124.931212,134.855011,140.667658,I,Above,Flat,0,5701,,27.04662985,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13949,NJBF000078905,202 W BEACH AVE,Galloway,NJ,39.40826231,-74.36555042,RES1,3001,,15,NE,1953,1953,3102,1,1,1087.646594,1087.646594,3507,NO,20.81,26.8,1,1.38,6106,115.415566,124.920324,134.84263,140.659006,I,Above,Gable,0,5701,,23.80151129,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13950,NJBF000079495,,Galloway,NJ,39.41138423,-74.35880852,RES1,3001,,NaN,NE,1951,0,3102,2,1,7278.790599,7278.790599,3507,NO,29.41,34.58,1,1.34,6106,115.518415,125.017838,134.95491,140.726354,I,Above,Hip,0,5701,,31.99579068,0,0,,,,1,1,,0.03,nav,1,1951,2,, 13951,NJBF000079128,459 W SHORE DR,Galloway,NJ,39.40971677,-74.37358147,RES1,3001,,16,NE,2015,2015,3102,2,1,1150.593145,1150.593145,3507,NO,27.5,39.33,1,0.79,6106,115.23774,124.753453,134.654757,140.513111,I,Above,Gable,0,5701,,33.41770264,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 13952,NJBF000079380,433 RISLEY RD,Galloway,NJ,39.410899,-74.3716975,RES1,3001,,16,NE,1981,1981,3102,2,1,1184.274426,1184.274426,3507,NO,31.8,40.49,1,2.39,6106,115.263614,124.777404,134.682423,140.528118,I,Above,Flat,0,5701,,36.14187734,0,0,,,,1,1,,0.03,nav,1,1981,2,, 13953,NJBF000079403,304 E EVANS BLVD,Galloway,NJ,39.41099702,-74.36362723,RES1,3001,,16,NE,1966,1966,3102,1,1,1271.339518,1271.339518,3507,NO,16.85,25.84,1,-0.59,6106,115.425594,124.929851,134.854944,140.655135,I,Above,Gable,0,5701,,21.34868871,0,0,,,,1,1,,0.03,nav,1,1966,1,, 13954,NJBF000080269,104 11TH STREET NO,Galloway,NJ,39.41451006,-74.3587038,RES1,3001,,43,NE,1952,1952,3102,2,2,1030.957583,1030.957583,3507,NO,25.93,34.09,1,1.3,6106,115.487823,124.989118,134.923886,140.689326,I,Above,Flat,0,5701,,30.00760314,0,0,,,,1,1,,0.03,nav,1,1952,2,, 13955,NJBF000079110,30 GIRARD PLACE,Galloway,NJ,39.40960658,-74.36807514,RES1,3001,,15,NE,1960,1960,3102,1,1,1508.127428,1508.127428,3507,NO,11.89,22.82,1,0.98,6106,115.350405,124.859036,134.774027,140.602135,I,Above,Hip,0,5701,,17.35610032,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13956,NJBF000079321,402 E BEACH AVE,Galloway,NJ,39.41063845,-74.36174311,RES1,3001,,15,NE,1950,1950,3102,1,1,814.1523408,814.1523408,3507,NO,18.74,32.07,1,1.88,6106,115.467289,124.969266,134.899418,140.689376,I,Above,Hip,0,5701,,25.40251032,0,0,,,,1,1,,0.03,nav,1,1950,1,, 13957,NJBF000079122,207 W EVANS BLVD,Galloway,NJ,39.40966121,-74.3666433,RES1,3001,,15,NE,1958,1958,3102,1,1,1265.797324,1265.797324,3507,NO,21.69,32.58,1,2.95,6106,115.378774,124.885706,134.804234,140.624152,I,Above,Gable,0,5701,,27.1313942,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 13958,NJBF000079308,14 GIRARD PLACE,Galloway,NJ,39.41058701,-74.36786771,RES1,3001,,16,NE,1967,1967,3102,2,1,1205.530586,1205.530586,3507,NO,33.38,40.52,1,1.7,6106,115.344328,124.853242,134.767999,140.593053,I,Above,Flat,0,5701,,36.94968989,0,0,,,,1,1,,0.03,nav,1,1967,2,, 13959,NJBF000079558,515 RISLEY RD,Galloway,NJ,39.4116805,-74.3743825,RES1,3001,,16,NE,1983,1983,3102,1,1,1549.671628,1549.671628,3507,NO,13.81,22.99,1,-0.82,6106,115.201073,124.718636,134.616447,140.475166,I,Above,Flat,0,5701,,18.39987954,0,0,,,,1,1,,0.03,nav,1,1983,1,, 13960,NJBF000079537,513 RISLEY RD,Galloway,NJ,39.4115791,-74.37420552,RES1,3001,,16,NE,1985,1985,3102,2,1,1576.781775,1576.781775,3507,NO,34.46,40.53,1,-0.63,6106,115.205699,124.722995,134.621318,140.479294,I,Above,Gable,0,5701,,37.49696444,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 13961,NJBF000078982,105 3RD STREET SO,Galloway,NJ,39.40881689,-74.36645042,RES1,3001,,43,NE,1952,1952,3102,2,2,1067.313931,1067.313931,3507,NO,23.15,37.38,1,1.01,6106,115.391542,124.897735,134.817377,140.637821,I,Above,Gable,0,5701,,30.26469504,0,0,,,,1,1,,0.03,nav,1,1952,2,, 13962,NJBF000079028,219 2ND STREET NO,Galloway,NJ,39.40910386,-74.36246336,RES1,3001,,15,NE,1953,1953,3102,1,1,1301.819411,1301.819411,3507,NO,18.42,29.5,1,2.26,6106,115.468941,124.970686,134.900169,140.697136,I,Above,Hip,0,5701,,23.96446966,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13963,NJBF000078964,412 W EVANS BLVD,Galloway,NJ,39.40867684,-74.36840407,RES1,3001,,16,NE,1960,1960,3102,1,1,1279.913294,1279.913294,3507,NO,14.96,24.82,1,1.21,6106,115.353516,124.86202,134.776885,140.60866,I,Above,Hip,0,5701,,19.88647214,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13964,NJBF000080931,1304 OUIMET RD,Galloway,NJ,39.4169224,-74.37371972,RES1,3001,,17,NE,1989,1989,3102,1,1,1478.90968,1478.90968,3507,NO,16.11,21.49,1,-0.07,6106,115.160607,124.678787,134.573747,140.418715,I,Above,Flat,0,5701,,18.80077509,0,0,,,,1,1,,0.03,nav,1,1989,1,, 13965,NJBF000078824,800 BAYSHORE AVE,Galloway,NJ,39.407774,-74.371676,RES1,3001,,17,NE,2014,2014,3102,2,1,1097.992344,1097.992344,3507,NO,28.75,35.33,1,3,6106,115.296734,124.808939,134.716361,140.568211,I,Above,Flat,0,5701,,32.04181798,0,0,,,,1,1,,0.03,nav,1,2014,2,, 13966,NJBF000078943,209 VERNON PLACE,Galloway,NJ,39.40854218,-74.36426945,RES1,3001,,43,NE,1950,1950,3102,2,2,839.9558662,839.9558662,3507,NO,32.99,46.94,1,2.97,6106,115.438466,124.941895,134.867221,140.675701,I,Above,Hip,0,5701,,39.96498199,0,0,,,,1,1,,0.03,nav,1,1950,2,, 13967,NJBF000080784,1300 RAY AVE,Galloway,NJ,39.4162916,-74.37321362,RES1,3001,,17,NE,1987,1987,3102,1,1,2166.038518,2166.038518,3507,NO,12.94,26,1,-0.19,6106,115.177272,124.694721,134.591487,140.434954,I,Above,Flat,0,5701,,19.46834822,0,0,,,,1,1,,0.03,nav,1,1987,1,, 13968,NJBF000078487,167 10TH STREET SO,Galloway,NJ,39.40579641,-74.37158084,RES1,3001,,16,NE,1940,1940,3102,1,1,1419.304828,1419.304828,3505,NO,19.13,25.11,3,4.76,6106,115.319523,124.830434,134.739474,140.594857,I,Above,Hip,0,5701,,22.11587352,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 13969,NJBF000079930,22 HEALD RD,Galloway,NJ,39.41335487,-74.36503194,RES1,3001,,16,NE,1968,1968,3102,1,1,1755.734501,1755.734501,3507,NO,12.3,18.3,1,1.08,6106,115.372683,124.879769,134.79941,140.603308,I,Above,Hip,0,5701,,15.29733732,0,0,,,,1,1,,0.03,nav,1,1968,1,, 13970,NJBF000079902,405 SHERIDAN PLACE,Galloway,NJ,39.413276,-74.3652735,RES1,3001,,17,NE,2015,2015,3102,3,1,1844.418425,1844.418425,3507,NO,58.03,67.76,1,0.32,6106,115.368629,124.87594,134.795038,140.600449,I,Above,Gable,0,5701,,62.89515168,0,0,,,,1,1,,0.03,nav,1,2015,3,, 13971,NJBF000076923,3119 REVERE BLVD,Galloway,NJ,39.39545322,-74.38722533,COM1,3001,,NaN,ME,1969,0,3401,2,1,4377.762099,4377.762099,3507,NO,32.1,40.33,1,2.52,6106,115.110196,124.63954,134.517314,140.480971,I,Above,Hip,0,NaN,,36.21559824,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13972,NJBF000080297,209 13TH STREET NO,Galloway,NJ,39.41460699,-74.35573328,RES1,3001,,20,NE,2009,2009,3102,3,1,1884.667397,1884.667397,3507,NO,37.86,47.05,1,0.98,6106,115.54631,125.044963,134.987323,140.735069,I,Above,Flat,0,5701,,42.45429392,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 13973,NJBF000081236,838 W SHORE DR,Galloway,NJ,39.41822766,-74.3826418,RES1,3001,,17,NE,1994,1994,3103,2,1,2548.997461,2548.997461,3505,NO,40.57,52.85,3,2.44,6106,114.966562,124.496074,134.36832,140.256561,I,Above,Hip,0,5701,,46.70900539,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 13974,NJBF000081053,26 VARDON RD,Galloway,NJ,39.41736616,-74.37314246,RES1,3001,,16,NE,1957,1957,3102,1,1,1157.105295,1157.105295,3507,NO,20.04,28.42,1,1.32,6106,115.167764,124.685348,134.58132,140.422385,I,Above,Hip,0,5701,,24.22839031,0,0,,,,1,1,,0.03,nav,1,1957,1,, 13975,NJBF000080296,,Galloway,NJ,39.4146045,-74.3594625,RES1,3001,,NaN,NE,1969,0,3102,2,1,1417.492869,1417.492869,3507,NO,25.77,36.47,1,0.46,6106,115.471614,124.973682,134.90642,140.676132,I,Above,Flat,0,5701,,31.12040058,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13976,NJBF000081132,922 SARAZEN RD,Galloway,NJ,39.41766878,-74.37910052,RES1,3001,,16,NE,1968,1968,3103,2,1,1125.414695,1125.414695,3505,YES,38.55,45.58,3,4.22,6106,115.044063,124.568954,134.450179,140.321712,I,Above,Gable,0,5701,,42.06717303,0,0,,,,1,1,,0.03,nav,1,1968,2,, 13977,NJBF000080430,1202 SHERIDAN BLVD,Galloway,NJ,39.41504036,-74.372163,RES1,3001,,17,NE,1985,1985,3102,2,1,2443.537362,2443.537362,3507,NO,30.57,43.71,1,1.12,6106,115.211355,124.727233,134.627683,140.467885,I,Above,Gable,0,5701,,37.13673676,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 13978,NJBF000080478,716 BOBBY JONES RD,Galloway,NJ,39.4152,-74.38126783,RES1,3001,,16,NE,1972,1972,3103,2,1,932.6302093,932.6302093,3505,NO,22.47,34.24,3,0.92,6106,115.025103,124.552693,134.430927,140.318479,I,Above,Gable,0,5701,,28.3536856,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13979,NJBF000078436,250 6TH STREET SO,Galloway,NJ,39.40550616,-74.36746912,RES1,3001,,43,NE,1951,1951,3102,1,2,1735.649906,1735.649906,3505,NO,21.38,30.15,3,8.1,6106,115.405943,124.911203,134.830625,140.6634,I,Above,Flat,0,5701,,25.7672387,0,0,,,,1,1,,0.03,nav,1,1951,1,, 13980,NJBF000081549,,Galloway,NJ,39.42003983,-74.37342784,COM3,3001,,NaN,ME,1969,0,3401,1,1,3308.869701,3308.869701,3507,NO,14.13,20.4,1,2.27,6106,115.134853,124.653124,134.545882,140.383539,I,Above,Flat,0,NaN,,17.26478169,0,0,,,,1,1,,0.03,nav,1,1969,1,, 13981,NJBF000081271,901 N SHORE DR,Galloway,NJ,39.41841877,-74.37974967,RES1,3001,,16,NE,1968,1968,3103,2,1,790.3404434,790.3404434,3505,YES,42.79,52.99,3,5.74,6106,115.02333,124.549068,134.428042,140.301395,I,Above,Gable,0,5701,,47.88940837,0,0,,,,1,1,,0.03,nav,1,1968,2,, 13982,NJBF000081289,923 N SHORE DR,Galloway,NJ,39.4185121,-74.37778044,RES1,3001,,16,NE,1960,1960,3103,1,1,1845.111833,1845.111833,3505,NO,22.09,29.4,3,3.04,6106,115.062311,124.585584,134.469212,140.332339,I,Above,Gable,0,5701,,25.74801755,0,0,,,,1,1,,0.03,nav,1,1960,1,, 13983,NJBF000081314,931 N SHORE DR,Galloway,NJ,39.4185863,-74.37702439,RES1,3001,,NaN,NE,1969,0,3103,6,1,731.6943801,731.6943801,3505,NO,112.37,125.52,3,5.5,6106,115.076869,124.599221,134.484608,140.343702,I,Above,Flat,0,5701,,118.9445065,0,0,,,,1,1,,0.03,nav,1,1969,6,, 13984,NJBF000079567,6 GIRARD PLACE,Galloway,NJ,39.411712,-74.3677115,RES1,3001,,16,NE,1972,1972,3102,1,1,1974.121593,1974.121593,3507,NO,16.12,27.92,1,0.18,6106,115.335755,124.845059,134.759322,140.581353,I,Above,Hip,0,5701,,22.02065653,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 13985,NJBF000079521,209 7TH STREET NO,Galloway,NJ,39.41151265,-74.35932436,RES1,3001,,15,NE,1953,1953,3102,1,1,881.0771997,881.0771997,3507,NO,14.79,27.35,1,-0.08,6106,115.506721,125.006749,134.942398,140.716646,I,Above,Gable,0,5701,,21.06992836,0,0,,,,1,1,,0.03,nav,1,1953,1,, 13986,NJBF000080203,105 10TH STREET NO,Galloway,NJ,39.41427002,-74.3590408,RES1,3001,,43,NE,1972,1972,3102,2,2,1254.60397,1254.60397,3507,NO,23.71,35.2,1,1.52,6106,115.483566,124.98504,134.919148,140.686965,I,Above,Gable,0,5701,,29.45708152,0,0,,,,1,1,,0.03,nav,1,1972,2,, 13987,NJBF000079953,,Galloway,NJ,39.41345314,-74.35866741,RES1,3001,,NaN,NE,1969,0,3102,2,1,1873.498011,1873.498011,3507,NO,37.7,46.03,1,1.61,6106,115.49959,125.000216,134.935975,140.702993,I,Above,Hip,0,5701,,41.86328306,0,0,,,,1,1,,0.03,nav,1,1969,2,, 13988,NJBF000079605,204 SHERIDAN PLACE,Galloway,NJ,39.41190148,-74.36588537,RES1,3001,,16,NE,1977,1977,3102,2,1,1238.384818,1238.384818,3507,NO,24.66,38.85,1,0.55,6106,115.370632,124.877927,134.796611,140.608007,I,Above,Hip,0,5701,,31.75409741,0,0,,,,1,1,,0.03,nav,1,1977,2,, 13989,NJBF000083282,559 BROOK LN,Galloway,NJ,39.44094299,-74.4810135,RES1,3001,,16,NE,1995,1995,3102,2,1,2106.905964,2106.905964,3505,NO,31.19,41.3,3,5.74,6112,112.754646,122.438612,132.089257,138.184042,I,Above,Gable,0,5701,,36.24417462,0,1.1,,,,1,1,,0.35,nav,1,1995,2,, 13990,NJBF000084763,205 S NEW YORK RD,Galloway,NJ,39.4689099,-74.46289731,RES1,3001,,16,NE,1835,1835,3102,2,1,1521.679402,1521.679402,3505,NO,26.87,36.54,3,-0.22,6110,112.927317,122.466047,132.122352,138.107884,I,Above,Flat,0,5701,,31.70282802,0,0,,,,1,1,,0.35,nav,1,1835,2,, 13991,NJBF000083338,716 PENNSYLVANIA AVE,Galloway,NJ,39.44255158,-74.47388838,RES1,3001,,16,NE,1987,1987,3102,1,1,2284.952249,2284.952249,3505,NO,18.55,25.38,3,3.48,6112,112.888061,122.549342,132.210957,138.294957,I,Above,Gable,0,5701,,21.96778672,0,0,,,,1,1,,0.35,nav,1,1987,1,, 13992,NJBF000084716,724 GREAT CREEK RD,Galloway,NJ,39.46827499,-74.45530925,RES1,3001,,16,NE,1967,1967,3102,1,1,2090.665652,2090.665652,3505,NO,16.67,22.62,3,3.29,6106,113.079262,122.610712,132.280069,138.262608,I,Above,Hip,0,5701,,19.64497446,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 13993,NJBF000084081,727 CHANESE LN,Galloway,NJ,39.45447998,-74.46158289,RES1,3001,,16,NE,1958,1958,3102,1,1,950.055637,950.055637,3505,NO,18.45,28.73,3,4.7,6110,113.051415,122.644947,132.316964,138.348132,I,Above,Gable,0,5701,,23.59120542,0,0,,,,1,1,,0.35,nav,1,1958,1,, 13994,NJBF000089484,CLARKS LANDING RD,Galloway,NJ,39.5669,-74.543238,RES1,3001,,NaN,NE,1980,0,3102,2,1,2637.051614,2637.051614,3504,NO,29.03,38.31,-4,0,6112,111.063256,120.00286,129.60537,134.988464,I,Above,Gable,0,5701,,33.67095439,0,0,,,,1,1,,0.35,nav,1,1980,2,, 13995,NJBF000083295,538 BROOK LN,Galloway,NJ,39.4413632,-74.48451331,RES1,3001,,16,NE,2001,2001,3102,1,1,1972.929079,1972.929079,3505,NO,26.21,36.48,3,8,6112,112.680813,122.371793,132.015983,138.110709,I,Above,Gable,0,5701,,31.34294087,0,0,,,,1,1,,0.35,nav,1,2001,1,, 13996,NJBF000083184,613 S NEW YORK RD,Galloway,NJ,39.43905683,-74.48045697,RES1,3001,282,16,NE,1900,1900,3102,2,1,2197.894575,2197.894575,3505,NO,31.69,38.66,3,-0.52,6112,112.77898,122.46839,132.12178,138.223604,I,Above,Hip,0,5701,,35.17497734,0,0,,,,1,1,,0.35,nav,1,1900,2,, 13997,NJBF000083193,609 S NEW YORK RD,Galloway,NJ,39.43927362,-74.48017307,RES1,3001,29,16,NE,1901,1901,3102,2,1,1167.704469,1167.704469,3505,NO,32.65,42.8,3,-0.03,6112,112.783258,122.471188,132.124868,138.22568,I,Above,Gable,0,5701,,37.72626693,0,0,,,,1,1,,0.35,nav,1,1901,2,, 13998,NJBF000086206,663 MOTTS CREEK RD,Galloway,NJ,39.51567317,-74.44340613,RES1,3001,,16,NE,1956,1989,3102,1,1,2180.014367,2180.014367,3507,NO,11.64,25.72,1,0.44,6112,112.988235,122.296246,131.931852,137.800664,I,Above,Flat,0,5701,,18.67992614,0,0,,,,1,1,,0.03,nav,1,1956,1,, 13999,NJBF000086821,211 MOTTS CREEK RD,Galloway,NJ,39.51918999,-74.43784567,RES1,3001,,16,NE,1936,1936,3102,1,1,2635.652783,2635.652783,3507,NO,12.21,25.04,1,0.67,6106,113.065697,122.357628,131.994821,137.859904,I,Above,Flat,0,5701,,18.62897593,0,0,,,,1,1,,0.03,nav,1,1936,1,, 14000,NJBF000084032,747 CHANESE LN,Galloway,NJ,39.45326165,-74.45921608,RES1,3001,,16,NE,1957,1957,3102,1,1,1722.236366,1722.236366,3505,NO,15.13,30.08,3,-0.03,6112,113.107245,122.700934,132.378301,138.411032,I,Above,Gable,0,5701,,22.60240158,0,0,,,,1,1,,0.35,nav,1,1957,1,, 14001,NJBF000083173,736 BROOK LN,Galloway,NJ,39.4388735,-74.47200633,RES1,3001,,16,NE,1977,1977,3102,2,1,1166.066326,1166.066326,3505,NO,35.38,41.92,3,1.98,6106,112.952623,122.621981,132.290437,138.386549,I,Above,Gable,0,5701,,38.6501928,0,0,,,,1,1,,0.03,nav,1,1977,2,, 14002,NJBF000087470,717 LINDBERGH AVE,Galloway,NJ,39.53439814,-74.46230656,RES1,3001,,16,NE,1931,1931,3101,1,1,925.8749431,925.8749431,3505,NO,21.92,34.18,3,3.16,6106,112.535333,121.730627,131.331941,137.143743,I,Above,Flat,0,5701,,28.04989452,0,0,,,,1,1,,0.03,nav,1,1931,1,, 14003,NJBF000087334,380 N NEW YORK RD,Galloway,NJ,39.5312828,-74.4624696,RES1,3001,,16,NE,1956,1956,3101,1,1,963.2546688,963.2546688,3505,NO,17.97,32.49,3,5.58,6112,112.551045,121.765246,131.369001,137.187266,I,Above,Gable,0,5701,,25.23260951,0,0,,,,1,1,,0.35,nav,1,1956,1,, 14004,NJBF000084616,725 LILY LAKE RD,Galloway,NJ,39.46660261,-74.45790792,RES1,3001,,16,NE,2005,2005,3102,1,1,2421.811718,2421.811718,3505,NO,17.83,27.96,3,3.6,6112,113.039985,122.581492,132.248157,138.237713,I,Above,Hip,0,5701,,22.89494276,0,1.1,,,,1,1,,0.35,nav,1,2005,1,, 14005,NJBF000087409,NACOTE CREEK,Galloway,NJ,39.53304161,-74.46455594,RES1,3001,,NaN,NE,1921,0,3101,1,1,1051.371864,1051.371864,3505,NO,16.07,21.3,3,5.01,6106,112.504251,121.706937,131.307985,137.118601,I,Above,Flat,0,5701,,18.68699365,0,0,,,,1,1,,0.03,nav,1,1921,1,, 14006,NJBF000084075,722 CHANESE LN,Galloway,NJ,39.45430854,-74.46206357,RES1,3001,,16,NE,1957,1957,3102,1,1,1041.377115,1041.377115,3505,NO,17.66,29.05,3,0.4,6110,113.043039,122.638048,132.309386,138.34158,I,Above,Gable,0,5701,,23.35860046,0,0,,,,1,1,,0.35,nav,1,1957,1,, 14007,NJBF000083220,702 BROOK LN,Galloway,NJ,39.43976503,-74.47775494,RES1,3001,,16,NE,1966,1966,3102,2,1,1963.65472,1963.65472,3505,NO,24.03,30.07,3,-2.23,6112,112.829073,122.50931,132.166758,138.264128,I,Above,Gable,0,5701,,27.04965975,0,1.1,,,,1,1,,0.15,nav,1,1966,2,, 14008,NJBF000083212,702 BROOK LN,Galloway,NJ,39.439665,-74.47764899,RES1,3001,,16,NE,1966,1966,3102,2,1,701.698435,701.698435,3505,NO,32.39,45.17,3,4.01,6112,112.831933,122.512262,132.16999,138.267672,I,Above,Gable,0,5701,,38.77835066,0,1.1,,,,1,1,,0.15,nav,1,1966,2,, 14009,NJBF000083165,617 S NEW YORK RD,Galloway,NJ,39.43871703,-74.48127434,COM1,3003,191,NaN,ME,1975,1975,3401,1,1,4691.023363,4691.023363,3507,NO,11.34,19.61,1,-0.39,6112,112.764688,122.457358,132.109645,138.213268,I,Above,Flat,0,NaN,,15.47524512,0,0,,,,1,1,,1,nav,1,1975,1,, 14010,NJBF000084043,734 CHANESE LN,Galloway,NJ,39.4534585,-74.46065999,RES1,3001,,16,NE,1957,1957,3102,1,1,1138.783942,1138.783942,3505,YES,17.3,31.87,3,-1.73,6112,113.077027,122.672593,132.347217,138.380832,I,Above,Gable,0,5701,,24.58497393,0,0,,,,1,1,,0.35,nav,1,1957,1,, 14011,NJBF000084035,734 CHANESE LN,Galloway,NJ,39.45334308,-74.46083266,RES1,3001,,16,NE,1957,1957,3102,1,1,618.4635936,618.4635936,3505,YES,16.33,22.3,3,-1.63,6112,113.074399,122.670689,132.34512,138.379295,I,Above,Gable,0,5701,,19.3176384,0,0,,,,1,1,,0.35,nav,1,1957,1,, 14012,NJBF000086689,MOTTS CREEK RD,Galloway,NJ,39.51750211,-74.43784025,RES1,3001,,NaN,NE,1969,0,3102,2,1,824.8883092,824.8883092,3507,NO,32.6,39.77,1,0.84,6106,113.077107,122.37763,132.016945,137.884511,I,Above,Gable,0,5701,,36.18303331,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14013,NJBF000088925,CLARKS LANDING RD,Galloway,NJ,39.56220507,-74.53924929,RES1,3001,,NaN,NE,1969,0,3102,2,1,2064.328152,2064.328152,3504,NO,28.3,37.63,-4,0,6112,111.142193,120.119175,129.715978,135.143462,I,Above,Gable,0,5701,,32.96438213,0,0,,,,1,1,,0.35,nav,1,1969,2,, 14014,NJBF000086831,208 MOTTS CREEK RD,Galloway,NJ,39.51934032,-74.43704984,RES1,3001,,15,NE,1955,1955,3102,1,2,1245.747696,1245.747696,3507,NO,17.44,29.33,1,2.88,6106,113.079098,122.370627,132.008457,137.873544,I,Above,Flat,0,5701,,23.38493042,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14015,NJBF000086838,210 MOTTS CREEK RD,Galloway,NJ,39.5194777,-74.43722257,RES1,3001,,16,NE,1945,1945,3102,1,1,1318.390843,1318.390843,3507,NO,15.12,21.34,1,2.83,6106,113.075042,122.365786,132.003262,137.868105,I,Above,Gable,0,5701,,18.22792017,0,0,,,,1,1,,0.03,nav,1,1945,1,, 14016,NJBF000086643,873 MOTTS CREEK RD,Galloway,NJ,39.516553,-74.4392125,RES1,3001,,NaN,NE,1956,0,3102,2,1,1022.434602,1022.434602,3507,NO,32.55,41.27,1,0.85,6106,113.058547,122.363358,132.002384,137.871067,I,Above,Gable,0,5701,,36.90657979,0,0,,,,1,1,,0.03,nav,1,1956,2,, 14017,NJBF000086897,315 N NEW YORK RD,Galloway,NJ,39.52054458,-74.46103337,RES1,3001,,16,NE,1968,1968,3101,1,1,3184.547452,3184.547452,3505,NO,16.49,26.49,3,2.42,6106,112.640642,121.918584,131.532384,137.376943,I,Above,Hip,0,5701,,21.49128205,0,0,,,,1,1,,0.03,nav,1,1968,1,, 14018,NJBF000086753,201 MOTTS CREEK RD,Galloway,NJ,39.51832114,-74.43728075,RES1,3001,,15,NE,1952,1952,3102,1,1,958.1975777,958.1975777,3507,NO,16.54,22.89,1,2.05,6106,113.081753,122.378359,132.017237,137.88373,I,Above,Flat,0,5701,,19.71886007,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14019,NJBF000084750,202 S NEW YORK RD,Galloway,NJ,39.46873647,-74.46164931,RES1,3001,,16,NE,1926,1926,3102,2,1,1454.179973,1454.179973,3505,NO,38.02,50.74,3,8.91,6112,112.952723,122.490519,132.149008,138.134439,I,Above,Gable,0,5701,,44.38203082,0,0,,,,1,1,,0.35,nav,1,1926,2,, 14020,NJBF000084745,202 S NEW YORK RD,Galloway,NJ,39.46868858,-74.46192463,RES1,3001,,16,NE,1926,1926,3102,2,1,1955.978529,1955.978529,3505,NO,39.94,53.85,3,2.35,6112,112.947669,122.48603,132.144114,138.129841,I,Above,Gable,0,5701,,46.89377848,0,0,,,,1,1,,0.35,nav,1,1926,2,, 14021,NJBF000083378,742 VILLAGE DR,Galloway,NJ,39.44324308,-74.46958713,RES1,3001,,16,NE,1994,1994,3102,1,1,1696.765524,1696.765524,3505,NO,22.62,31.52,3,6.35,6112,112.970333,122.61948,132.288052,138.36584,I,Above,Gable,0,5701,,27.06766687,0,0,,,,1,1,,0.35,nav,1,1994,1,, 14022,NJBF000083240,BROOK LN-OFF,Galloway,NJ,39.44008647,-74.48246831,RES1,3001,,NaN,NE,1931,0,3102,2,1,940.3738531,940.3738531,3505,NO,28.6,36.52,3,4.48,6112,112.730964,122.421659,132.070578,138.169457,I,Above,Gable,0,5701,,32.55756116,0,0,,,,1,1,,0.35,nav,1,1931,2,, 14023,NJBF000083410,741 VILLAGE DR,Galloway,NJ,39.44364384,-74.46968666,RES1,3001,,16,NE,1990,1990,3102,2,1,2149.360033,2149.360033,3505,NO,31.27,42.33,3,1.76,6112,112.96544,122.613439,132.281452,138.357877,I,Above,Hip,0,5701,,36.80173343,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 14024,NJBF000086767,200 MOTTS CREEK RD,Galloway,NJ,39.51848168,-74.43676102,RES1,3001,649,16,NE,1959,1959,3102,2,1,718.5936804,718.5936804,3507,NO,29.18,36.67,1,0.03,6106,113.090097,122.386117,132.025339,137.891719,I,Above,Flat,0,5701,,32.92223529,0,0,,,,1,1,,0.03,nav,1,1959,2,, 14025,NJBF000086682,889 MOTTS CREEK RD,Galloway,NJ,39.5174365,-74.438074,RES1,3001,,16,NE,1936,1936,3102,1,1,1019.951861,1019.951861,3507,NO,12.87,26.64,1,2.01,6106,113.073297,122.374055,132.013202,137.880811,I,Above,Flat,0,5701,,19.75700568,0,0,,,,1,1,,0.03,nav,1,1936,1,, 14026,NJBF000083472,725 CORDERY AVE,Galloway,NJ,39.44531835,-74.47111252,RES1,3001,,16,NE,1973,1973,3102,1,1,1372.174475,1372.174475,3505,NO,21.48,27.22,3,7.09,6112,112.92475,122.570045,132.233952,138.305529,I,Above,Gable,0,5701,,24.35031868,0,0,,,,1,1,,0.35,nav,1,1973,1,, 14027,NJBF000086977,329 N NEW YORK RD,Galloway,NJ,39.52324127,-74.46100032,RES1,3001,,16,NE,2004,2004,3101,2,1,947.1744926,947.1744926,3505,NO,34.33,40.47,3,8.19,6110,112.625016,121.887378,131.49891,137.337355,I,Above,Gable,0,5701,,37.39683834,0,1.2,,,,1,1,,0.35,nav,1,2004,2,, 14028,NJBF000084039,743 CHANESE LN,Galloway,NJ,39.45340075,-74.45972336,RES1,3001,,16,NE,1963,1963,3102,1,1,1083.091276,1083.091276,3505,YES,17.02,23.42,3,0.18,6112,113.096134,122.690234,132.366569,138.399394,I,Above,Gable,0,5701,,20.22133165,0,0,,,,1,1,,0.35,nav,1,1963,1,, 14029,NJBF000083570,400 S NEW YORK RD,Galloway,NJ,39.44743678,-74.46441027,RES1,3001,621,NaN,NE,1969,0,3102,2,1,1572.012734,1572.012734,3505,NO,42.27,50.06,3,7.46,6106,113.044844,122.668641,132.342417,138.400239,I,Above,Gable,0,5701,,46.16537325,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14030,NJBF000086741,895 MOTTS CREEK RD,Galloway,NJ,39.51822552,-74.43722682,RES1,3001,,15,NE,1952,1952,3102,1,1,952.6972353,952.6972353,3507,NO,13.28,21.82,1,0.79,6106,113.083369,122.380481,132.019535,137.886179,I,Above,Flat,0,5701,,17.55021428,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14031,NJBF000086256,201 N NEW YORK RD,Galloway,NJ,39.512329,-74.4585525,RES1,3001,,16,NE,1970,1970,3102,1,1,792.8403362,792.8403362,3507,NO,19.98,32.88,1,0.66,6112,112.735053,122.05917,131.682499,137.54877,I,Above,Gable,0,5701,,26.43101248,0,0,,,,1,1,,0.35,nav,1,1970,1,, 14032,NJBF000079715,302 SHERIDAN PLACE,Galloway,NJ,39.41246839,-74.36586677,RES1,3001,,16,NE,1970,1970,3102,1,1,1501.338087,1501.338087,3507,NO,13.74,26.49,1,-0.04,6106,115.365085,124.872651,134.790923,140.601167,I,Above,Hip,0,5701,,20.11459653,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14033,NJBF000078519,718 W BEACH AVE,Galloway,NJ,39.40594999,-74.36951609,RES1,3001,,16,NE,1954,1954,3102,2,1,1433.033738,1433.033738,3505,NO,25.48,32.33,3,0.47,6106,115.359774,124.86801,134.782045,140.625536,I,Above,Gable,0,5701,,28.90273059,0,0,,,,1,1,,0.03,nav,1,1954,2,, 14034,NJBF000082162,30 NATALIE TERRACE,Galloway,NJ,39.42727582,-74.49542474,RES1,3001,,17,NE,1958,1958,3102,1,1,1244.906181,1244.906181,3505,NO,17.14,24.58,3,0.71,6110,112.552837,122.325231,131.964663,138.120071,I,Above,Gable,0,5701,,20.86099399,0,0,,,,1,1,,0.35,nav,1,1958,1,, 14035,NJBF000079316,438 RISLEY RD,Galloway,NJ,39.41060766,-74.3722115,RES1,3001,,16,NE,1984,1984,3102,2,1,2084.454034,2084.454034,3507,NO,32.59,47,1,2.53,6106,115.256211,124.77053,134.674508,140.523601,I,Above,Gable,0,5701,,39.79473484,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14036,NJBF000079344,206 LAFAYETTE PLACE,Galloway,NJ,39.41073736,-74.36736513,RES1,3001,,NaN,NE,1962,2019,3102,2,1,1808.213885,1808.213885,3507,NO,25.79,32.62,1,-0.87,6106,115.35292,124.861314,134.777211,140.599151,I,Above,Gable,0,5701,,29.20166676,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14037,NJBF000079298,5 GIRARD PLACE,Galloway,NJ,39.41053924,-74.36740363,RES1,3001,,16,NE,1967,1967,3102,2,1,951.0147041,951.0147041,3507,NO,22.16,29.03,1,-0.06,6106,115.354204,124.862537,134.77849,140.601028,I,Above,Flat,0,5701,,25.59056446,0,0,,,,1,1,,0.03,nav,1,1967,2,, 14038,NJBF000080184,108 WASHINGTON DR,Galloway,NJ,39.41420401,-74.36850131,RES1,3001,,16,NE,1970,1970,3102,1,1,1752.211264,1752.211264,3507,YES,18.41,30.85,1,0.02,6106,115.293943,124.805265,134.715501,140.537264,I,Above,Gable,0,5701,,24.63151932,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14039,NJBF000080378,18 KIRKWOOD CIRCLE,Galloway,NJ,39.4148888,-74.36343548,RES1,3001,,17,NE,1987,1987,3102,1,1,1459.564343,1459.564343,3507,NO,15.47,28.59,1,0,6106,115.3889,124.895041,134.817412,140.609509,I,Above,Gable,0,5701,,22.02851564,0,0,,,,1,1,,0.03,nav,1,1987,1,, 14040,NJBF000079013,407 BAYSHORE AVE,Galloway,NJ,39.40902161,-74.36881429,RES1,3001,,18,NE,2016,2016,3102,3,1,1162.399983,1162.399983,3507,NO,35.09,48.05,1,0.06,6106,115.341598,124.850811,134.764401,140.597803,I,Above,Flat,0,5701,,41.56940772,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 14041,NJBF000080232,111 ROOSEVELT BLVD NO,Galloway,NJ,39.41438972,-74.36906813,RES1,3001,,17,NE,1955,1955,3102,3,1,1918.7309,1918.7309,3507,NO,58.23,64.36,1,1.36,6106,115.280577,124.792619,134.701285,140.525833,I,Above,Hip,0,5701,,61.29728888,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 14042,NJBF000081239,843 W SHORE DR,Galloway,NJ,39.41825128,-74.38101036,RES1,3001,,15,NE,1972,1972,3103,1,1,2174.887831,2174.887831,3505,NO,16.77,30.48,3,-0.9,6106,114.999465,124.526825,134.402938,140.282982,I,Above,Gable,0,5701,,23.6235267,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14043,NJBF000080066,1219 E BRIGANTINE AVE,Galloway,NJ,39.41381914,-74.35539001,COM1,3001,,NaN,ME,1969,1945,3401,1,1,2300.143134,2300.143134,3507,YES,14.17,21.59,1,2.73,6106,115.561406,125.05924,135.003161,140.750161,I,Above,Flat,0,NaN,,17.87677725,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14044,NJBF000079221,406 W SHORE DR,Galloway,NJ,39.41021334,-74.36991861,RES1,3001,,17,NE,1987,1987,3102,2,1,2323.29998,2323.29998,3507,NO,23.26,33.2,1,0.48,6106,115.306765,124.817994,134.72794,140.565173,I,Above,Gable,0,5701,,28.2305819,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 14045,NJBF000079015,,Galloway,NJ,39.40902866,-74.36198923,RES1,3001,,NaN,NE,1969,0,3102,2,1,6684.946087,6684.946087,3507,NO,33.95,48.17,1,-0.5,6106,115.479278,124.980442,134.911184,140.705531,I,Above,Gable,0,5701,,41.0610908,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14046,NJBF000080168,107 ROOSEVELT BLVD NO,Galloway,NJ,39.41414356,-74.36890776,RES1,3001,,16,NE,1966,1966,3102,1,1,1303.898942,1303.898942,3507,NO,11.81,20.9,1,-0.46,6106,115.286348,124.798113,134.707387,140.53151,I,Above,Hip,0,5701,,16.35502472,0,0,,,,1,1,,0.03,nav,1,1966,1,, 14047,NJBF000080330,212 14TH STREET NO,Galloway,NJ,39.41471717,-74.35537448,RES1,3001,,19,NE,2003,2003,3102,3,1,1941.209556,1941.209556,3507,NO,48.25,55.06,1,2.16,6106,115.552344,125.050753,134.99395,140.739378,I,Above,Hip,0,5701,,51.65305712,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 14048,NJBF000079920,30 HEALD RD,Galloway,NJ,39.41333046,-74.36431407,RES1,3001,,16,NE,1967,1967,3102,2,1,1424.237889,1424.237889,3507,NO,25.44,35.33,1,0.11,6106,115.387401,124.893699,134.815172,140.615041,I,Above,Gable,0,5701,,30.38829058,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 14049,NJBF000078338,707 W BRIGANTINE AVE,Galloway,NJ,39.40481584,-74.36809302,RES1,3001,,43,NE,1956,1956,3102,2,2,1519.869522,1519.869522,3505,NO,31.74,45.26,3,0.58,6110,115.400644,124.90622,134.824544,140.662273,I,Above,Flat,0,5701,,38.49867284,0,0,,,,1,1,,0.35,nav,1,1956,2,, 14050,NJBF000079227,1 SHERIDAN PLACE,Galloway,NJ,39.41023192,-74.36563133,RES1,3001,,16,NE,1959,1959,3102,2,1,1360.467819,1360.467819,3507,NO,23.89,36.69,1,2.2,6106,115.393212,124.899288,134.819921,140.633002,I,Above,Gable,0,5701,,30.2916777,0,0,,,,1,1,,0.03,nav,1,1959,2,, 14051,NJBF000081719,1301 E SHORE DR,Galloway,NJ,39.42222821,-74.36493091,RES1,3001,,45,NE,1987,1987,3102,3,2,2589.598148,2589.598148,3507,NO,55.79,62.83,1,2.82,6106,115.283651,124.793687,134.705348,140.493503,I,Above,Flat,0,5701,,59.30800221,0,0,,,,1,1,,0.03,nav,1,1987,3,, 14052,NJBF000080825,1106 JENKINS PKWY,Galloway,NJ,39.41647852,-74.35998443,RES1,3001,,16,NE,1982,1982,3102,2,1,2948.786837,2948.786837,3507,YES,27.38,33.7,1,0.21,6106,115.441722,124.945267,134.875018,140.644608,I,Above,Gable,0,5701,,30.5363666,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 14053,NJBF000081137,802 E SHORE DR,Galloway,NJ,39.417696,-74.363176,RES1,3001,,16,NE,1960,1960,3102,1,1,1203.820722,1203.820722,3507,NO,12.61,18.4,1,1.26,6106,115.365129,124.872217,134.792726,140.57853,I,Above,Gable,0,5701,,15.50768925,0,0,,,,1,1,,0.03,nav,1,1960,1,, 14054,NJBF000082625,103 MINNETONKA AVE,Galloway,NJ,39.43173398,-74.5154647,RES1,3001,,17,NE,1972,1972,3102,1,1,2004.521376,2004.521376,3505,NO,10.64,22.6,3,-2.77,6110,112.111361,121.927605,131.529162,137.660562,I,Above,Gable,0,5701,,16.6215954,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 14055,NJBF000080384,,Galloway,NJ,39.414893,-74.359151,RES1,3001,,NaN,NE,1969,0,3102,2,1,906.2955119,906.2955119,3507,NO,35.69,42.83,1,-0.5,6106,115.474875,124.976809,134.910099,140.677505,I,Above,Gable,0,5701,,39.2627386,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14056,NJBF000080337,,Galloway,NJ,39.414758,-74.3590325,RES1,3001,,NaN,NE,1969,0,3102,2,1,508.7097543,508.7097543,3507,NO,22.73,32.39,1,-0.77,6106,115.478665,124.980412,134.914123,140.681062,I,Above,Flat,0,5701,,27.56010606,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14057,NJBF000080836,1317 RAY AVE,Galloway,NJ,39.41652478,-74.37471411,RES1,3001,,17,NE,1996,1996,3102,1,1,1712.740451,1712.740451,3507,NO,18.27,26.54,1,0.33,6106,115.14455,124.663849,134.556737,140.40772,I,Above,Gable,0,5701,,22.40690659,0,1.1,,,,1,1,,0.03,nav,1,1996,1,, 14058,NJBF000080288,114 WASHINGTON DR,Galloway,NJ,39.41457941,-74.36873873,RES1,3001,,16,NE,1968,1968,3102,2,1,1574.032934,1574.032934,3507,NO,37.55,52.5,1,2.55,6106,115.285266,124.797003,134.706326,140.528709,I,Above,Gable,0,5701,,45.02289082,0,0,,,,1,1,,0.03,nav,1,1968,2,, 14059,NJBF000079993,536 CAVERLY DR,Galloway,NJ,39.41360073,-74.37594161,RES1,3001,,16,NE,1982,1982,3103,2,1,2044.85163,2044.85163,3505,NO,30.5,42.21,3,7.27,6106,115.149616,124.66981,134.562244,140.425439,I,Above,Flat,0,5701,,36.35813837,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 14060,NJBF000081683,231 HAGEN RD,Galloway,NJ,39.42181909,-74.36705983,RES1,3001,,17,NE,1990,1990,3102,2,1,1139.091703,1139.091703,3507,NO,38.17,48.67,1,1.63,6106,115.245066,124.756994,134.663737,140.464228,I,Above,Gable,0,5701,,43.42010151,0,0,,,,1,1,,0.03,nav,1,1990,2,, 14061,NJBF000080849,1311 RAY AVE,Galloway,NJ,39.41657835,-74.37417115,RES1,3001,,17,NE,1999,1999,3102,2,1,1754.670929,1754.670929,3507,NO,39.53,53.21,1,2.84,6106,115.154996,124.673648,134.567815,140.415826,I,Above,Gable,0,5701,,46.37085645,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 14062,NJBF000080509,732 W SHORE DR,Galloway,NJ,39.41530138,-74.38254217,RES1,3001,,17,NE,1989,1989,3103,2,1,1591.405028,1591.405028,3505,NO,27.57,37.76,3,-1.83,6106,114.998164,124.527525,134.402634,140.296412,I,Above,Hip,0,5701,,32.66343584,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 14063,NJBF000080490,130 ROOSEVELT BLVD NO,Galloway,NJ,39.41525278,-74.37012156,RES1,3001,,16,NE,1971,1971,3102,2,1,1648.516056,1648.516056,3507,YES,31.41,42.29,1,0.04,6106,115.250404,124.763956,134.669261,140.497986,I,Above,Flat,0,5701,,36.85065908,0,0,,,,1,1,,0.03,nav,1,1971,2,, 14064,NJBF000079185,480 W SHORE DR,Galloway,NJ,39.41001564,-74.37464587,RES1,3001,,16,NE,1960,1960,3102,3,1,1279.173763,1279.173763,3507,NO,53.61,61.74,1,2.32,6106,115.213009,124.730275,134.628747,140.492264,I,Above,Flat,0,5701,,57.6706737,0,1.2,,,,1,1,,0.03,nav,1,1960,3,, 14065,NJBF000081530,213 HAGEN RD,Galloway,NJ,39.41988845,-74.36673486,RES1,3001,,17,NE,1988,1988,3102,2,1,1952.956689,1952.956689,3507,NO,38.1,46.04,1,-0.3,6106,115.2712,124.78243,134.691899,140.493841,I,Above,Gable,0,5701,,42.07087111,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 14066,NJBF000081051,914 SARAZEN RD,Galloway,NJ,39.41736347,-74.37854699,RES1,3001,,16,NE,1967,1967,3103,1,1,1765.351266,1765.351266,3505,NO,14,28.04,3,1.25,6106,115.058393,124.58256,134.465398,140.334701,I,Above,Hip,0,5701,,21.02224052,0,0,,,,1,1,,0.03,nav,1,1967,1,, 14067,NJBF000080555,3 MACDONALD PLACE,Galloway,NJ,39.41543379,-74.36593872,RES1,3001,,18,NE,2000,2000,3102,2,1,1504.09465,1504.09465,3507,NO,31.45,37.52,1,2.57,6106,115.33288,124.841873,134.757454,140.562722,I,Above,Flat,0,5701,,34.48486465,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 14068,NJBF000081156,210 ROOSEVELT BLVD NO,Galloway,NJ,39.41780587,-74.37051258,RES1,3001,,16,NE,1971,1971,3102,1,1,2924.511043,2924.511043,3507,NO,16.9,28.99,1,-0.79,6106,115.216353,124.731046,134.633089,140.459255,I,Above,Gable,0,5701,,22.94516259,0,1.2,,,,1,1,,0.03,nav,1,1971,1,, 14069,NJBF000081322,202 HAGEN RD,Galloway,NJ,39.4186255,-74.36708547,RES1,3001,,17,NE,1995,1995,3102,2,1,1760.999623,1760.999623,3507,NO,23.47,35.04,1,0.04,6106,115.277043,124.788305,134.698107,140.504134,I,Above,Hip,0,5701,,29.25193108,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 14070,NJBF000080534,126 WASHINGTON DR,Galloway,NJ,39.41534518,-74.36917479,RES1,3001,,16,NE,1970,1970,3102,1,1,1469.434025,1469.434025,3507,NO,11.57,25.96,1,0.43,6106,115.268571,124.781076,134.68865,140.512021,I,Above,Hip,0,5701,,18.76479715,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14071,NJBF000080462,1007 E EVANS BLVD,Galloway,NJ,39.41514494,-74.35946967,RES1,3001,,16,NE,1975,1975,3102,1,1,1151.58628,1151.58628,3507,NO,11.76,19.35,1,-0.69,6106,115.465859,124.968233,134.900485,140.669325,I,Above,Hip,0,5701,,15.55458691,0,0,,,,1,1,,0.03,nav,1,1975,1,, 14072,NJBF000081230,841 W SHORE DR,Galloway,NJ,39.41819504,-74.38119256,RES1,3001,,16,NE,1961,1961,3103,2,1,1780.14564,1780.14564,3505,NO,26.48,39.28,3,0.48,6106,114.996315,124.523915,134.399643,140.280717,I,Above,Gable,0,5701,,32.87921776,0,0,,,,1,1,,0.03,nav,1,1961,2,, 14073,NJBF000080558,603 SHERIDAN BLVD,Galloway,NJ,39.41545276,-74.36503142,RES1,3001,,16,NE,1975,1975,3102,2,1,1290.291344,1290.291344,3507,NO,38.11,50.15,1,-0.06,6106,115.350961,124.859005,134.776853,140.57699,I,Above,Hip,0,5701,,44.12788474,0,0,,,,1,1,,0.03,nav,1,1975,2,, 14074,NJBF000078528,119 11TH STREET SO,Galloway,NJ,39.40601295,-74.3728983,RES1,3001,,16,NE,1957,1957,3102,2,1,1409.163998,1409.163998,3505,NO,35.34,49.69,3,4.75,6106,115.290486,124.803344,134.709002,140.571243,I,Above,Hip,0,5701,,42.51524206,0,0,,,,1,1,,0.03,nav,1,1957,2,, 14075,NJBF000079121,212 3RD STREET NO,Galloway,NJ,39.40965141,-74.36258909,RES1,3001,,17,NE,1994,1994,3102,3,1,1512.711013,1512.711013,3507,NO,58.57,72.02,1,2.45,6106,115.460639,124.962894,134.891649,140.688332,I,Above,Flat,0,5701,,65.29694187,0,0,,,,1,1,,0.03,nav,1,1994,3,, 14076,NJBF000079108,216 3RD STREET NO,Galloway,NJ,39.40959973,-74.36246589,RES1,3001,,15,NE,1952,1952,3102,1,1,1019.19713,1019.19713,3507,NO,14.66,19.94,1,0.17,6106,115.463653,124.965737,134.894843,140.690906,I,Above,Hip,0,5701,,17.29923416,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14077,NJBF000079922,546 W SHORE DR,Galloway,NJ,39.41333301,-74.37729217,RES1,3001,,19,NE,2004,2004,3103,3,1,2755.006905,2755.006905,3505,NO,41.19,52.49,3,-1.28,6106,115.124975,124.646877,134.536261,140.40711,I,Above,Gable,0,5701,,46.83963598,0,0,,,,1,1,,0.03,nav,1,2004,3,, 14078,NJBF000080347,909 E EVANS BLVD,Galloway,NJ,39.41478766,-74.35999299,RES1,3001,,16,NE,1950,1950,3102,1,1,1151.91024,1151.91024,3507,YES,12.1,25.69,1,0.04,6106,115.45908,124.961756,134.892977,140.665461,I,Above,Gable,0,5701,,18.89258723,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14079,NJBF000079568,404 E EVANS BLVD,Galloway,NJ,39.41171435,-74.36332612,RES1,3001,,17,NE,1967,1967,3102,2,1,2371.981239,2371.981239,3507,NO,35.57,41.69,1,-0.46,6106,115.424149,124.9285,134.853788,140.650937,I,Above,Gable,0,5701,,38.62758958,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 14080,NJBF000079827,902 E BEACH AVE,Galloway,NJ,39.41299456,-74.35850958,RES1,3001,,43,NE,1952,1952,3102,1,2,1702.125815,1702.125815,3507,NO,12.88,22.38,1,-0.73,6106,115.507526,125.007715,134.944257,140.711138,I,Above,Gable,0,5701,,17.63183844,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14081,NJBF000080200,119 LINCOLN DR,Galloway,NJ,39.41426509,-74.37003787,RES1,3001,,16,NE,1970,1970,3102,2,1,1614.63216,1614.63216,3507,NO,35.55,41.85,1,1.43,6106,115.262281,124.775399,134.681764,140.511876,I,Above,Hip,0,5701,,38.69975831,0,0,,,,1,1,,0.03,nav,1,1970,2,, 14082,NJBF000079954,537 CAVERLY DR,Galloway,NJ,39.41345501,-74.37481288,RES1,3001,,17,NE,1986,1986,3102,1,1,1789.628478,1789.628478,3507,NO,16.67,31.62,1,-0.8,6106,115.17401,124.692708,134.588014,140.445503,I,Above,Gable,0,5701,,24.14366778,0,0,,,,1,1,,0.03,nav,1,1986,1,, 14083,NJBF000078948,418 W EVANS BLVD,Galloway,NJ,39.4085852,-74.3685147,RES1,3001,,16,NE,1955,1955,3102,1,1,1696.317697,1696.317697,3507,NO,19.14,30.19,1,1.78,6106,115.352238,124.860826,134.775483,140.608064,I,Above,Gable,0,5701,,24.66572375,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14084,NJBF000079792,,Galloway,NJ,39.41286128,-74.36156183,RES1,3001,,NaN,NE,1969,0,3102,2,1,1457.240667,1457.240667,3507,NO,27.19,32.53,1,1.7,6106,115.447648,124.950799,134.879639,140.664559,I,Above,Flat,0,5701,,29.85809917,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14085,NJBF000079769,515 CAVERLY DR,Galloway,NJ,39.41275176,-74.37311258,RES1,3001,,16,NE,1980,1980,3102,2,1,2168.72055,2168.72055,3507,YES,36.59,48.02,1,1.55,6106,115.21571,124.732025,134.632073,140.481824,I,Above,Hip,0,5701,,42.30448796,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 14086,NJBF000082519,8 ANDREA LANE,Galloway,NJ,39.43058531,-74.49161648,RES1,3001,,17,NE,1989,1989,3102,2,1,1953.739299,1953.739299,3507,NO,37.2,45.03,1,2.94,6112,112.608783,122.358294,132.000712,138.141513,I,Above,Gable,0,5701,,41.11284873,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 14087,NJBF000080405,8 KIRKWOOD CIRCLE,Galloway,NJ,39.41494647,-74.36431068,RES1,3001,,17,NE,1987,1987,3102,1,1,2435.149418,2435.149418,3507,NO,16.12,25.38,1,-0.23,6106,115.370691,124.877763,134.797869,140.594838,I,Above,Hip,0,5701,,20.74822626,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 14088,NJBF000078547,235 6TH STREET SO,Galloway,NJ,39.40611851,-74.36733733,RES1,3001,,17,NE,2002,2002,3102,2,1,1567.528585,1567.528585,3505,NO,27.59,38.81,3,5.42,6106,115.402109,124.907631,134.826969,140.657763,I,Above,Gable,0,5701,,33.19983275,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 14089,NJBF000080417,104 12TH STREET NO,Galloway,NJ,39.41497994,-74.35809008,RES1,3001,,43,NE,1976,1976,3102,2,2,989.6944187,989.6944187,3507,NO,37.29,48.69,1,-0.35,6106,115.495235,124.996233,134.932175,140.693229,I,Above,Gable,0,5701,,42.99040297,0,0,,,,1,1,,0.03,nav,1,1976,2,, 14090,NJBF000081097,1310 VARDON RD,Galloway,NJ,39.4175334,-74.37439488,RES1,3001,,16,NE,1989,1989,3102,1,1,1601.910287,1601.910287,3507,NO,19.43,28.5,1,1.6,6106,115.140736,124.65982,134.552573,140.399958,I,Above,Gable,0,5701,,23.96554882,0,0,,,,1,1,,0.03,nav,1,1989,1,, 14091,NJBF000078898,130 4TH STREET SO,Galloway,NJ,39.40820843,-74.36763299,RES1,3001,,43,NE,1980,1980,3102,2,2,1270.71443,1270.71443,3507,NO,29.02,36.92,1,1.33,6106,115.374045,124.881308,134.798437,140.626781,I,Above,Gable,0,5701,,32.97195965,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14092,NJBF000078880,132 4TH STREET SO,Galloway,NJ,39.40810702,-74.36758185,RES1,3001,,45,NE,1950,1950,3102,2,2,1774.075724,1774.075724,3507,NO,38.26,45.49,1,1.08,6106,115.37614,124.883277,134.800607,140.62886,I,Above,Gable,0,5701,,41.87340487,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14093,NJBF000079576,508 LAFAYETTE BLVD,Galloway,NJ,39.41175063,-74.3737458,RES1,3001,,16,NE,1977,1977,3102,1,1,2068.532014,2068.532014,3507,NO,18.59,29.51,1,0.14,6106,115.213244,124.730006,134.629316,140.484468,I,Above,Gable,0,5701,,24.04958901,0,0,,,,1,1,,0.03,nav,1,1977,1,, 14094,NJBF000080082,21 HEALD RD,Galloway,NJ,39.41386334,-74.36652944,RES1,3001,,16,NE,1964,1964,3102,1,1,1771.876266,1771.876266,3507,NO,13.93,26.55,1,0.11,6106,115.337245,124.846212,134.761664,140.573072,I,Above,Gable,0,5701,,20.24075746,0,0,,,,1,1,,0.03,nav,1,1964,1,, 14095,NJBF000080092,23 HEALD CIRCLE,Galloway,NJ,39.41389418,-74.36633496,RES1,3001,,16,NE,1969,1969,3102,1,1,1204.963114,1204.963114,3507,NO,16.44,29.71,1,2.73,6106,115.340834,124.8496,134.765513,140.575777,I,Above,Gable,0,5701,,23.07535513,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14096,NJBF000082553,591 FOURTH ST,Galloway,NJ,39.43088491,-74.48381882,RES1,3001,,17,NE,1984,1984,3102,2,1,2220.115869,2220.115869,3507,NO,26.81,38.66,1,1.21,6112,112.767736,122.493976,132.149472,138.285601,I,Above,Gable,0,5701,,32.73526883,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 14097,NJBF000082547,824 OHIO AVE,Galloway,NJ,39.43078499,-74.51452299,RES1,3001,,17,NE,1960,1960,3102,1,1,572.3694555,572.3694555,3505,NO,18.66,32.56,3,3.86,6110,112.136195,121.953727,131.557869,137.694017,I,Above,Gable,0,5701,,25.60765283,0,0,,,,1,1,,0.35,nav,1,1960,1,, 14098,NJBF000082560,828 OHIO AVE,Galloway,NJ,39.43096684,-74.5148133,RES1,3001,,17,NE,1977,1977,3102,1,1,2171.915685,2171.915685,3505,NO,24.95,32.92,3,6.6,6110,112.129185,121.946814,131.550281,137.685456,I,Above,Gable,0,5701,,28.93589432,0,0,,,,1,1,,0.35,nav,1,1977,1,, 14099,NJBF000082239,615 OHIO AVE,Galloway,NJ,39.42826399,-74.51054366,RES1,3001,,17,NE,1900,1900,3102,2,1,1609.117369,1609.117369,3505,NO,32.22,42.16,3,7.55,6110,112.233306,122.049035,131.662479,137.811651,I,Above,Hip,0,5701,,37.19040066,0,0,,,,1,1,,0.35,nav,1,1900,2,, 14100,NJBF000082469,802 OHIO AVE,Galloway,NJ,39.43022392,-74.51337284,RES1,3001,,17,NE,1920,1920,3102,1,1,1354.413267,1354.413267,3505,NO,13.33,19.69,3,-1.02,6110,112.163106,121.979507,131.586146,137.725413,I,Above,Hip,0,5701,,16.50962013,0,0,,,,1,1,,0.35,nav,1,1920,1,, 14101,NJBF000082440,738 OHIO AVE,Galloway,NJ,39.429947,-74.51279279,RES1,3001,,17,NE,1959,1959,3102,1,1,2843.033504,2843.033504,3505,NO,13.87,19.11,3,-2.83,6110,112.176677,121.99246,131.600353,137.741142,I,Above,Gable,0,5701,,16.48874349,0,0,,,,1,1,,0.35,nav,1,1959,1,, 14102,NJBF000082732,115 MINNETONKA AVE,Galloway,NJ,39.43298749,-74.516584,RES1,3001,,17,NE,1975,1975,3102,1,1,1266.403471,1266.403471,3505,NO,24.05,30.69,3,6.86,6110,112.081327,121.895322,131.493687,137.618813,I,Above,Gable,0,5701,,27.37196889,0,0,,,,1,1,,0.35,nav,1,1975,1,, 14103,NJBF000082321,640 OHIO AVE,Galloway,NJ,39.42899549,-74.51099649,RES1,3001,,17,NE,1965,1965,3102,1,1,1846.479974,1846.479974,3505,NO,12.02,24.07,3,-0.83,6110,112.219447,122.033607,131.645491,137.791303,I,Above,Gable,0,5701,,18.04785231,0,0,,,,1,1,,0.35,nav,1,1965,1,, 14104,NJBF000082525,105 MIAMI AVE,Galloway,NJ,39.43063957,-74.51318796,RES1,3001,,17,NE,1964,1964,3102,1,1,3047.047526,3047.047526,3505,NO,19.19,27.56,3,7.47,6110,112.164401,121.978449,131.584926,137.722483,I,Above,Hip,0,5701,,23.37488676,0,0,,,,1,1,,0.35,nav,1,1964,1,, 14105,NJBF000082514,106 MIAMI AVE,Galloway,NJ,39.43055884,-74.51262826,RES1,3001,,17,NE,1964,1964,3102,1,1,1594.55726,1594.55726,3505,NO,16.15,29.7,3,1.36,6110,112.176366,121.989036,131.596517,137.734731,I,Above,Flat,0,5701,,22.92840334,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 14106,NJBF000082574,148 S MILL RD,Galloway,NJ,39.43113847,-74.51413464,RES1,3001,,17,NE,1963,1963,3102,1,1,1757.801723,1757.801723,3505,NO,19.83,32.38,3,8.59,6110,112.142044,121.956846,131.561229,137.696067,I,Above,Gable,0,5701,,26.10247748,0,0,,,,1,1,,0.35,nav,1,1963,1,, 14107,NJBF000082690,109 MINNETONKA AVE,Galloway,NJ,39.43243945,-74.5158561,RES1,3001,,17,NE,1972,1972,3102,1,1,2651.754942,2651.754942,3505,NO,25.95,36.06,3,7.91,6110,112.099295,121.913577,131.513725,137.641766,I,Above,Gable,0,5701,,31.00337829,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 14108,NJBF000082375,702 OHIO AVE,Galloway,NJ,39.42935492,-74.51167983,RES1,3001,,17,NE,1920,1920,3102,2,1,1809.390572,1809.390572,3505,NO,39.57,51.91,3,2.19,6112,112.203153,122.01796,131.628327,137.772256,I,Above,Gable,0,5701,,45.74016626,0,0,,,,1,1,,0.35,nav,1,1920,2,, 14109,NJBF000082166,22 NATALIE TERRACE,Galloway,NJ,39.42734193,-74.49566914,RES1,3001,,17,NE,1927,1927,3102,2,1,1673.023287,1673.023287,3505,NO,44.58,50.55,3,7.3,6106,112.547313,122.320224,131.959178,138.114352,I,Above,Gable,0,5701,,47.56376426,0,0,,,,1,1,,0.03,nav,1,1927,2,, 14110,NJBF000082605,104 CREEK COURT,Galloway,NJ,39.43145239,-74.48433864,RES1,3001,,17,NE,1984,1984,3102,2,1,2074.738224,2074.738224,3507,NO,40.19,45.88,1,2.28,6110,112.75293,122.47876,132.132789,138.266949,I,Above,Gable,0,5701,,43.03456117,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 14111,NJBF000082386,523 FOURTH ST,Galloway,NJ,39.42946485,-74.4849464,RES1,3001,,17,NE,2006,2006,3102,2,1,3081.050229,3081.050229,3507,NO,25.98,32.84,1,0.71,6112,112.754659,122.488702,132.14368,138.286174,I,Above,Gable,0,5701,,29.4110583,0,0,,,,1,1,,0.35,nav,1,2006,2,, 14112,NJBF000082559,101 CREEK COURT,Galloway,NJ,39.43096684,-74.48417964,RES1,3001,,17,NE,1984,1984,3102,2,1,2965.406245,2965.406245,3507,NO,35.79,50.65,1,2.04,6110,112.759688,122.486672,132.141461,138.277474,I,Above,Gable,0,5701,,43.21739386,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 14113,NJBF000082501,17 JULIANNA DRIVE,Galloway,NJ,39.43044638,-74.49110711,RES1,3001,,17,NE,1999,1999,3102,2,1,2647.293591,2647.293591,3507,NO,29.94,39.19,1,-0.4,6110,112.62026,122.368779,132.012204,138.153426,I,Above,Hip,0,5701,,34.56492186,0,0,,,,1,1,,0.35,nav,1,1999,2,, 14114,NJBF000082281,507 FOURTH ST,Galloway,NJ,39.42860166,-74.48564453,RES1,3001,,17,NE,2007,2007,3102,2,1,3452.111131,3452.111131,3507,NO,28.03,37.04,1,2.18,6106,112.746413,122.485247,132.139897,138.28627,I,Above,Hip,0,5701,,32.53611191,0,0,,,,1,1,,0.03,nav,1,2007,2,, 14115,NJBF000082455,12 ANDREA LANE,Galloway,NJ,39.43009737,-74.49185665,RES1,3001,,17,NE,1990,1990,3102,2,1,1829.584278,1829.584278,3507,NO,26.44,34.61,1,-0.35,6110,112.607184,122.359105,132.001612,138.144494,I,Above,Hip,0,5701,,30.52685998,0,1.1,,,,1,1,,0.35,nav,1,1990,2,, 14116,NJBF000082642,650 WEILER LANE,Galloway,NJ,39.4318853,-74.48408544,RES1,3001,,17,NE,1990,1990,3102,2,1,1168.18648,1168.18648,3507,NO,33.06,39.09,1,0.32,6112,112.755078,122.478764,132.132801,138.265082,I,Above,Gable,0,5701,,36.07428119,0,1.1,,,,1,1,,0.35,nav,1,1990,2,, 14117,NJBF000082176,16 NATALIE TERRACE,Galloway,NJ,39.42747858,-74.49614735,RES1,3001,,17,NE,2000,2000,3102,2,1,1483.885805,1483.885805,3505,NO,34.52,43.13,3,-2.28,6106,112.536444,122.31034,131.948348,138.103022,I,Above,Flat,0,5701,,38.82082177,0,0,,,,1,1,,0.03,nav,1,2000,2,, 14118,NJBF000082478,103 WEILER LANE EAST,Galloway,NJ,39.43029785,-74.48447742,RES1,3001,,17,NE,1987,1987,3102,2,1,3203.380282,3203.380282,3507,NO,31.06,43.6,1,2.41,6112,112.758358,122.488366,132.143312,138.282184,I,Above,Gable,0,5701,,37.32766748,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 14119,NJBF000082591,100 CREEK COURT,Galloway,NJ,39.43129935,-74.48359477,RES1,3001,,17,NE,1984,1984,3102,2,1,3259.650411,3259.650411,3507,NO,36.52,42.39,1,-0.65,6112,112.769386,122.493645,132.149116,138.283453,I,Above,Gable,0,5701,,39.45378412,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 14120,NJBF000082621,652 WEILER LANE,Galloway,NJ,39.43165069,-74.48422508,RES1,3001,,17,NE,1986,1986,3102,2,1,1953.748744,1953.748744,3507,NO,24.74,34.17,1,2.15,6110,112.753861,122.478713,132.132741,138.266039,I,Above,Gable,0,5701,,29.45344776,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 14121,NJBF000082813,100 HOWLETT LANE,Galloway,NJ,39.43383853,-74.48130293,RES1,3001,,17,NE,1999,1999,3102,2,1,3364.825943,3364.825943,3507,NO,35.46,43,1,1.37,6110,112.798417,122.508014,132.16496,138.28777,I,Above,Hip,0,5701,,39.22912024,0,0,,,,1,1,,0.35,nav,1,1999,2,, 14122,NJBF000082575,603 HAY ROAD,Galloway,NJ,39.43115699,-74.48244124,RES1,3001,,17,NE,1987,1987,3102,2,1,2892.259235,2892.259235,3507,NO,35.13,46.53,1,1.02,6112,112.794243,122.515754,132.17337,138.30755,I,Above,Gable,0,5701,,40.82853141,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 14123,NJBF000082417,506 LAZY LANE,Galloway,NJ,39.42973108,-74.48312517,RES1,3001,,18,NE,1986,1986,3102,2,1,6438.236787,6438.236787,3507,NO,22.33,32.64,1,0.56,6106,112.790442,122.518448,132.176305,138.316618,I,Above,Flat,0,5701,,27.48361989,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 14124,NJBF000080266,118 ROOSEVELT BLVD NO,Galloway,NJ,39.41449694,-74.3697279,RES1,3001,,16,NE,1967,1967,3102,1,1,1975.378584,1975.378584,3507,NO,20.75,26.87,1,1.46,6106,115.266148,124.778989,134.685924,140.513902,I,Above,Hip,0,5701,,23.80906502,0,0,,,,1,1,,0.03,nav,1,1967,1,, 14125,NJBF000079557,435 LAFAYETTE BLVD,Galloway,NJ,39.4116765,-74.37170732,RES1,3001,,17,NE,1979,2018,3102,2,1,2352.018396,2352.018396,3507,NO,36.55,46.79,1,0.81,6106,115.255332,124.769468,134.673847,140.518067,I,Above,Flat,0,5701,,41.67126486,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 14126,NJBF000080239,,Galloway,NJ,39.41440193,-74.35737654,RES1,3001,,NaN,NE,1969,0,3102,2,1,1935.571361,1935.571361,3507,NO,36.9,45.19,1,2.45,6106,115.515539,125.01554,134.953819,140.711643,I,Above,Flat,0,5701,,41.04791187,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14127,NJBF000082383,554 FOURTH ST,Galloway,NJ,39.42943825,-74.48354135,RES1,3001,,17,NE,2000,2000,3102,1,1,5893.023742,5893.023742,3507,NO,10.4,22.7,1,-0.99,6106,112.783958,122.514078,132.17151,138.313262,I,Above,Hip,0,5701,,16.54593893,0,1.2,,,,1,1,,0.03,nav,1,2000,1,, 14128,NJBF000080853,16 MACDERMOTT PLACE,Galloway,NJ,39.4165883,-74.36645546,RES1,3001,,16,NE,1983,1983,3102,2,1,1669.321758,1669.321758,3507,NO,33.06,43.5,1,-0.49,6106,115.310601,124.820575,134.733835,140.539935,I,Above,Flat,0,5701,,38.2807882,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 14129,NJBF000079607,108 6TH STREET NO,Galloway,NJ,39.41191645,-74.36177539,RES1,3001,,18,NE,2002,2002,3102,2,1,2023.563431,2023.563431,3507,NO,23.4,36.15,1,1.8,6106,115.453244,124.956057,134.885122,140.672957,I,Above,Gable,0,5701,,29.77415121,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 14130,NJBF000078561,200 7TH STREET SO,Galloway,NJ,39.40619735,-74.36911261,RES1,3001,,43,NE,1954,1954,3102,2,2,1467.198056,1467.198056,3505,NO,23.96,37.87,3,0.8,6106,115.365325,124.873193,134.788059,140.628775,I,Above,Hip,0,5701,,30.91488755,0,0.1,,,,1,1,,0.03,nav,1,1954,2,, 14131,NJBF000079183,104 ROOSEVELT BLVD SO,Galloway,NJ,39.41001203,-74.36539433,RES1,3001,,16,NE,1956,1956,3102,1,1,1414.697114,1414.697114,3507,NO,13.74,28.4,1,0.29,6106,115.400302,124.905972,134.827369,140.639515,I,Above,Hip,0,5701,,21.07467901,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14132,NJBF000078315,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,4114.008352,4114.008352,3505,NO,34.93,45.73,3,3.71,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,40.33246063,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14133,NJBF000078937,205 W BEACH AVE,Galloway,NJ,39.40849994,-74.36598949,RES1,3001,,15,NE,1955,1955,3102,1,1,813.9231393,813.9231393,3507,NO,10.77,17.49,1,-0.96,6106,115.404192,124.909631,134.830661,140.649089,I,Above,Gable,0,5701,,14.12863556,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14134,NJBF000076307,400 30TH STREET SO,Galloway,NJ,39.39292337,-74.38255821,RES1,3001,,17,NE,1950,1950,3102,1,1,1464.276212,1464.276212,3507,NO,16.51,25.21,1,1.06,6106,115.233804,124.752475,134.64234,140.587273,I,Above,Flat,0,5701,,20.86364511,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 14135,NJBF000076587,3213 W BRIGANTINE AVE,Galloway,NJ,39.39398557,-74.38664037,COM1,3001,,NaN,ME,1969,0,3401,2,1,1547.731962,1547.731962,3507,NO,27.72,40.72,1,2.25,6106,115.138173,124.665307,134.545162,140.509397,I,Above,Flat,0,NaN,,34.22330928,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 14136,NJBF000076552,3213 W BRIGANTINE AVE,Galloway,NJ,39.3938655,-74.3864875,COM1,3001,,NaN,ME,1969,0,3401,2,1,950.1010435,950.1010435,3507,NO,26.77,32.2,1,-0.95,6106,115.142623,124.669374,134.549639,140.513371,I,Above,Gable,0,NaN,,29.48875631,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 14137,NJBF000076578,312 31ST STREET SO,Galloway,NJ,39.393971,-74.384907,RES1,3001,,17,NE,2014,2014,3102,3,1,1091.823117,1091.823117,3507,NO,59.73,65.36,1,1.79,6106,115.174034,124.697916,134.581805,140.53685,I,Above,Hip,0,5701,,62.54418024,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 14138,NJBF000076535,4319 HARBOR BEACH BLVD,Galloway,NJ,39.39381266,-74.39815595,RES1,3001,,NaN,NE,1969,0,3102,2,1,2643.272215,2643.272215,3505,NO,23.62,31.23,3,-0.22,6106,114.901695,124.451838,134.30563,140.32916,I,Above,Hip,0,5701,,27.42426457,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14139,NJBF000076583,4319 HARBOR BEACH BLVD,Galloway,NJ,39.39398062,-74.39824904,RES1,3001,,NaN,NE,1969,0,3102,2,1,2093.280826,2093.280826,3505,NO,35.97,46.87,3,-0.82,6106,114.89795,124.448391,134.301889,140.325419,I,Above,Gable,0,5701,,41.41955743,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14140,NJBF000076555,319 30TH STREET SO,Galloway,NJ,39.39387818,-74.38295322,RES1,3001,,15,NE,1948,1948,3102,1,1,1330.775845,1330.775845,3507,NO,11.62,25.22,1,0.7,6106,115.215243,124.735468,134.62397,140.568722,I,Above,Gable,0,5701,,18.41849601,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 14141,NJBF000078710,201 W BRIGANTINE AVE,Galloway,NJ,39.407075,-74.3642955,RES1,3001,,43,NE,1950,1950,3102,2,3,833.5411245,833.5411245,3507,NO,28.25,38.82,1,-0.33,6106,115.453451,124.955892,134.882201,140.693641,I,Above,Gable,0,5701,,33.53760975,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 14142,NJBF000078712,131 9TH STREET SO,Galloway,NJ,39.40708564,-74.37165414,RES1,3001,,18,NE,2016,2016,3102,2,1,1357.277714,1357.277714,3507,NO,26.02,31.29,1,-0.01,6106,115.304422,124.816208,134.724175,140.577307,I,Above,Hip,0,5701,,28.65892207,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 14143,NJBF000080174,126 LINCOLN DR,Galloway,NJ,39.41417954,-74.37048131,RES1,3001,,16,NE,1973,1973,3102,2,1,1269.779444,1269.779444,3507,NO,35.34,42.45,1,2.4,6106,115.254208,124.767815,134.673156,140.505852,I,Above,Gable,0,5701,,38.89171626,0,0,,,,1,1,,0.03,nav,1,1973,2,, 14144,NJBF000080680,127 WASHINGTON DR,Galloway,NJ,39.41589143,-74.36888722,RES1,3001,,16,NE,1969,1969,3102,1,1,1506.047995,1506.047995,3507,NO,20.64,30.69,1,1.15,6106,115.268764,124.781128,134.688937,140.509727,I,Above,Gable,0,5701,,25.6684097,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14145,NJBF000079395,211 6TH STREET NO,Galloway,NJ,39.41096821,-74.35987979,RES1,3001,,15,NE,1949,1949,3102,1,1,1292.012787,1292.012787,3507,NO,12.46,19.6,1,0.17,6106,115.501278,125.001509,134.936161,140.714642,I,Above,Gable,0,5701,,16.02903215,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 14146,NJBF000079406,414 LAFAYETTE BLVD,Galloway,NJ,39.4110036,-74.37004277,RES1,3001,,16,NE,1980,1980,3102,1,1,1793.654016,1793.654016,3507,NO,10.14,18.6,1,-0.6,6106,115.296001,124.807769,134.716793,140.553169,I,Above,Gable,0,5701,,14.37071114,0,0,,,,1,1,,0.03,nav,1,1980,1,, 14147,NJBF000079249,105 ROOSEVELT BLVD SO,Galloway,NJ,39.41033146,-74.36488741,RES1,3001,,16,NE,1956,1956,3102,1,1,1595.786922,1595.786922,3507,NO,14.39,22.19,1,0.12,6106,115.407182,124.912458,134.834887,140.643537,I,Above,Hip,0,5701,,18.29087106,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14148,NJBF000079137,451 W SHORE DR,Galloway,NJ,39.40975189,-74.37278722,RES1,3001,,16,NE,1966,1966,3102,1,1,2290.614022,2290.614022,3507,NO,13.36,25.71,1,-0.26,6106,115.253481,124.76816,134.671384,140.525337,I,Above,Gable,0,5701,,19.53575553,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 14149,NJBF000078659,,Galloway,NJ,39.40675751,-74.36566092,RES1,3001,,NaN,NE,1951,0,3102,2,1,2065.687483,2065.687483,3507,NO,33.35,43.28,1,2.64,6106,115.429225,124.933096,134.856189,140.676122,I,Above,Flat,0,5701,,38.31872317,0,0,,,,1,1,,0.03,nav,1,1951,2,, 14150,NJBF000079990,,Galloway,NJ,39.41357916,-74.35580648,RES1,3001,,NaN,NE,1969,0,3102,2,1,1961.986905,1961.986905,3507,NO,27.5,40.92,1,1.3,6106,115.555593,125.053638,134.99668,140.74656,I,Above,Hip,0,5701,,34.20973514,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14151,NJBF000076508,2905 OCEAN AVE,Galloway,NJ,39.39370209,-74.38276308,RES1,3001,,16,NE,1946,1946,3102,1,1,2456.936799,2456.936799,3507,YES,18.37,26.17,1,2.01,6106,115.22107,124.7408,134.629829,140.57398,I,Above,Hip,0,5701,,22.27186522,0,1.2,,,,1,1,,0.03,nav,1,1946,1,, 14152,NJBF000078626,215 6TH STREET SO,Galloway,NJ,39.40655865,-74.36776458,RES1,3001,,16,NE,1957,1957,3102,1,1,1468.830553,1468.830553,3507,NO,17.73,27.16,1,-0.43,6106,115.388787,124.895155,134.813123,140.645476,I,Above,Hip,0,5701,,22.44401825,0,0,,,,1,1,,0.03,nav,1,1957,1,, 14153,NJBF000078393,201 10TH STREET SO,Galloway,NJ,39.40523636,-74.37098537,RES1,3001,,15,NE,1949,1949,3102,1,1,2018.505007,2018.505007,3505,YES,16.94,27.09,3,5.56,6106,115.33755,124.847289,134.758174,140.611386,I,Above,Hip,0,5701,,22.01442203,0,1.2,,,,1,1,,0.03,nav,1,1949,1,, 14154,NJBF000080161,112 11TH STREET NO,Galloway,NJ,39.41411933,-74.35832733,RES1,3001,,47,NE,1978,1978,3102,2,2,1522.49546,1522.49546,3507,NO,37.97,51.13,1,1.78,6106,115.499455,125.000165,134.936237,140.700127,I,Above,Gable,0,5701,,44.55019408,0,0,,,,1,1,,0.03,nav,1,1978,2,, 14155,NJBF000079366,427 RISLEY RD,Galloway,NJ,39.41082111,-74.37117219,RES1,3001,,16,NE,1984,1984,3102,1,1,1488.981589,1488.981589,3507,NO,17.04,30.08,1,-0.89,6106,115.275058,124.788149,134.694524,140.537489,I,Above,Gable,0,5701,,23.56258137,0,0,,,,1,1,,0.03,nav,1,1984,1,, 14156,NJBF000078370,207 10TH STREET SO,Galloway,NJ,39.40508806,-74.37094853,RES1,3001,,15,NE,1948,1948,3102,1,1,1247.254631,1247.254631,3505,NO,20.07,33.84,3,7.59,6106,115.33985,124.849442,134.760515,140.613832,I,Above,Gable,0,5701,,26.95345743,0,0,,,,1,1,,0.03,nav,1,1948,1,, 14157,NJBF000079294,400 E BEACH AVE,Galloway,NJ,39.41052346,-74.36182752,RES1,3001,,16,NE,1955,1955,3102,1,1,1525.294958,1525.294958,3507,NO,15.03,28.29,1,2.98,6106,115.466787,124.968781,134.898806,140.689467,I,Above,Hip,0,5701,,21.65946012,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 14158,NJBF000077028,108 31ST STREET SO,Galloway,NJ,39.39595584,-74.38715795,RES1,3001,,47,NE,1978,1978,3102,2,4,1875.552808,1875.552808,3507,YES,37.88,45.63,1,0.21,6106,115.106139,124.635716,134.513386,140.47544,I,Above,Gable,0,5701,,41.75648658,0,0,,,,1,1,,0.03,nav,1,1978,2,, 14159,NJBF000078391,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,5573.542004,5573.542004,3505,NO,24.03,38.08,3,-0.11,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,31.05373703,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14160,NJBF000079572,,Galloway,NJ,39.4117379,-74.35906842,RES1,3001,,NaN,NE,1969,0,3102,2,1,3009.496175,3009.496175,3507,NO,40.47,47.71,1,2.27,6106,115.509499,125.00942,134.945546,140.717894,I,Above,Gable,0,5701,,44.09011926,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14161,NJBF000080441,1100 E EVANS BLVD,Galloway,NJ,39.41506071,-74.35880981,RES1,3001,,17,NE,2006,2006,3102,3,1,1569.45002,1569.45002,3507,NO,35.85,46.92,1,-0.92,6106,115.479964,124.981674,134.915693,140.680826,I,Above,Flat,0,5701,,41.38834983,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 14162,NJBF000079206,209 BAYSHORE AVE,Galloway,NJ,39.41014773,-74.36838437,RES1,3001,,19,NE,2005,2005,3102,3,1,1787.035869,1787.035869,3507,NO,48.24,58.43,1,0.53,6106,115.338492,124.847795,134.761604,140.590399,I,Above,Hip,0,5701,,53.33127809,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 14163,NJBF000080031,29 HEALD RD,Galloway,NJ,39.41370815,-74.36445896,RES1,3001,,16,NE,1970,1970,3102,2,1,1303.59221,1303.59221,3507,NO,29.43,37.73,1,0,6106,115.380552,124.887195,134.807985,140.607998,I,Above,Gable,0,5701,,33.57706769,0,0,,,,1,1,,0.03,nav,1,1970,2,, 14164,NJBF000080153,805 E EVANS BLVD,Galloway,NJ,39.4140923,-74.36088429,RES1,3001,,16,NE,1978,1978,3102,2,1,1358.584871,1358.584871,3507,NO,24.44,39.38,1,-0.93,6106,115.448437,124.951599,134.881139,140.659982,I,Above,Gable,0,5701,,31.91178586,0,0,,,,1,1,,0.03,nav,1,1978,2,, 14165,NJBF000079041,206 W EVANS BLVD,Galloway,NJ,39.40916484,-74.36680055,RES1,3001,,16,NE,1952,1952,3102,2,1,1643.768623,1643.768623,3507,NO,24.55,38.83,1,2.57,6106,115.380792,124.887619,134.806124,140.627892,I,Above,Flat,0,5701,,31.69085237,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 14166,NJBF000083155,619 S NEW YORK RD,Galloway,NJ,39.43844432,-74.4814421,COM1,3003,643,NaN,ME,1886,1886,3401,2,1,2492.14379,2492.14379,3507,NO,35.87,49.97,1,2.1,6112,112.763155,122.457223,132.109477,138.214264,I,Above,Hip,0,NaN,,42.91922902,0,0,,,,1,1,,0.35,nav,1,1886,2,, 14167,NJBF000086632,861 MOTTS CREEK RD,Galloway,NJ,39.516188,-74.440224,RES1,3001,,16,NE,1941,1941,3102,1,1,798.3494937,798.3494937,3507,NO,19.34,30.8,1,-0.15,6106,113.042598,122.348917,131.987304,137.856299,I,Above,Gable,0,5701,,25.06890483,0,0,,,,1,1,,0.03,nav,1,1941,1,, 14168,NJBF000083223,605 PRICE LN,Galloway,NJ,39.43987639,-74.48209402,RES1,3001,,16,NE,1978,1978,3102,2,1,2127.663394,2127.663394,3505,NO,33.74,47.16,3,3.18,6110,112.740006,122.43054,132.080305,138.179823,I,Above,Gable,0,5701,,40.45210203,0,0,,,,1,1,,0.35,nav,1,1978,2,, 14169,NJBF000083248,705 BROOK LN,Galloway,NJ,39.44025526,-74.47773889,RES1,3001,,16,NE,2007,2007,3102,2,1,2103.843322,2103.843322,3505,NO,26.69,40.94,3,3.84,6112,112.825967,122.504441,132.161453,138.256933,I,Above,Gable,0,5701,,33.81676536,0,1.2,,,,1,1,,0.35,nav,1,2007,2,, 14170,NJBF000086616,848 MOTTS CREEK RD,Galloway,NJ,39.51585182,-74.44005886,RES1,3001,,15,NE,1963,1963,3102,1,1,1515.94064,1515.94064,3507,NO,14.47,23.93,1,1.61,6106,113.047828,122.355908,131.99488,137.864454,I,Above,Gable,0,5701,,19.20094445,0,0,,,,1,1,,0.03,nav,1,1963,1,, 14171,NJBF000086618,MOTTS CREEK RD,Galloway,NJ,39.51590343,-74.44176314,RES1,3001,,NaN,NE,1960,0,3102,2,1,1213.907369,1213.907369,3507,NO,24.26,38.87,1,2.29,6106,113.016542,122.323833,131.960916,137.829917,I,Above,Flat,0,5701,,31.56253527,0,0,,,,1,1,,0.03,nav,1,1960,2,, 14172,NJBF000083324,607 SHARSWOOD AVE,Galloway,NJ,39.44231073,-74.47922072,RES1,3001,,16,NE,1966,1966,3102,1,1,1737.012176,1737.012176,3505,NO,15.8,25.47,3,3.55,6110,112.781642,122.456268,132.108762,138.197262,I,Above,Gable,0,5701,,20.63492015,0,0,,,,1,1,,0.35,nav,1,1966,1,, 14173,NJBF000086628,859 MOTTS CREEK RD,Galloway,NJ,39.51610082,-74.44051808,RES1,3001,,NaN,NE,1946,1946,3102,1,1,1120.869301,1120.869301,3507,NO,17.66,31,1,0.93,6106,113.037837,122.344503,131.98268,137.851733,I,Above,Gable,0,5701,,24.33271417,0,0,,,,1,1,,0.03,nav,1,1946,1,, 14174,NJBF000084097,721 CHANESE LN,Galloway,NJ,39.45486975,-74.46219656,RES1,3001,,16,NE,1957,1957,3102,1,1,1412.513693,1412.513693,3505,NO,8.88,15.69,3,-1.89,6110,113.036456,122.629649,132.300218,138.330677,I,Above,Gable,0,5701,,12.28530429,0,0,,,,1,1,,0.35,nav,1,1957,1,, 14175,NJBF000083394,704 PENNSYLVANIA AVE,Galloway,NJ,39.44341355,-74.47646845,RES1,3001,,16,NE,1936,1936,3102,2,1,1884.413022,1884.413022,3505,NO,29.77,37.23,3,6.29,6112,112.829792,122.493942,132.15022,138.232823,I,Above,Gable,0,5701,,33.49949547,0,0,,,,1,1,,0.35,nav,1,1936,2,, 14176,NJBF000084749,741 GREAT CREEK RD,Galloway,NJ,39.46873275,-74.45396311,RES1,3001,,16,NE,1965,1965,3102,2,1,748.0401724,748.0401724,3505,NO,20.05,28.89,3,-1.65,6112,113.102344,122.630299,132.30144,138.281536,I,Above,Gable,0,5701,,24.46741974,0,0,,,,1,1,,0.35,nav,1,1965,2,, 14177,NJBF000084297,820 SOMERSTOWN LN,Galloway,NJ,39.46020122,-74.45471532,RES1,3001,,NaN,NE,2017,2017,3102,2,1,1973.685476,1973.685476,3505,NO,36.45,42.68,3,0.9,6112,113.147219,122.708656,132.387067,138.39311,I,Above,Hip,0,5701,,39.5690427,0,0,,,,1,1,,0.35,nav,1,2017,2,, 14178,NJBF000083321,711 BROWN AVE,Galloway,NJ,39.44221917,-74.47548865,RES1,3001,,16,NE,1972,1972,3102,2,1,5097.323509,5097.323509,3505,NO,37.04,48.24,3,6.71,6106,112.857933,122.524102,132.183213,138.269659,I,Above,Gable,0,5701,,42.64281416,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 14179,NJBF000083310,608 SHARSWOOD AVE,Galloway,NJ,39.44189315,-74.4789814,RES1,3001,,16,NE,1985,1985,3102,1,1,2125.963326,2125.963326,3505,NO,22.58,32.71,3,4.92,6106,112.789378,122.464962,132.118264,138.208234,I,Above,Gable,0,5701,,27.64488661,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 14180,NJBF000086603,837 MOTTS CREEK RD,Galloway,NJ,39.51562484,-74.44374373,RES1,3001,,15,NE,1954,1954,3102,1,1,2227.729272,2227.729272,3507,NO,17.21,24.13,1,2.77,6106,112.982417,122.290587,131.92589,137.794655,I,Above,Gable,0,5701,,20.66992861,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 14181,NJBF000084001,742 CHANESE LN,Galloway,NJ,39.45298188,-74.45981164,RES1,3001,,16,NE,1957,1957,3102,2,1,1092.973823,1092.973823,3505,YES,35.93,43.85,3,5.16,6106,113.097348,122.693085,132.369671,138.40396,I,Above,Gable,0,5701,,39.8908786,0,0,,,,1,1,,0.03,nav,1,1957,2,, 14182,NJBF000079076,34 GIRARD PLACE,Galloway,NJ,39.40935497,-74.36815999,RES1,3001,,18,NE,1955,2018,3102,2,1,1444.129668,1444.129668,3507,NO,27.95,36.2,1,1.32,6106,115.35133,124.859922,134.774891,140.603968,I,Above,Gable,0,5701,,32.07495669,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 14183,NJBF000079195,22 GIRARD PLACE,Galloway,NJ,39.41009031,-74.36797747,RES1,3001,,16,NE,1962,1962,3102,2,1,1207.291637,1207.291637,3507,YES,34.58,48.09,1,1.43,6106,115.347326,124.856103,134.770971,140.597594,I,Above,Gable,0,5701,,41.33338594,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14184,NJBF000080107,1505 SHERIDAN BLVD,Galloway,NJ,39.4139457,-74.37881322,RES1,3001,,15,NE,1972,1972,3103,1,1,1231.096022,1231.096022,3505,NO,10.7,19.35,3,-1.44,6106,115.087796,124.61187,134.497067,140.374603,I,Above,Flat,0,5701,,15.02376744,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14185,NJBF000078422,247 7TH STREET SO,Galloway,NJ,39.40543684,-74.36784538,RES1,3001,,17,NE,2004,2004,3102,2,1,1694.798805,1694.798805,3505,NO,40.05,46.56,3,2.5,6106,115.399064,124.904762,134.823293,140.658351,I,Above,Gable,0,5701,,43.30465021,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 14186,NJBF000081574,228 HAGEN RD,Galloway,NJ,39.42040458,-74.36732627,RES1,3001,,17,NE,1993,1993,3102,2,1,1597.163973,1597.163973,3507,NO,25.67,37.93,1,-0.53,6106,115.254061,124.765987,134.673474,140.477779,I,Above,Gable,0,5701,,31.80102042,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 14187,NJBF000080036,27 HEALD RD,Galloway,NJ,39.4137339,-74.36462169,RES1,3001,,16,NE,1970,1970,3102,1,1,2123.067822,2123.067822,3507,NO,12.42,24.97,1,-0.71,6106,115.377001,124.88383,134.804187,140.605078,I,Above,Gable,0,5701,,18.6965334,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14188,NJBF000080007,109 LINCOLN DR,Galloway,NJ,39.4136427,-74.36960233,RES1,3001,,16,NE,1960,1960,3102,1,1,1189.538409,1189.538409,3507,NO,15.33,22.36,1,2.1,6106,115.277514,124.789889,134.697862,140.526749,I,Above,Flat,0,5701,,18.84558126,0,0,,,,1,1,,0.03,nav,1,1960,1,, 14189,NJBF000079530,511 RISLEY RD,Galloway,NJ,39.4115461,-74.37406867,RES1,3001,,16,NE,1981,1981,3102,1,1,1584.139057,1584.139057,3507,NO,15.04,27.92,1,2.05,6106,115.20882,124.725925,134.624609,140.481913,I,Above,Gable,0,5701,,21.47936606,0,0,,,,1,1,,0.03,nav,1,1981,1,, 14190,NJBF000079095,309 BAYSHORE AVE,Galloway,NJ,39.40952235,-74.36851998,RES1,3001,,16,NE,1972,1972,3102,2,1,1105.167243,1105.167243,3507,NO,41.12,54.39,1,2.32,6106,115.342299,124.851428,134.765375,140.596149,I,Above,Gable,0,5701,,47.75502645,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14191,NJBF000079687,300 SHERIDAN PLACE,Galloway,NJ,39.41233832,-74.36586136,RES1,3001,,16,NE,1972,1972,3102,2,1,981.643755,981.643755,3507,YES,33.4,41.14,1,2.6,6106,115.36656,124.874054,134.792446,140.602896,I,Above,Flat,0,5701,,37.27058911,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14192,NJBF000079972,104 9TH STREET NO,Galloway,NJ,39.41353597,-74.36004572,RES1,3001,,15,NE,1951,1951,3102,1,1,1020.215654,1020.215654,3507,NO,17.64,31.04,1,2.08,6106,115.471055,124.973072,134.905224,140.680163,I,Above,Gable,0,5701,,24.34029467,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14193,NJBF000080000,800 E EVANS BLVD,Galloway,NJ,39.41362783,-74.36071712,RES1,3001,,16,NE,1957,1957,3102,1,1,2092.150427,2092.150427,3507,NO,14.18,24.5,1,0.95,6106,115.456623,124.959359,134.889717,140.668398,I,Above,Gable,0,5701,,19.34331518,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, 14194,NJBF000079854,15 QUAY BLVD,Galloway,NJ,39.41311249,-74.36646018,RES1,3001,,16,NE,1970,1970,3102,3,1,1619.340814,1619.340814,3507,NO,59.12,70.16,1,2.97,6106,115.34643,124.854975,134.771229,140.583628,I,Above,Gable,0,5701,,64.64116897,0,1.1,,,,1,1,,0.03,nav,1,1970,3,, 14195,NJBF000080030,31 HEALD RD,Galloway,NJ,39.41370674,-74.36429019,RES1,3001,,16,NE,1970,1970,3102,1,1,1916.342122,1916.342122,3507,NO,18.03,23.83,1,2.85,6106,115.383965,124.890427,134.811644,140.610699,I,Above,Gable,0,5701,,20.9329361,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14196,NJBF000081190,805 FOWNES AVE,Galloway,NJ,39.417954,-74.3634795,RES1,3001,,17,NE,1997,1997,3102,2,1,1987.528331,1987.528331,3507,NO,35.85,50.34,1,1.48,6106,115.356394,124.86387,134.783372,140.570453,I,Above,Hip,0,5701,,43.09423664,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 14197,NJBF000081177,1321 VARDON RD,Galloway,NJ,39.41790558,-74.37499306,RES1,3001,,17,NE,1988,1988,3102,1,1,1415.255085,1415.255085,3507,NO,14.06,27.29,1,1.98,6106,115.124852,124.644698,134.53565,140.385474,I,Above,Gable,0,5701,,20.6708477,0,0,,,,1,1,,0.03,nav,1,1988,1,, 14198,NJBF000079529,111 BAYSHORE AVE,Galloway,NJ,39.4115411,-74.36812999,RES1,3001,,16,NE,1964,1964,3102,2,1,1468.637224,1468.637224,3507,YES,34.5,49.14,1,2.71,6106,115.329075,124.838789,134.752143,140.576843,I,Above,Gable,0,5701,,41.82011955,0,0,,,,1,1,,0.03,nav,1,1964,2,, 14199,NJBF000081722,2 TRAVERS PLACE,Galloway,NJ,39.42229656,-74.3659629,RES1,3001,,17,NE,1999,1999,3102,2,1,1845.315809,1845.315809,3507,NO,30.92,42.05,1,0.61,6106,115.26225,124.773235,134.682236,140.475952,I,Above,Hip,0,5701,,36.48149965,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 14200,NJBF000079277,16 GIRARD PLACE,Galloway,NJ,39.41047055,-74.36789113,RES1,3001,,16,NE,2015,2015,3102,3,1,1309.664619,1309.664619,3507,NO,44.2,57.64,1,1.24,6106,115.345076,124.853956,134.768745,140.594152,I,Above,Hip,0,5701,,50.92125578,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 14201,NJBF000080829,1321 RAY AVE,Galloway,NJ,39.41649988,-74.37504625,RES1,3001,,17,NE,1988,1988,3103,1,1,1821.084716,1821.084716,3505,NO,12.12,21.7,3,-2.16,6106,115.138086,124.657784,134.549885,140.402667,I,Above,Gable,0,5701,,16.91010906,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 14202,NJBF000079471,501 E BEACH AVE,Galloway,NJ,39.41129135,-74.36153995,RES1,3001,,15,NE,1950,1950,3102,1,1,1055.492801,1055.492801,3507,NO,16.07,23.38,1,2.02,6106,115.464518,124.966697,134.896856,140.684451,I,Above,Gable,0,5701,,19.72428649,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14203,NJBF000079443,428 LAFAYETTE BLVD,Galloway,NJ,39.41115738,-74.3712646,RES1,3001,,16,NE,1960,1960,3102,2,1,1219.923851,1219.923851,3507,NO,20.94,29.69,1,-0.46,6106,115.269677,124.783036,134.688917,140.531733,I,Above,Gable,0,5701,,25.31592215,0,0,,,,1,1,,0.03,nav,1,1960,2,, 14204,NJBF000079890,542 W SHORE DR,Galloway,NJ,39.41324038,-74.37707397,RES1,3001,,20,NE,2017,2017,3103,3,1,3046.526688,3046.526688,3505,NO,40.13,45.48,3,5.18,6106,115.130357,124.651946,134.541935,140.411828,I,Above,Hip,0,5701,,42.80548241,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 14205,NJBF000079318,201 BAYSHORE AVE,Galloway,NJ,39.41061559,-74.36828013,RES1,3001,,16,NE,1973,2018,3102,3,1,2054.881674,2054.881674,3507,NO,39.2,50.85,1,1.53,6106,115.335699,124.845124,134.758831,140.58614,I,Above,Gable,0,5701,,45.02821533,0,0,,,,1,1,,0.03,nav,1,1973,3,, 14206,NJBF000076877,3119 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39515159,-74.38684738,COM1,3001,,NaN,ME,1969,0,3401,2,1,2288.639464,2288.639464,3507,YES,34.17,48.62,1,1.93,6106,115.121245,124.64966,134.528463,140.490882,I,Above,Flat,0,NaN,,41.3948167,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14207,NJBF000079564,801 E BRIGANTINE AVE,Galloway,NJ,39.41170231,-74.35838656,RES1,3001,,18,NE,2004,2004,3102,3,1,1407.455263,1407.455263,3507,YES,32.8,45.48,1,-0.96,6106,115.523544,125.022763,134.960668,140.729064,I,Above,Flat,0,5701,,39.13739872,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 14208,NJBF000080439,,Galloway,NJ,39.41506029,-74.3562653,RES1,3001,,NaN,NE,2013,0,3102,2,1,3668.601357,3668.601357,3507,NO,28.36,41.97,1,1.6,6106,115.530943,125.030347,134.970935,140.721097,I,Above,Hip,0,5701,,35.16705018,0,0,,,,1,1,,0.03,nav,1,2013,2,, 14209,NJBF000080230,,Galloway,NJ,39.41438053,-74.37058503,RES1,3001,,NaN,NE,1969,0,3102,2,1,2605.826941,2605.826941,3507,NO,36.59,48.72,1,2.36,6106,115.250033,124.763833,134.668745,140.50163,I,Above,Gable,0,5701,,42.65331751,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14210,NJBF000079458,434 LAFAYETTE BLVD,Galloway,NJ,39.41124971,-74.37177591,RES1,3001,,16,NE,1983,1983,3102,2,1,1020.350181,1020.350181,3507,NO,34.43,43.86,1,2.25,6106,115.258362,124.772405,134.676953,140.522388,I,Above,Hip,0,5701,,39.14546745,0,0,,,,1,1,,0.03,nav,1,1983,2,, 14211,NJBF000079449,432 LAFAYETTE BLVD,Galloway,NJ,39.41119767,-74.37162547,RES1,3001,,16,NE,1980,1980,3102,2,1,1649.326951,1649.326951,3507,NO,37.13,45.49,1,-0.07,6106,115.261961,124.775791,134.680752,140.525462,I,Above,Gable,0,5701,,41.31056909,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14212,NJBF000080659,44 KIRKWOOD CIRCLE,Galloway,NJ,39.41582724,-74.36220818,RES1,3001,,17,NE,2000,2000,3102,2,1,1894.001171,1894.001171,3507,NO,31.53,41,1,2.1,6106,115.403844,124.909195,134.833856,140.61733,I,Above,Hip,0,5701,,36.26821324,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 14213,NJBF000080367,119 ROOSEVELT BLVD NO,Galloway,NJ,39.41485828,-74.36938591,RES1,3001,,16,NE,1962,1962,3102,3,1,1782.852621,1782.852621,3507,NO,41.88,49.29,1,-0.69,6106,115.26933,124.781906,134.689379,140.514808,I,Above,Hip,0,5701,,45.5849636,0,0,,,,1,1,,0.03,nav,1,1962,3,, 14214,NJBF000079368,,Galloway,NJ,39.41083319,-74.36225327,RES1,3001,,NaN,NE,1969,0,3102,2,1,1645.370202,1645.370202,3507,NO,28.61,35.2,1,0.68,6106,115.454978,124.957631,134.886335,140.678898,I,Above,Flat,0,5701,,31.90325328,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14215,NJBF000079971,,Galloway,NJ,39.41353356,-74.36051008,RES1,3001,,NaN,NE,1969,0,3102,2,1,1846.167906,1846.167906,3507,NO,38.49,45.2,1,2.8,6106,115.46176,124.964236,134.895202,140.672844,I,Above,Gable,0,5701,,41.84905417,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14216,NJBF000079198,10 FRANKLIN PLACE,Galloway,NJ,39.41011779,-74.36704674,RES1,3001,,16,NE,1973,1973,3102,1,1,1658.25633,1658.25633,3507,NO,18.14,24.03,1,1.45,6106,115.365822,124.873498,134.790668,140.611997,I,Above,Hip,0,5701,,21.08526031,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 14217,NJBF000080154,109 10TH STREET NO,Galloway,NJ,39.41409253,-74.35882201,RES1,3001,,43,NE,1972,1972,3102,2,2,1201.821349,1201.821349,3507,NO,40.46,49.03,1,2.43,6106,115.489802,124.990964,134.925785,140.692622,I,Above,Hip,0,5701,,44.74497511,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14218,NJBF000078956,203 W BEACH AVE,Galloway,NJ,39.40862088,-74.36589323,RES1,3001,,15,NE,1955,1955,3102,1,1,886.7741003,886.7741003,3507,NO,13.04,22.47,1,0.55,6106,115.404856,124.910256,134.831439,140.649086,I,Above,Gable,0,5701,,17.75068658,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14219,NJBF000079921,28 HEALD RD,Galloway,NJ,39.41333222,-74.36450878,RES1,3001,,16,NE,1973,1973,3102,2,1,1114.6862,1114.6862,3507,NO,34.29,45.59,1,0.11,6106,115.383454,124.889963,134.810942,140.611916,I,Above,Gable,0,5701,,39.93959479,0,0,,,,1,1,,0.03,nav,1,1973,2,, 14220,NJBF000080632,49 KIRKWOOD CIRCLE,Galloway,NJ,39.41566636,-74.36460526,RES1,3001,,16,NE,1985,1985,3102,1,1,1825.118299,1825.118299,3507,NO,18.1,25.09,1,-0.33,6106,115.357331,124.865023,134.783757,140.58112,I,Above,Gable,0,5701,,21.59509543,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14221,NJBF000081179,836 BOBBY JONES RD,Galloway,NJ,39.41791104,-74.38100674,RES1,3001,,16,NE,1966,1966,3103,2,1,1511.760208,1511.760208,3505,YES,32.77,43.06,3,0.18,6106,115.002952,124.530312,134.406746,140.287455,I,Above,Gable,0,5701,,37.91341546,0,0,,,,1,1,,0.03,nav,1,1966,2,, 14222,NJBF000081671,1516 E SHORE DR,Galloway,NJ,39.42164984,-74.36825844,RES1,3001,,17,NE,1986,1986,3102,1,1,2452.209939,2452.209939,3507,NO,21.61,27.57,1,2.59,6106,115.222705,124.73576,134.639688,140.446964,I,Above,Gable,0,5701,,24.58611762,0,1.1,,,,1,1,,0.03,nav,1,1986,1,, 14223,NJBF000081690,5 HUTCHISON PLACE,Galloway,NJ,39.42189953,-74.36608824,RES1,3001,,17,NE,1985,1985,3102,2,1,1969.561529,1969.561529,3507,NO,26.02,40.34,1,1.16,6106,115.263761,124.774792,134.683884,140.47893,I,Above,Flat,0,5701,,33.18154871,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 14224,NJBF000080859,24 11TH STREET NO,Galloway,NJ,39.41660126,-74.36132939,RES1,3001,,16,NE,1956,1956,3102,1,1,1698.489061,1698.489061,3507,NO,21.68,32.51,1,2.71,6106,115.413486,124.918348,134.844553,140.621682,I,Above,Gable,0,5701,,27.09380535,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14225,NJBF000080547,720 BOBBY JONES RD,Galloway,NJ,39.41538839,-74.38154838,RES1,3001,,17,NE,1990,1990,3103,1,1,1819.321214,1819.321214,3505,NO,15.69,20.92,3,0.55,6106,115.017499,124.545489,134.422891,140.311473,I,Above,Gable,0,5701,,18.307646,0,1.1,,,,1,1,,0.03,nav,1,1990,1,, 14226,NJBF000081564,1024 N SHORE DR,Galloway,NJ,39.42026664,-74.3742966,RES1,3001,,NaN,NE,1969,0,3102,2,1,3524.329725,3524.329725,3507,NO,23.17,36.95,1,1.51,6106,115.115021,124.63428,134.524694,140.366492,I,Above,Gable,0,5701,,30.05927396,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14227,NJBF000081278,848 W SHORE DR,Galloway,NJ,39.4184501,-74.38171269,RES1,3001,,17,NE,2003,2003,3103,2,1,1932.576815,1932.576815,3505,NO,25.86,35,3,2.27,6106,114.983194,124.511467,134.385719,140.268884,I,Above,Hip,0,5701,,30.42876985,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 14228,NJBF000078409,235 8TH STREET SO,Galloway,NJ,39.40534043,-74.36888144,RES1,3001,,16,NE,1954,1954,3102,2,1,1609.435738,1609.435738,3505,NO,37.24,47.49,3,8.56,6106,115.379111,124.886096,134.802116,140.643259,I,Above,Gable,0,5701,,42.36814318,0,0,,,,1,1,,0.03,nav,1,1954,2,, 14229,NJBF000079193,300 E BEACH AVE,Galloway,NJ,39.41005966,-74.36245147,RES1,3001,,49,NE,1952,1952,3102,3,3,921.1198759,921.1198759,3507,NO,57.52,64.91,1,1.13,6106,115.459114,124.961486,134.890282,140.685409,I,Above,Hip,0,5701,,61.21505667,0,1.2,,,,1,1,,0.03,nav,1,1952,3,, 14230,NJBF000079207,300 E BEACH AVE,Galloway,NJ,39.41014923,-74.36258293,RES1,3001,,49,NE,1952,1952,3102,3,3,1170.397982,1170.397982,3507,NO,51.67,60.99,1,-0.51,6106,115.45552,124.958096,134.886489,140.682217,I,Above,Gable,0,5701,,56.32939072,0,1.2,,,,1,1,,0.03,nav,1,1952,3,, 14231,NJBF000076741,3000 W BRIGANTINE AVE,Galloway,NJ,39.39462754,-74.38442073,RES1,3001,,18,NE,1962,1962,3102,2,1,2310.137746,2310.137746,3507,YES,30.78,43.22,1,2.64,6106,115.176883,124.700404,134.585111,140.535938,I,Above,Gable,0,5701,,36.9979105,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14232,NJBF000078534,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,2026.756081,2026.756081,3505,NO,36.03,46.96,3,3.44,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,41.49634346,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14233,NJBF000081625,223 HAGEN RD,Galloway,NJ,39.42099072,-74.36690533,RES1,3001,,17,NE,1982,1982,3102,2,1,1539.273262,1539.273262,3507,NO,37.36,45.89,1,0.89,6106,115.256571,124.768204,134.676164,140.477184,I,Above,Gable,0,5701,,41.62823037,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 14234,NJBF000079872,540 W SHORE DR,Galloway,NJ,39.41317075,-74.3768314,RES1,3001,,17,NE,1973,1973,3103,1,1,1861.407682,1861.407682,3505,YES,16.8,30.85,3,0.23,6106,115.135999,124.657248,134.547883,140.416637,I,Above,Flat,0,5701,,23.82403701,0,0,,,,1,1,,0.03,nav,1,1973,1,, 14235,NJBF000080677,135 ROOSEVELT BLVD NO,Galloway,NJ,39.41588783,-74.36981603,RES1,3001,,16,NE,1978,1978,3102,1,1,1184.812948,1184.812948,3507,NO,18.45,29.79,1,0.96,6106,115.250053,124.763456,134.668961,140.494842,I,Above,Gable,0,5701,,24.12041715,0,0,,,,1,1,,0.03,nav,1,1978,1,, 14236,NJBF000081240,900 E SHORE DR,Galloway,NJ,39.41826644,-74.36289294,RES1,3001,,17,NE,1987,1987,3102,1,1,1162.756816,1162.756816,3507,NO,15.83,29.83,1,1.42,6106,115.364953,124.871987,134.792681,140.575931,I,Above,Hip,0,5701,,22.82929451,0,0,,,,1,1,,0.03,nav,1,1987,1,, 14237,NJBF000080393,16 KIRKWOOD CIRCLE,Galloway,NJ,39.41491682,-74.36358678,RES1,3001,,16,NE,1984,1984,3102,1,1,1781.572932,1781.572932,3507,NO,18.86,32.69,1,1.63,6106,115.385554,124.891864,134.813825,140.606738,I,Above,Flat,0,5701,,25.77455813,0,0,,,,1,1,,0.03,nav,1,1984,1,, 14238,NJBF000079064,205 ROOSEVELT BLVD SO,Galloway,NJ,39.40927941,-74.3637886,RES1,3001,,15,NE,1955,1955,3102,1,1,1393.408697,1393.408697,3507,NO,20.28,30.27,1,2.73,6106,115.440377,124.943739,134.869734,140.674053,I,Above,Hip,0,5701,,25.2737564,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 14239,NJBF000076474,4200 HARBOR BEACH BLVD,Galloway,NJ,39.39356072,-74.39707409,COM1,3001,,NaN,ME,1969,0,3401,1,1,3611.309146,3611.309146,3507,NO,12.65,22.42,1,0.52,6106,114.926897,124.474591,134.330921,140.349791,I,Above,Flat,0,NaN,,17.53545233,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14240,NJBF000082601,102 CREEK COURT,Galloway,NJ,39.43139967,-74.48396582,RES1,3001,,17,NE,1984,1984,3102,2,1,2930.883462,2930.883462,3507,NO,39,49.19,1,0.34,6110,112.761002,122.485963,132.14069,138.274843,I,Above,Gable,0,5701,,44.09541639,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 14241,NJBF000080990,702-04 E SHORE DR,Galloway,NJ,39.41714177,-74.36371299,RES1,3001,,17,NE,1972,1972,3102,2,1,2183.09545,2183.09545,3507,NO,27.43,40.49,1,0.76,6106,115.360043,124.867438,134.787098,140.576875,I,Above,Hip,0,5701,,33.95999335,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 14242,NJBF000080026,,Galloway,NJ,39.41369881,-74.3565797,RES1,3001,,NaN,NE,1969,0,3102,2,1,1941.350866,1941.350866,3507,NO,33.41,39.08,1,1.47,6106,115.538842,125.037669,134.978605,140.732889,I,Above,Hip,0,5701,,36.24462556,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14243,NJBF000079442,210 7TH STREET NO,Galloway,NJ,39.41115591,-74.35961209,RES1,3001,,43,NE,1950,1950,3102,1,2,1968.781443,1968.781443,3507,NO,13.71,21.97,1,0.83,6106,115.504686,125.004769,134.93996,140.716532,I,Above,Flat,0,5701,,17.83956513,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 14244,NJBF000081713,19 TRAVERS PLACE,Galloway,NJ,39.42215885,-74.36734465,RES1,3001,,17,NE,1993,1993,3102,2,1,1718.420768,1718.420768,3507,NO,39.59,48.31,1,1.11,6106,115.235902,124.748153,134.65384,140.455321,I,Above,Gable,0,5701,,43.95330859,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 14245,NJBF000080208,809 E EVANS BLVD,Galloway,NJ,39.41428572,-74.3606332,RES1,3001,,16,NE,1979,1979,3102,2,1,1039.861069,1039.861069,3507,NO,36.15,44.97,1,0.64,6106,115.451457,124.954479,134.884495,140.661549,I,Above,Flat,0,5701,,40.56060459,0,0,,,,1,1,,0.03,nav,1,1979,2,, 14246,NJBF000079780,203 9TH STREET NO,Galloway,NJ,39.41280869,-74.35844222,RES1,3001,,19,NE,2008,2008,3102,3,1,1811.008694,1811.008694,3507,NO,42.47,54.28,1,0.93,6106,115.510836,125.01084,134.94771,140.714511,I,Above,Gable,0,5701,,48.37611655,0,1.2,,,,1,1,,0.03,nav,1,2008,3,, 14247,NJBF000079132,,Galloway,NJ,39.40972668,-74.36197805,RES1,3001,,NaN,NE,1969,0,3102,2,1,1912.223556,1912.223556,3507,NO,40.09,45.51,1,2.12,6106,115.472141,124.973772,134.904022,140.697014,I,Above,Hip,0,5701,,42.80038972,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14248,NJBF000078594,230 5TH STREET SO,Galloway,NJ,39.40638941,-74.36708522,RES1,3001,,15,NE,1951,1951,3102,1,1,855.4598194,855.4598194,3507,NO,15.48,30.32,1,1.15,6106,115.404346,124.909734,134.829517,140.658335,I,Above,Gable,0,5701,,22.89956399,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14249,NJBF000079083,307 E BRIGANTINE AVE,Galloway,NJ,39.40941653,-74.36147218,RES1,3001,,18,NE,2005,2005,3102,3,1,1596.792581,1596.792581,3507,NO,52.98,67.73,1,-0.08,6106,115.485593,124.986456,134.918226,140.708839,I,Above,Hip,0,5701,,60.35332472,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 14250,NJBF000079258,203 E EVANS BLVD,Galloway,NJ,39.41037762,-74.36440621,RES1,3001,,16,NE,1957,1957,3102,1,1,1850.578817,1850.578817,3507,NO,14.82,21.4,1,1.23,6106,115.416387,124.921144,134.844749,140.650558,I,Above,Gable,0,5701,,18.10867303,0,0,,,,1,1,,0.03,nav,1,1957,1,, 14251,NJBF000081257,902 FOWNES AVE,Galloway,NJ,39.41834323,-74.36409208,RES1,3001,,17,NE,1981,1981,3102,2,1,1574.109802,1574.109802,3507,YES,24.96,34.77,1,-0.88,6106,115.340091,124.848297,134.765886,140.55576,I,Above,Hip,0,5701,,29.86421449,0,0,,,,1,1,,0.03,nav,1,1981,2,, 14252,NJBF000080492,8 MACDONALD PLACE,Galloway,NJ,39.41525807,-74.36668516,RES1,3001,,16,NE,1985,1985,3102,1,1,1674.08363,1674.08363,3507,NO,16.73,21.96,1,2.71,6106,115.319672,124.829394,134.743258,140.553009,I,Above,Gable,0,5701,,19.34705414,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14253,NJBF000080470,6 MACDONALD PLACE,Galloway,NJ,39.4151682,-74.36648587,RES1,3001,,17,NE,1999,1999,3102,2,1,1573.510093,1573.510093,3507,NO,28.24,38.63,1,-0.62,6106,115.32461,124.834081,134.748522,140.557325,I,Above,Gable,0,5701,,33.43346054,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 14254,NJBF000078848,,Galloway,NJ,39.40789849,-74.36555719,RES1,3001,,NaN,NE,1951,0,3102,2,1,1185.055809,1185.055809,3507,NO,35.81,48.35,1,-0.84,6106,115.419267,124.923793,134.846343,140.663462,I,Above,Gable,0,5701,,42.07878039,0,0,,,,1,1,,0.03,nav,1,1951,2,, 14255,NJBF000079421,203 LAFAYETTE PLACE,Galloway,NJ,39.41106585,-74.36704996,RES1,3001,,16,NE,1965,1965,3102,1,1,2052.395328,2052.395328,3507,NO,20.27,30.86,1,2.24,6106,115.355843,124.86404,134.780467,140.600008,I,Above,Gable,0,5701,,25.56332774,0,0,,,,1,1,,0.03,nav,1,1965,1,, 14256,NJBF000081760,1418 E SHORE DR,Galloway,NJ,39.42262954,-74.36702599,RES1,3001,,17,NE,1969,1969,3102,3,1,2727.145141,2727.145141,3507,NO,39.17,52.89,1,0.82,6106,115.237549,124.749566,134.655568,140.454542,I,Above,Flat,0,5701,,46.02590265,0,1.1,,,,1,1,,0.03,nav,1,1969,3,, 14257,NJBF000081560,1204 E SHORE DR,Galloway,NJ,39.4202003,-74.36434522,RES1,3001,,17,NE,1996,1996,3102,2,1,2139.728452,2139.728452,3507,NO,33.76,48.36,1,0.01,6106,115.316022,124.825044,134.740211,140.52841,I,Above,Gable,0,5701,,41.05770367,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 14258,NJBF000081420,1005 N SHORE DR,Galloway,NJ,39.41913407,-74.37573835,RES1,3001,,16,NE,1972,1972,3103,1,1,1674.190038,1674.190038,3505,NO,20.12,34.09,3,7.71,6106,115.097347,124.618194,134.506184,140.357583,I,Above,Gable,0,5701,,27.10801126,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14259,NJBF000081407,1003 N SHORE DR,Galloway,NJ,39.4190477,-74.37589701,RES1,3001,,17,NE,1987,1987,3103,1,1,2249.45022,2249.45022,3505,NO,18.87,29.11,3,4.04,6106,115.095001,124.61603,134.503715,140.356101,I,Above,Flat,0,5701,,23.98903468,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 14260,NJBF000078936,214 ROOSEVELT BLVD SO,Galloway,NJ,39.40849831,-74.36385395,RES1,3001,,18,NE,2004,2004,3102,2,1,1538.363382,1538.363382,3507,NO,27.74,41.07,1,0.8,6106,115.4473,124.950217,134.876623,140.682791,I,Above,Gable,0,5701,,34.40349969,0,0,,,,1,1,,0.03,nav,1,2004,2,, 14261,NJBF000078330,223 10TH STREET SO,Galloway,NJ,39.40477462,-74.37061637,RES1,3001,,15,NE,1949,1949,3102,2,1,1126.042886,1126.042886,3505,NO,39.42,46.78,3,6.51,6106,115.34993,124.858857,134.770959,140.623054,I,Above,Flat,0,5701,,43.0983847,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 14262,NJBF000081172,1323 VARDON RD,Galloway,NJ,39.41786756,-74.37514796,RES1,3001,,17,NE,2002,2002,3103,2,1,1980.949243,1980.949243,3505,NO,38.95,51.7,3,4.06,6106,115.122103,124.642129,134.532738,140.383446,I,Above,Hip,0,5701,,45.32443088,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 14263,NJBF000078971,202 VERNON PLACE,Galloway,NJ,39.40873404,-74.36497883,RES1,3001,,16,NE,1951,1951,3102,2,1,928.2978605,928.2978605,3507,NO,26.63,33.33,1,1.89,6106,115.422116,124.926504,134.849901,140.662099,I,Above,Gable,0,5701,,29.98208298,0,0,,,,1,1,,0.03,nav,1,1951,2,, 14264,NJBF000080975,6 KIRBY PLACE,Galloway,NJ,39.41706628,-74.3626641,RES1,3001,,16,NE,1975,1975,3102,2,1,914.4962785,914.4962785,3507,NO,26.8,35.65,1,1.99,6106,115.381894,124.888236,134.810623,140.594588,I,Above,Gable,0,5701,,31.22941956,0,0,,,,1,1,,0.03,nav,1,1975,2,, 14265,NJBF000078892,210 VERNON PLACE,Galloway,NJ,39.40817567,-74.36447901,RES1,3001,,15,NE,1953,1953,3102,2,1,868.511572,868.511572,3507,NO,21.19,29.38,1,-0.05,6106,115.438092,124.94152,134.866583,140.676971,I,Above,Gable,0,5701,,25.28660477,0,0,,,,1,1,,0.03,nav,1,1953,2,, 14266,NJBF000079103,205 W EVANS BLVD,Galloway,NJ,39.40957515,-74.36648867,RES1,3001,,16,NE,1960,1960,3102,1,1,1373.024141,1373.024141,3507,NO,17.9,27.15,1,-0.28,6106,115.382787,124.889485,134.808464,140.627672,I,Above,Gable,0,5701,,22.52551687,0,0,,,,1,1,,0.03,nav,1,1960,1,, 14267,NJBF000078887,112 5TH STREET SO,Galloway,NJ,39.40814988,-74.36870951,RES1,3001,,15,NE,1950,1950,3102,1,1,845.6095962,845.6095962,3507,NO,11.54,22.23,1,-0.64,6106,115.352868,124.861444,134.775933,140.61047,I,Above,Hip,0,5701,,16.88691587,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14268,NJBF000078693,235 4TH STREET SO,Galloway,NJ,39.40696026,-74.3658031,RES1,3001,,16,NE,1945,1945,3102,1,1,1994.63115,1994.63115,3507,NO,19.08,25.89,1,1.85,6106,115.424216,124.928403,134.850999,140.671353,I,Above,Gable,0,5701,,22.48724017,0,0,,,,1,1,,0.03,nav,1,1945,1,, 14269,NJBF000080293,102 11TH STREET NO,Galloway,NJ,39.41458937,-74.35885431,RES1,3001,,43,NE,1972,1972,3102,2,2,1309.339972,1309.339972,3507,NO,33.97,48.62,1,0,6106,115.483993,124.985475,134.91979,140.685974,I,Above,Gable,0,5701,,41.29749107,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14270,NJBF000078924,100 5TH STREET SO,Galloway,NJ,39.40837964,-74.36900765,RES1,3001,,15,NE,1951,1951,3102,1,1,1693.131424,1693.131424,3507,NO,16.65,29.59,1,2.24,6106,115.344417,124.853506,134.767087,140.602844,I,Above,Hip,0,5701,,23.1230885,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 14271,NJBF000081469,1002 N SHORE DR,Galloway,NJ,39.41939633,-74.37615698,RES1,3001,,16,NE,1950,1950,3103,1,1,1696.469305,1696.469305,3505,NO,23.06,37.82,3,7.01,6106,115.086228,124.607585,134.494309,140.347388,I,Above,Gable,0,5701,,30.44273967,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14272,NJBF000081298,921 N SHORE DR,Galloway,NJ,39.41854995,-74.37794828,RES1,3001,,19,NE,2006,2006,3103,3,1,1817.798881,1817.798881,3505,NO,65.25,72.92,3,8.51,6106,115.058525,124.582007,134.465194,140.329109,I,Above,Gable,0,5701,,69.08296047,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 14273,NJBF000078885,202 2ND STREET SO,Galloway,NJ,39.40814601,-74.36533183,RES1,3001,,43,NE,1955,1955,3102,2,2,1229.094551,1229.094551,3507,NO,26.52,34.72,1,1.84,6106,115.421192,124.925613,134.84855,140.6639,I,Above,Flat,0,5701,,30.61685041,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14274,NJBF000079398,,Galloway,NJ,39.41097831,-74.35940487,RES1,3001,,NaN,NE,1969,0,3102,2,1,3829.178101,3829.178101,3507,NO,28.99,40.13,1,1.35,6106,115.510715,125.010464,134.946325,140.721997,I,Above,Flat,0,5701,,34.56170467,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14275,NJBF000081222,206 WASHINGTON DR,Galloway,NJ,39.41811391,-74.36951854,RES1,3001,,16,NE,1968,1968,3102,2,1,1936.7035,1936.7035,3507,YES,34.32,49.26,1,1.61,6106,115.23325,124.746931,134.65115,140.471381,I,Above,Gable,0,5701,,41.79205171,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 14276,NJBF000080650,606 SHERIDAN BLVD,Galloway,NJ,39.41576913,-74.36561107,RES1,3001,,18,NE,2003,2003,3102,2,1,1964.598415,1964.598415,3507,NO,27.04,35.01,1,2.36,6106,115.336026,124.844807,134.760916,140.563753,I,Above,Hip,0,5701,,31.02577066,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 14277,NJBF000080631,1307 E BEACH AVE,Galloway,NJ,39.415665,-74.356447,RES1,3001,,45,NE,1956,1956,3102,3,2,2262.005684,2262.005684,3507,NO,58.82,65.34,1,0.59,6106,115.521003,125.020931,134.960517,140.710768,I,Above,Flat,0,5701,,62.07984152,0,0,,,,1,1,,0.03,nav,1,1956,3,, 14278,NJBF000080653,11 MACDONALD PLACE,Galloway,NJ,39.4157931,-74.36665764,RES1,3001,,16,NE,1970,1970,3102,1,1,2323.840585,2323.840585,3507,NO,10.9,22.01,1,0.39,6106,115.314698,124.824597,134.738058,140.5467,I,Above,Flat,0,5701,,16.45751143,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 14279,NJBF000078301,238 9TH STREET SO,Galloway,NJ,39.404557,-74.36995786,RES1,3001,,15,NE,1972,1972,3102,1,1,1579.498167,1579.498167,3505,NO,15.69,24.93,3,-1.1,6106,115.365596,124.873478,134.787347,140.636186,I,Above,Hip,0,5701,,20.30942111,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14280,NJBF000081586,1210 E SHORE DR,Galloway,NJ,39.42057127,-74.36476028,RES1,3001,,17,NE,1998,1998,3102,2,1,1487.642691,1487.642691,3507,NO,26.1,37.69,1,-0.61,6106,115.303913,124.81342,134.727176,140.517074,I,Above,Flat,0,5701,,31.89256526,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 14281,NJBF000081331,218 ROOSEVELT BLVD NO,Galloway,NJ,39.41867009,-74.37053993,RES1,3001,,16,NE,1960,1960,3102,2,1,2351.776504,2351.776504,3507,NO,27.38,40.9,1,2.43,6106,115.207002,124.721907,134.623077,140.447834,I,Above,Hip,0,5701,,34.14220908,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 14282,NJBF000079986,116 LINCOLN DR,Galloway,NJ,39.41357441,-74.3700637,RES1,3001,,17,NE,2016,2016,3102,3,1,1203.425679,1203.425679,3507,NO,44.21,49.92,1,-0.97,6106,115.268894,124.781786,134.688671,140.520229,I,Above,Flat,0,5701,,47.06313137,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 14283,NJBF000078978,205 VERNON PLACE,Galloway,NJ,39.40877613,-74.36450923,RES1,3001,,16,NE,1950,1950,3102,2,1,967.5527034,967.5527034,3507,NO,32.91,41.08,1,2.83,6106,115.431157,124.935021,134.859571,140.668988,I,Above,Gable,0,5701,,36.99753366,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14284,NJBF000078888,204 W BEACH AVE,Galloway,NJ,39.4081523,-74.36567938,RES1,3001,,17,NE,1997,1997,3102,1,1,1164.358888,1164.358888,3507,NO,12,24.15,1,1.27,6106,115.414122,124.918963,134.841024,140.658351,I,Above,Hip,0,5701,,18.07504854,0,0,,,,1,1,,0.03,nav,1,1997,1,, 14285,NJBF000078730,220 2ND STREET SO,Galloway,NJ,39.40722645,-74.36456237,RES1,3001,,20,NE,2005,2005,3102,3,1,2065.736311,2065.736311,3507,NO,33.94,39.56,1,1,6106,115.446463,124.949331,134.874861,140.687553,I,Above,Gable,0,5701,,36.74791023,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 14286,NJBF000081194,6 12TH STREET NO,Galloway,NJ,39.41796672,-74.36177861,RES1,3001,,16,NE,1957,1957,3102,1,1,1636.569705,1636.569705,3507,NO,19.21,31.6,1,2.98,6106,115.390376,124.896251,134.820054,140.597479,I,Above,Gable,0,5701,,25.40821128,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 14287,NJBF000079691,11 HAMILTON PLACE,Galloway,NJ,39.4123525,-74.3661055,RES1,3001,,16,NE,1972,1972,3102,3,1,1021.163615,1021.163615,3507,NO,43.71,50.43,1,0.43,6106,115.361474,124.869251,134.787016,140.598825,I,Above,Gable,0,5701,,47.0699123,0,1.1,,,,1,1,,0.03,nav,1,1972,3,, 14288,NJBF000078904,108 5TH STREET SO,Galloway,NJ,39.40826034,-74.36875976,RES1,3001,,15,NE,1951,1951,3102,1,1,932.7291389,932.7291389,3507,NO,15.59,25.4,1,0.12,6106,115.350699,124.859403,134.773688,140.608289,I,Above,Hip,0,5701,,20.49191319,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14289,NJBF000081664,246 HAGEN RD,Galloway,NJ,39.42155145,-74.36789477,RES1,3001,,17,NE,1985,1985,3102,1,1,2236.160795,2236.160795,3507,NO,14.94,25.42,1,2.45,6106,115.231003,124.74369,134.648621,140.454096,I,Above,Hip,0,5701,,20.17763198,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14290,NJBF000078759,120 8TH STREET SO,Galloway,NJ,39.40735839,-74.37139327,RES1,3001,,15,NE,1954,1954,3102,1,1,1099.341382,1099.341382,3507,NO,12.82,20.46,1,1.79,6106,115.306851,124.818445,134.726861,140.577989,I,Above,Hip,0,5701,,16.63903042,0,0,,,,1,1,,0.03,nav,1,1954,1,, 14291,NJBF000078542,,Galloway,NJ,39.40608129,-74.36687415,RES1,3001,,NaN,NE,1966,0,3102,2,1,2684.337741,2684.337741,3505,NO,33.16,40.75,3,6.16,6106,115.411879,124.916787,134.837306,140.665531,I,Above,Hip,0,5701,,36.95608655,0,0,,,,1,1,,0.03,nav,1,1966,2,, 14292,NJBF000078779,221 3RD STREET SO,Galloway,NJ,39.40751033,-74.3652831,RES1,3001,,43,NE,1972,1972,3102,2,1,1023.074591,1023.074591,3507,NO,33.7,44.77,1,-0.44,6106,115.4289,124.932833,134.856349,140.672646,I,Above,Flat,0,5701,,39.23551524,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14293,NJBF000080843,28 MACDONALD PLACE,Galloway,NJ,39.41655926,-74.36735196,RES1,3001,,17,NE,1978,1978,3102,3,1,2096.418119,2096.418119,3507,NO,54.19,60.65,1,2.01,6106,115.292837,124.80375,134.71479,140.525917,I,Above,Gable,0,5701,,57.42285501,0,0,,,,1,1,,0.03,nav,1,1978,3,, 14294,NJBF000079493,505 RISLEY RD,Galloway,NJ,39.4113808,-74.37356792,RES1,3001,,16,NE,1981,1981,3102,1,1,1603.221929,1603.221929,3507,NO,16.35,24.52,1,0.03,6106,115.22069,124.737081,134.637122,140.492051,I,Above,Gable,0,5701,,20.43091449,0,0,,,,1,1,,0.03,nav,1,1981,1,, 14295,NJBF000078576,227 6TH STREET SO,Galloway,NJ,39.40629671,-74.36749857,RES1,3001,,16,NE,1953,1953,3102,1,1,1716.082796,1716.082796,3507,NO,18.67,25.44,1,2.36,6106,115.396944,124.902796,134.821608,140.65297,I,Above,Gable,0,5701,,22.05221505,0,0,,,,1,1,,0.03,nav,1,1953,1,, 14296,NJBF000080105,,Galloway,NJ,39.413942,-74.3568745,RES1,3001,,NaN,NE,1969,0,3102,2,1,1970.664595,1970.664595,3507,NO,29.94,40.72,1,-0.44,6106,115.530395,125.029648,134.969616,140.725242,I,Above,Flat,0,5701,,35.32959367,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14297,NJBF000078517,243 6TH STREET SO,Galloway,NJ,39.40593484,-74.36719589,RES1,3001,,45,NE,1957,1957,3102,2,2,1431.653013,1431.653013,3505,YES,27.97,35.07,3,3.35,6106,115.406914,124.912128,134.831942,140.662298,I,Above,Flat,0,5701,,31.5174673,0,0,,,,1,1,,0.03,nav,1,1957,2,, 14298,NJBF000081687,14 TRAVERS PLACE,Galloway,NJ,39.42186843,-74.36685956,RES1,3001,,17,NE,1989,1989,3102,2,1,1647.22876,1647.22876,3507,NO,33.2,45.9,1,0.73,6106,115.248586,124.760334,134.667527,140.466847,I,Above,Gable,0,5701,,39.55006601,0,0,,,,1,1,,0.03,nav,1,1989,2,, 14299,NJBF000079703,9 HAMILTON PLACE,Galloway,NJ,39.41241108,-74.36623823,RES1,3001,,17,NE,2016,2016,3102,3,1,1974.199226,1974.199226,3507,NO,53.64,59.23,1,0.22,6106,115.358198,124.866153,134.783539,140.595983,I,Above,Gable,0,5701,,56.43823506,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 14300,NJBF000078506,223 7TH STREET SO,Galloway,NJ,39.40589663,-74.368279,RES1,3001,,15,NE,1953,1953,3102,1,1,974.2708449,974.2708449,3505,NO,24.19,30,3,6.33,6106,115.385395,124.891976,134.809117,140.645717,I,Above,Flat,0,5701,,27.09372545,0,0,,,,1,1,,0.03,nav,1,1953,1,, 14301,NJBF000079229,,Galloway,NJ,39.4102474,-74.37032058,RES1,3001,,NaN,NE,1969,0,3102,2,1,1409.650753,1409.650753,3507,NO,35.68,45.53,1,0.63,6106,115.298274,124.810023,134.718946,140.558343,I,Above,Flat,0,5701,,40.60955755,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14302,NJBF000079242,414 W SHORE DR,Galloway,NJ,39.41030123,-74.37049657,RES1,3001,,15,NE,1945,1945,3102,1,1,969.8387235,969.8387235,3507,NO,17.39,29.12,1,0.49,6106,115.294148,124.806143,134.71459,140.554855,I,Above,Flat,0,5701,,23.25658059,0,0,,,,1,1,,0.03,nav,1,1945,1,, 14303,NJBF000080156,704 W SHORE DR,Galloway,NJ,39.41410911,-74.3807866,RES1,3001,,18,NE,2010,2010,3103,2,1,2321.889534,2321.889534,3505,NO,34.01,43.39,3,0.77,6106,115.046003,124.572803,134.453123,140.340488,I,Above,Hip,0,5701,,38.70330984,0,1.1,,,,1,1,,0.03,nav,1,2010,2,, 14304,NJBF000080893,25 MACDONALD PLACE,Galloway,NJ,39.4167546,-74.36688021,RES1,3001,,17,NE,1988,1988,3102,2,1,1352.30919,1352.30919,3507,NO,37.1,45.09,1,-0.27,6106,115.300328,124.810807,134.722851,140.531016,I,Above,Flat,0,5701,,41.09635884,0,0,,,,1,1,,0.03,nav,1,1988,2,, 14305,NJBF000079285,205 E EVANS BLVD,Galloway,NJ,39.41049266,-74.36442066,RES1,3001,,16,NE,1985,1985,3102,1,1,2159.93248,2159.93248,3507,NO,17.48,23.94,1,0.05,6106,115.414878,124.919722,134.8432,140.64888,I,Above,Gable,0,5701,,20.70857396,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 14306,NJBF000081434,1005 FOWNES AVE,Galloway,NJ,39.41920295,-74.36352517,RES1,3001,,17,NE,1993,1993,3102,1,1,1774.932908,1774.932908,3507,NO,13.47,20.15,1,-0.87,6106,115.342664,124.850619,134.768823,140.554079,I,Above,Hip,0,5701,,16.80935844,0,1.1,,,,1,1,,0.03,nav,1,1993,1,, 14307,NJBF000080145,546 CAVERLY DR,Galloway,NJ,39.41405623,-74.37660725,RES1,3001,,16,NE,1987,2015,3103,4,1,1273.852658,1273.852658,3505,NO,59.72,71.38,3,-0.23,6106,115.131453,124.652624,134.54306,140.408853,I,Above,Hip,0,5701,,65.54989841,0,0,,,,1,1,,0.03,nav,1,1987,4,, 14308,NJBF000080115,544 CAVERLY DR,Galloway,NJ,39.41396549,-74.37648299,RES1,3001,,17,NE,1987,1987,3103,2,1,1116.519908,1116.519908,3505,NO,37.56,45.96,3,0.01,6106,115.134903,124.655891,134.546704,140.412027,I,Above,Flat,0,5701,,41.76218015,0,0,,,,1,1,,0.03,nav,1,1987,2,, 14309,NJBF000081088,1316 VARDON RD,Galloway,NJ,39.41750309,-74.37489507,RES1,3001,,17,NE,1988,1988,3102,2,1,1409.450471,1409.450471,3507,NO,25.45,38.75,1,0.64,6106,115.130929,124.650604,134.542165,140.392237,I,Above,Flat,0,5701,,32.10228486,0,0,,,,1,1,,0.03,nav,1,1988,2,, 14310,NJBF000079822,108 8TH STREET NO,Galloway,NJ,39.41298671,-74.36056124,RES1,3001,,17,NE,2015,2015,3102,2,1,1035.658627,1035.658627,3507,NO,34.17,43.16,1,2.95,6106,115.466445,124.968651,134.899941,140.678833,I,Above,Hip,0,5701,,38.66737416,0,0,,,,1,1,,0.03,nav,1,2015,2,, 14311,NJBF000080456,719 W SHORE DR,Galloway,NJ,39.41510852,-74.38168782,RES1,3001,,16,NE,1954,1954,3103,1,1,687.4819911,687.4819911,3505,NO,22.18,35.73,3,6.72,6106,115.017487,124.545648,134.422958,140.312828,I,Above,Hip,0,5701,,28.95699762,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 14312,NJBF000080420,719 W SHORE DR,Galloway,NJ,39.41498885,-74.3816844,RES1,3001,,16,NE,1954,1954,3103,1,1,1267.556778,1267.556778,3505,NO,22.13,36.86,3,6.62,6106,115.018789,124.546934,134.424358,140.314456,I,Above,Gable,0,5701,,29.49415629,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 14313,NJBF000080885,200 ROOSEVELT BLVD NO,Galloway,NJ,39.41670376,-74.37047725,RES1,3001,,16,NE,2016,2016,3102,2,1,2164.126342,2164.126342,3507,NO,31.74,44.98,1,2.12,6106,115.228344,124.742727,134.645865,140.473844,I,Above,Gable,0,5701,,38.35761919,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 14314,NJBF000081237,847 W SHORE DR,Galloway,NJ,39.41824006,-74.3806718,RES1,3001,,16,NE,1964,1964,3103,1,1,548.8120242,548.8120242,3505,NO,24.55,37.17,3,8.3,6106,115.006434,124.533356,134.410287,140.288652,I,Above,Hip,0,5701,,30.85776703,0,0,,,,1,1,,0.03,nav,1,1964,1,, 14315,NJBF000079220,302 E BEACH AVE,Galloway,NJ,39.41019936,-74.36237985,RES1,3001,,43,NE,1978,1978,3102,2,2,1146.320563,1146.320563,3507,NO,33.68,43.34,1,2.7,6106,115.459082,124.961466,134.890337,140.684796,I,Above,Hip,0,5701,,38.51163111,0,0,,,,1,1,,0.03,nav,1,1978,2,, 14316,NJBF000081620,1216 E SHORE DR,Galloway,NJ,39.42093397,-74.36506618,RES1,3001,,17,NE,1988,1988,3102,2,1,2314.971537,2314.971537,3507,NO,31.16,41.18,1,1.61,6106,115.294078,124.803958,134.716585,140.507583,I,Above,Hip,0,5701,,36.16702035,0,0,,,,1,1,,0.03,nav,1,1988,2,, 14317,NJBF000081582,230 HAGEN RD,Galloway,NJ,39.42052956,-74.36732306,RES1,3001,,17,NE,1994,1994,3102,2,1,1288.090795,1288.090795,3507,NO,28.65,36.1,1,1.55,6106,115.252852,124.7648,134.672171,140.476249,I,Above,Gable,0,5701,,32.37272866,0,0,,,,1,1,,0.03,nav,1,1994,2,, 14318,NJBF000080875,30 MACDONALD PLACE,Galloway,NJ,39.41668454,-74.36735331,RES1,3001,,16,NE,1984,1984,3102,2,1,1155.164634,1155.164634,3507,NO,28.27,34.67,1,1.38,6106,115.291522,124.802478,134.713402,140.52431,I,Above,Gable,0,5701,,31.46750817,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14319,NJBF000076523,316 30TH STREET SO,Galloway,NJ,39.39377144,-74.38349242,RES1,3001,,16,NE,1927,1927,3102,2,1,1565.596028,1565.596028,3507,NO,39.75,51.23,1,2.36,6106,115.205329,124.726443,134.613731,140.561659,I,Above,Hip,0,5701,,45.48782532,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 14320,NJBF000081732,,Galloway,NJ,39.4223676,-74.364952,RES1,3001,,NaN,NE,1989,0,3102,2,1,2405.88386,2405.88386,3507,NO,23,34.38,1,-0.5,6106,115.281811,124.791893,134.703358,140.491405,I,Above,Flat,0,5701,,28.68845209,0,0,,,,1,1,,0.03,nav,1,1989,2,, 14321,NJBF000082301,301 N SHORE ROAD,Galloway,NJ,39.42879459,-74.49600316,RES1,3001,,17,NE,1885,1885,3102,2,1,1603.391321,1603.391321,3505,NO,38.86,52.62,3,4.29,6112,112.530388,122.299203,131.936061,138.085214,I,Above,Hip,0,5701,,45.73709196,0,0,,,,1,1,,0.35,nav,1,1885,2,, 14322,NJBF000079659,905 E BRIGANTINE AVE,Galloway,NJ,39.41219644,-74.35762644,RES1,3001,,47,NE,1955,1955,3102,2,4,1833.395166,1833.395166,3507,NO,26.68,41.52,1,1.88,6106,115.533624,125.032434,134.971905,140.734943,I,Above,Hip,0,5701,,34.09778015,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14323,NJBF000081023,1313 OUIMET RD,Galloway,NJ,39.41724842,-74.37449183,RES1,3001,,17,NE,1987,1987,3102,2,1,1341.492265,1341.492265,3507,NO,28.58,40.14,1,2.37,6106,115.141674,124.660829,134.553606,140.402041,I,Above,Gable,0,5701,,34.35924749,0,0,,,,1,1,,0.03,nav,1,1987,2,, 14324,NJBF000078743,112 9TH STREET SO,Galloway,NJ,39.40728119,-74.37242987,RES1,3001,,16,NE,1954,1954,3102,2,1,1266.611386,1266.611386,3507,NO,21.42,36.09,1,-0.67,6106,115.286622,124.799565,134.705486,140.562513,I,Above,Gable,0,5701,,28.75396157,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 14325,NJBF000081220,902 LAFAYETTE BLVD,Galloway,NJ,39.41810799,-74.38059599,RES1,3001,,16,NE,1965,1965,3103,2,1,536.8765049,536.8765049,3505,YES,29.68,43.13,3,4.13,6106,115.009306,124.53613,134.413366,140.291611,I,Above,Gable,0,5701,,36.40468788,0,0,,,,1,1,,0.03,nav,1,1965,2,, 14326,NJBF000080172,,Galloway,NJ,39.41416687,-74.37885171,RES1,3001,,NaN,NE,1969,0,3103,4,1,2057.185763,2057.185763,3505,NO,64.3,78.37,3,-2.7,6106,115.084742,124.608909,134.493824,140.371111,I,Above,Gable,0,5701,,71.33502142,0,0,,,,1,1,,0.03,nav,1,1969,4,, 14327,NJBF000079440,445 RISLEY RD,Galloway,NJ,39.41114883,-74.37275221,RES1,3001,,15,NE,1982,1982,3102,1,1,1652.01173,1652.01173,3507,NO,17.36,32.09,1,-0.01,6106,115.23964,124.754884,134.657111,140.508073,I,Above,Gable,0,5701,,24.72629428,0,0,,,,1,1,,0.03,nav,1,1982,1,, 14328,NJBF000079679,524 W SHORE DR,Galloway,NJ,39.41229868,-74.37607884,RES1,3001,,19,NE,2008,2008,3103,2,1,5697.291571,5697.291571,3505,NO,33.63,40.07,3,3.75,6106,115.160249,124.680255,134.573432,140.439974,I,Above,Hip,0,5701,,36.85271692,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 14329,NJBF000080577,602 SHERIDAN BLVD,Galloway,NJ,39.41550554,-74.36559876,RES1,3001,,16,NE,1968,1968,3102,1,1,1368.2169,1368.2169,3507,NO,14.26,29.16,1,1.35,6106,115.338982,124.847644,134.764016,140.567251,I,Above,Hip,0,5701,,21.71005482,0,0,,,,1,1,,0.03,nav,1,1968,1,, 14330,NJBF000081789,1501 E SHORE DR,Galloway,NJ,39.42295426,-74.3675088,RES1,3001,,17,NE,1984,1984,3102,2,1,2402.525905,2402.525905,3507,NO,28.41,43.29,1,2.36,6106,115.224582,124.73709,134.641553,140.442619,I,Above,Gable,0,5701,,35.84724727,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 14331,NJBF000081235,217 LINCOLN DR,Galloway,NJ,39.4182267,-74.37087559,RES1,3001,,16,NE,1971,1971,3102,2,1,2828.028314,2828.028314,3507,YES,27.79,35.94,1,2.63,6106,115.204738,124.719922,134.620677,140.448039,I,Above,Gable,0,5701,,31.86267999,0,0,,,,1,1,,0.03,nav,1,1971,2,, 14332,NJBF000079241,5 FRANKLIN PLACE,Galloway,NJ,39.41029779,-74.36653617,RES1,3001,,15,NE,1959,1959,3102,2,1,1133.306364,1133.306364,3507,NO,38.53,49.29,1,0.24,6106,115.374255,124.881427,134.799738,140.617833,I,Above,Hip,0,5701,,43.9108384,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 14333,NJBF000079966,207 11TH STREET NO,Galloway,NJ,39.41350833,-74.35686447,RES1,3001,,43,NE,1951,1951,3102,2,2,1274.022681,1274.022681,3507,NO,24.98,39.36,1,2.92,6106,115.535152,125.034115,134.974477,140.730765,I,Above,Gable,0,5701,,32.16760203,0,0,,,,1,1,,0.03,nav,1,1951,2,, 14334,NJBF000081731,1304 E SHORE DR,Galloway,NJ,39.42236117,-74.36563003,RES1,3001,,17,NE,1987,1987,3102,3,1,1429.775109,1429.775109,3507,NO,56.3,69.36,1,0.65,6106,115.268284,124.778976,134.688746,140.480533,I,Above,Gable,0,5701,,62.82787936,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 14335,NJBF000078820,806 BAYSHORE AVE,Galloway,NJ,39.40776064,-74.37187533,RES1,3001,,16,NE,1973,1973,3102,2,1,852.7175904,852.7175904,3507,YES,39.07,48.19,1,0.23,6106,115.292835,124.805298,134.712239,140.565216,I,Above,Flat,0,5701,,43.63007231,0,0,,,,1,1,,0.03,nav,1,1973,2,, 14336,NJBF000079340,223 6TH STREET NO,Galloway,NJ,39.41073164,-74.35962414,RES1,3001,,NaN,NE,1962,1962,3102,2,1,1035.80032,1035.80032,3507,NO,33.77,43.12,1,1.03,6106,115.508903,125.008709,134.944199,140.721598,I,Above,Flat,0,5701,,38.44697468,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14337,NJBF000081381,900 N SHORE DR,Galloway,NJ,39.4189626,-74.37976027,RES1,3001,,17,NE,1989,1989,3103,2,1,1641.838531,1641.838531,3505,NO,33.81,48.49,3,-0.6,6106,115.017648,124.543396,134.421837,140.294172,I,Above,Gable,0,5701,,41.14686495,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 14338,NJBF000079888,531 CAVERLY DR,Galloway,NJ,39.41323734,-74.37438488,RES1,3001,,16,NE,1980,1980,3102,1,1,1776.360029,1776.360029,3507,NO,20.55,30.96,1,1.6,6106,115.184931,124.703018,134.599551,140.455185,I,Above,Gable,0,5701,,25.75367651,0,1.1,,,,1,1,,0.03,nav,1,1980,1,, 14339,NJBF000080211,108 11TH STREET NO,Galloway,NJ,39.41429994,-74.35851758,RES1,3001,,43,NE,1982,1982,3102,2,2,1090.939576,1090.939576,3507,NO,30.02,39.35,1,2.23,6106,115.493739,124.994737,134.930163,140.694868,I,Above,Hip,0,5701,,34.68327246,0,0,,,,1,1,,0.03,nav,1,1982,2,, 14340,NJBF000078694,222 4TH STREET SO,Galloway,NJ,39.40696131,-74.36652874,RES1,3001,,45,NE,1985,1985,3102,2,2,1678.46679,1678.46679,3507,NO,33.17,43.35,1,0.62,6106,115.409532,124.914616,134.835392,140.659904,I,Above,Hip,0,5701,,38.26450326,0,0,,,,1,1,,0.03,nav,1,1985,2,, 14341,NJBF000080231,906 E EVANS BLVD,Galloway,NJ,39.41438513,-74.35977964,RES1,3001,,15,NE,1962,1962,3102,2,1,1302.145228,1302.145228,3507,NO,39.31,49.04,1,1.71,6106,115.467545,124.969793,134.901906,140.673838,I,Above,Gable,0,5701,,44.17446698,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 14342,NJBF000079188,221 4TH STREET NO,Galloway,NJ,39.41002454,-74.36116802,RES1,3001,,43,NE,1955,1955,3102,2,2,981.3237686,981.3237686,3507,NO,26.65,39.8,1,2,6106,115.485303,124.986255,134.918341,140.706064,I,Above,Hip,0,5701,,33.22482665,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14343,NJBF000078318,243 9TH STREET SO,Galloway,NJ,39.40469186,-74.3694619,RES1,3001,,15,NE,1948,1948,3102,1,1,971.6727491,971.6727491,3505,NO,18.88,29.09,3,1.84,6106,115.374219,124.881526,134.796534,140.642292,I,Above,Gable,0,5701,,23.98384042,0,0,,,,1,1,,0.03,nav,1,1948,1,, 14344,NJBF000080178,107 10TH STREET NO,Galloway,NJ,39.4141856,-74.35892756,RES1,3001,,43,NE,1972,1972,3102,2,2,1413.327425,1413.327425,3507,NO,35.35,44.93,1,1.28,6106,115.486707,124.988025,134.922494,140.689793,I,Above,Hip,0,5701,,40.14292336,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14345,NJBF000076680,3004 W BRIGANTINE AVE,Galloway,NJ,39.3943335,-74.3846815,COM1,3001,,NaN,ME,1969,0,3401,1,1,2922.344918,2922.344918,3507,NO,14.73,20.98,1,-0.48,6106,115.174732,124.698493,134.582735,140.535676,I,Above,Hip,0,NaN,,17.85788385,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14346,NJBF000079163,26 GIRARD PLACE,Galloway,NJ,39.40992586,-74.36800604,RES1,3001,,NaN,NE,1962,1962,3102,2,1,1277.058896,1277.058896,3507,NO,23.37,28.51,1,0.17,6106,115.348457,124.85718,134.772101,140.599204,I,Above,Hip,0,5701,,25.94288078,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14347,NJBF000079878,50 HEALD RD,Galloway,NJ,39.41320795,-74.36254325,RES1,3001,,16,NE,1960,1960,3102,1,1,1357.925589,1357.925589,3507,NO,20.92,32.56,1,2.93,6106,115.424306,124.928668,134.854726,140.644688,I,Above,Gable,0,5701,,26.73925999,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 14348,NJBF000079256,6 FRANKLIN PLACE,Galloway,NJ,39.41036873,-74.36698091,RES1,3001,,16,NE,1960,1960,3102,2,1,1066.151127,1066.151127,3507,NO,37.21,49.32,1,1.96,6106,115.364526,124.872264,134.789406,140.609882,I,Above,Hip,0,5701,,43.26430236,0,0,,,,1,1,,0.03,nav,1,1960,2,, 14349,NJBF000081788,1402 E SHORE DR,Galloway,NJ,39.42294788,-74.3658183,RES1,3001,,17,NE,1989,1989,3102,2,1,1208.261858,1208.261858,3507,NO,22.93,30.54,1,0.17,6106,115.258577,124.769535,134.678229,140.470103,I,Above,Flat,0,5701,,26.73777708,0,0,,,,1,1,,0.03,nav,1,1989,2,, 14350,NJBF000078908,617 BAYSHORE AVE,Galloway,NJ,39.40827192,-74.37044869,RES1,3001,,16,NE,1925,1925,3102,1,1,1918.336681,1918.336681,3507,NO,14,22.91,1,2.29,6106,115.316373,124.827244,134.737332,140.581362,I,Above,Hip,0,5701,,18.45429676,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 14351,NJBF000081653,242 HAGEN RD,Galloway,NJ,39.42140584,-74.36749945,RES1,3001,,18,NE,2003,2003,3102,2,1,1920.970074,1920.970074,3507,NO,24.54,31.36,1,-0.44,6106,115.240429,124.752709,134.658772,140.462339,I,Above,Hip,0,5701,,27.95010218,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 14352,NJBF000079166,216 4TH STREET NO,Galloway,NJ,39.40993453,-74.36170115,RES1,3001,,43,NE,1948,1948,3102,2,2,1435.630467,1435.630467,3507,NO,34.92,45.96,1,2.03,6106,115.475527,124.976994,134.907791,140.698788,I,Above,Hip,0,5701,,40.43917103,0,0,,,,1,1,,0.03,nav,1,1948,2,, 14353,NJBF000076418,,Galloway,NJ,39.39332832,-74.4041123,RES1,3001,,NaN,NE,1969,0,3102,2,1,3023.030034,3023.030034,3505,NO,29.38,41.8,3,4.92,6106,114.78287,124.345824,134.186761,140.240358,I,Above,Gable,0,5701,,35.5883497,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14354,NJBF000080946,1003 SHERIDAN BLVD,Galloway,NJ,39.41696392,-74.36996683,RES1,3001,,16,NE,1969,1969,3102,2,1,1806.001051,1806.001051,3507,YES,29.2,40.15,1,1.7,6106,115.235972,124.749854,134.65402,140.478755,I,Above,Gable,0,5701,,34.67326637,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 14355,NJBF000079058,104 W BEACH AVE,Galloway,NJ,39.40925024,-74.36494983,RES1,3001,,19,NE,2013,2013,3102,3,1,1288.652502,1288.652502,3507,NO,55.66,63.93,1,2.88,6106,115.417268,124.921952,134.84504,140.65609,I,Above,Gable,0,5701,,59.79075567,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 14356,NJBF000080117,601 W SHORE DR,Galloway,NJ,39.41396694,-74.37921889,RES1,3001,,16,NE,1977,1977,3103,2,1,1019.291193,1019.291193,3505,NO,28.9,43.53,3,5.29,6106,115.079332,124.603959,134.488161,140.367756,I,Above,Gable,0,5701,,36.21618773,0,0,,,,1,1,,0.03,nav,1,1977,2,, 14357,NJBF000079115,103 W EVANS BLVD,Galloway,NJ,39.40963404,-74.36554683,RES1,3001,,16,NE,1946,1946,3102,2,1,1185.536801,1185.536801,3507,NO,24.44,30.96,1,1.2,6106,115.401184,124.906805,134.828103,140.641838,I,Above,Flat,0,5701,,27.69851602,0,0,,,,1,1,,0.03,nav,1,1946,2,, 14358,NJBF000081112,802 SHERIDAN BLVD,Galloway,NJ,39.41758277,-74.36707188,RES1,3001,,17,NE,1989,1989,3102,1,1,1885.881792,1885.881792,3507,NO,18.3,27.43,1,1.93,6106,115.287967,124.798914,134.709721,140.51749,I,Above,Gable,0,5701,,22.86422815,0,1.1,,,,1,1,,0.03,nav,1,1989,1,, 14359,NJBF000080951,22 MACDERMOTT PLACE,Galloway,NJ,39.4170054,-74.36661684,RES1,3001,,17,NE,1986,1986,3102,1,1,2222.462159,2222.462159,3507,NO,15.8,21.12,1,2.89,6106,115.303055,124.813342,134.725818,140.532083,I,Above,Hip,0,5701,,18.46145454,0,0,,,,1,1,,0.03,nav,1,1986,1,, 14360,NJBF000081524,1012 N SHORE DR,Galloway,NJ,39.41984652,-74.37521228,RES1,3001,,NaN,NE,1989,1956,3103,5,1,2294.806899,2294.806899,3505,NO,61.36,72.98,3,-1.29,6106,115.100778,124.621055,134.509645,140.356982,I,Above,Flat,0,5701,,67.17004784,0,0,,,,1,1,,0.03,nav,1,1989,5,, 14361,NJBF000078883,,Galloway,NJ,39.4081271,-74.37222311,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2049.241932,2049.241932,3507,NO,36.73,46.89,1,1.7,6106,115.281931,124.795056,134.700876,140.555029,I,Above,Flat,0,5701,,41.8131621,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14362,NJBF000080243,213 13TH STREET NO,Galloway,NJ,39.41441063,-74.35556393,RES1,3001,,19,NE,2016,2016,3102,3,1,1149.028548,1149.028548,3507,NO,55.8,61.23,1,1.19,6106,115.551738,125.050115,134.993082,140.740144,I,Above,Flat,0,5701,,58.51709527,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 14363,NJBF000078915,213 VERNON PLACE,Galloway,NJ,39.40832105,-74.36403481,RES1,3001,,43,NE,1955,1955,3102,2,2,1119.450943,1119.450943,3507,NO,32.5,44.9,1,1.73,6106,115.445518,124.948525,134.874603,140.682152,I,Above,Gable,0,5701,,38.69813234,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14364,NJBF000080614,37 KIRKWOOD CIRCLE,Galloway,NJ,39.4156226,-74.36353095,RES1,3001,,17,NE,1988,1988,3102,2,1,1094.267594,1094.267594,3507,NO,31.1,38.82,1,2.73,6106,115.379372,124.885948,134.807434,140.598796,I,Above,Flat,0,5701,,34.95904927,0,0,,,,1,1,,0.03,nav,1,1988,2,, 14365,NJBF000079056,101 W BEACH AVE,Galloway,NJ,39.40924119,-74.36551894,RES1,3001,,15,NE,1955,1955,3102,1,1,994.9677643,994.9677643,3507,NO,17.59,25.35,1,1.85,6106,115.40588,124.911226,134.83289,140.647212,I,Above,Hip,0,5701,,21.47005562,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14366,NJBF000078476,,Galloway,NJ,39.40575667,-74.3670332,RES1,3001,,NaN,NE,1950,0,3102,2,1,1270.91526,1270.91526,3505,NO,36.72,46.66,3,-2.16,6106,115.412101,124.916981,134.837323,140.667103,I,Above,Hip,0,5701,,41.69325692,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14367,NJBF000080412,124 ROOSEVELT BLVD NO,Galloway,NJ,39.41496392,-74.36996408,RES1,3001,,16,NE,1966,1966,3102,2,1,1360.268635,1360.268635,3507,YES,28.82,35.09,1,-0.67,6106,115.256569,124.769844,134.675792,140.504191,I,Above,Gable,0,5701,,31.95762708,0,0,,,,1,1,,0.03,nav,1,1966,2,, 14368,NJBF000081762,1509 E SHORE DR,Galloway,NJ,39.42264667,-74.3680917,RES1,3001,,18,NE,1960,1960,3102,2,1,2040.082522,2040.082522,3507,NO,32.59,38.38,1,1.59,6106,115.21597,124.728993,134.632321,140.43704,I,Above,Flat,0,5701,,35.4883004,0,0,,,,1,1,,0.03,nav,1,1960,2,, 14369,NJBF000081642,14 HUTCHISON PLACE,Galloway,NJ,39.42120507,-74.36661797,RES1,3001,,17,NE,1980,1980,3102,3,1,1402.588181,1402.588181,3507,NO,41.92,51.68,1,2.6,6106,115.260165,124.771564,134.680029,140.479122,I,Above,Flat,0,5701,,46.79677895,0,1.1,,,,1,1,,0.03,nav,1,1980,3,, 14370,NJBF000081200,215 LINCOLN DR,Galloway,NJ,39.41799306,-74.37083868,RES1,3001,,16,NE,1972,1972,3102,2,1,3067.149444,3067.149444,3507,YES,23.14,29.65,1,1.26,6106,115.207869,124.722964,134.624028,140.451614,I,Above,Flat,0,5701,,26.39336579,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 14371,NJBF000080722,8 MACDERMOTT PLACE,Galloway,NJ,39.41601699,-74.36639538,RES1,3001,,16,NE,1980,1980,3102,2,1,1137.533026,1137.533026,3507,YES,36.49,48.39,1,0.42,6106,115.317686,124.827389,134.741311,140.548088,I,Above,Gable,0,5701,,42.43930814,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14372,NJBF000080042,,Galloway,NJ,39.41375306,-74.35823068,RES1,3001,,NaN,NE,2012,0,3102,2,1,1881.717757,1881.717757,3507,NO,30.03,40.01,1,-0.34,6106,115.505199,125.005595,134.942224,140.706169,I,Above,Hip,0,5701,,35.01953765,0,0,,,,1,1,,0.03,nav,1,2012,2,, 14373,NJBF000081658,6 HUTCHISON PLACE,Galloway,NJ,39.42148134,-74.36598441,RES1,3001,,17,NE,1981,1981,3102,2,1,1967.002439,1967.002439,3507,NO,30.05,36.03,1,-0.82,6106,115.270096,124.780951,134.690726,140.485888,I,Above,Flat,0,5701,,33.04314826,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 14374,NJBF000080602,39 KIRKWOOD CIRCLE,Galloway,NJ,39.41559918,-74.36371894,RES1,3001,,17,NE,1986,1986,3102,1,1,1644.087973,1644.087973,3507,NO,14.8,26.18,1,-0.41,6106,115.375841,124.882597,134.803628,140.596098,I,Above,Flat,0,5701,,20.49115133,0,0,,,,1,1,,0.03,nav,1,1986,1,, 14375,NJBF000079462,514 RISLEY RD,Galloway,NJ,39.41126182,-74.37451773,RES1,3001,,17,NE,1981,1981,3102,3,1,1756.908845,1756.908845,3507,NO,32.1,43.19,1,0.3,6106,115.202658,124.720245,134.618058,140.478352,I,Above,Flat,0,5701,,37.64372968,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 14376,NJBF000078973,218 2ND STREET NO,Galloway,NJ,39.40873576,-74.36271067,RES1,3001,,17,NE,1993,1993,3102,2,2,2203.774953,2203.774953,3507,NO,41.35,55.45,1,2.43,6106,115.467828,124.969598,134.898723,140.697819,I,Above,Flat,0,5701,,48.40104821,0,0,,,,1,1,,0.03,nav,1,1993,2,, 14377,NJBF000078939,,Galloway,NJ,39.40851377,-74.36272607,RES1,3001,,NaN,NE,2013,0,3102,2,1,8480.616749,8480.616749,3507,NO,33.75,38.76,1,1.91,6106,115.46987,124.971502,134.900751,140.700351,I,Above,Flat,0,5701,,36.25159588,0,0,,,,1,1,,0.03,nav,1,2013,2,, 14378,NJBF000079149,104 E BEACH AVE,Galloway,NJ,39.40983948,-74.36396366,RES1,3001,,16,NE,1959,1959,3102,1,1,1975.408433,1975.408433,3507,NO,17.26,25.18,1,0,6106,115.430957,124.934879,134.860011,140.664289,I,Above,Hip,0,5701,,21.22278773,0,0,,,,1,1,,0.03,nav,1,1959,1,, 14379,NJBF000081715,4 TRAVERS PLACE,Galloway,NJ,39.42219889,-74.36610552,RES1,3001,,17,NE,1990,1990,3102,1,1,1767.908771,1767.908771,3507,NO,14.15,24.24,1,2.34,6106,115.260372,124.771472,134.680215,140.474873,I,Above,Gable,0,5701,,19.19561494,0,0,,,,1,1,,0.03,nav,1,1990,1,, 14380,NJBF000078919,113 4TH STREET SO,Galloway,NJ,39.40836083,-74.36712744,RES1,3001,,17,NE,2008,2008,3102,2,1,1157.00445,1157.00445,3507,NO,23.96,30.55,1,0.46,6106,115.382663,124.889397,134.807679,140.632855,I,Above,Hip,0,5701,,27.25589236,0,0,,,,1,1,,0.03,nav,1,2008,2,, 14381,NJBF000076342,3000 OCEAN AVE,Galloway,NJ,39.39305223,-74.38269682,RES1,3001,,18,NE,1950,1950,3102,1,1,1908.822094,1908.822094,3507,NO,12.2,19.52,1,0.68,6106,115.229534,124.748573,134.638054,140.583429,I,Above,Gable,0,5701,,15.86252076,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 14382,NJBF000080866,1305 RAY AVE,Galloway,NJ,39.41665654,-74.37366524,RES1,3001,,16,NE,1985,1985,3102,1,1,1824.594598,1824.594598,3507,NO,15.46,21.48,1,1.12,6106,115.164423,124.682486,134.57782,140.422997,I,Above,Flat,0,5701,,18.47045288,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14383,NJBF000080360,203 13TH STREET NO,Galloway,NJ,39.41481762,-74.35606767,RES1,3001,,43,NE,1948,1948,3102,2,2,896.6241276,896.6241276,3507,NO,23.29,36.66,1,0.26,6106,115.537407,125.036488,134.977796,140.727187,I,Above,Hip,0,5701,,29.97511465,0,0,,,,1,1,,0.03,nav,1,1948,2,, 14384,NJBF000078794,,Galloway,NJ,39.4075995,-74.366415,RES1,3001,,NaN,NE,1951,0,3102,2,1,2246.826679,2246.826679,3507,NO,33.37,44.95,1,1.56,6106,115.405081,124.910452,134.831063,140.653671,I,Above,Hip,0,5701,,39.16392182,0,0,,,,1,1,,0.03,nav,1,1951,2,, 14385,NJBF000079751,,Galloway,NJ,39.4126955,-74.35833248,RES1,3001,,NaN,NE,1969,0,3102,2,1,1934.020586,1934.020586,3507,NO,24.04,31.14,1,1.27,6106,115.514236,125.01406,134.951306,140.717656,I,Above,Hip,0,5701,,27.59220844,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14386,NJBF000078762,226 3RD STREET SO,Galloway,NJ,39.40741428,-74.36573713,RES1,3001,,17,NE,1890,1890,3102,2,1,1275.66885,1275.66885,3507,NO,31.32,39.08,1,0.12,6106,115.420746,124.925164,134.847606,140.666697,I,Above,Hip,0,5701,,35.20418869,0,0,,,,1,1,,0.03,nav,1,1890,2,, 14387,NJBF000078742,228 3RD STREET SO,Galloway,NJ,39.40728065,-74.36571429,RES1,3001,,18,NE,2006,2006,3102,3,1,2018.496694,2018.496694,3507,NO,59.22,65.98,1,2.28,6106,115.422617,124.926916,134.849511,140.668728,I,Above,Gable,0,5701,,62.60079886,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 14388,NJBF000080798,1007 JENKINS PARKWAY,Galloway,NJ,39.41634747,-74.36106954,RES1,3001,,17,NE,1994,1994,3102,2,1,2392.511636,2392.511636,3507,NO,34.62,46.25,1,1.93,6106,115.421308,124.925806,134.8529,140.62897,I,Above,Hip,0,5701,,40.43547549,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 14389,NJBF000079423,422 LAFAYETTE BLVD,Galloway,NJ,39.41107722,-74.3707556,RES1,3001,,16,NE,2015,2015,3102,1,1,1695.899683,1695.899683,3507,NO,13.34,23.61,1,1.9,6106,115.280813,124.793499,134.700701,140.540873,I,Above,Gable,0,5701,,18.4775411,0,1.1,,,,1,1,,0.03,nav,1,2015,1,, 14390,NJBF000079522,427 LAFAYETTE BLVD,Galloway,NJ,39.4115136,-74.37102076,RES1,3001,,16,NE,1978,1978,3102,1,1,1630.08093,1630.08093,3507,NO,17.63,24.76,1,2.72,6106,115.270902,124.784113,134.690314,140.53109,I,Above,Hip,0,5701,,21.19575434,0,0,,,,1,1,,0.03,nav,1,1978,1,, 14391,NJBF000079516,425 LAFAYETTE BLVD,Galloway,NJ,39.41149377,-74.37085323,RES1,3001,,16,NE,1958,1958,3102,2,1,1393.876859,1393.876859,3507,NO,37.34,42.39,1,-0.65,6106,115.27451,124.787504,134.694135,140.534027,I,Above,Flat,0,5701,,39.86178513,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 14392,NJBF000079283,4 FRANKLIN PLACE,Galloway,NJ,39.41048755,-74.36696163,RES1,3001,,15,NE,1972,1972,3102,1,1,1268.972167,1268.972167,3507,NO,12.79,24.14,1,0.45,6106,115.363664,124.871445,134.788543,140.608685,I,Above,Hip,0,5701,,18.46478834,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14393,NJBF000079409,208 6TH STREET NO,Galloway,NJ,39.4110209,-74.36054772,RES1,3001,,15,NE,1950,1950,3102,1,1,746.542786,746.542786,3507,NO,10.55,19.16,1,-0.5,6106,115.487297,124.988258,134.921159,140.703458,I,Above,Hip,0,5701,,14.85517564,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14394,NJBF000081553,1 GOLF COURSE DR,Galloway,NJ,39.42011431,-74.37030745,COM8,3001,,NaN,ME,1969,0,3401,1,1,5179.589731,5179.589731,3507,NO,18.61,27.66,1,1.37,6106,115.197029,124.711935,134.612299,140.433247,I,Above,Flat,0,NaN,,23.13553504,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14395,NJBF000079272,3 FRANKLIN PLACE,Galloway,NJ,39.41042804,-74.36647212,RES1,3001,,16,NE,1962,1962,3102,2,1,1521.087728,1521.087728,3507,YES,30.71,39.84,1,0.76,6106,115.374185,124.881356,134.799727,140.617212,I,Above,Gable,0,5701,,35.27222553,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14396,NJBF000082335,333 N SHORE ROAD,Galloway,NJ,39.42909545,-74.4957474,RES1,3001,,17,NE,1960,1960,3102,2,1,1766.854821,1766.854821,3505,NO,33.45,43.17,3,2.89,6112,112.533636,122.300612,131.937585,138.08545,I,Above,Gable,0,5701,,38.31312303,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 14397,NJBF000081043,18 12TH STREET NO,Galloway,NJ,39.41734277,-74.36106138,RES1,3001,,16,NE,1957,1957,3102,1,1,1407.554264,1407.554264,3507,NO,11.91,17.09,1,1.11,6106,115.411203,124.916148,134.842359,140.616714,I,Above,Gable,0,5701,,14.50217688,0,0,,,,1,1,,0.03,nav,1,1957,1,, 14398,NJBF000080164,203 12TH STREET NO,Galloway,NJ,39.41413064,-74.35642059,RES1,3001,,29,NE,1950,1950,3102,2,2,1301.638318,1301.638318,3507,NO,36.73,43.08,1,2.33,6106,115.537511,125.036473,134.977456,140.730075,I,Above,Gable,0,5701,,39.90972737,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14399,NJBF000078645,127 10TH STREET SO,Galloway,NJ,39.4066804,-74.37232022,RES1,3001,,16,NE,2015,2015,3102,1,1,1824.846056,1824.846056,3507,NO,13.81,23.2,1,0.7,6106,115.295185,124.807638,134.714252,140.571911,I,Above,Gable,0,5701,,18.5035713,0,0,,,,1,1,,0.03,nav,1,2015,1,, 14400,NJBF000081498,1100 FOWNES AVE,Galloway,NJ,39.41962471,-74.3639874,RES1,3001,,17,NE,2003,2003,3102,2,1,1785.778962,1785.778962,3507,NO,24.02,29.76,1,0.31,6106,115.329077,124.837598,134.754228,140.541376,I,Above,Gable,0,5701,,26.89071224,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 14401,NJBF000080406,710 BOBBY JONES RD,Galloway,NJ,39.41495188,-74.38085322,RES1,3001,,16,NE,1972,1972,3103,1,1,1491.665178,1491.665178,3505,NO,24.05,30.28,3,5.19,6106,115.036064,124.563061,134.442502,140.328456,I,Above,Gable,0,5701,,27.1639965,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14402,NJBF000082431,726 OHIO AVE,Galloway,NJ,39.42984081,-74.51258466,RES1,3001,,17,NE,1925,1925,3102,1,1,1607.393027,1607.393027,3505,NO,8.13,18.17,3,-2.66,6110,112.18159,121.997176,131.605525,137.746886,I,Above,Gable,0,5701,,13.15085049,0,0,,,,1,1,,0.35,nav,1,1925,1,, 14403,NJBF000079944,406 SHERIDAN PLACE,Galloway,NJ,39.41342846,-74.36580147,RES1,3001,,17,NE,1970,1970,3102,3,1,1300.259143,1300.259143,3507,NO,33.3,47.34,1,0.51,6106,115.356431,124.864394,134.78204,140.59015,I,Above,Hip,0,5701,,40.32178754,0,1.1,,,,1,1,,0.03,nav,1,1970,3,, 14404,NJBF000078690,126 9TH STREET SO,Galloway,NJ,39.40694709,-74.37213981,RES1,3001,,16,NE,1954,1954,3102,1,1,1324.819105,1324.819105,3507,NO,18.94,27.4,1,0.86,6106,115.296025,124.808387,134.715256,140.571367,I,Above,Gable,0,5701,,23.16984422,0,0,,,,1,1,,0.03,nav,1,1954,1,, 14405,NJBF000079212,,Galloway,NJ,39.4101665,-74.3595555,RES3D,3001,,NaN,E,1969,0,3303,3,1,4052.77729,4052.77729,3507,NO,34.06,46.05,1,0.12,6106,115.516237,125.015578,134.951679,140.729683,I,Above,Hip,0,NaN,,40.05462313,0,0,,,,1,1,,0.03,nav,1,1969,3,, 14406,NJBF000081374,1000 FOWNES AVE,Galloway,NJ,39.41891827,-74.36411036,RES1,3001,,17,NE,1992,1992,3102,1,1,1878.337362,1878.337362,3507,NO,12.4,23.37,1,0.18,6106,115.333839,124.842254,134.759253,140.548263,I,Above,Gable,0,5701,,17.88178855,0,0,,,,1,1,,0.03,nav,1,1992,1,, 14407,NJBF000080735,27 11TH STREET NO,Galloway,NJ,39.41607175,-74.35996383,RES1,3001,,17,NE,1996,1996,3102,1,1,2016.128508,2016.128508,3507,NO,10.48,22.93,1,-0.73,6106,115.446337,124.94966,134.879828,140.64998,I,Above,Gable,0,5701,,16.70643838,0,0,,,,1,1,,0.03,nav,1,1996,1,, 14408,NJBF000078636,,Galloway,NJ,39.40660705,-74.36386949,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4047.829083,4047.829083,3507,NO,19.93,30.95,1,1.51,6110,115.467012,124.968602,134.896309,140.706183,I,Above,Flat,0,NaN,,25.44192867,0,0,,,,1,1,,0.35,nav,1,1969,1,, 14409,NJBF000080869,7 MACDERMOTT PLACE,Galloway,NJ,39.41666601,-74.36596442,RES1,3001,,16,NE,1982,1982,3102,1,1,1634.49607,1634.49607,3507,NO,15.64,25.11,1,2.66,6106,115.319681,124.829171,134.743592,140.546821,I,Above,Gable,0,5701,,20.3766995,0,0,,,,1,1,,0.03,nav,1,1982,1,, 14410,NJBF000080648,42 12TH STREET NO,Galloway,NJ,39.41576467,-74.35909252,RES1,3001,,16,NE,1959,1959,3102,1,1,1897.089301,1897.089301,3507,NO,12.68,18.44,1,1.98,6106,115.46698,124.969337,134.902011,140.667618,I,Above,Gable,0,5701,,15.55985806,0,0,,,,1,1,,0.03,nav,1,1959,1,, 14411,NJBF000080903,9 MACDERMOTT PLACE,Galloway,NJ,39.41680872,-74.36601767,RES1,3001,,17,NE,1991,1991,3102,2,1,1177.021664,1177.021664,3507,NO,23.73,35.59,1,0.72,6106,115.317124,124.826721,134.740877,140.544156,I,Above,Flat,0,5701,,29.65807117,0,0,,,,1,1,,0.03,nav,1,1991,2,, 14412,NJBF000079173,201 2ND STREET NO,Galloway,NJ,39.40995932,-74.36356618,RES1,3001,,15,NE,1952,1952,3102,1,1,1263.728975,1263.728975,3507,NO,22.38,31.63,1,2.88,6106,115.437717,124.941265,134.867313,140.669074,I,Above,Gable,0,5701,,27.00261125,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14413,NJBF000078668,210 5TH STREET SO,Galloway,NJ,39.40683576,-74.36750423,RES1,3001,,15,NE,1949,1949,3102,1,1,925.7929363,925.7929363,3507,NO,14.59,25.98,1,2.69,6106,115.391137,124.897358,134.815785,140.646104,I,Above,Hip,0,5701,,20.2891982,0,0,,,,1,1,,0.03,nav,1,1949,1,, 14414,NJBF000079851,524 CAVERLY DR,Galloway,NJ,39.41310796,-74.37507407,RES1,3001,,17,NE,1991,1991,3103,1,1,1618.87778,1618.87778,3505,NO,13.91,19.23,3,-1.21,6106,115.172294,124.691226,134.586184,140.445754,I,Above,Flat,0,5701,,16.56863672,0,1.1,,,,1,1,,0.03,nav,1,1991,1,, 14415,NJBF000078553,706 W BEACH AVE,Galloway,NJ,39.40614118,-74.36928529,RES1,3001,,43,NE,1952,1952,3102,2,2,1126.625911,1126.625911,3505,NO,34.44,47.58,3,-1.26,6106,115.362433,124.87049,134.784967,140.626768,I,Above,Gable,0,5701,,41.0066027,0,0,,,,1,1,,0.03,nav,1,1952,2,, 14416,NJBF000078974,215 ROOSEVELT BLVD SO,Galloway,NJ,39.40874389,-74.36319655,RES1,3001,,16,NE,1955,1955,3102,1,1,1379.219962,1379.219962,3507,NO,13.64,27.53,1,0.32,6106,115.45795,124.960278,134.888166,140.690067,I,Above,Gable,0,5701,,20.58707895,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14417,NJBF000080284,37 HEALD CIRCLE,Galloway,NJ,39.41456453,-74.36567782,RES1,3001,,17,NE,1980,2017,3102,3,1,1103.343184,1103.343184,3507,NO,45.15,54.77,1,1.67,6106,115.34712,124.855467,134.772459,140.577818,I,Above,Gable,0,5701,,49.96152736,0,1.1,,,,1,1,,0.03,nav,1,1980,3,, 14418,NJBF000080093,553 W SHORE DR,Galloway,NJ,39.41389449,-74.377649,RES1,3001,,16,NE,1966,1966,3103,1,1,676.5434483,676.5434483,3505,NO,18.29,33.13,3,4.37,6106,115.111968,124.634474,134.522523,140.394105,I,Above,Flat,0,5701,,25.70800943,0,0,,,,1,1,,0.03,nav,1,1966,1,, 14419,NJBF000080052,553 W SHORE DR,Galloway,NJ,39.41377416,-74.37754419,RES1,3001,,16,NE,1966,1966,3103,1,1,3223.838423,3223.838423,3505,NO,24.97,34.91,3,7.45,6106,115.115331,124.637671,134.526075,140.397351,I,Above,Gable,0,5701,,29.93674518,0,0,,,,1,1,,0.03,nav,1,1966,1,, 14420,NJBF000080121,556 LAFAYETTE BLVD,Galloway,NJ,39.41397842,-74.37779102,RES1,3001,,15,NE,1973,1973,3103,1,1,1188.13703,1188.13703,3505,NO,12.69,24.34,3,0.99,6106,115.108224,124.630936,134.518571,140.390725,I,Above,Hip,0,5701,,18.51272455,0,0,,,,1,1,,0.03,nav,1,1973,1,, 14421,NJBF000080045,555 W SHORE DR,Galloway,NJ,39.41375747,-74.37783923,RES1,3001,,17,NE,1989,1989,3103,2,1,1997.375577,1997.375577,3505,NO,30.23,42.68,3,7.17,6106,115.109516,124.632244,134.51995,140.392803,I,Above,Hip,0,5701,,36.45329105,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 14422,NJBF000076975,3101 REVERE BLVD,Galloway,NJ,39.39567861,-74.38685901,COM1,3001,,NaN,ME,1969,0,3401,2,1,3276.542093,3276.542093,3507,YES,27.87,37.02,1,2.32,6106,115.115293,124.644115,134.522622,140.483794,I,Above,Flat,0,NaN,,32.44598121,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14423,NJBF000079141,10 SHERIDAN PLACE,Galloway,NJ,39.4097945,-74.3661638,RES1,3001,,16,NE,1959,1959,3102,1,1,1640.666921,1640.666921,3507,NO,14.7,23.59,1,-0.94,6106,115.38705,124.893492,134.81312,140.630064,I,Above,Gable,0,5701,,19.14333247,0,0,,,,1,1,,0.03,nav,1,1959,1,, 14424,NJBF000079288,203 BAYSHORE AVE,Galloway,NJ,39.41049754,-74.36830723,RES1,3001,,45,NE,1973,1973,3102,2,2,1457.445363,1457.445363,3507,NO,33.03,40.62,1,2.32,6106,115.336387,124.845782,134.759514,140.587202,I,Above,Hip,0,5701,,36.82666105,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 14425,NJBF000078365,218 9TH STREET SO,Galloway,NJ,39.40503681,-74.37037395,RES1,3001,,16,NE,1954,1954,3102,2,1,1466.202404,1466.202404,3505,NO,27.83,40.47,3,5.9,6106,115.352058,124.860833,134.773359,140.623552,I,Above,Gable,0,5701,,34.1492716,0,0,,,,1,1,,0.03,nav,1,1954,2,, 14426,NJBF000079004,214 2ND STREET NO,Galloway,NJ,39.40894979,-74.36297572,RES1,3001,,18,NE,2004,2004,3102,3,1,1402.211388,1402.211388,3507,NO,53.65,63.28,1,0.79,6106,115.46023,124.962448,134.890744,140.690977,I,Above,Flat,0,5701,,58.4653305,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 14427,NJBF000078989,213 ROOSEVELT BLVD SO,Galloway,NJ,39.40884273,-74.3633247,RES1,3001,,16,NE,1955,1955,3102,2,1,1539.487589,1539.487589,3507,NO,26.89,37.56,1,1.52,6106,115.454325,124.956867,134.884358,140.686815,I,Above,Gable,0,5701,,32.22337797,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 14428,NJBF000078454,1106 BAYSHORE AVE,Galloway,NJ,39.40561027,-74.37331562,RES1,3001,,18,NE,2004,2004,3102,3,1,1647.967776,1647.967776,3505,NO,53.18,65.82,3,0.61,6106,115.286252,124.799452,134.704362,140.569757,I,Above,Hip,0,5701,,59.50025357,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 14429,NJBF000081082,1318 VARDON RD,Galloway,NJ,39.41747422,-74.37510208,RES1,3001,,17,NE,1986,1986,3103,2,1,1045.172607,1045.172607,3505,NO,40.67,47.81,3,5.94,6106,115.127036,124.646955,134.538038,140.389253,I,Above,Hip,0,5701,,44.24122036,0,0,,,,1,1,,0.03,nav,1,1986,2,, 14430,NJBF000078896,,Galloway,NJ,39.40820196,-74.36204711,RES1,3001,,NaN,NE,1969,0,3102,2,1,3653.00778,3653.00778,3507,NO,37.75,44.69,1,-0.42,6110,115.486847,124.987488,134.918686,140.714914,I,Above,Flat,0,5701,,41.22430861,0,0,,,,1,1,,0.35,nav,1,1969,2,, 14431,NJBF000080287,216 14TH STREET NO,Galloway,NJ,39.41457536,-74.35517452,RES1,3001,,43,NE,1976,1976,3102,2,2,1301.571564,1301.571564,3507,NO,25.56,30.78,1,2.62,6106,115.557806,125.05595,134.999787,140.74426,I,Above,Gable,0,5701,,28.17247248,0,0,,,,1,1,,0.03,nav,1,1976,2,, 14432,NJBF000079985,1004 E BEACH AVE,Galloway,NJ,39.413574,-74.3577485,RES1,3001,,16,NE,2016,2016,3102,3,1,1739.252558,1739.252558,3507,NO,45.63,54.81,1,0.71,6106,115.51675,125.016579,134.954603,140.716007,I,Above,Gable,0,5701,,50.22166007,0,0,,,,1,1,,0.03,nav,1,2016,3,, 14433,NJBF000078766,144 5TH STREET SO,Galloway,NJ,39.40742693,-74.36805051,RES1,3001,,43,NE,1964,1964,3102,2,2,1384.377663,1384.377663,3507,NO,29.74,43.7,1,0.43,6106,115.373825,124.881122,134.79777,140.63002,I,Above,Hip,0,5701,,36.7203053,0,0,,,,1,1,,0.03,nav,1,1964,2,, 14434,NJBF000081755,1511 E SHORE DR,Galloway,NJ,39.42258405,-74.36827743,RES1,3001,,18,NE,2004,2004,3102,2,1,2248.26877,2248.26877,3507,NO,24.49,36.34,1,2.63,6106,115.212889,124.726081,134.629013,140.434835,I,Above,Gable,0,5701,,30.41376084,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 14435,NJBF000078731,230 3RD STREET SO,Galloway,NJ,39.40723416,-74.36554843,RES1,3001,,15,NE,1945,1945,3102,1,1,1123.018671,1123.018671,3507,NO,15.32,25.93,1,0,6106,115.426467,124.930532,134.853576,140.671932,I,Above,Gable,0,5701,,20.62117087,0,0,,,,1,1,,0.03,nav,1,1945,1,, 14436,NJBF000079897,38 HEALD RD,Galloway,NJ,39.41326598,-74.36360612,RES1,3001,,16,NE,1970,1970,3102,2,1,1463.75545,1463.75545,3507,NO,27.55,42.04,1,-0.49,6106,115.402318,124.907828,134.831143,140.627092,I,Above,Hip,0,5701,,34.79309797,0,0,,,,1,1,,0.03,nav,1,1970,2,, 14437,NJBF000078602,150 9TH STREET SO,Galloway,NJ,39.40643115,-74.37161968,RES1,3001,,16,NE,1953,1953,3102,1,1,1074.965526,1074.965526,3507,NO,15.95,23.05,1,0.06,6106,115.31202,124.823374,134.731883,140.586171,I,Above,Gable,0,5701,,19.49995771,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 14438,NJBF000078579,154 9TH STREET SO,Galloway,NJ,39.406331,-74.371563,RES1,3001,,16,NE,1955,1955,3102,1,1,1289.217187,1289.217187,3507,NO,13.62,22.58,1,0.66,6106,115.314233,124.825449,134.734167,140.588345,I,Above,Hip,0,5701,,18.09905368,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14439,NJBF000080945,26 12TH STREET NO,Galloway,NJ,39.41696162,-74.3605612,RES1,3001,,16,NE,1957,1957,3102,2,1,1593.173693,1593.173693,3507,NO,29.14,44.12,1,1.55,6106,115.425161,124.92947,134.857307,140.629423,I,Above,Gable,0,5701,,36.63056833,0,0,,,,1,1,,0.03,nav,1,1957,2,, 14440,NJBF000079243,431 HACKNEY PLACE,Galloway,NJ,39.4103071,-74.3721371,RES1,3001,,17,NE,1991,1991,3102,1,1,1937.062249,1937.062249,3507,NO,18.01,24.7,1,1.14,6106,115.260868,124.774955,134.679351,140.528633,I,Above,Gable,0,5701,,21.35291335,0,1.1,,,,1,1,,0.03,nav,1,1991,1,, 14441,NJBF000079245,433 HACKNEY PLACE,Galloway,NJ,39.41030746,-74.3723173,RES1,3001,,16,NE,1973,1973,3102,1,1,1416.490102,1416.490102,3507,NO,20.48,27.22,1,2.16,6106,115.25722,124.77154,134.675493,140.525761,I,Above,Gable,0,5701,,23.84819749,0,0,,,,1,1,,0.03,nav,1,1973,1,, 14442,NJBF000080237,113 11TH STREET NO,Galloway,NJ,39.41439784,-74.35794497,RES1,3001,,45,NE,1979,1979,3102,2,2,1525.210811,1525.210811,3507,NO,23.34,35.13,1,-0.52,6106,115.504202,125.004723,134.941541,140.702716,I,Above,Hip,0,5701,,29.2350398,0,0,,,,1,1,,0.03,nav,1,1979,2,, 14443,NJBF000080663,18 MACDONALD PLACE,Galloway,NJ,39.41584711,-74.36725663,RES1,3001,,17,NE,1990,1990,3102,2,1,2161.513439,2161.513439,3507,NO,36.89,48.52,1,2.67,6106,115.302075,124.812638,134.724551,140.536425,I,Above,Flat,0,5701,,42.70185917,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 14444,NJBF000081248,1 DUNLAP PLACE,Galloway,NJ,39.41829959,-74.36306119,RES1,3001,,17,NE,1999,1999,3102,3,1,1051.381764,1051.381764,3507,NO,33.67,41.53,1,0.48,6106,115.361232,124.868437,134.788674,140.572816,I,Above,Gable,0,5701,,37.6032132,0,1.2,,,,1,1,,0.03,nav,1,1999,3,, 14445,NJBF000079824,603 E EVANS BLVD,Galloway,NJ,39.41299176,-74.36242159,RES1,3001,,16,NE,1978,1978,3102,2,1,1183.06241,1183.06241,3507,NO,33.69,48.41,1,0.35,6106,115.428991,124.933107,134.859652,140.649301,I,Above,Gable,0,5701,,41.04747403,0,0,,,,1,1,,0.03,nav,1,1978,2,, 14446,NJBF000078462,255 6TH STREET SO,Galloway,NJ,39.4056556,-74.36695481,RES1,3001,,43,NE,1957,1957,3102,2,2,1339.040756,1339.040756,3505,NO,28.74,34.07,3,0.28,6106,115.414752,124.91946,134.840064,140.6696,I,Above,Hip,0,5701,,31.40121433,0,0,,,,1,1,,0.03,nav,1,1957,2,, 14447,NJBF000078642,151 9TH STREET SO,Galloway,NJ,39.40665508,-74.37121526,RES1,3001,,NaN,NE,1965,1965,3102,2,1,1395.307541,1395.307541,3507,NO,33.66,44.18,1,-0.95,6106,115.317872,124.828815,134.738165,140.58974,I,Above,Gable,0,5701,,38.92043658,0,0,,,,1,1,,0.03,nav,1,1965,2,, 14448,NJBF000079094,211 2ND STREET NO,Galloway,NJ,39.40950835,-74.36291324,RES1,3001,,43,NE,1953,1953,3102,1,2,1594.985125,1594.985125,3507,NO,19.03,31.94,1,2.16,6106,115.455619,124.95814,134.886181,140.685008,I,Above,Gable,0,5701,,25.48297575,0,0,,,,1,1,,0.03,nav,1,1953,1,, 14449,NJBF000080901,1316 OUIMET RD,Galloway,NJ,39.41680114,-74.37476097,RES1,3001,,17,NE,1987,1987,3102,2,1,1075.475013,1075.475013,3507,NO,25.44,37.16,1,1.18,6106,115.140785,124.660189,134.552715,140.403418,I,Above,Flat,0,5701,,31.29960378,0,0,,,,1,1,,0.03,nav,1,1987,2,, 14450,NJBF000081598,232 HAGEN RD,Galloway,NJ,39.42067055,-74.36734581,RES1,3001,,17,NE,1992,1992,3102,2,1,1501.879497,1501.879497,3507,NO,25.68,36.92,1,-0.46,6106,115.250957,124.762956,134.670131,140.474097,I,Above,Hip,0,5701,,31.29890354,0,0,,,,1,1,,0.03,nav,1,1992,2,, 14451,NJBF000076424,400 29TH STREET SO,Galloway,NJ,39.3933516,-74.38179597,RES1,3001,,20,NE,1990,1990,3102,3,1,1987.658871,1987.658871,3507,NO,40.34,52.8,1,0.76,6106,115.244767,124.762444,134.653906,140.593642,I,Above,Gable,0,5701,,46.57234325,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 14452,NJBF000080206,109 ROOSEVELT BLVD NO,Galloway,NJ,39.41427481,-74.36899028,RES1,3001,,16,NE,1968,1968,3102,2,1,1574.04111,1574.04111,3507,NO,34.29,40.29,1,-0.64,6106,115.283339,124.795248,134.704207,140.528539,I,Above,Gable,0,5701,,37.28977358,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 14453,NJBF000079700,528 LAFAYETTE BLVD,Galloway,NJ,39.41240004,-74.37525343,RES1,3001,,16,NE,1984,1984,3103,2,1,1169.380347,1169.380347,3505,NO,35.04,44.17,3,5.43,6106,115.175968,124.694915,134.59002,140.451961,I,Above,Gable,0,5701,,39.60504897,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14454,NJBF000081421,,Galloway,NJ,39.41913924,-74.36203598,RES1,3001,,NaN,NE,1969,0,3102,2,1,2348.279028,2348.279028,3507,NO,24.69,30.06,1,-0.57,6106,115.373186,124.879747,134.801787,140.578747,I,Above,Flat,0,5701,,27.37516621,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14455,NJBF000080607,33 KIRKWOOD CIRCLE,Galloway,NJ,39.41560668,-74.36318587,RES1,3001,,16,NE,1981,1981,3102,2,1,1246.453169,1246.453169,3507,NO,38.11,51.5,1,-0.41,6106,115.386472,124.892693,134.815067,140.604496,I,Above,Gable,0,5701,,44.80809941,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 14456,NJBF000082510,820 OHIO AVE,Galloway,NJ,39.43053223,-74.51427905,RES1,3001,,17,NE,1963,1963,3102,1,1,1771.192619,1771.192619,3505,NO,23.11,28.41,3,7.79,6110,112.142694,121.960571,131.565392,137.702793,I,Above,Gable,0,5701,,25.75927271,0,0,,,,1,1,,0.35,nav,1,1963,1,, 14457,NJBF000079717,528 W SHORE DR,Galloway,NJ,39.41247184,-74.37610428,RES1,3001,,16,NE,1984,1984,3103,2,1,2246.058532,2246.058532,3505,NO,30.38,43.95,3,3.78,6106,115.157957,124.678048,134.571023,140.437347,I,Above,Gable,0,5701,,37.16625265,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 14458,NJBF000079231,,Galloway,NJ,39.4102494,-74.37007471,RES1,3001,,NaN,NE,1987,0,3102,2,1,1926.823879,1926.823879,3507,NO,36.79,50.99,1,-0.62,6106,115.303232,124.814674,134.724205,140.562234,I,Above,Gable,0,5701,,43.89133442,0,0,,,,1,1,,0.03,nav,1,1987,2,, 14459,NJBF000079226,,Galloway,NJ,39.41023052,-74.37019532,RES1,3001,,NaN,NE,1969,0,3102,2,1,1828.865796,1828.865796,3507,NO,24.28,34.22,1,-0.51,6106,115.300992,124.812574,134.721822,140.560552,I,Above,Gable,0,5701,,29.2489071,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14460,NJBF000078375,255 7TH STREET SO,Galloway,NJ,39.40513407,-74.36763105,RES1,3001,,16,NE,1953,1953,3102,2,1,1827.08623,1827.08623,3505,NO,26.62,31.64,3,0.13,6106,115.406617,124.91182,134.831085,140.665534,I,Above,Gable,0,5701,,29.12965347,0,0,,,,1,1,,0.03,nav,1,1953,2,, 14461,NJBF000078610,,Galloway,NJ,39.40647786,-74.36867431,RES1,3001,,NaN,NE,1950,0,3102,2,1,1879.275599,1879.275599,3507,NO,33.91,48.04,1,0,6106,115.371243,124.878724,134.794486,140.632156,I,Above,Flat,0,5701,,40.97878297,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14462,NJBF000078569,,Galloway,NJ,39.40625137,-74.36857754,RES1,3001,,NaN,NE,1950,0,3102,2,1,1861.949883,1861.949883,3507,NO,32.76,45.1,1,0.01,6106,115.375589,124.882797,134.798954,140.636536,I,Above,Hip,0,5701,,38.92689256,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14463,NJBF000081019,201 ROOSEVELT BLVD NO,Galloway,NJ,39.41722831,-74.36998963,RES1,3001,,16,NE,1969,1969,3102,2,1,2039.814119,2039.814119,3507,YES,35.14,43.53,1,-0.56,6106,115.232807,124.746783,134.650652,140.475033,I,Above,Gable,0,5701,,39.33575991,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14464,NJBF000080182,201 12TH STREET NO,Galloway,NJ,39.41420183,-74.35652266,RES1,3001,,15,NE,1950,1950,3102,1,1,664.2901241,664.2901241,3507,NO,15.8,20.91,1,-0.11,6106,115.534728,125.033827,134.974485,140.727591,I,Above,Flat,0,5701,,18.35461669,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14465,NJBF000078808,210 2ND STREET SO,Galloway,NJ,39.40768773,-74.36491878,RES1,3001,,43,NE,1955,1955,3102,2,2,1282.148636,1282.148636,3507,NO,36.66,51.43,1,1.93,6106,115.434368,124.937986,134.86229,140.676149,I,Above,Gable,0,5701,,44.04513191,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14466,NJBF000080989,1325 OUIMET RD,Galloway,NJ,39.41713147,-74.37554386,RES1,3001,,17,NE,1986,1986,3103,1,1,2153.148019,2153.148019,3505,NO,17.64,26.15,3,6.53,6106,115.12158,124.641985,134.532304,140.386491,I,Above,Gable,0,5701,,21.89719399,0,1.1,,,,1,1,,0.03,nav,1,1986,1,, 14467,NJBF000079989,55 HEALD RD,Galloway,NJ,39.41357854,-74.36216694,RES1,3001,,17,NE,2004,2004,3102,2,1,2148.788252,2148.788252,3507,NO,31.78,37.46,1,1.27,6106,115.428001,124.932176,134.85888,140.646023,I,Above,Hip,0,5701,,34.62113115,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 14468,NJBF000081479,214 HAGEN RD,Galloway,NJ,39.41945077,-74.36718453,RES1,3001,,17,NE,1993,1993,3102,2,1,1557.101625,1557.101625,3507,NO,35.17,46.86,1,-0.59,6106,115.266604,124.778177,134.686943,140.492099,I,Above,Gable,0,5701,,41.01815485,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 14469,NJBF000076462,325 32ND STREET SO,Galloway,NJ,39.39349985,-74.38494992,RES1,3001,,17,NE,2001,2001,3102,2,1,1527.311124,1527.311124,3507,NO,30.1,41.67,1,1.88,6106,115.178284,124.701857,134.585867,140.542305,I,Above,Gable,0,5701,,35.88814331,0,0,,,,1,1,,0.03,nav,1,2001,2,, 14470,NJBF000079893,203 10TH STREET NO,Galloway,NJ,39.41325012,-74.35779707,RES1,3001,,45,NE,1954,1954,3102,2,2,1144.726873,1144.726873,3507,NO,36.18,47.36,1,0.87,6106,115.519155,125.018824,134.956992,140.719236,I,Above,Gable,0,5701,,41.76769199,0,0,,,,1,1,,0.03,nav,1,1954,2,, 14471,NJBF000079129,301 W EVANS BLVD,Galloway,NJ,39.40971836,-74.36705547,RES1,3001,,17,NE,1952,1952,3102,2,1,1420.823377,1420.823377,3507,YES,29.47,37.21,1,0.4,6106,115.369854,124.877312,134.794766,140.616908,I,Above,Flat,0,5701,,33.34222636,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 14472,NJBF000082492,104 MIAMI AVE,Galloway,NJ,39.43037437,-74.51273974,RES1,3001,,17,NE,1962,1962,3102,1,1,2378.440208,2378.440208,3505,NO,14.08,28.04,3,0.65,6110,112.175185,121.988989,131.596492,137.735452,I,Above,Gable,0,5701,,21.05875269,0,0,,,,1,1,,0.35,nav,1,1962,1,, 14473,NJBF000082464,104 MIAMI AVE,Galloway,NJ,39.43018649,-74.51253099,RES1,3001,,17,NE,1962,1962,3102,1,1,586.3769059,586.3769059,3505,NO,17.99,27.98,3,6.88,6110,112.180608,121.994566,131.602618,137.742507,I,Above,Flat,0,5701,,22.98317514,0,0,,,,1,1,,0.35,nav,1,1962,1,, 14474,NJBF000078969,107 3RD STREET SO,Galloway,NJ,39.40871467,-74.36635356,RES1,3001,,16,NE,1955,1955,3102,2,1,1243.639588,1243.639588,3507,NO,38.47,47.1,1,1.73,6106,115.394555,124.900569,134.820526,140.640621,I,Above,Gable,0,5701,,42.7872172,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14475,NJBF000078955,109 3RD STREET SO,Galloway,NJ,39.4086178,-74.36624252,RES1,3001,,17,NE,1949,1949,3102,3,1,1613.942455,1613.942455,3507,NO,45.26,57.68,1,-0.06,6106,115.397819,124.903638,134.823945,140.643594,I,Above,Gable,0,5701,,51.46843324,0,0,,,,1,1,,0.03,nav,1,1949,3,, 14476,NJBF000079573,516 W SHORE DR,Galloway,NJ,39.41173915,-74.37577524,RES1,3001,,20,NE,2012,2012,3103,3,1,1853.726952,1853.726952,3505,NO,47.66,59.43,3,-2.25,6106,115.172207,124.69163,134.585998,140.45206,I,Above,Hip,0,5701,,53.5438115,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 14477,NJBF000079590,516 W SHORE DR,Galloway,NJ,39.41182053,-74.3756524,RES1,3001,,20,NE,2012,2012,3103,3,1,545.4106903,545.4106903,3505,NO,51.65,59.47,3,4.33,6106,115.173856,124.693142,134.587744,140.452983,I,Above,Flat,0,5701,,55.5613173,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 14478,NJBF000079552,437 LAFAYETTE BLVD,Galloway,NJ,39.41165829,-74.37189254,RES1,3001,,16,NE,1979,1979,3102,2,1,1252.645371,1252.645371,3507,NO,26.12,40.3,1,2.93,6106,115.251753,124.766115,134.67005,140.515322,I,Above,Gable,0,5701,,33.21413696,0,0,,,,1,1,,0.03,nav,1,1979,2,, 14479,NJBF000079050,204 W EVANS BLVD,Galloway,NJ,39.409192,-74.3666185,RES1,3001,,15,NE,1955,1955,3102,1,1,996.6135518,996.6135518,3507,NO,13.35,26.75,1,-0.81,6106,115.384185,124.890809,134.80975,140.630432,I,Above,Flat,0,5701,,20.04846255,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14480,NJBF000081764,3 TRAVERS PLACE,Galloway,NJ,39.4226888,-74.36608453,RES1,3001,,17,NE,1988,1988,3102,2,1,1282.442296,1282.442296,3507,NO,39.45,52.37,1,0.83,6106,115.255838,124.766998,134.675291,140.469041,I,Above,Gable,0,5701,,45.90867182,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 14481,NJBF000078862,,Galloway,NJ,39.40799628,-74.36328029,RES1,3001,,NaN,NE,1953,0,3102,2,1,1935.631183,1935.631183,3507,NO,22.09,34.27,1,0.03,6106,115.464178,124.966081,134.894301,140.698097,I,Above,Flat,0,5701,,28.17776638,0,0,,,,1,1,,0.03,nav,1,1953,2,, 14482,NJBF000079184,,Galloway,NJ,39.41001394,-74.37136283,RES1,3001,,NaN,NE,1969,0,3102,2,1,2880.679734,2880.679734,3507,NO,41.05,49.52,1,2.25,6106,115.279608,124.792563,134.699091,140.544705,I,Above,Gable,0,5701,,45.28894348,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14483,NJBF000079478,503 RISLEY RD,Galloway,NJ,39.41133042,-74.37340881,RES1,3001,,16,NE,1983,1983,3102,1,1,1577.097933,1577.097933,3507,NO,14.43,22.64,1,0.33,6106,115.224443,124.740608,134.641079,140.495249,I,Above,Gable,0,5701,,18.53446235,0,0,,,,1,1,,0.03,nav,1,1983,1,, 14484,NJBF000079787,208 10TH STREET NO,Galloway,NJ,39.41283934,-74.35785645,RES1,3001,,15,NE,1950,1950,3102,1,1,897.8932301,897.8932301,3507,NO,16.64,27.58,1,2.2,6106,115.522273,125.021733,134.960087,140.723381,I,Above,Flat,0,5701,,22.11125889,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14485,NJBF000078767,200 4TH STREET SO,Galloway,NJ,39.40743524,-74.36697884,RES1,3001,,17,NE,1950,1950,3102,2,1,2354.021487,2354.021487,3507,NO,31.03,39.27,1,2.75,6106,115.395423,124.901382,134.8207,140.646847,I,Above,Hip,0,5701,,35.1468325,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 14486,NJBF000078750,,Galloway,NJ,39.40732956,-74.3668885,RES1,3001,,NaN,NE,1950,0,3102,2,1,2362.09037,2362.09037,3507,NO,40.04,54.53,1,1.56,6106,115.398352,124.90413,134.823747,140.649588,I,Above,Gable,0,5701,,47.2883337,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14487,NJBF000078953,108 3RD STREET SO,Galloway,NJ,39.40861398,-74.36688967,RES1,3001,,18,NE,2013,2013,3102,2,1,702.3160419,702.3160419,3507,NO,28.47,43.39,1,0.79,6106,115.384789,124.891389,134.810079,140.633417,I,Above,Hip,0,5701,,35.9299965,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 14488,NJBF000076207,408 30TH STREET SO,Galloway,NJ,39.39259244,-74.38218984,RES1,3001,,20,NE,2015,2015,3102,3,1,2379.157773,2379.157773,3507,NO,53.8,61.66,1,-0.13,6106,115.244996,124.762697,134.653573,140.597305,I,Above,Gable,0,5701,,57.72955516,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 14489,NJBF000080078,1507 SHERIDAN BLVD,Galloway,NJ,39.41384343,-74.37891273,RES1,3001,,16,NE,1977,1977,3103,2,1,1154.848029,1154.848029,3505,NO,29.69,42.89,3,6.71,6106,115.086819,124.611008,134.496051,140.374317,I,Above,Gable,0,5701,,36.29003629,0,0,,,,1,1,,0.03,nav,1,1977,2,, 14490,NJBF000080411,120 WASHINGTON DR,Galloway,NJ,39.4149584,-74.36895054,RES1,3001,,16,NE,1970,1970,3102,1,1,1380.542589,1380.542589,3507,NO,21.72,27.94,1,2.6,6106,115.277078,124.789195,134.697663,140.520515,I,Above,Gable,0,5701,,24.8286484,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 14491,NJBF000079134,208 3RD STREET NO,Galloway,NJ,39.40973134,-74.36271381,RES1,3001,,19,NE,1954,1954,3102,3,1,1935.481733,1935.481733,3507,NO,49.3,61.98,1,2.24,6106,115.457279,124.959726,134.888104,140.685364,I,Above,Gable,0,5701,,55.64027765,0,1.1,,,,1,1,,0.03,nav,1,1954,3,, 14492,NJBF000080236,121 LINCOLN DR,Galloway,NJ,39.41439746,-74.37011787,RES1,3001,,16,NE,1967,1967,3102,1,1,1650.596929,1650.596929,3507,NO,15.68,22.53,1,2.3,6106,115.259303,124.772561,134.678615,140.508918,I,Above,Flat,0,5701,,19.10464878,0,0,,,,1,1,,0.03,nav,1,1967,1,, 14493,NJBF000080401,12 KIRKWOOD CIRCLE,Galloway,NJ,39.41493445,-74.36396379,RES1,3001,,16,NE,1952,1952,3102,1,1,2254.002708,2254.002708,3507,NO,17.75,30.85,1,1.53,6106,115.377796,124.884502,134.805495,140.600519,I,Above,Gable,0,5701,,24.29684145,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14494,NJBF000079533,402 E EVANS BLVD,Galloway,NJ,39.41156045,-74.36347268,RES1,3001,,16,NE,1967,1967,3102,1,1,1356.937826,1356.937826,3507,NO,21.33,28.83,1,2.21,6106,115.4228,124.927222,134.85226,140.650534,I,Above,Gable,0,5701,,25.0782606,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 14495,NJBF000081740,11 TRAVERS PLACE,Galloway,NJ,39.42244107,-74.36670466,RES1,3001,,17,NE,1985,1985,3102,1,1,1422.56702,1422.56702,3507,NO,15.58,26.76,1,-0.55,6106,115.245902,124.757595,134.664592,140.462128,I,Above,Gable,0,5701,,21.17131903,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14496,NJBF000078695,215 5TH STREET SO,Galloway,NJ,39.40696597,-74.36699767,RES1,3001,,16,NE,1951,1951,3102,1,1,1046.965392,1046.965392,3507,NO,17.99,28.51,1,0.33,6106,115.399996,124.905668,134.825268,140.652447,I,Above,Hip,0,5701,,23.25148362,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14497,NJBF000080564,36 11TH STREET NO,Galloway,NJ,39.41547253,-74.36000863,RES1,3001,,16,NE,1960,1960,3102,1,1,1996.947958,1996.947958,3507,NO,12.34,18.73,1,-0.36,6106,115.451644,124.954702,134.885285,140.656703,I,Above,Gable,0,5701,,15.53060413,0,0,,,,1,1,,0.03,nav,1,1960,1,, 14498,NJBF000080689,1100 SHERIDAN BLVD,Galloway,NJ,39.41591881,-74.37036589,RES1,3001,,16,NE,1973,1973,3102,2,1,2322.242217,2322.242217,3507,YES,35.18,46.32,1,2.41,6106,115.238633,124.75267,134.656785,140.485606,I,Above,Flat,0,5701,,40.75238562,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 14499,NJBF000079781,,Galloway,NJ,39.4128106,-74.36063059,RES1,3001,,NaN,NE,1969,0,3102,2,1,1074.968797,1074.968797,3507,NO,22.37,30.58,1,0.72,6106,115.466877,124.969049,134.900305,140.679913,I,Above,Hip,0,5701,,26.47553931,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14500,NJBF000079776,,Galloway,NJ,39.41280062,-74.36073297,RES1,3001,,NaN,NE,1969,0,3102,2,1,848.3386031,848.3386031,3507,NO,24.93,32.9,1,2.41,6106,115.464933,124.967202,134.898206,140.678424,I,Above,Gable,0,5701,,28.91393207,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14501,NJBF000080647,5 VARDON RD,Galloway,NJ,39.41576371,-74.37230604,RES1,3001,,16,NE,1970,1970,3102,2,1,1338.02315,1338.02315,3507,NO,31.32,41.83,1,1.11,6106,115.201034,124.71728,134.616745,140.456346,I,Above,Gable,0,5701,,36.57450704,0,0,,,,1,1,,0.03,nav,1,1970,2,, 14502,NJBF000080349,122 ROOSEVELT BLVD NO,Galloway,NJ,39.41479135,-74.36990439,RES1,3001,,16,NE,1969,1969,3102,3,1,2155.283746,2155.283746,3507,NO,37.76,49.67,1,1.2,6106,115.259562,124.77271,134.678956,140.507349,I,Above,Gable,0,5701,,43.71364279,0,1.1,,,,1,1,,0.03,nav,1,1969,3,, 14503,NJBF000081674,229 HAGEN RD,Galloway,NJ,39.421719,-74.36705,RES1,3001,,17,NE,1989,1989,3102,2,1,1463.843362,1463.843362,3507,NO,25.79,37.82,1,1.32,6106,115.246279,124.758182,134.665051,140.465652,I,Above,Gable,0,5701,,31.80452588,0,0,,,,1,1,,0.03,nav,1,1989,2,, 14504,NJBF000078471,217 8TH STREET SO,Galloway,NJ,39.40570656,-74.36922012,RES1,3001,,15,NE,1952,1952,3102,1,1,1118.403446,1118.403446,3505,NO,17.16,28.26,3,1.93,6106,115.368348,124.876031,134.790964,140.633279,I,Above,Flat,0,5701,,22.71229997,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14505,NJBF000080056,561 W SHORE DR,Galloway,NJ,39.41378337,-74.37835673,RES1,3001,,16,NE,1961,1961,3103,1,1,1785.044485,1785.044485,3505,NO,19.19,28.25,3,3.4,6106,115.098729,124.622157,134.50859,140.38409,I,Above,Flat,0,5701,,23.71937543,0,0,,,,1,1,,0.03,nav,1,1961,1,, 14506,NJBF000078658,207 6TH STREET SO,Galloway,NJ,39.4067559,-74.36791388,RES1,3001,,43,NE,1955,1955,3102,1,2,1517.656875,1517.656875,3507,NO,18.55,29.33,1,0.07,6106,115.383687,124.890376,134.807836,140.640643,I,Above,Hip,0,5701,,23.93992937,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14507,NJBF000082927,12 N CURRAN DRIVE,Galloway,NJ,39.43506906,-74.48136987,RES1,3001,,17,NE,1975,1975,3102,1,1,2457.444209,2457.444209,3507,NO,17.07,28.98,1,1.58,6112,112.788288,122.493922,132.149549,138.267554,I,Above,Gable,0,5701,,23.02117638,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 14508,NJBF000080365,724 W SHORE DR,Galloway,NJ,39.4148495,-74.3821665,RES1,3001,,18,NE,2003,2003,3103,3,1,3089.215693,3089.215693,3505,NO,61.13,75.8,3,6.3,6106,115.010397,124.5392,134.415595,140.308422,I,Above,Flat,0,5701,,68.46580946,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 14509,NJBF000078397,219 9TH STREET SO,Galloway,NJ,39.405249,-74.3699135,RES1,3001,,15,NE,1954,1954,3102,1,1,1248.797525,1248.797525,3505,NO,17.85,27.83,3,-1.39,6106,115.359158,124.867455,134.780979,140.62814,I,Above,Hip,0,5701,,22.84106361,0,0,,,,1,1,,0.03,nav,1,1954,1,, 14510,NJBF000081422,932 N SHORE DR,Galloway,NJ,39.41915381,-74.376999,RES1,3001,,17,NE,1955,1955,3103,2,1,2162.660801,2162.660801,3505,NO,38.13,47.65,3,-0.36,6106,115.071639,124.593988,134.478901,140.336783,I,Above,Hip,0,5701,,42.88710422,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 14511,NJBF000079507,520 RISLEY RD,Galloway,NJ,39.41144605,-74.3749113,RES1,3001,,17,NE,1999,1999,3102,2,1,3347.842499,3347.842499,3507,NO,40.54,48.4,1,1.71,6106,115.192776,124.71095,134.607657,140.469692,I,Above,Gable,0,5701,,44.47041576,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 14512,NJBF000082528,304 S MILL ROAD,Galloway,NJ,39.43065932,-74.51604134,RES1,3001,,17,NE,2004,2004,3102,2,1,2233.53399,2233.53399,3505,NO,43.66,53.98,3,4.92,6110,112.105874,121.928641,131.530456,137.666194,I,Above,Gable,0,5701,,48.82159621,0,0,,,,1,1,,0.35,nav,1,2004,2,, 14513,NJBF000080446,140 LINCOLN DR,Galloway,NJ,39.41507994,-74.3709659,RES1,3001,,16,NE,1964,1964,3102,2,1,2212.640807,2212.640807,3507,NO,38.8,46.27,1,0.38,6106,115.235137,124.749613,134.65298,140.486625,I,Above,Gable,0,5701,,42.53679252,0,0,,,,1,1,,0.03,nav,1,1964,2,, 14514,NJBF000079624,206 SHERIDAN PLACE,Galloway,NJ,39.412025,-74.365888,RES1,3001,,16,NE,1976,1976,3102,1,1,1542.864762,1542.864762,3507,NO,19.76,33.54,1,2.72,6106,115.369279,124.876641,134.795218,140.606401,I,Above,Hip,0,5701,,26.65034402,0,0,,,,1,1,,0.03,nav,1,1976,1,, 14515,NJBF000080987,207 LINCOLN DR,Galloway,NJ,39.41711292,-74.37094725,RES1,3001,,16,NE,1966,1966,3102,2,1,1216.69006,1216.69006,3507,NO,39.78,51.93,1,2.33,6106,115.214674,124.72969,134.631296,140.461067,I,Above,Flat,0,5701,,45.8557269,0,0,,,,1,1,,0.03,nav,1,1966,2,, 14516,NJBF000077235,201 27TH STREET SO,Galloway,NJ,39.39739256,-74.38323294,RES1,3001,,16,NE,1956,1956,3102,1,1,1651.454209,1651.454209,3507,NO,12.06,23.75,1,0.98,6106,115.171363,124.694856,134.580935,140.518702,I,Above,Gable,0,5701,,17.9063969,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14517,NJBF000079466,501 RISLEY RD,Galloway,NJ,39.41127939,-74.37322769,RES1,3001,,17,NE,1996,1996,3102,2,1,2012.400591,2012.400591,3507,NO,27.87,35.53,1,1.04,6106,115.228642,124.744552,134.645508,140.498798,I,Above,Flat,0,5701,,31.7021649,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 14518,NJBF000079649,522 W SHORE DR,Galloway,NJ,39.41213421,-74.37597605,RES1,3001,,16,NE,1961,1961,3103,2,1,2262.37361,2262.37361,3505,NO,29.42,38.21,3,2.24,6106,115.164044,124.683862,134.577423,140.443752,I,Above,Hip,0,5701,,33.81748827,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 14519,NJBF000086581,829 MOTTS CREEK RD,Galloway,NJ,39.5153085,-74.445125,RES1,3001,,16,NE,1951,1951,3102,1,1,1030.055596,1030.055596,3507,NO,17.42,28.3,1,2.34,6106,112.959426,122.268896,131.903101,137.771854,I,Above,Flat,0,5701,,22.8591984,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14520,NJBF000086586,831 MOTTS CREEK RD,Galloway,NJ,39.51536319,-74.44494956,RES1,3001,,16,NE,1951,1951,3102,1,1,1347.903502,1347.903502,3507,NO,14.95,20.4,1,2.4,6106,112.962249,122.271479,131.905807,137.774539,I,Above,Gable,0,5701,,17.6748868,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14521,NJBF000086575,828 MOTTS CREEK RD,Galloway,NJ,39.51523871,-74.44308823,RES1,3001,,15,NE,1951,1951,3102,1,1,1386.22817,1386.22817,3507,NO,17.48,30.52,1,0.73,6106,112.996855,122.307183,131.943631,137.813306,I,Above,Gable,0,5701,,24.00450085,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14522,NJBF000083300,536 BROOK LN,Galloway,NJ,39.4415158,-74.48487874,RES1,3001,,16,NE,1974,1974,3102,2,1,1731.317962,1731.317962,3505,NO,31.73,42.18,3,6.47,6112,112.672372,122.36367,132.007088,138.101343,I,Above,Gable,0,5701,,36.95381619,0,0,,,,1,1,,0.35,nav,1,1974,2,, 14523,NJBF000087031,316 KINGS HIGHWAY,Galloway,NJ,39.52418825,-74.45859213,RES1,3001,,16,NE,1936,1936,3101,1,1,1950.023115,1950.023115,3505,NO,18.39,32.43,3,2.05,6110,112.661988,121.919412,131.532064,137.371616,I,Above,Gable,0,5701,,25.40652279,0,0,,,,1,1,,0.35,nav,1,1936,1,, 14524,NJBF000087436,709 LINDBERGH AVE,Galloway,NJ,39.53361279,-74.46352129,RES1,3001,,16,NE,1921,1921,3101,1,1,1433.829996,1433.829996,3505,NO,24.16,30.39,3,8.89,6106,112.518882,121.718472,131.319693,137.130964,I,Above,Gable,0,5701,,27.27135119,0,0,,,,1,1,,0.03,nav,1,1921,1,, 14525,NJBF000083336,537 OLD SHORE RD,Galloway,NJ,39.44249443,-74.47886588,RES1,3001,,16,NE,1945,1945,3102,1,1,1497.863746,1497.863746,3505,NO,14.87,27.65,3,0.42,6112,112.787579,122.460691,132.113635,138.201226,I,Above,Flat,0,5701,,21.26002428,0,0,,,,1,1,,0.35,nav,1,1945,1,, 14526,NJBF000083413,737 VILLAGE DR,Galloway,NJ,39.44369499,-74.47016076,RES1,3001,,16,NE,1993,1993,3102,2,1,3506.651776,3506.651776,3505,NO,39.14,51.14,3,5.47,6112,112.955479,122.604354,132.271477,138.348147,I,Above,Gable,0,5701,,45.1421038,0,1.2,,,,1,1,,0.35,nav,1,1993,2,, 14527,NJBF000083198,718 BROOK LN,Galloway,NJ,39.4393955,-74.4753875,RES1,3001,,16,NE,1935,1935,3102,2,1,999.7875141,999.7875141,3505,NO,21.53,36.44,3,-1.5,6106,112.879916,122.555671,132.217636,138.314679,I,Above,Gable,0,5701,,28.98470037,0,0,,,,1,1,,0.03,nav,1,1935,2,, 14528,NJBF000084595,729 LILY LAKE RD,Galloway,NJ,39.46622228,-74.45636157,RES1,3001,,16,NE,1955,1955,3102,1,1,1591.183046,1591.183046,3505,NO,16.65,24.31,3,-2.81,6112,113.072808,122.613747,132.283367,138.272846,I,Above,Gable,0,5701,,20.47878914,0,0,,,,1,1,,0.35,nav,1,1955,1,, 14529,NJBF000084013,740 CHANESE LN,Galloway,NJ,39.45308495,-74.46003947,RES1,3001,,16,NE,1957,1957,3102,1,1,1220.748531,1220.748531,3505,NO,12.49,26.99,3,0.81,6110,113.092081,122.687862,132.363945,138.39814,I,Above,Gable,0,5701,,19.73712858,0,0,,,,1,1,,0.35,nav,1,1957,1,, 14530,NJBF000084585,733 LILY LAKE RD,Galloway,NJ,39.4660902,-74.45574192,RES1,3001,,NaN,NE,1969,0,3102,1,1,15331.12454,15331.12454,3505,NO,17.04,23.15,3,3.29,6112,113.085843,122.626469,132.297262,138.286611,I,Above,Hip,0,5701,,20.09836109,0,0,,,,1,1,,1,nav,1,1969,1,, 14531,NJBF000087426,703 LINDBERGH AVE,Galloway,NJ,39.5334076,-74.46374204,RES1,3001,,16,NE,1946,1946,3101,1,1,994.8100119,994.8100119,3505,NO,18.18,30.71,3,6.65,6106,112.516251,121.717009,131.31826,137.129574,I,Above,Flat,0,5701,,24.44482772,0,0,,,,1,1,,0.03,nav,1,1946,1,, 14532,NJBF000083319,602 SHARSWOOD AVE,Galloway,NJ,39.44217418,-74.47988146,RES1,3001,,16,NE,1921,1921,3102,1,1,1793.41044,1793.41044,3505,NO,16.44,29.56,3,4.58,6112,112.769206,122.445908,132.09738,138.186776,I,Above,Gable,0,5701,,22.99913923,0,0,,,,1,1,,0.35,nav,1,1921,1,, 14533,NJBF000084071,724 CHANESE LN,Galloway,NJ,39.4541923,-74.46190885,RES1,3001,,16,NE,1957,1957,3102,1,1,1738.764801,1738.764801,3505,NO,23.52,32.54,3,8.6,6110,113.046948,122.642107,132.313829,138.346263,I,Above,Gable,0,5701,,28.02958794,0,0,,,,1,1,,0.35,nav,1,1957,1,, 14534,NJBF000086149,134 N NEW YORK RD,Galloway,NJ,39.51020554,-74.45718105,RES1,3001,,16,NE,1988,1988,3102,1,1,3031.755213,3031.755213,3507,NO,18.42,32.96,1,1.52,6112,112.772974,122.108504,131.735197,137.607503,I,Above,Gable,0,5701,,25.68752433,0,0,,,,1,1,,0.35,nav,1,1988,1,, 14535,NJBF000083456,734 BELMAR AVE,Galloway,NJ,39.44506287,-74.46909531,RES1,3001,,16,NE,1925,1925,3102,1,1,1716.167237,1716.167237,3505,NO,14.92,23.25,3,3.92,6106,112.967306,122.609113,132.276828,138.347585,I,Above,Hip,0,5701,,19.08739305,0,0,,,,1,1,,0.03,nav,1,1925,1,, 14536,NJBF000084645,223 S NEW YORK RD,Galloway,NJ,39.467182,-74.4642845,RES1,3001,101,15,NE,1906,1906,3102,1,1,661.7350247,661.7350247,3505,NO,14.71,21.59,3,4.04,6112,112.911718,122.459652,132.115262,138.106985,I,Above,Flat,0,5701,,18.14872583,0,0,,,,1,1,,0.15,nav,1,1906,1,, 14537,NJBF000083061,636 S NEW YORK RD,Galloway,NJ,39.4362873,-74.48014796,RES1,3001,,17,NE,1961,1961,3102,2,1,1831.891978,1831.891978,3507,NO,27.45,42.16,1,-0.64,6110,112.80471,122.503004,132.159585,138.272028,I,Above,Flat,0,5701,,34.80357952,0,1.2,,,,1,1,,1,nav,1,1961,2,, 14538,NJBF000083315,604 SHARSWOOD AVE,Galloway,NJ,39.44208353,-74.47951726,RES1,3001,,16,NE,1926,1926,3102,2,1,1439.869617,1439.869617,3505,NO,41.94,48.05,3,7.69,6110,112.777199,122.453364,132.105553,138.195095,I,Above,Gable,0,5701,,44.99772545,0,0,,,,1,1,,0.35,nav,1,1926,2,, 14539,NJBF000083351,744 VILLAGE DR,Galloway,NJ,39.44289026,-74.46934107,RES1,3001,,16,NE,1994,1994,3102,2,1,541.832473,541.832473,3505,NO,39.53,47.76,3,6.36,6106,112.97785,122.627647,132.296993,138.375831,I,Above,Flat,0,5701,,43.64526694,0,0,,,,1,1,,0.03,nav,1,1994,2,, 14540,NJBF000083958,746 CHANESE LN,Galloway,NJ,39.4525124,-74.45938893,RES1,3001,,16,NE,1958,1958,3102,1,1,1992.577997,1992.577997,3505,NO,14.23,22.48,3,-0.08,6106,113.109161,122.705785,132.383579,138.418946,I,Above,Gable,0,5701,,18.35374896,0,0,,,,1,1,,0.03,nav,1,1958,1,, 14541,NJBF000084089,716 CHANESE LN,Galloway,NJ,39.45465627,-74.46291177,RES1,3001,,16,NE,1957,1957,3102,2,1,861.7672417,861.7672417,3505,NO,29.71,41.36,3,8.2,6112,113.023725,122.618974,132.288498,138.320324,I,Above,Gable,0,5701,,35.53307271,0,0,,,,1,1,,0.35,nav,1,1957,2,, 14542,NJBF000084094,716 CHANESE LN,Galloway,NJ,39.45475049,-74.4628685,RES1,3001,,16,NE,1957,1957,3102,2,1,897.5559816,897.5559816,3505,NO,34.82,42.27,3,5.49,6112,113.023943,122.618768,132.288279,138.319753,I,Above,Hip,0,5701,,38.54615476,0,0,,,,1,1,,0.35,nav,1,1957,2,, 14543,NJBF000083235,601 S NEW YORK RD,Galloway,NJ,39.44003741,-74.47924304,RES1,3001,,16,NE,1890,1890,3102,2,2,1547.445256,1547.445256,3505,NO,42.87,50.1,3,8.81,6112,112.79689,122.479803,132.134387,138.231676,I,Above,Gable,0,5701,,46.48369237,0,0,,,,1,1,,0.35,nav,1,1890,2,, 14544,NJBF000089350,849 CLARKS LANDING RD,Galloway,NJ,39.56556967,-74.54241057,RES1,3001,,16,NE,1984,1984,3102,2,1,1288.001262,1288.001262,3504,NO,29.14,36.63,-4,0,6112,111.080983,120.03115,129.63212,135.026195,I,Above,Gable,0,5701,,32.88288353,0,0,,,,1,1,,0.15,nav,1,1984,2,, 14545,NJBF000083382,738 VILLAGE DR,Galloway,NJ,39.44327733,-74.47013927,RES1,3001,,16,NE,1992,1992,3102,2,1,3215.964228,3215.964228,3505,NO,38.73,46.21,3,8.73,6112,112.958905,122.609167,132.276726,138.354898,I,Above,Gable,0,5701,,42.47078865,0,1.2,,,,1,1,,0.35,nav,1,1992,2,, 14546,NJBF000083424,725 VILLAGE DR,Galloway,NJ,39.44390825,-74.47176588,RES1,3001,,16,NE,1992,1992,3102,2,1,2371.81767,2371.81767,3505,NO,47.51,60.97,3,8.62,6112,112.921483,122.573192,132.237273,138.314549,I,Above,Hip,0,5701,,54.23863794,0,1.2,,,,1,1,,0.35,nav,1,1992,2,, 14547,NJBF000084066,726 CHANESE LN,Galloway,NJ,39.45404687,-74.46165125,RES1,3001,,16,NE,1957,1957,3102,1,1,994.9054595,994.9054595,3505,NO,12.63,18.25,3,1.01,6110,113.05311,122.648334,132.320647,138.353313,I,Above,Hip,0,5701,,15.43771489,0,0,,,,1,1,,0.35,nav,1,1957,1,, 14548,NJBF000087135,343 N NEW YORK RD,Galloway,NJ,39.52564059,-74.46280226,RES1,3001,,16,NE,1978,1978,3101,2,1,1850.273592,1850.273592,3505,NO,38,51.54,3,6.4,6106,112.578799,121.826683,131.43481,137.265195,I,Above,Gable,0,5701,,44.77113008,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 14549,NJBF000087018,316 KINGS HIGHWAY,Galloway,NJ,39.52400507,-74.4587293,RES1,3001,,16,NE,1936,1936,3101,1,1,1152.793056,1152.793056,3505,NO,19.41,29.1,3,2.49,6110,112.660671,121.919117,131.531821,137.371591,I,Above,Gable,0,5701,,24.25569413,0,0,,,,1,1,,0.35,nav,1,1936,1,, 14550,NJBF000083467,730 BELMAR AVE,Galloway,NJ,39.44527226,-74.46978907,RES1,3001,,16,NE,1900,1900,3102,2,1,1208.38265,1208.38265,3505,NO,28.33,41.72,3,-0.08,6106,112.951807,122.594386,132.260675,138.331296,I,Above,Flat,0,5701,,35.02554321,0,0,,,,1,1,,0.03,nav,1,1900,2,, 14551,NJBF000083203,605 S NEW YORK RD,Galloway,NJ,39.4395005,-74.47985249,RES1,3001,,16,NE,1860,1860,3102,2,1,1013.049563,1013.049563,3505,NO,38.58,44.5,3,0.42,6112,112.788219,122.474543,132.128569,138.228306,I,Above,Gable,0,5701,,41.54094626,0,0,,,,1,1,,0.35,nav,1,1860,2,, 14552,NJBF000086561,813 MOTTS CREEK RD,Galloway,NJ,39.51505074,-74.44722464,RES1,3001,,15,NE,1956,1956,3102,1,1,815.2630301,815.2630301,3507,NO,18.93,26.11,1,0.69,6106,112.923019,122.233394,131.865682,137.733918,I,Above,Gable,0,5701,,22.52133089,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14553,NJBF000086607,852 MOTTS CREEK RD,Galloway,NJ,39.515695,-74.439706,RES1,3001,,16,NE,1956,1956,3102,1,1,961.7150571,961.7150571,3507,NO,15.11,20.52,1,0.63,6106,113.055288,122.364278,132.003823,137.873732,I,Above,Gable,0,5701,,17.81360586,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14554,NJBF000086624,852 MOTTS CREEK RD,Galloway,NJ,39.51607952,-74.43955882,RES1,3001,,16,NE,1956,1956,3102,1,1,874.6333483,874.6333483,3507,NO,15.66,26.73,1,1.56,6106,113.055396,122.362485,132.001718,137.871055,I,Above,Gable,0,5701,,21.19140931,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14555,NJBF000079486,440 LAFAYETTE BLVD,Galloway,NJ,39.4113519,-74.37225889,RES1,3001,,16,NE,1983,1983,3102,1,1,1389.304161,1389.304161,3507,NO,13.88,19.49,1,-0.72,6106,115.247519,124.762217,134.665495,140.513368,I,Above,Hip,0,5701,,16.68847231,0,0,,,,1,1,,0.03,nav,1,1983,1,, 14556,NJBF000079549,514 W SHORE DR,Galloway,NJ,39.41164279,-74.37567502,RES1,3001,,17,NE,1987,1987,3103,2,1,2516.599078,2516.599078,3505,NO,30.33,43.1,3,0.66,6106,115.17523,124.694488,134.589176,140.4549,I,Above,Hip,0,5701,,36.71451421,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 14557,NJBF000082193,228 N SHORE ROAD,Galloway,NJ,39.42767932,-74.49605059,RES1,3001,,17,NE,1927,1927,3102,1,1,689.0088322,689.0088322,3505,NO,19.81,33.7,3,2.21,6112,112.537056,122.309959,131.947916,138.10174,I,Above,Gable,0,5701,,26.7510002,0,0,,,,1,1,,0.35,nav,1,1927,1,, 14558,NJBF000079987,114 10TH STREET NO,Galloway,NJ,39.41357493,-74.35882265,RES1,3001,,15,NE,1945,1945,3102,1,1,1266.553644,1266.553644,3507,NO,18.34,31.86,1,-0.08,6106,115.495187,124.996038,134.931293,140.699018,I,Above,Gable,0,5701,,25.09844771,0,0,,,,1,1,,0.03,nav,1,1945,1,, 14559,NJBF000080880,1326 OUIMET RD,Galloway,NJ,39.41669143,-74.37561585,RES1,3001,,15,NE,1984,1984,3103,1,1,1363.524161,1363.524161,3505,NO,18.1,27.99,3,6.41,6106,115.124601,124.645029,134.53557,140.39098,I,Above,Gable,0,5701,,23.04665042,0,0,,,,1,1,,0.03,nav,1,1984,1,, 14560,NJBF000080128,555 LAFAYETTE BLVD,Galloway,NJ,39.41401665,-74.37716334,RES1,3001,,16,NE,1964,1964,3103,1,1,1661.559947,1661.559947,3505,NO,14.04,28.28,3,0.73,6106,115.120572,124.642462,134.531583,140.400373,I,Above,Gable,0,5701,,21.16207719,0,0,,,,1,1,,0.03,nav,1,1964,1,, 14561,NJBF000081691,1227 E SHORE DR,Galloway,NJ,39.421951,-74.3649095,RES1,3001,,16,NE,1957,1957,3102,1,1,1625.376489,1625.376489,3507,NO,14.65,27.67,1,2.18,6106,115.2869,124.796861,134.70886,140.497339,I,Above,Gable,0,5701,,21.16177814,0,0,,,,1,1,,0.03,nav,1,1957,1,, 14562,NJBF000076240,411 31ST STREET SO,Galloway,NJ,39.39269339,-74.38280846,RES1,3001,,17,NE,1945,1945,3102,2,1,3191.460009,3191.460009,3507,YES,21.4,29.16,1,-0.29,6106,115.231184,124.750104,134.639485,140.58634,I,Above,Gable,0,5701,,25.27869663,0,1.2,,,,1,1,,0.03,nav,1,1945,2,, 14563,NJBF000080907,707 SHERIDAN BLVD,Galloway,NJ,39.41681564,-74.3651361,RES1,3001,,17,NE,1972,1972,3102,2,1,1555.364769,1555.364769,3507,NO,26.72,36.38,1,2.74,6106,115.334795,124.843489,134.759856,140.558195,I,Above,Gable,0,5701,,31.55318996,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14564,NJBF000079313,200 5TH STREET NO,Galloway,NJ,39.41060343,-74.36134104,RES1,3001,,45,NE,1985,1985,3102,2,2,1552.626689,1552.626689,3507,NO,33.33,40.92,1,0.45,6106,115.475743,124.977267,134.90847,140.696151,I,Above,Gable,0,5701,,37.12864936,0,0,,,,1,1,,0.03,nav,1,1985,2,, 14565,NJBF000079090,201 ROOSEVELT BLVD SO,Galloway,NJ,39.40947688,-74.36401371,RES1,3001,,15,NE,1955,1955,3102,1,1,1033.754912,1033.754912,3507,NO,14.52,21.63,1,1.07,6106,115.433757,124.937505,134.862783,140.668027,I,Above,Gable,0,5701,,18.0748375,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14566,NJBF000080779,1100 JENKINS PKWY,Galloway,NJ,39.41626697,-74.36026466,RES1,3001,,16,NE,1975,1975,3102,1,1,1616.748442,1616.748442,3507,NO,10.6,17.79,1,-0.23,6106,115.438282,124.941984,134.871207,140.642773,I,Above,Hip,0,5701,,14.19265325,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 14567,NJBF000081785,1311 E SHORE DR,Galloway,NJ,39.42290588,-74.36513174,RES1,3001,,16,NE,1948,1948,3102,2,1,2102.881092,2102.881092,3507,YES,33.48,45.91,1,-0.35,6106,115.272758,124.783096,134.693555,140.481734,I,Above,Hip,0,5701,,39.69524438,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 14568,NJBF000079333,307 E BEACH AVE,Galloway,NJ,39.41069213,-74.36267193,RES1,3001,,45,NE,1985,1985,3102,2,3,1511.407328,1511.407328,3507,NO,36.91,48.61,1,-0.73,6106,115.448024,124.951044,134.878794,140.674039,I,Above,Hip,0,5701,,42.76383066,0,0,,,,1,1,,0.03,nav,1,1985,2,, 14569,NJBF000079311,307 E BEACH AVE,Galloway,NJ,39.41059996,-74.36256051,RES1,3001,,45,NE,1985,1985,3102,2,3,697.9807226,697.9807226,3507,NO,28.43,41.77,1,-0.84,6106,115.451225,124.954065,134.882168,140.676939,I,Above,Hip,0,5701,,35.09943646,0,0,,,,1,1,,0.03,nav,1,1985,2,, 14570,NJBF000079665,504 E EVANS BLVD,Galloway,NJ,39.4122247,-74.36273313,RES1,3001,,16,NE,1967,1967,3102,1,1,1577.950074,1577.950074,3507,NO,14.45,24.03,1,2.15,6106,115.430742,124.934751,134.861132,140.653945,I,Above,Hip,0,5701,,19.24285331,0,0,,,,1,1,,0.03,nav,1,1967,1,, 14571,NJBF000082285,612 OHIO AVE,Galloway,NJ,39.42862807,-74.51018189,RES1,3001,,17,NE,1930,1930,3102,2,1,1839.182457,1839.182457,3505,NO,39.23,53.79,3,4.44,6112,112.238497,122.051609,131.665229,137.812987,I,Above,Gable,0,5701,,46.510935,0,0,,,,1,1,,0.35,nav,1,1930,2,, 14572,NJBF000079836,21 QUAY BLVD,Galloway,NJ,39.413054,-74.36584745,RES1,3001,,16,NE,1970,1970,3102,2,1,1545.820103,1545.820103,3507,YES,27.2,32.32,1,1.76,6106,115.359391,124.867225,134.785065,140.594119,I,Above,Gable,0,5701,,29.75888732,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 14573,NJBF000080436,204 14TH STREET NO,Galloway,NJ,39.41505425,-74.35575991,RES1,3001,,43,NE,1976,1976,3102,2,2,1236.637285,1236.637285,3507,NO,21.99,36.63,1,-0.37,6106,115.541108,125.040067,134.981969,140.729145,I,Above,Hip,0,5701,,29.31052553,0,0,,,,1,1,,0.03,nav,1,1976,2,, 14574,NJBF000079847,,Galloway,NJ,39.41310006,-74.36069379,RES1,3001,,NaN,NE,1969,0,3102,2,1,2299.185631,2299.185631,3507,NO,38.03,47.95,1,2.64,6106,115.462593,124.965,134.895857,140.675325,I,Above,Hip,0,5701,,42.98908635,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14575,NJBF000076917,,Galloway,NJ,39.39539453,-74.38941607,RES3D,3001,,NaN,ME,1969,0,3301,1,1,6113.21514,6113.21514,3507,NO,21.32,27.5,1,1.82,6106,115.065634,124.599094,134.471842,140.447072,I,Above,Flat,0,NaN,,24.40933519,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14576,NJBF000076553,333 31ST STREET SO,Galloway,NJ,39.3938697,-74.38414875,RES1,3001,,18,NE,2005,2005,3102,3,1,2500.625325,2500.625325,3507,NO,41.17,50.59,1,-0.96,6106,115.190734,124.713135,134.59884,140.550067,I,Above,Hip,0,5701,,45.88135298,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 14577,NJBF000078913,124 4TH STREET SO,Galloway,NJ,39.40830989,-74.36768964,RES1,3001,,16,NE,1955,1955,3102,2,1,990.7061341,990.7061341,3507,NO,24.18,33.67,1,2.53,6106,115.371818,124.879214,134.796127,140.624594,I,Above,Gable,0,5701,,28.92373504,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14578,NJBF000079417,201 LAFAYETTE PLACE,Galloway,NJ,39.41105394,-74.36683885,RES1,3001,,15,NE,1949,1949,3102,1,1,1432.942662,1432.942662,3507,NO,18.96,28.91,1,0.79,6106,115.360228,124.868172,134.785136,140.60351,I,Above,Gable,0,5701,,23.93726025,0,0,,,,1,1,,0.03,nav,1,1949,1,, 14579,NJBF000078551,153 10TH STREET SO,Galloway,NJ,39.40613982,-74.37184665,RES1,3001,,17,NE,1950,1950,3102,2,1,1668.888044,1668.888044,3505,NO,25.3,30.81,3,-1.53,6106,115.310486,124.821973,134.730124,140.586276,I,Above,Hip,0,5701,,28.05664619,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14580,NJBF000080373,,Galloway,NJ,39.41487673,-74.35688286,RES3D,3001,,NaN,ME,1969,0,3301,2,1,5962.908736,5962.908736,3507,NO,35.19,41.9,1,2.44,6106,115.52048,125.020322,134.959469,140.713588,I,Above,Gable,0,NaN,,38.54087541,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14581,NJBF000081542,1018 N SHORE DR,Galloway,NJ,39.42000063,-74.37472387,RES1,3001,,16,NE,1955,1955,3102,2,1,2169.486546,2169.486546,3507,NO,36.87,50.8,1,1.26,6106,115.109082,124.628809,134.518439,140.362952,I,Above,Flat,0,5701,,43.83083733,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14582,NJBF000080979,13 MACDERMOTT PLACE,Galloway,NJ,39.41708404,-74.36612242,RES1,3001,,18,NE,2002,2002,3102,2,1,1578.142744,1578.142744,3507,NO,29.5,35.53,1,2.77,6106,115.312205,124.822006,134.735651,140.539028,I,Above,Hip,0,5701,,32.51580908,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 14583,NJBF000080599,29 KIRKWOOD CIRCLE,Galloway,NJ,39.41559533,-74.36270369,RES1,3001,,17,NE,1989,1989,3102,2,1,1919.263818,1919.263818,3507,NO,29.12,40.45,1,-0.61,6106,115.396281,124.902015,134.825621,140.612326,I,Above,Flat,0,5701,,34.78678411,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 14584,NJBF000080938,22 VARDON RD,Galloway,NJ,39.41694582,-74.37306035,RES1,3001,,18,NE,2002,2002,3102,2,1,1627.237425,1627.237425,3507,NO,27.07,41.61,1,2.35,6106,115.173705,124.691111,134.587667,140.429081,I,Above,Flat,0,5701,,34.33875911,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 14585,NJBF000080805,3 MACDERMOTT PLACE,Galloway,NJ,39.41637932,-74.36595485,RES1,3001,,17,NE,1997,1997,3102,2,1,1359.472086,1359.472086,3507,NO,39.65,51.26,1,2.01,6106,115.322816,124.832191,134.746893,140.550576,I,Above,Gable,0,5701,,45.45393503,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 14586,NJBF000081066,28 MACDERMOTT PLACE,Galloway,NJ,39.41742697,-74.36678572,RES1,3001,,16,NE,1984,1984,3102,2,1,1524.380078,1524.380078,3507,NO,23.47,36.04,1,2.27,6106,115.295322,124.805924,134.71759,140.524052,I,Above,Gable,0,5701,,29.7530949,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14587,NJBF000080611,130 WASHINGTON DR,Galloway,NJ,39.4156115,-74.36927992,RES1,3001,,16,NE,1970,1970,3102,1,1,1212.648851,1212.648851,3507,NO,17.69,31.73,1,2.41,6106,115.263716,124.776427,134.683507,140.506965,I,Above,Hip,0,5701,,24.7120446,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14588,NJBF000080600,6 VARDON RD,Galloway,NJ,39.41559878,-74.37282176,RES1,3001,,16,NE,1984,1984,3102,1,1,1417.869339,1417.869339,3507,NO,16.4,25.49,1,-0.67,6106,115.192293,124.70911,134.607452,140.450135,I,Above,Hip,0,5701,,20.94463642,0,0,,,,1,1,,0.03,nav,1,1984,1,, 14589,NJBF000080517,19 KIRKWOOD CIRCLE,Galloway,NJ,39.415314,-74.363229,RES1,3001,,17,NE,1987,1987,3102,1,1,1482.287405,1482.287405,3507,NO,19.94,25.43,1,0.58,6106,115.38864,124.89477,134.817292,140.607474,I,Above,Flat,0,5701,,22.68341642,0,0,,,,1,1,,0.03,nav,1,1987,1,, 14590,NJBF000078552,222 6TH STREET SO,Galloway,NJ,39.40614019,-74.36803996,RES1,3001,,43,NE,1955,1955,3102,2,2,1471.773564,1471.773564,3505,NO,23.41,35.48,3,-1.45,6106,115.387658,124.894096,134.811667,140.646421,I,Above,Gable,0,5701,,29.44352569,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14591,NJBF000081258,43 VARDON RD,Galloway,NJ,39.4183452,-74.37287037,RES1,3001,,17,NE,2000,2000,3102,2,1,1489.225395,1489.225395,3507,NO,32.63,39.42,1,1.71,6106,115.163295,124.680733,134.576469,140.414273,I,Above,Gable,0,5701,,36.02455702,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 14592,NJBF000081107,211 LINCOLN DR,Galloway,NJ,39.41756584,-74.37093006,RES1,3001,,17,NE,1976,1976,3102,2,1,2166.621612,2166.621612,3507,NO,29.97,42.29,1,1.3,6106,115.21039,124.725492,134.626725,140.455578,I,Above,Flat,0,5701,,36.12654597,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 14593,NJBF000081457,1006 E SHORE DR,Galloway,NJ,39.41931729,-74.36280941,RES1,3001,,17,NE,1987,1987,3102,2,1,1370.976234,1370.976234,3507,NO,24.85,32.96,1,1.74,6106,115.355862,124.863191,134.783098,140.564137,I,Above,Flat,0,5701,,28.90371985,0,0,,,,1,1,,0.03,nav,1,1987,2,, 14594,NJBF000078574,,Galloway,NJ,39.40628101,-74.36582133,RES1,3001,,NaN,NE,2017,0,3102,2,1,749.569882,749.569882,3507,NO,23.79,31.93,1,-0.94,6106,115.431049,124.934778,134.857798,140.679588,I,Above,Hip,0,5701,,27.85793051,0,0,,,,1,1,,0.03,nav,1,2017,2,, 14595,NJBF000078540,,Galloway,NJ,39.40607045,-74.36576682,RES1,3001,,NaN,NE,1969,0,3102,2,1,1202.577164,1202.577164,3505,NO,26.62,40.54,3,4.92,6106,115.434379,124.93789,134.861189,140.683084,I,Above,Flat,0,5701,,33.57832184,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14596,NJBF000078538,,Galloway,NJ,39.406062,-74.3661585,RES1,3001,,NaN,NE,1955,0,3102,2,1,2703.475785,2703.475785,3505,NO,29.2,42.58,3,3.25,6106,115.42656,124.930553,134.852877,140.677036,I,Above,Hip,0,5701,,35.88646487,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14597,NJBF000078515,,Galloway,NJ,39.405931,-74.3660395,RES1,3001,,NaN,NE,1969,0,3102,2,1,2617.968247,2617.968247,3505,NO,30.98,38.16,3,0.6,6106,115.430357,124.934106,134.856817,140.680551,I,Above,Hip,0,5701,,34.56915498,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14598,NJBF000081494,1006 N SHORE DR,Galloway,NJ,39.41958828,-74.37585386,RES1,3001,,18,NE,2016,2016,3103,2,1,2530.120552,2530.120552,3505,NO,46.18,52.79,3,8.85,6106,115.090417,124.611426,134.498703,140.349853,I,Above,Hip,0,5701,,49.48781233,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 14599,NJBF000079402,,Galloway,NJ,39.41099397,-74.35842037,RES3D,3001,,NaN,E,1969,0,3303,3,1,7511.524138,7511.524138,3507,NO,56.27,62.4,1,2.79,6106,115.530323,125.029086,134.967463,140.737296,I,Above,Flat,0,NaN,,59.33494807,0,0,,,,1,1,,0.03,nav,1,1969,3,, 14600,NJBF000081554,215 HAGEN RD,Galloway,NJ,39.42012366,-74.36677081,RES1,3001,,17,NE,1988,1988,3102,2,1,1455.54403,1455.54403,3507,NO,25.45,38.23,1,1.09,6106,115.268074,124.779394,134.688543,140.490284,I,Above,Gable,0,5701,,31.84330974,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 14601,NJBF000081790,1408 E SHORE DR,Galloway,NJ,39.42297417,-74.36631532,RES1,3001,,19,NE,2004,2004,3102,3,1,1654.768875,1654.768875,3507,NO,41.91,47.39,1,1.94,6106,115.248344,124.759755,134.667179,140.461725,I,Above,Hip,0,5701,,44.6518475,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 14602,NJBF000078205,301 8TH STREET SO,Galloway,NJ,39.40363198,-74.36724435,REL1,3001,,NaN,ME,1969,0,3401,1,1,3016.317954,3016.317954,3507,NO,20.13,33.58,1,0.73,6110,115.430462,124.93403,134.855228,140.690506,I,Above,Gable,0,NaN,,26.85567338,0,0,,,,1,1,,1,nav,1,1969,1,, 14603,NJBF000078195,,Galloway,NJ,39.40344437,-74.36786653,RES1,3001,,NaN,NE,2003,0,3102,2,1,5007.512984,5007.512984,3502,NO,37.1,47.91,5,2.29,6110,115.419851,124.924099,134.843864,140.6831,I,Above,Hip,0,5701,,42.50290969,0,0,,,,1,1,,0.35,nav,1,2003,2,, 14604,NJBF000081379,904 N SHORE DR,Galloway,NJ,39.41894937,-74.37943047,RES1,3001,,NaN,NE,1950,1950,3103,6,1,1225.245026,1225.245026,3505,NO,113.68,127.12,3,3.32,6106,115.024477,124.54981,134.429057,140.299749,I,Above,Flat,0,5701,,120.3987577,0,0,,,,1,1,,0.03,nav,1,1950,6,, 14605,NJBF000077385,2700 BAYSHORE AVE,Galloway,NJ,39.39827615,-74.38493653,RES1,3001,,16,NE,1952,1952,3102,2,1,1289.62368,1289.62368,3507,NO,28.11,34.97,1,2.68,6106,115.12686,124.653971,134.535569,140.480254,I,Above,Flat,0,5701,,31.53708592,0,0,,,,1,1,,0.03,nav,1,1952,2,, 14606,NJBF000078563,231 6TH STREET SO,Galloway,NJ,39.40621322,-74.36737145,RES1,3001,,16,NE,1952,1952,3102,1,1,1887.979368,1887.979368,3505,NO,23.56,37.49,3,6.48,6106,115.400425,124.906055,134.825244,140.656044,I,Above,Hip,0,5701,,30.52618118,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 14607,NJBF000080633,32 11TH STREET NO,Galloway,NJ,39.4156925,-74.36021768,RES1,3001,,16,NE,1964,1964,3102,1,1,1371.676898,1371.676898,3507,NO,14.46,22.34,1,0.56,6106,115.445181,124.94855,134.878405,140.650664,I,Above,Hip,0,5701,,18.3990255,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 14608,NJBF000080644,2 MACDERMOTT PLACE,Galloway,NJ,39.41574147,-74.36594444,RES1,3001,,17,NE,1998,1998,3102,2,1,2022.168806,2022.168806,3507,NO,25.99,35.33,1,0.57,6106,115.329611,124.838732,134.75403,140.55878,I,Above,Hip,0,5701,,30.65768346,0,0,,,,1,1,,0.03,nav,1,1998,2,, 14609,NJBF000080566,128 WASHINGTON DR,Galloway,NJ,39.41547921,-74.36925394,RES1,3001,,16,NE,1970,1970,3102,2,1,1479.824126,1479.824126,3507,YES,33.98,45.34,1,1.52,6106,115.265598,124.778237,134.685497,140.509055,I,Above,Gable,0,5701,,39.66082955,0,0,,,,1,1,,0.03,nav,1,1970,2,, 14610,NJBF000081204,835 W SHORE DR,Galloway,NJ,39.41801953,-74.38166882,RES1,3001,,16,NE,1972,1972,3103,2,1,786.5394448,786.5394448,3505,YES,26.15,40.31,3,3.39,6106,114.988415,124.516643,134.391397,140.275209,I,Above,Gable,0,5701,,33.23324989,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14611,NJBF000080954,1339 OUIMET RD,Galloway,NJ,39.4170115,-74.37674899,RES1,3001,,17,NE,1991,1991,3103,2,1,1394.078089,1394.078089,3505,NO,41.21,56.07,3,2.61,6106,115.098391,124.620263,134.507764,140.368469,I,Above,Gable,0,5701,,48.64056995,0,0,,,,1,1,,0.03,nav,1,1991,2,, 14612,NJBF000081127,1300 VARDON RD,Galloway,NJ,39.41765042,-74.37348294,RES1,3001,,17,NE,1986,1986,3102,1,1,2138.573458,2138.573458,3507,NO,10.71,24.73,1,-0.6,6106,115.157981,124.676012,134.570888,140.413233,I,Above,Gable,0,5701,,17.71722296,0,0,,,,1,1,,0.03,nav,1,1986,1,, 14613,NJBF000081197,1313 VARDON RD,Galloway,NJ,39.41796847,-74.37426022,RES1,3001,,16,NE,1955,1955,3102,1,1,1635.081295,1635.081295,3507,NO,21.28,28.9,1,2.14,6106,115.139043,124.658032,134.550714,140.396569,I,Above,Hip,0,5701,,25.09040988,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14614,NJBF000078882,125 5TH STREET SO,Galloway,NJ,39.40812281,-74.36804108,RES1,3001,,43,NE,1955,1955,3102,2,2,1480.230468,1480.230468,3507,NO,30.28,37.89,1,2.51,6106,115.366688,124.874407,134.790581,140.621399,I,Above,Gable,0,5701,,34.08566505,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14615,NJBF000081113,920 SARAZEN RD,Galloway,NJ,39.417588,-74.37896079,RES1,3001,,16,NE,1964,1964,3103,1,1,1308.770841,1308.770841,3505,NO,15.18,20.38,3,-1.28,6106,115.047722,124.57243,134.454065,140.325043,I,Above,Gable,0,5701,,17.78120414,0,0,,,,1,1,,0.03,nav,1,1964,1,, 14616,NJBF000081794,1404 E SHORE DR,Galloway,NJ,39.42303886,-74.36595493,RES1,3001,,16,NE,1950,1950,3102,1,1,1317.214267,1317.214267,3507,NO,10.38,23.59,1,-0.13,6106,115.254909,124.766004,134.674261,140.466738,I,Above,Flat,0,5701,,16.98507072,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14617,NJBF000080582,202 MARSDEN PLACE,Galloway,NJ,39.4155296,-74.3817403,RES1,3001,,17,NE,1999,1999,3103,2,1,1963.776585,1963.776585,3505,NO,37.85,45.06,3,8.79,6106,115.012152,124.540417,134.417237,140.306496,I,Above,Gable,0,5701,,41.45060322,0,0,,,,1,1,,0.03,nav,1,1999,2,, 14618,NJBF000079561,439 LAFAYETTE BLVD,Galloway,NJ,39.41169234,-74.37204703,RES1,3001,,16,NE,1978,1978,3102,2,1,1457.365453,1457.365453,3507,NO,23.56,35.47,1,1.92,6106,115.248281,124.762851,134.66638,140.512426,I,Above,Gable,0,5701,,29.51224139,0,0,,,,1,1,,0.03,nav,1,1978,2,, 14619,NJBF000079574,,Galloway,NJ,39.41174813,-74.37221517,RES1,3001,,NaN,NE,1969,0,3102,2,1,1543.89654,1543.89654,3507,NO,34.58,46.99,1,0.13,6106,115.244298,124.759102,134.662173,140.509025,I,Above,Gable,0,5701,,40.78321157,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14620,NJBF000081078,722 SHERIDAN BLVD,Galloway,NJ,39.41746114,-74.36601115,RES1,3001,,17,NE,1985,1985,3102,2,1,1726.396323,1726.396323,3507,NO,37.33,48.8,1,0.62,6106,115.310568,124.820382,134.73396,140.536062,I,Above,Gable,0,5701,,43.06527213,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 14621,NJBF000080584,709 BOBBY JONES RD,Galloway,NJ,39.41553298,-74.38106771,RES1,3001,,16,NE,1972,1972,3103,2,1,1555.074252,1555.074252,3505,NO,32.18,37.23,3,2.19,6106,115.025784,124.55313,134.431551,140.317401,I,Above,Flat,0,5701,,34.70579641,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14622,NJBF000079404,504 RISLEY RD,Galloway,NJ,39.4109976,-74.3737184,RES1,3001,,16,NE,1981,1981,3102,1,1,1831.571784,1831.571784,3507,NO,18.86,32.6,1,2.28,6106,115.221625,124.738061,134.638037,140.494546,I,Above,Flat,0,5701,,25.72783341,0,0,,,,1,1,,0.03,nav,1,1981,1,, 14623,NJBF000079422,407 E BEACH AVE,Galloway,NJ,39.41106909,-74.36183502,RES1,3001,,15,NE,1955,1955,3102,1,1,1139.924871,1139.924871,3507,NO,17.04,26.79,1,1.44,6106,115.460913,124.963265,134.892848,140.682557,I,Above,Hip,0,5701,,21.91270882,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14624,NJBF000080133,115 LINCOLN DR,Galloway,NJ,39.41402908,-74.36982707,RES1,3001,,16,NE,1970,1970,3102,1,1,2347.680232,2347.680232,3507,NO,12.97,27.24,1,1.73,6106,115.268979,124.781765,134.688854,140.518252,I,Above,Hip,0,5701,,20.10684043,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14625,NJBF000076285,3010 OCEAN AVE,Galloway,NJ,39.39284787,-74.38304997,RES1,3001,,21,NE,2008,2008,3102,3,1,1401.554331,1401.554331,3507,NO,45.41,52.4,1,-0.06,6106,115.22451,124.744011,134.632757,140.580548,I,Above,Hip,0,5701,,48.90577376,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 14626,NJBF000076299,3004 OCEAN AVE,Galloway,NJ,39.39289483,-74.38294175,RES1,3001,,20,NE,2007,2007,3102,3,1,2011.26925,2011.26925,3507,NO,58.72,66.95,1,2.24,6106,115.226216,124.745562,134.634539,140.581629,I,Above,Flat,0,5701,,62.83534947,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 14627,NJBF000081370,206 HAGEN RD,Galloway,NJ,39.41889951,-74.36712043,RES1,3001,,17,NE,1994,1994,3102,2,1,2240.665237,2240.665237,3507,NO,35.24,42.87,1,1.78,6106,115.273531,124.784901,134.694355,140.5001,I,Above,Hip,0,5701,,39.05387905,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 14628,NJBF000080603,605 SHERIDAN BLVD,Galloway,NJ,39.41559943,-74.36494176,RES1,3001,,16,NE,1970,1970,3102,1,1,1730.614052,1730.614052,3507,NO,17.44,28.38,1,-0.66,6106,115.351244,124.859256,134.7772,140.576579,I,Above,Hip,0,5701,,22.9107643,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14629,NJBF000080493,,Galloway,NJ,39.41525817,-74.35860849,RES1,3001,,NaN,NE,1969,0,3102,2,1,1514.138678,1514.138678,3507,NO,34.4,48.11,1,-0.11,6106,115.481964,124.983597,134.917964,140.681587,I,Above,Gable,0,5701,,41.25278824,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14630,NJBF000080738,12 VARDON RD,Galloway,NJ,39.41611189,-74.37293216,RES1,3001,,16,NE,1985,1985,3102,1,1,1375.110127,1375.110127,3507,NO,13.62,27.92,1,1.72,6106,115.184815,124.701888,134.599506,140.441807,I,Above,Flat,0,5701,,20.77051921,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14631,NJBF000080579,121 WASHINGTON DR,Galloway,NJ,39.41551424,-74.36873112,RES1,3001,,16,NE,1969,1969,3102,1,1,1873.385941,1873.385941,3507,NO,17.77,30.07,1,2.57,6106,115.275789,124.787853,134.696383,140.517003,I,Above,Hip,0,5701,,23.91858629,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14632,NJBF000080725,60 KIRKWOOD CIRCLE,Galloway,NJ,39.41602305,-74.36369075,RES1,3001,,17,NE,1996,1996,3102,1,1,1521.689008,1521.689008,3507,NO,17.16,27.22,1,0.48,6106,115.372023,124.878935,134.799662,140.591237,I,Above,Gable,0,5701,,22.19046033,0,0,,,,1,1,,0.03,nav,1,1996,1,, 14633,NJBF000078906,218 ROOSEVELT BLVD SO,Galloway,NJ,39.4082651,-74.36360985,RES1,3001,,20,NE,2007,2007,3102,3,1,2431.529342,2431.529342,3507,NO,34.04,41.91,1,-0.84,6106,115.454681,124.957155,134.884347,140.689545,I,Above,Gable,0,5701,,37.97732093,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 14634,NJBF000078893,220 ROOSEVELT BLVD SO,Galloway,NJ,39.40817816,-74.36349356,RES1,3001,,17,NE,2005,2005,3102,2,1,1146.100912,1146.100912,3507,NO,23.53,35.78,1,-0.72,6106,115.457939,124.960218,134.887766,140.692458,I,Above,Gable,0,5701,,29.65699471,0,0,,,,1,1,,0.03,nav,1,2005,2,, 14635,NJBF000079416,209 6TH STREET NO,Galloway,NJ,39.41105247,-74.35995935,RES1,3001,,47,NE,1955,1955,3102,2,2,1585.338964,1585.338964,3507,NO,34.29,41.75,1,2.62,6106,115.498808,124.999177,134.933561,140.712356,I,Above,Gable,0,5701,,38.01943807,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14636,NJBF000081354,858 W SHORE DR,Galloway,NJ,39.41878198,-74.3808912,RES1,3001,,16,NE,1972,1972,3103,3,1,1963.889592,1963.889592,3505,YES,60.96,68.01,3,5.04,6106,114.996535,124.523728,134.399632,140.27802,I,Above,Flat,0,5701,,64.48544715,0,1.1,,,,1,1,,0.03,nav,1,1972,3,, 14637,NJBF000080891,1322 OUIMET RD,Galloway,NJ,39.41674511,-74.37529444,RES1,3001,,17,NE,1985,1985,3103,2,1,2026.498289,2026.498289,3505,NO,37.56,44.41,3,2.19,6106,115.130569,124.650611,134.541888,140.395504,I,Above,Gable,0,5701,,40.98631338,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 14638,NJBF000080728,20 MACDONALD PLACE,Galloway,NJ,39.416027,-74.367311,RES1,3001,,16,NE,1984,1984,3102,1,1,1527.75205,1527.75205,3507,NO,13.18,26.72,1,0.6,6106,115.299134,124.809819,134.721438,140.533289,I,Above,Gable,0,5701,,19.9519052,0,0,,,,1,1,,0.03,nav,1,1984,1,, 14639,NJBF000080850,137 WASHINGTON DR,Galloway,NJ,39.41658198,-74.36906795,RES1,3001,,18,NE,1969,1969,3102,2,1,1302.868826,1302.868826,3507,YES,22.51,29.84,1,0.74,6106,115.258018,124.770798,134.67754,140.498066,I,Above,Flat,0,5701,,26.17762829,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14640,NJBF000080911,34 MACDONALD PLACE,Galloway,NJ,39.41683895,-74.36743415,RES1,3001,,17,NE,1996,1996,3102,2,1,1435.694605,1435.694605,3507,NO,34.27,43.88,1,0.31,6106,115.288309,124.799402,134.709984,140.521066,I,Above,Hip,0,5701,,39.07568132,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 14641,NJBF000080764,1308 RAY AVE,Galloway,NJ,39.416209,-74.37392749,RES1,3001,,17,NE,1990,1990,3102,2,1,2299.648151,2299.648151,3507,NO,32.72,41.77,1,2.08,6106,115.1637,124.681985,134.577078,140.424498,I,Above,Gable,0,5701,,37.24417283,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 14642,NJBF000081275,904 LAFAYETTE BLVD,Galloway,NJ,39.41843825,-74.38027711,RES1,3001,,16,NE,1972,1972,3103,2,1,1902.479152,1902.479152,3505,NO,24.97,32.33,3,2.46,6106,115.012452,124.538863,134.416556,140.292536,I,Above,Gable,0,5701,,28.64808706,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 14643,NJBF000078755,111 W BRIGANTINE AVE,Galloway,NJ,39.40734401,-74.36398427,RES1,3001,,43,NE,1950,1950,3102,2,2,810.2254945,810.2254945,3507,NO,37.04,47.27,1,1.07,6106,115.456878,124.959142,134.886046,140.695168,I,Above,Gable,0,5701,,42.15125198,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 14644,NJBF000079868,403 SHERIDAN PLACE,Galloway,NJ,39.41315816,-74.36526315,RES1,3001,,NaN,NE,1957,0,3102,2,1,1433.256787,1433.256787,3507,NO,26.77,33.37,1,0.4,6106,115.370077,124.877319,134.796542,140.602106,I,Above,Flat,0,5701,,30.07282438,0,0,,,,1,1,,0.03,nav,1,1957,2,, 14645,NJBF000079855,605 E EVANS BLVD,Galloway,NJ,39.41311261,-74.36229066,RES1,3001,,17,NE,2015,2015,3102,3,1,1556.165716,1556.165716,3507,NO,51.24,57.12,1,1.29,6106,115.430364,124.934411,134.861188,140.649869,I,Above,Hip,0,5701,,54.18165476,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 14646,NJBF000079846,904 E BEACH AVE,Galloway,NJ,39.41309665,-74.35840184,RES1,3001,,15,NE,1950,1950,3102,1,1,740.4511589,740.4511589,3507,NO,20.28,32.23,1,0.78,6106,115.508625,125.008775,134.94551,140.711581,I,Above,Gable,0,5701,,26.25400805,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14647,NJBF000079832,202 10TH STREET NO,Galloway,NJ,39.41303097,-74.35813591,RES1,3001,,15,NE,1952,1952,3102,1,1,988.9008115,988.9008115,3507,NO,19.75,29.36,1,1.23,6106,115.51465,125.014502,134.951976,140.716594,I,Above,Flat,0,5701,,24.55602031,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14648,NJBF000076593,308 30TH STREET SO,Galloway,NJ,39.39403114,-74.38381847,RES1,3001,,15,NE,1952,1952,3102,1,1,2724.834948,2724.834948,3507,NO,17.55,27.8,1,0.82,6106,115.195788,124.717717,134.60412,140.55317,I,Above,Gable,0,5701,,22.67354823,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 14649,NJBF000079839,1 QUAY BLVD,Galloway,NJ,39.413064,-74.367628,RES1,3001,,16,NE,1968,1968,3102,2,1,1189.484994,1189.484994,3507,YES,35.71,49.62,1,-0.4,6106,115.323368,124.833214,134.746585,140.565614,I,Above,Gable,0,5701,,42.66667973,0,0,,,,1,1,,0.03,nav,1,1968,2,, 14650,NJBF000076477,328 31ST STREET SO,Galloway,NJ,39.39356867,-74.38464802,RES1,3001,,15,NE,1955,1955,3102,1,1,552.6045099,552.6045099,3507,NO,18.83,31.21,1,0.74,6106,115.183749,124.706818,134.5915,140.546148,I,Above,Gable,0,5701,,25.02078236,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 14651,NJBF000079735,530 W SHORE DR,Galloway,NJ,39.41261119,-74.37622687,RES1,3001,,19,NE,2009,2009,3103,2,1,4103.40722,4103.40722,3505,YES,38.71,53.27,3,8.67,6106,115.154026,124.674321,134.566884,140.433579,I,Above,Hip,0,5701,,45.98907665,0,1.1,,,,1,1,,0.03,nav,1,2009,2,, 14652,NJBF000078714,201 5TH STREET SO,Galloway,NJ,39.40711526,-74.36707598,RES1,3001,,45,NE,1962,1962,3102,1,4,3231.749091,3231.749091,3507,NO,14.11,27.54,1,0.42,6106,115.396843,124.902712,134.822013,140.649343,I,Above,Hip,0,5701,,20.82120138,0,0,,,,1,1,,0.03,nav,1,1962,1,, 14653,NJBF000079690,515 LAFAYETTE BLVD,Galloway,NJ,39.41234925,-74.374151,RES1,3001,,16,NE,1977,1977,3102,1,1,1520.428837,1520.428837,3507,NO,19.67,29.64,1,1.7,6106,115.198843,124.716341,134.614177,140.470319,I,Above,Gable,0,5701,,24.65191871,0,0,,,,1,1,,0.03,nav,1,1977,1,, 14654,NJBF000079648,527 W SHORE DR,Galloway,NJ,39.41213412,-74.37526818,RES1,3001,,16,NE,1971,1971,3103,1,1,2045.306315,2045.306315,3505,NO,16.79,24.76,3,-2.41,6106,115.178412,124.697293,134.592577,140.455134,I,Above,Gable,0,5701,,20.7721779,0,0,,,,1,1,,0.03,nav,1,1971,1,, 14655,NJBF000078736,412 W BEACH AVE,Galloway,NJ,39.40726003,-74.36723564,RES1,3001,,45,NE,1981,1981,3102,2,3,2536.37261,2536.37261,3507,NO,38.22,52.35,1,0.27,6106,115.392075,124.89824,134.817039,140.644993,I,Above,Hip,0,5701,,45.28592153,0,0,,,,1,1,,0.03,nav,1,1981,2,, 14656,NJBF000079727,508 CAVERLY DR,Galloway,NJ,39.41255703,-74.37383161,RES1,3001,,16,NE,1981,1981,3102,1,1,1843.619059,1843.619059,3507,NO,13.56,22.23,1,0.82,6106,115.203158,124.720318,134.618765,140.472778,I,Above,Gable,0,5701,,17.89438994,0,0,,,,1,1,,0.03,nav,1,1981,1,, 14657,NJBF000079718,102 QUAY BLVD,Galloway,NJ,39.4124741,-74.36153371,RES1,3001,,43,NE,1953,1953,3102,2,2,1315.602546,1315.602546,3507,NO,32.9,43.65,1,0.79,6106,115.452253,124.955149,134.884377,140.66982,I,Above,Hip,0,5701,,38.27927276,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 14658,NJBF000078674,201 6TH STREET SO,Galloway,NJ,39.40686622,-74.36800249,RES1,3001,,16,NE,1965,1965,3102,1,1,1242.533701,1242.533701,3507,NO,12.16,18.89,1,0.59,6106,115.380743,124.887616,134.804781,140.637868,I,Above,Hip,0,5701,,15.52780547,0,0,,,,1,1,,0.03,nav,1,1965,1,, 14659,NJBF000079669,701 E BEACH AVE,Galloway,NJ,39.412246,-74.3602455,RES1,3001,,43,NE,1950,1950,3102,2,2,1127.464175,1127.464175,3507,NO,27.98,39.18,1,2.93,6106,115.48052,124.981956,134.914656,140.693014,I,Above,Flat,0,5701,,33.58018649,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14660,NJBF000079499,415 LAFAYETTE BLVD,Galloway,NJ,39.411417,-74.3699885,RES1,3001,,16,NE,1962,1962,3102,2,1,1164.10233,1164.10233,3507,YES,30.48,41.44,1,-0.94,6106,115.292791,124.804685,134.713517,140.548792,I,Above,Gable,0,5701,,35.95905835,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14661,NJBF000079492,413 LAFAYETTE BLVD,Galloway,NJ,39.41137985,-74.36980842,RES1,3001,,16,NE,1962,1962,3102,1,1,1385.4404,1385.4404,3507,NO,15.5,22.22,1,1,6106,115.296837,124.808493,134.717802,140.552148,I,Above,Gable,0,5701,,18.85803747,0,0,,,,1,1,,0.03,nav,1,1962,1,, 14662,NJBF000078752,218 2ND STREET SO,Galloway,NJ,39.40733417,-74.36462629,RES1,3001,,19,NE,2011,2011,3102,3,1,1919.700695,1919.700695,3507,NO,40.26,48.31,1,1.15,6106,115.444027,124.947048,134.872341,140.685194,I,Above,Hip,0,5701,,44.2848641,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 14663,NJBF000078930,211 VERNON PLACE,Galloway,NJ,39.408431,-74.364167,RES1,3001,,16,NE,1950,1950,3102,2,1,1420.072,1420.072,3507,NO,40.25,48.58,1,2.8,6106,115.441694,124.94493,134.870594,140.678697,I,Above,Gable,0,5701,,44.41628494,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14664,NJBF000078661,230 4TH STREET SO,Galloway,NJ,39.40678143,-74.36638375,RES1,3001,,19,NE,2007,2007,3102,3,1,1951.870009,1951.870009,3507,NO,42.28,51.2,1,0.3,6106,115.414369,124.919149,134.840414,140.66445,I,Above,Hip,0,5701,,46.73825538,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 14665,NJBF000078676,205 W BRIGANTINE AVE,Galloway,NJ,39.40687785,-74.36453012,RES1,3001,,18,NE,2004,2004,3102,3,1,1534.183171,1534.183171,3507,NO,56.68,70.01,1,0.11,6106,115.450795,124.953377,134.87923,140.69241,I,Above,Hip,0,5701,,63.34318806,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 14666,NJBF000078662,223 5TH STREET SO,Galloway,NJ,39.40678886,-74.36683964,RES1,3001,,16,NE,1950,1950,3102,2,1,885.7138634,885.7138634,3507,NO,23.72,30.82,1,1.36,6106,115.405064,124.910419,134.830537,140.657164,I,Above,Hip,0,5701,,27.26757147,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14667,NJBF000078854,,Galloway,NJ,39.407959,-74.362349,RES1,3001,,NaN,NE,1969,0,3102,2,1,1763.795887,1763.795887,3507,NO,34.31,44.68,1,1.99,6110,115.483334,124.984142,134.914747,140.713195,I,Above,Flat,0,5701,,39.49703396,0,0,,,,1,1,,0.35,nav,1,1969,2,, 14668,NJBF000078844,,Galloway,NJ,39.40788686,-74.36244458,RES1,3001,,NaN,NE,1969,0,3102,2,1,1783.188424,1783.188424,3507,NO,36.14,49.6,1,-0.55,6110,115.482162,124.983027,134.91344,140.712583,I,Above,Flat,0,5701,,42.86989156,0,0,,,,1,1,,0.35,nav,1,1969,2,, 14669,NJBF000079147,11 FRANKLIN PLACE,Galloway,NJ,39.40982668,-74.36659781,RES1,3001,,16,NE,1955,1955,3102,1,1,1548.102927,1548.102927,3507,NO,14.01,25.6,1,0.75,6106,115.377941,124.884916,134.803432,140.622776,I,Above,Gable,0,5701,,19.80723916,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 14670,NJBF000079146,17 GIRARD PLACE,Galloway,NJ,39.40981881,-74.36749969,RES1,3001,,16,NE,1962,1962,3102,2,1,1574.860293,1574.860293,3507,YES,31.6,46.13,1,1.1,6106,115.359804,124.867855,134.784121,140.608581,I,Above,Gable,0,5701,,38.86264415,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 14671,NJBF000076492,3206 W BRIGANTINE AVE,Galloway,NJ,39.39361703,-74.3859195,COM1,3001,,NaN,ME,1969,0,3401,1,1,2298.413577,2298.413577,3507,NO,14.32,22.33,1,-0.17,6106,115.15705,124.682531,134.564233,140.525558,I,Above,Gable,0,NaN,,18.32324989,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 14672,NJBF000076406,344 31ST STREET SO,Galloway,NJ,39.39328711,-74.38418756,RES1,3001,,15,NE,1955,1955,3102,1,1,1240.466896,1240.466896,3507,NO,13.94,21.4,1,-0.3,6106,115.196296,124.718275,134.604161,140.55703,I,Above,Hip,0,5701,,17.66936188,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14673,NJBF000078573,101 11TH STREET SO,Galloway,NJ,39.40627875,-74.37315748,RES1,3001,,43,NE,1950,1950,3102,2,2,1147.468435,1147.468435,3507,NO,39.27,47.08,1,1.16,6106,115.282417,124.79579,134.70063,140.563746,I,Above,Gable,0,5701,,43.17573256,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 14674,NJBF000078611,226 5TH STREET SO,Galloway,NJ,39.40648182,-74.36715699,RES1,3001,,16,NE,1951,1951,3102,1,1,1114.167028,1114.167028,3507,NO,12.74,25.82,1,-0.14,6106,115.401904,124.907448,134.826986,140.65603,I,Above,Gable,0,5701,,19.27772952,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 14675,NJBF000079230,8 FRANKLIN PLACE,Galloway,NJ,39.41024744,-74.36700489,RES1,3001,,16,NE,1960,1960,3102,2,1,1091.781096,1091.781096,3507,NO,24.83,37.81,1,-0.79,6106,115.365319,124.873017,134.790193,140.611038,I,Above,Hip,0,5701,,31.3196304,0,0,,,,1,1,,0.03,nav,1,1960,2,, 14676,NJBF000081771,1 TRAVERS PLACE,Galloway,NJ,39.42279087,-74.36595456,RES1,3001,,17,NE,1984,1984,3102,1,1,1507.387702,1507.387702,3507,NO,19.67,26.37,1,0.51,6106,115.257415,124.768473,134.676986,140.469861,I,Above,Gable,0,5701,,23.01909685,0,0,,,,1,1,,0.03,nav,1,1984,1,, 14677,NJBF000081723,15 TRAVERS PLACE,Galloway,NJ,39.42229875,-74.3670474,RES1,3001,,17,NE,1993,1993,3102,2,1,1833.86063,1833.86063,3507,NO,34.54,43.05,1,2.62,6106,115.240472,124.752462,134.65875,140.45838,I,Above,Hip,0,5701,,38.79536523,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 14678,NJBF000081626,1050 N SHORE DR,Galloway,NJ,39.42099689,-74.37229792,RES1,3001,,17,NE,1994,1994,3102,2,1,1914.195952,1914.195952,3507,NO,32.32,43.02,1,1.41,6112,115.147982,124.665097,134.55969,140.389681,I,Above,Flat,0,5701,,37.66991742,0,1.1,,,,1,1,,0.35,nav,1,1994,2,, 14679,NJBF000081754,1502 E SHORE DR,Galloway,NJ,39.42257371,-74.36723062,RES1,3001,,17,NE,1979,1979,3102,2,1,1217.526645,1217.526645,3507,YES,24.52,39.22,1,-0.22,6106,115.233999,124.7462,134.651747,140.451927,I,Above,Gable,0,5701,,31.86855302,0,0,,,,1,1,,0.03,nav,1,1979,2,, 14680,NJBF000081188,725 SHERIDAN BLVD,Galloway,NJ,39.41794039,-74.36602517,RES1,3001,,17,NE,1979,1979,3102,2,1,1932.592309,1932.592309,3507,NO,24.44,30.01,1,-0.13,6106,115.305374,124.815358,134.728458,140.529809,I,Above,Hip,0,5701,,27.2217882,0,0,,,,1,1,,0.03,nav,1,1979,2,, 14681,NJBF000081635,16 HUTCHISON PLACE,Galloway,NJ,39.42112942,-74.36673494,RES1,3001,,17,NE,1986,1986,3102,1,1,1921.529743,1921.529743,3507,NO,11.63,22.62,1,0.19,6106,115.258586,124.770082,134.67833,140.47819,I,Above,Flat,0,5701,,17.12530301,0,0,,,,1,1,,0.03,nav,1,1986,1,, 14682,NJBF000081649,1222 E SHORE DR,Galloway,NJ,39.42132847,-74.36528102,RES1,3001,,17,NE,1987,1987,3102,1,1,1827.913741,1827.913741,3507,NO,16.81,26.58,1,0.29,6106,115.285759,124.795928,134.707621,140.499163,I,Above,Flat,0,5701,,21.69363938,0,0,,,,1,1,,0.03,nav,1,1987,1,, 14683,NJBF000081577,1208 E SHORE DR,Galloway,NJ,39.42042805,-74.36455866,RES1,3001,,16,NE,1958,1958,3102,1,1,1338.605427,1338.605427,3507,NO,19.51,34.19,1,0.85,6106,115.309404,124.818686,134.73309,140.522106,I,Above,Hip,0,5701,,26.85019017,0,0,,,,1,1,,0.03,nav,1,1958,1,, 14684,NJBF000079164,,Galloway,NJ,39.40992744,-74.37156387,RES1,3001,,NaN,NE,1969,0,3102,2,1,3031.804511,3031.804511,3507,NO,35.37,41.25,1,0.46,6106,115.276444,124.789616,134.695715,140.542608,I,Above,Flat,0,5701,,38.30881891,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14685,NJBF000081165,819 LAFAYETTE BLVD,Galloway,NJ,39.41784085,-74.37979972,RES1,3001,,16,NE,1964,1964,3103,2,1,1905.214325,1905.214325,3505,NO,41.06,51.52,3,7.89,6106,115.028149,124.553942,134.43333,140.30808,I,Above,Hip,0,5701,,46.29304817,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 14686,NJBF000081153,806 FOWNES AVE,Galloway,NJ,39.41778521,-74.3639687,RES1,3001,,16,NE,1965,1965,3102,1,1,1797.082881,1797.082881,3507,NO,17.28,24.03,1,-0.14,6106,115.348289,124.856178,134.774598,140.564724,I,Above,Hip,0,5701,,20.65360381,0,0,,,,1,1,,0.03,nav,1,1965,1,, 14687,NJBF000081018,15 MACDERMOTT PLACE,Galloway,NJ,39.4172269,-74.36614103,RES1,3001,,17,NE,1987,1987,3102,1,1,1606.48806,1606.48806,3507,NO,16.42,29.7,1,0.62,6106,115.310354,124.820223,134.73369,140.536923,I,Above,Hip,0,5701,,23.0595332,0,0,,,,1,1,,0.03,nav,1,1987,1,, 14688,NJBF000078879,211 2ND STREET SO,Galloway,NJ,39.40810017,-74.36469653,RES1,3001,,43,NE,1956,1956,3102,2,2,932.9824806,932.9824806,3507,NO,28.82,38.09,1,1.63,6106,115.434495,124.93813,134.862698,140.674487,I,Above,Gable,0,5701,,33.45544288,0,0,,,,1,1,,0.03,nav,1,1956,2,, 14689,NJBF000080727,129 WASHINGTON DR,Galloway,NJ,39.41602694,-74.36893528,RES1,3001,,16,NE,1968,1968,3102,2,1,1422.80223,1422.80223,3507,NO,24.35,33.88,1,0.76,6106,115.266398,124.778859,134.686429,140.507234,I,Above,Gable,0,5701,,29.11848891,0,0,,,,1,1,,0.03,nav,1,1968,2,, 14690,NJBF000081092,918 SARAZEN RD,Galloway,NJ,39.41751248,-74.37881327,RES1,3001,,16,NE,1967,1967,3103,1,1,1441.344599,1441.344599,3505,NO,19.77,26.34,3,5.36,6106,115.051492,124.576007,134.458068,140.328439,I,Above,Hip,0,5701,,23.05692959,0,0,,,,1,1,,0.03,nav,1,1967,1,, 14691,NJBF000081033,1307 OUIMET RD,Galloway,NJ,39.41729572,-74.37396162,RES1,3001,,17,NE,1980,1980,3102,2,1,1368.095898,1368.095898,3507,NO,32.75,37.91,1,2.63,6106,115.151903,124.670436,134.564464,140.41001,I,Above,Flat,0,5701,,35.33175994,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14692,NJBF000080884,710 SHERIDAN BLVD,Galloway,NJ,39.41670266,-74.36564482,RES1,3001,,17,NE,1990,1990,3102,2,1,1138.852052,1138.852052,3507,NO,38.7,52.32,1,1.56,6106,115.325719,124.834893,134.750082,140.551465,I,Above,Gable,0,5701,,45.5069943,0,0,,,,1,1,,0.03,nav,1,1990,2,, 14693,NJBF000081038,1332 VARDON RD,Galloway,NJ,39.41732022,-74.37632306,RES1,3001,,16,NE,1976,1976,3103,1,1,1458.688707,1458.688707,3505,NO,16.98,30.94,3,-2.13,6106,115.103889,124.625272,134.513526,140.371418,I,Above,Flat,0,5701,,23.95988482,0,0,,,,1,1,,0.03,nav,1,1976,1,, 14694,NJBF000081094,800 E SHORE DR,Galloway,NJ,39.41751794,-74.36330712,RES1,3001,,16,NE,1972,1972,3102,2,1,1794.251488,1794.251488,3507,YES,23.51,29.5,1,0.76,6106,115.364329,124.871474,134.791817,140.578661,I,Above,Gable,0,5701,,26.50420637,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14695,NJBF000081076,916 SARAZEN RD,Galloway,NJ,39.41745341,-74.37864808,RES1,3001,,16,NE,1967,1967,3103,1,1,1310.565232,1310.565232,3505,NO,15.74,29.87,3,2.36,6106,115.055434,124.579736,134.462248,140.331891,I,Above,Hip,0,5701,,22.8050688,0,0,,,,1,1,,0.03,nav,1,1967,1,, 14696,NJBF000081073,16 12TH STREET NO,Galloway,NJ,39.41744607,-74.36117956,RES1,3001,,17,NE,2004,2004,3102,3,1,2340.297309,2340.297309,3507,NO,40.94,47.04,1,-0.45,6106,115.407754,124.912855,134.838668,140.613534,I,Above,Gable,0,5701,,43.98767614,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 14697,NJBF000080916,21 VARDON RD,Galloway,NJ,39.41684573,-74.37253864,RES1,3001,,17,NE,2000,2000,3102,2,1,1771.277034,1771.277034,3507,NO,23.61,36.77,1,0.05,6106,115.185254,124.702031,134.599957,140.438776,I,Above,Hip,0,5701,,30.1898919,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 14698,NJBF000080811,142 WASHINGTON DR,Galloway,NJ,39.41642887,-74.36950919,RES1,3001,,16,NE,1968,1968,3102,1,1,1479.592465,1479.592465,3507,NO,13.19,24.32,1,-0.78,6106,115.250693,124.763916,134.6697,140.492915,I,Above,Gable,0,5701,,18.75160369,0,0,,,,1,1,,0.03,nav,1,1968,1,, 14699,NJBF000080533,1306 E BEACH AVE,Galloway,NJ,39.41534428,-74.35605166,RES1,3001,,20,NE,2008,2008,3102,3,1,2109.682974,2109.682974,3507,YES,40.08,50.35,1,-0.94,6106,115.532246,125.031638,134.972529,140.720965,I,Above,Gable,0,5701,,45.21395196,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 14700,NJBF000080719,136 WASHINGTON DR,Galloway,NJ,39.41601325,-74.36945457,RES1,3001,,16,NE,1968,1968,3102,1,1,2235.663825,2235.663825,3507,NO,17.26,24.62,1,-0.41,6106,115.256053,124.769089,134.675379,140.499058,I,Above,Hip,0,5701,,20.9410879,0,0,,,,1,1,,0.03,nav,1,1968,1,, 14701,NJBF000080676,134 WASHINGTON DR,Galloway,NJ,39.41588622,-74.36942111,RES1,3001,,16,NE,1969,1969,3102,1,1,1796.05156,1796.05156,3507,NO,18.92,25.48,1,-0.54,6106,115.258043,124.771002,134.677489,140.501214,I,Above,Gable,0,5701,,22.1970653,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14702,NJBF000080627,47 KIRKWOOD CIRCLE,Galloway,NJ,39.4156555,-74.3644323,RES1,3001,,16,NE,1981,1981,3102,1,1,1595.412953,1595.412953,3507,NO,11.22,16.91,1,-0.66,6106,115.360925,124.868434,134.787614,140.58402,I,Above,Gable,0,5701,,14.06540522,0,0,,,,1,1,,0.03,nav,1,1981,1,, 14703,NJBF000080415,1003 E EVANS BLVD,Galloway,NJ,39.41497745,-74.35975334,RES1,3001,,16,NE,1960,1960,3102,1,1,1805.440118,1805.440118,3507,NO,17.68,27.67,1,0.15,6106,115.461929,124.964479,134.896152,140.666921,I,Above,Gable,0,5701,,22.67477851,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 14704,NJBF000078439,124 11TH STREET SO,Galloway,NJ,39.40552846,-74.37303369,RES1,3001,,15,NE,1952,1952,3102,1,1,926.7945027,926.7945027,3505,NO,18.41,31.58,3,-0.4,6106,115.292849,124.805605,134.71126,140.575269,I,Above,Flat,0,5701,,24.99470704,0,0,,,,1,1,,0.03,nav,1,1952,1,, 14705,NJBF000079910,533 CAVERLY DR,Galloway,NJ,39.41330818,-74.37453207,RES1,3001,,16,NE,1980,1980,3102,2,1,1963.429037,1963.429037,3507,NO,25.57,35.26,1,0.42,6106,115.18122,124.699516,134.59563,140.45191,I,Above,Gable,0,5701,,30.41370938,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 14706,NJBF000079931,1000 E BEACH AVE,Galloway,NJ,39.41335731,-74.35796786,RES1,3001,,17,NE,1947,1947,3102,1,1,1308.903591,1308.903591,3507,NO,19.46,25.7,1,2.48,6106,115.514608,125.014508,134.952146,140.715216,I,Above,Gable,0,5701,,22.58151821,0,0,,,,1,1,,0.03,nav,1,1947,1,, 14707,NJBF000079235,304 E BEACH AVE,Galloway,NJ,39.410268,-74.3622775,RES1,3001,,16,NE,1950,1950,3102,2,1,1258.277569,1258.277569,3507,NO,40.45,51.91,1,2.53,6106,115.46041,124.962727,134.891804,140.685545,I,Above,Hip,0,5701,,46.17957487,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14708,NJBF000079228,418 W SHORE DR,Galloway,NJ,39.41024236,-74.37074321,RES1,3001,,16,NE,1977,1977,3102,2,1,1142.148332,1142.148332,3507,NO,32.74,40.76,1,0.99,6106,115.289783,124.802061,134.709944,140.551685,I,Above,Hip,0,5701,,36.7486579,0,0,,,,1,1,,0.03,nav,1,1977,2,, 14709,NJBF000079244,4 SHERIDAN PLACE,Galloway,NJ,39.41030721,-74.36606819,RES1,3001,,16,NE,1962,1962,3102,2,1,1077.067345,1077.067345,3507,YES,24.25,34.21,1,-0.46,6106,115.383608,124.890236,134.809713,140.625137,I,Above,Hip,0,5701,,29.23402747,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14710,NJBF000080142,,Galloway,NJ,39.41405238,-74.36768429,RES1,3001,,NaN,NE,1969,0,3102,2,1,1956.664182,1956.664182,3507,NO,22.98,35.63,1,-0.37,6106,115.311998,124.822335,134.734738,140.552248,I,Above,Hip,0,5701,,29.30578729,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14711,NJBF000080097,,Galloway,NJ,39.41390678,-74.36738433,RES1,3001,,NaN,NE,1969,0,3102,2,1,1838.349922,1838.349922,3507,NO,25.97,32.75,1,2.42,6106,115.31955,124.829489,134.742764,140.558871,I,Above,Hip,0,5701,,29.36149705,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14712,NJBF000080207,217 13TH STREET NO,Galloway,NJ,39.41428522,-74.35534945,RES1,3001,,20,NE,2009,2009,3102,3,1,1910.769661,1910.769661,3507,NO,43.95,58.94,1,-0.35,6106,115.557355,125.055461,134.999094,140.745081,I,Above,Hip,0,5701,,51.44865668,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 14713,NJBF000079955,103 8TH STREET NO,Galloway,NJ,39.41345576,-74.36039474,RES1,3001,,45,NE,1976,1976,3102,2,2,1272.166819,1272.166819,3507,NO,34.13,45.33,1,0,6106,115.464883,124.967199,134.898524,140.675633,I,Above,Flat,0,5701,,39.72860752,0,0,,,,1,1,,0.03,nav,1,1976,2,, 14714,NJBF000079886,607 E EVANS BLVD,Galloway,NJ,39.41323125,-74.36218423,RES1,3001,,16,NE,1966,1966,3102,2,1,2300.828557,2300.828557,3507,NO,33.92,41.37,1,2.42,6106,115.431285,124.935287,134.862238,140.650094,I,Above,Hip,0,5701,,37.6470758,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 14715,NJBF000079823,106 LINCOLN DR,Galloway,NJ,39.41299142,-74.36928707,RES1,3001,,16,NE,1973,1973,3102,2,1,1512.38753,1512.38753,3507,NO,35.8,47.55,1,2.3,6106,115.290629,124.802371,134.711669,140.54005,I,Above,Gable,0,5701,,41.67399265,0,0,,,,1,1,,0.03,nav,1,1973,2,, 14716,NJBF000079813,104 LINCOLN DR,Galloway,NJ,39.412955,-74.3691285,RES1,3001,,16,NE,1965,1965,3102,3,1,1510.632068,1510.632068,3507,NO,48.18,57.38,1,2.09,6106,115.294194,124.805735,134.715455,140.54303,I,Above,Hip,0,5701,,52.78394794,0,1.1,,,,1,1,,0.03,nav,1,1965,3,, 14717,NJBF000079746,1007 E BRIGANTINE AVE,Galloway,NJ,39.41266952,-74.35689702,RES1,3001,,16,NE,1948,1948,3102,1,1,915.179047,915.179047,3507,NO,16.68,30.9,1,2.2,6106,115.543265,125.041703,134.982671,140.740573,I,Above,Flat,0,5701,,23.78841749,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 14718,NJBF000079763,514 CAVERLY DR,Galloway,NJ,39.41273256,-74.3742997,RES1,3001,,17,NE,1988,1988,3102,1,1,2015.300131,2015.300131,3507,NO,18.54,26.37,1,2.47,6106,115.191854,124.709673,134.60683,140.463008,I,Above,Gable,0,5701,,22.45556331,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 14719,NJBF000079805,204 10TH STREET NO,Galloway,NJ,39.41291822,-74.35808342,RES1,3001,,43,NE,1950,1950,3102,1,2,1610.7553,1610.7553,3507,NO,20.37,27.44,1,2.02,6106,115.516895,125.016623,134.954328,140.718826,I,Above,Hip,0,5701,,23.9030521,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14720,NJBF000079775,532 W SHORE DR,Galloway,NJ,39.41279205,-74.37625674,RES1,3001,,16,NE,1962,1962,3103,2,1,1584.415715,1584.415715,3505,NO,30.06,35.47,3,5.2,6106,115.151552,124.671938,134.56428,140.430768,I,Above,Hip,0,5701,,32.76413512,0,0,,,,1,1,,0.03,nav,1,1962,2,, 14721,NJBF000079863,3 QUAY BLVD,Galloway,NJ,39.41314581,-74.36749613,RES1,3001,,16,NE,1970,1970,3102,2,1,1548.343786,1548.343786,3507,NO,32.84,43.33,1,2.43,6106,115.325181,124.834913,134.748545,140.566684,I,Above,Flat,0,5701,,38.08287665,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 14722,NJBF000079783,516 CAVERLY DR,Galloway,NJ,39.41281463,-74.37446967,RES1,3001,,17,NE,1988,1988,3102,1,1,1859.614601,1859.614601,3507,NO,16.36,27.6,1,0.53,6106,115.187562,124.705625,134.6023,140.459225,I,Above,Gable,0,5701,,21.97796754,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 14723,NJBF000079826,523 CAVERLY DR,Galloway,NJ,39.41299268,-74.37374898,RES1,3001,,17,NE,1986,1986,3102,1,1,1708.205346,1708.205346,3507,NO,18.65,33.33,1,-0.28,6106,115.200336,124.717537,134.615828,140.468532,I,Above,Gable,0,5701,,25.99145804,0,0,,,,1,1,,0.03,nav,1,1986,1,, 14724,NJBF000079884,46 HEALD RD,Galloway,NJ,39.41322672,-74.3629203,RES1,3001,,19,NE,2007,2007,3102,3,1,1534.6054,1534.6054,3507,NO,52.59,63.21,1,1.9,6106,115.416526,124.921291,134.846377,140.638469,I,Above,Gable,0,5701,,57.89956827,0,0,,,,1,1,,0.03,nav,1,2007,3,, 14725,NJBF000079778,803 E BEACH AVE,Galloway,NJ,39.41280684,-74.35951604,RES1,3001,,18,NE,2005,2005,3102,3,1,1817.279108,1817.279108,3507,NO,41.57,52.01,1,-0.28,6106,115.489308,124.990362,134.924475,140.697584,I,Above,Hip,0,5701,,46.78946436,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 14726,NJBF000079542,433 LAFAYETTE BLVD,Galloway,NJ,39.41159529,-74.37152657,RES1,3001,,16,NE,1972,1972,3102,2,1,1311.710829,1311.710829,3507,NO,37.75,49.3,1,1.79,6106,115.259818,124.773695,134.678582,140.521975,I,Above,Gable,0,5701,,43.52189411,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14727,NJBF000079535,431 LAFAYETTE BLVD,Galloway,NJ,39.41157152,-74.37137408,RES1,3001,,16,NE,1974,1974,3102,2,1,1579.76589,1579.76589,3507,YES,24.28,36.03,1,1.52,6106,115.263154,124.77683,134.682113,140.524713,I,Above,Flat,0,5701,,30.15676914,0,0,,,,1,1,,0.03,nav,1,1974,2,, 14728,NJBF000079632,222 9TH STREET NO,Galloway,NJ,39.41204966,-74.35820154,RES1,3001,,43,NE,1948,1948,3102,2,2,1022.762337,1022.762337,3507,NO,36.93,44.06,1,2.44,6106,115.523604,125.022875,134.960979,140.727677,I,Above,Flat,0,5701,,40.49549766,0,0,,,,1,1,,0.03,nav,1,1948,2,, 14729,NJBF000079456,112 HAMILTON PLACE,Galloway,NJ,39.41122964,-74.3621146,RES1,3001,,16,NE,1969,1969,3102,2,1,1109.315726,1109.315726,3507,NO,22.66,32.81,1,-0.55,6106,115.453591,124.956344,134.885088,140.67613,I,Above,Flat,0,5701,,27.73444749,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14730,NJBF000079047,405 BAYSHORE AVE,Galloway,NJ,39.4091885,-74.368707,RES1,3001,,16,NE,1964,1964,3102,2,1,1580.387967,1580.387967,3507,NO,29.25,37.07,1,2.44,6106,115.34202,124.851194,134.764926,140.597402,I,Above,Hip,0,5701,,33.15964085,0,0,,,,1,1,,0.03,nav,1,1964,2,, 14731,NJBF000078983,400 W EVANS BLVD,Galloway,NJ,39.40882242,-74.36813726,RES1,3001,,16,NE,1955,1955,3102,1,1,2475.601448,2475.601448,3507,NO,17.39,31.71,1,2.92,6106,115.357392,124.865649,134.781072,140.61106,I,Above,Hip,0,5701,,24.55080123,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14732,NJBF000078734,210 4TH STREET SO,Galloway,NJ,39.40723964,-74.36678224,RES1,3001,,19,NE,2007,2007,3102,3,1,1536.644273,1536.644273,3507,NO,39.31,50.82,1,-0.91,6106,115.401466,124.907052,134.827,140.652408,I,Above,Gable,0,5701,,45.06833869,0,0,,,,1,1,,0.03,nav,1,2007,3,, 14733,NJBF000078830,712 BAYSHORE AVE,Galloway,NJ,39.40779933,-74.37100348,RES1,3001,,45,NE,1954,1954,3102,2,2,1312.811313,1312.811313,3507,NO,34.19,42.1,1,1.02,6106,115.310118,124.821447,134.730509,140.578574,I,Above,Gable,0,5701,,38.14592504,0,0,,,,1,1,,0.03,nav,1,1954,2,, 14734,NJBF000078957,203 2ND STREET SO,Galloway,NJ,39.4086245,-74.3651735,RES1,3001,,47,NE,1955,1955,3102,2,2,1501.167616,1501.167616,3507,NO,36.03,42.66,1,2.36,6106,115.41935,124.923896,134.846884,140.660403,I,Above,Flat,0,5701,,39.343319,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14735,NJBF000078532,210 7TH STREET SO,Galloway,NJ,39.40602472,-74.36900026,RES1,3001,,15,NE,1955,1955,3102,1,1,1232.472093,1232.472093,3505,NO,15.79,26.05,3,1.66,6106,115.369436,124.877042,134.792305,140.632732,I,Above,Hip,0,5701,,20.92206326,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14736,NJBF000078512,214 7TH STREET SO,Galloway,NJ,39.40591805,-74.36892134,RES1,3001,,15,NE,1955,1955,3102,1,1,1160.389659,1160.389659,3505,NO,22.71,35.86,3,4.48,6106,115.37217,124.879601,134.795133,140.635329,I,Above,Hip,0,5701,,29.28400684,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14737,NJBF000078628,155 9TH STREET SO,Galloway,NJ,39.40656261,-74.37114892,RES1,3001,,16,NE,1965,2018,3102,3,1,904.9572723,904.9572723,3507,NO,47.86,56.77,1,0.38,6106,115.320182,124.830981,134.740558,140.591953,I,Above,Hip,0,5701,,52.3116857,0,1.1,,,,1,1,,0.03,nav,1,1965,3,, 14738,NJBF000078504,234 6TH STREET SO,Galloway,NJ,39.40589046,-74.36776868,RES1,3001,,16,NE,1955,1955,3102,2,1,1349.941997,1349.941997,3505,NO,29.34,37.04,3,-0.32,6106,115.395795,124.901711,134.820127,140.653841,I,Above,Flat,0,5701,,33.18877932,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14739,NJBF000078707,218 4TH STREET SO,Galloway,NJ,39.40705248,-74.36660796,RES1,3001,,17,NE,1951,1951,3102,1,1,1858.683219,1858.683219,3507,NO,13.04,21.44,1,2.21,6106,115.406972,124.912216,134.832731,140.657515,I,Above,Hip,0,5701,,17.24387689,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14740,NJBF000078458,806 W BEACH AVE,Galloway,NJ,39.40563437,-74.37015137,RES1,3001,,NaN,NE,1890,1890,3102,2,1,1275.745856,1275.745856,3505,NO,37.19,50.97,3,4.25,6106,115.350249,124.859122,134.771799,140.619511,I,Above,Flat,0,5701,,44.08134791,0,0,,,,1,1,,0.03,nav,1,1890,2,, 14741,NJBF000078401,151 11TH STREET SO,Galloway,NJ,39.40528978,-74.37222914,RES1,3001,,16,NE,1954,1954,3102,1,1,1444.533136,1444.533136,3505,NO,18.56,28.25,3,2.13,6106,115.311722,124.823208,134.730997,140.59104,I,Above,Flat,0,5701,,23.40309905,0,0,,,,1,1,,0.03,nav,1,1954,1,, 14742,NJBF000079565,109 HAMILTON PLACE,Galloway,NJ,39.41170425,-74.36206838,RES1,3001,,17,NE,2016,2016,3102,3,1,973.4799119,973.4799119,3507,NO,38.7,44.26,1,1.76,6106,115.44957,124.952564,134.881053,140.670966,I,Above,Gable,0,5701,,41.48416332,0,1.2,,,,1,1,,0.03,nav,1,2016,3,, 14743,NJBF000080240,106 11TH STREET NO,Galloway,NJ,39.41440497,-74.35860658,RES1,3001,,15,NE,1958,1958,3102,1,1,980.0226931,980.0226931,3507,NO,16.1,29.58,1,2.69,6106,115.490861,124.992004,134.927112,140.692161,I,Above,Gable,0,5701,,22.84454064,0,0,,,,1,1,,0.03,nav,1,1958,1,, 14744,NJBF000079035,300 W EVANS BLVD,Galloway,NJ,39.40913005,-74.36728219,RES1,3001,,17,NE,1973,1973,3102,3,1,2168.156727,2168.156727,3507,NO,48.99,54.3,1,1.2,6106,115.371441,124.87883,134.796158,140.620718,I,Above,Flat,0,5701,,51.646214,0,0,,,,1,1,,0.03,nav,1,1973,3,, 14745,NJBF000078484,,Galloway,NJ,39.40578577,-74.36820708,RES1,3001,,NaN,NE,1953,0,3102,2,1,1057.071735,1057.071735,3505,NO,29,43.47,3,-1.85,6106,115.38803,124.894441,134.811837,140.648252,I,Above,Gable,0,5701,,36.23219066,0,0,,,,1,1,,0.03,nav,1,1953,2,, 14746,NJBF000079205,467 W SHORE DR,Galloway,NJ,39.41014659,-74.37419881,RES1,3001,,16,NE,1972,1972,3102,3,1,1477.31366,1477.31366,3507,NO,42.34,51.2,1,-0.4,6106,115.220718,124.73744,134.636903,140.497736,I,Above,Hip,0,5701,,46.77247409,0,1.2,,,,1,1,,0.03,nav,1,1972,3,, 14747,NJBF000078829,209 3RD STREET SO,Galloway,NJ,39.40779491,-74.36550286,RES1,3001,,43,NE,1953,1953,3102,2,2,1347.540847,1347.540847,3507,NO,22.69,37.26,1,0.42,6106,115.421445,124.925837,134.848597,140.665605,I,Above,Gable,0,5701,,29.97823989,0,0,,,,1,1,,0.03,nav,1,1953,2,, 14748,NJBF000078813,213 3RD STREET SO,Galloway,NJ,39.40771567,-74.36541407,RES1,3001,,19,NE,2005,2005,3102,3,1,1386.945104,1386.945104,3507,NO,56.89,63.48,1,0.95,6106,115.424077,124.928309,134.851348,140.667999,I,Above,Gable,0,5701,,60.18431869,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 14749,NJBF000080578,204 MARSDEN PLACE,Galloway,NJ,39.41551129,-74.38191427,RES1,3001,,16,NE,1965,1965,3103,1,1,1239.146023,1239.146023,3505,NO,19.21,29.97,3,3.71,6106,115.008807,124.53731,134.413731,140.303909,I,Above,Flat,0,5701,,24.58742828,0,0,,,,1,1,,0.03,nav,1,1965,1,, 14750,NJBF000080747,131 WASHINGTON DR,Galloway,NJ,39.41615163,-74.36899378,RES1,3001,,16,NE,1968,1968,3102,2,1,1078.258872,1078.258872,3507,YES,30.85,44.87,1,-0.89,6106,115.263924,124.77649,134.683802,140.504703,I,Above,Gable,0,5701,,37.8648353,0,0,,,,1,1,,0.03,nav,1,1968,2,, 14751,NJBF000080487,23 KIRKWOOD CIRCLE,Galloway,NJ,39.41523455,-74.36275378,RES1,3001,,18,NE,1984,1984,3102,1,1,2635.30917,2635.30917,3507,NO,11.59,18.9,1,0.97,6106,115.399004,124.904618,134.828414,140.616027,I,Above,Flat,0,5701,,15.24602723,0,1.1,,,,1,1,,0.03,nav,1,1984,1,, 14752,NJBF000078494,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,3233.509725,3233.509725,3505,NO,44.67,50.05,3,6.48,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,47.35772023,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14753,NJBF000081174,1325 VARDON RD,Galloway,NJ,39.41787246,-74.37532394,RES1,3001,,18,NE,1962,1962,3103,3,1,2049.270282,2049.270282,3505,NO,45.86,57.55,3,2.97,6106,115.118502,124.638739,134.528916,140.380538,I,Above,Hip,0,5701,,51.70212198,0,0,,,,1,1,,0.03,nav,1,1962,3,, 14754,NJBF000081761,5 TRAVERS PLACE,Galloway,NJ,39.42263604,-74.36624396,RES1,3001,,17,NE,1984,1984,3102,3,1,1634.156145,1634.156145,3507,NO,48.36,57.42,1,-0.25,6106,115.253183,124.76448,134.67243,140.467135,I,Above,Flat,0,5701,,52.89062657,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 14755,NJBF000080088,612 W SHORE DR,Galloway,NJ,39.41388052,-74.38012534,RES1,3001,,16,NE,1980,1980,3103,2,1,1514.020463,1514.020463,3505,NO,28.56,38.47,3,3.69,6106,115.061795,124.587646,134.469745,140.354189,I,Above,Gable,0,5701,,33.51544361,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14756,NJBF000079900,528 CAVERLY DR,Galloway,NJ,39.41327044,-74.37536983,RES1,3001,,15,NE,1985,1985,3103,1,1,1494.432384,1494.432384,3505,NO,16.04,30.7,3,3.5,6106,115.164622,124.683984,134.578087,140.438909,I,Above,Flat,0,5701,,23.37082198,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 14757,NJBF000079968,602 W SHORE DR,Galloway,NJ,39.41352182,-74.37923773,RES1,3001,,19,NE,2015,2015,3103,2,1,1336.982093,1336.982093,3505,NO,45.89,52.6,3,7.88,6106,115.083503,124.608072,134.492603,140.373213,I,Above,Hip,0,5701,,49.24091981,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 14758,NJBF000080072,1005 E BEACH AVE,Galloway,NJ,39.41383102,-74.35811434,RES1,3001,,43,NE,1931,1931,3102,3,2,1023.30097,1023.30097,3507,NO,37.76,44.4,1,0.03,6106,115.50673,125.007064,134.943928,140.707053,I,Above,Gable,0,5701,,41.07983563,0,0,,,,1,1,,0.03,nav,1,1931,3,, 14759,NJBF000079594,201 7TH STREET NO,Galloway,NJ,39.41183623,-74.35971147,RES1,3001,,19,NE,2005,2005,3102,3,1,1743.574839,1743.574839,3507,NO,54.61,67.33,1,1.11,6106,115.495561,124.996193,134.930593,140.706543,I,Above,Flat,0,5701,,60.96802393,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 14760,NJBF000080450,714 BOBBY JONES RD,Galloway,NJ,39.41509522,-74.38115861,RES1,3001,,16,NE,1974,1974,3103,2,1,1208.136326,1208.136326,3505,NO,27.7,36.05,3,0.17,6106,115.028387,124.555818,134.434403,140.321619,I,Above,Gable,0,5701,,31.87234087,0,0.1,,,,1,1,,0.03,nav,1,1974,2,, 14761,NJBF000081631,,Galloway,NJ,39.4210771,-74.37191235,RES1,3001,,NaN,NE,1969,0,3102,2,1,2623.116671,2623.116671,3507,NO,31.26,40.73,1,2.42,6112,115.154954,124.671664,134.567127,140.394936,I,Above,Hip,0,5701,,35.99525975,0,0,,,,1,1,,0.35,nav,1,1969,2,, 14762,NJBF000082228,229 N SHORE ROAD,Galloway,NJ,39.42808516,-74.49690388,RES1,3001,,17,NE,1923,1923,3102,1,1,1341.229928,1341.229928,3505,NO,13.97,26.79,3,0.91,6110,112.51658,122.29065,131.926749,138.07898,I,Above,Gable,0,5701,,20.38197313,0,0,,,,1,1,,0.35,nav,1,1923,1,, 14763,NJBF000080862,1307 RAY AVE,Galloway,NJ,39.41661722,-74.37383825,RES1,3001,,17,NE,1988,1988,3102,2,1,1189.429475,1189.429475,3507,NO,32.09,40.03,1,-0.32,6106,115.161333,124.679594,134.574541,140.420712,I,Above,Flat,0,5701,,36.05799716,0,0,,,,1,1,,0.03,nav,1,1988,2,, 14764,NJBF000076313,3101 OCEAN AVE,Galloway,NJ,39.39294282,-74.38383181,RES1,3001,,16,NE,1955,1955,3102,1,1,1614.911084,1614.911084,3507,NO,21.94,30.85,1,2.63,6106,115.207383,124.728407,134.615281,140.567075,I,Above,Gable,0,5701,,26.39430158,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14765,NJBF000081569,1028 N SHORE DR,Galloway,NJ,39.42032917,-74.37395651,RES1,3001,,17,NE,1958,1958,3102,1,1,1970.952577,1970.952577,3507,NO,18.03,29.53,1,0.59,6106,115.121259,124.64014,134.531324,140.371232,I,Above,Flat,0,5701,,23.78469666,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 14766,NJBF000080140,1500 SHERIDAN BLVD,Galloway,NJ,39.41404994,-74.37797072,RES1,3001,,16,NE,1965,1965,3103,2,1,1310.787093,1310.787093,3505,NO,32.35,44.24,3,1.29,6106,115.103832,124.626798,134.513937,140.386884,I,Above,Gable,0,5701,,38.2941349,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 14767,NJBF000078604,246 4TH STREET SO,Galloway,NJ,39.40644725,-74.36600238,RES1,3001,,16,NE,1950,1950,3102,1,1,1040.026157,1040.026157,3507,NO,12.89,17.99,1,0.17,6106,115.42563,124.929702,134.852154,140.674658,I,Above,Hip,0,5701,,15.43835607,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 14768,NJBF000081114,1306 VARDON RD,Galloway,NJ,39.41759396,-74.37399559,RES1,3001,,18,NE,2002,2002,3102,2,1,1369.885247,1369.885247,3507,NO,28.23,39.77,1,0.66,6106,115.148182,124.666805,134.560477,140.405641,I,Above,Gable,0,5701,,33.99724045,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 14769,NJBF000081308,913 N SHORE DR,Galloway,NJ,39.41857746,-74.37869623,RES1,3001,,16,NE,1972,1972,3103,3,1,1578.884999,1578.884999,3505,NO,55.93,64.85,3,3.53,6106,115.0431,124.567511,134.448871,140.316558,I,Above,Hip,0,5701,,60.38936433,0,1.1,,,,1,1,,0.03,nav,1,1972,3,, 14770,NJBF000080138,603 W SHORE DR,Galloway,NJ,39.41404205,-74.37945206,RES1,3001,,17,NE,1984,1984,3103,3,1,1618.805971,1618.805971,3505,NO,62.16,71.98,3,7.95,6106,115.07383,124.598786,134.482365,140.36301,I,Above,Hip,0,5701,,67.07372034,0,0,,,,1,1,,0.03,nav,1,1984,3,, 14771,NJBF000079496,510 W SHORE DR,Galloway,NJ,39.41138753,-74.37553919,RES1,3001,,21,NE,2015,2015,3103,3,1,1589.447606,1589.447606,3505,NO,56.91,62.72,3,6.7,6106,115.180631,124.69962,134.594843,140.460358,I,Above,Hip,0,5701,,59.81620652,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 14772,NJBF000079612,605 E BEACH AVE,Galloway,NJ,39.41194076,-74.36065953,RES1,3001,,15,NE,1953,1953,3102,1,1,784.0863803,784.0863803,3507,NO,18.75,32.56,1,1.68,6106,115.475396,124.977065,134.908952,140.690264,I,Above,Flat,0,5701,,25.65224447,0,0,,,,1,1,,0.03,nav,1,1953,1,, 14773,NJBF000079498,108 HAMILTON PLACE,Galloway,NJ,39.41140928,-74.36241025,RES1,3001,,15,NE,1967,1967,3102,1,1,1404.889615,1404.889615,3507,NO,13.6,20.78,1,-0.23,6106,115.445779,124.948959,134.876812,140.669236,I,Above,Gable,0,5701,,17.19140074,0,0,,,,1,1,,0.03,nav,1,1967,1,, 14774,NJBF000082513,420 N SHORE RD,Galloway,NJ,39.43055404,-74.49242924,RES1,3001,282,NaN,NE,1969,0,3102,2,1,1117.395372,1117.395372,3507,NO,36.34,44.76,1,0.41,6112,112.59221,122.344194,131.985262,138.126411,I,Above,Gable,0,5701,,40.54980003,0,0,,,,1,1,,0.35,nav,1,1969,2,, 14775,NJBF000082491,814 OHIO AVE,Galloway,NJ,39.43036331,-74.51383088,RES1,3001,,17,NE,1930,1930,3102,1,1,1408.366597,1408.366597,3505,NO,20.46,33.14,3,6.53,6110,112.152882,121.970104,131.575843,137.714243,I,Above,Gable,0,5701,,26.79625578,0,0,,,,1,1,,0.35,nav,1,1930,1,, 14776,NJBF000079534,113 HAMILTON PLACE,Galloway,NJ,39.4115705,-74.361793,RES1,3001,,16,NE,1955,1955,3102,1,1,1923.295317,1923.295317,3507,NO,20.97,31.65,1,2.73,6106,115.456495,124.959116,134.88841,140.676969,I,Above,Gable,0,5701,,26.30858331,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14777,NJBF000080362,605 BOBBY JONES RD,Galloway,NJ,39.41482931,-74.37928547,RES1,3001,,16,NE,1957,1957,3103,1,1,1543.568575,1543.568575,3505,NO,17.11,31.61,3,5.94,6106,115.069182,124.594038,134.477345,140.355519,I,Above,Hip,0,5701,,24.36202244,0,0,,,,1,1,,0.03,nav,1,1957,1,, 14778,NJBF000079599,512 LAFAYETTE BLVD,Galloway,NJ,39.41186475,-74.37407815,RES1,3001,,16,NE,1985,1985,3102,1,1,1534.014937,1534.014937,3507,NO,12.37,26.84,1,1.78,6106,115.205332,124.722566,134.620972,140.477686,I,Above,Gable,0,5701,,19.60567119,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14779,NJBF000081328,852 W SHORE DR,Galloway,NJ,39.41865899,-74.38133985,RES1,3001,,NaN,NE,2014,1957,3103,5,1,2867.167886,2867.167886,3505,NO,83.7,90.61,3,2.58,6106,114.988662,124.516441,134.391387,140.27227,I,Above,Gable,0,5701,,87.15590026,0,0,,,,1,1,,0.03,nav,1,2014,5,, 14780,NJBF000079578,12 ROOSEVELT BLVD NO,Galloway,NJ,39.41175337,-74.36718933,RES1,3001,,16,NE,1967,1967,3102,1,1,1561.295439,1561.295439,3507,NO,22.05,31.94,1,2.66,6106,115.345867,124.854581,134.770116,140.589141,I,Above,Gable,0,5701,,26.99039456,0,0,,,,1,1,,0.03,nav,1,1967,1,, 14781,NJBF000079545,10 ROOSEVELT BLVD NO,Galloway,NJ,39.41161607,-74.36709519,RES1,3001,,16,NE,1960,1960,3102,1,1,2174.883967,2174.883967,3507,NO,19.53,25.25,1,1.94,6106,115.349193,124.857729,134.773608,140.592363,I,Above,Gable,0,5701,,22.3916021,0,0,,,,1,1,,0.03,nav,1,1960,1,, 14782,NJBF000079903,550 W SHORE DR,Galloway,NJ,39.41327969,-74.3777437,RES1,3001,,20,NE,2010,2010,3103,3,1,4948.414751,4948.414751,3505,NO,52.71,62.62,3,-2.42,6106,115.116341,124.638835,134.52717,140.400496,I,Above,Hip,0,5701,,57.66602047,0,1.3,,,,1,1,,0.03,nav,1,2010,3,, 14783,NJBF000079895,554 W SHORE DR,Galloway,NJ,39.41326367,-74.37807767,RES1,3001,,21,NE,2008,2008,3103,3,1,5815.327095,5815.327095,3505,YES,48.52,57.16,3,1.17,6106,115.109721,124.632661,134.520202,140.395308,I,Above,Hip,0,5701,,52.84155448,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 14784,NJBF000080091,113 LINCOLN DR,Galloway,NJ,39.41388563,-74.36978564,RES1,3001,,16,NE,1966,1966,3102,1,1,1202.383477,1202.383477,3507,NO,19.08,29.63,1,2.47,6106,115.271285,124.783969,134.691281,140.520722,I,Above,Hip,0,5701,,24.35190556,0,0,,,,1,1,,0.03,nav,1,1966,1,, 14785,NJBF000082626,602 FOURTH ST,Galloway,NJ,39.4317355,-74.4824355,RES1,3001,,17,NE,1970,1970,3102,2,1,584.2995273,584.2995273,3507,NO,28.77,38.31,1,0.21,6112,112.790187,122.5098,132.16685,138.298723,I,Above,Flat,0,5701,,33.53853734,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 14786,NJBF000078709,111 10TH STREET SO,Galloway,NJ,39.40707013,-74.37272213,RES1,3001,,16,NE,1956,1956,3102,2,1,1692.593389,1692.593389,3507,NO,36.64,50.39,1,1.18,6106,115.282915,124.796138,134.701492,140.560565,I,Above,Gable,0,5701,,43.5166299,0,0,,,,1,1,,0.03,nav,1,1956,2,, 14787,NJBF000076697,300 30TH STREET SO,Galloway,NJ,39.394427,-74.3842395,RES1,3001,,16,NE,1954,1954,3102,1,1,1577.420763,1577.420763,3507,NO,16.16,28.94,1,2.07,6106,115.182794,124.705821,134.591048,140.541397,I,Above,Hip,0,5701,,22.54979218,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 14788,NJBF000079764,121 QUAY BLVD,Galloway,NJ,39.41273461,-74.36023186,RES1,3001,,43,NE,1960,1960,3102,2,2,1009.480727,1009.480727,3507,YES,35.22,41.49,1,-0.96,6106,115.475685,124.977409,134.909748,140.687165,I,Above,Gable,0,5701,,38.35498381,0,0,,,,1,1,,0.03,nav,1,1960,2,, 14789,NJBF000079413,418 LAFAYETTE BLVD,Galloway,NJ,39.41104218,-74.37040209,RES1,3001,,16,NE,1963,1963,3102,1,1,1414.770374,1414.770374,3507,NO,13.46,19.89,1,-0.06,6106,115.288341,124.800572,134.708676,140.546964,I,Above,Gable,0,5701,,16.67580526,0,0,,,,1,1,,0.03,nav,1,1963,1,, 14790,NJBF000081613,1044 N SHORE DR,Galloway,NJ,39.42085989,-74.37260583,RES1,3001,,16,NE,1961,1961,3102,1,1,1768.453389,1768.453389,3507,NO,16.23,21.33,1,2.58,6106,115.143155,124.66059,134.554563,140.386421,I,Above,Flat,0,5701,,18.78336518,0,0,,,,1,1,,0.03,nav,1,1961,1,, 14791,NJBF000080479,124 WASHINGTON DR,Galloway,NJ,39.41520681,-74.36915229,RES1,3001,,16,NE,1970,1970,3102,1,1,2070.698777,2070.698777,3507,NO,13.77,23.18,1,0.88,6106,115.270456,124.782888,134.69064,140.514138,I,Above,Hip,0,5701,,18.47672766,0,0,,,,1,1,,0.03,nav,1,1970,1,, 14792,NJBF000079400,405 E BEACH AVE,Galloway,NJ,39.41098448,-74.36196643,RES1,3001,,16,NE,1966,1966,3102,3,1,1491.537016,1491.537016,3507,NO,43.93,57.9,1,1.52,6106,115.459169,124.961608,134.890924,140.681548,I,Above,Hip,0,5701,,50.91385884,0,0,,,,1,1,,0.03,nav,1,1966,3,, 14793,NJBF000080247,33 HEALD CIRCLE,Galloway,NJ,39.41443076,-74.36572538,RES1,3001,,16,NE,1984,1984,3102,2,1,1188.337172,1188.337172,3507,NO,22.98,28.87,1,1.95,6106,115.34756,124.8559,134.772888,140.578753,I,Above,Gable,0,5701,,25.92916808,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14794,NJBF000081039,720 SHERIDAN BLVD,Galloway,NJ,39.4173281,-74.36589673,RES1,3001,,16,NE,1983,1983,3102,1,1,1345.293444,1345.293444,3507,NO,15.54,25.9,1,2.52,6106,115.314226,124.823879,134.737865,140.539565,I,Above,Gable,0,5701,,20.72295026,0,0,,,,1,1,,0.03,nav,1,1983,1,, 14795,NJBF000081729,1508 E SHORE DR,Galloway,NJ,39.42235304,-74.36768388,RES1,3001,,17,NE,1998,1998,3102,2,1,1485.074394,1485.074394,3507,NO,26.31,37.88,1,-0.46,6106,115.227133,124.739732,134.644377,140.447376,I,Above,Hip,0,5701,,32.09358767,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 14796,NJBF000081694,25 TRAVERS PLACE,Galloway,NJ,39.42196189,-74.36785801,RES1,3001,,17,NE,1980,1980,3102,2,1,2359.342095,2359.342095,3507,YES,37.12,43.88,1,-0.94,6106,115.227589,124.740301,134.644909,140.449498,I,Above,Flat,0,5701,,40.4985044,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14797,NJBF000081701,,Galloway,NJ,39.42201838,-74.36764647,RES1,3001,,NaN,NE,1980,0,3102,2,1,1561.462961,1561.462961,3507,NO,29.44,36.55,1,2.59,6106,115.231282,124.743799,134.648879,140.452226,I,Above,Gable,0,5701,,32.99447208,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14798,NJBF000081670,13 HUTCHISON PLACE,Galloway,NJ,39.42163834,-74.36671018,RES1,3001,,17,NE,1983,1983,3102,1,1,2223.331771,2223.331771,3507,NO,21.04,30.02,1,1.55,6106,115.253928,124.765494,134.673294,140.472175,I,Above,Hip,0,5701,,25.52808607,0,1.1,,,,1,1,,0.03,nav,1,1983,1,, 14799,NJBF000080468,100 12TH STREET NO,Galloway,NJ,39.41516269,-74.35829778,RES1,3001,,15,NE,1953,1953,3102,1,1,1010.682568,1010.682568,3507,NO,16.12,22.4,1,-0.65,6106,115.489164,124.990458,134.925705,140.687673,I,Above,Flat,0,5701,,19.25844348,0,0,,,,1,1,,0.03,nav,1,1953,1,, 14800,NJBF000080715,10 VARDON RD,Galloway,NJ,39.41600228,-74.37287624,RES1,3001,,18,NE,2000,2000,3102,2,1,1344.553388,1344.553388,3507,NO,33.76,40.99,1,0.14,6106,115.187073,124.704054,134.601907,140.444116,I,Above,Gable,0,5701,,37.37893497,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 14801,NJBF000080141,114 11TH STREET NO,Galloway,NJ,39.41405048,-74.35820784,RES1,3001,,43,NE,1975,1975,3102,2,2,1113.074514,1113.074514,3507,NO,31.57,45.21,1,-0.51,6106,115.50256,125.003116,134.939553,140.702861,I,Above,Gable,0,5701,,38.38813981,0,0,,,,1,1,,0.03,nav,1,1975,2,, 14802,NJBF000081302,909 N SHORE DR,Galloway,NJ,39.41856686,-74.37904022,RES1,3001,,16,NE,1969,1969,3103,1,1,2326.630676,2326.630676,3505,NO,16.16,30.74,3,-0.83,6106,115.03623,124.561072,134.441613,140.311072,I,Above,Hip,0,5701,,23.44729963,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 14803,NJBF000076478,341 31ST STREET SO,Galloway,NJ,39.39357116,-74.38386998,RES1,3001,,16,NE,1947,1947,3102,2,1,1033.882637,1033.882637,3507,NO,36.77,42.81,1,1.27,6106,115.199737,124.721373,134.60787,140.558328,I,Above,Hip,0,5701,,39.78801693,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 14804,NJBF000078663,154 SHERIDAN SQUARE,Galloway,NJ,39.4068004,-74.36974644,RES1,3001,,16,NE,1953,1953,3102,2,1,828.5510533,828.5510533,3507,NO,24.24,38.93,1,2.51,6106,115.346124,124.855207,134.768086,140.611148,I,Above,Flat,0,5701,,31.58263718,0,0,,,,1,1,,0.03,nav,1,1953,2,, 14805,NJBF000079126,207 2ND STREET NO,Galloway,NJ,39.40969176,-74.36320682,RES1,3001,,15,NE,1953,1953,3102,1,1,747.7406916,747.7406916,3507,NO,17.21,24.07,1,2.71,6106,115.447759,124.950731,134.877889,140.678075,I,Above,Gable,0,5701,,20.63738016,0,0,,,,1,1,,0.03,nav,1,1953,1,, 14806,NJBF000079465,436 LAFAYETTE BLVD,Galloway,NJ,39.4112741,-74.37194548,RES1,3001,,18,NE,1983,2018,3102,3,1,1316.504989,1316.504989,3507,NO,58.8,67.13,1,0.8,6106,115.25469,124.768957,134.673069,140.519382,I,Above,Hip,0,5701,,62.96250026,0,1.1,,,,1,1,,0.03,nav,1,1983,3,, 14807,NJBF000076526,,Galloway,NJ,39.3937905,-74.4050975,RES1,3001,,NaN,NE,2002,0,3102,2,1,2988.322255,2988.322255,3505,NO,24.12,37.64,3,-0.3,6106,114.757331,124.32275,134.161305,140.218204,I,Above,Hip,0,5701,,30.88170601,0,0,,,,1,1,,0.03,nav,1,2002,2,, 14808,NJBF000078840,,Galloway,NJ,39.40785522,-74.37288898,RES1,3001,,NaN,NE,1969,0,3102,2,1,2164.345968,2164.345968,3507,NO,27.5,33.99,1,2.55,6106,115.271272,124.785148,134.68953,140.547906,I,Above,Flat,0,5701,,30.74658777,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14809,NJBF000079152,207 3RD STREET NO,Galloway,NJ,39.40986551,-74.36220136,RES1,3001,,19,NE,2017,2017,3102,3,1,958.6915995,958.6915995,3507,NO,46.17,59.68,1,1.23,6106,115.466189,124.968157,134.897735,140.691768,I,Above,Gable,0,5701,,52.92240392,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 14810,NJBF000081356,212 WASHINGTON DR,Galloway,NJ,39.41879535,-74.36959486,RES1,3001,,16,NE,1970,1970,3102,2,1,1923.09172,1923.09172,3507,YES,22.12,32.25,1,0.2,6106,115.224775,124.73869,134.642082,140.461515,I,Above,Flat,0,5701,,27.1896226,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 14811,NJBF000079838,24 ROOSEVELT BLVD NO,Galloway,NJ,39.41306203,-74.3685513,RES1,3001,,16,NE,1955,1955,3102,1,1,1299.594334,1299.594334,3507,NO,15.51,25.92,1,2.88,6106,115.304758,124.815668,134.726738,140.550908,I,Above,Gable,0,5701,,20.71374072,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14812,NJBF000081758,7 TRAVERS PLACE,Galloway,NJ,39.42260518,-74.36642104,RES1,3001,,17,NE,1981,1981,3102,1,1,2035.637567,2035.637567,3507,NO,20.13,32.88,1,2.72,6106,115.249945,124.761399,134.668938,140.464659,I,Above,Gable,0,5701,,26.50228698,0,0,,,,1,1,,0.03,nav,1,1981,1,, 14813,NJBF000078918,114 3RD STREET SO,Galloway,NJ,39.40835543,-74.36661334,RES1,3001,,15,NE,1956,1956,3102,1,1,1032.591368,1032.591368,3507,NO,14.31,28.14,1,0.24,6106,115.393114,124.899216,134.818788,140.641054,I,Above,Gable,0,5701,,21.22856203,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14814,NJBF000079752,525 LAFAYETTE BLVD,Galloway,NJ,39.41269854,-74.37495515,RES1,3001,,17,NE,1993,1993,3102,2,1,1518.252507,1518.252507,3507,NO,28.22,41.6,1,1.76,6106,115.178925,124.697578,134.593165,140.452916,I,Above,Hip,0,5701,,34.91198026,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 14815,NJBF000078890,801 BAYSHORE AVE,Galloway,NJ,39.40816036,-74.3720551,RES3A,3001,,17,NE,2009,2009,3301,2,1,1890.64865,1890.64865,3507,NO,24.18,32.97,1,2.56,6106,115.284992,124.797911,134.70412,140.557279,I,Above,Gable,0,5701,,28.57449801,0,1.1,,,,1,1,,0.03,nav,1,2009,2,, 14816,NJBF000076507,324 31ST STREET SO,Galloway,NJ,39.39369506,-74.38464977,RES1,3001,,16,NE,1955,1955,3102,2,1,1911.736813,1911.736813,3507,NO,40.62,55.48,1,2.36,6106,115.182333,124.705511,134.59013,140.544478,I,Above,Gable,0,5701,,48.04840912,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14817,NJBF000081541,1109 E SHORE DR,Galloway,NJ,39.41999833,-74.36293756,RES1,3001,,45,NE,1983,1983,3102,3,2,1205.113147,1205.113147,3507,NO,34.5,46.4,1,2.91,6106,115.346309,124.853978,134.772898,140.553553,I,Above,Flat,0,5701,,40.44649496,0,1.1,,,,1,1,,0.03,nav,1,1983,3,, 14818,NJBF000080995,1323 OUIMET RD,Galloway,NJ,39.41715184,-74.37538257,RES1,3001,,17,NE,1986,1986,3103,1,1,1732.801719,1732.801719,3505,NO,12.73,23.02,3,-2.11,6106,115.124625,124.644838,134.535529,140.388832,I,Above,Hip,0,5701,,17.87274529,0,0,,,,1,1,,0.03,nav,1,1986,1,, 14819,NJBF000079463,208 7TH STREET NO,Galloway,NJ,39.41126907,-74.3596733,RES1,3001,,15,NE,1950,1950,3102,1,1,1426.865517,1426.865517,3507,NO,12.97,24.54,1,1.11,6106,115.502274,125.002495,134.93744,140.714171,I,Above,Gable,0,5701,,18.75845259,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 14820,NJBF000079812,520 CAVERLY DR,Galloway,NJ,39.41295431,-74.37478684,RES1,3001,,16,NE,1980,1980,3102,2,1,2030.116204,2030.116204,3507,YES,27.49,42.34,1,1.36,6106,115.179701,124.698216,134.594002,140.452347,I,Above,Flat,0,5701,,34.91668572,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 14821,NJBF000082332,703 OHIO AVE,Galloway,NJ,39.4290359,-74.51206228,RES1,3001,,17,NE,1959,1959,3102,2,1,1400.015578,1400.015578,3505,NO,24.91,36.01,3,1.4,6110,112.197252,122.014581,131.624687,137.769809,I,Above,Gable,0,5701,,30.4632997,0,0,,,,1,1,,0.35,nav,1,1959,2,, 14822,NJBF000078850,206 2ND STREET SO,Galloway,NJ,39.4079244,-74.3651138,RES1,3001,,43,NE,1953,1953,3102,2,2,1300.040398,1300.040398,3507,NO,36.84,50.35,1,2.29,6106,115.427937,124.931949,134.855594,140.67012,I,Above,Gable,0,5701,,43.59822658,0,0,,,,1,1,,0.03,nav,1,1953,2,, 14823,NJBF000079586,510 LAFAYETTE BLVD,Galloway,NJ,39.41180597,-74.37389496,RES1,3001,,16,NE,1980,1980,3102,2,1,1315.619583,1315.619583,3507,NO,39.29,44.8,1,0.73,6106,115.209653,124.726629,134.62553,140.481376,I,Above,Flat,0,5701,,42.04451862,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14824,NJBF000080646,133 ROOSEVELT BLVD NO,Galloway,NJ,39.41575617,-74.36975539,RES1,3001,,16,NE,1969,1969,3102,1,1,1658.839655,1658.839655,3507,NO,20.96,33.03,1,2.2,6106,115.25264,124.765934,134.671707,140.497497,I,Above,Gable,0,5701,,26.99619346,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14825,NJBF000076438,316 32ND STREET SO,Galloway,NJ,39.39339595,-74.38551183,RES1,3001,,15,NE,1955,1955,3102,1,1,1114.995773,1114.995773,3507,NO,11.74,25.33,1,-0.17,6106,115.167846,124.69238,134.575132,140.534835,I,Above,Gable,0,5701,,18.5336543,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14826,NJBF000076733,3100 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39459506,-74.38561359,COM1,3001,,NaN,ME,1969,0,3401,1,1,7550.146997,7550.146997,3507,NO,15.51,24.5,1,2.01,6106,115.152687,124.67838,134.560322,140.517597,I,Above,Flat,0,NaN,,20.00192876,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14827,NJBF000079325,440 RISLEY RD,Galloway,NJ,39.41064739,-74.372401,RES1,3001,,16,NE,1984,1984,3102,1,1,1780.640155,1780.640155,3507,NO,17.48,27.01,1,0.48,6106,115.251975,124.766554,134.670037,140.520086,I,Above,Gable,0,5701,,22.24627686,0,0,,,,1,1,,0.03,nav,1,1984,1,, 14828,NJBF000079213,422 W SHORE DR,Galloway,NJ,39.41016959,-74.37100806,RES1,3001,,16,NE,1976,1976,3102,2,1,1476.63311,1476.63311,3507,YES,22.82,33.35,1,-0.35,6106,115.285169,124.797747,134.705032,140.548378,I,Above,Hip,0,5701,,28.08315549,0,0,,,,1,1,,0.03,nav,1,1976,2,, 14829,NJBF000076369,404 29TH STREET SO,Galloway,NJ,39.39317246,-74.38163551,RES1,3001,,19,NE,1994,1994,3102,2,1,1993.6206,1993.6206,3507,NO,30.6,39.99,1,-0.87,6106,115.250024,124.767251,134.659171,140.598469,I,Above,Hip,0,5701,,35.29848796,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 14830,NJBF000078499,254 5TH STREET SO,Galloway,NJ,39.40586401,-74.36657994,RES1,3001,,43,NE,1948,1948,3102,2,2,1122.260986,1122.260986,3505,NO,34.34,41.9,3,5.31,6106,115.420129,124.92451,134.845912,140.672885,I,Above,Flat,0,5701,,38.11960565,0,0,,,,1,1,,0.03,nav,1,1948,2,, 14831,NJBF000079211,446 HACKNEY PLACE,Galloway,NJ,39.41016398,-74.37340412,RES1,3001,,16,NE,1970,1970,3102,2,1,1691.549243,1691.549243,3507,NO,27.09,36.1,1,1.44,6106,115.236671,124.752346,134.653741,140.510227,I,Above,Gable,0,5701,,31.59627717,0,0,,,,1,1,,0.03,nav,1,1970,2,, 14832,NJBF000080144,702 W SHORE DR,Galloway,NJ,39.41405605,-74.38063223,RES1,3001,,18,NE,1960,1960,3103,3,1,2530.971055,2530.971055,3505,YES,32.24,46.77,3,-1.33,6106,115.049697,124.576274,134.457011,140.343693,I,Above,Gable,0,5701,,39.50453211,0,0,,,,1,1,,0.03,nav,1,1960,3,, 14833,NJBF000079222,20 GIRARD PLACE,Galloway,NJ,39.41021653,-74.36794018,RES1,3001,,17,NE,2014,2014,3102,3,1,1365.146691,1365.146691,3507,NO,38.68,46.46,1,-0.1,6106,115.346744,124.855546,134.770409,140.596579,I,Above,Hip,0,5701,,42.5687374,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 14834,NJBF000076543,316 31ST STREET SO,Galloway,NJ,39.39384129,-74.38476911,RES1,3001,,17,NE,1956,1956,3102,2,1,1782.302675,1782.302675,3507,NO,35.39,48.4,1,1.5,6106,115.178291,124.701811,134.586083,140.540709,I,Above,Gable,0,5701,,41.89553156,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 14835,NJBF000079089,227 3RD STREET NO,Galloway,NJ,39.40947329,-74.36170792,RES1,3001,,16,NE,1957,1957,3102,2,1,1482.153497,1482.153497,3507,NO,29.63,42.83,1,0.48,6106,115.480252,124.981413,134.91254,140.704427,I,Above,Flat,0,5701,,36.22844546,0,0,,,,1,1,,0.03,nav,1,1957,2,, 14836,NJBF000079200,215 4TH STREET NO,Galloway,NJ,39.41012294,-74.36129277,RES1,3001,,16,NE,1948,1948,3102,2,1,1613.03567,1613.03567,3507,NO,39.64,54.59,1,1.22,6106,115.481757,124.982909,134.914603,140.702877,I,Above,Hip,0,5701,,47.11376033,0,0,,,,1,1,,0.03,nav,1,1948,2,, 14837,NJBF000076517,337 31ST STREET SO,Galloway,NJ,39.39374786,-74.38400814,RES1,3001,,16,NE,1947,1947,3102,2,1,2139.244941,2139.244941,3507,NO,36.58,48.36,1,-0.07,6106,115.194966,124.717005,134.603097,140.553865,I,Above,Hip,0,5701,,42.47283156,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 14838,NJBF000078985,208 ROOSEVELT BLVD SO,Galloway,NJ,39.4088269,-74.36415353,RES1,3001,,15,NE,1950,1950,3102,1,1,1303.832964,1303.832964,3507,NO,20.72,29.13,1,1.43,6106,115.43778,124.941265,134.866673,140.673949,I,Above,Hip,0,5701,,24.92440798,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14839,NJBF000081160,804 E SHORE DR,Galloway,NJ,39.41781625,-74.36314832,RES1,3001,,16,NE,1981,1981,3102,1,1,1423.435231,1423.435231,3507,NO,16.69,24.99,1,-0.17,6106,115.364457,124.871564,134.792033,140.577477,I,Above,Gable,0,5701,,20.84341346,0,0,,,,1,1,,0.03,nav,1,1981,1,, 14840,NJBF000080786,24 MACDONALD PLACE,Galloway,NJ,39.41629738,-74.36733214,RES1,3001,,17,NE,1987,1987,3102,2,1,2005.215818,2005.215818,3507,NO,29.47,40.1,1,-0.77,6106,115.295933,124.806736,134.718061,140.529544,I,Above,Gable,0,5701,,34.78086475,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 14841,NJBF000081496,1017 N SHORE DR,Galloway,NJ,39.41960186,-74.37465216,RES1,3001,,17,NE,1988,1988,3102,2,1,1935.621458,1935.621458,3507,NO,31.71,39.38,1,2.67,6106,115.114565,124.634184,134.524372,140.369244,I,Above,Gable,0,5701,,35.54540724,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 14842,NJBF000081367,939 N SHORE DR,Galloway,NJ,39.41887131,-74.37638045,RES1,3001,,17,NE,1992,1992,3103,2,1,2267.402723,2267.402723,3505,NO,34.28,43.23,3,6.24,6106,115.08702,124.608613,134.495293,140.350516,I,Above,Gable,0,5701,,38.75243329,0,0,,,,1,1,,0.03,nav,1,1992,2,, 14843,NJBF000080640,607 SHERIDAN BLVD,Galloway,NJ,39.41573428,-74.3648899,RES1,3001,,16,NE,1972,1972,3102,1,1,1457.167642,1457.167642,3507,NO,17.86,31.26,1,-0.24,6106,115.350896,124.858911,134.776866,140.575715,I,Above,Gable,0,5701,,24.5607859,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14844,NJBF000081293,905 FOWNES AVE,Galloway,NJ,39.4185289,-74.36358148,RES1,3001,,17,NE,1986,1986,3102,1,1,1508.36129,1508.36129,3507,NO,19.44,29.68,1,2.32,6106,115.348445,124.856225,134.774929,140.561621,I,Above,Gable,0,5701,,24.55988164,0,0,,,,1,1,,0.03,nav,1,1986,1,, 14845,NJBF000078760,108 W BRIGANTINE AVE,Galloway,NJ,39.40740211,-74.36296118,RES1,3001,,17,NE,1998,1998,3102,3,1,1382.125007,1382.125007,3507,NO,51.07,61.69,1,0.26,6110,115.476897,124.978003,134.907452,140.710521,I,Above,Gable,0,5701,,56.37762402,0,1.1,,,,1,1,,0.35,nav,1,1998,3,, 14846,NJBF000079511,115 HAMILTON PLACE,Galloway,NJ,39.41145554,-74.36169971,RES1,3001,,43,NE,1952,1952,3102,2,2,1320.769183,1320.769183,3507,NO,27.69,35.8,1,-0.47,6106,115.45957,124.962022,134.891643,140.67987,I,Above,Flat,0,5701,,31.74678742,0,0,,,,1,1,,0.03,nav,1,1952,2,, 14847,NJBF000079480,103 PUTNAM PLACE,Galloway,NJ,39.41133864,-74.36310683,RES1,3001,,16,NE,1964,1964,3102,1,1,892.8014521,892.8014521,3507,NO,13.83,20.75,1,1.05,6106,115.432483,124.936374,134.862515,140.659087,I,Above,Flat,0,5701,,17.29180221,0,0,,,,1,1,,0.03,nav,1,1964,1,, 14848,NJBF000079489,101 PUTNAM PLACE,Galloway,NJ,39.41136973,-74.3632631,RES1,3001,,43,NE,1975,1975,3102,2,2,1242.004374,1242.004374,3507,YES,26.44,34.03,1,1.69,6106,115.429017,124.933098,134.858818,140.656232,I,Above,Hip,0,5701,,30.23467885,0,0,,,,1,1,,0.03,nav,1,1975,2,, 14849,NJBF000076793,,Galloway,NJ,39.39482681,-74.39931922,RES3A,3001,,NaN,NE,1969,0,3301,1,1,7274.600479,7274.600479,3507,NO,19.05,26.17,1,0.6,6106,114.866602,124.419803,134.270483,140.296927,I,Above,Hip,0,NaN,,22.60891359,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14850,NJBF000076476,4301 ATL-BRIGANTINE BLVD,Galloway,NJ,39.3935645,-74.4055745,RES1,3001,,45,NE,1987,1987,3102,2,2,1761.576866,1761.576866,3505,NO,29.78,44.64,3,4.18,6106,114.749783,124.316184,134.153823,140.213608,I,Above,Gable,0,5701,,37.2088275,0,0,,,,1,1,,0.03,nav,1,1987,2,, 14851,NJBF000076727,3210 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39455834,-74.38697094,COM1,3001,,NaN,ME,1969,0,3401,2,1,926.9346536,926.9346536,3507,NO,25.13,32.86,1,0.62,6106,115.125133,124.653335,134.532145,140.4967,I,Above,Gable,0,NaN,,28.99574731,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 14852,NJBF000080321,702 BOBBY JONES RD,Galloway,NJ,39.41469627,-74.38022367,RES1,3001,,16,NE,1957,1957,3103,2,1,1694.626981,1694.626981,3505,NO,31.14,41.55,3,6.26,6106,115.051459,124.577566,134.458734,140.342003,I,Above,Gable,0,5701,,36.3472765,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 14853,NJBF000081086,717 SHERIDAN BLVD,Galloway,NJ,39.41749564,-74.36545423,RES1,3001,,16,NE,1985,1985,3102,1,1,971.0814083,971.0814083,3507,NO,15.95,25.17,1,1.47,6106,115.321411,124.830671,134.745616,140.544556,I,Above,Gable,0,5701,,20.56180404,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14854,NJBF000081056,715 SHERIDAN BLVD,Galloway,NJ,39.4173724,-74.36536504,RES1,3001,,17,NE,1987,1987,3102,1,1,2062.597796,2062.597796,3507,NO,21.7,33.89,1,2.53,6106,115.324474,124.833601,134.748884,140.547541,I,Above,Hip,0,5701,,27.79554022,0,0,,,,1,1,,0.03,nav,1,1987,1,, 14855,NJBF000078686,139 9TH STREET SO,Galloway,NJ,39.40692902,-74.37145507,RES1,3001,,16,NE,2014,2014,3102,2,1,1400.70423,1400.70423,3507,NO,24.69,37.48,1,0.19,6106,115.310113,124.821541,134.730108,140.582457,I,Above,Gable,0,5701,,31.08796778,0,0,,,,1,1,,0.03,nav,1,2014,2,, 14856,NJBF000081256,844 W SHORE DR,Galloway,NJ,39.41833187,-74.3820196,RES1,3001,,17,NE,1960,1960,3103,3,1,1466.688531,1466.688531,3505,NO,65.35,73.18,3,6.88,6106,114.978148,124.50683,134.380459,140.265395,I,Above,Hip,0,5701,,69.26411993,0,1.1,,,,1,1,,0.03,nav,1,1960,3,, 14857,NJBF000081823,1419 E SHORE DR,Galloway,NJ,39.42335868,-74.36658372,RES1,3001,,17,NE,1990,1990,3102,2,1,1729.138167,1729.138167,3507,NO,31.69,37.77,1,0.53,6106,115.239063,124.750768,134.657119,140.452511,I,Above,Hip,0,5701,,34.72886307,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 14858,NJBF000081737,1506 E SHORE DR,Galloway,NJ,39.42241753,-74.36752576,RES1,3001,,18,NE,2000,2000,3102,2,1,1473.903577,1473.903577,3507,NO,30.06,37.91,1,2.8,6106,115.22965,124.742108,134.64708,140.449115,I,Above,Gable,0,5701,,33.98586378,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 14859,NJBF000081717,17 TRAVERS PLACE,Galloway,NJ,39.42222302,-74.36719891,RES1,3001,,17,NE,1992,1992,3102,2,1,1943.842942,1943.842942,3507,NO,39.75,53.34,1,2.59,6106,115.238188,124.75031,134.656296,140.456877,I,Above,Gable,0,5701,,46.54143663,0,0,,,,1,1,,0.03,nav,1,1992,2,, 14860,NJBF000081580,1032 N SHORE DR,Galloway,NJ,39.42046013,-74.37362252,RES1,3001,,17,NE,1979,1979,3102,2,1,1726.373707,1726.373707,3507,NO,30.58,37.78,1,2.8,6106,115.126677,124.645196,134.537069,140.37499,I,Above,Flat,0,5701,,34.18117166,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 14861,NJBF000081359,860 W SHORE DR,Galloway,NJ,39.41882619,-74.38070603,RES1,3001,,16,NE,1972,1972,3103,2,1,1463.898792,1463.898792,3505,NO,33.8,42.8,3,7.66,6106,114.999845,124.526799,134.403104,140.280476,I,Above,Gable,0,5701,,38.30077486,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 14862,NJBF000081416,1003 FOWNES AVE,Galloway,NJ,39.41907735,-74.36357087,RES1,3001,,18,NE,2013,2013,3102,2,1,2164.347529,2164.347529,3507,NO,35.41,42.99,1,-0.22,6106,115.34303,124.850988,134.769196,140.554919,I,Above,Gable,0,5701,,39.2001993,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 14863,NJBF000081499,1101 FOWNES AVE,Galloway,NJ,39.419632,-74.3634065,RES1,3001,,17,NE,1992,1992,3102,1,1,1692.393422,1692.393422,3507,NO,14.66,22.91,1,1.6,6106,115.340663,124.848646,134.766737,140.550619,I,Above,Hip,0,5701,,18.78740742,0,0,,,,1,1,,0.03,nav,1,1992,1,, 14864,NJBF000081357,215 ROOSEVELT BLVD NO,Galloway,NJ,39.41880748,-74.37003641,RES1,3001,,16,NE,1969,1969,3102,2,1,2216.127051,2216.127051,3507,YES,30,37.44,1,1.3,6106,115.215767,124.730155,134.632443,140.454239,I,Above,Gable,0,5701,,33.72335229,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 14865,NJBF000080789,19 MACDONALD PLACE,Galloway,NJ,39.41630693,-74.36682658,RES1,3001,,17,NE,1985,1985,3102,2,1,1894.241958,1894.241958,3507,NO,34.2,42.18,1,1.59,6106,115.306002,124.816269,134.728849,140.537514,I,Above,Hip,0,5701,,38.19277588,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 14866,NJBF000080788,13 VARDON RD,Galloway,NJ,39.41630628,-74.37244233,RES1,3001,,17,NE,1989,1989,3102,1,1,1494.249976,1494.249976,3507,NO,11.35,22.71,1,0.74,6106,115.192734,124.709276,134.607925,140.447236,I,Above,Flat,0,5701,,17.03022795,0,0,,,,1,1,,0.03,nav,1,1989,1,, 14867,NJBF000081208,810 FOWNES AVE,Galloway,NJ,39.41805274,-74.36405867,RES1,3001,,16,NE,1972,1972,3102,1,1,1319.206941,1319.206941,3507,NO,11.22,17.57,1,-0.81,6106,115.343729,124.851802,134.769746,140.559924,I,Above,Hip,0,5701,,14.39475127,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14868,NJBF000081224,209 ROOSEVELT BLVD NO,Galloway,NJ,39.41812492,-74.36994424,RES1,3001,,16,NE,1965,1965,3102,2,1,1366.18156,1366.18156,3507,YES,29.11,44.02,1,-0.09,6106,115.224571,124.738715,134.64187,140.464385,I,Above,Hip,0,5701,,36.5670506,0,0,,,,1,1,,0.03,nav,1,1965,2,, 14869,NJBF000081207,1307 VARDON RD,Galloway,NJ,39.41803951,-74.37374373,RES1,3001,,17,NE,1984,1984,3102,1,1,2295.782497,2295.782497,3507,NO,12.89,26.07,1,-0.1,6106,115.14874,124.667137,134.561014,140.404013,I,Above,Hip,0,5701,,19.48037809,0,0,,,,1,1,,0.03,nav,1,1984,1,, 14870,NJBF000080246,606 BOBBY JONES RD,Galloway,NJ,39.41442859,-74.37959363,RES1,3001,,16,NE,1962,1962,3103,1,1,2029.04355,2029.04355,3505,NO,17.61,23.56,3,3.1,6106,115.066988,124.592201,134.475108,140.355691,I,Above,Hip,0,5701,,20.58143033,0,0,,,,1,1,,0.03,nav,1,1962,1,, 14871,NJBF000079419,420 LAFAYETTE BLVD,Galloway,NJ,39.41106303,-74.37057188,RES1,3001,,17,NE,2015,2015,3102,2,1,1174.9612,1174.9612,3507,NO,34.57,41.99,1,2.3,6106,115.284683,124.797133,134.704801,140.543986,I,Above,Gable,0,5701,,38.28365909,0,0,,,,1,1,,0.03,nav,1,2015,2,, 14872,NJBF000080742,138 WASHINGTON DR,Galloway,NJ,39.41614292,-74.36946395,RES1,3001,,17,NE,2016,2016,3102,3,1,1730.654426,1730.654426,3507,NO,58.04,64.65,1,2.87,6106,115.254536,124.767623,134.673774,140.497265,I,Above,Hip,0,5701,,61.34445089,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 14873,NJBF000081154,35 VARDON RD,Galloway,NJ,39.41778914,-74.37273001,RES1,3001,,17,NE,1988,1988,3102,2,1,2001.583395,2001.583395,3507,NO,33.87,48.66,1,-0.32,6106,115.171779,124.688963,134.585558,140.423645,I,Above,Flat,0,5701,,41.26607839,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 14874,NJBF000080993,15 11TH STREET NO,Galloway,NJ,39.4171464,-74.36131454,RES1,3001,,16,NE,1955,1955,3102,1,1,1517.698011,1517.698011,3507,NO,18.93,26.12,1,1.27,6106,115.40814,124.913235,134.83898,140.615117,I,Above,Hip,0,5701,,22.52434193,0,0,,,,1,1,,0.03,nav,1,1955,1,, 14875,NJBF000081074,902 SHERIDAN BLVD,Galloway,NJ,39.41744671,-74.36778477,RES1,3001,,17,NE,1983,1983,3102,2,1,2526.795277,2526.795277,3507,NO,39.54,52.71,1,2.73,6106,115.275005,124.786658,134.695809,140.507748,I,Above,Flat,0,5701,,46.12236768,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 14876,NJBF000081129,205 ROOSEVELT BLVD NO,Galloway,NJ,39.417661,-74.3699885,RES1,3001,,16,NE,1966,1966,3102,2,1,1416.603236,1416.603236,3507,NO,41.21,49.75,1,3,6106,115.228401,124.742484,134.645958,140.469551,I,Above,Hip,0,5701,,45.47538414,0,0,,,,1,1,,0.03,nav,1,1966,2,, 14877,NJBF000078863,307 W BEACH AVE,Galloway,NJ,39.40800404,-74.36686533,RES1,3001,,43,NE,1960,1960,3102,2,3,2053.933192,2053.933192,3507,NO,29.68,42.87,1,-0.31,6106,115.391722,124.897908,134.817104,140.641488,I,Above,Gable,0,5701,,36.27157224,0,0,,,,1,1,,0.03,nav,1,1960,2,, 14878,NJBF000078425,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,1961.279281,1961.279281,3505,NO,39.62,46.57,3,4.6,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,43.09249491,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14879,NJBF000078435,179 10TH STREET SO,Galloway,NJ,39.40550451,-74.37126779,RES1,3001,,16,NE,1950,1950,3102,2,1,1044.409993,1044.409993,3505,NO,27.94,35.49,3,-0.55,6106,115.328956,124.839255,134.749263,140.603502,I,Above,Gable,0,5701,,31.71489865,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 14880,NJBF000080499,704 STERLING PLACE,Galloway,NJ,39.41527859,-74.38019002,RES1,3001,,16,NE,1972,1972,3103,2,1,1317.553768,1317.553768,3505,NO,29.13,38.47,3,3.98,6106,115.04621,124.572341,134.453086,140.334985,I,Above,Hip,0,5701,,33.80260298,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14881,NJBF000080465,107 12TH STREET NO,Galloway,NJ,39.41515478,-74.35763428,RES1,3001,,17,NE,1991,1991,3102,1,1,2075.013632,2075.013632,3507,NO,16.92,26.3,1,-0.23,6106,115.502548,125.003232,134.940198,140.698283,I,Above,Hip,0,5701,,21.61133766,0,0,,,,1,1,,0.03,nav,1,1991,1,, 14882,NJBF000079991,51 HEALD RD,Galloway,NJ,39.41358129,-74.36252188,RES1,3001,,16,NE,1960,1960,3102,1,1,1745.747211,1745.747211,3507,NO,15.47,21.96,1,-0.9,6106,115.420843,124.925385,134.851186,140.640366,I,Above,Hip,0,5701,,18.71452953,0,0,,,,1,1,,0.03,nav,1,1960,1,, 14883,NJBF000080447,2 MACDONALD PLACE,Galloway,NJ,39.41508104,-74.36607919,RES1,3001,,NaN,NE,1972,1970,3102,2,1,1903.794705,1903.794705,3507,NO,38.21,51.51,1,-0.41,6106,115.333707,124.842705,134.758243,140.564925,I,Above,Gable,0,5701,,44.85835257,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14884,NJBF000078406,906 W BEACH AVE,Galloway,NJ,39.40532823,-74.37078481,RES1,3001,,17,NE,2016,2016,3102,2,1,782.2533695,782.2533695,3505,NO,24.31,38.19,3,-0.47,6106,115.340633,124.85016,134.761477,140.613377,I,Above,Hip,0,5701,,31.24954669,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 14885,NJBF000080896,23 11TH STREET NO,Galloway,NJ,39.41676677,-74.36080672,RES1,3001,,17,NE,1992,1992,3102,2,1,1960.756549,1960.756549,3507,NO,36.7,49.47,1,-0.99,6106,115.422242,124.92669,134.854076,140.627931,I,Above,Gable,0,5701,,43.08559015,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 14886,NJBF000079588,445 LAFAYETTE BLVD,Galloway,NJ,39.41181195,-74.37258166,RES1,3001,,16,NE,1965,1965,3102,1,1,1662.382,1662.382,3507,NO,18.68,29.66,1,0.73,6106,115.2362,124.751495,134.653611,140.502335,I,Above,Gable,0,5701,,24.16951064,0,0,,,,1,1,,0.03,nav,1,1965,1,, 14887,NJBF000079259,506 HACKNEY PLACE,Galloway,NJ,39.41037813,-74.3740982,RES1,3001,,16,NE,1972,1972,3102,1,1,1764.235505,1764.235505,3507,NO,17.13,25.66,1,0,6106,115.220363,124.737047,134.636578,140.496396,I,Above,Gable,0,5701,,21.39112423,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14888,NJBF000080428,712 BOBBY JONES RD,Galloway,NJ,39.41500937,-74.38100727,RES1,3001,,15,NE,1965,1965,3103,1,1,1130.757908,1130.757908,3505,NO,9.89,18.81,3,-1.83,6106,115.032353,124.559567,134.43859,140.32521,I,Above,Gable,0,5701,,14.34873289,0,0,,,,1,1,,0.03,nav,1,1965,1,, 14889,NJBF000080421,121 ROOSEVELT BLVD NO,Galloway,NJ,39.4149915,-74.3694675,RES1,3001,,16,NE,1972,1972,3102,2,1,1046.645175,1046.645175,3507,NO,23.23,32.69,1,-0.1,6106,115.266324,124.779039,134.686196,140.511823,I,Above,Gable,0,5701,,27.95889082,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14890,NJBF000080350,715 W SHORE DR,Galloway,NJ,39.41479385,-74.38138937,RES1,3001,,15,NE,1962,1962,3103,1,1,1070.568951,1070.568951,3505,NO,18.6,29.24,3,1.3,6106,115.026774,124.554491,134.432787,140.321795,I,Above,Gable,0,5701,,23.91934596,0,0,,,,1,1,,0.03,nav,1,1962,1,, 14891,NJBF000080376,28 KIRKWOOD CIRCLE,Galloway,NJ,39.41488229,-74.36249203,RES1,3001,,17,NE,1993,1993,3102,1,1,1724.304496,1724.304496,3507,NO,21.46,29.56,1,2.79,6106,115.407928,124.913108,134.837876,140.624604,I,Above,Gable,0,5701,,25.51160186,0,1.1,,,,1,1,,0.03,nav,1,1993,1,, 14892,NJBF000080353,105 11TH STREET NO,Galloway,NJ,39.41479743,-74.3583955,RES1,3001,,45,NE,1958,1958,3102,2,3,1912.604431,1912.604431,3507,NO,22.91,36.67,1,1.67,6106,115.491008,124.992182,134.927496,140.690649,I,Above,Gable,0,5701,,29.79263282,0,0,,,,1,1,,0.03,nav,1,1958,2,, 14893,NJBF000080409,138 LINCOLN DR,Galloway,NJ,39.4149568,-74.37087893,RES1,3001,,16,NE,1974,1974,3102,2,1,893.5352853,893.5352853,3507,NO,28.91,39.66,1,1.16,6106,115.23816,124.752495,134.656184,140.489588,I,Above,Gable,0,5701,,34.2811888,0,0,,,,1,1,,0.03,nav,1,1974,2,, 14894,NJBF000080155,1106 E BEACH AVE,Galloway,NJ,39.41410855,-74.35698496,RES1,3001,,16,NE,1945,1945,3102,2,1,657.2968661,657.2968661,3507,NO,23.25,34.4,1,0.3,6106,115.526448,125.025908,134.96545,140.721447,I,Above,Gable,0,5701,,28.82065805,0,0.1,,,,1,1,,0.03,nav,1,1945,2,, 14895,NJBF000080226,103 10TH STREET NO,Galloway,NJ,39.41436609,-74.35914716,RES1,3001,,43,NE,1972,1972,3102,2,2,1393.409708,1393.409708,3507,NO,30.08,35.96,1,1.61,6106,115.48044,124.982071,134.915824,140.684098,I,Above,Gable,0,5701,,33.01982891,0,0,,,,1,1,,0.03,nav,1,1972,2,, 14896,NJBF000080202,206 13TH STREET NO,Galloway,NJ,39.41426887,-74.35601766,RES1,3001,,43,NE,1950,1950,3102,3,2,1390.891028,1390.891028,3507,NO,55.01,62.12,1,-0.83,6106,115.544136,125.042825,134.984735,140.734732,I,Above,Flat,0,5701,,58.56416049,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 14897,NJBF000079945,18 HEALD RD,Galloway,NJ,39.41342877,-74.36626769,RES1,3001,,16,NE,1972,1972,3102,2,1,1291.507117,1291.507117,3507,NO,41.77,50.93,1,2.77,6106,115.347009,124.855488,134.77196,140.582697,I,Above,Gable,0,5701,,46.35038553,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 14898,NJBF000080062,13 HEALD RD,Galloway,NJ,39.41381036,-74.36696138,RES1,3001,,17,NE,2006,2006,3102,2,1,1529.502196,1529.502196,3507,NO,33.79,42.91,1,2.48,6106,115.329085,124.838508,134.752924,140.566847,I,Above,Hip,0,5701,,38.34642456,0,0,,,,1,1,,0.03,nav,1,2006,2,, 14899,NJBF000079959,14 HEALD RD,Galloway,NJ,39.4134595,-74.3666145,RES1,3001,,16,NE,1973,1973,3102,2,1,1024.85053,1024.85053,3507,NO,27.1,39.29,1,-0.9,6106,115.339711,124.848591,134.764169,140.576792,I,Above,Hip,0,5701,,33.19706428,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 14900,NJBF000079299,305 E BEACH AVE,Galloway,NJ,39.41054523,-74.36270214,RES1,3001,,18,NE,2006,2006,3102,3,1,1742.83223,1742.83223,3507,NO,57.21,70.48,1,-0.3,6106,115.448964,124.951923,134.879711,140.675399,I,Above,Flat,0,5701,,63.84783815,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 14901,NJBF000079279,427 W SHORE DR,Galloway,NJ,39.41047122,-74.37130214,RES1,3001,,16,NE,1947,1947,3102,1,1,2219.570186,2219.570186,3507,NO,14.7,29.08,1,0.84,6106,115.276074,124.789168,134.695495,140.539866,I,Above,Hip,0,5701,,21.88837511,0,0,,,,1,1,,0.03,nav,1,1947,1,, 14902,NJBF000079312,106 LAFAYETTE PLACE,Galloway,NJ,39.41060212,-74.36647803,RES1,3001,,18,NE,2014,2014,3102,3,1,1742.831283,1742.831283,3507,NO,37.34,47.47,1,2.59,6106,115.372242,124.879517,134.797739,140.614928,I,Above,Hip,0,5701,,42.40765205,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 14903,NJBF000079098,307 W EVANS BLVD,Galloway,NJ,39.40954214,-74.36759458,RES1,3001,,16,NE,1960,1960,3102,1,1,2352.758066,2352.758066,3507,NO,19.58,28.24,1,0.54,6106,115.360789,124.868798,134.785036,140.610567,I,Above,Hip,0,5701,,23.90563521,0,0,,,,1,1,,0.03,nav,1,1960,1,, 14904,NJBF000079268,208 E EVANS BLVD,Galloway,NJ,39.4104175,-74.3637955,RES1,3001,,15,NE,1962,1962,3101,1,1,1214.644014,1214.644014,3507,NO,17.12,27.85,1,-0.12,6106,115.428281,124.932374,134.857491,140.659718,I,Above,Flat,0,5701,,22.48559244,0,0,,,,1,1,,0.03,nav,1,1962,1,, 14905,NJBF000079307,436 RISLEY RD,Galloway,NJ,39.4105819,-74.37206379,RES1,3001,,16,NE,1985,1985,3102,1,1,1483.318431,1483.318431,3507,NO,18.69,24.52,1,2.14,6106,115.259481,124.773598,134.677961,140.526295,I,Above,Gable,0,5701,,21.60453334,0,0,,,,1,1,,0.03,nav,1,1985,1,, 14906,NJBF000078511,148 10TH STREET SO,Galloway,NJ,39.40591683,-74.37235256,RES1,3001,,17,NE,2010,2010,3102,2,1,2228.467764,2228.467764,3505,NO,36.91,51.13,3,6.45,6106,115.30257,124.814615,134.721676,140.5811,I,Above,Hip,0,5701,,44.01944864,0,1.1,,,,1,1,,0.03,nav,1,2010,2,, 14907,NJBF000078500,163 10TH STREET SO,Galloway,NJ,39.40586863,-74.37165867,RES1,3001,,16,NE,1960,1960,3102,1,1,1453.621653,1453.621653,3505,NO,15.73,26.73,3,2.13,6106,115.317167,124.828231,134.73703,140.592696,I,Above,Hip,0,5701,,21.22929184,0,0,,,,1,1,,0.03,nav,1,1960,1,, 14908,NJBF000078639,116 10TH STREET SO,Galloway,NJ,39.40661517,-74.37293201,RES1,3001,,15,NE,1946,1946,3102,1,1,1320.610736,1320.610736,3507,NO,17.23,27.91,1,0.43,6106,115.283444,124.796698,134.701856,140.563031,I,Above,Gable,0,5701,,22.56982144,0,0,,,,1,1,,0.03,nav,1,1946,1,, 14909,NJBF000078619,235 5TH STREET SO,Galloway,NJ,39.40652449,-74.36658517,RES1,3001,,16,NE,1955,1955,3102,1,1,1042.3927,1042.3927,3507,NO,14.25,23.73,1,0,6106,115.413027,124.917881,134.83882,140.664513,I,Above,Gable,0,5701,,18.98999871,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 14910,NJBF000078523,170 9TH STREET SO,Galloway,NJ,39.40599702,-74.37126372,RES1,3001,,16,NE,1953,1953,3102,1,1,1824.964632,1824.964632,3505,NO,19.74,27.67,3,5.75,6106,115.32383,124.834435,134.744119,140.597319,I,Above,Hip,0,5701,,23.70794051,0,0,,,,1,1,,0.03,nav,1,1953,1,, 14911,NJBF000078701,135 9TH STREET SO,Galloway,NJ,39.40700048,-74.37155606,RES1,3001,,16,NE,1959,1959,3102,1,1,1339.328831,1339.328831,3507,NO,16.29,28.02,1,0.9,6106,115.307316,124.818921,134.72719,140.579954,I,Above,Gable,0,5701,,22.15552267,0,0,,,,1,1,,0.03,nav,1,1959,1,, 14912,NJBF000076880,3005-11 ATL-BRIGANTINE BL,Galloway,NJ,39.39516737,-74.38561314,COM1,3001,,NaN,ME,1969,0,3401,1,1,7831.486053,7831.486053,3507,YES,17.34,27.06,1,1.62,6106,115.146498,124.672631,134.554293,140.51015,I,Above,Flat,0,NaN,,22.20259637,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14913,NJBF000079247,504 HACKNEY PLACE,Galloway,NJ,39.4103145,-74.37391736,RES1,3001,,16,NE,1973,1973,3102,1,1,1419.308748,1419.308748,3507,NO,13.93,26.24,1,-0.05,6106,115.224702,124.741119,134.641142,140.500109,I,Above,Flat,0,5701,,20.08380828,0,0,,,,1,1,,0.03,nav,1,1973,1,, 14914,NJBF000076397,2906 OCEAN AVE,Galloway,NJ,39.3932559,-74.38230906,RES1,3001,,16,NE,1956,1956,3102,1,1,1666.678497,1666.678497,3507,YES,14.46,26.78,1,1.7,6106,115.235277,124.753793,134.644093,140.586859,I,Above,Hip,0,5701,,20.61918643,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 14915,NJBF000080546,3 KIRKWOOD CIRCLE,Galloway,NJ,39.41538516,-74.36463432,RES1,3001,,17,NE,1987,1987,3102,1,1,1880.336622,1880.336622,3507,NO,19.19,28.52,1,-0.27,6106,115.359651,124.867253,134.786161,140.584182,I,Above,Hip,0,5701,,23.85532462,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 14916,NJBF000078992,,Galloway,NJ,39.40886536,-74.36224109,RES1,3001,,NaN,NE,2007,0,3102,2,1,2041.908429,2041.908429,3507,NO,33.33,41.15,1,2.64,6106,115.475934,124.977265,134.907488,140.703608,I,Above,Flat,0,5701,,37.23997199,0,0,,,,1,1,,0.03,nav,1,2007,2,, 14917,NJBF000078555,168 8TH STREET SO,Galloway,NJ,39.40617415,-74.37023195,RES1,3001,,16,NE,1948,1948,3102,2,1,2220.849634,2220.849634,3505,NO,38.83,47.23,3,4.61,6106,115.34289,124.85222,134.76433,140.611392,I,Above,Gable,0,5701,,43.03267443,0,0,,,,1,1,,0.03,nav,1,1948,2,, 14918,NJBF000078453,239 7TH STREET SO,Galloway,NJ,39.40560697,-74.36803476,RES1,3001,,47,NE,1990,1990,3102,2,2,1396.209566,1396.209566,3505,NO,29.83,42.71,3,2.42,6106,115.393412,124.899476,134.81742,140.653217,I,Above,Flat,0,5701,,36.27221287,0,0,,,,1,1,,0.03,nav,1,1990,2,, 14919,NJBF000080080,542 CAVERLY DR,Galloway,NJ,39.41386178,-74.37634754,RES1,3001,,16,NE,1995,1995,3103,2,1,1332.343277,1332.343277,3505,NO,39.93,51.45,3,2.08,6106,115.138699,124.659486,134.550715,140.415532,I,Above,Gable,0,5701,,45.68892249,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 14920,NJBF000079384,404 LAFAYETTE BLVD,Galloway,NJ,39.4109074,-74.36909313,RES1,3001,,16,NE,1972,1972,3102,1,1,1562.644631,1562.644631,3507,NO,18.76,25.01,1,0.02,6106,115.316226,124.826783,134.73824,140.569529,I,Above,Gable,0,5701,,21.88647641,0,0,,,,1,1,,0.03,nav,1,1972,1,, 14921,NJBF000078508,183 9TH STREET SO,Galloway,NJ,39.40590424,-74.37053647,RES1,3001,,16,NE,1950,1950,3102,2,1,1233.863856,1233.863856,3505,NO,35.17,49.01,3,-0.61,6106,115.339582,124.849146,134.76069,140.610009,I,Above,Gable,0,5701,,42.09184005,0,0,,,,1,1,,0.03,nav,1,1950,2,, 14922,NJBF000076739,3312 ATL-BRIGANTINE BLVD,Galloway,NJ,39.39462374,-74.38862129,COM1,3001,,NaN,ME,1969,0,3401,2,1,1602.015892,1602.015892,3507,NO,25.84,36.51,1,2.88,6106,115.090387,124.621775,134.496742,140.469791,I,Above,Gable,0,NaN,,31.17744166,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14923,NJBF000080242,901 E EVANS BLVD,Galloway,NJ,39.41440927,-74.3605446,RES1,3001,,16,NE,1956,1956,3102,1,1,1713.30899,1713.30899,3507,NO,12.57,22.64,1,1.55,6106,115.451944,124.954947,134.885082,140.661416,I,Above,Gable,0,5701,,17.60277385,0,0,,,,1,1,,0.03,nav,1,1956,1,, 14924,NJBF000080322,100 11TH STREET NO,Galloway,NJ,39.41469828,-74.35892182,RES1,3001,,43,NE,1955,1955,3102,2,2,838.7992491,838.7992491,3507,NO,31.54,41.37,1,-0.32,6106,115.481495,124.983104,134.91715,140.683548,I,Above,Flat,0,5701,,36.45677112,0,0,,,,1,1,,0.03,nav,1,1955,2,, 14925,NJBF000080276,105 WASHINGTON DR,Galloway,NJ,39.41452463,-74.3681807,RES1,3001,,16,NE,1966,1966,3102,1,1,1366.60263,1366.60263,3507,NO,15.42,29.22,1,-0.27,6106,115.297082,124.808168,134.718927,140.538325,I,Above,Gable,0,5701,,22.32071931,0,0,,,,1,1,,0.03,nav,1,1966,1,, 14926,NJBF000081545,1200 E SHORE DR,Galloway,NJ,39.42001141,-74.36406621,RES1,3001,,17,NE,2003,2003,3102,3,1,1426.076659,1426.076659,3507,NO,49.51,57.16,1,0.41,6106,115.323549,124.832258,134.748314,140.535267,I,Above,Gable,0,5701,,53.33354463,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 14927,NJBF000081477,1015 N SHORE DR,Galloway,NJ,39.41944126,-74.37494253,RES1,3001,,17,NE,1983,1983,3102,3,1,2054.51596,2054.51596,3507,NO,32.48,39.82,1,-0.88,6106,115.110313,124.630255,134.519888,140.366576,I,Above,Flat,0,5701,,36.14991109,0,0,,,,1,1,,0.03,nav,1,1983,3,, 14928,NJBF000080336,3 CUMMINGS PLACE,Galloway,NJ,39.41474935,-74.37214695,RES1,3001,,16,NE,1972,1972,3102,2,1,1797.159992,1797.159992,3507,NO,30.86,40.46,1,2.87,6106,115.214669,124.730443,134.631184,140.471854,I,Above,Gable,0,5701,,35.6591209,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 14929,NJBF000080216,31 HEALD CIRCLE,Galloway,NJ,39.41431472,-74.36578059,RES1,3001,,17,NE,1985,1985,3102,2,1,1325.137215,1325.137215,3507,NO,24.1,35.11,1,2.11,6106,115.347634,124.855983,134.772929,140.579318,I,Above,Gable,0,5701,,29.60410421,0,0,,,,1,1,,0.03,nav,1,1985,2,, 14930,NJBF000080675,6 MACDERMOTT PLACE,Galloway,NJ,39.41588544,-74.36629817,RES1,3001,,17,NE,1987,1987,3102,1,1,1616.813001,1616.813001,3507,NO,10.88,16.9,1,-0.57,6106,115.320999,124.83055,134.744832,140.551303,I,Above,Gable,0,5701,,13.89062706,0,0,,,,1,1,,0.03,nav,1,1987,1,, 14931,NJBF000079914,556 W SHORE DR,Galloway,NJ,39.4133139,-74.37829783,RES1,3001,,17,NE,1973,1973,3103,2,1,1619.854931,1619.854931,3505,NO,41.51,48.05,3,8.61,6106,115.104739,124.627986,134.514955,140.391107,I,Above,Gable,0,5701,,44.78199355,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 14932,NJBF000079951,1002 E BEACH AVE,Galloway,NJ,39.4134511,-74.35785809,RES1,3001,,17,NE,2002,2002,3102,2,1,2211.046684,2211.046684,3507,NO,34.21,41.7,1,0.58,6106,115.515831,125.015686,134.953529,140.715791,I,Above,Gable,0,5701,,37.95506453,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 14933,NJBF000078366,,Galloway,NJ,39.40564398,-74.36659767,RES1,3001,,NaN,NE,1984,0,3102,2,1,2997.382381,2997.382381,3505,NO,28.83,38.08,3,4.79,6106,115.422101,124.926347,134.847851,140.675365,I,Above,Hip,0,5701,,33.45519272,0,0,,,,1,1,,0.03,nav,1,1984,2,, 14934,NJBF000082155,38 NATALIE TERRACE,Galloway,NJ,39.42712922,-74.49477783,RES1,3001,,17,NE,1927,1927,3102,1,1,1268.107638,1268.107638,3505,NO,15.99,21.55,3,0.37,6112,112.567298,122.33822,131.978892,138.134792,I,Above,Gable,0,5701,,18.7682785,0,0,,,,1,1,,0.35,nav,1,1927,1,, 14935,NJBF000079081,,Galloway,NJ,39.40941099,-74.37221186,RES3B,3001,,NaN,ME,1969,0,3301,2,1,4786.836264,4786.836264,3507,NO,22.17,32.36,1,0.69,6106,115.268703,124.782466,134.687361,140.538851,I,Above,Flat,0,NaN,,27.26424968,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14936,NJBF000078524,,Galloway,NJ,39.40600649,-74.37388626,RES1,3001,,NaN,NE,1969,0,3102,2,1,3688.726077,3688.726077,3505,NO,21.61,35.26,3,-0.16,6102,115.270483,124.784718,134.687964,140.555665,I,Above,Flat,0,5701,,28.4350777,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14937,NJBF000078592,,Galloway,NJ,39.40638525,-74.37374789,RES1,3001,,NaN,NE,1969,0,3102,2,1,2292.137296,2292.137296,3507,NO,33.41,43.07,1,0.05,6106,115.269291,124.783547,134.686868,140.553015,I,Above,Flat,0,5701,,38.24387608,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14938,NJBF000078560,,Galloway,NJ,39.4061905,-74.3737555,RES1,3001,,NaN,NE,1969,0,3102,2,1,2394.454707,2394.454707,3505,NO,31.36,43.66,3,7.43,6106,115.271174,124.785332,134.688768,140.555365,I,Above,Flat,0,5701,,37.50885198,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14939,NJBF000078492,,Galloway,NJ,39.40581105,-74.37389984,RES1,3001,,NaN,NE,1969,0,3102,2,1,4028.676898,4028.676898,3505,NO,19.79,25.14,3,-2.85,6102,115.272257,124.786399,134.689744,140.557933,I,Above,Flat,0,5701,,22.46414413,0,0,,,,1,1,,0.03,nav,1,1969,2,, 14940,NJBF000083174,615 S NEW YORK RD,Galloway,NJ,39.43889038,-74.48069092,RES1,3001,282,NaN,NE,1900,1900,3102,2,1,1244.186837,1244.186837,3505,NO,40.83,54.12,3,3.07,6112,112.775371,122.465961,132.119101,138.221713,I,Above,Gable,0,5701,,47.4744143,0,0,,,,1,1,,0.35,nav,1,1900,2,, 14941,NJBF000087347,NEW YORK RD,Galloway,NJ,39.531819,-74.46365,RES1,3001,,NaN,NE,1969,0,3101,1,1,3250.193639,3250.193639,3505,NO,11.12,25.38,3,-2.74,6106,112.527259,121.737769,131.340335,137.155346,I,Above,Hip,0,5701,,18.24734356,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14942,NJBF000083458,510 WASHINGTON AVE,Galloway,NJ,39.44509649,-74.4703415,RES1,3001,,16,NE,1989,1989,3102,1,1,1643.037131,1643.037131,3505,NO,26.03,36.86,3,8.57,6106,112.941883,122.586281,132.251758,138.323496,I,Above,Gable,0,5701,,31.44063329,0,0,,,,1,1,,0.03,nav,1,1989,1,, 14943,NJBF000083328,533 S NEW YORK RD,Galloway,NJ,39.44234559,-74.47814519,RES1,3001,,16,NE,1976,1976,3102,2,1,1223.616092,1223.616092,3505,NO,34.22,43.74,3,5.01,6110,112.803205,122.475155,132.129494,138.217224,I,Above,Gable,0,5701,,38.98041039,0,0,,,,1,1,,0.35,nav,1,1976,2,, 14944,NJBF000083330,605 SHARSWOOD AVE,Galloway,NJ,39.44239644,-74.47937116,RES1,3001,,16,NE,1926,1926,3102,1,1,1485.937396,1485.937396,3505,NO,21.49,33.94,3,8.26,6112,112.77802,122.45269,132.104844,138.193101,I,Above,Flat,0,5701,,27.71686025,0,0,,,,1,1,,0.35,nav,1,1926,1,, 14945,NJBF000084783,211 S NEW YORK RD,Galloway,NJ,39.46913084,-74.46421648,RES1,3001,,16,NE,1886,1886,3102,1,1,724.0752865,724.0752865,3505,NO,9.92,24.32,3,-1.08,6106,112.90025,122.439815,132.09379,138.079231,I,Above,Gable,0,5701,,17.12320812,0,0,,,,1,1,,0.03,nav,1,1886,1,, 14946,NJBF000084767,211 S NEW YORK RD,Galloway,NJ,39.46894902,-74.46336118,RES1,3001,,16,NE,1886,1886,3102,1,1,1259.90629,1259.90629,3505,NO,20.19,27.1,3,5.57,6106,112.918047,122.457235,132.112753,138.098386,I,Above,Flat,0,5701,,23.64375238,0,0,,,,1,1,,0.03,nav,1,1886,1,, 14947,NJBF000083183,724 BROOK LN,Galloway,NJ,39.4390532,-74.47372288,RES1,3001,,16,NE,1996,1996,3102,1,1,1949.226581,1949.226581,3505,NO,11.56,25.9,3,-0.93,6106,112.916294,122.589185,132.25442,138.351393,I,Above,Gable,0,5701,,18.72803282,0,0,,,,1,1,,0.03,nav,1,1996,1,, 14948,NJBF000083397,747 VILLAGE DR,Galloway,NJ,39.44345829,-74.46885075,RES1,3001,,16,NE,1995,1995,3102,2,1,2133.167864,2133.167864,3505,NO,40.28,45.31,3,6.55,6112,112.983703,122.630486,132.300162,138.376478,I,Above,Hip,0,5701,,42.79184605,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 14949,NJBF000084092,723 CHANESE LN,Galloway,NJ,39.45473216,-74.46200026,RES1,3001,,16,NE,1957,1957,3102,2,1,974.1642061,974.1642061,3505,NO,28.05,38.16,3,2.44,6110,113.041343,122.634694,132.305739,138.336471,I,Above,Gable,0,5701,,33.10373944,0,0,,,,1,1,,0.35,nav,1,1957,2,, 14950,NJBF000084084,718 CHANESE LN,Galloway,NJ,39.45454123,-74.46251618,RES1,3001,,16,NE,1955,1955,3102,1,1,1581.830565,1581.830565,3505,NO,15.84,26.64,3,-0.9,6110,113.032411,122.627378,132.297703,138.32955,I,Above,Gable,0,5701,,21.24148875,0,0,,,,1,1,,0.35,nav,1,1955,1,, 14951,NJBF000086593,835 MOTTS CREEK RD,Galloway,NJ,39.5155105,-74.444128,RES1,3001,,16,NE,1946,1946,3102,1,1,1379.909428,1379.909428,3507,NO,21.78,32.18,1,2.31,6106,112.976202,122.284869,131.919898,137.788711,I,Above,Gable,0,5701,,26.98438273,0,0,,,,1,1,,0.03,nav,1,1946,1,, 14952,NJBF000086568,824 MOTTS CREEK RD,Galloway,NJ,39.51514966,-74.44360639,RES1,3001,,14,NE,1951,1951,3102,1,1,814.9462051,814.9462051,3507,NO,13.44,20.58,1,-0.26,6106,112.988032,122.298686,131.934684,137.804327,I,Above,Gable,0,5701,,17.00948215,0,0,,,,1,1,,0.03,nav,1,1951,1,, 14953,NJBF000083301,561 BROOK LN,Galloway,NJ,39.44157549,-74.48060299,RES1,3001,,16,NE,1998,1998,3102,1,1,1785.162146,1785.162146,3505,NO,27.19,41.4,3,8.61,6112,112.758663,122.439307,132.090079,138.182187,I,Above,Gable,0,5701,,34.29259609,0,0,,,,1,1,,0.35,nav,1,1998,1,, 14954,NJBF000084023,749 CHANESE LN,Galloway,NJ,39.453181,-74.45899,RES1,3001,,16,NE,1972,1972,3102,1,1,858.0826533,858.0826533,3505,NO,8.96,16.85,3,-2.84,6110,113.112336,122.705907,132.383755,138.416502,I,Above,Gable,0,5701,,12.90275923,0,0,,,,1,1,,0.35,nav,1,1972,1,, 14955,NJBF000084791,731 GREAT CREEK RD,Galloway,NJ,39.469244,-74.4552275,RES1,3001,,NaN,NE,1991,1991,3102,1,1,1795.559248,1795.559248,3505,NO,12.79,20.45,3,-0.78,6112,113.0742,122.601681,132.270214,138.249858,I,Above,Hip,0,5701,,16.61964968,0,0,,,,1,1,,0.7,nav,1,1991,1,, 14956,NJBF000086690,887 MOTTS CREEK RD,Galloway,NJ,39.51750804,-74.43839635,RES1,3001,,16,NE,1936,1936,3102,1,1,828.7371433,828.7371433,3507,NO,20.01,26.66,1,0.56,6106,113.06698,122.367251,132.005967,137.873392,I,Above,Flat,0,5701,,23.33864591,0,0,,,,1,1,,0.03,nav,1,1936,1,, 14957,NJBF000084088,725 CHANESE LN,Galloway,NJ,39.45459193,-74.46180007,RES1,3001,,16,NE,1956,1956,3102,1,1,1515.199672,1515.199672,3505,NO,17.15,23.72,3,1.6,6110,113.046307,122.639816,132.311345,138.342351,I,Above,Gable,0,5701,,20.43084831,0,0,,,,1,1,,0.35,nav,1,1956,1,, 14958,NJBF000083290,534 BROOK LN,Galloway,NJ,39.441214,-74.4854165,RES1,3001,,16,NE,1996,1996,3102,1,1,1129.153603,1129.153603,3505,NO,17.1,24.12,3,-2.25,6112,112.663504,122.357284,132.000054,138.095704,I,Above,Gable,0,5701,,20.6103377,0,0,,,,1,1,,0.35,nav,1,1996,1,, 14959,NJBF000084744,708 GREAT CREEK RD,Galloway,NJ,39.468685,-74.46107749,RES1,3001,,16,NE,1964,1964,3102,1,1,1414.850594,1414.850594,3505,NO,19.38,27.14,3,3.9,6110,112.964184,122.501433,132.160902,138.146173,I,Above,Gable,0,5701,,23.26081023,0,0,,,,1,1,,0.03,nav,1,1964,1,, 14960,NJBF000084748,708 GREAT CREEK RD,Galloway,NJ,39.468715,-74.46002849,RES1,3001,,16,NE,1964,1964,3102,1,1,661.7250691,661.7250691,3505,NO,20.68,31.18,3,7.21,6106,112.984386,122.520128,132.181281,138.165841,I,Above,Gable,0,5701,,25.930404,0,0,,,,1,1,,0.03,nav,1,1964,1,, 14961,NJBF000084794,723 GREAT CREEK RD,Galloway,NJ,39.46926938,-74.45697272,RES1,3001,,16,NE,2004,2004,3102,2,1,2698.022572,2698.022572,3505,NO,35.24,41.7,3,0.32,6112,113.040077,122.569627,132.23526,138.216132,I,Above,Gable,0,5701,,38.46759072,0,1.2,,,,1,1,,0.35,nav,1,2004,2,, 14962,NJBF000089509,853 CLARKS LANDING RD,Galloway,NJ,39.56712503,-74.54208073,RES1,3001,,16,NE,1980,1980,3102,2,1,2932.431583,2932.431583,3504,NO,24.43,30.14,-4,0,6110,111.079611,120.017703,129.619755,135.008502,I,Above,Gable,0,5701,,27.28526001,0,0,,,,1,1,,0.35,nav,1,1980,2,, 14963,NJBF000089535,853 CLARKS LANDING RD,Galloway,NJ,39.56750152,-74.54218768,RES1,3001,,16,NE,1980,1980,3102,2,1,1064.246266,1064.246266,3504,NO,35.88,47.74,-4,0,6106,111.076479,120.011601,129.614021,135.000401,I,Above,Gable,0,5701,,41.80827434,0,0,,,,1,1,,0.03,nav,1,1980,2,, 14964,NJBF000084034,736 CHANESE LN,Galloway,NJ,39.45333503,-74.46047265,RES1,3001,,16,NE,1956,1956,3102,2,1,1424.62233,1424.62233,3505,YES,26.89,40.94,3,1.69,6112,113.081639,122.677312,132.352386,138.386215,I,Above,Gable,0,5701,,33.91435956,0,0,,,,1,1,,0.35,nav,1,1956,2,, 14965,NJBF000086926,266 KINGS HIGHWAY,Galloway,NJ,39.52179151,-74.45427447,RES1,3001,,16,NE,1961,1961,3101,1,1,3720.028983,3720.028983,3505,NO,20.49,34.63,3,2.53,6106,112.753543,122.025734,131.644266,137.493885,I,Above,Gable,0,5701,,27.56162971,0,1.2,,,,1,1,,0.03,nav,1,1961,1,, 14966,NJBF000085808,112 E MOSS MILL RD,Galloway,NJ,39.50359339,-74.50920771,COM8,3001,,16,ME,1976,1976,3401,2,1,1437.428877,1437.428877,3507,NO,36.82,42.74,1,2.08,6112,111.877589,121.274763,130.855533,136.666737,I,Above,Gable,0,5701,,39.7841178,0,0,,,,1,1,,0.03,nav,1,1976,2,, 14967,NJBF000085817,112 E MOSS MILL RD,Galloway,NJ,39.503717,-74.509222,COM8,3001,,16,ME,1976,1976,3401,2,1,642.9001997,642.9001997,3507,NO,24.21,38.3,1,0.34,6112,111.876781,121.273155,130.85391,136.664541,I,Above,Gable,0,5701,,31.25152296,0,0,,,,1,1,,0.03,nav,1,1976,2,, 14968,NJBF000084695,360 N NEW YORK RD,Galloway,NJ,39.46799824,-74.45517769,RES1,3001,,NaN,NE,1969,0,3102,5,1,1238.529136,1238.529136,3505,NO,69.48,79.98,3,2.37,6106,113.083718,122.616102,132.285951,138.269195,I,Above,Gable,0,5701,,74.73026104,0,0,,,,1,1,,0.03,nav,1,1969,5,, 14969,NJBF000086778,200 MOTTS CREEK RD,Galloway,NJ,39.51860999,-74.43652348,RES1,3001,649,16,NE,1959,1959,3102,2,1,2158.900204,2158.900204,3507,NO,38.7,45.81,1,-0.13,6106,113.09355,122.389029,132.028339,137.894589,I,Above,Flat,0,5701,,42.2560531,0,0,,,,1,1,,0.03,nav,1,1959,2,, 14970,NJBF000085891,41 N OYSTER CREEK RD,Galloway,NJ,39.50490495,-74.41640676,GOV1,3001,640,NaN,E,1969,0,3401,1,1,11183.51775,11183.51775,3502,NO,6.13,13.37,5,-4.67,6106,113.560043,122.92702,132.610665,138.483858,I,Above,Hip,0,NaN,,9.751399931,0,0,,,,1,1,,0.03,nav,1,1969,1,, 14971,NJBF000085926,360 N NEW YORK RD,Galloway,NJ,39.50540399,-74.41682561,GOV1,3001,,NaN,E,1969,0,3401,5,1,1952.242447,1952.242447,3502,NO,79.72,91.94,5,9.54,6106,113.548562,122.913323,132.5956,138.468792,I,Above,Flat,0,5701,,85.82857409,0,0,,,,1,1,,0.03,nav,1,1969,5,, 14972,NJBF000084703,360 N NEW YORK RD,Galloway,NJ,39.46809852,-74.45468318,RES1,3001,,NaN,NE,1969,0,3102,5,1,1330.088352,1330.088352,3505,NO,78.96,90.06,3,-2.62,6110,113.092677,122.624034,132.294609,138.277147,I,Above,Gable,0,5701,,84.51146463,0,0,,,,1,1,,0.35,nav,1,1969,5,, 14973,NJBF000087279,360 N NEW YORK RD,Galloway,NJ,39.529525,-74.4604415,RES1,3001,,NaN,NE,1969,0,3101,5,1,1501.266785,1501.266785,3505,NO,98.55,108.36,3,8.81,6110,112.597086,121.822592,131.429184,137.254603,I,Above,Gable,0,5701,,103.4577409,0,0,,,,1,1,,0.35,nav,1,1969,5,, 14974,NJBF000087302,360 N NEW YORK RD,Galloway,NJ,39.53038119,-74.46107846,RES1,3001,,NaN,NE,1969,0,3101,5,1,4054.196719,4054.196719,3505,NO,99.32,109.99,3,2.87,6110,112.580792,121.800946,131.406374,137.228933,I,Above,Flat,0,5701,,104.6538492,0,0,,,,1,1,,1,nav,1,1969,5,, 14975,NJBF000087312,360 N NEW YORK RD,Galloway,NJ,39.5305955,-74.460664,RES1,3001,,NaN,NE,1969,0,3101,5,1,1051.198406,1051.198406,3505,NO,85.08,96.71,3,3.54,6110,112.586761,121.805787,131.411314,137.234088,I,Above,Flat,0,5701,,90.89650075,0,0,,,,1,1,,0.7,nav,1,1969,5,, 14976,NJBF000087321,360 N NEW YORK RD,Galloway,NJ,39.53079547,-74.46031071,RES1,3001,,NaN,NE,1969,0,3101,5,1,2111.572632,2111.572632,3505,NO,89.19,95.04,3,4.21,6112,112.591744,121.809706,131.415301,137.238222,I,Above,Gable,0,5701,,92.11461191,0,0,,,,1,1,,0.7,nav,1,1969,5,, 14977,NJBF000087314,360 N NEW YORK RD,Galloway,NJ,39.53062325,-74.46006851,RES1,3001,,NaN,NE,1969,0,3101,5,1,4358.513413,4358.513413,3505,NO,79.97,86.2,3,4.12,6110,112.59702,121.816107,131.422014,137.245687,I,Above,Gable,0,5701,,83.08735986,0,0,,,,1,1,,0.7,nav,1,1969,5,, 14978,NJBF000085880,360 N NEW YORK RD,Galloway,NJ,39.50477342,-74.41548913,GOV1,3001,,NaN,E,1969,0,3401,5,1,1032.571383,1032.571383,3502,NO,62.81,70.39,5,6.49,6106,113.578122,122.946026,132.631169,138.503445,I,Above,Gable,0,5701,,66.60216658,0,0,,,,1,1,,0.03,nav,1,1969,5,, 14979,NJBF000085878,360 N NEW YORK RD,Galloway,NJ,39.50475177,-74.41525514,GOV1,3001,,NaN,E,1969,0,3401,5,1,888.0823919,888.0823919,3502,NO,71.36,80.39,5,12.57,6106,113.582638,122.950729,132.636235,138.508259,I,Above,Gable,0,5701,,75.87619999,0,0,,,,1,1,,0.03,nav,1,1969,5,, 14980,NJBF000085867,360 N NEW YORK RD,Galloway,NJ,39.50455274,-74.41489395,GOV1,3001,,NaN,E,1969,0,3401,5,1,866.6092431,866.6092431,3502,NO,88.44,97.47,5,14.62,6106,113.590843,122.959893,132.646225,138.517999,I,Above,Gable,0,5701,,92.95515528,0,0,,,,1,1,,0.03,nav,1,1969,5,, 14981,NJBF000085855,360 N NEW YORK RD,Galloway,NJ,39.50432847,-74.41482123,GOV1,3001,,NaN,E,1969,0,3401,5,1,1331.263911,1331.263911,3502,NO,83.22,94.16,5,8.39,6106,113.593875,122.963859,132.650653,138.522536,I,Above,Flat,0,5701,,88.68963583,0,0,,,,1,1,,0.03,nav,1,1969,5,, 14982,NJBF000085832,360 N NEW YORK RD,Galloway,NJ,39.50391527,-74.41350213,GOV1,3001,,NaN,E,1969,0,3401,5,1,639.8656464,639.8656464,3502,NO,85.23,97.04,5,-4.56,6106,113.621558,122.993765,132.683102,138.553715,I,Above,Flat,0,5701,,91.13277537,0,0,,,,1,1,,0.03,nav,1,1969,5,, 14983,NJBF000086786,MOTTS CREEK RD,Galloway,NJ,39.51871291,-74.43751029,RES1,3001,,NaN,NE,1931,0,3102,2,1,789.5851897,789.5851897,3507,NO,36.96,48.16,1,-0.56,6106,113.074975,122.369489,132.007631,137.873499,I,Above,Gable,0,5701,,42.56010028,0,0,,,,1,1,,0.03,nav,1,1931,2,, 14984,NJBF000083313,606 SHARSWOOD AVE,Galloway,NJ,39.44198064,-74.47931968,RES1,3001,,16,NE,1985,1985,3102,1,1,1776.567414,1776.567414,3505,NO,15.44,24.68,3,2.28,6110,112.781899,122.457971,132.1106,138.200428,I,Above,Gable,0,5701,,20.0596164,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 14985,NJBF000083332,720 PENNSYLVANIA AVE,Galloway,NJ,39.4424212,-74.47321433,RES1,3001,,16,NE,1983,1983,3102,1,1,3973.928162,3973.928162,3505,NO,16.42,22.19,3,-1.07,6112,112.902652,122.56284,132.225768,138.309723,I,Above,Hip,0,5701,,19.30222777,0,1.1,,,,1,1,,0.35,nav,1,1983,1,, 14986,NJBF000084046,741 CHANESE LN,Galloway,NJ,39.45352244,-74.45992246,RES1,3001,,16,NE,1959,1959,3102,1,1,1737.965771,1737.965771,3505,YES,18.22,28.89,3,7.12,6112,113.091302,122.685327,132.361192,138.393833,I,Above,Gable,0,5701,,23.55262599,0,0,,,,1,1,,0.35,nav,1,1959,1,, 14987,NJBF000087419,701 LINDBERGH AVE,Galloway,NJ,39.53328019,-74.46396687,RES1,3001,,16,NE,1950,1950,3101,1,1,1426.605714,1426.605714,3505,NO,19.79,25.54,3,4.67,6106,112.513094,121.714547,131.315764,137.126945,I,Above,Gable,0,5701,,22.66114855,0,0,,,,1,1,,0.03,nav,1,1950,1,, 14988,NJBF000087423,703 LINDBERGH AVE,Galloway,NJ,39.53333051,-74.46385293,RES1,3001,,16,NE,1946,1946,3101,1,1,1084.436834,1084.436834,3505,NO,10.27,22.19,3,-1.07,6106,112.514775,121.715961,131.317207,137.128486,I,Above,Hip,0,5701,,16.22574499,0,0,,,,1,1,,0.03,nav,1,1946,1,, 14989,NJBF000084811,NEW YORK RD,Galloway,NJ,39.46947637,-74.4644485,RES1,3001,,NaN,NE,1969,0,3102,2,1,2109.565114,2109.565114,3505,NO,32.6,47.04,3,5.52,6112,112.893472,122.43187,132.085163,138.069601,I,Above,Gable,0,5701,,39.82118292,0,0,,,,1,1,,0.35,nav,1,1969,2,, 14990,NJBF000083387,734 VILLAGE DR,Galloway,NJ,39.44329778,-74.47073689,RES1,3001,,16,NE,1993,1993,3102,2,1,2418.997738,2418.997738,3505,NO,33.24,46.15,3,4.9,6112,112.94664,122.598168,132.264646,138.343277,I,Above,Gable,0,5701,,39.69422095,0,1.2,,,,1,1,,0.35,nav,1,1993,2,, 14991,NJBF000084026,738 CHANESE LN,Galloway,NJ,39.45320666,-74.46026083,RES1,3001,,16,NE,1957,1957,3102,2,1,1359.988737,1359.988737,3505,YES,32.05,38.85,3,-2.66,6110,113.08678,122.682528,132.3581,138.392129,I,Above,Gable,0,5701,,35.45281677,0,0,,,,1,1,,0.35,nav,1,1957,2,, 14992,NJBF000084810,618 GREAT CREEK RD,Galloway,NJ,39.46947533,-74.46500208,RES1,3001,,16,NE,1982,1982,3102,3,1,1213.414185,1213.414185,3505,NO,49.28,61.5,3,-2.34,6112,112.882753,122.421899,132.074305,138.05897,I,Above,Gable,0,5701,,55.39199857,0,0,,,,1,1,,0.35,nav,1,1982,3,, 14993,NJBF000087466,,Galloway,NJ,39.53432244,-74.46246585,RES1,3001,,NaN,NE,1931,0,3101,1,1,1021.498254,1021.498254,3505,NO,20.31,27.24,3,3.91,6106,112.533021,121.72871,131.329992,137.141665,I,Above,Gable,0,5701,,23.77817326,0,0,,,,1,1,,0.03,nav,1,1931,1,, 14994,NJBF000083383,706 PENNSYLVANIA AVE,Galloway,NJ,39.44327911,-74.47637103,RES1,3001,,16,NE,1991,1991,3102,1,1,957.3540873,957.3540873,3505,NO,14.47,20.76,3,1.38,6112,112.832689,122.497105,132.153678,138.236728,I,Above,Gable,0,5701,,17.6155768,0,0,,,,1,1,,0.35,nav,1,1991,1,, 14995,NJBF000083501,504 WASHINGTON AVE,Galloway,NJ,39.44595173,-74.47018224,RES1,3001,,16,NE,1990,1990,3102,2,1,2473.829117,2473.829117,3505,NO,24.12,31.93,3,-2.45,6112,112.939078,122.580108,132.245062,138.313562,I,Above,Gable,0,5701,,28.02695599,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 14996,NJBF000079523,512 W SHORE DR,Galloway,NJ,39.41151677,-74.37561686,RES1,3001,,20,NE,2012,2012,3103,3,1,3305.191947,3305.191947,3505,NO,55.67,68.72,3,0.02,6106,115.177712,124.696849,134.591779,140.457449,I,Above,Hip,0,5701,,62.1967164,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 14997,NJBF000080910,712 SHERIDAN BLVD,Galloway,NJ,39.41683536,-74.36567015,RES1,3001,,17,NE,1987,1987,3102,1,1,1139.851238,1139.851238,3507,NO,14.62,29.28,1,0.96,6106,115.323859,124.833106,134.748112,140.549405,I,Above,Flat,0,5701,,21.94890878,0,0,,,,1,1,,0.03,nav,1,1987,1,, 14998,NJBF000081133,202 WASHINGTON DR,Galloway,NJ,39.41766915,-74.36950949,RES1,3001,,17,NE,2014,2014,3102,2,1,1688.789536,1688.789536,3507,NO,21.9,34.79,1,0.01,6106,115.237997,124.751558,134.656215,140.477187,I,Above,Flat,0,5701,,28.34296737,0,0,,,,1,1,,0.03,nav,1,2014,2,, 14999,NJBF000081456,1011 N SHORE DR,Galloway,NJ,39.41931603,-74.37527733,RES1,3001,,17,NE,2015,2015,3103,3,1,1998.071386,1998.071386,3505,NO,49.05,58.91,3,7.65,6106,115.104827,124.625147,134.514085,140.362747,I,Above,Hip,0,5701,,53.97989258,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 15000,NJBF000081636,,Galloway,NJ,39.42113645,-74.37175619,RES1,3001,,NaN,NE,1969,0,3102,2,1,2453.801368,2453.801368,3507,NO,26.94,40.7,1,0.62,6112,115.157502,124.674052,134.56984,140.39672,I,Above,Hip,0,5701,,33.8203779,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15001,NJBF000081641,,Galloway,NJ,39.42120334,-74.37158479,RES1,3001,,NaN,NE,1969,0,3102,2,1,3445.594489,3445.594489,3507,NO,39.77,46.22,1,1.51,6112,115.160271,124.676647,134.572789,140.398646,I,Above,Hip,0,5701,,42.99588951,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15002,NJBF000081646,,Galloway,NJ,39.42126859,-74.37139974,RES1,3001,,NaN,NE,1969,0,3102,2,1,2325.921734,2325.921734,3507,NO,22.97,35.14,1,0.16,6112,115.163332,124.679519,134.576051,140.400812,I,Above,Flat,0,5701,,29.0553242,0,0,,,,1,1,,1,nav,1,1969,2,, 15003,NJBF000081663,,Galloway,NJ,39.42152795,-74.37091525,RES1,3001,,NaN,NE,1969,0,3102,2,1,2595.372945,2595.372945,3507,NO,22.9,33.52,1,-0.42,6112,115.170486,124.686192,134.583662,140.405396,I,Above,Hip,0,5701,,28.20642351,0,0,,,,1,1,,1,nav,1,1969,2,, 15004,NJBF000081673,,Galloway,NJ,39.42170312,-74.37060258,RES1,3001,,NaN,NE,1969,0,3102,2,1,3137.832187,3137.832187,3507,NO,28.96,34.63,1,0.92,6106,115.175001,124.690403,134.588467,140.408239,I,Above,Hip,0,5701,,31.79810551,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15005,NJBF000082220,230 N SHORE ROAD,Galloway,NJ,39.42799703,-74.49599219,RES1,3001,,17,NE,1954,1954,3102,1,1,2059.718361,2059.718361,3505,NO,16.87,24.71,3,-0.2,6112,112.536089,122.307696,131.945414,138.097901,I,Above,Gable,0,5701,,20.78972658,0,0,,,,1,1,,0.35,nav,1,1954,1,, 15006,NJBF000082262,247 N SHORE ROAD,Galloway,NJ,39.42848718,-74.49631359,RES1,3001,,17,NE,1908,1908,3102,2,1,1430.676029,1430.676029,3505,NO,22.64,32.41,3,-1.36,6112,112.526055,122.296904,131.933565,138.084046,I,Above,Gable,0,5701,,27.5212397,0,0,,,,1,1,,0.35,nav,1,1908,2,, 15007,NJBF000082271,247 N SHORE ROAD,Galloway,NJ,39.42853526,-74.49656716,RES1,3001,,17,NE,1908,1908,3102,2,1,566.0596648,566.0596648,3505,NO,22.85,31.77,3,-0.28,6112,112.520486,122.291931,131.928117,138.078427,I,Above,Gable,0,5701,,27.30977233,0,0,,,,1,1,,0.35,nav,1,1908,2,, 15008,NJBF000082327,515 FOURTH ST,Galloway,NJ,39.42901817,-74.48519569,RES1,3001,,17,NE,2016,2016,3102,2,1,3058.149353,3058.149353,3507,NO,28.15,33.58,1,-0.61,6106,112.752711,122.488912,132.143912,138.288351,I,Above,Gable,0,5701,,30.86392998,0,0,,,,1,1,,0.03,nav,1,2016,2,, 15009,NJBF000082660,653 WEILER LANE,Galloway,NJ,39.43216743,-74.48452323,RES1,3001,,17,NE,1979,1979,3102,1,1,2105.290645,2105.290645,3507,NO,19.24,26.92,1,2.09,6112,112.744038,122.467996,132.120994,138.252391,I,Above,Hip,0,5701,,23.07950894,0,1.1,,,,1,1,,0.35,nav,1,1979,1,, 15010,NJBF000083112,707 WHITE HORSE PIKE,Galloway,NJ,39.43711435,-74.51914598,COM4,3004,560,NaN,ME,1969,0,3401,2,1,8223.443474,8223.443474,3507,NO,29.21,34.79,1,2.89,6112,112.006613,121.808669,131.398561,137.503303,I,Above,Gable,0,NaN,,31.99899199,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15011,NJBF000083119,707 WHITE HORSE PIKE,Galloway,NJ,39.43736572,-74.51882977,COM4,3004,560,NaN,ME,1969,0,3401,2,1,11750.6768,11750.6768,3507,NO,25.46,40.42,1,2.17,6112,112.011605,121.811539,131.401704,137.505572,I,Above,Hip,0,NaN,,32.93717602,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15012,NJBF000083123,707 WHITE HORSE PIKE,Galloway,NJ,39.43752701,-74.51913785,COM4,3004,560,NaN,ME,1969,0,3401,2,1,11851.47504,11851.47504,3507,NO,27.27,34.16,1,1.59,6112,112.004551,121.804573,131.394073,137.496957,I,Above,Gable,0,NaN,,30.7161268,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15013,NJBF000083132,707 WHITE HORSE PIKE,Galloway,NJ,39.43778082,-74.51877844,COM4,3004,560,NaN,ME,1969,0,3401,2,1,7815.383584,7815.383584,3507,NO,24.47,32.94,1,0.32,6112,112.010414,121.808181,131.398027,137.500064,I,Above,Flat,0,NaN,,28.70245841,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15014,NJBF000083175,1105 SEASIDE AVE,Galloway,NJ,39.43889837,-74.51686713,RES1,3001,,17,NE,1970,1970,3102,1,1,2685.901815,2685.901815,3505,NO,13.14,22.37,3,-2.05,6112,112.042721,121.829716,131.421655,137.520183,I,Above,Gable,0,5701,,17.75827742,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 15015,NJBF000083207,1105 MARLBOROUGH AVE,Galloway,NJ,39.43960949,-74.51652451,RES1,3001,,17,NE,1980,1980,3102,2,1,2643.25232,2643.25232,3505,NO,27.63,36.86,3,4.51,6112,112.045723,121.828317,131.420163,137.515746,I,Above,Gable,0,5701,,32.24735987,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 15016,NJBF000083401,19 RITZ DR,Galloway,NJ,39.44353725,-74.51376488,RES1,3001,,17,NE,1975,1975,3102,1,1,2381.544352,2381.544352,3505,NO,16.24,25.63,3,-0.24,6112,112.079608,121.835563,131.42856,137.508462,I,Above,Gable,0,5701,,20.93686406,0,0,,,,1,1,,0.35,nav,1,1975,1,, 15017,NJBF000083408,17 RITZ DR,Galloway,NJ,39.44362211,-74.51348389,RES1,3001,,17,NE,1974,1974,3102,1,1,1394.799185,1394.799185,3505,NO,19.33,26.89,3,7.13,6112,112.084737,121.839547,131.432938,137.512663,I,Above,Gable,0,5701,,23.10670176,0,0,,,,1,1,,0.35,nav,1,1974,1,, 15018,NJBF000083153,506 HOLLY BROOK RD,Galloway,NJ,39.43837452,-74.4830395,RES1,3001,,16,NE,1985,1985,3102,1,1,5583.35519,5583.35519,3505,NO,21.69,27.89,3,6.5,6112,112.731045,122.429416,132.078955,138.184861,I,Above,Gable,0,5701,,24.78853805,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 15019,NJBF000083160,508 HOLLY BROOK RD,Galloway,NJ,39.43857457,-74.4832593,RES1,3001,,16,NE,1985,1985,3102,2,1,1518.865612,1518.865612,3505,NO,32.8,39.51,3,5.44,6112,112.725206,122.42341,132.072379,138.177603,I,Above,Gable,0,5701,,36.15405519,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 15020,NJBF000083162,510 HOLLY BROOK RD,Galloway,NJ,39.4387026,-74.48351189,RES1,3001,,16,NE,1985,1985,3102,1,1,2177.977932,2177.977932,3505,NO,14.86,25.86,3,1.85,6112,112.719172,122.417554,132.065963,138.170802,I,Above,Gable,0,5701,,20.36042802,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 15021,NJBF000083177,334 WAVELAND AVE,Galloway,NJ,39.4389745,-74.52216105,COM4,3004,660,15,ME,1989,1989,3401,1,2,949.9101366,949.9101366,3507,NO,11.67,21.16,1,-0.78,6112,111.936404,121.737682,131.320812,137.414387,I,Above,Gable,0,NaN,,16.41406922,0,0,,,,1,1,,1,nav,1,1989,1,, 15022,NJBF000083167,516 HOLLY BROOK RD,Galloway,NJ,39.43879526,-74.48477801,RES1,3001,,16,NE,1985,1985,3102,2,1,1483.978381,1483.978381,3505,NO,23.9,29.33,3,0.13,6112,112.692755,122.394025,132.040153,138.145195,I,Above,Gable,0,5701,,26.61670021,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 15023,NJBF000083176,518 HOLLY BROOK RD,Galloway,NJ,39.43890362,-74.4850823,RES1,3001,,16,NE,1986,1986,3102,1,1,2915.598206,2915.598206,3505,NO,16.41,29.76,3,1.03,6112,112.685824,122.387467,132.032967,138.1377,I,Above,Gable,0,5701,,23.08371087,0,1.1,,,,1,1,,0.35,nav,1,1986,1,, 15024,NJBF000083191,346 E WHITE HORSE PIKE,Galloway,NJ,39.43925293,-74.51975929,RES4,3001,530,NaN,ME,2008,2008,3401,2,1,9088.03523,9088.03523,3507,NO,23.41,33.18,1,1.79,6112,111.982928,121.776169,131.363001,137.457519,I,Above,Gable,0,NaN,,28.29815536,0,0,,,,1,1,,1,nav,1,2008,2,, 15025,NJBF000083196,521 HOLLY BROOK RD,Galloway,NJ,39.43937948,-74.48499562,RES1,3001,,16,NE,1986,1986,3102,1,1,2680.069416,2680.069416,3505,NO,7.95,17.51,3,-2.91,6112,112.684358,122.384017,132.029218,138.132023,I,Above,Gable,0,5701,,12.7306443,0,1.1,,,,1,1,,0.35,nav,1,1986,1,, 15026,NJBF000083202,523 HOLLY BROOK RD,Galloway,NJ,39.43945171,-74.48524755,RES1,3001,,16,NE,1986,1986,3102,2,1,1218.386,1218.386,3505,NO,28.62,39.96,3,6.61,6112,112.678739,122.378764,132.023462,138.126075,I,Above,Gable,0,5701,,34.28766115,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 15027,NJBF000083204,525 HOLLY BROOK RD,Galloway,NJ,39.43951519,-74.48553201,RES1,3001,,16,NE,1985,1985,3102,2,1,1420.969643,1420.969643,3505,NO,21.44,28.49,3,-1.35,6112,112.672538,122.373048,132.017196,138.119667,I,Above,Gable,0,5701,,24.96421247,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 15028,NJBF000083205,342 E WHITE HORSE PIKE,Galloway,NJ,39.4395746,-74.52011417,RES4,3001,280,16,ME,2009,2009,3401,3,1,16377.12135,16377.12135,3507,NO,48.15,54.53,1,2.19,6112,111.974146,121.766754,131.352702,137.445434,I,Above,Flat,0,NaN,,51.34122449,0,0,,,,1,1,,1,nav,1,2009,3,, 15029,NJBF000083209,527 HOLLY BROOK RD,Galloway,NJ,39.43964207,-74.48579647,RES1,3001,,16,NE,1985,1985,3102,2,1,1587.69239,1587.69239,3505,NO,45,55.01,3,7.76,6112,112.666315,122.367018,132.010591,138.112654,I,Above,Gable,0,5701,,50.00465821,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 15030,NJBF000083214,603 S NEW YORK RD,Galloway,NJ,39.43969476,-74.47958151,RES1,3001,,16,NE,1860,1860,3102,2,1,1066.201398,1066.201398,3505,NO,34.37,47.54,3,-0.11,6112,112.792367,122.477334,132.131648,138.230469,I,Above,Gable,0,5701,,40.95507081,0,0,,,,1,1,,0.35,nav,1,1860,2,, 15031,NJBF000083217,,Galloway,NJ,39.43972945,-74.48230123,RES1,3001,,NaN,NE,1978,0,3102,2,1,1896.887707,1896.887707,3505,NO,34.32,43.64,3,3.64,6106,112.736802,122.428389,132.077933,138.178133,I,Above,Gable,0,5701,,38.97949717,0,0,,,,1,1,,0.03,nav,1,1978,2,, 15032,NJBF000083219,529 HOLLY BROOK RD,Galloway,NJ,39.43975508,-74.48611202,RES1,3001,,16,NE,1986,1986,3102,2,1,2161.502046,2161.502046,3505,NO,34.6,39.99,3,-2.93,6112,112.659134,122.360211,132.003133,138.104857,I,Above,Gable,0,5701,,37.29847705,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 15033,NJBF000083221,531 HOLLY BROOK RD,Galloway,NJ,39.43979723,-74.4863524,RES1,3001,,16,NE,1986,1986,3102,2,1,1291.086294,1291.086294,3505,NO,34.75,43.68,3,4.46,6112,112.653975,122.355502,131.997971,138.09961,I,Above,Gable,0,5701,,39.21941106,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 15034,NJBF000083231,,Galloway,NJ,39.43994963,-74.48654795,RES1,3001,,NaN,NE,1969,0,3102,2,1,1475.252668,1475.252668,3505,NO,28.04,40.48,3,1.16,6112,112.64897,122.350412,131.992401,138.093492,I,Above,Gable,0,5701,,34.25780404,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15035,NJBF000083241,535 HOLLY BROOK RD,Galloway,NJ,39.44011358,-74.48670246,RES1,3001,,16,NE,1987,1987,3102,1,1,1781.548721,1781.548721,3505,NO,18.52,29.42,3,7.87,6112,112.644748,122.345954,131.987526,138.088009,I,Above,Hip,0,5701,,23.96544023,0,1.1,,,,1,1,,0.35,nav,1,1987,1,, 15036,NJBF000083249,552 BROOK LN,Galloway,NJ,39.44028851,-74.48239447,RES1,3001,,15,NE,1938,1938,3102,1,1,1038.104853,1038.104853,3505,NO,10.45,21.59,3,-2.92,6112,112.731083,122.420847,132.069704,138.167749,I,Above,Flat,0,5701,,16.01930798,0,0,,,,1,1,,0.35,nav,1,1938,1,, 15037,NJBF000083251,537 HOLLY BROOK RD,Galloway,NJ,39.44029923,-74.4868874,RES1,3001,,16,NE,1987,1987,3102,2,1,1855.203066,1855.203066,3505,NO,35.79,46.09,3,2.29,6112,112.63976,122.340726,131.981808,138.081606,I,Above,Gable,0,5701,,40.94164298,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 15038,NJBF000083262,539 HOLLY BROOK RD,Galloway,NJ,39.44051204,-74.48711955,RES1,3001,,16,NE,1987,1987,3102,2,1,1443.259401,1443.259401,3505,NO,27.72,32.74,3,0.35,6112,112.633616,122.334352,131.974835,138.073848,I,Above,Gable,0,5701,,30.23126004,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 15039,NJBF000083270,600 BROOK LN,Galloway,NJ,39.44060647,-74.48181971,RES1,3001,,16,NE,1995,1995,3102,2,1,1893.968585,1893.968585,3505,NO,33.04,38.82,3,-1.8,6112,112.740582,122.427761,132.077319,138.173836,I,Above,Hip,0,5701,,35.92969217,0,1.1,,,,1,1,,0.35,nav,1,1995,2,, 15040,NJBF000083283,538A BROOK LN,Galloway,NJ,39.44097149,-74.48410017,RES1,3001,,16,NE,1996,1996,3102,1,1,822.9079269,822.9079269,3505,NO,16.58,23.8,3,0.61,6112,112.691821,122.383265,132.028532,138.124649,I,Above,Gable,0,5701,,20.19146107,0,1.1,,,,1,1,,0.35,nav,1,1996,1,, 15041,NJBF000083305,714 BROWN AVE,Galloway,NJ,39.44165737,-74.47597321,RES1,3001,,16,NE,1990,1990,3102,1,1,773.4877569,773.4877569,3505,NO,10.8,19.45,3,-0.81,6106,112.852045,122.521341,132.18013,138.269046,I,Above,Flat,0,5701,,15.12633177,0,0,,,,1,1,,0.03,nav,1,1990,1,, 15042,NJBF000083323,600 SHARSWOOD AVE,Galloway,NJ,39.44226145,-74.48027947,RES1,3001,,16,NE,1946,1946,3102,1,1,2244.854041,2244.854041,3505,NO,17.48,22.63,3,6.44,6112,112.760548,122.437878,132.088577,138.177851,I,Above,Gable,0,5701,,20.05110084,0,1.1,,,,1,1,,0.35,nav,1,1946,1,, 15043,NJBF000083326,718 PENNSYLVANIA AVE,Galloway,NJ,39.4423391,-74.47358211,RES1,3001,,47,NE,1981,1981,3102,1,2,927.6101271,927.6101271,3505,NO,18.4,26.67,3,6.35,6112,112.895767,122.557089,132.219445,138.304,I,Above,Hip,0,5701,,22.53167788,0,0,,,,1,1,,0.35,nav,1,1981,1,, 15044,NJBF000083334,603 SHARSWOOD AVE,Galloway,NJ,39.44246418,-74.47963549,RES1,3001,,16,NE,1962,1962,3102,1,1,1035.1999,1035.1999,3505,NO,18.02,30.98,3,-0.91,6112,112.772207,122.447253,132.098884,138.187026,I,Above,Gable,0,5701,,24.50040343,0,0,,,,1,1,,0.35,nav,1,1962,1,, 15045,NJBF000083337,718 PENNSYLVANIA AVE,Galloway,NJ,39.44253631,-74.47355141,RES1,3001,,47,NE,1981,1981,3102,1,2,2929.160937,2929.160937,3505,NO,17.86,30.86,3,0.19,6112,112.895006,122.555568,132.217792,138.301589,I,Above,Hip,0,5701,,24.36136418,0,0,,,,1,1,,0.35,nav,1,1981,1,, 15046,NJBF000083364,343 BLENHEIM AVE,Galloway,NJ,39.44302204,-74.51650343,RES1,3001,,16,NE,1981,1981,3102,2,1,1911.444404,1911.444404,3505,NO,25.4,31.03,3,1.37,6112,112.027945,121.793576,131.382474,137.462567,I,Above,Gable,0,5701,,28.21423026,0,1.2,,,,1,1,,0.35,nav,1,1981,2,, 15047,NJBF000083369,338 HARRISON AVE,Galloway,NJ,39.44311664,-74.51614544,RES1,3001,,16,NE,1961,1961,3102,2,1,1308.53103,1308.53103,3505,YES,28.69,43.31,3,5.75,6112,112.034554,121.798775,131.388185,137.468139,I,Above,Gable,0,5701,,35.99855388,0,1.1,,,,1,1,,0.35,nav,1,1961,2,, 15048,NJBF000083380,244 WAVELAND AVE,Galloway,NJ,39.44326366,-74.52832054,IND2,3001,959,NaN,ME,1990,1990,3401,1,1,2463.929256,2463.929256,3507,NO,15.56,21.08,1,1.36,6112,111.793406,121.588496,131.157734,137.224513,I,Above,Hip,0,NaN,,18.31934465,0,0,,,,1,1,,0.35,nav,1,1990,1,, 15049,NJBF000083389,336 HARRISON AVE,Galloway,NJ,39.44330595,-74.51643576,RES1,3001,,16,NE,1960,1960,3102,2,1,969.2890055,969.2890055,3505,YES,36.77,48.3,3,0.29,6112,112.02778,121.791807,131.380581,137.459431,I,Above,Gable,0,5701,,42.53420982,0,0,,,,1,1,,0.35,nav,1,1960,2,, 15050,NJBF000083395,355 HARRISON AVE,Galloway,NJ,39.44344958,-74.51561217,RES1,3001,,16,NE,1979,1979,3102,2,1,1288.183458,1288.183458,3505,NO,33.46,47.41,3,-0.11,6112,112.043377,121.804543,131.39456,137.473427,I,Above,Gable,0,5701,,40.43236718,0,0,,,,1,1,,0.35,nav,1,1979,2,, 15051,NJBF000083386,732 VILLAGE DR,Galloway,NJ,39.44329236,-74.47106287,RES1,3001,,16,NE,1989,1989,3102,2,1,2911.715888,2911.715888,3505,NO,31.17,40.15,3,8.32,6112,112.940079,122.592358,132.258265,138.337203,I,Above,Gable,0,5701,,35.6614828,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 15052,NJBF000083400,353 HARRISON AVE,Galloway,NJ,39.44352067,-74.51601213,RES1,3001,,16,NE,1979,1979,3102,2,1,1189.32251,1189.32251,3505,NO,29.77,36.83,3,0.6,6112,112.035062,121.796907,131.386205,137.464423,I,Above,Gable,0,5701,,33.29808035,0,0,,,,1,1,,0.35,nav,1,1979,2,, 15053,NJBF000083390,706 PENNSYLVANIA AVE,Galloway,NJ,39.44333145,-74.4761378,RES1,3001,,16,NE,1991,1991,3102,1,1,3397.303639,3397.303639,3505,NO,15.77,25.06,3,4.83,6112,112.837044,122.500734,132.157667,138.240366,I,Above,Gable,0,5701,,20.41516944,0,0,,,,1,1,,0.35,nav,1,1991,1,, 15054,NJBF000083415,704 ANGELA CT,Galloway,NJ,39.44372907,-74.51616782,RES1,3001,,16,NE,1979,1979,3102,2,1,2034.527754,2034.527754,3505,NO,33.73,48.66,3,-2.82,6112,112.030872,121.792072,131.380943,137.458081,I,Above,Flat,0,5701,,41.19264572,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 15055,NJBF000083418,702 ANGELA CT,Galloway,NJ,39.4437684,-74.51573154,RES1,3001,,16,NE,1979,1979,3102,2,1,1927.910233,1927.910233,3505,NO,29.33,34.85,3,8.13,6112,112.039315,121.799194,131.388752,137.466071,I,Above,Gable,0,5701,,32.0932376,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 15056,NJBF000083416,700 ANGELA CT,Galloway,NJ,39.44373375,-74.51532311,RES1,3001,,16,NE,1979,1979,3102,2,1,1560.551442,1560.551442,3505,NO,41.55,48.39,3,3.57,6112,112.04761,121.806605,131.396866,137.47467,I,Above,Flat,0,5701,,44.96635712,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 15057,NJBF000083409,731 VILLAGE DR,Galloway,NJ,39.44363963,-74.47085746,RES1,3001,,16,NE,1990,1990,3102,2,1,630.0296403,630.0296403,3505,NO,38.1,51.37,3,-0.08,6112,112.941779,122.592393,132.258334,138.33582,I,Above,Flat,0,5701,,44.7359598,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 15058,NJBF000083431,701 ANGELA CT,Galloway,NJ,39.44419298,-74.51513073,RES1,3001,,16,NE,1979,1979,3102,2,1,1772.822592,1772.822592,3505,NO,33.36,48.12,3,6.23,6112,112.048989,121.805187,131.395393,137.471257,I,Above,Gable,0,5701,,40.74444239,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 15059,NJBF000083434,703 ANGELA CT,Galloway,NJ,39.44420731,-74.51548297,RES1,3001,,16,NE,1979,1979,3102,2,1,2107.236124,2107.236124,3505,NO,34.58,44.21,3,-0.28,6112,112.041937,121.798965,131.38858,137.464096,I,Above,Gable,0,5701,,39.39279747,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 15060,NJBF000083430,731 VILLAGE DR,Galloway,NJ,39.44416228,-74.47083657,RES1,3001,,16,NE,1990,1990,3102,2,1,507.9046846,507.9046846,3505,NO,24.6,36.55,3,-0.94,6106,112.938483,122.587237,132.25272,138.328282,I,Above,Gable,0,5701,,30.57567223,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 15061,NJBF000083465,230 WAVELAND AVE,Galloway,NJ,39.44523904,-74.53086121,IND2,3001,219,NaN,ME,1986,1986,3401,2,1,5633.515494,5633.515494,3507,NO,40.09,47.29,1,2.98,6112,111.734741,121.525222,131.088794,137.142774,I,Above,Gable,0,NaN,,43.68715293,0,0,,,,1,1,,1,nav,1,1986,2,, 15062,NJBF000083471,228 WAVELAND AVE,Galloway,NJ,39.4453049,-74.53113533,IND2,3001,219,16,ME,1975,1975,3401,2,1,3238.411521,3238.411521,3507,NO,24.04,36.28,1,0.32,6112,111.729116,121.519904,131.082979,137.136268,I,Above,Gable,0,NaN,,30.16069065,0,0,,,,1,1,,1,nav,1,1975,2,, 15063,NJBF000083486,704 EIGHTH AVE,Galloway,NJ,39.44558436,-74.51472899,RES1,3001,,16,NE,1983,1983,3102,2,1,3036.777535,3036.777535,3505,NO,37.6,50.66,3,8.65,6112,112.049615,121.79777,131.387544,137.457379,I,Above,Gable,0,5701,,44.13088962,0,1.2,,,,1,1,,0.35,nav,1,1983,2,, 15064,NJBF000083506,702 EIGHTH AVE,Galloway,NJ,39.44611929,-74.51479419,RES1,3001,,16,NE,1986,1986,3102,2,1,2130.504446,2130.504446,3505,NO,40.18,54.11,3,8.36,6112,112.045526,121.791123,131.380381,137.447714,I,Above,Gable,0,5701,,47.14513086,0,0,,,,1,1,,0.35,nav,1,1986,2,, 15065,NJBF000083505,,Galloway,NJ,39.44606316,-74.46990549,RES1,3001,,NaN,NE,1969,0,3102,2,1,502.0829483,502.0829483,3505,NO,32.76,38.53,3,-1.78,6112,112.943883,122.583925,132.249263,138.317128,I,Above,Gable,0,5701,,35.64488254,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15066,NJBF000083513,634 EIGHTH AVE,Galloway,NJ,39.44630562,-74.51258235,RES1,3001,,16,NE,1973,1973,3102,2,2,1308.538395,1308.538395,3505,NO,26.39,31.51,3,0.77,6112,112.088242,121.827403,131.420157,137.488386,I,Above,Gable,0,5701,,28.95335747,0,0,,,,1,1,,0.35,nav,1,1973,2,, 15067,NJBF000083515,700 EIGHTH AVE,Galloway,NJ,39.4463337,-74.5145749,RES1,3001,,16,NE,1974,1974,3102,2,1,1365.729194,1365.729194,3505,NO,30.17,40.75,3,1.08,6112,112.048724,121.792682,131.382137,137.448665,I,Above,Gable,0,5701,,35.45689171,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 15068,NJBF000083526,634 EIGHTH AVE,Galloway,NJ,39.44658797,-74.51245245,RES1,3001,,16,NE,1973,1973,3102,2,2,2286.541904,2286.541904,3505,NO,25.13,30.81,3,-0.59,6112,112.089309,121.826733,131.419486,137.486533,I,Above,Gable,0,5701,,27.96950602,0,0,,,,1,1,,0.35,nav,1,1973,2,, 15069,NJBF000083529,638 EIGHTH AVE,Galloway,NJ,39.44663248,-74.51422227,RES1,3001,,16,NE,1990,1990,3102,2,1,1934.705441,1934.705441,3505,NO,32.54,39.94,3,4.7,6112,112.054129,121.795695,131.385507,137.45096,I,Above,Gable,0,5701,,36.23778299,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 15070,NJBF000083543,636 EIGHTH AVE,Galloway,NJ,39.44693117,-74.51410432,RES1,3001,,16,NE,1999,1999,3102,2,1,2142.00767,2142.00767,3505,NO,32.46,43.62,3,-2.14,6112,112.05489,121.794641,131.384424,137.448605,I,Above,Gable,0,5701,,38.04146933,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 15071,NJBF000083581,637 EIGHTH AVE,Galloway,NJ,39.44758103,-74.5142399,RES1,3001,,16,NE,1965,1965,3102,1,1,1317.267386,1317.267386,3505,NO,24.27,33.27,3,7.88,6112,112.048817,121.785572,131.374656,137.435745,I,Above,Gable,0,5701,,28.77026111,0,0,,,,1,1,,0.35,nav,1,1965,1,, 15072,NJBF000083594,624A EIGHTH AVE,Galloway,NJ,39.44774265,-74.5116804,RES1,3001,,16,NE,1987,1987,3102,1,1,2743.104808,2743.104808,3505,NO,15.96,27.86,3,3.57,6112,112.098404,121.828122,131.421284,137.48367,I,Above,Gable,0,5701,,21.90984966,0,0,,,,1,1,,0.35,nav,1,1987,1,, 15073,NJBF000083621,633 EIGHTH AVE,Galloway,NJ,39.44802651,-74.51427567,RES1,3001,,16,NE,1988,1988,3102,1,1,3073.602268,3073.602268,3505,NO,22.56,31.82,3,4.9,6112,112.045791,121.780338,131.369043,137.428053,I,Above,Gable,0,5701,,27.19022908,0,1.2,,,,1,1,,0.35,nav,1,1988,1,, 15074,NJBF000083627,626 EIGHTH AVE,Galloway,NJ,39.44808805,-74.51244681,RES1,3001,,16,NE,1987,1987,3102,2,1,1348.270279,1348.270279,3505,NO,22.42,34.28,3,-2.16,6112,112.081462,121.811286,131.402939,137.463166,I,Above,Hip,0,5701,,28.34887955,0,0,,,,1,1,,0.35,nav,1,1987,2,, 15075,NJBF000083655,627 EIGHTH AVE,Galloway,NJ,39.44846152,-74.51299886,RES1,3001,,15,NE,1928,1928,3102,1,1,854.9079115,854.9079115,3505,NO,11.67,23.63,3,-1.06,6106,112.068636,121.797875,131.388358,137.446435,I,Above,Gable,0,5701,,17.64836808,0,0,,,,1,1,,0.03,nav,1,1928,1,, 15076,NJBF000083681,625 EIGHTH AVE,Galloway,NJ,39.44875631,-74.51291264,RES1,3001,,16,NE,1960,1960,3102,1,1,1587.696127,1587.696127,3505,NO,10.25,16,3,-0.54,6112,112.068789,121.796315,131.38673,137.443532,I,Above,Gable,0,5701,,13.12252392,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 15077,NJBF000083713,623 EIGHTH AVE,Galloway,NJ,39.44909322,-74.51252242,RES1,3001,,16,NE,1967,1967,3102,2,1,2319.505544,2319.505544,3505,YES,24.29,39.15,3,1.71,6112,112.074709,121.799575,131.390392,137.445972,I,Above,Gable,0,5701,,31.71796287,0,0,,,,1,1,,0.35,nav,1,1967,2,, 15078,NJBF000083756,621 EIGHTH AVE,Galloway,NJ,39.44965959,-74.512505,RES1,3001,,16,NE,1967,1967,3102,1,1,604.8381932,604.8381932,3505,YES,20.32,29,3,1.09,6112,112.072081,121.79399,131.384443,137.437443,I,Above,Gable,0,5701,,24.65792432,0,0,,,,1,1,,0.35,nav,1,1967,1,, 15079,NJBF000083825,619A EIGHTH AVE,Galloway,NJ,39.45043571,-74.51272294,RES1,3001,,16,NE,2002,2002,3102,2,1,1901.744748,1901.744748,3505,NO,22.09,31.43,3,-0.76,6112,112.063775,121.782179,131.371753,137.421015,I,Above,Gable,0,5701,,26.76234392,0,1.2,,,,1,1,,0.35,nav,1,2002,2,, 15080,NJBF000083863,615A EIGHTH AVE,Galloway,NJ,39.45083086,-74.51207396,RES1,3001,,16,NE,1993,1993,3102,2,1,1947.30752,1947.30752,3505,NO,30.28,42.11,3,0.74,6112,112.074432,121.789282,131.379648,137.427645,I,Above,Gable,0,5701,,36.19288473,0,1.2,,,,1,1,,0.35,nav,1,1993,2,, 15081,NJBF000083915,609 EIGHTH AVE,Galloway,NJ,39.45179016,-74.51202931,RES1,3001,,16,NE,1987,1987,3102,2,1,2246.807766,2246.807766,3505,NO,31.42,45.99,3,3.78,6112,112.070342,121.7801,131.369914,137.413555,I,Above,Gable,0,5701,,38.70289553,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 15082,NJBF000084108,509 FIR AVE,Galloway,NJ,39.45506935,-74.54204525,RES1,3001,,16,NE,1946,1946,3101,1,1,2130.509761,2130.509761,3507,NO,16.21,21.93,1,0.19,6112,111.481835,121.237766,130.778908,136.763867,I,Above,Flat,0,5701,,19.07194956,0,0,,,,1,1,,0.35,nav,1,1946,1,, 15083,NJBF000084117,509 FIR AVE,Galloway,NJ,39.45524144,-74.54187405,RES1,3001,,16,NE,1946,1946,3101,1,1,1955.070592,1955.070592,3507,NO,14.11,27.06,1,1.2,6112,111.484394,121.238872,130.780241,136.764595,I,Above,Gable,0,5701,,20.58241045,0,0,,,,1,1,,0.35,nav,1,1946,1,, 15084,NJBF000084122,504 FIR AVE,Galloway,NJ,39.45538301,-74.5413634,RES1,3001,,NaN,NE,1946,1946,3101,1,1,848.1366546,848.1366546,3507,NO,19.08,33.38,1,2.08,6112,111.493399,121.245935,130.788053,136.77263,I,Above,Flat,0,5701,,26.22926833,0,0,,,,1,1,,0.35,nav,1,1946,1,, 15085,NJBF000084125,510 GENISTA AVE,Galloway,NJ,39.45554444,-74.54226611,RES1,3001,,NaN,NE,1945,1945,3101,1,1,1069.133223,1069.133223,3507,NO,15.97,21.41,1,-0.61,6112,111.475992,121.229296,130.770018,136.75194,I,Above,Gable,0,5701,,18.68781007,0,1.1,,,,1,1,,0.35,nav,1,1945,1,, 15086,NJBF000084131,508 GENISTA AVE,Galloway,NJ,39.45573162,-74.54231151,RES1,3001,,45,NE,1945,1945,3101,1,4,3679.433967,3679.433967,3507,NO,13.53,27.02,1,2.25,6112,111.474455,121.226633,130.767256,136.748054,I,Above,Hip,0,5701,,20.27727165,0,0,,,,1,1,,0.35,nav,1,1945,1,, 15087,NJBF000084148,30 MORTON AVE,Galloway,NJ,39.45657841,-74.54363357,RES1,3001,,16,NE,2010,2010,3101,2,1,1260.092082,1260.092082,3507,NO,30.15,42.49,1,0.66,6112,111.446898,121.196159,130.734695,136.708134,I,Above,Gable,0,5701,,36.31936117,0,1.1,,,,1,1,,0.35,nav,1,2010,2,, 15088,NJBF000084152,32 MORTON AVE,Galloway,NJ,39.45675242,-74.54364834,RES1,3001,,16,NE,1990,1990,3101,1,1,901.4473178,901.4473178,3507,NO,17.45,24.49,1,2.37,6112,111.446023,121.194171,130.73267,136.705112,I,Above,Hip,0,5701,,20.96672441,0,1.2,,,,1,1,,0.35,nav,1,1990,1,, 15089,NJBF000084156,32 MORTON AVE,Galloway,NJ,39.45686103,-74.5437218,RES1,3001,,16,NE,1990,1990,3101,1,1,1479.135118,1479.135118,3507,NO,15.75,24.49,1,2.29,6112,111.444269,121.191845,130.730225,136.701906,I,Above,Gable,0,5701,,20.11852282,0,1.2,,,,1,1,,0.35,nav,1,1990,1,, 15090,NJBF000084163,34 MORTON AVE,Galloway,NJ,39.4570689,-74.54378683,RES1,3001,,16,NE,1930,1930,3101,1,1,2753.782824,2753.782824,3507,NO,18.21,29.95,1,-0.22,6112,111.442333,121.188669,130.726936,136.697322,I,Above,Gable,0,5701,,24.0827354,0,0,,,,1,1,,0.35,nav,1,1930,1,, 15091,NJBF000084168,36 MORTON AVE,Galloway,NJ,39.45729906,-74.54398739,RES1,3001,,16,NE,1968,1968,3101,1,1,573.8225814,573.8225814,3507,NO,15.89,25.78,1,0.84,6112,111.437829,121.183036,130.720993,136.689674,I,Above,Gable,0,5701,,20.83361443,0,0,,,,1,1,,0.35,nav,1,1968,1,, 15092,NJBF000084179,38 MORTON AVE,Galloway,NJ,39.45760589,-74.54394704,RES1,3001,,16,NE,1989,1989,3101,1,1,860.7336524,860.7336524,3507,NO,17.1,31.02,1,1.97,6112,111.43749,121.1806,130.718599,136.685644,I,Above,Gable,0,5701,,24.05956869,0,0,,,,1,1,,0.35,nav,1,1989,1,, 15093,NJBF000084185,38A MORTON AVE,Galloway,NJ,39.45783109,-74.54407032,RES1,3001,,16,NE,1988,1988,3101,1,1,1337.617735,1337.617735,3507,NO,12.5,22.04,1,-0.25,6112,111.434434,121.176293,130.714102,136.679624,I,Above,Gable,0,5701,,17.27257677,0,0,,,,1,1,,0.35,nav,1,1988,1,, 15094,NJBF000084195,40 MORTON AVE,Galloway,NJ,39.45803758,-74.54413857,RES1,3001,,16,NE,1988,1988,3101,1,1,1085.616122,1085.616122,3507,NO,20.85,31.22,1,2.89,6112,111.432439,121.173061,130.710764,136.674975,I,Above,Flat,0,5701,,26.03705854,0,0,,,,1,1,,0.35,nav,1,1988,1,, 15095,NJBF000084200,40A MORTON AVE,Galloway,NJ,39.45821929,-74.54421534,RES1,3001,,16,NE,1988,1988,3101,1,1,1705.955713,1705.955713,3507,NO,20.3,30.93,1,1.6,6112,111.430408,121.169977,130.707565,136.670595,I,Above,Flat,0,5701,,25.61415036,0,0,,,,1,1,,0.35,nav,1,1988,1,, 15096,NJBF000084204,,Galloway,NJ,39.45837641,-74.54361437,RES1,3001,,NaN,NE,1870,0,3101,1,1,1244.56816,1244.56816,3507,NO,13.34,24.4,1,0.31,6112,111.440927,121.178334,130.71679,136.680221,I,Above,Gable,0,5701,,18.87170792,0,0,,,,1,1,,0.35,nav,1,1870,1,, 15097,NJBF000084207,MORTON AVE,Galloway,NJ,39.45843557,-74.54427297,RES1,3001,,NaN,NE,1969,0,3101,1,1,1255.22045,1255.22045,3507,NO,13.65,18.89,1,0.72,6112,111.428585,121.166827,130.704328,136.66601,I,Above,Gable,0,5701,,16.27265532,0,0,,,,1,1,,0.35,nav,1,1969,1,, 15098,NJBF000084215,,Galloway,NJ,39.45867951,-74.54377268,RES1,3001,,NaN,NE,1911,0,3101,1,1,1416.133436,1416.133436,3507,NO,13.84,27.15,1,2.32,6112,111.436934,121.172631,130.710852,136.672234,I,Above,Gable,0,5701,,20.493618,0,0,,,,1,1,,0.35,nav,1,1911,1,, 15099,NJBF000084230,44 MORTON AVE,Galloway,NJ,39.45923884,-74.54444637,RES1,3001,,15,NE,1925,1925,3101,1,1,626.1677778,626.1677778,3507,NO,11.67,22.28,1,0.05,6112,111.422621,121.155857,130.693116,136.649883,I,Above,Gable,0,5701,,16.9736949,0,0,,,,1,1,,0.7,nav,1,1925,1,, 15100,NJBF000084248,48 W WHITE HORSE PIKE,Galloway,NJ,39.45954591,-74.54471905,RES1,3001,31,NaN,NE,1961,1961,3101,1,1,2514.332368,2514.332368,3507,NO,13.37,18.41,1,2.09,6112,111.416555,121.148247,130.685128,136.639552,I,Above,Hip,0,5701,,15.89253807,0,0,,,,1,1,,0.7,nav,1,1961,1,, 15101,NJBF000084295,820 SOMERSTOWN LN,Galloway,NJ,39.4601915,-74.45448146,RES1,3001,,NaN,NE,2017,2017,3102,2,1,549.5842524,549.5842524,3505,NO,33.8,44.6,3,1.48,6112,113.151905,122.713024,132.391851,138.39767,I,Above,Flat,0,5701,,39.20013341,0,0,,,,1,1,,0.35,nav,1,2017,2,, 15102,NJBF000084643,145 W WHITE HORSE PIKE,Galloway,NJ,39.46715285,-74.55840027,RES1,3001,560,17,NE,1989,1989,3101,2,1,1359.921088,1359.921088,3507,NO,26.99,40.2,1,0.54,6112,111.148255,120.848694,130.371095,136.243443,I,Above,Gable,0,5701,,33.59493652,0,0,,,,1,1,,0.35,nav,1,1989,2,, 15103,NJBF000084629,231 S NEW YORK RD,Galloway,NJ,39.46692131,-74.46305647,RES1,3001,,16,NE,1903,1903,3102,2,1,1629.360949,1629.360949,3505,NO,32.42,44.23,3,0.39,6112,112.937391,122.484688,132.142544,138.134466,I,Above,Gable,0,5701,,38.32383289,0,0,,,,1,1,,0.15,nav,1,1903,2,, 15104,NJBF000084654,453 XANTHUS AVE,Galloway,NJ,39.46737334,-74.55844601,RES1,3001,,16,NE,1951,1951,3101,1,1,2433.895184,2433.895184,3507,NO,13.75,19.35,1,2.33,6112,111.14685,120.845755,130.368252,136.239048,I,Above,Gable,0,5701,,16.54969868,0,0,,,,1,1,,0.35,nav,1,1951,1,, 15105,NJBF000084639,222 S NEW YORK RD,Galloway,NJ,39.46707878,-74.4625127,RES1,3001,737,16,NE,1920,1920,3102,2,1,1785.422599,1785.422599,3505,YES,37.84,47.94,3,-0.45,6112,112.946924,122.492805,132.151407,138.142526,I,Above,Flat,0,5701,,42.88825153,0,0,,,,1,1,,0.15,nav,1,1920,2,, 15106,NJBF000084757,205 S NEW YORK RD,Galloway,NJ,39.46880146,-74.46305313,RES1,3001,,16,NE,1835,1835,3102,2,1,515.6488864,515.6488864,3505,NO,25.6,39.45,3,-2.77,6106,112.925005,122.464407,132.120557,138.10651,I,Above,Gable,0,5701,,32.52753769,0,0,,,,1,1,,0.03,nav,1,1835,2,, 15107,NJBF000084801,717 GREAT CREEK RD,Galloway,NJ,39.46933089,-74.45886104,RES1,3001,,16,NE,1972,1972,3102,2,1,1305.617619,1305.617619,3505,NO,25.71,35.69,3,0.85,6112,113.002945,122.534633,132.197112,138.179068,I,Above,Gable,0,5701,,30.70341665,0,0,,,,1,1,,0.15,nav,1,1972,2,, 15108,NJBF000084804,707 GREAT CREEK RD,Galloway,NJ,39.46939699,-74.46043222,RES1,3001,,NaN,NE,1926,0,3102,2,1,1124.361449,1124.361449,3505,NO,31.29,46.02,3,2.7,6112,112.971973,122.505409,132.165265,138.147969,I,Above,Gable,0,5701,,38.6527094,0,0,,,,1,1,,0.35,nav,1,1926,2,, 15109,NJBF000085539,ZURICH AVE,Galloway,NJ,39.4927459,-74.54951057,RES1,3001,,NaN,NE,1969,0,3101,1,1,3168.62688,3168.62688,3507,NO,18.59,24.3,1,1.23,6112,111.22572,120.729983,130.277839,136.021599,I,Above,Gable,0,5701,,21.44561079,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15110,NJBF000085552,101 VERA KING FARRIS DR,Galloway,NJ,39.49330755,-74.52917855,EDU2,3003,,NaN,E,1969,0,3401,1,1,21526.01811,21526.01811,3507,NO,13.25,26.64,1,-0.67,6112,111.57166,121.053964,130.616732,136.423838,I,Above,Flat,0,NaN,,19.94672471,0,0,,,,1,1,,1,nav,1,1969,1,, 15111,NJBF000085553,502 REVERE WAY,Galloway,NJ,39.49331171,-74.47609966,RES1,3001,,16,NE,1989,1989,3102,2,1,1404.481852,1404.481852,3507,NO,23.56,29.94,1,-0.11,6112,112.527146,121.961615,131.57988,137.484925,I,Above,Gable,0,5701,,26.75023262,0,0,,,,1,1,,0.35,nav,1,1989,2,, 15112,NJBF000085555,500 REVERE WAY,Galloway,NJ,39.49340044,-74.47628651,RES1,3001,,16,NE,1988,1988,3102,2,1,1180.589197,1180.589197,3507,NO,39.99,51.35,1,1.45,6112,112.523188,121.957322,131.575302,137.479902,I,Above,Gable,0,5701,,45.66722772,0,1.1,,,,1,1,,0.35,nav,1,1988,2,, 15113,NJBF000085530,101 VERA KING FARRIS DR,Galloway,NJ,39.49254852,-74.53189101,EDU2,3003,,NaN,E,1969,0,3401,3,1,280546.9124,280546.9124,3507,NO,36.35,47.68,1,-0.16,6112,111.527404,121.017469,130.577743,136.380953,I,Above,Flat,0,NaN,,42.01483428,0,0,,,,1,1,,1,nav,1,1969,3,, 15114,NJBF000085565,503 REVERE WAY,Galloway,NJ,39.4937083,-74.4766512,RES1,3001,,16,NE,1989,1989,3102,2,1,1147.636661,1147.636661,3507,NO,36.6,51.45,1,0.38,6112,112.514708,121.947445,131.564786,137.468061,I,Above,Gable,0,5701,,44.02763061,0,0,,,,1,1,,0.35,nav,1,1989,2,, 15115,NJBF000085590,501 E MOSS MILL RD,Galloway,NJ,39.49494295,-74.47769351,RES1,3001,,NaN,NE,1931,1931,3102,2,1,1380.260853,1380.260853,3507,NO,34.81,46.01,1,1.51,6112,112.48847,121.915222,131.530542,137.428791,I,Above,Flat,0,5701,,40.41042832,0,0,,,,1,1,,0.35,nav,1,1931,2,, 15116,NJBF000085622,101 VERA KING FARRIS DR,Galloway,NJ,39.49737395,-74.53551328,EDU2,3003,,NaN,E,1969,0,3401,3,1,7531.391637,7531.391637,3507,NO,52.27,59.11,1,0.23,6112,111.447292,120.906809,130.466333,136.232503,I,Above,Flat,0,NaN,,55.69117539,0,0,,,,1,1,,0.7,nav,1,1969,3,, 15117,NJBF000085637,STOCKTON STATE COLLEGE,Galloway,NJ,39.49776273,-74.53375781,EDU2,3003,,NaN,E,1969,0,3401,1,1,7173.713894,7173.713894,3507,NO,14.79,23.19,1,2.88,6112,111.475876,120.931235,130.492141,136.261914,I,Above,Flat,0,NaN,,18.99157876,0,0,,,,1,1,,1,nav,1,1969,1,, 15118,NJBF000085638,STOCKTON STATE COLLEGE,Galloway,NJ,39.49777287,-74.53345683,EDU2,3003,,NaN,E,1969,0,3401,2,1,7173.726089,7173.726089,3507,NO,41.84,48.66,1,2.97,6112,111.480992,120.936038,130.497158,136.267842,I,Above,Flat,0,NaN,,45.24675559,0,0,,,,1,1,,1,nav,1,1969,2,, 15119,NJBF000085640,STOCKTON STATE COLLEGE,Galloway,NJ,39.49779773,-74.53300188,EDU2,3003,,NaN,E,1969,0,3401,2,1,7257.082866,7257.082866,3507,NO,28.06,38.69,1,2.18,6112,111.488694,120.943197,130.504646,136.276649,I,Above,Flat,0,NaN,,33.37639557,0,0,,,,1,1,,1,nav,1,1969,2,, 15120,NJBF000085641,STOCKTON STATE COLLEGE,Galloway,NJ,39.49781067,-74.53270918,EDU2,3003,,NaN,E,1969,0,3401,2,1,6817.97989,6817.97989,3507,NO,31.85,41.31,1,-0.8,6112,111.493668,120.947842,130.509503,136.282368,I,Above,Flat,0,NaN,,36.58076551,0,0,,,,1,1,,1,nav,1,1969,2,, 15121,NJBF000085657,512 S COLOGNE AVE,Galloway,NJ,39.49843171,-74.61468254,RES1,3001,,16,NE,1961,1961,3101,2,1,1230.04965,1230.04965,3507,NO,22.75,37.05,1,0.18,6112,110.210512,119.689273,129.249331,134.611741,I,Above,Gable,0,5701,,29.89912468,0,0,,,,1,1,,0.35,nav,1,1961,2,, 15122,NJBF000085644,101 VERA KING FARRIS DR,Galloway,NJ,39.49794372,-74.52943855,EDU2,3003,,NaN,E,1969,0,3401,3,1,7235.756741,7235.756741,3507,NO,51.86,57.61,1,-0.69,6112,111.549369,120.999956,130.564029,136.346362,I,Above,Flat,0,NaN,,54.73436782,0,0,,,,1,1,,1,nav,1,1969,3,, 15123,NJBF000085662,510 S COLOGNE AVE,Galloway,NJ,39.4986023,-74.61450336,RES1,3001,,16,NE,1955,1955,3101,1,1,1255.237622,1255.237622,3507,NO,15.68,26.95,1,2.69,6112,110.212759,119.690192,129.25032,134.612736,I,Above,Gable,0,5701,,21.31468379,0,0,,,,1,1,,0.35,nav,1,1955,1,, 15124,NJBF000085668,500 S COLOGNE AVE,Galloway,NJ,39.49874175,-74.61411728,RES1,3001,,16,NE,1930,1930,3101,2,1,573.8314547,573.8314547,3507,NO,33.63,39.22,1,0.07,6112,110.217906,119.694321,129.254332,134.618356,I,Above,Gable,0,5701,,36.42383406,0,0,,,,1,1,,0.35,nav,1,1930,2,, 15125,NJBF000085669,508 S COLOGNE AVE,Galloway,NJ,39.49877407,-74.61430253,RES1,3001,,16,NE,1956,1956,3101,1,1,580.6191928,580.6191928,3507,NO,13.74,28.22,1,2.06,6112,110.21528,119.691375,129.251562,134.614103,I,Above,Gable,0,5701,,20.98189629,0,0,,,,1,1,,0.35,nav,1,1956,1,, 15126,NJBF000085673,500 S COLOGNE AVE,Galloway,NJ,39.49905695,-74.61381862,RES1,3001,,16,NE,1930,1930,3101,2,1,1015.836931,1015.836931,3507,NO,24.54,34.63,1,-0.24,6112,110.221578,119.695518,129.255692,134.619481,I,Above,Gable,0,5701,,29.5833405,0,0,,,,1,1,,0.35,nav,1,1930,2,, 15127,NJBF000085723,2 N POMONA RD,Galloway,NJ,39.50168068,-74.51514265,COM8,3001,73,16,ME,2014,2014,3401,2,1,4008.165204,4008.165204,3507,NO,27.2,34.46,1,-0.6,6112,111.782192,121.1962,130.772107,136.57674,I,Above,Gable,0,5701,,30.83076449,0,0,,,,1,1,,0.7,nav,1,2014,2,, 15128,NJBF000085748,106 E MOSS MILL RD,Galloway,NJ,39.50226203,-74.51301828,RES4,3001,73,16,ME,1970,1970,3401,1,1,1302.808579,1302.808579,3507,NO,10.01,23.23,1,-0.79,6109,111.816801,121.225403,130.80306,136.610566,I,Above,Flat,0,NaN,,16.62000802,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15129,NJBF000085753,106 E MOSS MILL RD,Galloway,NJ,39.50232768,-74.51280829,RES4,3001,73,16,ME,1970,1970,3401,1,1,1495.820308,1495.820308,3507,NO,16.24,24.55,1,0.54,6109,111.820185,121.228199,130.806028,136.613776,I,Above,Gable,0,NaN,,20.39633612,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15130,NJBF000085755,106 E MOSS MILL RD,Galloway,NJ,39.50236241,-74.51321463,RES4,3001,73,16,ME,1970,1970,3401,1,1,1097.745471,1097.745471,3507,NO,12.28,26.34,1,0.99,6109,111.812916,121.220999,130.798501,136.60505,I,Above,Flat,0,NaN,,19.31391198,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15131,NJBF000085758,106 E MOSS MILL RD,Galloway,NJ,39.50242366,-74.51345387,RES4,3001,73,16,ME,1970,1970,3401,1,1,1133.930857,1133.930857,3507,NO,11.16,19.21,1,-0.32,6109,111.808465,121.21631,130.793624,136.599275,I,Above,Gable,0,NaN,,15.18499617,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15132,NJBF000085760,106 E MOSS MILL RD,Galloway,NJ,39.50251608,-74.5130866,RES4,3001,73,16,ME,1970,1970,3401,1,1,1712.971981,1712.971981,3507,NO,19.18,32.93,1,0.21,6112,111.814477,121.221449,130.799063,136.605247,I,Above,Gable,0,NaN,,26.05615499,0,0,,,,1,1,,1,nav,1,1970,1,, 15133,NJBF000085764,106 E MOSS MILL RD,Galloway,NJ,39.50258969,-74.5124765,RES4,3001,73,16,ME,1970,1970,3401,1,1,1607.7588,1607.7588,3507,NO,19.55,30.76,1,0.11,6112,111.824819,121.230867,130.808974,136.616392,I,Above,Gable,0,NaN,,25.15701806,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15134,NJBF000085763,106 E MOSS MILL RD,Galloway,NJ,39.50257165,-74.51323744,RES4,3001,73,16,ME,1970,1970,3401,1,1,1507.879318,1507.879318,3507,NO,10.55,24.4,1,-0.48,6112,111.811608,121.218318,130.795814,136.601358,I,Above,Gable,0,NaN,,17.47406627,0,0,,,,1,1,,1,nav,1,1970,1,, 15135,NJBF000085766,106 E MOSS MILL RD,Galloway,NJ,39.50262382,-74.51284549,RES4,3001,73,16,ME,1970,1970,3401,1,1,1109.799047,1109.799047,3507,NO,16.54,21.58,1,2.87,6112,111.818232,121.224318,130.802131,136.608452,I,Above,Hip,0,NaN,,19.06181048,0,0,,,,1,1,,1,nav,1,1970,1,, 15136,NJBF000085769,106 E MOSS MILL RD,Galloway,NJ,39.50276094,-74.51295165,RES4,3001,73,16,ME,1970,1970,3401,1,1,977.1102999,977.1102999,3507,NO,21.07,30.28,1,2.63,6112,111.815758,121.221014,130.798748,136.604177,I,Above,Gable,0,NaN,,25.67228062,0,0,,,,1,1,,1,nav,1,1970,1,, 15137,NJBF000085780,106 E MOSS MILL RD,Galloway,NJ,39.50301527,-74.51283371,RES4,3001,73,16,ME,1970,1970,3401,1,1,663.4614924,663.4614924,3507,NO,11.4,19.23,1,-0.92,6112,111.816701,121.220193,130.798033,136.602626,I,Above,Gable,0,NaN,,15.31855542,0,0,,,,1,1,,1,nav,1,1970,1,, 15138,NJBF000085781,2 N POMONA RD,Galloway,NJ,39.50304254,-74.51411327,COM8,3001,73,16,ME,2014,2014,3401,2,1,788.9974613,788.9974613,3507,NO,29.13,36.94,1,0.03,6112,111.79425,121.198458,130.775289,136.576415,I,Above,Gable,0,5701,,33.03760784,0,0,,,,1,1,,1,nav,1,2014,2,, 15139,NJBF000085789,106 E MOSS MILL RD,Galloway,NJ,39.50323817,-74.51340245,RES4,3001,73,16,ME,1970,1970,3401,1,1,1121.859239,1121.859239,3507,NO,16.74,28.26,1,2.74,6112,111.805802,121.208215,130.785617,136.587729,I,Above,Gable,0,NaN,,22.50371536,0,0,,,,1,1,,1,nav,1,1970,1,, 15140,NJBF000085801,2 N POMONA RD,Galloway,NJ,39.50337491,-74.51412635,COM8,3001,73,16,ME,2014,2014,3401,2,1,2919.270707,2919.270707,3507,NO,30.35,41.29,1,2.7,6112,111.792575,121.194584,130.771428,136.571015,I,Above,Gable,0,5701,,35.82173671,0,0,,,,1,1,,1,nav,1,2014,2,, 15141,NJBF000085802,106 E MOSS MILL RD,Galloway,NJ,39.50337833,-74.51294287,RES4,3001,73,16,ME,1970,1970,3401,1,1,1340.524777,1340.524777,3507,NO,12.44,24.61,1,1.79,6112,111.813198,121.214363,130.792134,136.594815,I,Above,Gable,0,NaN,,18.5262957,0,0,,,,1,1,,1,nav,1,1970,1,, 15142,NJBF000085799,,Galloway,NJ,39.51567317,-74.44340613,RES1,3001,,NaN,NE,1956,0,3102,2,1,1138.912357,1138.912357,3507,NO,38.41,49.74,1,1.47,6112,112.988235,122.296246,131.931852,137.800664,I,Above,Flat,0,5701,,44.07614357,0,0,,,,1,1,,0.03,nav,1,1956,2,, 15143,NJBF000085816,106 E MOSS MILL RD,Galloway,NJ,39.50371417,-74.51105364,RES4,3001,73,16,ME,1970,1970,3401,1,1,746.3529374,746.3529374,3507,NO,16.4,22.83,1,1.52,6112,111.844717,121.242358,130.821639,136.627685,I,Above,Gable,0,NaN,,19.61561973,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15144,NJBF000085826,106 E MOSS MILL RD,Galloway,NJ,39.50381157,-74.51095929,RES4,3001,73,16,ME,1970,1970,3401,1,1,848.1245725,848.1245725,3507,NO,10.34,16.99,1,-0.67,6112,111.84594,121.242871,130.822229,136.628085,I,Above,Gable,0,NaN,,13.66299273,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15145,NJBF000085847,,Galloway,NJ,39.50425114,-74.64182386,RES1,3001,,NaN,NE,1969,0,3102,2,1,3296.633225,3296.633225,3505,NO,28.49,35.93,3,3.5,6112,109.845249,119.260842,128.851314,133.976512,I,Above,Gable,0,5701,,32.211477,0,0,,,,1,1,,0.15,nav,1,1969,2,, 15146,NJBF000085828,106 E MOSS MILL RD,Galloway,NJ,39.50386729,-74.51084926,RES4,3001,73,16,ME,1970,1970,3401,1,1,572.8500727,572.8500727,3507,NO,15.38,25.93,1,2.54,6112,111.847618,121.244112,130.823558,136.629452,I,Above,Gable,0,NaN,,20.65736702,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15147,NJBF000085843,106 E MOSS MILL RD,Galloway,NJ,39.50415224,-74.51060455,RES4,3001,73,16,ME,1970,1970,3401,1,1,824.862617,824.862617,3507,NO,13.39,26.89,1,2.01,6112,111.850608,121.245061,130.824705,136.629964,I,Above,Gable,0,NaN,,20.1407342,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15148,NJBF000085846,106 E MOSS MILL RD,Galloway,NJ,39.50423391,-74.51047801,RES4,3001,73,16,ME,1970,1970,3401,1,1,753.1385833,753.1385833,3507,NO,16.94,24.86,1,1.65,6112,111.852461,121.246289,130.826034,136.631256,I,Above,Gable,0,NaN,,20.90098147,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15149,NJBF000085850,106 E MOSS MILL RD,Galloway,NJ,39.50429318,-74.51025129,RES4,3001,73,16,ME,1970,1970,3401,1,1,556.3681787,556.3681787,3507,NO,11.78,22.13,1,-0.91,6112,111.856166,121.249454,130.829379,136.634919,I,Above,Gable,0,NaN,,16.95563997,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15150,NJBF000085853,106 E MOSS MILL RD,Galloway,NJ,39.50431744,-74.51104121,RES4,3001,73,16,ME,1970,1970,3401,1,1,564.1209389,564.1209389,3507,NO,12.77,19.15,1,-0.57,6112,111.84225,121.235908,130.81521,136.618629,I,Above,Gable,0,NaN,,15.9573787,0,0,,,,1,1,,1,nav,1,1970,1,, 15151,NJBF000085869,106 E MOSS MILL RD,Galloway,NJ,39.50460397,-74.51029022,RES4,3001,73,16,ME,1970,1970,3401,1,1,576.7238295,576.7238295,3507,NO,17.8,26.71,1,-0.8,6112,111.854087,121.245353,130.82525,136.629329,I,Above,Gable,0,NaN,,22.25631101,0,0,,,,1,1,,1,nav,1,1970,1,, 15152,NJBF000085889,228 S MANNHEIM AVE,Galloway,NJ,39.5048843,-74.57136072,RES1,3001,,16,NE,1950,1950,3102,1,1,1206.783348,1206.783348,3507,NO,11.25,26.01,1,0.03,6112,110.837838,120.262614,129.814985,135.388328,I,Above,Gable,0,NaN,,18.62871631,0,0,,,,1,1,,0.15,nav,1,1950,1,, 15153,NJBF000085899,228 S MANNHEIM AVE,Galloway,NJ,39.50502478,-74.5719713,RES1,3001,,16,NE,1950,1950,3102,1,1,964.454104,964.454104,3507,NO,19.83,31.56,1,0.54,6112,110.827973,120.251859,129.804372,135.373745,I,Above,Gable,0,NaN,,25.69452827,0,0,,,,1,1,,0.15,nav,1,1950,1,, 15154,NJBF000086013,421 HERSCHEL ST,Galloway,NJ,39.50626198,-74.56588252,RES1,3001,,16,NE,1981,1981,3102,2,1,1865.899775,1865.899775,3504,NO,31.14,36.9,-4,0,6112,110.920195,120.332206,129.886331,135.477891,I,Above,Gable,0,5701,,34.0194754,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 15155,NJBF000086035,421 HERSCHEL ST,Galloway,NJ,39.50651758,-74.56580216,RES1,3001,,16,NE,1981,1981,3102,2,1,1647.806498,1647.806498,3504,NO,23.2,30.89,-4,0,6112,110.920782,120.33078,129.885168,135.475526,I,Above,Gable,0,5701,,27.04250265,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 15156,NJBF000086084,427 HERSCHEL ST,Galloway,NJ,39.5073692,-74.56596531,RES1,3001,,16,NE,1980,1980,3102,2,2,2621.948821,2621.948821,3504,NO,21.48,26.63,-4,0,6112,110.915915,120.319388,129.874611,135.458894,I,Above,Hip,0,5701,,24.05314771,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 15157,NJBF000086092,427 HERSCHEL ST,Galloway,NJ,39.50757816,-74.56511555,RES1,3001,,16,NE,1980,1980,3102,2,2,1894.989028,1894.989028,3504,NO,30.22,41.38,-4,0,6112,110.928719,120.330252,129.885754,135.472847,I,Above,Gable,0,5701,,35.79847579,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 15158,NJBF000086138,160 S MANNHEIM AVE,Galloway,NJ,39.50953643,-74.5665764,RES1,3001,,16,NE,1971,1971,3101,2,1,1384.150428,1384.150428,3507,YES,34.19,40.1,1,-0.01,6112,110.900455,120.287345,129.8447,135.41257,I,Above,Gable,0,5701,,37.14812991,0,1.2,,,,1,1,,0.15,nav,1,1971,2,, 15159,NJBF000086137,160 S MANNHEIM AVE,Galloway,NJ,39.50951071,-74.56697856,RES1,3001,,16,NE,1971,1971,3101,2,1,2490.119512,2490.119512,3507,YES,22.16,30.89,1,0.15,6112,110.894217,120.281437,129.838751,135.404785,I,Above,Gable,0,5701,,26.52787096,0,1.2,,,,1,1,,0.15,nav,1,1971,2,, 15160,NJBF000086481,222 W MOSS MILL RD,Galloway,NJ,39.51448215,-74.56173511,RES1,3001,,16,NE,1975,1957,3101,1,1,2063.606266,2063.606266,3507,NO,12.54,22.55,1,0.9,6112,110.962423,120.309441,129.871798,135.433382,I,Above,Gable,0,5701,,17.54298952,0,0,,,,1,1,,0.03,nav,1,1975,1,, 15161,NJBF000086518,122 S MANNHEIM AVE,Galloway,NJ,39.51448215,-74.56173511,RES1,3001,,16,NE,1975,1975,3101,2,1,1628.425856,1628.425856,3507,NO,34.71,42.03,1,1.53,6112,110.962423,120.309441,129.871798,135.433382,I,Above,Gable,0,5701,,38.36868223,0,0.2,,,,1,1,,0.03,nav,1,1975,2,, 15162,NJBF000086537,131 S MANNHEIM AVE,Galloway,NJ,39.51465839,-74.56391532,RES1,3001,,16,NE,1976,1976,3101,2,1,2587.104528,2587.104528,3507,NO,25.08,32.9,1,0.98,6112,110.927806,120.274124,129.836585,135.386389,I,Above,Gable,0,5701,,28.990271,0,0,,,,1,1,,0.35,nav,1,1976,2,, 15163,NJBF000086548,131 S MANNHEIM AVE,Galloway,NJ,39.51489238,-74.56343318,RES1,3001,,16,NE,1976,1976,3101,2,1,2173.497889,2173.497889,3507,NO,28.36,43.16,1,-0.55,6112,110.934662,120.279026,129.841719,135.392508,I,Above,Gable,0,5701,,35.75961239,0,0,,,,1,1,,0.35,nav,1,1976,2,, 15164,NJBF000086557,400 LIEBIG ST,Galloway,NJ,39.51448215,-74.56173511,RES1,3001,,16,NE,1975,2002,3101,2,1,3175.470448,3175.470448,3507,NO,28.7,41.42,1,0.22,6112,110.962423,120.309441,129.871798,135.433382,I,Above,Gable,0,5701,,35.06096283,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 15165,NJBF000086579,114 S MANNHEIM AVE,Galloway,NJ,39.51527765,-74.56053028,RES1,3001,,16,NE,1986,1986,3101,1,1,2791.59384,2791.59384,3507,NO,11.31,22.76,1,-0.44,6112,110.979007,120.319509,129.882659,135.44538,I,Above,Gable,0,5701,,17.03460641,0,0,,,,1,1,,0.35,nav,1,1986,1,, 15166,NJBF000086545,811 MOTTS CREEK RD,Galloway,NJ,39.51486956,-74.44757907,RES1,3001,,16,NE,1969,1969,3102,1,1,1469.281031,1469.281031,3507,NO,11.81,19.46,1,0.85,6106,112.917769,122.229027,131.861142,137.729538,I,Above,Flat,0,5701,,15.63271354,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15167,NJBF000086698,,Galloway,NJ,39.51763805,-74.56386261,RES1,3001,,NaN,NE,1969,0,3101,1,1,1819.377211,1819.377211,3507,NO,18.98,26.21,1,1.95,6112,110.92007,120.243258,129.808584,135.34081,I,Above,Gable,0,5701,,22.59277597,0,0,,,,1,1,,0.15,nav,1,1969,1,, 15168,NJBF000086712,,Galloway,NJ,39.51781057,-74.56374257,RES1,3001,,NaN,NE,1969,0,3101,1,1,697.8833953,697.8833953,3507,NO,18.37,31.3,1,2.01,6112,110.921434,120.243248,129.808737,135.340538,I,Above,Gable,0,5701,,24.83766901,0,0,,,,1,1,,0.15,nav,1,1969,1,, 15169,NJBF000086716,360 N NEW YORK RD,Galloway,NJ,39.51786942,-74.43585607,RES1,3001,,NaN,NE,1969,0,3102,5,1,1065.228955,1065.228955,3507,NO,68.7,78.95,1,-0.27,6106,113.110643,122.410159,132.051128,137.918547,I,Above,Flat,0,5701,,73.82940067,0,0,,,,1,1,,0.03,nav,1,1969,5,, 15170,NJBF000086972,358 S BREMEN AVE,Galloway,NJ,39.52314628,-74.63098309,RES1,3001,,16,NE,1973,1973,3101,2,1,2497.911263,2497.911263,3505,NO,38.59,51.34,3,8.71,6112,109.954266,119.22533,128.827739,133.903073,I,Above,Gable,0,5701,,44.96352817,0,1.2,,,,1,1,,0.35,nav,1,1973,2,, 15171,NJBF000086991,1513 LINCOLN AVE,Galloway,NJ,39.52344906,-74.66173798,RES1,3001,,16,NE,1972,1972,3101,1,1,1292.096487,1292.096487,3504,NO,12.63,21.4,-4,0,6112,109.57786,118.824021,128.452526,133.2909,I,Above,Gable,0,5701,,17.01383088,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 15172,NJBF000087010,1519 LINCOLN AVE,Galloway,NJ,39.52386645,-74.66242087,RES1,3001,,16,NE,1960,1960,3101,1,1,838.4549244,838.4549244,3504,NO,11.01,16.68,-4,0,6112,109.569277,118.811566,128.441108,133.271264,I,Above,Gable,0,5701,,13.84804584,0,0,,,,1,1,,0.35,nav,1,1960,1,, 15173,NJBF000087103,646 PERSHING AVE,Galloway,NJ,39.52510533,-74.66202963,RES1,3001,,16,NE,1920,1920,3101,1,1,1147.671392,1147.671392,3504,NO,14.82,28.58,-4,0,6112,109.571843,118.804854,128.435409,133.260312,I,Above,Hip,0,5701,,21.70012791,0,0,,,,1,1,,0.35,nav,1,1920,1,, 15174,NJBF000087125,234 S FRANKFURT AVE,Galloway,NJ,39.5254809,-74.60524807,RES1,3001,,16,NE,1958,1958,3101,1,1,3504.036343,3504.036343,3507,NO,17.46,23.11,1,1.84,6112,110.293055,119.554822,129.142484,134.381875,I,Above,Gable,0,5701,,20.28595721,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 15175,NJBF000087285,205 S FRANKFURT AVE,Galloway,NJ,39.52976914,-74.6025531,RES1,3001,,16,NE,1977,1977,3101,1,2,2231.34713,2231.34713,3507,NO,18.04,30.95,1,1.69,6112,110.321068,119.54877,129.140329,134.369443,I,Above,Gable,0,5701,,24.49908965,0,0,,,,1,1,,0.15,nav,1,1977,1,, 15176,NJBF000087291,205 S FRANKFURT AVE,Galloway,NJ,39.52999932,-74.60258716,RES1,3001,,16,NE,1977,1977,3101,1,2,1662.366005,1662.366005,3507,NO,13.56,26.62,1,0.13,6112,110.320084,119.545923,129.137794,134.365187,I,Above,Gable,0,5701,,20.08695643,0,0,,,,1,1,,0.35,nav,1,1977,1,, 15177,NJBF000087305,129 S FRANKFURT AVE,Galloway,NJ,39.5304064,-74.6006125,RES1,3001,,16,NE,1973,1973,3101,1,1,995.4799505,995.4799505,3507,NO,19.36,34.17,1,0.2,6112,110.346592,119.569516,129.1608,134.398551,I,Above,Gable,0,5701,,26.76425638,0,0,,,,1,1,,0.35,nav,1,1973,1,, 15178,NJBF000087311,129 S FRANKFURT AVE,Galloway,NJ,39.53058554,-74.60072878,RES1,3001,,16,NE,1973,1973,3101,1,1,1291.115615,1291.115615,3507,NO,14.63,28.76,1,-0.76,6112,110.344554,119.566006,129.157583,134.393402,I,Above,Flat,0,5701,,21.69796651,0,0,,,,1,1,,0.35,nav,1,1973,1,, 15179,NJBF000087322,129 S FRANKFURT AVE,Galloway,NJ,39.53079558,-74.60054643,RES1,3001,,16,NE,1973,1973,3101,1,1,1858.146684,1858.146684,3507,NO,16.31,27.06,1,-0.89,6112,110.346622,119.566414,129.158154,134.393816,I,Above,Gable,0,5701,,21.68752972,0,0,,,,1,1,,0.35,nav,1,1973,1,, 15180,NJBF000087429,709 LINDBERGH AVE,Galloway,NJ,39.53345129,-74.46364589,RES1,3001,,16,NE,1921,1921,3101,1,1,1159.175915,1159.175915,3505,NO,16.77,26.91,3,0.46,6106,112.517667,121.7182,131.319475,137.130871,I,Above,Flat,0,5701,,21.84201424,0,0,,,,1,1,,0.03,nav,1,1921,1,, 15181,NJBF000087600,31 N FRANKFURT AVE,Galloway,NJ,39.53739053,-74.59287679,RES1,3001,,16,NE,1948,1948,3101,1,1,533.1187276,533.1187276,3507,NO,13.12,19.76,1,0.21,6112,110.438073,119.605946,129.201874,134.445444,I,Above,Gable,0,5701,,16.4390797,0,0,,,,1,1,,0.35,nav,1,1948,1,, 15182,NJBF000088274,217 N FRANKFURT AVE,Galloway,NJ,39.53739053,-74.59287679,RES1,3001,,16,NE,1948,1974,3101,1,2,1733.112593,1733.112593,3507,NO,14.9,28.35,1,-0.87,6112,110.438073,119.605946,129.201874,134.445444,I,Above,Gable,0,5701,,21.62223749,0,0,,,,1,1,,0.35,nav,1,1948,1,, 15183,NJBF000088287,217 N FRANKFURT AVE,Galloway,NJ,39.53739053,-74.59287679,RES1,3001,,16,NE,1948,1974,3101,1,2,1628.423404,1628.423404,3507,NO,14.65,25.28,1,0.46,6112,110.438073,119.605946,129.201874,134.445444,I,Above,Gable,0,5701,,19.96535587,0,0,,,,1,1,,0.35,nav,1,1948,1,, 15184,NJBF000088889,807 CLARKS LANDING RD,Galloway,NJ,39.56172171,-74.53840142,RES1,3001,,16,NE,1700,1700,3102,2,1,901.4378315,901.4378315,3504,NO,27.18,38.91,-4,0,6110,111.156998,120.137886,129.733951,135.168333,I,Above,Gable,0,5701,,33.04423278,0,0,,,,1,1,,0.15,nav,1,1700,2,, 15185,NJBF000076906,,Galloway,NJ,39.39533602,-74.38910701,COM8,3001,,NaN,ME,1969,0,3401,2,1,1860.910548,1860.910548,3507,NO,26.74,37.35,1,1.98,6106,115.07265,124.605476,134.478965,140.452742,I,Above,Flat,0,NaN,,32.04706635,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15186,NJBF000081669,1226 E SHORE DR,Galloway,NJ,39.42161881,-74.36534453,RES1,3001,,16,NE,2015,2015,3102,3,1,1676.580361,1676.580361,3507,NO,40.18,52.51,1,0.98,6106,115.281521,124.791811,134.70305,140.494472,I,Above,Gable,0,5701,,46.34227525,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 15187,NJBF000076565,4245 ATL-BRIGANTINE BLVD,Galloway,NJ,39.3939395,-74.4047365,RES1,3001,,19,NE,2016,2016,3102,3,1,2044.820169,2044.820169,3505,NO,53.71,60.3,3,0.01,6106,114.76327,124.327941,134.1672,140.221982,I,Above,Hip,0,5701,,57.00516982,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 15188,NJBF000080613,123 WASHINGTON DR,Galloway,NJ,39.41563402,-74.36882205,RES1,3001,,17,NE,2016,2016,3102,3,1,1574.06624,1574.06624,3507,NO,36.39,47.53,1,0.91,6106,115.272718,124.784925,134.693123,140.514024,I,Above,Gable,0,5701,,41.95882135,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 15189,NJBF000080250,202 13TH STREET NO,Galloway,NJ,39.41443014,-74.35619542,RES1,3001,,43,NE,1956,1956,3102,2,2,880.1433097,880.1433097,3507,YES,35.45,43.25,1,2.13,6106,115.538913,125.037862,134.979176,140.729958,I,Above,Hip,0,5701,,39.3514925,0,0,,,,1,1,,0.03,nav,1,1956,2,, 15190,NJBF000080257,200 13TH STREET NO,Galloway,NJ,39.4145148,-74.35629323,RES1,3001,,18,NE,2014,2014,3102,2,1,1466.763379,1466.763379,3507,NO,39.95,47.7,1,1.46,6106,115.536065,125.035155,134.976142,140.727366,I,Above,Gable,0,5701,,43.82635428,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 15191,NJBF000080120,207 12TH STREET NO,Galloway,NJ,39.41395915,-74.35622739,RES1,3001,,19,NE,2015,2015,3102,3,1,1401.264962,1401.264962,3507,NO,54.04,61.01,1,0.68,6106,115.543192,125.041867,134.983499,140.735252,I,Above,Hip,0,5701,,57.52569799,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 15192,NJBF000079079,,Galloway,NJ,39.40940729,-74.37389121,RES1,3001,,NaN,NE,1969,0,3102,2,1,860.9825503,860.9825503,3507,NO,28.43,36.07,1,0.74,6106,115.234684,124.750671,134.651452,140.512124,I,Above,Hip,0,5701,,32.24646539,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15193,NJBF000080185,100 10TH STREET NO,Galloway,NJ,39.41421704,-74.35959615,RES1,3001,,43,NE,1955,1955,3102,2,2,614.0262275,614.0262275,3507,NO,29.81,36.77,1,-0.93,6106,115.472986,124.974961,134.907689,140.678837,I,Above,Hip,0,5701,,33.28707523,0,0,,,,1,1,,0.03,nav,1,1955,2,, 15194,NJBF000079260,486 W SHORE DR,Galloway,NJ,39.41038184,-74.37489984,COM1,3001,,NaN,ME,1969,0,3401,2,1,1955.481473,1955.481473,3507,NO,30.4,37.1,1,0.83,6106,115.204044,124.721801,134.619371,140.483509,I,Above,Flat,0,NaN,,33.75156554,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15195,NJBF000076603,3106 W BRIGANTINE AVE,Galloway,NJ,39.3940525,-74.3851895,COM1,3001,,NaN,ME,1969,0,3401,1,1,3360.906588,3360.906588,3507,YES,18.12,28.89,1,1.96,6106,115.167335,124.691807,134.575,140.53135,I,Above,Flat,0,NaN,,23.50492532,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15196,NJBF000076634,3100 W BRIGANTINE AVE,Galloway,NJ,39.39414347,-74.38505992,COM1,3001,,NaN,ME,1969,0,3401,2,1,4025.485104,4025.485104,3507,NO,28.15,42.47,1,-0.18,6106,115.16901,124.693316,134.576767,140.532205,I,Above,Flat,0,NaN,,35.30842379,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15197,NJBF000079216,,Galloway,NJ,39.41018168,-74.36903222,COM1,3001,,NaN,ME,1969,0,3401,3,1,2748.85557,2748.85557,3507,NO,51.96,65.75,1,0.02,6106,115.325033,124.835148,134.747319,140.579673,I,Above,Flat,0,NaN,,58.85190081,0,0,,,,1,1,,0.03,nav,1,1969,3,, 15198,NJBF000079223,,Galloway,NJ,39.41022002,-74.36140316,RES1,3001,,NaN,NE,1969,0,3102,2,1,2179.963156,2179.963156,3507,NO,40.39,47.81,1,2.41,6106,115.478524,124.979859,134.911199,140.699938,I,Above,Hip,0,5701,,44.10103229,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15199,NJBF000079704,,Galloway,NJ,39.41241467,-74.36041933,RES1,3001,,NaN,NE,1969,0,3102,2,1,2043.971943,2043.971943,3507,NO,35.34,43.05,1,-0.86,6106,115.475276,124.976993,134.909114,140.688183,I,Above,Hip,0,5701,,39.19726062,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15200,NJBF000079598,,Galloway,NJ,39.4118585,-74.35921967,RES1,3001,,NaN,NE,1969,0,3102,2,1,2274.320293,2274.320293,3507,NO,24.83,37.13,1,1.88,6106,115.505178,125.005331,134.940971,140.714,I,Above,Hip,0,5701,,30.97691242,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15201,NJBF000080571,,Galloway,NJ,39.41548165,-74.37115406,RES1,3001,,NaN,NE,1969,0,3102,2,1,1833.049589,1833.049589,3507,NO,39.72,53.25,1,1.57,6106,115.227207,124.742024,134.644575,140.478488,I,Above,Hip,0,5701,,46.48209402,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15202,NJBF000076500,3200 W BRIGANTINE AVE,Galloway,NJ,39.3936635,-74.3857575,RES3E,3001,,NaN,ME,1969,0,3301,2,1,3147.459645,3147.459645,3507,NO,30.29,38.57,1,0.69,6106,115.159875,124.68509,134.567147,140.527492,I,Above,Flat,0,5701,,34.43096102,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15203,NJBF000080110,,Galloway,NJ,39.41395334,-74.35936905,RES1,3001,,NaN,NE,1969,0,3102,2,1,3532.102247,3532.102247,3507,NO,34.31,45.88,1,2.19,6106,115.480291,124.981894,134.915429,140.685703,I,Above,Hip,0,5701,,40.09902275,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15204,NJBF000078624,,Galloway,NJ,39.40655698,-74.36727261,RES1,3001,,NaN,NE,1969,0,3102,2,1,1588.63484,1588.63484,3507,NO,24.4,38.98,1,1.58,6106,115.398763,124.904505,134.823702,140.653259,I,Above,Flat,0,5701,,31.69068558,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15205,NJBF000079001,,Galloway,NJ,39.40893855,-74.36466073,COM4,3001,,NaN,ME,1969,0,3401,2,1,858.5210101,858.5210101,3507,NO,33.56,44.71,1,2.46,6106,115.426373,124.930521,134.854568,140.664549,I,Above,Flat,0,NaN,,39.13094372,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15206,NJBF000079638,,Galloway,NJ,39.41208879,-74.35884888,RES1,3001,,NaN,NE,1969,0,3102,2,1,1116.869479,1116.869479,3507,NO,24.46,32.14,1,0.63,6106,115.510213,125.010148,134.946556,140.717,I,Above,Hip,0,5701,,28.29791006,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15207,NJBF000079248,,Galloway,NJ,39.41032181,-74.36149428,RES1,3001,,NaN,NE,1969,0,3102,2,1,1974.168204,1974.168204,3507,NO,26.51,38.81,1,1.31,6106,115.47562,124.977122,134.908151,140.697235,I,Above,Hip,0,5701,,32.65930888,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15208,NJBF000080010,,Galloway,NJ,39.41364619,-74.35895897,RES1,3001,,NaN,NE,1969,0,3102,2,1,1681.437129,1681.437129,3507,NO,24.86,38.91,1,1.91,6106,115.491718,124.992743,134.927589,140.69599,I,Above,Gable,0,5701,,31.88640296,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15209,NJBF000078951,200-06 E BRIGANTINE AVE,Galloway,NJ,39.40860005,-74.36157195,RES3C,3001,530,NaN,E,1969,0,3303,3,1,10224.71194,10224.71194,3507,YES,39.34,46.73,1,1.14,6106,115.492205,124.992601,134.924718,140.717427,I,Above,Flat,0,NaN,,43.03437789,0,0,,,,1,1,,0.03,nav,1,1969,3,, 15210,NJBF000076576,3112 W BRIGANTINE AVE,Galloway,NJ,39.39396397,-74.38547798,COM4,3001,,NaN,ME,1969,0,3401,2,1,3394.620924,3394.620924,3507,NO,32.45,38.67,1,0.98,6106,115.162353,124.68729,134.569853,140.527966,I,Above,Hip,0,NaN,,35.56248322,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 15211,NJBF000079257,201 4TH STREET NO,Galloway,NJ,39.41038543,-74.3616132,RES1,3001,,43,NE,1940,1940,3102,2,3,842.8687745,842.8687745,3507,NO,37.29,50.59,1,1.53,6106,115.472563,124.974235,134.904913,140.694575,I,Above,Hip,0,5701,,43.94033092,0,0,,,,1,1,,0.03,nav,1,1940,2,, 15212,NJBF000080012,35 HEALD RD,Galloway,NJ,39.41367588,-74.36389342,RES1,3001,,17,NE,2014,2014,3102,3,1,1153.33983,1153.33983,3507,NO,50.58,64.09,1,0.27,6106,115.392277,124.898302,134.820549,140.617401,I,Above,Gable,0,5701,,57.3328375,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 15213,NJBF000078687,246 3RD STREET SO,Galloway,NJ,39.40692757,-74.3653698,RES1,3001,,20,NE,2010,2010,3102,3,1,1682.109544,1682.109544,3507,NO,46.88,52.95,1,1.18,6106,115.433303,124.936937,134.860643,140.678571,I,Above,Gable,0,5701,,49.91314403,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 15214,NJBF000078703,242 3RD STREET SO,Galloway,NJ,39.40702797,-74.365398,RES1,3001,,20,NE,2013,2013,3102,3,1,1136.810588,1136.810588,3507,NO,41.68,56.3,1,2.33,6106,115.431678,124.935417,134.858982,140.676877,I,Above,Gable,0,5701,,48.9863261,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 15215,NJBF000079084,,Galloway,NJ,39.4094466,-74.36266746,RES1,3001,,NaN,NE,1952,0,3102,2,1,732.7709522,732.7709522,3507,NO,34.03,48.09,1,1.95,6106,115.461217,124.963422,134.892133,140.689646,I,Above,Gable,0,5701,,41.06088535,0,0,,,,1,1,,0.03,nav,1,1952,2,, 15216,NJBF000076907,3106 REVERE BLVD,Galloway,NJ,39.39538206,-74.38659637,COM1,3001,,NaN,ME,1969,0,3401,2,1,1726.362752,1726.362752,3507,NO,36.76,42.05,1,-0.29,6106,115.123925,124.652042,134.53131,140.491835,I,Above,Gable,0,NaN,,39.40794791,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15217,NJBF000078733,1001 BAYSHORE AVE,Galloway,NJ,39.407246,-74.37347716,RES1,3001,,NaN,NE,1969,0,3102,2,1,2287.696513,2287.696513,3507,NO,31.6,37.4,1,0.61,6106,115.265732,124.780086,134.683465,140.546327,I,Above,Gable,0,5701,,34.49976322,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15218,NJBF000079317,409 W SHORE DR,Galloway,NJ,39.41061208,-74.36950408,RES1,3001,,16,NE,1976,1976,3102,2,1,1323.1015,1323.1015,3507,YES,34.99,46,1,-0.47,6106,115.310994,124.821908,134.732574,140.566722,I,Above,Gable,0,5701,,40.49330971,0,0,,,,1,1,,0.03,nav,1,1976,2,, 15219,NJBF000078622,162 SHERIDAN SQUARE,Galloway,NJ,39.40654151,-74.36951031,RES1,3001,,49,NE,2000,2000,3102,3,2,2166.341203,2166.341203,3507,NO,44.61,51.92,1,1.18,6106,115.353632,124.862243,134.775887,140.618144,I,Above,Hip,0,5701,,48.2652146,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 15220,NJBF000078606,707 W BEACH AVE,Galloway,NJ,39.40648064,-74.36958566,RES1,3001,,16,NE,1953,1953,3102,2,1,1575.910386,1575.910386,3507,NO,26.78,40.12,1,0,6106,115.352737,124.861409,134.774906,140.617714,I,Above,Hip,0,5701,,33.45117446,0,0,,,,1,1,,0.03,nav,1,1953,2,, 15221,NJBF000078646,158 SHERIDAN SQUARE,Galloway,NJ,39.40668767,-74.36964354,RES1,3001,,43,NE,1953,1953,3102,2,2,936.803434,936.803434,3507,NO,33.76,48.09,1,2.85,6106,115.349374,124.858253,134.771463,140.614179,I,Above,Hip,0,5701,,40.92277361,0,0,,,,1,1,,0.03,nav,1,1953,2,, 15222,NJBF000078652,,Galloway,NJ,39.40672314,-74.37014858,RES1,3001,,NaN,NE,1969,0,3102,2,1,2644.89449,2644.89449,3507,NO,34.02,39.08,1,0.36,6106,115.33877,124.848335,134.76027,140.605749,I,Above,Hip,0,5701,,36.55155137,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15223,NJBF000078630,155 8TH STREET SO,Galloway,NJ,39.40659532,-74.37006057,RES1,3001,,15,NE,1959,1959,3102,1,1,797.6283317,797.6283317,3507,NO,20.33,29.31,1,1.04,6106,115.341905,124.851275,134.763517,140.608763,I,Above,Hip,0,5701,,24.82063975,0,1.2,,,,1,1,,0.03,nav,1,1959,1,, 15224,NJBF000078612,159 8TH STREET SO,Galloway,NJ,39.4064905,-74.370021,RES1,3001,,43,NE,1968,1968,3102,2,2,927.1834761,927.1834761,3507,NO,34.27,46.12,1,0.36,6106,115.343826,124.853077,134.76549,140.610725,I,Above,Hip,0,5701,,40.19586213,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 15225,NJBF000079310,407 W SHORE DR,Galloway,NJ,39.41059263,-74.36931104,RES1,3001,,16,NE,1972,1972,3102,1,1,1879.990588,1879.990588,3507,NO,17.76,23.37,1,1.65,6106,115.315096,124.825763,134.736923,140.570034,I,Above,Flat,0,5701,,20.56586997,0,0,,,,1,1,,0.03,nav,1,1972,1,, 15226,NJBF000079309,405 W SHORE DR,Galloway,NJ,39.41060241,-74.36912989,RES1,3001,,16,NE,1955,1955,3102,1,1,1961.135801,1961.135801,3507,NO,14,21.34,1,0.08,6106,115.318662,124.829112,134.740715,140.5728,I,Above,Flat,0,5701,,17.66902884,0,0,,,,1,1,,0.03,nav,1,1955,1,, 15227,NJBF000079305,403 W SHORE DR,Galloway,NJ,39.41057603,-74.36895614,RES1,3001,,16,NE,1954,1954,3102,1,1,1238.669197,1238.669197,3507,NO,15.41,23.03,1,-0.82,6106,115.322452,124.832676,134.744732,140.575897,I,Above,Gable,0,5701,,19.21712971,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 15228,NJBF000079303,401 W SHORE DR,Galloway,NJ,39.41056418,-74.36879885,RES1,3001,,16,NE,1955,1955,3102,1,1,2046.802716,2046.802716,3507,NO,19.01,31.79,1,0.22,6106,115.325752,124.835778,134.748234,140.578546,I,Above,Gable,0,5701,,25.39786172,0,0,,,,1,1,,0.03,nav,1,1955,1,, 15229,NJBF000079328,413 W SHORE DR,Galloway,NJ,39.41067263,-74.36994278,RES1,3001,,15,NE,1960,1960,3102,1,1,1349.030724,1349.030724,3507,NO,19.15,25.94,1,-0.16,6106,115.301476,124.812962,134.722492,140.558959,I,Above,Gable,0,5701,,22.54863558,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15230,NJBF000079334,417 W SHORE DR,Galloway,NJ,39.41070987,-74.37026977,RES1,3001,,15,NE,1960,1960,3102,1,1,1362.210108,1362.210108,3507,NO,16.3,22.76,1,0,6106,115.294474,124.806383,134.715075,140.553281,I,Above,Gable,0,5701,,19.52616834,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15231,NJBF000079347,419 W SHORE DR,Galloway,NJ,39.41075833,-74.37045881,RES1,3001,,16,NE,2015,2015,3102,3,1,1745.391614,1745.391614,3507,NO,52.88,63.68,1,0.12,6106,115.290148,124.802316,134.710502,140.54966,I,Above,Gable,0,5701,,58.28099892,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 15232,NJBF000079343,421 W SHORE DR,Galloway,NJ,39.41074673,-74.37066587,RES1,3001,,16,NE,1973,1973,3102,2,1,730.3897737,730.3897737,3507,NO,30.48,43.64,1,0.3,6106,115.286073,124.798495,134.706177,140.546499,I,Above,Gable,0,5701,,37.06149945,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 15233,NJBF000079355,423 W SHORE DR,Galloway,NJ,39.41079372,-74.37079529,RES1,3001,,16,NE,1973,1973,3102,2,1,1838.578359,1838.578359,3507,NO,27.83,33.49,1,1.53,6106,115.282972,124.795577,134.702904,140.543846,I,Above,Hip,0,5701,,30.66007616,0,0,,,,1,1,,0.03,nav,1,1973,2,, 15234,NJBF000079364,425 RISLEY RD,Galloway,NJ,39.41081363,-74.37098096,RES1,3001,,18,NE,2000,2000,3102,2,1,1971.578456,1971.578456,3507,NO,24.03,36.61,1,0.14,6106,115.278998,124.791846,134.698698,140.540625,I,Above,Gable,0,5701,,30.32107644,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 15235,NJBF000079397,412 LAFAYETTE BLVD,Galloway,NJ,39.4109975,-74.3698785,RES1,3001,,16,NE,1979,1979,3102,2,1,1039.082951,1039.082951,3507,NO,33.4,44.37,1,1.16,6106,115.299401,124.810963,134.720401,140.555875,I,Above,Gable,0,5701,,38.88187339,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 15236,NJBF000079323,411 W SHORE DR,Galloway,NJ,39.41065045,-74.36968178,RES1,3001,,16,NE,1978,1978,3102,2,1,1187.596652,1187.596652,3507,NO,22,29.9,1,-0.32,6106,115.306996,124.818148,134.728344,140.563407,I,Above,Gable,0,5701,,25.95019852,0,0,,,,1,1,,0.03,nav,1,1978,2,, 15237,NJBF000078874,109 6TH STREET SO,Galloway,NJ,39.4080675,-74.3691365,RES1,3001,,47,NE,1970,1970,3102,3,2,1477.916981,1477.916981,3507,NO,38.5,53.15,1,2.09,6106,115.345109,124.854177,134.767666,140.604761,I,Above,Gable,0,5701,,45.8256396,0,1.1,,,,1,1,,0.03,nav,1,1970,3,, 15238,NJBF000078637,158 SHERIDAN SQUARE,Galloway,NJ,39.40661248,-74.36974267,RES1,3001,,43,NE,1953,1953,3102,2,2,639.2983168,639.2983168,3507,NO,38.1,48.92,1,-0.29,6106,115.348171,124.857132,134.77015,140.613575,I,Above,Hip,0,5701,,43.51077013,0,0,,,,1,1,,0.03,nav,1,1953,2,, 15239,NJBF000078860,113 6TH STREET SO,Galloway,NJ,39.40797943,-74.36902949,RES1,3001,,17,NE,2014,2014,3102,2,1,1136.320182,1136.320182,3507,NO,28.15,34.48,1,0.68,6106,115.348212,124.85709,134.77091,140.607581,I,Above,Gable,0,5701,,31.31398285,0,0,,,,1,1,,0.03,nav,1,2014,2,, 15240,NJBF000078845,117 6TH STREET SO,Galloway,NJ,39.4078869,-74.36895103,RES1,3001,,15,NE,1950,1950,3102,1,1,817.1579555,817.1579555,3507,NO,12.5,27.33,1,-0.09,6106,115.35076,124.859484,134.773564,140.609978,I,Above,Gable,0,5701,,19.91424179,0,0,,,,1,1,,0.03,nav,1,1950,1,, 15241,NJBF000078811,125 6TH STREET SO,Galloway,NJ,39.40771286,-74.36879038,RES1,3001,,43,NE,1950,1950,3102,2,2,1522.27335,1522.27335,3507,NO,35.67,48.12,1,1.46,6106,115.355852,124.864265,134.778871,140.614725,I,Above,Hip,0,5701,,41.8959356,0,0,,,,1,1,,0.03,nav,1,1950,2,, 15242,NJBF000078800,129 6TH STREET SO,Galloway,NJ,39.40763639,-74.36869286,RES1,3001,,47,NE,1988,1988,3102,2,2,1673.600619,1673.600619,3507,NO,36.77,47.67,1,1.05,6106,115.358627,124.86687,134.781771,140.617232,I,Above,Gable,0,5701,,42.22245248,0,0,,,,1,1,,0.03,nav,1,1988,2,, 15243,NJBF000078782,133 6TH STREET SO,Galloway,NJ,39.4075321,-74.36862116,RES1,3001,,15,NE,1950,1950,3102,1,1,714.7785583,714.7785583,3507,NO,15.23,21.55,1,-0.55,6106,115.361181,124.869268,134.784422,140.619685,I,Above,Hip,0,5701,,18.39001951,0,0,,,,1,1,,0.03,nav,1,1950,1,, 15244,NJBF000078769,137 6TH STREET SO,Galloway,NJ,39.40745309,-74.36853669,RES1,3001,,18,NE,2012,2012,3102,2,1,1886.057978,1886.057978,3507,NO,31.15,44.46,1,-0.36,6106,115.363715,124.871645,134.787065,140.62201,I,Above,Hip,0,5701,,37.80438258,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 15245,NJBF000078753,141 6TH STREET SO,Galloway,NJ,39.40734692,-74.36846108,RES1,3001,,15,NE,1951,1951,3102,1,1,1405.382773,1405.382773,3507,NO,18.77,31.52,1,0.56,6106,115.366372,124.874139,134.789823,140.62455,I,Above,Gable,0,5701,,25.14303313,0,0,,,,1,1,,0.03,nav,1,1951,1,, 15246,NJBF000078732,145 6TH STREET SO,Galloway,NJ,39.40723829,-74.36836983,RES1,3001,,15,NE,1955,1955,3102,1,1,1433.322267,1433.322267,3507,NO,13.39,27.88,1,-0.92,6106,115.369364,124.876946,134.792934,140.627364,I,Above,Hip,0,5701,,20.63547576,0,0,,,,1,1,,0.03,nav,1,1955,1,, 15247,NJBF000078722,149 6TH STREET SO,Galloway,NJ,39.40715866,-74.3682581,RES1,3001,,16,NE,1951,1951,3102,2,1,1314.112708,1314.112708,3507,NO,22.82,34.6,1,-0.77,6106,115.372465,124.879855,134.796176,140.63013,I,Above,Hip,0,5701,,28.70977396,0,0,,,,1,1,,0.03,nav,1,1951,2,, 15248,NJBF000078841,,Galloway,NJ,39.40787319,-74.36847069,RES1,3001,,NaN,NE,1969,0,3102,2,1,1137.766071,1137.766071,3507,NO,31.25,44.87,1,-0.49,6106,115.360622,124.868729,134.784012,140.617751,I,Above,Hip,0,5701,,38.06288468,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15249,NJBF000078856,,Galloway,NJ,39.40796,-74.3685885,RES1,3001,,NaN,NE,1969,0,3102,2,1,1539.862937,1539.862937,3507,NO,29.72,41.05,1,2.93,6106,115.357318,124.865626,134.780554,140.614786,I,Above,Hip,0,5701,,35.38371039,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15250,NJBF000078873,,Galloway,NJ,39.40805555,-74.36865918,RES1,3001,,NaN,NE,1950,0,3102,2,1,1480.648224,1480.648224,3507,NO,34.59,43.55,1,2.32,6106,115.35489,124.863345,134.778029,140.612465,I,Above,Hip,0,5701,,39.06723863,0,0,,,,1,1,,0.03,nav,1,1950,2,, 15251,NJBF000078877,100 6TH STREET SO,Galloway,NJ,39.40807686,-74.36970591,RES1,3001,,43,NE,1955,1955,3102,2,2,1211.806715,1211.806715,3507,YES,27.42,40.51,1,-0.93,6106,115.333473,124.843275,134.755344,140.595616,I,Above,Flat,0,5701,,33.96339539,0,0,,,,1,1,,0.03,nav,1,1955,2,, 15252,NJBF000078821,112 6TH STREET SO,Galloway,NJ,39.40777158,-74.3695081,RES1,3001,,15,NE,1968,1968,3102,1,1,1758.907938,1758.907938,3507,NO,10.8,23.99,1,0.14,6106,115.340693,124.850061,134.762841,140.602614,I,Above,Gable,0,5701,,17.39201523,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15253,NJBF000078842,108 6TH STREET SO,Galloway,NJ,39.40786938,-74.36957318,RES1,3001,,17,NE,2014,2014,3102,3,1,1204.495506,1204.495506,3507,NO,58.41,66.05,1,2.84,6106,115.338356,124.847865,134.760414,140.600356,I,Above,Gable,0,5701,,62.23117839,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 15254,NJBF000078805,601 GEORGIA PLACE,Galloway,NJ,39.40767921,-74.36935234,RES1,3001,,17,NE,1967,1967,3102,2,1,1576.914526,1576.914526,3507,NO,35.15,49.8,1,-0.74,6106,115.344832,124.853944,134.767178,140.60626,I,Above,Gable,0,5701,,42.47775434,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 15255,NJBF000078795,605 GEORGIA PLACE,Galloway,NJ,39.40760046,-74.36945572,RES1,3001,,15,NE,1951,1951,3102,1,1,846.6567465,846.6567465,3507,NO,20.02,32.72,1,1.73,6106,115.343558,124.852756,134.765789,140.605613,I,Above,Gable,0,5701,,26.37014476,0,0,,,,1,1,,0.03,nav,1,1951,1,, 15256,NJBF000078791,607 GEORGIA PLACE,Galloway,NJ,39.40756958,-74.36960551,RES1,3001,,16,NE,1967,1967,3102,1,1,1740.230309,1740.230309,3507,NO,18.92,29.12,1,1.76,6106,115.340837,124.85021,134.762892,140.603618,I,Above,Gable,0,5701,,24.01900271,0,0,,,,1,1,,0.03,nav,1,1967,1,, 15257,NJBF000078807,111 SHERIDAN SQUARE,Galloway,NJ,39.40768189,-74.36991228,RES1,3001,,15,NE,1955,1955,3102,1,1,1089.81487,1089.81487,3507,NO,16.35,23.18,1,-0.88,6106,115.333458,124.843294,134.755138,140.597354,I,Above,Gable,0,5701,,19.76553147,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 15258,NJBF000078847,618 BAYSHORE AVE,Galloway,NJ,39.40791122,-74.37003484,RES1,3001,,43,NE,1979,1979,3102,2,2,3000.751529,3000.751529,3507,NO,38.81,45.89,1,0.11,6106,115.328556,124.838685,134.75006,140.592504,I,Above,Hip,0,5701,,42.34690887,0,0,,,,1,1,,0.03,nav,1,1979,2,, 15259,NJBF000078858,606 BAYSHORE AVE,Galloway,NJ,39.40797241,-74.36981416,RES1,3001,,18,NE,2004,2004,3102,3,1,1580.715097,1580.715097,3507,NO,36.6,43.95,1,1.44,6106,115.332391,124.84227,134.754148,140.595234,I,Above,Hip,0,5701,,40.2784282,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 15260,NJBF000078923,,Galloway,NJ,39.40839335,-74.37035546,RES1,3001,,NaN,NE,1925,0,3102,2,1,3324.161487,3324.161487,3507,NO,35.02,40.95,1,0.22,6106,115.317006,124.827823,134.738056,140.581319,I,Above,Hip,0,5701,,37.98328398,0,0,,,,1,1,,0.03,nav,1,1925,2,, 15261,NJBF000078803,413 W BEACH AVE,Galloway,NJ,39.4076475,-74.3674875,RES1,3001,,45,NE,1995,1995,3102,2,2,1977.535595,1977.535595,3507,NO,36.16,47.16,1,0.19,6106,115.382901,124.889631,134.807528,140.636145,I,Above,Hip,0,5701,,41.65983458,0,0,,,,1,1,,0.03,nav,1,1995,2,, 15262,NJBF000078947,112 4TH STREET SO,Galloway,NJ,39.40856272,-74.36797609,RES1,3001,,15,NE,1955,1955,3102,1,1,1229.702044,1229.702044,3507,NO,17.77,26.12,1,-0.02,6106,115.363372,124.871276,134.787291,140.616877,I,Above,Gable,0,5701,,21.94422775,0,0,,,,1,1,,0.03,nav,1,1955,1,, 15263,NJBF000078961,108 4TH STREET SO,Galloway,NJ,39.40867346,-74.36802206,RES1,3001,,16,NE,2015,2015,3102,2,1,734.6278509,734.6278509,3507,NO,38.2,46.34,1,0.5,6106,115.361284,124.869311,134.785131,140.614761,I,Above,Gable,0,5701,,42.27341108,0,0,,,,1,1,,0.03,nav,1,2015,2,, 15264,NJBF000078689,601 W BEACH AVE,Galloway,NJ,39.40695512,-74.36871669,RES1,3001,,18,NE,2006,2006,3102,3,1,1575.21953,1575.21953,3507,NO,42.42,50.32,1,0.76,6106,115.365329,124.873175,134.788498,140.625454,I,Above,Gable,0,5701,,46.37143114,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 15265,NJBF000078657,163 SHERIDAN SQUARE,Galloway,NJ,39.4067475,-74.36907,RES1,3001,,43,NE,1964,1964,3102,2,2,928.9394101,928.9394101,3507,NO,22.22,36.59,1,0.86,6106,115.360368,124.868537,134.783129,140.622491,I,Above,Gable,0,5701,,29.40414631,0,0,,,,1,1,,0.03,nav,1,1964,2,, 15266,NJBF000078741,,Galloway,NJ,39.40726449,-74.37022312,RES1,3001,,NaN,NE,1957,0,3102,2,1,2975.871204,2975.871204,3507,NO,30.34,42.75,1,-0.18,6106,115.331561,124.841554,134.752926,140.597724,I,Above,Hip,0,5701,,36.54250589,0,0,,,,1,1,,0.03,nav,1,1957,2,, 15267,NJBF000078717,709 GEORGIA PLACE,Galloway,NJ,39.40713783,-74.37029867,RES1,3001,,15,NE,1957,1957,3102,1,1,993.3537745,993.3537745,3507,NO,16.93,27.44,1,1.4,6106,115.33135,124.841366,134.752639,140.598117,I,Above,Hip,0,5701,,22.18797772,0,0,,,,1,1,,0.03,nav,1,1957,1,, 15268,NJBF000078963,,Galloway,NJ,39.40866484,-74.36968641,COM8,3001,,NaN,ME,1969,0,3401,3,1,5856.551794,5856.551794,3507,NO,54.33,69.04,1,-0.92,6106,115.327698,124.83781,134.749499,140.588488,I,Above,Flat,0,NaN,,61.68844737,0,0,,,,1,1,,0.03,nav,1,1969,3,, 15269,NJBF000078929,,Galloway,NJ,39.40840388,-74.36998401,COM8,3001,,NaN,ME,1969,0,3401,1,1,3245.906022,3245.906022,3507,NO,19.62,30.88,1,2.01,6106,115.324405,124.834751,134.745893,140.587066,I,Above,Flat,0,NaN,,25.24902032,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15270,NJBF000078653,,Galloway,NJ,39.4067581,-74.37079261,RES1,3001,,NaN,NE,1934,0,3102,2,1,1288.135677,1288.135677,3507,NO,34.53,48.77,1,1.89,6106,115.325344,124.835785,134.746104,140.595114,I,Above,Hip,0,5701,,41.6505814,0,0,,,,1,1,,0.03,nav,1,1934,2,, 15271,NJBF000078593,163 9TH STREET SO,Galloway,NJ,39.40638683,-74.37099272,RES1,3001,,16,NE,1925,1925,3102,2,1,1296.372483,1296.372483,3507,NO,28.94,39.08,1,-0.17,6106,115.325205,124.835687,134.745771,140.596656,I,Above,Gable,0,5701,,34.00998506,0,0,,,,1,1,,0.03,nav,1,1925,2,, 15272,NJBF000078613,159 9TH STREET SO,Galloway,NJ,39.4064807,-74.37104266,RES1,3001,,16,NE,1984,1984,3102,1,1,1730.584725,1730.584725,3507,NO,11.02,25.36,1,-0.99,6106,115.323198,124.833804,134.7437,140.594672,I,Above,Hip,0,5701,,18.18907492,0,0,,,,1,1,,0.03,nav,1,1984,1,, 15273,NJBF000078570,147 10TH STREET SO,Galloway,NJ,39.40627581,-74.37198391,RES1,3001,,17,NE,2004,2004,3102,2,1,1744.631128,1744.631128,3507,NO,34.3,45.07,1,-0.66,6106,115.306269,124.818025,134.725745,140.582377,I,Above,Hip,0,5701,,39.68565892,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 15274,NJBF000078616,133 10TH STREET SO,Galloway,NJ,39.40652426,-74.3722323,RES1,3001,,19,NE,2013,2013,3102,3,1,2314.059217,2314.059217,3507,NO,32.48,43.85,1,0.66,6106,115.298617,124.810859,134.717798,140.575292,I,Above,Gable,0,5701,,38.1673747,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 15275,NJBF000078591,139 10TH STREET SO,Galloway,NJ,39.40640203,-74.37208361,RES1,3001,,16,NE,2015,2015,3102,3,1,979.1588696,979.1588696,3507,NO,54.6,63.78,1,2.53,6106,115.302909,124.814876,134.722264,140.57919,I,Above,Hip,0,5701,,59.19074684,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 15276,NJBF000078577,166 8TH STREET SO,Galloway,NJ,39.4063023,-74.37037069,RES1,3001,,16,NE,1950,1950,3102,1,1,836.7898402,836.7898402,3507,NO,17.21,23.53,1,1,6106,115.338718,124.848314,134.759993,140.607573,I,Above,Flat,0,5701,,20.37243999,0,0,,,,1,1,,0.03,nav,1,1950,1,, 15277,NJBF000078705,717 GEORGIA PLACE,Galloway,NJ,39.40704833,-74.37051277,RES1,3001,,16,NE,1954,1954,3102,1,1,1325.122132,1325.122132,3507,NO,18.62,24.08,1,1.56,6106,115.327961,124.838206,134.749013,140.59587,I,Above,Flat,0,5701,,21.3480362,0,0,,,,1,1,,0.03,nav,1,1954,1,, 15278,NJBF000078729,131 8TH STREET SO,Galloway,NJ,39.40720978,-74.37060717,RES1,3001,,43,NE,1952,1952,3102,2,2,1007.761565,1007.761565,3507,NO,27.44,41.29,1,-0.21,6106,115.324347,124.834813,134.745274,140.592326,I,Above,Gable,0,5701,,34.36717957,0,0,,,,1,1,,0.03,nav,1,1952,2,, 15279,NJBF000078673,613 W BEACH AVE,Galloway,NJ,39.40684857,-74.36895822,RES1,3001,,16,NE,1950,1950,3102,1,1,926.5217869,926.5217869,3507,NO,11.59,20.53,1,0.59,6106,115.361569,124.869658,134.784457,140.622985,I,Above,Gable,0,5701,,16.06234635,0,0,,,,1,1,,0.03,nav,1,1950,1,, 15280,NJBF000078678,607 W BEACH AVE,Galloway,NJ,39.40686478,-74.3687961,RES1,3001,,15,NE,1951,1951,3102,1,1,1128.0631,1128.0631,3507,NO,14.27,29.05,1,0.9,6106,115.36468,124.87257,134.78776,140.625342,I,Above,Gable,0,5701,,21.66130227,0,0,,,,1,1,,0.03,nav,1,1951,1,, 15281,NJBF000078713,142 6TH STREET SO,Galloway,NJ,39.40709888,-74.368879,RES1,3001,,15,NE,1951,1951,3102,1,1,864.8141298,864.8141298,3507,NO,20.52,26.03,1,2.78,6106,115.360528,124.868674,134.783493,140.621075,I,Above,Gable,0,5701,,23.27914817,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 15282,NJBF000078727,138 6TH STREET SO,Galloway,NJ,39.4071965,-74.3689605,RES1,3001,,NaN,NE,1951,0,3102,2,1,678.9696279,678.9696279,3507,NO,24.24,30.11,1,-0.64,6106,115.357843,124.866156,134.780703,140.618553,I,Above,Gable,0,5701,,27.17756197,0,0,,,,1,1,,0.03,nav,1,1951,2,, 15283,NJBF000078749,600 GEORGIA PLACE,Galloway,NJ,39.40729475,-74.36903808,RES1,3001,,15,NE,1951,1951,3102,3,1,1291.412653,1291.412653,3507,NO,36.85,42.29,1,2.08,6106,115.355239,124.863712,134.777999,140.616084,I,Above,Gable,0,5701,,39.56788429,0,1.1,,,,1,1,,0.03,nav,1,1951,3,, 15284,NJBF000078737,606 GEORGIA PLACE,Galloway,NJ,39.4072492,-74.36918638,RES1,3001,,15,NE,1951,1951,3102,1,1,849.2230422,849.2230422,3507,NO,13.63,28.17,1,1.63,6106,115.352728,124.861363,134.775315,140.614325,I,Above,Hip,0,5701,,20.89914209,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 15285,NJBF000078720,,Galloway,NJ,39.4071501,-74.36937738,RES1,3001,,NaN,NE,1969,0,3102,2,1,1453.032246,1453.032246,3507,NO,41.21,51.82,1,2.67,6106,115.349904,124.858725,134.772273,140.612556,I,Above,Hip,0,5701,,46.51391553,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15286,NJBF000078692,159 SHERIDAN SQUARE,Galloway,NJ,39.40696006,-74.36916313,RES1,3001,,45,NE,1960,1960,3102,2,4,2270.011958,2270.011958,3507,NO,27.93,35.46,1,-0.02,6106,115.356244,124.864669,134.778881,140.618342,I,Above,Hip,0,5701,,31.69387393,0,0,,,,1,1,,0.03,nav,1,1960,2,, 15287,NJBF000078706,,Galloway,NJ,39.40701341,-74.36931157,RES1,3001,,NaN,NE,1969,0,3102,2,1,2302.625513,2302.625513,3507,NO,27.56,41.37,1,2.77,6106,115.352667,124.861318,134.775123,140.615316,I,Above,Hip,0,5701,,34.46628817,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15288,NJBF000078581,163 8TH STREET SO,Galloway,NJ,39.40632784,-74.36984841,RES1,3001,,16,NE,1953,1953,3102,2,1,1086.025623,1086.025623,3507,NO,25.34,39.02,1,0.53,6106,115.349045,124.857965,134.770918,140.61551,I,Above,Gable,0,5701,,32.18115429,0,0,,,,1,1,,0.03,nav,1,1953,2,, 15289,NJBF000078597,713 W BEACH AVE,Galloway,NJ,39.40638053,-74.36970183,RES1,3001,,16,NE,1954,1954,3102,1,1,1244.816103,1244.816103,3507,NO,11.71,23.49,1,-0.93,6106,115.351443,124.860204,134.773483,140.617147,I,Above,Hip,0,5701,,17.59786647,0,0,,,,1,1,,0.03,nav,1,1954,1,, 15290,NJBF000078785,112 8TH STREET SO,Galloway,NJ,39.40755877,-74.37156915,RES1,3001,,19,NE,2008,2008,3102,2,1,1566.523349,1566.523349,3507,NO,30.55,38.04,1,1.71,6106,115.301166,124.813108,134.720948,140.572642,I,Above,Hip,0,5701,,34.29447299,0,0,,,,1,1,,0.03,nav,1,2008,2,, 15291,NJBF000078772,116 8TH STREET SO,Galloway,NJ,39.40746932,-74.37144079,RES1,3001,,15,NE,1954,1954,3102,1,1,1034.620088,1034.620088,3507,NO,15.18,22.35,1,2.25,6106,115.304709,124.81643,134.724649,140.575817,I,Above,Hip,0,5701,,18.76735733,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 15292,NJBF000078809,812 BAYSHORE AVE,Galloway,NJ,39.407709,-74.37217521,RES1,3001,,18,NE,2007,2007,3102,3,1,1392.146993,1392.146993,3507,NO,49.22,61.62,1,1.14,6106,115.287295,124.800131,134.706372,140.561113,I,Above,Hip,0,5701,,55.42054128,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 15293,NJBF000078788,115 9TH STREET SO,Galloway,NJ,39.40756663,-74.37205325,RES1,3001,,16,NE,1962,1962,3102,2,1,1095.012059,1095.012059,3507,YES,28.28,34.84,1,1.96,6106,115.291263,124.803858,134.7105,140.564858,I,Above,Flat,0,5701,,31.55956435,0,0,,,,1,1,,0.03,nav,1,1962,2,, 15294,NJBF000078770,,Galloway,NJ,39.40746819,-74.37081939,RES1,3001,,NaN,NE,1956,0,3102,2,1,1759.52331,1759.52331,3507,NO,21.13,32.63,1,-0.29,6106,115.317332,124.828228,134.737982,140.585694,I,Above,Flat,0,5701,,26.87828467,0,0,,,,1,1,,0.03,nav,1,1956,2,, 15295,NJBF000078751,,Galloway,NJ,39.40734575,-74.3707235,RES1,3001,,NaN,NE,1969,0,3102,2,1,2556.526956,2556.526956,3507,NO,27.4,36.71,1,-0.01,6106,115.320563,124.831261,134.741339,140.588763,I,Above,Hip,0,5701,,32.05418872,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15296,NJBF000078825,718 BAYSHORE AVE,Galloway,NJ,39.40777461,-74.37115537,RES1,3001,,16,NE,1954,1954,3102,2,1,2003.713272,2003.713272,3507,NO,30.23,44.62,1,1.83,6106,115.307289,124.818804,134.727509,140.576467,I,Above,Gable,0,5701,,37.42363241,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 15297,NJBF000078801,113 8TH STREET SO,Galloway,NJ,39.40761866,-74.37103259,RES1,3001,,16,NE,1948,1948,3102,2,1,825.1481842,825.1481842,3507,NO,24.61,37.29,1,0.2,6106,115.311403,124.822669,134.731787,140.580384,I,Above,Gable,0,5701,,30.95141753,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 15298,NJBF000078781,117 8TH STREET SO,Galloway,NJ,39.40752985,-74.3709413,RES1,3001,,43,NE,1956,1956,3102,2,2,952.389666,952.389666,3507,NO,28.13,35.11,1,1.04,6106,115.314205,124.825299,134.734707,140.582973,I,Above,Flat,0,5701,,31.6182152,0,0,,,,1,1,,0.03,nav,1,1956,2,, 15299,NJBF000083830,6353 MONMOUTH DRIVE,Hamilton,NJ,39.45048978,-74.75018492,RES1,3001,,17,NE,1954,1954,3101,1,1,1047.333566,1047.333566,3507,NO,18.92,31.75,1,2.02,6112,108.85847,118.403195,128.083472,132.640181,I,Above,Gable,0,5701,,25.33482164,0,0,,,,1,1,,0.35,nav,1,1954,1,, 15300,NJBF000087414,2004 SYCAMORE LANE,Hamilton,NJ,39.53318557,-74.79076398,RES1,3001,,17,NE,1977,1977,3102,2,1,1234.317665,1234.317665,3507,NO,31.43,43.06,1,1.96,6112,108.322128,117.335658,127.044237,130.766349,I,Above,Hip,0,5701,,37.24709902,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 15301,NJBF000083883,35 PENNINGTON AVENUE,Hamilton,NJ,39.45108384,-74.72759818,RES1,3001,,17,NE,1924,1924,3103,2,1,936.4560766,936.4560766,3505,NO,34.55,47.39,3,6.76,6112,109.034823,118.647832,128.31928,133.072236,I,Above,Gable,0,5701,,40.96825807,0,0,,,,1,1,,0.35,nav,1,1924,2,, 15302,NJBF000084559,1400 ROUTE 50,Hamilton,NJ,39.46562584,-74.71979952,GOV2,3001,,NaN,E,1966,1966,3401,1,1,6491.408389,6491.408389,3507,NO,19.76,31.97,1,2.77,6112,109.068201,118.621733,128.280818,133.010955,I,Above,Gable,0,5701,,25.86659037,0,0,,,,1,1,,1,nav,1,1966,1,, 15303,NJBF000084955,6924 LANDIS AVENUE,Hamilton,NJ,39.47164001,-74.84228536,RES1,3001,,17,NE,1926,1926,3102,2,1,1366.916509,1366.916509,3507,NO,34.65,46.58,1,1.26,6112,108.129452,117.335431,127.017571,130.681582,I,Above,Gable,0,5701,,40.61579118,0,0,,,,1,1,,0.15,nav,1,1926,2,, 15304,NJBF000084098,6236 ESTELLE AVENUE,Hamilton,NJ,39.45487155,-74.8439241,RES1,3001,,17,NE,1980,1980,3102,1,1,1098.129559,1098.129559,3505,NO,17.21,24.87,3,-1.79,6112,108.184264,117.446977,127.123776,130.869911,I,Above,Gable,0,5701,,21.03785179,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 15305,NJBF000081299,958 GRAND AVE,Hamilton,NJ,39.41855289,-74.64675496,RES1,3001,,17,NE,1979,1979,3102,2,1,1659.957762,1659.957762,3507,NO,36.27,49.77,1,1.75,6112,109.835871,119.933452,129.565628,135.198279,I,Above,Gable,0,5701,,43.02258166,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 15306,NJBF000085695,,Hamilton,NJ,39.50078689,-74.69184811,RES1,3001,,NaN,NE,1969,0,3102,2,1,990.468681,990.468681,3504,NO,24.02,31.36,-4,0,6112,109.279385,118.658502,128.295837,133.039632,I,Above,Gable,0,5701,,27.69006206,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15307,NJBF000085268,6057 BLACK HORSE PIKE,Hamilton,NJ,39.47899714,-74.71640726,COM8,3001,740,16,ME,1962,1962,3401,1,1,1886.686507,1886.686507,3507,NO,17.53,26.91,1,0.95,6112,109.073583,118.55273,128.206436,132.880755,I,Above,Flat,0,NaN,,22.22012428,0,0,,,,1,1,,1,nav,1,1962,1,, 15308,NJBF000083113,271 CLARKSTOWN ROAD,Hamilton,NJ,39.43716937,-74.71503912,RES1,3001,,16,NE,1949,1949,3102,2,1,1192.775102,1192.775102,3507,NO,40.32,52.68,1,2.72,6112,109.17295,118.901148,128.577915,133.527813,I,Above,Gable,0,5701,,46.49823742,0,0,,,,1,1,,0.35,nav,1,1949,2,, 15309,NJBF000087038,7316 SMITH AVENUE,Hamilton,NJ,39.52426565,-74.83299507,RES1,3001,,17,NE,1999,1999,3101,2,1,1777.933531,1777.933531,3505,NO,29.28,38.75,3,7.84,6112,108.024419,117.021745,126.727199,130.149694,I,Above,Gable,0,5701,,34.0130892,0,0,,,,1,1,,0.35,nav,1,1999,2,, 15310,NJBF000086131,6943 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,14,ME,1985,1936,3401,1,1,680.8932656,680.8932656,3507,NO,16.03,28.06,1,0.39,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,22.04234206,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15311,NJBF000083877,6395 MONMOUTH DRIVE,Hamilton,NJ,39.45100728,-74.75207506,RES1,3001,,17,NE,1955,1955,3101,1,1,1203.234591,1203.234591,3505,NO,12.18,19.67,3,-0.33,6112,108.842477,118.378872,128.059375,132.596155,I,Above,Gable,0,5701,,15.92523624,0,0,,,,1,1,,0.35,nav,1,1955,1,, 15312,NJBF000083855,6316 PALMER AVENUE,Hamilton,NJ,39.45075627,-74.75118505,RES1,3001,,17,NE,1957,1957,3101,1,1,1010.207412,1010.207412,3505,NO,22.55,31.65,3,3.71,6112,108.850027,118.390374,128.070775,132.616986,I,Above,Gable,0,5701,,27.09776423,0,0,,,,1,1,,0.35,nav,1,1957,1,, 15313,NJBF000083718,6318 CROCUS STREET,Hamilton,NJ,39.44921969,-74.75424051,RES1,3001,,17,NE,1964,1964,3102,2,1,1989.49185,1989.49185,3505,NO,36.03,49.07,3,1.57,6112,108.831701,118.369691,128.051411,132.580244,I,Above,Gable,0,5701,,42.55104077,0,0,,,,1,1,,0.35,nav,1,1964,2,, 15314,NJBF000083994,6312 PHILIPS AVENUE,Hamilton,NJ,39.45290256,-74.75576796,RES1,3001,,17,NE,1952,1952,3101,1,1,945.0764849,945.0764849,3505,NO,17.63,31.1,3,6.46,6112,108.808569,118.324666,128.005251,132.497579,I,Above,Gable,0,5701,,24.36675582,0,0,,,,1,1,,0.35,nav,1,1952,1,, 15315,NJBF000084189,6352 PITTSBURG AVENUE,Hamilton,NJ,39.45788902,-74.80075837,RES1,3001,,17,NE,1920,1920,3101,2,2,1688.519583,1688.519583,3507,NO,28.39,38.11,1,1.61,6109,108.464645,117.829234,127.512079,131.58453,I,Above,Gable,0,5701,,33.24985272,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 15316,NJBF000085562,5638 LAUREL STREET,Hamilton,NJ,39.49364285,-74.66977771,RES1,3001,,16,NE,1910,1910,3101,2,1,876.2544377,876.2544377,3507,NO,39.01,45.29,1,1.88,6112,109.526185,118.993081,128.604626,133.581044,I,Above,Flat,0,5701,,42.14900775,0,1.2,,,,1,1,,0.15,nav,1,1910,2,, 15317,NJBF000087860,7291 WEYMOUTH ROAD,Hamilton,NJ,39.5440245,-74.79309387,RES1,3001,,15,NE,1930,1930,3102,1,1,890.1755332,890.1755332,3507,NO,17.38,25.52,1,1.63,6106,108.276831,117.226362,126.94406,130.60035,I,Above,Gable,0,5701,,21.44890588,0,0,,,,1,1,,0.03,nav,1,1930,1,, 15318,NJBF000084965,5928 CEDARCROFT DRIVE,Hamilton,NJ,39.47177351,-74.7124919,RES1,3001,,17,NE,1984,1984,3102,1,1,1233.651525,1233.651525,3505,NO,16.18,26.35,3,5.06,6112,109.122029,118.656891,128.308539,133.06371,I,Above,Gable,0,5701,,21.2668763,0,0,,,,1,1,,0.35,nav,1,1984,1,, 15319,NJBF000085896,6891 WEYMOUTH RD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,15,ME,1985,1942,3401,1,1,1809.219527,1809.219527,3507,NO,12.35,21.95,1,-0.54,6106,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,17.14895669,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15320,NJBF000086464,6935 BLACK HORSE PIKE,Hamilton,NJ,39.51400446,-74.77813221,COM4,3004,210,NaN,ME,1948,1948,3401,1,1,583.4761175,583.4761175,3507,NO,18.64,26.12,1,0.49,6110,108.470477,117.611521,127.305022,131.230141,I,Above,Flat,0,5701,,22.38299524,0,0,,,,1,1,,1,nav,1,1948,1,, 15321,NJBF000085650,6820 BLACK HORSE PIKE,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,14,ME,1985,1950,3401,1,1,955.814916,955.814916,3507,NO,16.31,29.56,1,2.13,6106,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,22.93787787,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15322,NJBF000084055,6115 OLD HARDING HIGHWAY,Hamilton,NJ,39.4537646,-74.73557359,IND4,3004,330,NaN,E,1866,1866,3401,4,1,6793.259697,6793.259697,3507,NO,46.3,52.24,1,2.81,6106,108.963382,118.537271,128.210955,132.876457,I,Above,Flat,0,NaN,,49.26869691,0,0,,,,1,1,,0.03,nav,1,1866,4,, 15323,NJBF000080017,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41367981,-74.71428947,RES1,3001,,NaN,NE,1971,1971,3102,2,1,791.2762659,791.2762659,3507,NO,22.3,34.92,1,-0.72,6110,109.255821,119.090575,128.798949,133.894782,I,Above,Flat,0,5701,,28.60792367,0,0,,,,1,1,,1,nav,1,1971,2,, 15324,NJBF000083819,6310 SEARS AVENUE,Hamilton,NJ,39.45037822,-74.74885007,RES1,3001,,17,NE,1958,1958,3101,1,1,863.1603363,863.1603363,3507,NO,14.85,22.59,1,-0.47,6112,108.869017,118.418449,128.09844,132.667648,I,Above,Flat,0,5701,,18.71873766,0,0,,,,1,1,,0.35,nav,1,1958,1,, 15325,NJBF000083125,HARLEY AVENUE,Hamilton,NJ,39.43761059,-74.80615964,RES1,3001,,NaN,NE,1969,0,3102,2,1,910.3869163,910.3869163,3504,NO,21.2,26.5,-4,0,6112,108.508783,117.933969,127.615372,131.765947,I,Above,Gable,0,5701,,23.8491451,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15326,NJBF000085655,6820 BLACK HORSE PIKE,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,14,ME,1985,1950,3401,1,1,1302.922405,1302.922405,3507,NO,18.32,29.06,1,1.91,6106,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,23.68777324,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15327,NJBF000083357,295 OLD RIVER ROAD,Hamilton,NJ,39.44298402,-74.7211229,RES1,3001,,17,NE,1949,1949,3102,1,1,637.6976114,637.6976114,3507,NO,16.66,28.94,1,2.7,6112,109.108281,118.785214,128.459501,133.320102,I,Above,Gable,0,5701,,22.80145937,0,0,,,,1,1,,0.35,nav,1,1949,1,, 15328,NJBF000085398,6820 THIRD AVENUE,Hamilton,NJ,39.48745849,-74.80660075,RES1,3001,,15,NE,1960,1960,3101,1,1,1044.187633,1044.187633,3505,NO,14.52,27.65,3,3.82,6112,108.324503,117.545094,127.232892,131.075481,I,Above,Gable,0,5701,,21.08370347,0,0,,,,1,1,,0.35,nav,1,1960,1,, 15329,NJBF000085158,5924 CLOVERLEAF DRIVE,Hamilton,NJ,39.47454553,-74.71230857,RES1,3001,,17,NE,1984,1984,3102,1,1,1302.838415,1302.838415,3505,NO,14.54,20.83,3,0.82,6112,109.118898,118.636503,128.287454,133.026386,I,Above,Gable,0,5701,,17.68438943,0,0,,,,1,1,,0.35,nav,1,1984,1,, 15330,NJBF000083907,116 OLD EGG HARBOR ROAD,Hamilton,NJ,39.45158401,-74.71872939,RES1,3001,,17,NE,1994,1994,3102,2,1,1075.929357,1075.929357,3507,NO,40.05,52.9,1,2.99,6112,109.107148,118.745519,128.411457,133.239775,I,Above,Gable,0,5701,,46.47490128,0,0,,,,1,1,,0.35,nav,1,1994,2,, 15331,NJBF000081061,915 GRAND AVE,Hamilton,NJ,39.41738824,-74.64858835,RES1,3001,,17,NE,1994,1994,3102,1,1,4116.917121,4116.917121,3507,NO,15.96,22.74,1,2.93,6112,109.815789,119.9164,129.554838,135.178577,I,Above,Flat,0,5701,,19.35200283,0,0,,,,1,1,,0.15,nav,1,1994,1,, 15332,NJBF000084967,5930 CEDARCROFT DRIVE,Hamilton,NJ,39.47181771,-74.71276625,RES1,3001,,17,NE,1984,1984,3102,1,1,1096.798595,1096.798595,3505,NO,21.18,34.87,3,7.41,6109,109.119452,118.653337,128.305198,133.057679,I,Above,Gable,0,5701,,28.02653701,0,0,,,,1,1,,0.03,nav,1,1984,1,, 15333,NJBF000085639,6213 PINE STREET,Hamilton,NJ,39.49778351,-74.7028929,RES1,3001,,17,NE,1966,1966,3102,2,1,1033.08578,1033.08578,3504,NO,28.63,33.78,-4,0,6112,109.171934,118.553303,128.199034,132.868607,I,Above,Gable,0,5701,,31.20595852,0,0,,,,1,1,,0.35,nav,1,1966,2,, 15334,NJBF000088511,2008 LAWRENCE LANE,Hamilton,NJ,39.5542075,-74.80828987,RES1,3001,,17,NE,1961,1961,3102,1,1,938.9244095,938.9244095,3507,NO,14.09,26.16,1,0.41,6112,108.130601,117.006591,126.734565,130.242248,I,Above,Flat,0,5701,,20.12376638,0,0,,,,1,1,,0.35,nav,1,1961,1,, 15335,NJBF000083772,6344 MONMOUTH DRIVE,Hamilton,NJ,39.44982234,-74.74935998,RES1,3001,,17,NE,1960,1960,3101,2,1,1221.630011,1221.630011,3507,NO,30.63,44.1,1,0.71,6112,108.866819,118.417297,128.097675,132.665852,I,Above,Hip,0,5701,,37.36151928,0,0,,,,1,1,,0.03,nav,1,1960,2,, 15336,NJBF000084091,116 LENAPE AVENUE,Hamilton,NJ,39.4547172,-74.73190275,RES1,3001,,17,NE,1926,1926,3102,2,1,980.2804727,980.2804727,3505,NO,29.99,40.27,3,1.79,6112,108.990585,118.570766,128.242227,132.934272,I,Above,Flat,0,5701,,35.1284864,0,0,,,,1,1,,0.35,nav,1,1926,2,, 15337,NJBF000087288,7050 WEYMOUTH ROAD,Hamilton,NJ,39.52997084,-74.78075538,RES1,3001,,17,NE,1980,1980,3101,2,1,1211.319704,1211.319704,3507,NO,28.6,36.9,1,1.32,6109,108.410899,117.456979,127.161241,130.979832,I,Above,Gable,0,5701,,32.74904191,0,0,,,,1,1,,0.03,nav,1,1980,2,, 15338,NJBF000085498,BLACK HORSE PIKE,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,NaN,ME,1985,0,3401,2,1,1225.414044,1225.414044,3507,NO,39.69,53.63,1,0.86,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,46.65723145,0,0,,,,1,1,,0.03,nav,1,1985,2,, 15339,NJBF000084670,57 LEWIS DRIVE,Hamilton,NJ,39.46760317,-74.71247814,RES1,3001,,16,NE,2006,2006,3101,2,1,2301.856936,2301.856936,3507,NO,33.48,40.28,1,0.41,6112,109.129546,118.690774,128.3436,133.12566,I,Above,Hip,0,5701,,36.88142725,0,1.2,,,,1,1,,0.35,nav,1,2006,2,, 15340,NJBF000086974,,Hamilton,NJ,39.52315199,-74.83182906,RES1,3005,,NaN,NE,1999,0,3101,1,1,811.3309614,811.3309614,3505,NO,17.17,28.93,3,-1.7,6112,108.036055,117.040482,126.745283,130.181624,I,Above,Gable,0,5701,,23.04931074,0,0,,,,1,1,,0.15,nav,1,1999,1,, 15341,NJBF000085286,3140 LEIPZIG AVENUE,Hamilton,NJ,39.48051816,-74.62310386,RES1,3001,,17,NE,1960,1960,3101,1,1,1533.007101,1533.007101,3507,NO,16.65,21.9,1,-0.5,6112,110.116411,119.738279,129.285975,134.719608,I,Above,Gable,0,5701,,19.27445662,0,0,,,,1,1,,0.15,nav,1,1960,1,, 15342,NJBF000084393,753 PARK ROAD,Hamilton,NJ,39.46170402,-74.73677239,RES1,3001,,NaN,NE,1936,1936,3102,1,1,2334.600933,2334.600933,3505,NO,16.49,21.59,3,-2.86,6112,108.933484,118.46146,128.13213,132.737037,I,Above,Gable,0,5701,,19.03705429,0,0,,,,1,1,,1,nav,1,1936,1,, 15343,NJBF000082398,439 HIGHLAND DRIVE,Hamilton,NJ,39.42957172,-74.71244505,RES1,3001,,17,NE,1986,1986,3102,2,1,1343.329564,1343.329564,3507,NO,36.05,48.54,1,1.44,6112,109.214953,118.990369,128.674961,133.693424,I,Above,Gable,0,5701,,42.29580488,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 15344,NJBF000081317,,Hamilton,NJ,39.42889981,-74.70719786,RES1,3001,,NaN,NE,1969,0,3102,2,1,969.6817656,969.6817656,3507,NO,22.76,31.61,1,0.98,6112,109.258801,119.057878,128.740586,133.808876,I,Above,Gable,0,5701,,27.18894725,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15345,NJBF000083164,117 POST ROAD,Hamilton,NJ,39.43871319,-74.71806241,RES1,3001,,17,NE,1989,1989,3102,2,1,4107.825615,4107.825615,3507,NO,28.34,33.83,1,2.01,6112,109.144369,118.853888,128.530653,133.444509,I,Above,Hip,0,5701,,31.08315526,0,0,,,,1,1,,0.35,nav,1,1989,2,, 15346,NJBF000084062,6064 MAIN STREET,Hamilton,NJ,39.45394315,-74.73268517,RES1,3001,,17,NE,1880,1880,3102,2,1,1238.899324,1238.899324,3505,NO,29.26,39.22,3,6.39,6112,108.986205,118.568092,128.240355,132.930333,I,Above,Hip,0,5701,,34.23975113,0,0,,,,1,1,,0.35,nav,1,1880,2,, 15347,NJBF000083782,6121 LONGWOOD AVENUE,Hamilton,NJ,39.44997035,-74.73736088,RES1,3001,,17,NE,1968,1968,3102,1,1,1410.612724,1410.612724,3507,NO,15.78,22.55,1,0.75,6110,108.959474,118.547192,128.223726,132.89717,I,Above,Gable,0,5701,,19.16421283,0,0,,,,1,1,,0.35,nav,1,1968,1,, 15348,NJBF000083850,6081 RELIANCE AVENUE,Hamilton,NJ,39.45071032,-74.73550534,GOV2,3001,,NaN,E,1976,1976,3401,1,1,10036.07621,10036.07621,3507,NO,18.85,26.7,1,1.35,6112,108.972129,118.561995,128.237356,132.922612,I,Above,Flat,0,5701,,22.77299288,0,0,,,,1,1,,0.7,nav,1,1976,1,, 15349,NJBF000083843,5729 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1830,3102,3,1,1439.340121,1439.340121,3505,NO,38.65,52.39,3,2.71,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,45.5181309,0,0,,,,1,1,,0.03,nav,1,1969,3,, 15350,NJBF000083987,17 ABBOTT STREET,Hamilton,NJ,39.45282395,-74.73082609,COM1,3003,,17,ME,1885,1885,3401,2,1,867.101209,867.101209,3507,NO,31.38,41.23,1,0.97,6110,109.00414,118.597734,128.269734,132.9832,I,Above,Hip,0,NaN,,36.30266895,0,1.1,,,,1,1,,0.35,nav,1,1885,2,, 15351,NJBF000080398,4716 MAYS LANDING SP RD,Hamilton,NJ,39.41492484,-74.70895597,RES1,3001,,17,NE,1992,1992,3102,1,1,1811.364431,1811.364431,3507,NO,14.48,29.47,1,0.51,6112,109.290517,119.143814,128.849105,133.983702,I,Above,Gable,0,5701,,21.97587676,0,0,,,,1,1,,0.35,nav,1,1992,1,, 15352,NJBF000083344,293 OLD RIVER ROAD,Hamilton,NJ,39.44273679,-74.72221991,RES1,3001,959,17,NE,1950,1950,3102,2,1,11590.71834,11590.71834,3507,NO,34.11,40.44,1,0.03,6106,109.100052,118.774511,128.449589,133.302022,I,Above,Flat,0,5701,,37.27527213,0,0,,,,1,1,,0.03,nav,1,1950,2,, 15353,NJBF000083358,293 OLD RIVER ROAD,Hamilton,NJ,39.44298759,-74.72248711,RES1,3001,959,17,NE,1950,1950,3102,2,1,2267.223511,2267.223511,3507,NO,30.96,37.74,1,0.71,6106,109.09723,118.769485,128.444479,133.293003,I,Above,Hip,0,5701,,34.35247753,0,0,,,,1,1,,0.03,nav,1,1950,2,, 15354,NJBF000081246,89 CRESCENT BLVD,Hamilton,NJ,39.41828599,-74.71388499,RES1,3001,,NaN,NE,1962,1962,3102,1,1,600.8833199,600.8833199,3507,NO,19.09,27.16,1,0.94,6112,109.241014,119.060058,128.76124,133.833788,I,Above,Gable,0,5701,,23.12448021,0,0,,,,1,1,,0.35,nav,1,1962,1,, 15355,NJBF000083318,305 OLD RIVER ROAD,Hamilton,NJ,39.4421651,-74.72065933,RES1,3001,,17,NE,1980,1980,3102,3,2,772.292545,772.292545,3507,NO,56,67.43,1,1.02,6112,109.11419,118.796951,128.471733,133.341484,I,Above,Gable,0,5701,,61.71377706,0,0,,,,1,1,,0.35,nav,1,1980,3,, 15356,NJBF000078582,4518 MAYS LANDING SP RD,Hamilton,NJ,39.40634687,-74.71465855,RES1,3001,,17,NE,1977,1977,3102,1,1,3450.271255,3450.271255,3507,NO,14.33,19.65,1,0.71,6112,109.285161,119.142391,128.862584,133.997415,I,Above,Gable,0,5701,,16.99138367,0,0,,,,1,1,,0.35,nav,1,1977,1,, 15357,NJBF000083971,72 MILL STREET,Hamilton,NJ,39.45267869,-74.73471237,RES1,3001,,17,NE,1950,1950,3102,2,1,1591.864002,1591.864002,3505,NO,28.14,41.1,3,2.54,6106,108.973166,118.555386,128.22928,132.90923,I,Above,Flat,0,5701,,34.62004842,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 15358,NJBF000082038,505 WILLOW OAK DRIVE,Hamilton,NJ,39.42583759,-74.71030364,RES1,3001,,18,NE,2008,2008,3102,1,1,6592.545579,6592.545579,3507,NO,15.62,24.31,1,2.71,6106,109.243053,119.044401,128.733111,133.792444,I,Above,Flat,0,5701,,19.96500149,0,0,,,,1,1,,0.03,nav,1,2008,1,, 15359,NJBF000082437,460 RIDGE LANE,Hamilton,NJ,39.42991001,-74.71231236,RES1,3001,,17,NE,1986,1986,3102,2,1,2397.461966,2397.461966,3507,NO,30.63,41.31,1,1.18,6112,109.21502,118.989334,128.673415,133.691023,I,Above,Gable,0,5701,,35.96784534,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 15360,NJBF000083595,6102 HARDING HWY,Hamilton,NJ,39.44774325,-74.7365664,RES1,3001,,16,NE,1916,1916,3102,2,1,951.2926618,951.2926618,3505,NO,34.18,41.52,3,0.59,6112,108.972024,118.573423,128.251008,132.9454,I,Above,Hip,0,5701,,37.85143393,0,1.1,,,,1,1,,0.35,nav,1,1916,2,, 15361,NJBF000083848,29 PENNINGTON AVENUE,Hamilton,NJ,39.45068936,-74.72772897,RES1,3001,,17,NE,1900,1900,3103,2,1,1027.503827,1027.503827,3505,NO,42.2,49.04,3,8.54,6112,109.034754,118.649446,128.321221,133.075488,I,Above,Gable,0,5701,,45.6213446,0,0,,,,1,1,,0.35,nav,1,1900,2,, 15362,NJBF000083846,6067 RELIANCE AVENUE,Hamilton,NJ,39.45003876,-74.73418205,RES1,3001,,17,NE,1977,1982,3102,2,1,1389.364769,1389.364769,3507,NO,40.82,54.69,1,2.9,6112,108.984486,118.581987,128.257197,132.958369,I,Above,Gable,0,5701,,47.75703136,0,0,,,,1,1,,0.35,nav,1,1977,2,, 15363,NJBF000083144,116 POST ROAD,Hamilton,NJ,39.43814436,-74.71631183,RES1,3001,,17,NE,1956,1956,3102,1,1,1890.234552,1890.234552,3507,NO,15.88,26.17,1,-0.98,6112,109.160041,118.878693,128.555109,133.48786,I,Above,Gable,0,5701,,21.02283883,0,0,,,,1,1,,0.35,nav,1,1956,1,, 15364,NJBF000082244,448 HIGHLAND COURT,Hamilton,NJ,39.42833731,-74.71226633,RES1,3001,,18,NE,1986,1986,3102,2,1,3062.814034,3062.814034,3507,NO,25.07,30.23,1,-0.82,6112,109.220031,119.001989,128.68814,133.715533,I,Above,Gable,0,5701,,27.64879659,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 15365,NJBF000083771,6125 LONGWOOD AVENUE,Hamilton,NJ,39.44980656,-74.73737985,RES1,3001,,16,NE,1900,1900,3102,2,1,1558.441948,1558.441948,3507,NO,33.51,42.36,1,2.91,6110,108.95978,118.548257,128.224894,132.899188,I,Above,Gable,0,5701,,37.93513766,0,0,,,,1,1,,0.35,nav,1,1900,2,, 15366,NJBF000083953,70 MILL STREET,Hamilton,NJ,39.45246308,-74.73484634,RES1,3001,,17,NE,1963,1963,3102,1,1,1213.216471,1213.216471,3505,NO,19.86,25.67,3,5.85,6106,108.972665,118.555588,128.229662,132.909779,I,Above,Gable,0,5701,,22.76223285,0,1.2,,,,1,1,,0.03,nav,1,1963,1,, 15367,NJBF000083951,70 MILL STREET,Hamilton,NJ,39.45245068,-74.73461895,RES1,3001,,17,NE,1963,1963,3102,1,1,562.5392353,562.5392353,3505,NO,13.51,24.14,3,-0.8,6106,108.974516,118.55821,128.232192,132.914395,I,Above,Gable,0,5701,,18.82565481,0,1.2,,,,1,1,,0.03,nav,1,1963,1,, 15368,NJBF000083768,26 CENTRAL AVENUE,Hamilton,NJ,39.44978526,-74.73367815,RES1,3001,,17,NE,1972,1972,3102,1,1,1955.276185,1955.276185,3507,NO,19.34,28.69,1,2.01,6110,108.989192,118.589603,128.264755,132.97198,I,Above,Gable,0,5701,,24.01475667,0,0,,,,1,1,,0.35,nav,1,1972,1,, 15369,NJBF000083446,274 OLD RIVER ROAD,Hamilton,NJ,39.44460863,-74.72179592,RES1,3001,,17,NE,1956,1956,3102,1,1,2033.022592,2033.022592,3505,NO,13.16,23.13,3,0.09,6112,109.098598,118.764782,128.438012,133.282621,I,Above,Gable,0,5701,,18.14319008,0,1.2,,,,1,1,,0.35,nav,1,1956,1,, 15370,NJBF000083588,6106 HARDING HIGHWAY,Hamilton,NJ,39.44771924,-74.73691932,RES1,3001,,15,NE,1920,1920,3102,2,1,564.5325295,564.5325295,3505,NO,35.96,49.19,3,5.26,6110,108.969322,118.569695,128.247425,132.938841,I,Above,Flat,0,5701,,42.57557466,0,0,,,,1,1,,0.35,nav,1,1920,2,, 15371,NJBF000084085,164 OLD EGG HARBOR ROAD,Hamilton,NJ,39.45458225,-74.71675523,RES1,3001,,16,NE,1960,1960,3102,1,1,3547.526806,3547.526806,3507,NO,20.06,26.39,1,1.1,6106,109.117318,118.744786,128.407342,133.234309,I,Above,Hip,0,5701,,23.22535666,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 15372,NJBF000083077,100 POST ROAD,Hamilton,NJ,39.4296757,-74.71954594,RES1,3001,510,NaN,NE,1975,1975,3102,2,1,14463.60162,14463.60162,3507,NO,22.03,30.54,1,0.14,6106,109.158984,118.906635,128.594146,133.549759,I,Above,Gable,0,5701,,26.28804222,0,0,,,,1,1,,0.03,nav,1,1975,2,, 15373,NJBF000083087,100 POST ROAD,Hamilton,NJ,39.43654928,-74.71789263,RES1,3001,510,NaN,NE,1962,1975,3102,2,1,16642.14008,16642.14008,3507,NO,27.25,33.88,1,-0.24,6106,109.151639,118.872649,128.551604,133.480154,I,Above,Flat,0,5701,,30.56850369,0,0,,,,1,1,,0.03,nav,1,1962,2,, 15374,NJBF000083108,100 POST ROAD,Hamilton,NJ,39.4370356,-74.71776456,RES1,3001,510,NaN,NE,1975,1975,3102,2,1,7140.335488,7140.335488,3507,NO,26.97,37.33,1,-0.05,6106,109.15132,118.87036,128.548727,133.475438,I,Above,Flat,0,5701,,32.15265334,0,0,,,,1,1,,0.03,nav,1,1975,2,, 15375,NJBF000083107,100 POST ROAD,Hamilton,NJ,39.43696766,-74.71821681,RES1,3001,510,NaN,NE,1962,1975,3102,2,1,2621.40832,2621.40832,3507,NO,23.4,35.05,1,1.21,6106,109.147882,118.865634,128.544302,133.467447,I,Above,Flat,0,5701,,29.22553512,0,0,,,,1,1,,0.03,nav,1,1962,2,, 15376,NJBF000083964,6024 MAIN STREET,Hamilton,NJ,39.4526059,-74.72903054,COM1,3003,738,NaN,ME,1906,1906,3401,2,1,2369.092012,2369.092012,3507,NO,26.37,39.79,1,0.55,6106,109.019302,118.619671,128.290899,133.021632,I,Above,Flat,0,NaN,,33.07622496,0,0,,,,1,1,,0.03,nav,1,1906,2,, 15377,NJBF000083735,20 SHARON AVENUE,Hamilton,NJ,39.44934864,-74.73269072,RES1,3001,,17,NE,1972,1972,3102,1,1,2154.918951,2154.918951,3507,NO,20.33,25.92,1,2.09,6106,108.998248,118.604055,128.279056,132.997748,I,Above,Hip,0,5701,,23.1260205,0,0,,,,1,1,,0.03,nav,1,1972,1,, 15378,NJBF000083748,5698 MAYS LANDING SP RD,Hamilton,NJ,39.44954531,-74.72029515,COM8,3003,639,NaN,ME,1946,1946,3401,1,1,2286.29682,2286.29682,3507,NO,15.23,28.94,1,0.83,6112,109.098763,118.743439,128.411854,133.239062,I,Above,Flat,0,5701,,22.08747193,0,0,,,,1,1,,0.35,nav,1,1946,1,, 15379,NJBF000083721,5698 MAYS LANDING SP RD,Hamilton,NJ,39.44922669,-74.72038578,RES1,3001,639,NaN,NE,1946,1946,3102,1,1,1251.565474,1251.565474,3505,NO,13.34,20.83,3,0.19,6110,109.098762,118.744884,128.413594,133.241981,I,Above,Gable,0,5701,,17.08793257,0,0,,,,1,1,,0.35,nav,1,1946,1,, 15380,NJBF000084019,80 MILL STREET,Hamilton,NJ,39.45315058,-74.73433204,COM1,3001,739,17,ME,2016,2016,3401,2,1,1719.676936,1719.676936,3507,NO,27.94,38.3,1,0.77,6106,108.974971,118.555916,128.22938,132.909736,I,Above,Hip,0,NaN,,33.12207736,0,0,,,,1,1,,0.03,nav,1,2016,2,, 15381,NJBF000079814,4672 MAYS LANDING SP RD,Hamilton,NJ,39.41296324,-74.7111147,RES1,3001,,17,NE,1975,1975,3102,2,1,1089.077654,1089.077654,3507,NO,37.38,43.82,1,-0.76,6110,109.282085,119.133249,128.842299,133.969605,I,Above,Gable,0,5701,,40.59951861,0,0,,,,1,1,,0.35,nav,1,1975,2,, 15382,NJBF000083737,209 OLD RIVER ROAD,Hamilton,NJ,39.44938029,-74.72124798,RES1,3001,,17,NE,1963,1963,3102,1,1,2605.944359,2605.944359,3505,NO,22.25,28.07,3,4.52,6106,109.091241,118.733746,128.402857,133.222666,I,Above,Hip,0,5701,,25.15902124,0,0,,,,1,1,,0.03,nav,1,1963,1,, 15383,NJBF000082361,540 GRAVELLY RUN ROAD,Hamilton,NJ,39.42928743,-74.70866284,RES1,3001,,17,NE,1984,1984,3102,2,1,2331.278715,2331.278715,3507,NO,36.26,48.66,1,-0.23,6112,109.245939,119.037403,128.720399,133.773612,I,Above,Gable,0,5701,,42.46211218,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 15384,NJBF000080608,351 PENNY LANE,Hamilton,NJ,39.41560793,-74.71243937,RES1,3001,,17,NE,1936,1936,3102,2,1,1399.674944,1399.674944,3507,NO,23.68,28.8,1,-0.11,6106,109.2619,119.097493,128.802497,133.903131,I,Above,Gable,0,5701,,26.23672519,0,0,,,,1,1,,0.03,nav,1,1936,2,, 15385,NJBF000081813,535 PINE NEEDLE DRIVE,Hamilton,NJ,39.42324304,-74.70924173,RES1,3001,,18,NE,1996,1996,3102,2,1,3772.660599,3772.660599,3507,NO,28.38,40.43,1,1.76,6112,109.259478,119.076905,128.768967,133.852807,I,Above,Hip,0,5701,,34.40914935,0,1.2,,,,1,1,,0.35,nav,1,1996,2,, 15386,NJBF000083428,283 OLD RIVER ROAD,Hamilton,NJ,39.4441375,-74.7221495,RES1,3001,,17,NE,1790,1790,3102,2,2,884.6350278,884.6350278,3505,NO,33.41,46.2,3,2.98,6106,109.096941,118.764395,128.438217,133.282618,I,Above,Gable,0,5701,,39.80335037,0,0,,,,1,1,,0.03,nav,1,1790,2,, 15387,NJBF000083375,283 OLD RIVER ROAD,Hamilton,NJ,39.44321929,-74.72177811,RES1,3001,,17,NE,1790,1790,3102,2,2,575.4630231,575.4630231,3507,NO,32.12,47.01,1,2.36,6112,109.102355,118.775837,128.45026,133.303623,I,Above,Gable,0,5701,,39.5664045,0,0,,,,1,1,,0.35,nav,1,1790,2,, 15388,NJBF000084069,6076 MAIN STREET,Hamilton,NJ,39.45410483,-74.73372029,RES1,3001,,16,NE,1770,1770,3102,2,1,1868.575134,1868.575134,3505,NO,29.81,43.34,3,5.38,6106,108.977418,118.555251,128.227914,132.907706,I,Above,Gable,0,5701,,36.57372835,0,0,,,,1,1,,0.03,nav,1,1770,2,, 15389,NJBF000084015,6052 MAIN STREET,Hamilton,NJ,39.4531105,-74.731686,COM1,3003,,17,ME,1890,1890,3401,2,1,505.1492392,505.1492392,3507,NO,31.88,46.29,1,-0.34,6112,108.99643,118.585822,128.258074,132.962122,I,Above,Hip,0,NaN,,39.08610418,0,1.1,,,,1,1,,0.35,nav,1,1890,2,, 15390,NJBF000083639,3 CENTRAL AVENUE,Hamilton,NJ,39.44824485,-74.73425787,RES1,3001,569,NaN,NE,1965,1965,3102,2,1,2096.595197,2096.595197,3507,NO,33.39,44.35,1,-0.32,6106,108.988813,118.595178,128.271548,132.983251,I,Above,Gable,0,5701,,38.86990744,0,0,,,,1,1,,0.03,nav,1,1965,2,, 15391,NJBF000082336,436 HIGHLAND DRIVE,Hamilton,NJ,39.42909924,-74.71313278,RES1,3001,,17,NE,1981,1981,3102,1,1,3311.322573,3311.322573,3507,NO,11.95,23.98,1,1.16,6112,109.21091,118.985906,128.671452,133.68672,I,Above,Gable,0,5701,,17.96763909,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 15392,NJBF000083671,5914 ROUTE 617,Hamilton,NJ,39.448669,-74.7283015,IND2,3001,510,NaN,ME,1952,1952,3401,1,1,2316.403615,2316.403615,3507,NO,19.12,24.48,1,2.01,6106,109.035305,118.658788,128.332219,133.094028,I,Above,Flat,0,5701,,21.79953741,0,0,,,,1,1,,0.03,nav,1,1952,1,, 15393,NJBF000083685,5914 ROUTE 617,Hamilton,NJ,39.448669,-74.7283015,IND2,3001,510,NaN,ME,1952,1952,3401,1,1,2926.162751,2926.162751,3507,NO,20.49,33.19,1,2.36,6106,109.035305,118.658788,128.332219,133.094028,I,Above,Flat,0,5701,,26.83916704,0,0,,,,1,1,,0.03,nav,1,1952,1,, 15394,NJBF000083555,6039 DANENHAUER LANE,Hamilton,NJ,39.44718157,-74.72832571,RES1,3001,,17,NE,1985,1985,3102,2,1,1830.496052,1830.496052,3507,NO,27.8,38.58,1,0.04,6106,109.039035,118.670152,128.344653,133.115514,I,Above,Hip,0,5701,,33.19099403,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 15395,NJBF000083556,6037 DANENHAUER LANE,Hamilton,NJ,39.44721715,-74.72800491,RES1,3001,,17,NE,1986,1986,3102,2,1,2318.558078,2318.558078,3507,NO,22.01,33.17,1,-0.85,6106,109.041524,118.673513,128.347836,133.121321,I,Above,Gable,0,5701,,27.59064893,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 15396,NJBF000083475,266 OLD RIVER ROAD,Hamilton,NJ,39.44537576,-74.72164867,RES1,3001,,17,NE,1926,1926,3102,2,1,2663.528053,2663.528053,3505,NO,39.42,54.27,3,5.82,6112,109.097834,118.760482,128.432987,133.274144,I,Above,Gable,0,5701,,46.84078274,0,0,,,,1,1,,0.35,nav,1,1926,2,, 15397,NJBF000083732,18 CENTRAL AVENUE,Hamilton,NJ,39.4493276,-74.73367971,RES1,3001,,17,NE,1972,1972,3102,1,1,1132.578976,1132.578976,3507,NO,17.18,29.44,1,-0.91,6112,108.99042,118.593158,128.268597,132.978659,I,Above,Flat,0,5701,,23.31177664,0,0,,,,1,1,,0.35,nav,1,1972,1,, 15398,NJBF000079843,4662 MAYS LANDING SP RD,Hamilton,NJ,39.4130795,-74.71671449,RES1,3001,,15,NE,1940,1940,3102,2,1,773.8944822,773.8944822,3507,NO,38.74,44.46,1,2.77,6106,109.240545,119.066983,128.776532,133.854915,I,Above,Flat,0,5701,,41.59846752,0,0,,,,1,1,,0.03,nav,1,1940,2,, 15399,NJBF000079794,4662 MAYS LANDING SP RD,Hamilton,NJ,39.4128635,-74.716824,RES1,3001,,15,NE,1940,1940,3102,2,1,633.4383281,633.4383281,3507,NO,37.61,47.14,1,-0.91,6106,109.240648,119.067366,128.77725,133.855937,I,Above,Gable,0,5701,,42.37729765,0,0,,,,1,1,,0.03,nav,1,1940,2,, 15400,NJBF000083913,58 MILL STREET,Hamilton,NJ,39.45175702,-74.73520133,RES1,3001,643,NaN,NE,1900,1900,3102,3,1,2066.23663,2066.23663,3505,NO,45.22,51.92,3,3.01,6112,108.971714,118.557172,128.231799,132.913195,I,Above,Gable,0,5701,,48.57148894,0,1.2,,,,1,1,,0.35,nav,1,1900,3,, 15401,NJBF000083924,58 MILL STREET,Hamilton,NJ,39.45191918,-74.73531666,RES4,3001,643,NaN,ME,1900,1900,3401,3,1,2429.265443,2429.265443,3507,NO,42.87,53.33,1,2.13,6112,108.970353,118.554611,128.229196,132.908549,I,Above,Flat,0,NaN,,48.10149678,0,1.2,,,,1,1,,0.35,nav,1,1900,3,, 15402,NJBF000082573,404 HIGHLAND DRIVE,Hamilton,NJ,39.43110958,-74.71486125,RES1,3001,,17,NE,1988,1988,3102,2,1,2961.259396,2961.259396,3507,NO,24.63,35.78,1,2.72,6112,109.1913,118.950111,128.633898,133.621989,I,Above,Gable,0,5701,,30.20931179,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 15403,NJBF000078835,4559 CATAWBA AVENUE,Hamilton,NJ,39.4078171,-74.71645214,RES1,3001,,17,NE,1964,1964,3102,1,1,1653.233017,1653.233017,3507,NO,13.67,28.24,1,0.19,6112,109.265537,119.110378,128.828086,133.939133,I,Above,Hip,0,5701,,20.95572694,0,0,,,,1,1,,0.03,nav,1,1964,1,, 15404,NJBF000084054,6060 MAIN STREET,Hamilton,NJ,39.45376091,-74.73232747,RES1,3001,,17,NE,1890,1890,3102,2,1,2714.732395,2714.732395,3505,NO,26.04,31.69,3,0.62,6112,108.989571,118.57353,128.245723,132.940014,I,Above,Hip,0,5701,,28.86746136,0,1.1,,,,1,1,,0.35,nav,1,1890,2,, 15405,NJBF000083861,5724 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1920,3102,2,1,1344.261962,1344.261962,3505,NO,30.07,43.6,3,-2.73,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,36.8339731,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15406,NJBF000082410,420 HIGHLAND DRIVE,Hamilton,NJ,39.42968515,-74.71437679,RES1,3001,,17,NE,1988,1988,3102,2,1,2750.327762,2750.327762,3507,NO,35.88,45.57,1,-0.79,6112,109.199348,118.966774,128.652136,133.653013,I,Above,Gable,0,5701,,40.72552901,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 15407,NJBF000084064,160 OLD EGG HARBOR ROAD,Hamilton,NJ,39.45400604,-74.71749673,RES1,3001,,17,NE,1960,1960,3102,1,1,1624.583999,1624.583999,3507,NO,12.97,21.53,1,1.31,6106,109.112216,118.740713,128.404161,133.228189,I,Above,Flat,0,5701,,17.24843035,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15408,NJBF000083730,207 OLD RIVER ROAD,Hamilton,NJ,39.44932023,-74.72083077,RES1,3001,,17,NE,1987,1987,3102,2,1,1862.525408,1862.525408,3505,NO,20.86,35.28,3,-2.08,6106,109.094844,118.739022,128.407929,133.2318,I,Above,Gable,0,5701,,28.06989361,0,0,,,,1,1,,0.03,nav,1,1987,2,, 15409,NJBF000083589,6108 HARDING HIGHWAY,Hamilton,NJ,39.44772147,-74.73706921,RES1,3001,,16,NE,1948,1948,3102,1,1,910.201481,910.201481,3505,NO,20.81,34.13,3,2.19,6110,108.968139,118.568016,128.2458,132.935875,I,Above,Gable,0,5701,,27.47341314,0,0,,,,1,1,,0.35,nav,1,1948,1,, 15410,NJBF000083930,5735 SECOND STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1981,3102,2,1,907.4177962,907.4177962,3505,NO,36.46,48.1,3,7.19,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,42.28423233,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 15411,NJBF000082457,461 RIDGE LANE,Hamilton,NJ,39.43009886,-74.71159856,RES1,3001,,17,NE,1988,1988,3102,1,1,1959.936425,1959.936425,3507,NO,17.02,27.71,1,1.22,6112,109.220146,118.996298,128.679769,133.702486,I,Above,Gable,0,5701,,22.36511436,0,1.2,,,,1,1,,0.35,nav,1,1988,1,, 15412,NJBF000083576,6056 HARDING HWY,Hamilton,NJ,39.44751588,-74.73468326,COM1,3001,733,NaN,ME,1974,1974,3401,1,1,20759.40411,20759.40411,3507,NO,15.45,20.75,1,-0.11,6106,108.987492,118.596138,128.273151,132.985636,I,Above,Flat,0,NaN,,18.1042415,0,0,,,,1,1,,0.03,nav,1,1974,1,, 15413,NJBF000083558,8 ROUTE 50,Hamilton,NJ,39.447252,-74.735553,COM1,3001,110,NaN,ME,1998,1998,3401,1,1,2203.82942,2203.82942,3507,NO,21.35,31.73,1,2.7,6110,108.981385,118.588514,128.266034,132.97246,I,Above,Hip,0,NaN,,26.54015835,0,0,,,,1,1,,1,nav,1,1998,1,, 15414,NJBF000083943,6026 MAIN STREET,Hamilton,NJ,39.4523085,-74.7293865,COM1,3003,738,NaN,ME,1916,1916,3401,2,1,708.672481,708.672481,3507,NO,26.41,41,1,0.72,6106,109.017148,118.617985,128.289576,133.019018,I,Above,Gable,0,NaN,,33.70293196,0,0,,,,1,1,,0.03,nav,1,1916,2,, 15415,NJBF000083871,5729 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1830,3102,3,1,507.067608,507.067608,3505,NO,60.97,75.81,3,5.93,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,68.38666999,0,0,,,,1,1,,0.03,nav,1,1969,3,, 15416,NJBF000083934,6010 MAIN STREET,Hamilton,NJ,39.45211603,-74.72843932,COM1,3003,51,NaN,ME,1973,1973,3401,2,1,5845.438408,5845.438408,3507,NO,25.31,32.61,1,0.58,6112,109.025364,118.630209,128.301434,133.040482,I,Above,Gable,0,NaN,,28.9605928,0,0,,,,1,1,,1,nav,1,1973,2,, 15417,NJBF000083955,65 MILL STREET,Hamilton,NJ,39.452473,-74.735678,RES1,3001,,17,NE,1900,1900,3102,3,1,766.1640514,766.1640514,3505,NO,40.4,54.21,3,6.23,6110,108.965983,118.546253,128.220682,132.893365,I,Above,Hip,0,5701,,47.30798342,0,1.2,,,,1,1,,0.35,nav,1,1900,3,, 15418,NJBF000083813,21 TAYLOR AVENUE,Hamilton,NJ,39.45029925,-74.72885075,RES1,3001,,17,NE,1920,1920,3103,2,1,1538.233948,1538.233948,3505,NO,27.69,36.05,3,5.37,6106,109.026633,118.639809,128.312406,133.059175,I,Above,Gable,0,5701,,31.8711517,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 15419,NJBF000083565,6029 DANENHAUER LANE,Hamilton,NJ,39.44732205,-74.72723537,RES1,3001,,17,NE,1990,1990,3102,1,1,3752.048226,3752.048226,3507,NO,15.19,24.92,1,1.3,6106,109.047452,118.681423,128.355297,133.134945,I,Above,Gable,0,5701,,20.05636133,0,0,,,,1,1,,0.03,nav,1,1990,1,, 15420,NJBF000083808,33 CENTRAL AVENUE,Hamilton,NJ,39.45024455,-74.73417882,RES1,3001,,17,NE,1977,1977,3102,1,1,1767.216524,1767.216524,3507,NO,11.14,23.03,1,0.55,6110,108.98395,118.580407,128.25549,132.955401,I,Above,Gable,0,5701,,17.08526998,0,0,,,,1,1,,0.35,nav,1,1977,1,, 15421,NJBF000083591,6010 DANENHAUER LANE,Hamilton,NJ,39.44773271,-74.72524644,RES1,3001,,17,NE,2015,2015,3102,2,1,3273.840307,3273.840307,3507,NO,27.72,38.05,1,1.18,6106,109.062499,118.700835,128.373402,133.168098,I,Above,Hip,0,5701,,32.88551698,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 15422,NJBF000081054,154 CRESCENT BLVD,Hamilton,NJ,39.41736617,-74.71425952,RES1,3001,,17,NE,1984,1984,3102,1,2,2028.554535,2028.554535,3507,NO,15.79,30.12,1,1.89,6106,109.241635,119.062713,128.765377,133.840045,I,Above,Gable,0,5701,,22.95619137,0,0,,,,1,1,,0.03,nav,1,1984,1,, 15423,NJBF000083949,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45242959,-74.74373635,RES3C,3001,29,NaN,ME,1971,1971,3301,2,1,2489.930414,2489.930414,3507,NO,23.51,38.21,1,2.42,6112,108.902481,118.457867,128.135376,132.736974,I,Above,Gable,0,5701,,30.86342457,0,0,,,,1,1,,0.35,nav,1,1971,2,, 15424,NJBF000084027,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45322467,-74.74369428,RES3C,3001,29,NaN,ME,1971,1971,3301,2,1,2291.374085,2291.374085,3507,NO,34.02,41.29,1,-0.8,6112,108.90054,118.452098,128.129216,132.726202,I,Above,Gable,0,5701,,37.65050804,0,0,,,,1,1,,0.35,nav,1,1971,2,, 15425,NJBF000083961,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45253385,-74.74349814,RES3C,3001,29,NaN,ME,1971,1971,3301,2,1,1249.520347,1249.520347,3507,NO,26.68,41.59,1,0.7,6112,108.904041,118.459649,128.137029,132.740081,I,Above,Flat,0,5701,,34.13653178,0,0,,,,1,1,,0.35,nav,1,1971,2,, 15426,NJBF000083975,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.4527176,-74.7434318,RES3C,3001,29,NaN,ME,1971,1971,3301,2,1,1843.872746,1843.872746,3507,NO,35.53,49.11,1,0.56,6112,108.904032,118.458928,128.136198,132.738681,I,Above,Gable,0,5701,,42.31897906,0,0,,,,1,1,,0.35,nav,1,1971,2,, 15427,NJBF000084336,1110 ROUTE 50,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1930,3102,1,1,1118.72752,1118.72752,3504,NO,11.94,21.78,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,16.85938035,0,0,,,,1,1,,0.35,nav,1,1970,1,, 15428,NJBF000083879,5734 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1920,3102,3,1,1160.068831,1160.068831,3505,NO,45.08,59.66,3,5.43,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,52.36809924,0,1.1,,,,1,1,,0.35,nav,1,1969,3,, 15429,NJBF000079055,4604 CATAWBA AVENUE,Hamilton,NJ,39.4092319,-74.71561148,RES1,3001,,17,NE,1970,1970,3102,1,1,579.6590792,579.6590792,3507,NO,20.3,35.05,1,1.08,6106,109.265139,119.109252,128.824749,133.934876,I,Above,Gable,0,5701,,27.67380377,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15430,NJBF000083805,29 FARRAGUT AVENUE,Hamilton,NJ,39.45022804,-74.72633469,RES1,3001,,17,NE,1890,1890,3103,2,1,1044.999614,1044.999614,3505,NO,21.84,31.27,3,-2.01,6112,109.04729,118.668885,128.340242,133.109735,I,Above,Hip,0,5701,,26.55724106,0,0,,,,1,1,,0.35,nav,1,1890,2,, 15431,NJBF000083631,6004 DANENHAUER LANE,Hamilton,NJ,39.44817133,-74.72563376,RES1,3001,,18,NE,1990,1990,3102,2,1,1061.279251,1061.279251,3507,NO,27.56,40.5,1,-0.83,6106,109.058221,118.692984,128.365428,133.153962,I,Above,Hip,0,5701,,34.0289043,0,0,,,,1,1,,0.03,nav,1,1990,2,, 15432,NJBF000078522,,Hamilton,NJ,39.40597954,-74.71529074,RES1,3001,,NaN,NE,1960,0,3102,2,1,624.1880762,624.1880762,3507,NO,39.77,45.92,1,1.69,6110,109.2824,119.137888,128.858626,133.990151,I,Above,Gable,0,5701,,42.84334485,0,0,,,,1,1,,0.35,nav,1,1960,2,, 15433,NJBF000083888,40 FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,EDU1,3001,,NaN,E,1969,0,3401,5,1,2382.606985,2382.606985,3505,NO,66.93,80.19,3,-2.3,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,73.55818294,0,0,,,,1,1,,0.35,nav,1,1969,5,, 15434,NJBF000080183,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41420245,-74.71566368,RES1,3001,,NaN,NE,1971,1971,3102,2,1,1926.527844,1926.527844,3507,NO,30.98,36.68,1,0.83,6112,109.243608,119.070568,128.778303,133.859239,I,Above,Gable,0,5701,,33.83162053,0,0,,,,1,1,,1,nav,1,1971,2,, 15435,NJBF000083873,5732 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,28,NE,1969,1865,3102,2,2,1612.471831,1612.471831,3505,NO,24.56,33.79,3,-0.41,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,29.17641652,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15436,NJBF000083890,5745 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1900,3102,1,3,1846.029615,1846.029615,3505,NO,16.17,26.76,3,1.92,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,21.46467152,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15437,NJBF000078479,4509 CATAWBA AVENUE,Hamilton,NJ,39.40576305,-74.71682917,RES1,3001,,17,NE,1950,1950,3102,1,1,2846.696013,2846.696013,3507,NO,15.97,27.54,1,1.79,6106,109.272535,119.12181,128.842725,133.962335,I,Above,Hip,0,5701,,21.75597614,0,0,,,,1,1,,0.03,nav,1,1950,1,, 15438,NJBF000083960,206 LINWOOD AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1942,3102,2,1,1401.152078,1401.152078,3505,NO,30.17,36.68,3,3.51,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,33.42130738,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15439,NJBF000083636,4 CAMAC AVENUE,Hamilton,NJ,39.4482155,-74.73469354,RES1,3001,560,NaN,NE,1982,1982,3102,2,1,2137.462357,2137.462357,3507,NO,32.74,39.2,1,0.64,6112,108.985443,118.590543,128.267107,132.975129,I,Above,Gable,0,5701,,35.97322264,0,0,,,,1,1,,0.35,nav,1,1982,2,, 15440,NJBF000083750,22 CENTRAL AVENUE,Hamilton,NJ,39.44957083,-74.73366722,RES1,3001,,17,NE,1972,1972,3102,1,1,1163.640775,1163.640775,3507,NO,16.05,30.39,1,1.05,6110,108.989861,118.591401,128.266682,132.975341,I,Above,Gable,0,5701,,23.21849333,0,0,,,,1,1,,0.35,nav,1,1972,1,, 15441,NJBF000083647,8 CENTRAL AVENUE,Hamilton,NJ,39.44837831,-74.7335557,RES1,3001,562,NaN,NE,1956,1956,3102,1,1,4154.589778,4154.589778,3507,NO,20.64,32.62,1,2.46,6110,108.994012,118.601977,128.277973,132.995064,I,Above,Gable,0,5701,,26.63041433,0,0,,,,1,1,,0.35,nav,1,1956,1,, 15442,NJBF000083839,101 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1950,3102,1,1,559.8798785,559.8798785,3505,NO,15.78,30.16,3,1.11,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,22.97207423,0,0,,,,1,1,,0.35,nav,1,1969,1,, 15443,NJBF000083590,6104 HARDING HWY,Hamilton,NJ,39.44772661,-74.73673322,RES1,3001,,15,NE,1916,1916,3102,2,1,1102.218192,1102.218192,3505,NO,31.82,41.49,3,5.25,6112,108.970759,118.571695,128.249352,132.942365,I,Above,Flat,0,5701,,36.65638911,0,1.2,,,,1,1,,0.35,nav,1,1916,2,, 15444,NJBF000083342,301 OLD RIVER ROAD,Hamilton,NJ,39.442719,-74.7211775,RES1,3001,959,NaN,NE,1920,1920,3102,1,1,1024.746106,1024.746106,3507,NO,18.39,25.92,1,1.92,6112,109.108537,118.786658,128.46121,133.32297,I,Above,Flat,0,5701,,22.15581138,0,0,,,,1,1,,0.35,nav,1,1920,1,, 15445,NJBF000084006,78 MILL STREET,Hamilton,NJ,39.45302059,-74.7344141,COM1,3001,738,NaN,ME,1886,1886,3401,1,1,2535.108139,2535.108139,3507,NO,17.65,27.73,1,-0.34,6106,108.974654,118.556022,128.229594,132.91004,I,Above,Flat,0,NaN,,22.68907353,0,0,,,,1,1,,0.03,nav,1,1886,1,, 15446,NJBF000081171,96 CRESCENT BLVD,Hamilton,NJ,39.41786168,-74.71446625,RES1,3001,,17,NE,2004,2004,3102,1,1,2267.765819,2267.765819,3507,NO,16.5,27.72,1,-0.15,6112,109.238234,119.056508,128.758467,133.828456,I,Above,Hip,0,5701,,22.1123097,0,0,,,,1,1,,0.35,nav,1,2004,1,, 15447,NJBF000083503,252 OLD RIVER ROAD,Hamilton,NJ,39.4460142,-74.7200714,RES1,3001,,17,NE,1989,1989,3102,1,1,893.5028779,893.5028779,3505,NO,26.4,34.48,3,8.02,6112,109.109171,118.773694,128.444776,133.295927,I,Above,Gable,0,5701,,30.44137418,0,1.2,,,,1,1,,0.15,nav,1,1989,1,, 15448,NJBF000083525,246 OLD RIVER ROAD,Hamilton,NJ,39.44654725,-74.72007148,RES1,3001,,17,NE,1962,1962,3102,1,1,2591.07804,2591.07804,3505,NO,24.19,30.14,3,7.4,6112,109.107856,118.769524,128.440164,133.288008,I,Above,Gable,0,5701,,27.16747719,0,0,,,,1,1,,0.35,nav,1,1962,1,, 15449,NJBF000082084,512 WILLOW OAK DRIVE,Hamilton,NJ,39.42632054,-74.70721719,RES1,3001,,19,NE,1988,1988,3102,3,1,991.0830973,991.0830973,3507,NO,45.78,52.91,1,2.07,6112,109.266013,119.077465,128.763925,133.847285,I,Above,Gable,0,5701,,49.34225346,0,0,,,,1,1,,0.35,nav,1,1988,3,, 15450,NJBF000083799,MAYS LANDING SP RD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,0,3102,2,1,572.7407162,572.7407162,3505,NO,24.05,37.24,3,1.29,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,30.64371724,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15451,NJBF000084040,165 OLD EGG HARBOR ROAD,Hamilton,NJ,39.45341274,-74.71900967,COM4,3001,,NaN,ME,1975,1975,3401,1,1,4127.041928,4127.041928,3507,NO,18.38,29.99,1,-0.87,6112,109.100662,118.727856,128.392713,133.207086,I,Above,Flat,0,NaN,,24.18318195,0,0,,,,1,1,,1,nav,1,1975,1,, 15452,NJBF000083886,,Hamilton,NJ,39.45109589,-74.73571626,EDU1,3001,,NaN,E,1969,0,3401,2,1,2947.014518,2947.014518,3507,NO,35,41.38,1,2.72,6112,108.969398,118.556625,128.231848,132.91282,I,Above,Gable,0,NaN,,38.19129052,0,0,,,,1,1,,0.7,nav,1,1969,2,, 15453,NJBF000083941,45 MILL STREET,Hamilton,NJ,39.45229668,-74.73683343,IND4,3002,330,NaN,E,1963,1963,3401,1,1,120820.4836,120820.4836,3507,NO,11.07,19.29,1,-0.32,6110,108.957248,118.534814,128.209824,132.873379,I,Above,Flat,0,5701,,15.17759393,0,0,,,,1,1,,1,nav,1,1963,1,, 15454,NJBF000078451,4508 MAYS LANDING SP RD,Hamilton,NJ,39.40559432,-74.71365409,RES1,3001,,17,NE,1956,1956,3102,2,1,2530.166603,2530.166603,3507,NO,34.91,48.6,1,-0.68,6106,109.295864,119.159821,128.881335,134.029047,I,Above,Gable,0,5701,,41.75618829,0,0,,,,1,1,,0.03,nav,1,1956,2,, 15455,NJBF000083972,200 FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,GOV1,3001,,NaN,E,1969,1927,3401,3,1,14235.8519,14235.8519,3507,YES,57.35,67.1,1,-0.75,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,62.22586852,0,0,,,,1,1,,0.35,nav,1,1969,3,, 15456,NJBF000084080,OLD HARDING HIGHWAY,Hamilton,NJ,39.4544445,-74.735798,IND4,3004,,NaN,E,1866,0,3401,3,1,945.5941639,945.5941639,3507,NO,57.73,65.44,1,1.07,6106,108.959795,118.529442,128.20287,132.862119,I,Above,Flat,0,NaN,,61.58144434,0,0,,,,1,1,,0.03,nav,1,1866,3,, 15457,NJBF000082384,424 HIGHLAND DRIVE,Hamilton,NJ,39.42945365,-74.71416085,RES1,3001,,18,NE,1986,1986,3102,2,1,3784.736313,3784.736313,3507,NO,33.01,45.57,1,-0.27,6112,109.201742,118.971089,128.656649,133.6608,I,Above,Gable,0,5701,,39.28828441,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 15458,NJBF000078837,4559 CATAWBA AVENUE,Hamilton,NJ,39.40782421,-74.71612989,RES1,3001,,17,NE,1964,1964,3102,1,1,694.4060831,694.4060831,3507,NO,12.84,22.08,1,0.96,6112,109.267804,119.114043,128.831759,133.945528,I,Above,Gable,0,5701,,17.4573264,0,0,,,,1,1,,0.35,nav,1,1964,1,, 15459,NJBF000078859,,Hamilton,NJ,39.40797927,-74.71653114,RES1,3001,,NaN,NE,1969,0,3102,2,1,641.5097144,641.5097144,3507,NO,39.62,45.58,1,1.49,6112,109.264227,119.108223,128.82567,133.935108,I,Above,Flat,0,5701,,42.60124411,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15460,NJBF000078872,4563 CATAWBA AVENUE,Hamilton,NJ,39.40806308,-74.71622343,RES1,3001,,17,NE,1954,1954,3102,1,1,4372.888746,4372.888746,3507,NO,16.41,29.73,1,-0.56,6112,109.266041,119.111135,128.828467,133.940064,I,Above,Hip,0,5701,,23.07115773,0,0,,,,1,1,,0.35,nav,1,1954,1,, 15461,NJBF000082362,432 HIGHLAND DRIVE,Hamilton,NJ,39.42929389,-74.71342777,RES1,3001,,18,NE,1981,1981,3102,2,1,2286.118116,2286.118116,3507,NO,29.03,34.44,1,1.19,6112,109.208,118.980934,128.666362,133.677885,I,Above,Gable,0,5701,,31.73444068,0,1.2,,,,1,1,,0.35,nav,1,1981,2,, 15462,NJBF000083702,5473 MAYS LANDING SP RD,Hamilton,NJ,39.44895286,-74.71970736,COM3,3001,210,NaN,ME,2003,2003,3401,1,1,6080.383837,6080.383837,3507,NO,15.6,29.83,1,1.81,6112,109.105061,118.754877,128.423384,133.259483,I,Above,Hip,0,NaN,,22.71138536,0,0,,,,1,1,,1,nav,1,2003,1,, 15463,NJBF000084030,82 MILL STREET,Hamilton,NJ,39.45325313,-74.73412878,COM1,3001,,NaN,ME,1911,1911,3401,1,1,4057.441817,4057.441817,3507,NO,10.84,23.82,1,-0.33,6106,108.976336,118.557379,128.230694,132.91221,I,Above,Gable,0,NaN,,17.33136845,0,0,,,,1,1,,0.03,nav,1,1911,1,, 15464,NJBF000084063,5459 ILIFF ROAD,Hamilton,NJ,39.45395118,-74.71696163,RES1,3001,,NaN,NE,1976,1976,3102,1,1,905.2358943,905.2358943,3507,NO,20.53,27.03,1,2.18,6110,109.116903,118.747364,128.410481,133.239583,I,Above,Gable,0,5701,,23.7839948,0,0,,,,1,1,,0.35,nav,1,1976,1,, 15465,NJBF000078634,4519 CATAWBA AVENUE,Hamilton,NJ,39.40660005,-74.71664167,RES1,3001,,17,NE,1986,1986,3102,1,1,1968.206531,1968.206531,3507,NO,16.89,26.07,1,-0.41,6112,109.269869,119.117531,128.837145,133.953555,I,Above,Hip,0,5701,,21.48366822,0,0,,,,1,1,,0.35,nav,1,1986,1,, 15466,NJBF000083568,6018 DANENHAUER LANE,Hamilton,NJ,39.44735,-74.72494373,RES1,3001,,17,NE,1954,1954,3102,2,1,3488.861744,3488.861744,3507,NO,23.64,29.87,1,-0.06,6106,109.065938,118.707278,128.379975,133.179728,I,Above,Hip,0,5701,,26.75481689,0,0,,,,1,1,,0.03,nav,1,1954,2,, 15467,NJBF000084059,5801 THIRD STREET,Hamilton,NJ,39.45388114,-74.72319778,EDU1,3001,,NaN,E,1969,0,3401,2,1,78507.96212,78507.96212,3507,NO,20.41,27.55,1,-0.88,6112,109.064375,118.675963,128.343154,133.117538,I,Above,Flat,0,NaN,,23.9800374,0,0,,,,1,1,,1,nav,1,1969,2,, 15468,NJBF000083728,6133 LONGWOOD AVENUE,Hamilton,NJ,39.44929203,-74.73738275,RES1,3001,,17,NE,1900,1900,3102,2,1,650.650915,650.650915,3507,NO,24.93,31.73,1,2.29,6110,108.961205,118.552254,128.229195,132.906682,I,Above,Hip,0,5701,,28.32879165,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 15469,NJBF000083957,7 ABBOTT STREET,Hamilton,NJ,39.45250871,-74.73121412,COM1,3003,,17,ME,1967,1967,3401,2,1,882.2710891,882.2710891,3507,NO,38.89,49.67,1,1.36,6106,109.001799,118.595847,128.268222,132.980226,I,Above,Gable,0,NaN,,44.27548934,0,0,,,,1,1,,0.03,nav,1,1967,2,, 15470,NJBF000083973,7 ABBOTT STREET,Hamilton,NJ,39.45270418,-74.73113148,COM1,3003,,17,ME,1967,1967,3401,2,1,583.3652478,583.3652478,3507,NO,26.76,34.75,1,-0.95,6112,109.001972,118.595249,128.267468,132.978985,I,Above,Gable,0,NaN,,30.75496507,0,0,,,,1,1,,0.35,nav,1,1967,2,, 15471,NJBF000082312,552 GRAVELLY RUN ROAD,Hamilton,NJ,39.42889981,-74.70719786,RES1,3001,,18,NE,1989,1989,3102,2,1,3490.648364,3490.648364,3507,NO,35.21,45.89,1,1.66,6112,109.258801,119.057878,128.740586,133.808876,I,Above,Gable,0,5701,,40.54579102,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 15472,NJBF000083897,5803 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,210,NaN,NE,1969,1946,3102,1,1,2026.709984,2026.709984,3505,NO,12.1,26.81,3,-0.87,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,19.45399778,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15473,NJBF000079477,4646 MAYS LANDING SP RD,Hamilton,NJ,39.411325,-74.71654949,RES1,3001,,17,NE,1995,1995,3102,1,1,842.2387311,842.2387311,3507,NO,13.68,26.26,1,-0.96,6112,109.24919,119.082348,128.794577,133.884556,I,Above,Gable,0,5701,,19.97175456,0,1.1,,,,1,1,,0.03,nav,1,1995,1,, 15474,NJBF000083841,5720 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,219,NaN,NE,1969,1926,3102,1,1,3383.950091,3383.950091,3505,NO,9.25,23.95,3,-1.78,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,16.59804817,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15475,NJBF000079720,4664 MAYS LANDING SP RD,Hamilton,NJ,39.41247861,-74.71167608,RES1,3001,,16,NE,1900,1900,3102,1,1,1091.178982,1091.178982,3507,NO,12.26,21.28,1,1.61,6106,109.279904,119.130343,128.840287,133.965551,I,Above,Gable,0,5701,,16.76775898,0,0,,,,1,1,,0.03,nav,1,1900,1,, 15476,NJBF000082340,472 RIDGE LANE,Hamilton,NJ,39.42912191,-74.71021086,RES1,3001,,18,NE,1988,1988,3102,2,1,2978.775491,2978.775491,3507,NO,38.2,51.49,1,1.5,6112,109.234025,119.020262,128.704323,133.744999,I,Above,Hip,0,5701,,44.84225974,0,1.1,,,,1,1,,0.35,nav,1,1988,2,, 15477,NJBF000084060,6068 MAIN STREET,Hamilton,NJ,39.45390323,-74.73311801,RES1,3001,,17,NE,1880,1880,3102,2,1,610.1442233,610.1442233,3505,NO,41.1,48.68,3,8.09,6112,108.982804,118.563563,128.236054,132.922447,I,Above,Gable,0,5701,,44.89073598,0,0,,,,1,1,,0.35,nav,1,1880,2,, 15478,NJBF000083980,5736 THIRD STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1940,3102,2,1,907.9244226,907.9244226,3505,NO,35.74,44.81,3,5.88,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,40.27322249,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15479,NJBF000084376,1120 ROUTE 50,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1960,3102,1,1,1903.181378,1903.181378,3504,NO,14.15,27.62,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,20.88751462,0,0,,,,1,1,,0.35,nav,1,1970,1,, 15480,NJBF000078460,4544 MAYS LANDING SP RD,Hamilton,NJ,39.40563623,-74.71327905,IND2,3001,959,NaN,ME,1987,1987,3401,1,3,698.0340033,698.0340033,3507,NO,18.27,23.98,1,-0.33,6106,109.298333,119.163859,128.885329,134.036002,I,Above,Gable,0,NaN,,21.12318614,0,0,,,,1,1,,0.03,nav,1,1987,1,, 15481,NJBF000078478,4544 MAYS LANDING SP RD,Hamilton,NJ,39.40576185,-74.71254325,IND2,3001,959,NaN,ME,1987,1987,3401,2,3,1534.156788,1534.156788,3507,NO,27.98,37.4,1,1.51,6112,109.302983,119.171467,128.892766,134.049001,I,Above,Hip,0,NaN,,32.69364067,0,0,,,,1,1,,0.03,nav,1,1987,2,, 15482,NJBF000084074,6115 OLD HARDING HIGHWAY,Hamilton,NJ,39.454303,-74.7361075,IND4,3004,330,NaN,E,1866,1866,3401,4,1,1236.82683,1236.82683,3507,NO,51.81,57.52,1,2.53,6112,108.957679,118.527115,128.200752,132.858147,I,Above,Hip,0,NaN,,54.66548224,0,0,,,,1,1,,0.03,nav,1,1866,4,, 15483,NJBF000084157,LAKE LENAPE,Hamilton,NJ,39.45352959,-74.73906804,RES1,3001,,NaN,NE,1948,0,3102,2,1,3964.109041,3964.109041,3504,NO,25.09,30.75,-4,0,6112,108.936137,118.500438,128.175704,132.811733,I,Above,Flat,0,5701,,27.92101644,0,0,,,,1,1,,0.35,nav,1,1948,2,, 15484,NJBF000084360,LAKE LENAPE,Hamilton,NJ,39.46115083,-74.73694693,RES1,3001,,NaN,NE,1936,0,3102,2,1,5815.432619,5815.432619,3505,NO,42.56,54.38,3,5.58,6106,108.933419,118.463892,128.134853,132.741703,I,Above,Hip,0,5701,,48.46895708,0,0,,,,1,1,,0.03,nav,1,1936,2,, 15485,NJBF000084778,LAKE LENAPE,Hamilton,NJ,39.46904951,-74.73900674,RES1,3001,,NaN,NE,1971,0,3102,2,1,2240.790809,2240.790809,3505,NO,38.55,48.88,3,1.43,6112,108.897462,118.378609,128.048226,132.586917,I,Above,Gable,0,5701,,43.71511478,0,0,,,,1,1,,0.03,nav,1,1971,2,, 15486,NJBF000083303,315 OLD RIVER ROAD,Hamilton,NJ,39.44163249,-74.7206595,RES1,3001,,18,NE,2002,2002,3102,2,1,4773.04401,4773.04401,3507,NO,26.29,39.11,1,1.78,6112,109.115598,118.801103,128.476377,133.349411,I,Above,Hip,0,5701,,32.70208238,0,1.2,,,,1,1,,0.35,nav,1,2002,2,, 15487,NJBF000083314,315 OLD RIVER ROAD,Hamilton,NJ,39.44204117,-74.72056948,RES1,3001,,18,NE,2002,2002,3102,2,1,740.3044375,740.3044375,3507,NO,24.59,39.04,1,-0.18,6112,109.115246,118.798956,128.473804,133.345114,I,Above,Gable,0,5701,,31.81445888,0,1.2,,,,1,1,,0.35,nav,1,2002,2,, 15488,NJBF000083790,30 CENTRAL AVENUE,Hamilton,NJ,39.45005612,-74.73369496,RES1,3001,,17,NE,1972,1972,3102,2,1,566.4142424,566.4142424,3507,NO,36.47,50.84,1,1.92,6110,108.988322,118.587291,128.262282,132.967662,I,Above,Gable,0,5701,,43.65848777,0,1.1,,,,1,1,,0.35,nav,1,1972,2,, 15489,NJBF000083252,,Hamilton,NJ,39.4403355,-74.71963737,RES1,3001,,NaN,NE,1969,0,3102,2,1,4566.440756,4566.440756,3507,NO,32.14,39.36,1,1.81,6112,109.127305,118.823004,128.498975,133.388997,I,Above,Gable,0,5701,,35.74597755,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15490,NJBF000083817,FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,0,3102,2,1,1773.443065,1773.443065,3505,NO,27.14,32.83,3,-1.34,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,29.989725,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15491,NJBF000081579,40 CRESCENT BLVD,Hamilton,NJ,39.4204535,-74.71351849,RES1,3001,,17,NE,1970,1970,3102,1,1,592.7331897,592.7331897,3507,NO,18.37,28.43,1,0.04,6112,109.235969,119.047761,128.745591,133.80864,I,Above,Gable,0,5701,,23.40245824,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15492,NJBF000084052,6060 MAIN STREET,Hamilton,NJ,39.45363879,-74.73252552,RES1,3001,,17,NE,1890,1890,3102,2,1,809.0349852,809.0349852,3505,NO,22.81,37.61,3,-0.23,6112,108.988272,118.57226,128.244616,132.93791,I,Above,Gable,0,5701,,30.20753625,0,1.1,,,,1,1,,0.35,nav,1,1890,2,, 15493,NJBF000083694,6054 SHARON AVENUE,Hamilton,NJ,39.44888274,-74.73320745,RES1,3001,,17,NE,1988,1988,3102,2,1,1863.874474,1863.874474,3507,NO,40.52,50.01,1,2.34,6106,108.9954,118.601928,128.27745,132.994481,I,Above,Gable,0,5701,,45.26215714,0,0,,,,1,1,,0.03,nav,1,1988,2,, 15494,NJBF000083705,211 OLD RIVER ROAD,Hamilton,NJ,39.4489845,-74.7211015,RES1,3001,,NaN,NE,1981,1981,3102,1,1,881.3901926,881.3901926,3505,NO,23.94,35.57,3,5.8,6106,109.093401,118.738527,128.407848,133.231411,I,Above,Gable,0,5701,,29.75298323,0,0,,,,1,1,,0.03,nav,1,1981,1,, 15495,NJBF000079772,4672 MAYS LANDING SP RD,Hamilton,NJ,39.41277672,-74.71134534,RES1,3001,,17,NE,1975,1975,3102,2,1,1392.054914,1392.054914,3507,NO,37.68,49.82,1,1.09,6110,109.281136,119.131961,128.841359,133.967756,I,Above,Hip,0,5701,,43.74870902,0,0,,,,1,1,,0.35,nav,1,1975,2,, 15496,NJBF000081639,539 PINE NEEDLE DRIVE,Hamilton,NJ,39.42117861,-74.71221493,RES1,3001,,15,NE,1925,1925,3102,1,2,2391.323968,2391.323968,3507,NO,20.27,27.45,1,1.21,6112,109.243371,119.057526,128.753857,133.823973,I,Above,Gable,0,5701,,23.85638722,0,0,,,,1,1,,0.03,nav,1,1925,1,, 15497,NJBF000084018,6042 MAIN STREET,Hamilton,NJ,39.4531387,-74.73062531,COM1,3003,,27,ME,1890,1890,3401,3,1,2483.829937,2483.829937,3507,NO,54,65.32,1,1.44,6112,109.004972,118.59752,128.269236,132.982507,I,Above,Gable,0,NaN,,59.65616643,0,0,,,,1,1,,0.35,nav,1,1890,3,, 15498,NJBF000083294,319 OLD RIVER ROAD,Hamilton,NJ,39.44134444,-74.72008608,RES1,3001,,17,NE,1969,1969,3102,1,1,2893.266809,2893.266809,3507,NO,17.27,30.55,1,2.22,6112,109.120996,118.809965,128.485208,133.365073,I,Above,Hip,0,5701,,23.90735853,0,0,,,,1,1,,0.35,nav,1,1969,1,, 15499,NJBF000083561,238 OLD RIVER ROAD,Hamilton,NJ,39.44730364,-74.72008852,RES1,3001,,17,NE,1995,1995,3102,2,1,2635.792646,2635.792646,3505,NO,24.6,32.66,3,-1.9,6112,109.105855,118.763389,128.433423,133.276407,I,Above,Gable,0,5701,,28.62976048,0,0,,,,1,1,,0.35,nav,1,1995,2,, 15500,NJBF000083704,216 OLD RIVER ROAD,Hamilton,NJ,39.44895712,-74.72041848,RES1,3001,,NaN,NE,1936,0,3102,2,1,1237.850246,1237.850246,3505,NO,24.23,32.35,3,2.78,6110,109.099141,118.746633,128.415568,133.245355,I,Above,Flat,0,5701,,28.28623357,0,0,,,,1,1,,0.35,nav,1,1936,2,, 15501,NJBF000083102,276 CLARKSTOWN ROAD,Hamilton,NJ,39.43678462,-74.71578228,RES1,3001,,17,NE,1999,1999,3102,1,1,2691.374591,2691.374591,3507,NO,17.22,26.07,1,-0.06,6112,109.167967,118.895431,128.573029,133.518725,I,Above,Hip,0,5701,,21.64835533,0,1.2,,,,1,1,,0.35,nav,1,1999,1,, 15502,NJBF000083507,258 OLD RIVER ROAD,Hamilton,NJ,39.44614183,-74.72172728,RES1,3001,,NaN,NE,1920,0,3102,2,1,1785.789363,1785.789363,3505,NO,41.55,49.16,3,5.04,6106,109.095258,118.753596,128.425512,133.261229,I,Above,Gable,0,5701,,45.35458947,0,0,,,,1,1,,0.03,nav,1,1920,2,, 15503,NJBF000083956,6016 MAIN STREET,Hamilton,NJ,39.45249667,-74.728769,COM1,3003,738,NaN,ME,1896,1896,3401,2,1,2041.396611,2041.396611,3507,NO,38.36,43.94,1,2.37,6106,109.021714,118.623486,128.294647,133.028384,I,Above,Gable,0,NaN,,41.15235967,0,0,,,,1,1,,0.03,nav,1,1896,2,, 15504,NJBF000083911,5809 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,EDU1,3001,,17,E,1969,1900,3401,2,1,14440.01223,14440.01223,3507,NO,29.39,43.36,1,1.95,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,36.37864537,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15505,NJBF000083922,5809 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1900,3102,2,1,1096.906186,1096.906186,3505,NO,35.26,46.07,3,1.3,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,40.66532431,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15506,NJBF000080319,4704 MAYS LANDING SP RD,Hamilton,NJ,39.41468998,-74.70966932,RES1,3001,,16,NE,1920,1920,3102,1,1,691.2537827,691.2537827,3507,NO,20.1,27.66,1,2.73,6112,109.286073,119.137155,128.843023,133.972835,I,Above,Gable,0,5701,,23.8826656,0,1.2,,,,1,1,,0.35,nav,1,1920,1,, 15507,NJBF000078920,4569 CATAWBA AVENUE,Hamilton,NJ,39.40836341,-74.71609387,RES1,3001,,17,NE,1986,1986,3102,2,1,1016.589174,1016.589174,3507,NO,20.63,34.34,1,-0.92,6112,109.265593,119.110324,128.827188,133.938167,I,Above,Hip,0,5701,,27.4881906,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 15508,NJBF000078945,4569 CATAWBA AVENUE,Hamilton,NJ,39.40854438,-74.71616503,RES1,3001,,17,NE,1986,1986,3102,2,1,3748.304298,3748.304298,3507,NO,37.88,49.47,1,-0.23,6112,109.264262,119.108115,128.82469,133.934018,I,Above,Hip,0,5701,,43.67902691,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 15509,NJBF000083630,225 OLD RIVER ROAD,Hamilton,NJ,39.44816955,-74.72177684,RES1,3001,,19,NE,2001,2001,3102,1,1,3936.001089,3936.001089,3505,NO,20.78,29.44,3,7.73,6106,109.089805,118.737146,128.407482,133.230152,I,Above,Gable,0,5701,,25.11159613,0,0,,,,1,1,,0.03,nav,1,2001,1,, 15510,NJBF000083664,225 OLD RIVER ROAD,Hamilton,NJ,39.44857446,-74.72177491,RES1,3001,,19,NE,2001,2001,3102,1,1,1131.463023,1131.463023,3505,NO,24.54,32.96,3,5.6,6106,109.088833,118.734002,128.404029,133.2242,I,Above,Gable,0,5701,,28.75307867,0,0,,,,1,1,,0.03,nav,1,2001,1,, 15511,NJBF000080006,4676 MAYS LANDING SP RD,Hamilton,NJ,39.41364127,-74.70937634,RES1,3001,,17,NE,1985,1985,3102,2,1,2628.609119,2628.609119,3507,NO,35.04,45.03,1,-0.57,6112,109.292297,119.148615,128.856179,133.994539,I,Above,Hip,0,5701,,40.03377055,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 15512,NJBF000083842,6065 RELIANCE AVENUE,Hamilton,NJ,39.45003876,-74.73418205,RES1,3001,,17,NE,1977,1984,3102,1,1,1361.856748,1361.856748,3507,NO,13.44,22.19,1,0.67,6110,108.984486,118.581987,128.257197,132.958369,I,Above,Gable,0,5701,,17.81440968,0,0,,,,1,1,,0.35,nav,1,1977,1,, 15513,NJBF000083598,6044 HARDING HIGHWAY,Hamilton,NJ,39.44776726,-74.73347485,COM1,3001,569,NaN,ME,1970,1970,3401,1,1,3898.127309,3898.127309,3507,NO,15.29,26.86,1,1.41,6106,108.996345,118.60766,128.284024,133.005643,I,Above,Flat,0,NaN,,21.07462565,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15514,NJBF000083779,15 TAYLOR AVENUE,Hamilton,NJ,39.44991194,-74.72886069,RES1,3001,,17,NE,1952,1952,3103,2,1,1773.554391,1773.554391,3505,NO,46.25,51.39,3,8.67,6106,109.027551,118.642729,128.315588,133.064686,I,Above,Gable,0,5701,,48.82389343,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 15515,NJBF000083840,37 FARRAGUT AVENUE,Hamilton,NJ,39.4506302,-74.72616779,RES1,3001,,17,NE,1950,1950,3102,2,1,1971.605109,1971.605109,3505,NO,40.23,54.05,3,6.85,6112,109.047649,118.66763,128.338626,133.107085,I,Above,Gable,0,5701,,47.1407555,0,0,,,,1,1,,0.35,nav,1,1950,2,, 15516,NJBF000083851,5729 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1830,3102,3,1,1883.724814,1883.724814,3505,NO,51.14,59.2,3,5.83,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,55.16942013,0,0,,,,1,1,,0.03,nav,1,1969,3,, 15517,NJBF000083993,6034 MAIN STREET,Hamilton,NJ,39.45286758,-74.72982033,COM1,3003,,17,ME,1851,1851,3401,2,1,1681.582936,1681.582936,3507,NO,25.32,36.68,1,0.59,6112,109.012209,118.608712,128.280185,133.002286,I,Above,Gable,0,NaN,,31.00210196,0,0,,,,1,1,,0.35,nav,1,1851,2,, 15518,NJBF000083619,6004 DANENHAUER LANE,Hamilton,NJ,39.44801845,-74.72562666,RES1,3001,,18,NE,1990,1990,3102,2,1,4153.27237,4153.27237,3507,NO,26.69,39.46,1,2.09,6106,109.05867,118.694261,128.366815,133.156363,I,Above,Gable,0,5701,,33.07647382,0,0,,,,1,1,,0.03,nav,1,1990,2,, 15519,NJBF000084004,6118 OLD HARDING HIGHWAY,Hamilton,NJ,39.45300436,-74.736145,RES1,3001,,27,NE,1900,1900,3102,3,1,1487.898111,1487.898111,3505,NO,37.14,45.82,3,-0.22,6106,108.960831,118.536901,128.211239,132.876457,I,Above,Hip,0,5701,,41.48017752,0,0,,,,1,1,,0.03,nav,1,1900,3,, 15520,NJBF000083352,293 OLD RIVER ROAD,Hamilton,NJ,39.44289067,-74.72200251,RES1,3001,959,17,NE,1950,1950,3102,2,1,1094.015422,1094.015422,3507,NO,30.35,45.2,1,1.11,6106,109.101398,118.775806,128.450636,133.304036,I,Above,Flat,0,5701,,37.77371621,0,0,,,,1,1,,0.03,nav,1,1950,2,, 15521,NJBF000083699,16 CENTRAL AVENUE,Hamilton,NJ,39.448922,-74.733702,RES1,3001,,17,NE,1988,1988,3102,1,1,1614.067351,1614.067351,3507,NO,19.6,33.6,1,2.57,6112,108.991356,118.59609,128.271796,132.984198,I,Above,Flat,0,5701,,26.60313726,0,0,,,,1,1,,0.35,nav,1,1988,1,, 15522,NJBF000078289,4504 CATAWBA AVENUE-REAR,Hamilton,NJ,39.40446036,-74.7167901,RES1,3001,,16,NE,1962,1962,3102,1,1,1165.722932,1165.722932,3507,NO,15.7,25.42,1,-0.8,6106,109.279157,119.132281,128.855264,133.982672,I,Above,Gable,0,5701,,20.55925298,0,0,,,,1,1,,0.03,nav,1,1962,1,, 15523,NJBF000083602,6009 DANENHAUER LANE,Hamilton,NJ,39.44780948,-74.72640331,RES1,3001,,17,NE,1962,1962,3102,1,1,2997.068658,2997.068658,3507,NO,12.85,25.24,1,1.87,6106,109.052909,118.687064,128.360168,133.144149,I,Above,Hip,0,5701,,19.04504921,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 15524,NJBF000083866,5728 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1930,3102,2,1,1213.088856,1213.088856,3505,NO,30.05,43.39,3,6.34,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,36.72101385,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15525,NJBF000082021,504 SUN PINE DRIVE,Hamilton,NJ,39.42562564,-74.71106932,RES1,3001,,16,NE,1936,1936,3102,1,1,1441.500389,1441.500389,3507,NO,17.54,24.28,1,2.24,6106,109.23771,119.036967,128.726331,133.78025,I,Above,Gable,0,5701,,20.91259542,0,0,,,,1,1,,0.03,nav,1,1936,1,, 15526,NJBF000083967,16 ABBOTT STREET,Hamilton,NJ,39.45265194,-74.73056582,COM1,3003,,17,ME,1957,1957,3401,2,1,1116.749044,1116.749044,3507,NO,23.63,36.15,1,0.28,6110,109.006689,118.602009,128.273982,132.99083,I,Above,Gable,0,NaN,,29.8888462,0,0,,,,1,1,,0.35,nav,1,1957,2,, 15527,NJBF000083976,15 ABBOTT STREET,Hamilton,NJ,39.4527265,-74.730898,COM1,3003,,17,ME,1920,1920,3401,2,1,624.2408033,624.2408033,3507,NO,29.88,41.6,1,0.99,6110,109.003806,118.597694,128.269787,132.98323,I,Above,Hip,0,NaN,,35.73633827,0,0,,,,1,1,,0.35,nav,1,1920,2,, 15528,NJBF000081008,,Hamilton,NJ,39.41720582,-74.71387145,RES1,3001,,NaN,NE,1984,0,3102,2,1,1728.428287,1728.428287,3507,NO,37.5,46.02,1,2.68,6110,109.245144,119.068487,128.77131,133.850279,I,Above,Hip,0,5701,,41.75950064,0,0,,,,1,1,,0.35,nav,1,1984,2,, 15529,NJBF000084009,6038 MAIN STREET,Hamilton,NJ,39.45305223,-74.73012495,COM1,3003,,17,ME,1869,1869,3401,2,1,992.6053669,992.6053669,3507,NO,40.14,51.84,1,2.39,6112,109.009261,118.60383,128.275348,132.993594,I,Above,Flat,0,NaN,,45.99102119,0,0,,,,1,1,,0.35,nav,1,1869,2,, 15530,NJBF000079021,4604 CATAWBA AVENUE,Hamilton,NJ,39.4090627,-74.71599372,RES1,3001,,17,NE,1970,1970,3102,1,1,4335.170379,4335.170379,3507,NO,16.8,28.46,1,0.81,6106,109.263145,119.106113,128.821872,133.929682,I,Above,Flat,0,5701,,22.6298547,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15531,NJBF000083444,282 OLD RIVER ROAD,Hamilton,NJ,39.444485,-74.721564,RES1,3001,,17,NE,1978,1978,3102,2,1,612.1789462,612.1789462,3505,NO,40.59,47.25,3,6.95,6112,109.100806,118.768421,128.441631,133.289059,I,Above,Gable,0,5701,,43.92283775,0,0,,,,1,1,,0.35,nav,1,1978,2,, 15532,NJBF000082368,476 RIDGE LANE,Hamilton,NJ,39.42930495,-74.70993165,RES1,3001,,18,NE,1987,1987,3102,2,1,3125.421012,3125.421012,3507,NO,35.82,44.89,1,2.7,6112,109.235726,119.022166,128.705829,133.747853,I,Above,Gable,0,5701,,40.35629089,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 15533,NJBF000083676,11 CENTRAL AVENUE,Hamilton,NJ,39.44871164,-74.73423165,RES1,3001,,17,NE,1988,1988,3102,1,1,1998.906767,1998.906767,3507,NO,15.43,20.79,1,1.36,6112,108.987725,118.591816,128.267875,132.976894,I,Above,Hip,0,5701,,18.11073918,0,0,,,,1,1,,0.35,nav,1,1988,1,, 15534,NJBF000084095,166 OLD EGG HARBOR ROAD,Hamilton,NJ,39.4547876,-74.7173808,RES1,3001,,17,NE,1960,1960,3102,1,1,2357.701287,2357.701287,3507,NO,17.72,28.29,1,0.33,6106,109.111517,118.735882,128.398739,133.218878,I,Above,Gable,0,5701,,23.00610962,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15535,NJBF000083831,5714 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,1940,3102,1,1,657.7296627,657.7296627,3505,NO,12.25,25.07,3,-1.3,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,18.65961892,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15536,NJBF000082118,524 WILLOW OAK DRIVE,Hamilton,NJ,39.42668034,-74.70619433,RES1,3001,,17,NE,1960,1960,3102,1,1,2549.681273,2549.681273,3507,NO,16.35,25.2,1,-0.93,6112,109.273136,119.086969,128.772335,133.86248,I,Above,Hip,0,5701,,20.77568715,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 15537,NJBF000083117,100 POST ROAD,Hamilton,NJ,39.43727649,-74.7175535,RES1,3001,510,NaN,NE,1975,1975,3102,2,1,708.2143745,708.2143745,3507,NO,40.18,45.31,1,2.39,6106,109.152365,118.870964,128.548967,133.476082,I,Above,Gable,0,5701,,42.74861424,0,0,,,,1,1,,0.03,nav,1,1975,2,, 15538,NJBF000082319,548 GRAVELLY RUN ROAD,Hamilton,NJ,39.42896421,-74.70772359,RES1,3001,,18,NE,1986,1986,3102,2,1,2838.35361,2838.35361,3507,NO,37.72,50.11,1,2.65,6112,109.254389,119.051095,128.734014,133.797338,I,Above,Gable,0,5701,,43.9187124,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 15539,NJBF000083864,41 FARRAGUT AVENUE,Hamilton,NJ,39.45084349,-74.72608353,RES1,3001,,17,NE,1945,1945,3102,2,1,1496.205075,1496.205075,3505,NO,41.53,53.67,3,8.05,6112,109.047806,118.666914,128.337722,133.105593,I,Above,Gable,0,5701,,47.59566257,0,0,,,,1,1,,1,nav,1,1945,2,, 15540,NJBF000083870,41 FARRAGUT AVENUE,Hamilton,NJ,39.45090824,-74.72633891,RES1,3001,,17,NE,1945,1945,3102,2,1,774.8165317,774.8165317,3505,NO,33.53,44.37,3,6.3,6112,109.045555,118.663504,128.334405,133.099611,I,Above,Gable,0,5701,,38.94967077,0,0,,,,1,1,,1,nav,1,1945,2,, 15541,NJBF000080587,355 PENNY LANE,Hamilton,NJ,39.41554917,-74.71211356,RES1,3001,,16,NE,1954,1954,3102,2,1,2838.798451,2838.798451,3507,NO,26.12,37.72,1,2.65,6110,109.264547,119.101762,128.806791,133.910572,I,Above,Gable,0,5701,,31.92151803,0,0,,,,1,1,,0.35,nav,1,1954,2,, 15542,NJBF000083979,5730 THIRD STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1962,3102,1,1,1079.253733,1079.253733,3505,NO,20,30.72,3,4.88,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,25.36226621,0,0,,,,1,1,,0.35,nav,1,1969,1,, 15543,NJBF000079815,4672 MAYS LANDING SP RD,Hamilton,NJ,39.41296683,-74.71133699,RES1,3001,,17,NE,1975,1975,3102,2,1,569.7474951,569.7474951,3507,NO,28.57,33.69,1,-0.42,6110,109.280431,119.130606,128.839688,133.965061,I,Above,Gable,0,5701,,31.12720949,0,0,,,,1,1,,0.35,nav,1,1975,2,, 15544,NJBF000082373,428 HIGHLAND DRIVE,Hamilton,NJ,39.42934171,-74.71377945,RES1,3001,,19,NE,1993,1993,3102,2,1,3302.63024,3302.63024,3507,NO,36.16,46.33,1,2.24,6112,109.205088,118.976438,128.661967,133.670131,I,Above,Gable,0,5701,,41.24089677,0,0,,,,1,1,,0.03,nav,1,1993,2,, 15545,NJBF000083656,7 CENTRAL AVENUE,Hamilton,NJ,39.44847562,-74.73421073,RES1,3001,,17,NE,1965,1965,3102,1,1,2412.527316,2412.527316,3507,NO,14.81,22.05,1,-0.78,6112,108.988545,118.593896,128.270098,132.980776,I,Above,Flat,0,5701,,18.43255439,0,0,,,,1,1,,0.35,nav,1,1965,1,, 15546,NJBF000083396,283 OLD RIVER ROAD,Hamilton,NJ,39.44345283,-74.72216392,RES1,3001,,17,NE,1790,1790,3102,2,2,1502.693129,1502.693129,3507,NO,34.84,41.49,1,-0.25,6112,109.098615,118.769571,128.443991,133.292497,I,Above,Gable,0,5701,,38.1641118,0,0,,,,1,1,,0.03,nav,1,1790,2,, 15547,NJBF000083368,283 OLD RIVER ROAD,Hamilton,NJ,39.44308842,-74.7218333,RES1,3001,,17,NE,1790,1790,3102,2,2,585.7031621,585.7031621,3507,NO,34.49,49.28,1,1.32,6110,109.102254,118.776225,128.450793,133.304479,I,Above,Gable,0,5701,,41.88621531,0,0,,,,1,1,,0.35,nav,1,1790,2,, 15548,NJBF000082349,460 HIGHLAND DRIVE,Hamilton,NJ,39.42920894,-74.71134974,RES1,3001,,18,NE,1986,1986,3102,2,1,1612.035167,1612.035167,3507,NO,27.51,40.84,1,2.26,6112,109.224706,119.006098,128.690627,133.720832,I,Above,Gable,0,5701,,34.17474263,0,0,,,,1,1,,0.35,nav,1,1986,2,, 15549,NJBF000084038,6052 MAIN STREET,Hamilton,NJ,39.45339944,-74.73154052,COM1,3003,,17,ME,1890,1890,3401,2,1,2306.681637,2306.681637,3507,NO,27.28,36.1,1,0.66,6112,108.99687,118.585186,128.257203,132.960729,I,Above,Flat,0,NaN,,31.68985849,0,1.1,,,,1,1,,0.35,nav,1,1890,2,, 15550,NJBF000083711,5914 ROUTE 617,Hamilton,NJ,39.448669,-74.7283015,IND2,3001,510,NaN,ME,1952,1952,3401,1,1,3291.581984,3291.581984,3507,NO,10.84,19.35,1,0.22,6106,109.035305,118.658788,128.332219,133.094028,I,Above,Flat,0,5701,,15.09761371,0,0,,,,1,1,,0.03,nav,1,1952,1,, 15551,NJBF000083461,266 OLD RIVER ROAD,Hamilton,NJ,39.44513359,-74.72146457,RES1,3001,,17,NE,1926,1926,3102,2,1,1308.987226,1308.987226,3505,NO,27.42,41.57,3,0.8,6112,109.099953,118.764492,128.437098,133.281382,I,Above,Gable,0,5701,,34.4923003,0,0,,,,1,1,,0.35,nav,1,1926,2,, 15552,NJBF000079758,4654 MAYS LANDING SP RD,Hamilton,NJ,39.41272399,-74.71655799,RES1,3001,,NaN,NE,1886,1886,3102,1,1,571.9075855,571.9075855,3507,NO,13.59,24.35,1,0.03,6112,109.243171,119.071519,128.781599,133.863395,I,Above,Gable,0,5701,,18.96989202,0,0,,,,1,1,,1,nav,1,1886,1,, 15553,NJBF000083889,5749 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,59,NaN,NE,1969,1946,3102,1,1,1285.428878,1285.428878,3505,NO,19.82,30.57,3,7.84,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,25.19488595,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15554,NJBF000084007,6040 MAIN STREET,Hamilton,NJ,39.45303398,-74.73033875,COM1,3003,,17,ME,1942,1942,3401,2,1,1515.098614,1515.098614,3507,NO,39.38,48.36,1,2.92,6110,109.007564,118.601563,128.273198,132.989661,I,Above,Hip,0,NaN,,43.86956743,0,0,,,,1,1,,0.35,nav,1,1942,2,, 15555,NJBF000083733,6053 SHARON AVENUE,Hamilton,NJ,39.44933704,-74.7331752,RES1,3001,,17,NE,1981,1981,3102,1,1,2122.157835,2122.157835,3507,NO,18.78,28.14,1,2.61,6110,108.994419,118.598732,128.273951,132.98843,I,Above,Gable,0,5701,,23.45877172,0,0,,,,1,1,,0.35,nav,1,1981,1,, 15556,NJBF000083004,294 CLARKSTOWN ROAD,Hamilton,NJ,39.43582699,-74.71571629,RES1,3001,,16,NE,1953,1953,3102,1,1,2549.873361,2549.873361,3507,NO,18.18,33.16,1,0.34,6112,109.171103,118.903629,128.582258,133.534356,I,Above,Gable,0,5701,,25.66898529,0,0,,,,1,1,,0.35,nav,1,1953,1,, 15557,NJBF000083182,363 OLD RIVER ROAD,Hamilton,NJ,39.43901401,-74.71900246,RES1,3001,,17,NE,1980,1980,3102,2,1,1588.624948,1588.624948,3507,NO,35.01,45.46,1,2.4,6112,109.135979,118.840639,128.517587,133.421315,I,Above,Gable,0,5701,,40.23307074,0,0,,,,1,1,,0.03,nav,1,1980,2,, 15558,NJBF000082069,536 WILLOW OAK DRIVE,Hamilton,NJ,39.42620841,-74.70481352,RES1,3001,,18,NE,1995,1995,3102,2,1,2668.92859,2668.92859,3507,NO,37.27,51.87,1,2.14,6112,109.285544,119.107186,128.792475,133.897388,I,Above,Hip,0,5701,,44.57075695,0,0,,,,1,1,,0.35,nav,1,1995,2,, 15559,NJBF000083810,20 TAYLOR AVENUE,Hamilton,NJ,39.45028006,-74.72846926,RES1,3001,,17,NE,1900,1900,3103,2,1,1620.360275,1620.360275,3505,NO,30.05,42.98,3,-2.47,6112,109.02978,118.644276,128.316697,133.066967,I,Above,Gable,0,5701,,36.51612336,0,0,,,,1,1,,0.35,nav,1,1900,2,, 15560,NJBF000083923,5735 SECOND STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1981,3102,2,1,840.624564,840.624564,3505,NO,26.2,40.91,3,0.57,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,33.55769005,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 15561,NJBF000083577,8 ROUTE 50,Hamilton,NJ,39.44752561,-74.73522185,COM1,3001,110,NaN,ME,1998,1998,3401,1,1,3250.983727,3250.983727,3507,NO,15.72,27.51,1,0.11,6112,108.983214,118.590056,128.267272,132.974921,I,Above,Hip,0,NaN,,21.61667233,0,0,,,,1,1,,1,nav,1,1998,1,, 15562,NJBF000083966,6026 MAIN STREET,Hamilton,NJ,39.45264526,-74.72915616,COM1,3003,738,NaN,ME,1916,1916,3401,2,1,1728.074875,1728.074875,3507,NO,39.04,50.09,1,0.79,6106,109.018184,118.617953,128.289222,133.018604,I,Above,Hip,0,NaN,,44.56509885,0,0,,,,1,1,,0.03,nav,1,1916,2,, 15563,NJBF000084053,6062 MAIN STREET,Hamilton,NJ,39.453667,-74.7326105,RES1,3001,,17,NE,1910,1910,3102,2,1,689.847173,689.847173,3505,NO,34.58,42.02,3,7.04,6112,108.987512,118.571089,128.24347,132.935835,I,Above,Gable,0,5701,,38.30003419,0,1.2,,,,1,1,,0.35,nav,1,1910,2,, 15564,NJBF000084058,6062 MAIN STREET,Hamilton,NJ,39.45387689,-74.7325762,RES1,3001,,17,NE,1910,1910,3102,2,1,1521.65616,1521.65616,3505,NO,32.59,42.75,3,7.52,6112,108.987257,118.569831,128.242078,132.933436,I,Above,Hip,0,5701,,37.67187647,0,1.2,,,,1,1,,0.35,nav,1,1910,2,, 15565,NJBF000082941,100 POST ROAD,Hamilton,NJ,39.43522949,-74.71895899,RES1,3001,510,16,NE,1962,1962,3102,1,1,1148.282535,1148.282535,3507,NO,16.79,28.82,1,1.15,6112,109.146864,118.870502,128.551406,133.478601,I,Above,Gable,0,5701,,22.80511613,0,0,,,,1,1,,0.03,nav,1,1962,1,, 15566,NJBF000083076,100 POST ROAD,Hamilton,NJ,39.43641,-74.718371,RES1,3001,510,16,NE,1962,1962,3102,1,1,8513.813643,8513.813643,3507,NO,18.01,25.03,1,1.07,6106,109.148202,118.868172,128.547515,133.472702,I,Above,Flat,0,5701,,21.52253511,0,0,,,,1,1,,0.03,nav,1,1962,1,, 15567,NJBF000082996,100 POST ROAD,Hamilton,NJ,39.43579449,-74.718335,RES1,3001,510,16,NE,1962,1962,3102,1,1,1417.472051,1417.472051,3507,NO,19.9,29.39,1,2.75,6106,109.150221,118.873365,128.553356,133.482609,I,Above,Flat,0,5701,,24.6447272,0,0,,,,1,1,,0.03,nav,1,1962,1,, 15568,NJBF000083553,23 ROUTE 50,Hamilton,NJ,39.44717061,-74.73630096,RES1,3001,,16,NE,1948,1948,3102,1,1,2636.879821,2636.879821,3505,NO,19.27,28.72,3,2.2,6112,108.975741,118.580834,128.258686,132.958991,I,Above,Gable,0,5701,,23.99914498,0,1.2,,,,1,1,,0.35,nav,1,1948,1,, 15569,NJBF000083945,65 MILL STREET,Hamilton,NJ,39.45235276,-74.73543778,RES1,3001,,17,NE,1900,1900,3102,3,1,1698.828398,1698.828398,3505,NO,52.45,66.64,3,2.84,6110,108.968222,118.549862,128.224255,132.899817,I,Above,Gable,0,5701,,59.54417557,0,1.2,,,,1,1,,0.35,nav,1,1900,3,, 15570,NJBF000083933,61 MILL STREET,Hamilton,NJ,39.4521065,-74.7356815,RES1,3001,,17,NE,1900,1900,3102,3,2,1202.937411,1202.937411,3505,NO,61.41,75.93,3,3.68,6112,108.966944,118.549098,128.223732,132.898689,I,Above,Gable,0,5701,,68.67173109,0,1.1,,,,1,1,,0.35,nav,1,1900,3,, 15571,NJBF000082179,5009 MAYS LANDING SP RD,Hamilton,NJ,39.42748536,-74.70241164,RES1,3001,,17,NE,1983,1983,3102,1,1,2639.717338,2639.717338,3507,NO,18.01,26.88,1,-0.67,6106,109.301446,119.126432,128.808287,133.926567,I,Above,Gable,0,5701,,22.44469989,0,0,,,,1,1,,0.03,nav,1,1983,1,, 15572,NJBF000083571,6019 DANENHAUER LANE,Hamilton,NJ,39.44743775,-74.72670624,RES1,3001,,NaN,NE,1969,0,3102,2,1,4145.694256,4145.694256,3507,NO,37.61,48.44,1,0.02,6112,109.051421,118.686523,128.360051,133.14366,I,Above,Gable,0,5701,,43.02714154,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15573,NJBF000083939,129 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,0,3102,1,1,1510.319962,1510.319962,3505,NO,17.93,32.89,3,4.51,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,25.40948525,0,0,,,,1,1,,0.35,nav,1,1969,1,, 15574,NJBF000083968,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45267419,-74.74302837,RES3C,3001,29,NaN,ME,1971,1971,3301,2,1,3716.100164,3716.100164,3507,NO,29.48,35.03,1,-0.92,6112,108.907317,118.463685,128.140838,132.747172,I,Above,Gable,0,5701,,32.25460236,0,0,,,,1,1,,0.35,nav,1,1971,2,, 15575,NJBF000083988,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45282558,-74.74387071,RES3C,3001,29,NaN,ME,1971,1971,3301,2,1,2127.295737,2127.295737,3507,NO,37.6,44.89,1,0.78,6112,108.900293,118.453293,128.130659,132.72858,I,Above,Gable,0,5701,,41.24443528,0,0,,,,1,1,,0.35,nav,1,1971,2,, 15576,NJBF000083963,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45260186,-74.74394341,RES3C,3001,29,NaN,ME,1971,1971,3301,2,1,1828.813908,1828.813908,3507,NO,25.38,38.68,1,0.77,6112,108.900372,118.454262,128.131758,132.730446,I,Above,Gable,0,5701,,32.03000595,0,0,,,,1,1,,0.35,nav,1,1971,2,, 15577,NJBF000084022,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45316919,-74.7432694,RES3C,3001,29,NaN,ME,1971,1971,3301,2,1,3737.092822,3737.092822,3507,NO,28.69,37.22,1,2.16,6112,108.904026,118.457175,128.134174,132.735273,I,Above,Gable,0,5701,,32.95798247,0,0,,,,1,1,,0.35,nav,1,1971,2,, 15578,NJBF000083940,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45229499,-74.74471116,RES1,3001,29,NaN,NE,1971,1971,3102,2,1,1692.359864,1692.359864,3507,NO,34.3,48.33,1,2.61,6112,108.895271,118.448299,128.126192,132.720008,I,Above,Gable,0,5701,,41.31669181,0,0,,,,1,1,,0.7,nav,1,1971,2,, 15579,NJBF000083928,6200 OLD HARDING HIGHWAY,Hamilton,NJ,39.45204966,-74.74413671,RES1,3001,29,NaN,NE,1971,1971,3102,2,1,1867.906996,1867.906996,3507,NO,30.81,40.95,1,2.35,6112,108.900447,118.45647,128.134294,132.734723,I,Above,Gable,0,5701,,35.87981331,0,0,,,,1,1,,0.7,nav,1,1971,2,, 15580,NJBF000084047,,Hamilton,NJ,39.45352959,-74.73906804,RES1,3001,,NaN,NE,1948,0,3102,2,1,2540.282863,2540.282863,3504,NO,32.5,41.24,-4,0,6110,108.936137,118.500438,128.175704,132.811733,I,Above,Flat,0,5701,,36.86849651,0,0,,,,1,1,,0.35,nav,1,1948,2,, 15581,NJBF000078792,4555 CATAWBA AVENUE,Hamilton,NJ,39.40757786,-74.71646745,RES1,3001,,16,NE,1979,1979,3102,1,1,1715.847061,1715.847061,3507,NO,15.85,26.04,1,1.32,6112,109.266535,119.112039,128.830123,133.942415,I,Above,Hip,0,5701,,20.94604749,0,0,,,,1,1,,0.03,nav,1,1979,1,, 15582,NJBF000082225,544 GRAVELLY RUN ROAD,Hamilton,NJ,39.42804163,-74.70884315,RES1,3001,,18,NE,1986,1986,3102,2,1,4725.234008,4725.234008,3507,NO,34.8,43.6,1,1.1,6106,109.248051,119.044835,128.729672,133.788702,I,Above,Gable,0,5701,,39.20016703,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 15583,NJBF000084065,6115 OLD HARDING HIGHWAY,Hamilton,NJ,39.4540115,-74.736137,IND4,3004,330,NaN,E,1866,1866,3401,4,1,7572.593525,7572.593525,3507,NO,75.78,83.4,1,2.49,6106,108.958215,118.529078,128.202879,132.861844,I,Above,Flat,0,NaN,,79.59043393,0,0,,,,1,1,,0.03,nav,1,1866,4,, 15584,NJBF000083882,5736 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,565,NaN,NE,1969,1850,3102,2,1,2334.274183,2334.274183,3505,NO,38.21,51.93,3,8.29,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,45.0703484,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15585,NJBF000082090,504 WILLOW OAK DRIVE,Hamilton,NJ,39.42636546,-74.70862956,RES1,3001,,19,NE,2003,2003,3102,2,1,3298.286661,3298.286661,3507,NO,28.54,37.3,1,2.67,6112,109.254664,119.060255,128.747387,133.818189,I,Above,Hip,0,5701,,32.92004448,0,1.2,,,,1,1,,0.35,nav,1,2003,2,, 15586,NJBF000083904,52 MILL STREET,Hamilton,NJ,39.45152096,-74.73552517,RES1,3001,,17,NE,1950,1950,3102,1,2,2237.070449,2237.070449,3505,NO,21.36,29.1,3,4.41,6112,108.969766,118.555418,128.230317,132.91032,I,Above,Gable,0,5701,,25.23337165,0,0,,,,1,1,,0.35,nav,1,1950,1,, 15587,NJBF000079116,4612 MAYS LANDING SP RD,Hamilton,NJ,39.40963521,-74.7158491,RES1,3001,,NaN,NE,1900,1900,3102,1,1,7825.031669,7825.031669,3507,NO,18.66,25.19,1,2.25,6112,109.261634,119.103407,128.818264,133.924025,I,Above,Hip,0,5701,,21.92295248,0,0,,,,1,1,,0.35,nav,1,1900,1,, 15588,NJBF000082314,,Hamilton,NJ,39.42891769,-74.71202698,RES1,3001,,NaN,NE,1998,0,3102,2,1,2811.611769,2811.611769,3507,NO,32.13,39.92,1,0.35,6112,109.220191,119.000338,128.685594,133.711614,I,Above,Hip,0,5701,,36.0290114,0,0,,,,1,1,,0.35,nav,1,1998,2,, 15589,NJBF000083642,6000 DANENHAUER LANE,Hamilton,NJ,39.44832125,-74.72588969,RES1,3001,,18,NE,1960,1960,3102,1,1,4374.333502,4374.333502,3507,NO,13.52,24.14,1,1.06,6106,109.055755,118.688894,128.361361,133.146694,I,Above,Hip,0,5701,,18.82875858,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 15590,NJBF000083845,6069 RELIANCE AVENUE,Hamilton,NJ,39.45003876,-74.73418205,RES1,3001,,17,NE,1977,1982,3102,1,1,1009.507981,1009.507981,3507,NO,18.68,26.51,1,0.41,6112,108.984486,118.581987,128.257197,132.958369,I,Above,Gable,0,5701,,22.59249602,0,0,,,,1,1,,0.35,nav,1,1977,1,, 15591,NJBF000083917,5725 SECOND STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1964,3102,1,1,2814.973581,2814.973581,3505,NO,14.41,19.8,3,3.54,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,17.10488083,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15592,NJBF000083554,6033 DANENHAUER LANE,Hamilton,NJ,39.44717592,-74.72759884,RES1,3001,,18,NE,1991,1991,3102,2,1,3085.485839,3085.485839,3507,NO,26.56,39.45,1,0.28,6106,109.044902,118.678435,128.352593,133.129928,I,Above,Gable,0,5701,,33.00655425,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 15593,NJBF000082065,540 WILLOW OAK DRIVE,Hamilton,NJ,39.42619145,-74.70417021,RES1,3001,,17,NE,2001,2001,3102,2,1,3519.736379,3519.736379,3507,NO,35.56,40.6,1,0.59,6112,109.290767,119.115083,128.80002,133.910626,I,Above,Gable,0,5701,,38.08375552,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 15594,NJBF000080125,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41400777,-74.71534773,RES1,3001,,NaN,NE,1971,1971,3102,2,1,1169.98614,1169.98614,3507,NO,23.2,32.35,1,1.46,6110,109.246714,119.075728,128.783723,133.868515,I,Above,Gable,0,5701,,27.77443086,0,0,,,,1,1,,1,nav,1,1971,2,, 15595,NJBF000080051,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41377099,-74.71510033,RES1,3001,,NaN,NE,1971,1971,3102,2,1,3959.202272,3959.202272,3507,NO,31.09,41.91,1,-0.79,6112,109.249497,119.080428,128.788761,133.877068,I,Above,Hip,0,5701,,36.49933872,0,0,,,,1,1,,1,nav,1,1971,2,, 15596,NJBF000079983,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41356718,-74.71485417,RES1,3001,,NaN,NE,1971,1971,3102,2,1,2969.054713,2969.054713,3507,NO,25.84,39.01,1,1.75,6112,109.252133,119.084853,128.793475,133.885088,I,Above,Gable,0,5701,,32.42498574,0,0,,,,1,1,,1,nav,1,1971,2,, 15597,NJBF000083898,5745 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1900,3102,1,3,854.5638964,854.5638964,3505,NO,20.35,32.97,3,4.83,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,26.66200344,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15598,NJBF000084000,6110 OLD HARDING HIGHWAY,Hamilton,NJ,39.45298018,-74.73580706,RES1,3001,,17,NE,1900,1900,3102,2,1,909.2663194,909.2663194,3505,NO,33.58,42.15,3,7.63,6106,108.963597,118.540843,128.215049,132.883411,I,Above,Flat,0,5701,,37.86455321,0,0,,,,1,1,,0.03,nav,1,1900,2,, 15599,NJBF000083171,367 OLD RIVER ROAD,Hamilton,NJ,39.43886347,-74.71843366,RES1,3001,,18,NE,1988,1988,3102,2,1,2198.392197,2198.392197,3507,NO,36.97,49.78,1,1.66,6112,109.140964,118.848402,128.525208,133.434868,I,Above,Gable,0,5701,,43.37714894,0,0,,,,1,1,,0.35,nav,1,1988,2,, 15600,NJBF000083701,6137 LONGWOOD AVENUE,Hamilton,NJ,39.44892637,-74.73737124,RES1,3001,,16,NE,1975,1975,3102,1,1,1215.797121,1215.797121,3507,NO,19.33,32.41,1,0.02,6110,108.962334,118.555249,128.232405,132.912284,I,Above,Flat,0,5701,,25.86909089,0,0,,,,1,1,,0.35,nav,1,1975,1,, 15601,NJBF000081561,48 CRESCENT BLVD,Hamilton,NJ,39.42021397,-74.71356619,RES1,3001,,17,NE,2003,2003,3102,2,1,3048.667598,3048.667598,3507,NO,34.82,43.03,1,2.77,6112,109.236452,119.049036,128.747237,133.811276,I,Above,Gable,0,5701,,38.92659653,0,0,,,,1,1,,0.03,nav,1,2003,2,, 15602,NJBF000083752,25 CENTRAL AVENUE,Hamilton,NJ,39.44957596,-74.73417584,RES1,3001,,17,NE,1957,1957,3102,1,1,2036.485133,2036.485133,3507,NO,13.84,24.45,1,-0.48,6112,108.985795,118.585679,128.261172,132.965291,I,Above,Gable,0,5701,,19.14534694,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 15603,NJBF000083959,206 LINWOOD AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1942,3102,2,1,1181.842289,1181.842289,3505,NO,28.45,41.08,3,2.53,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,34.76803193,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15604,NJBF000083948,206 LINWOOD AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1942,3102,2,1,658.0757497,658.0757497,3505,NO,40.01,45.04,3,1.63,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,42.52621933,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15605,NJBF000083809,32 CENTRAL AVENUE,Hamilton,NJ,39.4502733,-74.73364586,RES1,3001,,17,NE,1972,1972,3102,2,1,2437.189609,2437.189609,3507,NO,30.95,43.02,1,0.85,6106,108.988127,118.586138,128.260976,132.965433,I,Above,Gable,0,5701,,36.98654574,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 15606,NJBF000084067,6066 MAIN STREET,Hamilton,NJ,39.45405745,-74.7328984,RES1,3001,738,NaN,NE,1916,1916,3102,1,1,1622.848139,1622.848139,3505,NO,14.38,24.73,3,2.21,6112,108.984188,118.564813,128.237116,132.924491,I,Above,Gable,0,5701,,19.55812696,0,0,,,,1,1,,0.35,nav,1,1916,1,, 15607,NJBF000083635,1 CAMAC AVENUE,Hamilton,NJ,39.44820777,-74.7351839,RES1,3001,739,NaN,NE,1954,1954,3102,1,1,1977.126342,1977.126342,3507,NO,20.49,30.48,1,2.79,6112,108.981593,118.585148,128.261911,132.965642,I,Above,Gable,0,5701,,25.48407818,0,1.2,,,,1,1,,0.35,nav,1,1954,1,, 15608,NJBF000083935,5745 SECOND STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1958,3102,1,1,1263.768888,1263.768888,3505,NO,13.97,24.99,3,1.08,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,19.48047081,0,0,,,,1,1,,0.35,nav,1,1969,1,, 15609,NJBF000083852,105 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1952,3102,2,1,1335.774335,1335.774335,3505,NO,22.51,33.7,3,-1.25,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,28.10807514,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15610,NJBF000083869,40 FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,0,3102,5,1,9578.336433,9578.336433,3505,NO,97.67,107.13,3,5.86,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,102.4035959,0,0,,,,1,1,,0.35,nav,1,1969,5,, 15611,NJBF000083333,301 OLD RIVER ROAD,Hamilton,NJ,39.44244515,-74.72111289,RES1,3001,959,NaN,NE,1920,1920,3102,1,1,3121.389614,3121.389614,3507,NO,13.23,23.59,1,0.73,6112,109.109776,118.789531,128.464298,133.328312,I,Above,Flat,0,5701,,18.40856113,0,0,,,,1,1,,0.35,nav,1,1920,1,, 15612,NJBF000083998,78 MILL STREET,Hamilton,NJ,39.45293202,-74.73420559,COM1,3001,738,NaN,ME,1886,1886,3401,1,1,1457.343575,1457.343575,3507,NO,18.38,24.18,1,2.45,6106,108.97656,118.55904,128.232568,132.915414,I,Above,Flat,0,NaN,,21.27906812,0,0,,,,1,1,,0.03,nav,1,1886,1,, 15613,NJBF000083770,5704 MAYS LANDING SP RD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,283,NaN,NE,1969,1846,3102,3,1,2640.799661,2640.799661,3505,NO,40.04,51.56,3,6.84,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,45.80155299,0,0,,,,1,1,,0.35,nav,1,1969,3,, 15614,NJBF000082073,501 WILLOW OAK DRIVE,Hamilton,NJ,39.42623525,-74.71007299,RES1,3001,,18,NE,1990,1990,3102,2,1,3810.565671,3810.565671,3507,NO,36.9,44.41,1,1.96,6110,109.243658,119.044093,128.732125,133.791125,I,Above,Gable,0,5701,,40.65282815,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 15615,NJBF000084308,1100 ROUTE 50,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,NaN,NE,1970,1966,3102,1,1,2626.256783,2626.256783,3504,NO,17.98,31.76,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,24.8667267,0,0,,,,1,1,,0.35,nav,1,1970,1,, 15616,NJBF000083653,8 CAMAC AVENUE,Hamilton,NJ,39.44843005,-74.73467471,RES1,3001,,17,NE,1953,1953,3102,1,1,1652.38933,1652.38933,3507,NO,13.26,20.69,1,1.02,6112,108.984997,118.589081,128.265501,132.972356,I,Above,Flat,0,5701,,16.97196139,0,0,,,,1,1,,0.35,nav,1,1953,1,, 15617,NJBF000083659,8 CAMAC AVENUE,Hamilton,NJ,39.448484,-74.7345035,RES1,3001,,17,NE,1953,1953,3102,1,1,525.9535635,525.9535635,3507,NO,19.34,32.77,1,2.81,6112,108.986201,118.590565,128.266881,132.974914,I,Above,Flat,0,5701,,26.05302748,0,0,,,,1,1,,0.35,nav,1,1953,1,, 15618,NJBF000083551,HARDING HIGHWAY,Hamilton,NJ,39.447133,-74.743016,REL1,3003,,NaN,ME,1969,0,3401,1,1,3942.179642,3942.179642,3507,NO,19.31,30.36,1,0.5,6112,108.923662,118.507153,128.187226,132.828313,I,Above,Flat,0,NaN,,24.83157757,0,0,,,,1,1,,1,nav,1,1969,1,, 15619,NJBF000083496,252 OLD RIVER ROAD,Hamilton,NJ,39.4458609,-74.72016812,RES1,3001,,17,NE,1989,1989,3102,1,1,3273.612255,3273.612255,3505,NO,23.59,32.82,3,8.14,6112,109.108752,118.773769,128.445035,133.296279,I,Above,Gable,0,5701,,28.20182877,0,1.2,,,,1,1,,0.15,nav,1,1989,1,, 15620,NJBF000082080,512 WILLOW OAK DRIVE,Hamilton,NJ,39.42627411,-74.70747702,RES1,3001,,19,NE,1988,1988,3102,3,1,3417.057319,3417.057319,3507,NO,40.05,54.91,1,-0.45,6112,109.264082,119.074716,128.761384,133.842759,I,Above,Hip,0,5701,,47.48158242,0,0,,,,1,1,,0.35,nav,1,1988,3,, 15621,NJBF000083678,5908 ROUTE 617,Hamilton,NJ,39.448669,-74.7283015,IND2,3001,,17,ME,1952,1984,3401,2,1,1694.796457,1694.796457,3507,NO,27.11,35.14,1,-0.81,6106,109.035305,118.658788,128.332219,133.094028,I,Above,Flat,0,5701,,31.12692457,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 15622,NJBF000083677,12 CENTRAL AVENUE,Hamilton,NJ,39.4487262,-74.73363791,RES1,3001,,17,NE,1962,1962,3102,1,1,1816.465238,1816.465238,3507,NO,13.33,24.34,1,-0.53,6112,108.992403,118.598338,128.274143,132.988336,I,Above,Flat,0,5701,,18.8348521,0,0,,,,1,1,,0.35,nav,1,1962,1,, 15623,NJBF000083797,MAYS LANDING SP RD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,0,3102,2,1,1210.838059,1210.838059,3505,NO,29.62,40.26,3,-2.17,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,34.93996413,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15624,NJBF000078682,4523 CATAWBA AVENUE,Hamilton,NJ,39.40690137,-74.71646654,RES1,3001,,17,NE,1986,1986,3102,2,1,2321.263475,2321.263475,3507,NO,25.55,38.87,1,1.5,6112,109.269694,119.117237,128.836391,133.952573,I,Above,Gable,0,5701,,32.21086265,0,0,,,,1,1,,0.35,nav,1,1986,2,, 15625,NJBF000084070,165 OLD EGG HARBOR ROAD,Hamilton,NJ,39.4541685,-74.71916,COM4,3001,,NaN,ME,1975,1975,3401,1,1,2525.49453,2525.49453,3507,NO,20.28,25.99,1,1.89,6110,109.097713,118.720156,128.384615,133.192915,I,Above,Flat,0,NaN,,23.13550772,0,0,,,,1,1,,1,nav,1,1975,1,, 15626,NJBF000084057,165 OLD EGG HARBOR ROAD,Hamilton,NJ,39.453825,-74.7197935,COM4,3001,,NaN,ME,1975,1975,3401,1,1,2364.56998,2364.56998,3507,NO,17.02,28.17,1,0.68,6106,109.093118,118.715556,128.380653,133.185515,I,Above,Hip,0,NaN,,22.59455015,0,0,,,,1,1,,0.03,nav,1,1975,1,, 15627,NJBF000084050,165 OLD EGG HARBOR ROAD,Hamilton,NJ,39.45360512,-74.71949022,COM4,3001,,NaN,ME,1975,1975,3401,1,1,7261.298972,7261.298972,3507,NO,12.09,17.73,1,0.87,6106,109.096172,118.720791,128.385835,133.194759,I,Above,Flat,0,NaN,,14.91176868,0,0,,,,1,1,,0.03,nav,1,1975,1,, 15628,NJBF000084028,165 OLD EGG HARBOR ROAD,Hamilton,NJ,39.45323291,-74.71838569,RES1,3001,,NaN,NE,1975,1975,3102,1,1,2985.944208,2985.944208,3507,NO,19.58,33.96,1,2.49,6112,109.10635,118.736501,128.401067,133.222087,I,Above,Gable,0,5701,,26.7723906,0,0,,,,1,1,,1,nav,1,1975,1,, 15629,NJBF000079271,4630 MAYS LANDING SP RD,Hamilton,NJ,39.41042739,-74.71617969,RES1,3001,,17,NE,1967,1967,3102,1,1,2140.503657,2140.503657,3507,NO,12.57,20.75,1,0.39,6112,109.255759,119.093503,128.807119,133.905466,I,Above,Gable,0,5701,,16.65997738,0,0,,,,1,1,,0.03,nav,1,1967,1,, 15630,NJBF000082109,500 WILLOW OAK DRIVE,Hamilton,NJ,39.42659584,-74.70965163,RES1,3001,,17,NE,1956,1956,3102,1,1,3663.388,3663.388,3507,NO,18.91,32.67,1,0.58,6110,109.245889,119.046321,128.73363,133.794165,I,Above,Gable,0,5701,,25.79368169,0,0,,,,1,1,,0.35,nav,1,1956,1,, 15631,NJBF000082100,500 WILLOW OAK DRIVE,Hamilton,NJ,39.42649399,-74.70956082,RES1,3001,,17,NE,1956,1956,3102,1,1,950.8086348,950.8086348,3507,NO,15.74,22.34,1,1.98,6112,109.246914,119.048185,128.735596,133.797527,I,Above,Gable,0,5701,,19.04125976,0,0,,,,1,1,,0.35,nav,1,1956,1,, 15632,NJBF000083222,104 MARLIN LANE,Hamilton,NJ,39.4398539,-74.71952708,RES1,3001,,17,NE,1997,1997,3102,2,1,1357.695389,1357.695389,3507,NO,34.2,42.78,1,0.51,6112,109.129483,118.828026,128.504411,133.398361,I,Above,Gable,0,5701,,38.49081002,0,0,,,,1,1,,0.03,nav,1,1997,2,, 15633,NJBF000083225,,Hamilton,NJ,39.43989752,-74.71936633,RES1,3001,,NaN,NE,1997,0,3102,2,1,649.2917109,649.2917109,3507,NO,29.54,34.9,1,-0.34,6112,109.130664,118.829549,128.505806,133.400907,I,Above,Gable,0,5701,,32.22088038,0,0,,,,1,1,,0.35,nav,1,1997,2,, 15634,NJBF000080654,300 PENNY LANE,Hamilton,NJ,39.41579966,-74.7135445,RES1,3001,,17,NE,1956,1956,3102,1,1,4720.145551,4720.145551,3507,NO,13.64,24.78,1,-0.45,6106,109.252941,119.083069,128.787997,133.877972,I,Above,Gable,0,5701,,19.2087476,0,0,,,,1,1,,0.03,nav,1,1956,1,, 15635,NJBF000080661,300 PENNY LANE,Hamilton,NJ,39.41583933,-74.713169,RES1,3001,,17,NE,1956,1956,3102,1,1,978.3132664,978.3132664,3507,NO,16.7,22.87,1,2.59,6106,109.255579,119.087163,128.791955,133.884944,I,Above,Gable,0,5701,,19.78563281,0,0,,,,1,1,,0.03,nav,1,1956,1,, 15636,NJBF000083709,213 OLD RIVER ROAD,Hamilton,NJ,39.4490409,-74.72133366,RES1,3001,,17,NE,1965,1965,3102,1,1,2292.832317,2292.832317,3505,NO,17.12,23.31,3,-0.04,6106,109.091345,118.735415,128.404831,133.225993,I,Above,Gable,0,5701,,20.21153083,0,0,,,,1,1,,0.03,nav,1,1965,1,, 15637,NJBF000083984,6030 MAIN STREET,Hamilton,NJ,39.45279786,-74.72958969,COM1,3003,,17,ME,1870,1870,3401,2,1,1518.223153,1518.223153,3507,NO,28.03,41.01,1,-0.52,6112,109.01426,118.611855,128.283253,133.007831,I,Above,Gable,0,NaN,,34.52018203,0,0,,,,1,1,,0.35,nav,1,1870,2,, 15638,NJBF000083715,6135 LONGWOOD AVENUE,Hamilton,NJ,39.44913394,-74.73738418,RES1,3001,,17,NE,1940,1940,3102,2,1,1333.289251,1333.289251,3507,NO,38.44,53.11,1,1.44,6110,108.961643,118.553479,128.230515,132.908979,I,Above,Hip,0,5701,,45.77355669,0,1.1,,,,1,1,,0.35,nav,1,1940,2,, 15639,NJBF000083710,6135 LONGWOOD AVENUE,Hamilton,NJ,39.449058,-74.737552,RES1,3001,,17,NE,1940,1940,3102,2,1,536.8545017,536.8545017,3507,NO,33.25,41.79,1,2.15,6110,108.960537,118.552213,128.229357,132.906809,I,Above,Gable,0,5701,,37.52266645,0,1.1,,,,1,1,,0.35,nav,1,1940,2,, 15640,NJBF000083045,290 CLARKSTOWN ROAD,Hamilton,NJ,39.4361759,-74.71587354,RES1,3001,,16,NE,1880,1880,3102,2,1,1743.758834,1743.758834,3507,NO,25.86,38.35,1,1.94,6112,109.168878,118.899077,128.577399,133.525988,I,Above,Gable,0,5701,,32.10463995,0,0,,,,1,1,,0.35,nav,1,1880,2,, 15641,NJBF000084017,82 MILL STREET,Hamilton,NJ,39.45311434,-74.7336543,COM1,3001,,NaN,ME,1911,1911,3401,1,1,885.958946,885.958946,3507,NO,20.37,26.7,1,2.67,6106,108.980524,118.563771,128.236947,132.923542,I,Above,Gable,0,NaN,,23.53534405,0,0,,,,1,1,,0.03,nav,1,1911,1,, 15642,NJBF000078325,4504 CATAWBA AVENUE-REAR,Hamilton,NJ,39.40473971,-74.71690007,RES1,3001,,16,NE,1962,1962,3102,1,1,1567.115273,1567.115273,3507,NO,14.52,22.14,1,1.18,6106,109.277005,119.128862,128.851383,133.976248,I,Above,Hip,0,5701,,18.33098543,0,0,,,,1,1,,0.03,nav,1,1962,1,, 15643,NJBF000083611,230 OLD RIVER ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1969,3102,1,1,1384.736637,1384.736637,3505,NO,26.54,40.09,3,8.22,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,33.31409707,0,0,,,,1,1,,0.35,nav,1,1969,1,, 15644,NJBF000078623,4519 CATAWBA AVENUE,Hamilton,NJ,39.406553,-74.7161125,RES1,3001,,17,NE,1986,1986,3102,1,1,864.5236611,864.5236611,3507,NO,12.46,21.16,1,-0.44,6112,109.273856,119.124005,128.843745,133.964963,I,Above,Gable,0,5701,,16.81152373,0,0,,,,1,1,,0.35,nav,1,1986,1,, 15645,NJBF000083990,74 MILL STREET,Hamilton,NJ,39.45283997,-74.73458398,COM1,3001,,27,ME,1920,1920,3401,2,1,1873.495988,1873.495988,3507,NO,39.05,50.89,1,1.34,6106,108.973766,118.555548,128.229297,132.909371,I,Above,Flat,0,NaN,,44.96798225,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 15646,NJBF000083991,6048 MAIN STREET,Hamilton,NJ,39.45285579,-74.73181941,COM1,3003,,NaN,ME,1890,0,3401,1,1,533.7395236,533.7395236,3507,NO,14.19,22.13,1,1.56,6112,108.996008,118.586332,128.258795,132.963264,I,Above,Gable,0,NaN,,18.16118956,0,0,,,,1,1,,0.03,nav,1,1890,1,, 15647,NJBF000083974,6028 MAIN STREET,Hamilton,NJ,39.45271752,-74.72932118,COM1,3003,738,NaN,ME,1906,1906,3401,3,1,2478.408875,2478.408875,3507,NO,36.98,45.55,1,0.96,6112,109.016654,118.615517,128.286827,133.014289,I,Above,Hip,0,NaN,,41.26753356,0,0,,,,1,1,,0.35,nav,1,1906,3,, 15648,NJBF000078438,4501 CATAWBA AVENUE,Hamilton,NJ,39.40551901,-74.71682826,RES1,3001,,16,NE,1986,1986,3102,1,1,1614.493438,1614.493438,3507,NO,17.26,22.81,1,2.56,6106,109.273719,119.123698,128.844998,133.966016,I,Above,Gable,0,5701,,20.03500324,0,0,,,,1,1,,0.03,nav,1,1986,1,, 15649,NJBF000083788,29 CENTRAL AVENUE,Hamilton,NJ,39.45003876,-74.73418205,RES1,3001,,17,NE,1977,1977,3102,2,1,1887.750371,1887.750371,3507,NO,40.42,47.88,1,2.8,6110,108.984486,118.581987,128.257197,132.958369,I,Above,Gable,0,5701,,44.15003629,0,0,,,,1,1,,0.35,nav,1,1977,2,, 15650,NJBF000083965,7 ABBOTT STREET,Hamilton,NJ,39.4526365,-74.730961,COM1,3003,,17,ME,1967,1967,3401,2,1,1367.775197,1367.775197,3507,NO,39.49,50.02,1,1.79,6110,109.003525,118.597693,128.26987,132.983319,I,Above,Hip,0,NaN,,44.75557129,0,0,,,,1,1,,0.35,nav,1,1967,2,, 15651,NJBF000080116,4692 MAYS LANDING SP RD,Hamilton,NJ,39.413966,-74.71020849,RES1,3001,,17,NE,1920,1920,3102,2,1,889.4399192,889.4399192,3507,NO,34.69,47.98,1,0.67,6112,109.284845,119.136299,128.843501,133.97284,I,Above,Gable,0,5701,,41.3369143,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 15652,NJBF000080086,4692 MAYS LANDING SP RD,Hamilton,NJ,39.41387419,-74.71059161,RES1,3001,,17,NE,1920,1920,3102,2,1,1516.588018,1516.588018,3507,NO,26.76,36.27,1,-0.06,6112,109.282351,119.132467,128.839903,133.966468,I,Above,Gable,0,5701,,31.51186366,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 15653,NJBF000082296,444 HIGHLAND COURT,Hamilton,NJ,39.42872542,-74.71284105,RES1,3001,,18,NE,1986,1986,3102,2,1,1867.018772,1867.018772,3507,NO,35.81,46.13,1,-0.98,6112,109.214332,118.992224,128.678128,133.698181,I,Above,Hip,0,5701,,40.96958448,0,0,,,,1,1,,0.03,nav,1,1986,2,, 15654,NJBF000079544,4646 MAYS LANDING SP RD,Hamilton,NJ,39.41160622,-74.71659754,RES1,3001,,17,NE,1995,1995,3102,1,1,2557.630594,2557.630594,3507,NO,14.76,21.4,1,0.39,6112,109.247626,119.079627,128.791424,133.879354,I,Above,Hip,0,5701,,18.0788203,0,1.1,,,,1,1,,0.03,nav,1,1995,1,, 15655,NJBF000079436,4642 MAYS LANDING SP RD,Hamilton,NJ,39.41111766,-74.71632289,RES1,3001,,17,NE,1988,1988,3102,2,1,3787.97679,3787.97679,3507,NO,22.35,32.51,1,0.74,6112,109.251719,119.086551,128.799094,133.892217,I,Above,Hip,0,5701,,27.42728436,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 15656,NJBF000082485,412 HIGHLAND DRIVE,Hamilton,NJ,39.43031437,-74.715082,RES1,3001,,17,NE,1987,1987,3102,2,1,2564.823043,2564.823043,3507,NO,22.99,28.59,1,-0.81,6112,109.191911,118.953663,128.638548,133.62948,I,Above,Hip,0,5701,,25.78842349,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 15657,NJBF000078568,,Hamilton,NJ,39.4062503,-74.71680843,RES1,3001,,NaN,NE,1955,0,3102,2,1,4891.875526,4891.875526,3507,NO,37.58,50.99,1,0.99,6112,109.270352,119.118308,128.838457,133.955454,I,Above,Hip,0,5701,,44.28339561,0,0,,,,1,1,,0.03,nav,1,1955,2,, 15658,NJBF000083580,6048 HARDING HWY,Hamilton,NJ,39.44757839,-74.73394889,COM1,3001,641,NaN,ME,1976,2018,3401,1,1,5519.74577,5519.74577,3507,NO,16.15,29.65,1,-0.4,6106,108.993118,118.603842,128.280523,132.999122,I,Above,Flat,0,NaN,,22.8967391,0,0,,,,1,1,,0.03,nav,1,1976,1,, 15659,NJBF000081780,541 PINE NEEDLE DRIVE,Hamilton,NJ,39.42284902,-74.7094141,RES1,3001,,18,NE,1995,1995,3102,2,1,3818.058687,3818.058687,3507,NO,26.1,40.26,1,0.73,6112,109.259403,119.077877,128.770612,133.855267,I,Above,Hip,0,5701,,33.17708121,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 15660,NJBF000079705,4664 MAYS LANDING SP RD,Hamilton,NJ,39.41241717,-74.7114799,RES1,3001,,16,NE,1900,1900,3102,1,1,1151.943147,1151.943147,3507,NO,15.88,29.55,1,-0.92,6106,109.281597,119.133119,128.843136,133.970442,I,Above,Gable,0,5701,,22.71372584,0,0,,,,1,1,,0.03,nav,1,1900,1,, 15661,NJBF000083854,28 TAYLOR AVENUE,Hamilton,NJ,39.45075405,-74.72835753,RES1,3001,,17,NE,1900,1900,3103,2,1,856.482812,856.482812,3505,NO,34.76,47.73,3,5.23,6112,109.029469,118.641815,128.313868,133.062158,I,Above,Gable,0,5701,,41.24563481,0,0,,,,1,1,,0.35,nav,1,1900,2,, 15662,NJBF000082315,464 RIDGE LANE,Hamilton,NJ,39.42892595,-74.7109099,RES1,3001,,18,NE,1983,1983,3102,2,1,5295.383692,5295.383692,3507,NO,32.85,43.85,1,1.38,6112,109.229028,119.013484,128.698173,133.733908,I,Above,Hip,0,5701,,38.35315563,0,0,,,,1,1,,0.35,nav,1,1983,2,, 15663,NJBF000083629,6003 DANENHAUER LANE,Hamilton,NJ,39.44816397,-74.72627525,RES1,3001,,17,NE,1980,1980,3102,1,1,3008.828854,3008.828854,3507,NO,14.02,19.06,1,-0.96,6106,109.05303,118.685741,128.358521,133.141424,I,Above,Gable,0,5701,,16.53953793,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 15664,NJBF000085359,6303 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,NaN,ME,1985,0,3401,1,1,2175.790439,2175.790439,3507,NO,17.82,26.7,1,2.42,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,22.26018585,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15665,NJBF000078891,618 SEA RANCH AVENUE,Hamilton,NJ,39.40816362,-74.71220816,RES1,3001,,17,NE,1987,1960,3102,1,1,2720.858604,2720.858604,3507,NO,14.68,23.44,1,2.84,6112,109.2944,119.157032,128.874254,134.019668,I,Above,Gable,0,5701,,19.06162871,0,0,,,,1,1,,0.35,nav,1,1987,1,, 15666,NJBF000078449,4544 MAYS LANDING SP RD,Hamilton,NJ,39.40557724,-74.71256391,IND2,3001,959,NaN,ME,1987,1987,3401,3,3,984.3253371,984.3253371,3507,NO,59.63,72.35,1,2.02,6112,109.303703,119.172636,128.89425,134.051357,I,Above,Flat,0,NaN,,65.99331978,0,0,,,,1,1,,0.03,nav,1,1987,3,, 15667,NJBF000078446,4544 MAYS LANDING SP RD,Hamilton,NJ,39.40555905,-74.71146623,IND2,3001,959,NaN,ME,1987,1987,3401,1,3,1913.07582,1913.07582,3507,NO,20.37,32.32,1,1.95,6106,109.311619,119.185595,128.907289,134.073855,I,Above,Gable,0,NaN,,26.34113287,0,0,,,,1,1,,0.03,nav,1,1987,1,, 15668,NJBF000078525,4544 MAYS LANDING SP RD,Hamilton,NJ,39.40600895,-74.71280245,IND2,3001,959,NaN,ME,1987,1987,3401,2,3,10222.26475,10222.26475,3507,NO,33.36,40.2,1,0.46,6110,109.299979,119.16656,128.887427,134.040047,I,Above,Flat,0,NaN,,36.78247564,0,0,,,,1,1,,1,nav,1,1987,2,, 15669,NJBF000078735,4544 MAYS LANDING SP RD,Hamilton,NJ,39.40725742,-74.71313203,RES1,3001,959,NaN,NE,1987,1987,3102,2,3,4655.686349,4655.686349,3507,NO,35.73,50.21,1,2.92,6112,109.291852,119.153174,128.871926,134.014616,I,Above,Gable,0,5701,,42.97036945,0,0,,,,1,1,,0.35,nav,1,1987,2,, 15670,NJBF000078518,4544 MAYS LANDING SP RD,Hamilton,NJ,39.40594709,-74.71314384,IND2,3001,959,NaN,ME,1987,1987,3401,1,3,2359.732957,2359.732957,3507,NO,11.46,20.72,1,-0.83,6112,109.297831,119.163051,128.884005,134.03406,I,Above,Flat,0,NaN,,16.08766182,0,0,,,,1,1,,1,nav,1,1987,1,, 15671,NJBF000078495,4544 MAYS LANDING SP RD,Hamilton,NJ,39.40582649,-74.71282024,IND2,3001,959,NaN,ME,1987,1987,3401,2,3,2096.341115,2096.341115,3507,NO,41.21,54.9,1,2.79,6112,109.300708,119.167749,128.888925,134.042434,I,Above,Flat,0,NaN,,48.05481625,0,0,,,,1,1,,1,nav,1,1987,2,, 15672,NJBF000084206,5903 NINTH STREET,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1991,3102,1,1,1777.655318,1777.655318,3504,NO,17.82,31.81,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,24.81206076,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 15673,NJBF000083837,24 TAYLOR AVENUE,Hamilton,NJ,39.450615,-74.728437,RES1,3001,,14,NE,1900,1900,3103,1,1,1373.57401,1373.57401,3505,NO,14.87,25.4,3,-2.37,6106,109.029182,118.642012,128.314195,133.062655,I,Above,Gable,0,5701,,20.13465488,0,0,,,,1,1,,0.03,nav,1,1900,1,, 15674,NJBF000083603,5459 MAYS LANDING SP RD,Hamilton,NJ,39.4478125,-74.7188505,RES1,3001,,16,NE,1924,1924,3102,1,1,697.4024726,697.4024726,3505,NO,23.27,34.72,3,4.67,6112,109.114897,118.773734,128.442613,133.293382,I,Above,Gable,0,5701,,28.99769356,0,0,,,,1,1,,0.35,nav,1,1924,1,, 15675,NJBF000084072,105 MILL STREET,Hamilton,NJ,39.45419383,-74.73409489,RES1,3001,,17,NE,1830,1830,3102,3,1,1022.004988,1022.004988,3505,NO,49.23,62.52,3,8.24,6106,108.97416,118.550368,128.223157,132.899068,I,Above,Gable,0,5701,,55.87467271,0,0,,,,1,1,,0.03,nav,1,1830,3,, 15676,NJBF000083859,30 PENNINGTON AVENUE,Hamilton,NJ,39.45081401,-74.72726055,RES1,3001,,17,NE,1851,1851,3103,2,1,1582.59491,1582.59491,3505,NO,18.92,25.12,3,-2.52,6112,109.038254,118.653772,128.325222,133.082851,I,Above,Hip,0,5701,,22.02130429,0,0,,,,1,1,,0.35,nav,1,1851,2,, 15677,NJBF000083753,6127 LONGWOOD AVENUE,Hamilton,NJ,39.44959396,-74.73734926,RES1,3001,,17,NE,1900,1900,3102,2,1,881.2804868,881.2804868,3507,NO,28.58,33.74,1,2.67,6110,108.960623,118.550267,128.227017,132.902918,I,Above,Hip,0,5701,,31.16330623,0,0,,,,1,1,,0.35,nav,1,1900,2,, 15678,NJBF000082544,408 HIGHLAND DRIVE,Hamilton,NJ,39.43074703,-74.71497123,RES1,3001,,17,NE,1984,1984,3102,1,1,2866.576795,2866.576795,3507,NO,21.11,35.95,1,2.52,6112,109.1915,118.951623,128.635914,133.625221,I,Above,Gable,0,5701,,28.53023427,0,0,,,,1,1,,0.03,nav,1,1984,1,, 15679,NJBF000083557,241 OLD RIVER ROAD,Hamilton,NJ,39.44723742,-74.7220029,RES1,3001,,18,NE,1970,1970,3102,1,1,4426.736514,4426.736514,3505,NO,15.71,27.44,3,-0.39,6106,109.090253,118.741854,128.413046,133.239521,I,Above,Hip,0,5701,,21.57560211,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15680,NJBF000083910,5721 SECOND STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1952,3102,1,1,1554.864479,1554.864479,3505,NO,16.64,22.33,3,-0.04,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,19.48544864,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15681,NJBF000083823,FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,0,3102,2,1,624.569313,624.569313,3505,NO,38.86,49.4,3,1.61,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,44.1281072,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15682,NJBF000083818,FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,0,3102,2,1,1655.209115,1655.209115,3505,NO,42.11,56.04,3,6.93,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,49.07429722,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15683,NJBF000083688,211 OLD RIVER ROAD,Hamilton,NJ,39.44880777,-74.72099349,RES1,3001,,NaN,NE,1965,1981,3102,1,1,1735.730401,1735.730401,3505,NO,13.22,25.6,3,1.14,6106,109.094731,118.741171,128.410562,133.236192,I,Above,Gable,0,5701,,19.40778144,0,0,,,,1,1,,0.03,nav,1,1965,1,, 15684,NJBF000083811,32 CAMAC AVENUE,Hamilton,NJ,39.45028994,-74.73468815,RES1,3001,,17,NE,1957,1957,3102,1,1,1291.873386,1291.873386,3507,NO,16.96,27.07,1,2.35,6112,108.979773,118.574379,128.24965,132.944771,I,Above,Gable,0,5701,,22.01657549,0,0,,,,1,1,,0.35,nav,1,1957,1,, 15685,NJBF000081638,539 PINE NEEDLE DRIVE,Hamilton,NJ,39.42116285,-74.71163433,RES1,3001,,15,NE,1925,1925,3102,1,2,1081.12551,1081.12551,3507,NO,17.22,22.3,1,-0.22,6112,109.24787,119.064498,128.760652,133.835906,I,Above,Hip,0,5701,,19.7632147,0,0,,,,1,1,,0.35,nav,1,1925,1,, 15686,NJBF000081621,539 PINE NEEDLE DRIVE,Hamilton,NJ,39.4209458,-74.71180312,RES1,3001,,15,NE,1925,1925,3102,1,2,723.7535689,723.7535689,3507,NO,19.46,32.07,1,2.25,6112,109.247319,119.064165,128.760706,133.835764,I,Above,Flat,0,5701,,25.76335516,0,0,,,,1,1,,0.35,nav,1,1925,1,, 15687,NJBF000082360,536 GRAVELLY RUN ROAD,Hamilton,NJ,39.42927813,-74.7094917,RES1,3001,,18,NE,1986,1986,3102,2,1,4609.735485,4609.735485,3507,NO,32.33,42.54,1,-0.04,6112,109.239321,119.027603,128.711067,133.757094,I,Above,Hip,0,5701,,37.43403381,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 15688,NJBF000081120,,Hamilton,NJ,39.41762349,-74.71456649,RES1,3001,,NaN,NE,1942,0,3102,2,1,538.4305645,538.4305645,3507,NO,39.51,53.93,1,0.58,6106,109.238382,119.057169,128.759511,133.830029,I,Above,Gable,0,5701,,46.72303836,0,0,,,,1,1,,0.03,nav,1,1942,2,, 15689,NJBF000083587,232 OLD RIVER ROAD,Hamilton,NJ,39.4477135,-74.7212295,RES1,3001,,16,NE,1900,1900,3102,2,1,912.4635579,912.4635579,3505,NO,43.82,58.4,3,5.37,6106,109.095436,118.747023,128.417399,133.247751,I,Above,Gable,0,5701,,51.11285829,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 15690,NJBF000081734,528 PINE NEEDLE DRIVE,Hamilton,NJ,39.42237092,-74.71000466,RES1,3001,,17,NE,1986,1986,3102,2,1,2232.596216,2232.596216,3507,NO,36.78,41.93,1,-0.79,6112,109.256372,119.074521,128.768228,133.850552,I,Above,Hip,0,5701,,39.35750189,0,0,,,,1,1,,0.35,nav,1,1986,2,, 15691,NJBF000082077,532 WILLOW OAK DRIVE,Hamilton,NJ,39.42625997,-74.70528264,RES1,3001,,18,NE,2000,2000,3102,2,1,2572.730009,2572.730009,3507,NO,23.68,36.98,1,1.73,6112,109.281634,119.101139,128.78662,133.887154,I,Above,Hip,0,5701,,30.32778635,0,1.2,,,,1,1,,0.35,nav,1,2000,2,, 15692,NJBF000083903,5809 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1900,3102,2,1,2877.884205,2877.884205,3505,NO,30.37,40.48,3,6.34,6110,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,35.42858847,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15693,NJBF000084068,6068 MAIN STREET,Hamilton,NJ,39.45407423,-74.73299485,RES1,3001,,17,NE,1880,1880,3102,2,1,998.6662671,998.6662671,3505,NO,37.57,44.57,3,3.29,6112,108.983359,118.563595,128.235934,132.922343,I,Above,Gable,0,5701,,41.06795637,0,0,,,,1,1,,0.35,nav,1,1880,2,, 15694,NJBF000078738,4551 CATAWBA AVENUE,Hamilton,NJ,39.40726589,-74.71648242,RES1,3001,,18,NE,1995,1995,3102,2,1,3015.358966,3015.358966,3507,NO,24.28,30.84,1,2.54,6112,109.267879,119.114261,128.832837,133.946794,I,Above,Hip,0,5701,,27.55737075,0,0,,,,1,1,,0.35,nav,1,1995,2,, 15695,NJBF000083769,24 FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,NaN,NE,1969,0,3103,1,1,790.3030519,790.3030519,3505,NO,17.97,23.49,3,0.2,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,20.72790738,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15696,NJBF000084348,1114 ROUTE 50,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1960,3102,1,1,1683.815466,1683.815466,3504,NO,14.38,27.75,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,21.06477895,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 15697,NJBF000078584,4518 CATAWBA AVENUE,Hamilton,NJ,39.4063529,-74.71514681,RES1,3001,,17,NE,1980,1980,3102,2,1,2110.3255,2110.3255,3507,NO,32.74,43.06,1,1.57,6112,109.28166,119.136693,128.856838,133.987462,I,Above,Gable,0,5701,,37.8978654,0,1.2,,,,1,1,,0.35,nav,1,1980,2,, 15698,NJBF000080486,4722 MAYS LANDING SP RD,Hamilton,NJ,39.41523385,-74.7087339,RES1,3001,,17,NE,1988,1988,3102,1,1,2675.825976,2675.825976,3507,NO,14.7,24.48,1,1.52,6112,109.291022,119.144095,128.848806,133.983537,I,Above,Gable,0,5701,,19.5875231,0,0,,,,1,1,,0.35,nav,1,1988,1,, 15699,NJBF000083947,6234 OLD HARDING HIGHWAY,Hamilton,NJ,39.4523655,-74.7449555,RES1,3001,,NaN,NE,1969,0,3102,1,1,1565.130342,1565.130342,3507,NO,21.61,32.72,1,2.49,6112,108.893162,118.445085,128.123024,132.714233,I,Above,Gable,0,5701,,27.16463223,0,0,,,,1,1,,0.7,nav,1,1969,1,, 15700,NJBF000084120,LAKE LENAPE,Hamilton,NJ,39.45531676,-74.73167618,RES1,3001,,NaN,NE,1969,0,3102,2,1,792.8172177,792.8172177,3505,NO,34.5,44.9,3,0.14,6112,108.990928,118.568591,128.239618,132.929902,I,Above,Gable,0,5701,,39.69821006,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15701,NJBF000083586,6068 HARDING HIGHWAY,Hamilton,NJ,39.44765873,-74.73553334,COM1,3001,210,NaN,ME,1988,1988,3401,1,1,2009.749527,2009.749527,3507,NO,13.25,23.34,1,2.26,6112,108.980387,118.585556,128.262805,132.96687,I,Above,Flat,0,NaN,,18.29459924,0,0,,,,1,1,,0.35,nav,1,1988,1,, 15702,NJBF000083789,5703 MAYS LANDING SP RD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,16,NE,1969,1920,3102,2,1,1131.128167,1131.128167,3505,NO,22.2,34.1,3,-1.76,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,28.15043673,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15703,NJBF000085358,6669 WEYMOUTH RD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,15,ME,1985,1946,3401,1,2,2257.569616,2257.569616,3507,NO,12.14,21.5,1,0.94,6110,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,16.81614776,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15704,NJBF000084413,753 PARK ROAD,Hamilton,NJ,39.46201845,-74.73750593,RES1,3001,,NaN,NE,1936,1936,3102,1,1,2299.518521,2299.518521,3505,NO,22.21,31.11,3,6.25,6112,108.926715,118.450865,128.121774,132.718202,I,Above,Gable,0,5701,,26.65884873,0,0,,,,1,1,,0.03,nav,1,1936,1,, 15705,NJBF000084634,973 MORNINGSIDE DRIVE,Hamilton,NJ,39.46701733,-74.73849899,RES1,3001,,17,NE,1979,1979,3102,1,1,2625.122876,2625.122876,3505,NO,17.56,31.16,3,3.7,6112,108.906464,118.400337,128.070187,132.626232,I,Above,Gable,0,5701,,24.36174549,0,1.1,,,,1,1,,0.35,nav,1,1979,1,, 15706,NJBF000084726,1017 MORNINGSIDE DRIVE,Hamilton,NJ,39.46844828,-74.73886304,RES1,3001,,17,NE,1974,1974,3102,1,1,3456.329368,3456.329368,3505,NO,20.06,29.83,3,5.6,6112,108.90007,118.384974,128.054655,132.598427,I,Above,Gable,0,5701,,24.94354824,0,0,,,,1,1,,0.35,nav,1,1974,1,, 15707,NJBF000084755,1029 MORNINGSIDE DRIVE,Hamilton,NJ,39.4687829,-74.73887768,RES1,3001,,17,NE,1972,1972,3102,2,1,2328.397136,2328.397136,3505,NO,20.62,35.23,3,-2.11,6112,108.899157,118.382148,128.05176,132.59328,I,Above,Gable,0,5701,,27.92425245,0,0,,,,1,1,,0.35,nav,1,1972,2,, 15708,NJBF000084818,1053 MORNINGSIDE DRIVE,Hamilton,NJ,39.46955923,-74.73908227,RES1,3001,,18,NE,1985,1985,3102,3,1,3351.801177,3351.801177,3505,NO,41.16,55.97,3,3.8,6112,108.895647,118.373739,128.043285,132.578091,I,Above,Gable,0,5701,,48.56580965,0,0,,,,1,1,,0.03,nav,1,1985,3,, 15709,NJBF000082906,,Hamilton,NJ,39.43476375,-74.79488602,RES1,3001,,NaN,NE,1961,0,3101,1,1,3442.118245,3442.118245,3507,NO,16.07,23.33,1,2.41,6112,108.59748,118.066386,127.750401,132.014378,I,Above,Hip,0,5701,,19.70160191,0,0,,,,1,1,,0.15,nav,1,1961,1,, 15710,NJBF000083247,6692 MILLVILLE AVENUE,Hamilton,NJ,39.44025283,-74.8005064,RES1,3001,,17,NE,2013,2013,3102,2,1,624.2537564,624.2537564,3504,NO,34.23,45.39,-4,0,6112,108.535669,117.968372,127.650998,131.833428,I,Above,Flat,0,5701,,39.81192874,0,1.2,,,,1,1,,0.35,nav,1,2013,2,, 15711,NJBF000083253,6692 MILLVILLE AVENUE,Hamilton,NJ,39.44035081,-74.80071308,RES1,3001,,17,NE,2013,2013,3102,2,1,1022.651351,1022.651351,3504,NO,28.94,41.09,-4,0,6112,108.533847,117.965588,127.648174,131.828248,I,Above,Gable,0,5701,,35.01617352,0,1.2,,,,1,1,,0.35,nav,1,2013,2,, 15712,NJBF000083268,,Hamilton,NJ,39.44059728,-74.80084873,RES1,3001,,NaN,NE,2013,0,3102,2,1,725.0652744,725.0652744,3504,NO,24.03,33.01,-4,0,6112,108.531883,117.962345,127.644903,131.822323,I,Above,Hip,0,5701,,28.51929837,0,0,,,,1,1,,0.35,nav,1,2013,2,, 15713,NJBF000083275,5991 SCRANTON AVE,Hamilton,NJ,39.44122093,-74.79779277,RES1,3001,,17,NE,1970,1966,3102,1,1,3048.555264,3048.555264,3504,NO,13.54,26.38,-4,0,6112,108.550114,117.987391,127.670483,131.870089,I,Above,Hip,0,5701,,19.95887428,0,0,,,,1,1,,0.35,nav,1,1970,1,, 15714,NJBF000083284,6693 MILLVILLE AVENUE,Hamilton,NJ,39.44097809,-74.80113896,RES1,3001,,16,NE,1916,1916,3102,1,1,924.7550387,924.7550387,3504,NO,14.99,23.07,-4,0,6112,108.528305,117.95655,127.639052,131.811689,I,Above,Gable,0,5701,,19.02889695,0,0,,,,1,1,,0.35,nav,1,1916,1,, 15715,NJBF000083285,6654 MILLVILLE AVENUE,Hamilton,NJ,39.44108203,-74.79846015,RES1,3001,,17,NE,1970,1970,3102,2,1,2082.131098,2082.131098,3504,NO,38.77,45.62,-4,0,6106,108.546134,117.981934,127.664915,131.859688,I,Above,Gable,0,5701,,42.1951329,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 15716,NJBF000083291,6648 MILLVILLE AVENUE,Hamilton,NJ,39.44122093,-74.79779277,RES1,3001,,17,NE,1970,1970,3102,2,1,1516.034717,1516.034717,3504,NO,30.58,42.23,-4,0,6112,108.550114,117.987391,127.670483,131.870089,I,Above,Hip,0,5701,,36.40490971,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15717,NJBF000083296,6646 MILLVILLE AVENUE,Hamilton,NJ,39.44136799,-74.7971494,RES1,3001,,17,NE,1974,1974,3102,1,1,1610.061813,1610.061813,3504,NO,14.66,25.52,-4,0,6112,108.553909,117.992567,127.675762,131.879959,I,Above,Gable,0,5701,,20.0909009,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 15718,NJBF000083329,6610 MILLVILLE AVENUE,Hamilton,NJ,39.44122093,-74.79779277,RES1,3001,,17,NE,1970,1996,3102,1,1,556.4100969,556.4100969,3504,NO,14.05,25.62,-4,0,6112,108.550114,117.987391,127.670483,131.870089,I,Above,Hip,0,5701,,19.83609072,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 15719,NJBF000083339,6612 MILLVILLE AVENUE,Hamilton,NJ,39.44122093,-74.79779277,RES1,3001,,16,NE,1970,1929,3102,2,1,819.0889796,819.0889796,3504,NO,38.55,44.84,-4,0,6112,108.550114,117.987391,127.670483,131.870089,I,Above,Hip,0,5701,,41.69823129,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15720,NJBF000083349,6612 MILLVILLE AVENUE,Hamilton,NJ,39.44122093,-74.79779277,RES1,3001,,16,NE,1970,1929,3102,2,1,1911.537024,1911.537024,3504,NO,29.52,43.89,-4,0,6112,108.550114,117.987391,127.670483,131.870089,I,Above,Hip,0,5701,,36.70454583,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15721,NJBF000083365,6610 MILLVILLE AVENUE,Hamilton,NJ,39.44122093,-74.79779277,RES1,3001,,17,NE,1970,1996,3102,1,1,3260.849868,3260.849868,3504,NO,15.22,25.1,-4,0,6112,108.550114,117.987391,127.670483,131.870089,I,Above,Hip,0,5701,,20.16085547,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 15722,NJBF000083371,6600 MILLVILLE AVENUE,Hamilton,NJ,39.44122093,-74.79779277,RES1,3001,,17,NE,1970,1989,3102,2,1,1364.832597,1364.832597,3504,NO,21.52,32.01,-4,0,6112,108.550114,117.987391,127.670483,131.870089,I,Above,Hip,0,5701,,26.76401756,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15723,NJBF000083432,6587 MILLVILLE AVENUE,Hamilton,NJ,39.44122093,-74.79779277,RES1,3001,,17,NE,1970,1926,3102,2,1,2960.487525,2960.487525,3504,NO,33.13,39.07,-4,0,6112,108.550114,117.987391,127.670483,131.870089,I,Above,Hip,0,5701,,36.09692378,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 15724,NJBF000083547,HARDING HIGHWAY,Hamilton,NJ,39.44702866,-74.74299358,REL1,3003,,NaN,ME,1969,0,3401,2,1,698.8880228,698.8880228,3507,NO,34.57,49.4,1,1.6,6112,108.924147,118.508205,128.188332,132.830263,I,Above,Flat,0,NaN,,41.98460592,0,0,,,,1,1,,1,nav,1,1969,2,, 15725,NJBF000083641,6334 BENSON AVENUE,Hamilton,NJ,39.44829896,-74.75655753,RES1,3001,,17,NE,1975,1975,3102,2,1,1295.988879,1295.988879,3505,NO,31.27,41.2,3,7.34,6112,108.817301,118.352245,128.03476,132.548909,I,Above,Gable,0,5701,,36.23572457,0,0,,,,1,1,,0.35,nav,1,1975,2,, 15726,NJBF000083643,6332 BENSON AVENUE,Hamilton,NJ,39.44833066,-74.75625003,RES1,3001,,17,NE,1972,1972,3102,2,1,1552.85991,1552.85991,3505,NO,32.41,40.62,3,6.51,6112,108.819498,118.355263,128.037715,132.55438,I,Above,Gable,0,5701,,36.51544815,0,0,,,,1,1,,0.35,nav,1,1972,2,, 15727,NJBF000083648,6330 BENSON AVENUE,Hamilton,NJ,39.44838736,-74.7559324,RES1,3001,,17,NE,1970,1970,3102,2,1,1261.094888,1261.094888,3505,NO,34.91,42.45,3,1.78,6112,108.821695,118.358202,128.040578,132.559697,I,Above,Gable,0,5701,,38.68095859,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15728,NJBF000083652,6328 BENSON AVENUE,Hamilton,NJ,39.44842355,-74.75561958,RES1,3001,,17,NE,1967,1967,3102,2,1,1225.230469,1225.230469,3505,NO,26.65,35.65,3,2.49,6112,108.82391,118.361228,128.043536,132.565175,I,Above,Gable,0,5701,,31.14751172,0,0,,,,1,1,,0.35,nav,1,1967,2,, 15729,NJBF000083658,6326 BENSON AVENUE,Hamilton,NJ,39.44847889,-74.75530176,RES1,3001,,17,NE,1970,1970,3102,2,1,1173.869036,1173.869036,3505,NO,29.82,37.7,3,0.7,6112,108.826114,118.36418,128.046409,132.57051,I,Above,Gable,0,5701,,33.76060886,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15730,NJBF000083662,6324 BENSON AVENUE,Hamilton,NJ,39.44853103,-74.75493688,RES1,3001,,17,NE,1964,1964,3102,2,1,3231.747946,3231.747946,3505,NO,34.75,44.52,3,6.3,6112,108.828684,118.367658,128.0498,132.576796,I,Above,Hip,0,5701,,39.63320352,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 15731,NJBF000083665,6339 BENSON AVENUE,Hamilton,NJ,39.44857591,-74.75726185,RES1,3001,,17,NE,1970,1970,3102,2,1,1908.611891,1908.611891,3505,NO,28.18,42.36,3,3.32,6112,108.811136,118.34262,128.025136,132.53135,I,Above,Gable,0,5701,,35.26814046,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15732,NJBF000083667,6337 BENSON AVENUE,Hamilton,NJ,39.4486046,-74.75694284,RES1,3001,,17,NE,1970,1970,3102,2,1,1261.117191,1261.117191,3505,NO,34.78,46.68,3,6.25,6112,108.813423,118.345774,128.028227,132.537071,I,Above,Gable,0,5701,,40.72639136,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15733,NJBF000083673,6335 BENSON AVENUE,Hamilton,NJ,39.44868537,-74.75642174,RES1,3001,,17,NE,1971,1971,3102,2,1,1254.314867,1254.314867,3505,NO,29.04,36.49,3,7.38,6112,108.817057,118.350674,128.033009,132.545947,I,Above,Flat,0,5701,,32.76712621,0,0,,,,1,1,,0.03,nav,1,1971,2,, 15734,NJBF000083672,6305 HARDING HIGHWAY,Hamilton,NJ,39.44867307,-74.75190975,RES1,3001,,17,NE,1964,1964,3102,1,1,668.8317019,668.8317019,3505,NO,20.49,30.76,3,1.98,6112,108.851031,118.398875,128.080366,132.633194,I,Above,Gable,0,5701,,25.6251249,0,0,,,,1,1,,0.35,nav,1,1964,1,, 15735,NJBF000083679,6333 BENSON AVENUE,Hamilton,NJ,39.44874917,-74.75608308,RES1,3001,,16,NE,1964,1964,3102,2,1,1197.123244,1197.123244,3505,NO,28.18,41.37,3,2.26,6112,108.819386,118.353772,128.036024,132.551551,I,Above,Flat,0,5701,,34.77690111,0,0,,,,1,1,,0.03,nav,1,1964,2,, 15736,NJBF000083684,6331 BENSON AVENUE,Hamilton,NJ,39.4487823,-74.75577575,RES1,3001,,17,NE,1971,1971,3102,2,1,1709.898903,1709.898903,3505,NO,26.36,35.03,3,-2.81,6112,108.821579,118.356775,128.038961,132.556989,I,Above,Gable,0,5701,,30.69524286,0,0,,,,1,1,,0.03,nav,1,1971,2,, 15737,NJBF000083686,6297 OLD HARDING HIGHWAY,Hamilton,NJ,39.4487951,-74.75104077,RES1,3001,,17,NE,1960,1960,3102,1,1,1516.024349,1516.024349,3505,NO,13.81,18.85,3,0.83,6112,108.857225,118.407242,128.08849,132.648232,I,Above,Gable,0,5701,,16.33402883,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15738,NJBF000083689,6329 BENSON AVENUE,Hamilton,NJ,39.44883327,-74.75547147,RES1,3001,,17,NE,1966,1966,3102,2,1,1427.823899,1427.823899,3505,NO,31.31,37.12,3,3.14,6112,108.823701,118.359619,128.041729,132.562129,I,Above,Gable,0,5701,,34.21357544,0,0,,,,1,1,,0.03,nav,1,1966,2,, 15739,NJBF000083692,6327 BENSON AVENUE,Hamilton,NJ,39.44887019,-74.75514819,RES1,3001,,17,NE,1900,1900,3102,2,1,1180.641614,1180.641614,3505,NO,39.61,49.06,3,5.71,6112,108.826005,118.362765,128.044802,132.56782,I,Above,Gable,0,5701,,44.33483064,0,0,,,,1,1,,0.03,nav,1,1900,2,, 15740,NJBF000083690,6295 OLD HARDING HIGHWAY,Hamilton,NJ,39.44885692,-74.75085597,RES1,3001,569,NaN,NE,1958,1958,3102,1,1,2039.477395,2039.477395,3505,NO,20.68,26.47,3,8.17,6112,108.858433,118.408744,128.089922,132.650911,I,Above,Gable,0,5701,,23.57841164,0,0,,,,1,1,,0.03,nav,1,1958,1,, 15741,NJBF000083697,6306 BENSON AVENUE,Hamilton,NJ,39.4489086,-74.75219469,RES1,3001,,17,NE,1964,1964,3102,2,1,1548.989595,1548.989595,3505,NO,40.44,53.7,3,7.51,6112,108.848128,118.393979,128.075423,132.62426,I,Above,Gable,0,5701,,47.06781904,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 15742,NJBF000083696,6293 OLD HARDING HIGHWAY,Hamilton,NJ,39.44889212,-74.75063901,RES1,3001,569,NaN,NE,1958,1958,3102,1,1,1243.644973,1243.644973,3505,NO,18.23,27.05,3,2.74,6112,108.859969,118.410802,128.091915,132.654602,I,Above,Gable,0,5701,,22.64023945,0,0,,,,1,1,,0.03,nav,1,1958,1,, 15743,NJBF000083698,6338 BEECH LANE,Hamilton,NJ,39.44890932,-74.75701789,RES1,3001,,17,NE,1970,1970,3102,2,1,1134.105384,1134.105384,3505,NO,37.33,50.93,3,8.88,6112,108.81187,118.342605,128.024949,132.531234,I,Above,Hip,0,5701,,44.13112026,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15744,NJBF000083693,6301 CROCUS STREET,Hamilton,NJ,39.44887301,-74.75134954,RES1,3001,,17,NE,1966,1966,3102,2,1,1977.443777,1977.443777,3505,NO,41.92,55.03,3,7.79,6112,108.854638,118.403317,128.084596,132.641121,I,Above,Gable,0,5701,,48.47436404,0,0,,,,1,1,,0.03,nav,1,1966,2,, 15745,NJBF000083703,6291 OLD HARDING HIGHWAY,Hamilton,NJ,39.44895378,-74.7504582,RES1,3001,,17,NE,1953,1953,3102,1,1,1106.009612,1106.009612,3505,NO,20.36,26.3,3,5.15,6112,108.861149,118.412263,128.093306,132.657205,I,Above,Gable,0,5701,,23.33034644,0,0,,,,1,1,,0.03,nav,1,1953,1,, 15746,NJBF000083700,6298 HARDING HWY,Hamilton,NJ,39.44916481,-74.75013428,RES1,3001,737,NaN,NE,1965,1986,3101,1,1,3555.507059,3555.507059,3507,NO,15.07,29.57,1,0.79,6112,108.862953,118.414098,128.094968,132.660412,I,Above,Gable,0,5701,,22.31907411,0,0,,,,1,1,,0.03,nav,1,1965,1,, 15747,NJBF000083707,6319 BENSON AVENUE,Hamilton,NJ,39.44901075,-74.75442471,RES1,3001,,17,NE,1968,1968,3102,2,1,1248.496102,1248.496102,3505,NO,37.51,44.13,3,4.08,6112,108.830985,118.369362,128.051206,132.579721,I,Above,Gable,0,5701,,40.82286419,0,0,,,,1,1,,0.35,nav,1,1968,2,, 15748,NJBF000083706,6303 CROCUS STREET,Hamilton,NJ,39.44899363,-74.75160232,RES1,3001,,17,NE,1965,1965,3102,2,1,1786.469817,1786.469817,3505,NO,37.45,45.42,3,3.39,6112,108.852348,118.399669,128.080948,132.634491,I,Above,Gable,0,5701,,41.43546507,0,0,,,,1,1,,0.03,nav,1,1965,2,, 15749,NJBF000083712,6340 BEECH LANE,Hamilton,NJ,39.44906323,-74.75744658,RES1,3001,,17,NE,1966,1966,3102,2,1,1130.231572,1130.231572,3505,NO,27.73,38.18,3,1.63,6112,108.808161,118.336859,128.019211,132.520754,I,Above,Gable,0,5701,,32.95835133,0,0,,,,1,1,,0.35,nav,1,1966,2,, 15750,NJBF000083714,6325 CROCUS STREET,Hamilton,NJ,39.44910496,-74.75496335,RES1,3001,,17,NE,1966,1966,3102,2,1,1325.065959,1325.065959,3505,NO,36.86,47.37,3,8.29,6112,108.826638,118.362899,128.044804,132.567985,I,Above,Gable,0,5701,,42.1178712,0,0,,,,1,1,,0.03,nav,1,1966,2,, 15751,NJBF000083716,6305 CROCUS STREET,Hamilton,NJ,39.44916332,-74.75180583,RES1,3001,,17,NE,1966,1966,3102,1,1,1234.93384,1234.93384,3505,NO,16.58,22.23,3,0.7,6112,108.85027,118.396162,128.077409,132.628094,I,Above,Gable,0,5701,,19.40550357,0,1.2,,,,1,1,,0.03,nav,1,1966,1,, 15752,NJBF000083717,6287 OLD HARDING HIGHWAY,Hamilton,NJ,39.44916481,-74.75013428,RES1,3001,,17,NE,1965,1965,3102,2,1,2054.981173,2054.981173,3505,NO,44.72,58.9,3,7.07,6112,108.862953,118.414098,128.094968,132.660412,I,Above,Gable,0,5701,,51.80767142,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 15753,NJBF000083720,6339 BEECH LANE,Hamilton,NJ,39.44922594,-74.75678211,RES1,3001,,17,NE,1968,1968,3102,2,1,1151.558917,1151.558917,3505,NO,44.58,56.36,3,6.71,6112,108.812604,118.342632,128.024809,132.531194,I,Above,Gable,0,5701,,50.46888479,0,0,,,,1,1,,0.03,nav,1,1968,2,, 15754,NJBF000083722,6309 BENSON AVENUE,Hamilton,NJ,39.44922824,-74.75270429,RES1,3001,,17,NE,1964,1964,3102,2,1,1002.283988,1002.283988,3505,NO,42.43,49.14,3,7.75,6112,108.843271,118.38604,128.067449,132.609798,I,Above,Hip,0,5701,,45.78278343,0,1.2,,,,1,1,,0.35,nav,1,1964,2,, 15755,NJBF000083719,6351 BEECH LANE,Hamilton,NJ,39.44922218,-74.75878891,RES1,3001,,17,NE,1971,1971,3102,2,1,1762.232748,1762.232748,3505,NO,41.98,49.68,3,3.01,6112,108.797628,118.321431,128.003931,132.492659,I,Above,Hip,0,5701,,45.83210221,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 15756,NJBF000083724,,Hamilton,NJ,39.44924558,-74.74990529,RES1,3001,,NaN,NE,1969,0,3102,2,1,1124.422452,1124.422452,3505,NO,27.45,42.12,3,1.64,6112,108.864444,118.415929,128.096708,132.663669,I,Above,Gable,0,5701,,34.78361098,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15757,NJBF000083729,6323 CROCUS STREET,Hamilton,NJ,39.44931639,-74.75475362,RES1,3001,,17,NE,1967,1967,3102,2,1,1737.031526,1737.031526,3505,NO,28.33,34.81,3,6.16,6112,108.827532,118.363476,128.045254,132.56896,I,Above,Gable,0,5701,,31.57098929,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 15758,NJBF000083736,6341 BEECH LANE,Hamilton,NJ,39.44936486,-74.75708349,RES1,3001,,17,NE,1970,1970,3102,2,1,1666.287305,1666.287305,3505,NO,27.25,42.13,3,2.18,6112,108.8099,118.338356,128.02053,132.523393,I,Above,Gable,0,5701,,34.68911063,0,0,,,,1,1,,0.03,nav,1,1970,2,, 15759,NJBF000083738,6349 BEECH LANE,Hamilton,NJ,39.44939818,-74.75844653,RES1,3001,,17,NE,1971,1971,3102,2,1,2355.482178,2355.482178,3505,NO,38.66,53.38,3,0.98,6112,108.7996,118.323669,128.00605,132.49669,I,Above,Gable,0,5701,,46.01973612,0,0,,,,1,1,,0.03,nav,1,1971,2,, 15760,NJBF000083742,6345 BEECH LANE,Hamilton,NJ,39.44942737,-74.75778622,RES1,3001,,17,NE,1972,1972,3102,2,1,1167.069902,1167.069902,3505,NO,31.71,41.11,3,6.68,6112,108.804441,118.33043,128.012695,132.508977,I,Above,Gable,0,5701,,36.40972926,0,0,,,,1,1,,0.35,nav,1,1972,2,, 15761,NJBF000083741,6347 BEECH LANE,Hamilton,NJ,39.4494076,-74.75811191,RES1,3001,,17,NE,1969,1969,3102,2,1,1743.832436,1743.832436,3505,NO,33.44,45.01,3,2.18,6112,108.802068,118.327131,128.009456,132.502984,I,Above,Gable,0,5701,,39.22442464,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15762,NJBF000083744,6343 BEECH LANE,Hamilton,NJ,39.44945334,-74.75743022,RES1,3001,,17,NE,1971,1971,3102,2,1,1340.586194,1340.586194,3505,NO,20.53,32.29,3,-0.76,6112,108.807018,118.333994,128.016191,132.515447,I,Above,Gable,0,5701,,26.40623022,0,0,,,,1,1,,0.03,nav,1,1971,2,, 15763,NJBF000083747,6321 CROCUS STREET,Hamilton,NJ,39.4495178,-74.75453655,RES1,3001,,17,NE,1966,1966,3102,2,1,1177.73356,1177.73356,3505,NO,28.2,37.33,3,-2.14,6112,108.82852,118.364209,128.045861,132.57022,I,Above,Gable,0,5701,,32.76979008,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 15764,NJBF000083749,6309 CROCUS STREET,Hamilton,NJ,39.44956663,-74.75236927,RES1,3001,,17,NE,1968,1968,3102,2,1,1554.784467,1554.784467,3505,NO,37.55,51.76,3,-0.95,6112,108.844736,118.386977,128.068165,132.611354,I,Above,Hip,0,5701,,44.65353377,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 15765,NJBF000083755,6319 CROCUS STREET,Hamilton,NJ,39.44962878,-74.75417556,RES1,3001,,17,NE,1965,1965,3102,2,1,1820.391549,1820.391549,3505,NO,33.71,43.24,3,3.26,6112,108.830887,118.36719,128.048725,132.575575,I,Above,Gable,0,5701,,38.47523444,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 15766,NJBF000083760,6315 CROCUS STREET,Hamilton,NJ,39.44967556,-74.75340484,RES1,3001,,17,NE,1962,1962,3102,2,1,1357.061685,1357.061685,3505,NO,26.95,33.3,3,1.65,6112,108.836557,118.375049,128.056409,132.58977,I,Above,Flat,0,5701,,30.12482721,0,0,,,,1,1,,0.03,nav,1,1962,2,, 15767,NJBF000083759,6317 CROCUS STREET,Hamilton,NJ,39.44967161,-74.75368902,RES1,3001,,17,NE,1965,1965,3102,2,1,2118.946438,2118.946438,3505,NO,34.01,45.04,3,1.81,6112,108.834424,118.372048,128.053468,132.584347,I,Above,Gable,0,5701,,39.52783516,0,0,,,,1,1,,0.03,nav,1,1965,2,, 15768,NJBF000083762,6313 CROCUS STREET,Hamilton,NJ,39.44968714,-74.75308671,RES1,3001,,17,NE,1966,1966,3102,2,1,1480.163009,1480.163009,3505,NO,40.79,50.05,3,4.84,6112,108.838925,118.37836,128.059649,132.595748,I,Above,Gable,0,5701,,45.42113796,0,0,,,,1,1,,0.03,nav,1,1966,2,, 15769,NJBF000083763,6311 CROCUS STREET,Hamilton,NJ,39.44969023,-74.75278977,RES1,3001,,17,NE,1966,1966,3102,2,1,1317.310496,1317.310496,3505,NO,23.76,36.5,3,2.26,6112,108.841162,118.381512,128.062737,132.601439,I,Above,Gable,0,5701,,30.13017632,0,0,,,,1,1,,0.03,nav,1,1966,2,, 15770,NJBF000083765,6279 OLD HARDING HIGHWAY,Hamilton,NJ,39.44971546,-74.74909899,RES1,3001,641,NaN,NE,1948,1948,3101,1,1,1284.359849,1284.359849,3507,NO,14.51,23.54,1,1.91,6112,108.86914,118.420946,128.101309,132.672462,I,Above,Gable,0,5701,,19.02463318,0,0,,,,1,1,,0.03,nav,1,1948,1,, 15771,NJBF000083781,6346 MONMOUTH DRIVE,Hamilton,NJ,39.44992591,-74.74958334,RES1,3001,,17,NE,1975,1975,3101,1,1,907.2903068,907.2903068,3507,NO,16.86,22.6,1,1.77,6112,108.864797,118.414082,128.094467,132.660023,I,Above,Hip,0,5701,,19.72940139,0,0,,,,1,1,,0.03,nav,1,1975,1,, 15772,NJBF000083786,6277 OLD HARDING HIGHWAY,Hamilton,NJ,39.45000333,-74.74879202,RES1,3001,,17,NE,1958,1958,3101,1,1,920.8605562,920.8605562,3507,NO,11.39,24.99,1,-0.04,6112,108.870604,118.422006,128.102156,132.674223,I,Above,Gable,0,5701,,18.19339102,0,0,,,,1,1,,0.35,nav,1,1958,1,, 15773,NJBF000083784,6348 MONMOUTH DRIVE,Hamilton,NJ,39.44998023,-74.74981391,RES1,3001,,17,NE,1955,1955,3101,1,1,1852.398309,1852.398309,3507,NO,14.86,23.59,1,2.79,6112,108.862868,118.411173,128.09159,132.654767,I,Above,Gable,0,5701,,19.22762335,0,0,,,,1,1,,0.03,nav,1,1955,1,, 15774,NJBF000083792,6350 MONMOUTH DRIVE,Hamilton,NJ,39.4500669,-74.75001982,RES1,3001,,17,NE,1953,1953,3101,1,1,1574.192295,1574.192295,3507,NO,20.27,30.11,1,2.06,6112,108.861029,118.408276,128.088703,132.649516,I,Above,Gable,0,5701,,25.18906362,0,0,,,,1,1,,0.03,nav,1,1953,1,, 15775,NJBF000083795,6275 OLD HARDING HIGHWAY,Hamilton,NJ,39.45011435,-74.7485769,RES1,3001,,17,NE,1958,1958,3101,1,1,1199.052688,1199.052688,3507,NO,14.95,20.84,1,-0.55,6112,108.871911,118.423458,128.103501,132.676774,I,Above,Gable,0,5701,,17.89205467,0,0,,,,1,1,,0.35,nav,1,1958,1,, 15776,NJBF000083796,6314 SEARS AVENUE,Hamilton,NJ,39.45011789,-74.74912555,RES1,3001,,17,NE,1958,1958,3101,1,1,932.4998796,932.4998796,3507,NO,12.84,21.24,1,-0.59,6112,108.867699,118.417505,128.097687,132.666082,I,Above,Gable,0,5701,,17.04238452,0,0,,,,1,1,,0.35,nav,1,1958,1,, 15777,NJBF000083798,6354 MONMOUTH DRIVE,Hamilton,NJ,39.45014754,-74.75053567,RES1,3001,,17,NE,1975,1975,3101,1,1,943.1602247,943.1602247,3505,NO,17.78,25.96,3,4.73,6112,108.856846,118.402095,128.08261,132.638357,I,Above,Gable,0,5701,,21.87005517,0,0,,,,1,1,,0.35,nav,1,1975,1,, 15778,NJBF000083802,6356 MONMOUTH DRIVE,Hamilton,NJ,39.45021169,-74.75110819,RES1,3001,,17,NE,1987,1987,3101,1,1,2069.519021,2069.519021,3505,NO,22.05,33.92,3,8.14,6112,108.852293,118.395452,128.076074,132.626367,I,Above,Hip,0,5701,,27.98158661,0,0,,,,1,1,,0.35,nav,1,1987,1,, 15779,NJBF000083806,6312 SEARS AVENUE,Hamilton,NJ,39.45023188,-74.74897304,RES1,3001,,17,NE,1958,1958,3101,1,1,1241.716844,1241.716844,3507,NO,11.87,26.2,1,-0.58,6112,108.86852,118.418264,128.098354,132.667388,I,Above,Gable,0,5701,,19.03137268,0,0,,,,1,1,,0.35,nav,1,1958,1,, 15780,NJBF000083807,6273 OLD HARDING HIGHWAY,Hamilton,NJ,39.45024197,-74.74840905,RES1,3001,,17,NE,1958,1958,3101,1,1,1247.534299,1247.534299,3507,NO,15.68,24.4,1,0.93,6112,108.872808,118.424271,128.10421,132.678168,I,Above,Gable,0,5701,,20.04203931,0,0,,,,1,1,,0.35,nav,1,1958,1,, 15781,NJBF000083815,6271 OLD HARDING HIGHWAY,Hamilton,NJ,39.4503601,-74.74825405,RES1,3001,,17,NE,1958,1958,3101,1,1,1514.097315,1514.097315,3507,NO,14.28,20.71,1,1.93,6112,108.873637,118.425022,128.104866,132.679456,I,Above,Hip,0,5701,,17.4949053,0,0,,,,1,1,,0.35,nav,1,1958,1,, 15782,NJBF000083816,6312 ROBERTS AVENUE,Hamilton,NJ,39.45036137,-74.74947462,RES1,3001,,17,NE,1954,1954,3101,1,1,1989.047117,1989.047117,3507,NO,12.41,24.11,1,1.8,6112,108.864288,118.411845,128.092003,132.655794,I,Above,Gable,0,5701,,18.25987574,0,0,,,,1,1,,0.35,nav,1,1954,1,, 15783,NJBF000083824,6358 MONMOUTH DRIVE,Hamilton,NJ,39.45043019,-74.75142155,RES1,3001,,17,NE,1988,1988,3101,1,1,1363.842067,1363.842067,3505,NO,12.19,18.48,3,1.12,6112,108.849229,118.39038,128.070979,132.617135,I,Above,Hip,0,5701,,15.33496518,0,0,,,,1,1,,0.03,nav,1,1988,1,, 15784,NJBF000083826,6313 ROBERTS AVENUE,Hamilton,NJ,39.45044672,-74.74990851,RES1,3001,,17,NE,1954,1954,3101,1,1,1146.731499,1146.731499,3507,NO,18.98,29.92,1,1.06,6112,108.860709,118.4065,128.086728,132.646145,I,Above,Gable,0,5701,,24.44716868,0,0,,,,1,1,,0.35,nav,1,1954,1,, 15785,NJBF000083832,6308 SEARS AVENUE,Hamilton,NJ,39.45052503,-74.74868872,RES1,3001,,17,NE,1958,1958,3101,1,1,834.5962858,834.5962858,3507,NO,14.4,29.14,1,0.24,6112,108.869803,118.419036,128.098917,132.66863,I,Above,Gable,0,5701,,21.76800424,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 15786,NJBF000083834,6360 MONMOUTH DRIVE,Hamilton,NJ,39.45059242,-74.75184031,RES1,3001,,17,NE,1987,1987,3101,1,1,1357.07219,1357.07219,3505,NO,14.15,25.62,3,2.38,6112,108.845549,118.384633,128.065258,132.60671,I,Above,Gable,0,5701,,19.88622198,0,0,,,,1,1,,0.03,nav,1,1987,1,, 15787,NJBF000083835,6364 MONMOUTH DRIVE,Hamilton,NJ,39.45059774,-74.75275429,RES1,3001,,17,NE,1988,1988,3101,1,1,704.7058585,704.7058585,3505,NO,23.19,28.7,3,7.29,6112,108.838589,118.374802,128.055632,132.588975,I,Above,Gable,0,5701,,25.94681619,0,0,,,,1,1,,0.03,nav,1,1988,1,, 15788,NJBF000083836,6362 MONMOUTH DRIVE,Hamilton,NJ,39.45059995,-74.75221739,RES1,3001,,17,NE,1988,1988,3101,1,1,1038.148398,1038.148398,3505,NO,10.77,22.09,3,-2.08,6112,108.842659,118.380532,128.061241,132.599313,I,Above,Gable,0,5701,,16.42948199,0,0,,,,1,1,,0.03,nav,1,1988,1,, 15789,NJBF000083838,6368 MONMOUTH DRIVE,Hamilton,NJ,39.45062038,-74.75321763,RES1,3001,,17,NE,1987,1987,3101,1,1,1105.998713,1105.998713,3505,NO,11.8,18.41,3,0.17,6112,108.835002,118.369671,128.050593,132.579703,I,Above,Gable,0,5701,,15.10937508,0,0,,,,1,1,,0.03,nav,1,1987,1,, 15790,NJBF000083847,6368 MONMOUTH DRIVE,Hamilton,NJ,39.45068449,-74.75298451,RES1,3001,,17,NE,1987,1987,3101,1,1,1186.453156,1186.453156,3505,NO,13.63,25.44,3,-2.18,6112,108.836569,118.371661,128.052505,132.583271,I,Above,Gable,0,5701,,19.53330399,0,0,,,,1,1,,0.03,nav,1,1987,1,, 15791,NJBF000083860,,Hamilton,NJ,39.45081597,-74.75389922,RES1,3001,,NaN,NE,1969,0,3101,1,1,1471.448656,1471.448656,3505,NO,19.18,24.59,3,4.19,6112,108.829231,118.36087,128.041858,132.563731,I,Above,Gable,0,5701,,21.88422789,0,0,,,,1,1,,0.03,nav,1,1969,1,, 15792,NJBF000083872,6359 MONMOUTH DRIVE,Hamilton,NJ,39.45094173,-74.75161404,RES1,3001,,17,NE,1955,1955,3101,1,1,1078.859252,1078.859252,3505,NO,16.35,24.02,3,-0.28,6112,108.846186,118.384319,128.064742,132.606,I,Above,Gable,0,5701,,20.18766174,0,0,,,,1,1,,0.35,nav,1,1955,1,, 15793,NJBF000083875,6361 MONMOUTH DRIVE,Hamilton,NJ,39.45096984,-74.75183487,RES1,3001,,17,NE,1936,1936,3101,1,1,806.4804947,806.4804947,3505,NO,14.79,22.01,3,-2.92,6112,108.844417,118.381732,128.062195,132.601326,I,Above,Gable,0,5701,,18.40162595,0,0,,,,1,1,,0.35,nav,1,1936,1,, 15794,NJBF000083881,6318 NELSON AVENUE,Hamilton,NJ,39.45104842,-74.75300023,RES1,3001,,17,NE,1955,1955,3101,1,1,1112.778537,1112.778537,3505,NO,19.54,24.74,3,4.64,6112,108.835321,118.368656,128.049353,132.577709,I,Above,Gable,0,5701,,22.14081455,0,0,,,,1,1,,0.35,nav,1,1955,1,, 15795,NJBF000083885,6321 NELSON AVENUE,Hamilton,NJ,39.45109529,-74.7535314,RES1,3001,,17,NE,1954,1954,3101,1,1,1678.878591,1678.878591,3505,NO,20.31,30.36,3,2.17,6112,108.831147,118.362617,128.043412,132.566787,I,Above,Gable,0,5701,,25.33641644,0,1.2,,,,1,1,,0.35,nav,1,1954,1,, 15796,NJBF000083894,6322 LIBERTY AVENUE,Hamilton,NJ,39.45125511,-74.75384686,RES1,3001,,17,NE,1954,1954,3101,1,1,1007.139493,1007.139493,3505,NO,11.92,17.52,3,1.11,6112,108.828253,118.357994,128.038794,132.558379,I,Above,Gable,0,5701,,14.71805935,0,0,,,,1,1,,0.35,nav,1,1954,1,, 15797,NJBF000083896,,Hamilton,NJ,39.45127103,-74.75447717,RES1,3001,,NaN,NE,1977,0,3101,1,1,2534.80867,2534.80867,3505,NO,22.33,36.75,3,4.75,6112,108.823432,118.351154,128.032081,132.546009,I,Above,Hip,0,5701,,29.53994816,0,0,,,,1,1,,0.03,nav,1,1977,1,, 15798,NJBF000083906,6319 LIBERTY AVENUE,Hamilton,NJ,39.45157074,-74.75420942,RES1,3001,,17,NE,1955,1955,3101,1,1,1216.518843,1216.518843,3505,NO,10.65,16.18,3,-2.17,6112,108.824524,118.351665,128.032417,132.546831,I,Above,Hip,0,5701,,13.41502078,0,0,,,,1,1,,0.35,nav,1,1955,1,, 15799,NJBF000083916,6318 LANCE AVENUE,Hamilton,NJ,39.45180144,-74.75444502,RES1,3001,,17,NE,1955,1955,3101,1,1,2170.320748,2170.320748,3505,NO,19.01,30.19,3,4.33,6112,108.822019,118.347352,128.028066,132.538959,I,Above,Hip,0,5701,,24.60296723,0,0,,,,1,1,,0.35,nav,1,1955,1,, 15800,NJBF000083925,6384 MONMOUTH DRIVE,Hamilton,NJ,39.45195204,-74.75529021,RES1,3001,,17,NE,1988,1988,3101,2,1,1877.603356,1877.603356,3505,NO,31.87,44.89,3,0.53,6112,108.81515,118.337179,128.018014,132.52051,I,Above,Gable,0,5701,,38.3780231,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 15801,NJBF000083937,6386 MONMOUTH DRIVE,Hamilton,NJ,39.45224437,-74.75576938,RES1,3001,,17,NE,1975,1975,3101,1,1,1528.639443,1528.639443,3505,NO,15.48,21.4,3,3.25,6112,108.810614,118.329806,128.010633,132.507077,I,Above,Gable,0,5701,,18.4422743,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 15802,NJBF000083938,6385 MONMOUTH DRIVE,Hamilton,NJ,39.45227598,-74.75516226,RES1,3001,,17,NE,1956,1956,3101,1,1,1042.995522,1042.995522,3505,NO,16.46,26.3,3,-1.17,6112,108.815108,118.336008,128.016694,132.51829,I,Above,Gable,0,5701,,21.3837968,0,0,,,,1,1,,0.35,nav,1,1956,1,, 15803,NJBF000083942,6115 HOOVER DRIVE,Hamilton,NJ,39.45230064,-74.768098,RES3C,3001,,33,ME,1976,1976,3301,2,1,7392.13279,7392.13279,3507,NO,25.01,35.88,1,-0.7,6112,108.718487,118.200096,127.882805,132.270556,I,Above,Gable,0,5701,,30.44861202,0,0,,,,1,1,,0.35,nav,1,1976,2,, 15804,NJBF000083950,6388 MONMOUTH DRIVE,Hamilton,NJ,39.45243917,-74.75603351,RES1,3001,,17,NE,1960,1960,3101,1,1,1332.833536,1332.833536,3505,NO,18.85,29.24,3,5.57,6112,108.808,118.325468,128.006278,132.499166,I,Above,Hip,0,5701,,24.04511151,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 15805,NJBF000083977,6314 PHILIPS AVENUE,Hamilton,NJ,39.45273947,-74.75582242,RES1,3001,,17,NE,1952,1952,3101,1,1,608.7414609,608.7414609,3505,NO,22.69,30.34,3,5.43,6112,108.808669,118.325374,128.00603,132.498909,I,Above,Gable,0,5701,,26.51360865,0,0,,,,1,1,,0.35,nav,1,1952,1,, 15806,NJBF000083978,6390 MONMOUTH DRIVE,Hamilton,NJ,39.45274235,-74.75647259,RES1,3001,,17,NE,1975,1975,3101,1,1,1335.740225,1335.740225,3505,NO,18.36,25.43,3,5.18,6112,108.803734,118.318442,127.999233,132.486355,I,Above,Hip,0,5701,,21.89475203,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 15807,NJBF000083995,6392 MONMOUTH DRIVE,Hamilton,NJ,39.45290359,-74.75672134,RES1,3001,,17,NE,1975,1975,3101,1,1,1418.137126,1418.137126,3505,NO,20.69,33.42,3,6.96,6112,108.801354,118.314546,127.995331,132.479253,I,Above,Gable,0,5701,,27.05343052,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 15808,NJBF000083989,6055 HOOVER DRIVE,Hamilton,NJ,39.45283841,-74.76477781,RES3C,3001,,33,ME,1976,1976,3301,2,1,6992.791098,6992.791098,3507,NO,28.92,35.32,1,1.15,6112,108.741235,118.230388,127.912559,132.326047,I,Above,Gable,0,5701,,32.12322817,0,0,,,,1,1,,0.35,nav,1,1976,2,, 15809,NJBF000084003,6104 HOOVER DRIVE,Hamilton,NJ,39.4530011,-74.76712645,RES3C,3001,,33,ME,1976,1976,3301,2,1,7084.852893,7084.852893,3507,NO,36.91,41.93,1,-0.14,6112,108.723319,118.204706,127.88713,132.279019,I,Above,Gable,0,5701,,39.41994962,0,0,,,,1,1,,0.35,nav,1,1976,2,, 15810,NJBF000084008,6311 PHILIPS AVENUE,Hamilton,NJ,39.45304384,-74.75618806,RES1,3001,,17,NE,1955,1955,3101,1,1,1056.571932,1056.571932,3505,NO,19.71,34.69,3,5.88,6112,108.80495,118.319105,127.999729,132.487471,I,Above,Gable,0,5701,,27.19910574,0,0,,,,1,1,,0.35,nav,1,1955,1,, 15811,NJBF000084014,6144 HARLEY AVENUE,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,17,NE,1920,1978,3101,1,1,2608.501316,2608.501316,3507,NO,17.8,25.71,1,-0.41,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,21.75625519,0,0,,,,1,1,,0.15,nav,1,1920,1,, 15812,NJBF000084020,6075 HOOVER DRIVE,Hamilton,NJ,39.45315724,-74.76617067,RES3C,3001,,33,ME,1976,1976,3301,1,1,7240.928923,7240.928923,3507,NO,15.55,26.34,1,-0.98,6112,108.729864,118.213403,127.895669,132.29495,I,Above,Hip,0,5701,,20.94112308,0,0,,,,1,1,,0.35,nav,1,1976,1,, 15813,NJBF000084021,6065 HOOVER DRIVE,Hamilton,NJ,39.45315821,-74.7653569,RES3C,3001,,33,ME,1976,1976,3301,1,1,7300.024463,7300.024463,3507,NO,18.72,31.76,1,2.83,6112,108.735892,118.22186,127.904021,132.310431,I,Above,Gable,0,5701,,25.24054909,0,0,,,,1,1,,0.35,nav,1,1976,1,, 15814,NJBF000084076,6225 ESTELLE AVENUE,Hamilton,NJ,39.45437211,-74.84462205,RES1,3001,,17,NE,1960,1960,3102,1,1,2300.258633,2300.258633,3505,NO,18.3,26.27,3,1.04,6112,108.181754,117.444418,127.120939,130.864606,I,Above,Gable,0,5701,,22.28506377,0,0,,,,1,1,,0.35,nav,1,1960,1,, 15815,NJBF000084126,6203 HARLEY AVENUE,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,17,NE,1920,1989,3101,2,1,1516.043386,1516.043386,3507,NO,32.73,45.87,1,2.27,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,39.29955454,0,0,,,,1,1,,0.15,nav,1,1920,2,, 15816,NJBF000084140,,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,NaN,NE,1920,0,3101,1,1,1631.399917,1631.399917,3507,NO,21.33,28.44,1,1.87,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,24.88585021,0,0,,,,1,1,,0.15,nav,1,1920,1,, 15817,NJBF000084144,6235 HARLEY AVENUE,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,16,NE,1920,1972,3101,1,1,1261.103663,1261.103663,3507,NO,18.6,26.41,1,1.61,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,22.50650454,0,0,,,,1,1,,0.15,nav,1,1920,1,, 15818,NJBF000084160,6237 STERLING AVENUE,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,17,NE,1920,1970,3101,1,1,1960.991171,1960.991171,3507,NO,12.8,21.33,1,1.43,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,17.06680996,0,1.1,,,,1,1,,0.15,nav,1,1920,1,, 15819,NJBF000084181,6352 PITTSBURG AVENUE,Hamilton,NJ,39.45767738,-74.79971262,RES1,3001,,17,NE,1920,1920,3101,2,2,953.8279971,953.8279971,3507,NO,36.78,44.54,1,-0.26,6112,108.472741,117.84104,127.523923,131.606441,I,Above,Gable,0,5701,,40.65558951,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 15820,NJBF000084190,6352 PITTSBURG AVENUE,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,17,NE,1920,1920,3101,2,2,2259.52983,2259.52983,3507,NO,37.15,42.49,1,0.81,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,39.82082817,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 15821,NJBF000084194,6352 PITTSBURG AVENUE,Hamilton,NJ,39.45803533,-74.80038462,RES1,3001,,17,NE,1920,1920,3101,2,2,618.4410817,618.4410817,3507,NO,26.94,36.26,1,0.63,6112,108.466725,117.831733,127.514602,131.589284,I,Above,Gable,0,5701,,31.6031186,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 15822,NJBF000084196,6352 PITTSBURG AVENUE,Hamilton,NJ,39.45807438,-74.80019518,RES1,3001,,17,NE,1920,1920,3101,2,2,802.6034157,802.6034157,3507,NO,30.62,38.19,1,2.62,6112,108.467915,117.83328,127.51616,131.592195,I,Above,Hip,0,5701,,34.40813321,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 15823,NJBF000084198,6352 PITTSBURG AVENUE,Hamilton,NJ,39.45816758,-74.80057611,RES1,3001,,17,NE,1920,1920,3101,2,2,1885.36928,1885.36928,3507,NO,29.77,40.37,1,0.49,6112,108.464902,117.828848,127.511715,131.58398,I,Above,Gable,0,5701,,35.07219884,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 15824,NJBF000084213,6352 PITTSBURG AVENUE,Hamilton,NJ,39.45862814,-74.80051191,RES1,3001,,17,NE,1920,1920,3101,2,2,10088.17013,10088.17013,3507,NO,39.72,50.82,1,1.88,6112,108.463677,117.825917,127.508811,131.578787,I,Above,Flat,0,5701,,45.27119312,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 15825,NJBF000084257,6270 KLONDYKE AVENUE,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,16,NE,1920,1900,3101,2,1,719.2544941,719.2544941,3507,NO,39.16,51.19,1,1.99,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,45.17425398,0,0,,,,1,1,,0.15,nav,1,1920,2,, 15826,NJBF000084287,6270 KLONDYKE AVENUE,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,16,NE,1920,1900,3101,2,1,1772.937104,1772.937104,3507,NO,35.65,49,1,2.92,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,42.32366253,0,0,,,,1,1,,0.15,nav,1,1920,2,, 15827,NJBF000084299,6323 HARLEY AVENUE,Hamilton,NJ,39.45791062,-74.80017943,RES1,3001,,16,NE,1920,1900,3101,1,1,2053.052712,2053.052712,3507,NO,12.85,18.58,1,0.77,6112,108.468621,117.834695,127.517568,131.594738,I,Above,Gable,0,5701,,15.71386515,0,0,,,,1,1,,0.15,nav,1,1920,1,, 15828,NJBF000084978,6954 LANDIS AVENUE,Hamilton,NJ,39.47193065,-74.84756385,RES1,3001,,16,NE,1960,1960,3102,1,1,3310.335777,3310.335777,3507,NO,18.18,31.48,1,-0.25,6112,108.093109,117.285792,126.967426,130.592359,I,Above,Flat,0,5701,,24.82817611,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 15829,NJBF000084992,6489 WEYMOUTH ROAD,Hamilton,NJ,39.47072891,-74.7392054,RES1,3001,,16,NE,1999,1953,3102,1,1,630.0559925,630.0559925,3505,NO,12.55,19.65,3,-0.72,6112,108.891898,118.363081,128.032459,132.558771,I,Above,Hip,0,5701,,16.09920671,0,1.2,,,,1,1,,0.35,nav,1,1999,1,, 15830,NJBF000084997,6489 WEYMOUTH ROAD,Hamilton,NJ,39.47072891,-74.7392054,RES1,3001,,16,NE,1999,1953,3102,1,1,1526.694904,1526.694904,3505,NO,21.52,35.35,3,4.79,6112,108.891898,118.363081,128.032459,132.558771,I,Above,Hip,0,5701,,28.43875135,0,1.2,,,,1,1,,0.35,nav,1,1999,1,, 15831,NJBF000085218,6378 MARYLAND AVENUE,Hamilton,NJ,39.47552664,-74.83477697,RES1,3001,,17,NE,1978,1978,3102,1,1,2035.615574,2035.615574,3507,NO,10.3,20.94,1,-0.91,6112,108.166007,117.374237,127.058291,130.754389,I,Above,Gable,0,5701,,15.62326143,0,0,,,,1,1,,0.35,nav,1,1978,1,, 15832,NJBF000085361,6669 WEYMOUTH RD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,15,ME,1985,1946,3401,1,2,508.8905029,508.8905029,3507,NO,17.64,24.68,1,2.45,6106,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,21.15919167,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15833,NJBF000085452,1428 WEST POINT AVE,Hamilton,NJ,39.489184,-74.82419117,RES1,3001,,16,NE,1999,1999,3101,2,1,1344.473431,1344.473431,3505,NO,40.07,54.75,3,1.95,6112,108.193091,117.367652,127.056521,130.749613,I,Above,Gable,0,5701,,47.41146259,0,0,,,,1,1,,0.35,nav,1,1999,2,, 15834,NJBF000085456,1476 TWENTIETH STREET,Hamilton,NJ,39.48936378,-74.82109393,RES1,3001,,16,NE,1945,1945,3101,1,1,1395.857796,1395.857796,3505,NO,13.16,27.66,3,-0.84,6112,108.214432,117.394814,127.083736,130.799462,I,Above,Gable,0,5701,,20.41378671,0,0,,,,1,1,,0.35,nav,1,1945,1,, 15835,NJBF000085512,6767 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,999,NaN,ME,1985,1968,3401,2,1,1402.396003,1402.396003,3507,NO,40.53,53.94,1,2.97,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,47.2352387,0,0,,,,1,1,,0.03,nav,1,1985,2,, 15836,NJBF000085519,6767 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,999,NaN,ME,1985,1968,3401,3,1,757.3697348,757.3697348,3507,NO,58.62,67.08,1,1.05,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,62.84832389,0,0,,,,1,1,,0.03,nav,1,1985,3,, 15837,NJBF000085521,6767 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,999,NaN,ME,1985,1968,3401,3,1,1474.783724,1474.783724,3507,NO,41.66,51.83,1,2.66,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,46.74526686,0,0,,,,1,1,,0.03,nav,1,1985,3,, 15838,NJBF000085526,6767 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,999,NaN,ME,1985,1968,3401,2,1,3082.482917,3082.482917,3507,NO,27.85,39.82,1,2.81,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,33.83832691,0,0,,,,1,1,,0.03,nav,1,1985,2,, 15839,NJBF000085566,6777 WEYMOUTH RD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,16,ME,1985,1950,3401,2,1,1865.001188,1865.001188,3507,NO,34.51,45.68,1,1.62,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,40.09342994,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 15840,NJBF000085607,6792 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,15,ME,1985,1926,3401,2,1,2064.681522,2064.681522,3507,NO,37.95,45.23,1,0.8,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,41.58923468,0,0,,,,1,1,,0.03,nav,1,1985,2,, 15841,NJBF000085618,6795 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,17,ME,1985,1979,3401,1,1,4456.033632,4456.033632,3507,NO,15.5,22,1,1.59,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,18.75081286,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 15842,NJBF000085648,6807 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,14,ME,1985,1928,3401,2,1,2052.852721,2052.852721,3507,NO,29,42.01,1,2.94,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,35.50568547,0,0,,,,1,1,,0.03,nav,1,1985,2,, 15843,NJBF000085651,6812 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,16,ME,1985,1960,3401,2,1,1531.553707,1531.553707,3507,NO,38.16,44.93,1,0.84,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,41.54724798,0,0,,,,1,1,,0.03,nav,1,1985,2,, 15844,NJBF000085658,BLACK HORSE PIKE,Hamilton,NJ,39.49846051,-74.75242189,COM1,3001,,NaN,ME,1969,0,3401,3,1,1266.917438,1266.917438,3507,NO,37.67,42.96,1,-0.92,6112,108.718706,117.998258,127.676111,131.91299,I,Above,Hip,0,NaN,,40.31243105,0,0,,,,1,1,,0.35,nav,1,1969,3,, 15845,NJBF000085882,6667 BLACK HORSE PIKE,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,16,ME,1985,1950,3401,1,1,1078.86847,1078.86847,3507,NO,20.25,27.9,1,2.43,6109,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,24.07643078,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15846,NJBF000085888,6667 BLACK HORSE PIKE,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,16,ME,1985,1950,3401,1,1,1136.066833,1136.066833,3507,NO,11.51,17.37,1,-0.39,6109,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,14.44146107,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15847,NJBF000085906,6901 WEYMOUTH ROAD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,16,ME,1985,1952,3401,1,1,1236.873818,1236.873818,3507,NO,21.15,32.32,1,1.73,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,26.73236519,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15848,NJBF000086274,6971 DEEPRUN RD,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,,NaN,ME,1985,1805,3401,1,1,2988.751496,2988.751496,3507,NO,21.81,32.44,1,2.55,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,27.1286466,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15849,NJBF000086299,6924 BLACK HORSE PIKE,Hamilton,NJ,39.51271952,-74.77835066,COM8,3001,639,NaN,ME,1985,1985,3401,1,1,3782.346653,3782.346653,3507,NO,19,26.91,1,2.06,6112,108.471829,117.619676,127.312556,131.243016,I,Above,Flat,0,5701,,22.95179611,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15850,NJBF000086426,6913 BLACK HORSE PIKE,Hamilton,NJ,39.51374074,-74.77665089,COM4,3004,,16,ME,1960,1960,3401,1,1,2092.790121,2092.790121,3507,NO,14.35,25.35,1,0.45,6110,108.483085,117.628218,127.321187,131.260297,I,Above,Gable,0,5701,,19.85107978,0,0,,,,1,1,,1,nav,1,1960,1,, 15851,NJBF000086441,6913 BLACK HORSE PIKE,Hamilton,NJ,39.51383944,-74.77641344,COM4,3004,,16,ME,1960,1960,3401,1,1,856.8947193,856.8947193,3507,NO,18.39,25.54,1,-0.87,6106,108.484777,117.629777,127.322735,131.263308,I,Above,Gable,0,5701,,21.96605838,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15852,NJBF000086484,6939 BLACK HORSE PIKE,Hamilton,NJ,39.51417395,-74.77857193,GOV2,3004,,NaN,E,1969,0,3401,1,1,3028.192163,3028.192163,3507,NO,17.05,22.3,1,0.55,6110,108.466515,117.605832,127.299538,131.219992,I,Above,Hip,0,5701,,19.67726635,0,0,,,,1,1,,0.35,nav,1,1969,1,, 15853,NJBF000086450,6935 BLACK HORSE PIKE,Hamilton,NJ,39.51390851,-74.77842456,COM4,3004,210,NaN,ME,1948,1948,3401,1,1,16322.74663,16322.74663,3507,NO,14.43,20.93,1,1.98,6110,108.468344,117.609405,127.30293,131.226104,I,Above,Flat,0,5701,,17.67638697,0,0,,,,1,1,,1,nav,1,1948,1,, 15854,NJBF000086544,6905 BLACK HORSE PIKE,Hamilton,NJ,39.5148324,-74.7752782,COM4,3004,,16,ME,1960,1960,3401,1,1,718.2803131,718.2803131,3507,NO,13.87,19.76,1,2.57,6110,108.491614,117.632985,127.326169,131.270776,I,Above,Gable,0,5701,,16.814944,0,0,,,,1,1,,1,nav,1,1960,1,, 15855,NJBF000086550,6905 BLACK HORSE PIKE,Hamilton,NJ,39.51493837,-74.77473041,COM4,3004,,16,ME,1960,1960,3401,1,1,3850.197856,3850.197856,3507,NO,14.05,20.12,1,1.34,6106,108.495824,117.637547,127.330637,131.279282,I,Above,Flat,0,5701,,17.08192029,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15856,NJBF000086558,6905 BLACK HORSE PIKE,Hamilton,NJ,39.51502949,-74.77514357,COM4,3004,,16,ME,1960,1960,3401,1,1,2790.714366,2790.714366,3507,NO,20.68,25.81,1,1.86,6106,108.492235,117.63272,127.325975,131.270614,I,Above,Gable,0,5701,,23.24161809,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15857,NJBF000086564,2019 GALE AVENUE,Hamilton,NJ,39.51510168,-74.77894726,RES1,3001,,16,NE,1950,1950,3102,1,1,1625.571113,1625.571113,3507,NO,15.34,22.04,1,1.06,6106,108.46124,117.594698,127.289003,131.201136,I,Above,Gable,0,5701,,18.69042361,0,0,,,,1,1,,0.03,nav,1,1950,1,, 15858,NJBF000086585,2023 GALE AVENUE,Hamilton,NJ,39.51535019,-74.77882714,RES1,3001,,17,NE,1985,1985,3102,1,1,1730.439285,1730.439285,3507,NO,20.5,27.49,1,1.99,6106,108.461607,117.593882,127.288292,131.200064,I,Above,Gable,0,5701,,23.99687292,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15859,NJBF000086597,2027 GALE AVENUE,Hamilton,NJ,39.51556001,-74.77877492,RES1,3001,,17,NE,1973,1973,3102,1,1,3100.746806,3100.746806,3507,NO,19.17,29.26,1,2.12,6110,108.461519,117.592703,127.287217,131.198266,I,Above,Gable,0,5701,,24.21620204,0,0,,,,1,1,,0.35,nav,1,1973,1,, 15860,NJBF000086601,6949 BLACK HORSE PIKE,Hamilton,NJ,39.51560933,-74.77966956,RES1,3001,,NaN,NE,1969,0,3102,2,1,1756.672284,1756.672284,3507,NO,27.27,38.75,1,1.08,6112,108.454181,117.583542,127.278309,131.181546,I,Above,Gable,0,5701,,33.01208464,0,0,,,,1,1,,0.03,nav,1,1969,2,, 15861,NJBF000086612,2031 GALE AVENUE,Hamilton,NJ,39.51575714,-74.7786753,RES1,3001,,17,NE,1999,1999,3102,1,1,1180.637294,1180.637294,3507,NO,17.95,29.6,1,2.11,6110,108.46185,117.5921,127.286698,131.197501,I,Above,Gable,0,5701,,23.77642629,0,0,,,,1,1,,0.35,nav,1,1999,1,, 15862,NJBF000086620,2024 WEYMOUTH RD,Hamilton,NJ,39.51591175,-74.77960099,RES1,3001,,16,NE,1989,1989,3102,1,1,595.1783429,595.1783429,3507,NO,12.37,26.23,1,-0.02,6112,108.454001,117.581784,127.276701,131.17885,I,Above,Gable,0,5701,,19.3024253,0,0,,,,1,1,,0.7,nav,1,1989,1,, 15863,NJBF000086619,2035 GALE AVENUE,Hamilton,NJ,39.5159086,-74.77843635,RES1,3001,,16,NE,1960,1960,3102,1,1,611.6436733,611.6436733,3507,NO,14.4,21.64,1,2.2,6110,108.463414,117.593221,127.287843,131.19982,I,Above,Gable,0,5701,,18.02110765,0,0,,,,1,1,,0.35,nav,1,1960,1,, 15864,NJBF000086630,2039 GALE AVENUE,Hamilton,NJ,39.51613475,-74.77836428,RES1,3001,,17,NE,1974,1974,3102,1,1,881.1303839,881.1303839,3507,NO,15.97,30.66,1,0.08,6110,108.463451,117.592109,127.286839,131.198175,I,Above,Gable,0,5701,,23.31606435,0,0,,,,1,1,,0.35,nav,1,1974,1,, 15865,NJBF000086636,2043 GALE AVENUE,Hamilton,NJ,39.5163457,-74.77827773,RES1,3001,,17,NE,1960,1960,3102,1,1,1318.284688,1318.284688,3507,NO,15.26,21.22,1,1.84,6110,108.463638,117.591254,127.286081,131.196979,I,Above,Gable,0,5701,,18.24068542,0,0,,,,1,1,,0.35,nav,1,1960,1,, 15866,NJBF000086638,2032 WEYMOUTH ROAD,Hamilton,NJ,39.51635694,-74.77948285,RES1,3001,,17,NE,1840,1840,3102,2,1,1439.464034,1439.464034,3507,NO,28.51,34.29,1,0.97,6112,108.453874,117.579362,127.2745,131.175194,I,Above,Flat,0,5701,,31.40089914,0,0,,,,1,1,,1,nav,1,1840,2,, 15867,NJBF000086660,2055 GALE AVENUE,Hamilton,NJ,39.51701988,-74.77801158,RES1,3001,,17,NE,1999,1999,3102,2,1,1321.209467,1321.209467,3507,NO,24.51,38.06,1,1.83,6112,108.46417,117.588436,127.283578,131.193006,I,Above,Flat,0,5701,,31.28481118,0,0,,,,1,1,,0.35,nav,1,1999,2,, 15868,NJBF000086662,2058 GALE AVENUE,Hamilton,NJ,39.51705418,-74.7772726,RES1,3001,,16,NE,2008,2008,3102,2,1,2555.15712,2555.15712,3507,NO,36.91,45.66,1,2.49,6112,108.470084,117.595415,127.290384,131.205843,I,Above,Flat,0,5701,,41.28492344,0,0,,,,1,1,,0.35,nav,1,2008,2,, 15869,NJBF000086670,6956 THERESA AVENUE,Hamilton,NJ,39.51723336,-74.77643072,RES1,3001,,17,NE,1992,1992,3102,2,1,1231.049751,1231.049751,3507,NO,36.4,46.02,1,1.8,6110,108.476501,117.602247,127.297096,131.218655,I,Above,Gable,0,5701,,41.20784084,0,0,,,,1,1,,0.35,nav,1,1992,2,, 15870,NJBF000086678,6956 THERESA AVENUE,Hamilton,NJ,39.51738317,-74.77649023,RES1,3001,,17,NE,1992,1992,3102,2,1,841.3822285,841.3822285,3507,NO,24.63,31.77,1,-0.38,6110,108.475663,117.600456,127.295407,131.215644,I,Above,Gable,0,5701,,28.20202444,0,0,,,,1,1,,0.35,nav,1,1992,2,, 15871,NJBF000086679,2061 GALE AVENUE,Hamilton,NJ,39.51738647,-74.77810737,RES1,3001,,17,NE,1955,1955,3102,1,1,3603.029208,3603.029208,3507,NO,19.66,27.25,1,2.03,6110,108.46252,117.584555,127.279932,131.186554,I,Above,Hip,0,5701,,23.45314112,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 15872,NJBF000086757,2058 IRONFORGE ROAD,Hamilton,NJ,39.51836805,-74.78029721,RES1,3001,,15,NE,1940,1940,3102,1,1,739.6055748,739.6055748,3507,NO,15.98,22.4,1,1.16,6106,108.442434,117.555238,127.251735,131.134622,I,Above,Gable,0,5701,,19.19043873,0,0,,,,1,1,,0.03,nav,1,1940,1,, 15873,NJBF000086771,2060 IRONFORGE ROAD,Hamilton,NJ,39.51850182,-74.7800195,RES1,3001,,16,NE,1936,1936,3102,1,1,1213.611186,1213.611186,3507,NO,14.07,23.22,1,0.96,6106,108.444355,117.556871,127.25338,131.13787,I,Above,Gable,0,5701,,18.64636792,0,0,,,,1,1,,0.03,nav,1,1936,1,, 15874,NJBF000086794,7280 VENICE BLVD,Hamilton,NJ,39.51884111,-74.84522952,RES1,3005,,NaN,NE,1900,1900,3101,1,1,1514.123746,1514.123746,3505,NO,16.34,25.59,3,2.98,6109,107.952924,116.956026,126.657969,130.024214,I,Above,Flat,0,5701,,20.96579889,0,0,,,,1,1,,0.03,nav,1,1900,1,, 15875,NJBF000086789,2062 IRONFORGE ROAD,Hamilton,NJ,39.51878431,-74.77967391,RES1,3001,,16,NE,1940,1940,3102,1,1,773.5304814,773.5304814,3507,NO,13.82,28.32,1,1.1,6106,108.446464,117.557966,127.254557,131.140413,I,Above,Gable,0,5701,,21.07250811,0,0,,,,1,1,,0.03,nav,1,1940,1,, 15876,NJBF000086802,2083 GALE AVENUE,Hamilton,NJ,39.51894089,-74.77811003,RES1,3001,,16,NE,1980,1980,3102,1,2,785.1582166,785.1582166,3507,NO,14.04,27.23,1,0.03,6109,108.458766,117.571987,127.268279,131.166394,I,Above,Gable,0,5701,,20.63288724,0,0,,,,1,1,,0.03,nav,1,1980,1,, 15877,NJBF000086820,2061 IRONFORGE ROAD,Hamilton,NJ,39.51917629,-74.78052317,RES1,3001,,17,NE,1950,1950,3102,1,1,1655.637276,1655.637276,3507,NO,17.36,27.89,1,-0.69,6106,108.438654,117.546533,127.243565,131.120193,I,Above,Gable,0,5701,,22.62207838,0,0,,,,1,1,,0.03,nav,1,1950,1,, 15878,NJBF000086833,2063 IRONFORGE ROAD,Hamilton,NJ,39.51941444,-74.78003929,RES1,3001,,17,NE,1967,1967,3102,1,1,2117.033767,2117.033767,3507,NO,14.88,22.95,1,-0.6,6109,108.441992,117.549332,127.246389,131.125787,I,Above,Hip,0,5701,,18.91172355,0,0,,,,1,1,,0.03,nav,1,1967,1,, 15879,NJBF000086862,1958 MALAGA ROAD,Hamilton,NJ,39.51941444,-74.78003929,RES1,3001,,16,NE,1967,1962,3102,1,1,2141.014992,2141.014992,3507,NO,15.03,24.79,1,0.89,6112,108.441992,117.549332,127.246389,131.125787,I,Above,Hip,0,5701,,19.91012965,0,1.2,,,,1,1,,0.03,nav,1,1967,1,, 15880,NJBF000086870,7009 BRIDGE ROAD,Hamilton,NJ,39.5199492,-74.7799721,RES1,3001,,17,NE,2002,2002,3102,1,1,1926.068401,1926.068401,3507,NO,14.59,27.62,1,1.83,6109,108.441244,117.545674,127.243038,131.12012,I,Above,Gable,0,5701,,21.10830798,0,0,,,,1,1,,0.03,nav,1,2002,1,, 15881,NJBF000086881,7009 BRIDGE ROAD,Hamilton,NJ,39.52010881,-74.77987168,RES1,3001,,17,NE,2002,2002,3102,1,1,1444.309978,1444.309978,3507,NO,11.83,18.17,1,-0.81,6109,108.441669,117.545358,127.242796,131.119855,I,Above,Gable,0,5701,,14.99926489,0,0,,,,1,1,,0.03,nav,1,2002,1,, 15882,NJBF000086898,7013 BRIDGE ROAD,Hamilton,NJ,39.52063588,-74.78016449,RES1,3001,,17,NE,1960,1960,3102,1,1,2154.849022,2154.849022,3507,NO,17.26,22.64,1,0.38,6109,108.438035,117.538266,127.236098,131.107896,I,Above,Gable,0,5701,,19.94706281,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15883,NJBF000086900,7013 BRIDGE ROAD,Hamilton,NJ,39.52070998,-74.78033913,RES1,3001,,17,NE,1960,1960,3102,1,1,923.772267,923.772267,3507,NO,13.24,22.22,1,0.09,6106,108.43644,117.535966,127.233886,131.103828,I,Above,Gable,0,5701,,17.73188131,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15884,NJBF000086909,7015 BRIDGE ROAD,Hamilton,NJ,39.52104524,-74.78057587,RES1,3001,,17,NE,1972,1972,3102,1,1,2370.035875,2370.035875,3507,NO,18.12,30.36,1,2.64,6109,108.433714,117.53096,127.229145,131.095324,I,Above,Gable,0,5701,,24.23988579,0,0,,,,1,1,,0.03,nav,1,1972,1,, 15885,NJBF000086914,7015 BRIDGE ROAD,Hamilton,NJ,39.52125892,-74.78078682,RES1,3001,,17,NE,1972,1972,3102,1,1,844.2897629,844.2897629,3507,NO,19.2,30.1,1,2.27,6109,108.43149,117.527184,127.225552,131.088834,I,Above,Gable,0,5701,,24.64972804,0,0,,,,1,1,,0.03,nav,1,1972,1,, 15886,NJBF000087002,7304 SMITH AVENUE,Hamilton,NJ,39.52373536,-74.83141577,RES1,3005,,16,NE,1999,1999,3101,1,1,1939.653621,1939.653621,3505,NO,8.87,17.66,3,-1.73,6112,108.037389,117.03968,126.744833,130.182036,I,Above,Gable,0,5701,,13.2645104,0,0,,,,1,1,,0.35,nav,1,1999,1,, 15887,NJBF000087019,7316 SMITH AVENUE,Hamilton,NJ,39.52403623,-74.8329098,RES1,3005,,17,NE,1999,1999,3101,2,1,831.6990187,831.6990187,3505,NO,31.18,45.77,3,2.97,6112,108.025692,117.024241,126.729558,130.153629,I,Above,Flat,0,5701,,38.47224401,0,0,,,,1,1,,0.35,nav,1,1999,2,, 15888,NJBF000087074,1322 ORCHARD ROAD,Hamilton,NJ,39.52478617,-74.84367394,RES1,3005,,16,NE,1972,1972,3101,1,1,2714.153995,2714.153995,3505,NO,12.24,18.64,3,-1.91,6112,107.946298,116.924886,126.630311,129.97558,I,Above,Gable,0,5701,,15.44008616,0,0,,,,1,1,,0.35,nav,1,1972,1,, 15889,NJBF000087082,7312 STRAND AVENUE,Hamilton,NJ,39.52490167,-74.83825392,RES1,3005,,17,NE,2006,2006,3101,2,1,1674.050741,1674.050741,3505,NO,38.78,49.09,3,8.66,6112,107.984664,116.970952,126.676665,130.055715,I,Above,Gable,0,5701,,43.93759089,0,0,,,,1,1,,0.35,nav,1,2006,2,, 15890,NJBF000087143,7321 SMITH AVENUE,Hamilton,NJ,39.52575156,-74.82945332,RES1,3005,,17,NE,2013,2013,3101,1,1,2135.294029,2135.294029,3505,NO,24.98,38.2,3,7.79,6109,108.045976,117.041594,126.747986,130.192958,I,Above,Gable,0,5701,,31.59178059,0,1.1,,,,1,1,,0.03,nav,1,2013,1,, 15891,NJBF000087185,1317 ORCHARD ROAD,Hamilton,NJ,39.52663373,-74.84492387,RES1,3005,,17,NE,1970,1970,3101,1,1,1950.32214,1950.32214,3505,NO,16.3,30.2,3,5.11,6112,107.932006,116.900256,126.606725,129.941709,I,Above,Hip,0,5701,,23.25295446,0,0,,,,1,1,,0.35,nav,1,1970,1,, 15892,NJBF000087274,7206 CHERRIMONG DRIVE,Hamilton,NJ,39.52934842,-74.78775039,RES1,3001,,17,NE,1957,1957,3102,1,1,1478.244703,1478.244703,3507,NO,12.97,25.86,1,1.71,6112,108.355709,117.395076,127.100324,130.86499,I,Above,Hip,0,5701,,19.41254678,0,1.2,,,,1,1,,0.35,nav,1,1957,1,, 15893,NJBF000087277,7206 CHERRIMONG DRIVE,Hamilton,NJ,39.52947077,-74.7874124,RES1,3001,,17,NE,1957,1957,3102,1,1,1612.970083,1612.970083,3507,NO,13.1,25.87,1,-0.89,6112,108.358126,117.397299,127.102572,130.86939,I,Above,Hip,0,5701,,19.48754817,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, 15894,NJBF000087282,7208 CHERRY LANE,Hamilton,NJ,39.52963939,-74.78789168,RES1,3001,,17,NE,2016,2016,3102,2,1,800.6732784,800.6732784,3507,NO,30.33,35.67,1,2.41,6112,108.353858,117.391383,127.096864,130.858963,I,Above,Gable,0,5701,,33.00313478,0,0,,,,1,1,,0.03,nav,1,2016,2,, 15895,NJBF000087286,7050 WEYMOUTH ROAD,Hamilton,NJ,39.52987391,-74.78123281,RES1,3001,,17,NE,1980,1980,3101,2,1,1351.249477,1351.249477,3507,NO,24.67,38.02,1,-0.42,6109,108.407224,117.453163,127.157462,130.972638,I,Above,Gable,0,5701,,31.34393155,0,0,,,,1,1,,0.03,nav,1,1980,2,, 15896,NJBF000087293,7202 CHERRIMONG DRIVE,Hamilton,NJ,39.53009086,-74.78489257,RES1,3001,,17,NE,1978,1978,3102,1,1,860.7637509,860.7637509,3507,NO,17.83,27.18,1,-0.78,6106,108.376945,117.416306,127.121536,130.905817,I,Above,Gable,0,5701,,22.50677226,0,0,,,,1,1,,0.03,nav,1,1978,1,, 15897,NJBF000087296,7082 WEYMOUTH ROAD,Hamilton,NJ,39.53012769,-74.78183481,RES1,3001,,16,NE,1960,1960,3101,1,1,914.0846891,914.0846891,3507,NO,16.52,31.34,1,2.14,6109,108.401705,117.44531,127.149927,130.958926,I,Above,Gable,0,5701,,23.9322446,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 15898,NJBF000087301,7202 CHERRIMONG DRIVE,Hamilton,NJ,39.5302933,-74.78545653,RES1,3001,,17,NE,1978,1978,3102,1,1,3477.98241,3477.98241,3507,NO,14.79,28.54,1,0.92,6112,108.371893,117.409288,127.114777,130.893484,I,Above,Gable,0,5701,,21.66602672,0,0,,,,1,1,,0.35,nav,1,1978,1,, 15899,NJBF000087327,7304 DRIFTWOOD LANE,Hamilton,NJ,39.53093549,-74.78898316,RES1,3001,,17,NE,1989,1989,3102,2,1,1272.73847,1272.73847,3507,NO,35.25,41.87,1,0.45,6106,108.341928,117.370597,127.07721,130.824232,I,Above,Gable,0,5701,,38.55997298,0,0,,,,1,1,,0.03,nav,1,1989,2,, 15900,NJBF000087341,7308 DRIFTWOOD LANE,Hamilton,NJ,39.5316484,-74.78917559,RES1,3001,,17,NE,1960,1960,3102,1,1,674.6745513,674.6745513,3507,NO,13.14,19.77,1,2.04,6112,108.338633,117.363027,127.070196,130.812272,I,Above,Gable,0,5701,,16.45450131,0,0,,,,1,1,,0.35,nav,1,1960,1,, 15901,NJBF000087342,7308 DRIFTWOOD LANE,Hamilton,NJ,39.53166152,-74.78886783,RES1,3001,,17,NE,1960,1960,3102,1,1,2504.759307,2504.759307,3507,NO,18.51,30.78,1,1.97,6112,108.341072,117.365828,127.072954,130.817448,I,Above,Gable,0,5701,,24.64972558,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15902,NJBF000087344,7082 WEYMOUTH ROAD,Hamilton,NJ,39.53173498,-74.78255873,RES1,3001,,16,NE,1960,1960,3101,1,1,1611.034573,1611.034573,3507,NO,18.38,29.65,1,2.45,6109,108.391961,117.425314,127.131275,130.926443,I,Above,Gable,0,5701,,24.01665565,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 15903,NJBF000087358,7312 DRIFTWOOD LANE,Hamilton,NJ,39.53206962,-74.7892198,RES1,3001,,17,NE,1956,1956,3102,1,1,2625.931049,2625.931049,3507,NO,13.75,21.96,1,-0.9,6112,108.337247,117.359211,127.066699,130.806427,I,Above,Gable,0,5701,,17.85337149,0,0,,,,1,1,,0.03,nav,1,1956,1,, 15904,NJBF000087361,7312 DRIFTWOOD LANE,Hamilton,NJ,39.53214357,-74.78969051,RES1,3001,,17,NE,1956,1956,3102,1,1,1072.092256,1072.092256,3507,NO,12.02,25.42,1,-0.53,6112,108.333286,117.354165,127.061789,130.797376,I,Above,Flat,0,5701,,18.7158389,0,0,,,,1,1,,0.35,nav,1,1956,1,, 15905,NJBF000087356,7082 WEYMOUTH ROAD,Hamilton,NJ,39.5320494,-74.78294374,RES1,3001,,16,NE,1960,1960,3101,1,1,3315.109221,3315.109221,3507,NO,18.08,29.66,1,0.62,6109,108.388071,117.419076,127.125354,130.915866,I,Above,Hip,0,5701,,23.86556142,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 15906,NJBF000087369,2002 MAGNOLIA LANE,Hamilton,NJ,39.53249767,-74.78993767,RES1,3001,,17,NE,1975,1975,3102,2,1,1234.926309,1234.926309,3507,NO,33.03,46.03,1,2.51,6112,108.330437,117.348982,127.05691,130.788851,I,Above,Hip,0,5701,,39.52974381,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 15907,NJBF000087380,2004 MAGNOLIA LANE,Hamilton,NJ,39.53262666,-74.78948015,RES1,3001,,17,NE,1989,1989,3102,2,1,2557.115957,2557.115957,3507,NO,36.77,42.74,1,-0.09,6112,108.333796,117.352265,127.060212,130.79523,I,Above,Gable,0,5701,,39.75517759,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 15908,NJBF000087389,2003 MAGNOLIA LANE,Hamilton,NJ,39.532773,-74.79025248,RES1,3001,,17,NE,1977,1977,3102,2,1,1335.743943,1335.743943,3507,NO,29.91,40.02,1,-0.32,6112,108.327245,117.343806,127.051992,130.780127,I,Above,Gable,0,5701,,34.96717866,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 15909,NJBF000087397,7085 WEYMOUTH ROAD,Hamilton,NJ,39.5320494,-74.78294374,RES1,3001,959,NaN,NE,1960,1950,3101,1,1,509.8763248,509.8763248,3507,NO,21.65,34.6,1,2.41,6109,108.388071,117.419076,127.125354,130.915866,I,Above,Hip,0,5701,,28.12526468,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15910,NJBF000087398,SYCAMORE LANE,Hamilton,NJ,39.53284557,-74.78957579,RES1,3001,,NaN,NE,1989,0,3102,2,1,577.7308408,577.7308408,3507,NO,30.55,44,1,0.5,6112,108.332489,117.349594,127.057721,130.790942,I,Above,Gable,0,5701,,37.27337162,0,0,,,,1,1,,0.35,nav,1,1989,2,, 15911,NJBF000087408,2005 MAGNOLIA LANE,Hamilton,NJ,39.53302222,-74.79003631,RES1,3001,,17,NE,1977,1977,3102,2,1,1598.440959,1598.440959,3507,NO,27.36,41.93,1,2.89,6112,108.328366,117.343836,127.052173,130.780881,I,Above,Gable,0,5701,,34.64618834,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 15912,NJBF000087421,2006 SYCAMORE LANE,Hamilton,NJ,39.53333034,-74.79040853,RES1,3001,,17,NE,1977,1977,3102,2,1,1157.395456,1157.395456,3507,NO,36.44,41.47,1,0.66,6112,108.32462,117.33784,127.04647,130.770759,I,Above,Gable,0,5701,,38.9578278,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 15913,NJBF000087432,2005 SYCAMORE LANE,Hamilton,NJ,39.53352309,-74.79098873,RES1,3001,,17,NE,1977,1977,3102,2,1,1306.671755,1306.671755,3507,NO,21.67,33.13,1,-0.61,6112,108.319498,117.330828,127.039696,130.758451,I,Above,Gable,0,5701,,27.39685395,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 15914,NJBF000087445,2007 SYCAMORE LANE,Hamilton,NJ,39.53377446,-74.79076284,RES1,3001,,17,NE,1977,1977,3102,2,1,1577.129604,1577.129604,3507,NO,24.69,37.09,1,1.96,6112,108.320692,117.330932,127.039954,130.75936,I,Above,Gable,0,5701,,30.88572681,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 15915,NJBF000087450,7085 WEYMOUTH ROAD,Hamilton,NJ,39.5320494,-74.78294374,RES1,3001,959,NaN,NE,1960,1950,3101,1,1,2324.451081,2324.451081,3507,NO,19.3,32.93,1,0.56,6109,108.388071,117.419076,127.125354,130.915866,I,Above,Hip,0,5701,,26.11624576,0,0,,,,1,1,,0.03,nav,1,1960,1,, 15916,NJBF000087455,HEMLOCK LANE,Hamilton,NJ,39.53404197,-74.79096999,RES1,3001,,NaN,NE,1969,0,3102,2,1,1369.674931,1369.674931,3507,NO,29.94,36.81,1,-0.69,6112,108.318375,117.326826,127.036085,130.752607,I,Above,Hip,0,5701,,33.37700625,0,0,,,,1,1,,0.35,nav,1,1969,2,, 15917,NJBF000087471,2007 HEMLOCK LANE,Hamilton,NJ,39.53444888,-74.79129864,RES1,3001,,17,NE,1970,1970,3102,2,1,1472.423045,1472.423045,3507,NO,25.33,30.63,1,-0.62,6112,108.314739,117.320457,127.030078,130.742114,I,Above,Gable,0,5701,,27.97932555,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 15918,NJBF000087490,7332 DRIFTWOOD LANE,Hamilton,NJ,39.53485723,-74.79154935,RES1,3001,,17,NE,1955,1955,3102,1,1,3280.231274,3280.231274,3507,NO,15.86,24,1,2.22,6112,108.311734,117.314824,127.024797,130.732987,I,Above,Gable,0,5701,,19.93385584,0,0,,,,1,1,,0.03,nav,1,1955,1,, 15919,NJBF000087508,7344 DRIFTWOOD LANE,Hamilton,NJ,39.53524666,-74.79271974,RES1,3001,,17,NE,2006,2006,3102,2,1,2898.316196,2898.316196,3507,NO,39.55,50.13,1,1,6112,108.301406,117.300714,127.011164,130.708295,I,Above,Hip,0,5701,,44.84130964,0,1.2,,,,1,1,,0.35,nav,1,2006,2,, 15920,NJBF000087549,7503 SMITH AVENUE,Hamilton,NJ,39.5361019,-74.83402395,RES1,3005,,16,NE,1950,1950,3101,1,1,2516.419055,2516.419055,3505,NO,19.26,31.05,3,5.29,6112,107.983588,116.922563,126.635654,130.018687,I,Above,Gable,0,5701,,25.15591973,0,0,,,,1,1,,0.35,nav,1,1950,1,, 15921,NJBF000087548,7350 DRIFTWOOD LANE,Hamilton,NJ,39.53609577,-74.79299334,RES1,3001,,17,NE,1955,1955,3102,1,1,1709.914115,1709.914115,3507,NO,14.98,25.66,1,0.22,6112,108.29713,117.29133,127.002477,130.693659,I,Above,Flat,0,5701,,20.31791871,0,0,,,,1,1,,0.35,nav,1,1955,1,, 15922,NJBF000087554,7430 FOURTH AVENUE,Hamilton,NJ,39.53616832,-74.82814986,RES1,3005,,17,NE,1930,1930,3101,1,1,2645.349468,2645.349468,3505,NO,23.55,33.19,3,7.63,6112,108.026649,116.973154,126.686446,130.109685,I,Above,Gable,0,5701,,28.36948585,0,0,,,,1,1,,0.35,nav,1,1930,1,, 15923,NJBF000087570,7354 DRIFTWOOD LANE,Hamilton,NJ,39.53656652,-74.79336753,RES1,3001,,16,NE,1957,1957,3102,1,1,1152.545128,1152.545128,3507,NO,19.93,30.59,1,1.43,6112,108.292971,117.284038,126.995606,130.681745,I,Above,Gable,0,5701,,25.25972647,0,0,,,,1,1,,0.03,nav,1,1957,1,, 15924,NJBF000087593,7437 THIRD AVENUE,Hamilton,NJ,39.5372607,-74.82416839,RES1,3005,,17,NE,1996,1996,3101,2,1,1264.991519,1264.991519,3505,NO,29.38,43.64,3,-0.06,6112,108.053299,116.999638,126.713748,130.162405,I,Above,Gable,0,5701,,36.50854553,0,0,,,,1,1,,0.35,nav,1,1996,2,, 15925,NJBF000087596,1544 STRAWBERRY STREET,Hamilton,NJ,39.53733256,-74.83106146,RES1,3005,,17,NE,1987,1987,3101,1,1,1772.40784,1772.40784,3505,NO,11.38,16.7,3,-1.24,6112,108.001945,116.938833,126.652884,130.052988,I,Above,Gable,0,5701,,14.0393187,0,0,,,,1,1,,0.35,nav,1,1987,1,, 15926,NJBF000087601,7360 DRIFTWOOD LANE,Hamilton,NJ,39.53739743,-74.79402226,RES1,3001,,17,NE,1965,1965,3102,1,1,2848.883617,2848.883617,3507,NO,18.92,30.32,1,2.16,6112,108.285698,117.271263,126.983576,130.660935,I,Above,Hip,0,5701,,24.62060299,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 15927,NJBF000087608,7430 THIRD AVENUE,Hamilton,NJ,39.53757524,-74.82118752,RES1,3005,,17,NE,1960,1960,3101,1,1,2219.814849,2219.814849,3505,NO,17.11,24.42,3,1.07,6112,108.074798,117.023477,126.737809,130.207159,I,Above,Gable,0,5701,,20.7628989,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 15928,NJBF000087613,7430 THIRD AVENUE,Hamilton,NJ,39.53774521,-74.82129871,RES1,3005,,17,NE,1960,1960,3101,1,1,891.7913586,891.7913586,3505,NO,13.89,26.47,3,1.29,6112,108.073507,117.021175,126.735633,130.203652,I,Above,Gable,0,5701,,20.1802798,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 15929,NJBF000087617,1650 ASBURY AVENUE,Hamilton,NJ,39.53790121,-74.82533803,RES1,3005,,17,NE,1975,1975,3101,1,1,527.3139226,527.3139226,3505,NO,18.43,29.42,3,0.24,6112,108.042831,116.984411,126.698979,130.137452,I,Above,Gable,0,5701,,23.92545286,0,0,,,,1,1,,0.15,nav,1,1975,1,, 15930,NJBF000087636,7364 DRIFTWOOD LANE,Hamilton,NJ,39.53828396,-74.794054,RES1,3001,,17,NE,1963,1963,3102,2,1,2456.293682,2456.293682,3507,NO,31.65,38.65,1,0.49,6106,108.283251,117.263824,126.976849,130.650107,I,Above,Gable,0,5701,,35.15002098,0,0,,,,1,1,,0.03,nav,1,1963,2,, 15931,NJBF000087659,1716 ASBURY AVENUE,Hamilton,NJ,39.53885627,-74.82174939,RES1,3005,,17,NE,1960,1960,3101,1,1,1546.088102,1546.088102,3505,NO,15.43,26.77,3,2.79,6112,108.067146,117.008569,126.72385,130.185259,I,Above,Gable,0,5701,,21.09759998,0,0,,,,1,1,,0.35,nav,1,1960,1,, 15932,NJBF000087662,7400 DRIFTWOOD LANE,Hamilton,NJ,39.53891284,-74.79431865,RES1,3001,,17,NE,2002,2002,3102,1,1,2966.169976,2966.169976,3507,NO,12.46,25.34,1,1.76,6112,108.27958,117.256295,126.969861,130.638343,I,Above,Gable,0,5701,,18.90154578,0,0,,,,1,1,,0.35,nav,1,2002,1,, 15933,NJBF000087667,7400 DRIFTWOOD LANE,Hamilton,NJ,39.53906234,-74.79448574,RES1,3001,,17,NE,2002,2002,3102,1,1,732.8236722,732.8236722,3507,NO,12.48,18.5,1,0.65,6112,108.277878,117.253544,126.967253,130.633796,I,Above,Gable,0,5701,,15.49063494,0,0,,,,1,1,,0.35,nav,1,2002,1,, 15934,NJBF000087671,1716 ASBURY AVENUE,Hamilton,NJ,39.53910599,-74.82135019,RES1,3005,,17,NE,1960,1960,3101,1,1,1799.098944,1799.098944,3505,NO,13.05,22.26,3,0.21,6112,108.069481,117.010144,126.72561,130.189147,I,Above,Gable,0,5701,,17.65775896,0,0,,,,1,1,,0.35,nav,1,1960,1,, 15935,NJBF000087709,7201 WEYMOUTH RD,Hamilton,NJ,39.54071128,-74.78661541,RES1,3001,,NaN,NE,1968,1968,3102,1,13,615.5198647,615.5198647,3507,NO,20.19,33.65,1,0.79,6109,108.337364,117.313766,127.02767,130.748318,I,Above,Flat,0,5701,,26.91744871,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15936,NJBF000087713,7201 WEYMOUTH RD,Hamilton,NJ,39.54082373,-74.78679541,RES1,3001,,NaN,NE,1968,1968,3102,1,13,689.1368666,689.1368666,3507,NO,10.37,19.41,1,-0.67,6109,108.335625,117.311151,127.025182,130.743916,I,Above,Flat,0,5701,,14.89049952,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15937,NJBF000087729,7410 DRIFTWOOD LANE,Hamilton,NJ,39.54138712,-74.79555493,RES1,3001,,17,NE,1977,1977,3102,1,1,2169.372238,2169.372238,3507,NO,15.72,26.15,1,1.26,6112,108.263591,117.224912,126.940662,130.589131,I,Above,Gable,0,5701,,20.93328241,0,0,,,,1,1,,0.03,nav,1,1977,1,, 15938,NJBF000087733,7414 DRIFTWOOD LANE,Hamilton,NJ,39.54158353,-74.79640971,RES1,3001,,17,NE,1982,1982,3102,2,1,3150.346738,3150.346738,3507,NO,26.88,39.69,1,0.46,6112,108.25628,117.215432,126.931446,130.572541,I,Above,Gable,0,5701,,33.28179939,0,1.2,,,,1,1,,0.35,nav,1,1982,2,, 15939,NJBF000087736,7201 WEYMOUTH RD,Hamilton,NJ,39.54169208,-74.78814181,RES1,3001,,NaN,NE,1968,1968,3102,1,13,1042.03537,1042.03537,3507,NO,18.12,32.47,1,1.98,6109,108.322569,117.291432,127.006421,130.710807,I,Above,Hip,0,5701,,25.29227231,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15940,NJBF000087757,7419 BLACK HORSE PIKE,Hamilton,NJ,39.54203635,-74.80234774,RES1,3001,,17,NE,1985,1985,3102,2,1,1542.216169,1542.216169,3507,NO,30.75,43.33,1,-0.95,6112,108.208119,117.157375,126.874344,130.468471,I,Above,Flat,0,5701,,37.03958162,0,1.1,,,,1,1,,0.15,nav,1,1985,2,, 15941,NJBF000087774,7201 WEYMOUTH RD,Hamilton,NJ,39.54251198,-74.78164553,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,4525.580192,4525.580192,3507,NO,18.86,25.76,1,-0.12,6109,108.373838,117.345994,127.060566,130.811773,I,Above,Flat,0,5701,,22.30859047,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15942,NJBF000087784,7201 WEYMOUTH RD,Hamilton,NJ,39.5426097,-74.78252469,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,1416.322595,1416.322595,3507,NO,17.69,25.21,1,-0.63,6109,108.366351,117.336856,127.05168,130.795587,I,Above,Flat,0,5701,,21.45106496,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15943,NJBF000087787,7201 WEYMOUTH RD,Hamilton,NJ,39.54265124,-74.78154274,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,613.4843658,613.4843658,3507,NO,20.56,30.02,1,2.23,6109,108.37436,117.345829,127.060505,130.811873,I,Above,Flat,0,5701,,25.28870171,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15944,NJBF000087783,7201 WEYMOUTH RD,Hamilton,NJ,39.54258076,-74.7822235,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,2986.447663,2986.447663,3507,NO,18.09,23.78,1,-0.96,6109,108.368903,117.339946,127.054688,130.801073,I,Above,Flat,0,5701,,20.93510384,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15945,NJBF000087792,7201 WEYMOUTH RD,Hamilton,NJ,39.54274474,-74.7823557,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,1172.89867,1172.89867,3507,NO,18.06,31.6,1,0.3,6109,108.367424,117.337349,127.052261,130.796864,I,Above,Flat,0,5701,,24.83246225,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15946,NJBF000087802,7201 WEYMOUTH RD,Hamilton,NJ,39.54282588,-74.78268356,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,3970.404951,3970.404951,3507,NO,21.05,31.32,1,2.52,6109,108.364527,117.333578,127.048622,130.790303,I,Above,Flat,0,5701,,26.18467911,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15947,NJBF000087809,7201 WEYMOUTH RD,Hamilton,NJ,39.54289886,-74.78215421,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,5112.270312,5112.270312,3507,NO,11.4,25.6,1,0.86,6109,108.368726,117.337998,127.053009,130.798477,I,Above,Flat,0,5701,,18.50165359,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15948,NJBF000087810,7424 DRIFTWOOD LANE,Hamilton,NJ,39.54295356,-74.79836542,RES1,3001,,17,NE,1970,1970,3102,1,1,3124.183948,3124.183948,3507,NO,20.58,28.37,1,1.6,6112,108.237313,117.186429,126.9038,130.524436,I,Above,Hip,0,5701,,24.47643731,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15949,NJBF000087811,7201 WEYMOUTH RD,Hamilton,NJ,39.5429546,-74.78130853,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,4061.516007,4061.516007,3507,NO,14.96,21.29,1,2.82,6109,108.375576,117.345551,127.060452,130.81224,I,Above,Hip,0,5701,,18.12189367,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15950,NJBF000087815,7201 WEYMOUTH RD,Hamilton,NJ,39.54307447,-74.78149445,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,707.6156285,707.6156285,3507,NO,13.49,19.09,1,-0.25,6109,108.373764,117.342817,127.057859,130.807658,I,Above,Flat,0,5701,,16.28789326,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15951,NJBF000087817,7201 WEYMOUTH RD,Hamilton,NJ,39.5431499,-74.78194413,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,4087.694471,4087.694471,3507,NO,15.06,26.64,1,0.34,6109,108.369865,117.337926,127.05312,130.79907,I,Above,Flat,0,5701,,20.8495754,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15952,NJBF000087822,7201 WEYMOUTH RD,Hamilton,NJ,39.54325378,-74.78252456,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,2229.469532,2229.469532,3507,NO,14.59,23.74,1,-0.39,6109,108.364822,117.331569,127.046964,130.787924,I,Above,Flat,0,5701,,19.16275491,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15953,NJBF000087826,7426 DRIFTWOOD LANE,Hamilton,NJ,39.54336205,-74.79868783,RES1,3001,,17,NE,1977,1977,3102,1,1,827.8144711,827.8144711,3507,NO,15.7,23.4,1,0.13,6112,108.23373,117.180187,126.897935,130.514501,I,Above,Gable,0,5701,,19.5491365,0,0,,,,1,1,,0.35,nav,1,1977,1,, 15954,NJBF000087835,7426 DRIFTWOOD LANE,Hamilton,NJ,39.54351633,-74.79841883,RES1,3001,,17,NE,1977,1977,3102,1,1,2191.668859,2191.668859,3507,NO,12.08,20.45,1,0.84,6112,108.235484,117.181414,126.899266,130.517251,I,Above,Gable,0,5701,,16.26096497,0,0,,,,1,1,,0.03,nav,1,1977,1,, 15955,NJBF000087838,7201 WEYMOUTH RD,Hamilton,NJ,39.54356361,-74.78273966,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,833.6267544,833.6267544,3507,NO,17.94,29.02,1,1.25,6109,108.362312,117.32699,127.0427,130.780577,I,Above,Gable,0,5701,,23.478439,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15956,NJBF000087840,7285 WEYMOUTH ROAD,Hamilton,NJ,39.5435851,-74.7930851,RES1,3001,,17,NE,1970,1970,3102,1,1,2250.813139,2250.813139,3507,NO,18.98,32.99,1,0.17,6106,108.27798,117.230003,126.947318,130.605514,I,Above,Gable,0,5701,,25.98377991,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15957,NJBF000087843,7201 WEYMOUTH RD,Hamilton,NJ,39.54365866,-74.7821553,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,1285.341323,1285.341323,3507,NO,15.74,21.26,1,0.78,6109,108.366915,117.331745,127.047433,130.789412,I,Above,Gable,0,5701,,18.500958,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15958,NJBF000087845,7201 WEYMOUTH RD,Hamilton,NJ,39.5437308,-74.78277043,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,747.3576583,747.3576583,3507,NO,14.23,29.21,1,0.26,6109,108.361668,117.325335,127.0412,130.778084,I,Above,Gable,0,5701,,21.72335927,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15959,NJBF000087853,7201 WEYMOUTH RD,Hamilton,NJ,39.54379214,-74.78296171,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,722.1561195,722.1561195,3507,NO,15.62,26.11,1,-0.99,6109,108.35994,117.323019,127.038973,130.774093,I,Above,Gable,0,5701,,20.86411504,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15960,NJBF000087855,7201 WEYMOUTH RD,Hamilton,NJ,39.54385078,-74.78241931,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,985.81237,985.81237,3507,NO,18.23,29.05,1,1.15,6109,108.364279,117.327668,127.043577,130.782634,I,Above,Gable,0,5701,,23.6407105,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15961,NJBF000087858,7439 HIGH BANK ROAD,Hamilton,NJ,39.54388634,-74.79636682,RES1,3001,,17,NE,1963,1963,3102,1,1,818.1156678,818.1156678,3507,NO,16.23,26.66,1,0,6106,108.250919,117.197275,126.915233,130.547246,I,Above,Gable,0,5701,,21.44575355,0,0,,,,1,1,,0.03,nav,1,1963,1,, 15962,NJBF000087857,7428 DRIFTWOOD LANE,Hamilton,NJ,39.54388461,-74.79836606,RES1,3001,,17,NE,1970,1970,3102,1,1,1122.498418,1122.498418,3507,NO,12.32,25.57,1,1.54,6112,108.234986,117.178931,126.897093,130.514009,I,Above,Gable,0,5701,,18.94572697,0,0,,,,1,1,,0.03,nav,1,1970,1,, 15963,NJBF000087861,7201 WEYMOUTH RD,Hamilton,NJ,39.54407349,-74.7824957,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,895.6605246,895.6605246,3507,NO,18.94,26.68,1,-0.21,6109,108.363117,117.325116,127.041238,130.778688,I,Above,Hip,0,5701,,22.80601558,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15964,NJBF000087864,7201 WEYMOUTH RD,Hamilton,NJ,39.54422007,-74.78262132,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,712.4552815,712.4552815,3507,NO,13.04,21.64,1,0.68,6109,108.361736,117.322726,127.039003,130.774818,I,Above,Gable,0,5701,,17.33914428,0,0,,,,1,1,,0.03,nav,1,1968,1,, 15965,NJBF000087871,7437 HIGH BANK ROAD,Hamilton,NJ,39.54446794,-74.79746213,RES1,3001,,17,NE,1985,1985,3102,1,1,1523.795667,1523.795667,3507,NO,14.11,22.43,1,0.04,6112,108.240736,117.182524,126.901096,130.522501,I,Above,Gable,0,5701,,18.26963081,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15966,NJBF000087878,7437 HIGH BANK ROAD,Hamilton,NJ,39.54464107,-74.79762579,RES1,3001,,17,NE,1985,1985,3102,1,1,1116.674044,1116.674044,3507,NO,18.1,30.28,1,1.99,6112,108.238999,117.179626,126.898364,130.517844,I,Above,Gable,0,5701,,24.1904566,0,0,,,,1,1,,0.03,nav,1,1985,1,, 15967,NJBF000087881,7438 HIGH BANK ROAD,Hamilton,NJ,39.5448323,-74.79763658,RES1,3001,,15,NE,1920,1920,3102,1,1,872.3966196,872.3966196,3507,NO,10.96,21.93,1,0.46,6112,108.238437,117.177986,126.89689,130.515527,I,Above,Gable,0,5701,,16.44593797,0,0,,,,1,1,,0.03,nav,1,1920,1,, 15968,NJBF000087887,7440 HIGH BANK ROAD,Hamilton,NJ,39.54504759,-74.79781969,RES1,3001,,16,NE,1940,1940,3102,1,1,585.4820322,585.4820322,3507,NO,13.29,28.29,1,2.44,6112,108.236441,117.174568,126.893677,130.510084,I,Above,Gable,0,5701,,20.79111096,0,0,,,,1,1,,0.03,nav,1,1940,1,, 15969,NJBF000087906,2015 HIGH BANK ROAD,Hamilton,NJ,39.54562407,-74.80216693,RES1,3001,,17,NE,1920,1920,3102,1,1,3031.119471,3031.119471,3507,NO,17.52,25.37,1,0.63,6112,108.200509,117.130302,126.85028,130.43208,I,Above,Gable,0,5701,,21.44798706,0,0,,,,1,1,,0.35,nav,1,1920,1,, 15970,NJBF000087916,2019 HIGH BANK ROAD,Hamilton,NJ,39.54591584,-74.80163694,RES1,3001,,17,NE,1979,1979,3102,1,1,2311.870431,2311.870431,3507,NO,12.36,19.43,1,-0.24,6112,108.203964,117.132772,126.852963,130.43758,I,Above,Gable,0,5701,,15.89458302,0,0,,,,1,1,,0.03,nav,1,1979,1,, 15971,NJBF000087921,2023 HIGH BANK ROAD,Hamilton,NJ,39.54602454,-74.80137213,RES1,3001,,17,NE,1966,1966,3102,1,1,713.4363355,713.4363355,3507,NO,19.04,24.92,1,0.08,6112,108.205788,117.134305,126.85457,130.440734,I,Above,Gable,0,5701,,21.97951234,0,1.2,,,,1,1,,0.35,nav,1,1966,1,, 15972,NJBF000087923,7428 HIGH BANK ROAD,Hamilton,NJ,39.54605165,-74.80295569,RES1,3001,,17,NE,1964,1964,3102,1,1,2344.833432,2344.833432,3507,NO,16.42,27.73,1,2.43,6112,108.193205,117.119719,126.840122,130.414498,I,Above,Gable,0,5701,,22.07773149,0,0,,,,1,1,,0.03,nav,1,1964,1,, 15973,NJBF000087931,2023 HIGH BANK ROAD,Hamilton,NJ,39.54615584,-74.80137377,RES1,3001,,17,NE,1966,1966,3102,1,1,2023.983852,2023.983852,3507,NO,11.04,23.39,1,0.28,6112,108.205443,117.133235,126.853614,130.439267,I,Above,Flat,0,5701,,17.21095658,0,1.2,,,,1,1,,0.03,nav,1,1966,1,, 15974,NJBF000087943,2027 HIGH BANK ROAD,Hamilton,NJ,39.54635142,-74.80093943,RES1,3001,,17,NE,1967,1967,3102,1,1,1572.273245,1572.273245,3507,NO,17.46,24.55,1,-0.79,6112,108.2084,117.135622,126.856138,130.444265,I,Above,Gable,0,5701,,21.00095623,0,0,,,,1,1,,0.35,nav,1,1967,1,, 15975,NJBF000087942,2029 HIGH BANK ROAD,Hamilton,NJ,39.54633427,-74.8002791,RES1,3001,,17,NE,1974,1974,3102,2,1,2324.51016,2324.51016,3507,NO,33.84,40.6,1,1.81,6112,108.213677,117.141762,126.862211,130.455284,I,Above,Gable,0,5701,,37.21948242,0,0,,,,1,1,,0.35,nav,1,1974,2,, 15976,NJBF000087950,7434 HIGH BANK ROAD,Hamilton,NJ,39.54643077,-74.8031378,RES1,3001,,17,NE,1987,1987,3102,2,1,3041.780785,3041.780785,3507,NO,32.28,44.55,1,-0.52,6112,108.190814,117.115034,126.835779,130.40741,I,Above,Gable,0,5701,,38.41422943,0,0,,,,1,1,,0.03,nav,1,1987,2,, 15977,NJBF000087961,7436 HIGH BANK ROAD,Hamilton,NJ,39.54664753,-74.80354475,RES1,3001,,17,NE,1964,1964,3102,2,1,1979.383415,1979.383415,3507,NO,40.23,49.04,1,2.93,6112,108.187059,117.109615,126.830574,130.39842,I,Above,Gable,0,5701,,44.6349927,0,0,,,,1,1,,0.35,nav,1,1964,2,, 15978,NJBF000088033,7201 WEYMOUTH RD,Hamilton,NJ,39.54807567,-74.78867319,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,703.7432218,703.7432218,3507,NO,13.46,18.91,1,0.72,6112,108.302813,117.234378,126.955145,130.627831,I,Above,Hip,0,5701,,16.18319744,0,0,,,,1,1,,0.15,nav,1,1968,1,, 15979,NJBF000088048,7201 WEYMOUTH RD,Hamilton,NJ,39.54770165,-74.78874527,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,1041.073387,1041.073387,3507,NO,19.77,25.18,1,1.08,6112,108.303129,117.236768,126.957198,130.630931,I,Above,Gable,0,5701,,22.4781389,0,0,,,,1,1,,0.15,nav,1,1968,1,, 15980,NJBF000088072,7201 WEYMOUTH RD,Hamilton,NJ,39.54807567,-74.78867319,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,1532.52034,1532.52034,3507,NO,14.85,20.52,1,-0.16,6112,108.302813,117.234378,126.955145,130.627831,I,Above,Hip,0,5701,,17.68568746,0,0,,,,1,1,,0.15,nav,1,1968,1,, 15981,NJBF000088099,7363 WEYMOUTH ROAD,Hamilton,NJ,39.54858059,-74.78955904,AGR1,3002,,16,NE,1920,1920,3401,1,1,1857.247294,1857.247294,3507,NO,13.01,22.77,1,-0.35,6112,108.294363,117.222023,126.943377,130.607279,I,Above,Gable,0,5701,,17.8890607,0,0,,,,1,1,,0.35,nav,1,1920,1,, 15982,NJBF000088141,7447 BLACK HORSE PIKE,Hamilton,NJ,39.54919077,-74.80351194,RES1,3001,,17,NE,1985,1985,3102,2,1,1438.503768,1438.503768,3507,NO,36.16,45.82,1,2.57,6112,108.180911,117.089526,126.812729,130.371528,I,Above,Gable,0,5701,,40.989641,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 15983,NJBF000088147,7201 WEYMOUTH RD,Hamilton,NJ,39.54930849,-74.78845996,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,49114.84322,49114.84322,3507,NO,16.41,28.83,1,1.41,6112,108.301576,117.22627,126.948162,130.617228,I,Above,Flat,0,5701,,22.61981834,0,0,,,,1,1,,0.15,nav,1,1968,1,, 15984,NJBF000088166,7201 WEYMOUTH RD,Hamilton,NJ,39.54973103,-74.78772097,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,14461.02842,14461.02842,3507,NO,12.3,23.12,1,1.34,6112,108.306603,117.229667,126.951861,130.624661,I,Above,Flat,0,5701,,17.70951626,0,0,,,,1,1,,0.15,nav,1,1968,1,, 15985,NJBF000088247,7201 WEYMOUTH RD,Hamilton,NJ,39.55115236,-74.78870486,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,1169.00931,1169.00931,3507,NO,19.52,27.36,1,1.73,6112,108.295114,117.208878,126.932564,130.592051,I,Above,Gable,0,5701,,23.44027214,0,0,,,,1,1,,0.35,nav,1,1968,1,, 15986,NJBF000088262,7395 WEYMOUTH ROAD,Hamilton,NJ,39.55143205,-74.78949543,AGR1,3002,,NaN,NE,1965,1965,3401,1,1,2030.763215,2030.763215,3507,NO,21.52,35.71,1,2.42,6112,108.287976,117.199274,126.923328,130.575803,I,Above,Flat,0,NaN,,28.61469811,0,0,,,,1,1,,0.15,nav,1,1965,1,, 15987,NJBF000088264,7201 WEYMOUTH RD,Hamilton,NJ,39.551497,-74.78869941,AGR1,3002,,NaN,NE,1968,1968,3401,1,13,1146.713206,1146.713206,3507,NO,10.89,17.03,1,0.22,6112,108.294329,117.206103,126.930122,130.58821,I,Above,Gable,0,5701,,13.96076545,0,0,,,,1,1,,0.15,nav,1,1968,1,, 15988,NJBF000088377,2016 WINDING WAY,Hamilton,NJ,39.55309474,-74.804567,RES1,3001,,17,NE,1962,1962,3102,1,1,3451.814051,3451.814051,3507,NO,20.56,34.39,1,1.67,6112,108.162741,117.048692,126.775522,130.31288,I,Above,Flat,0,5701,,27.47826098,0,0,,,,1,1,,0.03,nav,1,1962,1,, 15989,NJBF000088420,2014 WINDING WAY,Hamilton,NJ,39.55339085,-74.80509175,RES1,3001,,17,NE,1970,1970,3102,1,1,3793.021371,3793.021371,3507,NO,11.55,24.29,1,0.51,6112,108.157846,117.041617,126.768744,130.301386,I,Above,Gable,0,5701,,17.91744088,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 15990,NJBF000088515,2010 WINDING WAY,Hamilton,NJ,39.55423235,-74.80524101,RES1,3001,,17,NE,1973,1973,3102,1,1,1782.618203,1782.618203,3507,NO,15.18,27.88,1,0.29,6112,108.154546,117.033527,126.76145,130.290125,I,Above,Gable,0,5701,,21.52989293,0,0,,,,1,1,,0.35,nav,1,1973,1,, 15991,NJBF000088528,2062 SKIP MORGAN DRIVE,Hamilton,NJ,39.5544596,-74.80875893,RES1,3001,,17,NE,1961,1961,3102,1,1,1404.571767,1404.571767,3507,NO,18.55,33.19,1,-0.2,6112,108.126278,117.000407,126.728626,130.232248,I,Above,Flat,0,5701,,25.86899897,0,0,,,,1,1,,0.35,nav,1,1961,1,, 15992,NJBF000088530,,Hamilton,NJ,39.55454752,-74.80797519,RES1,3001,,NaN,NE,1970,0,3102,2,1,2955.044127,2955.044127,3507,NO,32.36,40.94,1,1.17,6112,108.132207,117.006656,126.734945,130.243649,I,Above,Gable,0,5701,,36.65238517,0,0,,,,1,1,,0.35,nav,1,1970,2,, 15993,NJBF000088546,2020 LITTLE EAGLE DRIVE,Hamilton,NJ,39.55483214,-74.80510007,RES1,3001,,17,NE,1985,1985,3102,2,1,1856.286111,1856.286111,3507,NO,37.14,49.25,1,2.71,6106,108.154147,117.02996,126.758449,130.286018,I,Above,Gable,0,5701,,43.19645237,0,0,,,,1,1,,0.03,nav,1,1985,2,, 15994,NJBF000088563,2201 FIFTH STREET,Hamilton,NJ,39.55532383,-74.80048548,RES1,3001,,15,NE,1946,1946,3102,2,2,1586.803042,1586.803042,3507,NO,38.29,49.33,1,-0.28,6112,108.1896,117.067336,126.796111,130.354127,I,Above,Gable,0,5701,,43.8114781,0,0,,,,1,1,,0.15,nav,1,1946,2,, 15995,NJBF000088573,2201 FIFTH STREET,Hamilton,NJ,39.55546044,-74.80071053,RES1,3001,,15,NE,1946,1946,3102,2,2,963.5156777,963.5156777,3507,NO,33.51,39.34,1,1.24,6112,108.187455,117.064201,126.793121,130.349054,I,Above,Gable,0,5701,,36.42801754,0,0,,,,1,1,,0.15,nav,1,1946,2,, 15996,NJBF000088564,2024 LITTLE EAGLE DRIVE,Hamilton,NJ,39.55532474,-74.80479201,RES1,3001,,17,NE,1967,1967,3102,1,1,4329.063972,4329.063972,3507,NO,21.35,28.85,1,2.1,6112,108.155341,117.02874,126.757691,130.285678,I,Above,Gable,0,5701,,25.1030937,0,0,,,,1,1,,0.03,nav,1,1967,1,, 15997,NJBF000088576,2051 SKIP MORGAN DRIVE,Hamilton,NJ,39.55551334,-74.80877044,RES1,3001,,17,NE,1965,1965,3102,1,1,1524.778581,1524.778581,3507,NO,14.15,25.34,1,1.04,6112,108.123512,116.991882,126.721092,130.221147,I,Above,Gable,0,5701,,19.74420203,0,1.2,,,,1,1,,0.35,nav,1,1965,1,, 15998,NJBF000088580,2051 SKIP MORGAN DRIVE,Hamilton,NJ,39.5555927,-74.80901672,RES1,3001,,17,NE,1965,1965,3102,1,1,1473.407687,1473.407687,3507,NO,17.37,27.6,1,0.81,6112,108.12137,116.989056,126.718344,130.216456,I,Above,Flat,0,5701,,22.48714186,0,1.2,,,,1,1,,0.35,nav,1,1965,1,, 15999,NJBF000088582,2201 FIFTH STREET,Hamilton,NJ,39.55562076,-74.80155534,RES1,3001,,15,NE,1946,1946,3102,2,2,1415.227372,1415.227372,3507,NO,21.23,31.41,1,0.19,6112,108.180316,117.055316,126.784432,130.333874,I,Above,Gable,0,5701,,26.32017399,0,0,,,,1,1,,0.03,nav,1,1946,2,, 16000,NJBF000088587,2026 LITTLE EAGLE DRIVE,Hamilton,NJ,39.55569101,-74.80460669,RES1,3001,,17,NE,1966,1966,3102,1,1,1810.731687,1810.731687,3507,NO,15.28,23.25,1,0.67,6112,108.155884,117.027443,126.75674,130.284731,I,Above,Gable,0,5701,,19.26870672,0,0,,,,1,1,,0.03,nav,1,1966,1,, 16001,NJBF000088602,2030 BALLARD DRIVE,Hamilton,NJ,39.55625518,-74.80441651,RES1,3001,,17,NE,1973,1973,3102,2,1,1587.785514,1587.785514,3507,NO,39.57,52.89,1,0.66,6106,108.155969,117.024592,126.754429,130.281765,I,Above,Gable,0,5701,,46.23075694,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 16002,NJBF000088612,2034 BALLARD DRIVE,Hamilton,NJ,39.5564621,-74.80362134,RES1,3001,,17,NE,1970,1970,3102,2,1,2073.414831,2073.414831,3507,NO,28.08,36.43,1,0.93,6106,108.161765,117.030025,126.760039,130.292138,I,Above,Flat,0,5701,,32.25721381,0,0,,,,1,1,,0.03,nav,1,1970,2,, 16003,NJBF000088624,2031 BALLARD DRIVE,Hamilton,NJ,39.55680357,-74.80420802,RES1,3001,,17,NE,1960,1960,3102,1,1,3112.543136,3112.543136,3507,NO,21.6,27.57,1,2.87,6106,108.156245,117.022027,126.752393,130.279251,I,Above,Gable,0,5701,,24.58726341,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16004,NJBF000088628,2033 BALLARD DRIVE,Hamilton,NJ,39.55687927,-74.80356003,RES1,3001,,17,NE,1970,1970,3102,1,2,1465.630214,1465.630214,3507,NO,15.23,29.68,1,-0.12,6106,108.161202,117.027202,126.757623,130.288675,I,Above,Gable,0,5701,,22.45507098,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 16005,NJBF000088630,2029 BALLARD DRIVE,Hamilton,NJ,39.55698485,-74.80446016,RES1,3001,,17,NE,1966,1966,3102,2,1,1573.228022,1573.228022,3507,NO,25.26,38.41,1,2.34,6110,108.153791,117.018322,126.748871,130.273368,I,Above,Gable,0,5701,,31.83789945,0,0,,,,1,1,,0.03,nav,1,1966,2,, 16006,NJBF000088655,,Hamilton,NJ,39.55775171,-74.80931458,RES1,3001,,NaN,NE,1969,0,3102,2,1,1203.917,1203.917,3507,NO,39.39,45.72,1,1.43,6112,108.113535,116.969132,126.700489,130.189495,I,Above,Gable,0,5701,,42.55359569,0,0,,,,1,1,,1,nav,1,1969,2,, 16007,NJBF000088657,,Hamilton,NJ,39.55778517,-74.8079593,RES1,3001,,NaN,NE,1969,0,3102,2,1,1552.873284,1552.873284,3507,NO,37.65,51.92,1,1.02,6112,108.124114,116.980836,126.712222,130.21022,I,Above,Gable,0,5701,,44.78852657,0,0,,,,1,1,,1,nav,1,1969,2,, 16008,NJBF000088659,,Hamilton,NJ,39.55783507,-74.8090021,RES1,3001,,NaN,NE,1969,0,3102,2,1,1155.455975,1155.455975,3507,NO,30.1,35.95,1,1.94,6112,108.115782,116.971226,126.702664,130.193494,I,Above,Gable,0,5701,,33.02405669,0,0,,,,1,1,,1,nav,1,1969,2,, 16009,NJBF000088665,,Hamilton,NJ,39.55793078,-74.8083576,RES1,3001,,NaN,NE,1969,0,3102,2,1,1296.981141,1296.981141,3507,NO,33.25,45.55,1,1.47,6112,108.120603,116.976139,126.707669,130.2025,I,Above,Flat,0,5701,,39.4031938,0,0,,,,1,1,,1,nav,1,1969,2,, 16010,NJBF000088679,2005 LITTLE FEATHER DRIVE,Hamilton,NJ,39.55838321,-74.80587732,RES1,3001,,16,NE,1955,1955,3102,1,1,983.8723066,983.8723066,3507,NO,18.8,33.51,1,1.15,6112,108.139038,116.994456,126.726408,130.236438,I,Above,Gable,0,5701,,26.15370992,0,0,,,,1,1,,0.03,nav,1,1955,1,, 16011,NJBF000088693,2003 LITTLE FEATHER DRIVE,Hamilton,NJ,39.55861861,-74.80607005,RES1,3001,,16,NE,1932,1932,3102,1,1,756.0878423,756.0878423,3507,NO,16.29,22.41,1,2.05,6112,108.136915,116.990843,126.723031,130.230953,I,Above,Flat,0,5701,,19.34583252,0,0,,,,1,1,,0.03,nav,1,1932,1,, 16012,NJBF000088707,2020 SKY DAUGHTER TRAIL,Hamilton,NJ,39.55883883,-74.80621339,RES1,3001,,17,NE,1970,1970,3102,1,1,1381.302153,1381.302153,3507,NO,19.82,28.9,1,1.77,6112,108.135227,116.987803,126.720211,130.226422,I,Above,Flat,0,5701,,24.35877486,0,0,,,,1,1,,0.03,nav,1,1970,1,, 16013,NJBF000088708,2018 SKY DAUGHTER TRAIL,Hamilton,NJ,39.55884518,-74.80679479,RES1,3001,,17,NE,1966,1966,3102,1,1,1702.168651,1702.168651,3507,NO,14.93,27.33,1,0.16,6112,108.13061,116.982604,126.715023,130.217298,I,Above,Gable,0,5701,,21.12962494,0,0,,,,1,1,,0.35,nav,1,1966,1,, 16014,NJBF000088860,2018 APACHE TRAIL,Hamilton,NJ,39.56113975,-74.80889241,RES1,3001,,17,NE,1962,1962,3102,1,1,1640.131846,1640.131846,3507,NO,12.61,19.46,1,1.28,6112,108.108243,116.945653,126.680359,130.161074,I,Above,Hip,0,5701,,16.0369232,0,0,,,,1,1,,0.03,nav,1,1962,1,, 16015,NJBF000088886,2014 APACHE TRAIL,Hamilton,NJ,39.56167934,-74.80916348,RES1,3001,,17,NE,1965,1965,3102,1,1,2060.809001,2060.809001,3507,NO,14.66,19.7,1,-0.79,6112,108.104737,116.93894,126.674185,130.151362,I,Above,Gable,0,5701,,17.18014571,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 16016,NJBF000088920,2012 APACHE TRAIL,Hamilton,NJ,39.56217532,-74.8093451,RES1,3001,,NaN,NE,1900,1900,3102,2,1,2264.385137,2264.385137,3507,NO,36.11,42.27,1,-0.61,6112,108.102042,116.933355,126.6691,130.143471,I,Above,Flat,0,5701,,39.19106839,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16017,NJBF000088952,2008 APACHE TRAIL,Hamilton,NJ,39.56247941,-74.80935732,RES1,3001,,17,NE,1965,1965,3102,1,1,1240.75471,1240.75471,3507,NO,15.15,24.54,1,2.74,6112,108.101173,116.930804,126.666859,130.140161,I,Above,Flat,0,5701,,19.84323497,0,0,,,,1,1,,0.03,nav,1,1965,1,, 16018,NJBF000088997,2004 APACHE TRAIL,Hamilton,NJ,39.56300667,-74.80965907,RES1,3001,,17,NE,1972,1972,3102,2,1,1351.26729,1351.26729,3507,NO,36.53,44.78,1,1.47,6112,108.09745,116.923913,126.6605,130.130128,I,Above,Gable,0,5701,,40.65528416,0,0,,,,1,1,,0.03,nav,1,1972,2,, 16019,NJBF000089107,2033 SHOSHONI DRIVE,Hamilton,NJ,39.56381536,-74.8109655,RES1,3001,,17,NE,1967,1967,3102,2,1,1612.973628,1612.973628,3507,NO,28.53,42.86,1,2.77,6112,108.085115,116.906014,126.643394,130.102013,I,Above,Gable,0,5701,,35.69031644,0,0,,,,1,1,,0.03,nav,1,1967,2,, 16020,NJBF000090168,7453 WEYMOUTH ROAD,Hamilton,NJ,39.56763955,-74.81947147,RES1,3001,,17,NE,1952,2003,3102,1,1,1248.500818,1248.500818,3505,NO,18.47,32.89,3,-0.18,6112,108.008941,116.802107,126.542923,129.937181,I,Above,Flat,0,5701,,25.68275614,0,0,,,,1,1,,1,nav,1,1952,1,, 16021,NJBF000090219,FIFTH STREET,Hamilton,NJ,39.56763955,-74.81947147,RES1,3001,,NaN,NE,1952,0,3102,2,1,2955.50551,2955.50551,3505,NO,38.03,48.16,3,-0.83,6109,108.008941,116.802107,126.542923,129.937181,I,Above,Flat,0,5701,,43.09734138,0,0,,,,1,1,,0.03,nav,1,1952,2,, 16022,NJBF000090231,FIFTH STREET,Hamilton,NJ,39.56763955,-74.81947147,RES1,3001,,NaN,NE,1952,0,3102,2,1,1661.44779,1661.44779,3505,NO,34.71,40.57,3,-0.65,6109,108.008941,116.802107,126.542923,129.937181,I,Above,Flat,0,5701,,37.64020946,0,0,,,,1,1,,0.03,nav,1,1952,2,, 16023,NJBF000090735,7648 BLUEBERRY ROAD,Hamilton,NJ,39.59207755,-74.78429499,RES1,3001,,17,NE,1976,1976,3101,1,1,1652.71854,1652.71854,3505,NO,18.68,26.87,3,-0.03,6112,108.231388,116.904982,126.678393,130.199221,I,Above,Gable,0,5701,,22.77414442,0,0,,,,1,1,,0.35,nav,1,1976,1,, 16024,NJBF000090745,7658 BLUEBERRY ROAD,Hamilton,NJ,39.5922041,-74.78468478,RES1,3001,,16,NE,1935,1935,3101,1,1,761.896408,761.896408,3505,NO,12.95,24.9,3,-1.55,6112,108.227775,116.900458,126.674046,130.191983,I,Above,Gable,0,5701,,18.92661347,0,0,,,,1,1,,0.15,nav,1,1935,1,, 16025,NJBF000090778,7674 BLUEBERRY ROAD,Hamilton,NJ,39.59320342,-74.78585928,RES1,3001,,16,NE,1970,1970,3101,1,1,1411.359275,1411.359275,3505,NO,22.51,33.5,3,7.08,6112,108.215339,116.881537,126.656572,130.163293,I,Above,Hip,0,5701,,28.00507754,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16026,NJBF000090785,7674 BLUEBERRY ROAD,Hamilton,NJ,39.59338488,-74.78532946,RES1,3001,,16,NE,1970,1970,3101,1,1,966.4380518,966.4380518,3505,NO,11.85,22.16,3,0.02,6112,108.219345,116.884628,126.659954,130.169104,I,Above,Gable,0,5701,,17.00554525,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16027,NJBF000090794,BLUEBERRY ROAD,Hamilton,NJ,39.59365858,-74.78548586,RES1,3001,,NaN,NE,1970,0,3101,1,1,783.2262103,783.2262103,3505,NO,14.06,22.33,3,2.91,6112,108.217325,116.880891,126.656621,130.163694,I,Above,Gable,0,5701,,18.19559856,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16028,NJBF000080059,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41379157,-74.71640427,RES1,3001,,NaN,NE,1971,1971,3102,2,1,583.5395644,583.5395644,3507,NO,25.77,36.5,1,2.36,6112,109.239859,119.065118,128.773558,133.850483,I,Above,Hip,0,5701,,31.13500259,0,0,,,,1,1,,1,nav,1,1971,2,, 16029,NJBF000080095,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41390181,-74.71623433,RES1,3001,,NaN,NE,1971,1971,3102,2,1,533.1290368,533.1290368,3507,NO,21.8,29.48,1,-0.08,6112,109.240652,119.066247,128.774503,133.852257,I,Above,Gable,0,5701,,25.64138891,0,0,,,,1,1,,1,nav,1,1971,2,, 16030,NJBF000080124,4678 MAYS LANDING SP RD,Hamilton,NJ,39.4140059,-74.71614356,RES1,3001,,NaN,NE,1971,1971,3102,2,1,941.2169915,941.2169915,3507,NO,34.37,45.92,1,0.16,6112,109.240886,119.066494,128.774582,133.85251,I,Above,Gable,0,5701,,40.14189265,0,0,,,,1,1,,1,nav,1,1971,2,, 16031,NJBF000080311,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41465336,-74.71590876,RES1,3001,,NaN,NE,1971,1971,3102,2,1,607.7660481,607.7660481,3507,NO,37.86,51.73,1,1.38,6106,109.239987,119.064266,128.771343,133.84754,I,Above,Gable,0,5701,,44.79384055,0,0,,,,1,1,,0.03,nav,1,1971,2,, 16032,NJBF000080316,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41467992,-74.71525849,RES1,3001,,NaN,NE,1971,1971,3102,2,1,607.7669918,607.7669918,3507,NO,32.38,40.94,1,2.33,6110,109.244667,119.07163,128.778579,133.860247,I,Above,Hip,0,5701,,36.66340686,0,0,,,,1,1,,1,nav,1,1971,2,, 16033,NJBF000080356,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41480617,-74.71610514,RES1,3001,,NaN,NE,1971,1971,3102,2,1,663.0171486,663.0171486,3507,NO,29.64,38.75,1,-0.2,6106,109.237931,119.060817,128.767686,133.841299,I,Above,Flat,0,5701,,34.19577092,0,0,,,,1,1,,0.03,nav,1,1971,2,, 16034,NJBF000080382,4678 MAYS LANDING SP RD,Hamilton,NJ,39.4148929,-74.71606447,RES1,3001,,NaN,NE,1971,1971,3102,2,1,708.5654626,708.5654626,3507,NO,32.48,46.26,1,2.32,6106,109.237883,119.060627,128.767359,133.84082,I,Above,Hip,0,5701,,39.36983055,0,0,,,,1,1,,0.03,nav,1,1971,2,, 16035,NJBF000080559,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41545446,-74.71440603,RES1,3001,,NaN,NE,1971,1971,3102,2,1,859.7860717,859.7860717,3507,NO,28.52,40.56,1,0.46,6106,109.247893,119.075638,128.781263,133.865797,I,Above,Gable,0,5701,,34.53875281,0,0,,,,1,1,,0.03,nav,1,1971,2,, 16036,NJBF000080572,4678 MAYS LANDING SP RD,Hamilton,NJ,39.4154851,-74.71533341,RES1,3001,,NaN,NE,1971,1971,3102,2,1,636.8429069,636.8429069,3507,NO,29.05,43.84,1,1.11,6110,109.240916,119.064593,128.770322,133.84666,I,Above,Gable,0,5701,,36.4457191,0,0,,,,1,1,,0.03,nav,1,1971,2,, 16037,NJBF000080574,4678 MAYS LANDING SP RD,Hamilton,NJ,39.41549593,-74.71454518,RES1,3001,,NaN,NE,1971,1971,3102,2,1,854.9325764,854.9325764,3507,NO,32.35,42.39,1,1.9,6110,109.246699,119.073694,128.779278,133.862366,I,Above,Hip,0,5701,,37.37095567,0,0,,,,1,1,,0.03,nav,1,1971,2,, 16038,NJBF000080568,4726 MAYS LANDING SP RD,Hamilton,NJ,39.41548012,-74.70845763,RES1,3001,,17,NE,1988,1988,3102,1,1,1648.824305,1648.824305,3507,NO,17.41,22.54,1,2.73,6112,109.292181,119.1455,128.849718,133.98541,I,Above,Gable,0,5701,,19.97750885,0,0,,,,1,1,,0.35,nav,1,1988,1,, 16039,NJBF000080638,4732 MAYS LANDING SP RD,Hamilton,NJ,39.4157268,-74.70822838,RES1,3001,,17,NE,1988,2003,3102,2,1,2172.243456,2172.243456,3507,NO,37.99,46.13,1,2.97,6112,109.293001,119.146353,128.850088,133.986338,I,Above,Gable,0,5701,,42.06191,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 16040,NJBF000080699,4736 MAYS LANDING SP RD,Hamilton,NJ,39.41596235,-74.70774273,RES1,3001,,17,NE,1987,1987,3102,1,1,759.9564004,759.9564004,3507,NO,16.7,22.79,1,1.81,6112,109.295801,119.150337,128.853526,133.9926,I,Above,Gable,0,5701,,19.74739669,0,0,,,,1,1,,0.35,nav,1,1987,1,, 16041,NJBF000081004,915 GRAND AVE,Hamilton,NJ,39.41719245,-74.64825452,RES1,3001,,17,NE,1994,1994,3102,1,1,1302.749789,1302.749789,3507,NO,13.62,20.19,1,1.85,6112,109.819519,119.922764,129.561139,135.188453,I,Above,Hip,0,5701,,16.90724105,0,0,,,,1,1,,0.15,nav,1,1994,1,, 16042,NJBF000081123,159 CRESCENT BLVD,Hamilton,NJ,39.41763078,-74.71394647,RES1,3001,,NaN,NE,1964,1964,3102,2,1,600.0115532,600.0115532,3507,NO,27.6,32.64,1,0.55,6112,109.242988,119.064357,128.766548,133.84239,I,Above,Gable,0,5701,,30.12031613,0,0,,,,1,1,,0.35,nav,1,1964,2,, 16043,NJBF000081184,4630 MEMORY LANE,Hamilton,NJ,39.4179274,-74.71377169,RES1,3001,,16,NE,1952,1952,3102,1,1,1347.361503,1347.361503,3507,NO,13.41,21.28,1,0.44,6112,109.24319,119.064129,128.765828,133.841451,I,Above,Hip,0,5701,,17.34665625,0,0,,,,1,1,,0.35,nav,1,1952,1,, 16044,NJBF000081231,90 CRESCENT BLVD,Hamilton,NJ,39.41819715,-74.71436256,RES1,3001,,16,NE,1930,1930,3102,1,1,953.8195,953.8195,3507,NO,12.81,21.52,1,-0.29,6110,109.237758,119.055147,128.756578,133.825503,I,Above,Gable,0,5701,,17.166013,0,0,,,,1,1,,0.35,nav,1,1930,1,, 16045,NJBF000081423,4607 OCEAN HEIGHTS AVENUE,Hamilton,NJ,39.41915567,-74.68675761,RES1,3001,,17,NE,2001,2001,3102,2,1,568.9958806,568.9958806,3507,NO,41.43,48.38,1,2.79,6112,109.452173,119.384703,129.0696,134.369945,I,Above,Gable,0,5701,,44.90416378,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 16046,NJBF000081533,52 CRESCENT BLVD,Hamilton,NJ,39.41992263,-74.71355564,RES1,3001,,17,NE,1927,1927,3102,1,1,3020.411933,3020.411933,3507,NO,12.41,25.01,1,0.02,6112,109.237562,119.051381,128.750013,133.815844,I,Above,Gable,0,5701,,18.70868191,0,0,,,,1,1,,0.35,nav,1,1927,1,, 16047,NJBF000081535,975 GRAND AVENUE,Hamilton,NJ,39.41994505,-74.64713568,RES1,3001,,17,NE,1980,1980,3102,1,1,3362.561904,3362.561904,3507,NO,19.19,30.79,1,2.39,6112,109.831264,119.916737,129.546021,135.168932,I,Above,Hip,0,5701,,24.99003525,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 16048,NJBF000081578,105 SUNNY AVENUE,Hamilton,NJ,39.42045127,-74.71298761,RES1,3001,,51,NE,1970,1970,3102,1,1,854.9360143,854.9360143,3507,NO,15.88,26.59,1,0.87,6112,109.240004,119.054006,128.751679,133.819348,I,Above,Gable,0,5701,,21.234652,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16049,NJBF000081596,624 SALMA TERRACE,Hamilton,NJ,39.4206456,-74.69099903,RES1,3001,,17,NE,1999,1999,3102,1,1,1923.117814,1923.117814,3507,NO,12.67,26.53,1,-0.95,6112,109.413145,119.31967,129.005126,134.261065,I,Above,Gable,0,5701,,19.6027494,0,1.1,,,,1,1,,0.35,nav,1,1999,1,, 16050,NJBF000081612,628 SALMA TERRACE,Hamilton,NJ,39.42082224,-74.69074601,RES1,3001,,17,NE,1980,1980,3102,2,1,2271.369866,2271.369866,3507,NO,21.78,35.68,1,-0.47,6112,109.414782,119.321511,129.006428,134.263534,I,Above,Gable,0,5701,,28.73137782,0,0,,,,1,1,,0.35,nav,1,1980,2,, 16051,NJBF000081622,625 SALMA TERRACE,Hamilton,NJ,39.4209629,-74.69168558,RES1,3001,,17,NE,1980,1980,3102,1,1,1620.709502,1620.709502,3507,NO,13.73,20.23,1,2.44,6112,109.406648,119.308627,128.994017,134.242302,I,Above,Hip,0,5701,,16.97968774,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 16052,NJBF000081644,629 SALMA TERRACE,Hamilton,NJ,39.42121685,-74.69159368,RES1,3001,,17,NE,1980,1980,3102,1,1,2180.959171,2180.959171,3507,NO,18.41,31.04,1,0.56,6112,109.406748,119.307846,128.992681,134.240316,I,Above,Gable,0,5701,,24.72292145,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 16053,NJBF000081896,500 SUN PINE DRIVE,Hamilton,NJ,39.42430703,-74.71010543,RES1,3001,,16,NE,1920,1920,3102,2,1,1184.51462,1184.51462,3507,NO,37.38,43.73,1,-0.22,6112,109.249375,119.058505,128.749356,133.819446,I,Above,Gable,0,5701,,40.55408445,0,0,,,,1,1,,0.7,nav,1,1920,2,, 16054,NJBF000082247,544 GRAVELLY RUN ROAD,Hamilton,NJ,39.42835828,-74.70871599,RES1,3001,,18,NE,1986,1986,3102,2,1,979.9854618,979.9854618,3507,NO,29.39,35.25,1,2.21,6106,109.248155,119.043918,128.728241,133.786506,I,Above,Hip,0,5701,,32.31968813,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 16055,NJBF000082423,467 RIDGE LANE,Hamilton,NJ,39.42977688,-74.71115239,RES1,3001,,17,NE,1985,1985,3102,2,1,1623.617006,1623.617006,3507,NO,28.75,38.99,1,2.31,6112,109.224636,119.004066,128.687734,133.716283,I,Above,Gable,0,5701,,33.86776101,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 16056,NJBF000082454,416 HIGHLAND DRIVE,Hamilton,NJ,39.43009577,-74.71529093,RES1,3001,,NaN,NE,1987,0,3102,2,1,533.1223253,533.1223253,3507,NO,30.96,41.16,1,0.55,6112,109.190918,118.952897,128.638152,133.628559,I,Above,Gable,0,5701,,36.06007516,0,0,,,,1,1,,0.03,nav,1,1987,2,, 16057,NJBF000082616,401 CLARKSTOWN ROAD,Hamilton,NJ,39.43160628,-74.7143746,RES1,3001,,17,NE,1972,1972,3102,1,2,7071.220441,7071.220441,3507,NO,14.15,23,1,-0.61,6112,109.193708,118.951981,128.634918,133.624291,I,Above,Flat,0,5701,,18.57620155,0,0,,,,1,1,,0.35,nav,1,1972,1,, 16058,NJBF000082649,343 CLARKSTOWN ROAD,Hamilton,NJ,39.43202369,-74.71476761,RES1,3001,,NaN,NE,1977,1925,3102,2,1,942.1834159,942.1834159,3507,NO,38.54,44.46,1,2.65,6112,109.189376,118.944145,128.626759,133.610171,I,Above,Gable,0,5701,,41.50125356,0,0,,,,1,1,,0.35,nav,1,1977,2,, 16059,NJBF000082712,337 CLARKSTOWN ROAD,Hamilton,NJ,39.43265929,-74.71484622,RES1,3001,,19,NE,2003,2003,3102,2,1,4985.21734,4985.21734,3507,NO,34.87,41.7,1,-0.97,6112,109.186932,118.938326,128.620205,133.599109,I,Above,Hip,0,5701,,38.28803371,0,1.2,,,,1,1,,0.35,nav,1,2003,2,, 16060,NJBF000082735,331 CLARKSTOWN ROAD,Hamilton,NJ,39.43299298,-74.71502517,RES1,3001,,17,NE,1972,1972,3102,1,1,1772.887525,1772.887525,3507,NO,10.08,23.15,1,-0.61,6112,109.184552,118.933648,128.615214,133.590533,I,Above,Flat,0,5701,,16.61490681,0,0,,,,1,1,,0.35,nav,1,1972,1,, 16061,NJBF000082767,327 CLARKSTOWN ROAD,Hamilton,NJ,39.43328108,-74.71506026,RES1,3001,,16,NE,1900,1900,3102,2,1,650.4120575,650.4120575,3507,NO,22.55,32.44,1,-0.26,6112,109.183454,118.931012,128.612251,133.585525,I,Above,Flat,0,5701,,27.49242619,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16062,NJBF000082776,323 CLARKSTOWN ROAD,Hamilton,NJ,39.43339631,-74.71515613,RES1,3001,,17,NE,1974,1974,3102,2,1,1639.124933,1639.124933,3507,NO,26.2,38.07,1,1.73,6112,109.182362,118.928998,128.610149,133.581886,I,Above,Flat,0,5701,,32.13245563,0,1.2,,,,1,1,,0.35,nav,1,1974,2,, 16063,NJBF000082787,323 CLARKSTOWN ROAD,Hamilton,NJ,39.43359275,-74.71505634,RES1,3001,,17,NE,1974,1974,3102,2,1,1937.673755,1937.673755,3507,NO,28.6,34.12,1,2.68,6112,109.182604,118.928646,128.609513,133.580938,I,Above,Gable,0,5701,,31.3623325,0,1.2,,,,1,1,,0.35,nav,1,1974,2,, 16064,NJBF000082819,319 CLARKSTOWN ROAD,Hamilton,NJ,39.43389914,-74.71511727,RES1,3001,,16,NE,1900,1900,3102,2,1,1489.854197,1489.854197,3507,NO,27.63,39.98,1,2.59,6112,109.181255,118.925565,128.606101,133.575143,I,Above,Gable,0,5701,,33.80874912,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16065,NJBF000082860,315 CLARKSTOWN ROAD,Hamilton,NJ,39.43438107,-74.71498273,RES1,3001,,16,NE,1951,1951,3102,2,1,3638.435227,3638.435227,3507,NO,28.23,37.69,1,-0.49,6112,109.180982,118.923406,128.603308,133.570612,I,Above,Hip,0,5701,,32.95646793,0,0,,,,1,1,,0.15,nav,1,1951,2,, 16066,NJBF000082953,506 NORTH STREET,Hamilton,NJ,39.43542719,-74.71486465,RES1,3001,,17,NE,1980,1980,3102,2,1,2241.071195,2241.071195,3507,NO,31.98,45.91,1,0.76,6112,109.179048,118.916691,128.59532,133.557328,I,Above,Hip,0,5701,,38.94024254,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 16067,NJBF000083242,4219 FAIRWAY DRIVE,Hamilton,NJ,39.44013682,-74.62901436,RES1,3001,,17,NE,1980,1980,3101,2,1,1596.455558,1596.455558,3507,NO,36.98,48.11,1,0.54,6112,110.057739,120.011921,129.562992,135.227509,I,Above,Gable,0,5701,,42.54968782,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 16068,NJBF000083246,,Hamilton,NJ,39.44025282,-74.62933506,RES1,3001,,NaN,NE,1969,0,3101,1,1,1919.240678,1919.240678,3507,NO,18.14,27.07,1,-0.21,6112,110.053374,120.006222,129.557859,135.219128,I,Above,Gable,0,5701,,22.6052001,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16069,NJBF000083256,4239 FAIRWAY CIRCLE,Hamilton,NJ,39.44038453,-74.63228589,RES1,3001,,17,NE,1980,1980,3101,2,1,1861.083272,1861.083272,3507,NO,32.03,43.81,1,1.82,6112,110.013803,119.962019,129.520006,135.156642,I,Above,Gable,0,5701,,37.91785173,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 16070,NJBF000083254,4223 FAIRWAY DRIVE,Hamilton,NJ,39.44038274,-74.62966477,RES1,3001,,17,NE,1980,1980,3101,1,1,1804.8447,1804.8447,3507,NO,14.07,19.07,1,2.06,6112,110.048895,120.000275,129.552479,135.210345,I,Above,Gable,0,5701,,16.57270211,0,0,,,,1,1,,0.35,nav,1,1980,1,, 16071,NJBF000083263,4225 FAIRWAY DRIVE,Hamilton,NJ,39.44051263,-74.62995668,RES1,3001,,17,NE,1980,1980,3101,1,1,2672.384258,2672.384258,3507,NO,12.47,20.76,1,-0.6,6112,110.044939,119.994889,129.547574,135.202342,I,Above,Hip,0,5701,,16.61431784,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 16072,NJBF000083264,4241 FAIRWAY CIRCLE,Hamilton,NJ,39.44052718,-74.63259087,RES1,3001,,17,NE,1980,1980,3101,1,1,2687.89337,2687.89337,3507,NO,14.15,26.76,1,2.71,6112,110.009744,119.956372,129.514839,135.148189,I,Above,Gable,0,5701,,20.45535289,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 16073,NJBF000083260,4231 FAIRWAY CIRCLE,Hamilton,NJ,39.44049463,-74.63112379,RES1,3001,,17,NE,1980,1979,3101,1,1,2795.478471,2795.478471,3507,NO,19.68,31.14,1,2.42,6112,110.029269,119.978004,129.533296,135.178724,I,Above,Hip,0,5701,,25.41332901,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 16074,NJBF000083269,4243 FAIRWAY CIRCLE,Hamilton,NJ,39.44060149,-74.63290022,RES1,3001,,17,NE,1982,1982,3101,1,1,2463.995426,2463.995426,3507,NO,18.14,24.34,1,1.83,6112,110.00565,119.951251,129.510294,135.140711,I,Above,Gable,0,5701,,21.23918515,0,1.1,,,,1,1,,0.35,nav,1,1982,1,, 16075,NJBF000083271,4227 FAIRWAY DRIVE,Hamilton,NJ,39.44062299,-74.63026425,RES1,3001,,17,NE,1980,1980,3101,1,1,1936.693936,1936.693936,3507,NO,13.55,28.32,1,-0.86,6112,110.040791,119.989459,129.542685,135.194342,I,Above,Gable,0,5701,,20.93474147,0,1.1,,,,1,1,,0.35,nav,1,1980,1,, 16076,NJBF000083279,119 KATHERINE AVENUE,Hamilton,NJ,39.44089743,-74.71993727,RES1,3001,,16,NE,1946,1946,3102,1,1,1704.073412,1704.073412,3507,NO,12.76,22.41,1,0.34,6112,109.123386,118.815168,128.490756,133.374685,I,Above,Gable,0,5701,,17.58580746,0,0,,,,1,1,,0.35,nav,1,1946,1,, 16077,NJBF000083274,4229 FAIRWAY CIRCLE,Hamilton,NJ,39.44071683,-74.63095347,RES1,3001,,17,NE,1980,1980,3101,1,1,1544.118425,1544.118425,3507,NO,15.33,22.8,1,0.73,6112,110.031532,119.978596,129.533226,135.178771,I,Above,Gable,0,5701,,19.06762547,0,0,,,,1,1,,0.35,nav,1,1980,1,, 16078,NJBF000083437,288 OLD RIVER ROAD,Hamilton,NJ,39.44432584,-74.72115009,RES1,3001,,NaN,NE,1969,0,3102,2,1,2274.025708,2274.025708,3505,NO,32.16,39.73,3,-0.99,6112,109.104587,118.774432,128.447554,133.299624,I,Above,Flat,0,5701,,35.94258136,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16079,NJBF000083575,25 ROUTE 50,Hamilton,NJ,39.4474605,-74.7362569,RES1,3001,,17,NE,1916,1916,3102,2,1,1264.97595,1264.97595,3505,NO,35.73,48.78,3,-1.81,6112,108.975259,118.579065,128.256715,132.955608,I,Above,Flat,0,5701,,42.25302608,0,0,,,,1,1,,0.35,nav,1,1916,2,, 16080,NJBF000083566,5303 HARDING HWY #1607,Hamilton,NJ,39.44732675,-74.70286259,RES1,3001,,33,NE,1973,1973,3102,2,1,17491.41563,17491.41563,3507,NO,24.02,31.49,1,1,6112,109.252933,118.966691,128.624177,133.618876,I,Above,Gable,0,5701,,27.75327232,0,0,,,,1,1,,0.35,nav,1,1973,2,, 16081,NJBF000083593,27 ROUTE 50,Hamilton,NJ,39.44774182,-74.7362259,RES1,3001,,16,NE,1924,1924,3102,2,1,1841.719184,1841.719184,3505,NO,29.98,43.23,3,2.21,6112,108.974699,118.577205,128.254664,132.952073,I,Above,Flat,0,5701,,36.60613518,0,0,,,,1,1,,0.35,nav,1,1924,2,, 16082,NJBF000083618,6109 HARDING HIGHWAY,Hamilton,NJ,39.44801107,-74.73691889,RES1,3001,,17,NE,1918,1918,3102,2,1,1046.873814,1046.873814,3505,NO,40.5,54.35,3,6.05,6110,108.968487,118.567412,128.24496,132.934554,I,Above,Gable,0,5701,,47.42554928,0,0,,,,1,1,,0.35,nav,1,1918,2,, 16083,NJBF000083604,HARDING HIGHWAY,Hamilton,NJ,39.44783263,-74.70277422,RES1,3001,,NaN,NE,1969,0,3102,2,1,10075.07502,10075.07502,3507,NO,29.97,36.47,1,-0.86,6112,109.252755,118.963778,128.62071,133.613058,I,Above,Gable,0,5701,,33.21950743,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16084,NJBF000083620,6107 HARDING HIGHWAY,Hamilton,NJ,39.44802376,-74.7367398,RES1,3001,,17,NE,1918,1918,3102,2,1,976.111071,976.111071,3505,NO,26.22,39.41,3,-0.76,6110,108.969856,118.569296,128.246769,132.937868,I,Above,Gable,0,5701,,32.81607082,0,0,,,,1,1,,0.35,nav,1,1918,2,, 16085,NJBF000083645,6138 LONGWOOD AVENUE,Hamilton,NJ,39.44835055,-74.73691767,RES1,3001,,17,NE,1918,1918,3102,2,1,942.1878852,942.1878852,3507,NO,24.03,32.48,1,-0.9,6110,108.967527,118.564765,128.242103,132.929584,I,Above,Gable,0,5701,,28.25456724,0,0,,,,1,1,,0.35,nav,1,1918,2,, 16086,NJBF000083646,5 CAMAC AVENUE,Hamilton,NJ,39.44837721,-74.73519989,RES1,3001,,17,NE,1952,1952,3102,2,1,1391.944839,1391.944839,3507,NO,22.65,34.73,1,1.23,6112,108.980993,118.583648,128.26031,132.962845,I,Above,Gable,0,5701,,28.68810974,0,0,,,,1,1,,0.35,nav,1,1952,2,, 16087,NJBF000083657,6136 LONGWOOD AVENUE,Hamilton,NJ,39.44847794,-74.73692035,RES1,3001,,16,NE,1918,1918,3102,2,1,1042.025034,1042.025034,3507,NO,38.83,53.36,1,0.89,6110,108.967151,118.56375,128.24101,132.927681,I,Above,Gable,0,5701,,46.0942714,0,0,,,,1,1,,0.35,nav,1,1918,2,, 16088,NJBF000083668,10 CAMAC AVENUE,Hamilton,NJ,39.44862435,-74.73468759,RES1,3001,,17,NE,1953,1953,3102,1,1,1334.766727,1334.766727,3507,NO,19.44,33.49,1,0.92,6112,108.984355,118.587419,128.26372,132.969249,I,Above,Gable,0,5701,,26.46577205,0,0,,,,1,1,,0.35,nav,1,1953,1,, 16089,NJBF000083669,6134 LONGWOOD AVENUE,Hamilton,NJ,39.44864013,-74.73684834,RES1,3001,,17,NE,1969,1969,3102,1,1,1483.068576,1483.068576,3507,NO,13.24,24.06,1,1.41,6110,108.967258,118.563282,128.240415,132.926712,I,Above,Gable,0,5701,,18.65008821,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16090,NJBF000083680,6132 LONGWOOD AVENUE,Hamilton,NJ,39.44875046,-74.73691663,RES1,3001,,17,NE,1918,1918,3102,2,1,998.4041476,998.4041476,3507,NO,25.23,40.09,1,1.73,6110,108.966404,118.561656,128.238749,132.923748,I,Above,Gable,0,5701,,32.66082774,0,1.1,,,,1,1,,0.35,nav,1,1918,2,, 16091,NJBF000083695,6130 LONGWOOD AVENUE,Hamilton,NJ,39.44888457,-74.73692023,RES1,3001,,17,NE,1918,1918,3102,2,1,1015.859105,1015.859105,3507,NO,25.26,35.38,1,2.06,6112,108.965999,118.560567,128.237579,132.921708,I,Above,Hip,0,5701,,30.31884971,0,1.2,,,,1,1,,0.35,nav,1,1918,2,, 16092,NJBF000083725,12 PENNINGTON AVENUE,Hamilton,NJ,39.44924872,-74.72742539,RES1,3001,,17,NE,1945,1945,3103,2,1,1340.579189,1340.579189,3505,NO,35.73,47.56,3,7.38,6112,109.040902,118.664182,128.336775,133.10273,I,Above,Hip,0,5701,,41.64517006,0,0,,,,1,1,,0.35,nav,1,1945,2,, 16093,NJBF000083731,19 CENTRAL AVENUE,Hamilton,NJ,39.44932601,-74.73419689,RES1,3001,,17,NE,1987,1987,3102,1,1,1288.235348,1288.235348,3507,NO,18.56,27.05,1,0.58,6112,108.986313,118.587402,128.263059,132.968554,I,Above,Flat,0,5701,,22.80708358,0,0,,,,1,1,,0.35,nav,1,1987,1,, 16094,NJBF000083739,6131 LONGWOOD AVENUE,Hamilton,NJ,39.44940504,-74.73734458,RES1,3001,,17,NE,1900,1900,3102,2,1,1349.305497,1349.305497,3507,NO,22.29,33.29,1,0.09,6110,108.961186,118.55179,128.228651,132.905768,I,Above,Gable,0,5701,,27.78939546,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16095,NJBF000083740,15 FARRAGUT AVENUE,Hamilton,NJ,39.44940711,-74.72684232,RES1,3001,,17,NE,1880,1880,3103,2,1,1093.40256,1093.40256,3505,NO,36.59,42.29,3,4.51,6112,109.045235,118.66956,128.341747,133.111878,I,Above,Gable,0,5701,,39.44293436,0,0,,,,1,1,,0.35,nav,1,1880,2,, 16096,NJBF000083743,11 PENNINGTON AVENUE,Hamilton,NJ,39.44944824,-74.7279978,RES1,3001,,17,NE,1926,1926,3103,1,1,1619.744904,1619.744904,3505,NO,17.71,27.78,3,-1.18,6112,109.035742,118.656129,128.328872,133.088511,I,Above,Gable,0,5701,,22.74246334,0,0,,,,1,1,,0.35,nav,1,1926,1,, 16097,NJBF000083746,14 PENNINGTON AVENUE,Hamilton,NJ,39.4495158,-74.72761123,RES1,3001,,17,NE,1890,1890,3103,2,1,1046.88364,1046.88364,3505,NO,37.77,49.06,3,7.7,6112,109.038706,118.659981,128.332484,133.095125,I,Above,Hip,0,5701,,43.41532326,0,0,,,,1,1,,0.35,nav,1,1890,2,, 16098,NJBF000083751,13 PENNINGTON AVENUE,Hamilton,NJ,39.44957134,-74.72796748,RES1,3001,,17,NE,1918,1918,3103,2,1,1231.042686,1231.042686,3505,NO,29.19,43.72,3,5.11,6112,109.035676,118.655516,128.32816,133.087306,I,Above,Hip,0,5701,,36.45383442,0,0,,,,1,1,,0.35,nav,1,1918,2,, 16099,NJBF000083761,15 PENNINGTON AVENUE,Hamilton,NJ,39.44968648,-74.7279588,RES1,3001,,17,NE,1900,1900,3103,2,1,1156.411951,1156.411951,3505,NO,30.28,36.54,3,8.95,6112,109.035445,118.654705,128.327268,133.085766,I,Above,Gable,0,5701,,33.41039256,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 16100,NJBF000083767,21 FARRAGUT AVENUE,Hamilton,NJ,39.44977684,-74.72657321,RES1,3001,,17,NE,1890,1890,3103,3,1,1580.97402,1580.97402,3505,NO,48.1,58.02,3,2.74,6112,109.046485,118.669716,128.341508,133.11171,I,Above,Gable,0,5701,,53.06141192,0,0,,,,1,1,,0.35,nav,1,1890,3,, 16101,NJBF000083774,23 CENTRAL AVENUE,Hamilton,NJ,39.44985369,-74.73415797,RES1,3001,,NaN,NE,1969,0,3102,2,1,568.999446,568.999446,3507,NO,36.01,44.69,1,2.68,6110,108.98518,118.583703,128.259017,132.961558,I,Above,Gable,0,5701,,40.35091955,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16102,NJBF000083778,20 PENNINGTON AVENUE,Hamilton,NJ,39.44990683,-74.72755705,RES1,3001,,16,NE,1945,1945,3103,1,1,2480.498838,2480.498838,3505,NO,13.54,24.66,3,-2.58,6112,109.038143,118.657528,128.329738,133.090415,I,Above,Hip,0,5701,,19.09845068,0,0,,,,1,1,,0.35,nav,1,1945,1,, 16103,NJBF000083783,19 PENNINGTON AVENUE,Hamilton,NJ,39.44998001,-74.72790262,RES1,3001,,17,NE,1928,1928,3103,2,1,1311.498676,1311.498676,3505,NO,30.97,41.82,3,1.29,6112,109.035145,118.653035,128.325371,133.082528,I,Above,Gable,0,5701,,36.39696472,0,0,,,,1,1,,0.35,nav,1,1928,2,, 16104,NJBF000083785,5625 ATLANTIC AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,29,NaN,NE,1969,1924,3102,2,1,2172.245593,2172.245593,3505,NO,40.02,49.63,3,4.76,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,44.82474377,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16105,NJBF000083791,27 FARRAGUT AVENUE,Hamilton,NJ,39.45006664,-74.72640949,RES1,3001,,17,NE,1868,1868,3103,2,1,1758.360818,1758.360818,3505,NO,25.56,30.58,3,3.64,6112,109.047091,118.669306,128.340813,133.110656,I,Above,Gable,0,5701,,28.06954927,0,0,,,,1,1,,0.35,nav,1,1868,2,, 16106,NJBF000083794,23 PENNINGTON AVENUE,Hamilton,NJ,39.45010782,-74.72788762,RES1,3001,,17,NE,1924,1924,3103,2,1,749.291321,749.291321,3505,NO,37.39,42.71,3,-1.46,6112,109.034939,118.652201,128.324444,133.080934,I,Above,Gable,0,5701,,40.05025316,0,0,,,,1,1,,0.35,nav,1,1924,2,, 16107,NJBF000083800,5908 GASKILL STREET,Hamilton,NJ,39.45019457,-74.72710289,RES1,3001,,17,NE,1950,1950,3103,1,1,1698.17342,1698.17342,3505,NO,16.29,21.54,3,5.15,6112,109.041106,118.66042,128.332201,133.0951,I,Above,Gable,0,5701,,18.91810916,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16108,NJBF000083803,24 PENNINGTON AVENUE,Hamilton,NJ,39.45021632,-74.72747186,RES1,3001,,17,NE,1870,1870,3103,2,1,1043.002026,1043.002026,3505,NO,43.85,49.41,3,8.62,6112,109.038047,118.656069,128.328027,133.087527,I,Above,Gable,0,5701,,46.63071178,0,0,,,,1,1,,0.35,nav,1,1870,2,, 16109,NJBF000083812,25 PENNINGTON AVENUE,Hamilton,NJ,39.45029324,-74.72782019,RES1,3001,,17,NE,1928,1928,3103,2,1,1801.977744,1801.977744,3505,NO,33.77,44.73,3,1.71,6112,109.03502,118.651521,128.323605,133.079542,I,Above,Gable,0,5701,,39.25083001,0,0,,,,1,1,,0.35,nav,1,1928,2,, 16110,NJBF000083844,104 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,2008,3102,2,1,1625.560297,1625.560297,3505,NO,25.78,36.13,3,4.26,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,30.95316865,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16111,NJBF000083853,31 PENNINGTON AVENUE,Hamilton,NJ,39.45075162,-74.72771315,RES1,3001,,17,NE,1916,1916,3103,2,1,959.6341991,959.6341991,3505,NO,28.72,37.84,3,6.98,6112,109.034724,118.649133,128.320859,133.074873,I,Above,Gable,0,5701,,33.27849044,0,0,,,,1,1,,0.35,nav,1,1916,2,, 16112,NJBF000083857,5724 MAIN STREET,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1920,3102,2,1,1227.163161,1227.163161,3505,NO,29.49,41.85,3,-0.74,6106,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,35.66756096,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16113,NJBF000083862,104 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,2008,3102,2,1,1613.922642,1613.922642,3505,NO,25.32,39.09,3,3.72,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,32.20976703,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16114,NJBF000083867,33 PENNINGTON AVENUE,Hamilton,NJ,39.45088117,-74.72770081,RES1,3001,,16,NE,1924,1924,3103,2,1,1188.385716,1188.385716,3505,NO,37.11,50.07,3,4.42,6112,109.034496,118.648257,128.319891,133.073206,I,Above,Gable,0,5701,,43.59216951,0,1.1,,,,1,1,,0.35,nav,1,1924,2,, 16115,NJBF000083865,104 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,2008,3102,2,1,759.951664,759.951664,3505,NO,38.05,50.25,3,3.49,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,44.15006809,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16116,NJBF000083868,30 TAYLOR AVENUE,Hamilton,NJ,39.45090196,-74.72831255,RES1,3001,,17,NE,1900,1900,3103,1,1,943.1531148,943.1531148,3505,NO,19.7,29.67,3,8.21,6112,109.029458,118.641163,128.313097,133.06086,I,Above,Gable,0,5701,,24.68504466,0,0,,,,1,1,,0.35,nav,1,1900,1,, 16117,NJBF000083876,32 TAYLOR AVENUE,Hamilton,NJ,39.450998,-74.72826909,RES1,3001,,17,NE,1900,1900,3103,2,1,887.8948318,887.8948318,3505,NO,39.83,52.62,3,2.92,6112,109.029573,118.640908,128.312757,133.060309,I,Above,Gable,0,5701,,46.22128506,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 16118,NJBF000083874,104 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,2008,3102,2,1,1248.493147,1248.493147,3505,NO,37.9,52.03,3,7.04,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,44.96713913,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16119,NJBF000083880,34 PENNINGTON AVENUE,Hamilton,NJ,39.45104283,-74.72732366,RES1,3001,,17,NE,1837,1837,3103,2,1,1496.629428,1496.629428,3505,NO,28.82,35.55,3,2.12,6112,109.037163,118.65126,128.322592,133.078232,I,Above,Hip,0,5701,,32.1854023,0,0,,,,1,1,,0.35,nav,1,1837,2,, 16120,NJBF000083884,5906 MAIN STREET,Hamilton,NJ,39.45108804,-74.72631829,RES1,3001,565,NaN,NE,1896,1896,3102,3,1,1269.813312,1269.813312,3505,NO,56.51,65.12,3,7.9,6112,109.045279,118.66233,128.3331,133.097366,I,Above,Gable,0,5701,,60.81438451,0,0,,,,1,1,,1,nav,1,1896,3,, 16121,NJBF000083891,108 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,16,NE,1969,1930,3102,1,2,1402.609201,1402.609201,3505,NO,19.4,26.16,3,1.64,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,22.77680587,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16122,NJBF000083895,36 TAYLOR AVENUE,Hamilton,NJ,39.45125764,-74.72819061,RES1,3001,,17,NE,1900,1900,3103,2,1,1024.57868,1024.57868,3505,NO,33.92,44.45,3,2.41,6112,109.029549,118.63975,128.311392,133.058008,I,Above,Gable,0,5701,,39.18813317,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16123,NJBF000083900,40 TAYLOR AVENUE,Hamilton,NJ,39.45144759,-74.72813586,RES1,3001,,17,NE,1900,1900,3103,2,1,1158.32922,1158.32922,3505,NO,32.3,42.53,3,3.31,6112,109.029517,118.638882,128.310373,133.056287,I,Above,Gable,0,5701,,37.41706259,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16124,NJBF000083902,116 OLD EGG HARBOR ROAD,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1994,3102,2,1,502.1124999,502.1124999,3505,NO,32.96,38.39,3,5.46,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,35.6773528,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16125,NJBF000083909,42 TAYLOR AVENUE,Hamilton,NJ,39.4516358,-74.728093,RES1,3001,,17,NE,1900,1900,3103,2,1,599.0516074,599.0516074,3505,NO,29.09,34.24,3,-0.89,6112,109.029394,118.637892,128.309241,133.054359,I,Above,Flat,0,5701,,31.66559552,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16126,NJBF000083918,44 TAYLOR AVENUE,Hamilton,NJ,39.45181275,-74.72796347,RES1,3001,738,NaN,NE,1886,1886,3102,2,1,2162.573279,2162.573279,3505,NO,30.74,37.45,3,-1.95,6112,109.030011,118.637974,128.309144,133.054304,I,Above,Hip,0,5701,,34.09631863,0,0,,,,1,1,,0.35,nav,1,1886,2,, 16127,NJBF000083921,57 MILL STREET,Hamilton,NJ,39.4518763,-74.73585861,RES1,3001,,17,NE,1900,1900,3102,2,1,2106.35697,2106.35697,3505,NO,31.82,44.85,3,7.13,6112,108.966145,118.548923,128.223761,132.898582,I,Above,Hip,0,5701,,38.33434044,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 16128,NJBF000083931,110 FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1900,3102,3,1,646.5349218,646.5349218,3505,NO,54.37,68.92,3,4.45,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,61.64613092,0,1.2,,,,1,1,,0.35,nav,1,1969,3,, 16129,NJBF000083914,2547 LONG AVENUE,Hamilton,NJ,39.45178075,-74.61936005,RES1,3001,,17,NE,1997,1997,3101,1,1,1356.061009,1356.061009,3507,NO,16.44,29.59,1,-0.8,6109,110.189299,120.052136,129.574545,135.243415,I,Above,Gable,0,5701,,23.01475095,0,0,,,,1,1,,0.03,nav,1,1997,1,, 16130,NJBF000083929,6002 MAIN STREET,Hamilton,NJ,39.45206207,-74.72787369,COM1,3003,649,NaN,ME,1886,1886,3401,2,1,4980.386993,4980.386993,3507,NO,35.75,42.79,1,1.29,6112,109.030115,118.637027,128.307992,133.052382,I,Above,Flat,0,NaN,,39.26972254,0,0,,,,1,1,,1,nav,1,1886,2,, 16131,NJBF000083932,110 FARRAGUT AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1900,3102,3,1,2071.456367,2071.456367,3505,NO,38.51,48.8,3,-2.98,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,43.65386953,0,1.2,,,,1,1,,0.35,nav,1,1969,3,, 16132,NJBF000083927,2547 LONG AVENUE,Hamilton,NJ,39.45202601,-74.61955331,RES1,3001,,17,NE,1997,1997,3101,1,1,1279.496507,1279.496507,3507,NO,14.7,20.69,1,0.45,6109,110.186432,120.047113,129.569933,135.235646,I,Above,Gable,0,5701,,17.69398798,0,0,,,,1,1,,0.03,nav,1,1997,1,, 16133,NJBF000083981,208 LINWOOD AVENUE,Hamilton,NJ,39.44790985,-74.72015022,RES1,3001,,17,NE,1969,1940,3102,2,1,1103.089092,1103.089092,3505,NO,25.26,31.64,3,-2.96,6112,109.103881,118.757937,128.427524,133.2662,I,Above,Gable,0,5701,,28.45102735,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16134,NJBF000083982,6011 MAIN STREET,Hamilton,NJ,39.45277952,-74.72844352,COM1,3003,,17,ME,1880,1880,3401,3,1,3952.887659,3952.887659,3507,NO,55.56,62.15,1,1.87,6112,109.023662,118.624936,128.295755,133.030597,I,Above,Hip,0,NaN,,58.85510816,0,0,,,,1,1,,0.35,nav,1,1880,3,, 16135,NJBF000083986,6013 MAIN STREET,Hamilton,NJ,39.45281941,-74.72863467,COM1,3003,738,NaN,ME,1880,1861,3401,2,1,2834.301801,2834.301801,3507,NO,34.21,44.29,1,-0.74,6112,109.022003,118.62247,128.293365,133.026271,I,Above,Gable,0,NaN,,39.25372589,0,0,,,,1,1,,0.35,nav,1,1880,2,, 16136,NJBF000083996,6017 MAIN STREET,Hamilton,NJ,39.45290832,-74.72884195,COM1,3003,,17,ME,1880,1880,3401,2,1,3181.531771,3181.531771,3507,NO,41.7,55.2,1,2.72,6112,109.020089,118.619432,128.290381,133.020894,I,Above,Flat,0,NaN,,48.4518004,0,1.1,,,,1,1,,0.35,nav,1,1880,2,, 16137,NJBF000083969,2547 LONG AVENUE,Hamilton,NJ,39.45267452,-74.62219444,RES1,3001,,17,NE,1997,1997,3101,1,1,3145.033369,3145.033369,3507,NO,10.75,16.56,1,-0.48,6112,110.14875,120.002545,129.530707,135.171571,I,Above,Gable,0,5701,,13.65689868,0,0,,,,1,1,,0.35,nav,1,1997,1,, 16138,NJBF000084010,61 WHEATON AVENUE,Hamilton,NJ,39.45306352,-74.73823496,RES1,3001,,27,NE,1920,1920,3102,2,2,1736.054137,1736.054137,3504,NO,25.51,38.4,-4,0,6112,108.944019,118.513285,128.188457,132.834786,I,Above,Gable,0,5701,,31.95196103,0,0,,,,1,1,,0.35,nav,1,1920,2,, 16139,NJBF000084002,6019 MAIN STREET,Hamilton,NJ,39.45299929,-74.72907842,COM1,3003,739,NaN,ME,1886,1886,3401,2,1,1996.814583,1996.814583,3507,NO,26.53,32.44,1,1.94,6112,109.017933,118.616052,128.287068,133.01492,I,Above,Hip,0,NaN,,29.48679558,0,1.2,,,,1,1,,0.35,nav,1,1886,2,, 16140,NJBF000083983,2547 LONG AVENUE,Hamilton,NJ,39.45278414,-74.62188163,RES1,3001,,17,NE,1997,1997,3101,1,1,1304.688018,1304.688018,3507,NO,13.06,19.86,1,-0.36,6109,110.15309,120.006153,129.533696,135.176242,I,Above,Gable,0,5701,,16.45823816,0,0,,,,1,1,,0.03,nav,1,1997,1,, 16141,NJBF000084024,6017 MAIN STREET,Hamilton,NJ,39.45319473,-74.72889115,COM1,3003,,17,ME,1880,1880,3401,2,1,820.044344,820.044344,3507,NO,36.66,43.44,1,2.72,6112,109.018972,118.616623,128.287425,133.015705,I,Above,Flat,0,NaN,,40.04768066,0,1.1,,,,1,1,,0.35,nav,1,1880,2,, 16142,NJBF000084025,6046 MAIN STREET,Hamilton,NJ,39.45319513,-74.73080668,COM1,3003,,17,ME,1910,1910,3401,2,1,1827.174022,1827.174022,3507,NO,31.47,44.63,1,-0.56,6112,109.00335,118.595033,128.266807,132.978115,I,Above,Hip,0,NaN,,38.04611066,0,1.2,,,,1,1,,0.35,nav,1,1910,2,, 16143,NJBF000084029,,Hamilton,NJ,39.45325089,-74.72944248,COM1,3003,,NaN,ME,1975,0,3401,2,1,7142.966521,7142.966521,3507,NO,24.19,34.04,1,1.89,6112,109.01433,118.609964,128.281017,133.004065,I,Above,Flat,0,NaN,,29.11404821,0,0,,,,1,1,,1,nav,1,1975,2,, 16144,NJBF000084036,,Hamilton,NJ,39.4533889,-74.73833007,RES1,3001,,NaN,NE,1906,0,3102,2,1,1878.5551,1878.5551,3504,NO,24.34,35.19,-4,0,6112,108.942381,118.509687,128.18473,132.828179,I,Above,Hip,0,5701,,29.76185844,0,0,,,,1,1,,0.03,nav,1,1906,2,, 16145,NJBF000084042,6146 OLD HARDING HIGHWAY,Hamilton,NJ,39.45344947,-74.73855465,RES1,3001,,27,NE,1944,1944,3102,2,1,2038.497744,2038.497744,3504,NO,22.02,31.54,-4,0,6112,108.94043,118.506732,128.181835,132.822915,I,Above,Flat,0,5701,,26.78185661,0,0,,,,1,1,,0.03,nav,1,1944,2,, 16146,NJBF000084044,6148 OLD HARDING HIGHWAY,Hamilton,NJ,39.45350212,-74.73877776,RES1,3001,,17,NE,1946,1946,3102,1,1,1079.834093,1079.834093,3504,NO,17.17,29.54,-4,0,6112,108.938515,118.503856,128.17902,132.817793,I,Above,Gable,0,5701,,23.35648207,0,0,,,,1,1,,0.35,nav,1,1946,1,, 16147,NJBF000084048,6137 OLD HARDING HIGHWAY,Hamilton,NJ,39.45354705,-74.73758059,RES1,3001,,17,NE,1955,1955,3102,1,1,1669.17404,1669.17404,3504,NO,18.04,32.96,-4,0,6112,108.947915,118.516727,128.191381,132.840474,I,Above,Gable,0,5701,,25.50086453,0,0,,,,1,1,,0.03,nav,1,1955,1,, 16148,NJBF000084045,6129 OLD HARDING HIGHWAY,Hamilton,NJ,39.45350634,-74.7372202,RES1,3001,,17,NE,1975,1975,3102,2,1,3715.426948,3715.426948,3504,NO,23.74,28.85,-4,0,6112,108.950903,118.521044,128.19557,132.848117,I,Above,Flat,0,5701,,26.29584055,0,0,,,,1,1,,0.03,nav,1,1975,2,, 16149,NJBF000084051,6056 MAIN STREET,Hamilton,NJ,39.45361513,-74.73195378,RES1,3001,,16,NE,1892,1892,3102,3,1,2432.032273,2432.032273,3505,NO,43.59,53.39,3,5.94,6112,108.992968,118.578857,128.250952,132.949464,I,Above,Flat,0,5701,,48.49053106,0,0,,,,1,1,,0.35,nav,1,1892,3,, 16150,NJBF000084077,6065 MAIN STREET,Hamilton,NJ,39.45439073,-74.73284007,RES1,3001,,17,NE,1900,1900,3102,2,1,1737.029273,1737.029273,3505,NO,26.1,31.75,3,4.77,6112,108.983803,118.562837,128.23493,132.920722,I,Above,Gable,0,5701,,28.92279468,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 16151,NJBF000084082,6065 MAIN STREET,Hamilton,NJ,39.45448808,-74.73269247,RES1,3001,,17,NE,1900,1900,3102,2,1,711.481974,711.481974,3505,NO,33.92,45.28,3,0.44,6112,108.984756,118.56373,128.2357,132.922193,I,Above,Gable,0,5701,,39.60397033,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 16152,NJBF000084083,6071 MAIN STREET,Hamilton,NJ,39.45449108,-74.73319715,RES1,3001,959,NaN,NE,1926,1926,3102,2,1,4905.742049,4905.742049,3505,NO,31.49,45.98,3,3.08,6112,108.980655,118.55806,128.230269,132.91227,I,Above,Hip,0,5701,,38.73655235,0,0,,,,1,1,,0.03,nav,1,1926,2,, 16153,NJBF000084086,6061 MAIN STREET,Hamilton,NJ,39.45458313,-74.73229727,RES1,3001,,17,NE,1900,1900,3102,3,1,899.5334386,899.5334386,3505,NO,38.71,50.75,3,-0.01,6112,108.987721,118.567405,128.239132,132.928528,I,Above,Hip,0,5701,,44.7301901,0,1.2,,,,1,1,,0.35,nav,1,1900,3,, 16154,NJBF000084090,6036 KEN SCULL AVENUE,Hamilton,NJ,39.45468307,-74.72974594,RES1,3001,,17,NE,1900,1900,3102,2,1,1635.257557,1635.257557,3505,NO,37.01,43.69,3,7.46,6112,109.008282,118.595275,128.265662,132.977027,I,Above,Gable,0,5701,,40.35062399,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16155,NJBF000084093,6031 KEN SCULL AVENUE,Hamilton,NJ,39.45474964,-74.72928393,RES1,3001,,16,NE,1916,1916,3102,2,1,833.6175339,833.6175339,3505,NO,39.42,51.53,3,0.74,6112,109.011905,118.599956,128.270063,132.985099,I,Above,Gable,0,5701,,45.4777961,0,0,,,,1,1,,0.35,nav,1,1916,2,, 16156,NJBF000084096,122 LENAPE AVENUE,Hamilton,NJ,39.45479057,-74.73153025,RES1,3001,,17,NE,1920,1920,3102,2,1,1095.331015,1095.331015,3505,NO,33.83,46,3,-0.77,6112,108.993436,118.574367,128.245603,132.940487,I,Above,Hip,0,5701,,39.91533005,0,0,,,,1,1,,0.35,nav,1,1920,2,, 16157,NJBF000084100,6040 KEN SCULL AVENUE,Hamilton,NJ,39.45494261,-74.72945403,RES1,3001,,17,NE,1959,1910,3102,2,1,1124.41243,1124.41243,3505,NO,28.58,36.27,3,0.58,6112,109.010036,118.59652,128.266609,132.978926,I,Above,Gable,0,5701,,32.42866784,0,0,,,,1,1,,0.35,nav,1,1959,2,, 16158,NJBF000084101,129 LENAPE AVENUE,Hamilton,NJ,39.45490916,-74.7324708,RES1,3001,,17,NE,1969,1982,3102,2,1,2152.880407,2152.880407,3505,NO,28.92,37.25,3,6.22,6112,108.985481,118.562893,128.23453,132.920336,I,Above,Gable,0,5701,,33.08217192,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 16159,NJBF000084102,6035 KEN SCULL AVENUE,Hamilton,NJ,39.45494261,-74.72945403,RES1,3001,,17,NE,1959,1959,3102,1,1,1380.324236,1380.324236,3505,NO,16.02,21.12,3,4.46,6112,109.010036,118.59652,128.266609,132.978926,I,Above,Gable,0,5701,,18.56832535,0,0,,,,1,1,,0.35,nav,1,1959,1,, 16160,NJBF000084103,132 LENAPE AVENUE,Hamilton,NJ,39.45495225,-74.73045442,RES1,3001,,17,NE,1900,1900,3102,3,1,1769.996885,1769.996885,3505,NO,33.3,43.34,3,-1.04,6112,109.00182,118.585188,128.255792,132.959195,I,Above,Gable,0,5701,,38.31886996,0,1.2,,,,1,1,,0.35,nav,1,1900,3,, 16161,NJBF000084104,6028 THIRD STREET,Hamilton,NJ,39.45499793,-74.72889251,RES1,3001,,17,NE,1962,1962,3102,1,1,1612.000039,1612.000039,3505,NO,11.44,21.62,3,-2.62,6112,109.01451,118.602416,128.272177,132.989118,I,Above,Gable,0,5701,,16.52843837,0,0,,,,1,1,,0.35,nav,1,1962,1,, 16162,NJBF000084105,203 LENAPE AVENUE,Hamilton,NJ,39.45501947,-74.73218375,RES1,3001,,17,NE,1969,1977,3102,1,1,1655.617239,1655.617239,3505,NO,14.99,26.13,3,2.27,6112,108.987537,118.565242,128.236679,132.924337,I,Above,Hip,0,5701,,20.56182974,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16163,NJBF000084106,134 LENAPE AVENUE,Hamilton,NJ,39.45502279,-74.73023134,RES1,3001,,17,NE,1924,1924,3102,2,1,1828.149291,1828.149291,3505,NO,22.5,31.59,3,0.79,6112,109.003469,118.587138,128.257588,132.96252,I,Above,Gable,0,5701,,27.04557742,0,0,,,,1,1,,0.35,nav,1,1924,2,, 16164,NJBF000084107,207 LENAPE AVENUE,Hamilton,NJ,39.45502986,-74.73163154,RES1,3001,,16,NE,1969,1900,3102,2,1,2036.54735,2036.54735,3505,NO,25.26,38.09,3,2.77,6112,108.992005,118.571343,128.242501,132.934979,I,Above,Gable,0,5701,,31.67441895,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16165,NJBF000084110,202 LENAPE AVENUE,Hamilton,NJ,39.4551176,-74.72935068,RES1,3001,,17,NE,1958,1958,3102,1,1,1192.274595,1192.274595,3505,NO,19.29,34.04,3,3.6,6112,109.010453,118.596304,128.266241,132.978371,I,Above,Hip,0,5701,,26.66226584,0,0,,,,1,1,,0.03,nav,1,1958,1,, 16166,NJBF000084111,211 LENAPE AVENUE,Hamilton,NJ,39.45513309,-74.73142757,RES1,3001,,16,NE,1969,1900,3102,3,1,1450.121913,1450.121913,3505,NO,63.33,71.11,3,6.78,6112,108.993411,118.572821,128.243821,132.937459,I,Above,Gable,0,5701,,67.22366358,0,1.1,,,,1,1,,0.35,nav,1,1969,3,, 16167,NJBF000084112,211 LENAPE AVENUE,Hamilton,NJ,39.45515286,-74.73122227,RES1,3001,,16,NE,1969,1900,3102,3,1,1857.236283,1857.236283,3505,NO,58.01,63.9,3,0.2,6112,108.995043,118.574976,128.245862,132.941199,I,Above,Gable,0,5701,,60.95367038,0,1.1,,,,1,1,,0.35,nav,1,1969,3,, 16168,NJBF000084114,213 LENAPE AVENUE,Hamilton,NJ,39.4551897,-74.7310267,RES1,3001,,17,NE,1969,1925,3102,2,1,1693.408636,1693.408636,3505,NO,38.24,52.08,3,8.58,6112,108.996544,118.576874,128.247641,132.944473,I,Above,Gable,0,5701,,45.16140589,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16169,NJBF000084113,6027 THIRD STREET,Hamilton,NJ,39.45518196,-74.72838928,RES1,3001,,17,NE,1900,1900,3102,2,1,1896.974943,1896.974943,3505,NO,38.48,51.44,3,7.75,6112,109.018212,118.606661,128.276048,132.996295,I,Above,Hip,0,5701,,44.95876665,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16170,NJBF000084118,221 LENAPE AVENUE,Hamilton,NJ,39.45529043,-74.73047147,RES1,3001,,17,NE,1969,1910,3102,2,2,1409.402474,1409.402474,3505,NO,34.17,45.22,3,3.27,6112,109.000844,118.582336,128.252765,132.953893,I,Above,Gable,0,5701,,39.69611407,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16171,NJBF000084119,217 LENAPE AVENUE,Hamilton,NJ,39.45530015,-74.73090364,RES1,3001,,27,NE,1969,1910,3102,2,1,1455.926621,1455.926621,3505,NO,35.93,46.34,3,7.57,6112,108.997276,118.57739,128.248036,132.945265,I,Above,Gable,0,5701,,41.13464942,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16172,NJBF000084121,223 LENAPE AVENUE,Hamilton,NJ,39.45532932,-74.73020814,RES1,3001,,27,NE,1969,1860,3102,2,2,1550.91354,1550.91354,3505,NO,30.05,41.47,3,0.46,6112,109.002902,118.584988,128.255259,132.958472,I,Above,Gable,0,5701,,35.76233338,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16173,NJBF000084123,221 LENAPE AVENUE,Hamilton,NJ,39.4554003,-74.73072244,RES1,3001,,17,NE,1969,1910,3102,2,2,1693.418161,1693.418161,3505,NO,38.59,50.43,3,0.37,6112,108.998517,118.578648,128.249147,132.94736,I,Above,Flat,0,5701,,44.51217188,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16174,NJBF000084124,213 LENAPE AVENUE,Hamilton,NJ,39.45553963,-74.73128087,RES1,3001,,17,NE,1969,1925,3102,2,1,549.6111986,549.6111986,3505,NO,26.49,34.54,3,-1.21,6112,108.993598,118.571267,128.241977,132.934358,I,Above,Flat,0,5701,,30.51785177,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 16175,NJBF000084129,225 LENAPE AVENUE,Hamilton,NJ,39.45568541,-74.73022035,RES1,3001,,17,NE,1969,1860,3102,3,5,689.1926413,689.1926413,3505,NO,48.07,55.19,3,-2.36,6112,109.001928,118.58205,128.252136,132.953003,I,Above,Gable,0,5701,,51.63025275,0,0,,,,1,1,,0.03,nav,1,1969,3,, 16176,NJBF000084130,237 LENAPE AVENUE,Hamilton,NJ,39.45572017,-74.72850829,RES1,3001,,17,NE,1997,1997,3102,2,1,2029.772221,2029.772221,3505,NO,33.76,46.94,3,1.42,6112,109.01593,118.601077,128.270232,132.986042,I,Above,Gable,0,5701,,40.35162,0,0,,,,1,1,,0.35,nav,1,1997,2,, 16177,NJBF000084133,221 LENAPE AVENUE,Hamilton,NJ,39.45584022,-74.73066571,RES1,3001,,17,NE,1969,1910,3102,2,2,1052.686686,1052.686686,3505,NO,44.43,55.84,3,8.62,6112,108.997889,118.575813,128.246049,132.941991,I,Above,Gable,0,5701,,50.13792564,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16178,NJBF000084132,512 PARK ROAD,Hamilton,NJ,39.45577921,-74.72934249,RES1,3001,,17,NE,1962,1962,3102,1,1,2549.326809,2549.326809,3505,NO,23.84,37.28,3,5.82,6112,109.008914,118.591199,128.260771,132.968824,I,Above,Gable,0,5701,,30.55732933,0,0,,,,1,1,,0.03,nav,1,1962,1,, 16179,NJBF000084134,515 PARK ROAD,Hamilton,NJ,39.45585891,-74.7297774,RES1,3001,,17,NE,1981,1981,3102,2,1,1100.183504,1100.183504,3505,NO,44.34,53.65,3,7.93,6112,109.005141,118.585666,128.255427,132.959123,I,Above,Hip,0,5701,,48.99805448,0,0,,,,1,1,,0.03,nav,1,1981,2,, 16180,NJBF000084136,225 LENAPE AVENUE,Hamilton,NJ,39.45606097,-74.73043085,RES1,3001,,17,NE,1969,1860,3102,3,5,1262.070138,1262.070138,3505,NO,46,51.69,3,5.12,6112,108.999274,118.576714,128.246711,132.943344,I,Above,Gable,0,5701,,48.84520436,0,0,,,,1,1,,0.03,nav,1,1969,3,, 16181,NJBF000084135,608 FARRAGUT AVENUE,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1927,3102,1,1,1325.058143,1325.058143,3504,NO,13.6,27.2,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,20.39913894,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16182,NJBF000084138,6208 FIFTH STREET,Hamilton,NJ,39.45620151,-74.72835198,RES1,3001,,17,NE,1955,1955,3102,2,1,2665.630596,2665.630596,3505,NO,41.21,46.45,3,4.33,6112,109.01606,118.599041,128.267849,132.982008,I,Above,Gable,0,5701,,43.83124761,0,0,,,,1,1,,0.35,nav,1,1955,2,, 16183,NJBF000084137,612 FARRAGUT AVENUE,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1928,3102,2,1,1277.568314,1277.568314,3504,NO,26.71,40.02,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,33.36849974,0,0,,,,1,1,,0.35,nav,1,1970,2,, 16184,NJBF000084139,526 PARK ROAD,Hamilton,NJ,39.45621575,-74.72929877,RES1,3001,,17,NE,1969,1963,3102,2,1,2165.472462,2165.472462,3505,NO,20.42,32.68,3,-2.72,6112,109.008208,118.58824,128.257556,132.963239,I,Above,Gable,0,5701,,26.5476356,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16185,NJBF000084143,FIFTH STREET,Hamilton,NJ,39.45632119,-74.72812439,RES1,3001,,NaN,NE,1969,0,3102,2,1,903.413924,903.413924,3505,NO,41.34,48.36,3,2.81,6112,109.017661,118.60068,128.269298,132.984727,I,Above,Gable,0,5701,,44.85029981,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16186,NJBF000084142,616 FARRAGUT AVENUE,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1927,3102,2,1,630.0534855,630.0534855,3504,NO,30.73,35.84,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,33.28214504,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 16187,NJBF000084141,535 PARK ROAD,Hamilton,NJ,39.45630189,-74.72991372,RES1,3001,,17,NE,1969,1931,3102,2,1,1532.496767,1532.496767,3505,NO,26.35,39.91,3,3.38,6112,109.002935,118.580633,128.250231,132.949927,I,Above,Gable,0,5701,,33.12863039,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16188,NJBF000084145,543 PARK ROAD,Hamilton,NJ,39.45644116,-74.73012307,RES1,3001,,17,NE,1969,1945,3102,1,1,1940.584209,1940.584209,3505,NO,11.09,25.96,3,0.19,6112,109.000877,118.577185,128.246822,132.943791,I,Above,Hip,0,5701,,18.52402781,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16189,NJBF000084146,543 PARK ROAD,Hamilton,NJ,39.45651201,-74.73027255,RES1,3001,,17,NE,1969,1945,3102,1,1,685.3231147,685.3231147,3505,NO,14.72,26.35,3,0.84,6112,108.999471,118.574938,128.244617,132.939811,I,Above,Hip,0,5701,,20.53490036,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16190,NJBF000084149,546 PARK ROAD,Hamilton,NJ,39.45667425,-74.72941298,RES1,3001,,17,NE,1969,1942,3102,2,1,1544.127526,1544.127526,3505,NO,41.5,49,3,6.07,6112,109.006163,118.583344,128.252481,132.954272,I,Above,Gable,0,5701,,45.25242984,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16191,NJBF000084150,503 BAINBRIDGE AVENUE,Hamilton,NJ,39.45670411,-74.72869781,RES1,3001,,17,NE,1974,1974,3102,2,1,2429.131851,2429.131851,3504,NO,24.03,37.85,-4,0,6112,109.011997,118.591174,128.259905,132.967839,I,Above,Gable,0,5701,,30.94117262,0,0,,,,1,1,,0.03,nav,1,1974,2,, 16192,NJBF000084151,700 FARRAGUT AVENUE,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1962,3102,1,1,2864.333086,2864.333086,3504,NO,14.11,22.55,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,18.32792421,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16193,NJBF000084153,547 PARK ROAD,Hamilton,NJ,39.45677367,-74.7299986,RES1,3001,,17,NE,1969,1928,3102,1,1,2034.617267,2034.617267,3505,NO,16.79,25.15,3,4.41,6110,109.00109,118.575955,128.245354,132.941326,I,Above,Hip,0,5701,,20.97137485,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16194,NJBF000084155,546 PARK ROAD,Hamilton,NJ,39.45685296,-74.72939599,RES1,3001,,17,NE,1969,1942,3102,2,1,1523.770321,1523.770321,3505,NO,26.89,33.89,3,5.65,6112,109.005872,118.582124,128.251159,132.951973,I,Above,Gable,0,5701,,30.38657759,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16195,NJBF000084159,509 BAINBRIDGE AVENUE,Hamilton,NJ,39.45698325,-74.72851558,RES1,3001,,17,NE,1962,1962,3102,2,1,1777.737026,1777.737026,3504,NO,30.57,44.8,-4,0,6112,109.012838,118.591028,128.259514,132.967302,I,Above,Gable,0,5701,,37.68688689,0,0,,,,1,1,,0.03,nav,1,1962,2,, 16196,NJBF000084161,555 PARK ROAD,Hamilton,NJ,39.45701249,-74.73018335,RES1,3001,,17,NE,1969,1924,3102,2,2,2466.939123,2466.939123,3505,NO,30.69,35.83,3,6.28,6110,108.998998,118.572008,128.241384,132.934227,I,Above,Gable,0,5701,,33.25979343,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 16197,NJBF000084162,520 BAINBRIDGE AVENUE,Hamilton,NJ,39.45705368,-74.72793324,RES1,3001,,27,NE,1900,1900,3102,2,1,1188.39039,1188.39039,3504,NO,31.94,43.68,-4,0,6112,109.017503,118.597057,128.265181,132.977685,I,Above,Gable,0,5701,,37.80892466,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16198,NJBF000084164,560 PARK ROAD,Hamilton,NJ,39.45708605,-74.72963999,RES1,3001,,17,NE,1969,1900,3102,2,1,967.3843556,967.3843556,3505,NO,19.63,32.89,3,-2.3,6112,109.003298,118.577537,128.246584,132.94377,I,Above,Gable,0,5701,,26.26082984,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16199,NJBF000084165,569 PARK ROAD,Hamilton,NJ,39.45710391,-74.73108091,RES1,3001,,17,NE,1969,1976,3102,1,1,3086.336166,3086.336166,3505,NO,18.9,32.81,3,5.84,6106,108.991387,118.561191,128.230994,132.915304,I,Above,Gable,0,5701,,25.858662,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 16200,NJBF000084166,526 BAINBRIDGE AVENUE,Hamilton,NJ,39.45716757,-74.72786619,RES1,3001,,17,NE,1900,1900,3102,2,1,1162.211394,1162.211394,3504,NO,29.02,41.76,-4,0,6112,109.01779,118.596916,128.264942,132.977321,I,Above,Gable,0,5701,,35.39119098,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16201,NJBF000084167,565 PARK ROAD,Hamilton,NJ,39.45723201,-74.73022769,RES1,3001,,17,NE,1969,1924,3102,2,1,717.301188,717.301188,3505,NO,28.41,43.32,3,2.52,6110,108.998096,118.569767,128.239055,132.930114,I,Above,Gable,0,5701,,35.86450033,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16202,NJBF000084170,521 BAINBRIDGE AVENUE,Hamilton,NJ,39.45738309,-74.72837848,RES1,3001,,17,NE,1989,1989,3102,1,1,1363.835375,1363.835375,3504,NO,13.47,26.04,-4,0,6110,109.013032,118.58943,128.257633,132.964123,I,Above,Gable,0,5701,,19.75709209,0,0,,,,1,1,,0.35,nav,1,1989,1,, 16203,NJBF000084171,800 FARRAGUT AVENUE,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,569,NaN,NE,1970,1951,3102,1,1,1251.394596,1251.394596,3504,NO,18.86,24.17,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,21.51388213,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16204,NJBF000084173,570 PARK ROAD,Hamilton,NJ,39.45744155,-74.72979648,RES1,3001,,17,NE,1969,1957,3102,1,1,3123.163404,3123.163404,3505,NO,13.32,18.8,3,-2.54,6110,109.001154,118.572972,128.241923,132.935485,I,Above,Gable,0,5701,,16.05687789,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16205,NJBF000084177,576 PARK ROAD,Hamilton,NJ,39.45759221,-74.73002821,RES1,3001,,17,NE,1969,1900,3102,2,1,1087.582286,1087.582286,3505,NO,28.75,40.66,3,7.57,6110,108.998879,118.569177,128.238179,132.92874,I,Above,Hip,0,5701,,34.70459194,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16206,NJBF000084176,573 PARK ROAD,Hamilton,NJ,39.45758888,-74.73036999,RES1,3001,,16,NE,1969,1924,3102,2,1,969.3331897,969.3331897,3505,NO,31.52,37.33,3,5.63,6110,108.996064,118.565354,128.23454,132.922092,I,Above,Gable,0,5701,,34.42720903,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16207,NJBF000084174,810 FARRAGUT AVENUE,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1975,3102,1,1,1450.1015,1450.1015,3504,NO,18,31.9,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,24.9493468,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16208,NJBF000084187,582 PARK ROAD,Hamilton,NJ,39.45786167,-74.73010901,RES1,3001,,17,NE,1969,1940,3102,2,1,1155.443887,1155.443887,3505,NO,37.72,48.2,3,5.07,6110,108.997562,118.566135,128.235047,132.92319,I,Above,Gable,0,5701,,42.96345734,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16209,NJBF000084184,609 BAINBRIDGE AVENUE,Hamilton,NJ,39.45780252,-74.72852676,RES1,3001,,17,NE,1963,1963,3102,1,1,2966.144947,2966.144947,3504,NO,12.22,21.78,-4,0,6112,109.010803,118.584432,128.252504,132.955028,I,Above,Hip,0,5701,,17.00037801,0,0,,,,1,1,,0.35,nav,1,1963,1,, 16210,NJBF000084188,902 FARRAGUT AVENUE,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1993,3102,2,1,1475.312323,1475.312323,3504,NO,34.26,46.56,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,40.40659498,0,0,,,,1,1,,0.35,nav,1,1970,2,, 16211,NJBF000084191,582 PARK ROAD,Hamilton,NJ,39.45794205,-74.72989202,RES1,3001,,17,NE,1969,1940,3102,2,1,581.5819441,581.5819441,3505,NO,23.45,34.36,3,-1.69,6110,108.999164,118.567945,128.236701,132.926261,I,Above,Gable,0,5701,,28.90774014,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16212,NJBF000084192,586 PARK ROAD,Hamilton,NJ,39.45799926,-74.73015827,RES1,3001,,17,NE,1969,1922,3102,2,1,1444.290295,1444.290295,3505,NO,24.69,31.45,3,2.38,6110,108.996829,118.564503,128.233374,132.920219,I,Above,Gable,0,5701,,28.0678946,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16213,NJBF000084193,6302 SEVENTH STREET,Hamilton,NJ,39.45803192,-74.72800057,RES1,3001,,17,NE,1966,1966,3102,1,1,1893.108061,1893.108061,3504,NO,18,31.99,-4,0,6112,109.014637,118.588566,128.256228,132.961965,I,Above,Hip,0,5701,,24.99532292,0,0,,,,1,1,,0.35,nav,1,1966,1,, 16214,NJBF000084197,,Hamilton,NJ,39.45810011,-74.72861591,RES1,3001,,NaN,NE,1963,0,3102,2,1,748.3204663,748.3204663,3504,NO,26.23,33.56,-4,0,6106,109.009364,118.581081,128.249056,132.948918,I,Above,Gable,0,5701,,29.89579055,0,0,,,,1,1,,0.03,nav,1,1963,2,, 16215,NJBF000084199,6306 SEVENTH STREET,Hamilton,NJ,39.45818745,-74.72838964,RES1,3001,,17,NE,1957,1957,3102,2,1,994.5360608,994.5360608,3504,NO,29.56,43.1,-4,0,6112,109.011038,118.582946,128.250751,132.952066,I,Above,Gable,0,5701,,36.32874804,0,0,,,,1,1,,0.35,nav,1,1957,2,, 16216,NJBF000084202,6312 SEVENTH STREET,Hamilton,NJ,39.45831217,-74.72878429,RES1,3001,,17,NE,1957,1957,3102,1,1,2313.771644,2313.771644,3504,NO,13.16,18.35,-4,0,6110,109.00747,118.57751,128.245475,132.942513,I,Above,Gable,0,5701,,15.75489734,0,0,,,,1,1,,0.35,nav,1,1957,1,, 16217,NJBF000084201,,Hamilton,NJ,39.45822205,-74.6474516,RES1,3001,,NaN,NE,1969,0,3101,1,1,6700.860157,6700.860157,3507,NO,14.76,22.77,1,0.48,6112,109.816148,119.595108,129.169699,134.570867,I,Above,Hip,0,5701,,18.76821424,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16218,NJBF000084209,600 PARK ROAD,Hamilton,NJ,39.45850758,-74.7303195,RES1,3001,,17,NE,1969,1970,3102,1,1,1590.671494,1590.671494,3505,NO,20.64,28.01,3,6.22,6110,108.994282,118.558673,128.227387,132.909597,I,Above,Gable,0,5701,,24.32614629,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16219,NJBF000084210,600 PARK ROAD,Hamilton,NJ,39.45856007,-74.72993101,RES1,3001,,17,NE,1969,1970,3102,1,1,1333.79263,1333.79263,3505,NO,16.86,31.35,3,1.17,6110,108.997369,118.562627,128.231105,132.916422,I,Above,Hip,0,5701,,24.10659353,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16220,NJBF000084211,700 ADAMS AVE,Hamilton,NJ,39.45860721,-74.72820005,RES1,3001,,17,NE,1956,1956,3102,1,1,1279.510669,1279.510669,3504,NO,18.25,30.39,-4,0,6112,109.011637,118.581773,128.249265,132.949612,I,Above,Gable,0,5701,,24.32428391,0,1.2,,,,1,1,,0.35,nav,1,1956,1,, 16221,NJBF000084205,IVY BUSH/HAWTHORN COURT,Hamilton,NJ,39.45837916,-74.64802391,RES1,3001,,NaN,NE,1969,0,3101,1,1,6551.601457,6551.601457,3507,NO,12.46,17.72,1,0.33,6112,109.809122,119.585887,129.161411,134.556829,I,Above,Hip,0,5701,,15.0873411,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16222,NJBF000084217,701 ADAMS AVE,Hamilton,NJ,39.45880782,-74.72875659,RES1,3001,,17,NE,1957,1957,3102,1,1,1670.13712,1670.13712,3504,NO,15.53,28.05,-4,0,6112,109.00653,118.573896,128.241605,132.935752,I,Above,Gable,0,5701,,21.7891937,0,0,,,,1,1,,0.35,nav,1,1957,1,, 16223,NJBF000084212,IVY BUSH COURT,Hamilton,NJ,39.4586173,-74.64729694,RES1,3001,,NaN,NE,1969,0,3101,1,1,6424.58673,6424.58673,3507,NO,18.86,29.99,1,2.35,6112,109.817833,119.593872,129.16808,134.567921,I,Above,Gable,0,5701,,24.42648306,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16224,NJBF000084220,620 PARK ROAD,Hamilton,NJ,39.4589584,-74.7305999,RES1,3001,,17,NE,1969,1986,3102,1,1,1799.065668,1799.065668,3505,NO,15.84,27.39,3,-1.45,6110,108.990885,118.551961,128.220616,132.897498,I,Above,Gable,0,5701,,21.61292916,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 16225,NJBF000084216,IVY BUSH COURT,Hamilton,NJ,39.45877605,-74.64784672,RES1,3001,,NaN,NE,1969,0,3101,1,1,6371.283127,6371.283127,3507,NO,11.26,19.65,1,0.46,6112,109.811065,119.584935,129.160039,134.554299,I,Above,Hip,0,5701,,15.45350936,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16226,NJBF000084227,721 ADAMS AVE,Hamilton,NJ,39.45911753,-74.72861205,RES1,3001,,17,NE,1958,1958,3102,1,1,2093.745098,2093.745098,3504,NO,13.11,18.6,-4,0,6112,109.007013,118.573081,128.240561,132.934036,I,Above,Gable,0,5701,,15.85558112,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 16227,NJBF000084222,,Hamilton,NJ,39.45900408,-74.64825752,RES1,3001,,NaN,NE,1969,0,3101,1,1,6307.307462,6307.307462,3507,NO,14.4,21.92,1,0.86,6112,109.805962,119.577333,129.153072,134.542437,I,Above,Gable,0,5701,,18.15792031,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16228,NJBF000084234,5913 TENTH STREET,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1935,3102,1,1,2385.510278,2385.510278,3504,NO,19.48,31.64,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,25.56151181,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16229,NJBF000084238,6502 LAKE DRIVE,Hamilton,NJ,39.45939123,-74.73168611,RES1,3001,,17,NE,1970,1970,3102,2,1,1536.383121,1536.383121,3505,NO,20.92,27.93,3,-1.56,6112,108.980876,118.536358,128.205396,132.86993,I,Above,Hip,0,5701,,24.42644214,0,0,,,,1,1,,0.03,nav,1,1970,2,, 16230,NJBF000084242,6506 LAKE DRIVE,Hamilton,NJ,39.45946828,-74.73190394,RES1,3001,,17,NE,1956,1956,3102,1,1,2327.34795,2327.34795,3505,NO,17.04,26.23,3,0.34,6110,108.978893,118.533308,128.202427,132.864545,I,Above,Gable,0,5701,,21.63417667,0,0,,,,1,1,,0.03,nav,1,1956,1,, 16231,NJBF000084224,,Hamilton,NJ,39.45904838,-74.64888395,RES1,3001,,NaN,NE,1969,0,3101,1,1,8180.993053,8180.993053,3507,NO,14.6,21.15,1,-0.13,6112,109.798368,119.568354,129.145142,134.529051,I,Above,Hip,0,5701,,17.87712387,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16232,NJBF000084244,6530 LAKE DRIVE,Hamilton,NJ,39.45950258,-74.73385798,RES1,3001,,17,NE,1971,1971,3102,2,1,1446.23884,1446.23884,3505,NO,32.04,39.18,3,5.33,6112,108.962736,118.511202,128.181314,132.825909,I,Above,Gable,0,5701,,35.61037301,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 16233,NJBF000084241,5917 TENTH STREET,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1985,3102,1,1,2205.213795,2205.213795,3504,NO,13.39,22.9,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,18.14323694,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16234,NJBF000084249,,Hamilton,NJ,39.45955421,-74.73425745,RES1,3001,,NaN,NE,1969,0,3102,2,1,3758.086575,3758.086575,3505,NO,28.9,34.26,3,1.23,6112,108.959341,118.506355,128.176644,132.817385,I,Above,Gable,0,5701,,31.57726871,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16235,NJBF000084250,6518 LAKE DRIVE,Hamilton,NJ,39.45955508,-74.73278265,RES1,3001,,17,NE,1956,1956,3102,2,1,2866.289407,2866.289407,3505,NO,22.02,33.05,3,-2.78,6106,108.97144,118.522789,128.192328,132.846114,I,Above,Gable,0,5701,,27.53434992,0,0,,,,1,1,,0.03,nav,1,1956,2,, 16236,NJBF000084251,6524 LAKE DRIVE,Hamilton,NJ,39.45958525,-74.73328017,RES1,3001,,17,NE,1963,1963,3102,2,1,1770.956589,1770.956589,3505,NO,35.08,46.25,3,5.38,6110,108.967281,118.517002,128.186784,132.83598,I,Above,Hip,0,5701,,40.66650873,0,0,,,,1,1,,0.03,nav,1,1963,2,, 16237,NJBF000084247,741 ADAMS AVENUE,Hamilton,NJ,39.45953879,-74.7283633,RES1,3001,,17,NE,1955,1955,3102,1,1,2049.146229,2049.146229,3504,NO,13.22,19.55,-4,0,6112,109.008112,118.572562,128.239703,132.932724,I,Above,Hip,0,5701,,16.3865243,0,0,,,,1,1,,0.35,nav,1,1955,1,, 16238,NJBF000084258,650 PARK ROAD,Hamilton,NJ,39.45965437,-74.73110927,RES1,3001,,17,NE,1980,1980,3102,2,1,1630.4023,1630.4023,3505,NO,34.63,46.22,3,5.58,6110,108.985018,118.540748,128.209361,132.877344,I,Above,Hip,0,5701,,40.42409466,0,0,,,,1,1,,0.35,nav,1,1980,2,, 16239,NJBF000084231,4900 BLACK HORSE PIKE,Hamilton,NJ,39.4592947,-74.64935848,RES1,3001,20,NaN,NE,1986,1986,3101,1,1,7702.151463,7702.151463,3507,NO,16.97,31.35,1,2.54,6112,109.792521,119.559743,129.13726,134.515623,I,Above,Gable,0,5701,,24.15661418,0,0,,,,1,1,,0.35,nav,1,1986,1,, 16240,NJBF000084260,,Hamilton,NJ,39.45970196,-74.73503304,RES1,3001,,NaN,NE,1946,0,3102,2,1,1048.818597,1048.818597,3505,NO,35.19,50.16,3,3.63,6106,108.952628,118.496553,128.167165,132.800101,I,Above,Flat,0,5701,,42.67409,0,0,,,,1,1,,0.03,nav,1,1946,2,, 16241,NJBF000084255,1000 ROUTE 50,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1960,3102,1,1,3742.584419,3742.584419,3504,NO,13.57,24.86,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,19.21284338,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16242,NJBF000084245,JASMINE/JUNIPER/LARKSPUR,Hamilton,NJ,39.45951067,-74.64801563,RES1,3001,,NaN,NE,1969,0,3101,1,1,1546.041187,1546.041187,3507,NO,20.38,35.08,1,1.95,6112,109.808629,119.57633,129.151524,134.539531,I,Above,Hip,0,5701,,27.73263724,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16243,NJBF000084264,6540 LAKE DRIVE,Hamilton,NJ,39.45976751,-74.73485657,RES1,3001,,17,NE,1946,1946,3102,1,1,1756.419272,1756.419272,3505,NO,19.07,26.72,3,5.28,6112,108.953904,118.497989,128.168486,132.802564,I,Above,Gable,0,5701,,22.89197338,0,0,,,,1,1,,0.03,nav,1,1946,1,, 16244,NJBF000084268,759 ADAMS AVE,Hamilton,NJ,39.4598255,-74.72821371,RES1,3001,,17,NE,1957,1957,3102,1,1,1519.907963,1519.907963,3504,NO,17.09,25.3,-4,0,6112,109.008694,118.571974,128.238896,132.931423,I,Above,Gable,0,5701,,21.19616548,0,0,,,,1,1,,0.35,nav,1,1957,1,, 16245,NJBF000084269,,Hamilton,NJ,39.4598324,-74.73510608,RES1,3001,,NaN,NE,1969,0,3102,2,1,2556.103681,2556.103681,3505,NO,29.27,41.93,3,0.76,6112,108.95171,118.494716,128.165309,132.796779,I,Above,Gable,0,5701,,35.60291826,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16246,NJBF000084273,1010 ROUTE 50,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1920,3102,1,1,854.9458584,854.9458584,3504,NO,13.68,24.03,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,18.85351058,0,1.2,,,,1,1,,0.35,nav,1,1970,1,, 16247,NJBF000084246,,Hamilton,NJ,39.4595343,-74.64660295,RES1,3001,,NaN,NE,1969,0,3101,1,1,7634.316543,7634.316543,3507,NO,14.48,24.34,1,0.28,6112,109.825831,119.595599,129.168387,134.567863,I,Above,Hip,0,5701,,19.41245872,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16248,NJBF000084281,650 PARK ROAD,Hamilton,NJ,39.45996965,-74.731054,RES1,3001,,17,NE,1980,1980,3102,2,1,2296.344827,2296.344827,3505,NO,40.52,49.88,3,5.84,6110,108.984723,118.538867,128.20731,132.873785,I,Above,Gable,0,5701,,45.20161495,0,0,,,,1,1,,0.35,nav,1,1980,2,, 16249,NJBF000084282,657 PARK ROAD,Hamilton,NJ,39.45998121,-74.73173281,RES1,3001,,17,NE,1935,1935,3102,1,1,2142.213426,2142.213426,3505,NO,18.81,27.89,3,6.05,6112,108.979078,118.531169,128.199972,132.860365,I,Above,Hip,0,5701,,23.34984799,0,0,,,,1,1,,0.35,nav,1,1935,1,, 16250,NJBF000084283,6550 LAKE DRIVE,Hamilton,NJ,39.45999669,-74.73543368,RES1,3001,,17,NE,2007,2007,3102,1,1,2519.280347,2519.280347,3505,NO,24.97,33.19,3,7.52,6112,108.948623,118.48977,128.160456,132.787981,I,Above,Hip,0,5701,,29.07740128,0,0,,,,1,1,,0.03,nav,1,2007,1,, 16251,NJBF000084261,4900 BLACK HORSE PIKE,Hamilton,NJ,39.45970884,-74.65019241,RES1,3001,20,NaN,NE,1986,1986,3101,1,1,7546.099362,7546.099362,3507,NO,19.62,30.42,1,2.25,6112,109.782273,119.544789,129.123587,134.492321,I,Above,Flat,0,5701,,25.01742046,0,0,,,,1,1,,0.35,nav,1,1986,1,, 16252,NJBF000084266,4900 BLACK HORSE PIKE,Hamilton,NJ,39.45977718,-74.64972839,RES1,3001,20,NaN,NE,1986,1986,3101,1,1,7707.97218,7707.97218,3507,NO,16.89,24.59,1,0.68,6112,109.787807,119.550561,129.128566,134.500687,I,Above,Hip,0,5701,,20.74075779,0,0,,,,1,1,,0.35,nav,1,1986,1,, 16253,NJBF000084288,6507 LAKE DRIVE,Hamilton,NJ,39.46008232,-74.7323754,RES1,3001,,17,NE,1962,1962,3102,2,1,1569.337005,1569.337005,3505,NO,33.09,45.16,3,6.97,6112,108.973534,118.523186,128.192285,132.846356,I,Above,Gable,0,5701,,39.12819531,0,0,,,,1,1,,0.35,nav,1,1962,2,, 16254,NJBF000084290,6552 LAKE DRIVE,Hamilton,NJ,39.4601078,-74.73559786,RES1,3001,,16,NE,1960,1960,3102,1,1,1488.89195,1488.89195,3505,NO,10.59,19.07,3,-2.28,6112,108.947009,118.487074,128.157794,132.783166,I,Above,Hip,0,5701,,14.83146686,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16255,NJBF000084292,6545 LAKE DRIVE,Hamilton,NJ,39.46013145,-74.73474564,RES1,3001,,17,NE,1980,1980,3102,1,1,1489.852994,1489.852994,3505,NO,10.47,22.51,3,-2.59,6112,108.953922,118.496358,128.166649,132.799419,I,Above,Gable,0,5701,,16.49004109,0,0,,,,1,1,,0.35,nav,1,1980,1,, 16256,NJBF000084291,6521 LAKE DRIVE,Hamilton,NJ,39.46012236,-74.733249,RES1,3001,,17,NE,1975,1975,3102,2,1,1851.409858,1851.409858,3505,NO,27.69,32.87,3,3.65,6112,108.966235,118.513106,128.182643,132.828724,I,Above,Gable,0,5701,,30.281956,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 16257,NJBF000084270,4900 BLACK HORSE PIKE,Hamilton,NJ,39.45985378,-74.65073429,RES1,3001,20,NaN,NE,1986,1986,3101,1,1,8244.967559,8244.967559,3507,NO,19.49,33.69,1,0.66,6112,109.775703,119.536143,129.115802,134.479093,I,Above,Hip,0,5701,,26.58752094,0,0,,,,1,1,,0.35,nav,1,1986,1,, 16258,NJBF000084294,901 ADAMS AVE,Hamilton,NJ,39.4601839,-74.72802677,RES1,3001,,17,NE,1964,1964,3102,1,1,889.8216651,889.8216651,3504,NO,11.76,21.37,-4,0,6112,109.009436,118.571253,128.237903,132.929823,I,Above,Gable,0,5701,,16.56691723,0,0,,,,1,1,,0.35,nav,1,1964,1,, 16259,NJBF000084298,660 PARK ROAD,Hamilton,NJ,39.46020143,-74.73132183,RES1,3001,,17,NE,1940,1940,3102,2,1,1803.92444,1803.92444,3505,NO,39.05,45.33,3,7.92,6112,108.981956,118.534035,128.202522,132.865165,I,Above,Gable,0,5701,,42.19000834,0,0,,,,1,1,,0.35,nav,1,1940,2,, 16260,NJBF000084276,4900 BLACK HORSE PIKE,Hamilton,NJ,39.4599356,-74.65179236,RES1,3001,20,NaN,NE,1986,1986,3101,1,1,7684.727126,7684.727126,3507,NO,10.02,17.3,1,-0.68,6112,109.763043,119.521007,129.102392,134.456374,I,Above,Hip,0,5701,,13.658668,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16261,NJBF000084305,6554 LAKE DRIVE,Hamilton,NJ,39.46026421,-74.73573336,RES1,3001,,17,NE,1965,1965,3102,2,1,1614.906856,1614.906856,3505,NO,35.95,46.63,3,-1.2,6112,108.945521,118.484344,128.155067,132.77826,I,Above,Gable,0,5701,,41.2900369,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 16262,NJBF000084272,,Hamilton,NJ,39.45991298,-74.64849028,RES1,3001,,NaN,NE,1969,0,3101,1,1,10334.80912,10334.80912,3507,NO,20.56,30.22,1,2.56,6112,109.802668,119.566379,129.142274,134.523711,I,Above,Gable,0,5701,,25.39250647,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16263,NJBF000084309,6551 LAKE DRIVE,Hamilton,NJ,39.46032654,-74.73497719,RES1,3001,,17,NE,1956,1956,3102,1,1,1856.268855,1856.268855,3505,NO,13.1,26.05,3,-0.27,6112,108.95155,118.492242,128.162567,132.792056,I,Above,Hip,0,5701,,19.5728442,0,1.2,,,,1,1,,0.35,nav,1,1956,1,, 16264,NJBF000084307,901 ADAMS AVE,Hamilton,NJ,39.46032207,-74.72801072,RES1,3001,,17,NE,1964,1964,3102,1,1,2193.585211,2193.585211,3504,NO,18.61,30.35,-4,0,6112,109.009254,118.570341,128.23692,132.928109,I,Above,Gable,0,5701,,24.47722138,0,0,,,,1,1,,0.35,nav,1,1964,1,, 16265,NJBF000084285,,Hamilton,NJ,39.46003353,-74.64725997,RES1,3001,,NaN,NE,1969,0,3101,1,1,9002.982912,9002.982912,3507,NO,12.68,25.35,1,1.85,6112,109.817546,119.582259,129.156053,134.546809,I,Above,Hip,0,5701,,19.0148322,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16266,NJBF000084302,JASMINE/JUNIPER/LARKSPUR,Hamilton,NJ,39.46024219,-74.64793818,RES1,3001,,NaN,NE,1969,0,3101,1,1,8957.888978,8957.888978,3507,NO,12.88,21.06,1,1.9,6112,109.809185,119.57115,129.146042,134.52984,I,Above,Hip,0,5701,,16.96831238,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16267,NJBF000084318,6556 LAKE DRIVE,Hamilton,NJ,39.46051794,-74.73594701,RES1,3001,,17,NE,1962,1962,3102,1,1,3695.06889,3695.06889,3505,NO,19.83,33.91,3,6.07,6112,108.943146,118.479965,128.15069,132.770386,I,Above,Hip,0,5701,,26.86827421,0,0,,,,1,1,,0.03,nav,1,1962,1,, 16268,NJBF000084324,917 ADAMS AVENUE,Hamilton,NJ,39.46058922,-74.72784513,RES1,3001,,17,NE,1956,1956,3102,1,1,1046.873916,1046.873916,3504,NO,13.43,24.89,-4,0,6112,109.010036,118.570102,128.236464,132.927435,I,Above,Flat,0,5701,,19.16048874,0,0,,,,1,1,,0.35,nav,1,1956,1,, 16269,NJBF000084310,4900 BLACK HORSE PIKE,Hamilton,NJ,39.46034302,-74.65253575,RES1,3001,20,NaN,NE,1986,1986,3101,1,1,7797.150343,7797.150343,3507,NO,12.82,27.01,1,0.75,6112,109.753979,119.507418,129.089905,134.435026,I,Above,Gable,0,5701,,19.91391461,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16270,NJBF000084331,6555 LAKE DRIVE,Hamilton,NJ,39.46066144,-74.73541773,RES1,3001,,17,NE,1952,1952,3102,1,1,1996.800416,1996.800416,3505,NO,21.9,35.33,3,4.1,6112,108.947121,118.484705,128.155114,132.778591,I,Above,Gable,0,5701,,28.61108158,0,0,,,,1,1,,0.35,nav,1,1952,1,, 16271,NJBF000084332,6558 LAKE DRIVE,Hamilton,NJ,39.46066874,-74.73612786,RES1,3001,,17,NE,1990,1990,3102,2,1,2738.33457,2738.33457,3505,NO,28.88,43.13,3,1.01,6112,108.941295,118.476766,128.147519,132.76466,I,Above,Gable,0,5701,,36.00230525,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 16272,NJBF000084346,948 ADAMS AVE,Hamilton,NJ,39.46085293,-74.72696299,RES1,3001,,17,NE,1969,1969,3102,2,1,1313.281605,1313.281605,3504,NO,37.82,46.44,-4,0,6112,109.01685,118.577988,128.243712,132.940819,I,Above,Gable,0,5701,,42.13321114,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16273,NJBF000084344,,Hamilton,NJ,39.46083843,-74.73628554,RES1,3001,,NaN,NE,1969,0,3102,2,1,2765.506414,2765.506414,3505,NO,34.7,40.09,3,-1.9,6112,108.939588,118.473681,128.144444,132.75912,I,Above,Gable,0,5701,,37.39797724,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16274,NJBF000084351,6304 ELEVENTH STREET,Hamilton,NJ,39.46100209,-74.72644725,RES1,3001,,17,NE,1970,1970,3102,2,1,1505.349802,1505.349802,3504,NO,22.04,36.36,-4,0,6112,109.020864,118.582654,128.248001,132.948732,I,Above,Gable,0,5701,,29.19871696,0,0,,,,1,1,,0.35,nav,1,1970,2,, 16275,NJBF000084359,964 ADAMS AVE,Hamilton,NJ,39.4611143,-74.72682637,RES1,3001,,17,NE,1970,1970,3102,1,1,1948.397247,1948.397247,3504,NO,12.21,23.12,-4,0,6112,109.017417,118.577471,128.242996,132.939665,I,Above,Flat,0,5701,,17.66454879,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 16276,NJBF000084369,947 ADAMS AVE,Hamilton,NJ,39.46125195,-74.7277508,RES1,3001,,17,NE,1958,1958,3102,1,1,2775.175696,2775.175696,3504,NO,19.15,33.37,-4,0,6112,109.00932,118.56591,128.231926,132.919536,I,Above,Hip,0,5701,,26.25887534,0,0,,,,1,1,,0.35,nav,1,1958,1,, 16277,NJBF000084371,692 PARK ROAD,Hamilton,NJ,39.46125931,-74.73120326,RES1,3001,,17,NE,1994,1994,3102,1,1,3771.652108,3771.652108,3505,NO,24.85,33.18,3,8.55,6112,108.980452,118.526999,128.194974,132.851986,I,Above,Hip,0,5701,,29.01151304,0,0,,,,1,1,,0.35,nav,1,1994,1,, 16278,NJBF000084380,753 PARK ROAD,Hamilton,NJ,39.46143992,-74.73698505,RES1,3001,,NaN,NE,1936,1936,3102,1,1,974.0131089,974.0131089,3505,NO,16.9,28.55,3,5.57,6112,108.932394,118.461189,128.13206,132.736749,I,Above,Hip,0,5701,,22.72393019,0,0,,,,1,1,,0.03,nav,1,1936,1,, 16279,NJBF000084381,753 PARK ROAD,Hamilton,NJ,39.46146765,-74.73636018,RES1,3001,,NaN,NE,1936,1936,3102,1,1,6820.213777,6820.213777,3505,NO,22.48,34.43,3,7.93,6112,108.937433,118.467885,128.138443,132.748487,I,Above,Hip,0,5701,,28.455461,0,0,,,,1,1,,0.35,nav,1,1936,1,, 16280,NJBF000084386,753 PARK ROAD,Hamilton,NJ,39.46156893,-74.73705313,RES1,3001,,NaN,NE,1936,1936,3102,1,1,1069.164616,1069.164616,3505,NO,21.76,31.54,3,8.78,6112,108.931521,118.459418,128.130274,132.733546,I,Above,Gable,0,5701,,26.64606292,0,0,,,,1,1,,1,nav,1,1936,1,, 16281,NJBF000084389,1100 ADAMS AVE,Hamilton,NJ,39.46162771,-74.72656925,RES1,3001,,17,NE,1978,1978,3102,1,1,3423.099174,3423.099174,3504,NO,13.74,20.77,-4,0,6112,109.018438,118.576305,128.241452,132.937142,I,Above,Hip,0,5701,,17.25399147,0,0,,,,1,1,,0.35,nav,1,1978,1,, 16282,NJBF000084396,1101 ADAMS AVE,Hamilton,NJ,39.46178524,-74.72716744,RES1,3001,,17,NE,1962,1962,3102,1,1,1976.462401,1976.462401,3504,NO,16.27,22.34,-4,0,6112,109.013039,118.568288,128.233728,132.923133,I,Above,Hip,0,5701,,19.30435731,0,0,,,,1,1,,0.35,nav,1,1962,1,, 16283,NJBF000084427,753 PARK ROAD,Hamilton,NJ,39.46234019,-74.73728101,RES1,3001,,NaN,NE,1936,1936,3102,1,1,2130.574155,2130.574155,3505,NO,21.41,34.91,3,7.99,6112,108.927761,118.450806,128.121492,132.717878,I,Above,Hip,0,5701,,28.160023,0,0,,,,1,1,,1,nav,1,1936,1,, 16284,NJBF000084428,LAKE LENAPE,Hamilton,NJ,39.46235849,-74.73786117,RES1,3001,,NaN,NE,1936,0,3102,2,1,922.8047989,922.8047989,3505,NO,30.2,38.49,3,3.9,6106,108.922979,118.444259,128.115217,132.706357,I,Above,Gable,0,5701,,34.34292819,0,0,,,,1,1,,0.03,nav,1,1936,2,, 16285,NJBF000084434,753 PARK ROAD,Hamilton,NJ,39.46246403,-74.73730178,RES1,3001,,NaN,NE,1936,1936,3102,1,1,726.9923412,726.9923412,3505,NO,15.41,21.83,3,2.62,6112,108.927286,118.449593,128.120246,132.715663,I,Above,Hip,0,5701,,18.6208668,0,0,,,,1,1,,0.35,nav,1,1936,1,, 16286,NJBF000084442,810 LEILING LANE,Hamilton,NJ,39.46262696,-74.73784476,RES1,3001,,17,NE,1984,1984,3102,1,1,4403.636097,4403.636097,3505,NO,12.55,27.27,3,1.61,6106,108.922447,118.44231,128.113166,132.702749,I,Above,Gable,0,5701,,19.90983499,0,1.1,,,,1,1,,0.03,nav,1,1984,1,, 16287,NJBF000084464,819 LEILING LANE,Hamilton,NJ,39.46316351,-74.73762993,RES1,3001,,17,NE,1936,1936,3102,1,1,2701.522104,2701.522104,3505,NO,24.67,32.03,3,8.62,6112,108.922889,118.440436,128.111006,132.6991,I,Above,Gable,0,5701,,28.35100962,0,0,,,,1,1,,0.35,nav,1,1936,1,, 16288,NJBF000084465,821 LEILING LANE,Hamilton,NJ,39.46317114,-74.73815957,RES1,3001,,18,NE,1946,1946,3102,2,1,3288.941932,3288.941932,3505,NO,36.31,51.11,3,3.85,6112,108.918537,118.434535,128.105357,132.688717,I,Above,Gable,0,5701,,43.70638268,0,0,,,,1,1,,0.03,nav,1,1946,2,, 16289,NJBF000084473,817 LEILING LANE,Hamilton,NJ,39.46347709,-74.73786897,RES1,3001,,17,NE,1966,1966,3102,2,1,2760.638037,2760.638037,3505,NO,28.14,42.94,3,4.5,6112,108.920169,118.435323,128.105905,132.689906,I,Above,Gable,0,5701,,35.53948787,0,0,,,,1,1,,0.35,nav,1,1966,2,, 16290,NJBF000084502,901 MORNINGSIDE DRIVE,Hamilton,NJ,39.46420083,-74.73797248,RES1,3001,,17,NE,1952,1952,3102,2,1,3737.721126,3737.721126,3505,NO,23.76,34.4,3,-1.79,6112,108.917563,118.428458,128.098857,132.677371,I,Above,Gable,0,5701,,29.08255808,0,0,,,,1,1,,0.35,nav,1,1952,2,, 16291,NJBF000084507,901 MORNINGSIDE DRIVE,Hamilton,NJ,39.46443913,-74.73796477,RES1,3001,,17,NE,1952,1952,3102,2,1,869.500245,869.500245,3505,NO,34.44,47.61,3,-2.02,6112,108.917043,118.426651,128.096972,132.674044,I,Above,Gable,0,5701,,41.02165896,0,0,,,,1,1,,0.35,nav,1,1952,2,, 16292,NJBF000084525,909 MORNINGSIDE DRIVE,Hamilton,NJ,39.46471393,-74.73787019,RES1,3001,,18,NE,2003,2003,3102,2,1,3775.535044,3775.535044,3505,NO,27.75,37.84,3,-1.05,6112,108.917159,118.425521,128.095711,132.671884,I,Above,Gable,0,5701,,32.79246664,0,1.2,,,,1,1,,0.35,nav,1,2003,2,, 16293,NJBF000084533,921 MORNINGSIDE DRIVE,Hamilton,NJ,39.46499622,-74.73810091,RES1,3001,,17,NE,1952,1952,3102,1,1,1771.937979,1771.937979,3505,NO,17.71,23.35,3,4.64,6112,108.914581,118.420742,128.090959,132.663306,I,Above,Flat,0,5701,,20.52664951,0,0,,,,1,1,,0.03,nav,1,1952,1,, 16294,NJBF000084534,11 LEWIS DRIVE,Hamilton,NJ,39.46504938,-74.71575414,RES1,3001,,16,NE,2005,2005,3101,2,1,2411.674943,2411.674943,3507,NO,40.83,51.62,1,2,6112,109.104953,118.673118,128.329451,133.098967,I,Above,Hip,0,5701,,46.22405695,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16295,NJBF000084538,13 LEWIS DRIVE,Hamilton,NJ,39.46518677,-74.71565442,RES1,3001,,16,NE,2005,2005,3101,2,1,2116.036149,2116.036149,3507,NO,35.33,43.2,1,2.93,6112,109.105577,118.673173,128.329376,133.098894,I,Above,Flat,0,5701,,39.26650322,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16296,NJBF000084544,15 LEWIS DRIVE,Hamilton,NJ,39.46533037,-74.71553949,RES1,3001,,16,NE,2005,2005,3101,2,1,2226.537117,2226.537117,3507,NO,31.26,44.75,1,0.02,6112,109.106326,118.673363,128.329422,133.099043,I,Above,Hip,0,5701,,38.00615609,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16297,NJBF000084549,933 MORNINGSIDE DRIVE,Hamilton,NJ,39.46540063,-74.73808328,RES1,3001,,17,NE,1967,1967,3102,1,1,2867.256804,2867.256804,3505,NO,17.7,31.61,3,2.32,6112,108.913754,118.417731,128.08782,132.657765,I,Above,Gable,0,5701,,24.65832214,0,0,,,,1,1,,0.35,nav,1,1967,1,, 16298,NJBF000084550,17 LEWIS DRIVE,Hamilton,NJ,39.46544274,-74.71539683,RES1,3001,,16,NE,2005,2005,3101,2,1,2076.292203,2076.292203,3507,NO,29.5,42.26,1,0.72,6112,109.107373,118.674107,128.330014,133.100166,I,Above,Hip,0,5701,,35.88407199,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16299,NJBF000084557,19 LEWIS DRIVE,Hamilton,NJ,39.4655454,-74.71525015,RES1,3001,,16,NE,2005,2005,3101,2,1,2334.12972,2334.12972,3507,NO,37.28,44.41,1,0.18,6112,109.108487,118.674998,128.330753,133.10155,I,Above,Hip,0,5701,,40.84411601,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16300,NJBF000084562,21 LEWIS DRIVE,Hamilton,NJ,39.46565866,-74.71513836,RES1,3001,,16,NE,2005,2005,3101,2,1,2023.950895,2023.950895,3507,NO,39.85,53.09,1,2.79,6112,109.109268,118.675386,128.331011,133.102068,I,Above,Hip,0,5701,,46.47095552,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16301,NJBF000084568,941 MORNINGSIDE DRIVE,Hamilton,NJ,39.46574918,-74.73813118,RES1,3001,,17,NE,1960,1960,3102,1,1,3275.364499,3275.364499,3505,NO,14.32,20.67,3,1.21,6112,108.912524,118.414445,128.084457,132.651777,I,Above,Gable,0,5701,,17.49723133,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 16302,NJBF000084570,23 LEWIS DRIVE,Hamilton,NJ,39.46577558,-74.71501779,RES1,3001,,16,NE,2005,2005,3101,2,1,1969.673394,1969.673394,3507,NO,33.32,44.74,1,-0.73,6112,109.110117,118.675842,128.331331,133.102699,I,Above,Hip,0,5701,,39.02793626,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16303,NJBF000084575,25 LEWIS DRIVE,Hamilton,NJ,39.46587358,-74.71486279,RES1,3001,,16,NE,2005,2005,3101,2,1,2055.927192,2055.927192,3507,NO,35.29,41.7,1,-0.7,6112,109.111314,118.676859,128.332191,133.104299,I,Above,Hip,0,5701,,38.4965383,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16304,NJBF000084579,949 MORNINGSIDE DRIVE,Hamilton,NJ,39.46596428,-74.73833138,RES1,3001,,17,NE,1958,1958,3102,1,1,2102.464311,2102.464311,3505,NO,16.36,23.68,3,-0.29,6112,108.910363,118.410538,128.080587,132.644779,I,Above,Hip,0,5701,,20.02064633,0,0,,,,1,1,,0.03,nav,1,1958,1,, 16305,NJBF000084581,27 LEWIS DRIVE,Hamilton,NJ,39.46598456,-74.71471556,RES1,3001,,16,NE,2005,2005,3101,2,1,2707.306789,2707.306789,3507,NO,30.69,36.82,1,1.38,6112,109.112417,118.677679,128.332855,133.10555,I,Above,Hip,0,5701,,33.75815905,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16306,NJBF000084586,29 LEWIS DRIVE,Hamilton,NJ,39.4660935,-74.71458284,RES1,3001,,16,NE,2005,2005,3101,2,1,2179.044437,2179.044437,3507,NO,31.95,38.7,1,0.23,6112,109.113402,118.67836,128.333392,133.10657,I,Above,Hip,0,5701,,35.32463119,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16307,NJBF000084593,31 LEWIS DRIVE,Hamilton,NJ,39.46619818,-74.71445336,RES1,3001,,16,NE,2005,2005,3101,2,1,2599.722691,2599.722691,3507,NO,25.52,35.25,1,2.48,6112,109.114368,118.67903,128.333922,133.107575,I,Above,Hip,0,5701,,30.38417195,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16308,NJBF000084596,957 MORNINGSIDE DRIVE,Hamilton,NJ,39.46630547,-74.73819217,RES1,3001,,18,NE,1993,1993,3102,1,1,2925.412366,2925.412366,3505,NO,16.2,29.86,3,-2.58,6112,108.910691,118.409364,128.079251,132.642515,I,Above,Gable,0,5701,,23.02789459,0,0,,,,1,1,,0.35,nav,1,1993,1,, 16309,NJBF000084598,33 LEWIS DRIVE,Hamilton,NJ,39.46631462,-74.71433737,RES1,3001,,16,NE,2006,2006,3101,2,1,2748.017648,2748.017648,3507,NO,24.73,30.43,1,2.42,6112,109.115187,118.679441,128.3342,133.108127,I,Above,Hip,0,5701,,27.58085019,0,1.2,,,,1,1,,0.35,nav,1,2006,2,, 16310,NJBF000084600,35 LEWIS DRIVE,Hamilton,NJ,39.46641337,-74.71415211,RES1,3001,,16,NE,2006,2006,3101,2,1,2292.459885,2292.459885,3507,NO,29.3,39.36,1,0.18,6112,109.116661,118.680809,128.335387,133.110319,I,Above,Hip,0,5701,,34.33296491,0,1.2,,,,1,1,,0.35,nav,1,2006,2,, 16311,NJBF000084611,37 LEWIS DRIVE,Hamilton,NJ,39.46654192,-74.71406551,RES1,3001,,16,NE,2006,2006,3101,2,1,2570.641108,2570.641108,3507,NO,23.39,28.54,1,1.35,6112,109.117192,118.680774,128.335238,133.110103,I,Above,Hip,0,5701,,25.96564979,0,1.2,,,,1,1,,0.35,nav,1,2006,2,, 16312,NJBF000084617,965 MORNINGSIDE DRIVE,Hamilton,NJ,39.46660643,-74.73820274,RES1,3001,,17,NE,1967,1967,3102,2,1,3057.261034,3057.261034,3505,NO,41.81,47.16,3,3.91,6112,108.909883,118.406856,128.076667,132.637929,I,Above,Hip,0,5701,,44.48885609,0,0.2,,,,1,1,,0.35,nav,1,1967,2,, 16313,NJBF000084618,39 LEWIS DRIVE,Hamilton,NJ,39.46663648,-74.713925,RES1,3001,,16,NE,2006,2006,3101,2,1,2107.325447,2107.325447,3507,NO,29.51,40.19,1,-0.47,6112,109.118282,118.681662,128.335981,133.111487,I,Above,Hip,0,5701,,34.8456679,0,1.2,,,,1,1,,0.35,nav,1,2006,2,, 16314,NJBF000084621,41 LEWIS DRIVE,Hamilton,NJ,39.46677366,-74.71380667,RES1,3001,,16,NE,2005,2005,3101,2,1,2585.190426,2585.190426,3507,NO,37.46,48.09,1,1.46,6112,109.119087,118.681928,128.336104,133.111768,I,Above,Hip,0,5701,,42.7720452,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16315,NJBF000084622,1521 PINEHURST DRIVE,Hamilton,NJ,39.46680365,-74.71487616,RES1,3001,,17,NE,2007,2007,3101,1,1,1412.297647,1412.297647,3507,NO,14,26.22,1,2.91,6109,109.10946,118.669237,128.324239,133.090292,I,Above,Gable,0,5701,,20.10943054,0,0,,,,1,1,,0.03,nav,1,2007,1,, 16316,NJBF000084626,43 LEWIS DRIVE,Hamilton,NJ,39.46688582,-74.71366913,RES1,3001,,16,NE,2005,2005,3101,2,1,2176.129217,2176.129217,3507,NO,28.26,35.01,1,2.05,6112,109.12012,118.682637,128.336664,133.112827,I,Above,Flat,0,5701,,31.63643253,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16317,NJBF000084631,5905 SWEET GUM LANE,Hamilton,NJ,39.46695213,-74.71510437,RES1,3001,,17,NE,1984,1984,3101,1,1,1264.962843,1264.962843,3507,NO,16.2,21.81,1,2.89,6109,109.107148,118.665396,128.320522,133.083621,I,Above,Flat,0,5701,,19.00287686,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16318,NJBF000084632,1523 PINEHURST DRIVE,Hamilton,NJ,39.46700509,-74.71460519,RES1,3001,,16,NE,1984,1984,3101,1,1,1478.222248,1478.222248,3507,NO,21.41,36.15,1,2.46,6109,109.111511,118.670774,128.325494,133.092651,I,Above,Gable,0,5701,,28.78186691,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16319,NJBF000084633,45 LEWIS DRIVE,Hamilton,NJ,39.46701272,-74.7135641,RES1,3001,,16,NE,2006,2006,3101,2,1,2399.073036,2399.073036,3507,NO,39.09,45.29,1,2.3,6112,109.12083,118.68284,128.336739,133.113014,I,Above,Hip,0,5701,,42.19072463,0,1.2,,,,1,1,,0.35,nav,1,2006,2,, 16320,NJBF000084637,5907 SWEET GUM LANE,Hamilton,NJ,39.46706225,-74.71541847,RES1,3001,,17,NE,1984,1984,3101,1,1,999.3810609,999.3810609,3507,NO,20.51,28.54,1,1.11,6109,109.10414,118.660863,128.316193,133.075822,I,Above,Flat,0,5701,,24.52353578,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16321,NJBF000084641,47 LEWIS DRIVE,Hamilton,NJ,39.4671265,-74.71344106,RES1,3001,,16,NE,2005,2005,3101,2,1,2040.418639,2040.418639,3507,NO,27.08,41.86,1,2.46,6112,109.121729,118.683366,128.337128,133.113763,I,Above,Hip,0,5701,,34.47010536,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16322,NJBF000084648,5904 BUTTERCUP LANE,Hamilton,NJ,39.46721783,-74.71482684,RES1,3001,,17,NE,1984,1984,3101,1,1,2273.056876,2273.056876,3507,NO,21.44,30.04,1,2.21,6109,109.109129,118.666478,128.321297,133.085137,I,Above,Gable,0,5701,,25.73590938,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16323,NJBF000084649,49 LEWIS DRIVE,Hamilton,NJ,39.46724893,-74.71331008,RES1,3001,,16,NE,2005,2005,3101,2,1,2128.631666,2128.631666,3507,NO,37.48,47.53,1,1.55,6112,109.122684,118.683904,128.337519,133.114522,I,Above,Hip,0,5701,,42.50252223,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16324,NJBF000084651,5906 BUTTERCUP LANE,Hamilton,NJ,39.46733592,-74.71506944,RES1,3001,,17,NE,1984,1984,3101,1,1,1377.400967,1377.400967,3507,NO,12.61,25.73,1,0.09,6109,109.106746,118.662715,128.317682,133.078635,I,Above,Gable,0,5701,,19.17119832,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16325,NJBF000084653,5908 BUTTERCUP LANE,Hamilton,NJ,39.46737189,-74.71527924,RES1,3001,,17,NE,1987,1987,3101,1,1,1381.266856,1381.266856,3507,NO,17.9,27.84,1,1.18,6109,109.104802,118.659985,128.315102,133.073974,I,Above,Gable,0,5701,,22.87141321,0,0,,,,1,1,,0.03,nav,1,1987,1,, 16326,NJBF000084655,1525 PINEHURST DRIVE,Hamilton,NJ,39.46737643,-74.71417628,RES1,3001,,17,NE,1960,1960,3101,1,1,2703.450424,2703.450424,3507,NO,18.31,32.71,1,-0.85,6109,109.11467,118.672784,128.327041,133.095604,I,Above,Gable,0,5701,,25.50874963,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16327,NJBF000084657,985 MORNINGSIDE DRIVE,Hamilton,NJ,39.46742892,-74.73842841,RES1,3001,,17,NE,2014,2014,3102,2,1,2745.140955,2745.140955,3505,NO,30.7,36.53,3,0.51,6112,108.906072,118.397849,128.067558,132.621623,I,Above,Gable,0,5701,,33.6126654,0,0,,,,1,1,,0.35,nav,1,2014,2,, 16328,NJBF000084660,1527 PINEHURST DRIVE,Hamilton,NJ,39.46751721,-74.71397831,RES1,3001,,17,NE,1974,1974,3101,1,1,1189.366181,1189.366181,3507,NO,21.75,34.58,1,2.39,6109,109.116189,118.673955,128.328009,133.097414,I,Above,Gable,0,5701,,28.16884382,0,0,,,,1,1,,0.03,nav,1,1974,1,, 16329,NJBF000084661,53 LEWIS DRIVE,Hamilton,NJ,39.46751768,-74.71286453,RES1,3001,,16,NE,2005,2005,3101,2,1,2329.28579,2329.28579,3507,NO,36.98,49.79,1,1.31,6112,109.126205,118.686935,128.340102,133.1193,I,Above,Hip,0,5701,,43.38502185,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16330,NJBF000084667,,Hamilton,NJ,39.46758335,-74.71453387,RES1,3001,,NaN,NE,1983,0,3101,1,1,1698.262184,1698.262184,3507,NO,13.08,21.98,1,-0.4,6109,109.111078,118.66695,128.321417,133.085503,I,Above,Gable,0,5701,,17.52967163,0,0,,,,1,1,,0.03,nav,1,1983,1,, 16331,NJBF000084668,55 LEWIS DRIVE,Hamilton,NJ,39.4675838,-74.71267438,RES1,3001,,16,NE,2006,2006,3101,2,1,2400.047538,2400.047538,3507,NO,32.24,45.06,1,0.38,6112,109.12781,118.688635,128.341626,133.122083,I,Above,Gable,0,5701,,38.64873075,0,1.2,,,,1,1,,0.35,nav,1,2006,2,, 16332,NJBF000084674,997 MORNINGSIDE DRIVE,Hamilton,NJ,39.46766144,-74.7387163,RES1,3001,,17,NE,1968,1968,3102,2,1,3220.101954,3220.101954,3505,NO,27.4,34.63,3,1.09,6112,108.903145,118.39284,128.062634,132.612686,I,Above,Gable,0,5701,,31.01746854,0,0,,,,1,1,,0.35,nav,1,1968,2,, 16333,NJBF000084677,5902 COLONY DRIVE,Hamilton,NJ,39.46770455,-74.71384623,RES1,3001,,17,NE,1960,1960,3101,1,1,1196.14206,1196.14206,3507,NO,18.69,30.77,1,0.32,6109,109.117031,118.67398,128.327866,133.09723,I,Above,Gable,0,5701,,24.73076948,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16334,NJBF000084679,5909 BUTTERCUP LANE,Hamilton,NJ,39.46772944,-74.71484256,RES1,3001,,17,NE,1960,1960,3101,1,1,1336.698501,1336.698501,3507,NO,12.36,20.99,1,-0.96,6109,109.10804,118.66218,128.31684,133.07727,I,Above,Gable,0,5701,,16.6751256,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16335,NJBF000084683,1524 OLD EGG HARBOR ROAD,Hamilton,NJ,39.46780668,-74.71521913,RES1,3001,,17,NE,1960,1960,3101,1,1,1643.971345,1643.971345,3507,NO,14.74,22.59,1,1.86,6109,109.10453,118.657182,128.312109,133.068728,I,Above,Gable,0,5701,,18.66571738,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16336,NJBF000084692,5904 COLONY DRIVE,Hamilton,NJ,39.46790673,-74.71408923,RES1,3001,,17,NE,1960,1960,3101,1,1,1301.793542,1301.793542,3507,NO,19.58,27.36,1,2.36,6109,109.114478,118.669522,128.323533,133.089464,I,Above,Flat,0,5701,,23.47131486,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16337,NJBF000084696,1005 MORNINGSIDE DRIVE,Hamilton,NJ,39.4680057,-74.73875296,RES1,3001,,17,NE,1974,1974,3102,2,1,2825.590809,2825.590809,3505,NO,34.81,46.15,3,-0.13,6112,108.902023,118.389694,128.059423,132.606965,I,Above,Gable,0,5701,,40.4822698,0,1.2,,,,1,1,,0.35,nav,1,1974,2,, 16338,NJBF000084698,1526 OLD EGG HARBOR ROAD,Hamilton,NJ,39.46804392,-74.71514839,RES1,3001,,17,NE,1980,1980,3101,2,1,1206.805349,1206.805349,3507,NO,30.55,43.23,1,2.11,6109,109.104726,118.656099,128.310894,133.066622,I,Above,Gable,0,5701,,36.88856463,0,0,,,,1,1,,0.03,nav,1,1980,2,, 16339,NJBF000084700,1531 PINEHURST DRIVE,Hamilton,NJ,39.46804846,-74.71346659,RES1,3001,,16,NE,1950,1950,3101,1,1,1351.232672,1351.232672,3507,NO,13.38,21.87,1,-0.34,6109,109.119819,118.675636,128.329108,133.099613,I,Above,Gable,0,5701,,17.62539061,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16340,NJBF000084699,5906 COLONY DRIVE,Hamilton,NJ,39.46804431,-74.71422965,RES1,3001,,16,NE,1960,1960,3101,1,1,1742.849987,1742.849987,3507,NO,11.48,24.45,1,-0.21,6109,109.11296,118.666776,128.320853,133.084667,I,Above,Hip,0,5701,,17.96630563,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 16341,NJBF000084706,5908 COLONY DRIVE,Hamilton,NJ,39.46814317,-74.71455246,RES1,3001,,17,NE,1960,1960,3101,1,1,569.9671587,569.9671587,3507,NO,19.89,31.8,1,2.62,6109,109.109887,118.662231,128.316529,133.076873,I,Above,Flat,0,5701,,25.84634198,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 16342,NJBF000084711,1533 PINEHURST DRIVE,Hamilton,NJ,39.4682337,-74.71320631,RES1,3001,,16,NE,1950,1950,3101,1,1,1544.142669,1544.142669,3507,NO,16.46,26.22,1,1.68,6109,109.121836,118.677181,128.330385,133.101997,I,Above,Hip,0,5701,,21.33822806,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16343,NJBF000084710,5905 COLONY DRIVE,Hamilton,NJ,39.46821898,-74.71367399,RES1,3001,,16,NE,1950,1950,3101,1,1,1947.366766,1947.366766,3507,NO,17.61,31.75,1,2.19,6109,109.117643,118.671843,128.325425,133.093013,I,Above,Hip,0,5701,,24.67773599,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16344,NJBF000084715,1528 OLD EGG HARBOR ROAD,Hamilton,NJ,39.46826201,-74.71509809,RES1,3001,,17,NE,1975,1975,3101,1,1,2179.053467,2179.053467,3507,NO,11.7,20.73,1,-0.57,6109,109.104771,118.654925,128.309611,133.064385,I,Above,Flat,0,5701,,16.21449996,0,0,,,,1,1,,0.03,nav,1,1975,1,, 16345,NJBF000084717,5908 COLONY DRIVE,Hamilton,NJ,39.46829125,-74.71432963,RES1,3001,,17,NE,1960,1960,3101,1,1,2627.846227,2627.846227,3507,NO,15.88,23.22,1,2.15,6109,109.11161,118.663622,128.317699,133.07905,I,Above,Flat,0,5701,,19.54708343,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 16346,NJBF000084722,1535 PINEHURST DRIVE,Hamilton,NJ,39.4683694,-74.71308112,RES1,3001,,16,NE,1950,1950,3101,1,1,1731.212354,1731.212354,3507,NO,11.42,24.74,1,-0.62,6109,109.122721,118.677552,128.330612,133.102459,I,Above,Gable,0,5701,,18.08139534,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16347,NJBF000084724,5907 COLONY DRIVE,Hamilton,NJ,39.46837916,-74.7137594,RES1,3001,,16,NE,1950,1950,3101,1,1,1694.378775,1694.378775,3507,NO,19.58,26.93,1,1.02,6109,109.116587,118.669563,128.323161,133.088976,I,Above,Hip,0,5701,,23.2552654,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16348,NJBF000084727,5907 COLONY DRIVE,Hamilton,NJ,39.46845574,-74.71351064,RES1,3001,,16,NE,1950,1950,3101,1,1,776.4304856,776.4304856,3507,NO,21.46,31.64,1,2.1,6109,109.118683,118.671833,128.32521,133.092715,I,Above,Hip,0,5701,,26.5490369,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16349,NJBF000084728,1530 OLD EGG HARBOR ROAD,Hamilton,NJ,39.46846878,-74.7150521,RES1,3001,,17,NE,1981,1981,3101,1,1,1476.280868,1476.280868,3507,NO,11.04,17.82,1,-0.55,6109,109.104801,118.653792,128.308377,133.062231,I,Above,Gable,0,5701,,14.42869288,0,0,,,,1,1,,0.03,nav,1,1981,1,, 16350,NJBF000084733,1537 PINEHURST DRIVE,Hamilton,NJ,39.46855689,-74.71284988,RES1,3001,,16,NE,1954,1954,3101,1,1,1118.612994,1118.612994,3507,NO,16.23,21.47,1,2.04,6109,109.124471,118.678732,128.331548,133.104223,I,Above,Hip,0,5701,,18.84555337,0,0,,,,1,1,,0.03,nav,1,1954,1,, 16351,NJBF000084736,5928 MULBERRY DRIVE,Hamilton,NJ,39.46860557,-74.71380409,RES1,3001,,16,NE,1950,1950,3101,1,1,1362.866779,1362.866779,3507,NO,13.23,19.29,1,-0.21,6109,109.11577,118.667208,128.320771,133.084736,I,Above,Gable,0,5701,,16.2623505,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16352,NJBF000084740,5932 MULBERRY DRIVE,Hamilton,NJ,39.46862034,-74.71466055,RES1,3001,,17,NE,2005,2005,3101,1,1,1600.346155,1600.346155,3507,NO,15.84,25.63,1,2.36,6109,109.108033,118.65712,128.311353,133.067684,I,Above,Gable,0,5701,,20.73762027,0,0,,,,1,1,,0.03,nav,1,2005,1,, 16353,NJBF000084735,5930 MULBERRY DRIVE,Hamilton,NJ,39.46858025,-74.71436521,RES1,3001,,17,NE,1960,1960,3101,1,1,2538.657287,2538.657287,3507,NO,15.19,29.73,1,1.15,6109,109.110767,118.660885,128.314899,133.074092,I,Above,Gable,0,5701,,22.45888294,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 16354,NJBF000084741,5934 MULBERRY DRIVE,Hamilton,NJ,39.46866201,-74.71496113,RES1,3001,,17,NE,1960,1960,3101,1,1,1399.698439,1399.698439,3507,NO,17.4,23.85,1,2.26,6109,109.105262,118.653294,128.307749,133.061169,I,Above,Gable,0,5701,,20.62224029,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16355,NJBF000084746,1539 PINEHURST DRIVE,Hamilton,NJ,39.46869606,-74.71269752,RES1,3001,,16,NE,1950,1950,3101,1,1,1770.95542,1770.95542,3507,NO,15.37,27.12,1,0.3,6109,109.125598,118.679386,128.332036,133.105157,I,Above,Gable,0,5701,,21.24745643,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16356,NJBF000084747,5926 MULBERRY DRIVE,Hamilton,NJ,39.46870256,-74.71344522,RES1,3001,,16,NE,1951,1951,3101,1,1,2702.474337,2702.474337,3507,NO,18.42,27.01,1,0.37,6109,109.118832,118.67061,128.323858,133.090361,I,Above,Gable,0,5701,,22.71422411,0,0,,,,1,1,,0.03,nav,1,1951,1,, 16357,NJBF000084759,5924 MULBERRY DRIVE,Hamilton,NJ,39.46883161,-74.71320496,RES1,3001,,16,NE,1950,1950,3102,1,1,2255.60209,2255.60209,3505,NO,15.36,25.44,3,-1.21,6109,109.120768,118.672369,128.325385,133.093174,I,Above,Gable,0,5701,,20.39859815,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16358,NJBF000084761,1541 PINEHURST DRIVE,Hamilton,NJ,39.46886628,-74.71248948,RES1,3001,,16,NE,1950,1950,3102,1,1,1295.022687,1295.022687,3505,NO,11.93,18.12,3,-0.38,6112,109.127187,118.680455,128.332884,133.106754,I,Above,Gable,0,5701,,15.02576618,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16359,NJBF000084768,5922 MULBERRY DRIVE,Hamilton,NJ,39.46895483,-74.71301348,RES1,3001,,16,NE,1950,1950,3102,1,1,1099.21123,1099.21123,3505,NO,15.74,27.99,3,-1.69,6109,109.122283,118.673617,128.326441,133.095131,I,Above,Gable,0,5701,,21.86792692,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16360,NJBF000084773,1543 PINEHURST DRIVE,Hamilton,NJ,39.46899926,-74.71235448,RES1,3001,,16,NE,1950,1950,3102,1,1,1383.227623,1383.227623,3505,NO,21.67,34.94,3,6.86,6112,109.128175,118.680959,128.333238,133.107443,I,Above,Gable,0,5701,,28.30527898,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16361,NJBF000084775,5931 MULBERRY DRIVE,Hamilton,NJ,39.4690196,-74.71425007,RES1,3001,,16,NE,1950,1950,3102,1,1,1773.858809,1773.858809,3505,NO,23.42,33.51,3,4.84,6109,109.111,118.658676,128.312465,133.069852,I,Above,Flat,0,5701,,28.46417658,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16362,NJBF000084777,5929 MULBERRY DRIVE,Hamilton,NJ,39.46904679,-74.71396762,RES1,3001,,16,NE,1950,1950,3102,1,1,1278.537823,1278.537823,3505,NO,14.61,24.21,3,1.87,6109,109.113492,118.66174,128.315299,133.074995,I,Above,Gable,0,5701,,19.4096586,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16363,NJBF000084779,5933 MULBERRY DRIVE,Hamilton,NJ,39.46905054,-74.71446771,RES1,3001,,16,NE,1950,1950,3102,1,1,1598.414062,1598.414062,3505,NO,16.46,26.07,3,5.42,6109,109.108981,118.655889,128.309841,133.06511,I,Above,Hip,0,5701,,21.26601033,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16364,NJBF000084780,5927 MULBERRY DRIVE,Hamilton,NJ,39.46908721,-74.71376639,RES1,3001,,16,NE,1950,1950,3102,1,1,1458.826212,1458.826212,3505,NO,24.2,33.1,3,7.08,6109,109.115242,118.663771,128.317157,133.078374,I,Above,Gable,0,5701,,28.64974192,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16365,NJBF000084782,5935 MULBERRY DRIVE,Hamilton,NJ,39.46910153,-74.71483848,RES1,3001,,17,NE,1962,1962,3102,1,1,1346.379349,1346.379349,3505,NO,10.76,22.48,3,-2.68,6109,109.10556,118.651177,128.305403,133.057088,I,Above,Gable,0,5701,,16.62055065,0,0,,,,1,1,,0.03,nav,1,1962,1,, 16366,NJBF000084785,5920 MULBERRY DRIVE,Hamilton,NJ,39.46916287,-74.71279735,RES1,3001,,16,NE,1950,1950,3102,1,1,1175.784751,1175.784751,3505,NO,22.33,35.69,3,4.86,6112,109.123867,118.674459,128.327047,133.096303,I,Above,Gable,0,5701,,29.01251947,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16367,NJBF000084786,1545 PINEHURST DRIVE,Hamilton,NJ,39.46917228,-74.71214042,RES1,3001,,16,NE,1950,1950,3102,1,1,1023.605031,1023.605031,3505,NO,21.19,30.68,3,6.51,6112,109.129811,118.682064,128.334117,133.109094,I,Above,Gable,0,5701,,25.93469645,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16368,NJBF000084787,5925 MULBERRY DRIVE,Hamilton,NJ,39.46918377,-74.71355081,RES1,3001,,16,NE,1950,1950,3102,1,1,1259.152506,1259.152506,3505,NO,26.87,38.16,3,8.91,6109,109.117008,118.665493,128.318679,133.081167,I,Above,Gable,0,5701,,32.51934898,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16369,NJBF000084797,5918 MULBERRY DRIVE,Hamilton,NJ,39.46929559,-74.71265641,RES1,3001,,16,NE,1950,1950,3102,1,1,1299.866452,1299.866452,3505,NO,22.6,28.66,3,7.6,6112,109.124908,118.675031,128.327466,133.09711,I,Above,Hip,0,5701,,25.62800031,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16370,NJBF000084799,1536 OLD EGG HARBOR ROAD,Hamilton,NJ,39.46931808,-74.71483811,RES1,3001,,17,NE,1985,1985,3102,1,1,973.203155,973.203155,3505,NO,23.86,34.19,3,5.36,6109,109.105165,118.649435,128.303597,133.053899,I,Above,Gable,0,5701,,29.02313178,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16371,NJBF000084800,1547 PINEHURST DRIVE,Hamilton,NJ,39.46932921,-74.71197165,RES1,3001,,16,NE,1950,1950,3102,1,1,1251.401952,1251.401952,3505,NO,17.23,30.61,3,2.8,6112,109.13106,118.68276,128.334629,133.110077,I,Above,Gable,0,5701,,23.92032934,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16372,NJBF000084802,5923 MULBERRY DRIVE,Hamilton,NJ,39.46934304,-74.7133416,RES1,3001,,16,NE,1950,1950,3102,1,1,1753.511291,1753.511291,3505,NO,13.15,25.93,3,-2.81,6109,109.118612,118.666646,128.319618,133.082926,I,Above,Flat,0,5701,,19.5423399,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16373,NJBF000084806,1549 PINEHURST DRIVE,Hamilton,NJ,39.46944574,-74.71181563,RES1,3001,,16,NE,1950,1950,3102,1,1,1383.213924,1383.213924,3505,NO,25.35,36.78,3,6.71,6112,109.132273,118.68364,128.335347,133.111415,I,Above,Gable,0,5701,,31.0672022,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16374,NJBF000084809,5916 MULBERRY DRIVE,Hamilton,NJ,39.46947488,-74.71245778,RES1,3001,,16,NE,1950,1950,3102,1,1,1327.009689,1327.009689,3505,NO,11.98,22.85,3,-2.34,6112,109.126387,118.675898,128.32812,133.098357,I,Above,Gable,0,5701,,17.4106446,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16375,NJBF000084807,5921 MULBERRY DRIVE,Hamilton,NJ,39.46947158,-74.71318893,RES1,3001,,16,NE,1950,1950,3102,1,1,1509.244167,1509.244167,3505,NO,20.72,25.93,3,2.43,6109,109.119765,118.667388,128.320201,133.084027,I,Above,Gable,0,5701,,23.32582402,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16376,NJBF000084815,5904 MAPLE DRIVE,Hamilton,NJ,39.4695372,-74.71437379,RES1,3001,,17,NE,1985,1985,3102,1,1,1261.086409,1261.086409,3505,NO,21.82,28.86,3,7.5,6109,109.108944,118.653061,128.306797,133.059779,I,Above,Gable,0,5701,,25.33780872,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16377,NJBF000084816,1538 OLD EGG HARBOR ROAD,Hamilton,NJ,39.46953796,-74.71473091,RES1,3001,,17,NE,1985,1985,3102,1,1,1475.302295,1475.302295,3505,NO,13.5,22.48,3,-1.48,6109,109.105726,118.648903,128.302919,133.052752,I,Above,Gable,0,5701,,17.98800846,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16378,NJBF000084819,5906 MAPLE DRIVE,Hamilton,NJ,39.4695782,-74.71414173,RES1,3001,,17,NE,1986,1986,3102,1,1,1033.299767,1033.299767,3505,NO,17.93,24.08,3,3.67,6109,109.110961,118.655429,128.30897,133.063732,I,Above,Gable,0,5701,,21.0066428,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16379,NJBF000084820,5914 MULBERRY DRIVE,Hamilton,NJ,39.46959441,-74.71231567,RES1,3001,,16,NE,1950,1950,3102,1,1,1744.770553,1744.770553,3505,NO,15.44,23.83,3,0.46,6112,109.127465,118.676595,128.328668,133.09939,I,Above,Gable,0,5701,,19.63244382,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16380,NJBF000084822,1551 PINEHURST DRIVE,Hamilton,NJ,39.46961793,-74.71162511,RES1,3001,,16,NE,1950,1950,3102,1,1,1720.545498,1720.545498,3505,NO,20.81,35.06,3,4.73,6112,109.13371,118.684484,128.335985,133.112628,I,Above,Gable,0,5701,,27.93449207,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16381,NJBF000084827,5908 MAPLE DRIVE,Hamilton,NJ,39.46965464,-74.71387805,RES1,3001,,17,NE,1985,1985,3102,1,1,1151.552432,1151.552432,3505,NO,19.9,27.67,3,7.35,6109,109.113206,118.657881,128.311191,133.067781,I,Above,Hip,0,5701,,23.78144495,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16382,NJBF000084826,5919 MULBERRY DRIVE,Hamilton,NJ,39.46964617,-74.71301035,RES1,3001,,16,NE,1950,1950,3102,1,1,1200.989227,1200.989227,3505,NO,11.94,18.86,3,0.38,6109,109.121076,118.668071,128.320689,133.084974,I,Above,Gable,0,5701,,15.4028975,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16383,NJBF000084836,5910 MAPLE DRIVE,Hamilton,NJ,39.46974395,-74.71367088,RES1,3001,,17,NE,1985,1985,3102,1,1,1654.634454,1654.634454,3505,NO,18.71,27,3,7.02,6109,109.114916,118.659573,128.312693,133.070534,I,Above,Gable,0,5701,,22.85426373,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16384,NJBF000084838,1553 PINEHURST DRIVE,Hamilton,NJ,39.46976476,-74.7114696,RES1,3001,,16,NE,1950,1950,3102,1,1,1295.014826,1295.014826,3505,NO,17.04,30,3,1.04,6112,109.134865,118.68511,128.336441,133.113503,I,Above,Gable,0,5701,,23.52083917,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16385,NJBF000084841,5912 MULBERRY DRIVE,Hamilton,NJ,39.46978767,-74.71218301,RES1,3001,,16,NE,1950,1950,3102,1,1,1265.940308,1265.940308,3505,NO,16.61,26.51,3,0.08,6112,109.128332,118.676582,128.32849,133.099136,I,Above,Gable,0,5701,,21.56249824,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16386,NJBF000084839,5917 MULBERRY DRIVE,Hamilton,NJ,39.46978264,-74.71287927,RES1,3001,,16,NE,1955,1955,3102,1,1,1428.779773,1428.779773,3505,NO,25.83,38.57,3,7.28,6109,109.122019,118.668492,128.320967,133.085524,I,Above,Flat,0,5701,,32.19850103,0,0,,,,1,1,,0.03,nav,1,1955,1,, 16387,NJBF000084843,1053 MORNINGSIDE DRIVE,Hamilton,NJ,39.4697941,-74.7388566,RES1,3001,,18,NE,1985,1985,3102,3,1,3973.271702,3973.271702,3505,NO,55.35,69.66,3,-0.63,6112,108.896963,118.37434,128.043725,132.57903,I,Above,Hip,0,5701,,62.50558697,0,0,,,,1,1,,0.35,nav,1,1985,3,, 16388,NJBF000084846,5912 MAPLE DRIVE,Hamilton,NJ,39.46990137,-74.71351412,RES1,3001,,17,NE,1985,1985,3102,1,1,1262.065631,1262.065631,3505,NO,19.55,32.12,3,5.24,6109,109.116055,118.660133,128.313084,133.0713,I,Above,Gable,0,5701,,25.83472611,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16389,NJBF000084851,5905 MAPLE DRIVE,Hamilton,NJ,39.46993464,-74.71426652,RES1,3001,,17,NE,1984,1984,3102,1,1,1074.00693,1074.00693,3505,NO,20.23,35.03,3,1.37,6109,109.109188,118.651092,128.304632,133.056004,I,Above,Gable,0,5701,,27.62935197,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16390,NJBF000084850,1555 PINEHURST DRIVE,Hamilton,NJ,39.46993265,-74.71124013,RES1,3001,,16,NE,1950,1950,3102,1,1,1225.218365,1225.218365,3505,NO,11.22,18.01,3,0.64,6112,109.136671,118.686445,128.337538,133.115543,I,Above,Gable,0,5701,,14.61431891,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16391,NJBF000084849,5910 MULBERRY DRIVE,Hamilton,NJ,39.46991517,-74.71202279,RES1,3001,,16,NE,1950,1950,3102,1,1,1832.016715,1832.016715,3505,NO,14.93,27.58,3,-0.64,6112,109.129564,118.677425,128.329167,133.100405,I,Above,Hip,0,5701,,21.25607241,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16392,NJBF000084854,5915 MULBERRY DRIVE,Hamilton,NJ,39.46995602,-74.71271086,RES1,3001,,16,NE,1950,1950,3102,1,1,1317.312582,1317.312582,3505,NO,18.71,30.28,3,4.93,6109,109.123237,118.669055,128.321345,133.08627,I,Above,Gable,0,5701,,24.4992754,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16393,NJBF000084856,1540 OLD EGG HARBOR ROAD,Hamilton,NJ,39.46998282,-74.71463454,RES1,3001,,17,NE,1984,1984,3102,1,1,1895.022592,1895.022592,3505,NO,24.33,35.18,3,6.78,6109,109.105781,118.646426,128.300242,133.048069,I,Above,Gable,0,5701,,29.75284717,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16394,NJBF000084858,5914 MAPLE DRIVE,Hamilton,NJ,39.47004723,-74.71336415,RES1,3001,,17,NE,1985,1985,3102,1,1,1230.068376,1230.068376,3505,NO,18.82,25.37,3,5.92,6109,109.117152,118.660702,128.313492,133.07209,I,Above,Hip,0,5701,,22.09335762,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16395,NJBF000084859,5907 MAPLE DRIVE,Hamilton,NJ,39.47006252,-74.7140049,RES1,3001,,17,NE,1984,1984,3102,1,1,1326.034399,1326.034399,3505,NO,15.58,23.16,3,0.54,6109,109.111323,118.653107,128.306403,133.05926,I,Above,Gable,0,5701,,19.37009672,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16396,NJBF000084860,1557 PINEHURST DRIVE,Hamilton,NJ,39.47006628,-74.711098,RES1,3001,,16,NE,1950,1950,3102,1,1,1346.39514,1346.39514,3505,NO,25.99,40.52,3,8.49,6112,109.137737,118.687032,128.337971,133.116368,I,Above,Gable,0,5701,,33.25549246,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16397,NJBF000084863,5913 MULBERRY DRIVE,Hamilton,NJ,39.47009337,-74.71259356,RES1,3001,,16,NE,1950,1950,3102,1,1,1091.459026,1091.459026,3505,NO,10.48,18,3,-1.51,6109,109.124057,118.669313,128.32147,133.086545,I,Above,Gable,0,5701,,14.23796446,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16398,NJBF000084864,5908 MULBERRY DRIVE,Hamilton,NJ,39.47009555,-74.71187569,RES1,3001,,17,NE,2008,2008,3102,1,1,1722.496476,1722.496476,3505,NO,12.69,19.71,3,1.03,6112,109.130585,118.67768,128.329252,133.100619,I,Above,Gable,0,5701,,16.19553253,0,0,,,,1,1,,0.35,nav,1,2008,1,, 16399,NJBF000084867,5916 MAPLE DRIVE,Hamilton,NJ,39.47018491,-74.7132145,RES1,3001,,17,NE,1985,1985,3102,1,1,1146.707638,1146.707638,3505,NO,22.37,37.07,3,6.4,6109,109.118256,118.661323,128.313956,133.072979,I,Above,Gable,0,5701,,29.71929725,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16400,NJBF000084868,1542 OLD EGG HARBOR ROAD,Hamilton,NJ,39.47019115,-74.71458975,RES1,3001,,17,NE,1984,1984,3102,1,1,1600.362526,1600.362526,3505,NO,17.04,24.17,3,-1.34,6109,109.10581,118.645269,128.298993,133.045882,I,Above,Gable,0,5701,,20.60300971,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16401,NJBF000084870,5909 MAPLE DRIVE,Hamilton,NJ,39.47022669,-74.7138091,RES1,3001,,17,NE,1984,1984,3102,1,1,786.1258293,786.1258293,3505,NO,14.78,29.05,3,-0.38,6109,109.112801,118.654063,128.307159,133.060688,I,Above,Gable,0,5701,,21.91245218,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16402,NJBF000084871,5906 MULBERRY DRIVE,Hamilton,NJ,39.47023598,-74.71170185,RES1,3001,,16,NE,1957,1957,3102,1,1,1445.262412,1445.262412,3505,NO,14.58,28.42,3,0.92,6112,109.131926,118.678582,128.329973,133.101971,I,Above,Hip,0,5701,,21.50086119,0,0,,,,1,1,,0.35,nav,1,1957,1,, 16403,NJBF000084873,1559 PINEHURST DRIVE,Hamilton,NJ,39.47026717,-74.71088676,RES1,3001,,16,NE,1950,1950,3102,1,1,1200.023482,1200.023482,3505,NO,18.18,28.93,3,-0.75,6112,109.139318,118.687877,128.338586,133.117546,I,Above,Gable,0,5701,,23.55375416,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16404,NJBF000084872,5911 MULBERRY DRIVE,Hamilton,NJ,39.47026108,-74.71244929,RES1,3001,,16,NE,1950,1950,3102,1,1,1911.501099,1911.501099,3505,NO,23.8,38.38,3,5.65,6109,109.125078,118.669647,128.321641,133.086912,I,Above,Hip,0,5701,,31.09055781,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 16405,NJBF000084876,5904 MULBERRY DRIVE,Hamilton,NJ,39.47032821,-74.71141053,RES1,3001,,16,NE,1950,1950,3102,1,1,572.8702253,572.8702253,3505,NO,20.01,33.43,3,8.76,6112,109.134422,118.681244,128.33237,133.106334,I,Above,Gable,0,5701,,26.72183406,0,1.2,,,,1,1,,0.35,nav,1,1950,1,, 16406,NJBF000084877,5918 MAPLE DRIVE,Hamilton,NJ,39.47034098,-74.71307796,RES1,3001,,17,NE,1985,1985,3102,1,1,1261.073194,1261.073194,3505,NO,19.65,29.37,3,0.68,6109,109.119222,118.661659,128.31414,133.073367,I,Above,Flat,0,5701,,24.5070616,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16407,NJBF000084878,5904 MULBERRY DRIVE,Hamilton,NJ,39.470378,-74.71158549,RES1,3001,,16,NE,1950,1950,3102,1,1,1072.066057,1072.066057,3505,NO,9.8,22.72,3,-2.3,6112,109.132746,118.678802,128.330058,133.102172,I,Above,Gable,0,5701,,16.26328148,0,1.2,,,,1,1,,0.35,nav,1,1950,1,, 16408,NJBF000084882,1544 OLD EGG HARBOR ROAD,Hamilton,NJ,39.47041545,-74.71450847,RES1,3001,,17,NE,1984,1984,3102,2,1,823.9265618,823.9265618,3505,NO,30.67,37.39,3,8.39,6109,109.106145,118.644413,128.298012,133.044186,I,Above,Gable,0,5701,,34.02784279,0,0,,,,1,1,,0.03,nav,1,1984,2,, 16409,NJBF000084881,5911 MAPLE DRIVE,Hamilton,NJ,39.47040658,-74.7136222,RES1,3001,,17,NE,1984,1984,3102,1,1,1058.500504,1058.500504,3505,NO,20.04,30.19,3,3.49,6109,109.114172,118.654785,128.307685,133.061703,I,Above,Gable,0,5701,,25.11718521,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16410,NJBF000084880,5909 MULBERRY DRIVE,Hamilton,NJ,39.47040454,-74.71228806,RES1,3001,,16,NE,1950,1950,3102,1,1,1767.073802,1767.073802,3505,NO,15.51,24.85,3,0.12,6109,109.12629,118.670363,128.322187,133.087949,I,Above,Hip,0,5701,,20.18146153,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16411,NJBF000084883,1546 BROOK COURT,Hamilton,NJ,39.47042447,-74.71417487,RES1,3001,,17,NE,1984,1984,3102,1,1,1562.546872,1562.546872,3505,NO,15.02,25.86,3,3.22,6109,109.109137,118.648212,128.301546,133.050591,I,Above,Hip,0,5701,,20.44167465,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16412,NJBF000084884,5904 BERRY DRIVE,Hamilton,NJ,39.47042651,-74.71109338,RES1,3001,,16,NE,1950,1950,3102,1,1,1330.891283,1330.891283,3505,NO,11.78,21.48,3,0.74,6112,109.137156,118.684167,128.335003,133.111125,I,Above,Gable,0,5701,,16.63133629,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16413,NJBF000084888,5903 BERRY DRIVE,Hamilton,NJ,39.47055588,-74.71050894,RES1,3001,,17,NE,1982,1982,3102,1,1,932.4877345,932.4877345,3505,NO,16.84,24.96,3,0.64,6112,109.142282,118.689969,128.340285,133.120707,I,Above,Gable,0,5701,,20.90352406,0,0,,,,1,1,,0.35,nav,1,1982,1,, 16414,NJBF000084889,5920 MAPLE DRIVE,Hamilton,NJ,39.47056196,-74.71297773,RES1,3001,,17,NE,1985,1985,3102,1,1,1504.380151,1504.380151,3505,NO,14.57,26.65,3,-0.02,6109,109.119737,118.661037,128.313379,133.072066,I,Above,Gable,0,5701,,20.60750541,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16415,NJBF000084892,5906 BERRY DRIVE,Hamilton,NJ,39.47057943,-74.71135237,RES1,3001,,16,NE,1950,1950,3102,1,1,1389.038498,1389.038498,3505,NO,18.01,23.56,3,1.68,6112,109.134524,118.679901,128.330912,133.103781,I,Above,Gable,0,5701,,20.78662645,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16416,NJBF000084891,5907 MULBERRY DRIVE,Hamilton,NJ,39.47057682,-74.71210664,RES1,3001,,16,NE,1950,1950,3102,1,1,1349.291281,1349.291281,3505,NO,21.71,30.18,3,2.7,6112,109.127636,118.671085,128.322717,133.088964,I,Above,Gable,0,5701,,25.94706241,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16417,NJBF000084894,5913 MAPLE DRIVE,Hamilton,NJ,39.47060938,-74.713444,RES1,3001,,17,NE,1984,1984,3102,1,1,1144.765829,1144.765829,3505,NO,19.76,34.74,3,7.9,6109,109.115424,118.655225,128.307929,133.062217,I,Above,Gable,0,5701,,27.24988094,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16418,NJBF000084893,1548 BROOK COURT,Hamilton,NJ,39.4706053,-74.71396992,RES1,3001,,17,NE,1989,1989,3102,1,1,1752.541487,1752.541487,3505,NO,23.65,31.56,3,5.72,6109,109.110666,118.649133,128.302258,133.051945,I,Above,Gable,0,5701,,27.60443549,0,0,,,,1,1,,0.03,nav,1,1989,1,, 16419,NJBF000084899,1069 MORNINGSIDE DRIVE,Hamilton,NJ,39.47072891,-74.7392054,RES1,3001,,18,NE,1999,1999,3102,2,1,3145.461579,3145.461579,3505,NO,32.65,47.58,3,5.69,6112,108.891898,118.363081,128.032459,132.558771,I,Above,Hip,0,5701,,40.11474863,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 16420,NJBF000084900,5905 MULBERRY DRIVE,Hamilton,NJ,39.47073362,-74.71196944,RES1,3001,,16,NE,1950,1950,3102,1,1,1755.445722,1755.445722,3505,NO,16.85,27.55,3,0.79,6112,109.12862,118.671427,128.322905,133.089356,I,Above,Hip,0,5701,,22.19628262,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 16421,NJBF000084904,1563 PINEHURST DRIVE,Hamilton,NJ,39.47078294,-74.71029121,RES1,3001,,17,NE,1984,1984,3102,1,1,1620.713769,1620.713769,3505,NO,13.83,25.75,3,1.77,6112,109.143894,118.690686,128.34076,133.121637,I,Above,Flat,0,5701,,19.78861167,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16422,NJBF000084903,5905 BERRY DRIVE,Hamilton,NJ,39.47076729,-74.71075742,RES1,3001,,17,NE,1970,1970,3102,1,1,1962.885575,1962.885575,3505,NO,18.71,29.03,3,8.05,6112,109.139646,118.685349,128.335817,133.112704,I,Above,Hip,0,5701,,23.86801476,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16423,NJBF000084907,5922 MAPLE DRIVE,Hamilton,NJ,39.47081016,-74.71283177,RES1,3001,,17,NE,1984,1984,3102,1,1,2138.325055,2138.325055,3505,NO,20.65,29.47,3,2.96,6109,109.120626,118.660733,128.312893,133.071271,I,Above,Gable,0,5701,,25.05806338,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16424,NJBF000084910,1550 BROOK COURT,Hamilton,NJ,39.4708599,-74.71406516,RES1,3001,,17,NE,1984,1984,3102,1,1,1411.342096,1411.342096,3505,NO,15.55,26.09,3,2.41,6109,109.109349,118.645966,128.2991,133.046315,I,Above,Gable,0,5701,,20.81626879,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16425,NJBF000084913,5906 SOMERSET DRIVE,Hamilton,NJ,39.47093088,-74.71247221,RES1,3001,,16,NE,1950,1950,3102,1,1,1485.970783,1485.970783,3505,NO,21.18,30.52,3,5.36,6109,109.123689,118.663955,128.315792,133.076557,I,Above,Gable,0,5701,,25.84965981,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16426,NJBF000084911,5907 BERRY DRIVE,Hamilton,NJ,39.47090725,-74.71091839,RES1,3001,,17,NE,1979,1979,3102,1,1,1483.074929,1483.074929,3505,NO,16.22,31.12,3,-2.97,6112,109.137929,118.682327,128.332893,133.107466,I,Above,Gable,0,5701,,23.66935772,0,0,,,,1,1,,0.35,nav,1,1979,1,, 16427,NJBF000084914,5908 BERRY DRIVE,Hamilton,NJ,39.47093492,-74.71174774,RES1,3001,,16,NE,1950,1950,3102,1,1,1298.881088,1298.881088,3505,NO,11.53,21.37,3,-1.73,6112,109.130287,118.672383,128.323628,133.090729,I,Above,Gable,0,5701,,16.45258169,0,1.2,,,,1,1,,0.35,nav,1,1950,1,, 16428,NJBF000084915,5915 MAPLE DRIVE,Hamilton,NJ,39.47093901,-74.71349508,RES1,3001,,17,NE,1984,1984,3102,1,1,949.9375888,949.9375888,3505,NO,16.3,27.69,3,3.72,6109,109.114374,118.651961,128.304621,133.056342,I,Above,Gable,0,5701,,21.99826143,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16429,NJBF000084916,1552 OLD EGG HARBOR ROAD,Hamilton,NJ,39.47094831,-74.71433601,RES1,3001,,17,NE,1984,1984,3102,1,1,1472.407777,1472.407777,3505,NO,19.08,30.16,3,5.18,6109,109.106738,118.642103,128.295429,133.039696,I,Above,Gable,0,5701,,24.61791432,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16430,NJBF000084912,5902 VINE DRIVE,Hamilton,NJ,39.47092379,-74.71015495,RES1,3001,,17,NE,1976,1976,3102,1,1,1953.181923,1953.181923,3505,NO,12.67,19.05,3,-0.09,6109,109.144902,118.691139,128.341062,133.122226,I,Above,Hip,0,5701,,15.85952157,0,0,,,,1,1,,0.03,nav,1,1976,1,, 16431,NJBF000084919,5904 SOMERSET DRIVE,Hamilton,NJ,39.47103063,-74.71228439,RES1,3001,,16,NE,1950,1950,3102,1,1,1362.870242,1362.870242,3505,NO,19.75,32.66,3,8.07,6109,109.125227,118.665341,128.317,133.078774,I,Above,Hip,0,5701,,26.20470834,0,0,,,,1,1,,0.03,nav,1,1950,1,, 16432,NJBF000084920,5909 BERRY DRIVE,Hamilton,NJ,39.47103576,-74.71114274,RES1,3001,,17,NE,1976,1976,3102,1,1,1216.494781,1216.494781,3505,NO,18,31.58,3,-0.03,6112,109.135645,118.678645,128.329365,133.101132,I,Above,Gable,0,5701,,24.78778145,0,0,,,,1,1,,0.35,nav,1,1976,1,, 16433,NJBF000084921,5904 VINE DRIVE,Hamilton,NJ,39.47107611,-74.71040156,RES1,3001,,17,NE,1976,1976,3102,1,1,1360.932705,1360.932705,3505,NO,25.15,32.44,3,6.48,6112,109.142373,118.687007,128.337099,133.115116,I,Above,Gable,0,5701,,28.7948929,0,0,,,,1,1,,0.35,nav,1,1976,1,, 16434,NJBF000084923,5917 MAPLE DRIVE,Hamilton,NJ,39.47111991,-74.71369937,RES1,3001,,17,NE,1984,1984,3102,1,1,1025.549785,1025.549785,3505,NO,16.36,29.24,3,3.88,6109,109.112201,118.648121,128.300899,133.049663,I,Above,Gable,0,5701,,22.80232042,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16435,NJBF000084925,5910 SOMERSET DRIVE,Hamilton,NJ,39.47114162,-74.71192444,RES1,3001,,16,NE,1950,1950,3102,1,1,1317.310282,1317.310282,3505,NO,22.03,32.21,3,5.3,6112,109.128318,118.668648,128.319985,133.084209,I,Above,Flat,0,5701,,27.12034812,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16436,NJBF000084926,5924 MAPLE DRIVE,Hamilton,NJ,39.47117478,-74.71307823,RES1,3001,,17,NE,1984,1984,3102,1,1,1167.064033,1167.064033,3505,NO,20.72,27.48,3,3.48,6109,109.117743,118.654909,128.307176,133.061047,I,Above,Flat,0,5701,,24.09998849,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16437,NJBF000084927,5919 MAPLE DRIVE,Hamilton,NJ,39.47118246,-74.7139531,RES1,3001,,17,NE,1984,1984,3102,1,1,1301.807987,1301.807987,3505,NO,17.43,29.04,3,3.74,6109,109.109787,118.644664,128.297628,133.043761,I,Above,Gable,0,5701,,23.23248821,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16438,NJBF000084928,5903 VINE DRIVE,Hamilton,NJ,39.47119587,-74.70976246,RES1,3001,,17,NE,1984,1984,3102,1,1,881.108456,881.108456,3505,NO,24.02,30.17,3,7.61,6109,109.148055,118.693548,128.343071,133.125934,I,Above,Gable,0,5701,,27.09563427,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16439,NJBF000084931,1554 OLD EGG HARBOR ROAD,Hamilton,NJ,39.47121963,-74.71432795,RES1,3001,,17,NE,1984,1984,3102,1,1,1292.111224,1292.111224,3505,NO,12.77,26.16,3,-2.3,6109,109.106322,118.639996,128.293248,133.03584,I,Above,Gable,0,5701,,19.46596483,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16440,NJBF000084930,5906 VINE DRIVE,Hamilton,NJ,39.47121828,-74.71058312,RES1,3001,,17,NE,1986,1986,3102,1,1,953.8100927,953.8100927,3505,NO,22.73,30.72,3,5.38,6112,109.140467,118.683732,128.33394,133.109454,I,Above,Hip,0,5701,,26.72710409,0,0,,,,1,1,,0.35,nav,1,1986,1,, 16441,NJBF000084929,5911 BERRY DRIVE,Hamilton,NJ,39.47120505,-74.71133744,RES1,3001,,17,NE,1984,1984,3102,1,1,1975.473557,1975.473557,3505,NO,11.52,26.11,3,-1.64,6112,109.133576,118.675003,128.325842,133.094818,I,Above,Gable,0,5701,,18.8144223,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16442,NJBF000084932,5907 SOMERSET DRIVE,Hamilton,NJ,39.47129321,-74.71270084,RES1,3001,,17,NE,1988,1988,3102,1,1,1046.866823,1046.866823,3505,NO,19.54,24.99,3,0.16,6109,109.120967,118.65835,128.310283,133.066709,I,Above,Gable,0,5701,,22.26395981,0,0,,,,1,1,,0.03,nav,1,1988,1,, 16443,NJBF000084933,5905 VINE DRIVE,Hamilton,NJ,39.47129961,-74.70997638,RES1,3001,,17,NE,1984,1984,3102,1,1,929.577563,929.577563,3505,NO,19.49,31.11,3,8.93,6112,109.145908,118.690189,128.339868,133.120183,I,Above,Gable,0,5701,,25.3023222,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16444,NJBF000084935,5908 VINE DRIVE,Hamilton,NJ,39.47134847,-74.7107954,RES1,3001,,17,NE,1984,1984,3102,1,1,1461.735062,1461.735062,3505,NO,22.22,34.15,3,3.07,6112,109.138298,118.680192,128.330545,133.103361,I,Above,Gable,0,5701,,28.18646602,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16445,NJBF000084938,5913 BERRY DRIVE,Hamilton,NJ,39.47141171,-74.71149048,RES1,3001,,17,NE,1976,1976,3102,1,1,1279.510495,1279.510495,3505,NO,17.59,29.68,3,6.78,6112,109.131818,118.671534,128.322448,133.088749,I,Above,Gable,0,5701,,23.63665897,0,0,,,,1,1,,0.35,nav,1,1976,1,, 16446,NJBF000084940,5905 SOMERSET DRIVE,Hamilton,NJ,39.47143603,-74.71241856,RES1,3001,,17,NE,1977,1977,3102,2,1,1538.310319,1538.310319,3505,NO,46.5,60.88,3,8.5,6112,109.123286,118.660483,128.312152,133.070137,I,Above,Gable,0,5701,,53.69198325,0,0,,,,1,1,,0.35,nav,1,1977,2,, 16447,NJBF000084942,5907 VINE DRIVE,Hamilton,NJ,39.47143975,-74.71015394,RES1,3001,,17,NE,1984,1984,3102,1,1,1080.786022,1080.786022,3505,NO,19.35,29.37,3,3.87,6112,109.144031,118.686963,128.336757,133.114609,I,Above,Gable,0,5701,,24.36180972,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16448,NJBF000084939,5926 MAPLE DRIVE,Hamilton,NJ,39.47143345,-74.71330064,RES1,3001,,17,NE,1987,1987,3102,1,1,1348.324646,1348.324646,3505,NO,26.81,38.53,3,7.37,6109,109.115259,118.650221,128.302604,133.052858,I,Above,Gable,0,5701,,32.67055697,0,0,,,,1,1,,0.03,nav,1,1987,1,, 16449,NJBF000084943,5902 REDWOOD DRIVE,Hamilton,NJ,39.47148389,-74.70943145,RES1,3001,,17,NE,1972,1972,3102,2,1,1021.669536,1021.669536,3505,NO,34.95,49.22,3,1.13,6109,109.15062,118.695099,128.344271,133.128184,I,Above,Hip,0,5701,,42.0821733,0,0,,,,1,1,,0.03,nav,1,1972,2,, 16450,NJBF000084944,5928 MAPLE DRIVE,Hamilton,NJ,39.47150271,-74.71357552,RES1,3001,,17,NE,1985,1985,3102,1,1,1113.751614,1113.751614,3505,NO,12.8,19.85,3,-2.24,6109,109.112636,118.646452,128.299039,133.046425,I,Above,Gable,0,5701,,16.32456358,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16451,NJBF000084945,5903 SOMERSET DRIVE,Hamilton,NJ,39.47152388,-74.71217233,RES1,3001,,17,NE,1974,1974,3102,2,1,1017.784658,1017.784658,3505,NO,30.53,45.01,3,5.04,6112,109.125387,118.662653,128.3141,133.07369,I,Above,Flat,0,5701,,37.77141972,0,0,,,,1,1,,0.35,nav,1,1974,2,, 16452,NJBF000084946,5910 VINE DRIVE,Hamilton,NJ,39.47153528,-74.7110267,RES1,3001,,17,NE,1984,1984,3102,1,1,1173.85146,1173.85146,3505,NO,24,37.15,3,5.35,6112,109.135848,118.675956,128.326457,133.096033,I,Above,Flat,0,5701,,30.57389141,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16453,NJBF000084947,1085 MORNINGSIDE DRIVE,Hamilton,NJ,39.47156728,-74.73935549,RES1,3001,,18,NE,1998,1998,3102,2,1,3916.063673,3916.063673,3505,NO,29.5,42.82,3,6.56,6112,108.88871,118.354763,128.024068,132.54375,I,Above,Gable,0,5701,,36.15857839,0,0,,,,1,1,,0.35,nav,1,1998,2,, 16454,NJBF000084948,5909 VINE DRIVE,Hamilton,NJ,39.47157208,-74.71036161,RES1,3001,,17,NE,1984,1984,3102,1,1,1139.915813,1139.915813,3505,NO,14.44,28.66,3,-1.38,6112,109.141893,118.683451,128.333388,133.108564,I,Above,Gable,0,5701,,21.5529683,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16455,NJBF000084951,1556 OLD EGG HARBOR ROAD,Hamilton,NJ,39.47160044,-74.71415968,RES1,3001,,17,NE,1985,1985,3102,1,1,1414.238974,1414.238974,3505,NO,21.24,26.7,3,8.92,6109,109.107164,118.638873,128.291902,133.03353,I,Above,Gable,0,5701,,23.97101919,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16456,NJBF000084950,5904 REDWOOD DRIVE,Hamilton,NJ,39.471596,-74.70964103,RES1,3001,,17,NE,1972,1972,3102,2,1,1883.17228,1883.17228,3505,NO,26.17,35.55,3,0.85,6109,109.148493,118.691721,128.341044,133.122394,I,Above,Gable,0,5701,,30.86029879,0,0,,,,1,1,,0.03,nav,1,1972,2,, 16457,NJBF000084954,5915 BERRY DRIVE,Hamilton,NJ,39.47162794,-74.71160185,RES1,3001,,17,NE,1979,1979,3102,1,1,1337.653287,1337.653287,3505,NO,11.05,17.1,3,0.15,6112,109.130418,118.668472,128.319427,133.083354,I,Above,Flat,0,5701,,14.07530174,0,0,,,,1,1,,0.35,nav,1,1979,1,, 16458,NJBF000084953,5930 MAPLE DRIVE,Hamilton,NJ,39.47161807,-74.71382278,RES1,3001,,17,NE,1986,1986,3102,1,1,1638.159582,1638.159582,3505,NO,20.5,29.94,3,3.63,6109,109.110189,118.642646,128.295403,133.039879,I,Above,Gable,0,5701,,25.21726747,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16459,NJBF000084959,5912 VINE DRIVE,Hamilton,NJ,39.47169436,-74.71117572,RES1,3001,,17,NE,1984,1984,3102,1,1,1112.778481,1112.778481,3505,NO,21.54,35.9,3,6.7,6112,109.134208,118.672921,128.323508,133.090753,I,Above,Flat,0,5701,,28.72069991,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16460,NJBF000084961,5911 VINE DRIVE,Hamilton,NJ,39.47171762,-74.7105623,RES1,3001,,17,NE,1984,1984,3102,1,1,1250.420493,1250.420493,3505,NO,16.89,30.06,3,0.26,6112,109.139805,118.67992,128.32999,133.10247,I,Above,Gable,0,5701,,23.47696702,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16461,NJBF000084963,5906 REDWOOD DRIVE,Hamilton,NJ,39.47175374,-74.7098143,RES1,3001,,17,NE,1977,1977,3102,1,1,1201.947407,1201.947407,3505,NO,8.2,20.35,3,-2.31,6109,109.14663,118.688405,128.337837,133.116651,I,Above,Gable,0,5701,,14.27458379,0,0,,,,1,1,,0.03,nav,1,1977,1,, 16462,NJBF000084966,5926 CEDARCROFT DRIVE,Hamilton,NJ,39.47177867,-74.71222654,RES1,3001,,17,NE,1984,1984,3102,2,1,1620.709191,1620.709191,3505,NO,29.61,35.15,3,4.46,6112,109.12444,118.659943,128.311375,133.068842,I,Above,Gable,0,5701,,32.3782095,0,0,,,,1,1,,0.35,nav,1,1984,2,, 16463,NJBF000084969,5924 CEDARCROFT DRIVE,Hamilton,NJ,39.47183084,-74.71162219,RES1,3001,,17,NE,1979,1979,3102,1,1,1316.341526,1316.341526,3505,NO,11.37,19.21,3,-1.96,6112,109.129884,118.666591,128.317515,133.079961,I,Above,Hip,0,5701,,15.28681789,0,0,,,,1,1,,0.35,nav,1,1979,1,, 16464,NJBF000084971,1558 OLD EGG HARBOR ROAD,Hamilton,NJ,39.47184405,-74.71415169,RES1,3001,,17,NE,1985,1985,3102,1,1,1455.926645,1455.926645,3505,NO,14.46,20.9,3,1.24,6109,109.106801,118.63699,128.289956,133.030088,I,Above,Gable,0,5701,,17.67784088,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16465,NJBF000084972,5932 CEDARCROFT DRIVE,Hamilton,NJ,39.47185531,-74.71300175,RES1,3001,,17,NE,1980,1980,3102,1,1,1505.359373,1505.359373,3505,NO,16.33,26.56,3,1.12,6109,109.117236,118.650286,128.302329,133.052498,I,Above,Hip,0,5701,,21.44852473,0,0,,,,1,1,,0.03,nav,1,1980,1,, 16466,NJBF000084976,5934 CEDARCROFT DRIVE,Hamilton,NJ,39.47188617,-74.71324318,RES1,3001,,17,NE,1987,1987,3102,1,1,1025.551293,1025.551293,3505,NO,17.66,29.84,3,1.27,6109,109.114987,118.647227,128.299457,133.047309,I,Above,Gable,0,5701,,23.7503664,0,0,,,,1,1,,0.03,nav,1,1987,1,, 16467,NJBF000084974,5913 VINE DRIVE,Hamilton,NJ,39.47188264,-74.71072513,RES1,3001,,17,NE,1984,1984,3102,1,1,1008.091202,1008.091202,3505,NO,16.62,21.67,3,-1.27,6112,109.138024,118.67667,128.326837,133.096825,I,Above,Gable,0,5701,,19.14076671,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16468,NJBF000084975,5908 REDWOOD DRIVE,Hamilton,NJ,39.47188453,-74.70999299,RES1,3001,,17,NE,1977,1977,3102,1,1,1757.382331,1757.382331,3505,NO,16.62,31.45,3,0.85,6109,109.144758,118.685239,128.334792,133.111191,I,Above,Gable,0,5701,,24.03750393,0,0,,,,1,1,,0.03,nav,1,1977,1,, 16469,NJBF000084977,5914 VINE DRIVE,Hamilton,NJ,39.47189318,-74.7113237,RES1,3001,,17,NE,1978,1978,3102,1,1,1670.143434,1670.143434,3505,NO,14.22,19.61,3,1.73,6112,109.132508,118.669574,128.320237,133.084901,I,Above,Gable,0,5701,,16.91572579,0,0,,,,1,1,,0.35,nav,1,1978,1,, 16470,NJBF000084979,5936 CEDARCROFT DRIVE,Hamilton,NJ,39.47196334,-74.71345838,RES1,3001,,17,NE,1984,1984,3102,1,1,1036.209151,1036.209151,3505,NO,20.84,35.2,3,3.27,6109,109.112894,118.644099,128.296484,133.041952,I,Above,Flat,0,5701,,28.02293821,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16471,NJBF000084980,5938 CEDARCROFT DRIVE,Hamilton,NJ,39.47197915,-74.71375465,RES1,3001,,17,NE,1985,1985,3102,1,1,1386.138709,1386.138709,3505,NO,18.06,24.62,3,-0.02,6109,109.110165,118.640513,128.293132,133.035887,I,Above,Gable,0,5701,,21.33827909,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16472,NJBF000084982,5910 REDWOOD DRIVE,Hamilton,NJ,39.47200813,-74.71020166,RES1,3001,,17,NE,1977,1977,3102,1,1,1648.826438,1648.826438,3505,NO,15.77,27.94,3,-0.11,6112,109.142624,118.681787,128.331488,133.10526,I,Above,Gable,0,5701,,21.85529466,0,0,,,,1,1,,0.35,nav,1,1977,1,, 16473,NJBF000084983,5940 CEDARCROFT DRIVE,Hamilton,NJ,39.4720654,-74.71399444,RES1,3001,,17,NE,1985,1985,3102,1,1,1387.091663,1387.091663,3505,NO,12.83,18.53,3,0.26,6109,109.107841,118.637037,128.289827,133.029928,I,Above,Gable,0,5701,,15.68339299,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16474,NJBF000084988,5912 REDWOOD DRIVE,Hamilton,NJ,39.47214937,-74.71041623,RES1,3001,,17,NE,1977,1977,3102,1,1,1791.297917,1791.297917,3505,NO,9.77,16.75,3,-2.83,6112,109.140413,118.678131,128.32798,133.098966,I,Above,Gable,0,5701,,13.25797984,0,0,,,,1,1,,0.35,nav,1,1977,1,, 16475,NJBF000084985,5920 CEDARCROFT DRIVE,Hamilton,NJ,39.47213505,-74.71089948,RES1,3001,,17,NE,1993,1993,3102,2,1,2116.981598,2116.981598,3505,NO,42.12,52.54,3,5.26,6112,109.135994,118.672585,128.32284,133.089678,I,Above,Flat,0,5701,,47.32791813,0,1.1,,,,1,1,,0.35,nav,1,1993,2,, 16476,NJBF000084991,5925 CEDARCROFT DRIVE,Hamilton,NJ,39.47220245,-74.71269464,RES1,3001,,17,NE,1985,1985,3102,1,1,1597.4397,1597.4397,3505,NO,14.51,20.66,3,1.95,6112,109.119427,118.651051,128.302768,133.053403,I,Above,Hip,0,5701,,17.58348184,0,0,,,,1,1,,0.35,nav,1,1985,1,, 16477,NJBF000084990,5916 BERRY DRIVE,Hamilton,NJ,39.47219126,-74.71222823,RES1,3001,,17,NE,1985,1985,3102,1,1,1741.872785,1741.872785,3505,NO,23.26,28.77,3,7.42,6112,109.123713,118.65659,128.307928,133.062736,I,Above,Gable,0,5701,,26.01332554,0,0,,,,1,1,,0.35,nav,1,1985,1,, 16478,NJBF000084994,5919 BERRY DRIVE,Hamilton,NJ,39.47227797,-74.71167778,RES1,3001,,17,NE,1983,1983,3102,1,1,1376.436296,1376.436296,3505,NO,20.88,27.79,3,5.98,6112,109.128598,118.662308,128.313177,133.072255,I,Above,Gable,0,5701,,24.33679656,0,0,,,,1,1,,0.35,nav,1,1983,1,, 16479,NJBF000084993,1577 PINEHURST DRIVE,Hamilton,NJ,39.47227735,-74.70855991,RES1,3001,,17,NE,1988,1988,3102,1,1,1879.508622,1879.508622,3505,NO,12.6,24.5,3,-0.43,6109,109.157352,118.6989,128.347143,133.133585,I,Above,Gable,0,5701,,18.54813817,0,0,,,,1,1,,0.03,nav,1,1988,1,, 16480,NJBF000084996,1702 CANDLEWOOD DRIVE,Hamilton,NJ,39.47230449,-74.71309096,RES1,3001,,17,NE,1985,1985,3102,1,1,831.6776374,831.6776374,3505,NO,21.04,30.95,3,5.9,6112,109.115636,118.645609,128.297622,133.044123,I,Above,Gable,0,5701,,25.99480216,0,0,,,,1,1,,0.35,nav,1,1985,1,, 16481,NJBF000084995,5918 CEDARCROFT DRIVE,Hamilton,NJ,39.47228023,-74.71065258,RES1,3001,,17,NE,1977,1977,3102,1,1,1492.771731,1492.771731,3505,NO,13.28,27.53,3,-2.84,6112,109.138008,118.674288,128.324306,133.092369,I,Above,Hip,0,5701,,20.40620511,0,0,,,,1,1,,0.35,nav,1,1977,1,, 16482,NJBF000085003,5919 CEDARCROFT DRIVE,Hamilton,NJ,39.47241911,-74.71123068,RES1,3001,,17,NE,1984,1984,3102,1,1,1260.120995,1260.120995,3505,NO,12.99,23.68,3,-1.57,6109,109.132457,118.666391,128.31686,133.078954,I,Above,Gable,0,5701,,18.33880766,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16483,NJBF000085005,5918 BERRY DRIVE,Hamilton,NJ,39.47245677,-74.71217168,RES1,3001,,17,NE,1985,1985,3102,1,1,1573.200814,1573.200814,3505,NO,24.24,32.61,3,6.84,6109,109.123763,118.655084,128.306319,133.059907,I,Above,Gable,0,5701,,28.42363941,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16484,NJBF000085004,1579 PINEHURST DRIVE,Hamilton,NJ,39.47245171,-74.70831239,RES1,3001,,17,NE,1985,1985,3102,1,1,1441.385563,1441.385563,3505,NO,16.84,23.55,3,5.8,6109,109.159364,118.700397,128.348388,133.135875,I,Above,Gable,0,5701,,20.19473802,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16485,NJBF000085007,5921 BERRY DRIVE,Hamilton,NJ,39.47250665,-74.71156138,RES1,3001,,17,NE,1983,1983,3102,1,1,816.1714057,816.1714057,3505,NO,12.39,19.24,3,-0.87,6109,109.129276,118.661817,128.312539,133.07117,I,Above,Gable,0,5701,,15.81477904,0,0,,,,1,1,,0.03,nav,1,1983,1,, 16486,NJBF000085008,1704 CANDLEWOOD DRIVE,Hamilton,NJ,39.47251065,-74.71284682,RES1,3001,,17,NE,1985,1985,3102,1,1,907.286579,907.286579,3505,NO,22.21,36.11,3,5.35,6109,109.117499,118.646772,128.298544,133.045857,I,Above,Gable,0,5701,,29.15760476,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16487,NJBF000085010,1564 OLD EGG HARBOR ROAD,Hamilton,NJ,39.4725474,-74.71391263,RES1,3001,,17,NE,1984,1984,3102,1,1,1076.91768,1076.91768,3505,NO,20.42,32.49,3,5.51,6109,109.107722,118.634072,128.286692,133.024408,I,Above,Gable,0,5701,,26.4513824,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16488,NJBF000085012,5917 CEDARCROFT DRIVE,Hamilton,NJ,39.47258387,-74.7109854,RES1,3001,,17,NE,1983,1983,3102,2,1,2172.249638,2172.249638,3505,NO,38.21,44.78,3,7.51,6112,109.134435,118.66793,128.318158,133.08135,I,Above,Gable,0,5701,,41.49245852,0,1.1,,,,1,1,,0.35,nav,1,1983,2,, 16489,NJBF000085013,1581 PINEHURST DRIVE,Hamilton,NJ,39.47260491,-74.70814177,RES1,3001,,17,NE,1984,1984,3102,1,1,2023.939653,2023.939653,3505,NO,14.59,21.53,3,-1.31,6109,109.160691,118.701154,128.348965,133.136955,I,Above,Hip,0,5701,,18.06322542,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16490,NJBF000085017,5920 BERRY DRIVE,Hamilton,NJ,39.47264409,-74.71207118,RES1,3001,,17,NE,1985,1985,3102,1,1,1815.541425,1815.541425,3505,NO,18.07,28.6,3,-0.96,6109,109.124364,118.654745,128.305858,133.059129,I,Above,Gable,0,5701,,23.33462514,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16491,NJBF000085018,1706 CANDLEWOOD DRIVE,Hamilton,NJ,39.47269271,-74.71263129,RES1,3001,,17,NE,1985,1985,3102,1,1,1668.197714,1668.197714,3505,NO,19.1,27.93,3,6.6,6109,109.119154,118.647813,128.299372,133.047411,I,Above,Gable,0,5701,,23.51664489,0,1.2,,,,1,1,,0.03,nav,1,1985,1,, 16492,NJBF000085019,5923 BERRY DRIVE,Hamilton,NJ,39.47271551,-74.71136841,RES1,3001,,17,NE,1983,1983,3102,1,1,1322.155086,1322.155086,3505,NO,17.39,27.86,3,6.43,6109,109.130688,118.662375,128.312894,133.071874,I,Above,Gable,0,5701,,22.62723513,0,0,,,,1,1,,0.03,nav,1,1983,1,, 16493,NJBF000085021,5915 CEDARCROFT DRIVE,Hamilton,NJ,39.47274504,-74.71076786,RES1,3001,,17,NE,1983,1983,3102,1,1,1334.753812,1334.753812,3505,NO,21.83,27.83,3,6.96,6112,109.136157,118.669162,128.319176,133.083234,I,Above,Gable,0,5701,,24.82954391,0,0,,,,1,1,,0.35,nav,1,1983,1,, 16494,NJBF000085024,1702 BRANCH DRIVE,Hamilton,NJ,39.47280937,-74.71361551,RES1,3001,,17,NE,1980,1980,3102,1,1,515.6819694,515.6819694,3505,NO,20.19,27.33,3,2.15,6109,109.109962,118.635401,128.287729,133.02637,I,Above,Gable,0,5701,,23.76228833,0,0,,,,1,1,,0.03,nav,1,1980,1,, 16495,NJBF000085026,5922 BERRY DRIVE,Hamilton,NJ,39.47283245,-74.71189584,RES1,3001,,17,NE,1980,1980,3102,1,1,883.0439176,883.0439176,3505,NO,15.13,20.52,3,-2.29,6112,109.125643,118.655262,128.306191,133.059789,I,Above,Gable,0,5701,,17.82094308,0,0,,,,1,1,,0.35,nav,1,1980,1,, 16496,NJBF000085027,1702 BRANCH DRIVE,Hamilton,NJ,39.47283925,-74.71377361,RES1,3001,,17,NE,1980,1980,3102,1,1,1139.927292,1139.927292,3505,NO,22.84,35.9,3,7.94,6109,109.10847,118.63332,128.285768,133.022828,I,Above,Gable,0,5701,,29.37273395,0,0,,,,1,1,,0.03,nav,1,1980,1,, 16497,NJBF000085025,1583 PINEHURST DRIVE,Hamilton,NJ,39.47282459,-74.7079278,RES1,3001,,17,NE,1979,1979,3102,1,1,3191.005856,3191.005856,3505,NO,17.98,30.53,3,2.92,6109,109.16232,118.701884,128.349464,133.137909,I,Above,Gable,0,5701,,24.25776034,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 16498,NJBF000085029,5925 BERRY DRIVE,Hamilton,NJ,39.47287481,-74.71111161,RES1,3001,,17,NE,1983,1983,3102,1,1,2181.94444,2181.94444,3505,NO,17.25,31.13,3,-0.08,6112,109.132769,118.664078,128.314351,133.074554,I,Above,Hip,0,5701,,24.189041,0,1.1,,,,1,1,,0.35,nav,1,1983,1,, 16499,NJBF000085030,1704 BRANCH DRIVE,Hamilton,NJ,39.47290585,-74.71335995,RES1,3001,,17,NE,1980,1980,3102,1,1,1635.240054,1635.240054,3505,NO,16.29,22.95,3,-1.53,6109,109.112125,118.637592,128.289695,133.029961,I,Above,Gable,0,5701,,19.62193982,0,0,,,,1,1,,0.03,nav,1,1980,1,, 16500,NJBF000085031,1708 CANDLEWOOD DRIVE,Hamilton,NJ,39.4729123,-74.7123842,RES1,3001,,17,NE,1985,1985,3102,1,1,1085.646188,1085.646188,3505,NO,18.84,26.73,3,4.47,6109,109.121033,118.648916,128.300228,133.049027,I,Above,Flat,0,5701,,22.78471637,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16501,NJBF000085032,5913 CEDARCROFT DRIVE,Hamilton,NJ,39.47292503,-74.71061726,RES1,3001,,17,NE,1977,1977,3102,1,1,1639.115289,1639.115289,3505,NO,11.21,25.17,3,-0.77,6112,109.137242,118.669467,128.319318,133.083541,I,Above,Hip,0,5701,,18.18641732,0,0,,,,1,1,,0.35,nav,1,1977,1,, 16502,NJBF000085034,1585 PINEHURST DRIVE,Hamilton,NJ,39.47298006,-74.70769183,RES1,3001,,17,NE,1986,1986,3102,1,1,837.4876652,837.4876652,3505,NO,11.64,22.75,3,-2.08,6109,109.164265,118.703404,128.350747,133.140258,I,Above,Gable,0,5701,,17.1986472,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16503,NJBF000085035,5924 BERRY DRIVE,Hamilton,NJ,39.47301543,-74.71170599,RES1,3001,,17,NE,1985,1985,3102,1,1,1800.999794,1800.999794,3505,NO,19.63,32.72,3,7.39,6112,109.127071,118.655994,128.30673,133.060818,I,Above,Hip,0,5701,,26.17211718,0,0,,,,1,1,,0.35,nav,1,1985,1,, 16504,NJBF000085038,5927 BERRY DRIVE,Hamilton,NJ,39.47307343,-74.710938,RES1,3001,,17,NE,1983,1983,3102,1,1,1293.087172,1293.087172,3505,NO,19.38,32.29,3,8.8,6112,109.134033,118.664504,128.314593,133.075046,I,Above,Gable,0,5701,,25.83471638,0,0,,,,1,1,,0.35,nav,1,1983,1,, 16505,NJBF000085037,1710 CANDLEWOOD DRIVE,Hamilton,NJ,39.47307142,-74.71217513,RES1,3001,,17,NE,1985,1985,3102,1,1,2371.920322,2371.920322,3505,NO,17.54,30.52,3,-1.54,6112,109.122672,118.650063,128.301172,133.050782,I,Above,Gable,0,5701,,24.03232948,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 16506,NJBF000085040,1706 BRANCH DRIVE,Hamilton,NJ,39.47309336,-74.7130342,RES1,3001,,17,NE,1983,1983,3102,1,1,2061.746778,2061.746778,3505,NO,10.77,24.2,3,-0.44,6109,109.114773,118.63987,128.291672,133.033598,I,Above,Gable,0,5701,,17.48253265,0,0,,,,1,1,,0.03,nav,1,1983,1,, 16507,NJBF000085044,5926 BERRY DRIVE,Hamilton,NJ,39.47317403,-74.7114856,RES1,3001,,17,NE,1985,1985,3102,1,1,1483.062545,1483.062545,3505,NO,14.4,22.36,3,3.32,6109,109.128818,118.657273,128.307796,133.06279,I,Above,Gable,0,5701,,18.38008673,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16508,NJBF000085046,1587 PINEHURST DRIVE,Hamilton,NJ,39.47319226,-74.70744431,RES1,3001,,17,NE,1988,1988,3102,1,1,1134.107932,1134.107932,3505,NO,20.51,31.5,3,7.92,6109,109.166232,118.704601,128.351685,133.142,I,Above,Gable,0,5701,,26.00369077,0,0,,,,1,1,,0.03,nav,1,1988,1,, 16509,NJBF000085048,1568 OLD EGG HARBOR ROAD,Hamilton,NJ,39.47325011,-74.71365944,RES1,3001,,17,NE,1984,1984,3102,1,1,1124.410493,1124.410493,3505,NO,23.06,34.07,3,5.28,6109,109.108794,118.631322,128.283596,133.019022,I,Above,Flat,0,5701,,28.56448179,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16510,NJBF000085047,5929 BERRY DRIVE,Hamilton,NJ,39.47324037,-74.71074514,RES1,3001,,17,NE,1983,1983,3102,2,1,1894.057493,1894.057493,3505,NO,31.93,39.7,3,0.82,6112,109.135527,118.665405,128.3153,133.07637,I,Above,Gable,0,5701,,35.81649085,0,0,,,,1,1,,0.35,nav,1,1983,2,, 16511,NJBF000085049,1712 CANDLEWOOD DRIVE,Hamilton,NJ,39.4732651,-74.71194602,RES1,3001,,17,NE,1985,1985,3102,1,1,1441.377494,1441.377494,3505,NO,14.42,23.71,3,2.72,6112,109.124437,118.651159,128.302043,133.052414,I,Above,Gable,0,5701,,19.06303564,0,0,,,,1,1,,0.35,nav,1,1985,1,, 16512,NJBF000085050,1708 BRANCH DRIVE,Hamilton,NJ,39.47326799,-74.712813,RES1,3001,,17,NE,1985,1985,3102,1,1,1180.629215,1180.629215,3505,NO,25.05,34.23,3,7.48,6109,109.116488,118.641023,128.292612,133.035353,I,Above,Hip,0,5701,,29.63733874,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16513,NJBF000085054,5911 CEDARCROFT DRIVE,Hamilton,NJ,39.47329257,-74.71019926,RES1,3001,,17,NE,1983,1983,3102,2,1,1425.859724,1425.859724,3505,NO,28.96,40.46,3,0.02,6112,109.140476,118.671371,128.320798,133.086316,I,Above,Flat,0,5701,,34.71090293,0,0,,,,1,1,,0.35,nav,1,1983,2,, 16514,NJBF000085060,5928 BERRY DRIVE,Hamilton,NJ,39.47331137,-74.71143717,RES1,3001,,17,NE,1985,1985,3102,1,1,1227.167999,1227.167999,3505,NO,26.88,40.07,3,8.75,6112,109.129034,118.656732,128.307187,133.061729,I,Above,Gable,0,5701,,33.47599958,0,0,,,,1,1,,0.35,nav,1,1985,1,, 16515,NJBF000085066,1705 BRANCH DRIVE,Hamilton,NJ,39.47333268,-74.71339212,RES1,3001,,17,NE,1985,1985,3102,1,1,1604.230124,1604.230124,3505,NO,16.29,23,3,4.5,6109,109.111084,118.633753,128.285797,133.023035,I,Above,Gable,0,5701,,19.6488981,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 16516,NJBF000085069,5928 BERRY DRIVE,Hamilton,NJ,39.47337901,-74.71127691,RES1,3001,,17,NE,1985,1985,3102,1,1,1692.442901,1692.442901,3505,NO,19.11,31.77,3,1.34,6112,109.13039,118.658049,128.308359,133.063866,I,Above,Gable,0,5701,,25.4372991,0,0,,,,1,1,,0.35,nav,1,1985,1,, 16517,NJBF000085070,1589 PINEHURST DRIVE,Hamilton,NJ,39.47339493,-74.70720417,RES1,3001,,17,NE,1984,1984,3102,1,1,1263.017709,1263.017709,3505,NO,23.59,29.75,3,4.29,6109,109.168145,118.705778,128.352612,133.143717,I,Above,Gable,0,5701,,26.67054467,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16518,NJBF000085077,1710 BRANCH DRIVE,Hamilton,NJ,39.47345934,-74.71263693,RES1,3001,,17,NE,1985,1985,3102,1,1,944.1714978,944.1714978,3505,NO,20.07,32.32,3,1.47,6109,109.117767,118.641522,128.292932,133.035988,I,Above,Gable,0,5701,,26.19559729,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16519,NJBF000085080,1714 CANDLEWOOD DRIVE,Hamilton,NJ,39.47347831,-74.71173024,RES1,3001,,17,NE,1985,1985,3102,1,1,1583.867248,1583.867248,3505,NO,13.35,20.88,3,0.64,6112,109.126054,118.65195,128.302615,133.053509,I,Above,Gable,0,5701,,17.11484236,0,0,,,,1,1,,0.35,nav,1,1985,1,, 16520,NJBF000085075,5909 CEDARCROFT DRIVE,Hamilton,NJ,39.47345611,-74.70997426,RES1,3001,,17,NE,1983,1983,3102,1,1,2213.943479,2213.943479,3505,NO,14.1,22.93,3,-2.88,6112,109.142282,118.672682,128.321888,133.088328,I,Above,Gable,0,5701,,18.51288509,0,0,,,,1,1,,0.35,nav,1,1983,1,, 16521,NJBF000085084,1707 BRANCH DRIVE,Hamilton,NJ,39.47351368,-74.7131665,RES1,3001,,17,NE,1984,1984,3102,1,1,932.4975023,932.4975023,3505,NO,12.82,24.55,3,-1.42,6112,109.112832,118.634913,128.286741,133.024798,I,Above,Gable,0,5701,,18.68492467,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16522,NJBF000085085,5906 ELMHURST DRIVE,Hamilton,NJ,39.47353417,-74.71111151,RES1,3001,,17,NE,1986,1986,3102,1,1,1275.642394,1275.642394,3505,NO,20.16,34.94,3,7.83,6109,109.131645,118.658718,128.308861,133.064817,I,Above,Gable,0,5701,,27.55063122,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16523,NJBF000085088,1710 BRANCH DRIVE,Hamilton,NJ,39.4735574,-74.71251209,RES1,3001,,17,NE,1985,1985,3102,1,1,1814.568686,1814.568686,3505,NO,11.37,21.57,3,0.82,6109,109.118742,118.642182,128.293472,133.036995,I,Above,Gable,0,5701,,16.47036128,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16524,NJBF000085091,5908 ELMHURST DRIVE,Hamilton,NJ,39.47361735,-74.71147947,RES1,3001,,17,NE,1985,1985,3102,1,1,1317.315651,1317.315651,3505,NO,13.76,26.62,3,2.11,6109,109.128124,118.653752,128.304184,133.056385,I,Above,Hip,0,5701,,20.18862403,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16525,NJBF000085092,5934 CLOVERLEAF DRIVE,Hamilton,NJ,39.4736265,-74.71349346,RES1,3001,,17,NE,1984,1984,3102,1,1,1180.631608,1180.631608,3505,NO,26.48,34.72,3,7.79,6109,109.109647,118.630191,128.28226,133.016719,I,Above,Gable,0,5701,,30.60095935,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16526,NJBF000085089,5905 ELMHURST DRIVE,Hamilton,NJ,39.47357403,-74.71040756,RES1,3001,,17,NE,1983,1983,3102,1,1,2238.164625,2238.164625,3505,NO,15.94,22.08,3,0.33,6112,109.138071,118.666634,128.316182,133.078055,I,Above,Gable,0,5701,,19.00961709,0,1.1,,,,1,1,,0.35,nav,1,1983,1,, 16527,NJBF000085093,1712 BRANCH DRIVE,Hamilton,NJ,39.47365404,-74.71238506,RES1,3001,,17,NE,1984,1984,3102,1,1,945.1033235,945.1033235,3505,NO,17.87,32.27,3,-0.31,6109,109.119738,118.642875,128.294043,133.038055,I,Above,Gable,0,5701,,25.07015084,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16528,NJBF000085096,1709 BRANCH DRIVE,Hamilton,NJ,39.47369698,-74.7129507,RES1,3001,,17,NE,1984,1984,3102,1,1,1068.189121,1068.189121,3505,NO,22.13,30.53,3,4.21,6109,109.114479,118.63593,128.287549,133.026317,I,Above,Gable,0,5701,,26.32992334,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16529,NJBF000085100,5910 CEDARCROFT DRIVE,Hamilton,NJ,39.47371633,-74.70955054,RES1,3001,,17,NE,1960,1960,3102,1,1,1532.309396,1532.309396,3505,NO,15.61,24.5,3,0.01,6112,109.145764,118.675528,128.324327,133.092797,I,Above,Gable,0,5701,,20.05587247,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16530,NJBF000085095,5916 FIR LANE,Hamilton,NJ,39.47369214,-74.70881762,RES1,3001,,17,NE,1983,1983,3102,1,1,1822.320608,1822.320608,3505,NO,14.36,24.77,3,0.21,6112,109.152609,118.684336,128.332514,133.107563,I,Above,Hip,0,5701,,19.56533257,0,1.1,,,,1,1,,0.03,nav,1,1983,1,, 16531,NJBF000085101,5902 FIR LANE,Hamilton,NJ,39.47371983,-74.70690733,RES1,3001,,17,NE,1976,1976,3102,2,1,1426.847131,1426.847131,3505,NO,30.85,44.13,3,6.81,6112,109.170398,118.706632,128.353145,133.144748,I,Above,Gable,0,5701,,37.48664261,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 16532,NJBF000085103,5907 CEDARCROFT DRIVE,Hamilton,NJ,39.4737475,-74.71014783,RES1,3001,,17,NE,1983,1983,3102,1,1,1607.139148,1607.139148,3505,NO,21.32,33.4,3,5.89,6112,109.140181,118.668264,128.317562,133.080592,I,Above,Gable,0,5701,,27.35955108,0,0,,,,1,1,,0.35,nav,1,1983,1,, 16533,NJBF000085102,5907 ELMHURST DRIVE,Hamilton,NJ,39.47373661,-74.71061627,RES1,3001,,17,NE,1983,1983,3102,1,1,2059.805162,2059.805162,3505,NO,26.27,40.34,3,7.06,6112,109.135875,118.66287,128.312563,133.07156,I,Above,Gable,0,5701,,33.30606392,0,0,,,,1,1,,0.35,nav,1,1983,1,, 16534,NJBF000085105,5932 CLOVERLEAF DRIVE,Hamilton,NJ,39.47379467,-74.71327077,RES1,3001,,17,NE,1986,1986,3102,1,1,1987.122181,1987.122181,3505,NO,21.39,29.6,3,8.02,6112,109.111381,118.631408,128.283268,133.018595,I,Above,Gable,0,5701,,25.49387381,0,0,,,,1,1,,0.35,nav,1,1986,1,, 16535,NJBF000085112,5914 FIR LANE,Hamilton,NJ,39.47386275,-74.70857051,RES1,3001,,17,NE,1984,1984,3102,1,1,1980.330268,1980.330268,3505,NO,16.4,24.74,3,3.51,6109,109.154625,118.685847,128.333782,133.10989,I,Above,Gable,0,5701,,20.56795061,0,1.1,,,,1,1,,0.03,nav,1,1984,1,, 16536,NJBF000085113,5904 FIR LANE,Hamilton,NJ,39.47386993,-74.70720227,RES1,3001,,17,NE,1980,1980,3102,1,1,1990.012968,1990.012968,3505,NO,14.25,20.01,3,-1.75,6112,109.167393,118.701923,128.348668,133.13672,I,Above,Gable,0,5701,,17.13212631,0,1.1,,,,1,1,,0.03,nav,1,1980,1,, 16537,NJBF000085114,1714 BRANCH DRIVE,Hamilton,NJ,39.47389326,-74.71212022,RES1,3001,,17,NE,1984,1984,3102,1,1,1051.719061,1051.719061,3505,NO,23.56,36.53,3,4.4,6112,109.121758,118.644022,128.29493,133.039729,I,Above,Gable,0,5701,,30.0484464,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16538,NJBF000085115,1711 BRANCH DRIVE,Hamilton,NJ,39.4739172,-74.71272963,RES1,3001,,17,NE,1985,1985,3102,1,1,1285.33348,1285.33348,3505,NO,11.24,20.61,3,-2.3,6109,109.11612,118.636715,128.288116,133.027407,I,Above,Gable,0,5701,,15.92740656,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16539,NJBF000085116,1804 POND AVE,Hamilton,NJ,39.47394121,-74.71043606,RES1,3001,,17,NE,1983,1983,3102,2,1,1011.956622,1011.956622,3505,NO,36.05,49.77,3,2.49,6112,109.137193,118.663317,128.312821,133.072082,I,Above,Gable,0,5701,,42.91220117,0,0,,,,1,1,,0.35,nav,1,1983,2,, 16540,NJBF000085118,1803 POND AVE,Hamilton,NJ,39.47394896,-74.71107075,RES1,3001,,17,NE,1984,1984,3102,1,1,1173.863358,1173.863358,3505,NO,21.19,34.59,3,8,6112,109.131316,118.655819,128.305853,133.059493,I,Above,Gable,0,5701,,27.88846428,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16541,NJBF000085117,5908 CEDARCROFT DRIVE,Hamilton,NJ,39.47394864,-74.70973006,RES1,3001,,17,NE,1989,1989,3102,1,1,2102.455393,2102.455393,3505,NO,13.94,19.05,3,0.15,6109,109.143715,118.671528,128.320437,133.085834,I,Above,Gable,0,5701,,16.49557178,0,0,,,,1,1,,0.03,nav,1,1989,1,, 16542,NJBF000085120,5930 CLOVERLEAF DRIVE,Hamilton,NJ,39.47400116,-74.71307797,RES1,3001,,17,NE,1985,1985,3102,1,1,982.9040306,982.9040306,3505,NO,15.96,23.81,3,2.71,6112,109.112787,118.63198,128.283647,133.019342,I,Above,Flat,0,5701,,19.88618116,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 16543,NJBF000085119,5906 FIR LANE,Hamilton,NJ,39.47398456,-74.70750487,RES1,3001,,17,NE,1984,1984,3102,1,1,1499.537552,1499.537552,3505,NO,26.08,34.82,3,7.1,6112,109.164371,118.697409,128.344398,133.129054,I,Above,Hip,0,5701,,30.44875593,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16544,NJBF000085126,1713 BRANCH DRIVE,Hamilton,NJ,39.47407907,-74.71255275,RES1,3001,,17,NE,1985,1985,3102,1,1,2212.001219,2212.001219,3505,NO,15.96,24.14,3,5.07,6109,109.117463,118.63746,128.288688,133.028489,I,Above,Gable,0,5701,,20.04718481,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16545,NJBF000085127,5908 FIR LANE,Hamilton,NJ,39.47408041,-74.7077669,RES1,3001,,17,NE,1985,1985,3102,1,1,2192.596213,2192.596213,3505,NO,22.39,37.06,3,7.54,6112,109.161768,118.693544,128.340745,133.122492,I,Above,Gable,0,5701,,29.72661484,0,0,,,,1,1,,0.03,nav,1,1985,1,, 16546,NJBF000085128,1805 POND AVE,Hamilton,NJ,39.47409897,-74.71091127,RES1,3001,,17,NE,1984,1984,3102,1,1,2667.571205,2667.571205,3505,NO,16.92,29.1,3,5.25,6109,109.132538,118.656469,128.306343,133.060419,I,Above,Gable,0,5701,,23.0092558,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16547,NJBF000085129,5912 FIR LANE,Hamilton,NJ,39.47411024,-74.70835767,RES1,3001,,17,NE,1985,1985,3102,1,1,1357.046448,1357.046448,3505,NO,14.24,28.57,3,-0.2,6112,109.156203,118.686338,128.334045,133.110424,I,Above,Gable,0,5701,,21.40474726,0,1.2,,,,1,1,,0.03,nav,1,1985,1,, 16548,NJBF000085134,5910 FIR LANE,Hamilton,NJ,39.47417049,-74.70804186,RES1,3001,,17,NE,1980,1980,3102,1,1,2261.435115,2261.435115,3505,NO,14.19,26.63,3,-2.05,6109,109.159052,118.689569,128.336993,133.115751,I,Above,Gable,0,5701,,20.41314934,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 16549,NJBF000085137,5928 CLOVERLEAF DRIVE,Hamilton,NJ,39.47419348,-74.71285675,RES1,3001,,17,NE,1984,1984,3102,1,1,1218.447556,1218.447556,3505,NO,19.02,28.93,3,-0.41,6112,109.114478,118.632991,128.284446,133.020845,I,Above,Gable,0,5701,,23.97486206,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16550,NJBF000085135,5906 CEDARCROFT DRIVE,Hamilton,NJ,39.47417363,-74.71001371,RES1,3001,,17,NE,1986,1986,3102,1,1,1706.977437,1706.977437,3505,NO,12.3,17.31,3,-0.58,6109,109.140707,118.666363,128.315472,133.076928,I,Above,Gable,0,5701,,14.80698719,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16551,NJBF000085139,5913 ELMHURST DRIVE,Hamilton,NJ,39.47419645,-74.71174801,RES1,3001,,17,NE,1964,1964,3102,1,1,2804.251267,2804.251267,3505,NO,25.19,39.65,3,7.66,6112,109.124658,118.645898,128.296447,133.042557,I,Above,Gable,0,5701,,32.41955243,0,0,,,,1,1,,0.03,nav,1,1964,1,, 16552,NJBF000085141,1715 BRANCH DRIVE,Hamilton,NJ,39.47428038,-74.71235159,RES1,3001,,17,NE,1985,1985,3102,2,1,1247.513393,1247.513393,3505,NO,40.06,50.49,3,6.85,6109,109.118961,118.638167,128.289197,133.029467,I,Above,Gable,0,5701,,45.27702303,0,0,,,,1,1,,0.03,nav,1,1985,2,, 16553,NJBF000085145,5904 CEDARCROFT DRIVE,Hamilton,NJ,39.47435561,-74.71031585,RES1,3001,,17,NE,1984,1984,3102,1,1,1282.406082,1282.406082,3505,NO,14.59,23.78,3,-2.08,6112,109.137604,118.66134,128.310672,133.068307,I,Above,Hip,0,5701,,19.18678381,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16554,NJBF000085144,5904 CLOVERLEAF DRIVE,Hamilton,NJ,39.47433592,-74.70923283,RES1,3001,,17,NE,1950,1950,3102,1,1,2276.939276,2276.939276,3505,NO,20.99,34.46,3,7.93,6109,109.147684,118.674206,128.322625,133.089879,I,Above,Gable,0,5701,,27.72139612,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 16555,NJBF000085147,5926 CLOVERLEAF DRIVE,Hamilton,NJ,39.47439489,-74.71260088,RES1,3001,,17,NE,1984,1984,3102,1,1,1250.409189,1250.409189,3505,NO,16.69,28.09,3,-1.24,6112,109.116476,118.63433,128.285543,133.022887,I,Above,Gable,0,5701,,22.3880738,0,0,,,,1,1,,0.35,nav,1,1984,1,, 16556,NJBF000085149,5915 ELMHURST DRIVE,Hamilton,NJ,39.47445184,-74.71178625,RES1,3001,,17,NE,1989,1989,3102,1,1,1579.014934,1579.014934,3505,NO,17.09,22.59,3,6.56,6112,109.12387,118.64337,128.293907,133.038033,I,Above,Gable,0,5701,,19.83659522,0,0,,,,1,1,,0.03,nav,1,1989,1,, 16557,NJBF000085154,5906 CLOVERLEAF DRIVE,Hamilton,NJ,39.47452742,-74.7094553,RES1,3001,,17,NE,1956,1956,3102,2,1,2271.814057,2271.814057,3505,NO,28.65,35.63,3,2.92,6112,109.145304,118.670041,128.318617,133.082693,I,Above,Hip,0,5701,,32.13742401,0,0,,,,1,1,,0.03,nav,1,1956,2,, 16558,NJBF000085165,5922 CLOVERLEAF DRIVE,Hamilton,NJ,39.47468173,-74.71178296,RES1,3001,,17,NE,1986,1986,3102,1,1,1817.490172,1817.490172,3505,NO,21.54,33.2,3,3.36,6112,109.123505,118.641531,128.292028,133.034698,I,Above,Gable,0,5701,,27.36854933,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16559,NJBF000085168,5908 CLOVERLEAF DRIVE,Hamilton,NJ,39.47473635,-74.7096681,RES1,3001,,17,NE,1984,1984,3102,1,1,1599.37565,1599.37565,3505,NO,19.8,31.4,3,3.57,6109,109.142978,118.665836,128.31456,133.07542,I,Above,Gable,0,5701,,25.5965649,0,1.1,,,,1,1,,0.03,nav,1,1984,1,, 16560,NJBF000085177,5920 CLOVERLEAF DRIVE,Hamilton,NJ,39.47481843,-74.711351,RES1,3001,,17,NE,1984,1984,3102,1,1,1818.581012,1818.581012,3505,NO,24.5,30.3,3,8.94,6112,109.127257,118.645467,128.295586,133.041167,I,Above,Gable,0,5701,,27.39644751,0,0,,,,1,1,,0.03,nav,1,1984,1,, 16561,NJBF000085181,5918 CLOVERLEAF DRIVE,Hamilton,NJ,39.47485627,-74.71100851,RES1,3001,,17,NE,1966,1966,3102,2,1,2015.541605,2015.541605,3505,NO,25.77,35.39,3,0.01,6112,109.130351,118.649154,128.298984,133.047318,I,Above,Hip,0,5701,,30.58109678,0,0,,,,1,1,,0.03,nav,1,1966,2,, 16562,NJBF000085167,2718 COLOGNE AVE,Hamilton,NJ,39.47471099,-74.64058266,RES1,3001,,17,NE,1967,1967,3101,2,1,754.8914304,754.8914304,3507,NO,33.11,41.18,1,1.44,6112,109.891275,119.546261,129.112055,134.455635,I,Above,Hip,0,5701,,37.14261114,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 16563,NJBF000085183,5910 CLOVERLEAF DRIVE,Hamilton,NJ,39.47486441,-74.70989762,RES1,3001,,17,NE,1954,1954,3102,1,1,2719.866694,2719.866694,3505,NO,16.47,26.89,3,0.1,6112,109.140629,118.662095,128.310993,133.069011,I,Above,Gable,0,5701,,21.67923367,0,0,,,,1,1,,0.03,nav,1,1954,1,, 16564,NJBF000085189,5916 CLOVERLEAF DRIVE,Hamilton,NJ,39.47492455,-74.71072137,RES1,3001,,17,NE,1988,1988,3102,1,1,1275.296129,1275.296129,3505,NO,13.14,23.82,3,-0.37,6112,109.132898,118.65196,128.301539,133.051951,I,Above,Flat,0,5701,,18.47516628,0,0,,,,1,1,,0.03,nav,1,1988,1,, 16565,NJBF000085187,5914 CLOVERLEAF DRIVE,Hamilton,NJ,39.47491127,-74.71045894,RES1,3001,,17,NE,1962,1962,3102,1,1,2135.876119,2135.876119,3505,NO,15.32,27.72,3,-1.46,6112,109.135348,118.65514,128.304502,133.057301,I,Above,Hip,0,5701,,21.52032821,0,0,,,,1,1,,0.03,nav,1,1962,1,, 16566,NJBF000085193,5912 CLOVERLEAF DRIVE,Hamilton,NJ,39.47497821,-74.71019166,RES1,3001,,17,NE,1980,1980,3102,2,1,1194.148494,1194.148494,3505,NO,28.66,33.76,3,6.67,6112,109.13771,118.65772,128.306847,133.061554,I,Above,Gable,0,5701,,31.20921033,0,0,,,,1,1,,0.03,nav,1,1980,2,, 16567,NJBF000085196,5875 BLACK HORSE PIKE,Hamilton,NJ,39.47408041,-74.7077669,RES1,3001,,16,NE,1985,1962,3102,1,1,1058.498639,1058.498639,3505,NO,21.22,36.15,3,8.06,6112,109.161768,118.693544,128.340745,133.122492,I,Above,Gable,0,5701,,28.684817,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 16568,NJBF000085178,2718 COLOGNE AVE,Hamilton,NJ,39.47484148,-74.6408486,RES1,3001,,17,NE,1967,1967,3101,2,1,2476.589066,2476.589066,3507,NO,30.26,36.37,1,2.49,6112,109.88781,119.541445,129.107677,134.448249,I,Above,Gable,0,5701,,33.31716195,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 16569,NJBF000085200,,Hamilton,NJ,39.47516425,-74.63993451,RES1,3001,,NaN,NE,1967,0,3101,1,1,783.2055152,783.2055152,3507,NO,18.18,32.29,1,0.29,6109,109.899146,119.551167,129.116283,134.46175,I,Above,Flat,0,5701,,25.23614263,0,0,,,,1,1,,0.03,nav,1,1967,1,, 16570,NJBF000085256,6057 BLACK HORSE PIKE,Hamilton,NJ,39.47801263,-74.71391815,RES1,3001,740,16,NE,1962,1962,3101,1,1,1659.474424,1659.474424,3505,NO,23.49,35.92,3,6.51,6112,109.098128,118.589523,128.241348,132.94382,I,Above,Hip,0,5701,,29.70437863,0,0,,,,1,1,,0.35,nav,1,1962,1,, 16571,NJBF000085271,6057 BLACK HORSE PIKE,Hamilton,NJ,39.47913206,-74.71629297,COM8,3001,740,16,ME,1962,1962,3401,1,1,1424.898508,1424.898508,3507,NO,14.83,27.29,1,2.38,6112,109.074387,118.552941,128.206551,132.880999,I,Above,Hip,0,5701,,21.0554785,0,0,,,,1,1,,1,nav,1,1962,1,, 16572,NJBF000085277,6087 BLACK HORSE PIKE,Hamilton,NJ,39.47989778,-74.71783759,COM8,3001,641,NaN,ME,1971,1971,3401,1,1,1039.113479,1039.113479,3507,NO,19.71,29.64,1,1.33,6112,109.058926,118.528925,128.183677,132.839654,I,Above,Flat,0,5701,,24.67557024,0,0,,,,1,1,,1,nav,1,1971,1,, 16573,NJBF000085283,6095 BLACK HORSE PIKE,Hamilton,NJ,39.48033804,-74.71864073,COM8,3001,,16,ME,1958,1958,3401,1,1,2416.54354,2416.54354,3507,NO,16.72,27.92,1,2.92,6112,109.050831,118.51613,128.171469,132.817578,I,Above,Hip,0,5701,,22.31866071,0,0,,,,1,1,,1,nav,1,1958,1,, 16574,NJBF000085289,6101 BLACK HORSE PIKE,Hamilton,NJ,39.48074168,-74.71931298,COM8,3001,,17,ME,1920,1950,3401,3,1,3555.493383,3555.493383,3507,NO,58,66.66,1,-0.23,6112,109.043998,118.505146,128.160973,132.798595,I,Above,Gable,0,5701,,62.32810577,0,0,,,,1,1,,1,nav,1,1920,3,, 16575,NJBF000085290,6109 BLACK HORSE PIKE,Hamilton,NJ,39.48084591,-74.71969552,COM8,3001,641,16,ME,1920,1920,3401,1,1,1611.98011,1611.98011,3507,NO,19.57,26.8,1,0.15,6112,109.040336,118.499922,128.156029,132.789626,I,Above,Hip,0,5701,,23.18496688,0,0,,,,1,1,,1,nav,1,1920,1,, 16576,NJBF000085288,3140 LEIPZIG AVENUE,Hamilton,NJ,39.48062137,-74.62346699,RES1,3001,,17,NE,1960,1960,3101,1,1,2571.571607,2571.571607,3507,NO,12,21.25,1,0.3,6112,110.111359,119.732178,129.280385,134.710653,I,Above,Flat,0,5701,,16.62640329,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16577,NJBF000085292,6109 BLACK HORSE PIKE,Hamilton,NJ,39.48103818,-74.71968773,COM8,3001,641,16,ME,1920,1920,3401,1,1,1352.194834,1352.194834,3507,NO,10.55,20.93,1,-0.66,6112,109.04006,118.498446,128.154544,132.786978,I,Above,Gable,0,5701,,15.74067014,0,0,,,,1,1,,1,nav,1,1920,1,, 16578,NJBF000085291,3140 LEIPZIG AVENUE,Hamilton,NJ,39.48093314,-74.6233379,RES1,3001,,17,NE,1960,1960,3101,1,1,2200.330161,2200.330161,3507,NO,14.22,24.69,1,2.58,6112,110.112809,119.731136,129.279504,134.708422,I,Above,Gable,0,5701,,19.4562788,0,0,,,,1,1,,0.35,nav,1,1960,1,, 16579,NJBF000085293,6109 BLACK HORSE PIKE,Hamilton,NJ,39.48128609,-74.71994184,COM8,3001,641,16,ME,1920,1920,3401,1,1,1122.4862,1122.4862,3507,NO,17.61,24.61,1,-0.67,6112,109.037307,118.493522,128.149804,132.778418,I,Above,Gable,0,5701,,21.10951556,0,0,,,,1,1,,1,nav,1,1920,1,, 16580,NJBF000085294,6109 BLACK HORSE PIKE,Hamilton,NJ,39.48137193,-74.71969011,COM8,3001,641,16,ME,1920,1920,3401,1,1,1040.077362,1040.077362,3507,NO,11.64,19.1,1,-0.91,6112,109.039437,118.495695,128.151791,132.782061,I,Above,Hip,0,5701,,15.36760451,0,0,,,,1,1,,0.03,nav,1,1920,1,, 16581,NJBF000085373,3012 LINDEN AVENUE,Hamilton,NJ,39.48667251,-74.63283872,RES1,3001,,17,NE,1981,1981,3101,1,1,678.5174657,678.5174657,3507,NO,12.92,19.19,1,0.73,6112,109.980348,119.545297,129.10977,134.427391,I,Above,Hip,0,5701,,16.05518295,0,0,,,,1,1,,0.15,nav,1,1981,1,, 16582,NJBF000085374,3012 LINDEN AVENUE,Hamilton,NJ,39.48682344,-74.63261455,RES1,3001,,17,NE,1981,1981,3101,1,1,1293.071743,1293.071743,3507,NO,11.85,18.65,1,1.29,6112,109.98312,119.547022,129.111376,134.429594,I,Above,Gable,0,5701,,15.24627927,0,0,,,,1,1,,0.15,nav,1,1981,1,, 16583,NJBF000085380,3012 LINDEN AVENUE,Hamilton,NJ,39.48698013,-74.63259424,RES1,3001,,17,NE,1981,1981,3101,1,1,895.6430701,895.6430701,3507,NO,16.38,22.36,1,1.64,6112,109.983234,119.545873,129.110345,134.427592,I,Above,Gable,0,5701,,19.36864769,0,0,,,,1,1,,0.03,nav,1,1981,1,, 16584,NJBF000085390,4949 SPRUCE STREET,Hamilton,NJ,39.48719699,-74.63501494,RES1,3001,,17,NE,1911,1911,3101,2,2,6671.750995,6671.750995,3507,NO,23.03,34.36,1,0.59,6112,109.951544,119.510476,129.077881,134.375406,I,Above,Flat,0,5701,,28.69187274,0,0,,,,1,1,,0.15,nav,1,1911,2,, 16585,NJBF000085472,6200 BLACK HORSE PIKE,Hamilton,NJ,39.49778351,-74.7028929,RES1,3001,,NaN,NE,1966,1950,3102,1,5,1628.465163,1628.465163,3504,NO,19.22,25.39,-4,0,6112,109.171934,118.553303,128.199034,132.868607,I,Above,Gable,0,5701,,22.3075257,0,0,,,,1,1,,0.35,nav,1,1966,1,, 16586,NJBF000085499,BLACK HORSE PIKE,Hamilton,NJ,39.49778351,-74.7028929,RES1,3001,,NaN,NE,1966,0,3102,2,1,2269.183854,2269.183854,3504,NO,38.56,43.66,-4,0,6112,109.171934,118.553303,128.199034,132.868607,I,Above,Gable,0,5701,,41.10699692,0,0,,,,1,1,,0.35,nav,1,1966,2,, 16587,NJBF000085540,5637 LAUREL STREET,Hamilton,NJ,39.49276476,-74.67031407,RES1,3001,,17,NE,1910,1910,3101,2,1,1809.703108,1809.703108,3507,NO,32.11,44.41,1,-0.91,6112,109.521198,118.993999,128.605672,133.583654,I,Above,Gable,0,5701,,38.26062938,0,0,,,,1,1,,0.15,nav,1,1910,2,, 16588,NJBF000085557,5638 LAUREL STREET,Hamilton,NJ,39.49343825,-74.6700486,RES1,3001,,16,NE,1910,1910,3101,2,1,800.6643447,800.6643447,3507,NO,27.31,35.11,1,-0.35,6112,109.523386,118.991447,128.603178,133.578759,I,Above,Gable,0,5701,,31.20756882,0,1.2,,,,1,1,,0.15,nav,1,1910,2,, 16589,NJBF000085558,5638 LAUREL STREET,Hamilton,NJ,39.49345824,-74.66975273,RES1,3001,,16,NE,1910,1910,3101,2,1,736.677779,736.677779,3507,NO,38.94,51.89,1,0.8,6112,109.526679,118.995025,128.606445,133.584332,I,Above,Gable,0,5701,,45.41829249,0,1.2,,,,1,1,,0.15,nav,1,1910,2,, 16590,NJBF000085636,6213 PINE STREET,Hamilton,NJ,39.49775693,-74.70267245,RES1,3001,,17,NE,1966,1966,3102,2,1,1462.719496,1462.719496,3504,NO,27,35.84,-4,0,6112,109.174165,118.556124,128.201657,132.8733,I,Above,Gable,0,5701,,31.41554295,0,0,,,,1,1,,0.35,nav,1,1966,2,, 16591,NJBF000085653,6209 PINE STREET,Hamilton,NJ,39.49825108,-74.70194224,RES1,3001,,17,NE,1979,1979,3102,1,1,2901.182987,2901.182987,3504,NO,13.74,22.68,-4,0,6112,109.180665,118.560486,128.205593,132.88025,I,Above,Gable,0,5701,,18.21228483,0,0,,,,1,1,,0.35,nav,1,1979,1,, 16592,NJBF000085660,6209 PINE STREET,Hamilton,NJ,39.49859556,-74.70151362,RES1,3001,,17,NE,1979,1979,3102,1,1,1426.84727,1426.84727,3504,NO,19.33,30.04,-4,0,6112,109.184404,118.562572,128.207454,132.883513,I,Above,Gable,0,5701,,24.68239419,0,0,,,,1,1,,0.35,nav,1,1979,1,, 16593,NJBF000085671,6235 PINE STREET,Hamilton,NJ,39.49895764,-74.70353068,RES1,3001,,17,NE,1900,1900,3102,2,1,3528.335672,3528.335672,3504,NO,21.28,35.3,-4,0,6112,109.163817,118.535835,128.182576,132.839018,I,Above,Gable,0,5701,,28.29408647,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16594,NJBF000085678,5762 HOLLY STREET,Hamilton,NJ,39.49946171,-74.66963453,RES1,3001,,17,NE,1935,1935,3101,1,1,1095.318027,1095.318027,3507,NO,17.5,31.4,1,0.23,6112,109.520839,118.943437,128.558277,133.496161,I,Above,Gable,0,5701,,24.44791561,0,0,,,,1,1,,0.35,nav,1,1935,1,, 16595,NJBF000085680,5762 HOLLY STREET,Hamilton,NJ,39.49957236,-74.66969319,RES1,3001,,17,NE,1935,1935,3101,1,1,841.3640358,841.3640358,3507,NO,10.85,23.15,1,0.33,6112,109.52005,118.941727,128.556699,133.493357,I,Above,Gable,0,5701,,17.00124744,0,0,,,,1,1,,0.35,nav,1,1935,1,, 16596,NJBF000085691,6214 OAK STREET,Hamilton,NJ,39.5002407,-74.70003155,RES1,3001,,17,NE,1985,1985,3102,2,1,1904.708538,1904.708538,3504,NO,28.28,40.51,-4,0,6112,109.19675,118.565941,128.210266,132.888196,I,Above,Gable,0,5701,,34.3947301,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 16597,NJBF000085703,,Hamilton,NJ,39.50115169,-74.69165151,RES1,3001,,NaN,NE,1969,0,3102,2,1,1417.008535,1417.008535,3504,NO,21.12,34.69,-4,0,6112,109.280897,118.657691,128.295034,133.038066,I,Above,Gable,0,5701,,27.90526632,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16598,NJBF000086025,5518 DROSERA STREET,Hamilton,NJ,39.50641014,-74.64686807,RES1,3001,,16,NE,1960,1960,3102,1,1,1260.098748,1260.098748,3505,NO,16.78,21.99,3,2.15,6112,109.779941,119.173915,128.7714,133.842863,I,Above,Gable,0,5701,,19.38511263,0,0,,,,1,1,,0.35,nav,1,1960,1,, 16599,NJBF000086049,5518 DROSERA STREET,Hamilton,NJ,39.50677835,-74.64660871,RES1,3001,,16,NE,1960,1960,3102,1,1,945.0803637,945.0803637,3505,NO,20.83,29.42,3,7.69,6112,109.782634,119.173907,128.771504,133.842407,I,Above,Flat,0,5701,,25.12480796,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16600,NJBF000086088,3201 ROCHESTER AVENUE,Hamilton,NJ,39.5074884,-74.64780744,RES1,3001,,17,NE,1900,1900,3102,2,1,2693.722436,2693.722436,3505,NO,28.79,41.75,3,-0.04,6112,109.767011,119.151559,128.751005,133.807721,I,Above,Gable,0,5701,,35.26755162,0,0,,,,1,1,,0.15,nav,1,1900,2,, 16601,NJBF000086895,2901 CARMENTOWN ROAD,Hamilton,NJ,39.51448215,-74.56173511,RES1,3001,,16,NE,1975,1980,3101,1,1,1829.099676,1829.099676,3507,NO,19.8,25.74,1,1.22,6112,110.962423,120.309441,129.871798,135.433382,I,Above,Gable,0,5701,,22.77046792,0,0,,,,1,1,,0.03,nav,1,1975,1,, 16602,NJBF000087561,7352 DRIFTWOOD LANE,Hamilton,NJ,39.53634281,-74.79323566,RES1,3001,,17,NE,1970,1970,3102,1,1,1628.499131,1628.499131,3507,NO,19.61,32.07,1,1.68,6112,108.294579,117.287073,126.998447,130.686616,I,Above,Gable,0,5701,,25.84046342,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16603,NJBF000084115,221 LENAPE AVENUE,Hamilton,NJ,39.455221,-74.73069798,RES1,3001,,17,NE,1969,1910,3102,2,2,867.3979574,867.3979574,3505,NO,24.78,31.42,3,3.29,6112,108.999157,118.580327,128.25091,132.950461,I,Above,Gable,0,5701,,28.10286133,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16604,NJBF000084037,6115 OLD HARDING HIGHWAY,Hamilton,NJ,39.45338879,-74.73584477,IND4,3004,330,NaN,E,1866,1866,3401,4,1,33570.17024,33570.17024,3507,NO,79.89,87.91,1,2.65,6106,108.962205,118.537211,128.211213,132.876674,I,Above,Flat,0,NaN,,83.89965743,0,0,,,,1,1,,0.03,nav,1,1866,4,, 16605,NJBF000084078,6069 MAIN STREET,Hamilton,NJ,39.4544022,-74.73297239,RES1,3001,,16,NE,1880,1880,3102,2,1,1245.59023,1245.59023,3505,NO,30.9,36.35,3,-0.98,6112,108.982705,118.561274,128.233425,132.917978,I,Above,Gable,0,5701,,33.62503478,0,0,,,,1,1,,0.35,nav,1,1880,2,, 16606,NJBF000083887,34 TAYLOR AVENUE,Hamilton,NJ,39.45112929,-74.72824531,RES1,3001,,17,NE,1900,1900,3103,3,1,1696.315192,1696.315192,3505,NO,35.15,44.8,3,2.4,6112,109.029436,118.640152,128.311904,133.058848,I,Above,Gable,0,5701,,39.97361242,0,0,,,,1,1,,0.35,nav,1,1900,3,, 16607,NJBF000086800,2066 IRONFORGE ROAD,Hamilton,NJ,39.51893414,-74.77891057,RES1,3001,,17,NE,1940,1940,3102,1,1,1734.145806,1734.145806,3507,NO,9.99,24.51,1,-0.96,6106,108.452282,117.564209,127.2607,131.152138,I,Above,Gable,0,5701,,17.25060999,0,0,,,,1,1,,0.03,nav,1,1940,1,, 16608,NJBF000082255,568 GRAVELLY RUN ROAD,Hamilton,NJ,39.42843338,-74.70437379,RES1,3001,,17,NE,1988,1988,3102,2,1,3194.638412,3194.638412,3507,NO,33.82,42.58,1,2.74,6112,109.282927,119.095407,128.777089,133.872738,I,Above,Hip,0,5701,,38.19973125,0,0,,,,1,1,,0.35,nav,1,1988,2,, 16609,NJBF000082253,570 GRAVELLY RUN ROAD,Hamilton,NJ,39.4284113,-74.70383441,RES1,3001,,18,NE,1999,1999,3102,2,1,3557.998724,3557.998724,3507,NO,30.13,42.39,1,1.35,6110,109.287379,119.102097,128.78347,133.883947,I,Above,Gable,0,5701,,36.26311582,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 16610,NJBF000082269,564 GRAVELLY RUN ROAD,Hamilton,NJ,39.42854149,-74.70515899,RES1,3001,,17,NE,1986,1986,3102,1,1,3098.798596,3098.798596,3507,NO,18.37,26.75,1,0.84,6112,109.276264,119.085115,128.767125,133.855304,I,Above,Gable,0,5701,,22.55803381,0,0,,,,1,1,,0.35,nav,1,1986,1,, 16611,NJBF000082258,568 GRAVELLY RUN ROAD,Hamilton,NJ,39.4284805,-74.7046775,RES1,3001,,17,NE,1988,1988,3102,2,1,737.7123463,737.7123463,3507,NO,28.4,42.58,1,0.37,6112,109.280331,119.091379,128.773181,133.865908,I,Above,Gable,0,5701,,35.48932779,0,0,,,,1,1,,0.35,nav,1,1988,2,, 16612,NJBF000082303,560 GRAVELLY RUN ROAD,Hamilton,NJ,39.42885523,-74.70587743,RES1,3001,,18,NE,1987,1987,3102,2,1,2881.459517,2881.459517,3507,NO,26.27,40.24,1,1.72,6112,109.269591,119.074065,128.756056,133.836127,I,Above,Gable,0,5701,,33.25590585,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 16613,NJBF000082236,574 GRAVELLY RUN ROAD,Hamilton,NJ,39.4282466,-74.70318959,RES1,3001,,18,NE,1986,1986,3102,2,1,2048.095936,2048.095936,3507,NO,27.45,41.17,1,-0.6,6110,109.293065,119.111148,128.792352,133.899394,I,Above,Hip,0,5701,,34.30957319,0,0,,,,1,1,,0.35,nav,1,1986,2,, 16614,NJBF000082291,,Hamilton,NJ,39.42868117,-74.7066449,RES1,3001,,NaN,NE,1969,0,3102,2,1,3139.58458,3139.58458,3507,NO,20.56,32.2,1,-0.99,6112,109.263867,119.066187,128.748885,133.823293,I,Above,Gable,0,5701,,26.37809599,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16615,NJBF000094986,623 FAIRVIEW AVE,Hammonton,NJ,39.64751059,-74.8025099,RES1,3001,,17,NE,1924,1924,3102,2,1,979.7912334,979.7912334,3507,NO,37.66,46.56,1,1.57,6112,107.929492,116.27078,126.138992,129.351482,I,Above,Gable,0,5701,,42.10695602,0,1.1,,,,1,1,,0.35,nav,1,1924,2,, 16616,NJBF000094295,630 E PLEASANT ST,Hammonton,NJ,39.64435389,-74.79709601,RES1,3001,,17,NE,2001,2001,3102,2,1,2095.373189,2095.373189,3507,NO,41.59,47.99,1,2.71,6112,107.983086,116.340748,126.20475,129.45065,I,Above,Gable,0,5701,,44.79025314,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 16617,NJBF000094338,535 PRATT ST,Hammonton,NJ,39.64459394,-74.80298759,RES1,3001,,17,NE,1986,1986,3102,1,1,3461.94384,3461.94384,3507,NO,16.58,27.48,1,1.17,6112,107.934005,116.292861,126.15479,129.375712,I,Above,Gable,0,5701,,22.02841564,0,1.2,,,,1,1,,0.35,nav,1,1986,1,, 16618,NJBF000094422,416 4TH ST,Hammonton,NJ,39.64498249,-74.80170663,RES1,3001,,17,NE,1960,1960,3102,2,1,2882.304428,2882.304428,3507,NO,21.75,29,1,0.35,6112,107.943361,116.299325,126.162637,129.387355,I,Above,Gable,0,5701,,25.37593068,0,0,,,,1,1,,0.35,nav,1,1960,2,, 16619,NJBF000097794,223 OAK RD,Hammonton,NJ,39.66656114,-74.80423137,RES1,3001,,17,NE,1920,1920,3102,2,1,1663.096661,1663.096661,3505,NO,42.66,56.93,3,4.56,6112,107.859038,116.087914,125.997499,129.139301,I,Above,Gable,0,5701,,49.79253203,0,0,,,,1,1,,0.15,nav,1,1920,2,, 16620,NJBF000092695,700 N 2ND RD,Hammonton,NJ,39.63237177,-74.83714513,RES1,3001,,17,NE,2000,2000,3102,2,1,833.1805842,833.1805842,3505,NO,19.36,24.71,3,-2.95,6112,107.698795,116.140398,125.961668,129.086542,I,Above,Gable,0,5701,,22.03735214,0,1.2,,,,1,1,,0.15,nav,1,2000,2,, 16621,NJBF000092701,801 14TH ST,Hammonton,NJ,39.6324373,-74.83465715,RES1,3001,,17,NE,1997,1997,3102,1,1,1716.15608,1716.15608,3505,NO,21.97,29.02,3,6.64,6112,107.717668,116.158109,125.980917,129.115112,I,Above,Gable,0,5701,,25.49601448,0,1.2,,,,1,1,,0.15,nav,1,1997,1,, 16622,NJBF000092567,499 S EGG HARBOR RD,Hammonton,NJ,39.63031087,-74.79268419,RES1,3001,,NaN,NE,1957,1957,3102,2,1,1563.838243,1563.838243,3504,NO,28.21,40.55,-4,0,6112,108.059464,116.500438,126.337764,129.657249,I,Above,Gable,0,5701,,34.37750129,0,0,,,,1,1,,1,nav,1,1957,2,, 16623,NJBF000096931,263 BASIN RD,Hammonton,NJ,39.66090846,-74.78573505,AGR1,3001,,17,NE,1900,1900,3401,2,1,1423.4124,1423.4124,3507,NO,40.04,53.46,1,1.97,6112,108.029021,116.279525,126.185354,129.413455,I,Above,Flat,0,5701,,46.75021639,0,0,,,,1,1,,0.15,nav,1,1900,2,, 16624,NJBF000093477,,Hammonton,NJ,39.63939751,-74.7408069,RES1,3001,,NaN,NE,1969,0,3102,2,1,2123.794725,2123.794725,3504,NO,38.1,47.12,-4,0,6112,108.490194,116.860459,126.72388,130.261894,I,Above,Hip,0,5701,,42.60824093,0,0,,,,1,1,,0.15,nav,1,1969,2,, 16625,NJBF000092875,540 PLEASANT MILLS RD,Hammonton,NJ,39.63454872,-74.7471618,RES1,3001,,15,NE,1960,1960,3102,1,1,1346.55398,1346.55398,3504,NO,15,25.4,-4,0,6112,108.445706,116.849884,126.702477,130.232623,I,Above,Gable,0,5701,,20.19746706,0,0,,,,1,1,,1,nav,1,1960,1,, 16626,NJBF000092651,283 CHESTNUT ST,Hammonton,NJ,39.63161936,-74.79157891,RES1,3001,,17,NE,1954,1954,3102,2,1,2017.789146,2017.789146,3504,NO,36.07,48.98,-4,0,6112,108.065049,116.49783,126.338024,129.657446,I,Above,Flat,0,5701,,42.52444156,0,0,,,,1,1,,0.35,nav,1,1954,2,, 16627,NJBF000092864,795 CENTRAL AVE,Hammonton,NJ,39.6343656,-74.78513599,RES1,3001,,17,NE,1960,1960,3102,2,1,2152.32337,2152.32337,3504,NO,38.74,52.34,-4,0,6112,108.111576,116.525874,126.373356,129.711555,I,Above,Hip,0,5701,,45.53921572,0,1.2,,,,1,1,,0.35,nav,1,1960,2,, 16628,NJBF000096965,263 BASIN RD,Hammonton,NJ,39.66109648,-74.78561237,AGR1,3001,,17,NE,1900,1900,3401,2,1,1360.875469,1360.875469,3507,NO,34.6,45.93,1,1.55,6112,108.029488,116.278752,126.18508,129.412927,I,Above,Gable,0,5701,,40.26352851,0,0,,,,1,1,,0.03,nav,1,1900,2,, 16629,NJBF000094463,520 FAIRVIEW AVE,Hammonton,NJ,39.6451526,-74.80425048,RES1,3001,,17,NE,1920,1920,3102,2,1,1983.88183,1983.88183,3507,NO,34.21,46.95,1,-0.46,6112,107.922105,116.278227,126.140719,129.354591,I,Above,Flat,0,5701,,40.57941463,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 16630,NJBF000096751,275 RT 206,Hammonton,NJ,39.65974495,-74.78156669,RES1,3001,,17,NE,1960,1960,3102,1,2,531.7735333,531.7735333,3505,NO,24.04,30.46,3,5.49,6110,108.067779,116.322963,126.227724,129.476359,I,Above,Gable,0,5701,,27.24588268,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16631,NJBF000096151,178 RT 206,Hammonton,NJ,39.65502498,-74.78409037,RES1,3001,,17,NE,1955,1955,3102,2,1,848.268591,848.268591,3505,NO,26.23,40.6,3,2.52,6112,108.060578,116.346566,126.239261,129.496823,I,Above,Flat,0,5701,,33.41248985,0,0,,,,1,1,,0.15,nav,1,1955,2,, 16632,NJBF000094186,610 E PLEASANT ST,Hammonton,NJ,39.6437594,-74.7978688,RES1,3001,,17,NE,1988,1988,3102,2,1,2976.322723,2976.322723,3507,NO,29.01,43.27,1,-0.08,6112,107.978417,116.339993,126.202434,129.447346,I,Above,Hip,0,5701,,36.14485727,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 16633,NJBF000093233,668 PLEASANT MILLS RD,Hammonton,NJ,39.63762688,-74.73994708,RES1,3001,,NaN,NE,1969,0,3102,2,1,955.4472252,955.4472252,3504,NO,24.8,31.4,-4,0,6112,108.503383,116.885393,126.744656,130.297689,I,Above,Flat,0,5701,,28.09795116,0,0,,,,1,1,,0.15,nav,1,1969,2,, 16634,NJBF000097053,528 MIDDLE RD,Hammonton,NJ,39.66159117,-74.77072756,AGR1,3001,,17,NE,1939,1939,3401,2,1,21380.97954,21380.97954,3507,NO,36.38,41.89,1,0.44,6112,108.155124,116.392271,126.305316,129.588846,I,Above,Flat,0,5701,,39.13466812,0,0,,,,1,1,,0.15,nav,1,1939,2,, 16635,NJBF000092422,221 LAKE TERR,Hammonton,NJ,39.62789958,-74.7760907,RES1,3001,,18,NE,1975,1975,3102,2,1,3093.64227,3093.64227,3504,NO,37.5,50.73,-4,0,6109,108.206996,116.659602,126.496006,129.906492,I,Above,Flat,0,5701,,44.11608959,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 16636,NJBF000094173,375 BRIDGE AVE,Hammonton,NJ,39.64368998,-74.74328938,RES1,3001,,14,NE,1960,1960,3102,1,2,1590.111402,1590.111402,3504,NO,11.72,25.32,-4,0,6112,108.454526,116.796614,126.670214,130.170207,I,Above,Flat,0,5701,,18.52221243,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16637,NJBF000098014,848 MIDDLE RD,Hammonton,NJ,39.66888999,-74.76114924,AGR1,3002,,16,NE,1934,1934,3401,2,1,1190.304797,1190.304797,3507,NO,38.98,47.92,1,2.55,6103,108.216,116.400492,126.334908,129.623863,I,Above,Flat,0,NaN,,43.44954919,0,0,,,,1,1,,0.03,nav,1,1934,2,, 16638,NJBF000094147,375 BRIDGE AVE,Hammonton,NJ,39.64354562,-74.74321581,RES1,3001,,14,NE,1960,1960,3102,1,2,1581.111146,1581.111146,3504,NO,14.73,22.82,-4,0,6112,108.455628,116.79866,126.671917,130.173116,I,Above,Flat,0,5701,,18.77783809,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16639,NJBF000092876,548 PLEASANT MILLS RD,Hammonton,NJ,39.63455998,-74.74483788,RES1,3001,,16,NE,1965,1965,3102,1,5,1080.442537,1080.442537,3504,NO,17.06,27.9,-4,0,6112,108.46703,116.870677,126.723221,130.266234,I,Above,Flat,0,5701,,22.48217577,0,0,,,,1,1,,0.03,nav,1,1965,1,, 16640,NJBF000091562,650 9TH ST,Hammonton,NJ,39.61011563,-74.79325246,RES1,3001,,17,NE,1950,1950,3101,1,2,665.5370345,665.5370345,3507,NO,17.58,31.05,1,-0.28,6112,108.109538,116.672229,126.473142,129.86986,I,Above,Flat,0,5701,,24.31808697,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16641,NJBF000096771,275 RT 206,Hammonton,NJ,39.65985398,-74.78134737,RES1,3001,,17,NE,1960,1960,3102,1,2,1015.952903,1015.952903,3505,NO,22.26,30.69,3,5.04,6106,108.069317,116.323689,126.228797,129.477851,I,Above,Gable,0,5701,,26.47399811,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16642,NJBF000093195,668 PLEASANT MILLS RD,Hammonton,NJ,39.63734215,-74.7402369,RES1,3001,,NaN,NE,1969,0,3102,2,1,1022.377017,1022.377017,3504,NO,30.17,39.64,-4,0,6112,108.501522,116.885519,126.744144,130.297187,I,Above,Flat,0,5701,,34.90544201,0,0,,,,1,1,,0.15,nav,1,1969,2,, 16643,NJBF000097801,234 OAK RD,Hammonton,NJ,39.66660898,-74.80296786,RES1,3001,,17,NE,1900,1900,3102,2,1,582.9851582,582.9851582,3505,NO,40.4,49.2,3,5.36,6112,107.869152,116.096798,126.007255,129.153224,I,Above,Gable,0,5701,,44.80080157,0,1.2,,,,1,1,,0.35,nav,1,1900,2,, 16644,NJBF000095505,726 LAUREL AVE,Hammonton,NJ,39.65047531,-74.75697788,AGR1,3002,,17,NE,1971,1971,3401,2,1,510.1431224,510.1431224,3507,NO,23.13,37.78,1,0.51,6112,108.309961,116.611971,126.500958,129.896091,I,Above,Flat,0,5701,,30.45686829,0,0,,,,1,1,,0.15,nav,1,1971,2,, 16645,NJBF000092789,548 PLEASANT MILLS RD,Hammonton,NJ,39.63368846,-74.74338554,RES1,3001,,16,NE,1965,1965,3102,1,5,1473.059482,1473.059482,3504,NO,17.17,30.17,-4,0,6112,108.482938,116.892161,126.742678,130.298768,I,Above,Gable,0,5701,,23.6689765,0,0,,,,1,1,,1,nav,1,1965,1,, 16646,NJBF000094557,525 FAIRVIEW AVE,Hammonton,NJ,39.64552712,-74.80462593,RES1,3001,,17,NE,1958,1958,3102,1,1,2802.705888,2802.705888,3507,NO,16.2,24.81,1,2.75,6112,107.917967,116.272052,126.135135,129.346194,I,Above,Gable,0,5701,,20.50163604,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 16647,NJBF000098384,618 PINE RD,Hammonton,NJ,39.67509024,-74.78142141,AGR1,3002,331,NaN,NE,1960,1960,3401,1,1,10609.75391,10609.75391,3507,NO,13.94,24.58,1,0.62,6112,108.021552,116.181013,126.123971,129.315049,I,Above,Flat,0,5701,,19.26385304,0,0,,,,1,1,,0.35,nav,1,1960,1,, 16648,NJBF000091116,860 8TH ST,Hammonton,NJ,39.60075295,-74.79261245,RES1,3001,,17,NE,1970,1970,3101,2,1,953.8311478,953.8311478,3505,NO,27.81,37.31,3,1.03,6112,108.139416,116.758227,126.5442,129.981299,I,Above,Gable,0,5701,,32.55996949,0,0,,,,1,1,,0.35,nav,1,1970,2,, 16649,NJBF000091249,857 8TH ST,Hammonton,NJ,39.6024985,-74.79190143,RES1,3001,,17,NE,1965,1965,3101,2,1,1360.949047,1360.949047,3505,NO,35.52,44.75,3,4.91,6112,108.140797,116.749318,126.538104,129.972282,I,Above,Gable,0,5701,,40.13544325,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 16650,NJBF000091452,970 12TH ST,Hammonton,NJ,39.60602044,-74.82772696,AGR1,3001,,NaN,NE,1969,0,3401,1,1,1639.159369,1639.159369,3507,NO,12.28,24.44,1,1.25,6112,107.843726,116.426311,126.211891,129.450966,I,Above,Gable,0,5701,,18.35988543,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16651,NJBF000091469,979 11TH ST,Hammonton,NJ,39.60602044,-74.82772696,AGR1,3001,,NaN,NE,1969,0,3401,1,1,730.8856553,730.8856553,3507,NO,16.26,24.9,1,0.02,6112,107.843726,116.426311,126.211891,129.450966,I,Above,Gable,0,5701,,20.57949833,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16652,NJBF000091470,979 11TH ST,Hammonton,NJ,39.60602044,-74.82772696,AGR1,3001,,NaN,NE,1969,0,3401,3,1,3489.661539,3489.661539,3507,NO,34.08,40.21,1,-0.57,6112,107.843726,116.426311,126.211891,129.450966,I,Above,Gable,0,5701,,37.14562242,0,0,,,,1,1,,0.03,nav,1,1969,3,, 16653,NJBF000091472,979 11TH ST,Hammonton,NJ,39.60602044,-74.82772696,AGR1,3001,,NaN,NE,1969,0,3401,1,1,1733.188197,1733.188197,3507,NO,14.22,26.52,1,2.59,6112,107.843726,116.426311,126.211891,129.450966,I,Above,Gable,0,5701,,20.37052183,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16654,NJBF000091479,979 11TH ST,Hammonton,NJ,39.60602044,-74.82772696,AGR1,3001,,NaN,NE,1969,0,3401,3,1,2836.328185,2836.328185,3507,NO,50.7,63.31,1,0.68,6112,107.843726,116.426311,126.211891,129.450966,I,Above,Gable,0,5701,,57.00248751,0,0,,,,1,1,,0.03,nav,1,1969,3,, 16655,NJBF000091515,813 8TH ST,Hammonton,NJ,39.60878341,-74.7856624,RES1,3001,,17,NE,1970,1991,3101,2,1,1485.016364,1485.016364,3507,NO,29.02,38.05,1,0.13,6112,108.176735,116.748204,126.548014,129.991131,I,Above,Gable,0,5701,,33.53451948,0,0,,,,1,1,,0.35,nav,1,1970,2,, 16656,NJBF000091527,850 GIORDANO LN,Hammonton,NJ,39.60858226,-74.78540314,RES1,3001,,17,NE,1970,1970,3101,1,1,1438.489492,1438.489492,3507,NO,19.22,29.09,1,2.69,6112,108.179455,116.75218,126.551681,129.997067,I,Above,Flat,0,5701,,24.15617251,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16657,NJBF000091534,848 GIORDANO LN,Hammonton,NJ,39.60878341,-74.7856624,RES1,3001,,17,NE,1970,1970,3101,1,1,1471.453644,1471.453644,3507,NO,20.31,35.18,1,1.97,6112,108.176735,116.748204,126.548014,129.991131,I,Above,Gable,0,5701,,27.74791449,0,0,,,,1,1,,0.35,nav,1,1970,1,, 16658,NJBF000091536,851 GIORDANO LN,Hammonton,NJ,39.60891048,-74.78501273,RES1,3001,,17,NE,1974,1974,3101,1,1,1424.919593,1424.919593,3507,NO,16.95,23.53,1,1.62,6112,108.181894,116.752655,126.552757,129.998916,I,Above,Gable,0,5701,,20.24098607,0,0,,,,1,1,,0.35,nav,1,1974,1,, 16659,NJBF000091537,846 GIORDANO LN,Hammonton,NJ,39.60892872,-74.78586675,RES1,3001,,17,NE,1975,1975,3101,1,1,1180.658329,1180.658329,3507,NO,13.58,19.51,1,-0.69,6109,108.174618,116.745172,126.545204,129.986584,I,Above,Gable,0,5701,,16.54672361,0,0,,,,1,1,,0.03,nav,1,1975,1,, 16660,NJBF000091541,847 GIORDANO LN,Hammonton,NJ,39.60906985,-74.78522358,RES1,3001,,17,NE,1965,1965,3101,1,1,1770.013857,1770.013857,3507,NO,17.58,30.55,1,-0.55,6112,108.179686,116.749446,126.549795,129.994119,I,Above,Gable,0,5701,,24.06390184,0,0,,,,1,1,,0.35,nav,1,1965,1,, 16661,NJBF000091543,721 8TH ST,Hammonton,NJ,39.60927501,-74.78426478,RES1,3001,,17,NE,1968,1968,3101,1,1,1978.414203,1978.414203,3507,NO,18.07,26.11,1,-0.41,6112,108.187273,116.755875,126.556686,130.00543,I,Above,Gable,0,5701,,22.08788768,0,0,,,,1,1,,0.35,nav,1,1968,1,, 16662,NJBF000091542,844 GIORDANO LN,Hammonton,NJ,39.60927274,-74.78636734,RES1,3001,,17,NE,1974,1974,3101,1,1,3021.428783,3021.428783,3507,NO,12.1,23.16,1,-0.69,6112,108.169486,116.737891,126.538442,129.975646,I,Above,Hip,0,5701,,17.62904886,0,1.1,,,,1,1,,0.35,nav,1,1974,1,, 16663,NJBF000091545,721 8TH ST,Hammonton,NJ,39.60934647,-74.78445094,RES1,3001,,17,NE,1968,1968,3101,1,1,554.4520201,554.4520201,3507,NO,13.57,27.65,1,0.89,6112,108.185508,116.753657,126.554567,130.001985,I,Above,Gable,0,5701,,20.60885019,0,0,,,,1,1,,0.35,nav,1,1968,1,, 16664,NJBF000091548,970 12TH ST,Hammonton,NJ,39.60944398,-74.83176074,AGR1,3001,,NaN,NE,1969,0,3401,1,1,4027.716289,4027.716289,3507,NO,13.86,19.36,1,2.53,6112,107.80334,116.367114,126.156037,129.366913,I,Above,Flat,0,5701,,16.60767019,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16665,NJBF000091547,842 GIORDANO LN,Hammonton,NJ,39.60943862,-74.78665347,RES1,3001,,17,NE,1974,1974,3101,2,1,2463.097286,2463.097286,3507,NO,29.11,39.89,1,-0.94,6112,108.166634,116.733999,126.534793,129.969745,I,Above,Gable,0,5701,,34.50295216,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 16666,NJBF000091551,713 8TH ST,Hammonton,NJ,39.60954083,-74.78395287,RES1,3001,,17,NE,1978,1978,3101,2,1,1237.83542,1237.83542,3507,NO,25.95,38.91,1,0.72,6112,108.189219,116.756222,126.557522,130.00686,I,Above,Gable,0,5701,,32.42631845,0,0,,,,1,1,,0.35,nav,1,1978,2,, 16667,NJBF000091550,843 GIORDANO LN,Hammonton,NJ,39.60953289,-74.7858769,RES1,3001,,17,NE,1974,1974,3101,2,1,2249.829567,2249.829567,3507,NO,34.68,42.95,1,0.76,6112,108.172941,116.739807,126.540861,129.979663,I,Above,Gable,0,5701,,38.8118796,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 16668,NJBF000091552,713 8TH ST,Hammonton,NJ,39.60956585,-74.78374345,RES1,3001,,17,NE,1978,1978,3101,2,1,1319.27282,1319.27282,3507,NO,30.95,43.82,1,-0.77,6112,108.190937,116.757806,126.559173,130.009563,I,Above,Gable,0,5701,,37.38524773,0,0,,,,1,1,,0.35,nav,1,1978,2,, 16669,NJBF000091554,841 GIORDANO LN,Hammonton,NJ,39.6097132,-74.78614436,RES1,3001,,17,NE,1974,1974,3101,2,1,1828.163902,1828.163902,3507,NO,34.81,42.88,1,0.88,6112,108.17021,116.735952,126.537277,129.973867,I,Above,Gable,0,5701,,38.84288523,0,0,,,,1,1,,0.35,nav,1,1974,2,, 16670,NJBF000091558,709 8TH ST,Hammonton,NJ,39.60979634,-74.7835319,RES1,3001,,17,NE,1974,1974,3101,1,1,1334.784224,1334.784224,3507,NO,13.94,20.94,1,1.82,6112,108.192123,116.757599,126.559384,130.00996,I,Above,Gable,0,5701,,17.43943797,0,0,,,,1,1,,0.35,nav,1,1974,1,, 16671,NJBF000091566,846 S 1ST RD,Hammonton,NJ,39.61033188,-74.78436799,RES1,3001,,17,NE,1967,1967,3101,2,1,4435.669519,4435.669519,3507,NO,28.09,37.46,1,-0.54,6112,108.183611,116.745723,126.548329,129.992036,I,Above,Gable,0,5701,,32.77362132,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 16672,NJBF000091571,971 12TH ST,Hammonton,NJ,39.61060178,-74.83515217,AGR1,3001,,NaN,NE,1969,0,3401,1,1,2205.268012,2205.268012,3507,NO,20.84,26.7,1,2,6112,107.774201,116.331619,126.120833,129.313525,I,Above,Flat,0,5701,,23.77117607,0,0,,,,1,1,,0.15,nav,1,1969,1,, 16673,NJBF000091572,971 12TH ST,Hammonton,NJ,39.61067736,-74.83543726,AGR1,3001,,NaN,NE,1969,0,3401,1,1,3262.79519,3262.79519,3507,NO,20.31,32.24,1,2.8,6112,107.771819,116.328828,126.118031,129.309277,I,Above,Flat,0,5701,,26.2773469,0,0,,,,1,1,,0.15,nav,1,1969,1,, 16674,NJBF000091574,971 12TH ST,Hammonton,NJ,39.61073165,-74.83530473,AGR1,3001,,NaN,NE,1969,0,3401,1,1,1403.611494,1403.611494,3507,NO,19.67,25.42,1,1.04,6112,107.772677,116.3294,126.118734,129.310403,I,Above,Flat,0,5701,,22.54289793,0,0,,,,1,1,,0.15,nav,1,1969,1,, 16675,NJBF000091577,650 9TH ST,Hammonton,NJ,39.61078658,-74.79406364,RES1,3001,,17,NE,1950,1950,3101,1,2,1159.326899,1159.326899,3507,NO,14.57,23.62,1,-0.55,6112,108.101005,116.659619,126.461502,129.851296,I,Above,Gable,0,5701,,19.09170583,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16676,NJBF000091581,977 12TH ST,Hammonton,NJ,39.6108742,-74.83320979,AGR1,3001,649,NaN,NE,1960,1960,3401,1,1,3493.528968,3493.528968,3507,NO,16.62,26.15,1,2.98,6112,107.788326,116.344379,126.134754,129.335192,I,Above,Gable,0,5701,,21.38661033,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16677,NJBF000091584,622 9TH ST,Hammonton,NJ,39.61106912,-74.79377737,RES1,3001,,17,NE,1972,1972,3101,1,1,1345.44173,1345.44173,3507,NO,17.87,28.02,1,2.68,6112,108.102642,116.659587,126.461994,129.85219,I,Above,Gable,0,5701,,22.94545874,0,0,,,,1,1,,0.35,nav,1,1972,1,, 16678,NJBF000091589,975 12TH ST,Hammonton,NJ,39.61129546,-74.83296822,AGR1,3001,,17,NE,1976,1976,3401,1,1,3882.220059,3882.220059,3507,NO,16.2,29.21,1,1.29,6112,107.789037,116.342851,126.133919,129.334241,I,Above,Gable,0,5701,,22.70563226,0,0,,,,1,1,,0.15,nav,1,1976,1,, 16679,NJBF000091591,831 S 1ST RD,Hammonton,NJ,39.61131488,-74.78370908,RES1,3001,,17,NE,1968,1968,3101,1,1,2960.340631,2960.340631,3507,NO,14.96,25.8,1,0.07,6112,108.186606,116.742735,126.547118,129.990261,I,Above,Gable,0,5701,,20.3796281,0,0,,,,1,1,,0.35,nav,1,1968,1,, 16680,NJBF000091596,970 12TH ST,Hammonton,NJ,39.61143405,-74.83035693,AGR1,3001,,NaN,NE,1969,0,3401,1,1,4931.054703,4931.054703,3507,NO,17.73,30.05,1,2.93,6112,107.808749,116.361902,126.154197,129.365659,I,Above,Flat,0,5701,,23.89090698,0,0,,,,1,1,,0.15,nav,1,1969,1,, 16681,NJBF000091603,958 12TH ST,Hammonton,NJ,39.61163551,-74.82994103,AGR1,3001,,NaN,NE,1969,0,3401,1,1,5348.841982,5348.841982,3507,NO,15.26,28.78,1,0.61,6112,107.81141,116.363487,126.156236,129.368966,I,Above,Flat,0,5701,,22.02014252,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16682,NJBF000091604,659 9TH ST,Hammonton,NJ,39.61165387,-74.79394847,RES1,3001,,17,NE,1966,1966,3101,1,1,1821.381426,1821.381426,3507,NO,18.36,30.87,1,1.81,6112,108.099665,116.653097,126.456453,129.843454,I,Above,Gable,0,5701,,24.61137675,0,1.1,,,,1,1,,0.15,nav,1,1966,1,, 16683,NJBF000091608,958 12TH ST,Hammonton,NJ,39.61176607,-74.83036191,AGR1,3001,,NaN,NE,1969,0,3401,1,1,10558.07972,10558.07972,3507,NO,18.76,24.02,1,1.02,6112,107.807808,116.359172,126.151944,129.362431,I,Above,Gable,0,5701,,21.38813722,0,0,,,,1,1,,0.15,nav,1,1969,1,, 16684,NJBF000091617,165 8TH ST,Hammonton,NJ,39.61195565,-74.78340203,RES1,3001,,17,NE,1930,1930,3101,1,1,1108.927694,1108.927694,3507,NO,14.07,20.89,1,-0.43,6112,108.187517,116.739725,126.54526,129.987348,I,Above,Gable,0,5701,,17.48042954,0,1.2,,,,1,1,,0.35,nav,1,1930,1,, 16685,NJBF000091618,618 9TH ST,Hammonton,NJ,39.61207315,-74.79285293,RES1,3001,,17,NE,1900,1900,3101,2,1,1383.24154,1383.24154,3507,NO,31.49,45.55,1,2.44,6112,108.107663,116.658641,126.462908,129.853993,I,Above,Hip,0,5701,,38.51908582,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 16686,NJBF000091620,165 8TH ST,Hammonton,NJ,39.61209833,-74.78308076,RES1,3001,,17,NE,1930,1930,3101,1,1,554.4541836,554.4541836,3507,NO,17.36,28,1,2.48,6112,108.18987,116.741223,126.547047,129.990277,I,Above,Gable,0,5701,,22.67659465,0,1.2,,,,1,1,,0.35,nav,1,1930,1,, 16687,NJBF000091654,137 8TH ST,Hammonton,NJ,39.61313841,-74.78048601,RES1,3001,,17,NE,1920,1920,3101,1,1,2103.587664,2103.587664,3507,NO,21.19,31.94,1,2.87,6112,108.209249,116.754312,126.562273,130.015183,I,Above,Gable,0,5701,,26.56600666,0,0,,,,1,1,,0.35,nav,1,1920,1,, 16688,NJBF000091674,111 8TH ST,Hammonton,NJ,39.61313841,-74.78048601,RES1,3001,,NaN,NE,1920,1970,3101,1,1,2210.081693,2210.081693,3507,NO,10.4,17.2,1,-0.91,6112,108.209249,116.754312,126.562273,130.015183,I,Above,Gable,0,5701,,13.7971393,0,0,,,,1,1,,0.35,nav,1,1920,1,, 16689,NJBF000091682,111 8TH ST,Hammonton,NJ,39.61313841,-74.78048601,RES1,3001,,NaN,NE,1920,1970,3101,1,1,2646.294198,2646.294198,3507,NO,13.44,21.95,1,-0.56,6109,108.209249,116.754312,126.562273,130.015183,I,Above,Gable,0,5701,,17.69916881,0,0,,,,1,1,,0.03,nav,1,1920,1,, 16690,NJBF000091699,948 12TH ST,Hammonton,NJ,39.61420727,-74.82573187,COM4,3001,,NaN,ME,1969,0,3401,3,1,14539.65826,14539.65826,3507,NO,33.64,38.7,1,1.94,6112,107.837066,116.375198,126.173369,129.397322,I,Above,Flat,0,NaN,,36.16940568,0,0,,,,1,1,,1,nav,1,1969,3,, 16691,NJBF000091701,101 8TH ST,Hammonton,NJ,39.61422075,-74.77834161,RES1,3001,,17,NE,1972,1972,3101,1,1,1737.045297,1737.045297,3507,NO,12.13,20.71,1,0.81,6112,108.224754,116.763167,126.573296,130.033186,I,Above,Gable,0,5701,,16.41706578,0,0,,,,1,1,,0.35,nav,1,1972,1,, 16692,NJBF000091713,101 8TH ST,Hammonton,NJ,39.61443287,-74.77850507,RES1,3001,,17,NE,1972,1972,3101,1,1,605.8316798,605.8316798,3507,NO,17.35,22.52,1,2.09,6112,108.222788,116.759875,126.570369,130.028427,I,Above,Gable,0,5701,,19.93330646,0,0,,,,1,1,,0.35,nav,1,1972,1,, 16693,NJBF000091711,111 8TH ST,Hammonton,NJ,39.61313841,-74.78048601,RES1,3001,,NaN,NE,1920,1970,3101,1,1,14620.02292,14620.02292,3507,NO,19.05,28.37,1,1.6,6112,108.209249,116.754312,126.562273,130.015183,I,Above,Gable,0,5701,,23.7097613,0,0,,,,1,1,,0.35,nav,1,1920,1,, 16694,NJBF000091730,190 S 2ND RD,Hammonton,NJ,39.61489849,-74.82077745,COM4,3001,959,NaN,ME,1958,1958,3401,1,1,4041.213866,4041.213866,3507,NO,18.59,33.47,1,2.44,6112,107.873986,116.40822,126.209309,129.45353,I,Above,Flat,0,5701,,26.02929236,0,0,,,,1,1,,0.15,nav,1,1958,1,, 16695,NJBF000091863,992 14TH ST,Hammonton,NJ,39.6221943,-74.84545236,RES1,3001,,17,NE,1952,1965,3102,1,1,1112.770687,1112.770687,3505,NO,10.32,22.38,3,-0.26,6112,107.66428,116.161565,125.962441,129.082162,I,Above,Gable,0,5701,,16.35090414,0,0,,,,1,1,,0.35,nav,1,1952,1,, 16696,NJBF000091991,975 14TH ST,Hammonton,NJ,39.6221943,-74.84545236,RES1,3001,,17,NE,1952,1960,3102,1,1,1426.885163,1426.885163,3505,NO,20.9,35.75,3,5.33,6112,107.66428,116.161565,125.962441,129.082162,I,Above,Gable,0,5701,,28.32346532,0,0,,,,1,1,,0.35,nav,1,1952,1,, 16697,NJBF000092063,969 14TH ST,Hammonton,NJ,39.62195001,-74.84562467,RES1,3001,,17,NE,1920,1920,3102,2,1,1361.942126,1361.942126,3505,NO,39.25,47.58,3,2.87,6112,107.663659,116.162234,125.962663,129.082332,I,Above,Gable,0,5701,,43.41127706,0,0,,,,1,1,,0.35,nav,1,1920,2,, 16698,NJBF000092082,967 14TH ST,Hammonton,NJ,39.6221943,-74.84545236,RES1,3001,,17,NE,1952,1952,3102,1,1,1603.291944,1603.291944,3505,NO,23.19,32.82,3,7.75,6112,107.66428,116.161565,125.962441,129.082162,I,Above,Gable,0,5701,,28.00261585,0,0,,,,1,1,,0.35,nav,1,1952,1,, 16699,NJBF000092198,502 BOYER AVE,Hammonton,NJ,39.62454457,-74.76528714,RES1,3001,,17,NE,1982,1982,3102,2,1,2206.205191,2206.205191,3504,NO,28.69,37.59,-4,0,6112,108.310639,116.783158,126.614087,130.097074,I,Above,Gable,0,5701,,33.14005196,0,1.2,,,,1,1,,0.35,nav,1,1982,2,, 16700,NJBF000092211,575 N 2ND RD,Hammonton,NJ,39.62591617,-74.83514049,RES1,3001,959,18,NE,1987,1996,3102,2,1,2533.383837,2533.383837,3505,NO,23.94,32.16,3,2.34,6112,107.732171,116.207881,126.01985,129.170248,I,Above,Gable,0,5701,,28.04745956,0,0,,,,1,1,,0.35,nav,1,1987,2,, 16701,NJBF000092217,575 N 2ND RD,Hammonton,NJ,39.62591617,-74.83514049,RES1,3001,959,18,NE,1987,1996,3102,2,1,1517.995526,1517.995526,3505,NO,25.12,37.65,3,3.62,6112,107.732171,116.207881,126.01985,129.170248,I,Above,Gable,0,5701,,31.38330166,0,0,,,,1,1,,0.35,nav,1,1987,2,, 16702,NJBF000092215,37 LAKESHORE DR,Hammonton,NJ,39.62483607,-74.78059435,RES1,3001,,17,NE,1987,1987,3102,2,1,2391.356935,2391.356935,3504,NO,23.63,36.03,-4,0,6112,108.176736,116.649165,126.478782,129.880007,I,Above,Gable,0,5701,,29.8299094,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 16703,NJBF000092226,47 LAKESHORE DR,Hammonton,NJ,39.62500693,-74.78072074,RES1,3001,,17,NE,1981,1981,3102,2,1,1815.562646,1815.562646,3504,NO,30.98,36.94,-4,0,6112,108.17518,116.646563,126.476487,129.876319,I,Above,Gable,0,5701,,33.95804095,0,0,,,,1,1,,0.35,nav,1,1981,2,, 16704,NJBF000092231,470 BOYER AVE,Hammonton,NJ,39.62513578,-74.76492991,RES1,3001,,17,NE,1955,1955,3102,1,1,1031.373988,1031.373988,3504,NO,18.52,28.99,-4,0,6109,108.312168,116.780845,126.612988,130.09502,I,Above,Gable,0,5701,,23.75614365,0,0,,,,1,1,,0.03,nav,1,1955,1,, 16705,NJBF000092235,69 LAKESHORE DR,Hammonton,NJ,39.62521285,-74.78073285,RES1,3001,,17,NE,1982,1982,3102,2,1,2197.479074,2197.479074,3504,NO,29.48,39.52,-4,0,6112,108.174512,116.644615,126.474935,129.873807,I,Above,Gable,0,5701,,34.50234371,0,1.1,,,,1,1,,0.35,nav,1,1982,2,, 16706,NJBF000092253,76 SHERRY LN,Hammonton,NJ,39.6221943,-74.84545236,RES1,3001,,17,NE,1952,1976,3102,1,1,3176.559928,3176.559928,3505,NO,17.71,29.76,3,7.12,6112,107.66428,116.161565,125.962441,129.082162,I,Above,Gable,0,5701,,23.73551397,0,0,,,,1,1,,0.35,nav,1,1952,1,, 16707,NJBF000092255,76 SHERRY LN,Hammonton,NJ,39.6221943,-74.84545236,RES1,3001,,17,NE,1952,1976,3102,1,1,1017.806571,1017.806571,3505,NO,17.88,27,3,1.15,6112,107.66428,116.161565,125.962441,129.082162,I,Above,Gable,0,5701,,22.43771934,0,0,,,,1,1,,0.35,nav,1,1952,1,, 16708,NJBF000092263,73 LAKESHORE DR,Hammonton,NJ,39.62571891,-74.78092168,RES1,3001,,17,NE,1986,1986,3102,2,1,1785.509545,1785.509545,3504,NO,36.74,46.93,-4,0,6112,108.171505,116.638488,126.469753,129.865461,I,Above,Gable,0,5701,,41.83225587,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 16709,NJBF000092272,581 N 2ND RD,Hammonton,NJ,39.62591617,-74.83514049,RES1,3001,,17,NE,1987,1987,3102,2,1,2665.701154,2665.701154,3505,NO,45.07,56.64,3,8.6,6109,107.732171,116.207881,126.01985,129.170248,I,Above,Gable,0,5701,,50.85524737,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 16710,NJBF000092266,471 BOYER AVE,Hammonton,NJ,39.62578982,-74.76541534,RES1,3001,,17,NE,1990,1990,3102,1,1,2800.411969,2800.411969,3504,NO,14.89,25.36,-4,0,6112,108.306077,116.770599,126.604031,130.080247,I,Above,Gable,0,5701,,20.12533939,0,1.2,,,,1,1,,0.35,nav,1,1990,1,, 16711,NJBF000092273,75 LAKESHORE DR,Hammonton,NJ,39.62591748,-74.78098646,RES1,3001,,17,NE,1983,1983,3102,2,1,2130.60728,2130.60728,3504,NO,26.95,37.78,-4,0,6112,108.170413,116.636174,126.467812,129.862333,I,Above,Gable,0,5701,,32.36447168,0,1.1,,,,1,1,,0.35,nav,1,1983,2,, 16712,NJBF000092292,75 SHERRY LN,Hammonton,NJ,39.6221943,-74.84545236,RES1,3001,,19,NE,1952,1990,3102,2,1,3257.020287,3257.020287,3505,NO,36.59,45.27,3,0.47,6112,107.66428,116.161565,125.962441,129.082162,I,Above,Gable,0,5701,,40.92927448,0,1.2,,,,1,1,,0.35,nav,1,1952,2,, 16713,NJBF000092293,585 N 2ND RD,Hammonton,NJ,39.626162,-74.83550972,RES1,3001,,17,NE,1992,1992,3102,2,1,2385.543874,2385.543874,3505,NO,28.54,34.63,3,-2.06,6109,107.728653,116.203123,126.015288,129.163532,I,Above,Hip,0,5701,,31.58505703,0,1.2,,,,1,1,,0.03,nav,1,1992,2,, 16714,NJBF000092286,204 LAKESHORE DR,Hammonton,NJ,39.62610979,-74.77740839,RES1,3001,,17,NE,2001,2001,3102,2,1,1716.682583,1716.682583,3504,NO,25.35,37,-4,0,6112,108.200583,116.664628,126.497271,129.909101,I,Above,Gable,0,5701,,31.17432474,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 16715,NJBF000092287,200 LAKESHORE DR,Hammonton,NJ,39.626114,-74.77764508,RES1,3001,,17,NE,1991,1991,3102,2,1,1649.810231,1649.810231,3504,NO,22.73,33.58,-4,0,6112,108.198531,116.662585,126.495197,129.905799,I,Above,Gable,0,5701,,28.15234948,0,1.1,,,,1,1,,0.35,nav,1,1991,2,, 16716,NJBF000092289,77 LAKESHORE DR,Hammonton,NJ,39.62615065,-74.78100728,RES1,3001,,17,NE,1973,1973,3102,1,1,1588.743462,1588.743462,3504,NO,11.42,17.94,-4,0,6112,108.169589,116.633899,126.465987,129.859384,I,Above,Hip,0,5701,,14.68020781,0,1.1,,,,1,1,,0.35,nav,1,1973,1,, 16717,NJBF000092295,462 BOYER AVE,Hammonton,NJ,39.62618642,-74.76411223,RES1,3001,,17,NE,1964,1964,3102,1,1,1144.768478,1144.768478,3504,NO,18.79,25.25,-4,0,6112,108.316509,116.778324,126.612652,130.093948,I,Above,Gable,0,5701,,22.02258615,0,0,,,,1,1,,0.35,nav,1,1964,1,, 16718,NJBF000092297,12 QUEENS LN,Hammonton,NJ,39.62620654,-74.77679539,RES1,3001,,17,NE,1979,1979,3102,2,1,3026.265366,3026.265366,3504,NO,21.32,28.92,-4,0,6112,108.205598,116.668949,126.501881,129.916412,I,Above,Gable,0,5701,,25.12219467,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 16719,NJBF000092305,170 LAKESHORE DR,Hammonton,NJ,39.62624129,-74.77817768,RES1,3001,,17,NE,1965,1965,3102,1,1,1922.181363,1922.181363,3504,NO,14.43,25.7,-4,0,6112,108.193595,116.656931,126.489702,129.897021,I,Above,Gable,0,5701,,20.06249607,0,0,,,,1,1,,0.35,nav,1,1965,1,, 16720,NJBF000092310,83 LAKESHORE DR,Hammonton,NJ,39.62631234,-74.78104967,RES1,3001,,17,NE,1965,1965,3102,2,1,1422.97824,1422.97824,3504,NO,22.59,36.98,-4,0,6112,108.168778,116.632093,126.464487,129.856966,I,Above,Gable,0,5701,,29.78615466,0,0,,,,1,1,,0.35,nav,1,1965,2,, 16721,NJBF000092317,587 N 2ND RD,Hammonton,NJ,39.62641909,-74.8358202,RES1,3001,,17,NE,1989,1989,3102,2,1,1379.378115,1379.378115,3505,NO,25.13,30.97,3,-1.4,6109,107.725564,116.198726,126.011134,129.157438,I,Above,Gable,0,5701,,28.04928553,0,0,,,,1,1,,0.03,nav,1,1989,2,, 16722,NJBF000092318,97 LAKESHORE DR,Hammonton,NJ,39.62642203,-74.78136533,RES1,3001,,17,NE,1975,1975,3102,1,1,518.5992662,518.5992662,3504,NO,18.56,32.57,-4,0,6112,108.165783,116.628463,126.46101,129.851428,I,Above,Gable,0,5701,,25.56254639,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 16723,NJBF000092319,150 LAKESHORE DR,Hammonton,NJ,39.62645705,-74.77847373,RES1,3001,,17,NE,1984,1984,3102,1,1,2447.30638,2447.30638,3504,NO,16.8,22.95,-4,0,6112,108.190455,116.652483,126.485628,129.890482,I,Above,Gable,0,5701,,19.87420925,0,1.2,,,,1,1,,0.35,nav,1,1984,1,, 16724,NJBF000092321,11 QUEENS LN,Hammonton,NJ,39.62646596,-74.77632174,RES1,3001,,17,NE,1965,1965,3102,2,1,1786.488603,1786.488603,3504,NO,23.8,29.4,-4,0,6112,108.208965,116.670622,126.50414,129.919925,I,Above,Gable,0,5701,,26.59962603,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 16725,NJBF000092328,589 N 2ND RD,Hammonton,NJ,39.62658133,-74.83609764,RES1,3001,,17,NE,1992,1992,3102,2,1,2210.10779,2210.10779,3505,NO,32.92,42.71,3,-0.83,6109,107.722986,116.195343,126.00786,129.152618,I,Above,Gable,0,5701,,37.815194,0,1.2,,,,1,1,,0.03,nav,1,1992,2,, 16726,NJBF000092330,914 14TH ST,Hammonton,NJ,39.62660803,-74.83706417,RES1,3001,,17,NE,1989,1989,3102,2,1,2000.739691,2000.739691,3505,NO,40.54,48.77,3,8.16,6109,107.715527,116.187962,126.000007,129.140882,I,Above,Gable,0,5701,,44.65417051,0,0,,,,1,1,,0.03,nav,1,1989,2,, 16727,NJBF000092338,914 14TH ST,Hammonton,NJ,39.62667126,-74.83686831,RES1,3001,,17,NE,1989,1989,3102,2,1,1161.277071,1161.277071,3505,NO,34.05,40.04,3,1.2,6109,107.716849,116.188902,126.001151,129.142625,I,Above,Flat,0,5701,,37.04494465,0,0,,,,1,1,,0.03,nav,1,1989,2,, 16728,NJBF000092323,465 BOYER AVE,Hammonton,NJ,39.62647211,-74.76520848,RES1,3001,,13,NE,1975,1975,3102,1,1,5011.451983,5011.451983,3504,NO,14.53,23.3,-4,0,6112,108.306021,116.766128,126.60096,130.074957,I,Above,Flat,0,5701,,18.91085282,0,0,,,,1,1,,0.35,nav,1,1975,1,, 16729,NJBF000092329,140 LAKESHORE DR,Hammonton,NJ,39.62660496,-74.77876593,RES1,3001,,17,NE,1986,1986,3102,2,1,2046.230754,2046.230754,3504,NO,26.21,32.25,-4,0,6112,108.187539,116.648685,126.48207,129.884786,I,Above,Gable,0,5701,,29.22897361,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 16730,NJBF000092332,214 LAKESHORE DR,Hammonton,NJ,39.62662566,-74.77608496,RES1,3001,,17,NE,1977,1977,3102,2,1,2187.786804,2187.786804,3504,NO,31.39,39.02,-4,0,6112,108.21057,116.671186,126.505058,129.921334,I,Above,Gable,0,5701,,35.20643183,0,1.2,,,,1,1,,0.35,nav,1,1977,2,, 16731,NJBF000092334,173 LAKESHORE DR,Hammonton,NJ,39.626642,-74.77751023,RES1,3001,,17,NE,1984,1984,3102,2,1,2794.60468,2794.60468,3504,NO,32.98,40.11,-4,0,6112,108.198237,116.658964,126.492637,129.901566,I,Above,Gable,0,5701,,36.54565269,0,1.2,,,,1,1,,0.03,nav,1,1984,2,, 16732,NJBF000092342,136 LAKESHORE DR,Hammonton,NJ,39.62671942,-74.77895121,RES1,3001,,17,NE,2005,2005,3102,2,1,1961.935933,1961.935933,3504,NO,30.13,41.15,-4,0,6112,108.185636,116.646098,126.479674,129.880949,I,Above,Gable,0,5701,,35.63957398,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16733,NJBF000092347,169 LAKESHORE DR,Hammonton,NJ,39.6267741,-74.77777171,RES1,3001,,17,NE,1984,1984,3102,2,1,1716.695175,1716.695175,3504,NO,26.11,34.06,-4,0,6112,108.195618,116.655557,126.489446,129.896453,I,Above,Gable,0,5701,,30.08479035,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 16734,NJBF000092345,97 LAKESHORE DR,Hammonton,NJ,39.62676866,-74.78127502,RES1,3001,,17,NE,1975,1975,3102,1,1,2558.078161,2558.078161,3504,NO,17.15,26.88,-4,0,6112,108.165595,116.626105,126.459347,129.848708,I,Above,Gable,0,5701,,22.01322143,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 16735,NJBF000092358,550 N 2ND RD,Hammonton,NJ,39.62690083,-74.83465813,RES1,3001,,17,NE,1940,1940,3102,1,1,1709.921995,1709.921995,3505,NO,19.67,26.41,3,6.74,6109,107.733129,116.203435,126.017218,129.166798,I,Above,Gable,0,5701,,23.04194776,0,0,,,,1,1,,0.03,nav,1,1940,1,, 16736,NJBF000092359,908 14TH ST,Hammonton,NJ,39.62690299,-74.83673462,RES1,3001,,17,NE,1986,1986,3102,1,1,1970.688731,1970.688731,3505,NO,15.42,21.23,3,-1.99,6109,107.717219,116.188001,126.000686,129.14205,I,Above,Gable,0,5701,,18.32558373,0,0,,,,1,1,,0.03,nav,1,1986,1,, 16737,NJBF000092356,199 LAKESHORE DR,Hammonton,NJ,39.62687326,-74.77674342,RES1,3001,,17,NE,1994,1994,3102,1,1,4759.439797,4759.439797,3504,NO,18.68,30.43,-4,0,6109,108.204209,116.663372,126.497627,129.909428,I,Above,Hip,0,5701,,24.55613066,0,1.2,,,,1,1,,0.03,nav,1,1994,1,, 16738,NJBF000092361,240 LAKESHORE DR,Hammonton,NJ,39.6269566,-74.77516612,RES1,3001,,17,NE,1988,1988,3102,2,1,1883.423711,1883.423711,3504,NO,38.82,50.03,-4,0,6112,108.217601,116.675997,126.510668,129.930152,I,Above,Gable,0,5701,,44.42303395,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 16739,NJBF000092366,205 LAKESHORE DR,Hammonton,NJ,39.62702857,-74.77634705,RES1,3001,,18,NE,2005,2005,3102,2,1,2299.257865,2299.257865,3504,NO,23.26,37.62,-4,0,6112,108.207195,116.665318,126.499946,129.913063,I,Above,Hip,0,5701,,30.44387535,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 16740,NJBF000092369,149 LAKESHORE DR,Hammonton,NJ,39.62708002,-74.77850499,RES1,3001,,17,NE,1990,1990,3102,2,1,1642.058932,1642.058932,3504,NO,26.02,36.05,-4,0,6112,108.18847,116.646606,126.480972,129.882902,I,Above,Gable,0,5701,,31.03404773,0,0,,,,1,1,,0.35,nav,1,1990,2,, 16741,NJBF000092368,,Hammonton,NJ,39.62707856,-74.78103672,RES1,3001,,NaN,NE,1978,0,3102,2,1,3935.497346,3935.497346,3504,NO,34.4,47.79,-4,0,6112,108.166773,116.625319,126.459213,129.848416,I,Above,Gable,0,5701,,41.09816972,0,0,,,,1,1,,0.35,nav,1,1978,2,, 16742,NJBF000092370,230 LAKESHORE DR,Hammonton,NJ,39.62710987,-74.77563444,RES1,3001,,17,NE,1955,1955,3102,1,1,2759.683836,2759.683836,3504,NO,10.83,24.85,-4,0,6112,108.21313,116.670634,126.505537,129.921929,I,Above,Gable,0,5701,,17.84306573,0,0,,,,1,1,,0.35,nav,1,1955,1,, 16743,NJBF000092372,,Hammonton,NJ,39.62712247,-74.77417111,RES1,3001,,NaN,NE,1969,0,3102,2,1,2624.944991,2624.944991,3504,NO,25.72,32.37,-4,0,6112,108.225763,116.68297,126.518117,129.941958,I,Above,Gable,0,5701,,29.04313316,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16744,NJBF000092378,,Hammonton,NJ,39.62718331,-74.7744041,RES1,3001,,NaN,NE,1969,0,3102,2,1,1600.369265,1600.369265,3504,NO,33.8,43.81,-4,0,6112,108.223575,116.680431,126.515666,129.93803,I,Above,Gable,0,5701,,38.80494068,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16745,NJBF000092393,572 N 2ND RD,Hammonton,NJ,39.62737539,-74.83404585,RES1,3001,,NaN,NE,1969,0,3102,1,1,2010.416566,2010.416566,3505,NO,21.49,32.3,3,8.73,6112,107.736508,116.204115,126.018979,129.169667,I,Above,Gable,0,5701,,26.89282531,0,0,,,,1,1,,0.15,nav,1,1969,1,, 16746,NJBF000092382,213 LAKESHORE DR,Hammonton,NJ,39.6272886,-74.77628006,RES1,3001,,17,NE,1956,1956,3102,1,1,2826.568552,2826.568552,3504,NO,11.36,23.06,-4,0,6109,108.207055,116.663533,126.498689,129.910974,I,Above,Hip,0,5701,,17.21229886,0,0,,,,1,1,,0.03,nav,1,1956,1,, 16747,NJBF000092387,105 LAKESHORE DR,Hammonton,NJ,39.6273318,-74.78053277,RES1,3001,,17,NE,1978,1978,3102,1,1,2937.081152,2937.081152,3504,NO,12,24.47,-4,0,6112,108.170384,116.627274,126.461762,129.852383,I,Above,Gable,0,5701,,18.23490474,0,1.2,,,,1,1,,0.03,nav,1,1978,1,, 16748,NJBF000092385,145 LAKESHORE DR,Hammonton,NJ,39.6273126,-74.77881604,RES1,3001,,17,NE,1966,1966,3102,1,1,3059.509092,3059.509092,3504,NO,11.95,23.11,-4,0,6112,108.185154,116.641884,126.476654,129.875981,I,Above,Gable,0,5701,,17.52832851,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 16749,NJBF000092389,109 LAKESHORE DR,Hammonton,NJ,39.6273457,-74.78025733,RES1,3001,,17,NE,1986,1986,3102,2,1,2915.749776,2915.749776,3504,NO,22.4,27.73,-4,0,6112,108.172708,116.629465,126.464033,129.855975,I,Above,Gable,0,5701,,25.06297677,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 16750,NJBF000092388,,Hammonton,NJ,39.62733976,-74.77470075,RES1,3001,,NaN,NE,1969,0,3102,2,1,2316.716279,2316.716279,3504,NO,29.32,42.08,-4,0,6112,108.220567,116.676479,126.511983,129.932104,I,Above,Hip,0,5701,,35.6978456,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16751,NJBF000092398,113 LAKESHORE DR,Hammonton,NJ,39.62751692,-74.7798462,RES1,3001,,17,NE,1978,1978,3102,1,1,4107.068509,4107.068509,3504,NO,15.98,28.71,-4,0,6112,108.175755,116.631379,126.466362,129.859613,I,Above,Gable,0,5701,,22.34265046,0,1.2,,,,1,1,,0.03,nav,1,1978,1,, 16752,NJBF000092400,119 LAKESHORE DR,Hammonton,NJ,39.62753778,-74.77939191,RES1,3001,,17,NE,1975,1975,3102,2,1,3401.397051,3401.397051,3504,NO,37.23,47.23,-4,0,6112,108.179589,116.635007,126.470116,129.865552,I,Above,Hip,0,5701,,42.22995427,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 16753,NJBF000092403,,Hammonton,NJ,39.62758554,-74.77523614,RES1,3001,,NaN,NE,1969,0,3102,2,1,1453.036486,1453.036486,3504,NO,33.63,40.54,-4,0,6112,108.215255,116.6697,126.505613,129.921877,I,Above,Gable,0,5701,,37.08400551,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16754,NJBF000092401,222 LAKE TERR,Hammonton,NJ,39.62754759,-74.77624121,RES1,3001,,18,NE,1990,1990,3102,2,1,4689.644923,4689.644923,3504,NO,34.54,41,-4,0,6109,108.206675,116.661519,126.497196,129.90851,I,Above,Gable,0,5701,,37.76755658,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 16755,NJBF000092414,225 LAKE TERR,Hammonton,NJ,39.62777762,-74.77564964,RES1,3001,,17,NE,1987,1987,3102,2,1,2022.998709,2022.998709,3504,NO,21.36,32.38,-4,0,6109,108.211144,116.664446,126.500677,129.913958,I,Above,Gable,0,5701,,26.87134864,0,0,,,,1,1,,0.03,nav,1,1987,2,, 16756,NJBF000092416,420 BOYER AVE,Hammonton,NJ,39.62781243,-74.76329154,RES1,3001,629,NaN,NE,1969,0,3102,1,1,15359.07531,15359.07531,3504,NO,14.04,23.19,-4,0,6112,108.319268,116.770473,126.608192,130.085866,I,Above,Hip,0,5701,,18.61382406,0,0,,,,1,1,,1,nav,1,1969,1,, 16757,NJBF000092430,720 S WHITE HORSE PK,Hammonton,NJ,39.6280448,-74.77539109,RES1,3001,,17,NE,1950,1950,3102,1,1,1169.010499,1169.010499,3504,NO,15.37,24.96,-4,0,6109,108.212643,116.664221,126.501028,129.914415,I,Above,Gable,0,5701,,20.16864527,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 16758,NJBF000092446,688 S WHITE HORSE PK,Hammonton,NJ,39.62839141,-74.77506076,RES1,3001,,17,NE,1978,1978,3102,1,1,3106.725717,3106.725717,3504,NO,16.78,28.46,-4,0,6109,108.214538,116.663881,126.501434,129.914925,I,Above,Gable,0,5701,,22.61779948,0,1.2,,,,1,1,,0.03,nav,1,1978,1,, 16759,NJBF000092458,"100 SPORTS DR, 150 SPORTS",Hammonton,NJ,39.62856993,-74.788291,RES1,3001,,NaN,NE,2009,2009,3102,2,1,1308.598947,1308.598947,3504,NO,29.15,35.56,-4,0,6112,108.101115,116.551755,126.386923,129.734242,I,Above,Gable,0,5701,,32.35556825,0,0,,,,1,1,,1,nav,1,2009,2,, 16760,NJBF000092464,420 BOYER AVE,Hammonton,NJ,39.6287053,-74.76272359,RES1,3001,629,NaN,NE,1969,0,3102,1,1,721.1779248,721.1779248,3504,NO,14.96,20.16,-4,0,6112,108.321822,116.767167,126.606775,130.083055,I,Above,Gable,0,5701,,17.55996757,0,0,,,,1,1,,0.03,nav,1,1969,1,, 16761,NJBF000092476,682 S WHITE HORSE PK,Hammonton,NJ,39.62886498,-74.774098,RES1,3001,737,16,NE,1950,1950,3102,1,1,3577.808791,3577.808791,3504,NO,16.36,28.32,-4,0,6112,108.221564,116.66775,126.506409,129.92263,I,Above,Hip,0,5701,,22.33742749,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16762,NJBF000092485,380 BOYER AVE,Hammonton,NJ,39.6289711,-74.76231464,RES1,3001,,17,NE,1971,1971,3102,1,1,2145.130413,2145.130413,3504,NO,18.77,28.22,-4,0,6112,108.324714,116.768273,126.608463,130.085602,I,Above,Gable,0,5701,,23.49588366,0,0,,,,1,1,,0.35,nav,1,1971,1,, 16763,NJBF000092488,380 BOYER AVE,Hammonton,NJ,39.62902233,-74.7620945,RES1,3001,,17,NE,1971,1971,3102,1,1,2027.849623,2027.849623,3504,NO,11.26,22.63,-4,0,6112,108.326527,116.769722,126.610033,130.088093,I,Above,Gable,0,5701,,16.9450025,0,0,,,,1,1,,0.35,nav,1,1971,1,, 16764,NJBF000092504,"100 SPORTS DR, 150 SPORTS",Hammonton,NJ,39.62921628,-74.78811426,RES1,3001,,NaN,NE,2009,2009,3102,2,1,604.8746426,604.8746426,3504,NO,32.2,40.69,-4,0,6112,108.100814,116.547468,126.383934,129.729444,I,Above,Flat,0,5701,,36.44433677,0,0,,,,1,1,,1,nav,1,2009,2,, 16765,NJBF000092508,630 S WHITE HORSE PK,Hammonton,NJ,39.62928385,-74.77228102,RES1,3001,560,NaN,NE,1990,1990,3102,2,1,4025.629433,4025.629433,3504,NO,31.81,44,-4,0,6112,108.236183,116.679397,126.519177,129.942728,I,Above,Hip,0,5701,,37.90414911,0,0,,,,1,1,,1,nav,1,1990,2,, 16766,NJBF000092509,640 S WHITE HORSE PK,Hammonton,NJ,39.62931027,-74.77309697,RES1,3001,560,NaN,NE,1990,1990,3102,2,1,3383.935995,3383.935995,3504,NO,30.6,41.16,-4,0,6112,108.229014,116.672209,126.511922,129.931189,I,Above,Gable,0,5701,,35.88199788,0,0,,,,1,1,,1,nav,1,1990,2,, 16767,NJBF000092518,358 BOYER AVE,Hammonton,NJ,39.62942634,-74.76153053,RES1,3001,,17,NE,1930,1930,3102,1,1,611.6434602,611.6434602,3504,NO,12.61,17.86,-4,0,6112,108.330416,116.770901,126.612094,130.091147,I,Above,Flat,0,5701,,15.23657143,0,0,,,,1,1,,0.15,nav,1,1930,1,, 16768,NJBF000092525,620 S WHITE HORSE PK,Hammonton,NJ,39.62928385,-74.77228102,RES1,3001,560,NaN,NE,1990,1990,3102,2,1,3719.336519,3719.336519,3504,NO,23.06,35.35,-4,0,6109,108.236183,116.679397,126.519177,129.942728,I,Above,Hip,0,5701,,29.20117312,0,0,,,,1,1,,0.03,nav,1,1990,2,, 16769,NJBF000092536,610 S WHITE HORSE PK,Hammonton,NJ,39.62982682,-74.7722204,RES1,3001,560,NaN,NE,1990,1990,3102,1,1,3865.217877,3865.217877,3504,NO,18.4,32.76,-4,0,6109,108.235201,116.674958,126.515855,129.937193,I,Above,Gable,0,5701,,25.58271008,0,0,,,,1,1,,0.03,nav,1,1990,1,, 16770,NJBF000092541,649-655 S WHITE HORSE PK,Hammonton,NJ,39.6299019,-74.77066441,RES1,3001,560,NaN,NE,1969,0,3102,2,1,1850.443528,1850.443528,3504,NO,36.99,49.52,-4,0,6112,108.248557,116.687552,126.528821,129.957759,I,Above,Gable,0,5701,,43.25455172,0,0,,,,1,1,,1,nav,1,1969,2,, 16771,NJBF000092551,843 14TH ST,Hammonton,NJ,39.63005953,-74.83603146,RES1,3001,,17,NE,2003,2003,3102,2,1,2108.317299,2108.317299,3505,NO,25.69,31.48,3,2.35,6112,107.713794,116.167468,125.985594,129.121053,I,Above,Hip,0,5701,,28.58594299,0,1.2,,,,1,1,,0.15,nav,1,2003,2,, 16772,NJBF000092552,"100 SPORTS DR, 150 SPORTS",Hammonton,NJ,39.63006385,-74.79042678,RES1,3001,,NaN,NE,2009,2009,3102,2,1,1805.874072,1805.874072,3504,NO,34.34,47.22,-4,0,6112,108.079025,116.520993,126.358488,129.689548,I,Above,Gable,0,5701,,40.77804458,0,0,,,,1,1,,0.35,nav,1,2009,2,, 16773,NJBF000092554,"100 SPORTS DR, 150 SPORTS",Hammonton,NJ,39.63010184,-74.78698858,RES1,3001,,NaN,NE,2009,2009,3102,2,1,4006.267207,4006.267207,3504,NO,24.04,30.52,-4,0,6109,108.107838,116.548827,126.387312,129.734544,I,Above,Hip,0,5701,,27.27821854,0,0,,,,1,1,,0.03,nav,1,2009,2,, 16774,NJBF000092562,100 WATERFRONT WAY,Hammonton,NJ,39.63025138,-74.77738847,RES1,3001,,18,NE,1997,1997,3102,1,2,508.8992288,508.8992288,3504,NO,11.83,23.47,-4,0,6112,108.189277,116.627353,126.468252,129.861652,I,Above,Hip,0,5701,,17.6484625,0,1.2,,,,1,1,,0.03,nav,1,1997,1,, 16775,NJBF000092569,261 CHESTNUT ST,Hammonton,NJ,39.63032745,-74.79196503,RES1,3001,,17,NE,1976,1976,3102,1,1,3741.645773,3741.645773,3504,NO,15.31,21.22,-4,0,6112,108.065423,116.506136,126.343704,129.666484,I,Above,Hip,0,5701,,18.26420594,0,1.2,,,,1,1,,0.35,nav,1,1976,1,, 16776,NJBF000092571,256 CHESTNUT ST,Hammonton,NJ,39.63036632,-74.79132846,RES1,3001,,17,NE,1975,1975,3102,2,1,1869.85877,1869.85877,3504,NO,32.1,43.01,-4,0,6112,108.07064,116.510973,126.348799,129.674408,I,Above,Gable,0,5701,,37.5531681,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 16777,NJBF000092568,100 WATERFRONT WAY,Hammonton,NJ,39.63032547,-74.77766657,RES1,3001,,18,NE,1997,1997,3102,1,2,6842.519326,6842.519326,3504,NO,12.87,22.33,-4,0,6112,108.186669,116.624337,126.465333,129.857017,I,Above,Hip,0,5701,,17.60065331,0,1.2,,,,1,1,,0.35,nav,1,1997,1,, 16778,NJBF000092581,264 CHESTNUT ST,Hammonton,NJ,39.63060137,-74.7912606,RES1,3001,,17,NE,1975,1975,3102,2,1,1813.624848,1813.624848,3504,NO,35.92,46.91,-4,0,6109,108.070547,116.509436,126.347739,129.672719,I,Above,Gable,0,5701,,41.41567616,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 16779,NJBF000092579,267 CHESTNUT ST,Hammonton,NJ,39.6305927,-74.79187154,RES1,3001,,17,NE,1971,1971,3102,2,1,2693.796069,2693.796069,3504,NO,35.35,49.68,-4,0,6112,108.06546,116.504538,126.342648,129.664802,I,Above,Gable,0,5701,,42.5148891,0,0,,,,1,1,,0.35,nav,1,1971,2,, 16780,NJBF000092576,50 WATERFRONT WAY,Hammonton,NJ,39.63050701,-74.77869048,RES1,3001,,19,NE,2002,2002,3102,2,2,5948.557737,5948.557737,3504,NO,38.45,51.13,-4,0,6112,108.177367,116.614103,126.455269,129.841082,I,Above,Hip,0,5701,,44.79025984,0,1.1,,,,1,1,,0.35,nav,1,2002,2,, 16781,NJBF000092578,51 WATERFRONT WAY,Hammonton,NJ,39.63058848,-74.77700169,RES1,3001,,18,NE,2004,2004,3102,2,1,4558.782416,4558.782416,3504,NO,23.73,35.32,-4,0,6112,108.191662,116.627545,126.469197,129.863006,I,Above,Gable,0,5701,,29.52582035,0,1.1,,,,1,1,,0.35,nav,1,2004,2,, 16782,NJBF000092592,126 BATCHELOR LANE,Hammonton,NJ,39.63078412,-74.78673501,RES1,3001,,17,NE,1950,1950,3102,1,1,2425.283701,2425.283701,3504,NO,14.69,25.19,-4,0,6112,108.108084,116.54483,126.384722,129.730334,I,Above,Gable,0,5701,,19.94083217,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 16783,NJBF000092595,CENTRAL AVE (LAKE),Hammonton,NJ,39.63080581,-74.78627066,RES1,3001,,NaN,NE,1956,0,3102,2,1,1739.961122,1739.961122,3504,NO,28.21,42.91,-4,0,6112,108.111943,116.548451,126.388504,129.736237,I,Above,Gable,0,5701,,35.55776895,0,0,,,,1,1,,0.03,nav,1,1956,2,, 16784,NJBF000092591,128 BATCHELOR LN,Hammonton,NJ,39.63076968,-74.78707818,RES1,3001,,17,NE,1970,1970,3102,2,1,3013.659264,3013.659264,3504,NO,33.43,44.17,-4,0,6112,108.105227,116.542137,126.381912,129.725949,I,Above,Gable,0,5701,,38.79987768,0,0.2,,,,1,1,,0.03,nav,1,1970,2,, 16785,NJBF000092596,914 CENTRAL AVE,Hammonton,NJ,39.63081016,-74.77607362,RES1,3001,,18,NE,1995,1995,3102,2,1,3654.39744,3654.39744,3504,NO,27.51,41.03,-4,0,6112,108.199046,116.633344,126.475617,129.873042,I,Above,Hip,0,5701,,34.26766942,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 16786,NJBF000092601,124 BATCHELOR LN,Hammonton,NJ,39.63089772,-74.78648143,RES1,3001,,17,NE,1956,1956,3102,1,1,549.6163126,549.6163126,3504,NO,10.6,16.33,-4,0,6112,108.109912,116.545901,126.386083,129.73243,I,Above,Gable,0,5701,,13.46431522,0,1.2,,,,1,1,,0.15,nav,1,1956,1,, 16787,NJBF000092600,271 CHESTNUT ST,Hammonton,NJ,39.63086984,-74.79177467,RES1,3001,,17,NE,1971,1971,3102,2,1,3085.388066,3085.388066,3504,NO,37.05,43.95,-4,0,6109,108.065499,116.502874,126.341551,129.663052,I,Above,Gable,0,5701,,40.5008148,0,0,,,,1,1,,0.03,nav,1,1971,2,, 16788,NJBF000092602,191 PARK AVE,Hammonton,NJ,39.63091208,-74.79072074,RES1,3001,,17,NE,1965,1965,3102,1,1,1594.568678,1594.568678,3504,NO,14.65,29.28,-4,0,6112,108.074201,116.511076,126.350138,129.676397,I,Above,Gable,0,5701,,21.96534794,0,0,,,,1,1,,0.35,nav,1,1965,1,, 16789,NJBF000092611,50 WATERFRONT WAY,Hammonton,NJ,39.63099558,-74.77914644,RES1,3001,,19,NE,2002,2002,3102,2,2,868.5224821,868.5224821,3504,NO,33.21,40.88,-4,0,6112,108.172088,116.605862,126.447924,129.829332,I,Above,Gable,0,5701,,37.04729886,0,1.1,,,,1,1,,0.35,nav,1,2002,2,, 16790,NJBF000092614,124 BATCHELOR LN,Hammonton,NJ,39.63102481,-74.78633842,RES1,3001,,17,NE,1956,1956,3102,1,1,811.7934125,811.7934125,3504,NO,14.17,23.6,-4,0,6112,108.110766,116.545942,126.386412,129.732912,I,Above,Hip,0,5701,,18.88234051,0,1.2,,,,1,1,,0.15,nav,1,1956,1,, 16791,NJBF000092605,920 CENTRAL AVE,Hammonton,NJ,39.63093472,-74.77543201,RES1,3001,,18,NE,2004,2004,3102,2,1,4643.11167,4643.11167,3504,NO,22.61,30.63,-4,0,6109,108.204243,116.637622,126.480265,129.880323,I,Above,Hip,0,5701,,26.62253528,0,0,,,,1,1,,0.03,nav,1,2004,2,, 16792,NJBF000092625,999 N SECOND RD REAR,Hammonton,NJ,39.6221943,-74.84545236,RES1,3001,,NaN,NE,1952,0,3102,2,1,717.3157903,717.3157903,3505,NO,26.66,37.01,3,1.84,6112,107.66428,116.161565,125.962441,129.082162,I,Above,Gable,0,5701,,31.83475345,0,0,,,,1,1,,0.35,nav,1,1952,2,, 16793,NJBF000092618,278 CHESTNUT ST,Hammonton,NJ,39.63107943,-74.79110177,RES1,3001,,17,NE,1960,1960,3102,1,1,2003.623411,2003.623411,3504,NO,16.26,21.56,-4,0,6112,108.070546,116.506494,126.345772,129.669578,I,Above,Gable,0,5701,,18.90579656,0,0,,,,1,1,,0.35,nav,1,1960,1,, 16794,NJBF000092617,41 WATERFRONT WAY,Hammonton,NJ,39.63105452,-74.77709158,RES1,3001,,18,NE,1998,1998,3102,2,1,3813.371428,3813.371428,3504,NO,38.45,44.55,-4,0,6112,108.189582,116.622551,126.465135,129.856405,I,Above,Hip,0,5701,,41.49734194,0,1.2,,,,1,1,,0.35,nav,1,1998,2,, 16795,NJBF000092621,197 PARK AVE,Hammonton,NJ,39.63113408,-74.79052915,RES1,3001,,17,NE,1961,1961,3102,1,1,1882.444508,1882.444508,3504,NO,18.27,24.85,-4,0,6112,108.075191,116.510669,126.35022,129.676484,I,Above,Gable,0,5701,,21.56015066,0,0,,,,1,1,,0.35,nav,1,1961,1,, 16796,NJBF000092620,872 CENTRAL AVE,Hammonton,NJ,39.63112038,-74.77990714,RES1,3001,,17,NE,1965,1965,3102,1,1,2681.172226,2681.172226,3504,NO,18.36,26.56,-4,0,6109,108.165219,116.598382,126.440537,129.817671,I,Above,Gable,0,5701,,22.45840506,0,0,,,,1,1,,0.03,nav,1,1965,1,, 16797,NJBF000092624,275 CHESTNUT ST,Hammonton,NJ,39.63119679,-74.79167305,RES1,3001,,17,NE,1962,1962,3102,1,1,1943.522837,1943.522837,3504,NO,18.02,32.86,-4,0,6112,108.06544,116.500807,126.340149,129.66082,I,Above,Gable,0,5701,,25.44082541,0,0,,,,1,1,,0.35,nav,1,1962,1,, 16798,NJBF000092608,,Hammonton,NJ,39.63096801,-74.78946939,RES1,3001,,NaN,NE,1969,0,3102,2,1,9784.001979,9784.001979,3504,NO,28.23,40.52,-4,0,6112,108.084546,116.520789,126.360312,129.692222,I,Above,Gable,0,5701,,34.37852991,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16799,NJBF000092628,932 CENTRAL AVE,Hammonton,NJ,39.63121334,-74.77459233,RES1,3001,,17,NE,1966,1966,3102,2,1,2226.561597,2226.561597,3504,NO,24.75,33.67,-4,0,6112,108.210734,116.642185,126.485542,129.888529,I,Above,Hip,0,5701,,29.20585622,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 16800,NJBF000092633,280 CHESTNUT ST,Hammonton,NJ,39.63132709,-74.79102874,RES1,3001,,17,NE,1960,1960,3102,1,1,2118.013929,2118.013929,3504,NO,17.48,22.49,-4,0,6112,108.070465,116.504888,126.344672,129.667823,I,Above,Gable,0,5701,,19.98451802,0,0,,,,1,1,,0.35,nav,1,1960,1,, 16801,NJBF000092632,888 CENTRAL AVE,Hammonton,NJ,39.63132617,-74.77947804,RES1,3001,,17,NE,1900,1900,3102,1,1,1180.649498,1180.649498,3504,NO,16.24,25.96,-4,0,6112,108.168319,116.600103,126.442764,129.821091,I,Above,Gable,0,5701,,21.10202188,0,1.1,,,,1,1,,0.35,nav,1,1900,1,, 16802,NJBF000092635,203 PARK AVE,Hammonton,NJ,39.63132962,-74.79040256,RES1,3001,,17,NE,1955,1955,3102,1,1,2027.852578,2027.852578,3504,NO,15.74,30.01,-4,0,6112,108.0757,116.509955,126.349926,129.675988,I,Above,Gable,0,5701,,22.87205932,0,0,,,,1,1,,0.35,nav,1,1955,1,, 16803,NJBF000092615,,Hammonton,NJ,39.63103961,-74.78885758,RES1,3001,,NaN,NE,1969,0,3102,2,1,11634.4825,11634.4825,3504,NO,32.16,44.57,-4,0,6112,108.08948,116.525141,126.364974,129.699468,I,Above,Flat,0,5701,,38.36162642,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16804,NJBF000092636,1000 CENTRAL AVE,Hammonton,NJ,39.63134039,-74.77374365,RES1,3001,279,NaN,NE,1969,0,3102,2,1,2148.041831,2148.041831,3504,NO,22.95,37.67,-4,0,6112,108.217729,116.648201,126.491961,129.898608,I,Above,Gable,0,5701,,30.31088395,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16805,NJBF000092641,920 CENTRAL AVE,Hammonton,NJ,39.63140124,-74.77566452,RES1,3001,,18,NE,2004,2004,3102,2,1,1313.44439,1313.44439,3504,NO,27.13,38.61,-4,0,6112,108.200926,116.631418,126.474971,129.871757,I,Above,Gable,0,5701,,32.87132299,0,0,,,,1,1,,0.35,nav,1,2004,2,, 16806,NJBF000092637,934 CENTRAL AVE,Hammonton,NJ,39.63135054,-74.77415629,RES1,3001,,17,NE,1976,1976,3102,2,1,3188.139609,3188.139609,3504,NO,22.92,37.71,-4,0,6112,108.214125,116.644614,126.488328,129.892863,I,Above,Gable,0,5701,,30.3149411,0,1.2,,,,1,1,,0.35,nav,1,1976,2,, 16807,NJBF000092645,281 CHESTNUT ST,Hammonton,NJ,39.6314425,-74.79159318,RES1,3001,,17,NE,1945,1945,3102,1,1,1492.78489,1492.78489,3504,NO,11.88,18.03,-4,0,6112,108.065426,116.499285,126.33913,129.659194,I,Above,Gable,0,5701,,14.95565328,0,0,,,,1,1,,0.35,nav,1,1945,1,, 16808,NJBF000092642,122 BATCHELOR LN,Hammonton,NJ,39.63140245,-74.78574414,RES1,3001,,17,NE,1951,1951,3102,2,1,3352.93235,3352.93235,3504,NO,31.68,45.51,-4,0,6112,108.114738,116.547459,126.388827,129.736581,I,Above,Hip,0,5701,,38.59744525,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 16809,NJBF000092643,856 CENTRAL AVE,Hammonton,NJ,39.6314244,-74.78139973,RES1,3001,,17,NE,1956,1956,3102,2,1,3301.551104,3301.551104,3504,NO,35.99,44.79,-4,0,6109,108.151602,116.5832,126.425645,129.794184,I,Above,Gable,0,5701,,40.38952349,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 16810,NJBF000092647,852 CENTRAL AVE,Hammonton,NJ,39.63150516,-74.78202817,RES1,3001,,17,NE,1986,1986,3102,2,1,726.0255704,726.0255704,3504,NO,33.67,44.32,-4,0,6109,108.146017,116.577252,126.419719,129.784868,I,Above,Flat,0,5701,,38.99175661,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 16811,NJBF000092644,120 BATCHELOR LANE,Hammonton,NJ,39.63142863,-74.7853689,RES1,3001,,18,NE,2002,2002,3102,1,1,4249.566015,4249.566015,3504,NO,11.36,22.96,-4,0,6112,108.117837,116.550305,126.391821,129.74125,I,Above,Hip,0,5701,,17.16225687,0,1.1,,,,1,1,,0.35,nav,1,2002,1,, 16812,NJBF000092646,860 CENTRAL AVE,Hammonton,NJ,39.63146915,-74.7810702,RES1,3001,,18,NE,2000,2000,3102,2,1,7749.81445,7749.81445,3504,NO,29.68,36.68,-4,0,6112,108.154295,116.585539,126.428148,129.798092,I,Above,Flat,0,5701,,33.18041176,0,1.2,,,,1,1,,0.35,nav,1,2000,2,, 16813,NJBF000092649,118 BATCHELOR LN,Hammonton,NJ,39.63157733,-74.78476588,RES1,3001,,18,NE,1950,1950,3102,2,1,2338.036149,2338.036149,3504,NO,27.15,39.68,-4,0,6112,108.122533,116.553949,126.395911,129.747595,I,Above,Hip,0,5701,,33.41392476,0,0,,,,1,1,,0.35,nav,1,1950,2,, 16814,NJBF000092648,870C CENTRAL AVE,Hammonton,NJ,39.63154973,-74.78050136,RES1,3001,,18,NE,2011,2011,3102,2,1,4700.959668,4700.959668,3504,NO,25.6,37.97,-4,0,6112,108.158933,116.589545,126.432442,129.804798,I,Above,Gable,0,5701,,31.7881733,0,1.2,,,,1,1,,0.35,nav,1,2011,2,, 16815,NJBF000092652,926 CENTRAL AVE,Hammonton,NJ,39.63165022,-74.7754147,RES1,3001,29,NaN,NE,1890,1890,3102,3,1,3390.729464,3390.729464,3504,NO,40.48,55.38,-4,0,6112,108.202389,116.631259,126.475367,129.872266,I,Above,Flat,0,5701,,47.93111752,0,0,,,,1,1,,0.35,nav,1,1890,3,, 16816,NJBF000092655,24 PLEASANT MILLS RD,Hammonton,NJ,39.63168012,-74.77000562,RES1,3001,,17,NE,1875,1875,3102,2,1,2671.482374,2671.482374,3504,NO,34.29,47.34,-4,0,6112,108.249329,116.676868,126.521903,129.945818,I,Above,Gable,0,5701,,40.81212276,0,0,,,,1,1,,0.35,nav,1,1875,2,, 16817,NJBF000092660,860 CENTRAL AVE,Hammonton,NJ,39.63182177,-74.78086432,RES1,3001,,18,NE,2000,2000,3102,2,1,1607.165241,1607.165241,3504,NO,36.97,51.61,-4,0,6112,108.155068,116.584068,126.427435,129.796844,I,Above,Hip,0,5701,,44.28860499,0,1.2,,,,1,1,,0.35,nav,1,2000,2,, 16818,NJBF000092661,854 CENTRAL AVE,Hammonton,NJ,39.63182488,-74.78164162,RES1,3001,,17,NE,1988,1988,3102,2,1,3247.278716,3247.278716,3504,NO,27.7,35.65,-4,0,6112,108.148415,116.577574,126.420773,129.786405,I,Above,Gable,0,5701,,31.67360031,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 16819,NJBF000092663,8 PLEASANT MILLS RD,Hammonton,NJ,39.63188723,-74.77067832,RES1,3001,,17,NE,1818,1818,3102,2,1,563.1799476,563.1799476,3504,NO,38.21,46.48,-4,0,6112,108.242877,116.669237,126.514606,129.934141,I,Above,Gable,0,5701,,42.34436866,0,1.1,,,,1,1,,0.35,nav,1,1818,2,, 16820,NJBF000092669,842 CENTRAL AVE,Hammonton,NJ,39.63196199,-74.78268726,RES1,3001,,17,NE,1950,1950,3102,1,1,2180.0295,2180.0295,3504,NO,15.81,28.72,-4,0,6112,108.139123,116.567674,126.410908,129.770916,I,Above,Gable,0,5701,,22.26210094,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 16821,NJBF000092670,834 CENTRAL AVE,Hammonton,NJ,39.63196912,-74.78330266,RES1,3001,,17,NE,1910,1910,3102,1,1,2913.81779,2913.81779,3504,NO,11.78,17.99,-4,0,6112,108.133861,116.562513,126.405615,129.762637,I,Above,Gable,0,5701,,14.88789895,0,1.2,,,,1,1,,0.03,nav,1,1910,1,, 16822,NJBF000092674,842 CENTRAL AVE,Hammonton,NJ,39.63200229,-74.78245342,RES1,3001,,17,NE,1950,1950,3102,1,1,721.1793997,721.1793997,3504,NO,17.39,29.33,-4,0,6112,108.141004,116.569252,126.412622,129.773582,I,Above,Gable,0,5701,,23.35968686,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 16823,NJBF000092676,834 CENTRAL AVE,Hammonton,NJ,39.63201986,-74.78354039,RES1,3001,,17,NE,1910,1910,3102,1,1,766.7441934,766.7441934,3504,NO,13.62,20.96,-4,0,6112,108.131703,116.560095,126.403243,129.758912,I,Above,Gable,0,5701,,17.28900014,0,1.2,,,,1,1,,0.03,nav,1,1910,1,, 16824,NJBF000092679,852 CENTRAL AVE,Hammonton,NJ,39.63206587,-74.78200133,RES1,3001,,17,NE,1986,1986,3102,2,1,2894.440942,2894.440942,3504,NO,28.88,35.22,-4,0,6112,108.144678,116.572423,126.416026,129.778887,I,Above,Gable,0,5701,,32.04865553,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 16825,NJBF000092687,9 PLEASANT MILLS RD,Hammonton,NJ,39.63224408,-74.77078853,RES1,3001,,17,NE,1940,1940,3102,2,1,1201.007234,1201.007234,3504,NO,27.68,40.16,-4,0,6112,108.240905,116.665015,126.511112,129.92841,I,Above,Gable,0,5701,,33.92063998,0,1.2,,,,1,1,,0.35,nav,1,1940,2,, 16826,NJBF000092705,801 14TH ST,Hammonton,NJ,39.63250611,-74.8349884,RES1,3001,,17,NE,1997,1997,3102,1,1,1328.000833,1328.000833,3505,NO,15.62,20.7,3,-0.96,6112,107.714934,116.15511,125.977844,129.110579,I,Above,Flat,0,5701,,18.16015962,0,1.2,,,,1,1,,0.15,nav,1,1997,1,, 16827,NJBF000092702,832 CENTRAL AVE,Hammonton,NJ,39.6324644,-74.78371396,RES1,3001,,17,NE,1998,1998,3102,2,1,3407.20223,3407.20223,3504,NO,28.78,33.79,-4,0,6112,108.128982,116.554667,126.398666,129.751614,I,Above,Gable,0,5701,,31.28320141,0,1.2,,,,1,1,,0.35,nav,1,1998,2,, 16828,NJBF000092673,1000 CENTRAL AVE,Hammonton,NJ,39.63199596,-74.77257655,COM7,3001,279,NaN,ME,1969,0,3401,3,1,89185.31614,89185.31614,3507,NO,53.33,60.24,1,1.18,6112,108.226025,116.652096,126.4974,129.906868,I,Above,Flat,0,NaN,,56.78575578,0,0,,,,1,1,,1,nav,1,1969,3,, 16829,NJBF000092713,114 BATCHELOR LN,Hammonton,NJ,39.6325961,-74.78481473,RES1,3001,,17,NE,2001,2001,3102,2,1,4035.335181,4035.335181,3504,NO,25.5,33.51,-4,0,6112,108.119267,116.544406,126.388395,129.735549,I,Above,Hip,0,5701,,29.50580768,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 16830,NJBF000092725,114 PLEASANT MILLS RD,Hammonton,NJ,39.63284124,-74.76539448,RES1,3001,,17,NE,1960,1960,3102,2,1,1687.619479,1687.619479,3504,NO,36.34,48.1,-4,0,6112,108.286573,116.705707,126.55376,129.995658,I,Above,Gable,0,5701,,42.21819277,0,0,,,,1,1,,0.35,nav,1,1960,2,, 16831,NJBF000092749,101 BATCHELOR LN,Hammonton,NJ,39.6333012,-74.78534568,RES1,3001,,17,NE,1980,1980,3102,2,1,2889.588557,2889.588557,3504,NO,37.42,52.02,-4,0,6112,108.112791,116.533714,126.378986,129.720667,I,Above,Gable,0,5701,,44.7194725,0,1.2,,,,1,1,,0.35,nav,1,1980,2,, 16832,NJBF000092752,200 PLEASANT MILLS RD,Hammonton,NJ,39.63333358,-74.76285649,RES1,3001,,NaN,NE,1969,0,3102,2,1,2981.674227,2981.674227,3504,NO,37.11,46.29,-4,0,6112,108.307638,116.723046,126.572411,130.024975,I,Above,Gable,0,5701,,41.69799028,0,0,,,,1,1,,0.35,nav,1,1969,2,, 16833,NJBF000092763,828 CENTRAL AVE,Hammonton,NJ,39.63346234,-74.78410647,RES1,3001,,17,NE,1970,1970,3102,1,1,2717.068976,2717.068976,3504,NO,15.53,21.47,-4,0,6112,108.122853,116.542463,126.388379,129.735232,I,Above,Flat,0,5701,,18.49781858,0,1.2,,,,1,1,,0.35,nav,1,1970,1,, 16834,NJBF000092762,220 PLEASANT MILLS RD,Hammonton,NJ,39.63345447,-74.76135807,RES1,3001,,17,NE,1970,1970,3102,2,1,1117.110381,1117.110381,3504,NO,34,47.64,-4,0,6112,108.320608,116.734919,126.584674,130.04442,I,Above,Flat,0,5701,,40.81876351,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 16835,NJBF000092768,206 PLEASANT MILLS RD,Hammonton,NJ,39.63347165,-74.76249225,RES1,3001,,17,NE,1954,1954,3102,1,1,1758.374426,1758.374426,3504,NO,16.3,28.67,-4,0,6112,108.310477,116.724914,126.574608,130.028371,I,Above,Gable,0,5701,,22.48397488,0,0,,,,1,1,,0.35,nav,1,1954,1,, 16836,NJBF000092773,212 PLEASANT MILLS RD,Hammonton,NJ,39.63351606,-74.76209114,RES1,3001,,17,NE,1965,1965,3102,1,1,2598.77727,2598.77727,3504,NO,18.45,27.83,-4,0,6112,108.313914,116.727979,126.577805,130.033428,I,Above,Gable,0,5701,,23.13771163,0,0,,,,1,1,,0.35,nav,1,1965,1,, 16837,NJBF000092775,218 PLEASANT MILLS,Hammonton,NJ,39.63354799,-74.76161923,RES1,3001,,17,NE,1930,1930,3102,2,1,2259.513397,2259.513397,3504,NO,33.95,40.2,-4,0,6112,108.31802,116.731776,126.581711,130.039627,I,Above,Gable,0,5701,,37.07673513,0,1.2,,,,1,1,,0.35,nav,1,1930,2,, 16838,NJBF000092784,220 PLEASANT MILLS RD,Hammonton,NJ,39.63363745,-74.76126307,RES1,3001,,17,NE,1970,1970,3102,2,1,2600.343575,2600.343575,3504,NO,35.62,42.21,-4,0,6112,108.320935,116.734037,126.584194,130.043515,I,Above,Hip,0,5701,,38.91551637,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 16839,NJBF000092797,820 CENTRAL AVE,Hammonton,NJ,39.63373979,-74.78440926,RES1,3001,,17,NE,1956,1956,3102,2,1,1953.21102,1953.21102,3504,NO,36.12,48.36,-4,0,6112,108.1195,116.53747,126.383872,129.728119,I,Above,Flat,0,5701,,42.24128909,0,0,,,,1,1,,0.35,nav,1,1956,2,, 16840,NJBF000092798,794 CENTRAL AVE,Hammonton,NJ,39.63374225,-74.78514765,RES1,3001,,17,NE,1946,1946,3102,1,1,2551.286542,2551.286542,3504,NO,13.71,23.1,-4,0,6112,108.113229,116.531381,126.377595,129.718357,I,Above,Gable,0,5701,,18.40776629,0,1.2,,,,1,1,,0.35,nav,1,1946,1,, 16841,NJBF000092805,786 CENTRAL AVE,Hammonton,NJ,39.63382829,-74.78537302,RES1,3001,,17,NE,1950,1950,3102,1,1,1694.399408,1694.399408,3504,NO,16.5,28.31,-4,0,6112,108.111082,116.528763,126.375091,129.714436,I,Above,Gable,0,5701,,22.40232131,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16842,NJBF000092801,238 PLEASANT MILLS RD,Hammonton,NJ,39.63376988,-74.76015145,RES1,3001,,17,NE,1960,1960,3102,1,1,3917.075858,3917.075858,3504,NO,19.21,30.49,-4,0,6112,108.330467,116.742465,126.592998,130.057449,I,Above,Gable,0,5701,,24.85046177,0,0,,,,1,1,,0.35,nav,1,1960,1,, 16843,NJBF000092817,100 CREEK RD OFF PLST MLS,Hammonton,NJ,39.63393608,-74.74294141,RES1,3001,,15,NE,1945,1945,3102,1,1,1951.264746,1951.264746,3504,NO,14.66,24.41,-4,0,6112,108.486339,116.893814,126.744862,130.302073,I,Above,Hip,0,5701,,19.53227145,0,0,,,,1,1,,1,nav,1,1945,1,, 16844,NJBF000092863,540 PLEASANT MILLS RD,Hammonton,NJ,39.63435905,-74.74686996,RES1,3001,,15,NE,1960,1960,3102,1,1,3172.635433,3172.635433,3504,NO,13.65,24.39,-4,0,6112,108.44893,116.854318,126.706479,130.239292,I,Above,Gable,0,5701,,19.01817939,0,0,,,,1,1,,1,nav,1,1960,1,, 16845,NJBF000092877,548 PLEASANT MILLS RD,Hammonton,NJ,39.63456167,-74.74530507,RES1,3001,,16,NE,1965,1965,3102,1,5,2385.504828,2385.504828,3504,NO,11.13,21.33,-4,0,6112,108.462724,116.866449,126.719016,130.259408,I,Above,Gable,0,5701,,16.22671413,0,0,,,,1,1,,1,nav,1,1965,1,, 16846,NJBF000092880,544 PLEASANT MILLS RD,Hammonton,NJ,39.63463152,-74.74678711,RES1,3001,,16,NE,1960,1960,3102,1,2,963.5057897,963.5057897,3504,NO,12.54,17.82,-4,0,6112,108.448906,116.852456,126.705225,130.236988,I,Above,Gable,0,5701,,15.17930875,0,0,,,,1,1,,1,nav,1,1960,1,, 16847,NJBF000092885,544 PLEASANT MILLS RD,Hammonton,NJ,39.63465167,-74.7465486,RES1,3001,,16,NE,1960,1960,3102,1,2,1014.886452,1014.886452,3504,NO,15.08,23.61,-4,0,6112,108.451032,116.854401,126.707209,130.24018,I,Above,Gable,0,5701,,19.34416314,0,0,,,,1,1,,1,nav,1,1960,1,, 16848,NJBF000092915,436 PLEASANT MILLS RD,Hammonton,NJ,39.63506718,-74.75248005,RES1,3001,,17,NE,2007,2007,3102,2,1,4077.980118,4077.980118,3504,NO,35.73,41.18,-4,0,6112,108.395745,116.797588,126.651335,130.149683,I,Above,Hip,0,5701,,38.45619751,0,0,,,,1,1,,0.15,nav,1,2007,2,, 16849,NJBF000092951,451 W 15TH ST,Hammonton,NJ,39.63538363,-74.8412923,RES1,3001,,17,NE,1961,1961,3102,1,1,1409.424145,1409.424145,3505,NO,14.21,24.12,3,3.44,6112,107.65875,116.085744,125.909475,129.01087,I,Above,Gable,0,5701,,19.16585322,0,0,,,,1,1,,0.35,nav,1,1961,1,, 16850,NJBF000092959,451 W 15TH ST,Hammonton,NJ,39.63544483,-74.84166813,RES1,3001,,17,NE,1961,1961,3102,1,1,2318.67617,2318.67617,3505,NO,23.79,38.76,3,6.98,6112,107.655728,116.082542,125.906137,129.006,I,Above,Gable,0,5701,,31.276988,0,0,,,,1,1,,0.35,nav,1,1961,1,, 16851,NJBF000093042,657 14TH ST,Hammonton,NJ,39.63603483,-74.83053562,RES1,3001,,17,NE,1960,1960,3102,1,1,2687.013929,2687.013929,3505,NO,16.37,21.6,3,4.08,6112,107.739315,116.158697,125.989998,129.129841,I,Above,Flat,0,5701,,18.98481897,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 16852,NJBF000093060,14 JAMESTOWN BLVD,Hammonton,NJ,39.63617263,-74.76031525,RES1,3001,,37,NE,1987,1987,3102,2,1,5926.511346,5926.511346,3504,NO,36.94,48.29,-4,0,6112,108.322151,116.718552,126.574302,130.025743,I,Above,Gable,0,5701,,42.61526143,0,0,,,,1,1,,0.03,nav,1,1987,2,, 16853,NJBF000093088,533 PLEASANT MILLS RD,Hammonton,NJ,39.63649515,-74.75062577,RES1,3001,730,NaN,NE,1960,1960,3102,1,1,4016.925402,4016.925402,3504,NO,18.49,28.26,-4,0,6112,108.408468,116.800452,126.657418,130.158056,I,Above,Gable,0,5701,,23.37503816,0,0,,,,1,1,,0.35,nav,1,1960,1,, 16854,NJBF000093101,535 PLEASANT MILLS RD,Hammonton,NJ,39.6365838,-74.75014743,RES1,3001,,17,NE,1977,1977,3102,1,1,3643.710536,3643.710536,3504,NO,15.46,23.58,-4,0,6112,108.41257,116.803854,126.661026,130.163757,I,Above,Gable,0,5701,,19.51861139,0,1.2,,,,1,1,,0.35,nav,1,1977,1,, 16855,NJBF000093111,537 PLEASANT MILLS,Hammonton,NJ,39.63670898,-74.74926849,RES1,3001,,17,NE,1954,1954,3102,1,1,4161.335936,4161.335936,3504,NO,17.95,27.98,-4,0,6112,108.420218,116.810471,126.667931,130.17472,I,Above,Gable,0,5701,,22.96468531,0,1.2,,,,1,1,,0.35,nav,1,1954,1,, 16856,NJBF000093118,363 PLEASANT MILLS RD,Hammonton,NJ,39.63679205,-74.75781059,RES1,3001,,17,NE,1920,1920,3102,2,1,1863.058556,1863.058556,3504,NO,36.58,48.38,-4,0,6109,108.342753,116.734499,126.591815,130.053012,I,Above,Flat,0,5701,,42.47945327,0,0,,,,1,1,,0.03,nav,1,1920,2,, 16857,NJBF000093128,363 PLEASANT MILLS RD,Hammonton,NJ,39.6368921,-74.75736812,RES1,3001,,17,NE,1920,1920,3102,2,1,986.5411822,986.5411822,3504,NO,28.16,42.6,-4,0,6112,108.346436,116.737418,126.594987,130.057963,I,Above,Flat,0,5701,,35.38259138,0,0,,,,1,1,,0.15,nav,1,1920,2,, 16858,NJBF000093136,537 PLEASANT MILLS,Hammonton,NJ,39.63691561,-74.74953012,RES1,3001,,17,NE,1954,1954,3102,1,1,593.2248638,593.2248638,3504,NO,11.96,23.98,-4,0,6112,108.417231,116.806169,126.664094,130.168343,I,Above,Flat,0,5701,,17.96906193,0,1.2,,,,1,1,,0.35,nav,1,1954,1,, 16859,NJBF000093140,363 PLEASANT MILLS RD,Hammonton,NJ,39.63694241,-74.7576538,RES1,3001,,17,NE,1920,1920,3102,2,1,620.3742638,620.3742638,3504,NO,31.94,44.37,-4,0,6112,108.343728,116.734454,126.592114,130.053352,I,Above,Flat,0,5701,,38.15594582,0,0,,,,1,1,,0.15,nav,1,1920,2,, 16860,NJBF000093144,537 PLEASANT MILLS,Hammonton,NJ,39.63697303,-74.74938872,RES1,3001,,17,NE,1954,1954,3102,1,1,1007.136048,1007.136048,3504,NO,18.67,27.48,-4,0,6112,108.418351,116.806878,126.664933,130.169631,I,Above,Flat,0,5701,,23.07453276,0,1.2,,,,1,1,,0.35,nav,1,1954,1,, 16861,NJBF000093155,363 PLEASANT MILLS RD,Hammonton,NJ,39.63708576,-74.75754404,RES1,3001,,17,NE,1920,1920,3102,2,1,2411.695768,2411.695768,3504,NO,33.56,45.09,-4,0,6109,108.3443,116.734057,126.592044,130.053108,I,Above,Flat,0,5701,,39.32404675,0,0,,,,1,1,,0.03,nav,1,1920,2,, 16862,NJBF000093165,567 PLEASANT MILLS RD,Hammonton,NJ,39.63715158,-74.74710504,RES1,3001,,17,NE,1974,1974,3102,1,1,5011.207489,5011.207489,3504,NO,18.45,27.11,-4,0,6112,108.438706,116.825514,126.683969,130.20005,I,Above,Gable,0,5701,,22.77653047,0,0,,,,1,1,,0.35,nav,1,1974,1,, 16863,NJBF000093187,605 14TH ST,Hammonton,NJ,39.63777705,-74.82961445,RES1,3001,,17,NE,1990,1990,3102,2,1,2605.37583,2605.37583,3505,NO,35.98,45.29,3,6.9,6112,107.741537,116.150974,125.985875,129.124229,I,Above,Gable,0,5701,,40.63490216,0,0,,,,1,1,,0.15,nav,1,1990,2,, 16864,NJBF000093168,553 PLEASANT MILLS RD,Hammonton,NJ,39.63717032,-74.74858153,RES1,3001,,NaN,NE,1969,0,3102,1,1,20614.69151,20614.69151,3504,NO,15.61,21.05,-4,0,6112,108.425144,116.812174,126.670677,130.178652,I,Above,Flat,0,5701,,18.33196076,0,0,,,,1,1,,1,nav,1,1969,1,, 16865,NJBF000093204,567 PLEASANT MILLS RD,Hammonton,NJ,39.63741003,-74.74758476,RES1,3001,,17,NE,1974,1974,3102,1,1,841.3770587,841.3770587,3504,NO,16.57,27.78,-4,0,6112,108.433562,116.818762,126.677806,130.189857,I,Above,Gable,0,5701,,22.17162137,0,0,,,,1,1,,0.15,nav,1,1974,1,, 16866,NJBF000093246,605 14TH ST,Hammonton,NJ,39.63777705,-74.82961445,RES1,3001,,17,NE,1990,1990,3102,2,1,1583.905418,1583.905418,3505,NO,40.82,52.2,3,5.69,6112,107.741537,116.150974,125.985875,129.124229,I,Above,Gable,0,5701,,46.51213849,0,0,,,,1,1,,0.15,nav,1,1990,2,, 16867,NJBF000093253,605 14TH ST,Hammonton,NJ,39.63785071,-74.82938239,RES1,3001,,17,NE,1990,1990,3102,2,1,2436.926748,2436.926748,3505,NO,41.42,48.33,3,6.65,6112,107.743128,116.152062,125.987229,129.126251,I,Above,Gable,0,5701,,44.87278068,0,0,,,,1,1,,0.15,nav,1,1990,2,, 16868,NJBF000093283,422 W 15TH ST,Hammonton,NJ,39.63810213,-74.83779414,RES1,3001,,NaN,NE,1969,0,3102,2,1,1301.829737,1301.829737,3505,NO,32.11,45.59,3,0.72,6112,107.677679,116.088732,125.919236,129.026222,I,Above,Gable,0,5701,,38.85053412,0,0,,,,1,1,,0.03,nav,1,1969,2,, 16869,NJBF000093278,653 PLEASANT MILLS RD,Hammonton,NJ,39.63807727,-74.74376237,RES1,3001,,17,NE,1958,1958,3102,2,2,1784.497831,1784.497831,3504,NO,34.74,40.92,-4,0,6112,108.466739,116.846587,126.707079,130.236291,I,Above,Gable,0,5701,,37.8266582,0,0,,,,1,1,,0.15,nav,1,1958,2,, 16870,NJBF000093464,400 W 15TH ST,Hammonton,NJ,39.63931192,-74.83700487,RES1,3001,,17,NE,1958,1958,3102,1,1,610.6922046,610.6922046,3505,NO,23.8,37.62,3,6.5,6112,107.680276,116.084464,125.917558,129.024166,I,Above,Flat,0,5701,,30.70913361,0,0,,,,1,1,,0.15,nav,1,1958,1,, 16871,NJBF000093446,700 PLEASANT MILLS RD,Hammonton,NJ,39.63919358,-74.74084149,RES1,3001,,17,NE,1948,1948,3102,1,1,3103.795252,3103.795252,3504,NO,13.54,24.7,-4,0,6112,108.49048,116.862127,126.725075,130.264074,I,Above,Gable,0,5701,,19.11997209,0,0,,,,1,1,,0.15,nav,1,1948,1,, 16872,NJBF000093515,701 PLEASANT MILLS RD,Hammonton,NJ,39.6396484,-74.74176123,RES1,3001,,17,NE,1930,1930,3102,1,1,1488.894544,1488.894544,3504,NO,14.21,23.16,-4,0,6112,108.480619,116.849434,126.713483,130.244786,I,Above,Hip,0,5701,,18.68298929,0,0,,,,1,1,,0.35,nav,1,1930,1,, 16873,NJBF000094205,375 BRIDGE AVE,Hammonton,NJ,39.64384649,-74.74316375,RES1,3001,,14,NE,1960,1960,3102,1,2,1017.786791,1017.786791,3504,NO,11.09,23.38,-4,0,6112,108.455212,116.796217,126.670187,130.169959,I,Above,Flat,0,5701,,17.23769304,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16874,NJBF000094209,375 BRIDGE AVE,Hammonton,NJ,39.64387845,-74.74297038,RES1,3001,,14,NE,1960,1960,3102,1,2,606.8073107,606.8073107,3504,NO,17.01,29.38,-4,0,6112,108.456905,116.797637,126.671681,130.172302,I,Above,Flat,0,5701,,23.19658986,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16875,NJBF000094210,375 BRIDGE AVE,Hammonton,NJ,39.64388023,-74.74305204,RES1,3001,,14,NE,1960,1960,3102,1,2,710.5168041,710.5168041,3504,NO,10.65,23.03,-4,0,6112,108.456143,116.796886,126.670936,130.17111,I,Above,Gable,0,5701,,16.84315858,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16876,NJBF000094213,375 BRIDGE AVE,Hammonton,NJ,39.64389382,-74.74288821,RES1,3001,,14,NE,1960,1960,3102,1,2,767.7006461,767.7006461,3504,NO,19.2,26.81,-4,0,6112,108.457613,116.798214,126.672294,130.173261,I,Above,Flat,0,5701,,23.00520349,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16877,NJBF000094215,375 BRIDGE AVE,Hammonton,NJ,39.64390922,-74.74281316,RES1,3001,,14,NE,1960,1960,3102,1,2,727.9559647,727.9559647,3504,NO,10.54,19.3,-4,0,6112,108.45826,116.798738,126.672853,130.174133,I,Above,Flat,0,5701,,14.91617935,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16878,NJBF000094223,375 BRIDGE AVE,Hammonton,NJ,39.64396076,-74.74265511,RES1,3001,,14,NE,1960,1960,3102,1,2,988.7025567,988.7025567,3504,NO,12.6,22.94,-4,0,6112,108.459562,116.799644,126.67388,130.175706,I,Above,Flat,0,5701,,17.77284481,0,0,,,,1,1,,0.15,nav,1,1960,1,, 16879,NJBF000094245,620 E PLEASANT ST,Hammonton,NJ,39.64408237,-74.79739831,RES1,3001,,17,NE,1965,1965,3102,1,1,4393.020025,4393.020025,3507,NO,19.71,31.65,1,0.47,6112,107.981375,116.340805,126.204114,129.449778,I,Above,Gable,0,5701,,25.68099999,0,1.2,,,,1,1,,0.35,nav,1,1965,1,, 16880,NJBF000094288,305 4TH ST,Hammonton,NJ,39.64430058,-74.79957606,RES1,3001,,17,NE,1958,1958,3102,1,1,1437.52877,1437.52877,3507,NO,15.28,27.42,1,-0.93,6112,107.962802,116.321873,126.184716,129.420587,I,Above,Gable,0,5701,,21.35026198,0,0,,,,1,1,,0.15,nav,1,1958,1,, 16881,NJBF000094299,301 4TH ST,Hammonton,NJ,39.64438733,-74.79907566,RES1,3001,,17,NE,1954,1954,3102,1,1,630.0657155,630.0657155,3507,NO,12.85,21,1,0.05,6112,107.966667,116.325002,126.188238,129.425848,I,Above,Gable,0,5701,,16.92542425,0,1.2,,,,1,1,,0.15,nav,1,1954,1,, 16882,NJBF000094311,309 4TH ST,Hammonton,NJ,39.64444584,-74.79978044,RES1,3001,,17,NE,1950,1950,3102,1,1,1867.917204,1867.917204,3507,NO,12.33,25.19,1,-0.07,6112,107.960708,116.319002,126.182057,129.416563,I,Above,Gable,0,5701,,18.75932966,0,0,,,,1,1,,0.15,nav,1,1950,1,, 16883,NJBF000094334,355 4TH ST,Hammonton,NJ,39.6445834,-74.79997077,RES1,3001,,17,NE,1975,1975,3102,1,1,2336.099818,2336.099818,3507,NO,13.44,22.95,1,-0.88,6112,107.958744,116.316305,126.179561,129.412785,I,Above,Gable,0,5701,,18.19449404,0,0,,,,1,1,,0.15,nav,1,1975,1,, 16884,NJBF000094369,631 E PLEASANT ST,Hammonton,NJ,39.64473535,-74.79769467,RES1,3001,,17,NE,1971,1971,3102,1,1,3003.972816,3003.972816,3507,NO,17.18,26.48,1,-0.56,6112,107.977044,116.332677,126.197227,129.439233,I,Above,Gable,0,5701,,21.82877676,0,1.2,,,,1,1,,0.35,nav,1,1971,1,, 16885,NJBF000094384,375 4TH ST,Hammonton,NJ,39.64482981,-74.80039133,RES1,3001,,17,NE,1962,1962,3102,1,1,2250.807542,2250.807542,3507,NO,18.87,24.53,1,2.07,6112,107.954585,116.310858,126.174442,129.405054,I,Above,Gable,0,5701,,21.7014089,0,0,,,,1,1,,0.15,nav,1,1962,1,, 16886,NJBF000094406,401 4TH ST,Hammonton,NJ,39.64491264,-74.80060843,RES1,3001,,17,NE,1925,1925,3102,2,1,954.8044304,954.8044304,3507,NO,31.43,38.7,1,0.92,6112,107.952566,116.308441,126.172102,129.401529,I,Above,Gable,0,5701,,35.06528537,0,0,,,,1,1,,0.15,nav,1,1925,2,, 16887,NJBF000094399,30 N LIBERTY ST,Hammonton,NJ,39.64488409,-74.7950618,RES1,3001,,17,NE,1958,1958,3102,1,1,3492.516898,3492.516898,3507,NO,16.59,22.31,1,-0.86,6112,107.998395,116.351965,126.217913,129.470259,I,Above,Gable,0,5701,,19.45096888,0,0,,,,1,1,,0.35,nav,1,1958,1,, 16888,NJBF000094408,641 E PLEASANT ST,Hammonton,NJ,39.64493374,-74.79744909,RES1,3001,,17,NE,1965,1965,3102,2,2,2388.461223,2388.461223,3507,NO,35.98,44.68,1,0.51,6112,107.9785,116.332827,126.197897,129.440178,I,Above,Gable,0,5701,,40.32826991,0,0,,,,1,1,,0.35,nav,1,1965,2,, 16889,NJBF000094431,405 4TH ST,Hammonton,NJ,39.64503848,-74.80072049,RES1,3001,,17,NE,1950,1950,3102,1,1,2462.122642,2462.122642,3507,NO,13.73,19.68,1,0.19,6112,107.951287,116.306466,126.170337,129.398857,I,Above,Gable,0,5701,,16.70588389,0,0,,,,1,1,,0.35,nav,1,1950,1,, 16890,NJBF000094466,520 FAIRVIEW AVE,Hammonton,NJ,39.64516253,-74.80408244,RES1,3001,,17,NE,1920,1920,3102,2,1,787.1080403,787.1080403,3507,NO,25.79,39.15,1,-0.18,6112,107.923445,116.27943,126.142021,129.356531,I,Above,Hip,0,5701,,32.47132321,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 16891,NJBF000094452,651 E PLEASANT ST,Hammonton,NJ,39.64511229,-74.79720804,RES1,3001,,17,NE,1966,1966,3102,2,1,3467.319569,3467.319569,3507,NO,40.35,47.74,1,1.59,6112,107.979977,116.333125,126.198669,129.44128,I,Above,Gable,0,5701,,44.04818294,0,0.2,,,,1,1,,0.35,nav,1,1966,2,, 16892,NJBF000094453,670 E PLEASANT ST,Hammonton,NJ,39.6451175,-74.79595165,RES1,3001,,17,NE,1969,1969,3102,2,1,3064.062316,3064.062316,3507,NO,26.76,40.94,1,1.44,6112,107.990348,116.342904,126.208981,129.456756,I,Above,Gable,0,5701,,33.84672605,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16893,NJBF000094470,409 4TH ST,Hammonton,NJ,39.64518279,-74.80086492,RES1,3001,,17,NE,1940,1940,3102,1,1,1887.309596,1887.309596,3507,NO,15.65,24.54,1,-0.48,6112,107.94968,116.30406,126.168168,129.395574,I,Above,Gable,0,5701,,20.09188055,0,0,,,,1,1,,0.35,nav,1,1940,1,, 16894,NJBF000094473,40 N LIBERTY ST,Hammonton,NJ,39.6451945,-74.79521703,RES1,3001,,17,NE,1973,1973,3102,1,1,3448.899958,3448.899958,3507,NO,14.4,25.57,1,1.8,6112,107.996212,116.34797,126.214512,129.465036,I,Above,Gable,0,5701,,19.98095491,0,1.2,,,,1,1,,0.35,nav,1,1973,1,, 16895,NJBF000094484,420 4TH ST,Hammonton,NJ,39.645228,-74.80192879,RES1,3001,,17,NE,1972,1972,3102,1,1,3072.7931,3072.7931,3507,NO,12.29,24.24,1,0.72,6112,107.940836,116.295437,126.159158,129.382097,I,Above,Gable,0,5701,,18.26512902,0,0,,,,1,1,,0.35,nav,1,1972,1,, 16896,NJBF000094496,415 4TH ST,Hammonton,NJ,39.64529848,-74.80108642,RES1,3001,,17,NE,1950,1950,3102,1,1,1095.357717,1095.357717,3507,NO,10.49,17.9,1,-0.77,6112,107.947537,116.301333,126.16558,129.391676,I,Above,Gable,0,5701,,14.1969638,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 16897,NJBF000094501,528 FAIRVIEW AVE,Hammonton,NJ,39.64531499,-74.80403115,RES1,3001,,17,NE,1971,1971,3102,1,1,2190.712949,2190.712949,3507,NO,11.21,18.69,1,0.16,6112,107.923423,116.278483,126.141412,129.355591,I,Above,Hip,0,5701,,14.94885934,0,1.1,,,,1,1,,0.35,nav,1,1971,1,, 16898,NJBF000094525,417 4TH ST,Hammonton,NJ,39.64540757,-74.80124639,RES1,3001,,17,NE,1971,1971,3102,1,1,2096.694152,2096.694152,3507,NO,18.03,30.78,1,0.66,6112,107.945909,116.299122,126.163526,129.388579,I,Above,Flat,0,5701,,24.40449837,0,0,,,,1,1,,0.35,nav,1,1971,1,, 16899,NJBF000094528,671 E PLEASANT ST,Hammonton,NJ,39.64541,-74.79662534,RES1,3001,,17,NE,1970,1970,3102,2,1,2399.121787,2399.121787,3507,NO,24.58,31.18,1,-0.87,6112,107.983934,116.335025,126.201441,129.445339,I,Above,Gable,0,5701,,27.87908889,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 16900,NJBF000094524,678 E PLEASANT ST,Hammonton,NJ,39.64540335,-74.79563081,RES1,3001,,17,NE,1975,1975,3102,2,1,2242.069484,2242.069484,3507,NO,25.04,39.16,1,0.07,6112,107.99218,116.342866,126.209679,129.457704,I,Above,Gable,0,5701,,32.09939382,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 16901,NJBF000094532,422 4TH ST,Hammonton,NJ,39.64543007,-74.80216968,RES1,3001,,17,NE,1980,1980,3102,2,1,1904.755716,1904.755716,3507,NO,36.6,49.99,1,0.22,6112,107.938283,116.291793,126.155822,129.377067,I,Above,Flat,0,5701,,43.29861639,0,0,,,,1,1,,0.35,nav,1,1980,2,, 16902,NJBF000094550,532 FAIRVIEW AVE,Hammonton,NJ,39.64550737,-74.80396691,RES1,3001,,17,NE,1900,1900,3102,2,1,997.4456161,997.4456161,3507,NO,27.58,32.85,1,0.46,6112,107.923392,116.277284,126.140638,129.354399,I,Above,Gable,0,5701,,30.21640125,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16903,NJBF000094544,31 N LIBERTY ST,Hammonton,NJ,39.64547671,-74.79470253,RES1,3001,,17,NE,1969,1969,3102,1,1,1870.805186,1870.805186,3507,NO,17.04,31.24,1,-0.15,6112,107.999661,116.349483,126.216831,129.468417,I,Above,Gable,0,5701,,24.14200588,0,0,,,,1,1,,0.35,nav,1,1969,1,, 16904,NJBF000094552,430 4TH ST,Hammonton,NJ,39.64551284,-74.80245928,RES1,3001,,17,NE,1976,1976,3102,1,1,2914.785816,2914.785816,3507,NO,19.65,30.66,1,1.04,6112,107.935681,116.288832,126.152901,129.372686,I,Above,Gable,0,5701,,25.15417697,0,1.2,,,,1,1,,0.35,nav,1,1976,1,, 16905,NJBF000094564,419 4TH ST,Hammonton,NJ,39.6455778,-74.80145847,RES1,3001,,17,NE,1965,1965,3102,1,1,2562.937129,2562.937129,3507,NO,19.11,25.16,1,2.2,6112,107.943683,116.29598,126.160642,129.384227,I,Above,Gable,0,5701,,22.1343237,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 16906,NJBF000094566,681 E PLEASANT ST,Hammonton,NJ,39.64557986,-74.79641104,RES1,3001,,17,NE,1969,1969,3102,2,1,1967.748296,1967.748296,3507,NO,27.36,38.13,1,0.42,6112,107.985213,116.335181,126.202045,129.446189,I,Above,Gable,0,5701,,32.74388614,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 16907,NJBF000094574,540 FAIRVIEW AVE,Hammonton,NJ,39.64561251,-74.80350932,RES1,3001,,17,NE,1996,1996,3102,1,1,2974.913147,2974.913147,3507,NO,17.95,32.75,1,2.79,6109,107.92682,116.279869,126.143657,129.358876,I,Above,Gable,0,5701,,25.34956508,0,1.2,,,,1,1,,0.03,nav,1,1996,1,, 16908,NJBF000094592,39 N LIBERTY ST,Hammonton,NJ,39.64565865,-74.79498263,RES1,3001,,17,NE,1968,1968,3102,1,1,2656.947902,2656.947902,3507,NO,19.71,27.34,1,2.76,6112,107.996812,116.345658,126.213278,129.463015,I,Above,Gable,0,5701,,23.52395146,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 16909,NJBF000094624,535 FAIRVIEW AVE,Hammonton,NJ,39.64582019,-74.80437498,RES1,3001,,17,NE,2003,2003,3102,2,1,1933.815024,1933.815024,3507,NO,24.58,32.02,1,0.86,6112,107.919166,116.271397,126.135204,129.346238,I,Above,Gable,0,5701,,28.30090983,0,1.2,,,,1,1,,0.35,nav,1,2003,2,, 16910,NJBF000094618,438 4TH ST,Hammonton,NJ,39.64578637,-74.80264244,RES1,3001,,17,NE,1976,1976,3102,2,1,3330.643413,3330.643413,3507,NO,30.17,42.98,1,2.83,6109,107.933398,116.285012,126.149562,129.367642,I,Above,Flat,0,5701,,36.57303816,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 16911,NJBF000094630,358 NORTH ST,Hammonton,NJ,39.64584213,-74.8102469,RES1,3001,,17,NE,1953,1953,3102,1,1,1992.000639,1992.000639,3507,NO,14.94,27.7,1,-0.92,6112,107.871567,116.226501,126.087436,129.275277,I,Above,Flat,0,5701,,21.3227438,0,0,,,,1,1,,0.15,nav,1,1953,1,, 16912,NJBF000094625,421 4TH ST,Hammonton,NJ,39.6458248,-74.80171351,RES1,3001,,17,NE,1971,1971,3102,2,1,2377.778853,2377.778853,3507,NO,22.68,35.58,1,1.44,6109,107.940874,116.291819,126.156878,129.378546,I,Above,Gable,0,5701,,29.1322412,0,1.2,,,,1,1,,0.03,nav,1,1971,2,, 16913,NJBF000094629,45 N LIBERTY ST,Hammonton,NJ,39.64583857,-74.79523767,RES1,3001,,17,NE,1968,1968,3102,1,1,2632.713357,2632.713357,3507,NO,14.48,19.77,1,2.15,6112,107.994177,116.342049,126.209947,129.45795,I,Above,Gable,0,5701,,17.12671809,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 16914,NJBF000094636,552 FAIRVIEW AVE,Hammonton,NJ,39.64587377,-74.80334242,RES1,3001,,17,NE,1994,1994,3102,2,1,2160.648709,2160.648709,3507,NO,38.23,45.76,1,-0.12,6109,107.92743,116.278851,126.143257,129.358223,I,Above,Gable,0,5701,,41.99670839,0,1.2,,,,1,1,,0.03,nav,1,1994,2,, 16915,NJBF000094645,332 NORTH ST,Hammonton,NJ,39.64593073,-74.81127699,RES1,3001,,17,NE,1910,1910,3102,2,1,654.3057632,654.3057632,3507,NO,25.55,32.52,1,-0.93,6112,107.863028,116.217949,126.078527,129.262075,I,Above,Gable,0,5701,,29.03314763,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 16916,NJBF000094647,336 NORTH ST,Hammonton,NJ,39.64593598,-74.81070284,RES1,3001,,17,NE,1900,1900,3102,2,1,1674.054636,1674.054636,3507,NO,37.18,45,1,0.64,6112,107.867627,116.222237,126.083125,129.268882,I,Above,Gable,0,5701,,41.08994029,0,0,,,,1,1,,0.15,nav,1,1900,2,, 16917,NJBF000094667,547 FAIRVIEW AVE,Hammonton,NJ,39.64599276,-74.80411931,RES1,3001,,17,NE,1976,1976,3102,1,1,2557.115475,2557.115475,3507,NO,19.03,24.82,1,1.99,6109,107.920752,116.271837,126.136123,129.34757,I,Above,Gable,0,5701,,21.92439165,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 16918,NJBF000094673,717 VIRGINIA AVE,Hammonton,NJ,39.64603014,-74.79452148,RES1,3001,,17,NE,1999,1999,3102,2,1,2150.956203,2150.956203,3507,NO,25.63,32.95,1,1.08,6112,107.999572,116.345963,126.21456,129.464799,I,Above,Hip,0,5701,,29.28720967,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 16919,NJBF000094682,564 FAIRVIEW AVE,Hammonton,NJ,39.64606574,-74.80310826,RES1,3001,,17,NE,2004,2004,3102,2,1,1788.42986,1788.42986,3507,NO,28.92,37.61,1,2.98,6109,107.928785,116.278955,126.14387,129.359092,I,Above,Gable,0,5701,,33.26540753,0,1.2,,,,1,1,,0.03,nav,1,2004,2,, 16920,NJBF000094687,64 N LIBERTY ST,Hammonton,NJ,39.64609026,-74.79826593,RES1,3001,,17,NE,1974,1974,3102,2,1,1189.383546,1189.383546,3507,NO,26.19,32,1,1.72,6109,107.968425,116.316175,126.183325,129.417985,I,Above,Gable,0,5701,,29.09524999,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 16921,NJBF000094696,344 NORTH ST,Hammonton,NJ,39.64614571,-74.8106575,RES1,3001,,17,NE,1975,1975,3102,1,1,920.8624079,920.8624079,3507,NO,18.41,29.21,1,2.04,6109,107.867385,116.220747,126.082084,129.267318,I,Above,Flat,0,5701,,23.81347437,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 16922,NJBF000094715,336 NORTH ST,Hammonton,NJ,39.64621625,-74.8113078,RES1,3001,,17,NE,1900,1900,3102,2,1,1004.223536,1004.223536,3507,NO,30.5,36.58,1,1.89,6112,107.861959,116.215235,126.076373,129.25886,I,Above,Gable,0,5701,,33.53796785,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16923,NJBF000094705,64 N LIBERTY ST,Hammonton,NJ,39.64617271,-74.7978829,RES1,3001,,17,NE,1974,1974,3102,2,1,2918.651805,2918.651805,3507,NO,33.58,40.44,1,0.65,6109,107.971342,116.318415,126.185906,129.421819,I,Above,Gable,0,5701,,37.01431046,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 16924,NJBF000094714,437 4TH ST,Hammonton,NJ,39.6462161,-74.80211337,RES1,3001,,17,NE,1980,1980,3102,1,1,2530.939082,2530.939082,3507,NO,18.79,24.96,1,1.79,6112,107.936482,116.285286,126.150976,129.369646,I,Above,Gable,0,5701,,21.87819714,0,0,,,,1,1,,0.35,nav,1,1980,1,, 16925,NJBF000094727,576 FAIRVIEW AVE,Hammonton,NJ,39.64625021,-74.8029135,RES1,3001,,18,NE,2004,2004,3102,2,1,1862.09666,1862.09666,3507,NO,32.41,38.21,1,0.83,6109,107.929838,116.278822,126.14421,129.359556,I,Above,Gable,0,5701,,35.30896631,0,1.2,,,,1,1,,0.03,nav,1,2004,2,, 16926,NJBF000094713,721 VIRGINIA AVE,Hammonton,NJ,39.64621227,-74.79476604,RES1,3001,,17,NE,1998,1998,3102,1,1,2918.682646,2918.682646,3507,NO,12.55,21.89,1,1.78,6112,107.997012,116.342412,126.211297,129.459835,I,Above,Hip,0,5701,,17.22152521,0,0,,,,1,1,,0.35,nav,1,1998,1,, 16927,NJBF000094725,55 N LIBERTY ST,Hammonton,NJ,39.64623959,-74.79545906,RES1,3001,,17,NE,1968,1968,3102,2,1,3416.911125,3416.911125,3507,NO,39.01,45.16,1,1.94,6103,107.991185,116.336734,126.205392,129.450973,I,Above,Hip,0,5701,,42.08775469,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 16928,NJBF000094724,555 FAIRVIEW AVE,Hammonton,NJ,39.64623883,-74.80388205,RES1,3001,,17,NE,1963,1963,3102,1,1,3960.704874,3960.704874,3507,NO,15.39,21.13,1,2.38,6109,107.921974,116.271487,126.136395,129.347922,I,Above,Gable,0,5701,,18.25719272,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 16929,NJBF000094740,718 VIRGINIA AVE,Hammonton,NJ,39.6462931,-74.79400841,RES1,3001,,17,NE,1998,1998,3102,1,1,2581.34841,2581.34841,3507,NO,12.52,21.6,1,0.68,6112,108.003072,116.347634,126.216999,129.468358,I,Above,Gable,0,5701,,17.06247447,0,1.2,,,,1,1,,0.35,nav,1,1998,1,, 16930,NJBF000094771,344 NORTH ST,Hammonton,NJ,39.64642586,-74.81087797,RES1,3001,,17,NE,1975,1975,3102,1,1,2342.897376,2342.897376,3507,NO,19.43,27.53,1,2.41,6112,107.864809,116.216648,126.078438,129.261892,I,Above,Gable,0,5701,,23.47840361,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 16931,NJBF000094782,547 FAIRVIEW AVE,Hammonton,NJ,39.64648513,-74.80443849,RES1,3001,,17,NE,1976,1976,3102,1,1,1226.214796,1226.214796,3507,NO,10.9,24.15,1,-0.4,6109,107.916735,116.265059,126.130211,129.338669,I,Above,Gable,0,5701,,17.52527799,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 16932,NJBF000094790,507 FAIRVIEW AVE,Hammonton,NJ,39.64653423,-74.80893598,RES1,3001,,17,NE,1920,1920,3102,2,1,529.2628391,529.2628391,3507,NO,31.43,38.25,1,0.48,6112,107.880139,116.23038,126.093398,129.284025,I,Above,Gable,0,5701,,34.84072894,0,0,,,,1,1,,0.15,nav,1,1920,2,, 16933,NJBF000094777,561 FAIRVIEW AVE,Hammonton,NJ,39.64647017,-74.80361821,RES1,3001,,17,NE,1965,1965,3102,1,1,3010.762088,3010.762088,3507,NO,15.51,23.93,1,1.43,6109,107.923459,116.271475,126.136987,129.348753,I,Above,Gable,0,5701,,19.72120021,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 16934,NJBF000094784,720 VIRGINIA AVE,Hammonton,NJ,39.64649796,-74.7942149,RES1,3001,,17,NE,1999,1999,3102,1,1,3502.210898,3502.210898,3507,NO,15.69,22.85,1,2.37,6112,108.000758,116.344172,126.213892,129.463615,I,Above,Hip,0,5701,,19.27034531,0,1.2,,,,1,1,,0.35,nav,1,1999,1,, 16935,NJBF000094808,86 N LIBERTY ST,Hammonton,NJ,39.64661608,-74.79982528,RES1,3001,,17,NE,1988,1988,3102,2,1,596.1538012,596.1538012,3507,NO,20.85,31.78,1,-0.85,6112,107.954078,116.299406,126.166976,129.3934,I,Above,Gable,0,5701,,26.31174137,0,1.1,,,,1,1,,0.15,nav,1,1988,2,, 16936,NJBF000094815,600 FAIRVIEW AVE,Hammonton,NJ,39.64664773,-74.80264677,RES1,3001,,17,NE,1940,1940,3102,1,1,1049.795346,1049.795346,3507,NO,18.1,25.14,1,2.01,6109,107.930869,116.277359,126.1437,129.358702,I,Above,Flat,0,5701,,21.62132891,0,0,,,,1,1,,0.03,nav,1,1940,1,, 16937,NJBF000094812,74 N LIBERTY ST,Hammonton,NJ,39.64663723,-74.79865491,RES1,3001,,17,NE,1979,1979,3102,2,1,3951.027908,3951.027908,3507,NO,34.98,45.31,1,2.54,6109,107.963639,116.308287,126.176421,129.407493,I,Above,Gable,0,5701,,40.14704097,0,1.2,,,,1,1,,0.03,nav,1,1979,2,, 16938,NJBF000094836,364 NORTH ST,Hammonton,NJ,39.64671758,-74.81007542,RES1,3001,,17,NE,1953,1953,3102,1,1,952.8748193,952.8748193,3507,NO,19.7,31.74,1,1.22,6109,107.870427,116.22016,126.082964,129.268555,I,Above,Gable,0,5701,,25.72005155,0,0,,,,1,1,,0.03,nav,1,1953,1,, 16939,NJBF000094839,604 FAIRVIEW AVE,Hammonton,NJ,39.64672812,-74.80251717,RES1,3001,,17,NE,1920,1920,3102,2,1,1473.391035,1473.391035,3507,NO,38.5,50.94,1,1.06,6109,107.9317,116.277651,126.144221,129.359456,I,Above,Gable,0,5701,,44.72113407,0,0,,,,1,1,,0.03,nav,1,1920,2,, 16940,NJBF000094837,347 NORTH ST,Hammonton,NJ,39.64671965,-74.81129022,RES1,3001,,17,NE,1952,1952,3102,1,2,2914.803742,2914.803742,3507,NO,16.15,25.65,1,1.5,6112,107.860651,116.210983,126.073152,129.254046,I,Above,Flat,0,5701,,20.89919405,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 16941,NJBF000094828,565 FAIRVIEW AVE AT 4TH,Hammonton,NJ,39.6466918,-74.80340412,RES1,3001,,17,NE,1967,1967,3102,1,1,3367.472875,3367.472875,3507,NO,14.01,23.04,1,0.04,6109,107.924563,116.271157,126.137233,129.349068,I,Above,Gable,0,5701,,18.52407423,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 16942,NJBF000094843,358 NORTH ST,Hammonton,NJ,39.64677382,-74.81040529,RES1,3001,,17,NE,1953,1953,3102,1,1,1767.105799,1767.105799,3507,NO,12.84,17.98,1,0.03,6109,107.86761,116.217182,126.079927,129.264056,I,Above,Hip,0,5701,,15.40813667,0,0,,,,1,1,,0.03,nav,1,1953,1,, 16943,NJBF000094852,608 FAIRVIEW AVE,Hammonton,NJ,39.64683109,-74.80228246,RES1,3001,,17,NE,1960,1960,3102,1,1,1051.724912,1051.724912,3507,NO,13.95,28.83,1,1.32,6112,107.933323,116.278547,126.145442,129.361249,I,Above,Gable,0,5701,,21.39170541,0,0,,,,1,1,,0.35,nav,1,1960,1,, 16944,NJBF000094863,347 NORTH ST,Hammonton,NJ,39.64691271,-74.81126535,RES1,3001,,17,NE,1952,1952,3102,1,2,655.2759832,655.2759832,3507,NO,16.36,23.84,1,2.54,6112,107.860295,116.209491,126.072065,129.252419,I,Above,Gable,0,5701,,20.09772926,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 16945,NJBF000094860,347 NORTH ST,Hammonton,NJ,39.64690304,-74.81156125,RES1,3001,,17,NE,1952,1952,3102,1,2,1701.194433,1701.194433,3507,NO,13.55,22.72,1,-0.58,6112,107.857947,116.207351,126.069747,129.248996,I,Above,Flat,0,5701,,18.13901683,0,1.2,,,,1,1,,0.15,nav,1,1952,1,, 16946,NJBF000094851,725 VIRGINIA AVE,Hammonton,NJ,39.64682655,-74.79487772,RES1,3001,,17,NE,1982,1982,3102,1,1,3995.604684,3995.604684,3507,NO,19.64,33.26,1,2.46,6112,107.994301,116.336029,126.20618,129.451931,I,Above,Gable,0,5701,,26.45059861,0,1.2,,,,1,1,,0.35,nav,1,1982,1,, 16947,NJBF000094864,364 NORTH ST,Hammonton,NJ,39.64691353,-74.81020452,RES1,3001,,17,NE,1953,1953,3102,1,1,1816.542623,1816.542623,3507,NO,20.8,28.81,1,1.35,6109,107.868815,116.217469,126.080605,129.265041,I,Above,Flat,0,5701,,24.80575082,0,0,,,,1,1,,0.03,nav,1,1953,1,, 16948,NJBF000094859,80 N LIBERTY ST,Hammonton,NJ,39.64688988,-74.79907774,RES1,3001,,17,NE,1987,1987,3102,1,1,3068.929561,3068.929561,3507,NO,16.83,28.09,1,1.84,6112,107.959426,116.302756,126.171237,129.399676,I,Above,Gable,0,5701,,22.45874875,0,1.2,,,,1,1,,0.35,nav,1,1987,1,, 16949,NJBF000094870,349 NORTH ST,Hammonton,NJ,39.64696417,-74.81096846,RES1,3001,,17,NE,1973,1973,3102,2,1,1538.338723,1538.338723,3507,NO,37.89,47.29,1,1.82,6112,107.862534,116.211282,126.074118,129.255446,I,Above,Gable,0,5701,,42.58911662,0,0,,,,1,1,,0.35,nav,1,1973,2,, 16950,NJBF000094876,620 FAIRVIEW AVE,Hammonton,NJ,39.64699101,-74.80208108,RES1,3001,,17,NE,1940,1940,3102,2,1,1510.224434,1510.224434,3507,NO,37.59,45.29,1,0.97,6112,107.934503,116.278677,126.146001,129.36204,I,Above,Gable,0,5701,,41.43685694,0,0,,,,1,1,,0.35,nav,1,1940,2,, 16951,NJBF000094889,90 N LIBERTY ST,Hammonton,NJ,39.64705621,-74.7998364,RES1,3001,,17,NE,1985,1985,3102,2,2,2894.447863,2894.447863,3507,NO,36.8,50.87,1,0.09,6112,107.952714,116.295414,126.163906,129.38869,I,Above,Gable,0,5701,,43.83527501,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 16952,NJBF000094895,534 4TH ST,Hammonton,NJ,39.64707508,-74.80402853,RES1,3001,,17,NE,1965,1965,3102,1,1,2470.842462,2470.842462,3507,NO,20.5,34.54,1,2.99,6109,107.918361,116.262989,126.129564,129.337578,I,Above,Gable,0,5701,,27.5178943,0,0,,,,1,1,,0.03,nav,1,1965,1,, 16953,NJBF000094886,86 N LIBERTY ST,Hammonton,NJ,39.64704349,-74.79947471,RES1,3001,,17,NE,1988,1988,3102,2,1,4431.822602,4431.822602,3507,NO,22.87,33.44,1,1.22,6112,107.955718,116.298322,126.166949,129.393231,I,Above,Gable,0,5701,,28.15534947,0,1.1,,,,1,1,,0.35,nav,1,1988,2,, 16954,NJBF000094901,366 NORTH ST,Hammonton,NJ,39.64710196,-74.80992899,RES1,3001,,17,NE,1970,1970,3102,1,1,2569.722241,2569.722241,3507,NO,10.65,16.8,1,-0.98,6109,107.870495,116.21791,126.081575,129.266451,I,Above,Gable,0,5701,,13.728139,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 16955,NJBF000094910,368 NORTH ST,Hammonton,NJ,39.64714216,-74.8091139,RES1,3001,,17,NE,1976,1976,3102,2,1,1689.562175,1689.562175,3507,NO,37.68,52.55,1,1.67,6109,107.876948,116.223717,126.087888,129.275782,I,Above,Gable,0,5701,,45.11661576,0,0,,,,1,1,,0.03,nav,1,1976,2,, 16956,NJBF000094916,536 4TH ST,Hammonton,NJ,39.6471668,-74.80428766,RES1,3001,,17,NE,1960,1960,3102,1,1,837.5112304,837.5112304,3507,NO,16.53,22.61,1,0.72,6109,107.915985,116.260196,126.126837,129.333507,I,Above,Gable,0,5701,,19.57204777,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16957,NJBF000094905,743 VIRGINIA AVE,Hammonton,NJ,39.64712013,-74.79326415,RES1,3001,,17,NE,1980,1980,3102,2,1,2757.761914,2757.761914,3507,NO,27.31,39.86,1,2.18,6112,108.00686,116.346057,126.217496,129.468765,I,Above,Gable,0,5701,,33.58744009,0,0,,,,1,1,,0.35,nav,1,1980,2,, 16958,NJBF000094914,368 NORTH ST,Hammonton,NJ,39.64715898,-74.80890341,RES1,3001,,17,NE,1976,1976,3102,2,1,1915.41411,1915.41411,3507,NO,29.43,43.86,1,-0.07,6112,107.878601,116.225164,126.089479,129.278133,I,Above,Gable,0,5701,,36.64898041,0,0,,,,1,1,,0.35,nav,1,1976,2,, 16959,NJBF000094912,731 VIRGINIA AVE,Hammonton,NJ,39.64715628,-74.79450895,RES1,3001,,17,NE,1968,1968,3102,1,1,3960.71894,3960.71894,3507,NO,14.29,26.86,1,2.97,6112,107.996409,116.33597,126.206979,129.452998,I,Above,Gable,0,5701,,20.57538474,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 16960,NJBF000094919,355 NORTH ST,Hammonton,NJ,39.64719063,-74.81065289,RES1,3001,,17,NE,1984,1984,3102,2,1,2865.372463,2865.372463,3507,NO,37.75,43.83,1,-0.53,6112,107.864412,116.211675,126.07514,129.25693,I,Above,Gable,0,5701,,40.79277876,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 16961,NJBF000094925,347A NORTH ST,Hammonton,NJ,39.64722334,-74.81141406,RES1,3001,,17,NE,2005,2005,3102,1,1,2504.777369,2504.777369,3507,NO,17.66,29.26,1,-0.04,6112,107.858204,116.20567,126.068795,129.247556,I,Above,Gable,0,5701,,23.45675584,0,0,,,,1,1,,0.15,nav,1,2005,1,, 16962,NJBF000094928,607 FAIRVIEW AVE,Hammonton,NJ,39.64723175,-74.80317095,RES1,3001,,17,NE,1916,1916,3102,2,1,1625.572409,1625.572409,3507,NO,28.63,39.44,1,2.14,6112,107.924902,116.268176,126.13549,129.346346,I,Above,Gable,0,5701,,34.03222936,0,0,,,,1,1,,0.35,nav,1,1916,2,, 16963,NJBF000094922,739 VIRGINIA AVE,Hammonton,NJ,39.64720337,-74.79362553,RES1,3001,,17,NE,1965,1965,3102,2,1,1968.712371,1968.712371,3507,NO,28.64,41.58,1,0.02,6112,108.003608,116.34247,126.213941,129.463405,I,Above,Gable,0,5701,,35.10692031,0,0,,,,1,1,,0.35,nav,1,1965,2,, 16964,NJBF000094934,90 N LIBERTY ST,Hammonton,NJ,39.64725724,-74.80019597,RES1,3001,,17,NE,1985,1985,3102,2,2,1555.780387,1555.780387,3507,NO,30.23,35.47,1,1.59,6112,107.949176,116.290847,126.1596,129.382214,I,Above,Gable,0,5701,,32.85159366,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 16965,NJBF000094933,735 VIRGINIA AVE,Hammonton,NJ,39.64725696,-74.79402524,RES1,3001,,17,NE,1968,1968,3102,1,1,3846.33181,3846.33181,3507,NO,18.49,33.19,1,-0.2,6112,108.000135,116.338856,126.210281,129.457901,I,Above,Gable,0,5701,,25.83683455,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 16966,NJBF000094941,368 NORTH ST,Hammonton,NJ,39.64729818,-74.80936532,RES1,3001,,17,NE,1976,1976,3102,2,1,4443.458969,4443.458969,3507,NO,37.92,48.98,1,1.05,6112,107.874473,116.220456,126.084816,129.271217,I,Above,Gable,0,5701,,43.45437848,0,0,,,,1,1,,0.35,nav,1,1976,2,, 16967,NJBF000094954,536 4TH ST,Hammonton,NJ,39.64734877,-74.80426706,RES1,3001,,17,NE,1960,1960,3102,1,1,2220.753555,2220.753555,3507,NO,17.27,25.76,1,1.73,6109,107.91563,116.258752,126.125782,129.3319,I,Above,Hip,0,5701,,21.51171737,0,0,,,,1,1,,0.03,nav,1,1960,1,, 16968,NJBF000094970,538 4TH ST,Hammonton,NJ,39.64743149,-74.80445894,RES1,3001,,17,NE,1938,1938,3102,2,1,1379.374555,1379.374555,3507,NO,27.25,37.06,1,0.48,6109,107.91383,116.256561,126.123669,129.328746,I,Above,Flat,0,5701,,32.15516821,0,0,,,,1,1,,0.03,nav,1,1938,2,, 16969,NJBF000094976,609 FAIRVIEW AVE,Hammonton,NJ,39.64744222,-74.80294557,RES1,3001,,17,NE,1920,1920,3102,2,1,1167.080992,1167.080992,3507,NO,30.3,35.63,1,-0.32,6112,107.926131,116.268045,126.135906,129.346913,I,Above,Flat,0,5701,,32.96455666,0,0,,,,1,1,,0.35,nav,1,1920,2,, 16970,NJBF000094975,761 VIRGINIA AVE,Hammonton,NJ,39.64744064,-74.79292372,RES1,3001,,17,NE,1972,1972,3102,2,1,1981.3189,1981.3189,3507,NO,29.58,37.85,1,1.89,6112,108.008757,116.345843,126.218112,129.469551,I,Above,Gable,0,5701,,33.71649581,0,0,,,,1,1,,0.35,nav,1,1972,2,, 16971,NJBF000094982,357 NORTH ST,Hammonton,NJ,39.64749087,-74.81025949,RES1,3001,,17,NE,1920,1920,3102,2,1,1248.497998,1248.497998,3507,NO,31.15,45.08,1,-0.38,6112,107.866715,116.212026,126.076312,129.258624,I,Above,Flat,0,5701,,38.11443831,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 16972,NJBF000094988,546 4TH ST,Hammonton,NJ,39.64752352,-74.80459472,RES1,3001,,17,NE,1938,1938,3102,2,1,1173.860346,1173.860346,3507,NO,31.61,44.61,1,1.82,6109,107.912454,116.254702,126.121938,129.326156,I,Above,Flat,0,5701,,38.10775848,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 16973,NJBF000094992,98 N LIBERTY ST,Hammonton,NJ,39.64754168,-74.7997802,RES1,3001,,17,NE,1979,1979,3102,2,1,2511.555814,2511.555814,3507,NO,31.92,43.61,1,0.1,6112,107.951766,116.291528,126.161072,129.384322,I,Above,Gable,0,5701,,37.76688659,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 16974,NJBF000095005,370 NORTH ST,Hammonton,NJ,39.64765877,-74.80902252,RES1,3001,,17,NE,1958,1958,3102,1,1,1633.342858,1633.342858,3507,NO,17.56,26.53,1,-0.13,6112,107.876188,116.219882,126.085162,129.271676,I,Above,Gable,0,5701,,22.04335525,0,0,,,,1,1,,0.35,nav,1,1958,1,, 16975,NJBF000095012,380 NORTH ST,Hammonton,NJ,39.64770302,-74.80791188,RES1,3001,,17,NE,1991,1991,3102,2,1,1704.103344,1704.103344,3507,NO,33.08,46.5,1,0.7,6109,107.885033,116.227901,126.093846,129.284507,I,Above,Gable,0,5701,,39.7869066,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 16976,NJBF000095014,100 N LIBERTY ST,Hammonton,NJ,39.64772123,-74.80005652,RES1,3001,,17,NE,1973,1973,3102,2,1,2340.944089,2340.944089,3507,NO,38.5,53.31,1,0.9,6112,107.948973,116.287798,126.157595,129.379091,I,Above,Gable,0,5701,,45.90507546,0,1.2,,,,1,1,,0.35,nav,1,1973,2,, 16977,NJBF000095031,560 4TH ST,Hammonton,NJ,39.64781255,-74.80499793,RES1,3001,,17,NE,1910,1910,3102,2,2,1188.401345,1188.401345,3507,NO,34.24,45.91,1,2.15,6109,107.908339,116.249079,126.11672,129.318355,I,Above,Flat,0,5701,,40.07736689,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 16978,NJBF000095038,376 NORTH ST,Hammonton,NJ,39.64786907,-74.808603,RES1,3001,,17,NE,1960,1960,3102,1,1,618.4402287,618.4402287,3507,NO,22,33.97,1,2.7,6112,107.87897,116.221218,126.087149,129.274579,I,Above,Gable,0,5701,,27.98678128,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 16979,NJBF000095023,767 VIRGINIA AVE,Hammonton,NJ,39.64777463,-74.79299458,RES1,3001,,17,NE,1971,1971,3102,1,1,4230.198661,4230.198661,3507,NO,13.99,27.24,1,2.97,6112,108.007195,116.342283,126.215244,129.465113,I,Above,Gable,0,5701,,20.61584871,0,0,,,,1,1,,0.35,nav,1,1971,1,, 16980,NJBF000095044,376 NORTH ST,Hammonton,NJ,39.64789765,-74.80879647,RES1,3001,,17,NE,1960,1960,3102,1,1,2351.619827,2351.619827,3507,NO,13.68,23.95,1,1.51,6112,107.877329,116.219505,126.085396,129.271984,I,Above,Gable,0,5701,,18.81508,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 16981,NJBF000095053,562 4TH ST,Hammonton,NJ,39.64793541,-74.80525477,RES1,3001,,17,NE,1960,1960,3102,1,1,1954.197689,1954.197689,3507,NO,14.83,25.13,1,-0.94,6112,107.905897,116.246045,126.113814,129.314021,I,Above,Gable,0,5701,,19.98053174,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 16982,NJBF000095046,104 N LIBERTY ST,Hammonton,NJ,39.64790218,-74.80032756,RES1,3001,,17,NE,1997,1997,3102,1,1,3246.314866,3246.314866,3507,NO,12.88,22.8,1,1.94,6112,107.946224,116.2841,126.154156,129.373918,I,Above,Gable,0,5701,,17.83866477,0,1.2,,,,1,1,,0.35,nav,1,1997,1,, 16983,NJBF000095072,380 NORTH ST,Hammonton,NJ,39.64800035,-74.80841911,RES1,3001,,17,NE,1991,1991,3102,2,1,2947.773056,2947.773056,3507,NO,24.76,33.13,1,2,6112,107.880077,116.221461,126.087758,129.275458,I,Above,Gable,0,5701,,28.94540126,0,1.2,,,,1,1,,0.35,nav,1,1991,2,, 16984,NJBF000095087,584 4TH ST,Hammonton,NJ,39.6480741,-74.80571671,RES1,3001,,17,NE,1920,1920,3102,2,1,756.0870971,756.0870971,3507,NO,22.8,35.12,1,0.98,6112,107.901742,116.241304,126.109132,129.307057,I,Above,Gable,0,5701,,28.96098169,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 16985,NJBF000095073,771 VIRGINIA AVE,Hammonton,NJ,39.64800161,-74.79267757,RES1,3001,,17,NE,1968,1968,3102,1,1,2981.682932,2981.682932,3507,NO,17.1,27.87,1,-0.45,6112,108.009174,116.34273,126.216311,129.466611,I,Above,Gable,0,5701,,22.4853436,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 16986,NJBF000095107,365 NORTH ST,Hammonton,NJ,39.64816693,-74.80928084,RES1,3001,,17,NE,1982,1982,3102,2,1,2940.975234,2940.975234,3507,NO,36.85,50.33,1,1.63,6112,107.872638,116.213489,126.079681,129.263502,I,Above,Gable,0,5701,,43.59439627,0,1.2,,,,1,1,,0.15,nav,1,1982,2,, 16987,NJBF000095110,775 VIRGINIA AVE,Hammonton,NJ,39.6481916,-74.79241981,RES1,3001,,17,NE,1988,1988,3102,2,1,2226.563482,2226.563482,3507,NO,32.78,44.64,1,0.69,6112,108.01077,116.343046,126.217144,129.467772,I,Above,Gable,0,5701,,38.70736542,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 16988,NJBF000095119,584 4TH ST,Hammonton,NJ,39.64823176,-74.80572784,RES1,3001,,17,NE,1920,1920,3102,2,1,2251.783912,2251.783912,3507,NO,29.83,38.17,1,-0.83,6112,107.901195,116.239829,126.107981,129.305321,I,Above,Gable,0,5701,,34.00113798,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 16989,NJBF000095135,384 NORTH ST,Hammonton,NJ,39.64832824,-74.80819177,RES1,3001,,17,NE,1900,1900,3102,2,1,1552.883834,1552.883834,3507,NO,27.85,36.19,1,2.33,6112,107.880961,116.220302,126.087395,129.274867,I,Above,Gable,0,5701,,32.01699037,0,0,,,,1,1,,0.35,nav,1,1900,2,, 16990,NJBF000095095,10 N WHITE HORSE PIKE,Hammonton,NJ,39.64810332,-74.79058907,COM4,3003,739,NaN,ME,1969,0,3401,1,1,19924.7389,19924.7389,3507,NO,21.17,35.84,1,2.96,6112,108.026315,116.358263,126.232894,129.491395,I,Above,Flat,0,5701,,28.50622681,0,0,,,,1,1,,1,nav,1,1969,1,, 16991,NJBF000095154,592 4TH ST,Hammonton,NJ,39.64844932,-74.80599796,RES1,3001,,17,NE,1920,1920,3102,2,1,1305.699049,1305.699049,3507,NO,37.6,45.67,1,2.78,6112,107.898375,116.235866,126.104335,129.299881,I,Above,Gable,0,5701,,41.63703815,0,0,,,,1,1,,0.35,nav,1,1920,2,, 16992,NJBF000095156,598 4TH ST,Hammonton,NJ,39.64846102,-74.80669049,RES1,3001,,17,NE,1920,1920,3102,2,1,2184.886508,2184.886508,3507,NO,39.25,47.66,1,2.86,6112,107.892729,116.230507,126.09865,129.291472,I,Above,Gable,0,5701,,43.4550397,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 16993,NJBF000095151,386 NORTH ST,Hammonton,NJ,39.64843136,-74.80784669,RES1,3001,,17,NE,1964,1964,3102,1,1,3273.442411,3273.442411,3507,NO,18.61,28.17,1,1.75,6112,107.883451,116.222007,126.089493,129.277947,I,Above,Gable,0,5701,,23.3893552,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 16994,NJBF000095026,75 N LIBERTY ST,Hammonton,NJ,39.64779321,-74.79753878,EDU1,3004,,NaN,E,1965,1965,3401,3,1,114770.5864,114770.5864,3507,NO,39.3,49.53,1,0.26,6106,107.969486,116.306649,126.177728,129.40906,I,Above,Flat,0,5701,,44.41629624,0,0,,,,1,1,,0.03,nav,1,1965,3,, 16995,NJBF000095174,598 4TH ST,Hammonton,NJ,39.64857975,-74.80622387,RES1,3001,,17,NE,1920,1920,3102,2,1,2012.340673,2012.340673,3507,NO,31.25,45.29,1,-0.18,6112,107.896161,116.232996,126.101625,129.295845,I,Above,Gable,0,5701,,38.27332225,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 16996,NJBF000095180,606 4TH ST,Hammonton,NJ,39.64861647,-74.80686014,RES1,3001,,17,NE,1900,1900,3102,2,1,1333.815462,1333.815462,3507,NO,32.16,40.29,1,0.99,6112,107.890902,116.227855,126.096235,129.287872,I,Above,Gable,0,5701,,36.22291662,0,1.2,,,,1,1,,0.35,nav,1,1900,2,, 16997,NJBF000095181,390 NORTH ST,Hammonton,NJ,39.64861733,-74.80764736,RES1,3001,,17,NE,1988,1988,3102,2,1,2287.650831,2287.650831,3507,NO,36.29,45.15,1,2.07,6112,107.884529,116.221887,126.089864,129.27846,I,Above,Gable,0,5701,,40.72161518,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 16998,NJBF000095194,30 N WHITE HORSE PK,Hammonton,NJ,39.64869298,-74.79113563,COM4,3003,739,NaN,ME,1980,1980,3401,1,1,2447.568696,2447.568696,3507,NO,11.46,21.34,1,0.43,6112,108.020022,116.348625,126.224329,129.478288,I,Above,Gable,0,5701,,16.40060452,0,0,,,,1,1,,1,nav,1,1980,1,, 16999,NJBF000095204,598 4TH ST,Hammonton,NJ,39.64873732,-74.80648634,RES1,3001,,17,NE,1920,1920,3102,2,1,2264.368813,2264.368813,3507,NO,34.93,40.88,1,-0.1,6112,107.893582,116.229627,126.09845,129.29112,I,Above,Gable,0,5701,,37.90584326,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 17000,NJBF000095213,394 NORTH ST,Hammonton,NJ,39.64877998,-74.8074359,RES1,3001,,17,NE,1989,1989,3102,2,1,1884.384104,1884.384104,3507,NO,31.44,38.04,1,0.17,6112,107.885764,116.222052,126.090477,129.279335,I,Above,Gable,0,5701,,34.74057949,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 17001,NJBF000095198,40 N WHITE HORSE PK,Hammonton,NJ,39.6487082,-74.79202078,COM4,3003,569,NaN,ME,1960,1960,3401,1,1,37771.19764,37771.19764,3507,NO,17.04,23.75,1,-0.89,6112,108.012592,116.341531,126.216914,129.467192,I,Above,Flat,0,5701,,20.39500135,0,0,,,,1,1,,1,nav,1,1960,1,, 17002,NJBF000095306,91 LINDA AVE,Hammonton,NJ,39.64934151,-74.79326324,COM4,3003,,17,ME,1980,1980,3401,1,2,2819.791689,2819.791689,3507,NO,16.63,24.36,1,1.4,6112,108.000397,116.326086,126.202341,129.445146,I,Above,Gable,0,5701,,20.49300661,0,1.2,,,,1,1,,1,nav,1,1980,1,, 17003,NJBF000095349,90 N WHITE HORSE PK,Hammonton,NJ,39.64962267,-74.79243319,COM4,3003,210,NaN,ME,1960,1960,3401,3,1,1920.269274,1920.269274,3507,NO,57.04,70.48,1,0,6110,108.006485,116.330051,126.207265,129.452361,I,Above,Gable,0,5701,,63.75857277,0,0,,,,1,1,,1,nav,1,1960,3,, 17004,NJBF000095374,118 N WHITE HORSE PIKE,Hammonton,NJ,39.64976713,-74.79355835,COM4,3003,219,NaN,ME,1969,0,3401,1,1,889.8715283,889.8715283,3507,NO,16.45,22.61,1,-0.97,6112,107.996702,116.319955,126.197014,129.437018,I,Above,Flat,0,5701,,19.53313045,0,0,,,,1,1,,1,nav,1,1969,1,, 17005,NJBF000095360,51 N WHITE HORSE PK,Hammonton,NJ,39.64970618,-74.79125476,GOV2,3004,,NaN,E,1970,1970,3401,1,1,11339.30035,11339.30035,3507,NO,21.05,27.5,1,2.79,6112,108.016068,116.338541,126.216419,129.465977,I,Above,Gable,0,5701,,24.27340785,0,0,,,,1,1,,1,nav,1,1970,1,, 17006,NJBF000095381,90 N WHITE HORSE PK,Hammonton,NJ,39.64980645,-74.7930721,COM4,3003,210,NaN,ME,1960,1960,3401,3,1,19396.02176,19396.02176,3507,NO,57.65,68.56,1,2.68,6112,108.00063,116.323401,126.20075,129.442565,I,Above,Hip,0,5701,,63.10404254,0,0,,,,1,1,,1,nav,1,1960,3,, 17007,NJBF000095464,51 N WHITE HORSE PK,Hammonton,NJ,39.65027125,-74.7907762,COM4,3003,,NaN,ME,1970,1970,3401,1,1,2130.323792,2130.323792,3507,NO,11.53,23.92,1,0.88,6112,108.018414,116.337196,126.216513,129.465836,I,Above,Gable,0,5701,,17.72781306,0,0,,,,1,1,,1,nav,1,1970,1,, 17008,NJBF000095403,43 N WHITE HORSE PK,Hammonton,NJ,39.64993845,-74.78997997,COM7,3001,270,NaN,ME,1980,1980,3401,2,1,47026.4405,47026.4405,3507,NO,25.52,32.26,1,1.33,6112,108.026048,116.34647,126.22537,129.479222,I,Above,Flat,0,NaN,,28.89048517,0,0,,,,1,1,,1,nav,1,1980,2,, 17009,NJBF000095494,105 N WHITE HORSE PK,Hammonton,NJ,39.6504201,-74.79214025,COM4,3003,560,NaN,ME,1960,1960,3401,1,1,3939.99512,3939.99512,3507,NO,17.46,26.92,1,2.86,6112,108.006594,116.325154,126.204241,129.447477,I,Above,Flat,0,5701,,22.1899851,0,0,,,,1,1,,1,nav,1,1960,1,, 17010,NJBF000095511,726 LAUREL AVE,Hammonton,NJ,39.65052179,-74.75719501,AGR1,3002,,17,NE,1971,1971,3401,2,1,508.8929743,508.8929743,3507,NO,32.59,37.73,1,0.39,6112,108.30788,116.609672,126.498743,129.892624,I,Above,Gable,0,5701,,35.16042514,0,0,,,,1,1,,0.15,nav,1,1971,2,, 17011,NJBF000095515,111 N WHITE HORSE PK,Hammonton,NJ,39.65056858,-74.79266703,COM4,3003,739,NaN,ME,1960,1960,3401,1,1,3938.430962,3938.430962,3507,NO,17.16,24.97,1,2.61,6112,108.001767,116.319688,126.198883,129.439431,I,Above,Gable,0,5701,,21.06551935,0,0,,,,1,1,,0.7,nav,1,1960,1,, 17012,NJBF000095677,750 LAUREL AVE,Hammonton,NJ,39.65167831,-74.753191,AGR1,3002,,15,NE,1960,1960,3401,1,1,899.540573,899.540573,3507,NO,18.13,31.1,1,0.46,6112,108.340302,116.632857,126.525217,129.931917,I,Above,Flat,0,5701,,24.61390178,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17013,NJBF000095674,726 LAUREL AVE,Hammonton,NJ,39.65166561,-74.75729323,AGR1,3002,,17,NE,1971,1971,3401,2,1,1640.125943,1640.125943,3507,NO,29.76,42.38,1,-0.31,6109,108.303556,116.597915,126.489728,129.877356,I,Above,Gable,0,5701,,36.06909592,0,0,,,,1,1,,0.03,nav,1,1971,2,, 17014,NJBF000095718,640 LAUREL AVE,Hammonton,NJ,39.65192785,-74.75925475,AGR1,3002,,14,NE,1970,1970,3401,2,2,980.9731078,980.9731078,3507,NO,23.58,36.28,1,1.52,6112,108.285279,116.578776,126.470921,129.848234,I,Above,Flat,0,NaN,,29.93142243,0,0,,,,1,1,,0.15,nav,1,1970,2,, 17015,NJBF000095700,750 LAUREL AVE,Hammonton,NJ,39.65181159,-74.75334885,AGR1,3002,,15,NE,1960,1960,3401,1,1,4303.974612,4303.974612,3507,NO,14.95,20.52,1,1.52,6112,108.338473,116.630213,126.522882,129.928138,I,Above,Flat,0,5701,,17.73676148,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17016,NJBF000095735,750 LAUREL AVE,Hammonton,NJ,39.6520432,-74.7532278,AGR1,3002,,15,NE,1960,1960,3401,1,1,2306.210959,2306.210959,3507,NO,16.64,24.57,1,2.35,6112,108.338861,116.62903,126.522277,129.926896,I,Above,Flat,0,5701,,20.60195127,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17017,NJBF000095741,760 LAUREL AVE,Hammonton,NJ,39.65211238,-74.75125391,AGR1,3002,,16,NE,1960,1960,3401,1,1,2966.149768,2966.149768,3507,NO,18.23,29.27,1,1.89,6112,108.356457,116.64535,126.538968,129.952545,I,Above,Flat,0,5701,,23.74575966,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17018,NJBF000095765,760 LAUREL AVE,Hammonton,NJ,39.6522933,-74.7511582,AGR1,3002,,16,NE,1960,1960,3401,1,1,2791.681736,2791.681736,3507,NO,13.72,21.46,1,2.21,6112,108.356774,116.644431,126.538503,129.951576,I,Above,Flat,0,5701,,17.59127828,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17019,NJBF000095867,530 LAUREL AVE,Hammonton,NJ,39.65308152,-74.76439921,AGR1,3002,,16,NE,1965,1965,3401,1,1,3570.993916,3570.993916,3507,NO,19.18,30.13,1,1.58,6109,108.236291,116.524626,126.418588,129.767234,I,Above,Gable,0,5701,,24.65696455,0,0,,,,1,1,,0.03,nav,1,1965,1,, 17020,NJBF000095883,530 LAUREL AVE,Hammonton,NJ,39.6531938,-74.76444607,AGR1,3002,,16,NE,1965,1965,3401,3,1,2581.993777,2581.993777,3507,NO,50.8,59.19,1,0.84,6112,108.235539,116.523175,126.417395,129.765303,I,Above,Gable,0,5701,,54.995581,0,0,,,,1,1,,0.15,nav,1,1965,3,, 17021,NJBF000095900,530 LAUREL AVE,Hammonton,NJ,39.65333982,-74.76441052,AGR1,3002,,16,NE,1965,1965,3401,3,1,1046.883307,1046.883307,3507,NO,47.78,61.39,1,0.43,6112,108.235407,116.522085,126.416663,129.764032,I,Above,Flat,0,5701,,54.58313371,0,0,,,,1,1,,0.15,nav,1,1965,3,, 17022,NJBF000095950,89 RT 206,Hammonton,NJ,39.65367951,-74.78581875,RES1,3001,,16,NE,1972,1972,3102,1,1,1527.667722,1527.667722,3505,NO,19.25,25.79,3,3.98,6112,108.049976,116.345227,126.234166,129.490155,I,Above,Gable,0,5701,,22.52458799,0,0,,,,1,1,,0.35,nav,1,1972,1,, 17023,NJBF000096052,174 RT 206,Hammonton,NJ,39.65439786,-74.78413232,RES1,3001,,17,NE,1981,1981,3102,2,1,1888.269419,1888.269419,3505,NO,29.94,40.78,3,-1.08,6112,108.062091,116.351992,126.243224,129.50313,I,Above,Gable,0,5701,,35.36090771,0,0,,,,1,1,,0.15,nav,1,1981,2,, 17024,NJBF000096094,178 RT 206,Hammonton,NJ,39.65466934,-74.78406231,RES1,3001,,17,NE,1955,1955,3102,2,1,1125.401406,1125.401406,3505,NO,26.5,39.18,3,2.62,6112,108.061876,116.350058,126.241941,129.501042,I,Above,Gable,0,5701,,32.83908055,0,0,,,,1,1,,0.15,nav,1,1955,2,, 17025,NJBF000096127,178 RT 206,Hammonton,NJ,39.65490186,-74.78397086,RES1,3001,,17,NE,1955,1955,3102,2,1,1664.351386,1664.351386,3505,NO,29.25,36.99,3,2.05,6112,108.061952,116.348638,126.241094,129.499625,I,Above,Flat,0,5701,,33.11902224,0,0,,,,1,1,,0.15,nav,1,1955,2,, 17026,NJBF000096136,177 RT 206,Hammonton,NJ,39.65493885,-74.78508407,RES1,3001,,17,NE,1952,1952,3102,1,1,2391.351186,2391.351186,3505,NO,21.39,30.77,3,4.66,6112,108.052434,116.339498,126.231612,129.485545,I,Above,Gable,0,5701,,26.0829263,0,0,,,,1,1,,0.35,nav,1,1952,1,, 17027,NJBF000096174,200 RT 206,Hammonton,NJ,39.65513708,-74.78351672,RES1,3001,,17,NE,1995,1995,3102,2,1,581.6088939,581.6088939,3505,NO,39.87,45.91,3,8.22,6112,108.065094,116.350074,126.243245,129.502653,I,Above,Gable,0,5701,,42.88683533,0,1.2,,,,1,1,,0.15,nav,1,1995,2,, 17028,NJBF000096188,196 RT 206,Hammonton,NJ,39.65520066,-74.78371288,RES1,3001,,17,NE,1956,1956,3102,1,1,1504.401941,1504.401941,3505,NO,15.01,22.26,3,-1.78,6112,108.063243,116.347933,126.241179,129.499544,I,Above,Gable,0,5701,,18.63234874,0,1.2,,,,1,1,,0.15,nav,1,1956,1,, 17029,NJBF000096221,200 RT 206,Hammonton,NJ,39.65539074,-74.78344991,RES1,3001,,17,NE,1995,1995,3102,2,1,2179.08085,2179.08085,3505,NO,28.05,33.32,3,0.48,6112,108.064903,116.348268,126.242054,129.500709,I,Above,Gable,0,5701,,30.68721346,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 17030,NJBF000096243,212 RT 206,Hammonton,NJ,39.65555682,-74.78366396,RES1,3001,,17,NE,1995,1965,3102,1,1,613.584641,613.584641,3505,NO,22.38,35.84,3,4.21,6112,108.062595,116.345047,126.239137,129.496271,I,Above,Gable,0,5701,,29.11005501,0,0,,,,1,1,,0.35,nav,1,1995,1,, 17031,NJBF000096269,212 RT 206,Hammonton,NJ,39.65570371,-74.78312264,RES1,3001,,17,NE,1965,1965,3102,1,1,4363.277393,4363.277393,3505,NO,17.31,22.42,3,1.59,6112,108.066738,116.347978,126.242615,129.501318,I,Above,Gable,0,5701,,19.86399745,0,0,,,,1,1,,0.15,nav,1,1965,1,, 17032,NJBF000096328,374 OLD FORKS RD,Hammonton,NJ,39.65596613,-74.81840998,RES1,3001,,17,NE,1879,1879,3102,2,1,1753.540609,1753.540609,3507,NO,30.29,43.25,1,1.97,6112,107.776974,116.077911,125.955034,129.080605,I,Above,Gable,0,5701,,36.76770437,0,1.2,,,,1,1,,0.35,nav,1,1879,2,, 17033,NJBF000096311,214 RT 206,Hammonton,NJ,39.65587378,-74.78268626,RES1,3001,,18,NE,2006,2006,3102,1,1,4583.981447,4583.981447,3505,NO,20.48,28.33,3,2.46,6112,108.069934,116.349875,126.245073,129.504837,I,Above,Gable,0,5701,,24.40169547,0,1.2,,,,1,1,,0.15,nav,1,2006,1,, 17034,NJBF000096389,1009 N 3RD ST,Hammonton,NJ,39.65638956,-74.8197452,RES1,3001,,17,NE,1950,1950,3102,1,1,529.2588568,529.2588568,3507,NO,20.46,25.52,1,1.2,6112,107.765176,116.064556,125.941705,129.061343,I,Above,Gable,0,5701,,22.98751993,0,0,,,,1,1,,0.35,nav,1,1950,1,, 17035,NJBF000096407,373 OLD FORKS RD,Hammonton,NJ,39.65652115,-74.81832013,RES1,3001,,16,NE,1962,1962,3102,2,4,1837.867009,1837.867009,3507,NO,24.92,30.73,1,-0.39,6112,107.776056,116.07374,125.952093,129.076313,I,Above,Gable,0,5701,,27.82732983,0,1.2,,,,1,1,,0.35,nav,1,1962,2,, 17036,NJBF000096415,367 OLD FORKS RD,Hammonton,NJ,39.65656564,-74.81931378,REL1,3004,,NaN,ME,1968,1968,3401,2,1,4452.196678,4452.196678,3507,NO,37.63,51.09,1,1.38,6112,107.768063,116.066147,125.943949,129.064565,I,Above,Gable,0,5701,,44.35656427,0,0,,,,1,1,,0.03,nav,1,1968,2,, 17037,NJBF000096433,373 OLD FORKS RD,Hammonton,NJ,39.65668138,-74.81851452,RES1,3001,,16,NE,1962,1962,3102,2,4,992.6153384,992.6153384,3507,NO,27.91,41.9,1,2.4,6112,107.774042,116.070935,125.949501,129.072559,I,Above,Gable,0,5701,,34.90475074,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 17038,NJBF000096419,230 RT 206,Hammonton,NJ,39.65659155,-74.78240793,RES1,3001,,16,NE,1955,1955,3102,1,1,2348.699986,2348.699986,3505,NO,26.94,37.08,3,8.73,6112,108.070141,116.345459,126.242439,129.500416,I,Above,Flat,0,5701,,32.00726059,0,0,,,,1,1,,0.35,nav,1,1955,1,, 17039,NJBF000096431,373 OLD FORKS RD,Hammonton,NJ,39.65666692,-74.81798156,RES1,3001,,16,NE,1962,1962,3102,2,4,1840.77344,1840.77344,3507,NO,39.72,45.84,1,0.85,6112,107.778303,116.074924,125.953804,129.078766,I,Above,Gable,0,5701,,42.78093787,0,1.2,,,,1,1,,0.15,nav,1,1962,2,, 17040,NJBF000096454,1021 N 3RD ST,Hammonton,NJ,39.65685629,-74.81967921,RES1,3001,,17,NE,1951,1951,3102,2,1,508.9056071,508.9056071,3507,NO,39.77,50.31,1,2.52,6112,107.764327,116.06099,125.939165,129.05765,I,Above,Gable,0,5701,,45.04057577,0,0,,,,1,1,,0.15,nav,1,1951,2,, 17041,NJBF000096455,252 RT 206,Hammonton,NJ,39.65685784,-74.7814436,RES1,3001,,17,NE,1969,1969,3102,1,1,610.6714932,610.6714932,3505,NO,13.13,22.1,3,-2.33,6112,108.077529,116.350648,126.248614,129.509349,I,Above,Gable,0,5701,,17.61395768,0,0,,,,1,1,,0.15,nav,1,1969,1,, 17042,NJBF000096468,373 OLD FORKS RD,Hammonton,NJ,39.65697349,-74.8180573,RES1,3001,,16,NE,1962,1962,3102,2,4,637.8307676,637.8307676,3507,NO,33.31,47.95,1,0.9,6112,107.776809,116.071716,125.951198,129.074979,I,Above,Flat,0,5701,,40.62971114,0,1.2,,,,1,1,,0.15,nav,1,1962,2,, 17043,NJBF000096464,250 RT 206,Hammonton,NJ,39.65693956,-74.78216564,RES1,3001,,17,NE,1970,1970,3102,1,1,2667.623049,2667.623049,3505,NO,14.37,24.81,3,3.83,6112,108.071151,116.344165,126.242053,129.499588,I,Above,Gable,0,5701,,19.59042819,0,0,,,,1,1,,0.35,nav,1,1970,1,, 17044,NJBF000096485,252 RT 206,Hammonton,NJ,39.65709288,-74.78179163,RES1,3001,,17,NE,1969,1969,3102,1,1,630.068673,630.068673,3505,NO,17.32,31.72,3,5.2,6112,108.073866,116.345716,126.244105,129.502506,I,Above,Gable,0,5701,,24.5187402,0,0,,,,1,1,,0.15,nav,1,1969,1,, 17045,NJBF000096497,252 RT 206,Hammonton,NJ,39.65719439,-74.7819749,RES1,3001,,17,NE,1969,1969,3102,1,1,1791.33915,1791.33915,3505,NO,20.66,29.8,3,6.74,6112,108.072009,116.343333,126.24189,129.499158,I,Above,Gable,0,5701,,25.23042311,0,0,,,,1,1,,0.15,nav,1,1969,1,, 17046,NJBF000096571,255 RT 206,Hammonton,NJ,39.65774294,-74.78314752,RES1,3001,,17,NE,1960,1960,3102,1,1,1300.846339,1300.846339,3505,NO,22.35,36.03,3,5.24,6112,108.060413,116.32899,126.22839,129.478832,I,Above,Gable,0,5701,,29.18998915,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17047,NJBF000096600,257 RT 206,Hammonton,NJ,39.65803486,-74.78273929,RES1,3001,,17,NE,1925,1925,3102,2,1,2296.366127,2296.366127,3505,NO,39.09,45.09,3,1.89,6106,108.063,116.329524,126.229771,129.480655,I,Above,Gable,0,5701,,42.0917916,0,0,,,,1,1,,0.03,nav,1,1925,2,, 17048,NJBF000096619,261 RT 206,Hammonton,NJ,39.65828525,-74.78253405,RES1,3001,,17,NE,1920,1920,3102,1,1,1323.141378,1323.141378,3505,NO,27.57,37.75,3,8.8,6110,108.063984,116.328834,126.229751,129.480441,I,Above,Gable,0,5701,,32.65758654,0,0,,,,1,1,,0.15,nav,1,1920,1,, 17049,NJBF000096624,272 RT 206,Hammonton,NJ,39.65830723,-74.78076785,REL1,3001,,NaN,ME,1978,1978,3401,1,1,11525.88391,11525.88391,3507,NO,16.36,28.09,1,-0.81,6112,108.078915,116.342605,126.244247,129.501787,I,Above,Flat,0,NaN,,22.22833234,0,0,,,,1,1,,0.15,nav,1,1978,1,, 17050,NJBF000096639,265 RT 206,Hammonton,NJ,39.65849138,-74.78234933,RES1,3001,,17,NE,1900,1900,3102,1,1,2299.27601,2299.27601,3505,NO,9.21,21.62,3,-2.84,6106,108.064932,116.328392,126.229867,129.480459,I,Above,Gable,0,5701,,15.41688595,0,0,,,,1,1,,0.03,nav,1,1900,1,, 17051,NJBF000096673,267 RT 206,Hammonton,NJ,39.65892954,-74.78221187,RES1,3001,,17,NE,1940,1940,3102,1,1,1846.583952,1846.583952,3505,NO,9.75,20.27,3,-1.8,6112,108.06477,116.325415,126.227985,129.47736,I,Above,Gable,0,5701,,15.00742931,0,0,,,,1,1,,0.15,nav,1,1940,1,, 17052,NJBF000096732,449 MIDDLE RD,Hammonton,NJ,39.65961554,-74.77452611,RES1,3001,,17,NE,1900,1900,3101,2,1,2259.526949,2259.526949,3507,NO,28.85,40.61,1,3,6112,108.128362,116.380236,126.287222,129.564085,I,Above,Gable,0,5701,,34.73310568,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 17053,NJBF000096743,275 RT 206,Hammonton,NJ,39.65967294,-74.78123724,RES1,3001,,17,NE,1960,1960,3102,1,2,1779.690667,1779.690667,3505,NO,25.93,38.88,3,6.78,6106,108.0708,116.326236,126.230953,129.481158,I,Above,Gable,0,5701,,32.40553726,0,0,,,,1,1,,0.03,nav,1,1960,1,, 17054,NJBF000096777,453 MIDDLE RD,Hammonton,NJ,39.65992182,-74.77420773,RES1,3001,,17,NE,1900,1900,3101,2,1,1730.254623,1730.254623,3507,NO,38.85,48.94,1,1.62,6112,108.130168,116.379924,126.287759,129.564592,I,Above,Gable,0,5701,,43.89366358,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 17055,NJBF000096787,275 RT 206,Hammonton,NJ,39.65998534,-74.78117009,RES1,3001,,17,NE,1960,1960,3102,1,2,992.5975056,992.5975056,3505,NO,26.1,36.7,3,7.21,6106,108.070424,116.323873,126.229362,129.478579,I,Above,Hip,0,5701,,31.40204757,0,0,,,,1,1,,0.03,nav,1,1960,1,, 17056,NJBF000096786,350 BASIN RD,Hammonton,NJ,39.65998408,-74.78279083,RES1,3001,,17,NE,1998,1998,3102,2,1,2016.228967,2016.228967,3505,NO,33.55,40.23,3,-1.72,6110,108.056677,116.311106,126.215955,129.458904,I,Above,Gable,0,5701,,36.88952864,0,0,,,,1,1,,0.15,nav,1,1998,2,, 17057,NJBF000096796,275 RT 206,Hammonton,NJ,39.66004524,-74.7813089,RES1,3001,,17,NE,1960,1960,3102,1,2,1141.881075,1141.881075,3505,NO,11.85,17.46,3,-0.24,6110,108.069062,116.322219,126.227798,129.476237,I,Above,Gable,0,5701,,14.65444832,0,0,,,,1,1,,1,nav,1,1960,1,, 17058,NJBF000096788,449 MIDDLE RD,Hammonton,NJ,39.65961554,-74.77452611,RES1,3001,,17,NE,1900,1900,3101,2,1,2775.20372,2775.20372,3507,NO,31.32,42.2,1,0.56,6112,108.128362,116.380236,126.287222,129.564085,I,Above,Gable,0,5701,,36.75809571,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 17059,NJBF000096793,435 MIDDLE RD,Hammonton,NJ,39.65961554,-74.77452611,RES1,3001,,NaN,NE,1900,0,3101,1,1,2134.480941,2134.480941,3507,NO,11.91,24.86,1,-0.28,6110,108.128362,116.380236,126.287222,129.564085,I,Above,Gable,0,5701,,18.38424264,0,0,,,,1,1,,0.15,nav,1,1900,1,, 17060,NJBF000096804,476 MIDDLE RD,Hammonton,NJ,39.66011537,-74.77319497,RES1,3001,,17,NE,1910,1910,3101,1,2,2304.105562,2304.105562,3507,NO,19.06,25.85,1,-0.35,6112,108.138312,116.386263,126.294899,129.574948,I,Above,Gable,0,5701,,22.45724799,0,1.1,,,,1,1,,0.15,nav,1,1910,1,, 17061,NJBF000096823,282 RT 206,Hammonton,NJ,39.66022242,-74.7801905,RES1,3001,640,NaN,NE,1969,0,3102,1,1,2210.076467,2210.076467,3505,NO,23.73,37.2,3,4.97,6110,108.078031,116.329413,126.235847,129.487914,I,Above,Gable,0,5701,,30.46258016,0,0,,,,1,1,,1,nav,1,1969,1,, 17062,NJBF000096840,302 BASIN RD,Hammonton,NJ,39.66031789,-74.78421837,RES1,3001,,17,NE,1987,1987,3102,2,1,2376.822161,2376.822161,3505,NO,30.55,40.1,3,8.91,6112,108.043598,116.296819,126.201883,129.43804,I,Above,Gable,0,5701,,35.3237511,0,1.2,,,,1,1,,0.15,nav,1,1987,2,, 17063,NJBF000096832,435 MIDDLE RD,Hammonton,NJ,39.65961554,-74.77452611,RES1,3001,,NaN,NE,1900,0,3101,1,1,2705.42132,2705.42132,3507,NO,13.63,28.2,1,1.76,6110,108.128362,116.380236,126.287222,129.564085,I,Above,Gable,0,5701,,20.91240539,0,0,,,,1,1,,0.15,nav,1,1900,1,, 17064,NJBF000096861,302 BASIN RD,Hammonton,NJ,39.66044604,-74.78484264,RES1,3001,,17,NE,1987,1987,3102,2,1,2273.088062,2273.088062,3505,NO,41.52,53.98,3,5.33,6112,108.037936,116.290747,126.195855,129.429127,I,Above,Flat,0,5701,,47.75146748,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 17065,NJBF000096874,370 BASIN RD,Hammonton,NJ,39.66052041,-74.78226891,RES1,3001,,17,NE,1930,1930,3102,2,2,2469.875615,2469.875615,3505,NO,36.44,45.84,3,2.55,6110,108.059476,116.310253,126.216591,129.459436,I,Above,Gable,0,5701,,41.13789334,0,0,,,,1,1,,0.15,nav,1,1930,2,, 17066,NJBF000096860,345 COLUMBIA RD,Hammonton,NJ,39.66044132,-74.75425461,AGR1,3002,,17,NE,2007,2007,3401,2,1,11761.96383,11761.96383,3507,NO,22.4,33.61,1,0.99,6112,108.303796,116.539305,126.453367,129.810299,I,Above,Flat,0,5701,,28.00650988,0,1.2,,,,1,1,,0.15,nav,1,2007,2,, 17067,NJBF000096875,345 COLUMBIA RD,Hammonton,NJ,39.6605237,-74.75488318,AGR1,3002,,17,NE,2007,2007,3401,2,1,918.9201911,918.9201911,3507,NO,23.93,29.85,1,0.04,6112,108.297918,116.533208,126.447377,129.801193,I,Above,Gable,0,5701,,26.88726401,0,1.2,,,,1,1,,0.15,nav,1,2007,2,, 17068,NJBF000096889,286 RT 206,Hammonton,NJ,39.66060639,-74.77978394,RES1,3001,,17,NE,1955,1955,3102,1,1,1548.995038,1548.995038,3505,NO,23.93,31.25,3,8.5,6110,108.08033,116.329066,126.236578,129.488679,I,Above,Gable,0,5701,,27.5915795,0,0,,,,1,1,,1,nav,1,1955,1,, 17069,NJBF000096883,50 S UNION RD,Hammonton,NJ,39.66057036,-74.77475308,RES1,3001,,17,NE,1972,1972,3101,1,1,2762.596569,2762.596569,3507,NO,20.97,30.86,1,1.87,6112,108.123501,116.369477,126.278708,129.550646,I,Above,Gable,0,5701,,25.9169217,0,1.2,,,,1,1,,0.35,nav,1,1972,1,, 17070,NJBF000096937,309 COLUMBIA RD,Hammonton,NJ,39.66092903,-74.75894383,IND2,3001,999,NaN,ME,1968,1968,3401,1,1,2766.475548,2766.475548,3507,NO,12.38,24.61,1,0.81,6112,108.260488,116.495281,126.409718,129.744324,I,Above,Flat,0,5701,,18.49369798,0,0,,,,1,1,,0.15,nav,1,1968,1,, 17071,NJBF000096964,285 RT 206,Hammonton,NJ,39.66188432,-74.7820487,RES1,3001,,NaN,NE,1965,1965,3102,1,1,732.8170154,732.8170154,3505,NO,18.48,32.89,3,1,6110,108.057197,116.299342,126.209047,129.447364,I,Above,Gable,0,5701,,25.6844063,0,0,,,,1,1,,0.15,nav,1,1965,1,, 17072,NJBF000096962,485 MIDDLE RD,Hammonton,NJ,39.66109396,-74.77351127,RES1,3001,,15,NE,1960,1960,3101,1,1,1224.275676,1224.275676,3507,NO,9.95,19.85,1,-0.88,6110,108.132594,116.374527,126.285456,129.560089,I,Above,Hip,0,5701,,14.90074036,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17073,NJBF000096957,53 S UNION RD,Hammonton,NJ,39.66107157,-74.77407599,RES1,3001,,17,NE,1980,1980,3101,1,1,3225.93397,3225.93397,3507,NO,13.92,27.06,1,2.19,6106,108.127793,116.370198,126.280884,129.553381,I,Above,Gable,0,5701,,20.48993334,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 17074,NJBF000096968,40 S UNION RD,Hammonton,NJ,39.66110619,-74.77541228,RES1,3001,,17,NE,1975,1975,3101,1,1,2997.183731,2997.183731,3507,NO,20.22,28.96,1,2.62,6112,108.1162,116.35918,126.269494,129.536596,I,Above,Flat,0,5701,,24.59142142,0,1.2,,,,1,1,,0.35,nav,1,1975,1,, 17075,NJBF000096938,285 RT 206,Hammonton,NJ,39.6609303,-74.7810229,REL1,3001,,NaN,ME,1965,1965,3401,1,1,18066.48049,18066.48049,3507,NO,21.94,35.27,1,2.49,6106,108.068805,116.316267,126.224082,129.470097,I,Above,Gable,0,5701,,28.60690409,0,0,,,,1,1,,0.03,nav,1,1965,1,, 17076,NJBF000096982,505 MIDDLE RD,Hammonton,NJ,39.66121804,-74.7728921,RES1,3001,,17,NE,1925,1925,3101,2,2,2082.134698,2082.134698,3507,NO,25.14,38.97,1,-0.77,6112,108.137553,116.378337,126.289774,129.566327,I,Above,Hip,0,5701,,32.0583788,0,0,,,,1,1,,0.15,nav,1,1925,2,, 17077,NJBF000096986,330 BASIN RD,Hammonton,NJ,39.66124703,-74.78424282,RES1,3001,,17,NE,1964,1964,3102,1,1,2068.555903,2068.555903,3505,NO,25.53,38.85,3,8.2,6112,108.040573,116.288046,126.195316,129.427773,I,Above,Hip,0,5701,,32.1886531,0,0,,,,1,1,,0.35,nav,1,1964,1,, 17078,NJBF000096999,345 COLUMBIA RD,Hammonton,NJ,39.66128749,-74.7558542,AGR1,3002,,17,NE,2007,2007,3401,2,1,1163.191393,1163.191393,3507,NO,30.3,37.49,1,1.32,6112,108.286864,116.517674,126.433618,129.779514,I,Above,Flat,0,5701,,33.89574365,0,1.2,,,,1,1,,0.15,nav,1,2007,2,, 17079,NJBF000097005,53 S UNION RD,Hammonton,NJ,39.66133015,-74.7739518,RES1,3001,,17,NE,1980,1980,3101,1,1,982.9052034,982.9052034,3507,NO,20.97,33.08,1,1.68,6106,108.128072,116.368771,126.280131,129.55203,I,Above,Gable,0,5701,,27.02309287,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 17080,NJBF000096998,505 MIDDLE RD,Hammonton,NJ,39.66128458,-74.77331234,RES1,3001,,17,NE,1925,1925,3101,2,2,2100.551889,2100.551889,3507,NO,36.32,48.93,1,1.49,6110,108.133725,116.374331,126.285794,129.560404,I,Above,Hip,0,5701,,42.62611651,0,0,,,,1,1,,0.15,nav,1,1925,2,, 17081,NJBF000097011,31 S UNION RD,Hammonton,NJ,39.66136206,-74.77455411,RES1,3001,,17,NE,1970,1970,3101,2,1,2399.11116,2399.11116,3507,NO,30.04,41.63,1,0.28,6110,108.122792,116.363646,126.274881,129.54428,I,Above,Gable,0,5701,,35.83479096,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 17082,NJBF000097004,345 COLUMBIA RD,Hammonton,NJ,39.66132608,-74.75565532,AGR1,3002,,17,NE,2007,2007,3401,2,1,3181.334693,3181.334693,3507,NO,37.18,44.23,1,1.77,6112,108.288519,116.518968,126.435048,129.781595,I,Above,Flat,0,5701,,40.70521841,0,1.2,,,,1,1,,0.03,nav,1,2007,2,, 17083,NJBF000097036,370 BASIN RD,Hammonton,NJ,39.66150103,-74.78389153,RES1,3001,,17,NE,1930,1930,3102,2,2,830.7212896,830.7212896,3505,NO,31.64,44.17,3,7.9,6112,108.042766,116.288444,126.196469,129.429275,I,Above,Gable,0,5701,,37.90221666,0,0,,,,1,1,,0.35,nav,1,1930,2,, 17084,NJBF000097039,505 MIDDLE RD,Hammonton,NJ,39.66151015,-74.77313677,RES1,3001,,17,NE,1925,1925,3101,2,2,1522.817453,1522.817453,3507,NO,24.95,38.09,1,0.23,6106,108.134545,116.373622,126.285696,129.560043,I,Above,Flat,0,5701,,31.51846462,0,0,,,,1,1,,0.03,nav,1,1925,2,, 17085,NJBF000097052,370 BASIN RD,Hammonton,NJ,39.66159084,-74.7834748,RES1,3001,,17,NE,1930,1930,3102,2,2,799.6993176,799.6993176,3505,NO,35.07,49.55,3,7.8,6112,108.046017,116.290875,126.19929,129.43333,I,Above,Gable,0,5701,,42.30653472,0,0,,,,1,1,,0.15,nav,1,1930,2,, 17086,NJBF000097034,263 BASIN RD,Hammonton,NJ,39.66148612,-74.78507063,AGR1,3001,,17,NE,1900,1900,3401,2,1,3963.580576,3963.580576,3507,NO,34.25,45.7,1,-0.85,6112,108.032863,116.279374,126.186865,129.415263,I,Above,Flat,0,5701,,39.97834599,0,0,,,,1,1,,0.15,nav,1,1900,2,, 17087,NJBF000097055,39 S UNION RD,Hammonton,NJ,39.66160225,-74.77501671,RES1,3001,,17,NE,1972,1972,3101,1,1,1820.411021,1820.411021,3507,NO,18.49,26.52,1,1.42,6106,108.118077,116.357691,126.269354,129.535937,I,Above,Gable,0,5701,,22.50749685,0,0,,,,1,1,,0.03,nav,1,1972,1,, 17088,NJBF000097071,650 N WHITE HORSE PK,Hammonton,NJ,39.66167819,-74.81157471,RES1,3001,,17,NE,1957,1957,3102,1,1,2334.165931,2334.165931,3507,NO,11.92,23.84,1,-0.99,6112,107.814503,116.077607,125.971482,129.103415,I,Above,Gable,0,5701,,17.88363585,0,0,,,,1,1,,0.15,nav,1,1957,1,, 17089,NJBF000097044,263 BASIN RD,Hammonton,NJ,39.66155861,-74.78517277,AGR1,3001,,17,NE,1900,1900,3401,2,1,4303.827068,4303.827068,3507,NO,26.74,40.1,1,-0.94,6112,108.031782,116.277905,126.185527,129.41326,I,Above,Flat,0,5701,,33.42153512,0,0,,,,1,1,,0.15,nav,1,1900,2,, 17090,NJBF000097075,625 N WHITE HORSE PK,Hammonton,NJ,39.66170339,-74.80981602,RES1,3001,,17,NE,1958,1958,3102,1,1,2329.32598,2329.32598,3507,NO,16.46,30.82,1,-0.12,6112,107.828543,116.090255,125.985285,129.123231,I,Above,Gable,0,5701,,23.63766965,0,1.2,,,,1,1,,0.35,nav,1,1958,1,, 17091,NJBF000097077,370 BASIN RD,Hammonton,NJ,39.66170494,-74.78373999,RES1,3001,,17,NE,1930,1930,3102,2,2,1394.866683,1394.866683,3505,NO,35.09,47.4,3,3.23,6112,108.04343,116.287747,126.196325,129.428917,I,Above,Gable,0,5701,,41.24491155,0,0,,,,1,1,,0.15,nav,1,1930,2,, 17092,NJBF000097070,345 COLUMBIA RD,Hammonton,NJ,39.66167583,-74.7554351,AGR1,3002,,17,NE,2007,2007,3401,2,1,946.0715997,946.0715997,3507,NO,27.45,41.78,1,1.13,6109,108.289389,116.517434,126.434447,129.780203,I,Above,Flat,0,5701,,34.61507711,0,1.2,,,,1,1,,0.03,nav,1,2007,2,, 17093,NJBF000097089,521 MIDDLE RD,Hammonton,NJ,39.66177677,-74.77222948,RES1,3001,,17,NE,1970,1970,3101,2,1,1854.323645,1854.323645,3507,NO,21.64,33.77,1,0.36,6112,108.141564,116.378411,126.29144,129.568233,I,Above,Gable,0,5701,,27.70137113,0,0,,,,1,1,,0.15,nav,1,1970,2,, 17094,NJBF000097105,521 MIDDLE RD,Hammonton,NJ,39.66186341,-74.77256751,RES1,3001,,17,NE,1970,1970,3101,2,1,663.9931022,663.9931022,3507,NO,35.85,43.59,1,2.11,6112,108.138372,116.374875,126.288005,129.563096,I,Above,Gable,0,5701,,39.72299775,0,0,,,,1,1,,0.15,nav,1,1970,2,, 17095,NJBF000097108,285 RT 206,Hammonton,NJ,39.66188432,-74.7820487,RES1,3001,,NaN,NE,1965,1965,3102,1,1,930.5519323,930.5519323,3505,NO,23.01,33.14,3,3.86,6112,108.057197,116.299342,126.209047,129.447364,I,Above,Gable,0,5701,,28.07246914,0,0,,,,1,1,,0.15,nav,1,1965,1,, 17096,NJBF000097099,345 COLUMBIA RD,Hammonton,NJ,39.66184396,-74.75544141,AGR1,3002,,17,NE,2007,2007,3401,2,1,1131.222125,1131.222125,3507,NO,35.74,48.55,1,2.63,6112,108.288811,116.51576,126.433202,129.778105,I,Above,Flat,0,5701,,42.14512351,0,1.2,,,,1,1,,0.03,nav,1,2007,2,, 17097,NJBF000097103,860 MIDDLE & 450 RT 206,Hammonton,NJ,39.66186066,-74.75582347,AGR1,3002,,NaN,NE,1969,0,3401,1,1,734.7502159,734.7502159,3507,NO,15.7,22.51,1,1.85,6112,108.285348,116.512391,126.429807,129.773015,I,Above,Gable,0,NaN,,19.10598237,0,0,,,,1,1,,0.15,nav,1,1969,1,, 17098,NJBF000097152,704 N WHITE HORSE PK,Hammonton,NJ,39.66216323,-74.8123784,RES1,3001,,17,NE,1950,1950,3102,1,1,727.0073593,727.0073593,3507,NO,12.75,24.97,1,0.85,6112,107.806629,116.067466,125.961914,129.089588,I,Above,Gable,0,5701,,18.86204771,0,1.2,,,,1,1,,0.15,nav,1,1950,1,, 17099,NJBF000097148,285 RT 206,Hammonton,NJ,39.66214586,-74.78238355,RES1,3001,,NaN,NE,1965,1965,3102,1,1,895.6677052,895.6677052,3505,NO,11.9,18.21,3,-0.46,6112,108.053561,116.294284,126.204485,129.440503,I,Above,Gable,0,5701,,15.05141959,0,0,,,,1,1,,0.35,nav,1,1965,1,, 17100,NJBF000097146,531 MIDDLE RD,Hammonton,NJ,39.6621374,-74.77175967,RES1,3001,,17,NE,1860,1860,3101,2,1,1631.396873,1631.396873,3507,NO,24.78,29.93,1,-0.42,6112,108.144512,116.378795,126.292866,129.569971,I,Above,Gable,0,5701,,27.353963,0,0,,,,1,1,,0.15,nav,1,1860,2,, 17101,NJBF000097162,550 MIDDLE RD,Hammonton,NJ,39.66229557,-74.77060548,RES1,3001,,17,NE,1958,1958,3101,1,1,1981.308659,1981.308659,3507,NO,15.82,22.57,1,1.9,6112,108.154021,116.386608,126.30144,129.582417,I,Above,Hip,0,5701,,19.19504216,0,0,,,,1,1,,0.35,nav,1,1958,1,, 17102,NJBF000097178,,Hammonton,NJ,39.66241331,-74.81231034,RES1,3001,,NaN,NE,1950,0,3102,2,1,1414.26764,1414.26764,3507,NO,34.99,43.76,1,2.34,6112,107.806426,116.065752,125.960802,129.087943,I,Above,Gable,0,5701,,39.37142441,0,0,,,,1,1,,0.15,nav,1,1950,2,, 17103,NJBF000097210,,Hammonton,NJ,39.66264988,-74.81370884,RES1,3001,,NaN,NE,1969,0,3102,2,1,1090.216054,1090.216054,3507,NO,23.66,31.64,1,-0.97,6112,107.794544,116.053499,125.948174,129.069815,I,Above,Flat,0,5701,,27.6466544,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17104,NJBF000097220,,Hammonton,NJ,39.66270382,-74.81328321,RES1,3001,,NaN,NE,1969,0,3102,2,1,1337.19873,1337.19873,3507,NO,27.39,41.68,1,1.61,6112,107.797782,116.056112,125.951184,129.074113,I,Above,Flat,0,5701,,34.53265301,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17105,NJBF000097202,570 MIDDLE RD,Hammonton,NJ,39.66259715,-74.77028094,RES1,3001,,17,NE,1961,1961,3101,1,1,3387.820063,3387.820063,3507,NO,11.35,21.75,1,0.56,6112,108.155902,116.38638,126.302062,129.583021,I,Above,Hip,0,5701,,16.54955163,0,0,,,,1,1,,0.35,nav,1,1961,1,, 17106,NJBF000097217,17 OAK RD,Hammonton,NJ,39.66269888,-74.80834622,RES1,3001,,17,NE,1983,1983,3102,1,1,2861.492881,2861.492881,3507,NO,18.22,24.87,1,2.95,6112,107.837396,116.092195,125.990375,129.130285,I,Above,Gable,0,5701,,21.5442753,0,1.1,,,,1,1,,0.35,nav,1,1983,1,, 17107,NJBF000097253,561 MIDDLE RD,Hammonton,NJ,39.66292745,-74.77117628,RES1,3001,,17,NE,1963,1963,3101,1,1,2096.668938,2096.668938,3507,NO,12.25,21.46,1,-0.44,6112,108.147131,116.376045,126.292264,129.568293,I,Above,Gable,0,5701,,16.85341543,0,0,,,,1,1,,0.15,nav,1,1963,1,, 17108,NJBF000097282,604 MIDDLE RD REAR,Hammonton,NJ,39.66307851,-74.76889338,RES1,3001,,NaN,NE,1969,0,3101,1,1,1585.835812,1585.835812,3507,NO,16.17,27.38,1,2.13,6112,108.166463,116.393042,126.310354,129.594702,I,Above,Gable,0,5701,,21.77425204,0,0,,,,1,1,,0.15,nav,1,1969,1,, 17109,NJBF000097293,600 MIDDLE RD,Hammonton,NJ,39.66316296,-74.76976982,RES1,3001,,17,NE,1929,1929,3101,2,1,1461.740955,1461.740955,3507,NO,31.52,44.74,1,1.02,6112,108.158587,116.385154,126.302407,129.582939,I,Above,Gable,0,5701,,38.13091973,0,0,,,,1,1,,0.35,nav,1,1929,2,, 17110,NJBF000097304,606 MIDDLE RD,Hammonton,NJ,39.66326441,-74.7692385,RES1,3001,,17,NE,1900,1900,3101,2,2,2377.773412,2377.773412,3507,NO,35.29,40.99,1,1.75,6112,108.162884,116.388489,126.306159,129.588342,I,Above,Gable,0,5701,,38.14244681,0,0,,,,1,1,,0.15,nav,1,1900,2,, 17111,NJBF000097349,242-294 COLUMBIA RD,Hammonton,NJ,39.66354244,-74.76473684,AGR1,3002,,NaN,NE,1969,0,3401,3,1,3004.925523,3004.925523,3507,NO,52.43,58.34,1,0.88,6112,108.201296,116.422451,126.342122,129.640911,I,Above,Hip,0,NaN,,55.38232415,0,0,,,,1,1,,0.15,nav,1,1969,3,, 17112,NJBF000097357,601 MIDDLE RD,Hammonton,NJ,39.66358312,-74.77031837,RES1,3001,,17,NE,2001,2001,3101,2,1,2897.333783,2897.333783,3507,NO,22.66,33.77,1,-0.51,6112,108.152536,116.376758,126.294889,129.571471,I,Above,Hip,0,5701,,28.21702176,0,1.2,,,,1,1,,0.15,nav,1,2001,2,, 17113,NJBF000097380,220 COLUMBIA RD,Hammonton,NJ,39.66376053,-74.7650834,AGR1,3002,,16,NE,1930,1930,3401,1,1,1214.591293,1214.591293,3507,NO,10.51,20.75,1,-0.39,6112,108.197584,116.417535,126.337667,129.634097,I,Above,Hip,0,NaN,,15.62857617,0,0,,,,1,1,,0.15,nav,1,1930,1,, 17114,NJBF000097379,601 MIDDLE RD,Hammonton,NJ,39.663744,-74.77077279,RES1,3001,,17,NE,2001,2001,3101,2,1,1823.319129,1823.319129,3507,NO,32.73,40.65,1,2.5,6103,108.148096,116.37157,126.289958,129.564079,I,Above,Flat,0,5701,,36.69268799,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17115,NJBF000097392,220 COLUMBIA RD,Hammonton,NJ,39.66381622,-74.76542043,AGR1,3002,,16,NE,1930,1930,3401,2,1,2527.062563,2527.062563,3507,NO,24.01,31.72,1,0.24,6112,108.194464,116.41426,126.334438,129.629285,I,Above,Flat,0,NaN,,27.86879001,0,0,,,,1,1,,0.15,nav,1,1930,2,, 17116,NJBF000097432,19 COLUMBIA RD,Hammonton,NJ,39.66404262,-74.77651115,RES1,3001,,17,NE,1920,1920,3102,2,2,701.7962479,701.7962479,3505,NO,35.24,43.48,3,-2.41,6112,108.097768,116.322913,126.240048,129.490839,I,Above,Gable,0,5701,,39.35778253,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 17117,NJBF000097455,19 COLUMBIA RD,Hammonton,NJ,39.66427767,-74.77637358,RES1,3001,,17,NE,1920,1920,3102,2,2,648.8616536,648.8616536,3505,NO,40.6,48.29,3,2.12,6112,108.098218,116.321797,126.239564,129.489925,I,Above,Gable,0,5701,,44.44308465,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 17118,NJBF000097479,19 COLUMBIA RD,Hammonton,NJ,39.6643775,-74.7760784,RES1,3001,,17,NE,1920,1920,3102,2,2,805.5133854,805.5133854,3505,NO,24.72,36.01,3,-1.22,6112,108.100445,116.323207,126.241332,129.492412,I,Above,Gable,0,5701,,30.36863288,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 17119,NJBF000097475,221 COLUMBIA RD,Hammonton,NJ,39.66434999,-74.76483212,AGR1,3002,,15,NE,1940,1940,3401,1,1,3101.862874,3101.862874,3507,NO,17.82,24.95,1,2.83,6103,108.197947,116.413963,126.335659,129.630457,I,Above,Flat,0,5701,,21.38367982,0,0,,,,1,1,,0.03,nav,1,1940,1,, 17120,NJBF000097484,221 COLUMBIA RD,Hammonton,NJ,39.66442193,-74.76504316,AGR1,3002,,15,NE,1940,1940,3401,1,1,1472.420015,1472.420015,3507,NO,16.89,24.04,1,2.98,6103,108.195876,116.411555,126.333375,129.627018,I,Above,Flat,0,5701,,20.46252452,0,0,,,,1,1,,0.03,nav,1,1940,1,, 17121,NJBF000097495,251-273 COLUMBIA RD,Hammonton,NJ,39.66452211,-74.76514383,AGR1,3002,,NaN,NE,1969,0,3401,2,1,1640.106308,1640.106308,3507,NO,36.94,45.2,1,2.92,6103,108.19468,116.409777,126.331823,129.624623,I,Above,Flat,0,NaN,,41.07067685,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17122,NJBF000097551,137 OAK RD,Hammonton,NJ,39.66484937,-74.8059823,RES1,3001,,14,NE,1960,1960,3101,1,1,1672.101998,1672.101998,3505,NO,14.76,27.87,3,0.99,6112,107.850025,116.090384,125.994925,129.136181,I,Above,Flat,0,5701,,21.31720503,0,0,,,,1,1,,0.03,nav,1,1960,1,, 17123,NJBF000097552,663 MIDDLE RD,Hammonton,NJ,39.66485325,-74.76868499,RES1,3001,,17,NE,1920,1920,3101,2,1,1223.293419,1223.293419,3507,NO,21.19,30.04,1,-0.14,6103,108.162769,116.377897,126.299735,129.577232,I,Above,Hip,0,5701,,25.61343621,0,0,,,,1,1,,0.03,nav,1,1920,2,, 17124,NJBF000097574,642 MIDDLE RD,Hammonton,NJ,39.66499473,-74.7677255,RES1,3001,,17,NE,1974,1974,3101,2,1,1605.204085,1605.204085,3507,NO,24.11,35.31,1,2.2,6112,108.170677,116.384308,126.306802,129.587417,I,Above,Gable,0,5701,,29.71070384,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 17125,NJBF000097582,199 S MYRTLE ST,Hammonton,NJ,39.66504354,-74.7652551,AGR1,3002,,15,NE,1956,1956,3401,1,1,536.0465778,536.0465778,3507,NO,16.63,21.9,1,2.52,6106,108.192079,116.40389,126.327234,129.617286,I,Above,Flat,0,5701,,19.26823202,0,0,,,,1,1,,0.03,nav,1,1956,1,, 17126,NJBF000097608,,Hammonton,NJ,39.66518389,-74.80419985,RES1,3001,,NaN,NE,1969,0,3102,2,1,1443.350033,1443.350033,3505,NO,34.11,41.86,3,6.73,6112,107.863455,116.100515,126.006908,129.153229,I,Above,Gable,0,5701,,37.98793272,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17127,NJBF000097599,199 S MYRTLE ST,Hammonton,NJ,39.6651305,-74.7654228,AGR1,3002,,15,NE,1956,1956,3401,1,1,2119.93047,2119.93047,3507,NO,17.42,23.52,1,1.35,6106,108.190342,116.401702,126.325217,129.614231,I,Above,Gable,0,5701,,20.46984902,0,0,,,,1,1,,0.03,nav,1,1956,1,, 17128,NJBF000097619,63 COLUMBIA RD,Hammonton,NJ,39.66523091,-74.77381263,RES1,3001,,17,NE,1975,1975,3101,2,1,1623.640569,1623.640569,3507,NO,28.38,41.09,1,1.65,6112,108.117256,116.333193,126.254268,129.510479,I,Above,Gable,0,5701,,34.73370087,0,0,,,,1,1,,0.15,nav,1,1975,2,, 17129,NJBF000097618,191 COLUMBIA RD,Hammonton,NJ,39.66522053,-74.7664068,RES1,3001,,17,NE,1930,1930,3101,2,1,1547.049719,1547.049719,3507,NO,30.27,42.74,1,-0.06,6106,108.181461,116.392837,126.316299,129.601067,I,Above,Gable,0,5701,,36.5050508,0,0,,,,1,1,,0.03,nav,1,1930,2,, 17130,NJBF000097629,199 S MYRTLE ST,Hammonton,NJ,39.66528591,-74.76541063,AGR1,3002,,15,NE,1956,1956,3401,1,1,2210.084853,2210.084853,3507,NO,19.31,31.69,1,0.44,6106,108.189959,116.40031,126.324227,129.6126,I,Above,Flat,0,5701,,25.49631756,0,0,,,,1,1,,0.03,nav,1,1956,1,, 17131,NJBF000097648,63 COLUMBIA RD,Hammonton,NJ,39.66539119,-74.77375138,RES1,3001,,17,NE,1975,1975,3101,2,1,775.4679025,775.4679025,3507,NO,39.03,48.84,1,0.03,6110,108.117294,116.33218,126.253677,129.509467,I,Above,Gable,0,5701,,43.93613747,0,0,,,,1,1,,0.15,nav,1,1975,2,, 17132,NJBF000097645,175 COLUMBIA RD,Hammonton,NJ,39.6653723,-74.76673025,RES1,3001,,17,NE,1970,1970,3101,1,1,2187.782192,2187.782192,3507,NO,16.19,24.3,1,0.89,6106,108.178172,116.388779,126.312529,129.59538,I,Above,Gable,0,5701,,20.24539857,0,0,,,,1,1,,0.03,nav,1,1970,1,, 17133,NJBF000097654,93 COLUMBIA RD,Hammonton,NJ,39.66542033,-74.77336137,RES1,3001,,17,NE,1971,1971,3101,1,1,1232.012579,1232.012579,3507,NO,18.79,33.57,1,2.7,6110,108.120561,116.335014,126.256723,129.513875,I,Above,Gable,0,5701,,26.17668446,0,0,,,,1,1,,0.15,nav,1,1971,1,, 17134,NJBF000097661,708 MIDDLE RD,Hammonton,NJ,39.66545645,-74.76731369,RES1,3001,,17,NE,1958,1958,3101,1,1,1663.369377,1663.369377,3507,NO,14.89,26.36,1,0.62,6110,108.17282,116.383248,126.307037,129.587254,I,Above,Gable,0,5701,,20.62102151,0,0,,,,1,1,,0.15,nav,1,1958,1,, 17135,NJBF000097696,150 S MYRTLE ST,Hammonton,NJ,39.66573345,-74.76622748,RES1,3001,,17,NE,1963,1963,3101,1,1,1321.194602,1321.194602,3507,NO,15.46,28.83,1,0.55,6112,108.181433,116.389417,126.314237,129.59747,I,Above,Gable,0,5701,,22.14580262,0,0,,,,1,1,,0.35,nav,1,1963,1,, 17136,NJBF000097706,718 MIDDLE RD,Hammonton,NJ,39.66578269,-74.76705578,RES1,3001,,17,NE,1920,1920,3101,2,2,1677.916705,1677.916705,3507,NO,32.11,43.76,1,1.88,6112,108.174047,116.382223,126.306922,129.586724,I,Above,Gable,0,5701,,37.93335536,0,1.2,,,,1,1,,0.15,nav,1,1920,2,, 17137,NJBF000097718,713 MIDDLE RD,Hammonton,NJ,39.66587686,-74.76791754,RES1,3001,,17,NE,1936,1936,3101,1,1,1452.061104,1452.061104,3507,NO,17.94,23.86,1,-0.73,6110,108.166247,116.374359,126.299033,129.5751,I,Above,Gable,0,5701,,20.90032829,0,0,,,,1,1,,0.15,nav,1,1936,1,, 17138,NJBF000097735,332 RT 206,Hammonton,NJ,39.66601291,-74.77400523,RES1,3001,,17,NE,1982,1982,3101,1,1,581.593717,581.593717,3507,NO,12.09,26.11,1,1.56,6112,108.113181,116.324297,126.247263,129.499548,I,Above,Gable,0,5701,,19.09549515,0,0,,,,1,1,,0.15,nav,1,1982,1,, 17139,NJBF000097800,234 OAK RD,Hammonton,NJ,39.66660594,-74.80320035,RES1,3001,,17,NE,1900,1900,3102,2,1,1632.185424,1632.185424,3505,NO,28.23,42.95,3,0,6112,107.867275,116.095112,126.005423,129.150607,I,Above,Gable,0,5701,,35.58932731,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 17140,NJBF000097854,100 S MYRTLE ST AT MIDDLE,Hammonton,NJ,39.66713277,-74.76692312,RES1,3001,,16,NE,1920,1920,3101,2,1,731.8468618,731.8468618,3507,NO,32.81,42.17,1,0.42,6112,108.170979,116.370431,126.298623,129.573124,I,Above,Gable,0,5701,,37.4906596,0,0,,,,1,1,,0.15,nav,1,1920,2,, 17141,NJBF000097881,94 S MYRTLE ST,Hammonton,NJ,39.66738249,-74.76698953,RES1,3001,,16,NE,1920,1920,3101,2,1,601.9509388,601.9509388,3507,NO,36.2,47.93,1,2.08,6112,108.169614,116.367515,126.296326,129.569505,I,Above,Gable,0,5701,,42.06337448,0,0,,,,1,1,,0.15,nav,1,1920,2,, 17142,NJBF000097890,771 MIDDLE RD,Hammonton,NJ,39.66745141,-74.76619715,RES1,3001,,17,NE,1860,1860,3101,2,1,1156.423739,1156.423739,3507,NO,33.02,39.46,1,1.37,6112,108.17631,116.373264,126.302496,129.578407,I,Above,Hip,0,5701,,36.23969749,0,0,,,,1,1,,0.35,nav,1,1860,2,, 17143,NJBF000097980,848 MIDDLE RD REAR,Hammonton,NJ,39.66833607,-74.75982961,AGR1,3001,,NaN,NE,1968,0,3401,2,1,2224.21885,2224.21885,3507,NO,25.51,40.48,1,2.85,6106,108.229387,116.416634,126.349943,129.646459,I,Above,Flat,0,NaN,,32.99339682,0,0,,,,1,1,,0.03,nav,1,1968,2,, 17144,NJBF000097970,848 MIDDLE RD REAR,Hammonton,NJ,39.6681976,-74.7593563,AGR1,3001,,NaN,NE,1968,0,3401,3,1,12944.11135,12944.11135,3507,NO,54.2,60.49,1,1.54,6112,108.234011,116.421859,126.354925,129.653904,I,Above,Hip,0,NaN,,57.34638214,0,0,,,,1,1,,1,nav,1,1968,3,, 17145,NJBF000097988,848 MIDDLE RD REAR,Hammonton,NJ,39.66848545,-74.75975742,AGR1,3001,,NaN,NE,1969,0,3401,3,1,1773.356733,1773.356733,3507,NO,43.66,49.28,1,0.61,6106,108.229558,116.415795,126.349513,129.645641,I,Above,Flat,0,NaN,,46.47007202,0,0,,,,1,1,,0.03,nav,1,1969,3,, 17146,NJBF000098008,555 BASIN RD,Hammonton,NJ,39.67095119,-74.77652315,RES1,3001,,17,NE,1969,1989,3102,2,1,1989.084093,1989.084093,3505,NO,34.05,47.41,3,2.44,6112,108.076191,116.257892,126.192399,129.4159,I,Above,Flat,0,5701,,40.72588161,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17147,NJBF000098034,410 N UNION RD AT PINE,Hammonton,NJ,39.66917942,-74.79294184,RES1,3001,,14,NE,1970,1970,3101,1,1,756.0875223,756.0875223,3507,NO,14.5,20.83,1,-0.41,6112,107.943596,116.148246,126.070533,129.242537,I,Above,Gable,0,5701,,17.6665756,0,0,,,,1,1,,0.15,nav,1,1970,1,, 17148,NJBF000098035,848 MIDDLE RD,Hammonton,NJ,39.66918261,-74.7632068,RES1,3001,,16,NE,1934,1934,3101,2,1,738.6288914,738.6288914,3507,NO,29.6,43.31,1,-0.88,6106,108.196991,116.380907,126.315517,129.595334,I,Above,Gable,0,5701,,36.45496895,0,0,,,,1,1,,0.03,nav,1,1934,2,, 17149,NJBF000098036,842 MIDDLE RD,Hammonton,NJ,39.66920619,-74.76350369,RES1,3001,,17,NE,1940,1940,3101,2,1,1225.231661,1225.231661,3507,NO,33.01,47.62,1,-0.87,6110,108.194315,116.378275,126.312859,129.591449,I,Above,Gable,0,5701,,40.31398741,0,0,,,,1,1,,0.35,nav,1,1940,2,, 17150,NJBF000098042,834 MIDDLE RD,Hammonton,NJ,39.66925531,-74.76458415,RES1,3001,,17,NE,1940,1940,3101,2,3,1023.613436,1023.613436,3507,NO,25.92,40.6,1,-0.72,6112,108.184707,116.369051,126.303443,129.577735,I,Above,Gable,0,5701,,33.25662669,0,0,,,,1,1,,0.35,nav,1,1940,2,, 17151,NJBF000098049,555 BASIN RD,Hammonton,NJ,39.67095119,-74.77652315,RES1,3001,,17,NE,1969,1989,3102,2,1,3625.313652,3625.313652,3505,NO,30.27,42.1,3,7.35,6112,108.076191,116.257892,126.192399,129.4159,I,Above,Flat,0,5701,,36.18708625,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17152,NJBF000098057,357 PINE RD,Hammonton,NJ,39.66942928,-74.79255589,RES1,3001,,17,NE,1890,1890,3101,1,1,767.7208708,767.7208708,3507,NO,13.58,24.43,1,-0.29,6112,107.946025,116.148862,126.071966,129.244452,I,Above,Gable,0,5701,,19.00312855,0,0,,,,1,1,,0.15,nav,1,1890,1,, 17153,NJBF000098059,72 S MYRTLE ST,Hammonton,NJ,39.66943869,-74.76985625,RES1,3001,,17,NE,1982,1982,3101,1,1,3156.133137,3156.133137,3507,NO,19.55,25.89,1,2.24,6112,108.138263,116.324915,126.258074,129.51187,I,Above,Gable,0,5701,,22.72307368,0,1.2,,,,1,1,,0.15,nav,1,1982,1,, 17154,NJBF000098068,555 BASIN RD,Hammonton,NJ,39.67095119,-74.77652315,RES1,3001,,17,NE,1969,1989,3102,2,1,593.2314283,593.2314283,3505,NO,36.23,50.39,3,0.89,6112,108.076191,116.257892,126.192399,129.4159,I,Above,Flat,0,5701,,43.30919476,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17155,NJBF000098078,852 MIDDLE RD,Hammonton,NJ,39.66967436,-74.76386605,RES1,3001,,NaN,NE,1934,0,3101,1,1,1061.423115,1061.423115,3507,NO,13.15,22.21,1,0.1,6112,108.18966,116.370845,126.306546,129.581747,I,Above,Gable,0,5701,,17.68224204,0,0,,,,1,1,,0.35,nav,1,1934,1,, 17156,NJBF000098091,852 MIDDLE RD,Hammonton,NJ,39.66978799,-74.76360569,RES1,3001,,NaN,NE,1969,0,3101,1,1,891.7869554,891.7869554,3507,NO,19.3,33.98,1,2.31,6106,108.191575,116.371858,126.307933,129.583625,I,Above,Gable,0,5701,,26.63985034,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17157,NJBF000098104,852 MIDDLE RD,Hammonton,NJ,39.66995579,-74.76411274,RES1,3001,,NaN,NE,1969,0,3101,1,1,1672.102844,1672.102844,3507,NO,9.79,21.03,1,-0.8,6112,108.186604,116.366138,126.302502,129.575565,I,Above,Gable,0,5701,,15.4073575,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17158,NJBF000098131,417 N UNION RD,Hammonton,NJ,39.67020692,-74.79359553,RES1,3001,,16,NE,1950,1950,3101,1,2,1359.006728,1359.006728,3507,NO,19.5,28.2,1,0.68,6112,107.935018,116.133897,126.058343,129.224597,I,Above,Gable,0,5701,,23.84684044,0,0,,,,1,1,,0.15,nav,1,1950,1,, 17159,NJBF000098135,375 RT 206,Hammonton,NJ,39.67026062,-74.7747871,RES1,3001,,17,NE,1973,1973,3102,2,1,2813.979955,2813.979955,3505,NO,35.21,41.73,3,5.92,6112,108.093209,116.27803,126.211472,129.443903,I,Above,Gable,0,5701,,38.4726462,0,0,,,,1,1,,0.15,nav,1,1973,2,, 17160,NJBF000098146,417 N UNION RD,Hammonton,NJ,39.67037149,-74.7933863,RES1,3001,,16,NE,1950,1950,3101,1,2,1096.318787,1096.318787,3507,NO,18.73,28.57,1,1.54,6112,107.936249,116.133969,126.058933,129.225353,I,Above,Gable,0,5701,,23.64674365,0,0,,,,1,1,,0.15,nav,1,1950,1,, 17161,NJBF000098192,250 N MYRTLE ST,Hammonton,NJ,39.67095119,-74.77652315,RES1,3001,,NaN,NE,1969,0,3102,2,1,1549.969055,1549.969055,3505,NO,22.89,37.62,3,-0.4,6112,108.076191,116.257892,126.192399,129.4159,I,Above,Flat,0,5701,,30.25266014,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17162,NJBF000098205,401 OAK RD,Hammonton,NJ,39.67112275,-74.79895758,RES1,3001,,16,NE,1900,1900,3102,2,1,810.3650626,810.3650626,3507,NO,39.73,53.87,1,1.94,6112,107.888082,116.085563,126.00919,129.154217,I,Above,Gable,0,5701,,46.80084073,0,0,,,,1,1,,0.15,nav,1,1900,2,, 17163,NJBF000098197,391 RT 206,Hammonton,NJ,39.67099826,-74.77348879,COM1,3001,740,NaN,ME,1969,0,3401,3,1,13628.8372,13628.8372,3507,NO,34.83,48.09,1,-0.11,6112,108.102029,116.281289,126.217131,129.451376,I,Above,Flat,0,NaN,,41.45607621,0,0,,,,1,1,,1,nav,1,1969,3,, 17164,NJBF000098259,413 OAK RD,Hammonton,NJ,39.67226508,-74.79785106,RES1,3001,,17,NE,1976,1976,3101,1,1,1872.765419,1872.765419,3507,NO,18.59,29.15,1,-0.83,6112,107.893631,116.083345,126.010414,129.155471,I,Above,Gable,0,5701,,23.86860237,0,0,,,,1,1,,0.35,nav,1,1976,1,, 17165,NJBF000098401,290 N MYRTLE ST,Hammonton,NJ,39.67553498,-74.78056863,AGR1,3002,,18,NE,2001,2001,3401,1,2,6256.082064,6256.082064,3507,NO,18.62,28.06,1,2.22,6112,108.027347,116.183375,126.127888,129.320299,I,Above,Gable,0,5701,,23.33910772,0,1.2,,,,1,1,,0.15,nav,1,2001,1,, 17166,NJBF000098446,625 PINE RD,Hammonton,NJ,39.67795065,-74.78477441,AGR1,3002,,17,NE,1986,1986,3401,2,1,9533.260425,9533.260425,3507,NO,32.15,37.25,1,2.22,6112,107.984273,116.128668,126.077347,129.247229,I,Above,Flat,0,5701,,34.69986973,0,0,,,,1,1,,0.15,nav,1,1986,2,, 17167,NJBF000098450,625 OAK RD,Hammonton,NJ,39.67819256,-74.79123078,AGR1,3002,,NaN,NE,1969,0,3401,1,1,680.4736737,680.4736737,3507,NO,16.36,21.96,1,-0.47,6112,107.929692,116.07797,126.023734,129.171564,I,Above,Gable,0,NaN,,19.16038443,0,0,,,,1,1,,0.15,nav,1,1969,1,, 17168,NJBF000098453,625 PINE RD,Hammonton,NJ,39.67831622,-74.78339242,AGR1,3002,,17,NE,1986,1986,3401,2,1,2170.33778,2170.33778,3507,NO,26.28,39.17,1,1.62,6112,107.994716,116.135721,126.086063,129.259305,I,Above,Hip,0,5701,,32.72701947,0,0,,,,1,1,,0.35,nav,1,1986,2,, 17169,NJBF000098454,643 OAK RD,Hammonton,NJ,39.67834915,-74.79106654,AGR1,3002,,NaN,NE,1969,0,3401,2,1,1452.069616,1452.069616,3507,NO,29.64,36.87,1,-0.55,6112,107.930558,116.077746,126.024003,129.171866,I,Above,Gable,0,NaN,,33.25822011,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17170,NJBF000098463,399 N MYRTLE ST,Hammonton,NJ,39.67915633,-74.78116584,AGR1,3002,,NaN,NE,1969,0,3401,1,1,671.786864,671.786864,3507,NO,16.41,27.73,1,1.37,6112,108.010785,116.144754,126.098418,129.276205,I,Above,Flat,0,NaN,,22.06967104,0,0,,,,1,1,,0.15,nav,1,1969,1,, 17171,NJBF000098464,8 SANDY CAUSEWAY,Hammonton,NJ,39.67925345,-74.7810533,AGR1,3002,,16,NE,1960,1960,3401,1,1,2835.297021,2835.297021,3507,NO,15.75,22.29,1,0.39,6112,108.011428,116.144701,126.098677,129.276509,I,Above,Gable,0,5701,,19.0221825,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17172,NJBF000098465,8 SANDY CAUSEWAY,Hammonton,NJ,39.67926745,-74.78070002,AGR1,3002,,16,NE,1960,1960,3401,1,1,2612.351382,2612.351382,3507,NO,14.19,23.88,1,1,6112,108.014363,116.14726,126.101448,129.280406,I,Above,Flat,0,5701,,19.03751571,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17173,NJBF000098466,8 SANDY CAUSEWAY,Hammonton,NJ,39.67935845,-74.7805513,AGR1,3002,,16,NE,1960,1960,3401,1,1,6072.895586,6072.895586,3507,NO,12.23,20.83,1,1.24,6112,108.015331,116.147539,126.102041,129.281182,I,Above,Flat,0,5701,,16.5289519,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17174,NJBF000098469,8 SANDY CAUSEWAY,Hammonton,NJ,39.67946567,-74.78038267,AGR1,3002,,16,NE,1960,1960,3401,1,1,3097.046767,3097.046767,3507,NO,17.18,28.01,1,0.89,6112,108.016404,116.147802,126.102672,129.282003,I,Above,Flat,0,5701,,22.59790671,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17175,NJBF000098471,8 SANDY CAUSEWAY,Hammonton,NJ,39.67953847,-74.78080357,AGR1,3002,,16,NE,1960,1960,3401,1,1,3222.049852,3222.049852,3507,NO,15.74,28.88,1,-0.05,6112,108.012618,116.143914,126.098764,129.276452,I,Above,Flat,0,5701,,22.31220047,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17176,NJBF000098476,450 N MYRTLE ST,Hammonton,NJ,39.67998029,-74.78347505,AGR1,3002,,NaN,NE,1969,0,3401,1,1,4603.380422,4603.380422,3507,NO,12.42,24.72,1,1.12,6112,107.988714,116.119486,126.074132,129.241514,I,Above,Gable,0,NaN,,18.57073069,0,0,,,,1,1,,0.15,nav,1,1969,1,, 17177,NJBF000098480,401 N MYRTLE ST,Hammonton,NJ,39.68029849,-74.78174338,AGR1,3002,569,NaN,NE,1969,0,3401,3,1,3659.219233,3659.219233,3507,NO,59.39,71.85,1,2.21,6112,108.002266,116.129619,126.085996,129.258013,I,Above,Flat,0,NaN,,65.62149581,0,0,,,,1,1,,0.15,nav,1,1969,3,, 17178,NJBF000098482,401 N MYRTLE ST,Hammonton,NJ,39.68031267,-74.78246166,AGR1,3002,569,NaN,NE,1969,0,3401,2,1,10015.1679,10015.1679,3507,NO,38.96,46.87,1,2.84,6109,107.996164,116.124026,126.080073,129.249674,I,Above,Flat,0,NaN,,42.91292676,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17179,NJBF000093337,700 PLEASANT MILLS RD,Hammonton,NJ,39.63848545,-74.7397535,RES1,3001,,17,NE,1948,1948,3102,1,1,2046.261784,2046.261784,3504,NO,16.96,25.47,-4,0,6112,108.50266,116.878834,126.740071,130.289229,I,Above,Flat,0,5701,,21.21511084,0,0,,,,1,1,,0.15,nav,1,1948,1,, 17180,NJBF000093490,712 PLEASANT MILLS RD,Hammonton,NJ,39.63949089,-74.7395679,RES1,3001,,17,NE,1960,1960,3102,1,1,1262.062589,1262.062589,3504,NO,17.31,25.79,-4,0,6112,108.501427,116.870766,126.734333,130.278706,I,Above,Flat,0,5701,,21.55320523,0,0,,,,1,1,,0.15,nav,1,1960,1,, 17181,NJBF000093779,750 PLEASANT MILLS RD,Hammonton,NJ,39.64136469,-74.73778364,RES1,3001,,17,NE,1960,1960,3102,1,1,2861.446825,2861.446825,3504,NO,14.7,26.3,-4,0,6112,108.512488,116.868713,126.736572,130.279971,I,Above,Gable,0,5701,,20.50061146,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 17182,NJBF000093861,739 PLEASANT MILLS RD,Hammonton,NJ,39.64186626,-74.73867771,RES1,3001,,17,NE,1948,1948,3102,1,1,1788.400006,1788.400006,3504,NO,13.71,24.72,-4,0,6112,108.502666,116.855736,126.72484,130.260341,I,Above,Gable,0,5701,,19.21354252,0,0,,,,1,1,,0.15,nav,1,1948,1,, 17183,NJBF000093909,876 PLEASANT MILLS RD,Hammonton,NJ,39.6422655,-74.73456143,RES1,3001,,17,NE,1968,1968,3102,1,1,1083.721808,1083.721808,3504,NO,17.09,27.4,-4,0,6112,108.539953,116.889232,126.758978,130.315136,I,Above,Flat,0,5701,,22.2431686,0,0,,,,1,1,,0.35,nav,1,1968,1,, 17184,NJBF000093911,864 PLEASANT MILLS RD,Hammonton,NJ,39.64227866,-74.73533077,RES1,3001,,17,NE,1970,1970,3102,2,1,1586.791969,1586.791969,3504,NO,29.28,41.15,-4,0,6112,108.532692,116.882084,126.751929,130.303665,I,Above,Gable,0,5701,,35.21700182,0,0,,,,1,1,,0.35,nav,1,1970,2,, 17185,NJBF000093931,870 PLEASANT MILLS RD,Hammonton,NJ,39.64239187,-74.73486472,RES1,3001,,17,NE,1900,1900,3102,1,1,1160.280768,1160.280768,3504,NO,14.46,19.84,-4,0,6112,108.536723,116.885224,126.755299,130.308987,I,Above,Gable,0,5701,,17.15384677,0,1.1,,,,1,1,,0.35,nav,1,1900,1,, 17186,NJBF000093417,700 PLEASANT MILLS RD,Hammonton,NJ,39.63901111,-74.74063865,RES1,3001,,17,NE,1948,1948,3102,1,1,2013.29301,2013.29301,3504,NO,14.06,23.42,-4,0,6112,108.492892,116.865725,126.728237,130.269411,I,Above,Gable,0,5701,,18.73812917,0,0,,,,1,1,,0.15,nav,1,1948,1,, 17187,NJBF000096894,485 MIDDLE RD,Hammonton,NJ,39.66066269,-74.77343339,RES1,3001,,15,NE,1960,1960,3101,1,1,6106.792722,6106.792722,3507,NO,20.26,32.35,1,1.77,6110,108.134585,116.379202,126.2891,129.565869,I,Above,Gable,0,5701,,26.30724072,0,0,,,,1,1,,0.35,nav,1,1960,1,, 17188,NJBF000092793,163 PLEASANT MILLS RD,Hammonton,NJ,39.63372696,-74.76380884,RES1,3001,,17,NE,1920,1920,3102,2,1,1416.214977,1416.214977,3504,NO,23.07,31.02,-4,0,6112,108.298078,116.711153,126.561265,130.006963,I,Above,Gable,0,5701,,27.04530009,0,0,,,,1,1,,0.35,nav,1,1920,2,, 17189,NJBF000092785,153 PLEASANT MILLS RD,Hammonton,NJ,39.63365719,-74.7641625,RES1,3001,,17,NE,1970,1970,3102,1,1,2607.484655,2607.484655,3504,NO,18.32,30.5,-4,0,6112,108.295152,116.708757,126.558682,130.002911,I,Above,Gable,0,5701,,24.41093101,0,0,,,,1,1,,0.35,nav,1,1970,1,, 17190,NJBF000092779,151 PLEASANT MILLS RD,Hammonton,NJ,39.6336011,-74.76446226,RES1,3001,,17,NE,1920,1920,3102,2,2,2866.333328,2866.333328,3504,NO,25.75,31.94,-4,0,6112,108.292657,116.70669,126.556463,129.999427,I,Above,Hip,0,5701,,28.84739352,0,0,,,,1,1,,0.35,nav,1,1920,2,, 17191,NJBF000095080,108 N LIBERTY ST,Hammonton,NJ,39.6480507,-74.80061441,RES1,3001,,17,NE,1973,1973,3102,2,1,3059.236047,3059.236047,3507,NO,33.77,45.42,1,2.19,6112,107.943445,116.280572,126.150812,129.368901,I,Above,Flat,0,5701,,39.59738784,0,1.2,,,,1,1,,0.35,nav,1,1973,2,, 17192,NJBF000094965,525 4TH ST,Hammonton,NJ,39.64740555,-74.80354929,RES1,3001,,17,NE,2000,2000,3102,1,1,2479.565577,2479.565577,3507,NO,19.47,26.43,1,0.56,6112,107.921315,116.263743,126.131239,129.339989,I,Above,Gable,0,5701,,22.95245191,0,1.2,,,,1,1,,0.35,nav,1,2000,1,, 17193,NJBF000098335,555 PINE RD,Hammonton,NJ,39.67364176,-74.78446032,AGR1,3001,999,NaN,NE,1969,0,3401,2,1,22526.34082,22526.34082,3507,NO,37.59,43.53,1,2.99,6112,108.000504,116.171301,126.109074,129.294853,I,Above,Flat,0,NaN,,40.55999399,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17194,NJBF000067006,125 MARGATE BLVD.,Linwood,NJ,39.35167853,-74.53956996,RES1,3001,510,NaN,NE,1969,0,3102,2,1,544.8981084,544.8981084,3507,NO,37.02,50.48,1,2.55,6106,112.297986,122.34403,132.024036,138.442586,I,Above,Flat,0,5701,,43.75182097,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17195,NJBF000067057,125 MARGATE BLVD.,Linwood,NJ,39.35190241,-74.53990332,RES1,3001,510,NaN,NE,1969,0,3102,2,1,661.0149401,661.0149401,3507,NO,28.66,35.5,1,-0.57,6106,112.287545,122.335722,132.01554,138.432397,I,Above,Flat,0,5701,,32.0789009,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17196,NJBF000067001,125 MARGATE BLVD.,Linwood,NJ,39.35164619,-74.54006698,RES1,3001,510,NaN,NE,1969,0,3102,2,1,652.9731455,652.9731455,3507,NO,38.93,44.48,1,0.08,6106,112.2873,122.335671,132.015593,138.432884,I,Above,Flat,0,5701,,41.70565452,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17197,NJBF000067100,125 MARGATE BLVD.,Linwood,NJ,39.35210553,-74.53971296,RES1,3001,510,NaN,NE,1969,0,3102,2,1,559.1976903,559.1976903,3507,NO,28.97,35.67,1,0.44,6106,112.289076,122.336805,132.016551,138.433223,I,Above,Flat,0,5701,,32.31859716,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17198,NJBF000067010,125 MARGATE BLVD.,Linwood,NJ,39.35169103,-74.53972896,RES1,3001,510,NaN,NE,1969,0,3102,2,1,633.3709563,633.3709563,3507,NO,37.85,45.8,1,0.76,6106,112.294265,122.341107,132.021073,138.439143,I,Above,Flat,0,5701,,41.82696926,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17199,NJBF000066947,125 MARGATE BLVD.,Linwood,NJ,39.35141853,-74.54013046,RES1,3001,510,NaN,NE,1969,0,3102,2,1,605.7657887,605.7657887,3507,NO,31.45,45.14,1,1.61,6106,112.288936,122.337074,132.017103,138.435004,I,Above,Flat,0,5701,,38.2920117,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17200,NJBF000066982,125 MARGATE BLVD.,Linwood,NJ,39.35157671,-74.54026807,RES1,3001,510,NaN,NE,1969,0,3102,2,1,944.0598909,944.0598909,3507,NO,37.08,42.1,1,0.42,6106,112.283726,122.332905,132.012825,138.429796,I,Above,Flat,0,5701,,39.59167413,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17201,NJBF000067036,125 MARGATE BLVD.,Linwood,NJ,39.35177203,-74.53998996,RES1,3001,510,NaN,NE,1969,0,3102,2,1,542.833664,542.833664,3507,NO,30.55,38.59,1,0.98,6106,112.287336,122.33563,132.015501,138.432569,I,Above,Flat,0,5701,,34.56946667,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17202,NJBF000066854,125 MARGATE BLVD.,Linwood,NJ,39.35102053,-74.53975146,RES1,3001,510,NaN,NE,1969,0,3102,2,1,743.8839169,743.8839169,3507,NO,35.15,48.93,1,-0.52,6106,112.30277,122.348127,132.028436,138.448763,I,Above,Gable,0,5701,,42.04027375,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17203,NJBF000066976,125 MARGATE BLVD.,Linwood,NJ,39.35152016,-74.54006391,RES1,3001,510,NaN,NE,1969,0,3102,2,1,739.5361666,739.5361666,3507,NO,31.75,46.52,1,1.36,6106,112.289057,122.337116,132.017105,138.43484,I,Above,Flat,0,5701,,39.13312716,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17204,NJBF000066939,125 MARGATE BLVD.,Linwood,NJ,39.35136324,-74.53960093,RES1,3001,510,NaN,NE,1969,0,3102,2,1,644.6390378,644.6390378,3507,NO,24.97,31.21,1,-0.86,6106,112.301529,122.346978,132.027143,138.446703,I,Above,Flat,0,5701,,28.09052184,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17205,NJBF000066957,125 MARGATE BLVD.,Linwood,NJ,39.35144503,-74.53990146,RES1,3001,510,NaN,NE,1969,0,3102,2,1,522.549659,522.549659,3507,NO,28.53,41.23,1,0.52,6106,112.293713,122.340806,132.020867,138.439314,I,Above,Flat,0,5701,,34.87793656,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17206,NJBF000067028,125 MARGATE BLVD.,Linwood,NJ,39.35174803,-74.54016696,RES1,3001,510,NaN,NE,1969,0,3102,2,1,717.815533,717.815533,3507,NO,35.36,50.18,1,-0.74,6106,112.283694,122.332789,132.012638,138.429297,I,Above,Flat,0,5701,,42.77056294,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17207,NJBF000066991,125 MARGATE BLVD.,Linwood,NJ,39.35161603,-74.53965646,RES1,3001,510,NaN,NE,1969,0,3102,2,1,722.7607389,722.7607389,3507,NO,26.26,33.73,1,0.41,6106,112.296904,122.343217,132.023238,138.44177,I,Above,Flat,0,5701,,29.99693362,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17208,NJBF000064016,205 W SCHOOLHOUSE DR,Linwood,NJ,39.34334282,-74.57742674,RES1,3001,,18,NE,1999,1999,3102,2,1,3308.712266,3308.712266,3505,NO,31.9,42.88,3,-0.52,6112,111.588695,121.777492,131.468963,137.783798,I,Above,Hip,0,5701,,37.38858573,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 17209,NJBF000067000,125 MARGATE BLVD.,Linwood,NJ,39.35164503,-74.54022896,RES1,3001,510,NaN,NE,1969,0,3102,2,1,678.2585835,678.2585835,3507,NO,27.1,37.79,1,-0.63,6106,112.283687,122.332839,132.01273,138.429574,I,Above,Flat,0,5701,,32.44499232,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17210,NJBF000067045,125 MARGATE BLVD.,Linwood,NJ,39.35180553,-74.54012896,RES1,3001,510,NaN,NE,1969,0,3102,2,1,650.6596159,650.6596159,3507,NO,32.19,44.15,1,-0.08,6106,112.283768,122.332815,132.01264,138.429204,I,Above,Flat,0,5701,,38.16969773,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17211,NJBF000066870,125 MARGATE BLVD.,Linwood,NJ,39.35107903,-74.53973446,RES1,3001,510,NaN,NE,1969,0,3102,2,1,714.3257783,714.3257783,3507,NO,31.01,43.42,1,2.03,6106,112.30237,122.347784,132.028067,138.448241,I,Above,Gable,0,5701,,37.21231703,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17212,NJBF000067062,125 MARGATE BLVD.,Linwood,NJ,39.3519092,-74.53941886,RES1,3001,510,NaN,NE,1969,0,3102,2,1,1134.032674,1134.032674,3507,NO,33.75,40.48,1,1.96,6106,112.298292,122.344141,132.024056,138.442222,I,Above,Flat,0,5701,,37.11814701,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17213,NJBF000063582,414 W HAMILTON AVE,Linwood,NJ,39.34210482,-74.58220832,RES1,3001,,16,NE,1920,1920,3102,2,1,1071.561252,1071.561252,3505,NO,30.09,35.69,3,5.75,6110,111.508767,121.708984,131.403914,137.702782,I,Above,Gable,0,5701,,32.88848275,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 17214,NJBF000058665,212 W KIRKLIN AVE,Linwood,NJ,39.33270501,-74.58702052,RES1,3001,,16,NE,1959,1959,3102,1,1,2021.183068,2021.183068,3507,NO,18.15,25.34,1,2.9,6112,111.572206,121.73511,131.431576,137.73927,I,Above,Hip,0,5701,,21.74863346,0,0,,,,1,1,,0.35,nav,1,1959,1,, 17215,NJBF000063628,315 W PATCONG AVE,Linwood,NJ,39.34223767,-74.58114571,RES1,3001,,16,NE,1960,1960,3102,1,1,1590.630483,1590.630483,3505,NO,15.96,23.82,3,2.28,6112,111.528659,121.725796,131.419938,137.722857,I,Above,Gable,0,5701,,19.88816143,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 17216,NJBF000064427,,Linwood,NJ,39.34445837,-74.56773433,RES1,3001,,NaN,NE,1969,0,3102,2,1,3429.370422,3429.370422,3507,NO,37.98,50.87,1,2.08,6112,111.778637,121.932834,131.61889,137.968315,I,Above,Hip,0,5701,,44.42803795,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17217,NJBF000064133,550 HAMILTON AVE,Linwood,NJ,39.34366421,-74.58462534,COM4,3001,,NaN,ME,1969,0,3401,2,1,3001.657786,3001.657786,3507,NO,22.92,29.57,1,1.63,6106,111.432659,121.649564,131.346242,137.629823,I,Above,Flat,0,NaN,,26.24445674,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17218,NJBF000060007,315 MELODY LANE,Linwood,NJ,39.33523123,-74.58635844,RES1,3001,,16,NE,1960,1960,3102,2,1,2099.079383,2099.079383,3507,NO,26.88,35.93,1,-0.99,6110,111.541286,121.716851,131.413903,137.716623,I,Above,Hip,0,5701,,31.40789763,0,0,,,,1,1,,0.35,nav,1,1960,2,, 17219,NJBF000065212,5 ARROWHEAD DRIVE,Linwood,NJ,39.34642511,-74.58134338,RES1,3001,,17,NE,2001,2001,3102,2,1,1862.803371,1862.803371,3507,NO,27.19,41.95,1,2.77,6106,111.456093,121.675034,131.368543,137.657306,I,Above,Gable,0,5701,,34.57303422,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17220,NJBF000061903,1921 WEST AVE,Linwood,NJ,39.33844063,-74.58484859,RES1,3001,,16,NE,1978,1978,3102,2,1,2225.632775,2225.632775,3505,NO,37.49,51.86,3,5.63,6106,111.516331,121.70551,131.402246,137.701411,I,Above,Gable,0,5701,,44.67300065,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17221,NJBF000068993,525 CEDARBROOK LANE,Linwood,NJ,39.3582855,-74.5760375,RES1,3001,,18,NE,1976,1976,3101,2,1,832.8725301,832.8725301,3507,NO,30.33,41.86,1,0.03,6106,111.392396,121.636184,131.318426,137.590501,I,Above,Hip,0,5701,,36.09632014,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 17222,NJBF000066564,1019 RICHARD DR,Linwood,NJ,39.35009477,-74.57876353,RES1,3001,,17,NE,1967,1967,3101,1,1,1960.027692,1960.027692,3507,NO,17.04,26.56,1,-0.18,6110,111.453205,121.678647,131.368772,137.656515,I,Above,Gable,0,5701,,21.79848581,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 17223,NJBF000068312,509 W DAVIS AVE,Linwood,NJ,39.35632704,-74.57606787,RES1,3001,,16,NE,1967,1967,3101,1,1,2306.893887,2306.893887,3507,NO,18.35,32.11,1,2.97,6106,111.419344,121.656868,131.340901,137.619345,I,Above,Gable,0,5701,,25.23350929,0,0,,,,1,1,,0.03,nav,1,1967,1,, 17224,NJBF000064418,2 YALE LANE,Linwood,NJ,39.34443839,-74.57801233,RES1,3001,,18,NE,1974,1974,3102,2,1,3235.848557,3235.848557,3507,NO,26.11,35.95,1,0.37,6106,111.558654,121.754983,131.446635,137.755621,I,Above,Gable,0,5701,,31.03070071,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 17225,NJBF000057221,,Linwood,NJ,39.3301691,-74.58183636,RES1,3001,,NaN,NE,1969,0,3102,2,1,3075.065794,3075.065794,3507,NO,21.43,36.21,1,0.25,6106,111.719459,121.854073,131.545676,137.882694,I,Above,Hip,0,5701,,28.8183239,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17226,NJBF000065493,111 COUNTRY CLUB DRIVE,Linwood,NJ,39.34724544,-74.56436241,RES1,3001,,18,NE,1986,1986,3102,2,1,4803.356485,4803.356485,3507,NO,26.44,38.66,1,2.22,6106,111.809861,121.960127,131.643964,137.997166,I,Above,Gable,0,5701,,32.54940698,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 17227,NJBF000065597,109 COUNTRY CLUB DRIVE,Linwood,NJ,39.34755832,-74.5646546,RES1,3001,,17,NE,1979,1979,3102,2,1,4241.677469,4241.677469,3507,NO,28.53,35.6,1,1.79,6106,111.798786,121.951534,131.635349,137.986482,I,Above,Flat,0,5701,,32.06524665,0,1.2,,,,1,1,,0.03,nav,1,1979,2,, 17228,NJBF000058385,2210 NEW ROAD,Linwood,NJ,39.33222416,-74.59101606,RES1,3001,,17,NE,2013,2013,3102,2,1,1218.655771,1218.655771,3507,NO,30.13,43.08,1,-0.3,6110,111.502507,121.672326,131.371654,137.663553,I,Above,Hip,0,5701,,36.60432845,0,0,,,,1,1,,0.35,nav,1,2013,2,, 17229,NJBF000063723,515 W HAMILTON AVE,Linwood,NJ,39.34251445,-74.58466523,EDU1,3001,,NaN,E,1969,0,3401,2,1,7925.552291,7925.552291,3507,NO,27.52,34.62,1,1.9,6106,111.451074,121.66195,131.358765,137.645847,I,Above,Flat,0,NaN,,31.07120112,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17230,NJBF000060272,646 OCEAN HTGS AVE,Linwood,NJ,39.33569399,-74.59515648,COM3,3001,,NaN,ME,1969,0,3401,2,1,6244.729928,6244.729928,3507,NO,20.93,34.67,1,-0.09,6106,111.360659,121.560559,131.265365,137.527727,I,Above,Hip,0,NaN,,27.80445108,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17231,NJBF000059841,209 EAST DR,Linwood,NJ,39.33494754,-74.57226267,RES1,3001,,17,NE,1965,1965,3102,2,1,2428.678903,2428.678903,3507,NO,37.92,50.96,1,-0.08,6106,111.83433,121.963116,131.651367,138.012302,I,Above,Gable,0,5701,,44.43922252,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 17232,NJBF000056636,4 E ROYAL AVE,Linwood,NJ,39.32893886,-74.5830016,RES1,3001,,17,NE,1985,1985,3102,2,1,2794.183157,2794.183157,3507,NO,35.87,45.68,1,-0.32,6110,111.717597,121.848635,131.54022,137.876114,I,Above,Gable,0,5701,,40.77636694,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 17233,NJBF000057665,5 HIGHLAND CT,Linwood,NJ,39.33095694,-74.58097827,RES1,3001,,17,NE,1960,1960,3102,2,1,2146.540613,2146.540613,3507,NO,23.73,37.66,1,-0.99,6112,111.72305,121.859512,131.551014,137.88919,I,Above,Gable,0,5701,,30.69751416,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 17234,NJBF000056533,6 E ROYAL AVE,Linwood,NJ,39.32868799,-74.58280653,RES1,3001,,17,NE,1986,1986,3102,2,1,2322.678797,2322.678797,3507,NO,31.6,39.19,1,1.8,6106,111.72584,121.854964,131.546268,137.883704,I,Above,Gable,0,5701,,35.3981862,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 17235,NJBF000058083,211 W FRANCES AVE,Linwood,NJ,39.33168026,-74.5873589,RES1,3001,,17,NE,1960,1960,3102,2,1,1511.801592,1511.801592,3505,NO,35.46,42.75,3,0.01,6112,111.583537,121.741413,131.437586,137.746988,I,Above,Gable,0,5701,,39.10438983,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 17236,NJBF000062155,107 E PATCONG AVE,Linwood,NJ,39.33889285,-74.57263152,RES1,3001,,18,NE,1965,1965,3102,2,1,2217.88105,2217.88105,3507,NO,30.64,43.43,1,1.39,6112,111.762018,121.911215,131.600177,137.947893,I,Above,Gable,0,5701,,37.03798428,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17237,NJBF000069396,404 CEDARBROOK LANE WEST,Linwood,NJ,39.36010045,-74.57542493,RES1,3001,,17,NE,1976,1976,3101,2,1,2807.891435,2807.891435,3507,NO,25.26,34.95,1,0.8,6112,111.381169,121.627233,131.30727,137.575789,I,Above,Gable,0,5701,,30.10561811,0,1.2,,,,1,1,,0.35,nav,1,1976,2,, 17238,NJBF000063876,501 W PATCONG AVE,Linwood,NJ,39.342961,-74.5835265,COM1,3001,999,NaN,ME,1969,0,3401,1,1,7671.84179,7671.84179,3507,NO,19.52,26.41,1,1.2,6112,111.467144,121.676484,131.37236,137.662904,I,Above,Flat,0,NaN,,22.96624519,0,0,,,,1,1,,1,nav,1,1969,1,, 17239,NJBF000057595,8 W FRANCES AVE,Linwood,NJ,39.33084963,-74.58391283,RES1,3001,,16,NE,1953,1953,3102,1,1,1516.248171,1516.248171,3507,NO,14.4,28.5,1,1.75,6110,111.666214,121.810349,131.503652,137.830082,I,Above,Gable,0,5701,,21.44946361,0,0,,,,1,1,,0.35,nav,1,1953,1,, 17240,NJBF000068622,555 W BARR AVE,Linwood,NJ,39.35726531,-74.57664797,RES1,3001,,16,NE,1960,1960,3101,1,1,1832.957968,1832.957968,3507,NO,18.48,26.03,1,0.86,6106,111.393141,121.636661,131.320248,137.593214,I,Above,Hip,0,5701,,22.25546174,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 17241,NJBF000068223,502 W DAVIS AVE,Linwood,NJ,39.35604588,-74.57425159,RES1,3001,,16,NE,1968,1968,3101,1,1,2349.842516,2349.842516,3507,NO,16.62,29.5,1,0.5,6112,111.463602,121.691348,131.374496,137.661214,I,Above,Gable,0,5701,,23.05937258,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 17242,NJBF000057078,,Linwood,NJ,39.32986839,-74.58049551,RES1,3001,,NaN,NE,1969,0,3102,2,1,4051.290125,4051.290125,3507,NO,35.77,49.51,1,-0.04,6112,111.75151,121.880661,131.571295,137.914644,I,Above,Hip,0,5701,,42.63744288,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17243,NJBF000060384,2131 WEST AVE,Linwood,NJ,39.33588653,-74.59157706,RES1,3001,,17,NE,1978,1978,3102,1,1,3276.864613,3276.864613,3507,NO,20,31.7,1,1.54,6106,111.426595,121.619601,131.321202,137.599066,I,Above,Gable,0,5701,,25.84840209,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 17244,NJBF000068451,711 RIVER DRIVE,Linwood,NJ,39.35680327,-74.57608314,RES1,3001,,16,NE,1966,1966,3101,1,1,2918.210344,2918.210344,3507,NO,14.91,25.23,1,0.75,6110,111.412231,121.65144,131.335071,137.611879,I,Above,Gable,0,5701,,20.06709263,0,1.2,,,,1,1,,0.35,nav,1,1966,1,, 17245,NJBF000065222,14 FALLING WATER DRIVE,Linwood,NJ,39.34644257,-74.58188942,RES1,3001,,17,NE,2001,2001,3102,2,1,1885.088346,1885.088346,3507,NO,33.26,41.16,1,1.46,6110,111.444256,121.665403,131.359323,137.645712,I,Above,Gable,0,5701,,37.20947682,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17246,NJBF000065387,1049 WOODE-LYNNE BLVD,Linwood,NJ,39.34691919,-74.56799042,RES1,3001,,19,NE,2009,2009,3102,2,1,4150.764196,4150.764196,3507,NO,26.21,35.08,1,1.24,6112,111.735503,121.900736,131.586128,137.926849,I,Above,Hip,0,5701,,30.64613743,0,1.2,,,,1,1,,0.35,nav,1,2009,2,, 17247,NJBF000065475,1040 WOODE-LYNNE BLVD,Linwood,NJ,39.34717438,-74.56699224,RES1,3001,,17,NE,1955,1955,3102,2,1,3015.932549,3015.932549,3507,NO,33.67,41.54,1,1.29,6112,111.753415,121.915214,131.600085,137.943759,I,Above,Gable,0,5701,,37.60342003,0,1.2,,,,1,1,,0.35,nav,1,1955,2,, 17248,NJBF000059427,2201 BRIGHTON DR,Linwood,NJ,39.33421897,-74.59097398,RES1,3001,,17,NE,1963,1963,3102,2,1,1514.625096,1514.625096,3507,NO,26.39,36.6,1,2.35,6110,111.46791,121.649503,131.349857,137.635676,I,Above,Gable,0,5701,,31.49564661,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 17249,NJBF000058651,303 W KIRKLIN AVE,Linwood,NJ,39.33267187,-74.5881046,RES1,3001,,16,NE,1958,1958,3102,1,1,1968.901579,1968.901579,3507,NO,13.54,26.94,1,1.62,6110,111.55142,121.716905,131.414175,137.717324,I,Above,Hip,0,5701,,20.24110219,0,0,,,,1,1,,0.35,nav,1,1958,1,, 17250,NJBF000066637,1017 RICHARD DR,Linwood,NJ,39.35031787,-74.57859477,RES1,3001,,17,NE,1966,1966,3101,1,1,3172.757206,3172.757206,3507,NO,16.69,21.97,1,2.6,6112,111.453411,121.679097,131.368987,137.656709,I,Above,Gable,0,5701,,19.33317175,0,1.2,,,,1,1,,0.35,nav,1,1966,1,, 17251,NJBF000062618,311 W FOREST DRIVE,Linwood,NJ,39.33981823,-74.58450185,RES1,3001,,16,NE,1986,1986,3102,2,1,1962.736072,1962.736072,3505,NO,29.36,37.78,3,-2.63,6106,111.499939,121.695616,131.39226,137.688584,I,Above,Gable,0,5701,,33.57118707,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 17252,NJBF000064223,SCHOOLHOUSE & BELHAVEN,Linwood,NJ,39.34392882,-74.58170347,RES1,3001,,17,NE,1986,1986,3102,2,1,2034.453071,2034.453071,3507,NO,35.21,48.17,1,-0.56,6112,111.489154,121.696972,131.391327,137.686546,I,Above,Gable,0,5701,,41.69120379,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 17253,NJBF000058206,,Linwood,NJ,39.33189443,-74.59048396,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2114.329268,2114.329268,3507,NO,10.52,23.27,1,-0.03,6112,111.518691,121.685341,131.384044,137.6793,I,Above,Gable,0,5701,,16.89278599,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17254,NJBF000058097,,Linwood,NJ,39.33171376,-74.59061926,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2184.956512,2184.956512,3507,NO,13.79,23.69,1,0.24,6112,111.51927,121.685163,131.383866,137.679094,I,Above,Gable,0,5701,,18.73721634,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17255,NJBF000058084,,Linwood,NJ,39.33168166,-74.59107595,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2379.89627,2379.89627,3507,NO,16.3,24.5,1,0.41,6112,111.510988,121.677722,131.376773,137.670104,I,Above,Hip,0,5701,,20.39810723,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17256,NJBF000058191,,Linwood,NJ,39.33186158,-74.59093347,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2293.263448,2293.263448,3507,NO,21.55,31.22,1,0.12,6112,111.510553,121.678035,131.37708,137.670474,I,Above,Hip,0,5701,,26.38508091,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17257,NJBF000058289,,Linwood,NJ,39.33203953,-74.59079616,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2386.848058,2386.848058,3507,NO,13.86,28.12,1,2.4,6112,111.510043,121.678271,131.377311,137.670749,I,Above,Hip,0,5701,,20.987513,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17258,NJBF000057797,400 W OCEAN HEIGHTS AVE,Linwood,NJ,39.331182,-74.5901855,RES1,3001,,16,NE,1900,1900,3102,2,1,763.3408061,763.3408061,3507,NO,39.65,47.81,1,1.46,6110,111.53712,121.698885,131.396916,137.695684,I,Above,Hip,0,5701,,43.72900593,0,0,,,,1,1,,0.35,nav,1,1900,2,, 17259,NJBF000069124,520 CEDARBROOK LANE,Linwood,NJ,39.35885579,-74.57536342,RES1,3001,,17,NE,1980,1980,3101,2,1,2218.250345,2218.250345,3507,NO,31.47,44.14,1,1.44,6112,111.399538,121.641688,131.322953,137.595872,I,Above,Gable,0,5701,,37.80448402,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 17260,NJBF000056764,2254 SHORE ROAD,Linwood,NJ,39.32920597,-74.58342948,RES1,3001,,16,NE,1917,1917,3102,1,2,1657.165854,1657.165854,3507,NO,15.04,26.9,1,2.19,6110,111.704472,121.838137,131.530157,137.863504,I,Above,Hip,0,5701,,20.96974703,0,0,,,,1,1,,0.35,nav,1,1917,1,, 17261,NJBF000058332,1 BONNIE DRIVE,Linwood,NJ,39.33210286,-74.57604998,RES1,3001,,18,NE,1997,1997,3102,2,1,1598.679555,1598.679555,3507,NO,34.91,46.07,1,2.54,6112,111.803527,121.930894,131.620138,137.974664,I,Above,Hip,0,5701,,40.48915479,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 17262,NJBF000059889,2188 WEST AVE,Linwood,NJ,39.3350306,-74.59188568,RES1,3001,,18,NE,1990,1990,3102,2,1,1444.459242,1444.459242,3507,NO,36.76,51.58,1,-0.9,6112,111.435733,121.624335,131.32585,137.605059,I,Above,Gable,0,5701,,44.17226066,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 17263,NJBF000064194,1407 NEW ROAD,Linwood,NJ,39.34384158,-74.58267379,COM4,3001,569,NaN,ME,1969,0,3401,1,1,3962.919313,3962.919313,3507,NO,19.97,27.8,1,2.43,6112,111.470285,121.681198,131.376304,137.667682,I,Above,Gable,0,NaN,,23.88522636,0,1.2,,,,1,1,,1,nav,1,1969,1,, 17264,NJBF000065324,119 E DELMAR AVE,Linwood,NJ,39.34674029,-74.5646542,RES1,3001,,18,NE,1980,1980,3102,2,1,4428.704606,4428.704606,3507,NO,37.36,46.31,1,2.89,6106,111.811007,121.960702,131.644835,137.998565,I,Above,Gable,0,5701,,41.83462143,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 17265,NJBF000067011,1006 BARTLETT AVE,Linwood,NJ,39.35169137,-74.57812138,RES1,3001,,16,NE,1967,1967,3101,1,1,2392.465164,2392.465164,3507,NO,18.09,27.12,1,0.51,6112,111.442662,121.672113,131.360897,137.64612,I,Above,Gable,0,5701,,22.60497328,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 17266,NJBF000059587,1840 FRANKLIN BLVD,Linwood,NJ,39.33450259,-74.57418621,RES1,3001,,16,NE,1958,1958,3102,2,1,5375.770502,5375.770502,3507,NO,26.94,41.81,1,-0.48,6112,111.801702,121.935051,131.624132,137.978914,I,Above,Gable,0,5701,,34.3751907,0,1.2,,,,1,1,,0.35,nav,1,1958,2,, 17267,NJBF000059728,509 KIRKLIN AVE,Linwood,NJ,39.33474056,-74.5927453,RES1,3001,,17,NE,1979,1979,3102,2,1,1943.858031,1943.858031,3507,NO,35.49,45.3,1,-0.93,6106,111.424201,121.613027,131.315167,137.591467,I,Above,Gable,0,5701,,40.39767688,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 17268,NJBF000058804,2000 FRANKLIN BLVD,Linwood,NJ,39.33296547,-74.57556652,RES1,3001,,16,NE,1955,1955,3102,2,1,1203.755083,1203.755083,3507,NO,38.43,52.43,1,0.62,6112,111.798913,121.929138,131.618453,137.972352,I,Above,Gable,0,5701,,45.42606995,0,0,,,,1,1,,0.35,nav,1,1955,2,, 17269,NJBF000069609,16 WEXFORD LANE,Linwood,NJ,39.36207605,-74.57421819,RES1,3001,,20,NE,1998,1998,3101,2,1,4991.889698,4991.889698,3507,NO,22.43,28.24,1,0.76,6112,111.382025,121.62694,131.304084,137.57085,I,Above,Hip,0,5701,,25.33368924,0,1.2,,,,1,1,,0.35,nav,1,1998,2,, 17270,NJBF000069583,16 WEXFORD LANE,Linwood,NJ,39.36188251,-74.5743614,RES1,3001,,20,NE,1998,1998,3101,2,1,514.0837962,514.0837962,3507,NO,35.93,45.52,1,2.24,6112,111.381328,121.62653,131.303977,137.570818,I,Above,Gable,0,5701,,40.72435904,0,1.2,,,,1,1,,0.35,nav,1,1998,2,, 17271,NJBF000067145,1001 RICHARD DR,Linwood,NJ,39.35228651,-74.57731755,RES1,3001,,17,NE,1966,1966,3101,2,1,1884.019106,1884.019106,3507,NO,24.93,38,1,-0.3,6110,111.451141,121.679434,131.3673,137.653896,I,Above,Gable,0,5701,,31.46406708,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 17272,NJBF000067128,125 MARGATE BLVD.,Linwood,NJ,39.35220743,-74.53923438,RES3B,3001,510,NaN,ME,1969,0,3301,1,1,4460.657406,4460.657406,3505,NO,17.17,30.74,3,-0.71,6106,112.298461,122.3441,132.023892,138.441526,I,Above,Hip,0,NaN,,23.95173216,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17273,NJBF000067656,905 BARTLETT AVE,Linwood,NJ,39.35408641,-74.57819685,RES1,3001,,16,NE,1968,1968,3101,1,1,3087.26279,3087.26279,3507,NO,13.02,24.45,1,-0.96,6112,111.405045,121.644487,131.331725,137.608792,I,Above,Gable,0,5701,,18.73294126,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 17274,NJBF000066605,1018 BARTLETT AVE,Linwood,NJ,39.35021107,-74.57905385,RES1,3001,,16,NE,1966,1966,3101,1,1,2275.475108,2275.475108,3507,NO,18.31,31.78,1,2.4,6110,111.445149,121.672347,131.362617,137.648776,I,Above,Gable,0,5701,,25.04457421,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 17275,NJBF000065499,116 E DELMAR AVE,Linwood,NJ,39.34726283,-74.56487948,RES1,3001,,18,NE,1987,1987,3102,2,1,3617.97631,3617.97631,3507,NO,33.42,41.93,1,1.7,6106,111.798272,121.950937,131.634952,137.986198,I,Above,Gable,0,5701,,37.67757923,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 17276,NJBF000065416,117 COUNTRY CLUB DRIVE,Linwood,NJ,39.34700362,-74.56382286,RES1,3001,,20,NE,1979,1979,3102,1,1,6631.385529,6631.385529,3507,NO,18.26,29.26,1,0.09,6106,111.825255,121.972196,131.65594,138.011876,I,Above,Hip,0,5701,,23.76106147,0,1.2,,,,1,1,,0.03,nav,1,1979,1,, 17277,NJBF000058511,215 W KIRKLIN AVE,Linwood,NJ,39.33244094,-74.58748054,RES1,3001,,16,NE,1960,1960,3102,1,1,2180.754967,2180.754967,3507,NO,13,20.8,1,2.33,6110,111.567763,121.730332,131.427007,137.733548,I,Above,Hip,0,5701,,16.89995192,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 17278,NJBF000063893,412 W PATCONG AVE,Linwood,NJ,39.3430129,-74.58202684,RES1,3001,,16,NE,1958,1958,3102,1,1,1815.91232,1815.91232,3505,NO,17.75,24.38,3,4.03,6110,111.497478,121.701772,131.396493,137.693251,I,Above,Flat,0,5701,,21.06363975,0,0,,,,1,1,,0.35,nav,1,1958,1,, 17279,NJBF000058714,,Linwood,NJ,39.33279218,-74.59199512,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2049.304291,2049.304291,3507,NO,26.33,35.29,1,1.33,6112,111.473445,121.648849,131.349318,137.635125,I,Above,Gable,0,5701,,30.80873737,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17280,NJBF000058781,,Linwood,NJ,39.33293879,-74.59176922,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2201.041588,2201.041588,3507,NO,32.76,42.17,1,-0.63,6106,111.475197,121.650979,131.351341,137.637683,I,Above,Gable,0,5701,,37.46438038,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17281,NJBF000058688,,Linwood,NJ,39.33275972,-74.59123911,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1881.648325,1881.648325,3507,NO,18.77,25.19,1,2.11,6106,111.488652,121.662168,131.361986,137.651227,I,Above,Gable,0,5701,,21.98090076,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17282,NJBF000058499,,Linwood,NJ,39.33242408,-74.59157837,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2310.961395,2310.961395,3507,NO,14.04,24.67,1,-0.99,6112,111.488065,121.660339,131.360247,137.649051,I,Above,Gable,0,5701,,19.35409603,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17283,NJBF000058349,,Linwood,NJ,39.33214866,-74.59191847,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2092.38404,2092.38404,3507,NO,12.62,21.03,1,-0.15,6112,111.486397,121.657779,131.357806,137.645975,I,Above,Gable,0,5701,,16.82210653,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17284,NJBF000057526,3 CANDLEWOOD DRIVE,Linwood,NJ,39.33072584,-74.580214,RES1,3001,,18,NE,1990,1990,3102,2,1,4654.328267,4654.328267,3507,NO,35.38,48.99,1,0.52,6112,111.742401,121.875375,131.566303,137.908262,I,Above,Hip,0,5701,,42.18404983,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 17285,NJBF000063218,235 E CAMBRIDGE AVE,Linwood,NJ,39.34115252,-74.56719344,RES1,3001,,17,NE,1956,1956,3102,2,1,3761.559435,3761.559435,3507,NO,33.47,44.26,1,2.7,6112,111.841692,121.979664,131.666082,138.027728,I,Above,Gable,0,5701,,38.86351592,0,1.2,,,,1,1,,0.35,nav,1,1956,2,, 17286,NJBF000063258,411 W JOSEPH AVE,Linwood,NJ,39.34124517,-74.58362084,RES1,3001,,16,NE,1961,1961,3102,1,1,1840.476728,1840.476728,3505,NO,11.87,23.33,3,-2.2,6110,111.493912,121.694434,131.390461,137.686046,I,Above,Gable,0,5701,,17.59616975,0,0,,,,1,1,,0.35,nav,1,1961,1,, 17287,NJBF000063086,403 W JOSEPH AVE,Linwood,NJ,39.34086248,-74.58266317,RES1,3001,,16,NE,1963,1963,3102,1,1,2149.079615,2149.079615,3505,NO,20.62,34,3,5.84,6110,111.520099,121.715336,131.410632,137.711494,I,Above,Gable,0,5701,,27.31294492,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17288,NJBF000061173,1930 MARY JANE LANE,Linwood,NJ,39.33718745,-74.58533775,RES1,3001,,17,NE,1980,1980,3102,2,1,2726.791519,2726.791519,3507,NO,33.7,45.77,1,1.63,6106,111.527939,121.711613,131.408469,137.709465,I,Above,Gable,0,5701,,39.73644498,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 17289,NJBF000061051,2031 WEST AVE,Linwood,NJ,39.3369685,-74.58833161,RES1,3001,,16,NE,1900,1900,3102,2,1,2541.455062,2541.455062,3507,NO,33.11,46.59,1,-0.1,6112,111.471684,121.662683,131.361873,137.650618,I,Above,Gable,0,5701,,39.8526158,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 17290,NJBF000061255,,Linwood,NJ,39.33731778,-74.5708544,RES1,3001,,NaN,NE,1969,0,3102,2,1,4183.255568,4183.255568,3507,NO,30.52,36.77,1,2.52,6110,111.825076,121.960101,131.648089,138.007417,I,Above,Hip,0,5701,,33.64557249,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17291,NJBF000064292,1401 NEW ROAD,Linwood,NJ,39.3441215,-74.582429,COM3,3001,560,NaN,ME,1969,0,3401,2,1,4355.441482,4355.441482,3507,NO,33.87,48.06,1,-0.05,6110,111.470805,121.682266,131.37714,137.66867,I,Above,Gable,0,NaN,,40.96434105,0,0,,,,1,1,,1,nav,1,1969,2,, 17292,NJBF000060948,1634 SOMERSET BLVD,Linwood,NJ,39.33680723,-74.57060944,RES1,3001,,19,NE,2010,2010,3102,2,1,4584.199386,4584.199386,3507,NO,34.82,46.46,1,1.25,6106,111.838544,121.970232,131.65805,138.019837,I,Above,Gable,0,5701,,40.64188459,0,1.2,,,,1,1,,0.03,nav,1,2010,2,, 17293,NJBF000060475,2018 NEW ROAD (REAR),Linwood,NJ,39.33604302,-74.58499468,RES1,3001,,17,NE,1957,1957,3102,2,1,1424.293087,1424.293087,3507,NO,36.82,44.72,1,0.03,6106,111.554558,121.730812,131.427098,137.733116,I,Above,Gable,0,5701,,40.77349589,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 17294,NJBF000060334,2018 NEW ROAD (REAR),Linwood,NJ,39.33579574,-74.58503475,RES1,3001,,17,NE,1957,1957,3102,2,1,2454.296214,2454.296214,3507,NO,30.89,40.54,1,-0.44,6106,111.558015,121.733001,131.429242,137.735856,I,Above,Gable,0,5701,,35.7174518,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 17295,NJBF000059959,305 MELODY LANE,Linwood,NJ,39.33514389,-74.58590006,RES1,3001,,16,NE,1971,1971,3102,1,1,2439.173415,2439.173415,3507,NO,16.23,23.86,1,-0.91,6112,111.55195,121.725739,131.42241,137.727359,I,Above,Gable,0,5701,,20.0416879,0,1.1,,,,1,1,,0.35,nav,1,1971,1,, 17296,NJBF000061153,498 SARA ANN CT,Linwood,NJ,39.3371507,-74.58628889,RES1,3001,,17,NE,1965,1965,3102,2,1,1528.066574,1528.066574,3507,NO,38.49,45.41,1,2.44,6106,111.509402,121.695673,131.393259,137.690288,I,Above,Gable,0,5701,,41.95384821,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 17297,NJBF000060174,515 GARFIELD AVE,Linwood,NJ,39.3355302,-74.5901202,RES1,3001,,17,NE,1990,1990,3102,2,1,3055.364461,3055.364461,3507,NO,20.95,27.49,1,-0.31,6112,111.46148,121.648765,131.348965,137.63441,I,Above,Gable,0,5701,,24.21983908,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 17298,NJBF000058963,400 W FRANCES AVE,Linwood,NJ,39.33327075,-74.59044968,RES1,3001,,16,NE,1964,1964,3102,2,1,2481.124477,2481.124477,3507,NO,35.03,41.39,1,-0.54,6112,111.494926,121.669647,131.36909,137.660192,I,Above,Gable,0,5701,,38.20934402,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 17299,NJBF000059340,,Linwood,NJ,39.33404999,-74.58619208,RES1,3001,,NaN,NE,1969,0,3102,2,1,7469.015288,7469.015288,3507,NO,30.43,40.39,1,0.36,6110,111.565143,121.733529,131.429994,137.737081,I,Above,Gable,0,5701,,35.40844089,0,0,,,,1,1,,1,nav,1,1969,2,, 17300,NJBF000059630,,Linwood,NJ,39.33457658,-74.58587123,RES1,3001,,NaN,NE,1969,0,3102,2,1,7326.141657,7326.141657,3507,NO,27.78,41.32,1,1.2,6112,111.562374,121.732868,131.429307,137.736134,I,Above,Gable,0,5701,,34.5483019,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17301,NJBF000059749,,Linwood,NJ,39.33479213,-74.58673864,COM4,3001,,NaN,ME,1969,0,3401,2,1,10460.36473,10460.36473,3507,NO,29.41,42.48,1,0.58,6112,111.541327,121.71544,131.41262,137.715069,I,Above,Hip,0,NaN,,35.94673367,0,0,,,,1,1,,1,nav,1,1969,2,, 17302,NJBF000059103,312 W KIRKLIN AVENUE,Linwood,NJ,39.33355182,-74.5892311,RES1,3001,,NaN,NE,1969,0,3102,1,1,1236.3529,1236.3529,3507,NO,17.61,25.08,1,1.56,6112,111.513803,121.687228,131.385824,137.681368,I,Above,Flat,0,5701,,21.34654047,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17303,NJBF000060217,,Linwood,NJ,39.33559788,-74.5856117,RES1,3001,,NaN,NE,1969,0,3102,2,1,4227.153914,4227.153914,3507,NO,22.31,35.41,1,-0.98,6110,111.54985,121.725389,131.421999,137.726769,I,Above,Hip,0,5701,,28.8616671,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17304,NJBF000059555,600 OCEAN HTGS AVE,Linwood,NJ,39.33445196,-74.59442847,RES1,3001,,14,NE,1900,1900,3102,1,1,784.5319558,784.5319558,3505,NO,16.28,25.26,3,3.35,6112,111.396907,121.587622,131.29114,137.5608,I,Above,Gable,0,5701,,20.77261114,0,0,,,,1,1,,0.35,nav,1,1900,1,, 17305,NJBF000059129,1990 FRANKLIN BLVD,Linwood,NJ,39.33361106,-74.57504885,RES1,3001,,16,NE,1982,1982,3102,2,1,3265.126536,3265.126536,3507,NO,37.42,46.75,1,1.94,6106,111.798743,121.930536,131.619799,137.973832,I,Above,Gable,0,5701,,42.08415389,0,0,,,,1,1,,0.03,nav,1,1982,2,, 17306,NJBF000058977,1998 FRANKLIN BLVD,Linwood,NJ,39.33329361,-74.57508711,RES1,3001,,17,NE,1980,1980,3102,2,1,4474.930556,4474.930556,3507,NO,38.45,52.57,1,0.84,6106,111.803272,121.933578,131.622758,137.977575,I,Above,Gable,0,5701,,45.50845326,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 17307,NJBF000057847,,Linwood,NJ,39.33126343,-74.58978572,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2478.709825,2478.709825,3507,NO,11.1,19.67,1,-0.19,6112,111.543449,121.704771,131.40254,137.702791,I,Above,Hip,0,5701,,15.3861011,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17308,NJBF000057955,,Linwood,NJ,39.33144283,-74.58963759,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2465.106301,2465.106301,3507,NO,16.54,24.6,1,2.58,6112,111.543135,121.70517,131.402934,137.703269,I,Above,Gable,0,5701,,20.56986645,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17309,NJBF000057842,,Linwood,NJ,39.33125787,-74.58926239,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2721.049459,2721.049459,3507,NO,39.56,49.86,1,2.92,6110,111.553734,121.713802,131.411163,137.713696,I,Above,Gable,0,5701,,44.71054692,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17310,NJBF000058163,,Linwood,NJ,39.33181474,-74.58929503,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2574.079205,2574.079205,3507,NO,16.63,29.7,1,1.84,6112,111.543231,121.706638,131.404355,137.705022,I,Above,Hip,0,5701,,23.16126844,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17311,NJBF000057891,2161 SHORE ROAD,Linwood,NJ,39.331339,-74.5825845,RES1,3001,,16,NE,1930,1930,3102,2,2,925.7031607,925.7031607,3507,NO,25.41,37.84,1,-0.05,6106,111.684238,121.827401,131.520099,137.85056,I,Above,Gable,0,5701,,31.62849905,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 17312,NJBF000057735,2161 SHORE ROAD,Linwood,NJ,39.33106637,-74.58266189,RES1,3001,,16,NE,1930,1930,3102,2,2,2413.312589,2413.312589,3507,NO,31.65,42.51,1,2.76,6106,111.687406,121.829283,131.521889,137.852846,I,Above,Gable,0,5701,,37.07988611,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 17313,NJBF000061576,208 E PATCONG AVENUE,Linwood,NJ,39.33789138,-74.5690846,RES1,3001,,20,NE,2001,2001,3102,2,1,1048.246743,1048.246743,3507,NO,23.31,30.72,1,0.89,6106,111.853199,121.984151,131.671406,138.035763,I,Above,Gable,0,5701,,27.01663352,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17314,NJBF000057507,,Linwood,NJ,39.33068824,-74.58224036,RES1,3001,,NaN,NE,1969,0,3102,2,1,1544.012445,1544.012445,3507,NO,26.92,35.69,1,-0.46,6106,111.702392,121.840997,131.533135,137.866956,I,Above,Flat,0,5701,,31.30630508,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17315,NJBF000058034,100 W KIRKLIN AVE,Linwood,NJ,39.33158308,-74.58365399,RES1,3001,,16,NE,1929,1929,3102,1,1,2212.145561,2212.145561,3507,NO,18.69,28.66,1,0,6110,111.658627,121.80614,131.499662,137.824961,I,Above,Gable,0,5701,,23.67847141,0,1.1,,,,1,1,,0.35,nav,1,1929,1,, 17316,NJBF000057420,2 W FRANCES AVE,Linwood,NJ,39.3305374,-74.58332173,RES1,3001,,15,NE,1955,1955,3102,1,1,1307.130906,1307.130906,3507,NO,19.09,27.57,1,2.88,6110,111.68342,121.824198,131.51694,137.846758,I,Above,Gable,0,5701,,23.33139321,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 17317,NJBF000057947,3 HOLLYCROFT LANE,Linwood,NJ,39.33142293,-74.57751696,RES1,3001,,18,NE,1995,1995,3102,2,1,3645.812898,3645.812898,3507,NO,36.05,47.21,1,0.44,6112,111.785094,121.913591,131.603328,137.954044,I,Above,Gable,0,5701,,41.6316745,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 17318,NJBF000064771,1 FALLING WATER DRIVE,Linwood,NJ,39.34529015,-74.58154147,RES1,3001,,16,NE,2001,2001,3102,2,1,1827.288912,1827.288912,3507,NO,24.93,33.31,1,2.5,6106,111.470305,121.684387,131.378351,137.669913,I,Above,Gable,0,5701,,29.12111348,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17319,NJBF000056984,2249 SHORE ROAD,Linwood,NJ,39.32967728,-74.58387031,REL1,3001,,NaN,ME,1969,0,3401,3,1,5210.852695,5210.852695,3507,NO,38.46,43.65,1,2.77,6112,111.687513,121.82498,131.517572,137.847696,I,Above,Hip,0,NaN,,41.05887731,0,0,,,,1,1,,1,nav,1,1969,3,, 17320,NJBF000058262,210 W FRANCES AVE,Linwood,NJ,39.33200259,-74.58717542,RES1,3001,,16,NE,1962,1962,3102,1,1,1911.338423,1911.338423,3507,NO,17.41,22.74,1,1.96,6112,111.581483,121.74075,131.436965,137.746161,I,Above,Gable,0,5701,,20.07942185,0,0,,,,1,1,,0.35,nav,1,1962,1,, 17321,NJBF000057354,2211 SHORE ROAD,Linwood,NJ,39.3304195,-74.5830315,RES1,3001,,16,NE,1953,1953,3102,2,1,1162.43772,1162.43772,3507,NO,28.18,42.04,1,-0.35,6106,111.691248,121.830574,131.523064,137.854431,I,Above,Gable,0,5701,,35.10980355,0,1.2,,,,1,1,,0.03,nav,1,1953,2,, 17322,NJBF000057233,,Linwood,NJ,39.33019722,-74.58254328,RES1,3001,,NaN,NE,1969,0,3102,2,1,2070.034207,2070.034207,3507,NO,28.21,40.98,1,-0.21,6106,111.704852,121.841598,131.533654,137.867694,I,Above,Gable,0,5701,,34.59433593,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17323,NJBF000056833,17 SEAGARDEN DRIVE,Linwood,NJ,39.32935603,-74.57946994,RES1,3001,,17,NE,1984,1984,3102,2,1,3455.142731,3455.142731,3507,NO,24.72,38.79,1,-0.84,6106,111.780949,121.904356,131.594118,137.943093,I,Above,Gable,0,5701,,31.75629447,0,1.2,,,,1,1,,0.03,nav,1,1984,2,, 17324,NJBF000058868,403 W FRANCES AVE,Linwood,NJ,39.33308858,-74.59110439,RES1,3001,,17,NE,1964,1964,3102,2,1,2192.168414,2192.168414,3507,NO,27.17,35.69,1,2.29,6106,111.485426,121.660593,131.36048,137.649282,I,Above,Gable,0,5701,,31.42991712,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 17325,NJBF000063229,409 W JOSEPH AVE,Linwood,NJ,39.3411775,-74.5834075,RES1,3001,,16,NE,1962,1962,3102,1,1,1686.956075,1686.956075,3505,NO,17.27,31.13,3,6.09,6110,111.499427,121.698873,131.394735,137.69144,I,Above,Flat,0,5701,,24.1996436,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17326,NJBF000057715,25 W KIRKLIN AVE,Linwood,NJ,39.33104244,-74.58355262,RES1,3001,,16,NE,1920,1920,3102,1,1,1856.343277,1856.343277,3507,NO,13.12,25.72,1,-0.53,6106,111.67004,121.814261,131.507432,137.834779,I,Above,Flat,0,5701,,19.41894772,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 17327,NJBF000063416,405 W HAMILTON AVE,Linwood,NJ,39.34165804,-74.58249429,RES1,3001,,16,NE,1961,1961,3102,1,1,1739.163956,1739.163956,3505,NO,11.79,24.15,3,-2.63,6112,111.51028,121.709149,131.404313,137.703383,I,Above,Gable,0,5701,,17.96769128,0,1.1,,,,1,1,,0.35,nav,1,1961,1,, 17328,NJBF000061594,1922 WEST AVE,Linwood,NJ,39.3379166,-74.58495879,RES1,3001,,16,NE,1979,1979,3102,1,1,3128.749058,3128.749058,3507,NO,16.95,24.63,1,2.66,6106,111.523068,121.709676,131.4064,137.706736,I,Above,Gable,0,5701,,20.79063278,0,1.2,,,,1,1,,0.03,nav,1,1979,1,, 17329,NJBF000063374,403 W HAMILTON AVE,Linwood,NJ,39.34153813,-74.58226043,RES1,3001,,16,NE,1961,1961,3102,1,1,3436.061287,3436.061287,3505,NO,15.18,25.47,3,-0.66,6112,111.51713,121.714556,131.409549,137.709986,I,Above,Gable,0,5701,,20.32704183,0,0,,,,1,1,,0.35,nav,1,1961,1,, 17330,NJBF000061702,232 W SEAVIEW AVE,Linwood,NJ,39.33810621,-74.58413998,RES1,3001,,17,NE,1969,1969,3102,2,1,1891.33935,1891.33935,3507,NO,23.69,36.39,1,1.8,6106,111.536462,121.72159,131.417727,137.720962,I,Above,Gable,0,5701,,30.04047929,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 17331,NJBF000056881,2252 SHORE ROAD,Linwood,NJ,39.32945612,-74.58313482,RES1,3001,,18,NE,1986,1986,3102,2,1,2177.288397,2177.288397,3507,NO,38.7,44.34,1,2.36,6110,111.70595,121.840215,131.532204,137.866018,I,Above,Gable,0,5701,,41.5201874,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 17332,NJBF000061459,231 W SEAVIEW AVE,Linwood,NJ,39.33767751,-74.5846499,RES1,3001,,17,NE,1920,1920,3102,2,1,2371.411583,2371.411583,3507,NO,34.93,44.46,1,0.04,6106,111.533425,121.717762,131.414202,137.716603,I,Above,Gable,0,5701,,39.69518868,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 17333,NJBF000061716,200 HOLLY LANE,Linwood,NJ,39.33813884,-74.57175037,RES1,3001,,18,NE,1996,1996,3102,2,1,3840.674026,3840.674026,3507,NO,32.48,39.53,1,0.71,6106,111.792855,121.935142,131.623625,137.977043,I,Above,Hip,0,5701,,36.00275538,0,1.2,,,,1,1,,0.03,nav,1,1996,2,, 17334,NJBF000069022,2 SANDY COURT,Linwood,NJ,39.358421,-74.575336,RES1,3001,,16,NE,1977,1977,3101,1,1,551.1268443,551.1268443,3507,NO,13.26,22.54,1,-0.81,6112,111.406149,121.646848,131.32852,137.602995,I,Above,Gable,0,5701,,17.89845286,0,1.1,,,,1,1,,0.35,nav,1,1977,1,, 17335,NJBF000068181,508 W WILSON AVE,Linwood,NJ,39.35591081,-74.57576758,RES1,3001,,16,NE,1964,1964,3101,1,1,2984.872927,2984.872927,3507,NO,12.17,17.32,1,0.17,6112,111.431941,121.666581,131.350773,137.631814,I,Above,Gable,0,5701,,14.74463529,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 17336,NJBF000057318,,Linwood,NJ,39.33035432,-74.58123681,RES1,3001,,NaN,NE,1969,0,3102,2,1,2126.838793,2126.838793,3507,NO,32.48,45.14,1,0.34,6106,111.728254,121.862179,131.55352,137.89243,I,Above,Gable,0,5701,,38.8098559,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17337,NJBF000056363,3 E ROYAL AVE,Linwood,NJ,39.32831075,-74.5830963,RES1,3001,,17,NE,1984,1984,3102,2,1,2485.514717,2485.514717,3507,NO,28.73,35.51,1,1.4,6112,111.726684,121.85449,131.545724,137.883091,I,Above,Gable,0,5701,,32.1179016,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 17338,NJBF000056976,3 SEAGARDEN DRIVE,Linwood,NJ,39.32965398,-74.58239622,RES1,3001,,17,NE,1986,1986,3102,2,1,2593.645773,2593.645773,3507,NO,29.16,43.62,1,1.86,6106,111.71721,121.850553,131.542203,137.878459,I,Above,Hip,0,5701,,36.3878987,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 17339,NJBF000057207,2 CANDLEWOOD DRIVE,Linwood,NJ,39.33014629,-74.57947147,RES1,3001,,18,NE,1987,1987,3102,1,1,7558.326155,7558.326155,3507,NO,15.19,26.65,1,-0.85,6112,111.767343,121.894999,131.585197,137.931855,I,Above,Hip,0,5701,,20.92082295,0,1.2,,,,1,1,,0.35,nav,1,1987,1,, 17340,NJBF000063363,408 W JOSEPH AVE,Linwood,NJ,39.34150817,-74.58320289,RES1,3001,,16,NE,1961,1961,3102,1,1,1897.380207,1897.380207,3505,NO,21.26,35.75,3,6.3,6110,111.498122,121.698635,131.394338,137.690873,I,Above,Gable,0,5701,,28.50477819,0,1.1,,,,1,1,,0.35,nav,1,1961,1,, 17341,NJBF000064237,225 LANDING LANE,Linwood,NJ,39.34396474,-74.56465008,RES1,3001,,17,NE,1975,1975,3102,2,1,3306.733391,3306.733391,3507,NO,29.04,35.23,1,0.81,6106,111.853048,121.991967,131.676947,138.039382,I,Above,Gable,0,5701,,32.13023631,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 17342,NJBF000064230,219 W SCHOOLHOUSE DR,Linwood,NJ,39.3439512,-74.57991696,RES1,3001,,17,NE,1971,1971,3102,2,1,2370.893666,2370.893666,3507,NO,35.03,43.89,1,1.97,6112,111.526295,121.727566,131.420619,137.723263,I,Above,Gable,0,5701,,39.46254075,0,1.2,,,,1,1,,0.35,nav,1,1971,2,, 17343,NJBF000057711,12 W FRANCES AVE,Linwood,NJ,39.33103472,-74.58429742,RES1,3001,,16,NE,1955,1955,3102,1,1,1052.874904,1052.874904,3507,NO,17.58,24.68,1,-0.34,6110,111.655359,121.80157,131.49523,137.819506,I,Above,Gable,0,5701,,21.13241778,0,0,,,,1,1,,0.35,nav,1,1955,1,, 17344,NJBF000063505,1703 NEW ROAD,Linwood,NJ,39.341891,-74.583983,RES1,3001,,16,NE,1961,1961,3102,1,1,886.0063911,886.0063911,3507,NO,11.3,23.54,1,-0.39,6110,111.475599,121.680812,131.377111,137.669104,I,Above,Gable,0,5701,,17.41637219,0,1.2,,,,1,1,,1,nav,1,1961,1,, 17345,NJBF000065751,107 COUNTRY CLUB DR,Linwood,NJ,39.34798768,-74.56490842,RES1,3001,,17,NE,1973,1973,3102,1,1,4033.144973,4033.144973,3507,NO,14.36,24.42,1,1.56,6112,111.786856,121.942334,131.626059,137.974894,I,Above,Gable,0,5701,,19.38975005,0,1.2,,,,1,1,,0.35,nav,1,1973,1,, 17346,NJBF000059080,209 E SEAVIEW AVE,Linwood,NJ,39.3335077,-74.57458714,RES1,3001,,17,NE,1994,1994,3102,2,1,2664.519044,2664.519044,3507,NO,37.62,52.23,1,1.34,6106,111.810004,121.939712,131.628706,137.984853,I,Above,Flat,0,5701,,44.92662413,0,1.2,,,,1,1,,0.03,nav,1,1994,2,, 17347,NJBF000068397,505 W BARR AVE,Linwood,NJ,39.35662474,-74.57434809,RES1,3001,,17,NE,2006,2006,3101,1,1,3242.091149,3242.091149,3507,NO,16.63,28.86,1,0.53,6112,111.453267,121.683391,131.366103,137.650522,I,Above,Gable,0,5701,,22.74461872,0,0,,,,1,1,,0.35,nav,1,2006,1,, 17348,NJBF000062716,,Linwood,NJ,39.34007978,-74.5684973,RES1,3001,,NaN,NE,1969,0,3102,2,1,2666.020009,2666.020009,3507,NO,30.74,39.79,1,-0.81,6112,111.830717,121.969271,131.656303,138.016303,I,Above,Hip,0,5701,,35.26543354,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17349,NJBF000062834,,Linwood,NJ,39.34033036,-74.56897679,RES1,3001,,NaN,NE,1969,0,3102,2,1,3217.129599,3217.129599,3507,NO,22.8,33.17,1,0.58,6112,111.816502,121.958094,131.64532,138.002744,I,Above,Hip,0,5701,,27.98573112,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17350,NJBF000064844,5 FALLING WATER DRIVE,Linwood,NJ,39.34546258,-74.58192193,RES1,3001,,16,NE,2001,2001,3102,2,1,2244.47133,2244.47133,3507,NO,21.55,31.97,1,-0.43,6106,111.459467,121.675859,131.370069,137.659464,I,Above,Gable,0,5701,,26.76265139,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17351,NJBF000064352,,Linwood,NJ,39.34428179,-74.56634538,RES1,3001,,NaN,NE,1969,0,3102,2,1,1542.176156,1542.176156,3507,NO,33.49,41.59,1,2.25,6112,111.811425,121.958939,131.644473,137.999654,I,Above,Gable,0,5701,,37.5362669,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17352,NJBF000070230,14 LAKE DRIVE,Linwood,NJ,39.366332,-74.5783155,RES1,3001,,18,NE,1990,1990,3101,2,1,3447.878637,3447.878637,3507,NO,38.06,43.69,1,0.87,6106,111.235382,121.511173,131.185457,137.421186,I,Above,Gable,0,5701,,40.87537752,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 17353,NJBF000060305,203 E HELENA DR,Linwood,NJ,39.33574982,-74.57234082,RES1,3001,,17,NE,1974,1974,3102,2,1,2105.65865,2105.65865,3507,NO,27.72,34.9,1,1.51,6112,111.819489,121.952473,131.640929,137.999194,I,Above,Gable,0,5701,,31.3082751,0,1.2,,,,1,1,,0.35,nav,1,1974,2,, 17354,NJBF000070160,16 LAKE DRIVE,Linwood,NJ,39.36604857,-74.57809115,RES1,3001,,18,NE,1975,1975,3101,2,1,2918.442972,2918.442972,3507,NO,26.59,35.87,1,1.13,6106,111.243969,121.518021,131.192548,137.430165,I,Above,Gable,0,5701,,31.23178152,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 17355,NJBF000057742,3 HIGHLAND CT,Linwood,NJ,39.33108132,-74.58135862,RES1,3001,,17,NE,1959,1959,3102,1,1,2947.799874,2947.799874,3507,NO,18.59,33.5,1,-0.44,6112,111.713256,121.851499,131.543297,137.879552,I,Above,Hip,0,5701,,26.04253246,0,1.1,,,,1,1,,0.35,nav,1,1959,1,, 17356,NJBF000070507,6 LAKE DR,Linwood,NJ,39.36740459,-74.57877561,RES1,3001,,18,NE,1961,1961,3101,2,1,3342.806252,3342.806252,3507,NO,27.63,33.95,1,-0.26,6106,111.211904,121.492009,131.165076,137.39527,I,Above,Hip,0,5701,,30.78945145,0,1.2,,,,1,1,,0.03,nav,1,1961,2,, 17357,NJBF000069172,416 CEDARBROOK LANE W,Linwood,NJ,39.35905396,-74.57567367,RES1,3001,,18,NE,1978,1978,3101,2,1,2339.492077,2339.492077,3507,NO,26.83,40.79,1,-0.94,6112,111.389867,121.634178,131.315439,137.586437,I,Above,Gable,0,5701,,33.80961758,0,1.1,,,,1,1,,0.35,nav,1,1978,2,, 17358,NJBF000068245,512 W WILSON AVE,Linwood,NJ,39.35613009,-74.57636129,RES1,3001,,16,NE,1965,1965,3101,1,1,2223.184404,2223.184404,3507,NO,16.91,30.39,1,-0.06,6106,111.415677,121.653941,131.338331,137.61623,I,Above,Gable,0,5701,,23.65051666,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 17359,NJBF000068489,717 RIVER DRIVE,Linwood,NJ,39.35692686,-74.57678847,RES1,3001,,17,NE,1964,1964,3101,1,1,4129.864572,4129.864572,3507,NO,18.45,33.42,1,-0.52,6106,111.394832,121.637904,131.321885,137.595396,I,Above,Gable,0,5701,,25.93405886,0,1.2,,,,1,1,,0.03,nav,1,1964,1,, 17360,NJBF000068346,508 W DAVIS AVE,Linwood,NJ,39.3564474,-74.57512688,RES1,3001,,16,NE,1968,1968,3101,1,1,2735.958252,2735.958252,3507,NO,13.4,21.01,1,2.57,6110,111.438495,121.671843,131.355182,137.637051,I,Above,Gable,0,5701,,17.20467878,0,0,,,,1,1,,0.35,nav,1,1968,1,, 17361,NJBF000057253,,Linwood,NJ,39.33023082,-74.58094232,RES1,3001,,NaN,NE,1969,0,3102,2,1,2021.199019,2021.199019,3507,NO,24.8,38.69,1,1.2,6106,111.736295,121.868703,131.5598,137.900273,I,Above,Gable,0,5701,,31.74520106,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17362,NJBF000068142,511 W WILSON AVE,Linwood,NJ,39.35578733,-74.57668001,RES1,3001,,16,NE,1964,1964,3101,1,1,3092.124306,3092.124306,3507,NO,15.28,25.04,1,0.15,6110,111.413557,121.652156,131.33704,137.614765,I,Above,Gable,0,5701,,20.16462913,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 17363,NJBF000067161,1003 BARTLETT AVE,Linwood,NJ,39.35239481,-74.57831409,RES1,3001,,17,NE,1965,1965,3101,2,1,2131.530666,2131.530666,3507,NO,32.72,41.44,1,-0.4,6112,111.427796,121.661019,131.349501,137.631624,I,Above,Gable,0,5701,,37.08042684,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17364,NJBF000068056,110 CAROL RD,Linwood,NJ,39.35548698,-74.55617588,RES1,3001,,16,NE,1967,1967,3102,2,1,1722.187766,1722.187766,3507,NO,24.69,34.62,1,1.92,6106,111.874831,122.011547,131.688524,138.043519,I,Above,Gable,0,5701,,29.65403513,0,0,,,,1,1,,0.03,nav,1,1967,2,, 17365,NJBF000066926,1009 RICHARD DR,Linwood,NJ,39.35131661,-74.57793021,RES1,3001,,17,NE,1966,1966,3101,2,1,1884.69568,1884.69568,3507,NO,33.4,38.89,1,-0.23,6112,111.452504,121.679545,131.368418,137.655651,I,Above,Gable,0,5701,,36.14783203,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 17366,NJBF000058746,310 W FRANCES AVE,Linwood,NJ,39.33286102,-74.58939068,RES1,3001,,17,NE,1963,1963,3102,2,1,2786.608936,2786.608936,3507,NO,31.23,42.03,1,2.85,6112,111.522863,121.69263,131.391002,137.688005,I,Above,Gable,0,5701,,36.62973979,0,1.2,,,,1,1,,0.35,nav,1,1963,2,, 17367,NJBF000067944,730 RIVER DRIVE,Linwood,NJ,39.35510435,-74.57773496,RES1,3001,,16,NE,1962,1962,3101,2,1,1801.85537,1801.85537,3507,NO,24.27,32.23,1,0.82,6106,111.400206,121.641354,131.327499,137.60313,I,Above,Gable,0,5701,,28.24964181,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 17368,NJBF000065150,12 FALLING WATER DRIVE,Linwood,NJ,39.34626173,-74.58201385,RES1,3001,,17,NE,2001,2001,3102,2,1,2245.991764,2245.991764,3507,NO,36.95,48.6,1,0.34,6110,111.444547,121.665278,131.359347,137.645787,I,Above,Gable,0,5701,,42.77947458,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17369,NJBF000068089,106 CAROL RD,Linwood,NJ,39.35559723,-74.5556271,RES1,3001,,16,NE,1959,1959,3102,1,1,2479.821077,2479.821077,3507,NO,19.69,33.68,1,0.26,6112,111.885669,122.019919,131.696737,138.053187,I,Above,Gable,0,5701,,26.68546554,0,1.2,,,,1,1,,0.35,nav,1,1959,1,, 17370,NJBF000067108,1005 BARTLETT AVE,Linwood,NJ,39.3521381,-74.57850859,RES1,3001,,17,NE,1968,1968,3101,2,1,2178.496355,2178.496355,3507,NO,39.96,51.18,1,2.3,6110,111.427439,121.660477,131.349258,137.631411,I,Above,Gable,0,5701,,45.57010283,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 17371,NJBF000065541,1020 WOODE-LYNNE BLVD,Linwood,NJ,39.34739313,-74.56639379,RES1,3001,,19,NE,2001,2001,3102,2,1,868.0633995,868.0633995,3507,NO,22.05,35.75,1,0.1,6112,111.763189,121.923153,131.607695,137.952912,I,Above,Gable,0,5701,,28.90132011,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 17372,NJBF000067130,1002 BARTLETT AVE,Linwood,NJ,39.35220972,-74.5778253,RES1,3001,,17,NE,1966,1966,3101,2,1,1560.57634,1560.57634,3507,NO,37.97,51.85,1,-0.82,6110,111.441246,121.671512,131.359772,137.644527,I,Above,Gable,0,5701,,44.91066419,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 17373,NJBF000067082,1003 RICHARD DR,Linwood,NJ,39.35202696,-74.57748144,RES1,3001,,16,NE,1966,1966,3101,2,1,1935.207783,1935.207783,3507,NO,22.66,31.65,1,1.37,6112,111.451505,121.679478,131.367618,137.654391,I,Above,Gable,0,5701,,27.15567548,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 17374,NJBF000058813,2121 GRAMMERCY AVE,Linwood,NJ,39.33297691,-74.58763533,RES1,3001,,16,NE,1962,1962,3102,1,1,1715.787155,1715.787155,3507,NO,11.23,22.99,1,-0.07,6112,111.555316,121.721371,131.418436,137.722662,I,Above,Gable,0,5701,,17.11044214,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17375,NJBF000060766,2105 WEST AVE,Linwood,NJ,39.33651492,-74.58938083,RES1,3001,,16,NE,1930,1930,3102,2,1,941.0304579,941.0304579,3507,NO,28.38,38.12,1,0.64,6112,111.458762,121.649942,131.349871,137.635454,I,Above,Flat,0,5701,,33.25139878,0,0,,,,1,1,,0.35,nav,1,1930,2,, 17376,NJBF000059300,1900 FRANKLIN BLVD,Linwood,NJ,39.3339652,-74.57475041,RES1,3001,,17,NE,1989,1989,3102,2,1,2314.672229,2314.672229,3507,NO,36.86,44.47,1,1.14,6110,111.798996,121.931571,131.620789,137.974952,I,Above,Gable,0,5701,,40.66671108,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 17377,NJBF000065389,103 E DELMAR AVE,Linwood,NJ,39.34692401,-74.5665522,RES1,3001,,17,NE,1962,1962,3102,1,1,3171.459382,3171.459382,3507,NO,11.87,24.89,1,-0.8,6106,111.76678,121.925655,131.610442,137.956557,I,Above,Gable,0,5701,,18.3793044,0,1.2,,,,1,1,,0.03,nav,1,1962,1,, 17378,NJBF000058453,,Linwood,NJ,39.33234664,-74.58214684,RES1,3001,,NaN,NE,1969,0,3102,2,1,3406.731404,3406.731404,3507,NO,24.18,32.32,1,1.38,6112,111.675587,121.823043,131.515947,137.845183,I,Above,Hip,0,5701,,28.25045942,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17379,NJBF000064057,1413 NEW ROAD,Linwood,NJ,39.343455,-74.5828575,COM1,3001,999,NaN,ME,1969,0,3401,1,1,3196.943721,3196.943721,3507,NO,15.25,22.52,1,1.54,6112,111.472847,121.682413,131.377714,137.669541,I,Above,Flat,0,NaN,,18.88384629,0,0,,,,1,1,,1,nav,1,1969,1,, 17380,NJBF000058470,300 W FRANCES AVE,Linwood,NJ,39.33237089,-74.58808577,RES1,3001,,16,NE,1965,1965,3102,1,1,2102.355808,2102.355808,3507,NO,17.56,28.58,1,1.24,6110,111.55709,121.720783,131.41788,137.722041,I,Above,Gable,0,5701,,23.07084726,0,0,,,,1,1,,0.35,nav,1,1965,1,, 17381,NJBF000064670,200 LANDING LANE,Linwood,NJ,39.34503674,-74.56567802,RES1,3001,,18,NE,1978,1978,3102,2,1,3514.527587,3514.527587,3507,NO,30.33,44.97,1,1.12,6112,111.814374,121.962021,131.647094,138.002399,I,Above,Gable,0,5701,,37.64749696,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17382,NJBF000065230,15 FALLING WATER DRIVE,Linwood,NJ,39.34646044,-74.58249325,RES1,3001,,16,NE,2000,2000,3102,2,1,1811.105868,1811.105868,3507,NO,37.1,51.21,1,-0.93,6106,111.431228,121.654784,131.349167,137.632929,I,Above,Gable,0,5701,,44.15321023,0,1.2,,,,1,1,,0.03,nav,1,2000,2,, 17383,NJBF000058676,308 W FRANCES AVE,Linwood,NJ,39.33273475,-74.58902902,RES1,3001,,17,NE,1965,1965,3102,2,1,2296.687814,2296.687814,3507,NO,37,49.77,1,1.45,6112,111.532175,121.700321,131.398341,137.697306,I,Above,Gable,0,5701,,43.38475537,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 17384,NJBF000064777,6 SPATTERDOCK LANE,Linwood,NJ,39.34529855,-74.58268567,RES1,3001,,16,NE,2001,2001,3102,2,1,1836.825219,1836.825219,3507,NO,25.1,34.03,1,2.49,6106,111.446086,121.664519,131.359358,137.646027,I,Above,Hip,0,5701,,29.56418919,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17385,NJBF000065287,113 E DELMAR AVE,Linwood,NJ,39.34662911,-74.56557563,RES1,3001,,16,NE,1957,1957,3102,1,1,5936.165446,5936.165446,3507,NO,17.21,31.08,1,1.96,6106,111.792523,121.945918,131.630433,137.981112,I,Above,Gable,0,5701,,24.14320061,0,0,,,,1,1,,0.03,nav,1,1957,1,, 17386,NJBF000064039,221 W BELHAVEN AVE,Linwood,NJ,39.3434076,-74.58163828,RES1,3001,,17,NE,1974,1974,3102,2,1,1017.367678,1017.367678,3505,NO,24.32,37.07,3,-0.76,6112,111.499082,121.704001,131.398384,137.695533,I,Above,Gable,0,5701,,30.6983994,0,1.2,,,,1,1,,0.35,nav,1,1974,2,, 17387,NJBF000063212,400 W JOSEPH AVE,Linwood,NJ,39.34112719,-74.58226055,RES1,3001,,16,NE,1962,1962,3102,1,1,2006.771079,2006.771079,3505,NO,19.5,25.5,3,3.63,6112,111.523972,121.719237,131.414235,137.715963,I,Above,Gable,0,5701,,22.50071772,0,0,,,,1,1,,0.35,nav,1,1962,1,, 17388,NJBF000062972,221 E BERKSHIRE AVE,Linwood,NJ,39.3406194,-74.56790686,RES1,3001,,18,NE,1956,1956,3102,2,1,2865.100064,2865.100064,3507,NO,33.2,46.28,1,0.34,6112,111.834795,121.973356,131.66011,138.020701,I,Above,Gable,0,5701,,39.73665791,0,1.1,,,,1,1,,0.35,nav,1,1956,2,, 17389,NJBF000064559,4 PRINCETON LANE,Linwood,NJ,39.34478595,-74.58016711,RES1,3001,,18,NE,1967,1967,3102,2,1,5352.911494,5352.911494,3507,NO,37.65,48.24,1,0.77,6106,111.507457,121.713806,131.406873,137.705822,I,Above,Gable,0,5701,,42.94692824,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 17390,NJBF000062602,306 W FOREST DR,Linwood,NJ,39.33978913,-74.58319218,RES1,3001,,17,NE,1969,1969,3102,2,1,2772.423353,2772.423353,3505,NO,26.07,37.16,3,2.24,6106,111.527261,121.718523,131.414164,137.716158,I,Above,Gable,0,5701,,31.61516762,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 17391,NJBF000062947,310 W KIE-TRO DR,Linwood,NJ,39.34055833,-74.58286549,RES1,3001,,17,NE,1973,1973,3102,2,1,2558.527706,2558.527706,3505,NO,28.73,34.88,3,1.33,6106,111.521034,121.715335,131.410774,137.711738,I,Above,Gable,0,5701,,31.80212894,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 17392,NJBF000062995,312 W KIE-TRO DRIVE,Linwood,NJ,39.34065635,-74.58317976,RES1,3001,,17,NE,1984,1984,3102,2,1,1691.291436,1691.291436,3505,NO,30.79,42.34,3,0.33,6106,111.512898,121.70878,131.40446,137.70378,I,Above,Gable,0,5701,,36.5656716,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 17393,NJBF000062541,304 W FOREST DR,Linwood,NJ,39.3396723,-74.5828653,RES1,3001,,16,NE,1970,1970,3102,2,1,2694.987779,2694.987779,3505,NO,29.25,35.56,3,4.5,6106,111.535951,121.725504,131.420893,137.724637,I,Above,Gable,0,5701,,32.40375453,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 17394,NJBF000062922,307 W JOSEPH AVE,Linwood,NJ,39.34050157,-74.58171978,RES1,3001,,16,NE,1963,1963,3102,1,1,1656.634272,1656.634272,3505,NO,18.03,31.54,3,0.33,6112,111.545611,121.735724,131.43032,137.736287,I,Above,Gable,0,5701,,24.78503862,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17395,NJBF000062548,309 W FOREST DRIVE,Linwood,NJ,39.33968119,-74.58413346,RES1,3001,,16,NE,1980,1980,3102,2,1,2440.199982,2440.199982,3505,NO,29.98,35.3,3,1.98,6106,111.509808,121.703549,131.399895,137.698226,I,Above,Gable,0,5701,,32.64051171,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 17396,NJBF000062231,222 W FOREST DR,Linwood,NJ,39.33904873,-74.58209306,RES1,3001,,17,NE,1967,1967,3102,2,1,2247.6673,2247.6673,3505,NO,40.46,49.65,3,3.95,6110,111.562318,121.745981,131.440748,137.749688,I,Above,Gable,0,5701,,45.05220323,0,1.1,,,,1,1,,0.35,nav,1,1967,2,, 17397,NJBF000064380,229 LANDING LANE,Linwood,NJ,39.34433401,-74.56462471,RES1,3001,,18,NE,1977,1977,3102,2,1,3190.525182,3190.525182,3507,NO,30.17,42.25,1,0.27,6106,111.847964,121.98824,131.673119,138.0345,I,Above,Gable,0,5701,,36.20866138,0,0,,,,1,1,,0.03,nav,1,1977,2,, 17398,NJBF000062783,309 W KIE-TRO DR,Linwood,NJ,39.34021687,-74.5832673,RES1,3001,,17,NE,1972,1972,3102,2,1,2929.86607,2929.86607,3505,NO,47.31,56.4,3,8.38,6106,111.5185,121.712315,131.408041,137.708373,I,Above,Gable,0,5701,,51.85322603,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 17399,NJBF000061612,1999 NEW ROAD,Linwood,NJ,39.33794198,-74.58703605,COM7,3001,,NaN,ME,1969,0,3401,1,1,11545.5262,11545.5262,3507,NO,10.61,20.46,1,0.06,6106,111.480718,121.673652,131.372025,137.66334,I,Above,Hip,0,NaN,,15.53548202,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17400,NJBF000061542,222 W SEAVIEW AVE,Linwood,NJ,39.33782506,-74.58292815,RES1,3001,,17,NE,1965,1965,3102,2,1,2544.510712,2544.510712,3507,NO,23.66,36.4,1,2.36,6110,111.565939,121.745715,131.440907,137.750143,I,Above,Gable,0,5701,,30.03028593,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17401,NJBF000061832,1918 WEST AVE,Linwood,NJ,39.33834278,-74.58372636,RES1,3001,,16,NE,1968,1968,3102,2,1,1820.105382,1820.105382,3505,NO,35.52,46.65,3,0.97,6110,111.540852,121.725981,131.421849,137.726101,I,Above,Gable,0,5701,,41.08251634,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 17402,NJBF000062000,111 E PATCONG AVE,Linwood,NJ,39.33862184,-74.57191314,RES1,3001,,17,NE,1969,1969,3102,2,1,2127.929306,2127.929306,3507,NO,37.98,51.93,1,-0.96,6106,111.781582,121.926772,131.615363,137.966694,I,Above,Gable,0,5701,,44.9559134,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 17403,NJBF000061367,1924 MARY JANE LANE,Linwood,NJ,39.33751609,-74.5855377,RES1,3001,,16,NE,1978,1978,3102,2,1,2480.706762,2480.706762,3507,NO,33.42,41.03,1,-0.84,6106,111.518242,121.704356,131.401443,137.700555,I,Above,Hip,0,5701,,37.22534877,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 17404,NJBF000061502,220 W SEAVIEW AVE,Linwood,NJ,39.33775391,-74.58249597,RES1,3001,,16,NE,1959,1959,3102,1,1,2588.193954,2588.193954,3507,NO,13.64,27.49,1,-0.8,6112,111.575966,121.753979,131.448848,137.760119,I,Above,Flat,0,5701,,20.56454167,0,1.2,,,,1,1,,0.35,nav,1,1959,1,, 17405,NJBF000059211,400 W KIRKLIN AVE,Linwood,NJ,39.33378151,-74.5898066,RES1,3001,,16,NE,1965,1965,3102,1,1,1985.717289,1985.717289,3507,NO,18.36,29.49,1,2.81,6110,111.498453,121.674646,131.37382,137.666134,I,Above,Gable,0,5701,,23.92430829,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17406,NJBF000059566,501 DUSTY LANE,Linwood,NJ,39.33447213,-74.59061634,RES1,3001,,16,NE,2001,2001,3102,2,1,2556.986082,2556.986082,3507,NO,38.61,47.86,1,1.84,6112,111.470425,121.652665,131.352835,137.639433,I,Above,Hip,0,5701,,43.2372359,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 17407,NJBF000057815,1 HIGHLAND CT,Linwood,NJ,39.33121989,-74.58173309,RES1,3001,,17,NE,1963,1963,3102,1,1,1887.199867,1887.199867,3507,NO,19.48,26.32,1,2.73,6112,111.703349,121.843431,131.53553,137.869842,I,Above,Gable,0,5701,,22.89658558,0,0,,,,1,1,,0.35,nav,1,1963,1,, 17408,NJBF000057378,,Linwood,NJ,39.3304703,-74.58162655,RES1,3001,,NaN,NE,1969,0,3102,2,1,1620.874156,1620.874156,3507,NO,37.93,51.67,1,1.31,6106,111.718434,121.854106,131.545747,137.882724,I,Above,Gable,0,5701,,44.8048806,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17409,NJBF000057819,311 ROYAL AVE,Linwood,NJ,39.33122647,-74.58823637,RES1,3001,,16,NE,1964,1964,3102,1,1,2731.461161,2731.461161,3507,NO,15.35,22.75,1,2.27,6112,111.574331,121.731756,131.428319,137.735364,I,Above,Gable,0,5701,,19.05175793,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 17410,NJBF000057825,404 W OCEAN HEIGHTS AVE,Linwood,NJ,39.33123155,-74.5903195,RES1,3001,,16,NE,1910,1910,3102,2,1,1075.32626,1075.32626,3505,NO,27.33,36.82,3,3.24,6112,111.533633,121.695999,131.394166,137.692196,I,Above,Gable,0,5701,,32.07603947,0,0,,,,1,1,,0.35,nav,1,1910,2,, 17411,NJBF000056136,16 E OCEAN HEIGHTS AVE,Linwood,NJ,39.3277971,-74.58306736,RES1,3001,,17,NE,1963,1963,3102,2,1,2973.843261,2973.843261,3507,NO,23.07,33.09,1,-0.82,6112,111.736232,121.86111,131.551977,137.890978,I,Above,Gable,0,5701,,28.07793768,0,0,,,,1,1,,0.35,nav,1,1963,2,, 17412,NJBF000056048,,Linwood,NJ,39.32760839,-74.58205428,RES1,3001,,NaN,NE,1969,0,3102,2,1,3022.99497,3022.99497,3507,NO,31.79,43.44,1,1.27,6110,111.759595,121.880736,131.570874,137.91455,I,Above,Gable,0,5701,,37.61727114,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17413,NJBF000057188,,Linwood,NJ,39.33010414,-74.58225282,RES1,3001,,NaN,NE,1969,0,3102,2,1,2347.928626,2347.928626,3507,NO,26.75,37.7,1,-0.54,6106,111.712253,121.847679,131.539502,137.875008,I,Above,Hip,0,5701,,32.22420595,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17414,NJBF000061460,204 HOLLY LANE,Linwood,NJ,39.33768113,-74.57048104,RES1,3001,,19,NE,1998,1998,3102,2,1,1780.718214,1780.718214,3507,NO,24.96,34.9,1,2.59,6112,111.827058,121.962381,131.650234,138.009906,I,Above,Flat,0,5701,,29.92573449,0,1.2,,,,1,1,,0.35,nav,1,1998,2,, 17415,NJBF000064316,122 ESSEX AVE,Linwood,NJ,39.3441888,-74.56807824,RES1,3001,,19,NE,1997,1997,3102,2,1,3216.394512,3216.394512,3507,NO,26.59,40.17,1,0.35,6110,111.775346,121.929896,131.616167,137.96513,I,Above,Hip,0,5701,,33.37633599,0,1.2,,,,1,1,,0.35,nav,1,1997,2,, 17416,NJBF000062808,1777 NEW ROAD,Linwood,NJ,39.34027031,-74.58513872,COM5,3001,,NaN,ME,1969,0,3401,2,1,6987.638885,6987.638885,3507,NO,28.42,39.47,1,2.77,6106,111.479249,121.67945,131.376631,137.668795,I,Above,Gable,0,NaN,,33.94626381,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17417,NJBF000065875,E POPLAR AVE,Linwood,NJ,39.34833199,-74.56038073,COM1,3001,,NaN,ME,1969,0,3401,1,1,2276.819237,2276.819237,3507,NO,22,31.27,1,2.7,6106,111.881372,122.017269,131.699429,138.063483,I,Above,Flat,0,NaN,,26.63651917,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17418,NJBF000068121,111 CAROL RD,Linwood,NJ,39.35571919,-74.55659087,RES1,3001,,16,NE,1961,1961,3102,1,1,2559.265322,2559.265322,3507,NO,16.33,23.67,1,-0.8,6112,111.862414,122.001771,131.678633,138.031459,I,Above,Hip,0,5701,,20.00101635,0,1.2,,,,1,1,,0.35,nav,1,1961,1,, 17419,NJBF000058543,313 W FRANCES AVE,Linwood,NJ,39.3324892,-74.58956712,RES1,3001,,17,NE,1965,1965,3102,2,1,2149.389706,2149.389706,3507,NO,23.24,28.92,1,2.03,6110,111.525999,121.694006,131.392318,137.689714,I,Above,Gable,0,5701,,26.08042143,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 17420,NJBF000064918,7 FALLING WATER DRIVE,Linwood,NJ,39.34566451,-74.58230912,RES1,3001,,17,NE,2001,2001,3102,2,1,1797.26016,1797.26016,3507,NO,29.85,38.47,1,2.33,6106,111.448032,121.666902,131.36136,137.648462,I,Above,Hip,0,5701,,34.15868632,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17421,NJBF000057535,6 W FRANCES AVE,Linwood,NJ,39.33074088,-74.58371001,RES1,3001,,16,NE,1955,1955,3102,1,1,1303.776945,1303.776945,3507,NO,13.92,19.46,1,0.12,6110,111.672149,121.815123,131.508232,137.835832,I,Above,Gable,0,5701,,16.69090873,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 17422,NJBF000062436,300 W FOREST DRIVE,Linwood,NJ,39.33945857,-74.58220264,RES1,3001,,17,NE,1973,1973,3102,2,1,1993.437226,1993.437226,3505,NO,33.24,41.96,3,7.47,6112,111.553149,121.739366,131.434253,137.741452,I,Above,Gable,0,5701,,37.59641961,0,1.2,,,,1,1,,0.35,nav,1,1973,2,, 17423,NJBF000056838,11 SEAGARDEN DR,Linwood,NJ,39.32936291,-74.5807695,RES1,3001,,17,NE,1987,1987,3102,2,1,2340.164391,2340.164391,3507,NO,26.58,34.71,1,-0.87,6106,111.754737,121.881929,131.572435,137.916162,I,Above,Hip,0,5701,,30.64452095,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 17424,NJBF000056821,9 SEAGARDEN DR,Linwood,NJ,39.32933088,-74.58123275,RES1,3001,,17,NE,1985,1985,3102,2,1,5589.278036,5589.278036,3507,NO,32.75,46.58,1,1.64,6106,111.746026,121.874354,131.565112,137.907059,I,Above,Hip,0,5701,,39.66739858,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 17425,NJBF000059994,2143 WEST AVE,Linwood,NJ,39.33521639,-74.59266104,RES1,3001,,17,NE,1994,1994,3102,2,1,2274.615289,2274.615289,3507,NO,23.51,37.07,1,0.95,6106,111.417375,121.608886,131.31117,137.586333,I,Above,Hip,0,5701,,30.29059874,0,1.2,,,,1,1,,0.03,nav,1,1994,2,, 17426,NJBF000057720,2321 GRAMMERCY AVE,Linwood,NJ,39.3310486,-74.58902832,RES1,3001,,16,NE,1965,1965,3102,1,1,1692.153424,1692.153424,3507,NO,10.23,18.42,1,-0.28,6112,111.561993,121.720288,131.417342,137.721529,I,Above,Gable,0,5701,,14.32380197,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17427,NJBF000067397,124 MARGATE BLVD.,Linwood,NJ,39.35332913,-74.53854792,RES3B,3001,510,NaN,ME,1969,0,3301,1,1,22937.42966,22937.42966,3505,NO,16.38,23.31,3,1.39,6106,112.298976,122.343779,132.023093,138.438642,I,Above,Flat,0,NaN,,19.84856976,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17428,NJBF000069926,3 POND LANE,Linwood,NJ,39.36502968,-74.57615274,RES1,3001,,18,NE,1983,1983,3101,2,1,4349.720624,4349.720624,3507,NO,33.55,47.67,1,0.94,6110,111.300551,121.56216,131.236822,137.485842,I,Above,Flat,0,5701,,40.60800225,0,1.2,,,,1,1,,0.35,nav,1,1983,2,, 17429,NJBF000065299,17 FALLING WATER DRIVE,Linwood,NJ,39.34665717,-74.58255614,RES1,3001,,16,NE,2001,2001,3102,2,1,3391.929026,3391.929026,3507,NO,26.05,39.07,1,1.58,6106,111.426704,121.651485,131.345858,137.628716,I,Above,Flat,0,5701,,32.56120223,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17430,NJBF000061671,320 W SEAVIEW AVE,Linwood,NJ,39.33804317,-74.58318964,RES1,3001,,17,NE,1960,1960,3102,1,1,4056.524606,4056.524606,3507,NO,17.65,27.22,1,0.85,6110,111.556887,121.738681,131.434102,137.741556,I,Above,Hip,0,5701,,22.43586061,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 17431,NJBF000062202,112 E PATCONG AVE,Linwood,NJ,39.33898439,-74.57157967,RES1,3001,,17,NE,1957,1957,3102,1,1,1938.396824,1938.396824,3507,NO,21.87,28.88,1,2.43,6112,111.78276,121.928384,131.616826,137.968354,I,Above,Gable,0,5701,,25.37347299,0,1.2,,,,1,1,,0.35,nav,1,1957,1,, 17432,NJBF000056653,2262 SHORE ROAD,Linwood,NJ,39.32897316,-74.58362634,RES1,3001,,16,NE,1900,1900,3102,2,3,1859.802221,1859.802221,3507,NO,23.71,29.23,1,1.33,6112,111.704634,121.837526,131.529521,137.862751,I,Above,Gable,0,5701,,26.46776145,0,0,,,,1,1,,0.35,nav,1,1900,2,, 17433,NJBF000058088,4 HOLLYCROFT LANE,Linwood,NJ,39.33168458,-74.57665228,RES1,3001,,18,NE,1988,1988,3102,2,1,3328.557066,3328.557066,3507,NO,38.46,51.17,1,-0.38,6112,111.798285,121.925418,131.614806,137.968181,I,Above,Gable,0,5701,,44.81957354,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 17434,NJBF000058625,,Linwood,NJ,39.33263366,-74.59254273,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1626.692538,1626.692538,3507,NO,14.23,21.47,1,-0.89,6112,111.465689,121.641342,131.342184,137.626063,I,Above,Gable,0,5701,,17.85291193,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17435,NJBF000058698,,Linwood,NJ,39.3327755,-74.5924435,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1608.966653,1608.966653,3507,NO,17.44,29.52,1,1.76,6112,111.46508,121.641367,131.342207,137.62608,I,Above,Hip,0,5701,,23.47887946,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17436,NJBF000058895,,Linwood,NJ,39.33313403,-74.59215116,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1506.873889,1506.873889,3507,NO,34.54,45.9,1,1.19,6110,111.464333,121.642136,131.34293,137.626969,I,Above,Hip,0,5701,,40.21644762,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17437,NJBF000065623,114 COUNTRY CLUB DR,Linwood,NJ,39.34762925,-74.56401076,RES1,3001,,17,NE,1979,1979,3102,2,1,2787.894045,2787.894045,3507,NO,28.24,43.06,1,1.35,6106,111.811851,121.961939,131.645498,137.998764,I,Above,Gable,0,5701,,35.6519558,0,1.2,,,,1,1,,0.03,nav,1,1979,2,, 17438,NJBF000060545,2127 WEST AVENUE,Linwood,NJ,39.33616452,-74.59081718,RES1,3001,,17,NE,1955,1955,3102,1,1,2463.248727,2463.248727,3507,NO,19.64,26.69,1,0.72,6106,111.436585,121.629384,131.330424,137.61078,I,Above,Hip,0,5701,,23.1668674,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 17439,NJBF000063394,234 E CAMBRIDGE AVE,Linwood,NJ,39.34159014,-74.56702449,RES1,3001,,18,NE,1965,1965,3102,2,1,3759.373027,3759.373027,3507,NO,33.6,48.13,1,0.53,6110,111.838473,121.977627,131.66393,138.024876,I,Above,Gable,0,5701,,40.8669526,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17440,NJBF000063847,410 W PATCONG AVE,Linwood,NJ,39.34287983,-74.5817771,RES1,3001,,16,NE,1959,1959,3102,1,1,1904.560254,1904.560254,3505,NO,21.33,33.64,3,3.84,6110,111.50489,121.707599,131.402147,137.700383,I,Above,Gable,0,5701,,27.48534144,0,0,,,,1,1,,0.35,nav,1,1959,1,, 17441,NJBF000062167,119 CHELTENHAM AVE,Linwood,NJ,39.33891066,-74.57043535,RES1,3001,,17,NE,1979,1979,3102,2,1,3891.312579,3891.312579,3507,NO,35.99,46.04,1,-0.83,6112,111.808176,121.949053,131.636952,137.993108,I,Above,Gable,0,5701,,41.01869827,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 17442,NJBF000058266,301 W FRANCES AVE,Linwood,NJ,39.33200782,-74.58829664,RES1,3001,,16,NE,1964,1964,3102,2,1,1677.643662,1677.643662,3507,NO,23.59,33.5,1,0.24,6106,111.559343,121.721455,131.418514,137.722889,I,Above,Gable,0,5701,,28.54809511,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 17443,NJBF000062135,203 CHELTENHAM BLVD,Linwood,NJ,39.33885812,-74.56967919,RES1,3001,,20,NE,1990,1990,3102,2,1,5982.619686,5982.619686,3507,NO,21.55,33.52,1,-0.39,6106,111.825061,121.96276,131.650316,138.00952,I,Above,Flat,0,5701,,27.53823636,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 17444,NJBF000064813,3 FALLING WATER DRIVE,Linwood,NJ,39.34539015,-74.58172778,RES1,3001,,17,NE,2001,2001,3102,2,1,1840.26906,1840.26906,3507,NO,27.72,42.26,1,2.52,6106,111.46474,121.680031,131.374112,137.664563,I,Above,Gable,0,5701,,34.98991437,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17445,NJBF000058973,532 OCEAN HEIGHTS AVE,Linwood,NJ,39.3332865,-74.5926265,RES1,3001,,16,NE,1994,1994,3102,2,1,1056.60742,1056.60742,3507,NO,37.6,47.18,1,0.13,6106,111.452447,121.632211,131.333497,137.614947,I,Above,Hip,0,5701,,42.39152033,0,1.2,,,,1,1,,0.03,nav,1,1994,2,, 17446,NJBF000059410,503 KIRKLIN AVE,Linwood,NJ,39.33419523,-74.5919779,RES1,3001,,17,NE,1978,1978,3102,2,1,1501.450607,1501.450607,3507,NO,26.01,37.64,1,0.39,6106,111.448796,121.632586,131.333787,137.615239,I,Above,Gable,0,5701,,31.82886503,0,0,,,,1,1,,0.03,nav,1,1978,2,, 17447,NJBF000060549,1704 SOMERSET BLVD,Linwood,NJ,39.33616909,-74.57107983,RES1,3001,,18,NE,2009,2009,3102,2,1,4992.838903,4992.838903,3507,NO,28.7,40.27,1,-0.18,6106,111.839042,121.969444,131.657383,138.01926,I,Above,Hip,0,5701,,34.48445856,0,1.2,,,,1,1,,0.03,nav,1,2009,2,, 17448,NJBF000059510,500 KIRKLIN AVE,Linwood,NJ,39.33437044,-74.59133776,RES1,3001,,17,NE,1978,1978,3102,2,1,1980.859767,1980.859767,3507,NO,39.18,46.52,1,2.16,6106,111.458136,121.64149,131.342226,137.62596,I,Above,Gable,0,5701,,42.85117833,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17449,NJBF000061154,208 E HEMLOCK DR,Linwood,NJ,39.33715136,-74.57141171,RES1,3001,,18,NE,1973,1973,3102,2,1,2537.372168,2537.372168,3507,NO,26.45,40.08,1,0.94,6112,111.816041,121.952365,131.640594,137.998277,I,Above,Hip,0,5701,,33.26917188,0,1.2,,,,1,1,,0.35,nav,1,1973,2,, 17450,NJBF000062740,304 W KIE-TRO DR,Linwood,NJ,39.34011925,-74.58182617,RES1,3001,,17,NE,1971,1971,3102,2,1,2808.266354,2808.266354,3505,NO,44.88,55.99,3,8.57,6110,111.549832,121.738287,131.432945,137.739666,I,Above,Gable,0,5701,,50.43077895,0,1.2,,,,1,1,,0.35,nav,1,1971,2,, 17451,NJBF000058497,311 W FRANCES AVE,Linwood,NJ,39.33241994,-74.58924318,RES1,3001,,16,NE,1964,1964,3102,1,1,1728.004042,1728.004042,3507,NO,17.87,27.98,1,-0.61,6110,111.533549,121.700373,131.398392,137.697407,I,Above,Gable,0,5701,,22.92728586,0,0,,,,1,1,,0.35,nav,1,1964,1,, 17452,NJBF000059832,1820 FRANKLIN BLVD,Linwood,NJ,39.3349294,-74.57386432,RES1,3001,,18,NE,1970,1970,3102,2,1,4891.000991,4891.000991,3507,NO,35.63,50.4,1,-0.81,6112,111.801307,121.935664,131.62469,137.97947,I,Above,Gable,0,5701,,43.01256232,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 17453,NJBF000059209,211 E SEAVIEW AVE,Linwood,NJ,39.33378123,-74.57423936,RES1,3001,,17,NE,1927,1927,3102,2,1,2291.771807,2291.771807,3507,NO,23.91,36.73,1,-0.08,6106,111.812637,121.942539,131.631442,137.988145,I,Above,Hip,0,5701,,30.31597484,0,0,,,,1,1,,0.03,nav,1,1927,2,, 17454,NJBF000065162,13 FALLING WATER DRIVE,Linwood,NJ,39.3462915,-74.582521,RES1,3001,,17,NE,2001,2001,3102,2,1,1923.306289,1923.306289,3507,NO,36.94,46.52,1,0.16,6106,111.433381,121.656199,131.350654,137.63484,I,Above,Hip,0,5701,,41.73133602,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17455,NJBF000061465,2021 WEST AVE,Linwood,NJ,39.33768972,-74.5881597,RES1,3001,,NaN,NE,1969,0,3102,2,1,770.9530622,770.9530622,3507,NO,25.72,31.56,1,2.96,6106,111.462553,121.65725,131.356491,137.643708,I,Above,Gable,0,5701,,28.64305309,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17456,NJBF000061331,229 W SEAVIEW AVE,Linwood,NJ,39.33745304,-74.58409481,RES1,3001,,17,NE,1962,1962,3102,2,1,3397.683408,3397.683408,3507,NO,25.4,36.64,1,1.29,6106,111.548533,121.729922,131.425898,137.731359,I,Above,Gable,0,5701,,31.01817386,0,0,,,,1,1,,0.03,nav,1,1962,2,, 17457,NJBF000065238,123 E DELMAR AVE,Linwood,NJ,39.34648672,-74.56417339,RES1,3001,,17,NE,1978,1978,3102,2,1,2583.234065,2583.234065,3507,NO,34.61,48.41,1,0.5,6106,111.825311,121.971899,131.655955,138.012247,I,Above,Gable,0,5701,,41.5071804,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17458,NJBF000061149,2037 WEST AVE REAR,Linwood,NJ,39.3371434,-74.58882599,RES1,3001,,15,NE,1950,1950,3102,1,1,1480.322054,1480.322054,3507,NO,18.04,27.73,1,2.63,6106,111.458797,121.652161,131.351815,137.637847,I,Above,Gable,0,5701,,22.88609037,0,0,,,,1,1,,0.03,nav,1,1950,1,, 17459,NJBF000062593,210 E BALFOUR AVE,Linwood,NJ,39.33977662,-74.56944861,RES1,3001,,16,NE,1978,1978,3102,1,1,2899.898435,2899.898435,3507,NO,16.27,25.71,1,2.77,6112,111.815243,121.956227,131.643681,138.000987,I,Above,Gable,0,5701,,20.98686186,0,1.2,,,,1,1,,0.35,nav,1,1978,1,, 17460,NJBF000060117,207 E HELENA DR,Linwood,NJ,39.33544086,-74.57163686,RES1,3001,,16,NE,1976,1976,3102,1,1,2593.875713,2593.875713,3507,NO,18.73,23.88,1,1.4,6106,111.839294,121.968228,131.656292,138.018183,I,Above,Gable,0,5701,,21.30894152,0,1.2,,,,1,1,,0.03,nav,1,1976,1,, 17461,NJBF000060481,,Linwood,NJ,39.3360465,-74.586983,COM7,3001,,NaN,ME,1969,0,3401,1,1,4145.692094,4145.692094,3507,NO,19.47,28.45,1,0.65,6112,111.514624,121.696587,131.394403,137.691894,I,Above,Gable,0,NaN,,23.96283953,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17462,NJBF000057563,7 HIGHLAND COURT,Linwood,NJ,39.33078685,-74.58058542,RES1,3001,,17,NE,1960,1960,3102,2,1,2059.706103,2059.706103,3507,NO,25.17,38.21,1,-0.32,6112,111.733882,121.868275,131.559454,137.89973,I,Above,Flat,0,5701,,31.6916695,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 17463,NJBF000058311,114 E MYRTLE AVE,Linwood,NJ,39.33207573,-74.57636716,RES1,3001,,17,NE,1988,1988,3102,2,1,4475.054514,4475.054514,3507,NO,32.15,39.76,1,-0.57,6112,111.797492,121.925745,131.615144,137.968499,I,Above,Gable,0,5701,,35.95384527,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 17464,NJBF000060951,499 SARA ANN CT,Linwood,NJ,39.33680815,-74.58647526,RES1,3001,,16,NE,1964,1964,3102,2,1,1891.993689,1891.993689,3507,NO,36.11,48.84,1,2.77,6106,111.511596,121.696459,131.394102,137.691403,I,Above,Gable,0,5701,,42.47653117,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 17465,NJBF000057695,2 E BERKLEY STREET,Linwood,NJ,39.33101185,-74.58192311,RES1,3001,,17,NE,1976,1976,3102,2,1,3050.109508,3050.109508,3507,NO,33.33,46,1,2.06,6110,111.703132,121.842619,131.53473,137.868884,I,Above,Gable,0,5701,,39.66520979,0,1.2,,,,1,1,,0.35,nav,1,1976,2,, 17466,NJBF000057768,14 W FRANCES AVE,Linwood,NJ,39.33113568,-74.5845235,RES1,3001,,16,NE,1955,1955,3102,1,1,1936.96298,1936.96298,3507,NO,10.09,23.64,1,-0.73,6110,111.64909,121.796479,131.490348,137.813372,I,Above,Gable,0,5701,,16.86321554,0,0,,,,1,1,,0.35,nav,1,1955,1,, 17467,NJBF000063525,225 E DEVONSHIRE AVE,Linwood,NJ,39.34194716,-74.56714917,RES1,3001,,18,NE,2011,2011,3102,2,1,6611.947584,6611.947584,3507,NO,21.59,27.18,1,-0.53,6112,111.830205,121.971402,131.657709,138.017095,I,Above,Gable,0,5701,,24.38523438,0,1.2,,,,1,1,,0.35,nav,1,2011,2,, 17468,NJBF000069336,403 CEDARBROOK LANE W,Linwood,NJ,39.3597384,-74.57608495,RES1,3001,,18,NE,1978,1978,3101,2,1,2760.431021,2760.431021,3507,NO,26.6,40.37,1,1.01,6106,111.371309,121.619714,131.300541,137.567585,I,Above,Gable,0,5701,,33.48676085,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 17469,NJBF000065484,114 E DELMAR AVE,Linwood,NJ,39.34722165,-74.56540004,RES1,3001,,18,NE,1958,1958,3102,2,1,2360.895149,2360.895149,3507,NO,32.46,45.51,1,2.79,6106,111.787483,121.942339,131.626563,137.976016,I,Above,Gable,0,5701,,38.98217541,0,1.2,,,,1,1,,0.03,nav,1,1958,2,, 17470,NJBF000069719,8 MILL LANE,Linwood,NJ,39.36329585,-74.57543777,RES1,3001,,19,NE,1990,1990,3101,2,1,5325.814274,5325.814274,3507,NO,39.04,51.04,1,1.91,6112,111.3387,121.59287,131.269289,137.527048,I,Above,Gable,0,5701,,45.03584408,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 17471,NJBF000057602,19 W KIRKLIN AVE,Linwood,NJ,39.33086471,-74.58313918,RES1,3001,,16,NE,1962,1962,3102,2,1,1982.75252,1982.75252,3507,NO,26.1,38.27,1,0.34,6106,111.681368,121.823463,131.516268,137.845859,I,Above,Gable,0,5701,,32.18349103,0,0,,,,1,1,,0.03,nav,1,1962,2,, 17472,NJBF000063491,402 W HAMILTON AVE,Linwood,NJ,39.341867,-74.5818955,RES1,3001,,16,NE,1945,1945,3102,2,1,1435.311755,1435.311755,3505,NO,37.52,43,3,2.05,6110,111.519204,121.717081,131.411792,137.712728,I,Above,Gable,0,5701,,40.25652408,0,0,,,,1,1,,0.35,nav,1,1945,2,, 17473,NJBF000065138,1102 WOODE-LYNNE BLVD,Linwood,NJ,39.34624008,-74.56756576,RES1,3001,,17,NE,1957,1957,3102,1,1,2959.688308,2959.688308,3507,NO,18.6,30.67,1,1.36,6112,111.755027,121.915708,131.601161,137.94563,I,Above,Gable,0,5701,,24.63364047,0,0,,,,1,1,,0.35,nav,1,1957,1,, 17474,NJBF000062319,1820 WEST AVE,Linwood,NJ,39.33921802,-74.58175908,RES1,3001,,17,NE,1965,1965,3102,2,1,1008.100198,1008.100198,3505,NO,24.5,37.26,3,-2.7,6110,111.566341,121.749795,131.44434,137.754154,I,Above,Gable,0,5701,,30.8813985,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 17475,NJBF000062493,307 W FOREST DRIVE,Linwood,NJ,39.33957397,-74.58380584,RES1,3001,,17,NE,1978,1978,3102,2,1,2204.647602,2204.647602,3505,NO,31.57,40.64,3,2.28,6106,111.518312,121.710414,131.4065,137.70656,I,Above,Gable,0,5701,,36.10741581,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17476,NJBF000063654,432 W HAMILTON AVE,Linwood,NJ,39.34231142,-74.5829196,RES1,3001,,17,NE,1959,1959,3102,1,1,1842.872479,1842.872479,3505,NO,17.9,29.7,3,5.52,6106,111.490562,121.694353,131.389809,137.685006,I,Above,Gable,0,5701,,23.80019101,0,0,,,,1,1,,0.03,nav,1,1959,1,, 17477,NJBF000058072,108 W KIRKLIN AVE,Linwood,NJ,39.33165732,-74.58390779,RES1,3001,,16,NE,1929,1929,3102,1,1,1514.320035,1514.320035,3507,NO,18.66,26.88,1,0.58,6112,111.652277,121.800905,131.494634,137.818653,I,Above,Gable,0,5701,,22.77098177,0,1.1,,,,1,1,,0.35,nav,1,1929,1,, 17478,NJBF000057972,34 W KIRKLIN AVE,Linwood,NJ,39.33147831,-74.58354949,RES1,3001,,16,NE,1934,1934,3102,1,1,1399.875068,1399.875068,3507,NO,11.59,24.54,1,0.65,6110,111.662545,121.809183,131.502581,137.828632,I,Above,Gable,0,5701,,18.0618943,0,1.1,,,,1,1,,0.35,nav,1,1934,1,, 17479,NJBF000058927,405 W FRANCES AVE,Linwood,NJ,39.33319503,-74.59144623,RES1,3001,,17,NE,1964,1964,3102,2,1,2422.347185,2422.347185,3507,NO,28.08,35.44,1,-0.14,6106,111.476902,121.653485,131.353715,137.640678,I,Above,Gable,0,5701,,31.76113737,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 17480,NJBF000069698,10 MILL LANE,Linwood,NJ,39.36302802,-74.57529368,RES1,3001,,19,NE,1997,1997,3101,2,1,3592.050869,3592.050869,3507,NO,36.62,41.78,1,1.86,6112,111.345403,121.598206,131.274863,137.534105,I,Above,Hip,0,5701,,39.19952691,0,1.2,,,,1,1,,0.03,nav,1,1997,2,, 17481,NJBF000057243,1 W FRANCES AVE,Linwood,NJ,39.33021425,-74.58357083,RES1,3001,,15,NE,1955,1955,3102,1,1,1419.36198,1419.36198,3507,NO,16.18,25.12,1,0.8,6110,111.684087,121.823746,131.516465,137.84622,I,Above,Gable,0,5701,,20.64564684,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 17482,NJBF000067271,1001 BARTLETT DRIVE,Linwood,NJ,39.35284,-74.579177,RES1,3001,,17,NE,1971,1971,3101,2,1,582.4779496,582.4779496,3507,NO,36.7,51.13,1,2.14,6106,111.402272,121.641207,131.330012,137.607081,I,Above,Gable,0,5701,,43.91349787,0,0,,,,1,1,,0.03,nav,1,1971,2,, 17483,NJBF000067272,1001 BARTLETT DRIVE,Linwood,NJ,39.35284196,-74.57896228,RES1,3001,,17,NE,1971,1971,3101,2,1,2960.745851,2960.745851,3507,NO,23.46,37.71,1,-0.88,6112,111.406927,121.644901,131.33355,137.611511,I,Above,Gable,0,5701,,30.58478782,0,0,,,,1,1,,0.35,nav,1,1971,2,, 17484,NJBF000066948,1008 BARTLETT AVE,Linwood,NJ,39.35142434,-74.57831408,RES1,3001,,17,NE,1966,1966,3101,2,1,2672.298155,2672.298155,3507,NO,32.63,39.41,1,2.15,6110,111.442533,121.671722,131.360799,137.646092,I,Above,Gable,0,5701,,36.02102286,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 17485,NJBF000060674,1705 SOMERSET BLVD,Linwood,NJ,39.33638545,-74.57157865,RES1,3001,,16,NE,1967,1967,3102,2,1,2694.546343,2694.546343,3507,NO,28.01,33.59,1,-0.83,6110,111.825036,121.958313,131.646517,138.005838,I,Above,Gable,0,5701,,30.80010501,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 17486,NJBF000058715,214 W KIRKLIN AVE,Linwood,NJ,39.33279244,-74.58725124,RES1,3001,,16,NE,1959,1959,3102,1,1,1562.820187,1562.820187,3507,NO,21.8,32.85,1,2.91,6112,111.566138,121.730138,131.42682,137.733263,I,Above,Gable,0,5701,,27.32677954,0,0,,,,1,1,,0.35,nav,1,1959,1,, 17487,NJBF000064611,222 LANDING LANE,Linwood,NJ,39.34489994,-74.56440859,RES1,3001,,18,NE,1974,1974,3102,2,1,5261.138568,5261.138568,3507,NO,32.54,43.51,1,2.24,6106,111.844064,121.985619,131.670268,138.030678,I,Above,Gable,0,5701,,38.02255594,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 17488,NJBF000064060,1400 NEW ROAD,Linwood,NJ,39.34346633,-74.58199476,RES1,3001,,16,NE,1987,1987,3102,2,1,2539.923896,2539.923896,3505,NO,27.5,41.13,3,-1.83,6112,111.490666,121.697181,131.391823,137.687279,I,Above,Gable,0,5701,,34.31599423,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 17489,NJBF000062841,318 W KIE-TRO DRIVE,Linwood,NJ,39.34033674,-74.58378179,RES1,3001,,17,NE,2000,2000,3102,2,1,1824.68673,1824.68673,3505,NO,35.67,44.34,3,7.97,6106,111.505897,121.702061,131.398186,137.69595,I,Above,Gable,0,5701,,40.00415648,0,1.2,,,,1,1,,0.03,nav,1,2000,2,, 17490,NJBF000061803,1920 WEST AVE,Linwood,NJ,39.33827876,-74.58400542,RES1,3001,,17,NE,1967,1967,3102,2,1,1961.695059,1961.695059,3505,NO,30.44,43.74,3,-1.76,6106,111.536259,121.721915,131.417981,137.72125,I,Above,Gable,0,5701,,37.09317867,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 17491,NJBF000062507,222 E BALFOUR AVE,Linwood,NJ,39.33959787,-74.56913631,RES1,3001,,17,NE,1985,1985,3102,2,1,3939.686828,3939.686828,3507,NO,33.52,44.15,1,0.57,6106,111.824763,121.963699,131.651019,138.010057,I,Above,Gable,0,5701,,38.83311286,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 17492,NJBF000069004,521 CEDARBROOK LANE S,Linwood,NJ,39.35833717,-74.57567043,RES1,3001,,18,NE,1978,1978,3101,2,1,1978.236147,1978.236147,3507,NO,24.13,33.85,1,-0.2,6112,111.399866,121.641979,131.323939,137.597339,I,Above,Gable,0,5701,,28.99093248,0,1.1,,,,1,1,,0.35,nav,1,1978,2,, 17493,NJBF000067023,1007 BARTLETT AVE,Linwood,NJ,39.35172774,-74.57869596,RES1,3001,,17,NE,2004,2004,3101,2,1,2406.069616,2406.069616,3507,NO,35.86,49.53,1,-0.64,6106,111.429604,121.661762,131.350927,137.633641,I,Above,Gable,0,5701,,42.69494012,0,1.2,,,,1,1,,0.03,nav,1,2004,2,, 17494,NJBF000063822,400 W PATCONG AVE,Linwood,NJ,39.34278972,-74.5814655,RES1,3001,,16,NE,1967,1967,3102,1,1,1485.390067,1485.390067,3505,NO,10.09,17.04,3,-1.42,6110,111.512885,121.714007,131.408334,137.70817,I,Above,Gable,0,5701,,13.56042204,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 17495,NJBF000070120,13 POND LANE,Linwood,NJ,39.36589834,-74.57775156,RES1,3001,,19,NE,1983,1983,3101,2,1,3164.28072,3164.28072,3507,NO,21.59,30.2,1,-0.6,6106,111.253522,121.525448,131.199959,137.43949,I,Above,Gable,0,5701,,25.89700204,0,1.2,,,,1,1,,0.03,nav,1,1983,2,, 17496,NJBF000062163,220 W FOREST DR,Linwood,NJ,39.33890708,-74.58174163,RES1,3001,,16,NE,1967,1967,3102,2,1,2243.339487,2243.339487,3505,NO,19.91,32.53,3,-1.3,6112,111.571926,121.753668,131.44817,137.759022,I,Above,Gable,0,5701,,26.21592888,0,0,,,,1,1,,0.35,nav,1,1967,2,, 17497,NJBF000057585,204 ARBOR COURT EAST,Linwood,NJ,39.33082546,-74.57794154,RES1,3001,,19,NE,1981,1981,3102,2,1,5379.61121,5379.61121,3507,NO,30.3,36.09,1,0.21,6112,111.786644,121.913306,131.602996,137.953774,I,Above,Gable,0,5701,,33.19264154,0,1.2,,,,1,1,,0.35,nav,1,1981,2,, 17498,NJBF000057179,,Linwood,NJ,39.33008738,-74.58139077,RES1,3001,,NaN,NE,1969,0,3102,2,1,2974.527676,2974.527676,3507,NO,38.26,45.18,1,0.44,6106,111.729783,121.862689,131.553976,137.89305,I,Above,Gable,0,5701,,41.7183755,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17499,NJBF000069093,524 CEDARBROOK LA,Linwood,NJ,39.35875153,-74.57568607,RES1,3001,,17,NE,1979,1979,3101,2,1,2909.168088,2909.168088,3507,NO,29.52,36.73,1,-0.14,6112,111.393761,121.637225,131.318793,137.590747,I,Above,Gable,0,5701,,33.12190398,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 17500,NJBF000068311,506 W DAVIS AVE,Linwood,NJ,39.35631711,-74.57480514,RES1,3001,,16,NE,1968,1968,3101,1,1,2634.514295,2634.514295,3507,NO,12.11,20.57,1,1.51,6110,111.447485,121.678829,131.362081,137.64568,I,Above,Gable,0,5701,,16.33792397,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 17501,NJBF000064430,1 YALE LANE,Linwood,NJ,39.34446638,-74.578699,RES1,3001,,16,NE,1966,1966,3102,2,1,4877.697427,4877.697427,3507,NO,33.06,44.09,1,2.03,6112,111.543654,121.742789,131.434898,137.740965,I,Above,Gable,0,5701,,38.57555939,0,0,,,,1,1,,0.35,nav,1,1966,2,, 17502,NJBF000067983,100 CAROL RD,Linwood,NJ,39.35523933,-74.55474683,RES1,3001,,16,NE,1960,1960,3102,2,1,3380.546178,3380.546178,3507,NO,26.03,33.63,1,-0.78,6106,111.910198,122.039192,131.716171,138.076735,I,Above,Hip,0,5701,,29.82674301,0,0,,,,1,1,,0.03,nav,1,1960,2,, 17503,NJBF000064549,1156 FRANKLIN BLVD,Linwood,NJ,39.34476214,-74.56623163,RES1,3001,,17,NE,1985,1985,3102,2,1,4371.411803,4371.411803,3507,NO,28.01,41.38,1,-0.25,6106,111.80653,121.955492,131.640856,137.994962,I,Above,Hip,0,5701,,34.69455517,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 17504,NJBF000065348,124 COUNTRY CLUB DRIVE,Linwood,NJ,39.34680922,-74.5624894,RES1,3001,,19,NE,2001,2001,3102,2,1,4423.489297,4423.489297,3507,NO,22.72,28.83,1,1.25,6110,111.857389,121.997585,131.680971,138.042358,I,Above,Gable,0,5701,,25.77684434,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 17505,NJBF000065197,200 COUNTRY CLUB DRIVE,Linwood,NJ,39.34637183,-74.56205266,RES1,3001,,18,NE,1987,1987,3102,2,1,3759.471527,3759.471527,3507,NO,36.8,47.26,1,-0.92,6106,111.873436,122.010066,131.69348,138.057815,I,Above,Hip,0,5701,,42.03021442,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 17506,NJBF000058750,307 W KIRKLIN AVE,Linwood,NJ,39.332868,-74.58857039,RES1,3001,,16,NE,1961,1961,3102,1,1,2264.999387,2264.999387,3507,NO,21.83,33.53,1,2.66,6112,111.538832,121.706621,131.404351,137.704888,I,Above,Gable,0,5701,,27.68052137,0,1.1,,,,1,1,,0.35,nav,1,1961,1,, 17507,NJBF000060709,493 SARA ANN CT,Linwood,NJ,39.33642986,-74.58551705,RES1,3001,,17,NE,1965,1965,3102,2,1,2053.215949,2053.215949,3507,NO,37.57,42.87,1,-0.88,6106,111.537377,121.717329,131.414123,137.716714,I,Above,Gable,0,5701,,40.2227125,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 17508,NJBF000060756,2018 NEW ROAD,Linwood,NJ,39.33650001,-74.58672467,RES1,3001,,16,NE,1900,1900,3102,2,1,1014.215121,1014.215121,3507,NO,34.68,43.59,1,2.71,6110,111.51192,121.695744,131.393496,137.690684,I,Above,Gable,0,5701,,39.13070101,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 17509,NJBF000058681,2200 NEW ROAD,Linwood,NJ,39.33275001,-74.59022296,RES1,3001,,17,NE,1963,1963,3102,2,2,2023.557527,2023.557527,3507,NO,39.73,48.44,1,1.87,6110,111.508581,121.679685,131.378665,137.67239,I,Above,Hip,0,5701,,44.08481775,0,0,,,,1,1,,0.35,nav,1,1963,2,, 17510,NJBF000064516,3 DARTMOUTH LANE,Linwood,NJ,39.34468162,-74.57906495,RES1,3001,,17,NE,1974,1974,3102,2,1,2834.152888,2834.152888,3507,NO,22.3,29.3,1,-0.55,6106,111.532424,121.734023,131.426337,137.730204,I,Above,Gable,0,5701,,25.79985072,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 17511,NJBF000063561,1701 NEW ROAD,Linwood,NJ,39.34205842,-74.58369081,RES1,3001,562,NaN,NE,1969,0,3102,1,1,2237.410539,2237.410539,3507,NO,16.35,30.7,1,2.92,6106,111.478829,121.683941,131.380005,137.672718,I,Above,Flat,0,5701,,23.52546092,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17512,NJBF000064613,,Linwood,NJ,39.34490271,-74.58187465,RES3A,3001,,NaN,NE,1969,0,3301,2,1,4521.611078,4521.611078,3507,NO,27.95,41.64,1,2.45,6106,111.469591,121.682987,131.37729,137.668675,I,Above,Hip,0,5701,,34.79927707,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17513,NJBF000064490,,Linwood,NJ,39.34461684,-74.5834783,RES3A,3001,,NaN,NE,1969,0,3301,1,1,4908.543684,4908.543684,3507,NO,11.68,23.48,1,0.25,6106,111.440711,121.658553,131.354158,137.639624,I,Above,Hip,0,5701,,17.58097248,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17514,NJBF000064408,,Linwood,NJ,39.34441801,-74.58381451,RES3A,3001,,NaN,NE,1969,0,3301,1,1,5043.223142,5043.223142,3507,NO,18.08,24.03,1,-0.76,6106,111.436968,121.65499,131.3509,137.635557,I,Above,Hip,0,5701,,21.05347719,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17515,NJBF000062806,306 W KIETRO DRIVE,Linwood,NJ,39.3402699,-74.58221739,RES1,3001,,17,NE,1971,1971,3102,1,1,2615.690552,2615.690552,3505,NO,9.53,20.84,3,-2.27,6106,111.539231,121.729811,131.42476,137.729364,I,Above,Gable,0,5701,,15.18785227,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 17516,NJBF000062190,1915 WEST AVE,Linwood,NJ,39.33896143,-74.58368401,RES1,3001,,16,NE,1989,1989,3102,1,1,2931.724977,2931.724977,3505,NO,11.66,22.3,3,-0.55,6106,111.531204,121.719574,131.4155,137.718,I,Above,Hip,0,5701,,16.97832877,0,0,,,,1,1,,0.03,nav,1,1989,1,, 17517,NJBF000062659,305 W KIE-TRO DR,Linwood,NJ,39.33993689,-74.58258147,RES1,3001,,17,NE,1970,1970,3102,2,1,3105.644826,3105.644826,3505,NO,36.87,47.92,3,8.54,6106,111.537325,121.727356,131.422554,137.726667,I,Above,Gable,0,5701,,42.39555825,0,0,,,,1,1,,0.03,nav,1,1970,2,, 17518,NJBF000061252,2015 WEST AVE,Linwood,NJ,39.33731398,-74.58723836,RES1,3001,,16,NE,1900,1900,3102,2,1,705.9530028,705.9530028,3507,NO,38.67,48.02,1,2.66,6112,111.487532,121.677463,131.37585,137.668266,I,Above,Gable,0,5701,,43.34837191,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 17519,NJBF000057803,18 W KIRKLIN AVE,Linwood,NJ,39.33118928,-74.58295281,RES1,3001,,15,NE,1929,1929,3102,1,2,1366.713555,1366.713555,3507,NO,19.44,30.93,1,2.14,6106,111.679459,121.822831,131.515689,137.845077,I,Above,Gable,0,5701,,25.18601663,0,1.2,,,,1,1,,0.03,nav,1,1929,1,, 17520,NJBF000062978,309 W JOSEPH AVE,Linwood,NJ,39.34062835,-74.58203228,RES1,3001,,16,NE,1963,1963,3102,1,1,1603.851387,1603.851387,3505,NO,14.5,20.48,3,-0.54,6112,111.537052,121.728898,131.423724,137.727985,I,Above,Gable,0,5701,,17.49057995,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17521,NJBF000060087,,Linwood,NJ,39.33538,-74.59234,RES1,3001,,NaN,NE,1969,0,3102,2,1,2349.442378,2349.442378,3507,NO,38.54,51.47,1,0.22,6106,111.420698,121.612462,131.314531,137.590606,I,Above,Gable,0,5701,,45.00337333,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17522,NJBF000058923,2105 GRAMMERCY AVE,Linwood,NJ,39.33318871,-74.58750202,RES1,3001,,16,NE,1960,1960,3102,1,1,2078.127591,2078.127591,3507,NO,17.2,28.4,1,1.69,6112,111.554221,121.721157,131.418223,137.722365,I,Above,Hip,0,5701,,22.80176318,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 17523,NJBF000057431,20 E BERKLEY ST,Linwood,NJ,39.33056417,-74.58079568,RES1,3001,,17,NE,1960,1960,3102,2,1,1686.740449,1686.740449,3507,NO,38.38,48.82,1,-0.56,6110,111.733482,121.867279,131.558468,137.898548,I,Above,Gable,0,5701,,43.59809593,0,1.2,,,,1,1,,0.35,nav,1,1960,2,, 17524,NJBF000060259,2133 WEST AVE,Linwood,NJ,39.3356702,-74.59163374,RES1,3001,,16,NE,1978,1978,3102,2,1,2171.738656,2171.738656,3507,NO,25.65,39.21,1,1.47,6106,111.429321,121.621163,131.322728,137.601028,I,Above,Gable,0,5701,,32.42864627,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17525,NJBF000062244,1913 WEST AVE,Linwood,NJ,39.33907725,-74.58334161,RES1,3001,,17,NE,2000,2000,3102,2,1,2793.487257,2793.487257,3505,NO,30.43,36.13,3,1.37,6106,111.53623,121.72413,131.419814,137.723401,I,Above,Hip,0,5701,,33.27930381,0,1.2,,,,1,1,,0.03,nav,1,2000,2,, 17526,NJBF000060880,497 SARA ANN CT,Linwood,NJ,39.336691,-74.586184,RES1,3001,,17,NE,1965,1965,3102,2,1,1557.892949,1557.892949,3507,NO,28.01,36.17,1,-0.55,6106,111.519462,121.702823,131.400205,137.699124,I,Above,Gable,0,5701,,32.09153458,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 17527,NJBF000063689,,Linwood,NJ,39.3423991,-74.56632111,RES1,3001,,NaN,NE,1969,0,3102,2,1,4046.650788,4046.650788,3507,NO,31.19,40.74,1,0.8,6106,111.841001,121.980649,131.666562,138.027653,I,Above,Hip,0,5701,,35.96513217,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17528,NJBF000062253,110 E PATCONG AVE,Linwood,NJ,39.33908815,-74.57191106,RES1,3001,,17,NE,1965,1965,3102,2,1,2498.104734,2498.104734,3507,NO,30.17,44.66,1,2.4,6112,111.774081,121.92146,131.610067,137.959998,I,Above,Hip,0,5701,,37.41605327,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17529,NJBF000062395,1814 WEST AVE,Linwood,NJ,39.33935589,-74.58133362,RES1,3001,,16,NE,1970,1970,3102,1,1,1720.574969,1720.574969,3505,NO,14.89,21.28,3,-1.46,6112,111.57278,121.755537,131.449794,137.760955,I,Above,Hip,0,5701,,18.0839132,0,0,,,,1,1,,0.35,nav,1,1970,1,, 17530,NJBF000067999,513 W STERLING AVE,Linwood,NJ,39.355303,-74.577542,RES1,3001,,17,NE,1962,1962,3101,1,1,1959.119932,1959.119932,3507,NO,16.83,25.35,1,1.42,6106,111.401552,121.642521,131.328376,137.604149,I,Above,Gable,0,5701,,21.08938091,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 17531,NJBF000060100,313 MELODY LANE,Linwood,NJ,39.3354061,-74.58664202,RES1,3001,,16,NE,1953,1953,3102,1,1,2012.908943,2012.908943,3507,NO,19.68,33.65,1,1.97,6110,111.532575,121.709927,131.407259,137.708217,I,Above,Gable,0,5701,,26.66574706,0,1.1,,,,1,1,,0.35,nav,1,1953,1,, 17532,NJBF000065491,118 COUNTRY CLUB DR,Linwood,NJ,39.34724058,-74.56320578,RES1,3001,,18,NE,1963,1963,3102,2,1,2830.952973,2830.952973,3507,NO,27.64,41.71,1,-0.65,6106,111.835259,121.980277,131.663724,138.021151,I,Above,Gable,0,5701,,34.67591315,0,1.2,,,,1,1,,0.03,nav,1,1963,2,, 17533,NJBF000068079,512 W STERLING AVE,Linwood,NJ,39.35555617,-74.57690835,RES1,3001,,16,NE,1962,1962,3101,1,1,2360.154337,2360.154337,3507,NO,15.83,21.38,1,0.55,6112,111.41186,121.650728,131.335952,137.613503,I,Above,Gable,0,5701,,18.60668463,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17534,NJBF000056306,12 E ROYAL AVE,Linwood,NJ,39.32818849,-74.58173959,RES1,3001,,17,NE,1989,1989,3102,2,1,3567.844532,3567.844532,3507,NO,27.85,41.22,1,2.1,6106,111.755743,121.879219,131.569562,137.912812,I,Above,Hip,0,5701,,34.53699231,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 17535,NJBF000060849,1701 SOMERSET AVE,Linwood,NJ,39.33664531,-74.57137093,RES1,3001,,17,NE,1968,1968,3102,2,1,2579.635584,2579.635584,3507,NO,37.86,44.35,1,1.67,6112,111.825155,121.95891,131.647056,138.006404,I,Above,Gable,0,5701,,41.10081267,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 17536,NJBF000058122,213 W FRANCES AVE,Linwood,NJ,39.33174877,-74.58761544,RES1,3001,,16,NE,1960,1960,3102,2,1,1927.824337,1927.824337,3505,NO,35.2,49.34,3,2.29,6112,111.577291,121.736208,131.432609,137.740706,I,Above,Gable,0,5701,,42.2702665,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 17537,NJBF000057109,,Linwood,NJ,39.32994636,-74.58107871,RES1,3001,,NaN,NE,1969,0,3102,2,1,2992.667312,2992.667312,3507,NO,24.92,31.17,1,-0.7,6106,111.73847,121.869718,131.56074,137.901498,I,Above,Gable,0,5701,,28.0405537,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17538,NJBF000056907,7 SEAGARDEN DR,Linwood,NJ,39.32951538,-74.58152531,RES1,3001,,18,NE,1987,1987,3102,2,1,3527.862302,3527.862302,3507,NO,27.77,39.83,1,1.58,6106,111.737003,121.867158,131.558198,137.898417,I,Above,Gable,0,5701,,33.80178381,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 17539,NJBF000070441,8 LAKE DR,Linwood,NJ,39.36714548,-74.57867953,RES1,3001,,17,NE,2015,2015,3101,1,1,3046.27929,3046.27929,3507,NO,19.81,28.39,1,2.53,6110,111.217218,121.496382,131.16976,137.401232,I,Above,Hip,0,5701,,24.10234535,0,1.2,,,,1,1,,0.35,nav,1,2015,1,, 17540,NJBF000059506,505 KIRKLIN AVE,Linwood,NJ,39.33436272,-74.59223169,RES1,3001,,17,NE,1978,1978,3102,2,1,1705.194725,1705.194725,3507,NO,37.73,47.3,1,0.52,6106,111.440878,121.626258,131.327763,137.607553,I,Above,Gable,0,5701,,42.51081651,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17541,NJBF000068928,,Linwood,NJ,39.35804388,-74.5760659,RES1,3001,,NaN,NE,1969,0,3101,1,1,2827.389,2827.389,3507,NO,16.99,29.1,1,0.64,6112,111.395125,121.638297,131.320787,137.593548,I,Above,Gable,0,5701,,23.04504144,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17542,NJBF000062900,1714 NEW ROAD,Linwood,NJ,39.34045944,-74.58414303,RES1,3001,,16,NE,2005,2005,3102,1,1,1952.362795,1952.362795,3505,NO,22.32,36.14,3,3.22,6106,111.496429,121.69444,131.39085,137.686688,I,Above,Gable,0,5701,,29.23180872,0,0,,,,1,1,,0.03,nav,1,2005,1,, 17543,NJBF000062733,320 W KIE-TRO DRIVE,Linwood,NJ,39.34010511,-74.58393812,RES1,3001,,17,NE,1997,1997,3102,2,1,2904.732436,2904.732436,3505,NO,24.86,31.73,3,1.83,6106,111.506619,121.702036,131.398266,137.696095,I,Above,Hip,0,5701,,28.29556362,0,1.2,,,,1,1,,0.03,nav,1,1997,2,, 17544,NJBF000060631,491 SARA ANN CT,Linwood,NJ,39.33630006,-74.58512837,RES1,3001,,16,NE,1967,1967,3102,2,1,1887.938385,1887.938385,3507,NO,26.88,32,1,1.65,6106,111.547449,121.725533,131.421994,137.726649,I,Above,Gable,0,5701,,29.44291293,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 17545,NJBF000060116,2115 NEW ROAD,Linwood,NJ,39.33543998,-74.59104561,RES1,3001,,17,NE,1987,1987,3102,1,2,1629.716484,1629.716484,3507,NO,16.43,31.27,1,-0.69,6110,111.444893,121.633938,131.334895,137.616536,I,Above,Gable,0,5701,,23.8467886,0,0,,,,1,1,,0.35,nav,1,1987,1,, 17546,NJBF000059992,508 DUSTY LANE,Linwood,NJ,39.3352113,-74.5914412,RES1,3001,,17,NE,2000,2000,3102,2,1,2349.873229,2349.873229,3507,NO,36.01,48.39,1,0.85,6112,111.441221,121.62985,131.331054,137.61167,I,Above,Gable,0,5701,,42.20162476,0,1.2,,,,1,1,,0.35,nav,1,2000,2,, 17547,NJBF000057359,,Linwood,NJ,39.33043695,-74.58143754,RES1,3001,,NaN,NE,1969,0,3102,2,1,1114.077429,1114.077429,3507,NO,24.51,36.27,1,-0.71,6106,111.722791,121.857744,131.549251,137.887097,I,Above,Gable,0,5701,,30.38559655,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17548,NJBF000058018,312 ROYAL AVE,Linwood,NJ,39.33156431,-74.58793864,RES1,3001,,16,NE,1964,1964,3102,1,1,1853.246372,1853.246372,3507,NO,15.51,23.81,1,-0.92,6112,111.574189,121.732842,131.429381,137.73666,I,Above,Gable,0,5701,,19.65689906,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 17549,NJBF000057961,2149 SHORE ROAD,Linwood,NJ,39.33145443,-74.5823121,RES1,3001,,17,NE,1992,1992,3102,2,1,2482.410261,2482.410261,3507,NO,36.65,49.39,1,2.88,6110,111.687695,121.83072,131.523302,137.854538,I,Above,Hip,0,5701,,43.0224688,0,1.1,,,,1,1,,0.35,nav,1,1992,2,, 17550,NJBF000064965,6 FALLING WATER DRIVE,Linwood,NJ,39.34581031,-74.58164457,RES1,3001,,16,NE,2001,2001,3102,2,1,1909.879707,1909.879707,3507,NO,33.9,43.91,1,0.84,6106,111.459663,121.676734,131.370645,137.660102,I,Above,Gable,0,5701,,38.90425031,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17551,NJBF000064652,206 LANDING LANE,Linwood,NJ,39.34499988,-74.56481622,RES1,3001,,18,NE,1967,1967,3102,2,1,3834.843434,3834.843434,3507,NO,34.15,42.18,1,-0.81,6112,111.833687,121.977418,131.662184,138.020787,I,Above,Gable,0,5701,,38.16866102,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 17552,NJBF000062100,109 E PATCONG AVE,Linwood,NJ,39.33879399,-74.57225506,RES1,3001,,16,NE,1957,1957,3102,1,1,1805.98776,1805.98776,3507,NO,18.11,30.2,1,1.01,6110,111.771577,121.918877,131.607645,137.957129,I,Above,Gable,0,5701,,24.15574929,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 17553,NJBF000064478,,Linwood,NJ,39.3445802,-74.56810597,RES1,3001,,NaN,NE,1969,0,3102,2,1,2957.180284,2957.180284,3507,NO,31.43,39.12,1,0.53,6110,111.768708,121.925,131.611185,137.958823,I,Above,Gable,0,5701,,35.27467522,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17554,NJBF000064387,260 SCHOOLHOUSE DR,Linwood,NJ,39.34436328,-74.58142585,RES1,3001,,18,NE,1991,1991,3102,2,1,3079.389598,3079.389598,3507,NO,34.71,41.29,1,2.04,6106,111.487848,121.696842,131.390915,137.685922,I,Above,Gable,0,5701,,37.99944919,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 17555,NJBF000064046,550 HAMILTON AVE,Linwood,NJ,39.34342415,-74.58467674,COM4,3001,,NaN,ME,1969,0,3401,2,1,5171.953595,5171.953595,3507,NO,26.03,33.02,1,2.16,6106,111.435588,121.651392,131.34814,137.632265,I,Above,Flat,0,NaN,,29.52643815,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17556,NJBF000063961,550 HAMILTON AVE,Linwood,NJ,39.34320784,-74.58532349,COM4,3001,,NaN,ME,1969,0,3401,2,1,2927.264258,2927.264258,3507,NO,33.19,45.41,1,1.02,6106,111.425852,121.642711,131.340011,137.622031,I,Above,Flat,0,NaN,,39.30221546,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17557,NJBF000065524,104 E DELMAR AVE,Linwood,NJ,39.34733529,-74.56601639,RES1,3001,,17,NE,1957,1957,3102,1,1,5566.780381,5566.780381,3507,NO,13.96,24.02,1,0.53,6112,111.772321,121.93037,131.614785,137.961595,I,Above,Flat,0,5701,,18.99126355,0,1.2,,,,1,1,,0.35,nav,1,1957,1,, 17558,NJBF000069035,525 CEDARBROOK LANE,Linwood,NJ,39.35848112,-74.57629408,RES1,3001,,18,NE,1976,1976,3101,2,1,3809.08378,3809.08378,3507,NO,39.49,45.86,1,2.7,6106,111.383955,121.629636,131.311855,137.582233,I,Above,Hip,0,5701,,42.67604827,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 17559,NJBF000068377,510 W DAVIS AVE,Linwood,NJ,39.3565596,-74.57545336,RES1,3001,,16,NE,1967,1967,3101,1,1,2246.953867,2246.953867,3507,NO,17.81,26.26,1,0.59,6110,111.429658,121.664975,131.348419,137.628594,I,Above,Gable,0,5701,,22.03569379,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 17560,NJBF000064328,206 W SCHOOLHOUSE DR,Linwood,NJ,39.34420666,-74.57737257,RES1,3001,,18,NE,1974,1974,3102,3,1,2517.604186,2517.604186,3507,NO,57.56,70.56,1,-0.41,6112,111.575917,121.768644,131.459925,137.772259,I,Above,Gable,0,5701,,64.06277658,0,1.1,,,,1,1,,0.03,nav,1,1974,3,, 17561,NJBF000067737,903 BARTLETT AVE,Linwood,NJ,39.35432441,-74.57802035,RES1,3001,,16,NE,1968,1968,3101,1,1,1914.234446,1914.234446,3507,NO,18.63,24.12,1,0,6112,111.405405,121.644944,131.331883,137.608902,I,Above,Flat,0,5701,,21.3754042,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 17562,NJBF000064710,,Linwood,NJ,39.34513225,-74.56807315,RES1,3001,,NaN,NE,1969,0,3102,2,1,3636.099417,3636.099417,3507,NO,35.13,41.54,1,1.91,6112,111.760935,121.919356,131.605375,137.951411,I,Above,Hip,0,5701,,38.33465759,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17563,NJBF000068264,504 W DAVIS AVE,Linwood,NJ,39.35618616,-74.57449769,RES1,3001,,16,NE,1965,1965,3101,1,1,1984.265224,1984.265224,3507,NO,15.15,29.89,1,2.23,6110,111.456156,121.685566,131.368744,137.654012,I,Above,Flat,0,5701,,22.51590148,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17564,NJBF000068169,722 RIVER DRIVE,Linwood,NJ,39.35588667,-74.57700743,RES1,3001,,16,NE,1965,1965,3101,1,1,1989.942055,1989.942055,3507,NO,15.78,26.15,1,-0.84,6106,111.404889,121.645412,131.330431,137.606483,I,Above,Gable,0,5701,,20.96574113,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 17565,NJBF000069821,2 MILL LANE,Linwood,NJ,39.36428413,-74.57565684,RES1,3001,,19,NE,1988,1988,3101,2,1,4184.812572,4184.812572,3507,NO,26.33,33.9,1,1.16,6112,111.321155,121.578608,131.25393,137.507479,I,Above,Gable,0,5701,,30.11530802,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 17566,NJBF000067808,901 BARTLETT AVE,Linwood,NJ,39.35459232,-74.57788265,RES1,3001,,17,NE,1969,1969,3101,2,1,2398.764436,2398.764436,3507,NO,28.4,42.8,1,2.65,6112,111.404462,121.644383,131.331026,137.607731,I,Above,Gable,0,5701,,35.59936524,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 17567,NJBF000067042,1005 RICHARD DR,Linwood,NJ,39.35179988,-74.5776471,RES1,3001,,17,NE,1966,1966,3101,1,1,2702.397737,2702.397737,3507,NO,16.61,27.69,1,1.33,6112,111.451321,121.679109,131.367501,137.65433,I,Above,Gable,0,5701,,22.15161861,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 17568,NJBF000065083,11 FALLING WATER DRIVE,Linwood,NJ,39.34608819,-74.58254435,RES1,3001,,16,NE,2000,2000,3102,2,1,2168.497648,2168.497648,3507,NO,27.63,37.92,1,0.6,6110,111.436197,121.658084,131.352614,137.637355,I,Above,Hip,0,5701,,32.77384723,0,1.2,,,,1,1,,0.35,nav,1,2000,2,, 17569,NJBF000065318,109 E DELMAR AVE,Linwood,NJ,39.34672368,-74.56618974,RES1,3001,,19,NE,2007,2007,3102,2,1,5941.785841,5941.785841,3507,NO,22.19,36.6,1,-0.51,6106,111.777691,121.934185,131.618902,137.966999,I,Above,Gable,0,5701,,29.39286934,0,1.2,,,,1,1,,0.03,nav,1,2007,2,, 17570,NJBF000062356,108 E PATCONG AVE,Linwood,NJ,39.33928227,-74.57237424,RES1,3001,,17,NE,1956,1956,3102,2,1,1748.847747,1748.847747,3507,NO,26.5,35.26,1,0.45,6112,111.76116,121.91122,131.600063,137.947605,I,Above,Gable,0,5701,,30.87884706,0,1.1,,,,1,1,,0.35,nav,1,1956,2,, 17571,NJBF000063879,210 E ESSEX AVE,Linwood,NJ,39.3429694,-74.56631882,RES1,3001,,19,NE,1963,1963,3102,2,1,4337.840788,4337.840788,3507,NO,21.23,31.42,1,-0.65,6112,111.83221,121.974227,131.660039,138.019383,I,Above,Hip,0,5701,,26.32524762,0,1.2,,,,1,1,,0.35,nav,1,1963,2,, 17572,NJBF000060249,646 OCEAN HTGS AVE,Linwood,NJ,39.3356507,-74.59537141,COM3,3001,,NaN,ME,1969,0,3401,2,1,1716.08267,1716.08267,3507,NO,31.7,37.01,1,0.08,6106,111.357306,121.557385,131.262377,137.523897,I,Above,Gable,0,NaN,,34.35467484,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17573,NJBF000063793,1600 NEW ROAD,Linwood,NJ,39.34270876,-74.58260601,RES1,3001,,16,NE,1953,1953,3102,1,1,1442.398163,1442.398163,3505,NO,12.67,18.25,3,-1.2,6110,111.490461,121.695238,131.390425,137.685695,I,Above,Gable,0,5701,,15.46213671,0,0,,,,1,1,,0.35,nav,1,1953,1,, 17574,NJBF000063870,,Linwood,NJ,39.34293889,-74.58430837,RES1,3001,,NaN,NE,1969,0,3102,2,1,8416.4301,8416.4301,3507,NO,25.74,32.78,1,2.49,6106,111.45133,121.663267,131.359764,137.647028,I,Above,Flat,0,5701,,29.25887044,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17575,NJBF000059268,402 W KIRKLIN AVE,Linwood,NJ,39.3338947,-74.59013638,RES1,3001,,16,NE,1963,1963,3102,2,1,1691.555623,1691.555623,3507,NO,23.61,29.19,1,1.15,6110,111.490016,121.667677,131.367175,137.657696,I,Above,Gable,0,5701,,26.40026291,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 17576,NJBF000060456,2129 WEST AVENUE,Linwood,NJ,39.33600438,-74.59108791,RES1,3001,,17,NE,1996,1996,3102,1,1,3389.600418,3389.600418,3507,NO,18.96,32.67,1,0.56,6106,111.434105,121.626617,131.327834,137.607499,I,Above,Hip,0,5701,,25.81527156,0,1.2,,,,1,1,,0.03,nav,1,1996,1,, 17577,NJBF000058472,213 W KIRKLIN AVE,Linwood,NJ,39.33237188,-74.58721775,RES1,3001,,16,NE,1957,1957,3102,1,1,1188.059595,1188.059595,3507,NO,19.68,26.64,1,2.24,6110,111.574158,121.735657,131.4321,137.739977,I,Above,Gable,0,5701,,23.16065749,0,0,,,,1,1,,0.35,nav,1,1957,1,, 17578,NJBF000058152,2222 GRAMMERCY AVE,Linwood,NJ,39.33180272,-74.58787799,RES1,3001,,16,NE,1961,1961,3102,1,1,2378.306656,2378.306656,3507,NO,17.91,29.81,1,2.48,6110,111.571175,121.731061,131.427689,137.734494,I,Above,Gable,0,5701,,23.86088698,0,0,,,,1,1,,0.35,nav,1,1961,1,, 17579,NJBF000058430,211 W KIRKLIN AVE,Linwood,NJ,39.33229542,-74.58697052,RES1,3001,,16,NE,1958,1958,3102,1,1,1651.319825,1651.319825,3507,NO,18.09,27.16,1,-0.03,6112,111.580381,121.740802,131.437021,137.74619,I,Above,Gable,0,5701,,22.62458978,0,0,,,,1,1,,0.35,nav,1,1958,1,, 17580,NJBF000062991,1711 NEW ROAD,Linwood,NJ,39.3406504,-74.58463669,COM1,3001,,NaN,ME,1969,0,3401,2,1,1553.424546,1553.424546,3507,NO,28.3,36.61,1,-0.16,6106,111.483072,121.683737,131.380543,137.673663,I,Above,Flat,0,NaN,,32.45570866,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17581,NJBF000065007,,Linwood,NJ,39.3458882,-74.58247487,RES1,3001,,NaN,NE,1969,0,3102,2,1,1724.796573,1724.796573,3507,NO,24.56,39.53,1,2.5,6110,111.440905,121.661526,131.356055,137.641733,I,Above,Gable,0,5701,,32.04435862,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17582,NJBF000064527,9 DARTMOUTH LANE,Linwood,NJ,39.34471486,-74.57972727,RES1,3001,,17,NE,1968,1968,3102,1,1,2959.545995,2959.545995,3507,NO,16.86,30.32,1,1.16,6106,111.517897,121.72221,131.414979,137.715991,I,Above,Hip,0,5701,,23.5881141,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 17583,NJBF000069389,404 CEDARBROOK LANE WEST,Linwood,NJ,39.36003722,-74.57526309,RES1,3001,,17,NE,1976,1976,3101,2,1,598.790207,598.790207,3507,NO,34.06,45.08,1,2.27,6112,111.385651,121.63071,131.310713,137.580099,I,Above,Gable,0,5701,,39.56826192,0,1.2,,,,1,1,,0.35,nav,1,1976,2,, 17584,NJBF000069947,7 POND LANE,Linwood,NJ,39.36515776,-74.57709682,RES1,3001,,19,NE,1985,1985,3101,2,1,2323.455223,2323.455223,3507,NO,26.14,36.78,1,0.89,6110,111.277566,121.544532,131.219615,137.464341,I,Above,Gable,0,5701,,31.45990046,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 17585,NJBF000057581,10 E BERKLEY STREET,Linwood,NJ,39.33082149,-74.5814613,RES1,3001,,17,NE,1961,1961,3102,2,1,2195.231681,2195.231681,3507,NO,27.12,39.42,1,1.43,6110,111.715696,121.852814,131.544539,137.881151,I,Above,Gable,0,5701,,33.26628102,0,1.2,,,,1,1,,0.35,nav,1,1961,2,, 17586,NJBF000057637,21 W KIRKLIN AVE,Linwood,NJ,39.33092355,-74.58333035,RES1,3001,,16,NE,1924,1924,3102,1,1,1550.484213,1550.484213,3507,NO,18.68,32.38,1,0.07,6106,111.676535,121.819485,131.512446,137.841071,I,Above,Gable,0,5701,,25.52974309,0,1.1,,,,1,1,,0.03,nav,1,1924,1,, 17587,NJBF000067993,112 CAROL RD,Linwood,NJ,39.3552625,-74.556391,RES1,3001,,16,NE,1970,1970,3102,2,1,1816.26992,1816.26992,3507,NO,29.86,37.07,1,-0.61,6106,111.873022,122.010249,131.687426,138.042457,I,Above,Gable,0,5701,,33.46495767,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 17588,NJBF000068069,507 W WILSON AVE,Linwood,NJ,39.35553225,-74.57607992,RES1,3001,,16,NE,1965,1965,3101,1,1,3561.161881,3561.161881,3507,NO,11.18,19.32,1,-0.3,6112,111.430493,121.665311,131.350013,137.631033,I,Above,Gable,0,5701,,15.25381468,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17589,NJBF000068716,555 W BARR AVE,Linwood,NJ,39.35748011,-74.57673213,RES1,3001,,16,NE,1960,1960,3101,1,1,4867.135236,4867.135236,3507,NO,17.4,23.29,1,-0.17,6106,111.388236,121.632881,131.316327,137.588236,I,Above,Gable,0,5701,,20.3440319,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 17590,NJBF000065562,116 COUNTRY CLUB DRIVE,Linwood,NJ,39.34746928,-74.56371098,RES1,3001,,18,NE,1991,1991,3102,2,1,3927.448521,3927.448521,3507,NO,22.28,35.67,1,1.13,6106,111.820803,121.968944,131.652467,138.007336,I,Above,Hip,0,5701,,28.97565464,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 17591,NJBF000067071,1050 BARTLETT DR,Linwood,NJ,39.35194826,-74.57943153,RES1,3001,,17,NE,1980,1980,3101,1,1,3308.40616,3308.40616,3507,NO,17.42,24.76,1,2.41,6112,111.410268,121.646614,131.336174,137.615093,I,Above,Gable,0,5701,,21.09077374,0,0,,,,1,1,,0.35,nav,1,1980,1,, 17592,NJBF000068206,510 W WILSON AVE,Linwood,NJ,39.356004,-74.57605436,RES1,3001,,16,NE,1965,1965,3101,1,1,2423.783521,2423.783521,3507,NO,20.84,35.69,1,1.64,6110,111.424278,121.660622,131.344919,137.624488,I,Above,Gable,0,5701,,28.26259976,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17593,NJBF000066834,1012 BARTLETT AVE,Linwood,NJ,39.3509488,-74.57860725,RES1,3001,,16,NE,1968,1968,3101,1,1,2005.368478,2005.368478,3507,NO,21.4,28.58,1,2.94,6112,111.443443,121.671904,131.36146,137.647081,I,Above,Gable,0,5701,,24.9873742,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 17594,NJBF000065326,117 E DELMAR AVE,Linwood,NJ,39.34675031,-74.56505781,RES1,3001,,19,NE,2008,2008,3102,2,1,3891.755823,3891.755823,3507,NO,23.99,32.95,1,0.93,6106,111.802025,121.953566,131.637843,137.990054,I,Above,Gable,0,5701,,28.47173348,0,1.2,,,,1,1,,0.03,nav,1,2008,2,, 17595,NJBF000064158,223 W BELHAVEN AVE,Linwood,NJ,39.34373937,-74.5818695,RES1,3001,,17,NE,1978,1978,3102,2,1,2398.148198,2398.148198,3505,NO,40.79,50.85,3,4.77,6112,111.488803,121.696259,131.390768,137.68589,I,Above,Gable,0,5701,,45.8194147,0,1.2,,,,1,1,,0.35,nav,1,1978,2,, 17596,NJBF000058507,,Linwood,NJ,39.33243419,-74.59046084,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2326.262981,2326.262981,3507,NO,16.9,25.68,1,-0.19,6106,111.509552,121.679343,131.378341,137.672013,I,Above,Hip,0,5701,,21.28847039,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17597,NJBF000058427,,Linwood,NJ,39.33229208,-74.59025699,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2182.61298,2182.61298,3507,NO,16.89,31.02,1,2.56,6112,111.516039,121.684516,131.383269,137.678275,I,Above,Hip,0,5701,,23.95767755,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17598,NJBF000058308,,Linwood,NJ,39.33207246,-74.59034495,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2175.667339,2175.667339,3507,NO,39.38,45.71,1,1.51,6112,111.518231,121.685613,131.384309,137.679617,I,Above,Gable,0,5701,,42.54244188,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17599,NJBF000058002,,Linwood,NJ,39.3315358,-74.59076229,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2203.499668,2203.499668,3507,NO,17.14,32.12,1,0.46,6112,111.519664,121.684827,131.383535,137.678694,I,Above,Gable,0,5701,,24.62753834,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17600,NJBF000063285,404 W JOSEPH AVE,Linwood,NJ,39.34132234,-74.58272195,RES1,3001,,16,NE,1962,1962,3102,1,1,1825.745635,1825.745635,3505,NO,13.67,25.76,3,-0.21,6112,111.511176,121.709056,131.404397,137.703561,I,Above,Gable,0,5701,,19.71127751,0,0,,,,1,1,,0.35,nav,1,1962,1,, 17601,NJBF000061982,1919 WEST AVE,Linwood,NJ,39.33859213,-74.58446612,RES1,3001,,17,NE,1978,1978,3102,2,1,1828.911423,1828.911423,3505,NO,28.92,38.68,3,-2.36,6106,111.521538,121.710361,131.406827,137.707155,I,Above,Gable,0,5701,,33.80281164,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 17602,NJBF000063994,503 W PATCONG AVE,Linwood,NJ,39.34330054,-74.58395286,COM1,3001,,NaN,ME,1969,0,3401,1,1,2936.060414,2936.060414,3507,NO,17.63,29.14,1,0.61,6110,111.452643,121.665273,131.361451,137.649086,I,Above,Gable,0,NaN,,23.38890211,0,0,,,,1,1,,1,nav,1,1969,1,, 17603,NJBF000060011,212 EAST DRIVE,Linwood,NJ,39.3352372,-74.57186286,RES1,3001,,16,NE,1983,1983,3102,2,1,2603.160781,2603.160781,3507,NO,27.07,32.59,1,0.04,6106,111.837922,121.966682,131.654809,138.016433,I,Above,Gable,0,5701,,29.83336557,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 17604,NJBF000058359,303 W FRANCES AVE,Linwood,NJ,39.33215978,-74.58862928,RES1,3001,,16,NE,1965,1965,3102,1,1,1736.411427,1736.411427,3507,NO,13.33,25.23,1,2.62,6110,111.550156,121.713968,131.411366,137.713841,I,Above,Hip,0,5701,,19.28321247,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17605,NJBF000056944,14 SEAGARDEN DR,Linwood,NJ,39.32960151,-74.57913202,RES1,3001,,18,NE,1986,1986,3102,2,1,3467.952383,3467.952383,3507,NO,30.6,42.68,1,-0.79,6106,111.783523,121.907258,131.596971,137.946579,I,Above,Gable,0,5701,,36.6414102,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 17606,NJBF000058149,112 W KIRKLIN AVE,Linwood,NJ,39.3317937,-74.58413374,RES1,3001,,16,NE,1932,1932,3102,1,2,1972.896164,1972.896164,3507,NO,19.65,32.46,1,1.64,6112,111.645391,121.795407,131.489359,137.812022,I,Above,Gable,0,5701,,26.05626796,0,1.1,,,,1,1,,0.35,nav,1,1932,1,, 17607,NJBF000059316,501 KIRKLIN AVE,Linwood,NJ,39.33399288,-74.59171152,RES1,3001,,17,NE,1979,1979,3102,2,1,2206.568548,2206.568548,3507,NO,23.83,33.5,1,2.48,6106,111.457553,121.63952,131.340392,137.623662,I,Above,Gable,0,5701,,28.66150395,0,1.2,,,,1,1,,0.03,nav,1,1979,2,, 17608,NJBF000059667,504 KIRKLIN AVE,Linwood,NJ,39.33464392,-74.59191534,RES1,3001,,17,NE,1986,1986,3102,2,1,1872.27837,1872.27837,3507,NO,30.82,39.03,1,0.97,6106,111.44204,121.628384,131.329746,137.610055,I,Above,Gable,0,5701,,34.92453828,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 17609,NJBF000066755,1014 BARTLETT AVE,Linwood,NJ,39.35068578,-74.57875686,RES1,3001,,16,NE,1966,1966,3101,1,1,2346.151317,2346.151317,3507,NO,15.47,28.76,1,1.97,6112,111.444237,121.67222,131.362027,137.64788,I,Above,Gable,0,5701,,22.11297737,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 17610,NJBF000061044,3 HENNINGS WAY,Linwood,NJ,39.3369623,-74.59028511,RES1,3001,,17,NE,1979,1979,3102,2,1,2616.791524,2616.791524,3507,NO,36.54,48.62,1,-0.73,6106,111.433041,121.629216,131.330065,137.610245,I,Above,Flat,0,5701,,42.57968239,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 17611,NJBF000064325,,Linwood,NJ,39.34420029,-74.56740284,RES1,3001,,NaN,NE,1969,0,3102,2,1,2801.774958,2801.774958,3507,NO,31.35,43.91,1,1.63,6110,111.789773,121.941491,131.627473,137.978947,I,Above,Gable,0,5701,,37.62746709,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17612,NJBF000066684,1016 BARTLETT AVE,Linwood,NJ,39.35046527,-74.57887823,RES1,3001,,17,NE,1964,1964,3101,2,1,2102.136123,2102.136123,3507,NO,26.85,39.68,1,0.13,6110,111.445025,121.672575,131.362587,137.648654,I,Above,Gable,0,5701,,33.26487648,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 17613,NJBF000056428,1 E ROYAL AVE,Linwood,NJ,39.3284511,-74.58343731,RES1,3001,,17,NE,1985,1985,3102,2,1,2419.211955,2419.211955,3507,NO,34.42,45.46,1,2.05,6112,111.71749,121.846975,131.538512,137.874067,I,Above,Gable,0,5701,,39.93886646,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 17614,NJBF000068418,512 W DAVIS AVE,Linwood,NJ,39.35668291,-74.57573204,RES1,3001,,17,NE,1967,1967,3101,1,1,2678.791489,2678.791489,3507,NO,19.62,24.66,1,2.42,6110,111.421722,121.658813,131.342326,137.620961,I,Above,Gable,0,5701,,22.13995213,0,1.2,,,,1,1,,0.35,nav,1,1967,1,, 17615,NJBF000059973,1812 FRANKLIN BLVD,Linwood,NJ,39.33517514,-74.57355184,RES1,3001,,17,NE,1979,1979,3102,1,1,5993.95783,5993.95783,3507,NO,18.92,32.66,1,2.85,6112,111.803717,121.9382,131.627128,137.982397,I,Above,Hip,0,5701,,25.79101421,0,1.2,,,,1,1,,0.35,nav,1,1979,1,, 17616,NJBF000058909,302 W KIRKLIN AVE,Linwood,NJ,39.33316354,-74.58788618,RES1,3001,,16,NE,1958,1958,3102,2,1,633.0698208,633.0698208,3507,NO,28.25,35.15,1,1.64,6112,111.547083,121.714863,131.412212,137.714781,I,Above,Gable,0,5701,,31.7029305,0,1.2,,,,1,1,,0.35,nav,1,1958,2,, 17617,NJBF000058841,302 W KIRKLIN AVE,Linwood,NJ,39.33304315,-74.58786995,RES1,3001,,16,NE,1958,1958,3102,2,1,1551.58537,1551.58537,3507,NO,27.29,35.48,1,1.16,6112,111.549524,121.716563,131.41384,137.716852,I,Above,Gable,0,5701,,31.38631096,0,1.2,,,,1,1,,0.35,nav,1,1958,2,, 17618,NJBF000059608,507 KIRKLIN AVE,Linwood,NJ,39.3345433,-74.59248379,RES1,3001,,17,NE,1978,1978,3102,2,1,1653.537337,1653.537337,3507,NO,37.78,49.33,1,-0.48,6106,111.432786,121.619825,131.321639,137.599734,I,Above,Gable,0,5701,,43.55878663,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17619,NJBF000057900,22 W KIRKLIN AVE,Linwood,NJ,39.33136,-74.583211,RES1,3001,,16,NE,1946,1946,3102,1,1,1888.901678,1888.901678,3507,NO,14.83,26.34,1,0.02,6106,111.67134,121.816381,131.509496,137.837304,I,Above,Hip,0,5701,,20.58699206,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 17620,NJBF000060594,2119 WEST AVE,Linwood,NJ,39.33625362,-74.59003187,RES1,3001,,16,NE,1930,1930,3102,1,1,1965.454677,1965.454677,3507,NO,15.33,28.82,1,-0.96,6110,111.450474,121.641813,131.342207,137.625751,I,Above,Hip,0,5701,,22.07402915,0,0,,,,1,1,,0.35,nav,1,1930,1,, 17621,NJBF000061780,112 HOLLY LANE,Linwood,NJ,39.33824206,-74.57212106,RES1,3001,,16,NE,1988,1988,3102,2,1,3463.873465,3463.873465,3507,NO,30.76,43.89,1,0.07,6106,111.783362,121.927536,131.616207,137.967878,I,Above,Gable,0,5701,,37.32439537,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 17622,NJBF000070578,4 LAKE DR,Linwood,NJ,39.36767269,-74.57888167,RES1,3001,,18,NE,1960,1960,3101,1,1,3873.001223,3873.001223,3507,NO,16.54,26.66,1,-0.54,6106,111.206283,121.487384,131.160131,137.388978,I,Above,Gable,0,5701,,21.60153137,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 17623,NJBF000070370,10 LAKE DR,Linwood,NJ,39.36686549,-74.57858888,RES1,3001,,17,NE,1964,1964,3101,1,1,4974.567623,4974.567623,3507,NO,13.88,26.4,1,1.59,6106,111.222677,121.500881,131.174598,137.407394,I,Above,Hip,0,5701,,20.14348681,0,1.2,,,,1,1,,0.03,nav,1,1964,1,, 17624,NJBF000060383,2024 NEW ROAD REAR,Linwood,NJ,39.33588504,-74.58656069,RES1,3001,,17,NE,1965,1965,3102,2,1,1888.15264,1888.15264,3507,NO,28.2,38,1,0.12,6112,111.525871,121.705728,131.40316,137.702974,I,Above,Gable,0,5701,,33.10004637,0,0,,,,1,1,,0.35,nav,1,1965,2,, 17625,NJBF000068608,543 W BARR AVE,Linwood,NJ,39.35722929,-74.57595877,RES1,3001,,16,NE,1951,1951,3101,1,1,2789.778297,2789.778297,3507,NO,18.42,26.35,1,1.62,6112,111.408951,121.648966,131.332139,137.608041,I,Above,Gable,0,5701,,22.38487912,0,1.2,,,,1,1,,0.35,nav,1,1951,1,, 17626,NJBF000069898,5 POND LANE,Linwood,NJ,39.36486004,-74.57668601,RES1,3001,,19,NE,1984,1984,3101,2,1,6971.029395,6971.029395,3507,NO,32.08,44.48,1,1.69,6110,111.290608,121.554764,131.229979,137.477395,I,Above,Gable,0,5701,,38.28086275,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 17627,NJBF000068109,509 W WILSON AVE,Linwood,NJ,39.3556693,-74.57636135,RES1,3001,,16,NE,1965,1965,3101,1,1,2644.01557,2644.01557,3507,NO,12.14,24.95,1,-0.84,6112,111.422308,121.658958,131.34373,137.623151,I,Above,Hip,0,5701,,18.54204304,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17628,NJBF000065086,10 FALLING WATER DRIVE,Linwood,NJ,39.34609686,-74.58201565,RES1,3001,,16,NE,2001,2001,3102,2,1,1763.053773,1763.053773,3507,NO,33.39,41.86,1,1.21,6110,111.44718,121.667099,131.361216,137.648177,I,Above,Gable,0,5701,,37.6238274,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17629,NJBF000059344,404 W KIRKLIN AVE,Linwood,NJ,39.33406214,-74.59045567,RES1,3001,,16,NE,1964,1964,3102,1,1,2733.30278,2733.30278,3507,NO,14.09,24.48,1,2.06,6110,111.480805,121.660227,131.360071,137.648664,I,Above,Gable,0,5701,,19.28462519,0,0,,,,1,1,,0.35,nav,1,1964,1,, 17630,NJBF000060807,495 SARA ANN CT,Linwood,NJ,39.33656637,-74.58582166,RES1,3001,,17,NE,1965,1965,3102,2,1,2322.67317,2322.67317,3507,NO,24.15,32,1,0.46,6106,111.528895,121.710502,131.407568,137.70843,I,Above,Gable,0,5701,,28.07245248,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 17631,NJBF000062097,1917 WEST AVE,Linwood,NJ,39.33879094,-74.58405895,RES1,3001,,16,NE,1953,1953,3102,1,1,2024.920146,2024.920146,3505,NO,15.84,27.42,3,1.86,6106,111.526439,121.715074,131.41126,137.712698,I,Above,Gable,0,5701,,21.62868168,0,1.2,,,,1,1,,0.03,nav,1,1953,1,, 17632,NJBF000058528,,Linwood,NJ,39.33247097,-74.59227032,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1678.403082,1678.403082,3507,NO,39.36,50.37,1,1.96,6112,111.473862,121.647942,131.348457,137.634059,I,Above,Gable,0,5701,,44.86577241,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17633,NJBF000058620,,Linwood,NJ,39.3326295,-74.5921255,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1713.434066,1713.434066,3507,NO,33.42,47.63,1,2.72,6112,111.473822,121.648541,131.349026,137.634769,I,Above,Gable,0,5701,,40.52682204,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17634,NJBF000058760,,Linwood,NJ,39.3328825,-74.591504,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1868.758666,1868.758666,3507,NO,12.23,21.95,1,0.45,6106,111.481345,121.656189,131.356296,137.643988,I,Above,Gable,0,5701,,17.08941809,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17635,NJBF000058570,,Linwood,NJ,39.3325335,-74.591366,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1978.377967,1978.377967,3507,NO,11.3,23.58,1,-0.97,6106,111.490228,121.662678,131.362473,137.651868,I,Above,Gable,0,5701,,17.43950201,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17636,NJBF000058435,,Linwood,NJ,39.33230702,-74.59177434,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2077.080113,2077.080113,3507,NO,17.91,26.77,1,1,6112,111.48636,121.658371,131.358372,137.64668,I,Above,Gable,0,5701,,22.34246832,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17637,NJBF000063615,420 W HAMILTON AVE,Linwood,NJ,39.342204,-74.5826555,RES1,3001,,17,NE,1970,1970,3102,1,1,2140.548052,2140.548052,3505,NO,21.98,28.47,3,3.65,6106,111.49782,121.700126,131.395388,137.692045,I,Above,Hip,0,5701,,25.22088573,0,0,,,,1,1,,0.03,nav,1,1970,1,, 17638,NJBF000062718,307 W KIE-TRO DR,Linwood,NJ,39.3400801,-74.5828777,RES1,3001,,17,NE,1970,1970,3102,2,1,2716.401124,2716.401124,3505,NO,34.32,42.76,3,-0.54,6106,111.528807,121.720593,131.416021,137.71843,I,Above,Gable,0,5701,,38.54144331,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 17639,NJBF000062526,301 W KIE-TRO DR,Linwood,NJ,39.33963723,-74.58184308,RES1,3001,,16,NE,1972,1972,3102,2,1,3294.055402,3294.055402,3505,NO,21.24,34.11,3,-2.46,6110,111.557568,121.743528,131.438169,137.746325,I,Above,Gable,0,5701,,27.67307491,0,1.2,,,,1,1,,0.35,nav,1,1972,2,, 17640,NJBF000061878,110 HOLLY LANE,Linwood,NJ,39.33840427,-74.57248188,RES1,3001,,18,NE,1989,1989,3102,2,1,3264.496109,3264.496109,3507,NO,30.64,45.52,1,1.85,6112,111.773123,121.919426,131.608287,137.958067,I,Above,Gable,0,5701,,38.08041162,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 17641,NJBF000061837,217 W FOREST DR,Linwood,NJ,39.33834596,-74.58183186,RES1,3001,,16,NE,1970,1970,3102,2,1,2426.389215,2426.389215,3505,NO,36.23,41.81,3,7.1,6112,111.579538,121.758584,131.453078,137.765295,I,Above,Hip,0,5701,,39.01982562,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 17642,NJBF000061181,225 W SEAVIEW AVE,Linwood,NJ,39.33720315,-74.58351098,RES1,3001,,17,NE,1962,1962,3102,2,1,4068.979462,4068.979462,3507,NO,28.02,39.56,1,0.91,6106,111.564665,121.742875,131.438366,137.747074,I,Above,Hip,0,5701,,33.79204251,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 17643,NJBF000061891,206 E PATCONG AVENUE,Linwood,NJ,39.33842713,-74.56943745,RES1,3001,,18,NE,2006,2006,3102,2,1,3288.441165,3288.441165,3507,NO,29.33,38.76,1,0.33,6106,111.837117,121.971896,131.659332,138.020751,I,Above,Gable,0,5701,,34.04552743,0,1.2,,,,1,1,,0.03,nav,1,2006,2,, 17644,NJBF000059097,404 W FRANCES AVE,Linwood,NJ,39.33354182,-74.59103273,RES1,3001,,16,NE,1963,1963,3102,1,1,2401.885865,2401.885865,3507,NO,18.88,25.82,1,-0.55,6110,111.478764,121.656464,131.356532,137.644222,I,Above,Gable,0,5701,,22.35211581,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17645,NJBF000059908,207 EAST DR,Linwood,NJ,39.33506375,-74.57251712,RES1,3001,,17,NE,1964,1964,3102,2,1,2499.14526,2499.14526,3507,NO,30.42,39.05,1,0.97,6106,111.827117,121.957379,131.645776,138.005389,I,Above,Gable,0,5701,,34.73635074,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 17646,NJBF000059768,500 DUSTY LANE,Linwood,NJ,39.33481493,-74.59047595,RES1,3001,,18,NE,1997,1997,3102,2,1,2690.07277,2690.07277,3507,NO,26.68,36.43,1,-0.63,6112,111.467103,121.651038,131.351243,137.637377,I,Above,Gable,0,5701,,31.55474764,0,1.2,,,,1,1,,0.35,nav,1,1997,2,, 17647,NJBF000062139,200 E PATCONG AVENUE,Linwood,NJ,39.3388758,-74.57114024,RES1,3001,,18,NE,2003,2003,3102,2,1,2869.750285,2869.750285,3507,NO,28.55,38.82,1,1.69,6112,111.793811,121.937242,131.62547,137.979023,I,Above,Hip,0,5701,,33.68593332,0,1.2,,,,1,1,,0.35,nav,1,2003,2,, 17648,NJBF000058969,315 W KIRKLIN AVE,Linwood,NJ,39.33328434,-74.58953206,RES1,3001,,16,NE,1961,1961,3102,1,1,1600.769723,1600.769723,3507,NO,16.05,24.57,1,0.68,6112,111.512632,121.685225,131.383929,137.679,I,Above,Gable,0,5701,,20.31069611,0,1.1,,,,1,1,,0.35,nav,1,1961,1,, 17649,NJBF000059687,503 DUSTY LANE,Linwood,NJ,39.33468424,-74.59115267,RES1,3001,,17,NE,1995,1995,3102,2,1,1764.272216,1764.272216,3507,NO,25.9,36.46,1,-0.16,6112,111.456179,121.640971,131.341693,137.625253,I,Above,Gable,0,5701,,31.18045712,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 17650,NJBF000059938,2149 WEST AVENUE,Linwood,NJ,39.3351106,-74.59293381,RES1,3001,,17,NE,1994,1994,3102,2,1,2095.120288,2095.120288,3507,NO,24.09,33.81,1,1.9,6106,111.413948,121.605443,131.307924,137.582199,I,Above,Hip,0,5701,,28.9475338,0,0,,,,1,1,,0.03,nav,1,1994,2,, 17651,NJBF000059019,2209 BRIGHTON DR,Linwood,NJ,39.33338016,-74.59189827,RES1,3001,,17,NE,1965,1965,3102,2,1,1712.84015,1712.84015,3507,NO,30.92,39.28,1,2.41,6106,111.464848,121.643562,131.344275,137.628657,I,Above,Gable,0,5701,,35.10279668,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 17652,NJBF000059543,,Linwood,NJ,39.33443155,-74.58695679,RES1,3001,,NaN,NE,1969,0,3102,2,1,11962.2186,11962.2186,3507,NO,34.6,46.14,1,0.87,6112,111.543269,121.715912,131.413116,137.715747,I,Above,Hip,0,5701,,40.36639259,0,0,,,,1,1,,1,nav,1,1969,2,, 17653,NJBF000058898,304 W KIRKLIN AVE,Linwood,NJ,39.333139,-74.5881075,RES1,3001,,16,NE,1957,1957,3102,1,1,1197.113763,1197.113763,3507,NO,10,15.81,1,-0.53,6112,111.543149,121.71135,131.408858,137.710548,I,Above,Gable,0,5701,,12.90410358,0,0,,,,1,1,,0.35,nav,1,1957,1,, 17654,NJBF000060182,206 EAST DR,Linwood,NJ,39.33554794,-74.57264863,RES1,3001,,17,NE,1963,1963,3102,2,1,1871.42434,1871.42434,3507,NO,25.56,39.99,1,-0.43,6112,111.816379,121.949486,131.63805,137.995722,I,Above,Gable,0,5701,,32.77559464,0,1.2,,,,1,1,,0.35,nav,1,1963,2,, 17655,NJBF000057743,,Linwood,NJ,39.33108558,-74.58993348,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2509.315687,2509.315687,3507,NO,14.6,25.37,1,0.12,6112,111.543734,121.704355,131.402128,137.702291,I,Above,Gable,0,5701,,19.98136788,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17656,NJBF000057627,,Linwood,NJ,39.33089935,-74.58956098,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2665.703722,2665.703722,3507,NO,30.31,39.82,1,0.09,6112,111.554278,121.712943,131.41031,137.712661,I,Above,Hip,0,5701,,35.06591251,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17657,NJBF000057740,,Linwood,NJ,39.3310777,-74.58941352,RES3A,3001,,NaN,NE,1969,0,3301,2,1,2699.630079,2699.630079,3507,NO,38.82,53.62,1,0.1,6112,111.553963,121.713335,131.410701,137.713134,I,Above,Hip,0,5701,,46.21715671,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17658,NJBF000057952,,Linwood,NJ,39.33143369,-74.58911161,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2665.211925,2665.211925,3507,NO,15.65,21.8,1,-0.43,6112,111.553542,121.714285,131.411636,137.714273,I,Above,Hip,0,5701,,18.7246784,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17659,NJBF000058079,,Linwood,NJ,39.33166929,-74.58903991,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2521.704472,2521.704472,3507,NO,19.04,30.65,1,2.04,6112,111.550791,121.712734,131.410169,137.71239,I,Above,Gable,0,5701,,24.84238373,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17660,NJBF000061758,208 E PATCONG AVENUE,Linwood,NJ,39.33819715,-74.56920415,RES1,3001,,20,NE,2001,2001,3102,2,1,3605.285319,3605.285319,3507,NO,36.8,45.05,1,1.96,6106,111.845755,121.978574,131.665898,138.02889,I,Above,Gable,0,5701,,40.92214693,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17661,NJBF000058030,2143 SHORE ROAD,Linwood,NJ,39.33157967,-74.58210138,RES1,3001,,16,NE,1927,1927,3102,2,1,1443.387479,1443.387479,3507,NO,23.81,38.46,1,2.13,6110,111.689748,121.832861,131.525372,137.857099,I,Above,Gable,0,5701,,31.1343304,0,0,,,,1,1,,0.35,nav,1,1927,2,, 17662,NJBF000057837,20 W KIRKLIN AVE,Linwood,NJ,39.3312519,-74.58306486,RES1,3001,,16,NE,1959,1959,3102,1,1,1319.524687,1319.524687,3507,NO,15.16,29.76,1,2.14,6106,111.676129,121.820164,131.513127,137.841863,I,Above,Gable,0,5701,,22.46224328,0,0,,,,1,1,,0.03,nav,1,1959,1,, 17663,NJBF000057865,6 HOLLYCROFT LANE,Linwood,NJ,39.33128921,-74.57656133,RES1,3001,,18,NE,2000,2000,3102,2,1,4032.588848,4032.588848,3507,NO,33.73,41.44,1,1.2,6106,111.806857,121.931637,131.620804,137.975695,I,Above,Hip,0,5701,,37.58747798,0,1.2,,,,1,1,,0.03,nav,1,2000,2,, 17664,NJBF000057920,412 W OCEAN HEIGHTS AVE,Linwood,NJ,39.33138221,-74.5905988,RES1,3001,,16,NE,1900,1900,3102,2,1,943.2114777,943.2114777,3505,NO,29.12,40.65,3,6.24,6112,111.525559,121.689444,131.387926,137.684275,I,Above,Gable,0,5701,,34.88704434,0,0,,,,1,1,,0.35,nav,1,1900,2,, 17665,NJBF000057852,105 W KIRKLIN AVE,Linwood,NJ,39.33126985,-74.58403303,RES1,3001,,16,NE,1930,1930,3102,1,1,2076.851215,2076.851215,3507,NO,13.36,21.66,1,-0.25,6110,111.656517,121.803326,131.496936,137.821603,I,Above,Gable,0,5701,,17.51112544,0,1.1,,,,1,1,,0.35,nav,1,1930,1,, 17666,NJBF000059387,210 E SEAVIEW AVE,Linwood,NJ,39.33415135,-74.57382391,RES1,3001,,NaN,NE,1969,0,3102,1,1,2119.094763,2119.094763,3507,NO,18.5,33.28,1,-0.58,6106,111.815066,121.945398,131.634202,137.991434,I,Above,Flat,0,5701,,25.89049257,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17667,NJBF000057706,312 BEECH AVE,Linwood,NJ,39.33102314,-74.58838198,RES1,3001,,16,NE,1965,1965,3102,1,1,3029.232587,3029.232587,3507,NO,10.56,20.64,1,-0.63,6112,111.57506,121.731661,131.428211,137.735255,I,Above,Gable,0,5701,,15.60136398,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17668,NJBF000057753,29 W KIRKLIN AVE,Linwood,NJ,39.33110847,-74.58368116,RES1,3001,,16,NE,1924,1924,3102,1,1,1506.352781,1506.352781,3507,NO,18.09,31.48,1,1.32,6106,111.666343,121.811284,131.504574,137.831192,I,Above,Gable,0,5701,,24.7819853,0,1.1,,,,1,1,,0.03,nav,1,1924,1,, 17669,NJBF000057400,7 W FRANCES AVE,Linwood,NJ,39.33050606,-74.58417805,RES1,3001,,15,NE,1955,1955,3102,1,1,1259.893047,1259.893047,3507,NO,17.4,27.02,1,1.31,6110,111.666943,121.80987,131.503154,137.829518,I,Above,Gable,0,5701,,22.21270585,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 17670,NJBF000057138,2249 SHORE ROAD,Linwood,NJ,39.33000215,-74.58410361,REL1,3001,,NaN,ME,1969,0,3401,3,1,1287.666591,1287.666591,3507,NO,55.68,69.04,1,2.32,6112,111.677203,121.817111,131.51005,137.838234,I,Above,Gable,0,NaN,,62.36090301,0,0,,,,1,1,,0.35,nav,1,1969,3,, 17671,NJBF000057481,4 W FRANCES AVE,Linwood,NJ,39.33063808,-74.58352071,RES1,3001,,15,NE,1953,1953,3102,1,1,1220.181206,1220.181206,3507,NO,15.73,30.2,1,2.77,6110,111.677702,121.819587,131.512514,137.841207,I,Above,Gable,0,5701,,22.96486077,0,1.1,,,,1,1,,0.35,nav,1,1953,1,, 17672,NJBF000064332,250 W SCHOOLHOUSE DR,Linwood,NJ,39.3442271,-74.58104432,RES1,3001,,17,NE,1974,1974,3102,2,1,2508.394116,2508.394116,3507,NO,33.41,42.34,1,2.56,6106,111.498094,121.704976,131.398792,137.695841,I,Above,Gable,0,5701,,37.87438065,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 17673,NJBF000064417,214 W SCHOOLHOUSE DR,Linwood,NJ,39.34443755,-74.57912214,RES1,3001,,17,NE,1968,1968,3102,2,1,2865.043738,2865.043738,3507,NO,37.04,48.58,1,-0.19,6112,111.535161,121.735795,131.428199,137.732604,I,Above,Gable,0,5701,,42.81252244,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 17674,NJBF000057533,17 W KIRKLIN AVE,Linwood,NJ,39.33073656,-74.58286152,RES1,3001,,16,NE,1983,1983,3102,1,1,1547.162836,1547.162836,3507,NO,19.2,31.15,1,0.76,6106,111.689116,121.829733,131.522291,137.853408,I,Above,Flat,0,5701,,25.17531446,0,1.1,,,,1,1,,0.03,nav,1,1983,1,, 17675,NJBF000057838,2155 SHORE ROAD,Linwood,NJ,39.331252,-74.58240163,RES1,3001,,16,NE,1834,1834,3102,2,1,1623.056684,1623.056684,3507,NO,21.93,35.61,1,0.1,6106,111.689387,121.831555,131.524092,137.855563,I,Above,Gable,0,5701,,28.76785555,0,1.1,,,,1,1,,0.03,nav,1,1834,2,, 17676,NJBF000063324,406 W JOSEPH AVE,Linwood,NJ,39.34141262,-74.58295658,RES1,3001,,16,NE,1962,1962,3102,1,1,1657.80127,1657.80127,3505,NO,21.81,34.6,3,3.21,6112,111.504796,121.703962,131.39948,137.69736,I,Above,Gable,0,5701,,28.20708021,0,0,,,,1,1,,0.35,nav,1,1962,1,, 17677,NJBF000058419,307 W FRANCES AVE,Linwood,NJ,39.33226955,-74.58893744,RES1,3001,,17,NE,1965,1965,3102,2,1,1744.750201,1744.750201,3507,NO,31.54,40.45,1,2.55,6110,111.542184,121.707389,131.405086,137.705892,I,Above,Hip,0,5701,,35.99463638,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 17678,NJBF000057921,2319 GRAMMERCY AVE,Linwood,NJ,39.33138261,-74.58873566,RES1,3001,,16,NE,1964,1964,3102,1,1,2833.535541,2833.535541,3507,NO,18.34,26.95,1,-0.34,6110,111.561783,121.721329,131.418363,137.722778,I,Above,Gable,0,5701,,22.64569532,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 17679,NJBF000056466,8 E ROYAL AVE,Linwood,NJ,39.32853268,-74.58252367,RES1,3001,,18,NE,1985,1985,3102,2,1,3395.696099,3395.696099,3507,NO,34.92,49.61,1,1.25,6110,111.734158,121.861662,131.552695,137.891744,I,Above,Gable,0,5701,,42.26721826,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 17680,NJBF000062980,316 KIE TRO DR,Linwood,NJ,39.3406384,-74.58362948,RES1,3001,,17,NE,1978,1978,3102,2,1,2646.197839,2646.197839,3505,NO,33.35,39.03,3,-2.06,6106,111.503963,121.701246,131.397267,137.694735,I,Above,Gable,0,5701,,36.18890618,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 17681,NJBF000062601,303 W KIE-TRO DR,Linwood,NJ,39.33978497,-74.58216125,RES1,3001,,16,NE,1971,1971,3102,2,1,3044.419681,3044.419681,3505,NO,32.06,46.71,3,3.2,6110,111.548529,121.736344,131.431225,137.737583,I,Above,Gable,0,5701,,39.38457262,0,1.2,,,,1,1,,0.35,nav,1,1971,2,, 17682,NJBF000057885,109 W KIRKLIN AVE,Linwood,NJ,39.33132826,-74.58419571,RES1,3001,,16,NE,1930,1930,3102,1,2,2104.971423,2104.971423,3507,NO,14.14,23.41,1,2.03,6112,111.652264,121.799842,131.493593,137.817406,I,Above,Gable,0,5701,,18.77248111,0,1.1,,,,1,1,,0.35,nav,1,1930,1,, 17683,NJBF000062073,221 W FOREST DR,Linwood,NJ,39.3387511,-74.58249415,RES1,3001,,16,NE,1968,1968,3102,2,1,1476.318626,1476.318626,3505,NO,38.71,47.35,3,7.4,6106,111.559117,121.742502,131.437523,137.745706,I,Above,Gable,0,5701,,43.03159808,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 17684,NJBF000057454,9 W FRANCES AVE,Linwood,NJ,39.33059988,-74.58437193,RES1,3001,,16,NE,1956,1956,3102,1,1,1478.599567,1478.599567,3507,NO,12.2,24.85,1,1,6110,111.661454,121.805428,131.498894,137.824168,I,Above,Gable,0,5701,,18.52459137,0,0,,,,1,1,,0.35,nav,1,1956,1,, 17685,NJBF000056406,10 E ROYAL AVE,Linwood,NJ,39.32840414,-74.58220738,RES1,3001,,17,NE,1986,1986,3102,2,1,2629.995244,2629.995244,3507,NO,25.52,31.48,1,0.7,6110,111.7427,121.868636,131.559395,137.900115,I,Above,Gable,0,5701,,28.50165336,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 17686,NJBF000069744,6 MILL LANE,Linwood,NJ,39.36359135,-74.57558808,RES1,3001,,19,NE,1982,1982,3101,2,1,3908.193941,3908.193941,3507,NO,30.13,44.59,1,-0.54,6112,111.331529,121.587147,131.263296,137.519455,I,Above,Gable,0,5701,,37.35899603,0,1.2,,,,1,1,,0.03,nav,1,1982,2,, 17687,NJBF000056259,23 E ROYAL AVE,Linwood,NJ,39.3280796,-74.58289127,RES1,3001,,17,NE,1960,1960,3102,2,1,1861.679435,1861.679435,3507,NO,32.75,46.34,1,-0.75,6112,111.734775,121.860756,131.551711,137.890597,I,Above,Gable,0,5701,,39.54294,0,0,,,,1,1,,0.35,nav,1,1960,2,, 17688,NJBF000070053,11 POND LANE,Linwood,NJ,39.36563028,-74.57760159,RES1,3001,,20,NE,2006,2006,3101,2,1,4782.557472,4782.557472,3507,NO,23.24,30.18,1,1.24,6106,111.260242,121.530853,131.205631,137.446685,I,Above,Hip,0,5701,,26.71114125,0,1.2,,,,1,1,,0.03,nav,1,2006,2,, 17689,NJBF000069016,2 SANDY COURT,Linwood,NJ,39.35840285,-74.57517704,RES1,3001,,16,NE,1977,1977,3101,1,1,3212.606899,3212.606899,3507,NO,18.95,31.95,1,-0.23,6112,111.409946,121.649792,131.331383,137.606562,I,Above,Gable,0,5701,,25.45290697,0,1.1,,,,1,1,,0.35,nav,1,1977,1,, 17690,NJBF000069409,401 CEDARBROOK LANE W,Linwood,NJ,39.36018195,-74.57596368,RES1,3001,,18,NE,1977,1977,3101,2,1,3383.256029,3383.256029,3507,NO,32.99,44.78,1,2.72,6106,111.367983,121.617038,131.297323,137.563379,I,Above,Gable,0,5701,,38.88674384,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 17691,NJBF000061983,204 E PATCONG AVENUE,Linwood,NJ,39.33859251,-74.570497,RES1,3001,,19,NE,2003,2003,3102,2,1,1925.681067,1925.681067,3507,NO,35.92,42.96,1,1.62,6106,111.811984,121.951626,131.639543,137.99642,I,Above,Hip,0,5701,,39.44041918,0,1.2,,,,1,1,,0.03,nav,1,2003,2,, 17692,NJBF000056863,15 SEAGARDEN DRIVE,Linwood,NJ,39.32941709,-74.57996266,RES1,3001,,17,NE,1986,1986,3102,2,1,3205.252366,3205.252366,3507,NO,24.76,37.87,1,0.39,6106,111.769989,121.895159,131.585233,137.932052,I,Above,Gable,0,5701,,31.31489734,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 17693,NJBF000062535,1801 NEW ROAD,Linwood,NJ,39.33965908,-74.58557572,COM7,3001,,NaN,ME,1969,0,3401,1,1,11704.98341,11704.98341,3507,NO,14.18,24.14,1,2.11,6106,111.480748,121.678948,131.376424,137.668637,I,Above,Gable,0,NaN,,19.16184632,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17694,NJBF000064370,221 LANDING LANE,Linwood,NJ,39.34432133,-74.56533123,RES1,3001,,17,NE,1946,1946,3102,2,1,2683.882663,2683.882663,3507,NO,36.46,44.17,1,0,6112,111.832826,121.976116,131.661254,138.020076,I,Above,Gable,0,5701,,40.31358115,0,0,,,,1,1,,0.35,nav,1,1946,2,, 17695,NJBF000064404,221 LANDING LANE,Linwood,NJ,39.34440786,-74.56512762,RES1,3001,,17,NE,1946,1946,3102,2,1,546.2957772,546.2957772,3507,NO,21.26,31.5,1,-0.42,6112,111.835907,121.978663,131.663704,138.023004,I,Above,Gable,0,5701,,26.37526407,0,0,,,,1,1,,0.35,nav,1,1946,2,, 17696,NJBF000060938,2101 WEST AVE,Linwood,NJ,39.33679086,-74.58990702,RES1,3001,,16,NE,1985,1985,3102,1,1,1266.784274,1266.784274,3507,NO,10.65,16.86,1,-0.07,6106,111.443513,121.637696,131.338163,137.620556,I,Above,Gable,0,5701,,13.75232185,0,0,,,,1,1,,0.03,nav,1,1985,1,, 17697,NJBF000057006,5 SEAGARDEN DR,Linwood,NJ,39.32972151,-74.58180391,RES1,3001,,17,NE,1985,1985,3102,2,1,2991.747928,2991.747928,3507,NO,29.35,40.88,1,0.86,6106,111.727842,121.859914,131.551242,137.889715,I,Above,Gable,0,5701,,35.11431671,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 17698,NJBF000068114,724 RIVER DRIVE,Linwood,NJ,39.35569155,-74.57717319,RES1,3001,,16,NE,1962,1962,3101,1,1,1937.313216,1937.313216,3507,NO,13.86,24.44,1,0.95,6110,111.404041,121.644664,131.329955,137.605967,I,Above,Gable,0,5701,,19.1497466,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17699,NJBF000059245,580 OCEAN HEIGHTS AVE,Linwood,NJ,39.33384797,-74.59386346,RES1,3001,,16,NE,1920,1920,3102,1,1,1560.634076,1560.634076,3505,NO,24.9,33.53,3,7.92,6106,111.418579,121.60441,131.307095,137.581231,I,Above,Gable,0,5701,,29.21440892,0,0,,,,1,1,,0.03,nav,1,1920,1,, 17700,NJBF000058707,305 W KIRKLIN AVE,Linwood,NJ,39.33278251,-74.58834377,RES1,3001,,16,NE,1960,1960,3102,1,1,2000.467296,2000.467296,3507,NO,17.61,22.9,1,2.8,6112,111.544768,121.711498,131.409009,137.710785,I,Above,Gable,0,5701,,20.25263922,0,0,,,,1,1,,0.35,nav,1,1960,1,, 17701,NJBF000062902,223 E BERKSHIRE AVE,Linwood,NJ,39.34046256,-74.56752175,RES1,3001,,17,NE,2002,2002,3102,2,1,3436.162204,3436.162204,3507,NO,32.32,39.38,1,1.47,6106,111.845499,121.981814,131.668421,138.030932,I,Above,Hip,0,5701,,35.85218313,0,1.2,,,,1,1,,0.03,nav,1,2002,2,, 17702,NJBF000064676,204 LANDING LANE,Linwood,NJ,39.34505239,-74.56527247,RES1,3001,,18,NE,1974,1974,3102,2,1,2158.384799,2158.384799,3507,NO,25.69,32.07,1,1.86,6112,111.822975,121.968908,131.653824,138.010585,I,Above,Gable,0,5701,,28.88112854,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 17703,NJBF000060212,517 GARFIELD AVE,Linwood,NJ,39.3355859,-74.59049358,RES1,3001,,17,NE,1999,1999,3102,2,1,2579.775102,2579.775102,3507,NO,32.15,40.77,1,2.74,6112,111.453141,121.641694,131.342235,137.625854,I,Above,Hip,0,5701,,36.4638909,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 17704,NJBF000057040,1 SEAGARDEN DR,Linwood,NJ,39.32978704,-74.58288366,RES1,3001,,17,NE,1987,1987,3102,2,1,3504.466911,3504.466911,3507,NO,29.62,38.44,1,0.86,6106,111.70518,121.840598,131.53263,137.86649,I,Above,Gable,0,5701,,34.02918332,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 17705,NJBF000070001,,Linwood,NJ,39.36539902,-74.57745943,RES1,3001,,NaN,NE,1969,0,3101,1,1,914.8014402,914.8014402,3507,NO,17.81,29.46,1,0.65,6106,111.266356,121.535751,131.210746,137.453169,I,Above,Gable,0,5701,,23.63377272,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17706,NJBF000069981,,Linwood,NJ,39.36530339,-74.57728087,RES1,3001,,NaN,NE,1985,0,3101,1,1,3155.203464,3155.203464,3507,NO,15.34,29.9,1,1.61,6106,111.271587,121.539831,131.21484,137.45832,I,Above,Gable,0,5701,,22.6181186,0,0,,,,1,1,,0.03,nav,1,1985,1,, 17707,NJBF000060419,512 W GARFIELD AVENUE,Linwood,NJ,39.33593244,-74.5897099,RES1,3001,,17,NE,1999,1999,3102,2,1,2142.491547,2142.491547,3507,NO,34.79,40.68,1,1.49,6112,111.462486,121.651099,131.351104,137.637083,I,Above,Gable,0,5701,,37.73826946,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 17708,NJBF000059813,506 KIRKLIN AVE,Linwood,NJ,39.33489246,-74.59224825,RES1,3001,,17,NE,1988,1988,3102,1,1,3044.329673,3044.329673,3507,NO,19.17,31.14,1,2.33,6106,111.431159,121.619765,131.321535,137.599574,I,Above,Gable,0,5701,,25.15403881,0,1.2,,,,1,1,,0.03,nav,1,1988,1,, 17709,NJBF000062768,312 W FOREST DRIVE,Linwood,NJ,39.34018692,-74.58426001,RES1,3001,,17,NE,2001,2001,3102,2,1,1573.527745,1573.527745,3505,NO,40.4,46.93,3,6.05,6106,111.498633,121.695546,131.39203,137.688226,I,Above,Gable,0,5701,,43.66609722,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 17710,NJBF000059070,401 W KIRKLIN AVE,Linwood,NJ,39.33348721,-74.59020087,RES1,3001,,16,NE,1965,1965,3102,1,1,2262.768827,2262.768827,3507,NO,12.51,24.29,1,0.44,6106,111.495961,121.671367,131.370717,137.662232,I,Above,Hip,0,5701,,18.40206453,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 17711,NJBF000068126,2 GAIL AVE,Linwood,NJ,39.35573623,-74.5547734,RES1,3001,,16,NE,1958,1958,3102,1,1,3555.021271,3555.021271,3507,NO,15.91,23.14,1,1.48,6110,111.902972,122.033298,131.709907,138.068705,I,Above,Hip,0,5701,,19.52187541,0,1.2,,,,1,1,,0.35,nav,1,1958,1,, 17712,NJBF000060104,208 EAST DR,Linwood,NJ,39.33541184,-74.57231316,RES1,3001,,17,NE,1964,1964,3102,1,1,1471.902149,1471.902149,3507,NO,14.05,27.91,1,0.34,6110,111.825638,121.956872,131.645247,138.004621,I,Above,Gable,0,5701,,20.98115556,0,0,,,,1,1,,0.35,nav,1,1964,1,, 17713,NJBF000056815,13 SEAGARDEN DR,Linwood,NJ,39.32931766,-74.58037335,RES1,3001,,17,NE,1984,1984,3102,2,1,3406.464104,3406.464104,3507,NO,25.2,33.88,1,-0.14,6106,111.763469,121.889284,131.579535,137.924995,I,Above,Hip,0,5701,,29.53960448,0,1.2,,,,1,1,,0.03,nav,1,1984,2,, 17714,NJBF000059856,502 DUSTY LANE,Linwood,NJ,39.33497156,-74.59081144,RES1,3001,,17,NE,1996,1996,3102,2,1,2796.838096,2796.838096,3507,NO,23.04,28.06,1,1.26,6110,111.457768,121.643453,131.34401,137.628171,I,Above,Gable,0,5701,,25.55169057,0,1.2,,,,1,1,,0.35,nav,1,1996,2,, 17715,NJBF000062712,,Linwood,NJ,39.3400736,-74.56913592,RES1,3001,,NaN,NE,1969,0,3102,2,1,3675.032754,3675.032754,3507,NO,24.46,38.02,1,0.2,6112,111.817179,121.958259,131.645567,138.003164,I,Above,Gable,0,5701,,31.23958421,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17716,NJBF000059214,2205 BRIGHTON DR,Linwood,NJ,39.3337845,-74.591436,RES1,3001,,16,NE,1964,1964,3102,1,1,2109.985642,2109.985642,3507,NO,13.56,20.84,1,1.77,6106,111.466612,121.646697,131.347229,137.632377,I,Above,Gable,0,5701,,17.19708183,0,0,,,,1,1,,0.03,nav,1,1964,1,, 17717,NJBF000060872,2047 WEST AVE,Linwood,NJ,39.33668275,-74.5889975,RES1,3001,,16,NE,1905,1905,3102,2,1,2318.851453,2318.851453,3507,NO,37.55,45.53,1,-0.2,6110,111.463414,121.654561,131.354221,137.640953,I,Above,Gable,0,5701,,41.53871423,0,0,,,,1,1,,0.35,nav,1,1905,2,, 17718,NJBF000057539,,Linwood,NJ,39.330748,-74.583158,RES1,3001,,NaN,NE,1969,0,3102,2,1,572.9782506,572.9782506,3507,NO,26.55,34.34,1,1.28,6106,111.683021,121.824519,131.517273,137.847136,I,Above,Gable,0,5701,,30.44550659,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17719,NJBF000058793,534 W OCEAN HTGS AVE,Linwood,NJ,39.33294818,-74.592977,RES1,3001,,15,NE,1960,1960,3102,1,1,2073.711625,2073.711625,3507,NO,18.42,32.72,1,2.65,6110,111.451721,121.630201,131.3316,137.612558,I,Above,Gable,0,5701,,25.56733962,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 17720,NJBF000069682,12 MILL LANE,Linwood,NJ,39.36281724,-74.57489113,RES1,3001,,20,NE,1983,1983,3101,2,1,4150.669044,4150.669044,3507,NO,41.06,49.55,1,2.28,6112,111.357222,121.607412,131.284081,137.545658,I,Above,Gable,0,5701,,45.30394356,0,1.2,,,,1,1,,0.35,nav,1,1983,2,, 17721,NJBF000060429,206 E HELENA DR,Linwood,NJ,39.3359546,-74.57181708,RES1,3001,,17,NE,1973,1973,3102,1,1,1982.966539,1982.966539,3507,NO,12.95,21.61,1,1.63,6110,111.827089,121.959165,131.64741,138.007089,I,Above,Gable,0,5701,,17.28119872,0,1.1,,,,1,1,,0.35,nav,1,1973,1,, 17722,NJBF000069495,630 CENTRAL AVE,Linwood,NJ,39.36091854,-74.57471774,RES1,3001,,NaN,NE,1969,0,3101,1,1,5101.982025,5101.982025,3507,NO,17.33,24.89,1,-0.41,6112,111.386036,121.630671,131.309402,137.578039,I,Above,Flat,0,5701,,21.11241649,0,0,,,,1,1,,1,nav,1,1969,1,, 17723,NJBF000068276,507 W DAVIS AVE,Linwood,NJ,39.35621187,-74.57576405,RES1,3001,,16,NE,1965,1965,3101,1,1,2129.056475,2129.056475,3507,NO,19.28,28.48,1,0.23,6106,111.427721,121.663377,131.347314,137.627376,I,Above,Gable,0,5701,,23.88095759,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 17724,NJBF000068195,503 W DAVIS AVE,Linwood,NJ,39.35597528,-74.57510405,RES1,3001,,16,NE,1966,1966,3101,1,1,2287.493642,2287.493642,3507,NO,19.83,32.31,1,0.59,6110,111.445728,121.677374,131.361097,137.644619,I,Above,Hip,0,5701,,26.06598086,0,0,,,,1,1,,0.35,nav,1,1966,1,, 17725,NJBF000068479,715 RIVER DRIVE,Linwood,NJ,39.35689745,-74.57640177,RES1,3001,,17,NE,1965,1965,3101,1,1,3823.706502,3823.706502,3507,NO,16.22,29.61,1,1.39,6106,111.403819,121.644903,131.328658,137.603851,I,Above,Gable,0,5701,,22.91452732,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 17726,NJBF000067384,911 BARTLETT AVE,Linwood,NJ,39.35330894,-74.57865332,RES1,3001,,16,NE,1966,1966,3101,1,1,1536.61604,1536.61604,3507,NO,16.36,26.16,1,1.81,6112,111.406648,121.645116,131.333229,137.610948,I,Above,Gable,0,5701,,21.26270107,0,0,,,,1,1,,0.35,nav,1,1966,1,, 17727,NJBF000066979,1007 RICHARD DR,Linwood,NJ,39.35154729,-74.57780014,RES1,3001,,16,NE,1966,1966,3101,1,1,1998.698549,1998.698549,3507,NO,13.79,27.18,1,-0.16,6112,111.45183,121.679254,131.367903,137.654924,I,Above,Gable,0,5701,,20.48742718,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 17728,NJBF000060339,208 E HELENA DR,Linwood,NJ,39.33580557,-74.5714345,RES1,3001,,17,NE,1973,1973,3102,2,1,1773.354483,1773.354483,3507,NO,26.56,40.05,1,-0.23,6106,111.837557,121.967515,131.655555,138.017148,I,Above,Gable,0,5701,,33.30412837,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 17729,NJBF000068339,718 RIVER DRIVE,Linwood,NJ,39.35642007,-74.57639019,RES1,3001,,16,NE,1966,1966,3101,1,1,2350.559588,2350.559588,3507,NO,18.58,28.59,1,2.97,6106,111.410883,121.650288,131.33445,137.611271,I,Above,Gable,0,5701,,23.58326907,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 17730,NJBF000067972,511 W STERLING AVE,Linwood,NJ,39.35521323,-74.57720346,RES1,3001,,16,NE,1962,1962,3101,1,1,2348.6234,2348.6234,3507,NO,15.51,24.31,1,0.74,6112,111.410334,121.649364,131.335061,137.61253,I,Above,Gable,0,5701,,19.90828047,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17731,NJBF000064550,114 E GLENSIDE AVE,Linwood,NJ,39.3447636,-74.56703995,RES1,3001,,17,NE,1959,1959,3102,2,1,2766.735343,2766.735343,3507,NO,34.06,41.87,1,0.25,6106,111.78897,121.941435,131.627122,137.978202,I,Above,Gable,0,5701,,37.96676714,0,0,,,,1,1,,0.03,nav,1,1959,2,, 17732,NJBF000067895,512 W POPLAR AVE,Linwood,NJ,39.35493165,-74.57737074,RES1,3001,,16,NE,1963,1963,3101,2,1,1449.623476,1449.623476,3507,NO,40.65,51.82,1,2.96,6112,111.410734,121.649524,131.335555,137.613258,I,Above,Gable,0,5701,,46.23573278,0,0,,,,1,1,,0.35,nav,1,1963,2,, 17733,NJBF000068023,102 CAROL RD,Linwood,NJ,39.35536631,-74.55507702,RES1,3001,,16,NE,1961,1961,3102,2,1,1969.510324,1969.510324,3507,NO,26.36,35.65,1,1.07,6106,111.901097,122.032043,131.708966,138.068014,I,Above,Gable,0,5701,,31.00730749,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 17734,NJBF000067170,1000 BARTLETT AVE,Linwood,NJ,39.35242258,-74.57766449,RES1,3001,,17,NE,1968,1968,3101,2,1,2191.317942,2191.317942,3507,NO,23.26,36.61,1,2.17,6110,111.441546,121.671952,131.359966,137.644691,I,Above,Gable,0,5701,,29.93595166,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 17735,NJBF000065059,1 ARROWHEAD DRIVE,Linwood,NJ,39.34603237,-74.58095639,RES1,3001,,16,NE,2001,2001,3102,2,1,1839.796876,1839.796876,3507,NO,33.58,48.14,1,-0.26,6106,111.470624,121.686135,131.379469,137.671126,I,Above,Gable,0,5701,,40.85991217,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17736,NJBF000068046,115 CAROL RD,Linwood,NJ,39.35545368,-74.55680293,RES1,3001,,16,NE,1959,1959,3102,1,1,2642.643949,2642.643949,3507,NO,20.02,25.86,1,2.58,6110,111.861218,122.000974,131.678071,138.031078,I,Above,Hip,0,5701,,22.93904371,0,1.2,,,,1,1,,0.35,nav,1,1959,1,, 17737,NJBF000064535,,Linwood,NJ,39.34473255,-74.5683981,RES1,3001,,NaN,NE,1969,0,3102,2,1,3145.710239,3145.710239,3507,NO,31.84,42.42,1,1.83,6112,111.760034,121.918207,131.60448,137.950533,I,Above,Gable,0,5701,,37.13146287,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17738,NJBF000065599,1020 WOODE-LYNNE BLVD,Linwood,NJ,39.34756342,-74.56659908,RES1,3001,,19,NE,2001,2001,3102,2,1,3862.767623,3862.767623,3507,NO,23.31,30.13,1,2.04,6112,111.756161,121.917692,131.602247,137.946158,I,Above,Hip,0,5701,,26.72069368,0,1.2,,,,1,1,,0.35,nav,1,2001,2,, 17739,NJBF000065482,1011 WOODE-LYNNE BLVD,Linwood,NJ,39.34719939,-74.56781068,RES1,3001,,17,NE,1962,1962,3102,1,1,5812.549284,5812.549284,3507,NO,15.52,28.82,1,-0.41,6112,111.735172,121.90071,131.585918,137.926428,I,Above,Hip,0,5701,,22.17270508,0,1.2,,,,1,1,,0.35,nav,1,1962,1,, 17740,NJBF000058537,304 W FRANCES AVE,Linwood,NJ,39.332485,-74.588355,RES1,3001,,17,NE,1965,1965,3102,2,1,1243.172412,1243.172412,3507,NO,37.92,52.02,1,-0.96,6110,111.5498,121.714826,131.412189,137.71484,I,Above,Gable,0,5701,,44.97243252,0,0,,,,1,1,,0.35,nav,1,1965,2,, 17741,NJBF000058630,200 E IONA AVE,Linwood,NJ,39.33264461,-74.57565233,RES1,3001,,17,NE,1956,1955,3102,1,1,4586.377514,4586.377514,3507,NO,15.84,20.94,1,0.34,6112,111.802551,121.931413,131.620657,137.975161,I,Above,Flat,0,5701,,18.38842588,0,1.2,,,,1,1,,0.35,nav,1,1956,1,, 17742,NJBF000058837,2102 GRAMMERCY AVE,Linwood,NJ,39.33303684,-74.58709909,RES1,3001,,16,NE,1960,1960,3102,1,1,1621.796346,1621.796346,3507,NO,13.41,21.3,1,0.37,6112,111.564847,121.729861,131.426549,137.732887,I,Above,Flat,0,5701,,17.35116937,0,0,,,,1,1,,0.35,nav,1,1960,1,, 17743,NJBF000060701,2109 WEST AVE,Linwood,NJ,39.33642357,-74.58955048,RES1,3001,,16,NE,1913,1913,3102,2,1,1143.802738,1143.802738,3507,NO,30.47,37.35,1,-0.68,6110,111.457012,121.648102,131.348144,137.633272,I,Above,Gable,0,5701,,33.90855752,0,1.1,,,,1,1,,0.35,nav,1,1913,2,, 17744,NJBF000059417,2190 WEST AVENUE,Linwood,NJ,39.33420794,-74.59412116,RES1,3001,,16,NE,2008,2008,3102,2,2,1925.896396,1925.896396,3505,NO,27.68,39.22,3,1.99,6106,111.407174,121.59575,131.29886,137.570686,I,Above,Hip,0,5701,,33.44986277,0,0,,,,1,1,,0.03,nav,1,2008,2,, 17745,NJBF000059306,2203 BRIGHTON DR,Linwood,NJ,39.33397734,-74.59124979,RES1,3001,,17,NE,1964,1964,3102,2,1,2151.35633,2151.35633,3507,NO,34.56,42.93,1,-0.33,6106,111.466822,121.647622,131.348092,137.633456,I,Above,Gable,0,5701,,38.74354514,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 17746,NJBF000059466,1860 FRANKLIN BLVD,Linwood,NJ,39.33430552,-74.57438133,RES1,3001,,17,NE,1989,1989,3102,2,1,2737.262903,2737.262903,3507,NO,31.99,41.83,1,1.29,6112,111.800942,121.933974,131.6231,137.977702,I,Above,Hip,0,5701,,36.90554353,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 17747,NJBF000058436,,Linwood,NJ,39.33231055,-74.58280287,RES1,3001,,NaN,NE,1969,0,3102,2,1,3321.846392,3321.846392,3507,NO,27.87,41.74,1,2.03,6112,111.663036,121.812188,131.505503,137.832137,I,Above,Hip,0,5701,,34.80394946,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17748,NJBF000058807,401 W FRANCES AVE,Linwood,NJ,39.33297049,-74.590832,RES1,3001,,17,NE,1966,1966,3102,1,1,2359.778479,2359.778479,3507,NO,10.84,22.34,1,-0.73,6110,111.492825,121.666656,131.366254,137.656624,I,Above,Gable,0,5701,,16.59122315,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 17749,NJBF000064062,200 W SCHOOLHOUSE DR,Linwood,NJ,39.34347034,-74.57629368,RES1,3001,,17,NE,2010,2010,3102,2,1,1887.234011,1887.234011,3505,NO,19.36,32.76,3,-1.78,6112,111.610646,121.795649,131.486384,137.805425,I,Above,Gable,0,5701,,26.05885294,0,1.2,,,,1,1,,0.35,nav,1,2010,2,, 17750,NJBF000058611,301 W KIRKLIN AVE,Linwood,NJ,39.33260553,-74.58785722,RES1,3001,,16,NE,1959,1959,3102,1,1,1428.497576,1428.497576,3507,NO,11.98,20.51,1,-0.86,6110,111.557459,121.721937,131.418982,137.723401,I,Above,Gable,0,5701,,16.24581942,0,0,,,,1,1,,0.35,nav,1,1959,1,, 17751,NJBF000063562,1602 ADAMS AVE,Linwood,NJ,39.3420591,-74.58127739,RES1,3001,,16,NE,1960,1960,3102,1,1,2425.34295,2425.34295,3505,NO,21.46,31.64,3,5.33,6112,111.528892,121.725575,131.419823,137.722757,I,Above,Gable,0,5701,,26.54750786,0,0,,,,1,1,,0.35,nav,1,1960,1,, 17752,NJBF000064354,220 W SCHOOLHOUSE DR,Linwood,NJ,39.34428928,-74.5806089,RES1,3001,,16,NE,1970,1970,3102,1,1,3838.582609,3838.582609,3507,NO,17.34,22.79,1,0.68,6110,111.506226,121.711788,131.405274,137.703953,I,Above,Gable,0,5701,,20.06229806,0,1.2,,,,1,1,,0.35,nav,1,1970,1,, 17753,NJBF000063483,409 W HAMILTON AVE,Linwood,NJ,39.34184823,-74.5829666,RES1,3001,,16,NE,1962,1962,3102,1,1,1684.15718,1684.15718,3505,NO,24.02,35.83,3,7.3,6110,111.497314,121.698822,131.394337,137.6908,I,Above,Gable,0,5701,,29.92422251,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17754,NJBF000063952,414 W PATCONG AVE,Linwood,NJ,39.34318865,-74.58222709,RES1,3001,,16,NE,1969,1969,3102,2,1,2714.71559,2714.71559,3505,NO,33.29,42.15,3,3.77,6112,111.490398,121.696321,131.391172,137.686526,I,Above,Gable,0,5701,,37.72260131,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 17755,NJBF000063143,1708 NEW ROAD,Linwood,NJ,39.34097267,-74.58374269,RES1,3001,,16,NE,1960,1960,3102,2,1,1476.318445,1476.318445,3505,NO,28.89,38.23,3,6.66,6106,111.495975,121.695444,131.391561,137.687486,I,Above,Gable,0,5701,,33.56195525,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 17756,NJBF000063093,1708 NEW ROAD,Linwood,NJ,39.34087782,-74.58353455,RES1,3001,,16,NE,1960,1960,3102,2,1,821.1780642,821.1780642,3505,NO,31.24,41.89,3,-1.61,6106,111.501855,121.700117,131.396073,137.693184,I,Above,Gable,0,5701,,36.56636801,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 17757,NJBF000064528,6 PRINCETON LANE,Linwood,NJ,39.34471515,-74.58062343,RES1,3001,,18,NE,1973,1973,3102,2,1,2472.94572,2472.94572,3507,NO,36.35,45.86,1,2.28,6106,111.498996,121.706731,131.400142,137.697408,I,Above,Gable,0,5701,,41.10741984,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 17758,NJBF000063337,236 E CAMBRIDGE AVE,Linwood,NJ,39.3414459,-74.56671011,RES1,3001,,17,NE,1996,1996,3102,2,1,3575.83152,3575.83152,3507,NO,26.06,37.92,1,0.01,6106,111.847476,121.984715,131.67091,138.033469,I,Above,Gable,0,5701,,31.99406107,0,0,,,,1,1,,0.03,nav,1,1996,2,, 17759,NJBF000063031,401 W JOSEPH AVE,Linwood,NJ,39.34074445,-74.58236772,RES1,3001,,15,NE,1963,1963,3102,1,1,2103.870704,2103.870704,3505,NO,14.29,22.6,3,-2.22,6112,111.528168,121.721774,131.416849,137.719329,I,Above,Gable,0,5701,,18.44316355,0,0,,,,1,1,,0.35,nav,1,1963,1,, 17760,NJBF000063019,1710 NEW ROAD,Linwood,NJ,39.34071164,-74.58388515,RES1,3001,,16,NE,1959,1959,3102,1,1,2757.984355,2757.984355,3505,NO,19.16,25.58,3,1.35,6106,111.497453,121.695986,131.392206,137.688349,I,Above,Gable,0,5701,,22.36929227,0,1.2,,,,1,1,,0.03,nav,1,1959,1,, 17761,NJBF000062059,1912 WEST AVE,Linwood,NJ,39.33873232,-74.58277441,RES1,3001,,16,NE,1968,1968,3102,2,1,1478.999732,1478.999732,3505,NO,42.82,54.45,3,6.62,6106,111.553701,121.737895,131.433117,137.74018,I,Above,Gable,0,5701,,48.63424978,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 17762,NJBF000062631,300 W KIE TRO DR,Linwood,NJ,39.33987823,-74.58118584,RES1,3001,,17,NE,1974,1974,3102,2,1,1200.806858,1200.806858,3505,NO,35.16,47.05,3,6.5,6112,111.567089,121.752093,131.446282,137.756435,I,Above,Gable,0,5701,,41.10582704,0,1.2,,,,1,1,,0.35,nav,1,1974,2,, 17763,NJBF000062859,305 W JOSEPH AVE,Linwood,NJ,39.34037492,-74.58140318,RES1,3001,,16,NE,1963,1963,3102,1,1,1607.873765,1607.873765,3505,NO,12.2,18.69,3,-1.02,6112,111.554291,121.742648,131.437013,137.744706,I,Above,Gable,0,5701,,15.44490627,0,0,,,,1,1,,0.35,nav,1,1963,1,, 17764,NJBF000062876,308 W KIE-TRO DR,Linwood,NJ,39.34041376,-74.5825517,RES1,3001,,17,NE,1972,1972,3102,2,1,2279.913076,2279.913076,3505,NO,22.56,37,3,-1.94,6106,111.529905,121.722383,131.417584,137.720324,I,Above,Gable,0,5701,,29.78133744,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 17765,NJBF000061852,219 W FOREST DR,Linwood,NJ,39.3383695,-74.58235,RES1,3001,,16,NE,1967,1967,3102,1,1,2551.544796,2551.544796,3505,NO,22.27,29.78,3,4.76,6106,111.56853,121.74939,131.444255,137.754231,I,Above,Gable,0,5701,,26.02364076,0,1.2,,,,1,1,,0.03,nav,1,1967,1,, 17766,NJBF000061284,2039 WEST AVE,Linwood,NJ,39.33737512,-74.58924826,RES1,3001,,16,NE,1973,1973,3102,1,1,2866.625352,2866.625352,3507,NO,19.61,30.4,1,2.1,6106,111.446354,121.642216,131.342293,137.625737,I,Above,Gable,0,5701,,25.00503638,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 17767,NJBF000062640,308 W FOREST DRIVE,Linwood,NJ,39.3399029,-74.58348803,RES1,3001,,16,NE,1979,1979,3102,1,1,2719.739011,2719.739011,3505,NO,23.87,31.88,3,4.86,6106,111.519262,121.712111,131.407984,137.708364,I,Above,Gable,0,5701,,27.87538163,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 17768,NJBF000061102,217 W SEAVIEW AVE,Linwood,NJ,39.33705464,-74.5829404,RES1,3001,,17,NE,1959,1959,3102,1,1,2721.545803,2721.545803,3507,NO,15.73,26.77,1,-0.32,6112,111.578802,121.754424,131.449469,137.761041,I,Above,Gable,0,5701,,21.2522075,0,0,,,,1,1,,0.35,nav,1,1959,1,, 17769,NJBF000060485,204 E HELENA DR,Linwood,NJ,39.33605415,-74.5721166,RES1,3001,,17,NE,1972,1972,3102,2,1,2673.899417,2673.899417,3507,NO,30.84,43.33,1,0.98,6112,111.819182,121.95283,131.641234,137.999464,I,Above,Gable,0,5701,,37.08414934,0,1.2,,,,1,1,,0.35,nav,1,1972,2,, 17770,NJBF000060911,,Linwood,NJ,39.33673254,-74.59088839,RES1,3001,,NaN,NE,1969,0,3102,2,1,1333.797337,1333.797337,3507,NO,36.28,49.8,1,0.3,6106,111.425178,121.621536,131.322839,137.601074,I,Above,Gable,0,5701,,43.042311,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17771,NJBF000060721,,Linwood,NJ,39.33644996,-74.59041333,RES1,3001,,NaN,NE,1969,0,3102,2,1,1968.896848,1968.896848,3507,NO,38.41,53.06,1,-0.39,6106,111.439515,121.632988,131.333779,137.615018,I,Above,Gable,0,5701,,45.73509487,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17772,NJBF000060544,2123 WEST AVE,Linwood,NJ,39.33616161,-74.59024466,RES1,3001,,17,NE,1900,1900,3102,2,1,954.268346,954.268346,3507,NO,25.89,38.3,1,0.53,6106,111.447893,121.639232,131.339777,137.622671,I,Above,Gable,0,5701,,32.09424485,0,0,,,,1,1,,0.03,nav,1,1900,2,, 17773,NJBF000059867,2015 WABASH AVE,Linwood,NJ,39.33498164,-74.5836934,EDU1,3001,,NaN,E,1969,0,3401,1,1,73145.22296,73145.22296,3507,NO,19.5,32.39,1,2.13,6112,111.599066,121.76558,131.460579,137.775374,I,Above,Flat,0,NaN,,25.94744391,0,0,,,,1,1,,1,nav,1,1969,1,, 17774,NJBF000060210,205 E HELENA DRIVE,Linwood,NJ,39.33558483,-74.57200475,RES1,3001,,17,NE,1978,1978,3102,2,1,1882.808954,1882.808954,3507,NO,20.55,26.04,1,-0.77,6106,111.829229,121.960195,131.648459,138.008509,I,Above,Gable,0,5701,,23.29529431,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 17775,NJBF000059605,502 KIRKLIN AVE,Linwood,NJ,39.33453608,-74.59161742,RES1,3001,,17,NE,1989,1989,3102,2,1,2731.136447,2731.136447,3507,NO,28.76,34.82,1,1.13,6106,111.449757,121.634759,131.335812,137.617786,I,Above,Gable,0,5701,,31.78653501,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 17776,NJBF000063444,407 W HAMILTON AVE,Linwood,NJ,39.34175255,-74.58273126,RES1,3001,,16,NE,1964,1964,3102,1,1,1705.589205,1705.589205,3505,NO,17.9,27.45,3,5.34,6110,111.503786,121.703977,131.399316,137.697081,I,Above,Gable,0,5701,,22.67230645,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 17777,NJBF000058955,,Linwood,NJ,39.33324977,-74.59321318,RES1,3001,,NaN,NE,1969,0,3102,2,1,1838.928888,1838.928888,3505,NO,35.77,48.26,3,0.87,6106,111.441779,121.622593,131.32437,137.603319,I,Above,Gable,0,5701,,42.01633785,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17778,NJBF000059059,,Linwood,NJ,39.33347316,-74.59341648,RES1,3001,,NaN,NE,1969,0,3102,2,1,1888.790306,1888.790306,3505,NO,25.46,34.98,3,3.19,6106,111.433885,121.616485,131.318566,137.595899,I,Above,Gable,0,5701,,30.2167657,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17779,NJBF000059174,,Linwood,NJ,39.333698,-74.593615,RES1,3001,,NaN,NE,1969,0,3102,2,1,1879.562202,1879.562202,3505,NO,35.32,43.63,3,7.01,6106,111.426031,121.610423,131.312805,137.588531,I,Above,Gable,0,5701,,39.47750443,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17780,NJBF000057298,3 W FRANCES AVE,Linwood,NJ,39.33032917,-74.58378004,RES1,3001,,16,NE,1955,1955,3102,1,1,1169.503132,1169.503132,3507,NO,18.19,25.37,1,2.12,6110,111.677931,121.818797,131.511718,137.840264,I,Above,Gable,0,5701,,21.78127717,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 17781,NJBF000061569,204 HOLLY LANE,Linwood,NJ,39.33787526,-74.5709825,RES1,3001,,19,NE,1998,1998,3102,2,1,4983.807311,4983.807311,3507,NO,33.82,43.97,1,0.92,6112,111.813338,121.951474,131.639573,137.996744,I,Above,Hip,0,5701,,38.89200635,0,1.2,,,,1,1,,0.35,nav,1,1998,2,, 17782,NJBF000068050,104 CAROL RD,Linwood,NJ,39.35546301,-74.55535194,RES1,3001,,16,NE,1959,1959,3102,1,1,2790.108245,2790.108245,3507,NO,13.65,20.15,1,2.1,6112,111.89363,122.026183,131.703067,138.06088,I,Above,Gable,0,5701,,16.8981668,0,1.2,,,,1,1,,0.35,nav,1,1959,1,, 17783,NJBF000059927,506 DUSTY LANE,Linwood,NJ,39.33508774,-74.59112788,RES1,3001,,18,NE,1998,1998,3102,2,1,2300.111154,2300.111154,3507,NO,34.89,46.78,1,0.59,6110,111.449515,121.636658,131.337538,137.61993,I,Above,Gable,0,5701,,40.83859599,0,1.2,,,,1,1,,0.35,nav,1,1998,2,, 17784,NJBF000061104,496 SARA ANN CT,Linwood,NJ,39.33705524,-74.5859399,RES1,3001,,17,NE,1966,1966,3102,2,1,1683.143776,1683.143776,3507,NO,32.9,43.19,1,1.93,6106,111.51808,121.70279,131.400078,137.698907,I,Above,Gable,0,5701,,38.0445212,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 17785,NJBF000061030,494 SARA ANN CT,Linwood,NJ,39.33693473,-74.58565247,RES1,3001,,17,NE,1965,1965,3102,2,1,3016.527491,3016.527491,3507,NO,24,30.91,1,0.55,6106,111.525948,121.709137,131.406171,137.70661,I,Above,Gable,0,5701,,27.45399576,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 17786,NJBF000059115,2207 BRIGHTON DR,Linwood,NJ,39.33358143,-74.59167178,RES1,3001,,17,NE,1964,1964,3102,2,1,2015.852297,2015.852297,3507,NO,40.83,51.15,1,2.09,6106,111.465653,121.64506,131.345687,137.630435,I,Above,Hip,0,5701,,45.99127711,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 17787,NJBF000063744,334 W PATCONG AVE,Linwood,NJ,39.34258333,-74.58091055,RES1,3001,,16,NE,1955,1955,3102,1,1,1739.194365,1739.194365,3505,NO,21.11,30.73,3,5.04,6112,111.527867,121.725926,131.419869,137.722686,I,Above,Hip,0,5701,,25.92002372,0,0,,,,1,1,,0.35,nav,1,1955,1,, 17788,NJBF000056697,9 SEAGARDEN DR,Linwood,NJ,39.32906167,-74.58129052,RES1,3001,,17,NE,1985,1985,3101,2,1,2164.685555,2164.685555,3507,NO,25.22,33.45,1,2.55,6106,111.749526,121.876547,131.567178,137.909682,I,Above,Gable,0,5701,,29.33407003,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 17789,NJBF000059979,205 EAST DR,Linwood,NJ,39.33518465,-74.5728524,RES1,3001,,16,NE,1961,1961,3102,1,1,3038.127852,3038.127852,3507,NO,13.38,26.23,1,1.44,6112,111.818133,121.950184,131.638769,137.996728,I,Above,Gable,0,5701,,19.80563696,0,1.2,,,,1,1,,0.35,nav,1,1961,1,, 17790,NJBF000066866,1011 BARTLETT AVE,Linwood,NJ,39.35107297,-74.57922414,RES1,3001,,17,NE,1970,1970,3101,2,1,1853.508547,1853.508547,3507,NO,28.64,42.04,1,-0.92,6110,111.428178,121.659866,131.349791,137.632436,I,Above,Gable,0,5701,,35.33823313,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 17791,NJBF000060955,2020 WEST AVE,Linwood,NJ,39.336813,-74.5872725,RES1,3001,,17,NE,1900,1900,3102,1,1,570.9774396,570.9774396,3507,NO,18.66,33.62,1,0.69,6112,111.495542,121.6827,131.380979,137.674822,I,Above,Flat,0,5701,,26.14015281,0,1.2,,,,1,1,,0.15,nav,1,1900,1,, 17792,NJBF000060984,2020 WEST AVE,Linwood,NJ,39.33685102,-74.58734766,RES1,3001,,17,NE,1900,1900,3102,1,1,599.0928591,599.0928591,3507,NO,13.39,19.04,1,1.12,6112,111.493362,121.680952,131.379303,137.672698,I,Above,Gable,0,5701,,16.21523568,0,1.2,,,,1,1,,0.15,nav,1,1900,1,, 17793,NJBF000061108,2 HENNINGS WAY,Linwood,NJ,39.33706317,-74.5894945,RES1,3001,,15,NE,1983,1983,3102,1,1,1188.751781,1188.751781,3507,NO,11.01,24.64,1,-0.68,6106,111.446906,121.641602,131.3418,137.625147,I,Above,Gable,0,5701,,17.82245468,0,0,,,,1,1,,0.03,nav,1,1983,1,, 17794,NJBF000063988,203 E FRANKFORD AVE,Linwood,NJ,39.34328318,-74.56657405,RES1,3001,,17,NE,1949,1949,3102,1,1,4388.33637,4388.33637,3507,NO,18.55,29.05,1,1.5,6112,111.821846,121.966245,131.652096,138.009521,I,Above,Hip,0,5701,,23.80043673,0,1.2,,,,1,1,,0.35,nav,1,1949,1,, 17795,NJBF000058832,314 W FRANCES AVE,Linwood,NJ,39.33302859,-74.58981607,RES1,3001,,17,NE,1963,1963,3102,2,1,2219.020398,2219.020398,3507,NO,31.8,40.36,1,1.77,6112,111.511584,121.683365,131.382165,137.676795,I,Above,Hip,0,5701,,36.07743346,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 17796,NJBF000061917,1916 WEST AVE,Linwood,NJ,39.33846703,-74.58338118,RES1,3001,,16,NE,1968,1968,3102,2,1,2281.216948,2281.216948,3505,NO,25.29,34.6,3,2.9,6106,111.545782,121.730493,131.426123,137.73145,I,Above,Gable,0,5701,,29.94703612,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 17797,NJBF000063531,410 W HAMILTON AVE,Linwood,NJ,39.34196017,-74.5821585,RES1,3001,,16,NE,1924,1924,3102,1,1,1386.943174,1386.943174,3505,NO,17.8,26.94,3,0.31,6110,111.512196,121.711483,131.406384,137.705917,I,Above,Gable,0,5701,,22.37119217,0,1.2,,,,1,1,,0.35,nav,1,1924,1,, 17798,NJBF000059849,616 OCEAN HTGS AVE,Linwood,NJ,39.334963,-74.5948235,COM3,3001,,NaN,ME,1969,0,3401,2,1,1279.070315,1279.070315,3507,NO,26.4,39.97,1,2.55,6106,111.380144,121.57483,131.278974,137.545201,I,Above,Gable,0,NaN,,33.18666213,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17799,NJBF000059032,402 W FRANCES AVE,Linwood,NJ,39.33340589,-74.59079299,RES1,3001,,16,NE,1963,1963,3102,1,1,2748.677787,2748.677787,3507,NO,14.68,20.09,1,1.16,6112,111.485849,121.662179,131.361976,137.651149,I,Above,Flat,0,5701,,17.38290373,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17800,NJBF000068655,549 W BARR AVE,Linwood,NJ,39.35733102,-74.57627618,RES1,3001,,16,NE,1984,1984,3101,1,1,3182.639066,3182.639066,3507,NO,15.56,24.51,1,2.57,6110,111.400469,121.642379,131.325663,137.599934,I,Above,Gable,0,5701,,20.03491704,0,1.1,,,,1,1,,0.35,nav,1,1984,1,, 17801,NJBF000067227,509 W VAN SANT AVE,Linwood,NJ,39.35266693,-74.57821463,RES1,3001,,17,NE,1966,1966,3101,1,1,3177.175259,3177.175259,3507,NO,19.61,28.18,1,0.2,6112,111.425853,121.659739,131.347975,137.62962,I,Above,Gable,0,5701,,23.89633257,0,1.2,,,,1,1,,0.35,nav,1,1966,1,, 17802,NJBF000064422,2 PRINCETON LANE,Linwood,NJ,39.34445194,-74.58007325,RES1,3001,,16,NE,1970,1970,3102,2,1,1277.674236,1277.674236,3507,NO,31.06,39.4,1,1.95,6110,111.514861,121.719203,131.412273,137.712677,I,Above,Gable,0,5701,,35.23313023,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 17803,NJBF000058774,,Linwood,NJ,39.33291149,-74.59234016,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1547.10269,1547.10269,3507,NO,20.86,31.26,1,1.72,6112,111.464659,121.641537,131.342368,137.626272,I,Above,Gable,0,5701,,26.06227777,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17804,NJBF000065718,112 COUNTRY CLUB DR,Linwood,NJ,39.34791046,-74.56405668,RES1,3001,,17,NE,1966,1966,3102,2,1,756.0102977,756.0102977,3507,NO,23.46,36.44,1,-0.8,6106,111.806681,121.958002,131.641458,137.993662,I,Above,Gable,0,5701,,29.94764523,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 17805,NJBF000065759,112 COUNTRY CLUB DR,Linwood,NJ,39.34801841,-74.56423399,RES1,3001,,17,NE,1966,1966,3102,2,1,2743.684453,2743.684453,3507,NO,32.56,45.89,1,-0.05,6110,111.801199,121.953718,131.63719,137.988402,I,Above,Gable,0,5701,,39.22219993,0,1.2,,,,1,1,,0.35,nav,1,1966,2,, 17806,NJBF000062479,1804 NEW ROAD,Linwood,NJ,39.33956049,-74.58466737,RES1,3001,,16,NE,1985,1985,3102,1,1,1820.492669,1820.492669,3505,NO,11.45,26.17,3,-2.55,6106,111.500954,121.695742,131.392489,137.688919,I,Above,Gable,0,5701,,18.80890323,0,1.2,,,,1,1,,0.03,nav,1,1985,1,, 17807,NJBF000061670,230 W SEAVIEW AVE,Linwood,NJ,39.338043,-74.58372604,RES1,3001,,17,NE,1966,1966,3102,2,1,2916.046921,2916.046921,3507,NO,25.23,33.46,1,1.71,6106,111.545962,121.729448,131.425264,137.730453,I,Above,Gable,0,5701,,29.34572372,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 17808,NJBF000061304,1928 MARY JANE LANE,Linwood,NJ,39.33740039,-74.58595672,RES1,3001,,17,NE,1979,1979,3102,2,1,1346.148194,1346.148194,3507,NO,36.31,49.92,1,-0.95,6106,111.511788,121.698493,131.39588,137.693557,I,Above,Gable,0,5701,,43.11265522,0,0,,,,1,1,,0.03,nav,1,1979,2,, 17809,NJBF000070642,2 LAKE DRIVE,Linwood,NJ,39.36788897,-74.57905431,RES1,3001,,17,NE,1988,1988,3101,2,1,1672.317737,1672.317737,3507,NO,37.05,46.71,1,2.61,6106,111.199794,121.482169,131.154714,137.382113,I,Above,Hip,0,5701,,41.8794189,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 17810,NJBF000070668,2 LAKE DRIVE,Linwood,NJ,39.36798788,-74.57919931,RES1,3001,,17,NE,1988,1988,3101,2,1,825.0887183,825.0887183,3507,NO,29.58,41.8,1,0.9,6106,111.195318,121.478642,131.151139,137.377596,I,Above,Hip,0,5701,,35.68766146,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 17811,NJBF000063142,405 W JOSEPH AVE,Linwood,NJ,39.34097157,-74.58293741,RES1,3001,,16,NE,1962,1962,3102,1,1,2098.049043,2098.049043,3505,NO,21.33,32.37,3,4.34,6110,111.512599,121.709351,131.404854,137.70421,I,Above,Gable,0,5701,,26.84952619,0,0,,,,1,1,,0.35,nav,1,1962,1,, 17812,NJBF000057537,18 E BERKLEY ST,Linwood,NJ,39.33074315,-74.58103992,RES1,3001,,17,NE,1945,1945,3102,2,1,2048.640329,2048.640329,3507,NO,36.28,42.34,1,2.21,6110,111.725493,121.860971,131.5524,137.890959,I,Above,Gable,0,5701,,39.30824182,0,1.2,,,,1,1,,0.35,nav,1,1945,2,, 17813,NJBF000063254,402 W JOSEPH AVE,Linwood,NJ,39.34123101,-74.58247141,RES1,3001,,16,NE,1962,1962,3102,1,1,2483.870547,2483.870547,3505,NO,20.19,32.48,3,1.87,6112,111.517889,121.714425,131.409579,137.710092,I,Above,Gable,0,5701,,26.33100492,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17814,NJBF000061095,212 HEMLOCK DRIVE,Linwood,NJ,39.33704575,-74.57108449,RES1,3001,,18,NE,1979,1979,3102,2,1,2848.519974,2848.519974,3507,NO,33.81,46.29,1,0.86,6112,111.824654,121.959253,131.647317,138.006574,I,Above,Hip,0,5701,,40.05072744,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 17815,NJBF000058615,306 W FRANCES AVE,Linwood,NJ,39.33261261,-74.58871676,RES1,3001,,16,NE,1963,1963,3102,1,1,2204.599368,2204.599368,3507,NO,16.39,23.88,1,0.47,6110,111.540442,121.707109,131.40482,137.705513,I,Above,Gable,0,5701,,20.13420765,0,0,,,,1,1,,0.35,nav,1,1963,1,, 17816,NJBF000070301,12 LAKE DRIVE,Linwood,NJ,39.36662092,-74.57844548,RES1,3001,,17,NE,1967,1967,3101,1,1,3610.606871,3610.606871,3507,NO,16.5,29.19,1,1.56,6106,111.228918,121.505918,131.179884,137.414102,I,Above,Gable,0,5701,,22.84632089,0,1.2,,,,1,1,,0.03,nav,1,1967,1,, 17817,NJBF000068151,501 W DAVIS AVE,Linwood,NJ,39.3558205,-74.5747865,RES1,3001,,16,NE,1967,1967,3101,2,1,3018.857676,3018.857676,3507,NO,36.73,45.77,1,2.66,6110,111.45495,121.684537,131.368193,137.653503,I,Above,Hip,0,5701,,41.24972407,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 17818,NJBF000062443,305 W FOREST DR,Linwood,NJ,39.33947185,-74.58350907,RES1,3001,,16,NE,1969,1969,3102,2,1,2171.994074,2171.994074,3505,NO,41.09,51.61,3,3.02,6106,111.526121,121.716705,131.412556,137.714199,I,Above,Gable,0,5701,,46.3510936,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 17819,NJBF000060952,2037 WEST AVE,Linwood,NJ,39.33680933,-74.588646,RES1,3001,,16,NE,1922,1922,3102,2,1,1219.406782,1219.406782,3507,NO,29.23,39.4,1,-0.48,6112,111.468207,121.659139,131.358543,137.646418,I,Above,Hip,0,5701,,34.31682147,0,0,,,,1,1,,0.35,nav,1,1922,2,, 17820,NJBF000063673,505 W HAMILTON AVE,Linwood,NJ,39.34235583,-74.5842506,COM4,3001,999,NaN,ME,1969,0,3401,2,1,5936.441531,5936.441531,3507,NO,32.2,39.73,1,2.48,6106,111.462269,121.670887,131.367379,137.656746,I,Above,Flat,0,NaN,,35.96492748,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17821,NJBF000065335,1060 WOODE-LYNNE BLVD,Linwood,NJ,39.34676065,-74.56718087,RES1,3001,,17,NE,1956,1956,3102,2,1,5680.321694,5680.321694,3507,NO,23.32,30.12,1,0.64,6112,111.755519,121.916554,131.60166,137.945933,I,Above,Hip,0,5701,,26.71967397,0,1.2,,,,1,1,,0.35,nav,1,1956,2,, 17822,NJBF000065277,16 FALLING WATER DRIVE,Linwood,NJ,39.34660631,-74.58180257,RES1,3001,,16,NE,2001,2001,3102,2,1,1889.059476,1889.059476,3507,NO,27.52,35.45,1,2.45,6106,111.443439,121.665058,131.358862,137.645093,I,Above,Gable,0,5701,,31.48487872,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17823,NJBF000059229,211 E SEAVIEW AVE,Linwood,NJ,39.33381124,-74.57441219,RES1,3001,,17,NE,1927,1927,3102,2,1,644.1884674,644.1884674,3507,NO,32.2,38.1,1,1.7,6112,111.808558,121.939202,131.628201,137.984141,I,Above,Gable,0,5701,,35.14855034,0,0,,,,1,1,,0.35,nav,1,1927,2,, 17824,NJBF000060692,1700 SOMERSET BLVD,Linwood,NJ,39.33640685,-74.57084843,RES1,3001,,18,NE,1974,1974,3102,2,1,8570.390034,8570.390034,3507,NO,22.67,35.62,1,0.41,6106,111.840031,121.97071,131.658581,138.020641,I,Above,Gable,0,5701,,29.14199137,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 17825,NJBF000064953,121 E EDGEWOOD AVE,Linwood,NJ,39.34574781,-74.56691628,RES1,3001,,18,NE,1980,1980,3102,2,1,6685.946117,6685.946117,3507,NO,22.5,35.07,1,1.44,6106,111.776641,121.93252,131.617865,137.966326,I,Above,Gable,0,5701,,28.78187609,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 17826,NJBF000067162,1026 BARTLETT DR,Linwood,NJ,39.35239715,-74.57922924,RES1,3001,,16,NE,1960,1960,3101,1,1,1401.832173,1401.832173,3507,NO,13.96,26.77,1,2.63,6112,111.407846,121.645179,131.33431,137.612611,I,Above,Gable,0,5701,,20.36632519,0,0,,,,1,1,,0.35,nav,1,1960,1,, 17827,NJBF000057440,,Linwood,NJ,39.33057768,-74.5818446,RES1,3001,,NaN,NE,1969,0,3102,2,1,2343.123433,2343.123433,3507,NO,37.97,51.2,1,-0.5,6106,111.7122,121.849084,131.540917,137.876683,I,Above,Hip,0,5701,,44.58501398,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17828,NJBF000067065,1004 BARTLETT AVE,Linwood,NJ,39.35191344,-74.5779622,RES1,3001,,17,NE,1967,1967,3101,2,1,2135.104212,2135.104212,3507,NO,38.12,44.02,1,0.49,6110,111.442753,121.672415,131.360954,137.646112,I,Above,Gable,0,5701,,41.07218012,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 17829,NJBF000065394,,Linwood,NJ,39.34693985,-74.56219359,RES1,3001,,NaN,NE,1969,0,3102,2,1,548.4374764,548.4374764,3507,NO,25.15,31.75,1,2.46,6110,111.861918,122.001252,131.684498,138.046531,I,Above,Gable,0,5701,,28.45126708,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17830,NJBF000058043,2124 SHORE ROAD,Linwood,NJ,39.33160549,-74.58155433,RES1,3001,,16,NE,1930,1930,3102,2,1,1119.624249,1119.624249,3507,NO,24.24,36.61,1,0.09,6112,111.700301,121.841971,131.53415,137.868045,I,Above,Gable,0,5701,,30.42449359,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 17831,NJBF000059195,405 W KIRKLIN AVE,Linwood,NJ,39.33375341,-74.59081589,RES1,3001,,16,NE,1963,1963,3102,2,1,1907.732494,1907.732494,3507,NO,40.13,53.24,1,2.56,6110,111.479249,121.657696,131.357688,137.64567,I,Above,Gable,0,5701,,46.68538877,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 17832,NJBF000063182,407 W JOSEPH AVE,Linwood,NJ,39.34107827,-74.58317798,RES1,3001,,16,NE,1962,1962,3102,1,1,1646.121525,1646.121525,3505,NO,18.52,32.02,3,4.15,6110,111.505849,121.703983,131.399669,137.697667,I,Above,Gable,0,5701,,25.27067039,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17833,NJBF000063107,224 E BERKSHIRE AVE,Linwood,NJ,39.34090729,-74.56729873,RES1,3001,,17,NE,1979,1979,3102,1,1,4244.282783,4244.282783,3507,NO,21.5,33.24,1,2.41,6112,111.843283,121.980624,131.667108,138.029106,I,Above,Hip,0,5701,,27.36937044,0,1.2,,,,1,1,,0.35,nav,1,1979,1,, 17834,NJBF000059061,213 E SEAVIEW AVE,Linwood,NJ,39.33347432,-74.57415804,RES1,3001,,17,NE,1970,1970,3102,1,1,1567.747511,1567.747511,3507,NO,18.21,24.56,1,0.93,6106,111.819438,121.947516,131.636284,137.994205,I,Above,Gable,0,5701,,21.38301298,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 17835,NJBF000059132,213 E SEAVIEW AVE,Linwood,NJ,39.33361567,-74.57406945,RES1,3001,,17,NE,1970,1970,3102,1,1,2102.431023,2102.431023,3507,NO,20.54,34.81,1,2.19,6106,111.818908,121.947397,131.636165,137.994016,I,Above,Gable,0,5701,,27.67825023,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 17836,NJBF000058604,315 W FRANCES AVE,Linwood,NJ,39.33259949,-74.58982748,RES1,3001,,17,NE,1964,1964,3102,2,1,1839.415567,1839.415567,3507,NO,23.83,35.01,1,0.59,6110,111.518977,121.688252,131.386832,137.682754,I,Above,Gable,0,5701,,29.41898084,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 17837,NJBF000058132,2147 SHORE ROAD,Linwood,NJ,39.33176465,-74.58195184,RES1,3001,,NaN,NE,1859,0,3102,2,1,1439.992834,1439.992834,3507,NO,32.82,43.53,1,2.82,6110,111.689545,121.833244,131.52575,137.857535,I,Above,Hip,0,5701,,38.17269245,0,0,,,,1,1,,0.35,nav,1,1859,2,, 17838,NJBF000063734,403 W PATCONG AVE,Linwood,NJ,39.34254704,-74.58188837,RES1,3001,,15,NE,1966,1966,3102,1,1,1587.061545,1587.061545,3505,NO,19.31,32.33,3,4.08,6110,111.508086,121.709471,131.404132,137.702954,I,Above,Gable,0,5701,,25.82015401,0,0,,,,1,1,,0.35,nav,1,1966,1,, 17839,NJBF000056126,33 E ROYAL AVE,Linwood,NJ,39.32777559,-74.58266996,RES1,3001,,19,NE,1994,1994,3102,2,1,7419.924707,7419.924707,3507,NO,36.34,41.71,1,2.84,6112,111.744456,121.868168,131.558783,137.899465,I,Above,Hip,0,5701,,39.02383542,0,1.2,,,,1,1,,0.35,nav,1,1994,2,, 17840,NJBF000061957,108 HOLLY LANE,Linwood,NJ,39.33854615,-74.57277725,RES1,3001,,18,NE,1988,1988,3102,2,1,2328.226733,2328.226733,3507,NO,23.56,36.2,1,1.18,6112,111.7646,121.912689,131.601708,137.949909,I,Above,Gable,0,5701,,29.88036407,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 17841,NJBF000064143,,Linwood,NJ,39.34369372,-74.58346877,COM1,3001,,NaN,ME,1969,0,3401,3,1,11304.43229,11304.43229,3507,NO,47.89,60.79,1,1.52,6112,111.456166,121.66916,131.364907,137.653363,I,Above,Flat,0,NaN,,54.34147173,0,0,,,,1,1,,1,nav,1,1969,3,, 17842,NJBF000067561,907 BARTLETT AVE,Linwood,NJ,39.35382806,-74.57833666,RES1,3001,,16,NE,1968,1968,3101,2,1,3004.97878,3004.97878,3507,NO,23.8,37.88,1,0.94,6112,111.40581,121.64489,131.332414,137.609747,I,Above,Gable,0,5701,,30.84138524,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 17843,NJBF000060359,510 W GARFIELD AVENUE,Linwood,NJ,39.33583681,-74.58941282,RES1,3001,,16,NE,2001,2001,3102,1,1,3721.71902,3721.71902,3507,NO,21.73,31.31,1,2.23,6112,111.470019,121.657306,131.357027,137.644609,I,Above,Hip,0,5701,,26.51834621,0,1.2,,,,1,1,,0.35,nav,1,2001,1,, 17844,NJBF000069292,409 CEDARBROOK LANE W,Linwood,NJ,39.35954538,-74.57611576,RES1,3001,,17,NE,1977,1977,3101,1,1,5457.089014,5457.089014,3507,NO,21.14,30.39,1,2.92,6106,111.373253,121.621253,131.302298,137.569859,I,Above,Gable,0,5701,,25.76926943,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 17845,NJBF000069109,417 CEDARBROOK LANE W,Linwood,NJ,39.3587989,-74.57622913,RES1,3001,,16,NE,1977,1977,3101,2,1,2744.451247,2744.451247,3507,NO,32.68,45.67,1,1.84,6106,111.380994,121.627331,131.309197,137.578782,I,Above,Gable,0,5701,,39.17374491,0,1.2,,,,1,1,,0.03,nav,1,1977,2,, 17846,NJBF000069214,411 CEDARBROOK LANE,Linwood,NJ,39.35919921,-74.57618117,RES1,3001,,17,NE,2000,2000,3101,1,1,2088.896832,2088.896832,3507,NO,11.39,22.74,1,-0.34,6106,111.376547,121.623852,131.30529,137.573739,I,Above,Gable,0,5701,,17.06807337,0,1.2,,,,1,1,,0.03,nav,1,2000,1,, 17847,NJBF000065742,,Linwood,NJ,39.34796722,-74.58037056,COM3,3001,,NaN,ME,1969,0,3401,3,1,122733.1824,122733.1824,3507,NO,57.49,64.03,1,-0.93,6112,111.452067,121.674554,131.366804,137.654705,I,Above,Flat,0,NaN,,60.75766726,0,0,,,,1,1,,1,nav,1,1969,3,, 17848,NJBF000058811,309 W KIRKLIN AVE,Linwood,NJ,39.33297656,-74.58881673,RES1,3001,,17,NE,1961,1961,3102,2,1,1682.00113,1682.00113,3507,NO,37.98,49.67,1,1.68,6112,111.532063,121.701101,131.39908,137.698211,I,Above,Gable,0,5701,,43.82881608,0,0,,,,1,1,,0.35,nav,1,1961,2,, 17849,NJBF000064943,4 FALLING WATER DRIVE,Linwood,NJ,39.34572843,-74.58146843,RES1,3001,,17,NE,2000,2000,3102,2,1,1875.073914,1875.073914,3507,NO,33.04,40.22,1,-0.95,6106,111.464728,121.680713,131.374512,137.664982,I,Above,Hip,0,5701,,36.6294968,0,1.2,,,,1,1,,0.03,nav,1,2000,2,, 17850,NJBF000064264,1 HARVARD LANE,Linwood,NJ,39.34404975,-74.57693873,RES1,3001,,17,NE,1965,1965,3102,2,1,3237.301322,3237.301322,3507,NO,30.89,38.85,1,1.45,6112,111.587647,121.777925,131.468959,137.783558,I,Above,Flat,0,5701,,34.87340877,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 17851,NJBF000061239,4 HENNINGS WAY,Linwood,NJ,39.33729319,-74.58983261,RES1,3001,,16,NE,1963,1963,3102,1,1,1091.148589,1091.148589,3507,NO,18.9,31.5,1,2.12,6106,111.436178,121.633123,131.33368,137.614806,I,Above,Hip,0,5701,,25.19810498,0,1.2,,,,1,1,,0.03,nav,1,1963,1,, 17852,NJBF000057345,5 W FRANCES AVE,Linwood,NJ,39.33040572,-74.58397544,RES1,3001,,15,NE,1955,1955,3102,1,1,1181.239669,1181.239669,3507,NO,19.56,25.49,1,0.58,6110,111.672716,121.814538,131.507631,137.835138,I,Above,Gable,0,5701,,22.52352072,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 17853,NJBF000060148,311 MELODY LANE,Linwood,NJ,39.33548012,-74.58691819,RES1,3001,,16,NE,1965,1965,3102,2,1,1310.843217,1310.843217,3507,NO,28.88,39.01,1,1.32,6112,111.525781,121.70432,131.401894,137.701434,I,Above,Gable,0,5701,,33.94862425,0,0,,,,1,1,,0.35,nav,1,1965,2,, 17854,NJBF000058086,2317 GRAMMERCY AVE,Linwood,NJ,39.33168291,-74.58847322,RES1,3001,,16,NE,1963,1963,3102,1,1,1946.475642,1946.475642,3507,NO,15.33,20.37,1,1.98,6106,111.561628,121.722283,131.419292,137.723913,I,Above,Gable,0,5701,,17.84592345,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 17855,NJBF000057429,205 ARBOR COURT EAST,Linwood,NJ,39.33055882,-74.57815086,RES1,3001,,19,NE,2007,2007,3102,2,1,5771.141928,5771.141928,3507,NO,37.98,45.99,1,2.06,6112,111.786947,121.912841,131.602516,137.95324,I,Above,Hip,0,5701,,41.98769482,0,1.2,,,,1,1,,0.35,nav,1,2007,2,, 17856,NJBF000058287,440 W OCEAN HEIGHTS AVE,Linwood,NJ,39.332039,-74.5911865,RES1,3001,,16,NE,1964,1964,3102,1,1,2352.955541,2352.955541,3507,NO,14.34,20.24,1,0.11,6112,111.502485,121.67159,131.370948,137.662677,I,Above,Gable,0,5701,,17.28957005,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 17857,NJBF000061674,2025 WEST AVE,Linwood,NJ,39.33804801,-74.58908582,RES1,3001,,18,NE,1999,1999,3102,2,1,2282.763286,2282.763286,3507,NO,25.89,35.34,1,2.37,6106,111.437837,121.637186,131.337298,137.61932,I,Above,Gable,0,5701,,30.61448591,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 17858,NJBF000059669,606 OCEAN HTGS AVE,Linwood,NJ,39.33464914,-74.59454698,RES1,3001,,16,NE,1860,1860,3102,2,1,2182.399662,2182.399662,3505,NO,40.78,54.21,3,5.99,6112,111.391091,121.583265,131.286994,137.555485,I,Above,Flat,0,5701,,47.49631105,0,1.2,,,,1,1,,0.35,nav,1,1860,2,, 17859,NJBF000065876,110 COUNTRY CLUB DR,Linwood,NJ,39.34833388,-74.5644964,RES1,3001,,17,NE,1994,1994,3102,2,1,2127.69083,2127.69083,3507,NO,32.51,43.83,1,0.29,6112,111.790779,121.945638,131.629063,137.978307,I,Above,Gable,0,5701,,38.1667059,0,1.2,,,,1,1,,0.35,nav,1,1994,2,, 17860,NJBF000063340,1707 NEW ROAD,Linwood,NJ,39.34145017,-74.58423659,COM4,3001,190,NaN,ME,1969,0,3401,1,1,5393.392469,5393.392469,3507,NO,17.83,27.48,1,2.98,6112,111.477779,121.681471,131.377978,137.670281,I,Above,Gable,0,NaN,,22.65850508,0,0,,,,1,1,,1,nav,1,1969,1,, 17861,NJBF000068189,1 GAIL AVE,Linwood,NJ,39.35594854,-74.55528373,RES1,3001,,16,NE,1958,1958,3102,1,1,2672.744434,2672.744434,3507,NO,20.16,25.42,1,2.11,6112,111.888665,122.022053,131.698558,138.054952,I,Above,Gable,0,5701,,22.79037955,0,1.2,,,,1,1,,0.35,nav,1,1958,1,, 17862,NJBF000057176,2231 SHORE ROAD,Linwood,NJ,39.3300837,-74.58331653,RES1,3001,,16,NE,1955,1955,3102,1,1,1273.399686,1273.399686,3507,NO,14.04,23.06,1,0.41,6110,111.6914,121.829646,131.522126,137.853319,I,Above,Hip,0,5701,,18.55346989,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 17863,NJBF000068228,505 W DAVIS AVE,Linwood,NJ,39.35607803,-74.57540361,RES1,3001,,16,NE,1967,1967,3101,1,1,2744.508382,2744.508382,3507,NO,16.61,25.43,1,-0.51,6110,111.437611,121.671062,131.354886,137.636853,I,Above,Gable,0,5701,,21.02128839,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 17864,NJBF000066899,1010 BARTLETT AVE,Linwood,NJ,39.35120067,-74.57845675,RES1,3001,,17,NE,2006,2006,3101,2,1,2839.90305,2839.90305,3507,NO,37.1,49.24,1,-0.71,6110,111.442835,121.671713,131.361019,137.646444,I,Above,Gable,0,5701,,43.17086841,0,1.1,,,,1,1,,0.35,nav,1,2006,2,, 17865,NJBF000068138,506 W WILSON AVE,Linwood,NJ,39.35576158,-74.57543731,RES1,3001,,17,NE,1965,1965,3101,2,1,1873.419546,1873.419546,3507,NO,30.08,37.77,1,-0.77,6112,111.441404,121.67393,131.358037,137.640914,I,Above,Hip,0,5701,,33.92784739,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 17866,NJBF000064093,4 HARVARD LANE,Linwood,NJ,39.34355168,-74.57659888,RES1,3001,,17,NE,1977,1977,3102,2,1,2479.05508,2479.05508,3505,NO,31.4,38.42,3,4.39,6106,111.602859,121.789444,131.480354,137.797902,I,Above,Gable,0,5701,,34.90890446,0,1.2,,,,1,1,,0.03,nav,1,1977,2,, 17867,NJBF000065004,1301 OAK AVENUE,Linwood,NJ,39.34587283,-74.57704147,EDU1,3001,,NaN,E,1969,0,3401,1,1,4883.646012,4883.646012,3507,NO,14.71,29.56,1,1.44,6106,111.556381,121.755601,131.446255,137.754668,I,Above,Flat,0,NaN,,22.1355142,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17868,NJBF000065074,1301 OAK AVENUE,Linwood,NJ,39.34587283,-74.57704147,EDU1,3001,,NaN,E,1969,0,3401,1,1,1216.412679,1216.412679,3507,NO,16.03,21.06,1,2.71,6106,111.556381,121.755601,131.446255,137.754668,I,Above,Flat,0,NaN,,18.54266462,0,0,,,,1,1,,0.03,nav,1,1969,1,, 17869,NJBF000064996,1301 OAK AVENUE,Linwood,NJ,39.34587283,-74.57704147,EDU1,3001,,NaN,E,1969,0,3401,1,1,265387.1089,265387.1089,3507,NO,12.02,24.63,1,-0.16,6110,111.556381,121.755601,131.446255,137.754668,I,Above,Flat,0,NaN,,18.32886542,0,0,,,,1,1,,1,nav,1,1969,1,, 17870,NJBF000069567,18 WEXFORD LANE,Linwood,NJ,39.36167116,-74.57394944,RES1,3001,,19,NE,1999,1999,3101,2,1,5953.033554,5953.033554,3507,NO,28.72,43.35,1,0.66,6112,111.393386,121.635917,131.313367,137.582567,I,Above,Hip,0,5701,,36.03653711,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 17871,NJBF000068112,108 CAROL RD,Linwood,NJ,39.35568962,-74.55592929,RES1,3001,,16,NE,1965,1965,3102,2,1,2574.760336,2574.760336,3507,NO,34.62,49.29,1,0.68,6110,111.87765,122.013634,131.690421,138.045555,I,Above,Gable,0,5701,,41.95622294,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17872,NJBF000064998,1130 WOODE-LYNNE BLVD,Linwood,NJ,39.3458752,-74.56782486,RES1,3001,,17,NE,1950,1950,3102,2,1,5093.08049,5093.08049,3507,NO,41.42,53.82,1,2.53,6112,111.754951,121.915308,131.600993,137.945634,I,Above,Hip,0,5701,,47.61692963,0,0,,,,1,1,,0.35,nav,1,1950,2,, 17873,NJBF000058616,210 W KIRKLIN AVE,Linwood,NJ,39.33261633,-74.58676902,RES1,3001,,16,NE,1957,1957,3102,1,1,1296.163391,1296.163391,3507,NO,17.39,22.97,1,1.83,6112,111.578745,121.740483,131.436717,137.74576,I,Above,Gable,0,5701,,20.1792791,0,0,,,,1,1,,0.35,nav,1,1957,1,, 17874,NJBF000065362,19 FALLING WATER DRIVE,Linwood,NJ,39.34684127,-74.5824068,RES1,3001,,16,NE,2001,2001,3102,2,1,3192.844856,3192.844856,3507,NO,32.42,42.4,1,2.31,6106,111.426871,121.651992,131.346191,137.629093,I,Above,Hip,0,5701,,37.41216186,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17875,NJBF000060875,2018 NEW ROAD,Linwood,NJ,39.336687,-74.586678,RES1,3001,,16,NE,1900,1900,3102,2,1,960.4464569,960.4464569,3507,NO,31.61,37.29,1,-0.61,6106,111.50962,121.694376,131.392145,137.68895,I,Above,Gable,0,5701,,34.45038417,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 17876,NJBF000064909,2 FALLING WATER DRIVE,Linwood,NJ,39.3456406,-74.5812754,RES1,3001,,16,NE,2001,2001,3102,2,1,2255.744829,2255.744829,3507,NO,32.12,45.41,1,2.12,6106,111.470211,121.685026,131.378702,137.670266,I,Above,Gable,0,5701,,38.76353805,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17877,NJBF000064502,,Linwood,NJ,39.344647,-74.58224759,RES3A,3001,,NaN,NE,1969,0,3301,2,1,4540.287537,4540.287537,3507,NO,26.74,32.09,1,-0.21,6106,111.465953,121.67944,131.374079,137.6647,I,Above,Hip,0,5701,,29.41564897,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17878,NJBF000064488,,Linwood,NJ,39.34461368,-74.58280897,RES3A,3001,,NaN,NE,1969,0,3301,2,1,5039.032973,5039.032973,3507,NO,31.24,41.45,1,-0.41,6106,111.454745,121.67013,131.36521,137.653547,I,Above,Gable,0,5701,,36.34787253,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17879,NJBF000064456,,Linwood,NJ,39.344527,-74.58441805,RES3A,3001,,NaN,NE,1969,0,3301,2,1,4905.923932,4905.923932,3507,NO,30.3,40.26,1,-0.09,6106,111.422604,121.643356,131.339736,137.621445,I,Above,Hip,0,5701,,35.2793011,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17880,NJBF000061989,1914 WEST AVE,Linwood,NJ,39.33859728,-74.5831311,RES1,3001,,16,NE,1968,1968,3102,2,1,2006.172737,2006.172737,3505,NO,31.67,42.19,3,6.85,6106,111.548684,121.7333,131.428765,137.734743,I,Above,Gable,0,5701,,36.92817718,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 17881,NJBF000061975,201 E PATCONG AVENUE,Linwood,NJ,39.33857027,-74.57137749,RES1,3001,,17,NE,1998,1998,3102,2,1,2310.24446,2310.24446,3507,NO,37.09,51.34,1,1.12,6106,111.793743,121.936649,131.624978,137.97854,I,Above,Gable,0,5701,,44.2141432,0,1.2,,,,1,1,,0.03,nav,1,1998,2,, 17882,NJBF000062683,302 W KIE-TRO DR,Linwood,NJ,39.34000395,-74.5815374,RES1,3001,,17,NE,1971,1971,3102,2,1,2966.646047,2966.646047,3505,NO,21.7,36.49,3,-2.26,6112,111.557727,121.744591,131.439037,137.747329,I,Above,Gable,0,5701,,29.09619663,0,1.2,,,,1,1,,0.35,nav,1,1971,2,, 17883,NJBF000061197,2033 WEST AVE,Linwood,NJ,39.3372256,-74.5886631,RES1,3001,,15,NE,1880,1880,3102,1,1,1707.492312,1707.492312,3507,NO,19.37,29.52,1,0.03,6106,111.460593,121.653996,131.353536,137.64002,I,Above,Gable,0,5701,,24.44470954,0,0,,,,1,1,,0.03,nav,1,1880,1,, 17884,NJBF000061314,2015 WEST AVE,Linwood,NJ,39.33743029,-74.58773783,RES1,3001,,16,NE,1900,1900,3102,2,1,732.8882316,732.8882316,3507,NO,22.11,35.93,1,-0.94,6112,111.475508,121.667521,131.366346,137.656225,I,Above,Hip,0,5701,,29.01755491,0,1.2,,,,1,1,,0.35,nav,1,1900,2,, 17885,NJBF000061237,2015 WEST AVE,Linwood,NJ,39.33728906,-74.58734701,RES1,3001,,16,NE,1900,1900,3102,2,1,1224.041095,1224.041095,3507,NO,34.12,40.42,1,2.23,6112,111.485782,121.675879,131.374348,137.66637,I,Above,Gable,0,5701,,37.27097699,0,1.2,,,,1,1,,0.15,nav,1,1900,2,, 17886,NJBF000059146,403 W KIRKLIN AVE,Linwood,NJ,39.3336415,-74.590482,RES1,3001,,16,NE,1963,1963,3102,2,1,1475.756252,1475.756252,3507,NO,26.23,37.38,1,-0.37,6106,111.487748,121.664738,131.364397,137.654198,I,Above,Gable,0,5701,,31.80258368,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 17887,NJBF000067457,909 BARTLETT AVE,Linwood,NJ,39.35355109,-74.57851064,RES1,3001,,16,NE,1968,1968,3101,2,1,1550.15878,1550.15878,3507,NO,24.07,33.8,1,0.95,6112,111.406131,121.644917,131.332761,137.610278,I,Above,Hip,0,5701,,28.93944209,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 17888,NJBF000066751,1100 BARTLETT AVE,Linwood,NJ,39.35066268,-74.57964392,RES1,3001,,17,NE,1963,1963,3101,1,1,3804.770566,3804.770566,3507,NO,13.32,22.71,1,-0.47,6106,111.425418,121.657141,131.347598,137.629818,I,Above,Gable,0,5701,,18.01539636,0,0,,,,1,1,,0.03,nav,1,1963,1,, 17889,NJBF000060160,,Linwood,NJ,39.33550006,-74.59204782,RES1,3001,,NaN,NE,1969,0,3102,2,1,2259.321227,2259.321227,3507,NO,36.42,46.89,1,0.19,6106,111.424254,121.616059,131.317919,137.594916,I,Above,Gable,0,5701,,41.65802285,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17890,NJBF000063752,1601 NEW ROAD,Linwood,NJ,39.34260261,-74.5833888,COM4,3001,569,NaN,ME,1969,0,3401,3,1,4959.407752,4959.407752,3507,NO,48.4,55.95,1,1.92,6106,111.475971,121.682938,131.378736,137.671008,I,Above,Flat,0,NaN,,52.17566362,0,0,,,,1,1,,0.03,nav,1,1969,3,, 17891,NJBF000062474,302 W FOREST DRIVE,Linwood,NJ,39.33954661,-74.58250836,RES1,3001,,16,NE,1973,1973,3102,2,1,2742.99268,2742.99268,3505,NO,29.21,40.6,3,1.95,6110,111.545394,121.733096,131.428212,137.733853,I,Above,Gable,0,5701,,34.90501208,0,1.2,,,,1,1,,0.35,nav,1,1973,2,, 17892,NJBF000060857,492 SARA ANN CT,Linwood,NJ,39.33665133,-74.58494006,RES1,3001,,17,NE,1966,1966,3102,2,1,1379.79252,1379.79252,3505,NO,24.59,33.06,3,-1.01,6106,111.545193,121.724685,131.421102,137.725466,I,Above,Gable,0,5701,,28.82550893,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 17893,NJBF000063783,,Linwood,NJ,39.34269205,-74.56691754,RES1,3001,,NaN,NE,1969,0,3102,2,1,3804.891333,3804.891333,3507,NO,30.56,44.91,1,1.33,6112,111.823576,121.966962,131.653061,138.011023,I,Above,Hip,0,5701,,37.73753811,0,0,,,,1,1,,0.35,nav,1,1969,2,, 17894,NJBF000063761,405 W PATCONG AVE,Linwood,NJ,39.34263422,-74.58222132,RES1,3001,,17,NE,1966,1966,3102,1,1,2654.554457,2654.554457,3505,NO,14.92,20.4,3,1.86,6106,111.499713,121.702734,131.397637,137.694776,I,Above,Flat,0,5701,,17.65939156,0,0,,,,1,1,,0.03,nav,1,1966,1,, 17895,NJBF000062293,201 CHELTENHAM BLVD,Linwood,NJ,39.33916308,-74.57015037,RES1,3001,,17,NE,1953,1953,3102,2,1,2929.907016,2929.907016,3507,NO,37.64,47.91,1,-0.8,6112,111.81017,121.951103,131.638876,137.995364,I,Above,Gable,0,5701,,42.77498441,0,1.2,,,,1,1,,0.35,nav,1,1953,2,, 17896,NJBF000062351,110 E PATCONG AVE,Linwood,NJ,39.3392695,-74.5719855,RES1,3001,,17,NE,1965,1965,3102,2,1,1257.67982,1257.67982,3507,NO,23.17,28.56,1,2.01,6112,111.769575,121.918093,131.606741,137.955832,I,Above,Gable,0,5701,,25.86168187,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17897,NJBF000065124,3 ARROWHEAD DRIVE,Linwood,NJ,39.34619468,-74.58140222,RES1,3001,,16,NE,2001,2001,3102,2,1,1687.096008,1687.096008,3507,NO,39.62,52.62,1,1.96,6106,111.458559,121.6766,131.370221,137.659472,I,Above,Gable,0,5701,,46.12079663,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 17898,NJBF000063684,401 W PATCONG AVE,Linwood,NJ,39.34238359,-74.58156415,RES1,3001,,16,NE,1922,1922,3102,2,1,1369.897916,1369.897916,3505,NO,35.43,40.83,3,2.51,6106,111.517533,121.716918,131.411354,137.712056,I,Above,Gable,0,5701,,38.13126233,0,0,,,,1,1,,0.03,nav,1,1922,2,, 17899,NJBF000063669,218 E DEVONSHIRE AVE,Linwood,NJ,39.34234816,-74.56683637,RES1,3001,,18,NE,2013,2013,3102,2,1,4631.211833,4631.211833,3507,NO,33.26,45.07,1,2.99,6112,111.830692,121.972285,131.658408,138.017735,I,Above,Gable,0,5701,,39.16889728,0,1.2,,,,1,1,,0.35,nav,1,2013,2,, 17900,NJBF000065010,,Linwood,NJ,39.3458935,-74.5818395,RES1,3001,,NaN,NE,1969,0,3102,2,1,1848.95353,1848.95353,3507,NO,38.86,52.24,1,1.07,6110,111.454187,121.672421,131.366459,137.65482,I,Above,Gable,0,5701,,45.54759931,0,0,,,,1,1,,0.03,nav,1,1969,2,, 17901,NJBF000062314,301 W FOREST DR,Linwood,NJ,39.33921198,-74.58281234,RES1,3001,,17,NE,1969,1969,3102,2,1,1912.732791,1912.732791,3505,NO,31.48,46.29,3,0.23,6106,111.544805,121.73171,131.427016,137.732422,I,Above,Hip,0,5701,,38.8853248,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 17902,NJBF000058320,212 W FRANCES AVE,Linwood,NJ,39.33208873,-74.587401,RES1,3001,,16,NE,1962,1962,3102,1,1,1968.142484,1968.142484,3507,NO,10.92,22.23,1,-0.73,6112,111.575522,121.735859,131.432288,137.740254,I,Above,Gable,0,5701,,16.5724641,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 17903,NJBF000068059,101 CAROL ROAD,Linwood,NJ,39.35550623,-74.55427363,RES1,3001,,16,NE,1958,1958,3102,1,1,3308.560807,3308.560807,3507,NO,13.83,23.68,1,-0.62,6106,111.917236,122.044524,131.721254,138.082463,I,Above,Gable,0,5701,,18.75673991,0,1.2,,,,1,1,,0.03,nav,1,1958,1,, 17904,NJBF000069781,4 MILL LANE,Linwood,NJ,39.36390662,-74.57580594,RES1,3001,,18,NE,1994,1994,3101,2,1,4464.555861,4464.555861,3507,NO,33.26,38.48,1,1.33,6112,111.322569,121.580032,131.25592,137.510132,I,Above,Hip,0,5701,,35.87263791,0,1.2,,,,1,1,,0.35,nav,1,1994,2,, 17905,NJBF000056066,11 E OCEAN HEIGHTS AVE,Linwood,NJ,39.32765131,-74.5841062,RES1,3001,,16,NE,1920,1920,3102,1,1,1588.528068,1588.528068,3507,NO,17.45,28.99,1,1.94,6112,111.71828,121.845041,131.53644,137.871615,I,Above,Gable,0,5701,,23.22225178,0,1.1,,,,1,1,,0.35,nav,1,1920,1,, 17906,NJBF000068884,,Linwood,NJ,39.35792582,-74.57650537,RES1,3001,,NaN,NE,1969,0,3101,1,1,3306.032097,3306.032097,3507,NO,19.53,29.48,1,1.8,6110,111.387006,121.631982,131.314866,137.586225,I,Above,Gable,0,5701,,24.50662474,0,0,,,,1,1,,0.35,nav,1,1969,1,, 17907,NJBF000068300,720 RIVER DRIVE,Linwood,NJ,39.35627047,-74.57664306,RES1,3001,,16,NE,1965,1965,3101,1,1,2584.010168,2584.010168,3507,NO,11.48,19.79,1,-0.26,6106,111.407429,121.647543,131.331998,137.608279,I,Above,Gable,0,5701,,15.63486828,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 17908,NJBF000064716,1155 FRANKLIN BLVD,Linwood,NJ,39.34514771,-74.5668365,RES1,3001,,18,NE,1961,1961,3102,2,1,4242.07512,4242.07512,3507,NO,27.52,37.81,1,1.64,6106,111.787522,121.940655,131.62615,137.976794,I,Above,Hip,0,5701,,32.66687507,0,1.2,,,,1,1,,0.03,nav,1,1961,2,, 17909,NJBF000060560,489 SARA ANN CT,Linwood,NJ,39.33618911,-74.58476429,RES1,3001,,16,NE,1965,1965,3102,2,1,2353.903243,2353.903243,3507,NO,29.26,42.17,1,1.18,6106,111.556695,121.733086,131.429243,137.73579,I,Above,Flat,0,5701,,35.71624196,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 17910,NJBF000062854,222 E ARLINGTON AVE,Linwood,NJ,39.34036013,-74.56791722,RES1,3001,,18,NE,1995,1995,3102,2,1,5220.000351,5220.000351,3507,NO,40.35,53.89,1,2.51,6112,111.838674,121.976136,131.662911,138.02425,I,Above,Gable,0,5701,,47.11857058,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 17911,NJBF000064406,216 W SCHOOLHOUSE DR,Linwood,NJ,39.34440976,-74.57969073,RES1,3001,,17,NE,1967,1967,3102,2,1,1804.462694,1804.462694,3507,NO,28.6,42.74,1,0.08,6112,111.523599,121.726278,131.419085,137.721215,I,Above,Gable,0,5701,,35.67038214,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 17912,NJBF000059360,2115 NEW ROAD,Linwood,NJ,39.3340894,-74.58965087,RES1,3001,,17,NE,1987,1987,3102,1,2,2009.598496,2009.598496,3507,NO,19.52,24.54,1,0.54,6112,111.496092,121.67371,131.372901,137.664936,I,Above,Hip,0,5701,,22.03198731,0,0,,,,1,1,,0.35,nav,1,1987,1,, 17913,NJBF000058360,214 W FRANCES AVE,Linwood,NJ,39.33216087,-74.58762281,RES1,3001,,16,NE,1960,1960,3102,1,1,1712.297838,1712.297838,3507,NO,17.21,31.33,1,0.38,6110,111.569887,121.731202,131.427836,137.73463,I,Above,Gable,0,5701,,24.27401297,0,0,,,,1,1,,0.35,nav,1,1960,1,, 17914,NJBF000057662,10 W FRANCES AVE,Linwood,NJ,39.33095399,-74.58408714,RES1,3001,,16,NE,1955,1955,3102,1,1,2419.230042,2419.230042,3507,NO,19.73,24.87,1,2.41,6110,111.660943,121.806133,131.499608,137.825002,I,Above,Gable,0,5701,,22.29890586,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 17915,NJBF000057100,12 SEAGARDEN DR,Linwood,NJ,39.32992284,-74.57987507,RES1,3001,,17,NE,1985,1985,3102,2,1,2823.758124,2823.758124,3507,NO,29.11,34.23,1,1.31,6110,111.763042,121.890686,131.580993,137.926683,I,Above,Gable,0,5701,,31.66889232,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 17916,NJBF000064286,,Linwood,NJ,39.34410454,-74.56657678,RES1,3001,,NaN,NE,1969,0,3102,2,1,1410.299443,1410.299443,3507,NO,35.29,48.23,1,1.18,6112,111.809115,121.956907,131.642575,137.997441,I,Above,Flat,0,5701,,41.75992446,0,0,,,,1,1,,0.15,nav,1,1969,2,, 17917,NJBF000062795,303 W JOSEPH AVE,Linwood,NJ,39.34024299,-74.58110797,RES1,3001,,16,NE,1963,1963,3102,1,1,1997.675739,1997.675739,3505,NO,21.52,32.67,3,2.45,6112,111.562602,121.749251,131.443402,137.752742,I,Above,Gable,0,5701,,27.09724162,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17918,NJBF000057976,,Linwood,NJ,39.3314863,-74.58447732,RES1,3001,,NaN,NE,1956,0,3102,2,1,2483.349281,2483.349281,3507,NO,39.21,51.78,1,1.22,6112,111.643924,121.793152,131.487176,137.809339,I,Above,Gable,0,5701,,45.49456345,0,0,,,,1,1,,0.35,nav,1,1956,2,, 17919,NJBF000056144,14 E OCEAN HGTS AVE,Linwood,NJ,39.32781158,-74.58347653,RES1,3001,,16,NE,1957,1957,3102,1,1,1975.443854,1975.443854,3507,NO,13.78,26.07,1,2.62,6112,111.727866,121.853901,131.545028,137.882308,I,Above,Gable,0,5701,,19.92870417,0,0,,,,1,1,,0.35,nav,1,1957,1,, 17920,NJBF000057343,5 CANDLEWOOD DRIVE,Linwood,NJ,39.33040377,-74.57889596,RES1,3001,,18,NE,1952,1952,3102,2,1,2888.518368,2888.518368,3507,NO,27.98,36.35,1,-0.41,6112,111.774522,121.901846,131.591855,137.94006,I,Above,Flat,0,5701,,32.16139383,0,1.1,,,,1,1,,0.35,nav,1,1952,2,, 17921,NJBF000057588,310 BEECH AVE,Linwood,NJ,39.33083082,-74.58805028,RES1,3001,,16,NE,1964,1964,3102,1,1,2012.26356,2012.26356,3507,NO,16.53,29.44,1,2.53,6112,111.584941,121.739626,131.435812,137.744866,I,Above,Gable,0,5701,,22.98219456,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 17922,NJBF000057722,309 ROYAL AVE,Linwood,NJ,39.33104919,-74.58787117,RES1,3001,,16,NE,1963,1963,3102,1,1,2585.386766,2585.386766,3507,NO,18.14,31.17,1,0.69,6112,111.584599,121.740107,131.436293,137.745444,I,Above,Gable,0,5701,,24.65877401,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17923,NJBF000057939,310 ROYAL AVE,Linwood,NJ,39.33140775,-74.58757081,RES1,3001,,17,NE,1964,1964,3102,1,1,3857.820697,3857.820697,3507,NO,15.1,25.08,1,1.66,6112,111.584157,121.740996,131.437172,137.746503,I,Above,Gable,0,5701,,20.08809235,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 17924,NJBF000058023,209 W FRANCES AVE,Linwood,NJ,39.33156969,-74.58714695,RES1,3001,,16,NE,1959,1959,3102,2,1,1680.778059,1680.778059,3505,NO,28.89,35.53,3,1.19,6112,111.589641,121.746348,131.442304,137.752947,I,Above,Gable,0,5701,,32.20978014,0,1.1,,,,1,1,,0.35,nav,1,1959,2,, 17925,NJBF000058102,2120 SHORE ROAD,Linwood,NJ,39.33172175,-74.58130722,RES1,3001,,16,NE,1910,1910,3102,2,2,3831.636777,3831.636777,3507,NO,22.26,29.7,1,-0.1,6112,111.703253,121.844841,131.536922,137.871478,I,Above,Gable,0,5701,,25.98004321,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 17926,NJBF000058123,2 HOLLYCROFT LANE,Linwood,NJ,39.33175124,-74.5771813,RES1,3001,,17,NE,1968,1968,3102,2,1,4179.618253,4179.618253,3507,NO,23.94,37.55,1,-0.21,6112,111.786367,121.915527,131.605226,137.956313,I,Above,Gable,0,5701,,30.74842325,0,0,,,,1,1,,0.35,nav,1,1968,2,, 17927,NJBF000058221,208 W FRANCES AVE,Linwood,NJ,39.33192119,-74.58691961,RES1,3001,,16,NE,1963,1963,3102,1,1,2843.930941,2843.930941,3507,NO,15.23,22.16,1,-0.11,6112,111.587948,121.746092,131.442075,137.752609,I,Above,Gable,0,5701,,18.69882197,0,0,,,,1,1,,0.35,nav,1,1963,1,, 17928,NJBF000058408,112 E MYRTLE AVE,Linwood,NJ,39.33226077,-74.57681514,RES1,3001,,17,NE,1987,1987,3102,2,1,2818.715939,2818.715939,3507,NO,35.84,41.82,1,1.33,6112,111.785197,121.915854,131.605566,137.956607,I,Above,Gable,0,5701,,38.83067981,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 17929,NJBF000058457,115 E IONA AVE,Linwood,NJ,39.33235381,-74.57623863,RES1,3001,,18,NE,1988,1988,3102,2,1,3127.910976,3127.910976,3507,NO,30.51,38.26,1,1.6,6112,111.795415,121.924695,131.614136,137.967182,I,Above,Gable,0,5701,,34.3872369,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 17930,NJBF000058532,113 E IONA AVE,Linwood,NJ,39.33247969,-74.57657421,RES1,3001,,16,NE,1987,1987,3102,2,1,2035.522151,2035.522151,3507,NO,29.58,38.75,1,-0.74,6112,111.786425,121.917443,131.607112,137.958463,I,Above,Hip,0,5701,,34.1637073,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 17931,NJBF000059107,1905 FRANKLIN BLVD,Linwood,NJ,39.33355792,-74.57600192,RES1,3001,,17,NE,1968,1968,3102,2,1,2317.589393,2317.589393,3507,NO,35.03,46.83,1,2.76,6112,111.779996,121.914707,131.604454,137.95489,I,Above,Gable,0,5701,,40.92906832,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 17932,NJBF000059347,1901 FRANKLIN BLVD,Linwood,NJ,39.33407041,-74.5755087,RES1,3001,,16,NE,1978,1978,3102,1,1,3582.534321,3582.534321,3507,NO,19.66,27.19,1,0.24,6112,111.781564,121.917245,131.60689,137.957758,I,Above,Hip,0,5701,,23.42534589,0,1.2,,,,1,1,,0.35,nav,1,1978,1,, 17933,NJBF000060068,203 EAST DR,Linwood,NJ,39.33534449,-74.57322349,RES1,3001,,17,NE,1964,1964,3102,2,1,2623.885004,2623.885004,3507,NO,36.81,47.89,1,2.28,6112,111.807773,121.941927,131.630729,137.986777,I,Above,Gable,0,5701,,42.35278518,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 17934,NJBF000060274,204 EAST DR,Linwood,NJ,39.3356967,-74.57295686,RES1,3001,,16,NE,1961,1961,3102,1,1,2864.787663,2864.787663,3507,NO,21.19,29.07,1,2.26,6112,111.807493,121.942435,131.631179,137.987215,I,Above,Gable,0,5701,,25.12951111,0,1.2,,,,1,1,,0.35,nav,1,1961,1,, 17935,NJBF000060396,201 E HELENA DR,Linwood,NJ,39.33589797,-74.57269257,RES1,3001,,16,NE,1972,1972,3102,1,1,1886.254814,1886.254814,3507,NO,16.14,30.15,1,1.22,6112,111.809696,121.944673,131.633326,137.98979,I,Above,Gable,0,5701,,23.14102974,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 17936,NJBF000060571,202 E HELENA DR,Linwood,NJ,39.33620701,-74.57247626,RES1,3001,,17,NE,1972,1972,3102,2,1,1918.246018,1918.246018,3507,NO,25.95,34,1,2.97,6112,111.809154,121.944852,131.633454,137.989841,I,Above,Gable,0,5701,,29.97047646,0,1.1,,,,1,1,,0.35,nav,1,1972,2,, 17937,NJBF000060743,208 W MEADOWVIEW AVE,Linwood,NJ,39.33647824,-74.5719218,RES1,3001,,17,NE,1967,1967,3102,2,1,2793.506776,2793.506776,3507,NO,41.27,49.39,1,2.84,6112,111.816318,121.951304,131.639684,137.997406,I,Above,Gable,0,5701,,45.33292572,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 17938,NJBF000060926,209 E HEMLOCK DR,Linwood,NJ,39.33676856,-74.57168245,RES1,3001,,17,NE,1967,1967,3102,2,1,2536.650587,2536.650587,3507,NO,27.96,39.93,1,0.34,6112,111.816597,121.952097,131.640405,137.998187,I,Above,Hip,0,5701,,33.94478493,0,1.1,,,,1,1,,0.35,nav,1,1967,2,, 17939,NJBF000061179,2019 WEST AVE,Linwood,NJ,39.33719653,-74.58761923,RES1,3001,,16,NE,1900,1900,3102,2,1,2192.563824,2192.563824,3505,NO,38.74,50.86,3,1.75,6112,111.481934,121.672272,131.370939,137.662069,I,Above,Gable,0,5701,,44.79748961,0,0,,,,1,1,,0.15,nav,1,1900,2,, 17940,NJBF000061412,203 HOLLY LANE,Linwood,NJ,39.33759767,-74.57160744,RES1,3001,,18,NE,1987,1987,3102,2,1,3188.017062,3188.017062,3507,NO,24.29,35.67,1,-0.87,6112,111.80466,121.943841,131.63221,137.987805,I,Above,Gable,0,5701,,29.97794286,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 17941,NJBF000061484,201 HOLLY LANE,Linwood,NJ,39.33773094,-74.57201799,RES1,3001,,17,NE,1986,1986,3102,2,1,2579.30858,2579.30858,3507,NO,38.88,44.75,1,-0.03,6112,111.793843,121.935196,131.623775,137.977383,I,Above,Hip,0,5701,,41.81601228,0,0,,,,1,1,,0.35,nav,1,1986,2,, 17942,NJBF000061645,111 HOLLY LANE,Linwood,NJ,39.33800219,-74.57265658,RES1,3001,,17,NE,1987,1987,3102,2,1,3044.558565,3044.558565,3507,NO,31.71,36.98,1,2.02,6112,111.775984,121.921019,131.609938,137.960249,I,Above,Hip,0,5701,,34.34561261,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 17943,NJBF000061727,109 HOLLY LANE,Linwood,NJ,39.33815411,-74.57290419,RES1,3001,,18,NE,1987,1987,3102,2,1,2360.253376,2360.253376,3507,NO,30.8,45.29,1,0.49,6112,111.768311,121.914996,131.604053,137.952943,I,Above,Gable,0,5701,,38.04056018,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 17944,NJBF000061795,215 W FOREST DR,Linwood,NJ,39.33826729,-74.58150503,RES1,3001,,16,NE,1965,1965,3102,1,1,2804.188775,2804.188775,3505,NO,14.56,25.27,3,0.05,6112,111.587584,121.765133,131.459386,137.773214,I,Above,Gable,0,5701,,19.91639698,0,0,,,,1,1,,0.35,nav,1,1965,1,, 17945,NJBF000061904,111 E PATCONG AVE,Linwood,NJ,39.33844094,-74.57189633,RES1,3001,,17,NE,1969,1969,3102,2,1,878.1862714,878.1862714,3507,NO,34.24,41.8,1,1.74,6106,111.784875,121.929144,131.617717,137.969661,I,Above,Flat,0,5701,,38.01666889,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 17946,NJBF000062330,205 CHELTENHAM BLVD,Linwood,NJ,39.33923624,-74.56966417,RES1,3001,,18,NE,2014,2014,3102,2,1,4523.692432,4523.692432,3507,NO,37.27,51.98,1,-0.01,6112,111.81932,121.958689,131.646244,138.004367,I,Above,Gable,0,5701,,44.62499685,0,0,,,,1,1,,0.35,nav,1,2014,2,, 17947,NJBF000062369,1 HEATHER LANE,Linwood,NJ,39.33931521,-74.57143893,RES1,3001,,19,NE,1991,1991,3102,2,1,6355.79328,6355.79328,3507,NO,24.77,36.27,1,-0.22,6112,111.780402,121.927032,131.615413,137.966484,I,Above,Hip,0,5701,,30.52116788,0,1.2,,,,1,1,,0.35,nav,1,1991,2,, 17948,NJBF000062423,117 CHELTENHAM BLVD,Linwood,NJ,39.3394241,-74.57050934,RES1,3001,,18,NE,1981,1981,3102,2,1,7073.958246,7073.958246,3507,NO,29.94,39.5,1,2.56,6112,111.798362,121.941894,131.629834,137.984157,I,Above,Gable,0,5701,,34.71929262,0,1.2,,,,1,1,,0.35,nav,1,1981,2,, 17949,NJBF000062634,1450 FRANKLIN BLVD,Linwood,NJ,39.3398862,-74.56987986,RES1,3001,,18,NE,1957,1957,3102,1,1,6444.674713,6444.674713,3507,NO,10.93,24.43,1,-0.8,6112,111.80433,121.94751,131.635155,137.990487,I,Above,Hip,0,5701,,17.67643369,0,1.2,,,,1,1,,0.35,nav,1,1957,1,, 17950,NJBF000062936,220 E ARLINGTON AVE,Linwood,NJ,39.34053912,-74.56835247,RES1,3001,,17,NE,1978,1978,3102,2,1,2476.549947,2476.549947,3507,NO,26.88,41.4,1,1.96,6112,111.82654,121.966549,131.653494,138.01265,I,Above,Hip,0,5701,,34.13791767,0,1.2,,,,1,1,,0.35,nav,1,1978,2,, 17951,NJBF000063048,215 E BERKSHIRE AVE,Linwood,NJ,39.34078438,-74.56816602,RES1,3001,,17,NE,1993,1993,3102,2,1,3866.523041,3866.523041,3507,NO,36.4,42.63,1,-0.84,6112,111.826647,121.966982,131.653832,138.012946,I,Above,Gable,0,5701,,39.51183728,0,1.2,,,,1,1,,0.35,nav,1,1993,2,, 17952,NJBF000063129,314 W JOSEPH AVE,Linwood,NJ,39.34094814,-74.58176741,RES1,3001,,16,NE,1963,1963,3102,1,1,2554.108675,2554.108675,3505,NO,21.23,29.01,3,2.01,6112,111.537187,121.729806,131.424443,137.728814,I,Above,Hip,0,5701,,25.11972587,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17953,NJBF000063168,316 W JOSEPH AVE,Linwood,NJ,39.34104207,-74.58200161,RES1,3001,,16,NE,1963,1963,3102,1,1,2639.397389,2639.397389,3505,NO,8.63,13.7,3,-1.96,6112,111.530752,121.724677,131.419485,137.722572,I,Above,Gable,0,5701,,11.1671475,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17954,NJBF000063187,220 E BERKSHIRE AVE,Linwood,NJ,39.34109251,-74.56766746,RES1,3001,,18,NE,1954,1954,3102,2,1,3226.7879,3226.7879,3507,NO,36.79,50.6,1,1.4,6112,111.832467,121.972121,131.658737,138.018788,I,Above,Flat,0,5701,,43.69618881,0,1.2,,,,1,1,,0.35,nav,1,1954,2,, 17955,NJBF000063346,401 W HAMILTON AVE,Linwood,NJ,39.3414683,-74.58202057,RES1,3001,,16,NE,1961,1961,3102,1,1,1441.349709,1441.349709,3505,NO,19.05,29.9,3,7.47,6112,111.523251,121.719479,131.414296,137.715963,I,Above,Gable,0,5701,,24.47751726,0,1.1,,,,1,1,,0.35,nav,1,1961,1,, 17956,NJBF000063449,232 E CAMBRIDGE AVE,Linwood,NJ,39.34176438,-74.56734684,RES1,3001,,18,NE,2004,2004,3102,2,1,2800.309656,2800.309656,3507,NO,34.59,39.66,1,-0.9,6112,111.828808,121.970044,131.656455,138.015659,I,Above,Hip,0,5701,,37.12420837,0,1.2,,,,1,1,,0.35,nav,1,2004,2,, 17957,NJBF000063502,1606 ADAMS AVE,Linwood,NJ,39.34188272,-74.58142365,RES1,3001,,16,NE,1960,1960,3102,1,1,2135.370576,2135.370576,3505,NO,17.75,29.92,3,0.79,6112,111.528749,121.725044,131.419409,137.722281,I,Above,Gable,0,5701,,23.83771728,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 17958,NJBF000063924,201 W SCHOOLHOUSE DR,Linwood,NJ,39.34308642,-74.57668893,RES1,3001,,18,NE,1973,1973,3102,2,1,2548.288695,2548.288695,3505,NO,35.19,46.96,3,4.47,6112,111.608457,121.79317,131.484211,137.802856,I,Above,Gable,0,5701,,41.07959528,0,1.2,,,,1,1,,0.35,nav,1,1973,2,, 17959,NJBF000063958,203 W SCHOOLHOUSE DR,Linwood,NJ,39.34320381,-74.57699089,RES1,3001,,17,NE,1965,1965,3102,2,1,2810.964334,2810.964334,3505,NO,26.43,37.44,3,-1.31,6112,111.600162,121.786608,131.477822,137.79487,I,Above,Gable,0,5701,,31.93407789,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17960,NJBF000064108,1210 FRANKLIN BLVD,Linwood,NJ,39.34359618,-74.56696525,RES1,3001,,19,NE,1997,1997,3102,2,1,3902.373867,3902.373867,3507,NO,35.07,49.11,1,-0.7,6112,111.808561,121.955917,131.641858,137.996852,I,Above,Gable,0,5701,,42.0904095,0,1.2,,,,1,1,,0.15,nav,1,1997,2,, 17961,NJBF000064154,222 W BELHAVEN AVE,Linwood,NJ,39.34372391,-74.58120904,RES1,3001,,17,NE,1968,1968,3102,2,1,2496.920241,2496.920241,3505,NO,40.09,47.9,3,4.44,6112,111.502868,121.707824,131.401844,137.699798,I,Above,Gable,0,5701,,43.99492259,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 17962,NJBF000064148,219 W MORRIS AVE,Linwood,NJ,39.34371166,-74.58043397,RES1,3001,,17,NE,1967,1967,3102,1,1,4664.29808,4664.29808,3505,NO,15.95,28.16,3,-2.99,6112,111.519323,121.721343,131.414803,137.716046,I,Above,Gable,0,5701,,22.05474358,0,0,,,,1,1,,0.35,nav,1,1967,1,, 17963,NJBF000064176,204 W SCHOOLHOUSE DR,Linwood,NJ,39.34378729,-74.57712621,RES1,3001,,18,NE,1970,1970,3102,2,1,2522.12276,2522.12276,3507,NO,38.41,45.5,1,1.02,6112,111.587907,121.777667,131.46887,137.783536,I,Above,Gable,0,5701,,41.95527077,0,1.2,,,,1,1,,0.35,nav,1,1970,2,, 17964,NJBF000064189,301 W SCHOOLHOUSE DR,Linwood,NJ,39.34382877,-74.58073336,RES1,3001,,17,NE,1966,1966,3102,2,1,2557.03133,2557.03133,3507,NO,30.65,37.81,1,0.85,6112,111.511132,121.714853,131.40851,137.70813,I,Above,Hip,0,5701,,34.22913327,0,1.2,,,,1,1,,0.35,nav,1,1966,2,, 17965,NJBF000064262,208 W SCHOOLHOUSE DR,Linwood,NJ,39.34404091,-74.57777781,RES1,3001,,16,NE,1966,1966,3102,1,1,3891.738359,3891.738359,3507,NO,14.1,20.47,1,2.15,6112,111.570004,121.763517,131.455095,137.766296,I,Above,Gable,0,5701,,17.28395209,0,1.2,,,,1,1,,0.35,nav,1,1966,1,, 17966,NJBF000064308,210 W SCHOOLHOUSE DR,Linwood,NJ,39.34417448,-74.57824735,RES1,3001,,18,NE,1971,1971,3102,2,1,2383.517967,2383.517967,3507,NO,36.31,43.28,1,1.01,6112,111.557931,121.753904,131.445767,137.754621,I,Above,Gable,0,5701,,39.79447686,0,1.2,,,,1,1,,0.35,nav,1,1971,2,, 17967,NJBF000064666,112 E GLENSIDE AVE,Linwood,NJ,39.34502895,-74.56750156,RES1,3001,,18,NE,2013,2013,3102,2,1,7294.92384,7294.92384,3507,NO,21.69,35.25,1,0.46,6112,111.774892,121.930429,131.616233,137.964748,I,Above,Hip,0,5701,,28.46649653,0,1.2,,,,1,1,,0.35,nav,1,2013,2,, 17968,NJBF000065243,1101 WOODE-LYNNE BLVD,Linwood,NJ,39.34649639,-74.56822419,RES1,3001,,19,NE,2005,2005,3102,2,1,5132.434377,5132.434377,3507,NO,32.15,43.76,1,-0.73,6112,111.736826,121.901412,131.587061,137.928234,I,Above,Hip,0,5701,,37.95292011,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 17969,NJBF000065544,7 E DELMAR AVE,Linwood,NJ,39.34740522,-74.56744446,RES1,3001,,18,NE,2008,2008,3102,2,1,2962.168128,2962.168128,3507,NO,23.51,31.09,1,1.41,6112,111.740074,121.90478,131.589749,137.93099,I,Above,Gable,0,5701,,27.30262124,0,1.2,,,,1,1,,0.35,nav,1,2008,2,, 17970,NJBF000065596,109 DAIRY LANE,Linwood,NJ,39.34755764,-74.56561751,RES1,3001,,17,NE,1966,1966,3102,2,1,3052.300932,3052.300932,3507,NO,30.17,41.75,1,-0.24,6112,111.777695,121.934794,131.618965,137.966545,I,Above,Gable,0,5701,,35.96078567,0,0.2,,,,1,1,,0.35,nav,1,1966,2,, 17971,NJBF000066727,1015 RICHARD DR,Linwood,NJ,39.35058857,-74.57845396,RES1,3001,,17,NE,1967,1967,3101,1,1,1452.013392,1452.013392,3507,NO,19.06,24.59,1,0.87,6112,111.452286,121.678533,131.368179,137.655608,I,Above,Hip,0,5701,,21.82614494,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 17972,NJBF000066793,1013 RICHARD DR,Linwood,NJ,39.35079715,-74.57828922,RES1,3001,,17,NE,1966,1966,3101,1,1,2807.099437,2807.099437,3507,NO,11.05,20.85,1,-0.66,6112,111.452664,121.679085,131.368502,137.655939,I,Above,Hip,0,5701,,15.95304165,0,1.2,,,,1,1,,0.35,nav,1,1966,1,, 17973,NJBF000066862,1011 RICHARD DR,Linwood,NJ,39.35105485,-74.57810438,RES1,3001,,16,NE,1967,1967,3101,1,1,1762.184292,1762.184292,3507,NO,18.58,27.05,1,0.64,6112,111.452725,121.679431,131.368575,137.65594,I,Above,Gable,0,5701,,22.81512278,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 17974,NJBF000067324,512 W VAN SANT AVE,Linwood,NJ,39.35308352,-74.57823546,RES1,3001,,17,NE,1967,1967,3101,2,1,1539.253841,1539.253841,3507,NO,31.31,36.59,1,-0.04,6112,111.419152,121.654812,131.342784,137.622981,I,Above,Flat,0,5701,,33.9505605,0,1.1,,,,1,1,,0.35,nav,1,1967,2,, 17975,NJBF000067404,513 W PIERCE AVE,Linwood,NJ,39.3533486,-74.57805303,RES1,3001,,16,NE,1965,1965,3101,1,1,2073.343379,2073.343379,3507,NO,12.74,23.37,1,0.71,6112,111.419165,121.655051,131.342714,137.622798,I,Above,Gable,0,5701,,18.05687042,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17976,NJBF000067513,512 W PIERCE AVE,Linwood,NJ,39.35369495,-74.57783319,RES1,3001,,17,NE,1965,1965,3101,2,1,1905.648207,1905.648207,3507,NO,23.77,33.46,1,2.14,6112,111.418826,121.655062,131.34233,137.62219,I,Above,Gable,0,5701,,28.61553328,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 17977,NJBF000067610,513 W MARIE AVE,Linwood,NJ,39.35395202,-74.57766527,RES1,3001,,17,NE,1965,1965,3101,2,1,1898.860244,1898.860244,3507,NO,34.9,41.45,1,0.07,6112,111.418696,121.655152,131.34212,137.621832,I,Above,Gable,0,5701,,38.17716198,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 17978,NJBF000067764,517 W POPLAR AVE,Linwood,NJ,39.35442214,-74.57737491,RES1,3001,,16,NE,1970,1970,3101,1,1,2049.095025,2049.095025,3507,NO,18.67,26.97,1,-0.66,6112,111.418126,121.655025,131.341449,137.620814,I,Above,Gable,0,5701,,22.81975606,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 17979,NJBF000067865,510 W POPLAR AVE,Linwood,NJ,39.35482126,-74.57704268,RES1,3001,,17,NE,1962,1962,3101,2,1,2528.890355,2528.890355,3507,NO,26.37,36.71,1,2.02,6112,111.419578,121.656408,131.342305,137.621724,I,Above,Gable,0,5701,,31.53741058,0,0,,,,1,1,,0.35,nav,1,1962,2,, 17980,NJBF000067905,507 W STERLING AVE,Linwood,NJ,39.35495894,-74.57660285,RES1,3001,,16,NE,1963,1963,3101,1,1,3609.67659,3609.67659,3507,NO,17.72,25.06,1,0.21,6112,111.427257,121.662512,131.34801,137.628781,I,Above,Gable,0,5701,,21.3936986,0,0,,,,1,1,,0.35,nav,1,1963,1,, 17981,NJBF000067936,509 W STERLING AVE,Linwood,NJ,39.35508225,-74.57685466,RES1,3001,,17,NE,1964,1964,3101,1,1,1850.394623,1850.394623,3507,NO,19.19,29.29,1,2.53,6112,111.419912,121.656811,131.342379,137.621711,I,Above,Gable,0,5701,,24.24026503,0,0,,,,1,1,,0.35,nav,1,1964,1,, 17982,NJBF000068006,508 W STERLING AVE,Linwood,NJ,39.35531503,-74.57624526,RES1,3001,,16,NE,1963,1963,3101,1,1,2826.496633,2826.496633,3507,NO,15.41,28.75,1,-0.19,6112,111.429985,121.664821,131.349805,137.630867,I,Above,Gable,0,5701,,22.08052836,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 17983,NJBF000068037,505 W WILSON AVE,Linwood,NJ,39.3554228,-74.57572531,RES1,3001,,16,NE,1965,1965,3101,1,1,2327.28832,2327.28832,3507,NO,17.5,31.83,1,2.87,6112,111.43991,121.67264,131.357204,137.64003,I,Above,Gable,0,5701,,24.66707756,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 17984,NJBF000068048,510 W STERLING AVE,Linwood,NJ,39.3554544,-74.57655586,RES1,3001,,17,NE,1963,1963,3101,2,1,3426.007585,3426.007585,3507,NO,37.11,47.88,1,0.19,6112,111.421107,121.657927,131.343001,137.622333,I,Above,Gable,0,5701,,42.49351897,0,0,,,,1,1,,0.35,nav,1,1963,2,, 17985,NJBF000068078,502 W WILSON AVE,Linwood,NJ,39.3555543,-74.57473293,RES1,3001,,16,NE,1967,1967,3101,1,1,2372.842916,2372.842916,3507,NO,14.87,29.69,1,1.27,6112,111.459967,121.68838,131.372222,137.65863,I,Above,Gable,0,5701,,22.2799196,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 17986,NJBF000068097,504 W WILSON AVE,Linwood,NJ,39.35563412,-74.57508326,RES1,3001,,16,NE,1964,1964,3101,1,1,1816.471571,1816.471571,3507,NO,21.51,28.44,1,2.69,6112,111.451074,121.68145,131.365442,137.650174,I,Above,Gable,0,5701,,24.9739202,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 17987,NJBF000068204,109 CAROL RD,Linwood,NJ,39.35599301,-74.55632299,RES1,3001,,16,NE,1959,1959,3102,1,1,3483.658465,3483.658465,3507,NO,12.81,21.27,1,0.38,6112,111.864762,122.003449,131.680059,138.032857,I,Above,Gable,0,5701,,17.0418642,0,1.2,,,,1,1,,0.35,nav,1,1959,1,, 17988,NJBF000068224,105 CAROL RD,Linwood,NJ,39.35605311,-74.5555749,RES1,3001,,16,NE,1961,1961,3102,1,1,1914.363651,1914.363651,3507,NO,15.3,24.93,1,-0.03,6112,111.880749,122.015839,131.6923,138.047381,I,Above,Hip,0,5701,,20.11461749,0,1.1,,,,1,1,,0.35,nav,1,1961,1,, 17989,NJBF000068463,527 W BARR AVE,Linwood,NJ,39.35685015,-74.57545703,RES1,3001,,15,NE,1932,1932,3101,1,1,658.1549344,658.1549344,3507,NO,15.44,25.94,1,0.18,6112,111.425457,121.661758,131.344952,137.62415,I,Above,Flat,0,5701,,20.68739644,0,0,,,,1,1,,0.35,nav,1,1932,1,, 17990,NJBF000068465,515 W BARR AVE,Linwood,NJ,39.35685447,-74.57485883,RES1,3001,,15,NE,1920,1920,3101,2,1,1560.566605,1560.566605,3507,NO,22.34,30.71,1,0.72,6112,111.438682,121.672061,131.354882,137.636486,I,Above,Gable,0,5701,,26.52773335,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 17991,NJBF000068484,519 W BARR AVE,Linwood,NJ,39.35692192,-74.57501283,RES1,3001,,16,NE,1930,1930,3101,1,1,1333.750626,1333.750626,3507,NO,15.26,20.66,1,-0.7,6112,111.434301,121.668659,131.351514,137.632271,I,Above,Gable,0,5701,,17.96209773,0,1.1,,,,1,1,,0.35,nav,1,1930,1,, 17992,NJBF000068509,523 W BARR AVE,Linwood,NJ,39.35696611,-74.57518467,RES1,3001,,15,NE,1927,1927,3101,1,1,1386.10433,1386.10433,3507,NO,12.38,22.68,1,0.72,6112,111.429859,121.665205,131.348127,137.628044,I,Above,Gable,0,5701,,17.53279409,0,1.1,,,,1,1,,0.35,nav,1,1927,1,, 17993,NJBF000068525,535 W BARR AVE,Linwood,NJ,39.35701024,-74.57577606,RES1,3001,,15,NE,1932,1932,3101,1,1,511.7889864,511.7889864,3507,NO,11.94,24.29,1,-0.12,6112,111.416111,121.654504,131.337757,137.61513,I,Above,Hip,0,5701,,18.11072375,0,1.1,,,,1,1,,0.35,nav,1,1932,1,, 17994,NJBF000068527,527 W BARR AVE,Linwood,NJ,39.35702007,-74.57534132,RES1,3001,,15,NE,1932,1932,3101,1,1,1245.553775,1245.553775,3507,NO,16.65,21.67,1,1.11,6112,111.425631,121.661921,131.344892,137.623998,I,Above,Gable,0,5701,,19.15913228,0,0,,,,1,1,,0.35,nav,1,1932,1,, 17995,NJBF000068554,531 W BARR AVE,Linwood,NJ,39.35710209,-74.57550683,RES1,3001,,15,NE,1926,1926,3101,1,1,953.7948715,953.7948715,3507,NO,15.7,26.83,1,1.11,6112,111.420786,121.65816,131.341161,137.619322,I,Above,Gable,0,5701,,21.26324884,0,1.1,,,,1,1,,0.35,nav,1,1926,1,, 17996,NJBF000068574,535 W BARR AVE,Linwood,NJ,39.35715229,-74.57565831,RES1,3001,,15,NE,1932,1932,3101,1,1,1318.245561,1318.245561,3507,NO,13.5,19.58,1,-0.61,6112,111.416725,121.655006,131.338058,137.61544,I,Above,Gable,0,5701,,16.54014428,0,1.1,,,,1,1,,0.35,nav,1,1932,1,, 17997,NJBF000068935,4 SANDY COURT,Linwood,NJ,39.35807396,-74.57528873,RES1,3001,,16,NE,1975,1975,3101,1,1,2808.059611,2808.059611,3507,NO,15.47,29.01,1,1.33,6112,111.412015,121.651409,131.333382,137.609202,I,Above,Gable,0,5701,,22.24110541,0,1.2,,,,1,1,,0.35,nav,1,1975,1,, 17998,NJBF000069117,411 DANIELLE DRIVE,Linwood,NJ,39.3588366,-74.57493362,RES1,3001,,17,NE,1977,1977,3101,2,1,2294.339923,2294.339923,3507,NO,34.82,42.46,1,0.33,6112,111.409382,121.649312,131.330333,137.605049,I,Above,Gable,0,5701,,38.63766655,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 17999,NJBF000069242,412 CEDARBROOK LANE W,Linwood,NJ,39.35933,-74.57561415,RES1,3001,,17,NE,1980,1980,3101,1,1,2360.23164,2360.23164,3507,NO,11.07,23.2,1,0.55,6112,111.38742,121.632243,131.313191,137.583512,I,Above,Gable,0,5701,,17.13856134,0,0,,,,1,1,,0.35,nav,1,1980,1,, 18000,NJBF000069311,408 CEDARBROOK LANE W,Linwood,NJ,39.35962482,-74.57552466,RES1,3001,,17,NE,1978,1978,3101,2,1,2096.588165,2096.588165,3507,NO,27.82,37.26,1,2.1,6112,111.38538,121.630608,131.3112,137.580899,I,Above,Gable,0,5701,,32.54395687,0,1.2,,,,1,1,,0.35,nav,1,1978,2,, 18001,NJBF000069674,12 WEXFORD LANE,Linwood,NJ,39.36275692,-74.57422248,RES1,3001,,19,NE,1995,1995,3101,2,1,5434.851247,5434.851247,3507,NO,30.23,39.7,1,2.18,6112,111.373093,121.619608,131.29596,137.560424,I,Above,Hip,0,5701,,34.96510419,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 18002,NJBF000069700,9 MILL LANE,Linwood,NJ,39.36308204,-74.57452725,RES1,3001,,18,NE,1996,1996,3101,2,1,3582.524767,3582.524767,3507,NO,27.04,38.26,1,1.7,6112,111.362021,121.610879,131.287019,137.549168,I,Above,Gable,0,5701,,32.64726929,0,1.2,,,,1,1,,0.35,nav,1,1996,2,, 18003,NJBF000069747,5 MILL LANE,Linwood,NJ,39.36359864,-74.57492547,RES1,3001,,18,NE,1989,1989,3101,2,1,3238.438635,3238.438635,3507,NO,32.84,39.36,1,0.03,6112,111.346408,121.598509,131.274252,137.533064,I,Above,Gable,0,5701,,36.10044247,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 18004,NJBF000069810,1 MILL LANE,Linwood,NJ,39.36418926,-74.5749269,RES1,3001,,18,NE,1983,1983,3101,2,1,3100.787879,3100.787879,3507,NO,23.58,33.89,1,1.01,6112,111.338872,121.592215,131.267224,137.524042,I,Above,Gable,0,5701,,28.73114842,0,1.2,,,,1,1,,0.35,nav,1,1983,2,, 18005,NJBF000069871,10 EVERGREEN ROAD,Linwood,NJ,39.36469295,-74.57470291,RES1,3001,,19,NE,2005,2005,3101,2,1,3917.909274,3917.909274,3507,NO,38.98,44.22,1,1.14,6112,111.337609,121.590743,131.264981,137.521001,I,Above,Hip,0,5701,,41.60038146,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 18006,NJBF000069977,1 POND LANE,Linwood,NJ,39.36529787,-74.57573716,RES1,3001,,17,NE,1982,1982,3101,2,1,3700.794422,3700.794422,3507,NO,27.26,33.96,1,0.64,6112,111.306641,121.566505,131.240561,137.49037,I,Above,Gable,0,5701,,30.61026094,0,1.2,,,,1,1,,0.35,nav,1,1982,2,, 18007,NJBF000069995,4 POND LANE,Linwood,NJ,39.3653782,-74.57646938,RES1,3001,,18,NE,1985,1985,3101,2,1,5425.18368,5425.18368,3507,NO,26.05,36.79,1,0.31,6110,111.289055,121.553037,131.227434,137.473993,I,Above,Hip,0,5701,,31.41876386,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 18008,NJBF000070054,6 POND LANE,Linwood,NJ,39.36563409,-74.57679887,RES1,3001,,19,NE,1988,1988,3101,2,1,6483.652451,6483.652451,3507,NO,38.92,50.63,1,1.91,6110,111.278399,121.544649,131.218909,137.463255,I,Above,Hip,0,5701,,44.77403442,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 18009,NJBF000070109,5 POND LANE,Linwood,NJ,39.36586718,-74.57697253,RES1,3001,,17,NE,1983,1983,3101,2,1,3686.2424,3686.2424,3507,NO,29.14,38.43,1,0.92,6110,111.271575,121.539196,131.21325,137.456097,I,Above,Gable,0,5701,,33.78770158,0,1.2,,,,1,1,,0.35,nav,1,1983,2,, 18010,NJBF000070208,10 POND LANE,Linwood,NJ,39.36622762,-74.57722094,RES1,3001,,18,NE,1994,1994,3101,2,1,5087.839782,5087.839782,3507,NO,38.96,48.67,1,0.93,6112,111.261511,121.531125,131.204841,137.445452,I,Above,Hip,0,5701,,43.81114966,0,1.2,,,,1,1,,0.35,nav,1,1994,2,, 18011,NJBF000070250,15 LAKE DRIVE,Linwood,NJ,39.36641916,-74.57768734,RES1,3001,,16,NE,1960,1960,3101,1,1,1762.533357,1762.533357,3507,NO,15.59,25.29,1,2.52,6112,111.248596,121.521091,131.194841,137.432886,I,Above,Gable,0,5701,,20.44022893,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 18012,NJBF000070315,5 PARK RD,Linwood,NJ,39.36666913,-74.57746077,RES1,3001,,17,NE,1964,1964,3101,2,1,2117.916362,2117.916362,3507,NO,36.76,42.89,1,2.91,6112,111.250682,121.522358,131.195613,137.433748,I,Above,Gable,0,5701,,39.82236899,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 18013,NJBF000070406,9 LAKE DR,Linwood,NJ,39.36698321,-74.57796199,RES1,3001,,16,NE,1960,1960,3101,1,1,2823.561766,2823.561766,3507,NO,20.37,29.14,1,2.89,6110,111.235493,121.510437,131.183572,137.418577,I,Above,Gable,0,5701,,24.75786962,0,0,,,,1,1,,0.35,nav,1,1960,1,, 18014,NJBF000070423,8 LAKE DR,Linwood,NJ,39.36706144,-74.57843942,RES1,3001,,17,NE,2015,2015,3101,1,1,661.0622773,661.0622773,3507,NO,15.02,26.05,1,-0.29,6110,111.22371,121.501409,131.174746,137.407507,I,Above,Gable,0,5701,,20.53417654,0,1.2,,,,1,1,,0.35,nav,1,2015,1,, 18015,NJBF000070494,2277 W BURROUGHS AVE,Linwood,NJ,39.36735478,-74.57790226,RES1,3001,,16,NE,1963,1963,3101,1,1,3360.567456,3360.567456,3507,NO,18.55,29.63,1,2.31,6112,111.232378,121.507573,131.180135,137.414135,I,Above,Gable,0,5701,,24.08721644,0,1.2,,,,1,1,,0.35,nav,1,1963,1,, 18016,NJBF000070542,1 LAKE DRIVE,Linwood,NJ,39.36752686,-74.57828925,RES1,3001,,16,NE,1961,1961,3101,2,1,4130.17442,4130.17442,3507,NO,35.09,46.79,1,0.88,6110,111.221516,121.499112,131.171678,137.403491,I,Above,Gable,0,5701,,40.94322674,0,1.2,,,,1,1,,0.35,nav,1,1961,2,, 18017,NJBF000067288,125 MARGATE BLVD.,Linwood,NJ,39.35291601,-74.53921966,RES3B,3001,510,NaN,ME,1969,0,3301,1,1,1258.161222,1258.161222,3505,NO,26.42,36.07,3,6.93,6106,112.289359,122.336527,132.015926,138.431114,I,Above,Flat,0,NaN,,31.24710086,0,0,,,,1,1,,0.03,nav,1,1969,1,, 18018,NJBF000059830,319 MELODY LANE,Linwood,NJ,39.33492165,-74.58553605,RES1,3001,,16,NE,1965,1965,3102,2,2,4171.398799,4171.398799,3507,NO,30.86,38.54,1,1.25,6106,111.563083,121.734589,131.430907,137.738095,I,Above,Gable,0,5701,,34.69950612,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 18019,NJBF000062382,303 W FOREST DR,Linwood,NJ,39.33931096,-74.58303581,RES1,3001,,17,NE,1985,1985,3102,2,1,2024.192615,2024.192615,3505,NO,30.5,38.09,3,5.02,6106,111.538538,121.726709,131.422191,137.726342,I,Above,Gable,0,5701,,34.29711562,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 18020,NJBF000052576,7 SO MANOR AVE,Longport,NJ,39.31567939,-74.52322665,RES1,3001,,20,NE,2017,2017,3102,3,1,2323.35781,2323.35781,3505,NO,35.08,40.55,3,-2.15,6106,113.184899,123.041283,132.722556,139.276051,I,Above,Flat,0,5701,,37.81572952,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 18021,NJBF000051880,,Longport,NJ,39.31141854,-74.53899796,COM8,3001,,NaN,ME,1969,0,3401,3,1,798.0760299,798.0760299,3502,NO,41.39,50.56,5,0.62,6102,112.916335,122.816966,132.488853,139.012083,I,Above,Flat,0,NaN,,45.97546751,0,0,,,,1,1,,0.03,nav,1,1969,3,, 18022,NJBF000052514,29TH & VENTNOR AVES,Longport,NJ,39.31524554,-74.52550947,RES1,3001,,NaN,NE,1969,0,3102,2,1,1171.239316,1171.239316,3505,NO,39.68,52.5,3,6.11,6106,113.142597,123.006489,132.686379,139.235529,I,Above,Gable,0,5701,,46.08932811,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18023,NJBF000052200,15 SUNSET BLVD.,Longport,NJ,39.31336195,-74.53710503,RES1,3001,,19,NE,2002,2002,3102,2,1,2124.248104,2124.248104,3507,NO,28.7,43.68,1,-0.42,6106,112.925035,122.826718,132.500817,139.025674,I,Above,Gable,0,5701,,36.18565677,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18024,NJBF000052084,42 SEAVIEW DRIVE,Longport,NJ,39.31282872,-74.53449449,RES1,3001,,19,NE,1982,1982,3102,2,1,3104.251536,3104.251536,3507,NO,34.08,42.19,1,-0.08,6106,112.988933,122.878425,132.552902,139.084941,I,Above,Hip,0,5701,,38.13761247,0,1.2,,,,1,1,,0.03,nav,1,1982,2,, 18025,NJBF000052377,103 HOSPITALITY DRIVE,Longport,NJ,39.3142607,-74.53694735,RES1,3001,,18,NE,2002,2002,3102,2,1,2082.284239,2082.284239,3507,NO,28.91,35.25,1,-0.61,6106,112.913978,122.818803,132.493676,139.017477,I,Above,Hip,0,5701,,32.07957219,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18026,NJBF000052293,38 SUNSET BLVD.,Longport,NJ,39.31382755,-74.53475807,RES1,3001,,18,NE,1965,1965,3102,2,1,2697.972692,2697.972692,3507,NO,23.82,38.11,1,0.4,6106,112.967374,122.861997,132.5372,139.067087,I,Above,Hip,0,5701,,30.96732147,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 18027,NJBF000052273,36 SUNSET BLVD.,Longport,NJ,39.31373056,-74.53493397,RES1,3001,,19,NE,2011,2011,3102,2,1,2216.564516,2216.564516,3507,NO,36.11,45.81,1,0.01,6106,112.965183,122.860085,132.535153,139.064762,I,Above,Hip,0,5701,,40.95780137,0,0,,,,1,1,,0.03,nav,1,2011,2,, 18028,NJBF000052380,4 SUNSET BLVD.,Longport,NJ,39.31428544,-74.53560562,RES1,3001,,16,NE,1965,1965,3102,2,1,1416.02391,1416.02391,3507,NO,26.73,41.07,1,1.74,6106,112.942063,122.841837,132.517133,139.044228,I,Above,Gable,0,5701,,33.89735967,0,0,,,,1,1,,0.03,nav,1,1965,2,, 18029,NJBF000052360,6 SUNSET BLVD.,Longport,NJ,39.31415487,-74.53551462,RES1,3001,,16,NE,1963,1959,3102,2,1,2123.515191,2123.515191,3507,NO,26.3,39.28,1,-0.67,6106,112.946072,122.844959,132.52018,139.047706,I,Above,Hip,0,5701,,32.79157971,0,0,,,,1,1,,0.03,nav,1,1963,2,, 18030,NJBF000052719,,Longport,NJ,39.31671957,-74.51954135,RES1,3001,,NaN,NE,1969,0,3102,2,1,2403.074903,2403.074903,3505,NO,35.34,47.05,3,3.54,6106,113.248251,123.093603,132.777474,139.337344,I,Above,Flat,0,5701,,41.19235914,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18031,NJBF000052707,,Longport,NJ,39.31665904,-74.5196909,RES1,3001,,NaN,NE,2014,0,3102,2,1,1985.837954,1985.837954,3505,NO,33.63,45.48,3,4.14,6106,113.245951,123.091688,132.775439,139.335076,I,Above,Flat,0,5701,,39.55625303,0,0,,,,1,1,,0.03,nav,1,2014,2,, 18032,NJBF000052922,25 SO 33RD AVE,Longport,NJ,39.31780253,-74.51968849,RES1,3001,,18,NE,1954,1954,3102,1,1,1210.608348,1210.608348,3505,NO,13.46,23.02,3,-2.05,6106,113.228412,123.078407,132.762894,139.321125,I,Above,Gable,0,5701,,18.23816976,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 18033,NJBF000053108,5 SO 34TH AVE.,Longport,NJ,39.31872271,-74.51929142,RES1,3001,,20,NE,2009,2009,3102,3,1,1077.063123,1077.063123,3505,NO,30.73,43.51,3,-2.16,6106,113.222892,123.074657,132.75992,139.317782,I,Above,Flat,0,5701,,37.11978061,0,0,,,,1,1,,0.03,nav,1,2009,3,, 18034,NJBF000052831,3019 VENTNOR AVE,Longport,NJ,39.31737354,-74.52295877,RES1,3001,,18,NE,1969,1969,3102,2,1,2015.42688,2015.42688,3505,NO,37.87,52.64,3,5.87,6106,113.164386,123.026148,132.70869,139.260535,I,Above,Gable,0,5701,,45.25782506,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 18035,NJBF000052862,4 NO 31ST AVE,Longport,NJ,39.31751257,-74.52313154,RES1,3001,,17,NE,1954,1954,3102,1,1,2152.148476,2152.148476,3505,NO,19.83,26.36,3,3.15,6106,113.158504,123.021498,132.704045,139.255323,I,Above,Hip,0,5701,,23.09637056,0,0,,,,1,1,,0.03,nav,1,1954,1,, 18036,NJBF000053215,27 NO YARMOUTH AVE,Longport,NJ,39.31912628,-74.52178154,RES1,3001,,20,NE,2017,2017,3102,2,1,957.6481058,957.6481058,3505,NO,36.29,42.41,3,3.68,6106,113.162806,123.026326,132.710532,139.262482,I,Above,Gable,0,5701,,39.34964311,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 18037,NJBF000053157,31 NO 32ND AVE,Longport,NJ,39.3189285,-74.52235983,RES1,3001,,18,NE,1950,1950,3102,2,1,762.3913399,762.3913399,3505,NO,40.78,52.17,3,5.24,6106,113.15335,123.018509,132.70231,139.253277,I,Above,Gable,0,5701,,46.47324119,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18038,NJBF000053132,25 NO 32ND AVE,Longport,NJ,39.31881616,-74.52226143,RES1,3001,,18,NE,1952,1952,3102,1,1,1316.613927,1316.613927,3505,NO,18.54,26.31,3,7.55,6106,113.157213,123.021547,132.70533,139.256677,I,Above,Gable,0,5701,,22.42326628,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18039,NJBF000053148,12 SO 36TH AVE,Longport,NJ,39.31889574,-74.51827818,RES1,3001,,20,NE,2006,2006,3102,3,1,2099.969034,2099.969034,3505,NO,50.17,63.98,3,7.01,6106,113.242187,123.090404,132.776324,139.336072,I,Above,Flat,0,5701,,57.07244926,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18040,NJBF000053436,17 NO 34TH AVE,Longport,NJ,39.3199285,-74.5204575,RES1,3001,,20,NE,2010,2010,3102,3,1,1874.682071,1874.682071,3505,NO,54.39,63.1,3,0.37,6106,113.179168,123.040189,132.725534,139.279207,I,Above,Gable,0,5701,,58.7433802,0,0,,,,1,1,,0.03,nav,1,2010,3,, 18041,NJBF000053405,13 NO 34TH AVE,Longport,NJ,39.31982728,-74.52032629,RES1,3001,,20,NE,2017,2017,3102,3,1,1196.715305,1196.715305,3505,NO,63,72.93,3,8.25,6106,113.183587,123.043687,132.729044,139.283153,I,Above,Gable,0,5701,,67.96630376,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 18042,NJBF000051856,115 SO 24TH AVE,Longport,NJ,39.31128002,-74.52583683,RES1,3001,,20,NE,1990,1990,3102,3,1,1410.115196,1410.115196,3505,NO,34.94,45.09,3,0.63,6106,113.197886,123.04746,132.724117,139.27738,I,Above,Flat,0,5701,,40.01589725,0,0,,,,1,1,,0.03,nav,1,1990,3,, 18043,NJBF000053537,102 NO 34TH AVE,Longport,NJ,39.32030672,-74.52133158,RES1,3001,,20,NE,2004,2004,3102,2,1,2412.372045,2412.372045,3505,NO,35.82,46.94,3,0.04,6106,113.154453,123.02048,132.705588,139.256772,I,Above,Hip,0,5701,,41.37930927,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18044,NJBF000053920,130 NO 36TH AVE,Longport,NJ,39.32177046,-74.52097961,RES1,3001,,18,NE,1950,1950,3102,1,1,749.8489177,749.8489177,3505,NO,17.48,32.43,3,-0.3,6106,113.139781,123.009682,132.695746,139.245402,I,Above,Gable,0,5701,,24.95685417,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18045,NJBF000051507,116 SO 18TH AVE,Longport,NJ,39.3077805,-74.530962,RES1,3001,,21,NE,2014,2014,3102,3,1,2456.693839,2456.693839,3505,NO,60.9,75.13,3,2.46,6106,113.144648,122.999817,132.671087,139.21772,I,Above,Gable,0,5701,,68.01156725,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 18046,NJBF000052688,28 SO WOODCREST AVE,Longport,NJ,39.31656583,-74.52136094,RES1,3001,,18,NE,1950,1950,3102,1,1,930.0103555,930.0103555,3505,NO,19.04,32.43,3,5.31,6106,113.211347,123.063544,132.746356,139.302662,I,Above,Gable,0,5701,,25.73256342,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18047,NJBF000052533,4 SO MANOR AVE,Longport,NJ,39.31538787,-74.52348076,RES1,3001,,20,NE,2016,2016,3102,3,1,1497.46202,1497.46202,3505,NO,31.8,36.92,3,0.19,6106,113.183962,123.040253,132.721198,139.27452,I,Above,Gable,0,5701,,34.36058529,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 18048,NJBF000053094,,Longport,NJ,39.31864925,-74.51836167,RES1,3001,,NaN,NE,1969,0,3102,2,1,2138.009278,2138.009278,3505,NO,34.47,45.07,3,8.9,6106,113.244142,123.091801,132.777527,139.337423,I,Above,Flat,0,5701,,39.77152958,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18049,NJBF000052838,10 NO EVERGREEN AVE,Longport,NJ,39.31739454,-74.52372223,RES1,3001,,18,NE,1948,1948,3102,2,1,1202.791139,1202.791139,3505,NO,35.71,41.06,3,-0.68,6106,113.147608,123.012555,132.694743,139.244894,I,Above,Gable,0,5701,,38.38668689,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 18050,NJBF000052580,2805 SUNSET AVE,Longport,NJ,39.31570594,-74.52648377,RES1,3001,,19,NE,1978,1978,3103,2,1,1318.069412,1318.069412,3505,NO,31.39,45.79,3,7.3,6106,113.114474,122.984065,132.663844,139.210227,I,Above,Flat,0,5701,,38.59002191,0,0,,,,1,1,,0.03,nav,1,1978,2,, 18051,NJBF000053989,217 NO 34TH AVE,Longport,NJ,39.32202752,-74.52247651,RES1,3001,,18,NE,1975,1975,3102,1,1,1820.894936,1820.894936,3505,NO,25.68,33.23,3,7.15,6106,113.103363,122.980441,132.665892,139.21171,I,Above,Gable,0,5701,,29.45637746,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18052,NJBF000053960,,Longport,NJ,39.32193202,-74.52238438,RES1,3001,,NaN,NE,1975,0,3102,2,1,1804.661035,1804.661035,3505,NO,22.87,33.53,3,1.68,6106,113.106843,122.983185,132.668632,139.214827,I,Above,Gable,0,5701,,28.20121234,0,0,,,,1,1,,0.03,nav,1,1975,2,, 18053,NJBF000053030,9 SO COLGATE AVE,Longport,NJ,39.31833877,-74.51947864,RES1,3001,,18,NE,1950,1950,3102,1,1,1944.313543,1944.313543,3505,NO,13.28,26.98,3,1.17,6106,113.224706,123.075829,132.760759,139.318734,I,Above,Gable,0,5701,,20.13010293,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18054,NJBF000054055,201 NO 36TH AVE,Longport,NJ,39.32223789,-74.52096653,RES1,3001,,21,NE,2008,2008,3102,3,1,1675.50231,1675.50231,3505,NO,46.13,53.49,3,1.41,6106,113.132953,123.00449,132.690795,139.239705,I,Above,Gable,0,5701,,49.80925881,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 18055,NJBF000053061,3100 WINCHESTER AV,Longport,NJ,39.31848402,-74.52352443,RES1,3001,,18,NE,1947,1947,3102,1,1,1084.071907,1084.071907,3505,NO,26.15,32.14,3,7.87,6106,113.135044,123.003307,132.686276,139.235311,I,Above,Flat,0,5701,,29.14445307,0,0,,,,1,1,,0.03,nav,1,1947,1,, 18056,NJBF000051594,111 SO 19TH AV,Longport,NJ,39.30884948,-74.53004567,RES1,3001,,22,NE,1951,2003,3102,2,1,3407.542165,3407.542165,3505,NO,39.87,47.99,3,3.9,6106,113.14693,123.003007,132.675666,139.22298,I,Above,Gable,0,5701,,43.9333129,0,0,,,,1,1,,0.03,nav,1,1951,2,, 18057,NJBF000052660,3002 DEVON AVE,Longport,NJ,39.31634106,-74.52261684,COM4,3001,,18,ME,1967,1967,3401,1,1,1513.732457,1513.732457,3507,NO,16.56,21.93,1,0.83,6106,113.187755,123.044202,132.726229,139.280175,I,Above,Flat,0,5701,,19.24496292,0,0,,,,1,1,,0.03,nav,1,1967,1,, 18058,NJBF000052693,37 SO 32ND ST,Longport,NJ,39.31659232,-74.52008273,RES1,3001,,18,NE,1960,1960,3102,2,1,988.6354269,988.6354269,3505,NO,33.3,42.6,3,0.46,6106,113.238521,123.085607,132.769104,139.328021,I,Above,Flat,0,5701,,37.94930883,0,0,,,,1,1,,0.03,nav,1,1960,2,, 18059,NJBF000052686,,Longport,NJ,39.31655159,-74.5229229,RES1,3001,,NaN,NE,1969,0,3102,2,1,1203.273764,1203.273764,3505,NO,33.27,41.4,3,5.33,6106,113.177891,123.036383,132.718402,139.271422,I,Above,Hip,0,5701,,37.33788582,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18060,NJBF000052421,29TH & VENTNOR AVES,Longport,NJ,39.31456761,-74.52512258,RES1,3001,,NaN,NE,1969,0,3102,2,1,2244.362303,2244.362303,3505,NO,28.04,33.13,3,0.87,6106,113.161485,123.02119,132.700764,139.251623,I,Above,Gable,0,5701,,30.58283329,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18061,NJBF000052422,29TH & VENTNOR AVES,Longport,NJ,39.314598,-74.5253135,RES1,3001,,NaN,NE,1969,0,3102,2,1,1004.639122,1004.639122,3505,NO,36.94,45.27,3,-0.62,6106,113.156939,123.01752,132.697029,139.247442,I,Above,Gable,0,5701,,41.10514769,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18062,NJBF000052461,29TH & VENTNOR AVES,Longport,NJ,39.31485974,-74.52506341,REL1,3004,,NaN,ME,1969,0,3401,1,1,11677.45836,11677.45836,3507,NO,13.12,27.45,1,-0.4,6106,113.158206,123.018809,132.698625,139.249241,I,Above,Hip,0,NaN,,20.28614163,0,0,,,,1,1,,0.03,nav,1,1969,1,, 18063,NJBF000053380,11 NO 34TH AVE,Longport,NJ,39.31970981,-74.52019633,RES1,3001,,19,NE,2014,2014,3102,3,1,1543.475911,1543.475911,3505,NO,44.1,53.24,3,7.7,6106,113.188192,123.047325,132.732683,139.287244,I,Above,Gable,0,5701,,48.6737439,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 18064,NJBF000053316,108 NO 32ND AVE,Longport,NJ,39.31949931,-74.52341914,RES1,3001,,20,NE,2015,2015,3102,2,1,1568.622834,1568.622834,3505,NO,27.03,38.38,3,3.89,6106,113.121673,122.993317,132.676942,139.224695,I,Above,Hip,0,5701,,32.70893913,0,0,,,,1,1,,0.03,nav,1,2015,2,, 18065,NJBF000053283,106 NO 32ND AVE,Longport,NJ,39.31937747,-74.52329101,RES1,3001,,20,NE,2015,2015,3102,2,1,819.6716681,819.6716681,3505,NO,36.41,41.96,3,4.96,6106,113.126317,122.996979,132.680594,139.22882,I,Above,Hip,0,5701,,39.1850511,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 18066,NJBF000053367,3300 WINCHESTER AVE,Longport,NJ,39.31966742,-74.52147151,RES1,3001,,18,NE,1960,1960,3102,2,1,1194.347688,1194.347688,3505,NO,20.6,34,3,-2.16,6106,113.161215,123.025463,132.71014,139.261978,I,Above,Gable,0,5701,,27.30156304,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18067,NJBF000053324,4 NO 35TH AVE,Longport,NJ,39.3195185,-74.5197665,RES1,3001,,18,NE,1956,1956,3102,2,1,946.24856,946.24856,3505,NO,39.21,53.91,3,6.22,6106,113.200406,123.057064,132.742539,139.298296,I,Above,Gable,0,5701,,46.56217924,0,0,,,,1,1,,0.03,nav,1,1956,2,, 18068,NJBF000053336,124 NO WOODCREST AVE,Longport,NJ,39.31954963,-74.52421479,RES1,3001,,20,NE,2004,2004,3102,3,1,1328.04483,1328.04483,3505,NO,45.1,51.36,3,3.43,6106,113.103683,122.978788,132.662069,139.207938,I,Above,Gable,0,5701,,48.22990892,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18069,NJBF000052958,11 NO 31ST AV,Longport,NJ,39.31796417,-74.52300154,RES1,3001,,18,NE,1950,1950,3102,2,1,1313.535838,1313.535838,3505,NO,31.74,37.75,3,5.97,6106,113.154339,123.018508,132.701405,139.252339,I,Above,Flat,0,5701,,34.74135733,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18070,NJBF000053791,112 NO 36TH AVE,Longport,NJ,39.32129241,-74.52060275,RES1,3001,,18,NE,1955,1955,3102,2,1,1233.224151,1233.224151,3505,NO,38.55,46.54,3,3.33,6106,113.155236,123.021833,132.707843,139.259114,I,Above,Gable,0,5701,,42.54549422,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18071,NJBF000052952,27 SO 35TH AVE,Longport,NJ,39.3179506,-74.5177172,RES1,3001,,22,NE,2004,2004,3102,3,1,2432.383636,2432.383636,3505,NO,44.12,57.99,3,6.74,6106,113.268787,123.111222,132.796884,139.358973,I,Above,Flat,0,5701,,51.05456655,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18072,NJBF000053974,3306 AMHERST AV,Longport,NJ,39.32197619,-74.52342686,RES1,3001,,18,NE,1951,1951,3102,1,1,1198.539658,1198.539658,3505,NO,12.84,25.03,3,0.6,6106,113.083547,122.964391,132.649361,139.193071,I,Above,Gable,0,5701,,18.93671746,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 18073,NJBF000053147,24 NO YARMOUTH AVE,Longport,NJ,39.31889446,-74.52200667,RES1,3001,,18,NE,2000,2000,3102,2,1,1247.365722,1247.365722,3505,NO,41.39,49.4,3,2.71,6106,113.161504,123.025086,132.709042,139.260834,I,Above,Hip,0,5701,,45.39617919,0,0,,,,1,1,,0.03,nav,1,2000,2,, 18074,NJBF000052566,2808 SUNSET AVE,Longport,NJ,39.31560504,-74.52613433,RES1,3001,,18,NE,2016,2016,3102,2,1,879.1773648,879.1773648,3505,NO,37.23,50,3,7.82,6106,113.123567,122.991362,132.671225,139.218523,I,Above,Gable,0,5701,,43.61594833,0,0,,,,1,1,,0.03,nav,1,2016,2,, 18075,NJBF000051901,4 BAY HAVEN DR,Longport,NJ,39.31159937,-74.52865354,RES1,3001,,18,NE,1970,1970,3102,3,1,1338.69921,1338.69921,3505,NO,43.03,52.94,3,4.03,6106,113.132736,122.994614,132.670284,139.217265,I,Above,Flat,0,5701,,47.98364737,0,0,,,,1,1,,0.03,nav,1,1970,3,, 18076,NJBF000052808,16 SO 32ND AVE,Longport,NJ,39.31724084,-74.52127695,RES1,3001,,18,NE,1950,1950,3102,1,1,1587.104637,1587.104637,3505,NO,25.28,34.87,3,8.23,6106,113.202734,123.057134,132.740432,139.296055,I,Above,Hip,0,5701,,30.07320292,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18077,NJBF000051678,116 SO 22ND AVE,Longport,NJ,39.30980666,-74.5276704,RES1,3001,,NaN,NE,1982,1982,3102,3,1,4064.618004,4064.618004,3505,NO,32.01,45.03,3,-3,6106,113.18214,123.032961,132.707514,139.258667,I,Above,Gable,0,5701,,38.51711035,0,0,,,,1,1,,0.03,nav,1,1982,3,, 18078,NJBF000051616,105 SO 19TH AV,Longport,NJ,39.3090895,-74.53035791,RES1,3001,,18,NE,1955,1955,3102,1,1,2311.510685,2311.510685,3505,NO,17.51,24.78,3,4.98,6106,113.136475,122.994731,132.667482,139.213856,I,Above,Hip,0,5701,,21.14291867,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 18079,NJBF000051358,104 SO 13TH AVE,Longport,NJ,39.30548221,-74.53535373,RES1,3001,,20,NE,1990,1990,3103,2,1,3024.969476,3024.969476,3505,NO,41.01,47.87,3,5.83,6106,113.089168,122.95113,132.618385,139.158411,I,Above,Hip,0,5701,,44.44199119,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 18080,NJBF000052352,44 SUNSET BLVD.,Longport,NJ,39.31412087,-74.53425229,RES1,3001,,16,NE,1960,1960,3102,2,1,1325.762322,1325.762322,3507,NO,32.2,46.04,1,2.9,6106,112.973462,122.867333,132.542935,139.073594,I,Above,Gable,0,5701,,39.1209743,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18081,NJBF000052147,22 SUNSET BLVD.,Longport,NJ,39.3131265,-74.53623035,RES1,3001,,18,NE,1970,1970,3102,2,1,3100.644929,3100.644929,3507,NO,32.55,41.13,1,0.72,6102,112.947342,122.844712,132.518879,139.046266,I,Above,Flat,0,5701,,36.8413362,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 18082,NJBF000052442,49 SUNSET BLVD.,Longport,NJ,39.3147155,-74.533887,RES1,3001,,18,NE,1978,1978,3102,2,1,1463.886499,1463.886499,3507,NO,27.66,41.9,1,2.81,6106,112.971779,122.866663,132.542847,139.073468,I,Above,Hip,0,5701,,34.78084371,0,0,,,,1,1,,0.03,nav,1,1978,2,, 18083,NJBF000052236,32 SUNSET BLVD.,Longport,NJ,39.31354167,-74.53529031,RES1,3001,,16,NE,1960,1960,3102,1,1,2314.095729,2314.095729,3507,NO,17.47,27.61,1,-0.92,6106,112.960641,122.856132,132.530934,139.05997,I,Above,Hip,0,5701,,22.5398899,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 18084,NJBF000052432,47 SUNSET BLVD.,Longport,NJ,39.31464523,-74.53418699,RES1,3001,,18,NE,1978,1978,3102,2,1,1839.200785,1839.200785,3507,NO,23.49,30.24,1,-0.5,6106,112.966505,122.862269,132.538299,139.068301,I,Above,Gable,0,5701,,26.86228461,0,0,,,,1,1,,0.03,nav,1,1978,2,, 18085,NJBF000052307,107 HOSPITALITY DRIVE,Longport,NJ,39.31387602,-74.53710139,RES1,3001,,19,NE,1999,1999,3102,2,1,2603.997942,2603.997942,3507,NO,35.64,45.77,1,-0.27,6106,112.916878,122.82069,132.49521,139.01925,I,Above,Hip,0,5701,,40.70817027,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 18086,NJBF000052118,16 SUNSET BLVD.,Longport,NJ,39.31296958,-74.5367416,RES1,3001,,18,NE,1987,1987,3102,3,1,1602.923729,1602.923729,3507,NO,39.34,53.39,1,-0.11,6106,112.939012,122.837678,132.51156,139.037934,I,Above,Flat,0,5701,,46.36448998,0,0,,,,1,1,,0.03,nav,1,1987,3,, 18087,NJBF000052483,24 SEAVIEW DRIVE,Longport,NJ,39.31502473,-74.53264212,RES1,3001,,20,NE,1998,1998,3102,2,1,4245.111005,4245.111005,3507,NO,31.81,38.12,1,2.1,6106,112.993397,122.884683,132.561529,139.09467,I,Above,Hip,0,5701,,34.96501163,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 18088,NJBF000052383,41 SUNSET BLVD.,Longport,NJ,39.31431508,-74.53474522,RES1,3001,,18,NE,2000,2000,3102,1,1,2020.618776,2020.618776,3507,NO,20.76,30.32,1,2.22,6106,112.959886,122.85646,132.532052,139.061212,I,Above,Gable,0,5701,,25.54182942,0,0,,,,1,1,,0.03,nav,1,2000,1,, 18089,NJBF000052240,23 SUNSET BLVD.,Longport,NJ,39.31356623,-74.53639105,RES1,3001,,19,NE,2002,2002,3102,2,1,1978.794323,1978.794323,3507,NO,36.44,45.34,1,-0.13,6106,112.936897,122.836706,132.511185,139.037486,I,Above,Gable,0,5701,,40.88635313,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18090,NJBF000052331,42 SUNSET BLVD.,Longport,NJ,39.31400239,-74.53439944,RES1,3001,,16,NE,1965,1965,3102,2,1,2005.886563,2005.886563,3507,NO,31.59,43.42,1,2,6106,112.972231,122.866183,132.541642,139.07213,I,Above,Gable,0,5701,,37.5079216,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 18091,NJBF000052249,25 SUNSET BLVD.,Longport,NJ,39.31360311,-74.53620746,RES1,3001,,16,NE,1965,1965,3102,1,1,2361.034805,2361.034805,3507,NO,17.71,22.78,1,-0.81,6106,112.940207,122.839466,132.514031,139.040727,I,Above,Hip,0,5701,,20.24047415,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 18092,NJBF000052120,36 SEAVIEW DRIVE,Longport,NJ,39.31298466,-74.53389904,RES1,3001,,19,NE,1985,1985,3102,3,1,987.1954639,987.1954639,3507,NO,48.52,62.2,1,1.16,6106,112.999077,122.886923,132.561731,139.094953,I,Above,Flat,0,5701,,55.35769876,0,1.1,,,,1,1,,0.03,nav,1,1985,3,, 18093,NJBF000052333,5 SUNSET BLVD.,Longport,NJ,39.31401175,-74.53612885,RES1,3001,,16,NE,1961,1961,3102,1,1,2555.359089,2555.359089,3507,NO,15.21,23.25,1,1.19,6106,112.935318,122.835975,132.510893,139.037132,I,Above,Hip,0,5701,,19.23061171,0,0,,,,1,1,,0.03,nav,1,1961,1,, 18094,NJBF000052165,41 SEAVIEW DRIVE,Longport,NJ,39.31320567,-74.53477628,RES1,3001,,17,NE,1974,1974,3102,2,1,1873.298308,1873.298308,3507,NO,40.39,49.76,1,2.38,6106,112.976922,122.869052,132.543747,139.074542,I,Above,Gable,0,5701,,45.07110241,0,0,,,,1,1,,0.03,nav,1,1974,2,, 18095,NJBF000052316,40 SUNSET BLVD.,Longport,NJ,39.31392437,-74.53459544,RES1,3001,,20,NE,2007,2007,3102,2,1,2867.828431,2867.828431,3507,NO,38.27,48.58,1,-0.7,6106,112.969307,122.863697,132.539029,139.069162,I,Above,Gable,0,5701,,43.42277163,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 18096,NJBF000052359,37 SUNSET BLVD.,Longport,NJ,39.31415222,-74.53502706,RES1,3001,,17,NE,1975,1975,3102,2,1,1871.010583,1871.010583,3507,NO,27.87,41.93,1,2.25,6106,112.956489,122.853483,132.528856,139.057583,I,Above,Hip,0,5701,,34.89980518,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 18097,NJBF000051263,8 POINT DRIVE,Longport,NJ,39.30392896,-74.53721151,RES1,3001,,21,NE,1974,1974,3103,3,1,3505.582783,3505.582783,3505,NO,44.01,55.27,3,4.48,6106,113.07553,122.937648,132.602559,139.140481,I,Above,Flat,0,5701,,49.63999498,0,1.2,,,,1,1,,0.03,nav,1,1974,3,, 18098,NJBF000051269,6 POINT DRIVE,Longport,NJ,39.30397819,-74.53771717,RES1,3001,,23,NE,1999,1999,3103,3,1,3852.188003,3852.188003,3505,NO,43.46,54.63,3,3.74,6106,113.064179,122.928328,132.593119,139.129876,I,Above,Flat,0,5701,,49.04755836,0,0,,,,1,1,,0.03,nav,1,1999,3,, 18099,NJBF000053097,102 NO 31ST AVE,Longport,NJ,39.31868735,-74.52422477,RES1,3001,,18,NE,1950,1950,3102,1,1,1242.071444,1242.071444,3505,NO,13.18,27.76,3,1.84,6106,113.116777,122.988673,132.671435,139.2186,I,Above,Gable,0,5701,,20.47332016,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18100,NJBF000052607,9 SO 30TH AVE,Longport,NJ,39.3159479,-74.52263037,RES1,3001,,21,NE,2009,2009,3102,3,1,2045.800766,2045.800766,3505,NO,40.18,49.71,3,6.17,6106,113.193571,123.048572,132.730325,139.284742,I,Above,Flat,0,5701,,44.94911107,0,0,,,,1,1,,0.03,nav,1,2009,3,, 18101,NJBF000052612,3011 PACIFIC AVE,Longport,NJ,39.31598081,-74.52213202,RES1,3001,,20,NE,2012,2012,3102,3,1,1604.716575,1604.716575,3505,NO,46.41,55,3,-2.96,6106,113.203786,123.056894,132.738919,139.294341,I,Above,Hip,0,5701,,50.70097534,0,0,,,,1,1,,0.03,nav,1,2012,3,, 18102,NJBF000052933,16 NO 31ST AVE,Longport,NJ,39.31785485,-74.52343438,RES1,3001,,20,NE,2006,2006,3102,3,1,1365.263224,1365.263224,3505,NO,50.46,62.68,3,-2.51,6106,113.146701,123.012221,132.694841,139.244979,I,Above,Hip,0,5701,,56.5717845,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18103,NJBF000053088,20 SO 36TH AVE,Longport,NJ,39.31861956,-74.51802493,RES1,3001,,20,NE,2013,2013,3102,3,1,1240.990728,1240.990728,3505,NO,59.79,74.69,3,6.07,6106,113.251885,123.098046,132.783942,139.344571,I,Above,Gable,0,5701,,67.24328495,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18104,NJBF000052980,3407 PACIFIC AVE,Longport,NJ,39.31810473,-74.5184002,RES1,3001,,20,NE,1995,1995,3102,3,1,2150.956867,2150.956867,3505,NO,58.52,72.66,3,8.48,6106,113.251644,123.09746,132.782835,139.343344,I,Above,Hip,0,5701,,65.58656871,0,1.1,,,,1,1,,0.03,nav,1,1995,3,, 18105,NJBF000052575,17 NO OVERBROOK AVE,Longport,NJ,39.3156715,-74.524781,RES1,3001,,18,NE,1960,1960,3102,2,1,1324.133774,1324.133774,3505,NO,27.82,33.11,3,1.88,6106,113.151587,123.014208,132.694735,139.244907,I,Above,Hip,0,5701,,30.46256467,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18106,NJBF000052570,2915 VENTNOR AVE,Longport,NJ,39.31563698,-74.52401023,RES1,3001,,18,NE,1953,1953,3102,1,1,1681.791096,1681.791096,3505,NO,23.07,33.71,3,7.17,6106,113.168709,123.02809,132.708956,139.260836,I,Above,Gable,0,5701,,28.38808193,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 18107,NJBF000053900,127 NO 35TH AVE,Longport,NJ,39.32170661,-74.52130648,RES1,3001,,18,NE,1936,1936,3102,1,1,1550.389067,1550.389067,3505,NO,16.17,26.83,3,3.63,6106,113.133663,123.004694,132.690561,139.239586,I,Above,Gable,0,5701,,21.49859311,0,1.1,,,,1,1,,0.03,nav,1,1936,1,, 18108,NJBF000053861,123 NO 35TH AVE,Longport,NJ,39.32154257,-74.52115852,RES1,3001,,18,NE,1950,1950,3102,1,1,856.0726021,856.0726021,3505,NO,18.6,25.13,3,3.69,6106,113.139349,123.009173,132.69503,139.244653,I,Above,Gable,0,5701,,21.8649131,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18109,NJBF000053964,208 NO 35TH AVE,Longport,NJ,39.3219412,-74.52202977,RES1,3001,,18,NE,1975,1975,3102,2,1,1553.524067,1553.524067,3505,NO,37.08,42.29,3,8.27,6106,113.114388,122.989287,132.674912,139.221903,I,Above,Hip,0,5701,,39.68734707,0,0,,,,1,1,,0.03,nav,1,1975,2,, 18110,NJBF000053937,204 NO 35TH AVE,Longport,NJ,39.32184612,-74.52194025,RES1,3001,,18,NE,1975,1975,3102,1,1,1564.094428,1564.094428,3505,NO,11.14,17.43,3,-2.93,6106,113.117787,122.991966,132.677587,139.224943,I,Above,Gable,0,5701,,14.2862893,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18111,NJBF000054039,228 NO 34TH AVE,Longport,NJ,39.32217931,-74.52313749,RES1,3001,,18,NE,1975,1975,3102,1,1,1924.057873,1924.057873,3505,NO,27.66,34.88,3,8.85,6106,113.086742,122.967121,132.65233,139.196364,I,Above,Gable,0,5701,,31.27004048,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18112,NJBF000053158,112 NO 31ST AVE,Longport,NJ,39.31893176,-74.52445705,RES1,3001,,20,NE,2016,2016,3102,3,1,1300.178198,1300.178198,3505,NO,62.93,70.51,3,7.15,6106,113.107986,122.981756,132.664559,139.210829,I,Above,Hip,0,5701,,66.72175695,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 18113,NJBF000053962,129 N 36TH AVE,Longport,NJ,39.32193903,-74.52066915,RES1,3001,,18,NE,1950,1950,3102,1,1,1807.032296,1807.032296,3505,YES,10.8,24.53,3,-2.07,6106,113.143966,123.013179,132.699488,139.249566,I,Above,Gable,0,5701,,17.66444666,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18114,NJBF000052753,4 SO 31ST AVE,Longport,NJ,39.31691496,-74.5225198,RES1,3001,,19,NE,1965,1965,3102,1,1,1087.082045,1087.082045,3505,NO,27.67,39.12,3,8.81,6106,113.180954,123.039189,132.721648,139.275055,I,Above,Hip,0,5701,,33.39402563,0,0,,,,1,1,,0.03,nav,1,1965,1,, 18115,NJBF000051648,1904 ATLANTIC AVE,Longport,NJ,39.30940333,-74.53049768,RES1,3001,,21,NE,2004,2004,3102,3,1,1672.2078,1672.2078,3505,NO,52.39,58.92,3,8.79,6106,113.128486,122.988565,132.661546,139.207248,I,Above,Flat,0,5701,,55.65407565,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18116,NJBF000052547,2 SO MANOR AVE,Longport,NJ,39.31548621,-74.52358478,RES1,3001,,21,NE,2015,2015,3102,3,1,1537.585842,1537.585842,3505,NO,29.89,37.93,3,-2.7,6106,113.1802,123.037287,132.718251,139.271229,I,Above,Hip,0,5701,,33.91219864,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 18117,NJBF000053449,134 NO 32ND AVE,Longport,NJ,39.3199713,-74.52391431,RES1,3001,,18,NE,1950,1950,3102,2,1,2179.44694,2179.44694,3505,NO,20.66,33.62,3,-2.82,6106,113.103712,122.979155,132.662819,139.208714,I,Above,Gable,0,5701,,27.13938966,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18118,NJBF000053755,111 NO 35TH AVE,Longport,NJ,39.32114925,-74.5207514,RES1,3001,,18,NE,1945,1945,3102,1,1,1008.872052,1008.872052,3505,NO,9.06,21.74,3,-1.71,6106,113.154202,123.020895,132.706754,139.257922,I,Above,Gable,0,5701,,15.39574892,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 18119,NJBF000053633,3220 MONMOUTH AVE,Longport,NJ,39.32069015,-74.52294846,RES1,3001,,18,NE,1955,1955,3102,1,1,2131.045149,2131.045149,3505,NO,16.77,22.24,3,-2.13,6106,113.113586,122.987714,132.672235,139.219187,I,Above,Hip,0,5701,,19.50750112,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 18120,NJBF000052310,4 NO 27TH AVE,Longport,NJ,39.3138918,-74.52636236,RES1,3001,,18,NE,1975,1975,3102,2,1,2121.239463,2121.239463,3505,NO,34.22,44.87,3,3.45,6106,113.145519,123.007512,132.686016,139.235067,I,Above,Hip,0,5701,,39.54248453,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 18121,NJBF000052325,2602 ABSEQUAN AVE,Longport,NJ,39.31397823,-74.52622842,RES1,3001,,20,NE,2004,2004,3102,3,1,1477.453375,1477.453375,3505,NO,37.06,45.29,3,-1.62,6106,113.147039,123.008839,132.687467,139.236699,I,Above,Hip,0,5701,,41.17447372,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18122,NJBF000051539,101 SO 17TH AVE,Longport,NJ,39.30815234,-74.53223034,RES1,3001,,21,NE,1988,1988,3103,1,1,1586.806097,1586.806097,3505,NO,14.98,20.31,3,2.87,6106,113.111855,122.973366,132.644485,139.187987,I,Above,Flat,0,5701,,17.64754259,0,0,,,,1,1,,0.03,nav,1,1988,1,, 18123,NJBF000052330,7 SO 28TH AVE,Longport,NJ,39.31400103,-74.52433421,RES1,3001,,18,NE,1944,1944,3102,1,1,1737.569677,1737.569677,3505,NO,18.54,26.39,3,5.24,6106,113.187287,123.041627,132.721151,139.274378,I,Above,Gable,0,5701,,22.46479124,0,0,,,,1,1,,0.03,nav,1,1944,1,, 18124,NJBF000053487,124 NO YARMOUTH AVE,Longport,NJ,39.32012051,-74.52318579,RES1,3001,,19,NE,1970,1970,3102,1,1,1261.001622,1261.001622,3505,NO,15.58,25,3,0.18,6106,113.117156,122.990159,132.674251,139.221566,I,Above,Gable,0,5701,,20.28993751,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 18125,NJBF000052689,45 NO OVERBROOK AVE,Longport,NJ,39.31656593,-74.52561619,RES1,3001,,20,NE,2001,2001,3102,3,1,1642.820589,1642.820589,3505,NO,38.57,48.16,3,5.36,6106,113.119703,122.989143,132.669904,139.217024,I,Above,Hip,0,5701,,43.36165663,0,0,,,,1,1,,0.03,nav,1,2001,3,, 18126,NJBF000051590,1800 ATLANTIC AVE,Longport,NJ,39.30874104,-74.53144418,RES1,3001,,21,NE,1987,1987,3103,3,1,1986.154978,1986.154978,3505,NO,61.3,68.18,3,8.57,6106,113.119032,122.979999,132.651987,139.196462,I,Above,Gable,0,5701,,64.74044076,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 18127,NJBF000051389,1207 ATLANTIC AVE,Longport,NJ,39.30597402,-74.53592844,RES1,3001,,21,NE,1978,1978,3103,2,1,3798.66528,3798.66528,3505,NO,29.12,36.5,3,7.45,6106,113.069132,122.935288,132.602854,139.141011,I,Above,Hip,0,5701,,32.81182754,0,0,,,,1,1,,0.03,nav,1,1978,2,, 18128,NJBF000053504,3113 MONMOUTH AVE,Longport,NJ,39.32018962,-74.5245937,RES1,3001,,19,NE,1972,1972,3103,5,1,3116.452213,3116.452213,3505,NO,68.03,82.55,3,0.02,6106,113.08564,122.964701,132.648175,139.192157,I,Above,Gable,0,5701,,75.28989239,0,0,,,,1,1,,0.03,nav,1,1972,5,, 18129,NJBF000052864,26 SO 34TH AVE,Longport,NJ,39.31752818,-74.51871382,RES1,3001,,20,NE,1980,1980,3102,2,1,1538.268165,1538.268165,3505,NO,31.89,45.09,3,7.78,6106,113.253698,123.098672,132.783514,139.344094,I,Above,Hip,0,5701,,38.4886441,0,0,,,,1,1,,0.03,nav,1,1980,2,, 18130,NJBF000052567,3019 ATLANTIC AVE,Longport,NJ,39.31561294,-74.52139733,RES1,3001,,18,NE,1950,1950,3102,1,1,2716.864604,2716.864604,3505,NO,22.15,28.26,3,7.98,6106,113.225325,123.074054,132.756199,139.313591,I,Above,Hip,0,5701,,25.20382839,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 18131,NJBF000052869,21 SO YARMOUTH AVE,Longport,NJ,39.31757795,-74.52029086,RES1,3001,,20,NE,2015,2015,3102,2,1,930.15044,930.15044,3505,NO,41.64,56.42,3,3.66,6106,113.218837,123.070467,132.754492,139.311754,I,Above,Hip,0,5701,,49.02832887,0,0,,,,1,1,,0.03,nav,1,2015,2,, 18132,NJBF000053029,26 NO WOODCREST AVE,Longport,NJ,39.31833804,-74.52304619,RES1,3001,,18,NE,1951,1951,3102,1,1,1015.558823,1015.558823,3505,NO,17.45,28.17,3,3.52,6106,113.147617,123.013375,132.696484,139.246789,I,Above,Gable,0,5701,,22.80777434,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 18133,NJBF000052748,28 S 32ND AVE,Longport,NJ,39.31689066,-74.52093398,RES1,3001,,19,NE,1985,1985,3102,2,1,1523.388955,1523.388955,3505,NO,34.95,48.88,3,2.33,6106,113.215539,123.067222,132.750469,139.307259,I,Above,Gable,0,5701,,41.91513247,0,0,,,,1,1,,0.03,nav,1,1985,2,, 18134,NJBF000052803,6 SO WOODCREST AVE,Longport,NJ,39.31721737,-74.52201501,RES1,3001,,18,NE,1949,1949,3102,1,1,1322.107597,1322.107597,3505,NO,19.3,28.06,3,4.74,6106,113.187177,123.044498,132.727406,139.281494,I,Above,Gable,0,5701,,23.67631862,0,0,,,,1,1,,0.03,nav,1,1949,1,, 18135,NJBF000053561,3401 WINCHESTER AVE,Longport,NJ,39.32040602,-74.52091092,RES1,3001,,18,NE,1950,1950,3102,2,1,1399.571787,1399.571787,3505,NO,31.06,41.35,3,-2.35,6106,113.162064,123.02671,132.712087,139.264052,I,Above,Flat,0,5701,,36.20491435,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18136,NJBF000051657,115 SO 21ST AVE,Longport,NJ,39.30953722,-74.52806177,RES1,3001,,23,NE,2002,2002,3102,2,1,5189.81581,5189.81581,3505,NO,20.58,30.73,3,-0.43,6106,113.178094,123.029341,132.703479,139.254128,I,Above,Hip,0,5701,,25.65757675,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18137,NJBF000052727,31 NO PELHAM AVE,Longport,NJ,39.31674933,-74.52504925,RES1,3001,,19,NE,2006,2006,3102,2,1,1409.792488,1409.792488,3505,NO,40.23,52.03,3,8.65,6106,113.129052,122.996909,132.678051,139.226174,I,Above,Gable,0,5701,,46.13004129,0,0,,,,1,1,,0.03,nav,1,2006,2,, 18138,NJBF000052667,,Longport,NJ,39.31642491,-74.5262422,RES1,3001,,NaN,NE,1992,0,3103,6,1,2932.127574,2932.127574,3505,NO,82.19,94.49,3,-0.4,6106,113.108442,122.979858,132.660244,139.206164,I,Above,Hip,0,5701,,88.33934215,0,0,,,,1,1,,0.03,nav,1,1992,6,, 18139,NJBF000052682,1 SO 30TH AVE,Longport,NJ,39.31652294,-74.52322696,RES1,3001,,19,NE,2000,2000,3102,2,1,2162.642423,2162.642423,3505,NO,26.93,35,3,-2.14,6106,113.171791,123.031406,132.713257,139.265663,I,Above,Hip,0,5701,,30.96409491,0,0,,,,1,1,,0.03,nav,1,2000,2,, 18140,NJBF000053079,,Longport,NJ,39.31857397,-74.51884679,RES1,3001,,NaN,NE,1969,0,3102,2,1,1163.307908,1163.307908,3505,NO,27.64,35.85,3,5.18,6106,113.234786,123.084171,132.769586,139.328573,I,Above,Gable,0,5701,,31.74442836,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18141,NJBF000052175,,Longport,NJ,39.31324976,-74.52595138,RES1,3001,,NaN,NE,1969,0,3102,2,1,1825.686327,1825.686327,3505,NO,23.55,34.68,3,1.87,6106,113.164409,123.02224,132.700435,139.251165,I,Above,Flat,0,5701,,29.11264769,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18142,NJBF000053686,3201 SUNSET AVE,Longport,NJ,39.32087958,-74.5241926,RES1,3001,,20,NE,1978,1978,3103,3,1,2756.378993,2756.378993,3505,NO,54.65,67.4,3,4.33,6106,113.083718,122.963697,132.647736,139.191517,I,Above,Hip,0,5701,,61.02469164,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 18143,NJBF000052459,101 SO 30TH AVE,Longport,NJ,39.3148467,-74.52162239,RES1,3001,,19,NE,1970,1970,3103,2,1,1533.897584,1533.897584,3505,NO,29.99,37.97,3,-1.77,6106,113.232371,123.079085,132.760574,139.318401,I,Above,Hip,0,5701,,33.97814347,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 18144,NJBF000053128,106 NO 31ST AVE,Longport,NJ,39.3188065,-74.524362,RES1,3001,,19,NE,1985,1985,3102,2,1,1501.612709,1501.612709,3505,NO,34.94,42,3,2.01,6106,113.111966,122.984876,132.667647,139.214322,I,Above,Hip,0,5701,,38.47353298,0,0,,,,1,1,,0.03,nav,1,1985,2,, 18145,NJBF000051649,112 SO 21ST AVE,Longport,NJ,39.30940717,-74.52885399,RES1,3001,,20,NE,1990,1990,3102,3,1,614.2632891,614.2632891,3505,NO,48.11,55.04,3,8.86,6106,113.163327,123.017105,132.69078,139.23994,I,Above,Hip,0,5701,,51.57490065,0,0,,,,1,1,,0.03,nav,1,1990,3,, 18146,NJBF000053478,10 NO 36TH AVE,Longport,NJ,39.32008682,-74.5194535,RES1,3001,,18,NE,1950,1950,3102,1,1,1302.479919,1302.479919,3505,NO,18.76,30.71,3,5.99,6106,113.19854,123.055974,132.741938,139.297558,I,Above,Gable,0,5701,,24.73350327,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18147,NJBF000053048,3507 PACIFIC AVE,Longport,NJ,39.31843313,-74.51777675,RES1,3001,,21,NE,1994,1994,3102,3,1,1317.284836,1317.284836,3505,NO,31.33,45.38,3,-0.4,6106,113.260115,123.104567,132.79049,139.351863,I,Above,Hip,0,5701,,38.35758367,0,0,,,,1,1,,0.03,nav,1,1994,3,, 18148,NJBF000051929,101 SO 24TH AVE,Longport,NJ,39.31183309,-74.52660236,RES1,3001,,NaN,NE,1905,1905,3102,2,1,2782.021207,2782.021207,3505,NO,25.87,38.03,3,0.94,6106,113.172815,123.027597,132.704362,139.255413,I,Above,Hip,0,5701,,31.9500312,0,0,,,,1,1,,0.03,nav,1,1905,2,, 18149,NJBF000053262,5 SO 36TH AVE,Longport,NJ,39.31929311,-74.51816297,RES1,3001,,18,NE,1950,1950,3102,2,1,1335.917528,1335.917528,3505,NO,27.72,37.94,3,2.1,6106,113.238619,123.087811,132.774026,139.333488,I,Above,Gable,0,5701,,32.82594512,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18150,NJBF000052237,2705 ATLANTIC AVE,Longport,NJ,39.31354362,-74.52468737,RES1,3001,,18,NE,1945,1945,3102,2,1,821.8583449,821.8583449,3505,NO,36.98,41.99,3,0.48,6106,113.186873,123.040836,132.719846,139.272882,I,Above,Gable,0,5701,,39.4849156,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 18151,NJBF000051627,2007 BEACH TERRACE,Longport,NJ,39.30923014,-74.52847925,RES1,3001,,21,NE,1999,1999,3102,3,1,3111.985149,3111.985149,3505,NO,58.38,71.78,3,7.42,6106,113.174116,123.025728,132.699406,139.249542,I,Above,Flat,0,5701,,65.08148376,0,0,,,,1,1,,0.03,nav,1,1999,3,, 18152,NJBF000051341,1103 ATLANTIC AVE,Longport,NJ,39.3051565,-74.53694948,RES1,3001,,21,NE,1980,1980,3103,2,1,3544.419121,3544.419121,3505,NO,22.84,28.82,3,-0.16,6102,113.061011,122.927424,132.593769,139.130714,I,Above,Gable,0,5701,,25.82954144,0,0,,,,1,1,,0.03,nav,1,1980,2,, 18153,NJBF000052992,26 SO 36TH AVE,Longport,NJ,39.31814393,-74.51759535,RES1,3001,,20,NE,2002,2002,3102,2,1,2367.630027,2367.630027,3505,NO,25.32,34.9,3,-2.04,6106,113.268476,123.111117,132.796966,139.359067,I,Above,Hip,0,5701,,30.10762345,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18154,NJBF000053049,3300 VENTNOR AVE,Longport,NJ,39.31843934,-74.52031972,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1242.642816,1242.642816,3505,NO,41.28,47.33,3,6.26,6106,113.204977,123.059931,132.744476,139.300544,I,Above,Gable,0,5701,,44.30687331,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18155,NJBF000053333,7 NO 34TH AVE,Longport,NJ,39.31953945,-74.5201191,RES1,3001,,19,NE,2014,2014,3102,3,1,1224.590541,1224.590541,3505,NO,61.23,73.97,3,7.36,6106,113.192475,123.050661,132.735962,139.290934,I,Above,Hip,0,5701,,67.60211385,0,0,,,,1,1,,0.03,nav,1,2014,3,, 18156,NJBF000053309,3 NO 34TH AVE,Longport,NJ,39.31946207,-74.51995863,RES1,3001,,18,NE,1950,1950,3102,2,1,1441.836216,1441.836216,3505,NO,34.56,47.61,3,-1.6,6106,113.197118,123.05436,132.739701,139.295127,I,Above,Hip,0,5701,,41.08594119,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 18157,NJBF000054001,224 NO 34TH AVE,Longport,NJ,39.32206349,-74.5230075,RES1,3001,,18,NE,1975,1975,3102,1,1,1611.379713,1611.379713,3505,NO,21.35,33.26,3,3.28,6106,113.091308,122.970727,132.655939,139.200472,I,Above,Gable,0,5701,,27.30570872,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18158,NJBF000053871,201 NO 34TH AVE,Longport,NJ,39.32158756,-74.52205154,RES1,3001,,18,NE,1975,1975,3102,1,1,1923.826167,1923.826167,3505,NO,23.33,34.5,3,8.7,6106,113.119288,122.992993,132.678427,139.225956,I,Above,Gable,0,5701,,28.9151087,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18159,NJBF000052543,3000 PACIFIC AVE,Longport,NJ,39.31546494,-74.52220086,RES1,3001,,18,NE,1950,1950,3102,2,1,1772.832579,1772.832579,3505,NO,35.39,47.7,3,1.27,6106,113.210307,123.061726,132.743358,139.299268,I,Above,Flat,0,5701,,41.54345886,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18160,NJBF000053136,3307 VENTNOR AVE,Longport,NJ,39.31883695,-74.52040581,RES1,3001,,18,NE,1950,1950,3102,1,1,1557.920601,1557.920601,3505,NO,23.2,30.94,3,5.31,6106,113.197011,123.053793,132.738532,139.293874,I,Above,Gable,0,5701,,27.06823496,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18161,NJBF000052850,18 SO YARMOUTH AVE,Longport,NJ,39.31746982,-74.52068135,RES1,3001,,20,NE,2017,2017,3102,2,1,1483.920709,1483.920709,3505,NO,41.33,50.81,3,2.98,6106,113.212074,123.064897,132.748649,139.305232,I,Above,Gable,0,5701,,46.06613705,0,0,,,,1,1,,0.03,nav,1,2017,2,, 18162,NJBF000053603,125 NO 33RD AV,Longport,NJ,39.32057826,-74.52236614,RES1,3001,,18,NE,1950,1950,3102,1,1,1265.06855,1265.06855,3505,NO,14.11,19.35,3,0.07,6106,113.127906,122.999212,132.683955,139.232404,I,Above,Flat,0,5701,,16.72744866,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18163,NJBF000053644,131 NO 33RD AVE,Longport,NJ,39.32072723,-74.52249112,RES1,3001,,20,NE,2009,2009,3102,3,1,1485.085326,1485.085326,3505,NO,51.03,57.63,3,-0.9,6106,113.122919,122.995291,132.680054,139.227984,I,Above,Gable,0,5701,,54.33112566,0,0,,,,1,1,,0.03,nav,1,2009,3,, 18164,NJBF000053669,3215 MONMOUTH AVE,Longport,NJ,39.32083223,-74.52339419,RES1,3001,,20,NE,2013,2013,3102,3,1,1691.197326,1691.197326,3505,NO,45.8,59.6,3,-0.94,6106,113.101753,122.97825,132.662636,139.208339,I,Above,Hip,0,5701,,52.70010615,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 18165,NJBF000053681,118 NO 34TH AV,Longport,NJ,39.32086318,-74.52185825,RES1,3001,,18,NE,1950,1950,3102,2,1,1720.860584,1720.860584,3505,NO,43.05,48.52,3,4.79,6106,113.134557,123.004805,132.689953,139.239096,I,Above,Gable,0,5701,,45.78171502,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18166,NJBF000053642,114 NO 34TH AV,Longport,NJ,39.3207236,-74.52178677,RES1,3001,,21,NE,2010,2010,3102,3,1,2719.091483,2719.091483,3505,NO,43.42,55.93,3,-1.44,6106,113.138219,123.007663,132.692772,139.242294,I,Above,Flat,0,5701,,49.67293375,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 18167,NJBF000053651,128 NO COLGATE AVE,Longport,NJ,39.32076316,-74.52224206,RES1,3001,,18,NE,1962,1962,3102,1,1,978.2822546,978.2822546,3505,NO,16.27,22.68,3,-2.67,6106,113.127763,122.999236,132.684141,139.232577,I,Above,Gable,0,5701,,19.47543591,0,0,,,,1,1,,0.03,nav,1,1962,1,, 18168,NJBF000053600,120 NO COLGATE AV,Longport,NJ,39.32056602,-74.52208183,RES1,3001,,18,NE,1950,1950,3102,1,1,884.3122906,884.3122906,3505,NO,12.81,24.57,3,1.57,6106,113.134242,123.004328,132.689204,139.238312,I,Above,Gable,0,5701,,18.69136141,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18169,NJBF000053598,102 NO 35TH AVE,Longport,NJ,39.32056438,-74.52075447,RES1,3001,,18,NE,1945,1945,3102,1,1,1681.978285,1681.978285,3505,NO,25.15,38.37,3,6.94,6106,113.163055,123.027628,132.713172,139.265243,I,Above,Hip,0,5701,,31.76163923,0,0,,,,1,1,,0.03,nav,1,1945,1,, 18170,NJBF000053099,4 NO 33RD AVE,Longport,NJ,39.31870449,-74.52108701,RES1,3001,,19,NE,2009,2009,3102,2,1,1467.462492,1467.462492,3505,NO,32.19,41.42,3,3.75,6106,113.184319,123.043411,132.727718,139.281781,I,Above,Gable,0,5701,,36.8026961,0,0,,,,1,1,,0.03,nav,1,2009,2,, 18171,NJBF000053424,12 NO 35TH AVE,Longport,NJ,39.31987791,-74.52008012,RES1,3001,,NaN,NE,1949,1949,3102,1,1,1740.476651,1740.476651,3505,NO,11,22.23,3,-2.93,6106,113.188138,123.047407,132.732921,139.28749,I,Above,Hip,0,5701,,16.61312684,0,0,,,,1,1,,0.03,nav,1,1949,1,, 18172,NJBF000052874,7 SO 32ND AVE,Longport,NJ,39.31758944,-74.52109884,RES1,3001,,20,NE,2009,2009,3102,3,1,1048.494651,1048.494651,3505,NO,41.37,55.55,3,0.85,6106,113.201212,123.056191,132.739803,139.295349,I,Above,Gable,0,5701,,48.4595576,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 18173,NJBF000053398,131 NO WOODCREST AVE,Longport,NJ,39.31978882,-74.523973,RES1,3001,,18,NE,1985,1985,3102,2,1,1079.00512,1079.00512,3505,NO,25.08,32.44,3,0.77,6106,113.105235,122.980241,132.663773,139.20982,I,Above,Gable,0,5701,,28.75781434,0,0,,,,1,1,,0.03,nav,1,1985,2,, 18174,NJBF000053399,113 NO 32ND AVE,Longport,NJ,39.31979188,-74.52317367,RES1,3001,,18,NE,1960,1960,3102,1,1,1055.929123,1055.929123,3505,NO,23,32.12,3,3.68,6106,113.122467,122.994197,132.678108,139.225962,I,Above,Gable,0,5701,,27.56301141,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18175,NJBF000053279,3006 SUNSET AVE,Longport,NJ,39.319363,-74.5248665,RES1,3001,,19,NE,1952,1952,3102,2,1,1027.75882,1027.75882,3505,NO,20.63,34.86,3,-2.57,6106,113.092481,122.969556,132.652428,139.197098,I,Above,Hip,0,5701,,27.74775244,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 18176,NJBF000053101,32 NO 32ND AVE,Longport,NJ,39.31870968,-74.52266547,RES1,3001,,20,NE,2016,2016,3102,2,1,1533.088406,1533.088406,3505,NO,23.58,35.31,3,2.46,6106,113.150113,123.015708,132.699229,139.249839,I,Above,Gable,0,5701,,29.44497218,0,0,,,,1,1,,0.03,nav,1,2016,2,, 18177,NJBF000053240,,Longport,NJ,39.31922041,-74.51977859,RES1,3001,,NaN,NE,1969,0,3102,2,1,1989.357257,1989.357257,3505,NO,34.89,48.81,3,-2.84,6106,113.204718,123.060327,132.745623,139.301774,I,Above,Hip,0,5701,,41.84969393,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18178,NJBF000053264,,Longport,NJ,39.31931192,-74.51986927,RES1,3001,,NaN,NE,1969,0,3102,2,1,1743.680174,1743.680174,3505,NO,24.97,30.23,3,1.13,6106,113.201362,123.057681,132.742982,139.298812,I,Above,Hip,0,5701,,27.59994052,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18179,NJBF000052735,,Longport,NJ,39.3167929,-74.52610433,RES1,3001,,NaN,NE,1980,0,3103,6,1,2359.186472,2359.186472,3505,NO,108.08,121.87,3,6.93,6106,113.105672,122.977957,132.658654,139.204359,I,Above,Gable,0,5701,,114.97826,0,0,,,,1,1,,0.03,nav,1,1980,6,, 18180,NJBF000053227,110 NO WOODCREST AVE,Longport,NJ,39.31917698,-74.52384262,RES1,3001,,19,NE,1960,1960,3102,1,1,1167.00327,1167.00327,3505,NO,15.63,29.24,3,-2.06,6106,113.117467,122.989645,132.672881,139.220168,I,Above,Gable,0,5701,,22.43092033,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18181,NJBF000053484,3 NO 36TH AVE,Longport,NJ,39.32009909,-74.51890925,RES1,3001,,18,NE,1947,1947,3102,2,1,1786.615836,1786.615836,3505,NO,27.93,40.78,3,4.87,6106,113.210155,123.065375,132.751638,139.308408,I,Above,Gable,0,5701,,34.3538987,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 18182,NJBF000051850,103 SO 23RD AVE,Longport,NJ,39.31120056,-74.52723999,RES1,3001,,19,NE,1890,1890,3102,2,1,1435.101466,1435.101466,3505,NO,34.52,45.6,3,6.93,6106,113.16919,123.023948,132.699899,139.250355,I,Above,Gable,0,5701,,40.0632886,0,1.1,,,,1,1,,0.03,nav,1,1890,2,, 18183,NJBF000053245,31 NO YARMOUTH AVE,Longport,NJ,39.3192315,-74.52185383,RES1,3001,,18,NE,1989,1989,3102,2,1,1215.065364,1215.065364,3505,NO,29.03,40.88,3,4.9,6106,113.159621,123.023831,132.708064,139.259701,I,Above,Gable,0,5701,,34.95550121,0,0,,,,1,1,,0.03,nav,1,1989,2,, 18184,NJBF000052004,,Longport,NJ,39.31234551,-74.52723097,RES3D,3001,,NaN,E,1969,0,3303,4,1,3896.521142,3896.521142,3507,NO,69.52,83.98,1,-0.52,6106,113.151279,123.010579,132.687481,139.236592,I,Above,Hip,0,NaN,,76.75182884,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18185,NJBF000052887,2 SO 32ND AVE,Longport,NJ,39.31763892,-74.52169268,RES1,3001,,19,NE,2013,2013,3102,2,1,3644.67647,3644.67647,3505,NO,32.02,42.05,3,6.71,6106,113.187613,123.045209,132.72855,139.282765,I,Above,Hip,0,5701,,37.03049891,0,0,,,,1,1,,0.03,nav,1,2013,2,, 18186,NJBF000052863,7 N EVERGREEN AVE,Longport,NJ,39.31752104,-74.5233264,RES1,3001,,18,NE,1950,1950,3102,1,1,512.9097722,512.9097722,3505,NO,23.29,35.5,3,7.77,6106,113.154196,123.018011,132.700469,139.251312,I,Above,Gable,0,5701,,29.39731026,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18187,NJBF000052865,3106 VENTNOR AVE,Longport,NJ,39.31753977,-74.5218822,RES1,3001,,20,NE,2013,2013,3102,2,1,1609.934653,1609.934653,3505,NO,38.54,48.88,3,6.72,6106,113.18506,123.043056,132.726238,139.280182,I,Above,Flat,0,5701,,43.7107246,0,0,,,,1,1,,0.03,nav,1,2013,2,, 18188,NJBF000052858,,Longport,NJ,39.31750006,-74.52583969,RES1,3001,,NaN,NE,1985,0,3103,5,1,1779.113623,1779.113623,3505,NO,59.69,72.85,3,3.03,6106,113.100351,122.974294,132.655575,139.200851,I,Above,Flat,0,5701,,66.26628546,0,0,,,,1,1,,0.03,nav,1,1985,5,, 18189,NJBF000052016,105 SO 26TH AVE,Longport,NJ,39.31246901,-74.52491841,RES1,3001,,21,NE,2002,2002,3102,2,1,2471.842881,2471.842881,3505,NO,33.71,40.25,3,4.57,6106,113.198801,123.049459,132.727519,139.281326,I,Above,Gable,0,5701,,36.98265568,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18190,NJBF000052824,36 SO 33RD AVE,Longport,NJ,39.31731532,-74.51979469,RES1,3001,,19,NE,1960,1960,3102,2,1,2119.604601,2119.604601,3505,NO,39.97,49.23,3,1.03,6106,113.233602,123.082218,132.766339,139.324964,I,Above,Gable,0,5701,,44.60364061,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18191,NJBF000052067,2507 ATLANTIC AVE,Longport,NJ,39.31274207,-74.52607179,RES1,3001,,20,NE,1930,2018,3102,3,1,1449.244719,1449.244719,3505,NO,60.14,72.28,3,5.54,6106,113.169811,123.026114,132.703855,139.254943,I,Above,Gable,0,5701,,66.20814396,0,0,,,,1,1,,0.03,nav,1,1930,3,, 18192,NJBF000052773,8 SO WOODCREST AVE,Longport,NJ,39.31702251,-74.52180266,RES1,3001,,20,NE,2006,2006,3102,3,1,1670.380496,1670.380496,3505,NO,41.71,50.85,3,3.31,6106,113.194748,123.050473,132.733361,139.288154,I,Above,Flat,0,5701,,46.2777804,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18193,NJBF000052751,2908 SUNSET AVE,Longport,NJ,39.31690619,-74.52565751,RES1,3001,,18,NE,1960,1960,3102,1,1,1620.506008,1620.506008,3505,NO,17.4,32.17,3,5.93,6106,113.113506,122.984427,132.665398,139.211944,I,Above,Gable,0,5701,,24.78397036,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 18194,NJBF000052456,105 SO EVERGREEN AVE,Longport,NJ,39.3148215,-74.52082196,RES1,3001,,23,NE,1997,1997,3103,3,1,3267.484419,3267.484419,3505,NO,35.76,49.62,3,1.04,6106,113.249979,123.093366,132.775252,139.334721,I,Above,Flat,0,5701,,42.6910313,0,0,,,,1,1,,0.03,nav,1,1997,3,, 18195,NJBF000052940,37 NO 30TH AVE,Longport,NJ,39.31787506,-74.52453343,RES1,3001,,18,NE,1956,1956,3102,2,1,1677.615005,1677.615005,3505,NO,30.25,36.45,3,2.51,6106,113.12269,122.992763,132.674877,139.222548,I,Above,Gable,0,5701,,33.34653508,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 18196,NJBF000052970,21 NO EVERGREEN AVE,Longport,NJ,39.31803987,-74.52389574,RES1,3001,,19,NE,1959,1959,3102,2,1,1477.770433,1477.770433,3505,NO,43.9,58.84,3,7.15,6106,113.133874,123.001979,132.684495,139.233347,I,Above,Hip,0,5701,,51.37086219,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 18197,NJBF000053992,3600 MONMOUTH AVE,Longport,NJ,39.32203947,-74.52074812,RES1,3001,,20,NE,2012,2012,3102,3,1,1485.271866,1485.271866,3505,NO,42.31,53.51,3,5.56,6106,113.140732,123.010636,132.696954,139.24669,I,Above,Gable,0,5701,,47.91052995,0,0,,,,1,1,,0.03,nav,1,2012,3,, 18198,NJBF000053898,205 NO 34TH AVE,Longport,NJ,39.32170587,-74.5221813,RES1,3001,,18,NE,1975,1975,3102,2,1,1498.725717,1498.725717,3505,NO,30.24,44.03,3,4.43,6106,113.114691,122.989364,132.674795,139.221834,I,Above,Gable,0,5701,,37.13924361,0,0,,,,1,1,,0.03,nav,1,1975,2,, 18199,NJBF000053904,300 NO 33RD AVE,Longport,NJ,39.32172023,-74.52393269,RES1,3001,,19,NE,1946,1946,3103,2,1,3073.636012,3073.636012,3505,NO,29.99,40.68,3,1.68,6102,113.076487,122.958494,132.643097,139.186068,I,Above,Gable,0,5701,,35.33514278,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 18200,NJBF000053139,9 SO 35TH AVE,Longport,NJ,39.31885702,-74.51856231,RES1,3001,,18,NE,1955,1955,3102,2,1,1447.462955,1447.462955,3505,NO,37.27,46.82,3,0.15,6106,113.23663,123.085878,132.771618,139.330827,I,Above,Gable,0,5701,,42.04598048,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 18201,NJBF000052560,2900 LONGPORT DRIVE,Longport,NJ,39.3155745,-74.52530418,RES1,3001,,18,NE,1950,1950,3102,1,1,963.6091358,963.6091358,3505,NO,18.96,25.73,3,6.03,6106,113.141877,123.006221,132.686438,139.235601,I,Above,Flat,0,5701,,22.34964851,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18202,NJBF000052538,105 SO WOODCREST AVE,Longport,NJ,39.31542737,-74.51983245,RES1,3001,,23,NE,2017,2017,3103,5,1,3654.876284,3654.876284,3505,NO,68.68,79.94,3,7.59,6106,113.261934,123.103606,132.786446,139.347219,I,Above,Flat,0,5701,,74.30997569,0,0,,,,1,1,,0.03,nav,1,2017,5,, 18203,NJBF000053771,118 NO 35TH AVE,Longport,NJ,39.3212101,-74.5213402,RES1,3001,,18,NE,1940,1940,3102,1,1,1219.115811,1219.115811,3505,NO,13.96,22.79,3,0.82,6106,113.140495,123.00986,132.695452,139.245205,I,Above,Gable,0,5701,,18.37362006,0,0,,,,1,1,,0.03,nav,1,1940,1,, 18204,NJBF000053778,3305 MONMOUTH AV,Longport,NJ,39.32125567,-74.52275142,RES1,3001,,20,NE,2010,2010,3102,3,1,2978.442137,2978.442137,3505,NO,53.34,64.54,3,2.24,6106,113.109197,122.984593,132.669513,139.215994,I,Above,Hip,0,5701,,58.93942318,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 18205,NJBF000053719,205 NO YARMOUTH AVE,Longport,NJ,39.32101178,-74.52354168,RES1,3001,,19,NE,1990,1990,3102,3,1,1558.742629,1558.742629,3505,NO,56.13,67.1,3,0.66,6106,113.095791,122.973566,132.657979,139.203047,I,Above,Gable,0,5701,,61.61427861,0,0,,,,1,1,,0.03,nav,1,1990,3,, 18206,NJBF000053801,203 NO 33RD AV,Longport,NJ,39.32132415,-74.52307384,RES1,3001,,21,NE,2008,2008,3102,3,1,1770.558325,1770.558325,3505,NO,58.05,72.81,3,4.01,6106,113.101157,122.978143,132.662944,139.208572,I,Above,Hip,0,5701,,65.42771757,0,0,,,,1,1,,0.03,nav,1,2008,3,, 18207,NJBF000053694,110 NO 35TH AVE,Longport,NJ,39.32089858,-74.52105208,RES1,3001,,18,NE,1927,1927,3102,2,1,1377.518566,1377.518566,3505,NO,36.04,42.07,3,-0.96,6106,113.151483,123.018517,132.704089,139.25498,I,Above,Hip,0,5701,,39.05555067,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 18208,NJBF000053673,132 NO COLGATE AV,Longport,NJ,39.3208437,-74.52232778,RES1,3001,,18,NE,1957,1957,3102,1,1,1165.013436,1165.013436,3505,NO,19.36,28.88,3,2.25,6106,113.124661,122.996789,132.681695,139.229807,I,Above,Gable,0,5701,,24.11728139,0,0,,,,1,1,,0.03,nav,1,1957,1,, 18209,NJBF000053517,123 NO YARMOUTH AVE,Longport,NJ,39.32024663,-74.5228611,RES1,3001,,18,NE,1952,1952,3102,2,1,1198.98203,1198.98203,3505,NO,38.6,47.37,3,2.32,6106,113.122257,122.994386,132.678706,139.226558,I,Above,Gable,0,5701,,42.98832651,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18210,NJBF000053434,116 NO YARMOUTH AVE,Longport,NJ,39.31991579,-74.52301467,RES1,3001,,18,NE,1950,1950,3102,1,1,1485.661765,1485.661765,3505,NO,18.78,27.16,3,5.74,6106,113.124003,122.995538,132.679597,139.227618,I,Above,Flat,0,5701,,22.97062609,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18211,NJBF000052411,101 HOSPITALITY DRIVE,Longport,NJ,39.31451624,-74.53634897,RES1,3001,,19,NE,2003,2003,3102,2,1,3197.891204,3197.891204,3507,NO,37.02,49.95,1,2.88,6106,112.922592,122.82618,132.501431,139.026312,I,Above,Hip,0,5701,,43.4884968,0,0,,,,1,1,,0.03,nav,1,2003,2,, 18212,NJBF000052344,35 SUNSET BLVD.,Longport,NJ,39.314068,-74.53522661,RES1,3001,,17,NE,1962,1962,3102,2,1,1201.70413,1201.70413,3507,NO,38.79,46.53,1,2.17,6106,112.953579,122.850998,132.526241,139.054611,I,Above,Gable,0,5701,,42.65895228,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 18213,NJBF000052379,48 SUNSET BLVD.,Longport,NJ,39.31427031,-74.53384418,RES1,3001,,18,NE,1965,1965,3102,1,1,1748.289591,1748.289591,3507,NO,18.7,26.76,1,0.02,6106,112.979771,122.872671,132.548526,139.079941,I,Above,Hip,0,5701,,22.73181513,0,0,,,,1,1,,0.03,nav,1,1965,1,, 18214,NJBF000052417,405 LONGPORT BLVD.,Longport,NJ,39.3145453,-74.53569697,RES1,3001,,19,NE,2006,2006,3102,2,1,1664.037441,1664.037441,3507,NO,33.6,47.01,1,0.66,6106,112.93598,122.837177,132.512648,139.039102,I,Above,Gable,0,5701,,40.30749268,0,0,,,,1,1,,0.03,nav,1,2006,2,, 18215,NJBF000052397,,Longport,NJ,39.31441639,-74.53567336,RES1,3001,,NaN,NE,1965,0,3102,2,1,1386.096607,1386.096607,3507,NO,30.27,43.39,1,2.86,6106,112.938549,122.839121,132.514499,139.041219,I,Above,Gable,0,5701,,36.83136306,0,0,,,,1,1,,0.03,nav,1,1965,2,, 18216,NJBF000052415,102 HOSPITALITY DRIVE,Longport,NJ,39.31454432,-74.53671816,RES1,3001,,19,NE,2003,2003,3102,2,1,2891.051022,2891.051022,3507,NO,26.84,32.35,1,-0.9,6106,112.914311,122.819432,132.494596,139.018508,I,Above,Hip,0,5701,,29.59317174,0,0,,,,1,1,,0.03,nav,1,2003,2,, 18217,NJBF000052297,108 HOSPITALITY DRIVE,Longport,NJ,39.31384033,-74.53737488,RES1,3001,,19,NE,1998,1998,3102,2,1,2000.177155,2000.177155,3507,NO,22.03,29.89,1,0.32,6106,112.911648,122.816355,132.490766,139.01418,I,Above,Hip,0,5701,,25.9628568,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 18218,NJBF000052169,32 SEAVIEW DRIVE,Longport,NJ,39.31322736,-74.53365403,RES1,3001,,20,NE,2003,2003,3102,2,1,2786.546719,2786.546719,3507,NO,21.28,28.15,1,-0.04,6106,113.000423,122.888319,132.563408,139.096853,I,Above,Flat,0,5701,,24.71627215,0,0,,,,1,1,,0.03,nav,1,2003,2,, 18219,NJBF000052136,32 SEAVIEW DRIVE,Longport,NJ,39.31307166,-74.53357708,RES1,3001,,20,NE,2003,2003,3102,2,1,529.2295334,529.2295334,3507,NO,31.32,41.44,1,-0.73,6106,113.004531,122.891494,132.566483,139.10034,I,Above,Flat,0,5701,,36.3817424,0,0,,,,1,1,,0.03,nav,1,2003,2,, 18220,NJBF000052180,26 SUNSET BLVD.,Longport,NJ,39.31327238,-74.535865,RES1,3001,,18,NE,1970,1970,3102,2,1,2596.648999,2596.648999,3507,NO,37.39,42.67,1,0.12,6106,112.952758,122.849336,132.523736,139.051789,I,Above,Gable,0,5701,,40.0302361,0,0,,,,1,1,,0.03,nav,1,1970,2,, 18221,NJBF000052167,24 SUNSET BLVD.,Longport,NJ,39.31321038,-74.53604105,RES1,3001,,18,NE,1975,1975,3102,2,1,2074.579795,2074.579795,3507,NO,22.97,32.6,1,0.54,6106,112.950019,122.847012,132.521306,139.049026,I,Above,Hip,0,5701,,27.78715877,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 18222,NJBF000053386,3217 WINCHESTER AVE,Longport,NJ,39.31973334,-74.52206187,RES1,3001,,NaN,NE,1965,1965,3102,1,1,1445.963156,1445.963156,3505,NO,23.76,29.25,3,5.52,6106,113.147433,123.01436,132.698779,139.249214,I,Above,Flat,0,5701,,26.50329426,0,0,,,,1,1,,0.03,nav,1,1965,1,, 18223,NJBF000053238,4 SO 36TH AVE,Longport,NJ,39.31921695,-74.51860238,RES1,3001,,18,NE,1951,1951,3102,2,1,1401.143836,1401.143836,3505,NO,35.8,50.04,3,2.7,6106,113.230264,123.080995,132.766924,139.32557,I,Above,Flat,0,5701,,42.92076699,0,1.2,,,,1,1,,0.03,nav,1,1951,2,, 18224,NJBF000052426,,Longport,NJ,39.31460445,-74.52637334,RES1,3001,,NaN,NE,1969,0,3102,2,1,2468.265279,2468.265279,3505,NO,24.14,32.16,3,0.33,6106,113.13411,122.998946,132.677978,139.226088,I,Above,Hip,0,5701,,28.14656371,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18225,NJBF000052346,100 SO PELHAM AVE,Longport,NJ,39.31408465,-74.52285242,RES1,3001,,19,NE,1953,1953,3103,2,1,1632.939197,1632.939197,3505,NO,38.77,47.73,3,3.51,6106,113.217791,123.066523,132.746833,139.303028,I,Above,Hip,0,5701,,43.24771312,0,0,,,,1,1,,0.03,nav,1,1953,2,, 18226,NJBF000052886,27 NO 30TH AVE,Longport,NJ,39.3176375,-74.52428517,RES1,3001,,19,NE,2003,2003,3102,2,1,1629.458351,1629.458351,3505,NO,42.31,54.56,3,4.1,6106,113.131723,122.999881,132.681959,139.230525,I,Above,Gable,0,5701,,48.43475199,0,0,,,,1,1,,0.03,nav,1,2003,2,, 18227,NJBF000052068,2405 OBERON AVE,Longport,NJ,39.3127557,-74.5274799,RES1,3001,,17,NE,1920,1920,3102,1,1,1621.223067,1621.223067,3505,NO,15.45,24.55,3,4.19,6106,113.139487,123.001401,132.678523,139.226595,I,Above,Hip,0,5701,,19.99643017,0,1.2,,,,1,1,,0.03,nav,1,1920,1,, 18228,NJBF000052742,3021 DEVON AVE,Longport,NJ,39.31684191,-74.52263939,RES1,3001,,18,NE,1955,1955,3102,2,1,1201.043797,1201.043797,3505,NO,33.59,42.26,3,-2.38,6106,113.179519,123.037961,132.720312,139.27356,I,Above,Gable,0,5701,,37.92310717,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18229,NJBF000052721,,Longport,NJ,39.3167315,-74.521826,RES1,3001,,NaN,NE,1969,0,3102,2,1,1526.284488,1526.284488,3505,NO,28.71,39.52,3,1.41,6106,113.198751,123.053469,132.736154,139.291273,I,Above,Hip,0,5701,,34.11199605,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18230,NJBF000052676,2927 LONGPORT DRIVE,Longport,NJ,39.31646648,-74.52451836,RES1,3001,,18,NE,1952,1952,3102,3,1,2627.695975,2627.695975,3505,NO,34.1,46.67,3,-1.84,6106,113.14488,123.009503,132.6907,139.240382,I,Above,Hip,0,5701,,40.38548393,0,0,,,,1,1,,0.03,nav,1,1952,3,, 18231,NJBF000052747,3214 PACIFIC AVE,Longport,NJ,39.31688915,-74.51970008,RES1,3001,,19,NE,2011,2011,3102,3,1,1466.779197,1466.779197,3505,NO,41.08,46.52,3,-0.08,6106,113.242213,123.088848,132.772745,139.332087,I,Above,Hip,0,5701,,43.79751508,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 18232,NJBF000052650,36 NO OVERBROOK AVE,Longport,NJ,39.31624951,-74.52580473,RES1,3001,,18,NE,1965,1965,3102,1,1,2503.189702,2503.189702,3505,NO,21.53,26.81,3,8.84,6106,113.120564,122.989543,132.670004,139.217144,I,Above,Flat,0,5701,,24.17003987,0,0,,,,1,1,,0.03,nav,1,1965,1,, 18233,NJBF000052637,5 SO 30TH AVE,Longport,NJ,39.31615653,-74.52277501,RES1,3001,,19,NE,1950,1950,3102,2,1,2223.660592,2223.660592,3505,NO,34.2,45.23,3,2.64,6106,113.187205,123.043591,132.725416,139.279261,I,Above,Hip,0,5701,,39.71594109,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 18234,NJBF000052239,2608 OBERON AVE,Longport,NJ,39.31355326,-74.52569672,RES1,3001,,20,NE,1996,1996,3102,2,1,1121.032755,1121.032755,3505,NO,47.09,58.15,3,8.25,6106,113.165088,123.023105,132.70165,139.252549,I,Above,Flat,0,5701,,52.62273853,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 18235,NJBF000052530,11 NO 29TH AVE,Longport,NJ,39.3153715,-74.525026,RES1,3001,,18,NE,1951,1951,3102,1,1,1174.430101,1174.430101,3505,NO,17.6,24.62,3,2.87,6106,113.151018,123.013458,132.693659,139.243694,I,Above,Hip,0,5701,,21.10786047,0,0,,,,1,1,,0.03,nav,1,1951,1,, 18236,NJBF000052115,,Longport,NJ,39.31294695,-74.52786026,RES1,3001,,NaN,NE,1969,0,3103,5,1,1889.379143,1889.379143,3505,NO,78.24,88.98,3,2.73,6102,113.128353,122.992524,132.669634,139.216642,I,Above,Hip,0,5701,,83.61091416,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18237,NJBF000052161,,Longport,NJ,39.3131915,-74.5254205,RES1,3001,,NaN,NE,1969,0,3102,2,1,1529.139621,1529.139621,3505,NO,33.97,44.37,3,1.44,6106,113.17669,123.032187,132.710581,139.262502,I,Above,Flat,0,5701,,39.16741945,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18238,NJBF000052498,2928 PACIFIC AVE,Longport,NJ,39.31516343,-74.5227656,RES1,3001,,18,NE,1951,1951,3102,1,1,1464.743335,1464.743335,3505,NO,18.91,26.82,3,1.93,6106,113.202843,123.055386,132.736522,139.291623,I,Above,Gable,0,5701,,22.86592008,0,0,,,,1,1,,0.03,nav,1,1951,1,, 18239,NJBF000052488,3 NO 29TH AVE,Longport,NJ,39.3150773,-74.52468568,RES1,3001,,18,NE,1950,1950,3102,1,1,1286.078143,1286.078143,3505,NO,15.24,29.06,3,-0.62,6106,113.162912,123.022846,132.702995,139.254143,I,Above,Gable,0,5701,,22.14840138,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18240,NJBF000052504,31 NO 28TH AVE,Longport,NJ,39.31517578,-74.52591971,RES1,3001,,18,NE,1956,1956,3102,2,1,1775.724281,1775.724281,3505,NO,39.23,53.25,3,6.58,6106,113.134869,123.000134,132.679787,139.228132,I,Above,Hip,0,5701,,46.24157705,0,0,,,,1,1,,0.03,nav,1,1956,2,, 18241,NJBF000052507,31 NO 28TH AVE,Longport,NJ,39.31519534,-74.52576845,RES1,3001,,18,NE,1956,1956,3102,2,1,515.9667036,515.9667036,3505,NO,34.32,46.96,3,3.4,6106,113.137835,123.002565,132.6823,139.230953,I,Above,Gable,0,5701,,40.63806953,0,0,,,,1,1,,0.03,nav,1,1956,2,, 18242,NJBF000052475,103 SO EVERGREEN AVE,Longport,NJ,39.31496843,-74.52098986,RES1,3001,,21,NE,2001,2001,3103,3,1,2135.698679,2135.698679,3505,NO,46.23,52.27,3,6.36,6106,113.244096,123.088719,132.770622,139.329589,I,Above,Gable,0,5701,,49.25179189,0,0,,,,1,1,,0.03,nav,1,2001,3,, 18243,NJBF000051993,109 SO 26TH AVE,Longport,NJ,39.31225138,-74.52463906,RES1,3001,,23,NE,1990,1990,3102,3,1,2808.654325,2808.654325,3505,NO,41.36,48.39,3,5.57,6106,113.2082,123.056894,132.734913,139.289536,I,Above,Flat,0,5701,,44.87184324,0,1.2,,,,1,1,,0.03,nav,1,1990,3,, 18244,NJBF000052610,,Longport,NJ,39.31597386,-74.52076902,RES1,3001,,NaN,NE,1969,0,3102,2,1,1481.120842,1481.120842,3505,NO,27.1,34.02,3,-0.3,6106,113.233269,123.080819,132.763538,139.32179,I,Above,Flat,0,5701,,30.56147133,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18245,NJBF000052590,,Longport,NJ,39.31584483,-74.52101823,RES1,3001,,NaN,NE,1969,0,3102,2,1,1872.673629,1872.673629,3505,NO,38.14,50.15,3,1.71,6106,113.229898,123.07797,132.760472,139.318366,I,Above,Flat,0,5701,,44.14330974,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18246,NJBF000052622,,Longport,NJ,39.31604947,-74.52120264,RES1,3001,,NaN,NE,1969,0,3102,2,1,1496.566489,1496.566489,3505,NO,28.15,40.75,3,3.1,6106,113.222752,123.072349,132.754894,139.312164,I,Above,Flat,0,5701,,34.45147714,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18247,NJBF000052631,,Longport,NJ,39.31612284,-74.52107502,RES1,3001,,NaN,NE,1969,0,3102,2,1,1861.993526,1861.993526,3505,NO,42.17,52.05,3,3.2,6106,113.224366,123.073724,132.756385,139.31383,I,Above,Hip,0,5701,,47.11221471,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18248,NJBF000052641,,Longport,NJ,39.31619435,-74.52093453,RES1,3001,,NaN,NE,1969,0,3102,2,1,2017.578831,2017.578831,3505,NO,29.51,42.85,3,-0.36,6106,113.226287,123.075344,132.758126,139.315773,I,Above,Flat,0,5701,,36.18076098,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18249,NJBF000052439,2921 ATLANTIC AVE,Longport,NJ,39.31471206,-74.52282002,RES1,3001,,21,NE,2004,2004,3102,3,1,2196.032072,2196.032072,3505,NO,35.37,41.21,3,3.69,6106,113.208703,123.059728,132.740514,139.296043,I,Above,Flat,0,5701,,38.29172709,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18250,NJBF000052458,2921 ATLANTIC AVE,Longport,NJ,39.31483388,-74.52292937,RES1,3001,,21,NE,2004,2004,3102,3,1,1969.810901,1969.810901,3505,NO,33.43,41.6,3,-1.55,6106,113.204459,123.056393,132.737213,139.29237,I,Above,Gable,0,5701,,37.51158587,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18251,NJBF000051765,,Longport,NJ,39.31063831,-74.52786142,RES1,3001,,NaN,NE,1969,0,3102,2,1,2419.661714,2419.661714,3505,NO,39.19,45.05,3,7.17,6106,113.164877,123.019794,132.694989,139.244802,I,Above,Flat,0,5701,,42.1192247,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18252,NJBF000051703,2006 ATLANTIC AVE,Longport,NJ,39.31005567,-74.52955903,RES1,3001,,17,NE,1950,1950,3102,2,1,1116.61444,1116.61444,3505,NO,35.35,48.3,3,-1.14,6106,113.138003,122.997141,132.671098,139.218017,I,Above,Gable,0,5701,,41.82706945,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18253,NJBF000051950,107 SO 25TH AVE,Longport,NJ,39.31196123,-74.52555134,RES1,3001,,20,NE,1897,1897,3102,3,1,2153.665522,2153.665522,3505,NO,55.53,68.29,3,5.39,6106,113.193255,123.044408,132.721761,139.274844,I,Above,Flat,0,5701,,61.90716815,0,0,,,,1,1,,0.03,nav,1,1897,3,, 18254,NJBF000052505,5 NO 29TH AVE,Longport,NJ,39.31518352,-74.52478533,RES1,3001,,19,NE,2011,2011,3102,1,1,1525.345546,1525.345546,3505,NO,24.87,30.21,3,6.65,6106,113.159115,123.019862,132.700041,139.250839,I,Above,Gable,0,5701,,27.54013567,0,1.1,,,,1,1,,0.03,nav,1,2011,1,, 18255,NJBF000051651,109 SO 20TH AVE,Longport,NJ,39.30946693,-74.52937234,RES1,3001,,20,NE,1990,1990,3102,3,1,2796.44723,2796.44723,3505,NO,62.76,72.7,3,6.82,6106,113.151366,123.007383,132.680891,139.228901,I,Above,Hip,0,5701,,67.73009877,0,0,,,,1,1,,0.03,nav,1,1990,3,, 18256,NJBF000051544,1809 BEACH TERRACE,Longport,NJ,39.30817699,-74.52989742,RES1,3001,,21,NE,1989,1989,3102,3,1,2484.347016,2484.347016,3505,NO,44.34,53.34,3,-0.45,6106,113.160838,123.013589,132.685682,139.234077,I,Above,Flat,0,5701,,48.83954037,0,0,,,,1,1,,0.03,nav,1,1989,3,, 18257,NJBF000051606,2001 BEACH TERRACE,Longport,NJ,39.3089305,-74.52882603,RES1,3001,,21,NE,1989,1989,3102,3,1,2572.072521,2572.072521,3505,NO,43.94,49.39,3,2.56,6106,113.171511,123.023243,132.696497,139.246253,I,Above,Flat,0,5701,,46.66534175,0,0,,,,1,1,,0.03,nav,1,1989,3,, 18258,NJBF000051553,1702 ATLANTIC AVE,Longport,NJ,39.30825815,-74.53208521,RES1,3001,,21,NE,2007,2007,3103,3,1,1399.408705,1399.408705,3505,NO,38.9,47.44,3,1.62,6106,113.113218,122.97462,132.645897,139.189582,I,Above,Gable,0,5701,,43.16903031,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 18259,NJBF000051591,113 SO 19TH AV,Longport,NJ,39.30874355,-74.52992522,RES1,3001,,21,NE,2003,2003,3102,3,1,2925.117364,2925.117364,3505,NO,44.94,51.48,3,2.49,6106,113.151175,123.006359,132.67897,139.22666,I,Above,Flat,0,5701,,48.20957191,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 18260,NJBF000051353,108 SO 13TH AVE,Longport,NJ,39.30535875,-74.53514279,RES1,3001,,NaN,NE,1900,1900,3103,2,1,1864.488906,1864.488906,3505,NO,38.19,46.06,3,6.28,6106,113.095594,122.956259,132.623462,139.164094,I,Above,Hip,0,5701,,42.12625392,0,0,,,,1,1,,0.03,nav,1,1900,2,, 18261,NJBF000051343,1307 BEACH TERRACE,Longport,NJ,39.3051772,-74.5336793,RES1,3001,,21,NE,2001,1985,3103,6,1,3231.599926,3231.599926,3505,NO,118.69,130.85,3,7.74,6106,113.129302,122.983798,132.651362,139.195321,I,Above,Flat,0,5701,,124.7742038,0,0,,,,1,1,,0.03,nav,1,2001,6,, 18262,NJBF000051319,113 SO 12TH AVE,Longport,NJ,39.30481036,-74.53517938,RES1,3001,,17,NE,1950,1950,3103,2,1,1477.379296,1477.379296,3505,NO,27.75,35.83,3,1.15,6106,113.103753,122.962225,132.62883,139.170051,I,Above,Gable,0,5701,,31.78688467,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18263,NJBF000051326,106 SO 12TH AVE,Longport,NJ,39.30494477,-74.53609129,RES1,3001,,18,NE,1899,1899,3103,2,1,1969.869847,1969.869847,3505,NO,36.17,44.35,3,7.5,6106,113.082436,122.944818,132.611236,139.150329,I,Above,Hip,0,5701,,40.25871917,0,0,,,,1,1,,0.03,nav,1,1899,2,, 18264,NJBF000051653,112 SO 21ST AVE,Longport,NJ,39.30947984,-74.52868402,RES1,3001,,20,NE,1990,1990,3102,3,1,1952.427791,1952.427791,3505,NO,51.86,57.4,3,4.61,6106,113.165777,123.019196,132.69301,139.24244,I,Above,Flat,0,5701,,54.62983498,0,0,,,,1,1,,0.03,nav,1,1990,3,, 18265,NJBF000051415,,Longport,NJ,39.30633914,-74.53286099,RES1,3001,,NaN,NE,1969,0,3103,4,1,931.2182512,931.2182512,3505,NO,55.05,67.72,3,0.08,6106,113.127735,122.984064,132.653148,139.19747,I,Above,Flat,0,5701,,61.38358369,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18266,NJBF000051424,,Longport,NJ,39.30642699,-74.53272167,RES1,3001,,NaN,NE,1969,0,3103,6,1,1316.588014,1316.588014,3505,NO,80.14,94.29,3,5.47,6106,113.129245,122.985422,132.65465,139.199161,I,Above,Hip,0,5701,,87.21779617,0,0,,,,1,1,,0.03,nav,1,1969,6,, 18267,NJBF000051330,109 SO 12TH AVE,Longport,NJ,39.30498119,-74.53543265,RES1,3001,,17,NE,1950,1950,3103,2,1,1926.951646,1926.951646,3505,NO,34.8,47.02,3,3.65,6106,113.095647,122.955775,132.622469,139.162939,I,Above,Gable,0,5701,,40.91163784,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18268,NJBF000051303,117 SO 12TH AVE,Longport,NJ,39.3045798,-74.534933,RES1,3001,,21,NE,2001,2001,3103,2,1,2922.267361,2922.267361,3505,NO,34.95,47.41,3,2.66,6106,113.112649,122.969245,132.635694,139.177714,I,Above,Hip,0,5701,,41.18076445,0,0,,,,1,1,,0.03,nav,1,2001,2,, 18269,NJBF000051373,112 SO 14TH AV,Longport,NJ,39.30569927,-74.53421875,RES1,3001,,21,NE,2004,2004,3103,2,1,2416.387977,2416.387977,3505,NO,36.37,46.72,3,3.23,6106,113.109495,122.968187,132.63609,139.178292,I,Above,Gable,0,5701,,41.54645821,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18270,NJBF000051292,109 S 11TH AVE,Longport,NJ,39.30438525,-74.53619071,RES1,3001,,22,NE,2004,2004,3103,3,1,2910.516915,2910.516915,3505,NO,41.17,48.54,3,6.1,6106,113.089455,122.949818,132.615594,139.155162,I,Above,Gable,0,5701,,44.85598944,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18271,NJBF000051348,1105 ATLANTIC AVE,Longport,NJ,39.30528006,-74.53679806,RES1,3001,,21,NE,2013,2013,3103,3,1,3254.835687,3254.835687,3505,NO,40.65,54.25,3,6.28,6106,113.062171,122.928559,132.595087,139.132209,I,Above,Hip,0,5701,,47.44837164,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18272,NJBF000053379,3 NO 35TH AVE,Longport,NJ,39.31970833,-74.51935349,RES1,3001,,19,NE,2015,2015,3102,2,1,1316.08711,1316.08711,3505,NO,24.21,33.29,3,1.9,6106,113.206491,123.062127,132.74793,139.304308,I,Above,Gable,0,5701,,28.75194312,0,0,,,,1,1,,0.03,nav,1,2015,2,, 18273,NJBF000051325,1301 BEACH TERRACE,Longport,NJ,39.30491847,-74.53397901,RES1,3001,,21,NE,2001,2001,3103,2,1,4254.385735,4254.385735,3505,NO,31.39,42.92,3,4.44,6106,113.127193,122.981707,132.648881,139.192513,I,Above,Flat,0,5701,,37.15452533,0,0,,,,1,1,,0.03,nav,1,2001,2,, 18274,NJBF000051281,113 SO 11TH AVE,Longport,NJ,39.30419414,-74.53593391,RES1,3001,,22,NE,2002,2002,3103,4,1,2690.201328,2690.201328,3505,NO,55.61,69.34,3,1.93,6106,113.097947,122.956561,132.622221,139.162574,I,Above,Flat,0,5701,,62.47885297,0,0,,,,1,1,,0.03,nav,1,2002,4,, 18275,NJBF000051327,116 SO 13TH AVE,Longport,NJ,39.30495181,-74.53468493,RES1,3001,,19,NE,1950,1950,3103,1,1,1707.912208,1707.912208,3505,NO,20.1,26.62,3,8.04,6106,113.111814,122.969073,132.636014,139.178117,I,Above,Hip,0,5701,,23.36141349,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18276,NJBF000053313,3220 WINCHESTER AVE,Longport,NJ,39.31947708,-74.52179068,RES1,3001,,19,NE,2011,2011,3102,1,1,1637.029414,1637.029414,3505,NO,16.93,23.56,3,3.11,6106,113.157224,123.022084,132.706492,139.257908,I,Above,Flat,0,5701,,20.24409538,0,0,,,,1,1,,0.03,nav,1,2011,1,, 18277,NJBF000052957,20 SO 34TH AVENUE,Longport,NJ,39.31796003,-74.51911491,RES1,3001,,21,NE,2007,2007,3102,3,1,1811.044732,1811.044732,3505,NO,56.14,61.41,3,2.78,6106,113.238395,123.086617,132.771511,139.330731,I,Above,Flat,0,5701,,58.7729063,0,0,,,,1,1,,0.03,nav,1,2007,3,, 18278,NJBF000052086,,Longport,NJ,39.31283716,-74.52796225,RES1,3001,,NaN,NE,1969,0,3103,4,1,1533.625144,1533.625144,3505,NO,51.16,59.78,3,5.64,6102,113.127911,122.992044,132.669022,139.215949,I,Above,Gable,0,5701,,55.46711828,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18279,NJBF000051271,117 SO 11TH AVE,Longport,NJ,39.30398839,-74.53573449,RES1,3001,,19,NE,1888,1888,3103,3,1,1821.03765,1821.03765,3505,NO,33.54,45.05,3,1.66,6106,113.105488,122.962498,132.628005,139.169033,I,Above,Flat,0,5701,,39.29183603,0,1.2,,,,1,1,,0.03,nav,1,1888,3,, 18280,NJBF000051356,111 SO 13TH AVE,Longport,NJ,39.30542669,-74.534571,RES1,3001,,21,NE,2009,2009,3103,3,1,2589.564241,2589.564241,3505,NO,43.76,57.28,3,6.82,6106,113.106504,122.96535,132.632836,139.174613,I,Above,Gable,0,5701,,50.5206263,0,0,,,,1,1,,0.03,nav,1,2009,3,, 18281,NJBF000052948,3115 VENTNOR AVE,Longport,NJ,39.31793099,-74.52192384,RES1,3001,,18,NE,1930,1930,3102,1,1,1782.920795,1782.920795,3505,NO,23.22,36.1,3,6.41,6106,113.178122,123.03776,132.721169,139.274493,I,Above,Hip,0,5701,,29.66291764,0,0,,,,1,1,,0.03,nav,1,1930,1,, 18282,NJBF000054094,227 NO 34TH AVE,Longport,NJ,39.32236857,-74.52281055,RES1,3001,,18,NE,1975,1975,3102,1,1,1712.435041,1712.435041,3505,NO,21.44,34.51,3,8.47,6106,113.090922,122.970634,132.656093,139.200554,I,Above,Gable,0,5701,,27.9789407,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18283,NJBF000054065,213 NO 35TH AVE,Longport,NJ,39.3222755,-74.5218545,RES1,3001,,18,NE,1999,1999,3102,1,1,1818.556806,1818.556806,3505,NO,27.11,34.93,3,8.03,6106,113.11309,122.988475,132.674353,139.221177,I,Above,Gable,0,5701,,31.01982896,0,0,,,,1,1,,0.03,nav,1,1999,1,, 18284,NJBF000054191,227 NO 35TH AVE,Longport,NJ,39.32267894,-74.5222432,RES1,3001,,29,NE,1982,1982,3102,3,1,1921.417298,1921.417298,3505,NO,42.39,49.35,3,7.66,6106,113.09854,122.977003,132.662888,139.208125,I,Above,Gable,0,5701,,45.87076715,0,1.1,,,,1,1,,0.03,nav,1,1982,3,, 18285,NJBF000051337,107 SO 12TH AVE,Longport,NJ,39.30507387,-74.53555159,RES1,3001,,22,NE,2007,2007,3103,3,1,2666.052787,2666.052787,3505,NO,51.27,59.59,3,7.19,6106,113.09164,122.952598,132.619349,139.159449,I,Above,Flat,0,5701,,55.42967042,0,1.2,,,,1,1,,0.03,nav,1,2007,3,, 18286,NJBF000054145,302 NO 34TH AVE,Longport,NJ,39.32254602,-74.52347593,RES1,3001,,20,NE,1987,1987,3103,2,1,2228.555702,2228.555702,3505,NO,31.93,42.76,3,-2.67,6102,113.073794,122.956924,132.642155,139.184757,I,Above,Gable,0,5701,,37.34782316,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 18287,NJBF000052905,13 NO EVERGREEN AVE,Longport,NJ,39.317727,-74.523632,RES1,3001,,19,NE,2014,2014,3102,2,1,1138.747018,1138.747018,3505,NO,21.54,32.73,3,-1.97,6106,113.14441,123.010252,132.692695,139.242579,I,Above,Gable,0,5701,,27.13521584,0,0,,,,1,1,,0.03,nav,1,2014,2,, 18288,NJBF000052932,3501 ATLANTIC AVE,Longport,NJ,39.31785428,-74.51760439,RES1,3001,,NaN,NE,1950,1950,3102,2,1,1881.826208,1881.826208,3505,NO,42.49,52.12,3,8.14,6106,113.272718,123.11433,132.799996,139.36243,I,Above,Flat,0,5701,,47.30436555,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18289,NJBF000054301,,Longport,NJ,39.32301275,-74.52169311,RES1,3001,,NaN,NE,1969,0,3102,2,1,1547.684297,1547.684297,3505,NO,27.97,41.02,3,4.56,6106,113.105421,122.982786,132.669101,139.21502,I,Above,Flat,0,5701,,34.49663691,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18290,NJBF000054044,3301 AMHERST AVE,Longport,NJ,39.3221919,-74.52367212,RES1,3001,,18,NE,1940,1940,3103,1,1,738.4574458,738.4574458,3505,NO,16.22,26.55,3,0.31,6106,113.074938,122.957592,132.642556,139.185321,I,Above,Gable,0,5701,,21.38868763,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 18291,NJBF000052629,3109 ATLANTIC AVE,Longport,NJ,39.31609426,-74.52052066,RES1,3001,,19,NE,1976,1976,3102,2,1,1631.803546,1631.803546,3505,NO,30.04,36.95,3,5.8,6106,113.236761,123.083756,132.766687,139.325304,I,Above,Flat,0,5701,,33.49918668,0,0,,,,1,1,,0.03,nav,1,1976,2,, 18292,NJBF000052621,3107 ATLANTIC AVE,Longport,NJ,39.31603802,-74.52062488,RES1,3001,,18,NE,1945,1945,3102,3,1,1303.538579,1303.538579,3505,NO,61.93,68.09,3,3.44,6106,113.235384,123.08259,132.765429,139.323899,I,Above,Hip,0,5701,,65.01398083,0,1.2,,,,1,1,,0.03,nav,1,1945,3,, 18293,NJBF000052916,3402 PACIFIC AV,Longport,NJ,39.31777234,-74.51822295,RES1,3001,,19,NE,1986,1986,3102,2,1,2144.632948,2144.632948,3505,NO,26.37,34.81,3,3.39,6106,113.260577,123.104435,132.789703,139.350984,I,Above,Gable,0,5701,,30.58840835,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 18294,NJBF000053013,3501 PACIFIC AVE,Longport,NJ,39.318257,-74.5180925,RES1,3001,,19,NE,1960,1960,3102,2,1,1145.226907,1145.226907,3505,NO,34.08,44.2,3,1.9,6106,113.255985,123.101091,132.78673,139.34768,I,Above,Gable,0,5701,,39.14272845,0,0,,,,1,1,,0.03,nav,1,1960,2,, 18295,NJBF000051305,,Longport,NJ,39.30460942,-74.53440551,RES1,3001,,NaN,NE,1969,0,3103,6,1,2612.738804,2612.738804,3505,NO,72.9,80.45,3,-0.04,6106,113.123237,122.97802,132.6447,139.187797,I,Above,Hip,0,5701,,76.67122031,0,0,,,,1,1,,0.03,nav,1,1969,6,, 18296,NJBF000051310,,Longport,NJ,39.30468468,-74.53428811,RES1,3001,,NaN,NE,1969,0,3103,4,1,3091.373337,3091.373337,3505,NO,47.46,62.41,3,-2.73,6106,113.124481,122.979151,132.645958,139.189214,I,Above,Flat,0,5701,,54.93656332,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18297,NJBF000052651,3106 PACIFIC AVE,Longport,NJ,39.31625541,-74.52083214,RES1,3001,,18,NE,1965,1965,3102,1,1,1289.963636,1289.963636,3505,NO,15.58,20.65,3,2.28,6106,113.227565,123.076433,132.75931,139.317096,I,Above,Gable,0,5701,,18.11118698,0,0,,,,1,1,,0.03,nav,1,1965,1,, 18298,NJBF000053376,106 NO YARMOUTH AVE,Longport,NJ,39.31970017,-74.52276655,RES1,3001,,18,NE,1965,1965,3102,2,1,1188.013337,1188.013337,3505,NO,43.59,56.17,3,7.83,6106,113.132684,123.002395,132.68645,139.235361,I,Above,Gable,0,5701,,49.88390706,0,0,,,,1,1,,0.03,nav,1,1965,2,, 18299,NJBF000053345,102 NO YARMOUTH AVE,Longport,NJ,39.31959926,-74.52269991,RES1,3001,,18,NE,1960,1960,3102,2,1,1409.937871,1409.937871,3505,NO,27.89,39.82,3,3,6106,113.135685,123.004743,132.688773,139.237987,I,Above,Gable,0,5701,,33.85559964,0,0,,,,1,1,,0.03,nav,1,1960,2,, 18300,NJBF000051670,2104 BEACH TERRACE,Longport,NJ,39.30969408,-74.52787073,RES1,3001,,23,NE,2000,2000,3102,3,1,2982.636047,2982.636047,3505,NO,43.16,54.71,3,8.74,6106,113.179659,123.030803,132.705166,139.256032,I,Above,Hip,0,5701,,48.93494908,0,0,,,,1,1,,0.03,nav,1,2000,3,, 18301,NJBF000053241,105 NO WOODCREST AVE,Longport,NJ,39.3192212,-74.52344192,RES1,3001,,20,NE,2003,2003,3102,3,1,2543.111052,2543.111052,3505,NO,58.9,64.96,3,8.88,6106,113.125454,122.996152,132.679603,139.227727,I,Above,Hip,0,5701,,61.92914586,0,0,,,,1,1,,0.03,nav,1,2003,3,, 18302,NJBF000051976,103 SO 25TH AVE,Longport,NJ,39.31210935,-74.52570625,RES1,3001,,20,NE,1984,1984,3102,3,1,2522.13193,2522.13193,3505,NO,38.99,47.95,3,5.95,6106,113.187609,123.03996,132.717361,139.269955,I,Above,Flat,0,5701,,43.47074823,0,1.2,,,,1,1,,0.03,nav,1,1984,3,, 18303,NJBF000053388,10 NO 35TH AVE,Longport,NJ,39.3197355,-74.5199385,RES1,3001,,18,NE,1950,1950,3102,1,1,1655.52146,1655.52146,3505,NO,14.76,20.81,3,-2.86,6106,113.193385,123.051546,132.737054,139.292135,I,Above,Hip,0,5701,,17.7808907,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18304,NJBF000052931,101 SO 36TH AVE,Longport,NJ,39.31785397,-74.51675009,RES1,3001,,18,NE,1954,1954,3103,1,1,2132.467825,2132.467825,3505,NO,18.53,27.61,3,0.28,6106,113.29121,123.129302,132.815456,139.379596,I,Above,Hip,0,5701,,23.07253113,0,0,,,,1,1,,0.03,nav,1,1954,1,, 18305,NJBF000052827,12 SO 32ND AVE,Longport,NJ,39.31733801,-74.52134936,RES1,3001,,18,NE,1945,1945,3102,1,1,1215.405938,1215.405938,3505,NO,20.99,26.33,3,4.34,6106,113.199683,123.054742,132.738065,139.29341,I,Above,Gable,0,5701,,23.65861898,0,0,,,,1,1,,0.03,nav,1,1945,1,, 18306,NJBF000052969,25 SO 35TH AVE,Longport,NJ,39.31803804,-74.51782543,RES1,3001,,18,NE,1950,1950,3102,1,1,1039.308079,1039.308079,3505,NO,11.9,24.31,3,-2.32,6106,113.265118,123.108317,132.793972,139.355736,I,Above,Flat,0,5701,,18.10057412,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18307,NJBF000052880,3504 ATLANTIC AVE,Longport,NJ,39.31761851,-74.51705288,RES1,3001,,18,NE,1960,1960,3103,2,1,1855.405149,1855.405149,3505,NO,33.6,43.18,3,6.94,6106,113.288244,123.126722,132.812555,139.376367,I,Above,Gable,0,5701,,38.39232041,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18308,NJBF000052745,11 NO MANOR AVE,Longport,NJ,39.31685716,-74.52435093,RES1,3001,,18,NE,1950,1950,3102,1,1,1488.62995,1488.62995,3505,NO,17,28.51,3,-1.48,6106,113.142399,123.007846,132.689384,139.238898,I,Above,Hip,0,5701,,22.75208825,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18309,NJBF000052822,33 NO MANOR AVE,Longport,NJ,39.31730785,-74.52482784,RES1,3001,,20,NE,2016,2016,3102,3,1,1118.298165,1118.298165,3505,NO,44.59,55.22,3,-2.09,6106,113.125125,122.994231,132.675845,139.223672,I,Above,Flat,0,5701,,49.90675144,0,1.2,,,,1,1,,0.03,nav,1,2016,3,, 18310,NJBF000053180,4 N COLGATE AVE,Longport,NJ,39.31899519,-74.52056158,RES1,3001,,18,NE,1952,1952,3102,2,1,996.0202854,996.0202854,3505,NO,29.81,44.28,3,1.57,6106,113.191212,123.049222,132.733974,139.288761,I,Above,Flat,0,5701,,37.04365918,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 18311,NJBF000053362,3213 WINCHESTER AVE,Longport,NJ,39.31965057,-74.52226832,RES1,3001,,20,NE,2011,2011,3102,3,1,2388.494593,2388.494593,3505,NO,54.71,60.98,3,4.32,6106,113.144233,123.011705,132.695976,139.246075,I,Above,Gable,0,5701,,57.84281393,0,0,,,,1,1,,0.03,nav,1,2011,3,, 18312,NJBF000052369,,Longport,NJ,39.31422359,-74.52435772,RES1,3001,,NaN,NE,1969,0,3102,2,1,2045.708457,2045.708457,3505,NO,30.9,40.33,3,-2.39,6106,113.183283,123.038588,132.718267,139.271175,I,Above,Flat,0,5701,,35.61092864,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18313,NJBF000051360,1204 ATLANTIC AVE,Longport,NJ,39.30552217,-74.53568214,RES1,3001,,16,NE,1940,1940,3103,2,1,1554.865878,1554.865878,3505,NO,26.64,37.95,3,1.19,6106,113.081635,122.94497,132.612149,139.151414,I,Above,Hip,0,5701,,32.29455759,0,0,,,,1,1,,0.03,nav,1,1940,2,, 18314,NJBF000051546,113 SO 18TH AV,Longport,NJ,39.30818264,-74.53066358,RES1,3001,,20,NE,1997,1997,3102,2,1,2422.629834,2422.629834,3505,NO,29.24,43.82,3,-1.22,6106,113.144493,123.000192,132.67197,139.218761,I,Above,Gable,0,5701,,36.53295994,0,0,,,,1,1,,0.03,nav,1,1997,2,, 18315,NJBF000053870,217 N 33RD AVE,Longport,NJ,39.3215839,-74.52328741,RES1,3001,,18,NE,1950,1950,3102,2,1,1725.791183,1725.791183,3505,NO,29.4,35.84,3,7.87,6106,113.092568,122.971393,132.656228,139.20093,I,Above,Gable,0,5701,,32.6228103,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18316,NJBF000053890,221 NO 33RD AVE,Longport,NJ,39.32166652,-74.52341533,RES1,3001,,18,NE,1950,1950,3102,2,1,936.4953803,936.4953803,3505,NO,43.54,56.81,3,7.08,6106,113.088525,122.968186,132.653004,139.19727,I,Above,Gable,0,5701,,50.17368923,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18317,NJBF000052793,15 SO WOODCREST AVE,Longport,NJ,39.31714981,-74.52146963,RES1,3001,,18,NE,1950,1950,3102,1,1,1293.725866,1293.725866,3505,NO,28.01,38.78,3,8.54,6106,113.199973,123.054818,132.737958,139.293291,I,Above,Gable,0,5701,,33.39447412,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18318,NJBF000052430,2915 ATLANTIC AVE,Longport,NJ,39.31463783,-74.52303089,RES1,3001,,18,NE,1960,1960,3102,2,1,1738.331376,1738.331376,3505,NO,35.47,45.78,3,-2.29,6106,113.20532,123.056908,132.737536,139.292716,I,Above,Gable,0,5701,,40.62938339,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18319,NJBF000053464,108 NO 33RD AVE,Longport,NJ,39.32004,-74.5223551,RES1,3001,,20,NE,2005,2005,3102,3,1,1957.708173,1957.708173,3505,NO,52.62,66.14,3,-1.56,6106,113.136384,123.005657,132.690107,139.23942,I,Above,Gable,0,5701,,59.37945207,0,0,,,,1,1,,0.03,nav,1,2005,3,, 18320,NJBF000053057,25 NO WOODCREST AVE,Longport,NJ,39.3184665,-74.5227425,RES1,3001,,18,NE,1950,1950,3102,2,1,1095.565428,1095.565428,3505,NO,30.94,44.48,3,-0.54,6106,113.152187,123.017186,132.700521,139.251311,I,Above,Flat,0,5701,,37.70765047,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18321,NJBF000051260,1105 BEACH AVE,Longport,NJ,39.30389683,-74.5352223,RES1,3001,,22,NE,1986,1986,3103,2,1,4317.413828,4317.413828,3505,NO,26.95,40.51,3,-0.56,6106,113.117694,122.97245,132.638047,139.180266,I,Above,Flat,0,5701,,33.7319974,0,1,,,,1,1,,0.03,nav,1,1986,2,, 18322,NJBF000051355,118 SO 14TH AVE,Longport,NJ,39.30540656,-74.53386019,RES1,3001,,21,NE,1970,1970,3103,2,1,2484.970555,2484.970555,3505,NO,35.75,42.73,3,4.7,6106,113.121772,122.977906,132.645641,139.188951,I,Above,Hip,0,5701,,39.23887658,0,0,,,,1,1,,0.03,nav,1,1970,2,, 18323,NJBF000052203,2701 ATLANTIC AV,Longport,NJ,39.31338747,-74.52499195,RES1,3001,,18,NE,1938,1938,3102,2,1,756.0670573,756.0670573,3505,NO,31.56,40.99,3,5.94,6106,113.182798,123.03736,132.716106,139.26869,I,Above,Gable,0,5701,,36.27516589,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18324,NJBF000051354,1107 ATLANTIC AVE,Longport,NJ,39.3053954,-74.53665896,RES1,3001,,NaN,NE,1987,1987,3103,3,1,3075.775923,3075.775923,3505,NO,56.18,66.65,3,-0.54,6106,113.063212,122.929583,132.596282,139.133564,I,Above,Hip,0,5701,,61.41262424,0,0,,,,1,1,,0.03,nav,1,1987,3,, 18325,NJBF000053120,3112 WINCHESTER AVE,Longport,NJ,39.31876197,-74.52301356,RES1,3001,,18,NE,1950,1950,3102,1,1,2009.677111,2009.677111,3505,NO,22.06,33.3,3,3.51,6106,113.141771,123.008993,132.692375,139.242137,I,Above,Gable,0,5701,,27.67954165,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18326,NJBF000052334,2706 OBERON AVE,Longport,NJ,39.31402677,-74.52508771,RES1,3001,,20,NE,2013,2013,3102,3,1,999.5995409,999.5995409,3505,NO,46.52,53.34,3,-2.34,6106,113.170706,123.028158,132.707346,139.258954,I,Above,Gable,0,5701,,49.92926464,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18327,NJBF000052473,104 SO 31ST AVE,Longport,NJ,39.31494875,-74.52067848,RES1,3001,,22,NE,1987,1987,3103,3,1,3410.901634,3410.901634,3505,NO,37.81,45.42,3,-2.08,6106,113.25111,123.094397,132.776451,139.336066,I,Above,Hip,0,5701,,41.61618539,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 18328,NJBF000051284,,Longport,NJ,39.30426327,-74.53717435,RES1,3001,,NaN,NE,1985,0,3103,4,1,3169.457621,3169.457621,3505,NO,66.18,74.44,3,8.57,6106,113.070874,122.934284,132.599578,139.137164,I,Above,Flat,0,5701,,70.31048042,0,0,,,,1,1,,0.03,nav,1,1985,4,, 18329,NJBF000052596,2 NO MANOR AVE,Longport,NJ,39.31586923,-74.52391265,RES1,3001,,18,NE,1953,1953,3102,1,1,1339.542851,1339.542851,3505,NO,22.16,27.31,3,3.63,6106,113.167184,123.027068,132.708142,139.259929,I,Above,Gable,0,5701,,24.73624394,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 18330,NJBF000052624,3017 PACIFIC AVE,Longport,NJ,39.31607584,-74.52197901,RES1,3001,,18,NE,1950,1950,3102,2,1,1599.355525,1599.355525,3505,NO,30.72,38.36,3,0.62,6106,113.205609,123.058459,132.740626,139.29625,I,Above,Hip,0,5701,,34.53934197,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18331,NJBF000052986,11 NO WOODCREST AVE,Longport,NJ,39.31812382,-74.52242105,RES1,3001,,19,NE,1950,1950,3102,2,1,1270.477171,1270.477171,3505,NO,36.53,47.33,3,-1.9,6106,113.164414,123.02681,132.710091,139.262071,I,Above,Gable,0,5701,,41.93018811,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18332,NJBF000052963,15 SO 33RD AVE,Longport,NJ,39.31799511,-74.51989515,RES1,3001,,20,NE,2017,2017,3102,2,1,1218.44465,1218.44465,3505,NO,31.27,45.75,3,5.94,6106,113.220987,123.072545,132.757041,139.314593,I,Above,Gable,0,5701,,38.50918301,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 18333,NJBF000052968,7 NO WOODCREST AVE,Longport,NJ,39.31803666,-74.52232608,RES1,3001,,18,NE,1958,1958,3102,1,1,1383.046939,1383.046939,3505,NO,17.41,29.32,3,1.47,6106,113.167807,123.029488,132.712762,139.265069,I,Above,Gable,0,5701,,23.36112137,0,0,,,,1,1,,0.03,nav,1,1958,1,, 18334,NJBF000053080,3219 VENTNOR AVE,Longport,NJ,39.31857945,-74.52093838,RES1,3001,,18,NE,1965,1965,3102,2,1,2069.089861,2069.089861,3505,NO,29.83,40.56,3,-2.3,6106,113.189461,123.047476,132.731784,139.286341,I,Above,Hip,0,5701,,35.19740097,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 18335,NJBF000053936,216 NO 34TH AVE,Longport,NJ,39.32184512,-74.5227905,RES1,3001,,18,NE,1975,1975,3102,1,1,1617.501697,1617.501697,3505,NO,20.49,26.24,3,4.88,6106,113.099361,122.977076,132.662282,139.207691,I,Above,Gable,0,5701,,23.36386429,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18336,NJBF000053162,14 NO 33RD AVE,Longport,NJ,39.31894212,-74.52133156,RES1,3001,,18,NE,1952,1952,3102,1,1,2261.01805,2261.01805,3505,NO,20.89,33.8,3,6.09,6106,113.175365,123.036349,132.720674,139.273871,I,Above,Hip,0,5701,,27.34388979,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 18337,NJBF000053053,102 NO EVERGREEN AVE,Longport,NJ,39.31844628,-74.52478241,RES1,3001,,18,NE,1960,1960,3102,2,1,2173.668502,2173.668502,3505,NO,34.18,42.52,3,0.97,6106,113.108483,122.98174,132.664097,139.210365,I,Above,Hip,0,5701,,38.34758911,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18338,NJBF000053150,117 NO EVERGREEN AVE,Longport,NJ,39.31890348,-74.52475238,RES1,3001,,19,NE,1982,1982,3102,2,1,1905.182344,1905.182344,3505,NO,36.46,41.79,3,4.37,6106,113.102066,122.976932,132.659582,139.205227,I,Above,Gable,0,5701,,39.12487354,0,0,,,,1,1,,0.03,nav,1,1982,2,, 18339,NJBF000053073,3104 WINCHESTER AV,Longport,NJ,39.31855143,-74.52342993,RES1,3001,,18,NE,1950,1950,3102,1,1,1022.354653,1022.354653,3505,NO,14.78,23.06,3,-0.2,6106,113.136039,123.004171,132.687225,139.236372,I,Above,Flat,0,5701,,18.91953098,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18340,NJBF000053790,117 NO 35TH AVE,Longport,NJ,39.3212844,-74.52084424,RES1,3001,,21,NE,2014,2014,3102,3,1,1799.107654,1799.107654,3505,NO,56.35,69.23,3,-1.2,6106,113.150128,123.017699,132.703582,139.254328,I,Above,Flat,0,5701,,62.78751281,0,0,,,,1,1,,0.03,nav,1,2014,3,, 18341,NJBF000053782,107 NO 36TH AVE,Longport,NJ,39.32126416,-74.51995822,RES1,3001,,NaN,NE,1945,1945,3102,2,1,560.8451658,560.8451658,3505,NO,46.38,59.95,3,8.15,6106,113.169662,123.03347,132.719801,139.272546,I,Above,Hip,0,5701,,53.16339608,0,0,,,,1,1,,0.03,nav,1,1945,2,, 18342,NJBF000053783,3207 SUNSET AVE,Longport,NJ,39.32126891,-74.52404129,RES1,3001,,22,NE,2015,2015,3103,3,1,5002.715688,5002.715688,3505,NO,52.71,60.33,3,7.19,6106,113.081048,122.961839,132.646156,139.189641,I,Above,Hip,0,5701,,56.52017579,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 18343,NJBF000052532,,Longport,NJ,39.31538473,-74.52176689,RES1,3001,,NaN,NE,1969,0,3102,2,1,1807.091382,1807.091382,3505,NO,37.62,45.54,3,0.18,6106,113.220893,123.070251,132.752047,139.30895,I,Above,Flat,0,5701,,41.57883992,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18344,NJBF000052544,,Longport,NJ,39.31546605,-74.52163283,RES1,3001,,NaN,NE,1969,0,3102,2,1,1449.232149,1449.232149,3505,NO,32.3,45.05,3,0.95,6106,113.222522,123.071646,132.753568,139.31065,I,Above,Flat,0,5701,,38.67722254,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18345,NJBF000052555,2931 PACIFIC AVE,Longport,NJ,39.31554499,-74.52283952,RES1,3001,,18,NE,1950,1950,3102,1,1,1556.231761,1556.231761,3505,NO,12.92,21.25,3,1.58,6106,113.19531,123.049618,132.730987,139.285465,I,Above,Hip,0,5701,,17.08294023,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18346,NJBF000053562,3206 MONMOUTH AVE,Longport,NJ,39.32041272,-74.52347281,RES1,3001,,19,NE,2015,2015,3102,2,1,1790.117994,1790.117994,3505,NO,31.53,38.28,3,1.55,6106,113.106465,122.981736,132.665856,139.212055,I,Above,Hip,0,5701,,34.90814196,0,0,,,,1,1,,0.03,nav,1,2015,2,, 18347,NJBF000053523,132 NO YARMOUTH AVE,Longport,NJ,39.32025437,-74.52333291,RES1,3001,,18,NE,1964,1964,3102,2,1,1556.808889,1556.808889,3505,NO,33.6,45.11,3,-1.22,6106,113.111934,122.986037,132.670135,139.216906,I,Above,Gable,0,5701,,39.35641536,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 18348,NJBF000053574,119 NO 33RD AV,Longport,NJ,39.32045345,-74.52224117,RES1,3001,,20,NE,2008,2008,3102,3,1,2028.687781,2028.687781,3505,NO,55.2,69.41,3,8.5,6106,113.132527,123.002855,132.68759,139.236518,I,Above,Gable,0,5701,,62.30459501,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 18349,NJBF000053520,7 NO 36TH AVE,Longport,NJ,39.32025086,-74.51901793,RES1,3001,,18,NE,1975,1975,3102,1,1,2982.868323,2982.868323,3505,NO,25.57,33.98,3,6.86,6106,113.205476,123.0617,132.747989,139.304306,I,Above,Gable,0,5701,,29.77058357,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 18350,NJBF000053587,100 NO 35TH AVE,Longport,NJ,39.320495,-74.52067,RES1,3001,,19,NE,2006,2006,3102,2,1,1536.809638,1536.809638,3505,NO,25.56,32.91,3,2.32,6106,113.165929,123.029902,132.715451,139.267812,I,Above,Hip,0,5701,,29.2369943,0,0,,,,1,1,,0.03,nav,1,2006,2,, 18351,NJBF000053486,18 NO 35TH AVE,Longport,NJ,39.3201191,-74.52033974,RES1,3001,,18,NE,1950,1950,3102,2,1,1144.0165,1144.0165,3505,NO,24.36,35.24,3,1.6,6106,113.178823,123.040051,132.725564,139.279214,I,Above,Flat,0,5701,,29.79834993,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18352,NJBF000053401,5 NO 35TH AVE,Longport,NJ,39.31980349,-74.51944977,RES1,3001,,18,NE,1960,1960,3102,2,1,1406.127386,1406.127386,3505,NO,38.23,50.42,3,-0.07,6106,113.202938,123.059323,132.745129,139.301163,I,Above,Hip,0,5701,,44.32726678,0,0,,,,1,1,,0.03,nav,1,1960,2,, 18353,NJBF000053445,8 NO 36TH AVE,Longport,NJ,39.31996331,-74.51934005,RES1,3001,,20,NE,2014,2014,3102,3,1,886.1272917,886.1272917,3505,NO,41.06,52.37,3,3.13,6106,113.202882,123.059395,132.745349,139.301391,I,Above,Gable,0,5701,,46.71286697,0,0,,,,1,1,,0.03,nav,1,2014,3,, 18354,NJBF000051865,2300 ATLANTIC AVE,Longport,NJ,39.31135228,-74.52741928,RES1,3001,,18,NE,1985,1985,3102,2,1,2009.363218,2009.363218,3505,NO,36.55,45.15,3,2.27,6106,113.162982,123.019044,132.695043,139.244948,I,Above,Flat,0,5701,,40.85219732,0,0,,,,1,1,,0.03,nav,1,1985,2,, 18355,NJBF000053433,102 NO 33RD AVE,Longport,NJ,39.31990953,-74.52218907,RES1,3001,,18,NE,1952,1952,3102,1,1,910.3927167,910.3927167,3505,NO,24.84,30.17,3,5.68,6106,113.14197,123.010077,132.694534,139.244418,I,Above,Hip,0,5701,,27.50455128,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 18356,NJBF000053254,3504 VENTNOR AVE,Longport,NJ,39.31926873,-74.51877879,RES1,3001,,18,NE,1950,1950,3102,1,1,593.6799312,593.6799312,3505,NO,10.36,15.37,3,-0.67,6106,113.225634,123.077288,132.76315,139.321354,I,Above,Flat,0,5701,,12.86448315,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18357,NJBF000051893,102 SO 24TH AV,Longport,NJ,39.3115138,-74.52678517,RES1,3001,,21,NE,2016,2016,3102,3,1,1855.98089,1855.98089,3505,NO,51.1,60.68,3,2.93,6106,113.173947,123.028176,132.704593,139.255635,I,Above,Hip,0,5701,,55.8884517,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 18358,NJBF000051896,112 SO 25TH AVE,Longport,NJ,39.31155319,-74.52564153,RES1,3001,,20,NE,1975,1975,3102,2,1,1674.886854,1674.886854,3505,NO,26.54,34.18,3,3.6,6106,113.197743,123.047636,132.724611,139.277967,I,Above,Flat,0,5701,,30.36228473,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 18359,NJBF000053420,135 NO WOODCREST AVE,Longport,NJ,39.31986839,-74.52407339,RES1,3001,,18,NE,1950,1950,3102,2,1,1536.259678,1536.259678,3505,NO,31.12,45.42,3,4.47,6106,113.101858,122.977571,132.661101,139.206795,I,Above,Gable,0,5701,,38.27203385,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18360,NJBF000051910,5 BAY HAVEN DR,Longport,NJ,39.3116704,-74.52826822,RES1,3001,,20,NE,2015,2015,3102,3,1,1487.603527,1487.603527,3505,NO,50.78,56.53,3,0.45,6106,113.139839,123.000497,132.676391,139.224113,I,Above,Gable,0,5701,,53.65331131,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 18361,NJBF000053460,11 NO 35TH AVE,Longport,NJ,39.32002199,-74.51967891,RES1,3001,,19,NE,2005,2005,3102,2,1,1620.02636,1620.02636,3505,NO,21.66,27.94,3,0.49,6106,113.194632,123.052766,132.738573,139.293799,I,Above,Gable,0,5701,,24.80180915,0,0,,,,1,1,,0.03,nav,1,2005,2,, 18362,NJBF000053211,107 NO 31ST AVE,Longport,NJ,39.31908667,-74.52409682,RES1,3001,,21,NE,2015,2015,3102,3,1,1915.495736,1915.495736,3505,NO,48.01,56.82,3,7.04,6106,113.113368,122.986248,132.669311,139.216161,I,Above,Gable,0,5701,,52.41659014,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 18363,NJBF000051482,1705 BEACH TERRACE,Longport,NJ,39.3075167,-74.53074825,RES1,3001,,22,NE,2004,2004,3102,2,1,3053.122037,3053.122037,3505,NO,38.37,52.82,3,-0.47,6106,113.153396,123.006667,132.677771,139.225152,I,Above,Flat,0,5701,,45.59501921,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18364,NJBF000051466,121 SO 17TH AVE,Longport,NJ,39.30728793,-74.53110699,RES1,3001,,22,NE,1999,1999,3102,3,1,4168.910023,4168.910023,3505,NO,40.9,55.81,3,6.19,6106,113.14948,123.003164,132.673897,139.220793,I,Above,Flat,0,5701,,48.35347022,0,0,,,,1,1,,0.03,nav,1,1999,3,, 18365,NJBF000051461,1405 ATLANTIC AVE,Longport,NJ,39.30701011,-74.53458856,RES1,3001,,21,NE,2010,2010,3103,2,1,3268.104304,3268.104304,3505,NO,30.38,41.9,3,0.94,6106,113.080495,122.946079,132.615186,139.154977,I,Above,Flat,0,5701,,36.13693786,0,0,,,,1,1,,0.03,nav,1,2010,2,, 18366,NJBF000053229,9 SO 36TH AVE,Longport,NJ,39.319186,-74.518073,RES1,3001,,19,NE,1935,1935,3102,2,1,1582.593561,1582.593561,3505,NO,37.29,49.33,3,0.99,6106,113.242202,123.090631,132.776834,139.336627,I,Above,Gable,0,5701,,43.30655859,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 18367,NJBF000052019,2506 ATLANTIC AVE,Longport,NJ,39.31247621,-74.52557915,RES1,3001,,18,NE,1976,1976,3102,2,1,1167.107928,1167.107928,3505,NO,36.98,51.26,3,-1.09,6106,113.184545,123.037847,132.715603,139.268036,I,Above,Flat,0,5701,,44.11948838,0,0,,,,1,1,,0.03,nav,1,1976,2,, 18368,NJBF000052340,2809 ATLANTIC AVE,Longport,NJ,39.31404781,-74.52395169,RES1,3001,,20,NE,2016,2016,3102,3,1,1895.994344,1895.994344,3505,NO,53.27,65.09,3,3.58,6106,113.194749,123.047745,132.727488,139.281456,I,Above,Hip,0,5701,,59.18124057,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 18369,NJBF000052061,102 SO 27TH AVE,Longport,NJ,39.31270587,-74.52475265,RES1,3001,,21,NE,1965,1965,3102,2,1,1644.559448,1644.559448,3505,NO,27.28,34.28,3,5.69,6106,113.198609,123.049546,132.727873,139.281749,I,Above,Flat,0,5701,,30.7780292,0,0,,,,1,1,,0.03,nav,1,1965,2,, 18370,NJBF000052385,2903 ATLANTIC AVE,Longport,NJ,39.31432337,-74.52347717,RES1,3001,,19,NE,1955,1955,3102,2,1,2019.74814,2019.74814,3505,NO,43.99,53.41,3,8.23,6106,113.200651,123.052812,132.73299,139.287619,I,Above,Gable,0,5701,,48.69967127,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 18371,NJBF000052890,11 NO EVERGREEN AVE,Longport,NJ,39.31765048,-74.52355284,RES1,3001,,19,NE,2007,2007,3102,3,1,1267.587116,1267.587116,3505,NO,44.02,52.78,3,1.11,6106,113.147305,123.012533,132.694965,139.245131,I,Above,Gable,0,5701,,48.39776677,0,0,,,,1,1,,0.03,nav,1,2007,3,, 18372,NJBF000052882,12 SO YARMOUTH AVE,Longport,NJ,39.31762527,-74.52081697,RES1,3001,,18,NE,1957,1957,3102,2,1,1889.568929,1889.568929,3505,NO,39.09,47.11,3,1.27,6106,113.206749,123.060709,132.744489,139.300584,I,Above,Hip,0,5701,,43.09896688,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 18373,NJBF000052012,2504 ATLANTIC AVE,Longport,NJ,39.31238791,-74.5256908,RES1,3001,,20,NE,1996,1996,3102,3,1,1931.897754,1931.897754,3505,NO,46.81,55.41,3,-1.96,6106,113.183535,123.036932,132.714565,139.266867,I,Above,Flat,0,5701,,51.1103235,0,0,,,,1,1,,0.03,nav,1,1996,3,, 18374,NJBF000052345,,Longport,NJ,39.31407608,-74.52691948,RES1,3001,,NaN,NE,1969,0,3103,6,1,5130.18373,5130.18373,3505,NO,87.49,100.46,3,-2.34,6106,113.130699,122.995629,132.674025,139.221631,I,Above,Hip,0,5701,,93.97692378,0,0,,,,1,1,,0.03,nav,1,1969,6,, 18375,NJBF000052796,,Longport,NJ,39.3171622,-74.52597321,RES1,3001,,NaN,NE,1994,0,3103,5,1,1679.85156,1679.85156,3505,NO,93.5,100.84,3,3.95,6106,113.102745,122.975925,132.656926,139.202395,I,Above,Hip,0,5701,,97.16792927,0,0,,,,1,1,,0.03,nav,1,1994,5,, 18376,NJBF000052812,9 SO WOODCREST AVE,Longport,NJ,39.31727408,-74.52161301,RES1,3001,,18,NE,1952,1952,3102,1,1,1067.654816,1067.654816,3505,NO,22.66,31.58,3,7.63,6106,113.194972,123.050868,132.734015,139.288884,I,Above,Hip,0,5701,,27.1197911,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18377,NJBF000052861,4 SO 32ND AVE,Longport,NJ,39.31750697,-74.52152485,RES1,3001,,18,NE,1965,1965,3102,1,1,1315.197421,1315.197421,3505,NO,22.12,29.46,3,8.81,6106,113.193276,123.04969,132.733031,139.287781,I,Above,Gable,0,5701,,25.79386661,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 18378,NJBF000052835,4 SO 32ND AVE,Longport,NJ,39.31738835,-74.52150393,RES1,3001,,18,NE,1965,1965,3102,1,1,937.0568027,937.0568027,3505,NO,21.51,26.86,3,3.95,6106,113.195565,123.051446,132.734722,139.289673,I,Above,Gable,0,5701,,24.18328142,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 18379,NJBF000052799,53 NO PELHAM AVE,Longport,NJ,39.317182,-74.52546394,RES1,3001,,18,NE,1960,1960,3102,2,1,1105.268065,1105.268065,3505,NO,31.01,38.35,3,4.09,6106,113.113388,122.984587,132.665828,139.212414,I,Above,Gable,0,5701,,34.67799053,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18380,NJBF000052781,2 SO 31ST AVE,Longport,NJ,39.31705665,-74.5226619,RES1,3001,,18,NE,1950,1950,3102,1,1,2395.688081,2395.688081,3505,NO,16.5,26.74,3,-2.17,6106,113.175695,123.035046,132.717528,139.270442,I,Above,Hip,0,5701,,21.62071028,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18381,NJBF000052768,,Longport,NJ,39.3169863,-74.52210003,RES1,3001,,NaN,NE,1969,0,3102,2,1,1369.141317,1369.141317,3505,NO,38.77,53.21,3,0.2,6106,113.188913,123.045708,132.728422,139.282633,I,Above,Flat,0,5701,,45.9879296,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18382,NJBF000052043,2408 OBERON AV,Longport,NJ,39.31261983,-74.52694628,RES1,3001,,18,NE,1940,1940,3102,1,1,1222.339618,1222.339618,3505,NO,17.39,32.2,3,3.31,6106,113.153045,123.012314,132.689563,139.238947,I,Above,Flat,0,5701,,24.79236751,0,0,,,,1,1,,0.03,nav,1,1940,1,, 18383,NJBF000052848,104 SO 36TH AV,Longport,NJ,39.31745438,-74.51692585,RES1,3001,,21,NE,1998,1998,3103,3,1,2157.929225,2157.929225,3505,NO,62.25,68.67,3,4.12,6106,113.293518,123.130867,132.816669,139.380922,I,Above,Flat,0,5701,,65.45620397,0,0,,,,1,1,,0.03,nav,1,1998,3,, 18384,NJBF000052788,29 S 32ND AVE,Longport,NJ,39.31710485,-74.52063215,RES1,3001,,18,NE,1935,1935,3102,1,1,1301.761187,1301.761187,3505,NO,16.99,24.81,3,2.92,6106,113.218757,123.070011,132.753555,139.310706,I,Above,Hip,0,5701,,20.89583666,0,0,,,,1,1,,0.03,nav,1,1935,1,, 18385,NJBF000052673,25 SO 31ST AVE,Longport,NJ,39.3164521,-74.5215616,RES1,3001,,20,NE,2007,2007,3102,3,1,1385.746771,1385.746771,3505,NO,53,65.83,3,5.76,6106,113.208775,123.061359,132.743992,139.30002,I,Above,Gable,0,5701,,59.41453055,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 18386,NJBF000052755,,Longport,NJ,39.31691785,-74.52126132,RES1,3001,,NaN,NE,1969,0,3102,2,1,1595.103472,1595.103472,3505,NO,35.53,42.38,3,3.56,6106,113.208065,123.061184,132.744279,139.300351,I,Above,Gable,0,5701,,38.95854902,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18387,NJBF000052725,3119 PACIFIC AVE,Longport,NJ,39.31674629,-74.52079135,RES1,3001,,18,NE,1970,1970,3102,1,1,1615.054705,1615.054705,3505,NO,18.35,31.89,3,2.14,6106,113.220864,123.071417,132.754643,139.311912,I,Above,Flat,0,5701,,25.11568913,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 18388,NJBF000052657,26 NO PELHAM AVE,Longport,NJ,39.31631723,-74.52512145,RES1,3001,,18,NE,1950,1950,3102,1,1,1654.984291,1654.984291,3505,NO,18.16,28.89,3,2.8,6106,113.134226,123.000709,132.681526,139.230088,I,Above,Hip,0,5701,,23.52457303,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18389,NJBF000052659,31 SO 31ST AVE,Longport,NJ,39.31632044,-74.52145373,RES1,3001,,19,NE,2014,2014,3102,3,1,1108.107033,1108.107033,3505,NO,45.95,57.79,3,-0.19,6106,113.213146,123.064791,132.74739,139.303808,I,Above,Flat,0,5701,,51.86895113,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 18390,NJBF000052323,2704 OBERON AV,Longport,NJ,39.3139563,-74.52520854,RES1,3001,,18,NE,2010,2010,3102,2,1,1256.945957,1256.945957,3505,NO,34.04,47.12,3,2.36,6106,113.169224,123.026881,132.705959,139.257397,I,Above,Gable,0,5701,,40.58000892,0,1.1,,,,1,1,,0.03,nav,1,2010,2,, 18391,NJBF000052706,29 NO PELHAM AVE,Longport,NJ,39.31664987,-74.52496543,RES1,3001,,18,NE,1950,1950,3102,1,1,930.0662072,930.0662072,3505,NO,15.05,23.68,3,2.2,6106,113.1324,122.999536,132.68065,139.229097,I,Above,Gable,0,5701,,19.36357524,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18392,NJBF000052231,7 SO 27TH AV,Longport,NJ,39.31351764,-74.52505731,RES1,3001,,18,NE,1938,1938,3102,2,1,1441.335376,1441.335376,3505,NO,37.07,46.05,3,-0.7,6106,113.17935,123.034685,132.7135,139.265792,I,Above,Gable,0,5701,,41.56001821,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18393,NJBF000052259,3 SO 27TH AV,Longport,NJ,39.31367964,-74.52529022,RES1,3001,,18,NE,1938,1938,3102,2,1,1004.965815,1004.965815,3505,NO,42.92,50.05,3,7.75,6106,113.171815,123.028713,132.707544,139.259149,I,Above,Gable,0,5701,,46.4859531,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18394,NJBF000052586,2906 LONGPORT DRIVE,Longport,NJ,39.31579915,-74.52491446,RES1,3001,,19,NE,2014,2014,3102,3,1,1057.015618,1057.015618,3505,NO,41.34,50.46,3,6.87,6106,113.146748,123.010396,132.69095,139.240664,I,Above,Hip,0,5701,,45.89604858,0,0,,,,1,1,,0.03,nav,1,2014,3,, 18395,NJBF000052178,2505 OBERON AVE,Longport,NJ,39.31325694,-74.52679814,RES1,3001,,20,NE,2007,2007,3102,3,1,1872.938399,1872.938399,3505,NO,48.89,54.42,3,2.77,6106,113.146172,123.007384,132.685203,139.234116,I,Above,Flat,0,5701,,51.65352139,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 18396,NJBF000052251,2605 OBERON AVE,Longport,NJ,39.31364502,-74.52617834,RES1,3001,,20,NE,2015,2015,3102,3,1,970.1264485,970.1264485,3505,NO,54.76,66.94,3,6.27,6106,113.15334,123.01363,132.692027,139.241785,I,Above,Hip,0,5701,,60.84956731,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 18397,NJBF000054136,216 NO 36TH AVE,Longport,NJ,39.32250348,-74.52171417,RES1,3001,,18,NE,1975,1975,3102,1,1,1563.549739,1563.549739,3505,NO,20.88,33.15,3,2.31,6106,113.112703,122.988319,132.674379,139.221138,I,Above,Hip,0,5701,,27.01523083,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18398,NJBF000052523,1 SO PELHAM AVE,Longport,NJ,39.31530185,-74.52365685,RES1,3001,,18,NE,1953,1953,3102,1,1,1360.837405,1360.837405,3505,NO,22.16,35.69,3,8.57,6106,113.181517,123.038185,132.718984,139.272041,I,Above,Gable,0,5701,,28.92872458,0,0,,,,1,1,,0.03,nav,1,1953,1,, 18399,NJBF000052582,101 SO WOODCREST AVE,Longport,NJ,39.3157487,-74.5201245,RES1,3001,,19,NE,1975,1975,3103,1,1,1744.59231,1744.59231,3505,NO,21.29,26.79,3,5.91,6106,113.250658,123.094734,132.77764,139.337464,I,Above,Gable,0,5701,,24.04025035,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18400,NJBF000052228,2606 OBERON AVE,Longport,NJ,39.3134996,-74.5258001,RES1,3001,,20,NE,1915,2018,3102,3,1,1289.205302,1289.205302,3505,NO,44.03,51.33,3,0.01,6106,113.163714,123.021931,132.700389,139.251133,I,Above,Gable,0,5701,,47.68021736,0,1.1,,,,1,1,,0.03,nav,1,1915,3,, 18401,NJBF000052495,102 SO 31ST AVE,Longport,NJ,39.31514933,-74.52084989,RES1,3001,,18,NE,1970,1970,3103,2,1,1419.884815,1419.884815,3505,NO,34.69,45.65,3,4.95,6106,113.244303,123.089049,132.771153,139.330198,I,Above,Hip,0,5701,,40.17098158,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 18402,NJBF000052469,,Longport,NJ,39.3149075,-74.5232625,RES1,3001,,NaN,NE,1969,0,3102,2,1,1545.900858,1545.900858,3505,NO,35.97,43.09,3,-2.39,6106,113.196141,123.0497,132.730409,139.284782,I,Above,Flat,0,5701,,39.53247802,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18403,NJBF000052451,,Longport,NJ,39.31479317,-74.52316092,RES1,3001,,NaN,NE,1969,0,3102,2,1,1663.466572,1663.466572,3505,NO,37.92,45.59,3,6.07,6106,113.20011,123.052819,132.733495,139.28822,I,Above,Flat,0,5701,,41.75258578,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18404,NJBF000051936,,Longport,NJ,39.31187784,-74.5251009,RES1,3001,,NaN,NE,1999,0,3102,2,1,4826.916582,4826.916582,3505,NO,21.11,35.88,3,0.02,6106,113.204185,123.053234,132.73073,139.284828,I,Above,Hip,0,5701,,28.49843076,0,0,,,,1,1,,0.03,nav,1,1999,2,, 18405,NJBF000051839,105 SO 23RD AVE,Longport,NJ,39.31111058,-74.52710945,RES1,3001,,19,NE,1920,1920,3102,2,1,1833.931542,1833.931542,3505,NO,40.81,53.29,3,3.73,6106,113.173409,123.027294,132.703227,139.25406,I,Above,Gable,0,5701,,47.05305201,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 18406,NJBF000051813,102 SO 23RD AVE,Longport,NJ,39.31093801,-74.52780883,RES1,3001,,22,NE,2017,2017,3102,3,1,579.013858,579.013858,3505,NO,55.24,65.27,3,1.11,6106,113.161226,123.017148,132.692624,139.242196,I,Above,Hip,0,5701,,60.25845423,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 18407,NJBF000051828,102 SO 23RD AVE,Longport,NJ,39.31103679,-74.52771114,RES1,3001,,22,NE,2017,2017,3102,3,1,1991.709623,1991.709623,3505,NO,45.33,50.52,3,-2.66,6106,113.161745,123.017684,132.693287,139.242949,I,Above,Hip,0,5701,,47.92489895,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 18408,NJBF000051684,109 SO 21ST AVE,Longport,NJ,39.30991067,-74.52846127,RES1,3001,,21,NE,2004,2004,3102,3,1,3296.006428,3296.006428,3505,NO,31.62,38.9,3,-1.69,6106,113.163657,123.017963,132.69226,139.24166,I,Above,Flat,0,5701,,35.26387543,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18409,NJBF000051700,112 SO 22ND AVE,Longport,NJ,39.3100444,-74.52800656,RES1,3001,,NaN,NE,1901,1901,3102,2,1,2615.878202,2615.878202,3505,NO,30.92,41.71,3,-1.9,6106,113.171201,123.024288,132.6989,139.249092,I,Above,Hip,0,5701,,36.31349766,0,1.1,,,,1,1,,0.03,nav,1,1901,2,, 18410,NJBF000051532,115 SO 18TH AV,Longport,NJ,39.30807903,-74.53056126,RES1,3001,,21,NE,1997,1997,3102,2,1,2750.075839,2750.075839,3505,NO,42.01,53.91,3,8.83,6106,113.148341,123.00322,132.674941,139.222068,I,Above,Hip,0,5701,,47.95910589,0,0,,,,1,1,,0.03,nav,1,1997,2,, 18411,NJBF000051618,112 SO 20TH AVE,Longport,NJ,39.30912362,-74.52967856,RES1,3001,,19,NE,1960,1960,3102,1,1,2274.940522,2274.940522,3505,NO,15.92,22.23,3,-0.81,6106,113.150322,123.006119,132.679184,139.226949,I,Above,Gable,0,5701,,19.07261637,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18412,NJBF000051574,110 SO 19TH AVE,Longport,NJ,39.30852649,-74.53067117,RES1,3001,,NaN,NE,1900,1900,3102,3,1,596.0831232,596.0831232,3505,NO,47.98,59.11,3,8.42,6106,113.13885,122.995988,132.668086,139.214462,I,Above,Gable,0,5701,,53.54828971,0,1.2,,,,1,1,,0.03,nav,1,1900,3,, 18413,NJBF000051555,,Longport,NJ,39.30828226,-74.53091362,RES1,3001,,NaN,NE,1955,0,3102,2,1,1692.01037,1692.01037,3505,NO,44.49,50.82,3,7.56,6106,113.137612,122.994671,132.66644,139.212589,I,Above,Gable,0,5701,,47.65527542,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18414,NJBF000051428,101 SO 14TH AVE,Longport,NJ,39.30647823,-74.53442321,RES1,3001,,22,NE,2006,2006,3103,3,1,2992.210688,2992.210688,3505,NO,47.61,56.88,3,-0.53,6106,113.092594,122.955322,132.623952,139.164767,I,Above,Gable,0,5701,,52.24777378,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18415,NJBF000051407,1301 ATLANTIC AVE,Longport,NJ,39.30622864,-74.5356499,RES1,3001,,22,NE,1992,1992,3103,3,1,3462.345541,3462.345541,3505,NO,64.12,70.43,3,7.67,6106,113.070831,122.937046,132.604974,139.14342,I,Above,Flat,0,5701,,67.2754971,0,1.2,,,,1,1,,0.03,nav,1,1992,3,, 18416,NJBF000051349,103 SO 12TH AVE,Longport,NJ,39.30528701,-74.53577821,RES1,3001,,22,NE,2012,2012,3103,3,1,3972.74208,3972.74208,3505,NO,31.98,41.8,3,-1.01,6106,113.083438,122.946129,132.613024,139.152372,I,Above,Hip,0,5701,,36.88806005,0,0,,,,1,1,,0.03,nav,1,2012,3,, 18417,NJBF000054235,226 NO 36TH AVE,Longport,NJ,39.32281304,-74.52201185,RES1,3001,,29,NE,1982,1982,3102,3,1,2087.397807,2087.397807,3505,NO,55.71,66.45,3,-2.38,6106,113.101523,122.979504,132.665566,139.211102,I,Above,Gable,0,5701,,61.07898565,0,1.1,,,,1,1,,0.03,nav,1,1982,3,, 18418,NJBF000054174,,Longport,NJ,39.32263053,-74.52184433,RES1,3001,,NaN,NE,1969,0,3102,2,1,1685.074613,1685.074613,3505,NO,26.83,39.16,3,-2.14,6106,113.107936,122.984557,132.670615,139.216854,I,Above,Flat,0,5701,,32.99459024,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18419,NJBF000054109,,Longport,NJ,39.32239961,-74.52336022,RES1,3001,,NaN,NE,1987,0,3103,4,1,2001.430038,2001.430038,3505,NO,73.25,88.15,3,-1.78,6106,113.078535,122.96065,132.645863,139.188993,I,Above,Gable,0,5701,,80.69969,0,0,,,,1,1,,0.03,nav,1,1987,4,, 18420,NJBF000051265,9 POINT DRIVE,Longport,NJ,39.30394382,-74.53700161,RES1,3001,,21,NE,1993,1993,3103,3,1,1702.980242,1702.980242,3505,NO,39.73,49.14,3,2.59,6106,113.079675,122.941098,132.6061,139.144459,I,Above,Flat,0,5701,,44.43154664,0,0,,,,1,1,,0.03,nav,1,1993,3,, 18421,NJBF000052125,2506 OBERON AVE,Longport,NJ,39.31301452,-74.52640744,RES1,3001,,17,NE,1893,1893,3102,3,1,1329.495801,1329.495801,3505,NO,64.34,70.16,3,6.37,6106,113.158347,123.017055,132.694859,139.244908,I,Above,Hip,0,5701,,67.2490619,0,0,,,,1,1,,0.03,nav,1,1893,3,, 18422,NJBF000052642,29 NO OVERBROOK AVE,Longport,NJ,39.31619495,-74.52529853,RES1,3001,,18,NE,1945,1945,3102,1,1,999.9767431,999.9767431,3505,NO,17.45,22.82,3,4.66,6106,113.132299,122.999028,132.67968,139.228016,I,Above,Hip,0,5701,,20.13448601,0,0,,,,1,1,,0.03,nav,1,1945,1,, 18423,NJBF000053075,3 SO COLGATE AV,Longport,NJ,39.31856037,-74.51971463,RES1,3001,,18,NE,1954,1954,3102,1,1,1621.450035,1621.450035,3505,NO,17.67,29.8,3,-1.77,6106,113.216211,123.069123,132.754061,139.311247,I,Above,Hip,0,5701,,23.73288687,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 18424,NJBF000052724,20 SO WOODCREST AVE,Longport,NJ,39.31674269,-74.52153736,RES1,3001,,18,NE,1948,1948,3102,2,1,1471.519166,1471.519166,3505,NO,31.92,38.57,3,-1.21,6106,113.204814,123.058397,132.741236,139.29695,I,Above,Gable,0,5701,,35.2435796,0,0,,,,1,1,,0.03,nav,1,1948,2,, 18425,NJBF000051713,105 SO 21ST AVE,Longport,NJ,39.31015466,-74.52873743,RES1,3001,,17,NE,1890,1890,3102,3,1,3036.604891,3036.604891,3505,NO,41.54,47.89,3,0.44,6106,113.153904,123.010268,132.684661,139.233201,I,Above,Flat,0,5701,,44.71578837,0,1.1,,,,1,1,,0.03,nav,1,1890,3,, 18426,NJBF000053046,7 NO 32ND AVE,Longport,NJ,39.31843059,-74.52186579,RES1,3001,,20,NE,2008,2008,3102,3,1,1995.468307,1995.468307,3505,NO,49.47,56.52,3,-0.53,6106,113.171674,123.032948,132.716695,139.269452,I,Above,Flat,0,5701,,52.99751511,0,0,,,,1,1,,0.03,nav,1,2008,3,, 18427,NJBF000052899,27 SO 33RD AVE,Longport,NJ,39.317706,-74.5196245,RES1,3001,,18,NE,1955,1955,3102,2,1,1230.649943,1230.649943,3505,NO,31.63,43.73,3,8.66,6106,113.231264,123.08064,132.7651,139.323586,I,Above,Hip,0,5701,,37.67843586,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18428,NJBF000052726,3013 DEVON AVE,Longport,NJ,39.31674728,-74.52273891,RES1,3001,,18,NE,1952,1952,3102,2,1,1122.382727,1122.382727,3505,NO,39.24,51.99,3,3.2,6106,113.178834,123.037322,132.719561,139.27272,I,Above,Gable,0,5701,,45.61762419,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18429,NJBF000053839,121 NO 35TH AVE,Longport,NJ,39.32146599,-74.52108099,RES1,3001,,18,NE,1955,1955,3102,2,1,894.0934137,894.0934137,3505,NO,44.16,50.81,3,7.13,6106,113.142214,123.011433,132.69729,139.247213,I,Above,Flat,0,5701,,47.48259229,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 18430,NJBF000051906,105 SO 24TH AVE,Longport,NJ,39.3116445,-74.52631695,RES1,3001,,20,NE,1990,1990,3102,3,1,2050.260109,2050.260109,3505,NO,55.05,65.16,3,7.83,6106,113.181886,123.034796,132.711534,139.263398,I,Above,Flat,0,5701,,60.10591606,0,0,,,,1,1,,0.03,nav,1,1990,3,, 18431,NJBF000053082,34 NO WOODCREST AVE,Longport,NJ,39.31859169,-74.52326524,RES1,3001,,18,NE,1950,1950,3102,1,1,1322.228579,1322.228579,3505,NO,24.93,32.7,3,8.22,6106,113.13897,123.006581,132.689739,139.239192,I,Above,Hip,0,5701,,28.8156812,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18432,NJBF000052513,2717 SUNSET AVE,Longport,NJ,39.31524368,-74.52659911,RES1,3001,,NaN,NE,1991,1928,3103,3,1,2060.215108,2060.215108,3505,NO,39.48,51.52,3,-0.97,6106,113.119235,122.987481,132.66688,139.21364,I,Above,Hip,0,5701,,45.4989809,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 18433,NJBF000052794,20 SO 32ND AVE,Longport,NJ,39.31715525,-74.5211729,RES1,3001,,18,NE,1952,1952,3102,1,1,1324.47717,1324.47717,3505,NO,21.77,32.09,3,6.93,6106,113.206306,123.059958,132.743253,139.299207,I,Above,Hip,0,5701,,26.92794347,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18434,NJBF000052732,2939 LONGPORT DRIVE,Longport,NJ,39.31676216,-74.52398465,RES1,3001,,20,NE,2016,2016,3102,2,1,1838.013296,1838.013296,3505,NO,22.58,28.97,3,-1.38,6106,113.151756,123.015356,132.697003,139.247449,I,Above,Hip,0,5701,,25.77757135,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 18435,NJBF000051794,2303 BEACH TERRACE,Longport,NJ,39.31082082,-74.52642163,RES1,3001,,23,NE,2006,2006,3102,2,1,3132.98194,3132.98194,3505,NO,38.16,45.08,3,3.87,6106,113.192654,123.04269,132.718689,139.271268,I,Above,Hip,0,5701,,41.6158759,0,1.2,,,,1,1,,0.03,nav,1,2006,2,, 18436,NJBF000053622,19 NO 36TH AVE,Longport,NJ,39.32064982,-74.51941272,RES1,3001,,20,NE,2008,2008,3102,3,1,2598.088581,2598.088581,3505,NO,56.73,63.12,3,0.72,6106,113.190831,123.050146,132.73644,139.291317,I,Above,Gable,0,5701,,59.9247162,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 18437,NJBF000053438,3101 MONMOUTH AVE,Longport,NJ,39.31993409,-74.52491983,RES1,3001,,20,NE,2010,2010,3103,6,1,2149.820415,2149.820415,3505,NO,125.54,137.7,3,8.91,6102,113.082534,122.961975,132.645155,139.188797,I,Above,Flat,0,5701,,131.6199929,0,0,,,,1,1,,0.03,nav,1,2010,6,, 18438,NJBF000052157,,Longport,NJ,39.31316309,-74.52688463,RES1,3001,,NaN,NE,1969,0,3102,2,1,1901.227636,1901.227636,3505,NO,35.49,42.16,3,7.86,6106,113.145791,123.006975,132.684682,139.233525,I,Above,Hip,0,5701,,38.82365594,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18439,NJBF000051820,,Longport,NJ,39.31098528,-74.52694157,RES1,3001,,NaN,NE,1969,0,3102,2,1,2791.431443,2791.431443,3505,NO,37.07,46.44,3,7.9,6106,113.178966,123.031693,132.707594,139.258919,I,Above,Flat,0,5701,,41.75478843,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18440,NJBF000051285,111 SO 11TH AVE,Longport,NJ,39.30428366,-74.53610105,RES1,3001,,22,NE,1899,2018,3103,3,1,1880.235827,1880.235827,3505,NO,43.63,57.96,3,-0.03,6106,113.092984,122.95259,132.618287,139.158173,I,Above,Hip,0,5701,,50.79574067,0,1.2,,,,1,1,,0.03,nav,1,1899,3,, 18441,NJBF000053393,124 NO 32ND AVE,Longport,NJ,39.31976851,-74.5236461,RES1,3001,,18,NE,1940,1940,3102,1,1,948.5718878,948.5718878,3505,NO,19.67,32.42,3,5.94,6106,113.112613,122.986199,132.669873,139.216695,I,Above,Gable,0,5701,,26.04584888,0,0,,,,1,1,,0.03,nav,1,1940,1,, 18442,NJBF000051339,112 SO 13TH AVE,Longport,NJ,39.30514117,-74.53493161,RES1,3001,,20,NE,1980,1980,3103,2,1,2131.559831,2131.559831,3505,NO,33.59,42.86,3,4.04,6106,113.103562,122.962528,132.629578,139.170928,I,Above,Flat,0,5701,,38.22566363,0,0,,,,1,1,,0.03,nav,1,1980,2,, 18443,NJBF000053499,102 NO COLGATE AVE,Longport,NJ,39.32017335,-74.52168938,RES1,3001,,18,NE,1950,1950,3102,1,1,1045.520687,1045.520687,3505,NO,24.83,35.19,3,6.71,6106,113.148768,123.01578,132.700634,139.25123,I,Above,Hip,0,5701,,30.01163578,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18444,NJBF000051308,115 SO 12TH AVE,Longport,NJ,39.30467052,-74.53506089,RES1,3001,,21,NE,1986,1986,3103,6,1,2075.610302,2075.610302,3505,NO,84.29,94.54,3,8.53,6106,113.108486,122.965936,132.632436,139.174076,I,Above,Flat,0,5701,,89.4153718,0,0,,,,1,1,,0.03,nav,1,1986,6,, 18445,NJBF000052225,35 SEAVIEW DRIVE,Longport,NJ,39.31348881,-74.53421003,RES1,3001,,17,NE,1974,1974,3102,2,1,1957.175,1957.175,3507,NO,22.82,35.68,1,0.83,6106,112.984428,122.875544,132.550656,139.082382,I,Above,Gable,0,5701,,29.24940312,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 18446,NJBF000052185,30 SEAVIEW DRIVE,Longport,NJ,39.31329847,-74.53347192,RES1,3001,,20,NE,1987,1987,3102,2,1,2867.753424,2867.753424,3507,NO,35.9,43.39,1,0.23,6106,113.003161,122.890644,132.565854,139.099625,I,Above,Gable,0,5701,,39.64675766,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 18447,NJBF000052202,37 SEAVIEW DRIVE,Longport,NJ,39.31338003,-74.53435938,RES1,3001,,18,NE,1974,1974,3102,2,1,1750.835933,1750.835933,3507,NO,37.07,51.42,1,1.24,6106,112.983,122.874243,132.549217,139.080751,I,Above,Gable,0,5701,,44.2426848,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 18448,NJBF000052288,109 HOSPITALITY DRIVE,Longport,NJ,39.31381182,-74.53755733,RES1,3001,,19,NE,2002,2002,3102,3,1,2321.717556,2321.717556,3507,NO,47.08,55.18,1,-0.41,6106,112.908241,122.813524,132.487861,139.010864,I,Above,Hip,0,5701,,51.13113016,0,0,,,,1,1,,0.03,nav,1,2002,3,, 18449,NJBF000052268,110 HOSPITALITY DRIVE,Longport,NJ,39.31371007,-74.53774362,RES1,3001,,19,NE,2003,2003,3102,2,1,2483.554742,2483.554742,3507,NO,26.55,39.51,1,1.42,6106,112.905917,122.811485,132.485686,139.008385,I,Above,Hip,0,5701,,33.02903124,0,0,,,,1,1,,0.03,nav,1,2003,2,, 18450,NJBF000052186,13 SUNSET BLVD.,Longport,NJ,39.31330498,-74.53735058,RES1,3001,,18,NE,2000,2000,3102,3,1,1603.224076,1603.224076,3507,NO,38.99,48.26,1,-0.47,6106,112.92074,122.82312,132.4971,139.021437,I,Above,Gable,0,5701,,43.62404384,0,0,,,,1,1,,0.03,nav,1,2000,3,, 18451,NJBF000052134,11 SUNSET BLVD.,Longport,NJ,39.31306588,-74.53741607,RES1,3001,,16,NE,1960,1960,3102,2,1,1635.847449,1635.847449,3507,NO,27.85,37.25,1,0.92,6106,112.923201,122.824829,132.498591,139.023147,I,Above,Flat,0,5701,,32.55086986,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 18452,NJBF000052437,15 SEAVIEW DRIVE,Longport,NJ,39.3146995,-74.533034,RES1,3001,,17,NE,1974,1974,3102,2,1,1360.946909,1360.946909,3507,NO,35.93,49.91,1,1.47,6106,112.990192,122.881692,132.558155,139.090857,I,Above,Hip,0,5701,,42.92173776,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 18453,NJBF000052328,105 HOSPITALITY DRIVE,Longport,NJ,39.31398846,-74.53685208,RES1,3001,,18,NE,1995,1995,3102,3,1,1950.772166,1950.772166,3507,NO,44.21,53.09,1,-0.77,6106,112.920363,122.82369,132.498373,139.022854,I,Above,Hip,0,5701,,48.65083008,0,0,,,,1,1,,0.03,nav,1,1995,3,, 18454,NJBF000052159,,Longport,NJ,39.31316549,-74.53849817,COM1,3001,,NaN,ME,1969,0,3401,3,1,7963.096598,7963.096598,3507,NO,39.13,44.93,1,2.88,6106,112.898722,122.804861,132.478401,139.00009,I,Above,Hip,0,NaN,,42.03123192,0,0,,,,1,1,,0.03,nav,1,1969,3,, 18455,NJBF000052389,103 SO MANOR AVE,Longport,NJ,39.31436705,-74.52198393,RES1,3001,,19,NE,1970,1970,3103,1,1,1824.947783,1824.947783,3505,NO,21.92,36.72,3,7.68,6106,113.23205,123.078382,132.759338,139.316977,I,Above,Gable,0,5701,,29.31567093,0,0,,,,1,1,,0.03,nav,1,1970,1,, 18456,NJBF000051571,107 SO 18TH AVE,Longport,NJ,39.3084495,-74.5310795,RES1,3001,,18,NE,1986,1986,3102,2,1,1657.535151,1657.535151,3505,NO,26.75,40.73,3,4.09,6106,113.131404,122.989787,132.661647,139.207248,I,Above,Hip,0,5701,,33.74333578,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 18457,NJBF000052574,10 NO PELHAM AVE,Longport,NJ,39.31566998,-74.52451071,RES1,3001,,19,NE,1990,1990,3102,2,1,1421.871334,1421.871334,3505,NO,28.74,40.26,3,7.29,6106,113.157422,123.018949,132.699601,139.25036,I,Above,Gable,0,5701,,34.49760292,0,0,,,,1,1,,0.03,nav,1,1990,2,, 18458,NJBF000051522,,Longport,NJ,39.30797295,-74.53192978,RES1,3001,,NaN,NE,1969,0,3103,5,1,2082.214503,2082.214503,3505,NO,95.63,107.83,3,1.02,6106,113.121074,122.980708,132.651774,139.196134,I,Above,Hip,0,5701,,101.733028,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18459,NJBF000053248,128 NO 31ST AVE,Longport,NJ,39.3192515,-74.52479044,RES1,3001,,19,NE,1948,1948,3102,2,1,1036.869998,1036.869998,3505,NO,46.06,53.66,3,7.19,6106,113.095857,122.972197,132.655039,139.200058,I,Above,Hip,0,5701,,49.85974747,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 18460,NJBF000051277,122 SO 12TH AVE.,Longport,NJ,39.30411,-74.53500446,RES1,3001,,23,NE,2009,2009,3103,3,1,3668.976209,3668.976209,3505,NO,38.34,49.08,3,6.39,6106,113.118798,122.973662,132.639575,139.182001,I,Above,Hip,0,5701,,43.70999054,0,0,,,,1,1,,0.03,nav,1,2009,3,, 18461,NJBF000053000,10 NO 32ND AVE,Longport,NJ,39.31820762,-74.5221795,RES1,3001,,19,NE,2013,2013,3102,3,1,980.1192991,980.1192991,3505,NO,33.62,46.22,3,-1.67,6106,113.168346,123.030067,132.71352,139.265909,I,Above,Hip,0,5701,,39.92058576,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 18462,NJBF000053149,3402 VENTNOR AVE,Longport,NJ,39.3189026,-74.51952367,RES1,3001,,20,NE,2008,2008,3102,3,1,1468.532405,1468.532405,3505,NO,39.14,46.16,3,6.89,6106,113.215092,123.068481,132.753726,139.310854,I,Above,Flat,0,5701,,42.647193,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 18463,NJBF000051884,2405 BEACH AVE,Longport,NJ,39.31144905,-74.52572638,RES1,3001,,20,NE,1985,1985,3102,2,1,1467.507813,1467.507813,3505,NO,27.18,39.48,3,-1.22,6106,113.197589,123.047399,132.724249,139.27755,I,Above,Flat,0,5701,,33.3319559,0,0,,,,1,1,,0.03,nav,1,1985,2,, 18464,NJBF000051788,,Longport,NJ,39.31075358,-74.52798633,RES1,3001,,NaN,NE,1969,0,3102,2,1,2098.729985,2098.729985,3505,NO,40.47,48.76,3,7.29,6106,113.160373,123.016244,132.691485,139.240901,I,Above,Hip,0,5701,,44.61322753,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18465,NJBF000052669,39 NO OVERBROOK AVE,Longport,NJ,39.31643268,-74.52549684,RES1,3001,,18,NE,1949,1949,3102,1,1,1978.209386,1978.209386,3505,NO,12.57,22.77,3,-0.05,6106,113.124334,122.99278,132.673505,139.221075,I,Above,Gable,0,5701,,17.66720109,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 18466,NJBF000053903,200 NO 35TH AVE,Longport,NJ,39.32171582,-74.52182205,RES1,3001,,19,NE,2014,2014,3102,3,1,1665.779782,1665.779782,3505,NO,42.51,56.92,3,-1.31,6106,113.122328,122.995542,132.681155,139.228996,I,Above,Gable,0,5701,,49.7177296,0,0,,,,1,1,,0.03,nav,1,2014,3,, 18467,NJBF000051375,105 SO 13TH AV,Longport,NJ,39.30570862,-74.53494763,RES1,3001,,18,NE,1950,1950,3103,3,1,1520.549862,1520.549862,3505,NO,37.23,50.51,3,2.55,6106,113.094012,122.955438,132.623081,139.163706,I,Above,Hip,0,5701,,43.87076061,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 18468,NJBF000052433,14 NO 28TH AVE,Longport,NJ,39.31467559,-74.52597364,RES1,3001,,45,NE,1967,1967,3102,2,2,2334.816077,2334.816077,3505,NO,29.02,34.68,3,-0.48,6106,113.141538,123.005064,132.684329,139.233213,I,Above,Gable,0,5701,,31.84778333,0,0,,,,1,1,,0.03,nav,1,1967,2,, 18469,NJBF000051524,1805 BEACH TERRACE,Longport,NJ,39.30799425,-74.5301126,RES1,3001,,22,NE,1996,1996,3102,3,1,2325.154631,2325.154631,3505,NO,42.55,55.25,3,2.19,6106,113.159191,123.012015,132.683842,139.231997,I,Above,Flat,0,5701,,48.90373509,0,1.2,,,,1,1,,0.03,nav,1,1996,3,, 18470,NJBF000053038,3505 PACIFIC AVE,Longport,NJ,39.31837206,-74.51787785,RES1,3001,,18,NE,1955,1955,3102,2,1,1189.328648,1189.328648,3505,NO,41.18,54.15,3,8.74,6106,113.25886,123.103505,132.789334,139.350577,I,Above,Hip,0,5701,,47.6673654,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18471,NJBF000053551,11 NO 36TH AVE,Longport,NJ,39.32035405,-74.51916223,RES1,3001,,18,NE,1929,1929,3102,2,1,836.6175786,836.6175786,3505,NO,23.2,29.39,3,1.73,6106,113.200783,123.05798,132.744247,139.300106,I,Above,Flat,0,5701,,26.29596956,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 18472,NJBF000051630,113 SO 20TH AVE,Longport,NJ,39.30924697,-74.52911441,RES1,3001,,NaN,NE,1950,1950,3102,2,1,1870.15849,1870.15849,3505,NO,39.54,50.9,3,1.04,6106,113.160355,123.014482,132.6879,139.236703,I,Above,Hip,0,5701,,45.2215348,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18473,NJBF000051642,113 SO 20TH AVE,Longport,NJ,39.30938442,-74.52907838,RES1,3001,,NaN,NE,1997,1950,3102,2,1,634.1033585,634.1033585,3505,NO,38.08,52.32,3,7.06,6106,113.158935,123.013482,132.68704,139.23576,I,Above,Gable,0,5701,,45.19969756,0,0,,,,1,1,,0.03,nav,1,1997,2,, 18474,NJBF000052700,3002 VENTNOR AVE,Longport,NJ,39.31663545,-74.52313555,RES1,3001,,18,NE,1955,1955,3102,2,1,955.4027539,955.4027539,3505,NO,33.75,44.97,3,5.7,6106,113.172015,123.031688,132.713658,139.266112,I,Above,Hip,0,5701,,39.36053705,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18475,NJBF000053033,16 NO 32ND AVE,Longport,NJ,39.3183426,-74.52232064,RES1,3001,,19,NE,1991,1991,3102,2,1,1387.406103,1387.406103,3505,NO,26.98,41.85,3,0.46,6106,113.163198,123.026007,132.709474,139.261364,I,Above,Hip,0,5701,,34.4161431,0,0,,,,1,1,,0.03,nav,1,1991,2,, 18476,NJBF000052388,100 SO MANOR AVE,Longport,NJ,39.31435658,-74.52244559,RES1,3001,,18,NE,1950,1950,3103,1,1,1427.623274,1427.623274,3505,NO,11.84,22.32,3,-0.39,6106,113.222274,123.070426,132.75114,139.307851,I,Above,Hip,0,5701,,17.08321541,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18477,NJBF000052977,18 SO COLGATE AV,Longport,NJ,39.31807419,-74.51970605,RES1,3001,,18,NE,1955,1955,3102,2,1,1315.087526,1315.087526,3505,NO,20.19,34.88,3,-2.14,6106,113.223861,123.074936,132.759582,139.317427,I,Above,Gable,0,5701,,27.53756063,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 18478,NJBF000051369,102 SO 13TH AVE,Longport,NJ,39.30563803,-74.5355257,RES1,3001,,21,NE,2013,2013,3103,3,1,2169.257769,2169.257769,3505,NO,42.46,54.5,3,8.87,6106,113.083026,122.94628,132.613637,139.153097,I,Above,Gable,0,5701,,48.48295955,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 18479,NJBF000053809,216 NO 33RD AVE,Longport,NJ,39.32136729,-74.52360377,RES1,3001,,19,NE,1974,1974,3102,2,1,1789.16363,1789.16363,3505,NO,23.11,37.07,3,-0.09,6106,113.089015,122.968357,132.652929,139.197264,I,Above,Hip,0,5701,,30.08842674,0,0,,,,1,1,,0.03,nav,1,1974,2,, 18480,NJBF000052924,2 SO YARMOUTH AVE,Longport,NJ,39.31781235,-74.52114866,RES1,3001,,21,NE,2013,2018,3102,3,1,647.6340593,647.6340593,3505,NO,44.19,54.53,3,2.01,6106,113.196696,123.052716,132.736443,139.291588,I,Above,Gable,0,5701,,49.3644702,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 18481,NJBF000052845,28 SO 34TH AVE,Longport,NJ,39.31743724,-74.51859779,RES1,3001,,19,NE,1968,1968,3102,2,1,1673.657806,1673.657806,3505,NO,38.65,44.82,3,4.96,6106,113.257603,123.101764,132.786613,139.347539,I,Above,Hip,0,5701,,41.73480385,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 18482,NJBF000052985,17 NO 31ST AV,Longport,NJ,39.31812323,-74.52315749,RES1,3001,,19,NE,1960,1960,3102,3,1,2061.52009,2061.52009,3505,NO,42.45,49.03,3,-1.17,6106,113.148539,123.013941,132.696862,139.24723,I,Above,Gable,0,5701,,45.7419541,0,1.2,,,,1,1,,0.03,nav,1,1960,3,, 18483,NJBF000052680,2 NO 30TH AVE,Longport,NJ,39.31648522,-74.52371428,RES1,3001,,18,NE,1953,1953,3102,1,1,1134.334973,1134.334973,3505,NO,21.89,30.57,3,3.07,6106,113.161892,123.023335,132.704925,139.256332,I,Above,Gable,0,5701,,26.23025161,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 18484,NJBF000053741,116 N 35TH AVE,Longport,NJ,39.32111352,-74.5212869,RES1,3001,,18,NE,1900,1900,3102,2,1,1137.247705,1137.247705,3505,NO,29.75,43.33,3,-1.31,6106,113.143108,123.011903,132.697471,139.247496,I,Above,Gable,0,5701,,36.54374978,0,0,,,,1,1,,0.03,nav,1,1900,2,, 18485,NJBF000052081,2509 ATLANTIC AVE,Longport,NJ,39.3128168,-74.525948,RES1,3001,,18,NE,1940,1940,3102,2,1,1216.257403,1216.257403,3505,NO,41.21,48.48,3,3.57,6106,113.171284,123.027393,132.70525,139.256509,I,Above,Gable,0,5701,,44.84606091,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 18486,NJBF000051960,2404 ATLANTIC AVE,Longport,NJ,39.3120085,-74.52635657,RES1,3001,,22,NE,2004,2004,3102,3,1,1897.693813,1897.693813,3505,NO,47.21,62.12,3,2.61,6106,113.175286,123.029802,132.706821,139.25818,I,Above,Flat,0,5701,,54.66817573,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18487,NJBF000052287,2801 ATLANTIC AVE,Longport,NJ,39.31380769,-74.52430118,RES1,3001,,18,NE,1955,1955,3102,2,1,1039.269966,1039.269966,3505,NO,34.12,46.6,3,-0.1,6106,113.191015,123.044471,132.723865,139.277392,I,Above,Hip,0,5701,,40.35968651,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 18488,NJBF000052406,101 SO MANOR AVE,Longport,NJ,39.31449361,-74.52200484,RES1,3001,,18,NE,1970,1970,3103,1,1,563.3682877,563.3682877,3505,NO,23.25,37.31,3,8.09,6106,113.229622,123.076526,132.757564,139.315017,I,Above,Hip,0,5701,,30.28182086,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 18489,NJBF000053591,105 NO 34TH AVE,Longport,NJ,39.32052636,-74.52107176,RES1,3001,,18,NE,1960,1960,3102,1,1,1208.405862,1208.405862,3505,NO,22.58,32.96,3,7.06,6106,113.156741,123.022494,132.707855,139.25928,I,Above,Flat,0,5701,,27.77335532,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18490,NJBF000052635,3111 ATLANTIC AVE,Longport,NJ,39.31615157,-74.5204122,RES1,3001,,47,NE,1964,1964,3102,2,2,1206.612348,1206.612348,3505,NO,31.56,38.04,3,6.14,6106,113.238216,123.084986,132.768014,139.326784,I,Above,Flat,0,5701,,34.80090891,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 18491,NJBF000053081,28 NO 32ND AVE,Longport,NJ,39.31859167,-74.52254326,RES1,3001,,20,NE,2006,2006,3102,3,1,1187.664831,1187.664831,3505,NO,44.78,52.79,3,2.08,6106,113.154566,123.019219,132.702728,139.253777,I,Above,Gable,0,5701,,48.7871978,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18492,NJBF000053762,208 NO 33RD AVE,Longport,NJ,39.32116893,-74.52340804,RES1,3001,,19,NE,1978,1978,3102,2,1,1113.033974,1113.033974,3505,NO,34.73,40.59,3,0.11,6106,113.09629,122.97409,132.65865,139.203767,I,Above,Flat,0,5701,,37.65854789,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 18493,NJBF000052101,2504 OBERON AVE,Longport,NJ,39.31291234,-74.52653719,RES1,3001,,27,NE,1925,1925,3102,2,1,1374.381044,1374.381044,3505,NO,42.64,49.03,3,6.97,6106,113.157187,123.016002,132.693666,139.243564,I,Above,Hip,0,5701,,45.83368048,0,0,,,,1,1,,0.03,nav,1,1925,2,, 18494,NJBF000052285,2 NO 27TH AVE,Longport,NJ,39.31380486,-74.52602375,RES1,3001,,18,NE,1939,1939,3102,1,1,1611.249374,1611.249374,3505,NO,17.55,22.74,3,-1.74,6106,113.154126,123.014434,132.693023,139.242911,I,Above,Hip,0,5701,,20.14556103,0,1.1,,,,1,1,,0.03,nav,1,1939,1,, 18495,NJBF000053592,,Longport,NJ,39.32053145,-74.52157123,RES1,3001,,NaN,NE,1969,0,3102,2,1,1671.525938,1671.525938,3505,NO,36.08,46.34,3,5.97,6106,113.14585,123.01369,132.698801,139.249108,I,Above,Gable,0,5701,,41.20649991,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18496,NJBF000051674,106 SO 21ST AVE,Longport,NJ,39.3097868,-74.52909017,RES1,3001,,21,NE,1998,1998,3102,3,1,3111.530723,3111.530723,3505,NO,53.81,68.28,3,5.47,6106,113.152257,123.00849,132.682406,139.230634,I,Above,Flat,0,5701,,61.04441294,0,0,,,,1,1,,0.03,nav,1,1998,3,, 18497,NJBF000052761,3201 PACIFIC AVE,Longport,NJ,39.31694779,-74.52042531,RES1,3001,,21,NE,2016,2016,3102,3,1,2478.806952,2478.806952,3505,NO,49.82,55.38,3,-0.09,6106,113.225647,123.075467,132.759017,139.316794,I,Above,Gable,0,5701,,52.59715119,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 18498,NJBF000052638,24 NO PELHAM AVE,Longport,NJ,39.31617123,-74.52494562,RES1,3001,,18,NE,1947,1947,3102,1,1,1399.454896,1399.454896,3505,NO,8.25,22.96,3,-2.64,6106,113.140264,123.005477,132.686275,139.23542,I,Above,Gable,0,5701,,15.60630405,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 18499,NJBF000051412,105 S 14TH AVE,Longport,NJ,39.30629826,-74.53418076,RES1,3001,,21,NE,1993,1993,3103,2,1,2554.458246,2554.458246,3505,NO,26.52,33.75,3,-0.05,6106,113.100598,122.961671,132.630207,139.171766,I,Above,Flat,0,5701,,30.13451826,0,1.2,,,,1,1,,0.03,nav,1,1993,2,, 18500,NJBF000053821,200 NO 34TH AVE,Longport,NJ,39.32139804,-74.52238142,RES1,3001,,18,NE,1975,1975,3102,1,1,1832.541072,1832.541072,3505,NO,19.87,28.77,3,2.81,6106,113.11505,122.98943,132.674604,139.221696,I,Above,Gable,0,5701,,24.31787779,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18501,NJBF000053638,3200 SUNSET AVE.,Longport,NJ,39.32071644,-74.52374518,RES1,3001,,21,NE,2008,2008,3102,3,1,2134.028064,2134.028064,3505,NO,43.9,50.17,3,0.25,6106,113.095931,122.97345,132.657608,139.202693,I,Above,Hip,0,5701,,47.03618871,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 18502,NJBF000054100,224 NO 35TH AVE,Longport,NJ,39.32238217,-74.52245761,RES1,3001,,18,NE,1975,1975,3102,1,1,1701.625029,1701.625029,3505,NO,27.42,37.67,3,8.67,6106,113.098386,122.976673,132.662308,139.207564,I,Above,Gable,0,5701,,32.54754381,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18503,NJBF000054068,220 NO 35TH AVE,Longport,NJ,39.32228481,-74.52236667,RES1,3001,,18,NE,1975,1975,3102,1,1,1645.058448,1645.058448,3505,NO,14.77,21.83,3,-2.17,6106,113.101838,122.979392,132.665024,139.210657,I,Above,Gable,0,5701,,18.29760152,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18504,NJBF000052098,,Longport,NJ,39.31289291,-74.52398305,RES3F,3003,,NaN,E,1969,0,3305,6,1,31080.89225,31080.89225,3501,NO,68.37,77.37,7,-5.6,6106,113.21217,123.060782,132.739626,139.294866,I,Above,Flat,0,NaN,,72.87064286,0,0,,,,2,2,,0.03,nav,1,1969,6,, 18505,NJBF000052312,4 SO 28TH AV,Longport,NJ,39.31391198,-74.5250144,RES1,3001,,18,NE,1938,1938,3102,2,1,979.7570689,979.7570689,3505,NO,41.34,54.64,3,3.94,6106,113.174095,123.030802,132.709937,139.261843,I,Above,Hip,0,5701,,47.98815653,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18506,NJBF000052400,2909 ATLANTIC AVE,Longport,NJ,39.31442441,-74.52332512,RES1,3001,,19,NE,1951,1951,3102,2,1,1395.168369,1395.168369,3505,NO,42.59,51.79,3,6.52,6106,113.20234,123.054282,132.734609,139.289433,I,Above,Gable,0,5701,,47.19015113,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 18507,NJBF000051607,1804 ATLANTIC AV,Longport,NJ,39.30894556,-74.53116458,RES1,3001,,18,NE,1955,1955,3102,2,1,1202.717004,1202.717004,3505,NO,40.66,49.39,3,1.97,6106,113.121657,122.982407,132.654697,139.199523,I,Above,Hip,0,5701,,45.02315045,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 18508,NJBF000051347,120 S 14TH AVE,Longport,NJ,39.30527431,-74.53354117,RES1,3001,,22,NE,1985,2018,3103,3,1,2765.541996,2765.541996,3505,NO,44.54,55.89,3,1.23,6106,113.130633,122.985027,132.652746,139.196881,I,Above,Flat,0,5701,,50.21971674,0,0,,,,1,1,,0.03,nav,1,1985,3,, 18509,NJBF000051725,103 SO 21ST AVE,Longport,NJ,39.31027,-74.52883397,RES1,3001,,19,NE,1975,1975,3102,2,1,2286.027705,2286.027705,3505,NO,30.51,41.72,3,2.44,6106,113.150011,123.007217,132.68167,139.22987,I,Above,Gable,0,5701,,36.11409939,0,0,,,,1,1,,0.03,nav,1,1975,2,, 18510,NJBF000052729,46 NO PELHAM AVE,Longport,NJ,39.31675233,-74.52549977,RES1,3001,,18,NE,1950,1950,3102,1,1,1334.58241,1334.58241,3505,NO,22.04,34,3,4.69,6106,113.119302,122.988991,132.66993,139.217047,I,Above,Flat,0,5701,,28.02249167,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18511,NJBF000053490,15 NO 35TH AVE,Longport,NJ,39.32013276,-74.51980222,RES1,3001,,21,NE,2007,2007,3102,3,1,1880.892694,1880.892694,3505,NO,45.14,50.47,3,5.27,6106,113.190272,123.049321,132.735124,139.289923,I,Above,Gable,0,5701,,47.80544252,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 18512,NJBF000052876,31 SO 33RD AVE,Longport,NJ,39.31759409,-74.51952189,RES1,3001,,18,NE,1960,1960,3102,2,1,1711.203048,1711.203048,3505,NO,44.84,52.67,3,8.45,6106,113.235212,123.083749,132.768193,139.327034,I,Above,Flat,0,5701,,48.75482871,0,0,,,,1,1,,0.03,nav,1,1960,2,, 18513,NJBF000051780,110 SO 23RD AV,Longport,NJ,39.31070594,-74.5273491,RES1,3001,,22,NE,2000,2000,3102,2,1,2937.720233,2937.720233,3505,NO,45.02,52.14,3,6.39,6106,113.174708,123.027904,132.703385,139.254185,I,Above,Gable,0,5701,,48.58243718,0,0,,,,1,1,,0.03,nav,1,2000,2,, 18514,NJBF000052412,103 S 30TH AVE,Longport,NJ,39.31452042,-74.52129673,RES1,3001,,21,NE,1980,1980,3103,3,1,2628.860338,2628.860338,3505,NO,57.07,69.79,3,0.14,6106,113.244447,123.088597,132.770018,139.328871,I,Above,Flat,0,5701,,63.43335881,0,0,,,,1,1,,0.03,nav,1,1980,3,, 18515,NJBF000052438,103 S 30TH AVE,Longport,NJ,39.314701,-74.5214655,RES1,3001,,21,NE,1980,1980,3103,3,1,1482.838679,1482.838679,3505,NO,62.47,75.78,3,6.36,6106,113.237997,123.083523,132.764987,139.323296,I,Above,Flat,0,5701,,69.12398734,0,0,,,,1,1,,0.03,nav,1,1980,3,, 18516,NJBF000052998,15 SO COLGATE AVE,Longport,NJ,39.31819664,-74.51936671,RES1,3001,,18,NE,1949,1949,3102,1,1,1264.230533,1264.230533,3505,NO,16.31,28.34,3,4.8,6106,113.229307,123.079444,132.764347,139.322741,I,Above,Gable,0,5701,,22.32738357,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 18517,NJBF000054210,3501 AMHERST AVE.,Longport,NJ,39.3227415,-74.522921,RES1,3001,,NaN,NE,1969,0,3103,5,1,1674.317129,1674.317129,3505,NO,70.33,76.39,3,-2.68,6106,113.082874,122.964396,132.649983,139.193537,I,Above,Hip,0,5701,,73.35936538,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18518,NJBF000052474,,Longport,NJ,39.31494884,-74.52379784,RES1,3001,,NaN,NE,1969,0,3103,4,1,2555.32994,2555.32994,3505,NO,53.17,63.18,3,-0.35,6106,113.183987,123.03986,132.720339,139.273537,I,Above,Hip,0,5701,,58.1754032,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18519,NJBF000052462,,Longport,NJ,39.31486763,-74.52401864,RES1,3001,,NaN,NE,1969,0,3103,5,1,1477.683065,1477.683065,3505,NO,94.97,107.83,3,7.63,6106,113.180502,123.036949,132.717263,139.270095,I,Above,Gable,0,5701,,101.3995526,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18520,NJBF000052446,,Longport,NJ,39.31472982,-74.52421038,RES1,3001,,NaN,NE,1969,0,3103,4,1,1767.122909,1767.122909,3505,NO,70.58,85.13,3,5.1,6106,113.178553,123.035232,132.715355,139.267954,I,Above,Gable,0,5701,,77.85412166,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18521,NJBF000053810,127 NO 34TH AVE,Longport,NJ,39.32136939,-74.52183725,RES1,3001,,18,NE,1960,1960,3102,1,1,1309.09934,1309.09934,3505,NO,17.33,31.43,3,4.21,6106,113.12729,122.999302,132.684729,139.233105,I,Above,Gable,0,5701,,24.37856006,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18522,NJBF000053356,109 NO 32ND AVE,Longport,NJ,39.31962907,-74.523028,RES1,3001,,20,NE,1945,2018,3102,2,1,1116.710606,1116.710606,3505,NO,29.06,41.69,3,3.25,6106,113.128129,122.99865,132.682538,139.230972,I,Above,Flat,0,5701,,35.37593772,0,0,,,,1,1,,0.03,nav,1,1945,2,, 18523,NJBF000051332,1101 ATLANTIC AVE,Longport,NJ,39.30502587,-74.53706547,RES1,3001,,19,NE,1979,1979,3103,3,1,1987.085387,1987.085387,3505,NO,43.79,53.2,3,-1.19,6106,113.060716,122.926992,132.593155,139.130012,I,Above,Gable,0,5701,,48.49562285,0,1.1,,,,1,1,,0.03,nav,1,1979,3,, 18524,NJBF000052481,2933 ATLANTIC AVE,Longport,NJ,39.3150123,-74.5223249,RES1,3001,,21,NE,2006,2006,3102,2,1,1943.062534,1943.062534,3505,NO,36.04,49.75,3,7.1,6106,113.214679,123.064863,132.746112,139.302308,I,Above,Hip,0,5701,,42.89402059,0,1.2,,,,1,1,,0.03,nav,1,2006,2,, 18525,NJBF000052813,2 NO EVERGREEN AVE,Longport,NJ,39.3172755,-74.5235865,RES1,3001,,NaN,NE,1977,1977,3102,1,1,1670.721407,1670.721407,3505,NO,20.71,28.44,3,6.87,6106,113.152383,123.016325,132.6985,139.249114,I,Above,Gable,0,5701,,24.57269246,0,0,,,,1,1,,0.03,nav,1,1977,1,, 18526,NJBF000053311,3207 WINCHESTER AVE,Longport,NJ,39.31947285,-74.52255405,RES1,3001,,18,NE,1952,1952,3102,1,1,1708.689833,1708.689833,3505,NO,23.81,34.19,3,6.71,6106,113.140778,123.008767,132.692794,139.242525,I,Above,Flat,0,5701,,29.00161783,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18527,NJBF000051593,1802 ATLANTIC AVE,Longport,NJ,39.30882303,-74.53131327,RES1,3001,,20,NE,1996,1996,3103,5,1,1105.860644,1105.860644,3505,NO,98.78,105.12,3,8.33,6106,113.120492,122.981299,132.653416,139.198073,I,Above,Hip,0,5701,,101.9501012,0,0,,,,1,1,,0.03,nav,1,1996,5,, 18528,NJBF000052577,,Longport,NJ,39.3156825,-74.5218399,RES1,3001,,NaN,NE,1969,0,3102,2,1,1720.846166,1720.846166,3505,NO,33.61,41.48,3,7.37,6106,113.214697,123.065487,132.747454,139.303849,I,Above,Gable,0,5701,,37.5413892,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18529,NJBF000052518,7 NO 29TH AVE,Longport,NJ,39.315269,-74.524912,RES1,3001,,18,NE,1950,1950,3102,2,1,1038.010999,1038.010999,3505,NO,41.64,54.05,3,3.33,6106,113.155059,123.016646,132.696827,139.247242,I,Above,Gable,0,5701,,47.84605661,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18530,NJBF000051298,100 SO 11TH AVE,Longport,NJ,39.30448444,-74.53702675,RES1,3001,,22,NE,2002,2002,3103,2,1,3626.324214,3626.324214,3505,NO,28.29,35.38,3,0.36,6106,113.070345,122.934167,132.599755,139.137384,I,Above,Flat,0,5701,,31.83461475,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18531,NJBF000052911,33 NO 30TH AVE,Longport,NJ,39.31775866,-74.52442009,RES1,3001,,18,NE,1950,1950,3102,1,1,1179.239423,1179.239423,3505,NO,11.74,18.13,3,-0.77,6106,113.126923,122.996095,132.678188,139.226278,I,Above,Gable,0,5701,,14.93294947,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18532,NJBF000053302,2 NO 35TH AVE,Longport,NJ,39.31943545,-74.51965722,RES1,3001,,20,NE,2017,2017,3102,3,1,1409.536441,1409.536441,3505,NO,46.64,60.07,3,8.4,6106,113.204073,123.059968,132.745453,139.301564,I,Above,Gable,0,5701,,53.35502573,0,0,,,,1,1,,0.03,nav,1,2017,3,, 18533,NJBF000051421,103 S 14TH AVE,Longport,NJ,39.30639165,-74.53429174,RES1,3001,,20,NE,1978,1978,3103,2,1,2558.617464,2558.617464,3505,NO,33.05,47.54,3,4.84,6106,113.096742,122.958622,132.627213,139.168417,I,Above,Gable,0,5701,,40.29200699,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 18534,NJBF000052613,4 NO MANOR AVE,Longport,NJ,39.31599119,-74.52402829,RES1,3001,,19,NE,2012,2012,3102,3,1,1555.516937,1555.516937,3505,NO,32.75,43.91,3,-0.3,6106,113.162812,123.023629,132.704732,139.256113,I,Above,Hip,0,5701,,38.33334894,0,0,,,,1,1,,0.03,nav,1,2012,3,, 18535,NJBF000053183,30 NO YARMOUTH AVE,Longport,NJ,39.31900511,-74.52215342,RES1,3001,,NaN,NE,1948,1948,3102,1,1,1631.32025,1631.32025,3505,NO,21.07,28.33,3,4.6,6106,113.156641,123.021237,132.705187,139.256497,I,Above,Flat,0,5701,,24.69888843,0,0,,,,1,1,,0.03,nav,1,1948,1,, 18536,NJBF000052960,,Longport,NJ,39.31798345,-74.52357213,RES1,3001,,NaN,NE,1969,0,3102,2,1,2418.277297,2418.277297,3505,NO,35.25,42.5,3,4.58,6106,113.141745,123.008313,132.690947,139.240599,I,Above,Hip,0,5701,,38.87758689,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18537,NJBF000053185,8 SO 36TH AVE,Longport,NJ,39.31901054,-74.5184204,RES1,3001,,20,NE,2016,2016,3102,2,1,1779.333946,1779.333946,3505,NO,22.66,29.16,3,0.88,6106,113.237353,123.086579,132.772487,139.331789,I,Above,Flat,0,5701,,25.90852237,0,0,,,,1,1,,0.03,nav,1,2016,2,, 18538,NJBF000051322,111 SO 12TH AVE,Longport,NJ,39.30486657,-74.5353216,RES1,3001,,22,NE,1990,1990,3103,3,1,3397.574591,3397.574591,3505,NO,60.5,71.99,3,3.97,6106,113.099827,122.959065,132.625678,139.166525,I,Above,Flat,0,5701,,66.24325597,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 18539,NJBF000053207,8 NO COLGATE AVE,Longport,NJ,39.31907788,-74.52065765,RES1,3001,,18,NE,1946,1946,3102,1,1,976.7575979,976.7575979,3505,NO,24.59,34.89,3,5.82,6106,113.187862,123.046575,132.731326,139.285789,I,Above,Hip,0,5701,,29.73947307,0,0,,,,1,1,,0.03,nav,1,1946,1,, 18540,NJBF000052280,104 SO PELHAM AVE,Longport,NJ,39.31377702,-74.52259838,RES1,3001,,22,NE,2008,2008,3103,3,1,2389.935151,2389.935151,3505,NO,61.09,69.34,3,7.33,6106,113.228054,123.074576,132.754782,139.311843,I,Above,Flat,0,5701,,65.21823755,0,0,,,,1,1,,0.03,nav,1,2008,3,, 18541,NJBF000052358,6 S 29TH AVE,Longport,NJ,39.31414827,-74.52413875,RES1,3001,,18,NE,1950,1950,3102,1,1,1752.616388,1752.616388,3505,NO,14.78,29.77,3,2.44,6106,113.189172,123.043305,132.723032,139.276491,I,Above,Flat,0,5701,,22.27552741,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18542,NJBF000053163,3105 WINCHESTER AVE,Longport,NJ,39.318946,-74.5235775,RES1,3001,,18,NE,1966,1966,3102,2,1,1378.076575,1378.076575,3505,NO,35.69,49.74,3,2.72,6106,113.126752,122.996976,132.680199,139.22843,I,Above,Gable,0,5701,,42.71608011,0,0,,,,1,1,,0.03,nav,1,1966,2,, 18543,NJBF000052563,103 SO WOODCREST AVE,Longport,NJ,39.31558846,-74.51999833,RES1,3001,,22,NE,2000,2000,3103,3,1,1803.531324,1803.531324,3505,NO,54.8,65.37,3,4.83,6106,113.255865,123.09882,132.781683,139.341943,I,Above,Hip,0,5701,,60.08336799,0,0,,,,1,1,,0.03,nav,1,2000,3,, 18544,NJBF000053674,3503 WINCHESTER AVE,Longport,NJ,39.32084542,-74.52012096,RES1,3001,,20,NE,1960,2018,3102,2,1,1440.423981,1440.423981,3505,NO,27.07,37.9,3,-1.39,6106,113.1725,123.035468,132.721492,139.274527,I,Above,Hip,0,5701,,32.48762999,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18545,NJBF000053724,122 NO 34TH AV,Longport,NJ,39.32103817,-74.52202655,RES1,3001,,18,NE,1952,1952,3102,1,1,875.199158,875.199158,3505,NO,21.35,36.02,3,3.13,6106,113.128221,122.999812,132.68497,139.233452,I,Above,Gable,0,5701,,28.68646223,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18546,NJBF000053586,200 NO 32ND AVE,Longport,NJ,39.32049377,-74.52438033,RES1,3001,,21,NE,1920,1920,3103,3,1,2673.768209,2673.768209,3505,NO,52.94,59.57,3,3.06,6106,113.085596,122.96491,132.648652,139.192635,I,Above,Gable,0,5701,,56.2547587,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 18547,NJBF000053862,118 NO 36TH AVE,Longport,NJ,39.32154395,-74.52081142,RES1,3001,,18,NE,1960,1960,3102,1,1,1308.998175,1308.998175,3505,NO,24.3,36.57,3,5.15,6106,113.146887,123.015264,132.701299,139.251702,I,Above,Gable,0,5701,,30.43450293,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18548,NJBF000053260,102 NO 32ND AVE,Longport,NJ,39.31928729,-74.52321387,RES1,3001,,18,NE,1938,1938,3102,2,1,1002.508947,1002.508947,3505,NO,27.23,36.35,3,-0.37,6106,113.129366,122.999375,132.682974,139.23151,I,Above,Gable,0,5701,,31.79181125,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18549,NJBF000053125,3 SO 34TH AVE.,Longport,NJ,39.31879255,-74.51940653,RES1,3001,,18,NE,1960,1960,3102,2,1,1291.628592,1291.628592,3505,NO,37.13,46.16,3,7.06,6106,113.219309,123.071811,132.757053,139.314577,I,Above,Flat,0,5701,,41.64443016,0,0,,,,1,1,,0.03,nav,1,1960,2,, 18550,NJBF000052366,105 SO MANOR AVE,Longport,NJ,39.31421557,-74.52181457,RES1,3001,,20,NE,1990,1990,3103,3,1,2042.112232,2042.112232,3505,NO,49.46,55.64,3,-2.95,6106,113.238035,123.083106,132.764037,139.322187,I,Above,Flat,0,5701,,52.54827869,0,1.2,,,,1,1,,0.03,nav,1,1990,3,, 18551,NJBF000052343,,Longport,NJ,39.31406085,-74.52449194,RES1,3001,,NaN,NE,1990,0,3102,2,1,1577.550428,1577.550428,3505,NO,32.16,45.35,3,4.82,6106,113.182958,123.038163,132.717657,139.270481,I,Above,Hip,0,5701,,38.75299772,0,0,,,,1,1,,0.03,nav,1,1990,2,, 18552,NJBF000051454,1401 ATLANTIC AVE,Longport,NJ,39.30677443,-74.53489286,RES1,3001,,18,NE,1971,1971,3103,2,1,2590.023019,2590.023019,3505,NO,43.6,50.14,3,8.05,6106,113.077914,122.943633,132.612392,139.151813,I,Above,Gable,0,5701,,46.86719784,0,1.2,,,,1,1,,0.03,nav,1,1971,2,, 18553,NJBF000052854,25 SO YARMOUTH AVE,Longport,NJ,39.31749166,-74.52021833,RES1,3001,,18,NE,1950,1950,3102,1,1,972.8519173,972.8519173,3505,NO,16.32,24.74,3,-2.47,6106,113.221738,123.072747,132.756757,139.314281,I,Above,Hip,0,5701,,20.52918162,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18554,NJBF000052733,3208 PACIFIC AVE,Longport,NJ,39.31676577,-74.51997139,RES1,3001,,19,NE,1945,1945,3102,2,1,1687.540012,1687.540012,3505,NO,31.75,38,3,-0.81,6106,113.238256,123.085538,132.769209,139.328145,I,Above,Gable,0,5701,,34.87783291,0,0.1,,,,1,1,,0.03,nav,1,1945,2,, 18555,NJBF000052770,19 NO MANOR AVE,Longport,NJ,39.31701155,-74.52452726,RES1,3001,,18,NE,1940,1940,3102,1,1,2076.904882,2076.904882,3505,NO,22.64,32.63,3,5.54,6106,113.136203,123.002956,132.684514,139.233426,I,Above,Hip,0,5701,,27.63747834,0,0,,,,1,1,,0.03,nav,1,1940,1,, 18556,NJBF000052665,3110 PACIFIC AVE,Longport,NJ,39.31639131,-74.52061018,RES1,3001,,18,NE,1899,1899,3102,2,2,1412.545067,1412.545067,3505,NO,39.52,54.19,3,8.48,6106,113.230252,123.07873,132.761814,139.319892,I,Above,Flat,0,5701,,46.85667539,0,1.2,,,,1,1,,0.03,nav,1,1899,2,, 18557,NJBF000052652,3110 PACIFIC AVE,Longport,NJ,39.316256,-74.5205265,RES1,3001,,18,NE,1899,1899,3102,2,2,533.2196445,533.2196445,3505,NO,30.95,44.55,3,4.56,6106,113.234128,123.081759,132.764796,139.323207,I,Above,Flat,0,5701,,37.74752151,0,1.2,,,,1,1,,0.03,nav,1,1899,2,, 18558,NJBF000053317,103 NO 32ND AVE,Longport,NJ,39.31950015,-74.52288739,RES1,3001,,18,NE,1950,1950,3102,1,1,1478.050696,1478.050696,3505,NO,8.66,20.65,3,-2.77,6106,113.133161,123.002621,132.686502,139.235448,I,Above,Gable,0,5701,,14.65756406,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18559,NJBF000052264,111 SO 28TH AVE.,Longport,NJ,39.3136936,-74.52357036,RES1,3001,,22,NE,2013,2013,3103,3,1,2675.619857,2675.619857,3505,NO,51.85,64.53,3,2.93,6106,113.208483,123.058574,132.738236,139.293409,I,Above,Flat,0,5701,,58.19297367,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18560,NJBF000052214,111 SO 28TH AVE.,Longport,NJ,39.31344546,-74.52371911,RES1,3001,,22,NE,2013,2013,3103,3,1,2369.328498,2369.328498,3505,NO,46.79,58.57,3,0.51,6106,113.209182,123.058898,132.738298,139.293452,I,Above,Hip,0,5701,,52.67540658,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18561,NJBF000052171,111 SO 28TH AVE.,Longport,NJ,39.313234,-74.52347205,RES1,3001,,22,NE,2013,2013,3103,3,1,2123.903832,2123.903832,3505,NO,50.64,60.76,3,4.48,6106,113.217783,123.065691,132.74505,139.300947,I,Above,Flat,0,5701,,55.70212303,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18562,NJBF000052122,111 SO 28TH AVE.,Longport,NJ,39.31299813,-74.52315165,RES1,3001,,22,NE,2013,2013,3103,3,1,4723.09371,4723.09371,3505,NO,38.24,43.7,3,3.56,6106,113.228341,123.074052,132.753387,139.310193,I,Above,Hip,0,5701,,40.97010857,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18563,NJBF000052184,111 SO 28TH AVE.,Longport,NJ,39.31329461,-74.52308418,RES1,3001,,22,NE,2013,2013,3103,3,1,2642.923052,2642.923052,3505,NO,41.68,56.04,3,8.37,6106,113.225152,123.071749,132.751346,139.307962,I,Above,Flat,0,5701,,48.86182472,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18564,NJBF000052204,111 SO 28TH AVE.,Longport,NJ,39.31339477,-74.52320382,RES1,3001,,22,NE,2013,2013,3103,3,1,2535.718792,2535.718792,3505,NO,39.47,50.7,3,2.59,6106,113.221013,123.068478,132.748093,139.304354,I,Above,Gable,0,5701,,45.08073319,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18565,NJBF000052179,,Longport,NJ,39.31326749,-74.52533452,RES1,3001,,NaN,NE,1969,0,3102,2,1,1713.904184,1713.904184,3505,NO,36.89,49.83,3,-0.74,6106,113.177333,123.032787,132.711279,139.263288,I,Above,Gable,0,5701,,43.35804169,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18566,NJBF000052449,2701 SUNSET AVE,Longport,NJ,39.3147493,-74.52680882,RES1,3001,,19,NE,1991,1991,3103,3,1,1478.41176,1478.41176,3505,NO,50.05,58.74,3,7.67,6106,113.12249,122.989632,132.668579,139.21554,I,Above,Gable,0,5701,,54.39361223,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 18567,NJBF000051523,112 SO 18TH AVE,Longport,NJ,39.30797367,-74.53119454,RES1,3001,,20,NE,2002,2002,3102,2,1,2964.270663,2964.270663,3505,NO,28.62,41.67,3,-2.19,6106,113.136604,122.993459,132.66482,139.210738,I,Above,Gable,0,5701,,35.14117168,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18568,NJBF000051605,104 SO 19TH AVE,Longport,NJ,39.3089286,-74.5309421,RES1,3001,,22,NE,2001,2001,3102,2,1,3150.578078,3150.578078,3505,NO,34.78,44.61,3,-2.29,6106,113.126654,122.986484,132.658848,139.204171,I,Above,Flat,0,5701,,39.69557096,0,0,,,,1,1,,0.03,nav,1,2001,2,, 18569,NJBF000051560,116 SO 19TH AVE,Longport,NJ,39.30834233,-74.53020615,RES1,3001,,21,NE,2006,2006,3102,2,1,2979.704632,2979.704632,3505,NO,38.02,53.01,3,3.03,6106,113.151649,123.006257,132.678375,139.22594,I,Above,Gable,0,5701,,45.51585223,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 18570,NJBF000051340,117 SO 13TH AVE,Longport,NJ,39.30514296,-74.53418685,RES1,3001,,21,NE,1998,1998,3103,2,1,2511.833563,2511.833563,3505,NO,44.9,55.83,3,7.78,6106,113.119176,122.975406,132.642738,139.185669,I,Above,Gable,0,5701,,50.36824903,0,0,,,,1,1,,0.03,nav,1,1998,2,, 18571,NJBF000053534,,Longport,NJ,39.32029225,-74.52361101,RES1,3001,,NaN,NE,1969,0,3102,2,1,2833.834284,2833.834284,3505,NO,20.62,34.76,3,-1.4,6106,113.105335,122.980727,132.664713,139.21079,I,Above,Flat,0,5701,,27.6899769,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18572,NJBF000051635,20TH & ATLANTIC AVES,Longport,NJ,39.30927259,-74.52994274,REL1,3001,,NaN,ME,1969,0,3401,2,1,2896.752657,2896.752657,3507,NO,37.69,52.15,1,-0.31,6106,113.142339,122.999758,132.67285,139.219885,I,Above,Hip,0,NaN,,44.92027492,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18573,NJBF000051545,103 SO 17TH AV,Longport,NJ,39.30817909,-74.5319652,RES1,3001,,19,NE,1987,1987,3103,2,1,1218.396248,1218.396248,3505,NO,24.52,34.56,3,-0.3,6106,113.117025,122.977645,132.648894,139.192932,I,Above,Hip,0,5701,,29.53899863,0,0,,,,1,1,,0.03,nav,1,1987,2,, 18574,NJBF000052810,3 NO 30TH AVE,Longport,NJ,39.3172594,-74.5237184,RES1,3001,,20,NE,1921,1921,3102,2,1,601.064425,601.064425,3505,NO,27.09,36.65,3,2.73,6106,113.149801,123.014215,132.696316,139.246664,I,Above,Hip,0,5701,,31.87122168,0,1.2,,,,1,1,,0.03,nav,1,1921,2,, 18575,NJBF000051666,107 SO 20TH AVE,Longport,NJ,39.30961683,-74.52955776,RES1,3001,,22,NE,1999,1999,3102,2,1,5605.859137,5605.859137,3505,NO,23.07,31.34,3,1.7,6106,113.145023,123.002368,132.675932,139.223375,I,Above,Hip,0,5701,,27.20124396,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 18576,NJBF000052493,101 SO EVERGREEN AVE,Longport,NJ,39.31513476,-74.52113965,RES1,3001,,18,NE,1970,1970,3103,2,1,1515.966762,1515.966762,3505,NO,29.43,36.78,3,1.88,6106,113.238275,123.084141,132.766084,139.324559,I,Above,Gable,0,5701,,33.1092629,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 18577,NJBF000052527,2 NO PELHAM AVE,Longport,NJ,39.31533903,-74.52419106,RES1,3001,,18,NE,1951,1951,3102,1,1,2398.947778,2398.947778,3505,NO,17.45,22.92,3,4.26,6106,113.16946,123.028421,132.70899,139.260864,I,Above,Hip,0,5701,,20.18476806,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 18578,NJBF000051988,,Longport,NJ,39.31222275,-74.52699176,COM1,3001,,NaN,ME,1969,0,3401,3,1,8401.726872,8401.726872,3507,NO,58.16,69.28,1,0.78,6106,113.158326,123.016196,132.693105,139.242873,I,Above,Flat,0,NaN,,63.71721791,0,0,,,,1,1,,0.03,nav,1,1969,3,, 18579,NJBF000052492,2711 SUNSET AVE,Longport,NJ,39.31513039,-74.52666267,RES1,3001,,20,NE,1991,1991,3103,3,1,1785.762845,1785.762845,3505,NO,46.32,57.73,3,1.59,6106,113.119648,122.987703,132.666992,139.213764,I,Above,Flat,0,5701,,52.02646397,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 18580,NJBF000051495,118 SO 18TH AVE,Longport,NJ,39.307617,-74.5306465,RES1,3001,,22,NE,2007,2007,3102,3,1,2415.390676,2415.390676,3505,NO,39.97,54.44,3,2.95,6106,113.153928,123.007229,132.678472,139.225948,I,Above,Flat,0,5701,,47.20394075,0,0,,,,1,1,,0.03,nav,1,2007,3,, 18581,NJBF000053222,100 N 32ND AVE,Longport,NJ,39.31916272,-74.52309814,RES1,3001,,19,NE,1988,1988,3102,2,1,1723.790936,1723.790936,3505,NO,41.68,46.69,3,3.31,6106,113.133782,123.00285,132.686432,139.235413,I,Above,Gable,0,5701,,44.18195627,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 18582,NJBF000052042,2401 OBERON AV,Longport,NJ,39.31261058,-74.52764738,RES1,3001,,21,NE,2008,2008,3102,3,1,2013.696907,2013.696907,3505,NO,47.87,58.22,3,-1.4,6106,113.138208,123.000201,132.677135,139.225028,I,Above,Gable,0,5701,,53.0447523,0,0,,,,1,1,,0.03,nav,1,2008,3,, 18583,NJBF000052373,2901 ATLANTIC AVE,Longport,NJ,39.31424733,-74.52363353,RES1,3001,,20,NE,2000,2000,3102,2,1,1613.962065,1613.962065,3505,NO,25.55,38.16,3,3.51,6106,113.198466,123.050962,132.731007,139.2854,I,Above,Hip,0,5701,,31.8543021,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 18584,NJBF000052034,2501 ATLANTIC AVE,Longport,NJ,39.31254953,-74.52636084,RES1,3001,,21,NE,1910,2018,3102,3,1,1615.037731,1615.037731,3505,NO,39.11,51.22,3,6.27,6106,113.166654,123.023338,132.700794,139.251503,I,Above,Hip,0,5701,,45.1644048,0,0,,,,1,1,,0.03,nav,1,1910,3,, 18585,NJBF000052113,2405 OBERON AVE BAY FRONT,Longport,NJ,39.312932,-74.5276475,RES1,3001,,21,NE,1985,1985,3103,3,1,886.7834786,886.7834786,3505,NO,36.73,50.46,3,3.63,6106,113.13312,122.996396,132.673586,139.221073,I,Above,Gable,0,5701,,43.59577489,0,0,,,,1,1,,0.03,nav,1,1985,3,, 18586,NJBF000052784,36 NO MANOR AVE,Longport,NJ,39.31708099,-74.5250797,RES1,3001,,19,NE,1975,1975,3102,1,1,1383.516898,1383.516898,3505,NO,20.93,32.01,3,5.46,6106,113.123224,122.992481,132.67383,139.221418,I,Above,Gable,0,5701,,26.4702951,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18587,NJBF000052764,6 NO 30TH AVE,Longport,NJ,39.31695771,-74.52417616,RES1,3001,,19,NE,1952,1952,3102,1,1,1426.697691,1426.697691,3505,NO,12.36,20.49,3,-1.45,6106,113.1446,123.009724,132.691411,139.24117,I,Above,Hip,0,5701,,16.42639417,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18588,NJBF000052776,,Longport,NJ,39.31702819,-74.5213797,RES1,3001,,NaN,NE,1969,0,3102,2,1,1291.863197,1291.863197,3505,NO,24.26,33.91,3,3.12,6106,113.203799,123.057817,132.740924,139.296604,I,Above,Hip,0,5701,,29.08283857,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18589,NJBF000053008,2951 SUNSET AVE,Longport,NJ,39.31822768,-74.52560367,RES1,3001,,20,NE,1986,1986,3103,2,1,1481.122675,1481.122675,3505,NO,33.53,45.46,3,2.84,6106,113.094135,122.969909,132.65176,139.196488,I,Above,Hip,0,5701,,39.49923529,0,0,,,,1,1,,0.03,nav,1,1986,2,, 18590,NJBF000053004,3016 WINCHESTER AVE,Longport,NJ,39.31821772,-74.52397249,RES1,3001,,18,NE,2013,2013,3102,2,1,1142.340911,1142.340911,3505,NO,42.03,52.72,3,3.48,6106,113.129483,122.998571,132.681163,139.229588,I,Above,Hip,0,5701,,47.37930424,0,0,,,,1,1,,0.03,nav,1,2013,2,, 18591,NJBF000053032,21 NO WOODCREST AVE,Longport,NJ,39.31833935,-74.52261472,RES1,3001,,20,NE,2006,2006,3102,3,1,1763.638604,1763.638604,3505,NO,57.87,66.13,3,0.06,6106,113.156909,123.020908,132.704226,139.255479,I,Above,Gable,0,5701,,62.00295275,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18592,NJBF000053173,7 NO 33RD AVE,Longport,NJ,39.3189815,-74.520835,RES1,3001,,18,NE,2008,2008,3102,2,1,1186.942165,1186.942165,3505,NO,35.6,45.32,3,5.6,6106,113.185519,123.044602,132.729204,139.283422,I,Above,Gable,0,5701,,40.45772445,0,0,,,,1,1,,0.03,nav,1,2008,2,, 18593,NJBF000053902,119 NO 36TH AVE,Longport,NJ,39.32171577,-74.52044818,RES1,3001,,18,NE,1945,1945,3102,2,1,1731.300616,1731.300616,3505,NO,37.83,50.41,3,3.72,6106,113.152153,123.019639,132.705948,139.256885,I,Above,Gable,0,5701,,44.11920401,0,0,,,,1,1,,0.03,nav,1,1945,2,, 18594,NJBF000053481,103 NO 33RD AV,Longport,NJ,39.32009542,-74.52188803,RES1,3001,,19,NE,2009,2009,3102,2,1,1547.128421,1547.128421,3505,NO,30.83,38.06,3,-0.97,6106,113.145652,123.0132,132.697911,139.248183,I,Above,Hip,0,5701,,34.44207238,0,0,,,,1,1,,0.03,nav,1,2009,2,, 18595,NJBF000051879,104 SO 24TH AV,Longport,NJ,39.31141689,-74.52665178,RES1,3001,,21,NE,2014,2014,3102,3,1,1693.627154,1693.627154,3505,NO,56.96,63.67,3,1.03,6106,113.17832,123.031639,132.708036,139.259466,I,Above,Hip,0,5701,,60.31590623,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 18596,NJBF000053281,101 NO 32ND AVE,Longport,NJ,39.31936459,-74.5227583,RES1,3001,,18,NE,1950,1950,3102,1,1,1819.715127,1819.715127,3505,NO,17.8,31.85,3,-0.27,6106,113.138025,123.006451,132.690316,139.239754,I,Above,Hip,0,5701,,24.82516921,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18597,NJBF000053253,114 NO WOODCREST AVE,Longport,NJ,39.31926617,-74.52393756,RES1,3001,,18,NE,1946,1946,3102,1,1,990.3052354,990.3052354,3505,NO,11.54,22.69,3,0.25,6106,113.114043,122.986945,132.670189,139.217125,I,Above,Gable,0,5701,,17.11534086,0,0,,,,1,1,,0.03,nav,1,1946,1,, 18598,NJBF000052404,102 SO 30TH AVE,Longport,NJ,39.31448316,-74.52180649,RES1,3001,,21,NE,2005,2005,3103,3,1,2607.380161,2607.380161,3505,NO,55.18,61.83,3,2.93,6106,113.234073,123.080133,132.761265,139.319133,I,Above,Hip,0,5701,,58.50883669,0,0,,,,1,1,,0.03,nav,1,2005,3,, 18599,NJBF000052895,105 SO 36TH AV,Longport,NJ,39.31768088,-74.51657752,RES1,3001,,20,NE,1980,1980,3103,2,1,1744.285991,1744.285991,3505,NO,33.23,46.56,3,2.97,6106,113.29758,123.134328,132.820475,139.385154,I,Above,Hip,0,5701,,39.89678592,0,0,,,,1,1,,0.03,nav,1,1980,2,, 18600,NJBF000052078,,Longport,NJ,39.31279319,-74.52499921,RES1,3001,,NaN,NE,1969,0,3102,2,1,1776.1431,1776.1431,3505,NO,26.79,32.67,3,1.7,6106,113.191974,123.04423,132.722509,139.275777,I,Above,Gable,0,5701,,29.73253364,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18601,NJBF000052913,30 SO COLGATE AV,Longport,NJ,39.3177621,-74.51941539,RES1,3001,,18,NE,1952,1952,3102,1,1,1404.160244,1404.160244,3505,NO,16.66,28.15,3,0.74,6106,113.234945,123.083666,132.768274,139.327125,I,Above,Gable,0,5701,,22.40466412,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18602,NJBF000052875,3305 PACIFIC AVE,Longport,NJ,39.3175907,-74.51924415,RES1,3001,,18,NE,1948,1948,3102,2,1,1188.875147,1188.875147,3505,NO,43.63,49.85,3,6.28,6106,113.241269,123.088653,132.773246,139.332664,I,Above,Gable,0,5701,,46.73738936,0,0,,,,1,1,,0.03,nav,1,1948,2,, 18603,NJBF000052625,8 SO 31ST AVE.,Longport,NJ,39.31607752,-74.52238983,COM4,3001,,NaN,ME,1969,0,3401,1,1,3164.011207,3164.011207,3507,NO,14.86,26.31,1,-0.7,6106,113.196724,123.051248,132.73321,139.287969,I,Above,Gable,0,5701,,20.58759114,0,0,,,,1,1,,0.03,nav,1,1969,1,, 18604,NJBF000052694,8 SO 31ST AVE.,Longport,NJ,39.31659861,-74.52233761,COM4,3001,,NaN,ME,1969,0,3401,3,1,5511.995944,5511.995944,3507,NO,41.04,51.6,1,2.19,6106,113.18977,123.046066,132.728405,139.282612,I,Above,Flat,0,NaN,,46.32118813,0,0,,,,1,1,,0.03,nav,1,1969,3,, 18605,NJBF000052675,8 SO 31ST AVE.,Longport,NJ,39.31646164,-74.522547,COM4,3001,,NaN,ME,1969,0,3401,1,1,1460.550241,1460.550241,3507,NO,15.02,23.26,1,2.84,6106,113.187388,123.044011,132.726155,139.280094,I,Above,Gable,0,NaN,,19.14135795,0,0,,,,1,1,,0.03,nav,1,1969,1,, 18606,NJBF000051272,12 POINT DRIVE,Longport,NJ,39.3039889,-74.53637174,RES1,3001,,22,NE,1992,1992,3103,3,1,2908.573779,2908.573779,3505,NO,39,44.93,3,4.13,6106,113.092117,122.951451,132.616726,139.15639,I,Above,Flat,0,5701,,41.96568929,0,0,,,,1,1,,0.03,nav,1,1992,3,, 18607,NJBF000051991,104 SO 26TH AVE,Longport,NJ,39.31223152,-74.52536494,RES1,3001,,20,NE,1989,1989,3102,3,1,1771.875048,1771.875048,3505,NO,56.99,71.67,3,1.65,6106,113.192964,123.044456,132.722115,139.275273,I,Above,Flat,0,5701,,64.33190477,0,1.2,,,,1,1,,0.03,nav,1,1989,3,, 18608,NJBF000053844,206 NO COLGATE AVE,Longport,NJ,39.32149678,-74.52295721,RES1,3001,,21,NE,1984,1999,3102,2,1,1500.733462,1500.733462,3505,NO,37.34,45.78,3,8.96,6106,113.101051,122.978186,132.663133,139.208742,I,Above,Hip,0,5701,,41.56428232,0,0,,,,1,1,,0.03,nav,1,1984,2,, 18609,NJBF000051440,,Longport,NJ,39.30655153,-74.53384721,RES1,3001,,NaN,NE,1969,0,3103,5,1,2640.293103,2640.293103,3505,NO,75.64,89.23,3,-0.64,6106,113.103522,122.964421,132.633341,139.17531,I,Above,Flat,0,5701,,82.43856817,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18610,NJBF000051442,,Longport,NJ,39.30659022,-74.53257001,RES3D,3001,,NaN,E,1969,0,3303,4,1,2737.77383,2737.77383,3507,NO,61.12,73.27,1,1.74,6106,113.129821,122.98611,132.655562,139.200203,I,Above,Flat,0,NaN,,67.19919008,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18611,NJBF000052497,7 SEAVIEW DRIVE,Longport,NJ,39.31515784,-74.53362206,RES1,3001,,16,NE,1965,1965,3102,1,1,2439.606638,2439.606638,3507,NO,16.83,28.52,1,1.28,6106,112.970391,122.866045,132.542654,139.073223,I,Above,Gable,0,5701,,22.67306507,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 18612,NJBF000052391,17 SEAVIEW DRIVE,Longport,NJ,39.31437513,-74.53304221,RES1,3001,,16,NE,1965,1965,3102,2,1,1886.036712,1886.036712,3507,NO,27.35,34.38,1,1.45,6106,112.99518,122.885391,132.561602,139.094781,I,Above,Hip,0,5701,,30.86503587,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 18613,NJBF000052103,38 SEAVIEW DRIVE,Longport,NJ,39.31291737,-74.53410347,RES1,3001,,19,NE,1985,1985,3102,3,1,2611.150847,2611.150847,3507,NO,54.11,67.88,1,0.88,6106,112.995829,122.884181,132.558863,139.091702,I,Above,Flat,0,5701,,60.99543762,0,1.2,,,,1,1,,0.03,nav,1,1985,3,, 18614,NJBF000052454,LONGPORT BLVD.,Longport,NJ,39.3148121,-74.53491847,COM1,3001,761,NaN,ME,1969,0,3401,1,1,1144.873967,1144.873967,3507,NO,15.21,29.03,1,-0.95,6106,112.94829,122.847572,132.523494,139.051443,I,Above,Flat,0,NaN,,22.11737588,0,0,,,,1,1,,0.03,nav,1,1969,1,, 18615,NJBF000052265,31 SEAVIEW DRIVE,Longport,NJ,39.31369371,-74.53386297,RES1,3001,,18,NE,1974,1974,3102,2,1,1618.362348,1618.362348,3507,NO,24.03,39.02,1,1.27,6106,112.988537,122.879154,132.554548,139.086795,I,Above,Flat,0,5701,,31.52401859,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 18616,NJBF000052460,13 SEAVIEW DRIVE,Longport,NJ,39.31485069,-74.5331328,RES1,3001,,16,NE,1975,1975,3102,2,1,1487.123353,1487.123353,3507,NO,39.26,51.86,1,2.44,6106,112.985685,122.878185,132.554729,139.08696,I,Above,Gable,0,5701,,45.55640077,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 18617,NJBF000052506,3 SEAVIEW DRIVE,Longport,NJ,39.31519309,-74.53402079,RES1,3001,,17,NE,1960,1960,3102,2,1,2257.476674,2257.476674,3507,NO,37.33,45.42,1,1.41,6106,112.961331,122.858685,132.535187,139.064728,I,Above,Gable,0,5701,,41.37376806,0,0,,,,1,1,,0.03,nav,1,1960,2,, 18618,NJBF000052478,11 SEAVIEW DRIVE,Longport,NJ,39.3149953,-74.53323817,RES1,3001,,17,NE,1975,1975,3102,2,1,1409.253868,1409.253868,3507,NO,27.35,42.26,1,0.05,6106,112.981163,122.874656,132.551273,139.083028,I,Above,Flat,0,5701,,34.80518049,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 18619,NJBF000052341,23 SEAVIEW DRIVE,Longport,NJ,39.314054,-74.533167,RES1,3001,,17,NE,1973,1973,3102,2,1,1381.982338,1381.982338,3507,NO,35.9,44.46,1,2.2,6106,112.997618,122.887009,132.562926,139.096293,I,Above,Gable,0,5701,,40.18308022,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 18620,NJBF000052463,407 LONGPORT BLVD.,Longport,NJ,39.31488139,-74.53550151,RES1,3001,510,19,NE,2005,2005,3102,2,1,2964.590265,2964.590265,3507,NO,28.62,36.35,1,1.09,6106,112.934768,122.836594,132.512386,139.038782,I,Above,Flat,0,5701,,32.48326538,0,0,,,,1,1,,0.03,nav,1,2005,2,, 18621,NJBF000052215,30 SUNSET BLVD.,Longport,NJ,39.3134515,-74.5354902,RES1,3001,,16,NE,1965,1965,3102,2,1,1911.206579,1911.206579,3507,NO,40.24,53.19,1,2.71,6106,112.95785,122.853733,132.528397,139.057088,I,Above,Gable,0,5701,,46.71660413,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 18622,NJBF000052401,103 HOSPITALITY DRIVE,Longport,NJ,39.31444906,-74.53707091,RES1,3001,,18,NE,2002,2002,3102,2,1,1706.142225,1706.142225,3507,NO,24.74,29.93,1,1.32,6106,112.908339,122.814419,132.489406,139.012588,I,Above,Gable,0,5701,,27.33211821,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18623,NJBF000052362,3 SUNSET BLVD.,Longport,NJ,39.31418425,-74.5361732,RES1,3001,,16,NE,1965,1965,3102,2,1,1534.422372,1534.422372,3507,NO,22.87,29.55,1,-0.21,6106,112.931635,122.833172,132.508214,139.034069,I,Above,Gable,0,5701,,26.20901239,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 18624,NJBF000052387,1 SUNSET BLVD.,Longport,NJ,39.31435274,-74.53626153,RES1,3001,,19,NE,2012,2012,3102,3,1,2239.622075,2239.622075,3507,NO,56.86,62.74,1,0.45,6106,112.927044,122.829623,132.504772,139.030133,I,Above,Hip,0,5701,,59.79985033,0,0,,,,1,1,,0.03,nav,1,2012,3,, 18625,NJBF000052217,17 SUNSET BLVD.,Longport,NJ,39.31345389,-74.53695545,RES1,3001,,19,NE,1996,1996,3102,2,1,2181.641123,2181.641123,3507,NO,33.33,40.46,1,2.07,6106,112.926737,122.828233,132.502451,139.027534,I,Above,Hip,0,5701,,36.89707033,0,0,,,,1,1,,0.03,nav,1,1996,2,, 18626,NJBF000052192,28 SUNSET BLVD.,Longport,NJ,39.31333921,-74.53561004,RES1,3001,,18,NE,1989,1989,3102,2,1,1834.448052,1834.448052,3507,NO,28.34,39.77,1,2.78,6106,112.957095,122.852975,132.527509,139.056081,I,Above,Gable,0,5701,,34.05612111,0,0,,,,1,1,,0.03,nav,1,1989,2,, 18627,NJBF000052133,20 SUNSET BLVD.,Longport,NJ,39.31306235,-74.53639913,RES1,3001,,19,NE,1990,1990,3102,3,1,1300.648073,1300.648073,3507,NO,36.37,48.16,1,-0.26,6106,112.944803,122.842546,132.516608,139.043681,I,Above,Flat,0,5701,,42.26546972,0,0,,,,1,1,,0.03,nav,1,1990,3,, 18628,NJBF000052500,5 SEAVIEW DRIVE,Longport,NJ,39.31516611,-74.53384776,RES1,3001,,17,NE,1972,1972,3102,2,1,1928.268926,1928.268926,3507,NO,32.37,46.54,1,0.05,6106,112.965447,122.862016,132.538555,139.068561,I,Above,Hip,0,5701,,39.45541149,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 18629,NJBF000052199,28 SEAVIEW DRIVE,Longport,NJ,39.31335414,-74.53333563,RES1,3001,,19,NE,1987,1987,3102,2,1,1675.920214,1675.920214,3507,NO,30.14,43.25,1,-0.87,6106,113.005161,122.892348,132.56765,139.10166,I,Above,Gable,0,5701,,36.69215679,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 18630,NJBF000051589,108 SO 19TH AV,Longport,NJ,39.30873445,-74.53069512,RES1,3001,,22,NE,2004,2004,3102,2,1,2986.175878,2986.175878,3505,NO,32.89,38.83,3,1.84,6106,113.135011,122.993096,132.665379,139.21146,I,Above,Hip,0,5701,,35.86363786,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18631,NJBF000052941,,Longport,NJ,39.31787545,-74.52374837,RES1,3001,,NaN,NE,1959,0,3102,2,1,2100.731039,2100.731039,3505,NO,38.98,44.46,3,7.53,6106,113.139619,123.006494,132.688977,139.238394,I,Above,Hip,0,5701,,41.72082781,0,0,,,,1,1,,0.03,nav,1,1959,2,, 18632,NJBF000053807,122 NO 35TH AVE,Longport,NJ,39.32135717,-74.52147697,RES1,3001,,18,NE,1945,1945,3102,1,1,1109.375199,1109.375199,3505,NO,18.59,29.21,3,7.61,6106,113.135282,123.005753,132.691353,139.240562,I,Above,Gable,0,5701,,23.90035426,0,0,,,,1,1,,0.03,nav,1,1945,1,, 18633,NJBF000053573,133 NO YARMOUTH AVE,Longport,NJ,39.32045285,-74.52300633,RES1,3001,,19,NE,1960,1960,3102,2,1,1121.75002,1121.75002,3505,NO,32.67,40.52,3,3.37,6106,113.115961,122.989452,132.673816,139.221014,I,Above,Hip,0,5701,,36.59383315,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 18634,NJBF000053442,1B NO 36TH AVE,Longport,NJ,39.31996,-74.5187485,RES1,3001,,18,NE,1970,1970,3102,1,1,1419.989475,1419.989475,3505,NO,23.96,30.6,3,5.17,6106,113.215743,123.069794,132.756066,139.313376,I,Above,Hip,0,5701,,27.27803469,0,0,,,,1,1,,0.03,nav,1,1970,1,, 18635,NJBF000052809,44 NO MANOR AVE,Longport,NJ,39.31724764,-74.52520766,RES1,3001,,18,NE,1948,1948,3102,1,1,934.7418352,934.7418352,3505,NO,19.34,29.88,3,6.05,6106,113.117873,122.98829,132.66969,139.216755,I,Above,Gable,0,5701,,24.61141658,0,0,,,,1,1,,0.03,nav,1,1948,1,, 18636,NJBF000052787,49 NO PELHAM AVE,Longport,NJ,39.31710339,-74.52538478,RES1,3001,,18,NE,1950,1950,3102,2,1,992.0814095,992.0814095,3505,NO,28.06,42.11,3,-0.69,6106,113.116316,122.986893,132.668117,139.214993,I,Above,Gable,0,5701,,35.08532958,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18637,NJBF000052683,21 NO PELHAM AVE,Longport,NJ,39.31652368,-74.52482603,RES1,3001,,NaN,NE,1950,1950,3102,2,1,1916.122529,1916.122529,3505,NO,33.09,42.15,3,3.29,6106,113.137351,123.00344,132.684534,139.233461,I,Above,Hip,0,5701,,37.62041111,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18638,NJBF000052519,22 SO 30TH AVE,Longport,NJ,39.31527645,-74.52259819,RES1,3001,,18,NE,1950,1950,3102,2,1,1334.663422,1334.663422,3505,NO,36.32,42.75,3,8.24,6106,113.2047,123.056998,132.738299,139.293612,I,Above,Gable,0,5701,,39.53396563,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18639,NJBF000052528,103 SO 31ST AVE,Longport,NJ,39.31536192,-74.52053305,RES1,3001,,20,NE,1992,1992,3103,3,1,1007.308064,1007.308064,3505,NO,51.25,61.8,3,4.92,6106,113.247831,123.092102,132.774523,139.333965,I,Above,Hip,0,5701,,56.52085445,0,0,,,,1,1,,0.03,nav,1,1992,3,, 18640,NJBF000052467,2927 ATLANTIC AVE,Longport,NJ,39.31489234,-74.52252813,RES1,3001,,NaN,NE,1948,1948,3102,2,1,1742.136468,1742.136468,3505,NO,28.66,34.59,3,6.74,6106,113.212179,123.062721,132.743782,139.299701,I,Above,Hip,0,5701,,31.62511086,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 18641,NJBF000052578,46 NO 29TH AVE,Longport,NJ,39.3156973,-74.52602919,RES1,3001,,18,NE,1950,1950,3102,1,1,1727.577327,1727.577327,3505,NO,17.81,30.93,3,2.1,6106,113.124384,122.992116,132.672091,139.219496,I,Above,Gable,0,5701,,24.3736159,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18642,NJBF000051953,102 SO 25TH AV,Longport,NJ,39.3119685,-74.5261925,RES1,3001,,18,NE,1940,1940,3102,2,1,717.600901,717.600901,3505,NO,31.3,44.3,3,6.54,6106,113.179443,123.03315,132.710212,139.261961,I,Above,Hip,0,5701,,37.80270034,0,0,,,,1,1,,0.03,nav,1,1940,2,, 18643,NJBF000051604,109 SO 19TH AVE,Longport,NJ,39.30892343,-74.5302378,RES1,3001,,18,NE,1951,1951,3102,1,1,1735.786222,1735.786222,3505,NO,23.7,31.64,3,5.08,6106,113.141675,122.99879,132.671437,139.218261,I,Above,Flat,0,5701,,27.66849601,0,0,,,,1,1,,0.03,nav,1,1951,1,, 18644,NJBF000051540,108 SO 18TH AV,Longport,NJ,39.30816836,-74.5314449,RES1,3001,,NaN,NE,1964,1964,3103,1,1,2661.136538,2661.136538,3505,NO,18.91,32.74,3,-0.39,6106,113.128201,122.986806,132.658251,139.203412,I,Above,Flat,0,5701,,25.82614362,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 18645,NJBF000051365,114 SO 14TH AVE,Longport,NJ,39.30558087,-74.53411143,RES1,3001,,21,NE,2013,2013,3103,3,1,1974.799879,1974.799879,3505,NO,33.89,45.71,3,0.12,6106,113.113677,122.971472,132.639293,139.181866,I,Above,Flat,0,5701,,39.80214798,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 18646,NJBF000052156,3 SO 26TH AVE,Longport,NJ,39.31315532,-74.52585505,RES1,3001,,21,NE,2002,2002,3102,2,1,1277.408998,1277.408998,3505,NO,22.41,31.89,3,-1.3,6106,113.167957,123.025034,132.703199,139.254247,I,Above,Flat,0,5701,,27.15014165,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18647,NJBF000051932,104 SO 25TH AVE,Longport,NJ,39.31185657,-74.52607304,RES1,3001,,18,NE,1900,1900,3102,2,1,2373.406695,2373.406695,3505,NO,30.37,39.63,3,-1.95,6106,113.183737,123.036535,132.71356,139.265685,I,Above,Hip,0,5701,,35.00390317,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 18648,NJBF000053373,3505 VENTNOR AV,Longport,NJ,39.31968845,-74.51903418,RES1,3001,,18,NE,1942,1942,3102,2,1,1431.176139,1431.176139,3505,NO,37.43,44.72,3,-0.17,6106,113.213711,123.067952,132.753916,139.311002,I,Above,Flat,0,5701,,41.07549681,0,0,,,,1,1,,0.03,nav,1,1942,2,, 18649,NJBF000053002,20 NO WOODCREST AVE,Longport,NJ,39.31820993,-74.52295774,RES1,3001,,19,NE,2014,2014,3102,2,1,1296.167758,1296.167758,3505,NO,28.1,35.87,3,0.35,6106,113.151492,123.016408,132.69948,139.250163,I,Above,Gable,0,5701,,31.98812318,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 18650,NJBF000053267,,Longport,NJ,39.3193219,-74.52521783,RES1,3001,,NaN,NE,1969,0,3103,5,1,2085.899786,2085.899786,3505,NO,95.42,100.48,3,1.67,6106,113.085535,122.963892,132.646582,139.190509,I,Above,Hip,0,5701,,97.95216906,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18651,NJBF000053354,,Longport,NJ,39.31961717,-74.52515671,RES1,3001,,NaN,NE,1969,0,3103,5,1,3994.777445,3994.777445,3505,NO,69.98,81.8,3,-2.41,6102,113.0823,122.961521,132.644411,139.188012,I,Above,Hip,0,5701,,75.88997113,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18652,NJBF000052973,102 NO 30TH AVE,Longport,NJ,39.31806315,-74.52525689,RES1,3001,,19,NE,1988,1988,3102,2,1,1878.736929,1878.736929,3505,NO,32.29,45.24,3,3.04,6106,113.104171,122.977905,132.659807,139.205572,I,Above,Gable,0,5701,,38.7676441,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 18653,NJBF000053078,12 NO YARMOUTH AVE,Longport,NJ,39.31857208,-74.52172753,RES1,3001,,18,NE,1950,1950,3102,1,1,1946.773626,1946.773626,3505,NO,13.04,19.32,3,-1.81,6106,113.172487,123.033722,132.717624,139.270483,I,Above,Hip,0,5701,,16.1777027,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18654,NJBF000052915,28 NO EVERGREEN AVE,Longport,NJ,39.31777126,-74.52409477,RES1,3001,,18,NE,1950,1950,3102,2,1,1255.116477,1255.116477,3505,NO,19.68,24.74,3,-2.86,6106,113.133744,123.001639,132.683891,139.232688,I,Above,Gable,0,5701,,22.21048059,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18655,NJBF000052962,3503 ATLANTIC AVE,Longport,NJ,39.31799113,-74.51746612,RES1,3001,,18,NE,1953,1953,3102,1,1,1415.023959,1415.023959,3505,NO,16.26,25.22,3,0.4,6106,113.27361,123.115157,132.800985,139.363532,I,Above,Hip,0,5701,,20.73803824,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 18656,NJBF000053012,15 NO WOODCREST AVE,Longport,NJ,39.31824339,-74.52251206,RES1,3001,,18,NE,1950,1950,3102,1,1,1324.457581,1324.457581,3505,NO,23.38,33.81,3,4.98,6106,113.160614,123.02383,132.70714,139.258754,I,Above,Gable,0,5701,,28.59500311,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18657,NJBF000053010,3201 VENTNOR AVE,Longport,NJ,39.31823725,-74.52148132,RES1,3001,,20,NE,2014,2014,3102,1,1,1063.005859,1063.005859,3505,NO,16.41,22.19,3,-1.75,6106,113.18298,123.04195,132.725771,139.279631,I,Above,Hip,0,5701,,19.29605994,0,0,,,,1,1,,0.03,nav,1,2014,1,, 18658,NJBF000052191,2507 OBERON AVE,Longport,NJ,39.31333597,-74.52665267,RES1,3001,,21,NE,2007,2007,3102,3,1,1348.406348,1348.406348,3505,NO,53.34,66.21,3,6.9,6106,113.148031,123.008983,132.686928,139.236053,I,Above,Flat,0,5701,,59.7752853,0,0,,,,1,1,,0.03,nav,1,2007,3,, 18659,NJBF000053074,13 NO 32ND AVE,Longport,NJ,39.31855207,-74.52201538,RES1,3001,,20,NE,2014,2014,3102,2,1,1148.469168,1148.469168,3505,NO,30.57,45.22,3,6.9,6106,113.166592,123.028929,132.712675,139.264938,I,Above,Flat,0,5701,,37.89758509,0,0,,,,1,1,,0.03,nav,1,2014,2,, 18660,NJBF000053469,3105 MONMOUTH AVE,Longport,NJ,39.32005207,-74.5247825,RES1,3001,,21,NE,2013,2013,3103,3,1,2705.042115,2705.042115,3505,NO,60.07,66.95,3,2.35,6102,113.083678,122.962999,132.646308,139.190077,I,Above,Gable,0,5701,,63.50778173,0,1.2,,,,1,1,,0.03,nav,1,2013,3,, 18661,NJBF000052928,1 SO 32ND AVE,Longport,NJ,39.31783817,-74.52131552,RES1,3001,,20,NE,2013,2013,3102,3,1,1353.419675,1353.419675,3505,NO,45.17,58.76,3,-2.41,6106,113.192688,123.049489,132.733146,139.287901,I,Above,Gable,0,5701,,51.96590554,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 18662,NJBF000052757,41 NO PELHAM AVE,Longport,NJ,39.3169215,-74.5252415,RES1,3001,,18,NE,1948,1948,3102,2,1,687.870891,687.870891,3505,NO,30.06,40.28,3,5.47,6106,113.122224,122.991522,132.672691,139.220145,I,Above,Flat,0,5701,,35.17112621,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 18663,NJBF000052703,3207 ATLANTIC AVE,Longport,NJ,39.31664693,-74.51982224,RES1,3001,,21,NE,2014,2014,3102,3,1,674.4271679,674.4271679,3505,NO,38.2,48.63,3,-1.52,6106,113.243308,123.089535,132.773207,139.332592,I,Above,Flat,0,5701,,43.41195128,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 18664,NJBF000053891,122 NO 36TH AVE,Longport,NJ,39.32167403,-74.52089003,RES1,3001,,18,NE,1960,1960,3102,1,1,954.3587155,954.3587155,3505,NO,10.08,16.44,3,-1.77,6106,113.143195,123.012372,132.698433,139.248449,I,Above,Hip,0,5701,,13.25965591,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18665,NJBF000053025,3503 PACIFIC AVE,Longport,NJ,39.3183193,-74.51798626,RES1,3001,,18,NE,1950,1950,3102,1,1,867.2354412,867.2354412,3505,NO,11.59,25.46,3,0.82,6106,113.257332,123.102228,132.787964,139.349053,I,Above,Gable,0,5701,,18.52625013,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18666,NJBF000051554,106 SO 18TH AVE,Longport,NJ,39.30826331,-74.53156403,RES1,3001,,22,NE,1989,1989,3103,3,1,2680.350318,2680.350318,3505,NO,60.7,67.47,3,3.67,6106,113.124159,122.983607,132.655096,139.19989,I,Above,Hip,0,5701,,64.08431829,0,0,,,,1,1,,0.03,nav,1,1989,3,, 18667,NJBF000051585,,Longport,NJ,39.30866111,-74.52929961,RES1,3001,,NaN,NE,1969,0,3102,2,1,8253.754304,8253.754304,3507,NO,33.21,43.86,1,2.91,6106,113.165759,123.01821,132.691009,139.240092,I,Above,Flat,0,5701,,38.53657612,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18668,NJBF000053370,127 NO WOODCREST AVE,Longport,NJ,39.31968454,-74.52389935,RES1,3001,,18,NE,1950,1950,3102,1,1,880.0016562,880.0016562,3505,NO,14.53,24.19,3,2.52,6106,113.108435,122.982748,132.666254,139.212632,I,Above,Gable,0,5701,,19.36118433,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18669,NJBF000053343,121 NO WOODCREST AVE,Longport,NJ,39.31958496,-74.52380078,RES1,3001,,18,NE,1950,1950,3102,1,1,1606.585097,1606.585097,3505,NO,27.69,36.67,3,8.45,6106,113.112092,122.985628,132.669122,139.215878,I,Above,Gable,0,5701,,32.17737803,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18670,NJBF000053295,27 NO 33RD AVE,Longport,NJ,39.3194113,-74.5212439,RES1,3001,,18,NE,1950,1950,3102,2,1,1489.742285,1489.742285,3505,NO,31.41,40.07,3,0.89,6106,113.170074,123.032435,132.71708,139.269794,I,Above,Gable,0,5701,,35.74251341,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18671,NJBF000053301,3 SO 36TH AVE,Longport,NJ,39.31943281,-74.51827337,RES1,3001,,18,NE,1940,1940,3102,2,1,1490.372122,1490.372122,3505,NO,26.92,31.99,3,1.09,6106,113.234099,123.084257,132.770492,139.329536,I,Above,Hip,0,5701,,29.45710653,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 18672,NJBF000053328,3600 VENTNOR AVE,Longport,NJ,39.3195331,-74.51842125,RES1,3001,,20,NE,2016,2016,3102,2,1,2106.091934,2106.091934,3505,NO,25.63,33.33,3,-2.14,6106,113.229365,123.080501,132.766711,139.325309,I,Above,Hip,0,5701,,29.48399781,0,0,,,,1,1,,0.03,nav,1,2016,2,, 18673,NJBF000052918,,Longport,NJ,39.31777473,-74.52021152,RES1,3001,,NaN,NE,1969,0,3102,2,1,1773.490974,1773.490974,3505,NO,31.38,44.89,3,7.69,6106,113.217514,123.069555,132.753746,139.310919,I,Above,Gable,0,5701,,38.13231212,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18674,NJBF000053196,3311 VENTNOR AV,Longport,NJ,39.3190449,-74.52014865,RES1,3001,,18,NE,1948,1948,3102,2,1,2403.920504,2403.920504,3505,NO,27.41,38.31,3,-2.1,6106,113.199386,123.055877,132.740874,139.296478,I,Above,Gable,0,5701,,32.86325492,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 18675,NJBF000053930,218 NO COLGATE AVE,Longport,NJ,39.3218175,-74.523266,RES1,3001,,20,NE,1989,1989,3102,3,1,1217.290243,1217.290243,3505,NO,54.93,66.31,3,6.83,6106,113.08945,122.969046,132.654011,139.198366,I,Above,Gable,0,5701,,60.61885877,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 18676,NJBF000053908,214 NO COLGATE AVE,Longport,NJ,39.32173184,-74.52317961,RES1,3001,,20,NE,1989,1989,3102,3,1,1229.13556,1229.13556,3505,NO,44.06,53,3,-1.99,6106,113.092627,122.971551,132.656513,139.201213,I,Above,Gable,0,5701,,48.52667818,0,0,,,,1,1,,0.03,nav,1,1989,3,, 18677,NJBF000053122,,Longport,NJ,39.31877576,-74.52462693,RES1,3001,,NaN,NE,1969,0,3102,2,1,1100.912701,1100.912701,3505,NO,38.83,52.14,3,8.09,6106,113.106725,122.980601,132.663231,139.209353,I,Above,Gable,0,5701,,45.48562952,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18678,NJBF000052670,36 SO 32ND AVE,Longport,NJ,39.31643918,-74.52049538,RES1,3001,,19,NE,1992,1992,3102,1,1,2064.817287,2064.817287,3505,NO,20.46,30.78,3,1.85,6106,113.231991,123.080182,132.763359,139.321616,I,Above,Gable,0,5701,,25.62036631,0,1.2,,,,1,1,,0.03,nav,1,1992,1,, 18679,NJBF000052403,,Longport,NJ,39.31447666,-74.52569155,RES1,3001,,NaN,NE,1969,0,3102,2,1,1329.363818,1329.363818,3505,NO,32.75,47.12,3,-1.53,6106,113.150703,123.012325,132.691571,139.241322,I,Above,Hip,0,5701,,39.93319853,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18680,NJBF000053466,100 NO COLGATE AVE,Longport,NJ,39.32004348,-74.52157953,RES1,3001,,21,NE,2013,2013,3102,3,1,2178.509418,2178.509418,3505,NO,44.56,55.99,3,2.42,6106,113.153119,123.019201,132.704037,139.255073,I,Above,Flat,0,5701,,50.27112637,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 18681,NJBF000053721,119 NO 34TH AVE,Longport,NJ,39.32102183,-74.52154535,RES1,3001,,18,NE,1952,1952,3102,1,1,1077.438688,1077.438688,3505,NO,16.41,26.25,3,3.05,6106,113.138916,123.008447,132.693836,139.243429,I,Above,Flat,0,5701,,21.32810288,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18682,NJBF000053745,119 NO 34TH AVE,Longport,NJ,39.32112313,-74.52148667,RES1,3001,,18,NE,1952,1952,3102,1,1,591.2831382,591.2831382,3505,NO,11.52,18.09,3,-1.82,6106,113.138633,123.008292,132.693764,139.243326,I,Above,Flat,0,5701,,14.80742792,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18683,NJBF000052714,2906 SUNSET AVE,Longport,NJ,39.31668807,-74.52572294,RES1,3001,,20,NE,2017,2017,3102,2,1,1605.72361,1605.72361,3505,NO,22.21,31.23,3,-2.4,6106,113.115501,122.985844,132.66664,139.213349,I,Above,Hip,0,5701,,26.72062755,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 18684,NJBF000052197,4 SO 27TH AVE,Longport,NJ,39.31335132,-74.52562084,RES1,3001,,16,NE,1920,1920,3102,2,4,4202.702144,4202.702144,3505,NO,36.86,46.49,3,-1.93,6106,113.169888,123.026808,132.705233,139.256539,I,Above,Hip,0,5701,,41.67874598,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 18685,NJBF000052944,2930 SUNSET AVE,Longport,NJ,39.31789295,-74.52531082,RES1,3001,,19,NE,1965,1965,3102,2,1,2829.289745,2829.289745,3505,NO,27.61,32.82,3,3.49,6106,113.105643,122.978947,132.660718,139.206612,I,Above,Hip,0,5701,,30.21383712,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 18686,NJBF000052843,15 N 30TH AVE,Longport,NJ,39.31742025,-74.52404639,RES1,3001,,19,NE,1998,1998,3102,2,1,2088.742881,2088.742881,3505,NO,34.38,42.12,3,-1.22,6106,113.140237,123.006597,132.688647,139.238049,I,Above,Gable,0,5701,,38.24894642,0,0,,,,1,1,,0.03,nav,1,1998,2,, 18687,NJBF000052572,18 SO 30TH AVE,Longport,NJ,39.31566,-74.52294267,RES1,3001,,18,NE,1955,1955,3102,2,1,1129.4022,1129.4022,3505,NO,29.5,42.98,3,2.48,6106,113.191306,123.046471,132.72787,139.281988,I,Above,Hip,0,5701,,36.23947616,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18688,NJBF000053247,115 NO 31ST AVE,Longport,NJ,39.31924422,-74.52424373,RES1,3001,,18,NE,1948,1948,3102,2,1,2012.127856,2012.127856,3505,NO,23.59,29.15,3,0.33,6106,113.107772,122.981846,132.664934,139.21121,I,Above,Hip,0,5701,,26.36836257,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 18689,NJBF000053332,127 NO 31ST AVE,Longport,NJ,39.31953852,-74.52449027,RES1,3001,,18,NE,1930,1930,3102,2,1,2004.397488,2004.397488,3505,NO,38.32,50.35,3,2.67,6106,113.097911,122.974103,132.65725,139.202508,I,Above,Hip,0,5701,,44.33531836,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 18690,NJBF000053273,3212 WINCHESTER AVE,Longport,NJ,39.31934615,-74.52203539,RES1,3001,,18,NE,1954,1954,3102,1,1,954.8519624,954.8519624,3505,NO,23.35,36,3,8.31,6106,113.153955,123.019334,132.703544,139.254615,I,Above,Gable,0,5701,,29.67747384,0,0,,,,1,1,,0.03,nav,1,1954,1,, 18691,NJBF000052785,5 SO 31ST AVE,Longport,NJ,39.31709917,-74.52217297,RES1,3001,,20,NE,2006,2006,3102,3,1,1949.538509,1949.538509,3505,NO,41.05,54.52,3,-1.26,6106,113.185592,123.043111,132.725863,139.279769,I,Above,Flat,0,5701,,47.78732481,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18692,NJBF000052598,9 NO PELHAM AVE,Longport,NJ,39.31587563,-74.52424383,RES1,3001,,18,NE,1950,1950,3102,1,1,1064.794575,1064.794575,3505,NO,16.94,29.51,3,4.64,6106,113.159955,123.021201,132.702122,139.253188,I,Above,Hip,0,5701,,23.22341095,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18693,NJBF000052591,,Longport,NJ,39.31584769,-74.52153224,RES1,3001,,NaN,NE,1969,0,3102,2,1,1509.81803,1509.81803,3505,NO,32.42,44.55,3,-2.88,6106,113.218774,123.068944,132.751182,139.308015,I,Above,Gable,0,5701,,38.48553629,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18694,NJBF000052410,3 SO 29TH AVE,Longport,NJ,39.3145103,-74.52392045,RES1,3001,,NaN,NE,1952,1952,3102,2,1,1379.444399,1379.444399,3505,NO,34.54,43.71,3,2.61,6106,113.188217,123.04288,132.72298,139.27646,I,Above,Hip,0,5701,,39.12776559,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18695,NJBF000052888,8 NO 31ST AVE,Longport,NJ,39.3176425,-74.523238,RES1,3001,,NaN,NE,1952,1952,3102,1,1,1360.37871,1360.37871,3505,NO,15.75,26.01,3,0.7,6106,113.154223,123.018137,132.700716,139.251583,I,Above,Gable,0,5701,,20.88025647,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18696,NJBF000051833,,Longport,NJ,39.31106166,-74.52618552,RES1,3001,,NaN,NE,1969,0,3102,2,1,1704.20365,1704.20365,3505,NO,30.82,43.7,3,1.57,6106,113.193879,123.043953,132.720265,139.273058,I,Above,Flat,0,5701,,37.26077708,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18697,NJBF000051816,,Longport,NJ,39.31095362,-74.52627172,RES1,3001,,NaN,NE,1969,0,3102,2,1,2206.507384,2206.507384,3505,NO,24.61,33.86,3,-1.52,6106,113.193751,123.043731,132.719912,139.272649,I,Above,Flat,0,5701,,29.23680772,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18698,NJBF000052553,2801 SUNSET AVE,Longport,NJ,39.31554059,-74.52655103,RES1,3001,,20,NE,1979,1979,3103,2,1,1613.222407,1613.222407,3505,NO,28.39,41.7,3,4.28,6106,113.115617,122.984832,132.664465,139.210926,I,Above,Flat,0,5701,,35.04845904,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 18699,NJBF000053168,7 S 35TH AVE,Longport,NJ,39.31895817,-74.51871605,RES1,3001,,20,NE,1978,2018,3102,2,1,1263.194539,1263.194539,3505,NO,21.58,26.71,3,-2.71,6106,113.23175,123.082005,132.76772,139.326474,I,Above,Gable,0,5701,,24.14388068,0,0,,,,1,1,,0.03,nav,1,1978,2,, 18700,NJBF000052554,104 SO 32ND AVE,Longport,NJ,39.31554154,-74.51965825,RES1,3001,,22,NE,1947,1947,3103,3,1,2082.458484,2082.458484,3505,NO,41.3,49.68,3,1.42,6106,113.263907,123.105307,132.788321,139.349311,I,Above,Flat,0,5701,,45.49016579,0,1.2,,,,1,1,,0.03,nav,1,1947,3,, 18701,NJBF000053411,138 NO WOODCREST AVE,Longport,NJ,39.3198385,-74.524492,RES1,3001,,19,NE,1955,1955,3102,2,1,1350.439796,1350.439796,3505,NO,36.12,41.93,3,1.38,6106,113.093247,122.970573,132.653894,139.198674,I,Above,Gable,0,5701,,39.02626981,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 18702,NJBF000053567,,Longport,NJ,39.3204343,-74.52147428,RES1,3001,,NaN,NE,1969,0,3102,2,1,1503.383909,1503.383909,3505,NO,23.72,32.77,3,-0.39,6106,113.149434,123.016516,132.701623,139.252297,I,Above,Gable,0,5701,,28.2484567,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18703,NJBF000053838,124 NO 35TH AVE,Longport,NJ,39.32146441,-74.52160324,RES1,3001,,21,NE,2004,2004,3102,3,1,2466.065421,2466.065421,3505,NO,40.42,47.84,3,7.87,6106,113.130918,123.002303,132.687896,139.236647,I,Above,Hip,0,5701,,44.13034911,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18704,NJBF000053437,3301 WINCHESTER AVE,Longport,NJ,39.31993406,-74.5217423,RES1,3001,,20,NE,2014,2014,3102,2,1,1521.005805,1521.005805,3505,NO,26.69,40.62,3,2.22,6106,113.15128,123.017629,132.702322,139.253164,I,Above,Hip,0,5701,,33.65250084,0,0,,,,1,1,,0.03,nav,1,2014,2,, 18705,NJBF000052801,30 SO YARMOUTH AVE,Longport,NJ,39.31721284,-74.52043437,RES1,3001,,19,NE,1957,1957,3102,1,1,2156.753234,2156.753234,3505,NO,18.99,28.61,3,0.07,6106,113.221368,123.072218,132.755935,139.313362,I,Above,Gable,0,5701,,23.79852579,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 18706,NJBF000052256,2707 ATLANTIC AVE,Longport,NJ,39.31366476,-74.52463725,RES1,3001,,18,NE,1938,1938,3102,2,1,1358.857849,1358.857849,3505,NO,31.15,43.48,3,8.47,6106,113.186049,123.040286,132.719412,139.272408,I,Above,Flat,0,5701,,37.31760361,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18707,NJBF000054190,217 NO 36TH AVE,Longport,NJ,39.322677,-74.521404,RES1,3001,,18,NE,1980,1980,3102,1,1,1581.699767,1581.699767,3505,NO,17.47,32.01,3,2.95,6106,113.116797,122.991743,132.678042,139.225211,I,Above,Gable,0,5701,,24.74060561,0,0,,,,1,1,,0.03,nav,1,1980,1,, 18708,NJBF000053932,3502 MONMOUTH AVE,Longport,NJ,39.32183531,-74.52109592,RES1,3001,,18,NE,1965,1965,3102,1,1,1367.812791,1367.812791,3505,NO,16.5,28.67,3,4.36,6106,113.136275,123.006894,132.692932,139.24222,I,Above,Gable,0,5701,,22.58663966,0,0,,,,1,1,,0.03,nav,1,1965,1,, 18709,NJBF000052823,2910 SUNSET AVE,Longport,NJ,39.31731211,-74.52554236,RES1,3001,,19,NE,1974,1974,3102,2,1,1644.351166,1644.351166,3505,NO,40.39,52.1,3,3.2,6106,113.109688,122.981703,132.662994,139.209217,I,Above,Hip,0,5701,,46.24533125,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 18710,NJBF000052453,102 SO EVERGREEN AVE,Longport,NJ,39.31480691,-74.52131376,RES1,3001,,21,NE,2014,2014,3103,3,1,1539.973931,1539.973931,3505,NO,55.61,63.28,3,0.76,6106,113.239621,123.084938,132.766558,139.325054,I,Above,Flat,0,5701,,59.44517337,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 18711,NJBF000053224,3206 WINCHESTER AVE,Longport,NJ,39.31917212,-74.52228778,RES1,3001,,18,NE,1950,1950,3102,2,1,1701.130239,1701.130239,3505,NO,28.81,43.71,3,3.43,6106,113.151155,123.016929,132.70091,139.251679,I,Above,Gable,0,5701,,36.25851556,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18712,NJBF000052954,3 NO WOODCREST AVE,Longport,NJ,39.31795622,-74.52224529,RES1,3001,,18,NE,2009,2009,3102,3,1,1368.668757,1368.668757,3505,NO,43.08,54.69,3,5.07,6106,113.170805,123.03185,132.715114,139.267709,I,Above,Gable,0,5701,,48.88329206,0,0,,,,1,1,,0.03,nav,1,2009,3,, 18713,NJBF000052561,100 SO WOODCREST AVE,Longport,NJ,39.31558071,-74.52043205,RES1,3001,,20,NE,2013,2013,3103,2,1,1851.43969,1851.43969,3505,NO,27.11,33.17,3,-2.6,6106,113.246616,123.091308,132.773935,139.33333,I,Above,Hip,0,5701,,30.14304818,0,0,,,,1,1,,0.03,nav,1,2013,2,, 18714,NJBF000052857,16 NO EVERGREEN AVE,Longport,NJ,39.31749915,-74.52383519,RES1,3001,,18,NE,1950,1950,3102,2,1,952.6660198,952.6660198,3505,NO,23.01,35.28,3,0.86,6106,113.143562,123.009364,132.691565,139.241322,I,Above,Gable,0,5701,,29.14275668,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18715,NJBF000052846,15 SO 32ND AVE,Longport,NJ,39.31743823,-74.52096665,RES1,3001,,18,NE,1920,1920,3102,2,1,1009.281812,1009.281812,3505,NO,32.78,43.09,3,5.69,6106,113.20639,123.060263,132.743846,139.299869,I,Above,Gable,0,5701,,37.93245769,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 18716,NJBF000052791,3307 ATLANTIC AVE,Longport,NJ,39.31714322,-74.51884103,RES1,3001,,NaN,NE,1951,1951,3102,2,1,1352.654891,1352.654891,3505,NO,37.57,49.9,3,8.82,6106,113.256865,123.100931,132.785458,139.346245,I,Above,Flat,0,5701,,43.73403069,0,0,,,,1,1,,0.03,nav,1,1951,2,, 18717,NJBF000052767,3216 PACIFIC AVE,Longport,NJ,39.31697553,-74.51961778,RES1,3001,,18,NE,1948,1948,3102,2,1,1242.876294,1242.876294,3505,NO,29.29,41.29,3,6.76,6106,113.242644,123.089269,132.773267,139.332672,I,Above,Hip,0,5701,,35.29106307,0,0,,,,1,1,,0.03,nav,1,1948,2,, 18718,NJBF000052649,3113 ATLANTIC AVE,Longport,NJ,39.31623968,-74.52030799,RES1,3001,,18,NE,1952,1952,3102,2,1,1596.10799,1596.10799,3505,NO,39.88,49.02,3,4.86,6106,113.2391,123.085778,132.768921,139.327799,I,Above,Flat,0,5701,,44.44911937,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18719,NJBF000052634,2 SO 30TH AVE,Longport,NJ,39.31613145,-74.52338846,RES1,3001,,21,NE,2006,2006,3102,3,1,1887.900023,1887.900023,3505,NO,51.89,59.24,3,3.78,6106,113.174409,123.033177,132.714684,139.267257,I,Above,Gable,0,5701,,55.56430386,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18720,NJBF000052614,2 SO 30TH AVE,Longport,NJ,39.31599603,-74.52327492,RES1,3001,,21,NE,2006,2006,3102,3,1,1696.566961,1696.566961,3505,NO,37.87,46.45,3,2.04,6106,113.178939,123.036733,132.718202,139.271191,I,Above,Gable,0,5701,,42.16192051,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18721,NJBF000052261,3 NO 26TH AVE,Longport,NJ,39.31368104,-74.52653381,RES1,3001,,19,NE,1925,1925,3102,2,1,866.675088,866.675088,3505,NO,35.95,42.47,3,8.03,6106,113.145152,123.006995,132.68526,139.234208,I,Above,Gable,0,5701,,39.21330581,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 18722,NJBF000052515,3006 ATLANTIC AVE,Longport,NJ,39.31525158,-74.52098913,RES1,3001,,18,NE,1962,1962,3103,2,1,1338.312775,1338.312775,3505,NO,35.16,49.32,3,1.54,6106,113.239712,123.085413,132.767517,139.326163,I,Above,Hip,0,5701,,42.24142397,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 18723,NJBF000053305,24 NO COLGATE AVE,Longport,NJ,39.31943851,-74.52099067,RES1,3001,,19,NE,2005,2005,3102,3,1,1315.056343,1315.056343,3505,NO,54.7,65.76,3,5.18,6106,113.175122,123.036542,132.721332,139.274558,I,Above,Hip,0,5701,,60.23327489,0,0,,,,1,1,,0.03,nav,1,2005,3,, 18724,NJBF000053331,28 NO COLGATE AV,Longport,NJ,39.3195382,-74.52107759,RES1,3001,,19,NE,2006,2006,3102,3,1,1170.04061,1170.04061,3505,NO,40.13,46.6,3,-0.03,6106,113.171722,123.033867,132.71867,139.271562,I,Above,Gable,0,5701,,43.36438484,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 18725,NJBF000051379,1407 BEACH TERRACE,Longport,NJ,39.30579188,-74.53294512,RES1,3001,,22,NE,2016,2016,3103,3,1,2732.4848,2732.4848,3505,NO,43.23,54.36,3,1.16,6106,113.134799,122.989152,132.657644,139.202425,I,Above,Hip,0,5701,,48.79591219,0,1.2,,,,1,1,,0.03,nav,1,2016,3,, 18726,NJBF000053203,20 NO 33RD AVE,Longport,NJ,39.31906551,-74.52141286,RES1,3001,,18,NE,1952,1952,3102,1,1,1088.037211,1088.037211,3505,NO,8.82,20.04,3,-1.79,6106,113.171709,123.033488,132.717844,139.270688,I,Above,Hip,0,5701,,14.42826058,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18727,NJBF000053151,103 NO 31ST AVE,Longport,NJ,39.31890718,-74.52393084,RES1,3001,,18,NE,1950,1950,3102,1,1,1699.384191,1699.384191,3505,NO,20.04,33.16,3,7.05,6106,113.119729,122.991252,132.674285,139.221782,I,Above,Gable,0,5701,,26.60135997,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 18728,NJBF000052674,32 NO PELHAM AVE,Longport,NJ,39.31646155,-74.52525526,RES1,3001,,18,NE,1950,1950,3102,1,1,1673.474967,1673.474967,3505,NO,18.53,29.72,3,-0.88,6106,113.129086,122.996669,132.677523,139.22559,I,Above,Flat,0,5701,,24.12487128,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18729,NJBF000052734,3217 ATLANTIC AVE,Longport,NJ,39.3167816,-74.51943084,RES1,3001,,21,NE,2006,2006,3102,3,1,1750.073324,1750.073324,3505,NO,43.6,57,3,4.79,6106,113.249671,123.094806,132.778778,139.338797,I,Above,Flat,0,5701,,50.29651327,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18730,NJBF000052296,6 SO 28TH AV,Longport,NJ,39.31383977,-74.52492633,RES1,3001,,18,NE,1938,1938,3102,2,1,1098.932896,1098.932896,3505,NO,21.1,32.55,3,-2.09,6106,113.17711,123.033184,132.712307,139.264485,I,Above,Hip,0,5701,,26.82498433,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18731,NJBF000052275,2700 OBERON AVE,Longport,NJ,39.31375441,-74.52544055,RES1,3001,,18,NE,1938,1938,3102,2,1,732.6271788,732.6271788,3505,NO,27.03,36.09,3,3.68,6106,113.167418,123.025207,132.704024,139.255219,I,Above,Flat,0,5701,,31.55893938,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18732,NJBF000052704,2905 SUNSET AVE,Longport,NJ,39.316647,-74.52617225,RES1,3001,,20,NE,1980,1980,3103,3,1,1096.257857,1096.257857,3505,NO,59.42,65.12,3,3.3,6106,113.106485,122.978479,132.659047,139.204809,I,Above,Hip,0,5701,,62.27230945,0,1.1,,,,1,1,,0.03,nav,1,1980,3,, 18733,NJBF000051562,1704 ATLANTIC AVE,Longport,NJ,39.30838233,-74.53191655,RES1,3001,,18,NE,1922,1922,3103,6,1,1209.372619,1209.372619,3505,NO,109.39,124.17,3,-0.84,6106,113.11478,122.976059,132.647521,139.191416,I,Above,Hip,0,5701,,116.7775982,0,0,,,,1,1,,0.03,nav,1,1922,6,, 18734,NJBF000051516,,Longport,NJ,39.30789395,-74.5303077,RES1,3001,,NaN,NE,1998,0,3102,2,1,4377.133447,4377.133447,3505,NO,33.44,44.13,3,-2.54,6106,113.156663,123.009818,132.681468,139.229333,I,Above,Flat,0,5701,,38.78421404,0,0,,,,1,1,,0.03,nav,1,1998,2,, 18735,NJBF000051387,1300 ATLANTIC AVE,Longport,NJ,39.30592696,-74.53515208,RES1,3001,,20,NE,1975,1975,3103,2,1,4618.030151,4618.030151,3505,NO,32.15,42.52,3,1.59,6106,113.086191,122.949292,132.617086,139.157001,I,Above,Flat,0,5701,,37.33434662,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 18736,NJBF000051377,1203 ATLANTIC AVE,Longport,NJ,39.30575264,-74.53622763,RES1,3001,,22,NE,2008,2008,3103,3,1,3645.990961,3645.990961,3505,NO,57.32,66.85,3,0.46,6106,113.066427,122.932745,132.599974,139.137751,I,Above,Flat,0,5701,,62.08943042,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 18737,NJBF000051346,110 SO 13TH AVE,Longport,NJ,39.30525312,-74.53507467,RES1,3001,,21,NE,1980,1980,3103,5,1,1770.606817,1770.606817,3505,NO,72.94,79.04,3,3.66,6106,113.098742,122.958708,132.625824,139.166732,I,Above,Flat,0,5701,,75.99080688,0,0,,,,1,1,,0.03,nav,1,1980,5,, 18738,NJBF000051262,7 POINT DRIVE,Longport,NJ,39.30390164,-74.53747703,RES1,3001,,22,NE,1986,1986,3103,6,1,1644.552063,1644.552063,3505,NO,114.69,125.26,3,-0.17,6106,113.070434,122.933392,132.598181,139.135559,I,Above,Flat,0,5701,,119.9746296,0,0,,,,1,1,,0.03,nav,1,1986,6,, 18739,NJBF000052609,15 NO PELHAM AVE,Longport,NJ,39.31597013,-74.52433137,RES1,3001,,18,NE,1950,1950,3102,2,1,1330.32119,1330.32119,3505,NO,34.77,45.9,3,-0.83,6106,113.15662,123.018579,132.699525,139.250279,I,Above,Hip,0,5701,,40.33296935,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18740,NJBF000052608,25 NO 29TH AVE,Longport,NJ,39.31596817,-74.52579587,RES1,3001,,20,NE,2015,2015,3102,3,1,1252.985876,1252.985876,3505,NO,47.47,57.38,3,7.64,6106,113.125157,122.993007,132.673276,139.220826,I,Above,Gable,0,5701,,52.42471951,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 18741,NJBF000054033,209 NO 35TH AVE,Longport,NJ,39.32216557,-74.52177862,RES1,3001,,19,NE,1950,1950,3102,2,1,1128.47044,1128.47044,3505,NO,40.76,47.82,3,8.9,6106,113.116413,122.991082,132.676943,139.224128,I,Above,Gable,0,5701,,44.28905043,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18742,NJBF000052994,1 NO 32ND AVE,Longport,NJ,39.31815325,-74.52160646,RES1,3001,,18,NE,1950,1950,3102,2,1,2008.868351,2008.868351,3505,NO,33.13,47.13,3,0.05,6106,113.181572,123.04074,132.724446,139.278152,I,Above,Hip,0,5701,,40.13138829,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18743,NJBF000052999,3218 VENTNOR AVE,Longport,NJ,39.31820017,-74.52061864,RES1,3001,,20,NE,1955,1955,3102,1,1,3216.326598,3216.326598,3505,NO,22.5,31.78,3,3.1,6106,113.202182,123.057476,132.741718,139.297473,I,Above,Flat,0,5701,,27.14274071,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 18744,NJBF000053454,16 NO 35TH AVE,Longport,NJ,39.32000019,-74.52019168,RES1,3001,,18,NE,1950,1950,3102,1,1,879.6920049,879.6920049,3505,NO,19.51,30.91,3,2.99,6106,113.183848,123.044027,132.729551,139.283699,I,Above,Gable,0,5701,,25.2096956,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18745,NJBF000053263,21 NO 33RD AVE,Longport,NJ,39.31931191,-74.52113711,RES1,3001,,18,NE,1950,1950,3102,2,1,1019.714511,1019.714511,3505,NO,38.9,53.48,3,6.71,6106,113.173908,123.035461,132.720103,139.273194,I,Above,Flat,0,5701,,46.19131183,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18746,NJBF000052740,16 SO WOODCREST AVE,Longport,NJ,39.31683,-74.521618,RES1,3001,,20,NE,2005,2005,3102,3,1,1412.010699,1412.010699,3505,NO,61,67.54,3,2.92,6106,113.201722,123.055964,132.738819,139.294252,I,Above,Hip,0,5701,,64.27018969,0,0,,,,1,1,,0.03,nav,1,2005,3,, 18747,NJBF000051578,105 SO 18TH AVE,Longport,NJ,39.30856747,-74.53119472,RES1,3001,,21,NE,2013,2013,3102,3,1,2296.181257,2296.181257,3505,NO,40.28,49.32,3,6.12,6106,113.127094,122.986396,132.65832,139.203537,I,Above,Gable,0,5701,,44.80056217,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18748,NJBF000052636,3021 PACIFIC AVE,Longport,NJ,39.31615652,-74.52179283,RES1,3001,,20,NE,2015,2015,3102,3,1,1252.57877,1252.57877,3505,NO,50.19,55.38,3,6.46,6106,113.208362,123.060766,132.743082,139.298994,I,Above,Hip,0,5701,,52.78642942,0,0,,,,1,1,,0.03,nav,1,2015,3,, 18749,NJBF000052856,3301 PACIFIC AVE,Longport,NJ,39.317496,-74.5193975,RES1,3001,,19,NE,2004,2004,3102,3,1,1704.529003,1704.529003,3505,NO,42.83,50.55,3,7.22,6106,113.239421,123.08708,132.77153,139.33075,I,Above,Gable,0,5701,,46.68993113,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18750,NJBF000052708,2933 LONGPORT DRIVE,Longport,NJ,39.31665907,-74.52417,RES1,3001,,18,NE,1952,1952,3102,2,1,1902.168611,1902.168611,3505,NO,35.83,47.1,3,-2.93,6106,113.149372,123.013327,132.694818,139.244999,I,Above,Gable,0,5701,,41.46217638,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 18751,NJBF000052549,13 NO OVERBROOK AVE,Longport,NJ,39.3155135,-74.52463317,RES1,3001,,18,NE,1951,1951,3102,2,1,1012.097585,1012.097585,3505,NO,30.67,39.94,3,7.89,6106,113.157232,123.018646,132.699131,139.24983,I,Above,Gable,0,5701,,35.30644431,0,0,,,,1,1,,0.03,nav,1,1951,2,, 18752,NJBF000052079,2500 OBERON AVE,Longport,NJ,39.31280108,-74.52667338,RES1,3001,,21,NE,2004,2004,3102,2,1,1582.317169,1582.317169,3505,NO,43.1,48.15,3,7.67,6106,113.156028,123.014939,132.692454,139.242199,I,Above,Gable,0,5701,,45.6232632,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18753,NJBF000052763,42 SO 33RD AVE,Longport,NJ,39.31695666,-74.51936991,RES1,3001,,18,NE,1950,1950,3102,1,1,1375.481117,1375.481117,3505,NO,9.88,23.82,3,-1.05,6106,113.248295,123.093834,132.777953,139.337887,I,Above,Hip,0,5701,,16.84808137,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18754,NJBF000052836,29 SO YARMOUTH AVE,Longport,NJ,39.31739186,-74.52012353,RES1,3001,,18,NE,1952,1952,3102,1,1,1519.878919,1519.878919,3505,NO,10.84,21.34,3,-2.49,6106,113.225308,123.075559,132.759554,139.317401,I,Above,Hip,0,5701,,16.09184601,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 18755,NJBF000053491,3400 WINCHESTER AVE,Longport,NJ,39.32013776,-74.52066275,RES1,3001,,18,NE,1957,1957,3102,2,1,1718.406091,1718.406091,3505,NO,36.65,47.94,3,6.6,6106,113.171532,123.034169,132.719525,139.27244,I,Above,Flat,0,5701,,42.29830426,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 18756,NJBF000051367,107 SO 13TH AVE,Longport,NJ,39.30560576,-74.5348382,RES1,3001,,20,NE,2006,2006,3103,2,1,2993.272329,2993.272329,3505,NO,42.14,53.1,3,4.38,6106,113.097993,122.958579,132.626154,139.167142,I,Above,Hip,0,5701,,47.61967328,0,0,,,,1,1,,0.03,nav,1,2006,2,, 18757,NJBF000051385,,Longport,NJ,39.30589171,-74.53448642,RES1,3001,,NaN,NE,1969,0,3103,6,1,3730.150603,3730.150603,3505,NO,105.4,117.36,3,6.01,6106,113.100755,122.961248,132.629252,139.170649,I,Above,Flat,0,5701,,111.3804934,0,0,,,,1,1,,0.03,nav,1,1969,6,, 18758,NJBF000051376,,Longport,NJ,39.30571336,-74.53442838,RES1,3001,,NaN,NE,1969,0,3103,6,1,1148.463602,1148.463602,3505,NO,64.16,75.94,3,-0.51,6106,113.104874,122.964398,132.632238,139.173976,I,Above,Flat,0,5701,,70.04663825,0,0,,,,1,1,,0.03,nav,1,1969,6,, 18759,NJBF000051380,,Longport,NJ,39.30582566,-74.53429204,RES1,3001,,NaN,NE,1969,0,3103,6,1,1729.63665,1729.63665,3505,NO,113.34,122.54,3,7.31,6106,113.105903,122.9654,132.633408,139.175301,I,Above,Flat,0,5701,,117.9396552,0,0,,,,1,1,,0.03,nav,1,1969,6,, 18760,NJBF000054137,,Longport,NJ,39.32250385,-74.5220673,RES1,3001,,NaN,NE,1969,0,3102,2,1,1959.081415,1959.081415,3505,NO,32.77,47.01,3,8.9,6106,113.105021,122.982116,132.668003,139.213949,I,Above,Flat,0,5701,,39.89004198,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18761,NJBF000052834,3104 VENTNOR AVE,Longport,NJ,39.3173835,-74.52216,RES1,3001,,18,NE,1949,1949,3102,1,1,1320.803639,1320.803639,3505,NO,13.43,19.91,3,-1.64,6106,113.181484,123.040023,132.722965,139.276522,I,Above,Hip,0,5701,,16.6728232,0,0,,,,1,1,,0.03,nav,1,1949,1,, 18762,NJBF000052476,10 SO MANOR AVE,Longport,NJ,39.31497944,-74.52308195,RES1,3001,,18,NE,1956,1956,3102,1,1,1515.18707,1515.18707,3505,NO,13.39,19.36,3,1.69,6106,113.198911,123.052019,132.732868,139.287533,I,Above,Hip,0,5701,,16.3743039,0,0,,,,1,1,,0.03,nav,1,1956,1,, 18763,NJBF000051469,,Longport,NJ,39.3073775,-74.5308795,RES1,3001,,NaN,NE,1969,0,3102,2,1,3976.588401,3976.588401,3505,NO,22.62,30.51,3,1.54,6106,113.152856,123.006049,132.676965,139.224231,I,Above,Flat,0,5701,,26.56890776,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18764,NJBF000051505,111 SO 17TH AVE,Longport,NJ,39.30776952,-74.531721,RES1,3001,,18,NE,1920,1920,3103,2,1,2090.254353,2090.254353,3505,NO,37.01,51.79,3,7.55,6106,113.128755,122.986757,132.65771,139.202756,I,Above,Hip,0,5701,,44.39880442,0,0,,,,1,1,,0.03,nav,1,1920,2,, 18765,NJBF000052058,2403 OBERON AVE,Longport,NJ,39.31268206,-74.52756539,RES1,3001,,19,NE,2006,2006,3102,3,1,1657.429942,1657.429942,3505,NO,63.61,72.96,3,8.35,6106,113.138839,123.000792,132.677819,139.2258,I,Above,Gable,0,5701,,68.28840467,0,1.2,,,,1,1,,0.03,nav,1,2006,3,, 18766,NJBF000053312,117 NO WOODCREST AVE,Longport,NJ,39.31947371,-74.52367873,RES1,3001,,19,NE,2004,2004,3102,2,1,1650.802529,1650.802529,3505,NO,37.45,46.85,3,7.23,6106,113.116437,122.989056,132.672544,139.219747,I,Above,Gable,0,5701,,42.15150058,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18767,NJBF000053713,109 NO 35TH AVE,Longport,NJ,39.32099467,-74.52060468,RES1,3001,,20,NE,2007,2007,3102,2,1,2152.977039,2152.977039,3505,NO,38.53,45.05,3,-0.1,6106,113.159715,123.025241,132.711094,139.262828,I,Above,Flat,0,5701,,41.79148399,0,0,,,,1,1,,0.03,nav,1,2007,2,, 18768,NJBF000053684,105 NO 35TH AVE,Longport,NJ,39.32087532,-74.52050345,RES1,3001,,18,NE,1955,1955,3102,1,1,1625.726404,1625.726404,3505,NO,13.46,23.87,3,-0.05,6106,113.163756,123.028421,132.714263,139.266409,I,Above,Gable,0,5701,,18.66207836,0,0,,,,1,1,,0.03,nav,1,1955,1,, 18769,NJBF000052592,100 SO 32ND AVE,Longport,NJ,39.31585122,-74.51992974,RES1,3001,,21,NE,1988,1988,3103,3,1,2408.925106,2408.925106,3505,NO,51.99,63.33,3,0.28,6106,113.253265,123.096937,132.780017,139.340114,I,Above,Hip,0,5701,,57.66248884,0,0,,,,1,1,,0.03,nav,1,1988,3,, 18770,NJBF000052826,26 NO 30TH AVE,Longport,NJ,39.317321,-74.5245365,RES1,3001,,20,NE,2007,2007,3102,2,1,1103.512581,1103.512581,3505,NO,30.6,41.3,3,-0.69,6106,113.131213,122.999185,132.680942,139.2294,I,Above,Gable,0,5701,,35.94695063,0,0,,,,1,1,,0.03,nav,1,2007,2,, 18771,NJBF000051676,111 SO 21ST AVE,Longport,NJ,39.30978766,-74.52832515,RES1,3001,,20,NE,1896,1896,3102,3,1,2271.867549,2271.867549,3505,NO,46.15,55.19,3,2.55,6106,113.168506,123.021788,132.696035,139.245858,I,Above,Hip,0,5701,,50.66581215,0,0,,,,1,1,,0.03,nav,1,1896,3,, 18772,NJBF000051636,101 SO 19TH AVE,Longport,NJ,39.30929921,-74.53065676,RES1,3001,,22,NE,1993,1993,3102,3,1,2714.579747,2714.579747,3505,NO,39.05,51.95,3,5.14,6106,113.126776,122.987037,132.659859,139.205345,I,Above,Gable,0,5701,,45.50068773,0,1.2,,,,1,1,,0.03,nav,1,1993,3,, 18773,NJBF000052138,2407 OBERON AVE UNIT B,Longport,NJ,39.31308537,-74.52767061,RES1,3001,,35,NE,1940,1940,3103,5,1,1414.295175,1414.295175,3505,NO,70.54,82.99,3,2.99,6102,113.130214,122.99419,132.671492,139.218735,I,Above,Gable,0,5701,,76.76833221,0,0,,,,1,1,,0.03,nav,1,1940,5,, 18774,NJBF000052193,,Longport,NJ,39.3133401,-74.52605594,RES1,3001,,NaN,NE,1969,0,3102,2,1,1468.285813,1468.285813,3505,NO,37.69,48.74,3,3.71,6106,113.160746,123.019349,132.697566,139.247963,I,Above,Flat,0,5701,,43.21476377,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18775,NJBF000053308,122 NO WOODCREST AVE,Longport,NJ,39.31945467,-74.52412058,RES1,3001,,20,NE,2004,2004,3102,2,1,1177.513781,1177.513781,3505,NO,22.74,31.19,3,-1.78,6106,113.107178,122.98154,132.664809,139.21104,I,Above,Gable,0,5701,,26.96605596,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18776,NJBF000053277,118 NO WOODCREST AVE,Longport,NJ,39.3193575,-74.5240365,RES1,3001,,18,NE,1950,1950,3102,1,1,1002.103716,1002.103716,3505,NO,18.55,28.8,3,5.43,6106,113.110509,122.984158,132.66741,139.213983,I,Above,Gable,0,5701,,23.67223929,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18777,NJBF000053037,4 SO COLGATE AVE,Longport,NJ,39.31836521,-74.5199885,RES1,3001,,18,NE,1950,1950,3102,1,1,1671.533033,1671.533033,3505,NO,13.02,25.36,3,-0.28,6106,113.213295,123.066608,132.751283,139.308153,I,Above,Gable,0,5701,,19.18831232,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18778,NJBF000052382,104 SO 30TH AVE,Longport,NJ,39.31430758,-74.52166985,RES1,3001,,19,NE,1975,1975,3103,2,1,2030.666091,2030.666091,3505,NO,39.61,50.09,3,3.44,6106,113.239721,123.084562,132.765635,139.323974,I,Above,Flat,0,5701,,44.85225211,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 18779,NJBF000051662,110 SO 21ST AVE,Longport,NJ,39.30959664,-74.5288302,RES1,3001,,23,NE,1995,1995,3102,2,1,3711.760095,3711.760095,3507,NO,31.26,41.36,1,0.98,6106,113.16081,123.015268,132.689124,139.238117,I,Above,Flat,0,5701,,36.30840248,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 18780,NJBF000052392,43 SUNSET BLVD.,Longport,NJ,39.31437521,-74.53456671,RES1,3001,,16,NE,1965,1965,3102,2,1,1350.651777,1350.651777,3507,NO,23.14,35.31,1,-0.55,6106,112.962716,122.858848,132.534544,139.064044,I,Above,Gable,0,5701,,29.22598926,0,0,,,,1,1,,0.03,nav,1,1965,2,, 18781,NJBF000052099,12 SUNSET BLVD.,Longport,NJ,39.3128985,-74.53714587,RES1,3001,,NaN,NE,1999,1990,3102,2,1,2818.556129,2818.556129,3507,NO,31.19,44.42,1,0.99,6106,112.931598,122.831503,132.505204,139.030694,I,Above,Flat,0,5701,,37.80676339,0,0,,,,1,1,,0.03,nav,1,1999,2,, 18782,NJBF000052117,14 SUNSET BLVD.,Longport,NJ,39.31296931,-74.53693103,RES1,3001,,19,NE,1999,1999,3102,2,1,1299.512615,1299.512615,3507,NO,24.2,32.08,1,0.07,6106,112.935026,122.834407,132.50823,139.034141,I,Above,Flat,0,5701,,28.14279377,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 18783,NJBF000052262,9 SUNSET BLVD.,Longport,NJ,39.31368379,-74.53594782,RES1,3001,,18,NE,1965,1965,3102,2,1,2583.749012,2583.749012,3507,NO,23.5,38.47,1,-0.3,6106,112.944405,122.843009,132.517719,139.044924,I,Above,Gable,0,5701,,30.98795576,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 18784,NJBF000052128,34 SEAVIEW DRIVE,Longport,NJ,39.31303173,-74.53376209,RES1,3001,,19,NE,1987,1987,3102,3,1,1846.716515,1846.716515,3507,NO,59.54,73.89,1,2.68,6106,113.001238,122.888749,132.563642,139.09712,I,Above,Flat,0,5701,,66.7167769,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 18785,NJBF000052304,7 SUNSET BLVD.,Longport,NJ,39.31386721,-74.53604178,RES1,3001,,19,NE,2008,2008,3102,2,1,2004.498505,2004.498505,3507,NO,24.16,33.78,1,1.5,6106,112.939483,122.839206,132.514034,139.040719,I,Above,Hip,0,5701,,28.96807602,0,0,,,,1,1,,0.03,nav,1,2008,2,, 18786,NJBF000052371,39 SUNSET BLVD.,Longport,NJ,39.31422367,-74.53487332,RES1,3001,,16,NE,1961,1961,3102,2,1,1363.172988,1363.172988,3507,NO,27.47,36.16,1,0.42,6106,112.958614,122.85531,132.530789,139.059779,I,Above,Flat,0,5701,,31.81570242,0,0,,,,1,1,,0.03,nav,1,1961,2,, 18787,NJBF000052363,46 SUNSET BLVD.,Longport,NJ,39.31420509,-74.53403536,RES1,3001,,16,NE,1965,1965,3102,2,1,1813.198443,1813.198443,3507,NO,28.32,41.37,1,2.38,6106,112.976741,122.870116,132.545855,139.076909,I,Above,Gable,0,5701,,34.84407546,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 18788,NJBF000052235,21 SUNSET BLVD.,Longport,NJ,39.31354056,-74.53655555,RES1,3001,,19,NE,1996,1996,3102,3,1,2287.826589,2287.826589,3507,NO,37.4,47.53,1,-0.54,6106,112.933799,122.834135,132.508544,139.034476,I,Above,Gable,0,5701,,42.46263153,0,0,,,,1,1,,0.03,nav,1,1996,3,, 18789,NJBF000053023,3 NO 32ND AVE,Longport,NJ,39.31830476,-74.52175973,RES1,3001,,18,NE,1950,1950,3102,1,1,1270.107899,1270.107899,3505,NO,16.07,29.53,3,1.94,6106,113.175904,123.036272,132.719995,139.273158,I,Above,Gable,0,5701,,22.80331731,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18790,NJBF000051359,1401 BEACH TERRACE,Longport,NJ,39.30548898,-74.5332638,RES1,3001,,19,NE,1947,1947,3103,2,1,2635.164424,2635.164424,3505,NO,31.05,39,3,-2.46,6106,113.132982,122.987251,132.655303,139.199768,I,Above,Flat,0,5701,,35.02514581,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 18791,NJBF000053021,27 NO 31ST AV,Longport,NJ,39.31829814,-74.52328568,RES1,3001,,18,NE,1951,1951,3102,1,1,1028.699936,1028.699936,3505,NO,23.8,35.64,3,7.13,6106,113.143052,123.009642,132.692609,139.242443,I,Above,Gable,0,5701,,29.72062126,0,0,,,,1,1,,0.03,nav,1,1951,1,, 18792,NJBF000053141,17 SO 36TH AVE,Longport,NJ,39.3188777,-74.51774936,RES1,3001,,20,NE,1955,1955,3102,2,1,1434.390015,1434.390015,3505,NO,39.34,49.59,3,6.79,6106,113.253925,123.099889,132.786093,139.346958,I,Above,Flat,0,5701,,44.46887378,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18793,NJBF000051320,118 SO 13TH AVE,Longport,NJ,39.30484724,-74.5345918,RES1,3001,,19,NE,1975,1975,3103,2,1,2157.844063,2157.844063,3505,NO,34.09,43.88,3,7.62,6106,113.115471,122.971943,132.638807,139.181232,I,Above,Flat,0,5701,,38.98811396,0,0,,,,1,1,,0.03,nav,1,1975,2,, 18794,NJBF000051445,,Longport,NJ,39.30665175,-74.53408278,RES1,3001,,NaN,NE,1969,0,3103,5,1,2414.240803,2414.240803,3505,NO,91.65,102.53,3,6.05,6106,113.096936,122.959133,132.628066,139.169404,I,Above,Flat,0,5701,,97.08787515,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18795,NJBF000051693,107 SO 21ST AVE,Longport,NJ,39.30999617,-74.52865601,RES1,3001,,19,NE,1986,1986,3102,2,1,2101.943966,2101.943966,3505,NO,31.25,45.3,3,6.43,6106,113.158157,123.013562,132.68785,139.236745,I,Above,Gable,0,5701,,38.27608124,0,0,,,,1,1,,0.03,nav,1,1986,2,, 18796,NJBF000053972,220 NO 34TH AVE,Longport,NJ,39.32196887,-74.5229149,RES1,3001,,18,NE,1975,1975,3102,1,1,1639.492168,1639.492168,3505,NO,22.33,32.51,3,2.95,6106,113.094759,122.973447,132.658656,139.203565,I,Above,Flat,0,5701,,27.41599524,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18797,NJBF000053047,3213 VENTNOR AVE,Longport,NJ,39.31843313,-74.52114413,RES1,3001,,15,NE,1953,1953,3102,1,1,1268.091472,1268.091472,3505,NO,15.95,23.29,3,2.44,6106,113.18725,123.045568,132.729682,139.283997,I,Above,Hip,0,5701,,19.61882894,0,0,,,,1,1,,0.03,nav,1,1953,1,, 18798,NJBF000053624,124 NO COLGATE AVE,Longport,NJ,39.32065411,-74.52216542,RES1,3001,,18,NE,1950,1950,3102,1,1,794.7859706,794.7859706,3505,NO,18.61,28.19,3,1.65,6106,113.131098,123.001852,132.686735,139.235517,I,Above,Gable,0,5701,,23.39606404,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18799,NJBF000053531,17 NO 35TH AVE,Longport,NJ,39.32028288,-74.51990921,RES1,3001,,18,NE,1950,1950,3102,2,1,1785.635812,1785.635812,3505,NO,27.94,42.48,3,-1.66,6106,113.185663,123.045704,132.731534,139.28588,I,Above,Gable,0,5701,,35.210991,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18800,NJBF000053590,130 NO 33RD AVE,Longport,NJ,39.32052479,-74.52280921,RES1,3001,,20,NE,2017,2017,3102,3,1,903.3749137,903.3749137,3505,NO,47.98,57.63,3,2.21,6106,113.119123,122.992066,132.676564,139.224096,I,Above,Gable,0,5701,,52.80174753,0,0,,,,1,1,,0.03,nav,1,2017,3,, 18801,NJBF000053582,116 NO COLGATE AVE,Longport,NJ,39.32047817,-74.5219977,RES1,3001,,18,NE,1950,1950,3102,1,1,787.8769439,787.8769439,3505,NO,19.84,26.48,3,8.73,6106,113.137408,123.006822,132.691692,139.241126,I,Above,Hip,0,5701,,23.15640463,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18802,NJBF000053597,3212 MONMOUTH AVE,Longport,NJ,39.32056234,-74.52318153,RES1,3001,,20,NE,2005,2005,3102,2,1,1789.605629,1789.605629,3505,NO,30.83,36.69,3,-0.91,6106,113.11048,122.985102,132.669441,139.216065,I,Above,Gable,0,5701,,33.75797756,0,0,,,,1,1,,0.03,nav,1,2005,2,, 18803,NJBF000053498,101 NO COLGATE AVE,Longport,NJ,39.32017036,-74.52123037,RES1,3001,,19,NE,2004,2004,3102,2,1,1572.109167,1572.109167,3505,NO,39.99,50.87,3,6.66,6106,113.158757,123.023859,132.708943,139.260561,I,Above,Hip,0,5701,,45.43356006,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18804,NJBF000053584,15 NO 36TH AVE,Longport,NJ,39.32049098,-74.51928059,RES1,3001,,18,NE,1950,1950,3102,1,1,2237.220357,2237.220357,3505,NO,18.05,32.94,3,-1.29,6106,113.196115,123.054304,132.740583,139.295982,I,Above,Gable,0,5701,,25.49365911,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18805,NJBF000053415,4 NO 36TH AVE,Longport,NJ,39.31985008,-74.51925505,RES1,3001,,18,NE,1950,1950,3102,2,1,1336.278469,1336.278469,3505,NO,39.96,46.37,3,6.25,6106,113.206448,123.062197,132.748133,139.304519,I,Above,Gable,0,5701,,43.16290315,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18806,NJBF000052305,2803 ATLANTIC AVE,Longport,NJ,39.31387508,-74.52420218,RES1,3001,,18,NE,1950,1950,3102,1,1,1663.333921,1663.333921,3505,NO,18.17,30.01,3,3.54,6106,113.19209,123.045412,132.724905,139.278558,I,Above,Hip,0,5701,,24.09381816,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18807,NJBF000051894,2207 ATLANTIC AVE,Longport,NJ,39.31152833,-74.52809629,RES1,3001,,19,NE,1955,1955,3102,2,1,1831.047235,1831.047235,3505,NO,28.45,38.46,3,1.84,6106,113.145757,123.005171,132.681021,139.229284,I,Above,Hip,0,5701,,33.45414375,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 18808,NJBF000051846,,Longport,NJ,39.31117582,-74.52645905,RES1,3001,,NaN,NE,1969,0,3102,2,1,2647.943331,2647.943331,3505,NO,26.79,34.59,3,0.02,6106,113.18625,123.037849,132.714132,139.266236,I,Above,Gable,0,5701,,30.69070712,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18809,NJBF000051857,,Longport,NJ,39.31128539,-74.52657446,RES1,3001,,NaN,NE,1969,0,3102,2,1,2400.322477,2400.322477,3505,NO,36.33,44.63,3,0.46,6106,113.182072,123.034558,132.71088,139.262623,I,Above,Hip,0,5701,,40.48021235,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18810,NJBF000052760,,Longport,NJ,39.31694406,-74.52603878,RES1,3001,,NaN,NE,1969,0,3103,6,1,1773.670904,1773.670904,3505,NO,97.8,103.87,3,-0.88,6106,113.104718,122.977324,132.658151,139.203786,I,Above,Hip,0,5701,,100.8329057,0,0,,,,1,1,,0.03,nav,1,1969,6,, 18811,NJBF000053225,12 NO COLGATE AV,Longport,NJ,39.3191725,-74.520748,RES1,3001,,19,NE,2008,2008,3102,3,1,1217.236329,1217.236329,3505,NO,44.25,53.92,3,-2.3,6106,113.184458,123.043893,132.728653,139.282788,I,Above,Hip,0,5701,,49.08793947,0,0,,,,1,1,,0.03,nav,1,2008,3,, 18812,NJBF000052898,3 SO 32ND AVE,Longport,NJ,39.31769859,-74.52120835,RES1,3001,,19,NE,1947,1947,3102,2,1,1092.901311,1092.901311,3505,NO,35.29,46.6,3,4.77,6106,113.197162,123.053,132.736626,139.291795,I,Above,Gable,0,5701,,40.94478603,0,0,,,,1,1,,0.03,nav,1,1947,2,, 18813,NJBF000053274,20 NO COLGATE AVE,Longport,NJ,39.31934651,-74.52090866,RES1,3001,,18,NE,1952,1952,3102,2,1,973.8190636,973.8190636,3505,NO,31.9,39.06,3,4.46,6106,113.178307,123.039049,132.723828,139.277365,I,Above,Gable,0,5701,,35.47953643,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18814,NJBF000052055,2600 ATLANTIC AVE,Longport,NJ,39.31267472,-74.52520415,RES1,3001,,21,NE,1998,1998,3102,2,1,2859.16345,2859.16345,3505,NO,41.54,50.93,3,7.7,6106,113.18944,123.042043,132.720133,139.273113,I,Above,Hip,0,5701,,46.23809382,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 18815,NJBF000052868,7 N EVERGREEN AVE,Longport,NJ,39.317555,-74.5234535,RES1,3001,,18,NE,1950,1950,3102,1,1,1534.409543,1534.409543,3505,NO,9.73,17.03,3,-1.51,6106,113.15091,123.015374,132.697793,139.248309,I,Above,Gable,0,5701,,13.3793613,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18816,NJBF000052881,3103 VENTNOR AVE,Longport,NJ,39.31762466,-74.522517,RES1,3001,,20,NE,2009,2009,3102,2,1,1763.661513,1763.661513,3505,NO,23.26,32.39,3,-2.56,6106,113.170042,123.030951,132.713871,139.266332,I,Above,Hip,0,5701,,27.82679958,0,0,,,,1,1,,0.03,nav,1,2009,2,, 18817,NJBF000052806,22 NO 30TH AVE,Longport,NJ,39.3172304,-74.52444825,RES1,3001,,20,NE,1986,1986,3102,2,1,1162.765635,1162.765635,3505,NO,21.74,34.3,3,-2.46,6106,113.134521,123.001788,132.683526,139.232307,I,Above,Hip,0,5701,,28.02002956,0,0,,,,1,1,,0.03,nav,1,1986,2,, 18818,NJBF000052351,103 SO PELHAM AVE,Longport,NJ,39.31412009,-74.52246297,RES1,3001,,20,NE,2010,2010,3103,3,1,1689.50338,1689.50338,3505,NO,53.79,62.24,3,7.56,6106,113.225603,123.072909,132.753439,139.310387,I,Above,Flat,0,5701,,58.01355306,0,1.1,,,,1,1,,0.03,nav,1,2010,3,, 18819,NJBF000052759,3001 LONGPORT DRIVE,Longport,NJ,39.31694052,-74.52366188,RES1,3001,,19,NE,1984,1984,3102,2,1,1454.463749,1454.463749,3505,NO,38.09,49.42,3,2.81,6106,113.155937,123.018911,132.700831,139.251737,I,Above,Gable,0,5701,,43.75410381,0,0,,,,1,1,,0.03,nav,1,1984,2,, 18820,NJBF000053024,25 SO 36TH AVE,Longport,NJ,39.31831071,-74.51726575,RES1,3001,,20,NE,2013,2013,3102,3,1,1296.990847,1296.990847,3505,NO,55.61,67.97,3,-2.1,6106,113.273049,123.114944,132.801082,139.363644,I,Above,Gable,0,5701,,61.79168404,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18821,NJBF000053026,3 SO 33RD AVE,Longport,NJ,39.31832536,-74.5202045,RES1,3001,,20,NE,2014,2014,3102,3,1,1150.784474,1150.784474,3505,NO,57.13,71.94,3,2.16,6106,113.209215,123.063272,132.747808,139.304273,I,Above,Gable,0,5701,,64.53388186,0,0,,,,1,1,,0.03,nav,1,2014,3,, 18822,NJBF000053027,105 NO 30TH AVE,Longport,NJ,39.3183335,-74.524973,RES1,3001,,18,NE,1961,1961,3102,2,1,1229.605605,1229.605605,3505,NO,32.42,40.13,3,0.31,6106,113.106096,122.979707,132.661907,139.207911,I,Above,Gable,0,5701,,36.27547703,0,0,,,,1,1,,0.03,nav,1,1961,2,, 18823,NJBF000052974,21 SO 34TH AVE,Longport,NJ,39.318066,-74.5186825,RES1,3001,,20,NE,2014,2014,3102,3,1,1205.402383,1205.402383,3505,NO,33.25,48.15,3,-2.65,6106,113.246138,123.092971,132.778167,139.338146,I,Above,Gable,0,5701,,40.69954578,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 18824,NJBF000053926,209 NO 34TH AVE,Longport,NJ,39.32180282,-74.52227251,RES1,3001,,18,NE,1975,1975,3102,1,1,1705.812134,1705.812134,3505,NO,22.11,35.99,3,2.82,6106,113.111217,122.986626,132.672062,139.218728,I,Above,Gable,0,5701,,29.05133169,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18825,NJBF000053914,212 NO 34TH AVE,Longport,NJ,39.32174506,-74.52270414,RES1,3001,,18,NE,1975,1975,3102,1,1,1743.46096,1743.46096,3505,NO,22.79,36.86,3,4.56,6106,113.102752,122.979743,132.66494,139.210715,I,Above,Gable,0,5701,,29.82360554,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18826,NJBF000053878,210 NO COLGATE AVE,Longport,NJ,39.32162,-74.52305,RES1,3001,,19,NE,1984,1984,3102,2,1,1199.674225,1199.674225,3505,NO,28.87,39.43,3,6.32,6106,113.097156,122.975129,132.660095,139.205284,I,Above,Gable,0,5701,,34.1483135,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 18827,NJBF000052559,3006 PACIFIC AVE,Longport,NJ,39.31557119,-74.52204352,RES1,3001,,18,NE,1950,1950,3102,2,1,1481.436699,1481.436699,3505,NO,38.64,49.91,3,7.02,6106,113.212042,123.06323,132.745016,139.301124,I,Above,Gable,0,5701,,44.2758445,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18828,NJBF000053695,115 NO 34TH AVE,Longport,NJ,39.32091175,-74.52142785,RES1,3001,,19,NE,2014,2014,3102,2,1,942.987576,942.987576,3505,NO,40.46,50.85,3,3.82,6106,113.143131,123.011774,132.697163,139.247194,I,Above,Flat,0,5701,,45.65110285,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 18829,NJBF000053663,113 NO 34TH AVE,Longport,NJ,39.32080156,-74.52130283,RES1,3001,,20,NE,2004,2004,3102,2,1,2227.777913,2227.777913,3505,NO,44.34,53.42,3,7.89,6106,113.14752,123.015242,132.700635,139.251118,I,Above,Gable,0,5701,,48.87892471,0,0,,,,1,1,,0.03,nav,1,2004,2,, 18830,NJBF000052775,26 SO 32ND AVE,Longport,NJ,39.31702808,-74.52104404,RES1,3001,,18,NE,1952,1952,3102,1,1,1227.882369,1227.882369,3505,NO,14.04,24.3,3,-2.72,6106,113.21105,123.063698,132.746977,139.303364,I,Above,Gable,0,5701,,19.16806626,0,0,,,,1,1,,0.03,nav,1,1952,1,, 18831,NJBF000053664,108 NO 35TH AVE,Longport,NJ,39.32080434,-74.5209819,RES1,3001,,18,NE,1950,1950,3102,2,1,1327.444788,1327.444788,3505,NO,33.86,46.84,3,-2.74,6106,113.15445,123.020846,132.706404,139.257598,I,Above,Hip,0,5701,,40.35354521,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 18832,NJBF000053707,3302 MONMOUTH AVE,Longport,NJ,39.32097301,-74.52248587,RES1,3001,,19,NE,1978,1978,3102,2,1,1742.088579,1742.088579,3505,NO,43.68,56.98,3,8.39,6106,113.119265,122.992522,132.67742,139.224967,I,Above,Gable,0,5701,,50.32929396,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 18833,NJBF000053612,3202 SUNSET AVE.,Longport,NJ,39.32059856,-74.5238588,RES1,3001,,21,NE,2002,2002,3102,2,1,2352.713998,2352.713998,3505,NO,25.81,34.42,3,-2.85,6106,113.095257,122.972813,132.656854,139.201868,I,Above,Hip,0,5701,,30.11397276,0,0,,,,1,1,,0.03,nav,1,2002,2,, 18834,NJBF000053608,24 NO 36TH AVE,Longport,NJ,39.32058391,-74.51994252,RES1,3001,,18,NE,1942,1942,3102,2,1,1256.567759,1256.567759,3505,NO,44.18,55.41,3,8.04,6106,113.180338,123.041616,132.727593,139.281415,I,Above,Gable,0,5701,,49.79282765,0,0,,,,1,1,,0.03,nav,1,1942,2,, 18835,NJBF000053650,21 NO 36TH AVE,Longport,NJ,39.32075658,-74.51951856,RES1,3001,,18,NE,1970,1970,3102,2,1,1144.878296,1144.878296,3505,NO,35.72,47.49,3,1.68,6106,113.186902,123.047046,132.733341,139.287827,I,Above,Gable,0,5701,,41.60337078,0,0,,,,1,1,,0.03,nav,1,1970,2,, 18836,NJBF000053524,3402 WINCHESTER AVE,Longport,NJ,39.32025527,-74.52044746,RES1,3001,,18,NE,1948,1948,3102,2,1,1315.248337,1315.248337,3505,NO,31.76,43.54,3,4.45,6106,113.174427,123.036597,132.72213,139.275343,I,Above,Flat,0,5701,,37.65085312,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 18837,NJBF000053480,138 NO 32ND AVE,Longport,NJ,39.32009419,-74.52399674,RES1,3001,,20,NE,1990,1990,3102,2,1,2364.06126,2364.06126,3505,NO,35.64,50.13,3,4.77,6106,113.100026,122.976271,132.659965,139.205475,I,Above,Hip,0,5701,,42.88673826,0,0,,,,1,1,,0.03,nav,1,1990,2,, 18838,NJBF000053397,110 NO YARMOUTH AVE,Longport,NJ,39.31978863,-74.5228732,RES1,3001,,18,NE,1960,1960,3102,1,1,1467.795678,1467.795678,3505,NO,21.6,36.39,3,6.45,6106,113.129024,122.999503,132.683557,139.232094,I,Above,Gable,0,5701,,28.99900198,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 18839,NJBF000053456,3106 MONMOUTH AVE,Longport,NJ,39.32000958,-74.5241952,RES1,3001,,20,NE,1989,1989,3102,3,1,1417.149389,1417.149389,3505,NO,39.26,54.17,3,3.68,6106,113.097036,122.973782,132.657337,139.202527,I,Above,Gable,0,5701,,46.71801348,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 18840,NJBF000053422,130 NO 32ND AVE,Longport,NJ,39.31987481,-74.52379087,RES1,3001,,21,NE,1950,2018,3102,2,1,1544.297516,1544.297516,3505,NO,23.9,36.65,3,1.82,6106,113.107848,122.982426,132.666093,139.212419,I,Above,Hip,0,5701,,30.27657454,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18841,NJBF000051453,,Longport,NJ,39.30675264,-74.53397104,RES1,3001,,NaN,NE,1969,0,3103,5,1,2383.121515,2383.121515,3505,NO,55.13,60.84,3,-1.87,6106,113.097663,122.959867,132.628944,139.170399,I,Above,Hip,0,5701,,57.98533022,0,0,,,,1,1,,0.03,nav,1,1969,5,, 18842,NJBF000052859,29 SO 34TH AVE,Longport,NJ,39.31750479,-74.51813996,RES1,3001,,19,NE,1950,1950,3102,1,1,1589.169701,1589.169701,3505,NO,17.93,28.36,3,-1,6106,113.266466,123.108997,132.794143,139.355914,I,Above,Hip,0,5701,,23.14632427,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18843,NJBF000052860,13 SO 32ND AVE,Longport,NJ,39.31750633,-74.52101612,RES1,3001,,18,NE,1920,1920,3102,2,1,1035.412174,1035.412174,3505,NO,33.61,38.88,3,-2.68,6106,113.204283,123.058612,132.742214,139.298044,I,Above,Gable,0,5701,,36.24446864,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 18844,NJBF000052830,24 SO YARMOUTH AVE,Longport,NJ,39.31735538,-74.52057662,RES1,3001,,19,NE,1952,1952,3102,1,1,1355.072435,1355.072435,3505,NO,18.03,25.82,3,2.53,6106,113.216092,123.068059,132.751792,139.30874,I,Above,Hip,0,5701,,21.92529065,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 18845,NJBF000052837,3 NO EVERGREEN AVE,Longport,NJ,39.317393,-74.5233515,RES1,3001,,19,NE,1972,1972,3102,2,1,1199.23052,1199.23052,3505,NO,40.48,52.54,3,6.93,6106,113.155616,123.019051,132.701414,139.252378,I,Above,Gable,0,5701,,46.51041547,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 18846,NJBF000052839,3310 PACIFIC AVE,Longport,NJ,39.31739878,-74.51885669,RES1,3001,,20,NE,2006,2006,3102,3,1,1848.306156,1848.306156,3505,NO,37.02,48.39,3,5.13,6106,113.252586,123.097669,132.782351,139.342797,I,Above,Gable,0,5701,,42.70188334,0,0,,,,1,1,,0.03,nav,1,2006,3,, 18847,NJBF000052741,44 SO 33RD AVE,Longport,NJ,39.31683548,-74.51926467,RES1,3001,,19,NE,1986,1986,3102,2,1,1134.122136,1134.122136,3505,NO,40.8,49.38,3,6.93,6106,113.252441,123.097095,132.781191,139.341484,I,Above,Gable,0,5701,,45.09053365,0,0,,,,1,1,,0.03,nav,1,1986,2,, 18848,NJBF000052738,,Longport,NJ,39.31681298,-74.52190785,RES1,3001,,NaN,NE,1969,0,3102,2,1,1309.072416,1309.072416,3505,NO,37.36,51.74,3,5.39,6106,113.19573,123.051088,132.733785,139.288627,I,Above,Flat,0,5701,,44.55258967,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18849,NJBF000052769,3016 VENTNOR AVE,Longport,NJ,39.31699163,-74.52279116,RES1,3001,,18,NE,1950,1950,3102,1,1,1679.685683,1679.685683,3505,NO,11.26,21.11,3,-1.54,6106,113.173919,123.033549,132.715924,139.268648,I,Above,Hip,0,5701,,16.1871848,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18850,NJBF000052664,,Longport,NJ,39.31638527,-74.52307441,RES1,3001,,NaN,NE,1969,0,3102,2,1,2538.008428,2538.008428,3505,NO,38.21,49.31,3,7.85,6106,113.177228,123.035696,132.717528,139.270443,I,Above,Hip,0,5701,,43.75948117,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18851,NJBF000052709,3011 DEVON AVE,Longport,NJ,39.316666,-74.52283619,RES1,3001,,18,NE,1956,1956,3102,2,1,1113.209447,1113.209447,3505,NO,23.72,32.63,3,0.26,6106,113.177999,123.036572,132.718709,139.271767,I,Above,Hip,0,5701,,28.17303792,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 18852,NJBF000052336,2902 ATLANTIC AVE,Longport,NJ,39.31403186,-74.52297407,RES1,3001,,18,NE,1938,1938,3103,1,1,1092.697304,1092.697304,3505,NO,23.24,35.27,3,5.84,6106,113.215998,123.065014,132.745224,139.30123,I,Above,Gable,0,5701,,29.25646251,0,1.1,,,,1,1,,0.03,nav,1,1938,1,, 18853,NJBF000052679,3109 PACIFIC AVE,Longport,NJ,39.31647622,-74.52123847,RES1,3001,,20,NE,2008,2008,3102,3,1,1208.933123,1208.933123,3505,NO,43.82,51.02,3,-0.52,6106,113.215391,123.066747,132.749562,139.306237,I,Above,Gable,0,5701,,47.41649326,0,0,,,,1,1,,0.03,nav,1,2008,3,, 18854,NJBF000052643,3210 ATLANTIC AVE,Longport,NJ,39.31619905,-74.519331,RES1,3001,,21,NE,1996,1996,3102,3,1,2037.354635,2037.354635,3505,NO,46.91,58.32,3,8.27,6106,113.260817,123.103358,132.786997,139.347899,I,Above,Flat,0,5701,,52.61149097,0,1.1,,,,1,1,,0.03,nav,1,1996,3,, 18855,NJBF000052219,2703 ATLANTIC AVE,Longport,NJ,39.31345949,-74.52486263,RES1,3001,,18,NE,1945,1945,3102,2,1,1213.313311,1213.313311,3505,NO,24.8,39.38,3,3.76,6106,113.184433,123.038764,132.717626,139.270395,I,Above,Gable,0,5701,,32.09329876,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 18856,NJBF000052148,,Longport,NJ,39.3131275,-74.525517,RES1,3001,,NaN,NE,1969,0,3102,2,1,1345.513892,1345.513892,3505,NO,33.27,45.23,3,-1.07,6106,113.175619,123.031248,132.709548,139.261341,I,Above,Hip,0,5701,,39.24777027,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18857,NJBF000052517,104 SO WOODCREST AVE,Longport,NJ,39.31526071,-74.52014498,RES1,3001,,22,NE,1992,1992,3103,2,1,2164.531729,2164.531729,3505,NO,26.31,35.51,3,3.97,6106,113.257757,123.100071,132.782627,139.34296,I,Above,Flat,0,5701,,30.9080915,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 18858,NJBF000052213,2604 OBERON AVE,Longport,NJ,39.31344038,-74.52590977,RES1,3001,,20,NE,1905,2018,3102,1,1,1069.933897,1069.933897,3505,NO,16.85,31.31,3,-2.37,6106,113.162301,123.020718,132.69908,139.249664,I,Above,Flat,0,5701,,24.0803524,0,0,,,,1,1,,0.03,nav,1,1905,1,, 18859,NJBF000052603,,Longport,NJ,39.31592184,-74.52090352,RES1,3001,,NaN,NE,1969,0,3102,2,1,1864.424693,1864.424693,3505,NO,31.01,42.37,3,4.03,6106,113.231163,123.079065,132.761678,139.319715,I,Above,Flat,0,5701,,36.68981992,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18860,NJBF000052486,25 NO 28TH AVE,Longport,NJ,39.31506495,-74.52576142,RES1,3001,,18,NE,1956,1956,3102,2,1,1309.618912,1309.618912,3505,NO,20.55,27.12,3,-0.91,6106,113.140018,123.004214,132.683858,139.232697,I,Above,Gable,0,5701,,23.83456818,0,0,,,,1,1,,0.03,nav,1,1956,2,, 18861,NJBF000052466,30 NO 28TH AVE,Longport,NJ,39.31489006,-74.52622028,RES1,3001,,45,NE,1967,1967,3102,2,2,1132.452839,1132.452839,3505,NO,36.08,41.1,3,1.37,6106,113.132909,122.998256,132.677566,139.225634,I,Above,Hip,0,5701,,38.59191487,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 18862,NJBF000051414,1303 ATLANTIC AVE,Longport,NJ,39.30632855,-74.53548315,RES1,3001,,21,NE,1990,1990,3103,2,1,3567.869997,3567.869997,3505,NO,34.15,42.73,3,6.45,6106,113.072718,122.93874,132.606831,139.145518,I,Above,Hip,0,5701,,38.44059247,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 18863,NJBF000052227,,Longport,NJ,39.31349301,-74.52711278,RES3D,3001,,NaN,ME,1969,0,3301,2,1,10283.71447,10283.71447,3502,NO,43.3,55.28,5,9.33,6102,113.135717,122.99911,132.676974,139.224909,I,Above,Hip,0,NaN,,49.29072901,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18864,NJBF000052444,2700 SUNSET AV,Longport,NJ,39.31471973,-74.52644493,RES1,3001,,45,NE,1965,1965,3102,2,2,1250.596087,1250.596087,3505,NO,27.18,34.87,3,0.98,6106,113.130748,122.996326,132.675412,139.223211,I,Above,Gable,0,5701,,31.02629353,0,0,,,,1,1,,0.03,nav,1,1965,2,, 18865,NJBF000051722,,Longport,NJ,39.31023927,-74.52721385,RES1,3001,,NaN,NE,1985,0,3102,2,1,5258.851745,5258.851745,3505,NO,30.14,38.48,3,1.71,6106,113.184991,123.035782,132.710919,139.262525,I,Above,Hip,0,5701,,34.30962907,0,0,,,,1,1,,0.03,nav,1,1985,2,, 18866,NJBF000051772,112 SO 23RD AVE,Longport,NJ,39.31065849,-74.52718,RES1,3001,,19,NE,1900,1900,3102,2,1,1669.803816,1669.803816,3505,NO,32.01,46.89,3,2.91,6106,113.179071,123.031415,132.70693,139.258135,I,Above,Hip,0,5701,,39.44943342,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 18867,NJBF000051795,108 SO 23RD AVE,Longport,NJ,39.31083096,-74.52744229,RES1,3001,,18,NE,1955,1955,3102,2,1,1748.993914,1748.993914,3505,NO,34.26,41.93,3,2.61,6106,113.170744,123.024805,132.700352,139.250815,I,Above,Hip,0,5701,,38.09559646,0,0,,,,1,1,,0.03,nav,1,1955,2,, 18868,NJBF000052003,2502 ATLANTIC AVE,Longport,NJ,39.31232648,-74.52582177,RES1,3001,,18,NE,1960,1960,3102,2,1,1029.504187,1029.504187,3505,NO,30.33,41.84,3,-2.33,6106,113.181709,123.035378,132.712901,139.265003,I,Above,Hip,0,5701,,36.08678301,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 18869,NJBF000051603,116 SO 20TH AVE,Longport,NJ,39.30891269,-74.52945519,RES1,3001,,21,NE,2006,2006,3102,2,1,2748.959818,2748.959818,3505,NO,37.47,44.23,3,4.44,6106,113.158445,123.01252,132.685487,139.233962,I,Above,Hip,0,5701,,40.84966048,0,0,,,,1,1,,0.03,nav,1,2006,2,, 18870,NJBF000051750,,Longport,NJ,39.31048908,-74.52763299,RES1,3001,,NaN,NE,1969,0,3102,2,1,2847.976174,2847.976174,3505,NO,27.54,40.1,3,-1.1,6106,113.172098,123.025527,132.700694,139.251153,I,Above,Flat,0,5701,,33.82200345,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18871,NJBF000051515,114 SO 18TH AVE,Longport,NJ,39.30788855,-74.5310835,RES1,3001,,19,NE,1951,1951,3102,2,1,1391.323443,1391.323443,3505,NO,29.09,39.68,3,-2.45,6106,113.140338,122.996416,132.667742,139.213995,I,Above,Hip,0,5701,,34.38336125,0,0,,,,1,1,,0.03,nav,1,1951,2,, 18872,NJBF000051577,112 SO 19TH AVE,Longport,NJ,39.3085663,-74.53042506,RES1,3001,,19,NE,1981,1981,3102,2,1,2212.132327,2212.132327,3507,NO,35.91,45.71,1,2,6106,113.143422,122.999786,132.672024,139.218871,I,Above,Gable,0,5701,,40.80993031,0,0,,,,1,1,,0.03,nav,1,1981,2,, 18873,NJBF000051619,2005 BEACH TERRACE,Longport,NJ,39.30912487,-74.52860197,RES1,3001,,21,NE,1989,1989,3102,3,1,2222.174603,2222.174603,3505,NO,60.93,67.2,3,4.52,6106,113.173176,123.024835,132.698364,139.248364,I,Above,Flat,0,5701,,64.06721939,0,0,,,,1,1,,0.03,nav,1,1989,3,, 18874,NJBF000051610,114 SO 20TH AVE,Longport,NJ,39.30901543,-74.52957635,RES1,3001,,19,NE,1971,1971,3102,2,1,2660.902568,2660.902568,3505,NO,27.42,32.57,3,-1.95,6106,113.154249,123.009204,132.682214,139.23032,I,Above,Hip,0,5701,,29.99255214,0,0,,,,1,1,,0.03,nav,1,1971,2,, 18875,NJBF000051351,113 SO 13TH AVE,Longport,NJ,39.30534841,-74.53445844,RES1,3001,,20,NE,1970,1970,3103,3,1,1845.281786,1845.281786,3505,NO,65.51,75.97,3,7.65,6106,113.110159,122.968254,132.6357,139.177813,I,Above,Flat,0,5701,,70.7390888,0,0,,,,1,1,,0.03,nav,1,1970,3,, 18876,NJBF000051403,116 SO 15TH AV,Longport,NJ,39.30617991,-74.5333194,RES1,3001,,21,NE,2013,2013,3103,3,1,2148.275595,2148.275595,3505,NO,50.76,63.05,3,8.52,6106,113.120653,122.978025,132.646769,139.19031,I,Above,Hip,0,5701,,56.90862046,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18877,NJBF000051569,114 SO 19TH AVE,Longport,NJ,39.30843638,-74.53032209,RES1,3001,,21,NE,1990,1990,3102,2,1,2573.54429,2573.54429,3505,NO,30.59,44.16,3,1.28,6106,113.147686,123.003123,132.675281,139.222495,I,Above,Gable,0,5701,,37.37499641,0,0,,,,1,1,,0.03,nav,1,1990,2,, 18878,NJBF000051405,107 SO 14TH AV,Longport,NJ,39.30619787,-74.53403953,RES1,3001,,22,NE,1970,2018,3103,3,1,1693.967335,1693.967335,3505,NO,45.17,56.46,3,-2.38,6106,113.105183,122.965312,132.633799,139.175782,I,Above,Gable,0,5701,,50.81322849,0,1.1,,,,1,1,,0.03,nav,1,1970,3,, 18879,NJBF000051361,109 SO 13TH AVE,Longport,NJ,39.30552305,-74.53470973,RES1,3001,,19,NE,1895,1895,3103,2,1,3126.469241,3126.469241,3505,NO,29.16,38.75,3,6,6106,113.102027,122.961791,132.629326,139.17069,I,Above,Gable,0,5701,,33.953627,0,0,,,,1,1,,0.03,nav,1,1895,2,, 18880,NJBF000051334,114 SO 13TH AVE,Longport,NJ,39.3050515,-74.5348295,RES1,3001,,19,NE,1960,1960,3103,6,1,1641.643304,1641.643304,3505,NO,104.46,119,3,5.55,6106,113.107164,122.965374,132.632366,139.174043,I,Above,Flat,0,5701,,111.7319585,0,0,,,,1,1,,0.03,nav,1,1960,6,, 18881,NJBF000051368,1403 BEACH TERRACE,Longport,NJ,39.3056122,-74.5331387,RES1,3001,,22,NE,2004,2004,3103,3,1,4390.819749,4390.819749,3505,NO,38.5,53.07,3,-2.09,6106,113.133624,122.987944,132.656173,139.200758,I,Above,Flat,0,5701,,45.78123593,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18882,NJBF000051371,1201 ATLANTIC AVE,Longport,NJ,39.30564436,-74.53639627,RES1,3001,,22,NE,1978,1978,3103,2,1,3065.092552,3065.092552,3505,NO,44.06,49.99,3,5.3,6106,113.064675,122.931145,132.5982,139.135745,I,Above,Gable,0,5701,,47.02559578,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 18883,NJBF000051474,,Longport,NJ,39.3074538,-74.53395102,RES3D,3001,,NaN,E,1969,0,3303,4,1,8480.701842,8480.701842,3507,NO,61.03,71.11,1,0.83,6106,113.086763,122.951833,132.621617,139.162248,I,Above,Flat,0,NaN,,66.06789984,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18884,NJBF000051489,,Longport,NJ,39.30757436,-74.5333692,RES3D,3001,,NaN,E,1969,0,3303,4,1,26606.63402,26606.63402,3507,NO,44.59,49.88,1,1.71,6106,113.097102,122.960495,132.630616,139.172365,I,Above,Flat,0,NaN,,47.23754576,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18885,NJBF000051287,2 POINT DRIVE,Longport,NJ,39.30429655,-74.53674187,RES1,3001,,22,NE,2009,2009,3103,3,1,2052.43945,2052.43945,3505,NO,58.79,66.88,3,5.15,6106,113.079356,122.941346,132.606829,139.145313,I,Above,Hip,0,5701,,62.8365741,0,0,,,,1,1,,0.03,nav,1,2009,3,, 18886,NJBF000051296,116 SO 12TH AVE,Longport,NJ,39.30447198,-74.53558383,RES1,3001,,21,NE,2015,2015,3103,3,1,2028.152594,2028.152594,3505,NO,46.64,58.73,3,7.41,6106,113.100755,122.959275,132.625366,139.166131,I,Above,Hip,0,5701,,52.68956221,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 18887,NJBF000051304,105 SO 11TH AVE,Longport,NJ,39.30459534,-74.53643321,RES1,3001,,22,NE,2004,2004,3103,3,1,3085.694017,3085.694017,3505,NO,65.92,75.8,3,8.63,6106,113.080968,122.943107,132.609025,139.147809,I,Above,Hip,0,5701,,70.8586494,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18888,NJBF000051335,1106 ATLANTIC AVE,Longport,NJ,39.3050519,-74.53635256,RES1,3001,,21,NE,2004,2004,3103,2,1,2297.263632,2297.263632,3505,NO,34.37,41.76,3,0.23,6106,113.075205,122.938999,132.605438,139.143827,I,Above,Flat,0,5701,,38.06876992,0,1.2,,,,1,1,,0.03,nav,1,2004,2,, 18889,NJBF000053389,136 NO WOODCREST AVE,Longport,NJ,39.31973917,-74.5244066,RES1,3001,,18,NE,1960,1960,3102,1,1,1194.194022,1194.194022,3505,NO,13.82,20.29,3,2.62,6106,113.096623,122.973226,132.656528,139.201661,I,Above,Gable,0,5701,,17.0542813,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18890,NJBF000051383,1205 ATLANTIC AVE,Longport,NJ,39.30585836,-74.53607112,RES1,3001,,22,NE,1997,1997,3103,3,1,3825.422721,3825.422721,3505,NO,48.52,59.69,3,4.44,6106,113.068015,122.934204,132.601598,139.139587,I,Above,Flat,0,5701,,54.10543921,0,1.2,,,,1,1,,0.03,nav,1,1997,3,, 18891,NJBF000051333,1301 BEACH TERRACE,Longport,NJ,39.30504187,-74.53382042,RES1,3001,,21,NE,2001,2001,3103,2,1,3754.915168,3754.915168,3505,NO,26.02,31.23,3,2.45,6106,113.128525,122.982974,132.650341,139.194161,I,Above,Flat,0,5701,,28.62472449,0,0,,,,1,1,,0.03,nav,1,2001,2,, 18892,NJBF000052934,3311 PACIFIC AVE,Longport,NJ,39.317863,-74.51900558,RES1,3001,,20,NE,2007,2006,3102,2,1,1936.954602,1936.954602,3505,NO,19.94,32.73,3,-2.35,6106,113.242241,123.089656,132.774549,139.334116,I,Above,Flat,0,5701,,26.33727356,0,0,,,,1,1,,0.03,nav,1,2007,2,, 18893,NJBF000051386,113 S 14TH AVE,Longport,NJ,39.30590997,-74.53370385,RES1,3001,,17,NE,1970,1970,3103,2,1,1812.589526,1812.589526,3505,NO,31.62,43.26,3,7.1,6106,113.116913,122.974584,132.642902,139.185947,I,Above,Gable,0,5701,,37.43710506,0,0,,,,1,1,,0.03,nav,1,1970,2,, 18894,NJBF000051289,3 POINT DRIVE,Longport,NJ,39.304342,-74.53695341,RES1,3001,,21,NE,1983,1983,3103,2,1,1570.85822,1570.85822,3505,NO,26.16,40.65,3,-0.73,6106,113.074208,122.937155,132.602613,139.140582,I,Above,Flat,0,5701,,33.40869539,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 18895,NJBF000051275,117 SO 11TH AVE,Longport,NJ,39.304027,-74.5355595,RES1,3001,,19,NE,1888,1888,3103,3,1,688.2043951,688.2043951,3505,NO,63.22,68.65,3,8.04,6106,113.108498,122.965039,132.630653,139.172004,I,Above,Hip,0,5701,,65.93849658,0,1.2,,,,1,1,,0.03,nav,1,1888,3,, 18896,NJBF000052085,2407 OBERON AV,Longport,NJ,39.31283053,-74.52740078,RES1,3001,,20,NE,2007,2007,3102,3,1,1429.142788,1429.142788,3505,NO,64.8,79.28,3,6.72,6106,113.139992,123.001893,132.67911,139.227258,I,Above,Hip,0,5701,,72.03752955,0,0,,,,1,1,,0.03,nav,1,2007,3,, 18897,NJBF000052910,12 NO 31ST AVE,Longport,NJ,39.31775349,-74.5233471,RES1,3001,,18,NE,1952,1952,3102,2,1,1294.994824,1294.994824,3505,NO,25.81,32.92,3,0.5,6106,113.150155,123.014934,132.697531,139.248004,I,Above,Gable,0,5701,,29.36600571,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18898,NJBF000054323,,Longport,NJ,39.32307194,-74.52274819,RES1,3001,,NaN,NE,1969,0,3103,6,1,3416.077057,3416.077057,3505,NO,69.4,76.63,3,6.28,6102,113.081601,122.963598,132.649426,139.192794,I,Above,Gable,0,5701,,73.01828861,0,0,,,,1,1,,0.03,nav,1,1969,6,, 18899,NJBF000052445,405 LONGPORT BLVD.,Longport,NJ,39.31472358,-74.5357422,RES1,3001,,19,NE,2005,2006,3102,2,1,3244.551656,3244.551656,3507,NO,36.74,42.9,1,0.74,6106,112.932168,122.834276,132.509873,139.035927,I,Above,Gable,0,5701,,39.81860454,0,0,,,,1,1,,0.03,nav,1,2005,2,, 18900,NJBF000052418,15 SEAVIEW DRIVE,Longport,NJ,39.31454597,-74.53306529,RES1,3001,,17,NE,1974,1974,3102,2,1,1817.57184,1817.57184,3507,NO,39.15,49,1,0.36,6106,112.991975,122.882971,132.559305,139.092169,I,Above,Hip,0,5701,,44.07387543,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 18901,NJBF000052546,20 SEAVIEW DRIVE,Longport,NJ,39.31547473,-74.53184733,RES1,3001,,20,NE,2005,2005,3102,2,1,11151.00893,11151.00893,3507,NO,25.18,33.97,1,2.79,6110,113.003248,122.893227,132.570691,139.105041,I,Above,Hip,0,5701,,29.57569424,0,0,,,,1,1,,0.35,nav,1,2005,2,, 18902,NJBF000052511,20 SEAVIEW DRIVE,Longport,NJ,39.31523378,-74.5322827,RES1,3001,,20,NE,2005,2005,3102,2,1,4634.481091,4634.481091,3507,NO,31.11,40.48,1,1.71,6110,112.997749,122.888471,132.5656,139.09928,I,Above,Gable,0,5701,,35.79439537,0,0,,,,1,1,,0.35,nav,1,2005,2,, 18903,NJBF000052494,1 SEAVIEW DRIVE,Longport,NJ,39.31514149,-74.53423064,RES1,3001,,17,NE,1965,1965,3102,2,1,2106.888344,2106.888344,3507,NO,22.52,28.12,1,-0.77,6106,112.957683,122.855643,132.532037,139.061147,I,Above,Flat,0,5701,,25.31933153,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 18904,NJBF000052244,33 SEAVIEW DRIVE,Longport,NJ,39.31359222,-74.53404926,RES1,3001,,17,NE,1974,1974,3102,2,1,1659.634485,1659.634485,3507,NO,25.27,31.48,1,-0.41,6106,112.986207,122.877125,132.552374,139.084331,I,Above,Flat,0,5701,,28.37475851,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 18905,NJBF000052190,39 SEAVIEW DRIVE,Longport,NJ,39.3133305,-74.53458,RES1,3001,,17,NE,1974,1974,3102,2,1,1392.505286,1392.505286,3507,NO,32.88,44.43,1,1.55,6106,112.979104,122.870991,132.545852,139.076931,I,Above,Gable,0,5701,,38.65469228,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 18906,NJBF000052254,34 SUNSET BLVD.,Longport,NJ,39.31364672,-74.53511682,RES1,3001,,18,NE,1967,1967,3102,1,1,2195.91139,2195.91139,3507,NO,13.77,21.35,1,0.69,6106,112.962637,122.857897,132.532839,139.062133,I,Above,Hip,0,5701,,17.55957474,0,1.2,,,,1,1,,0.03,nav,1,1967,1,, 18907,NJBF000052923,11 SO YARMOUTH AVE,Longport,NJ,39.31780977,-74.52051924,RES1,3001,,20,NE,2008,2008,3102,3,1,1203.190814,1203.190814,3505,NO,50.61,59.76,3,3.26,6106,113.21034,123.063771,132.747823,139.304305,I,Above,Hip,0,5701,,55.1882973,0,0,,,,1,1,,0.03,nav,1,2008,3,, 18908,NJBF000054225,,Longport,NJ,39.3227954,-74.52148101,RES1,3001,,NaN,NE,1969,0,3102,2,1,2178.574896,2178.574896,3505,NO,32.99,40.43,3,8.19,6106,113.113334,122.989027,132.675344,139.222132,I,Above,Flat,0,5701,,36.71297998,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18909,NJBF000053086,3 NO YARMOUTH AVE,Longport,NJ,39.3186071,-74.52129811,RES1,3001,,NaN,NE,1960,1960,3102,1,1,1048.426133,1048.426133,3505,NO,17.73,29.74,3,4.11,6106,113.181246,123.040845,132.724985,139.278728,I,Above,Gable,0,5701,,23.7337036,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 18910,NJBF000051451,,Longport,NJ,39.30669496,-74.53242914,RES3D,3001,,NaN,E,1969,0,3303,4,1,2209.727644,2209.727644,3507,NO,65.21,77.17,1,-0.74,6106,113.131102,122.987301,132.656914,139.201729,I,Above,Flat,0,NaN,,71.1922243,0,0,,,,1,1,,0.03,nav,1,1969,4,, 18911,NJBF000054140,228 NO 35TH AVE,Longport,NJ,39.32250716,-74.52258658,RES1,3001,,19,NE,1976,1976,3102,2,1,2075.663458,2075.663458,3505,NO,22.24,28.75,3,0.88,6106,113.093684,122.972963,132.658597,139.203338,I,Above,Gable,0,5701,,25.49668892,0,0,,,,1,1,,0.03,nav,1,1976,2,, 18912,NJBF000053076,108 NO EVERGREEN AVE,Longport,NJ,39.31856097,-74.52501045,RES1,3001,,19,NE,1970,1970,3102,2,1,4315.884444,4315.884444,3505,NO,40.84,48.19,3,1.87,6106,113.101785,122.976409,132.658734,139.204311,I,Above,Gable,0,5701,,44.51948177,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 18913,NJBF000054019,3301 AMHERST AVE,Longport,NJ,39.32212444,-74.52382247,RES1,3001,,18,NE,1940,1940,3103,1,1,1840.713478,1840.713478,3505,NO,24.5,34.09,3,8.96,6106,113.072723,122.955752,132.640612,139.183144,I,Above,Gable,0,5701,,29.29658152,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 18914,NJBF000053087,7 SO 34TH AVE,Longport,NJ,39.31861317,-74.51922559,RES1,3001,,18,NE,1960,1960,3102,1,1,1594.605379,1594.605379,3505,NO,22.73,28.95,3,4.41,6106,113.225984,123.077076,132.762308,139.320452,I,Above,Gable,0,5701,,25.84204681,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 18915,NJBF000052909,3311 PACIFIC AVE,Longport,NJ,39.31774942,-74.51892754,RES1,3001,,20,NE,2006,2006,3102,2,1,1909.387693,1909.387693,3505,NO,35.96,46.74,3,-1.5,6106,113.245677,123.09235,132.777214,139.337084,I,Above,Gable,0,5701,,41.34924607,0,0,,,,1,1,,0.03,nav,1,2006,2,, 18916,NJBF000052627,2909 LONGPORT DRIVE,Longport,NJ,39.31608095,-74.52516363,RES1,3001,,18,NE,1950,1950,3102,1,1,1383.745078,1383.745078,3505,NO,15.62,23.41,3,2.1,6106,113.136978,123.002723,132.683358,139.232146,I,Above,Gable,0,5701,,19.51545557,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18917,NJBF000052628,26 NO OVERBROOK AVE,Longport,NJ,39.31609417,-74.52566055,RES1,3001,,18,NE,1952,1952,3102,1,1,1947.660945,1947.660945,3505,NO,16.96,31.2,3,-1.22,6106,113.126092,122.993888,132.674305,139.221981,I,Above,Flat,0,5701,,24.08115018,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 18918,NJBF000052930,26 SO 35TH AV,Longport,NJ,39.31785047,-74.51807875,RES1,3001,,18,NE,1950,1950,3102,2,1,1189.437922,1189.437922,3505,NO,31.45,37.24,3,0.1,6106,113.262498,123.106051,132.791448,139.352926,I,Above,Hip,0,5701,,34.34329522,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18919,NJBF000052106,4 SO 26TH AVE,Longport,NJ,39.31292254,-74.52619482,RES1,3001,,18,NE,1940,1940,3102,1,1,1317.610464,1317.610464,3505,NO,14.28,23.63,3,1.44,6106,113.16433,123.021836,132.699664,139.250274,I,Above,Gable,0,5701,,18.95671516,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 18920,NJBF000052892,3403 ATLANTIC AVE,Longport,NJ,39.31766364,-74.5180015,RES1,3001,,21,NE,2016,2016,3102,3,1,2010.679635,2010.679635,3505,NO,52.7,67.51,3,-2.98,6106,113.267036,123.109582,132.794906,139.356768,I,Above,Hip,0,5701,,60.10549702,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 18921,NJBF000052802,3311 ATLANTIC AVE,Longport,NJ,39.31721698,-74.5186853,RES1,3001,,20,NE,2007,2007,3102,3,1,2051.033516,2051.033516,3505,NO,60,65.65,3,1.71,6106,113.259101,123.102802,132.787462,139.348476,I,Above,Gable,0,5701,,62.82655668,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 18922,NJBF000053003,3001 WINCHESTER AVE,Longport,NJ,39.31821455,-74.52480195,RES1,3001,,19,NE,2017,2017,3102,2,1,2389.323695,2389.323695,3505,NO,31.83,42.03,3,0,6106,113.111626,122.984087,132.666292,139.212859,I,Above,Hip,0,5701,,36.93189377,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 18923,NJBF000053268,111 NO WOODCREST AVE,Longport,NJ,39.31933469,-74.52358149,RES1,3001,,18,NE,1950,1950,3102,2,1,1122.172436,1122.172436,3505,NO,40.54,47.98,3,4.58,6106,113.120695,122.992391,132.675843,139.223481,I,Above,Gable,0,5701,,44.25902881,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18924,NJBF000053249,16 NO COLGATE AV,Longport,NJ,39.31925463,-74.52083009,RES1,3001,,18,NE,1952,1952,3102,2,1,866.5029778,866.5029778,3505,NO,28.39,34,3,6.28,6106,113.181426,123.041503,132.726269,139.280109,I,Above,Gable,0,5701,,31.19403818,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18925,NJBF000053702,112 NO 35TH AVE,Longport,NJ,39.3209591,-74.52110719,RES1,3001,,18,NE,1940,1940,3102,1,1,1209.379228,1209.379228,3505,NO,15.54,25.88,3,-1.66,6106,113.149375,123.016856,132.702433,139.253107,I,Above,Gable,0,5701,,20.70812634,0,0,,,,1,1,,0.03,nav,1,1940,1,, 18926,NJBF000052867,23 NO 30TH AVE,Longport,NJ,39.31755104,-74.52419013,RES1,3001,,20,NE,2004,2004,3102,1,1,1254.201977,1254.201977,3505,NO,12.19,26.41,3,-2.89,6106,113.135103,123.002547,132.684615,139.233514,I,Above,Gable,0,5701,,19.29830626,0,1.1,,,,1,1,,0.03,nav,1,2004,1,, 18927,NJBF000054106,212 NO 36TH AVE,Longport,NJ,39.32239083,-74.52160444,RES1,3001,,18,NE,1975,1975,3102,1,1,1619.346407,1619.346407,3505,NO,16.27,26.71,3,-2.36,6106,113.116794,122.991545,132.677605,139.224807,I,Above,Gable,0,5701,,21.49379862,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18928,NJBF000052814,11 NO 30TH AVE,Longport,NJ,39.31727895,-74.52394049,RES1,3001,,20,NE,1991,1991,3102,3,1,1559.393276,1559.393276,3505,NO,49.46,60.97,3,-2.92,6106,113.144707,123.010098,132.692107,139.24194,I,Above,Gable,0,5701,,55.21543795,0,0,,,,1,1,,0.03,nav,1,1991,3,, 18929,NJBF000052849,28 SO 33RD AVE,Longport,NJ,39.31745647,-74.51993852,RES1,3001,,21,NE,1955,2018,3102,3,1,1444.239704,1444.239704,3505,NO,57.89,65.11,3,-0.33,6106,113.228321,123.078053,132.762187,139.320337,I,Above,Hip,0,5701,,61.49989823,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 18930,NJBF000052278,105 SO 29TH AVE,Longport,NJ,39.3137619,-74.52299506,RES1,3001,,NaN,NE,1960,1960,3103,1,1,1363.598387,1363.598387,3505,NO,13.11,24.27,3,-2.52,6106,113.219763,123.067817,132.747814,139.304086,I,Above,Flat,0,5701,,18.68869421,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18931,NJBF000053951,201 NO 35TH AVE,Longport,NJ,39.32189367,-74.52149275,RES1,3001,,18,NE,1960,1960,3102,1,1,1155.52096,1155.52096,3505,NO,19.62,32,3,1.6,6106,113.126759,122.999248,132.685116,139.233408,I,Above,Gable,0,5701,,25.80920862,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18932,NJBF000052521,3 NO OVERBROOK AVE,Longport,NJ,39.31529387,-74.52444457,RES1,3001,,18,NE,1951,1951,3102,1,1,1247.902271,1247.902271,3505,NO,16.71,29.71,3,0.05,6106,113.164703,123.024511,132.704928,139.256315,I,Above,Gable,0,5701,,23.21116463,0,0,,,,1,1,,0.03,nav,1,1951,1,, 18933,NJBF000053118,3002 SUNSET AVE,Longport,NJ,39.31875964,-74.52503231,RES1,3001,,18,NE,1955,1955,3102,1,1,1566.731731,1566.731731,3505,NO,22.33,36.2,3,8.5,6106,113.098233,122.973702,132.656138,139.201363,I,Above,Hip,0,5701,,29.26688551,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 18934,NJBF000052381,,Longport,NJ,39.31430681,-74.52423156,RES1,3001,,NaN,NE,1969,0,3102,2,1,1865.13105,1865.13105,3505,NO,36.77,48.05,3,5.63,6106,113.18469,123.039814,132.719615,139.272686,I,Above,Flat,0,5701,,42.40905865,0,0,,,,1,1,,0.03,nav,1,1969,2,, 18935,NJBF000053781,212 NO 33RD AVE,Longport,NJ,39.32125966,-74.52353395,RES1,3001,,20,NE,1988,1988,3102,2,1,1263.145121,1263.145121,3505,NO,42.89,50.31,3,3.96,6106,113.092168,122.970826,132.655375,139.20005,I,Above,Flat,0,5701,,46.60122914,0,0,,,,1,1,,0.03,nav,1,1988,2,, 18936,NJBF000052772,45 NO PELHAM AVE,Longport,NJ,39.31701598,-74.52530385,RES1,3001,,19,NE,2017,2017,3102,1,1,1099.70202,1099.70202,3505,NO,15.48,26.18,3,-1.13,6106,113.119412,122.989326,132.67053,139.217711,I,Above,Gable,0,5701,,20.83015169,0,1.1,,,,1,1,,0.03,nav,1,2017,1,, 18937,NJBF000052556,42 NO 29TH AVE,Longport,NJ,39.31555046,-74.52587175,RES1,3001,,20,NE,2015,2015,3102,3,1,1450.469462,1450.469462,3505,NO,53.5,64.91,3,-0.58,6106,113.130052,122.996582,132.676524,139.224474,I,Above,Hip,0,5701,,59.20801021,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 18938,NJBF000053123,19 SO 36TH AVE,Longport,NJ,39.31877689,-74.51764582,RES1,3001,,21,NE,2011,2011,3102,2,1,1719.168828,1719.168828,3505,NO,41.08,48.35,3,5.69,6106,113.257699,123.102868,132.78907,139.350276,I,Above,Gable,0,5701,,44.71262438,0,0.1,,,,1,1,,0.03,nav,1,2011,2,, 18939,NJBF000052420,8 SO PELHAM AVE,Longport,NJ,39.31456097,-74.52343627,RES1,3001,,20,NE,2013,2013,3102,1,1,1531.995287,1531.995287,3505,NO,19.27,32.82,3,7.73,6106,113.197818,123.050736,132.731108,139.285539,I,Above,Hip,0,5701,,26.04698988,0,1.1,,,,1,1,,0.03,nav,1,2013,1,, 18940,NJBF000054078,3305 AMHERST AVE,Longport,NJ,39.3223155,-74.52356883,RES1,3001,,22,NE,2014,2014,3103,3,1,2477.425175,2477.425175,3505,NO,49.27,59.81,3,5.24,6106,113.075281,122.95796,132.643033,139.185822,I,Above,Gable,0,5701,,54.54117816,0,1.2,,,,1,1,,0.03,nav,1,2014,3,, 18941,NJBF000052470,2710 SUNSET AVE,Longport,NJ,39.3149378,-74.52636331,RES1,3001,,18,NE,1970,1970,3102,2,1,3041.202331,3041.202331,3505,NO,36.96,51.05,3,1.99,6106,113.12909,122.995196,132.674477,139.222168,I,Above,Flat,0,5701,,44.00367232,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 18942,NJBF000053353,6 NO 35TH AVE,Longport,NJ,39.31961459,-74.51983494,RES1,3001,,20,NE,2013,2013,3102,3,1,1214.647808,1214.647808,3505,NO,35.64,42.69,3,-1.33,6106,113.197466,123.054757,132.74025,139.295726,I,Above,Gable,0,5701,,39.16519205,0,0,,,,1,1,,0.03,nav,1,2013,3,, 18943,NJBF000051299,107 SO 11TH AVE,Longport,NJ,39.30450236,-74.5362974,RES1,3001,,21,NE,2001,2001,3103,3,1,3126.430716,3126.430716,3505,NO,54.09,66.5,3,5.48,6106,113.08533,122.946578,132.612443,139.151638,I,Above,Hip,0,5701,,60.29560514,0,0,,,,1,1,,0.03,nav,1,2001,3,, 18944,NJBF000051759,102 SO 22ND AVE,Longport,NJ,39.31056604,-74.52860539,RES1,3001,,20,NE,2009,2009,3102,2,1,3184.320585,3184.320585,3505,NO,26.47,32.04,3,5.37,6106,113.150178,123.007695,132.682504,139.230838,I,Above,Hip,0,5701,,29.25704736,0,0,,,,1,1,,0.03,nav,1,2009,2,, 18945,NJBF000052903,3105 VENTNOR AVE,Longport,NJ,39.31771276,-74.52242729,RES1,3001,,18,NE,1945,1945,3102,2,1,1711.200848,1711.200848,3505,NO,29.15,42.45,3,6.44,6106,113.170625,123.031499,132.71452,139.267055,I,Above,Gable,0,5701,,35.79906219,0,0,,,,1,1,,0.03,nav,1,1945,2,, 18946,NJBF000051276,115 SO 11TH AVE,Longport,NJ,39.3040968,-74.53583383,RES1,3001,,19,NE,1979,1979,3103,3,1,2894.7212,2894.7212,3505,NO,48.69,62.56,3,0.72,6106,113.10162,122.959457,132.625047,139.165731,I,Above,Flat,0,5701,,55.62832228,0,1.2,,,,1,1,,0.03,nav,1,1979,3,, 18947,NJBF000052671,3201 ATLANTIC AVE,Longport,NJ,39.31644141,-74.51999335,RES1,3001,,19,NE,2009,2009,3102,3,1,1875.742356,1875.742356,3505,NO,46.33,56.72,3,-2.01,6106,113.242794,123.088945,132.77239,139.331671,I,Above,Hip,0,5701,,51.52253155,0,0,,,,1,1,,0.03,nav,1,2009,3,, 18948,NJBF000054063,208 NO 36TH AVE,Longport,NJ,39.32226626,-74.5214877,RES1,3001,,18,NE,1975,1975,3102,1,1,1678.133462,1678.133462,3505,NO,16.03,29.11,3,2.01,6106,113.121212,122.995027,132.681084,139.228763,I,Above,Gable,0,5701,,22.56752355,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18949,NJBF000052736,29 SO WOODCREST AVE,Longport,NJ,39.31680166,-74.52114081,RES1,3001,,18,NE,1945,1945,3102,3,1,1299.595755,1299.595755,3505,NO,49.93,63.79,3,-1.13,6106,113.212446,123.064638,132.747719,139.304189,I,Above,Flat,0,5701,,56.86050155,0,1.1,,,,1,1,,0.03,nav,1,1945,3,, 18950,NJBF000053066,3011 WINCHESTER AVE,Longport,NJ,39.31850562,-74.52422614,RES1,3001,,19,NE,1980,1980,3102,2,1,1021.88248,1021.88248,3505,NO,24.08,37.57,3,-2.53,6106,113.119551,122.990767,132.673418,139.22085,I,Above,Gable,0,5701,,30.82068457,0,0,,,,1,1,,0.03,nav,1,1980,2,, 18951,NJBF000052298,2702 OBERON AVE,Longport,NJ,39.31384501,-74.52534854,RES1,3001,,18,NE,1938,1938,3102,2,1,1189.502563,1189.502563,3505,NO,30.23,36.96,3,0.3,6106,113.167963,123.025742,132.704671,139.255949,I,Above,Flat,0,5701,,33.59447537,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 18952,NJBF000052730,22 NO MANOR AVE,Longport,NJ,39.31675501,-74.52475103,RES1,3001,,18,NE,1950,1950,3102,2,1,847.3207613,847.3207613,3505,NO,44,50.93,3,8.49,6106,113.135373,123.002047,132.68333,139.232105,I,Above,Hip,0,5701,,47.46445865,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18953,NJBF000053453,19 NO 34TH AVE,Longport,NJ,39.31999841,-74.52058483,RES1,3001,,17,NE,1950,1950,3102,2,1,646.318856,646.318856,3505,NO,33.6,46.83,3,6.35,6106,113.175362,123.037162,132.72248,139.275773,I,Above,Gable,0,5701,,40.21405517,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18954,NJBF000053007,5 SO 33RD AV,Longport,NJ,39.31822461,-74.52010144,RES1,3001,,18,NE,1997,1997,3102,2,1,1632.281504,1632.281504,3505,NO,35.66,45.11,3,4.98,6106,113.213,123.066258,132.750788,139.307605,I,Above,Hip,0,5701,,40.38526675,0,0,,,,1,1,,0.03,nav,1,1997,2,, 18955,NJBF000052965,8 SO 33RD AVE,Longport,NJ,39.31799946,-74.5204004,RES1,3001,,18,NE,1956,1956,3102,2,1,2187.432876,2187.432876,3505,NO,36.77,43.02,3,8.99,6106,113.210006,123.063653,132.747885,139.30437,I,Above,Hip,0,5701,,39.89741623,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 18956,NJBF000054008,,Longport,NJ,39.32208171,-74.52166818,RES1,3001,,NaN,NE,1950,0,3102,2,1,1079.328525,1079.328525,3505,NO,45.3,55.6,3,7.36,6106,113.1201,122.994001,132.679876,139.227456,I,Above,Hip,0,5701,,50.44958001,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18957,NJBF000053022,3005 WINCHESTER AVE,Longport,NJ,39.31830034,-74.52464314,RES1,3001,,18,NE,1945,1945,3102,1,1,2078.10155,2078.10155,3505,NO,11.39,19.19,3,-0.8,6106,113.113739,122.985876,132.668206,139.215006,I,Above,Gable,0,5701,,15.29379498,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 18958,NJBF000053208,11 SO 36TH AVE,Longport,NJ,39.31907915,-74.51794026,RES1,3001,,19,NE,1950,1950,3102,2,1,1786.391776,1786.391776,3505,NO,24.4,37.65,3,-1.49,6106,113.246718,123.094206,132.78042,139.34063,I,Above,Hip,0,5701,,31.02359488,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 18959,NJBF000053187,23 NO YARMOUTH AVE,Longport,NJ,39.31902256,-74.52168238,RES1,3001,,21,NE,2004,2004,3102,3,1,1784.334246,1784.334246,3505,NO,51.05,64.07,3,3.37,6106,113.16655,123.029276,132.713472,139.26579,I,Above,Flat,0,5701,,57.56217925,0,0,,,,1,1,,0.03,nav,1,2004,3,, 18960,NJBF000052942,32 NO EVERGREEN AVE,Longport,NJ,39.31788493,-74.52419643,RES1,3001,,18,NE,1950,1950,3102,2,1,1313.594392,1313.594392,3505,NO,24.24,31.78,3,-1.42,6106,113.129802,122.998541,132.680818,139.229227,I,Above,Flat,0,5701,,28.00769351,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 18961,NJBF000053064,3217 VENTNOR AVE,Longport,NJ,39.31849584,-74.52102188,RES1,3001,,20,NE,2015,2015,3102,2,1,1160.991759,1160.991759,3505,NO,38.73,47.54,3,6.38,6106,113.18892,123.046971,132.731186,139.285677,I,Above,Hip,0,5701,,43.13873946,0,0,,,,1,1,,0.03,nav,1,2015,2,, 18962,NJBF000053197,3406 VENTNOR AVE,Longport,NJ,39.31905105,-74.51924752,RES1,3001,,20,NE,2008,2008,3102,3,1,1718.385679,1718.385679,3505,NO,47.75,61.66,3,0.24,6106,113.218804,123.071599,132.757079,139.31459,I,Above,Flat,0,5701,,54.70499534,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 18963,NJBF000053172,3402 VENTNOR AVE,Longport,NJ,39.3189783,-74.51937353,RES1,3001,,20,NE,2008,2008,3102,3,1,1494.606321,1494.606321,3505,NO,50.87,62.77,3,4.75,6106,113.217192,123.070238,132.755608,139.312952,I,Above,Flat,0,5701,,56.81897162,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 18964,NJBF000053831,109 NO 36TH AVE,Longport,NJ,39.32143647,-74.52015267,RES1,3001,,NaN,NE,1950,1950,3102,2,1,954.0019094,954.0019094,3505,NO,24.03,29.8,3,1.85,6106,113.162814,123.028057,132.714376,139.266418,I,Above,Hip,0,5701,,26.91965458,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18965,NJBF000053757,121 NO 34TH AVE,Longport,NJ,39.32115316,-74.52163401,RES1,3001,,19,NE,1974,1974,3102,1,1,1600.620645,1600.620645,3505,NO,15.78,22.98,3,-1.06,6106,113.134987,123.005367,132.690781,139.239965,I,Above,Hip,0,5701,,19.37933304,0,0,,,,1,1,,0.03,nav,1,1974,1,, 18966,NJBF000053774,123 NO 34TH AVE,Longport,NJ,39.32123402,-74.52172117,RES1,3001,,18,NE,1960,1960,3102,1,1,1563.121686,1563.121686,3505,NO,23.37,28.8,3,4.2,6106,113.131865,123.002902,132.688315,139.237173,I,Above,Hip,0,5701,,26.08464351,0,0,,,,1,1,,0.03,nav,1,1960,1,, 18967,NJBF000052568,2904 LONGPORT DRIVE,Longport,NJ,39.31563523,-74.52519392,RES1,3001,,18,NE,1951,1951,3102,1,1,844.1991192,844.1991192,3505,NO,14.05,28.06,3,1.57,6106,113.143289,123.007427,132.687737,139.237059,I,Above,Flat,0,5701,,21.05577926,0,0,,,,1,1,,0.03,nav,1,1951,1,, 18968,NJBF000053040,13 SO 34TH AVE,Longport,NJ,39.31838347,-74.51899567,RES1,3001,,18,NE,1960,1960,3102,1,1,1186.185064,1186.185064,3505,NO,19.88,26.35,3,0.6,6106,113.234485,123.083781,132.768999,139.327924,I,Above,Flat,0,5701,,23.11684433,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 18969,NJBF000053800,107 NO 36TH AVE,Longport,NJ,39.32132112,-74.52008179,RES1,3001,,NaN,NE,1950,1945,3102,2,1,1402.349001,1402.349001,3505,NO,23.79,37.52,3,1.55,6106,113.166103,123.030634,132.716931,139.269312,I,Above,Hip,0,5701,,30.65696177,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18970,NJBF000052545,15 NO 29TH AVE,Longport,NJ,39.31546865,-74.52513862,RES1,3001,,NaN,NE,1951,1951,3102,2,1,1314.160038,1314.160038,3505,NO,34.82,42.24,3,3.06,6106,113.147061,123.010335,132.690553,139.240214,I,Above,Gable,0,5701,,38.52901559,0,0,,,,1,1,,0.03,nav,1,1951,2,, 18971,NJBF000053031,2955 SUNSET AVE,Longport,NJ,39.31833892,-74.52555917,RES1,3001,,19,NE,1920,1920,3103,6,2,1064.865396,1064.865396,3505,NO,94.76,102.22,3,4.11,6106,113.093384,122.9694,132.651339,139.196003,I,Above,Hip,0,5701,,98.48851807,0,0,,,,1,1,,0.03,nav,1,1920,6,, 18972,NJBF000053051,2955 SUNSET AVE,Longport,NJ,39.31844241,-74.52553534,RES1,3001,,19,NE,1920,1920,3103,5,2,1746.579418,1746.579418,3505,NO,63.23,68.73,3,4.46,6102,113.092306,122.968616,132.650631,139.195192,I,Above,Hip,0,5701,,65.98030925,0,0,,,,1,1,,0.03,nav,1,1920,5,, 18973,NJBF000053709,104 NO 36TH AVE,Longport,NJ,39.32097749,-74.52026384,RES1,3001,,18,NE,1950,1950,3102,2,1,680.9793406,680.9793406,3505,NO,38.58,51.67,3,2.7,6106,113.167387,123.031429,132.71745,139.269966,I,Above,Gable,0,5701,,45.124533,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18974,NJBF000053854,204 NO 34TH AVE,Longport,NJ,39.32152712,-74.52248965,RES1,3001,,18,NE,1975,1975,3102,1,1,1599.793238,1599.793238,3505,NO,19.13,26.11,3,5.22,6106,113.110718,122.986023,132.671211,139.217841,I,Above,Hip,0,5701,,22.6206341,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18975,NJBF000053753,103 NO 36TH AVE,Longport,NJ,39.32114711,-74.51991746,RES1,3001,,18,NE,1965,1965,3102,1,1,2061.32853,2061.32853,3505,NO,20.46,26.8,3,4.89,6106,113.172331,123.035545,132.721836,139.274854,I,Above,Hip,0,5701,,23.63033736,0,0,,,,1,1,,0.03,nav,1,1965,1,, 18976,NJBF000053555,110 NO COLGATE AV,Longport,NJ,39.32038001,-74.52189505,RES1,3001,,NaN,NE,1950,1950,3102,1,1,1625.470637,1625.470637,3505,NO,23.15,34.03,3,7.96,6106,113.141139,123.009766,132.694632,139.24445,I,Above,Flat,0,5701,,28.59013214,0,0,,,,1,1,,0.03,nav,1,1950,1,, 18977,NJBF000053560,21 NO 35TH AVE,Longport,NJ,39.32040161,-74.52003033,RES1,3001,,18,NE,1942,1942,3102,2,1,910.3818011,910.3818011,3505,NO,30.86,42.94,3,8.33,6106,113.181225,123.042202,132.728034,139.281939,I,Above,Gable,0,5701,,36.90046902,0,0,,,,1,1,,0.03,nav,1,1942,2,, 18978,NJBF000053570,20 NO 36TH AVE,Longport,NJ,39.32044461,-74.51981259,RES1,3001,,19,NE,1947,1947,3102,2,1,999.6146619,999.6146619,3505,NO,31.9,45.74,3,8.11,6106,113.185276,123.045508,132.731478,139.285792,I,Above,Gable,0,5701,,38.82364938,0,0,,,,1,1,,0.03,nav,1,1947,2,, 18979,NJBF000053544,18 NO 36TH AVE,Longport,NJ,39.3203375,-74.519712,RES1,3001,,18,NE,1948,1948,3102,2,1,969.42653,969.42653,3505,NO,23.51,35.85,3,2.23,6106,113.189097,123.04852,132.734485,139.289177,I,Above,Gable,0,5701,,29.67725475,0,0,,,,1,1,,0.03,nav,1,1948,2,, 18980,NJBF000053716,101 NO 36TH AVE,Longport,NJ,39.3210058,-74.519791,RES1,3001,,18,NE,1951,1951,3102,1,1,1279.73523,1279.73523,3505,NO,15.41,25.14,3,1.54,6106,113.177211,123.039389,132.725673,139.279185,I,Above,Flat,0,5701,,20.27838782,0,0,,,,1,1,,0.03,nav,1,1951,1,, 18981,NJBF000053877,208 NO 34TH AVE,Longport,NJ,39.32161974,-74.52258208,RES1,3001,,18,NE,1975,1975,3102,1,1,1629.15178,1629.15178,3505,NO,15.46,20.57,3,3.05,6106,113.107304,122.983331,132.668523,139.214788,I,Above,Gable,0,5701,,18.01405118,0,0,,,,1,1,,0.03,nav,1,1975,1,, 18982,NJBF000053426,121 NO 32ND AVE,Longport,NJ,39.31988116,-74.52326728,RES1,3001,,19,NE,2014,2014,3102,3,1,1132.583453,1132.583453,3505,NO,57.77,65.55,3,3.13,6106,113.119088,122.991532,132.67545,139.222957,I,Above,Gable,0,5701,,61.66151533,0,0,,,,1,1,,0.03,nav,1,2014,3,, 18983,NJBF000053444,24 NO 34TH AVE,Longport,NJ,39.31996212,-74.52099708,RES1,3001,,18,NE,1952,1952,3102,2,1,1147.87915,1147.87915,3505,NO,28.94,43.1,3,3.51,6106,113.166986,123.030359,132.715445,139.267889,I,Above,Gable,0,5701,,36.02038293,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 18984,NJBF000051925,3 BAY HAVEN DR,Longport,NJ,39.3117975,-74.528423,RES1,3001,,18,NE,1970,1970,3102,2,1,1432.719613,1432.719613,3505,NO,37.38,45.83,3,-1.27,6106,113.134522,122.996295,132.672229,139.219463,I,Above,Flat,0,5701,,41.60149889,0,0,,,,1,1,,0.03,nav,1,1970,2,, 18985,NJBF000051903,2308 ATLANTIC AVE,Longport,NJ,39.31162638,-74.52699631,RES1,3001,,18,NE,1979,1979,3102,2,1,2067.067104,2067.067104,3505,NO,29.44,41.79,3,7.75,6106,113.167673,123.023176,132.699592,139.250062,I,Above,Flat,0,5701,,35.61126595,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 18986,NJBF000053402,103 NO YARMOUTH AVE,Longport,NJ,39.31980879,-74.52240429,RES1,3001,,19,NE,1950,1950,3102,2,1,1439.310961,1439.310961,3505,NO,34.4,46.92,3,7.63,6106,113.138865,123.007485,132.691779,139.241337,I,Above,Gable,0,5701,,40.6618508,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18987,NJBF000053417,22 NO 34TH AVE,Longport,NJ,39.31985439,-74.52092025,RES1,3001,,NaN,NE,1952,1952,3102,2,1,1526.737957,1526.737957,3505,NO,33.28,39.18,3,-2.85,6106,113.170306,123.032963,132.718027,139.270801,I,Above,Gable,0,5701,,36.23304643,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18988,NJBF000053275,3504 VENTNOR AVE,Longport,NJ,39.3193513,-74.51872108,RES1,3001,,18,NE,1950,1950,3102,1,1,1835.37542,1835.37542,3505,NO,18.28,24.88,3,-1.05,6106,113.225639,123.077353,132.763294,139.321509,I,Above,Flat,0,5701,,21.5786226,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 18989,NJBF000051868,113 SO 24TH AVE,Longport,NJ,39.31136015,-74.5259365,RES1,3001,,20,NE,1992,1992,3102,3,1,1814.148528,1814.148528,3505,NO,66.12,76.81,3,8.82,6106,113.194487,123.044772,132.72145,139.274419,I,Above,Flat,0,5701,,71.46889673,0,1.1,,,,1,1,,0.03,nav,1,1992,3,, 18990,NJBF000053270,3405 VENTNOR AVE,Longport,NJ,39.3193355,-74.519574,RES1,3001,,19,NE,1984,1984,3102,2,1,1600.920226,1600.920226,3505,NO,35.5,46.83,3,7.11,6106,113.207385,123.062573,132.748045,139.304472,I,Above,Gable,0,5701,,41.16498906,0,0,,,,1,1,,0.03,nav,1,1984,2,, 18991,NJBF000051864,2205 ATLANTIC AV,Longport,NJ,39.3113517,-74.52834147,RES1,3001,,20,NE,1987,2018,3102,3,1,1604.558937,1604.558937,3505,NO,41.09,46.56,3,-0.74,6106,113.143324,123.002986,132.678582,139.226536,I,Above,Flat,0,5701,,43.82526317,0,0,,,,1,1,,0.03,nav,1,1987,3,, 18992,NJBF000051455,106 SO 16TH AVE,Longport,NJ,39.30682934,-74.53291485,RES3D,3001,,NaN,E,1900,1900,3303,3,1,759.9012196,759.9012196,3507,NO,54.14,60.01,1,1.46,6106,113.118691,122.97727,132.646827,139.190455,I,Above,Flat,0,NaN,,57.07299363,0,1.2,,,,1,1,,0.03,nav,1,1900,3,, 18993,NJBF000051459,106 SO 16TH AVE,Longport,NJ,39.30698465,-74.53281842,RES3D,3001,,NaN,E,1900,1900,3303,3,1,1439.100821,1439.100821,3507,NO,46.35,56.99,1,0.5,6106,113.118221,122.977088,132.646839,139.190487,I,Above,Gable,0,NaN,,51.66947566,0,1.2,,,,1,1,,0.03,nav,1,1900,3,, 18994,NJBF000052897,24 NO EVERGREEN AVE,Longport,NJ,39.31769363,-74.52402243,RES1,3001,,18,NE,1950,1950,3102,2,1,1321.836355,1321.836355,3505,NO,34.04,40.93,3,5.65,6106,113.13651,123.003815,132.686053,139.235121,I,Above,Hip,0,5701,,37.48408413,0,0,,,,1,1,,0.03,nav,1,1950,2,, 18995,NJBF000053107,11 SO 35TH AVE,Longport,NJ,39.3187214,-74.518459,RES1,3001,,20,NE,2003,2003,3102,3,1,1426.701996,1426.701996,3505,NO,31.16,39.25,3,-0.39,6106,113.24094,123.089264,132.77498,139.334581,I,Above,Flat,0,5701,,35.20886145,0,0,,,,1,1,,0.03,nav,1,2003,3,, 18996,NJBF000053109,8 SO 35TH AVE,Longport,NJ,39.31872947,-74.51897996,RES1,3001,,19,NE,1960,1960,3102,2,1,1916.216665,1916.216665,3505,NO,31.62,45.67,3,4.91,6106,113.229534,123.080038,132.765473,139.323979,I,Above,Gable,0,5701,,38.6432686,0,0,,,,1,1,,0.03,nav,1,1960,2,, 18997,NJBF000053129,8 NO 33RD AVE,Longport,NJ,39.31880772,-74.52116836,RES1,3001,,18,NE,1952,1952,3102,2,1,1434.229811,1434.229811,3505,NO,30.28,41.96,3,3.62,6106,113.18097,123.040782,132.72511,139.278852,I,Above,Hip,0,5701,,36.11996897,0,0,,,,1,1,,0.03,nav,1,1952,2,, 18998,NJBF000053110,3301 VENTNOR AVE,Longport,NJ,39.31872957,-74.52061353,RES1,3001,,18,NE,1945,1945,3102,1,1,1406.31042,1406.31042,3505,NO,19.07,30.06,3,6.25,6106,113.194151,123.051394,132.735961,139.291005,I,Above,Gable,0,5701,,24.56351708,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 18999,NJBF000053230,17 NO 33RD AVE,Longport,NJ,39.31919826,-74.521023,RES1,3001,,18,NE,1950,1950,3102,1,1,1500.576424,1500.576424,3505,NO,12.56,22.13,3,-1.15,6106,113.178123,123.038784,132.723417,139.27692,I,Above,Gable,0,5701,,17.34634907,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19000,NJBF000052006,107 SO 26TH AVE,Longport,NJ,39.31236756,-74.52482147,RES1,3001,,21,NE,2000,2000,3102,3,1,1935.716929,1935.716929,3505,NO,43.38,50.6,3,7.33,6106,113.202465,123.052341,132.730367,139.284487,I,Above,Gable,0,5701,,46.98803351,0,0,,,,1,1,,0.03,nav,1,2000,3,, 19001,NJBF000052027,106 SO 27TH AVE,Longport,NJ,39.31250752,-74.52449716,RES1,3001,,21,NE,2015,2015,3102,3,1,1908.204473,1908.204473,3505,NO,49.49,54.66,3,5.57,6106,113.207201,123.056344,132.734637,139.289261,I,Above,Hip,0,5701,,52.07189301,0,0,,,,1,1,,0.03,nav,1,2015,3,, 19002,NJBF000051254,121 S 11TH AVE,Longport,NJ,39.30371851,-74.53538089,RES1,3001,,22,NE,1980,1980,3103,3,1,2495.58766,2495.58766,3505,NO,56.2,67.5,3,4.66,6106,113.117259,122.97184,132.637181,139.179276,I,Above,Hip,0,5701,,61.84882641,0,0,,,,1,1,,0.03,nav,1,1980,3,, 19003,NJBF000052040,104 SO 27TH AVE,Longport,NJ,39.31260515,-74.52462645,RES1,3001,,20,NE,2006,2006,3102,2,1,2402.328228,2402.328228,3505,NO,26.69,35.5,3,3.67,6106,113.202915,123.052951,132.731259,139.28551,I,Above,Flat,0,5701,,31.09787912,0,0,,,,1,1,,0.03,nav,1,2006,2,, 19004,NJBF000052871,27 SO 34TH AVE,Longport,NJ,39.31757965,-74.51824445,RES1,3001,,49,NE,1950,1950,3102,2,2,1807.036752,1807.036752,3505,NO,27.08,38.63,3,0.13,6106,113.263066,123.106302,132.791437,139.352908,I,Above,Gable,0,5701,,32.85221521,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19005,NJBF000052870,20 NO EVERGREEN AVE,Longport,NJ,39.31757825,-74.52392036,RES1,3001,,NaN,NE,1950,1950,3102,2,1,988.2158734,988.2158734,3505,NO,40.91,51.03,3,7.4,6106,113.140506,123.006954,132.689166,139.238624,I,Above,Gable,0,5701,,45.96863445,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19006,NJBF000051965,2305 ATLANTIC AVE,Longport,NJ,39.31203042,-74.52755272,GOV2,3001,,NaN,E,1969,0,3401,4,1,15642.43059,15642.43059,3507,NO,69.02,79.23,1,0.48,6106,113.149396,123.008698,132.685201,139.234011,I,Above,Flat,0,NaN,,74.1230761,0,0,,,,1,1,,0.03,nav,1,1969,4,, 19007,NJBF000052060,3 SO 25TH AVE,Longport,NJ,39.31269693,-74.52651512,RES1,3001,,20,NE,2015,2015,3102,2,1,741.1307133,741.1307133,3505,NO,40.39,54.27,3,5.58,6106,113.161045,123.01892,132.696424,139.24663,I,Above,Gable,0,5701,,47.32776428,0,0,,,,1,1,,0.03,nav,1,2015,2,, 19008,NJBF000052013,108 SO 27TH AVE,Longport,NJ,39.312417,-74.52438251,RES1,3001,,21,NE,1995,1995,3102,2,1,1513.499502,1513.499502,3505,NO,29.89,40.19,3,-2,6106,113.211072,123.059405,132.73768,139.292638,I,Above,Hip,0,5701,,35.03985095,0,0,,,,1,1,,0.03,nav,1,1995,2,, 19009,NJBF000052828,103 SO 35TH AVE,Longport,NJ,39.31735085,-74.51711426,RES1,3001,,20,NE,1969,1969,3103,2,1,2573.748213,2573.748213,3505,NO,30.12,42.5,3,8.01,6106,113.291027,123.12877,132.814399,139.378398,I,Above,Gable,0,5701,,36.30906516,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 19010,NJBF000052847,39 NO MANOR AVE,Longport,NJ,39.31744496,-74.52495931,RES1,3001,,18,NE,1950,1950,3102,2,1,1349.970793,1349.970793,3505,NO,21.32,33.53,3,-0.16,6106,113.120177,122.990339,132.671982,139.21932,I,Above,Flat,0,5701,,27.4215677,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19011,NJBF000052800,35 SO YARMOUTH AVE,Longport,NJ,39.31721041,-74.51995579,RES1,3001,,18,NE,1952,1952,3102,1,1,2967.172153,2967.172153,3505,NO,16.86,31.62,3,6.04,6106,113.23174,123.080623,132.76459,139.323013,I,Above,Flat,0,5701,,24.24222275,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19012,NJBF000052783,3301 ATLANTIC AVE,Longport,NJ,39.31706952,-74.51896804,RES1,3001,,19,NE,1955,1955,3102,2,1,2383.535171,2383.535171,3505,NO,35.28,48.19,3,8.11,6106,113.255243,123.099557,132.783968,139.344584,I,Above,Flat,0,5701,,41.73492954,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 19013,NJBF000052739,37 NO PELHAM AVE,Longport,NJ,39.3168286,-74.52513573,RES1,3001,,20,NE,1988,1988,3102,3,1,1168.850016,1168.850016,3505,NO,50.62,65.61,3,5.73,6106,113.125936,122.994451,132.675607,139.223426,I,Above,Gable,0,5701,,58.11659301,0,0,,,,1,1,,0.03,nav,1,1988,3,, 19014,NJBF000052711,35 SO 32ND AVE,Longport,NJ,39.31667003,-74.52018094,RES1,3001,,21,NE,2015,2015,3102,3,1,1107.074682,1107.074682,3505,NO,38.8,53.53,3,-1.5,6106,113.235203,123.082982,132.766478,139.3251,I,Above,Flat,0,5701,,46.16469772,0,0,,,,1,1,,0.03,nav,1,2015,3,, 19015,NJBF000052698,40 NO PELHAM AVE,Longport,NJ,39.31661746,-74.52539234,RES1,3001,,18,NE,1950,1950,3102,2,1,1802.382972,1802.382972,3505,NO,36.03,43.81,3,-0.64,6106,113.123726,122.99246,132.673357,139.220904,I,Above,Flat,0,5701,,39.92001515,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19016,NJBF000052632,2900 SUNSET AVE,Longport,NJ,39.31612711,-74.52594845,RES1,3001,,20,NE,1987,1987,3102,2,1,1505.586056,1505.586056,3505,NO,23.89,38.41,3,0.18,6106,113.11941,122.988487,132.668799,139.215792,I,Above,Flat,0,5701,,31.15230776,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 19017,NJBF000052464,2703 SUNSET AV,Longport,NJ,39.31488499,-74.52675287,RES1,3001,,NaN,NE,1955,1955,3103,2,1,1767.692672,1767.692672,3505,NO,27.83,35.61,3,3.13,6106,113.121558,122.989011,132.668082,139.214985,I,Above,Hip,0,5701,,31.72094682,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 19018,NJBF000052662,5 NO MANOR AVE,Longport,NJ,39.31636546,-74.52394259,RES1,3001,,18,NE,1953,1953,3102,1,1,1372.199481,1372.199481,3505,NO,23.11,34.16,3,6.57,6106,113.158826,123.020736,132.702136,139.253206,I,Above,Hip,0,5701,,28.63777415,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 19019,NJBF000052647,1 NO MANOR AVE,Longport,NJ,39.31623,-74.52378,RES1,3001,,NaN,NE,1953,1953,3102,1,1,1366.276075,1366.276075,3505,NO,20.46,26.52,3,3.31,6106,113.164433,123.025166,132.706551,139.258153,I,Above,Flat,0,5701,,23.4886019,0,0,,,,1,1,,0.03,nav,1,1953,1,, 19020,NJBF000052656,3108 PACIFIC AVE,Longport,NJ,39.31630744,-74.52073363,RES1,3001,,18,NE,2008,2008,3102,1,1,1530.670662,1530.670662,3505,NO,23.95,38.25,3,6.67,6106,113.228875,123.077541,132.760504,139.318429,I,Above,Gable,0,5701,,31.10103395,0,0,,,,1,1,,0.03,nav,1,2008,1,, 19021,NJBF000052695,3113 PACIFIC AVE,Longport,NJ,39.31660489,-74.52100771,RES1,3001,,18,NE,1952,1952,3102,1,1,1219.695798,1219.695798,3505,NO,22.37,30.01,3,7.79,6106,113.218359,123.069266,132.752285,139.309278,I,Above,Flat,0,5701,,26.18968802,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19022,NJBF000052723,3008 VENTNOR AVE,Longport,NJ,39.3167411,-74.52304154,RES1,3001,,18,NE,1955,1955,3102,1,1,1402.272064,1402.272064,3505,NO,26.05,36.47,3,8.18,6106,113.172397,123.032092,132.714179,139.266695,I,Above,Hip,0,5701,,31.25796985,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19023,NJBF000052311,102 SO PELHAM AVE,Longport,NJ,39.31390938,-74.52275507,RES1,3001,,21,NE,1989,1989,3103,3,1,1397.699683,1397.699683,3505,NO,53.2,62.53,3,4.03,6106,113.222621,123.070284,132.750511,139.307104,I,Above,Flat,0,5701,,57.86390603,0,0,,,,1,1,,0.03,nav,1,1989,3,, 19024,NJBF000052277,8 SO 28TH AVE,Longport,NJ,39.31375988,-74.52482132,RES1,3001,,18,NE,1938,1938,3102,2,1,1116.803925,1116.803925,3505,NO,34.67,48.2,3,7.29,6106,113.180615,123.035958,132.715069,139.267565,I,Above,Flat,0,5701,,41.43183374,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 19025,NJBF000052502,1 NO OVERBROOK AVE,Longport,NJ,39.31517047,-74.52432405,RES1,3001,,18,NE,1951,1951,3102,1,1,1269.126621,1269.126621,3505,NO,13.36,21.27,3,2.83,6106,113.169237,123.028079,132.708465,139.260269,I,Above,Flat,0,5701,,17.31912767,0,0,,,,1,1,,0.03,nav,1,1951,1,, 19026,NJBF000052222,113 SO 29TH AVE,Longport,NJ,39.31347681,-74.5225781,RES1,3001,,20,NE,2002,2002,3103,5,1,2286.089124,2286.089124,3505,NO,77.83,88.97,3,5.78,6106,113.233168,123.078447,132.758437,139.315872,I,Above,Hip,0,5701,,83.39922955,0,0,,,,1,1,,0.03,nav,1,2002,5,, 19027,NJBF000052520,105 SO 31ST AVE,Longport,NJ,39.31528398,-74.52044934,RES1,3001,,21,NE,1990,1990,3103,3,1,1062.230899,1062.230899,3505,NO,44.3,49.74,3,1.96,6106,113.250849,123.094484,132.776894,139.336593,I,Above,Flat,0,5701,,47.01602729,0,1.2,,,,1,1,,0.03,nav,1,1990,3,, 19028,NJBF000052270,2607 OBERON AVE,Longport,NJ,39.31371372,-74.5261014,RES1,3001,,18,NE,1945,1945,3102,1,1,1298.737199,1298.737199,3505,NO,14.09,27.6,3,-1.3,6106,113.153906,123.014161,132.692646,139.242483,I,Above,Hip,0,5701,,20.84733601,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 19029,NJBF000052503,2913 PACIFIC AVE,Longport,NJ,39.31517062,-74.52348657,RES1,3001,,18,NE,1953,1953,3102,1,1,1812.553572,1812.553572,3505,NO,18.26,24.57,3,7.41,6106,113.187213,123.042691,132.723479,139.277059,I,Above,Gable,0,5701,,21.41537239,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 19030,NJBF000052436,6 SO PELHAM AVE,Longport,NJ,39.31469846,-74.52356508,RES1,3001,,21,NE,1952,2018,3102,3,1,1387.375953,1387.375953,3505,NO,47.35,59.6,3,3.67,6106,113.192909,123.046875,132.727284,139.28128,I,Above,Gable,0,5701,,53.47773195,0,1.1,,,,1,1,,0.03,nav,1,1952,3,, 19031,NJBF000052485,19 SO MANOR AVE,Longport,NJ,39.31505304,-74.52261981,RES1,3001,,18,NE,1948,1948,3102,2,1,1215.443405,1215.443405,3505,NO,44.43,55.86,3,8.18,6106,113.207695,123.059226,132.740357,139.295894,I,Above,Gable,0,5701,,50.14320144,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19032,NJBF000052450,20 NO 28TH AVE,Longport,NJ,39.31479122,-74.5261172,RES1,3001,,45,NE,1967,1967,3102,2,2,2309.685961,2309.685961,3505,NO,36.26,44.07,3,-2.67,6106,113.136669,123.001217,132.680501,139.228924,I,Above,Hip,0,5701,,40.16525209,0,0,,,,1,1,,0.03,nav,1,1967,2,, 19033,NJBF000051776,2301 BEACH TERRACE,Longport,NJ,39.3106953,-74.52656492,RES1,3001,,23,NE,1988,1988,3102,3,1,3320.078244,3320.078244,3505,NO,51.69,59.58,3,5.55,6106,113.191598,123.041689,132.717515,139.269941,I,Above,Flat,0,5701,,55.63613448,0,0,,,,1,1,,0.03,nav,1,1988,3,, 19034,NJBF000051804,2200 ATLANTIC AVE,Longport,NJ,39.31088315,-74.52817073,RES1,3001,,22,NE,2001,2001,3102,3,1,3745.483997,3745.483997,3505,NO,48.09,53.8,3,-2.24,6106,113.154385,123.011496,132.686767,139.235642,I,Above,Flat,0,5701,,50.94397879,0,0,,,,1,1,,0.03,nav,1,2001,3,, 19035,NJBF000051612,102 SO 19TH AVE,Longport,NJ,39.30904585,-74.53102521,RES1,3001,,NaN,NE,1894,1894,3102,3,1,1989.645165,1989.645165,3505,NO,55.35,67.19,3,5.25,6106,113.123022,122.98365,132.656089,139.201094,I,Above,Flat,0,5701,,61.26856502,0,0,,,,1,1,,0.03,nav,1,1894,3,, 19036,NJBF000051587,110 SO 19TH AVE,Longport,NJ,39.30867617,-74.53052893,RES1,3001,,NaN,NE,1900,1900,3102,3,1,2162.473045,2162.473045,3505,NO,42.22,54.65,3,-1.38,6106,113.139457,122.99667,132.668968,139.215467,I,Above,Flat,0,5701,,48.43752467,0,1.2,,,,1,1,,0.03,nav,1,1900,3,, 19037,NJBF000051533,1807 BEACH TERRACE,Longport,NJ,39.30808201,-74.52998924,RES1,3001,,22,NE,1988,1988,3102,3,1,2316.295328,2316.295328,3505,NO,35.3,43.68,3,-1.87,6106,113.160409,123.013121,132.685085,139.233397,I,Above,Flat,0,5701,,39.49049977,0,0,,,,1,1,,0.03,nav,1,1988,3,, 19038,NJBF000051564,,Longport,NJ,39.308399,-74.5308375,RES1,3001,,NaN,NE,1969,0,3102,2,1,539.7730644,539.7730644,3507,NO,28.59,35.75,1,0.58,6106,113.137347,122.994598,132.666509,139.212681,I,Above,Hip,0,5701,,32.16864276,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19039,NJBF000051391,111 SO 14TH AV,Longport,NJ,39.30600507,-74.53381893,RES1,3001,,20,NE,1970,1970,3103,2,1,1509.759523,1509.759523,3505,NO,36.01,45.35,3,1.75,6106,113.112956,122.971453,132.639825,139.182513,I,Above,Gable,0,5701,,40.68120532,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 19040,NJBF000051596,106 SO 19TH AV,Longport,NJ,39.30887917,-74.53078851,RES1,3001,,18,NE,1947,1947,3102,1,1,834.2256177,834.2256177,3505,NO,17.2,29.49,3,3.14,6106,113.130697,122.989738,132.662118,139.207826,I,Above,Gable,0,5701,,23.34729861,0,0,,,,1,1,,0.03,nav,1,1947,1,, 19041,NJBF000051438,105 SO 15TH AVE,Longport,NJ,39.30654538,-74.53312361,RES1,3001,,18,NE,1900,1900,3103,2,1,1248.415626,1248.415626,3505,NO,34.12,48.5,3,7.08,6106,113.118867,122.97704,132.64623,139.189752,I,Above,Flat,0,5701,,41.30827905,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 19042,NJBF000051321,1102 ATLANTIC AVE,Longport,NJ,39.3048605,-74.53660467,RES1,3001,,18,NE,1973,1973,3103,2,1,1141.063536,1141.063536,3505,NO,25.34,32.94,3,0.15,6106,113.073051,122.936946,132.60309,139.141168,I,Above,Gable,0,5701,,29.14059511,0,0,,,,1,1,,0.03,nav,1,1973,2,, 19043,NJBF000052900,38 NO 30TH AVE,Longport,NJ,39.31770633,-74.52487974,RES1,3001,,18,NE,1964,1964,3102,1,1,1178.056074,1178.056074,3505,NO,19.08,24.72,3,0.11,6106,113.11783,122.988669,132.670516,139.217655,I,Above,Gable,0,5701,,21.89564015,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 19044,NJBF000052873,34 NO 30TH AVE,Longport,NJ,39.31758468,-74.52474502,RES1,3001,,20,NE,2016,2016,3102,3,1,1856.999021,1856.999021,3505,NO,48.85,53.86,3,5.92,6106,113.122616,122.992444,132.674275,139.221891,I,Above,Gable,0,5701,,51.35201215,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 19045,NJBF000051682,104 SO 21ST AVE,Longport,NJ,39.30989708,-74.52917948,RES1,3001,,22,NE,1997,1997,3102,3,1,2672.920919,2672.920919,3505,NO,61.41,66.73,3,5.78,6106,113.148613,123.005637,132.679613,139.227525,I,Above,Flat,0,5701,,64.07009699,0,0,,,,1,1,,0.03,nav,1,1997,3,, 19046,NJBF000052137,,Longport,NJ,39.31307881,-74.52699958,RES1,3001,,NaN,NE,1969,0,3102,2,1,1792.169918,1792.169918,3505,NO,38.91,44.39,3,9,6106,113.144654,123.00596,132.68355,139.232251,I,Above,Hip,0,5701,,41.64868612,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19047,NJBF000053152,4 SO 35TH AVE,Longport,NJ,39.31890796,-74.51917451,RES1,3001,,18,NE,1955,1955,3102,1,1,1243.353139,1243.353139,3505,NO,23.07,37.46,3,7.66,6106,113.222573,123.07454,132.759976,139.317834,I,Above,Gable,0,5701,,30.26243428,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19048,NJBF000052144,2409 OBERON AVE,Longport,NJ,39.3131018,-74.52752738,RES1,3001,,21,NE,1997,1997,3103,2,1,1749.132865,1749.132865,3505,NO,34.31,46.68,3,2.14,6102,113.133024,122.9965,132.673877,139.221412,I,Above,Hip,0,5701,,40.49321915,0,0,,,,1,1,,0.03,nav,1,1997,2,, 19049,NJBF000052790,25 NO MANOR AVE,Longport,NJ,39.31713146,-74.52462806,RES1,3001,,NaN,NE,1968,1968,3102,1,1,1174.089026,1174.089026,3505,NO,21.56,34.15,3,6.57,6106,113.13218,122.999798,132.681388,139.22991,I,Above,Flat,0,5701,,27.85697543,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 19050,NJBF000052904,5 NO 31ST AVE,Longport,NJ,39.31771361,-74.5227727,RES1,3001,,21,NE,2017,2017,3102,2,1,1589.368387,1589.368387,3505,NO,26.99,39.62,3,-2.47,6106,113.163143,123.025433,132.708283,139.260066,I,Above,Flat,0,5701,,33.30649877,0,0,,,,1,1,,0.03,nav,1,2017,2,, 19051,NJBF000053432,7 NO 35TH AVE,Longport,NJ,39.31990634,-74.51956649,RES1,3001,,19,NE,2005,2005,3102,2,1,1750.057748,1750.057748,3505,NO,34.02,41.26,3,0.25,6106,113.198852,123.056094,132.741895,139.297533,I,Above,Hip,0,5701,,37.6419841,0,0,,,,1,1,,0.03,nav,1,2005,2,, 19052,NJBF000053835,209 NO 33RD AVE,Longport,NJ,39.32145697,-74.52318704,RES1,3001,,20,NE,2015,2015,3102,3,1,814.7072808,814.7072808,3505,NO,46.25,57.36,3,-1.58,6106,113.096676,122.974619,132.659436,139.204582,I,Above,Gable,0,5701,,51.80291436,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 19053,NJBF000053212,11 NO 33RD AVE,Longport,NJ,39.31909064,-74.5209407,RES1,3001,,18,NE,1949,1949,3102,2,1,1308.012394,1308.012394,3505,NO,35.8,50.07,3,7.43,6106,113.181538,123.041465,132.726078,139.279911,I,Above,Gable,0,5701,,42.93490386,0,0,,,,1,1,,0.03,nav,1,1949,2,, 19054,NJBF000051331,104 SO 12TH AVE,Longport,NJ,39.30500951,-74.53621658,RES1,3001,,19,NE,1960,1960,3103,2,1,1386.325153,1386.325153,3505,NO,29.03,39.86,3,6.15,6106,113.078738,122.941857,132.6083,139.147037,I,Above,Flat,0,5701,,34.44602889,0,0,,,,1,1,,0.03,nav,1,1960,2,, 19055,NJBF000052804,35 S 33RD AVE,Longport,NJ,39.31722168,-74.51914532,RES1,3001,,20,NE,2017,2017,3102,2,1,1132.521569,1132.521569,3505,NO,32.03,45.74,3,4.67,6106,113.24908,123.094686,132.779098,139.339171,I,Above,Flat,0,5701,,38.88841302,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 19056,NJBF000052743,28 NO MANOR AVE,Longport,NJ,39.31684369,-74.52486674,RES1,3001,,18,NE,1950,1950,3102,1,1,1337.775686,1337.775686,3505,NO,18.67,31.21,3,-0.68,6106,113.131492,122.998978,132.680267,139.228661,I,Above,Gable,0,5701,,24.94002767,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19057,NJBF000052053,2505 ATLANTIC AVE,Longport,NJ,39.31266834,-74.52613904,RES1,3001,,21,NE,2017,2017,3102,3,1,1065.771084,1065.771084,3505,NO,59.27,69.79,3,3.82,6106,113.169543,123.025818,132.703469,139.254505,I,Above,Gable,0,5701,,64.52849711,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19058,NJBF000052661,2921 LONGPORT DRIVE,Longport,NJ,39.31635943,-74.5246671,RES1,3001,,NaN,NE,1950,1950,3102,1,1,2210.669077,2210.669077,3505,NO,20.69,26.46,3,7.61,6106,113.143339,123.008151,132.689206,139.238708,I,Above,Flat,0,5701,,23.57709256,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19059,NJBF000053005,29 SO 36TH AVE.,Longport,NJ,39.31821863,-74.51709524,RES1,3001,,21,NE,2014,2014,3102,3,1,1616.973197,1616.973197,3505,NO,51.2,59.62,3,8.48,6106,113.278159,123.119011,132.805191,139.368209,I,Above,Gable,0,5701,,55.40712107,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 19060,NJBF000052975,2945 SUNSET AVE,Longport,NJ,39.318068,-74.52564733,RES1,3001,,19,NE,1986,1986,3103,3,1,1243.885781,1243.885781,3505,NO,55.81,67.93,3,0.15,6106,113.095689,122.971027,132.652758,139.197629,I,Above,Hip,0,5701,,61.86771679,0,0,,,,1,1,,0.03,nav,1,1986,3,, 19061,NJBF000051352,101 S 12TH AVE,Longport,NJ,39.30535614,-74.53592323,RES1,3001,,21,NE,1993,1993,3103,3,1,2672.20851,2672.20851,3505,NO,38.59,46.35,3,1.64,6106,113.079276,122.94279,132.609707,139.148654,I,Above,Gable,0,5701,,42.47004408,0,1.2,,,,1,1,,0.03,nav,1,1993,3,, 19062,NJBF000052984,3212 VENTNOR AVE,Longport,NJ,39.31812308,-74.52080635,RES1,3001,,18,NE,1955,1955,3102,2,1,1611.355332,1611.355332,3505,NO,35.92,41.04,3,0.88,6106,113.199323,123.055098,132.739196,139.294655,I,Above,Gable,0,5701,,38.48322176,0,0,,,,1,1,,0.03,nav,1,1955,2,, 19063,NJBF000052991,3010 WINCHESTER AVE.,Longport,NJ,39.31813693,-74.52406181,RES1,3001,,19,NE,2002,2002,3102,1,1,1365.830738,1365.830738,3505,NO,19.45,25.9,3,6.73,6106,113.128793,122.997942,132.680441,139.228783,I,Above,Hip,0,5701,,22.67482583,0,0,,,,1,1,,0.03,nav,1,2002,1,, 19064,NJBF000052032,2406 OBERON AVE,Longport,NJ,39.3125276,-74.52702543,RES1,3001,,18,NE,1940,1940,3102,2,1,1475.567483,1475.567483,3505,NO,35.38,43.2,3,5.87,6106,113.152808,123.012022,132.689162,139.23849,I,Above,Hip,0,5701,,39.29046756,0,0,,,,1,1,,0.03,nav,1,1940,2,, 19065,NJBF000051452,101 SO 15TH AVE.,Longport,NJ,39.30674866,-74.53334954,RES1,3001,,20,NE,2015,2015,3103,3,1,1269.433488,1269.433488,3505,NO,59.73,67.47,3,4.46,6106,113.110811,122.970682,132.639991,139.182787,I,Above,Gable,0,5701,,63.60033303,0,0,,,,1,1,,0.03,nav,1,2015,3,, 19066,NJBF000051311,103 SO 11TH AVE,Longport,NJ,39.30469555,-74.5365717,RES1,3001,,22,NE,1998,1998,3103,2,1,2270.840322,2270.840322,3505,NO,35.73,47.9,3,5.45,6106,113.076413,122.939488,132.605466,139.143823,I,Above,Gable,0,5701,,41.81398425,0,0,,,,1,1,,0.03,nav,1,1998,2,, 19067,NJBF000052257,107 SO 29TH AVE,Longport,NJ,39.31366677,-74.52285452,RES1,3001,,18,NE,1956,1956,3103,1,1,1789.204904,1789.204904,3505,NO,23.24,35.41,3,4.56,6106,113.224253,123.071378,132.751373,139.308036,I,Above,Gable,0,5701,,29.32224203,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 19068,NJBF000052550,4 NO PELHAM AVE,Longport,NJ,39.31552319,-74.52436493,RES1,3001,,20,NE,2018,2018,3102,3,1,1832.333697,1832.333697,3505,NO,54.3,60.28,3,1.62,6106,113.162852,123.023223,132.703841,139.255105,I,Above,Hip,0,5701,,57.29234061,0,1.1,,,,1,1,,0.03,nav,1,2018,3,, 19069,NJBF000051537,,Longport,NJ,39.30810649,-74.53187394,RES1,3001,,NaN,NE,1969,0,3103,5,1,1391.11644,1391.11644,3505,NO,99.38,110.82,3,8.44,6106,113.120122,122.980095,132.65131,139.195631,I,Above,Hip,0,5701,,105.1039735,0,0,,,,1,1,,0.03,nav,1,1969,5,, 19070,NJBF000052604,2905 LONGPORT DRIVE,Longport,NJ,39.31592649,-74.52546312,RES1,3001,,19,NE,2011,2011,3102,3,1,1606.574573,1606.574573,3505,NO,49.89,55.29,3,0.11,6106,113.132968,122.999316,132.679707,139.228049,I,Above,Hip,0,5701,,52.59072804,0,0,,,,1,1,,0.03,nav,1,2011,3,, 19071,NJBF000054103,217 NO 35TH AVE,Longport,NJ,39.32238601,-74.52192916,RES1,3001,,19,NE,1960,1960,3102,2,1,1105.087613,1105.087613,3505,NO,27.94,37.84,3,2.45,6106,113.109811,122.985903,132.671799,139.218266,I,Above,Gable,0,5701,,32.89062606,0,0,,,,1,1,,0.03,nav,1,1960,2,, 19072,NJBF000053223,120 NO 31ST AVE,Longport,NJ,39.31916846,-74.52470385,RES1,3001,,18,NE,1956,1956,3102,2,1,1564.97159,1564.97159,3505,NO,22.21,37.17,3,-0.77,6106,113.09901,122.974682,132.657513,139.202859,I,Above,Gable,0,5701,,29.69233244,0,0,,,,1,1,,0.03,nav,1,1956,2,, 19073,NJBF000053513,14 NO 36TH AVE,Longport,NJ,39.32022661,-74.51958983,RES1,3001,,18,NE,1948,1948,3102,2,1,1204.596054,1204.596054,3505,NO,30.61,37.5,3,8.03,6106,113.193435,123.051947,132.737916,139.293036,I,Above,Gable,0,5701,,34.05397301,0,0,,,,1,1,,0.03,nav,1,1948,2,, 19074,NJBF000053351,14 NO 34TH AVE,Longport,NJ,39.31961383,-74.52071544,RES1,3001,,18,NE,1968,1968,3102,3,1,1312.583348,1312.583348,3505,NO,52.78,64.28,3,1.57,6106,113.178418,123.039344,132.724377,139.27795,I,Above,Gable,0,5701,,58.53168997,0,1.1,,,,1,1,,0.03,nav,1,1968,3,, 19075,NJBF000051917,110 SO 26TH AVE,Longport,NJ,39.311746,-74.5253235,RES1,3001,,NaN,NE,1950,1950,3102,2,1,1356.457119,1356.457119,3505,NO,21.33,35.74,3,-0.51,6106,113.201518,123.05092,132.728203,139.281996,I,Above,Gable,0,5701,,28.53262056,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19076,NJBF000052855,101 S 35TH AVE,Longport,NJ,39.31749475,-74.51727117,RES1,3001,,20,NE,1950,1950,3103,2,1,2092.915914,2092.915914,3505,NO,38.92,53.27,3,2.91,6106,113.285423,123.124343,132.809973,139.373496,I,Above,Gable,0,5701,,46.09258122,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 19077,NJBF000052000,102 SO 26TH AVE,Longport,NJ,39.31230166,-74.52550903,RES1,3001,,18,NE,1978,1978,3102,2,1,1562.544697,1562.544697,3505,NO,42.18,56.68,3,4.66,6106,113.188782,123.041119,132.718768,139.271547,I,Above,Gable,0,5701,,49.4301254,0,0,,,,1,1,,0.03,nav,1,1978,2,, 19078,NJBF000051462,1407 ATLANTIC AVE,Longport,NJ,39.30710007,-74.53442084,RES1,3001,,21,NE,1990,1990,3103,3,1,2213.415534,2213.415534,3505,NO,42.7,57.39,3,8.15,6106,113.082577,122.947915,132.617174,139.157219,I,Above,Flat,0,5701,,50.0463425,0,0,,,,1,1,,0.03,nav,1,1990,3,, 19079,NJBF000052376,101 SO PELHAM AVE,Longport,NJ,39.31425786,-74.52260581,RES1,3001,,21,NE,2005,2005,3103,3,1,1875.079636,1875.079636,3505,NO,39.87,50.07,3,5.93,6106,113.220378,123.068791,132.749352,139.305851,I,Above,Gable,0,5701,,44.96755229,0,0,,,,1,1,,0.03,nav,1,2005,3,, 19080,NJBF000053095,3603 PACIFIC AVE,Longport,NJ,39.31865859,-74.51742586,RES1,3001,,20,NE,1935,2018,3102,2,1,1114.572309,1114.572309,3505,NO,31.08,43.48,3,-2.37,6106,113.264268,123.108096,132.794352,139.356158,I,Above,Flat,0,5701,,37.28259561,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 19081,NJBF000054035,204 NO 36TH AVE,Longport,NJ,39.32217252,-74.5213965,RES1,3001,,20,NE,2017,2017,3102,3,1,1551.977962,1551.977962,3505,NO,44.49,57.54,3,-0.86,6106,113.124623,122.997718,132.683774,139.23182,I,Above,Gable,0,5701,,51.01769069,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 19082,NJBF000052471,1 NO 29TH AVE,Longport,NJ,39.31494031,-74.52453394,RES1,3001,,19,NE,2017,2017,3102,3,1,1542.599775,1542.599775,3505,NO,52,66.24,3,8.38,6106,113.168316,123.027109,132.70723,139.258877,I,Above,Flat,0,5701,,59.11959668,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19083,NJBF000053072,22 SO 36TH AVE,Longport,NJ,39.31854252,-74.51793366,RES1,3001,,18,NE,1945,1945,3102,2,1,1180.295588,1180.295588,3505,NO,34.45,48.25,3,3.6,6106,113.255033,123.100536,132.786437,139.34735,I,Above,Flat,0,5701,,41.35189718,0,0,,,,1,1,,0.03,nav,1,1945,2,, 19084,NJBF000052914,4 SO YARMOUTH AVE,Longport,NJ,39.31776973,-74.52096804,RES1,3001,,18,NE,1945,1945,3102,1,1,1708.27009,1708.27009,3505,NO,15.9,28.52,3,3.15,6106,113.201254,123.056374,132.740168,139.295754,I,Above,Gable,0,5701,,22.20602211,0,1.2,,,,1,1,,0.03,nav,1,1945,1,, 19085,NJBF000053077,3015 WINCHESTER AVE,Longport,NJ,39.31856149,-74.52408121,RES1,3001,,19,NE,1949,1949,3102,2,1,1193.703279,1193.703279,3505,NO,44.8,55.55,3,6.3,6106,113.121831,122.992662,132.675415,139.223091,I,Above,Flat,0,5701,,50.17412931,0,0,,,,1,1,,0.03,nav,1,1949,2,, 19086,NJBF000052537,15 SO MANOR AVE,Longport,NJ,39.31542668,-74.52299948,RES1,3001,,20,NE,2013,2013,3102,3,1,1304.420779,1304.420779,3505,NO,62.38,76.83,3,7.68,6106,113.193724,123.04822,132.729429,139.283718,I,Above,Hip,0,5701,,69.60404985,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19087,NJBF000052540,38 NO 29TH AVE,Longport,NJ,39.31544389,-74.52572767,RES1,3001,,18,NE,1950,1950,3102,1,1,1484.834856,1484.834856,3505,NO,17.25,24.2,3,-0.99,6106,113.134801,123.000341,132.680272,139.228681,I,Above,Hip,0,5701,,20.72103158,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19088,NJBF000052535,2800 SUNSET AVE,Longport,NJ,39.31541735,-74.52617333,RES1,3001,,18,NE,1960,1960,3102,2,1,1563.97551,1563.97551,3505,NO,38.01,50.56,3,8.6,6106,113.125669,122.992887,132.672599,139.220066,I,Above,Gable,0,5701,,44.28195552,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 19089,NJBF000053391,3306 WINCHESTER AV,Longport,NJ,39.31975385,-74.52130077,RES1,3001,,18,NE,1950,1950,3102,2,1,1512.045901,1512.045901,3505,NO,33.59,39.44,3,3.72,6106,113.163585,123.027448,132.712262,139.264347,I,Above,Gable,0,5701,,36.51558737,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19090,NJBF000053114,18 NO YARMOUTH AVE,Longport,NJ,39.31874413,-74.52187979,RES1,3001,,19,NE,2009,2009,3102,2,1,1884.905918,1884.905918,3505,NO,22.38,31.14,3,-2.95,6106,113.166556,123.029057,132.712986,139.265271,I,Above,Hip,0,5701,,26.75733347,0,0,,,,1,1,,0.03,nav,1,2009,2,, 19091,NJBF000052338,104 SO MANOR AVE,Longport,NJ,39.31404594,-74.52215708,RES1,3001,,22,NE,1999,1999,3103,3,1,2811.61659,2811.61659,3505,NO,53.8,61.79,3,6.83,6106,113.233332,123.079123,132.759754,139.317405,I,Above,Hip,0,5701,,57.79743355,0,0,,,,1,1,,0.03,nav,1,1999,3,, 19092,NJBF000051698,,Longport,NJ,39.31003872,-74.52933786,RES1,3001,,NaN,NE,1979,0,3102,2,1,2293.609715,2293.609715,3505,NO,30.27,35.66,3,1.3,6106,113.142971,123.001187,132.675222,139.22263,I,Above,Flat,0,5701,,32.96472331,0,0,,,,1,1,,0.03,nav,1,1979,2,, 19093,NJBF000051479,,Longport,NJ,39.30749415,-74.53210392,RES3D,3001,,NaN,E,1969,0,3303,4,1,1057.294596,1057.294596,3507,NO,54.75,65.1,1,-0.86,6106,113.125098,122.9834,132.653933,139.198494,I,Above,Flat,0,NaN,,59.92158545,0,0,,,,1,1,,0.03,nav,1,1969,4,, 19094,NJBF000052585,5 NO PELHAM AVE,Longport,NJ,39.31579772,-74.52413747,RES1,3001,,19,NE,2017,2017,3102,3,1,1256.283888,1256.283888,3505,NO,56.89,68.83,3,2.63,6106,113.163471,123.023985,132.704902,139.256301,I,Above,Gable,0,5701,,62.85608042,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19095,NJBF000052129,2603 ATLANTIC AVE,Longport,NJ,39.31303852,-74.52558828,RES1,3001,,18,NE,1970,1970,3102,2,1,1248.614575,1248.614575,3505,NO,25.67,32.96,3,-1.28,6106,113.175497,123.031057,132.709255,139.261005,I,Above,Gable,0,5701,,29.31534846,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 19096,NJBF000052950,2 SO YARMOUTH AVE,Longport,NJ,39.31794125,-74.52113371,RES1,3001,,21,NE,1952,2018,3102,3,1,1252.390919,1252.390919,3505,NO,44.25,58.14,3,2.78,6106,113.195034,123.051475,132.73529,139.290295,I,Above,Flat,0,5701,,51.19267288,0,1.1,,,,1,1,,0.03,nav,1,1952,3,, 19097,NJBF000054162,213 NO 36TH AVE,Longport,NJ,39.32258248,-74.52128462,RES1,3001,,20,NE,2008,2008,3102,3,1,1706.868315,1706.868315,3505,NO,45.68,51.24,3,1.62,6106,113.120824,122.99493,132.681243,139.228847,I,Above,Gable,0,5701,,48.46056673,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 19098,NJBF000052677,2 NO 30TH AVE,Longport,NJ,39.31646971,-74.52385585,RES1,3001,,18,NE,1953,1953,3102,1,1,736.9758918,736.9758918,3505,NO,25.79,31.1,3,7.33,6106,113.159068,123.021028,132.70254,139.25366,I,Above,Gable,0,5701,,28.4430988,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 19099,NJBF000052279,5 NO 26TH AVE,Longport,NJ,39.31376712,-74.52665999,RES1,3001,,18,NE,2014,2014,3102,2,1,989.55495,989.55495,3505,NO,42.33,53.13,3,6.13,6106,113.141102,123.003785,132.68206,139.230626,I,Above,Gable,0,5701,,47.72577561,0,0,,,,1,1,,0.03,nav,1,2014,2,, 19100,NJBF000051886,2304 ATLANTIC AVE,Longport,NJ,39.31146244,-74.52719616,RES1,3001,,17,NE,1925,1925,3102,1,1,2079.848787,2079.848787,3505,NO,13.89,24.19,3,3.16,6106,113.165998,123.021629,132.697819,139.248062,I,Above,Hip,0,5701,,19.04148738,0,0,,,,1,1,,0.03,nav,1,1925,1,, 19101,NJBF000053700,3219 MONMOUTH AVE,Longport,NJ,39.32094155,-74.52321979,RES1,3001,,18,NE,1976,1976,3102,2,1,1674.970423,1674.970423,3505,NO,33.01,38.1,3,2.71,6106,113.103837,122.980021,132.664549,139.210471,I,Above,Gable,0,5701,,35.55592061,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 19102,NJBF000053819,202 NO COLGATE AVE,Longport,NJ,39.32139502,-74.52285321,RES1,3001,,18,NE,1955,1955,3102,1,1,1296.880842,1296.880842,3505,NO,26.74,41.2,3,8.28,6106,113.104863,122.981192,132.666136,139.212154,I,Above,Hip,0,5701,,33.96551538,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19103,NJBF000053525,120 NO 33RD AVE,Longport,NJ,39.32025551,-74.52257066,RES1,3001,,19,NE,2007,2007,3102,2,1,1675.145147,1675.145147,3505,NO,21.27,34.08,3,0.25,6106,113.128397,122.999362,132.683827,139.23232,I,Above,Gable,0,5701,,27.6760165,0,0,,,,1,1,,0.03,nav,1,2007,2,, 19104,NJBF000053496,114 NO 33RD AVE,Longport,NJ,39.32016387,-74.52244912,RES1,3001,,18,NE,1965,1965,3102,2,1,1255.436061,1255.436061,3505,NO,36.73,43.47,3,0.94,6106,113.132449,123.002569,132.687042,139.235953,I,Above,Hip,0,5701,,40.10212976,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19105,NJBF000052611,2809 SUNSET AVE,Longport,NJ,39.31597986,-74.52636222,RES1,3001,,22,NE,2001,2001,3103,4,1,1551.441023,1551.441023,3505,NO,61.67,75.06,3,-2.85,6106,113.112811,122.98298,132.663006,139.209281,I,Above,Flat,0,5701,,68.3657494,0,0,,,,1,1,,0.03,nav,1,2001,4,, 19106,NJBF000052594,2807 SUNSET AVE,Longport,NJ,39.31585823,-74.52642691,RES1,3001,,21,NE,2000,2000,3103,4,1,2041.591704,2041.591704,3505,NO,60.94,75.1,3,1.56,6106,113.113321,122.983276,132.663188,139.209488,I,Above,Flat,0,5701,,68.01817741,0,0,,,,1,1,,0.03,nav,1,2000,4,, 19107,NJBF000052414,101 SO MANOR AVE,Longport,NJ,39.31454325,-74.52214046,RES1,3001,,18,NE,1970,1970,3103,1,1,1681.761099,1681.761099,3505,NO,15.62,21.22,3,1.43,6106,113.225956,123.073593,132.754597,139.311719,I,Above,Hip,0,5701,,18.42195714,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 19108,NJBF000053728,204 NO 33RD AVE,Longport,NJ,39.32105956,-74.5233048,RES1,3001,,21,NE,2008,2008,3102,3,1,1950.873176,1950.873176,3505,NO,39.09,51.31,3,5.63,6106,113.10019,122.977161,132.661712,139.207245,I,Above,Hip,0,5701,,45.20441221,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 19109,NJBF000052750,3014 VENTNOR AVE,Longport,NJ,39.31690025,-74.52290661,RES1,3001,,18,NE,1955,1955,3102,1,1,1562.856393,1562.856393,3505,NO,10.56,19.28,3,-0.53,6106,113.172843,123.032595,132.714853,139.267449,I,Above,Hip,0,5701,,14.91786665,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19110,NJBF000051427,108 S 15TH AVE,Longport,NJ,39.30646639,-74.53369451,RES1,3001,,21,NE,1999,1999,3103,3,1,3009.053918,3009.053918,3505,NO,55.22,66.68,3,-0.36,6106,113.108113,122.968085,132.636976,139.179374,I,Above,Gable,0,5701,,60.94994088,0,0,,,,1,1,,0.03,nav,1,1999,3,, 19111,NJBF000052978,4 NO 32ND AVE,Longport,NJ,39.31808576,-74.52207953,RES1,3001,,19,NE,1987,1987,3102,2,1,1780.59802,1780.59802,3505,NO,38.45,45.61,3,2.83,6106,113.172364,123.033222,132.716649,139.269423,I,Above,Hip,0,5701,,42.02698935,0,0,,,,1,1,,0.03,nav,1,1987,2,, 19112,NJBF000053423,1 NO 36TH AVE,Longport,NJ,39.31987541,-74.5186706,RES1,3001,,18,NE,1973,1973,3102,1,1,1678.493216,1678.493216,3505,NO,17.18,25.04,3,-1.02,6106,113.21873,123.072148,132.758415,139.31601,I,Above,Gable,0,5701,,21.11003966,0,0,,,,1,1,,0.03,nav,1,1973,1,, 19113,NJBF000051680,2004 ATLANTIC AVE,Longport,NJ,39.30989458,-74.52971875,RES1,3001,,21,NE,2004,2004,3102,3,1,2315.661171,2315.661171,3505,NO,37.89,44.68,3,-2.49,6106,113.13717,122.996268,132.670015,139.216786,I,Above,Hip,0,5701,,41.28405465,0,0,,,,1,1,,0.03,nav,1,2004,3,, 19114,NJBF000051342,105 SO 12TH AVE,Longport,NJ,39.3051571,-74.53569281,RES1,3001,,20,NE,1996,1996,3103,5,1,2567.625188,2567.625188,3505,NO,92.96,102.62,3,6.1,6106,113.087334,122.949161,132.615949,139.155642,I,Above,Flat,0,5701,,97.79265533,0,0,,,,1,1,,0.03,nav,1,1996,5,, 19115,NJBF000052917,103 SO 36TH AVE,Longport,NJ,39.31777297,-74.51668585,RES1,3001,,18,NE,1958,1958,3103,2,1,1519.25551,1519.25551,3505,NO,30.07,41.42,3,-0.71,6106,113.293834,123.131365,132.817506,139.381867,I,Above,Hip,0,5701,,35.74361419,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 19116,NJBF000052943,21 SO 33RD AVE,Longport,NJ,39.31788877,-74.51980518,RES1,3001,,18,NE,1950,1950,3102,1,1,1179.185559,1179.185559,3505,NO,9.92,17.89,3,-2.56,6106,113.224561,123.075356,132.759834,139.317712,I,Above,Gable,0,5701,,13.9075541,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19117,NJBF000052872,2914 WINCHESTER AVE,Longport,NJ,39.31758389,-74.52508825,RES1,3001,,18,NE,1940,1940,3102,1,1,1595.762223,1595.762223,3505,NO,18.62,33.04,3,3.98,6106,113.115241,122.986458,132.668132,139.214981,I,Above,Gable,0,5701,,25.83148154,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 19118,NJBF000051584,115 SO 19TH AVE,Longport,NJ,39.30865343,-74.52980232,RES1,3001,,22,NE,2007,2007,3102,3,1,2412.465249,2412.465249,3505,NO,50.39,60.41,3,0.76,6106,113.155238,123.009578,132.682157,139.230208,I,Above,Flat,0,5701,,55.398073,0,1.2,,,,1,1,,0.03,nav,1,2007,3,, 19119,NJBF000052780,32 SO YARMOUTH AVE,Longport,NJ,39.31705576,-74.5202296,RES1,3001,,20,NE,2015,2015,3102,3,1,1383.150284,1383.150284,3505,NO,55.57,63.59,3,-2.34,6106,113.228193,123.077621,132.761344,139.319391,I,Above,Hip,0,5701,,59.57738663,0,0,,,,1,1,,0.03,nav,1,2015,3,, 19120,NJBF000052926,2939 SUNSET AVE,Longport,NJ,39.31783203,-74.52571088,RES1,3001,,20,NE,1980,1980,3103,2,1,2165.108798,2165.108798,3505,NO,37.93,51.19,3,8.13,6106,113.097972,122.972667,132.654219,139.199297,I,Above,Hip,0,5701,,44.55911581,0,0,,,,1,1,,0.03,nav,1,1980,2,, 19121,NJBF000052981,11 SO 33RD AV,Longport,NJ,39.31810726,-74.52001254,RES1,3001,,18,NE,1963,1963,3102,2,1,828.1923157,828.1923157,3505,NO,39.44,47.75,3,1.38,6106,113.216715,123.069174,132.753677,139.310835,I,Above,Gable,0,5701,,43.59416429,0,0,,,,1,1,,0.03,nav,1,1963,2,, 19122,NJBF000052630,2918 LONGPORT DRIVE,Longport,NJ,39.31610254,-74.5244107,RES1,3001,,18,NE,1950,1950,3102,1,1,1651.070295,1651.070295,3505,NO,15.12,25.18,3,-2.19,6106,113.15283,123.015623,132.696623,139.247027,I,Above,Hip,0,5701,,20.14954992,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19123,NJBF000052482,2707 SUNSET AVE,Longport,NJ,39.3150133,-74.52670826,RES1,3001,,20,NE,1981,1981,3103,3,1,1345.484121,1345.484121,3505,NO,54.14,66.74,3,2.25,6106,113.120516,122.988292,132.667476,139.214307,I,Above,Flat,0,5701,,60.43996126,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 19124,NJBF000053169,15 SO 36TH AVE,Longport,NJ,39.3189584,-74.5178674,RES1,3001,,18,NE,1935,1935,3102,2,1,827.8731263,827.8731263,3505,NO,34.02,41.81,3,2.59,6106,113.250146,123.096891,132.783075,139.343594,I,Above,Hip,0,5701,,37.91405802,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 19125,NJBF000052655,33 NO OVERBROOK AVE,Longport,NJ,39.31630308,-74.52539557,RES1,3001,,18,NE,1950,1950,3102,1,1,1546.997482,1546.997482,3505,NO,10.62,16.93,3,-2.51,6106,113.128531,122.996068,132.67675,139.224723,I,Above,Gable,0,5701,,13.77220427,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19126,NJBF000054294,,Longport,NJ,39.32298674,-74.52248121,RES1,3001,,NaN,NE,1969,0,3103,5,1,2388.552058,2388.552058,3505,NO,65.08,73.73,3,-0.5,6106,113.088692,122.969264,132.655181,139.199322,I,Above,Gable,0,5701,,69.40735519,0,0,,,,1,1,,0.03,nav,1,1969,5,, 19127,NJBF000052712,3117 PACIFIC AVE,Longport,NJ,39.3166705,-74.520899,RES1,3001,,21,NE,2004,2004,3102,3,1,1546.376051,1546.376051,3505,NO,44.66,56.02,3,8.83,6106,113.219691,123.070403,132.753523,139.31066,I,Above,Flat,0,5701,,50.33988767,0,0,,,,1,1,,0.03,nav,1,2004,3,, 19128,NJBF000053145,17 NO YARMOUTH AVE,Longport,NJ,39.3188904,-74.52154934,RES1,3001,,18,NE,1950,1950,3102,2,1,1675.946089,1675.946089,3505,NO,31.99,40.14,3,-0.31,6106,113.17147,123.033154,132.717337,139.270136,I,Above,Flat,0,5701,,36.06448334,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19129,NJBF000053366,3100 SUNSET AVE,Longport,NJ,39.31966663,-74.52463404,RES1,3001,,18,NE,1950,1950,3102,1,1,2153.324465,2153.324465,3505,NO,26.89,39.67,3,8.81,6106,113.092827,122.970091,132.653247,139.197974,I,Above,Hip,0,5701,,33.27787744,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19130,NJBF000052817,3315 ATLANTIC AV,Longport,NJ,39.31729,-74.5185015,RES1,3001,,18,NE,1959,1959,3102,2,1,1589.119112,1589.119112,3505,NO,41.4,48.5,3,8.22,6106,113.261958,123.105175,132.789984,139.351283,I,Above,Hip,0,5701,,44.95094487,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 19131,NJBF000051882,2203 ATLANTIC AV,Longport,NJ,39.31143112,-74.52878024,RES1,3001,,NaN,NE,1987,1987,3102,3,1,3274.227241,3274.227241,3505,NO,56.11,64.56,3,5.54,6106,113.132716,122.994407,132.669883,139.2168,I,Above,Gable,0,5701,,60.33452371,0,0,,,,1,1,,0.03,nav,1,1987,3,, 19132,NJBF000054128,209 NO 36TH AVE,Longport,NJ,39.32247636,-74.52114259,RES1,3001,,18,NE,1942,1942,3102,2,1,1004.367526,1004.367526,3505,NO,23.41,37.64,3,-2.47,6106,113.125518,122.998648,132.684981,139.233089,I,Above,Gable,0,5701,,30.52559272,0,0,,,,1,1,,0.03,nav,1,1942,2,, 19133,NJBF000054087,205 NO 36TH AVE,Longport,NJ,39.32235239,-74.52109299,RES1,3001,,19,NE,1985,1985,3102,2,1,1670.092445,1670.092445,3505,NO,22.77,37.66,3,-2.23,6106,113.128486,123.00096,132.687258,139.23569,I,Above,Flat,0,5701,,30.21307448,0,0,,,,1,1,,0.03,nav,1,1985,2,, 19134,NJBF000052143,18 SUNSET BLVD.,Longport,NJ,39.3130992,-74.53659261,RES1,3001,,19,NE,1990,1990,3102,2,1,1272.829957,1272.829957,3507,NO,34.39,48.83,1,1.83,6106,112.940099,122.838736,132.51277,139.039308,I,Above,Gable,0,5701,,41.61084893,0,0,,,,1,1,,0.03,nav,1,1990,2,, 19135,NJBF000052321,8 SUNSET BLVD.,Longport,NJ,39.31395343,-74.53543034,RES1,3001,,16,NE,1965,1963,3102,2,1,1952.923029,1952.923029,3507,NO,30.14,36.6,1,-0.43,6106,112.951102,122.848829,132.523917,139.05197,I,Above,Hip,0,5701,,33.37019799,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19136,NJBF000052396,50 SUNSET BLVD.,Longport,NJ,39.31441487,-74.53364586,RES1,3001,,17,NE,1978,1978,3102,2,1,1710.824923,1710.824923,3507,NO,30.23,37.98,1,1.48,6106,112.98168,122.874404,132.550438,139.082106,I,Above,Flat,0,5701,,34.10801709,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 19137,NJBF000052348,104 HOSPITALITY DRIVE,Longport,NJ,39.31410348,-74.53686232,RES1,3001,,18,NE,1997,1997,3102,2,1,1846.642182,1846.642182,3507,NO,27.45,40.58,1,1.48,6106,112.91831,122.822153,132.496925,139.021195,I,Above,Flat,0,5701,,34.01369399,0,0,,,,1,1,,0.03,nav,1,1997,2,, 19138,NJBF000052130,,Longport,NJ,39.31304513,-74.53806939,COM8,3001,,NaN,ME,1969,0,3401,2,1,2242.761823,2242.761823,3507,NO,30.07,38.35,1,0.99,6106,112.909724,122.813737,132.487295,139.010256,I,Above,Gable,0,NaN,,34.21140435,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19139,NJBF000052309,27 SEAVIEW DRIVE,Longport,NJ,39.31389179,-74.5335176,RES1,3001,,18,NE,1974,1974,3102,2,1,1942.629169,1942.629169,3507,NO,29.8,43.95,1,-0.4,6106,112.992723,122.882815,132.558484,139.091257,I,Above,Hip,0,5701,,36.87706527,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 19140,NJBF000052229,26 SEAVIEW DRIVE,Longport,NJ,39.31350062,-74.53312651,RES1,3001,,20,NE,1986,1986,3102,2,1,4128.041795,4128.041795,3507,NO,37.28,48.98,1,-0.75,6106,113.007266,122.894245,132.569738,139.104026,I,Above,Flat,0,5701,,43.13322314,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 19141,NJBF000052370,19 SEAVIEW DRIVE,Longport,NJ,39.31422359,-74.5331207,RES1,3001,,17,NE,1972,1972,3102,2,1,1848.596828,1848.596828,3507,NO,34.06,46.54,1,1.85,6106,112.995896,122.8858,132.561866,139.095086,I,Above,Gable,0,5701,,40.30105755,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 19142,NJBF000052220,19 SUNSET BLVD.,Longport,NJ,39.31346743,-74.53675771,RES1,3001,,19,NE,1998,1998,3102,1,1,1309.449678,1309.449678,3507,NO,12.52,23.14,1,1.69,6106,112.930703,122.831502,132.50579,139.03134,I,Above,Gable,0,5701,,17.82970453,0,0,,,,1,1,,0.03,nav,1,1998,1,, 19143,NJBF000052091,40 SEAVIEW DRIVE,Longport,NJ,39.31287072,-74.53425678,RES1,3001,,20,NE,2005,2005,3102,2,1,2992.815018,2992.815018,3507,NO,28.6,42.16,1,0.5,6106,112.993293,122.882048,132.55664,139.089181,I,Above,Hip,0,5701,,35.38257475,0,0,,,,1,1,,0.03,nav,1,2005,2,, 19144,NJBF000052428,51 SUNSET BLVD.,Longport,NJ,39.31461686,-74.53369853,RES1,3001,,18,NE,1977,1977,3102,2,1,1459.912633,1459.912633,3507,NO,31.14,36.78,1,2.47,6106,112.977341,122.871094,132.547266,139.078494,I,Above,Hip,0,5701,,33.95824125,0,0,,,,1,1,,0.03,nav,1,1977,2,, 19145,NJBF000052416,45 SUNSET BLVD.,Longport,NJ,39.31454523,-74.53434989,RES1,3001,,18,NE,1972,1972,3102,2,1,1686.712307,1686.712307,3507,NO,32.37,39.46,1,0.18,6106,112.964626,122.860614,132.536514,139.066275,I,Above,Gable,0,5701,,35.91212424,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 19146,NJBF000052487,9 SEAVIEW DRIVE,Longport,NJ,39.31506848,-74.53344932,RES1,3001,,17,NE,1975,1975,3102,2,1,1296.594387,1296.594387,3507,NO,25.31,38.33,1,0.38,6106,112.975506,122.87012,132.54672,139.07785,I,Above,Flat,0,5701,,31.82139322,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 19147,NJBF000052317,25 SEAVIEW DRIVE,Longport,NJ,39.3139385,-74.533328,RES1,3001,,17,NE,1974,1974,3102,2,1,1329.125864,1329.125864,3507,NO,33.32,40.14,1,-0.6,6106,112.996035,122.885578,132.561348,139.094506,I,Above,Flat,0,5701,,36.72870211,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 19148,NJBF000053092,,Longport,NJ,39.31863547,-74.52450087,RES1,3001,,NaN,NE,1969,0,3102,2,1,1380.143107,1380.143107,3505,NO,40.57,46.15,3,6.67,6106,113.111623,122.98445,132.667053,139.213673,I,Above,Hip,0,5701,,43.36321508,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19149,NJBF000053939,3300 AMHERST AVE,Longport,NJ,39.32185959,-74.5235668,RES1,3001,,18,NE,1930,1930,3102,1,1,1201.685082,1201.685082,3505,NO,11.43,22.82,3,-0.72,6106,113.082282,122.963283,132.648129,139.191712,I,Above,Flat,0,5701,,17.12392537,0,0,,,,1,1,,0.03,nav,1,1930,1,, 19150,NJBF000053250,4 NO 34TH AV,Longport,NJ,39.31925546,-74.52034347,RES1,3001,,20,NE,2008,2008,3102,2,1,2059.680846,2059.680846,3505,NO,29.56,41.33,3,0.09,6106,113.191969,123.050036,132.735055,139.289948,I,Above,Hip,0,5701,,35.44730899,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 19151,NJBF000051611,2003 BEACH TERRCE,Longport,NJ,39.30902039,-74.52870521,RES1,3001,,22,NE,1989,1989,3102,3,1,2257.321086,2257.321086,3505,NO,36.95,50.31,3,0.31,6106,113.172662,123.02429,132.697678,139.247584,I,Above,Flat,0,5701,,43.631451,0,0,,,,1,1,,0.03,nav,1,1989,3,, 19152,NJBF000051586,103 SO 18TH AVE,Longport,NJ,39.30866206,-74.53133074,RES1,3001,,18,NE,1955,1955,3103,3,1,1914.540757,1914.540757,3505,NO,33.24,45.34,3,1.67,6106,113.122691,122.982903,132.654861,139.199674,I,Above,Hip,0,5701,,39.29027791,0,1.2,,,,1,1,,0.03,nav,1,1955,3,, 19153,NJBF000051429,107 SO 15TH AVE,Longport,NJ,39.30648107,-74.53298463,RES1,3001,,19,NE,1965,1965,3103,2,1,1050.194442,1050.194442,3505,NO,25.67,31.14,3,-2.06,6106,113.12283,122.980216,132.649395,139.193288,I,Above,Gable,0,5701,,28.40275841,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19154,NJBF000051441,107 SO 15TH AVE,Longport,NJ,39.30656127,-74.5328098,RES1,3001,,19,NE,1965,1965,3103,2,1,1005.165938,1005.165938,3505,NO,21.74,32.54,3,-2.73,6106,113.125228,122.982294,132.651623,139.195791,I,Above,Gable,0,5701,,27.14229594,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19155,NJBF000053016,15 SO 34TH AVE,Longport,NJ,39.3182698,-74.51888811,RES1,3001,,18,NE,1960,1960,3102,2,1,1137.550826,1137.550826,3505,NO,30.35,37.35,3,2.9,6106,113.238554,123.086988,132.772196,139.331491,I,Above,Gable,0,5701,,33.84777879,0,0,,,,1,1,,0.03,nav,1,1960,2,, 19156,NJBF000052558,,Longport,NJ,39.31556079,-74.52182933,RES1,3001,,NaN,NE,1950,0,3102,2,1,615.7063023,615.7063023,3505,NO,37.5,51.11,3,8.52,6106,113.216827,123.067107,132.748995,139.30556,I,Above,Gable,0,5701,,44.30811559,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19157,NJBF000052367,102 SO MANOR AVE,Longport,NJ,39.3142165,-74.5223035,RES1,3001,,19,NE,1950,1950,3103,1,1,1204.329371,1204.329371,3505,NO,21.12,32.1,3,3.79,6106,113.227508,123.074549,132.755232,139.312392,I,Above,Hip,0,5701,,26.60806992,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19158,NJBF000051378,117 SO 14TH AVE,Longport,NJ,39.30577672,-74.53354741,RES1,3001,,23,NE,2006,2006,3103,3,1,3894.253432,3894.253432,3505,NO,32.74,41.95,3,-0.87,6106,113.122368,122.978897,132.647138,139.190673,I,Above,Gable,0,5701,,37.34337394,0,1.2,,,,1,1,,0.03,nav,1,2006,3,, 19159,NJBF000052581,,Longport,NJ,39.3157286,-74.52248711,RES1,3001,,NaN,NE,1969,0,3102,2,1,949.6050585,949.6050585,3505,NO,38.13,47.17,3,2.58,6106,113.20005,123.053635,132.735308,139.290299,I,Above,Gable,0,5701,,42.6498742,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19160,NJBF000053204,3200 WINCHESTER AVE,Longport,NJ,39.31906689,-74.52248557,RES1,3001,,18,NE,1960,1960,3102,1,1,936.1549747,936.1549747,3505,NO,21.39,29.99,3,6.03,6106,113.148488,123.014684,132.698506,139.248991,I,Above,Flat,0,5701,,25.6875301,0,0,,,,1,1,,0.03,nav,1,1960,1,, 19161,NJBF000051390,,Longport,NJ,39.30598964,-74.53457043,RES1,3001,,NaN,NE,1969,0,3103,5,1,1903.476078,1903.476078,3505,NO,60.56,70.41,3,8.02,6106,113.097402,122.958619,132.626693,139.16779,I,Above,Flat,0,5701,,65.48632616,0,0,,,,1,1,,0.03,nav,1,1969,5,, 19162,NJBF000051677,2002 ATLANTIC AVE,Longport,NJ,39.30980654,-74.52986258,RES1,3001,,22,NE,1996,1996,3102,2,1,4948.61043,4948.61043,3505,NO,34.95,44.42,3,0.1,6106,113.135514,122.994808,132.668416,139.214986,I,Above,Hip,0,5701,,39.68459708,0,0,,,,1,1,,0.03,nav,1,1996,2,, 19163,NJBF000052324,2805 ATLANTIC AVE,Longport,NJ,39.31395784,-74.52407083,RES1,3001,,18,NE,1950,1950,3102,1,1,1836.487655,1836.487655,3505,NO,17.55,29.92,3,6.52,6106,113.193603,123.046724,132.726342,139.28017,I,Above,Hip,0,5701,,23.73708562,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19164,NJBF000051426,1305 ATLANTIC AVE,Longport,NJ,39.30645497,-74.5353385,RES1,3001,,NaN,NE,1990,1982,3103,2,1,3167.394227,3167.394227,3505,NO,44.78,59.17,3,7.8,6106,113.073723,122.939742,132.608015,139.146861,I,Above,Hip,0,5701,,51.9760987,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 19165,NJBF000053995,200 NO 36TH AVE,Longport,NJ,39.322041,-74.52126833,RES1,3001,,18,NE,1975,1975,3102,2,1,1704.508404,1704.508404,3505,NO,29.49,36.31,3,5.35,6106,113.129408,123.001491,132.687546,139.236104,I,Above,Gable,0,5701,,32.89803594,0,0,,,,1,1,,0.03,nav,1,1975,2,, 19166,NJBF000052951,5 SO YARMOUTH AVE,Longport,NJ,39.31794749,-74.52065714,RES1,3001,,20,NE,2017,2017,3102,3,1,1155.893537,1155.893537,3505,NO,54.5,65.98,3,5.38,6106,113.20525,123.059758,132.743823,139.299834,I,Above,Gable,0,5701,,60.24045399,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19167,NJBF000052956,8 NO WOODCREST AVE,Longport,NJ,39.31795952,-74.52270563,RES1,3001,,18,NE,1955,1955,3102,1,1,1050.18637,1050.18637,3505,NO,20.35,27.72,3,2.28,6106,113.16079,123.023735,132.706773,139.258361,I,Above,Gable,0,5701,,24.03597901,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19168,NJBF000053098,19 NO 32ND AVE,Longport,NJ,39.31869027,-74.52211266,RES1,3001,,18,NE,1952,1952,3102,2,1,2123.481468,2123.481468,3505,NO,19.65,29.49,3,-2.24,6106,113.16235,123.025606,132.709387,139.261239,I,Above,Hip,0,5701,,24.57033675,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 19169,NJBF000052589,21 NORTH 29TH AVE,Longport,NJ,39.31584122,-74.52562545,RES1,3001,,18,NE,1950,1950,3102,2,1,2438.193943,2438.193943,3505,NO,24.04,38.16,3,-2.41,6106,113.130813,122.997483,132.677741,139.225841,I,Above,Hip,0,5701,,31.09940262,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19170,NJBF000052250,2603 OBERON AVE,Longport,NJ,39.31361023,-74.5263134,RES1,3001,,19,NE,2007,2007,3102,1,1,1330.562798,1330.562798,3505,NO,16.06,26.14,3,-0.25,6106,113.150999,123.011686,132.689996,139.239509,I,Above,Gable,0,5701,,21.1040872,0,1.1,,,,1,1,,0.03,nav,1,2007,1,, 19171,NJBF000051714,110 SO 22ND AVE,Longport,NJ,39.31016822,-74.52814221,RES1,3001,,NaN,NE,1895,1895,3102,3,1,2697.762683,2697.762683,3505,NO,51.38,64.87,3,7.64,6106,113.166357,123.020469,132.695131,139.244901,I,Above,Flat,0,5701,,58.12522267,0,0,,,,1,1,,0.03,nav,1,1895,3,, 19172,NJBF000053978,,Longport,NJ,39.32198413,-74.52156965,RES1,3001,,NaN,NE,1969,0,3102,2,1,1029.216198,1029.216198,3505,NO,28.19,39.38,3,4.18,6106,113.123718,122.996855,132.68273,139.230697,I,Above,Flat,0,5701,,33.78361761,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19173,NJBF000051270,11 POINT DRIVE,Longport,NJ,39.30398673,-74.53661934,RES1,3001,,22,NE,2001,2001,3103,3,1,2056.671998,2056.671998,3505,NO,57.64,64.53,3,7.01,6106,113.086983,122.947203,132.612388,139.151523,I,Above,Flat,0,5701,,61.08283641,0,0,,,,1,1,,0.03,nav,1,2001,3,, 19174,NJBF000053192,3107 WINCHESTER AVE,Longport,NJ,39.31903702,-74.52327716,RES1,3001,,18,NE,1955,1955,3102,1,1,936.6847748,936.6847748,3505,NO,17.82,26.9,3,1.79,6106,113.131853,123.001184,132.684605,139.233375,I,Above,Hip,0,5701,,22.35743313,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19175,NJBF000053143,,Longport,NJ,39.3188875,-74.520729,RES1,3001,,NaN,NE,1969,0,3102,2,1,1359.623863,1359.623863,3505,NO,25.52,30.75,3,3.86,6106,113.189239,123.047541,132.732143,139.28672,I,Above,Flat,0,5701,,28.13304169,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19176,NJBF000051382,103 SO 13TH AV,Longport,NJ,39.30583991,-74.5350059,RES1,3001,,21,NE,1998,1998,3103,2,1,3271.300746,3271.300746,3505,NO,37.92,49.16,3,6.04,6106,113.090669,122.952863,132.620621,139.16096,I,Above,Hip,0,5701,,43.53935387,0,0,,,,1,1,,0.03,nav,1,1998,2,, 19177,NJBF000051266,10 POINT DRIVE,Longport,NJ,39.3039597,-74.5367943,RES1,3001,,20,NE,1965,1965,3103,4,1,2874.365734,2874.365734,3505,NO,58.02,71.96,3,7.92,6106,113.083763,122.944502,132.609595,139.148385,I,Above,Flat,0,5701,,64.98961298,0,0,,,,1,1,,0.03,nav,1,1965,4,, 19178,NJBF000053050,4 NO YARMOUTH AVE,Longport,NJ,39.3184409,-74.52159481,RES1,3001,,19,NE,2015,2015,3102,2,1,814.7952127,814.7952127,3505,NO,21.64,35.11,3,-1.78,6106,113.177377,123.037577,132.721466,139.274797,I,Above,Gable,0,5701,,28.3743373,0,0,,,,1,1,,0.03,nav,1,2015,2,, 19179,NJBF000053045,,Longport,NJ,39.31842763,-74.51868444,RES1,3001,,NaN,NE,1969,0,3102,2,1,1534.536053,1534.536053,3505,NO,39.86,54.63,3,6.86,6106,113.24055,123.088726,132.774142,139.333656,I,Above,Flat,0,5701,,47.24481592,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19180,NJBF000053756,3304 MONMOUTH AVE,Longport,NJ,39.32115211,-74.52213596,RES1,3001,,18,NE,1974,1974,3102,2,1,1522.988348,1522.988348,3505,NO,30.8,41.63,3,0.43,6106,113.124118,122.996579,132.681743,139.229795,I,Above,Hip,0,5701,,36.21532683,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 19181,NJBF000053830,116 NO 36TH AVE,Longport,NJ,39.32143073,-74.52073087,RES1,3001,,19,NE,2010,2010,3102,2,1,1278.394888,1278.394888,3505,NO,21.47,35.92,3,-2.64,6106,113.150343,123.017977,132.703994,139.254758,I,Above,Gable,0,5701,,28.69300807,0,0,,,,1,1,,0.03,nav,1,2010,2,, 19182,NJBF000053528,106 NO COLGATE AVE,Longport,NJ,39.32027257,-74.52178376,RES1,3001,,19,NE,1996,1996,3102,1,1,1290.210819,1290.210819,3505,NO,17.81,28.99,3,4.33,6106,113.14518,123.012954,132.697816,139.248047,I,Above,Gable,0,5701,,23.39951208,0,0,,,,1,1,,0.03,nav,1,1996,1,, 19183,NJBF000053452,125 NO 32ND AVE,Longport,NJ,39.31999386,-74.52337755,RES1,3001,,18,NE,2013,2013,3102,2,1,1344.467416,1344.467416,3505,NO,24.3,38.81,3,2.67,6106,113.114952,122.988274,132.672203,139.219282,I,Above,Gable,0,5701,,31.55266444,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 19184,NJBF000053439,109 NO YARMOUTH AVE,Longport,NJ,39.31993817,-74.52252869,RES1,3001,,18,NE,1950,1950,3102,1,1,1006.978786,1006.978786,3505,NO,18.98,26.65,3,2.19,6106,113.134182,123.003795,132.688102,139.237182,I,Above,Gable,0,5701,,22.8157537,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19185,NJBF000053292,123 NO 31ST AVE,Longport,NJ,39.31940482,-74.52436344,RES1,3001,,21,NE,2006,2006,3102,3,1,1550.130087,1550.130087,3505,NO,51.81,58.89,3,2.65,6106,113.10272,122.977887,132.661015,139.206771,I,Above,Gable,0,5701,,55.34925769,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 19186,NJBF000051843,,Longport,NJ,39.31112356,-74.52883286,RES1,3001,,NaN,NE,1950,0,3102,2,1,3396.975925,3396.975925,3505,NO,32.33,40.99,3,7.16,6106,113.13646,122.997118,132.672311,139.21949,I,Above,Flat,0,5701,,36.66325458,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19187,NJBF000053288,8 NO 34TH AVE,Longport,NJ,39.3193903,-74.52047875,RES1,3001,,20,NE,2004,2004,3102,2,1,1667.588402,1667.588402,3505,NO,41.64,47.7,3,6.02,6106,113.186958,123.046083,132.73111,139.285518,I,Above,Hip,0,5701,,44.66944921,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 19188,NJBF000052419,8 NO 28TH AVE,Longport,NJ,39.31456066,-74.52583365,RES1,3001,,45,NE,1967,1967,3102,2,2,2082.489979,2082.489979,3505,NO,33.61,42.53,3,-0.01,6106,113.146342,123.00886,132.688102,139.237439,I,Above,Gable,0,5701,,38.07194705,0,0,,,,1,1,,0.03,nav,1,1967,2,, 19189,NJBF000052894,15 SO YARMOUTH AVE,Longport,NJ,39.31767806,-74.52039725,RES1,3001,,18,NE,1957,1957,3102,1,1,1105.772751,1105.772751,3505,NO,26.9,38.94,3,8.53,6106,113.215008,123.067445,132.751478,139.308389,I,Above,Gable,0,5701,,32.91771749,0,0,,,,1,1,,0.03,nav,1,1957,1,, 19190,NJBF000053552,124 NO 33RD AVE,Longport,NJ,39.32036439,-74.52268325,RES1,3001,,18,NE,1951,1951,3102,1,1,2062.372845,2062.372845,3505,NO,19.65,27.27,3,4.97,6106,113.124318,122.996145,132.680615,139.228686,I,Above,Gable,0,5701,,23.45877744,0,0,,,,1,1,,0.03,nav,1,1951,1,, 19191,NJBF000052878,24 SO 33RD AVE,Longport,NJ,39.31760893,-74.52005664,RES1,3001,,18,NE,1958,1958,3102,1,1,2109.855931,2109.855931,3505,NO,19.32,29.91,3,1.28,6106,113.223417,123.074203,132.758372,139.316083,I,Above,Hip,0,5701,,24.61114036,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 19192,NJBF000052792,18 NO 30TH AVE,Longport,NJ,39.31714642,-74.52433755,RES1,3001,,18,NE,1950,1950,3102,2,1,994.0376719,994.0376719,3505,NO,31.65,45.64,3,7.55,6106,113.138194,123.004693,132.686428,139.23557,I,Above,Gable,0,5701,,38.64831406,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19193,NJBF000052778,14 N 30TH AVE,Longport,NJ,39.3170522,-74.52426963,RES1,3001,,20,NE,1990,1990,3102,3,1,1404.581748,1404.581748,3505,NO,63.42,72.75,3,5.34,6106,113.141117,123.006981,132.688686,139.238109,I,Above,Hip,0,5701,,68.08095111,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 19194,NJBF000052818,3017 VENTNOR AVE,Longport,NJ,39.31729193,-74.52304515,RES1,3001,,18,NE,1971,1971,3102,1,1,1870.516238,1870.516238,3505,NO,19.91,26.03,3,7.82,6106,113.163799,123.025601,132.708048,139.259818,I,Above,Flat,0,5701,,22.96812437,0,0,,,,1,1,,0.03,nav,1,1971,1,, 19195,NJBF000052762,32 NO MANOR AVE,Longport,NJ,39.31694911,-74.524945,RES1,3001,,18,NE,1948,1948,3102,2,1,868.5992462,868.5992462,3505,NO,36.54,48.09,3,2.6,6106,113.128181,122.996386,132.677709,139.225783,I,Above,Gable,0,5701,,42.31152479,0,0,,,,1,1,,0.03,nav,1,1948,2,, 19196,NJBF000052705,24 SO WOODCREST AVE,Longport,NJ,39.31664732,-74.52146544,RES1,3001,,20,NE,2008,2008,3102,3,1,1163.38224,1163.38224,3505,NO,60.1,68.52,3,7.14,6106,113.207851,123.060778,132.743591,139.299577,I,Above,Hip,0,5701,,64.30999273,0,0,,,,1,1,,0.03,nav,1,2008,3,, 19197,NJBF000052238,2601 OBERON AVE,Longport,NJ,39.31354794,-74.52640215,RES1,3001,,18,NE,1937,1937,3102,1,1,1821.003987,1821.003987,3505,NO,16.42,21.6,3,2.54,6106,113.150069,123.010864,132.689086,139.238485,I,Above,Gable,0,5701,,19.01095772,0,1.1,,,,1,1,,0.03,nav,1,1937,1,, 19198,NJBF000052241,111 SO 29TH AVE,Longport,NJ,39.3135715,-74.522713,RES1,3001,,22,NE,1993,1993,3103,3,1,2152.214164,2152.214164,3505,NO,34.27,39.5,3,-1.86,6106,113.228786,123.074974,132.754968,139.312025,I,Above,Gable,0,5701,,36.88616477,0,1.1,,,,1,1,,0.03,nav,1,1993,3,, 19199,NJBF000052524,23 SO 30TH AVE,Longport,NJ,39.3153238,-74.52204841,RES1,3001,,18,NE,1951,1951,3102,2,1,1632.762955,1632.762955,3505,NO,30.8,37.81,3,4.51,6106,113.215791,123.066052,132.747662,139.304058,I,Above,Gable,0,5701,,34.30689762,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 19200,NJBF000052233,111 SO 28TH AVE.,Longport,NJ,39.31353361,-74.52384933,RES1,3001,,22,NE,2013,2013,3103,3,1,2246.046107,2246.046107,3505,NO,48.09,54.48,3,5.93,6106,113.205,123.055583,132.734987,139.289771,I,Above,Gable,0,5701,,51.28347342,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19201,NJBF000052196,111 SO 28TH AVE.,Longport,NJ,39.313346,-74.52359658,RES1,3001,,22,NE,2013,2013,3103,3,1,2241.97655,2241.97655,3505,NO,55.18,68.17,3,0.95,6106,113.213349,123.062192,132.741576,139.297092,I,Above,Gable,0,5701,,61.67498152,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19202,NJBF000052152,111 SO 28TH AVE.,Longport,NJ,39.31314201,-74.52335224,RES1,3001,,22,NE,2013,2013,3103,3,1,2510.915735,2510.915735,3505,NO,44.83,53.01,3,-0.6,6106,113.221797,123.068868,132.748215,139.304458,I,Above,Flat,0,5701,,48.91822414,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19203,NJBF000052160,111 SO 28TH AVE.,Longport,NJ,39.31316827,-74.52292409,RES1,3001,,22,NE,2013,2013,3103,3,1,3751.083884,3751.083884,3505,NO,43.53,58.53,3,4.44,6106,113.230572,123.076035,132.755615,139.312693,I,Above,Flat,0,5701,,51.0317587,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19204,NJBF000052224,111 SO 28TH AVE.,Longport,NJ,39.31348873,-74.5233303,RES1,3001,,22,NE,2013,2013,3103,3,1,2720.535641,2720.535641,3505,NO,52.31,64.38,3,-0.5,6106,113.216839,123.065174,132.744798,139.300696,I,Above,Gable,0,5701,,58.3427884,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19205,NJBF000052243,111 SO 28TH AVE.,Longport,NJ,39.31358762,-74.52344346,RES1,3001,,22,NE,2013,2013,3103,3,1,2052.845786,2052.845786,3505,NO,64.26,71.3,3,7.36,6106,113.212866,123.062037,132.741681,139.297236,I,Above,Flat,0,5701,,67.78308253,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19206,NJBF000052245,5 SO 27TH AV,Longport,NJ,39.31359438,-74.525192,RES1,3001,,18,NE,1938,1938,3102,2,1,1279.769513,1279.769513,3505,NO,35.85,46.39,3,8.86,6106,113.175264,123.031435,132.710245,139.262162,I,Above,Gable,0,5701,,41.1175765,0,0,,,,1,1,,0.03,nav,1,1938,2,, 19207,NJBF000052516,2921 PACIFIC AVE,Longport,NJ,39.31525585,-74.52329903,RES1,3001,,18,NE,1950,1950,3102,1,1,1073.157672,1073.157672,3505,NO,11.6,21.18,3,0.08,6106,113.189932,123.04498,132.725921,139.279791,I,Above,Flat,0,5701,,16.38741613,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19208,NJBF000051637,2009 BEACH TERRACE,Longport,NJ,39.30931677,-74.52835327,RES1,3001,,22,NE,1988,1988,3102,3,1,2062.189231,2062.189231,3505,NO,62.23,71.17,3,5,6106,113.175408,123.026888,132.700699,139.250997,I,Above,Flat,0,5701,,66.69994199,0,1.2,,,,1,1,,0.03,nav,1,1988,3,, 19209,NJBF000051419,112 SO 15TH AV,Longport,NJ,39.30636339,-74.53356474,RES1,3001,,22,NE,2016,2016,3103,3,1,2211.076586,2211.076586,3505,NO,46.58,53.57,3,-2.59,6106,113.112515,122.971571,132.640407,139.183207,I,Above,Gable,0,5701,,50.07705811,0,1.2,,,,1,1,,0.03,nav,1,2016,3,, 19210,NJBF000052600,2908 LONGPORT DRIVE,Longport,NJ,39.31588684,-74.52476542,RES1,3001,,19,NE,1981,1981,3102,2,1,2597.741126,2597.741126,3505,NO,38.61,51.92,3,2.98,6106,113.14858,123.011968,132.692653,139.242574,I,Above,Hip,0,5701,,45.26483737,0,1.2,,,,1,1,,0.03,nav,1,1981,2,, 19211,NJBF000052889,,Longport,NJ,39.31764879,-74.52577678,RES1,3001,,NaN,NE,1969,0,3103,4,1,1092.175315,1092.175315,3505,NO,84.76,93.84,3,7.27,6106,113.099393,122.973653,132.655058,139.200258,I,Above,Flat,0,5701,,89.30211631,0,0,,,,1,1,,0.03,nav,1,1969,4,, 19212,NJBF000053841,3211 SUNSET AVE,Longport,NJ,39.32147045,-74.52402466,RES1,3001,,20,NE,1978,1978,3103,2,1,1989.308085,1989.308085,3505,NO,39.87,54.58,3,3.18,6106,113.078318,122.959785,132.644215,139.187398,I,Above,Flat,0,5701,,47.22488787,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 19213,NJBF000051656,20TH & ATLANTIC AVES,Longport,NJ,39.30953289,-74.53030409,REL1,3001,,NaN,ME,1969,0,3401,2,1,7474.361918,7474.361918,3507,NO,30.16,35.54,1,0.02,6106,113.130525,122.990393,132.663572,139.209531,I,Above,Hip,0,NaN,,32.84977289,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19214,NJBF000052795,3 NO 30TH AVE,Longport,NJ,39.3171573,-74.52380083,RES1,3001,,20,NE,1921,1921,3102,2,1,2081.430843,2081.430843,3505,NO,37.86,44.71,3,8.98,6106,113.149593,123.013955,132.69595,139.246257,I,Above,Gable,0,5701,,41.28183054,0,1.2,,,,1,1,,0.03,nav,1,1921,2,, 19215,NJBF000053337,3501 VENTNOR AVE,Longport,NJ,39.31955055,-74.51925156,RES1,3001,,18,NE,1955,1955,3102,2,1,2490.960479,2490.960479,3505,NO,40,53.44,3,1.58,6106,113.211077,123.06572,132.751489,139.308302,I,Above,Gable,0,5701,,46.71946944,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 19216,NJBF000053539,115 NO 33RD AV,Longport,NJ,39.32031857,-74.52211004,RES1,3001,,18,NE,1945,1945,3102,1,1,849.545174,849.545174,3505,NO,14.37,27.59,3,3.29,6106,113.137415,123.006707,132.691433,139.240864,I,Above,Gable,0,5701,,20.97658768,0,0,,,,1,1,,0.03,nav,1,1945,1,, 19217,NJBF000053507,109 NO 33RD AVE,Longport,NJ,39.32020093,-74.5219998,RES1,3001,,19,NE,2016,2016,3102,1,1,1094.557526,1094.557526,3505,NO,26.22,36.73,3,6.83,6106,113.141604,123.010005,132.69472,139.24458,I,Above,Gable,0,5701,,31.47395258,0,0,,,,1,1,,0.03,nav,1,2016,1,, 19218,NJBF000053754,3301 MONMOUTH AV,Longport,NJ,39.32114881,-74.52293394,RES1,3001,,20,NE,2013,2013,3102,3,1,1877.715374,1877.715374,3505,NO,42.91,48.58,3,-1.32,6106,113.106867,122.982628,132.667403,139.213642,I,Above,Hip,0,5701,,45.74500574,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 19219,NJBF000051257,119 SO 11TH AVE,Longport,NJ,39.30383598,-74.53554342,RES1,3001,,22,NE,1988,1988,3103,4,1,2358.363719,2358.363719,3505,NO,68.38,79.05,3,-0.11,6106,113.111962,122.96763,132.63304,139.174655,I,Above,Flat,0,5701,,73.7112234,0,0,,,,1,1,,0.03,nav,1,1988,4,, 19220,NJBF000051736,101 SO 21ST AVE,Longport,NJ,39.31037863,-74.52902445,RES1,3001,,18,NE,1940,1940,3102,2,1,1817.055793,1817.055793,3505,NO,24.99,34.66,3,-0.69,6106,113.144235,123.002618,132.677086,139.224756,I,Above,Hip,0,5701,,29.82290958,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 19221,NJBF000051409,114 SO 15TH AV,Longport,NJ,39.30626259,-74.53346121,RES1,3001,,22,NE,2001,2001,3103,3,1,3334.343767,3334.343767,3505,NO,46.89,57.79,3,6.41,6106,113.116322,122.97457,132.643344,139.186485,I,Above,Hip,0,5701,,52.34233331,0,0,,,,1,1,,0.03,nav,1,2001,3,, 19222,NJBF000053134,6 SO 35TH AVE,Longport,NJ,39.31882695,-74.51909857,RES1,3001,,18,NE,1955,1955,3102,1,1,1328.976662,1328.976662,3505,NO,25.48,36.79,3,9,6106,113.225458,123.076814,132.762242,139.320368,I,Above,Gable,0,5701,,31.1375858,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19223,NJBF000053683,137 NO 33RD AVE,Longport,NJ,39.32087228,-74.52262145,RES1,3001,,18,NE,1952,1952,3102,1,1,2092.235165,2092.235165,3505,NO,22.42,28.67,3,5.85,6106,113.117884,122.991329,132.676107,139.22351,I,Above,Gable,0,5701,,25.54431243,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 19224,NJBF000053627,104 NO 35TH AVE,Longport,NJ,39.32066323,-74.52082968,RES1,3001,,18,NE,1945,1945,3102,1,1,1664.662377,1664.662377,3505,NO,18.74,30.67,3,0.33,6106,113.159897,123.025147,132.710706,139.262456,I,Above,Hip,0,5701,,24.70277695,0,0,,,,1,1,,0.03,nav,1,1945,1,, 19225,NJBF000053585,23 NO 35TH AVE,Longport,NJ,39.320492,-74.52015967,RES1,3001,,18,NE,1944,1944,3102,1,1,985.0743662,985.0743662,3505,NO,17.31,30.81,3,0.7,6106,113.177033,123.038878,132.724691,139.278177,I,Above,Gable,0,5701,,24.05896393,0,0,,,,1,1,,0.03,nav,1,1944,1,, 19226,NJBF000052423,2904 PACIFIC AVE,Longport,NJ,39.31459854,-74.52375061,RES1,3001,,20,NE,2015,2015,3102,3,1,1905.202684,1905.202684,3505,NO,38.2,46.38,3,5.62,6106,113.190458,123.044787,132.725034,139.278761,I,Above,Gable,0,5701,,42.29057468,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 19227,NJBF000052063,2505 ATLANTIC AVE,Longport,NJ,39.3127173,-74.52633353,RES1,3001,,21,NE,2017,2017,3102,3,1,1582.474865,1582.474865,3505,NO,46.08,58.96,3,3.02,6106,113.164601,123.02184,132.699442,139.250007,I,Above,Flat,0,5701,,52.51924835,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19228,NJBF000053205,118 NO 31ST AVE,Longport,NJ,39.31906866,-74.52459891,RES1,3001,,18,NE,1952,1952,3102,1,1,1682.0151,1682.0151,3505,NO,17.56,27.76,3,0.1,6106,113.102805,122.977673,132.660493,139.206231,I,Above,Flat,0,5701,,22.66443617,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19229,NJBF000052035,103 S 26TH AVE,Longport,NJ,39.31256081,-74.52509655,RES1,3001,,19,NE,1970,1970,3102,2,1,1630.142449,1630.142449,3505,NO,33.08,42.53,3,5.65,6106,113.193523,123.045253,132.723302,139.276635,I,Above,Gable,0,5701,,37.80400235,0,0,,,,1,1,,0.03,nav,1,1970,2,, 19230,NJBF000052821,3304 PACIFIC AVE,Longport,NJ,39.31730619,-74.51899772,RES1,3001,,20,NE,2008,2008,3102,3,1,1676.339566,1676.339566,3505,NO,38.02,47.1,3,-1.02,6106,113.250966,123.096282,132.780828,139.341099,I,Above,Hip,0,5701,,42.55994838,0,0,,,,1,1,,0.03,nav,1,2008,3,, 19231,NJBF000053935,123 NO 36TH AVE,Longport,NJ,39.32184314,-74.52058043,RES1,3001,,21,NE,2006,2006,3102,3,1,1814.594915,1814.594915,3505,NO,47.39,59.68,3,2.55,6106,113.147357,123.015852,132.702158,139.252593,I,Above,Flat,0,5701,,53.53754218,0,0,,,,1,1,,0.03,nav,1,2006,3,, 19232,NJBF000053636,3501 WINCHESTER AVE,Longport,NJ,39.32070579,-74.52032502,RES1,3001,,18,NE,1951,1951,3102,2,1,1710.257721,1710.257721,3505,NO,28.72,39.82,3,-1.01,6106,113.170193,123.033502,132.719346,139.272144,I,Above,Gable,0,5701,,34.26863042,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 19233,NJBF000052536,102 SO WOODCREST AVE,Longport,NJ,39.31542415,-74.52028303,RES1,3001,,22,NE,2004,2004,3103,3,1,2091.12915,2091.12915,3505,NO,48.03,58.97,3,-1.33,6106,113.252259,123.09575,132.778347,139.338221,I,Above,Flat,0,5701,,53.50159634,0,0,,,,1,1,,0.03,nav,1,2004,3,, 19234,NJBF000052090,,Longport,NJ,39.31286481,-74.52486391,RES1,3001,,NaN,NE,1969,0,3102,2,1,1737.033405,1737.033405,3505,NO,28.22,35.15,3,4.18,6106,113.193734,123.045737,132.724137,139.277601,I,Above,Hip,0,5701,,31.68364422,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19235,NJBF000052672,8 SO 31ST AVE.,Longport,NJ,39.3164445,-74.5220505,COM4,3001,,NaN,ME,1969,0,3401,2,1,853.7701088,853.7701088,3507,NO,31.77,45.69,1,0.1,6106,113.198341,123.052886,132.735266,139.290277,I,Above,Flat,0,NaN,,38.72646474,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19236,NJBF000051437,1307 ATLANTIC AVE,Longport,NJ,39.3065343,-74.53517148,RES1,3001,,20,NE,1988,1988,3103,2,1,3804.610657,3804.610657,3505,NO,28.39,34.47,3,-0.76,6106,113.075954,122.941689,132.610103,139.149217,I,Above,Flat,0,5701,,31.42861394,0,0,,,,1,1,,0.03,nav,1,1988,2,, 19237,NJBF000051570,1706 ATLANTIC AVE,Longport,NJ,39.30844547,-74.53172033,RES1,3001,,21,NE,1988,1988,3103,2,1,2020.062592,2020.062592,3505,NO,36.25,50.75,3,8.37,6106,113.117937,122.97873,132.650329,139.194571,I,Above,Gable,0,5701,,43.49778804,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 19238,NJBF000051980,,Longport,NJ,39.3121449,-74.5252637,RES1,3001,,NaN,NE,1969,0,3102,2,1,1334.873822,1334.873822,3505,NO,33.95,48.24,3,-0.57,6106,113.196494,123.047243,132.724879,139.278344,I,Above,Flat,0,5701,,41.09733987,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19239,NJBF000051962,,Longport,NJ,39.31202583,-74.52513483,RES1,3001,,NaN,NE,1969,0,3102,2,1,2162.935828,2162.935828,3505,NO,22.84,28.11,3,-2.76,6106,113.201127,123.050895,132.728497,139.282359,I,Above,Flat,0,5701,,25.47501767,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19240,NJBF000052425,104 SO EVERGREEN AVE,Longport,NJ,39.31460253,-74.5211232,RES1,3001,,22,NE,1992,1992,3103,4,1,2533.542032,2533.542032,3505,NO,86.21,100.76,3,8.75,6106,113.246901,123.090667,132.772239,139.331348,I,Above,Hip,0,5701,,93.48494988,0,0,,,,1,1,,0.03,nav,1,1992,4,, 19241,NJBF000053104,3310 VENTNOR AV,Longport,NJ,39.31871559,-74.51983666,RES1,3001,,NaN,NE,2017,2017,3102,3,1,1062.580618,1062.580618,3505,NO,58.01,72.29,3,6.2,6106,113.21118,123.06517,132.750137,139.306856,I,Above,Flat,0,5701,,65.14993682,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 19242,NJBF000052107,2409 OBERON AVE,Longport,NJ,39.31292293,-74.52734492,RES1,3001,,17,NE,1920,1920,3102,2,1,1319.23837,1319.23837,3505,NO,35.57,44.32,3,4.39,6106,113.139737,123.001784,132.679099,139.227253,I,Above,Hip,0,5701,,39.94378506,0,0,,,,1,1,,0.03,nav,1,1920,2,, 19243,NJBF000052786,3009 LONGPORT DRIVE,Longport,NJ,39.31710296,-74.52344125,RES1,3001,,18,NE,1940,1940,3102,1,1,2087.66993,2087.66993,3505,NO,22.35,30.92,3,4.15,6106,113.158188,123.020882,132.703015,139.254182,I,Above,Flat,0,5701,,26.63190006,0,0,,,,1,1,,0.03,nav,1,1940,1,, 19244,NJBF000052774,3005 LONGPORT DRIVE,Longport,NJ,39.31702754,-74.52353158,RES1,3001,,19,NE,2016,2016,3102,2,1,1592.783995,1592.783995,3505,NO,31.92,46.12,3,-0.29,6106,113.157389,123.020167,132.702207,139.253278,I,Above,Flat,0,5701,,39.01973019,0,0,,,,1,1,,0.03,nav,1,2016,2,, 19245,NJBF000052431,100 SO 30TH AVE,Longport,NJ,39.31463809,-74.52196714,RES1,3001,,19,NE,1970,1970,3103,2,1,1458.211677,1458.211677,3505,NO,36.72,49.61,3,2.62,6106,113.228198,123.075503,132.756664,139.31403,I,Above,Gable,0,5701,,43.16460228,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 19246,NJBF000052949,22 SO COLGATE AVE,Longport,NJ,39.3179326,-74.51957061,RES1,3001,,21,NE,2013,2013,3102,3,1,1656.697756,1656.697756,3505,NO,30.78,40.41,3,-1.88,6106,113.228945,123.078942,132.763573,139.321882,I,Above,Gable,0,5701,,35.59419925,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19247,NJBF000053060,22 NO 32ND AVE,Longport,NJ,39.318477,-74.52243831,RES1,3001,,19,NE,2014,2014,3102,3,1,1129.963036,1129.963036,3505,NO,45.06,52.74,3,4.02,6106,113.158606,123.022397,132.705888,139.257332,I,Above,Gable,0,5701,,48.90046969,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 19248,NJBF000052579,102 SO 32ND AVE,Longport,NJ,39.31570361,-74.51980324,RES1,3001,,21,NE,1997,1997,3103,6,1,2265.346476,2265.346476,3505,NO,91.92,100.5,3,2.47,6106,113.258276,123.100877,132.783924,139.344444,I,Above,Gable,0,5701,,96.20823589,0,0,,,,1,1,,0.03,nav,1,1997,6,, 19249,NJBF000053869,115 NO 36TH AVE,Longport,NJ,39.32157315,-74.5202953,RES1,3001,,18,NE,1945,1945,3102,1,1,1034.31437,1034.31437,3505,NO,11.76,22.82,3,-1.93,6106,113.157648,123.023979,132.710294,139.261803,I,Above,Hip,0,5701,,17.29011476,0,0,,,,1,1,,0.03,nav,1,1945,1,, 19250,NJBF000053788,120 NO 35TH AVE,Longport,NJ,39.32128247,-74.52141968,RES1,3001,,18,NE,1900,1900,3102,2,1,1136.269292,1136.269292,3505,NO,21.71,33.86,3,-2.69,6106,113.137662,123.007622,132.693212,139.24267,I,Above,Gable,0,5701,,27.78359038,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 19251,NJBF000053751,108 NO 36TH AVE,Longport,NJ,39.32113509,-74.52047291,RES1,3001,,18,NE,1950,1950,3102,2,1,1194.946932,1194.946932,3505,NO,39.04,46.52,3,4.44,6106,113.160447,123.025932,132.711928,139.263735,I,Above,Flat,0,5701,,42.7773081,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19252,NJBF000053725,106 NO 36TH AVE,Longport,NJ,39.32104516,-74.52035357,RES1,3001,,18,NE,1950,1950,3102,1,1,1159.863322,1159.863322,3505,NO,8.99,22.27,3,-2.02,6106,113.164399,123.029063,132.715072,139.267284,I,Above,Gable,0,5701,,15.62723329,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19253,NJBF000052534,9 NO OVERBROOK AVE,Longport,NJ,39.31540734,-74.52453885,RES1,3001,,NaN,NE,1951,1951,3102,2,1,1252.752474,1252.752474,3505,NO,31.37,38.54,3,2.43,6106,113.16092,123.021543,132.701997,139.253037,I,Above,Gable,0,5701,,34.95913828,0,0,,,,1,1,,0.03,nav,1,1951,2,, 19254,NJBF000053736,3203 SUNSET AVE,Longport,NJ,39.32109906,-74.52413732,RES1,3001,,22,NE,2009,2009,3103,2,1,5031.68489,5031.68489,3505,NO,24.98,33.13,3,-0.18,6106,113.081573,122.962132,132.646315,139.189862,I,Above,Hip,0,5701,,29.05513714,0,0,,,,1,1,,0.03,nav,1,2009,2,, 19255,NJBF000053621,3216 MONMOUTH AVE,Longport,NJ,39.320642,-74.523076,RES1,3001,,19,NE,1978,1978,3102,2,1,1372.994975,1372.994975,3505,NO,37.05,44.43,3,3.68,6106,113.111549,122.986029,132.670463,139.2172,I,Above,Hip,0,5701,,40.74169663,0,0,,,,1,1,,0.03,nav,1,1978,2,, 19256,NJBF000053706,120 NO 34TH AVE,Longport,NJ,39.32097301,-74.52193826,RES1,3001,,18,NE,1948,1948,3102,1,1,1052.605128,1052.605128,3505,NO,20.74,32.81,3,8.76,6106,113.131143,123.002126,132.687294,139.236081,I,Above,Hip,0,5701,,26.7777875,0,0,,,,1,1,,0.03,nav,1,1948,1,, 19257,NJBF000053492,119 NO YARMOUTH AVE,Longport,NJ,39.32014084,-74.52272842,RES1,3001,,19,NE,2016,2016,3102,3,1,868.8149247,868.8149247,3505,NO,37.33,43.89,3,2.26,6106,113.126761,122.997949,132.682273,139.230592,I,Above,Gable,0,5701,,40.60908239,0,0,,,,1,1,,0.03,nav,1,2016,3,, 19258,NJBF000053470,115 NO YARMOUTH AVE,Longport,NJ,39.32005593,-74.52262941,RES1,3001,,19,NE,2005,2005,3102,2,1,825.9519157,825.9519157,3505,NO,32.72,41.78,3,0.59,6106,113.130208,123.000671,132.684996,139.233669,I,Above,Hip,0,5701,,37.25247697,0,0,,,,1,1,,0.03,nav,1,2005,2,, 19259,NJBF000051889,109 SO 24TH AVE,Longport,NJ,39.31147876,-74.5260962,RES1,3001,,21,NE,2005,2005,3102,3,1,3356.508251,3356.508251,3505,NO,33.78,43.78,3,-1.12,6106,113.189212,123.040596,132.717299,139.269807,I,Above,Flat,0,5701,,38.78047105,0,0,,,,1,1,,0.03,nav,1,2005,3,, 19260,NJBF000053115,16 SO 36TH AVE,Longport,NJ,39.31875119,-74.51815185,RES1,3001,,20,NE,1995,1995,3102,2,1,1707.212472,1707.212472,3505,NO,46.32,56.63,3,8.19,6106,113.247132,123.094298,132.780201,139.340399,I,Above,Gable,0,5701,,51.4771268,0,0,,,,1,1,,0.03,nav,1,1995,2,, 19261,NJBF000053199,125 NO EVERGREEN AVE,Longport,NJ,39.31905821,-74.52489251,RES1,3001,,18,NE,1952,1952,3102,1,1,1168.403773,1168.403773,3505,NO,12.36,24.01,3,-2.98,6106,113.096628,122.972657,132.655336,139.200421,I,Above,Hip,0,5701,,18.18893289,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 19262,NJBF000053119,9 NO YARMOUTH AVE,Longport,NJ,39.31875976,-74.52141046,RES1,3001,,20,NE,2014,2014,3102,2,1,1260.365794,1260.365794,3505,NO,33.55,48.29,3,-1.39,6106,113.176473,123.037102,132.721278,139.274563,I,Above,Gable,0,5701,,40.91627864,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 19263,NJBF000052896,3400 PACIFIC AVE,Longport,NJ,39.317685,-74.518401,RES1,3001,,NaN,NE,1950,1950,3102,2,1,744.1281112,744.1281112,3505,NO,20.91,32.07,3,-2.24,6106,113.258059,123.102328,132.787443,139.348468,I,Above,Gable,0,5701,,26.48906724,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19264,NJBF000051457,1403 ATLANTIC AVE,Longport,NJ,39.30688416,-74.53472595,RES1,3001,,21,NE,2006,2006,3103,3,1,3688.09894,3688.09894,3505,NO,50.4,55.72,3,2.87,6106,113.079649,122.945211,132.614142,139.153791,I,Above,Hip,0,5701,,53.06156814,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 19265,NJBF000051498,,Longport,NJ,39.30763039,-74.53214918,RES3D,3001,,NaN,E,1969,0,3303,4,1,1830.938769,1830.938769,3507,NO,66.94,77.61,1,1.82,6106,113.121959,122.980997,132.651644,139.195948,I,Above,Flat,0,NaN,,72.27239147,0,0,,,,1,1,,0.03,nav,1,1969,4,, 19266,NJBF000051486,,Longport,NJ,39.30756019,-74.53137029,RES1,3001,,NaN,NE,2009,0,3103,5,1,6924.397384,6924.397384,3505,NO,95.35,107.45,3,-1.91,6106,113.13955,122.995354,132.666245,139.212278,I,Above,Hip,0,5701,,101.4029502,0,0,,,,1,1,,0.03,nav,1,2009,5,, 19267,NJBF000052001,2407 ATLANTIC AV,Longport,NJ,39.31231022,-74.52672648,RES1,3001,,18,NE,1928,1928,3102,2,1,945.4182644,945.4182644,3505,NO,40.2,50.47,3,2.39,6106,113.162636,123.019806,132.696904,139.24713,I,Above,Hip,0,5701,,45.33871804,0,0,,,,1,1,,0.03,nav,1,1928,2,, 19268,NJBF000052825,2931 SUNSET AVE,Longport,NJ,39.31731556,-74.52590125,RES1,3001,,21,NE,1985,1985,3103,3,1,1897.606757,1897.606757,3505,NO,50.77,62.86,3,7.56,6106,113.101899,122.975381,132.656515,139.201922,I,Above,Hip,0,5701,,56.81936171,0,1.2,,,,1,1,,0.03,nav,1,1985,3,, 19269,NJBF000052805,1 NO EVERGREEN AVE,Longport,NJ,39.31722474,-74.5231966,RES1,3001,,19,NE,1970,1970,3102,2,1,1484.496212,1484.496212,3505,NO,35.38,45.88,3,-1.68,6106,113.161559,123.023725,132.706054,139.257586,I,Above,Flat,0,5701,,40.6278932,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 19270,NJBF000052833,23 SO 32ND AVE,Longport,NJ,39.31737673,-74.52088142,RES1,3001,,20,NE,2005,2005,3102,3,1,1398.448764,1398.448764,3505,NO,53.08,58.58,3,-1.93,6106,113.209187,123.06248,132.746069,139.302351,I,Above,Gable,0,5701,,55.82895885,0,0,,,,1,1,,0.03,nav,1,2005,3,, 19271,NJBF000052807,23 SO 32ND AVE,Longport,NJ,39.31723421,-74.52072616,RES1,3001,,20,NE,2005,2005,3102,3,1,1902.410978,1902.410978,3505,NO,54.55,65.51,3,7.77,6106,113.214739,123.066861,132.750439,139.30723,I,Above,Flat,0,5701,,60.03347762,0,0,,,,1,1,,0.03,nav,1,2005,3,, 19272,NJBF000052840,2912 WINCHESTER AVE,Longport,NJ,39.31739964,-74.5253861,RES1,3001,,18,NE,1950,1950,3102,1,1,1700.448061,1700.448061,3505,NO,18.33,33.08,3,2.77,6106,113.11168,122.9834,132.664819,139.211266,I,Above,Gable,0,5701,,25.70703872,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19273,NJBF000052699,16 NO MANOR AVE,Longport,NJ,39.31662153,-74.52462589,RES1,3001,,18,NE,1950,1950,3102,2,1,908.5748423,908.5748423,3505,NO,34.89,40.37,3,7.58,6106,113.140131,123.005789,132.687041,139.236274,I,Above,Hip,0,5701,,37.62800746,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19274,NJBF000052496,107 SO 31ST AVE,Longport,NJ,39.3151499,-74.52030675,RES1,3001,,21,NE,1991,1991,3103,5,1,1803.069022,1803.069022,3505,NO,79.99,85.74,3,7.66,6106,113.255985,123.098535,132.780927,139.34106,I,Above,Flat,0,5701,,82.86636311,0,0,,,,1,1,,0.03,nav,1,1991,5,, 19275,NJBF000052501,24 SO 30TH AVE,Longport,NJ,39.31516801,-74.52246016,RES1,3001,,18,NE,1965,1965,3102,2,1,1728.170154,1728.170154,3505,NO,31.08,37.06,3,3.32,6106,113.209349,123.060676,132.741969,139.297699,I,Above,Gable,0,5701,,34.07189215,0,0,,,,1,1,,0.03,nav,1,1965,2,, 19276,NJBF000052479,2927 ATLANTIC AVE,Longport,NJ,39.31499724,-74.52251209,RES1,3001,,NaN,NE,1948,1948,3102,2,1,609.014623,609.014623,3505,NO,24.84,37.51,3,-1.29,6106,113.21089,123.06177,132.742915,139.298742,I,Above,Gable,0,5701,,31.17586044,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 19277,NJBF000052472,100 SO EVERGREEN AVE,Longport,NJ,39.31494819,-74.52144972,RES1,3001,,19,NE,1956,1956,3103,2,1,1605.909658,1605.909658,3505,NO,30.91,40.24,3,7.28,6106,113.234503,123.08091,132.762559,139.320619,I,Above,Gable,0,5701,,35.57160164,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 19278,NJBF000051536,110 SO 18TH AVE,Longport,NJ,39.308103,-74.5312895,RES1,3001,,17,NE,1949,1949,3103,1,1,1585.004302,1585.004302,3505,NO,9.09,20.16,3,-2.48,6106,113.132545,122.990289,132.661736,139.207304,I,Above,Hip,0,5701,,14.6224072,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 19279,NJBF000051643,111 SO 20TH AVE,Longport,NJ,39.30938521,-74.52924576,RES1,3001,,20,NE,1997,1997,3102,2,1,2356.997543,2356.997543,3505,NO,30.37,41.52,3,-0.06,6106,113.15535,123.010548,132.684035,139.232404,I,Above,Gable,0,5701,,35.94451408,0,0,,,,1,1,,0.03,nav,1,1997,2,, 19280,NJBF000051393,118 SO 15TH AVE,Longport,NJ,39.30606558,-74.53320965,RES1,3001,,22,NE,1990,1990,3103,3,1,2614.488223,2614.488223,3505,NO,46.43,60.57,3,3.7,6106,113.124791,122.981279,132.649948,139.193854,I,Above,Gable,0,5701,,53.50302338,0,0,,,,1,1,,0.03,nav,1,1990,3,, 19281,NJBF000052542,101 SO 31ST AVE,Longport,NJ,39.31546413,-74.52061149,RES1,3001,,20,NE,2010,2010,3103,3,1,1724.454772,1724.454772,3505,NO,55.8,66.64,3,1.46,6106,113.24457,123.089545,132.771996,139.331164,I,Above,Hip,0,5701,,61.2158405,0,0,,,,1,1,,0.03,nav,1,2010,3,, 19282,NJBF000052407,,Longport,NJ,39.31449752,-74.5261468,RES1,3001,,NaN,NE,1969,0,3102,2,1,4185.780605,4185.780605,3505,NO,24.83,37.38,3,0.23,6106,113.140617,123.004137,132.683192,139.231931,I,Above,Flat,0,5701,,31.1060069,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19283,NJBF000052510,3005 ATLANTIC AVE,Longport,NJ,39.31522089,-74.52193781,RES1,3001,,21,NE,2017,2017,3102,1,1,1617.567768,1617.567768,3505,NO,17.36,29.39,3,-0.51,6106,113.219759,123.069181,132.750774,139.30752,I,Above,Flat,0,5701,,23.37781254,0,0,,,,1,1,,0.03,nav,1,2017,1,, 19284,NJBF000052684,23 SO 31ST AVE,Longport,NJ,39.31655151,-74.52164356,RES1,3001,,19,NE,1950,1950,3102,2,1,1122.126484,1122.126484,3505,NO,32.1,42.96,3,0.6,6106,113.20546,123.058756,132.741414,139.297145,I,Above,Gable,0,5701,,37.5334102,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19285,NJBF000051294,118 SO 12TH AVE,Longport,NJ,39.30440172,-74.53542012,RES1,3001,,21,NE,2013,2013,3103,3,1,1785.412813,1785.412813,3505,NO,48.85,58.46,3,4.28,6106,113.105331,122.962954,132.629029,139.170228,I,Above,Hip,0,5701,,53.65867886,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19286,NJBF000052008,2409 ATLANTIC AVE,Longport,NJ,39.3123773,-74.52664437,RES1,3001,,18,NE,1955,1955,3102,2,1,847.1693055,847.1693055,3505,NO,22.59,31.51,3,0.8,6106,113.163332,123.020445,132.697634,139.247953,I,Above,Hip,0,5701,,27.05255843,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 19287,NJBF000052953,23 SO 34TH AVE,Longport,NJ,39.31795464,-74.51859141,RES1,3001,,18,NE,1965,1965,3102,2,1,1446.354378,1446.354378,3505,NO,24.74,34.57,3,-1.94,6106,113.249809,123.095857,132.781035,139.34134,I,Above,Hip,0,5701,,29.65715946,0,0,,,,1,1,,0.03,nav,1,1965,2,, 19288,NJBF000051274,1107 BEACH TERRACE,Longport,NJ,39.30401593,-74.53511871,RES1,3001,,22,NE,1984,1984,3103,3,1,2552.775296,2552.775296,3505,NO,51.53,63.75,3,5.28,6106,113.117916,122.972802,132.638568,139.180864,I,Above,Flat,0,5701,,57.63787715,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 19289,NJBF000053352,32 NO COLGATE AV,Longport,NJ,39.31961452,-74.52117554,RES1,3001,,19,NE,1950,1950,3102,2,1,1265.962435,1265.962435,3505,NO,38.14,46.33,3,-0.16,6106,113.16842,123.031254,132.716052,139.268616,I,Above,Gable,0,5701,,42.23297585,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19290,NJBF000051394,,Longport,NJ,39.30609374,-74.53470082,RES1,3001,,NaN,NE,1969,0,3103,6,1,2959.917415,2959.917415,3505,NO,88.82,99.54,3,6.51,6106,113.092963,122.955103,132.623236,139.163922,I,Above,Gable,0,5701,,94.17856035,0,0,,,,1,1,,0.03,nav,1,1969,6,, 19291,NJBF000051397,109 SO 14TH AVE,Longport,NJ,39.30612961,-74.53389559,RES1,3001,,20,NE,1993,1993,3103,3,1,1995.908489,1995.908489,3505,NO,54.21,63.02,3,-0.36,6106,113.109314,122.968622,132.637093,139.179467,I,Above,Flat,0,5701,,58.61506621,0,0,,,,1,1,,0.03,nav,1,1993,3,, 19292,NJBF000052626,8 NO MANOR AVE,Longport,NJ,39.3160781,-74.5241343,RES1,3001,,20,NE,2017,2017,3102,2,1,1365.755925,1365.755925,3505,NO,35.08,46.23,3,4.72,6106,113.159178,123.020757,132.70187,139.252908,I,Above,Hip,0,5701,,40.65686524,0,0,,,,1,1,,0.03,nav,1,2017,2,, 19293,NJBF000052639,2924 LONGPORT DRIVE,Longport,NJ,39.31618861,-74.52425168,RES1,3001,,18,NE,1958,1958,3102,1,1,2007.996093,2007.996093,3505,NO,25.26,30.61,3,6.12,6106,113.154912,123.017395,132.698528,139.249163,I,Above,Hip,0,5701,,27.93522128,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 19294,NJBF000052959,3004 WINCHESTER AVE,Longport,NJ,39.31798068,-74.52435827,RES1,3001,,18,NE,1955,1955,3102,1,1,2788.539259,2788.539259,3505,NO,13.73,20.99,3,-2.63,6106,113.124822,122.994586,132.676849,139.224756,I,Above,Gable,0,5701,,17.36345951,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19295,NJBF000054031,216 NO 35TH AVE,Longport,NJ,39.32216108,-74.52224789,RES1,3001,,18,NE,1975,1975,3102,1,1,1721.515864,1721.515864,3505,NO,17.03,30.7,3,3.35,6106,113.106308,122.982915,132.668544,139.214662,I,Above,Gable,0,5701,,23.86490633,0,0,,,,1,1,,0.03,nav,1,1975,1,, 19296,NJBF000054004,212 NO 35TH AVE,Longport,NJ,39.32207202,-74.52215202,RES1,3001,,18,NE,1975,1975,3102,2,1,1554.442478,1554.442478,3505,NO,25.93,34.07,3,-2.99,6106,113.109746,122.98563,132.671261,139.217751,I,Above,Gable,0,5701,,30.00218259,0,0,,,,1,1,,0.03,nav,1,1975,2,, 19297,NJBF000052920,32 NO EVERGREEN AVE,Longport,NJ,39.31778504,-74.52423133,RES1,3001,,18,NE,1950,1950,3102,2,1,535.5683958,535.5683958,3505,NO,33.95,39.27,3,2.18,6106,113.130595,122.999096,132.681294,139.229768,I,Above,Flat,0,5701,,36.60610808,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19298,NJBF000052313,103 SO 29TH AVE,Longport,NJ,39.31391768,-74.52314425,RES1,3001,,22,NE,2011,2011,3103,3,1,3230.433851,3230.433851,3505,NO,52.66,62.17,3,2.63,6106,113.214127,123.063383,132.743423,139.299212,I,Above,Flat,0,5701,,57.41916813,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 19299,NJBF000054058,223 NO 34TH AVE,Longport,NJ,39.32224384,-74.52269023,RES1,3001,,18,NE,1975,1975,3102,1,1,1662.01361,1662.01361,3505,NO,14.59,21.24,3,1.2,6106,113.095451,122.974204,132.659659,139.204617,I,Above,Gable,0,5701,,17.91173331,0,0,,,,1,1,,0.03,nav,1,1975,1,, 19300,NJBF000054027,219 NO 34TH AVE,Longport,NJ,39.322147,-74.522604,RES1,3001,,18,NE,1975,1975,3102,1,1,1550.78011,1550.78011,3505,NO,25.3,31.56,3,6.67,6106,113.098794,122.976836,132.662284,139.207607,I,Above,Gable,0,5701,,28.42853,0,0,,,,1,1,,0.03,nav,1,1975,1,, 19301,NJBF000052595,1 SO MANOR AVE,Longport,NJ,39.31586275,-74.52338834,RES1,3001,,20,NE,2014,2014,3102,3,1,1490.963554,1490.963554,3505,NO,45.8,56.07,3,5.52,6106,113.178574,123.036315,132.717637,139.270555,I,Above,Hip,0,5701,,50.93334435,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 19302,NJBF000053068,2 SO COLGATE AVE,Longport,NJ,39.31851839,-74.52010971,RES1,3001,,19,NE,1960,1960,3102,2,1,2094.996532,2094.996532,3505,NO,33.44,40.17,3,1.12,6106,113.208308,123.062691,132.747394,139.303801,I,Above,Hip,0,5701,,36.80364487,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 19303,NJBF000053126,3101 WINCHESTER AVE,Longport,NJ,39.31880007,-74.52372854,RES1,3001,,18,NE,1950,1950,3102,1,1,1822.66072,1822.66072,3505,NO,21.84,28.56,3,8.54,6106,113.125742,122.996035,132.679098,139.227209,I,Above,Hip,0,5701,,25.20148516,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19304,NJBF000053363,128 NO WOODCREST AVE,Longport,NJ,39.31965661,-74.52432311,RES1,3001,,20,NE,2001,2001,3102,3,1,1748.103515,1748.103515,3505,NO,60.84,69.33,3,8.97,6106,113.099702,122.975651,132.658944,139.204399,I,Above,Gable,0,5701,,65.08711174,0,0,,,,1,1,,0.03,nav,1,2001,3,, 19305,NJBF000053065,11 SO 34TH AVE,Longport,NJ,39.31850271,-74.51909892,RES1,3001,,21,NE,1960,2018,3102,3,1,1240.786415,1240.786415,3505,NO,42.37,55.43,3,3.57,6106,113.230418,123.08058,132.765815,139.324369,I,Above,Flat,0,5701,,48.90289372,0,1.1,,,,1,1,,0.03,nav,1,1960,3,, 19306,NJBF000053009,10 SO COLGATE AVE,Longport,NJ,39.31823196,-74.51984312,RES1,3001,,19,NE,1955,1955,3102,2,1,1552.878181,1552.878181,3505,NO,30.91,40.6,3,-1.4,6106,113.218473,123.070697,132.755367,139.312718,I,Above,Gable,0,5701,,35.7572233,0,0,,,,1,1,,0.03,nav,1,1955,2,, 19307,NJBF000053550,131 NO YARMOUTH AVE,Longport,NJ,39.32034991,-74.52293513,RES1,3001,,18,NE,1952,1952,3102,1,1,1723.565923,1723.565923,3505,NO,11.84,19.14,3,1.13,6106,113.119076,122.991893,132.676234,139.223757,I,Above,Gable,0,5701,,15.49274457,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19308,NJBF000053054,30 NO WOODCREST AVE,Longport,NJ,39.31845164,-74.52317133,RES1,3001,,18,NE,1951,1951,3102,1,1,1015.405993,1015.405993,3505,NO,15.92,26.65,3,4.55,6106,113.143159,123.009858,132.692976,139.242842,I,Above,Hip,0,5701,,21.28284503,0,0,,,,1,1,,0.03,nav,1,1951,1,, 19309,NJBF000052687,3207 ATLANTIC AVE,Longport,NJ,39.31655228,-74.51978056,RES1,3001,,21,NE,2014,2014,3102,3,1,1135.41566,1135.41566,3505,NO,52.93,58.8,3,5.07,6106,113.245658,123.091361,132.774993,139.334574,I,Above,Flat,0,5701,,55.86241814,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 19310,NJBF000052701,19 SO 31ST AVE,Longport,NJ,39.31663698,-74.52175101,RES1,3001,,18,NE,1925,1925,3102,1,1,1227.72913,1227.72913,3505,NO,18.83,33.11,3,2.26,6106,113.201838,123.055891,132.738551,139.293949,I,Above,Gable,0,5701,,25.97191639,0,0,,,,1,1,,0.03,nav,1,1925,1,, 19311,NJBF000052666,3105 PACIFIC AVE,Longport,NJ,39.31641063,-74.52135246,RES1,3001,,20,NE,2007,2007,3102,3,1,1133.974214,1133.974214,3505,NO,53.16,66.34,3,0.11,6106,113.213938,123.065512,132.748225,139.304743,I,Above,Gable,0,5701,,59.75216475,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 19312,NJBF000052979,12 NO WOODCREST AVE,Longport,NJ,39.31808893,-74.52282891,RES1,3001,,18,NE,1950,1950,3102,1,1,1621.556187,1621.556187,3505,NO,19.95,31.24,3,7.09,6106,113.156144,123.020077,132.703137,139.254274,I,Above,Gable,0,5701,,25.59716241,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19313,NJBF000051317,110 SO 12TH AVE,Longport,NJ,39.30477466,-74.53591855,RES1,3001,,22,NE,1963,2016,3103,3,1,1481.651851,1481.651851,3505,NO,45.78,55.38,3,2.96,6106,113.088806,122.949837,132.616134,139.155809,I,Above,Hip,0,5701,,50.58132434,0,0,,,,1,1,,0.03,nav,1,1963,3,, 19314,NJBF000051315,1100 ATLANTIC AVE,Longport,NJ,39.30475357,-74.5367426,RES1,3001,,18,NE,1973,1973,3103,2,1,1403.694118,1403.694118,3505,NO,18.56,23.95,3,-2.73,6106,113.071888,122.935832,132.601813,139.139723,I,Above,Flat,0,5701,,21.2551234,0,0,,,,1,1,,0.03,nav,1,1973,2,, 19315,NJBF000051286,120 SO 12TH AVE,Longport,NJ,39.30429055,-74.53533262,RES1,3001,,19,NE,1995,1995,3103,6,1,1524.026629,1524.026629,3505,NO,116.74,122.38,3,0.29,6106,113.108959,122.965794,132.63178,139.173297,I,Above,Hip,0,5701,,119.5582148,0,0,,,,1,1,,0.03,nav,1,1995,6,, 19316,NJBF000053383,18 NO 34TH AVE,Longport,NJ,39.31972909,-74.52080805,RES1,3001,,20,NE,2012,2012,3102,2,1,1977.077392,1977.077392,3505,NO,25.69,35.82,3,3.81,6106,113.174644,123.036378,132.721429,139.274632,I,Above,Gable,0,5701,,30.75794648,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 19317,NJBF000053360,118 NO 32ND AVE,Longport,NJ,39.31964,-74.5235365,RES1,3001,,18,NE,1955,1955,3102,1,1,731.3285505,731.3285505,3505,NO,18.11,29.77,3,3.34,6106,113.116953,122.989609,132.67326,139.220529,I,Above,Gable,0,5701,,23.94330637,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19318,NJBF000053315,12 NO 34TH AV,Longport,NJ,39.31949453,-74.5205872,RES1,3001,,20,NE,2005,2005,3102,2,1,1873.856384,1873.856384,3505,NO,26.67,32.08,3,-2.76,6106,113.183012,123.04297,132.728001,139.282025,I,Above,Hip,0,5701,,29.37451619,0,0,,,,1,1,,0.03,nav,1,2005,2,, 19319,NJBF000053209,3007 SUNSET AVE,Longport,NJ,39.31908162,-74.52529922,RES1,3001,,23,NE,2001,2001,3103,2,1,4932.522173,4932.522173,3505,NO,34.66,49.48,3,-0.91,6106,113.087494,122.965274,132.647784,139.191901,I,Above,Hip,0,5701,,42.06781146,0,0,,,,1,1,,0.03,nav,1,2001,2,, 19320,NJBF000053347,3610 VENTNOR AVE,Longport,NJ,39.319605,-74.5183165,RES1,3001,999,20,NE,2002,2002,3102,2,1,1375.998471,1375.998471,3505,NO,44.69,56.5,3,6.21,6106,113.230544,123.081506,132.767816,139.326536,I,Above,Hip,0,5701,,50.59741321,0,0,,,,1,1,,0.03,nav,1,2002,2,, 19321,NJBF000053325,31 NO 33RD AVE,Longport,NJ,39.31952299,-74.52133909,RES1,3001,,20,NE,2017,2017,3102,2,1,1126.400739,1126.400739,3505,NO,41.97,55.49,3,5.82,6106,113.166301,123.029468,132.714129,139.266472,I,Above,Hip,0,5701,,48.7312184,0,0,,,,1,1,,0.03,nav,1,2017,2,, 19322,NJBF000052939,,Longport,NJ,39.31787233,-74.52030442,RES1,3001,,NaN,NE,1969,0,3102,2,1,718.4099369,718.4099369,3505,NO,27.03,35.44,3,5.66,6106,113.214034,123.066814,132.751017,139.307871,I,Above,Flat,0,5701,,31.23274745,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19323,NJBF000053015,20 SO 35TH AVE,Longport,NJ,39.31826146,-74.51853165,RES1,3001,,19,NE,1960,1960,3102,2,1,1447.99013,1447.99013,3505,NO,43.14,50.69,3,8.65,6106,113.246398,123.093332,132.77873,139.338772,I,Above,Hip,0,5701,,46.91538304,0,0,,,,1,1,,0.03,nav,1,1960,2,, 19324,NJBF000053210,,Longport,NJ,39.31908635,-74.51881133,RES1,3001,,NaN,NE,1969,0,3102,2,1,1906.735767,1906.735767,3505,NO,41.31,55.59,3,5.94,6106,113.227736,123.078852,132.764591,139.322975,I,Above,Hip,0,5701,,48.44742553,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19325,NJBF000052997,19 SO 34TH AVE,Longport,NJ,39.3181675,-74.5187935,RES1,3001,,18,NE,1960,1960,3102,1,1,1542.949758,1542.949758,3505,NO,16.28,26.82,3,3.1,6106,113.242151,123.089822,132.775019,139.334638,I,Above,Flat,0,5701,,21.55141692,0,0,,,,1,1,,0.03,nav,1,1960,1,, 19326,NJBF000053140,40 NO 32ND AVE,Longport,NJ,39.31887684,-74.5228554,RES1,3001,,18,NE,1953,1953,3102,2,1,1841.106003,1841.106003,3505,NO,37.27,48.81,3,1.49,6106,113.143436,123.010436,132.693965,139.243911,I,Above,Gable,0,5701,,43.0399529,0,0,,,,1,1,,0.03,nav,1,1953,2,, 19327,NJBF000052557,11 SO MANOR AVE,Longport,NJ,39.31555467,-74.52312024,RES1,3001,,18,NE,1955,1955,3102,1,1,1294.471865,1294.471865,3505,NO,9.47,21.44,3,-2.61,6106,113.18913,123.044606,132.725845,139.279721,I,Above,Hip,0,5701,,15.45951195,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 19328,NJBF000053055,101 NO EVERGREEN AVE,Longport,NJ,39.31845695,-74.52433891,RES1,3001,,19,NE,1965,1965,3102,2,1,1433.149832,1433.149832,3505,NO,19.14,32.55,3,-2.66,6106,113.11787,122.989361,132.67193,139.219181,I,Above,Gable,0,5701,,25.84671664,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19329,NJBF000053653,103 NO 35TH AVE,Longport,NJ,39.32076584,-74.5204389,RES1,3001,,18,NE,1954,1954,3102,2,1,1081.100993,1081.100993,3505,NO,37.57,44.54,3,1.76,6106,113.166805,123.030807,132.716624,139.26908,I,Above,Gable,0,5701,,41.05413246,0,0,,,,1,1,,0.03,nav,1,1954,2,, 19330,NJBF000052841,3 SO WOODCREST AVE,Longport,NJ,39.31740681,-74.5217419,RES1,3001,,18,NE,1950,1950,3102,2,1,1101.19289,1101.19289,3505,NO,32.72,40.52,3,3.16,6106,113.190135,123.047058,132.730226,139.284645,I,Above,Gable,0,5701,,36.61663348,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19331,NJBF000053488,,Longport,NJ,39.32012143,-74.52347769,RES1,3001,,NaN,NE,1969,0,3102,2,1,1554.909727,1554.909727,3505,NO,35.88,45.05,3,0.8,6106,113.110838,122.985045,132.668999,139.21565,I,Above,Gable,0,5701,,40.4658647,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19332,NJBF000052522,37 NO 28TH AVE,Longport,NJ,39.31529989,-74.52604204,RES1,3001,,18,NE,1954,1954,3102,1,1,1219.562751,1219.562751,3505,NO,9.67,23.6,3,-2.85,6106,113.130311,122.996548,132.676235,139.224147,I,Above,Hip,0,5701,,16.63434725,0,0,,,,1,1,,0.03,nav,1,1954,1,, 19333,NJBF000052390,5 SO 29TH AVE,Longport,NJ,39.31437158,-74.5237318,RES1,3001,,18,NE,1952,1952,3102,2,1,1767.651631,1767.651631,3505,NO,33,47.64,3,4.05,6106,113.19441,123.047783,132.727873,139.281913,I,Above,Gable,0,5701,,40.31812718,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 19334,NJBF000051362,116 SO 14TH AV,Longport,NJ,39.30554612,-74.53393546,RES1,3001,,19,NE,1960,1960,3103,2,1,1487.471204,1487.471204,3505,NO,41.81,48.4,3,3.64,6106,113.117944,122.974941,132.642793,139.18578,I,Above,Hip,0,5701,,45.10937618,0,0,,,,1,1,,0.03,nav,1,1960,2,, 19335,NJBF000053236,3500 VENTNOR AVE,Longport,NJ,39.319212,-74.5189245,RES1,3001,,18,NE,1955,1955,3102,2,1,1058.260069,1058.260069,3505,NO,41.22,48.2,3,5.23,6106,113.223362,123.075408,132.761158,139.319134,I,Above,Flat,0,5701,,44.70875316,0,0,,,,1,1,,0.03,nav,1,1955,2,, 19336,NJBF000052526,32 NO 29TH AVE,Longport,NJ,39.31532957,-74.5256245,RES1,3001,,19,NE,2016,2016,3102,2,1,1504.52455,1504.52455,3505,NO,38.28,52.27,3,4.33,6106,113.138794,123.003478,132.683374,139.23216,I,Above,Gable,0,5701,,45.27693377,0,0,,,,1,1,,0.03,nav,1,2016,2,, 19337,NJBF000051842,2206 ATLANTIC AVE,Longport,NJ,39.31111993,-74.52780278,RES1,3001,,NaN,NE,1955,1955,3102,1,1,2101.396849,2101.396849,3505,NO,18.15,26.44,3,7.21,6106,113.158469,123.0151,132.690733,139.240104,I,Above,Hip,0,5701,,22.29463407,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19338,NJBF000051302,114 SO 12TH AVE,Longport,NJ,39.30457399,-74.53570219,RES1,3001,,18,NE,1957,1957,3103,1,1,2284.767836,2284.767836,3505,NO,18.8,31.21,3,8.07,6106,113.096623,122.956007,132.622166,139.162554,I,Above,Gable,0,5701,,25.00069364,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 19339,NJBF000052815,,Longport,NJ,39.31728044,-74.5223494,RES1,3001,,NaN,NE,1969,0,3102,2,1,1370.474086,1370.474086,3505,NO,36.62,50.95,3,7.36,6106,113.178997,123.037918,132.7207,139.273989,I,Above,Gable,0,5701,,43.78203234,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19340,NJBF000053084,3601 PACIFIC AVE,Longport,NJ,39.31859582,-74.51755905,RES1,3001,,20,NE,1983,1983,3102,2,1,2237.651509,2237.651509,3505,NO,34.83,46.56,3,1.92,6106,113.262348,123.106496,132.792639,139.354252,I,Above,Flat,0,5701,,40.69482175,0,0,,,,1,1,,0.03,nav,1,1983,2,, 19341,NJBF000052602,3009 PACIFIC AVE,Longport,NJ,39.31590413,-74.52227529,RES1,3001,,18,NE,2013,2013,3102,2,1,1924.798073,1924.798073,3505,NO,22.77,32.57,3,1.63,6106,113.2019,123.055294,132.737194,139.292412,I,Above,Hip,0,5701,,27.66848654,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 19342,NJBF000052599,8 SO 30TH AVE,Longport,NJ,39.31588017,-74.52316486,RES1,3001,,20,NE,2006,2006,3102,2,1,1678.189193,1678.189193,3505,NO,37.13,42.92,3,-0.05,6106,113.183109,123.040014,132.721457,139.274828,I,Above,Hip,0,5701,,40.02783507,0,0,,,,1,1,,0.03,nav,1,2006,2,, 19343,NJBF000052583,14 SO 30TH AVE,Longport,NJ,39.31575261,-74.52303975,RES1,3001,,20,NE,2005,2005,3102,2,1,1702.291423,1702.291423,3505,NO,28.47,34.14,3,5.21,6106,113.187773,123.043686,132.725102,139.278899,I,Above,Hip,0,5701,,31.30463801,0,0,,,,1,1,,0.03,nav,1,2005,2,, 19344,NJBF000053090,31 NO WOODCREST AVE,Longport,NJ,39.318623,-74.522878,RES1,3001,,18,NE,1945,1945,3102,1,1,1357.159185,1357.159185,3505,NO,23.4,30.62,3,4.04,6106,113.146851,123.012993,132.696357,139.246623,I,Above,Flat,0,5701,,27.00798008,0,0,,,,1,1,,0.03,nav,1,1945,1,, 19345,NJBF000053111,31 NO WOODCREST AVE,Longport,NJ,39.31872998,-74.52285001,RES1,3001,,18,NE,1945,1945,3102,1,1,956.3622898,956.3622898,3505,NO,16.29,30.29,3,1.54,6106,113.145808,123.012236,132.695679,139.245851,I,Above,Hip,0,5701,,23.29164547,0,0,,,,1,1,,0.03,nav,1,1945,1,, 19346,NJBF000051313,112 SO 12TH AVE,Longport,NJ,39.30471241,-74.53579178,RES1,3001,,20,NE,1920,1920,3103,3,1,1938.958599,1938.958599,3505,NO,66.17,73.21,3,8.67,6106,113.092492,122.952792,132.619066,139.159093,I,Above,Flat,0,5701,,69.69266613,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 19347,NJBF000051446,103 SO 15TH AVE,Longport,NJ,39.30665251,-74.53318798,RES1,3001,,19,NE,1983,1983,3103,2,1,1595.633561,1595.633561,3505,NO,33.6,44.42,3,5.49,6106,113.115775,122.974639,132.643913,139.18717,I,Above,Gable,0,5701,,39.01389284,0,0,,,,1,1,,0.03,nav,1,1983,2,, 19348,NJBF000053297,3216 WINCHESTER AVE,Longport,NJ,39.3194189,-74.52191002,RES1,3001,,18,NE,1950,1950,3102,1,1,986.645217,986.645217,3505,NO,13.6,19.96,3,2.44,6106,113.155539,123.020675,132.704989,139.256228,I,Above,Gable,0,5701,,16.77979206,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19349,NJBF000051323,106 SO 12TH AVE,Longport,NJ,39.30487816,-74.53600211,RES1,3001,,18,NE,1899,1899,3103,2,1,597.6309643,597.6309643,3505,NO,32.99,46.12,3,0.24,6106,113.085391,122.947163,132.613541,139.15291,I,Above,Hip,0,5701,,39.55548934,0,0,,,,1,1,,0.03,nav,1,1899,2,, 19350,NJBF000051699,,Longport,NJ,39.31004054,-74.52731768,RES1,3001,,NaN,NE,1969,0,3102,2,1,633.9198563,633.9198563,3507,NO,24.87,39.31,1,0.94,6106,113.185918,123.036316,132.711233,139.262847,I,Above,Hip,0,5701,,32.08876628,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19351,NJBF000052584,18 NO PELHAM AVE,Longport,NJ,39.31578091,-74.52463663,RES1,3001,,NaN,NE,1951,1951,3102,2,1,1276.563445,1276.563445,3505,NO,38.71,51.26,3,2.81,6106,113.152984,123.015447,132.696117,139.246457,I,Above,Hip,0,5701,,44.9855074,0,0,,,,1,1,,0.03,nav,1,1951,2,, 19352,NJBF000052756,12 SO WOODCREST AVE,Longport,NJ,39.31691918,-74.52169954,RES1,3001,,19,NE,2013,2013,3102,3,1,1411.280675,1411.280675,3505,NO,55.33,63.07,3,0.28,6106,113.198578,123.05349,132.736362,139.291507,I,Above,Gable,0,5701,,59.1978075,0,0,,,,1,1,,0.03,nav,1,2013,3,, 19353,NJBF000052844,30 NO 30TH AVE,Longport,NJ,39.3174277,-74.5246062,RES1,3001,,20,NE,2014,2014,3102,2,1,1425.818797,1425.818797,3505,NO,32.82,41.16,3,5.05,6106,113.128045,122.99671,132.678504,139.226654,I,Above,Hip,0,5701,,36.99096653,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 19354,NJBF000052929,5 NO 31ST AVE,Longport,NJ,39.31784036,-74.52270347,RES1,3001,,21,NE,2017,2017,3102,2,1,687.2277505,687.2277505,3505,NO,38.45,49.48,3,3.77,6106,113.162707,123.025187,132.708152,139.259913,I,Above,Flat,0,5701,,43.96067457,0,0,,,,1,1,,0.03,nav,1,2017,2,, 19355,NJBF000053059,7 SO COLGATE AV,Longport,NJ,39.31847445,-74.51962333,RES1,3001,,20,NE,2014,2014,3102,2,1,982.8627717,982.8627717,3505,NO,40.29,52.38,3,4.27,6106,113.219521,123.071735,132.75667,139.314165,I,Above,Hip,0,5701,,46.33527244,0,0,,,,1,1,,0.03,nav,1,2014,2,, 19356,NJBF000053220,24 NO 33RD AVE,Longport,NJ,39.3191584,-74.5215371,RES1,3001,,20,NE,2016,2016,3102,3,1,2168.788853,2168.788853,3505,NO,54.17,67.81,3,8.22,6106,113.167614,123.030245,132.714593,139.267034,I,Above,Flat,0,5701,,60.98794572,0,0,,,,1,1,,0.03,nav,1,2016,3,, 19357,NJBF000053619,109 NO 34TH AVE,Longport,NJ,39.32063191,-74.52116131,RES1,3001,,20,NE,2013,2013,3102,3,1,1449.097113,1449.097113,3505,NO,49.22,62.95,3,8.89,6106,113.153193,123.019704,132.705077,139.256141,I,Above,Gable,0,5701,,56.08513589,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 19358,NJBF000053617,,Longport,NJ,39.32062457,-74.52168902,RES1,3001,,NaN,NE,2010,0,3102,2,1,1771.750665,1771.750665,3505,NO,27,36.23,3,4.57,6106,113.141856,123.01053,132.695634,139.245531,I,Above,Gable,0,5701,,31.61520799,0,0,,,,1,1,,0.03,nav,1,2010,2,, 19359,NJBF000051928,2301 ATLANTIC AV,Longport,NJ,39.31173703,-74.52797484,GOV2,3001,,NaN,E,1969,0,3401,2,1,5833.237475,5833.237475,3507,NO,21.01,34.07,1,-0.48,6106,113.145027,123.004808,132.680885,139.229152,I,Above,Gable,0,NaN,,27.54294742,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19360,NJBF000051990,2500 ATLANTIC AVE,Longport,NJ,39.31223539,-74.52595212,RES1,3001,,21,NE,2017,2017,3102,3,1,1896.818595,1896.818595,3505,NO,42.47,54.85,3,5.56,6106,113.180363,123.034185,132.711574,139.263512,I,Above,Hip,0,5701,,48.65703002,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 19361,NJBF000051460,,Longport,NJ,39.30694893,-74.53174844,RES3D,3001,,NaN,E,1969,0,3303,3,1,28300.91176,28300.91176,3507,NO,55.08,62.62,1,2.47,6106,113.141386,122.996083,132.666222,139.21217,I,Above,Flat,0,NaN,,58.84666899,0,0,,,,1,1,,0.03,nav,1,1969,3,, 19362,NJBF000051470,,Longport,NJ,39.307418,-74.532193,RES3D,3001,,NaN,E,1969,0,3303,3,1,6160.129731,6160.129731,3507,NO,36.46,47.01,1,0.31,6106,113.12444,122.982763,132.653185,139.197648,I,Above,Hip,0,NaN,,41.73616759,0,0,,,,1,1,,0.03,nav,1,1969,3,, 19363,NJBF000051467,,Longport,NJ,39.30729585,-74.53247304,RES3D,3001,,NaN,E,1969,0,3303,3,1,13327.33795,13327.33795,3507,NO,48.25,62.47,1,0.01,6106,113.120491,122.97936,132.649553,139.193565,I,Above,Gable,0,NaN,,55.35951179,0,0,,,,1,1,,0.03,nav,1,1969,3,, 19364,NJBF000051456,1502 ATLANTIC AVE,Longport,NJ,39.306847,-74.533227,RES1,3001,,20,NE,2015,2018,3103,2,1,1213.524419,1213.524419,3505,NO,43.76,58.75,3,6.14,6106,113.111822,122.971644,132.641098,139.184039,I,Above,Gable,0,5701,,51.2554829,0,0,,,,1,1,,0.03,nav,1,2015,2,, 19365,NJBF000053131,3001 SUNSET AVE,Longport,NJ,39.31880678,-74.52539991,RES1,3001,,22,NE,2002,2002,3103,2,1,2506.284664,2506.284664,3505,NO,31.69,40.47,3,1.46,6106,113.089567,122.966716,132.649015,139.193326,I,Above,Hip,0,5701,,36.08033909,0,0,,,,1,1,,0.03,nav,1,2002,2,, 19366,NJBF000052927,3107 VENTNOR AVE,Longport,NJ,39.31782604,-74.52212405,RES1,3001,,20,NE,2003,2003,3102,2,1,2289.390938,2289.390938,3505,NO,30.59,43.01,3,1.03,6106,113.175423,123.035484,132.718726,139.271762,I,Above,Hip,0,5701,,36.80307435,0,0,,,,1,1,,0.03,nav,1,2003,2,, 19367,NJBF000052779,40 SO 33RD AVE,Longport,NJ,39.31706747,-74.51949839,RES1,3001,,19,NE,1955,1955,3102,2,1,1758.366677,1758.366677,3505,NO,31.86,43.35,3,2.12,6106,113.243836,123.09031,132.774431,139.333971,I,Above,Hip,0,5701,,37.602605,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 19368,NJBF000052322,105 SO PELHAM AVE,Longport,NJ,39.31394693,-74.52229187,RES1,3001,,22,NE,2017,2017,3103,3,1,1747.770522,1747.770522,3505,NO,52.76,59.69,3,0.69,6106,113.231975,123.077926,132.758415,139.315904,I,Above,Flat,0,5701,,56.22172337,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19369,NJBF000054245,110 S SUMNER AVE,Margate City,NJ,39.32283903,-74.50745764,RES1,3001,,23,NE,2013,2013,3103,3,1,2009.454389,2009.454389,3505,NO,47.7,59.61,3,5.41,6106,113.418313,123.235066,132.929898,139.505979,I,Above,Hip,0,5701,,53.65681325,0,1.2,,,,1,1,,0.03,nav,1,2013,3,, 19370,NJBF000054888,213 N JEFFERSON AVE,Margate City,NJ,39.32457089,-74.51851004,RES1,3001,,39,NE,2005,2005,3102,2,1,670.5418691,670.5418691,3507,NO,24.69,33.71,1,1.86,6106,113.151233,123.020689,132.709354,139.259736,I,Above,Flat,0,5701,,29.20168451,0,0,,,,1,1,,0.03,nav,1,2005,2,, 19371,NJBF000054802,8801 ATLANTIC AVE,Margate City,NJ,39.32435205,-74.5070073,RES1,3001,,22,NE,2013,2013,3103,3,1,1346.753183,1346.753183,3505,NO,39.89,50.38,3,6.99,6106,113.4058,123.225679,132.921512,139.496372,I,Above,Hip,0,5701,,45.13416475,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 19372,NJBF000053623,24 N COOLIDGE AVE,Margate City,NJ,39.32065115,-74.51914494,RES1,3001,,NaN,NE,1928,1928,3102,2,1,953.3558043,953.3558043,3507,NO,32.88,38.74,1,2.09,6106,113.196631,123.054835,132.741273,139.29673,I,Above,Gable,0,5701,,35.81051893,0,0,,,,1,1,,0.03,nav,1,1928,2,, 19373,NJBF000060106,310 N ESSEX AVE,Margate City,NJ,39.33541368,-74.50221209,RES1,3001,,17,NE,1956,1956,3102,2,1,1815.813517,1815.813517,3505,NO,34.41,47.71,3,5.17,6106,113.3522,123.185014,132.887535,139.445652,I,Above,Hip,0,5701,,41.06131705,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 19374,NJBF000056556,8807 AMHERST AVE,Margate City,NJ,39.32874504,-74.51236764,RES1,3001,,20,NE,2012,2012,3102,3,1,1129.20125,1129.20125,3505,NO,31.66,44.36,3,-2.58,6106,113.223847,123.080965,132.774756,139.330421,I,Above,Hip,0,5701,,38.01068065,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 19375,NJBF000054383,10 S UNION AVE,Margate City,NJ,39.32325398,-74.50973229,RES1,3001,,19,NE,2006,1915,3103,2,1,3029.666059,3029.666059,3505,NO,45.68,58.83,3,7.02,6106,113.362481,123.190249,132.883698,139.454829,I,Above,Gable,0,5701,,52.2512697,0,1.2,,,,1,1,,0.03,nav,1,2006,2,, 19376,NJBF000059046,19 N BRUNSWICK AVE,Margate City,NJ,39.33343211,-74.49568604,RES1,3001,,18,NE,1928,1928,3102,2,1,1363.114083,1363.114083,3505,NO,37.01,48.44,3,5.5,6106,113.524002,123.323016,133.030775,139.606537,I,Above,Hip,0,5701,,42.7276,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 19377,NJBF000053687,13 S JEFFERSON AVE,Margate City,NJ,39.32088288,-74.51491052,RES1,3001,,16,NE,1925,1925,3102,1,2,939.9504598,939.9504598,3507,NO,19.29,30.92,1,1.64,6106,113.285105,123.126471,132.815445,139.379477,I,Above,Gable,0,5701,,25.10459601,0,0,,,,1,1,,0.03,nav,1,1925,1,, 19378,NJBF000053714,13 S JEFFERSON AVE,Margate City,NJ,39.32099486,-74.51470736,RES1,3001,,16,NE,1925,1925,3102,1,2,973.7851162,973.7851162,3507,NO,15.84,28.01,1,2.36,6106,113.287852,123.12876,132.817916,139.382213,I,Above,Gable,0,5701,,21.9244761,0,0,,,,1,1,,0.03,nav,1,1925,1,, 19379,NJBF000061672,7501 FREMONT AVE,Margate City,NJ,39.33804463,-74.49882726,RES1,3001,,17,NE,1953,1953,3103,1,1,2120.62408,2120.62408,3505,NO,21.94,36.68,3,3.67,6106,113.390515,123.215574,132.921177,139.475194,I,Above,Hip,0,5701,,29.31165943,0,0,,,,1,1,,0.03,nav,1,1953,1,, 19380,NJBF000054278,3 S BENSON AVE,Margate City,NJ,39.32295363,-74.5122818,RES1,3001,,19,NE,2009,2009,3103,3,1,2374.62061,2374.62061,3505,NO,52.24,65.49,3,0.94,6106,113.311282,123.148811,132.840444,139.4069,I,Above,Hip,0,5701,,58.86424974,0,0,,,,1,1,,0.03,nav,1,2009,3,, 19381,NJBF000056968,8008 VENTNOR AVE,Margate City,NJ,39.32963457,-74.49920073,COM1,3001,,NaN,ME,1969,0,3401,1,1,20431.67923,20431.67923,3507,NO,15.35,24.53,1,-0.5,6106,113.500356,123.303502,133.007286,139.587452,I,Above,Flat,0,NaN,,19.93927087,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19382,NJBF000060774,400 N DELAVAN AVE,Margate City,NJ,39.33652573,-74.50152541,RES1,3001,,17,NE,1952,1952,3102,2,1,2061.286394,2061.286394,3505,NO,36.4,42.43,3,3.43,6106,113.351866,123.18471,132.887914,139.443389,I,Above,Hip,0,5701,,39.4136746,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 19383,NJBF000054013,26 N JEFFERSON AVE,Margate City,NJ,39.322106,-74.516805,RES1,3001,,18,NE,2015,2015,3102,2,2,569.7431361,569.7431361,3507,NO,35.47,48.62,1,-0.81,6106,113.225445,123.079073,132.767562,139.325853,I,Above,Hip,0,5701,,42.04651173,0,0,,,,1,1,,0.03,nav,1,2015,2,, 19384,NJBF000056894,318 N RUMSON AVE,Margate City,NJ,39.3294793,-74.51282715,RES1,3001,,17,NE,1967,1967,3102,2,1,2254.130571,2254.130571,3505,NO,28.51,35.44,3,4.94,6106,113.203059,123.064504,132.758213,139.311236,I,Above,Flat,0,5701,,31.97675941,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 19385,NJBF000056548,111 N NASSAU AVE,Margate City,NJ,39.32871956,-74.50777484,RES1,3001,,17,NE,1925,1925,3102,2,1,3481.430762,3481.430762,3505,NO,33.64,46.31,3,7.01,6110,113.325062,123.162288,132.859169,139.424585,I,Above,Hip,0,5701,,39.97297345,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 19386,NJBF000056560,,Margate City,NJ,39.32875266,-74.50877809,RES1,3001,,NaN,NE,1969,0,3102,2,1,1756.584473,1756.584473,3505,NO,35.54,42.71,3,8.91,6106,113.302553,123.144206,132.840393,139.403664,I,Above,Flat,0,5701,,39.12223161,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19387,NJBF000057065,116 N KENYON AVE,Margate City,NJ,39.32985064,-74.50661226,RES1,3001,,17,NE,1951,1951,3102,2,1,1755.012038,1755.012038,3505,NO,35.57,47.1,3,-1.91,6106,113.334259,123.169976,132.868018,139.433286,I,Above,Hip,0,5701,,41.3337334,0,0,,,,1,1,,0.03,nav,1,1951,2,, 19388,NJBF000054453,109 S RUMSON AVE,Margate City,NJ,39.32344377,-74.50648786,RES1,3001,,20,NE,1978,1978,3102,2,1,2372.815484,2372.815484,3505,NO,21.23,27.18,3,-2.13,6106,113.430554,123.245225,132.941032,139.51815,I,Above,Gable,0,5701,,24.20789586,0,0,,,,1,1,,0.03,nav,1,1978,2,, 19389,NJBF000055663,19 S KNIGHT AVE,Margate City,NJ,39.32668445,-74.50266946,RES1,3001,,17,NE,1952,1952,3101,2,1,1742.06494,1742.06494,3505,NO,42.4,48.17,3,4.2,6106,113.466713,123.275637,132.975644,139.555116,I,Above,Flat,0,5701,,45.28601336,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 19390,NJBF000059602,212 N DOUGLAS AVE,Margate City,NJ,39.3345285,-74.500297,RES1,3001,,17,NE,1956,1956,3102,2,1,1249.928244,1249.928244,3505,NO,30.48,37.09,3,-2.92,6106,113.406904,123.228916,132.932882,139.497296,I,Above,Gable,0,5701,,33.78370368,0,0,,,,1,1,,0.03,nav,1,1956,2,, 19391,NJBF000057905,119 N HANOVER AVE,Margate City,NJ,39.33136681,-74.50399148,RES1,3001,,17,NE,1957,1957,3102,1,1,1555.527763,1555.527763,3507,NO,14.4,25.04,1,2.04,6106,113.370182,123.199138,132.899527,139.466314,I,Above,Hip,0,5701,,19.7173477,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 19392,NJBF000061283,301 N ARGYLE AVE,Margate City,NJ,39.33737339,-74.49729351,RES1,3001,,17,NE,1957,1957,3103,1,1,2429.254796,2429.254796,3505,NO,16.85,30.15,3,5.86,6106,113.433685,123.250308,132.957202,139.516037,I,Above,Hip,0,5701,,23.50074401,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, 19393,NJBF000058550,102 N EXETER AVE,Margate City,NJ,39.33250469,-74.50005443,RES1,3001,,NaN,NE,1952,0,3101,1,1,1218.910236,1218.910236,3505,NO,23.13,30.37,3,4.97,6106,113.440755,123.255992,132.959788,139.530908,I,Above,Hip,0,5701,,26.75294211,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19394,NJBF000055575,103 S JEROME AVE,Margate City,NJ,39.32646207,-74.50177033,RES1,3001,,19,NE,1966,1966,3102,2,1,1659.496657,1659.496657,3505,NO,39.21,52.89,3,3.48,6106,113.489659,123.294048,132.994682,139.576212,I,Above,Hip,0,5701,,46.04858339,0,0,,,,1,1,,0.03,nav,1,1966,2,, 19395,NJBF000055669,210 N WILSON AVE,Margate City,NJ,39.32670145,-74.51468528,RES1,3001,,43,NE,1950,1950,3102,2,2,1096.406775,1096.406775,3505,NO,35.59,46.42,3,7.1,6106,113.203097,123.063504,132.755188,139.310046,I,Above,Gable,0,5701,,41.00483675,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19396,NJBF000057658,8102 WINCHESTER AVE,Margate City,NJ,39.3309507,-74.50195542,RES1,3001,,17,NE,1950,1950,3101,1,1,1496.364897,1496.364897,3505,NO,17.85,31.12,3,1.9,6106,113.420954,123.23987,132.941757,139.51355,I,Above,Flat,0,5701,,24.48327473,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19397,NJBF000057601,29 N HAVERFORD AVE,Margate City,NJ,39.33086342,-74.50191049,RES1,3001,,17,NE,1949,1949,3102,2,1,1329.27816,1329.27816,3505,NO,25.54,37.8,3,-2.37,6106,113.423201,123.241661,132.943562,139.515664,I,Above,Flat,0,5701,,31.66605573,0,0,,,,1,1,,0.03,nav,1,1949,2,, 19398,NJBF000057467,6 N FRANKLIN AVE,Margate City,NJ,39.33061762,-74.49899691,RES1,3001,,18,NE,1925,1925,3102,2,1,1315.782541,1315.782541,3505,NO,33.94,42.93,3,-1.23,6106,113.490817,123.296006,133.000234,139.578419,I,Above,Hip,0,5701,,38.4340862,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19399,NJBF000058405,217 N IROQUOIS AVE,Margate City,NJ,39.33225369,-74.50566476,RES1,3001,,17,NE,1950,1950,3102,2,1,1183.740608,1183.740608,3505,NO,21.6,27.3,3,-1.8,6106,113.320646,123.159494,132.858809,139.419936,I,Above,Hip,0,5701,,24.45023369,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 19400,NJBF000058579,205 N HAVERFORD AVE,Margate City,NJ,39.3325495,-74.5035065,RES1,3001,,17,NE,1961,1961,3102,2,1,1245.434042,1245.434042,3505,NO,30.13,43.91,3,6.14,6106,113.364014,123.194346,132.895369,139.459901,I,Above,Gable,0,5701,,37.01729172,0,0,,,,1,1,,0.03,nav,1,1961,2,, 19401,NJBF000056990,217 N OSBORNE AVE,Margate City,NJ,39.32969084,-74.50969129,RES1,3001,,17,NE,1953,1953,3101,1,1,1504.067349,1504.067349,3505,NO,18.88,28.91,3,1.42,6106,113.26888,123.117418,132.813246,139.37251,I,Above,Gable,0,5701,,23.89353481,0,0,,,,1,1,,0.03,nav,1,1953,1,, 19402,NJBF000058907,208 N GLADSTONE AVE,Margate City,NJ,39.33315925,-74.50283674,RES1,3001,,17,NE,1952,1952,3102,2,1,1206.343493,1206.343493,3505,NO,31.54,36.59,3,0.14,6106,113.37014,123.199325,132.900993,139.465048,I,Above,Hip,0,5701,,34.06606092,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19403,NJBF000058340,212 N HANOVER AVE,Margate City,NJ,39.33213224,-74.50524145,RES1,3001,,17,NE,1945,1945,3101,1,1,1783.027566,1783.027566,3505,NO,13.85,21.99,3,1.64,6106,113.331729,123.168374,132.867981,139.43028,I,Above,Hip,0,5701,,17.91892744,0,0,,,,1,1,,0.03,nav,1,1945,1,, 19404,NJBF000058572,7507 VENTNOR AVE,Margate City,NJ,39.33253617,-74.49432759,RES1,3001,,18,NE,1969,1969,3102,2,1,2062.47846,2062.47846,3505,NO,37.05,48.52,3,8.38,6106,113.56651,123.35718,133.065977,139.646863,I,Above,Hip,0,5701,,42.78331075,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19405,NJBF000058198,,Margate City,NJ,39.3318855,-74.49591118,RES1,3001,,NaN,NE,1969,0,3102,2,1,1024.898019,1024.898019,3505,NO,24.67,30.89,3,2.02,6106,113.540805,123.336417,133.043636,139.623883,I,Above,Hip,0,5701,,27.77868257,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19406,NJBF000058148,,Margate City,NJ,39.331791,-74.49583671,RES1,3001,,NaN,NE,1969,0,3102,2,1,1120.953984,1120.953984,3505,NO,37.65,52.35,3,4.64,6106,113.543762,123.338787,133.046049,139.626698,I,Above,Flat,0,5701,,44.99999675,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19407,NJBF000059007,17 N BRUNSWICK AVE,Margate City,NJ,39.33335357,-74.49561834,RES1,3001,,19,NE,1928,1928,3102,2,1,1727.26068,1727.26068,3505,NO,19.19,25.46,3,-2.82,6106,113.526595,123.325099,133.032903,139.609035,I,Above,Hip,0,5701,,22.32528026,0,0,,,,1,1,,0.03,nav,1,1928,2,, 19408,NJBF000053658,,Margate City,NJ,39.32077904,-74.51861208,RES1,3001,,NaN,NE,1969,0,3102,2,1,2529.008542,2529.008542,3507,NO,27.1,40.95,1,2.86,6106,113.206255,123.062702,132.749498,139.305915,I,Above,Flat,0,5701,,34.02095625,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19409,NJBF000053299,4 S COOLIDGE AVE,Margate City,NJ,39.31942669,-74.5179372,RES1,3001,,NaN,NE,1951,0,3102,2,1,1191.529102,1191.529102,3507,NO,36.56,45.51,1,0.74,6106,113.241475,123.090219,132.776637,139.336391,I,Above,Gable,0,5701,,41.03430972,0,0,,,,1,1,,0.03,nav,1,1951,2,, 19410,NJBF000053779,12 N MADISON AVE,Margate City,NJ,39.32125811,-74.51729279,RES1,3001,,20,NE,1988,1988,3102,2,1,1649.927954,1649.927954,3507,NO,35.18,40.53,1,-0.54,6106,113.227644,123.080306,132.768087,139.326618,I,Above,Flat,0,5701,,37.85285794,0,0,,,,1,1,,0.03,nav,1,1988,2,, 19411,NJBF000056625,109 S ESSEX AVE,Margate City,NJ,39.32889939,-74.4956918,RES1,3001,,21,NE,2012,2012,3102,3,1,1912.388627,1912.388627,3505,NO,35.39,46.36,3,0.17,6106,113.588026,123.373971,133.08055,139.668688,I,Above,Flat,0,5701,,40.8723587,0,0,,,,1,1,,0.03,nav,1,2012,3,, 19412,NJBF000058397,104 N FRONTENAC AVE,Margate City,NJ,39.332239,-74.5009365,RES1,3001,,17,NE,1955,1955,3102,2,1,1674.087325,1674.087325,3505,NO,30.73,42.03,3,-1.07,6106,113.425081,123.243367,132.946379,139.516639,I,Above,Gable,0,5701,,36.38141939,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 19413,NJBF000059098,8016 AMHERST AVE,Margate City,NJ,39.33354405,-74.50335221,RES1,3001,,17,NE,1952,1952,3101,1,1,1543.57822,1543.57822,3505,NO,14.55,21.73,3,-1.36,6106,113.353335,123.185865,132.887197,139.44914,I,Above,Flat,0,5701,,18.14117943,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19414,NJBF000057691,114 N HANOVER AVE,Margate City,NJ,39.33100746,-74.50416414,RES1,3001,,17,NE,1950,1950,3102,1,1,1084.861934,1084.861934,3507,NO,20.4,26.13,1,1.13,6106,113.371519,123.200151,132.900321,139.46769,I,Above,Hip,0,5701,,23.26407921,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19415,NJBF000060859,7 E GILMAR CIRCLE,Margate City,NJ,39.33665516,-74.50615408,RES1,3001,,17,NE,1965,1965,3101,1,1,1660.692324,1660.692324,3505,NO,13.29,23.8,3,-2,6106,113.247701,123.101232,132.800809,139.347601,I,Above,Gable,0,5701,,18.54371932,0,0,,,,1,1,,0.03,nav,1,1965,1,, 19416,NJBF000059200,26 WEST DRIVE,Margate City,NJ,39.3337624,-74.49555854,RES1,3001,,18,NE,1925,1925,3102,2,1,1426.92366,1426.92366,3505,NO,33.57,41.76,3,5.87,6106,113.52218,123.321565,133.029502,139.604349,I,Above,Hip,0,5701,,37.66453794,0,0,,,,1,1,,0.03,nav,1,1925,2,, 19417,NJBF000063626,5 ARGYLE COURT,Margate City,NJ,39.34223133,-74.50273838,RES1,3001,,19,NE,1990,1990,3102,2,1,1767.019506,1767.019506,3505,NO,44.65,55.96,3,7.54,6106,113.246676,123.09944,132.801744,139.333303,I,Above,Hip,0,5701,,50.30616102,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 19418,NJBF000064006,7401 BAYSHORE DR,Margate City,NJ,39.34331723,-74.50236747,RES1,3001,,20,NE,1985,1985,3102,2,1,1896.142455,1896.142455,3505,NO,33.13,39.01,3,3.5,6106,113.240259,123.093948,132.796476,139.324008,I,Above,Flat,0,5701,,36.07127228,0,0,,,,1,1,,0.03,nav,1,1985,2,, 19419,NJBF000059242,8509 WELLINGTON AVE,Margate City,NJ,39.33383729,-74.51087313,RES1,3001,,19,NE,1988,1988,3102,2,1,2070.543298,2070.543298,3505,NO,24.39,30.76,3,-2.97,6106,113.18324,123.049524,132.745428,139.291487,I,Above,Hip,0,5701,,27.57297085,0,0,,,,1,1,,0.03,nav,1,1988,2,, 19420,NJBF000060234,9 SEASIDE COURT,Margate City,NJ,39.33562553,-74.50804749,RES1,3001,,19,NE,1992,1992,3101,2,1,1784.176211,1784.176211,3505,NO,28.09,41.65,3,6.94,6106,113.220289,123.0793,132.777393,139.323875,I,Above,Hip,0,5701,,34.87318936,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 19421,NJBF000060298,11 SEASIDE COURT,Margate City,NJ,39.33573595,-74.50814455,RES1,3001,,18,NE,1996,1996,3101,2,1,1751.977037,1751.977037,3505,NO,36.09,45.43,3,3.84,6106,113.216574,123.076327,132.774361,139.320304,I,Above,Flat,0,5701,,40.75917754,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 19422,NJBF000061773,21 HARBOUR LANE,Margate City,NJ,39.33823201,-74.50780306,RES1,3001,,18,NE,1978,1978,3102,2,1,2127.157867,2127.157867,3505,NO,27.48,36.49,3,6.4,6106,113.189222,123.054323,132.752767,139.291102,I,Above,Gable,0,5701,,31.98748446,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 19423,NJBF000061740,6 HARBOUR LANE,Margate City,NJ,39.33817294,-74.50916766,RES1,3001,,18,NE,1981,1981,3102,2,1,1359.160524,1359.160524,3505,NO,27.66,36.11,3,-1.25,6106,113.159814,123.030819,132.72828,139.264223,I,Above,Gable,0,5701,,31.88486071,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 19424,NJBF000062956,7802 BAYSHORE DR,Margate City,NJ,39.34057593,-74.50655215,RES1,3001,,19,NE,1964,1964,3102,2,1,2711.3769,2711.3769,3505,NO,37.78,51.77,3,1.65,6106,113.184586,123.05024,132.74961,139.281716,I,Above,Hip,0,5701,,44.77241191,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 19425,NJBF000060035,308 N ESSEX AVE,Margate City,NJ,39.33528082,-74.50207235,RES1,3001,,20,NE,2015,2015,3102,3,1,1849.081874,1849.081874,3505,NO,40.55,55.35,3,-1.58,6106,113.357155,123.18899,132.891607,139.450415,I,Above,Hip,0,5701,,47.95308707,0,0,,,,1,1,,0.03,nav,1,2015,3,, 19426,NJBF000059299,111 N DELAVAN AVE,Margate City,NJ,39.3339615,-74.4985235,RES1,3001,,45,NE,1960,1960,3103,1,2,1270.657009,1270.657009,3505,NO,21.2,33.82,3,3.71,6110,113.453972,123.266716,132.972086,139.541403,I,Above,Hip,0,5701,,27.51041097,0,0,,,,1,1,,0.35,nav,1,1960,1,, 19427,NJBF000056997,115 N LANCASTER AVE,Margate City,NJ,39.32971173,-74.50689854,RES1,3001,,17,NE,1945,1945,3102,2,1,1340.831199,1340.831199,3505,NO,30.92,37.11,3,4.87,6106,113.329954,123.166484,132.86428,139.429284,I,Above,Hip,0,5701,,34.01423113,0,0,,,,1,1,,0.03,nav,1,1945,2,, 19428,NJBF000057247,19 N HUNTINGTON AVE,Margate City,NJ,39.33022291,-74.50210116,RES1,3001,,18,NE,1925,1925,3102,2,1,1248.67472,1248.67472,3505,NO,34.68,48.13,3,5.32,6106,113.428146,123.245521,132.947102,139.520414,I,Above,Hip,0,5701,,41.40785153,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19429,NJBF000057790,7801 VENTNOR AVE,Margate City,NJ,39.33117045,-74.49717666,RES1,3001,,NaN,NE,1945,1945,3102,1,1,1340.857354,1340.857354,3505,NO,21.32,26.46,3,7.06,6106,113.523039,123.322025,133.027954,139.607999,I,Above,Flat,0,5701,,23.89052593,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 19430,NJBF000056445,15 S HAVERFORD AVE,Margate City,NJ,39.32848402,-74.49971965,RES1,3001,,17,NE,1937,1937,3102,2,1,1019.893334,1019.893334,3505,NO,37.45,52.11,3,7.27,6106,113.505449,123.307345,133.010343,139.592017,I,Above,Flat,0,5701,,44.77840513,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 19431,NJBF000056922,4 N HAVERFORD AVE,Margate City,NJ,39.32954187,-74.50113716,RES1,3001,,17,NE,1925,1925,3101,1,1,1321.109149,1321.109149,3505,NO,16.46,26.43,3,5.39,6106,113.459109,123.270287,132.972451,139.549193,I,Above,Gable,0,5701,,21.44311046,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 19432,NJBF000056889,2 N HAVERFORD AVE,Margate City,NJ,39.3294655,-74.501041,RES1,3001,,18,NE,1925,1925,3102,3,1,664.2603103,664.2603103,3505,NO,42.83,52.35,3,-0.66,6106,113.462325,123.272858,132.975077,139.552174,I,Above,Hip,0,5701,,47.58714996,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 19433,NJBF000054730,9 S SUMNER AVE,Margate City,NJ,39.32417977,-74.50814083,RES1,3001,,18,NE,1950,1950,3101,1,1,2025.644048,2025.644048,3505,NO,19.74,32.3,3,1.68,6106,113.383533,123.207659,132.902614,139.475522,I,Above,Flat,0,5701,,26.02067676,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19434,NJBF000058522,19 N DELAVAN AVE,Margate City,NJ,39.3324616,-74.49711615,RES1,3001,,45,NE,1929,1929,3102,2,2,1223.49583,1223.49583,3505,NO,29.14,42.01,3,1.45,6106,113.506116,123.308554,133.014844,139.591302,I,Above,Flat,0,5701,,35.57629943,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 19435,NJBF000059899,114 N BARCLAY AVE,Margate City,NJ,39.33504626,-74.49708055,RES1,3001,,17,NE,1950,1950,3102,2,1,2175.061719,2175.061719,3505,NO,41.95,54.36,3,6.58,6106,113.47066,123.280146,132.986948,139.554901,I,Above,Gable,0,5701,,48.1537029,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19436,NJBF000062777,9 BAYSHORE CT,Margate City,NJ,39.3402065,-74.5069755,RES1,3001,,19,NE,1965,1965,3102,2,1,1569.032494,1569.032494,3505,NO,30.45,40.38,3,7.63,6106,113.18027,123.046869,132.74593,139.278682,I,Above,Flat,0,5701,,35.41506686,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19437,NJBF000061617,417 N DELAVAN AVE,Margate City,NJ,39.33795567,-74.50235311,RES1,3001,,17,NE,1952,1952,3102,1,1,2112.445629,2112.445629,3505,NO,13.92,21.24,3,-2.52,6106,113.313713,123.154,132.856638,139.405556,I,Above,Hip,0,5701,,17.58089178,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19438,NJBF000060219,121 N BARCLAY AVE,Margate City,NJ,39.33559867,-74.49710401,RES1,3001,,17,NE,1930,1930,3102,2,1,1243.522235,1243.522235,3505,NO,42.87,53.28,3,8.48,6106,113.462453,123.273539,132.980401,139.546307,I,Above,Hip,0,5701,,48.07237739,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19439,NJBF000060722,8202 MARSHALL AVE,Margate City,NJ,39.3364505,-74.508909,RES1,3001,,17,NE,1971,1971,3101,1,1,1596.921663,1596.921663,3505,NO,10.66,23.5,3,-1.87,6106,113.189644,123.054771,132.752324,139.294481,I,Above,Gable,0,5701,,17.07769855,0,0,,,,1,1,,0.03,nav,1,1971,1,, 19440,NJBF000058475,8103 MONMOUTH AVE,Margate City,NJ,39.33237695,-74.50332773,RES1,3001,,17,NE,1958,1958,3102,2,1,1682.317567,1682.317567,3505,NO,37.07,45.54,3,4.42,6106,113.370403,123.199456,132.900583,139.465941,I,Above,Flat,0,5701,,41.30564299,0,0,,,,1,1,,0.03,nav,1,1958,2,, 19441,NJBF000060629,420 N HUNTINGTON AVE,Margate City,NJ,39.33629534,-74.50833192,RES1,3001,,17,NE,1964,1964,3101,1,1,1437.90372,1437.90372,3505,NO,18.56,30.96,3,1.57,6106,113.20458,123.066725,132.764676,139.30847,I,Above,Gable,0,5701,,24.75998412,0,1.2,,,,1,1,,0.03,nav,1,1964,1,, 19442,NJBF000057474,106 N HANOVER AVE,Margate City,NJ,39.33063173,-74.50384765,RES1,3001,,17,NE,1950,1950,3102,1,1,1591.749544,1591.749544,3507,NO,16.53,29.32,1,0.02,6106,113.383843,123.209985,132.910305,139.47923,I,Above,Hip,0,5701,,22.92472886,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19443,NJBF000057792,429 N PEMBROKE AVE,Margate City,NJ,39.33117599,-74.5120297,RES1,3001,,21,NE,1999,1999,3102,2,1,2876.607077,2876.607077,3505,NO,29.01,39.49,3,6.83,6106,113.195949,123.059255,132.753899,139.304595,I,Above,Hip,0,5701,,34.24625684,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 19444,NJBF000060506,305 N DELAVAN AVE,Margate City,NJ,39.33610098,-74.50060835,RES1,3001,,17,NE,1950,1950,3102,1,1,1390.102469,1390.102469,3505,NO,19.73,31.9,3,8.21,6106,113.378052,123.205739,132.909657,139.468171,I,Above,Hip,0,5701,,25.81908789,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19445,NJBF000062049,5 BAYCREST COURT,Margate City,NJ,39.33870947,-74.50876246,RES1,3001,,18,NE,1977,1977,3102,1,1,4864.655182,4864.655182,3505,NO,15.25,25.84,3,2.45,6106,113.161353,123.031992,132.729752,139.264627,I,Above,Hip,0,5701,,20.54535777,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 19446,NJBF000060281,305 N DOUGLAS AVE,Margate City,NJ,39.33570963,-74.50103851,RES1,3001,,17,NE,1962,1962,3102,2,1,1915.044579,1915.044579,3505,NO,33.46,48.24,3,-2.44,6106,113.373979,123.202484,132.905998,139.465151,I,Above,Gable,0,5701,,40.85002918,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 19447,NJBF000060179,110 N ARGYLE AVE,Margate City,NJ,39.33554,-74.496093,RES1,3001,,19,NE,2002,2002,3102,2,1,813.3647597,813.3647597,3505,NO,43.93,50.89,3,8.93,6106,113.4856,123.292148,132.999901,139.567533,I,Above,Gable,0,5701,,47.41077842,0,0,,,,1,1,,0.03,nav,1,2002,2,, 19448,NJBF000058590,202 N GRANVILLE AVE,Margate City,NJ,39.33257411,-74.5032408,RES1,3001,,17,NE,1954,1954,3102,2,1,1252.494631,1252.494631,3505,NO,41.67,46.96,3,7.73,6106,113.369523,123.198772,132.900008,139.46498,I,Above,Hip,0,5701,,44.31407985,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 19449,NJBF000058930,211 N GRANVILLE AVE,Margate City,NJ,39.33320201,-74.50332398,RES1,3001,,17,NE,1950,1950,3101,1,1,1016.220095,1016.220095,3505,NO,24.02,32.98,3,7.24,6106,113.35879,123.190217,132.891509,139.454517,I,Above,Gable,0,5701,,28.5009901,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19450,NJBF000056410,14 S HAVERFORD AVE,Margate City,NJ,39.32840998,-74.50014734,RES1,3001,,18,NE,1935,1935,3101,2,1,1063.264108,1063.264108,3505,NO,26.03,36.76,3,-0.11,6106,113.497131,123.300628,133.003251,139.584277,I,Above,Flat,0,5701,,31.39423159,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 19451,NJBF000057638,110 S FREDERICKSBURG AVE,Margate City,NJ,39.33092488,-74.49121063,RES1,3001,,21,NE,2009,2009,3102,3,1,1462.624653,1462.624653,3505,NO,48.06,57.2,3,-2.84,6106,113.657815,123.43061,133.141908,139.732748,I,Above,Flat,0,5701,,52.63033632,0,0,,,,1,1,,0.03,nav,1,2009,3,, 19452,NJBF000058732,219 N HUNTINGTON AVE,Margate City,NJ,39.33283101,-74.5046215,RES1,3001,,17,NE,1945,1945,3102,2,1,987.9466205,987.9466205,3505,NO,33.78,45.28,3,8.28,6106,113.335448,123.171445,132.871664,139.433245,I,Above,Gable,0,5701,,39.5306336,0,0,,,,1,1,,0.03,nav,1,1945,2,, 19453,NJBF000058805,218 N HAVERFORD AVE,Margate City,NJ,39.33296599,-74.50442418,RES1,3001,,17,NE,1953,1953,3101,1,1,1549.160395,1549.160395,3505,NO,17.49,31.97,3,1.11,6106,113.337876,123.173408,132.873803,139.435383,I,Above,Gable,0,5701,,24.72729809,0,0,,,,1,1,,0.03,nav,1,1953,1,, 19454,NJBF000060058,120 N BARCLAY AVE,Margate City,NJ,39.33533017,-74.49734684,RES1,3001,,17,NE,1950,1950,3102,2,1,1262.955876,1262.955876,3505,NO,42.02,53.57,3,4,6110,113.46083,123.272241,132.978851,139.545367,I,Above,Hip,0,5701,,47.7986552,0,0,,,,1,1,,0.35,nav,1,1950,2,, 19455,NJBF000060054,123 N BRUNSWICK AVE,Margate City,NJ,39.33532235,-74.49759983,RES1,3001,,17,NE,1950,1950,3102,2,1,1091.699622,1091.699622,3505,NO,30.54,41.73,3,-2.36,6106,113.455355,123.26784,132.974228,139.540378,I,Above,Gable,0,5701,,36.13637699,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19456,NJBF000058647,7705 OAK GROVE,Margate City,NJ,39.33266625,-74.49777828,RES1,3001,,17,NE,1945,1945,3102,1,1,1496.320427,1496.320427,3505,NO,9.52,15.97,3,-2.02,6106,113.48865,123.29452,133.000279,139.574973,I,Above,Gable,0,5701,,12.74725083,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 19457,NJBF000058257,6 N CLERMONT AVE,Margate City,NJ,39.33198551,-74.4964601,RES1,3001,,17,NE,1954,1954,3102,1,1,1573.341793,1573.341793,3505,NO,14.14,25.11,3,-0.81,6106,113.527286,123.325544,133.032301,139.611308,I,Above,Flat,0,5701,,19.62473499,0,0,,,,1,1,,0.03,nav,1,1954,1,, 19458,NJBF000061168,407 N DELAVAN AVE,Margate City,NJ,39.33717856,-74.50164715,RES1,3001,,17,NE,1952,1952,3102,1,1,1583.990027,1583.990027,3505,NO,17.3,26.26,3,4.8,6106,113.340097,123.175225,132.878387,139.431315,I,Above,Hip,0,5701,,21.78058271,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 19459,NJBF000059562,8204 FULTON AVE,Margate City,NJ,39.33446737,-74.50708756,RES1,3001,,17,NE,1939,1939,3101,1,1,851.7443769,851.7443769,3505,NO,17.9,25.73,3,7.39,6106,113.25783,123.109331,132.807977,139.359926,I,Above,Hip,0,5701,,21.81567453,0,1.1,,,,1,1,,0.03,nav,1,1939,1,, 19460,NJBF000059583,8202 FULTON AVE,Margate City,NJ,39.33449645,-74.50696689,RES1,3001,,17,NE,1945,1945,3101,2,1,1355.258732,1355.258732,3505,NO,45.66,60.52,3,7.3,6106,113.260091,123.111145,132.809883,139.361984,I,Above,Hip,0,5701,,53.08957167,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 19461,NJBF000058080,124 N HUNTINGTON AVE,Margate City,NJ,39.33166965,-74.50396983,RES1,3001,,17,NE,1946,1946,3102,2,1,964.2719128,964.2719128,3507,NO,30.76,36.4,1,0.97,6106,113.36632,123.196083,132.896558,139.462592,I,Above,Hip,0,5701,,33.58059091,0,0,,,,1,1,,0.03,nav,1,1946,2,, 19462,NJBF000058693,217 N HUNTINGTON AVE,Margate City,NJ,39.33277004,-74.50452484,RES1,3001,,17,NE,1962,1962,3101,1,1,1397.48303,1397.48303,3505,NO,18.03,24.47,3,6.47,6106,113.338432,123.173833,132.874113,139.436054,I,Above,Hip,0,5701,,21.25134149,0,0,,,,1,1,,0.03,nav,1,1962,1,, 19463,NJBF000056372,20 S GRANVILLE AVE,Margate City,NJ,39.32833174,-74.49932385,RES1,3001,,20,NE,1964,1964,3102,2,1,1448.867357,1448.867357,3505,NO,23.62,30,3,0.2,6106,113.516335,123.316074,133.019352,139.602063,I,Above,Flat,0,5701,,26.80896583,0,0,,,,1,1,,0.03,nav,1,1964,2,, 19464,NJBF000058456,,Margate City,NJ,39.33235147,-74.50496447,RES1,3001,,NaN,NE,1969,0,3102,2,1,1713.480209,1713.480209,3505,NO,47.15,59.22,3,8.3,6106,113.334713,123.170798,132.870661,139.432909,I,Above,Flat,0,5701,,53.18367383,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19465,NJBF000056541,8007 ATLANTIC AVE,Margate City,NJ,39.32869776,-74.49850306,COM1,3001,,45,ME,1930,1930,3401,2,4,932.3200123,932.3200123,3507,NO,26.72,33.43,1,-1,6106,113.529121,123.326461,133.030545,139.614031,I,Above,Hip,0,NaN,,30.07625721,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19466,NJBF000054110,,Margate City,NJ,39.3224015,-74.515543,RES1,3001,,NaN,NE,2017,0,3102,2,1,1012.454485,1012.454485,3507,NO,35.23,43.28,1,2,6106,113.248478,123.09784,132.787206,139.347728,I,Above,Gable,0,5701,,39.25942849,0,0,,,,1,1,,0.03,nav,1,2017,2,, 19467,NJBF000057270,216 N MANSFIELD AVE,Margate City,NJ,39.33026426,-74.50891589,RES1,3001,,17,NE,1952,1952,3101,1,1,1202.82736,1202.82736,3505,NO,20.99,34.39,3,7.15,6106,113.277628,123.124589,132.821102,139.38065,I,Above,Gable,0,5701,,27.69086455,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19468,NJBF000057907,8204 MONMOUTH AVE,Margate City,NJ,39.33136731,-74.50452626,RES1,3001,,17,NE,1955,1955,3101,1,1,1082.839926,1082.839926,3507,NO,19.66,25.5,1,2.25,6106,113.3584,123.189674,132.889653,139.455388,I,Above,Gable,0,5701,,22.58006853,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 19469,NJBF000059659,,Margate City,NJ,39.334633,-74.4966495,RES1,3001,,NaN,NE,1969,0,3102,2,1,1291.749745,1291.749745,3505,NO,30.85,44.28,3,-0.59,6106,113.485935,123.292428,132.999546,139.569643,I,Above,Gable,0,5701,,37.56108831,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19470,NJBF000058776,111 N FRONTENAC AVE,Margate City,NJ,39.33291978,-74.50091352,RES1,3001,,17,NE,1954,1954,3102,2,1,1933.551976,1933.551976,3505,NO,29.73,38.02,3,6.81,6106,113.415927,123.236079,132.93925,139.507583,I,Above,Hip,0,5701,,33.87392213,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 19471,NJBF000055707,15 S KENYON AVE,Margate City,NJ,39.32679107,-74.50349287,RES1,3001,,20,NE,2008,2008,3102,3,1,1287.156857,1287.156857,3505,NO,40.19,49.28,3,5.44,6106,113.447081,123.259862,132.959269,139.536986,I,Above,Flat,0,5701,,44.7373765,0,0,,,,1,1,,0.03,nav,1,2008,3,, 19472,NJBF000058862,20 N BRUNSWICK AVE,Margate City,NJ,39.33307438,-74.49589686,RES1,3001,,21,NE,2012,2012,3102,3,1,1496.258483,1496.258483,3505,NO,39.83,50.57,3,-2.95,6106,113.524373,123.323294,133.030791,139.607389,I,Above,Gable,0,5701,,45.20457198,0,0,,,,1,1,,0.03,nav,1,2012,3,, 19473,NJBF000058821,,Margate City,NJ,39.33298787,-74.49580937,RES1,3001,,NaN,NE,2012,0,3102,2,1,1170.388224,1170.388224,3505,NO,42.75,56.88,3,7.72,6106,113.527521,123.325821,133.033379,139.6104,I,Above,Gable,0,5701,,49.8176934,0,0,,,,1,1,,0.03,nav,1,2012,2,, 19474,NJBF000056161,114 N PEMBROKE AVE,Margate City,NJ,39.32785959,-74.50939505,RES1,3001,,17,NE,1922,1922,3102,2,1,1518.31051,1518.31051,3505,NO,39.15,53.68,3,1.55,6106,113.302014,123.143491,132.838974,139.402836,I,Above,Hip,0,5701,,46.41352605,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 19475,NJBF000055340,105 S KENYON AVE,Margate City,NJ,39.32582467,-74.5027307,RES1,3001,,19,NE,1948,1948,3102,2,1,987.6317536,987.6317536,3505,NO,25.45,30.79,3,-2.6,6106,113.477855,123.284321,132.983955,139.56471,I,Above,Flat,0,5701,,28.12272461,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19476,NJBF000060847,67 BAYSIDE COURT,Margate City,NJ,39.33664373,-74.50978866,RES1,3001,,19,NE,1990,1990,3102,2,1,1351.87599,1351.87599,3505,NO,27.92,34.03,3,5.29,6106,113.167458,123.037019,132.73397,139.273751,I,Above,Hip,0,5701,,30.97694452,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 19477,NJBF000059186,8504 WELLINGTON AVE,Margate City,NJ,39.33373106,-74.51035679,RES1,3001,,18,NE,1971,1971,3102,2,1,2969.211585,2969.211585,3505,NO,20.43,31.67,3,-2.31,6106,113.196134,123.05984,132.756077,139.30352,I,Above,Gable,0,5701,,26.04876275,0,0,,,,1,1,,0.03,nav,1,1971,2,, 19478,NJBF000058938,33 N DELAVAN AVE,Margate City,NJ,39.33320954,-74.4978039,RES1,3001,,17,NE,1948,1948,3102,1,1,1470.660785,1470.660785,3505,NO,19.67,26.63,3,4.28,6106,113.480416,123.287939,132.993787,139.566751,I,Above,Gable,0,5701,,23.14894902,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 19479,NJBF000058947,34 N CLERMONT AVE,Margate City,NJ,39.33322456,-74.49756677,RES1,3001,,19,NE,2012,2012,3102,3,1,1197.63721,1197.63721,3505,NO,49.24,60.54,3,0.49,6106,113.485432,123.291973,132.99803,139.571351,I,Above,Hip,0,5701,,54.8902662,0,0,,,,1,1,,0.03,nav,1,2012,3,, 19480,NJBF000058884,31 N DELAVAN AVE,Margate City,NJ,39.333119,-74.49774167,RES1,3001,,19,NE,1928,1928,3102,2,1,1054.337139,1054.337139,3505,NO,32.49,45.33,3,-1.28,6106,113.483064,123.290061,132.995946,139.569303,I,Above,Gable,0,5701,,38.90652959,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 19481,NJBF000058104,211 N JASPER AVE,Margate City,NJ,39.33172362,-74.50593792,RES1,3001,,17,NE,1952,1952,3102,2,1,1239.733761,1239.733761,3505,NO,31.03,42.87,3,6.82,6106,113.322197,123.160661,132.85966,139.421658,I,Above,Hip,0,5701,,36.94928422,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19482,NJBF000060247,8218 MARSHALL AVE,Margate City,NJ,39.33564549,-74.51020182,RES1,3001,,19,NE,1997,1997,3101,3,1,2326.57279,2326.57279,3505,NO,43.75,49.07,3,7.7,6106,113.172399,123.040969,132.737551,139.279641,I,Above,Gable,0,5701,,46.40782346,0,1.1,,,,1,1,,0.03,nav,1,1997,3,, 19483,NJBF000060553,418 N HUNTINGTON AVE,Margate City,NJ,39.33617627,-74.50819089,RES1,3001,,17,NE,1963,1963,3101,2,1,2002.229085,2002.229085,3505,NO,31.2,39.35,3,7.4,6106,113.209369,123.070559,132.768601,139.313054,I,Above,Hip,0,5701,,35.27392273,0,0,,,,1,1,,0.03,nav,1,1963,2,, 19484,NJBF000058387,13 S ANDOVER AVE,Margate City,NJ,39.33222599,-74.49254305,RES1,3001,,21,NE,2014,2015,3102,2,1,1394.405579,1394.405579,3505,NO,37.11,48.11,3,-1.69,6106,113.610185,123.392346,133.102723,139.687438,I,Above,Gable,0,5701,,42.60800764,0,0,,,,1,1,,0.03,nav,1,2014,2,, 19485,NJBF000056816,7 S GLADSTONE AVE,Margate City,NJ,39.32932443,-74.49909265,RES1,3001,,45,NE,1930,1930,3102,2,2,1646.85012,1646.85012,3505,NO,40.05,47.18,3,5.67,6106,113.507181,123.308932,133.012714,139.593778,I,Above,Hip,0,5701,,43.61318262,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19486,NJBF000058347,11 N DELAVAN AVE,Margate City,NJ,39.33214405,-74.49686014,RES1,3001,,45,NE,1929,1929,3102,2,2,1394.195192,1394.195192,3505,NO,32.26,39.61,3,-0.03,6106,113.516243,123.316672,133.023115,139.600965,I,Above,Hip,0,5701,,35.93320893,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 19487,NJBF000060193,102 N FREDERICKSBURG AVE,Margate City,NJ,39.33556465,-74.4950518,RES1,3001,,17,NE,1950,1950,3102,1,1,1401.632799,1401.632799,3505,NO,21.57,30.78,3,2.48,6106,113.508238,123.310354,133.019053,139.588075,I,Above,Gable,0,5701,,26.17535941,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19488,NJBF000057729,7 S CLERMONT AVE,Margate City,NJ,39.33105681,-74.49525659,RES1,3001,,20,NE,2003,2003,3102,3,1,1744.720958,1744.720958,3505,NO,45.14,51.05,3,8.27,6106,113.566909,123.357338,133.064932,139.648651,I,Above,Flat,0,5701,,48.09564896,0,0,,,,1,1,,0.03,nav,1,2003,3,, 19489,NJBF000058997,19 CIRCLE DRIVE,Margate City,NJ,39.33332275,-74.49464941,RES1,3001,,18,NE,1925,1925,3102,2,1,1479.930869,1479.930869,3505,NO,32.95,40.7,3,3.97,6106,113.548393,123.342644,133.051318,139.629094,I,Above,Hip,0,5701,,36.82408552,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19490,NJBF000056309,19 S HAVERFORD AVE,Margate City,NJ,39.32819495,-74.49955849,RES1,3001,,19,NE,1962,1962,3102,3,1,2034.083181,2034.083181,3505,NO,53.86,61.74,3,0.1,6106,113.513165,123.313486,133.016525,139.599072,I,Above,Flat,0,5701,,57.80268958,0,1.2,,,,1,1,,0.03,nav,1,1962,3,, 19491,NJBF000057542,105 N HANOVER AVE,Margate City,NJ,39.33075017,-74.50342208,RES1,3001,,45,NE,1925,1925,3102,2,2,1627.197821,1627.197821,3507,NO,34.9,46.57,1,0.06,6106,113.391531,123.216185,132.916865,139.486331,I,Above,Hip,0,5701,,40.73270543,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19492,NJBF000059986,104 N ARGYLE AVE,Margate City,NJ,39.33519278,-74.4957719,RES1,3001,,17,NE,1960,1960,3102,1,1,1764.50627,1764.50627,3505,NO,24.66,30.12,3,8.7,6106,113.497511,123.301735,133.009726,139.579126,I,Above,Gable,0,5701,,27.38843743,0,0,,,,1,1,,0.03,nav,1,1960,1,, 19493,NJBF000057867,316 N MANSFIELD AVE,Margate City,NJ,39.33129146,-74.5099432,RES1,3001,,17,NE,1952,1952,3102,1,1,1370.203069,1370.203069,3505,NO,20.55,32.99,3,4.27,6106,113.240219,123.094793,132.790848,139.345717,I,Above,Gable,0,5701,,26.76756074,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19494,NJBF000059663,18 E COLMAR CIRCLE,Margate City,NJ,39.33463485,-74.50480598,RES1,3001,,17,NE,1952,1952,3101,1,1,1321.67158,1321.67158,3505,NO,16.35,21.91,3,-0.26,6106,113.305845,123.147827,132.848204,139.404064,I,Above,Hip,0,5701,,19.13164453,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 19495,NJBF000056884,203 N NASSAU AVE,Margate City,NJ,39.32945848,-74.50855285,RES1,3001,,17,NE,1927,1927,3102,2,1,710.9808871,710.9808871,3505,NO,31.02,42.92,3,0.9,6106,113.297267,123.140158,132.836707,139.398885,I,Above,Gable,0,5701,,36.96974619,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 19496,NJBF000056505,8009 ATLANTIC AVE,Margate City,NJ,39.32862728,-74.4986146,COM1,3001,,NaN,ME,1986,1986,3401,3,1,2470.505289,2470.505289,3507,NO,51,62.56,1,2.84,6106,113.527678,123.325282,133.029249,139.612675,I,Above,Gable,0,NaN,,56.77557499,0,0,,,,1,1,,0.03,nav,1,1986,3,, 19497,NJBF000058945,210 N GLADSTONE AVE,Margate City,NJ,39.33322074,-74.50293086,RES1,3001,,17,NE,1952,1952,3101,1,1,1812.143658,1812.143658,3505,NO,18.49,29.49,3,7.94,6106,113.36719,123.196961,132.898567,139.462262,I,Above,Hip,0,5701,,23.98920667,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19498,NJBF000058194,8201 MONMOUTH AVE,Margate City,NJ,39.33187245,-74.5041963,RES1,3001,,17,NE,1951,1951,3101,1,1,1437.990009,1437.990009,3505,NO,20.5,35.01,3,8.85,6106,113.358461,123.1898,132.890147,139.455201,I,Above,Hip,0,5701,,27.75674833,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 19499,NJBF000059345,36 WEST DRIVE,Margate City,NJ,39.33406238,-74.49608389,RES1,3001,,18,NE,1925,1925,3102,2,1,1521.013449,1521.013449,3505,NO,33.59,47.4,3,7.1,6106,113.506402,123.30888,133.016403,139.589388,I,Above,Gable,0,5701,,40.49459658,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19500,NJBF000056920,213 N OSBORNE AVE,Margate City,NJ,39.32953815,-74.50952985,RES1,3001,,17,NE,1964,1964,3101,1,1,1851.443393,1851.443393,3505,NO,24.81,39.01,3,6.04,6106,113.274636,123.122,132.817896,139.37785,I,Above,Gable,0,5701,,31.91251793,0,0,,,,1,1,,0.03,nav,1,1964,1,, 19501,NJBF000058135,8203 MONMOUTH AVE,Margate City,NJ,39.33176649,-74.5043674,RES1,3001,,17,NE,1957,1957,3102,2,1,1813.208381,1813.208381,3505,NO,26.86,35.29,3,1.96,6106,113.356205,123.187973,132.888165,139.453167,I,Above,Flat,0,5701,,31.07654925,0,0,,,,1,1,,0.03,nav,1,1957,2,, 19502,NJBF000063328,7909 BAYSHORE DR,Margate City,NJ,39.34142699,-74.50881381,RES1,3001,,19,NE,1979,1979,3102,2,1,3735.4839,3735.4839,3505,NO,43.01,53.46,3,8.04,6106,113.122729,123.000648,132.698298,139.223263,I,Above,Hip,0,5701,,48.23328618,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 19503,NJBF000057717,106B N HUNTINGTON AVE,Margate City,NJ,39.33104584,-74.50338349,RES1,3001,,19,NE,2000,2000,3102,3,1,1568.937166,1568.937166,3507,NO,42.42,50.35,1,-0.83,6106,113.388157,123.213525,132.914309,139.483107,I,Above,Hip,0,5701,,46.38462588,0,0,,,,1,1,,0.03,nav,1,2000,3,, 19504,NJBF000057881,112 N HUNTINGTON AVE,Margate City,NJ,39.33130933,-74.50364128,RES1,3001,,17,NE,1955,1955,3102,2,1,1247.834347,1247.834347,3507,NO,32.08,43.6,1,0.08,6106,113.378719,123.205986,132.906632,139.474253,I,Above,Gable,0,5701,,37.83707506,0,0,,,,1,1,,0.03,nav,1,1955,2,, 19505,NJBF000058699,7404 VENTNOR AVE,Margate City,NJ,39.33277613,-74.49299174,RES1,3001,,19,NE,1927,1927,3102,2,1,1001.088509,1001.088509,3505,NO,21.24,28.7,3,-0.28,6106,113.592577,123.3782,133.088284,139.670479,I,Above,Gable,0,5701,,24.97213218,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 19506,NJBF000058530,8101 MONMOUTH AVE,Margate City,NJ,39.33247794,-74.50314791,RES1,3001,,17,NE,1963,1963,3102,2,1,1592.286428,1592.286428,3505,NO,34.56,49.34,3,6.21,6106,113.372936,123.201502,132.902791,139.468211,I,Above,Gable,0,5701,,41.95280985,0,0,,,,1,1,,0.03,nav,1,1963,2,, 19507,NJBF000060130,406 N HUNTINGTON AVE,Margate City,NJ,39.33545376,-74.50750023,RES1,3001,,17,NE,1963,1963,3101,2,1,1743.996926,1743.996926,3505,NO,32.35,43.08,3,-2.77,6110,113.234799,123.090916,132.789386,139.337486,I,Above,Hip,0,5701,,37.71725621,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 19508,NJBF000060069,1 SEASIDE COURT,Margate City,NJ,39.33534533,-74.50754398,RES1,3001,,18,NE,1963,1990,3101,1,1,580.9802478,580.9802478,3505,YES,22.7,37.59,3,4.91,6110,113.235363,123.091366,132.789791,139.338146,I,Above,Hip,0,5701,,30.14587083,0,0,,,,1,1,,0.35,nav,1,1963,1,, 19509,NJBF000060706,23 W GILMAR CIRCLE,Margate City,NJ,39.33642629,-74.50687367,RES1,3001,,17,NE,1964,1964,3101,2,1,1475.130704,1475.130704,3505,NO,36.29,41.59,3,-1.76,6106,113.234983,123.091057,132.79008,139.33627,I,Above,Hip,0,5701,,38.94281995,0,0,,,,1,1,,0.03,nav,1,1964,2,, 19510,NJBF000056570,6 S HAVERFORD AVE,Margate City,NJ,39.32877629,-74.50042401,RES1,3001,,21,NE,1987,1987,3102,3,1,1376.075351,1376.075351,3505,NO,49.73,58.63,3,4.43,6106,113.485781,123.291579,132.994092,139.573849,I,Above,Hip,0,5701,,54.18339407,0,0,,,,1,1,,0.03,nav,1,1987,3,, 19511,NJBF000060242,112 N ARGYLE AVE,Margate City,NJ,39.33564128,-74.49618941,RES1,3001,,17,NE,1953,1953,3102,2,1,1204.016902,1204.016902,3505,NO,35.82,48.56,3,2.71,6106,113.482077,123.289312,132.996994,139.564105,I,Above,Hip,0,5701,,42.19361376,0,0,,,,1,1,,0.03,nav,1,1953,2,, 19512,NJBF000056574,3 S HUNTINGTON AVE,Margate City,NJ,39.32878294,-74.50069801,RES1,3001,,21,NE,2012,2012,3102,3,1,1560.792222,1560.792222,3505,NO,50.49,58.34,3,0.13,6106,113.479658,123.286652,132.988943,139.56817,I,Above,Gable,0,5701,,54.41537963,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 19513,NJBF000058689,7 WEST DRIVE,Margate City,NJ,39.33276024,-74.49426488,RES1,3001,,18,NE,1925,1925,3102,2,1,661.4469184,661.4469184,3505,NO,40.21,50.12,3,8.4,6106,113.564752,123.355782,133.064687,139.644947,I,Above,Gable,0,5701,,45.16582681,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 19514,NJBF000062254,511 N DOUGLAS AVE,Margate City,NJ,39.33908861,-74.50432795,RES1,3001,,18,NE,1968,1968,3102,2,1,2078.877304,2078.877304,3505,NO,29.75,36.64,3,8.66,6106,113.254335,123.106295,132.807394,139.348834,I,Above,Flat,0,5701,,33.19583515,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 19515,NJBF000056522,113 S ESSEX AVE,Margate City,NJ,39.32866427,-74.49551781,RES1,3001,,17,NE,1950,1950,3102,2,1,1641.867385,1641.867385,3505,NO,23.24,34.43,3,1.75,6106,113.595208,123.379709,133.086366,139.675291,I,Above,Flat,0,5701,,28.8350204,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19516,NJBF000057245,7604 ATLANTIC AVE,Margate City,NJ,39.33021776,-74.49431335,RES1,3001,,18,NE,1925,1925,3102,2,1,1709.615403,1709.615403,3505,NO,27.93,33.82,3,-2.08,6106,113.599571,123.38353,133.091745,139.679293,I,Above,Gable,0,5701,,30.87370749,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 19517,NJBF000059228,14 CIRCLE DRIVE,Margate City,NJ,39.33381047,-74.49502496,RES1,3001,,17,NE,1925,1925,3102,2,1,1729.674905,1729.674905,3505,NO,30.22,38.15,3,2.24,6106,113.533285,123.330504,133.038933,139.614448,I,Above,Gable,0,5701,,34.18755408,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19518,NJBF000056651,16 S FRONTENAC AVE,Margate City,NJ,39.32897081,-74.49844333,RES1,3001,8,17,NE,1925,1925,3102,3,1,1627.852006,1627.852006,3505,NO,40.11,54.3,3,-0.17,6106,113.526526,123.324433,133.028654,139.611681,I,Above,Hip,0,5701,,47.2029136,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 19519,NJBF000056668,103 S EXETER AVE,Margate City,NJ,39.32901364,-74.49650201,RES1,3001,,21,NE,1925,1925,3102,3,1,1572.530188,1572.530188,3505,NO,46.62,56.03,3,-2.2,6106,113.568579,123.358321,133.064225,139.650679,I,Above,Hip,0,5701,,51.32805243,0,0,,,,1,1,,0.03,nav,1,1925,3,, 19520,NJBF000059023,18 WEST DRIVE,Margate City,NJ,39.33338583,-74.49526354,RES1,3001,,18,NE,1925,1925,3102,2,1,1159.093985,1159.093985,3505,NO,36.05,47.3,3,2.33,6106,113.533951,123.331021,133.039151,139.615742,I,Above,Hip,0,5701,,41.67513172,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19521,NJBF000060137,103 N ARGYLE AVE,Margate City,NJ,39.33546959,-74.4955289,RES1,3001,,17,NE,1950,1950,3102,2,1,1786.241702,1786.241702,3505,NO,29.1,38.56,3,-0.78,6106,113.499026,123.302947,133.011198,139.579911,I,Above,Gable,0,5701,,33.83066626,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19522,NJBF000056457,112 S ESSEX AVE,Margate City,NJ,39.32850324,-74.4958197,RES1,3001,,21,NE,1994,1994,3102,3,1,1516.961827,1516.961827,3505,NO,39.65,52.57,3,6.32,6106,113.590874,123.376178,133.082516,139.671227,I,Above,Flat,0,5701,,46.10847464,0,0,,,,1,1,,0.03,nav,1,1994,3,, 19523,NJBF000053956,9403 VENTNOR AVE,Margate City,NJ,39.32190647,-74.51524942,COM3,3003,,NaN,ME,1968,1968,3401,2,1,2145.38379,2145.38379,3507,YES,24.51,39.16,1,1.49,6106,113.262327,123.108718,132.798015,139.359899,I,Above,Flat,0,NaN,,31.83303632,0,0,,,,1,1,,0.03,nav,1,1968,2,, 19524,NJBF000062120,503 N DELAVAN AVE,Margate City,NJ,39.33882291,-74.50326454,RES1,3001,,18,NE,1966,1966,3102,2,1,1651.275521,1651.275521,3505,NO,33.5,47.53,3,-0.17,6106,113.281549,123.128122,132.830059,139.374254,I,Above,Gable,0,5701,,40.51194235,0,0,,,,1,1,,0.03,nav,1,1966,2,, 19525,NJBF000062094,500 N CLERMONT AVE,Margate City,NJ,39.33878726,-74.50295752,RES1,3001,,17,NE,1964,1964,3102,1,1,2390.775012,2390.775012,3505,NO,15.18,24.24,3,1.55,6106,113.288845,123.133969,132.836152,139.380983,I,Above,Gable,0,5701,,19.70897255,0,0,,,,1,1,,0.03,nav,1,1964,1,, 19526,NJBF000060656,210 N BRUNSWICK DR,Margate City,NJ,39.336363,-74.49897159,RES1,3001,,18,NE,1950,1950,3103,2,1,1510.458086,1510.458086,3505,NO,38.21,49.91,3,8.41,6106,113.410567,123.231825,132.937155,139.497367,I,Above,Hip,0,5701,,44.06188975,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19527,NJBF000060585,208 N BRUNSWICK DR,Margate City,NJ,39.33623969,-74.4988338,RES1,3001,,17,NE,1950,1950,3103,2,1,835.6524513,835.6524513,3505,NO,44.76,59.23,3,7.88,6106,113.415325,123.235652,132.941087,139.501967,I,Above,Hip,0,5701,,51.99480437,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19528,NJBF000060535,208 N BRUNSWICK DR,Margate City,NJ,39.33614856,-74.49887434,RES1,3001,,17,NE,1950,1950,3102,2,1,511.6374976,511.6374976,3505,NO,33.05,42.69,3,1.92,6106,113.415706,123.235962,132.941352,139.502503,I,Above,Gable,0,5701,,37.8668458,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19529,NJBF000062816,608 N CLERMONT AVE,Margate City,NJ,39.34028984,-74.5043558,RES1,3001,,18,NE,1962,1962,3102,2,1,1654.327029,1654.327029,3505,NO,33.92,41.61,3,-1.03,6106,113.237211,123.092372,132.793449,139.330296,I,Above,Flat,0,5701,,37.76317145,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 19530,NJBF000060038,219 N DELAVAN AVE,Margate City,NJ,39.33529863,-74.49979154,RES1,3001,,17,NE,1952,1952,3103,2,1,2605.476834,2605.476834,3505,NO,28.89,37.8,3,1.63,6106,113.407266,123.229211,132.933712,139.49639,I,Above,Hip,0,5701,,33.34498634,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 19531,NJBF000054410,,Margate City,NJ,39.32332655,-74.51927584,RES3B,3001,,NaN,E,1969,0,3303,3,1,3898.391822,3898.391822,3507,NO,56.24,69.6,1,2.02,6106,113.153249,123.021579,132.709284,139.260153,I,Above,Hip,0,5701,,62.91835026,0,0,,,,1,1,,0.03,nav,1,1969,3,, 19532,NJBF000060936,407 N DOUGLAS AVE,Margate City,NJ,39.33678341,-74.50206433,RES1,3001,,18,NE,1969,1969,3102,2,1,1610.10124,1610.10124,3505,NO,32.69,41.47,3,1.91,6106,113.336373,123.17227,132.875058,139.428711,I,Above,Gable,0,5701,,37.07916299,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19533,NJBF000061961,432 N CLERMONT AVE,Margate City,NJ,39.33855325,-74.50266389,RES1,3001,,17,NE,1960,1960,3102,2,1,1741.558161,1741.558161,3505,NO,33.94,40.51,3,-1.84,6106,113.298582,123.141802,132.844215,139.390402,I,Above,Flat,0,5701,,37.22243363,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 19534,NJBF000054394,9714 AMHERST AVE,Margate City,NJ,39.32327893,-74.52111136,RES3B,3001,,39,ME,2000,2000,3301,3,1,2553.781873,2553.781873,3507,NO,43.77,58.16,1,-0.82,6106,113.114046,122.989922,132.676653,139.22344,I,Above,Hip,0,5701,,50.96773143,0,0,,,,1,1,,0.03,nav,1,2000,3,, 19535,NJBF000054030,16-18 S BENSON AVE,Margate City,NJ,39.32215657,-74.51214204,RES1,3001,,47,NE,1950,1950,3102,2,2,1382.852043,1382.852043,3505,NO,33.09,44.28,3,5.81,6106,113.32625,123.160446,132.851788,139.419673,I,Above,Gable,0,5701,,38.68712978,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19536,NJBF000056820,,Margate City,NJ,39.32932993,-74.49727421,COM1,3001,,NaN,ME,1969,0,3401,1,1,6027.754292,6027.754292,3507,NO,16.08,27.49,1,0.98,6106,113.547091,123.341075,133.046406,139.630787,I,Above,Flat,0,NaN,,21.78858898,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19537,NJBF000057067,30 N IROQUOIS AVE,Margate City,NJ,39.32985474,-74.50388979,RES1,3001,,21,NE,2015,2015,3102,3,1,1570.293862,1570.293862,3505,NO,52.32,65.7,3,3.4,6106,113.394067,123.218044,132.918125,139.488826,I,Above,Gable,0,5701,,59.01183678,0,0,,,,1,1,,0.03,nav,1,2015,3,, 19538,NJBF000056600,8207 VENTNOR AVE,Margate City,NJ,39.32883965,-74.50205853,RES1,3001,,17,NE,1945,1945,3101,1,1,1834.155723,1834.155723,3505,NO,19.5,26.1,3,8.93,6106,113.448925,123.261931,132.963146,139.539663,I,Above,Hip,0,5701,,22.80228654,0,0,,,,1,1,,0.03,nav,1,1945,1,, 19539,NJBF000054202,2 S BENSON AVE,Margate City,NJ,39.32270998,-74.51262845,RES1,3001,,18,NE,1925,1925,3102,2,1,1155.354747,1155.354747,3505,NO,33.51,47.15,3,2.84,6106,113.30738,123.145531,132.83683,139.402941,I,Above,Flat,0,5701,,40.32897867,0,0,,,,1,1,,0.03,nav,1,1925,2,, 19540,NJBF000056993,26 N IROQUOIS AVE,Margate City,NJ,39.32970111,-74.50372621,RES1,3001,,17,NE,1925,1925,3102,2,1,1013.436493,1013.436493,3505,NO,39.5,50.84,3,5.94,6106,113.399888,123.22269,132.922854,139.494233,I,Above,Hip,0,5701,,45.16747713,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19541,NJBF000054132,5 & 7 S DECATUR AVE,Margate City,NJ,39.32248796,-74.51263703,RES1,3001,,47,NE,1965,1965,3102,2,2,1195.703154,1195.703154,3505,NO,44.09,56.66,3,8.98,6106,113.310504,123.147928,132.839115,139.405532,I,Above,Gable,0,5701,,50.37311637,0,0,,,,1,1,,0.03,nav,1,1965,2,, 19542,NJBF000054908,112 N DECATUR AVE,Margate City,NJ,39.32462127,-74.51519894,RES1,3001,,20,NE,2006,2006,3103,4,1,1916.074543,1916.074543,3507,NO,55.08,64.41,1,-0.05,6106,113.222739,123.078325,132.768896,139.326509,I,Above,Gable,0,5701,,59.74464494,0,0,,,,1,1,,0.03,nav,1,2006,4,, 19543,NJBF000054183,1 S DECATUR AVE,Margate City,NJ,39.32264857,-74.51276913,RES1,3001,,18,NE,1925,1925,3102,2,1,657.217724,657.217724,3505,NO,29.08,41.86,3,4.14,6106,113.305217,123.143753,132.834933,139.400847,I,Above,Flat,0,5701,,35.4680852,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19544,NJBF000059512,8206 FULTON AVE,Margate City,NJ,39.33437543,-74.50717039,RES1,3001,,19,NE,1957,1957,3101,1,1,1221.920395,1221.920395,3505,NO,15.18,28.44,3,0.83,6106,113.257321,123.108918,132.807491,139.359555,I,Above,Gable,0,5701,,21.80841272,0,0,,,,1,1,,0.03,nav,1,1957,1,, 19545,NJBF000054212,,Margate City,NJ,39.32274743,-74.51603582,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2276.761993,2276.761993,3505,NO,13.02,26.76,3,2.34,6106,113.232538,123.085186,132.774428,139.333363,I,Above,Flat,0,NaN,,19.89258995,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19546,NJBF000058711,12 N BRUNSWICK AVE,Margate City,NJ,39.33278667,-74.495657,RES1,3001,,19,NE,1935,1935,3102,2,1,1095.542428,1095.542428,3505,NO,45.4,55.21,3,8.03,6106,113.533696,123.330777,133.038428,139.616343,I,Above,Flat,0,5701,,50.30575778,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 19547,NJBF000063672,6 ARGYLE COURT,Margate City,NJ,39.34235571,-74.50247682,RES1,3001,,18,NE,1985,1985,3102,2,1,2249.972802,2249.972802,3505,NO,43.88,50.62,3,7,6106,113.250778,123.102682,132.805194,139.3366,I,Above,Gable,0,5701,,47.25300908,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 19548,NJBF000055532,204 N WILSON AVE,Margate City,NJ,39.3263563,-74.51437359,RES1,3001,,47,NE,1950,1950,3102,2,2,937.8689067,937.8689067,3505,NO,30.3,35.85,3,6.97,6106,113.215005,123.072932,132.76468,139.320893,I,Above,Gable,0,5701,,33.07420543,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19549,NJBF000054454,9101 VENTNOR AVE,Margate City,NJ,39.32344407,-74.51262994,RES1,3001,,20,NE,2006,2006,3102,3,1,1684.127348,1684.127348,3505,NO,39.44,53.69,3,1.46,6106,113.296376,123.137052,132.828689,139.393689,I,Above,Hip,0,5701,,46.56488585,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 19550,NJBF000058601,8 S FREDERICKSBURG AVE,Margate City,NJ,39.33259763,-74.49255336,RES1,3001,,47,NE,1930,1930,3102,1,2,1653.41631,1653.41631,3505,NO,23.59,34.14,3,5.52,6106,113.604744,123.387993,133.098447,139.681913,I,Above,Gable,0,5701,,28.86254248,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 19551,NJBF000055717,212 N WILSON AVE,Margate City,NJ,39.3268071,-74.51480429,RES1,3001,,47,NE,1950,1950,3102,2,2,869.7126742,869.7126742,3505,NO,40.87,48,3,4.57,6106,113.198926,123.060194,132.751845,139.306231,I,Above,Hip,0,5701,,44.43589736,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19552,NJBF000061960,7 BAYCREST DRIVE,Margate City,NJ,39.33854812,-74.50787111,RES1,3001,,18,NE,1985,1985,3102,2,1,2106.098309,2106.098309,3505,NO,31.76,46.16,3,5.39,6106,113.183326,123.049574,132.747976,139.285085,I,Above,Gable,0,5701,,38.95933665,0,0,,,,1,1,,0.03,nav,1,1985,2,, 19553,NJBF000057062,8705 AMHERST AVE,Margate City,NJ,39.32984467,-74.51052102,RES1,3001,,20,NE,2016,2016,3102,3,1,1632.519353,1632.519353,3505,NO,48.55,63.42,3,-1.66,6106,113.248404,123.101017,132.796326,139.353476,I,Above,Flat,0,5701,,55.98610353,0,0,,,,1,1,,0.03,nav,1,2016,3,, 19554,NJBF000060781,5 E GILMAR CIRCLE,Margate City,NJ,39.336539,-74.5060485,RES1,3001,,17,NE,1966,1966,3101,1,1,1505.555674,1505.555674,3505,NO,19.32,24.82,3,4.46,6106,113.251646,123.104395,132.804042,139.351417,I,Above,Gable,0,5701,,22.07244436,0,0,,,,1,1,,0.03,nav,1,1966,1,, 19555,NJBF000060853,408 N GLADSTONE AVE,Margate City,NJ,39.33664936,-74.50581572,RES1,3001,,18,NE,1989,1989,3101,1,1,1689.381793,1689.381793,3505,NO,20.73,29.8,3,2.82,6106,113.255261,123.107285,132.807117,139.354559,I,Above,Gable,0,5701,,25.26135602,0,0,,,,1,1,,0.03,nav,1,1989,1,, 19556,NJBF000061530,424 N DOUGLAS AVE,Margate City,NJ,39.33779833,-74.50359397,RES1,3001,,18,NE,1968,1968,3102,2,1,1814.245466,1814.245466,3505,NO,24.68,34.58,3,1.18,6110,113.288433,123.133765,132.835397,139.382812,I,Above,Gable,0,5701,,29.63053161,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 19557,NJBF000057405,300 N MANSFIELD AVE,Margate City,NJ,39.33051736,-74.50920896,RES1,3001,,20,NE,2016,2016,3102,3,1,2617.030083,2617.030083,3505,NO,46.02,52.45,3,5.7,6106,113.26753,123.116541,132.812915,139.371243,I,Above,Gable,0,5701,,49.23307988,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 19558,NJBF000060555,407 N EXETER AVE,Margate City,NJ,39.33617665,-74.50315743,RES1,3001,,19,NE,1989,1989,3102,2,1,1761.806359,1761.806359,3505,NO,46.63,56.92,3,8.46,6106,113.32065,123.159695,132.861546,139.415413,I,Above,Flat,0,5701,,51.77827097,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 19559,NJBF000060665,406 N ESSEX AVE,Margate City,NJ,39.33636774,-74.50308665,RES1,3001,,17,NE,1952,1952,3102,2,1,1689.026072,1689.026072,3505,NO,38.07,48.82,3,8.51,6106,113.319532,123.158791,132.860717,139.414053,I,Above,Hip,0,5701,,43.44356231,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 19560,NJBF000058855,11 N BRUNSWICK AVE,Margate City,NJ,39.33306937,-74.49537534,RES1,3001,,18,NE,1927,1927,3102,2,1,981.6641647,981.6641647,3505,NO,35.72,49.12,3,7.31,6106,113.53595,123.332612,133.040576,139.618041,I,Above,Gable,0,5701,,42.41890633,0,0,,,,1,1,,0.03,nav,1,1927,2,, 19561,NJBF000058549,218 N HUNTINGTON AVE,Margate City,NJ,39.33250468,-74.50476956,RES1,3001,,17,NE,1952,1952,3102,2,1,1135.219598,1135.219598,3505,NO,35.49,47.32,3,4.45,6106,113.336797,123.172491,132.872532,139.434736,I,Above,Hip,0,5701,,41.40404186,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19562,NJBF000056571,321 N UNION AVE,Margate City,NJ,39.32878037,-74.51439262,RES1,3001,,20,NE,2005,2005,3102,2,1,1410.228703,1410.228703,3505,NO,31.73,44.48,3,-1.02,6106,113.178899,123.044872,132.73741,139.288559,I,Above,Gable,0,5701,,38.10224523,0,0,,,,1,1,,0.03,nav,1,2005,2,, 19563,NJBF000055808,206 N UNION AVE,Margate City,NJ,39.32702767,-74.51325932,RES1,3001,,17,NE,1925,1925,3101,1,1,1037.633484,1037.633484,3505,NO,20.82,34.8,3,6.1,6106,113.229498,123.084874,132.777549,139.334871,I,Above,Gable,0,5701,,27.80943738,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 19564,NJBF000056209,206 N RUMSON AVE,Margate City,NJ,39.32797342,-74.51139636,RES1,3001,,21,NE,2017,2017,3102,3,1,997.1819761,997.1819761,3505,NO,44.98,51.46,3,0.71,6106,113.256462,123.106911,132.801091,139.360499,I,Above,Gable,0,5701,,48.221903,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19565,NJBF000055830,224 N VENDOME AVE,Margate City,NJ,39.32708011,-74.51439515,RES1,3001,,17,NE,1920,1920,3102,2,1,516.3959498,516.3959498,3505,NO,34.94,40.22,3,0.29,6106,113.20385,123.06427,132.756263,139.311002,I,Above,Gable,0,5701,,37.57888896,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 19566,NJBF000060493,7605 AMHERST AVE,Margate City,NJ,39.33606722,-74.49955105,RES1,3001,,17,NE,1956,1956,3103,2,1,1813.883145,1813.883145,3505,NO,41.86,53.12,3,7.07,6106,113.401885,123.224869,132.929672,139.49004,I,Above,Hip,0,5701,,47.48994289,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 19567,NJBF000060768,310 N CLARENDON AVE,Margate City,NJ,39.33651631,-74.49995373,RES1,3001,,17,NE,1965,1965,3103,1,1,1629.993265,1629.993265,3505,NO,16.53,23.43,3,3.18,6106,113.386737,123.212686,132.917197,139.475293,I,Above,Gable,0,5701,,19.98393166,0,0,,,,1,1,,0.03,nav,1,1965,1,, 19568,NJBF000055858,8905 MONMOUTH AVE,Margate City,NJ,39.32713945,-74.51249953,RES1,3001,,17,NE,1950,1950,3102,2,1,1974.292849,1974.292849,3505,NO,30.94,37.08,3,-0.61,6106,113.244493,123.096977,132.790169,139.348909,I,Above,Flat,0,5701,,34.01112785,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19569,NJBF000056967,216 N OSBORNE AVE,Margate City,NJ,39.32963398,-74.51019189,RES1,3001,,17,NE,1977,1977,3101,1,1,2326.96815,2326.96815,3505,NO,19.16,31.34,3,2.5,6106,113.258695,123.109224,132.804697,139.363033,I,Above,Gable,0,5701,,25.24945054,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 19570,NJBF000056204,8907 AMHERST AVE,Margate City,NJ,39.32796168,-74.51364243,RES1,3001,,17,NE,1953,1953,3102,2,1,1240.158125,1240.158125,3505,NO,31.49,37.08,3,2.49,6106,113.207368,123.067448,132.760195,139.314768,I,Above,Hip,0,5701,,34.28410125,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 19571,NJBF000058388,210 N HUNTINGTON AVE,Margate City,NJ,39.33222599,-74.50450684,RES1,3001,,17,NE,1957,1957,3102,2,1,1211.96254,1211.96254,3505,NO,23.76,36.45,3,1.35,6106,113.346565,123.180297,132.880481,139.443969,I,Above,Hip,0,5701,,30.10286092,0,0,,,,1,1,,0.03,nav,1,1957,2,, 19572,NJBF000058351,208 N HUNTINGTON AVE,Margate City,NJ,39.33214968,-74.50444554,RES1,3001,,17,NE,1951,1951,3101,1,1,985.7425999,985.7425999,3505,NO,23.17,31.41,3,6.34,6106,113.348992,123.182235,132.88245,139.446264,I,Above,Hip,0,5701,,27.28990594,0,0,,,,1,1,,0.03,nav,1,1951,1,, 19573,NJBF000056538,217 N RUMSON AVE,Margate City,NJ,39.32869393,-74.51157195,RES1,3001,,NaN,NE,1940,0,3102,2,1,810.3466428,810.3466428,3505,NO,43.64,54.72,3,7.29,6106,113.242064,123.095583,132.789872,139.347367,I,Above,Flat,0,5701,,49.18256822,0,0,,,,1,1,,0.03,nav,1,1940,2,, 19574,NJBF000059726,311 N GLADSTONE AVE,Margate City,NJ,39.33473815,-74.50335327,RES1,3001,,17,NE,1960,1960,3101,1,1,1697.257486,1697.257486,3505,NO,19.6,29.65,3,0.56,6106,113.33648,123.172399,132.873919,139.432176,I,Above,Gable,0,5701,,24.62360046,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 19575,NJBF000059017,211 N GLADSTONE AVE,Margate City,NJ,39.33337775,-74.50245789,RES1,3001,,17,NE,1956,1956,3102,2,1,2167.343459,2167.343459,3505,NO,31.04,43.62,3,-1.93,6106,113.375403,123.203568,132.905578,139.469694,I,Above,Flat,0,5701,,37.33279058,0,0,,,,1,1,,0.03,nav,1,1956,2,, 19576,NJBF000058795,210 N GRANVILLE AVE,Margate City,NJ,39.33295223,-74.5035839,RES1,3001,,16,NE,1950,1950,3101,1,1,1066.804508,1066.804508,3505,NO,10.2,20.15,3,-1.52,6106,113.356598,123.188434,132.889476,139.452714,I,Above,Gable,0,5701,,15.17581707,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19577,NJBF000058294,213 N IROQUOIS AVE,Margate City,NJ,39.33204933,-74.50545111,RES1,3001,,17,NE,1950,1950,3102,2,1,1357.266399,1357.266399,3505,NO,43.81,58.25,3,6.43,6106,113.328285,123.165598,132.86503,139.427136,I,Above,Gable,0,5701,,51.02950424,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 19578,NJBF000056115,301 N VENDOME AVE,Margate City,NJ,39.32775999,-74.51438667,RES1,3001,,NaN,NE,1930,1930,3102,2,1,695.5932615,695.5932615,3505,NO,44.11,57.91,3,5.7,6106,113.194007,123.056632,132.748857,139.302217,I,Above,Hip,0,5701,,51.01268312,0,0,,,,1,1,,0.03,nav,1,1930,2,, 19579,NJBF000057025,113 N KENYON AVE,Margate City,NJ,39.32975627,-74.50599348,RES1,3001,,17,NE,1950,1950,3101,1,1,1795.908925,1795.908925,3505,NO,8.68,20.42,3,-2.75,6106,113.349241,123.181992,132.880462,139.447203,I,Above,Gable,0,5701,,14.54891956,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19580,NJBF000057738,102 N HAVERFORD AVE,Margate City,NJ,39.33107747,-74.50261517,RES1,3001,,17,NE,1965,1965,3102,2,1,854.8754741,854.8754741,3507,NO,31.72,46.69,1,1.79,6106,113.404624,123.226764,132.928158,139.498364,I,Above,Gable,0,5701,,39.20540621,0,0,,,,1,1,,0.03,nav,1,1965,2,, 19581,NJBF000056945,111 N KENYON AVE,Margate City,NJ,39.3296021,-74.50583069,RES1,3001,,17,NE,1951,1951,3102,2,1,2288.859959,2288.859959,3505,NO,27.19,39.81,3,2.65,6106,113.355024,123.186603,132.88515,139.45257,I,Above,Gable,0,5701,,33.5006417,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 19582,NJBF000054108,119 N MONROE AVE,Margate City,NJ,39.32239698,-74.51886706,RES1,3001,,20,NE,2003,2003,3101,1,1,1906.532545,1906.532545,3505,NO,21.42,32.96,3,3.97,6106,113.17619,123.039503,132.726987,139.280331,I,Above,Flat,0,5701,,27.19243224,0,0,,,,1,1,,0.03,nav,1,2003,1,, 19583,NJBF000055143,106 N WILSON AVE,Margate City,NJ,39.32526152,-74.51332533,RES1,3001,,47,NE,1948,1948,3102,2,2,869.5683278,869.5683278,3505,NO,26.14,32.67,3,3.29,6106,113.254155,123.103942,132.795917,139.356427,I,Above,Flat,0,5701,,29.40463076,0,0,,,,1,1,,0.03,nav,1,1948,2,, 19584,NJBF000055665,110 N SUMNER AVE,Margate City,NJ,39.32668712,-74.51110484,RES1,3001,,17,NE,1952,1952,3102,2,1,1763.694735,1763.694735,3505,NO,22.96,33.99,3,-1.87,6106,113.281704,123.12673,132.820664,139.383256,I,Above,Gable,0,5701,,28.47970099,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 19585,NJBF000056593,118 N NASSAU AVE,Margate City,NJ,39.32882192,-74.50846154,RES1,3001,,17,NE,1930,1930,3102,2,1,1651.196354,1651.196354,3505,NO,34.02,41.71,3,3.48,6106,113.308491,123.148999,132.845427,139.409204,I,Above,Hip,0,5701,,37.8628604,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19586,NJBF000056371,8601 WINCHESTER AVE,Margate City,NJ,39.32833061,-74.50712127,RES1,3001,,17,NE,1948,1948,3102,2,1,1460.248294,1460.248294,3505,NO,38.65,50.33,3,0.64,6106,113.345073,123.178261,132.875489,139.443065,I,Above,Gable,0,5701,,44.49404687,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19587,NJBF000059503,202 N DELAVAN AVE,Margate City,NJ,39.33436207,-74.49938482,RES1,3001,,17,NE,1950,1950,3103,1,1,1495.411481,1495.411481,3505,NO,18.41,30.79,3,6.38,6106,113.429362,123.246952,132.951657,139.518191,I,Above,Gable,0,5701,,24.59964742,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19588,NJBF000059811,113 N BRUNSWICK AVE,Margate City,NJ,39.33489,-74.4971765,RES1,3001,,17,NE,1948,1948,3102,1,1,984.7766848,984.7766848,3505,NO,13.12,21.78,3,-2.65,6110,113.470739,123.28021,132.986905,139.555265,I,Above,Hip,0,5701,,17.44843394,0,0,,,,1,1,,0.35,nav,1,1948,1,, 19589,NJBF000055815,11 N PEMBROKE AVE,Margate City,NJ,39.32704474,-74.50805341,RES1,3001,,17,NE,1959,1959,3102,2,1,1673.27671,1673.27671,3505,NO,41.03,46.42,3,2.36,6106,113.343356,123.176463,132.8726,139.440836,I,Above,Gable,0,5701,,43.72600951,0,1.2,,,,1,1,,0.03,nav,1,1959,2,, 19590,NJBF000054268,23 N ADAMS AVE,Margate City,NJ,39.32291534,-74.51555251,RES3B,3001,3,20,ME,2004,2004,3301,3,1,1454.283472,1454.283472,3501,NO,30.34,37.92,7,-6.63,6106,113.240538,123.091737,132.781342,139.341042,I,Above,Gable,0,NaN,,34.13085546,0,0,,,,1,1,,0.03,nav,1,2004,3,, 19591,NJBF000055846,8 N NASSAU AVE,Margate City,NJ,39.3271075,-74.506853,RES1,3001,,20,NE,1998,1998,3102,2,1,1626.607814,1626.607814,3505,NO,43.03,54.22,3,8.03,6106,113.36877,123.196932,132.893946,139.464492,I,Above,Hip,0,5701,,48.62251896,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 19592,NJBF000054584,9009 VENTNOR AVE,Margate City,NJ,39.3237865,-74.511947,RES1,3001,,17,NE,1955,1955,3102,2,1,2068.977679,2068.977679,3505,NO,41.34,55.97,3,8.06,6106,113.306194,123.145142,132.837368,139.403241,I,Above,Hip,0,5701,,48.65601138,0,0,,,,1,1,,0.03,nav,1,1955,2,, 19593,NJBF000056081,20 N NASSAU AVE,Margate City,NJ,39.32767858,-74.50737456,RES1,3001,,20,NE,2008,2008,3102,3,1,1748.364689,1748.364689,3505,NO,53.63,61.85,3,0.27,6106,113.34898,123.181201,132.878035,139.44642,I,Above,Hip,0,5701,,57.73844529,0,0,,,,1,1,,0.03,nav,1,2008,3,, 19594,NJBF000054317,25 N ADAMS AVE,Margate City,NJ,39.3230594,-74.51568422,RES3B,3001,,20,ME,2004,2004,3301,3,1,978.3525613,978.3525613,3501,NO,61.22,75.15,7,3.34,6106,113.235522,123.087775,132.77737,139.336561,I,Above,Hip,0,NaN,,68.18850781,0,0,,,,1,1,,0.03,nav,1,2004,3,, 19595,NJBF000056051,17 N OSBORNE AVE,Margate City,NJ,39.32762175,-74.50767271,RES1,3001,,17,NE,1928,1942,3102,2,1,2778.572793,2778.572793,3505,NO,22.95,31.71,3,-2.14,6106,113.343271,123.17659,132.873194,139.441085,I,Above,Gable,0,5701,,27.33182646,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 19596,NJBF000056861,29 N JEROME AVE,Margate City,NJ,39.32941549,-74.50461985,RES1,3001,,17,NE,1943,1943,3102,2,1,1582.205836,1582.205836,3505,NO,31.58,36.82,3,7.73,6106,113.384346,123.210128,132.909528,139.479791,I,Above,Gable,0,5701,,34.20003196,0,1.1,,,,1,1,,0.03,nav,1,1943,2,, 19597,NJBF000054518,2 N HARDING AVE,Margate City,NJ,39.32361029,-74.51253513,RES1,3001,,17,NE,1955,1955,3102,3,1,1560.601066,1560.601066,3505,NO,53.25,64.95,3,7.48,6106,113.295975,123.136816,132.828588,139.393524,I,Above,Hip,0,5701,,59.09678977,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 19598,NJBF000054516,7 N BENSON AVE,Margate City,NJ,39.32360909,-74.51291352,RES1,3001,,17,NE,1962,1962,3102,1,1,1654.71624,1654.71624,3505,NO,17.49,24.08,3,-0.82,6106,113.287716,123.130158,132.82169,139.385843,I,Above,Hip,0,5701,,20.7841985,0,0,,,,1,1,,0.03,nav,1,1962,1,, 19599,NJBF000055843,9 N OSBORNE AVE,Margate City,NJ,39.32710063,-74.50717496,RES1,3001,,22,NE,2016,2016,3102,3,1,2213.842465,2213.842465,3505,NO,55.38,68.63,3,4.88,6106,113.361795,123.191317,132.888098,139.458007,I,Above,Gable,0,5701,,62.00703851,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 19600,NJBF000055610,3 N PEMBROKE AVE,Margate City,NJ,39.32655385,-74.50761518,RES1,3001,,18,NE,1930,1930,3102,2,1,1714.344682,1714.344682,3505,NO,29.06,38.53,3,-2.74,6106,113.360141,123.189792,132.886064,139.4561,I,Above,Hip,0,5701,,33.79724875,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19601,NJBF000060138,119 N BARCLAY AVE,Margate City,NJ,39.33546961,-74.49698798,RES1,3001,,21,NE,2017,2017,3102,2,1,1134.754417,1134.754417,3505,NO,34.64,40.87,3,2.28,6106,113.466809,123.277043,132.98399,139.550547,I,Above,Hip,0,5701,,37.75549089,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 19602,NJBF000053614,22 N COOLIDGE AVE,Margate City,NJ,39.32061188,-74.51907389,RES1,3001,,17,NE,1922,1922,3102,2,1,537.1001453,537.1001453,3507,NO,32.54,44.04,1,-0.52,6106,113.198765,123.056532,132.742988,139.298656,I,Above,Flat,0,5701,,38.28991242,0,0,,,,1,1,,0.03,nav,1,1922,2,, 19603,NJBF000053787,9704 WINCHESTER AVE,Margate City,NJ,39.32127754,-74.51864896,RES1,3001,,17,NE,1953,1953,3102,2,1,1565.231634,1565.231634,3507,NO,27.19,37,1,2.86,6106,113.197875,123.056274,132.743313,139.2989,I,Above,Gable,0,5701,,32.09879822,0,0,,,,1,1,,0.03,nav,1,1953,2,, 19604,NJBF000054114,9006 ATLANTIC AVE,Margate City,NJ,39.32241909,-74.50927657,RES1,3001,,19,NE,1921,1921,3102,2,1,1636.558473,1636.558473,3505,NO,27.22,32.57,3,3.41,6106,113.384836,123.207851,132.901217,139.474377,I,Above,Gable,0,5701,,29.89875237,0,1.1,,,,1,1,,0.03,nav,1,1921,2,, 19605,NJBF000054366,107 S SUMNER AVE,Margate City,NJ,39.3231867,-74.50717397,RES1,3001,,21,NE,1999,1999,3102,2,1,1787.163352,1787.163352,3505,NO,28.75,39.31,3,-0.08,6106,113.419361,123.236079,132.931276,139.50744,I,Above,Hip,0,5701,,34.03080532,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 19606,NJBF000054080,101 S VENDOME AVE,Margate City,NJ,39.32231863,-74.50915278,RES1,3001,,20,NE,1990,1990,3103,3,1,1479.596888,1479.596888,3505,NO,46.42,52.36,3,-0.01,6106,113.389031,123.211183,132.904586,139.478113,I,Above,Hip,0,5701,,49.38767812,0,0,,,,1,1,,0.03,nav,1,1990,3,, 19607,NJBF000058451,9 N CLERMONT AVE,Margate City,NJ,39.33234512,-74.49629186,RES1,3001,,18,NE,2012,2012,3102,3,1,1250.794406,1250.794406,3505,NO,31.91,38.28,3,-2.74,6106,113.525923,123.324483,133.031472,139.609695,I,Above,Gable,0,5701,,35.09759378,0,0,,,,1,1,,0.03,nav,1,2012,3,, 19608,NJBF000058251,7 N DELAVAN AVE,Margate City,NJ,39.33197508,-74.49672875,RES1,3001,,18,NE,1981,1981,3102,3,1,1171.584772,1171.584772,3505,NO,40.3,48,3,-2.54,6106,113.521515,123.320898,133.027416,139.605989,I,Above,Gable,0,5701,,44.15039155,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 19609,NJBF000054405,8900 ATLANTIC AVE,Margate City,NJ,39.32329862,-74.50785472,RES1,3001,,17,NE,1948,1948,3102,2,1,1698.097717,1698.097717,3505,NO,36.37,43.16,3,0.02,6106,113.40282,123.222795,132.91756,139.492278,I,Above,Flat,0,5701,,39.76539023,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 19610,NJBF000054185,16 S CEDAR GROVE AVE,Margate City,NJ,39.3226606,-74.51140714,RES1,3001,,22,NE,2014,2014,3102,2,1,1872.332436,1872.332436,3505,NO,36.92,47.96,3,1.61,6106,113.334747,123.167577,132.859637,139.428286,I,Above,Gable,0,5701,,42.43947524,0,0,,,,1,1,,0.03,nav,1,2014,2,, 19611,NJBF000053919,108 S VENDOME AVE,Margate City,NJ,39.32176477,-74.50916995,RES1,3001,,20,NE,1945,1945,3102,2,1,1533.079315,1533.079315,3505,NO,36.95,47.63,3,5.17,6106,113.396919,123.217253,132.910371,139.484562,I,Above,Flat,0,5701,,42.29327167,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 19612,NJBF000057575,20 N GLADSTONE AVE,Margate City,NJ,39.3308097,-74.50057869,RES1,3001,,17,NE,1923,1923,3102,2,1,1057.677297,1057.677297,3505,NO,35.17,46.98,3,6.94,6106,113.453258,123.265822,132.968787,139.543545,I,Above,Hip,0,5701,,41.07459465,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 19613,NJBF000054015,105 S VENDOME AVE,Margate City,NJ,39.32211869,-74.50892898,RES1,3001,,21,NE,2000,2000,3102,2,1,2079.999722,2079.999722,3505,NO,38.31,50.33,3,0.24,6106,113.396899,123.217425,132.910884,139.485094,I,Above,Hip,0,5701,,44.32183471,0,0,,,,1,1,,0.03,nav,1,2000,2,, 19614,NJBF000058584,20 N CLERMONT AVE,Margate City,NJ,39.33256466,-74.49692962,RES1,3001,,21,NE,1929,1929,3102,2,1,1378.373104,1378.373104,3505,NO,27.8,34.13,3,4.94,6106,113.508764,123.310693,133.017169,139.593633,I,Above,Hip,0,5701,,30.96571575,0,0,,,,1,1,,0.03,nav,1,1929,2,, 19615,NJBF000053365,,Margate City,NJ,39.31965785,-74.51691936,RES1,3001,,NaN,NE,1954,0,3102,2,1,1840.204863,1840.204863,3507,NO,36.04,45.3,1,0.04,6106,113.260041,123.105398,132.792523,139.354079,I,Above,Gable,0,5701,,40.66997173,0,0,,,,1,1,,0.03,nav,1,1954,2,, 19616,NJBF000054201,109 S THURLOW AVE,Margate City,NJ,39.32270961,-74.50766293,RES1,3001,,20,NE,2011,2011,3103,3,1,1792.628566,1792.628566,3505,NO,39.53,46.88,3,2.99,6106,113.415749,123.232934,132.927561,139.503419,I,Above,Flat,0,5701,,43.20468813,0,0,,,,1,1,,0.03,nav,1,2011,3,, 19617,NJBF000059278,10 N FREDERICKSBURG AVE,Margate City,NJ,39.33392268,-74.49363565,RES1,3001,,18,NE,1929,1929,3102,2,1,1525.087959,1525.087959,3505,NO,34.61,48.52,3,-2.07,6106,113.562337,123.353898,133.063622,139.640822,I,Above,Hip,0,5701,,41.56862377,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 19618,NJBF000059049,3 EAST DRIVE,Margate City,NJ,39.33344194,-74.49341656,RES1,3001,,18,NE,1930,1930,3102,2,1,1226.874124,1226.874124,3505,NO,45.03,53.27,3,8.5,6106,113.573886,123.363181,133.073013,139.652259,I,Above,Hip,0,5701,,49.14620517,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19619,NJBF000056834,108 S DELAVAN AVE,Margate City,NJ,39.32935738,-74.49506318,RES1,3001,,21,NE,2014,2014,3102,3,1,2046.818914,2046.818914,3505,NO,46.65,58.76,3,5.96,6106,113.595319,123.379945,133.087227,139.675494,I,Above,Hip,0,5701,,52.70679828,0,0,,,,1,1,,0.03,nav,1,2014,3,, 19620,NJBF000056320,8302 VENTNOR AVE,Margate City,NJ,39.32820707,-74.50229608,RES1,3001,,19,NE,1977,1977,3102,2,1,1267.503362,1267.503362,3505,NO,25.44,36.16,3,-0.57,6106,113.452843,123.264922,132.965749,139.543113,I,Above,Hip,0,5701,,30.79801859,0,0,,,,1,1,,0.03,nav,1,1977,2,, 19621,NJBF000056809,26 S FRANKLIN AVE,Margate City,NJ,39.32930128,-74.49775337,RES1,3001,,28,NE,1923,1923,3102,2,2,1569.020219,1569.020219,3505,NO,32.34,47.32,3,-1.56,6106,113.536974,123.332919,133.037829,139.621405,I,Above,Flat,0,5701,,39.82992721,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 19622,NJBF000056715,7905 ATLANTIC AVE,Margate City,NJ,39.32911445,-74.49763162,RES1,3001,,33,NE,1930,1930,3102,2,1,4985.74709,4985.74709,3505,NO,24.39,38.17,3,-0.62,6106,113.542308,123.337176,133.042133,139.626336,I,Above,Flat,0,5701,,31.27649359,0,0,,,,1,1,,0.03,nav,1,1930,2,, 19623,NJBF000055346,4 S NASSAU AVE,Margate City,NJ,39.32584091,-74.50565804,RES1,3001,,18,NE,1950,1950,3102,2,1,1545.036494,1545.036494,3505,NO,28.79,40.11,3,-2.27,6106,113.413468,123.232461,132.92988,139.505032,I,Above,Hip,0,5701,,34.45065427,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19624,NJBF000057523,7603 ATLANTIC AVE,Margate City,NJ,39.33072242,-74.49423453,RES1,3001,,20,NE,1955,1955,3102,2,1,2054.241731,2054.241731,3505,NO,23.54,37.25,3,2.08,6106,113.594145,123.379235,133.087663,139.674044,I,Above,Hip,0,5701,,30.39689328,0,0.1,,,,1,1,,0.03,nav,1,1955,2,, 19625,NJBF000057022,104 S CLERMONT AVE,Margate City,NJ,39.32975287,-74.49465239,RES1,3001,,22,NE,2016,2016,3102,3,1,1153.275241,1153.275241,3505,NO,59.08,70.12,3,4.32,6106,113.59872,123.382762,133.090534,139.678619,I,Above,Flat,0,5701,,64.59797893,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 19626,NJBF000054385,8 S VENDOME AVE,Margate City,NJ,39.32325677,-74.51065747,RES1,3001,,NaN,NE,1948,0,3102,2,1,1788.862396,1788.862396,3505,NO,20.33,30.61,3,-2.88,6106,113.342235,123.173927,132.866758,139.436048,I,Above,Gable,0,5701,,25.47011695,0,0,,,,1,1,,0.03,nav,1,1948,2,, 19627,NJBF000056670,107 S ESSEX AVE,Margate City,NJ,39.32901475,-74.49579405,RES1,3001,,19,NE,1938,1938,3102,2,1,2041.060024,2041.060024,3505,NO,30.62,40.63,3,8.38,6106,113.584127,123.370853,133.077379,139.665093,I,Above,Gable,0,5701,,35.62343524,0,1.2,,,,1,1,,0.03,nav,1,1938,2,, 19628,NJBF000057118,106 S CLARENDON AVE,Margate City,NJ,39.32996469,-74.49410099,RES1,3001,,22,NE,1987,1987,3102,3,1,2268.656546,2268.656546,3505,NO,52.45,67.2,3,-2.41,6106,113.607825,123.390141,133.098475,139.687012,I,Above,Flat,0,5701,,59.8244108,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 19629,NJBF000058558,10 S FREDERICKSBURG AVE,Margate City,NJ,39.33251166,-74.49247686,RES1,3001,,18,NE,1938,1938,3102,2,1,1516.455129,1516.455129,3505,NO,43.48,55.81,3,8.46,6106,113.607625,123.390307,133.100813,139.684684,I,Above,Gable,0,5701,,49.64540273,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 19630,NJBF000062728,2 BAYSHORE CT,Margate City,NJ,39.34009664,-74.50636969,RES1,3001,,18,NE,1967,1967,3102,2,1,2105.425496,2105.425496,3505,NO,44.11,58.15,3,8.18,6106,113.195199,123.058821,132.758341,139.292553,I,Above,Flat,0,5701,,51.1266867,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 19631,NJBF000054325,10 S CEDAR GROVE AVE,Margate City,NJ,39.32307714,-74.51178943,RES1,3001,,20,NE,2010,2010,3103,3,1,1677.63235,1677.63235,3505,NO,56.23,61.25,3,5.68,6106,113.320205,123.156071,132.848078,139.415354,I,Above,Gable,0,5701,,58.74175982,0,0,,,,1,1,,0.03,nav,1,2010,3,, 19632,NJBF000054935,203 N ADAMS AVE,Margate City,NJ,39.3246942,-74.5171757,RES1,3001,,17,NE,1930,1930,3102,2,1,1738.395919,1738.395919,3507,NO,27.5,40.66,1,1.65,6106,113.178492,123.04272,132.732176,139.285319,I,Above,Hip,0,5701,,34.0788779,0,0,,,,1,1,,0.03,nav,1,1930,2,, 19633,NJBF000061978,1 EXETER CT,Margate City,NJ,39.3385805,-74.505981,RES1,3001,,18,NE,1971,1971,3102,2,1,1076.296255,1076.296255,3505,NO,38.35,51.79,3,4.65,6106,113.224747,123.082695,132.782505,139.322944,I,Above,Gable,0,5701,,45.07173234,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 19634,NJBF000062376,602 N DOUGLAS AVE,Margate City,NJ,39.33932539,-74.50508783,RES1,3001,,18,NE,1966,1966,3102,2,1,1495.824441,1495.824441,3505,NO,37.68,49.67,3,0.24,6106,113.234242,123.090181,132.790689,139.329967,I,Above,Gable,0,5701,,43.67692552,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 19635,NJBF000060166,300 N DELAVAN AVE,Margate City,NJ,39.33551057,-74.50054127,RES1,3001,,19,NE,2007,2007,3102,2,1,1864.115437,1864.115437,3505,NO,43,54.11,3,4.87,6106,113.38776,123.213548,132.917451,139.478136,I,Above,Flat,0,5701,,48.55769956,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 19636,NJBF000062802,612 N DELAVAN AVE,Margate City,NJ,39.34026037,-74.50513491,RES1,3001,,18,NE,1965,1965,3102,2,1,1544.064735,1544.064735,3505,NO,28.83,43.71,3,0.05,6106,113.220348,123.078893,132.779359,139.315046,I,Above,Gable,0,5701,,36.26989232,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19637,NJBF000063375,3 BRUNSWICK COURT,Margate City,NJ,39.34153962,-74.50414238,RES1,3001,,19,NE,1980,1980,3102,2,1,2000.629066,2000.629066,3505,NO,38.95,44.48,3,0.88,6106,113.224892,123.082219,132.783425,139.315715,I,Above,Gable,0,5701,,41.71378529,0,0,,,,1,1,,0.03,nav,1,1980,2,, 19638,NJBF000061817,8204 LAGOON DRIVE,Margate City,NJ,39.33830714,-74.51103595,RES1,3001,,18,NE,1976,1976,3102,2,1,1929.248456,1929.248456,3505,NO,33.16,41.53,3,6.24,6106,113.116575,122.99626,132.692428,139.224253,I,Above,Gable,0,5701,,37.34172488,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 19639,NJBF000061925,2 HARBOUR LANE,Margate City,NJ,39.33849255,-74.50949979,RES1,3001,,18,NE,1979,1979,3102,2,1,1843.435186,1843.435186,3505,NO,29.2,41.14,3,7.69,6106,113.148006,123.021351,132.718584,139.252794,I,Above,Hip,0,5701,,35.1691689,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 19640,NJBF000060633,403 N GLADSTONE AVE,Margate City,NJ,39.33630122,-74.50487773,RES1,3001,,17,NE,1980,1980,3101,2,1,2204.061896,2204.061896,3505,NO,33.72,42.36,3,-2.86,6106,113.280868,123.127809,132.828326,139.378668,I,Above,Gable,0,5701,,38.04055177,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 19641,NJBF000062456,510 N CLERMONT AVE,Margate City,NJ,39.33950206,-74.50360335,RES1,3001,,18,NE,1988,1988,3102,2,1,1688.908636,1688.908636,3505,NO,39.49,51.91,3,8.05,6106,113.264715,123.114533,132.816212,139.357291,I,Above,Gable,0,5701,,45.70058193,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 19642,NJBF000059677,59 SEASIDE COURT,Margate City,NJ,39.33466522,-74.50865829,RES1,3001,,19,NE,1997,1997,3101,2,1,1363.084557,1363.084557,3505,NO,38.4,44.01,3,5.04,6106,113.220363,123.079326,132.776871,139.325083,I,Above,Hip,0,5701,,41.20696073,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 19643,NJBF000059737,57 SEASIDE COURT,Margate City,NJ,39.33476936,-74.50877313,RES1,3001,,19,NE,2001,2001,3101,2,1,1898.330724,1898.330724,3505,NO,31.95,37.57,3,0.1,6106,113.216351,123.076118,132.773596,139.321263,I,Above,Hip,0,5701,,34.76119581,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 19644,NJBF000056661,401 N UNION AVE,Margate City,NJ,39.32899607,-74.51456188,RES1,3001,,17,NE,1961,1961,3102,2,1,2319.102372,2319.102372,3505,NO,20.95,31.87,3,-2.16,6106,113.172027,123.039428,132.731926,139.28222,I,Above,Gable,0,5701,,26.41004504,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 19645,NJBF000057299,302 N NASSAU AVE,Margate City,NJ,39.33032917,-74.50990504,RES1,3001,,19,NE,1990,1990,3102,3,1,1340.460005,1340.460005,3505,NO,38.11,44.36,3,0.94,6106,113.254938,123.106388,132.802238,139.359553,I,Above,Flat,0,5701,,41.23121851,0,0,,,,1,1,,0.03,nav,1,1990,3,, 19646,NJBF000056943,417 N UNION AVE,Margate City,NJ,39.32959799,-74.5151672,RES1,3001,,20,NE,2003,2003,3102,3,1,1330.530849,1330.530849,3505,NO,64.86,77.11,3,6.84,6106,113.14994,123.021898,132.7142,139.261772,I,Above,Gable,0,5701,,70.9870882,0,0,,,,1,1,,0.03,nav,1,2003,3,, 19647,NJBF000058703,7501 VENTNOR AVE,Margate City,NJ,39.332779,-74.493926,RES1,3001,,19,NE,1925,1925,3102,2,1,1228.113271,1228.113271,3505,NO,35.15,40.62,3,2.39,6106,113.571955,123.361585,133.070805,139.65154,I,Above,Hip,0,5701,,37.88852316,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19648,NJBF000060344,6 S GILMAR CIRCLE,Margate City,NJ,39.33581086,-74.5059692,RES1,3001,,17,NE,1965,1965,3101,1,1,1587.372337,1587.372337,3505,NO,17.61,25.58,3,-1.4,6106,113.263614,123.113997,132.813636,139.363554,I,Above,Hip,0,5701,,21.59435681,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 19649,NJBF000059734,8203 FULTON AVE,Margate City,NJ,39.33475756,-74.50719031,RES1,3001,,17,NE,1940,1940,3101,2,1,939.9234751,939.9234751,3505,NO,23.06,33.73,3,1.76,6106,113.251464,123.104245,132.802856,139.353721,I,Above,Gable,0,5701,,28.39187778,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 19650,NJBF000055809,211 N VENDOME AVE,Margate City,NJ,39.32702881,-74.51367961,RES1,3001,,17,NE,1925,1925,3101,1,1,1273.338274,1273.338274,3505,NO,20.27,33.68,3,3.44,6106,113.220261,123.077447,132.76986,139.326266,I,Above,Gable,0,5701,,26.97144187,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 19651,NJBF000054604,117 N ADAMS AVE,Margate City,NJ,39.32385425,-74.51642128,RES1,3001,,20,NE,1969,2018,3102,3,1,1071.87666,1071.87666,3507,NO,43,53.48,1,2.13,6106,113.207535,123.065662,132.755188,139.31147,I,Above,Flat,0,5701,,48.24022551,0,0,,,,1,1,,0.03,nav,1,1969,3,, 19652,NJBF000055183,108 N WILSON AVE,Margate City,NJ,39.32531548,-74.51292267,RES1,3001,,18,NE,1948,1948,3102,2,1,896.3063155,896.3063155,3505,NO,40.97,55.55,3,5.6,6106,113.26216,123.110412,132.802659,139.363931,I,Above,Hip,0,5701,,48.26354374,0,0,,,,1,1,,0.03,nav,1,1948,2,, 19653,NJBF000054916,100 N HARDING AVE,Margate City,NJ,39.3246395,-74.5134915,RES1,3001,,47,NE,1948,1948,3102,2,2,879.6305326,879.6305326,3505,NO,40.36,48.9,3,5.47,6106,113.259742,123.108141,132.799758,139.360999,I,Above,Flat,0,5701,,44.62859374,0,0,,,,1,1,,0.03,nav,1,1948,2,, 19654,NJBF000055408,102 N THURLOW AVE,Margate City,NJ,39.32601254,-74.51138713,RES1,3001,,19,NE,1951,1951,3102,2,1,1498.574925,1498.574925,3505,NO,33.93,41.49,3,-1.29,6106,113.285451,123.12947,132.822972,139.38623,I,Above,Gable,0,5701,,37.71028065,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 19655,NJBF000055822,106 N RUMSON AVE,Margate City,NJ,39.327057,-74.5105135,RES1,3001,,17,NE,1950,1950,3102,2,1,1456.935985,1456.935985,3505,NO,36.53,44.01,3,6.13,6106,113.289222,123.13292,132.827376,139.390498,I,Above,Gable,0,5701,,40.2704264,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19656,NJBF000055708,8906 MONMOUTH AVE,Margate City,NJ,39.32679202,-74.51246005,RES1,3001,,17,NE,1956,1956,3102,2,1,1538.691531,1538.691531,3505,NO,24.42,30.57,3,-0.62,6106,113.250475,123.101651,132.794746,139.354256,I,Above,Hip,0,5701,,27.4949825,0,0,,,,1,1,,0.03,nav,1,1956,2,, 19657,NJBF000057269,104 N IROQUOIS AVE,Margate City,NJ,39.33026168,-74.50426086,RES1,3001,,19,NE,1930,1930,3102,2,1,989.017967,989.017967,3507,NO,32.01,37.55,1,-0.17,6106,113.38006,123.206872,132.906778,139.475789,I,Above,Gable,0,5701,,34.78095987,0,0,,,,1,1,,0.03,nav,1,1930,2,, 19658,NJBF000057809,109 N HUNTINGTON AVE,Margate City,NJ,39.33120053,-74.50306454,RES1,3001,,17,NE,1942,1942,3102,2,1,965.1531594,965.1531594,3507,NO,36.53,43.51,1,1.01,6106,113.392945,123.217399,132.918469,139.487487,I,Above,Gable,0,5701,,40.01918931,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 19659,NJBF000057668,103 N HUNTINGTON AVE,Margate City,NJ,39.33096447,-74.50284482,RES1,3001,,17,NE,1940,1940,3102,2,1,1554.15134,1554.15134,3507,NO,24.67,33.04,1,2.45,6106,113.401174,123.223972,132.925157,139.495206,I,Above,Gable,0,5701,,28.85052709,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 19660,NJBF000058922,216 N GRANVILLE AVE,Margate City,NJ,39.33318845,-74.50379283,RES1,3001,,17,NE,1945,1945,3102,2,1,1213.956879,1213.956879,3505,NO,28.69,43.01,3,5.77,6106,113.348644,123.182072,132.882995,139.44515,I,Above,Hip,0,5701,,35.84863052,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 19661,NJBF000058052,,Margate City,NJ,39.33162709,-74.50141919,RES1,3001,,NaN,NE,2008,0,3102,2,1,2592.427344,2592.427344,3505,NO,23.98,37.75,3,0.34,6106,113.423128,123.24172,132.944202,139.515245,I,Above,Hip,0,5701,,30.86609062,0,0,,,,1,1,,0.03,nav,1,2008,2,, 19662,NJBF000057982,,Margate City,NJ,39.3314981,-74.50160778,RES1,3001,,NaN,NE,2008,0,3102,2,1,1115.397606,1115.397606,3505,NO,34.35,43.52,3,3.96,6106,113.4208,123.239831,132.942129,139.51316,I,Above,Hip,0,5701,,38.93647839,0,0,,,,1,1,,0.03,nav,1,2008,2,, 19663,NJBF000057933,113 N HUNTINGTON AVE,Margate City,NJ,39.33139442,-74.50322442,RES1,3001,,17,NE,1935,1935,3102,3,1,1565.058788,1565.058788,3507,NO,34.15,47.61,1,2.48,6106,113.386689,123.212403,132.913394,139.481604,I,Above,Flat,0,5701,,40.87907575,0,1.1,,,,1,1,,0.03,nav,1,1935,3,, 19664,NJBF000058849,100 N DOUGLAS AVE,Margate City,NJ,39.33305306,-74.49885498,RES1,3001,,18,NE,1987,1987,3102,2,1,1093.279469,1093.279469,3505,NO,34.36,44.9,3,7.37,6106,113.459452,123.27107,132.975986,139.547616,I,Above,Flat,0,5701,,39.62581668,0,0,,,,1,1,,0.03,nav,1,1987,2,, 19665,NJBF000058535,103 N FRONTENAC AVE,Margate City,NJ,39.33248426,-74.50047677,RES1,3001,,17,NE,1955,1955,3102,2,1,2046.517084,2046.517084,3505,NO,36.19,43.98,3,-0.37,6106,113.431728,123.248735,132.952176,139.522584,I,Above,Hip,0,5701,,40.08326895,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 19666,NJBF000059964,119 N BRUNSWICK AVE,Margate City,NJ,39.33515999,-74.49742568,RES1,3001,,17,NE,1960,1960,3102,1,1,1412.373294,1412.373294,3505,NO,22.62,36.81,3,6.38,6110,113.461454,123.272745,132.979261,139.546266,I,Above,Flat,0,5701,,29.71493223,0,0,,,,1,1,,0.35,nav,1,1960,1,, 19667,NJBF000055620,15 N RUMSON AVE,Margate City,NJ,39.32659208,-74.50951343,RES1,3001,,17,NE,1950,1950,3102,2,1,1451.631657,1451.631657,3505,NO,36.37,42.68,3,-2.46,6106,113.317983,123.155881,132.850847,139.41694,I,Above,Hip,0,5701,,39.52830173,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19668,NJBF000059879,106 N BELMONT AVE,Margate City,NJ,39.3350015,-74.496265,RES1,3001,,17,NE,1950,1950,3102,1,1,1396.719366,1396.719366,3505,NO,15.24,23.14,3,3.02,6106,113.489301,123.295134,133.002654,139.572024,I,Above,Hip,0,5701,,19.19014309,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19669,NJBF000059654,7507 WINCHESTER AVE,Margate City,NJ,39.33462012,-74.49616088,RES1,3001,,17,NE,1952,1952,3102,2,1,1360.826588,1360.826588,3505,NO,24.99,31.9,3,0.81,6106,113.496908,123.301253,133.008804,139.579707,I,Above,Flat,0,5701,,28.44745424,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 19670,NJBF000060076,101 N ARGYLE AVE,Margate City,NJ,39.33535458,-74.49546889,RES1,3001,,19,NE,2017,2017,3102,2,1,1011.451927,1011.451927,3505,NO,26.84,38.11,3,5.37,6106,113.501948,123.3053,133.013589,139.582823,I,Above,Gable,0,5701,,32.47362375,0,0,,,,1,1,,0.03,nav,1,2017,2,, 19671,NJBF000060268,107 N ARGYLE AVE,Margate City,NJ,39.3356885,-74.4956905,RES1,3001,,17,NE,1950,1950,3102,2,1,1038.329206,1038.329206,3505,NO,38.46,45.47,3,5.79,6106,113.49243,123.297635,133.005773,139.573421,I,Above,Flat,0,5701,,41.96756518,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19672,NJBF000053717,9601 VENTNOR AVE,Margate City,NJ,39.3210065,-74.5167925,RES1,3001,,47,NE,1964,1964,3102,2,4,2329.720279,2329.720279,3507,NO,34.05,39.14,1,2.32,6106,113.242333,123.092005,132.77994,139.339898,I,Above,Hip,0,5701,,36.59514741,0,0,,,,1,1,,0.03,nav,1,1964,2,, 19673,NJBF000054407,23 N WASHINGTON AVE,Margate City,NJ,39.32331291,-74.51450411,RES1,3001,,17,NE,1915,1915,3102,2,1,1059.930468,1059.930468,3505,NO,23.8,31.09,3,0.75,6106,113.257444,123.105595,132.796011,139.357304,I,Above,Flat,0,5701,,27.4446193,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 19674,NJBF000058476,116 N GLADSTONE AVE,Margate City,NJ,39.33237846,-74.50214731,RES1,3001,,17,NE,1949,1949,3102,2,1,1388.171691,1388.171691,3505,NO,30.63,41,3,-2.4,6106,113.396419,123.220353,132.922415,139.490018,I,Above,Hip,0,5701,,35.81840095,0,0,,,,1,1,,0.03,nav,1,1949,2,, 19675,NJBF000054337,9316 WINCHESTER AVE,Margate City,NJ,39.32310352,-74.5155365,RES1,3001,,16,NE,1930,1930,3102,2,1,748.6044443,748.6044443,3507,NO,26.13,38.87,1,1.76,6106,113.238073,123.089858,132.779561,139.338996,I,Above,Hip,0,5701,,32.50361544,0,0,,,,1,1,,0.03,nav,1,1930,2,, 19676,NJBF000057088,7 N HAVERFORD AVE,Margate City,NJ,39.3298964,-74.50098434,RES1,3001,,18,NE,1925,1925,3102,3,1,1214.012515,1214.012515,3505,NO,41.32,54.97,3,0.06,6106,113.457403,123.268988,132.971377,139.547596,I,Above,Gable,0,5701,,48.14543297,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 19677,NJBF000055375,5 N RUMSON AVE,Margate City,NJ,39.32592557,-74.50891617,RES1,3001,,17,NE,1948,1948,3102,2,1,1736.467823,1736.467823,3505,NO,33.67,42.58,3,0.79,6106,113.340842,123.174018,132.869146,139.437669,I,Above,Gable,0,5701,,38.12349191,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19678,NJBF000056694,23 N JEROME AVE,Margate City,NJ,39.32905854,-74.50427535,RES1,3001,,17,NE,1956,1956,3102,2,1,1695.735948,1695.735948,3505,NO,37.88,52.71,3,2.64,6106,113.397063,123.220266,132.919824,139.491556,I,Above,Hip,0,5701,,45.2939759,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 19679,NJBF000056526,22 N KENYON AVE,Margate City,NJ,39.32867713,-74.50547178,RES1,3001,,18,NE,1948,1948,3101,1,1,1634.448182,1634.448182,3505,NO,22.98,33.83,3,4.99,6106,113.376277,123.203452,132.901993,139.472168,I,Above,Hip,0,5701,,28.40374563,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 19680,NJBF000058357,12 S ANDOVER AVE,Margate City,NJ,39.332159,-74.4929295,RES1,3001,,20,NE,2010,2010,3102,3,1,1357.7313,1357.7313,3505,NO,53.79,66.66,3,3.18,6106,113.602604,123.386229,133.096227,139.680553,I,Above,Gable,0,5701,,60.22851602,0,0,,,,1,1,,0.03,nav,1,2010,3,, 19681,NJBF000056482,8301 VENTNOR AVE,Margate City,NJ,39.32857215,-74.5026342,RES1,3001,,17,NE,1950,1950,3102,2,1,1520.821011,1520.821011,3505,NO,26.48,41.48,3,0.61,6106,113.440151,123.254804,132.955481,139.531452,I,Above,Hip,0,5701,,33.98209258,0,0.1,,,,1,1,,0.03,nav,1,1950,2,, 19682,NJBF000057134,23 N HANOVER AVE,Margate City,NJ,39.32999527,-74.5027147,RES1,3001,,17,NE,1950,1950,3102,2,1,1230.334771,1230.334771,3505,NO,38.54,43.56,3,4.74,6106,113.417904,123.237239,132.938273,139.510941,I,Above,Gable,0,5701,,41.05320961,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19683,NJBF000057519,354 N RUMSON AVE,Margate City,NJ,39.33071512,-74.5139888,RES1,3001,,19,NE,1945,1945,3102,2,1,2591.109107,2591.109107,3505,NO,27.41,37.84,3,-0.34,6106,113.159542,123.029938,132.723237,139.270781,I,Above,Flat,0,5701,,32.62699279,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 19684,NJBF000057871,16 N EXETER AVE,Margate City,NJ,39.33129506,-74.49887967,RES1,3001,,17,NE,1964,1964,3102,2,1,1878.536281,1878.536281,3505,NO,29.78,42.89,3,-1.79,6106,113.483767,123.290437,132.994938,139.571579,I,Above,Hip,0,5701,,36.33466537,0,0,,,,1,1,,0.03,nav,1,1964,2,, 19685,NJBF000057663,17 N GLADSTONE AVE,Margate City,NJ,39.33095501,-74.50015055,RES1,3001,,17,NE,1953,1953,3101,1,1,1791.34497,1791.34497,3505,NO,22.05,29.69,3,5.03,6106,113.460615,123.271762,132.975116,139.550305,I,Above,Hip,0,5701,,25.8708454,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 19686,NJBF000058743,7 WEST DRIVE,Margate City,NJ,39.33285159,-74.49440077,RES1,3001,,18,NE,1925,1925,3102,2,1,1536.127561,1536.127561,3505,NO,35.91,42.69,3,6.94,6106,113.560463,123.352335,133.061135,139.640877,I,Above,Gable,0,5701,,39.30082638,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 19687,NJBF000058139,424 N NASSAU AVE,Margate City,NJ,39.33177358,-74.51125446,RES1,3001,,19,NE,1966,1966,3102,3,1,2181.85562,2181.85562,3505,NO,42.69,52.43,3,4.62,6106,113.204402,123.066164,132.761445,139.312293,I,Above,Gable,0,5701,,47.55980439,0,1.1,,,,1,1,,0.03,nav,1,1966,3,, 19688,NJBF000057045,5 N HAVERFORD AVE,Margate City,NJ,39.32980289,-74.50090758,RES1,3001,,19,NE,1925,1925,3102,2,1,1257.279425,1257.279425,3505,NO,26.91,32.02,3,1.34,6106,113.460406,123.271385,132.97381,139.550389,I,Above,Gable,0,5701,,29.4651814,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19689,NJBF000057912,15 N EXETER AVE,Margate City,NJ,39.33137489,-74.49841921,RES1,3001,,18,NE,1952,1952,3102,2,1,1182.468801,1182.468801,3505,NO,30.62,35.81,3,0.26,6106,113.492784,123.297702,133.002615,139.579877,I,Above,Hip,0,5701,,33.21482135,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19690,NJBF000057964,17 N EXETER AVE,Margate City,NJ,39.33146085,-74.49845886,RES1,3001,,17,NE,1964,1964,3102,1,1,1641.853758,1641.853758,3505,NO,10.3,16.94,3,-2.99,6106,113.490683,123.296024,133.000923,139.57788,I,Above,Hip,0,5701,,13.61595421,0,0,,,,1,1,,0.03,nav,1,1964,1,, 19691,NJBF000054476,9700 AMHERST AVE,Margate City,NJ,39.32348858,-74.52061539,RES1,3001,,NaN,NE,1937,1937,3102,2,1,9196.633456,9196.633456,3505,NO,40.25,52,3,2.16,6106,113.121662,122.996201,132.68328,139.230831,I,Above,Gable,0,5701,,46.12587077,0,0,,,,1,1,,0.03,nav,1,1937,2,, 19692,NJBF000059574,29 EAST DRIVE,Margate City,NJ,39.33448447,-74.49462372,RES1,3001,,18,NE,1925,1925,3102,2,1,1688.559419,1688.559419,3505,NO,35.72,46.74,3,5.49,6106,113.532719,123.330064,133.038982,139.612688,I,Above,Hip,0,5701,,41.23346979,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19693,NJBF000059522,27 EAST DRIVE,Margate City,NJ,39.33440376,-74.49451967,RES1,3001,,18,NE,1925,1925,3102,2,1,1068.784258,1068.784258,3505,NO,27.2,36.18,3,-0.07,6106,113.536129,123.332808,133.041806,139.615959,I,Above,Hip,0,5701,,31.69226634,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19694,NJBF000057510,25 N HAVERFORD AVE,Margate City,NJ,39.33069033,-74.50174725,RES1,3001,,20,NE,2006,2006,3102,3,1,1385.004813,1385.004813,3505,NO,44.95,56.05,3,5.53,6106,113.429259,123.246502,132.948489,139.521338,I,Above,Hip,0,5701,,50.50244845,0,0,,,,1,1,,0.03,nav,1,2006,3,, 19695,NJBF000059265,14 W COLMAR CIRCLE,Margate City,NJ,39.33388826,-74.50506265,RES1,3001,,17,NE,1954,1954,3101,1,1,1611.366656,1611.366656,3505,NO,27.69,34.9,3,8.83,6106,113.310717,123.151696,132.851764,139.409411,I,Above,Hip,0,5701,,31.29257251,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 19696,NJBF000053629,3 S MADISON AVE,Margate City,NJ,39.32067064,-74.51602149,RES1,3001,,43,NE,1930,1930,3102,2,2,1108.872867,1108.872867,3507,NO,27.5,33.93,1,-0.72,6106,113.264176,123.109428,132.797632,139.359673,I,Above,Flat,0,5701,,30.71898956,0,0,,,,1,1,,0.03,nav,1,1930,2,, 19697,NJBF000053656,9506 VENTNOR AVE,Margate City,NJ,39.32077396,-74.51594327,RES3C,3001,,21,ME,1963,1963,3301,1,1,1970.722602,1970.722602,3505,NO,20.96,29.29,3,6.53,6106,113.264313,123.109607,132.79791,139.35997,I,Above,Gable,0,NaN,,25.12728809,0,0,,,,1,1,,0.03,nav,1,1963,1,, 19698,NJBF000059030,1 EAST DRIVE,Margate City,NJ,39.3334013,-74.49318,RES1,3001,,19,NE,1930,1930,3102,2,1,1721.179729,1721.179729,3505,NO,34.27,43.35,3,4.32,6106,113.579683,123.367849,133.077893,139.657637,I,Above,Hip,0,5701,,38.80877089,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19699,NJBF000054460,4 S VENDOME AVE,Margate City,NJ,39.32345842,-74.51086892,RES1,3001,,22,NE,2015,2015,3103,3,1,2504.741917,2504.741917,3505,NO,58.25,71.77,3,7.22,6106,113.334616,123.167886,132.860668,139.429236,I,Above,Gable,0,5701,,65.00686918,0,0,,,,1,1,,0.03,nav,1,2015,3,, 19700,NJBF000055756,4 N NASSAU AVE,Margate City,NJ,39.32690284,-74.50663901,RES1,3001,,17,NE,1930,1930,3102,2,1,1622.850696,1622.850696,3505,NO,28.87,36.89,3,5.6,6106,113.376441,123.203035,132.900131,139.471487,I,Above,Gable,0,5701,,32.8796514,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19701,NJBF000054899,3 S SUMNER AVE,Margate City,NJ,39.32458819,-74.50854345,RES1,3001,,22,NE,2015,2015,3103,3,1,1819.226476,1819.226476,3505,NO,32.8,46.32,3,-2.08,6106,113.368715,123.195901,132.89075,139.462243,I,Above,Flat,0,5701,,39.55991845,0,0,,,,1,1,,0.03,nav,1,2015,3,, 19702,NJBF000054535,9 S UNION AVE,Margate City,NJ,39.32366287,-74.50951647,RES1,3001,,19,NE,1930,1930,3102,2,1,1721.161327,1721.161327,3505,NO,39.72,47.47,3,0.91,6106,113.361128,123.189359,132.883139,139.454104,I,Above,Gable,0,5701,,43.59783091,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 19703,NJBF000055528,18 S KENYON AVE,Margate City,NJ,39.32634824,-74.50361842,RES1,3001,,18,NE,1951,1951,3102,2,1,2226.270148,2226.270148,3505,NO,37.97,43.32,3,6.61,6106,113.450786,123.262697,132.961845,139.540083,I,Above,Hip,0,5701,,40.64279998,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 19704,NJBF000055986,14 S JASPER AVE,Margate City,NJ,39.32745386,-74.50226406,RES1,3001,,17,NE,1945,1945,3102,2,1,1468.770769,1468.770769,3505,NO,33,40.48,3,2.62,6106,113.464433,123.274039,132.974639,139.553511,I,Above,Hip,0,5701,,36.74054226,0,0,,,,1,1,,0.03,nav,1,1945,2,, 19705,NJBF000056344,2 S IROQUOIS AVE,Margate City,NJ,39.32826044,-74.50219485,RES1,3001,,17,NE,1950,1950,3102,2,1,1687.774388,1687.774388,3505,NO,31.1,44.46,3,0.64,6106,113.454297,123.266106,132.96703,139.544482,I,Above,Hip,0,5701,,37.78177023,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19706,NJBF000054726,118 S NASSAU AVE,Margate City,NJ,39.32416856,-74.5040679,RES1,3001,,20,NE,2014,2014,3103,3,1,2243.955134,2243.955134,3505,NO,35.04,46.62,3,-2.97,6106,113.472806,123.279611,132.977533,139.558187,I,Above,Hip,0,5701,,40.83050107,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 19707,NJBF000061735,8213 BAYSHORE DR WEST,Margate City,NJ,39.33816952,-74.5125709,RES1,3001,,20,NE,2003,2003,3102,2,1,3111.838586,3111.838586,3505,NO,24.59,30.7,3,-2.61,6106,113.084495,122.970652,132.665795,139.194966,I,Above,Hip,0,5701,,27.64440897,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 19708,NJBF000054778,116 S NASSAU AVE,Margate City,NJ,39.3242802,-74.50418317,RES1,3001,,20,NE,1952,1952,3102,2,1,2414.610511,2414.610511,3505,NO,25.2,33.89,3,-1.39,6106,113.468658,123.276313,132.974197,139.554491,I,Above,Hip,0,5701,,29.54625678,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 19709,NJBF000055393,2 S NASSAU AVE,Margate City,NJ,39.32595148,-74.50577285,RES1,3001,,17,NE,1953,1953,3101,1,1,1608.659499,1608.659499,3505,NO,26.78,39.11,3,8.86,6106,113.409338,123.229176,132.926553,139.501298,I,Above,Gable,0,5701,,32.94496849,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 19710,NJBF000058033,5 S CLARENDON AVE,Margate City,NJ,39.33158193,-74.49493266,RES1,3001,,NaN,NE,1940,0,3102,2,1,1303.861428,1303.861428,3505,NO,23.12,29.04,3,-1.44,6106,113.566621,123.357173,133.065194,139.647991,I,Above,Flat,0,5701,,26.08103852,0,0,,,,1,1,,0.03,nav,1,1940,2,, 19711,NJBF000058274,7506 VENTNOR AVE,Margate City,NJ,39.33201717,-74.49456142,RES1,3001,,19,NE,1926,1926,3102,3,1,1854.982833,1854.982833,3505,NO,40.42,45.75,3,0.04,6106,113.568679,123.358879,133.067343,139.649471,I,Above,Hip,0,5701,,43.08606863,0,1.1,,,,1,1,,0.03,nav,1,1926,3,, 19712,NJBF000058536,18 N CLERMONT AVE,Margate City,NJ,39.33248434,-74.49684397,RES1,3001,,17,NE,1956,1956,3102,1,1,1289.877044,1289.877044,3505,NO,15.47,27.32,3,3.17,6106,113.5118,123.31313,133.019663,139.596522,I,Above,Hip,0,5701,,21.39686466,0,0,,,,1,1,,0.03,nav,1,1956,1,, 19713,NJBF000056398,,Margate City,NJ,39.32838466,-74.49574997,RES1,3001,,NaN,NE,1969,0,3102,2,1,1762.353716,1762.353716,3505,NO,41.49,56.22,3,5.01,6106,113.594101,123.378752,133.085113,139.674176,I,Above,Hip,0,5701,,48.85169361,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19714,NJBF000056596,17 S GLADSTONE AVE,Margate City,NJ,39.32883324,-74.4987123,RES1,3001,,45,NE,1938,1938,3102,2,2,2082.890447,2082.890447,3505,NO,39.34,53.06,3,3.39,6106,113.522591,123.321233,133.025184,139.608006,I,Above,Gable,0,5701,,46.20030581,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 19715,NJBF000056924,9 S FRONTENAC AVE,Margate City,NJ,39.32955027,-74.49836171,RES1,3001,,20,NE,2001,2001,3102,2,1,1630.157679,1630.157679,3505,NO,33.12,47.79,3,-0.21,6106,113.520023,123.319319,133.023785,139.605692,I,Above,Hip,0,5701,,40.4570403,0,0,,,,1,1,,0.03,nav,1,2001,2,, 19716,NJBF000059168,312 N HUNTINGTON AVE,Margate City,NJ,39.33368805,-74.50583601,RES1,3001,,17,NE,1952,1952,3101,1,1,1344.670078,1344.670078,3505,NO,13.69,20.9,3,-1.72,6106,113.296491,123.140272,132.839724,139.396459,I,Above,Gable,0,5701,,17.29208141,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 19717,NJBF000057290,111 S BARCLAY AVE,Margate City,NJ,39.33031021,-74.49242952,RES1,3001,,21,NE,1977,1977,3102,2,1,1902.621002,1902.621002,3505,NO,35.51,49.09,3,8.09,6106,113.639688,123.415894,133.125868,139.71639,I,Above,Hip,0,5701,,42.30040395,0,0,,,,1,1,,0.03,nav,1,1977,2,, 19718,NJBF000057288,107 S BRUNSWICK AVE,Margate City,NJ,39.3303,-74.4931595,RES1,3001,,20,NE,1977,1977,3102,2,1,1472.421326,1472.421326,3505,NO,34.88,44.38,3,4.21,6106,113.623772,123.403056,133.112349,139.701666,I,Above,Flat,0,5701,,39.62891312,0,0,,,,1,1,,0.03,nav,1,1977,2,, 19719,NJBF000058017,7409 ATLANTIC AVE,Margate City,NJ,39.33156391,-74.49257316,RES1,3001,,19,NE,1919,1919,3102,2,1,1392.254078,1392.254078,3505,NO,26.21,32.07,3,-1.62,6110,113.618836,123.399251,133.109435,139.696188,I,Above,Hip,0,5701,,29.1397533,0,1.1,,,,1,1,,0.35,nav,1,1919,2,, 19720,NJBF000058296,11 S ARGYLE AVE,Margate City,NJ,39.332055,-74.49315216,RES1,3001,,19,NE,1920,1920,3102,2,1,1488.819663,1488.819663,3505,NO,42.99,51.24,3,7.37,6106,113.599177,123.383456,133.093223,139.677527,I,Above,Gable,0,5701,,47.11732346,0,0,,,,1,1,,0.03,nav,1,1920,2,, 19721,NJBF000061762,615 N HUNTINGTON AVE,Margate City,NJ,39.33820827,-74.50955114,RES1,3001,,18,NE,1972,1972,3102,2,1,1893.233136,1893.233136,3505,NO,30.53,45.04,3,4.48,6106,113.150844,123.023648,132.720839,139.255922,I,Above,Gable,0,5701,,37.78485003,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 19722,NJBF000054700,,Margate City,NJ,39.32408756,-74.5189815,RES4,3001,,NaN,ME,1980,0,3401,1,1,31865.22572,31865.22572,3505,NO,24.03,36.52,3,4.64,6106,113.148216,123.01798,132.706184,139.256377,I,Above,Flat,0,NaN,,30.27713335,0,0,,,,1,1,,0.03,nav,1,1980,1,, 19723,NJBF000054550,9515 MONMOUTH AVE,Margate City,NJ,39.3237047,-74.51873366,RES1,3001,,17,NE,1980,1980,3102,2,1,3043.047986,3043.047986,3507,NO,24.9,32.24,1,1.12,6106,113.159358,123.026736,132.714903,139.26633,I,Above,Hip,0,5701,,28.57238309,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 19724,NJBF000061330,417 N DOUGLAS AVE,Margate City,NJ,39.3374518,-74.50271732,RES1,3001,,18,NE,1967,1967,3102,2,1,1394.96325,1394.96325,3505,NO,34.11,41.49,3,0.41,6106,113.312638,123.153191,132.855503,139.405656,I,Above,Gable,0,5701,,37.80210301,0,0,,,,1,1,,0.03,nav,1,1967,2,, 19725,NJBF000063794,618 N FREDERICKSBURG AVE,Margate City,NJ,39.34270998,-74.50208304,RES1,3001,,20,NE,1997,1997,3102,3,1,3026.944138,3026.944138,3505,NO,35.35,42.63,3,-1.36,6106,113.254743,123.10574,132.808555,139.339021,I,Above,Hip,0,5701,,38.9934164,0,1.1,,,,1,1,,0.03,nav,1,1997,3,, 19726,NJBF000053764,9720 WINCHESTER AVE,Margate City,NJ,39.32118084,-74.51885237,RES1,3001,,45,NE,1985,1985,3102,2,2,1356.649836,1356.649836,3507,NO,30.21,35.32,1,2.2,6106,113.194938,123.053835,132.740713,139.296007,I,Above,Gable,0,5701,,32.76986961,0,0,,,,1,1,,0.03,nav,1,1985,2,, 19727,NJBF000060974,404 N DELAVAN AVE,Margate City,NJ,39.33684017,-74.50181217,RES1,3001,,17,NE,1965,1952,3102,1,1,1635.044332,1635.044332,3505,NO,14.56,21.36,3,2.91,6106,113.341154,123.176099,132.879098,139.432972,I,Above,Gable,0,5701,,17.96113234,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 19728,NJBF000054101,12 S BENSON AVE,Margate City,NJ,39.32238316,-74.51229222,RES1,3001,,17,NE,1935,1935,3102,2,1,1135.838208,1135.838208,3505,NO,25.07,38.83,3,-1.71,6106,113.319598,123.155206,132.846562,139.413827,I,Above,Gable,0,5701,,31.94948145,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 19729,NJBF000061424,7504 FREMONT AVE,Margate City,NJ,39.33761071,-74.4988867,RES1,3001,,17,NE,1950,1950,3103,1,1,1534.54108,1534.54108,3505,NO,10.62,22.59,3,-1.35,6106,113.395171,123.219362,132.924882,139.480507,I,Above,Hip,0,5701,,16.6078118,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19730,NJBF000056242,111 S FRONTENAC AVE,Margate City,NJ,39.32803154,-74.49715195,RES1,3001,,22,NE,1965,1965,3102,2,1,2108.566411,2108.566411,3505,NO,40.94,47.71,3,6.93,6106,113.568361,123.357917,133.062936,139.650174,I,Above,Gable,0,5701,,44.32785481,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 19731,NJBF000063145,7908 BAYSHORE DR,Margate City,NJ,39.34097621,-74.5087053,RES1,3001,,18,NE,1970,1970,3102,2,1,3051.973834,3051.973834,3505,NO,34.22,41.4,3,5.45,6106,113.131328,123.007618,132.705375,139.232212,I,Above,Hip,0,5701,,37.81219216,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 19732,NJBF000063295,7603 BURK AVE,Margate City,NJ,39.34135394,-74.50386666,RES1,3001,,19,NE,1991,1991,3102,3,1,2320.307799,2320.307799,3505,NO,46.26,55.88,3,-2.8,6106,113.233526,123.089173,132.790607,139.324058,I,Above,Flat,0,5701,,51.07087602,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 19733,NJBF000056558,201 N PEMBROKE AVE,Margate City,NJ,39.32875048,-74.50974192,RES1,3001,,17,NE,1966,1966,3102,2,1,2003.882058,2003.882058,3505,NO,28.98,35.32,3,0.75,6106,113.281426,123.127227,132.822752,139.384013,I,Above,Hip,0,5701,,32.1504444,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 19734,NJBF000055462,9206 AMHERST AVE,Margate City,NJ,39.32616042,-74.51620763,RES1,3001,,NaN,NE,1969,0,3102,2,1,634.0530291,634.0530291,3507,NO,38.09,49.13,1,2.9,6106,113.177793,123.0429,132.733487,139.286035,I,Above,Gable,0,5701,,43.6120355,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19735,NJBF000060039,47 SEASIDE COURT,Margate City,NJ,39.33530032,-74.50927957,RES1,3001,,19,NE,1998,1998,3101,2,1,2021.358629,2021.358629,3505,NO,21.04,33.12,3,-0.27,6106,113.197644,123.061163,132.758347,139.303375,I,Above,Hip,0,5701,,27.07625628,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 19736,NJBF000056956,215 N OSBORNE AVE,Margate City,NJ,39.32961324,-74.50962476,RES1,3001,,17,NE,1948,1948,3102,2,1,1241.154629,1241.154629,3505,NO,24.11,32.62,3,-1.71,6106,113.271461,123.11947,132.815322,139.374904,I,Above,Hip,0,5701,,28.3629261,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19737,NJBF000059923,56 SEASIDE COURT,Margate City,NJ,39.33508208,-74.50844719,RES1,3001,,19,NE,1989,1989,3101,2,1,1971.972127,1971.972127,3505,NO,34.6,47.47,3,0.97,6106,113.219125,123.078354,132.776101,139.323474,I,Above,Hip,0,5701,,41.0343605,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 19738,NJBF000059983,49 SEASIDE COURT,Margate City,NJ,39.33518963,-74.50919185,RES1,3001,,19,NE,1989,1989,3101,2,1,1778.113063,1778.113063,3505,NO,37.66,51.07,3,7.16,6106,113.201142,123.06396,132.761193,139.306735,I,Above,Hip,0,5701,,44.36918485,0,0,,,,1,1,,0.03,nav,1,1989,2,, 19739,NJBF000057488,307 N NASSAU AVE,Margate City,NJ,39.33065706,-74.50967866,RES1,3001,,17,NE,1948,1948,3102,2,1,1462.018109,1462.018109,3505,NO,36.01,49.43,3,8.16,6106,113.25517,123.106652,132.802738,139.359737,I,Above,Flat,0,5701,,42.72308168,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19740,NJBF000059375,7510 WINCHESTER AVE,Margate City,NJ,39.33413114,-74.49645097,RES1,3001,,18,NE,1948,1948,3102,2,1,1424.286886,1424.286886,3505,NO,29.48,40.33,3,-1.8,6106,113.497341,123.301592,133.008801,139.580965,I,Above,Gable,0,5701,,34.90616845,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19741,NJBF000055864,203 N UNION AVE,Margate City,NJ,39.32715325,-74.51286326,RES1,3001,,17,NE,1955,1955,3101,1,1,1366.644661,1366.644661,3505,NO,22.11,36.96,3,3.81,6106,113.236333,123.090421,132.783387,139.341317,I,Above,Gable,0,5701,,29.5329682,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19742,NJBF000057490,8504 AMHERST AVE,Margate City,NJ,39.33065808,-74.50838099,RES1,3001,,18,NE,1960,1960,3102,2,1,1401.280366,1401.280366,3505,NO,23.71,33.79,3,-1.65,6106,113.283713,123.129565,132.82655,139.386261,I,Above,Gable,0,5701,,28.74739704,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 19743,NJBF000058137,114 N HAVERFORD AVE,Margate City,NJ,39.33177101,-74.50331123,RES1,3001,,17,NE,1954,1954,3102,2,1,1663.597243,1663.597243,3507,NO,29.93,40.97,1,0.61,6106,113.379398,123.206602,132.907612,139.474657,I,Above,Hip,0,5701,,35.44821845,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 19744,NJBF000055223,10 N THURLOW AVE,Margate City,NJ,39.32548806,-74.51089138,RES1,3001,,21,NE,1935,1935,3102,3,1,1498.686109,1498.686109,3505,NO,50.47,60.93,3,6.19,6106,113.304054,123.144219,132.837844,139.403077,I,Above,Gable,0,5701,,55.70015766,0,1.1,,,,1,1,,0.03,nav,1,1935,3,, 19745,NJBF000054260,114 S RUMSON AVE,Margate City,NJ,39.32288574,-74.50656479,RES1,3001,,21,NE,2014,2014,3103,3,1,1644.424952,1644.424952,3505,NO,53.04,67.95,3,8.55,6106,113.437126,123.250262,132.945756,139.523448,I,Above,Gable,0,5701,,60.49125131,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 19746,NJBF000058227,6 S BARCLAY AVE,Margate City,NJ,39.33193007,-74.49420275,RES1,3001,,19,NE,1939,1939,3102,2,1,981.0123477,981.0123477,3505,NO,25.49,31.18,3,3.48,6106,113.57779,123.36621,133.074979,139.657963,I,Above,Gable,0,5701,,28.33256196,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 19747,NJBF000059111,22 WEST DRIVE,Margate City,NJ,39.33356513,-74.49541368,RES1,3001,,18,NE,1925,1925,3102,2,1,1191.234744,1191.234744,3505,NO,38.39,44.36,3,4.17,6106,113.528136,123.326349,133.034379,139.610128,I,Above,Hip,0,5701,,41.37621306,0,0,,,,1,1,,0.03,nav,1,1925,2,, 19748,NJBF000058886,32 N CLERMONT AVE,Margate City,NJ,39.33312293,-74.49746543,RES1,3001,,17,NE,1935,1935,3102,1,1,1140.979341,1140.979341,3505,NO,18.45,32.05,3,3.41,6106,113.489115,123.294929,133.001054,139.574872,I,Above,Hip,0,5701,,25.25030428,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 19749,NJBF000063121,7910 BAYSHORE DR,Margate City,NJ,39.3409276,-74.50893591,RES1,3001,,18,NE,1977,1977,3102,2,1,3154.173756,3154.173756,3505,NO,29.58,43.1,3,-1.1,6106,113.12686,123.004063,132.701655,139.228253,I,Above,Gable,0,5701,,36.34073695,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 19750,NJBF000055351,215 N DECATUR AVE,Margate City,NJ,39.32585817,-74.51577902,COM3,3001,,NaN,ME,1969,0,3401,1,1,2128.868263,2128.868263,3507,NO,13.73,19.88,1,0.3,6106,113.191657,123.053914,132.744637,139.298718,I,Above,Flat,0,NaN,,16.8043155,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19751,NJBF000055430,107 N UNION AVE,Margate City,NJ,39.32606863,-74.51177297,RES1,3001,,19,NE,1964,1964,3102,2,1,1756.024371,1756.024371,3505,NO,27.53,40.44,3,2.44,6106,113.276175,123.122028,132.8153,139.377643,I,Above,Gable,0,5701,,33.98551158,0,0,,,,1,1,,0.03,nav,1,1964,2,, 19752,NJBF000057839,31 N GRANVILLE AVE,Margate City,NJ,39.3312523,-74.50143624,RES1,3001,,17,NE,1955,1955,3102,2,1,1605.43991,1605.43991,3505,NO,32.79,45.25,3,5.88,6106,113.428091,123.245655,132.948033,139.520038,I,Above,Flat,0,5701,,39.01697485,0,0,,,,1,1,,0.03,nav,1,1955,2,, 19753,NJBF000057796,29 N GRANVILLE AVE,Margate City,NJ,39.33118172,-74.50139137,RES1,3001,,18,NE,1920,1920,3102,2,1,880.9362051,880.9362051,3505,NO,32.56,37.61,3,4.71,6106,113.430079,123.247242,132.94964,139.521912,I,Above,Hip,0,5701,,35.08378586,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 19754,NJBF000059165,307 N HUNTINGTON AVE,Margate City,NJ,39.33368466,-74.50521916,RES1,3001,,19,NE,2001,2001,3101,3,1,1566.354263,1566.354263,3505,NO,49.84,55.67,3,0.21,6106,113.310148,123.151224,132.851141,139.409088,I,Above,Hip,0,5701,,52.75665701,0,0,,,,1,1,,0.03,nav,1,2001,3,, 19755,NJBF000056474,8901 AMHERST AVE,Margate City,NJ,39.32855153,-74.51278144,RES1,3001,,18,NE,1958,1958,3102,3,1,2188.596204,2188.596204,3505,NO,36.74,50.89,3,5.16,6106,113.217605,123.075886,132.769355,139.324546,I,Above,Gable,0,5701,,43.81230952,0,0,,,,1,1,,0.03,nav,1,1958,3,, 19756,NJBF000053378,9400 ATLANTIC AVE,Margate City,NJ,39.31970264,-74.51333816,RES3F,3002,,20,E,1963,1963,3305,6,1,35027.48714,35027.48714,3507,NO,108.48,114.94,1,0.87,6106,113.337132,123.167744,132.85704,139.425711,I,Above,Flat,0,NaN,,111.70988,0,0,,,,2,2,,0.03,nav,1,1963,6,, 19757,NJBF000057004,102 S DELAVAN AVE,Margate City,NJ,39.32972082,-74.49534944,RES1,3001,,19,NE,1982,1982,3102,2,1,1474.138606,1474.138606,3505,NO,28.71,34.83,3,3.08,6106,113.583847,123.370768,133.077905,139.664842,I,Above,Gable,0,5701,,31.77001327,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 19758,NJBF000060222,8099 FULTON AVE,Margate City,NJ,39.33560906,-74.50580514,RES1,3001,,17,NE,1964,1964,3101,2,1,1599.323759,1599.323759,3505,NO,31.78,40.91,3,-2.76,6106,113.270075,123.119174,132.818914,139.369795,I,Above,Gable,0,5701,,36.34405188,0,0,,,,1,1,,0.03,nav,1,1964,2,, 19759,NJBF000061264,409 N DELAVAN AVE,Margate City,NJ,39.33734115,-74.50179638,RES1,3001,,17,NE,1952,1952,3102,2,1,1883.113223,1883.113223,3505,NO,39.51,47.87,3,8.92,6106,113.334554,123.170768,132.87382,139.425912,I,Above,Hip,0,5701,,43.6931602,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 19760,NJBF000061271,410 N CLERMONT AVE,Margate City,NJ,39.33735398,-74.50154334,RES1,3001,,17,NE,1959,1959,3102,2,1,1712.58499,1712.58499,3505,NO,37.44,43.75,3,2.25,6106,113.339971,123.175109,132.87837,139.43083,I,Above,Hip,0,5701,,40.59249177,0,0,,,,1,1,,0.03,nav,1,1959,2,, 19761,NJBF000061336,412 N CLERMONT AVE,Margate City,NJ,39.33746638,-74.50164471,RES1,3001,,17,NE,1959,1959,3102,1,1,1406.556633,1406.556633,3505,NO,23.97,34.54,3,8.92,6106,113.336163,123.172045,132.875231,139.427113,I,Above,Gable,0,5701,,29.25647847,0,0,,,,1,1,,0.03,nav,1,1959,1,, 19762,NJBF000060895,411 N GLADSTONE AVE,Margate City,NJ,39.33671448,-74.50524298,RES1,3001,,18,NE,1989,1989,3101,2,1,1499.268891,1499.268891,3505,NO,34.16,46.8,3,8.81,6106,113.267026,123.116704,132.816977,139.365258,I,Above,Hip,0,5701,,40.47916813,0,0,,,,1,1,,0.03,nav,1,1989,2,, 19763,NJBF000055138,102 S MANSFIELD AVE,Margate City,NJ,39.32524763,-74.50419892,RES1,3001,,19,NE,1965,1965,3102,2,1,1690.572747,1690.572747,3505,NO,28.61,37.2,3,-2.24,6106,113.454114,123.264978,132.963254,139.542139,I,Above,Gable,0,5701,,32.90307493,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19764,NJBF000058371,26 N DOUGLAS AVE,Margate City,NJ,39.3321849,-74.49805622,RES1,3001,,21,NE,2014,2014,3102,2,1,1073.616393,1073.616393,3505,NO,36.12,44.82,3,2.89,6106,113.489312,123.295007,133.000421,139.576057,I,Above,Gable,0,5701,,40.47119897,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 19765,NJBF000053882,110 S VENDOME AVE,Margate City,NJ,39.32163922,-74.50909087,RES1,3001,,20,NE,1945,1945,3102,2,1,2038.032584,2038.032584,3505,NO,30.59,40.69,3,-0.36,6106,113.400523,123.220092,132.913202,139.487695,I,Above,Flat,0,5701,,35.63792876,0,0,,,,1,1,,0.03,nav,1,1945,2,, 19766,NJBF000054455,,Margate City,NJ,39.32344572,-74.51709759,RES3B,3001,,NaN,ME,2017,0,3301,1,1,2771.625412,2771.625412,3505,NO,26.96,35.23,3,8.2,6106,113.198896,123.058464,132.747421,139.302916,I,Above,Hip,0,5701,,31.09545498,0,0,,,,1,1,,0.03,nav,1,2017,1,, 19767,NJBF000054871,9304 MONMOUTH AVE,Margate City,NJ,39.32452473,-74.5163603,RES1,3001,,17,NE,1930,1930,3109,2,1,1065.445125,1065.445125,3505,NO,31.39,43.73,3,1.16,6106,113.198827,123.059011,132.748862,139.304111,I,Above,Hip,0,5701,,37.56368313,0,0,,,,1,1,,0.03,nav,1,1930,2,, 19768,NJBF000057666,443 N THURLOW AVE,Margate City,NJ,39.3309629,-74.51556265,RES1,3001,,18,NE,1980,1980,3102,2,1,1688.696271,1688.696271,3505,NO,34.57,43.28,3,4.82,6106,113.121336,122.999363,132.691769,139.235187,I,Above,Hip,0,5701,,38.92508905,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 19769,NJBF000057765,7805 VENTNOR AVE,Margate City,NJ,39.33112938,-74.4973738,RES1,3001,,NaN,NE,1948,1954,3102,1,1,4832.523992,4832.523992,3505,NO,16.43,26.26,3,1.5,6106,113.519283,123.318995,133.024743,139.604547,I,Above,Flat,0,5701,,21.34792784,0,0,,,,1,1,,0.03,nav,1,1948,1,, 19770,NJBF000054819,105 S PEMBROKE AVE,Margate City,NJ,39.32439985,-74.50552512,RES1,3001,,19,NE,1925,1925,3103,3,1,2345.846049,2345.846049,3505,NO,50.82,60.71,3,5.03,6106,113.437523,123.251266,132.948197,139.52582,I,Above,Hip,0,5701,,55.76494515,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 19771,NJBF000059050,18 CIRCLE DRIVE,Margate City,NJ,39.3334488,-74.49472728,RES1,3001,,18,NE,1926,1926,3102,2,1,2150.583976,2150.583976,3505,NO,24.99,35.27,3,0.19,6106,113.544908,123.339845,133.048474,139.625698,I,Above,Gable,0,5701,,30.12890105,0,1.2,,,,1,1,,0.03,nav,1,1926,2,, 19772,NJBF000056650,116 N MANSFIELD AVE,Margate City,NJ,39.3289703,-74.50773804,RES1,3001,,17,NE,1929,1929,3101,1,1,2147.172616,2147.172616,3505,NO,11.72,24.17,3,0.35,6110,113.322248,123.160098,132.85708,139.422029,I,Above,Hip,0,5701,,17.94690675,0,0,,,,1,1,,0.35,nav,1,1929,1,, 19773,NJBF000053769,9609 VENTNOR AVE,Margate City,NJ,39.3211949,-74.5171317,RES3C,3001,,19,ME,1956,1956,3301,2,1,4613.74831,4613.74831,3505,NO,38.83,52.3,3,1.69,6106,113.232097,123.083861,132.771701,139.330667,I,Above,Flat,0,NaN,,45.56385861,0,0,,,,1,1,,0.03,nav,1,1956,2,, 19774,NJBF000058685,7805 WINCHESTER AVE,Margate City,NJ,39.33275803,-74.49938007,RES1,3001,,17,NE,1951,1951,3103,2,1,1764.357756,1764.357756,3505,NO,44.33,53,3,7.95,6106,113.452037,123.265086,132.969498,139.541089,I,Above,Gable,0,5701,,48.66561815,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 19775,NJBF000058631,101 N EXETER AVE,Margate City,NJ,39.33264495,-74.49958766,RES1,3001,,45,NE,1925,1925,3103,2,2,2197.185483,2197.185483,3505,NO,42.58,49.01,3,5,6106,113.449048,123.262672,132.966886,139.53844,I,Above,Hip,0,5701,,45.7946288,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19776,NJBF000055345,9102 MONMOUTH AVE,Margate City,NJ,39.32583697,-74.51403167,RES1,3001,,17,NE,1948,1948,3102,2,1,547.4608179,547.4608179,3505,NO,30.26,43.45,3,1.24,6106,113.230171,123.084902,132.776664,139.334606,I,Above,Gable,0,5701,,36.85296638,0,0,,,,1,1,,0.03,nav,1,1948,2,, 19777,NJBF000055703,3 N OSBORNE AVE,Margate City,NJ,39.32677344,-74.50686874,RES1,3001,,17,NE,1950,1950,3101,1,1,1461.571446,1461.571446,3505,NO,11.73,18.24,3,-2.79,6106,113.373295,123.200457,132.897342,139.468477,I,Above,Flat,0,5701,,14.98738708,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 19778,NJBF000056282,17 N MANSFIELD AVE,Margate City,NJ,39.32812419,-74.5063134,RES1,3001,,NaN,NE,1952,0,3102,2,1,2329.741993,2329.741993,3505,NO,28.93,40.66,3,1.83,6106,113.365821,123.194884,132.892632,139.46227,I,Above,Hip,0,5701,,34.79267723,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19779,NJBF000054219,,Margate City,NJ,39.32277434,-74.51539274,RES3B,3001,,NaN,ME,1969,0,3301,2,1,1102.651809,1102.651809,3501,NO,29.24,36.11,7,-6.65,6106,113.246141,123.096175,132.785808,139.34607,I,Above,Gable,0,NaN,,32.67913041,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19780,NJBF000057443,310 N NASSAU AVE,Margate City,NJ,39.33058467,-74.51013361,RES1,3001,,19,NE,1986,1986,3102,2,1,1657.234154,1657.234154,3505,NO,27.49,34.67,3,-2.73,6106,113.246201,123.099436,132.795195,139.351409,I,Above,Flat,0,5701,,31.07719018,0,0,,,,1,1,,0.03,nav,1,1986,2,, 19781,NJBF000054444,3 N BENSON AVE,Margate City,NJ,39.32342303,-74.51280533,RES1,3001,,20,NE,2005,2005,3102,3,1,1008.633114,1008.633114,3505,NO,55.81,70.51,3,-2.36,6106,113.292869,123.134215,132.825732,139.390402,I,Above,Gable,0,5701,,63.15650239,0,0,,,,1,1,,0.03,nav,1,2005,3,, 19782,NJBF000054954,1 S SUMNER AVE,Margate City,NJ,39.32474051,-74.50864919,RES1,3001,,21,NE,1998,1998,3101,1,1,3380.413688,3380.413688,3505,NO,19.48,32.79,3,8.41,6106,113.364138,123.192281,132.887121,139.458162,I,Above,Hip,0,5701,,26.13261601,0,1.1,,,,1,1,,0.03,nav,1,1998,1,, 19783,NJBF000057679,25 N GRANVILLE AVE,Margate City,NJ,39.33098088,-74.50122213,RES1,3001,,17,NE,1948,1948,3102,2,1,1117.415758,1117.415758,3505,NO,30.34,38.36,3,-1.05,6106,113.436664,123.252505,132.95499,139.528101,I,Above,Flat,0,5701,,34.34871414,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19784,NJBF000059337,34 WEST DRIVE,Margate City,NJ,39.33404139,-74.49593371,RES1,3001,,18,NE,1928,1928,3102,2,1,1193.082346,1193.082346,3505,NO,39.19,53.98,3,2.63,6106,113.510005,123.311778,133.019431,139.592725,I,Above,Gable,0,5701,,46.5845175,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 19785,NJBF000055979,8200 ATLANTIC AVE,Margate City,NJ,39.32743395,-74.50005245,RES1,3001,,45,NE,1952,1952,3102,2,3,2313.701756,2313.701756,3505,NO,29.12,40.31,3,7,6106,113.513285,123.313378,133.01575,139.598804,I,Above,Flat,0,5701,,34.71364515,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19786,NJBF000060303,31 SEASIDE COURT,Margate City,NJ,39.33574931,-74.50965628,RES1,3001,,19,NE,2002,2002,3101,3,1,2450.992104,2450.992104,3505,NO,48.28,62.69,3,-0.19,6106,113.182997,123.049452,132.746421,139.2893,I,Above,Hip,0,5701,,55.48130829,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 19787,NJBF000054422,200 N MADISON AVE,Margate City,NJ,39.32336355,-74.51902869,RES3A,3001,,19,NE,1964,1964,3301,1,1,1299.682502,1299.682502,3505,NO,20.53,33.55,3,6.03,6106,113.158068,123.025489,132.713343,139.264702,I,Above,Flat,0,5701,,27.04341193,0,0,,,,1,1,,0.03,nav,1,1964,1,, 19788,NJBF000056786,103 S ESSEX AVE,Margate City,NJ,39.32926077,-74.49599357,RES1,3001,,19,NE,1925,1925,3102,2,1,1497.428266,1497.428266,3505,NO,22.13,34.36,3,-0.41,6106,113.576219,123.364531,133.070957,139.657787,I,Above,Hip,0,5701,,28.24413173,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 19789,NJBF000060627,308 N CLERMONT AVE,Margate City,NJ,39.33629362,-74.50053141,RES1,3001,,21,NE,1958,2018,3102,2,1,1837.610484,1837.610484,3505,NO,39.56,48.15,3,2.74,6106,113.377068,123.20494,132.908943,139.466899,I,Above,Gable,0,5701,,43.85939535,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 19790,NJBF000060227,306 N DOUGLAS AVE,Margate City,NJ,39.33561736,-74.50156035,RES1,3001,,17,NE,1961,1961,3102,2,1,2089.436062,2089.436062,3505,NO,19.75,32.02,3,-2.14,6106,113.363766,123.194291,132.897366,139.455941,I,Above,Gable,0,5701,,25.88504741,0,1.2,,,,1,1,,0.03,nav,1,1961,2,, 19791,NJBF000058463,101 N FRONTENAC AVE,Margate City,NJ,39.33236415,-74.5004205,RES1,3001,,17,NE,1950,1950,3102,2,1,1846.95181,1846.95181,3505,NO,27.86,35.08,3,2.69,6106,113.434661,123.25108,132.954541,139.525397,I,Above,Hip,0,5701,,31.46913163,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 19792,NJBF000059083,5 EAST DRIVE,Margate City,NJ,39.333513,-74.4935475,RES1,3001,,18,NE,1925,1925,3102,2,1,1246.140773,1246.140773,3505,NO,43.51,56.89,3,6.63,6106,113.570005,123.360058,133.069783,139.648584,I,Above,Hip,0,5701,,50.19996046,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19793,NJBF000055505,8602 VENTNOR AVE,Margate City,NJ,39.326268,-74.50545206,RES1,3001,,19,NE,1947,1947,3102,1,1,3485.525376,3485.525376,3505,NO,18.53,31.04,3,4.74,6106,113.41174,123.231226,132.92896,139.503795,I,Above,Hip,0,5701,,24.78275183,0,1.2,,,,1,1,,0.03,nav,1,1947,1,, 19794,NJBF000059534,109 N CLARENDON AVE,Margate City,NJ,39.33442294,-74.49748152,RES1,3001,,17,NE,1945,1945,3102,2,1,2310.902194,2310.902194,3505,NO,22.47,30.25,3,-1.2,6106,113.470508,123.280021,132.986372,139.555874,I,Above,Gable,0,5701,,26.35905183,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 19795,NJBF000054876,9317 MONMOUTH AVE,Margate City,NJ,39.3245414,-74.51703963,RES1,3001,,17,NE,1910,1910,3102,2,3,1495.829442,1495.829442,3507,NO,24.99,39.34,1,1.17,6106,113.183748,123.046871,132.73634,139.290061,I,Above,Hip,0,5701,,32.16299428,0,0,,,,1,1,,0.03,nav,1,1910,2,, 19796,NJBF000054079,5 N ADAMS AVE,Margate City,NJ,39.3223169,-74.51493349,RES1,3001,,17,NE,1928,1928,3102,2,1,1226.867618,1226.867618,3505,NO,32.65,46.23,3,5.99,6106,113.263027,123.109529,132.799217,139.361151,I,Above,Gable,0,5701,,39.44008534,0,0,,,,1,1,,0.03,nav,1,1928,2,, 19797,NJBF000063732,7 ARGYLE COURT,Margate City,NJ,39.34254233,-74.50235066,RES1,3001,,19,NE,1985,1985,3102,2,1,1589.075234,1589.075234,3505,NO,24.21,33.51,3,-1.61,6106,113.251061,123.10285,132.805454,139.33626,I,Above,Flat,0,5701,,28.86201034,0,0,,,,1,1,,0.03,nav,1,1985,2,, 19798,NJBF000054206,111 N MADISON AVE,Margate City,NJ,39.32273495,-74.51786613,RES3B,3001,,20,ME,2005,2005,3301,2,1,3124.36451,3124.36451,3505,NO,44.38,49.65,3,7.1,6106,113.192868,123.053175,132.74137,139.296363,I,Above,Hip,0,5701,,47.01710697,0,0,,,,1,1,,0.03,nav,1,2005,2,, 19799,NJBF000059666,204 N CLERMONT AVE,Margate City,NJ,39.33464243,-74.49890292,RES1,3001,,17,NE,1950,1950,3103,2,1,1059.824736,1059.824736,3505,NO,29.27,38.75,3,1.23,6110,113.43608,123.252354,132.957514,139.523926,I,Above,Hip,0,5701,,34.00707193,0,0,,,,1,1,,0.35,nav,1,1950,2,, 19800,NJBF000059861,219 N DOUGLAS AVE,Margate City,NJ,39.33497764,-74.50025988,RES1,3001,,18,NE,1925,1925,3102,2,1,945.4830588,945.4830588,3505,NO,27.6,42.12,3,-0.41,6106,113.401417,123.224516,132.92858,139.49156,I,Above,Gable,0,5701,,34.85949361,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19801,NJBF000061081,414 N GLADSTONE AVE,Margate City,NJ,39.337028,-74.5060909,RES1,3001,,17,NE,1987,1987,3101,2,1,1759.157933,1759.157933,3505,NO,29.45,37.55,3,0.42,6106,113.243885,123.098157,132.79781,139.343463,I,Above,Hip,0,5701,,33.49624652,0,0,,,,1,1,,0.03,nav,1,1987,2,, 19802,NJBF000058393,12 N CLERMONT AVE,Margate City,NJ,39.33223583,-74.4966537,RES1,3001,,18,NE,1960,1960,3102,2,1,1526.830463,1526.830463,3505,NO,29.18,38.76,3,1.36,6106,113.519484,123.31929,133.025934,139.603867,I,Above,Gable,0,5701,,33.97317086,0,0,,,,1,1,,0.03,nav,1,1960,2,, 19803,NJBF000059753,211 N DOUGLAS AVE,Margate City,NJ,39.33479481,-74.50005837,RES1,3001,,17,NE,1956,1956,3102,3,1,1934.073931,1934.073931,3505,NO,62.41,74.75,3,7.78,6106,113.408439,123.230153,132.93436,139.4983,I,Above,Hip,0,5701,,68.58361174,0,1.1,,,,1,1,,0.03,nav,1,1956,3,, 19804,NJBF000063735,614 N FREDERICKSBURG AVE,Margate City,NJ,39.34254735,-74.50166399,RES1,3001,,NaN,NE,1969,0,3102,2,1,511.2395548,511.2395548,3505,NO,28.91,34.24,3,-2.64,6106,113.266245,123.114995,132.818172,139.349879,I,Above,Flat,0,5701,,31.57473947,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19805,NJBF000053763,17 N MONROE AVE,Margate City,NJ,39.3211755,-74.517807,RES1,3001,,17,NE,1920,1920,3102,2,1,1171.661187,1171.661187,3507,NO,28.05,38.39,1,-0.08,6106,113.217715,123.072232,132.759682,139.317237,I,Above,Gable,0,5701,,33.22016363,0,0,,,,1,1,,0.03,nav,1,1920,2,, 19806,NJBF000063389,7604 BAYSHORE DR,Margate City,NJ,39.34158173,-74.50449153,RES1,3001,,20,NE,1990,1990,3102,2,1,1776.715833,1776.715833,3505,NO,30.09,36.05,3,-1.01,6106,113.216553,123.075541,132.776466,139.308049,I,Above,Flat,0,5701,,33.06974554,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 19807,NJBF000059725,206 N CLERMONT AVE,Margate City,NJ,39.33473747,-74.49899482,RES1,3001,,17,NE,1950,1950,3103,2,1,934.6594623,934.6594623,3505,NO,31.18,39.21,3,5.51,6106,113.43272,123.249656,132.954751,139.520688,I,Above,Hip,0,5701,,35.19826097,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19808,NJBF000058270,113 N GRANVILLE AVE,Margate City,NJ,39.33201067,-74.50217675,RES1,3001,,47,NE,1927,1927,3102,2,2,1184.306164,1184.306164,3505,NO,37.21,44.56,3,6.74,6106,113.400969,123.223964,132.925923,139.494489,I,Above,Hip,0,5701,,40.88216851,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 19809,NJBF000054479,8806 ATLANTIC AVE,Margate City,NJ,39.32349606,-74.50751053,RES1,3001,,19,NE,1930,1930,3102,2,1,1778.245247,1778.245247,3505,NO,37.36,46.64,3,6.7,6106,113.407422,123.226599,132.921696,139.496804,I,Above,Flat,0,5701,,42.00100454,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 19810,NJBF000059915,215 N DELAVAN AVE,Margate City,NJ,39.33507367,-74.49957677,RES1,3001,,17,NE,1949,1949,3103,2,1,1040.80348,1040.80348,3505,NO,22.81,34.94,3,0.2,6106,113.415157,123.23555,132.940201,139.504013,I,Above,Hip,0,5701,,28.87443764,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 19811,NJBF000063655,4 ARGYLE COURT,Margate City,NJ,39.34231209,-74.50301223,RES1,3001,,19,NE,1985,1985,3102,2,1,3450.998567,3450.998567,3505,NO,27.22,34.34,3,1.18,6106,113.239497,123.093674,132.795748,139.326585,I,Above,Hip,0,5701,,30.78119757,0,0,,,,1,1,,0.03,nav,1,1985,2,, 19812,NJBF000060016,216B N CLERMONT AVE,Margate City,NJ,39.33524226,-74.49949731,RES1,3001,,17,NE,1985,1985,3103,1,1,1200.676843,1200.676843,3505,NO,12.47,22.44,3,-2.71,6106,113.414577,123.235082,132.939825,139.503193,I,Above,Hip,0,5701,,17.45597334,0,0,,,,1,1,,0.03,nav,1,1985,1,, 19813,NJBF000059112,39 N CLERMONT AVE,Margate City,NJ,39.3335745,-74.497418,RES1,3001,,20,NE,2007,2007,3102,2,1,1185.259919,1185.259919,3505,NO,41.94,56.88,3,5.35,6106,113.483815,123.290692,132.996947,139.569397,I,Above,Gable,0,5701,,49.40928828,0,0,,,,1,1,,0.03,nav,1,2007,2,, 19814,NJBF000056841,13 S FRONTENAC AVE,Margate City,NJ,39.32937057,-74.4982087,RES1,3001,,21,NE,2016,2016,3102,2,1,1123.208999,1123.208999,3505,NO,34.02,47.12,3,-0.98,6106,113.525946,123.324052,133.028594,139.611183,I,Above,Flat,0,5701,,40.573622,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 19815,NJBF000053124,30 S COOLIDGE AVE,Margate City,NJ,39.31879086,-74.51736187,RES3C,3004,,39,ME,2004,2004,3301,3,1,4740.873128,4740.873128,3505,NO,39,48.44,3,3.72,6106,113.26364,123.107686,132.794056,139.355826,I,Above,Hip,0,5701,,43.72187687,0,0,,,,1,1,,0.03,nav,1,2004,3,, 19816,NJBF000053589,2 S MADISON AVE,Margate City,NJ,39.32050217,-74.51639507,RES1,3001,,21,NE,2002,2002,3102,2,1,2017.862627,2017.862627,3507,NO,33.84,42.5,1,-0.43,6106,113.258608,123.104818,132.792712,139.354212,I,Above,Gable,0,5701,,38.17378061,0,0,,,,1,1,,0.03,nav,1,2002,2,, 19817,NJBF000060112,50 SEASIDE COURT,Margate City,NJ,39.335431,-74.5087555,RES1,3001,,18,NE,1988,1988,3101,2,1,1541.535484,1541.535484,3505,NO,31.57,37.49,3,-2.44,6106,113.207371,123.068954,132.766521,139.312201,I,Above,Hip,0,5701,,34.52908167,0,0,,,,1,1,,0.03,nav,1,1988,2,, 19818,NJBF000058974,20 CIRCLE DRIVE,Margate City,NJ,39.33328678,-74.49445518,RES1,3001,,18,NE,1926,1926,3102,2,1,1509.652453,1509.652453,3505,NO,40.97,53.45,3,8.71,6106,113.553174,123.346492,133.055336,139.633536,I,Above,Hip,0,5701,,47.20590806,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 19819,NJBF000060683,7400 MONMOUTH AVE,Margate City,NJ,39.33638993,-74.49580353,RES1,3001,,17,NE,1954,1954,3102,2,1,1453.299384,1453.299384,3505,NO,35.85,49.42,3,3.29,6106,113.480197,123.287765,132.99589,139.56066,I,Above,Flat,0,5701,,42.63664251,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 19820,NJBF000053511,6 N COOLIDGE AVE,Margate City,NJ,39.320209,-74.51869754,RES1,3001,,18,NE,1978,1978,3102,1,1,1341.678527,1341.678527,3507,NO,14.57,21.72,1,1.18,6106,113.213057,123.0678,132.754239,139.311302,I,Above,Flat,0,5701,,18.14173093,0,0,,,,1,1,,0.03,nav,1,1978,1,, 19821,NJBF000059852,100 N ARGYLE AVE,Margate City,NJ,39.33496729,-74.49556443,RES1,3001,,17,NE,1960,1960,3102,1,1,1416.387494,1416.387494,3505,NO,18.35,28.79,3,6.52,6106,113.505248,123.307961,133.016104,139.586649,I,Above,Gable,0,5701,,23.57230442,0,0,,,,1,1,,0.03,nav,1,1960,1,, 19822,NJBF000059810,101 N BELMONT AVE,Margate City,NJ,39.33488916,-74.4957018,RES1,3001,,17,NE,1949,1949,3102,2,1,1547.263318,1547.263318,3505,NO,26.85,32.94,3,-1.26,6106,113.503288,123.306385,133.014391,139.585018,I,Above,Hip,0,5701,,29.89661441,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 19823,NJBF000059394,201A N DOUGLAS AVE,Margate City,NJ,39.33416736,-74.49945409,RES1,3001,,20,NE,2004,2004,3103,2,1,1505.255174,1505.255174,3505,NO,38.96,53.72,3,6.18,6106,113.430574,123.24792,132.952534,139.51959,I,Above,Hip,0,5701,,46.3395094,0,0,,,,1,1,,0.03,nav,1,2004,2,, 19824,NJBF000053892,17 N MADISON AVE,Margate City,NJ,39.32168563,-74.51694896,RES1,3001,,20,NE,1925,1925,3102,2,1,1162.226162,1162.226162,3507,NO,35.17,49.41,1,-0.39,6106,113.228651,123.081397,132.769593,139.328217,I,Above,Hip,0,5701,,42.28933566,0,0,,,,1,1,,0.03,nav,1,1925,2,, 19825,NJBF000058820,8500 FULTON AVE,Margate City,NJ,39.33298709,-74.50962338,RES1,3001,,20,NE,2006,2006,3102,3,1,1990.209121,1990.209121,3505,NO,45.07,52.53,3,0.44,6106,113.222939,123.081227,132.777842,139.328903,I,Above,Hip,0,5701,,48.79993879,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 19826,NJBF000058727,7407 VENTNOR AVE,Margate City,NJ,39.33282282,-74.49381856,RES1,3001,,18,NE,1925,1925,3102,2,1,1240.797041,1240.797041,3505,NO,31.17,39.37,3,3.85,6106,113.573696,123.362991,133.072319,139.653076,I,Above,Hip,0,5701,,35.26607561,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19827,NJBF000053459,4 S MONROE AVE,Margate City,NJ,39.32001266,-74.51719271,RES1,3001,,49,NE,1967,1967,3102,2,4,1109.080441,1109.080441,3507,NO,40.34,55.05,1,2.5,6106,113.248698,123.096475,132.783644,139.344155,I,Above,Flat,0,5701,,47.69437112,0,0,,,,1,1,,0.03,nav,1,1967,2,, 19828,NJBF000063261,7901 BAYSHORE DR,Margate City,NJ,39.34126163,-74.50757795,RES1,3001,,22,NE,2003,2003,3102,3,1,4803.361922,4803.361922,3505,NO,60.07,69.45,3,3.37,6106,113.152424,123.024392,132.722961,139.250715,I,Above,Gable,0,5701,,64.75844029,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 19829,NJBF000058129,107 N GRANVILLE AVE,Margate City,NJ,39.33175801,-74.50191295,RES1,3001,,17,NE,1930,1930,3102,2,1,1616.617618,1616.617618,3505,NO,27.49,32.73,3,-0.27,6106,113.410382,123.231495,132.933608,139.503365,I,Above,Hip,0,5701,,30.11389514,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 19830,NJBF000053384,9607 PACIFIC AVE,Margate City,NJ,39.31973015,-74.51583409,RES3D,3001,,22,ME,1983,1983,3301,2,1,2339.697544,2339.697544,3505,NO,28.9,37.64,3,-1.63,6106,113.282499,123.123604,132.811401,139.375081,I,Above,Flat,0,NaN,,33.26964573,0,0,,,,1,1,,0.03,nav,1,1983,2,, 19831,NJBF000054161,3 S DECATUR AVE,Margate City,NJ,39.32258098,-74.51269698,RES1,3001,,18,NE,1925,1925,3102,2,1,774.1555928,774.1555928,3505,NO,29.91,42.15,3,7.56,6106,113.307804,123.145802,132.836996,139.403155,I,Above,Flat,0,5701,,36.03242669,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 19832,NJBF000057127,8604 AMHERST AVE,Margate City,NJ,39.32998378,-74.50959469,RES1,3001,,17,NE,1962,1962,3102,2,1,1302.402689,1302.402689,3505,NO,38.77,45.77,3,8.5,6106,113.266746,123.115782,132.811754,139.370539,I,Above,Gable,0,5701,,42.26732039,0,0,,,,1,1,,0.03,nav,1,1962,2,, 19833,NJBF000061428,8100 MARSHALL AVE,Margate City,NJ,39.33761268,-74.50692201,RES1,3001,,17,NE,1974,1974,3101,1,1,2087.685586,2087.685586,3505,NO,25.82,38.6,3,8.95,6106,113.21734,123.076871,132.775938,139.318052,I,Above,Hip,0,5701,,32.2108538,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 19834,NJBF000059965,217 N DELAVAN AVE,Margate City,NJ,39.33516636,-74.49966124,RES1,3001,,17,NE,1959,1959,3103,1,1,1459.290588,1459.290588,3505,NO,9.28,15.68,3,-2.31,6106,113.412017,123.233027,132.937621,139.500976,I,Above,Hip,0,5701,,12.48073356,0,0,,,,1,1,,0.03,nav,1,1959,1,, 19835,NJBF000053330,9 S COOLIDGE AVE,Margate City,NJ,39.3195362,-74.5175288,RES1,3001,,21,NE,2015,2015,3102,3,1,1331.440716,1331.440716,3507,NO,38.36,51.64,1,0.69,6106,113.248663,123.096111,132.78282,139.343277,I,Above,Flat,0,5701,,45.00076877,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 19836,NJBF000062847,615 N DOUGLAS AVE,Margate City,NJ,39.34034552,-74.5055195,RES1,3001,,18,NE,1965,1965,3102,2,1,1605.078258,1605.078258,3505,NO,38.08,46.71,3,6.62,6106,113.210631,123.071105,132.771271,139.305991,I,Above,Gable,0,5701,,42.39212867,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 19837,NJBF000059934,200 N CLARENDON AVE,Margate City,NJ,39.33510758,-74.49864076,RES1,3001,,17,NE,1950,1950,3103,2,1,1507.03293,1507.03293,3505,NO,35.35,45.77,3,8.64,6106,113.435352,123.25177,132.957224,139.522468,I,Above,Hip,0,5701,,40.56193189,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19838,NJBF000060728,404B N GLADSTONE AVE,Margate City,NJ,39.33646001,-74.50557894,RES1,3001,,18,NE,1985,1985,3101,2,1,1521.323488,1521.323488,3505,NO,22.24,36.9,3,-1.06,6106,113.263144,123.113606,132.813602,139.362117,I,Above,Gable,0,5701,,29.56643071,0,0,,,,1,1,,0.03,nav,1,1985,2,, 19839,NJBF000063726,3 ARGYLE COURT,Margate City,NJ,39.34252092,-74.50304739,RES1,3001,,19,NE,1988,1988,3102,2,1,2748.998135,2748.998135,3505,NO,34.23,44.98,3,1.06,6106,113.235893,123.090726,132.792757,139.322684,I,Above,Hip,0,5701,,39.60354332,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 19840,NJBF000063838,7500 BAYSHORE DR,Margate City,NJ,39.3428494,-74.50279308,RES1,3001,,19,NE,1987,1987,3102,3,1,1859.695887,1859.695887,3505,NO,44.43,53.02,3,4.35,6106,113.237103,123.091586,132.793801,139.322723,I,Above,Hip,0,5701,,48.72270869,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 19841,NJBF000058644,204 N GRANVILLE AVE,Margate City,NJ,39.33265876,-74.5033095,RES1,3001,,17,NE,1961,1961,3102,2,1,1535.671513,1535.671513,3505,NO,36.87,49.03,3,6.62,6106,113.366795,123.196591,132.89779,139.462389,I,Above,Hip,0,5701,,42.95038761,0,0,,,,1,1,,0.03,nav,1,1961,2,, 19842,NJBF000061368,422 N GLADSTONE AVE,Margate City,NJ,39.33751737,-74.50655659,RES1,3001,,19,NE,1986,1986,3101,1,1,1639.300771,1639.300771,3505,NO,9.62,18.31,3,-1.59,6106,113.226756,123.084413,132.783747,139.326868,I,Above,Hip,0,5701,,13.96718893,0,0,,,,1,1,,0.03,nav,1,1986,1,, 19843,NJBF000059560,206 N DELAVAN AVE,Margate City,NJ,39.33446393,-74.49946746,RES1,3001,,17,NE,1950,1950,3103,1,1,957.3357193,957.3357193,3505,NO,20.85,29.99,3,2.05,6106,113.426123,123.244352,132.949004,139.515059,I,Above,Hip,0,5701,,25.41896222,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19844,NJBF000053323,9517 ATLANTIC AVE,Margate City,NJ,39.31951776,-74.51489735,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3329.152823,3329.152823,3505,NO,28.64,40.75,3,5.13,6106,113.306062,123.142508,132.830742,139.396571,I,Above,Flat,0,NaN,,34.69199149,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19845,NJBF000063456,7609 BAYSHORE DR,Margate City,NJ,39.34178243,-74.50491876,RES1,3001,,21,NE,2003,2003,3102,3,1,4086.844228,4086.844228,3505,NO,37.71,43.23,3,-1.53,6106,113.204354,123.065736,132.766312,139.296439,I,Above,Gable,0,5701,,40.47130541,0,0,,,,1,1,,0.03,nav,1,2003,3,, 19846,NJBF000059766,218 N DOUGLAS AVE,Margate City,NJ,39.3348141,-74.50052357,RES1,3001,,17,NE,1959,1959,3102,2,1,990.9092378,990.9092378,3505,NO,41.91,49.26,3,5.21,6106,113.397884,123.221678,132.925498,139.488572,I,Above,Gable,0,5701,,45.58959435,0,0,,,,1,1,,0.03,nav,1,1959,2,, 19847,NJBF000060994,27 N GILMAR CIRCLE,Margate City,NJ,39.33686758,-74.50773768,RES1,3001,,17,NE,1965,1965,3101,2,1,1846.404841,1846.404841,3505,NO,32.02,40.47,3,4.7,6106,113.209685,123.070792,132.769216,139.312295,I,Above,Hip,0,5701,,36.24221426,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 19848,NJBF000060865,410 N ESSEX AVE,Margate City,NJ,39.33666649,-74.50339211,RES1,3001,,18,NE,1952,1952,3102,2,1,2175.527328,2175.527328,3505,NO,35.55,48.53,3,6.74,6106,113.308633,123.15004,132.851751,139.403522,I,Above,Hip,0,5701,,42.04096875,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19849,NJBF000063624,7501 BURK AVE,Margate City,NJ,39.34222926,-74.50231711,RES1,3001,,19,NE,1990,1990,3102,2,1,2428.114863,2428.114863,3505,NO,32.35,43.03,3,-1.38,6106,113.256048,123.106937,132.809589,139.341743,I,Above,Hip,0,5701,,37.69094483,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 19850,NJBF000057235,20 S DOUGLAS AVE,Margate City,NJ,39.33020002,-74.49649965,COM1,3001,,21,ME,2017,2017,3401,3,1,2337.566679,2337.566679,3507,NO,35.18,46.42,1,2.89,6106,113.551714,123.344964,133.051223,139.634973,I,Above,Gable,0,NaN,,40.79683177,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19851,NJBF000057202,20 S DOUGLAS AVE,Margate City,NJ,39.33014202,-74.49645019,COM1,3001,,21,ME,2017,2017,3401,3,1,1153.169942,1153.169942,3507,NO,44.82,54.17,1,0.72,6106,113.553639,123.346504,133.052791,139.636772,I,Above,Hip,0,NaN,,49.49283229,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19852,NJBF000057185,20 S DOUGLAS AVE,Margate City,NJ,39.3301019,-74.49642297,COM1,3001,,21,ME,2017,2017,3401,3,1,1008.544826,1008.544826,3507,NO,44.01,55.04,1,0.7,6106,113.554802,123.347434,133.053733,139.637859,I,Above,Hip,0,NaN,,49.52572967,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19853,NJBF000057167,20 S DOUGLAS AVE,Margate City,NJ,39.33006441,-74.49639445,COM1,3001,,21,ME,2017,2017,3401,3,1,1105.212305,1105.212305,3507,NO,40.28,45.52,1,0.04,6106,113.555981,123.348377,133.05469,139.63896,I,Above,Hip,0,NaN,,42.90044527,0,0,,,,1,1,,0.03,nav,1,2017,3,, 19854,NJBF000062785,7909 LAGOON DRIVE,Margate City,NJ,39.34022225,-74.50848906,RES1,3001,,18,NE,1973,1973,3102,2,1,2822.126772,2822.126772,3505,NO,33.46,45.41,3,6.34,6106,113.146484,123.019877,132.717821,139.247816,I,Above,Gable,0,5701,,39.43241908,0,0,,,,1,1,,0.03,nav,1,1973,2,, 19855,NJBF000057528,7504 ATLANTIC AVE,Margate City,NJ,39.33072643,-74.49326081,RES1,3001,,21,NE,2003,2003,3102,3,1,1444.858012,1444.858012,3505,NO,61.57,73.49,3,7.76,6106,113.61552,123.396468,133.105789,139.693812,I,Above,Hip,0,5701,,67.52830781,0,0,,,,1,1,,0.03,nav,1,2003,3,, 19856,NJBF000062589,600 N CLERMONT AVE,Margate City,NJ,39.33976953,-74.50386149,RES1,3001,,18,NE,1969,1969,3102,2,1,1475.976467,1475.976467,3505,NO,29.3,36.93,3,-1.77,6106,113.255316,123.106962,132.808436,139.348076,I,Above,Gable,0,5701,,33.11174041,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 19857,NJBF000053395,,Margate City,NJ,39.31977921,-74.51705075,RES1,3001,,NaN,NE,1969,0,3102,2,1,2354.138307,2354.138307,3507,NO,21.05,30.79,1,-0.57,6106,113.255337,123.101679,132.788797,139.34992,I,Above,Hip,0,5701,,25.9199899,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19858,NJBF000059757,7502 WINCHESTER AVE,Margate City,NJ,39.33479868,-74.49529154,RES1,3001,,19,NE,1927,1927,3102,2,1,1125.800587,1125.800587,3505,NO,28.43,34.22,3,6.44,6106,113.513591,123.314673,133.023035,139.594601,I,Above,Hip,0,5701,,31.3251282,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 19859,NJBF000053450,9803 VENTNOR AVE,Margate City,NJ,39.31997522,-74.51857264,RES1,3001,,17,NE,1930,1930,3102,2,1,1072.046829,1072.046829,3507,NO,27.32,37.34,1,-0.66,6106,113.219332,123.072706,132.759084,139.316746,I,Above,Gable,0,5701,,32.33184356,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19860,NJBF000057051,19 S ESSEX AVE,Margate City,NJ,39.32981962,-74.49662773,COM1,3001,,NaN,ME,1915,1915,3401,3,1,1325.682918,1325.682918,3507,NO,46.23,57.39,1,-0.93,6106,113.554307,123.346984,133.053022,139.637454,I,Above,Flat,0,NaN,,51.8065738,0,0,,,,1,1,,0.03,nav,1,1915,3,, 19861,NJBF000056426,313 N UNION AVE,Margate City,NJ,39.32844185,-74.5140663,RES1,3001,,21,NE,2017,2017,3101,1,1,1137.488466,1137.488466,3505,NO,17.48,28.87,3,1.7,6106,113.191027,123.054494,132.74713,139.299743,I,Above,Gable,0,5701,,23.1757565,0,0,,,,1,1,,0.03,nav,1,2017,1,, 19862,NJBF000057653,1 S DOUGLAS AVE,Margate City,NJ,39.330945,-74.4963,RES3C,3001,,21,E,2004,2004,3303,4,1,1317.573987,1317.573987,3507,NO,61.01,66.44,1,2.58,6106,113.545536,123.340107,133.046745,139.628946,I,Above,Hip,0,NaN,,63.72347333,0,0,,,,1,1,,0.03,nav,1,2004,4,, 19863,NJBF000053242,23 S COOLIDGE AVE,Margate City,NJ,39.31922463,-74.51725358,RES3D,3001,,21,ME,2001,2001,3301,2,1,2435.031763,2435.031763,3505,NO,28.96,41.38,3,3.89,6106,113.259365,123.104542,132.791229,139.352663,I,Above,Hip,0,NaN,,35.17021625,0,0,,,,1,1,,0.03,nav,1,2001,2,, 19864,NJBF000053265,23 S COOLIDGE AVE,Margate City,NJ,39.31931905,-74.51708652,RES3D,3001,,21,ME,2001,2001,3301,2,1,2525.221244,2525.221244,3505,NO,30.76,41.19,3,-0.36,6106,113.261555,123.106381,132.793217,139.354872,I,Above,Hip,0,NaN,,35.97789605,0,0,,,,1,1,,0.03,nav,1,2001,2,, 19865,NJBF000053652,26 N COOLIDGE AVE,Margate City,NJ,39.32076384,-74.51921015,RES1,3001,,17,NE,1951,1951,3101,1,1,1087.282112,1087.282112,3505,NO,24.6,30.09,3,8.28,6106,113.193502,123.052385,132.738849,139.293996,I,Above,Hip,0,5701,,27.34606239,0,0,,,,1,1,,0.03,nav,1,1951,1,, 19866,NJBF000062407,7810 BURK AVE,Margate City,NJ,39.33939214,-74.50647615,RES1,3001,,18,NE,1970,1970,3102,2,1,1828.266572,1828.266572,3505,NO,37.53,48.37,3,0.94,6106,113.202557,123.06483,132.764276,139.300902,I,Above,Hip,0,5701,,42.94743368,0,0,,,,1,1,,0.03,nav,1,1970,2,, 19867,NJBF000062809,605 N CLERMONT AVE,Margate City,NJ,39.34027052,-74.50381558,RES1,3001,,18,NE,1962,1962,3102,2,1,1669.260077,1669.260077,3505,NO,38.91,53.12,3,5.4,6106,113.249445,123.102163,132.803669,139.341453,I,Above,Gable,0,5701,,46.01551265,0,0,,,,1,1,,0.03,nav,1,1962,2,, 19868,NJBF000061521,416 N DELAVAN AVE,Margate City,NJ,39.33778607,-74.50269122,RES1,3001,,17,NE,1952,1952,3102,2,1,1617.820889,1617.820889,3505,NO,33.8,39.24,3,0.1,6106,113.308585,123.14991,132.852264,139.401247,I,Above,Hip,0,5701,,36.51840861,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19869,NJBF000063074,7702 BAYSHORE DR,Margate City,NJ,39.34084484,-74.5051502,RES1,3001,,17,NE,1964,1964,3102,2,1,1541.984515,1541.984515,3505,NO,20.43,26.63,3,-1.36,6106,113.212005,123.072093,132.772532,139.305953,I,Above,Gable,0,5701,,23.52548269,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 19870,NJBF000061609,418 N DELAVAN AVE,Margate City,NJ,39.3379392,-74.50284962,RES1,3001,,17,NE,1952,1952,3102,1,1,1680.123849,1680.123849,3505,NO,21.18,29.25,3,3.34,6106,113.302948,123.145377,132.847611,139.39577,I,Above,Hip,0,5701,,25.21129233,0,0,,,,1,1,,0.03,nav,1,1952,1,, 19871,NJBF000062441,600 N DELAVAN AVE,Margate City,NJ,39.33946767,-74.50439754,RES1,3001,,18,NE,1994,1994,3102,2,1,1530.68442,1530.68442,3505,NO,34.86,46.29,3,-0.62,6106,113.247565,123.100815,132.801863,139.341768,I,Above,Flat,0,5701,,40.57577289,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 19872,NJBF000053961,14 N JEFFERSON AVE,Margate City,NJ,39.32193754,-74.51641394,RES1,3001,,45,NE,1922,1922,3102,2,2,2883.737408,2883.737408,3507,NO,32.6,45.6,1,1.81,6106,113.236487,123.087881,132.776511,139.335893,I,Above,Gable,0,5701,,39.10029088,0,0,,,,1,1,,0.03,nav,1,1922,2,, 19873,NJBF000054358,22A N WASHINGTON AVE,Margate City,NJ,39.32317762,-74.51497446,RES3C,3004,,39,ME,1984,1984,3301,3,1,1027.751456,1027.751456,3505,NO,61.85,68.29,3,4.7,6106,113.249216,123.098885,132.788957,139.349469,I,Above,Flat,0,5701,,65.0673762,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 19874,NJBF000057083,105 S CLERMONT AVE,Margate City,NJ,39.32988504,-74.49432301,RES1,3001,,21,NE,1992,1992,3102,3,1,1908.806165,1908.806165,3505,YES,40.76,47.47,3,-2.7,6106,113.604079,123.387106,133.095215,139.68356,I,Above,Flat,0,5701,,44.11552892,0,0,,,,1,1,,0.03,nav,1,1992,3,, 19875,NJBF000053883,15 N MADISON AVE,Margate City,NJ,39.32164061,-74.51686104,RES1,3001,,20,NE,2013,2013,3102,3,1,1852.262296,1852.262296,3507,NO,60.87,74.66,1,2.48,6106,113.231245,123.083462,132.771686,139.330565,I,Above,Hip,0,5701,,67.76554533,0,1.2,,,,1,1,,0.03,nav,1,2013,3,, 19876,NJBF000061259,8106 MARSHALL AVE,Margate City,NJ,39.33733178,-74.50741367,RES1,3001,,17,NE,1973,1973,3101,1,1,1810.084382,1810.084382,3505,NO,16.53,26.44,3,1.61,6106,113.210369,123.071314,132.770004,139.31215,I,Above,Flat,0,5701,,21.48133445,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 19877,NJBF000055029,107 S NASSAU AVE,Margate City,NJ,39.32493357,-74.50421878,RES1,3001,,19,NE,1961,1961,3102,2,1,1409.640553,1409.640553,3505,NO,38.28,48.84,3,8.86,6106,113.458275,123.268209,132.966341,139.545653,I,Above,Hip,0,5701,,43.55871962,0,1.2,,,,1,1,,0.03,nav,1,1961,2,, 19878,NJBF000055107,106 S MANSFIELD AVE,Margate City,NJ,39.32514704,-74.50412134,RES1,3001,,21,NE,1958,1958,3102,3,1,1740.805557,1740.805557,3505,NO,58.58,67.37,3,0.65,6106,113.457301,123.267508,132.965802,139.544984,I,Above,Gable,0,5701,,62.97739318,0,1.1,,,,1,1,,0.03,nav,1,1958,3,, 19879,NJBF000055147,101 S NASSAU AVE,Margate City,NJ,39.32527142,-74.50450353,RES1,3001,,19,NE,1957,1957,3102,2,1,2897.460035,2897.460035,3505,NO,30.87,45.44,3,6.39,6106,113.447096,123.259332,132.957387,139.535661,I,Above,Hip,0,5701,,38.15713986,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 19880,NJBF000055110,103 S NASSAU AVE,Margate City,NJ,39.32515459,-74.50439026,RES1,3001,,17,NE,1930,1930,3102,2,1,2432.775477,2432.775477,3505,NO,32,45.35,3,2.24,6106,113.451292,123.262668,132.960762,139.539426,I,Above,Flat,0,5701,,38.67610609,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19881,NJBF000061222,416 N DOUGLAS AVE,Margate City,NJ,39.3372562,-74.50310205,RES1,3001,,18,NE,1966,1966,3102,2,1,2269.183053,2269.183053,3505,NO,25.63,37.67,3,1.06,6110,113.30684,123.148563,132.850551,139.400752,I,Above,Hip,0,5701,,31.65102881,0,1.1,,,,1,1,,0.35,nav,1,1966,2,, 19882,NJBF000062826,611 N DELAVAN AVE,Margate City,NJ,39.34031141,-74.50467916,RES1,3001,,18,NE,1963,1963,3102,2,1,1639.385631,1639.385631,3505,NO,36.64,46.36,3,-0.53,6106,113.229761,123.086409,132.787231,139.323473,I,Above,Hip,0,5701,,41.49854308,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 19883,NJBF000062596,603 N DELAVAN AVE,Margate City,NJ,39.33977893,-74.50417312,RES1,3001,,18,NE,1963,1963,3102,2,1,1300.939431,1300.939431,3505,NO,25.13,32.08,3,-1.55,6106,113.248277,123.101328,132.802554,139.341653,I,Above,Gable,0,5701,,28.60730297,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 19884,NJBF000062633,602 N CLERMONT AVE,Margate City,NJ,39.33988577,-74.5039858,RES1,3001,,18,NE,1962,1962,3102,1,1,2164.714071,2164.714071,3505,NO,21.18,34.14,3,5.79,6106,113.250953,123.103448,132.804823,139.343817,I,Above,Gable,0,5701,,27.65804175,0,0,,,,1,1,,0.03,nav,1,1962,1,, 19885,NJBF000059689,220 N ESSEX AVE,Margate City,NJ,39.3346901,-74.5012087,RES1,3001,,19,NE,1969,2013,3101,1,1,3044.26415,3044.26415,3507,NO,18.8,33.72,1,-0.67,6106,113.384497,123.210929,132.914166,139.47645,I,Above,Hip,0,5701,,26.25726863,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19886,NJBF000059858,213 N DELAVAN AVE,Margate City,NJ,39.33497426,-74.49951686,RES1,3001,,17,NE,1955,1955,3103,2,1,1534.172167,1534.172167,3505,NO,26,37.06,3,3.88,6106,113.41788,123.237736,132.942424,139.506679,I,Above,Flat,0,5701,,31.53143119,0,0,,,,1,1,,0.03,nav,1,1955,2,, 19887,NJBF000053298,11 S COOLIDGE AVE,Margate City,NJ,39.31942128,-74.51743072,RES1,3001,,16,NE,1927,1927,3102,2,1,1113.173475,1113.173475,3507,NO,38.79,52.77,1,0.81,6106,113.25254,123.099164,132.785863,139.346676,I,Above,Gable,0,5701,,45.78348355,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 19888,NJBF000055021,112 S LANCASTER AVE,Margate City,NJ,39.324915,-74.50316727,RES1,3001,,20,NE,1970,1970,3102,3,1,1608.576949,1608.576949,3505,NO,38.06,49.31,3,0.01,6106,113.481594,123.286996,132.985925,139.567217,I,Above,Flat,0,5701,,43.68782112,0,1.1,,,,1,1,,0.03,nav,1,1970,3,, 19889,NJBF000057555,27 N HAVERFORD AVE,Margate City,NJ,39.33077398,-74.50183686,RES1,3001,,17,NE,1949,1949,3101,1,1,1378.980257,1378.980257,3505,NO,9.32,15.09,3,-2.52,6106,113.426078,123.243959,132.945896,139.518362,I,Above,Hip,0,5701,,12.2083714,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 19890,NJBF000056647,8606 MONMOUTH AVE,Margate City,NJ,39.32896512,-74.50863614,RES1,3001,,17,NE,1947,1947,3102,2,1,1969.566716,1969.566716,3505,YES,38.59,45.16,3,8.36,6106,113.302593,123.1443,132.840649,139.403754,I,Above,Gable,0,5701,,41.87737212,0,0,,,,1,1,,0.03,nav,1,1947,2,, 19891,NJBF000053823,9700 WINCHESTER AVE,Margate City,NJ,39.32140753,-74.51849848,RES1,3001,,49,NE,1961,1961,3102,2,2,1503.252009,1503.252009,3507,NO,38.97,47.12,1,1.53,6106,113.199184,123.057419,132.744608,139.300324,I,Above,Flat,0,5701,,43.04406012,0,0,,,,1,1,,0.03,nav,1,1961,2,, 19892,NJBF000053866,9404 VENTNOR AVE,Margate City,NJ,39.32156324,-74.51495229,RES1,3001,,NaN,NE,1920,1920,3102,2,1,1311.044358,1311.044358,3507,NO,22.77,28.52,1,1.14,6106,113.273957,123.117896,132.807198,139.370197,I,Above,Flat,0,5701,,25.64393162,0,0,,,,1,1,,0.03,nav,1,1920,2,, 19893,NJBF000056572,111 S ESSEX AVE,Margate City,NJ,39.32878234,-74.49559799,RES1,3001,,19,NE,1981,1981,3102,2,1,1553.585954,1553.585954,3505,NO,42.47,47.78,3,8.79,6106,113.591763,123.376958,133.083583,139.672128,I,Above,Hip,0,5701,,45.126157,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 19894,NJBF000053761,7 S JEFFERSON AVE,Margate City,NJ,39.3211661,-74.51486266,RES1,3001,,15,NE,1960,1960,3102,1,1,1016.70485,1016.70485,3507,NO,13.25,21.56,1,-0.38,6106,113.281878,123.124044,132.813196,139.376937,I,Above,Gable,0,5701,,17.40520928,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 19895,NJBF000056297,9006 FREMONT AVE,Margate City,NJ,39.32815883,-74.5154,RES1,3001,,17,NE,1955,1955,3101,1,1,1247.982267,1247.982267,3505,NO,25.31,35.95,3,6.65,6106,113.165935,123.034227,132.725972,139.276234,I,Above,Gable,0,5701,,30.63053264,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19896,NJBF000059110,217 N GLADSTONE AVE,Margate City,NJ,39.33356307,-74.50248785,RES1,3001,,47,NE,1960,1960,3101,1,2,1448.142394,1448.142394,3505,NO,24.45,35.52,3,8.04,6106,113.372128,123.200952,132.902971,139.466476,I,Above,Flat,0,5701,,29.98663556,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 19897,NJBF000053446,,Margate City,NJ,39.31996508,-74.51514077,RES1,3001,,NaN,NE,1948,0,3102,2,1,1223.55625,1223.55625,3507,NO,37.43,46.58,1,1.45,6106,113.293988,123.133049,132.821388,139.386167,I,Above,Gable,0,5701,,42.00545261,0,0,,,,1,1,,0.03,nav,1,1948,2,, 19898,NJBF000058343,18 S FREDERICKSBURG AVE,Margate City,NJ,39.33213802,-74.49217504,RES1,3001,,19,NE,1938,1938,3102,2,1,1714.825976,1714.825976,3505,NO,34.27,46.19,3,6.68,6106,113.619526,123.399868,133.110569,139.696142,I,Above,Gable,0,5701,,40.22961431,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 19899,NJBF000055071,110 S LANCASTER AVE,Margate City,NJ,39.32504078,-74.50329339,RES1,3001,,21,NE,2002,2002,3102,3,1,2183.865252,2183.865252,3505,NO,38.49,48.1,3,2.19,6106,113.47699,123.283334,132.982218,139.563099,I,Above,Hip,0,5701,,43.29748851,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 19900,NJBF000053824,24 S WASHINGTON AVE,Margate City,NJ,39.32141439,-74.51324064,RES1,3001,,NaN,NE,1940,1925,3102,2,1,1528.964846,1528.964846,3507,NO,33.93,44.53,1,-0.57,6106,113.313449,123.149685,132.839959,139.406656,I,Above,Flat,0,5701,,39.23087832,0,0,,,,1,1,,0.03,nav,1,1940,2,, 19901,NJBF000055193,104 S LANCASTER AVE,Margate City,NJ,39.32540651,-74.50356221,RES1,3001,,20,NE,1945,1945,3102,2,1,1983.056869,1983.056869,3505,NO,36.06,48.78,3,5.7,6106,113.465744,123.27441,132.973236,139.553077,I,Above,Gable,0,5701,,42.41615301,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 19902,NJBF000053746,16 S ADAMS AVE,Margate City,NJ,39.32112633,-74.51433071,RES1,3001,,17,NE,1988,1988,3102,1,1,944.2820854,944.2820854,3507,NO,16.36,21.57,1,0.72,6106,113.294057,123.133853,132.823306,139.388189,I,Above,Gable,0,5701,,18.96626242,0,0,,,,1,1,,0.03,nav,1,1988,1,, 19903,NJBF000054549,111 S QUINCY AVE,Margate City,NJ,39.3237045,-74.50575663,RES1,3001,,20,NE,1930,1930,3103,3,1,2807.731185,2807.731185,3505,NO,35.64,43.27,3,0.06,6106,113.442699,123.255136,132.951593,139.529736,I,Above,Hip,0,5701,,39.45219099,0,0,,,,1,1,,0.03,nav,1,1930,3,, 19904,NJBF000060178,7513 MONMOUTH AVE,Margate City,NJ,39.33553638,-74.49789365,RES1,3001,,17,NE,1948,1948,3103,1,1,1249.96645,1249.96645,3505,NO,22.86,28.02,3,6.72,6106,113.445882,123.260224,132.966384,139.531302,I,Above,Gable,0,5701,,25.44110287,0,0,,,,1,1,,0.03,nav,1,1948,1,, 19905,NJBF000054486,9307 WINCHESTER AVE,Margate City,NJ,39.3235103,-74.51560794,RES1,3001,,45,NE,1940,1940,3102,2,2,1686.917226,1686.917226,3507,NO,25.51,39.88,1,1.6,6106,113.230418,123.083915,132.773762,139.332382,I,Above,Hip,0,5701,,32.69502617,0,0,,,,1,1,,0.03,nav,1,1940,2,, 19906,NJBF000054898,101 S PEMBROKE AVE,Margate City,NJ,39.32458637,-74.50574905,RES1,3001,,22,NE,2017,2017,3103,3,1,1555.375863,1555.375863,3505,NO,55.24,67.99,3,1.04,6106,113.429884,123.245188,132.942034,139.518963,I,Above,Hip,0,5701,,61.61532196,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 19907,NJBF000059346,101 N CLARENDON AVE,Margate City,NJ,39.33406338,-74.49714375,RES1,3001,,20,NE,2007,2007,3102,3,1,1584.11557,1584.11557,3505,NO,61.06,69.14,3,3.58,6106,113.483003,123.290059,132.996644,139.567923,I,Above,Hip,0,5701,,65.10013008,0,0,,,,1,1,,0.03,nav,1,2007,3,, 19908,NJBF000055449,9 N RUMSON AVE,Margate City,NJ,39.32612745,-74.50914073,RES1,3001,,18,NE,1940,1940,3102,2,1,1255.285429,1255.285429,3505,NO,26.94,39.09,3,-1.85,6106,113.33296,123.167754,132.862802,139.43051,I,Above,Hip,0,5701,,33.01591106,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 19909,NJBF000054022,9319 VENTNOR AVE,Margate City,NJ,39.32213558,-74.51478342,COM1,3001,,NaN,ME,1881,1881,3401,2,1,1793.996211,1793.996211,3507,NO,21.59,35.76,1,0.09,6106,113.269015,123.114253,132.803943,139.36646,I,Above,Gable,0,NaN,,28.67279254,0,1.1,,,,1,1,,0.03,nav,1,1881,2,, 19910,NJBF000054115,110 S THURLOW AVE,Margate City,NJ,39.32243158,-74.5079925,RES1,3001,,21,NE,1992,1992,3103,3,1,2994.563807,2994.563807,3505,NO,45.51,54.75,3,0.17,6106,113.412672,123.230312,132.924574,139.500162,I,Above,Hip,0,5701,,50.13289531,0,1.1,,,,1,1,,0.03,nav,1,1992,3,, 19911,NJBF000054822,9105 JEFFERSON CT,Margate City,NJ,39.32440663,-74.5128476,RES1,3001,,17,NE,1940,1940,3102,2,1,947.7365483,947.7365483,3505,NO,28.46,37.45,3,1.37,6106,113.277276,123.122151,132.814073,139.377068,I,Above,Gable,0,5701,,32.95576304,0,0,,,,1,1,,0.03,nav,1,1940,2,, 19912,NJBF000053418,31 S MADISON AVE,Margate City,NJ,39.31985683,-74.51526327,RES1,3001,,21,NE,2003,2003,3102,3,1,1191.26265,1191.26265,3507,NO,52.96,66.76,1,-0.85,6106,113.292974,123.132157,132.820363,139.385034,I,Above,Gable,0,5701,,59.86060292,0,0,,,,1,1,,0.03,nav,1,2003,3,, 19913,NJBF000058143,20 S ANDOVER AVE,Margate City,NJ,39.33177928,-74.49263754,RES1,3001,,19,NE,2007,1930,3102,2,1,1527.970571,1527.970571,3505,NO,22.23,28.23,3,-0.02,6106,113.614378,123.395681,133.105859,139.691847,I,Above,Gable,0,5701,,25.23370845,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 19914,NJBF000063773,616 N FREDERICKSBURG AVE,Margate City,NJ,39.34266426,-74.50180025,RES1,3001,,19,NE,1989,1989,3102,2,1,1461.76654,1461.76654,3505,NO,28.7,38.54,3,-2.41,6106,113.261647,123.111278,132.814333,139.345368,I,Above,Gable,0,5701,,33.62009325,0,0,,,,1,1,,0.03,nav,1,1989,2,, 19915,NJBF000056765,412 N UNION AVE,Margate City,NJ,39.32920687,-74.51534346,RES1,3001,,17,NE,1955,1955,3101,1,1,1174.977558,1174.977558,3505,NO,23.03,32.35,3,6.44,6106,113.151799,123.023259,132.715348,139.263421,I,Above,Hip,0,5701,,27.68635763,0,0,,,,1,1,,0.03,nav,1,1955,1,, 19916,NJBF000053609,,Margate City,NJ,39.3205855,-74.513252,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4071.894703,4071.894703,3505,NO,20.31,31.25,3,0.91,6106,113.325688,123.159061,132.848894,139.416654,I,Above,Flat,0,NaN,,25.77735689,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19917,NJBF000061434,414 N DELAVAN AVE,Margate City,NJ,39.33762226,-74.50254693,RES1,3001,,17,NE,1952,1952,3102,2,1,1716.808757,1716.808757,3505,NO,31.32,45.59,3,6.92,6106,113.314043,123.154301,132.856761,139.406583,I,Above,Hip,0,5701,,38.45727478,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19918,NJBF000060134,217 N CLERMONT AVE,Margate City,NJ,39.33545965,-74.49920705,RES1,3001,,17,NE,1949,1949,3103,1,1,1579.298436,1579.298436,3505,NO,17,25.39,3,0.54,6106,113.41794,123.23778,132.942799,139.505885,I,Above,Hip,0,5701,,21.19517764,0,0,,,,1,1,,0.03,nav,1,1949,1,, 19919,NJBF000054116,9704 MONMOUTH AVE,Margate City,NJ,39.32244064,-74.51972684,RES1,3001,,NaN,NE,1989,0,3102,2,1,3794.727299,3794.727299,3507,NO,40.38,53.99,1,2.25,6106,113.156824,123.023899,132.710946,139.262306,I,Above,Flat,0,5701,,47.18548793,0,0,,,,1,1,,0.03,nav,1,1989,2,, 19920,NJBF000053852,9713 WINCHESTER AVE,Margate City,NJ,39.32151786,-74.51919656,RES1,3001,,20,NE,2001,2001,3102,2,1,1283.748589,1283.748589,3507,NO,21.86,33.34,1,-0.5,6106,113.18233,123.043879,132.730746,139.284767,I,Above,Gable,0,5701,,27.60072252,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 19921,NJBF000061689,17 BAYSIDE COURT,Margate City,NJ,39.33807865,-74.51033494,RES1,3001,,19,NE,1990,1990,3102,2,1,1394.598912,1394.598912,3505,NO,30.12,44.3,3,-2.21,6106,113.135281,123.011223,132.707866,139.241847,I,Above,Hip,0,5701,,37.20858957,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 19922,NJBF000053672,26 S ADAMS AVE,Margate City,NJ,39.3208433,-74.51401172,RES1,3001,,22,NE,1957,2005,3102,2,1,1557.714648,1557.714648,3507,NO,24.32,37.3,1,1.84,6106,113.305264,123.142727,132.832226,139.398135,I,Above,Hip,0,5701,,30.81107753,0,0,,,,1,1,,0.03,nav,1,1957,2,, 19923,NJBF000058045,22 S ANDOVER AVE,Margate City,NJ,39.331611,-74.49246,RES1,3001,,20,NE,2011,2011,3102,3,1,1372.577604,1372.577604,3505,NO,56.05,66.43,3,-0.45,6106,113.620661,123.400729,133.11103,139.697822,I,Above,Flat,0,5701,,61.24322131,0,0,,,,1,1,,0.03,nav,1,2011,3,, 19924,NJBF000057424,107 S BARCLAY AVE,Margate City,NJ,39.33054764,-74.4926354,RES1,3001,,23,NE,2016,2016,3102,3,1,1590.524718,1590.524718,3505,NO,44.18,52.18,3,4.31,6106,113.631811,123.409578,133.119429,139.708982,I,Above,Flat,0,5701,,48.18092442,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 19925,NJBF000053637,9309 ATLANTIC AVE,Margate City,NJ,39.32071187,-74.51299583,RES3C,3001,,21,ME,1998,1998,3301,1,1,2682.967354,2682.967354,3505,NO,23.32,36.4,3,5.77,6106,113.329345,123.162093,132.852155,139.420259,I,Above,Flat,0,NaN,,29.85861269,0,0,,,,1,1,,0.03,nav,1,1998,1,, 19926,NJBF000059985,205 N CLERMONT AVE,Margate City,NJ,39.33519004,-74.4989499,RES1,3001,,17,NE,1955,1955,3103,2,1,1308.695008,1308.695008,3505,NO,43.61,53.19,3,8.73,6106,113.427383,123.245369,132.95057,139.515022,I,Above,Flat,0,5701,,48.39801528,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 19927,NJBF000056578,211 N QUINCY AVE,Margate City,NJ,39.32878751,-74.51067746,RES1,3001,,20,NE,1951,1951,3102,2,1,1118.12315,1118.12315,3505,NO,32.69,40.94,3,1.84,6106,113.260342,123.110298,132.805205,139.364406,I,Above,Hip,0,5701,,36.81510107,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 19928,NJBF000058505,3 S ARGYLE AVE,Margate City,NJ,39.33243014,-74.49342781,RES1,3001,,19,NE,1920,1920,3102,2,1,1855.185548,1855.185548,3505,NO,40.81,54.03,3,3.82,6106,113.587827,123.374345,133.083945,139.666609,I,Above,Hip,0,5701,,47.41919546,0,0,,,,1,1,,0.03,nav,1,1920,2,, 19929,NJBF000053750,12 S ADAMS AVE,Margate City,NJ,39.32113235,-74.51462039,RES1,3001,,21,NE,1940,1940,3102,2,1,805.9582443,805.9582443,3507,NO,37.32,43.56,1,2.29,6106,113.287678,123.128706,132.817986,139.382273,I,Above,Gable,0,5701,,40.43995173,0,0,,,,1,1,,0.03,nav,1,1940,2,, 19930,NJBF000056994,426 N THURLOW AVE,Margate City,NJ,39.329704,-74.51485533,RES1,3001,,21,NE,2014,2014,3102,2,1,1142.259145,1142.259145,3505,NO,33.98,42.92,3,6.69,6106,113.155241,123.026188,132.718705,139.266729,I,Above,Gable,0,5701,,38.45207496,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 19931,NJBF000058437,16 S FREDERICKSBURG AVE,Margate City,NJ,39.33231258,-74.49235366,RES1,3001,,19,NE,1925,1925,3102,2,1,1709.508159,1709.508159,3505,NO,32.99,40.62,3,2.56,6106,113.613126,123.394725,133.1053,139.690022,I,Above,Hip,0,5701,,36.80385582,0,0,,,,1,1,,0.03,nav,1,1925,2,, 19932,NJBF000053884,5 S ADAMS AVE,Margate City,NJ,39.32164154,-74.51417388,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2616.906584,2616.906584,3505,NO,16.72,30.71,3,1.7,6106,113.289705,123.130656,132.820469,139.384957,I,Above,Flat,0,NaN,,23.71394635,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 19933,NJBF000054227,,Margate City,NJ,39.3227997,-74.51866235,RES3A,3001,,NaN,NE,1969,0,3301,1,1,3088.308074,3088.308074,3501,NO,11.11,20.57,7,0.05,6106,113.174563,123.038446,132.726235,139.279367,I,Above,Hip,0,5701,,15.83921413,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19934,NJBF000055058,9002 WINCHESTER AVE,Margate City,NJ,39.32501375,-74.51227525,RES1,3001,,19,NE,1951,1951,3102,2,1,1724.422857,1724.422857,3505,NO,30.13,44.57,3,0.95,6106,113.28079,123.125274,132.817811,139.380978,I,Above,Gable,0,5701,,37.34913234,0,0,,,,1,1,,0.03,nav,1,1951,2,, 19935,NJBF000057600,102 S ARGYLE AVE,Margate City,NJ,39.33086261,-74.49263996,RES1,3001,,22,NE,2014,2014,3102,3,1,1579.600339,1579.600339,3505,NO,59.18,72.79,3,3.28,6106,113.627248,123.405944,133.115879,139.704564,I,Above,Gable,0,5701,,65.98731257,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 19936,NJBF000061097,417 N GLADSTONE AVE,Margate City,NJ,39.3370485,-74.5055555,RES1,3001,,NaN,NE,1969,0,3101,1,1,514.624672,514.624672,3505,NO,20.84,34.04,3,7.85,6106,113.255451,123.107415,132.807475,139.354045,I,Above,Flat,0,5701,,27.43623379,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19937,NJBF000058808,213 N HAVERFORD AVE,Margate City,NJ,39.332971,-74.5038865,RES1,3001,,18,NE,2014,2014,3102,2,1,1289.71692,1289.71692,3505,NO,35.81,48.12,3,7.74,6106,113.349669,123.182874,132.883685,139.446289,I,Above,Gable,0,5701,,41.96577782,0,0,,,,1,1,,0.03,nav,1,2014,2,, 19938,NJBF000053990,9300 VENTNOR AVE,Margate City,NJ,39.32203508,-74.5139573,COM1,3001,,NaN,ME,2002,2002,3401,1,1,4445.240463,4445.240463,3507,NO,18.4,28.82,1,1.05,6106,113.288525,123.129937,132.820079,139.384453,I,Above,Gable,0,NaN,,23.61285737,0,0,,,,1,1,,0.03,nav,1,2002,1,, 19939,NJBF000054034,125 N COOLIDGE AVE,Margate City,NJ,39.3221694,-74.52010121,RES1,3001,,39,NE,2001,2001,3102,2,1,1913.094835,1913.094835,3507,NO,28.88,41.62,1,2.26,6106,113.152815,123.020482,132.707199,139.258173,I,Above,Hip,0,5701,,35.24882241,0,0,,,,1,1,,0.03,nav,1,2001,2,, 19940,NJBF000061165,214 N ARGYLE AVE,Margate City,NJ,39.33717202,-74.49771994,RES1,3001,,17,NE,1950,1950,3103,1,1,971.3900777,971.3900777,3505,NO,23.7,32.54,3,5.25,6106,113.42704,123.244991,132.951491,139.510516,I,Above,Gable,0,5701,,28.11893275,0,0,,,,1,1,,0.03,nav,1,1950,1,, 19941,NJBF000053942,115 N COOLIDGE AVE,Margate City,NJ,39.32187161,-74.51978126,RES1,3001,,17,NE,1925,1925,3109,2,1,1898.067052,1898.067052,3505,NO,36.77,45.44,3,8.72,6106,113.164272,123.029534,132.716271,139.268442,I,Above,Gable,0,5701,,41.10556741,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 19942,NJBF000053968,128 N COOLIDGE AVE,Margate City,NJ,39.32195283,-74.52034694,RES1,3001,,20,NE,2002,2002,3102,2,1,1046.099127,1046.099127,3507,NO,32.34,41.51,1,-0.93,6106,113.150747,123.018666,132.705148,139.255925,I,Above,Gable,0,5701,,36.92819282,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 19943,NJBF000056619,123 N OSBORNE AVE,Margate City,NJ,39.32887947,-74.50884521,RES1,3001,,17,NE,1950,1950,3102,2,1,1982.402626,1982.402626,3505,NO,25.34,35.66,3,3.91,6106,113.29925,123.141589,132.837768,139.400626,I,Above,Flat,0,5701,,30.50002055,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19944,NJBF000053907,111 N COOLIDGE AVE,Margate City,NJ,39.32172474,-74.5196537,RES1,3001,,17,NE,1906,1906,3102,3,2,1999.238609,1999.238609,3507,NO,45.46,59.39,1,1.58,6106,113.169262,123.033464,132.720193,139.272881,I,Above,Gable,0,5701,,52.42271973,0,0,,,,1,1,,0.03,nav,1,1906,3,, 19945,NJBF000060491,7501 MONMOUTH AVE,Margate City,NJ,39.3360605,-74.4969765,RES1,3001,,17,NE,1950,1950,3103,2,1,1024.014411,1024.014411,3505,NO,30.08,37.96,3,0.96,6106,113.458842,123.270618,132.977652,139.542023,I,Above,Gable,0,5701,,34.01934264,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19946,NJBF000054104,9712 MONMOUTH AVE,Margate City,NJ,39.32238636,-74.5200471,RES1,3001,,17,NE,1880,1880,3109,2,1,756.3781279,756.3781279,3505,NO,35.75,43.18,3,8.56,6106,113.1507,123.018919,132.705771,139.256507,I,Above,Gable,0,5701,,39.46257296,0,0,,,,1,1,,0.03,nav,1,1880,2,, 19947,NJBF000057195,101 S CLERMONT AVE,Margate City,NJ,39.33013084,-74.49450408,RES1,3001,,21,NE,2011,2011,3102,3,1,1502.25251,1502.25251,3505,NO,41.63,56.1,3,-0.15,6106,113.596605,123.381124,133.089141,139.676574,I,Above,Flat,0,5701,,48.86101687,0,0,,,,1,1,,0.03,nav,1,2011,3,, 19948,NJBF000061585,429 N GLADSTONE AVE,Margate City,NJ,39.33790428,-74.50641476,RES1,3001,,17,NE,1988,1988,3101,2,1,2585.969434,2585.969434,3505,NO,32.63,38.92,3,5.69,6106,113.224515,123.082585,132.782044,139.324089,I,Above,Gable,0,5701,,35.77298443,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 19949,NJBF000061177,405 N CLERMONT AVE,Margate City,NJ,39.33719254,-74.50085566,RES1,3001,,18,NE,1978,1978,3102,2,1,1673.188896,1673.188896,3505,NO,40.29,48.63,3,1.35,6106,113.357399,123.189099,132.892916,139.447082,I,Above,Hip,0,5701,,44.45888572,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 19950,NJBF000058421,202 N HAVERFORD AVE,Margate City,NJ,39.33227722,-74.50374745,RES1,3001,,18,NE,1952,1952,3102,2,1,1362.202275,1362.202275,3505,NO,30.52,41.58,3,-0.28,6106,113.362589,123.193169,132.89395,139.458776,I,Above,Hip,0,5701,,36.05016432,0,0,,,,1,1,,0.03,nav,1,1952,2,, 19951,NJBF000054381,24A N WASHINGTON AVE,Margate City,NJ,39.32323834,-74.51502143,RES3C,3004,,39,ME,1984,1984,3301,3,1,972.9342958,972.9342958,3505,NO,40.59,48.26,3,8.05,6106,113.247292,123.097368,132.787439,139.347756,I,Above,Hip,0,5701,,44.42540304,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 19952,NJBF000054419,28A N WASHINGTON AVE,Margate City,NJ,39.3233487,-74.51512573,RES3C,3004,,39,ME,1984,1984,3301,3,1,913.7490845,913.7490845,3505,NO,47.31,53.78,3,2.61,6106,113.24334,123.094244,132.784302,139.344217,I,Above,Gable,0,5701,,50.54224925,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 19953,NJBF000053929,,Margate City,NJ,39.32181497,-74.5191324,RES1,3001,,NaN,NE,1969,0,3102,2,1,1178.201746,1178.201746,3507,NO,28.27,37.08,1,-0.78,6106,113.179239,123.041582,132.728635,139.282332,I,Above,Gable,0,5701,,32.67759439,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19954,NJBF000055070,8604 ATLANTIC AVE,Margate City,NJ,39.32503999,-74.50490886,RES1,3001,,19,NE,1925,1925,3103,3,1,1774.603834,1774.603834,3505,NO,53.28,64.81,3,7.21,6106,113.44161,123.254822,132.952478,139.530333,I,Above,Gable,0,5701,,59.04328339,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 19955,NJBF000053613,9604 VENTNOR AVE,Margate City,NJ,39.3206053,-74.51654695,RES1,3001,,17,NE,1920,1920,3102,2,1,1171.463996,1171.463996,3507,NO,36.32,50.71,1,0.66,6106,113.253745,123.100957,132.78882,139.34986,I,Above,Gable,0,5701,,43.51629511,0,0,,,,1,1,,0.03,nav,1,1920,2,, 19956,NJBF000061486,427 N GLADSTONE AVE,Margate City,NJ,39.33773243,-74.50623049,RES1,3001,,18,NE,1989,1989,3101,3,1,2163.347525,2163.347525,3505,NO,55.47,64.63,3,-2.64,6106,113.231001,123.087792,132.787382,139.330363,I,Above,Gable,0,5701,,60.05176458,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 19957,NJBF000053545,9220 ATLANTIC AVE,Margate City,NJ,39.32034007,-74.51157318,RES3F,3002,,21,E,1987,1987,3305,8,1,14121.51208,14121.51208,3507,NO,104.76,115.75,1,0.16,6106,113.365914,123.1914,132.882173,139.453496,I,Above,Flat,0,NaN,,110.2528801,0,0,,,,2,2,,0.03,nav,1,1987,8,, 19958,NJBF000055591,9205 AMHERST AVE,Margate City,NJ,39.32650878,-74.51653461,RES1,3001,,18,NE,2000,2000,3102,2,1,2537.341458,2537.341458,3505,NO,29.04,37.94,3,7.89,6106,113.165462,123.033143,132.72367,139.274801,I,Above,Flat,0,5701,,33.49238081,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 19959,NJBF000054655,9007 VENTNOR AVE,Margate City,NJ,39.3239695,-74.5116615,RES1,3001,,19,NE,1985,1985,3102,2,1,897.3670246,897.3670246,3505,NO,33.66,48.31,3,2.9,6106,113.309697,123.148058,132.840548,139.406717,I,Above,Flat,0,5701,,40.98594606,0,0,,,,1,1,,0.03,nav,1,1985,2,, 19960,NJBF000061132,210 N FREDERICKSBURG AVE,Margate City,NJ,39.33711861,-74.49653082,RES1,3001,,17,NE,1966,1966,3103,2,1,1791.597342,1791.597342,3505,NO,30.41,43.5,3,0.23,6106,113.454058,123.266699,132.97425,139.53514,I,Above,Gable,0,5701,,36.9534183,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 19961,NJBF000053538,9709 VENTNOR AVE,Margate City,NJ,39.320316,-74.5179525,RES1,3001,,NaN,NE,1957,0,3101,1,1,1020.833449,1020.833449,3505,NO,18.52,23.66,3,0.32,6106,113.227597,123.079629,132.766537,139.325032,I,Above,Gable,0,5701,,21.09153611,0,0,,,,1,1,,0.03,nav,1,1957,1,, 19962,NJBF000053508,9711 VENTNOR AVE,Margate City,NJ,39.3202025,-74.518221,RES3C,3001,,21,ME,1964,1964,3301,2,1,2260.106744,2260.106744,3505,NO,25.13,31.57,3,2.79,6106,113.223498,123.076237,132.762934,139.321021,I,Above,Flat,0,NaN,,28.35242299,0,0,,,,1,1,,0.03,nav,1,1964,2,, 19963,NJBF000053579,9711 VENTNOR AVE,Margate City,NJ,39.32047175,-74.5184057,RES3C,3001,,21,ME,1964,1964,3301,1,1,2390.944951,2390.944951,3505,NO,20.96,31.23,3,4.62,6106,113.215392,123.069873,132.756616,139.313924,I,Above,Gable,0,NaN,,26.09172767,0,0,,,,1,1,,0.03,nav,1,1964,1,, 19964,NJBF000053593,9711 VENTNOR AVE,Margate City,NJ,39.32053694,-74.51818906,RES3C,3001,,21,ME,1964,1964,3301,1,1,2383.519628,2383.519628,3505,NO,24.17,33.82,3,7.3,6106,113.219115,123.072927,132.759825,139.317502,I,Above,Gable,0,NaN,,28.99800287,0,0,,,,1,1,,0.03,nav,1,1964,1,, 19965,NJBF000054093,9714 MONMOUTH AVE,Margate City,NJ,39.3223634,-74.52011214,RES1,3001,,18,NE,1900,1900,3102,2,1,775.7506126,775.7506126,3507,NO,28.48,42.57,1,-0.07,6106,113.149636,123.018045,132.704852,139.255479,I,Above,Hip,0,5701,,35.52493819,0,0,,,,1,1,,0.03,nav,1,1900,2,, 19966,NJBF000055729,300 N HARDING AVE,Margate City,NJ,39.32683181,-74.51561591,RES1,3001,,47,NE,1950,1950,3102,2,2,1080.285802,1080.285802,3505,NO,38.22,43.75,3,7.4,6106,113.180783,123.045613,132.736789,139.289328,I,Above,Gable,0,5701,,40.98352611,0,0,,,,1,1,,0.03,nav,1,1950,2,, 19967,NJBF000054828,2 N VENDOME AVE,Margate City,NJ,39.32441692,-74.51170855,RES1,3001,,22,NE,2015,2015,3102,2,1,1456.987649,1456.987649,3505,NO,44.25,56.77,3,7.97,6106,113.302017,123.142088,132.834741,139.400092,I,Above,Gable,0,5701,,50.5123713,0,0,,,,1,1,,0.03,nav,1,2015,2,, 19968,NJBF000055802,116 N SUMNER AVE,Margate City,NJ,39.3270109,-74.51138175,RES1,3001,,17,NE,1935,1935,3102,2,1,1020.433482,1020.433482,3505,NO,32.62,43.26,3,6.05,6106,113.270873,123.118144,132.812012,139.373392,I,Above,Gable,0,5701,,37.93898776,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 19969,NJBF000061822,7812 MARSHALL AVE,Margate City,NJ,39.33831635,-74.50572518,RES1,3001,,18,NE,1969,1969,3102,2,1,1689.493079,1689.493079,3505,NO,19.74,33.76,3,-2.15,6106,113.234074,123.09019,132.790187,139.332025,I,Above,Gable,0,5701,,26.75031984,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 19970,NJBF000058172,15 S ARGYLE AVE,Margate City,NJ,39.33182931,-74.49296897,RES1,3001,,20,NE,1988,1988,3102,2,1,1691.606557,1691.606557,3505,NO,33.6,42.34,3,4.11,6106,113.606386,123.389244,133.099126,139.684429,I,Above,Hip,0,5701,,37.97379968,0,0,,,,1,1,,0.03,nav,1,1988,2,, 19971,NJBF000053825,106 N COOLIDGE AVE,Margate City,NJ,39.32141679,-74.51984256,RES1,3001,,20,NE,2001,2001,3102,2,1,1507.118085,1507.118085,3507,NO,30.15,38.68,1,1.23,6106,113.169833,123.033715,132.720186,139.272945,I,Above,Hip,0,5701,,34.41515823,0,0,,,,1,1,,0.03,nav,1,2001,2,, 19972,NJBF000057554,103 S BARCLAY AVE,Margate City,NJ,39.33077329,-74.49285104,RES1,3001,,21,NE,1987,1987,3102,3,1,1311.914725,1311.914725,3505,NO,29.84,38.51,3,-2.17,6106,113.623877,123.403213,133.112927,139.701509,I,Above,Hip,0,5701,,34.17394901,0,0,,,,1,1,,0.03,nav,1,1987,3,, 19973,NJBF000059068,8103 AMHERST AVE,Margate City,NJ,39.333485,-74.504169,RES1,3001,,17,NE,1954,1954,3101,2,1,1243.982947,1243.982947,3505,NO,43.09,48.83,3,6.37,6106,113.336145,123.172065,132.872751,139.433315,I,Above,Gable,0,5701,,45.96140713,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 19974,NJBF000054021,132 N COOLIDGE AVE,Margate City,NJ,39.32213483,-74.52055514,RES1,3001,,NaN,NE,2008,2016,3102,2,1,2150.057835,2150.057835,3507,NO,24.56,34.6,1,-0.8,6106,113.143467,123.01291,132.699375,139.249386,I,Above,Flat,0,5701,,29.57905691,0,0,,,,1,1,,0.03,nav,1,2008,2,, 19975,NJBF000053698,25 S ADAMS AVE,Margate City,NJ,39.32092194,-74.51357799,RES3D,3001,,21,ME,1982,1982,3301,1,1,6036.300684,6036.300684,3505,NO,13.66,28.3,3,1.1,6106,113.313517,123.14944,132.83925,139.405925,I,Above,Gable,0,NaN,,20.98428936,0,0,,,,1,1,,0.03,nav,1,1982,1,, 19976,NJBF000053731,14 S ADAMS AVE,Margate City,NJ,39.32107443,-74.51457351,RES1,3001,,21,NE,1915,1915,3102,2,1,816.303868,816.303868,3507,NO,26.92,41.46,1,1.68,6106,113.289553,123.130184,132.819462,139.383922,I,Above,Gable,0,5701,,34.19073724,0,0,,,,1,1,,0.03,nav,1,1915,2,, 19977,NJBF000055112,108 S LANCASTER AVE,Margate City,NJ,39.32516733,-74.50339592,RES1,3001,,17,NE,1955,1955,3102,1,1,1707.636443,1707.636443,3505,NO,10.31,16.52,3,-2.44,6106,113.47289,123.280078,132.978934,139.559442,I,Above,Hip,0,5701,,13.41294617,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 19978,NJBF000053743,5 S JEFFERSON AVE,Margate City,NJ,39.32111868,-74.51508296,RES1,3001,,43,NE,1949,1949,3102,2,4,1637.965992,1637.965992,3507,NO,33.75,43.69,1,1.78,6106,113.277801,123.120722,132.809717,139.373073,I,Above,Flat,0,5701,,38.72116984,0,0,,,,1,1,,0.03,nav,1,1949,2,, 19979,NJBF000054710,21 N BENSON AVE,Margate City,NJ,39.32410533,-74.51326945,RES1,3001,,21,NE,1957,1957,3102,2,1,517.9617026,517.9617026,3505,NO,23.97,32.83,3,0.64,6106,113.272574,123.118211,132.809739,139.37235,I,Above,Flat,0,5701,,28.40122025,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 19980,NJBF000054816,5 N WILSON AVE,Margate City,NJ,39.32439806,-74.51200778,RES1,3001,,17,NE,1953,1953,3102,2,1,2186.609171,2186.609171,3505,NO,31.89,43.11,3,-2.64,6106,113.295765,123.137042,132.829494,139.394257,I,Above,Gable,0,5701,,37.50190247,0,0.2,,,,1,1,,0.03,nav,1,1953,2,, 19981,NJBF000060657,7407 MONMOUTH AVE,Margate City,NJ,39.33636333,-74.49644463,RES1,3001,,17,NE,1951,1951,3103,1,1,1233.524783,1233.524783,3505,NO,9.5,21.96,3,-2.31,6106,113.466409,123.276683,132.984228,139.548211,I,Above,Gable,0,5701,,15.73042797,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 19982,NJBF000058445,5 N CLARENDON AVE,Margate City,NJ,39.332333,-74.495558,RES1,3001,,17,NE,1930,1930,3102,2,1,1201.552635,1201.552635,3505,NO,35.18,47.44,3,3.86,6106,113.542265,123.337638,133.045277,139.624777,I,Above,Flat,0,5701,,41.31091473,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 19983,NJBF000054181,112 N MADISON AVE,Margate City,NJ,39.32264354,-74.51843592,RES1,3001,,45,NE,1957,1957,3102,2,2,1185.390663,1185.390663,3507,NO,24.99,39.79,1,-0.1,6106,113.181835,123.044216,132.732054,139.285944,I,Above,Gable,0,5701,,32.39055164,0,0,,,,1,1,,0.03,nav,1,1957,2,, 19984,NJBF000054147,110 N MADISON AVE,Margate City,NJ,39.32254983,-74.51833597,RES1,3001,,45,NE,1957,1957,3102,2,2,979.0781303,979.0781303,3507,NO,29.16,39.39,1,2.04,6106,113.18543,123.047058,132.734905,139.289169,I,Above,Hip,0,5701,,34.27570697,0,0,,,,1,1,,0.03,nav,1,1957,2,, 19985,NJBF000059618,8401 WELLINGTON AVE,Margate City,NJ,39.33455447,-74.51027987,RES1,3001,,17,NE,1979,1979,3102,2,1,2480.916887,2480.916887,3505,NO,45.02,50.08,3,6.37,6106,113.186125,123.051901,132.748306,139.293526,I,Above,Gable,0,5701,,47.54768205,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 19986,NJBF000060672,412 N EXETER AVE,Margate City,NJ,39.33638281,-74.5039005,RES1,3001,,19,NE,1987,1987,3102,2,1,1849.823657,1849.823657,3505,NO,27.84,37.39,3,4.64,6106,113.301325,123.144197,132.845481,139.397319,I,Above,Hip,0,5701,,32.6151366,0,0,,,,1,1,,0.03,nav,1,1987,2,, 19987,NJBF000054043,100 S VENDOME AVE,Margate City,NJ,39.32218934,-74.50961698,RES1,3001,,22,NE,2015,2015,3103,3,1,1962.697394,1962.697394,3505,NO,56.83,67.1,3,-1.35,6106,113.380843,123.204509,132.897532,139.470336,I,Above,Flat,0,5701,,61.96518515,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 19988,NJBF000054018,,Margate City,NJ,39.32212351,-74.51921519,RES1,3001,,NaN,NE,1969,0,3101,1,1,1089.835231,1089.835231,3505,NO,19.05,29.86,3,4.29,6106,113.172754,123.036551,132.723714,139.276732,I,Above,Hip,0,5701,,24.45756252,0,0,,,,1,1,,0.03,nav,1,1969,1,, 19989,NJBF000054780,102 S PEMBROKE AVE,Margate City,NJ,39.32428579,-74.50597521,RES1,3001,,21,NE,1935,1935,3103,3,1,1128.078557,1128.078557,3505,NO,46.8,59.38,3,7.17,6106,113.429353,123.244633,132.941184,139.518117,I,Above,Hip,0,5701,,53.08663431,0,1.1,,,,1,1,,0.03,nav,1,1935,3,, 19990,NJBF000054120,121 N MONROE AVE,Margate City,NJ,39.32245319,-74.51900051,RES1,3001,,45,NE,1954,1954,3102,2,2,1307.420896,1307.420896,3507,NO,36.8,46.76,1,1.05,6106,113.172429,123.036503,132.723943,139.276898,I,Above,Gable,0,5701,,41.77932427,0,0,,,,1,1,,0.03,nav,1,1954,2,, 19991,NJBF000053723,7 N MONROE AVE,Margate City,NJ,39.3210352,-74.51753798,RES1,3001,,20,NE,2000,2000,3102,2,1,2239.626925,2239.626925,3507,NO,36.5,45.62,1,2.52,6106,113.225697,123.078585,132.766112,139.32445,I,Above,Gable,0,5701,,41.06265619,0,0,,,,1,1,,0.03,nav,1,2000,2,, 19992,NJBF000054432,8 N BENSON AVE,Margate City,NJ,39.3233842,-74.51332157,RES1,3001,,18,NE,1942,1942,3102,2,1,1466.393828,1466.393828,3505,NO,26.79,37.99,3,-0.16,6106,113.282169,123.125568,132.816742,139.380401,I,Above,Gable,0,5701,,32.39123255,0,0,,,,1,1,,0.03,nav,1,1942,2,, 19993,NJBF000054619,5 N HARDING AVE,Margate City,NJ,39.32388378,-74.51231474,RES1,3001,,17,NE,1957,1957,3102,2,1,1435.163899,1435.163899,3505,NO,41.59,50.58,3,8.96,6106,113.296698,123.137539,132.829573,139.394531,I,Above,Hip,0,5701,,46.08612154,0,0,,,,1,1,,0.03,nav,1,1957,2,, 19994,NJBF000056187,8904 AMHERST AVE,Margate City,NJ,39.3279145,-74.51319083,RES1,3001,,17,NE,1950,1950,3102,2,1,1192.823122,1192.823122,3505,NO,35.81,47.74,3,5.85,6106,113.217961,123.075943,132.768957,139.324616,I,Above,Gable,0,5701,,41.77455029,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 19995,NJBF000053610,9313 ATLANTIC AVE,Margate City,NJ,39.32059328,-74.5130517,RES1,3001,,17,NE,1953,1953,3102,1,1,705.8158736,705.8158736,3507,NO,13.95,20.07,1,1.07,6106,113.329919,123.162483,132.852446,139.42059,I,Above,Flat,0,5701,,17.01109732,0,0,,,,1,1,,0.03,nav,1,1953,1,, 19996,NJBF000054657,17 N BENSON AVE,Margate City,NJ,39.32398326,-74.51335736,RES1,3001,,17,NE,1948,1948,3102,2,1,914.5101094,914.5101094,3505,NO,32.48,46.64,3,3.97,6106,113.27247,123.118064,132.809484,139.372111,I,Above,Flat,0,5701,,39.5597132,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 19997,NJBF000057356,425A N RUMSON AVE,Margate City,NJ,39.3304215,-74.5131475,RES1,3001,,19,NE,1983,1983,3102,2,1,1804.135939,1804.135939,3505,NO,29.93,44.39,3,3.76,6106,113.1823,123.048116,132.741867,139.291978,I,Above,Gable,0,5701,,37.15999112,0,0,,,,1,1,,0.03,nav,1,1983,2,, 19998,NJBF000054563,,Margate City,NJ,39.32359675,-74.51960605,RES3B,3001,,NaN,ME,1969,0,3301,2,1,5702.127687,5702.127687,3505,NO,22.35,36.93,3,-1.65,6106,113.141994,123.012668,132.700321,139.249975,I,Above,Flat,0,NaN,,29.63933863,0,0,,,,1,1,,0.03,nav,1,1969,2,, 19999,NJBF000054519,22 N DECATUR AVE,Margate City,NJ,39.32361205,-74.51416937,RES1,3001,,27,NE,1950,1950,3102,1,1,1758.20272,1758.20272,3505,NO,17.49,27,3,4.85,6106,113.260281,123.108046,132.798801,139.36032,I,Above,Gable,0,5701,,22.24275088,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 20000,NJBF000053874,,Margate City,NJ,39.32159546,-74.51889509,RES1,3001,,NaN,NE,1925,0,3102,2,1,3391.006131,3391.006131,3507,NO,39.51,45.03,1,1.21,6106,113.187723,123.048287,132.735356,139.289919,I,Above,Flat,0,5701,,42.26791899,0,0,,,,1,1,,0.03,nav,1,1925,2,, 20001,NJBF000061943,427 N CLERMONT AVE,Margate City,NJ,39.33852256,-74.50212926,RES1,3001,,17,NE,1960,1960,3102,2,1,1715.078762,1715.078762,3505,NO,32.97,46.48,3,6.39,6106,113.310842,123.151628,132.854475,139.401636,I,Above,Hip,0,5701,,39.72513846,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20002,NJBF000057425,352 N RUMSON AVE,Margate City,NJ,39.33055124,-74.51383383,RES1,3001,,21,NE,2000,2000,3102,3,1,2003.720919,2003.720919,3505,NO,52.49,66.1,3,6.27,6106,113.165332,123.034538,132.727893,139.276179,I,Above,Hip,0,5701,,59.29753246,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 20003,NJBF000057260,8501 MONMOUTH AVE,Margate City,NJ,39.3302495,-74.50703871,RES1,3001,,17,NE,1945,1945,3102,2,1,2007.955355,2007.955355,3505,NO,31.3,41.27,3,6.03,6106,113.319116,123.157903,132.855742,139.419201,I,Above,Gable,0,5701,,36.28647974,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20004,NJBF000063382,610 N FREDERICKSBURG AVE,Margate City,NJ,39.34156322,-74.50129047,RES3F,3003,,NaN,E,1969,0,3303,3,1,17031.77163,17031.77163,3505,NO,48.46,58.94,3,-2.14,6106,113.287859,123.132588,132.836133,139.372454,I,Above,Flat,0,NaN,,53.70119736,0,0,,,,1,1,,0.03,nav,1,1969,3,, 20005,NJBF000055937,118 N RUMSON AVE,Margate City,NJ,39.32733444,-74.51080094,RES1,3001,,17,NE,1964,1964,3102,2,1,1768.256312,1768.256312,3505,NO,35.27,42.88,3,4.88,6106,113.278869,123.124696,132.819057,139.38103,I,Above,Gable,0,5701,,39.07456238,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 20006,NJBF000054855,9103 JEFFERSON CT,Margate City,NJ,39.32448507,-74.51273129,RES1,3001,,17,NE,1940,1940,3102,2,1,931.1494257,931.1494257,3505,NO,31.46,39.86,3,8.59,6106,113.278673,123.123315,132.815343,139.378453,I,Above,Gable,0,5701,,35.65837626,0,0,,,,1,1,,0.03,nav,1,1940,2,, 20007,NJBF000054658,112 N WASHINGTON AVE,Margate City,NJ,39.3239842,-74.5157367,RES1,3001,,45,NE,1956,1956,3102,2,2,1309.564097,1309.564097,3507,NO,27.74,33.95,1,2.23,6106,113.220509,123.07619,132.766171,139.323719,I,Above,Hip,0,5701,,30.8445942,0,0,,,,1,1,,0.03,nav,1,1956,2,, 20008,NJBF000057983,21 S ARGYLE AVE,Margate City,NJ,39.33150224,-74.49270664,RES1,3001,,19,NE,1925,1925,3102,2,1,1645.20339,1645.20339,3505,NO,32.55,41.64,3,5.59,6106,113.616759,123.39757,133.107612,139.694336,I,Above,Flat,0,5701,,37.09589298,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20009,NJBF000059620,218 N ESSEX AVE,Margate City,NJ,39.3345593,-74.50103683,RES1,3001,,17,NE,1966,1966,3102,2,1,753.2657668,753.2657668,3505,NO,36.08,41.8,3,5.67,6106,113.390132,123.21545,132.918809,139.481824,I,Above,Gable,0,5701,,38.94321848,0,0,,,,1,1,,0.03,nav,1,1966,2,, 20010,NJBF000054286,9606 MONMOUTH AVE,Margate City,NJ,39.322962,-74.518819,RES1,3001,,47,NE,1972,1972,3102,2,2,2196.965754,2196.965754,3507,NO,38.22,44.99,1,-0.7,6106,113.168702,123.033818,132.721599,139.274112,I,Above,Hip,0,5701,,41.60495464,0,0,,,,1,1,,0.03,nav,1,1972,2,, 20011,NJBF000053626,23 S JEFFERSON AVE,Margate City,NJ,39.32066235,-74.51458556,RES1,3001,,21,NE,2004,2004,3102,2,1,2842.102117,2842.102117,3507,NO,23.6,36.46,1,-0.41,6106,113.29551,123.134734,132.823787,139.388777,I,Above,Gable,0,5701,,30.0285479,0,0,,,,1,1,,0.03,nav,1,2004,2,, 20012,NJBF000054587,3 N HARDING AVE,Margate City,NJ,39.32379615,-74.51222444,RES1,3001,,18,NE,1957,1957,3102,3,1,1216.023431,1216.023431,3505,NO,53.17,59.62,3,-1.26,6106,113.299996,123.140152,132.832205,139.397491,I,Above,Hip,0,5701,,56.39464073,0,1.1,,,,1,1,,0.03,nav,1,1957,3,, 20013,NJBF000054575,,Margate City,NJ,39.32376671,-74.51619032,RES1,3001,,NaN,NE,1969,0,3102,2,1,2214.964345,2214.964345,3507,NO,37.19,42.86,1,0.52,6106,113.213876,123.070724,132.760345,139.317279,I,Above,Flat,0,5701,,40.02823075,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20014,NJBF000059431,317 N HUNTINGTON AVE,Margate City,NJ,39.33423326,-74.50576344,RES1,3001,,18,NE,1954,1954,3101,2,1,2107.651273,2107.651273,3505,NO,23.59,37.91,3,1.38,6110,113.290389,123.135416,132.835009,139.390263,I,Above,Flat,0,5701,,30.74805837,0,0,,,,1,1,,0.35,nav,1,1954,2,, 20015,NJBF000053772,21 S ADAMS AVE,Margate City,NJ,39.32122282,-74.51387141,RES3C,3001,,20,ME,1993,1993,3301,1,1,3751.894162,3751.894162,3505,NO,26.38,40.53,3,8.28,6106,113.302607,123.140816,132.830601,139.396286,I,Above,Flat,0,NaN,,33.45432995,0,0,,,,1,1,,0.03,nav,1,1993,1,, 20016,NJBF000056662,215 N QUINCY AVE,Margate City,NJ,39.32899643,-74.51087756,RES1,3001,,17,NE,1951,1951,3101,1,1,1263.478415,1263.478415,3505,NO,16.33,27.76,3,4.07,6106,113.252898,123.104382,132.799217,139.357533,I,Above,Gable,0,5701,,22.04535147,0,0,,,,1,1,,0.03,nav,1,1951,1,, 20017,NJBF000057766,436 N PEMBROKE AVE,Margate City,NJ,39.33112946,-74.51255276,RES1,3001,,17,NE,1951,1951,3102,1,1,2129.800166,2129.800166,3505,NO,22.52,34.32,3,8.67,6106,113.185122,123.05056,132.744857,139.294535,I,Above,Gable,0,5701,,28.42167987,0,0,,,,1,1,,0.03,nav,1,1951,1,, 20018,NJBF000054199,9505 WINCHESTER AVE,Margate City,NJ,39.32270919,-74.51731174,RES1,3001,,17,NE,1910,1910,3102,2,2,1291.19582,1291.19582,3507,NO,35.94,41.98,1,-0.11,6106,113.20532,123.063206,132.751699,139.307943,I,Above,Flat,0,5701,,38.95839922,0,0,,,,1,1,,0.03,nav,1,1910,2,, 20019,NJBF000053726,9 S JEFFERSON AVE,Margate City,NJ,39.32104864,-74.51491372,RES1,3001,,17,NE,1930,1930,3102,2,2,898.2135909,898.2135909,3507,NO,22.35,32.03,1,0.04,6106,113.282534,123.1245,132.81356,139.377359,I,Above,Hip,0,5701,,27.18949065,0,0,,,,1,1,,0.03,nav,1,1930,2,, 20020,NJBF000054107,106 N MADISON AVE,Margate City,NJ,39.32239353,-74.51826419,RES3A,3001,,20,NE,2001,2001,3301,1,1,4464.32953,4464.32953,3501,NO,9.76,15.7,7,-3.61,6106,113.189352,123.050124,132.737936,139.292611,I,Above,Gable,0,5701,,12.73058677,0,0,,,,1,1,,0.03,nav,1,2001,1,, 20021,NJBF000058762,,Margate City,NJ,39.33288483,-74.49572534,RES1,3001,,NaN,NE,1969,0,3102,2,1,1064.998228,1064.998228,3505,NO,18.66,26.61,3,-2.81,6106,113.53082,123.328469,133.036081,139.61357,I,Above,Gable,0,5701,,22.63704277,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20022,NJBF000055018,14 N VENDOME AVE,Margate City,NJ,39.32490816,-74.51217469,RES1,3001,,17,NE,1942,1942,3101,1,1,1586.433687,1586.433687,3505,NO,14.94,21.45,3,-1.67,6106,113.284548,123.12825,132.820808,139.384367,I,Above,Hip,0,5701,,18.19358417,0,1.1,,,,1,1,,0.03,nav,1,1942,1,, 20023,NJBF000056780,114 N LANCASTER AVE,Margate City,NJ,39.32924484,-74.50700059,RES1,3001,,17,NE,1955,1955,3102,2,1,1035.028935,1035.028935,3505,NO,28.19,36.02,3,5.06,6106,113.334461,123.169987,132.867577,139.43343,I,Above,Gable,0,5701,,32.10458906,0,0,,,,1,1,,0.03,nav,1,1955,2,, 20024,NJBF000055709,18 S KNIGHT AVE,Margate City,NJ,39.32679339,-74.50321168,RES1,3001,,21,NE,2014,2014,3102,3,1,1309.619427,1309.619427,3505,NO,43.6,56.39,3,5.97,6106,113.453217,123.264803,132.964428,139.542679,I,Above,Gable,0,5701,,49.99389333,0,0,,,,1,1,,0.03,nav,1,2014,3,, 20025,NJBF000057639,430 N QUINCY AVE,Margate City,NJ,39.33092541,-74.51328969,RES1,3001,,20,NE,2007,2007,3102,2,1,2639.784033,2639.784033,3505,NO,41.89,53.64,3,4.64,6106,113.171865,123.039877,132.73366,139.282231,I,Above,Hip,0,5701,,47.76544501,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 20026,NJBF000054360,9514 MONMOUTH AVE,Margate City,NJ,39.3231781,-74.51826854,RES1,3001,,16,NE,1930,1930,3102,2,1,739.3715802,739.3715802,3507,NO,27.4,34.2,1,-0.73,6106,113.177419,123.040983,132.729164,139.282533,I,Above,Gable,0,5701,,30.80206188,0,0,,,,1,1,,0.03,nav,1,1930,2,, 20027,NJBF000060020,224 N DELAVAN AVE,Margate City,NJ,39.33525026,-74.50024012,RES1,3001,,17,NE,1950,1950,3102,2,1,1283.76246,1283.76246,3505,NO,30.1,40.37,3,-0.98,6106,113.398055,123.221816,132.925935,139.488026,I,Above,Gable,0,5701,,35.23400947,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20028,NJBF000054801,9100 JEFFERSON CT,Margate City,NJ,39.32434758,-74.51243267,RES1,3001,,17,NE,1940,1940,3102,2,1,1315.692357,1315.692357,3505,NO,26.92,38.11,3,5.38,6106,113.287221,123.130134,132.822293,139.386254,I,Above,Gable,0,5701,,32.51499082,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20029,NJBF000053973,24-26 S BENSON AVE,Margate City,NJ,39.32197219,-74.51196443,RES1,3001,,45,NE,1948,1948,3102,2,2,1362.968409,1362.968409,3505,NO,31.57,38.96,3,5.87,6106,113.3329,123.165708,132.857073,139.425568,I,Above,Hip,0,5701,,35.26238863,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20030,NJBF000054784,14 N HARDING AVE,Margate City,NJ,39.324303,-74.51321,RES1,3001,,17,NE,1955,1955,3102,2,1,1868.476272,1868.476272,3505,NO,36.89,51.31,3,6.06,6106,113.270915,123.116975,132.808624,139.371032,I,Above,Gable,0,5701,,44.1005351,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 20031,NJBF000054192,102 N JEFFERSON AVE,Margate City,NJ,39.32268155,-74.51708249,RES1,3001,,45,NE,1950,1950,3109,2,2,1759.256312,1759.256312,3505,NO,30.7,35.79,3,4.48,6106,113.210735,123.067558,132.756168,139.312954,I,Above,Hip,0,5701,,33.24639813,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20032,NJBF000057517,312 N NASSAU AVE,Margate City,NJ,39.33070584,-74.51025523,RES1,3001,,20,NE,1971,1971,3102,2,1,1628.017722,1628.017722,3505,NO,40.28,47.07,3,3.46,6106,113.241791,123.095926,132.791632,139.347295,I,Above,Hip,0,5701,,43.67697832,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 20033,NJBF000053970,110 S UNION AVE,Margate City,NJ,39.32196064,-74.50849028,RES1,3001,,20,NE,2010,2010,3103,3,1,761.8495968,761.8495968,3505,NO,59.71,65.17,3,8.61,6106,113.408832,123.226971,132.920655,139.49589,I,Above,Flat,0,5701,,62.44237119,0,0,,,,1,1,,0.03,nav,1,2010,3,, 20034,NJBF000061868,7810 MARSHALL AVE,Margate City,NJ,39.33839769,-74.50554137,RES1,3001,,20,NE,1969,2017,3102,2,1,1621.607976,1621.607976,3505,NO,30.64,42.02,3,8.63,6106,113.237013,123.092532,132.792672,139.334543,I,Above,Gable,0,5701,,36.3303762,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20035,NJBF000054882,9001 VENTNOR AVE,Margate City,NJ,39.32455317,-74.51092623,RES1,3001,10,19,NE,1905,1905,3102,3,1,3056.912046,3056.912046,3505,NO,59.12,70.18,3,8.62,6106,113.317116,123.154317,132.847538,139.414279,I,Above,Hip,0,5701,,64.65090909,0,1.1,,,,1,1,,0.03,nav,1,1905,3,, 20036,NJBF000054907,9001 VENTNOR AVE,Margate City,NJ,39.3246185,-74.5110905,RES1,3001,10,19,NE,1905,1905,3102,3,1,565.7087021,565.7087021,3505,NO,32.54,38.99,3,-1.26,6106,113.312568,123.150683,132.843824,139.410122,I,Above,Hip,0,5701,,35.76475974,0,1.1,,,,1,1,,0.03,nav,1,1905,3,, 20037,NJBF000057967,8403 AMHERST AVE,Margate City,NJ,39.3314665,-74.50760321,RES1,3001,,17,NE,2013,2013,3102,2,1,1235.209135,1235.209135,3505,NO,34.45,45.44,3,5.65,6106,113.289222,123.134149,132.831876,139.391169,I,Above,Flat,0,5701,,39.94141514,0,0,,,,1,1,,0.03,nav,1,2013,2,, 20038,NJBF000055329,12 N SUMNER AVE,Margate City,NJ,39.32578682,-74.51029297,RES1,3001,,18,NE,1955,1955,3101,1,1,2686.7578,2686.7578,3505,NO,13.28,20.18,3,1.56,6106,113.312734,123.151334,132.845473,139.411418,I,Above,Hip,0,5701,,16.73152747,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 20039,NJBF000054427,124 N JEFFERSON AVE,Margate City,NJ,39.32336733,-74.5177427,RES1,3001,,20,NE,2015,2015,3102,3,1,715.0105512,715.0105512,3507,NO,38.82,46.25,1,0.52,6106,113.18603,123.048042,132.736601,139.290812,I,Above,Flat,0,5701,,42.53643785,0,0,,,,1,1,,0.03,nav,1,2015,3,, 20040,NJBF000056832,210 N OSBORNE AVE,Margate City,NJ,39.3293545,-74.5098935,RES1,3001,,17,NE,1953,1953,3101,1,1,1236.528248,1236.528248,3505,NO,20,28.16,3,3.22,6106,113.269293,123.117658,132.813255,139.372856,I,Above,Gable,0,5701,,24.08069037,0,0,,,,1,1,,0.03,nav,1,1953,1,, 20041,NJBF000054529,,Margate City,NJ,39.32363697,-74.51621136,RES1,3001,,NaN,NE,1969,0,3101,1,1,1084.655327,1084.655327,3505,NO,25.82,33.98,3,6.94,6106,113.215366,123.071852,132.761403,139.31851,I,Above,Flat,0,5701,,29.90345084,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20042,NJBF000054926,4 S RUMSON AVE,Margate City,NJ,39.32467872,-74.5082663,RES1,3001,,20,NE,1950,1950,3102,2,1,2812.747315,2812.747315,3505,NO,42.26,54.1,3,3.95,6106,113.373432,123.199742,132.894822,139.466722,I,Above,Hip,0,5701,,48.1818134,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 20043,NJBF000055882,117 N SUMNER AVE,Margate City,NJ,39.327197,-74.511009,RES1,3001,,20,NE,2002,2002,3102,3,1,1393.47518,1393.47518,3505,NO,43.4,55.55,3,2.91,6110,113.276318,123.122594,132.816771,139.378575,I,Above,Gable,0,5701,,49.47585297,0,0,,,,1,1,,0.35,nav,1,2002,3,, 20044,NJBF000055119,,Margate City,NJ,39.32519691,-74.51063007,RES1,3001,,NaN,NE,1969,0,3101,1,1,3998.734683,3998.734683,3505,NO,16.4,22.98,3,3.27,6106,113.314063,123.15215,132.845832,139.412108,I,Above,Gable,0,5701,,19.68744915,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20045,NJBF000059400,8221 FULTON AVE,Margate City,NJ,39.33418156,-74.50824635,RES1,3001,,17,NE,1985,1985,3101,1,1,1499.488838,1499.488838,3505,NO,22.84,36.31,3,7.61,6106,113.236303,123.092063,132.789834,139.340316,I,Above,Gable,0,5701,,29.57871158,0,0,,,,1,1,,0.03,nav,1,1985,1,, 20046,NJBF000054281,14 S VENDOME AVE,Margate City,NJ,39.32295646,-74.51034555,RES1,3001,,21,NE,2012,2012,3102,2,1,1987.397851,1987.397851,3505,NO,27.68,35.6,3,4.11,6106,113.353505,123.18286,132.875759,139.446101,I,Above,Hip,0,5701,,31.63894219,0,0,,,,1,1,,0.03,nav,1,2012,2,, 20047,NJBF000054316,12 S VENDOME AVE,Margate City,NJ,39.32305854,-74.51045371,RES1,3001,,19,NE,1935,1935,3102,2,1,2311.940418,2311.940418,3505,NO,37.18,46.78,3,6.94,6106,113.349614,123.179776,132.87265,139.442631,I,Above,Gable,0,5701,,41.98002842,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 20048,NJBF000058428,430 N NASSAU AVE,Margate City,NJ,39.33229313,-74.51174344,RES1,3001,,17,NE,1965,1965,3102,2,1,2926.884007,2926.884007,3505,NO,42.5,48.75,3,3.83,6106,113.186166,123.051643,132.746707,139.295151,I,Above,Flat,0,5701,,45.62638737,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 20049,NJBF000056674,202 N OSBORNE AVE,Margate City,NJ,39.32902277,-74.50956643,RES1,3001,,17,NE,1940,1940,3102,2,1,914.8091402,914.8091402,3505,NO,34.54,46.62,3,-1.71,6106,113.281321,123.127225,132.82295,139.383983,I,Above,Hip,0,5701,,40.57974427,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20050,NJBF000055518,10 N QUINCY AVE,Margate City,NJ,39.32630926,-74.50888168,RES1,3001,,17,NE,1930,1930,3102,2,1,1366.175518,1366.175518,3505,NO,41.34,52.51,3,8.91,6106,113.335963,123.170241,132.865536,139.433445,I,Above,Gable,0,5701,,46.92363533,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 20051,NJBF000055479,10 N QUINCY AVE,Margate City,NJ,39.3262015,-74.5089275,RES1,3001,,17,NE,1930,1930,3102,2,1,517.1676943,517.1676943,3505,NO,26.9,37.05,3,0.74,6106,113.336547,123.17067,132.865894,139.433904,I,Above,Gable,0,5701,,31.97279914,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 20052,NJBF000056272,,Margate City,NJ,39.3281085,-74.51278349,RES1,3001,,NaN,NE,1945,0,3101,1,1,2117.066826,2117.066826,3505,NO,16.37,27.9,3,3.8,6106,113.224063,123.080918,132.77425,139.330388,I,Above,Hip,0,5701,,22.13820871,0,0,,,,1,1,,0.03,nav,1,1945,1,, 20053,NJBF000054524,8901 ATLANTIC AVE,Margate City,NJ,39.32362384,-74.50820277,RES1,3001,,22,NE,1998,1998,3103,3,1,1997.322637,1997.322637,3505,NO,47.89,54.91,3,-0.66,6106,113.390401,123.212937,132.907605,139.481201,I,Above,Flat,0,5701,,51.39704046,0,1.1,,,,1,1,,0.03,nav,1,1998,3,, 20054,NJBF000054545,102 N WASHINGTON AVE,Margate City,NJ,39.32368694,-74.51542634,RES3B,3001,,21,ME,2005,2005,3301,1,1,3562.274682,3562.274682,3505,NO,16.74,23.6,3,-1.25,6106,113.231737,123.085077,132.77511,139.333829,I,Above,Hip,0,5701,,20.16940224,0,0,,,,1,1,,0.03,nav,1,2005,1,, 20055,NJBF000054237,104 N JEFFERSON AVE,Margate City,NJ,39.32281751,-74.51720624,RES1,3001,,43,NE,1930,1930,3109,2,2,865.589504,865.589504,3505,NO,41.84,55.4,3,8.09,6106,113.205987,123.06381,132.752414,139.308712,I,Above,Gable,0,5701,,48.61944728,0,0,,,,1,1,,0.03,nav,1,1930,2,, 20056,NJBF000057055,218 N NASSAU AVE,Margate City,NJ,39.32982516,-74.50943047,RES1,3001,,17,NE,1951,1951,3102,2,1,1190.067888,1190.067888,3505,NO,25.37,37.89,3,-1.99,6106,113.272675,123.120502,132.816545,139.376048,I,Above,Hip,0,5701,,31.63146332,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 20057,NJBF000055464,8 N QUINCY AVE,Margate City,NJ,39.3261736,-74.50876621,RES1,3001,,19,NE,1992,1992,3102,2,1,1625.490589,1625.490589,3505,NO,29.93,37.18,3,2.56,6106,113.340486,123.173829,132.869154,139.437543,I,Above,Gable,0,5701,,33.55676807,0,0,,,,1,1,,0.03,nav,1,1992,2,, 20058,NJBF000057287,210 N LANCASTER AVE,Margate City,NJ,39.33029782,-74.50800618,RES1,3001,,17,NE,1950,1950,3101,1,1,1242.126416,1242.126416,3505,NO,16.11,27.94,3,4.08,6106,113.297153,123.140275,132.837434,139.398792,I,Above,Hip,0,5701,,22.02246677,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20059,NJBF000058165,313 N LANCASTER AVE,Margate City,NJ,39.3318163,-74.50888951,RES1,3001,,17,NE,1970,1970,3102,2,1,2218.222237,2218.222237,3505,NO,20.69,33.8,3,-2.68,6106,113.255857,123.10744,132.804335,139.360064,I,Above,Gable,0,5701,,27.24073368,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 20060,NJBF000061126,221 N BRUNSWICK DR,Margate City,NJ,39.33711027,-74.49935793,RES1,3001,,17,NE,1950,1950,3103,2,1,1960.948477,1960.948477,3505,NO,39.98,53.07,3,2.86,6106,113.391678,123.216608,132.921682,139.478513,I,Above,Hip,0,5701,,46.52495278,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 20061,NJBF000056675,,Margate City,NJ,39.32902413,-74.50996261,RES1,3001,,NaN,NE,1969,0,3102,2,1,1691.153468,1691.153468,3505,NO,21.32,29.89,3,0.28,6106,113.272586,123.120208,132.815663,139.375858,I,Above,Gable,0,5701,,25.60720619,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20062,NJBF000057353,,Margate City,NJ,39.33041862,-74.50759277,RES1,3001,,NaN,NE,1969,0,3101,1,1,1514.035235,1514.035235,3505,NO,21.16,35.39,3,3.77,6106,113.304494,123.146197,132.843682,139.4056,I,Above,Gable,0,5701,,28.27053174,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20063,NJBF000054505,,Margate City,NJ,39.32357436,-74.51789347,RES1,3001,,NaN,NE,1969,0,3102,2,1,1263.16483,1263.16483,3507,NO,38.42,43.84,1,0.88,6106,113.17965,123.04302,132.731589,139.285116,I,Above,Flat,0,5701,,41.13060261,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20064,NJBF000055790,14 N PEMBROKE AVE,Margate City,NJ,39.32698286,-74.50854715,RES1,3001,,17,NE,1956,1956,3102,2,1,1344.841663,1344.841663,3505,NO,30.43,44.64,3,2.02,6106,113.33343,123.168455,132.864225,139.431569,I,Above,Hip,0,5701,,37.53901774,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 20065,NJBF000054292,119 N MADISON AVE,Margate City,NJ,39.32297534,-74.51822654,RES1,3001,,16,NE,1922,1922,3101,1,1,873.8749815,873.8749815,3505,NO,16.98,27.02,3,2.38,6106,113.181392,123.044064,132.732173,139.285976,I,Above,Gable,0,5701,,22.0022906,0,1.1,,,,1,1,,0.03,nav,1,1922,1,, 20066,NJBF000057688,315 N NASSAU AVE,Margate City,NJ,39.33099995,-74.50998524,RES1,3001,,17,NE,1950,1950,3102,2,1,1932.735822,1932.735822,3505,NO,36.99,48.3,3,0.22,6106,113.243488,123.097354,132.793314,139.348823,I,Above,Gable,0,5701,,42.64601554,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20067,NJBF000058150,415 N NASSAU AVE,Margate City,NJ,39.33179399,-74.51076199,RES1,3001,,18,NE,1950,1950,3102,2,1,1782.312244,1782.312244,3505,NO,36.6,48.72,3,1.24,6106,113.214948,123.074624,132.770236,139.322083,I,Above,Hip,0,5701,,42.65958924,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20068,NJBF000054612,8807 ATLANTIC AVE,Margate City,NJ,39.32386354,-74.50783694,RES1,3001,,19,NE,1935,1935,3103,3,1,2387.579397,2387.579397,3505,NO,54.58,61.34,3,8.4,6106,113.394852,123.216636,132.911668,139.485631,I,Above,Hip,0,5701,,57.95971766,0,1.2,,,,1,1,,0.03,nav,1,1935,3,, 20069,NJBF000062317,8203 BAYSHORE DR WEST,Margate City,NJ,39.33921725,-74.51241597,RES1,3001,,19,NE,1971,1971,3102,2,1,3819.277212,3819.277212,3505,NO,30.94,42.73,3,3.52,6106,113.07332,122.961632,132.656878,139.182863,I,Above,Gable,0,5701,,36.83463352,0,0,,,,1,1,,0.03,nav,1,1971,2,, 20070,NJBF000061994,506 N DOUGLAS AVE,Margate City,NJ,39.33860821,-74.50440199,RES1,3001,,18,NE,1967,1967,3102,2,1,1858.210451,1858.210451,3505,NO,44,49,3,7.45,6106,113.259333,123.110367,132.811397,139.354487,I,Above,Hip,0,5701,,46.50047422,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 20071,NJBF000058527,38 N ESSEX AVE,Margate City,NJ,39.33246968,-74.49909111,RES1,3001,,17,NE,1935,1935,3102,2,1,1509.043867,1509.043867,3505,NO,26.54,36.09,3,1.53,6106,113.462476,123.273452,132.978047,139.551008,I,Above,Gable,0,5701,,31.31553347,0,0,,,,1,1,,0.03,nav,1,1935,2,, 20072,NJBF000058065,11 N ESSEX AVE,Margate City,NJ,39.33164899,-74.49782364,RES1,3001,,18,NE,1948,1948,3102,2,1,1477.597872,1477.597872,3505,NO,23.7,34.97,3,-2.44,6106,113.502005,123.305158,133.010646,139.588224,I,Above,Gable,0,5701,,29.33455505,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 20073,NJBF000054615,108 N WASHINGTON AVE,Margate City,NJ,39.32387447,-74.51567596,RES1,3001,,18,NE,1954,1954,3102,2,1,1800.793899,1800.793899,3507,NO,40.65,50.26,1,2.48,6106,113.223485,123.078529,132.768497,139.326364,I,Above,Hip,0,5701,,45.45497141,0,0,,,,1,1,,0.03,nav,1,1954,2,, 20074,NJBF000055332,8801 VENTNOR AVE,Margate City,NJ,39.32578956,-74.50842402,RES1,3001,,20,NE,1940,1940,3102,2,1,2536.804591,2536.804591,3505,NO,26.58,39.07,3,5.24,6106,113.353617,123.184248,132.879664,139.449421,I,Above,Hip,0,5701,,32.82431536,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 20075,NJBF000055685,10 N PEMBROKE AVE,Margate City,NJ,39.32673677,-74.50834236,RES1,3001,,17,NE,1957,1957,3102,2,1,1769.467275,1769.467275,3505,NO,42.39,56.24,3,4.75,6106,113.341525,123.174878,132.870704,139.43893,I,Above,Gable,0,5701,,49.3166982,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 20076,NJBF000054577,7 S UNION AVE,Margate City,NJ,39.3237684,-74.50959337,RES1,3001,,19,NE,1930,1930,3102,2,1,2734.833841,2734.833841,3505,NO,34.04,43.57,3,4.61,6106,113.357888,123.186798,132.880573,139.45123,I,Above,Gable,0,5701,,38.80949984,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 20077,NJBF000059155,33 N CLARENDON AVE,Margate City,NJ,39.33367021,-74.49679386,RES1,3001,,17,NE,1925,1925,3102,2,1,1142.503023,1142.503023,3505,NO,27.27,41.35,3,0.93,6106,113.496231,123.300683,133.007503,139.580672,I,Above,Gable,0,5701,,34.31010392,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20078,NJBF000055852,300 N WILSON AVE,Margate City,NJ,39.32712747,-74.51512605,RES1,3001,,47,NE,1950,1950,3102,2,2,825.8167209,825.8167209,3505,NO,37.09,45.4,3,6.55,6106,113.187149,123.05086,132.74243,139.29546,I,Above,Gable,0,5701,,41.24550011,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20079,NJBF000054894,9 S RUMSON AVE,Margate City,NJ,39.32458381,-74.50763912,RES1,3001,,22,NE,2014,2014,3103,3,1,1464.813516,1464.813516,3505,NO,57.99,67.99,3,4.16,6106,113.388552,123.211882,132.907363,139.480645,I,Above,Hip,0,5701,,62.99229643,0,1.2,,,,1,1,,0.03,nav,1,2014,3,, 20080,NJBF000055432,6 N QUINCY AVE,Margate City,NJ,39.326081,-74.50867614,RES1,3001,,22,NE,2014,2014,3102,3,1,1476.315509,1476.315509,3505,NO,62.42,71.45,3,5.88,6106,113.343823,123.176479,132.871831,139.440568,I,Above,Gable,0,5701,,66.93049482,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 20081,NJBF000054362,10 S VENDOME AVE,Margate City,NJ,39.3231785,-74.5105385,RES1,3001,,20,NE,1951,1951,3102,2,1,1886.023774,1886.023774,3505,NO,32.45,42.36,3,-0.28,6106,113.346009,123.17693,132.869803,139.439446,I,Above,Gable,0,5701,,37.4080434,0,0,,,,1,1,,0.03,nav,1,1951,2,, 20082,NJBF000055023,100 N WILSON AVE,Margate City,NJ,39.32492347,-74.51300743,RES1,3001,,47,NE,1948,1948,3102,2,2,1119.623677,1119.623677,3505,NO,30.57,37.44,3,6.13,6106,113.266137,123.11343,132.805466,139.367248,I,Above,Flat,0,5701,,34.00616356,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20083,NJBF000055201,107 N WILSON AVE,Margate City,NJ,39.32531548,-74.51292267,RES1,3001,,18,NE,1948,1948,3102,2,1,937.7265501,937.7265501,3505,NO,39.79,49.15,3,6.04,6106,113.26216,123.110412,132.802659,139.363931,I,Above,Hip,0,5701,,44.46755171,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20084,NJBF000055389,8 N RUMSON AVE,Margate City,NJ,39.32594299,-74.50951338,RES1,3001,,17,NE,1950,1950,3102,2,1,1895.116977,1895.116977,3505,NO,25.63,40.06,3,3.81,6106,113.327517,123.163299,132.858023,139.425297,I,Above,Gable,0,5701,,32.84609596,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 20085,NJBF000055427,10 N RUMSON AVE,Margate City,NJ,39.32606128,-74.50961371,RES1,3001,,17,NE,1940,1940,3102,2,1,1957.959956,1957.959956,3505,NO,33.99,46.56,3,4.37,6106,113.323569,123.160169,132.85487,139.421726,I,Above,Gable,0,5701,,40.27500721,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 20086,NJBF000055171,11 N UNION AVE,Margate City,NJ,39.325354,-74.5110935,RES1,3001,,20,NE,2009,2009,3102,3,1,2315.658517,2315.658517,3505,NO,59.77,66.54,3,7.99,6106,113.301591,123.142177,132.835616,139.400661,I,Above,Gable,0,5701,,63.15518546,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 20087,NJBF000055957,307 N HARDING AVE,Margate City,NJ,39.3273639,-74.51562679,RES1,3001,,21,NE,1969,2018,3102,2,1,946.2507697,946.2507697,3505,NO,43.18,56.04,3,7.61,6106,113.172679,123.039326,132.730679,139.28211,I,Above,Flat,0,5701,,49.61283563,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20088,NJBF000054591,11 S THURLOW AVE,Margate City,NJ,39.32381719,-74.50872941,RES1,3001,,18,NE,1950,1950,3102,2,1,1558.279748,1558.279748,3505,NO,28.15,35.01,3,2.55,6106,113.376046,123.201457,132.895845,139.468136,I,Above,Flat,0,5701,,31.58015618,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20089,NJBF000055509,108 N THURLOW AVE,Margate City,NJ,39.32627747,-74.51164646,RES1,3001,,20,NE,1951,1951,3102,3,1,1210.786393,1210.786393,3505,NO,35.83,48.87,3,1.7,6106,113.275889,123.121885,132.815317,139.377542,I,Above,Gable,0,5701,,42.35049791,0,1.1,,,,1,1,,0.03,nav,1,1951,3,, 20090,NJBF000058496,4 N BRUNSWICK AVE,Margate City,NJ,39.33241837,-74.49537295,RES1,3001,,17,NE,1925,1925,3102,2,1,1577.651859,1577.651859,3505,NO,45.5,51.94,3,7.56,6106,113.545145,123.339964,133.047788,139.627334,I,Above,Gable,0,5701,,48.71952032,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20091,NJBF000058313,23 N ESSEX AVE,Margate City,NJ,39.33207583,-74.49824754,RES1,3001,,17,NE,1948,1948,3102,2,1,1193.218976,1193.218976,3505,NO,21.58,35.24,3,0.01,6106,113.486622,123.292831,132.998056,139.573667,I,Above,Hip,0,5701,,28.40918938,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 20092,NJBF000058635,409 N LANCASTER AVE,Margate City,NJ,39.33264988,-74.50964013,RES1,3001,,NaN,NE,1969,0,3102,2,1,2225.447345,2225.447345,3505,NO,38.48,48.84,3,6.93,6106,113.227383,123.084742,132.781284,139.333231,I,Above,Gable,0,5701,,43.65815163,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20093,NJBF000057965,7 N ESSEX AVE,Margate City,NJ,39.33146381,-74.49766111,RES1,3001,,17,NE,1947,1947,3102,2,1,985.1876223,985.1876223,3505,NO,30.59,40.79,3,-0.14,6106,113.508215,123.310132,133.015716,139.594098,I,Above,Gable,0,5701,,35.68758967,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 20094,NJBF000055445,3 N QUINCY AVE,Margate City,NJ,39.32612156,-74.50817881,RES1,3001,,17,NE,1930,1930,3102,2,1,1542.310424,1542.310424,3505,NO,32.03,46.49,3,4.95,6106,113.35411,123.184775,132.880489,139.450161,I,Above,Hip,0,5701,,39.25932015,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 20095,NJBF000054971,127 N WASHINGTON AVE,Margate City,NJ,39.32478959,-74.51586363,RES3B,3003,,22,ME,1951,1951,3301,2,1,3078.127629,3078.127629,3507,NO,28.8,38.12,1,0.17,6106,113.205698,123.064686,132.754935,139.3108,I,Above,Flat,0,5701,,33.45973317,0,0,,,,1,1,,0.03,nav,1,1951,2,, 20096,NJBF000057063,18 N HUNTINGTON AVE,Margate City,NJ,39.32984687,-74.50224933,RES1,3001,,18,NE,1925,1925,3102,2,1,1586.167972,1586.167972,3505,NO,41.55,55.49,3,7.19,6106,113.430278,123.247159,132.94852,139.522434,I,Above,Flat,0,5701,,48.52112686,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20097,NJBF000057017,16 N HUNTINGTON AVE,Margate City,NJ,39.32974333,-74.50218783,RES1,3001,,17,NE,1925,1925,3102,2,1,1651.20892,1651.20892,3505,NO,45.91,54.35,3,7.44,6106,113.433111,123.249416,132.950796,139.525068,I,Above,Hip,0,5701,,50.12846961,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20098,NJBF000055492,5 N QUINCY AVE,Margate City,NJ,39.32624178,-74.50826262,RES1,3001,,17,NE,1932,1932,3102,2,1,1448.296555,1448.296555,3505,NO,24.25,30.98,3,1.52,6106,113.350509,123.181923,132.877623,139.446912,I,Above,Hip,0,5701,,27.6139867,0,1.2,,,,1,1,,0.03,nav,1,1932,2,, 20099,NJBF000055222,106 N VENDOME AVE,Margate City,NJ,39.32548605,-74.51276348,RES1,3001,,21,NE,1948,2018,3101,3,1,1835.007653,1835.007653,3505,NO,34.19,43.71,3,1.24,6106,113.263127,123.111269,132.803684,139.36499,I,Above,Gable,0,5701,,38.94907329,0,0,,,,1,1,,0.03,nav,1,1948,3,, 20100,NJBF000055252,108 N VENDOME AVE,Margate City,NJ,39.32557586,-74.51284838,RES1,3001,,20,NE,1948,2016,3101,1,1,1859.578031,1859.578031,3505,NO,19.62,32.89,3,4.56,6106,113.259935,123.10874,132.801137,139.362101,I,Above,Hip,0,5701,,26.25757472,0,0,,,,1,1,,0.03,nav,1,1948,1,, 20101,NJBF000056775,218 N PEMBROKE AVE,Margate City,NJ,39.32923258,-74.51070552,RES1,3001,,17,NE,1952,1952,3101,1,1,1099.465558,1099.465558,3505,NO,16.52,28.99,3,-2.16,6106,113.253227,123.104718,132.799735,139.357889,I,Above,Gable,0,5701,,22.75518118,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 20102,NJBF000055386,11 N SUMNER AVE,Margate City,NJ,39.3259393,-74.50986075,RES1,3001,,17,NE,1929,1929,3102,2,1,1221.438054,1221.438054,3505,NO,29.1,36.59,3,1.4,6106,113.319955,123.15721,132.851697,139.418263,I,Above,Flat,0,5701,,32.84648054,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20103,NJBF000055364,115 N WILSON AVE,Margate City,NJ,39.32588483,-74.5134612,RES1,3001,,45,NE,1948,1948,3102,2,2,832.3774564,832.3774564,3505,NO,33.59,39.85,3,1.62,6106,113.241951,123.094405,132.786537,139.345622,I,Above,Gable,0,5701,,36.71550214,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20104,NJBF000056140,312 N WILSON AVE,Margate City,NJ,39.32780504,-74.51576566,RES1,3001,,47,NE,1950,1950,3102,2,2,1163.509031,1163.509031,3505,NO,33.11,42.85,3,-1.89,6106,113.163128,123.031831,132.723248,139.273446,I,Above,Hip,0,5701,,37.98278537,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20105,NJBF000058365,6 S ARGYLE AVE,Margate City,NJ,39.33217698,-74.49369451,RES1,3001,,19,NE,1925,1925,3102,2,1,1843.804405,1843.804405,3505,NO,19.6,26.42,3,-1.93,6106,113.585502,123.372448,133.081742,139.66479,I,Above,Hip,0,5701,,23.00825947,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20106,NJBF000055872,306 N HARDING AVE,Margate City,NJ,39.32717717,-74.51593964,RES1,3001,,47,NE,1950,1950,3102,2,2,825.7734876,825.7734876,3505,NO,30.65,41.95,3,7.9,6106,113.168588,123.035957,132.727064,139.27818,I,Above,Hip,0,5701,,36.30365061,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20107,NJBF000056206,312 N VENDOME AVE,Margate City,NJ,39.32796903,-74.51510152,RES1,3001,,17,NE,1955,1955,3101,1,1,1766.795062,1766.795062,3505,NO,23.33,28.58,3,6.92,6106,113.175262,123.041648,132.73351,139.284844,I,Above,Hip,0,5701,,25.95587015,0,0,,,,1,1,,0.03,nav,1,1955,1,, 20108,NJBF000055115,8800 VENTNOR AVE,Margate City,NJ,39.32517858,-74.50783679,RES1,3001,,21,NE,2008,2008,3103,3,1,3637.48547,3637.48547,3505,NO,58.61,69.44,3,6.87,6106,113.375455,123.201584,132.897171,139.469125,I,Above,Gable,0,5701,,64.02326347,0,0,,,,1,1,,0.03,nav,1,2008,3,, 20109,NJBF000055932,6 N MANSFIELD AVE,Margate City,NJ,39.32732147,-74.50612113,RES1,3001,,19,NE,1929,1929,3102,2,1,2180.034775,2180.034775,3505,NO,21.55,30.44,3,-0.84,6106,113.381711,123.207416,132.905036,139.476642,I,Above,Hip,0,5701,,25.99571429,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 20110,NJBF000054863,106-110 N DECATUR AVE,Margate City,NJ,39.324505,-74.5150845,RES3B,3001,,39,ME,1991,1991,3301,2,1,3169.265044,3169.265044,3505,NO,30.28,36.24,3,6.87,6106,113.226958,123.081664,132.772254,139.330317,I,Above,Hip,0,5701,,33.25626991,0,0,,,,1,1,,0.03,nav,1,1991,2,, 20111,NJBF000054763,106-110 N DECATUR AVE,Margate City,NJ,39.324251,-74.5148425,RES3B,3001,,39,ME,1991,1991,3301,1,1,3039.049176,3039.049176,3505,NO,19.04,26.61,3,7.81,6106,113.23603,123.088841,132.779468,139.33849,I,Above,Gable,0,5701,,22.82707751,0,0,,,,1,1,,0.03,nav,1,1991,1,, 20112,NJBF000055818,16 S JEROME AVE,Margate City,NJ,39.32705247,-74.50269459,RES1,3001,,18,NE,1920,1920,3102,2,1,1341.966655,1341.966655,3505,NO,21.94,30.73,3,-1.47,6106,113.4608,123.270992,132.971112,139.549892,I,Above,Hip,0,5701,,26.33830211,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 20113,NJBF000056449,18 N KENYON AVE,Margate City,NJ,39.3284901,-74.50529612,RES1,3001,,17,NE,1948,1948,3102,2,1,1441.612716,1441.612716,3505,NO,25.3,30.61,3,-2.19,6106,113.38285,123.208686,132.9073,139.47822,I,Above,Hip,0,5701,,27.95363925,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20114,NJBF000060780,311 N CLERMONT AVE,Margate City,NJ,39.3365376,-74.50022028,RES1,3001,,17,NE,1956,1956,3102,2,1,1722.397786,1722.397786,3505,NO,29.96,39.31,3,6.91,6106,113.380551,123.207721,132.91201,139.469597,I,Above,Gable,0,5701,,34.63513172,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 20115,NJBF000058210,18 S ANDOVER AVE,Margate City,NJ,39.33190333,-74.49271882,RES1,3001,,20,NE,2007,2007,3102,2,1,1713.335403,1713.335403,3505,NO,41.37,55.08,3,7.79,6106,113.61085,123.39285,133.102983,139.688455,I,Above,Flat,0,5701,,48.22344895,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 20116,NJBF000055470,9213 AMHERST AVE,Margate City,NJ,39.32618558,-74.51680936,RES1,3001,,23,NE,2005,2005,3102,2,1,1371.796298,1371.796298,3507,NO,26.53,36.77,1,1.95,6102,113.164266,123.032028,132.72228,139.273434,I,Above,Flat,0,5701,,31.64969244,0,0,,,,1,1,,0.03,nav,1,2005,2,, 20117,NJBF000058420,119 N GRANVILLE AVE,Margate City,NJ,39.33227623,-74.50242286,RES1,3001,,17,NE,1961,1961,3102,2,1,1699.320483,1699.320483,3505,NO,33.27,40.12,3,3.2,6106,113.391784,123.216617,132.918437,139.485804,I,Above,Flat,0,5701,,36.69130089,0,0,,,,1,1,,0.03,nav,1,1961,2,, 20118,NJBF000055964,8410 VENTNOR AVE,Margate City,NJ,39.32739379,-74.50399165,RES1,3001,,17,NE,1950,1950,3102,2,1,1490.972877,1490.972877,3505,NO,31.01,41.19,3,7.09,6106,113.427371,123.244185,132.943423,139.519084,I,Above,Gable,0,5701,,36.10047958,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20119,NJBF000058784,28 N CLERMONT AVE,Margate City,NJ,39.3329411,-74.49729368,RES1,3001,,17,NE,1938,1938,3102,2,1,2013.694314,2013.694314,3505,NO,28.59,34.39,3,5.8,6106,113.495446,123.300008,133.006246,139.580926,I,Above,Gable,0,5701,,31.48759378,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 20120,NJBF000056058,307 N WILSON AVE,Margate City,NJ,39.32763458,-74.51513918,RES1,3001,,NaN,NE,1969,0,3102,2,1,1166.917759,1166.917759,3505,NO,21.23,29.34,3,-2.55,6106,113.17937,123.044817,132.736549,139.288504,I,Above,Flat,0,5701,,25.28717704,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20121,NJBF000056039,311 N HARDING AVE,Margate City,NJ,39.32758397,-74.51584874,RES1,3001,,47,NE,1950,1950,3102,2,2,906.5277935,906.5277935,3505,NO,32.57,39.87,3,8.06,6106,113.16457,123.032899,132.724195,139.274672,I,Above,Hip,0,5701,,36.21676765,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20122,NJBF000054896,10 S QUINCY AVE,Margate City,NJ,39.32458502,-74.50722433,RES1,3001,,19,NE,1935,1935,3102,2,1,1220.030198,1220.030198,3505,NO,41.01,52.61,3,3.37,6106,113.397618,123.219187,132.914964,139.489054,I,Above,Hip,0,5701,,46.81055374,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 20123,NJBF000060502,303 N CLERMONT AVE,Margate City,NJ,39.33609211,-74.49979146,RES1,3001,,17,NE,1956,1956,3103,2,1,1500.370823,1500.370823,3505,NO,28.41,40.83,3,4.49,6106,113.396234,123.220331,132.924934,139.484824,I,Above,Hip,0,5701,,34.6171714,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 20124,NJBF000055606,106 N SUMNER AVE,Margate City,NJ,39.32654191,-74.51098127,RES1,3001,,17,NE,1924,1924,3102,2,1,1883.194102,1883.194102,3505,NO,45.6,56.63,3,7.08,6106,113.286553,123.130573,132.824537,139.387665,I,Above,Hip,0,5701,,51.11418332,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 20125,NJBF000057791,105 S ANDOVER AVE,Margate City,NJ,39.33117315,-74.49169291,RES1,3001,,NaN,NE,1963,0,3102,2,1,1929.781093,1929.781093,3505,NO,33.68,43.17,3,8.51,6106,113.643713,123.419266,133.130174,139.719515,I,Above,Flat,0,5701,,38.4207428,0,0,,,,1,1,,0.03,nav,1,1963,2,, 20126,NJBF000055876,2 N MANSFIELD AVE,Margate City,NJ,39.32718696,-74.50602495,RES1,3001,,17,NE,1953,1953,3101,1,1,2512.903876,2512.903876,3505,NO,22.07,30.01,3,4.3,6106,113.385768,123.210637,132.908281,139.480332,I,Above,Hip,0,5701,,26.03886227,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 20127,NJBF000055904,114 N RUMSON AVE,Margate City,NJ,39.32724795,-74.51070507,RES1,3001,,20,NE,1989,1989,3102,2,1,1578.602381,1578.602381,3505,NO,31.53,39.1,3,-0.55,6106,113.282235,123.127371,132.821766,139.384112,I,Above,Gable,0,5701,,35.31381686,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 20128,NJBF000056539,207 N QUINCY AVE,Margate City,NJ,39.32869468,-74.51054083,RES1,3001,,17,NE,1954,1954,3101,1,1,2041.220336,2041.220336,3505,NO,18.74,24.06,3,0.18,6106,113.264683,123.113757,132.808726,139.368419,I,Above,Flat,0,5701,,21.39933915,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 20129,NJBF000055921,8702 WINCHESTER AVE,Margate City,NJ,39.32728541,-74.50826168,RES1,3001,,17,NE,1940,1940,3102,2,1,1742.292785,1742.292785,3505,NO,41.1,54.15,3,4.94,6106,113.335266,123.170038,132.866112,139.43346,I,Above,Gable,0,5701,,47.62198119,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 20130,NJBF000056232,304 N UNION AVE,Margate City,NJ,39.32801128,-74.51419483,RES1,3001,,17,NE,1946,1946,3101,1,1,1493.485628,1493.485628,3505,NO,8.92,22.54,3,-2.7,6106,113.194525,123.057145,132.749568,139.302822,I,Above,Hip,0,5701,,15.72728835,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 20131,NJBF000056022,117 N RUMSON AVE,Margate City,NJ,39.327535,-74.5104465,RES1,3001,,17,NE,1910,1910,3102,2,1,1897.228532,1897.228532,3505,NO,35.79,46.94,3,6.56,6106,113.283688,123.128644,132.823308,139.385624,I,Above,Gable,0,5701,,41.366064,0,0,,,,1,1,,0.03,nav,1,1910,2,, 20132,NJBF000055811,113 N SUMNER AVE,Margate City,NJ,39.32703636,-74.51084941,RES1,3001,,17,NE,1956,1956,3101,1,1,1669.879513,1669.879513,3505,NO,12.22,24.26,3,0.49,6110,113.282188,123.127254,132.821481,139.383939,I,Above,Hip,0,5701,,18.23705298,0,0,,,,1,1,,0.35,nav,1,1956,1,, 20133,NJBF000055552,107 N THURLOW AVE,Margate City,NJ,39.32639129,-74.51120285,RES1,3001,,17,NE,1949,1949,3102,2,1,1019.719237,1019.719237,3505,NO,28.1,37.13,3,2.33,6106,113.283911,123.128387,132.82215,139.385096,I,Above,Gable,0,5701,,32.61378985,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 20134,NJBF000055664,4 N OSBORNE AVE,Margate City,NJ,39.32668659,-74.50737379,RES1,3001,,19,NE,1991,1991,3102,3,1,1404.810547,1404.810547,3505,NO,38.36,48.84,3,6.11,6106,113.363479,123.192527,132.889018,139.459297,I,Above,Flat,0,5701,,43.59790486,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 20135,NJBF000060312,301 N DELAVAN AVE,Margate City,NJ,39.33575512,-74.50027089,RES1,3001,,17,NE,1950,1950,3102,1,1,1641.760196,1641.760196,3505,NO,22.36,34.78,3,8.06,6106,113.390321,123.215598,132.919756,139.480049,I,Above,Gable,0,5701,,28.57297522,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 20136,NJBF000059298,7600 WINCHESTER AVE,Margate City,NJ,39.33395967,-74.49672883,RES1,3001,,18,NE,1935,1935,3102,2,1,1356.777468,1356.777468,3505,NO,33.28,47.68,3,8.7,6106,113.493601,123.298579,133.005511,139.577813,I,Above,Gable,0,5701,,40.48160283,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 20137,NJBF000055275,8 S NASSAU AVE,Margate City,NJ,39.325633,-74.505466,RES1,3001,,18,NE,1953,1953,3101,1,1,1873.176921,1873.176921,3505,NO,19.54,30.23,3,7.6,6106,113.42072,123.238223,132.935703,139.511567,I,Above,Flat,0,5701,,24.88530357,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 20138,NJBF000056049,6 N LANCASTER AVE,Margate City,NJ,39.32760934,-74.50542091,RES1,3001,,17,NE,1969,1969,3102,2,1,1270.652953,1270.652953,3505,NO,41.33,50.16,3,6.27,6106,113.392884,123.216498,132.914732,139.487177,I,Above,Hip,0,5701,,45.74697075,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20139,NJBF000056010,11 N NASSAU AVE,Margate City,NJ,39.32751721,-74.50667615,RES1,3001,,20,NE,1997,1997,3102,3,1,1596.620037,1596.620037,3505,NO,61.61,72.47,3,5.34,6106,113.366678,123.195385,132.892668,139.462785,I,Above,Flat,0,5701,,67.04459573,0,0,,,,1,1,,0.03,nav,1,1997,3,, 20140,NJBF000059215,27 N BRUNSWICK AVE,Margate City,NJ,39.33378453,-74.49612707,RES1,3001,,21,NE,1969,2018,3102,2,1,915.7788185,915.7788185,3505,NO,34.49,41.58,3,3.73,6106,113.509331,123.311226,133.018659,139.592525,I,Above,Gable,0,5701,,38.03659923,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20141,NJBF000056093,3 N LANCASTER AVE,Margate City,NJ,39.32770762,-74.50501878,RES1,3001,,19,NE,1936,1936,3102,2,1,1489.113149,1489.113149,3505,NO,32.26,38.7,3,-2.49,6106,113.40027,123.222471,132.921039,139.494087,I,Above,Flat,0,5701,,35.48029393,0,1.2,,,,1,1,,0.03,nav,1,1936,2,, 20142,NJBF000055618,1 S MANSFIELD AVE,Margate City,NJ,39.32657896,-74.50483606,RES1,3001,,20,NE,1950,1950,3101,1,1,2402.900637,2402.900637,3505,NO,24.12,31.84,3,8.44,6106,113.420709,123.238557,132.936866,139.512361,I,Above,Gable,0,5701,,27.98027971,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 20143,NJBF000056358,124 N PEMBROKE AVE,Margate City,NJ,39.3282996,-74.50983622,RES1,3001,,17,NE,1951,1951,3101,1,1,1415.283501,1415.283501,3505,NO,17.82,32.45,3,-0.3,6106,113.285917,123.130696,132.826018,139.388045,I,Above,Hip,0,5701,,25.13170991,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 20144,NJBF000056413,9002 FREMONT AVE,Margate City,NJ,39.32841102,-74.51498011,RES1,3001,,17,NE,1950,1950,3102,2,1,1241.494288,1241.494288,3505,NO,28.04,33.26,3,0.03,6106,113.171438,123.038745,132.730818,139.281472,I,Above,Hip,0,5701,,30.6484056,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20145,NJBF000056613,28 N KENYON AVE,Margate City,NJ,39.3288723,-74.50563223,RES1,3001,,17,NE,1925,1925,3102,2,1,1274.910842,1274.910842,3505,NO,41.95,50.6,3,6.74,6106,113.369941,123.198409,132.896891,139.466329,I,Above,Hip,0,5701,,46.27314819,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20146,NJBF000056478,17 N KENYON AVE,Margate City,NJ,39.32856685,-74.50486087,RES1,3001,,17,NE,1950,1950,3101,1,1,1432.275375,1432.275375,3505,NO,22.55,34.08,3,3.35,6106,113.391292,123.215497,132.914461,139.486085,I,Above,Gable,0,5701,,28.3144412,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 20147,NJBF000058587,25 N DOUGLAS AVE,Margate City,NJ,39.33257207,-74.4979506,RES1,3001,,17,NE,1925,1925,3102,2,1,1560.454393,1560.454393,3505,NO,21.14,33.19,3,-0.31,6106,113.486162,123.29251,132.9981,139.572776,I,Above,Hip,0,5701,,27.1651877,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20148,NJBF000056364,311 N VENDOME AVE,Margate City,NJ,39.32831289,-74.51485865,RES1,3001,,17,NE,1950,1950,3101,1,1,2044.831367,2044.831367,3505,NO,17.68,27.47,3,3.52,6106,113.17553,123.041996,132.734111,139.285248,I,Above,Hip,0,5701,,22.57464316,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20149,NJBF000055385,103 S KENYON AVE,Margate City,NJ,39.32593839,-74.50279293,RES1,3001,,19,NE,1963,1963,3102,2,1,1842.876911,1842.876911,3505,NO,33.46,48.34,3,7.8,6106,113.474849,123.281939,132.981568,139.562031,I,Above,Gable,0,5701,,40.90225076,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 20150,NJBF000055512,16 S LANCASTER AVE,Margate City,NJ,39.32629653,-74.50427366,RES1,3001,,21,NE,1983,1983,3102,2,1,1314.985973,1314.985973,3505,NO,27.15,34.71,3,-1.21,6106,113.437145,123.251693,132.950321,139.527389,I,Above,Hip,0,5701,,30.92793814,0,0,,,,1,1,,0.03,nav,1,1983,2,, 20151,NJBF000055842,115 N SUMNER AVE,Margate City,NJ,39.32709779,-74.5109725,RES1,3001,,17,NE,1919,1919,3102,2,1,1250.218983,1250.218983,3505,NO,28.15,34.64,3,-0.26,6110,113.278582,123.124377,132.818544,139.380621,I,Above,Gable,0,5701,,31.39603473,0,1.1,,,,1,1,,0.35,nav,1,1919,2,, 20152,NJBF000056248,303 N UNION AVE,Margate City,NJ,39.32804326,-74.51371188,RES1,3001,,17,NE,1930,1930,3101,1,1,1131.777233,1131.777233,3505,NO,11.91,17.75,3,-0.04,6106,113.204644,123.065289,132.758019,139.312267,I,Above,Gable,0,5701,,14.83197882,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 20153,NJBF000063248,7608 BAYSHORE DR,Margate City,NJ,39.34122288,-74.50472117,RES1,3001,,17,NE,1964,1964,3102,2,1,1840.895941,1840.895941,3505,NO,32.68,46.09,3,5.83,6106,113.216362,123.075483,132.776244,139.308883,I,Above,Gable,0,5701,,39.38729517,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 20154,NJBF000057229,214 N MANSFIELD AVE,Margate City,NJ,39.3301875,-74.50882416,RES1,3001,,17,NE,1951,1951,3101,1,1,1012.76351,1012.76351,3505,NO,9.97,24.17,3,-0.76,6106,113.280749,123.127077,132.823634,139.383555,I,Above,Gable,0,5701,,17.07308531,0,0,,,,1,1,,0.03,nav,1,1951,1,, 20155,NJBF000055771,111 N SUMNER AVE,Margate City,NJ,39.32693603,-74.51075451,RES1,3001,,17,NE,1950,1950,3101,1,1,1422.365963,1422.365963,3505,NO,23.41,35.34,3,7.85,6106,113.285716,123.130053,132.824307,139.387158,I,Above,Hip,0,5701,,29.37498899,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20156,NJBF000055853,12 N OSBORNE AVE,Margate City,NJ,39.32712854,-74.50783,RES1,3001,,18,NE,1930,1930,3102,2,1,2227.688788,2227.688788,3505,NO,43.02,53.76,3,6.07,6106,113.34702,123.179439,132.875764,139.444293,I,Above,Flat,0,5701,,48.39030278,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20157,NJBF000060719,7405 MONMOUTH AVE,Margate City,NJ,39.33644798,-74.49631469,RES1,3001,,17,NE,1958,1958,3103,2,1,1727.135772,1727.135772,3505,NO,34.15,42.14,3,4.66,6106,113.468105,123.27804,132.985712,139.549548,I,Above,Gable,0,5701,,38.14052344,0,0,,,,1,1,,0.03,nav,1,1958,2,, 20158,NJBF000056540,316 N THURLOW AVE,Margate City,NJ,39.32869483,-74.51399487,RES1,3001,,17,NE,1958,1958,3102,2,1,2336.323045,2336.323045,3505,NO,28.16,35.84,3,5.36,6106,113.188876,123.052856,132.745612,139.297829,I,Above,Flat,0,5701,,32.00078317,0,0,,,,1,1,,0.03,nav,1,1958,2,, 20159,NJBF000061842,7405 FREMONT AVE,Margate City,NJ,39.33835301,-74.49827962,RES1,3001,,17,NE,1979,1979,3103,1,1,1845.185925,1845.185925,3505,NO,15,23.48,3,-2.79,6106,113.398381,123.221845,132.927944,139.481504,I,Above,Gable,0,5701,,19.23850207,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 20160,NJBF000056763,300 N QUINCY AVE,Margate City,NJ,39.329201,-74.5116275,RES1,3001,,21,NE,2001,2001,3102,2,1,1679.921741,1679.921741,3505,NO,37.81,45.53,3,8.36,6106,113.233442,123.088817,132.783218,139.33947,I,Above,Gable,0,5701,,41.66813762,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 20161,NJBF000055767,8603 VENTNOR AVE,Margate City,NJ,39.32692674,-74.50605848,RES1,3001,,18,NE,1959,1959,3102,2,1,3075.518061,3075.518061,3505,NO,25.34,32.56,3,1.09,6106,113.388834,123.213017,132.910545,139.483014,I,Above,Hip,0,5701,,28.9528833,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 20162,NJBF000056965,209 N NASSAU AVE,Margate City,NJ,39.32963098,-74.50872074,RES1,3001,,17,NE,1930,1930,3102,2,1,924.6936942,924.6936942,3505,NO,34.76,48.44,3,1.82,6106,113.29107,123.135225,132.831705,139.393139,I,Above,Gable,0,5701,,41.6008129,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20163,NJBF000058600,5 S ANDOVER AVE,Margate City,NJ,39.33259687,-74.49284747,RES1,3001,,19,NE,1945,1945,3102,2,1,1491.777435,1491.777435,3505,NO,38.21,44.9,3,6.63,6106,113.598282,123.382784,133.092963,139.675982,I,Above,Hip,0,5701,,41.55523711,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20164,NJBF000056393,16 N KENYON AVE,Margate City,NJ,39.32837789,-74.50518578,RES1,3001,,17,NE,1948,1948,3102,2,1,1589.230815,1589.230815,3505,NO,23.32,30.82,3,2.1,6106,113.386888,123.211902,132.910564,139.481935,I,Above,Hip,0,5701,,27.07140165,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20165,NJBF000056369,310 N UNION AVE,Margate City,NJ,39.32832761,-74.51454687,RES1,3001,,17,NE,1948,1948,3101,1,1,1653.362553,1653.362553,3505,NO,14.34,27.19,3,-0.93,6106,113.182151,123.047321,132.739629,139.291426,I,Above,Hip,0,5701,,20.7633362,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 20166,NJBF000058531,120 N GLADSTONE AVE,Margate City,NJ,39.33247802,-74.50217628,RES1,3001,,47,NE,1930,1930,3102,2,2,1413.811424,1413.811424,3505,NO,40.33,54.29,3,6.07,6106,113.394362,123.218711,132.920771,139.488036,I,Above,Gable,0,5701,,47.31057883,0,0,,,,1,1,,0.03,nav,1,1930,2,, 20167,NJBF000055762,8 S KENYON AVE,Margate City,NJ,39.32690921,-74.50404975,RES1,3001,,21,NE,2013,2013,3102,3,1,1366.642541,1366.642541,3505,NO,41.41,48.22,3,-0.58,6106,113.433145,123.24868,132.947702,139.524139,I,Above,Hip,0,5701,,44.81473382,0,0,,,,1,1,,0.03,nav,1,2013,3,, 20168,NJBF000055795,6 S KENYON AVE,Margate City,NJ,39.32699185,-74.50412766,RES1,3001,,19,NE,1949,1949,3102,2,1,1684.715271,1684.715271,3505,NO,24.68,39.53,3,-0.54,6106,113.430227,123.246357,132.94535,139.521486,I,Above,Gable,0,5701,,32.103151,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 20169,NJBF000057898,447 N THURLOW AVE,Margate City,NJ,39.33134671,-74.51593575,RES1,3001,,21,NE,1968,1968,3102,2,1,2662.794418,2662.794418,3505,NO,31.54,45.35,3,6.88,6102,113.107553,122.988417,132.680689,139.222308,I,Above,Flat,0,5701,,38.44449152,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 20170,NJBF000055922,119 N SUMNER AVE,Margate City,NJ,39.32728875,-74.51109375,RES1,3001,,19,NE,2004,2004,3102,3,1,1340.976193,1340.976193,3505,NO,53.33,63.24,3,3.61,6110,113.273105,123.120044,132.814197,139.375639,I,Above,Gable,0,5701,,58.28402326,0,0,,,,1,1,,0.35,nav,1,2004,3,, 20171,NJBF000054990,14 S PEMBROKE AVE,Margate City,NJ,39.3248222,-74.50652467,RES1,3001,,20,NE,2011,2011,3103,3,1,2148.164829,2148.164829,3505,NO,62.69,72.88,3,6.35,6106,113.409428,123.228803,132.925181,139.500268,I,Above,Hip,0,5701,,67.78644138,0,0,,,,1,1,,0.03,nav,1,2011,3,, 20172,NJBF000055667,20 S KNIGHT AVE,Margate City,NJ,39.32669387,-74.50312483,RES1,3001,,21,NE,2015,2015,3102,3,1,1386.935653,1386.935653,3505,NO,46.17,53.65,3,0.39,6106,113.456564,123.267467,132.967123,139.545712,I,Above,Flat,0,5701,,49.90990389,0,0,,,,1,1,,0.03,nav,1,2015,3,, 20173,NJBF000056664,311 N THURLOW AVE,Margate City,NJ,39.32899885,-74.51371361,RES1,3001,,17,NE,1956,1956,3102,2,1,813.3360976,813.3360976,3505,NO,33.44,40.57,3,-2.97,6106,113.190593,123.054339,132.747357,139.29952,I,Above,Flat,0,5701,,37.00060838,0,0,,,,1,1,,0.03,nav,1,1956,2,, 20174,NJBF000063135,615 N CLERMONT AVE,Margate City,NJ,39.34096189,-74.5044776,RES1,3001,,17,NE,1967,1967,3102,1,1,1997.715335,1997.715335,3505,NO,20.14,27.12,3,6.03,6106,113.225315,123.082706,132.783669,139.317714,I,Above,Hip,0,5701,,23.63354913,0,0,,,,1,1,,0.03,nav,1,1967,1,, 20175,NJBF000056846,405 N THURLOW AVE,Margate City,NJ,39.32938399,-74.51405861,RES1,3001,,21,NE,2005,2005,3102,3,1,1662.507805,1662.507805,3505,NO,42.6,56.6,3,4.85,6106,113.177393,123.043867,132.736781,139.287313,I,Above,Hip,0,5701,,49.60344381,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 20176,NJBF000056373,209 N RUMSON AVE,Margate City,NJ,39.32833346,-74.5112267,RES1,3001,,17,NE,1940,1940,3102,2,1,979.6146562,979.6146562,3505,NO,25.18,36.85,3,-0.43,6106,113.254907,123.105784,132.800189,139.359199,I,Above,Gable,0,5701,,31.01311963,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20177,NJBF000056079,1 S KNIGHT AVE,Margate City,NJ,39.32767339,-74.50340918,RES1,3001,,17,NE,1952,1952,3102,2,1,4154.257955,4154.257955,3505,NO,44.49,57.97,3,6.08,6106,113.436124,123.251314,132.951095,139.527358,I,Above,Flat,0,5701,,51.22901349,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 20178,NJBF000053329,14 S MONROE AVE,Margate City,NJ,39.31953314,-74.51673824,RES1,3001,,17,NE,1954,1954,3102,2,1,1001.886638,1001.886638,3507,NO,34.25,41.09,1,-0.64,6106,113.26587,123.110023,132.797181,139.359274,I,Above,Hip,0,5701,,37.66916837,0,0,,,,1,1,,0.03,nav,1,1954,2,, 20179,NJBF000056938,12 N HUNTINGTON AVE,Margate City,NJ,39.3295812,-74.50198658,RES1,3001,,17,NE,1933,1933,3101,1,1,1644.689437,1644.689437,3505,NO,12.24,17.41,3,0.89,6106,113.439857,123.254807,132.9563,139.531329,I,Above,Hip,0,5701,,14.82454365,0,1.1,,,,1,1,,0.03,nav,1,1933,1,, 20180,NJBF000054173,105 N MADISON AVE,Margate City,NJ,39.322618,-74.5176705,RES1,3001,,30,NE,1920,1920,3102,2,3,582.1072428,582.1072428,3507,NO,28.82,35.78,1,1.52,6106,113.198898,123.057968,132.746217,139.301828,I,Above,Gable,0,5701,,32.29872947,0,0,,,,1,1,,0.03,nav,1,1920,2,, 20181,NJBF000060064,8098 FULTON AVE,Margate City,NJ,39.33533708,-74.50549959,RES1,3001,,17,NE,1954,1954,3101,2,1,1469.786043,1469.786043,3505,NO,26.04,34.21,3,2.76,6106,113.280636,123.127635,132.827575,139.379906,I,Above,Gable,0,5701,,30.12706133,0,0,,,,1,1,,0.03,nav,1,1954,2,, 20182,NJBF000055263,8605 ATLANTIC AVE,Margate City,NJ,39.32559858,-74.50483604,RES1,3001,,19,NE,1920,1920,3102,2,1,1328.756014,1328.756014,3505,NO,39.98,53.9,3,5.58,6106,113.435021,123.24973,132.947666,139.524797,I,Above,Hip,0,5701,,46.93900536,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 20183,NJBF000063339,7601 BURK AVE,Margate City,NJ,39.34144731,-74.50370528,RES1,3001,,18,NE,1987,1987,3102,2,1,2002.905377,2002.905377,3505,NO,37,49.82,3,4.82,6106,113.235855,123.09101,132.79257,139.325897,I,Above,Hip,0,5701,,43.40738654,0,0,,,,1,1,,0.03,nav,1,1987,2,, 20184,NJBF000063691,7515 BAYSHORE DR,Margate City,NJ,39.34240511,-74.50453301,RES1,3001,,21,NE,1995,1995,3102,2,1,4373.307815,4373.307815,3505,NO,39.59,45.85,3,1.57,6106,113.204467,123.065643,132.766482,139.294713,I,Above,Hip,0,5701,,42.7160877,0,0,,,,1,1,,0.03,nav,1,1995,2,, 20185,NJBF000058684,123 N GLADSTONE AVE,Margate City,NJ,39.33275765,-74.50189048,RES1,3001,,17,NE,1950,1950,3102,2,1,1690.702744,1690.702744,3505,NO,31.51,46.39,3,7.34,6106,113.396699,123.220617,132.922963,139.489964,I,Above,Gable,0,5701,,38.94540091,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20186,NJBF000057041,23 N IROQUOIS AVE,Margate City,NJ,39.32979368,-74.50328503,RES1,3001,,18,NE,1925,1925,3102,2,1,1487.474294,1487.474294,3505,NO,46.22,54.64,3,8.37,6106,113.408251,123.229435,132.929967,139.501994,I,Above,Hip,0,5701,,50.43041381,0,0,,,,1,1,,0.03,nav,1,1925,2,, 20187,NJBF000059433,,Margate City,NJ,39.33423503,-74.50538004,RES1,3001,,NaN,NE,1969,0,3101,1,1,2865.721003,2865.721003,3505,NO,12.87,24.6,3,-1.76,6106,113.298816,123.142172,132.842054,139.398044,I,Above,Gable,0,5701,,18.73757326,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20188,NJBF000056536,110 N MANSFIELD AVE,Margate City,NJ,39.32869185,-74.50745589,RES1,3001,,17,NE,1952,1952,3102,2,1,1647.582309,1647.582309,3505,NO,36.63,42.94,3,4.19,6110,113.332475,123.168239,132.865339,139.431468,I,Above,Gable,0,5701,,39.7846802,0,0.1,,,,1,1,,0.35,nav,1,1952,2,, 20189,NJBF000055491,7 S MANSFIELD AVE,Margate City,NJ,39.32623497,-74.50453939,RES1,3001,,20,NE,1954,1954,3102,3,1,1792.137611,1792.137611,3505,NO,45.87,59.69,3,-2.19,6106,113.432239,123.247721,132.946125,139.522787,I,Above,Hip,0,5701,,52.77961669,0,1.1,,,,1,1,,0.03,nav,1,1954,3,, 20190,NJBF000056418,8305 VENTNOR AVE,Margate City,NJ,39.32842602,-74.50287841,RES1,3001,,18,NE,1925,1925,3102,2,1,1348.834719,1348.834719,3505,NO,36.99,48.69,3,6.22,6106,113.436896,123.252147,132.952587,139.528387,I,Above,Hip,0,5701,,42.83827256,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20191,NJBF000056059,111 N QUINCY AVE,Margate City,NJ,39.32763608,-74.50953038,RES1,3001,,17,NE,1930,1930,3101,2,1,2412.026708,2412.026708,3505,NO,38.35,45.35,3,8.52,6106,113.302324,123.143664,132.838981,139.403016,I,Above,Gable,0,5701,,41.85207769,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20192,NJBF000056908,22 N IROQUOIS AVE,Margate City,NJ,39.32951576,-74.50355529,RES1,3001,,18,NE,1925,1925,3102,2,1,1263.830543,1263.830543,3505,NO,40.68,52.63,3,4.83,6106,113.406309,123.227811,132.928055,139.50019,I,Above,Gable,0,5701,,46.65427226,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20193,NJBF000057389,507 N UNION AVE,Margate City,NJ,39.33049008,-74.51605892,RES1,3001,,16,NE,1926,1926,3102,2,2,1268.957815,1268.957815,3505,NO,36.19,45.75,3,-0.89,6106,113.117325,122.996009,132.688013,139.231464,I,Above,Hip,0,5701,,40.97095218,0,0,,,,1,1,,0.03,nav,1,1926,2,, 20194,NJBF000056130,,Margate City,NJ,39.32777901,-74.50252736,RES1,3001,,NaN,NE,1969,0,3102,2,1,1189.1088,1189.1088,3505,NO,27.15,41.74,3,0.01,6106,113.453955,123.265698,132.966202,139.54396,I,Above,Gable,0,5701,,34.44394354,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20195,NJBF000056078,,Margate City,NJ,39.32767035,-74.502451,RES1,3001,,NaN,NE,1969,0,3102,2,1,1028.247488,1028.247488,3505,NO,35.57,47.83,3,1.67,6106,113.457201,123.26828,132.968806,139.546917,I,Above,Gable,0,5701,,41.69714772,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20196,NJBF000056753,22 N JASPER AVE,Margate City,NJ,39.3291879,-74.50408556,RES1,3001,,18,NE,1985,1985,3102,2,1,1449.05789,1449.05789,3505,NO,37.48,49.02,3,-0.16,6106,113.399357,123.222143,132.921883,139.493706,I,Above,Gable,0,5701,,43.25122168,0,0,,,,1,1,,0.03,nav,1,1985,2,, 20197,NJBF000058258,10 S ARGYLE AVE,Margate City,NJ,39.33198674,-74.4935382,RES1,3001,,17,NE,1965,1965,3102,1,1,1845.26131,1845.26131,3505,NO,11.85,16.95,3,-2.89,6106,113.591632,123.37737,133.086763,139.670659,I,Above,Gable,0,5701,,14.40165833,0,0,,,,1,1,,0.03,nav,1,1965,1,, 20198,NJBF000060950,71 BAYSIDE COURT,Margate City,NJ,39.33680801,-74.50954452,RES1,3001,,18,NE,1992,1992,3102,2,1,1135.087192,1135.087192,3505,NO,26.81,36.42,3,4.94,6106,113.170552,123.03949,132.736622,139.276361,I,Above,Hip,0,5701,,31.61939149,0,0,,,,1,1,,0.03,nav,1,1992,2,, 20199,NJBF000058335,2 S BARCLAY AVE,Margate City,NJ,39.33211208,-74.49436777,RES1,3001,,20,NE,1987,1987,3102,2,1,1197.223152,1197.223152,3505,NO,27.18,40.66,3,3.78,6106,113.571592,123.361236,133.069898,139.652053,I,Above,Gable,0,5701,,33.92042216,0,0,,,,1,1,,0.03,nav,1,1987,2,, 20200,NJBF000058682,8205 AMHERST AVE,Margate City,NJ,39.33275403,-74.50543908,RES1,3001,,17,NE,1950,1950,3101,1,1,1151.840127,1151.840127,3505,NO,20.95,27.31,3,6.82,6106,113.318507,123.157841,132.857425,139.41762,I,Above,Flat,0,5701,,24.12638577,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20201,NJBF000059835,19 E COLMAR CIRCLE,Margate City,NJ,39.33493901,-74.50451224,RES1,3001,,18,NE,1955,1955,3101,3,1,1279.237047,1279.237047,3505,NO,31.81,38.59,3,-0.64,6106,113.308058,123.14961,132.850254,139.405715,I,Above,Gable,0,5701,,35.20190923,0,0,,,,1,1,,0.03,nav,1,1955,3,, 20202,NJBF000059886,25 N COLMAR CIRCLE,Margate City,NJ,39.33502277,-74.50544277,RES1,3001,,17,NE,1930,1930,3101,1,1,1520.583656,1520.583656,3505,NO,18.89,26.14,3,7.47,6106,113.286312,123.132179,132.832123,139.385557,I,Above,Flat,0,5701,,22.51365035,0,0,,,,1,1,,0.03,nav,1,1930,1,, 20203,NJBF000056583,6 N IROQUOIS AVE,Margate City,NJ,39.32879749,-74.50289445,RES1,3001,,20,NE,2008,2008,3102,2,1,1352.183209,1352.183209,3505,NO,27.66,37.25,3,0.55,6106,113.431193,123.247653,132.948197,139.523194,I,Above,Hip,0,5701,,32.45451138,0,0,,,,1,1,,0.03,nav,1,2008,2,, 20204,NJBF000056073,110 N PEMBROKE AVE,Margate City,NJ,39.32765613,-74.50923646,RES1,3001,,17,NE,1950,1950,3102,2,1,1765.106059,1765.106059,3505,NO,33.92,38.97,3,0.72,6106,113.308481,123.148623,132.844147,139.408753,I,Above,Gable,0,5701,,36.44211923,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20205,NJBF000055592,14 N QUINCY AVE,Margate City,NJ,39.32651455,-74.50910436,RES1,3001,,19,NE,1950,1950,3102,3,1,1316.586771,1316.586771,3505,NO,35.24,41.2,3,-1.76,6106,113.328076,123.163973,132.859191,139.426269,I,Above,Gable,0,5701,,38.21767563,0,0,,,,1,1,,0.03,nav,1,1950,3,, 20206,NJBF000056817,18 N IROQUOIS AVE,Margate City,NJ,39.32932634,-74.50338675,RES1,3001,,17,NE,1955,1955,3102,2,1,1806.696034,1806.696034,3505,NO,40.57,48.67,3,3.07,6106,113.412737,123.232936,132.933255,139.506144,I,Above,Hip,0,5701,,44.62235171,0,0,,,,1,1,,0.03,nav,1,1955,2,, 20207,NJBF000056334,111 N OSBORNE AVE,Margate City,NJ,39.32823593,-74.50826885,RES1,3001,,17,NE,1925,1925,3102,2,1,1695.553325,1695.553325,3505,NO,32.87,40.72,3,8.22,6106,113.321248,123.159077,132.85546,139.420882,I,Above,Gable,0,5701,,36.79575951,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20208,NJBF000056679,16 N JASPER AVE,Margate City,NJ,39.32903006,-74.50391556,RES1,3001,,17,NE,1925,1925,3102,2,1,1012.576776,1012.576776,3505,NO,38.84,46.34,3,2.08,6106,113.405372,123.226941,132.926765,139.499267,I,Above,Hip,0,5701,,42.59319913,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20209,NJBF000055955,113 N RUMSON AVE,Margate City,NJ,39.3273624,-74.51022888,RES1,3001,,17,NE,1940,1940,3102,2,1,1432.516136,1432.516136,3505,NO,36.56,43.45,3,6.78,6106,113.291001,123.134463,132.829214,139.392335,I,Above,Hip,0,5701,,40.00396394,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20210,NJBF000056961,19 N IROQUOIS AVE,Margate City,NJ,39.32962131,-74.5031194,RES1,3001,,17,NE,1950,1950,3102,2,1,1331.559157,1331.559157,3505,NO,39.88,46.06,3,5.15,6106,113.414387,123.234331,132.934943,139.507692,I,Above,Hip,0,5701,,42.96918969,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20211,NJBF000056869,15 N IROQUOIS AVE,Margate City,NJ,39.32943169,-74.50299551,RES1,3001,,17,NE,1925,1925,3102,2,1,1202.487049,1202.487049,3505,NO,27.42,39.73,3,4.52,6106,113.419809,123.238648,132.939303,139.512717,I,Above,Hip,0,5701,,33.57472471,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20212,NJBF000056906,110 N KENYON AVE,Margate City,NJ,39.32951537,-74.50627987,RES1,3001,,21,NE,2017,2017,3101,3,1,1219.424088,1219.424088,3505,NO,48.15,53.4,3,0.13,6106,113.346407,123.179657,132.877848,139.44456,I,Above,Gable,0,5701,,50.77371876,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 20213,NJBF000054096,204 N COOLIDGE AVE,Margate City,NJ,39.32237721,-74.5207878,RES1,3001,,30,NE,2000,2000,3102,2,2,1682.819011,1682.819011,3507,NO,34.3,48.18,1,2.34,6106,113.134733,123.006022,132.692486,139.241568,I,Above,Gable,0,5701,,41.23828361,0,0,,,,1,1,,0.03,nav,1,2000,2,, 20214,NJBF000059895,8104 FULTON AVE,Margate City,NJ,39.3350405,-74.50602,RES1,3001,,17,NE,1959,1959,3101,2,1,1294.12547,1294.12547,3505,NO,34.42,41.79,3,3.4,6110,113.273328,123.121773,132.821285,139.37356,I,Above,Hip,0,5701,,38.10602264,0,1.2,,,,1,1,,0.35,nav,1,1959,2,, 20215,NJBF000055694,7 N PEMBROKE AVE,Margate City,NJ,39.32675971,-74.50784095,RES1,3001,,17,NE,1940,1940,3102,2,1,946.2544797,946.2544797,3505,NO,38.86,46.61,3,5.04,6106,113.352172,123.183454,132.87964,139.448842,I,Above,Gable,0,5701,,42.73596804,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20216,NJBF000056599,113 N NASSAU AVE,Margate City,NJ,39.3288386,-74.50793239,RES1,3001,,17,NE,1938,1938,3102,2,1,1913.530439,1913.530439,3505,NO,30.18,37.07,3,7.81,6110,113.319886,123.158162,132.854968,139.419804,I,Above,Hip,0,5701,,33.62424518,0,1.1,,,,1,1,,0.35,nav,1,1938,2,, 20217,NJBF000062505,7806 BURK AVE,Margate City,NJ,39.33959535,-74.50612731,RES1,3001,,18,NE,1969,1969,3102,2,1,1794.627632,1794.627632,3505,NO,32.02,38.14,3,0.76,6106,113.207494,123.068743,132.768453,139.304946,I,Above,Gable,0,5701,,35.08308094,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 20218,NJBF000060635,59 BAYSIDE COURT,Margate City,NJ,39.33630375,-74.51040259,RES1,3001,,19,NE,1999,1999,3102,2,1,3023.09033,3023.09033,3505,NO,27.66,40.31,3,5.7,6106,113.158662,123.029988,132.726491,139.266115,I,Above,Hip,0,5701,,33.98415702,0,0,,,,1,1,,0.03,nav,1,1999,2,, 20219,NJBF000056868,108 N KENYON AVE,Margate City,NJ,39.32942445,-74.50617599,RES1,3001,,17,NE,1952,1952,3102,2,1,1473.884102,1473.884102,3505,NO,22.88,32.83,3,0.74,6106,113.350008,123.182528,132.88077,139.447897,I,Above,Hip,0,5701,,27.85495855,0,0,,,,1,1,,0.03,nav,1,1952,2,, 20220,NJBF000057079,123 N LANCASTER AVE,Margate City,NJ,39.32987028,-74.50702299,RES1,3001,,17,NE,1945,1945,3101,1,1,3189.625128,3189.625128,3505,NO,13.44,23.53,3,1.97,6106,113.324947,123.162499,132.860248,139.424634,I,Above,Hip,0,5701,,18.48124522,0,1.2,,,,1,1,,0.03,nav,1,1945,1,, 20221,NJBF000060085,19 N COLMAR CIRCLE,Margate City,NJ,39.33537599,-74.50505638,RES1,3001,,19,NE,2010,2010,3101,2,1,1498.430108,1498.430108,3505,NO,29.28,35.49,3,7.81,6106,113.289898,123.135058,132.83534,139.388385,I,Above,Flat,0,5701,,32.38162998,0,1.1,,,,1,1,,0.03,nav,1,2010,2,, 20222,NJBF000056658,103 N LANCASTER AVE,Margate City,NJ,39.32898811,-74.50624346,RES1,3001,,20,NE,1925,1925,3102,3,1,1346.149977,1346.149977,3505,NO,41.38,54.16,3,2.03,6106,113.354837,123.186297,132.884363,139.45232,I,Above,Hip,0,5701,,47.76918704,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 20223,NJBF000059619,208 N DELAVAN AVE,Margate City,NJ,39.33455536,-74.49954131,RES1,3001,,17,NE,1950,1950,3103,1,1,964.3863395,964.3863395,3505,NO,16.68,24.55,3,0.96,6106,113.423214,123.242017,132.946621,139.512248,I,Above,Gable,0,5701,,20.61324489,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20224,NJBF000056749,102 N KENYON AVE,Margate City,NJ,39.3291658,-74.50592103,RES1,3001,,17,NE,1925,1925,3102,2,1,1322.396119,1322.396119,3505,NO,38.9,52.88,3,7.33,6106,113.35934,123.189963,132.888318,139.456535,I,Above,Hip,0,5701,,45.88940541,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20225,NJBF000060745,63 BAYSIDE COURT,Margate City,NJ,39.33647928,-74.51011791,RES1,3001,,19,NE,1992,1992,3102,2,1,1190.675762,1190.675762,3505,NO,21.69,32.58,3,-2.18,6106,113.162501,123.033057,132.729769,139.269416,I,Above,Hip,0,5701,,27.1315945,0,0,,,,1,1,,0.03,nav,1,1992,2,, 20226,NJBF000058733,8601 FULTON AVE,Margate City,NJ,39.33283457,-74.51129218,RES1,3001,,18,NE,1950,1950,3102,1,1,3261.294847,3261.294847,3505,NO,24.03,35.49,3,6.53,6106,113.188324,123.053464,132.748925,139.296882,I,Above,Hip,0,5701,,29.76004674,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 20227,NJBF000055525,5 S MANSFIELD AVE,Margate City,NJ,39.32633685,-74.50463693,RES1,3001,,20,NE,1962,1962,3102,3,1,1949.805324,1949.805324,3505,NO,39.19,51.44,3,-0.94,6106,113.428602,123.244828,132.943197,139.519496,I,Above,Hip,0,5701,,45.31863062,0,1.1,,,,1,1,,0.03,nav,1,1962,3,, 20228,NJBF000055700,8 S LANCASTER AVE,Margate City,NJ,39.3267677,-74.50463751,RES1,3001,,17,NE,1955,1955,3102,2,1,1036.552967,1036.552967,3505,NO,39.05,45.82,3,6.33,6106,113.422298,123.2399,132.938427,139.513974,I,Above,Flat,0,5701,,42.43516063,0,0,,,,1,1,,0.03,nav,1,1955,2,, 20229,NJBF000056513,114 N NASSAU AVE,Margate City,NJ,39.32864168,-74.50828707,RES1,3001,,21,NE,2016,2016,3102,2,1,1562.29165,1562.29165,3505,NO,29.06,40.44,3,3.6,6110,113.314949,123.154137,132.850633,139.415161,I,Above,Hip,0,5701,,34.7498027,0,1.1,,,,1,1,,0.35,nav,1,2016,2,, 20230,NJBF000056087,105 N PEMBROKE AVE,Margate City,NJ,39.32769657,-74.50868908,RES1,3001,,17,NE,1933,1933,3102,2,1,2093.078471,2093.078471,3505,NO,33.45,46.4,3,5.62,6106,113.319884,123.157806,132.853721,139.419378,I,Above,Gable,0,5701,,39.927309,0,1.1,,,,1,1,,0.03,nav,1,1933,2,, 20231,NJBF000056987,14 N HUNTINGTON AVE,Margate City,NJ,39.32967941,-74.50206974,RES1,3001,,19,NE,2012,2012,3102,2,1,1052.069773,1052.069773,3505,NO,25.39,37.61,3,2.64,6106,113.436625,123.252229,132.953684,139.52833,I,Above,Flat,0,5701,,31.50430632,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 20232,NJBF000056100,113 N QUINCY AVE,Margate City,NJ,39.32773002,-74.50963281,RES1,3001,,17,NE,1938,1938,3102,2,1,1589.915865,1589.915865,3505,NO,31.09,43.03,3,-1.05,6106,113.298691,123.140775,132.836053,139.399683,I,Above,Gable,0,5701,,37.063455,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 20233,NJBF000057841,8807 FULTON AVE,Margate City,NJ,39.33125384,-74.51406485,RES1,3001,,19,NE,1940,1940,3102,2,1,1993.765809,1993.765809,3505,NO,23.49,31.89,3,-0.84,6106,113.150051,123.022466,132.715841,139.261885,I,Above,Hip,0,5701,,27.69007784,0,0,,,,1,1,,0.03,nav,1,1940,2,, 20234,NJBF000055798,3 S LANCASTER AVE,Margate City,NJ,39.32699491,-74.50440097,RES1,3001,,17,NE,1952,1952,3102,2,1,957.1236503,957.1236503,3505,NO,38.89,48.71,3,6.21,6106,113.424194,123.241501,132.940288,139.515889,I,Above,Hip,0,5701,,43.79697735,0,0,,,,1,1,,0.03,nav,1,1952,2,, 20235,NJBF000055817,,Margate City,NJ,39.32704747,-74.50296082,RES1,3001,,NaN,NE,1969,0,3102,2,1,1099.906348,1099.906348,3505,NO,41.7,49.78,3,3.71,6106,113.455035,123.266348,132.966259,139.544541,I,Above,Gable,0,5701,,45.74187788,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20236,NJBF000055780,,Margate City,NJ,39.32694919,-74.50287991,RES1,3001,,NaN,NE,1969,0,3102,2,1,967.3283485,967.3283485,3505,NO,25.23,32.26,3,3.08,6106,113.458235,123.268894,132.968833,139.547444,I,Above,Gable,0,5701,,28.74801918,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20237,NJBF000056706,8201 VENTNOR AVE,Margate City,NJ,39.32908461,-74.50156291,RES1,3001,,18,NE,1952,1952,3102,2,1,2504.794068,2504.794068,3505,NO,34.53,45.14,3,6.21,6106,113.456303,123.267927,132.969613,139.546554,I,Above,Gable,0,5701,,39.83735302,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 20238,NJBF000056040,7 N MANSFIELD AVE,Margate City,NJ,39.32758496,-74.50582315,RES1,3001,,17,NE,1957,1957,3102,2,1,1719.41936,1719.41936,3505,NO,33.66,42.03,3,5.63,6106,113.384409,123.209672,132.907601,139.479293,I,Above,Hip,0,5701,,37.84448974,0,0,,,,1,1,,0.03,nav,1,1957,2,, 20239,NJBF000056914,17 N IROQUOIS AVE,Margate City,NJ,39.32952827,-74.50307181,RES1,3001,,17,NE,1925,1925,3102,2,1,1107.603198,1107.603198,3505,NO,38.31,50.93,3,7.38,6106,113.416757,123.236216,132.936839,139.509889,I,Above,Hip,0,5701,,44.6196824,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20240,NJBF000056323,8603 WINCHESTER AVE,Margate City,NJ,39.32821231,-74.50732898,RES1,3001,,17,NE,1925,1925,3102,2,2,1926.52397,1926.52397,3505,NO,23.16,29.84,3,-1.34,6106,113.342234,123.175943,132.872984,139.440383,I,Above,Hip,0,5701,,26.50298753,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20241,NJBF000059304,2 S COLMAR CIRCLE,Margate City,NJ,39.33397483,-74.50373676,RES1,3001,,17,NE,1915,1915,3101,1,1,1530.190869,1530.190869,3505,NO,14.82,28.07,3,0.49,6106,113.338752,123.17419,132.875294,139.43521,I,Above,Gable,0,5701,,21.44299564,0,1.1,,,,1,1,,0.03,nav,1,1915,1,, 20242,NJBF000060395,400 N ESSEX AVE,Margate City,NJ,39.3358974,-74.50263817,RES1,3001,,17,NE,1952,1952,3102,2,1,1657.305831,1657.305831,3505,NO,28.63,40.96,3,5.58,6106,113.336032,123.172038,132.874273,139.430011,I,Above,Flat,0,5701,,34.79711532,0,0,,,,1,1,,0.03,nav,1,1952,2,, 20243,NJBF000056515,305 N THURLOW AVE,Margate City,NJ,39.32864245,-74.51337461,RES1,3001,,19,NE,1955,1955,3102,2,1,2329.278875,2329.278875,3505,NO,26.97,39.47,3,1.06,6106,113.203255,123.064388,132.757512,139.311209,I,Above,Gable,0,5701,,33.22004342,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 20244,NJBF000056693,105 N LANCASTER AVE,Margate City,NJ,39.3290585,-74.50633784,RES1,3001,,20,NE,1942,1942,3102,2,1,1173.637737,1173.637737,3505,NO,30.91,36.88,3,5.12,6106,113.351722,123.183812,132.881829,139.449439,I,Above,Hip,0,5701,,33.89218938,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 20245,NJBF000059767,208 N CLERMONT AVE,Margate City,NJ,39.33481442,-74.49909151,RES1,3001,,17,NE,1950,1950,3103,1,1,1242.819228,1242.819228,3505,NO,17.49,22.55,3,3.17,6106,113.429501,123.247071,132.952095,139.517608,I,Above,Gable,0,5701,,20.02419762,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20246,NJBF000059020,8515 WELLINGTON AVE,Margate City,NJ,39.33338396,-74.51082953,RES1,3001,,18,NE,1985,1985,3102,3,1,2410.082066,2410.082066,3505,NO,55.76,66.98,3,7.96,6106,113.190653,123.055408,132.751271,139.298697,I,Above,Hip,0,5701,,61.37123472,0,1.1,,,,1,1,,0.03,nav,1,1985,3,, 20247,NJBF000060802,406 N GLADSTONE AVE,Margate City,NJ,39.33655922,-74.50569394,RES1,3001,,18,NE,1981,1981,3101,2,1,2349.812778,2349.812778,3505,NO,31.74,39.54,3,8.37,6106,113.259217,123.110457,132.810374,139.358344,I,Above,Hip,0,5701,,35.64094736,0,0,,,,1,1,,0.03,nav,1,1981,2,, 20248,NJBF000063003,611 N CLERMONT AVE,Margate City,NJ,39.34067503,-74.50420513,RES1,3001,,18,NE,1969,1969,3102,2,1,2241.578385,2241.578385,3505,NO,26.07,40.31,3,1.39,6106,113.235291,123.090752,132.79194,139.327537,I,Above,Gable,0,5701,,33.1916508,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 20249,NJBF000056464,8702 MONMOUTH AVE,Margate City,NJ,39.32852542,-74.50946165,RES1,3001,,17,NE,1956,1956,3102,2,1,2615.308477,2615.308477,3505,NO,34.46,40.72,3,4.92,6106,113.290849,123.134731,132.830378,139.392711,I,Above,Hip,0,5701,,37.59156715,0,0,,,,1,1,,0.03,nav,1,1956,2,, 20250,NJBF000055598,15 S LANCASTER AVE,Margate City,NJ,39.32652445,-74.5039834,RES1,3001,,21,NE,2012,2012,3102,3,1,1886.661271,1886.661271,3505,NO,42.01,54.79,3,5.86,6106,113.440218,123.254246,132.95318,139.530421,I,Above,Gable,0,5701,,48.40262477,0,0,,,,1,1,,0.03,nav,1,2012,3,, 20251,NJBF000060645,8211 MARSHALL AVE,Margate City,NJ,39.336337,-74.50986317,RES1,3001,,17,NE,1971,1971,3102,2,1,1283.385113,1283.385113,3505,NO,26.34,36.31,3,1.91,6106,113.170137,123.039166,132.736043,139.276656,I,Above,Hip,0,5701,,31.32464954,0,0,,,,1,1,,0.03,nav,1,1971,2,, 20252,NJBF000060703,8209 MARSHALL AVE,Margate City,NJ,39.33642548,-74.50968224,RES1,3001,,17,NE,1971,1971,3101,1,1,2099.912958,2099.912958,3505,NO,16.83,31.31,3,3.06,6106,113.172902,123.041377,132.738386,139.279083,I,Above,Hip,0,5701,,24.06883311,0,0,,,,1,1,,0.03,nav,1,1971,1,, 20253,NJBF000059907,21 E COLMAR CIRCLE,Margate City,NJ,39.33505847,-74.50458967,RES1,3001,,20,NE,1956,1956,3101,2,1,1175.091016,1175.091016,3505,NO,27.71,41.6,3,0.37,6106,113.304661,123.146889,132.847489,139.402426,I,Above,Flat,0,5701,,34.655353,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 20254,NJBF000056064,11 S JASPER AVE,Margate City,NJ,39.32764925,-74.50197842,RES1,3001,,20,NE,1946,1946,3102,2,1,1478.243288,1478.243288,3505,NO,31.01,36.97,3,0.07,6106,113.46789,123.27688,132.977773,139.556825,I,Above,Hip,0,5701,,33.99049804,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 20255,NJBF000059655,11 E COLMAR CIRCLE,Margate City,NJ,39.33462359,-74.50422675,RES1,3001,,17,NE,1955,1955,3101,2,1,1662.28395,1662.28395,3505,NO,27.68,37.94,3,0.42,6106,113.318785,123.158203,132.859024,139.416013,I,Above,Flat,0,5701,,32.81113528,0,0,,,,1,1,,0.03,nav,1,1955,2,, 20256,NJBF000059828,31 N COLMAR CIRCLE,Margate City,NJ,39.33492328,-74.5061592,RES1,3001,,17,NE,1959,1959,3101,2,1,1716.202335,1716.202335,3505,NO,31.47,43.78,3,0.59,6106,113.271906,123.120631,132.820024,139.372395,I,Above,Hip,0,5701,,37.62105349,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 20257,NJBF000056722,118 N MANSFIELD AVE,Margate City,NJ,39.32912434,-74.50785691,RES1,3001,,19,NE,1949,1949,3102,2,1,1660.104754,1660.104754,3505,NO,45.86,54.87,3,7.82,6106,113.317402,123.156245,132.853188,139.417554,I,Above,Gable,0,5701,,50.3642748,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 20258,NJBF000060765,414 N EXETER AVE,Margate City,NJ,39.33651439,-74.50403311,RES1,3001,,19,NE,1987,1987,3102,2,1,1697.160627,1697.160627,3505,NO,25.02,34.67,3,-1.55,6106,113.296578,123.140387,132.841579,139.392735,I,Above,Hip,0,5701,,29.84456117,0,0,,,,1,1,,0.03,nav,1,1987,2,, 20259,NJBF000056899,10 N HUNTINGTON AVE,Margate City,NJ,39.32949514,-74.50190887,RES1,3001,,21,NE,2014,2014,3102,3,1,1180.852967,1180.852967,3505,NO,33.94,48.13,3,0.56,6106,113.442806,123.257161,132.958691,139.534065,I,Above,Hip,0,5701,,41.03410475,0,0,,,,1,1,,0.03,nav,1,2014,3,, 20260,NJBF000058096,15 S BARCLAY AVE,Margate City,NJ,39.33171331,-74.4935946,RES1,3001,,19,NE,1930,1930,3102,3,1,1263.790967,1263.790967,3505,NO,55.39,64.08,3,2.44,6106,113.594236,123.379438,133.088711,139.673353,I,Above,Gable,0,5701,,59.73450844,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 20261,NJBF000056298,115 N PEMBROKE AVE,Margate City,NJ,39.32815934,-74.50916744,RES1,3001,,18,NE,1921,1921,3102,2,1,2246.76991,2246.76991,3505,NO,38.66,49.51,3,6.04,6106,113.302656,123.144106,132.839841,139.403562,I,Above,Gable,0,5701,,44.08342841,0,1.2,,,,1,1,,0.03,nav,1,1921,2,, 20262,NJBF000056112,6 N KENYON AVE,Margate City,NJ,39.32775168,-74.50482168,RES1,3001,,21,NE,1936,2016,3102,2,1,962.467891,962.467891,3505,NO,24.92,37.09,3,3.53,6106,113.403956,123.225451,132.924181,139.497532,I,Above,Gable,0,5701,,31.0066357,0,0,,,,1,1,,0.03,nav,1,1936,2,, 20263,NJBF000060238,8092 FULTON AVE,Margate City,NJ,39.33563157,-74.50500657,RES1,3001,,17,NE,1959,1959,3101,2,1,1228.695563,1228.695563,3505,NO,34.42,41.75,3,8.38,6106,113.287387,123.133046,132.833395,139.385705,I,Above,Hip,0,5701,,38.08675819,0,0,,,,1,1,,0.03,nav,1,1959,2,, 20264,NJBF000062684,3 BAYSHORE CT,Margate City,NJ,39.3400105,-74.506564,RES1,3001,,18,NE,1968,1968,3102,2,1,1428.755828,1428.755828,3505,NO,34.11,44.76,3,8.35,6106,113.192093,123.056355,132.75573,139.289929,I,Above,Gable,0,5701,,39.43627807,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 20265,NJBF000056020,109 N QUINCY AVE,Margate City,NJ,39.3275332,-74.50947298,RES1,3001,,17,NE,1930,1930,3101,1,1,1704.686131,1704.686131,3505,NO,26.85,38.78,3,8.08,6106,113.305079,123.145845,132.841166,139.405526,I,Above,Hip,0,5701,,32.81172715,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 20266,NJBF000058103,8300 AMHERST AVE,Margate City,NJ,39.33172316,-74.50651597,RES1,3001,,17,NE,1955,1955,3102,2,1,1239.011519,1239.011519,3505,NO,31.03,44.04,3,2.11,6106,113.30948,123.150453,132.849025,139.409863,I,Above,Hip,0,5701,,37.53611968,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 20267,NJBF000056011,3 S KNIGHT AVE,Margate City,NJ,39.32751899,-74.50332834,RES1,3001,,18,NE,1954,1954,3102,2,1,1367.705512,1367.705512,3505,NO,28.86,41.48,3,5.75,6106,113.440134,123.254496,132.954287,139.530999,I,Above,Flat,0,5701,,35.16945623,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 20268,NJBF000056859,20 N IROQUOIS AVE,Margate City,NJ,39.32941547,-74.50348042,RES1,3001,,18,NE,1961,1961,3102,2,1,1677.13845,1677.13845,3505,NO,28.41,38.15,3,-1.59,6106,113.409411,123.230282,132.930555,139.503064,I,Above,Gable,0,5701,,33.2798251,0,0,,,,1,1,,0.03,nav,1,1961,2,, 20269,NJBF000055025,9408 AMHERST AVE,Margate City,NJ,39.324926,-74.5183355,RES3B,3001,,39,ME,2004,2004,3301,3,1,3793.157139,3793.157139,3505,NO,55.3,60.83,3,8.23,6106,113.14971,123.01966,132.708567,139.258687,I,Above,Gable,0,5701,,58.06338786,0,0,,,,1,1,,0.03,nav,1,2004,3,, 20270,NJBF000053153,102 S MONROE AVE,Margate City,NJ,39.31891045,-74.51607747,RES3D,3001,,30,ME,1985,1985,3301,2,2,2935.052467,2935.052467,3505,NO,23.94,36.49,3,0.49,6106,113.289689,123.128845,132.816027,139.380247,I,Above,Flat,0,NaN,,30.21414384,0,0,,,,1,1,,0.03,nav,1,1985,2,, 20271,NJBF000061088,23 N GILMAR CIRCLE,Margate City,NJ,39.33703395,-74.50735416,RES1,3001,,17,NE,1965,1965,3101,1,1,1502.462056,1502.462056,3505,NO,22.2,29.71,3,6.03,6106,113.215858,123.075725,132.77444,139.317701,I,Above,Gable,0,5701,,25.95518745,0,0,,,,1,1,,0.03,nav,1,1965,1,, 20272,NJBF000061848,7400 FREMONT AVE,Margate City,NJ,39.3383636,-74.49771828,RES1,3001,,17,NE,1987,1987,3103,2,1,1792.50089,1792.50089,3505,NO,35.9,49.74,3,2.06,6106,113.410666,123.231704,132.938298,139.492576,I,Above,Gable,0,5701,,42.82080109,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 20273,NJBF000056029,16 S IROQUOIS AVE,Margate City,NJ,39.32755887,-74.50164909,RES1,3001,,17,NE,1950,1950,3102,2,1,1151.873235,1151.873235,3505,NO,21.02,27.45,3,-0.45,6106,113.476415,123.283718,132.984842,139.564685,I,Above,Gable,0,5701,,24.23394701,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20274,NJBF000059764,312 N GLADSTONE AVE,Margate City,NJ,39.33480894,-74.5039795,RES1,3001,,17,NE,1959,1959,3101,2,1,1643.42392,1643.42392,3505,NO,37.83,42.98,3,6.26,6106,113.321658,123.160512,132.861552,139.418422,I,Above,Hip,0,5701,,40.40379045,0,0,,,,1,1,,0.03,nav,1,1959,2,, 20275,NJBF000057240,213 N MANSFIELD AVE,Margate City,NJ,39.3302119,-74.50835342,RES1,3001,,17,NE,1950,1950,3101,1,1,1123.09041,1123.09041,3505,NO,18.85,32.24,3,0.14,6106,113.290761,123.135122,132.832015,139.392859,I,Above,Flat,0,5701,,25.54294036,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20276,NJBF000056848,9 N HANOVER AVE,Margate City,NJ,39.32938965,-74.50211753,RES1,3001,,17,NE,1930,1930,3102,2,1,775.829762,775.829762,3505,NO,39.67,49.28,3,2.11,6106,113.439718,123.254653,132.955987,139.531194,I,Above,Hip,0,5701,,44.47439584,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20277,NJBF000056245,6 S IROQUOIS AVE,Margate City,NJ,39.32803542,-74.50201746,RES1,3001,,18,NE,1944,1944,3102,2,1,1195.193048,1195.193048,3505,NO,25.5,37.16,3,-1.83,6106,113.461455,123.271807,132.972799,139.551036,I,Above,Hip,0,5701,,31.33082272,0,1.1,,,,1,1,,0.03,nav,1,1944,2,, 20278,NJBF000055874,8305 ATLANTIC AVE,Margate City,NJ,39.32718341,-74.50165877,RES1,3001,,17,NE,1954,1954,3101,1,1,1655.090387,1655.090387,3505,NO,19.15,25.52,3,2.32,6106,113.481638,123.287813,132.988797,139.569304,I,Above,Flat,0,5701,,22.33362799,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 20279,NJBF000058438,12 EDGMAR CIRCLE,Margate City,NJ,39.33231268,-74.50644833,RES1,3001,,17,NE,1960,1960,3101,2,1,1982.141706,1982.141706,3505,NO,32.75,47.34,3,7.25,6106,113.302548,123.144979,132.843726,139.403128,I,Above,Hip,0,5701,,40.04186698,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20280,NJBF000057312,505 N UNION AVE,Margate City,NJ,39.33034676,-74.51586462,RES1,3001,,19,NE,1990,1990,3102,2,1,1561.223562,1561.223562,3505,NO,43.53,54.44,3,6.28,6106,113.123673,123.001057,132.69314,139.237375,I,Above,Hip,0,5701,,48.98529526,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 20281,NJBF000061425,8109 MARSHALL AVE,Margate City,NJ,39.33761131,-74.50767376,RES1,3001,,17,NE,1973,1973,3101,1,1,2111.988668,2111.988668,3505,NO,21.89,31.72,3,4.97,6106,113.200723,123.063578,132.762091,139.302801,I,Above,Hip,0,5701,,26.80722392,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 20282,NJBF000059647,309 N GLADSTONE AVE,Margate City,NJ,39.33461049,-74.5032264,RES1,3001,,17,NE,1960,1960,3101,1,1,1915.849599,1915.849599,3505,NO,26.99,37.54,3,8.86,6106,113.341085,123.176089,132.877691,139.436589,I,Above,Gable,0,5701,,32.2628849,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 20283,NJBF000057173,8301 WINCHESTER AVE,Margate City,NJ,39.33007489,-74.50407622,RES1,3001,,17,NE,1957,1957,3101,1,1,1267.884229,1267.884229,3507,NO,12.92,20.95,1,2.19,6106,113.386815,123.212262,132.91226,139.48208,I,Above,Hip,0,5701,,16.93597692,0,0,,,,1,1,,0.03,nav,1,1957,1,, 20284,NJBF000058059,27 N FRONTENAC AVE,Margate City,NJ,39.33164086,-74.49980213,RES1,3001,,18,NE,1935,1935,3102,2,1,819.2806937,819.2806937,3505,NO,35.34,41.65,3,8.27,6106,113.458549,123.270199,132.974011,139.548028,I,Above,Hip,0,5701,,38.49255909,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 20285,NJBF000059493,5 E COLMAR CIRCLE,Margate City,NJ,39.334351,-74.5038525,RES1,3001,,18,NE,1980,1980,3101,2,1,871.5758792,871.5758792,3505,NO,41.84,52.02,3,7.98,6106,113.33091,123.167918,132.868991,139.427535,I,Above,Gable,0,5701,,46.93120038,0,0,,,,1,1,,0.03,nav,1,1980,2,, 20286,NJBF000060448,301 N CLERMONT AVE,Margate City,NJ,39.33598759,-74.49968952,RES1,3001,,17,NE,1975,1975,3103,2,1,1569.545293,1569.545293,3505,NO,40.05,52.34,3,3.77,6106,113.399913,123.223289,132.927965,139.488391,I,Above,Hip,0,5701,,46.19795853,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 20287,NJBF000062183,11 BAYCREST DRIVE,Margate City,NJ,39.33894859,-74.50769652,RES1,3001,,18,NE,1978,1978,3102,2,1,2294.272678,2294.272678,3505,NO,29.51,36.3,3,4.74,6106,113.181622,123.04816,132.746696,139.282715,I,Above,Gable,0,5701,,32.90320782,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 20288,NJBF000058069,26 N EXETER AVE,Margate City,NJ,39.331655,-74.4992975,RES1,3001,,17,NE,1937,1937,3102,2,1,1024.585584,1024.585584,3505,NO,32.95,38.96,3,0.86,6106,113.469474,123.278988,132.983225,139.558129,I,Above,Hip,0,5701,,35.95515073,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 20289,NJBF000058016,203 N IROQUOIS AVE,Margate City,NJ,39.33156325,-74.50499447,RES1,3001,,19,NE,2011,2011,3102,3,1,1201.928349,1201.928349,3505,NO,53.83,61.81,3,-0.42,6106,113.345292,123.179178,132.878848,139.443148,I,Above,Flat,0,5701,,57.81807169,0,0,,,,1,1,,0.03,nav,1,2011,3,, 20290,NJBF000053056,103 S COOLIDGE AVE,Margate City,NJ,39.31846384,-74.51658602,RES1,3001,,19,NE,1945,1945,3102,2,1,1485.758906,1485.758906,3507,NO,24.8,32.33,1,-0.21,6106,113.285448,123.125092,132.811712,139.375456,I,Above,Flat,0,5701,,28.56813404,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20291,NJBF000057031,8305 WINCHESTER AVE,Margate City,NJ,39.32976585,-74.50461351,RES1,3001,,17,NE,1950,1950,3102,2,1,1220.093747,1220.093747,3507,NO,35.21,49.92,1,1.23,6106,113.379423,123.206253,132.905756,139.475233,I,Above,Gable,0,5701,,42.56784213,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20292,NJBF000060975,215 N BRUNSWICK DR,Margate City,NJ,39.33684066,-74.49877549,RES1,3001,,18,NE,1950,1950,3103,2,1,960.2814066,960.2814066,3505,NO,33.14,38.65,3,2.22,6106,113.408294,123.229967,132.935517,139.494252,I,Above,Hip,0,5701,,35.89599811,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20293,NJBF000057861,117 N HANOVER AVE,Margate City,NJ,39.33127977,-74.5039204,RES1,3001,,17,NE,1955,1955,3101,1,1,1439.797739,1439.797739,3507,NO,14.06,25.24,1,2.53,6106,113.372989,123.201378,132.901802,139.468952,I,Above,Gable,0,5701,,19.64957278,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 20294,NJBF000057788,32 N GLADSTONE AVE,Margate City,NJ,39.33116311,-74.50099362,RES1,3001,,20,NE,2006,2006,3102,2,1,1579.543912,1579.543912,3505,NO,25.44,40.28,3,4.14,6106,113.439091,123.254486,132.957201,139.530272,I,Above,Gable,0,5701,,32.86091477,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 20295,NJBF000057674,122 N IROQUOIS AVE,Margate City,NJ,39.33097224,-74.50494484,RES1,3001,,17,NE,1952,1952,3101,1,1,912.9852908,912.9852908,3507,NO,17.13,31.12,1,1.51,6106,113.354826,123.186734,132.886302,139.452214,I,Above,Flat,0,5701,,24.12492097,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 20296,NJBF000061687,8208 LAGOON DRIVE,Margate City,NJ,39.33807763,-74.51144511,RES1,3001,,18,NE,1978,1978,3102,2,1,1845.34334,1845.34334,3505,NO,40.35,46.1,3,7.35,6106,113.110716,122.991598,132.687485,139.219254,I,Above,Hip,0,5701,,43.22345161,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 20297,NJBF000058306,36 N EXETER AVE,Margate City,NJ,39.33206634,-74.49962476,RES1,3001,,18,NE,1928,1928,3102,2,1,1574.054163,1574.054163,3505,NO,33.27,44.34,3,-1.17,6106,113.456423,123.268542,132.972599,139.545759,I,Above,Gable,0,5701,,38.80460027,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 20298,NJBF000061581,15 HARBOUR LANE,Margate City,NJ,39.3379006,-74.50835965,RES1,3001,,18,NE,1980,1980,3102,2,1,1827.685862,1827.685862,3505,NO,31.76,38.41,3,6.44,6106,113.181494,123.048176,132.746205,139.284624,I,Above,Gable,0,5701,,35.08516607,0,0,,,,1,1,,0.03,nav,1,1980,2,, 20299,NJBF000053020,9801 ATLANTIC AVE,Margate City,NJ,39.31829329,-74.51687405,RES3C,3004,,21,ME,1956,1956,3301,1,1,2454.749676,2454.749676,3505,NO,14.94,21.45,3,-1.65,6106,113.281817,123.122027,132.808378,139.371751,I,Above,Flat,0,5701,,18.19424805,0,0,,,,1,1,,0.03,nav,1,1956,1,, 20300,NJBF000056685,8501 WINCHESTER AVE,Margate City,NJ,39.32904073,-74.50587611,RES1,3001,,17,NE,1948,1948,3102,2,1,1818.445792,1818.445792,3505,NO,33.19,43.04,3,4.68,6106,113.362135,123.192178,132.89053,139.459111,I,Above,Hip,0,5701,,38.11314533,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 20301,NJBF000057548,5 N FRANKLIN AVE,Margate City,NJ,39.3307643,-74.4986721,RES1,3001,,17,NE,1950,1950,3102,1,1,953.7811375,953.7811375,3505,NO,19.69,32.76,3,4.96,6106,113.495893,123.300114,133.004656,139.583067,I,Above,Hip,0,5701,,26.22739695,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20302,NJBF000062054,9 BAYCREST DRIVE,Margate City,NJ,39.33871794,-74.50767027,RES1,3001,,18,NE,1979,1979,3102,2,1,1977.122428,1977.122428,3505,NO,22.3,33.99,3,0.37,6106,113.185421,123.051228,132.74978,139.286665,I,Above,Gable,0,5701,,28.14122619,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 20303,NJBF000057804,19 N FRONTENAC AVE,Margate City,NJ,39.33119087,-74.49938184,RES1,3001,,17,NE,1954,1954,3102,2,1,1803.291508,1803.291508,3505,NO,44.19,55.77,3,7.98,6106,113.47419,123.282717,132.98677,139.562769,I,Above,Flat,0,5701,,49.97755038,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 20304,NJBF000060826,207 N BELMONT DR,Margate City,NJ,39.33660129,-74.49753436,RES1,3001,,17,NE,1950,1950,3103,1,1,854.4475816,854.4475816,3505,NO,22.78,33.37,3,4.62,6106,113.439049,123.254683,132.961289,139.522788,I,Above,Hip,0,5701,,28.0749333,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20305,NJBF000058012,34 N FRONTENAC AVE,Margate City,NJ,39.33155426,-74.50023504,RES1,3001,,17,NE,1920,1920,3101,1,1,1174.014912,1174.014912,3505,NO,18.16,24.73,3,2.21,6106,113.450246,123.263511,132.966943,139.540397,I,Above,Hip,0,5701,,21.44474994,0,0,,,,1,1,,0.03,nav,1,1920,1,, 20306,NJBF000060670,208 N BELMONT DR,Margate City,NJ,39.33637809,-74.49796258,RES1,3001,,17,NE,1950,1950,3103,2,1,1034.919954,1034.919954,3505,NO,27.65,38.84,3,3.79,6106,113.432658,123.249564,132.955769,139.517476,I,Above,Gable,0,5701,,33.2438706,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20307,NJBF000057857,24 N FRONTENAC AVE,Margate City,NJ,39.33127612,-74.49998018,RES1,3001,,17,NE,1920,1920,3102,2,1,1056.627819,1056.627819,3505,NO,40.34,52.28,3,8.02,6106,113.459813,123.271166,132.974742,139.549411,I,Above,Hip,0,5701,,46.30786463,0,0,,,,1,1,,0.03,nav,1,1920,2,, 20308,NJBF000060162,312 N ESSEX AVE,Margate City,NJ,39.33550342,-74.5023039,RES1,3001,,17,NE,1956,1956,3102,1,1,2245.969258,2245.969258,3505,NO,21.2,35.96,3,4.03,6106,113.348922,123.182384,132.884841,139.442497,I,Above,Hip,0,5701,,28.58151386,0,0,,,,1,1,,0.03,nav,1,1956,1,, 20309,NJBF000055695,8401 ATLANTIC AVE,Margate City,NJ,39.32676013,-74.50246698,RES1,3001,,19,NE,1925,1925,3102,3,1,1968.450219,1968.450219,3505,NO,46,52.89,3,-1.77,6106,113.470041,123.278342,132.978535,139.558258,I,Above,Hip,0,5701,,49.44358725,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 20310,NJBF000061476,12 HARBOUR LANE,Margate City,NJ,39.33771193,-74.50876132,RES1,3001,,18,NE,1984,1984,3102,2,1,1722.523255,1722.523255,3505,NO,43.85,52.59,3,5.1,6106,113.175252,123.0432,132.740934,139.279224,I,Above,Flat,0,5701,,48.22193721,0,0,,,,1,1,,0.03,nav,1,1984,2,, 20311,NJBF000057330,30 N HUNTINGTON AVE,Margate City,NJ,39.33038003,-74.50275782,RES1,3001,,20,NE,2007,2007,3102,3,1,1104.491808,1104.491808,3505,NO,47.48,56.95,3,5.45,6106,113.411441,123.23212,132.933223,139.504889,I,Above,Flat,0,5701,,52.21497911,0,0,,,,1,1,,0.03,nav,1,2007,3,, 20312,NJBF000057106,105 N JEROME AVE,Margate City,NJ,39.3299346,-74.50507982,RES1,3001,,17,NE,1954,1954,3101,1,1,1527.797811,1527.797811,3507,NO,16.25,22.95,1,-0.84,6106,113.366742,123.196098,132.895297,139.463454,I,Above,Hip,0,5701,,19.59924379,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 20313,NJBF000061679,25 BAYSIDE COURT,Margate City,NJ,39.33805832,-74.51091645,RES1,3001,,19,NE,1997,1997,3102,2,1,2042.646263,2042.646263,3505,NO,35.78,50.56,3,4,6106,113.122709,123.00118,132.697424,139.230322,I,Above,Hip,0,5701,,43.16855874,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 20314,NJBF000054773,,Margate City,NJ,39.32427035,-74.50505985,RES1,3001,,NaN,NE,1969,0,3103,6,1,1834.16383,1834.16383,3505,NO,73.5,85.16,3,7.19,6106,113.449611,123.260955,132.958175,139.536854,I,Above,Flat,0,5701,,79.3317303,0,0,,,,1,1,,0.03,nav,1,1969,6,, 20315,NJBF000057142,22 N HUNTINGTON AVE,Margate City,NJ,39.3300105,-74.50243087,RES1,3001,,17,NE,1925,1925,3102,2,1,1383.628033,1383.628033,3505,NO,46.54,60.86,3,8.85,6106,113.423923,123.242082,132.943344,139.516524,I,Above,Hip,0,5701,,53.70024974,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20316,NJBF000054647,114 S OSBORNE AVE,Margate City,NJ,39.32395124,-74.50479289,RES1,3001,,19,NE,1925,1925,3102,2,1,2273.268226,2273.268226,3505,NO,44.29,56.98,3,8.71,6106,113.460147,123.269312,132.966593,139.5462,I,Above,Hip,0,5701,,50.63278923,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20317,NJBF000056165,4 S JASPER AVE,Margate City,NJ,39.32786541,-74.50260453,RES1,3001,,20,NE,1988,1988,3102,2,1,1601.61446,1601.61446,3505,NO,34.97,45.67,3,6.83,6106,113.450998,123.263343,132.963814,139.541257,I,Above,Gable,0,5701,,40.32202107,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 20318,NJBF000060757,205 N BELMONT DR,Margate City,NJ,39.3365006,-74.49741382,RES1,3001,,17,NE,1950,1950,3103,1,1,769.2648843,769.2648843,3505,NO,13.8,26.81,3,3.09,6106,113.443086,123.257933,132.964633,139.526691,I,Above,Gable,0,5701,,20.30241554,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20319,NJBF000060428,204 N BRUNSWICK DR,Margate City,NJ,39.33594894,-74.4985847,RES1,3001,,19,NE,2008,2008,3103,3,1,1269.212904,1269.212904,3505,NO,44.17,56.74,3,-1.25,6106,113.424872,123.243332,132.948947,139.511282,I,Above,Flat,0,5701,,50.45570205,0,0,,,,1,1,,0.03,nav,1,2008,3,, 20320,NJBF000054731,6 N WILSON AVE,Margate City,NJ,39.32418094,-74.51234327,RES1,3001,,18,NE,1958,1958,3101,1,1,2211.912944,2211.912944,3505,NO,21.32,28.1,3,2.15,6106,113.291669,123.133635,132.82578,139.390202,I,Above,Hip,0,5701,,24.71086575,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 20321,NJBF000059864,302 N ESSEX AVE,Margate City,NJ,39.33497966,-74.50176958,RES1,3001,,17,NE,1956,1956,3102,2,1,1617.619138,1617.619138,3505,NO,21.79,28.57,3,-2.86,6106,113.368042,123.197726,132.900546,139.460886,I,Above,Hip,0,5701,,25.18068706,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 20322,NJBF000062248,7803 MARSHALL AVE,Margate City,NJ,39.339082,-74.505128,RES1,3001,,18,NE,1968,1968,3102,2,1,1850.787925,1850.787925,3505,NO,33.31,39.59,3,6.55,6106,113.236706,123.092191,132.792665,139.332773,I,Above,Gable,0,5701,,36.44708424,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 20323,NJBF000054467,115 S QUINCY AVE,Margate City,NJ,39.32347147,-74.50561669,RES1,3001,,18,NE,1920,1920,3103,3,1,1474.834615,1474.834615,3505,NO,47.34,57.42,3,3.3,6106,113.449198,123.260272,132.956726,139.535435,I,Above,Gable,0,5701,,52.37983712,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 20324,NJBF000061688,11 HARBOUR LANE,Margate City,NJ,39.33807863,-74.50853919,RES1,3001,,18,NE,1987,1987,3102,2,1,2012.515953,2012.515953,3505,NO,31.96,37.55,3,4.58,6106,113.175052,123.043009,132.740915,139.278386,I,Above,Flat,0,5701,,34.7535864,0,0,,,,1,1,,0.03,nav,1,1987,2,, 20325,NJBF000062646,605 N DELAVAN AVE,Margate City,NJ,39.33991847,-74.50428719,RES1,3001,,18,NE,1962,1962,3102,2,1,2078.040669,2078.040669,3505,NO,31.8,44.27,3,2.31,6106,113.243841,123.097752,132.798888,139.337271,I,Above,Hip,0,5701,,38.03644551,0,0,,,,1,1,,0.03,nav,1,1962,2,, 20326,NJBF000060679,203 N BELMONT DR,Margate City,NJ,39.33638741,-74.49725963,RES1,3001,,17,NE,1950,1950,3103,1,1,1096.575444,1096.575444,3505,NO,18.34,32.6,3,0.68,6106,113.448069,123.261943,132.968767,139.531484,I,Above,Hip,0,5701,,25.47022905,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 20327,NJBF000061880,23 HARBOUR LANE,Margate City,NJ,39.33841162,-74.5076808,RES1,3001,,18,NE,1979,1979,3102,2,1,1630.004316,1630.004316,3505,NO,27.29,37.8,3,0.78,6106,113.189423,123.054464,132.753002,139.29094,I,Above,Hip,0,5701,,32.54653873,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 20328,NJBF000061875,8202 LAGOON DRIVE,Margate City,NJ,39.33840177,-74.51082444,RES1,3001,,18,NE,1977,1977,3102,2,1,2381.889832,2381.889832,3505,NO,42.47,55.55,3,8.5,6106,113.119946,122.998943,132.695257,139.227185,I,Above,Gable,0,5701,,49.01315809,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 20329,NJBF000054947,117 S MANSFIELD AVE,Margate City,NJ,39.3247185,-74.50325,RES1,3001,,23,NE,2017,2017,3102,3,1,802.9737155,802.9737155,3505,NO,39.05,50.76,3,-0.5,6106,113.482645,123.287767,132.98655,139.567963,I,Above,Flat,0,5701,,44.90482425,0,0,,,,1,1,,0.03,nav,1,2017,3,, 20330,NJBF000057721,8300 MONMOUTH AVE,Margate City,NJ,39.33104916,-74.50504613,RES1,3001,,17,NE,1966,1966,3102,2,1,2063.564481,2063.564481,3507,NO,35.39,46.63,1,1.62,6106,113.351499,123.184076,132.883586,139.449104,I,Above,Gable,0,5701,,41.00962452,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 20331,NJBF000060351,331 N GLADSTONE AVE,Margate City,NJ,39.33582292,-74.50439326,RES1,3001,,17,NE,1964,1964,3101,2,1,1686.263179,1686.263179,3505,NO,36.12,41.29,3,7.57,6106,113.298279,123.141773,132.842616,139.395438,I,Above,Gable,0,5701,,38.70265422,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 20332,NJBF000057214,102 N IROQUOIS AVE,Margate City,NJ,39.33015651,-74.5041817,RES1,3001,,17,NE,1940,1940,3101,1,1,1684.127702,1684.127702,3507,NO,18.34,24.12,1,2.18,6106,113.383306,123.209458,132.909398,139.478814,I,Above,Gable,0,5701,,21.23457911,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 20333,NJBF000057457,125 N JEROME AVE,Margate City,NJ,39.33060552,-74.50573932,RES1,3001,,17,NE,1954,1954,3102,2,1,2555.578203,2555.578203,3507,NO,36.31,45.69,1,2.43,6106,113.342598,123.176841,132.875724,139.440957,I,Above,Hip,0,5701,,41.00383473,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 20334,NJBF000057418,112 N IROQUOIS AVE,Margate City,NJ,39.33053705,-74.50450759,RES1,3001,,17,NE,1952,1952,3102,2,1,1233.983262,1233.983262,3507,NO,38.41,51.29,1,-0.53,6106,113.370679,123.199388,132.899179,139.467036,I,Above,Hip,0,5701,,44.84978933,0,0,,,,1,1,,0.03,nav,1,1952,2,, 20335,NJBF000057705,10 N EXETER AVE,Margate City,NJ,39.331023,-74.4986165,RES1,3001,,21,NE,1962,1962,3102,2,1,1603.232006,1603.232006,3505,NO,44.71,49.88,3,7.24,6106,113.493443,123.298183,133.002839,139.580682,I,Above,Gable,0,5701,,47.29246688,0,0,,,,1,1,,0.03,nav,1,1962,2,, 20336,NJBF000058180,30 N EXETER AVE,Margate City,NJ,39.33185012,-74.49939324,RES1,3001,,17,NE,1937,1937,3102,2,1,1088.30368,1088.30368,3505,NO,40.39,53.7,3,8.2,6106,113.464595,123.275088,132.97929,139.553479,I,Above,Flat,0,5701,,47.04624784,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 20337,NJBF000060806,214 N BRUNSWICK DR,Margate City,NJ,39.33656589,-74.49920043,RES1,3001,,19,NE,2013,2013,3103,3,1,1320.762116,1320.762116,3505,NO,44.93,53.46,3,1.75,6106,113.40271,123.225504,132.930661,139.489768,I,Above,Gable,0,5701,,49.19968625,0,0,,,,1,1,,0.03,nav,1,2013,3,, 20338,NJBF000058134,29 N FRONTENAC AVE,Margate City,NJ,39.33176635,-74.49989138,RES1,3001,,17,NE,1951,1951,3102,1,1,1795.090882,1795.090882,3505,NO,11.51,21.3,3,-1.35,6106,113.454814,123.267213,132.97098,139.54449,I,Above,Gable,0,5701,,16.4013112,0,1.2,,,,1,1,,0.03,nav,1,1951,1,, 20339,NJBF000057536,8304 MONMOUTH AVE,Margate City,NJ,39.33074215,-74.50554743,RES1,3001,,17,NE,1950,1950,3102,2,1,1332.97965,1332.97965,3507,NO,25.14,34.47,1,-0.65,6106,113.344872,123.178695,132.877754,139.443038,I,Above,Hip,0,5701,,29.80927926,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20340,NJBF000062899,7905 LAGOON DRIVE,Margate City,NJ,39.34045765,-74.50805568,RES1,3001,,18,NE,1973,1973,3102,2,1,2505.687558,2505.687558,3505,NO,31.13,39.68,3,-0.36,6106,113.152842,123.024907,132.72316,139.253072,I,Above,Hip,0,5701,,35.40392402,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 20341,NJBF000060825,312 N CLARENDON AVE,Margate City,NJ,39.33660108,-74.50005725,RES1,3001,,17,NE,1965,1965,3102,1,1,1982.594639,1982.594639,3505,NO,10.02,20.94,3,-1.86,6106,113.383279,123.209906,132.914339,139.471959,I,Above,Gable,0,5701,,15.48167984,0,0,,,,1,1,,0.03,nav,1,1965,1,, 20342,NJBF000055511,208 N HARDING AVE,Margate City,NJ,39.326289,-74.515098,RES1,3001,,47,NE,1950,1950,3102,2,2,876.5213033,876.5213033,3505,NO,34.64,44.04,3,3.49,6106,113.200156,123.060954,132.752242,139.306998,I,Above,Flat,0,5701,,39.34303054,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20343,NJBF000053542,9401 ATLANTIC AVE,Margate City,NJ,39.3203244,-74.51351923,RES1,3001,,17,NE,1953,1953,3102,1,2,1680.856326,1680.856326,3507,NO,17.9,26.79,1,1.66,6106,113.323817,123.157385,132.846911,139.414471,I,Above,Gable,0,5701,,22.34126339,0,0,,,,1,1,,0.03,nav,1,1953,1,, 20344,NJBF000055106,104 N WILSON AVE,Margate City,NJ,39.32531548,-74.51292267,RES1,3001,,18,NE,1948,1948,3102,2,1,883.0760989,883.0760989,3505,NO,39.97,51.59,3,8.35,6106,113.26216,123.110412,132.802659,139.363931,I,Above,Hip,0,5701,,45.78086705,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20345,NJBF000056998,8 N HAVERFORD AVE,Margate City,NJ,39.32971236,-74.50132053,RES1,3001,,19,NE,1973,1973,3102,2,1,2475.002628,2475.002628,3505,NO,40.99,50.93,3,8.72,6106,113.452625,123.265107,132.967171,139.543175,I,Above,Hip,0,5701,,45.96001679,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 20346,NJBF000058092,29A N FRONTENAC AVE,Margate City,NJ,39.33170368,-74.49982614,RES1,3001,,17,NE,1957,1957,3102,2,1,981.0124145,981.0124145,3505,NO,24.54,33.93,3,-0.83,6106,113.457126,123.269064,132.97287,139.54667,I,Above,Gable,0,5701,,29.23456916,0,0,,,,1,1,,0.03,nav,1,1957,2,, 20347,NJBF000057802,115 N HANOVER AVE,Margate City,NJ,39.33118893,-74.5038346,RES1,3001,,17,NE,1948,1948,3101,1,1,1580.881237,1580.881237,3507,NO,16.33,22.61,1,2.61,6106,113.376161,123.203911,132.904379,139.471929,I,Above,Gable,0,5701,,19.47418048,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 20348,NJBF000058275,7902 WINCHESTER AVE,Margate City,NJ,39.33201846,-74.49998879,RES1,3001,,17,NE,1980,1980,3102,1,1,1937.397988,1937.397988,3505,NO,12.55,20.98,3,1.18,6106,113.449082,123.262634,132.966377,139.539007,I,Above,Flat,0,5701,,16.76319693,0,1.1,,,,1,1,,0.03,nav,1,1980,1,, 20349,NJBF000062169,506 N DELAVAN AVE,Margate City,NJ,39.33891184,-74.50386333,RES1,3001,,18,NE,1966,1966,3102,2,1,1739.335336,1739.335336,3505,NO,35.95,42.74,3,6.12,6106,113.267076,123.116521,132.817984,139.360859,I,Above,Gable,0,5701,,39.34452672,0,0,,,,1,1,,0.03,nav,1,1966,2,, 20350,NJBF000054371,,Margate City,NJ,39.32319766,-74.51948616,RES3B,3001,,NaN,E,1969,0,3303,4,1,5356.107756,5356.107756,3507,NO,59.14,69.35,1,-0.71,6106,113.150624,123.019381,132.706915,139.257535,I,Above,Gable,0,5701,,64.24321968,0,0,,,,1,1,,0.03,nav,1,1969,4,, 20351,NJBF000061511,311 N ARGYLE AVE,Margate City,NJ,39.33777015,-74.49773327,RES1,3001,,NaN,NE,1948,1948,3103,1,1,3003.960858,3003.960858,3505,NO,22.72,35.98,3,7.28,6106,113.418504,123.238074,132.944613,139.501262,I,Above,Hip,0,5701,,29.34947826,0,0,,,,1,1,,0.03,nav,1,1948,1,, 20352,NJBF000060367,202 N BRUNSWICK DR,Margate City,NJ,39.33585846,-74.49848867,RES1,3001,,19,NE,2006,2006,3103,3,1,1459.839952,1459.839952,3505,NO,36.54,46.81,3,0.84,6106,113.428258,123.246055,132.951742,139.514559,I,Above,Hip,0,5701,,41.67529606,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 20353,NJBF000056921,104 N JEROME AVE,Margate City,NJ,39.32953917,-74.50548542,RES1,3001,,17,NE,1940,1940,3101,1,1,1373.231435,1373.231435,3505,NO,15.4,29.47,3,1.38,6106,113.36354,123.193433,132.892218,139.460476,I,Above,Hip,0,5701,,22.4354705,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 20354,NJBF000061669,26 HARBOUR LANE,Margate City,NJ,39.33804114,-74.50736251,RES1,3001,,18,NE,1980,1980,3102,2,1,1837.9317,1837.9317,3505,NO,38.16,50.19,3,3.35,6106,113.20162,123.064258,132.763018,139.302836,I,Above,Gable,0,5701,,44.17903168,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 20355,NJBF000057887,21 N FRONTENAC AVE,Margate City,NJ,39.33133185,-74.4995145,RES1,3001,,17,NE,1954,1954,3102,1,1,1674.409324,1674.409324,3505,NO,18.86,25.63,3,5.48,6106,113.469257,123.27877,132.982747,139.558126,I,Above,Flat,0,5701,,22.24452776,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 20356,NJBF000055328,101 S LANCASTER AVE,Margate City,NJ,39.32578472,-74.50340925,RES1,3001,,NaN,NE,1935,0,3102,2,1,1767.00432,1767.00432,3505,NO,31.32,39.97,3,4.15,6106,113.463577,123.272802,132.971895,139.551443,I,Above,Hip,0,5701,,35.64913074,0,0,,,,1,1,,0.03,nav,1,1935,2,, 20357,NJBF000057054,19 N HANOVER AVE,Margate City,NJ,39.32982143,-74.50252456,RES1,3001,,17,NE,1960,1960,3102,2,1,1674.804777,1674.804777,3505,NO,28.29,39.7,3,3.48,6106,113.42458,123.242571,132.943706,139.517148,I,Above,Gable,0,5701,,33.99621537,0,0,,,,1,1,,0.03,nav,1,1960,2,, 20358,NJBF000060785,212 N BELMONT DR,Margate City,NJ,39.33654519,-74.49813395,RES1,3001,,20,NE,2015,2015,3102,3,1,1321.644961,1321.644961,3505,NO,39.76,49.36,3,-0.99,6106,113.426564,123.244659,132.950733,139.511554,I,Above,Gable,0,5701,,44.55856029,0,0,,,,1,1,,0.03,nav,1,2015,3,, 20359,NJBF000057199,108 N JASPER AVE,Margate City,NJ,39.3301355,-74.50497,RES1,3001,,18,NE,1929,1929,3102,2,1,1118.14457,1118.14457,3507,NO,27.82,38.16,1,1.6,6106,113.366286,123.195775,132.89511,139.463017,I,Above,Hip,0,5701,,32.99359899,0,0,,,,1,1,,0.03,nav,1,1929,2,, 20360,NJBF000062865,8008 BAYSHORE DR,Margate City,NJ,39.34038552,-74.51000482,RES1,3001,,19,NE,1972,1972,3102,2,1,2261.36007,2261.36007,3505,NO,37.33,48.98,3,2.46,6106,113.110595,122.991194,132.68805,139.214651,I,Above,Flat,0,5701,,43.15647199,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 20361,NJBF000057644,9 N FRANKLIN AVE,Margate City,NJ,39.3309291,-74.49881849,RES1,3001,,17,NE,1928,1928,3102,1,1,1473.025611,1473.025611,3505,NO,15.38,26.39,3,-2.8,6106,113.490332,123.295665,133.000126,139.577845,I,Above,Hip,0,5701,,20.88219047,0,1.1,,,,1,1,,0.03,nav,1,1928,1,, 20362,NJBF000057592,7 N FRANKLIN AVE,Margate City,NJ,39.33083794,-74.49876397,RES1,3001,,17,NE,1930,1930,3102,2,1,1439.031126,1439.031126,3505,NO,25.96,35.37,3,1.32,6106,113.492815,123.297649,133.002132,139.580185,I,Above,Hip,0,5701,,30.66707898,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20363,NJBF000058869,2 EAST DRIVE,Margate City,NJ,39.33308966,-74.49352128,RES1,3001,,19,NE,1929,1929,3102,2,1,1304.661053,1304.661053,3505,NO,32.15,40.24,3,1.7,6106,113.57652,123.365284,133.074945,139.655261,I,Above,Hip,0,5701,,36.19588021,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20364,NJBF000057294,112 N JASPER AVE,Margate City,NJ,39.33031675,-74.50513101,RES1,3001,,45,NE,1930,1930,3102,2,2,1363.632012,1363.632012,3507,NO,28.61,41.2,1,1.76,6106,113.360128,123.190866,132.890128,139.457279,I,Above,Hip,0,5701,,34.90515953,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20365,NJBF000058840,11 WEST DRIVE,Margate City,NJ,39.33304017,-74.49422025,RES1,3001,,19,NE,1925,1925,3102,2,1,1637.748109,1637.748109,3505,NO,33.7,46.21,3,4.68,6106,113.561815,123.353436,133.062443,139.641846,I,Above,Flat,0,5701,,39.95513572,0,0,,,,1,1,,0.03,nav,1,1925,2,, 20366,NJBF000054862,104 S OSBORNE AVE,Margate City,NJ,39.32450314,-74.50533041,RES1,3001,,18,NE,1945,1945,3103,3,1,1847.717594,1847.717594,3505,NO,57.47,67.99,3,5.33,6106,113.440276,123.253528,132.950648,139.528492,I,Above,Hip,0,5701,,62.73129511,0,1.2,,,,1,1,,0.03,nav,1,1945,3,, 20367,NJBF000054999,104 S NASSAU AVE,Margate City,NJ,39.32485251,-74.50468883,RES1,3001,,19,NE,1962,1962,3102,2,1,1626.812728,1626.812728,3505,NO,38.33,48.37,3,1.76,6106,113.44917,123.260839,132.958584,139.537131,I,Above,Gable,0,5701,,43.35016579,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 20368,NJBF000059000,7904 MONMOUTH AVE,Margate City,NJ,39.33333834,-74.5010319,RES1,3001,,17,NE,1955,1955,3102,2,1,1532.050185,1532.050185,3505,NO,38.94,48.89,3,0.71,6106,113.407423,123.229279,132.932434,139.499299,I,Above,Gable,0,5701,,43.91537242,0,0,,,,1,1,,0.03,nav,1,1955,2,, 20369,NJBF000054922,215 N JEFFERSON AVE,Margate City,NJ,39.32466059,-74.51839055,RES1,3001,,39,NE,2005,2005,3102,2,1,2008.582197,2008.582197,3507,NO,24.98,35.97,1,-0.24,6106,113.152479,123.021744,132.710512,139.260996,I,Above,Flat,0,5701,,30.47675942,0,0,,,,1,1,,0.03,nav,1,2005,2,, 20370,NJBF000057446,28 N HAVERFORD AVE,Margate City,NJ,39.33058915,-74.50212761,RES1,3001,,18,NE,1981,1981,3102,2,1,1102.124105,1102.124105,3505,NO,31.45,37.36,3,0.93,6106,113.422316,123.240902,132.942559,139.514928,I,Above,Flat,0,5701,,34.40348935,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 20371,NJBF000058595,122 N GLADSTONE AVE,Margate City,NJ,39.33258677,-74.5022693,RES1,3001,,21,NE,2016,2016,3102,2,1,1012.774747,1012.774747,3505,NO,25.88,34.96,3,-2.8,6106,113.390766,123.215834,132.917842,139.484623,I,Above,Gable,0,5701,,30.42037521,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 20372,NJBF000057445,115 N JASPER AVE,Margate City,NJ,39.33058769,-74.50489633,RES1,3001,,20,NE,2007,2007,3102,2,1,1302.700437,1302.700437,3507,NO,32.76,45.8,1,0,6106,113.361409,123.19195,132.891459,139.458421,I,Above,Gable,0,5701,,39.28029181,0,0,,,,1,1,,0.03,nav,1,2007,2,, 20373,NJBF000057350,111 N JASPER AVE,Margate City,NJ,39.33041245,-74.50472572,RES1,3001,,45,NE,1930,1930,3102,2,2,1372.179593,1372.179593,3507,NO,25.85,35.08,1,-0.58,6106,113.367675,123.19695,132.896542,139.464271,I,Above,Gable,0,5701,,30.4674361,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20374,NJBF000054865,103 S PEMBROKE AVE,Margate City,NJ,39.3245062,-74.50564396,RES1,3001,,19,NE,1925,1925,3102,2,1,2119.283952,2119.283952,3505,NO,44.99,53.06,3,6.87,6106,113.433359,123.247955,132.944844,139.522089,I,Above,Gable,0,5701,,49.02435469,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20375,NJBF000053630,4 N MONROE AVE,Margate City,NJ,39.32067516,-74.5179431,RES3C,3001,,19,ME,2007,2007,3301,1,1,5173.922767,5173.922767,3505,NO,9.67,22.56,3,-1.35,6106,113.22236,123.075645,132.762754,139.320755,I,Above,Flat,0,NaN,,16.11486588,0,0,,,,1,1,,0.03,nav,1,2007,1,, 20376,NJBF000058672,5 WEST DRIVE,Margate City,NJ,39.3327185,-74.49442164,RES1,3001,,18,NE,1925,1925,3102,2,1,1240.645872,1240.645872,3505,NO,33.72,47.39,3,2.35,6106,113.561882,123.353467,133.062219,139.642366,I,Above,Hip,0,5701,,40.55800796,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20377,NJBF000055048,206 N WASHINGTON AVE,Margate City,NJ,39.32498273,-74.51665785,RES1,3001,,21,NE,2003,2003,3103,3,1,1375.329152,1375.329152,3505,NO,39.77,47.94,3,7.2,6106,113.185482,123.048503,132.738373,139.29214,I,Above,Hip,0,5701,,43.85722396,0,0,,,,1,1,,0.03,nav,1,2003,3,, 20378,NJBF000062194,505 N DELAVAN AVE,Margate City,NJ,39.33896768,-74.50339434,RES1,3001,,18,NE,1963,1963,3102,2,1,1483.935211,1483.935211,3505,NO,37.36,46.71,3,-1.21,6106,113.276693,123.124212,132.826049,139.369489,I,Above,Gable,0,5701,,42.03530974,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 20379,NJBF000055323,102 S KENYON AVE,Margate City,NJ,39.32577261,-74.50312103,RES1,3001,,21,NE,2004,2004,3102,3,1,1350.179966,1350.179966,3505,NO,59.61,72.11,3,4.94,6106,113.470065,123.278025,132.977336,139.557443,I,Above,Hip,0,5701,,65.86172994,0,0,,,,1,1,,0.03,nav,1,2004,3,, 20380,NJBF000062318,8013 LAGOON DRIVE,Margate City,NJ,39.33921727,-74.51021064,RES1,3001,,18,NE,1973,1973,3102,2,1,2297.349405,2297.349405,3505,NO,23.95,30.78,3,0.46,6106,113.122193,123.000645,132.697384,139.227723,I,Above,Gable,0,5701,,27.36895164,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 20381,NJBF000055280,104 S KENYON AVE,Margate City,NJ,39.32565507,-74.50302853,RES1,3001,,21,NE,2003,2003,3102,3,1,1531.59713,1531.59713,3505,NO,42.77,50.71,3,-0.6,6106,113.473803,123.280995,132.98033,139.560791,I,Above,Hip,0,5701,,46.7425111,0,0,,,,1,1,,0.03,nav,1,2003,3,, 20382,NJBF000057008,3 N HAVERFORD AVE,Margate City,NJ,39.329726,-74.500816,RES1,3001,,18,NE,1937,1937,3102,2,1,1476.870587,1476.870587,3505,NO,36.21,42.29,3,1.59,6106,113.463532,123.273885,132.976362,139.553293,I,Above,Gable,0,5701,,39.25040465,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 20383,NJBF000058469,115 N GLADSTONE AVE,Margate City,NJ,39.33236787,-74.50153392,RES1,3001,,17,NE,1950,1950,3101,1,1,1619.324927,1619.324927,3505,NO,17.23,27.49,3,4.5,6106,113.410073,123.231321,132.933874,139.502656,I,Above,Gable,0,5701,,22.3599743,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20384,NJBF000055033,116 S KENYON AVE,Margate City,NJ,39.32495038,-74.50247786,RES1,3001,,17,NE,1958,1958,3102,2,1,1736.798764,1736.798764,3505,NO,33.18,47.72,3,3.48,6106,113.496174,123.298762,132.998241,139.580746,I,Above,Hip,0,5701,,40.45239718,0,0,,,,1,1,,0.03,nav,1,1958,2,, 20385,NJBF000057485,29 N HUNTINGTON AVE,Margate City,NJ,39.33065066,-74.50250921,RES1,3001,,21,NE,2017,2017,3101,1,1,1151.209244,1151.209244,3505,NO,18.78,33.55,3,-0.63,6106,113.413044,123.233458,132.934829,139.506312,I,Above,Hip,0,5701,,26.16496055,0,0,,,,1,1,,0.03,nav,1,2017,1,, 20386,NJBF000054613,8802 ATLANTIC AVE,Margate City,NJ,39.32386624,-74.50692159,RES1,3001,,19,NE,1938,1938,3102,2,1,1484.401926,1484.401926,3505,NO,29.86,40.57,3,7.03,6106,113.41483,123.232741,132.928424,139.504145,I,Above,Gable,0,5701,,35.21542904,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 20387,NJBF000055229,102 S LANCASTER AVE,Margate City,NJ,39.32551413,-74.50366647,RES1,3001,,20,NE,1945,1945,3102,2,1,1957.717348,1957.717348,3505,NO,29.02,40.26,3,1.63,6106,113.461902,123.271354,132.970142,139.549626,I,Above,Gable,0,5701,,34.64070132,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20388,NJBF000054736,9415 MONMOUTH AVE,Margate City,NJ,39.32419166,-74.51785697,RES3A,3001,,21,NE,2005,2005,3301,2,1,2420.90206,2420.90206,3502,NO,24.45,39.08,5,3.39,6106,113.171155,123.03653,132.725392,139.27792,I,Above,Flat,0,5701,,31.76509615,0,0,,,,1,1,,0.03,nav,1,2005,2,, 20389,NJBF000058264,8001 WINCHESTER AVE,Margate City,NJ,39.33200441,-74.50075289,RES1,3001,,17,NE,1959,1959,3102,2,1,1807.126663,1807.126663,3505,NO,32.2,44.98,3,-0.78,6106,113.432446,123.249259,132.952369,139.523627,I,Above,Gable,0,5701,,38.58761195,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 20390,NJBF000055286,110 S KNIGHT AVE,Margate City,NJ,39.32567224,-74.5023401,RES1,3001,,18,NE,1951,1951,3102,2,1,1459.02488,1459.02488,3505,NO,30.66,39.65,3,4.26,6106,113.488657,123.29297,132.99285,139.574565,I,Above,Flat,0,5701,,35.15212924,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 20391,NJBF000060963,218 N BRUNSWICK DR,Margate City,NJ,39.33682663,-74.49945402,RES1,3001,,17,NE,1950,1950,3103,1,1,1309.17857,1309.17857,3505,NO,24.66,36.45,3,8.9,6106,113.393476,123.218074,132.92304,139.480782,I,Above,Hip,0,5701,,30.55751121,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20392,NJBF000057434,27 N HUNTINGTON AVE,Margate City,NJ,39.33056789,-74.50243024,RES1,3001,,17,NE,1961,1961,3102,2,1,1469.951,1469.951,3505,NO,27.29,32.34,3,-0.44,6106,113.415969,123.235795,132.937207,139.509047,I,Above,Hip,0,5701,,29.81816589,0,0,,,,1,1,,0.03,nav,1,1961,2,, 20393,NJBF000055672,213 N HARDING AVE,Margate City,NJ,39.32670636,-74.51501223,RES1,3001,,47,NE,1950,1950,3102,2,2,835.764231,835.764231,3505,NO,35.34,41.43,3,0.04,6106,113.195866,123.057689,132.749179,139.303307,I,Above,Gable,0,5701,,38.38739142,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20394,NJBF000059843,37 EAST DRIVE,Margate City,NJ,39.3349551,-74.49441335,RES1,3001,,19,NE,1929,1929,3102,2,1,1842.647532,1842.647532,3505,NO,34.87,44.84,3,2.03,6106,113.530817,123.328534,133.037724,139.609974,I,Above,Gable,0,5701,,39.85538548,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20395,NJBF000055447,200 N WILSON AVE,Margate City,NJ,39.32612429,-74.5141725,RES1,3001,,47,NE,1950,1950,3102,2,2,1188.887195,1188.887195,3505,NO,26.36,41.22,3,4.55,6106,113.222837,123.079129,132.770914,139.32801,I,Above,Gable,0,5701,,33.78872482,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20396,NJBF000062804,WELLINGTON AVE,Margate City,NJ,39.34026253,-74.49948955,COM4,3001,,NaN,ME,2014,2014,3401,1,1,1445.94752,1445.94752,3507,NO,19,25.2,1,-0.4,6106,113.345444,123.179041,132.884146,139.428269,I,Above,Flat,0,NaN,,22.09803228,0,0,,,,1,1,,0.03,nav,1,2014,1,, 20397,NJBF000062247,504 N CLERMONT AVE,Margate City,NJ,39.33907955,-74.50319334,RES1,3001,,18,NE,1970,1970,3102,2,1,1339.619883,1339.619883,3505,NO,42.72,56.51,3,5.85,6106,113.279604,123.126524,132.828525,139.37187,I,Above,Hip,0,5701,,49.6145895,0,0,,,,1,1,,0.03,nav,1,1970,2,, 20398,NJBF000062011,502 N DELAVAN AVE,Margate City,NJ,39.33863906,-74.50358585,RES1,3001,,18,NE,1966,1966,3102,2,1,1579.774434,1579.774434,3505,NO,29.06,43.53,3,-0.38,6106,113.276978,123.124488,132.826163,139.370514,I,Above,Flat,0,5701,,36.29563953,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 20399,NJBF000055866,,Margate City,NJ,39.32715614,-74.50053715,RES1,3001,,NaN,NE,1969,0,3102,2,1,2160.21244,2160.21244,3505,NO,31.81,38.66,3,-2.33,6106,113.506656,123.307956,133.009834,139.592482,I,Above,Hip,0,5701,,35.2329032,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20400,NJBF000058220,,Margate City,NJ,39.33192082,-74.50210638,RES1,3001,,NaN,NE,1969,0,3102,2,1,1418.871938,1418.871938,3505,NO,22.81,33.94,3,-2.62,6106,113.403813,123.226237,132.928233,139.497181,I,Above,Hip,0,5701,,28.37461965,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20401,NJBF000055613,8310 ATLANTIC AVE,Margate City,NJ,39.32656115,-74.50183973,RES1,3001,,20,NE,1997,1997,3102,2,1,1245.026659,1245.026659,3505,NO,27.85,38.54,3,-0.81,6106,113.486686,123.291685,132.9923,139.573536,I,Above,Hip,0,5701,,33.19539102,0,0,,,,1,1,,0.03,nav,1,1997,2,, 20402,NJBF000062272,8015 LAGOON DRIVE,Margate City,NJ,39.33913067,-74.51045387,RES1,3001,,19,NE,1988,1988,3102,2,1,2764.532575,2764.532575,3505,NO,35.8,48.11,3,6.68,6106,113.118001,122.997308,132.69388,139.224046,I,Above,Gable,0,5701,,41.95546699,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 20403,NJBF000058431,113 N GLADSTONE AVE,Margate City,NJ,39.33229715,-74.50145021,RES1,3001,,17,NE,1948,1948,3101,1,1,1386.62418,1386.62418,3505,NO,9.35,21.54,3,-1.52,6106,113.412931,123.233609,132.936215,139.505355,I,Above,Gable,0,5701,,15.44486635,0,0,,,,1,1,,0.03,nav,1,1948,1,, 20404,NJBF000057225,13 N HAVERFORD AVE,Margate City,NJ,39.33017731,-74.50122331,RES1,3001,,17,NE,1930,1930,3102,2,1,1407.474107,1407.474107,3505,NO,34.89,43.9,3,-0.89,6106,113.448123,123.261579,132.963852,139.538952,I,Above,Hip,0,5701,,39.3959065,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20405,NJBF000055740,105 S IROQUOIS AVE,Margate City,NJ,39.32686416,-74.50059352,RES1,3001,,19,NE,1967,1967,3102,3,1,1935.52916,1935.52916,3505,NO,37.06,45.3,3,2.06,6106,113.509631,123.310265,133.011992,139.595033,I,Above,Flat,0,5701,,41.17826709,0,1.2,,,,1,1,,0.03,nav,1,1967,3,, 20406,NJBF000059629,24 N FREDERICKSBURG AVE,Margate City,NJ,39.33457643,-74.49415542,RES1,3001,,18,NE,1929,1929,3102,2,1,1316.430725,1316.430725,3505,NO,30.15,36.49,3,0.12,6106,113.541785,123.337362,133.046726,139.620769,I,Above,Hip,0,5701,,33.32134817,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20407,NJBF000059569,22 N FREDERICKSBURG AVE,Margate City,NJ,39.33447785,-74.49409027,RES1,3001,,18,NE,1929,1929,3102,2,1,1526.213511,1526.213511,3505,NO,23.16,35.99,3,-1.29,6106,113.544584,123.339615,133.049021,139.623523,I,Above,Hip,0,5701,,29.57559419,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20408,NJBF000057949,4 S CLARENDON AVE,Margate City,NJ,39.33142766,-74.49527239,RES1,3001,,20,NE,1951,1951,3102,2,1,1535.650724,1535.650724,3505,NO,33.21,39.71,3,3.42,6106,113.561332,123.352894,133.060571,139.643232,I,Above,Gable,0,5701,,36.46043579,0,0,,,,1,1,,0.03,nav,1,1951,2,, 20409,NJBF000054923,9309 MONMOUTH AVE,Margate City,NJ,39.32466114,-74.51669687,RES1,3001,,17,NE,1927,1927,3102,2,3,699.4400356,699.4400356,3507,NO,27.25,35.49,1,-0.65,6106,113.189439,123.051521,132.741235,139.295499,I,Above,Flat,0,5701,,31.368691,0,0,,,,1,1,,0.03,nav,1,1927,2,, 20410,NJBF000054669,8800 ATLANTIC AVE,Margate City,NJ,39.32402134,-74.50667508,RES1,3001,,19,NE,1930,1930,3103,3,1,1642.088973,1642.088973,3505,NO,41.69,53.63,3,-2.16,6106,113.417944,123.235321,132.93125,139.507225,I,Above,Gable,0,5701,,47.65716799,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 20411,NJBF000060514,8215 MARSHALL AVE,Margate City,NJ,39.33611666,-74.51024283,RES1,3001,,19,NE,2005,2005,3102,2,1,2868.586572,2868.586572,3505,NO,37.73,52.2,3,6.58,6106,113.164833,123.034924,132.731521,139.272059,I,Above,Hip,0,5701,,44.96289251,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 20412,NJBF000058949,104 N DOUGLAS AVE,Margate City,NJ,39.33323402,-74.49905018,RES1,3001,,17,NE,1943,1943,3103,2,1,1035.89276,1035.89276,3505,NO,35.09,41.97,3,-0.26,6106,113.452602,123.265576,132.970363,139.541091,I,Above,Gable,0,5701,,38.53248994,0,0,,,,1,1,,0.03,nav,1,1943,2,, 20413,NJBF000056931,,Margate City,NJ,39.32956612,-74.51616587,RES1,3001,,NaN,NE,1925,0,3102,2,1,2695.202889,2695.202889,3505,NO,33.79,44.97,3,0.34,6102,113.12848,123.004662,132.696367,139.241761,I,Above,Gable,0,5701,,39.38106425,0,0,,,,1,1,,0.03,nav,1,1925,2,, 20414,NJBF000057776,8 S CLARENDON AVE,Margate City,NJ,39.33114547,-74.49505346,RES1,3001,,20,NE,1948,1948,3102,3,1,1791.812208,1791.812208,3505,NO,49.48,59.3,3,-2.48,6106,113.570155,123.359964,133.067765,139.651594,I,Above,Hip,0,5701,,54.38985794,0,1.1,,,,1,1,,0.03,nav,1,1948,3,, 20415,NJBF000056378,8006 ATLANTIC AVE,Margate City,NJ,39.32835478,-74.49818491,RES1,3001,,19,NE,1925,1925,3102,2,1,1382.627644,1382.627644,3505,NO,32.68,46.91,3,-0.01,6106,113.54103,123.335973,133.040216,139.624971,I,Above,Gable,0,5701,,39.79577778,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20416,NJBF000055835,101 S IROQUOIS AVE,Margate City,NJ,39.32709068,-74.50073263,RES1,3001,,17,NE,1948,1948,3102,2,1,1174.245817,1174.245817,3505,NO,30.95,41.25,3,1.95,6106,113.503294,123.305229,133.006925,139.589322,I,Above,Gable,0,5701,,36.10096019,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 20417,NJBF000057676,8105 WINCHESTER AVE,Margate City,NJ,39.33097601,-74.50253119,RES1,3001,,18,NE,1955,1955,3102,2,1,1981.000016,1981.000016,3507,NO,24.74,37.84,1,1.11,6106,113.407915,123.229393,132.930828,139.501453,I,Above,Gable,0,5701,,31.29165959,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 20418,NJBF000056074,107 S GRANVILLE AVE,Margate City,NJ,39.32765771,-74.49834754,RES1,3001,,20,NE,1985,1985,3102,3,1,1479.523173,1479.523173,3505,NO,35.05,40.41,3,-0.16,6106,113.547471,123.340984,133.044853,139.630621,I,Above,Flat,0,5701,,37.73120301,0,0,,,,1,1,,0.03,nav,1,1985,3,, 20419,NJBF000057101,4 N GRANVILLE AVE,Margate City,NJ,39.32992438,-74.5006857,RES1,3001,,17,NE,1925,1925,3102,2,1,1292.86856,1292.86856,3505,NO,27.31,34.84,3,-1.61,6106,113.463557,123.273945,132.976585,139.553302,I,Above,Hip,0,5701,,31.07186974,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20420,NJBF000056629,404 N UNION AVE,Margate City,NJ,39.32890323,-74.51504317,RES1,3001,,19,NE,1955,1955,3102,3,1,1512.316689,1512.316689,3505,NO,41.11,49.71,3,3.86,6106,113.162836,123.032015,132.724197,139.273626,I,Above,Gable,0,5701,,45.40903213,0,0,,,,1,1,,0.03,nav,1,1955,3,, 20421,NJBF000055886,8234 ATLANTIC AVE,Margate City,NJ,39.32720846,-74.5004558,RES1,3001,,21,NE,2015,2015,3102,3,1,1126.643334,1126.643334,3505,NO,49.72,64.49,3,5.43,6106,113.507681,123.308798,133.010761,139.593467,I,Above,Gable,0,5701,,57.10261766,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 20422,NJBF000058903,115 N FRONTENAC AVE,Margate City,NJ,39.33314999,-74.50113062,RES1,3001,,17,NE,1956,1956,3102,2,1,1729.42368,1729.42368,3505,NO,36.53,47.65,3,6.94,6106,113.407893,123.229643,132.932681,139.499932,I,Above,Hip,0,5701,,42.08946722,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 20423,NJBF000058063,18A N ESSEX AVE,Margate City,NJ,39.33164638,-74.49828701,RES1,3001,,18,NE,1950,1950,3102,2,1,1196.00133,1196.00133,3505,NO,32.61,41.6,3,1.35,6106,113.491849,123.296986,133.002077,139.578834,I,Above,Flat,0,5701,,37.10540702,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20424,NJBF000058013,18 N ESSEX AVE,Margate City,NJ,39.33155618,-74.49823819,RES1,3001,,17,NE,1948,1948,3102,1,1,1250.610231,1250.610231,3505,NO,19.37,25.96,3,3.63,6106,113.494204,123.298869,133.00398,139.581074,I,Above,Flat,0,5701,,22.66745339,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 20425,NJBF000055748,2 DOLPHIN DR,Margate City,NJ,39.32688437,-74.50032485,RES1,3001,,20,NE,1964,1964,3102,2,1,2428.992315,2428.992315,3505,NO,28.96,37.74,3,6.68,6106,113.515244,123.314794,133.016747,139.60025,I,Above,Hip,0,5701,,33.34836023,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 20426,NJBF000056603,8801 AMHERST AVE,Margate City,NJ,39.32885224,-74.51224932,RES1,3001,,17,NE,1964,1964,3102,2,1,2258.444315,2258.444315,3505,NO,42.22,47.41,3,3.62,6106,113.224897,123.081843,132.775742,139.33143,I,Above,Hip,0,5701,,44.81487624,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 20427,NJBF000056757,415 N VENDOME AVE,Margate City,NJ,39.3291953,-74.51559644,RES1,3001,,19,NE,1955,1955,3102,2,1,1118.825582,1118.825582,3505,NO,39.52,54.4,3,2.88,6106,113.146424,123.018938,132.710875,139.258407,I,Above,Gable,0,5701,,46.95949654,0,0,,,,1,1,,0.03,nav,1,1955,2,, 20428,NJBF000061993,8209 BAYSHORE DR WEST,Margate City,NJ,39.33860498,-74.51262197,RES1,3001,,17,NE,1975,1975,3102,2,1,3407.052269,3407.052269,3505,NO,29.89,39.11,3,6.95,6106,113.077285,122.964861,132.659975,139.187601,I,Above,Flat,0,5701,,34.49921939,0,0,,,,1,1,,0.03,nav,1,1975,2,, 20429,NJBF000059262,15 EAST DRIVE,Margate City,NJ,39.33388063,-74.49399259,RES1,3001,,18,NE,1925,1925,3102,2,1,1483.371272,1483.371272,3505,NO,40.17,47.03,3,6.17,6106,113.555051,123.348029,133.057416,139.634242,I,Above,Hip,0,5701,,43.60112904,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20430,NJBF000058195,8103 WINCHESTER AVE,Margate City,NJ,39.33187362,-74.50272679,EDU1,3004,,NaN,E,1969,0,3401,1,1,38220.74221,38220.74221,3507,NO,11.76,24.67,1,0.85,6106,113.390799,123.215775,132.917266,139.485158,I,Above,Flat,0,5703,,18.21690573,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20431,NJBF000056779,405 N UNION AVE,Margate City,NJ,39.329243,-74.514878,RES1,3001,,20,NE,1993,1993,3102,2,1,1582.564704,1582.564704,3505,NO,38.61,48.02,3,3.51,6106,113.161477,123.031041,132.723419,139.272451,I,Above,Gable,0,5701,,43.3154851,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 20432,NJBF000062213,8205 BAYSHORE DR WEST,Margate City,NJ,39.33900757,-74.51250483,RES1,3001,,18,NE,1971,1971,3102,2,1,1609.24317,1609.24317,3505,NO,34.93,45.03,3,0.06,6106,113.074257,122.962404,132.657594,139.184107,I,Above,Gable,0,5701,,39.97876964,0,0,,,,1,1,,0.03,nav,1,1971,2,, 20433,NJBF000056728,403 N UNION AVE,Margate City,NJ,39.32913002,-74.5147035,RES1,3001,,20,NE,1990,1990,3102,2,1,1500.411624,1500.411624,3505,NO,32.11,44.48,3,-0.8,6106,113.166971,123.035414,132.727865,139.277544,I,Above,Gable,0,5701,,38.2965817,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 20434,NJBF000057494,30 N HAVERFORD AVE,Margate City,NJ,39.33066741,-74.50221566,RES1,3001,,17,NE,1954,1954,3102,2,1,1258.916748,1258.916748,3505,NO,42.52,55.64,3,6.53,6106,113.419264,123.238462,132.940069,139.512076,I,Above,Hip,0,5701,,49.08065723,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 20435,NJBF000058956,110 N ESSEX AVE,Margate City,NJ,39.33325743,-74.49980189,RES1,3001,,17,NE,1915,1915,3103,2,1,1075.501358,1075.501358,3505,NO,23.78,37,3,-0.39,6106,113.435693,123.251988,132.956146,139.525473,I,Above,Gable,0,5701,,30.39416813,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 20436,NJBF000057141,432 N THURLOW AVE,Margate City,NJ,39.33001028,-74.51518685,RES1,3001,,17,NE,1950,1950,3102,2,1,2154.765624,2154.765624,3505,NO,33.39,47.29,3,7.76,6106,113.143483,123.016847,132.709246,139.25581,I,Above,Hip,0,5701,,40.34266154,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20437,NJBF000056260,106 S FRONTENAC AVE,Margate City,NJ,39.32808356,-74.49772152,RES1,3001,,19,NE,1930,1930,3102,3,1,1451.197482,1451.197482,3505,NO,31.74,41.83,3,-1.6,6106,113.555094,123.347238,133.051784,139.637901,I,Above,Flat,0,5701,,36.78530318,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 20438,NJBF000057800,,Margate City,NJ,39.33118532,-74.49534981,RES1,3001,,NaN,NE,1969,0,3102,2,1,1051.068531,1051.068531,3505,NO,39.25,53.96,3,3.62,6106,113.563051,123.354247,133.061792,139.644999,I,Above,Hip,0,5701,,46.60182519,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20439,NJBF000056141,8805 MONMOUTH AVE,Margate City,NJ,39.3278071,-74.51124456,RES1,3001,,17,NE,1950,1950,3102,2,1,1415.867556,1415.867556,3505,NO,41.03,50.3,3,8.96,6106,113.262204,123.111468,132.805694,139.365767,I,Above,Gable,0,5701,,45.6651857,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20440,NJBF000061863,8211 BAYSHORE DR WEST,Margate City,NJ,39.33839156,-74.51268233,RES1,3001,,19,NE,1972,1972,3102,1,1,3070.537473,3070.537473,3505,NO,22.11,32.62,3,4.41,6106,113.078932,122.966194,132.661267,139.189478,I,Above,Gable,0,5701,,27.36310482,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 20441,NJBF000057413,20 N GRANVILLE AVE,Margate City,NJ,39.33052989,-74.50128389,RES1,3001,,17,NE,1943,1943,3102,2,1,1465.309864,1465.309864,3505,NO,20.29,30.1,3,-1.94,6106,113.441735,123.256506,132.958825,139.532952,I,Above,Hip,0,5701,,25.19551808,0,0,,,,1,1,,0.03,nav,1,1943,2,, 20442,NJBF000056659,411 N VENDOME AVE,Margate City,NJ,39.32898997,-74.51553594,RES1,3001,,19,NE,1989,1989,3102,2,1,1322.967386,1322.967386,3505,NO,40.47,45.88,3,1.79,6106,113.150746,123.022336,132.71425,139.26238,I,Above,Gable,0,5701,,43.17277447,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 20443,NJBF000056273,218 N SUMNER AVE,Margate City,NJ,39.32810875,-74.51244744,RES1,3001,,18,NE,1945,1945,3101,1,1,832.1416327,832.1416327,3505,NO,14.5,20.5,3,2.74,6106,113.231418,123.086829,132.780375,139.337238,I,Above,Hip,0,5701,,17.50106696,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 20444,NJBF000056823,314 N RUMSON AVE,Margate City,NJ,39.32933929,-74.51269891,RES1,3001,,20,NE,1995,1995,3102,3,1,2009.115654,2009.115654,3505,NO,58.27,71.19,3,2.43,6106,113.207911,123.068357,132.762107,139.315729,I,Above,Gable,0,5701,,64.73109779,0,0,,,,1,1,,0.03,nav,1,1995,3,, 20445,NJBF000061625,8215 BAYSHORE DR WEST,Margate City,NJ,39.33797364,-74.51241857,RES1,3001,,18,NE,1978,1978,3102,2,1,2425.011274,2425.011274,3505,NO,25.89,32.28,3,2.25,6106,113.090604,122.975543,132.670782,139.200909,I,Above,Gable,0,5701,,29.0840059,0,0,,,,1,1,,0.03,nav,1,1978,2,, 20446,NJBF000055920,205 N UNION AVE,Margate City,NJ,39.32728329,-74.51294703,RES1,3001,,17,NE,1955,1955,3101,1,1,1785.100841,1785.100841,3505,NO,12.87,21.52,3,-2.79,6106,113.23258,123.087455,132.780412,139.3379,I,Above,Gable,0,5701,,17.19340886,0,0,,,,1,1,,0.03,nav,1,1955,1,, 20447,NJBF000059094,9 EAST DRIVE,Margate City,NJ,39.3335319,-74.49384585,RES1,3001,,18,NE,1925,1925,3102,2,1,1627.2305,1627.2305,3505,NO,26.65,37.56,3,0.66,6106,113.56317,123.354554,133.064007,139.642294,I,Above,Hip,0,5701,,32.10495154,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20448,NJBF000059084,7 EAST DRIVE,Margate City,NJ,39.33351318,-74.4936908,RES1,3001,,18,NE,1925,1925,3102,2,1,1477.243053,1477.243053,3505,NO,27.54,41.83,3,-0.58,6106,113.566853,123.357519,133.067112,139.645698,I,Above,Gable,0,5701,,34.68608712,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20449,NJBF000057187,433 N UNION AVE,Margate City,NJ,39.33010385,-74.51546388,RES1,3001,,17,NE,1920,1920,3102,1,1,2315.206782,2315.206782,3505,NO,16.45,25.68,3,4,6106,113.136027,123.010894,132.703152,139.248871,I,Above,Gable,0,5701,,21.0679541,0,1.2,,,,1,1,,0.03,nav,1,1920,1,, 20450,NJBF000056381,204 N QUINCY AVE,Margate City,NJ,39.3283593,-74.51084417,RES1,3001,,20,NE,2016,2016,3102,3,1,1086.652283,1086.652283,3505,NO,49.19,60.73,3,7.57,6106,113.262932,123.112242,132.806908,139.366679,I,Above,Gable,0,5701,,54.95908314,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 20451,NJBF000056580,212 N QUINCY AVE,Margate City,NJ,39.32879009,-74.51124482,RES1,3001,,17,NE,1952,1952,3101,1,1,1177.199701,1177.199701,3505,NO,15.21,23.4,3,-0.64,6106,113.247842,123.100256,132.794788,139.352773,I,Above,Gable,0,5701,,19.30180764,0,0,,,,1,1,,0.03,nav,1,1952,1,, 20452,NJBF000056573,405 N VENDOME AVE,Margate City,NJ,39.32878237,-74.51533358,RES1,3001,,18,NE,1974,1974,3102,2,1,1500.885546,1500.885546,3505,NO,35.4,50.27,3,4.63,6106,113.158228,123.02827,132.720243,139.269291,I,Above,Gable,0,5701,,42.83630935,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 20453,NJBF000057433,7605 ATLANTIC AVE,Margate City,NJ,39.3305677,-74.49460217,RES1,3001,,18,NE,1950,1950,3102,2,1,1201.951286,1201.951286,3505,NO,36.96,49.03,3,2.25,6106,113.58825,123.374461,133.082513,139.668669,I,Above,Gable,0,5701,,42.99421104,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 20454,NJBF000059428,112 N CLERMONT AVE,Margate City,NJ,39.33422317,-74.49852253,RES1,3001,,17,NE,1960,1960,3103,2,1,1362.998628,1362.998628,3505,NO,34.53,47.6,3,2.59,6110,113.450334,123.263801,132.969217,139.537674,I,Above,Gable,0,5701,,41.06561348,0,0,,,,1,1,,0.35,nav,1,1960,2,, 20455,NJBF000058038,2 S CLARENDON AVE,Margate City,NJ,39.33159007,-74.49540361,RES1,3001,,21,NE,2008,2008,3102,2,1,2225.949454,2225.949454,3505,NO,29.17,35.58,3,0.69,6106,113.556136,123.348729,133.056329,139.6383,I,Above,Gable,0,5701,,32.37195173,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 20456,NJBF000056068,207 N THURLOW AVE,Margate City,NJ,39.32765159,-74.51239212,RES1,3001,,17,NE,1950,1950,3101,1,1,1205.859861,1205.859861,3505,NO,11.23,20.24,3,-0.29,6106,113.239324,123.093018,132.786451,139.344385,I,Above,Gable,0,5701,,15.73428973,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 20457,NJBF000058181,8701 FULTON AVE,Margate City,NJ,39.33185018,-74.51309252,RES1,3001,,21,NE,2012,2014,3102,2,1,1814.959855,1814.959855,3505,NO,38.07,48.8,3,7.46,6102,113.16282,123.032841,132.72695,139.27362,I,Above,Gable,0,5701,,43.43812602,0,0,,,,1,1,,0.03,nav,1,2012,2,, 20458,NJBF000059172,109 N DOUGLAS AVE,Margate City,NJ,39.33369702,-74.49899372,RES1,3001,,19,NE,1952,1952,3103,2,1,956.6246658,956.6246658,3505,NO,34.81,49.34,3,3.05,6110,113.447324,123.261361,132.966282,139.535651,I,Above,Gable,0,5701,,42.0745268,0,1.1,,,,1,1,,0.35,nav,1,1952,2,, 20459,NJBF000055682,1 DOLPHIN DR,Margate City,NJ,39.32672459,-74.50047074,RES1,3001,,19,NE,1961,1961,3102,2,1,1966.950408,1966.950408,3505,NO,33.52,48.29,3,3.32,6106,113.514343,123.314019,133.015795,139.599293,I,Above,Flat,0,5701,,40.90440862,0,0,,,,1,1,,0.03,nav,1,1961,2,, 20460,NJBF000057388,25 N HUNTINGTON AVE,Margate City,NJ,39.330481,-74.5023525,RES1,3001,,20,NE,2007,2007,3102,2,1,1264.940915,1264.940915,3505,NO,28.31,33.71,3,1.74,6106,113.418908,123.238142,132.939592,139.511794,I,Above,Hip,0,5701,,31.01298622,0,0,,,,1,1,,0.03,nav,1,2007,2,, 20461,NJBF000056032,9000 AMHERST AVE,Margate City,NJ,39.32757082,-74.51378188,RES1,3001,,17,NE,1964,1964,3101,1,1,1752.550317,1752.550317,3505,NO,17.61,27.36,3,-1.21,6106,113.210046,123.06945,132.761984,139.317067,I,Above,Gable,0,5701,,22.48490535,0,0,,,,1,1,,0.03,nav,1,1964,1,, 20462,NJBF000056223,209 N SUMNER AVE,Margate City,NJ,39.3279937,-74.5118169,RES1,3001,,17,NE,1945,1945,3101,1,1,1280.547931,1280.547931,3505,NO,26.54,39.53,3,7.45,6106,113.24692,123.099248,132.793162,139.351624,I,Above,Gable,0,5701,,33.03507558,0,0,,,,1,1,,0.03,nav,1,1945,1,, 20463,NJBF000056124,111 S GLADSTONE AVE,Margate City,NJ,39.32777475,-74.49768825,RES1,3001,,20,NE,1953,1953,3102,3,1,1552.007893,1552.007893,3505,NO,36.33,50.24,3,-0.67,6106,113.560281,123.351339,133.05581,139.642557,I,Above,Flat,0,5701,,43.28198314,0,1.1,,,,1,1,,0.03,nav,1,1953,3,, 20464,NJBF000056481,208 N QUINCY AVE,Margate City,NJ,39.32856874,-74.51105349,RES1,3001,,17,NE,1952,1952,3101,1,1,1100.302605,1100.302605,3505,NO,13.08,27.16,3,-0.71,6106,113.25528,123.106162,132.800753,139.359629,I,Above,Hip,0,5701,,20.11812316,0,0,,,,1,1,,0.03,nav,1,1952,1,, 20465,NJBF000059336,113 N DELAVAN AVE,Margate City,NJ,39.33403435,-74.49863526,RES1,3001,,17,NE,1935,1935,3103,2,1,1066.88848,1066.88848,3505,NO,41.8,52.76,3,5.34,6112,113.450513,123.263938,132.969226,139.538118,I,Above,Hip,0,5701,,47.28146078,0,1.1,,,,1,1,,0.35,nav,1,1935,2,, 20466,NJBF000056467,2 S HANOVER AVE,Margate City,NJ,39.3285339,-74.50165394,RES1,3001,,22,NE,2015,2015,3102,2,1,1086.546766,1086.546766,3505,NO,19.08,27.86,3,-2.45,6106,113.462232,123.272564,132.974006,139.551936,I,Above,Hip,0,5701,,23.46994069,0,0,,,,1,1,,0.03,nav,1,2015,2,, 20467,NJBF000055166,200 N DECATUR AVE,Margate City,NJ,39.3253273,-74.5158473,RES3B,3001,,20,E,1996,1996,3303,3,1,3306.409968,3306.409968,3507,NO,56.55,65.78,1,0.96,6106,113.198067,123.058814,132.749291,139.304217,I,Above,Flat,0,5701,,61.16625201,0,0,,,,1,1,,0.03,nav,1,1996,3,, 20468,NJBF000055788,103 S IROQUOIS AVE,Margate City,NJ,39.32697698,-74.50066067,RES1,3001,,21,NE,2015,2015,3102,3,1,2841.435943,2841.435943,3505,NO,59.94,74.94,3,2.37,6106,113.506524,123.307797,133.00951,139.592237,I,Above,Gable,0,5701,,67.43732989,0,0,,,,1,1,,0.03,nav,1,2015,3,, 20469,NJBF000055764,100 S IROQUOIS AVE,Margate City,NJ,39.32691532,-74.50112252,RES1,3001,,19,NE,1970,1970,3102,2,1,1804.229758,1804.229758,3505,NO,41.82,52.69,3,3.39,6106,113.497283,123.300334,133.001651,139.583627,I,Above,Flat,0,5701,,47.25194162,0,0,,,,1,1,,0.03,nav,1,1970,2,, 20470,NJBF000056251,208 N RUMSON AVE,Margate City,NJ,39.3280535,-74.5114725,RES1,3001,,20,NE,2017,2017,3101,1,1,1179.177382,1179.177382,3505,NO,20.73,33.52,3,5.85,6106,113.25361,123.104646,132.798803,139.357879,I,Above,Gable,0,5701,,27.12582811,0,0,,,,1,1,,0.03,nav,1,2017,1,, 20471,NJBF000057231,423 N RUMSON AVE,Margate City,NJ,39.33018805,-74.51291468,RES1,3001,,17,NE,1966,1966,3102,1,1,1903.39825,1903.39825,3505,NO,13.7,26.36,3,2.69,6106,113.190807,123.054877,132.748717,139.299895,I,Above,Gable,0,5701,,20.0320475,0,0,,,,1,1,,0.03,nav,1,1966,1,, 20472,NJBF000061830,8210 BAYSHORE DR WEST,Margate City,NJ,39.33833266,-74.51207929,RES1,3001,,20,NE,1986,1986,3102,2,1,1722.400626,1722.400626,3505,NO,31.1,42.08,3,3.71,6106,113.093112,122.97752,132.672989,139.202627,I,Above,Gable,0,5701,,36.59026138,0,0,,,,1,1,,0.03,nav,1,1986,2,, 20473,NJBF000056108,203 N SUMNER AVE,Margate City,NJ,39.3277464,-74.51156626,RES1,3001,,17,NE,1975,1975,3101,1,1,1531.705827,1531.705827,3505,NO,23.73,38.51,3,7.49,6106,113.256057,123.106505,132.800501,139.360015,I,Above,Hip,0,5701,,31.12158143,0,0,,,,1,1,,0.03,nav,1,1975,1,, 20474,NJBF000058581,110 N FRONTENAC AVE,Margate City,NJ,39.33255593,-74.50126314,RES1,3001,,17,NE,1955,1955,3102,2,1,1841.115685,1841.115685,3505,NO,43.09,52.22,3,5,6106,113.413382,123.234,132.936812,139.505563,I,Above,Gable,0,5701,,47.65414465,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 20475,NJBF000055431,204 N HARDING AVE,Margate City,NJ,39.32607267,-74.51486805,RES1,3001,,47,NE,1950,1950,3102,2,2,993.2511007,993.2511007,3505,NO,33.8,39.35,3,5.04,6106,113.208388,123.067479,132.758824,139.3145,I,Above,Flat,0,5701,,36.57697272,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20476,NJBF000057818,11 N EXETER AVE,Margate City,NJ,39.3312242,-74.49827947,RES1,3001,,18,NE,1948,1948,3102,2,1,1222.069272,1222.069272,3505,NO,36.94,51.65,3,-1.67,6106,113.498009,123.301886,133.00688,139.584803,I,Above,Flat,0,5701,,44.29525605,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 20477,NJBF000058741,25 N DELAVAN AVE,Margate City,NJ,39.33284844,-74.49747505,RES1,3001,,21,NE,2006,2006,3102,3,1,1285.501865,1285.501865,3505,NO,39.81,48.45,3,-0.07,6106,113.492765,123.297845,133.003905,139.578565,I,Above,Gable,0,5701,,44.12913336,0,0,,,,1,1,,0.03,nav,1,2006,3,, 20478,NJBF000056244,216 N SUMNER AVE,Margate City,NJ,39.3280335,-74.5123665,RES1,3001,,17,NE,1950,1950,3101,1,1,985.4939005,985.4939005,3505,NO,7.88,14.46,3,-2.69,6106,113.234308,123.089125,132.782698,139.339897,I,Above,Gable,0,5701,,11.17156994,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20479,NJBF000056055,202 N SUMNER AVE,Margate City,NJ,39.32763181,-74.5120039,RES1,3001,,17,NE,1950,1950,3102,2,1,1087.643859,1087.643859,3505,NO,34.98,40.59,3,8.36,6106,113.248124,123.100085,132.79376,139.35257,I,Above,Gable,0,5701,,37.7847829,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20480,NJBF000057050,400 N QUINCY AVE,Margate City,NJ,39.32981578,-74.51228208,RES1,3001,,17,NE,1961,1961,3102,1,1,1862.818861,1862.818861,3505,NO,23.61,30.41,3,6.58,6106,113.210125,123.070277,132.764424,139.317856,I,Above,Hip,0,5701,,27.01036698,0,1.2,,,,1,1,,0.03,nav,1,1961,1,, 20481,NJBF000054274,19 S CEDAR GROVE AVE,Margate City,NJ,39.32293473,-74.5108758,RES1,3001,,21,NE,2006,2006,3102,2,1,2604.797637,2604.797637,3505,NO,26.87,35.99,3,-1.18,6106,113.342249,123.173772,132.866309,139.435628,I,Above,Gable,0,5701,,31.42706593,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 20482,NJBF000062307,9 EXETER CT,Margate City,NJ,39.33919954,-74.50542431,RES1,3001,,18,NE,1969,1969,3102,2,1,1621.597017,1621.597017,3505,NO,39.83,47.6,3,6.83,6106,113.22852,123.085623,132.78587,139.325035,I,Above,Gable,0,5701,,43.71375646,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20483,NJBF000056158,110 S FRONTENAC AVE,Margate City,NJ,39.32785233,-74.49753165,RES1,3001,,20,NE,1953,1953,3102,3,1,1728.639548,1728.639548,3505,NO,50.85,60.45,3,8.35,6106,113.562601,123.353228,133.057859,139.644747,I,Above,Flat,0,5701,,55.64715622,0,1.1,,,,1,1,,0.03,nav,1,1953,3,, 20484,NJBF000062217,4 EXETER CT,Margate City,NJ,39.33901259,-74.50637788,RES1,3001,,18,NE,1971,1971,3102,2,1,1490.369399,1490.369399,3505,NO,38.53,49.8,3,0.38,6106,113.209963,123.07081,132.770328,139.308503,I,Above,Gable,0,5701,,44.1696716,0,0,,,,1,1,,0.03,nav,1,1971,2,, 20485,NJBF000055728,212 N VENDOME AVE,Margate City,NJ,39.32683115,-74.51403016,RES1,3001,,17,NE,1920,1920,3102,2,1,1154.213094,1154.213094,3505,NO,26.98,40.6,3,4,6106,113.215517,123.073549,132.765677,139.321713,I,Above,Gable,0,5701,,33.79218268,0,0,,,,1,1,,0.03,nav,1,1920,2,, 20486,NJBF000055604,,Margate City,NJ,39.32653952,-74.5140867,RES1,3001,,NaN,NE,1950,0,3102,2,1,806.8200207,806.8200207,3505,NO,29.56,41.95,3,2.28,6106,113.218566,123.075877,132.767867,139.32435,I,Above,Flat,0,5701,,35.75222516,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20487,NJBF000057521,426 N QUINCY AVE,Margate City,NJ,39.33071767,-74.51311129,RES1,3001,,17,NE,1948,1948,3101,1,1,1945.200763,1945.200763,3505,NO,23.58,34.45,3,5.96,6106,113.178803,123.045389,132.739236,139.288708,I,Above,Gable,0,5701,,29.01795358,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 20488,NJBF000062445,7 EXETER CT,Margate City,NJ,39.33947805,-74.50596783,RES1,3001,,18,NE,1970,1970,3102,2,1,2985.355617,2985.355617,3505,NO,29.7,37.67,3,2.69,6106,113.212631,123.07287,132.772702,139.309902,I,Above,Flat,0,5701,,33.68622832,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 20489,NJBF000055557,210 N HARDING AVE,Margate City,NJ,39.326406,-74.5152005,RES1,3001,,45,NE,1950,1950,3102,2,2,894.4360144,894.4360144,3505,NO,30.92,36.44,3,5.83,6106,113.19617,123.0578,132.749069,139.30337,I,Above,Flat,0,5701,,33.6794681,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20490,NJBF000056310,220 N SUMNER AVE,Margate City,NJ,39.32819511,-74.51252838,RES1,3001,,18,NE,1950,1950,3102,2,1,1265.545284,1265.545284,3505,NO,32.6,38.88,3,8.89,6106,113.228381,123.08442,132.777941,139.334447,I,Above,Hip,0,5701,,35.74179239,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20491,NJBF000058115,6 N DELAVAN AVE,Margate City,NJ,39.33173713,-74.49698702,RES1,3001,,17,NE,1950,1950,3102,2,1,926.2603995,926.2603995,3505,NO,33.56,43.98,3,-1.79,6106,113.519195,123.319004,133.025239,139.604049,I,Above,Gable,0,5701,,38.76673778,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20492,NJBF000055792,,Margate City,NJ,39.32698732,-74.5145189,RES1,3001,,NaN,NE,1950,0,3102,2,1,957.7997858,957.7997858,3505,NO,35.85,42.4,3,6.95,6106,113.202507,123.063151,132.755037,139.30969,I,Above,Gable,0,5701,,39.12655746,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20493,NJBF000054196,23 S CEDAR GROVE AVE,Margate City,NJ,39.32269582,-74.51070969,RES1,3001,,23,NE,2006,2018,3103,2,1,1735.512371,1735.512371,3505,NO,38.05,50.83,3,7.35,6106,113.349434,123.179441,132.871976,139.441962,I,Above,Gable,0,5701,,44.43901038,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 20494,NJBF000056465,218 N RUMSON AVE,Margate City,NJ,39.32852799,-74.51193481,RES1,3001,,17,NE,1952,1952,3102,2,1,1585.679322,1585.679322,3505,NO,22.3,33.27,3,-0.62,6106,113.236521,123.091075,132.785078,139.342152,I,Above,Gable,0,5701,,27.78294156,0,0,,,,1,1,,0.03,nav,1,1952,2,, 20495,NJBF000058297,206 N HUNTINGTON AVE,Margate City,NJ,39.33205847,-74.50436051,RES1,3001,,17,NE,1957,1957,3101,1,1,1548.664631,1548.664631,3505,NO,19.31,24.88,3,6.3,6106,113.352175,123.184779,132.885039,139.449269,I,Above,Gable,0,5701,,22.0932147,0,0,,,,1,1,,0.03,nav,1,1957,1,, 20496,NJBF000055636,214 N HARDING AVE,Margate City,NJ,39.32662117,-74.51542154,RES1,3001,,47,NE,1950,1950,3102,2,2,930.6554085,930.6554085,3505,NO,36.05,47.61,3,1.45,6106,113.188151,123.051446,132.742662,139.296052,I,Above,Flat,0,5701,,41.82801336,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20497,NJBF000056952,320 N RUMSON AVE,Margate City,NJ,39.32960857,-74.51295379,RES1,3001,,20,NE,1988,1988,3102,3,1,2165.391373,2165.391373,3505,NO,40.12,51.12,3,5.05,6106,113.198375,123.060783,132.754447,139.306894,I,Above,Gable,0,5701,,45.6226835,0,1.2,,,,1,1,,0.03,nav,1,1988,3,, 20498,NJBF000056750,1 S HAVERFORD AVE,Margate City,NJ,39.32917651,-74.50030831,RES1,3001,,18,NE,1964,1964,3102,2,1,1867.982979,1867.982979,3505,NO,19.91,32.62,3,-1.45,6106,113.482573,123.28909,132.991821,139.57094,I,Above,Hip,0,5701,,26.2648623,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 20499,NJBF000059266,7605 WINCHESTER AVE,Margate City,NJ,39.33388962,-74.49743575,RES1,3001,,17,NE,1948,1948,3103,2,1,799.680263,799.680263,3505,NO,34.28,42.6,3,4.97,6106,113.478985,123.286822,132.99312,139.5645,I,Above,Flat,0,5701,,38.44089812,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 20500,NJBF000059444,109 N CLERMONT AVE,Margate City,NJ,39.33425284,-74.49803541,RES1,3001,,18,NE,1929,1929,3103,2,1,1504.016052,1504.016052,3505,NO,34.37,47.23,3,-1.34,6112,113.460683,123.272119,132.977961,139.547133,I,Above,Hip,0,5701,,40.79875596,0,0,,,,1,1,,0.35,nav,1,1929,2,, 20501,NJBF000056618,8800 AMHERST AVE,Margate City,NJ,39.32887841,-74.51138654,RES1,3001,,17,NE,1954,1954,3102,2,1,2263.687661,2263.687661,3505,NO,36.62,46.5,3,-0.97,6106,113.243441,123.096748,132.791213,139.348701,I,Above,Flat,0,5701,,41.56072446,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 20502,NJBF000055121,110 N HARDING AVE,Margate City,NJ,39.32520583,-74.51402597,RES1,3001,,47,NE,1948,1948,3102,2,2,859.3244603,859.3244603,3505,NO,21.63,31.79,3,-1.58,6106,113.239662,123.092245,132.783764,139.342873,I,Above,Gable,0,5701,,26.70950095,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20503,NJBF000057281,309 N PEMBROKE AVE,Margate City,NJ,39.33028812,-74.51117038,RES1,3001,,19,NE,1985,1985,3102,3,1,1892.789799,1892.789799,3505,NO,46.35,54.51,3,3.43,6106,113.227715,123.084526,132.779519,139.334238,I,Above,Hip,0,5701,,50.42808298,0,0,,,,1,1,,0.03,nav,1,1985,3,, 20504,NJBF000056240,18 N MANSFIELD AVE,Margate City,NJ,39.3280279,-74.50676138,RES1,3001,,17,NE,1936,1936,3102,2,1,874.953254,874.953254,3505,NO,32.42,44.65,3,8.75,6106,113.357379,123.188066,132.885457,139.454386,I,Above,Hip,0,5701,,38.53611096,0,1.2,,,,1,1,,0.03,nav,1,1936,2,, 20505,NJBF000057745,27 N GRANVILLE AVE,Margate City,NJ,39.3310881,-74.50130239,RES1,3001,,19,NE,1928,1928,3102,2,1,1268.895266,1268.895266,3505,NO,33.96,46.37,3,4.31,6106,113.433378,123.24988,132.952327,139.525011,I,Above,Hip,0,5701,,40.16630836,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 20506,NJBF000058557,211 N HUNTINGTON AVE,Margate City,NJ,39.33251091,-74.50427036,RES1,3001,,17,NE,1956,1956,3102,2,1,1530.210157,1530.210157,3505,NO,42.44,54.18,3,4.72,6106,113.347734,123.181271,132.881695,139.444859,I,Above,Gable,0,5701,,48.3085529,0,0,,,,1,1,,0.03,nav,1,1956,2,, 20507,NJBF000057932,8706 FULTON AVE,Margate City,NJ,39.33139417,-74.5131258,RES1,3001,,17,NE,1930,1930,3102,2,1,2199.535354,2199.535354,3505,NO,37.14,45.11,3,7.16,6106,113.168682,123.037439,132.73143,139.279191,I,Above,Hip,0,5701,,41.12457377,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20508,NJBF000057289,425 N RUMSON AVE,Margate City,NJ,39.33030319,-74.51306013,RES1,3001,,18,NE,1982,1982,3102,2,1,1693.756783,1693.756783,3505,NO,40.61,49.44,3,3.69,6106,113.185949,123.051011,132.744788,139.295375,I,Above,Hip,0,5701,,45.02789603,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 20509,NJBF000061055,419 N EXETER AVE,Margate City,NJ,39.33697453,-74.50393277,RES1,3001,7,19,NE,1994,1994,3102,2,1,1712.139401,1712.139401,3505,NO,28.4,33.57,3,-2.28,6106,113.292364,123.136985,132.838294,139.388037,I,Above,Hip,0,5701,,30.98738594,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 20510,NJBF000057280,9 N GRANVILLE AVE,Margate City,NJ,39.3302872,-74.50053999,RES1,3001,,18,NE,1929,1929,3102,2,1,1230.329667,1230.329667,3505,NO,22.7,31.43,3,-2.33,6106,113.46158,123.272424,132.975283,139.551411,I,Above,Hip,0,5701,,27.06358672,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20511,NJBF000056062,225 N UNION AVE,Margate City,NJ,39.32764754,-74.51334988,RES1,3001,,17,NE,1930,1930,3102,2,1,968.4958904,968.4958904,3505,NO,28.04,34.95,3,3.97,6106,113.218382,123.076181,132.769009,139.324875,I,Above,Gable,0,5701,,31.49588673,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20512,NJBF000055060,9 N VENDOME AVE,Margate City,NJ,39.32501543,-74.51173127,RES1,3001,,22,NE,2013,2013,3102,3,1,2046.892612,2046.892612,3505,NO,48.89,59,3,1.33,6106,113.292671,123.134842,132.827729,139.392033,I,Above,Hip,0,5701,,53.94685741,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 20513,NJBF000057129,207 N MANSFIELD AVE,Margate City,NJ,39.32998728,-74.50809976,RES1,3001,,19,NE,2002,2002,3102,3,1,1160.801043,1160.801043,3505,NO,33.55,41.11,3,2,6106,113.299574,123.142146,132.839158,139.401057,I,Above,Gable,0,5701,,37.32618092,0,0,,,,1,1,,0.03,nav,1,2002,3,, 20514,NJBF000062387,6 EXETER CT,Margate City,NJ,39.33934592,-74.5061409,RES1,3001,,18,NE,1970,1970,3102,2,1,1661.966341,1661.966341,3505,NO,27.8,40.17,3,0.48,6106,113.210616,123.071281,132.770981,139.308364,I,Above,Gable,0,5701,,33.98199412,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 20515,NJBF000054439,7 S CEDAR GROVE AVE,Margate City,NJ,39.32339917,-74.51140407,RES1,3001,,21,NE,1969,2018,3102,2,1,908.6919576,908.6919576,3505,NO,33.14,43.89,3,3.01,6106,113.323811,123.159146,132.851551,139.419126,I,Above,Gable,0,5701,,38.51280251,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 20516,NJBF000057671,3 N EXETER AVE,Margate City,NJ,39.33096731,-74.49806575,RES1,3001,,17,NE,1962,1962,3102,2,1,2334.023843,2334.023843,3505,NO,32.3,38.89,3,3.86,6106,113.506347,123.308559,133.01367,139.592659,I,Above,Gable,0,5701,,35.59434919,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 20517,NJBF000057741,7 N EXETER AVE,Margate City,NJ,39.33107781,-74.49817476,RES1,3001,,17,NE,1925,1925,3102,2,1,1167.482832,1167.482832,3505,NO,38.32,45.64,3,7.31,6106,113.502371,123.305376,133.010422,139.588921,I,Above,Hip,0,5701,,41.97978257,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20518,NJBF000055429,203 N BENSON AVE,Margate City,NJ,39.3260685,-74.5151045,IND2,3004,,NaN,ME,1969,0,3401,1,1,3155.381677,3155.381677,3507,NO,11.4,22.61,1,0.8,6106,113.203279,123.063365,132.754567,139.309732,I,Above,Flat,0,NaN,,17.00485399,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20519,NJBF000058005,437 N PEMBROKE AVE,Margate City,NJ,39.33154832,-74.51238281,RES1,3001,,19,NE,1987,1987,3102,2,1,2496.112155,2496.112155,3505,NO,38.91,47.13,3,3.92,6106,113.182807,123.0488,132.743298,139.29229,I,Above,Hip,0,5701,,43.01992587,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 20520,NJBF000057476,427 N RUMSON AVE,Margate City,NJ,39.330635,-74.5132655,RES1,3001,,17,NE,1966,1966,3102,2,1,597.2911553,597.2911553,3505,NO,27.51,37.84,3,6.4,6106,113.176599,123.043599,132.737329,139.286663,I,Above,Hip,0,5701,,32.67431836,0,0.2,,,,1,1,,0.03,nav,1,1966,2,, 20521,NJBF000058407,20 N DELAVAN AVE,Margate City,NJ,39.33225964,-74.49738038,RES1,3001,,28,NE,1925,1925,3102,2,2,1349.231283,1349.231283,3505,NO,37.84,51.12,3,2.63,6106,113.503148,123.306146,133.012161,139.588765,I,Above,Flat,0,5701,,44.47856349,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20522,NJBF000057903,206 N JASPER AVE,Margate City,NJ,39.33136602,-74.50615883,RES1,3001,,17,NE,1955,1955,3102,2,1,1656.899254,1656.899254,3505,NO,33.21,38.37,3,8.51,6106,113.322453,123.160806,132.859561,139.422044,I,Above,Gable,0,5701,,35.79172847,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 20523,NJBF000055995,219 N UNION AVE,Margate City,NJ,39.3274795,-74.513193,RES1,3001,,17,NE,1930,1930,3102,2,1,843.7382329,843.7382329,3505,NO,27.61,35.58,3,1.82,6106,113.224292,123.080868,132.773738,139.330291,I,Above,Gable,0,5701,,31.59228213,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20524,NJBF000057675,203 N JEROME AVE,Margate City,NJ,39.33097242,-74.50610899,RES1,3001,,17,NE,1955,1955,3102,2,1,1397.147897,1397.147897,3505,NO,27.94,35.34,3,4.58,6106,113.329201,123.166153,132.864852,139.428435,I,Above,Gable,0,5701,,31.63927331,0,0,,,,1,1,,0.03,nav,1,1955,2,, 20525,NJBF000057184,5 N GRANVILLE AVE,Margate City,NJ,39.33009802,-74.50036142,RES1,3001,,17,NE,1954,1954,3102,2,1,1231.671456,1231.671456,3505,NO,30.94,37.28,3,5.84,6106,113.468219,123.27773,132.980684,139.557602,I,Above,Hip,0,5701,,34.11268271,0,0,,,,1,1,,0.03,nav,1,1954,2,, 20526,NJBF000054960,1 N UNION AVE,Margate City,NJ,39.32475132,-74.51051407,RES1,3001,,19,NE,1950,1950,3101,1,1,2911.125383,2911.125383,3505,NO,10.12,16.28,3,-2,6106,113.323194,123.159304,132.852881,139.420141,I,Above,Gable,0,5701,,13.20079063,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 20527,NJBF000057487,426 N PEMBROKE AVE,Margate City,NJ,39.33065519,-74.5120775,RES1,3001,,20,NE,2005,2005,3102,2,1,1857.381023,1857.381023,3505,NO,28.14,40.27,3,5.26,6106,113.202432,123.06433,132.758821,139.310698,I,Above,Hip,0,5701,,34.2035798,0,0,,,,1,1,,0.03,nav,1,2005,2,, 20528,NJBF000057916,8 S BRUNSWICK AVE,Margate City,NJ,39.33137798,-74.49448899,RES1,3001,,19,NE,1941,1941,3102,2,1,1204.354273,1204.354273,3505,NO,37.38,44.98,3,-0.78,6106,113.579278,123.367345,133.075716,139.659851,I,Above,Gable,0,5701,,41.17863093,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 20529,NJBF000059884,7607 MONMOUTH AVE,Margate City,NJ,39.33501687,-74.49877314,RES1,3001,,17,NE,1957,1957,3103,1,1,1437.350522,1437.350522,3505,NO,16.84,31.18,3,-0.09,6106,113.433708,123.25045,132.955777,139.521121,I,Above,Flat,0,5701,,24.0118718,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, 20530,NJBF000059458,102 N BRUNSWICK AVE,Margate City,NJ,39.3342828,-74.4970525,RES1,3001,,19,NE,1937,1937,3102,2,1,1055.197685,1055.197685,3505,NO,31.29,41.78,3,8.73,6106,113.481955,123.289222,132.995926,139.566604,I,Above,Gable,0,5701,,36.53482339,0,0,,,,1,1,,0.03,nav,1,1937,2,, 20531,NJBF000055358,6 N RUMSON AVE,Margate City,NJ,39.32587634,-74.50935801,RES1,3001,,17,NE,1940,1940,3102,2,1,826.3457985,826.3457985,3505,NO,27.94,37.82,3,3.84,6106,113.331897,123.166797,132.861602,139.429312,I,Above,Gable,0,5701,,32.88081074,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20532,NJBF000057622,437 N RUMSON AVE,Margate City,NJ,39.33089047,-74.51365152,RES1,3001,,20,NE,2010,2010,3102,2,1,2425.157594,2425.157594,3505,NO,40.39,54.23,3,6.33,6106,113.164412,123.03389,132.727439,139.275299,I,Above,Hip,0,5701,,47.31090214,0,0,,,,1,1,,0.03,nav,1,2010,2,, 20533,NJBF000056036,205 N THURLOW AVE,Margate City,NJ,39.32758056,-74.51230551,RES1,3001,,20,NE,1950,1950,3102,3,1,1284.311714,1284.311714,3505,NO,58.75,69.05,3,8.87,6106,113.242251,123.095345,132.788809,139.347075,I,Above,Gable,0,5701,,63.89939318,0,0,,,,1,1,,0.03,nav,1,1950,3,, 20534,NJBF000057703,28 N GLADSTONE AVE,Margate City,NJ,39.33102195,-74.50081052,RES1,3001,,17,NE,1940,1940,3101,1,1,1048.909853,1048.909853,3505,NO,12.48,22.29,3,-1.18,6106,113.445129,123.259319,132.962148,139.535928,I,Above,Hip,0,5701,,17.3861917,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 20535,NJBF000059742,120 N CLARENDON AVE,Margate City,NJ,39.33477515,-74.49831781,RES1,3001,,17,NE,1930,1930,3103,2,1,1218.201784,1218.201784,3505,NO,38.07,52.22,3,4.93,6110,113.447134,123.261238,132.96692,139.533847,I,Above,Gable,0,5701,,45.14447504,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 20536,NJBF000058985,7702 WINCHESTER AVE,Margate City,NJ,39.33330647,-74.49788486,RES1,3001,,17,NE,1950,1950,3102,1,1,1175.169513,1175.169513,3505,NO,19.34,32.07,3,2.13,6106,113.47728,123.285423,132.99122,139.563742,I,Above,Hip,0,5701,,25.70732939,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 20537,NJBF000057377,8403 MONMOUTH AVE,Margate City,NJ,39.3304656,-74.50664996,RES1,3001,,18,NE,1950,1950,3102,2,1,1276.781127,1276.781127,3505,NO,27.4,34.17,3,6.28,6106,113.324564,123.162327,132.860503,139.424236,I,Above,Hip,0,5701,,30.78627295,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20538,NJBF000056443,203 N QUINCY AVE,Margate City,NJ,39.32848026,-74.51034903,RES1,3001,,17,NE,1955,1955,3101,1,1,1825.762327,1825.762327,3505,NO,14.64,23,3,1.03,6106,113.272032,123.119594,132.814627,139.37519,I,Above,Gable,0,5701,,18.82316053,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 20539,NJBF000057567,428 N PEMBROKE AVE,Margate City,NJ,39.33079521,-74.51218754,RES1,3001,,NaN,NE,1953,0,3102,2,1,1446.139248,1446.139248,3505,NO,32.78,47.25,3,5.14,6106,113.197985,123.060797,132.755251,139.306548,I,Above,Gable,0,5701,,40.01469887,0,0,,,,1,1,,0.03,nav,1,1953,2,, 20540,NJBF000058573,8405 FREMONT AVE,Margate City,NJ,39.33253778,-74.50836095,RES1,3001,,17,NE,1963,1963,3102,2,1,1920.38961,1920.38961,3505,NO,38.12,46.33,3,1.54,6106,113.257174,123.108612,132.806024,139.360927,I,Above,Hip,0,5701,,42.22803623,0,1.2,,,,1,1,,0.03,nav,1,1963,2,, 20541,NJBF000059087,7703 WINCHESTER AVE,Margate City,NJ,39.33351506,-74.49809391,RES1,3001,,17,NE,1940,1940,3103,1,1,1225.440798,1225.440798,3505,NO,27.87,34.19,3,8.89,6106,113.469733,123.279366,132.985024,139.556522,I,Above,Flat,0,5701,,31.02974696,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 20542,NJBF000059457,8501 WELLINGTON AVE,Margate City,NJ,39.33428214,-74.51083417,RES1,3001,,20,NE,1995,1995,3102,2,1,2536.953199,2536.953199,3505,NO,25.18,30.65,3,-0.86,6106,113.177762,123.045182,132.741177,139.286037,I,Above,Flat,0,5701,,27.91963886,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 20543,NJBF000057512,202 N JEROME AVE,Margate City,NJ,39.33069126,-74.5065511,RES1,3001,,17,NE,1960,1960,3102,2,1,1461.083803,1461.083803,3505,NO,26.57,38.2,3,0.36,6106,113.323507,123.161525,132.85983,139.423216,I,Above,Hip,0,5701,,32.38417877,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20544,NJBF000057807,8800 FULTON AVE,Margate City,NJ,39.33119281,-74.51351866,RES1,3001,,17,NE,1950,1950,3102,2,1,1591.546701,1591.546701,3505,NO,25.72,38.34,3,4.49,6106,113.162945,123.03279,132.726491,139.273893,I,Above,Gable,0,5701,,32.03223438,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20545,NJBF000059301,106B N CLERMONT AVE,Margate City,NJ,39.33396795,-74.49824719,RES1,3001,,18,NE,1987,1987,3103,2,1,1148.991249,1148.991249,3505,NO,38.27,46.95,3,6.39,6106,113.459999,123.271561,132.97717,139.546936,I,Above,Gable,0,5701,,42.61144225,0,0,,,,1,1,,0.03,nav,1,1987,2,, 20546,NJBF000058653,402 N JEROME AVE,Margate City,NJ,39.33268681,-74.50847719,RES1,3001,,17,NE,1962,1962,3102,1,1,2553.392257,2553.392257,3505,NO,11.44,19.81,3,-2.12,6106,113.252488,123.104876,132.802234,139.356492,I,Above,Gable,0,5701,,15.62201673,0,0,,,,1,1,,0.03,nav,1,1962,1,, 20547,NJBF000057995,8704 FULTON AVE,Margate City,NJ,39.3315241,-74.51292805,RES1,3001,,17,NE,1930,1930,3101,2,1,2618.855978,2618.855978,3505,NO,39.75,53.88,3,1.28,6106,113.17116,123.039455,132.7336,139.281466,I,Above,Flat,0,5701,,46.81567982,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 20548,NJBF000057708,21 S BRUNSWICK AVE,Margate City,NJ,39.33102494,-74.49378825,RES1,3001,,19,NE,1925,1925,3102,2,1,1899.618805,1899.618805,3505,NO,26.76,40.72,3,-1.65,6106,113.599696,123.383753,133.092671,139.678986,I,Above,Flat,0,5701,,33.7384089,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20549,NJBF000056529,204 N PEMBROKE AVE,Margate City,NJ,39.3286825,-74.51015739,RES1,3001,,17,NE,1949,1949,3101,1,1,1195.894757,1195.894757,3505,NO,16.97,28.93,3,5.34,6106,113.273303,123.12068,132.815903,139.376437,I,Above,Hip,0,5701,,22.95322113,0,0,,,,1,1,,0.03,nav,1,1949,1,, 20550,NJBF000060088,215 N CLERMONT AVE,Margate City,NJ,39.3353805,-74.4991085,RES1,3001,,17,NE,1959,1959,3103,1,1,950.2688975,950.2688975,3505,NO,14.08,19.32,3,0.3,6106,113.421221,123.240416,132.945508,139.509035,I,Above,Hip,0,5701,,16.69691743,0,0,,,,1,1,,0.03,nav,1,1959,1,, 20551,NJBF000053910,12 S WASHINGTON AVE,Margate City,NJ,39.32173629,-74.51357131,RES1,3001,,20,NE,1920,1920,3102,3,2,1242.225504,1242.225504,3507,NO,55.77,66.04,1,0.64,6106,113.301424,123.14017,132.830402,139.395989,I,Above,Hip,0,5701,,60.90630955,0,0,,,,1,1,,0.03,nav,1,1920,3,, 20552,NJBF000059092,2 N FREDERICKSBURG AVE,Margate City,NJ,39.33352829,-74.49328661,RES1,3001,,18,NE,1925,1925,3102,2,1,1099.49496,1099.49496,3505,NO,32.24,43.04,3,-2.04,6106,113.575549,123.364525,133.074495,139.653629,I,Above,Hip,0,5701,,37.64209305,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20553,NJBF000057853,431 N QUINCY AVE,Margate City,NJ,39.3312711,-74.51295314,RES1,3001,,21,NE,2014,2014,3102,3,1,3060.335258,3060.335258,3505,NO,41.16,53.15,3,3.52,6106,113.174268,123.041889,132.735963,139.284412,I,Above,Hip,0,5701,,47.15847831,0,0,,,,1,1,,0.03,nav,1,2014,3,, 20554,NJBF000059597,114 N CLARENDON AVE,Margate City,NJ,39.33452422,-74.4980487,RES1,3001,,17,NE,1925,1925,3103,2,1,1148.517732,1148.517732,3505,NO,38.48,47.3,3,5.86,6106,113.456581,123.268828,132.974702,139.542932,I,Above,Hip,0,5701,,42.8930563,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20555,NJBF000056268,11 S HANOVER AVE,Margate City,NJ,39.32810205,-74.5008696,RES1,3001,,18,NE,1925,1925,3102,2,1,1593.564472,1593.564472,3505,NO,36.89,48.96,3,-0.43,6106,113.485683,123.291331,132.993263,139.573543,I,Above,Hip,0,5701,,42.92141063,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20556,NJBF000058460,8204 AMHERST AVE,Margate City,NJ,39.33236138,-74.50544404,RES1,3001,,17,NE,1959,1959,3102,2,1,1238.385469,1238.385469,3505,NO,36.25,49.1,3,8.3,6106,113.323991,123.162194,132.861696,139.42297,I,Above,Hip,0,5701,,42.67739971,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 20557,NJBF000057371,105 N IROQUOIS AVE,Margate City,NJ,39.33045069,-74.50392805,RES1,3001,,45,NE,1920,1920,3102,2,2,1844.042469,1844.042469,3507,NO,28.96,43.94,1,-0.07,6106,113.384676,123.21062,132.910831,139.480042,I,Above,Hip,0,5701,,36.45181762,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 20558,NJBF000057833,106 N HAVERFORD AVE,Margate City,NJ,39.33124338,-74.5027867,RES1,3001,,17,NE,1945,1945,3102,2,1,1861.01609,1861.01609,3507,NO,25.77,37.92,1,2.34,6106,113.398467,123.221844,132.923142,139.492589,I,Above,Gable,0,5701,,31.84760677,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20559,NJBF000053893,20 S DECATUR AVE,Margate City,NJ,39.32169288,-74.51239381,RES1,3001,,20,NE,2008,2008,3102,3,1,1493.616836,1493.616836,3507,NO,43.45,56.36,1,-0.53,6106,113.32771,123.16136,132.85231,139.420326,I,Above,Gable,0,5701,,49.9024082,0,0,,,,1,1,,0.03,nav,1,2008,3,, 20560,NJBF000061281,42 BAYSIDE COURT,Margate City,NJ,39.33736958,-74.51082806,RES1,3001,,19,NE,1990,1990,3102,2,1,2002.706699,2002.706699,3505,NO,38.35,52.57,3,5.19,6106,113.134284,123.010472,132.706751,139.242093,I,Above,Hip,0,5701,,45.46190194,0,0,,,,1,1,,0.03,nav,1,1990,2,, 20561,NJBF000056669,8106 VENTNOR AVE,Margate City,NJ,39.32901366,-74.50060441,RES1,3001,,NaN,NE,1952,1925,3102,2,4,2490.49381,2490.49381,3505,NO,29.71,37.93,3,-0.01,6106,113.478405,123.285698,132.988137,139.567052,I,Above,Hip,0,5701,,33.81918156,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 20562,NJBF000058307,8 N CLERMONT AVE,Margate City,NJ,39.33206835,-74.49651652,RES1,3001,,17,NE,1929,1929,3102,1,1,1359.023754,1359.023754,3505,NO,17.6,28.23,3,6.44,6106,113.524873,123.32361,133.030336,139.609004,I,Above,Gable,0,5701,,22.91739914,0,1.1,,,,1,1,,0.03,nav,1,1929,1,, 20563,NJBF000057652,103 S ARGYLE AVE,Margate City,NJ,39.330945,-74.492157,RES1,3001,,19,NE,1925,1925,3102,2,1,1177.062399,1177.062399,3505,NO,35.49,48.82,3,6.7,6106,113.636719,123.413594,133.124003,139.713252,I,Above,Hip,0,5701,,42.15480938,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20564,NJBF000056797,107 S DOUGLAS AVE,Margate City,NJ,39.329281,-74.4952495,RES1,3001,,21,NE,2001,2001,3102,3,1,1772.123735,1772.123735,3505,NO,54.89,67.38,3,-0.81,6106,113.592313,123.377506,133.084599,139.672705,I,Above,Hip,0,5701,,61.13652884,0,0,,,,1,1,,0.03,nav,1,2001,3,, 20565,NJBF000057205,211 N MANSFIELD AVE,Margate City,NJ,39.3301437,-74.5082639,RES1,3001,,17,NE,1950,1950,3101,1,1,776.0814536,776.0814536,3505,NO,23.83,32.55,3,7.58,6106,113.2937,123.137466,132.834404,139.395594,I,Above,Gable,0,5701,,28.19206146,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20566,NJBF000061307,7515 FREMONT AVE,Margate City,NJ,39.33740634,-74.49997123,RES1,3001,,18,NE,2009,2009,3103,2,1,2223.861946,2223.861946,3505,NO,24.77,38.91,3,-1.83,6106,113.374026,123.202416,132.906994,139.461764,I,Above,Hip,0,5701,,31.83668994,0,0,,,,1,1,,0.03,nav,1,2009,2,, 20567,NJBF000059542,8213 FULTON AVE,Margate City,NJ,39.33443,-74.5077885,RES1,3001,,20,NE,2006,2006,3101,3,1,1113.136245,1113.136245,3505,NO,55.38,64.95,3,7.43,6106,113.242877,123.097347,132.79548,139.346145,I,Above,Gable,0,5701,,60.16479287,0,0,,,,1,1,,0.03,nav,1,2006,3,, 20568,NJBF000059966,402 N HUNTINGTON AVE,Margate City,NJ,39.33516637,-74.5072313,RES1,3001,,17,NE,1964,1964,3101,2,1,1777.128922,1777.128922,3505,NO,40.95,51.49,3,5.78,6110,113.244801,123.098921,132.797553,139.34708,I,Above,Hip,0,5701,,46.22266978,0,1.2,,,,1,1,,0.35,nav,1,1964,2,, 20569,NJBF000057058,203 N MANSFIELD AVE,Margate City,NJ,39.32983235,-74.5079532,RES1,3001,,17,NE,1940,1940,3102,2,1,1192.945183,1192.945183,3505,NO,25.39,37.76,3,3.52,6106,113.305046,123.146503,132.843577,139.406141,I,Above,Gable,0,5701,,31.57304103,0,0,,,,1,1,,0.03,nav,1,1940,2,, 20570,NJBF000060603,4 E GILMAR CIRCLE,Margate City,NJ,39.33626535,-74.50634603,RES1,3001,,17,NE,1966,1966,3101,2,1,1620.521367,1620.521367,3505,NO,39.86,54.82,3,7.14,6106,113.248914,123.102216,132.801617,139.349339,I,Above,Gable,0,5701,,47.33789221,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 20571,NJBF000056791,8100 VENTNOR AVE,Margate City,NJ,39.32926965,-74.50010448,RES1,3001,,17,NE,1964,1964,3101,1,1,1622.025199,1622.025199,3505,NO,9.42,19.56,3,-1.57,6106,113.485725,123.291647,132.994574,139.573872,I,Above,Flat,0,5701,,14.49071659,0,0,,,,1,1,,0.03,nav,1,1964,1,, 20572,NJBF000058517,,Margate City,NJ,39.33245276,-74.49753319,RES1,3001,,NaN,NE,1969,0,3102,2,1,1322.958756,1322.958756,3505,NO,41.76,53.76,3,3.25,6106,113.497053,123.301261,133.007186,139.582949,I,Above,Flat,0,5701,,47.76190758,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20573,NJBF000057770,317 N NASSAU AVE,Margate City,NJ,39.33114073,-74.5101088,RES1,3001,,17,NE,1960,1960,3102,2,1,2693.446184,2693.446184,3505,NO,29.57,44.51,3,5.46,6106,113.238727,123.093564,132.789472,139.344368,I,Above,Gable,0,5701,,37.04083858,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20574,NJBF000059267,201 N ESSEX AVE,Margate City,NJ,39.33389147,-74.4999494,RES1,3001,,20,NE,2005,2005,3103,2,1,1259.630602,1259.630602,3505,NO,36.54,50.82,3,5.6,6106,113.423527,123.242248,132.946399,139.513483,I,Above,Flat,0,5701,,43.68303792,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 20575,NJBF000059862,62 SEASIDE COURT,Margate City,NJ,39.33497846,-74.50820246,RES1,3001,,19,NE,2000,2000,3101,2,1,1838.323103,1838.323103,3505,NO,22.67,33.55,3,0.2,6106,113.226006,123.083861,132.781769,139.329951,I,Above,Hip,0,5701,,28.10707462,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 20576,NJBF000056545,,Margate City,NJ,39.32871201,-74.50110723,RES1,3001,,NaN,NE,1969,0,3102,2,1,1369.020342,1369.020342,3505,NO,41.66,54.27,3,6.11,6106,113.47169,123.280221,132.982159,139.56076,I,Above,Flat,0,5701,,47.96256989,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20577,NJBF000054117,21 S BENSON AVE,Margate City,NJ,39.32244449,-74.51182902,RES1,3001,,18,NE,1985,1985,3103,3,1,2083.850014,2083.850014,3505,NO,36.63,49.99,3,-0.59,6106,113.328783,123.162649,132.854331,139.422441,I,Above,Hip,0,5701,,43.31172902,0,1.1,,,,1,1,,0.03,nav,1,1985,3,, 20578,NJBF000056725,212 N PEMBROKE AVE,Margate City,NJ,39.32912675,-74.510594,RES1,3001,,17,NE,1950,1950,3101,1,1,943.3366699,943.3366699,3505,NO,8.7,13.81,3,-2.88,6106,113.257229,123.107901,132.802962,139.361592,I,Above,Gable,0,5701,,11.25417818,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20579,NJBF000060402,7505 MONMOUTH AVE,Margate City,NJ,39.335902,-74.4972425,RES1,3001,,17,NE,1949,1949,3103,1,1,948.4086155,948.4086155,3505,NO,17.77,24.43,3,-1.13,6106,113.455195,123.267694,132.974474,139.539048,I,Above,Flat,0,5701,,21.1005484,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 20580,NJBF000058835,29 N DELAVAN AVE,Margate City,NJ,39.333035,-74.49764933,RES1,3001,,19,NE,2011,2011,3102,2,1,978.5134442,978.5134442,3505,NO,31.1,43,3,3.33,6106,113.486296,123.292655,132.998603,139.572383,I,Above,Hip,0,5701,,37.05179736,0,0,,,,1,1,,0.03,nav,1,2011,2,, 20581,NJBF000055633,9 DOLPHIN DR,Margate City,NJ,39.32661375,-74.4999899,RES1,3001,,20,NE,1957,1957,3102,3,1,1777.809667,1777.809667,3505,NO,43.98,50.57,3,-0.97,6106,113.526505,123.323785,133.025912,139.61047,I,Above,Flat,0,5701,,47.27557611,0,0,,,,1,1,,0.03,nav,1,1957,3,, 20582,NJBF000058798,406A N JEROME AVE,Margate City,NJ,39.33295659,-74.50877584,RES1,3001,,17,NE,1977,1977,3102,1,1,2900.534226,2900.534226,3505,NO,17.37,30.85,3,1.3,6106,113.242041,123.096536,132.793734,139.346633,I,Above,Gable,0,5701,,24.11211847,0,0,,,,1,1,,0.03,nav,1,1977,1,, 20583,NJBF000057587,306 N MANSFIELD AVE,Margate City,NJ,39.33082972,-74.50949777,RES1,3001,,17,NE,1952,1952,3102,1,1,1252.474039,1252.474039,3505,NO,10.47,19.36,3,-1.57,6106,113.256656,123.107884,132.804136,139.361092,I,Above,Gable,0,5701,,14.91685762,0,0,,,,1,1,,0.03,nav,1,1952,1,, 20584,NJBF000056630,8112 VENTNOR AVE,Margate City,NJ,39.3289052,-74.50083128,RES1,3001,,17,NE,1950,1950,3101,1,1,1844.038965,1844.038965,3505,NO,18.02,26.46,3,7.24,6106,113.474981,123.282917,132.985138,139.563856,I,Above,Hip,0,5701,,22.24368709,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 20585,NJBF000056149,8201 ATLANTIC AVE,Margate City,NJ,39.32782237,-74.5004057,RES1,3001,,18,NE,1950,1950,3102,2,1,2160.756839,2160.756839,3505,NO,35.7,48.98,3,-0.87,6106,113.499912,123.302714,133.00493,139.586615,I,Above,Flat,0,5701,,42.33874651,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 20586,NJBF000060712,422 N HUNTINGTON AVE,Margate City,NJ,39.3364356,-74.50839456,RES1,3001,,17,NE,1965,1965,3101,1,1,1421.361367,1421.361367,3505,NO,20.19,32.95,3,1.22,6106,113.201208,123.064023,132.761941,139.305156,I,Above,Hip,0,5701,,26.57116454,0,0,,,,1,1,,0.03,nav,1,1965,1,, 20587,NJBF000057709,212 N JEROME AVE,Margate City,NJ,39.33102532,-74.50687189,RES1,3001,,17,NE,1950,1950,3102,2,1,1255.916619,1255.916619,3505,NO,37.83,46.29,3,6.56,6106,113.311644,123.152066,132.850218,139.412123,I,Above,Hip,0,5701,,42.06179475,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20588,NJBF000056226,9105 FREMONT AVE,Margate City,NJ,39.32799687,-74.51615374,RES1,3001,,21,NE,1999,1999,3102,2,1,2456.535119,2456.535119,3505,NO,21.77,31.78,3,-1.24,6106,113.151797,123.022803,132.714055,139.262972,I,Above,Hip,0,5701,,26.77502796,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 20589,NJBF000060235,307 N ESSEX AVE,Margate City,NJ,39.3356291,-74.50184414,RES1,3001,,17,NE,1950,1950,3102,1,1,2316.167431,2316.167431,3505,NO,24.9,36.4,3,6.91,6106,113.357324,123.189122,132.891967,139.450007,I,Above,Hip,0,5701,,30.64900471,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 20590,NJBF000057504,207 N KENYON AVE,Margate City,NJ,39.33068337,-74.50689724,RES1,3001,,17,NE,1950,1950,3102,2,1,1273.598403,1273.598403,3505,NO,39.01,44.84,3,1.66,6106,113.316008,123.155501,132.853552,139.416254,I,Above,Hip,0,5701,,41.92474216,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20591,NJBF000055216,9300 AMHERST AVE,Margate City,NJ,39.32546032,-74.51723828,COM8,3003,,NaN,ME,1946,1946,3401,1,1,13901.71132,13901.71132,3507,NO,13.8,19.45,1,-0.77,6106,113.1657,123.032821,132.722552,139.27414,I,Above,Flat,0,5701,,16.62780063,0,0,,,,1,1,,0.03,nav,1,1946,1,, 20592,NJBF000055129,9306 AMHERST AVE,Margate City,NJ,39.32521983,-74.517374,COM8,3003,,NaN,ME,1969,0,3401,2,1,1383.820097,1383.820097,3507,NO,38.93,44.76,1,2.54,6106,113.166311,123.033188,132.722748,139.274482,I,Above,Flat,0,5701,,41.84739883,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20593,NJBF000061499,31 BAYSIDE COURT,Margate City,NJ,39.33774883,-74.51149497,RES1,3001,,19,NE,1988,1988,3102,2,1,1516.661518,1516.661518,3505,NO,29.71,40.94,3,0.96,6106,113.114211,122.994413,132.690257,139.22301,I,Above,Gable,0,5701,,35.32123234,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 20594,NJBF000054011,22 S CEDAR GROVE AVE,Margate City,NJ,39.3221015,-74.5111625,RES1,3001,,17,NE,1953,1953,3101,1,1,926.7405048,926.7405048,3505,NO,16.28,29.76,3,3.39,6106,113.348441,123.17832,132.87027,139.440178,I,Above,Hip,0,5701,,23.01583408,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 20595,NJBF000060478,416 N HUNTINGTON AVE,Margate City,NJ,39.33604398,-74.50809397,RES1,3001,,17,NE,1963,1963,3101,2,1,1389.481434,1389.481434,3505,NO,31.28,42.31,3,-1.66,6106,113.213369,123.073761,132.771861,139.316927,I,Above,Hip,0,5701,,36.79322114,0,0,,,,1,1,,0.03,nav,1,1963,2,, 20596,NJBF000056451,213 N RUMSON AVE,Margate City,NJ,39.32849414,-74.51137346,RES1,3001,,17,NE,1948,1948,3102,2,1,1248.963154,1248.963154,3505,NO,40.29,55.28,3,6.32,6106,113.249351,123.101373,132.795732,139.354086,I,Above,Gable,0,5701,,47.78689016,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20597,NJBF000055154,10 S OSBORNE AVE,Margate City,NJ,39.32529231,-74.50603808,RES1,3001,,19,NE,1920,1920,3103,3,1,2089.69119,2089.69119,3505,NO,46.2,54.14,3,3.78,6106,113.413187,123.232023,132.928947,139.504248,I,Above,Flat,0,5701,,50.17326103,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 20598,NJBF000059125,103 N DELAVAN AVE,Margate City,NJ,39.33360461,-74.49817754,RES1,3001,,17,NE,1945,1945,3103,1,1,1329.678653,1329.678653,3505,NO,17.77,29.99,3,0.45,6106,113.466616,123.276865,132.982467,139.553532,I,Above,Gable,0,5701,,23.88016175,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 20599,NJBF000060322,14 SEASIDE COURT,Margate City,NJ,39.33577573,-74.50884393,RES1,3001,,19,NE,1989,1989,3101,2,1,1844.332047,1844.332047,3505,NO,23.55,32.2,3,-1.36,6106,113.200562,123.06351,132.76105,139.305478,I,Above,Hip,0,5701,,27.87531289,0,0,,,,1,1,,0.03,nav,1,1989,2,, 20600,NJBF000060093,5 SEASIDE COURT,Margate City,NJ,39.33539129,-74.50782804,RES1,3001,,19,NE,1994,1994,3101,2,1,1837.179318,1837.179318,3505,NO,23.06,35.54,3,-2.7,6110,113.228439,123.085822,132.784047,139.331698,I,Above,Hip,0,5701,,29.30081482,0,1.1,,,,1,1,,0.35,nav,1,1994,2,, 20601,NJBF000057754,202 N JASPER AVE,Margate City,NJ,39.33110978,-74.50592227,RES1,3001,,17,NE,1955,1955,3102,2,1,1711.037957,1711.037957,3505,NO,38.16,44.68,3,6,6106,113.331339,123.167896,132.866766,139.430378,I,Above,Gable,0,5701,,41.41589584,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 20602,NJBF000054025,27 S BENSON AVE,Margate City,NJ,39.32213785,-74.51159049,RES1,3001,,21,NE,1950,1950,3102,2,1,1147.121198,1147.121198,3505,NO,38.74,52.66,3,0.6,6106,113.33857,123.170375,132.862064,139.431076,I,Above,Gable,0,5701,,45.69989516,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20603,NJBF000059685,209 N DOUGLAS AVE,Margate City,NJ,39.33467951,-74.49994893,RES1,3001,,17,NE,1956,1956,3103,2,1,1845.129414,1845.129414,3505,NO,31.28,44.88,3,7.17,6106,113.412456,123.233378,132.937658,139.50217,I,Above,Gable,0,5701,,38.07957073,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 20604,NJBF000061744,8206 LAGOON DRIVE,Margate City,NJ,39.3381816,-74.51123223,RES1,3001,,18,NE,1977,1977,3102,2,1,1866.346254,1866.346254,3505,NO,31.83,40.55,3,0.05,6106,113.113979,122.994197,132.69023,139.222081,I,Above,Gable,0,5701,,36.18969735,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 20605,NJBF000056434,18 S GRANVILLE AVE,Margate City,NJ,39.32846076,-74.49948027,RES1,3001,,20,NE,2010,2010,3102,3,1,1629.411478,1629.411478,3505,NO,61.05,75.23,3,5.12,6106,113.511053,123.311852,133.015042,139.597208,I,Above,Hip,0,5701,,68.13697224,0,0,,,,1,1,,0.03,nav,1,2010,3,, 20606,NJBF000059363,104 N CLARENDON AVE,Margate City,NJ,39.33409741,-74.49761309,RES1,3001,,17,NE,1940,1940,3103,2,1,1535.487318,1535.487318,3505,NO,37.09,44.97,3,4.34,6106,113.47218,123.281357,132.987538,139.557933,I,Above,Hip,0,5701,,41.02868675,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20607,NJBF000057874,9 S CLARENDON AVE,Margate City,NJ,39.33129884,-74.49471308,RES1,3001,,21,NE,1991,1991,3102,2,1,1183.182641,1183.182641,3505,NO,44.81,52.31,3,5.82,6106,113.575462,123.364261,133.072408,139.656389,I,Above,Gable,0,5701,,48.56203602,0,0,,,,1,1,,0.03,nav,1,1991,2,, 20608,NJBF000057566,208 N JEROME AVE,Margate City,NJ,39.3307907,-74.50669373,RES1,3001,,17,NE,1950,1950,3102,2,1,2051.364875,2051.364875,3505,NO,20.08,28.83,3,-0.95,6106,113.318923,123.157864,132.85609,139.418939,I,Above,Gable,0,5701,,24.45414846,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20609,NJBF000059210,107 N DELAVAN AVE,Margate City,NJ,39.3337814,-74.49835706,RES1,3001,,17,NE,1925,1925,3103,2,1,1601.945435,1601.945435,3505,NO,26.04,36.6,3,1,6106,113.460196,123.271712,132.977192,139.547384,I,Above,Hip,0,5701,,31.3168774,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20610,NJBF000062119,10 BAYCREST DRIVE,Margate City,NJ,39.3388221,-74.50816048,RES1,3001,,18,NE,1977,1977,3102,2,1,1638.857573,1638.857573,3505,NO,30.09,37.78,3,8.51,6106,113.173123,123.041384,132.73958,139.27519,I,Above,Hip,0,5701,,33.93184457,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 20611,NJBF000053457,9415 ATLANTIC AVE,Margate City,NJ,39.32000991,-74.51403889,RES3C,3001,,21,ME,1982,1982,3301,2,1,3054.227462,3054.227462,3505,NO,33.98,45.39,3,4.21,6106,113.317254,123.15188,132.840913,139.407836,I,Above,Flat,0,NaN,,39.68908269,0,0,,,,1,1,,0.03,nav,1,1982,2,, 20612,NJBF000058434,15 N DELAVAN AVE,Margate City,NJ,39.33230691,-74.49699161,RES1,3001,,45,NE,1929,1929,3102,2,2,1560.978849,1560.978849,3505,NO,38.78,53.18,3,2.22,6106,113.511035,123.312497,133.018861,139.595999,I,Above,Hip,0,5701,,45.98017715,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20613,NJBF000058383,13 N DELAVAN AVE,Margate City,NJ,39.33221451,-74.49692661,RES1,3001,,45,NE,1929,1929,3102,2,2,1437.916974,1437.916974,3505,NO,26.23,38.31,3,4.59,6106,113.513765,123.314685,133.021085,139.598609,I,Above,Hip,0,5701,,32.27181194,0,0,,,,1,1,,0.03,nav,1,1929,2,, 20614,NJBF000057102,1 N GRANVILLE AVE,Margate City,NJ,39.32992752,-74.50018804,RES1,3001,,22,NE,1920,1920,3102,2,1,1590.942018,1590.942018,3505,NO,30.8,36.62,3,3.3,6106,113.474456,123.282715,132.985763,139.563409,I,Above,Hip,0,5701,,33.71017942,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 20615,NJBF000056153,12 S HANOVER AVE,Margate City,NJ,39.32783368,-74.50113278,RES1,3001,,18,NE,1930,1930,3102,2,1,1780.500088,1780.500088,3505,NO,30.71,39.08,3,-0.79,6106,113.483773,123.28972,132.991351,139.571652,I,Above,Hip,0,5701,,34.89834981,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20616,NJBF000057831,216 N JEROME AVE,Margate City,NJ,39.3312422,-74.50705286,RES1,3001,,17,NE,1950,1950,3102,2,1,1511.443605,1511.443605,3505,NO,25.11,37.22,3,0.54,6106,113.304545,123.146407,132.84448,139.405469,I,Above,Hip,0,5701,,31.16278751,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20617,NJBF000058982,33 N CLERMONT AVE,Margate City,NJ,39.33329991,-74.49717474,RES1,3001,,21,NE,2012,2012,3102,3,1,1101.411293,1101.411293,3505,NO,45.55,52.89,3,5.31,6106,113.493021,123.298082,133.004496,139.578241,I,Above,Gable,0,5701,,49.21857271,0,0,,,,1,1,,0.03,nav,1,2012,3,, 20618,NJBF000062781,8 BAYSHORE CT,Margate City,NJ,39.34021088,-74.50723562,RES1,3001,,20,NE,2015,2015,3102,2,1,2134.621531,2134.621531,3505,NO,29.69,39.06,3,-2.36,6106,113.174427,123.042199,132.741065,139.273344,I,Above,Flat,0,5701,,34.3781705,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 20619,NJBF000060624,57 BAYSIDE COURT,Margate City,NJ,39.33629057,-74.5106869,RES1,3001,,19,NE,1997,1997,3102,1,1,2920.685075,2920.685075,3505,NO,16.77,28.2,3,0.66,6106,113.152566,123.025112,132.721421,139.260506,I,Above,Gable,0,5701,,22.48063831,0,1.1,,,,1,1,,0.03,nav,1,1997,1,, 20620,NJBF000059628,8209 FULTON AVE,Margate City,NJ,39.33457584,-74.50754854,RES1,3001,,17,NE,1955,1955,3101,2,1,1176.383901,1176.383901,3505,NO,25.7,37.97,3,-2.25,6106,113.24611,123.099946,132.798272,139.348977,I,Above,Gable,0,5701,,31.83736181,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 20621,NJBF000059584,8211 FULTON AVE,Margate City,NJ,39.33449663,-74.50764161,RES1,3001,,17,NE,1940,1940,3101,1,1,889.1369281,889.1369281,3505,NO,12.61,18.38,3,-1.11,6106,113.245174,123.099192,132.79744,139.348198,I,Above,Gable,0,5701,,15.49381711,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 20622,NJBF000054295,104 S SUMNER AVE,Margate City,NJ,39.32298865,-74.50758947,RES1,3001,,19,NE,1948,1948,3102,2,1,3000.888511,3000.888511,3505,NO,38.22,43.36,3,8.82,6106,113.413227,123.231037,132.925847,139.501486,I,Above,Hip,0,5701,,40.79255733,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 20623,NJBF000056528,5 S HUNTINGTON AVE,Margate City,NJ,39.32867829,-74.50064426,RES1,3001,,18,NE,1930,1930,3102,2,1,1525.40468,1525.40468,3505,NO,27.95,36.57,3,-1.55,6106,113.482354,123.288798,132.9911,139.570647,I,Above,Gable,0,5701,,32.26021052,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20624,NJBF000060371,8216 MARSHALL AVE,Margate City,NJ,39.33586666,-74.5099694,RES1,3001,,17,NE,1972,1972,3101,1,1,1945.28493,1945.28493,3505,NO,10.88,23.64,3,-2.66,6106,113.174415,123.042586,132.73935,139.281227,I,Above,Hip,0,5701,,17.25680319,0,0,,,,1,1,,0.03,nav,1,1972,1,, 20625,NJBF000061582,7505 FREMONT AVE,Margate City,NJ,39.33790187,-74.4991773,RES1,3001,,19,NE,2011,2011,3103,2,1,2902.347201,2902.347201,3505,NO,25.6,32.96,3,1,6106,113.384742,123.210959,132.916251,139.470319,I,Above,Gable,0,5701,,29.27747633,0,0,,,,1,1,,0.03,nav,1,2011,2,, 20626,NJBF000058412,216 N HANOVER AVE,Margate City,NJ,39.33226457,-74.50535725,RES1,3001,,17,NE,1941,1941,3101,1,1,1576.883336,1576.883336,3505,NO,14.19,28.03,3,-1.27,6106,113.327277,123.164818,132.864366,139.426074,I,Above,Gable,0,5701,,21.11183585,0,1.1,,,,1,1,,0.03,nav,1,1941,1,, 20627,NJBF000059224,104 N CLERMONT AVE,Margate City,NJ,39.33380066,-74.49809359,RES1,3001,,19,NE,1930,1930,3103,2,1,1206.320343,1206.320343,3505,NO,24.7,33.32,3,1.87,6106,113.465718,123.276151,132.981862,139.552434,I,Above,Hip,0,5701,,29.0117806,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20628,NJBF000056680,6 S GRANVILLE AVE,Margate City,NJ,39.32903047,-74.4999148,RES1,3001,,17,NE,1952,1952,3102,2,1,1268.621866,1268.621866,3505,NO,36.61,51.38,3,8.86,6106,113.493322,123.29771,133.000719,139.580893,I,Above,Hip,0,5701,,43.9924449,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 20629,NJBF000053859,9711 WINCHESTER AVE,Margate City,NJ,39.3215405,-74.519115,RES1,3001,,19,NE,2010,2010,3102,2,1,1164.956304,1164.956304,3507,NO,39.83,48.45,1,1.75,6106,113.183778,123.045063,132.731986,139.286152,I,Above,Gable,0,5701,,44.13701824,0,1.1,,,,1,1,,0.03,nav,1,2010,2,, 20630,NJBF000054232,14 S CEDAR GROVE AVE,Margate City,NJ,39.32280943,-74.51156103,RES1,3001,,18,NE,1953,1953,3102,2,1,2857.211887,2857.211887,3505,NO,35,48.93,3,4.29,6106,113.329178,123.163165,132.855195,139.423323,I,Above,Hip,0,5701,,41.96874728,0,0.2,,,,1,1,,0.03,nav,1,1953,2,, 20631,NJBF000059121,40 N CLARENDON AVE,Margate City,NJ,39.33359529,-74.49715395,RES1,3001,,19,NE,1939,1939,3102,3,1,1440.829512,1440.829512,3505,NO,44.83,53.84,3,3.92,6106,113.489343,123.295139,133.001629,139.574451,I,Above,Hip,0,5701,,49.33255902,0,1.1,,,,1,1,,0.03,nav,1,1939,3,, 20632,NJBF000059776,8201 FULTON AVE,Margate City,NJ,39.3348255,-74.507072,RES1,3001,,18,NE,2001,2001,3101,2,1,1337.177221,1337.177221,3505,NO,39.28,50.03,3,0.84,6106,113.25311,123.105566,132.804272,139.355162,I,Above,Hip,0,5701,,44.65592942,0,0,,,,1,1,,0.03,nav,1,2001,2,, 20633,NJBF000056537,8 S HAVERFORD AVE,Margate City,NJ,39.32869299,-74.50036163,RES1,3001,,18,NE,1945,1945,3102,2,1,1185.955366,1185.955366,3505,NO,34.7,41.52,3,-1.41,6106,113.488336,123.293617,132.996154,139.5762,I,Above,Gable,0,5701,,38.11155177,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20634,NJBF000058466,6 N CLARENDON AVE,Margate City,NJ,39.33236584,-74.49603347,RES1,3001,,17,NE,1929,1929,3102,3,1,1381.675235,1381.675235,3505,NO,47.2,58.6,3,7.82,6106,113.531334,123.328841,133.036064,139.614663,I,Above,Hip,0,5701,,52.90159693,0,0,,,,1,1,,0.03,nav,1,1929,3,, 20635,NJBF000060460,8212 MARSHALL AVE,Margate City,NJ,39.336012,-74.5096455,RES1,3001,,17,NE,1971,1971,3101,1,1,2384.135833,2384.135833,3505,NO,14.43,23.3,3,-2.38,6106,113.17951,123.046665,132.743665,139.285742,I,Above,Flat,0,5701,,18.86525937,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 20636,NJBF000056475,13 S HAVERFORD AVE,Margate City,NJ,39.32855155,-74.49981622,RES1,3001,,20,NE,1980,1980,3102,2,1,1391.280308,1391.280308,3505,NO,34.29,47.28,3,7.5,6106,113.502362,123.304876,133.007817,139.589174,I,Above,Flat,0,5701,,40.78365021,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 20637,NJBF000063276,8001 BAYSHORE DR,Margate City,NJ,39.34129928,-74.50939348,RES1,3001,,20,NE,1968,1968,3102,2,1,3902.551442,3902.551442,3505,NO,28.8,39.01,3,-1.73,6106,113.111628,122.991821,132.689063,139.213463,I,Above,Gable,0,5701,,33.90829365,0,0,,,,1,1,,0.03,nav,1,1968,2,, 20638,NJBF000059459,108 N CLARENDON AVE,Margate City,NJ,39.3342887,-74.49782698,RES1,3001,,18,NE,1950,1950,3103,2,1,1822.525192,1822.525192,3505,NO,42.43,48.97,3,7.71,6110,113.464769,123.275405,132.981433,139.550827,I,Above,Hip,0,5701,,45.69867088,0,1.1,,,,1,1,,0.35,nav,1,1950,2,, 20639,NJBF000057922,,Margate City,NJ,39.33138293,-74.49667326,RES1,3001,,NaN,NE,1969,0,3102,2,1,1106.384823,1106.384823,3505,NO,40.81,53.84,3,8.37,6106,113.531119,123.328558,133.034982,139.615336,I,Above,Flat,0,5701,,47.3220586,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20640,NJBF000057970,,Margate City,NJ,39.33147524,-74.49674781,RES1,3001,,NaN,NE,1969,0,3102,2,1,1137.546795,1137.546795,3505,NO,29.26,36.65,3,5.2,6106,113.528166,123.326192,133.032573,139.61254,I,Above,Flat,0,5701,,32.95108698,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20641,NJBF000057911,,Margate City,NJ,39.33137274,-74.4969625,RES1,3001,,NaN,NE,1969,0,3102,2,1,1123.535515,1123.535515,3505,NO,24.69,33.26,3,-2.16,6106,113.524897,123.323548,133.029716,139.609589,I,Above,Flat,0,5701,,28.97684793,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20642,NJBF000061036,45 BAYSIDE COURT,Margate City,NJ,39.33694499,-74.51123969,RES1,3001,,19,NE,1998,1998,3102,2,1,2029.237006,2029.237006,3505,NO,23.6,34.99,3,-1.52,6106,113.131133,123.007968,132.703948,139.239826,I,Above,Gable,0,5701,,29.29464087,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 20643,NJBF000056446,9 S HUNTINGTON AVE,Margate City,NJ,39.32848432,-74.50048173,RES1,3001,,18,NE,1927,1927,3102,2,1,1519.283635,1519.283635,3505,NO,20.57,31.58,3,-1.59,6106,113.488705,123.293862,132.996235,139.576484,I,Above,Flat,0,5701,,26.07747117,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 20644,NJBF000058731,23 N CLERMONT AVE,Margate City,NJ,39.33282886,-74.49666274,RES1,3001,,21,NE,2017,2017,3102,3,1,1355.705482,1355.705482,3505,NO,52.53,65.23,3,-0.51,6106,113.510931,123.312459,133.019226,139.595328,I,Above,Hip,0,5701,,58.87756678,0,0,,,,1,1,,0.03,nav,1,2017,3,, 20645,NJBF000062116,5 HARBOUR LANE,Margate City,NJ,39.33882138,-74.50927213,RES1,3001,,18,NE,1980,1980,3102,2,1,1592.917169,1592.917169,3505,NO,31.11,45.92,3,8.63,6106,113.148498,123.021707,132.719105,139.252622,I,Above,Hip,0,5701,,38.51540569,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 20646,NJBF000058169,209 N IROQUOIS AVE,Margate City,NJ,39.33182457,-74.50526662,RES1,3001,,21,NE,2017,2017,3102,2,1,1038.902895,1038.902895,3505,NO,39.62,46.98,3,5.47,6106,113.335536,123.171385,132.870908,139.433977,I,Above,Hip,0,5701,,43.30054019,0,0,,,,1,1,,0.03,nav,1,2017,2,, 20647,NJBF000059801,75 SEASIDE COURT,Margate City,NJ,39.33487619,-74.50746435,RES1,3001,,19,NE,1994,1994,3101,2,1,1658.471756,1658.471756,3505,NO,23.12,30.9,3,-1.11,6110,113.243747,123.098067,132.796494,139.346456,I,Above,Gable,0,5701,,27.00732926,0,1.1,,,,1,1,,0.35,nav,1,1994,2,, 20648,NJBF000060105,301 N DOUGLAS AVE,Margate City,NJ,39.3354125,-74.50074856,RES1,3001,,17,NE,1965,1965,3102,2,1,2733.307914,2733.307914,3505,NO,39.31,46.64,3,4.6,6106,113.384548,123.210971,132.914688,139.475359,I,Above,Hip,0,5701,,42.9754146,0,0,,,,1,1,,0.03,nav,1,1965,2,, 20649,NJBF000059868,53 SEASIDE COURT,Margate City,NJ,39.33498205,-74.50899557,RES1,3001,,19,NE,1998,1998,3101,2,1,1701.886594,1701.886594,3505,NO,18.48,32.68,3,-2.67,6106,113.208413,123.069772,132.767118,139.313691,I,Above,Hip,0,5701,,25.58065176,0,0,,,,1,1,,0.03,nav,1,1998,2,, 20650,NJBF000057135,26 N HANOVER AVE,Margate City,NJ,39.32999663,-74.5032011,RES1,3001,,20,NE,2016,2016,3102,3,1,894.0423416,894.0423416,3505,NO,36.04,43.83,3,4.4,6106,113.407184,123.22862,132.929274,139.500992,I,Above,Hip,0,5701,,39.93620216,0,0,,,,1,1,,0.03,nav,1,2016,3,, 20651,NJBF000059391,7601 WINCHESTER AVE,Margate City,NJ,39.33415986,-74.49698351,RES1,3001,,17,NE,1939,1939,3102,2,1,1549.402833,1549.402833,3505,NO,23.72,32.63,3,1.69,6106,113.485176,123.291809,132.998552,139.569761,I,Above,Hip,0,5701,,28.17332898,0,0,,,,1,1,,0.03,nav,1,1939,2,, 20652,NJBF000060323,309 N ESSEX AVE,Margate City,NJ,39.33577628,-74.50199572,RES1,3001,,17,NE,1950,1950,3102,2,1,1828.466939,1828.466939,3505,NO,29.75,43.71,3,2.27,6106,113.351911,123.184776,132.887516,139.444791,I,Above,Hip,0,5701,,36.72953899,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 20653,NJBF000060167,7 SEASIDE COURT,Margate City,NJ,39.33551209,-74.50791824,RES1,3001,,19,NE,1992,1992,3101,2,1,2121.673861,2121.673861,3505,NO,20.73,27.06,3,-2.25,6106,113.224746,123.082867,132.78104,139.328135,I,Above,Hip,0,5701,,23.89452814,0,0,,,,1,1,,0.03,nav,1,1992,2,, 20654,NJBF000053177,9717 PACIFIC AVE,Margate City,NJ,39.31898762,-74.51692421,RES1,3001,,30,NE,1996,1996,3102,2,2,3632.646891,3632.646891,3507,NO,25.81,38.24,1,-0.39,6106,113.270132,123.113081,132.799818,139.362231,I,Above,Gable,0,5701,,32.022449,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 20655,NJBF000060613,8206 MARSHALL AVE,Margate City,NJ,39.33627682,-74.50920859,RES1,3001,,17,NE,1970,1970,3101,2,1,1724.511595,1724.511595,3505,NO,34.26,40.68,3,0.07,6106,113.185442,123.051411,132.748738,139.290854,I,Above,Flat,0,5701,,37.47212593,0,0,,,,1,1,,0.03,nav,1,1970,2,, 20656,NJBF000061630,7503 FREMONT AVE,Margate City,NJ,39.33797714,-74.49899467,RES1,3001,,17,NE,1954,1954,3103,1,1,2116.722277,2116.722277,3505,NO,24.55,34.23,3,7.55,6106,113.387735,123.213352,132.918805,139.472846,I,Above,Gable,0,5701,,29.39038628,0,0,,,,1,1,,0.03,nav,1,1954,1,, 20657,NJBF000060291,410 N HUNTINGTON AVE,Margate City,NJ,39.3357283,-74.5077681,RES1,3001,,17,NE,1964,1964,3101,2,1,1545.040788,1545.040788,3505,NO,37.38,49.49,3,5.06,6110,113.225019,123.083088,132.781392,139.328103,I,Above,Gable,0,5701,,43.43433255,0,0,,,,1,1,,0.35,nav,1,1964,2,, 20658,NJBF000056590,21 N KENYON AVE,Margate City,NJ,39.32880925,-74.5051071,RES1,3001,,20,NE,2006,2006,3102,2,1,1368.652881,1368.652881,3505,NO,21.09,33.36,3,-2.24,6106,113.382388,123.208401,132.907255,139.477877,I,Above,Hip,0,5701,,27.22811003,0,0,,,,1,1,,0.03,nav,1,2006,2,, 20659,NJBF000058892,36 N DELAVAN AVE,Margate City,NJ,39.33312804,-74.49820303,RES1,3001,,17,NE,1952,1952,3102,1,1,1188.561327,1188.561327,3505,NO,22,34.05,3,2.7,6106,113.472772,123.281786,132.987274,139.559809,I,Above,Gable,0,5701,,28.0256249,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 20660,NJBF000060157,7702 AMHERST AVE,Margate City,NJ,39.33549849,-74.50000351,RES1,3001,,17,NE,1950,1950,3101,1,1,1080.827722,1080.827722,3507,NO,16,24.96,1,1.96,6106,113.399805,123.223217,132.927567,139.489201,I,Above,Flat,0,5701,,20.47840205,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20661,NJBF000056461,315 N UNION AVE,Margate City,NJ,39.32852071,-74.51416738,RES1,3001,,17,NE,1951,1951,3101,1,1,1195.950449,1195.950449,3505,NO,15.83,25.29,3,1.53,6106,113.187653,123.051812,132.74441,139.296629,I,Above,Gable,0,5701,,20.56234969,0,0,,,,1,1,,0.03,nav,1,1951,1,, 20662,NJBF000056534,19 N KENYON AVE,Margate City,NJ,39.3286895,-74.50497436,RES1,3001,,17,NE,1951,1951,3102,2,1,1893.697674,1893.697674,3505,NO,27.7,38.2,3,-1.56,6106,113.387031,123.212103,132.91102,139.482161,I,Above,Flat,0,5701,,32.95170524,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 20663,NJBF000056789,313 N RUMSON AVE,Margate City,NJ,39.32926438,-74.5120894,RES1,3001,,18,NE,1965,1965,3102,2,1,2911.709863,2911.709863,3505,NO,38.5,48.44,3,7.99,6106,113.2224,123.079969,132.774089,139.329204,I,Above,Gable,0,5701,,43.47278303,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 20664,NJBF000053364,101 S MADISON AVE,Margate City,NJ,39.31965757,-74.51502046,RES1,3001,,17,NE,1922,1922,3102,2,1,1188.431974,1188.431974,3507,NO,28.44,34.87,1,-0.69,6106,113.301268,123.138727,132.826967,139.392377,I,Above,Gable,0,5701,,31.65109764,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 20665,NJBF000056439,118 N OSBORNE AVE,Margate City,NJ,39.32847316,-74.50906658,RES1,3001,,20,NE,2005,2005,3102,3,1,1096.387148,1096.387148,3505,NO,51.12,64.32,3,-0.9,6106,113.300278,123.142294,132.838196,139.401465,I,Above,Gable,0,5701,,57.71952792,0,0,,,,1,1,,0.03,nav,1,2005,3,, 20666,NJBF000062999,7704 BAYSHORE DR,Margate City,NJ,39.34066656,-74.50555126,RES1,3001,,17,NE,1965,1965,3102,2,1,1555.787559,1555.787559,3505,NO,23.33,30.64,3,0.65,6106,113.205545,123.06697,132.767103,139.300549,I,Above,Gable,0,5701,,26.98643865,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 20667,NJBF000058751,107 N EXETER AVE,Margate City,NJ,39.332869,-74.4998425,RES1,3001,,17,NE,1925,1925,3103,2,1,1238.11941,1238.11941,3505,NO,22.54,36.95,3,-2.7,6106,113.440285,123.255648,132.959696,139.530127,I,Above,Flat,0,5701,,29.74368206,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20668,NJBF000055897,10 N NASSAU AVE,Margate City,NJ,39.32723362,-74.50696474,RES1,3001,,18,NE,1942,1942,3102,3,1,1389.395362,1389.395362,3505,NO,38.22,44.03,3,-0.16,6106,113.364461,123.193508,132.890485,139.460565,I,Above,Gable,0,5701,,41.12886658,0,1.1,,,,1,1,,0.03,nav,1,1942,3,, 20669,NJBF000055766,8 N OSBORNE AVE,Margate City,NJ,39.32691725,-74.50756561,RES1,3001,,17,NE,1949,1949,3102,2,1,1094.34894,1094.34894,3505,NO,39.26,53.04,3,0.31,6106,113.355907,123.186515,132.882952,139.452418,I,Above,Gable,0,5701,,46.14799419,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 20670,NJBF000058075,36 N FRONTENAC AVE,Margate City,NJ,39.33166064,-74.50032211,RES1,3001,,17,NE,1940,1940,3102,2,1,1046.424704,1046.424704,3505,NO,35.29,48.26,3,3.51,6106,113.44681,123.260763,132.964148,139.53715,I,Above,Hip,0,5701,,41.77154296,0,0,,,,1,1,,0.03,nav,1,1940,2,, 20671,NJBF000056760,5 N HANOVER AVE,Margate City,NJ,39.32919853,-74.50194777,RES1,3001,,17,NE,1930,1930,3102,2,1,974.1464093,974.1464093,3505,NO,26.28,40.34,3,0.55,6106,113.446201,123.259825,132.961237,139.537193,I,Above,Gable,0,5701,,33.30652339,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20672,NJBF000057929,7 S CLARENDON AVE,Margate City,NJ,39.33139177,-74.49478731,RES1,3001,,19,NE,1940,1940,3102,2,1,1491.518232,1491.518232,3505,NO,26.51,40.13,3,-2.02,6106,113.572519,123.361901,133.070006,139.653596,I,Above,Gable,0,5701,,33.32387798,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20673,NJBF000056883,8016-18 VENTNOR AVE,Margate City,NJ,39.32945748,-74.49975467,COM1,3001,,NaN,ME,1969,0,3401,1,1,5518.441024,5518.441024,3507,NO,20.66,30.17,1,1.4,6106,113.490719,123.295708,132.998978,139.578515,I,Above,Flat,0,NaN,,25.41559211,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20674,NJBF000061253,807 N JEROME AVE,Margate City,NJ,39.33731467,-74.51212052,RES1,3001,,18,NE,1957,1957,3102,2,1,1769.100699,1769.100699,3505,NO,37.19,50.73,3,4.68,6106,113.106442,122.988226,132.683638,139.216519,I,Above,Gable,0,5701,,43.95879305,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 20675,NJBF000057394,100 S BRUNSWICK AVE,Margate City,NJ,39.33049783,-74.4937952,RES1,3001,,18,NE,1925,1925,3102,2,1,1297.49884,1297.49884,3505,NO,29.84,40.76,3,3.15,6106,113.606998,123.389562,133.098329,139.686053,I,Above,Gable,0,5701,,35.29807433,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20676,NJBF000057462,415 N QUINCY AVE,Margate City,NJ,39.33061308,-74.51241907,RES1,3001,,18,NE,1955,1955,3102,2,1,1109.484494,1109.484494,3505,NO,36.13,43.17,3,-1.13,6106,113.195542,123.058791,132.753052,139.304291,I,Above,Hip,0,5701,,39.64834781,0,0,,,,1,1,,0.03,nav,1,1955,2,, 20677,NJBF000056183,7 N LANCASTER AVE,Margate City,NJ,39.32790776,-74.50516012,RES1,3001,,19,NE,1940,1940,3102,2,1,1301.350803,1301.350803,3505,NO,40.38,49.9,3,2.12,6106,113.394272,123.217706,132.916235,139.48861,I,Above,Hip,0,5701,,45.13917852,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 20678,NJBF000057456,8-10 S DOUGLAS AVE,Margate City,NJ,39.33060262,-74.49682571,COM1,3001,,NaN,ME,1969,0,3401,2,1,1862.079211,1862.079211,3507,NO,26.66,35.47,1,-0.07,6106,113.538812,123.33464,133.040725,139.622885,I,Above,Flat,0,NaN,,31.06569527,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20679,NJBF000054328,105 N JEFFERSON AVE,Margate City,NJ,39.32309041,-74.51693862,RES1,3001,,43,NE,1900,1900,3102,2,4,1527.652875,1527.652875,3507,NO,36.63,48.63,1,2.98,6106,113.20771,123.065363,132.754246,139.31068,I,Above,Hip,0,5701,,42.62644592,0,0,,,,1,1,,0.03,nav,1,1900,2,, 20680,NJBF000056376,102 S FRONTENAC AVE,Margate City,NJ,39.32834082,-74.49790467,RES1,3001,,19,NE,1930,1930,3102,3,1,1521.900682,1521.900682,3505,NO,43.54,52.29,3,-1.28,6106,113.547383,123.341088,133.045564,139.630857,I,Above,Flat,0,5701,,47.91567448,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 20681,NJBF000057234,,Margate City,NJ,39.33019911,-74.50638376,RES1,3001,,NaN,NE,1969,0,3101,1,1,1896.751247,1896.751247,3505,NO,9.54,16.56,3,-2.74,6106,113.334259,123.170056,132.868358,139.433271,I,Above,Gable,0,5701,,13.04699091,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20682,NJBF000061025,8114 MARSHALL AVE,Margate City,NJ,39.33692997,-74.50806369,RES1,3001,,17,NE,1974,1974,3101,1,1,2382.403309,2382.403309,3505,NO,26.57,34.63,3,8.52,6106,113.201605,123.064325,132.762517,139.304762,I,Above,Hip,0,5701,,30.59694019,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 20683,NJBF000058812,118 N FRONTENAC AVE,Margate City,NJ,39.33297689,-74.50169888,RES1,3001,,17,NE,1957,1957,3102,2,1,2755.33027,2755.33027,3505,NO,35.93,46.37,3,2.44,6106,113.397812,123.221531,132.924074,139.490792,I,Above,Hip,0,5701,,41.15225374,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 20684,NJBF000057301,7903 VENTNOR AVE,Margate City,NJ,39.33033186,-74.49901429,COM1,3001,,NaN,ME,1979,1979,3401,2,1,2016.044906,2016.044906,3507,NO,30.53,42.91,1,2.1,6106,113.494518,123.298935,133.003072,139.581936,I,Above,Flat,0,NaN,,36.72025417,0,0,,,,1,1,,0.03,nav,1,1979,2,, 20685,NJBF000056950,112 N KENYON AVE,Margate City,NJ,39.32960689,-74.50635478,RES1,3001,,18,NE,2009,2009,3102,2,1,1321.311625,1321.311625,3505,NO,40.53,50.17,3,1.67,6106,113.343431,123.177287,132.87545,139.4418,I,Above,Gable,0,5701,,45.3493241,0,0,,,,1,1,,0.03,nav,1,2009,2,, 20686,NJBF000054958,111 N DECATUR AVE,Margate City,NJ,39.32474789,-74.51471794,GOV2,3003,,NaN,E,1969,0,3401,2,1,8126.666381,8126.666381,3507,NO,31.32,41.62,1,0.68,6106,113.231352,123.085327,132.776239,139.33467,I,Above,Gable,0,NaN,,36.47094435,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20687,NJBF000058160,9 N DOUGLAS AVE,Margate City,NJ,39.331812,-74.497286,RES1,3001,,19,NE,1979,1979,3102,2,1,935.1702212,935.1702212,3505,NO,33.47,44.04,3,4.04,6106,113.511549,123.312858,133.018851,139.596921,I,Above,Flat,0,5701,,38.75623874,0,0,,,,1,1,,0.03,nav,1,1979,2,, 20688,NJBF000059960,7600 MONMOUTH AVE,Margate City,NJ,39.33514588,-74.49791782,RES1,3001,,17,NE,1940,1940,3102,1,1,1441.72579,1441.72579,3505,NO,17.97,30.35,3,4.79,6110,113.450786,123.264171,132.970256,139.536533,I,Above,Flat,0,5701,,24.16226759,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 20689,NJBF000055970,120 N RUMSON AVE,Margate City,NJ,39.32741543,-74.51090569,RES1,3001,,17,NE,1966,1966,3102,2,1,1605.230329,1605.230329,3505,NO,33.4,44.07,3,6.36,6106,113.27538,123.12192,132.816239,139.377828,I,Above,Gable,0,5701,,38.73710027,0,0,,,,1,1,,0.03,nav,1,1966,2,, 20690,NJBF000055983,107 N QUINCY AVE,Margate City,NJ,39.32744003,-74.5094111,RES1,3001,,18,NE,1935,1935,3102,2,1,1350.08891,1350.08891,3505,NO,36.56,50.67,3,-2.07,6106,113.307799,123.147999,132.843332,139.408005,I,Above,Hip,0,5701,,43.61628461,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 20691,NJBF000060329,308 N DOUGLAS AVE,Margate City,NJ,39.33578085,-74.50167085,RES1,3001,,17,NE,1961,1961,3102,2,1,1274.319469,1274.319469,3505,NO,26.92,37.54,3,3.95,6106,113.359023,123.190481,132.893486,139.451309,I,Above,Gable,0,5701,,32.23156058,0,0,,,,1,1,,0.03,nav,1,1961,2,, 20692,NJBF000061595,8103 MARSHALL AVE,Margate City,NJ,39.33791813,-74.5071412,RES1,3001,,17,NE,1975,1975,3102,1,1,1974.990869,1974.990869,3505,NO,19.91,29.4,3,3.9,6106,113.208247,123.06957,132.768488,139.309145,I,Above,Flat,0,5701,,24.65181718,0,1.2,,,,1,1,,0.03,nav,1,1975,1,, 20693,NJBF000056915,107 S DELAVAN AVE,Margate City,NJ,39.32952904,-74.49475058,RES1,3001,,21,NE,1990,1990,3102,3,1,1321.311989,1321.311989,3505,NO,45.56,55.63,3,8.91,6106,113.59973,123.383534,133.091149,139.679577,I,Above,Hip,0,5701,,50.59559754,0,0,,,,1,1,,0.03,nav,1,1990,3,, 20694,NJBF000054270,14 S UNION AVE,Margate City,NJ,39.32291702,-74.50937886,RES1,3001,,NaN,NE,1953,0,3102,2,1,1953.504927,1953.504927,3505,NO,36.46,47.59,3,-1.72,6106,113.375199,123.200334,132.893867,139.466162,I,Above,Hip,0,5701,,42.02809612,0,0,,,,1,1,,0.03,nav,1,1953,2,, 20695,NJBF000058327,1 N CLARENDON AVE,Margate City,NJ,39.33209847,-74.49535446,RES1,3001,,17,NE,1950,1950,3102,1,1,1858.016722,1858.016722,3505,NO,15.93,22.56,3,-1.79,6106,113.55007,123.3439,133.051667,139.632225,I,Above,Hip,0,5701,,19.24676699,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 20696,NJBF000054796,116 S MANSFIELD AVE,Margate City,NJ,39.32433232,-74.50354082,RES1,3001,,20,NE,1920,1920,3102,3,2,3908.492011,3908.492011,3505,NO,52.84,59.6,3,6.82,6106,113.481948,123.287048,132.985444,139.566847,I,Above,Flat,0,5701,,56.21513286,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 20697,NJBF000055906,5 S KENYON AVE,Margate City,NJ,39.32725449,-74.50387975,RES1,3001,,19,NE,1997,1997,3102,3,1,1234.305125,1234.305125,3505,NO,56.2,64.2,3,5,6106,113.431862,123.247757,132.947031,139.52317,I,Above,Flat,0,5701,,60.20070329,0,0,,,,1,1,,0.03,nav,1,1997,3,, 20698,NJBF000054446,5 S VENDOME AVE,Margate City,NJ,39.32342645,-74.51022169,RES1,3001,,22,NE,2005,2005,3103,3,1,1593.71638,1593.71638,3505,NO,55.61,67.38,3,-2.77,6106,113.349223,123.179645,132.872843,139.442754,I,Above,Gable,0,5701,,61.49102536,0,0,,,,1,1,,0.03,nav,1,2005,3,, 20699,NJBF000055487,111 N UNION AVE,Margate City,NJ,39.3262255,-74.511982,RES1,3001,,17,NE,1953,1953,3101,1,1,1664.643642,1664.643642,3505,NO,15.17,24.87,3,0.95,6106,113.269298,123.11656,132.809756,139.371367,I,Above,Gable,0,5701,,20.01575339,0,0,,,,1,1,,0.03,nav,1,1953,1,, 20700,NJBF000057726,19 N GLADSTONE AVE,Margate City,NJ,39.33105245,-74.500259,RES1,3001,,17,NE,1953,1953,3101,1,1,1870.721111,1870.721111,3505,NO,24.01,33.36,3,5.94,6106,113.456856,123.268754,132.972044,139.546781,I,Above,Flat,0,5701,,28.68549247,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 20701,NJBF000054298,11 S VENDOME AVE,Margate City,NJ,39.32299571,-74.50979237,RES1,3001,,20,NE,2005,2005,3102,2,1,1285.984708,1285.984708,3505,NO,37.83,51.43,3,1.19,6106,113.365006,123.192155,132.885444,139.456822,I,Above,Gable,0,5701,,44.62835584,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 20702,NJBF000060349,201 N BARCLAY AVE,Margate City,NJ,39.33582144,-74.49739847,RES1,3001,,17,NE,1949,1949,3103,3,1,1594.984764,1594.984764,3505,NO,57.98,71.82,3,0.2,6106,113.452874,123.265832,132.972465,139.537104,I,Above,Gable,0,5701,,64.90158459,0,1.1,,,,1,1,,0.03,nav,1,1949,3,, 20703,NJBF000055573,8807 WINCHESTER AVE,Margate City,NJ,39.32645874,-74.51033845,RES1,3001,,17,NE,1946,1946,3101,1,1,1508.824057,1508.824057,3505,NO,18.08,23.24,3,2.75,6106,113.301859,123.142856,132.837216,139.401846,I,Above,Gable,0,5701,,20.66393127,0,0,,,,1,1,,0.03,nav,1,1946,1,, 20704,NJBF000059319,32 WEST DRIVE,Margate City,NJ,39.33399804,-74.49581224,RES1,3001,,18,NE,1929,1929,3102,2,1,1514.474562,1514.474562,3505,NO,41.92,49.77,3,5.16,6106,113.513298,123.314425,133.02218,139.595815,I,Above,Hip,0,5701,,45.84798328,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20705,NJBF000057908,204 N IROQUOIS AVE,Margate City,NJ,39.33136768,-74.50533514,RES1,3001,,17,NE,1950,1950,3102,2,1,1123.950828,1123.950828,3505,NO,24.81,38.23,3,-2.68,6106,113.34057,123.175354,132.874722,139.438851,I,Above,Hip,0,5701,,31.51981589,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20706,NJBF000056843,417 N VENDOME AVE,Margate City,NJ,39.32937661,-74.51560127,RES1,3001,,18,NE,1972,1972,3102,2,1,1911.397635,1911.397635,3505,NO,40.54,47.54,3,6.64,6106,113.143648,123.016773,132.708757,139.255863,I,Above,Flat,0,5701,,44.03960133,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 20707,NJBF000055496,2 N PEMBROKE AVE,Margate City,NJ,39.32625045,-74.50790557,RES1,3001,,17,NE,1951,1951,3101,1,1,2892.2549,2892.2549,3505,NO,17.39,25.66,3,5.16,6106,113.358215,123.188129,132.884083,139.454078,I,Above,Hip,0,5701,,21.52490304,0,1.2,,,,1,1,,0.03,nav,1,1951,1,, 20708,NJBF000055221,,Margate City,NJ,39.32548567,-74.51384754,RES1,3001,,NaN,NE,1969,0,3102,2,1,845.9785627,845.9785627,3505,NO,21.54,28.64,3,-0.05,6106,113.239398,123.092166,132.783905,139.342891,I,Above,Flat,0,5701,,25.08633738,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20709,NJBF000058677,414 N LANCASTER AVE,Margate City,NJ,39.33273633,-74.51039245,RES1,3001,,17,NE,1958,1958,3102,1,1,2282.727983,2282.727983,3505,NO,19.49,29.33,3,1.61,6106,113.209578,123.070482,132.766527,139.316662,I,Above,Hip,0,5701,,24.40901628,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 20710,NJBF000053512,21 SO MADISON AVE,Margate City,NJ,39.32021436,-74.51539835,RES3C,3001,,20,ME,1965,1965,3301,1,1,4282.959097,4282.959097,3505,NO,22.39,34.29,3,5.85,6106,113.284633,123.125655,132.813978,139.377913,I,Above,Flat,0,NaN,,28.33961743,0,0,,,,1,1,,0.03,nav,1,1965,1,, 20711,NJBF000062432,8004 LAGOON DRIVE,Margate City,NJ,39.33945304,-74.50904686,RES1,3001,,18,NE,1973,1973,3102,2,1,1655.472886,1655.472886,3505,NO,36.03,42.14,3,3.44,6106,113.144725,123.018605,132.716163,139.24789,I,Above,Gable,0,5701,,39.08353199,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 20712,NJBF000058553,6 N BRUNSWICK AVE,Margate City,NJ,39.33250767,-74.49542236,RES1,3001,,17,NE,1939,1939,3102,2,1,1552.934234,1552.934234,3505,NO,41.77,50.78,3,4.56,6106,113.542798,123.338083,133.045883,139.625067,I,Above,Flat,0,5701,,46.27676525,0,1.2,,,,1,1,,0.03,nav,1,1939,2,, 20713,NJBF000057217,4 N GLADSTONE AVE,Margate City,NJ,39.33015971,-74.50011403,RES1,3001,,17,NE,1945,1945,3101,1,1,1144.675295,1144.675295,3505,NO,17.93,26.03,3,7.08,6106,113.472768,123.281401,132.984575,139.56181,I,Above,Flat,0,5701,,21.98247903,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 20714,NJBF000057376,13 N GRANVILLE AVE,Margate City,NJ,39.3304655,-74.5007075,RES1,3001,,19,NE,2011,2011,3102,2,1,1209.208525,1209.208525,3505,NO,30.5,42.82,3,8.42,6106,113.455326,123.267426,132.970195,139.54557,I,Above,Flat,0,5701,,36.662044,0,1.1,,,,1,1,,0.03,nav,1,2011,2,, 20715,NJBF000055741,211 N WILSON AVE,Margate City,NJ,39.32687085,-74.51441358,RES1,3001,,47,NE,1950,1950,3102,2,2,1036.915193,1036.915193,3505,NO,40.18,49.33,3,5.5,6106,113.206519,123.066328,132.758237,139.313353,I,Above,Hip,0,5701,,44.7543057,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20716,NJBF000053730,16 N MONROE AVE,Margate City,NJ,39.32106392,-74.518339,RES3C,3001,,21,ME,1988,1988,3301,1,1,4453.803749,4453.803749,3505,NO,22.92,32.55,3,4.48,6106,113.207856,123.064191,132.751288,139.307869,I,Above,Gable,0,NaN,,27.73504952,0,0,,,,1,1,,0.03,nav,1,1988,1,, 20717,NJBF000058785,7403 VENTNOR AVE,Margate City,NJ,39.33294299,-74.49351217,RES1,3001,,18,NE,1925,1925,3102,2,1,1409.845544,1409.845544,3505,NO,30.96,44.44,3,5.17,6106,113.578778,123.367093,133.076731,139.657562,I,Above,Hip,0,5701,,37.69823731,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20718,NJBF000059675,16 EAST DRIVE,Margate City,NJ,39.33466163,-74.49506314,RES1,3001,,18,NE,1927,1927,3102,2,1,1381.727042,1381.727042,3505,NO,36.29,44.39,3,0.08,6106,113.520553,123.320274,133.028822,139.601229,I,Above,Hip,0,5701,,40.33868547,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 20719,NJBF000053556,9612 VENTNOR AVE,Margate City,NJ,39.320387,-74.5167945,RES3C,3001,,20,ME,2002,2002,3301,1,1,2772.88908,2772.88908,3505,NO,23.93,30.66,3,7.33,6106,113.251662,123.099128,132.786729,139.347556,I,Above,Gable,0,NaN,,27.29259376,0,0,,,,1,1,,0.03,nav,1,2002,1,, 20720,NJBF000054625,10 S THURLOW AVE,Margate City,NJ,39.32389718,-74.50937245,RES1,3001,,21,NE,1969,2018,3102,2,1,1819.809839,1819.809839,3505,NO,19.21,25.15,3,-1.99,6106,113.360806,123.189212,132.883193,139.454097,I,Above,Gable,0,5701,,22.17727115,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20721,NJBF000056798,207 N OSBORNE AVE,Margate City,NJ,39.32928176,-74.50930392,RES1,3001,,21,NE,2014,2014,3102,2,1,1328.475834,1328.475834,3505,NO,34.15,42.35,3,8.18,6106,113.283316,123.128902,132.824881,139.385888,I,Above,Flat,0,5701,,38.24780795,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 20722,NJBF000054628,2 N WILSON AVE,Margate City,NJ,39.32390965,-74.51206176,RES1,3001,,21,NE,2010,2010,3102,3,1,1503.267809,1503.267809,3505,NO,50.88,60.83,3,2.65,6106,113.301837,123.141694,132.833901,139.39934,I,Above,Gable,0,5701,,55.85112619,0,0,,,,1,1,,0.03,nav,1,2010,3,, 20723,NJBF000061316,406 N CLARENDON AVE,Margate City,NJ,39.3374336,-74.50083583,RES1,3001,,19,NE,2004,2004,3102,2,1,1563.532393,1563.532393,3505,NO,31.91,40.56,3,7.61,6106,113.354504,123.186755,132.890607,139.443914,I,Above,Gable,0,5701,,36.23697462,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 20724,NJBF000056329,316 N VENDOME AVE,Margate City,NJ,39.32822416,-74.51528852,RES1,3001,,17,NE,1956,1956,3101,1,1,1518.36307,1518.36307,3505,NO,25.68,35.23,3,6.5,6106,113.167412,123.035439,132.72727,139.27764,I,Above,Flat,0,5701,,30.45214448,0,0,,,,1,1,,0.03,nav,1,1956,1,, 20725,NJBF000055597,8303 SALEM RD,Margate City,NJ,39.32652392,-74.50120089,RES1,3001,,19,NE,1935,1935,3102,2,1,1135.826193,1135.826193,3505,NO,27.52,41.98,3,2.3,6106,113.501241,123.303399,133.00451,139.586994,I,Above,Gable,0,5701,,34.74739016,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 20726,NJBF000054223,127 N MONROE AVE,Margate City,NJ,39.32279317,-74.51928659,RES3B,3004,,19,ME,1967,1967,3301,1,1,4188.20196,4188.20196,3505,NO,18.46,32.38,3,6.2,6106,113.16107,123.027553,132.715003,139.266758,I,Above,Gable,0,NaN,,25.41731257,0,0,,,,1,1,,0.03,nav,1,1967,1,, 20727,NJBF000058671,18 N CLARENDON AVE,Margate City,NJ,39.33271642,-74.49634501,RES1,3001,,17,NE,1950,1950,3102,2,1,1405.308449,1405.308449,3505,NO,27.6,38.4,3,-1.47,6106,113.519531,123.31937,133.026394,139.603385,I,Above,Flat,0,5701,,32.99711389,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20728,NJBF000058574,15 N CLERMONT AVE,Margate City,NJ,39.33254177,-74.49646243,RES1,3001,,17,NE,1945,1945,3102,2,1,772.340837,772.340837,3505,NO,33.33,42.19,3,-0.23,6106,113.519402,123.319252,133.026134,139.603467,I,Above,Gable,0,5701,,37.76188103,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20729,NJBF000062316,15 BAYCREST DRIVE,Margate City,NJ,39.33921691,-74.50797282,RES1,3001,,18,NE,1978,1978,3102,2,1,1742.972014,1742.972014,3505,NO,32,44.91,3,-0.14,6106,113.171796,123.040269,132.738603,139.273163,I,Above,Gable,0,5701,,38.45654989,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 20730,NJBF000060328,401 N EXETER AVE,Margate City,NJ,39.3357794,-74.50276565,RES1,3001,,19,NE,1989,1989,3102,2,1,1821.709671,1821.709671,3505,NO,24.4,33.79,3,-0.55,6106,113.334853,123.171095,132.873214,139.429124,I,Above,Flat,0,5701,,29.09432018,0,0,,,,1,1,,0.03,nav,1,1989,2,, 20731,NJBF000056433,8903 AMHERST AVE,Margate City,NJ,39.32845887,-74.51291243,RES1,3001,,19,NE,2005,2005,3102,2,1,2475.091632,2475.091632,3505,NO,33.31,40.68,3,6.26,6106,113.216092,123.074638,132.767997,139.323103,I,Above,Hip,0,5701,,36.9918098,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 20732,NJBF000059054,8018 AMHERST AVE,Margate City,NJ,39.33345244,-74.5035762,RES1,3001,,17,NE,1949,1949,3102,2,1,1149.61415,1149.61415,3505,NO,39.56,46.53,3,2.67,6106,113.349694,123.182936,132.884076,139.445869,I,Above,Flat,0,5701,,43.04577736,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 20733,NJBF000056594,,Margate City,NJ,39.3288302,-74.50698578,RES1,3001,,NaN,NE,1969,0,3101,1,1,1302.834013,1302.834013,3505,NO,17.8,24.13,3,1.29,6106,113.340799,123.174969,132.872448,139.439241,I,Above,Hip,0,5701,,20.96465639,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20734,NJBF000057518,110 S ANDOVER AVE,Margate City,NJ,39.33070628,-74.49181138,RES1,3001,,20,NE,1997,1997,3102,2,1,3188.666113,3188.666113,3505,NO,36.38,45.63,3,1.97,6106,113.647705,123.422422,133.13309,139.723578,I,Above,Hip,0,5701,,41.00541836,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 20735,NJBF000056493,10 S HAVERFORD AVE,Margate City,NJ,39.3285979,-74.50026996,RES1,3001,,18,NE,1936,1936,3102,2,1,910.8509717,910.8509717,3505,NO,47.04,53.9,3,8.28,6106,113.491724,123.296321,132.998903,139.579318,I,Above,Hip,0,5701,,50.4695184,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 20736,NJBF000055734,15 N QUINCY AVE,Margate City,NJ,39.32683854,-74.50879359,RES1,3001,,17,NE,1953,1953,3101,1,1,1593.131448,1593.131448,3505,NO,13.84,27.48,3,-1.59,6106,113.330122,123.165741,132.861289,139.428399,I,Above,Hip,0,5701,,20.6643351,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 20737,NJBF000055422,118 N VENDOME AVE,Margate City,NJ,39.32604971,-74.51327793,RES1,3001,,19,NE,2008,2008,3102,3,1,1243.95229,1243.95229,3505,NO,42.68,48.38,3,3.25,6106,113.243515,123.095736,132.788045,139.347216,I,Above,Gable,0,5701,,45.52873218,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 20738,NJBF000058770,,Margate City,NJ,39.33289997,-74.50797074,COM8,3004,,NaN,ME,1969,0,3401,3,1,509.8129932,509.8129932,3507,NO,53.37,68.25,1,-0.6,6106,113.260603,123.111411,132.809168,139.363876,I,Above,Flat,0,5701,,60.80975765,0,0,,,,1,1,,0.03,nav,1,1969,3,, 20739,NJBF000055692,7 DOLPHIN DR,Margate City,NJ,39.32675631,-74.49965965,RES1,3001,,20,NE,1999,1999,3102,3,1,1953.137202,1953.137202,3505,NO,36.09,44.12,3,4.43,6106,113.53169,123.328007,133.030458,139.615386,I,Above,Hip,0,5701,,40.10444487,0,1.1,,,,1,1,,0.03,nav,1,1999,3,, 20740,NJBF000054789,9308 MONMOUTH AVE,Margate City,NJ,39.3243187,-74.51644413,RES1,3001,,19,NE,1987,1987,3102,2,1,1865.231296,1865.231296,3507,NO,37.79,47.8,1,1.27,6106,113.200073,123.059904,132.749619,139.305047,I,Above,Gable,0,5701,,42.79707679,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 20741,NJBF000056879,20 S ESSEX AVE,Margate City,NJ,39.32945207,-74.49699706,COM1,3001,,NaN,ME,1969,0,3401,1,1,4338.571807,4338.571807,3507,NO,14.94,23.01,1,-0.56,6106,113.55144,123.344603,133.050211,139.634821,I,Above,Flat,0,NaN,,18.97404796,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20742,NJBF000059863,43 SEASIDE COURT,Margate City,NJ,39.33497917,-74.5095419,RES1,3001,,19,NE,1995,1995,3101,2,1,2149.931811,2149.931811,3505,NO,39.87,49.04,3,6.43,6106,113.196396,123.06015,132.757116,139.302587,I,Above,Hip,0,5701,,44.45355075,0,0,,,,1,1,,0.03,nav,1,1995,2,, 20743,NJBF000056239,8 S HANOVER AVE,Margate City,NJ,39.32802462,-74.50132306,RES1,3001,,18,NE,1938,1938,3102,2,1,1424.053295,1424.053295,3505,NO,25.55,38.79,3,2.82,6106,113.476843,123.284193,132.985735,139.56531,I,Above,Hip,0,5701,,32.1726998,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 20744,NJBF000056892,11 N HANOVER AVE,Margate City,NJ,39.32947025,-74.50217945,RES1,3001,,18,NE,1930,1930,3102,2,1,1658.438473,1658.438473,3505,NO,25.21,33.51,3,-0.71,6106,113.437228,123.252668,132.953976,139.528887,I,Above,Hip,0,5701,,29.35873023,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20745,NJBF000062793,8010 BAYSHORE DR,Margate City,NJ,39.34023928,-74.51015334,RES1,3001,,18,NE,1973,1973,3102,2,1,4562.65509,4562.65509,3505,NO,36.38,48.06,3,1.42,6106,113.109339,122.99022,132.686978,139.213826,I,Above,Flat,0,5701,,42.21884359,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 20746,NJBF000057381,102 N HANOVER AVE,Margate City,NJ,39.3304722,-74.50366627,RES1,3001,,17,NE,1960,1960,3101,1,1,1413.19064,1413.19064,3507,NO,17.02,26.35,1,-0.82,6106,113.390141,123.215016,132.915435,139.485109,I,Above,Hip,0,5701,,21.68437758,0,0,,,,1,1,,0.03,nav,1,1960,1,, 20747,NJBF000060734,419 N HUNTINGTON AVE,Margate City,NJ,39.33646485,-74.5078963,RES1,3001,,18,NE,1979,1979,3101,2,1,1279.574693,1279.574693,3505,NO,24.25,33.63,3,-2.23,6106,113.211836,123.072528,132.770807,139.314902,I,Above,Flat,0,5701,,28.93969846,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 20748,NJBF000055307,6 S NASSAU AVE,Margate City,NJ,39.32573351,-74.50555661,RES1,3001,,19,NE,1954,1954,3102,2,1,2282.126838,2282.126838,3505,NO,39.52,45.04,3,7.02,6106,113.417247,123.235464,132.932917,139.508441,I,Above,Gable,0,5701,,42.277871,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 20749,NJBF000054271,9612 MONMOUTH AVE,Margate City,NJ,39.322929,-74.5191145,RES1,3001,,17,NE,1925,1925,3101,1,2,808.5564354,808.5564354,3505,NO,15.03,25.14,3,0.61,6106,113.162758,123.029002,132.716608,139.268517,I,Above,Hip,0,5701,,20.08388704,0,0,,,,1,1,,0.03,nav,1,1925,1,, 20750,NJBF000057140,117 N KENYON AVE,Margate City,NJ,39.3300095,-74.5062655,RES1,3001,,17,NE,1952,1952,3102,2,1,1207.162323,1207.162323,3505,NO,33.92,45.53,3,2.08,6106,113.339599,123.174303,132.872642,139.438243,I,Above,Gable,0,5701,,39.72293291,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 20751,NJBF000056220,103 S GRANVILLE AVE,Margate City,NJ,39.32798825,-74.49858744,RES1,3001,,20,NE,1929,1929,3102,2,1,2139.107546,2139.107546,3505,NO,35.38,41.16,3,-0.16,6106,113.537473,123.333015,133.036795,139.621523,I,Above,Hip,0,5701,,38.26712044,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 20752,NJBF000061026,213 N BELMONT DR,Margate City,NJ,39.33693067,-74.49780938,RES1,3001,,17,NE,1950,1950,3103,1,1,898.5843819,898.5843819,3505,NO,9.19,23.56,3,-2.2,6106,113.428404,123.246107,132.952506,139.512336,I,Above,Flat,0,5701,,16.37511087,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20753,NJBF000058009,123 N HANOVER AVE,Margate City,NJ,39.33155249,-74.50420227,RES1,3001,,NaN,NE,1942,0,3101,1,1,1185.086378,1185.086378,3507,NO,12.41,23.39,1,-0.07,6106,113.362894,123.193312,132.893583,139.459473,I,Above,Gable,0,5701,,17.89911776,0,0,,,,1,1,,0.03,nav,1,1942,1,, 20754,NJBF000054602,18 N BENSON AVE,Margate City,NJ,39.3238528,-74.51369165,RES1,3001,,18,NE,1962,1962,3102,2,1,1198.358604,1198.358604,3505,NO,35.78,44.7,3,0.08,6106,113.267094,123.113665,132.80482,139.366954,I,Above,Gable,0,5701,,40.24177376,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 20755,NJBF000061890,425 N CLERMONT AVE,Margate City,NJ,39.33842549,-74.5020196,RES1,3001,,17,NE,1960,1960,3102,2,1,2118.566562,2118.566562,3505,NO,42.22,54.41,3,4.55,6106,113.314607,123.154658,132.85759,139.405295,I,Above,Hip,0,5701,,48.31674282,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20756,NJBF000061420,9 BAYSIDE COURT,Margate City,NJ,39.33760554,-74.50996077,RES1,3001,,19,NE,1989,1989,3102,2,1,1478.08812,1478.08812,3505,NO,36.9,50.41,3,8.09,6106,113.150169,123.023156,132.720041,139.256339,I,Above,Hip,0,5701,,43.65508017,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 20757,NJBF000061508,610 N HUNTINGTON AVE,Margate City,NJ,39.33776221,-74.50974394,RES1,3001,,17,NE,1976,1976,3102,1,1,2056.874439,2056.874439,3505,NO,17.87,31.92,3,0.71,6106,113.152793,123.025242,132.722284,139.258492,I,Above,Gable,0,5701,,24.89446578,0,0,,,,1,1,,0.03,nav,1,1976,1,, 20758,NJBF000058381,32 N ESSEX AVE,Margate City,NJ,39.33221025,-74.49882577,RES1,3001,,17,NE,1955,1955,3102,1,1,1327.755937,1327.755937,3505,NO,14.81,29.75,3,-1.29,6106,113.471991,123.281077,132.98584,139.560032,I,Above,Gable,0,5701,,22.27911968,0,0,,,,1,1,,0.03,nav,1,1955,1,, 20759,NJBF000054950,111 S NASSAU AVE,Margate City,NJ,39.32472056,-74.50399002,RES1,3001,,23,NE,2016,2016,3102,3,1,1399.132319,1399.132319,3505,NO,59.75,72.26,3,1.57,6106,113.466412,123.274682,132.9729,139.552944,I,Above,Hip,0,5701,,66.0053759,0,0,,,,1,1,,0.03,nav,1,2016,3,, 20760,NJBF000054592,109 S QUINCY AVE,Margate City,NJ,39.32381819,-74.50589911,RES1,3001,,19,NE,1920,1920,3102,2,1,2307.122889,2307.122889,3505,NO,41.35,48.41,3,8.11,6106,113.437912,123.251327,132.94773,139.525455,I,Above,Hip,0,5701,,44.8790065,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 20761,NJBF000057351,7 N GLADSTONE AVE,Margate City,NJ,39.33041411,-74.49980756,RES1,3001,,17,NE,1945,1945,3102,2,1,1897.162996,1897.162996,3505,NO,25.29,35.02,3,2,6106,113.475875,123.283948,132.987444,139.564634,I,Above,Hip,0,5701,,30.15350741,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20762,NJBF000057277,5 N GLADSTONE AVE,Margate City,NJ,39.33027741,-74.49973311,RES1,3001,,17,NE,1915,1915,3102,2,1,1444.395505,1444.395505,3505,NO,36.37,45.75,3,4.36,6106,113.479481,123.286824,132.990346,139.56801,I,Above,Hip,0,5701,,41.06128674,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 20763,NJBF000054596,10 S SUMNER AVE,Margate City,NJ,39.32383905,-74.50842702,RES1,3001,,NaN,NE,1945,0,3102,2,1,2265.557014,2265.557014,3505,NO,27.52,32.89,3,-1.86,6106,113.382322,123.206526,132.901133,139.473984,I,Above,Hip,0,5701,,30.20638103,0,0,,,,1,1,,0.03,nav,1,1945,2,, 20764,NJBF000055903,305 N HARDING AVE,Margate City,NJ,39.3272475,-74.51553,RES1,3001,,47,NE,1950,1950,3102,2,2,885.4605302,885.4605302,3505,NO,33.31,47.69,3,6.01,6106,113.176531,123.042373,132.733744,139.285632,I,Above,Hip,0,5701,,40.49937116,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20765,NJBF000062679,608 N DELAVAN AVE,Margate City,NJ,39.33999202,-74.50489532,RES1,3001,,18,NE,1965,1965,3102,2,1,1978.370787,1978.370787,3505,NO,37.53,44.45,3,8.79,6106,113.229347,123.086143,132.786801,139.323903,I,Above,Gable,0,5701,,40.98997966,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 20766,NJBF000062744,610 N DELAVAN AVE,Margate City,NJ,39.34012421,-74.50503011,RES1,3001,,18,NE,1965,1965,3102,2,1,1732.510385,1732.510385,3505,NO,25.05,33.7,3,1.32,6106,113.224542,123.082274,132.782825,139.319203,I,Above,Gable,0,5701,,29.37299801,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 20767,NJBF000053833,9010 ATLANTIC AVE,Margate City,NJ,39.32144987,-74.50928234,COM8,3001,,21,ME,1955,1955,3401,3,1,5185.581107,5185.581107,3507,NO,39.83,50.51,1,1.37,6106,113.39918,123.218905,132.911788,139.486148,I,Above,Flat,0,5701,,45.17222941,0,0,,,,1,1,,0.03,nav,1,1955,3,, 20768,NJBF000060366,29 SEASIDE COURT,Margate City,NJ,39.33585505,-74.50947584,RES1,3001,,19,NE,2012,2012,3101,2,1,1243.210924,1243.210924,3505,NO,38.83,50.54,3,5.4,6106,113.18548,123.051441,132.748545,139.291457,I,Above,Hip,0,5701,,44.68617478,0,0,,,,1,1,,0.03,nav,1,2012,2,, 20769,NJBF000055074,10 N UNION AVE,Margate City,NJ,39.32504943,-74.5113875,RES1,3001,,22,NE,2014,2014,3102,2,1,2675.509208,2675.509208,3505,NO,34.26,46,3,-2.38,6106,113.299691,123.140511,132.833635,139.398597,I,Above,Hip,0,5701,,40.12895513,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 20770,NJBF000057396,401 N PEMBROKE AVE,Margate City,NJ,39.33050205,-74.51137739,RES1,3001,,20,NE,2008,2008,3102,3,1,1752.681312,1752.681312,3505,NO,32.78,47.19,3,-1.14,6106,113.220063,123.078439,132.77335,139.327111,I,Above,Hip,0,5701,,39.98567757,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 20771,NJBF000055545,8600 VENTNOR AVE,Margate City,NJ,39.32637615,-74.5052527,RES1,3001,,19,NE,1952,1952,3102,1,1,3975.23304,3975.23304,3505,NO,17.76,25.27,3,1.14,6106,113.414526,123.233508,132.93143,139.506467,I,Above,Hip,0,5701,,21.51524973,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 20772,NJBF000058864,10 EAST DRIVE,Margate City,NJ,39.33307946,-74.49410274,RES1,3001,,NaN,NE,1926,0,3102,2,1,1319.291855,1319.291855,3505,NO,21.68,34.69,3,-2.2,6106,113.563847,123.355075,133.064198,139.643652,I,Above,Flat,0,5701,,28.18143504,0,0,,,,1,1,,0.03,nav,1,1926,2,, 20773,NJBF000061227,415 N DOUGLAS AVE,Margate City,NJ,39.33726992,-74.50251179,RES1,3001,,18,NE,1969,1969,3102,2,1,4322.078796,4322.078796,3505,NO,27.9,40.76,3,0.36,6106,113.319699,123.158866,132.86133,139.412485,I,Above,Hip,0,5701,,34.32953944,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20774,NJBF000057410,21 N HAVERFORD AVE,Margate City,NJ,39.33052403,-74.50157508,RES1,3001,,17,NE,1930,1930,3102,2,1,1146.21013,1146.21013,3505,NO,33.71,43.05,3,-0.73,6106,113.435416,123.251424,132.953506,139.527094,I,Above,Flat,0,5701,,38.37815741,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20775,NJBF000057321,23 N HUNTINGTON AVE,Margate City,NJ,39.33035979,-74.50225883,RES1,3001,,19,NE,1920,1920,3102,2,1,1541.547792,1541.547792,3505,NO,39.03,44.79,3,6.41,6106,113.422708,123.241175,132.942667,139.515345,I,Above,Hip,0,5701,,41.90997666,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 20776,NJBF000056799,8109 VENTNOR AVE,Margate City,NJ,39.32928391,-74.50108228,RES1,3001,,17,NE,1960,1960,3101,1,1,1673.324671,1673.324671,3505,NO,15.85,26.14,3,-0.53,6106,113.46402,123.274182,132.976315,139.553737,I,Above,Gable,0,5701,,20.99549095,0,0,,,,1,1,,0.03,nav,1,1960,1,, 20777,NJBF000059840,27 N COLMAR CIRCLE,Margate City,NJ,39.33494612,-74.50558613,RES1,3001,,17,NE,1952,1952,3101,2,1,1568.124241,1568.124241,3505,NO,41.17,54.95,3,4.34,6106,113.284238,123.130515,132.830341,139.383743,I,Above,Gable,0,5701,,48.06184522,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 20778,NJBF000057341,311 N PEMBROKE AVE,Margate City,NJ,39.33039521,-74.51127063,RES1,3001,,21,NE,2002,2002,3102,3,1,1619.015641,1619.015641,3505,NO,56.33,61.98,3,-1.72,6106,113.223944,123.081526,132.77648,139.330727,I,Above,Hip,0,5701,,59.15316071,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 20779,NJBF000056516,14 S GRANVILLE AVE,Margate City,NJ,39.32865182,-74.49961608,RES1,3001,,17,NE,1950,1950,3102,1,1,1325.292236,1325.292236,3505,NO,17.36,31.01,3,2.88,6106,113.50532,123.307282,133.01042,139.591945,I,Above,Flat,0,5701,,24.18164766,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20780,NJBF000055605,10 DOLPHIN DR,Margate City,NJ,39.32653962,-74.50013717,RES1,3001,,18,NE,1959,1959,3102,2,1,1502.67663,1502.67663,3505,NO,36.81,42.51,3,5.18,6106,113.524351,123.322026,133.024005,139.608415,I,Above,Flat,0,5701,,39.66227245,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 20781,NJBF000061341,303 N ARGYLE AVE,Margate City,NJ,39.337475,-74.497416,RES1,3001,,17,NE,1948,1948,3103,1,1,1593.30902,1593.30902,3505,NO,17.33,23.51,3,1.88,6106,113.429581,123.247001,132.953796,139.512057,I,Above,Flat,0,5701,,20.42315989,0,0,,,,1,1,,0.03,nav,1,1948,1,, 20782,NJBF000053850,7 N MADISON AVE,Margate City,NJ,39.32151605,-74.51640713,RES3C,3001,,21,ME,1954,1986,3301,2,1,5009.622817,5009.622817,3505,NO,41.01,46.68,3,3.91,6106,113.243008,123.09288,132.781301,139.341328,I,Above,Gable,0,NaN,,43.8450478,0,0,,,,1,1,,0.03,nav,1,1954,2,, 20783,NJBF000053541,26 S JEFFERSON AVE,Margate City,NJ,39.32032336,-74.51488193,RES1,3001,,45,NE,1930,1930,3102,2,2,1615.742011,1615.742011,3507,NO,27.38,40.13,1,-0.45,6106,113.294197,123.133455,132.822146,139.386984,I,Above,Gable,0,5701,,33.75354842,0,0,,,,1,1,,0.03,nav,1,1930,2,, 20784,NJBF000054546,9011 VENTNOR AVE,Margate City,NJ,39.32369278,-74.51210855,RES1,3001,,18,NE,1978,1978,3102,2,1,2286.211135,2286.211135,3505,NO,27.8,38.61,3,-2.97,6106,113.30404,123.143359,132.83544,139.401125,I,Above,Gable,0,5701,,33.20302615,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 20785,NJBF000057620,7809 VENTNOR AVE,Margate City,NJ,39.3308895,-74.4977895,COM1,3001,,NaN,ME,1925,1961,3401,2,1,1840.481449,1840.481449,3507,NO,39.59,46.2,1,1.84,6106,113.513553,123.314348,133.019676,139.599368,I,Above,Hip,0,NaN,,42.8959133,0,0,,,,1,1,,0.03,nav,1,1925,2,, 20786,NJBF000057655,117 N IROQUOIS AVE,Margate City,NJ,39.33094732,-74.5044285,RES1,3001,,17,NE,1952,1952,3102,2,1,1048.133065,1048.133065,3507,NO,37.47,48.26,1,0.61,6106,113.366544,123.196143,132.896096,139.463093,I,Above,Gable,0,5701,,42.86598159,0,0,,,,1,1,,0.03,nav,1,1952,2,, 20787,NJBF000058131,1 N DELAVAN AVE,Margate City,NJ,39.33176388,-74.49644999,RES1,3001,,17,NE,1952,1952,3102,2,1,1080.618772,1080.618772,3505,NO,26.14,37.96,3,4.48,6106,113.530642,123.328221,133.034934,139.614603,I,Above,Flat,0,5701,,32.05382319,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 20788,NJBF000059533,,Margate City,NJ,39.33441936,-74.50095138,RES1,3001,,NaN,NE,1969,0,3101,1,1,1371.487023,1371.487023,3507,NO,11.95,25.35,1,-0.08,6106,113.393996,123.218549,132.921956,139.485578,I,Above,Flat,0,5701,,18.65231101,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20789,NJBF000061493,413 N CLERMONT AVE,Margate City,NJ,39.33774465,-74.50135783,RES1,3001,,17,NE,1957,1957,3102,2,1,1634.443432,1634.443432,3505,NO,34.25,48.79,3,8.93,6106,113.338651,123.174012,132.877453,139.428767,I,Above,Gable,0,5701,,41.52232707,0,0,,,,1,1,,0.03,nav,1,1957,2,, 20790,NJBF000054616,5 S UNION AVE,Margate City,NJ,39.32387872,-74.50969995,RES1,3001,,19,NE,1940,1940,3102,2,1,1941.122987,1941.122987,3505,NO,32.55,39.91,3,7.44,6106,113.353904,123.18364,132.877391,139.447669,I,Above,Gable,0,5701,,36.22701232,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 20791,NJBF000055046,9 S QUINCY AVE,Margate City,NJ,39.32497819,-74.50704316,RES1,3001,,19,NE,1968,1968,3102,2,1,1501.075949,1501.075949,3505,NO,35.87,41.32,3,4.61,6106,113.395794,123.217884,132.913953,139.487792,I,Above,Gable,0,5701,,38.59401294,0,0,,,,1,1,,0.03,nav,1,1968,2,, 20792,NJBF000057836,7505 ATLANTIC AVE,Margate City,NJ,39.3312514,-74.49323325,RES1,3001,,19,NE,1925,1925,3102,2,1,1693.528162,1693.528162,3505,NO,28.33,37.31,3,-0.96,6106,113.60872,123.391057,133.100546,139.687148,I,Above,Hip,0,5701,,32.82340553,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20793,NJBF000057361,3 N FRONTENAC AVE,Margate City,NJ,39.33043966,-74.49912567,RES1,3001,,17,NE,1949,1949,3102,2,1,766.2352452,766.2352452,3505,NO,26.86,39.85,3,-0.03,6106,113.490513,123.295731,132.999804,139.578195,I,Above,Flat,0,5701,,33.35442426,0,0,,,,1,1,,0.03,nav,1,1949,2,, 20794,NJBF000056787,103 N KENYON AVE,Margate City,NJ,39.329261,-74.505518,RES1,3001,,20,NE,2006,2006,3102,3,1,1285.063669,1285.063669,3505,NO,62.64,71.31,3,7.31,6106,113.366826,123.196005,132.894687,139.463502,I,Above,Hip,0,5701,,66.97411359,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 20795,NJBF000056168,208 N SUMNER AVE,Margate City,NJ,39.32786853,-74.51220665,RES1,3001,,19,NE,2004,2004,3102,3,1,1090.518481,1090.518481,3505,NO,58.1,63.31,3,2.46,6106,113.240198,123.0938,132.787422,139.345307,I,Above,Hip,0,5701,,60.70672448,0,0,,,,1,1,,0.03,nav,1,2004,3,, 20796,NJBF000059624,19 W COLMAR CIRCLE,Margate City,NJ,39.33457003,-74.50504252,RES1,3001,,17,NE,1954,1954,3101,2,1,1561.274151,1561.274151,3505,NO,33.83,40.68,3,6.04,6106,113.301528,123.144363,132.84455,139.40016,I,Above,Flat,0,5701,,37.25626765,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 20797,NJBF000058042,110B N HAVERFORD AVE,Margate City,NJ,39.33160402,-74.50311325,RES1,3001,,20,NE,2006,2006,3102,3,1,1271.671053,1271.671053,3507,NO,59.99,71.95,1,2.44,6106,113.38614,123.211994,132.91312,139.480993,I,Above,Hip,0,5701,,65.97270156,0,0,,,,1,1,,0.03,nav,1,2006,3,, 20798,NJBF000058087,112 N HAVERFORD AVE,Margate City,NJ,39.33168366,-74.50321213,RES1,3001,,17,NE,1950,1950,3102,2,1,1694.441156,1694.441156,3507,NO,23.1,30.29,1,-0.55,6106,113.382819,123.209337,132.910405,139.477874,I,Above,Flat,0,5701,,26.69537462,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20799,NJBF000055188,2 S PEMBROKE AVE,Margate City,NJ,39.32539455,-74.50706878,RES1,3001,,20,NE,2007,2007,3103,3,1,3347.301636,3347.301636,3505,NO,56.37,70.92,3,-0.69,6106,113.389096,123.212659,132.908878,139.481999,I,Above,Hip,0,5701,,63.64863564,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 20800,NJBF000057080,25 N IROQUOIS AVE,Margate City,NJ,39.32987655,-74.50338186,RES1,3001,,18,NE,1925,1925,3102,2,1,1410.51627,1410.51627,3505,NO,36.95,48.56,3,-0.46,6106,113.404925,123.226779,132.927258,139.498904,I,Above,Hip,0,5701,,42.7542464,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20801,NJBF000055928,301 N WILSON AVE,Margate City,NJ,39.32730783,-74.51483377,RES1,3001,,47,NE,1950,1950,3102,2,2,799.8101875,799.8101875,3505,NO,38.65,46.82,3,0.36,6106,113.190872,123.05393,132.745735,139.299044,I,Above,Gable,0,5701,,42.73119564,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20802,NJBF000056873,107 N KENYON AVE,Margate City,NJ,39.32944048,-74.50569354,RES1,3001,,17,NE,1930,1930,3102,2,1,2093.233122,2093.233122,3505,NO,38.36,52.11,3,2.11,6106,113.360373,123.190863,132.889465,139.457528,I,Above,Gable,0,5701,,45.23255147,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20803,NJBF000057594,118 N IROQUOIS AVE,Margate City,NJ,39.33084661,-74.50483943,RES1,3001,,17,NE,1950,1950,3101,1,1,1912.386673,1912.386673,3507,NO,15.88,26.19,1,-0.96,6106,113.35895,123.190024,132.889641,139.456077,I,Above,Hip,0,5701,,21.03353748,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20804,NJBF000055585,9 N QUINCY AVE,Margate City,NJ,39.32649438,-74.50846801,RES1,3001,,17,NE,1925,1925,3102,2,1,1845.129439,1845.129439,3505,NO,42.28,55.89,3,7.4,6106,113.342322,123.17543,132.87108,139.439497,I,Above,Flat,0,5701,,49.08317299,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20805,NJBF000058225,214 N IROQUOIS AVE,Margate City,NJ,39.33192785,-74.50589538,RES1,3001,,17,NE,1952,1952,3102,2,1,1003.720471,1003.720471,3505,NO,43.91,54.96,3,7.69,6106,113.32023,123.159113,132.858189,139.419733,I,Above,Gable,0,5701,,49.4369355,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 20806,NJBF000058749,110 N EXETER AVE,Margate City,NJ,39.33286605,-74.50042475,RES1,3001,,17,NE,1956,1956,3102,1,1,1755.607534,1755.607534,3505,NO,25.59,32.54,3,6.36,6106,113.427473,123.245351,132.948914,139.518299,I,Above,Hip,0,5701,,29.06666921,0,0,,,,1,1,,0.03,nav,1,1956,1,, 20807,NJBF000053179,9515 BEACH,Margate City,NJ,39.318991,-74.514274,RES3E,3001,,39,ME,2004,2004,3301,3,1,1069.071131,1069.071131,3507,NO,55.29,69.81,1,1.98,6106,113.327584,123.159549,132.847859,139.415543,I,Above,Flat,0,5701,,62.55079088,0,0,,,,1,1,,0.03,nav,1,2004,3,, 20808,NJBF000053218,9514 ATLANTIC AVE,Margate City,NJ,39.31914949,-74.51447234,RES3E,3001,,39,ME,2004,2004,3301,3,1,5375.713701,5375.713701,3507,NO,56.95,66.76,1,0.56,6106,113.320888,123.154242,132.842523,139.409636,I,Above,Flat,0,5701,,61.85241855,0,0,,,,1,1,,0.03,nav,1,2004,3,, 20809,NJBF000053948,26 N MADISON AVE,Margate City,NJ,39.32188716,-74.51765602,RES1,3001,,21,NE,1979,2017,3102,2,1,1762.607516,1762.607516,3507,NO,34.1,44.14,1,1.08,6106,113.210237,123.066659,132.754557,139.311357,I,Above,Gable,0,5701,,39.11917704,0,0,,,,1,1,,0.03,nav,1,1979,2,, 20810,NJBF000061383,30 BAYSIDE COURT,Margate City,NJ,39.33754414,-74.51098346,RES1,3001,,19,NE,1997,1997,3102,2,1,1719.903943,1719.903943,3505,NO,25.73,33.39,3,-0.19,6106,113.128416,123.005773,132.701955,139.236416,I,Above,Hip,0,5701,,29.55859213,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 20811,NJBF000055083,101 N WILSON AVE,Margate City,NJ,39.32509021,-74.51270585,RES1,3001,,47,NE,1948,1948,3102,2,2,989.2955729,989.2955729,3505,NO,32.81,43.39,3,8.12,6106,113.27024,123.116813,132.809107,139.371235,I,Above,Flat,0,5701,,38.09782333,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20812,NJBF000062179,12 EXETER CT,Margate City,NJ,39.33893362,-74.50578371,RES1,3001,,18,NE,1970,1970,3102,1,1,1714.819915,1714.819915,3505,NO,27.83,39.07,3,8.33,6106,113.224215,123.082221,132.782188,139.321699,I,Above,Hip,0,5701,,33.44916899,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 20813,NJBF000062130,8016 LAGOON DRIVE,Margate City,NJ,39.33884046,-74.51014639,RES1,3001,,18,NE,1973,1973,3102,2,1,1319.488368,1319.488368,3505,NO,40,50.11,3,4.88,6106,113.128869,123.006024,132.702809,139.234577,I,Above,Gable,0,5701,,45.05524746,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 20814,NJBF000059707,20 E COLMAR CIRCLE,Margate City,NJ,39.33471592,-74.50487093,RES1,3001,,17,NE,1959,1959,3101,1,1,1695.918232,1695.918232,3505,NO,16.16,28.92,3,4.8,6106,113.303268,123.145764,132.846102,139.401587,I,Above,Gable,0,5701,,22.54355147,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 20815,NJBF000057265,101 N IROQUOIS AVE,Margate City,NJ,39.33025632,-74.50375714,RES1,3001,,17,NE,1950,1950,3101,1,1,1404.740753,1404.740753,3507,NO,12.63,27.15,1,1.73,6106,113.391236,123.215853,132.916145,139.486162,I,Above,Gable,0,5701,,19.89022773,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20816,NJBF000058252,202 N HUNTINGTON AVE,Margate City,NJ,39.33197535,-74.50427538,RES1,3001,,17,NE,1957,1957,3102,2,1,1262.184801,1262.184801,3505,NO,37.61,48.04,3,6.19,6106,113.355253,123.187238,132.887547,139.45217,I,Above,Flat,0,5701,,42.82792792,0,0,,,,1,1,,0.03,nav,1,1957,2,, 20817,NJBF000061838,428 N CLERMONT AVE,Margate City,NJ,39.33834804,-74.50246563,RES1,3001,,17,NE,1959,1959,3102,2,1,1518.761345,1518.761345,3505,NO,41.48,48.65,3,3.38,6106,113.305795,123.147608,132.850173,139.397449,I,Above,Hip,0,5701,,45.06397354,0,0,,,,1,1,,0.03,nav,1,1959,2,, 20818,NJBF000058970,8102 AMHERST AVE,Margate City,NJ,39.33328526,-74.50388468,RES1,3001,,17,NE,1952,1952,3101,1,2,1739.008995,1739.008995,3505,NO,16.93,26.21,3,4.08,6106,113.345241,123.179349,132.880219,139.441914,I,Above,Hip,0,5701,,21.57310009,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 20819,NJBF000061721,427 N DOUGLAS AVE,Margate City,NJ,39.33814774,-74.50337554,RES1,3001,,19,NE,2011,2011,3102,3,1,1896.895784,1896.895784,3505,NO,59.58,68.39,3,7.7,6106,113.288412,123.133709,132.835532,139.382045,I,Above,Flat,0,5701,,63.98428277,0,0,,,,1,1,,0.03,nav,1,2011,3,, 20820,NJBF000060800,25 W GILMAR CIRCLE,Margate City,NJ,39.33655905,-74.5070007,RES1,3001,,17,NE,1965,1965,3101,2,1,1423.006147,1423.006147,3505,NO,21.57,32.96,3,-1.81,6106,113.230312,123.087313,132.786253,139.331764,I,Above,Hip,0,5701,,27.26298245,0,0,,,,1,1,,0.03,nav,1,1965,2,, 20821,NJBF000061085,405 N DELAVAN AVE,Margate City,NJ,39.33703026,-74.50147378,RES1,3001,,17,NE,1952,1952,3102,1,1,1752.303128,1752.303128,3505,NO,25.93,31.94,3,8.08,6106,113.345991,123.179964,132.883255,139.437009,I,Above,Hip,0,5701,,28.93623228,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 20822,NJBF000061462,416 N CLERMONT AVE,Margate City,NJ,39.3376858,-74.50185693,RES1,3001,,17,NE,1959,1959,3102,2,1,1443.325807,1443.325807,3505,NO,29.29,43.3,3,1.45,6106,113.328426,123.165821,132.868847,139.419574,I,Above,Hip,0,5701,,36.29473421,0,0,,,,1,1,,0.03,nav,1,1959,2,, 20823,NJBF000061639,425 N DOUGLAS AVE,Margate City,NJ,39.33799704,-74.5032055,RES1,3001,,18,NE,1968,1968,3102,1,1,2508.854107,2508.854107,3505,NO,15.94,27.93,3,2.63,6110,113.294265,123.138415,132.840366,139.387717,I,Above,Hip,0,5701,,21.93381152,0,0,,,,1,1,,0.35,nav,1,1968,1,, 20824,NJBF000059381,38 WEST DRIVE,Margate City,NJ,39.33413907,-74.49626072,RES1,3001,,18,NE,1930,1930,3102,2,1,1309.326047,1309.326047,3505,NO,24.81,33.43,3,3.52,6106,113.501421,123.304874,133.012253,139.584692,I,Above,Hip,0,5701,,29.11701942,0,0,,,,1,1,,0.03,nav,1,1930,2,, 20825,NJBF000054164,,Margate City,NJ,39.32258811,-74.5203292,RES3B,3004,,NaN,ME,1969,0,3301,1,1,4125.121338,4125.121338,3505,NO,15.45,28.72,3,-0.39,6106,113.14151,123.011634,132.698438,139.2482,I,Above,Flat,0,NaN,,22.08220942,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20826,NJBF000054216,,Margate City,NJ,39.322769,-74.520501,RES3B,3004,,NaN,ME,1969,0,3301,1,1,4043.016859,4043.016859,3505,NO,17.48,30.68,3,2.64,6106,113.13503,123.006523,132.693324,139.24239,I,Above,Flat,0,NaN,,24.07852239,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20827,NJBF000058724,6 WEST DRIVE,Margate City,NJ,39.33281497,-74.49494679,RES1,3001,,18,NE,1925,1925,3102,2,1,1569.299772,1569.299772,3505,NO,25.58,35.71,3,0.99,6106,113.54895,123.34306,133.051357,139.630343,I,Above,Flat,0,5701,,30.64752617,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20828,NJBF000059551,14 E COLMAR CIRCLE,Margate City,NJ,39.33445038,-74.50460824,RES1,3001,,17,NE,1960,1960,3101,2,1,1253.592791,1253.592791,3505,NO,32.64,39.95,3,-0.93,6106,113.312824,123.153416,132.853918,139.410729,I,Above,Gable,0,5701,,36.29259517,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20829,NJBF000059642,217 N ESSEX AVE,Margate City,NJ,39.33460278,-74.50064395,RES1,3001,,17,NE,1950,1950,3101,1,1,1209.963253,1209.963253,3507,NO,14.2,27.94,1,0.02,6106,113.398191,123.221922,132.925611,139.489173,I,Above,Flat,0,5701,,21.06766446,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20830,NJBF000060552,7404 MONMOUTH AVE,Margate City,NJ,39.33617571,-74.49606655,RES1,3001,,20,NE,2006,2006,3102,2,1,1690.016571,1690.016571,3505,NO,34.51,40.95,3,8.04,6106,113.47735,123.285489,132.99335,139.558591,I,Above,Hip,0,5701,,37.73459853,0,0,,,,1,1,,0.03,nav,1,2006,2,, 20831,NJBF000061525,418 N CLERMONT AVE,Margate City,NJ,39.33779269,-74.50196396,RES1,3001,,17,NE,1959,1959,3102,2,1,1492.202542,1492.202542,3505,NO,25.26,31.8,3,-2.32,6106,113.324577,123.162725,132.86567,139.415827,I,Above,Hip,0,5701,,28.52671397,0,0,,,,1,1,,0.03,nav,1,1959,2,, 20832,NJBF000054306,18 N WASHINGTON AVE,Margate City,NJ,39.32303192,-74.51480175,RES1,3001,,47,NE,1956,1956,3102,2,2,1326.285131,1326.285131,3505,NO,25.32,35.34,3,-1.23,6106,113.255153,123.103591,132.793698,139.354806,I,Above,Flat,0,5701,,30.33214901,0,0,,,,1,1,,0.03,nav,1,1956,2,, 20833,NJBF000058823,204 N GLADSTONE AVE,Margate City,NJ,39.33298925,-74.50270727,RES1,3001,,17,NE,1952,1952,3102,2,1,1718.515016,1718.515016,3505,NO,20.28,28.31,3,-1.81,6106,113.375413,123.203544,132.905283,139.47008,I,Above,Hip,0,5701,,24.29400389,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 20834,NJBF000060387,4 S GILMAR CIRCLE,Margate City,NJ,39.33588884,-74.50578879,RES1,3001,,17,NE,1966,1966,3101,2,1,1563.828244,1563.828244,3505,NO,30.18,38.17,3,4.69,6106,113.266498,123.116307,132.816089,139.366095,I,Above,Gable,0,5701,,34.17305826,0,0,,,,1,1,,0.03,nav,1,1966,2,, 20835,NJBF000060416,2 S GILMAR CIRCLE,Margate City,NJ,39.33592955,-74.50560171,RES1,3001,,18,NE,1978,1978,3101,2,1,2182.288909,2182.288909,3505,NO,29.78,43.96,3,5.42,6106,113.270057,123.119157,132.819085,139.369309,I,Above,Hip,0,5701,,36.87040656,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 20836,NJBF000056890,23 N JASPER AVE,Margate City,NJ,39.32946657,-74.5038052,RES1,3001,,21,NE,2006,2006,3102,2,1,1551.035212,1551.035212,3505,NO,30.62,39.48,3,0.33,6106,113.401517,123.223946,132.923983,139.495738,I,Above,Gable,0,5701,,35.05265923,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 20837,NJBF000060169,700 N JEROME AVE,Margate City,NJ,39.33551608,-74.51122827,RES1,3001,,20,NE,1997,1997,3102,2,1,1381.550165,1381.550165,3505,NO,26.89,32.63,3,-1.04,6106,113.151552,123.024285,132.720161,139.260528,I,Above,Flat,0,5701,,29.75862736,0,0,,,,1,1,,0.03,nav,1,1997,2,, 20838,NJBF000063309,7606 BAYSHORE DR,Margate City,NJ,39.34137695,-74.50458332,RES1,3001,,19,NE,1984,1984,3102,2,1,1844.639243,1844.639243,3505,NO,31.27,42.44,3,0.91,6106,113.217325,123.076213,132.777076,139.309327,I,Above,Hip,0,5701,,36.856658,0,0,,,,1,1,,0.03,nav,1,1984,2,, 20839,NJBF000061201,19 N GILMAR CIRCLE,Margate City,NJ,39.33722776,-74.50706605,RES1,3001,,17,NE,1966,1966,3101,2,1,1548.452544,1548.452544,3505,NO,29.74,42.19,3,7.03,6106,113.219521,123.078644,132.777583,139.320738,I,Above,Hip,0,5701,,35.96506481,0,0,,,,1,1,,0.03,nav,1,1966,2,, 20840,NJBF000063528,7507 BURK AVE,Margate City,NJ,39.34195289,-74.50284238,RES1,3001,,19,NE,1984,1984,3102,2,1,1671.068723,1671.068723,3505,NO,23.09,30.13,3,1.01,6106,113.248134,123.100689,132.802925,139.335476,I,Above,Hip,0,5701,,26.61121114,0,0,,,,1,1,,0.03,nav,1,1984,2,, 20841,NJBF000056766,8 N HANOVER AVE,Margate City,NJ,39.32920703,-74.50244016,RES1,3001,,17,NE,1920,1920,3102,2,1,1168.851732,1168.851732,3505,NO,42.69,53.94,3,5.88,6106,113.435269,123.251032,132.952057,139.527048,I,Above,Gable,0,5701,,48.31298231,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 20842,NJBF000056634,15 S GLADSTONE AVE,Margate City,NJ,39.328926,-74.4988175,RES1,3001,,47,NE,1950,1950,3102,2,2,1323.999805,1323.999805,3505,NO,32.03,45.02,3,1.48,6106,113.518928,123.318304,133.022195,139.604627,I,Above,Flat,0,5701,,38.52398018,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20843,NJBF000059650,205 N DELAVAN AVE,Margate City,NJ,39.33461484,-74.49916077,RES1,3001,,17,NE,1950,1950,3103,1,1,1090.626869,1090.626869,3505,NO,21.84,34.64,3,3.01,6106,113.430762,123.248082,132.953017,139.519087,I,Above,Gable,0,5701,,28.24286447,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20844,NJBF000059833,223 N ESSEX AVE,Margate City,NJ,39.33493746,-74.50094132,RES1,3001,,17,NE,1925,1925,3102,3,2,1416.390788,1416.390788,3505,NO,62.18,68.56,3,5.91,6106,113.386953,123.212903,132.916396,139.478337,I,Above,Hip,0,5701,,65.36581772,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 20845,NJBF000053476,7 S MONROE AVE,Margate City,NJ,39.3200794,-74.51664927,RES1,3001,,21,NE,2004,2004,3102,2,2,2270.105613,2270.105613,3507,NO,27.66,33.66,1,2.27,6106,113.259506,123.105257,132.792774,139.354324,I,Above,Hip,0,5701,,30.66369501,0,0,,,,1,1,,0.03,nav,1,2004,2,, 20846,NJBF000060050,106 N ARGYLE AVE,Margate City,NJ,39.3353185,-74.495896,RES1,3001,,19,NE,1942,1942,3102,2,1,1015.668881,1015.668881,3505,NO,39.76,51.37,3,8.16,6106,113.493035,123.298133,133.006031,139.574783,I,Above,Hip,0,5701,,45.56561145,0,0,,,,1,1,,0.03,nav,1,1942,2,, 20847,NJBF000056631,3 N IROQUOIS AVE,Margate City,NJ,39.32890661,-74.50244833,RES1,3001,,17,NE,1935,1935,3102,2,1,1450.190866,1450.190866,3505,NO,37.68,47.18,3,7.11,6106,113.43941,123.254292,132.95522,139.530845,I,Above,Hip,0,5701,,42.4331581,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 20848,NJBF000058358,9 S ARGYLE AVE,Margate City,NJ,39.3321596,-74.49319246,RES1,3001,,21,NE,1920,2018,3102,2,1,1713.963961,1713.963961,3505,NO,26.1,40.71,3,1.94,6106,113.596819,123.381567,133.091322,139.675229,I,Above,Gable,0,5701,,33.40369872,0,0,,,,1,1,,0.03,nav,1,1920,2,, 20849,NJBF000061172,415 N ESSEX AVE,Margate City,NJ,39.33718332,-74.50333157,RES1,3001,,18,NE,1952,1952,3102,2,1,1811.532296,1811.532296,3505,NO,41.22,55.05,3,7.4,6106,113.302766,123.145304,132.847104,139.397168,I,Above,Hip,0,5701,,48.13572372,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 20850,NJBF000054494,201 N MADISON AVE,Margate City,NJ,39.32353619,-74.51876561,RES1,3001,,17,NE,1948,1948,3109,2,1,1220.666096,1220.666096,3505,NO,43.42,58.08,3,5.38,6106,113.161204,123.028123,132.716197,139.267847,I,Above,Gable,0,5701,,50.75082647,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20851,NJBF000062404,601 N DOUGLAS AVE,Margate City,NJ,39.33938476,-74.50460831,RES1,3001,,18,NE,1966,1966,3102,2,1,1683.95667,1683.95667,3505,NO,25.14,36.61,3,1.11,6106,113.244053,123.098019,132.798902,139.338768,I,Above,Gable,0,5701,,30.87186561,0,0.1,,,,1,1,,0.03,nav,1,1966,2,, 20852,NJBF000056928,16 N HANOVER AVE,Margate City,NJ,39.32955975,-74.50275626,RES1,3001,,18,NE,1935,1935,3102,2,1,1086.996382,1086.996382,3505,NO,34.04,39.54,3,8.54,6106,113.423246,123.241442,132.942321,139.515914,I,Above,Gable,0,5701,,36.78863739,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 20853,NJBF000061376,809 N JEROME AVE,Margate City,NJ,39.3375303,-74.51229949,RES1,3001,,17,NE,1955,1955,3102,2,1,2503.002621,2503.002621,3505,NO,20.06,28,3,-2.2,6106,113.099485,122.982659,132.677963,139.209783,I,Above,Gable,0,5701,,24.02847525,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 20854,NJBF000061441,8214 LAGOON DRIVE,Margate City,NJ,39.33763474,-74.51207368,RES1,3001,,19,NE,1988,1988,3102,2,1,2204.383665,2204.383665,3505,NO,35.14,45.52,3,4.03,6106,113.102992,122.985456,132.680912,139.212855,I,Above,Hip,0,5701,,40.32829152,0,0,,,,1,1,,0.03,nav,1,1988,2,, 20855,NJBF000058260,408 N MANSFIELD AVE,Margate City,NJ,39.33199148,-74.5105742,RES1,3001,,17,NE,1953,1953,3101,1,1,1628.760879,1628.760879,3505,NO,13.32,25.73,3,1.06,6106,113.216255,123.07571,132.771488,139.323223,I,Above,Hip,0,5701,,19.52343884,0,0,,,,1,1,,0.03,nav,1,1953,1,, 20856,NJBF000060998,411 N ESSEX AVE,Margate City,NJ,39.33687732,-74.50303366,RES1,3001,,17,NE,1952,1952,3102,1,1,1569.013483,1569.013483,3505,NO,16.99,26.48,3,-2.45,6106,113.313613,123.154019,132.856032,139.407691,I,Above,Hip,0,5701,,21.73286596,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 20857,NJBF000062575,608 N DOUGLAS AVE,Margate City,NJ,39.33974586,-74.50547725,RES1,3001,,18,NE,1966,1966,3102,2,1,1856.434279,1856.434279,3505,NO,34.92,40.72,3,7.65,6106,113.219824,123.078575,132.778783,139.315833,I,Above,Flat,0,5701,,37.82004088,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 20858,NJBF000059876,212 N CLERMONT AVE,Margate City,NJ,39.33499723,-74.4992474,RES1,3001,,19,NE,1950,1950,3103,2,1,1331.819447,1331.819447,3505,NO,24.7,31.93,3,1.99,6106,113.423521,123.242267,132.947187,139.511815,I,Above,Gable,0,5701,,28.3151042,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20859,NJBF000061623,417 N CLERMONT AVE,Margate City,NJ,39.33796702,-74.50157656,RES1,3001,,17,NE,1960,1960,3102,2,1,1522.061124,1522.061124,3505,NO,32.46,40.09,3,1.61,6106,113.330736,123.167642,132.870915,139.42105,I,Above,Hip,0,5701,,36.27215514,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20860,NJBF000059765,221 N ESSEX AVE,Margate City,NJ,39.33480933,-74.50085246,RES1,3001,,20,NE,2006,2006,3102,2,1,1443.94468,1443.94468,3505,NO,22.03,28.98,3,-1.78,6106,113.390711,123.215919,132.919467,139.481987,I,Above,Hip,0,5701,,25.50516412,0,0,,,,1,1,,0.03,nav,1,2006,2,, 20861,NJBF000053676,24 S ADAMS AVE,Margate City,NJ,39.32085207,-74.51421763,RES1,3001,,20,NE,2004,2004,3102,2,1,1374.12369,1374.12369,3507,NO,26.72,32.23,1,-0.45,6106,113.300647,123.139003,132.828381,139.393863,I,Above,Hip,0,5701,,29.47231739,0,0,,,,1,1,,0.03,nav,1,2004,2,, 20862,NJBF000061388,425 N GLADSTONE AVE,Margate City,NJ,39.33754847,-74.5060761,RES1,3001,,18,NE,1990,1990,3101,3,1,1849.014064,1849.014064,3505,NO,51.88,66.06,3,-0.82,6106,113.23697,123.092585,132.792281,139.336182,I,Above,Hip,0,5701,,58.96968933,0,1.2,,,,1,1,,0.03,nav,1,1990,3,, 20863,NJBF000054782,9108 WINCHESTER AVE,Margate City,NJ,39.32430027,-74.51341274,RES1,3001,,19,NE,1951,1951,3102,2,1,1176.449041,1176.449041,3505,NO,32.5,38.52,3,0.06,6106,113.266526,123.113437,132.804959,139.366943,I,Above,Flat,0,5701,,35.50680175,0,0,,,,1,1,,0.03,nav,1,1951,2,, 20864,NJBF000054395,120 N JEFFERSON AVE,Margate City,NJ,39.32327981,-74.51767563,RES1,3001,,18,NE,1953,1953,3101,1,1,1397.675096,1397.675096,3505,NO,20.02,25.33,3,6.02,6106,113.188798,123.050223,132.738779,139.293285,I,Above,Flat,0,5701,,22.67214428,0,0,,,,1,1,,0.03,nav,1,1953,1,, 20865,NJBF000057363,204 N KENYON AVE,Margate City,NJ,39.33044017,-74.50719077,RES1,3001,,17,NE,1952,1952,3101,1,1,1171.927401,1171.927401,3505,NO,11.2,20.36,3,-1.48,6106,113.313035,123.153062,132.85084,139.413532,I,Above,Gable,0,5701,,15.77720027,0,0,,,,1,1,,0.03,nav,1,1952,1,, 20866,NJBF000057193,221 N NASSAU AVE,Margate City,NJ,39.33011934,-74.5091674,RES1,3001,,21,NE,1969,2018,3101,3,1,1046.295219,1046.295219,3505,NO,40.37,47.7,3,-2.91,6106,113.274204,123.121804,132.818105,139.377472,I,Above,Gable,0,5701,,44.03814589,0,1.1,,,,1,1,,0.03,nav,1,1969,3,, 20867,NJBF000061921,504 N DOUGLAS AVE,Margate City,NJ,39.33847975,-74.50425904,RES1,3001,,18,NE,1967,1967,3102,2,1,2038.170058,2038.170058,3505,NO,36.2,43.93,3,2.56,6106,113.26427,123.114336,132.815473,139.359276,I,Above,Gable,0,5701,,40.06665457,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 20868,NJBF000057624,214 N KENYON AVE,Margate City,NJ,39.33089619,-74.50758275,RES1,3001,,17,NE,1952,1952,3101,1,1,1014.501687,1014.501687,3505,NO,25.25,39.77,3,5.82,6106,113.297848,123.140963,132.838572,139.399345,I,Above,Hip,0,5701,,32.51162675,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 20869,NJBF000058026,407 N NASSAU AVE,Margate City,NJ,39.33157174,-74.5105313,RES1,3001,,19,NE,1989,1989,3102,2,1,2428.17826,2428.17826,3505,NO,37.22,45.16,3,7.12,6106,113.223229,123.081221,132.776941,139.329851,I,Above,Gable,0,5701,,41.19101029,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 20870,NJBF000058089,411 N NASSAU AVE,Margate City,NJ,39.33168883,-74.51067434,RES1,3001,,17,NE,1955,1955,3101,1,1,1400.801691,1400.801691,3505,NO,20.29,28.96,3,8.63,6106,113.218396,123.077369,132.773018,139.325323,I,Above,Gable,0,5701,,24.62750073,0,0,,,,1,1,,0.03,nav,1,1955,1,, 20871,NJBF000054012,102 S VENDOME AVE,Margate City,NJ,39.32210227,-74.50951697,RES1,3001,,22,NE,2014,2014,3103,3,1,1563.519325,1563.519325,3505,NO,62.9,77.18,3,7.6,6106,113.384322,123.207269,132.900318,139.473426,I,Above,Gable,0,5701,,70.03976916,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 20872,NJBF000055242,9 N THURLOW AVE,Margate City,NJ,39.32555057,-74.51042056,RES1,3001,,17,NE,1941,1941,3102,2,1,1599.965107,1599.965107,3505,NO,28.89,37.86,3,1.89,6106,113.313411,123.151779,132.845741,139.411837,I,Above,Gable,0,5701,,33.3711199,0,1.2,,,,1,1,,0.03,nav,1,1941,2,, 20873,NJBF000054130,10 S BENSON AVE,Margate City,NJ,39.3224822,-74.5123818,RES1,3001,,47,NE,1961,1961,3102,2,2,1299.137941,1299.137941,3505,NO,33.81,48.61,3,0.19,6106,113.316154,123.152483,132.843829,139.410771,I,Above,Flat,0,5701,,41.21257615,0,0,,,,1,1,,0.03,nav,1,1961,2,, 20874,NJBF000056819,209 N PEMBROKE AVE,Margate City,NJ,39.32932988,-74.51026286,RES1,3001,,18,NE,1962,1962,3102,2,1,1573.914749,1573.914749,3505,NO,39.26,46.83,3,2.52,6106,113.261549,123.11143,132.806771,139.365649,I,Above,Flat,0,5701,,43.0495444,0,0,,,,1,1,,0.03,nav,1,1962,2,, 20875,NJBF000062665,7805 BURK AVE,Margate City,NJ,39.33994727,-74.50622184,RES1,3001,,18,NE,1968,1968,3102,2,1,1492.358679,1492.358679,3505,NO,40.71,54.91,3,8.63,6106,113.200543,123.063121,132.762756,139.297782,I,Above,Gable,0,5701,,47.81247832,0,0,,,,1,1,,0.03,nav,1,1968,2,, 20876,NJBF000061923,7808 MARSHALL AVE,Margate City,NJ,39.33849029,-74.50537352,RES1,3001,,18,NE,1969,1969,3102,2,1,1429.455127,1429.455127,3505,NO,31,40.29,3,5.48,6106,113.239438,123.09446,132.794731,139.336567,I,Above,Hip,0,5701,,35.64152952,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 20877,NJBF000057824,303 N LANCASTER AVE,Margate City,NJ,39.33123039,-74.50828971,RES1,3001,,21,NE,2017,2017,3102,2,1,2269.176308,2269.176308,3505,NO,24.12,35.66,3,-0.57,6106,113.277484,123.124684,132.82187,139.380348,I,Above,Gable,0,5701,,29.88988109,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 20878,NJBF000058204,403 N MANSFIELD AVE,Margate City,NJ,39.33189162,-74.5099149,RES1,3001,,17,NE,1951,1951,3101,1,1,1965.675403,1965.675403,3505,NO,18.47,24.9,3,1.76,6106,113.232191,123.088471,132.784675,139.338062,I,Above,Flat,0,5701,,21.68757189,0,1.2,,,,1,1,,0.03,nav,1,1951,1,, 20879,NJBF000057673,320 N NASSAU AVE,Margate City,NJ,39.33097031,-74.51052179,RES1,3001,,18,NE,1981,1981,3102,3,1,1664.482593,1664.482593,3505,NO,45.61,59.24,3,1.57,6106,113.232105,123.088214,132.783804,139.338249,I,Above,Flat,0,5701,,52.42533031,0,0,,,,1,1,,0.03,nav,1,1981,3,, 20880,NJBF000057931,308 N LANCASTER AVE,Margate City,NJ,39.3313941,-74.50905407,RES1,3001,,20,NE,2016,2016,3102,2,1,1245.154528,1245.154528,3505,NO,30.9,37.12,3,3.87,6106,113.258307,123.109327,132.806015,139.36249,I,Above,Hip,0,5701,,34.01192851,0,0,,,,1,1,,0.03,nav,1,2016,2,, 20881,NJBF000060906,209 N BELMONT DR,Margate City,NJ,39.33672579,-74.49762192,RES1,3001,,19,NE,2012,2012,3103,3,1,1408.320072,1408.320072,3505,NO,54.18,65.78,3,0.41,6106,113.435374,123.251722,132.958264,139.519155,I,Above,Hip,0,5701,,59.98045017,0,0,,,,1,1,,0.03,nav,1,2012,3,, 20882,NJBF000056860,211 N PEMBROKE AVE,Margate City,NJ,39.32941548,-74.51036584,RES1,3001,,17,NE,1966,1966,3101,1,1,1596.005243,1596.005243,3505,NO,18.01,30.69,3,1.39,6106,113.258051,123.108645,132.803941,139.362408,I,Above,Gable,0,5701,,24.35276261,0,0,,,,1,1,,0.03,nav,1,1966,1,, 20883,NJBF000054889,,Margate City,NJ,39.32457207,-74.50313484,RES1,3001,,NaN,NE,2017,0,3102,2,1,3205.430399,3205.430399,3505,NO,36.74,43.98,3,1.46,6106,113.487317,123.291474,132.990285,139.572108,I,Above,Hip,0,5701,,40.35873399,0,0,,,,1,1,,0.03,nav,1,2017,2,, 20884,NJBF000059561,324 N HUNTINGTON AVE,Margate City,NJ,39.33446564,-74.50652296,RES1,3001,,17,NE,1962,1962,3101,2,1,1680.325506,1680.325506,3505,NO,32.78,46.26,3,6.69,6110,113.270318,123.119339,132.818401,139.371466,I,Above,Hip,0,5701,,39.52257191,0,0,,,,1,1,,0.35,nav,1,1962,2,, 20885,NJBF000054390,20 S THURLOW AVE,Margate City,NJ,39.32326973,-74.50878438,RES1,3001,,23,NE,2014,2014,3103,3,1,1815.232894,1815.232894,3505,NO,61.01,68.33,3,4.79,6106,113.382952,123.206761,132.900866,139.47383,I,Above,Gable,0,5701,,64.67054644,0,0,,,,1,1,,0.03,nav,1,2014,3,, 20886,NJBF000055142,14 N UNION AVE,Margate City,NJ,39.32525617,-74.51160347,RES1,3001,,20,NE,2009,2009,3102,2,1,1465.666025,1465.666025,3505,NO,29.86,40.18,3,5.88,6106,113.291904,123.134334,132.827401,139.391557,I,Above,Gable,0,5701,,35.01926803,0,1.1,,,,1,1,,0.03,nav,1,2009,2,, 20887,NJBF000061107,212 N ARGYLE AVE,Margate City,NJ,39.33706256,-74.4975943,RES1,3001,,18,NE,1950,1950,3103,2,1,1155.223809,1155.223809,3505,NO,35.84,44.8,3,1.63,6106,113.431332,123.248448,132.955048,139.514678,I,Above,Gable,0,5701,,40.32122516,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20888,NJBF000056016,8406 VENTNOR AVE,Margate City,NJ,39.3275262,-74.50376743,RES1,3001,,17,NE,1950,1950,3102,2,1,1254.487194,1254.487194,3505,NO,38.98,47.77,3,2.08,6106,113.430395,123.24666,132.946115,139.521964,I,Above,Flat,0,5701,,43.37356514,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20889,NJBF000054770,7 S SUMNER AVE,Margate City,NJ,39.32426671,-74.50822497,RES1,3001,,NaN,NE,1938,0,3102,2,1,1734.284431,1734.284431,3505,NO,28.75,41.85,3,6.42,6106,113.380411,123.205182,132.900116,139.472729,I,Above,Hip,0,5701,,35.30085656,0,0,,,,1,1,,0.03,nav,1,1938,2,, 20890,NJBF000055942,4 S KNIGHT AVE,Margate City,NJ,39.32734616,-74.50366516,RES1,3001,,19,NE,1948,1948,3102,2,1,1500.299477,1500.299477,3505,NO,27.25,34.21,3,1.79,6106,113.435245,123.250509,132.94998,139.526364,I,Above,Gable,0,5701,,30.73154226,0,0,,,,1,1,,0.03,nav,1,1948,2,, 20891,NJBF000056042,4 S JEROME AVE,Margate City,NJ,39.32759591,-74.5031533,RES1,3001,,17,NE,1942,1942,3102,2,1,1314.335749,1314.335749,3505,NO,29.79,41,3,-2.25,6106,113.44286,123.256713,132.956666,139.53357,I,Above,Gable,0,5701,,35.39681959,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 20892,NJBF000056963,101 S DOUGLAS AVE,Margate City,NJ,39.32962671,-74.49556695,RES1,3001,,22,NE,2013,2013,3102,3,1,978.2027989,978.2027989,3505,NO,35.4,42.38,3,1.03,6106,113.580391,123.367965,133.07488,139.661649,I,Above,Flat,0,5701,,38.88725765,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 20893,NJBF000058161,14 S ARGYLE AVE,Margate City,NJ,39.33181299,-74.49338134,RES1,3001,,19,NE,1925,1925,3102,2,1,1704.888306,1704.888306,3505,NO,33.63,40.88,3,0.9,6106,113.597539,123.382112,133.091607,139.676294,I,Above,Hip,0,5701,,37.25599056,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20894,NJBF000058209,12 S ARGYLE AVE,Margate City,NJ,39.33190055,-74.49346738,RES1,3001,,19,NE,1925,1925,3102,2,1,1540.389744,1540.389744,3505,NO,38.72,52.82,3,8.35,6106,113.594406,123.379596,133.089034,139.673311,I,Above,Gable,0,5701,,45.77300245,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20895,NJBF000062279,,Margate City,NJ,39.33913841,-74.50272352,RES1,3001,,NaN,NE,1969,0,3102,2,1,2082.644025,2082.644025,3505,NO,31.8,44.74,3,8.76,6106,113.289195,123.134194,132.836576,139.380453,I,Above,Hip,0,5701,,38.26798599,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20896,NJBF000062361,,Margate City,NJ,39.33928816,-74.50285396,RES1,3001,,NaN,NE,1969,0,3102,2,1,1739.213398,1739.213398,3505,NO,27.99,38.25,3,1.37,6106,113.284252,123.130211,132.83249,139.375587,I,Above,Gable,0,5701,,33.1167519,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20897,NJBF000057991,20 S ARGYLE AVE,Margate City,NJ,39.33151718,-74.4931647,RES1,3001,,20,NE,1985,1985,3102,3,1,1911.756261,1911.756261,3505,NO,52.04,63.93,3,3.41,6106,113.606465,123.389273,133.098893,139.684827,I,Above,Flat,0,5701,,57.98508455,0,1.1,,,,1,1,,0.03,nav,1,1985,3,, 20898,NJBF000056258,314 N VENDOME AVE,Margate City,NJ,39.32807526,-74.51520704,RES1,3001,,17,NE,1955,1955,3101,1,1,1844.52893,1844.52893,3505,NO,13.57,25.8,3,0.54,6106,113.171401,123.038587,132.73042,139.281293,I,Above,Gable,0,5701,,19.68800896,0,0,,,,1,1,,0.03,nav,1,1955,1,, 20899,NJBF000059204,,Margate City,NJ,39.33377396,-74.49686534,RES1,3001,,NaN,NE,1969,0,3102,2,1,1020.843156,1020.843156,3505,NO,27.63,42.54,3,3.6,6106,113.493207,123.298255,133.005032,139.577739,I,Above,Hip,0,5701,,35.08360098,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20900,NJBF000058585,406 N KENYON AVE,Margate City,NJ,39.3325659,-74.50918798,RES1,3001,,17,NE,1969,1969,3102,2,1,1342.882435,1342.882435,3505,NO,30.74,42.99,3,-1.03,6106,113.238547,123.09368,132.790518,139.343635,I,Above,Gable,0,5701,,36.86160982,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20901,NJBF000056150,9001 AMHERST AVE,Margate City,NJ,39.32782297,-74.51398711,RES1,3001,,18,NE,1949,1949,3101,1,1,1160.424525,1160.424525,3505,NO,19.25,29.57,3,5.64,6106,113.201847,123.062958,132.755448,139.309557,I,Above,Gable,0,5701,,24.41011017,0,0,,,,1,1,,0.03,nav,1,1949,1,, 20902,NJBF000058747,30 N DELAVAN AVE,Margate City,NJ,39.33286225,-74.49793668,RES1,3001,,17,NE,1951,1951,3102,1,1,1280.299925,1280.299925,3505,NO,22.79,32.84,3,4.01,6106,113.482383,123.289495,132.995158,139.568977,I,Above,Gable,0,5701,,27.8128979,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 20903,NJBF000056957,411 N THURLOW AVE,Margate City,NJ,39.3296153,-74.51427121,RES1,3001,,17,NE,1967,1967,3102,3,1,1135.723847,1135.723847,3505,NO,44.6,51.49,3,1.57,6106,113.169364,123.037496,132.730343,139.279875,I,Above,Gable,0,5701,,48.04697834,0,0,,,,1,1,,0.03,nav,1,1967,3,, 20904,NJBF000056155,11 N MANSFIELD AVE,Margate City,NJ,39.32784144,-74.50606887,RES1,3001,,17,NE,1951,1951,3101,1,1,3346.103486,3346.103486,3505,NO,18.74,33.37,3,5.54,6106,113.375288,123.202414,132.900248,139.470945,I,Above,Hip,0,5701,,26.05669809,0,0,,,,1,1,,0.03,nav,1,1951,1,, 20905,NJBF000055227,6 S OSBORNE AVE,Margate City,NJ,39.32550879,-74.50628685,RES1,3001,,19,NE,1960,1960,3102,2,1,2049.459024,2049.459024,3505,NO,27.08,37.63,3,1.33,6106,113.40455,123.225151,132.92198,139.49645,I,Above,Gable,0,5701,,32.3552769,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20906,NJBF000055190,8 S OSBORNE AVE,Margate City,NJ,39.32539958,-74.5061861,RES1,3001,,19,NE,1960,1960,3102,2,1,2062.494147,2062.494147,3505,NO,33.47,42.25,3,-2.56,6106,113.408361,123.228178,132.925037,139.49988,I,Above,Hip,0,5701,,37.86418468,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20907,NJBF000059331,313 N HUNTINGTON AVE,Margate City,NJ,39.33402539,-74.50558076,RES1,3001,,17,NE,1953,1953,3101,1,1,1252.003334,1252.003334,3505,NO,23.31,28.74,3,4.02,6106,113.297348,123.140983,132.840681,139.396914,I,Above,Flat,0,5701,,26.02561987,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 20908,NJBF000059057,8506 WELLINGTON AVE,Margate City,NJ,39.33346009,-74.51037658,RES1,3001,,17,NE,1979,1979,3102,2,1,1616.521134,1616.521134,3505,NO,36.52,41.62,3,4.08,6106,113.199558,123.062552,132.758732,139.306899,I,Above,Hip,0,5701,,39.07021648,0,0,,,,1,1,,0.03,nav,1,1979,2,, 20909,NJBF000057251,501 N UNION AVE,Margate City,NJ,39.33023048,-74.51577601,RES1,3001,,20,NE,2017,2017,3102,3,1,2263.806824,2263.806824,3505,NO,57.68,69.58,3,5.91,6106,113.127335,123.003959,132.696065,139.240781,I,Above,Hip,0,5701,,63.62894605,0,0,,,,1,1,,0.03,nav,1,2017,3,, 20910,NJBF000059274,508 N KENYON AVE,Margate City,NJ,39.33391041,-74.51043099,RES1,3001,,18,NE,1983,1983,3102,2,1,2808.15481,2808.15481,3505,NO,34.16,45.36,3,3.8,6106,113.191951,123.056509,132.752722,139.299499,I,Above,Gable,0,5701,,39.76185422,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 20911,NJBF000058887,FULTON AVE,Margate City,NJ,39.33312381,-74.51082136,RES1,3001,,NaN,NE,1970,0,3102,2,1,1687.759762,1687.759762,3505,NO,39.57,52.91,3,2.37,6106,113.194569,123.05851,132.754336,139.302502,I,Above,Hip,0,5701,,46.23620167,0,0,,,,1,1,,0.03,nav,1,1970,2,, 20912,NJBF000056582,,Margate City,NJ,39.3287955,-74.5047645,EDU1,3004,,NaN,E,1969,0,3401,3,1,5961.920334,5961.920334,3507,NO,34.37,46.81,1,0.4,6106,113.390127,123.214621,132.913728,139.485063,I,Above,Flat,0,NaN,,40.59089623,0,0,,,,1,1,,0.03,nav,1,1969,3,, 20913,NJBF000056448,,Margate City,NJ,39.3284891,-74.50447487,REL1,3003,,NaN,ME,1969,0,3401,2,1,3122.735403,3122.735403,3507,NO,26.43,33.12,1,-0.35,6106,113.4009,123.223204,132.922435,139.494985,I,Above,Hip,0,NaN,,29.77705753,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20914,NJBF000056425,,Margate City,NJ,39.3284393,-74.50458236,REL1,3003,,NaN,ME,1969,0,3401,3,1,1413.11877,1413.11877,3507,NO,47.02,60.09,1,1.74,6106,113.399273,123.221881,132.921016,139.493458,I,Above,Hip,0,NaN,,53.55279248,0,0,,,,1,1,,0.03,nav,1,1969,3,, 20915,NJBF000056367,,Margate City,NJ,39.32832212,-74.50463747,REL1,3003,,NaN,ME,1969,0,3401,3,1,3624.384619,3624.384619,3507,NO,57.26,62.75,1,1,6106,113.399758,123.222239,132.921295,139.49387,I,Above,Flat,0,NaN,,60.00425411,0,0,,,,1,1,,0.03,nav,1,1969,3,, 20916,NJBF000056203,,Margate City,NJ,39.3279615,-74.50411319,REL1,3003,,NaN,ME,1969,0,3401,2,1,16634.74003,16634.74003,3507,NO,33.08,44.51,1,2.9,6106,113.416479,123.235589,132.934926,139.509257,I,Above,Flat,0,NaN,,38.79797987,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20917,NJBF000058095,6 N DOUGLAS AVE,Margate City,NJ,39.33170994,-74.49763568,RES1,3001,,21,NE,2017,2017,3102,2,1,1261.82785,1261.82785,3505,NO,29.22,38,3,1.5,6106,113.505282,123.307803,133.013468,139.591209,I,Above,Flat,0,5701,,33.60924778,0,0,,,,1,1,,0.03,nav,1,2017,2,, 20918,NJBF000058021,4 N DOUGLAS AVE,Margate City,NJ,39.33156783,-74.49753702,RES1,3001,,17,NE,1955,1955,3102,1,1,1360.618257,1360.618257,3505,NO,17.88,25.68,3,0.52,6106,113.509473,123.311158,133.016874,139.595189,I,Above,Gable,0,5701,,21.77743424,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 20919,NJBF000058829,41 N DOUGLAS AVE,Margate City,NJ,39.33301819,-74.49836825,RES1,3001,,17,NE,1952,1952,3102,1,1,1794.130091,1794.130091,3505,NO,18.18,31.98,3,-0.52,6106,113.470683,123.280098,132.985422,139.558012,I,Above,Hip,0,5701,,25.08043653,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 20920,NJBF000055065,108 S MANSFIELD AVE,Margate City,NJ,39.32502945,-74.50400045,RES1,3001,,18,NE,1925,1925,3102,2,1,1095.258667,1095.258667,3505,NO,36.35,47.96,3,7.27,6106,113.461679,123.27099,132.969328,139.548911,I,Above,Flat,0,5701,,42.15435556,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20921,NJBF000059544,13 WEST DRIVE,Margate City,NJ,39.33443392,-74.49536344,RES1,3001,,18,NE,1926,1926,3102,2,1,1033.710218,1033.710218,3505,NO,22.8,28.25,3,-2.02,6106,113.517112,123.317504,133.025741,139.598529,I,Above,Hip,0,5701,,25.52662918,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 20922,NJBF000059805,317 N GLADSTONE AVE,Margate City,NJ,39.33488353,-74.50347011,RES1,3001,,17,NE,1960,1960,3101,2,1,2174.242442,2174.242442,3505,NO,34.97,49.36,3,5.35,6106,113.331845,123.168684,132.870132,139.427707,I,Above,Gable,0,5701,,42.16660507,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 20923,NJBF000061739,616 N HUNTINGTON AVE,Margate City,NJ,39.33817266,-74.51013042,RES1,3001,,17,NE,1977,1977,3102,1,1,2041.925851,2041.925851,3505,NO,15.36,22.3,3,0.17,6106,113.13851,123.013795,132.710581,139.244651,I,Above,Gable,0,5701,,18.83032137,0,0,,,,1,1,,0.03,nav,1,1977,1,, 20924,NJBF000061359,606 N HUNTINGTON AVE,Margate City,NJ,39.33749931,-74.50945801,RES1,3001,,17,NE,1976,1976,3102,2,1,2048.074063,2048.074063,3505,NO,37.98,52.85,3,6.32,6106,113.162799,123.033258,132.73049,139.268135,I,Above,Gable,0,5701,,45.41179294,0,0,,,,1,1,,0.03,nav,1,1976,2,, 20925,NJBF000060573,305 N CLERMONT AVE,Margate City,NJ,39.3362124,-74.49990178,RES1,3001,,17,NE,1956,1956,3103,2,1,1711.997238,1711.997238,3505,NO,31.57,46.26,3,-1.54,6106,113.392111,123.217017,132.921539,139.480818,I,Above,Gable,0,5701,,38.9116056,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 20926,NJBF000060641,307 N CLERMONT AVE,Margate City,NJ,39.33632352,-74.50000727,RES1,3001,,17,NE,1956,1956,3102,2,1,1511.58526,1511.58526,3505,NO,34.96,42.55,3,3.79,6106,113.388233,123.213898,132.918344,139.47705,I,Above,Gable,0,5701,,38.75582029,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 20927,NJBF000055326,112 S JEROME AVE,Margate City,NJ,39.3257816,-74.50169019,RES1,3001,,20,NE,1962,1962,3102,2,1,2610.166672,2610.166672,3505,NO,31.77,39.12,3,3.24,6106,113.501303,123.3032,133.003637,139.586382,I,Above,Gable,0,5701,,35.4448521,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 20928,NJBF000061658,8 HARBOUR LANE,Margate City,NJ,39.33802045,-74.50903833,RES1,3001,,18,NE,1984,1984,3102,2,1,1862.395755,1862.395755,3505,NO,30.13,42.15,3,8.57,6106,113.164824,123.034838,132.732386,139.2691,I,Above,Hip,0,5701,,36.13981373,0,0,,,,1,1,,0.03,nav,1,1984,2,, 20929,NJBF000060718,209 N BRUNSWICK DR,Margate City,NJ,39.33644362,-74.49838969,RES1,3001,,17,NE,1950,1950,3103,2,1,1093.278801,1093.278801,3505,NO,31.09,38.56,3,1.57,6106,113.422306,123.241246,132.947087,139.507899,I,Above,Hip,0,5701,,34.82482901,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20930,NJBF000060556,205 N BRUNSWICK DR,Margate City,NJ,39.33618098,-74.49812242,RES1,3001,,17,NE,1950,1950,3103,2,1,1685.211405,1685.211405,3505,NO,33.89,40.72,3,2.48,6106,113.431878,123.248949,132.954992,139.517194,I,Above,Gable,0,5701,,37.30313398,0,0,,,,1,1,,0.03,nav,1,1950,2,, 20931,NJBF000061198,8117 MARSHALL AVE,Margate City,NJ,39.33722578,-74.50833921,RES1,3001,,17,NE,1974,1974,3101,1,1,1916.447783,1916.447783,3505,NO,10.34,25.12,3,-1.68,6106,113.19138,123.05613,132.754142,139.294875,I,Above,Flat,0,5701,,17.7309731,0,0,,,,1,1,,0.03,nav,1,1974,1,, 20932,NJBF000060292,200 N BRUNSWICK DR,Margate City,NJ,39.33573143,-74.49841366,RES1,3001,,17,NE,1950,1950,3103,1,1,1286.590174,1286.590174,3505,NO,20.27,29,3,1.18,6106,113.431682,123.24881,132.954545,139.51794,I,Above,Gable,0,5701,,24.63519804,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20933,NJBF000062026,505 N DOUGLAS AVE,Margate City,NJ,39.33866887,-74.50389772,RES1,3001,,19,NE,1968,1968,3102,3,1,1710.448155,1710.448155,3505,NO,52.14,62.84,3,-1.82,6106,113.269653,123.11862,132.820048,139.363767,I,Above,Hip,0,5701,,57.49365265,0,1.1,,,,1,1,,0.03,nav,1,1968,3,, 20934,NJBF000057893,8016 WINCHESTER AVE,Margate City,NJ,39.33134019,-74.50127201,RES1,3001,,20,NE,2006,2006,3102,3,1,1286.824582,1286.824582,3505,NO,60.45,71.88,3,2.65,6106,113.430449,123.247564,132.950097,139.522181,I,Above,Hip,0,5701,,66.16214525,0,0,,,,1,1,,0.03,nav,1,2006,3,, 20935,NJBF000062185,509 N DOUGLAS AVE,Margate City,NJ,39.33895081,-74.5041679,RES1,3001,,18,NE,1966,1966,3102,2,1,1973.981507,1973.981507,3505,NO,24.55,29.69,3,-1.23,6106,113.259782,123.110676,132.811899,139.354119,I,Above,Gable,0,5701,,27.11830454,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 20936,NJBF000054302,206 N MONROE AVE,Margate City,NJ,39.32301339,-74.5200235,RES3A,3001,,30,NE,2001,2001,3301,2,2,2005.74147,2005.74147,3505,NO,40.75,50.78,3,3.12,6106,113.141734,123.012091,132.699257,139.248985,I,Above,Flat,0,5701,,45.76346478,0,0,,,,1,1,,0.03,nav,1,2001,2,, 20937,NJBF000054803,9409 MONMOUTH AVE,Margate City,NJ,39.32436015,-74.51757521,RES1,3001,,19,NE,1986,1986,3102,2,1,2114.39761,2114.39761,3507,NO,25.81,37,1,-0.45,6106,113.174787,123.039551,132.728642,139.281499,I,Above,Flat,0,5701,,31.40030818,0,0,,,,1,1,,0.03,nav,1,1986,2,, 20938,NJBF000061169,426 N EXETER AVE,Margate City,NJ,39.33718217,-74.50467901,RES1,3001,,19,NE,1974,1974,3102,2,1,4779.139846,4779.139846,3505,NO,39.12,46.47,3,7.09,6106,113.272979,123.121442,132.822184,139.369881,I,Above,Gable,0,5701,,42.79393518,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 20939,NJBF000057048,428 N THURLOW AVE,Margate City,NJ,39.3298135,-74.51498183,RES1,3001,,17,NE,1950,1950,3102,1,1,1270.664259,1270.664259,3505,NO,20.32,29.35,3,5.3,6106,113.150846,123.022695,132.715165,139.262649,I,Above,Gable,0,5701,,24.83477624,0,0,,,,1,1,,0.03,nav,1,1950,1,, 20940,NJBF000056802,414 N UNION AVE,Margate City,NJ,39.32928769,-74.51541446,RES1,3001,,18,NE,1955,1955,3102,1,1,1159.107757,1159.107757,3505,NO,12.17,23.2,3,1.56,6106,113.149055,123.021083,132.713154,139.260883,I,Above,Gable,0,5701,,17.68653001,0,0,,,,1,1,,0.03,nav,1,1955,1,, 20941,NJBF000061859,8209 LAGOON DRIVE,Margate City,NJ,39.33838641,-74.51173256,RES1,3001,,20,NE,1974,1974,3102,3,1,2713.420336,2713.420336,3505,NO,51.72,57,3,7.21,6106,113.100035,122.983043,132.678743,139.208905,I,Above,Hip,0,5701,,54.35853836,0,0,,,,1,1,,0.03,nav,1,1974,3,, 20942,NJBF000056328,103 S GLADSTONE AVE,Margate City,NJ,39.32822254,-74.49805362,RES1,3001,,20,NE,1951,1951,3102,3,1,1544.166235,1544.166235,3505,NO,56.83,64.55,3,1.5,6106,113.545804,123.339787,133.044097,139.629347,I,Above,Hip,0,5701,,60.68985208,0,0,,,,1,1,,0.03,nav,1,1951,3,, 20943,NJBF000054686,103 S QUINCY AVE,Margate City,NJ,39.32406806,-74.50617791,RES1,3001,,19,NE,1934,1934,3102,2,1,1691.222087,1691.222087,3505,NO,28.76,37.56,3,-2.68,6106,113.428123,123.243547,132.939856,139.516711,I,Above,Gable,0,5701,,33.16203627,0,1.2,,,,1,1,,0.03,nav,1,1934,2,, 20944,NJBF000062132,3 EXETER CT,Margate City,NJ,39.33885304,-74.50627723,RES1,3001,,18,NE,1971,1971,3102,2,1,1931.641605,1931.641605,3505,NO,20.01,33.33,3,-1.13,6106,113.214413,123.074392,132.773983,139.312915,I,Above,Gable,0,5701,,26.66980792,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 20945,NJBF000058081,202 N HANOVER AVE,Margate City,NJ,39.33167384,-74.50478991,RES1,3001,,17,NE,1968,1968,3102,2,1,984.5165961,984.5165961,3505,NO,38.75,45.67,3,4.44,6106,113.3482,123.181531,132.88138,139.445793,I,Above,Hip,0,5701,,42.21088754,0,0,,,,1,1,,0.03,nav,1,1968,2,, 20946,NJBF000058028,8205 MONMOUTH AVE,Margate City,NJ,39.33157459,-74.50473527,RES1,3001,,17,NE,1950,1950,3102,2,1,1429.124245,1429.124245,3505,NO,36.57,48.71,3,8.48,6106,113.350825,123.183623,132.883492,139.448273,I,Above,Gable,0,5701,,42.63973552,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20947,NJBF000055996,8901 MONMOUTH AVE,Margate City,NJ,39.32748651,-74.51186794,RES1,3001,,19,NE,2011,2011,3102,2,1,2394.101208,2394.101208,3505,NO,36.55,46.6,3,6.65,6106,113.253233,123.104139,132.797853,139.35725,I,Above,Gable,0,5701,,41.5734748,0,1.1,,,,1,1,,0.03,nav,1,2011,2,, 20948,NJBF000059405,320 N HUNTINGTON AVE,Margate City,NJ,39.33418976,-74.50631792,RES1,3001,,17,NE,1950,1950,3101,1,1,2005.104663,2005.104663,3505,NO,18.29,27.9,3,7,6110,113.278746,123.126079,132.825252,139.379552,I,Above,Hip,0,5701,,23.09672341,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 20949,NJBF000059479,111 N CLERMONT AVE,Margate City,NJ,39.33432616,-74.49812594,RES1,3001,,17,NE,1971,1971,3103,1,1,1362.895929,1362.895929,3505,NO,23.98,36.54,3,6.36,6112,113.457653,123.269685,132.97546,139.544236,I,Above,Hip,0,5701,,30.25951885,0,0,,,,1,1,,0.35,nav,1,1971,1,, 20950,NJBF000060253,214 N CLARENDON AVE,Margate City,NJ,39.33566229,-74.49911831,RES1,3001,,18,NE,1950,1950,3103,2,1,1326.755757,1326.755757,3505,NO,44.87,59.49,3,8.66,6106,113.417091,123.237093,132.942214,139.504731,I,Above,Gable,0,5701,,52.18073517,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20951,NJBF000054811,5 S SUMNER AVE,Margate City,NJ,39.32437892,-74.50832414,RES1,3001,,22,NE,2017,2017,3103,3,1,2313.290075,2313.290075,3505,NO,39,50.66,3,6.19,6106,113.376591,123.202154,132.897067,139.469316,I,Above,Hip,0,5701,,44.83184511,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 20952,NJBF000058580,219 N HANOVER AVE,Margate City,NJ,39.33255584,-74.5051124,RES1,3001,,17,NE,1963,1963,3101,1,1,1805.771903,1805.771903,3505,NO,25.19,36.78,3,8.39,6106,113.328533,123.165864,132.865655,139.427047,I,Above,Hip,0,5701,,30.9831212,0,0,,,,1,1,,0.03,nav,1,1963,1,, 20953,NJBF000061084,215 N BELMONT DR,Margate City,NJ,39.33702917,-74.49792001,RES1,3001,,20,NE,2016,2016,3103,1,1,813.5496261,813.5496261,3505,NO,15.68,21.1,3,-2.64,6106,113.424595,123.24304,132.949351,139.508642,I,Above,Hip,0,5701,,18.38651891,0,0,,,,1,1,,0.03,nav,1,2016,1,, 20954,NJBF000056091,9 N MANSFIELD AVE,Margate City,NJ,39.32770379,-74.50593427,RES1,3001,,18,NE,1930,1930,3102,2,1,1730.64848,1730.64848,3505,NO,32.69,44,3,0.29,6106,113.380243,123.206357,132.904244,139.475483,I,Above,Hip,0,5701,,38.34416003,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 20955,NJBF000057430,,Margate City,NJ,39.33056373,-74.51662972,RES1,3001,,NaN,NE,1982,0,3102,2,1,2420.82877,2420.82877,3505,NO,30.03,35.96,3,-0.96,6106,113.103701,122.985104,132.676795,139.218769,I,Above,Hip,0,5701,,32.99415451,0,0,,,,1,1,,0.03,nav,1,1982,2,, 20956,NJBF000055624,8308 ATLANTIC AVE,Margate City,NJ,39.32659816,-74.50165499,RES1,3001,,22,NE,2017,2017,3102,3,1,1855.435425,1855.435425,3505,NO,63.31,70.67,3,8.33,6106,113.490207,123.294534,132.995309,139.576829,I,Above,Flat,0,5701,,66.99276872,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 20957,NJBF000055564,12 N QUINCY AVE,Margate City,NJ,39.3264205,-74.508989,RES1,3001,,17,NE,1925,1925,3102,2,1,874.2536273,874.2536273,3505,NO,26.02,32.65,3,2.22,6106,113.331989,123.167086,132.862348,139.429837,I,Above,Gable,0,5701,,29.33477977,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20958,NJBF000054823,16 N HARDING AVE,Margate City,NJ,39.32440715,-74.51330301,RES1,3001,,17,NE,1955,1955,3101,1,1,1698.886848,1698.886848,3505,NO,14.74,26.76,3,1.66,6106,113.267336,123.114143,132.805779,139.367817,I,Above,Flat,0,5701,,20.75112229,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 20959,NJBF000057499,3 N FRANKLIN AVE,Margate City,NJ,39.33067653,-74.49863022,RES1,3001,,17,NE,1948,1948,3102,1,1,1112.52008,1112.52008,3505,NO,10.69,17.74,3,-1.37,6106,113.498055,123.30184,133.006395,139.585104,I,Above,Flat,0,5701,,14.21276537,0,0,,,,1,1,,0.03,nav,1,1948,1,, 20960,NJBF000057477,7901 VENTNOR AVE,Margate City,NJ,39.33063549,-74.49844717,RES1,3001,,NaN,NE,1948,0,3102,1,1,1499.551137,1499.551137,3505,NO,22.01,31.38,3,8.81,6106,113.50268,123.305556,133.010255,139.589405,I,Above,Flat,0,5701,,26.69398954,0,0,,,,1,1,,0.03,nav,1,1948,1,, 20961,NJBF000057685,30 N GRANVILLE AVE,Margate City,NJ,39.33099178,-74.50170385,RES1,3001,,17,NE,1932,1932,3102,2,1,1366.197395,1366.197395,3505,NO,31.78,41.5,3,7.18,6106,113.425895,123.243849,132.945947,139.518115,I,Above,Hip,0,5701,,36.6395229,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 20962,NJBF000059972,4 SEASIDE COURT,Margate City,NJ,39.33517457,-74.50822947,RES1,3001,,19,NE,1990,1990,3101,3,1,1435.336806,1435.336806,3505,NO,36.84,48.71,3,-0.84,6106,113.222627,123.081162,132.779075,139.326599,I,Above,Hip,0,5701,,42.77763318,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 20963,NJBF000057305,106 S BARCLAY AVE,Margate City,NJ,39.33033782,-74.49293745,RES1,3001,,23,NE,2003,2003,3102,3,1,2208.014225,2208.014225,3505,NO,59.82,67.64,3,5.72,6106,113.628139,123.406584,133.116095,139.705691,I,Above,Hip,0,5701,,63.72830099,0,0,,,,1,1,,0.03,nav,1,2003,3,, 20964,NJBF000057081,8712 FREMONT AVE,Margate City,NJ,39.32987824,-74.51145215,RES1,3001,,17,NE,1954,1954,3101,1,1,1396.351026,1396.351026,3505,NO,18.82,32.46,3,5.66,6106,113.227463,123.084214,132.778915,139.333997,I,Above,Flat,0,5701,,25.64278071,0,0,,,,1,1,,0.03,nav,1,1954,1,, 20965,NJBF000057182,201 N LANCASTER AVE,Margate City,NJ,39.33009252,-74.50730522,RES1,3001,,17,NE,1925,1925,3102,2,1,1291.019037,1291.019037,3505,NO,40.92,48.58,3,8.09,6106,113.315528,123.154986,132.852591,139.415878,I,Above,Gable,0,5701,,44.75236403,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 20966,NJBF000056927,23 S FRANKLIN AVE,Margate City,NJ,39.32955765,-74.49750307,COM1,3001,,19,ME,1940,1940,3401,2,1,1365.446252,1365.446252,3507,NO,39.19,46.79,1,2.39,6106,113.5388,123.334442,133.039644,139.623101,I,Above,Flat,0,NaN,,42.99352681,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 20967,NJBF000055231,,Margate City,NJ,39.32552165,-74.51658071,RES3B,3001,,NaN,E,1969,0,3303,3,1,2355.587704,2355.587704,3507,NO,49.13,55.09,1,-0.16,6106,113.179128,123.043663,132.733792,139.28673,I,Above,Flat,0,5701,,52.10777189,0,0,,,,1,1,,0.03,nav,1,1969,3,, 20968,NJBF000057132,210 N MANSFIELD AVE,Margate City,NJ,39.3299913,-74.50866192,RES1,3001,,17,NE,1952,1952,3101,1,1,1700.714835,1700.714835,3505,NO,13.42,23.4,3,-0.59,6106,113.287159,123.132176,132.828794,139.389517,I,Above,Hip,0,5701,,18.41121114,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 20969,NJBF000058683,5 N BRUNSWICK AVE,Margate City,NJ,39.33275565,-74.49517943,RES1,3001,,18,NE,1928,1928,3102,2,1,1251.245429,1251.245429,3505,NO,41.47,49.12,3,6.7,6106,113.544666,123.339607,133.04768,139.626479,I,Above,Hip,0,5701,,45.29623384,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 20970,NJBF000054643,9 S THURLOW AVE,Margate City,NJ,39.3239489,-74.50881308,RES1,3001,,18,NE,1950,1950,3102,2,1,2012.407297,2012.407297,3505,NO,34.42,44.31,3,2.04,6106,113.372256,123.198464,132.892852,139.464783,I,Above,Hip,0,5701,,39.36470179,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20971,NJBF000060551,705 N JEROME AVE,Margate City,NJ,39.33617513,-74.51104976,RES1,3001,,17,NE,1960,1960,3102,2,1,1780.902221,1780.902221,3505,NO,28.67,36.75,3,7.33,6106,113.146175,123.020001,132.716055,139.254759,I,Above,Gable,0,5701,,32.7115535,0,0,,,,1,1,,0.03,nav,1,1960,2,, 20972,NJBF000055523,121 N UNION AVE,Margate City,NJ,39.32632804,-74.51204579,RES1,3001,,17,NE,1961,1961,3102,2,1,1690.089065,1690.089065,3505,NO,35.87,44.89,3,-2.26,6106,113.266378,123.114254,132.807446,139.368728,I,Above,Gable,0,5701,,40.38074394,0,0,,,,1,1,,0.03,nav,1,1961,2,, 20973,NJBF000057002,204 N MANSFIELD AVE,Margate City,NJ,39.32971667,-74.5084266,RES1,3001,,17,NE,1940,1940,3101,1,1,1243.683049,1243.683049,3505,NO,16.25,27.98,3,-1.4,6106,113.296288,123.139439,132.836147,139.397996,I,Above,Hip,0,5701,,22.11450491,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 20974,NJBF000062015,619 N HUNTINGTON AVE,Margate City,NJ,39.33865233,-74.50996199,RES1,3001,,18,NE,1974,1974,3102,1,1,3907.273686,3907.273686,3505,NO,24.74,30.14,3,7.86,6106,113.135559,123.01139,132.708301,139.241072,I,Above,Flat,0,5701,,27.43815519,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 20975,NJBF000053986,11 N JEFFERSON AVE,Margate City,NJ,39.32200217,-74.51600454,RES1,3001,,18,NE,1954,1954,3102,2,2,1280.080796,1280.080796,3507,NO,35.17,44.27,1,0.69,6106,113.244424,123.094327,132.783226,139.343378,I,Above,Hip,0,5701,,39.71814206,0,0,,,,1,1,,0.03,nav,1,1954,2,, 20976,NJBF000053678,23 N COOLIDGE AVE,Margate City,NJ,39.32085413,-74.51882717,RES1,3001,,17,NE,1923,1923,3102,2,1,963.9539654,963.9539654,3507,NO,23.19,29.97,1,1.15,6106,113.200447,123.058061,132.74478,139.300622,I,Above,Flat,0,5701,,26.58021544,0,1.2,,,,1,1,,0.03,nav,1,1923,2,, 20977,NJBF000060133,201 N BRUNSWICK DR,Margate City,NJ,39.33545763,-74.4980661,RES1,3001,,17,NE,1946,1946,3103,2,1,981.325019,981.325019,3505,NO,25.62,32.21,3,3.33,6106,113.443169,123.258046,132.964046,139.528975,I,Above,Gable,0,5701,,28.9132351,0,0,,,,1,1,,0.03,nav,1,1946,2,, 20978,NJBF000055467,8302 SALEM RD,Margate City,NJ,39.32617654,-74.50126665,RES1,3001,,19,NE,1950,1950,3102,2,1,2867.541961,2867.541961,3505,NO,33.81,40.13,3,6.81,6106,113.504832,123.306179,133.007106,139.590023,I,Above,Hip,0,5701,,36.96896781,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 20979,NJBF000057322,14 N GRANVILLE AVE,Margate City,NJ,39.33036189,-74.50111723,RES1,3001,,17,NE,1945,1945,3102,2,1,1268.612627,1268.612627,3505,NO,36.22,48.65,3,1.62,6106,113.447811,123.261362,132.963771,139.538626,I,Above,Hip,0,5701,,42.43580687,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 20980,NJBF000057978,208 N JASPER AVE,Margate City,NJ,39.331488,-74.50628227,RES1,3001,,17,NE,1955,1955,3101,1,1,1407.505095,1407.505095,3505,NO,17.16,22.19,3,0.06,6106,113.317997,123.15725,132.855942,139.417864,I,Above,Gable,0,5701,,19.67687625,0,0,,,,1,1,,0.03,nav,1,1955,1,, 20981,NJBF000055847,213 N VENDOME AVE,Margate City,NJ,39.32710877,-74.51376033,RES1,3001,,17,NE,1925,1925,3101,1,1,1375.961553,1375.961553,3505,NO,26.11,34.12,3,8.54,6106,113.21733,123.075122,132.767514,139.323585,I,Above,Gable,0,5701,,30.11769138,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 20982,NJBF000054830,214 N JEFFERSON AVE,Margate City,NJ,39.32441781,-74.5187616,RES3B,3001,,NaN,ME,1956,1954,3301,2,4,2165.024078,2165.024078,3505,NO,42.75,56.56,3,6.2,6106,113.148033,123.018024,132.706488,139.256579,I,Above,Hip,0,5701,,49.65299703,0,0,,,,1,1,,0.03,nav,1,1956,2,, 20983,NJBF000055038,8703 ATLANTIC AVE,Margate City,NJ,39.32496383,-74.50605295,RES1,3001,,20,NE,1923,1923,3103,3,1,1699.854587,1699.854587,3505,NO,44.46,55.14,3,5.83,6106,113.417674,123.235506,132.932285,139.508068,I,Above,Hip,0,5701,,49.79714607,0,1.2,,,,1,1,,0.03,nav,1,1923,3,, 20984,NJBF000059219,110 N DELAVAN AVE,Margate City,NJ,39.33379228,-74.49883382,RES1,3001,,18,NE,1950,1950,3103,2,1,929.3810922,929.3810922,3505,NO,34.33,45.41,3,1.88,6110,113.449519,123.263129,132.968204,139.537544,I,Above,Gable,0,5701,,39.86677782,0,0,,,,1,1,,0.35,nav,1,1950,2,, 20985,NJBF000055951,3 N MANSFIELD AVE,Margate City,NJ,39.3273574,-74.50560966,RES1,3001,,17,NE,1951,1951,3102,2,1,1907.64309,1907.64309,3505,NO,30.25,41.91,3,1.36,6106,113.3924,123.216029,132.914037,139.486591,I,Above,Hip,0,5701,,36.07817297,0,0.1,,,,1,1,,0.03,nav,1,1951,2,, 20986,NJBF000059913,117 N BRUNSWICK AVE,Margate City,NJ,39.3350698,-74.49734385,RES1,3001,,17,NE,1960,1960,3102,2,1,1398.566452,1398.566452,3505,NO,22.76,37.15,3,-0.66,6110,113.464519,123.27521,132.981784,139.54924,I,Above,Flat,0,5701,,29.95492048,0,0,,,,1,1,,0.35,nav,1,1960,2,, 20987,NJBF000059429,7702 MONMOUTH AVE,Margate City,NJ,39.3342265,-74.49877761,RES1,3001,,17,NE,1960,1960,3103,2,1,1492.324384,1492.324384,3505,NO,26.79,34.25,3,-2.23,6106,113.444665,123.259244,132.964443,139.532459,I,Above,Hip,0,5701,,30.51751173,0,0,,,,1,1,,0.03,nav,1,1960,2,, 20988,NJBF000056019,,Margate City,NJ,39.32753236,-74.51503782,RES1,3001,,NaN,NE,1969,0,3102,2,1,855.3833277,855.3833277,3505,NO,31.09,45.67,3,-1.93,6106,113.183101,123.047774,132.739532,139.291927,I,Above,Gable,0,5701,,38.37906026,0,0,,,,1,1,,0.03,nav,1,1969,2,, 20989,NJBF000058518,,Margate City,NJ,39.33245483,-74.50626327,RES1,3001,,NaN,NE,1969,0,3101,1,1,692.5613626,692.5613626,3505,NO,21.54,31.64,3,5.52,6106,113.3046,123.146645,132.845556,139.404943,I,Above,Hip,0,5701,,26.59167155,0,0,,,,1,1,,0.03,nav,1,1969,1,, 20990,NJBF000061407,419 N DOUGLAS AVE,Margate City,NJ,39.33758435,-74.50284038,RES1,3001,,18,NE,1965,1965,3102,2,1,1269.348062,1269.348062,3505,NO,29.93,37.36,3,1.91,6110,113.308086,123.149531,132.851753,139.401221,I,Above,Gable,0,5701,,33.64541744,0,0,,,,1,1,,0.35,nav,1,1965,2,, 20991,NJBF000058979,16 WEST DRIVE,Margate City,NJ,39.33329629,-74.49520389,RES1,3001,,18,NE,1925,1925,3102,2,1,1315.578358,1315.578358,3505,NO,33.77,40.83,3,7.93,6106,113.536536,123.333097,133.041262,139.618251,I,Above,Hip,0,5701,,37.30193008,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 20992,NJBF000057733,32 N GRANVILLE AVE,Margate City,NJ,39.3310635,-74.5017985,RES1,3001,,18,NE,1947,1947,3102,2,1,1468.069237,1468.069237,3505,NO,45.28,51.17,3,7.59,6106,113.422791,123.241365,132.943405,139.515209,I,Above,Hip,0,5701,,48.22259171,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 20993,NJBF000056591,9 N JEROME AVE,Margate City,NJ,39.32881617,-74.50403973,RES1,3001,,17,NE,1943,1943,3102,2,1,1497.583821,1497.583821,3505,NO,32.66,39.17,3,7.56,6106,113.405734,123.227178,132.926842,139.499561,I,Above,Hip,0,5701,,35.91793675,0,1.1,,,,1,1,,0.03,nav,1,1943,2,, 20994,NJBF000057423,305 N NASSAU AVE,Margate City,NJ,39.330543,-74.509569,RES1,3001,,19,NE,2012,2012,3102,3,1,1062.307301,1062.307301,3505,NO,55.48,68.9,3,3.89,6106,113.259236,123.109889,132.806022,139.36353,I,Above,Gable,0,5701,,62.18909747,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 20995,NJBF000055656,208 N VENDOME AVE,Margate City,NJ,39.32667208,-74.51382458,RES1,3001,,17,NE,1935,1935,3102,2,1,1019.814571,1019.814571,3505,NO,41.7,47.43,3,7.84,6106,113.222352,123.078979,132.771177,139.327973,I,Above,Gable,0,5701,,44.56463822,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 20996,NJBF000055045,9200 MONMOUTH AVE,Margate City,NJ,39.32497578,-74.51551582,RES3B,3003,,22,ME,1961,1961,3301,1,1,4821.915351,4821.915351,3505,NO,15.29,29.11,3,-1.97,6106,113.210525,123.068669,132.759199,139.315491,I,Above,Flat,0,5701,,22.20180157,0,0,,,,1,1,,0.03,nav,1,1961,1,, 20997,NJBF000057090,8015 VENTNOR AVE,Margate City,NJ,39.3299045,-74.4998325,RES1,3001,,NaN,NE,1955,1955,3102,1,1,2521.663359,2521.663359,3505,NO,17.24,29.02,3,5.67,6106,113.48263,123.289289,132.992624,139.570993,I,Above,Flat,0,5701,,23.12882217,0,0,,,,1,1,,0.03,nav,1,1955,1,, 20998,NJBF000057951,19 S BARCLAY AVE,Margate City,NJ,39.33143151,-74.49336483,RES1,3001,,19,NE,1930,1930,3102,2,1,1280.224016,1280.224016,3505,NO,38.21,52.02,3,1.2,6106,113.603261,123.386679,133.096093,139.68195,I,Above,Hip,0,5701,,45.11691368,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 20999,NJBF000055925,13 S JEROME AVE,Margate City,NJ,39.32729958,-74.50245178,RES1,3001,,22,NE,2015,2015,3102,3,1,1212.773942,1212.773942,3505,NO,40.08,49.77,3,3.83,6106,113.462537,123.272467,132.972865,139.551661,I,Above,Hip,0,5701,,44.92345819,0,0,,,,1,1,,0.03,nav,1,2015,3,, 21000,NJBF000057829,14 N EXETER AVE,Margate City,NJ,39.3312409,-74.49876877,RES1,3001,,18,NE,1925,1925,3102,2,1,1123.174284,1123.174284,3505,NO,35.44,45.26,3,8.59,6106,113.486978,123.293013,132.997594,139.574582,I,Above,Hip,0,5701,,40.35015454,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21001,NJBF000058638,8200 AMHERST AVE,Margate City,NJ,39.33265405,-74.50494315,RES1,3001,,17,NE,1950,1950,3102,2,1,1343.14269,1343.14269,3505,NO,34.26,40.85,3,5.29,6106,113.330865,123.167747,132.867686,139.429136,I,Above,Hip,0,5701,,37.55319249,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21002,NJBF000062263,507 N DELAVAN AVE,Margate City,NJ,39.3391098,-74.50351173,RES1,3001,,18,NE,1962,1962,3102,2,1,1946.308752,1946.308752,3505,NO,39.31,44.92,3,3.32,6106,113.272124,123.12053,132.822277,139.364989,I,Above,Gable,0,5701,,42.11604857,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 21003,NJBF000054841,9500-06 AMHERST AVE,Margate City,NJ,39.32445724,-74.51899211,RES3B,3001,,20,ME,1956,1956,3301,1,1,1198.699107,1198.699107,3505,NO,17.15,28.3,3,2.57,6106,113.142433,123.013534,132.70189,139.251391,I,Above,Gable,0,5701,,22.72278471,0,0,,,,1,1,,0.03,nav,1,1956,1,, 21004,NJBF000053667,19 S JEFFERSON AVE,Margate City,NJ,39.32081561,-74.51453311,RES1,3001,,19,NE,1940,1940,3102,3,2,1037.728923,1037.728923,3507,NO,48.48,53.94,1,-0.42,6106,113.294338,123.133885,132.823052,139.387944,I,Above,Gable,0,5701,,51.21072023,0,0,,,,1,1,,0.03,nav,1,1940,3,, 21005,NJBF000053645,19 S JEFFERSON AVE,Margate City,NJ,39.3207326,-74.51471674,RES1,3001,,19,NE,1940,1940,3102,3,2,996.2538626,996.2538626,3507,NO,53.45,62.88,1,0.64,6106,113.291589,123.131612,132.820624,139.385254,I,Above,Gable,0,5701,,58.16399316,0,0,,,,1,1,,0.03,nav,1,1940,3,, 21006,NJBF000057714,4 N ESSEX AVE,Margate City,NJ,39.3310421,-74.49783658,RES1,3001,,NaN,NE,1960,1960,3102,2,1,991.1101993,991.1101993,3505,NO,30.49,40.62,3,1.2,6106,113.510324,123.311771,133.017097,139.596302,I,Above,Hip,0,5701,,35.55612554,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 21007,NJBF000061926,401 N ARGYLE AVE,Margate City,NJ,39.33849387,-74.49845982,RES1,3001,,17,NE,1989,1989,3103,2,1,2349.39017,2349.39017,3505,NO,40.06,47.38,3,5,6106,113.392461,123.217074,132.923023,139.475768,I,Above,Hip,0,5701,,43.7189166,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 21008,NJBF000057379,123 N JEROME AVE,Margate City,NJ,39.33047055,-74.50559047,RES1,3001,,17,NE,1958,1958,3102,2,1,1752.625652,1752.625652,3507,NO,26.65,37.51,1,1.5,6106,113.347816,123.181006,132.879964,139.445826,I,Above,Gable,0,5701,,32.07986145,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 21009,NJBF000059773,73 SEASIDE COURT,Margate City,NJ,39.33482274,-74.50761502,RES1,3001,,19,NE,1998,1998,3101,3,1,1540.872156,1540.872156,3505,NO,45.17,52.2,3,-1.38,6110,113.24116,123.095993,132.794304,139.344129,I,Above,Hip,0,5701,,48.68563566,0,0,,,,1,1,,0.35,nav,1,1998,3,, 21010,NJBF000056731,410 N UNION AVE,Margate City,NJ,39.32913088,-74.51527394,RES1,3001,,17,NE,1955,1955,3101,1,1,1240.820205,1240.820205,3505,NO,21.34,29.37,3,2.07,6106,113.154427,123.025342,132.717451,139.265851,I,Above,Hip,0,5701,,25.35346333,0,0,,,,1,1,,0.03,nav,1,1955,1,, 21011,NJBF000058183,307 N KENYON AVE,Margate City,NJ,39.3318525,-74.507998,RES1,3001,,17,NE,1960,1960,3102,2,1,1449.42509,1449.42509,3505,NO,32.41,39.96,3,5.62,6106,113.274989,123.122795,132.820325,139.377805,I,Above,Hip,0,5701,,36.18147587,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 21012,NJBF000054343,15 S CEDAR GROVE AVE,Margate City,NJ,39.32311118,-74.51110759,RES1,3001,,20,NE,1946,1946,3102,2,1,1997.182868,1997.182868,3505,NO,24.17,38.33,3,-2.35,6106,113.334562,123.167666,132.860132,139.428732,I,Above,Gable,0,5701,,31.24948464,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 21013,NJBF000058338,209 N HANOVER AVE,Margate City,NJ,39.33212733,-74.50472065,RES1,3001,,19,NE,2006,2006,3102,3,1,1225.199496,1225.199496,3505,NO,49.9,60.94,3,0.73,6106,113.343259,123.177629,132.87763,139.440967,I,Above,Gable,0,5701,,55.42269077,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 21014,NJBF000060642,207 N BRUNSWICK DR,Margate City,NJ,39.33632432,-74.49829019,RES1,3001,,17,NE,1950,1950,3103,2,1,1338.649331,1338.649331,3505,NO,26.06,32.66,3,-2.32,6106,113.426181,123.244365,132.950279,139.511692,I,Above,Gable,0,5701,,29.35728742,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21015,NJBF000056360,7 S HANOVER AVE,Margate City,NJ,39.328307,-74.5010665,RES1,3001,,18,NE,1925,1925,3102,2,1,1654.390203,1654.390203,3505,NO,31.99,39.04,3,-2.67,6106,113.478422,123.285539,132.98738,139.566886,I,Above,Gable,0,5701,,35.51059428,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21016,NJBF000056542,7904 ATLANTIC AVE,Margate City,NJ,39.32869817,-74.49745818,RES1,3001,,19,NE,1925,1925,3102,2,1,1844.813502,1844.813502,3505,NO,40.22,53.65,3,1.87,6106,113.552087,123.344963,133.049937,139.635327,I,Above,Flat,0,5701,,46.93111499,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21017,NJBF000053897,9010 ATLANTIC AVE,Margate City,NJ,39.32170318,-74.50970728,RES3E,3001,,21,ME,1955,1955,3301,1,1,22863.68172,22863.68172,3507,NO,13.53,26.27,1,2.39,6106,113.386133,123.208514,132.901236,139.474483,I,Above,Flat,0,5701,,19.9023143,0,0,,,,1,1,,0.03,nav,1,1955,1,, 21018,NJBF000057442,15 S CLERMONT AVE,Margate City,NJ,39.33058383,-74.4948618,RES1,3001,,21,NE,2007,2007,3102,2,1,1512.389631,1512.389631,3505,NO,46.9,55.64,3,8.98,6106,113.582302,123.369671,133.077492,139.663157,I,Above,Flat,0,5701,,51.27197507,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 21019,NJBF000055935,16 S JASPER AVE,Margate City,NJ,39.32732921,-74.50220265,RES1,3001,,17,NE,1945,1945,3102,2,1,2558.331018,2558.331018,3505,NO,40.87,54.16,3,6.52,6106,113.467582,123.276538,132.977142,139.556359,I,Above,Hip,0,5701,,47.51243615,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 21020,NJBF000057826,408 N NASSAU AVE,Margate City,NJ,39.33123306,-74.51077174,RES1,3001,,20,NE,1997,1997,3102,2,1,1842.22495,1842.22495,3505,NO,42.15,51.32,3,8.5,6106,113.222809,123.080814,132.776297,139.329553,I,Above,Hip,0,5701,,46.73260634,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 21021,NJBF000054743,9104 JEFFERSON CT,Margate City,NJ,39.32420692,-74.51266347,RES1,3001,,20,NE,1969,2018,3102,2,1,759.2505167,759.2505167,3505,NO,30.55,43.88,3,3.75,6106,113.284292,123.127704,132.819657,139.38337,I,Above,Flat,0,5701,,37.21563724,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21022,NJBF000056867,123 N MANSFIELD AVE,Margate City,NJ,39.32942404,-74.50756127,RES1,3001,,17,NE,1945,1945,3101,1,1,1253.832818,1253.832818,3505,NO,16.54,29.33,3,4.7,6106,113.319563,123.158062,132.855302,139.419606,I,Above,Flat,0,5701,,22.93788097,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 21023,NJBF000060769,403 N DOUGLAS AVE,Margate City,NJ,39.336518,-74.501828,RES1,3001,,18,NE,1962,1962,3102,2,1,1635.36149,1635.36149,3505,NO,37.73,43.54,3,5,6106,113.345278,123.179427,132.882382,139.437373,I,Above,Hip,0,5701,,40.63318091,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 21024,NJBF000060868,402 N DELAVAN AVE,Margate City,NJ,39.33667164,-74.50165852,RES1,3001,,17,NE,1952,1952,3102,2,1,2118.97839,2118.97839,3505,NO,25.7,38.26,3,3.32,6106,113.346873,123.180696,132.883804,139.438535,I,Above,Hip,0,5701,,31.98219301,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 21025,NJBF000059137,3 CIRCLE DRIVE,Margate City,NJ,39.33362415,-74.49437057,RES1,3001,,18,NE,1930,1930,3102,2,1,1469.931835,1469.931835,3505,NO,35.08,46.85,3,-0.85,6106,113.550308,123.344201,133.05319,139.630358,I,Above,Gable,0,5701,,40.96384412,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 21026,NJBF000058039,300 N JEROME AVE,Margate City,NJ,39.33159311,-74.50743266,RES1,3001,,17,NE,1964,1964,3102,2,1,1390.50149,1390.50149,3505,NO,38.38,50.97,3,8.1,6106,113.291144,123.135714,132.833592,139.392906,I,Above,Hip,0,5701,,44.67703156,0,0,,,,1,1,,0.03,nav,1,1964,2,, 21027,NJBF000058056,7701 VENTNOR AVE,Margate City,NJ,39.33163904,-74.49642994,RES1,3001,,NaN,NE,1966,1966,3102,1,1,1548.625137,1548.625137,3505,NO,19.86,32.61,3,1.55,6106,113.532849,123.329983,133.036683,139.616745,I,Above,Hip,0,5701,,26.23473412,0,0,,,,1,1,,0.03,nav,1,1966,1,, 21028,NJBF000057968,28 N FRONTENAC AVE,Margate City,NJ,39.33147128,-74.50018017,RES1,3001,,17,NE,1961,1961,3102,2,1,1919.94457,1919.94457,3505,NO,31,40.59,3,7.96,6106,113.452637,123.265422,132.96888,139.542659,I,Above,Gable,0,5701,,35.79390429,0,0,,,,1,1,,0.03,nav,1,1961,2,, 21029,NJBF000056441,112 N NASSAU AVE,Margate City,NJ,39.32847625,-74.50814687,RES1,3001,,21,NE,2013,2013,3102,2,1,2247.00957,2247.00957,3505,NO,35.31,45.04,3,8.23,6106,113.320436,123.158497,132.855041,139.420211,I,Above,Hip,0,5701,,40.17779541,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 21030,NJBF000053760,,Margate City,NJ,39.32116163,-74.51011502,RES3F,3002,,NaN,E,1973,0,3305,5,1,20016.68731,20016.68731,3507,NO,55.11,65.92,1,-0.28,6106,113.385329,123.207563,132.899734,139.472863,I,Above,Flat,0,NaN,,60.51677473,0,0,,,,2,2,,0.03,nav,1,1973,5,, 21031,NJBF000055507,2 S MANSFIELD AVE,Margate City,NJ,39.32627057,-74.50511281,RES1,3001,,19,NE,1925,1925,3102,2,1,1790.741916,1790.741916,3505,NO,28.75,42.94,3,0.08,6106,113.419128,123.237176,132.935164,139.510653,I,Above,Hip,0,5701,,35.84774896,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21032,NJBF000055458,3 S NASSAU AVE,Margate City,NJ,39.32615208,-74.50518294,RES1,3001,,18,NE,1925,1925,3102,2,1,552.304896,552.304896,3505,NO,41.73,52.44,3,7.2,6106,113.419332,123.237297,132.935188,139.510743,I,Above,Hip,0,5701,,47.0867572,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21033,NJBF000058939,14 S COLMAR CIRCLE,Margate City,NJ,39.3332113,-74.50460637,RES1,3001,,17,NE,1960,1960,3101,1,1,1819.513673,1819.513673,3505,NO,12.3,26.1,3,0.44,6106,113.330387,123.167421,132.867722,139.428245,I,Above,Hip,0,5701,,19.20305478,0,0,,,,1,1,,0.03,nav,1,1960,1,, 21034,NJBF000057610,8307 MONMOUTH AVE,Margate City,NJ,39.33087557,-74.50597527,RES1,3001,,17,NE,1955,1955,3102,2,1,1435.426404,1435.426404,3505,NO,36.35,47.66,3,2.81,6106,113.333528,123.16961,132.868384,139.432477,I,Above,Gable,0,5701,,42.00185869,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 21035,NJBF000053677,9510 VENTNOR AVE,Margate City,NJ,39.32085351,-74.51620066,COM3,3003,,NaN,ME,1952,1952,3401,1,1,2306.809476,2306.809476,3507,NO,18.38,26.93,1,1.38,6106,113.257494,123.104151,132.792347,139.353759,I,Above,Flat,0,NaN,,22.65210075,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21036,NJBF000053696,9506 VENTNOR AVE,Margate City,NJ,39.32091372,-74.51607929,RES3C,3001,,21,ME,1963,1963,3301,2,1,1930.686722,1930.686722,3505,NO,26.97,34.24,3,-2.23,6106,113.259239,123.105599,132.793898,139.35548,I,Above,Flat,0,NaN,,30.60264141,0,0,,,,1,1,,0.03,nav,1,1963,2,, 21037,NJBF000055581,8407 ATLANTIC AVE,Margate City,NJ,39.326488,-74.5030945,RES1,3001,,19,NE,1950,1950,3102,2,1,1344.963426,1344.963426,3505,NO,28.67,37.16,3,1.49,6106,113.460218,123.270341,132.969945,139.548942,I,Above,Flat,0,5701,,32.91313731,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21038,NJBF000059398,106 N CLARENDON AVE,Margate City,NJ,39.33417567,-74.49770355,RES1,3001,,19,NE,2004,2004,3103,3,1,1256.691381,1256.691381,3505,NO,46.31,58.57,3,5.67,6106,113.469065,123.278856,132.984971,139.55495,I,Above,Gable,0,5701,,52.44149619,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21039,NJBF000054760,3 N WILSON AVE,Margate City,NJ,39.32424997,-74.51182706,RES1,3001,,17,NE,1950,1950,3102,2,1,2221.452601,2221.452601,3505,NO,18.77,29.1,3,-2.79,6106,113.301918,123.141927,132.834433,139.399812,I,Above,Gable,0,5701,,23.93583937,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 21040,NJBF000060643,306 N CLARENDON AVE,Margate City,NJ,39.33632478,-74.49976129,RES1,3001,,17,NE,1950,1950,3103,2,1,1843.541889,1843.541889,3505,NO,22.27,30.47,3,-2.37,6106,113.393657,123.218251,132.922905,139.482004,I,Above,Gable,0,5701,,26.37090471,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21041,NJBF000062450,19 BAYCREST DRIVE,Margate City,NJ,39.3394876,-74.50823929,RES1,3001,,18,NE,1978,1978,3102,2,1,2043.897052,2043.897052,3505,NO,41.38,52.3,3,6.49,6106,113.162153,123.032522,132.730662,139.263764,I,Above,Gable,0,5701,,46.84081584,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 21042,NJBF000055870,7 S KENYON AVE,Margate City,NJ,39.32716503,-74.50378154,RES1,3001,,21,NE,2012,2012,3102,2,1,1559.382158,1559.382158,3505,NO,28.66,37.78,3,5.96,6106,113.435305,123.250501,132.949819,139.526311,I,Above,Gable,0,5701,,33.22005856,0,1.2,,,,1,1,,0.03,nav,1,2012,2,, 21043,NJBF000054342,113 S RUMSON AVE,Margate City,NJ,39.32310814,-74.5061841,RES1,3001,,21,NE,1936,1936,3102,2,1,2039.579122,2039.579122,3505,NO,28.65,37.59,3,6.37,6106,113.442167,123.254433,132.950307,139.528427,I,Above,Hip,0,5701,,33.12306534,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 21044,NJBF000053727,9506 VENTNOR AVE,Margate City,NJ,39.32105517,-74.51583526,RES3C,3001,,21,ME,1963,1963,3301,2,1,2007.391258,2007.391258,3505,NO,29.88,39.78,3,6.59,6106,113.262412,123.108254,132.796769,139.35866,I,Above,Gable,0,NaN,,34.83224491,0,0,,,,1,1,,0.03,nav,1,1963,2,, 21045,NJBF000053697,9506 VENTNOR AVE,Margate City,NJ,39.32091527,-74.51570152,RES3C,3001,,21,ME,1963,1963,3301,2,1,1942.234665,1942.234665,3505,NO,23.3,30.89,3,2.25,6106,113.26742,123.112208,132.800728,139.363091,I,Above,Gable,0,NaN,,27.09149943,0,0,,,,1,1,,0.03,nav,1,1963,2,, 21046,NJBF000055807,8307 ATLANTIC AVE,Margate City,NJ,39.32702733,-74.50193299,RES1,3001,,18,NE,1950,1950,3102,2,1,1616.935155,1616.935155,3505,NO,33.05,40.85,3,8.44,6106,113.477884,123.284743,132.985454,139.565721,I,Above,Hip,0,5701,,36.9485698,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 21047,NJBF000055849,8307 ATLANTIC AVE,Margate City,NJ,39.32712149,-74.50202167,RES1,3001,,18,NE,1950,1950,3102,2,1,569.968638,569.968638,3505,NO,44.02,51.03,3,6.97,6106,113.474569,123.282101,132.982775,139.562708,I,Above,Hip,0,5701,,47.5246763,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 21048,NJBF000060731,28 W GILMAR CIRCLE,Margate City,NJ,39.33646249,-74.50753684,RES1,3001,,17,NE,1971,1971,3101,2,1,1214.716177,1214.716177,3505,NO,33.79,39.72,3,6.16,6106,113.219817,123.078916,132.777455,139.322255,I,Above,Hip,0,5701,,36.75650428,0,0,,,,1,1,,0.03,nav,1,1971,2,, 21049,NJBF000056489,20 N KENYON AVE,Margate City,NJ,39.32858805,-74.50538989,RES1,3001,,17,NE,1948,1948,3101,2,1,1559.298593,1559.298593,3505,NO,36.24,45.11,3,6.04,6106,113.379367,123.205912,132.904486,139.475014,I,Above,Gable,0,5701,,40.6749563,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 21050,NJBF000056305,123 N QUINCY AVE,Margate City,NJ,39.32818665,-74.51005625,RES1,3001,,19,NE,1998,1998,3102,2,1,1546.685098,1546.685098,3505,NO,38.4,45.21,3,1.3,6106,113.282737,123.128103,132.823241,139.385042,I,Above,Hip,0,5701,,41.80653961,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 21051,NJBF000061415,7511 FREMONT AVE,Margate City,NJ,39.33760131,-74.49964116,RES1,3001,,17,NE,1954,1954,3103,2,1,1848.140531,1848.140531,3505,NO,36.8,46.29,3,4.12,6106,113.37863,123.20609,132.910963,139.465499,I,Above,Gable,0,5701,,41.54485306,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21052,NJBF000057449,23 N HAVERFORD AVE,Margate City,NJ,39.33059399,-74.50164388,RES1,3001,,17,NE,1938,1938,3102,2,1,1771.690959,1771.690959,3505,NO,35.03,45.25,3,4.77,6106,113.432897,123.249411,132.951456,139.524739,I,Above,Hip,0,5701,,40.13706153,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 21053,NJBF000056057,,Margate City,NJ,39.32763353,-74.50465997,REL1,3004,,NaN,ME,1969,0,3401,1,1,10578.73861,10578.73861,3507,NO,19.02,24.05,1,1.21,6106,113.409225,123.229655,132.928468,139.502366,I,Above,Flat,0,5701,,21.53597958,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21054,NJBF000056742,17 S FRONTENAC AVE,Margate City,NJ,39.32915267,-74.49807311,RES1,3001,,17,NE,1922,1922,3102,2,2,1315.344358,1315.344358,3505,NO,34.67,40.3,3,7.36,6106,113.532055,123.328926,133.033517,139.616832,I,Above,Hip,0,5701,,37.48542812,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 21055,NJBF000055699,9103 AMHERST AVE,Margate City,NJ,39.32676725,-74.5158065,RES1,3001,,49,NE,1950,1950,3102,2,2,1775.3837,1775.3837,3505,NO,42.45,48.96,3,7.26,6106,113.177587,123.043014,132.734056,139.286302,I,Above,Gable,0,5701,,45.70150736,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21056,NJBF000058856,21 N CLARENDON AVE,Margate City,NJ,39.3330695,-74.4961905,RES1,3001,,18,NE,1939,1939,3102,2,1,561.0067542,561.0067542,3505,NO,36.65,43.83,3,0.34,6106,113.51797,123.31814,133.025376,139.601503,I,Above,Gable,0,5701,,40.2388444,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 21057,NJBF000055118,107 S MANSFIELD AVE,Margate City,NJ,39.3251929,-74.50366002,RES1,3001,,20,NE,1921,1921,3102,2,1,1695.526101,1695.526101,3505,NO,24.14,37.72,3,-0.19,6106,113.466727,123.275121,132.973785,139.553763,I,Above,Gable,0,5701,,30.93380536,0,0,,,,1,1,,0.03,nav,1,1921,2,, 21058,NJBF000060378,8093 FULTON AVE,Margate City,NJ,39.33588079,-74.50534718,RES1,3001,,17,NE,1957,1957,3101,2,1,1773.051501,1773.051501,3505,NO,24.99,32.17,3,-2.81,6106,113.27638,123.124224,132.82434,139.375202,I,Above,Hip,0,5701,,28.57605585,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 21059,NJBF000060887,315 N CLERMONT AVE,Margate City,NJ,39.33670183,-74.5003808,RES1,3001,,17,NE,1958,1958,3102,2,1,3229.348569,3229.348569,3505,NO,28.05,33.2,3,4.6,6106,113.374714,123.203027,132.907197,139.463927,I,Above,Hip,0,5701,,30.62326119,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 21060,NJBF000062076,1 HARBOUR LANE,Margate City,NJ,39.33875592,-74.50979275,RES1,3001,,18,NE,1978,1978,3102,2,1,2128.128063,2128.128063,3505,NO,23.9,30.29,3,2.41,6106,113.137858,123.013214,132.710244,139.242985,I,Above,Gable,0,5701,,27.09259346,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 21061,NJBF000062151,3 HARBOUR LANE,Margate City,NJ,39.33889004,-74.50957416,RES1,3001,,18,NE,1980,1980,3102,2,1,3182.376882,3182.376882,3505,NO,47.28,55.89,3,8.42,6106,113.140848,123.015587,132.712772,139.245472,I,Above,Flat,0,5701,,51.58072012,0,0,,,,1,1,,0.03,nav,1,1980,2,, 21062,NJBF000056325,308 N UNION AVE,Margate City,NJ,39.32821528,-74.51444539,RES1,3001,,17,NE,1950,1950,3102,2,1,1770.349098,1770.349098,3505,NO,35.22,49.16,3,-0.19,6106,113.186047,123.050409,132.742744,139.295011,I,Above,Hip,0,5701,,42.19056211,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21063,NJBF000056913,103 S DOUGLAS AVE,Margate City,NJ,39.32952532,-74.49545761,RES1,3001,,18,NE,1930,1930,3102,2,1,1371.125569,1371.125569,3505,NO,37.31,48.92,3,6.74,6106,113.584241,123.371048,133.07803,139.665223,I,Above,Gable,0,5701,,43.11637091,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 21064,NJBF000062078,7809 MARSHALL AVE,Margate City,NJ,39.33876411,-74.50561952,RES1,3001,,18,NE,1973,1973,3102,2,1,1656.21481,1656.21481,3505,NO,34.14,41.39,3,-2.03,6106,113.230198,123.087031,132.787121,139.327535,I,Above,Gable,0,5701,,37.76529135,0,0,,,,1,1,,0.03,nav,1,1973,2,, 21065,NJBF000056163,310 N VENDOME AVE,Margate City,NJ,39.32786449,-74.51500252,RES1,3001,,21,NE,2016,2016,3102,3,1,1708.190584,1708.190584,3505,NO,48.76,56.22,3,-2.65,6106,113.178977,123.044593,132.73648,139.288257,I,Above,Gable,0,5701,,52.49021712,0,0,,,,1,1,,0.03,nav,1,2016,3,, 21066,NJBF000056612,203 N PEMBROKE AVE,Margate City,NJ,39.32887145,-74.50983325,RES1,3001,,17,NE,1938,1938,3102,2,1,1074.946143,1074.946143,3505,NO,32.75,45.69,3,5.28,6106,113.277667,123.124244,132.819742,139.380548,I,Above,Hip,0,5701,,39.22301094,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 21067,NJBF000060300,8 S GILMAR CIRCLE,Margate City,NJ,39.33573721,-74.50611383,RES1,3001,,17,NE,1964,1964,3101,1,1,1490.694662,1490.694662,3505,NO,17.56,30.25,3,2.1,6106,113.261448,123.112263,132.811785,139.361666,I,Above,Hip,0,5701,,23.90275767,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 21068,NJBF000062470,603 N DOUGLAS AVE,Margate City,NJ,39.33952491,-74.50473465,RES1,3001,,18,NE,1966,1966,3102,2,1,1732.934362,1732.934362,3505,NO,22.86,28.39,3,-2.22,6106,113.239312,123.094202,132.794986,139.334115,I,Above,Gable,0,5701,,25.62759636,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 21069,NJBF000057525,16 S CLARENDON AVE,Margate City,NJ,39.33072518,-74.494741,RES1,3001,,18,NE,1948,1948,3102,2,1,1787.951572,1787.951572,3505,NO,38.15,48.38,3,-0.72,6106,113.582967,123.370228,133.078197,139.663701,I,Above,Hip,0,5701,,43.26562959,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 21070,NJBF000059627,8200 FULTON AVE,Margate City,NJ,39.33457374,-74.50684456,RES1,3001,,17,NE,1945,1945,3101,2,1,1201.059363,1201.059363,3505,NO,23.02,34.23,3,0.56,6106,113.261682,123.112424,132.811263,139.363368,I,Above,Hip,0,5701,,28.62698575,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 21071,NJBF000061491,302 N FREDERICKSBURG AVE,Margate City,NJ,39.33774129,-74.49709197,RES1,3001,,17,NE,1962,1962,3103,2,1,1179.114089,1179.114089,3505,NO,26.32,34.66,3,-0.12,6106,113.433081,123.249783,132.956887,139.514526,I,Above,Gable,0,5701,,30.49237161,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 21072,NJBF000057279,7838 VENTNOR AVE,Margate City,NJ,39.33028288,-74.49806595,COM1,3001,,NaN,ME,1986,1986,3401,2,1,2596.532582,2596.532582,3507,NO,29.57,36.68,1,-0.69,6106,113.516076,123.31628,133.021207,139.601929,I,Above,Flat,0,NaN,,33.12247196,0,0,,,,1,1,,0.03,nav,1,1986,2,, 21073,NJBF000056504,105 S FRANKLIN AVE,Margate City,NJ,39.32862406,-74.49690183,RES1,3001,,19,NE,1925,1925,3102,3,1,2452.529605,2452.529605,3505,NO,49.33,57.24,3,1.52,6106,113.565366,123.355646,133.061077,139.647619,I,Above,Hip,0,5701,,53.28705664,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 21074,NJBF000053463,9706 VENTNOR AVE,Margate City,NJ,39.32003676,-74.51740571,RES3C,3001,,20,ME,1954,1954,3301,2,1,3120.836145,3120.836145,3505,NO,26.09,36.29,3,-1.4,6106,113.24371,123.09246,132.779521,139.339555,I,Above,Flat,0,NaN,,31.1874364,0,0,,,,1,1,,0.03,nav,1,1954,2,, 21075,NJBF000059089,104 N DELAVAN AVE,Margate City,NJ,39.33352528,-74.49857068,RES1,3001,,20,NE,2007,2007,3103,3,1,1239.43966,1239.43966,3505,NO,58.08,70.06,3,2.25,6106,113.459072,123.270795,132.976045,139.546693,I,Above,Gable,0,5701,,64.06638346,0,0,,,,1,1,,0.03,nav,1,2007,3,, 21076,NJBF000057938,14 N ESSEX AVE,Margate City,NJ,39.33140763,-74.4981148,RES1,3001,,17,NE,1938,1938,3102,1,1,1370.980972,1370.980972,3505,NO,14.79,21.9,3,-2.31,6106,113.49901,123.302717,133.007897,139.585619,I,Above,Flat,0,5701,,18.34754176,0,1.2,,,,1,1,,0.03,nav,1,1938,1,, 21077,NJBF000057974,16 N ESSEX AVE,Margate City,NJ,39.3314833,-74.49819516,RES1,3001,,17,NE,1947,1947,3102,2,1,1008.832515,1008.832515,3505,NO,41.4,50.79,3,8.28,6106,113.496185,123.300454,133.005584,139.582957,I,Above,Flat,0,5701,,46.0938867,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 21078,NJBF000053359,2B S COOLIDGE AVE,Margate City,NJ,39.31963632,-74.51813053,RES1,3001,,22,NE,2001,2001,3102,2,1,1210.264005,1210.264005,3507,NO,34.28,40.01,1,-0.14,6106,113.234083,123.084391,132.770821,139.329887,I,Above,Gable,0,5701,,37.14396189,0,0,,,,1,1,,0.03,nav,1,2001,2,, 21079,NJBF000056476,9000 FREMONT AVE,Margate City,NJ,39.32855654,-74.51472293,RES1,3001,,17,NE,2015,2015,3101,1,1,1354.911461,1354.911461,3505,NO,21.91,32.43,3,8.38,6106,113.17493,123.041604,132.733876,139.284783,I,Above,Gable,0,5701,,27.16920924,0,0,,,,1,1,,0.03,nav,1,2015,1,, 21080,NJBF000056962,8105 VENTNOR AVE,Margate City,NJ,39.32962354,-74.50051983,RES1,3001,,18,NE,1937,1937,3102,2,1,538.2229847,538.2229847,3505,NO,34.66,42.98,3,-0.07,6106,113.471504,123.280278,132.982967,139.560691,I,Above,Hip,0,5701,,38.82230286,0,1.2,,,,1,1,,0.03,nav,1,1937,2,, 21081,NJBF000053643,9600 VENTNOR AVE,Margate City,NJ,39.320727,-74.51651,RES1,3001,738,NaN,NE,1950,1950,3102,2,1,1294.26795,1294.26795,3507,NO,23.91,30.32,1,-0.43,6106,113.252701,123.100195,132.788144,139.349091,I,Above,Flat,0,5701,,27.11339378,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21082,NJBF000054226,216 N COOLIDGE AVE,Margate City,NJ,39.32279927,-74.52119449,RES1,3001,,30,NE,1996,1996,3102,2,2,1708.003746,1708.003746,3507,NO,32.14,42.41,1,0.38,6106,113.119511,122.994016,132.680479,139.227917,I,Above,Gable,0,5701,,37.27595519,0,0,,,,1,1,,0.03,nav,1,1996,2,, 21083,NJBF000059386,107 N CLERMONT AVE,Margate City,NJ,39.33415122,-74.49797677,RES1,3001,,21,NE,2013,2013,3103,3,1,1625.879317,1625.879317,3505,NO,38.11,50.21,3,0.6,6110,113.463392,123.274294,132.980168,139.549779,I,Above,Hip,0,5701,,44.16039062,0,0,,,,1,1,,0.35,nav,1,2013,3,, 21084,NJBF000055765,104 N RUMSON AVE,Margate City,NJ,39.32691698,-74.51040001,RES1,3001,,17,NE,1950,1950,3102,2,1,2301.351144,2301.351144,3505,NO,46.47,56.72,3,7.67,6106,113.293775,123.136529,132.831013,139.394645,I,Above,Gable,0,5701,,51.59878623,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21085,NJBF000055687,120 N THURLOW AVE,Margate City,NJ,39.3267376,-74.51208353,RES1,3001,,17,NE,1962,1962,3102,2,1,1612.338258,1612.338258,3505,NO,23.51,37.71,3,-2.76,6106,113.259507,123.108893,132.80221,139.362629,I,Above,Gable,0,5701,,30.60778342,0,0,,,,1,1,,0.03,nav,1,1962,2,, 21086,NJBF000057105,,Margate City,NJ,39.32993386,-74.51616811,RES1,3001,,NaN,NE,1982,0,3102,2,1,1217.513334,1217.513334,3505,NO,22.1,29.32,3,1.04,6106,113.123051,123.000428,132.692229,139.236759,I,Above,Gable,0,5701,,25.71152077,0,0,,,,1,1,,0.03,nav,1,1982,2,, 21087,NJBF000056284,8905 AMHERST AVE,Margate City,NJ,39.32812796,-74.51339523,RES1,3001,,NaN,NE,1949,0,3102,2,1,1384.69194,1384.69194,3505,NO,25.24,36.44,3,-0.2,6106,113.210348,123.069904,132.762858,139.31762,I,Above,Gable,0,5701,,30.84103561,0,0,,,,1,1,,0.03,nav,1,1949,2,, 21088,NJBF000054414,112 S QUINCY AVE,Margate City,NJ,39.32333174,-74.50608658,RES1,3001,,21,NE,1951,1951,3103,3,1,2501.6502,2501.6502,3505,NO,56.12,67.26,3,8.86,6106,113.440975,123.253577,132.949624,139.527639,I,Above,Flat,0,5701,,61.69042332,0,1.1,,,,1,1,,0.03,nav,1,1951,3,, 21089,NJBF000059682,210 N DELAVAN AVE,Margate City,NJ,39.33467388,-74.49967133,RES1,3001,,17,NE,1950,1950,3103,2,1,1493.955584,1493.955584,3505,NO,18.29,24.38,3,-2.95,6106,113.418678,123.238375,132.942888,139.507895,I,Above,Flat,0,5701,,21.334135,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21090,NJBF000056972,101 N JEROME AVE,Margate City,NJ,39.32964283,-74.50482676,RES1,3001,,17,NE,1955,1955,3101,1,1,1573.03693,1573.03693,3507,NO,13.98,20.66,1,0.46,6106,113.37651,123.203882,132.903191,139.472526,I,Above,Gable,0,5701,,17.32032324,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 21091,NJBF000054913,,Margate City,NJ,39.32462802,-74.51574338,RES3B,3003,,NaN,ME,1951,0,3301,1,1,3334.058241,3334.058241,3505,NO,22.37,27.65,3,7.1,6106,113.210757,123.068676,132.758929,139.315347,I,Above,Hip,0,5701,,25.00711273,0,0,,,,1,1,,0.03,nav,1,1951,1,, 21092,NJBF000055214,107 S LANCASTER AVE,Margate City,NJ,39.32545806,-74.50315341,RES1,3001,,20,NE,1936,1936,3102,3,1,1747.946663,1747.946663,3505,NO,60.8,68.89,3,2.6,6106,113.473961,123.28105,132.980211,139.56074,I,Above,Flat,0,5701,,64.844635,0,1.1,,,,1,1,,0.03,nav,1,1936,3,, 21093,NJBF000057650,100 S ARGYLE AVE,Margate City,NJ,39.33093775,-74.49281509,RES1,3001,,18,NE,1928,1928,3102,2,1,4069.65616,4069.65616,3505,NO,32.46,39.7,3,3.43,6106,113.622338,123.401995,133.111788,139.699973,I,Above,Hip,0,5701,,36.07913015,0,0,,,,1,1,,0.03,nav,1,1928,2,, 21094,NJBF000058660,107 N FRONTENAC AVE,Margate City,NJ,39.33269785,-74.50073741,RES1,3001,,17,NE,1950,1950,3102,2,1,1843.10949,1843.10949,3505,NO,40.11,49.48,3,8.63,6106,113.422969,123.241717,132.944988,139.514298,I,Above,Hip,0,5701,,44.79260503,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21095,NJBF000053988,110 N MONROE AVE,Margate City,NJ,39.32201076,-74.51916515,RES1,3001,,17,NE,1945,1945,3101,1,1,1389.962315,1389.962315,3505,NO,21.6,33.9,3,4.31,6106,113.175552,123.038736,132.725869,139.27918,I,Above,Gable,0,5701,,27.75080474,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 21096,NJBF000054772,8904 VENTNOR AVE,Margate City,NJ,39.32427006,-74.50973303,RES1,3001,,21,NE,2008,2008,3103,3,1,2706.733965,2706.733965,3505,NO,49.05,55.91,3,0.03,6106,113.34739,123.178575,132.872474,139.442087,I,Above,Flat,0,5701,,52.47966767,0,0,,,,1,1,,0.03,nav,1,2008,3,, 21097,NJBF000057568,209 N KENYON AVE,Margate City,NJ,39.33080008,-74.50699791,RES1,3001,,17,NE,1950,1950,3102,2,1,1149.143907,1149.143907,3505,NO,37.69,47.69,3,7.39,6106,113.312103,123.152389,132.850396,139.412604,I,Above,Hip,0,5701,,42.688514,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21098,NJBF000059514,17 WEST DRIVE,Margate City,NJ,39.33437916,-74.49562136,RES1,3001,,18,NE,1925,1925,3102,2,1,1348.009149,1348.009149,3505,NO,39.93,49.4,3,4.11,6106,113.512188,123.313541,133.021535,139.594128,I,Above,Hip,0,5701,,44.66056058,0,0,,,,1,1,,0.03,nav,1,1925,2,, 21099,NJBF000056415,211 N RUMSON AVE,Margate City,NJ,39.32841768,-74.51125281,RES1,3001,,17,NE,1972,1972,3101,1,1,1540.143511,1540.143511,3505,NO,21.94,31.2,3,3.08,6106,113.253095,123.104356,132.79877,139.357544,I,Above,Gable,0,5701,,26.56851492,0,0,,,,1,1,,0.03,nav,1,1972,1,, 21100,NJBF000055967,18 N OSBORNE AVE,Margate City,NJ,39.32740535,-74.50806479,RES1,3001,,22,NE,2016,2016,3102,3,1,1162.137885,1162.137885,3505,NO,46.64,57.8,3,8.76,6106,113.337835,123.172146,132.868399,139.435917,I,Above,Gable,0,5701,,52.21856504,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 21101,NJBF000055754,114 N SUMNER AVE,Margate City,NJ,39.32689748,-74.51131827,RES1,3001,,17,NE,1918,1918,3102,2,1,1960.660594,1960.660594,3505,NO,25.05,35.3,3,1.36,6106,113.27395,123.120575,132.814445,139.376182,I,Above,Hip,0,5701,,30.17655683,0,1.2,,,,1,1,,0.03,nav,1,1918,2,, 21102,NJBF000059279,311 N HUNTINGTON AVE,Margate City,NJ,39.33393011,-74.50544996,RES1,3001,,17,NE,1952,1952,3101,2,1,1413.225844,1413.225844,3505,NO,35.83,50.15,3,-0.35,6106,113.301583,123.144372,132.844154,139.400926,I,Above,Hip,0,5701,,42.98725086,0,0,,,,1,1,,0.03,nav,1,1952,2,, 21103,NJBF000059177,8 S COLMAR CIRCLE,Margate City,NJ,39.33370494,-74.50425155,RES1,3001,,17,NE,1954,1954,3101,2,1,1794.726899,1794.726899,3505,NO,30.05,37.21,3,7.46,6106,113.331201,123.168115,132.868774,139.428526,I,Above,Gable,0,5701,,33.62965783,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21104,NJBF000054463,15 S UNION AVE,Margate City,NJ,39.32345964,-74.50929542,RES1,3001,,22,NE,2012,2012,3102,2,1,1606.757272,1606.757272,3505,NO,38.78,48.33,3,1.28,6106,113.368968,123.195581,132.88942,139.461117,I,Above,Gable,0,5701,,43.5524309,0,0,,,,1,1,,0.03,nav,1,2012,2,, 21105,NJBF000054448,15 S UNION AVE,Margate City,NJ,39.32343034,-74.50915952,RES1,3001,,22,NE,2012,2012,3102,2,1,573.195912,573.195912,3505,NO,35.01,45.56,3,6.1,6106,113.372363,123.198303,132.892221,139.464226,I,Above,Flat,0,5701,,40.28755587,0,0,,,,1,1,,0.03,nav,1,2012,2,, 21106,NJBF000057168,28 N HANOVER AVE,Margate City,NJ,39.330069,-74.50329478,RES1,3001,,17,NE,1935,1935,3102,2,1,1482.576633,1482.576633,3505,NO,33.71,46.2,3,3.81,6106,113.404083,123.226142,132.926742,139.498108,I,Above,Gable,0,5701,,39.95483368,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 21107,NJBF000055160,102 N VENDOME AVE,Margate City,NJ,39.32530952,-74.51258609,RES1,3001,,17,NE,1961,1961,3102,2,1,1888.11884,1888.11884,3505,NO,37.7,52.47,3,2.71,6106,113.269604,123.116403,132.808861,139.370856,I,Above,Gable,0,5701,,45.08285151,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 21108,NJBF000055826,3 N NASSAU AVE,Margate City,NJ,39.32706605,-74.50624939,RES1,3001,,18,NE,1946,1946,3102,3,1,1481.405078,1481.405078,3505,NO,60.64,68,3,4.46,6106,113.382618,123.208061,132.905499,139.477331,I,Above,Hip,0,5701,,64.32154754,0,1.2,,,,1,1,,0.03,nav,1,1946,3,, 21109,NJBF000055553,112 N THURLOW AVE,Margate City,NJ,39.32639598,-74.51171534,RES1,3001,,17,NE,1914,1914,3102,3,1,1127.166286,1127.166286,3505,NO,55.59,66.38,3,2.49,6106,113.272625,123.119308,132.812739,139.374594,I,Above,Hip,0,5701,,60.98537039,0,0,,,,1,1,,0.03,nav,1,1914,3,, 21110,NJBF000057496,100 N HUNTINGTON AVE,Margate City,NJ,39.33067347,-74.50303635,RES1,3001,,17,NE,1955,1955,3102,2,1,1495.541717,1495.541717,3507,NO,37.82,51.04,1,1.84,6106,113.401129,123.223885,132.924846,139.495255,I,Above,Gable,0,5701,,44.43159347,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 21111,NJBF000061300,420 N GLADSTONE AVE,Margate City,NJ,39.33739915,-74.5064808,RES1,3001,,19,NE,2003,2003,3101,3,1,1750.281044,1750.281044,3505,NO,43.39,51.06,3,-2.1,6106,113.230082,123.087084,132.786468,139.330134,I,Above,Hip,0,5701,,47.22396057,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 21112,NJBF000059793,300 N ESSEX AVE,Margate City,NJ,39.33486677,-74.50167087,RES1,3001,,18,NE,1956,1956,3102,2,1,2352.564934,2352.564934,3505,NO,31.85,39.68,3,1.41,6106,113.371813,123.20075,132.903636,139.464522,I,Above,Hip,0,5701,,35.76267263,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 21113,NJBF000060230,120 N BELMONT AVE,Margate City,NJ,39.33561961,-74.49685725,RES1,3001,,17,NE,1949,1949,3102,1,1,976.0700727,976.0700727,3505,NO,16.66,27.01,3,2.28,6110,113.467616,123.277688,132.984771,139.550972,I,Above,Hip,0,5701,,21.83524534,0,0,,,,1,1,,0.35,nav,1,1949,1,, 21114,NJBF000062274,10 EXETER CT,Margate City,NJ,39.3391345,-74.505691,RES1,3001,,18,NE,1977,1977,3102,2,1,1490.370345,1490.370345,3505,NO,28.94,41.61,3,4.46,6106,113.2235,123.081619,132.78166,139.3206,I,Above,Hip,0,5701,,35.27374377,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 21115,NJBF000054818,108 S OSBORNE AVE,Margate City,NJ,39.32439981,-74.50521047,RES1,3001,,22,NE,1945,1945,3103,3,1,1608.335135,1608.335135,3505,NO,62.11,74.59,3,7.03,6106,113.444417,123.256822,132.953987,139.532204,I,Above,Hip,0,5701,,68.35228537,0,0,,,,1,1,,0.03,nav,1,1945,3,, 21116,NJBF000053670,9609 VENTNOR AVE,Margate City,NJ,39.32083933,-74.51710114,RES3C,3001,,19,ME,1956,1956,3301,2,1,3293.593749,3293.593749,3505,NO,44.98,53.97,3,6.89,6106,113.238162,123.088524,132.776194,139.335742,I,Above,Flat,0,NaN,,49.47633696,0,0,,,,1,1,,0.03,nav,1,1956,2,, 21117,NJBF000056409,9007 FREMONT AVE,Margate City,NJ,39.32840956,-74.51570369,RES1,3001,,20,NE,2002,2002,3102,3,1,1620.390986,1620.390986,3505,NO,37.81,50.67,3,5.9,6106,113.155579,123.026004,132.717647,139.266684,I,Above,Gable,0,5701,,44.2400033,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 21118,NJBF000061439,411 N CLERMONT AVE,Margate City,NJ,39.33762995,-74.50125052,RES1,3001,,17,NE,1960,1960,3102,2,1,1593.77367,1593.77367,3505,NO,26.42,36.85,3,2.12,6106,113.34261,123.177198,132.880719,139.432633,I,Above,Gable,0,5701,,31.63386825,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21119,NJBF000056584,102 N LANCASTER AVE,Margate City,NJ,39.32879799,-74.50655962,RES1,3001,,19,NE,1985,1985,3102,2,1,939.9009697,939.9009697,3505,NO,26.98,37.75,3,-2.19,6106,113.350622,123.182857,132.880634,139.448362,I,Above,Gable,0,5701,,32.36365491,0,0,,,,1,1,,0.03,nav,1,1985,2,, 21120,NJBF000055042,106 N HARDING AVE,Margate City,NJ,39.32497252,-74.51382033,RES1,3001,,18,NE,1948,1948,3102,2,1,917.693232,917.693232,3505,NO,30.44,35.67,3,6.67,6106,113.247625,123.098545,132.790097,139.350061,I,Above,Gable,0,5701,,33.05568362,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21121,NJBF000061637,611 N HUNTINGTON AVE,Margate City,NJ,39.33799637,-74.50934474,RES1,3001,,18,NE,1974,1974,3102,2,1,1701.867317,1701.867317,3505,NO,29.53,36.47,3,8.3,6106,113.158361,123.029674,132.727004,139.263205,I,Above,Flat,0,5701,,32.99952023,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 21122,NJBF000058786,24 N CLARENDON AVE,Margate City,NJ,39.33294322,-74.49652041,RES1,3001,,17,NE,1940,1940,3102,2,1,1225.752443,1225.752443,3505,NO,30.29,35.61,3,7.72,6106,113.51248,123.313714,133.020631,139.596614,I,Above,Gable,0,5701,,32.95002897,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 21123,NJBF000058865,206 N GLADSTONE AVE,Margate City,NJ,39.33308065,-74.50276885,RES1,3001,,17,NE,1954,1954,3102,2,1,1335.923395,1335.923395,3505,NO,28.69,34.13,3,2.17,6106,113.372744,123.201409,132.903116,139.467527,I,Above,Gable,0,5701,,31.41117917,0,0,,,,1,1,,0.03,nav,1,1954,2,, 21124,NJBF000056380,1 S IROQUOIS AVE,Margate City,NJ,39.32835724,-74.501776,RES1,3001,,20,NE,1960,1960,3102,2,1,2187.362233,2187.362233,3505,NO,42,52.74,3,4.23,6106,113.462103,123.272415,132.973703,139.55176,I,Above,Hip,0,5701,,47.37123237,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21125,NJBF000061251,7510 FREMONT AVE,Margate City,NJ,39.33731095,-74.49937191,RES1,3001,,17,NE,1950,1950,3103,1,1,2086.909099,2086.909099,3505,NO,13.79,24.41,3,0.11,6106,113.388588,123.21411,132.919189,139.475239,I,Above,Hip,0,5701,,19.09592725,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 21126,NJBF000055827,9 S KENYON AVE,Margate City,NJ,39.32706862,-74.50371207,RES1,3001,,18,NE,1925,1925,3102,2,1,1635.783646,1635.783646,3505,NO,37.65,49.31,3,-1.31,6106,113.438236,123.252829,132.952168,139.528969,I,Above,Hip,0,5701,,43.48136256,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21127,NJBF000057493,105 S BARCLAY AVE,Margate City,NJ,39.33066679,-74.49271568,RES1,3001,,21,NE,1979,1979,3102,3,1,1674.172006,1674.172006,3505,NO,43.37,57.78,3,3.79,6106,113.628346,123.406801,133.116611,139.705708,I,Above,Gable,0,5701,,50.5773675,0,0,,,,1,1,,0.03,nav,1,1979,3,, 21128,NJBF000061052,220 N BELMONT DR,Margate City,NJ,39.33697324,-74.49852904,RES1,3001,,17,NE,1950,1950,3103,1,1,1370.155653,1370.155653,3505,NO,25.63,33.14,3,6.66,6106,113.411905,123.232856,132.938631,139.497237,I,Above,Hip,0,5701,,29.38232371,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21129,NJBF000061853,617 N HUNTINGTON AVE,Margate City,NJ,39.3383712,-74.50970954,RES1,3001,,19,NE,1973,1973,3102,3,1,1900.347915,1900.347915,3505,NO,52.02,66.64,3,6.97,6106,113.145052,123.019004,132.716087,139.250307,I,Above,Hip,0,5701,,59.33195888,0,1.1,,,,1,1,,0.03,nav,1,1973,3,, 21130,NJBF000060666,8204 MARSHALL AVE,Margate City,NJ,39.33636875,-74.5090461,RES1,3001,,17,NE,1972,1972,3101,1,1,1488.160144,1488.160144,3505,NO,16.96,25.41,3,3.98,6106,113.187753,123.053259,132.750709,139.292854,I,Above,Gable,0,5701,,21.18650172,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 21131,NJBF000058064,9 S BRUNSWICK AVE,Margate City,NJ,39.33164856,-74.49423536,RES1,3001,,20,NE,1937,1937,3102,2,1,1876.940096,1876.940096,3505,NO,35.36,40.51,3,2.68,6106,113.581046,123.368802,133.077472,139.661247,I,Above,Hip,0,5701,,37.93116511,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 21132,NJBF000058765,415 N LANCASTER AVE,Margate City,NJ,39.33289155,-74.50987692,RES1,3001,,17,NE,1963,1963,3102,2,1,3104.972847,3104.972847,3505,NO,30.02,44.83,3,-1.11,6106,113.218697,123.077814,132.774238,139.325029,I,Above,Hip,0,5701,,37.42595959,0,1.2,,,,1,1,,0.03,nav,1,1963,2,, 21133,NJBF000058502,7 N CLARENDON AVE,Margate City,NJ,39.33242679,-74.49563977,RES1,3001,,17,NE,1950,1950,3102,2,1,862.89112,862.89112,3505,NO,28.05,38.78,3,3.94,6106,113.539135,123.335126,133.042713,139.621786,I,Above,Flat,0,5701,,33.41608834,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21134,NJBF000054994,8806 VENTNOR AVE,Margate City,NJ,39.32483219,-74.50844909,RES1,3001,,20,NE,1945,1945,3103,3,1,3318.528138,3318.528138,3505,NO,53.18,67.82,3,-0.03,6106,113.367172,123.194765,132.889781,139.461076,I,Above,Gable,0,5701,,60.50017625,0,1.1,,,,1,1,,0.03,nav,1,1945,3,, 21135,NJBF000059610,308 N GLADSTONE AVE,Margate City,NJ,39.3345453,-74.50375265,RES1,3001,,17,NE,1960,1960,3101,2,1,1447.709467,1447.709467,3505,NO,37.32,47.56,3,3.57,6106,113.330363,123.167487,132.868665,139.42679,I,Above,Hip,0,5701,,42.43980043,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21136,NJBF000058643,8605 FULTON AVE,Margate City,NJ,39.33265837,-74.51158,RES1,3001,,20,NE,1960,1960,3102,3,1,1904.466025,1904.466025,3505,NO,46.92,60.54,3,5.94,6106,113.184515,123.050383,132.745623,139.293443,I,Above,Gable,0,5701,,53.72646952,0,0,,,,1,1,,0.03,nav,1,1960,3,, 21137,NJBF000061319,423 N GLADSTONE AVE,Margate City,NJ,39.33743799,-74.50592808,RES1,3001,,18,NE,1989,1989,3101,3,1,1614.939429,1614.939429,3505,NO,38.82,53.3,3,2.71,6106,113.241777,123.096441,132.796243,139.340794,I,Above,Gable,0,5701,,46.06155356,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 21138,NJBF000058989,36 N CLERMONT AVE,Margate City,NJ,39.33331172,-74.49761775,RES1,3001,,17,NE,1935,1935,3102,2,1,922.5311936,922.5311936,3505,NO,39.84,45.01,3,6.83,6106,113.483084,123.29009,132.99612,139.569078,I,Above,Hip,0,5701,,42.42503589,0,0,,,,1,1,,0.03,nav,1,1935,2,, 21139,NJBF000062214,501 N CLERMONT AVE,Margate City,NJ,39.3390094,-74.50255341,RES1,3001,,20,NE,2016,2016,3102,2,1,2702.786503,2702.786503,3505,NO,29.75,41.58,3,2.32,6106,113.294758,123.13867,132.841188,139.385829,I,Above,Hip,0,5701,,35.66284128,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 21140,NJBF000055122,9005 WINCHESTER AVE,Margate City,NJ,39.32520643,-74.51251006,RES1,3001,,18,NE,1956,1956,3102,2,1,2505.50831,2505.50831,3505,NO,31.35,38.57,3,0.62,6106,113.272807,123.118934,132.811399,139.373737,I,Above,Flat,0,5701,,34.96219959,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 21141,NJBF000059371,8 CIRCLE DRIVE,Margate City,NJ,39.3341152,-74.49474275,RES1,3001,,18,NE,1925,1925,3102,2,1,1443.035123,1443.035123,3505,NO,43.88,58.65,3,8.53,6106,113.535242,123.332089,133.040831,139.615699,I,Above,Hip,0,5701,,51.26376012,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21142,NJBF000060959,318 N CLARENDON AVE,Margate City,NJ,39.33681997,-74.5002515,RES1,3001,,17,NE,1963,1963,3102,1,1,3035.68868,3035.68868,3505,NO,18.52,27.85,3,1.05,6106,113.375928,123.203993,132.908283,139.464789,I,Above,Hip,0,5701,,23.18307976,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 21143,NJBF000056294,200 N QUINCY AVE,Margate City,NJ,39.32815157,-74.51065347,RES1,3001,,17,NE,1940,1940,3102,2,1,1096.084699,1096.084699,3505,NO,31.42,37.5,3,1.2,6106,113.270147,123.117971,132.812699,139.373313,I,Above,Gable,0,5701,,34.45663224,0,0,,,,1,1,,0.03,nav,1,1940,2,, 21144,NJBF000056431,107 N NASSAU AVE,Margate City,NJ,39.32845808,-74.50762246,RES1,3001,,19,NE,1925,1925,3102,2,1,1374.58194,1374.58194,3505,NO,31.02,39.73,3,1.8,6106,113.332226,123.16797,132.86488,139.431167,I,Above,Hip,0,5701,,35.37926013,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21145,NJBF000054105,9500 WINCHESTER AVE,Margate City,NJ,39.32239046,-74.51679616,RES1,3001,,45,NE,1930,1930,3102,2,2,1139.644273,1139.644273,3507,NO,23.59,33.16,1,-0.4,6106,113.221359,123.075952,132.764585,139.322453,I,Above,Gable,0,5701,,28.37097294,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21146,NJBF000061970,403 OAK TERRACE,Margate City,NJ,39.33856081,-74.49802589,RES1,3001,,19,NE,1925,1925,3103,2,1,1389.235907,1389.235907,3505,NO,31.92,40,3,6.53,6106,113.401145,123.224034,132.930367,139.483431,I,Above,Gable,0,5701,,35.95792461,0,0,,,,1,1,,0.03,nav,1,1925,2,, 21147,NJBF000059893,22 EAST DRIVE,Margate City,NJ,39.33503407,-74.49488369,RES1,3001,,19,NE,1927,1927,3102,2,1,1489.786702,1489.786702,3505,NO,31.27,40.16,3,8.15,6106,113.519324,123.319284,133.028056,139.59934,I,Above,Flat,0,5701,,35.71616403,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 21148,NJBF000058745,102 N ESSEX AVE,Margate City,NJ,39.33286017,-74.49945157,RES1,3001,,17,NE,1983,1983,3103,1,1,970.9540797,970.9540797,3505,NO,17.89,31.35,3,5.92,6106,113.44901,123.262661,132.967034,139.538191,I,Above,Gable,0,5701,,24.61978636,0,0,,,,1,1,,0.03,nav,1,1983,1,, 21149,NJBF000060008,8100 FULTON AVE,Margate City,NJ,39.33523158,-74.50567339,RES1,3001,,17,NE,1958,1958,3101,2,1,1242.456128,1242.456128,3505,NO,41.13,54.32,3,4.93,6106,113.27829,123.125754,132.82555,139.377886,I,Above,Hip,0,5701,,47.72568556,0,0,,,,1,1,,0.03,nav,1,1958,2,, 21150,NJBF000057660,514 N THURLOW AVE,Margate City,NJ,39.33095183,-74.51645852,RES1,3001,,20,NE,1955,1955,3102,2,2,978.135667,978.135667,3505,NO,44.93,53.05,3,7.99,6106,113.101801,122.983696,132.675576,139.216991,I,Above,Flat,0,5701,,48.9894876,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 21151,NJBF000057710,514 N THURLOW AVE,Margate City,NJ,39.33102867,-74.516239,RES1,3001,,20,NE,1955,1955,3102,2,2,3879.16814,3879.16814,3505,NO,30.76,38.31,3,7.73,6106,113.105516,122.986696,132.678721,139.220446,I,Above,Hip,0,5701,,34.53669197,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 21152,NJBF000056470,104 N MANSFIELD AVE,Margate City,NJ,39.32853636,-74.50725027,RES1,3001,,17,NE,1947,1947,3102,2,1,1238.506718,1238.506718,3505,NO,42.72,50.4,3,5.76,6106,113.339264,123.173651,132.87085,139.437733,I,Above,Hip,0,5701,,46.55754959,0,0,,,,1,1,,0.03,nav,1,1947,2,, 21153,NJBF000057498,117 N JASPER AVE,Margate City,NJ,39.33067609,-74.50497141,RES1,3001,,17,NE,1952,1952,3101,1,1,1463.813918,1463.813918,3507,NO,14.53,25.08,1,1.08,6106,113.358496,123.189626,132.889101,139.455699,I,Above,Hip,0,5701,,19.80672278,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 21154,NJBF000062856,1 BAYSHORE CT,Margate City,NJ,39.34036946,-74.50633325,RES1,3001,,18,NE,1968,1968,3102,2,1,2249.200686,2249.200686,3505,NO,34.48,40.1,3,2.4,6106,113.192284,123.056436,132.755978,139.289236,I,Above,Gable,0,5701,,37.28566271,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 21155,NJBF000056991,7 N HUNTINGTON AVE,Margate City,NJ,39.32969346,-74.50157166,RES1,3001,,17,NE,1967,1967,3102,2,1,1441.940118,1441.940118,3505,NO,25.2,35.07,3,3.56,6106,113.447377,123.260881,132.962738,139.538307,I,Above,Hip,0,5701,,30.13500724,0,0,,,,1,1,,0.03,nav,1,1967,2,, 21156,NJBF000057387,10 N GLADSTONE AVE,Margate City,NJ,39.33048088,-74.50030951,RES1,3001,,17,NE,1960,1960,3102,2,1,1514.907975,1514.907975,3505,NO,35.54,47.23,3,2.85,6106,113.463871,123.274302,132.977402,139.553488,I,Above,Hip,0,5701,,41.38610636,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21157,NJBF000054694,,Margate City,NJ,39.32407862,-74.50492647,RES1,3001,,NaN,NE,1925,0,3102,2,1,3864.352717,3864.352717,3505,NO,42.35,51.61,3,5.75,6106,113.455353,123.265502,132.96274,139.54193,I,Above,Hip,0,5701,,46.98164195,0,0,,,,1,1,,0.03,nav,1,1925,2,, 21158,NJBF000055013,204 N WASHINGTON AVE,Margate City,NJ,39.32489677,-74.51657451,RES1,3001,,21,NE,2003,2003,3103,3,1,1418.448117,1418.448117,3505,NO,43.76,52.33,3,-0.69,6106,113.188578,123.050952,132.740834,139.294941,I,Above,Gable,0,5701,,48.04251342,0,0,,,,1,1,,0.03,nav,1,2003,3,, 21159,NJBF000057529,19 N GRANVILLE AVE,Margate City,NJ,39.3307278,-74.50094854,RES1,3001,,17,NE,1968,1968,3101,1,1,1599.029552,1599.029552,3505,NO,19.44,30.02,3,6.7,6106,113.446282,123.260198,132.96284,139.537108,I,Above,Hip,0,5701,,24.73097788,0,0,,,,1,1,,0.03,nav,1,1968,1,, 21160,NJBF000057479,17 N GRANVILLE AVE,Margate City,NJ,39.33063671,-74.50086504,RES1,3001,,18,NE,1922,1922,3102,2,1,1574.868691,1574.868691,3505,NO,29.37,42.05,3,5.69,6106,113.44943,123.262713,132.9654,139.540055,I,Above,Gable,0,5701,,35.70860494,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 21161,NJBF000057946,435 N PEMBROKE AVE,Margate City,NJ,39.33141579,-74.51226556,RES1,3001,,21,NE,1999,1999,3102,2,1,2125.318497,2125.318497,3505,NO,28.38,33.46,3,6.66,6106,113.187288,123.052364,132.746909,139.29649,I,Above,Hip,0,5701,,30.92044149,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 21162,NJBF000057981,7400 ATLANTIC AVE,Margate City,NJ,39.33149776,-74.49168437,RES1,3001,,18,NE,1925,1925,3102,2,1,1550.432824,1550.432824,3505,NO,28.12,35.83,3,0.77,6106,113.639334,123.415774,133.126777,139.71515,I,Above,Hip,0,5701,,31.97495456,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21163,NJBF000059694,121 N CLERMONT AVE,Margate City,NJ,39.33469817,-74.49849807,RES1,3001,,17,NE,1963,1963,3103,2,1,1070.385848,1070.385848,3505,NO,30.59,45.55,3,-0.96,6110,113.444237,123.258909,132.964424,139.53132,I,Above,Gable,0,5701,,38.06877803,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 21164,NJBF000059791,122 N CLARENDON AVE,Margate City,NJ,39.33486375,-74.49841165,RES1,3001,,21,NE,1954,2018,3103,2,1,1484.640173,1484.640173,3505,NO,32.16,45.88,3,5.24,6110,113.443815,123.258571,132.964186,139.530652,I,Above,Hip,0,5701,,39.02007523,0,0,,,,1,1,,0.35,nav,1,1954,2,, 21165,NJBF000057003,302 N PEMBROKE AVE,Margate City,NJ,39.32971869,-74.5111898,RES1,3001,,17,NE,1910,1910,3102,2,1,2288.541397,2288.541397,3505,NO,27.53,32.7,3,1.5,6106,113.23553,123.090646,132.785477,139.34149,I,Above,Gable,0,5701,,30.1164558,0,0,,,,1,1,,0.03,nav,1,1910,2,, 21166,NJBF000055806,218 N VENDOME AVE,Margate City,NJ,39.32702588,-74.51415375,RES1,3001,,17,NE,1920,1920,3102,2,1,914.6244011,914.6244011,3505,NO,39.99,52.23,3,6.33,6106,113.209924,123.069133,132.761254,139.31663,I,Above,Flat,0,5701,,46.10766991,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 21167,NJBF000055837,222 N VENDOME AVE,Margate City,NJ,39.3270917,-74.51422612,RES1,3001,,29,NE,1920,1920,3102,2,2,1570.46732,1570.46732,3505,NO,37.71,52.42,3,2.64,6106,113.207374,123.067109,132.759209,139.314295,I,Above,Flat,0,5701,,45.06809917,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 21168,NJBF000059593,117 N CLERMONT AVE,Margate City,NJ,39.3345152,-74.49834679,RES1,3001,,17,NE,1929,1929,3103,1,1,1061.011212,1061.011212,3505,NO,15.84,23.59,3,0.6,6106,113.45013,123.263642,132.969258,139.537027,I,Above,Gable,0,5701,,19.71607072,0,1.1,,,,1,1,,0.03,nav,1,1929,1,, 21169,NJBF000062953,7903 LAGOON DRIVE,Margate City,NJ,39.3405691,-74.50784745,RES1,3001,,17,NE,1967,1967,3102,2,1,2211.509086,2211.509086,3505,NO,27.59,32.72,3,-2.72,6106,113.155954,123.027369,132.725771,139.255646,I,Above,Gable,0,5701,,30.1558165,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 21170,NJBF000057216,307 N PEMBROKE AVE,Margate City,NJ,39.33015858,-74.51104995,RES1,3001,,19,NE,1987,1987,3102,3,1,1829.89534,1829.89534,3505,NO,46.38,58.07,3,7.91,6106,113.232223,123.08811,132.78315,139.338433,I,Above,Flat,0,5701,,52.2230323,0,0,,,,1,1,,0.03,nav,1,1987,3,, 21171,NJBF000061362,35 BAYSIDE COURT,Margate City,NJ,39.3375105,-74.51191854,RES1,3001,,20,NE,2000,2000,3102,2,1,2220.256516,2220.256516,3505,NO,38.15,49.43,3,1.39,6106,113.108162,122.989592,132.685145,139.217809,I,Above,Hip,0,5701,,43.79012736,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 21172,NJBF000061437,33 BAYSIDE COURT,Margate City,NJ,39.33762424,-74.51167215,RES1,3001,,19,NE,1993,1993,3102,2,1,2653.288768,2653.288768,3505,NO,41.23,52.83,3,6.32,6106,113.112044,122.992688,132.68841,139.221212,I,Above,Gable,0,5701,,47.02905667,0,1.2,,,,1,1,,0.03,nav,1,1993,2,, 21173,NJBF000061045,50 BAYSIDE COURT,Margate City,NJ,39.33696447,-74.51048038,RES1,3001,,19,NE,1999,1999,3102,2,1,1521.982598,1521.982598,3505,NO,33.45,43.76,3,2.44,6106,113.147679,123.021195,132.71769,139.255052,I,Above,Hip,0,5701,,38.60630472,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 21174,NJBF000055892,18 S JASPER AVE,Margate City,NJ,39.32722079,-74.50207281,RES1,3001,,20,NE,2011,2011,3102,3,1,1621.76089,1621.76089,3505,NO,45.43,50.79,3,7.02,6106,113.472,123.280063,132.980732,139.560391,I,Above,Hip,0,5701,,48.11119313,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 21175,NJBF000055838,17 S JEROME AVE,Margate City,NJ,39.327095,-74.502293,RES1,3001,,20,NE,2012,2012,3102,2,1,1304.042781,1304.042781,3505,NO,41.76,47.55,3,7.51,6106,113.468998,123.277607,132.978058,139.557525,I,Above,Flat,0,5701,,44.65282703,0,0,,,,1,1,,0.03,nav,1,2012,2,, 21176,NJBF000058253,419 N NASSAU AVE,Margate City,NJ,39.33197542,-74.51095321,RES1,3001,,20,NE,1950,1950,3102,3,1,1513.744726,1513.744726,3505,NO,45.67,54.52,3,8.04,6106,113.208138,123.069198,132.76472,139.315691,I,Above,Gable,0,5701,,50.09278787,0,0,,,,1,1,,0.03,nav,1,1950,3,, 21177,NJBF000059048,105 N DOUGLAS AVE,Margate City,NJ,39.33343967,-74.4987584,RES1,3001,,21,NE,2007,2018,3103,3,1,801.3252958,801.3252958,3505,NO,38.18,51.42,3,6.03,6106,113.456143,123.268436,132.97351,139.544104,I,Above,Hip,0,5701,,44.800859,0,0,,,,1,1,,0.03,nav,1,2007,3,, 21178,NJBF000054081,23 S BENSON AVE,Margate City,NJ,39.32232006,-74.51176943,RES1,3001,,17,NE,1957,1957,3102,2,1,1346.484217,1346.484217,3505,NO,25,34.09,3,1.13,6106,113.331945,123.165131,132.856793,139.425197,I,Above,Hip,0,5701,,29.54830897,0,0,,,,1,1,,0.03,nav,1,1957,2,, 21179,NJBF000056208,12 N LANCASTER AVE,Margate City,NJ,39.3279721,-74.50576346,RES1,3001,,17,NE,1947,1947,3102,2,1,1149.660409,1149.660409,3505,NO,27.67,35.1,3,3.93,6106,113.380104,123.206327,132.904429,139.475477,I,Above,Gable,0,5701,,31.38391907,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 21180,NJBF000056313,9103 FREMONT AVE,Margate City,NJ,39.32819792,-74.51606283,RES1,3001,,21,NE,1999,1999,3102,2,1,3382.714759,3382.714759,3505,NO,42.76,49,3,7.32,6106,113.15083,123.022106,132.713474,139.262163,I,Above,Gable,0,5701,,45.87977829,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 21181,NJBF000059953,8102 FULTON AVE,Margate City,NJ,39.33513667,-74.50582951,RES1,3001,,17,NE,1958,1958,3101,2,1,1571.202573,1571.202573,3505,NO,27.53,34.35,3,0.42,6106,113.276159,123.124044,132.823711,139.376046,I,Above,Gable,0,5701,,30.94015509,0,0,,,,1,1,,0.03,nav,1,1958,2,, 21182,NJBF000055719,101 N RUMSON AVE,Margate City,NJ,39.32681463,-74.50971703,RES1,3001,,20,NE,2005,2005,3102,3,1,1602.765311,1602.765311,3505,NO,55.24,69.33,3,4.85,6106,113.310241,123.149737,132.844644,139.409895,I,Above,Hip,0,5701,,62.28268929,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 21183,NJBF000055770,124 N THURLOW AVE,Margate City,NJ,39.32693534,-74.5122238,RES1,3001,,17,NE,1945,1945,3102,2,1,1034.397399,1034.397399,3505,NO,28.38,38.82,3,-2.98,6106,113.253541,123.104173,132.79747,139.357206,I,Above,Flat,0,5701,,33.5993653,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 21184,NJBF000053655,15 N COOLIDGE AVE,Margate City,NJ,39.32077074,-74.51839684,RES1,3001,,20,NE,2015,2015,3102,2,1,761.5477657,761.5477657,3507,NO,27.8,40.82,1,0.45,6106,113.211044,123.066567,132.753476,139.310367,I,Above,Flat,0,5701,,34.30986533,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 21185,NJBF000059478,25 EAST DRIVE,Margate City,NJ,39.33432525,-74.49437416,RES1,3001,,18,NE,1925,1925,3102,2,1,1736.050898,1736.050898,3505,NO,36.13,50.66,3,-0.38,6106,113.540451,123.336286,133.045404,139.62006,I,Above,Hip,0,5701,,43.39626733,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21186,NJBF000053407,9501 ATLANTIC AVE,Margate City,NJ,39.3198303,-74.51434548,RES1,3001,,17,NE,1950,1950,3102,1,2,2057.86076,2057.86076,3507,NO,18.3,29.05,1,0.1,6106,113.313327,123.148588,132.837334,139.403874,I,Above,Flat,0,5701,,23.67144888,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21187,NJBF000062112,8207 BAYSHORE DR WEST,Margate City,NJ,39.33881453,-74.51260063,RES1,3001,,19,NE,1972,1972,3102,2,1,2492.620458,2492.620458,3505,NO,28.35,36.72,3,-2.71,6106,113.07482,122.962873,132.658001,139.184968,I,Above,Gable,0,5701,,32.53672915,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 21188,NJBF000057206,114 S BARCLAY AVE,Margate City,NJ,39.33014375,-74.49280676,RES1,3001,,22,NE,1966,1966,3102,3,1,2230.990084,2230.990084,3505,NO,39.65,49.8,3,3.03,6106,113.633746,123.411074,133.120649,139.71096,I,Above,Hip,0,5701,,44.72664119,0,0,,,,1,1,,0.03,nav,1,1966,3,, 21189,NJBF000053847,18 N MADISON AVE,Margate City,NJ,39.32151066,-74.5173281,RES1,3001,,20,NE,1948,1948,3102,2,1,1745.842457,1745.842457,3507,NO,34.17,44.67,1,-0.39,6106,113.223055,123.076765,132.764657,139.322736,I,Above,Hip,0,5701,,39.41986861,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21190,NJBF000054017,25 N MADISON AVE,Margate City,NJ,39.32211913,-74.51718561,RES3D,3001,,20,ME,1982,1982,3301,1,1,4554.347309,4554.347309,3505,NO,11.91,25.68,3,-0.13,6106,113.216958,123.072231,132.760509,139.317962,I,Above,Gable,0,NaN,,18.79380712,0,0,,,,1,1,,0.03,nav,1,1982,1,, 21191,NJBF000053966,25 N MADISON AVE,Margate City,NJ,39.32194211,-74.51705817,RES3D,3001,,20,ME,1982,1982,3301,2,1,4796.985675,4796.985675,3505,NO,41.66,52.12,3,3.52,6106,113.222414,123.076524,132.764787,139.322789,I,Above,Hip,0,NaN,,46.8929373,0,0,,,,1,1,,0.03,nav,1,1982,2,, 21192,NJBF000055167,110 S KENYON AVE,Margate City,NJ,39.32532989,-74.50278337,RES1,3001,,23,NE,2003,2003,3102,3,1,1174.842811,1174.842811,3505,NO,57.55,70.9,3,5.97,6106,113.483939,123.289043,132.98844,139.569845,I,Above,Hip,0,5701,,64.22292108,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 21193,NJBF000055779,209 N VENDOME AVE,Margate City,NJ,39.32694864,-74.513603,RES1,3001,,17,NE,1925,1925,3101,1,1,1265.10589,1265.10589,3505,NO,21.38,30.72,3,5.45,6106,113.223127,123.079719,132.772152,139.328884,I,Above,Gable,0,5701,,26.05247698,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 21194,NJBF000059490,15 WEST DRIVE,Margate City,NJ,39.33434553,-74.49547212,RES1,3001,,19,NE,1925,1925,3102,2,1,1399.362813,1399.362813,3505,NO,33.1,47.74,3,7.22,6106,113.515936,123.316556,133.024679,139.597617,I,Above,Hip,0,5701,,40.4164348,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21195,NJBF000056052,8221 ATLANTIC AVE,Margate City,NJ,39.32762192,-74.50117886,RES1,3001,,20,NE,1950,1950,3102,2,1,2078.194422,2078.194422,3505,NO,27.51,39.72,3,2.18,6106,113.485824,123.291313,132.992835,139.573447,I,Above,Hip,0,5701,,33.61601594,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21196,NJBF000055278,BENSON AVE,Margate City,NJ,39.32565013,-74.51559015,IND2,3003,,NaN,ME,1969,0,3401,3,1,1928.805181,1928.805181,3507,NO,45.23,50.96,1,2.79,6106,113.198879,123.059627,132.750381,139.305272,I,Above,Flat,0,NaN,,48.098428,0,0,,,,1,1,,0.03,nav,1,1969,3,, 21197,NJBF000058153,212 N IROQUOIS AVE,Margate City,NJ,39.33180468,-74.50575623,RES1,3001,,NaN,NE,1951,0,3102,2,1,1868.270467,1868.270467,3505,NO,40.54,52.17,3,8.41,6106,113.325049,123.162963,132.862115,139.424264,I,Above,Gable,0,5701,,46.35643604,0,0,,,,1,1,,0.03,nav,1,1951,2,, 21198,NJBF000054220,7 S BENSON AVE,Margate City,NJ,39.3227883,-74.51219373,RES1,3001,,17,NE,1958,1958,3101,1,1,2390.762507,2390.762507,3505,NO,10.02,20.55,3,-2.42,6106,113.315681,123.152269,132.84388,139.41076,I,Above,Hip,0,5701,,15.285089,0,0,,,,1,1,,0.03,nav,1,1958,1,, 21199,NJBF000055420,101 S KENYON AVE,Margate City,NJ,39.3260481,-74.50289328,RES1,3001,,22,NE,2015,2015,3102,2,1,1718.528044,1718.528044,3505,NO,43.86,58.61,3,7.66,6106,113.471054,123.278919,132.978513,139.558614,I,Above,Gable,0,5701,,51.23339982,0,0,,,,1,1,,0.03,nav,1,2015,2,, 21200,NJBF000057084,342 N RUMSON AVE,Margate City,NJ,39.32988519,-74.51319255,RES1,3001,,22,NE,2015,2015,3102,3,1,2579.095448,2579.095448,3505,NO,43.98,54.73,3,5.55,6106,113.189106,123.053425,132.747011,139.298294,I,Above,Gable,0,5701,,49.35358602,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 21201,NJBF000057844,34 N GLADSTONE AVE,Margate City,NJ,39.33126072,-74.50103514,RES1,3001,,21,NE,2014,2014,3102,2,1,1128.226716,1128.226716,3505,NO,31.01,40.87,3,7.54,6106,113.436793,123.252653,132.955358,139.528097,I,Above,Hip,0,5701,,35.94004439,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 21202,NJBF000057178,24 N HUNTINGTON AVE,Margate City,NJ,39.33008717,-74.50252369,RES1,3001,,17,NE,1950,1950,3102,2,1,1664.805152,1664.805152,3505,NO,28.4,38.42,3,-1.55,6106,113.420787,123.239576,132.940786,139.513606,I,Above,Hip,0,5701,,33.40947621,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21203,NJBF000053949,28 S BENSON AVE,Margate City,NJ,39.32188751,-74.51185816,RES1,3001,,17,NE,1956,1956,3102,1,1,1667.785615,1667.785615,3505,NO,23.31,32.29,3,5.2,6106,113.336469,123.16854,132.859932,139.428751,I,Above,Gable,0,5701,,27.79996009,0,0,,,,1,1,,0.03,nav,1,1956,1,, 21204,NJBF000057801,8 N ESSEX AVE,Margate City,NJ,39.33118748,-74.49792585,RES1,3001,,18,NE,1988,1988,3102,2,1,1070.802588,1070.802588,3505,NO,37.34,48.34,3,0.64,6106,113.506307,123.308559,133.013845,139.592504,I,Above,Gable,0,5701,,42.83813137,0,0,,,,1,1,,0.03,nav,1,1988,2,, 21205,NJBF000056777,16 N IROQUOIS AVE,Margate City,NJ,39.32923883,-74.50329825,RES1,3001,,18,NE,1925,1925,3102,2,1,1765.689827,1765.689827,3505,NO,26.67,32.57,3,-1.93,6106,113.415946,123.235496,132.935859,139.509114,I,Above,Hip,0,5701,,29.61913803,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21206,NJBF000056257,11 N LANCASTER AVE,Margate City,NJ,39.32807434,-74.50531557,RES1,3001,,17,NE,1946,1946,3101,1,1,1640.035408,1640.035408,3505,NO,16.55,28.05,3,-1.38,6106,113.388439,123.213062,132.911529,139.483263,I,Above,Gable,0,5701,,22.3000313,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 21207,NJBF000058051,4 S BRUNSWICK AVE,Margate City,NJ,39.3316245,-74.49470506,RES1,3001,,19,NE,1953,1953,3102,2,1,1160.406663,1160.406663,3505,NO,36.3,46.71,3,-1.62,6106,113.571049,123.360745,133.068982,139.652042,I,Above,Gable,0,5701,,41.50813188,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 21208,NJBF000063266,7903 BAYSHORE DR,Margate City,NJ,39.34127954,-74.50787391,RES1,3001,,18,NE,1968,1968,3102,2,1,1990.54184,1990.54184,3505,NO,29.52,35.8,3,2.48,6106,113.145608,123.018945,132.717293,139.244466,I,Above,Hip,0,5701,,32.66243913,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 21209,NJBF000057036,8019 VENTNOR AVE,Margate City,NJ,39.32977953,-74.50006183,RES1,3001,,20,NE,2005,2005,3102,3,1,1618.983507,1618.983507,3505,NO,43.95,55.91,3,6.5,6106,113.479344,123.286619,132.98973,139.567957,I,Above,Hip,0,5701,,49.92883814,0,0,,,,1,1,,0.03,nav,1,2005,3,, 21210,NJBF000057390,116 N JASPER AVE,Margate City,NJ,39.33049012,-74.50529357,RES1,3001,,17,NE,1952,1952,3101,1,1,1248.24858,1248.24858,3507,NO,18.36,27.51,1,1.09,6106,113.354057,123.186023,132.885208,139.451616,I,Above,Hip,0,5701,,22.93539146,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 21211,NJBF000057085,423 N UNION AVE,Margate City,NJ,39.32988742,-74.51545251,RES1,3001,,17,NE,1967,1967,3102,2,1,2074.059576,2074.059576,3505,NO,31.9,43.14,3,7.39,6106,113.139437,123.013562,132.705771,139.252027,I,Above,Gable,0,5701,,37.52065156,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 21212,NJBF000054674,,Margate City,NJ,39.32404338,-74.51625966,RES1,3001,,NaN,NE,2002,0,3102,2,1,632.4787444,632.4787444,3507,NO,35.35,45.03,1,-0.1,6106,113.208217,123.066316,132.756018,139.312328,I,Above,Gable,0,5701,,40.19172286,0,0,,,,1,1,,0.03,nav,1,2002,2,, 21213,NJBF000059106,21 N BRUNSWICK AVE,Margate City,NJ,39.33355525,-74.49572824,RES1,3001,,18,NE,1928,1928,3102,2,1,1523.75511,1523.75511,3505,NO,46.96,56.85,3,8.03,6106,113.521352,123.320889,133.028635,139.603917,I,Above,Gable,0,5701,,51.90534946,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 21214,NJBF000058140,25 N EXETER AVE,Margate City,NJ,39.33177642,-74.49879148,RES1,3001,,17,NE,1950,1950,3102,1,1,2586.291372,2586.291372,3505,NO,15.61,23.25,3,1.47,6106,113.478905,123.286589,132.991282,139.566769,I,Above,Flat,0,5701,,19.43165675,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21215,NJBF000059713,112 N BRUNSWICK AVE,Margate City,NJ,39.33472279,-74.49748265,RES1,3001,,17,NE,1930,1930,3102,2,1,1166.039705,1166.039705,3505,NO,27.42,34.24,3,4.1,6106,113.466293,123.276636,132.983035,139.551496,I,Above,Gable,0,5701,,30.82690009,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21216,NJBF000055619,19 S KENYON AVE,Margate City,NJ,39.3265812,-74.50330188,RES1,3001,,18,NE,1950,1950,3102,2,1,2111.910267,2111.910267,3505,NO,30.57,35.61,3,5.9,6106,113.454325,123.265626,132.965104,139.543549,I,Above,Hip,0,5701,,33.08977945,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21217,NJBF000057407,7901 VENTNOR AVE,Margate City,NJ,39.330519,-74.498436,RES1,3001,,NaN,NE,1969,0,3102,1,1,750.9986725,750.9986725,3505,NO,18.08,27.64,3,5.88,6106,113.504574,123.307061,133.011737,139.5912,I,Above,Flat,0,5701,,22.85726235,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21218,NJBF000059598,111 N CLARENDON AVE,Margate City,NJ,39.33452435,-74.49758351,RES1,3001,,19,NE,2011,2011,3102,3,1,1053.90274,1053.90274,3505,NO,50.1,62.91,3,-2.08,6110,113.466844,123.277077,132.983356,139.552345,I,Above,Gable,0,5701,,56.50711164,0,0,,,,1,1,,0.35,nav,1,2011,3,, 21219,NJBF000055465,206 N HARDING AVE,Margate City,NJ,39.32617546,-74.51499571,RES1,3001,,47,NE,1950,1950,3102,2,2,838.405317,838.405317,3505,NO,38.2,48.74,3,2.64,6106,113.204077,123.064057,132.755363,139.310563,I,Above,Flat,0,5701,,43.46775606,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21220,NJBF000060954,14 E GILMAR CIRCLE,Margate City,NJ,39.33681203,-74.50692629,RES1,3001,,17,NE,1968,1968,3101,1,1,1585.537503,1585.537503,3505,NO,19.94,30.11,3,4.5,6106,113.22843,123.085797,132.784812,139.329626,I,Above,Flat,0,5701,,25.02583825,0,0,,,,1,1,,0.03,nav,1,1968,1,, 21221,NJBF000063789,8 ARGYLE COURT,Margate City,NJ,39.3427023,-74.50231892,RES1,3001,,19,NE,1990,1990,3102,2,1,2672.622956,2672.622956,3505,NO,28.94,40.36,3,-2.17,6106,113.249611,123.101638,132.804257,139.334439,I,Above,Hip,0,5701,,34.64991721,0,0,,,,1,1,,0.03,nav,1,1990,2,, 21222,NJBF000054349,125 N MADISON AVE,Margate City,NJ,39.32313019,-74.51840686,RES1,3001,,17,NE,1930,1930,3109,2,1,613.3220725,613.3220725,3505,NO,31.25,42.18,3,1.83,6106,113.175137,123.039114,132.727197,139.280341,I,Above,Gable,0,5701,,36.7135079,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21223,NJBF000061353,223 N BELMONT DR,Margate City,NJ,39.33749175,-74.49831657,RES1,3001,,17,NE,1950,1950,3103,1,1,1358.865462,1358.865462,3505,NO,15.69,28.15,3,2.48,6106,113.409421,123.230812,132.936818,139.493736,I,Above,Hip,0,5701,,21.9184514,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21224,NJBF000058111,2 S BRUNSWICK AVE,Margate City,NJ,39.3317287,-74.49478836,RES1,3001,,20,NE,2011,2011,3102,2,1,1386.320802,1386.320802,3505,NO,32.42,47.27,3,-1.5,6106,113.56774,123.358091,133.066279,139.648891,I,Above,Flat,0,5701,,39.84464683,0,0,,,,1,1,,0.03,nav,1,2011,2,, 21225,NJBF000055968,123 N SUMNER AVE,Margate City,NJ,39.32741284,-74.51124475,RES1,3001,,17,NE,1950,1950,3101,1,1,2152.779169,2152.779169,3505,NO,20.54,28.46,3,8.73,6106,113.267977,123.115966,132.810061,139.370936,I,Above,Hip,0,5701,,24.50096845,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21226,NJBF000057197,209 N MANSFIELD AVE,Margate City,NJ,39.33013242,-74.50810847,RES1,3001,,NaN,NE,1950,1950,3101,1,1,617.4829181,617.4829181,3505,NO,18.15,30.16,3,6.25,6106,113.297305,123.140358,132.837402,139.398943,I,Above,Flat,0,5701,,24.15300868,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21227,NJBF000054233,28 N ADAMS AVE,Margate City,NJ,39.32281079,-74.51587511,RES3C,3001,,39,ME,2002,2002,3301,2,1,3101.033143,3101.033143,3505,NO,36.5,48.53,3,0.47,6106,113.235083,123.087277,132.776644,139.335822,I,Above,Flat,0,NaN,,42.51612186,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 21228,NJBF000056190,5 S JASPER AVE,Margate City,NJ,39.32792663,-74.50221829,RES1,3001,,19,NE,1981,1981,3102,2,1,1376.766837,1376.766837,3505,NO,36.36,49.45,3,7.06,6106,113.458601,123.26948,132.970276,139.548341,I,Above,Hip,0,5701,,42.9018884,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 21229,NJBF000057183,8001-11 VENTNOR AVE,Margate City,NJ,39.33009684,-74.49943589,RES1,3001,,NaN,NE,1986,1947,3102,2,1,9529.637054,9529.637054,3505,NO,41.88,51.99,3,8.03,6106,113.488585,123.294118,132.997837,139.576487,I,Above,Flat,0,5701,,46.9348453,0,0,,,,1,1,,0.03,nav,1,1986,2,, 21230,NJBF000053895,14 S WASHINGTON AVE,Margate City,NJ,39.32169581,-74.5135106,RES1,3001,,17,NE,1930,1930,3102,2,1,841.2364587,841.2364587,3507,NO,34.97,48.66,1,-0.83,6106,113.303331,123.141686,132.831935,139.3977,I,Above,Hip,0,5701,,41.81382732,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21231,NJBF000063826,7502 BAYSHORE DR,Margate City,NJ,39.34279842,-74.50305987,RES1,3001,,19,NE,1985,1985,3102,2,1,2443.343996,2443.343996,3505,NO,28.8,35.23,3,-0.54,6106,113.231862,123.087413,132.789412,139.318176,I,Above,Flat,0,5701,,32.01408007,0,0,,,,1,1,,0.03,nav,1,1985,2,, 21232,NJBF000055194,114 N HARDING AVE,Margate City,NJ,39.32540968,-74.51425508,RES1,3001,,47,NE,1948,1948,3102,2,2,1480.710582,1480.710582,3505,NO,32.9,46.43,3,1.5,6106,113.231627,123.085874,132.777334,139.33558,I,Above,Hip,0,5701,,39.66180313,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21233,NJBF000058534,117 N GLADSTONE AVE,Margate City,NJ,39.33248202,-74.50167224,RES1,3001,,17,NE,1952,1952,3101,1,1,1960.088254,1960.088254,3505,NO,14.92,28.03,3,-2.94,6106,113.405415,123.227591,132.930056,139.498257,I,Above,Flat,0,5701,,21.47506038,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21234,NJBF000061078,404 N CLERMONT AVE,Margate City,NJ,39.33702232,-74.50122471,RES1,3001,,17,NE,1959,1959,3102,2,1,1752.620439,1752.620439,3505,NO,33.36,46.17,3,6.78,6106,113.351609,123.18447,132.887966,139.442158,I,Above,Flat,0,5701,,39.76327252,0,0,,,,1,1,,0.03,nav,1,1959,2,, 21235,NJBF000060415,333 N GLADSTONE AVE,Margate City,NJ,39.3359283,-74.50451174,RES1,3001,,17,NE,1960,1960,3101,2,1,1394.688555,1394.688555,3505,NO,27.69,34.96,3,3.96,6106,113.294178,123.138485,132.839247,139.391503,I,Above,Gable,0,5701,,31.32676249,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21236,NJBF000057306,17 N HAVERFORD AVE,Margate City,NJ,39.3303399,-74.50138041,RES1,3001,,18,NE,1928,1928,3102,2,1,1304.714133,1304.714133,3505,NO,26.61,38.57,3,0.76,6106,113.442338,123.256956,132.959147,139.533556,I,Above,Gable,0,5701,,32.58875458,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 21237,NJBF000057261,15 N HAVERFORD AVE,Margate City,NJ,39.33024976,-74.50131365,RES1,3001,,18,NE,1930,1930,3102,2,1,1040.462731,1040.462731,3505,NO,29.8,42.06,3,-2.83,6106,113.445077,123.259142,132.961362,139.536114,I,Above,Gable,0,5701,,35.93082261,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 21238,NJBF000056392,219 N SUMNER AVE,Margate City,NJ,39.32837785,-74.51220339,RES1,3001,,17,NE,1925,1925,3101,1,1,1325.606261,1325.606261,3505,NO,12.29,26.74,3,-0.67,6106,113.232833,123.088061,132.781846,139.338664,I,Above,Flat,0,5701,,19.51754586,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 21239,NJBF000054061,111 S UNION AVE,Margate City,NJ,39.32225726,-74.50811798,RES1,3001,,20,NE,1948,1948,3103,3,1,2034.043663,2034.043663,3505,NO,39.73,48.67,3,-2.43,6106,113.412545,123.23012,132.92421,139.49978,I,Above,Flat,0,5701,,44.20476719,0,1.1,,,,1,1,,0.03,nav,1,1948,3,, 21240,NJBF000054098,109 S UNION AVE,Margate City,NJ,39.32238115,-74.50826014,RES1,3001,,21,NE,2002,2002,3102,2,1,3149.687861,3149.687861,3505,NO,42.02,56.9,3,7.62,6106,113.407601,123.226195,132.920245,139.495394,I,Above,Hip,0,5701,,49.45888263,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 21241,NJBF000058650,408 N KENYON AVE,Margate City,NJ,39.3326713,-74.50929107,RES1,3001,,17,NE,1969,1969,3102,2,1,1191.303173,1191.303173,3505,NO,32.42,47.15,3,5.99,6106,113.234775,123.090671,132.787457,139.340075,I,Above,Flat,0,5701,,39.78464435,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 21242,NJBF000059850,,Margate City,NJ,39.33496428,-74.49771242,RES1,3001,,NaN,NE,1969,0,3102,2,1,1278.818295,1278.818295,3505,NO,34.06,40.59,3,0.59,6110,113.457873,123.269868,132.976105,139.543354,I,Above,Gable,0,5701,,37.32605873,0,0,,,,1,1,,0.35,nav,1,1969,2,, 21243,NJBF000059531,17 W COLMAR CIRCLE,Margate City,NJ,39.33441905,-74.50494884,RES1,3001,,20,NE,1952,2016,3101,1,1,1331.8382,1331.8382,3505,NO,20.01,30.24,3,8.46,6106,113.305733,123.147728,132.847965,139.404221,I,Above,Hip,0,5701,,25.1229513,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21244,NJBF000063776,2 ARGYLE COURT,Margate City,NJ,39.34267411,-74.50287795,RES1,3001,,19,NE,1985,1985,3102,2,1,1925.571314,1925.571314,3505,NO,36.96,50.33,3,-2.01,6106,113.237578,123.092024,132.794182,139.323714,I,Above,Hip,0,5701,,43.64831815,0,0,,,,1,1,,0.03,nav,1,1985,2,, 21245,NJBF000059652,113 N CLARENDON AVE,Margate City,NJ,39.33461597,-74.49766641,RES1,3001,,17,NE,1959,1959,3102,2,1,1502.825904,1502.825904,3505,NO,37.46,43.67,3,0.18,6106,113.463749,123.27459,132.980812,139.54935,I,Above,Hip,0,5701,,40.56413177,0,0,,,,1,1,,0.03,nav,1,1959,2,, 21246,NJBF000053950,109 S VENDOME AVE,Margate City,NJ,39.32189005,-74.50871126,RES1,3001,,19,NE,1950,1950,3102,2,1,1729.452987,1729.452987,3505,NO,37.82,45.39,3,2.09,6106,113.405068,123.223896,132.917392,139.492297,I,Above,Flat,0,5701,,41.60656917,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21247,NJBF000056767,107 N LANCASTER AVE,Margate City,NJ,39.3292111,-74.50641677,RES1,3001,,17,NE,1940,1940,3102,2,1,1813.795946,1813.795946,3505,NO,28.5,39.48,3,3.44,6106,113.347788,123.180689,132.878694,139.445809,I,Above,Flat,0,5701,,33.98901855,0,0.1,,,,1,1,,0.03,nav,1,1940,2,, 21248,NJBF000055293,103 S LANCASTER AVE,Margate City,NJ,39.3256967,-74.50332839,RES1,3001,,19,NE,1940,1940,3102,2,1,1213.204751,1213.204751,3505,NO,29.51,39.37,3,7.72,6106,113.466636,123.275236,132.974357,139.554193,I,Above,Hip,0,5701,,34.44008163,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 21249,NJBF000053501,9418 PACIFIC AVE,Margate City,NJ,39.32017884,-74.51409503,RES1,3001,,17,NE,1946,1946,3102,1,1,1229.685114,1229.685114,3507,NO,10.8,21.64,1,-0.24,6106,113.313482,123.148942,132.838034,139.404634,I,Above,Flat,0,5701,,16.22393985,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 21250,NJBF000059243,8095 AMHERST AVE,Margate City,NJ,39.33384328,-74.50352115,RES1,3001,,17,NE,1954,1954,3101,2,1,1228.726102,1228.726102,3505,NO,35.08,50.05,3,-1.44,6106,113.345382,123.179503,132.880753,139.441477,I,Above,Gable,0,5701,,42.56718337,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21251,NJBF000057589,115 N IROQUOIS AVE,Margate City,NJ,39.33083211,-74.50433917,RES1,3001,,NaN,NE,1951,0,3101,1,1,1169.32852,1169.32852,3507,NO,20.44,30.79,1,2.29,6106,113.370171,123.199036,132.89903,139.466493,I,Above,Gable,0,5701,,25.61596874,0,0,,,,1,1,,0.03,nav,1,1951,1,, 21252,NJBF000057331,8 N GLADSTONE AVE,Margate City,NJ,39.33038316,-74.50026067,RES1,3001,,17,NE,1960,1960,3102,2,1,1734.552198,1734.552198,3505,NO,28.72,38.35,3,7.57,6106,113.466348,123.276278,132.979391,139.55581,I,Above,Hip,0,5701,,33.53580689,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21253,NJBF000061798,322 N FREDERICKSBURG AVE,Margate City,NJ,39.33826961,-74.49761008,RES1,3001,,18,NE,1999,1999,3103,2,1,1367.238658,1367.238658,3505,NO,29.22,41.84,3,-0.52,6106,113.414347,123.234672,132.941355,139.49616,I,Above,Gable,0,5701,,35.53199852,0,0,,,,1,1,,0.03,nav,1,1999,2,, 21254,NJBF000058983,304 N HUNTINGTON AVE,Margate City,NJ,39.33330098,-74.50544634,RES1,3001,,17,NE,1971,1971,3101,1,1,1550.867447,1550.867447,3505,NO,16.49,24.65,3,-2.56,6106,113.310582,123.15154,132.85122,139.409846,I,Above,Gable,0,5701,,20.57247677,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 21255,NJBF000056713,121 N NASSAU AVE,Margate City,NJ,39.32910929,-74.50820865,RES1,3001,,17,NE,1926,1926,3102,2,1,1371.230046,1371.230046,3505,NO,22.27,31.32,3,1.03,6106,113.309885,123.1502,132.84689,139.410563,I,Above,Hip,0,5701,,26.79900943,0,0,,,,1,1,,0.03,nav,1,1926,2,, 21256,NJBF000057605,101 N HUNTINGTON AVE,Margate City,NJ,39.3308676,-74.50270603,RES1,3001,,17,NE,1950,1950,3102,2,1,1935.366062,1935.366062,3507,NO,33.88,45.63,1,0.86,6106,113.405605,123.227518,132.928788,139.499348,I,Above,Hip,0,5701,,39.75768546,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21257,NJBF000053732,9504 VENTNOR AVE,Margate City,NJ,39.32107651,-74.51571801,RES1,3001,,47,NE,1963,1930,3102,2,2,1419.450745,1419.450745,3507,NO,35.51,49.8,1,1.2,6106,113.264624,123.110054,132.79865,139.360753,I,Above,Gable,0,5701,,42.65729121,0,0,,,,1,1,,0.03,nav,1,1963,2,, 21258,NJBF000063066,616 N CLERMONT AVE,Margate City,NJ,39.3408265,-74.5048615,RES1,3001,,18,NE,1962,1962,3102,2,1,1502.686915,1502.686915,3505,NO,45.84,53.05,3,8.08,6106,113.218654,123.077413,132.778078,139.312038,I,Above,Hip,0,5701,,49.44896733,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 21259,NJBF000054890,114 S MANSFIELD AVE,Margate City,NJ,39.32457455,-74.50360902,RES1,3001,,20,NE,1939,1939,3102,3,1,1416.961582,1416.961582,3505,NO,34.62,43.49,3,-2.1,6106,113.476895,123.283074,132.98152,139.562471,I,Above,Flat,0,5701,,39.0555186,0,0,,,,1,1,,0.03,nav,1,1939,3,, 21260,NJBF000055204,8607 ATLANTIC AVE,Margate City,NJ,39.32543784,-74.50527822,RES1,3001,,19,NE,1930,1930,3103,3,1,2885.750934,2885.750934,3505,NO,52.2,62.89,3,1.74,6106,113.427694,123.243766,132.941309,139.517847,I,Above,Hip,0,5701,,57.54581639,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 21261,NJBF000056999,20 N HANOVER AVE,Margate City,NJ,39.32971245,-74.50295083,RES1,3001,,17,NE,1935,1935,3102,2,1,1616.394508,1616.394508,3505,NO,28.18,36.22,3,-0.38,6106,113.416775,123.236271,132.93704,139.509907,I,Above,Hip,0,5701,,32.19994327,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 21262,NJBF000062399,8006 LAGOON DRIVE,Margate City,NJ,39.33936934,-74.50922741,RES1,3001,,18,NE,1973,1973,3102,2,1,1506.681134,1506.681134,3505,NO,45.53,59.02,3,7.11,6106,113.141898,123.01636,132.71379,139.245475,I,Above,Gable,0,5701,,52.27562717,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 21263,NJBF000062849,618 N DOUGLAS AVE,Margate City,NJ,39.34035233,-74.50603425,RES1,3001,,18,NE,1965,1965,3102,2,1,1340.630349,1340.630349,3505,NO,24.6,36.54,3,1.43,6106,113.199149,123.061926,132.761697,139.295528,I,Above,Hip,0,5701,,30.56833239,0,0,,,,1,1,,0.03,nav,1,1965,2,, 21264,NJBF000054831,12 S RUMSON AVE,Margate City,NJ,39.32441997,-74.50803442,RES1,3001,,21,NE,2004,2004,3103,3,1,2655.478307,2655.478307,3505,NO,47.2,54.21,3,-0.47,6106,113.38233,123.206796,132.90193,139.474686,I,Above,Hip,0,5701,,50.70550037,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21265,NJBF000054661,4 S THURLOW AVE,Margate City,NJ,39.32398947,-74.50948385,RES1,3001,,20,NE,2005,2005,3103,3,1,1786.207706,1786.207706,3505,NO,40.45,52.89,3,4.05,6106,113.356995,123.186184,132.880129,139.450672,I,Above,Gable,0,5701,,46.67185802,0,0,,,,1,1,,0.03,nav,1,2005,3,, 21266,NJBF000055354,103 N UNION AVE,Margate City,NJ,39.32587155,-74.51162398,RES1,3001,,17,NE,1950,1950,3102,2,1,1653.013665,1653.013665,3505,NO,19.92,28.68,3,-1.62,6106,113.282343,123.126908,132.820202,139.383219,I,Above,Hip,0,5701,,24.30268311,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21267,NJBF000053493,9507 PACIFIC AVE,Margate City,NJ,39.32014786,-74.51498942,RES3C,3001,,19,ME,1957,1957,3301,2,1,4203.958993,4203.958993,3505,NO,46.6,61.23,3,7.64,6106,113.29452,123.1336,132.822131,139.386981,I,Above,Flat,0,NaN,,53.9177412,0,0,,,,1,1,,0.03,nav,1,1957,2,, 21268,NJBF000054071,113 N MONROE AVE,Margate City,NJ,39.32229208,-74.51878209,RES1,3001,,20,NE,2002,2002,3101,1,1,2674.528514,2674.528514,3505,NO,21.82,35.86,3,8.68,6106,113.179627,123.042209,132.729688,139.283389,I,Above,Gable,0,5701,,28.8412558,0,0,,,,1,1,,0.03,nav,1,2002,1,, 21269,NJBF000059878,319 N GLADSTONE AVE,Margate City,NJ,39.33499952,-74.50361134,RES1,3001,,17,NE,1961,1961,3101,2,1,1882.460928,1882.460928,3505,NO,39.65,52.8,3,7.77,6106,113.327101,123.164881,132.866234,139.423178,I,Above,Hip,0,5701,,46.22152133,0,1.2,,,,1,1,,0.03,nav,1,1961,2,, 21270,NJBF000059950,321 N GLADSTONE AVE,Margate City,NJ,39.33513169,-74.50374101,RES1,3001,,17,NE,1961,1961,3101,2,1,1826.272699,1826.272699,3505,NO,38.61,48.75,3,5.84,6106,113.322375,123.161093,132.862362,139.418641,I,Above,Gable,0,5701,,43.67922738,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 21271,NJBF000055459,106 N THURLOW AVE,Margate City,NJ,39.32615252,-74.51151376,RES1,3001,,17,NE,1950,1950,3102,2,1,1519.948341,1519.948341,3505,NO,34.56,45.43,3,5.33,6106,113.280607,123.12563,132.819102,139.381835,I,Above,Hip,0,5701,,39.99599962,0,0.1,,,,1,1,,0.03,nav,1,1950,2,, 21272,NJBF000061325,226 N BELMONT DR,Margate City,NJ,39.3374445,-74.4987155,RES1,3001,,17,NE,1950,1950,3103,2,1,1107.634773,1107.634773,3505,NO,36.45,48.78,3,4.23,6106,113.401259,123.224266,132.929921,139.486443,I,Above,Flat,0,5701,,42.61606384,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21273,NJBF000054425,9710 AMHERST AVE,Margate City,NJ,39.32336454,-74.52093579,RES3B,3001,,39,ME,2000,2000,3301,3,1,2209.670277,2209.670277,3507,NO,45.06,50.9,1,-0.9,6106,113.116552,122.991999,132.678858,139.225895,I,Above,Hip,0,5701,,47.98325904,0,0,,,,1,1,,0.03,nav,1,2000,3,, 21274,NJBF000059425,9 CIRCLE DRIVE,Margate City,NJ,39.33421837,-74.4948258,RES1,3001,,18,NE,1925,1925,3102,2,1,1284.948575,1284.948575,3505,NO,24.24,29.9,3,3.24,6106,113.531973,123.32946,133.038146,139.61252,I,Above,Hip,0,5701,,27.07141983,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21275,NJBF000059445,10 CIRCLE DRIVE,Margate City,NJ,39.33425635,-74.49501781,RES1,3001,,18,NE,1927,1927,3102,2,1,1389.980739,1389.980739,3505,NO,33.98,43.26,3,1.71,6106,113.527208,123.325625,133.034143,139.608092,I,Above,Hip,0,5701,,38.61959946,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 21276,NJBF000056477,16 S GRANVILLE AVE,Margate City,NJ,39.32856445,-74.49954277,RES1,3001,,17,NE,1950,1950,3102,2,1,956.8904905,956.8904905,3505,NO,30.7,38.22,3,2.43,6106,113.508189,123.309571,133.012741,139.594582,I,Above,Flat,0,5701,,34.45958557,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21277,NJBF000056686,301 N RUMSON AVE,Margate City,NJ,39.32904473,-74.51190136,RES1,3001,,20,NE,2004,2004,3102,2,1,1576.192672,1576.192672,3505,NO,42.55,50.68,3,7.39,6106,113.229721,123.08578,132.779959,139.335972,I,Above,Hip,0,5701,,46.6131794,0,0,,,,1,1,,0.03,nav,1,2004,2,, 21278,NJBF000057636,210 N JEROME AVE,Margate City,NJ,39.33091997,-74.5067822,RES1,3001,,17,NE,1950,1950,3102,2,1,1607.98335,1607.98335,3505,NO,30.06,39,3,1.5,6106,113.315133,123.154846,132.853039,139.415389,I,Above,Gable,0,5701,,34.5309109,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21279,NJBF000056233,8107 ATLANTIC AVE,Margate City,NJ,39.3280115,-74.49980167,RES1,3001,,20,NE,2009,2009,3102,3,1,1484.072174,1484.072174,3505,NO,53.49,58.81,3,1.78,6106,113.510439,123.311244,133.014019,139.596467,I,Above,Gable,0,5701,,56.14606245,0,0,,,,1,1,,0.03,nav,1,2009,3,, 21280,NJBF000058392,313 N KENYON AVE,Margate City,NJ,39.33223553,-74.50833146,RES1,3001,,17,NE,1960,1960,3102,2,1,1591.923884,1591.923884,3505,NO,43.19,51.28,3,7.92,6106,113.262154,123.112561,132.809935,139.365713,I,Above,Hip,0,5701,,47.23552198,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21281,NJBF000057628,512 N THURLOW AVE,Margate City,NJ,39.33090277,-74.516031,RES1,3001,,18,NE,1974,1974,3102,2,1,2103.478721,2103.478721,3505,NO,39.69,49.52,3,2.7,6106,113.111922,122.991797,132.683915,139.226422,I,Above,Gable,0,5701,,44.60524319,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 21282,NJBF000056395,3 N JEROME AVE,Margate City,NJ,39.32837928,-74.50366489,RES1,3001,,15,NE,1930,1930,3101,2,3,750.1367777,750.1367777,3505,NO,31.35,40.52,3,7.26,6106,113.420285,123.238769,132.938584,139.512951,I,Above,Hip,0,5701,,35.93238518,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 21283,NJBF000057111,303 N PEMBROKE AVE,Margate City,NJ,39.32994991,-74.51085828,RES1,3001,,21,NE,2005,2005,3102,3,1,1326.296267,1326.296267,3505,NO,45.08,55.93,3,8.8,6106,113.239474,123.093876,132.788988,139.345174,I,Above,Hip,0,5701,,50.5038048,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 21284,NJBF000057749,105 N HUNTINGTON AVE,Margate City,NJ,39.33110095,-74.50296864,RES1,3001,,17,NE,1935,1935,3102,2,1,738.2166475,738.2166475,3507,NO,25.44,39.27,1,1.31,6106,113.396487,123.220229,132.921349,139.49081,I,Above,Gable,0,5701,,32.35356767,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 21285,NJBF000055879,5 N NASSAU AVE,Margate City,NJ,39.32719088,-74.50636604,RES1,3001,,17,NE,1924,1924,3102,2,1,2207.388012,2207.388012,3505,NO,28.48,35.88,3,4.06,6106,113.378229,123.204571,132.901968,139.473331,I,Above,Hip,0,5701,,32.18034832,0,0.2,,,,1,1,,0.03,nav,1,1924,2,, 21286,NJBF000057612,427 N QUINCY AVE,Margate City,NJ,39.33087637,-74.51266996,RES1,3001,,17,NE,1951,1951,3101,1,1,2147.676095,2147.676095,3505,NO,21.46,34.09,3,3.9,6106,113.186211,123.051372,132.745536,139.295585,I,Above,Gable,0,5701,,27.77625992,0,0,,,,1,1,,0.03,nav,1,1951,1,, 21287,NJBF000058943,101 N DOUGLAS AVE,Margate City,NJ,39.33321914,-74.49855994,RES1,3001,,17,NE,1950,1950,3103,2,1,1377.381723,1377.381723,3505,NO,46.14,56.53,3,8.92,6106,113.463619,123.274432,132.979633,139.551264,I,Above,Gable,0,5701,,51.33769547,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21288,NJBF000056936,424 N THURLOW AVE,Margate City,NJ,39.32957962,-74.51478496,RES1,3001,,17,NE,1939,1939,3102,2,1,1714.620669,1714.620669,3505,NO,25.93,34.25,3,1.46,6106,113.15859,123.028835,132.721362,139.26983,I,Above,Gable,0,5701,,30.09305142,0,0,,,,1,1,,0.03,nav,1,1939,2,, 21289,NJBF000055893,106 N QUINCY AVE,Margate City,NJ,39.32722493,-74.50975802,RES1,3001,,21,NE,2015,2015,3102,3,1,1061.325894,1061.325894,3505,NO,40.61,48.89,3,6.85,6106,113.303335,123.144333,132.839355,139.40373,I,Above,Gable,0,5701,,44.75104051,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 21290,NJBF000054689,30 N BENSON AVE,Margate City,NJ,39.32407189,-74.51390934,RES1,3001,,19,NE,2006,2006,3102,2,1,1100.882244,1100.882244,3505,NO,27.3,34.44,3,-2.16,6106,113.259091,123.107329,132.798446,139.359762,I,Above,Gable,0,5701,,30.87004401,0,0,,,,1,1,,0.03,nav,1,2006,2,, 21291,NJBF000053729,11 S JEFFERSON AVE,Margate City,NJ,39.3210605,-74.5147455,RES1,3001,,18,NE,1902,1902,3102,3,2,616.6416128,616.6416128,3507,NO,44.46,50.86,1,2.66,6106,113.286008,123.127313,132.81648,139.380606,I,Above,Gable,0,5701,,47.65687578,0,0,,,,1,1,,0.03,nav,1,1902,3,, 21292,NJBF000053675,9210 ATLANTIC AVE,Margate City,NJ,39.32084559,-74.51177183,COM8,3001,,NaN,ME,1969,0,3401,2,1,927.6386424,927.6386424,3507,NO,26.75,37.08,1,0.08,6106,113.353973,123.182063,132.872977,139.443309,I,Above,Flat,0,NaN,,31.91482416,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21293,NJBF000060809,406 N DOUGLAS AVE,Margate City,NJ,39.33657108,-74.502439,RES1,3001,,18,NE,1966,1966,3102,1,1,2627.783735,2627.783735,3505,NO,21.22,31.81,3,4,6106,113.331031,123.167999,132.870464,139.424224,I,Above,Gable,0,5701,,26.5175633,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 21294,NJBF000058905,8 EAST DRIVE,Margate City,NJ,39.33315298,-74.493963,RES1,3001,,18,NE,1925,1925,3102,2,1,1438.884362,1438.884362,3505,NO,38.38,50.35,3,2.07,6106,113.565896,123.35673,133.065996,139.645418,I,Above,Flat,0,5701,,44.36742082,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21295,NJBF000057272,2 N FRONTENAC AVE,Margate City,NJ,39.3302655,-74.4994775,RES1,3001,,19,NE,1986,1986,3102,2,1,899.3406608,899.3406608,3505,NO,36.87,49.37,3,6.92,6106,113.485271,123.291482,132.995213,139.57338,I,Above,Hip,0,5701,,43.12253405,0,0,,,,1,1,,0.03,nav,1,1986,2,, 21296,NJBF000061732,23 BAYSIDE COURT,Margate City,NJ,39.33816647,-74.51079775,RES1,3001,,19,NE,1988,1990,3102,2,1,2037.295184,2037.295184,3505,NO,20.57,33.55,3,-2.17,6106,113.123814,123.002054,132.698381,139.231153,I,Above,Gable,0,5701,,27.05990777,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 21297,NJBF000057985,207 N JASPER AVE,Margate City,NJ,39.33150724,-74.50577411,RES1,3001,,17,NE,1952,1952,3102,2,1,962.9846078,962.9846078,3505,NO,34.83,41.71,3,5.21,6106,113.328913,123.166017,132.865089,139.427982,I,Above,Gable,0,5701,,38.26845683,0,0,,,,1,1,,0.03,nav,1,1952,2,, 21298,NJBF000053888,22 S DECATUR AVE,Margate City,NJ,39.32166166,-74.51226416,RES1,3001,,17,NE,1915,1915,3102,2,1,839.2323139,839.2323139,3507,NO,24.27,37.73,1,0.15,6106,113.331008,123.164003,132.855021,139.423337,I,Above,Gable,0,5701,,30.99943565,0,0,,,,1,1,,0.03,nav,1,1915,2,, 21299,NJBF000057531,116 N IROQUOIS AVE,Margate City,NJ,39.33073445,-74.50472368,RES1,3001,,17,NE,1952,1952,3101,1,1,1231.094435,1231.094435,3507,NO,18.05,28.04,1,2.49,6106,113.363101,123.193337,132.893013,139.459958,I,Above,Hip,0,5701,,23.04573087,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21300,NJBF000062677,8102 BAYSHORE DR,Margate City,NJ,39.33998672,-74.51058429,RES1,3001,,19,NE,1983,1983,3102,2,1,3894.543894,3894.543894,3505,NO,42.15,54.27,3,3.82,6106,113.10326,122.985412,132.681879,139.208802,I,Above,Flat,0,5701,,48.214322,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 21301,NJBF000054005,110 S UNION AVE,Margate City,NJ,39.32207428,-74.50854205,RES1,3001,,20,NE,2010,2010,3103,3,1,2557.12494,2557.12494,3505,NO,48.3,61.4,3,7.88,6106,113.406014,123.224756,132.918461,139.493459,I,Above,Hip,0,5701,,54.84966874,0,0,,,,1,1,,0.03,nav,1,2010,3,, 21302,NJBF000058061,12 S BARCLAY AVE,Margate City,NJ,39.3316434,-74.49400613,RES1,3001,,21,NE,2012,2012,3102,3,1,1418.973358,1418.973358,3505,NO,59.73,69.7,3,6.86,6106,113.586173,123.372932,133.081811,139.665984,I,Above,Gable,0,5701,,64.71937507,0,0,,,,1,1,,0.03,nav,1,2012,3,, 21303,NJBF000055482,18 S LANCASTER AVE,Margate City,NJ,39.32621317,-74.50420713,RES1,3001,,20,NE,1945,1945,3102,2,1,1240.243642,1240.243642,3505,NO,22.83,33.19,3,1.68,6106,113.439839,123.253834,132.952481,139.529818,I,Above,Hip,0,5701,,28.00951784,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 21304,NJBF000058473,204 N HAVERFORD AVE,Margate City,NJ,39.3323745,-74.50383017,RES1,3001,,18,NE,1955,1955,3102,3,1,1066.656265,1066.656265,3505,NO,55.1,60.85,3,5.77,6106,113.359366,123.190593,132.89133,139.455725,I,Above,Gable,0,5701,,57.97528719,0,0,,,,1,1,,0.03,nav,1,1955,3,, 21305,NJBF000055593,8405 ATLANTIC AVE,Margate City,NJ,39.32651517,-74.50296623,RES1,3001,,17,NE,1950,1950,3102,2,1,1476.215101,1476.215101,3505,NO,32.14,43.38,3,2,6106,113.462655,123.272313,132.972026,139.551223,I,Above,Gable,0,5701,,37.75801423,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21306,NJBF000057256,122 N JEROME AVE,Margate City,NJ,39.33023861,-74.50615195,RES1,3001,,17,NE,1954,1954,3102,2,1,1222.704346,1222.704346,3505,NO,40.14,49.86,3,4.4,6106,113.338787,123.173702,132.872185,139.437472,I,Above,Gable,0,5701,,45.00356782,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21307,NJBF000056597,12 N JASPER AVE,Margate City,NJ,39.32883364,-74.50375581,RES1,3001,,17,NE,1953,1953,3102,2,1,1754.415427,1754.415427,3505,NO,33.44,41.39,3,2.95,6106,113.411715,123.231994,132.931881,139.505119,I,Above,Hip,0,5701,,37.41360168,0,1.2,,,,1,1,,0.03,nav,1,1953,2,, 21308,NJBF000056561,10 N JASPER AVE,Margate City,NJ,39.32875461,-74.50365879,RES1,3001,,17,NE,1948,1948,3102,2,1,1355.833679,1355.833679,3505,NO,27.32,38.58,3,-1.08,6106,113.414987,123.234606,132.934543,139.508139,I,Above,Flat,0,5701,,32.9502306,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 21309,NJBF000054795,202 N ADAMS AVE,Margate City,NJ,39.32433193,-74.51734414,RES1,3001,,17,NE,1952,1952,3101,1,2,922.3343821,922.3343821,3505,NO,18.54,23.96,3,4.95,6106,113.180244,123.043933,132.733142,139.286562,I,Above,Flat,0,5701,,21.25086655,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21310,NJBF000061204,6 BAYSIDE COURT,Margate City,NJ,39.33723406,-74.51019949,RES1,3001,,19,NE,1990,1990,3102,2,1,1518.843022,1518.843022,3505,NO,26.7,40.9,3,4.21,6106,113.150109,123.023128,132.719831,139.25688,I,Above,Hip,0,5701,,33.8016682,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 21311,NJBF000054948,100 S OSBORNE AVE,Margate City,NJ,39.32471987,-74.5055155,RES1,3001,,19,NE,1925,1925,3102,2,1,2229.155834,2229.155834,3505,NO,21.86,35.48,3,0.25,6106,113.433015,123.247767,132.94484,139.522017,I,Above,Hip,0,5701,,28.66613828,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 21312,NJBF000054793,115 N WASHINGTON AVE,Margate City,NJ,39.32432895,-74.515387,RES1,3001,,21,NE,2003,2003,3102,2,1,3381.612615,3381.612615,3507,NO,40.27,46.85,1,2.71,6106,113.222991,123.078376,132.768712,139.326426,I,Above,Hip,0,5701,,43.55712479,0,0,,,,1,1,,0.03,nav,1,2003,2,, 21313,NJBF000054218,,Margate City,NJ,39.32277382,-74.51801662,RES1,3001,,NaN,NE,1969,0,3101,1,1,1544.029259,1544.029259,3505,NO,13.11,20.3,3,-0.41,6106,113.188993,123.050073,132.738203,139.292801,I,Above,Gable,0,5701,,16.70288667,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21314,NJBF000056648,406 N UNION AVE,Margate City,NJ,39.32896729,-74.51513189,RES1,3001,,17,NE,1955,1955,3102,2,1,1356.033312,1356.033312,3505,NO,23.72,35.75,3,0.15,6106,113.159946,123.029716,132.721863,139.27095,I,Above,Gable,0,5701,,29.73154572,0,0,,,,1,1,,0.03,nav,1,1955,2,, 21315,NJBF000060858,205 N ARGYLE AVE,Margate City,NJ,39.33665139,-74.49667964,RES1,3001,,17,NE,1951,1951,3103,2,1,1329.369537,1329.369537,3505,NO,40.12,54.39,3,5.98,6106,113.457231,123.269287,132.976656,139.539187,I,Above,Gable,0,5701,,47.25655487,0,1.2,,,,1,1,,0.03,nav,1,1951,2,, 21316,NJBF000058303,428 N NASSAU AVE,Margate City,NJ,39.33206344,-74.51156037,RES1,3001,,18,NE,1952,1952,3102,1,1,1099.525267,1099.525267,3505,NO,16.78,22.1,3,-0.72,6106,113.193505,123.057482,132.752621,139.302063,I,Above,Gable,0,5701,,19.44025444,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21317,NJBF000056776,4 N HUNTINGTON AVE,Margate City,NJ,39.32923618,-74.50167856,RES1,3001,,17,NE,1925,1925,3102,2,1,1935.919066,1935.919066,3505,NO,31.03,45.93,3,-2.81,6106,113.451583,123.264164,132.965802,139.542192,I,Above,Hip,0,5701,,38.47793063,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21318,NJBF000056717,3 N HANOVER AVE,Margate City,NJ,39.32911544,-74.50186801,RES1,3001,,21,NE,1930,2018,3102,2,1,1250.951187,1250.951187,3505,NO,35.68,48.96,3,6.68,6106,113.449167,123.262192,132.963643,139.539935,I,Above,Gable,0,5701,,42.32484796,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21319,NJBF000054171,17 S BENSON AVE,Margate City,NJ,39.322612,-74.5120175,RES1,3001,,17,NE,1962,1962,3102,2,1,894.2724219,894.2724219,3505,NO,23.44,37.64,3,-2.45,6106,113.322171,123.157408,132.84905,139.416543,I,Above,Hip,0,5701,,30.53705004,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 21320,NJBF000056491,23 N LANCASTER AVE,Margate City,NJ,39.32859043,-74.50587578,RES1,3001,,18,NE,1957,1957,3102,2,1,1035.132182,1035.132182,3505,NO,39.48,53.26,3,7.12,6106,113.368661,123.197303,132.895518,139.465068,I,Above,Flat,0,5701,,46.37110981,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 21321,NJBF000055727,109 N SUMNER AVE,Margate City,NJ,39.32683015,-74.51067328,RES1,3001,,20,NE,2011,2011,3102,3,1,1339.908308,1339.908308,3505,NO,48.83,62.23,3,7.64,6106,113.289069,123.13271,132.826981,139.390208,I,Above,Gable,0,5701,,55.5297057,0,0,,,,1,1,,0.03,nav,1,2011,3,, 21322,NJBF000053979,9611 WINCHESTER AVE,Margate City,NJ,39.32198949,-74.51828699,RES3A,3001,,19,NE,2002,2002,3301,2,1,1730.940642,1730.940642,3501,NO,37.15,42.62,7,13.76,6106,113.194973,123.054402,132.742001,139.297272,I,Above,Gable,0,5701,,39.88238628,0,0,,,,1,1,,0.03,nav,1,2002,2,, 21323,NJBF000057702,432 N PEMBROKE AVE,Margate City,NJ,39.33102092,-74.51242687,RES1,3001,,19,NE,1988,1988,3102,3,1,1723.096798,1723.096798,3505,NO,48.81,55.01,3,7.93,6106,113.189457,123.054011,132.748364,139.298584,I,Above,Gable,0,5701,,51.91412588,0,1.1,,,,1,1,,0.03,nav,1,1988,3,, 21324,NJBF000060680,711 N JEROME AVE,Margate City,NJ,39.33638746,-74.51131363,RES1,3001,,17,NE,1945,1945,3102,2,1,1199.170751,1199.170751,3505,NO,30.43,39.34,3,-1.57,6106,113.13735,123.012944,132.708838,139.246334,I,Above,Gable,0,5701,,34.88309413,0,1.2,,,,1,1,,0.03,nav,1,1945,2,, 21325,NJBF000060215,14 W GILMAR CIRCLE,Margate City,NJ,39.33558841,-74.50679093,RES1,3001,,18,NE,1968,1968,3101,2,1,1061.87285,1061.87285,3505,NO,28.82,34.04,3,6.02,6110,113.24858,123.101955,132.800958,139.350017,I,Above,Hip,0,5701,,31.4289912,0,0,,,,1,1,,0.35,nav,1,1968,2,, 21326,NJBF000056628,208 N PEMBROKE AVE,Margate City,NJ,39.32890155,-74.51038001,RES1,3001,,17,NE,1949,1949,3101,1,1,1028.07812,1028.07812,3505,NO,14.79,21.24,3,1.61,6106,113.265203,123.114239,132.809378,139.36896,I,Above,Gable,0,5701,,18.01910012,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 21327,NJBF000058374,117 N GRANVILLE AVE,Margate City,NJ,39.33219014,-74.50233947,RES1,3001,,17,NE,1960,1960,3101,1,1,1440.197425,1440.197425,3505,NO,14.41,27.88,3,-2.78,6106,113.394856,123.219075,132.920944,139.488709,I,Above,Flat,0,5701,,21.14645425,0,0,,,,1,1,,0.03,nav,1,1960,1,, 21328,NJBF000055076,15 S PEMBROKE AVE,Margate City,NJ,39.32506458,-74.50620817,RES1,3001,,NaN,NE,1925,0,3102,2,1,1391.393748,1391.393748,3505,NO,30.02,39.74,3,2.26,6106,113.412797,123.231617,132.928325,139.503653,I,Above,Hip,0,5701,,34.88361523,0,0,,,,1,1,,0.03,nav,1,1925,2,, 21329,NJBF000061696,420 N DELAVAN AVE,Margate City,NJ,39.33809649,-74.50299178,RES1,3001,,17,NE,1952,1952,3102,2,1,1542.926888,1542.926888,3505,NO,25.22,34.8,3,1.16,6106,113.297632,123.1411,132.843229,139.390574,I,Above,Hip,0,5701,,30.0115729,0,0,,,,1,1,,0.03,nav,1,1952,2,, 21330,NJBF000056222,119 N QUINCY AVE,Margate City,NJ,39.32799174,-74.50988654,RES1,3001,,17,NE,1916,1916,3102,2,1,1754.544691,1754.544691,3505,NO,23.41,31.54,3,-2.46,6106,113.289291,123.133307,132.828497,139.39106,I,Above,Hip,0,5701,,27.47482407,0,1.1,,,,1,1,,0.03,nav,1,1916,2,, 21331,NJBF000055680,13 N QUINCY AVE,Margate City,NJ,39.3267217,-74.50868958,RES1,3001,,17,NE,1910,1910,3102,2,1,1380.394375,1380.394375,3505,NO,32.7,40.47,3,-2.27,6106,113.334116,123.168911,132.864489,139.432032,I,Above,Hip,0,5701,,36.58437886,0,1.2,,,,1,1,,0.03,nav,1,1910,2,, 21332,NJBF000059991,54 SEASIDE COURT,Margate City,NJ,39.33520715,-74.50857312,RES1,3001,,19,NE,1988,1988,3101,2,1,1525.272084,1525.272084,3505,NO,31.05,39.34,3,8.17,6106,113.214576,123.074716,132.772388,139.319125,I,Above,Gable,0,5701,,35.19137271,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 21333,NJBF000059118,112 N DOUGLAS AVE,Margate City,NJ,39.33359007,-74.49938068,RES1,3001,,19,NE,1999,1999,3103,3,1,1151.781579,1151.781579,3505,NO,48.68,60.8,3,4.44,6110,113.440291,123.255703,132.960277,139.529312,I,Above,Gable,0,5701,,54.74136317,0,0,,,,1,1,,0.35,nav,1,1999,3,, 21334,NJBF000053917,27 S DECATUR AVE,Margate City,NJ,39.32176332,-74.51183431,RES3E,3001,,18,ME,1956,1956,3301,2,1,2720.384594,2720.384594,3507,NO,36.92,50.39,1,1.01,6106,113.338864,123.170402,132.861747,139.430781,I,Above,Hip,0,5701,,43.65265976,0,0,,,,1,1,,0.03,nav,1,1956,2,, 21335,NJBF000061403,7813 WELLINGTON AVE,Margate City,NJ,39.33757732,-74.5050411,RES1,3001,,18,NE,1972,1972,3102,2,1,1731.796265,1731.796265,3505,NO,40.19,52.21,3,4.91,6106,113.259474,123.110596,132.811084,139.356755,I,Above,Gable,0,5701,,46.19622114,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 21336,NJBF000054536,105 S RUMSON AVE,Margate City,NJ,39.32366834,-74.50669803,RES1,3001,,19,NE,1963,1963,3102,2,1,2553.516568,2553.516568,3505,NO,26.71,40.15,3,-2.63,6106,113.422652,123.238958,132.934713,139.511135,I,Above,Gable,0,5701,,33.43059844,0,0.1,,,,1,1,,0.03,nav,1,1963,2,, 21337,NJBF000061498,16 BAYSIDE COURT,Margate City,NJ,39.33774772,-74.51067829,RES1,3001,,19,NE,1999,1999,3102,2,1,1742.03839,1742.03839,3505,NO,42.68,52.79,3,6.77,6106,113.132312,123.008875,132.705272,139.239673,I,Above,Hip,0,5701,,47.73580508,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 21338,NJBF000058664,4 WEST DRIVE,Margate City,NJ,39.33270429,-74.4949461,RES1,3001,,19,NE,1925,1925,3102,2,1,1140.772782,1140.772782,3505,NO,24.58,33.66,3,2.86,6106,113.550531,123.344325,133.052598,139.631944,I,Above,Hip,0,5701,,29.12036717,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21339,NJBF000058871,111 N EXETER AVE,Margate City,NJ,39.33309374,-74.50010911,RES1,3001,,17,NE,1957,1957,3102,2,1,1523.97503,1523.97503,3505,NO,40.43,46.28,3,4.55,6106,113.431222,123.248382,132.952252,139.521527,I,Above,Gable,0,5701,,43.35513743,0,0,,,,1,1,,0.03,nav,1,1957,2,, 21340,NJBF000061677,419 N CLERMONT AVE,Margate City,NJ,39.33805713,-74.5016922,RES1,3001,,17,NE,1960,1960,3102,2,1,1588.447824,1588.447824,3505,NO,29.94,44.89,3,3.72,6106,113.326947,123.164594,132.867778,139.417392,I,Above,Hip,0,5701,,37.41643344,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21341,NJBF000057053,,Margate City,NJ,39.32982137,-74.49618662,COM1,3001,,NaN,ME,1969,0,3401,2,1,4589.794593,4589.794593,3507,NO,21.49,32.96,1,-0.58,6106,113.563993,123.354788,133.061213,139.64643,I,Above,Flat,0,NaN,,27.22546447,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21342,NJBF000061553,609 N HUNTINGTON AVE,Margate City,NJ,39.33784739,-74.50923188,RES1,3001,,18,NE,1974,1974,3102,2,1,1606.428513,1606.428513,3505,NO,29.9,43.09,3,5.26,6106,113.162941,123.033348,132.730752,139.267676,I,Above,Gable,0,5701,,36.49310424,0,0,,,,1,1,,0.03,nav,1,1974,2,, 21343,NJBF000053549,14 S MADISON AVE,Margate City,NJ,39.32034901,-74.51627558,RES1,3001,,43,NE,1945,1945,3102,2,2,1347.085047,1347.085047,3507,NO,34.7,47.47,1,-0.61,6106,113.263512,123.108678,132.796558,139.358514,I,Above,Hip,0,5701,,41.08563939,0,0,,,,1,1,,0.03,nav,1,1945,2,, 21344,NJBF000062796,8105 BAYSHORE DR,Margate City,NJ,39.34024385,-74.51112225,RES1,3001,,22,NE,1990,1990,3102,2,1,4360.816417,4360.816417,3505,NO,36.52,47.41,3,4.14,6106,113.087775,122.973011,132.669099,139.194078,I,Above,Hip,0,5701,,41.9676566,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 21345,NJBF000059335,11 W COLMAR CIRCLE,Margate City,NJ,39.33403274,-74.50454372,RES1,3001,,17,NE,1958,1958,3101,1,1,1468.275334,1468.275334,3505,NO,12.28,20.65,3,1.53,6106,113.320122,123.159248,132.859736,139.417944,I,Above,Flat,0,5701,,16.46586377,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 21346,NJBF000060206,327 N GLADSTONE AVE,Margate City,NJ,39.33558342,-74.50415733,RES1,3001,,17,NE,1977,1977,3101,2,1,2063.377009,2063.377009,3505,NO,26.22,32.3,3,-2.48,6106,113.306857,123.148652,132.849651,139.403697,I,Above,Flat,0,5701,,29.25957473,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 21347,NJBF000055567,9005 MONMOUTH AVE,Margate City,NJ,39.32643419,-74.51364676,RES1,3001,,19,NE,1930,1930,3102,2,1,1829.577381,1829.577381,3505,NO,36.8,51.25,3,1.95,6106,113.229764,123.084839,132.777061,139.334706,I,Above,Flat,0,5701,,44.02316981,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21348,NJBF000061243,216 N ARGYLE AVE,Margate City,NJ,39.33729682,-74.4978266,RES1,3001,,17,NE,1950,1950,3103,1,1,1068.282426,1068.282426,3505,NO,22.1,34.58,3,6.19,6106,113.422948,123.241693,132.948111,139.506494,I,Above,Gable,0,5701,,28.33960414,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21349,NJBF000056116,308 N VENDOME AVE,Margate City,NJ,39.32776269,-74.51491677,RES1,3001,,17,NE,1955,1955,3102,1,1,1756.974005,1756.974005,3505,NO,13.66,19.3,3,-2.43,6106,113.182349,123.047262,132.739169,139.291349,I,Above,Gable,0,5701,,16.4780281,0,0,,,,1,1,,0.03,nav,1,1955,1,, 21350,NJBF000054355,24B N WASHINGTON AVE,Margate City,NJ,39.3231575,-74.51517,RES3C,3004,,39,ME,1984,1984,3301,3,1,4143.682062,4143.682062,3505,NO,41.79,48.83,3,2.11,6106,113.245242,123.09567,132.785615,139.345743,I,Above,Flat,0,5701,,45.30726983,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 21351,NJBF000062433,8201 BAYSHORE DR WEST,Margate City,NJ,39.33945402,-74.51209642,RES1,3001,,20,NE,1981,1981,3102,2,1,5800.229123,5800.229123,3505,NO,38.96,48.09,3,8.1,6106,113.077119,122.964632,132.660087,139.185905,I,Above,Flat,0,5701,,43.52468828,0,0,,,,1,1,,0.03,nav,1,1981,2,, 21352,NJBF000058288,207 N HANOVER AVE,Margate City,NJ,39.33203937,-74.50462105,RES1,3001,,17,NE,1957,1957,3101,1,1,1189.203736,1189.203736,3505,NO,18.17,24.26,3,1.65,6106,113.346717,123.180393,132.880451,139.444223,I,Above,Hip,0,5701,,21.21542966,0,0,,,,1,1,,0.03,nav,1,1957,1,, 21353,NJBF000056459,115 S ESSEX AVE,Margate City,NJ,39.32850819,-74.49536178,RES1,3001,,19,NE,1977,1977,3102,2,1,2972.313191,2972.313191,3505,NO,31.59,42.44,3,2.04,6106,113.600866,123.384236,133.090981,139.680489,I,Above,Flat,0,5701,,37.01605728,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 21354,NJBF000060417,304 N DELAVAN AVE,Margate City,NJ,39.33593223,-74.50092852,RES1,3001,,17,NE,1950,1950,3102,1,1,1849.989508,1849.989508,3505,NO,12.07,17.56,3,-0.45,6106,113.373313,123.201942,132.905574,139.464144,I,Above,Gable,0,5701,,14.81083336,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21355,NJBF000058248,12 N DELAVAN AVE,Margate City,NJ,39.33197235,-74.49716254,RES1,3001,,17,NE,1955,1955,3102,2,1,1241.783922,1241.783922,3505,NO,29.79,41.15,3,8.02,6106,113.511997,123.313237,133.019374,139.597201,I,Above,Gable,0,5701,,35.46955583,0,0,,,,1,1,,0.03,nav,1,1955,2,, 21356,NJBF000055168,109 S LANCASTER AVE,Margate City,NJ,39.32535029,-74.50304022,RES1,3001,,19,NE,1938,1938,3102,2,1,1231.603082,1231.603082,3505,NO,21.94,30.32,3,-1.33,6106,113.478015,123.284277,132.983482,139.564382,I,Above,Flat,0,5701,,26.12893768,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 21357,NJBF000059119,,Margate City,NJ,39.33359279,-74.49893037,RES1,3001,,NaN,NE,1969,0,3103,4,1,1227.334637,1227.334637,3505,NO,47.3,53.4,3,3.17,6106,113.450197,123.263665,132.968622,139.538433,I,Above,Flat,0,5701,,50.34917106,0,0,,,,1,1,,0.03,nav,1,1969,4,, 21358,NJBF000059342,,Margate City,NJ,39.33405363,-74.50523074,RES1,3001,,NaN,NE,1969,0,3101,1,1,2802.635121,2802.635121,3505,NO,15.99,28.67,3,0.28,6106,113.304662,123.14685,132.846817,139.403642,I,Above,Gable,0,5701,,22.32984575,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21359,NJBF000063863,7402 BAYSHORE DR,Margate City,NJ,39.34291328,-74.50235913,RES1,3001,,18,NE,1987,1987,3102,3,1,2421.902157,2421.902157,3505,NO,43.58,55.52,3,4.89,6106,113.245877,123.098581,132.80115,139.330394,I,Above,Gable,0,5701,,49.55047951,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 21360,NJBF000054262,17 S VENDOME AVE,Margate City,NJ,39.32289373,-74.50971301,RES1,3001,,22,NE,2013,2013,3103,3,1,1350.585874,1350.585874,3505,NO,55.58,69.1,3,0.09,6106,113.368248,123.194717,132.888012,139.459687,I,Above,Gable,0,5701,,62.34142757,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 21361,NJBF000053927,19-21 N MADISON AVE,Margate City,NJ,39.32180709,-74.51691646,RES1,3001,,20,NE,2000,2000,3102,2,1,2445.387476,2445.387476,3507,NO,22.56,32.9,1,0.33,6106,113.227542,123.080578,132.768854,139.327365,I,Above,Hip,0,5701,,27.73211953,0,0,,,,1,1,,0.03,nav,1,2000,2,, 21362,NJBF000055519,201 N WILSON AVE,Margate City,NJ,39.3263144,-74.51388457,RES1,3001,,47,NE,1950,1950,3102,2,2,894.2851298,894.2851298,3505,NO,26.09,32.69,3,-1.64,6106,113.226328,123.082023,132.774054,139.331413,I,Above,Gable,0,5701,,29.3903677,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21363,NJBF000061792,421 N DELAVAN AVE,Margate City,NJ,39.3382626,-74.50265762,RES1,3001,,17,NE,1952,1952,3102,1,1,2136.021411,2136.021411,3505,NO,15.51,25.93,3,0.88,6106,113.302718,123.145154,132.84756,139.39484,I,Above,Hip,0,5701,,20.7233863,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21364,NJBF000057444,,Margate City,NJ,39.33058695,-74.51523929,RES1,3001,,NaN,NE,1969,0,3102,2,1,2364.754417,2364.754417,3505,NO,35.17,42.01,3,4.99,6106,113.133929,123.009356,132.701867,139.246934,I,Above,Hip,0,5701,,38.59047638,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21365,NJBF000057877,438 N PEMBROKE AVE,Margate City,NJ,39.33130044,-74.51267961,RES1,3001,,20,NE,1953,2017,3102,2,1,1056.626054,1056.626054,3505,NO,35.8,40.81,3,5.02,6106,113.179855,123.046376,132.74063,139.289603,I,Above,Gable,0,5701,,38.30722264,0,0,,,,1,1,,0.03,nav,1,1953,2,, 21366,NJBF000063333,7907 BAYSHORE DR,Margate City,NJ,39.34143229,-74.50849405,RES1,3001,,19,NE,1975,1975,3102,2,1,3871.169652,3871.169652,3505,NO,33.66,40.92,3,-1.98,6106,113.129765,123.006261,132.704145,139.229658,I,Above,Gable,0,5701,,37.29339062,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 21367,NJBF000062136,404 N FREDERICKSBURG AVE,Margate City,NJ,39.33886171,-74.4981725,RES1,3001,,19,NE,2000,2000,3103,2,1,2485.660884,2485.660884,3505,NO,32.15,40.13,3,7.51,6110,113.393785,123.21808,132.9243,139.475942,I,Above,Gable,0,5701,,36.14269734,0,1.1,,,,1,1,,0.35,nav,1,2000,2,, 21368,NJBF000055028,110 S MANSFIELD AVE,Margate City,NJ,39.32493102,-74.50388516,RES1,3001,,20,NE,1987,1987,3102,2,1,1845.999386,1845.999386,3505,NO,31.43,38.39,3,-0.1,6106,113.465634,123.274138,132.972523,139.552463,I,Above,Flat,0,5701,,34.91042461,0,0,,,,1,1,,0.03,nav,1,1987,2,, 21369,NJBF000056111,17 N NASSAU AVE,Margate City,NJ,39.3277488,-74.5069142,RES1,3001,,19,NE,1956,1956,3102,2,1,1152.588002,1152.588002,3505,NO,26.35,35.13,3,-1.4,6106,113.358078,123.188541,132.88573,139.45491,I,Above,Hip,0,5701,,30.74106633,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 21370,NJBF000056876,206 N NASSAU AVE,Margate City,NJ,39.32944685,-74.50905752,RES1,3001,,17,NE,1935,1935,3102,2,1,1572.937146,1572.937146,3505,NO,38.33,45.06,3,5.34,6106,113.286328,123.131367,132.827562,139.388713,I,Above,Gable,0,5701,,41.69544925,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 21371,NJBF000057917,302 N KENYON AVE,Margate City,NJ,39.33137845,-74.50807059,RES1,3001,,17,NE,1959,1959,3102,2,1,1837.173376,1837.173376,3505,NO,35.03,45.49,3,3.97,6106,113.28018,123.126876,132.82425,139.382805,I,Above,Hip,0,5701,,40.26135058,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 21372,NJBF000057734,305 N MANSFIELD AVE,Margate City,NJ,39.33106486,-74.50915305,RES1,3001,,17,NE,1952,1952,3101,1,1,1002.700373,1002.700373,3505,NO,27.53,35.51,3,8.95,6106,113.260862,123.11131,132.807855,139.364952,I,Above,Gable,0,5701,,31.52016006,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 21373,NJBF000054738,,Margate City,NJ,39.32419419,-74.51762734,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2113.58037,2113.58037,3507,NO,10.25,22.48,1,-0.91,6106,113.17614,123.040549,132.729539,139.282576,I,Above,Flat,0,5701,,16.36633705,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21374,NJBF000059154,11 EAST DRIVE,Margate City,NJ,39.33366979,-74.49388397,RES1,3001,,18,NE,1925,1925,3102,2,1,1285.235915,1285.235915,3505,NO,33.11,44.88,3,8.83,6106,113.560402,123.352331,133.061777,139.639519,I,Above,Hip,0,5701,,38.99656619,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21375,NJBF000058578,401 N KENYON AVE,Margate City,NJ,39.33254524,-74.50863837,RES1,3001,,17,NE,1963,1963,3102,2,1,1464.14118,1464.14118,3505,NO,38.1,46.15,3,3.3,6106,113.250969,123.103637,132.800855,139.355168,I,Above,Gable,0,5701,,42.12771141,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 21376,NJBF000053828,21 N MONROE AVE,Margate City,NJ,39.3214235,-74.5177955,RES1,3001,,45,NE,1952,1952,3102,1,2,908.2052426,908.2052426,3507,NO,21.23,32.6,1,2.56,6106,113.214198,123.069555,132.75714,139.314347,I,Above,Gable,0,5701,,26.91875056,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 21377,NJBF000056926,30 N JASPER AVE,Margate City,NJ,39.32955512,-74.50439777,RES1,3001,,17,NE,1940,1940,3101,1,1,1246.519636,1246.519636,3505,NO,17.87,25.53,3,0.35,6106,113.38721,123.212464,132.912073,139.48246,I,Above,Hip,0,5701,,21.69929251,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 21378,NJBF000056266,211 N SUMNER AVE,Margate City,NJ,39.32810024,-74.51195362,RES1,3001,,17,NE,1945,1945,3101,1,1,1178.605267,1178.605267,3505,NO,13.27,19.73,3,-0.42,6106,113.242363,123.095623,132.789482,139.347428,I,Above,Flat,0,5701,,16.50164897,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 21379,NJBF000055091,113 S LANCASTER AVE,Margate City,NJ,39.325115,-74.502838,RES1,3001,,18,NE,1952,1952,3102,2,1,1667.348452,1667.348452,3505,NO,30.12,36.58,3,0.78,6106,113.485875,123.290523,132.98979,139.571404,I,Above,Hip,0,5701,,33.34846693,0,0.1,,,,1,1,,0.03,nav,1,1952,2,, 21380,NJBF000057060,8606 AMHERST AVE,Margate City,NJ,39.32983528,-74.50984733,RES1,3001,,17,NE,1955,1955,3102,2,1,1506.629893,1506.629893,3505,NO,27.2,41.34,3,0.65,6106,113.263364,123.113027,132.808788,139.36739,I,Above,Gable,0,5701,,34.27399774,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 21381,NJBF000062741,7911 LAGOON DRIVE,Margate City,NJ,39.34012116,-74.50873699,RES1,3001,,20,NE,1976,1976,3102,2,1,4002.392301,4002.392301,3505,NO,41,55.76,3,7.2,6106,113.142375,123.016614,132.714382,139.244291,I,Above,Hip,0,5701,,48.37896823,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 21382,NJBF000060449,309 N DOUGLAS AVE,Margate City,NJ,39.33599347,-74.50131549,RES1,3001,,17,NE,1964,1964,3102,2,1,2180.533986,2180.533986,3505,NO,37.32,49.1,3,5.18,6106,113.363932,123.194413,132.897734,139.455436,I,Above,Hip,0,5701,,43.21138755,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 21383,NJBF000061833,6 ESSEX CT,Margate City,NJ,39.33834283,-74.50521397,RES1,3001,,18,NE,1971,1971,3102,2,1,1517.270851,1517.270851,3505,NO,43.68,58.06,3,8.17,6106,113.245016,123.098943,132.799332,139.341978,I,Above,Gable,0,5701,,50.87079428,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 21384,NJBF000059100,17 CIRCLE DRIVE,Margate City,NJ,39.33354628,-74.49481549,RES1,3001,,18,NE,1926,1926,3102,2,1,1494.857275,1494.857275,3505,NO,38.35,52.18,3,6.38,6106,113.54161,123.337194,133.045763,139.622517,I,Above,Gable,0,5701,,45.26816224,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 21385,NJBF000055829,10 S KNIGHT AVE,Margate City,NJ,39.32707991,-74.50343443,RES1,3001,,18,NE,1961,1961,3102,2,1,1082.239411,1082.239411,3505,NO,37.92,43.02,3,2.52,6106,113.444176,123.257616,132.957172,139.534488,I,Above,Gable,0,5701,,40.47007508,0,0,,,,1,1,,0.03,nav,1,1961,2,, 21386,NJBF000058981,122 N EXETER AVE,Margate City,NJ,39.33329956,-74.5008148,RES1,3001,,17,NE,1953,1953,3102,2,1,1423.426053,1423.426053,3505,NO,29.5,44.27,3,1.67,6106,113.412745,123.233552,132.936878,139.504253,I,Above,Hip,0,5701,,36.88399539,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 21387,NJBF000055396,8 S MANSFIELD AVE,Margate City,NJ,39.32595617,-74.50480301,RES1,3001,,19,NE,1930,1930,3102,2,1,1486.001918,1486.001918,3505,NO,23.95,38.43,3,0.74,6106,113.430525,123.24624,132.94434,139.520958,I,Above,Hip,0,5701,,31.18888832,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 21388,NJBF000059015,,Margate City,NJ,39.33337405,-74.49696174,RES1,3001,,NaN,NE,1969,0,3102,2,1,1127.314222,1127.314222,3505,NO,34.85,44.91,3,7.78,6106,113.496679,123.301029,133.007644,139.581506,I,Above,Gable,0,5701,,39.877813,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21389,NJBF000054451,25 N WASHINGTON AVE,Margate City,NJ,39.32344312,-74.51451447,RES1,3001,,21,NE,2006,2006,3102,2,1,2800.678255,2800.678255,3501,NO,19.29,32.61,7,-4.93,6106,113.255281,123.103923,132.794392,139.355455,I,Above,Hip,0,5701,,25.95263054,0,0,,,,1,1,,0.03,nav,1,2006,2,, 21390,NJBF000058448,14 N CLERMONT AVE,Margate City,NJ,39.33233647,-74.496717,RES1,3001,,19,NE,1929,1929,3102,2,1,996.4978769,996.4978769,3505,NO,44.87,53.32,3,6.08,6106,113.516685,123.317047,133.023659,139.601183,I,Above,Gable,0,5701,,49.09636997,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 21391,NJBF000061656,422 N CLERMONT AVE,Margate City,NJ,39.33801948,-74.50213865,RES1,3001,,17,NE,1959,1959,3102,2,1,1476.235301,1476.235301,3505,NO,34.35,44.74,3,1.89,6106,113.317579,123.157091,132.859906,139.40894,I,Above,Hip,0,5701,,39.54167609,0,0,,,,1,1,,0.03,nav,1,1959,2,, 21392,NJBF000061713,424 N CLERMONT AVE,Margate City,NJ,39.33813344,-74.50227031,RES1,3001,,17,NE,1959,1959,3102,1,1,1655.039779,1655.039779,3505,NO,19.39,25.33,3,8.81,6106,113.313104,123.153491,132.856205,139.404602,I,Above,Hip,0,5701,,22.35941685,0,0,,,,1,1,,0.03,nav,1,1959,1,, 21393,NJBF000059504,20 W COLMAR CIRCLE,Margate City,NJ,39.33436214,-74.50554402,RES1,3001,,17,NE,1953,1953,3101,1,1,2266.240761,2266.240761,3505,NO,13.95,20.14,3,0.32,6106,113.293401,123.137838,132.837615,139.392902,I,Above,Gable,0,5701,,17.04688478,0,0,,,,1,1,,0.03,nav,1,1953,1,, 21394,NJBF000059739,18 EAST DRIVE,Margate City,NJ,39.33477469,-74.49501223,RES1,3001,,18,NE,1927,1927,3102,2,1,1489.738183,1489.738183,3505,NO,28.02,35.11,3,4.24,6106,113.520104,123.319913,133.028526,139.600592,I,Above,Hip,0,5701,,31.56505728,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 21395,NJBF000059806,20 EAST DRIVE,Margate City,NJ,39.33488408,-74.49499611,RES1,3001,,19,NE,1927,1927,3102,2,1,1727.325979,1727.325979,3505,NO,32.18,44.07,3,7.32,6106,113.518939,123.318976,133.027621,139.599306,I,Above,Hip,0,5701,,38.12941513,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 21396,NJBF000058242,24 N ESSEX AVE,Margate City,NJ,39.33196001,-74.49856353,RES1,3001,,17,NE,1939,1939,3102,2,1,1367.012261,1367.012261,3505,NO,32.81,40.4,3,-0.83,6106,113.481301,123.288538,132.993466,139.568844,I,Above,Hip,0,5701,,36.60370362,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 21397,NJBF000054645,101 N WASHINGTON AVE,Margate City,NJ,39.32395019,-74.51500315,COM4,3001,4C,NaN,ME,1969,0,3401,2,1,9672.166194,9672.166194,3507,NO,36.45,48.02,1,-0.1,6106,113.237033,123.089489,132.77989,139.339077,I,Above,Hip,0,5701,,42.23421118,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21398,NJBF000054688,,Margate City,NJ,39.32407148,-74.51521718,RES1,3001,,NaN,NE,2005,0,3102,2,1,1341.955376,1341.955376,3507,NO,27.98,33.64,1,0.14,6106,113.230555,123.084333,132.774659,139.333183,I,Above,Gable,0,5701,,30.81313616,0,0,,,,1,1,,0.03,nav,1,2005,2,, 21399,NJBF000056602,10 S GRANVILLE AVE,Margate City,NJ,39.32884641,-74.49976214,RES1,3001,,17,NE,1948,1948,3102,2,1,1102.66225,1102.66225,3505,NO,25.73,31.28,3,-2.59,6106,113.499326,123.302501,133.005579,139.58643,I,Above,Gable,0,5701,,28.50790575,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 21400,NJBF000057128,9 N HAVERFORD AVE,Margate City,NJ,39.32998403,-74.50104319,RES1,3001,,18,NE,1928,1928,3102,2,1,1391.812495,1391.812495,3505,NO,30.7,44.02,3,7.77,6106,113.454845,123.266948,132.969314,139.545214,I,Above,Hip,0,5701,,37.36344121,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 21401,NJBF000057181,8 N GRANVILLE AVE,Margate City,NJ,39.33008997,-74.50086439,RES1,3001,,17,NE,1940,1940,3102,2,1,1760.146245,1760.146245,3505,NO,32.34,41.79,3,4.09,6106,113.457267,123.268917,132.971457,139.547446,I,Above,Gable,0,5701,,37.06529545,0,0,,,,1,1,,0.03,nav,1,1940,2,, 21402,NJBF000055931,7 S KNIGHT AVE,Margate City,NJ,39.32731834,-74.50318908,RES1,3001,,17,NE,1952,1952,3101,1,1,1473.564007,1473.564007,3505,NO,19.82,31.18,3,2.89,6106,113.446099,123.259238,132.959067,139.536421,I,Above,Hip,0,5701,,25.50069918,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21403,NJBF000055896,9 S KNIGHT AVE .,Margate City,NJ,39.32723237,-74.50312395,RES1,3001,,20,NE,1920,1920,3102,2,1,1601.410524,1601.410524,3505,NO,35.45,50.42,3,2.55,6106,113.448773,123.261364,132.961214,139.53885,I,Above,Flat,0,5701,,42.93208898,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 21404,NJBF000058020,14 S BARCLAY AVE,Margate City,NJ,39.33156637,-74.49389719,RES1,3001,,19,NE,1930,1930,3102,2,1,1418.364431,1418.364431,3505,NO,32.75,39.94,3,-0.14,6106,113.589658,123.375732,133.084691,139.669273,I,Above,Gable,0,5701,,36.34781938,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 21405,NJBF000058934,427 N KENYON AVE,Margate City,NJ,39.33320582,-74.50933051,RES1,3001,,20,NE,2016,2016,3102,3,1,567.342086,567.342086,3505,NO,64.89,74.96,3,8.52,6106,113.22625,123.08391,132.780764,139.331824,I,Above,Hip,0,5701,,69.92358056,0,0,,,,1,1,,0.03,nav,1,2016,3,, 21406,NJBF000056549,4 N IROQUOIS AVE,Margate City,NJ,39.32872021,-74.50280294,RES1,3001,,17,NE,1925,1925,3102,2,1,1397.718929,1397.718929,3505,NO,27.49,35.51,3,5.5,6106,113.434303,123.250136,132.950727,139.526063,I,Above,Gable,0,5701,,31.49764095,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21407,NJBF000056535,5 N JASPER AVE,Margate City,NJ,39.32868976,-74.50306675,RES1,3001,,17,NE,1925,1925,3102,2,1,1483.317534,1483.317534,3505,NO,32.36,41.54,3,5.25,6106,113.428934,123.245809,132.946185,139.521072,I,Above,Hip,0,5701,,36.94967084,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21408,NJBF000056496,3 N JASPER AVE,Margate City,NJ,39.32860308,-74.50296215,RES1,3001,,18,NE,1925,1925,3102,2,1,1796.610702,1796.610702,3505,NO,38.79,45.49,3,3.82,6106,113.432496,123.248653,132.949083,139.524356,I,Above,Hip,0,5701,,42.14221506,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21409,NJBF000056487,102 S FRANKLIN AVE,Margate City,NJ,39.32858012,-74.49738126,RES1,3001,,NaN,NE,1925,0,3102,2,1,2075.47768,2075.47768,3505,NO,42.67,51.98,3,8.95,6106,113.55547,123.347661,133.052664,139.638432,I,Above,Hip,0,5701,,47.32499738,0,0,,,,1,1,,0.03,nav,1,1925,2,, 21410,NJBF000056396,105 S FRONTENAC AVE,Margate City,NJ,39.32838127,-74.49744809,RES1,3001,,19,NE,1935,1935,3102,3,1,1973.293169,1973.293169,3505,NO,56.66,70.1,3,-1.67,6106,113.556851,123.348726,133.053607,139.639648,I,Above,Hip,0,5701,,63.37786145,0,1.2,,,,1,1,,0.03,nav,1,1935,3,, 21411,NJBF000055635,111 N THURLOW AVE,Margate City,NJ,39.326619,-74.511319,RES1,3001,,17,NE,1950,1950,3102,2,1,1074.520394,1074.520394,3505,NO,27.48,34.43,3,4.63,6106,113.278016,123.123735,132.817505,139.379776,I,Above,Hip,0,5701,,30.95286228,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21412,NJBF000060171,12 S GILMAR CIRCLE,Margate City,NJ,39.33551803,-74.50637832,RES1,3001,,17,NE,1965,1965,3101,1,1,1324.646681,1324.646681,3505,NO,20.93,26.58,3,6.87,6106,113.258691,123.110054,132.809355,139.359433,I,Above,Hip,0,5701,,23.75450682,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 21413,NJBF000057203,,Margate City,NJ,39.33014334,-74.5044693,RES1,3001,,NaN,NE,1930,0,3102,2,1,1835.970255,1835.970255,3507,NO,32.62,39.06,1,-0.62,6106,113.377193,123.204542,132.904259,139.473141,I,Above,Gable,0,5701,,35.84257463,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21414,NJBF000056002,203 N THURLOW AVE,Margate City,NJ,39.32749778,-74.51222935,RES1,3001,,17,NE,1950,1950,3101,1,1,1437.349088,1437.349088,3505,NO,19.05,28.62,3,8.3,6106,113.245157,123.09765,132.791136,139.349736,I,Above,Hip,0,5701,,23.83606417,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21415,NJBF000057827,8501 AMHERST AVE,Margate City,NJ,39.33123521,-74.50797694,RES1,3001,,17,NE,1958,1958,3102,1,1,2106.764143,2106.764143,3505,NO,16.16,25.95,3,-1.97,6106,113.284303,123.130157,132.827566,139.386678,I,Above,Gable,0,5701,,21.05343484,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 21416,NJBF000055373,106 S KNIGHT AVE,Margate City,NJ,39.32591011,-74.50250489,RES1,3001,,20,NE,1950,1950,3102,3,1,1817.179491,1817.179491,3505,NO,30.89,42.23,3,-2.58,6106,113.481571,123.287345,132.987188,139.568232,I,Above,Hip,0,5701,,36.55780994,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 21417,NJBF000056060,119 N RUMSON AVE,Margate City,NJ,39.32763995,-74.51049343,RES1,3001,,17,NE,1950,1950,3102,2,1,2128.00119,2128.00119,3505,NO,35.97,49.57,3,5.1,6106,113.281142,123.126634,132.821302,139.38331,I,Above,Gable,0,5701,,42.76688748,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21418,NJBF000060978,62 BAYSIDE COURT,Margate City,NJ,39.3368455,-74.5103225,RES1,3001,,19,NE,1988,1988,3102,2,1,1492.789786,1492.789786,3505,NO,28.65,42.07,3,4.44,6106,113.152809,123.0253,132.721896,139.259954,I,Above,Gable,0,5701,,35.35989568,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 21419,NJBF000057565,102 N HUNTINGTON AVE,Margate City,NJ,39.33079014,-74.50312195,RES1,3001,,17,NE,1965,1965,3102,2,1,1207.301702,1207.301702,3507,NO,34.68,42.11,1,1.18,6106,113.397562,123.22104,132.921963,139.491914,I,Above,Gable,0,5701,,38.39567909,0,0,,,,1,1,,0.03,nav,1,1965,2,, 21420,NJBF000057786,121 N IROQUOIS AVE,Margate City,NJ,39.33115978,-74.50459091,RES1,3001,,21,NE,2013,2013,3102,3,1,1629.083851,1629.083851,3507,NO,41.98,49.62,1,-0.14,6106,113.359929,123.190866,132.890748,139.456886,I,Above,Hip,0,5701,,45.79753065,0,0,,,,1,1,,0.03,nav,1,2013,3,, 21421,NJBF000058491,216 N HUNTINGTON AVE,Margate City,NJ,39.33241054,-74.50469405,RES1,3001,,17,NE,1947,1947,3102,2,1,1354.329246,1354.329246,3505,NO,21.8,29.76,3,-1.13,6106,113.33981,123.174898,132.874977,139.437591,I,Above,Hip,0,5701,,25.78335835,0,0,,,,1,1,,0.03,nav,1,1947,2,, 21422,NJBF000058513,11 N CLERMONT AVE,Margate City,NJ,39.33244457,-74.4963724,RES1,3001,,17,NE,1949,1949,3102,1,1,1161.479412,1161.479412,3505,NO,18.18,23.55,3,6.43,6106,113.522751,123.321939,133.028879,139.606663,I,Above,Gable,0,5701,,20.86821399,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 21423,NJBF000056362,16 S HAVERFORD AVE,Margate City,NJ,39.32831019,-74.50006384,RES1,3001,,21,NE,1980,1980,3102,2,1,1244.018475,1244.018475,3505,NO,40.92,46.58,3,2.54,6106,113.500393,123.30323,133.005888,139.587269,I,Above,Gable,0,5701,,43.74832716,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 21424,NJBF000061427,18 HARBOUR LANE,Margate City,NJ,39.33761231,-74.50810704,RES1,3001,,18,NE,1982,1982,3102,2,1,1654.639985,1654.639985,3505,NO,28.71,41.43,3,1.6,6106,113.191124,123.0559,132.754099,139.293982,I,Above,Gable,0,5701,,35.06865231,0,0,,,,1,1,,0.03,nav,1,1982,2,, 21425,NJBF000058401,21 N DOUGLAS AVE,Margate City,NJ,39.33225074,-74.49766348,RES1,3001,,17,NE,1933,1933,3102,1,1,1245.852974,1245.852974,3505,NO,17.03,27.83,3,-1.72,6106,113.497039,123.30123,133.006998,139.583133,I,Above,Flat,0,5701,,22.43088547,0,1.1,,,,1,1,,0.03,nav,1,1933,1,, 21426,NJBF000059599,16 E COLMAR CIRCLE,Margate City,NJ,39.33452439,-74.50474034,RES1,3001,,17,NE,1955,1955,3101,1,1,1394.503684,1394.503684,3505,NO,19.74,26.06,3,3.87,6106,113.308867,123.150246,132.850657,139.406988,I,Above,Gable,0,5701,,22.90258831,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 21427,NJBF000056888,7800 ATLANTIC AVE,Margate City,NJ,39.32946515,-74.49587793,RES1,3001,,21,NE,2008,2008,3102,3,1,1469.60367,1469.60367,3505,NO,35.13,47.62,3,-1.29,6106,113.57586,123.364282,133.070873,139.657458,I,Above,Hip,0,5701,,41.37489592,0,0,,,,1,1,,0.03,nav,1,2008,3,, 21428,NJBF000060078,,Margate City,NJ,39.3353556,-74.49500331,RES1,3001,,NaN,NE,1969,0,3102,2,1,1155.965341,1155.965341,3505,NO,35.45,47.94,3,6.03,6106,113.512222,123.313565,133.022277,139.59217,I,Above,Hip,0,5701,,41.69262997,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21429,NJBF000056575,8209 VENTNOR AVE,Margate City,NJ,39.32878439,-74.50218498,RES1,3001,,17,NE,1945,1945,3102,2,1,1776.361283,1776.361283,3505,NO,34.58,42.19,3,-0.57,6106,113.446962,123.260338,132.961436,139.537829,I,Above,Flat,0,5701,,38.38543022,0,0,,,,1,1,,0.03,nav,1,1945,2,, 21430,NJBF000063593,7503 BURK AVE,Margate City,NJ,39.34213163,-74.50250527,RES1,3001,,19,NE,1988,1988,3102,2,1,2172.161554,2172.161554,3505,NO,42.51,57.29,3,5.77,6106,113.253188,123.104678,132.807181,139.339475,I,Above,Gable,0,5701,,49.89969277,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 21431,NJBF000058606,213 N HUNTINGTON AVE,Margate City,NJ,39.33260098,-74.50436309,RES1,3001,,17,NE,1956,1956,3101,1,1,1907.137039,1907.137039,3505,NO,15.8,22.73,3,4.72,6106,113.344404,123.178608,132.878979,139.441711,I,Above,Hip,0,5701,,19.26836015,0,0,,,,1,1,,0.03,nav,1,1956,1,, 21432,NJBF000061217,408 N CLERMONT AVE,Margate City,NJ,39.33724883,-74.50143498,RES1,3001,,17,NE,1959,1959,3102,1,1,1552.007937,1552.007937,3505,NO,15.44,22.1,3,-1.01,6106,113.343815,123.178201,132.881543,139.434564,I,Above,Hip,0,5701,,18.7707995,0,0,,,,1,1,,0.03,nav,1,1959,1,, 21433,NJBF000062923,7902 LAGOON DRIVE,Margate City,NJ,39.34050192,-74.50726357,RES1,3001,,18,NE,1966,1966,3102,2,1,1646.126533,1646.126533,3505,NO,33.86,46.62,3,5.75,6106,113.169807,123.038449,132.737286,139.268436,I,Above,Gable,0,5701,,40.24368355,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 21434,NJBF000055006,15 N WILSON AVE,Margate City,NJ,39.32487839,-74.51246941,RES1,3001,,17,NE,1960,1960,3102,2,1,1759.356209,1759.356209,3505,NO,46.23,52.82,3,7.93,6106,113.278565,123.123418,132.815775,139.378769,I,Above,Hip,0,5701,,49.52407774,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 21435,NJBF000054204,,Margate City,NJ,39.32273004,-74.52007792,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1516.878341,1516.878341,3505,NO,19.85,26.5,3,6.61,6106,113.144818,123.014397,132.701399,139.251487,I,Above,Flat,0,5701,,23.1749376,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21436,NJBF000054266,,Margate City,NJ,39.3229065,-74.520258,RES3A,3001,,NaN,NE,1937,0,3301,1,1,1644.417044,1644.417044,3505,NO,15.09,26.31,3,-0.48,6106,113.138225,123.009192,132.696185,139.245564,I,Above,Hip,0,5701,,20.69884752,0,0,,,,1,1,,0.03,nav,1,1937,1,, 21437,NJBF000062560,7804 BURK AVE,Margate City,NJ,39.33970314,-74.50596182,RES1,3001,,18,NE,1967,1967,3102,2,1,1663.149575,1663.149575,3505,NO,31.16,45.4,3,-1.51,6106,113.209665,123.070459,132.770295,139.306674,I,Above,Gable,0,5701,,38.28275661,0,0,,,,1,1,,0.03,nav,1,1967,2,, 21438,NJBF000061920,500 N DELAVAN AVE,Margate City,NJ,39.33847582,-74.50346089,RES1,3001,,18,NE,1968,1968,3102,2,1,1871.907133,1871.907133,3505,NO,37.3,52.18,3,5.74,6106,113.281996,123.128529,132.830298,139.375461,I,Above,Gable,0,5701,,44.74065926,0,0,,,,1,1,,0.03,nav,1,1968,2,, 21439,NJBF000057339,404 N PEMBROKE AVE,Margate City,NJ,39.33039384,-74.51180561,RES1,3001,,17,NE,1957,1957,3102,2,1,1731.61502,1731.61502,3505,NO,25.99,32.01,3,4.72,6106,113.212195,123.072097,132.7667,139.319797,I,Above,Gable,0,5701,,29.00018154,0,0,,,,1,1,,0.03,nav,1,1957,2,, 21440,NJBF000061482,11 BAYSIDE COURT,Margate City,NJ,39.33772342,-74.510041,RES1,3001,,19,NE,1990,1990,3102,2,1,1804.615169,1804.615169,3505,NO,34.79,41.43,3,4.45,6106,113.146763,123.020425,132.717259,139.253011,I,Above,Hip,0,5701,,38.10959281,0,0,,,,1,1,,0.03,nav,1,1990,2,, 21441,NJBF000058185,203 N HANOVER AVE,Margate City,NJ,39.3318535,-74.5044745,RES1,3001,,17,NE,1955,1955,3101,1,1,1201.156113,1201.156113,3505,NO,17.86,28.53,3,4.13,6106,113.352571,123.185068,132.885197,139.449752,I,Above,Hip,0,5701,,23.19300873,0,0,,,,1,1,,0.03,nav,1,1955,1,, 21442,NJBF000057892,108 N HAVERFORD AVE,Margate City,NJ,39.3313393,-74.50286296,RES1,3001,,17,NE,1950,1950,3101,1,1,1109.52653,1109.52653,3507,NO,15.48,22.95,1,-0.19,6106,113.395424,123.219413,132.920675,139.489726,I,Above,Hip,0,5701,,19.21489831,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21443,NJBF000058328,109 N GLADSTONE AVE,Margate City,NJ,39.33209936,-74.50132782,RES1,3001,,18,NE,1941,1941,3102,2,1,1629.122018,1629.122018,3505,NO,21.54,27.61,3,-1.24,6106,113.418428,123.238004,132.940666,139.510588,I,Above,Hip,0,5701,,24.57318578,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 21444,NJBF000060940,207 N ARGYLE AVE,Margate City,NJ,39.33679173,-74.49679486,RES1,3001,,17,NE,1957,1957,3103,2,1,1973.362456,1973.362456,3505,NO,34.89,49.59,3,4.79,6106,113.452739,123.265668,132.972949,139.534768,I,Above,Hip,0,5701,,42.24187619,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 21445,NJBF000057506,16 N GLADSTONE AVE,Margate City,NJ,39.33068796,-74.50053767,RES1,3001,,17,NE,1952,1952,3102,2,1,1909.825946,1909.825946,3505,NO,34.12,45.41,3,-2.03,6106,113.4559,123.267926,132.970893,139.546036,I,Above,Hip,0,5701,,39.7678565,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 21446,NJBF000054163,105 S UNION AVE,Margate City,NJ,39.32258649,-74.50846716,RES1,3001,,19,NE,1935,1935,3103,3,1,1718.412688,1718.412688,3505,NO,42.44,56.06,3,2.02,6106,113.400033,123.220196,132.9142,139.488694,I,Above,Gable,0,5701,,49.24911793,0,1.2,,,,1,1,,0.03,nav,1,1935,3,, 21447,NJBF000054351,102 S SUMNER AVE,Margate City,NJ,39.32314485,-74.50771691,RES1,3001,,20,NE,2002,2002,3103,3,1,2059.571409,2059.571409,3505,NO,35.2,43.79,3,0.75,6106,113.408118,123.226993,132.921784,139.496974,I,Above,Hip,0,5701,,39.49545379,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 21448,NJBF000053599,9606 VENTNOR AVE,Margate City,NJ,39.3205656,-74.51664839,RES1,3001,,17,NE,1935,1935,3102,1,1,973.38745,973.38745,3507,NO,20.97,34.27,1,1.95,6106,113.252141,123.099636,132.787419,139.348303,I,Above,Gable,0,5701,,27.62084977,0,0,,,,1,1,,0.03,nav,1,1935,1,, 21449,NJBF000054400,105 S SUMNER AVE,Margate City,NJ,39.32328594,-74.50729339,RES1,3001,,21,NE,2011,2011,3103,3,1,1774.224733,1774.224733,3505,NO,57.18,63.77,3,6.06,6106,113.415295,123.232847,132.928004,139.503812,I,Above,Gable,0,5701,,60.47286496,0,0,,,,1,1,,0.03,nav,1,2011,3,, 21450,NJBF000056280,4 S IROQUOIS AVE,Margate City,NJ,39.32812055,-74.50210055,RES1,3001,,20,NE,1982,1982,3102,2,1,1581.826676,1581.826676,3505,NO,40.51,51.85,3,6.04,6106,113.458368,123.269346,132.970299,139.548207,I,Above,Hip,0,5701,,46.17867826,0,0,,,,1,1,,0.03,nav,1,1982,2,, 21451,NJBF000055391,15 S MANSFIELD AVE,Margate City,NJ,39.32594935,-74.50427957,RES1,3001,,20,NE,1989,1989,3102,3,1,3423.30751,3423.30751,3505,NO,46.94,61.75,3,-0.98,6106,113.442091,123.255553,132.954045,139.531677,I,Above,Flat,0,5701,,54.34660344,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 21452,NJBF000057213,105 S CLARENDON AVE,Margate City,NJ,39.3301543,-74.49376926,RES1,3001,,20,NE,1969,1969,3102,2,1,1782.453129,1782.453129,3505,NO,23.88,33.14,3,0.03,6106,113.612446,123.393898,133.10259,139.691236,I,Above,Flat,0,5701,,28.51182088,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 21453,NJBF000058778,39 N DOUGLAS AVE,Margate City,NJ,39.33292514,-74.49829844,RES1,3001,,19,NE,2014,2014,3102,2,1,951.8465052,951.8465052,3505,NO,45.22,51.56,3,6.94,6106,113.473536,123.282385,132.987751,139.560749,I,Above,Hip,0,5701,,48.38778881,0,0,,,,1,1,,0.03,nav,1,2014,2,, 21454,NJBF000058632,3 N BRUNSWICK AVE,Margate City,NJ,39.33264554,-74.49508201,RES1,3001,,18,NE,1929,1929,3102,2,1,1396.659931,1396.659931,3505,NO,20.3,32.51,3,-1.4,6106,113.54835,123.342564,133.050701,139.63001,I,Above,Hip,0,5701,,26.40543395,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 21455,NJBF000057850,120 N HANOVER AVE,Margate City,NJ,39.33126566,-74.50442043,RES1,3001,,17,NE,1955,1955,3101,1,1,1318.128409,1318.128409,3507,NO,14.89,20.39,1,0.24,6106,113.362178,123.192691,132.892728,139.458933,I,Above,Hip,0,5701,,17.64160296,0,0,,,,1,1,,0.03,nav,1,1955,1,, 21456,NJBF000055406,210 N BENSON AVE,Margate City,NJ,39.32600998,-74.51578684,IND2,3003,,NaN,ME,1969,0,3401,1,1,1239.779764,1239.779764,3507,NO,14.48,21.73,1,0.39,6106,113.189225,123.052029,132.742805,139.296578,I,Above,Flat,0,NaN,,18.10599906,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21457,NJBF000057503,8 N FRANKLIN AVE,Margate City,NJ,39.33068299,-74.49906167,RES1,3001,,17,NE,1949,1949,3102,2,1,870.2868911,870.2868911,3505,NO,31.81,41.82,3,2.04,6106,113.488461,123.29412,132.998312,139.576213,I,Above,Hip,0,5701,,36.81636768,0,1.2,,,,1,1,,0.03,nav,1,1949,2,, 21458,NJBF000058763,8504 FULTON AVE,Margate City,NJ,39.33288549,-74.51052467,RES1,3001,,17,NE,1956,1956,3102,2,1,1510.325485,1510.325485,3505,NO,29.22,42.23,3,1.54,6106,113.204513,123.066445,132.762428,139.311876,I,Above,Flat,0,5701,,35.72704944,0,0,,,,1,1,,0.03,nav,1,1956,2,, 21459,NJBF000060290,16 W GILMAR CIRCLE,Margate City,NJ,39.33572595,-74.50686635,RES1,3001,,17,NE,1965,1965,3101,2,1,1777.314801,1777.314801,3505,NO,42.81,53.78,3,5.81,6110,113.244982,123.099074,132.798037,139.34651,I,Above,Gable,0,5701,,48.29513394,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 21460,NJBF000055785,216 N VENDOME AVE,Margate City,NJ,39.32696852,-74.51410427,RES1,3001,,17,NE,1920,1920,3102,2,1,814.0261745,814.0261745,3505,NO,22.39,31.04,3,-1.98,6106,113.21186,123.070666,132.762797,139.318397,I,Above,Flat,0,5701,,26.71333469,0,0,,,,1,1,,0.03,nav,1,1920,2,, 21461,NJBF000056139,107 N PEMBROKE AVE,Margate City,NJ,39.32780247,-74.50877662,RES1,3001,,20,NE,2005,2005,3102,2,1,2809.895319,2809.895319,3505,NO,29.79,42.39,3,6.18,6106,113.316421,123.155056,132.850945,139.416209,I,Above,Hip,0,5701,,36.08828534,0,0,,,,1,1,,0.03,nav,1,2005,2,, 21462,NJBF000056748,112 N LANCASTER AVE,Margate City,NJ,39.32916553,-74.50689778,RES1,3001,,17,NE,1930,1930,3102,2,1,1541.828861,1541.828861,3505,NO,26.61,34.45,3,2.5,6106,113.337867,123.172704,132.870346,139.436583,I,Above,Hip,0,5701,,30.5283584,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 21463,NJBF000058819,109 N EXETER AVE,Margate City,NJ,39.33298635,-74.50001781,RES1,3001,,17,NE,1960,1960,3102,2,1,1090.397416,1090.397416,3505,NO,30.11,37.75,3,4.67,6106,113.434752,123.251211,132.955136,139.524899,I,Above,Flat,0,5701,,33.93067566,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21464,NJBF000058928,14 WEST DRIVE,Margate City,NJ,39.33319692,-74.49509276,RES1,3001,,18,NE,1925,1925,3102,2,1,1506.874508,1506.874508,3505,NO,45.39,56.57,3,8.39,6106,113.540371,123.336179,133.044424,139.62192,I,Above,Hip,0,5701,,50.97633913,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21465,NJBF000063557,6 BRUNSWICK COURT,Margate City,NJ,39.34205227,-74.50388269,RES1,3001,,19,NE,1980,1980,3102,3,1,2293.08615,2293.08615,3505,NO,36.21,48.37,3,-2.93,6106,113.223685,123.081109,132.782493,139.313122,I,Above,Gable,0,5701,,42.29060938,0,1.2,,,,1,1,,0.03,nav,1,1980,3,, 21466,NJBF000055114,8901 VENTNOR AVE,Margate City,NJ,39.3251785,-74.509678,RES1,3001,,20,NE,1958,1958,3102,2,1,4058.025206,4058.025206,3505,NO,44.48,54.56,3,6.55,6106,113.335174,123.169143,132.863456,139.431712,I,Above,Flat,0,5701,,49.51990229,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 21467,NJBF000055022,11 N VENDOME AVE,Margate City,NJ,39.3249156,-74.51162889,RES1,3001,,20,NE,2007,2007,3102,3,1,1635.206259,1635.206259,3505,NO,55.55,67.03,3,-1.96,6106,113.296368,123.137773,132.830686,139.395371,I,Above,Hip,0,5701,,61.28948577,0,0,,,,1,1,,0.03,nav,1,2007,3,, 21468,NJBF000061242,418 N ESSEX AVE,Margate City,NJ,39.33729587,-74.50397403,RES1,3001,,17,NE,1952,1952,3102,2,1,1774.186223,1774.186223,3505,NO,39.78,45.38,3,5.24,6106,113.286991,123.132657,132.833957,139.382504,I,Above,Hip,0,5701,,42.58042869,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 21469,NJBF000056638,25 N KENYON AVE,Margate City,NJ,39.32894162,-74.50518726,RES1,3001,,20,NE,2006,2006,3102,3,1,1673.907075,1673.907075,3505,NO,46.36,56.49,3,7.15,6106,113.378708,123.205477,132.904311,139.474488,I,Above,Gable,0,5701,,51.42656565,0,0,,,,1,1,,0.03,nav,1,2006,3,, 21470,NJBF000058037,24 N EXETER AVE,Margate City,NJ,39.33158664,-74.49920739,RES1,3001,,17,NE,1950,1950,3102,1,1,1318.588149,1318.588149,3505,NO,12.15,18.75,3,0.8,6106,113.472421,123.281349,132.985646,139.560901,I,Above,Gable,0,5701,,15.44803873,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21471,NJBF000057739,11 N FRANKLIN AVE,Margate City,NJ,39.33107749,-74.49893238,RES1,3001,,17,NE,1950,1950,3102,1,1,1719.182022,1719.182022,3505,NO,17.63,27.01,3,-1.86,6106,113.485718,123.291975,132.996378,139.573502,I,Above,Hip,0,5701,,22.31896227,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 21472,NJBF000057522,24 N GRANVILLE AVE,Margate City,NJ,39.33072039,-74.50144518,RES1,3001,,17,NE,1949,1949,3102,2,1,1018.159394,1018.159394,3505,NO,31.34,38.84,3,-1.82,6106,113.435478,123.251508,132.953746,139.527095,I,Above,Hip,0,5701,,35.08614922,0,0,,,,1,1,,0.03,nav,1,1949,2,, 21473,NJBF000054275,12 S CEDAR GROVE AVE,Margate City,NJ,39.32294788,-74.51167579,RES1,3001,,18,NE,1952,1952,3101,1,1,1759.51442,1759.51442,3505,NO,16.06,24.81,3,-0.79,6106,113.324595,123.159543,132.851563,139.419257,I,Above,Gable,0,5701,,20.43110987,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 21474,NJBF000054209,15 S BENSON AVE,Margate City,NJ,39.32274149,-74.51193567,RES1,3001,,19,NE,1981,1981,3103,3,1,904.7410259,904.7410259,3505,NO,41.34,48.43,3,3.57,6106,113.322011,123.157349,132.849104,139.416574,I,Above,Hip,0,5701,,44.88649927,0,0,,,,1,1,,0.03,nav,1,1981,3,, 21475,NJBF000053340,9513 ATLANTIC AVE,Margate City,NJ,39.31957686,-74.51471449,RES1,3001,,18,NE,1910,1910,3102,2,2,991.6832668,991.6832668,3507,NO,32.11,43.84,1,-0.57,6106,113.309142,123.145037,132.833416,139.399536,I,Above,Flat,0,5701,,37.97384165,0,0,,,,1,1,,0.03,nav,1,1910,2,, 21476,NJBF000058345,19 N DOUGLAS AVE,Margate City,NJ,39.33214233,-74.49757366,RES1,3001,,47,NE,1925,1925,3102,2,2,1653.587758,1653.587758,3505,NO,41.61,52.84,3,6.93,6106,113.50054,123.304036,133.009856,139.586467,I,Above,Hip,0,5701,,47.22628993,0,0,,,,1,1,,0.03,nav,1,1925,2,, 21477,NJBF000062866,614 N DELAVAN AVE,Margate City,NJ,39.34038757,-74.50525702,RES1,3001,,18,NE,1964,1964,3102,2,1,1512.022584,1512.022584,3505,NO,45.33,54.82,3,6.88,6106,113.215887,123.075299,132.775668,139.310666,I,Above,Gable,0,5701,,50.07334125,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 21478,NJBF000053235,26 S MONROE AVE,Margate City,NJ,39.3192095,-74.5164045,RES1,3001,,30,NE,1998,1998,3102,2,2,2136.598388,2136.598388,3507,NO,32.09,45.73,1,1.67,6106,113.278045,123.11964,132.806805,139.369995,I,Above,Flat,0,5701,,38.90974308,0,0,,,,1,1,,0.03,nav,1,1998,2,, 21479,NJBF000053252,9703 PACIFIC AVE,Margate City,NJ,39.31926312,-74.51665389,RES1,3001,,18,NE,1980,1980,3102,2,1,3014.442326,3014.442326,3507,NO,36.51,45.45,1,1.31,6106,113.2718,123.114627,132.801679,139.364292,I,Above,Flat,0,5701,,40.97736419,0,0,,,,1,1,,0.03,nav,1,1980,2,, 21480,NJBF000053631,,Margate City,NJ,39.32067598,-74.515215,RES1,3001,,NaN,NE,1969,0,3102,2,1,1592.857275,1592.857275,3507,NO,30.27,36.98,1,1.62,6106,113.281621,123.123524,132.812206,139.375898,I,Above,Gable,0,5701,,33.62346138,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21481,NJBF000053952,9312 VENTNOR AVE,Margate City,NJ,39.32189496,-74.51428813,COM1,3001,,NaN,ME,1969,0,3401,1,1,2817.587995,2817.587995,3507,NO,12.24,23.64,1,-0.76,6106,113.283418,123.125733,132.815604,139.379498,I,Above,Flat,0,NaN,,17.94221291,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21482,NJBF000054157,108 S THURLOW AVE,Margate City,NJ,39.32257165,-74.50813262,RES1,3001,,19,NE,1950,1950,3102,2,1,1903.706603,1903.706603,3505,NO,35.19,46.37,3,-0.56,6106,113.407534,123.226239,132.92047,139.495616,I,Above,Hip,0,5701,,40.78213556,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21483,NJBF000054567,12 S SUMNER AVE,Margate City,NJ,39.32374866,-74.50831083,RES1,3001,,19,NE,1937,1937,3102,2,1,1621.129834,1621.129834,3505,NO,23.05,28.35,3,1.67,6106,113.38619,123.209601,132.90425,139.477457,I,Above,Hip,0,5701,,25.70012236,0,1.2,,,,1,1,,0.03,nav,1,1937,2,, 21484,NJBF000060877,415 N EXETER AVE,Margate City,NJ,39.33668884,-74.50364815,RES1,3001,,19,NE,1991,1991,3102,2,1,1768.232161,1768.232161,3505,NO,22.57,29.5,3,-2.37,6106,113.302651,123.145245,132.846755,139.397995,I,Above,Hip,0,5701,,26.03531916,0,1.1,,,,1,1,,0.03,nav,1,1991,2,, 21485,NJBF000059578,8405 WELLINGTON AVE,Margate City,NJ,39.33448788,-74.51050332,RES1,3001,,20,NE,1990,1990,3102,2,1,1776.26907,1776.26907,3505,NO,34.02,40.75,3,3.09,6106,113.18214,123.048705,132.74495,139.2899,I,Above,Flat,0,5701,,37.3821222,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 21486,NJBF000061834,502 N DOUGLAS AVE,Margate City,NJ,39.338343,-74.504141,RES1,3001,,18,NE,1971,1971,3102,2,1,1886.024585,1886.024585,3505,NO,35.46,45.2,3,8.01,6106,113.268777,123.117962,132.819187,139.363691,I,Above,Gable,0,5701,,40.32633124,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 21487,NJBF000057076,215 N NASSAU AVE,Margate City,NJ,39.32986658,-74.50895841,RES1,3001,,17,NE,1950,1950,3101,1,1,1019.56191,1019.56191,3505,NO,8.3,17.47,3,-2.29,6106,113.282444,123.128358,132.824737,139.385132,I,Above,Hip,0,5701,,12.8867302,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21488,NJBF000052988,9711 BEACH,Margate City,NJ,39.31813187,-74.51580082,RES3E,3001,,39,ME,1978,1978,3301,2,1,9713.825326,9713.825326,3507,NO,34.74,42.6,1,0.64,6106,113.307527,123.142715,132.829594,139.395285,I,Above,Flat,0,5701,,38.67399098,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 21489,NJBF000054555,112 S PEMBROKE AVE,Margate City,NJ,39.32372082,-74.50548204,RES1,3001,,19,NE,1930,1930,3102,2,1,1239.667699,1239.667699,3505,NO,33.44,43.71,3,7.59,6106,113.448463,123.259791,132.956457,139.535091,I,Above,Hip,0,5701,,38.57489022,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 21490,NJBF000057038,213 N NASSAU AVE,Margate City,NJ,39.3297857,-74.50885897,RES1,3001,,19,NE,1950,1950,3102,2,1,1392.587234,1392.587234,3505,NO,25.48,34.31,3,-2.99,6106,113.285792,123.131027,132.827453,139.388242,I,Above,Gable,0,5701,,29.89190315,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21491,NJBF000054680,121 N ADAMS AVE,Margate City,NJ,39.32404914,-74.5164789,RES1,3001,,20,NE,2002,2002,3102,2,1,1785.33556,1785.33556,3507,NO,36.88,50.28,1,1.49,6106,113.20335,123.062397,132.751975,139.307796,I,Above,Gable,0,5701,,43.57786151,0,0,,,,1,1,,0.03,nav,1,2002,2,, 21492,NJBF000054713,122-124 N WASHINGTON AVE,Margate City,NJ,39.32413312,-74.51618892,RES1,3001,,17,NE,1923,1923,3102,2,3,737.6085685,737.6085685,3507,NO,30.55,43.71,1,1.13,6106,113.208419,123.066528,132.75631,139.31262,I,Above,Gable,0,5701,,37.13001673,0,0,,,,1,1,,0.03,nav,1,1923,2,, 21493,NJBF000054357,6 S CEDAR GROVE AVE,Margate City,NJ,39.3231654,-74.5119132,RES1,3001,,NaN,NE,1955,0,3102,2,1,2727.377205,2727.377205,3505,NO,32.5,39.66,3,2.75,6106,113.316186,123.152877,132.844845,139.411738,I,Above,Gable,0,5701,,36.08148017,0,0,,,,1,1,,0.03,nav,1,1955,2,, 21494,NJBF000058276,312 N KENYON AVE,Margate City,NJ,39.33201853,-74.50865883,RES1,3001,,17,NE,1960,1960,3102,2,1,1553.871384,1553.871384,3505,NO,26.22,36.28,3,3.34,6106,113.258035,123.109222,132.806321,139.361997,I,Above,Hip,0,5701,,31.25395211,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21495,NJBF000060945,208 N ARGYLE AVE,Margate City,NJ,39.33680403,-74.49737994,RES1,3001,,17,NE,1950,1950,3103,1,1,1164.444789,1164.444789,3505,NO,21.49,35.4,3,7.47,6106,113.439643,123.255145,132.961909,139.52285,I,Above,Gable,0,5701,,28.447347,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21496,NJBF000060736,202 N ARGYLE AVE,Margate City,NJ,39.33646606,-74.49704962,RES1,3001,,17,NE,1950,1950,3103,1,1,1290.068772,1290.068772,3505,NO,10.25,16.97,3,-2.64,6106,113.451615,123.264787,132.971806,139.534527,I,Above,Gable,0,5701,,13.61029528,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21497,NJBF000057623,430 N PEMBROKE AVE,Margate City,NJ,39.3308915,-74.512315,RES1,3001,,17,NE,1936,1936,3102,2,1,2078.955941,2078.955941,3505,NO,36.62,49.74,3,7.58,6106,113.193802,123.057465,132.751859,139.302645,I,Above,Flat,0,5701,,43.1831698,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 21498,NJBF000058396,,Margate City,NJ,39.33223856,-74.51085025,RES1,3001,,NaN,NE,1969,0,3101,1,1,2698.973753,2698.973753,3505,NO,15.64,26.12,3,2.17,6106,113.206613,123.068024,132.763667,139.314163,I,Above,Hip,0,5701,,20.87799443,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21499,NJBF000056195,10 S HANOVER AVE,Margate City,NJ,39.32794194,-74.50120833,RES1,3001,,20,NE,2010,2010,3102,3,1,1298.364481,1298.364481,3505,NO,40.05,46.43,3,4.27,6106,113.480566,123.287168,132.988775,139.568728,I,Above,Flat,0,5701,,43.23894572,0,0,,,,1,1,,0.03,nav,1,2010,3,, 21500,NJBF000054734,127 N ADAMS AVE,Margate City,NJ,39.32418921,-74.51675791,RES1,3001,,39,NE,2003,2003,3102,2,1,3181.335394,3181.335394,3507,NO,28.62,40.14,1,2.44,6106,113.195168,123.05588,132.745359,139.300325,I,Above,Hip,0,5701,,34.37729614,0,0,,,,1,1,,0.03,nav,1,2003,2,, 21501,NJBF000057583,19 S CLARENDON AVE,Margate City,NJ,39.33082334,-74.49434971,RES1,3001,,20,NE,1965,1965,3102,2,1,1749.782529,1749.782529,3505,NO,25.08,36.54,3,-1.77,6106,113.590184,123.376058,133.084409,139.670322,I,Above,Gable,0,5701,,30.80882982,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 21502,NJBF000057355,109 S BARCLAY AVE,Margate City,NJ,39.33042056,-74.49252402,RES1,3001,,21,NE,1987,1987,3102,2,1,1700.396681,1700.396681,3505,NO,34.64,41.99,3,0.8,6106,113.636049,123.412976,133.122895,139.71297,I,Above,Hip,0,5701,,38.31430844,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 21503,NJBF000057391,113 N JASPER AVE,Margate City,NJ,39.33049049,-74.50482084,RES1,3001,,17,NE,1962,1962,3102,2,1,1201.328425,1201.328425,3507,NO,29.15,40.55,1,1.45,6106,113.364466,123.194386,132.893927,139.461278,I,Above,Flat,0,5701,,34.85024842,0,0,,,,1,1,,0.03,nav,1,1962,2,, 21504,NJBF000054279,109A S SUMNER AVE,Margate City,NJ,39.322956,-74.506969,RES1,3001,,23,NE,2006,2006,3103,3,1,1799.484531,1799.484531,3505,NO,53.33,60.61,3,4.8,6106,113.427262,123.24234,132.937576,139.514426,I,Above,Gable,0,5701,,56.96828114,0,0,,,,1,1,,0.03,nav,1,2006,3,, 21505,NJBF000061940,25 HARBOUR LANE,Margate City,NJ,39.33851899,-74.50743675,RES1,3001,,18,NE,1978,1978,3102,2,1,1610.948847,1610.948847,3505,NO,35.79,43.48,3,8.11,6106,113.193342,123.057586,132.756305,139.29432,I,Above,Gable,0,5701,,39.63227152,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 21506,NJBF000056719,109 S DOUGLAS AVE,Margate City,NJ,39.32912016,-74.49513461,RES1,3001,,21,NE,2007,2007,3102,2,1,2641.101967,2641.101967,3505,NO,31.52,43.51,3,-1.42,6106,113.597115,123.381344,133.088489,139.677144,I,Above,Flat,0,5701,,37.51418566,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 21507,NJBF000056700,413 N VENDOME AVE,Margate City,NJ,39.3290703,-74.5155838,RES1,3001,,18,NE,1955,1955,3102,1,1,991.8152375,991.8152375,3505,NO,10.58,18.3,3,-1.12,6106,113.148519,123.020577,132.712485,139.260327,I,Above,Gable,0,5701,,14.43894623,0,0,,,,1,1,,0.03,nav,1,1955,1,, 21508,NJBF000055226,206 N DECATUR AVE,Margate City,NJ,39.32549293,-74.51603881,RES3B,3001,,30,ME,1999,1999,3301,2,2,1807.510801,1807.510801,3507,NO,26.56,40.06,1,0.6,6106,113.191401,123.05353,132.74396,139.298155,I,Above,Hip,0,5701,,33.30889758,0,0,,,,1,1,,0.03,nav,1,1999,2,, 21509,NJBF000055394,202 N HARDING AVE,Margate City,NJ,39.32595365,-74.51477191,RES1,3001,,47,NE,1950,1950,3102,2,2,871.626236,871.626236,3505,NO,26.71,33.05,3,4.71,6106,113.212252,123.070534,132.761891,139.318004,I,Above,Gable,0,5701,,29.88106892,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21510,NJBF000054483,206 N MADISON AVE,Margate City,NJ,39.32350562,-74.51949944,RES1,3001,,17,NE,1925,1925,3102,2,2,978.960669,978.960669,3507,NO,37,51.66,1,1.23,6106,113.145695,123.015597,132.703265,139.253321,I,Above,Gable,0,5701,,44.32916651,0,0,,,,1,1,,0.03,nav,1,1925,2,, 21511,NJBF000058182,8102 MONMOUTH AVE,Margate City,NJ,39.33185145,-74.50364442,RES1,3001,,17,NE,1950,1950,3101,1,1,1626.397606,1626.397606,3507,NO,13.88,19.13,1,1.65,6106,113.370922,123.199805,132.900574,139.466759,I,Above,Flat,0,5701,,16.50557063,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21512,NJBF000056202,8A N KENYON AVE,Margate City,NJ,39.32796091,-74.50481219,RES1,3001,,18,NE,1977,1977,3101,1,1,1157.479022,1157.479022,3505,NO,17.63,24.41,3,2.15,6106,113.401144,123.223251,132.922058,139.495016,I,Above,Flat,0,5701,,21.02058964,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 21513,NJBF000056167,6 N KENYON AVE,Margate City,NJ,39.32786848,-74.50472783,RES1,3001,,21,NE,1977,2016,3101,1,1,2452.456217,2452.456217,3505,NO,18.04,32.77,3,3.06,6106,113.404337,123.225792,132.924632,139.49794,I,Above,Gable,0,5701,,25.40535774,0,0,,,,1,1,,0.03,nav,1,1977,1,, 21514,NJBF000055814,4 DOLPHIN DR,Margate City,NJ,39.327043,-74.5000755,RES1,3001,,18,NE,1962,1962,3102,2,1,1456.932459,1456.932459,3505,NO,39.54,47.02,3,6.4,6106,113.51843,123.317409,133.019624,139.603317,I,Above,Gable,0,5701,,43.27801615,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 21515,NJBF000057455,208 N KENYON AVE,Margate City,NJ,39.33060214,-74.50738214,RES1,3001,,17,NE,1952,1952,3101,1,1,1791.561853,1791.561853,3505,NO,8.54,20.32,3,-2.37,6106,113.306501,123.147849,132.84553,139.407439,I,Above,Hip,0,5701,,14.43403026,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21516,NJBF000055289,10 N SUMNER AVE,Margate City,NJ,39.32569026,-74.5101602,RES1,3001,,17,NE,1948,1948,3102,2,1,1707.460014,1707.460014,3505,NO,22.52,33.14,3,0.04,6106,113.317075,123.154788,132.848979,139.415369,I,Above,Hip,0,5701,,27.83014944,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21517,NJBF000055395,116 N VENDOME AVE,Margate City,NJ,39.32595597,-74.51319073,RES1,3001,,17,NE,1962,1962,3102,2,1,1369.134616,1369.134616,3505,NO,31.01,43.98,3,-1.61,6106,113.246808,123.098345,132.790673,139.350206,I,Above,Gable,0,5701,,37.49409768,0,0,,,,1,1,,0.03,nav,1,1962,2,, 21518,NJBF000056286,6 S HANOVER AVE,Margate City,NJ,39.32813555,-74.50137825,RES1,3001,,18,NE,1940,1940,3102,3,1,1484.628164,1484.628164,3505,NO,60.44,74.87,3,2.15,6106,113.474033,123.28196,132.983495,139.562749,I,Above,Hip,0,5701,,67.65288998,0,1.1,,,,1,1,,0.03,nav,1,1940,3,, 21519,NJBF000059036,29 N CLARENDON AVE,Margate City,NJ,39.33341122,-74.496531,RES1,3001,,20,NE,2012,2012,3102,2,1,1840.733695,1840.733695,3505,NO,24.43,38.18,3,-0.66,6106,113.505664,123.308259,133.015261,139.589717,I,Above,Flat,0,5701,,31.30709455,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 21520,NJBF000054054,14 N ADAMS AVE,Margate City,NJ,39.3222325,-74.5156895,RES3C,3001,,49,ME,1930,1930,3301,2,4,719.2464939,719.2464939,3505,NO,33.15,41.85,3,-2.96,6106,113.24784,123.097224,132.786422,139.346894,I,Above,Flat,0,NaN,,37.50060033,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21521,NJBF000062300,510 N DELAVAN AVE,Margate City,NJ,39.33917658,-74.50410263,RES1,3001,,18,NE,1965,1965,3102,2,1,1566.796878,1566.796878,3505,NO,22.71,35.87,3,-0.26,6106,113.258107,123.1093,132.810578,139.352065,I,Above,Gable,0,5701,,29.2886843,0,0,,,,1,1,,0.03,nav,1,1965,2,, 21522,NJBF000057501,13 N GLADSTONE AVE,Margate City,NJ,39.33068196,-74.49994707,RES1,3001,,17,NE,1925,1925,3102,2,1,2021.128213,2021.128213,3505,NO,31.1,45.89,3,8.93,6106,113.468995,123.278458,132.981911,139.558175,I,Above,Hip,0,5701,,38.49333846,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 21523,NJBF000056114,8100 ATLANTIC AVE,Margate City,NJ,39.32775847,-74.49914903,EDU1,3001,,NaN,E,1969,0,3401,1,1,7928.524327,7928.524327,3507,NO,17.5,26.79,1,-0.49,6106,113.52844,123.325677,133.028908,139.613035,I,Above,Flat,0,NaN,,22.14360172,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21524,NJBF000055614,2 N OSBORNE AVE,Margate City,NJ,39.3265625,-74.507262,RES1,3001,,17,NE,1943,1943,3102,2,1,1247.806132,1247.806132,3505,NO,29.43,35.52,3,4.97,6106,113.367747,123.195918,132.892444,139.463174,I,Above,Flat,0,5701,,32.47350771,0,0,,,,1,1,,0.03,nav,1,1943,2,, 21525,NJBF000056882,28 N JASPER AVE,Margate City,NJ,39.32945663,-74.50435428,RES1,3001,,17,NE,1935,1935,3102,2,1,1600.53559,1600.53559,3505,NO,28.77,35.81,3,0.22,6106,113.389589,123.214354,132.913968,139.484663,I,Above,Hip,0,5701,,32.29169978,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 21526,NJBF000058329,2A N CLARENDON AVE,Margate City,NJ,39.33210104,-74.49581118,RES1,3001,,18,NE,1978,1978,3102,2,1,1887.689942,1887.689942,3505,NO,33.87,45.73,3,-1.57,6106,113.539961,123.33576,133.043119,139.622896,I,Above,Gable,0,5701,,39.79922185,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 21527,NJBF000058758,7405 VENTNOR AVE,Margate City,NJ,39.33288217,-74.49368043,RES1,3001,,18,NE,1925,1925,3102,2,1,1171.361148,1171.361148,3505,NO,24.83,39.44,3,0.17,6106,113.575931,123.364796,133.074265,139.655041,I,Above,Hip,0,5701,,32.13450195,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21528,NJBF000058113,7 S BRUNSWICK AVE,Margate City,NJ,39.331733,-74.494341,RES1,3001,,20,NE,2010,2010,3102,3,1,1248.946812,1248.946812,3505,NO,62.69,75.85,3,8.33,6106,113.577527,123.365976,133.074571,139.65792,I,Above,Gable,0,5701,,69.26933955,0,0,,,,1,1,,0.03,nav,1,2010,3,, 21529,NJBF000058415,4 N CLARENDON AVE,Margate City,NJ,39.3322661,-74.49595198,RES1,3001,,21,NE,2015,2015,3102,2,1,1141.247149,1141.247149,3505,NO,25.64,39.51,3,1.1,6106,113.534528,123.331403,133.038674,139.617715,I,Above,Hip,0,5701,,32.57289039,0,0.1,,,,1,1,,0.03,nav,1,2015,2,, 21530,NJBF000062853,7907 LAGOON DRIVE,Margate City,NJ,39.34035912,-74.50830777,RES1,3001,,18,NE,1976,1976,3102,2,1,2189.425503,2189.425503,3505,NO,28.95,42.73,3,2.16,6106,113.148613,123.02155,132.719622,139.249445,I,Above,Hip,0,5701,,35.8360486,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 21531,NJBF000059911,220 N DELAVAN AVE,Margate City,NJ,39.33506606,-74.5000687,RES1,3001,,17,NE,1955,1955,3102,2,1,1435.703606,1435.703606,3505,NO,28.98,35.15,3,3.36,6106,113.404404,123.226914,132.931151,139.494159,I,Above,Gable,0,5701,,32.06491441,0,0,,,,1,1,,0.03,nav,1,1955,2,, 21532,NJBF000055643,8301 SALEM RD,Margate City,NJ,39.32663394,-74.50106947,RES1,3001,,20,NE,1967,1967,3102,2,1,1772.45007,1772.45007,3505,NO,32.45,46.63,3,-2.08,6106,113.502541,123.304482,133.00574,139.588287,I,Above,Gable,0,5701,,39.54176573,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 21533,NJBF000061003,11 E GILMAR CIRCLE,Margate City,NJ,39.33688615,-74.50637383,RES1,3001,,17,NE,1969,1969,3101,1,1,1942.878041,1942.878041,3505,NO,22.69,35.73,3,8.81,6106,113.239607,123.09474,132.794171,139.339777,I,Above,Hip,0,5701,,29.2097693,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 21534,NJBF000059809,211 N DELAVAN AVE,Margate City,NJ,39.3348887,-74.49943291,RES1,3001,,17,NE,1953,1953,3103,1,1,1243.958531,1243.958531,3505,NO,27.4,41.96,3,8.01,6106,113.420923,123.240181,132.944927,139.509612,I,Above,Gable,0,5701,,34.67896488,0,0,,,,1,1,,0.03,nav,1,1953,1,, 21535,NJBF000061411,422 N ESSEX AVE,Margate City,NJ,39.33759673,-74.5042702,RES1,3001,,17,NE,1952,1952,3102,2,1,2350.046753,2350.046753,3505,NO,33.66,43.07,3,6.42,6106,113.27626,123.124035,132.825123,139.372087,I,Above,Hip,0,5701,,38.36217377,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 21536,NJBF000056148,220 N THURLOW AVE,Margate City,NJ,39.32781995,-74.51313789,RES1,3001,,17,NE,1950,1950,3101,1,1,1656.824322,1656.824322,3505,NO,17.81,25.8,3,0.15,6106,113.220503,123.077951,132.770967,139.326939,I,Above,Flat,0,5701,,21.8047039,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21537,NJBF000060411,701A N JEROME AVE,Margate City,NJ,39.3359235,-74.51080567,RES1,3001,,17,NE,1992,1992,3102,2,1,1612.560108,1612.560108,3505,NO,39.6,52.1,3,3.49,6106,113.155125,123.027155,132.723353,139.263343,I,Above,Gable,0,5701,,45.85133592,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 21538,NJBF000060034,207 N CLERMONT AVE,Margate City,NJ,39.33527953,-74.4990445,RES1,3001,,17,NE,1955,1955,3103,1,1,1390.77876,1390.77876,3505,NO,21.34,27.03,3,3.73,6106,113.424051,123.242691,132.947825,139.511808,I,Above,Flat,0,5701,,24.18854414,0,0,,,,1,1,,0.03,nav,1,1955,1,, 21539,NJBF000056711,6 N HANOVER AVE,Margate City,NJ,39.3291075,-74.502357,RES1,3001,,18,NE,1920,1920,3102,2,1,980.7414217,980.7414217,3505,NO,33.1,41.78,3,-2.27,6106,113.438532,123.253634,132.954694,139.530064,I,Above,Gable,0,5701,,37.44084916,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 21540,NJBF000053358,7 S COOLIDGE AVE,Margate City,NJ,39.31963526,-74.51758853,RES1,3001,,27,NE,1950,1950,3102,1,2,2201.608909,2201.608909,3507,NO,15.25,25.64,1,1.47,6106,113.245855,123.09391,132.780642,139.340842,I,Above,Gable,0,5701,,20.44170998,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21541,NJBF000057500,7806 VENTNOR AVE,Margate City,NJ,39.33067992,-74.49730867,COM1,3001,,NaN,ME,1967,1967,3401,1,1,2999.118189,2999.118189,3507,NO,20.17,29.12,1,0.74,6106,113.527088,123.325211,133.030898,139.611995,I,Above,Flat,0,NaN,,24.64705788,0,0,,,,1,1,,0.03,nav,1,1967,1,, 21542,NJBF000057368,5 S ESSEX AVE,Margate City,NJ,39.330445,-74.497074,COM1,3001,,NaN,ME,1930,1930,3401,2,1,2623.420308,2623.420308,3507,NO,38.71,51.04,1,2.1,6106,113.5356,123.332027,133.037854,139.619969,I,Above,Flat,0,NaN,,44.87519908,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21543,NJBF000053530,16 S MADISON AVE,Margate City,NJ,39.3202785,-74.51620177,RES1,3001,,49,NE,1962,1962,3102,2,4,1953.374132,1953.374132,3507,NO,29.02,36.48,1,0.53,6106,113.26618,123.110787,132.798673,139.360876,I,Above,Gable,0,5701,,32.74724535,0,0,,,,1,1,,0.03,nav,1,1962,2,, 21544,NJBF000053429,,Margate City,NJ,39.31989154,-74.51715084,RES1,3001,,NaN,NE,1969,0,3102,2,1,2417.49517,2417.49517,3507,NO,24.24,38.61,1,1.95,6106,113.251449,123.098615,132.785739,139.346503,I,Above,Flat,0,5701,,31.42531718,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21545,NJBF000053494,,Margate City,NJ,39.32014945,-74.51605676,RES1,3001,,NaN,NE,1969,0,3102,2,1,1801.827622,1801.827622,3507,NO,30.36,37.38,1,2.41,6106,113.271301,123.114838,132.802736,139.365412,I,Above,Hip,0,5701,,33.87047893,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21546,NJBF000053680,5 N MONROE AVE,Margate City,NJ,39.3208575,-74.517532,RES1,3001,,17,NE,1927,1927,3102,2,3,1249.450863,1249.450863,3507,NO,21.17,28.6,1,-0.51,6106,113.22851,123.080739,132.768175,139.326785,I,Above,Gable,0,5701,,24.88608435,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 21547,NJBF000062702,607 N DELAVAN AVE,Margate City,NJ,39.34004551,-74.50442403,RES1,3001,,18,NE,1965,1965,3102,2,1,1648.253876,1648.253876,3505,NO,29.21,39.47,3,7.17,6106,113.239048,123.093892,132.794919,139.33259,I,Above,Gable,0,5701,,34.33927463,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 21548,NJBF000061060,412 N DOUGLAS AVE,Margate City,NJ,39.33698776,-74.50283087,RES1,3001,,18,NE,1964,1964,3102,2,1,2808.548024,2808.548024,3505,NO,27.42,33.94,3,-1.09,6106,113.316559,123.156372,132.858558,139.410175,I,Above,Hip,0,5701,,30.67886863,0,0,,,,1,1,,0.03,nav,1,1964,2,, 21549,NJBF000053607,18 S JEFFERSON AVE,Margate City,NJ,39.32058288,-74.51514441,RES1,3001,,17,NE,1926,1926,3102,2,1,1261.109231,1261.109231,3507,NO,34.38,39.94,1,2.55,6106,113.28457,123.125847,132.814521,139.378483,I,Above,Gable,0,5701,,37.16122433,0,0,,,,1,1,,0.03,nav,1,1926,2,, 21550,NJBF000059308,200 N ESSEX AVE,Margate City,NJ,39.33398128,-74.50052131,RES1,3001,,17,NE,1950,1950,3101,1,1,1601.110387,1601.110387,3507,NO,9.53,23.62,1,-0.97,6106,113.40964,123.231097,132.934787,139.500575,I,Above,Hip,0,5701,,16.57598684,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21551,NJBF000061118,400 N CLARENDON AVE,Margate City,NJ,39.33709475,-74.50050554,RES1,3001,,17,NE,1960,1960,3102,2,1,1766.562679,1766.562679,3505,NO,30.06,42.95,3,1.21,6106,113.366498,123.196406,132.900507,139.455596,I,Above,Gable,0,5701,,36.505571,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 21552,NJBF000053468,25 S MADISON AVE,Margate City,NJ,39.32004717,-74.51543695,RES1,3001,,45,NE,1945,1945,3102,2,2,911.1073735,911.1073735,3507,NO,34.16,45.33,1,-0.61,6106,113.286315,123.126903,132.815111,139.379185,I,Above,Flat,0,5701,,39.74459015,0,0,,,,1,1,,0.03,nav,1,1945,2,, 21553,NJBF000062772,616 N DOUGLAS AVE,Margate City,NJ,39.34019334,-74.50589622,RES1,3001,,17,NE,1968,1968,3102,2,1,2196.33019,2196.33019,3505,NO,23.65,30.1,3,0.88,6106,113.204391,123.06615,132.766029,139.300693,I,Above,Flat,0,5701,,26.87092124,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 21554,NJBF000053752,100 N COOLIDGE AVE,Margate City,NJ,39.32114358,-74.51960598,RES3B,3001,,NaN,ME,1969,0,3301,2,1,1745.537596,1745.537596,3505,NO,43.49,50.28,3,5.31,6106,113.179128,123.041035,132.727489,139.281195,I,Above,Flat,0,5701,,46.88035579,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21555,NJBF000053997,121 N COOLIDGE AVE,Margate City,NJ,39.32205056,-74.52000948,RES1,3001,,17,NE,1920,1920,3102,2,1,1556.711502,1556.711502,3507,NO,30.4,43.83,1,0.02,6106,113.156604,123.023462,132.710169,139.261541,I,Above,Hip,0,5701,,37.1159637,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 21556,NJBF000058913,30 N CLARENDON AVE,Margate City,NJ,39.33316724,-74.49674764,RES1,3001,,17,NE,1935,1935,3102,2,1,765.5396712,765.5396712,3505,NO,32.14,39.67,3,3.38,6106,113.504305,123.307151,133.013913,139.588801,I,Above,Gable,0,5701,,35.90456993,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 21557,NJBF000053911,15 S WASHINGTON AVE,Margate City,NJ,39.32173661,-74.5129645,RES1,3001,,21,NE,1999,1999,3102,2,1,1438.851522,1438.851522,3505,NO,33.92,48.06,3,1.28,6106,113.314631,123.15083,132.841442,139.408255,I,Above,Gable,0,5701,,40.98920298,0,0,,,,1,1,,0.03,nav,1,1999,2,, 21558,NJBF000058968,215 N GRANVILLE AVE,Margate City,NJ,39.33328345,-74.50340789,RES1,3001,,20,NE,2015,2015,3102,2,1,1290.749849,1290.749849,3505,NO,18.54,27.17,3,-2.88,6106,113.355791,123.187816,132.889058,139.451668,I,Above,Gable,0,5701,,22.8540193,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 21559,NJBF000056617,213 N QUINCY AVE,Margate City,NJ,39.32887825,-74.51076644,RES1,3001,,17,NE,1951,1951,3101,1,1,1212.889018,1212.889018,3505,NO,22.99,37.08,3,7.38,6106,113.257076,123.107703,132.802577,139.361392,I,Above,Hip,0,5701,,30.03604776,0,0,,,,1,1,,0.03,nav,1,1951,1,, 21560,NJBF000062534,7811 BURK AVE,Margate City,NJ,39.33965861,-74.50675805,RES1,3001,,18,NE,1970,1970,3102,2,1,1865.244284,1865.244284,3505,NO,27.99,40.12,3,6.89,6106,113.192624,123.056844,132.756077,139.29123,I,Above,Gable,0,5701,,34.05265444,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 21561,NJBF000056234,2 S JASPER AVE,Margate City,NJ,39.32801208,-74.50269013,RES1,3001,,20,NE,1979,1979,3102,2,1,1737.691242,1737.691242,3505,NO,42.02,51.92,3,6.28,6106,113.447006,123.260171,132.960624,139.537617,I,Above,Flat,0,5701,,46.96848293,0,0,,,,1,1,,0.03,nav,1,1979,2,, 21562,NJBF000060801,203 N ARGYLE AVE,Margate City,NJ,39.33655906,-74.49657908,RES1,3001,,17,NE,1950,1950,3103,1,1,1227.588408,1227.588408,3505,NO,15.01,24.08,3,-2.07,6106,113.460735,123.27211,132.979558,139.542591,I,Above,Hip,0,5701,,19.54097068,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21563,NJBF000054701,9 N HARDING AVE,Margate City,NJ,39.32408847,-74.51249234,RES1,3001,,17,NE,1958,1958,3102,2,1,2130.42689,2130.42689,3505,NO,41.23,46.37,3,8.46,6106,113.289797,123.132081,132.82409,139.388354,I,Above,Hip,0,5701,,43.80076922,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 21564,NJBF000058978,24 N BRUNSWICK AVE,Margate City,NJ,39.33329486,-74.49604253,RES1,3001,,20,NE,2005,2005,3102,2,1,1583.463029,1583.463029,3505,NO,35.41,48.91,3,-2.45,6106,113.518052,123.31822,133.025633,139.60127,I,Above,Hip,0,5701,,42.15831178,0,0,,,,1,1,,0.03,nav,1,2005,2,, 21565,NJBF000058915,22 N BRUNSWICK AVE,Margate City,NJ,39.33316899,-74.49596579,RES1,3001,,17,NE,1925,1925,3102,2,1,1366.214162,1366.214162,3505,NO,32.72,38.54,3,7.15,6106,113.521518,123.321002,133.028457,139.604633,I,Above,Flat,0,5701,,35.63010766,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21566,NJBF000054813,113 S OSBORNE AVE,Margate City,NJ,39.3243956,-74.50460424,RES1,3001,,21,NE,1999,1999,3103,3,1,1394.55329,1394.55329,3505,NO,53.8,63.17,3,-2.93,6106,113.457739,123.267559,132.965175,139.544531,I,Above,Hip,0,5701,,58.48491046,0,1.1,,,,1,1,,0.03,nav,1,1999,3,, 21567,NJBF000057472,101 S BRUNSWICK AVE,Margate City,NJ,39.33063061,-74.49344899,RES1,3001,,22,NE,2004,2004,3102,3,1,1341.279743,1341.279743,3505,NO,44.2,50.78,3,2.24,6106,113.612728,123.394202,133.103323,139.691285,I,Above,Hip,0,5701,,47.49029079,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21568,NJBF000053818,23 S WASHINGTON AVE,Margate City,NJ,39.32139172,-74.51265531,RES3D,3001,,22,ME,2007,2007,3301,2,1,9778.096571,9778.096571,3505,NO,39.1,53.3,3,8.85,6106,113.326542,123.160241,132.850873,139.418771,I,Above,Flat,0,NaN,,46.20118209,0,0,,,,1,1,,0.03,nav,1,2007,2,, 21569,NJBF000060939,204 N FREDERICKSBURG AVE,Margate City,NJ,39.33679153,-74.49621837,RES1,3001,,17,NE,1964,1964,3103,2,1,1697.606822,1697.606822,3505,NO,37.06,45.17,3,2.99,6106,113.465491,123.275915,132.983713,139.546329,I,Above,Hip,0,5701,,41.11401743,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 21570,NJBF000053921,118 N COOLIDGE AVE,Margate City,NJ,39.32177291,-74.52020028,RES1,3001,,17,NE,1923,1923,3101,1,1,1130.861383,1130.861383,3505,NO,13.35,24.07,3,0.24,6106,113.156673,123.023329,132.709796,139.261195,I,Above,Gable,0,5701,,18.70908628,0,0,,,,1,1,,0.03,nav,1,1923,1,, 21571,NJBF000053928,102 N MONROE AVE,Margate City,NJ,39.3218145,-74.51892183,RES1,3001,,17,NE,1946,1946,3101,1,1,762.6773193,762.6773193,3505,NO,23.86,30.03,3,5.65,6106,113.183803,123.045268,132.732434,139.286591,I,Above,Gable,0,5701,,26.94545396,0,0,,,,1,1,,0.03,nav,1,1946,1,, 21572,NJBF000059355,202 N DOUGLAS AVE,Margate City,NJ,39.33407849,-74.49986823,RES1,3001,,17,NE,1958,1958,3103,1,1,1501.958819,1501.958819,3505,NO,26.33,35.03,3,8.2,6106,113.422687,123.241581,132.945832,139.512458,I,Above,Gable,0,5701,,30.67886923,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 21573,NJBF000054050,103 S VENDOME AVE,Margate City,NJ,39.32221564,-74.50906451,RES1,3001,,17,NE,1950,1950,3102,2,1,1105.969054,1105.969054,3505,NO,25.98,40.78,3,4.39,6106,113.392486,123.213916,132.907329,139.481157,I,Above,Hip,0,5701,,33.37998398,0,0.1,,,,1,1,,0.03,nav,1,1950,2,, 21574,NJBF000056912,213 N PEMBROKE AVE,Margate City,NJ,39.32952297,-74.51042498,RES1,3001,,18,NE,1985,1985,3102,2,1,1317.702631,1317.702631,3505,NO,29.17,38.41,3,-1.94,6106,113.255186,123.106375,132.801661,139.359757,I,Above,Hip,0,5701,,33.78863669,0,0,,,,1,1,,0.03,nav,1,1985,2,, 21575,NJBF000054363,,Margate City,NJ,39.32318074,-74.51705331,RES1,3001,,NaN,NE,1969,0,3102,2,1,1775.482154,1775.482154,3507,NO,27.34,40.37,1,0.41,6106,113.203859,123.06231,132.751171,139.307207,I,Above,Gable,0,5701,,33.85874972,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21576,NJBF000057756,8503 AMHERST AVE,Margate City,NJ,39.33111175,-74.50819393,RES1,3001,,17,NE,1953,1953,3102,2,1,1619.86263,1619.86263,3505,NO,37.44,50.99,3,4.66,6106,113.281294,123.127718,132.824944,139.383919,I,Above,Gable,0,5701,,44.21602134,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 21577,NJBF000055097,1 N THURLOW AVE,Margate City,NJ,39.32512439,-74.509944,RES1,3001,,22,NE,1958,2018,3102,2,1,3794.02645,3794.02645,3505,NO,30.59,37.35,3,3.47,6106,113.33015,123.165073,132.859185,139.42699,I,Above,Hip,0,5701,,33.96961226,0,1.2,,,,1,1,,0.03,nav,1,1958,2,, 21578,NJBF000058094,311 N LANCASTER AVE,Margate City,NJ,39.33170747,-74.50875385,RES1,3001,,17,NE,1971,1971,3101,1,1,2069.926807,2069.926807,3505,NO,25.73,40.63,3,8.11,6106,113.260417,123.111078,132.808045,139.36434,I,Above,Hip,0,5701,,33.17740338,0,0,,,,1,1,,0.03,nav,1,1971,1,, 21579,NJBF000058687,8510 FULTON AVE,Margate City,NJ,39.33275969,-74.51074462,RES1,3001,,20,NE,2013,2013,3102,2,1,1447.951636,1447.951636,3505,NO,28.87,41.36,3,0.09,6106,113.201454,123.063975,132.759787,139.30911,I,Above,Gable,0,5701,,35.11175897,0,0,,,,1,1,,0.03,nav,1,2013,2,, 21580,NJBF000054837,126 N WASHINGTON AVE,Margate City,NJ,39.32444222,-74.5161206,RES1,3001,,21,NE,1964,1964,3102,2,1,1349.175625,1349.175625,3507,NO,34.25,49.06,1,1.42,6106,113.205283,123.064168,132.754122,139.310042,I,Above,Gable,0,5701,,41.65728446,0,0,,,,1,1,,0.03,nav,1,1964,2,, 21581,NJBF000061743,8212 BAYSHORE DR WEST,Margate City,NJ,39.33817507,-74.51196768,RES1,3001,,18,NE,1974,1974,3102,2,1,2718.067365,2718.067365,3505,NO,25.85,39.05,3,1.32,6106,113.097778,122.981258,132.676798,139.207186,I,Above,Hip,0,5701,,32.44758516,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 21582,NJBF000057780,304 N LANCASTER AVE,Margate City,NJ,39.33115098,-74.50884583,RES1,3001,,17,NE,1960,1960,3102,2,1,1487.443958,1487.443958,3505,NO,37,49.76,3,3.03,6106,113.266381,123.115757,132.812535,139.370058,I,Above,Hip,0,5701,,43.38009286,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21583,NJBF000057849,306 N LANCASTER AVE,Margate City,NJ,39.33126549,-74.50894684,RES1,3001,,17,NE,1960,1960,3102,2,1,1879.565111,1879.565111,3505,NO,34.7,48.41,3,-1.75,6106,113.262518,123.11268,132.809414,139.366439,I,Above,Flat,0,5701,,41.55564896,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21584,NJBF000057559,,Margate City,NJ,39.33078186,-74.51165421,RES1,3001,,NaN,NE,2005,0,3102,2,1,4031.657706,4031.657706,3505,NO,46.79,60.57,3,8.91,6106,113.209918,123.070368,132.765165,139.317649,I,Above,Flat,0,5701,,53.6808268,0,0,,,,1,1,,0.03,nav,1,2005,2,, 21585,NJBF000057463,403 N PEMBROKE AVE,Margate City,NJ,39.33061358,-74.51149214,RES1,3001,,19,NE,1988,1988,3102,3,1,1480.190971,1480.190971,3505,NO,43.88,49.36,3,0.57,6106,113.215913,123.075137,132.769999,139.323242,I,Above,Gable,0,5701,,46.62275657,0,1.2,,,,1,1,,0.03,nav,1,1988,3,, 21586,NJBF000057246,208 N LANCASTER AVE,Margate City,NJ,39.3302225,-74.50791581,RES1,3001,,17,NE,1950,1950,3101,1,1,1083.996786,1083.996786,3505,NO,17.62,24.91,3,5.42,6106,113.300229,123.142728,132.839931,139.401656,I,Above,Hip,0,5701,,21.2608719,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21587,NJBF000055185,8807 VENTNOR AVE,Margate City,NJ,39.32538319,-74.5092765,RES1,3001,,21,NE,1971,1971,3102,2,1,3096.230864,3096.230864,3505,NO,27.5,40.53,3,1.59,6106,113.34095,123.173882,132.86855,139.437279,I,Above,Hip,0,5701,,34.01409578,0,0,,,,1,1,,0.03,nav,1,1971,2,, 21588,NJBF000057611,8505 AMHERST AVE,Margate City,NJ,39.33087582,-74.50861187,RES1,3001,,17,NE,1959,1959,3102,2,1,1315.306741,1315.306741,3505,NO,26.19,31.5,3,2.69,6106,113.27549,123.12301,132.819887,139.378583,I,Above,Flat,0,5701,,28.84592407,0,0,,,,1,1,,0.03,nav,1,1959,2,, 21589,NJBF000054257,9417 WINCHESTER AVE,Margate City,NJ,39.3228791,-74.5168068,RES3B,3001,,20,ME,1991,1991,3301,1,1,2747.86353,2747.86353,3505,NO,11.81,22.12,3,-0.36,6106,113.213758,123.070116,132.758976,139.31604,I,Above,Gable,0,5701,,16.96416915,0,0,,,,1,1,,0.03,nav,1,1991,1,, 21590,NJBF000054777,122-124 N WASHINGTON AVE,Margate City,NJ,39.32427889,-74.51597478,RES1,3001,,17,NE,1923,1923,3102,2,3,1190.405536,1190.405536,3507,NO,33.03,43.67,1,0.82,6106,113.210905,123.068611,132.75858,139.315104,I,Above,Hip,0,5701,,38.35095927,0,0,,,,1,1,,0.03,nav,1,1923,2,, 21591,NJBF000054928,8 S QUINCY AVE,Margate City,NJ,39.32468189,-74.50736814,RES1,3001,,19,NE,1939,1939,3103,3,1,1775.129358,1775.129358,3505,NO,42.8,56.12,3,3.15,6106,113.393038,123.215539,132.911253,139.484915,I,Above,Hip,0,5701,,49.46227113,0,1.2,,,,1,1,,0.03,nav,1,1939,3,, 21592,NJBF000058190,406 N MANSFIELD AVE,Margate City,NJ,39.33186027,-74.51044234,RES1,3001,,17,NE,1950,1950,3102,2,1,1744.601621,1744.601621,3505,NO,35.46,46.96,3,5.88,6106,113.221045,123.079526,132.775367,139.327723,I,Above,Hip,0,5701,,41.20692126,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21593,NJBF000063938,7503 BAYSHORE DR,Margate City,NJ,39.34314441,-74.50316782,RES1,3001,,21,NE,1987,1987,3102,3,1,2488.743225,2488.743225,3505,NO,52.74,64.84,3,6.83,6106,113.224797,123.081648,132.783528,139.310704,I,Above,Hip,0,5701,,58.78585119,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 21594,NJBF000054229,8906 ATLANTIC AVE,Margate City,NJ,39.32280475,-74.50866178,RES1,3001,,19,NE,1954,1954,3102,2,1,2445.819007,2445.819007,3505,NO,27.81,34.57,3,0.9,6106,113.392521,123.214247,132.90822,139.482053,I,Above,Hip,0,5701,,31.19087232,0,0.1,,,,1,1,,0.03,nav,1,1954,2,, 21595,NJBF000056627,200 N OSBORNE AVE,Margate City,NJ,39.3289002,-74.50944834,RES1,3001,,17,NE,1952,1952,3102,2,1,1863.817507,1863.817507,3505,NO,35.04,43.66,3,6.4,6106,113.285701,123.130708,132.826477,139.388029,I,Above,Gable,0,5701,,39.3519878,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 21596,NJBF000057162,305 N PEMBROKE AVE,Margate City,NJ,39.33005743,-74.51094239,RES1,3001,,19,NE,1982,1982,3102,2,1,2238.151806,2238.151806,3505,NO,41.4,50.5,3,5.36,6106,113.236076,123.091176,132.786261,139.342016,I,Above,Gable,0,5701,,45.94878005,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 21597,NJBF000057678,216 N KENYON AVE,Margate City,NJ,39.33098066,-74.50766344,RES1,3001,,17,NE,1952,1952,3101,1,1,1044.735336,1044.735336,3505,NO,15.41,24.86,3,2.5,6106,113.294865,123.138586,132.836158,139.396555,I,Above,Gable,0,5701,,20.13347067,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 21598,NJBF000059311,203 N ESSEX AVE,Margate City,NJ,39.33398631,-74.50003718,RES1,3001,,17,NE,1950,1950,3102,2,1,1017.183081,1017.183081,3505,NO,37.57,52.47,3,2.02,6106,113.42025,123.23962,132.943714,139.51034,I,Above,Flat,0,5701,,45.0210082,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21599,NJBF000055451,15 N SUMNER AVE,Margate City,NJ,39.3261365,-74.510021,RES1,3001,,17,NE,1965,1965,3102,2,1,1387.512621,1387.512621,3505,NO,29.75,38.01,3,5.63,6106,113.313552,123.152136,132.84659,139.412472,I,Above,Gable,0,5701,,33.87965623,0,0,,,,1,1,,0.03,nav,1,1965,2,, 21600,NJBF000057999,313 N MANSFIELD AVE,Margate City,NJ,39.3315272,-74.50951741,RES1,3001,,17,NE,1952,1952,3101,1,1,1898.668106,1898.668106,3505,NO,22.63,30.19,3,4.34,6106,113.246201,123.09964,132.796038,139.351204,I,Above,Gable,0,5701,,26.41115319,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21601,NJBF000058019,8506 FREMONT AVE,Margate City,NJ,39.33156573,-74.50935065,RES1,3001,,17,NE,1961,1961,3102,2,1,1491.55379,1491.55379,3505,NO,28.31,37.98,3,-1.38,6106,113.249295,123.10213,132.798651,139.354065,I,Above,Flat,0,5701,,33.14604193,0,0,,,,1,1,,0.03,nav,1,1961,2,, 21602,NJBF000055554,4 N PEMBROKE AVE,Margate City,NJ,39.32640237,-74.50798729,RES1,3001,,17,NE,1920,1920,3102,2,1,1360.464186,1360.464186,3505,NO,39.84,49.13,3,4.31,6106,113.354212,123.184965,132.880918,139.450478,I,Above,Hip,0,5701,,44.48278956,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 21603,NJBF000060969,211 N BELMONT DR,Margate City,NJ,39.33683413,-74.49772197,RES1,3001,,17,NE,1950,1950,3103,1,1,1249.273441,1249.273441,3505,NO,22.04,31.28,3,7.72,6106,113.431669,123.248737,132.955203,139.515533,I,Above,Flat,0,5701,,26.66274812,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21604,NJBF000055342,116 N WILSON AVE,Margate City,NJ,39.3258305,-74.5138575,RES1,3001,,47,NE,1948,1948,3102,2,2,885.4869396,885.4869396,3505,NO,28.96,38.59,3,4.56,6106,113.234066,123.088034,132.7799,139.33823,I,Above,Gable,0,5701,,33.7753644,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21605,NJBF000053959,103 N MONROE AVE,Margate City,NJ,39.32192267,-74.51853655,RES1,3001,,17,NE,1960,1960,3102,2,1,793.1687652,793.1687652,3507,NO,36.23,46.57,1,1.08,6106,113.190536,123.050776,132.738206,139.293035,I,Above,Gable,0,5701,,41.4011782,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21606,NJBF000054982,101 N HARDING AVE,Margate City,NJ,39.32480888,-74.51320392,RES1,3001,,47,NE,1948,1948,3102,2,2,938.9194311,938.9194311,3505,NO,35.69,46.97,3,0.2,6106,113.263524,123.11127,132.803136,139.364698,I,Above,Gable,0,5701,,41.32882675,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21607,NJBF000055287,1 N RUMSON AVE,Margate City,NJ,39.32567543,-74.50864061,RES1,3001,,19,NE,1930,1930,3102,2,1,2238.348038,2238.348038,3505,NO,28.37,38.2,3,6.68,6106,113.350555,123.181736,132.876957,139.446474,I,Above,Hip,0,5701,,33.28455637,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 21608,NJBF000059247,34 N BRUNSWICK AVE,Margate City,NJ,39.33385718,-74.49666802,RES1,3001,,17,NE,1952,1952,3102,1,1,1549.859625,1549.859625,3505,NO,26.12,35.08,3,6.66,6106,113.496389,123.300818,133.007785,139.580534,I,Above,Gable,0,5701,,30.59922853,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21609,NJBF000054843,121 N WASHINGTON AVE,Margate City,NJ,39.32447278,-74.51562634,RES1,3001,,17,NE,1948,1948,3101,1,1,1473.674258,1473.674258,3505,NO,13.3,20.03,3,0.77,6106,113.215624,123.072516,132.762773,139.319718,I,Above,Gable,0,5701,,16.66199557,0,0,,,,1,1,,0.03,nav,1,1948,1,, 21610,NJBF000055869,8 S KNIGHT AVE,Margate City,NJ,39.32716049,-74.50353782,RES1,3001,,18,NE,1930,1930,3101,1,1,1742.252353,1742.252353,3505,NO,20.73,32.6,3,7,6106,113.440732,123.254868,132.954372,139.531344,I,Above,Gable,0,5701,,26.66138517,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 21611,NJBF000055073,8802 VENTNOR AVE,Margate City,NJ,39.32504502,-74.50806511,RES1,3001,,19,NE,1950,1950,3102,2,1,1760.801661,1760.801661,3505,NO,25.43,30.7,3,3.8,6106,113.372437,123.199097,132.894469,139.466186,I,Above,Hip,0,5701,,28.06712672,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 21612,NJBF000056009,6 S JEROME AVE,Margate City,NJ,39.32751645,-74.50305947,RES1,3001,,17,NE,1950,1950,3102,2,1,1244.446966,1244.446966,3505,NO,40.84,49.55,3,5.74,6106,113.446082,123.259284,132.959282,139.536518,I,Above,Gable,0,5701,,45.19467852,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21613,NJBF000055295,117 N HARDING AVE,Margate City,NJ,39.325707,-74.514072,RES1,3001,,18,NE,1948,1948,3102,2,1,884.5597994,884.5597994,3505,NO,35.16,42.77,3,8.18,6106,113.231223,123.085688,132.777376,139.335473,I,Above,Gable,0,5701,,38.96862372,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21614,NJBF000055984,8408 VENTNOR AVE,Margate City,NJ,39.32744655,-74.50386798,RES1,3001,,16,NE,1950,1950,3102,2,1,1807.876813,1807.876813,3505,NO,23.46,38.45,3,2.44,6106,113.429324,123.245773,132.945124,139.520926,I,Above,Gable,0,5701,,30.95774259,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21615,NJBF000054992,4 S QUINCY AVE,Margate City,NJ,39.32482799,-74.50760067,RES1,3001,,19,NE,1930,1930,3103,3,1,688.2050775,688.2050775,3505,NO,36.71,45.06,3,3.03,6106,113.385788,123.20976,132.90537,139.478349,I,Above,Flat,0,5701,,40.88406404,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 21616,NJBF000055047,4 S QUINCY AVE,Margate City,NJ,39.32497823,-74.50762085,RES1,3001,,19,NE,1930,1930,3103,3,1,2043.493418,2043.493418,3505,NO,55.41,60.83,3,7.97,6106,113.383142,123.207692,132.903349,139.476052,I,Above,Hip,0,5701,,58.12165303,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 21617,NJBF000058380,406 N LANCASTER AVE,Margate City,NJ,39.33221005,-74.50986501,RES1,3001,,17,NE,1958,1958,3102,1,1,2200.120159,2200.120159,3505,NO,20.15,27.57,3,1.8,6106,113.228729,123.08575,132.782053,139.334709,I,Above,Hip,0,5701,,23.86094653,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 21618,NJBF000055577,114 N THURLOW AVE,Margate City,NJ,39.326466,-74.5118175,RES1,3001,,20,NE,2004,2004,3102,3,1,1243.485872,1243.485872,3505,NO,51.22,61.75,3,-1.92,6106,113.269338,123.116692,132.810082,139.371587,I,Above,Hip,0,5701,,56.48497682,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21619,NJBF000057913,7501 ATLANTIC AVE,Margate City,NJ,39.33137556,-74.49302497,RES1,3001,,19,NE,1925,1925,3102,2,1,2016.780885,2016.780885,3505,NO,28.37,35.88,3,-1.29,6106,113.611535,123.393343,133.103057,139.689637,I,Above,Flat,0,5701,,32.12326433,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 21620,NJBF000055161,,Margate City,NJ,39.325313,-74.5141435,RES1,3001,,NaN,NE,1969,0,3102,2,1,857.1600244,857.1600244,3505,NO,23.93,37.09,3,0.44,6106,113.235493,123.088941,132.78043,139.339092,I,Above,Hip,0,5701,,30.51035585,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21621,NJBF000058468,7500 VENTNOR AVE,Margate City,NJ,39.33236763,-74.49383245,RES1,3001,,19,NE,1925,1925,3102,3,1,1626.237052,1626.237052,3505,NO,56.3,67.82,3,8.21,6106,113.579798,123.36787,133.077083,139.659305,I,Above,Gable,0,5701,,62.06134243,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 21622,NJBF000059952,41 SEASIDE COURT,Margate City,NJ,39.33513374,-74.50973607,RES1,3001,,19,NE,1988,1988,3101,2,1,1935.037796,1935.037796,3505,NO,39.68,45.48,3,1.52,6106,113.189918,123.054971,132.75182,139.296426,I,Above,Flat,0,5701,,42.58049837,0,0,,,,1,1,,0.03,nav,1,1988,2,, 21623,NJBF000055676,8605 VENTNOR AVE,Margate City,NJ,39.3267127,-74.50645467,RES1,3001,,NaN,NE,1940,0,3102,2,1,1785.840721,1785.840721,3505,NO,31.45,42.02,3,2.73,6106,113.38325,123.208448,132.90561,139.477681,I,Above,Hip,0,5701,,36.73276857,0,0,,,,1,1,,0.03,nav,1,1940,2,, 21624,NJBF000055632,1 N OSBORNE AVE,Margate City,NJ,39.32661143,-74.50671045,RES1,3001,,19,NE,1925,1925,3102,2,1,2448.059265,2448.059265,3505,NO,35.42,47.58,3,8.84,6106,113.379148,123.205111,132.902051,139.473799,I,Above,Flat,0,5701,,41.49709357,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 21625,NJBF000055994,309 N HARDING AVE,Margate City,NJ,39.32747789,-74.51573764,RES1,3001,,47,NE,1969,1950,3102,2,2,927.1870018,927.1870018,3505,NO,29.47,38.72,3,4.06,6106,113.168565,123.036067,132.727393,139.27834,I,Above,Gable,0,5701,,34.09125561,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21626,NJBF000055455,120 N VENDOME AVE,Margate City,NJ,39.32614255,-74.51335076,RES1,3001,,18,NE,1991,1991,3102,2,1,1438.41714,1438.41714,3505,NO,40.77,50.88,3,6.08,6106,113.240542,123.093385,132.785684,139.344523,I,Above,Gable,0,5701,,45.82226106,0,0,,,,1,1,,0.03,nav,1,1991,2,, 21627,NJBF000055804,8601 VENTNOR AVE,Margate City,NJ,39.32702095,-74.50586671,RES1,3001,,21,NE,1921,2018,3102,3,1,2573.120208,2573.120208,3505,NO,48.03,54.12,3,2.44,6106,113.391653,123.215318,132.91302,139.485694,I,Above,Gable,0,5701,,51.07940576,0,1.1,,,,1,1,,0.03,nav,1,1921,3,, 21628,NJBF000055895,12 S JEROME AVE,Margate City,NJ,39.32723173,-74.50284863,RES1,3001,,18,NE,1915,1915,3102,2,1,1599.41111,1599.41111,3505,NO,24.8,34.23,3,0.86,6106,113.454809,123.266224,132.966287,139.54445,I,Above,Gable,0,5701,,29.51558699,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 21629,NJBF000055959,11 N OSBORNE AVE,Margate City,NJ,39.32736634,-74.50733574,RES1,3001,,18,NE,1915,1915,3102,2,2,547.9173599,547.9173599,3505,NO,36.32,43.01,3,2.1,6106,113.354397,123.185455,132.882212,139.451289,I,Above,Hip,0,5701,,39.66302577,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 21630,NJBF000055889,11 N OSBORNE AVE,Margate City,NJ,39.32721487,-74.50731263,RES1,3001,,18,NE,1915,1915,3102,2,2,2772.418152,2772.418152,3505,NO,36.71,50.95,3,2.2,6106,113.357104,123.187582,132.884304,139.453718,I,Above,Hip,0,5701,,43.83165883,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 21631,NJBF000055176,111 N HARDING AVE,Margate City,NJ,39.325368,-74.513749,RES1,3001,,47,NE,1948,1948,3102,2,2,978.726564,978.726564,3505,NO,35.62,41.28,3,7.14,6106,113.243313,123.095262,132.787016,139.346429,I,Above,Gable,0,5701,,38.44639443,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21632,NJBF000058362,1 S BARCLAY AVE,Margate City,NJ,39.3321644,-74.4939734,RES1,3001,,NaN,NE,1938,0,3102,2,1,975.8004829,975.8004829,3505,NO,38.09,45.16,3,5.08,6106,113.579561,123.36766,133.076696,139.659335,I,Above,Gable,0,5701,,41.62416689,0,0,,,,1,1,,0.03,nav,1,1938,2,, 21633,NJBF000060037,323 N GLADSTONE AVE,Margate City,NJ,39.33529671,-74.50385668,RES1,3001,,17,NE,1961,1961,3101,1,1,3191.911892,3191.911892,3505,NO,12.3,22.97,3,-2.98,6106,113.317497,123.157182,132.858381,139.413912,I,Above,Hip,0,5701,,17.63663141,0,1.2,,,,1,1,,0.03,nav,1,1961,1,, 21634,NJBF000055240,,Margate City,NJ,39.3255455,-74.514352,RES1,3001,,NaN,NE,1969,0,3102,2,1,846.8490343,846.8490343,3505,NO,29.86,41.82,3,-2.02,6106,113.227503,123.082618,132.774072,139.331861,I,Above,Flat,0,5701,,35.83850849,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21635,NJBF000058422,25 N ESSEX AVE,Margate City,NJ,39.33227753,-74.49843054,RES1,3001,,18,NE,1950,1950,3102,2,1,1602.024008,1602.024008,3505,NO,44.72,57.71,3,7.72,6106,113.479734,123.287312,132.992426,139.567126,I,Above,Hip,0,5701,,51.21238301,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21636,NJBF000055773,302 N HARDING AVE,Margate City,NJ,39.32693889,-74.51574213,RES1,3001,,47,NE,1950,1950,3102,2,2,1175.172735,1175.172735,3505,NO,39.97,51.44,3,5.14,6106,113.176442,123.042169,132.733309,139.285352,I,Above,Gable,0,5701,,45.7011595,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21637,NJBF000058432,423 N NASSAU AVE,Margate City,NJ,39.33229964,-74.51123947,RES1,3001,,17,NE,1963,1963,3102,2,1,1715.029781,1715.029781,3505,NO,30.91,38.06,3,1.08,6106,113.197168,123.060463,132.75586,139.305365,I,Above,Gable,0,5701,,34.48499045,0,0,,,,1,1,,0.03,nav,1,1963,2,, 21638,NJBF000058243,402 N LANCASTER AVE,Margate City,NJ,39.33196229,-74.50964444,RES1,3001,,17,NE,1958,1958,3102,2,1,1656.676982,1656.676982,3505,NO,33.38,39.27,3,0.85,6106,113.237155,123.092465,132.788869,139.342642,I,Above,Gable,0,5701,,36.32493758,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 21639,NJBF000058326,404 N LANCASTER AVE,Margate City,NJ,39.33209824,-74.50979105,RES1,3001,,20,NE,2017,2017,3102,3,1,2109.940592,2109.940592,3505,NO,43.04,49.6,3,2.17,6106,113.231965,123.088327,132.784658,139.337765,I,Above,Gable,0,5701,,46.31688736,0,0,,,,1,1,,0.03,nav,1,2017,3,, 21640,NJBF000056568,26 N KENYON AVE,Margate City,NJ,39.32877428,-74.50555941,RES1,3001,,19,NE,1936,1936,3102,2,1,1186.6771,1186.6771,3505,NO,26.01,40.31,3,3.48,6106,113.372962,123.200812,132.899318,139.469113,I,Above,Hip,0,5701,,33.16233412,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 21641,NJBF000057370,219 N MANSFIELD AVE,Margate City,NJ,39.33044964,-74.50856763,RES1,3001,,17,NE,1950,1950,3101,1,1,1226.829889,1226.829889,3505,NO,23.72,31.98,3,5.58,6106,113.282598,123.128623,132.825425,139.385253,I,Above,Hip,0,5701,,27.85115128,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21642,NJBF000058110,16 S ARGYLE AVE,Margate City,NJ,39.33172752,-74.4933015,RES1,3001,,19,NE,1923,1923,3102,2,1,1345.687435,1345.687435,3505,NO,41.27,54.53,3,5.73,6106,113.600476,123.384469,133.094017,139.679091,I,Above,Hip,0,5701,,47.898213,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 21643,NJBF000058049,18 S ARGYLE AVE,Margate City,NJ,39.33162151,-74.49323616,RES1,3001,,18,NE,1966,1966,3102,2,1,1697.825138,1697.825138,3505,NO,44.56,51.87,3,5.88,6106,113.603422,123.386832,133.096414,139.681917,I,Above,Hip,0,5701,,48.21419859,0,0,,,,1,1,,0.03,nav,1,1966,2,, 21644,NJBF000054057,9313 VENTNOR AVE,Margate City,NJ,39.32224373,-74.51462067,COM1,3001,,NaN,ME,2014,1920,3401,2,1,1128.883317,1128.883317,3507,NO,24.23,33.44,1,-0.59,6106,113.270921,123.115855,132.805695,139.368389,I,Above,Hip,0,NaN,,28.83620978,0,0,,,,1,1,,0.03,nav,1,2014,2,, 21645,NJBF000056185,302 N UNION AVE,Margate City,NJ,39.32791404,-74.51411768,RES1,3001,,19,NE,1951,1951,3101,1,1,1194.985676,1194.985676,3505,NO,20,27.98,3,1.62,6106,113.197638,123.05961,132.752049,139.305678,I,Above,Gable,0,5701,,23.98910108,0,0,,,,1,1,,0.03,nav,1,1951,1,, 21646,NJBF000056191,116 N PEMBROKE AVE,Margate City,NJ,39.32792977,-74.50951853,RES1,3001,,17,NE,1909,1909,3102,2,1,2745.031984,2745.031984,3505,NO,43.15,53.2,3,5.68,6106,113.298271,123.140506,132.835926,139.399387,I,Above,Gable,0,5701,,48.17315544,0,1.1,,,,1,1,,0.03,nav,1,1909,2,, 21647,NJBF000056169,303 N VENDOME AVE,Margate City,NJ,39.32786879,-74.51444772,RES1,3001,,17,NE,1950,1950,3102,1,1,1873.890879,1873.890879,3505,NO,15.54,25.82,3,3.55,6106,113.191067,123.054311,132.746535,139.299531,I,Above,Flat,0,5701,,20.6779025,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21648,NJBF000057564,26 N GRANVILLE AVE,Margate City,NJ,39.33078834,-74.50155543,RES1,3001,,18,NE,1932,1932,3102,2,1,1410.601973,1410.601973,3505,NO,21.07,32.52,3,-2.07,6106,113.432086,123.248792,132.950959,139.523928,I,Above,Gable,0,5701,,26.79274419,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 21649,NJBF000057619,28 N GRANVILLE AVE,Margate City,NJ,39.33088822,-74.50163228,RES1,3001,,17,NE,1962,1962,3102,2,1,1713.675334,1713.675334,3505,NO,27.02,38.48,3,1.43,6106,113.428964,123.246299,132.948429,139.520999,I,Above,Gable,0,5701,,32.74928352,0,0,,,,1,1,,0.03,nav,1,1962,2,, 21650,NJBF000055839,118 N SUMNER AVE,Margate City,NJ,39.32709565,-74.51147439,RES1,3001,,21,NE,2017,2017,3102,3,1,1190.56797,1190.56797,3505,NO,34.06,41.57,3,0.52,6106,113.267609,123.115551,132.809388,139.370406,I,Above,Hip,0,5701,,37.81533195,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 21651,NJBF000056458,21 N LANCASTER AVE,Margate City,NJ,39.32850476,-74.50576525,RES1,3001,,17,NE,1946,1946,3101,1,1,1083.970894,1083.970894,3505,NO,12.9,21.4,3,-1.91,6106,113.372331,123.20023,132.898501,139.468452,I,Above,Hip,0,5701,,17.15375565,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 21652,NJBF000056275,305 N UNION AVE,Margate City,NJ,39.32811439,-74.51378184,RES1,3001,,17,NE,1930,1930,3101,1,1,1158.466708,1158.466708,3505,NO,11.32,21.84,3,-1.59,6106,113.202067,123.063244,132.755954,139.309898,I,Above,Gable,0,5701,,16.58127581,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 21653,NJBF000055978,15 N OSBORNE AVE,Margate City,NJ,39.32743266,-74.50748739,RES1,3001,,18,NE,1939,1939,3102,2,1,1249.952956,1249.952956,3505,NO,27.91,40.85,3,-0.07,6106,113.350107,123.182027,132.878699,139.447339,I,Above,Hip,0,5701,,34.38209597,0,0,,,,1,1,,0.03,nav,1,1939,2,, 21654,NJBF000056370,17 N LANCASTER AVE,Margate City,NJ,39.32832906,-74.50559158,RES1,3001,,17,NE,1948,1948,3101,1,1,1375.161884,1375.161884,3505,NO,19.77,31.39,3,1.56,6106,113.378681,123.205287,132.903631,139.474294,I,Above,Flat,0,5701,,25.58034028,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 21655,NJBF000056401,304 N THURLOW AVE,Margate City,NJ,39.32838876,-74.51363793,RES1,3001,,20,NE,2016,2016,3102,3,1,1039.313829,1039.313829,3505,NO,33.66,43.64,3,-1.85,6106,113.201191,123.062641,132.755525,139.309195,I,Above,Gable,0,5701,,38.65007093,0,0,,,,1,1,,0.03,nav,1,2016,3,, 21656,NJBF000056128,14 N MANSFIELD AVE,Margate City,NJ,39.32777613,-74.50655085,RES1,3001,,20,NE,2008,2008,3102,3,1,1464.232952,1464.232952,3505,NO,46.83,60.47,3,-0.17,6106,113.365653,123.194643,132.892103,139.461962,I,Above,Hip,0,5701,,53.64837717,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 21657,NJBF000056419,19 N LANCASTER AVE,Margate City,NJ,39.32842734,-74.5056754,RES1,3001,,19,NE,1948,1948,3102,2,1,1170.763628,1170.763628,3505,NO,27.06,33.26,3,4.75,6106,113.375438,123.202707,132.90102,139.471314,I,Above,Flat,0,5701,,30.15839892,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 21658,NJBF000056891,211 N OSBORNE AVE,Margate City,NJ,39.3294675,-74.509476,RES1,3001,,17,NE,1910,1910,3102,2,1,880.2892101,880.2892101,3505,NO,36.78,45.3,3,3.16,6106,113.276852,123.123761,132.819674,139.379903,I,Above,Gable,0,5701,,41.04028977,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 21659,NJBF000057435,8401 MONMOUTH AVE,Margate City,NJ,39.33057004,-74.50648811,RES1,3001,,18,NE,1960,1960,3102,2,1,1557.608383,1557.608383,3505,NO,32.11,41.69,3,8.97,6106,113.326633,123.16401,132.862332,139.426141,I,Above,Hip,0,5701,,36.89832782,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21660,NJBF000058202,304 N JEROME AVE,Margate City,NJ,39.3318885,-74.5077145,RES1,3001,,17,NE,1962,1962,3102,2,1,1513.393133,1513.393133,3505,NO,22.52,29.14,3,0.95,6106,113.280707,123.127389,132.825129,139.383095,I,Above,Gable,0,5701,,25.82950809,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 21661,NJBF000055000,216 N ADAMS AVE,Margate City,NJ,39.324855,-74.51795747,RES1,3001,,39,NE,2003,2003,3102,2,1,3356.244816,3356.244816,3507,NO,32.66,46.6,1,0.83,6106,113.159042,123.027138,132.716225,139.267329,I,Above,Hip,0,5701,,39.63151901,0,0,,,,1,1,,0.03,nav,1,2003,2,, 21662,NJBF000058524,108 N FRONTENAC AVE,Margate City,NJ,39.33246241,-74.50113925,RES1,3001,,17,NE,1955,1955,3102,2,1,1899.407571,1899.407571,3505,NO,38.2,52.83,3,1.05,6106,113.417447,123.237256,132.94015,139.5094,I,Above,Hip,0,5701,,45.51578392,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 21663,NJBF000060548,400 N DOUGLAS AVE,Margate City,NJ,39.33616785,-74.50206876,RES1,3001,,18,NE,1962,1962,3102,2,1,2463.452952,2463.452952,3505,NO,33.87,44.84,3,2.9,6106,113.344826,123.179081,132.881805,139.437607,I,Above,Gable,0,5701,,39.35741886,0,0,,,,1,1,,0.03,nav,1,1962,2,, 21664,NJBF000053112,,Margate City,NJ,39.318737,-74.51508087,RES3F,3002,,NaN,E,1976,0,3305,6,1,28111.9281,28111.9281,3507,NO,75.32,86.21,1,1.75,6106,113.313927,123.148328,132.835999,139.402402,I,Above,Gable,0,5701,,80.7670378,0,0,,,,2,2,,0.03,nav,1,1976,6,, 21665,NJBF000055224,N BENSON AVE,Margate City,NJ,39.32548818,-74.51466222,IND2,3003,,NaN,ME,1969,0,3401,1,1,6104.951189,6104.951189,3507,NO,15.69,24.41,1,2.92,6106,113.221571,123.077816,132.76906,139.326282,I,Above,Hip,0,NaN,,20.05072011,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 21666,NJBF000055002,,Margate City,NJ,39.3248565,-74.51371766,RES1,3001,,NaN,NE,1969,0,3102,2,1,962.4533604,962.4533604,3505,NO,28,39.83,3,3.48,6106,113.251578,123.101672,132.793239,139.353624,I,Above,Flat,0,5701,,33.91088616,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21667,NJBF000058674,19 N CLERMONT AVE,Margate City,NJ,39.33272814,-74.49657745,RES1,3001,,17,NE,1950,1950,3102,2,1,1698.84616,1698.84616,3505,NO,30.05,38.74,3,-1.47,6106,113.514248,123.31512,133.021941,139.598504,I,Above,Hip,0,5701,,34.39693951,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21668,NJBF000056519,108 S ESSEX AVE,Margate City,NJ,39.32866063,-74.49604147,RES1,3001,,18,NE,1925,1925,3102,3,1,521.7400432,521.7400432,3505,NO,41.37,50.92,3,4.01,6106,113.583758,123.370477,133.076672,139.664677,I,Above,Gable,0,5701,,46.14694952,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 21669,NJBF000056604,106 S ESSEX AVE,Margate City,NJ,39.32885268,-74.4961212,RES1,3001,,17,NE,1947,1947,3102,2,1,2121.211295,2121.211295,3505,NO,25.12,32.56,3,-1.24,6106,113.579254,123.36689,133.073076,139.660548,I,Above,Flat,0,5701,,28.83923469,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 21670,NJBF000058645,121 N GLADSTONE AVE,Margate City,NJ,39.3326641,-74.50185341,RES1,3001,,17,NE,1946,1946,3102,2,1,1119.499216,1119.499216,3505,NO,37.66,45.64,3,6.41,6106,113.398846,123.222332,132.92469,139.492031,I,Above,Hip,0,5701,,41.64980074,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 21671,NJBF000062522,21 BAYCREST DRIVE,Margate City,NJ,39.33962816,-74.5083644,RES1,3001,,18,NE,1978,1978,3102,2,1,1637.906818,1637.906818,3505,NO,27.63,35.17,3,0,6106,113.157448,123.02874,132.726788,139.259158,I,Above,Gable,0,5701,,31.40199047,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 21672,NJBF000054082,29 S CEDAR GROVE AVE,Margate City,NJ,39.32232623,-74.51043757,RES1,3001,,17,NE,1955,1955,3102,2,1,2431.006942,2431.006942,3505,NO,27.04,36.1,3,-2.6,6106,113.360887,123.188483,132.881021,139.45205,I,Above,Gable,0,5701,,31.57201681,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 21673,NJBF000055274,,Margate City,NJ,39.32563243,-74.51787642,COM8,3001,,NaN,ME,1969,0,3401,3,1,3227.306371,3227.306371,3502,NO,64.48,72.07,5,14.93,6102,113.1492,123.019626,132.709068,139.258893,I,Above,Flat,0,5701,,68.27632177,0,0,,,,1,1,,0.03,nav,1,1969,3,, 21674,NJBF000055170,,Margate City,NJ,39.32535274,-74.51829004,COM8,3001,,NaN,ME,1952,0,3401,2,1,1419.770506,1419.770506,3502,NO,27.5,40.53,5,-3.95,6102,113.144327,123.015555,132.70466,139.254081,I,Above,Flat,0,5701,,34.01751555,0,0,,,,1,1,,0.03,nav,1,1952,2,, 21675,NJBF000055199,,Margate City,NJ,39.32542675,-74.51814587,COM8,3001,,NaN,ME,1952,0,3401,3,1,1151.242771,1151.242771,3502,NO,42.58,50.09,5,3.75,6102,113.146365,123.017236,132.706449,139.256055,I,Above,Flat,0,5701,,46.33605064,0,0,,,,1,1,,0.03,nav,1,1952,3,, 21676,NJBF000055887,9125 FREMONT AVE,Margate City,NJ,39.32720877,-74.51644714,RES1,3001,,21,NE,1999,1999,3102,2,1,2096.950861,2096.950861,3505,NO,42.01,53.2,3,6.84,6106,113.157017,123.026667,132.71749,139.267403,I,Above,Gable,0,5701,,47.60578346,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 21677,NJBF000055953,9121 FREMONT AVE,Margate City,NJ,39.32736053,-74.51638581,RES1,3001,,22,NE,2000,2000,3102,3,1,2765.14979,2765.14979,3505,NO,35.99,44.68,3,0.93,6106,113.156104,123.025999,132.716909,139.266645,I,Above,Hip,0,5701,,40.33063242,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 21678,NJBF000059390,21 EAST DRIVE,Margate City,NJ,39.33415983,-74.49418739,RES1,3001,,19,NE,1925,1925,3102,2,1,1200.445814,1200.445814,3505,NO,34.71,43.81,3,3.84,6106,113.546878,123.341456,133.050716,139.626248,I,Above,Hip,0,5701,,39.26275662,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21679,NJBF000059353,19 EAST DRIVE,Margate City,NJ,39.33407698,-74.49413903,RES1,3001,,18,NE,1925,1925,3102,2,1,1441.181911,1441.181911,3505,NO,30.06,42.9,3,8.14,6106,113.549095,123.343239,133.052528,139.628432,I,Above,Hip,0,5701,,36.4789257,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21680,NJBF000060443,406 N EXETER AVE,Margate City,NJ,39.33598021,-74.50352325,RES1,3001,,19,NE,1986,1986,3102,2,1,1733.943305,1733.943305,3505,NO,25.67,39.87,3,0.1,6106,113.315312,123.155422,132.856962,139.410843,I,Above,Hip,0,5701,,32.76713424,0,0,,,,1,1,,0.03,nav,1,1986,2,, 21681,NJBF000057538,108 N HANOVER AVE,Margate City,NJ,39.330744,-74.50390483,RES1,3001,,17,NE,1953,1953,3101,1,1,1081.877683,1081.877683,3507,NO,15.99,21.51,1,0.06,6106,113.380985,123.207709,132.908013,139.476549,I,Above,Hip,0,5701,,18.75294194,0,0,,,,1,1,,0.03,nav,1,1953,1,, 21682,NJBF000059484,322 N HUNTINGTON AVE,Margate City,NJ,39.3343305,-74.506421,RES1,3001,,20,NE,2005,2005,3101,2,1,1691.123722,1691.123722,3505,NO,32.73,44.38,3,4.27,6110,113.274478,123.122667,132.821784,139.375457,I,Above,Flat,0,5701,,38.55487501,0,0,,,,1,1,,0.35,nav,1,2005,2,, 21683,NJBF000058646,403 N KENYON AVE,Margate City,NJ,39.33266561,-74.50876031,RES1,3001,,17,NE,1968,1968,3102,2,1,1700.757371,1700.757371,3505,NO,30.93,39.63,3,0.24,6106,113.24655,123.100112,132.797267,139.350999,I,Above,Gable,0,5701,,35.27846276,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 21684,NJBF000058090,102 N GLADSTONE AVE,Margate City,NJ,39.3316951,-74.50161129,RES1,3001,,18,NE,1950,1950,3102,2,1,703.8457428,703.8457428,3505,NO,26.85,36.15,3,0.59,6106,113.417931,123.237553,132.939895,139.510393,I,Above,Hip,0,5701,,31.49775476,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21685,NJBF000061724,300 MARGATE BLVD.,Margate City,NJ,39.33815114,-74.51577321,IND6,3002,,NaN,E,1969,0,3401,1,1,2473.160331,2473.160331,3507,NO,11.76,20.87,1,0.22,6106,113.013861,122.914279,132.607412,139.129886,I,Above,Flat,0,5703,,16.31211012,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21686,NJBF000060518,,Margate City,NJ,39.33612731,-74.49875545,RES1,3001,,NaN,NE,1950,0,3103,5,1,1327.470746,1327.470746,3505,NO,62.97,77.11,3,-1.26,6106,113.418641,123.23832,132.94381,139.505228,I,Above,Gable,0,5701,,70.0418128,0,0,,,,1,1,,0.03,nav,1,1950,5,, 21687,NJBF000062285,8010 LAGOON DRIVE,Margate City,NJ,39.33915153,-74.50960571,RES1,3001,,18,NE,1972,1972,3102,2,1,1429.338278,1429.338278,3505,NO,37.39,51.5,3,-0.64,6106,113.136504,123.012082,132.709245,139.240973,I,Above,Gable,0,5701,,44.44781317,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 21688,NJBF000062340,8008 LAGOON DRIVE,Margate City,NJ,39.33925084,-74.50940685,RES1,3001,,18,NE,1973,1973,3102,2,1,1841.037388,1841.037388,3505,NO,23.98,30.47,3,1.99,6106,113.139542,123.014495,132.711798,139.243558,I,Above,Gable,0,5701,,27.22806261,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 21689,NJBF000060980,413 N GLADSTONE AVE,Margate City,NJ,39.33684752,-74.50532001,RES1,3001,,17,NE,1988,1988,3101,2,1,2355.526266,2355.526266,3505,NO,22.59,35.63,3,-1.37,6106,113.263453,123.113835,132.81406,139.361745,I,Above,Hip,0,5701,,29.10981403,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 21690,NJBF000061032,415 N GLADSTONE AVE,Margate City,NJ,39.33694062,-74.50544413,RES1,3001,,18,NE,1987,1987,3101,1,1,2303.192321,2303.192321,3505,NO,19.04,28.21,3,7.49,6106,113.259412,123.110594,132.810731,139.357872,I,Above,Hip,0,5701,,23.62517246,0,0,,,,1,1,,0.03,nav,1,1987,1,, 21691,NJBF000060062,226 N DELAVAN AVE,Margate City,NJ,39.335336,-74.500317,RES1,3001,,17,NE,1950,1950,3101,1,1,1141.754725,1141.754725,3507,NO,17.78,25.76,1,1.42,6106,113.395153,123.219485,132.923551,139.485218,I,Above,Gable,0,5701,,21.77231748,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21692,NJBF000060118,122 N BARCLAY AVE,Margate City,NJ,39.3354425,-74.4974245,RES1,3001,,17,NE,1950,1950,3102,2,1,998.3733213,998.3733213,3505,NO,34.26,46.86,3,6.95,6106,113.457571,123.269619,132.976177,139.542168,I,Above,Gable,0,5701,,40.55699589,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21693,NJBF000058663,10 N BRUNSWICK AVE,Margate City,NJ,39.33270391,-74.4955545,RES1,3001,,21,NE,2002,2002,3102,3,1,1219.111963,1219.111963,3505,NO,45.47,58.45,3,3.12,6106,113.537133,123.333538,133.041263,139.619611,I,Above,Flat,0,5701,,51.9576736,0,0,,,,1,1,,0.03,nav,1,2002,3,, 21694,NJBF000057572,111 S ANDOVER AVE,Margate City,NJ,39.33080366,-74.4913648,RES1,3001,,23,NE,2016,2016,3102,2,1,2075.410472,2075.410472,3505,NO,43.25,49.56,3,7.2,6106,113.656134,123.429236,133.140354,139.731294,I,Above,Hip,0,5701,,46.40473068,0,0,,,,1,1,,0.03,nav,1,2016,2,, 21695,NJBF000060586,415 N HUNTINGTON AVE,Margate City,NJ,39.33624004,-74.50766743,RES1,3001,,17,NE,1963,1963,3101,2,1,1299.507317,1299.507317,3505,NO,19.86,28.5,3,-1.44,6110,113.220056,123.079112,132.777538,139.322808,I,Above,Gable,0,5701,,24.18202667,0,0,,,,1,1,,0.35,nav,1,1963,2,, 21696,NJBF000063559,7505 BURK AVE,Margate City,NJ,39.342057,-74.50268623,RES1,3001,,18,NE,1985,1985,3102,2,1,2050.070298,2050.070298,3505,NO,36.79,48.35,3,7.31,6106,113.250186,123.1023,132.804658,139.337005,I,Above,Hip,0,5701,,42.57050557,0,0,,,,1,1,,0.03,nav,1,1985,2,, 21697,NJBF000053912,12 N JEFFERSON AVE,Margate City,NJ,39.3217375,-74.516398,RES3C,3001,,21,ME,1988,1988,3301,2,1,3336.306608,3336.306608,3505,NO,19.45,31.66,3,-2.43,6106,113.239868,123.090484,132.779022,139.338741,I,Above,Gable,0,NaN,,25.55434987,0,0,,,,1,1,,0.03,nav,1,1988,2,, 21698,NJBF000057998,120 N HUNTINGTON AVE,Margate City,NJ,39.33152707,-74.50385335,RES1,3001,,17,NE,1950,1950,3102,2,1,1954.247797,1954.247797,3507,NO,26.66,38.09,1,0.27,6106,113.370938,123.19977,132.900303,139.466942,I,Above,Hip,0,5701,,32.37718683,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21699,NJBF000054009,6 N ADAMS AVE,Margate City,NJ,39.32208861,-74.51533936,RES3C,3001,,20,ME,1927,1927,3301,2,1,2538.841427,2538.841427,3505,NO,22.82,28.4,3,-2.56,6106,113.257613,123.105024,132.794359,139.355783,I,Above,Gable,0,NaN,,25.61084068,0,0,,,,1,1,,0.03,nav,1,1927,2,, 21700,NJBF000063653,7405 BURK AVE,Margate City,NJ,39.34231133,-74.50214697,RES1,3001,,18,NE,1989,1989,3102,2,1,1636.041802,1636.041802,3505,NO,46.24,55.72,3,8.26,6106,113.258712,123.109043,132.811832,139.343878,I,Above,Gable,0,5701,,50.97856739,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 21701,NJBF000058771,216 N HAVERFORD AVE,Margate City,NJ,39.33290011,-74.50432854,RES1,3001,,17,NE,1945,1945,3102,2,1,1021.011788,1021.011788,3505,NO,30.94,39.16,3,-1.69,6106,113.340907,123.175834,132.87629,139.438242,I,Above,Gable,0,5701,,35.04885651,0,0,,,,1,1,,0.03,nav,1,1945,2,, 21702,NJBF000056388,301 N THURLOW AVE,Margate City,NJ,39.32836724,-74.51308279,RES1,3001,,19,NE,2005,2005,3102,2,1,1933.735614,1933.735614,3505,NO,26.39,32.9,3,-1,6106,113.213688,123.072674,132.765897,139.320829,I,Above,Hip,0,5701,,29.64273621,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 21703,NJBF000061519,7809 WELLINGTON AVE,Margate City,NJ,39.33778307,-74.50466698,RES1,3001,,18,NE,1969,1969,3102,3,1,2442.234046,2442.234046,3505,NO,49.3,64.26,3,8.89,6106,113.264891,123.114914,132.815702,139.361309,I,Above,Flat,0,5701,,56.77995077,0,1.1,,,,1,1,,0.03,nav,1,1969,3,, 21704,NJBF000054560,9414B MONMOUTH AVE,Margate City,NJ,39.32372867,-74.51735297,RES3B,3004,,39,ME,1984,1984,3301,3,1,5256.947698,5256.947698,3505,NO,53.99,64.11,3,2.4,6106,113.18909,123.050721,132.739661,139.294115,I,Above,Flat,0,NaN,,59.05222792,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 21705,NJBF000055156,106 S LANCASTER AVE,Margate City,NJ,39.32529564,-74.50350061,RES1,3001,,20,NE,1948,1948,3102,2,1,1098.029924,1098.029924,3505,NO,34.99,47.4,3,8.7,6106,113.468704,123.276753,132.975581,139.555703,I,Above,Hip,0,5701,,41.19630579,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 21706,NJBF000056072,9005 AMHERST AVE,Margate City,NJ,39.32765583,-74.51429816,RES1,3001,,17,NE,1949,1949,3102,2,1,1686.195455,1686.195455,3505,NO,30.42,36.78,3,3.2,6106,113.197488,123.059389,132.751634,139.305407,I,Above,Hip,0,5701,,33.59940567,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 21707,NJBF000059157,8099 AMHERST AVE,Margate City,NJ,39.33367399,-74.50385784,RES1,3001,,17,NE,1954,1954,3101,2,1,1232.643899,1232.643899,3505,NO,42.35,53.21,3,8.5,6106,113.340333,123.17544,132.876399,139.436995,I,Above,Hip,0,5701,,47.78202875,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21708,NJBF000059198,8097 AMHERST AVE,Margate City,NJ,39.333756,-74.503687,RES1,3001,,17,NE,1954,1954,3101,2,1,1343.900791,1343.900791,3505,NO,28.76,33.92,3,4.44,6106,113.342948,123.177544,132.87865,139.439323,I,Above,Hip,0,5701,,31.34346063,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21709,NJBF000059829,314 N GLADSTONE AVE,Margate City,NJ,39.33492747,-74.50411963,RES1,3001,,17,NE,1960,1960,3101,1,1,1521.053861,1521.053861,3505,NO,14.52,25.96,3,0.24,6106,113.316884,123.156687,132.857633,139.413866,I,Above,Hip,0,5701,,20.2417243,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 21710,NJBF000058817,8511 FULTON AVE,Margate City,NJ,39.33298515,-74.51105667,RES1,3001,,17,NE,1952,1952,3102,2,1,2695.955766,2695.955766,3505,NO,37,49.14,3,-1.42,6102,113.191355,123.055915,132.751559,139.299607,I,Above,Gable,0,5701,,43.0734992,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 21711,NJBF000058196,31 N FRONTENAC AVE,Margate City,NJ,39.33187407,-74.50003856,RES1,3001,,17,NE,1940,1940,3101,1,1,1436.644269,1436.644269,3505,NO,18.18,25.77,3,3,6106,113.450022,123.263373,132.967042,139.539981,I,Above,Flat,0,5701,,21.97493877,0,0,,,,1,1,,0.03,nav,1,1940,1,, 21712,NJBF000058621,3 WEST DRIVE,Margate City,NJ,39.33263029,-74.49447679,RES1,3001,,18,NE,1925,1925,3102,2,1,1106.260017,1106.260017,3505,NO,32.18,38.72,3,6.79,6106,113.561906,123.35348,133.062162,139.642505,I,Above,Hip,0,5701,,35.44970149,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21713,NJBF000062333,509 N DELAVAN AVE,Margate City,NJ,39.33924014,-74.50365205,RES1,3001,,17,NE,1964,1964,3102,2,1,1492.170895,1492.170895,3505,NO,30.42,40.73,3,2.83,6106,113.267232,123.116594,132.81823,139.360223,I,Above,Gable,0,5701,,35.57368186,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 21714,NJBF000062492,8110 BAYSHORE DR,Margate City,NJ,39.33957359,-74.51107309,RES1,3001,,20,NE,1971,1971,3102,2,1,7487.260856,7487.260856,3505,NO,30.97,38.54,3,2.33,6106,113.098134,122.981386,132.677528,139.204952,I,Above,Hip,0,5701,,34.75458213,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 21715,NJBF000062160,8201 LAGOON DRIVE,Margate City,NJ,39.33890354,-74.51086723,RES1,3001,,19,NE,1973,1973,3102,2,1,2780.558194,2780.558194,3505,NO,26.99,35.3,3,-2.78,6106,113.112003,122.992547,132.688835,139.218974,I,Above,Flat,0,5701,,31.14394404,0,0,,,,1,1,,0.03,nav,1,1973,2,, 21716,NJBF000054195,104 S THURLOW AVE,Margate City,NJ,39.3226949,-74.50823912,RES1,3001,,20,NE,1989,1989,3103,3,1,1843.119529,1843.119529,3505,NO,45.73,55.72,3,0,6106,113.403392,123.22296,132.917175,139.491962,I,Above,Hip,0,5701,,50.72320682,0,0,,,,1,1,,0.03,nav,1,1989,3,, 21717,NJBF000056509,401 N VENDOME AVE,Margate City,NJ,39.32863356,-74.51515734,RES1,3001,,17,NE,1930,1930,3102,2,1,1413.579488,1413.579488,3505,NO,41.68,51.2,3,4,6106,113.164282,123.033079,132.725113,139.274884,I,Above,Gable,0,5701,,46.44212115,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 21718,NJBF000063313,7905 BAYSHORE DR,Margate City,NJ,39.34139061,-74.50816765,RES1,3001,,NaN,NE,1971,0,3102,2,1,4355.953675,4355.953675,3505,NO,34.07,46.9,3,-2.25,6106,113.137563,123.012496,132.71062,139.236861,I,Above,Flat,0,5701,,40.48671859,0,0,,,,1,1,,0.03,nav,1,1971,2,, 21719,NJBF000056118,,Margate City,NJ,39.32776605,-74.51061377,RES1,3001,,NaN,NE,1969,0,3102,2,1,2267.948935,2267.948935,3505,NO,38.31,52,3,3.72,6106,113.276644,123.123062,132.817692,139.379188,I,Above,Gable,0,5701,,45.15501498,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21720,NJBF000060908,49 BAYSIDE COURT,Margate City,NJ,39.33672755,-74.51102003,RES1,3001,,19,NE,1996,1996,3102,2,1,1742.01636,1742.01636,3505,NO,38.19,49.22,3,0.08,6106,113.13905,123.014302,132.710416,139.247438,I,Above,Gable,0,5701,,43.70182436,0,0,,,,1,1,,0.03,nav,1,1996,2,, 21721,NJBF000062982,8004 BAYSHORE DR,Margate City,NJ,39.34064078,-74.50955748,RES1,3001,,20,NE,1975,1975,3102,2,1,3230.5506,3230.5506,3505,NO,37.36,43.25,3,0.09,6106,113.117024,122.996274,132.693435,139.219948,I,Above,Gable,0,5701,,40.3068271,0,0,,,,1,1,,0.03,nav,1,1975,2,, 21722,NJBF000059341,318 N HUNTINGTON AVE,Margate City,NJ,39.33405156,-74.506237,RES1,3001,,18,NE,1986,1986,3101,1,1,2673.568016,2673.568016,3505,NO,18.35,27.62,3,0.18,6106,113.282487,123.129069,132.828281,139.383152,I,Above,Hip,0,5701,,22.9835113,0,0,,,,1,1,,0.03,nav,1,1986,1,, 21723,NJBF000054914,102 S OSBORNE AVE,Margate City,NJ,39.32462851,-74.50538983,RES1,3001,,21,NE,2004,2004,3103,3,1,1488.043101,1488.043101,3505,NO,51.61,65.54,3,2.97,6106,113.437111,123.25103,132.948158,139.525707,I,Above,Hip,0,5701,,58.57121623,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21724,NJBF000057383,7607 ATLANTIC AVE,Margate City,NJ,39.33047538,-74.49477107,RES1,3001,,18,NE,1948,1948,3102,2,1,1293.586732,1293.586732,3505,NO,39.48,49.74,3,6.88,6106,113.58585,123.372512,133.080386,139.66649,I,Above,Hip,0,5701,,44.60751078,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21725,NJBF000061387,12 BAYSIDE COURT,Margate City,NJ,39.33754817,-74.51046431,RES1,3001,,19,NE,1999,1999,3102,2,1,1807.260853,1807.260853,3505,NO,45.73,57.17,3,7.02,6106,113.139847,123.014909,132.711444,139.246934,I,Above,Gable,0,5701,,51.45126475,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 21726,NJBF000057338,31 N HANOVER AVE,Margate City,NJ,39.33039377,-74.50293165,RES1,3001,,17,NE,1949,1949,3101,1,1,3057.176227,3057.176227,3505,NO,19.75,27.37,3,5.46,6106,113.407412,123.228883,132.929853,139.501148,I,Above,Gable,0,5701,,23.56220184,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 21727,NJBF000057268,29 N HANOVER AVE,Margate City,NJ,39.33026074,-74.50294523,RES1,3001,,17,NE,1925,1925,3101,1,1,1554.936548,1554.936548,3505,NO,19.26,32.21,3,3.82,6106,113.409031,123.230159,132.931084,139.502674,I,Above,Flat,0,5701,,25.73449585,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 21728,NJBF000056110,102 N OSBORNE AVE,Margate City,NJ,39.32774746,-74.50838087,RES1,3001,,17,NE,1925,1925,3102,2,1,1213.22218,1213.22218,3505,NO,40.03,48.41,3,8.13,6106,113.325912,123.162671,132.858818,139.425009,I,Above,Gable,0,5701,,44.2200806,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21729,NJBF000059921,102 N ARGYLE AVE,Margate City,NJ,39.33508185,-74.49567626,RES1,3001,,17,NE,1955,1955,3102,2,1,1412.324466,1412.324466,3505,NO,37.3,45.03,3,7.53,6106,113.501175,123.304683,133.012744,139.582697,I,Above,Gable,0,5701,,41.1603765,0,0,,,,1,1,,0.03,nav,1,1955,2,, 21730,NJBF000054945,107 S OSBORNE AVE,Margate City,NJ,39.32471616,-74.50494488,RES1,3001,,NaN,NE,1925,1925,3103,1,1,1929.048621,1929.048621,3505,NO,20.44,35.01,3,1.37,6106,113.445575,123.257887,132.955382,139.533646,I,Above,Flat,0,5701,,27.72167555,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 21731,NJBF000058946,31 N CLERMONT AVE,Margate City,NJ,39.33322197,-74.49709235,RES1,3001,,21,NE,2015,2015,3102,2,1,950.7078919,950.7078919,3505,NO,37.93,52.32,3,3.59,6106,113.495948,123.300431,133.006902,139.581037,I,Above,Flat,0,5701,,45.12783319,0,0,,,,1,1,,0.03,nav,1,2015,2,, 21732,NJBF000059729,103 N BARCLAY AVE,Margate City,NJ,39.33474426,-74.49629649,RES1,3001,,17,NE,1949,1949,3102,1,1,1518.010859,1518.010859,3505,NO,15.58,25.69,3,1.94,6106,113.492199,123.297466,133.004917,139.575168,I,Above,Hip,0,5701,,20.63425618,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 21733,NJBF000058916,23 N CLARENDON AVE,Margate City,NJ,39.33317077,-74.49622339,RES1,3001,,17,NE,1925,1925,3102,2,1,1696.821812,1696.821812,3505,NO,24.27,37.14,3,0.73,6106,113.515824,123.31642,133.023647,139.599393,I,Above,Hip,0,5701,,30.70680244,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21734,NJBF000057718,24 S BARCLAY AVE,Margate City,NJ,39.3310483,-74.4935889,RES1,3001,,21,NE,2006,2006,3102,3,1,1318.800298,1318.800298,3505,NO,50.65,61.74,3,3.42,6106,113.603751,123.387025,133.096131,139.682717,I,Above,Hip,0,5701,,56.19463546,0,0,,,,1,1,,0.03,nav,1,2006,3,, 21735,NJBF000058369,8105 MONMOUTH AVE,Margate City,NJ,39.33218365,-74.50365256,RES1,3001,,17,NE,1955,1955,3102,2,1,1212.890668,1212.890668,3505,NO,25.68,37.67,3,-0.46,6106,113.365983,123.195883,132.896717,139.461981,I,Above,Gable,0,5701,,31.6741527,0,0,,,,1,1,,0.03,nav,1,1955,2,, 21736,NJBF000057747,116 N HANOVER AVE,Margate City,NJ,39.33109615,-74.50424276,RES1,3001,,17,NE,1955,1955,3101,1,1,1264.425538,1264.425538,3507,NO,12.38,25.42,1,1.84,6106,113.368507,123.197746,132.897878,139.464865,I,Above,Hip,0,5701,,18.90197675,0,0,,,,1,1,,0.03,nav,1,1955,1,, 21737,NJBF000061145,406 N CLERMONT AVE,Margate City,NJ,39.33713947,-74.50132986,RES1,3001,,17,NE,1959,1959,3102,2,1,1715.635618,1715.635618,3505,NO,36.75,41.82,3,-0.38,6106,113.347663,123.181296,132.884716,139.43831,I,Above,Hip,0,5701,,39.28623428,0,0,,,,1,1,,0.03,nav,1,1959,2,, 21738,NJBF000059472,12 E COLMAR CIRCLE,Margate City,NJ,39.33431336,-74.50447147,RES1,3001,,17,NE,1960,1960,3101,2,1,1681.768296,1681.768296,3505,NO,35.61,49.46,3,0.89,6106,113.317781,123.157385,132.857973,139.415465,I,Above,Hip,0,5701,,42.53503992,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21739,NJBF000053944,106 S VENDOME AVE,Margate City,NJ,39.3218759,-74.5093018,RES1,3001,,20,NE,1945,1945,3102,2,1,1564.349868,1564.349868,3505,NO,27.1,33.89,3,-1.05,6106,113.392384,123.213653,132.906736,139.48054,I,Above,Gable,0,5701,,30.49430736,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 21740,NJBF000058224,3 S BRUNSWICK AVE,Margate City,NJ,39.33192558,-74.49448722,RES1,3001,,19,NE,1920,1920,3102,2,1,1541.881323,1541.881323,3505,NO,41.59,52.44,3,4.22,6106,113.571591,123.361216,133.069725,139.652252,I,Above,Hip,0,5701,,47.01209253,0,0,,,,1,1,,0.03,nav,1,1920,2,, 21741,NJBF000058192,3 S BRUNSWICK AVE,Margate City,NJ,39.33186633,-74.49434659,RES1,3001,,19,NE,1920,1920,3102,2,1,560.4471607,560.4471607,3505,NO,46.29,56.44,3,7.91,6106,113.57552,123.364374,133.072996,139.655936,I,Above,Gable,0,5701,,51.36599487,0,0,,,,1,1,,0.03,nav,1,1920,2,, 21742,NJBF000058515,8 N CLARENDON AVE,Margate City,NJ,39.3324486,-74.49610728,RES1,3001,,17,NE,1949,1949,3102,1,1,1640.949109,1640.949109,3505,NO,21.45,35.7,3,7.6,6106,113.528535,123.326595,133.03377,139.61199,I,Above,Hip,0,5701,,28.5767315,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 21743,NJBF000056345,107 S FRONTENAC AVE,Margate City,NJ,39.32826445,-74.49735837,RES1,3001,,17,NE,1964,1964,3102,1,1,1809.383444,1809.383444,3505,NO,21.9,35.69,3,6.82,6106,113.560506,123.351644,133.056563,139.642993,I,Above,Hip,0,5701,,28.79581446,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 21744,NJBF000059181,4 CIRCLE DRIVE,Margate City,NJ,39.33371659,-74.49446792,RES1,3001,,20,NE,2006,2006,3102,3,1,1767.787813,1767.787813,3505,NO,34.39,41.44,3,2.26,6106,113.546869,123.341435,133.050354,139.627049,I,Above,Hip,0,5701,,37.91548957,0,0,,,,1,1,,0.03,nav,1,2006,3,, 21745,NJBF000057930,15 S BRUNSWICK AVE,Margate City,NJ,39.33139195,-74.49402443,RES1,3001,,19,NE,1943,1943,3102,2,1,1747.043648,1747.043648,3505,NO,32.49,37.95,3,3.5,6106,113.589317,123.375437,133.084234,139.669112,I,Above,Gable,0,5701,,35.21561988,0,1.1,,,,1,1,,0.03,nav,1,1943,2,, 21746,NJBF000057925,102 S FREDERICKSBURG AVE,Margate City,NJ,39.33138466,-74.49160795,RES1,3001,,18,NE,1925,1925,3102,2,1,1463.233673,1463.233673,3505,NO,27.02,33.03,3,2.03,6106,113.642597,123.418393,133.129438,139.718277,I,Above,Hip,0,5701,,30.02578871,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21747,NJBF000056454,103 S FRONTENAC AVE,Margate City,NJ,39.32849893,-74.49757124,RES1,3001,,17,NE,1925,1925,3102,2,1,1716.155002,1716.155002,3505,NO,36.97,42,3,0.09,6106,113.552456,123.345213,133.050027,139.635613,I,Above,Hip,0,5701,,39.48642296,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21748,NJBF000057816,110 N HUNTINGTON AVE,Margate City,NJ,39.33122007,-74.50355554,RES1,3001,,17,NE,1955,1955,3101,1,1,1238.499708,1238.499708,3507,NO,18.1,32.99,1,-0.18,6106,113.381862,123.208496,132.909188,139.477203,I,Above,Hip,0,5701,,25.54703575,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 21749,NJBF000057283,215 N MANSFIELD AVE,Margate City,NJ,39.33028944,-74.50841479,RES1,3001,,17,NE,1950,1950,3101,1,1,1205.45242,1205.45242,3505,NO,24.52,34.07,3,7.91,6106,113.288286,123.133153,132.830022,139.390553,I,Above,Gable,0,5701,,29.29202038,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21750,NJBF000057326,217 N MANSFIELD AVE,Margate City,NJ,39.33036791,-74.50849068,RES1,3001,,17,NE,1950,1950,3101,1,1,1244.083939,1244.083939,3505,NO,17.23,27.79,3,1.84,6106,113.285474,123.130914,132.827749,139.387934,I,Above,Gable,0,5701,,22.5084477,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21751,NJBF000060252,117 N BELMONT AVE,Margate City,NJ,39.335654,-74.4964505,RES1,3001,,20,NE,2003,2003,3102,2,1,1316.772297,1316.772297,3505,NO,30.96,39.42,3,5.86,6106,113.476132,123.284533,132.991982,139.558662,I,Above,Hip,0,5701,,35.19101675,0,0,,,,1,1,,0.03,nav,1,2003,2,, 21752,NJBF000059656,107 N BRUNSWICK AVE,Margate City,NJ,39.33462856,-74.49690692,RES1,3001,,17,NE,1930,1930,3102,2,1,1176.534389,1176.534389,3505,NO,34.19,48.7,3,1.81,6106,113.480319,123.287912,132.994802,139.564509,I,Above,Flat,0,5701,,41.44702283,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 21753,NJBF000059661,7506 WINCHESTER AVE,Margate City,NJ,39.33463355,-74.49553084,RES1,3001,,18,NE,1927,1927,3102,2,1,1382.766443,1382.766443,3505,NO,29.45,41.9,3,5.82,6106,113.510616,123.312279,133.020398,139.592211,I,Above,Hip,0,5701,,35.67483156,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 21754,NJBF000057311,7701 ATLANTIC AVE,Margate City,NJ,39.33034673,-74.49610334,RES3C,3001,,20,E,1982,1982,3303,3,1,9377.636221,9377.636221,3507,NO,49.11,55.64,1,1.29,6106,113.558359,123.350341,133.056991,139.641083,I,Above,Flat,0,NaN,,52.37469468,0,0,,,,1,1,,0.03,nav,1,1982,3,, 21755,NJBF000057165,7701 ATLANTIC AVE,Margate City,NJ,39.33006025,-74.49572068,RES3C,3001,,20,E,1982,1982,3303,3,1,6787.546832,6787.546832,3507,NO,50.58,60.89,1,-0.5,6106,113.570842,123.36035,133.067256,139.65273,I,Above,Flat,0,NaN,,55.73507039,0,0,,,,1,1,,0.03,nav,1,1982,3,, 21756,NJBF000057704,7701 ATLANTIC AVE,Margate City,NJ,39.33102268,-74.49562955,RES3C,3001,,20,E,1982,1982,3303,3,1,1319.387291,1319.387291,3507,NO,41.27,54.88,1,-0.84,6106,113.55918,123.351106,133.058359,139.641524,I,Above,Flat,0,NaN,,48.07439673,0,0,,,,1,1,,0.03,nav,1,1982,3,, 21757,NJBF000053381,2A S COOLIDGE AVE,Margate City,NJ,39.31972472,-74.51821723,RES1,3001,,21,NE,2001,2001,3102,2,1,1251.591214,1251.591214,3507,NO,27.38,38.18,1,2.52,6106,113.230862,123.08185,132.768283,139.327046,I,Above,Flat,0,5701,,32.77764657,0,0,,,,1,1,,0.03,nav,1,2001,2,, 21758,NJBF000055796,7 N OSBORNE AVE,Margate City,NJ,39.3269921,-74.50709605,RES1,3001,,17,NE,1925,1925,3102,3,2,1211.123908,1211.123908,3505,NO,49.27,64.09,3,-0.15,6106,113.365119,123.193954,132.890753,139.461027,I,Above,Hip,0,5701,,56.67627417,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 21759,NJBF000059822,216 N DELAVAN AVE,Margate City,NJ,39.33490169,-74.49989667,RES1,3001,,17,NE,1950,1950,3103,1,1,863.8894743,863.8894743,3505,NO,12.12,26.94,3,0.39,6106,113.410496,123.231806,132.936163,139.500019,I,Above,Hip,0,5701,,19.53248258,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21760,NJBF000053734,9704 WINCHESTER AVE,Margate City,NJ,39.3210955,-74.518587,RES1,3001,,17,NE,1953,1953,3102,2,1,549.0512882,549.0512882,3507,NO,32.67,47.37,1,2.72,6106,113.201999,123.059481,132.746458,139.302457,I,Above,Hip,0,5701,,40.01803787,0,0,,,,1,1,,0.03,nav,1,1953,2,, 21761,NJBF000063198,7707 BAYSHORE DR,Margate City,NJ,39.34110737,-74.50553837,RES1,3001,,19,NE,1963,1963,3102,2,1,2242.539936,2242.539936,3505,NO,28.86,43.01,3,6.86,6106,113.199816,123.062287,132.762414,139.294191,I,Above,Hip,0,5701,,35.9363159,0,1.2,,,,1,1,,0.03,nav,1,1963,2,, 21762,NJBF000059547,100 N BARCLAY AVE,Margate City,NJ,39.33444515,-74.49648082,RES1,3001,,21,NE,2013,2013,3102,3,1,939.7664982,939.7664982,3505,NO,42.3,47.57,3,3.02,6106,113.49229,123.297536,133.004773,139.575797,I,Above,Gable,0,5701,,44.93577158,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 21763,NJBF000062767,609 N DELAVAN AVE,Margate City,NJ,39.34018525,-74.50455098,RES1,3001,,18,NE,1964,1964,3102,2,1,1643.511457,1643.511457,3505,NO,30.26,43.46,3,7.85,6106,113.234326,123.090087,132.791012,139.327945,I,Above,Gable,0,5701,,36.85928034,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 21764,NJBF000059546,210 N DOUGLAS AVE,Margate City,NJ,39.33444457,-74.50020822,RES1,3001,,19,NE,1950,1950,3102,2,1,1505.96735,1505.96735,3505,NO,30.73,35.86,3,2.62,6106,113.410032,123.231427,132.935454,139.500295,I,Above,Gable,0,5701,,33.29438904,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21765,NJBF000059350,205 N ESSEX AVE,Margate City,NJ,39.33407445,-74.50012681,RES1,3001,,17,NE,1950,1950,3102,2,1,1432.881963,1432.881963,3505,NO,29.11,43.91,3,-1,6106,113.417028,123.237035,132.941068,139.507254,I,Above,Hip,0,5701,,36.5095313,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21766,NJBF000058100,401 N MANSFIELD AVE,Margate City,NJ,39.33172059,-74.50975106,RES1,3001,,17,NE,1952,1952,3102,2,1,1684.342877,1684.342877,3505,NO,21.68,30.83,3,-0.13,6106,113.23826,123.093307,132.789587,139.343762,I,Above,Gable,0,5701,,26.25794905,0,0,,,,1,1,,0.03,nav,1,1952,2,, 21767,NJBF000057160,16 N HAVERFORD AVE,Margate City,NJ,39.330055,-74.50162441,RES1,3001,,19,NE,1989,1989,3102,3,1,1251.19468,1251.19468,3505,NO,38.31,52.63,3,5.23,6106,113.441046,123.255863,132.957779,139.532406,I,Above,Gable,0,5701,,45.4669471,0,0,,,,1,1,,0.03,nav,1,1989,3,, 21768,NJBF000057475,10 N FRONTENAC AVE,Margate City,NJ,39.33063253,-74.49972128,RES1,3001,,18,NE,1988,1988,3102,2,1,1181.544762,1181.544762,3505,NO,22.82,28.03,3,0.55,6106,113.474668,123.283014,132.986641,139.563449,I,Above,Hip,0,5701,,25.42293603,0,0,,,,1,1,,0.03,nav,1,1988,2,, 21769,NJBF000056900,106 S DELAVAN AVE,Margate City,NJ,39.32949568,-74.49516706,RES1,3001,,19,NE,1925,1925,3102,3,1,1685.218599,1685.218599,3505,NO,48.44,57.34,3,6.09,6106,113.591052,123.376533,133.083765,139.671537,I,Above,Flat,0,5701,,52.89057321,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 21770,NJBF000061020,801 N JEROME AVE,Margate City,NJ,39.33692591,-74.51174489,RES1,3001,,17,NE,1959,1959,3102,2,1,2632.867846,2632.867846,3505,NO,37.65,49.23,3,1.55,6106,113.120229,122.999253,132.694894,139.229797,I,Above,Gable,0,5701,,43.44334615,0,0.2,,,,1,1,,0.03,nav,1,1959,2,, 21771,NJBF000054900,8707 ATLANTIC AVE,Margate City,NJ,39.3245886,-74.50665666,RES1,3001,,19,NE,1941,1941,3102,2,1,2067.209383,2067.209383,3505,NO,41.7,56.65,3,3.14,6106,113.409967,123.22914,132.925325,139.500509,I,Above,Hip,0,5701,,49.17884896,0,1.2,,,,1,1,,0.03,nav,1,1941,2,, 21772,NJBF000057300,102 S BRUNSWICK AVE,Margate City,NJ,39.33033077,-74.49366294,RES1,3001,,22,NE,2003,2003,3102,3,1,2083.459491,2083.459491,3505,NO,54.34,60.23,3,6.92,6106,113.612268,123.393784,133.102624,139.691005,I,Above,Hip,0,5701,,57.28525674,0,0,,,,1,1,,0.03,nav,1,2003,3,, 21773,NJBF000053863,9715 WINCHESTER AVE,Margate City,NJ,39.32154483,-74.51935011,RES1,3001,,20,NE,1938,2015,3109,2,1,698.8550731,698.8550731,3505,NO,40.45,48.33,3,4.78,6106,113.178597,123.040882,132.727681,139.281324,I,Above,Hip,0,5701,,44.39055479,0,0,,,,1,1,,0.03,nav,1,1938,2,, 21774,NJBF000055040,102 S NASSAU AVE,Margate City,NJ,39.3249676,-74.50480674,RES1,3001,,19,NE,1954,1954,3102,2,1,1853.679188,1853.679188,3505,NO,27.87,41.37,3,0.66,6106,113.444899,123.257444,132.955147,139.533302,I,Above,Gable,0,5701,,34.61640063,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 21775,NJBF000056970,18 N HANOVER AVE,Margate City,NJ,39.32964213,-74.50286378,RES1,3001,,17,NE,1935,1935,3102,2,1,1275.520225,1275.520225,3505,NO,25.06,36.1,3,1.69,6106,113.419693,123.238603,132.939421,139.512617,I,Above,Hip,0,5701,,30.5843329,0,0,,,,1,1,,0.03,nav,1,1935,2,, 21776,NJBF000054064,14 S BENSON AVE,Margate City,NJ,39.32226802,-74.51220261,RES1,3001,,17,NE,1957,1957,3102,2,1,1547.701825,1547.701825,3505,NO,28.11,33.89,3,0.06,6106,113.323259,123.158095,132.849452,139.417059,I,Above,Gable,0,5701,,30.99662715,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 21777,NJBF000054062,6 S DECATUR AVE,Margate City,NJ,39.32225774,-74.51286087,RES1,3001,,19,NE,1962,1962,3102,2,1,1486.135259,1486.135259,3505,NO,21.45,35.75,3,-0.77,6106,113.309064,123.146637,132.837572,139.403863,I,Above,Gable,0,5701,,28.60088185,0,0,,,,1,1,,0.03,nav,1,1962,2,, 21778,NJBF000063228,7607 BURK AVE,Margate City,NJ,39.34117299,-74.5041762,RES1,3001,,18,NE,1986,1986,3102,2,1,1940.911521,1940.911521,3505,NO,39.14,44.94,3,5.54,6106,113.229136,123.085709,132.786904,139.320595,I,Above,Gable,0,5701,,42.04048056,0,0,,,,1,1,,0.03,nav,1,1986,2,, 21779,NJBF000063419,616 N BARCLAY AVE,Margate City,NJ,39.34166132,-74.50338136,RES1,3001,,20,NE,1995,1995,3102,2,1,2702.015891,2702.015891,3505,NO,42.88,54.35,3,6.98,6106,113.240135,123.094375,132.796186,139.329139,I,Above,Hip,0,5701,,48.61485677,0,0,,,,1,1,,0.03,nav,1,1995,2,, 21780,NJBF000060707,310 N CLERMONT AVE,Margate City,NJ,39.33642876,-74.50065753,RES1,3001,,17,NE,1957,1957,3102,1,1,1957.206156,1957.206156,3505,NO,16.31,24.58,3,-2.31,6106,113.372383,123.201174,132.905085,139.462349,I,Above,Hip,0,5701,,20.44203362,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, 21781,NJBF000063694,7508 BAYSHORE DR,Margate City,NJ,39.34241465,-74.50378973,RES1,3001,,20,NE,1986,1986,3102,2,1,3443.628338,3443.628338,3505,NO,37.94,45.58,3,1.81,6106,113.22083,123.078717,132.780151,139.309445,I,Above,Flat,0,5701,,41.76307581,0,0,,,,1,1,,0.03,nav,1,1986,2,, 21782,NJBF000058267,405 N MANSFIELD AVE,Margate City,NJ,39.33200846,-74.51001645,RES1,3001,,17,NE,1958,1958,3102,1,1,2260.901083,2260.901083,3505,NO,15.23,30.16,3,3.23,6106,113.228301,123.085372,132.781532,139.334402,I,Above,Gable,0,5701,,22.69239537,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 21783,NJBF000062079,508 N DOUGLAS AVE,Margate City,NJ,39.33876769,-74.50451783,RES1,3001,,18,NE,1968,1968,3102,2,1,1519.989637,1519.989637,3505,NO,42.08,51.43,3,6.15,6106,113.254554,123.106519,132.807462,139.349768,I,Above,Hip,0,5701,,46.75615596,0,0,,,,1,1,,0.03,nav,1,1968,2,, 21784,NJBF000056774,208 N OSBORNE AVE,Margate City,NJ,39.32923152,-74.50981665,RES1,3001,,17,NE,1953,1953,3101,1,1,1481.655648,1481.655648,3505,NO,15.29,27.81,3,-0.69,6106,113.272771,123.120416,132.816031,139.376071,I,Above,Gable,0,5701,,21.54869698,0,0,,,,1,1,,0.03,nav,1,1953,1,, 21785,NJBF000062363,7812 BURK AVE,Margate City,NJ,39.33930216,-74.5066696,RES1,3001,,18,NE,1971,1971,3102,2,1,1421.496,1421.496,3505,NO,20.32,27.66,3,-1.54,6106,113.1995,123.0624,132.7617,139.29831,I,Above,Gable,0,5701,,23.9882701,0,1.2,,,,1,1,,0.03,nav,1,1971,2,, 21786,NJBF000062159,4 BAYCREST COURT,Margate City,NJ,39.33889846,-74.50903833,RES1,3001,,18,NE,1978,1978,3102,2,1,1693.755227,1693.755227,3505,NO,27.07,39.86,3,1.15,6106,113.152614,123.024986,132.722551,139.256245,I,Above,Hip,0,5701,,33.4672717,0,0,,,,1,1,,0.03,nav,1,1978,2,, 21787,NJBF000062539,605 N DOUGLAS AVE,Margate City,NJ,39.33967067,-74.5048475,RES1,3001,,18,NE,1966,1966,3102,2,1,1717.014096,1717.014096,3505,NO,30.24,44.07,3,4.09,6106,113.234821,123.090583,132.79128,139.329673,I,Above,Gable,0,5701,,37.15498024,0,0.1,,,,1,1,,0.03,nav,1,1966,2,, 21788,NJBF000061885,620 N HUNTINGTON AVE,Margate City,NJ,39.33841835,-74.51032502,RES1,3001,,18,NE,1987,1987,3102,2,1,1242.293146,1242.293146,3505,NO,23.36,35.49,3,-1.21,6106,113.130776,123.007593,132.704249,139.237108,I,Above,Gable,0,5701,,29.42443784,0,0,,,,1,1,,0.03,nav,1,1987,2,, 21789,NJBF000058404,3 N CLARENDON AVE,Margate City,NJ,39.33225368,-74.49544518,RES1,3001,,19,NE,1985,1985,3102,2,1,888.344102,888.344102,3505,NO,29.81,40.36,3,0.43,6106,113.545867,123.340531,133.048253,139.628184,I,Above,Flat,0,5701,,35.08549077,0,0,,,,1,1,,0.03,nav,1,1985,2,, 21790,NJBF000056989,403 N RUMSON AVE,Margate City,NJ,39.32968908,-74.51252755,RES1,3001,,17,NE,1945,1945,3102,1,1,1845.055737,1845.055737,3505,NO,26.5,35.52,3,7.16,6106,113.206568,123.067385,132.76134,139.314532,I,Above,Gable,0,5701,,31.007847,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 21791,NJBF000057042,22 N HANOVER AVE,Margate City,NJ,39.32979768,-74.50303641,RES1,3001,,17,NE,1935,1935,3102,2,1,1257.640065,1257.640065,3505,NO,33.13,42.18,3,0.74,6106,113.41367,123.233793,132.93452,139.507024,I,Above,Hip,0,5701,,37.65493536,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 21792,NJBF000061664,614 N HUNTINGTON AVE,Margate City,NJ,39.3380354,-74.50996909,RES1,3001,,17,NE,1977,1977,3102,2,1,1821.868978,1821.868978,3505,NO,38.37,48.72,3,0.69,6106,113.144,123.018193,132.715088,139.249939,I,Above,Gable,0,5701,,43.54764486,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 21793,NJBF000057064,407 N RUMSON AVE,Margate City,NJ,39.32984879,-74.51266326,RES1,3001,,17,NE,1950,1950,3101,1,1,1533.783352,1533.783352,3505,NO,14.91,21.27,3,0.75,6106,113.201274,123.063181,132.757094,139.30962,I,Above,Gable,0,5701,,18.09126786,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21794,NJBF000061949,503 N DOUGLAS AVE,Margate City,NJ,39.3385316,-74.50379864,RES1,3001,,18,NE,1967,1967,3102,2,1,1575.522507,1575.522507,3505,NO,33.06,40.31,3,4.87,6106,113.273738,123.121909,132.823411,139.367802,I,Above,Gable,0,5701,,36.68443759,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 21795,NJBF000057267,407 N QUINCY AVE,Margate City,NJ,39.33025938,-74.51203131,RES1,3001,,17,NE,1955,1955,3102,2,1,2001.209536,2001.209536,3505,NO,36.07,48.84,3,5.74,6106,113.209206,123.069663,132.764087,139.31702,I,Above,Hip,0,5701,,42.45513649,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 21796,NJBF000057286,,Margate City,NJ,39.33029236,-74.5163536,RES1,3001,,NaN,NE,1986,0,3102,2,1,1321.967067,1321.967067,3505,NO,21.81,29.12,3,-2.93,6106,113.113735,122.993068,132.684852,139.228109,I,Above,Hip,0,5701,,25.46198812,0,0,,,,1,1,,0.03,nav,1,1986,2,, 21797,NJBF000057752,400 N NASSAU AVE,Margate City,NJ,39.33110389,-74.51066164,RES1,3001,,17,NE,1940,1940,3102,2,1,2784.57039,2784.57039,3505,NO,32.32,39.88,3,7.96,6106,113.22709,123.08422,132.779748,139.333562,I,Above,Flat,0,5701,,36.1047646,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 21798,NJBF000061548,415 N CLERMONT AVE,Margate City,NJ,39.33783961,-74.50146064,RES1,3001,,17,NE,1960,1960,3102,2,1,1345.104979,1345.104979,3505,NO,30.34,42.9,3,-1.72,6106,113.335059,123.171121,132.874483,139.425278,I,Above,Gable,0,5701,,36.62081624,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21799,NJBF000057482,302 N MANSFIELD AVE,Margate City,NJ,39.33064136,-74.50927836,RES1,3001,,21,NE,1952,2018,3101,3,1,866.8807734,866.8807734,3505,NO,49.51,57.91,3,3.12,6106,113.264223,123.113915,132.810272,139.368153,I,Above,Gable,0,5701,,53.71226454,0,0,,,,1,1,,0.03,nav,1,1952,3,, 21800,NJBF000057483,304 N MANSFIELD AVE,Margate City,NJ,39.3306465,-74.509433,RES1,3001,,17,NE,1952,1952,3102,1,1,502.2056041,502.2056041,3505,NO,21.51,31.95,3,5.57,6106,113.260726,123.11111,132.807361,139.364903,I,Above,Gable,0,5701,,26.73127697,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 21801,NJBF000060964,417 N EXETER AVE,Margate City,NJ,39.3368268,-74.50379224,RES1,3001,,20,NE,2005,2005,3102,3,1,1588.125699,1588.125699,3505,NO,49.97,59.01,3,3.81,6106,113.297544,123.141144,132.842553,139.39306,I,Above,Hip,0,5701,,54.48686933,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 21802,NJBF000058325,33 N EXETER AVE,Margate City,NJ,39.33209796,-74.49914803,RES1,3001,,17,NE,1925,1925,3102,2,1,1374.826324,1374.826324,3505,NO,32.25,37.38,3,1.03,6106,113.46648,123.276633,132.981098,139.555033,I,Above,Hip,0,5701,,34.8144596,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21803,NJBF000056933,8711 AMHERST AVE,Margate City,NJ,39.32957001,-74.51096304,RES1,3001,,17,NE,1953,1953,3102,1,1,1044.241452,1044.241452,3505,NO,15.97,21.64,3,5.41,6106,113.242682,123.096347,132.791287,139.348129,I,Above,Hip,0,5701,,18.80621468,0,0,,,,1,1,,0.03,nav,1,1953,1,, 21804,NJBF000061746,421 N CLERMONT AVE,Margate City,NJ,39.3381843,-74.50181288,RES1,3001,,17,NE,1960,1960,3102,2,1,1637.114511,1637.114511,3505,NO,27.69,42.3,3,0.9,6106,113.322515,123.161026,132.864117,139.413061,I,Above,Hip,0,5701,,34.99515584,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21805,NJBF000061537,423 N ESSEX AVE,Margate City,NJ,39.33780774,-74.50393247,RES1,3001,,17,NE,1952,1952,3102,2,1,1767.486741,1767.486741,3505,NO,32.81,44.95,3,1.78,6106,113.280813,123.127661,132.829026,139.375824,I,Above,Gable,0,5701,,38.88094007,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 21806,NJBF000056866,8717 AMHERST AVE,Margate City,NJ,39.32942052,-74.51126181,RES1,3001,,18,NE,1932,1932,3102,2,1,1696.921984,1696.921984,3505,NO,39.02,49.25,3,1.51,6106,113.238279,123.092768,132.78747,139.344012,I,Above,Hip,0,5701,,44.13567649,0,0,,,,1,1,,0.03,nav,1,1932,2,, 21807,NJBF000060705,411 N EXETER AVE,Margate City,NJ,39.3364261,-74.50340894,RES1,3001,,19,NE,1989,1989,3102,2,1,1702.98392,1702.98392,3505,NO,24.8,31.87,3,-1.85,6106,113.311603,123.152433,132.854109,139.406677,I,Above,Hip,0,5701,,28.33972146,0,0,,,,1,1,,0.03,nav,1,1989,2,, 21808,NJBF000058177,15 N ESSEX AVE,Margate City,NJ,39.33184275,-74.4979698,RES1,3001,,17,NE,1950,1950,3102,1,1,1273.464474,1273.464474,3505,NO,17.99,23.78,3,-0.61,6106,113.496043,123.300384,133.005793,139.582565,I,Above,Flat,0,5701,,20.88712095,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21809,NJBF000058128,13 N ESSEX AVE,Margate City,NJ,39.33175715,-74.49789882,RES1,3001,,18,NE,1948,1948,3102,2,1,1602.649617,1602.649617,3505,NO,32.37,41.03,3,2.43,6106,113.498824,123.302611,133.008061,139.585202,I,Above,Hip,0,5701,,36.69858949,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21810,NJBF000059173,25 N BRUNSWICK AVE,Margate City,NJ,39.33369736,-74.49605212,RES1,3001,,18,NE,1928,1928,3102,2,1,1420.896119,1420.896119,3505,NO,23.02,36.36,3,-2.06,6106,113.512217,123.313545,133.021029,139.595312,I,Above,Hip,0,5701,,29.68882441,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 21811,NJBF000055746,207 N VENDOME AVE,Margate City,NJ,39.32688073,-74.51351622,RES1,3001,,17,NE,1925,1925,3101,1,1,1257.739032,1257.739032,3505,NO,17.5,30.39,3,0.19,6106,113.226035,123.082029,132.774492,139.331549,I,Above,Hip,0,5701,,23.94445297,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 21812,NJBF000055980,221 N VENDOME AVE,Margate City,NJ,39.3274351,-74.51405514,RES1,3001,,17,NE,1988,1988,3102,2,1,1221.730326,1221.730326,3505,NO,40.17,50.77,3,2.07,6106,113.206065,123.066197,132.758518,139.313281,I,Above,Gable,0,5701,,45.46684752,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 21813,NJBF000055945,219 N VENDOME AVE,Margate City,NJ,39.32735017,-74.51398055,RES1,3001,,17,NE,1925,1925,3101,1,1,1215.134432,1215.134432,3505,NO,17.88,31.91,3,6.43,6106,113.208938,123.068472,132.76081,139.31591,I,Above,Hip,0,5701,,24.89544633,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 21814,NJBF000058888,300 N HUNTINGTON AVE,Margate City,NJ,39.33312542,-74.50524638,RES1,3001,,17,NE,1935,1935,3101,2,1,1437.391559,1437.391559,3505,NO,22.56,31.41,3,-0.39,6106,113.317491,123.157066,132.856865,139.416389,I,Above,Flat,0,5701,,26.98356525,0,0,,,,1,1,,0.03,nav,1,1935,2,, 21815,NJBF000055705,200 N UNION AVE,Margate City,NJ,39.32678265,-74.51303575,RES1,3001,,17,NE,1930,1930,3101,1,1,1645.362633,1645.362633,3505,NO,16.98,23.16,3,-1.54,6106,113.237992,123.091606,132.784334,139.342622,I,Above,Gable,0,5701,,20.06806276,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 21816,NJBF000056930,207 N NASSAU AVE,Margate City,NJ,39.32956528,-74.50866483,RES1,3001,,17,NE,1930,1930,3102,2,1,860.4981778,860.4981778,3505,NO,24.47,39.04,3,2.68,6106,113.293256,123.136964,132.833465,139.395166,I,Above,Gable,0,5701,,31.75221961,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 21817,NJBF000058130,204 N HANOVER AVE,Margate City,NJ,39.3317622,-74.50486242,RES1,3001,,17,NE,1915,1915,3102,2,1,1183.383497,1183.383497,3505,NO,32.78,40.52,3,-0.27,6106,113.345358,123.179262,132.879076,139.443114,I,Above,Hip,0,5701,,36.64886454,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 21818,NJBF000056587,112 N MANSFIELD AVE,Margate City,NJ,39.32880324,-74.507517,RES1,3001,,17,NE,1965,1965,3102,2,1,1677.912273,1677.912273,3505,NO,22.92,31.57,3,-1.1,6110,113.329525,123.165899,132.862989,139.428755,I,Above,Gable,0,5701,,27.2476652,0,0,,,,1,1,,0.35,nav,1,1965,2,, 21819,NJBF000055066,102 N WILSON AVE,Margate City,NJ,39.3250295,-74.51310012,RES1,3001,,47,NE,1948,1948,3102,2,2,1079.961424,1079.961424,3505,NO,44.01,52.54,3,6.1,6106,113.262531,123.110576,132.802597,139.363998,I,Above,Gable,0,5701,,48.27334514,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21820,NJBF000056684,,Margate City,NJ,39.32903767,-74.50809077,RES1,3001,,NaN,NE,1969,0,3101,1,1,916.0970485,916.0970485,3505,NO,15.24,23.49,3,2.34,6110,113.313507,123.153091,132.849844,139.413917,I,Above,Gable,0,5701,,19.3647093,0,0,,,,1,1,,0.35,nav,1,1969,1,, 21821,NJBF000054046,114 N MONROE AVE,Margate City,NJ,39.32219389,-74.51930236,RES1,3001,,17,NE,1941,1941,3101,1,1,727.2247181,727.2247181,3505,NO,20.76,26.74,3,2.9,6106,113.169803,123.034215,132.721366,139.274077,I,Above,Gable,0,5701,,23.74603617,0,0,,,,1,1,,0.03,nav,1,1941,1,, 21822,NJBF000055108,107 N HARDING AVE,Margate City,NJ,39.32514783,-74.51352247,RES1,3001,,47,NE,1948,1948,3102,2,2,917.5856876,917.5856876,3505,NO,19.43,30.67,3,-2,6106,113.25154,123.101782,132.793588,139.353881,I,Above,Flat,0,5701,,25.05006904,0,0,,,,1,1,,0.03,nav,1,1948,2,, 21823,NJBF000061268,7402 AMHERST AVE,Margate City,NJ,39.33735014,-74.49669399,RES1,3001,,17,NE,1960,1960,3103,2,1,1019.927273,1019.927273,3505,NO,20.09,33.76,3,-1.33,6106,113.447268,123.261222,132.968648,139.528395,I,Above,Hip,0,5701,,26.92390914,0,0,,,,1,1,,0.03,nav,1,1960,2,, 21824,NJBF000060828,7401 MONMOUTH AVE,Margate City,NJ,39.3366025,-74.49597717,RES1,3001,,17,NE,1951,1951,3103,1,1,1250.675835,1250.675835,3505,NO,15.73,22.26,3,-2.41,6106,113.473443,123.282321,132.990314,139.554011,I,Above,Hip,0,5701,,18.99518376,0,0,,,,1,1,,0.03,nav,1,1951,1,, 21825,NJBF000057308,8400 MONMOUTH AVE,Margate City,NJ,39.3303413,-74.50624612,RES1,3001,,17,NE,1954,1954,3102,2,1,1260.311658,1260.311658,3505,NO,31.31,37.17,3,5.63,6106,113.335251,123.170884,132.869324,139.434178,I,Above,Gable,0,5701,,34.24023758,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21826,NJBF000054010,119 N COOLIDGE AVE,Margate City,NJ,39.322094,-74.5196595,RES1,3001,,17,NE,1918,1918,3102,2,1,653.3151307,653.3151307,3507,NO,23.36,31.74,1,-0.84,6106,113.163536,123.029088,132.716,139.26808,I,Above,Gable,0,5701,,27.54726792,0,1.2,,,,1,1,,0.03,nav,1,1918,2,, 21827,NJBF000056056,8701 WINCHESTER AVE,Margate City,NJ,39.32763267,-74.50829337,RES1,3001,,20,NE,2004,2004,3102,3,1,1638.503626,1638.503626,3505,NO,41.48,46.57,3,-0.76,6106,113.329506,123.165523,132.861693,139.428294,I,Above,Gable,0,5701,,44.02803635,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 21828,NJBF000056751,117 N MANSFIELD AVE,Margate City,NJ,39.32917978,-74.5072993,RES1,3001,,17,NE,1964,1964,3102,2,1,2775.372397,2775.372397,3505,NO,34.05,40.23,3,0.19,6106,113.328852,123.165462,132.862819,139.428207,I,Above,Gable,0,5701,,37.14266339,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 21829,NJBF000054118,103 N MADISON AVE,Margate City,NJ,39.3224475,-74.5177305,RES1,3001,,20,NE,2017,2017,3102,3,1,1071.602358,1071.602358,3507,NO,46.39,55.04,1,0.78,6106,113.200156,123.058878,132.747011,139.302766,I,Above,Gable,0,5701,,50.71867465,0,0,,,,1,1,,0.03,nav,1,2017,3,, 21830,NJBF000054492,,Margate City,NJ,39.32353058,-74.51608872,RES1,3001,,NaN,NE,1969,0,3101,1,1,1239.461268,1239.461268,3505,NO,15.26,28.83,3,0.29,6106,113.219615,123.075218,132.764792,139.32234,I,Above,Gable,0,5701,,22.04280286,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21831,NJBF000053880,112 N COOLIDGE AVE,Margate City,NJ,39.32162802,-74.52011983,RES1,3001,,20,NE,2016,2016,3102,3,1,912.0181979,912.0181979,3507,NO,54.23,60.51,1,1.37,6106,113.160613,123.026412,132.712846,139.264656,I,Above,Hip,0,5701,,57.37278062,0,0,,,,1,1,,0.03,nav,1,2016,3,, 21832,NJBF000056330,104 N NASSAU AVE,Margate City,NJ,39.32822657,-74.50794414,RES1,3001,,17,NE,1949,1949,3102,2,1,2142.504595,2142.504595,3505,NO,40.95,47.34,3,2.78,6106,113.328514,123.164916,132.861524,139.427634,I,Above,Gable,0,5701,,44.1422563,0,1.2,,,,1,1,,0.03,nav,1,1949,2,, 21833,NJBF000058851,106 N ESSEX AVE,Margate City,NJ,39.33305661,-74.49963241,RES1,3001,,17,NE,1966,1966,3103,1,1,1608.705907,1608.705907,3505,NO,17.84,31.07,3,7.33,6106,113.442262,123.257253,132.961514,139.531755,I,Above,Hip,0,5701,,24.45499467,0,0,,,,1,1,,0.03,nav,1,1966,1,, 21834,NJBF000054565,,Margate City,NJ,39.3237438,-74.51439201,RES1,3001,,NaN,NE,1950,0,3102,2,1,1825.787781,1825.787781,3505,NO,36.91,48.66,3,7.61,6106,113.253443,123.102605,132.793283,139.354116,I,Above,Flat,0,5701,,42.78559735,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21835,NJBF000054543,,Margate City,NJ,39.3236835,-74.5145215,RES1,3001,,NaN,NE,1955,0,3102,2,1,1519.748595,1519.748595,3505,NO,35.53,47.74,3,-0.97,6106,113.251503,123.101009,132.791581,139.352236,I,Above,Hip,0,5701,,41.63518178,0,0,,,,1,1,,0.03,nav,1,1955,2,, 21836,NJBF000055273,2 N RUMSON AVE,Margate City,NJ,39.32563154,-74.50921757,RES1,3001,,18,NE,1925,1925,3102,2,1,2155.976315,2155.976315,3505,NO,38.98,52.63,3,1.53,6106,113.338553,123.172056,132.866862,139.435283,I,Above,Hip,0,5701,,45.80504667,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 21837,NJBF000058845,103 N ESSEX AVE,Margate City,NJ,39.33304716,-74.49916144,RES1,3001,,17,NE,1936,1936,3103,2,1,1249.545884,1249.545884,3505,NO,27.89,34.65,3,6.01,6106,113.452789,123.265713,132.970369,139.541477,I,Above,Gable,0,5701,,31.27020915,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 21838,NJBF000059600,105 N BRUNSWICK AVE,Margate City,NJ,39.33452553,-74.49684955,RES1,3001,,18,NE,1950,1950,3102,3,1,1123.541035,1123.541035,3505,NO,57.07,66.28,3,8.93,6106,113.483016,123.290079,132.997002,139.567161,I,Above,Gable,0,5701,,61.67311407,0,0,,,,1,1,,0.03,nav,1,1950,3,, 21839,NJBF000055177,8 N THURLOW AVE,Margate City,NJ,39.32536836,-74.5108104,RES1,3001,,17,NE,1953,1953,3102,2,1,2516.309724,2516.309724,3505,NO,44.76,56.53,3,6.22,6106,113.307598,123.14702,132.840652,139.406261,I,Above,Gable,0,5701,,50.64423937,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 21840,NJBF000053799,21 N MONROE AVE,Margate City,NJ,39.32131812,-74.51795967,RES1,3001,,45,NE,1952,1952,3102,1,2,1129.926876,1129.926876,3507,NO,12.54,23.87,1,1.95,6106,113.212239,123.067903,132.755342,139.312356,I,Above,Gable,0,5701,,18.20640824,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 21841,NJBF000055169,9000 WINCHESTER AVE,Margate City,NJ,39.32535253,-74.51167133,RES1,3001,,17,NE,1972,1972,3102,2,1,1481.588533,1481.588533,3505,NO,34.54,47.98,3,2.98,6106,113.288982,123.132025,132.825086,139.388931,I,Above,Hip,0,5701,,41.25960114,0,0,,,,1,1,,0.03,nav,1,1972,2,, 21842,NJBF000059501,104 N BRUNSWICK AVE,Margate City,NJ,39.33436088,-74.49714326,RES1,3001,,18,NE,1980,1980,3102,2,1,1361.964659,1361.964659,3505,NO,35.68,50.12,3,2.9,6106,113.478856,123.286731,132.993369,139.563632,I,Above,Gable,0,5701,,42.89758651,0,0,,,,1,1,,0.03,nav,1,1980,2,, 21843,NJBF000059029,306 N HUNTINGTON AVE,Margate City,NJ,39.33339381,-74.50553423,RES1,3001,,17,NE,1930,1930,3101,1,1,1216.210417,1216.210417,3505,NO,12.82,24.62,3,-0.32,6106,113.307322,123.148933,132.848563,139.406747,I,Above,Hip,0,5701,,18.71653703,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 21844,NJBF000053201,22 S COOLIDGE AVE,Margate City,NJ,39.3190608,-74.51760714,RES1,3001,,17,NE,1922,1922,3102,2,1,1048.982895,1048.982895,3507,NO,28.17,34.39,1,0.86,6106,113.254211,123.100254,132.786646,139.347567,I,Above,Hip,0,5701,,31.27724921,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 21845,NJBF000053982,9101 ATLANTIC AVE,Margate City,NJ,39.32199696,-74.51087536,RES1,3001,,20,NE,1985,1985,3102,2,1,6386.891706,6386.891706,3505,NO,42.41,48.01,3,4.8,6106,113.356269,123.184578,132.876665,139.447277,I,Above,Flat,0,5701,,45.20637473,0,0,,,,1,1,,0.03,nav,1,1985,2,, 21846,NJBF000056616,110 S DOUGLAS AVE,Margate City,NJ,39.32887716,-74.49540963,RES1,3001,,20,NE,1985,1985,3102,3,1,1560.277429,1560.277429,3505,NO,33.98,39.51,3,-1.9,6106,113.594538,123.379216,133.086038,139.67472,I,Above,Hip,0,5701,,36.7419569,0,0,,,,1,1,,0.03,nav,1,1985,3,, 21847,NJBF000057068,7702 ATLANTIC AVE,Margate City,NJ,39.32985655,-74.49500931,RES1,3001,,17,NE,1956,1956,3102,2,1,1759.598202,1759.598202,3505,NO,38.4,44.41,3,8.53,6106,113.58939,123.37526,133.082742,139.669957,I,Above,Flat,0,5701,,41.40651362,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 21848,NJBF000057024,103 S DELAVAN AVE,Margate City,NJ,39.32975581,-74.49493629,RES1,3001,,20,NE,1930,1930,3102,2,1,1950.12541,1950.12541,3505,NO,38.59,52.86,3,8.52,6106,113.592432,123.377694,133.085211,139.672792,I,Above,Gable,0,5701,,45.72491507,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21849,NJBF000056564,107 S EXETER AVE,Margate City,NJ,39.32876264,-74.4963158,RES1,3001,,21,NE,2012,2012,3102,3,1,1543.337387,1543.337387,3505,NO,51.51,60.77,3,1.89,6106,113.576255,123.364453,133.07044,139.657749,I,Above,Hip,0,5701,,56.13633374,0,0,,,,1,1,,0.03,nav,1,2012,3,, 21850,NJBF000053058,9800 PACIFIC AVE,Margate City,NJ,39.31847345,-74.51706233,RES1,3001,,47,NE,1979,1979,3102,2,2,1572.457998,1572.457998,3507,NO,25.66,39.77,1,1.9,6106,113.274995,123.116639,132.802991,139.365767,I,Above,Gable,0,5701,,32.71172988,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 21851,NJBF000055961,17 S JASPER AVE,Margate City,NJ,39.32737131,-74.50176966,RES1,3001,,18,NE,1933,1933,3102,2,1,1392.687877,1392.687877,3505,NO,30.02,37.21,3,-2.37,6106,113.476479,123.283715,132.984677,139.564637,I,Above,Hip,0,5701,,33.61374171,0,0,,,,1,1,,0.03,nav,1,1933,2,, 21852,NJBF000055990,18 S IROQUOIS AVE,Margate City,NJ,39.32746175,-74.50157464,RES1,3001,,17,NE,1920,1920,3102,2,1,1733.434484,1733.434484,3505,NO,29.2,43.51,3,7.87,6106,113.479443,123.286128,132.987278,139.567439,I,Above,Gable,0,5701,,36.35360634,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 21853,NJBF000057315,7828-34 VENTNOR AVE,Margate City,NJ,39.33035217,-74.49789603,COM1,3001,,NaN,ME,1930,1930,3401,2,1,4120.77623,4120.77623,3507,NO,21.25,33.16,1,-0.82,6106,113.518835,123.318512,133.023604,139.604466,I,Above,Flat,0,NaN,,27.20345656,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21854,NJBF000058542,34 N DOUGLAS AVE,Margate City,NJ,39.33248913,-74.49835043,RES1,3001,,17,NE,1967,1967,3102,1,1,1335.464354,1335.464354,3505,NO,14.18,23.32,3,2.02,6106,113.478539,123.286372,132.991601,139.565823,I,Above,Gable,0,5701,,18.74984964,0,0,,,,1,1,,0.03,nav,1,1967,1,, 21855,NJBF000053856,2 S ADAMS AVE,Margate City,NJ,39.32153605,-74.51470797,RES1,3001,,47,NE,1962,1962,3102,2,2,1372.153594,1372.153594,3507,NO,37.46,49.13,1,0.27,6106,113.279675,123.122495,132.81193,139.375471,I,Above,Gable,0,5701,,43.29262121,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 21856,NJBF000062006,8205 LAGOON DRIVE,Margate City,NJ,39.33862982,-74.51130078,RES1,3001,,19,NE,1989,1989,3102,2,1,3006.755898,3006.755898,3505,NO,43.12,57.06,3,8.2,6106,113.106201,122.987944,132.683937,139.214146,I,Above,Flat,0,5701,,50.089687,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 21857,NJBF000063010,8011 BAYSHORE DR,Margate City,NJ,39.34069431,-74.51053086,RES1,3001,,20,NE,2005,2005,3102,3,1,4288.58192,4288.58192,3505,NO,36.64,47.42,3,0.76,6106,113.094681,122.978435,132.674909,139.199411,I,Above,Hip,0,5701,,42.0301023,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 21858,NJBF000063234,7809 BAYSHORE DR,Margate City,NJ,39.34119275,-74.50720556,RES1,3001,,18,NE,1966,1966,3102,2,1,2859.814813,2859.814813,3505,NO,24.22,32.19,3,2.71,6106,113.161625,123.031756,132.730606,139.259262,I,Above,Hip,0,5701,,28.20031994,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 21859,NJBF000062934,609 N CLERMONT AVE,Margate City,NJ,39.34053552,-74.50407066,RES1,3001,,17,NE,1950,1950,3102,2,1,1272.232442,1272.232442,3505,NO,24.47,31.89,3,1.01,6106,113.240164,123.09468,132.795979,139.332329,I,Above,Hip,0,5701,,28.18008829,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21860,NJBF000062962,7706 BAYSHORE DR,Margate City,NJ,39.34059547,-74.50574421,RES1,3001,,18,NE,1964,1964,3102,2,1,2611.405129,2611.405129,3505,NO,27.01,34.92,3,3.01,6106,113.20225,123.064352,132.764339,139.297738,I,Above,Hip,0,5701,,30.96104711,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 21861,NJBF000056772,,Margate City,NJ,39.32923057,-74.51603097,RES1,3001,,NaN,NE,1982,0,3102,2,1,2078.705082,2078.705082,3505,NO,21.03,35.15,3,-1.12,6106,113.136352,123.010864,132.702556,139.249025,I,Above,Flat,0,5701,,28.09015768,0,0,,,,1,1,,0.03,nav,1,1982,2,, 21862,NJBF000060818,10 E GILMAR CIRCLE,Margate City,NJ,39.336588,-74.50668741,RES1,3001,,17,NE,1965,1965,3101,1,1,1649.262567,1649.262567,3505,NO,12,22.5,3,0.9,6106,113.23685,123.092547,132.791721,139.337733,I,Above,Hip,0,5701,,17.25101321,0,0,,,,1,1,,0.03,nav,1,1965,1,, 21863,NJBF000058265,29 N EXETER AVE,Margate City,NJ,39.33200573,-74.49900138,RES1,3001,,17,NE,1964,1964,3102,2,1,1932.660713,1932.660713,3505,NO,35.58,43.55,3,-2.49,6106,113.471021,123.280275,132.984843,139.559305,I,Above,Hip,0,5701,,39.56542582,0,0,,,,1,1,,0.03,nav,1,1964,2,, 21864,NJBF000061234,423 N EXETER AVE,Margate City,NJ,39.33728318,-74.50422328,RES1,3001,,19,NE,2001,2001,3102,2,1,1781.139791,1781.139791,3505,NO,35.61,46.46,3,-1.23,6106,113.281663,123.12839,132.829494,139.377648,I,Above,Hip,0,5701,,41.034414,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 21865,NJBF000060592,307 N DELAVAN AVE,Margate City,NJ,39.33625356,-74.50077479,RES1,3001,,17,NE,1950,1950,3102,1,1,1212.765331,1212.765331,3505,NO,18.28,23.31,3,-0.1,6106,113.372231,123.201061,132.904857,139.462551,I,Above,Hip,0,5701,,20.79485178,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 21866,NJBF000059469,304 N GLADSTONE AVE,Margate City,NJ,39.3343068,-74.50351966,RES1,3001,,17,NE,1958,1958,3101,2,1,1519.623733,1519.623733,3505,NO,30.5,41.4,3,1.57,6106,113.338859,123.174293,132.875619,139.434921,I,Above,Gable,0,5701,,35.94742753,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 21867,NJBF000056276,306 N UNION AVE,Margate City,NJ,39.32811505,-74.51430659,RES1,3001,,17,NE,1946,1946,3101,1,1,1547.820015,1547.820015,3505,NO,21.93,27.75,3,3.29,6106,113.190542,123.053983,132.746371,139.299156,I,Above,Gable,0,5701,,24.83584691,0,0,,,,1,1,,0.03,nav,1,1946,1,, 21868,NJBF000059520,319 N HUNTINGTON AVE,Margate City,NJ,39.33439641,-74.50590826,RES1,3001,,17,NE,1953,1953,3101,2,1,1861.153555,1861.153555,3505,NO,32.04,37.92,3,6.37,6110,113.284885,123.131012,132.830521,139.384999,I,Above,Gable,0,5701,,34.98018873,0,1.1,,,,1,1,,0.35,nav,1,1953,2,, 21869,NJBF000055075,9402 AMHERST AVE,Margate City,NJ,39.32506221,-74.51810966,RES3B,3001,,39,ME,2004,2004,3301,3,1,3847.702209,3847.702209,3505,NO,32.88,42.51,3,-2.78,6106,113.152606,123.022067,132.711154,139.26153,I,Above,Flat,0,5701,,37.69656123,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21870,NJBF000059028,8105 AMHERST AVE,Margate City,NJ,39.33339075,-74.50432893,RES1,3001,,17,NE,1954,1954,3101,2,1,1428.990499,1428.990499,3505,NO,27.74,35.44,3,6.02,6106,113.333946,123.170293,132.870839,139.431372,I,Above,Gable,0,5701,,31.59005111,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21871,NJBF000058980,8107 AMHERST AVE,Margate City,NJ,39.33329629,-74.5044866,RES1,3001,,17,NE,1954,1954,3101,2,1,1621.468384,1621.468384,3505,NO,37.79,49.74,3,0.96,6106,113.331807,123.168569,132.868976,139.429482,I,Above,Hip,0,5701,,43.7652289,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21872,NJBF000054016,9607 WINCHESTER AVE,Margate City,NJ,39.32211891,-74.51804413,RES3A,3001,,19,NE,2002,2002,3301,1,1,1944.162581,1944.162581,3501,NO,34.06,44.15,7,20.34,6106,113.198292,123.057165,132.744963,139.300558,I,Above,Gable,0,5701,,39.10949954,0,0,,,,1,1,,0.03,nav,1,2002,1,, 21873,NJBF000058178,206 N HANOVER AVE,Margate City,NJ,39.33184413,-74.50495159,RES1,3001,,17,NE,1949,1949,3101,1,1,893.5961604,893.5961604,3505,NO,12.53,17.92,3,-1.84,6106,113.342205,123.176742,132.876506,139.440149,I,Above,Gable,0,5701,,15.2251665,0,0,,,,1,1,,0.03,nav,1,1949,1,, 21874,NJBF000056523,210 N QUINCY AVE,Margate City,NJ,39.32867173,-74.51114376,RES1,3001,,17,NE,1951,1951,3101,1,1,1190.076695,1190.076695,3505,NO,13.98,26.51,3,-1.72,6106,113.25178,123.103382,132.797945,139.356404,I,Above,Gable,0,5701,,20.243922,0,0,,,,1,1,,0.03,nav,1,1951,1,, 21875,NJBF000056045,214 N THURLOW AVE,Margate City,NJ,39.32760356,-74.5128992,RES1,3001,,17,NE,1964,1964,3102,2,1,1591.101337,1591.101337,3505,NO,36.35,49.93,3,4.9,6106,113.228914,123.084631,132.777727,139.334664,I,Above,Gable,0,5701,,43.136658,0,0,,,,1,1,,0.03,nav,1,1964,2,, 21876,NJBF000056134,206 N SUMNER AVE,Margate City,NJ,39.32779395,-74.51211955,RES1,3001,,18,NE,1920,1920,3102,2,1,1190.559197,1190.559197,3505,NO,25.9,32.37,3,1.78,6106,113.243205,123.09619,132.789844,139.348071,I,Above,Hip,0,5701,,29.13660405,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 21877,NJBF000061749,320 N FREDERICKSBURG AVE,Margate City,NJ,39.33818485,-74.49754879,RES1,3001,,18,NE,2000,2000,3103,2,1,1300.298747,1300.298747,3505,NO,40.13,53.03,3,4.78,6106,113.416864,123.236705,132.943437,139.498667,I,Above,Hip,0,5701,,46.57887944,0,0,,,,1,1,,0.03,nav,1,2000,2,, 21878,NJBF000056341,215 N SUMNER AVE,Margate City,NJ,39.32825113,-74.51206824,RES1,3001,,17,NE,1950,1950,3101,1,1,1380.312128,1380.312128,3505,NO,11.67,22.72,3,-1.53,6106,113.237653,123.09189,132.785723,139.343104,I,Above,Flat,0,5701,,17.19900428,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21879,NJBF000055972,216 N UNION AVE,Margate City,NJ,39.32742301,-74.51363802,RES1,3001,,17,NE,1925,1925,3101,1,1,1431.069162,1431.069162,3505,NO,16.09,21.9,3,1.25,6106,113.215379,123.07368,132.766253,139.321954,I,Above,Gable,0,5701,,18.99274718,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 21880,NJBF000061782,2 ESSEX CT,Margate City,NJ,39.33824779,-74.50433643,RES1,3001,,18,NE,1958,1958,3102,2,1,2146.422172,2146.422172,3505,NO,25.04,34.28,3,0.47,6106,113.265774,123.115569,132.816637,139.361153,I,Above,Hip,0,5701,,29.65743322,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 21881,NJBF000054348,9401 WINCHESTER AVE,Margate City,NJ,39.32312876,-74.51615753,RES1,3001,,47,NE,1987,1987,3102,2,2,1384.329519,1384.329519,3507,NO,38.78,45.33,1,0.31,6106,113.224141,123.078637,132.767988,139.326048,I,Above,Flat,0,5701,,42.05868247,0,0,,,,1,1,,0.03,nav,1,1987,2,, 21882,NJBF000056811,220 N PEMBROKE AVE,Margate City,NJ,39.32930469,-74.51078565,RES1,3001,,21,NE,2014,2014,3102,3,1,1104.514027,1104.514027,3505,NO,54.14,64.75,3,4.56,6106,113.250423,123.102487,132.797471,139.355293,I,Above,Flat,0,5701,,59.44920502,0,0,,,,1,1,,0.03,nav,1,2014,3,, 21883,NJBF000059798,55 SEASIDE COURT,Margate City,NJ,39.33487183,-74.50888951,RES1,3001,,19,NE,1999,1999,3101,2,1,2030.739968,2030.739968,3505,NO,24.76,38.63,3,1.34,6106,113.21231,123.072887,132.770295,139.317415,I,Above,Gable,0,5701,,31.69683422,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 21884,NJBF000056003,101 N PEMBROKE AVE,Margate City,NJ,39.32749975,-74.50851059,RES1,3001,,20,NE,2012,2012,3102,3,1,1588.88287,1588.88287,3505,NO,60.68,71.67,3,3.33,6106,113.326664,123.163193,132.859166,139.425582,I,Above,Gable,0,5701,,66.17594581,0,0,,,,1,1,,0.03,nav,1,2012,3,, 21885,NJBF000056229,108 N OSBORNE AVE,Margate City,NJ,39.32800634,-74.50864841,RES1,3001,,19,NE,1991,1991,3102,3,1,1484.470012,1484.470012,3505,NO,39.55,50.69,3,0.81,6106,113.316277,123.155008,132.851053,139.416167,I,Above,Flat,0,5701,,45.11983502,0,1.1,,,,1,1,,0.03,nav,1,1991,3,, 21886,NJBF000056316,309 N VENDOME AVE,Margate City,NJ,39.3281995,-74.51474282,RES1,3001,,18,NE,2013,2013,3102,2,1,1688.701833,1688.701833,3505,NO,24.23,29.27,3,0.04,6106,113.179749,123.045342,132.737492,139.289132,I,Above,Gable,0,5701,,26.74941387,0,0,,,,1,1,,0.03,nav,1,2013,2,, 21887,NJBF000056818,106 N KENYON AVE,Margate City,NJ,39.3293285,-74.506103,RES1,3001,,17,NE,1930,1930,3102,2,1,1464.711036,1464.711036,3505,NO,29.26,40.22,3,7.58,6106,113.352984,123.184896,132.883165,139.450652,I,Above,Hip,0,5701,,34.74173902,0,0.1,,,,1,1,,0.03,nav,1,1930,2,, 21888,NJBF000056929,125 N MANSFIELD AVE,Margate City,NJ,39.32956015,-74.5076816,RES1,3001,,20,NE,2007,2007,3102,2,1,1580.76097,1580.76097,3505,NO,26.99,35.14,3,4.68,6106,113.314936,123.15438,132.851571,139.415319,I,Above,Hip,0,5701,,31.06768068,0,0,,,,1,1,,0.03,nav,1,2007,2,, 21889,NJBF000057121,101 N JASPER AVE,Margate City,NJ,39.3299706,-74.50430568,RES1,3001,,45,NE,1928,1928,3102,2,2,1479.952928,1479.952928,3507,NO,26.39,39.06,1,2.93,6106,113.38325,123.209374,132.909168,139.478778,I,Above,Hip,0,5701,,32.72411384,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 21890,NJBF000058991,106 N DOUGLAS AVE,Margate City,NJ,39.3333141,-74.49914744,RES1,3001,,17,NE,1978,1978,3103,2,1,1334.572749,1334.572749,3505,NO,38.51,43.9,3,2.71,6106,113.449336,123.262957,132.967676,139.537986,I,Above,Flat,0,5701,,41.20430209,0,0,,,,1,1,,0.03,nav,1,1978,2,, 21891,NJBF000059305,105 N CLERMONT AVE,Margate City,NJ,39.33397606,-74.49779994,RES1,3001,,21,NE,2016,2016,3103,3,1,1084.971868,1084.971868,3505,NO,43.78,53.98,3,8.99,6106,113.469749,123.279399,132.985396,139.555885,I,Above,Flat,0,5701,,48.88072361,0,0,,,,1,1,,0.03,nav,1,2016,3,, 21892,NJBF000060056,117 N BARCLAY AVE,Margate City,NJ,39.33532893,-74.49685793,RES1,3001,,17,NE,1950,1950,3102,2,1,1278.961875,1278.961875,3505,NO,25.8,38.79,3,0.29,6106,113.471642,123.280931,132.987973,139.555244,I,Above,Hip,0,5701,,32.29601635,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21893,NJBF000054932,10 N VENDOME AVE,Margate City,NJ,39.3246889,-74.51200031,RES1,3001,,22,NE,2013,2013,3102,3,1,2911.010468,2911.010468,3505,NO,58.06,70.81,3,7.04,6106,113.291621,123.133843,132.826423,139.390719,I,Above,Gable,0,5701,,64.43299119,0,0,,,,1,1,,0.03,nav,1,2013,3,, 21894,NJBF000055001,8905 VENTNOR AVE,Margate City,NJ,39.32485646,-74.51031713,RES1,3001,,19,NE,1925,1925,3102,3,1,3085.279221,3085.279221,3505,NO,49.31,58.06,3,1.66,6106,113.32595,123.161571,132.855323,139.422813,I,Above,Gable,0,5701,,53.68805685,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 21895,NJBF000055215,8805 VENTNOR AVE,Margate City,NJ,39.32545823,-74.50900662,RES1,3001,,21,NE,2008,2008,3102,3,1,2385.97456,2385.97456,3505,NO,44.34,54.58,3,3.32,6106,113.345734,123.177765,132.872648,139.441795,I,Above,Gable,0,5701,,49.46050011,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 21896,NJBF000055130,15 N VENDOME AVE,Margate City,NJ,39.32522079,-74.51189554,RES1,3001,,17,NE,1950,1950,3101,1,1,1931.026536,1931.026536,3505,NO,17.68,32.47,3,3.83,6106,113.286013,123.129575,132.822438,139.386042,I,Above,Hip,0,5701,,25.07400869,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21897,NJBF000057971,1 N DOUGLAS AVE,Margate City,NJ,39.33147703,-74.49705565,RES1,3001,,17,NE,1955,1955,3102,2,1,1113.802929,1113.802929,3505,NO,22.4,33.22,3,-2,6106,113.521354,123.320709,133.026821,139.606241,I,Above,Hip,0,5701,,27.80866484,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 21898,NJBF000055085,7 S QUINCY AVE,Margate City,NJ,39.32510422,-74.5071093,RES1,3001,,19,NE,1966,1966,3102,2,1,2008.26416,2008.26416,3505,NO,32.57,44.67,3,-2.25,6106,113.392496,123.215279,132.911353,139.484863,I,Above,Gable,0,5701,,38.61665175,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 21899,NJBF000055348,10 S MANSFIELD AVE,Margate City,NJ,39.32585098,-74.5047027,RES1,3001,,20,NE,2011,2011,3102,3,1,1522.6435,1522.6435,3505,NO,50.56,56.71,3,-0.4,6106,113.434251,123.249203,132.947337,139.524319,I,Above,Hip,0,5701,,53.63910011,0,0,,,,1,1,,0.03,nav,1,2011,3,, 21900,NJBF000054717,106 S PEMBROKE AVE,Margate City,NJ,39.32414068,-74.50586905,RES1,3001,,20,NE,2008,2008,3102,2,1,2555.398379,2555.398379,3505,NO,40.97,48.68,3,6.3,6106,113.433807,123.24816,132.944727,139.522065,I,Above,Hip,0,5701,,44.82310933,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 21901,NJBF000054648,108 S PEMBROKE AVE,Margate City,NJ,39.32395303,-74.50567467,RES1,3001,,20,NE,2008,2008,3102,2,1,2526.557072,2526.557072,3505,NO,32.39,45.82,3,-2.89,6106,113.440821,123.253733,132.95036,139.528322,I,Above,Hip,0,5701,,39.10100125,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 21902,NJBF000061478,607 N HUNTINGTON AVE,Margate City,NJ,39.33771872,-74.50908058,RES1,3001,,18,NE,1974,1974,3102,2,1,1832.470259,1832.470259,3505,NO,35.28,43.84,3,-0.14,6110,113.16807,123.037458,132.734965,139.272611,I,Above,Gable,0,5701,,39.55749925,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 21903,NJBF000056374,4 S HANOVER AVE,Margate City,NJ,39.32833501,-74.50153183,RES1,3001,,20,NE,2007,2007,3102,3,1,1278.677466,1278.677466,3505,NO,56.71,61.82,3,-0.58,6106,113.467781,123.276979,132.978455,139.557021,I,Above,Hip,0,5701,,59.26521403,0,0,,,,1,1,,0.03,nav,1,2007,3,, 21904,NJBF000053691,10 S JEFFERSON AVE,Margate City,NJ,39.32089321,-74.51541423,RES1,3001,,43,NE,1953,1953,3102,2,2,1293.912182,1293.912182,3507,NO,31.23,40.42,1,2.75,6106,113.274015,123.11752,132.806199,139.369187,I,Above,Flat,0,5701,,35.82884976,0,0,,,,1,1,,0.03,nav,1,1953,2,, 21905,NJBF000056450,117 N OSBORNE AVE,Margate City,NJ,39.32849319,-74.50852678,RES1,3001,,17,NE,1915,1915,3102,2,1,2026.438497,2026.438497,3505,NO,39.79,47.37,3,3.35,6106,113.311844,123.151596,132.847879,139.412228,I,Above,Gable,0,5701,,43.58154126,0,0,,,,1,1,,0.03,nav,1,1915,2,, 21906,NJBF000062717,7 BAYSHORE CT,Margate City,NJ,39.34008007,-74.50741187,RES1,3001,,18,NE,1968,1968,3102,2,1,2162.176899,2162.176899,3505,NO,33,38.03,3,4.06,6106,113.172325,123.040545,132.739284,139.271734,I,Above,Gable,0,5701,,35.51437337,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 21907,NJBF000062615,5 BAYSHORE CT,Margate City,NJ,39.339813,-74.5068895,RES1,3001,,18,NE,1967,1967,3102,2,1,1390.23361,1390.23361,3505,NO,30.29,43.71,3,6.17,6106,113.187598,123.0528,132.751933,139.286289,I,Above,Hip,0,5701,,37.00339947,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 21908,NJBF000054622,9000 VENTNOR AVE,Margate City,NJ,39.32389237,-74.51046003,RES1,3001,,20,NE,1926,1926,3102,2,1,2644.015165,2644.015165,3505,NO,34.78,45.09,3,2.05,6106,113.337103,123.170106,132.863352,139.432087,I,Above,Flat,0,5701,,39.93295506,0,1.2,,,,1,1,,0.03,nav,1,1926,2,, 21909,NJBF000053640,9401-11 PACIFIC AVE,Margate City,NJ,39.32071693,-74.51383815,RES3C,3001,,21,ME,1957,1957,3301,2,1,2283.270114,2283.270114,3505,NO,31.41,45.75,3,-0.91,6106,113.310949,123.147239,132.836779,139.403203,I,Above,Flat,0,NaN,,38.5807041,0,0,,,,1,1,,0.03,nav,1,1957,2,, 21910,NJBF000054599,6 N HARDING AVE,Margate City,NJ,39.32384417,-74.51276352,RES1,3001,,21,NE,1969,2018,3102,2,1,1457.984064,1457.984064,3505,NO,34.94,43.48,3,4.83,6106,113.287489,123.130097,132.821828,139.385919,I,Above,Gable,0,5701,,39.20806156,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21911,NJBF000053786,102 N COOLIDGE AVE,Margate City,NJ,39.32127259,-74.51976256,RES1,3001,,17,NE,1930,1930,3101,1,1,1658.424269,1658.424269,3505,NO,24.26,38.79,3,6.18,6106,113.173758,123.036786,132.723225,139.276385,I,Above,Flat,0,5701,,31.52500248,0,0,,,,1,1,,0.03,nav,1,1930,1,, 21912,NJBF000061726,28 HARBOUR LANE,Margate City,NJ,39.33815331,-74.50717979,RES1,3001,,18,NE,1979,1979,3102,2,1,1666.417262,1666.417262,3505,NO,35.15,44.27,3,2.42,6106,113.204116,123.066242,132.765141,139.304911,I,Above,Gable,0,5701,,39.71276568,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 21913,NJBF000053860,,Margate City,NJ,39.32154248,-74.51219172,RES3E,3001,,NaN,ME,1969,0,3301,1,1,2425.573128,2425.573128,3507,NO,15.33,29.86,1,-0.15,6106,113.334376,123.166652,132.857656,139.426275,I,Above,Gable,0,5701,,22.5974976,0,0,,,,1,1,,0.03,nav,1,1969,1,, 21914,NJBF000054092,9710 MONMOUTH AVE,Margate City,NJ,39.32236249,-74.5198561,RES1,3001,,47,NE,1989,1989,3102,2,3,2268.008105,2268.008105,3507,NO,28.17,41.01,1,0.43,6106,113.155216,123.022549,132.709489,139.260692,I,Above,Flat,0,5701,,34.59037966,0,0,,,,1,1,,0.03,nav,1,1989,2,, 21915,NJBF000057577,110 N HANOVER AVE,Margate City,NJ,39.33081221,-74.50399858,RES1,3001,,17,NE,1954,1954,3101,1,1,1304.1407,1304.1407,3507,NO,14.59,23.2,1,0.97,6106,113.377942,123.205276,132.905526,139.473708,I,Above,Hip,0,5701,,18.89803663,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 21916,NJBF000060476,,Margate City,NJ,39.33604383,-74.49866997,RES1,3001,,NaN,NE,2008,0,3103,5,1,1310.784366,1310.784366,3505,NO,68.15,75.73,3,4.11,6106,113.421673,123.240758,132.946312,139.508167,I,Above,Flat,0,5701,,71.94087411,0,0,,,,1,1,,0.03,nav,1,2008,5,, 21917,NJBF000053291,9506 ATLANTIC AVE,Margate City,NJ,39.31940341,-74.51415367,RES3E,3001,,39,ME,2007,2007,3301,3,1,4332.688616,4332.688616,3507,NO,39.54,51.42,1,0.84,6106,113.323943,123.156884,132.845505,139.41294,I,Above,Flat,0,5701,,45.47804,0,0,,,,1,1,,0.03,nav,1,2007,3,, 21918,NJBF000060225,10 S GILMAR CIRCLE,Margate City,NJ,39.33561443,-74.50621715,RES1,3001,,17,NE,1964,1964,3101,1,1,1791.900375,1791.900375,3505,NO,11.94,25.28,3,-0.89,6106,113.2609,123.111823,132.811255,139.361335,I,Above,Hip,0,5701,,18.61258389,0,0,,,,1,1,,0.03,nav,1,1964,1,, 21919,NJBF000054060,26 N JEFFERSON AVE,Margate City,NJ,39.322249,-74.5167255,RES1,3001,,18,NE,2015,2015,3102,2,2,1225.223648,1225.223648,3507,NO,30.9,40.87,1,0.15,6106,113.225008,123.07881,132.767413,139.325652,I,Above,Hip,0,5701,,35.88416136,0,0,,,,1,1,,0.03,nav,1,2015,2,, 21920,NJBF000054897,113 S NASSAU AVE,Margate City,NJ,39.32458544,-74.50390382,RES1,3001,,19,NE,1930,1930,3102,2,1,1316.247174,1316.247174,3505,NO,37.3,48.63,3,6.65,6106,113.470289,123.277753,132.975979,139.556372,I,Above,Hip,0,5701,,42.96868078,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 21921,NJBF000056210,8604 WINCHESTER AVE,Margate City,NJ,39.32797611,-74.50710236,RES1,3001,,17,NE,1930,1930,3102,2,1,1930.037463,1930.037463,3505,NO,33.55,46.08,3,-0.32,6106,113.350649,123.182637,132.879766,139.448109,I,Above,Hip,0,5701,,39.81522584,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21922,NJBF000056508,,Margate City,NJ,39.32863175,-74.50865773,RES1,3001,,NaN,NE,1969,0,3102,2,1,1641.146196,1641.146196,3505,NO,28.96,43.66,3,2.15,6106,113.306947,123.147702,132.843936,139.407716,I,Above,Hip,0,5701,,36.30816671,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21923,NJBF000060188,203 N CLARENDON AVE,Margate City,NJ,39.33555532,-74.49856541,RES1,3001,,17,NE,1925,1925,3103,2,1,1582.894915,1582.894915,3505,NO,42.57,53.69,3,7.48,6106,113.430797,123.248104,132.953686,139.517474,I,Above,Flat,0,5701,,48.1297303,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21924,NJBF000057332,114 N JASPER AVE,Margate City,NJ,39.33038319,-74.50521705,RES1,3001,,21,NE,2016,2016,3102,2,1,1469.018723,1469.018723,3507,NO,30.36,40.12,1,-0.06,6106,113.357288,123.188597,132.887812,139.454633,I,Above,Gable,0,5701,,35.24336841,0,0,,,,1,1,,0.03,nav,1,2016,2,, 21925,NJBF000054500,107 S RUMSON AVE,Margate City,NJ,39.32354869,-74.50661004,RES1,3001,,19,NE,1970,1970,3102,2,1,2211.61841,2211.61841,3505,NO,30.02,37.44,3,-0.36,6106,113.426335,123.241872,132.937638,139.514386,I,Above,Gable,0,5701,,33.72758016,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 21926,NJBF000062530,8007 LAGOON DRIVE,Margate City,NJ,39.33964822,-74.50959315,RES1,3001,,18,NE,1977,1977,3102,2,1,2308.405619,2308.405619,3505,NO,30.02,37.83,3,8.41,6106,113.129923,123.006753,132.70392,139.233929,I,Above,Gable,0,5701,,33.92531385,0,0,,,,1,1,,0.03,nav,1,1977,2,, 21927,NJBF000055758,214 N WILSON AVE,Margate City,NJ,39.32690424,-74.51491633,RES1,3001,,47,NE,1950,1950,3102,2,2,906.3366326,906.3366326,3505,NO,32.31,42.73,3,7.94,6106,113.195041,123.057111,132.748729,139.302674,I,Above,Flat,0,5701,,37.52281862,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21928,NJBF000062237,7 BAYCREST COURT,Margate City,NJ,39.33906755,-74.5084425,RES1,3001,,18,NE,1977,1977,3102,2,1,3234.281001,3234.281001,3505,NO,32.89,47.26,3,-1.77,6106,113.163442,123.033615,132.731608,139.265825,I,Above,Gable,0,5701,,40.07773265,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 21929,NJBF000055341,220 N DECATUR AVE,Margate City,NJ,39.32582743,-74.51631577,RES1,3001,,39,NE,2003,2003,3102,2,1,2417.080538,2417.080538,3507,NO,33.23,43.02,1,1.02,6106,113.18038,123.044822,132.735221,139.28817,I,Above,Gable,0,5701,,38.12468858,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 21930,NJBF000055398,107 S KNIGHT AVE,Margate City,NJ,39.32595947,-74.50209363,RES1,3001,,22,NE,2003,2003,3102,3,1,1607.624473,1607.624473,3505,NO,42.02,50.78,3,2.55,6106,113.489869,123.294047,132.994233,139.575964,I,Above,Hip,0,5701,,46.39823769,0,0,,,,1,1,,0.03,nav,1,2003,3,, 21931,NJBF000057700,104 S ANDOVER AVE,Margate City,NJ,39.33101548,-74.49201417,RES1,3001,,22,NE,2004,2004,3102,3,1,1452.881198,1452.881198,3505,NO,62.33,73.06,3,7.78,6106,113.638877,123.415344,133.125907,139.71519,I,Above,Hip,0,5701,,67.69565719,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21932,NJBF000054340,221 N COOLIDGE AVE,Margate City,NJ,39.32310634,-74.52088401,RES3B,3001,,39,ME,2001,2001,3301,3,1,4595.641536,4595.641536,3507,NO,52.5,64.29,1,1.34,6106,113.121601,122.995905,132.68267,139.230282,I,Above,Flat,0,5701,,58.39374635,0,0,,,,1,1,,0.03,nav,1,2001,3,, 21933,NJBF000060201,105 N ARGYLE AVE,Margate City,NJ,39.33557824,-74.49561896,RES1,3001,,17,NE,1950,1950,3102,1,1,1127.591488,1127.591488,3505,NO,16.18,25.31,3,-0.01,6106,113.495538,123.300139,133.008325,139.576498,I,Above,Gable,0,5701,,20.74660427,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21934,NJBF000058992,212 N GLADSTONE AVE,Margate City,NJ,39.33331475,-74.50298215,RES1,3001,,17,NE,1952,1952,3101,1,1,1183.350977,1183.350977,3505,NO,21.9,31.7,3,7.11,6106,113.364735,123.194998,132.896581,139.459902,I,Above,Hip,0,5701,,26.80111894,0,0,,,,1,1,,0.03,nav,1,1952,1,, 21935,NJBF000056923,8601 MONMOUTH AVE,Margate City,NJ,39.32954381,-74.50822717,RES1,3001,,17,NE,1954,1954,3102,2,1,1291.278044,1291.278044,3505,NO,25.28,38.19,3,0.99,6106,113.303187,123.144937,132.841738,139.404397,I,Above,Hip,0,5701,,31.73287174,0,0,,,,1,1,,0.03,nav,1,1954,2,, 21936,NJBF000060368,116 N ARGYLE AVE,Margate City,NJ,39.33585895,-74.49639876,RES1,3001,,17,NE,1953,1953,3102,2,1,1538.747064,1538.747064,3505,NO,31.44,42.9,3,7.19,6106,113.474412,123.283142,132.990665,139.556646,I,Above,Flat,0,5701,,37.17132003,0,0,,,,1,1,,0.03,nav,1,1953,2,, 21937,NJBF000054112,25 N JEFFERSON AVE,Margate City,NJ,39.3224075,-74.5162595,RES3C,3001,,19,ME,1986,1986,3301,1,1,2106.417824,2106.417824,3505,NO,14.06,19.11,3,-1.68,6106,113.232773,123.085172,132.774121,139.333111,I,Above,Hip,0,NaN,,16.58209873,0,0,,,,1,1,,0.03,nav,1,1986,1,, 21938,NJBF000054134,9412 WINCHESTER AVE,Margate City,NJ,39.32248872,-74.51619465,RES3C,3001,,43,ME,2003,1921,3301,2,5,890.7871169,890.7871169,3505,NO,33.02,44.1,3,5.82,6106,113.232954,123.085368,132.774395,139.333395,I,Above,Hip,0,NaN,,38.55601449,0,0,,,,1,1,,0.03,nav,1,2003,2,, 21939,NJBF000058953,15 N BRUNSWICK AVE,Margate City,NJ,39.33324496,-74.49553942,RES1,3001,,18,NE,1928,1928,3102,2,1,1208.745925,1208.745925,3505,NO,30.98,38.25,3,-2.11,6106,113.529865,123.327725,133.035578,139.612199,I,Above,Hip,0,5701,,34.61198764,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 21940,NJBF000063369,7701 BAYSHORE DR,Margate City,NJ,39.34152534,-74.50506865,RES1,3001,,20,NE,1964,1964,3102,2,1,3496.515184,3496.515184,3505,NO,34.9,45.87,3,4.65,6106,113.204523,123.065941,132.766414,139.297317,I,Above,Gable,0,5701,,40.38456901,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 21941,NJBF000057606,104 N HUNTINGTON AVE,Margate City,NJ,39.33086826,-74.5032141,RES1,3001,,17,NE,1945,1945,3101,1,1,1556.522211,1556.522211,3507,NO,17.57,22.9,1,2.7,6106,113.394422,123.218529,132.919401,139.488977,I,Above,Hip,0,5701,,20.23417576,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 21942,NJBF000058342,5 N CLERMONT AVE,Margate City,NJ,39.33213553,-74.49612861,RES1,3001,,19,NE,1950,1950,3102,2,1,1240.396171,1240.396171,3505,NO,34.47,47.34,3,-1.03,6106,113.532461,123.329726,133.036811,139.615942,I,Above,Hip,0,5701,,40.90156259,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21943,NJBF000056716,7808 ATLANTIC AVE,Margate City,NJ,39.32911479,-74.49657495,RES1,3001,,17,NE,1930,1930,3102,2,1,1850.786038,1850.786038,3505,NO,31.31,43.42,3,-0.56,6106,113.565531,123.355887,133.061758,139.647867,I,Above,Hip,0,5701,,37.3646174,0,0,,,,1,1,,0.03,nav,1,1930,2,, 21944,NJBF000059443,105 N CLARENDON AVE,Margate City,NJ,39.33425157,-74.49732837,RES1,3001,,17,NE,1954,1954,3102,2,1,1223.10086,1223.10086,3505,NO,31.55,43.23,3,3.25,6106,113.476298,123.284673,132.991129,139.561467,I,Above,Hip,0,5701,,37.39197663,0,0,,,,1,1,,0.03,nav,1,1954,2,, 21945,NJBF000058754,7 N BRUNSWICK AVE,Margate City,NJ,39.33287619,-74.49522494,RES1,3001,,18,NE,1929,1929,3102,2,1,1308.943804,1308.943804,3505,NO,30.56,42.71,3,-1.86,6106,113.541966,123.337442,133.0455,139.623838,I,Above,Hip,0,5701,,36.63435376,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 21946,NJBF000056756,7804 ATLANTIC AVE,Margate City,NJ,39.32919529,-74.49641465,RES1,3001,,17,NE,1925,1925,3102,2,1,1704.954273,1704.954273,3505,NO,36.4,44.26,3,6.75,6106,113.567906,123.357817,133.063853,139.650076,I,Above,Gable,0,5701,,40.32694914,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 21947,NJBF000054144,9305 VENTNOR AVE,Margate City,NJ,39.32254484,-74.51441692,COM3,3003,,NaN,ME,1928,1920,3401,2,1,14749.48259,14749.48259,3507,NO,37.01,48.27,1,1.87,6106,113.270847,123.115971,132.806081,139.368748,I,Above,Flat,0,NaN,,42.63673095,0,0,,,,1,1,,0.03,nav,1,1928,2,, 21948,NJBF000059609,14 EAST DRIVE,Margate City,NJ,39.33454449,-74.49507284,RES1,3001,,19,NE,1925,1925,3102,2,1,1504.220784,1504.220784,3505,NO,30.79,42.17,3,3.59,6106,113.521977,123.321419,133.029938,139.602762,I,Above,Hip,0,5701,,36.4780574,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21949,NJBF000059606,108 N BRUNSWICK AVE,Margate City,NJ,39.33453857,-74.49731255,RES1,3001,,17,NE,1925,1925,3102,1,1,1450.901868,1450.901868,3505,NO,16.4,25.36,3,-0.23,6106,113.472616,123.281717,132.988235,139.55761,I,Above,Hip,0,5701,,20.88116772,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 21950,NJBF000058910,8104 AMHERST AVE,Margate City,NJ,39.3331638,-74.50406301,RES1,3001,,17,NE,1954,1954,3102,2,1,1497.654464,1497.654464,3505,NO,31.04,39.34,3,0.93,6106,113.343029,123.177563,132.878273,139.439979,I,Above,Hip,0,5701,,35.19010083,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 21951,NJBF000058736,211 N HAVERFORD AVE,Margate City,NJ,39.33284557,-74.50376828,RES1,3001,,16,NE,1950,1950,3101,1,1,1477.467722,1477.467722,3505,NO,20.27,32.12,3,3.9,6106,113.354044,123.186373,132.887252,139.450441,I,Above,Hip,0,5701,,26.19903372,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21952,NJBF000056608,105 S EXETER AVE,Margate City,NJ,39.32886857,-74.49638987,RES1,3001,,20,NE,1984,1984,3102,2,1,1411.560438,1411.560438,3505,NO,26.59,33.55,3,4.58,6106,113.573113,123.361944,133.0679,139.654858,I,Above,Flat,0,5701,,30.07176591,0,0,,,,1,1,,0.03,nav,1,1984,2,, 21953,NJBF000060440,7500 MONMOUTH AVE,Margate City,NJ,39.335977,-74.496493,RES1,3001,,17,NE,1957,1957,3102,2,1,1220.444307,1220.444307,3505,NO,26.29,38.11,3,2.71,6106,113.470699,123.280152,132.987606,139.553003,I,Above,Hip,0,5701,,32.20032552,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 21954,NJBF000054520,9004 VENTNOR AVE,Margate City,NJ,39.32361446,-74.51100665,RES1,3001,,22,NE,1935,2018,3102,3,1,2303.518298,2303.518298,3505,NO,60.63,67.29,3,5.12,6106,113.329282,123.163665,132.856427,139.424481,I,Above,Gable,0,5701,,63.96096529,0,1.1,,,,1,1,,0.03,nav,1,1935,3,, 21955,NJBF000060063,8105 FULTON AVE,Margate City,NJ,39.33533631,-74.50629429,RES1,3001,,17,NE,1952,1952,3101,2,1,2025.433746,2025.433746,3505,NO,32.82,45.18,3,-2.33,6106,113.263107,123.11359,132.812933,139.363749,I,Above,Gable,0,5701,,38.99832038,0,0,,,,1,1,,0.03,nav,1,1952,2,, 21956,NJBF000058740,205 N GRANVILLE AVE,Margate City,NJ,39.33284665,-74.50298303,RES1,3001,,17,NE,1948,1948,3101,1,1,1375.224631,1375.224631,3505,NO,22.23,32.17,3,3.28,6106,113.371339,123.200259,132.901752,139.466437,I,Above,Hip,0,5701,,27.20094588,0,0,,,,1,1,,0.03,nav,1,1948,1,, 21957,NJBF000058870,10 WEST DRIVE,Margate City,NJ,39.3330913,-74.49496617,RES1,3001,,18,NE,1925,1925,3102,2,1,1903.836504,1903.836504,3505,NO,37.15,50.87,3,1.84,6106,113.544657,123.339623,133.047961,139.626012,I,Above,Hip,0,5701,,44.00939181,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 21958,NJBF000053876,,Margate City,NJ,39.32161371,-74.51802585,RES1,3001,,NaN,NE,1969,0,3102,2,1,1542.87231,1542.87231,3507,NO,33.98,40.56,1,2.07,6106,113.206322,123.06332,132.750874,139.307296,I,Above,Hip,0,5701,,37.27133209,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21959,NJBF000063640,7510 BAYSHORE DR,Margate City,NJ,39.34227375,-74.50397441,RES1,3001,,20,NE,1981,1981,3102,3,1,1850.593419,1850.593419,3505,NO,33.61,46,3,2.01,6106,113.218654,123.077022,132.778317,139.307913,I,Above,Hip,0,5701,,39.80399059,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 21960,NJBF000059071,38 N CLARENDON AVE,Margate City,NJ,39.33349061,-74.49704272,RES1,3001,,21,NE,2013,2013,3102,3,1,1273.698368,1273.698368,3505,NO,61.63,71.35,3,6.56,6106,113.49325,123.298277,133.004844,139.578191,I,Above,Gable,0,5701,,66.49034347,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 21961,NJBF000058057,5 N DOUGLAS AVE,Margate City,NJ,39.33164,-74.49719462,RES1,3001,,17,NE,1948,1948,3102,2,1,885.4143031,885.4143031,3505,NO,27.83,37.23,3,0.39,6106,113.515986,123.316409,133.02244,139.601158,I,Above,Flat,0,5701,,32.53103162,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 21962,NJBF000061450,222 N ARGYLE AVE,Margate City,NJ,39.33765799,-74.49817649,RES1,3001,,17,NE,1950,1950,3103,2,1,1151.56107,1151.56107,3505,NO,39.04,49.19,3,8.82,6106,113.410249,123.231459,132.937601,139.494071,I,Above,Flat,0,5701,,44.11057442,0,0,,,,1,1,,0.03,nav,1,1950,2,, 21963,NJBF000053815,14 N MADISON AVE,Margate City,NJ,39.32138661,-74.51730119,RES1,3001,,19,NE,2011,2011,3102,3,1,1431.08938,1431.08938,3507,NO,35.58,41.74,1,2.61,6106,113.225518,123.078673,132.766517,139.324839,I,Above,Hip,0,5701,,38.663538,0,0,,,,1,1,,0.03,nav,1,2011,3,, 21964,NJBF000059456,209 N ESSEX AVE,Margate City,NJ,39.33428185,-74.50030949,RES1,3001,,17,NE,1956,1956,3102,2,1,1744.903617,1744.903617,3505,NO,27.28,32.78,3,0.77,6106,113.41009,123.231469,132.935386,139.500582,I,Above,Hip,0,5701,,30.02990097,0,0,,,,1,1,,0.03,nav,1,1956,2,, 21965,NJBF000059148,223 N GLADSTONE AVE,Margate City,NJ,39.33365354,-74.50281137,RES1,3001,,17,NE,1956,1956,3101,1,1,1140.542149,1140.542149,3505,NO,21.16,33.21,3,7.14,6106,113.363717,123.194206,132.895984,139.458612,I,Above,Hip,0,5701,,27.18494231,0,0,,,,1,1,,0.03,nav,1,1956,1,, 21966,NJBF000060231,405 N HUNTINGTON AVE,Margate City,NJ,39.33561995,-74.50708167,RES1,3001,,17,NE,1962,1962,3101,2,1,1481.638361,1481.638361,3505,NO,45.09,55.03,3,8.71,6110,113.241699,123.096444,132.795237,139.34363,I,Above,Hip,0,5701,,50.05993717,0,0,,,,1,1,,0.35,nav,1,1962,2,, 21967,NJBF000063527,7602 BAYSHORE DR,Margate City,NJ,39.34195237,-74.50438874,RES1,3001,,20,NE,1990,1990,3102,3,1,2041.869605,2041.869605,3505,NO,49.8,60.94,3,-2.29,6106,113.213809,123.073245,132.774229,139.304498,I,Above,Flat,0,5701,,55.36977782,0,0,,,,1,1,,0.03,nav,1,1990,3,, 21968,NJBF000061445,413 N DELAVAN AVE,Margate City,NJ,39.33763896,-74.5020709,RES1,3001,,17,NE,1952,1952,3102,2,1,2253.46745,2253.46745,3505,NO,31.52,39.91,3,2.34,6106,113.324341,123.162552,132.8654,139.415949,I,Above,Hip,0,5701,,35.71841084,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 21969,NJBF000053489,4 N COOLIDGE AVE,Margate City,NJ,39.32012833,-74.51859963,RES1,3001,,19,NE,2004,2004,3102,3,1,1062.878647,1062.878647,3507,NO,55.82,65.16,1,2.79,6106,113.216416,123.070458,132.756906,139.314294,I,Above,Gable,0,5701,,60.49034378,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21970,NJBF000054047,10 N ADAMS AVE,Margate City,NJ,39.32219462,-74.51542598,RES3C,3001,,19,ME,1950,1950,3301,1,1,2803.466129,2803.466129,3505,NO,14.14,28.02,3,2.78,6106,113.254124,123.102273,132.791607,139.35269,I,Above,Gable,0,NaN,,21.07918267,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21971,NJBF000059815,210 N CLERMONT AVE,Margate City,NJ,39.33489428,-74.49916947,RES1,3001,,17,NE,1950,1950,3103,1,1,1527.170903,1527.170903,3505,NO,16.29,22.6,3,1.96,6106,113.426683,123.244807,132.949778,139.514889,I,Above,Gable,0,5701,,19.44210404,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 21972,NJBF000063696,7403 BURK AVE,Margate City,NJ,39.34242152,-74.50198988,RES1,3001,,19,NE,1986,1986,3102,2,1,1816.963886,1816.963886,3505,NO,28.39,37.32,3,1.41,6106,113.260696,123.110595,132.813508,139.345305,I,Above,Hip,0,5701,,32.85623581,0,0,,,,1,1,,0.03,nav,1,1986,2,, 21973,NJBF000054392,,Margate City,NJ,39.32327555,-74.51391275,RES1,3001,,NaN,NE,1969,0,3102,2,1,1856.604308,1856.604308,3505,NO,40.88,47.46,3,8.51,6106,113.270888,123.116415,132.807174,139.369769,I,Above,Hip,0,5701,,44.16726539,0,0,,,,1,1,,0.03,nav,1,1969,2,, 21974,NJBF000056623,409 N VENDOME AVE,Margate City,NJ,39.32889616,-74.51544409,RES1,3001,,17,NE,1955,1955,3101,1,1,1021.950447,1021.950447,3505,NO,20.17,31,3,6.52,6106,113.154142,123.02503,132.716971,139.265518,I,Above,Gable,0,5701,,25.58274706,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 21975,NJBF000059978,101A N ARGYLE AVE,Margate City,NJ,39.33518289,-74.49530589,RES1,3001,,17,NE,1950,1950,3102,1,1,1983.719561,1983.719561,3505,NO,16.9,28.87,3,2.09,6106,113.507937,123.310121,133.018532,139.588649,I,Above,Flat,0,5701,,22.88589524,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21976,NJBF000055862,123 N THURLOW AVE,Margate City,NJ,39.32714447,-74.51187243,RES1,3001,,20,NE,2003,2003,3102,2,1,1642.879214,1642.879214,3505,NO,40.29,51.19,3,2.46,6106,113.258181,123.107987,132.801583,139.361659,I,Above,Hip,0,5701,,45.73933238,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 21977,NJBF000059570,12 EAST DRIVE,Margate City,NJ,39.33447935,-74.49523589,RES1,3001,,18,NE,1925,1925,3102,2,1,1463.477245,1463.477245,3505,NO,36,45.18,3,0.94,6106,113.519287,123.319254,133.027614,139.600431,I,Above,Gable,0,5701,,40.59161492,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 21978,NJBF000060509,23 SEASIDE COURT,Margate City,NJ,39.33610582,-74.50907519,RES1,3001,,19,NE,1989,1989,3101,2,1,1955.309299,1955.309299,3505,NO,40.7,53.17,3,5.3,6106,113.19081,123.055707,132.753114,139.29604,I,Above,Hip,0,5701,,46.93627072,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 21979,NJBF000060557,21 SEASIDE COURT,Margate City,NJ,39.33618209,-74.50891034,RES1,3001,,19,NE,1998,1998,3101,2,1,1849.055091,1849.055091,3505,NO,19.32,34.26,3,-1.91,6106,113.193389,123.05777,132.7553,139.298314,I,Above,Hip,0,5701,,26.79001891,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 21980,NJBF000054126,120 N MONROE AVE,Margate City,NJ,39.3224724,-74.51952428,RES1,3001,,17,NE,1950,1950,3101,1,1,922.4610169,922.4610169,3505,NO,18.98,32.26,3,7.85,6106,113.160768,123.027103,132.714273,139.266034,I,Above,Gable,0,5701,,25.61735837,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21981,NJBF000061705,19 HARBOUR LANE,Margate City,NJ,39.33811271,-74.50799729,RES1,3001,,18,NE,1980,1980,3102,2,1,1763.559918,1763.559918,3505,NO,23.71,35.52,3,-1.01,6106,113.18658,123.052223,132.750522,139.288904,I,Above,Gable,0,5701,,29.61273174,0,0,,,,1,1,,0.03,nav,1,1980,2,, 21982,NJBF000054594,13 N BENSON AVE,Margate City,NJ,39.32382465,-74.51316948,RES1,3001,,NaN,NE,1935,0,3102,2,1,1645.952398,1645.952398,3505,NO,24.04,32.42,3,0.67,6106,113.278929,123.123188,132.814656,139.377933,I,Above,Flat,0,5701,,28.23022927,0,0,,,,1,1,,0.03,nav,1,1935,2,, 21983,NJBF000061685,1 ESSEX CT,Margate City,NJ,39.33807382,-74.50418261,RES1,3001,,17,NE,1958,1958,3102,1,1,2143.388097,2143.388097,3505,NO,10.83,18.09,3,0.09,6106,113.27157,123.120231,132.821412,139.36682,I,Above,Gable,0,5701,,14.46074722,0,0,,,,1,1,,0.03,nav,1,1958,1,, 21984,NJBF000055642,118 N THURLOW AVE,Margate City,NJ,39.32663334,-74.51198142,RES1,3001,,20,NE,2004,2004,3102,3,1,1287.214833,1287.214833,3505,NO,51.95,61.07,3,4.85,6106,113.263308,123.111909,132.805255,139.366095,I,Above,Gable,0,5701,,56.51067633,0,0,,,,1,1,,0.03,nav,1,2004,3,, 21985,NJBF000063036,7900 BAYSHORE DR,Margate City,NJ,39.3407564,-74.50749766,RES1,3001,,20,NE,1967,1967,3102,2,1,2377.841263,2377.841263,3505,NO,30.3,40.9,3,0.78,6106,113.16113,123.031463,132.730116,139.25991,I,Above,Flat,0,5701,,35.60137159,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 21986,NJBF000061047,2 BAYSIDE COURT,Margate City,NJ,39.33696636,-74.50995718,RES1,3001,,19,NE,1989,1989,3102,2,1,1400.225875,1400.225875,3505,NO,43.07,57.99,3,4.27,6106,113.159221,123.030424,132.727279,139.265684,I,Above,Gable,0,5701,,50.52991502,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 21987,NJBF000056228,201 N RUMSON AVE,Margate City,NJ,39.328005,-74.5109055,RES1,3001,,17,NE,1950,1950,3102,2,1,1280.643803,1280.643803,3505,NO,42.39,48.16,3,6.15,6106,113.266744,123.115186,132.809699,139.370083,I,Above,Gable,0,5701,,45.27445056,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21988,NJBF000062417,1 BAYCREST COURT,Margate City,NJ,39.3394032,-74.50869817,RES1,3001,,18,NE,1978,1978,3102,2,1,1698.631899,1698.631899,3505,NO,24.33,30.08,3,1.29,6106,113.153153,123.025345,132.723154,139.25571,I,Above,Gable,0,5701,,27.20521619,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 21989,NJBF000057192,17 N HUNTINGTON AVE,Margate City,NJ,39.33011483,-74.50199862,RES1,3001,,17,NE,1941,1941,3102,2,1,1539.647391,1539.647391,3505,NO,32.39,45.14,3,-0.22,6106,113.431937,123.248548,132.950181,139.523947,I,Above,Hip,0,5701,,38.76405284,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 21990,NJBF000059696,109 N BRUNSWICK AVE,Margate City,NJ,39.33469997,-74.49702909,RES1,3001,,17,NE,1940,1940,3102,2,1,775.3096565,775.3096565,3505,NO,33.47,42.28,3,1.96,6106,113.476635,123.28495,132.991744,139.561008,I,Above,Flat,0,5701,,37.87400816,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 21991,NJBF000059318,30 WEST DRIVE,Margate City,NJ,39.33399367,-74.49563402,RES1,3001,,18,NE,1930,1930,3102,2,1,1181.38311,1181.38311,3505,NO,34.47,43.86,3,3.79,6106,113.51728,123.31763,133.025543,139.599471,I,Above,Hip,0,5701,,39.16344047,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 21992,NJBF000056865,3 N HUNTINGTON AVE,Margate City,NJ,39.3294192,-74.50129645,RES1,3001,,18,NE,1926,1926,3102,2,1,1885.279445,1885.279445,3505,NO,33.59,44.38,3,1.39,6106,113.457377,123.268867,132.970867,139.547582,I,Above,Gable,0,5701,,38.98357433,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 21993,NJBF000056905,5 N HUNTINGTON AVE,Margate City,NJ,39.32951369,-74.50140843,RES1,3001,,17,NE,1926,1926,3102,2,1,1643.140549,1643.140549,3505,NO,47.61,60.87,3,8.97,6106,113.453551,123.265809,132.967747,139.544035,I,Above,Hip,0,5701,,54.24087521,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 21994,NJBF000056300,100 S GLADSTONE AVE,Margate City,NJ,39.32816786,-74.49851388,RES1,3001,,22,NE,2017,2017,3102,3,1,1439.860262,1439.860262,3505,NO,34.28,43.2,3,1.32,6106,113.536488,123.332267,133.03617,139.620689,I,Above,Flat,0,5701,,38.74238183,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 21995,NJBF000060293,302 N DELAVAN AVE,Margate City,NJ,39.33573187,-74.50076331,RES1,3001,,17,NE,1950,1950,3102,1,1,2025.978266,2025.978266,3505,NO,20.3,25.33,3,4.48,6106,113.379771,123.207131,132.910876,139.470422,I,Above,Hip,0,5701,,22.81832296,0,0,,,,1,1,,0.03,nav,1,1950,1,, 21996,NJBF000060176,118 N BELMONT AVE,Margate City,NJ,39.3355319,-74.49677643,RES1,3001,,17,NE,1950,1950,3102,1,1,1004.082882,1004.082882,3505,NO,19.61,30.33,3,4.29,6110,113.470629,123.280112,132.987255,139.553904,I,Above,Gable,0,5701,,24.9712464,0,0,,,,1,1,,0.35,nav,1,1950,1,, 21997,NJBF000061527,415 N DELAVAN AVE,Margate City,NJ,39.33779435,-74.50221692,RES1,3001,,17,NE,1950,1950,3102,2,1,2360.441298,2360.441298,3505,NO,37.33,46.65,3,1.23,6106,113.318964,123.158227,132.860965,139.410704,I,Above,Hip,0,5701,,41.99180048,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 21998,NJBF000054411,1 N BENSON AVE,Margate City,NJ,39.32332726,-74.51271401,RES1,3001,,20,NE,2005,2005,3102,3,1,1052.93312,1052.93312,3505,NO,43.4,51.5,3,7.36,6106,113.296288,123.13692,132.82845,139.393457,I,Above,Gable,0,5701,,47.4517336,0,0,,,,1,1,,0.03,nav,1,2005,3,, 21999,NJBF000056735,217 N QUINCY AVE,Margate City,NJ,39.32914219,-74.51094476,RES1,3001,,17,NE,1954,1954,3102,2,1,1388.378015,1388.378015,3505,NO,32.5,38.96,3,-0.63,6106,113.249301,123.101537,132.79637,139.354219,I,Above,Gable,0,5701,,35.72914865,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 22000,NJBF000062137,6 BAYCREST COURT,Margate City,NJ,39.3388647,-74.50852733,RES1,3001,,18,NE,1978,1978,3102,2,1,1287.818621,1287.818621,3505,NO,39.83,45.8,3,4.67,6106,113.164395,123.034403,132.732334,139.267108,I,Above,Gable,0,5701,,42.81211428,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 22001,NJBF000057291,22 N HAVERFORD AVE,Margate City,NJ,39.33031277,-74.50190378,RES1,3001,,21,NE,1920,2018,3102,2,1,1585.743903,1585.743903,3505,NO,32.99,39,3,0.77,6106,113.431193,123.247988,132.949751,139.523224,I,Above,Hip,0,5701,,35.99658091,0,0,,,,1,1,,0.03,nav,1,1920,2,, 22002,NJBF000057648,109 S ANDOVER AVE,Margate City,NJ,39.33093437,-74.49151484,RES1,3001,,21,NE,1932,1932,3102,3,1,1392.877006,1392.877006,3505,NO,55.6,64.07,3,3.91,6106,113.651,123.425112,133.136124,139.726449,I,Above,Flat,0,5701,,59.83338815,0,0,,,,1,1,,0.03,nav,1,1932,3,, 22003,NJBF000059044,216 N GLADSTONE AVE,Margate City,NJ,39.33342959,-74.50318353,RES1,3001,,17,NE,1979,1979,3101,1,1,2037.124922,2037.124922,3505,NO,17.3,23.98,3,-2.04,6106,113.358653,123.190125,132.891569,139.454168,I,Above,Gable,0,5701,,20.64231506,0,0,,,,1,1,,0.03,nav,1,1979,1,, 22004,NJBF000056689,3 S HAVERFORD AVE,Margate City,NJ,39.32905182,-74.50019695,RES1,3001,,17,NE,1961,1961,3102,2,1,1266.823755,1266.823755,3505,NO,41.49,53.28,3,8.94,6106,113.486807,123.29247,132.995254,139.574852,I,Above,Gable,0,5701,,47.3806251,0,0,,,,1,1,,0.03,nav,1,1961,2,, 22005,NJBF000062226,8012 LAGOON DRIVE,Margate City,NJ,39.3390312,-74.5097844,RES1,3001,,18,NE,1972,1972,3102,2,1,1909.856082,1909.856082,3505,NO,45.74,56.16,3,7.18,6106,113.134238,123.010288,132.707326,139.239134,I,Above,Gable,0,5701,,50.95024913,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 22006,NJBF000056447,8 S HUNTINGTON AVE,Margate City,NJ,39.32848684,-74.50094554,RES1,3001,,18,NE,1950,1950,3102,2,1,1408.785479,1408.785479,3505,NO,26.94,38.69,3,2.47,6106,113.478466,123.28562,132.987617,139.566986,I,Above,Hip,0,5701,,32.81700555,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22007,NJBF000059774,102 N BELMONT AVE,Margate City,NJ,39.334824,-74.4961045,RES1,3001,,17,NE,1950,1950,3102,1,1,1111.691637,1111.691637,3505,NO,18.07,28.22,3,5.43,6106,113.495299,123.299959,133.007593,139.577849,I,Above,Gable,0,5701,,23.14781911,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22008,NJBF000060043,303 N ESSEX AVE,Margate City,NJ,39.33530835,-74.50155304,RES1,3001,,17,NE,1950,1950,3102,1,1,1735.861694,1735.861694,3505,NO,17.09,22.39,3,6.05,6106,113.368242,123.197886,132.900928,139.46056,I,Above,Hip,0,5701,,19.74121829,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22009,NJBF000060389,18 W GILMAR CIRCLE,Margate City,NJ,39.33588969,-74.50695907,RES1,3001,,17,NE,1964,1964,3101,1,1,1791.637108,1791.637108,3505,NO,21.62,29.32,3,7.33,6110,113.240623,123.095582,132.794493,139.342262,I,Above,Hip,0,5701,,25.46957808,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 22010,NJBF000059108,115 N ESSEX AVE,Margate City,NJ,39.333558,-74.499652,RES1,3001,,17,NE,1948,1948,3103,2,1,733.239131,733.239131,3505,NO,37.34,47.22,3,2.67,6110,113.434763,123.251259,132.955599,139.524259,I,Above,Gable,0,5701,,42.28281298,0,0,,,,1,1,,0.35,nav,1,1948,2,, 22011,NJBF000063162,7711 BAYSHORE DR,Margate City,NJ,39.34102417,-74.50588392,RES1,3001,,21,NE,2012,2012,3102,2,1,5188.608538,5188.608538,3505,NO,31.7,39.7,3,1.24,6106,113.193273,123.057079,132.756942,139.288469,I,Above,Hip,0,5701,,35.70142046,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 22012,NJBF000058686,203 N GRANVILLE AVE,Margate City,NJ,39.33275822,-74.50289619,RES1,3001,,17,NE,1948,1948,3101,1,1,1157.613771,1157.613771,3505,NO,23.42,28.59,3,4.72,6106,113.374519,123.202803,132.904348,139.469454,I,Above,Hip,0,5701,,26.00422791,0,0,,,,1,1,,0.03,nav,1,1948,1,, 22013,NJBF000058853,215 N HAVERFORD AVE,Margate City,NJ,39.33306021,-74.50399741,RES1,3001,,17,NE,1954,1954,3101,1,1,1432.083686,1432.083686,3505,NO,12.02,25.53,3,1.47,6106,113.345959,123.179905,132.880646,139.442781,I,Above,Hip,0,5701,,18.77279837,0,0,,,,1,1,,0.03,nav,1,1954,1,, 22014,NJBF000057762,102 S ANDOVER AVE,Margate City,NJ,39.33112295,-74.49211648,RES1,3001,,22,NE,2005,2018,3102,3,1,1746.06765,1746.06765,3505,NO,45.59,55.8,3,5.74,6106,113.635109,123.41232,133.122816,139.71162,I,Above,Gable,0,5701,,50.69807298,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 22015,NJBF000058668,13 N CLARENDON AVE,Margate City,NJ,39.33270546,-74.49583761,RES1,3001,,18,NE,1940,1940,3102,2,1,1014.628355,1014.628355,3505,NO,32.89,47.54,3,7.93,6106,113.53086,123.328488,133.035959,139.613834,I,Above,Hip,0,5701,,40.21394364,0,0,,,,1,1,,0.03,nav,1,1940,2,, 22016,NJBF000058610,11 N CLARENDON AVE,Margate City,NJ,39.33260551,-74.49578663,RES1,3001,,17,NE,1940,1940,3102,2,1,1045.590844,1045.590844,3505,NO,32.48,44.77,3,0.79,6106,113.533376,123.330506,133.038001,139.616272,I,Above,Flat,0,5701,,38.62344121,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 22017,NJBF000057945,101 S ANDOVER AVE,Margate City,NJ,39.33141467,-74.49185956,RES1,3001,,17,NE,1956,1956,3102,1,1,1514.375486,1514.375486,3505,NO,17.73,27.89,3,4.99,6106,113.636629,123.413582,133.124397,139.712745,I,Above,Gable,0,5701,,22.8108649,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 22018,NJBF000055981,210 N THURLOW AVE,Margate City,NJ,39.32743702,-74.51274994,RES1,3001,,17,NE,1955,1955,3102,2,1,1390.578202,1390.578202,3505,NO,29.47,38.84,3,7.72,6106,113.234633,123.089165,132.782299,139.339901,I,Above,Hip,0,5701,,34.15386882,0,0,,,,1,1,,0.03,nav,1,1955,2,, 22019,NJBF000060191,113 N BELMONT AVE,Margate City,NJ,39.33556074,-74.49633507,RES1,3001,,17,NE,1929,1929,3102,2,1,1397.685989,1397.685989,3505,NO,32.04,41.38,3,2.52,6106,113.479964,123.287616,132.995156,139.562353,I,Above,Hip,0,5701,,36.71024943,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 22020,NJBF000059607,102 N BARCLAY AVE,Margate City,NJ,39.3345388,-74.49656259,RES1,3001,,17,NE,1985,1985,3102,1,1,1126.162545,1126.162545,3505,NO,13.92,22.76,3,2.4,6106,113.489168,123.295026,133.002206,139.572771,I,Above,Gable,0,5701,,18.33932966,0,0,,,,1,1,,0.03,nav,1,1985,1,, 22021,NJBF000058834,113 N FRONTENAC AVE,Margate City,NJ,39.33302986,-74.50105431,RES1,3001,,17,NE,1956,1956,3102,2,1,2055.572538,2055.572538,3505,NO,34.16,41.13,3,1.38,6106,113.411286,123.232359,132.935437,139.503187,I,Above,Flat,0,5701,,37.64274244,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 22022,NJBF000058312,8 S ARGYLE AVE,Margate City,NJ,39.33207576,-74.4936292,RES1,3001,,19,NE,1920,1920,3102,2,1,1677.01809,1677.01809,3505,NO,22.83,29.88,3,1.38,6106,113.588376,123.374754,133.084085,139.667557,I,Above,Hip,0,5701,,26.35427851,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22023,NJBF000058200,8 N DOUGLAS AVE,Margate City,NJ,39.33188573,-74.49779421,RES1,3001,,21,NE,2015,2015,3102,3,1,1175.548252,1175.548252,3505,NO,51.13,59.73,3,8.88,6106,113.499312,123.303019,133.00859,139.585552,I,Above,Flat,0,5701,,55.4324295,0,0,,,,1,1,,0.03,nav,1,2015,3,, 22024,NJBF000055851,107 N RUMSON AVE,Margate City,NJ,39.32712686,-74.51002467,RES1,3001,,19,NE,1941,1941,3102,2,1,2312.065946,2312.065946,3505,NO,21.19,31.57,3,-1.99,6106,113.298916,123.140743,132.835551,139.399561,I,Above,Hip,0,5701,,26.37936636,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 22025,NJBF000056824,13 N IROQUOIS AVE,Margate City,NJ,39.32933934,-74.50288294,RES1,3001,,18,NE,1970,1970,3102,2,1,1310.657415,1310.657415,3505,NO,42.22,53.82,3,3.93,6106,113.423631,123.241701,132.942417,139.516258,I,Above,Gable,0,5701,,48.02054685,0,0,,,,1,1,,0.03,nav,1,1970,2,, 22026,NJBF000061559,10 HARBOUR LANE,Margate City,NJ,39.33785979,-74.50890237,RES1,3001,,18,NE,1984,1984,3102,2,1,1780.049741,1780.049741,3505,NO,30.16,42.8,3,2.05,6106,113.170066,123.039042,132.736681,139.2742,I,Above,Hip,0,5701,,36.48015038,0,0,,,,1,1,,0.03,nav,1,1984,2,, 22027,NJBF000057603,107 N HANOVER AVE,Margate City,NJ,39.33086545,-74.50352109,RES1,3001,,17,NE,1958,1958,3102,2,1,1612.930782,1612.930782,3507,NO,23.99,36.32,1,-0.46,6106,113.387706,123.213132,132.913764,139.48275,I,Above,Hip,0,5701,,30.15598946,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 22028,NJBF000056885,14 N HANOVER AVE,Margate City,NJ,39.32946153,-74.50268412,RES1,3001,,17,NE,1958,1958,3102,3,1,1375.283884,1375.283884,3505,NO,51.05,58.06,3,-1.25,6106,113.426238,123.243826,132.944734,139.518687,I,Above,Hip,0,5701,,54.55314976,0,1.1,,,,1,1,,0.03,nav,1,1958,3,, 22029,NJBF000055587,109 N THURLOW AVE,Margate City,NJ,39.32649582,-74.51126253,RES1,3001,,17,NE,1946,1946,3102,2,1,1243.579676,1243.579676,3505,NO,44.73,50.27,3,8.41,6106,113.281052,123.126129,132.819891,139.382513,I,Above,Gable,0,5701,,47.50132789,0,0,,,,1,1,,0.03,nav,1,1946,2,, 22030,NJBF000060795,8200 MARSHALL AVE,Margate City,NJ,39.33655372,-74.5087738,RES1,3001,,17,NE,1971,1971,3101,1,1,1684.644177,1684.644177,3505,NO,23.14,32.23,3,6.07,6106,113.19117,123.055989,132.753646,139.295734,I,Above,Gable,0,5701,,27.68532045,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 22031,NJBF000059481,7525 WINCHESTER AVE,Margate City,NJ,39.33432894,-74.49664384,RES1,3001,,17,NE,1930,1930,3102,2,1,1483.668013,1483.668013,3505,NO,43.92,54.64,3,5.58,6106,113.490314,123.295945,133.003017,139.57419,I,Above,Flat,0,5701,,49.27685307,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22032,NJBF000056311,28 S HUNTINGTON AVE,Margate City,NJ,39.32819623,-74.50068059,RES1,3001,,21,NE,2015,2015,3101,1,1,1073.620765,1073.620765,3505,NO,16.02,22.6,3,4.12,6106,113.48848,123.293607,132.995724,139.576175,I,Above,Gable,0,5701,,19.30974354,0,0,,,,1,1,,0.03,nav,1,2015,1,, 22033,NJBF000058339,15 S ANDOVER AVE,Margate City,NJ,39.332131,-74.49246132,RES1,3001,,19,NE,1925,1925,3102,2,1,1229.984958,1229.984958,3505,NO,29.59,41.73,3,-2.99,6106,113.613326,123.394869,133.105299,139.690451,I,Above,Gable,0,5701,,35.6585392,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22034,NJBF000060145,305 N ESSEX AVE,Margate City,NJ,39.3354735,-74.501708,RES1,3001,,17,NE,1960,1960,3102,2,1,1936.274275,1936.274275,3505,NO,28.92,38.49,3,0.72,6106,113.362509,123.193285,132.896221,139.455027,I,Above,Hip,0,5701,,33.70545753,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 22035,NJBF000058444,207 N HUNTINGTON AVE,Margate City,NJ,39.33232766,-74.50412176,RES1,3001,,17,NE,1948,1948,3102,2,1,1561.74541,1561.74541,3505,NO,35.82,46.26,3,4.77,6106,113.353599,123.185957,132.886458,139.450416,I,Above,Hip,0,5701,,41.0366129,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22036,NJBF000060114,108 N ARGYLE AVE,Margate City,NJ,39.33543207,-74.49599255,RES1,3001,,20,NE,2003,2003,3102,2,1,1218.910744,1218.910744,3505,NO,37.77,43.9,3,7.7,6106,113.489309,123.295133,133.002961,139.571144,I,Above,Hip,0,5701,,40.83405521,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 22037,NJBF000060066,109 N BELMONT AVE,Margate City,NJ,39.33533944,-74.4961188,RES1,3001,,17,NE,1959,1959,3102,1,1,1292.828356,1292.828356,3505,NO,21.23,33.43,3,2.23,6106,113.48782,123.293938,133.001639,139.569984,I,Above,Gable,0,5701,,27.3291749,0,0,,,,1,1,,0.03,nav,1,1959,1,, 22038,NJBF000060283,122 N BELMONT AVE,Margate City,NJ,39.33571303,-74.49693833,RES1,3001,,20,NE,1950,1950,3102,2,1,1019.998323,1019.998323,3505,NO,38.41,51.83,3,2.67,6106,113.464535,123.275208,132.982232,139.547966,I,Above,Hip,0,5701,,45.1199769,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22039,NJBF000061906,430 N CLERMONT AVE,Margate City,NJ,39.338447,-74.5025658,RES1,3001,,17,NE,1960,1960,3102,2,1,1569.336272,1569.336272,3505,NO,19.79,29.11,3,-1.47,6106,113.302215,123.144726,132.847214,139.393958,I,Above,Hip,0,5701,,24.44599513,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 22040,NJBF000059751,114 N BRUNSWICK AVE,Margate City,NJ,39.3347935,-74.49755067,RES1,3001,,17,NE,1955,1955,3102,2,1,1185.912932,1185.912932,3505,NO,30.43,39.37,3,2.49,6106,113.4638,123.274633,132.980983,139.549087,I,Above,Gable,0,5701,,34.89891235,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 22041,NJBF000059435,8210 FULTON AVE,Margate City,NJ,39.33423571,-74.50740071,RES1,3001,,17,NE,1970,1970,3101,2,1,1403.94536,1403.94536,3505,NO,32.85,41.25,3,-2.55,6106,113.25419,123.106399,132.804785,139.356804,I,Above,Gable,0,5701,,37.0459878,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 22042,NJBF000057840,100 S ANDOVER AVE,Margate City,NJ,39.33125298,-74.49222486,RES1,3001,,22,NE,2005,2005,3102,3,1,1532.970961,1532.970961,3505,NO,49.28,55.82,3,-2.64,6106,113.630878,123.408924,133.119352,139.707599,I,Above,Gable,0,5701,,52.54656863,0,0,,,,1,1,,0.03,nav,1,2005,3,, 22043,NJBF000058766,,Margate City,NJ,39.33289649,-74.49599817,RES1,3001,,NaN,NE,1950,0,3102,2,1,1091.479588,1091.479588,3505,NO,36.32,43.04,3,-1.69,6106,113.524647,123.323502,133.030872,139.607875,I,Above,Flat,0,5701,,39.67627762,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22044,NJBF000057822,314 N MANSFIELD AVE,Margate City,NJ,39.33122952,-74.50984965,RES1,3001,,17,NE,1955,1955,3102,1,1,1045.042124,1045.042124,3505,NO,21.06,35.54,3,5.84,6106,113.243145,123.097128,132.793232,139.348451,I,Above,Gable,0,5701,,28.29638267,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22045,NJBF000056436,GRANVILLE & ATLANTIC,Margate City,NJ,39.328466,-74.499029,COM1,3001,,NaN,ME,1969,0,3401,2,1,3484.938753,3484.938753,3507,NO,37.21,43.24,1,2.39,6106,113.520891,123.319777,133.023345,139.606334,I,Above,Flat,0,NaN,,40.22179701,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22046,NJBF000057719,213 N KENYON AVE,Margate City,NJ,39.33104848,-74.50716803,RES1,3001,,17,NE,1950,1950,3102,2,1,2076.487186,2076.487186,3505,NO,29.53,42.06,3,6.47,6106,113.304798,123.146573,132.844517,139.405761,I,Above,Hip,0,5701,,35.7944801,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22047,NJBF000056858,201 N NASSAU AVE,Margate City,NJ,39.32941393,-74.50848938,RES1,3001,,20,NE,2016,2016,3102,3,1,949.5201073,949.5201073,3505,NO,48.95,59,3,8.63,6106,113.299311,123.141788,132.838369,139.40078,I,Above,Gable,0,5701,,53.97217152,0,0,,,,1,1,,0.03,nav,1,2016,3,, 22048,NJBF000056746,205 N OSBORNE AVE,Margate City,NJ,39.32915713,-74.50918936,RES1,3001,,17,NE,1949,1949,3101,1,1,1365.5063,1365.5063,3505,NO,17.43,26.06,3,-1.67,6106,113.287657,123.132354,132.828376,139.389903,I,Above,Flat,0,5701,,21.74601991,0,0,,,,1,1,,0.03,nav,1,1949,1,, 22049,NJBF000059024,214 N GLADSTONE AVE,Margate City,NJ,39.33338586,-74.50306491,RES1,3001,,17,NE,1951,1951,3101,1,1,1390.983004,1390.983004,3505,NO,10.73,17.49,3,0.15,6106,113.3619,123.192728,132.894258,139.457212,I,Above,Gable,0,5701,,14.10928695,0,0,,,,1,1,,0.03,nav,1,1951,1,, 22050,NJBF000059011,1 CIRCLE DRIVE,Margate City,NJ,39.33336698,-74.4943077,RES1,3001,,19,NE,1930,1930,3102,2,1,1370.838405,1370.838405,3505,NO,29.55,35.8,3,0.3,6106,113.555294,123.348203,133.057198,139.635354,I,Above,Hip,0,5701,,32.67190218,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22051,NJBF000058400,7 N CLERMONT AVE,Margate City,NJ,39.33225006,-74.49619688,RES1,3001,,17,NE,1950,1950,3102,2,1,1209.481617,1209.481617,3505,NO,36.71,45.69,3,6.35,6106,113.529356,123.327237,133.034288,139.612961,I,Above,Hip,0,5701,,41.20224974,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22052,NJBF000058109,305 N KENYON AVE,Margate City,NJ,39.331727,-74.5078715,RES1,3001,,17,NE,1959,1959,3102,2,1,1203.417656,1203.417656,3505,NO,38.46,51.16,3,7.28,6106,113.279577,123.126455,132.824049,139.382117,I,Above,Gable,0,5701,,44.81330667,0,0,,,,1,1,,0.03,nav,1,1959,2,, 22053,NJBF000056769,9 S GLADSTONE AVE,Margate City,NJ,39.3292216,-74.49905548,RES1,3001,,20,NE,1925,1925,3102,2,1,1573.763461,1573.763461,3505,NO,35.23,43.64,3,-2.68,6106,113.509477,123.310759,133.014542,139.5959,I,Above,Gable,0,5701,,39.43484649,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22054,NJBF000060622,21 W GILMAR CIRCLE,Margate City,NJ,39.3362895,-74.5067537,RES1,3001,,17,NE,1965,1965,3101,1,1,1830.663631,1830.663631,3505,NO,21.28,28.54,3,8.34,6106,113.239556,123.094722,132.793822,139.34069,I,Above,Hip,0,5701,,24.9115533,0,0,,,,1,1,,0.03,nav,1,1965,1,, 22055,NJBF000060135,111 N BELMONT AVE,Margate City,NJ,39.3354613,-74.49622278,RES1,3001,,17,NE,1925,1925,3102,2,1,1284.536017,1284.536017,3505,NO,37.51,44.68,3,5.33,6106,113.483827,123.290725,132.99835,139.566087,I,Above,Flat,0,5701,,41.09399087,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22056,NJBF000059755,111 N BRUNSWICK AVE,Margate City,NJ,39.33479535,-74.49710088,RES1,3001,,17,NE,1950,1950,3102,1,1,860.3975643,860.3975643,3505,NO,21.18,28.61,3,4.83,6110,113.47372,123.282607,132.989352,139.558168,I,Above,Gable,0,5701,,24.89608464,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 22057,NJBF000063209,7807 BAYSHORE DR,Margate City,NJ,39.34112493,-74.50691232,RES1,3001,,17,NE,1966,1966,3102,2,1,2341.998113,2341.998113,3505,NO,35.17,46.78,3,8.86,6106,113.16908,123.037726,132.736801,139.266217,I,Above,Hip,0,5701,,40.97715673,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 22058,NJBF000059131,23 N BRUNSWICK AVE,Margate City,NJ,39.33361377,-74.49590571,RES1,3001,,20,NE,1950,1950,3102,1,1,1024.050287,1024.050287,3505,NO,20.95,29.89,3,3.91,6106,113.5166,123.317068,133.024666,139.599464,I,Above,Hip,0,5701,,25.42343348,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22059,NJBF000063136,7801 BAYSHORE DR,Margate City,NJ,39.34096384,-74.50621366,RES1,3001,,18,NE,1964,1964,3102,2,1,2998.729479,2998.729479,3505,NO,33.55,44.82,3,3.96,6106,113.186771,123.051898,132.75151,139.282718,I,Above,Gable,0,5701,,39.18846275,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 22060,NJBF000058628,7505 VENTNOR AVE,Margate City,NJ,39.33264105,-74.49417694,RES1,3001,,18,NE,1925,1925,3102,2,1,1558.806593,1558.806593,3505,NO,30.77,43.43,3,4.99,6106,113.568362,123.35868,133.067639,139.648428,I,Above,Flat,0,5701,,37.09888238,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22061,NJBF000063865,7509 BAYSHORE DR,Margate City,NJ,39.34291888,-74.50380084,RES1,3001,,19,NE,1984,1984,3102,2,1,2334.770553,2334.770553,3505,NO,40.12,46.52,3,4.33,6106,113.213772,123.072913,132.774297,139.301513,I,Above,Gable,0,5701,,43.32068555,0,0,,,,1,1,,0.03,nav,1,1984,2,, 22062,NJBF000059153,24 WEST DRIVE,Margate City,NJ,39.3336676,-74.49550451,RES1,3001,,19,NE,1925,1925,3102,2,1,1722.664157,1722.664157,3505,NO,32.05,37.25,3,5.26,6106,113.524687,123.323578,133.031546,139.6068,I,Above,Hip,0,5701,,34.6482132,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22063,NJBF000053510,9300 ATLANTIC AVE,Margate City,NJ,39.32020883,-74.51251634,RES3E,3001,,20,ME,1966,1966,3301,1,1,25625.27234,25625.27234,3507,NO,16.7,24.73,1,2.84,6106,113.347368,123.176338,132.866432,139.436096,I,Above,Gable,0,5701,,20.71335356,0,0,,,,1,1,,0.03,nav,1,1966,1,, 22064,NJBF000062408,511 N DELAVAN AVE,Margate City,NJ,39.33939589,-74.50379636,RES1,3001,,18,NE,1966,1966,3102,2,1,1538.923437,1538.923437,3505,NO,34.88,42.84,3,0.27,6106,113.261895,123.112295,132.813819,139.354987,I,Above,Gable,0,5701,,38.85964252,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 22065,NJBF000063880,7400 BAYSHORE DR,Margate City,NJ,39.34297368,-74.5021344,RES1,3001,,19,NE,1983,1983,3102,2,1,2218.069355,2218.069355,3505,NO,36.55,45.35,3,2.36,6106,113.250051,123.101899,132.804651,139.333938,I,Above,Hip,0,5701,,40.9523921,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 22066,NJBF000060010,107 N BELMONT AVE,Margate City,NJ,39.335237,-74.49605,RES1,3001,,17,NE,1929,1929,3102,2,1,962.313613,962.313613,3505,NO,35.09,49.26,3,2.95,6106,113.490762,123.296306,133.004054,139.57288,I,Above,Flat,0,5701,,42.17428781,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 22067,NJBF000059946,105 N BELMONT AVE,Margate City,NJ,39.33512967,-74.49593251,RES1,3001,,17,NE,1927,1927,3102,2,1,841.6451417,841.6451417,3505,NO,27.69,38.66,3,-2.3,6106,113.494834,123.299582,133.007419,139.576815,I,Above,Hip,0,5701,,33.17606149,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 22068,NJBF000060375,409 N HUNTINGTON AVE,Margate City,NJ,39.33587468,-74.5073027,RES1,3001,,17,NE,1963,1963,3101,2,1,1534.939707,1534.939707,3505,NO,44.47,57.83,3,6.26,6110,113.23323,123.089662,132.788319,139.33547,I,Above,Gable,0,5701,,51.15277088,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 22069,NJBF000060369,409 N HUNTINGTON AVE,Margate City,NJ,39.33586106,-74.50717917,RES1,3001,,17,NE,1963,1963,3101,2,1,585.9108014,585.9108014,3505,NO,26.46,33.54,3,1.74,6110,113.236167,123.092014,132.790761,139.338197,I,Above,Gable,0,5701,,30.00021002,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 22070,NJBF000059532,19 WEST DRIVE,Margate City,NJ,39.33441932,-74.49576877,RES1,3001,,18,NE,1925,1925,3102,2,1,1252.564337,1252.564337,3505,NO,27.16,34.47,3,-0.28,6106,113.508364,123.310465,133.018333,139.590556,I,Above,Hip,0,5701,,30.8146739,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22071,NJBF000059538,21 WEST DRIVE,Margate City,NJ,39.33442679,-74.49592016,RES1,3001,,19,NE,1925,1925,3102,2,1,1757.21072,1757.21072,3505,NO,44.33,51.64,3,8.63,6106,113.50492,123.307695,133.015429,139.587391,I,Above,Hip,0,5701,,47.98791659,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22072,NJBF000059595,215 N ESSEX AVE,Margate City,NJ,39.33452204,-74.50056285,RES1,3001,,20,NE,2013,2013,3102,2,1,1193.278369,1193.278369,3505,NO,33.06,40.09,3,4.26,6106,113.401115,123.224268,132.928012,139.491982,I,Above,Flat,0,5701,,36.57704126,0,0,,,,1,1,,0.03,nav,1,2013,2,, 22073,NJBF000059541,213 N ESSEX AVE,Margate City,NJ,39.33442877,-74.50047592,RES1,3001,,17,NE,1964,1964,3102,2,1,1284.749758,1284.749758,3505,NO,31.82,40.45,3,7.39,6106,113.404341,123.226856,132.930658,139.495083,I,Above,Flat,0,5701,,36.13257404,0,0,,,,1,1,,0.03,nav,1,1964,2,, 22074,NJBF000060434,113 N ARGYLE AVE,Margate City,NJ,39.33596709,-74.49599229,RES1,3001,,17,NE,1950,1950,3102,1,1,2202.683492,2202.683492,3505,NO,16.78,28.34,3,-1.3,6106,113.481904,123.28916,132.997062,139.563216,I,Above,Gable,0,5701,,22.5585203,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22075,NJBF000055562,123 N UNION AVE,Margate City,NJ,39.32641818,-74.51215088,RES1,3001,,17,NE,1931,1931,3102,2,1,1102.183808,1102.183808,3505,NO,41.43,48,3,8.18,6106,113.262753,123.111374,132.804532,139.365421,I,Above,Hip,0,5701,,44.71859141,0,1.1,,,,1,1,,0.03,nav,1,1931,2,, 22076,NJBF000056264,30 S HUNTINGTON AVE,Margate City,NJ,39.328097,-74.5006145,RES1,3001,,18,NE,1925,1925,3102,2,1,1807.798903,1807.798903,3505,NO,36.67,42.68,3,5.8,6106,113.491378,123.295915,132.998054,139.578824,I,Above,Gable,0,5701,,39.67097514,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22077,NJBF000054097,,Margate City,NJ,39.32238059,-74.51499562,RES1,3001,,NaN,NE,1969,0,3102,2,1,1115.696216,1115.696216,3505,NO,33.95,40.7,3,8.67,6106,113.260693,123.107684,132.797365,139.35907,I,Above,Gable,0,5701,,37.32610761,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22078,NJBF000062042,501 N DELAVAN AVE,Margate City,NJ,39.33869703,-74.50312524,RES1,3001,,18,NE,1964,1964,3102,1,1,2698.367165,2698.367165,3505,NO,12.8,20.09,3,0.84,6106,113.286387,123.132014,132.83406,139.378956,I,Above,Hip,0,5701,,16.44453551,0,1.2,,,,1,1,,0.03,nav,1,1964,1,, 22079,NJBF000054178,4 S BENSON AVE,Margate City,NJ,39.3226389,-74.51255809,RES1,3001,,17,NE,1925,1925,3102,2,1,668.8620367,668.8620367,3505,NO,33.35,40.78,3,-2.57,6106,113.309968,123.14758,132.838889,139.405247,I,Above,Hip,0,5701,,37.06512144,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22080,NJBF000055403,,Margate City,NJ,39.32598828,-74.51043326,RES1,3001,,NaN,NE,1969,0,3101,1,1,3203.346719,3203.346719,3505,NO,13.77,28.51,3,0.96,6106,113.306707,123.146567,132.840689,139.405985,I,Above,Hip,0,5701,,21.14115308,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22081,NJBF000054651,9604 AMHERST AVE,Margate City,NJ,39.3239631,-74.51988536,RES3B,3001,,39,ME,1999,1999,3301,2,1,3476.9741,3476.9741,3505,NO,30.31,44.22,3,8.63,6106,113.130403,123.003545,132.691214,139.239583,I,Above,Gable,0,5701,,37.2620621,0,0,,,,1,1,,0.03,nav,1,1999,2,, 22082,NJBF000062490,7813 BURK AVE,Margate City,NJ,39.33957117,-74.50692206,RES1,3001,,18,NE,1970,1970,3102,2,1,1782.889465,1782.889465,3505,NO,26.86,37.29,3,0.3,6106,113.190202,123.054923,132.754034,139.289217,I,Above,Gable,0,5701,,32.07258693,0,0,,,,1,1,,0.03,nav,1,1970,2,, 22083,NJBF000054341,203B N MONROE AVE,Margate City,NJ,39.32310712,-74.51967491,RES3B,3001,,39,ME,1981,1981,3301,3,1,4105.637683,4105.637683,3505,NO,60.61,67.59,3,8.67,6106,113.147885,123.017114,132.704506,139.254857,I,Above,Flat,0,5701,,64.0990318,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 22084,NJBF000053742,9219 ATLANTIC AVE,Margate City,NJ,39.32111611,-74.51229208,RES3E,3001,,39,ME,2006,2006,3301,1,1,6788.288582,6788.288582,3507,NO,16.54,24.36,1,-0.69,6106,113.338593,123.169806,132.860527,139.429503,I,Above,Flat,0,5701,,20.44982482,0,0,,,,1,1,,0.03,nav,1,2006,1,, 22085,NJBF000062211,8101 LAGOON DRIVE,Margate City,NJ,39.33900561,-74.5106596,RES1,3001,,20,NE,2008,2008,3102,2,1,3741.165571,3741.165571,3505,NO,28.05,41.03,3,-2.85,6106,113.115172,122.995065,132.691495,139.22169,I,Above,Flat,0,5701,,34.54252122,0,0,,,,1,1,,0.03,nav,1,2008,2,, 22086,NJBF000054927,112 S MANSFIELD AVE,Margate City,NJ,39.32468037,-74.50372628,RES1,3001,,19,NE,1966,1966,3102,2,1,1763.277923,1763.277923,3505,NO,35.39,45.24,3,6.88,6106,113.472794,123.27981,132.978211,139.558802,I,Above,Gable,0,5701,,40.31324345,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 22087,NJBF000054151,31 N JEFFERSON AVE,Margate City,NJ,39.32255691,-74.51643571,RES3C,3001,,39,ME,2003,2003,3301,2,1,3363.670044,3363.670044,3505,NO,43.6,52.09,3,8.74,6106,113.226683,123.080349,132.769269,139.327647,I,Above,Hip,0,NaN,,47.84691789,0,0,,,,1,1,,0.03,nav,1,2003,2,, 22088,NJBF000053993,,Margate City,NJ,39.32204031,-74.51209123,RES1,3001,,NaN,NE,1969,0,3102,2,1,2536.069391,2536.069391,3505,NO,37.75,51.15,3,6.43,6106,113.329114,123.162691,132.854008,139.422156,I,Above,Hip,0,5701,,44.4491265,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22089,NJBF000059227,314 N HUNTINGTON AVE,Margate City,NJ,39.3338091,-74.50594142,RES1,3001,,21,NE,2004,2004,3101,2,1,1827.530799,1827.530799,3505,NO,32.25,37.95,3,-1.29,6110,113.29246,123.137048,132.836443,139.392615,I,Above,Hip,0,5701,,35.09680618,0,1.1,,,,1,1,,0.35,nav,1,2004,2,, 22090,NJBF000062582,8005 LAGOON DRIVE,Margate City,NJ,39.33976076,-74.50938681,RES1,3001,,20,NE,2003,2003,3102,2,1,3170.438772,3170.438772,3505,NO,42.95,57.23,3,7.42,6106,113.132928,123.009135,132.706446,139.236441,I,Above,Gable,0,5701,,50.09385301,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 22091,NJBF000054040,12 N ADAMS AVE,Margate City,NJ,39.32217965,-74.51562561,RES3C,3001,,17,ME,1930,1930,3301,1,1,928.6429838,928.6429838,3505,NO,14.7,29.06,3,3.1,6106,113.249995,123.098931,132.788141,139.348824,I,Above,Flat,0,NaN,,21.88050229,0,0,,,,1,1,,0.03,nav,1,1930,1,, 22092,NJBF000062930,8006 BAYSHORE DR,Margate City,NJ,39.3405307,-74.50979283,RES1,3001,,18,NE,1977,1977,3102,2,1,2926.448089,2926.448089,3505,NO,40.61,54.13,3,8.47,6106,113.113301,122.993325,132.690325,139.216799,I,Above,Hip,0,5701,,47.37001859,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 22093,NJBF000062624,606 N DELAVAN AVE,Margate City,NJ,39.339854,-74.5047485,RES1,3001,,18,NE,1964,1964,3102,2,1,1356.863303,1356.863303,3505,NO,41.7,51.4,3,3.08,6106,113.234478,123.090275,132.791048,139.328914,I,Above,Hip,0,5701,,46.54940271,0,0,,,,1,1,,0.03,nav,1,1964,2,, 22094,NJBF000059954,301 N ESSEX AVE,Margate City,NJ,39.33513896,-74.50136788,RES1,3001,,17,NE,1950,1950,3102,2,1,2561.49672,2561.49672,3505,NO,34.24,41.25,3,-0.48,6106,113.374693,123.203064,132.906235,139.466756,I,Above,Flat,0,5701,,37.74171728,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 22095,NJBF000061550,8301 LAGOON DRIVE,Margate City,NJ,39.33784477,-74.51272471,RES1,3001,,NaN,NE,2008,2008,3102,2,1,789.0312241,789.0312241,3505,NO,44.59,52.14,3,7.78,6106,113.085637,122.971584,132.666619,139.196537,I,Above,Gable,0,5701,,48.36422878,0,0,,,,1,1,,0.03,nav,1,2008,2,, 22096,NJBF000062161,510 N DOUGLAS AVE,Margate City,NJ,39.33890468,-74.50465729,RES1,3001,,18,NE,1969,1969,3102,2,1,1450.816557,1450.816557,3505,NO,20.34,28.77,3,-2.89,6106,113.249584,123.102522,132.803359,139.344924,I,Above,Gable,0,5701,,24.55267158,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 22097,NJBF000059026,26 N BRUNSWICK AVE,Margate City,NJ,39.33338901,-74.4962134,RES1,3001,,17,NE,1948,1948,3102,2,1,1289.104314,1289.104314,3505,NO,28.59,43.07,3,-2.23,6106,113.512985,123.314148,133.021428,139.596478,I,Above,Flat,0,5701,,35.82838866,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22098,NJBF000058540,7 S ANDOVER AVE,Margate City,NJ,39.33248604,-74.49275701,RES1,3001,,19,NE,1925,1925,3102,2,1,1629.774305,1629.774305,3505,NO,36.2,43.45,3,8.67,6106,113.601822,123.385628,133.095865,139.679394,I,Above,Hip,0,5701,,39.82539846,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22099,NJBF000057236,300 N NASSAU AVE,Margate City,NJ,39.33020026,-74.5097729,RES1,3001,,20,NE,2006,2006,3102,3,1,1572.719485,1572.719485,3505,NO,39.18,49.4,3,1.24,6106,113.259706,123.110184,132.806091,139.363992,I,Above,Gable,0,5701,,44.28715254,0,0,,,,1,1,,0.03,nav,1,2006,3,, 22100,NJBF000057278,205 N LANCASTER AVE,Margate City,NJ,39.3302817,-74.50739445,RES1,3001,,17,NE,1929,1929,3102,2,1,1405.153863,1405.153863,3505,NO,29.63,37.58,3,7.73,6106,113.310846,123.151268,132.848859,139.411515,I,Above,Gable,0,5701,,33.60957619,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 22101,NJBF000061355,425 N EXETER AVE,Margate City,NJ,39.33749622,-74.50441863,RES1,3001,,18,NE,1973,1973,3102,2,1,3163.137322,3163.137322,3505,NO,30.34,44.07,3,6.97,6106,113.274365,123.122527,132.823492,139.370552,I,Above,Gable,0,5701,,37.2048461,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 22102,NJBF000057759,312 N MANSFIELD AVE,Margate City,NJ,39.3311187,-74.50978372,RES1,3001,,17,NE,1952,1952,3101,1,1,1473.69313,1473.69313,3505,NO,15.96,26.85,3,0.88,6106,113.246196,123.099553,132.795677,139.351314,I,Above,Hip,0,5701,,21.4023298,0,0,,,,1,1,,0.03,nav,1,1952,1,, 22103,NJBF000058710,212 N HAVERFORD AVE,Margate City,NJ,39.33278534,-74.50422683,RES1,3001,,20,NE,2016,2016,3102,2,1,1164.765722,1164.765722,3505,NO,28.54,41.47,3,6.03,6106,113.344789,123.178938,132.879449,139.441926,I,Above,Gable,0,5701,,35.00535064,0,0,,,,1,1,,0.03,nav,1,2016,2,, 22104,NJBF000059914,304 N ESSEX AVE,Margate City,NJ,39.335071,-74.5018455,RES1,3001,,18,NE,1956,1956,3102,2,1,1718.511955,1718.511955,3505,NO,37.07,51.95,3,6.79,6106,113.365088,123.195356,132.898127,139.458032,I,Above,Hip,0,5701,,44.51160192,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 22105,NJBF000056270,307 N VENDOME AVE,Margate City,NJ,39.32810557,-74.51461654,RES1,3001,,18,NE,1952,1952,3101,1,1,2654.460423,2654.460423,3505,NO,16.21,26.17,3,-2.18,6106,113.183878,123.048625,132.740821,139.29294,I,Above,Flat,0,5701,,21.18953764,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 22106,NJBF000058920,1 E EDGMAR CIRCLE,Margate City,NJ,39.33318729,-74.50561109,RES1,3001,,17,NE,1972,1972,3101,1,1,1466.945443,1466.945443,3505,NO,20.27,26.97,3,1.09,6106,113.308561,123.149908,132.849443,139.408073,I,Above,Hip,0,5701,,23.61696654,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 22107,NJBF000055805,8907 MONMOUTH AVE,Margate City,NJ,39.32702149,-74.51269397,RES1,3001,,18,NE,1951,1951,3102,2,1,2424.510117,2424.510117,3505,NO,34.45,41.16,3,-2.18,6106,113.241978,123.094908,132.787936,139.346493,I,Above,Gable,0,5701,,37.80563775,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 22108,NJBF000055956,208 N THURLOW AVE,Margate City,NJ,39.32736363,-74.51266242,RES1,3001,,19,NE,1950,1950,3102,3,1,1388.931659,1388.931659,3505,NO,53.59,60.16,3,4.99,6106,113.237635,123.091551,132.784716,139.342655,I,Above,Hip,0,5701,,56.87665274,0,0,,,,1,1,,0.03,nav,1,1950,3,, 22109,NJBF000056531,319 N UNION AVE,Margate City,NJ,39.32868713,-74.51433246,RES1,3001,,17,NE,1951,1951,3101,1,1,1330.336452,1330.336452,3505,NO,9.82,24.05,3,-2.05,6106,113.1816,123.047009,132.739556,139.291046,I,Above,Gable,0,5701,,16.93508878,0,0,,,,1,1,,0.03,nav,1,1951,1,, 22110,NJBF000059116,305 N HUNTINGTON AVE,Margate City,NJ,39.33358596,-74.50511817,RES1,3001,,17,NE,1953,1953,3101,1,1,1161.359796,1161.359796,3505,NO,17.63,29.87,3,0.17,6106,113.313778,123.154129,132.854105,139.412541,I,Above,Flat,0,5701,,23.75400387,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 22111,NJBF000054938,,Margate City,NJ,39.32469863,-74.51782578,RES3B,3001,,NaN,ME,2006,0,3301,2,1,3854.381877,3854.381877,3502,NO,35.8,44.36,5,4.49,6106,113.164235,123.031236,132.720331,139.272015,I,Above,Hip,0,5701,,40.0783252,0,0,,,,1,1,,0.03,nav,1,2006,2,, 22112,NJBF000058233,205 N HANOVER AVE,Margate City,NJ,39.33193835,-74.50456986,RES1,3001,,17,NE,1955,1955,3102,2,1,981.369622,981.369622,3505,NO,41.54,48.8,3,7.98,6106,113.34928,123.182437,132.882512,139.446656,I,Above,Hip,0,5701,,45.17108793,0,0,,,,1,1,,0.03,nav,1,1955,2,, 22113,NJBF000058634,EDGMAR CIRCLE,Margate City,NJ,39.33264886,-74.50593582,RES1,3001,,NaN,NE,1969,0,3101,1,1,532.8360435,532.8360435,3505,NO,17.72,24.03,3,1.1,6106,113.309044,123.150236,132.849428,139.408931,I,Above,Gable,0,5701,,20.87640392,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22114,NJBF000053947,124 N COOLIDGE AVE,Margate City,NJ,39.32188697,-74.52030974,RES1,3001,,17,NE,1920,1920,3102,2,3,1105.871175,1105.871175,3507,NO,23.5,35.75,1,0.72,6106,113.152553,123.020079,132.706547,139.257515,I,Above,Hip,0,5701,,29.62284176,0,0,,,,1,1,,0.03,nav,1,1920,2,, 22115,NJBF000054508,,Margate City,NJ,39.32357611,-74.51662507,RES1,3001,,NaN,NE,1950,0,3102,2,1,1173.068315,1173.068315,3507,NO,31.19,39.65,1,1.99,6106,113.207254,123.065278,132.754563,139.310872,I,Above,Gable,0,5701,,35.42309696,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22116,NJBF000054892,128 N WASHINGTON AVE,Margate City,NJ,39.32457884,-74.51625502,RES1,3001,,47,NE,1958,1958,3102,2,2,1471.716284,1471.716284,3507,NO,31.7,36.94,1,2.09,6106,113.200312,123.060236,132.75017,139.305554,I,Above,Gable,0,5701,,34.31653607,0,0,,,,1,1,,0.03,nav,1,1958,2,, 22117,NJBF000055894,8900 MONMOUTH AVE,Margate City,NJ,39.32722942,-74.51165751,RES1,3001,,17,NE,1950,1950,3101,1,1,1641.749367,1641.749367,3505,NO,19.23,27.69,3,5.9,6106,113.261623,123.110788,132.804551,139.364915,I,Above,Gable,0,5701,,23.46208339,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22118,NJBF000054399,,Margate City,NJ,39.32328434,-74.51588553,RES1,3001,,NaN,NE,1969,0,3102,2,1,1287.48826,1287.48826,3507,NO,30.16,43.52,1,-0.79,6106,113.227744,123.081632,132.771212,139.329605,I,Above,Flat,0,5701,,36.83881941,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22119,NJBF000060776,7403 MONMOUTH AVE,Margate City,NJ,39.336531,-74.4961435,RES1,3001,,17,NE,1956,1956,3103,1,1,1144.215885,1144.215885,3505,NO,15.79,24.8,3,4.09,6106,113.470735,123.280149,132.987984,139.551732,I,Above,Gable,0,5701,,20.29819288,0,0,,,,1,1,,0.03,nav,1,1956,1,, 22120,NJBF000054571,15 N DECATUR AVE,Margate City,NJ,39.32375915,-74.51383712,RES1,3001,,17,NE,1950,1950,3102,2,1,1914.690788,1914.690788,3505,NO,28.86,35.82,3,5.44,6106,113.265332,123.112195,132.803219,139.365201,I,Above,Flat,0,5701,,32.33578088,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 22121,NJBF000059487,107 N CLARENDON AVE,Margate City,NJ,39.33434049,-74.49742784,RES1,3001,,19,NE,1989,1989,3102,2,1,1043.755643,1043.755643,3505,NO,31.34,45.5,3,0.48,6106,113.47286,123.281911,132.988295,139.558169,I,Above,Flat,0,5701,,38.41727377,0,0,,,,1,1,,0.03,nav,1,1989,2,, 22122,NJBF000054944,2 N UNION AVE,Margate City,NJ,39.32471599,-74.51114669,RES1,3001,,17,NE,1950,1950,3102,2,1,1376.990585,1376.990585,3505,NO,35.54,46.75,3,7.09,6106,113.30987,123.148555,132.8417,139.407718,I,Above,Hip,0,5701,,41.14915611,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22123,NJBF000057811,22-1/2 N FRONTENAC,Margate City,NJ,39.33120487,-74.49994443,RES1,3001,,17,NE,1962,1962,3102,1,1,1289.191258,1289.191258,3505,NO,14.48,23.11,3,-2.59,6106,113.461615,123.272605,132.976193,139.551117,I,Above,Gable,0,5701,,18.79925644,0,0,,,,1,1,,0.03,nav,1,1962,1,, 22124,NJBF000059803,119 N CLARENDON AVE,Margate City,NJ,39.33487784,-74.49791306,RES1,3001,,18,NE,1940,1940,3102,2,1,843.6028519,843.6028519,3505,NO,38.35,44,3,2.34,6110,113.454636,123.267267,132.973315,139.540544,I,Above,Gable,0,5701,,41.17708632,0,1.1,,,,1,1,,0.35,nav,1,1940,2,, 22125,NJBF000058154,38 N FRONTENAC AVE,Margate City,NJ,39.33180597,-74.50042963,RES1,3001,,21,NE,2016,2016,3101,1,1,923.321912,923.321912,3505,NO,19.71,32.73,3,6.26,6106,113.442372,123.257214,132.960544,139.532949,I,Above,Hip,0,5701,,26.21937365,0,0,,,,1,1,,0.03,nav,1,2016,1,, 22126,NJBF000056001,5 N MANSFIELD AVE,Margate City,NJ,39.32749596,-74.50572304,RES1,3001,,18,NE,1948,1948,3102,2,1,1433.747038,1433.747038,3505,NO,29.92,43.19,3,-2.92,6106,113.387898,123.212451,132.910423,139.482487,I,Above,Hip,0,5701,,36.55687559,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 22127,NJBF000053679,12 N MONROE AVE,Margate City,NJ,39.32085486,-74.51810047,RES1,3001,,47,NE,1930,1930,3102,1,3,2285.022771,2285.022771,3507,NO,13.4,19.06,1,1.04,6106,113.216218,123.070805,132.757923,139.315327,I,Above,Gable,0,5701,,16.23032819,0,0,,,,1,1,,0.03,nav,1,1930,1,, 22128,NJBF000057119,14 N HAVERFORD AVE,Margate City,NJ,39.32996725,-74.50154222,RES1,3001,,19,NE,1989,1989,3102,3,1,1319.706925,1319.706925,3505,NO,49.47,57.85,3,-1.7,6106,113.444111,123.25831,132.960268,139.535258,I,Above,Gable,0,5701,,53.66127286,0,0,,,,1,1,,0.03,nav,1,1989,3,, 22129,NJBF000060308,114 N ARGYLE AVE,Margate City,NJ,39.33575223,-74.49630283,RES1,3001,,17,NE,1952,1952,3102,3,1,1406.437755,1406.437755,3505,NO,36.79,46.79,3,2.45,6106,113.478018,123.286045,132.993639,139.560166,I,Above,Hip,0,5701,,41.79024573,0,0,,,,1,1,,0.03,nav,1,1952,3,, 22130,NJBF000059205,113 N DOUGLAS AVE,Margate City,NJ,39.3337745,-74.4990955,RES1,3001,,21,NE,2012,2012,3103,2,1,1238.714113,1238.714113,3505,NO,23.3,34.31,3,-0.21,6110,113.444013,123.258704,132.963554,139.532501,I,Above,Gable,0,5701,,28.8038972,0,0,,,,1,1,,0.35,nav,1,2012,2,, 22131,NJBF000060374,111 N ARGYLE AVE,Margate City,NJ,39.33587365,-74.49591232,RES1,3001,,17,NE,1950,1950,3102,2,1,1503.46209,1503.46209,3505,NO,30.62,45.16,3,-1.11,6106,113.48496,123.291622,132.999584,139.566208,I,Above,Flat,0,5701,,37.88614144,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22132,NJBF000055930,2 N LANCASTER AVE,Margate City,NJ,39.32731667,-74.50522009,RES1,3001,,17,NE,1952,1952,3101,1,1,3134.579345,3134.579345,3505,NO,25.15,33.69,3,6.1,6106,113.40154,123.223371,132.921656,139.495057,I,Above,Hip,0,5701,,29.41850384,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 22133,NJBF000055888,8515 VENTNOR AVE,Margate City,NJ,39.32720995,-74.50547862,RES1,3001,,19,NE,2003,2003,3102,3,1,2455.882362,2455.882362,3505,NO,48.7,55.6,3,3.4,6106,113.397413,123.220016,132.918071,139.491161,I,Above,Gable,0,5701,,52.15008071,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, 22134,NJBF000059854,115 N BRUNSWICK AVE,Margate City,NJ,39.33496889,-74.49726973,RES1,3001,,18,NE,1950,1950,3102,2,1,1169.319018,1169.319018,3505,NO,41.12,55.26,3,6.33,6110,113.467562,123.277656,132.98428,139.552212,I,Above,Hip,0,5701,,48.19130965,0,0,,,,1,1,,0.35,nav,1,1950,2,, 22135,NJBF000059651,110 N BRUNSWICK AVE,Margate City,NJ,39.33461567,-74.49740265,RES1,3001,,17,NE,1950,1950,3102,2,1,1327.800922,1327.800922,3505,NO,24.32,33.46,3,0.34,6106,113.469553,123.279256,132.985708,139.55467,I,Above,Gable,0,5701,,28.89245179,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22136,NJBF000060029,7403 WINCHESTER AVE,Margate City,NJ,39.33527126,-74.49515689,RES1,3001,,17,NE,1952,1952,3102,2,1,2417.636023,2417.636023,3505,NO,39.85,49.36,3,1.14,6106,113.510003,123.311782,133.020341,139.59034,I,Above,Gable,0,5701,,44.6066939,0,0,,,,1,1,,0.03,nav,1,1952,2,, 22137,NJBF000058207,11 N DOUGLAS AVE,Margate City,NJ,39.33189613,-74.49738344,RES1,3001,,17,NE,1930,1930,3102,2,1,1005.987027,1005.987027,3505,NO,30.11,43.54,3,6.41,6106,113.508224,123.310192,133.016121,139.59378,I,Above,Gable,0,5701,,36.82544463,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22138,NJBF000053980,107 S VENDOME AVE,Margate City,NJ,39.32199047,-74.50882593,RES1,3001,,21,NE,1988,1988,3103,3,1,1572.736447,1572.736447,3505,NO,42.61,53.65,3,-2.54,6106,113.401069,123.220721,132.914188,139.488753,I,Above,Flat,0,5701,,48.12623917,0,0,,,,1,1,,0.03,nav,1,1988,3,, 22139,NJBF000059756,28 N FREDERICKSBURG AVE,Margate City,NJ,39.33479682,-74.49430495,RES1,3001,,19,NE,1929,1929,3102,2,1,1523.616874,1523.616874,3505,NO,30.69,38.05,3,-0.34,6106,113.535399,123.332222,133.041486,139.614486,I,Above,Hip,0,5701,,34.36950095,0,0,,,,1,1,,0.03,nav,1,1929,2,, 22140,NJBF000058353,10 N CLERMONT AVE,Margate City,NJ,39.3321506,-74.49659111,RES1,3001,,17,NE,1960,1960,3102,1,1,1513.795328,1513.795328,3505,NO,18.68,31.06,3,1.84,6106,113.522071,123.321364,133.028044,139.606338,I,Above,Gable,0,5701,,24.86992113,0,0,,,,1,1,,0.03,nav,1,1960,1,, 22141,NJBF000058300,9 N DELAVAN AVE,Margate City,NJ,39.3320617,-74.49678253,RES1,3001,,17,NE,1955,1955,3102,2,1,951.7972479,951.7972479,3505,NO,27.22,35.4,3,-2.74,6106,113.519097,123.318961,133.025452,139.603677,I,Above,Hip,0,5701,,31.31122408,0,0,,,,1,1,,0.03,nav,1,1955,2,, 22142,NJBF000054258,,Margate City,NJ,39.32288248,-74.50839503,RES1,3001,,NaN,NE,1969,0,3102,2,1,2234.877846,2234.877846,3505,NO,36.56,43.19,3,-0.57,6106,113.397208,123.218066,132.91226,139.486504,I,Above,Gable,0,5701,,39.87470463,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22143,NJBF000058255,15 N DOUGLAS AVE,Margate City,NJ,39.33198044,-74.49742122,RES1,3001,,17,NE,1930,1930,3102,2,1,1493.354273,1493.354273,3505,NO,26.5,35.01,3,1.19,6106,113.5062,123.308572,133.014488,139.591838,I,Above,Hip,0,5701,,30.75737141,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22144,NJBF000058612,23 N DELAVAN AVE,Margate City,NJ,39.33260587,-74.49724889,RES1,3001,,18,NE,1940,1940,3102,2,1,1245.750446,1245.750446,3505,NO,27.29,41.15,3,4.04,6106,113.501155,123.304575,133.01078,139.586572,I,Above,Gable,0,5701,,34.22262544,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 22145,NJBF000058010,3 N DOUGLAS AVE,Margate City,NJ,39.33155256,-74.49712038,RES1,3001,,17,NE,1950,1950,3102,1,1,1102.828759,1102.828759,3505,NO,18.77,31.41,3,6.07,6106,113.518869,123.318719,133.024793,139.603888,I,Above,Flat,0,5701,,25.09119181,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22146,NJBF000054586,104 S QUINCY AVE,Margate City,NJ,39.32378827,-74.50648485,RES1,3001,,20,NE,2010,2010,3103,3,1,1767.621451,1767.621451,3505,NO,44.87,50.81,3,-2.79,6106,113.425538,123.241338,132.937302,139.513962,I,Above,Hip,0,5701,,47.84196518,0,0,,,,1,1,,0.03,nav,1,2010,3,, 22147,NJBF000053969,9 S WASHINGTON AVE,Margate City,NJ,39.32195803,-74.51320065,RES1,3001,569,NaN,NE,1969,0,3102,2,1,2199.657721,2199.657721,3505,NO,28.37,34.25,3,0.98,6106,113.306151,123.144116,132.834689,139.400715,I,Above,Flat,0,5701,,31.31052861,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22148,NJBF000054194,103 S UNION AVE,Margate City,NJ,39.32269095,-74.50855399,RES1,3001,,19,NE,1955,1955,3102,2,1,1958.918543,1958.918543,3505,NO,36.54,45.57,3,1.21,6106,113.396573,123.217458,132.911452,139.485643,I,Above,Hip,0,5701,,41.05694339,0,0.1,,,,1,1,,0.03,nav,1,1955,2,, 22149,NJBF000056486,108 S EXETER AVE,Margate City,NJ,39.32857917,-74.49664315,RES1,3001,,19,NE,1950,1950,3102,3,1,1664.076182,1664.076182,3505,NO,54.32,61.06,3,1.17,6106,113.571702,123.360742,133.066383,139.653479,I,Above,Flat,0,5701,,57.69019075,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 22150,NJBF000056741,105 S ESSEX AVE,Margate City,NJ,39.32915196,-74.49589201,RES1,3001,,18,NE,1951,1951,3102,2,1,1367.723173,1367.723173,3505,NO,40.84,53.64,3,7.95,6106,113.580017,123.367569,133.074051,139.6613,I,Above,Flat,0,5701,,47.23722863,0,0,,,,1,1,,0.03,nav,1,1951,2,, 22151,NJBF000054222,9003 ATLANTIC AVE,Margate City,NJ,39.32279237,-74.50956785,RES1,3001,,19,NE,1954,1954,3102,2,1,2315.860775,2315.860775,3505,NO,33.68,43.24,3,8.85,6106,113.372931,123.198442,132.891787,139.463885,I,Above,Gable,0,5701,,38.45926801,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 22152,NJBF000056421,110 S EXETER AVE,Margate City,NJ,39.32843019,-74.496517,RES1,3001,,22,NE,2016,2016,3102,3,1,1789.966395,1789.966395,3505,NO,39.54,45.15,3,7.03,6106,113.576604,123.364658,133.070361,139.657976,I,Above,Hip,0,5701,,42.34805367,0,0,,,,1,1,,0.03,nav,1,2016,3,, 22153,NJBF000056423,8000 ATLANTIC AVE,Margate City,NJ,39.32843331,-74.49799686,RES1,3001,,17,NE,1950,1950,3102,2,1,1699.67378,1699.67378,3505,NO,44.69,52.14,3,7.81,6106,113.544042,123.338418,133.042846,139.62779,I,Above,Flat,0,5701,,48.41881309,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22154,NJBF000056974,105 S DELAVAN AVE,Margate City,NJ,39.32964835,-74.49484212,RES1,3001,,20,NE,1948,1948,3102,2,1,1714.266533,1714.266533,3505,NO,33.07,44.72,3,8.2,6106,113.596035,123.380578,133.088148,139.676144,I,Above,Hip,0,5701,,38.89931534,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22155,NJBF000056152,10 S IROQUOIS AVE,Margate City,NJ,39.32783189,-74.50185914,RES1,3001,,19,NE,1986,1986,3102,2,1,1290.994989,1290.994989,3505,NO,37.59,51.56,3,7.81,6106,113.467858,123.276906,132.977955,139.556886,I,Above,Flat,0,5701,,44.57490453,0,0,,,,1,1,,0.03,nav,1,1986,2,, 22156,NJBF000054704,2 S THURLOW AVE,Margate City,NJ,39.32409612,-74.50956185,RES1,3001,,21,NE,2007,2007,3103,3,1,1546.927325,1546.927325,3505,NO,43.06,56.71,3,2.01,6106,113.353705,123.183583,132.877522,139.447746,I,Above,Gable,0,5701,,49.88565175,0,0,,,,1,1,,0.03,nav,1,2007,3,, 22157,NJBF000057578,7601 ATLANTIC AVE,Margate City,NJ,39.33081292,-74.49406754,RES1,3001,,21,NE,2003,2003,3102,2,1,1237.282872,1237.282872,3505,NO,34.64,48.12,3,1.89,6106,113.596532,123.381173,133.089777,139.676199,I,Above,Hip,0,5701,,41.37882366,0,0,,,,1,1,,0.03,nav,1,2003,2,, 22158,NJBF000057806,10 S BRUNSWICK AVE,Margate City,NJ,39.3311918,-74.49434627,RES1,3001,,18,NE,1965,1965,3102,2,1,1260.802849,1260.802849,3505,NO,32,40.8,3,-2.02,6106,113.585054,123.371975,133.080427,139.665332,I,Above,Gable,0,5701,,36.39989249,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 22159,NJBF000058175,7600 VENTNOR AVE,Margate City,NJ,39.3318375,-74.4948925,RES1,3001,,21,NE,1954,2017,3102,2,1,1457.451863,1457.451863,3505,NO,21.98,29.84,3,-0.34,6106,113.563904,123.355014,133.063133,139.645249,I,Above,Flat,0,5701,,25.9130876,0,0,,,,1,1,,0.03,nav,1,1954,2,, 22160,NJBF000057177,5 S FRANKLIN AVE,Margate City,NJ,39.33008497,-74.49779,COM1,3001,,NaN,ME,1969,0,3401,1,1,1408.393374,1408.393374,3507,NO,12.31,18.63,1,0.68,6106,113.52497,123.323405,133.028513,139.610218,I,Above,Flat,0,NaN,,15.46979561,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22161,NJBF000057226,8-12 S ESSEX AVE,Margate City,NJ,39.33017812,-74.49762258,COM1,3001,,NaN,ME,1973,1955,3401,1,1,8811.923624,8811.923624,3507,NO,15.19,25.13,1,2.53,6106,113.527319,123.325313,133.030591,139.612375,I,Above,Flat,0,NaN,,20.16444167,0,0,,,,1,1,,0.03,nav,1,1973,1,, 22162,NJBF000057773,2 S CLERMONT AVE,Margate City,NJ,39.33114242,-74.49609878,RES3C,3001,,21,E,2000,2000,3303,4,1,3861.287918,3861.287918,3507,NO,55.73,65.17,1,1.89,6106,113.54717,123.34145,133.048317,139.630341,I,Above,Flat,0,NaN,,60.45288102,0,0,,,,1,1,,0.03,nav,1,2000,4,, 22163,NJBF000058666,38 N DOUGLAS AVE,Margate City,NJ,39.33270508,-74.49853179,RES1,3001,,20,NE,2009,2009,3102,3,1,1729.601033,1729.601033,3505,NO,55.23,61.85,3,1.93,6106,113.471479,123.280713,132.985833,139.559089,I,Above,Flat,0,5701,,58.53907006,0,0,,,,1,1,,0.03,nav,1,2009,3,, 22164,NJBF000055367,9216 AMHERST AVE,Margate City,NJ,39.32588833,-74.51668394,RES3B,3001,,39,ME,2003,2003,3301,3,1,3324.561504,3324.561504,3505,NO,42.94,55.41,3,1.23,6106,113.171429,123.037648,132.727859,139.279871,I,Above,Flat,0,5701,,49.17134901,0,0,,,,1,1,,0.03,nav,1,2003,3,, 22165,NJBF000061399,605 N HUNTINGTON AVE,Margate City,NJ,39.33757089,-74.5089492,RES1,3001,,18,NE,1974,1974,3102,2,1,1618.75002,1618.75002,3505,NO,33.43,43.9,3,8.36,6110,113.173059,123.041457,132.739051,139.27745,I,Above,Hip,0,5701,,38.66587049,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 22166,NJBF000055697,,Margate City,NJ,39.326762,-74.5143045,RES1,3001,,NaN,NE,1969,0,3102,2,1,905.0458091,905.0458091,3505,NO,40.47,46.9,3,3.84,6106,113.210536,123.069514,132.76145,139.317024,I,Above,Gable,0,5701,,43.68601935,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22167,NJBF000062438,604 N DOUGLAS AVE,Margate City,NJ,39.33946217,-74.50522199,RES1,3001,,18,NE,1966,1966,3102,2,1,1973.505793,1973.505793,3505,NO,29.02,40.62,3,6.02,6106,113.229385,123.086272,132.786677,139.325219,I,Above,Gable,0,5701,,34.82024227,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 22168,NJBF000060582,308 N DELAVAN AVE,Margate City,NJ,39.33623346,-74.50125539,RES1,3001,,17,NE,1950,1950,3102,1,1,3096.079174,3096.079174,3505,NO,19.58,32.27,3,5.95,6106,113.361914,123.192784,132.896181,139.453145,I,Above,Hip,0,5701,,25.92765068,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22169,NJBF000057613,12 N FRANKLIN AVE,Margate City,NJ,39.33087763,-74.49918778,RES1,3001,,18,NE,1987,1987,3102,2,1,1103.761029,1103.761029,3505,NO,32.53,43.37,3,-1.23,6106,113.482912,123.289687,132.993823,139.570995,I,Above,Gable,0,5701,,37.94726025,0,0,,,,1,1,,0.03,nav,1,1987,2,, 22170,NJBF000057712,108 S FREDERICKSBURG AVE,Margate City,NJ,39.33104135,-74.49133014,RES1,3001,,19,NE,1928,1928,3102,2,1,1204.046741,1204.046741,3505,NO,25.43,31.31,3,3.01,6106,113.653561,123.427193,133.13841,139.728722,I,Above,Gable,0,5701,,28.36798467,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22171,NJBF000062714,611 N DOUGLAS AVE,Margate City,NJ,39.34007695,-74.50525816,RES1,3001,,18,NE,1965,1965,3102,2,1,1353.041686,1353.041686,3505,NO,32.48,39.85,3,2.22,6106,113.220131,123.078757,132.779131,139.315307,I,Above,Gable,0,5701,,36.16792658,0,0,,,,1,1,,0.03,nav,1,1965,2,, 22172,NJBF000061753,500 N DOUGLAS AVE,Margate City,NJ,39.33818783,-74.50398494,RES1,3001,,18,NE,1968,1968,3102,2,1,1930.22896,1930.22896,3505,NO,32.49,39.08,3,5.75,6106,113.274376,123.122464,132.823805,139.36914,I,Above,Gable,0,5701,,35.78059357,0,0,,,,1,1,,0.03,nav,1,1968,2,, 22173,NJBF000056723,206 N OSBORNE AVE,Margate City,NJ,39.3291245,-74.5096685,RES1,3001,,21,NE,1969,2018,3101,1,1,1178.01906,1178.01906,3505,NO,20.96,29.48,3,8.27,6106,113.277591,123.124258,132.819941,139.380535,I,Above,Hip,0,5701,,25.21575874,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22174,NJBF000058361,407 N MANSFIELD AVE,Margate City,NJ,39.33216139,-74.51016025,RES1,3001,,17,NE,1956,1956,3102,1,1,1767.630516,1767.630516,3505,NO,16.97,29.46,3,-0.29,6106,113.222933,123.081095,132.777187,139.329351,I,Above,Gable,0,5701,,23.21320852,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 22175,NJBF000059164,8511 WELLINGTON AVE,Margate City,NJ,39.33368271,-74.51086689,RES1,3001,,19,NE,1987,1987,3102,2,1,1881.101539,1881.101539,3505,NO,27.87,42.47,3,-1.04,6106,113.185569,123.051372,132.747257,139.293765,I,Above,Hip,0,5701,,35.16607798,0,0,,,,1,1,,0.03,nav,1,1987,2,, 22176,NJBF000059101,8513 WELLINGTON AVE,Margate City,NJ,39.33354628,-74.51081679,RES1,3001,,20,NE,2004,2004,3102,3,1,1338.746446,1338.746446,3505,NO,40.59,50.22,3,7.84,6106,113.188627,123.053805,132.749702,139.296702,I,Above,Gable,0,5701,,45.40662181,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 22177,NJBF000060917,418 N EXETER AVE,Margate City,NJ,39.33674604,-74.50421731,RES1,3001,,19,NE,2002,2002,3102,2,1,3486.096142,3486.096142,3505,NO,23.3,37.91,3,-0.91,6106,113.289273,123.134522,132.835591,139.385621,I,Above,Hip,0,5701,,30.60557908,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 22178,NJBF000062186,502 N CLERMONT AVE,Margate City,NJ,39.33895248,-74.50307308,RES1,3001,,18,NE,1961,1961,3102,2,1,2258.070954,2258.070954,3505,NO,30.88,41.5,3,1.37,6106,113.284024,123.130084,132.832179,139.376201,I,Above,Gable,0,5701,,36.1937026,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 22179,NJBF000057274,420 N QUINCY AVE,Margate City,NJ,39.33026895,-74.51264179,RES1,3001,,17,NE,1954,1954,3101,2,1,1704.877339,1704.877339,3505,NO,25.51,36.39,3,4.33,6106,113.19563,123.058771,132.752805,139.304386,I,Above,Gable,0,5701,,30.94903309,0,0,,,,1,1,,0.03,nav,1,1954,2,, 22180,NJBF000057329,409 N QUINCY AVE,Margate City,NJ,39.33037976,-74.51219546,RES1,3001,,20,NE,2009,2009,3102,3,1,1767.666754,1767.666754,3505,NO,53.9,67.73,3,5.39,6106,113.203846,123.065393,132.759741,139.312029,I,Above,Hip,0,5701,,60.81732548,0,0,,,,1,1,,0.03,nav,1,2009,3,, 22181,NJBF000059708,8205 FULTON AVE,Margate City,NJ,39.334718,-74.5073245,RES1,3001,,17,NE,1955,1955,3101,1,1,1264.453439,1264.453439,3505,NO,16.93,31.27,3,1.21,6106,113.24907,123.102325,132.800833,139.351555,I,Above,Hip,0,5701,,24.09991615,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22182,NJBF000055494,100 N SUMNER AVE,Margate City,NJ,39.3262438,-74.51074199,RES1,3001,,17,NE,1931,1931,3102,2,1,2649.037212,2649.037212,3505,NO,45.59,50.78,3,7.2,6106,113.296172,123.138193,132.832206,139.396391,I,Above,Gable,0,5701,,48.18480952,0,1.1,,,,1,1,,0.03,nav,1,1931,2,, 22183,NJBF000055608,103 N SUMNER AVE,Margate City,NJ,39.32654844,-74.51046211,RES1,3001,,17,NE,1923,1923,3102,2,1,1083.274072,1083.274072,3505,NO,25.4,36.09,3,4.06,6106,113.297835,123.139652,132.833963,139.398167,I,Above,Hip,0,5701,,30.74306812,0,0,,,,1,1,,0.03,nav,1,1923,2,, 22184,NJBF000055712,112 N SUMNER AVE,Margate City,NJ,39.32679633,-74.51123744,RES1,3001,,17,NE,1986,1986,3102,2,1,1097.449037,1097.449037,3505,NO,39.88,48.02,3,3.44,6106,113.27721,123.123157,132.817044,139.379149,I,Above,Hip,0,5701,,43.94824909,0,0,,,,1,1,,0.03,nav,1,1986,2,, 22185,NJBF000056532,8505 WINCHESTER AVE,Margate City,NJ,39.32868719,-74.50647594,RES1,3001,,17,NE,1945,1945,3102,2,1,1253.53646,1253.53646,3505,NO,36.79,44.33,3,7.98,6106,113.354075,123.185602,132.883407,139.451542,I,Above,Flat,0,5701,,40.56116335,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 22186,NJBF000057155,107 N JEROME AVE,Margate City,NJ,39.33004503,-74.50520581,RES1,3001,,17,NE,1956,1956,3101,1,1,1337.372744,1337.372744,3507,NO,14.96,22.66,1,-0.94,6106,113.362388,123.192623,132.891757,139.459405,I,Above,Gable,0,5701,,18.80960545,0,0,,,,1,1,,0.03,nav,1,1956,1,, 22187,NJBF000057019,110 N JEROME AVE,Margate City,NJ,39.32974806,-74.50567214,RES1,3001,,17,NE,1957,1957,3102,2,1,1878.68203,1878.68203,3505,NO,26.87,38.79,3,4.44,6106,113.356415,123.187756,132.886461,139.453866,I,Above,Hip,0,5701,,32.8302932,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 22188,NJBF000057325,121 N JEROME AVE,Margate City,NJ,39.33036576,-74.50549861,RES1,3001,,17,NE,1958,1958,3102,2,1,2097.98691,2097.98691,3507,NO,36.41,51.09,1,2.35,6106,113.351327,123.183804,132.882804,139.449101,I,Above,Gable,0,5701,,43.75062069,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 22189,NJBF000058193,116 N HAVERFORD AVE,Margate City,NJ,39.3318678,-74.5034026,RES1,3001,,17,NE,1950,1950,3102,2,1,1824.446087,1824.446087,3507,NO,23.88,34.73,1,-0.62,6106,113.37599,123.203878,132.904838,139.471444,I,Above,Flat,0,5701,,29.30415166,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22190,NJBF000058222,8502 FREMONT AVE,Margate City,NJ,39.33192245,-74.50893121,RES1,3001,,17,NE,1967,1967,3101,1,1,1563.246183,1563.246183,3505,NO,14.35,27.15,3,3.1,6106,113.253434,123.105515,132.802403,139.35777,I,Above,Hip,0,5701,,20.74988658,0,0,,,,1,1,,0.03,nav,1,1967,1,, 22191,NJBF000058060,119 N HUNTINGTON AVE,Margate City,NJ,39.33164264,-74.5034839,RES1,3001,,19,NE,2009,2009,3102,3,1,1267.556975,1267.556975,3507,NO,44.39,58.5,1,1.34,6106,113.377411,123.204987,132.905833,139.472884,I,Above,Flat,0,5701,,51.44523084,0,0,,,,1,1,,0.03,nav,1,2009,3,, 22192,NJBF000055476,104 S JEROME AVE,Margate City,NJ,39.32619911,-74.50201239,RES1,3001,,20,NE,1991,1991,3102,3,1,1907.21187,1907.21187,3505,NO,39.17,53.59,3,6.1,6106,113.488174,123.292764,132.993107,139.574612,I,Above,Flat,0,5701,,46.37958407,0,1.2,,,,1,1,,0.03,nav,1,1991,3,, 22193,NJBF000058782,8 WEST DRIVE,Margate City,NJ,39.33293973,-74.49490992,RES1,3001,,18,NE,1925,1925,3102,2,1,1331.449507,1331.449507,3505,NO,38.37,52.03,3,7.75,6106,113.54801,123.342313,133.05067,139.629308,I,Above,Hip,0,5701,,45.199012,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22194,NJBF000058790,101 N ESSEX AVE,Margate City,NJ,39.33294451,-74.49903775,RES1,3001,,17,NE,1939,1939,3103,2,1,1288.024012,1288.024012,3505,NO,20.61,26.36,3,-2.08,6106,113.456939,123.269042,132.973781,139.545418,I,Above,Flat,0,5701,,23.4838322,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 22195,NJBF000059078,119 N EXETER AVE,Margate City,NJ,39.3335067,-74.5004421,RES1,3001,,17,NE,1952,1952,3101,1,1,1726.432244,1726.432244,3505,NO,23.8,37.3,3,8.21,6106,113.418054,123.237831,132.941503,139.508917,I,Above,Hip,0,5701,,30.54619182,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 22196,NJBF000059747,117 N CLARENDON AVE,Margate City,NJ,39.33478373,-74.49781615,RES1,3001,,17,NE,1950,1950,3102,2,1,1393.369089,1393.369089,3505,NO,41.45,46.55,3,4.03,6106,113.45809,123.270043,132.976161,139.543874,I,Above,Gable,0,5701,,43.99946387,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22197,NJBF000059260,112 N DELAVAN AVE,Margate City,NJ,39.33387532,-74.49891242,RES1,3001,,17,NE,1948,1948,3103,1,1,1151.365889,1151.365889,3505,NO,13.67,23.32,3,0.26,6110,113.446632,123.260813,132.965836,139.534774,I,Above,Gable,0,5701,,18.49514006,0,0,,,,1,1,,0.35,nav,1,1948,1,, 22198,NJBF000059905,120 N BRUNSWICK AVE,Margate City,NJ,39.33505436,-74.49782538,RES1,3001,,17,NE,1942,1942,3102,1,1,1744.32623,1744.32623,3505,NO,25.1,32.23,3,5.95,6106,113.454123,123.266854,132.973005,139.539756,I,Above,Hip,0,5701,,28.66382489,0,0,,,,1,1,,0.03,nav,1,1942,1,, 22199,NJBF000060033,112 N BELMONT AVE,Margate City,NJ,39.3352774,-74.49651303,RES1,3001,,17,NE,1929,1929,3102,2,1,1453.619441,1453.619441,3505,NO,32.27,37.66,3,5.11,6106,113.479983,123.287638,132.994978,139.562964,I,Above,Gable,0,5701,,34.96264935,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 22200,NJBF000060026,118 N BARCLAY AVE,Margate City,NJ,39.33526763,-74.49723976,RES1,3001,,17,NE,1930,1930,3102,2,1,1396.864718,1396.864718,3505,NO,32.96,40.74,3,7.96,6106,113.464057,123.274835,132.98153,139.548437,I,Above,Hip,0,5701,,36.8510403,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22201,NJBF000059920,108 N BELMONT AVE,Margate City,NJ,39.33508151,-74.49635054,RES1,3001,,17,NE,1948,1948,3102,1,1,1329.397428,1329.397428,3505,NO,15.77,23.29,3,0.3,6106,113.486275,123.2927,133.000155,139.569099,I,Above,Hip,0,5701,,19.53042963,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 22202,NJBF000059548,103 N BRUNSWICK AVE,Margate City,NJ,39.33444806,-74.49677413,RES1,3001,,17,NE,1925,1925,3102,2,1,1271.930204,1271.930204,3505,NO,40.51,50.33,3,6.07,6106,113.485782,123.292303,132.99928,139.569832,I,Above,Gable,0,5701,,45.42166668,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22203,NJBF000053611,11 N COOLIDGE AVE,Margate City,NJ,39.32059672,-74.51852644,RES1,3001,,20,NE,1984,1984,3102,2,1,1435.16489,1435.16489,3507,NO,34.17,44.51,1,2.97,6106,113.210887,123.06632,132.753065,139.309934,I,Above,Gable,0,5701,,39.34191427,0,0,,,,1,1,,0.03,nav,1,1984,2,, 22204,NJBF000053699,9605 VENTNOR AVE,Margate City,NJ,39.32093224,-74.51688246,RES1,3001,,21,NE,1947,1947,3102,2,1,1441.699987,1441.699987,3507,NO,26.47,40.14,1,1.27,6106,113.241512,123.091292,132.779137,139.339013,I,Above,Flat,0,5701,,33.30565088,0,0,,,,1,1,,0.03,nav,1,1947,2,, 22205,NJBF000053984,18-20 N JEFFERSON AVE,Margate City,NJ,39.3219985,-74.516749,RES1,3001,,45,NE,1925,1925,3102,2,4,1079.752077,1079.752077,3507,NO,24.22,36.58,1,2.39,6106,113.228292,123.081304,132.769771,139.328348,I,Above,Hip,0,5701,,30.40294625,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22206,NJBF000053996,18-20 N JEFFERSON AVE,Margate City,NJ,39.3220504,-74.51650669,RES1,3001,,45,NE,1925,1925,3102,2,4,1543.985927,1543.985927,3507,NO,32.23,45.16,1,2.3,6106,113.232774,123.084954,132.773586,139.3326,I,Above,Gable,0,5701,,38.69768042,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22207,NJBF000054641,29 N DECATUR AVE,Margate City,NJ,39.32394269,-74.51405679,RES1,3001,,17,NE,1946,1946,3102,1,1,1380.287929,1380.287929,3505,NO,12.32,18.48,3,-1.09,6106,113.257784,123.106209,132.797179,139.358395,I,Above,Flat,0,5701,,15.40127459,0,0,,,,1,1,,0.03,nav,1,1946,1,, 22208,NJBF000055337,3 N RUMSON AVE,Margate City,NJ,39.325818,-74.508764,RES1,3001,,17,NE,1941,1941,3102,2,1,1739.862873,1739.862873,3505,NO,39.64,45.88,3,2.33,6106,113.345759,123.177933,132.873124,139.442144,I,Above,Flat,0,5701,,42.7564159,0,1.2,,,,1,1,,0.03,nav,1,1941,2,, 22209,NJBF000055745,9 N PEMBROKE AVE,Margate City,NJ,39.32687904,-74.50794164,RES1,3001,,19,NE,1989,1989,3102,2,1,1916.308567,1916.308567,3505,NO,39.53,50.44,3,4.99,6106,113.348217,123.180315,132.876472,139.445246,I,Above,Hip,0,5701,,44.98400357,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 22210,NJBF000055988,14 N NASSAU AVE,Margate City,NJ,39.32745835,-74.50715979,RES1,3001,,17,NE,1925,1925,3102,2,1,1231.517995,1231.517995,3505,NO,35.65,48.67,3,8.29,6106,113.356917,123.187513,132.884428,139.453682,I,Above,Gable,0,5701,,42.16092167,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22211,NJBF000055950,7 N NASSAU AVE,Margate City,NJ,39.32735633,-74.50651779,RES1,3001,,18,NE,1948,1948,3102,3,1,2610.357053,2610.357053,3505,NO,50.34,64.01,3,3.97,6106,113.37249,123.200008,132.897351,139.468096,I,Above,Gable,0,5701,,57.17270209,0,1.2,,,,1,1,,0.03,nav,1,1948,3,, 22212,NJBF000056485,6 N JASPER AVE,Margate City,NJ,39.32857654,-74.50349445,RES1,3001,,17,NE,1925,1925,3102,2,1,1684.325201,1684.325201,3505,NO,26.86,36.56,3,1.87,6106,113.421182,123.239543,132.939552,139.513844,I,Above,Hip,0,5701,,31.70632946,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22213,NJBF000057785,21 N GLADSTONE AVE,Margate City,NJ,39.3311597,-74.50034764,RES1,3001,,17,NE,1953,1953,3102,2,1,1770.074764,1770.074764,3505,NO,29.62,44.47,3,2.41,6106,113.453359,123.265958,132.969201,139.543491,I,Above,Flat,0,5701,,37.04834813,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 22214,NJBF000058857,7401 VENTNOR AVE,Margate City,NJ,39.33306979,-74.49331369,RES1,3001,,19,NE,1927,1927,3102,2,1,1426.113446,1426.113446,3505,NO,35.37,42.54,3,4.93,6106,113.581362,123.369183,133.079032,139.659732,I,Above,Hip,0,5701,,38.95983175,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 22215,NJBF000059709,33 EAST DRIVE,Margate City,NJ,39.33471852,-74.49453832,RES1,3001,,21,NE,2014,2014,3102,2,1,1074.602901,1074.602901,3505,NO,41.09,51.08,3,6.41,6106,113.531343,123.328958,133.037994,139.610955,I,Above,Hip,0,5701,,46.08302704,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 22216,NJBF000058073,422 N NASSAU AVE,Margate City,NJ,39.3316575,-74.5111335,RES1,3001,,17,NE,1966,1966,3102,2,1,1317.978138,1317.978138,3505,NO,20.21,30.96,3,-2.93,6106,113.208751,123.069628,132.764964,139.316372,I,Above,Flat,0,5701,,25.58427392,0,0,,,,1,1,,0.03,nav,1,1966,2,, 22217,NJBF000059686,26 N FREDERICKSBURG AVE,Margate City,NJ,39.33468006,-74.49425444,RES1,3001,,21,NE,2014,2014,3102,2,1,1658.469456,1658.469456,3505,NO,36.22,43.5,3,3.24,6106,113.538152,123.334439,133.043729,139.617242,I,Above,Hip,0,5701,,39.85716905,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 22218,NJBF000056979,8101 VENTNOR AVE,Margate City,NJ,39.32966242,-74.50041784,RES1,3001,,17,NE,1956,1956,3101,1,1,1868.071169,1868.071169,3505,NO,11.72,24.66,3,-2.44,6106,113.473203,123.281653,132.984437,139.562266,I,Above,Hip,0,5701,,18.18930959,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 22219,NJBF000058809,9 WEST DRIVE,Margate City,NJ,39.33297368,-74.49438076,RES1,3001,,18,NE,1926,1926,3102,2,1,1639.399244,1639.399244,3505,NO,36.89,43.31,3,-0.29,6106,113.559192,123.351319,133.060165,139.639535,I,Above,Hip,0,5701,,40.10268282,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 22220,NJBF000056633,11 N JEROME AVE,Margate City,NJ,39.32892598,-74.50411974,RES1,3001,,17,NE,1962,1962,3101,1,1,1918.257416,1918.257416,3505,NO,17.38,29.81,3,-1.53,6106,113.402388,123.224516,132.924152,139.496478,I,Above,Gable,0,5701,,23.59479535,0,1.2,,,,1,1,,0.03,nav,1,1962,1,, 22221,NJBF000057848,10 N ESSEX AVE,Margate City,NJ,39.33126466,-74.49798496,RES1,3001,,17,NE,1935,1935,3102,2,1,1206.256724,1206.256724,3505,NO,30.3,43.88,3,1.7,6106,113.503901,123.306634,133.011889,139.590232,I,Above,Hip,0,5701,,37.0901559,0,0,,,,1,1,,0.03,nav,1,1935,2,, 22222,NJBF000058344,16 N DELAVAN AVE,Margate City,NJ,39.33214117,-74.49730561,RES1,3001,,17,NE,1955,1955,3102,1,1,1269.903504,1269.903504,3505,NO,10.29,19.75,3,-1.81,6106,113.506459,123.308798,133.014851,139.591934,I,Above,Flat,0,5701,,15.0217363,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22223,NJBF000058893,29 N CLERMONT AVE,Margate City,NJ,39.33312833,-74.49699031,RES1,3001,,17,NE,1954,1954,3102,2,1,1362.548327,1362.548327,3505,NO,33.83,47.9,3,8.21,6106,113.499518,123.303297,133.009839,139.584445,I,Above,Hip,0,5701,,40.866408,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 22224,NJBF000053178,24 S COOLIDGE AVE,Margate City,NJ,39.31898995,-74.51751282,RES1,3001,,20,NE,1930,1930,3102,2,1,1050.269417,1050.269417,3507,NO,37.49,51.41,1,-0.72,6106,113.257331,123.102727,132.78913,139.350336,I,Above,Hip,0,5701,,44.4496865,0,0,,,,1,1,,0.03,nav,1,1930,2,, 22225,NJBF000053346,12 S MONROE AVE,Margate City,NJ,39.3196045,-74.516822,RES1,3001,,17,NE,1954,1954,3101,1,2,908.0265604,908.0265604,3505,NO,19.44,25.27,3,0.95,6106,113.262967,123.107726,132.794876,139.356703,I,Above,Flat,0,5701,,22.35559898,0,0,,,,1,1,,0.03,nav,1,1954,1,, 22226,NJBF000053318,12 S MONROE AVE,Margate City,NJ,39.31950035,-74.51700599,RES1,3001,,17,NE,1954,1954,3101,1,2,903.3407538,903.3407538,3505,NO,22.46,30.43,3,3.64,6106,113.260557,123.105703,132.792689,139.354274,I,Above,Gable,0,5701,,26.44688309,0,0,,,,1,1,,0.03,nav,1,1954,1,, 22227,NJBF000053443,29 S MADISON AVE,Margate City,NJ,39.31996051,-74.51534116,RES1,3001,,21,NE,2003,2003,3102,3,1,1305.054401,1305.054401,3507,NO,45.56,56.45,1,0.83,6106,113.289704,123.129584,132.817801,139.382181,I,Above,Gable,0,5701,,51.00682585,0,0,,,,1,1,,0.03,nav,1,2003,3,, 22228,NJBF000053842,4 S ADAMS AVE,Margate City,NJ,39.32148249,-74.51462584,RES1,3001,,16,NE,1925,1925,3102,2,1,1067.131436,1067.131436,3507,NO,23.88,34.03,1,2.04,6106,113.282273,123.124559,132.814016,139.377803,I,Above,Gable,0,5701,,28.9562034,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22229,NJBF000053826,6 S ADAMS AVE,Margate City,NJ,39.32142165,-74.51457311,RES1,3001,,19,NE,1993,1993,3102,2,1,926.3383354,926.3383354,3507,NO,32.14,41.69,1,-0.9,6106,113.28433,123.126183,132.815642,139.379621,I,Above,Gable,0,5701,,36.91265875,0,0,,,,1,1,,0.03,nav,1,1993,2,, 22230,NJBF000054473,16 S THURLOW AVE,Margate City,NJ,39.32348171,-74.508952,RES1,3001,,20,NE,1986,1986,3103,3,1,1501.66868,1501.66868,3505,NO,44.95,52.17,3,6.04,6106,113.376137,123.20137,132.895455,139.467793,I,Above,Hip,0,5701,,48.55946724,0,0,,,,1,1,,0.03,nav,1,1986,3,, 22231,NJBF000054252,16 S VENDOME AVE,Margate City,NJ,39.32285905,-74.51025677,RES1,3001,,19,NE,1950,1950,3102,2,1,1661.641307,1661.641307,3505,NO,28.69,39.95,3,6.61,6106,113.356892,123.185542,132.878454,139.449109,I,Above,Hip,0,5701,,34.3221658,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22232,NJBF000054231,9207-9215 VENTNOR AVE,Margate City,NJ,39.3228084,-74.51368373,COM3,3003,,NaN,ME,1956,1956,3401,1,1,16968.01562,16968.01562,3507,NO,21.83,33.31,1,2.93,6106,113.282884,123.12583,132.816513,139.380307,I,Above,Flat,0,NaN,,27.57069806,0,0,,,,1,1,,0.03,nav,1,1956,1,, 22233,NJBF000054251,5 N WASHINGTON AVE,Margate City,NJ,39.32285296,-74.51406776,COM3,3003,,NaN,ME,1930,1930,3401,2,1,2443.458288,2443.458288,3507,NO,34.54,39.66,1,-0.57,6106,113.273838,123.118559,132.809027,139.371954,I,Above,Flat,0,NaN,,37.09787591,0,0,,,,1,1,,0.03,nav,1,1930,2,, 22234,NJBF000055648,10 S LANCASTER AVE,Margate City,NJ,39.32665356,-74.50458303,RES1,3001,,17,NE,1946,1946,3102,2,1,1626.822191,1626.822191,3505,NO,37.75,51.36,3,-1.06,6106,113.425165,123.24217,132.940696,139.516552,I,Above,Hip,0,5701,,44.55877996,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 22235,NJBF000055963,11 S JEROME AVE,Margate City,NJ,39.3273935,-74.502506,RES1,3001,,17,NE,1962,1962,3102,1,1,1760.01698,1760.01698,3505,NO,13.96,21.83,3,-2.57,6106,113.460004,123.270455,132.970843,139.549367,I,Above,Hip,0,5701,,17.89329384,0,0,,,,1,1,,0.03,nav,1,1962,1,, 22236,NJBF000054514,114 S PEMBROKE AVE,Margate City,NJ,39.3236048,-74.5053779,RES1,3001,,19,NE,1930,1930,3103,3,1,1971.315223,1971.315223,3505,NO,57.06,67.62,3,4.93,6106,113.452448,123.262952,132.959644,139.538622,I,Above,Hip,0,5701,,62.33623115,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 22237,NJBF000057869,3 N ESSEX AVE,Margate City,NJ,39.33129301,-74.49752116,RES1,3001,,17,NE,1948,1948,3102,2,1,732.8522109,732.8522109,3505,NO,29.19,43.73,3,1.85,6106,113.513721,123.314541,133.020203,139.599302,I,Above,Flat,0,5701,,36.45639829,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22238,NJBF000055034,111 S MANSFIELD AVE,Margate City,NJ,39.32495154,-74.50343423,RES1,3001,,20,NE,1968,1968,3102,2,1,2083.936925,2083.936925,3505,NO,41.09,49.33,3,7.56,6106,113.475204,123.28186,132.980599,139.561346,I,Above,Flat,0,5701,,45.20963555,0,0,,,,1,1,,0.03,nav,1,1968,2,, 22239,NJBF000056166,15 S HANOVER AVE,Margate City,NJ,39.32786744,-74.50068812,RES1,3001,,20,NE,1983,1983,3102,2,1,2012.300403,2012.300403,3505,NO,26.6,40.76,3,3.41,6106,113.493069,123.297216,132.999218,139.580291,I,Above,Flat,0,5701,,33.68153616,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 22240,NJBF000060993,403 N DELAVAN AVE,Margate City,NJ,39.33686661,-74.50136072,RES1,3001,,17,NE,1952,1952,3102,2,1,1231.293983,1231.293983,3505,NO,37.12,51.59,3,6.37,6106,113.350753,123.183795,132.887166,139.441695,I,Above,Gable,0,5701,,44.35353913,0,0,,,,1,1,,0.03,nav,1,1952,2,, 22241,NJBF000059918,224 N DOUGLAS AVE,Margate City,NJ,39.33508001,-74.50080516,RES1,3001,,18,NE,2000,2000,3102,2,1,1135.477748,1135.477748,3505,NO,28.72,37.56,3,4.65,6106,113.387954,123.213707,132.917333,139.479032,I,Above,Hip,0,5701,,33.14190524,0,0,,,,1,1,,0.03,nav,1,2000,2,, 22242,NJBF000055716,102 S IROQUOIS AVE,Margate City,NJ,39.32679966,-74.5010701,RES1,3001,,20,NE,1961,1961,3102,2,1,2295.743771,2295.743771,3505,NO,40.42,52.04,3,3.27,6106,113.500113,123.302577,133.003896,139.586165,I,Above,Flat,0,5701,,46.22985101,0,0,,,,1,1,,0.03,nav,1,1961,2,, 22243,NJBF000057794,19 S BRUNSWICK AVE,Margate City,NJ,39.33118016,-74.49389692,RES1,3001,,19,NE,1945,1945,3102,2,1,1025.777793,1025.777793,3505,NO,38.6,49.38,3,0.65,6106,113.595107,123.380075,133.088934,139.674631,I,Above,Hip,0,5701,,43.98562619,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 22244,NJBF000056327,9 S HANOVER AVE,Margate City,NJ,39.32821949,-74.50096784,RES1,3001,,18,NE,1930,1930,3102,2,1,1166.143724,1166.143724,3505,NO,27.83,38.93,3,0.26,6106,113.481843,123.28827,132.990162,139.570027,I,Above,Hip,0,5701,,33.37844137,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22245,NJBF000056405,11 S HUNTINGTON AVE,Margate City,NJ,39.32839929,-74.50039662,RES1,3001,,18,NE,1927,1927,3102,2,1,1455.255243,1455.255243,3505,NO,33.72,47.53,3,2.02,6106,113.491796,123.29633,132.998744,139.579325,I,Above,Gable,0,5701,,40.62646828,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 22246,NJBF000056644,8 S GRANVILLE AVE,Margate City,NJ,39.32894784,-74.49982637,RES1,3001,,17,NE,1950,1950,3102,1,1,1064.243777,1064.243777,3505,NO,17.22,23.72,3,1.22,6106,113.496455,123.300213,133.003271,139.583786,I,Above,Hip,0,5701,,20.4700648,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22247,NJBF000056357,12 S HUNTINGTON AVE,Margate City,NJ,39.32829929,-74.50076812,RES1,3001,,19,NE,1950,1950,3102,2,1,1629.978738,1629.978738,3505,NO,35.69,41.27,3,7.88,6106,113.485084,123.2909,132.992981,139.573064,I,Above,Gable,0,5701,,38.48231929,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22248,NJBF000057089,21 N HANOVER AVE,Margate City,NJ,39.32990067,-74.50264133,RES1,3001,,17,NE,1925,1925,3102,2,1,983.0007196,983.0007196,3505,NO,44.99,53.45,3,7.5,6106,113.42088,123.239613,132.940679,139.51371,I,Above,Hip,0,5701,,49.22262812,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22249,NJBF000057115,100 S CLERMONT AVE,Margate City,NJ,39.32995765,-74.49484161,RES1,3001,,20,NE,1929,1929,3102,3,1,1531.612163,1531.612163,3505,NO,52.76,59.96,3,-0.47,6106,113.591627,123.377082,133.084743,139.672009,I,Above,Flat,0,5701,,56.35903327,0,0,,,,1,1,,0.03,nav,1,1929,3,, 22250,NJBF000057133,7950 VENTNOR AVE,Margate City,NJ,39.32999136,-74.49865328,COM1,3001,,NaN,ME,1953,1953,3401,2,1,4172.978396,4172.978396,3507,NO,37.37,43.15,1,-0.53,6106,113.507324,123.309181,133.013528,139.593878,I,Above,Flat,0,NaN,,40.25970837,0,0,,,,1,1,,0.03,nav,1,1953,2,, 22251,NJBF000057562,7800 VENTNOR AVE,Margate City,NJ,39.33078586,-74.49693546,COM1,3001,,NaN,ME,1940,1940,3401,1,1,3627.162864,3627.162864,3507,NO,18.31,28.21,1,1.24,6106,113.533814,123.330644,133.036684,139.618177,I,Above,Flat,0,NaN,,23.26257586,0,0,,,,1,1,,0.03,nav,1,1940,1,, 22252,NJBF000057159,15-A S ESSEX AVE,Margate City,NJ,39.33005387,-74.49674349,COM1,3001,,NaN,ME,1969,0,3401,2,1,4122.330754,4122.330754,3507,NO,32.24,44.94,1,2.22,6106,113.548445,123.342305,133.04831,139.63198,I,Above,Flat,0,NaN,,38.58611187,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22253,NJBF000053634,9615 VENTNOR AVE,Margate City,NJ,39.32070138,-74.51736656,RES3C,3001,,NaN,ME,1990,1990,3301,3,1,2204.910518,2204.910518,3505,NO,31.05,43.26,3,-1.43,6106,113.234475,123.085453,132.772898,139.332083,I,Above,Flat,0,NaN,,37.15549535,0,0,,,,1,1,,0.03,nav,1,1990,3,, 22254,NJBF000054070,9504 WINCHESTER AVE,Margate City,NJ,39.32229043,-74.51690396,RES3C,3001,,30,ME,2002,2002,3301,2,2,2016.271608,2016.271608,3505,NO,23.83,31.66,3,-0.5,6106,113.220516,123.07521,132.763732,139.321524,I,Above,Gable,0,NaN,,27.74896269,0,0,,,,1,1,,0.03,nav,1,2002,2,, 22255,NJBF000054918,116 S LANCASTER AVE,Margate City,NJ,39.32464585,-74.50297745,RES1,3001,,22,NE,2014,2014,3102,2,1,1315.059884,1315.059884,3505,NO,22.21,29,3,0.17,6106,113.489693,123.293419,132.992383,139.574394,I,Above,Hip,0,5701,,25.6065872,0,0,,,,1,1,,0.03,nav,1,2014,2,, 22256,NJBF000053998,130 N COOLIDGE AVE,Margate City,NJ,39.32205433,-74.52044345,RES1,3001,,19,NE,2008,2008,3102,3,1,1490.576798,1490.576798,3507,NO,58.81,70.15,1,1.46,6106,113.147129,123.015813,132.702295,139.252692,I,Above,Flat,0,5701,,64.47967235,0,0,,,,1,1,,0.03,nav,1,2008,3,, 22257,NJBF000062304,600 N DOUGLAS AVE,Margate City,NJ,39.33918593,-74.50495511,RES1,3001,,18,NE,1975,1975,3102,2,1,2357.40497,2357.40497,3505,NO,37.81,48.84,3,5.29,6106,113.239105,123.094094,132.794704,139.334723,I,Above,Gable,0,5701,,43.32765432,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 22258,NJBF000057228,1 N GLADSTONE AVE,Margate City,NJ,39.33018455,-74.49966412,RES1,3001,,17,NE,1925,1925,3102,2,1,1191.13384,1191.13384,3505,NO,23.95,37.31,3,1.01,6106,113.482312,123.289086,132.992639,139.570655,I,Above,Gable,0,5701,,30.63262019,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22259,NJBF000060355,307 N DOUGLAS AVE,Margate City,NJ,39.33583026,-74.50116828,RES1,3001,,17,NE,1962,1962,3102,2,1,1712.012942,1712.012942,3505,NO,31.02,37.16,3,6.52,6106,113.369454,123.198849,132.902272,139.46079,I,Above,Hip,0,5701,,34.08979675,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22260,NJBF000061578,27 BAYSIDE COURT,Margate City,NJ,39.33789482,-74.51121088,RES1,3001,,19,NE,1988,1988,3102,2,1,1963.641375,1963.641375,3505,NO,37.65,43.13,3,1.95,6106,113.118456,122.997794,132.693834,139.22668,I,Above,Hip,0,5701,,40.39229888,0,0,,,,1,1,,0.03,nav,1,1988,2,, 22261,NJBF000059926,51 SEASIDE COURT,Margate City,NJ,39.33508731,-74.50909791,RES1,3001,,19,NE,2002,2002,3101,3,1,1461.457742,1461.457742,3505,NO,49.74,63.61,3,7.51,6106,113.204675,123.066784,132.764071,139.310118,I,Above,Gable,0,5701,,56.6770358,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 22262,NJBF000061209,418 N GLADSTONE AVE,Margate City,NJ,39.33723662,-74.50640354,RES1,3001,,18,NE,2004,2004,3101,1,1,3526.12983,3526.12983,3505,NO,18.76,32.83,3,3,6106,113.234044,123.090266,132.789698,139.334061,I,Above,Hip,0,5701,,25.79721993,0,0,,,,1,1,,0.03,nav,1,2004,1,, 22263,NJBF000060468,17 W GILMAR CIRCLE,Margate City,NJ,39.3360232,-74.50642719,RES1,3001,,17,NE,1965,1965,3101,1,1,1845.146741,1845.146741,3505,NO,16.98,31.24,3,6.42,6106,113.250516,123.103503,132.802821,139.35118,I,Above,Hip,0,5701,,24.11001054,0,0,,,,1,1,,0.03,nav,1,1965,1,, 22264,NJBF000060783,30 W GILMAR CIRCLE,Margate City,NJ,39.33654206,-74.50768771,RES1,3001,,17,NE,1965,1965,3101,1,1,1566.861883,1566.861883,3505,NO,15.62,27.27,3,0.12,6106,113.215356,123.075343,132.773779,139.318026,I,Above,Hip,0,5701,,21.44473186,0,0,,,,1,1,,0.03,nav,1,1965,1,, 22265,NJBF000060469,20 W GILMAR CIRCLE,Margate City,NJ,39.3360273,-74.50706971,RES1,3001,,17,NE,1965,1965,3101,1,1,1436.920928,1436.920928,3505,NO,17.93,26.58,3,-1.14,6110,113.236245,123.092076,132.790918,139.338032,I,Above,Gable,0,5701,,22.25615623,0,0,,,,1,1,,0.35,nav,1,1965,1,, 22266,NJBF000060759,408 N ESSEX AVE,Margate City,NJ,39.33650371,-74.50322938,RES1,3001,,17,NE,1952,1952,3102,2,1,2196.753463,2196.753463,3505,NO,27.22,37.46,3,4.77,6106,113.314496,123.154748,132.856573,139.409191,I,Above,Gable,0,5701,,32.34139977,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 22267,NJBF000058354,215 N IROQUOIS AVE,Margate City,NJ,39.33215142,-74.5055622,RES1,3001,,17,NE,1950,1950,3102,2,1,1282.943454,1282.943454,3505,NO,31.37,43.44,3,-0.88,6106,113.324384,123.162481,132.861851,139.423462,I,Above,Hip,0,5701,,37.40876391,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22268,NJBF000056424,312 N UNION AVE,Margate City,NJ,39.32843551,-74.51463679,RES1,3001,,17,NE,1949,1949,3102,2,1,1975.759529,1975.759529,3505,NO,34.41,44.68,3,-2.16,6106,113.178592,123.044501,132.736788,139.288151,I,Above,Hip,0,5701,,39.54266018,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 22269,NJBF000061203,216 N FREDERICKSBURG AVE,Margate City,NJ,39.33723092,-74.4966391,RES1,3001,,17,NE,1962,1962,3103,2,1,1691.32733,1691.32733,3505,NO,41.16,50.94,3,8.68,6106,113.450125,123.263529,132.970993,139.531291,I,Above,Hip,0,5701,,46.05034285,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22270,NJBF000056507,122 N OSBORNE AVE,Margate City,NJ,39.3286311,-74.50925813,RES1,3001,,21,NE,1969,2018,3102,2,1,1794.998287,1794.998287,3505,NO,38.56,53.28,3,6.92,6106,113.293785,123.137124,132.832943,139.395476,I,Above,Gable,0,5701,,45.91780918,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22271,NJBF000056745,14 N IROQUOIS AVE,Margate City,NJ,39.329157,-74.5032205,RES1,3001,,20,NE,2011,2011,3102,3,1,1086.327883,1086.327883,3505,NO,45.61,57.76,3,0.92,6106,113.418841,123.237806,132.938204,139.511792,I,Above,Gable,0,5701,,51.68571728,0,0,,,,1,1,,0.03,nav,1,2011,3,, 22272,NJBF000053536,8-10 N COOLIDGE AVE,Margate City,NJ,39.3202988,-74.51879479,RES1,3001,,30,NE,1932,1932,3102,2,4,2172.366813,2172.366813,3507,NO,38.96,52.43,1,1.34,6106,113.209583,123.065055,132.751491,139.308217,I,Above,Flat,0,5701,,45.69743978,0,0,,,,1,1,,0.03,nav,1,1932,2,, 22273,NJBF000057077,12 N HAVERFORD AVE,Margate City,NJ,39.32986813,-74.50143507,RES1,3001,,17,NE,1940,1940,3102,2,1,1520.494055,1520.494055,3505,NO,39.38,48.28,3,5.05,6106,113.447882,123.261324,132.96334,139.538766,I,Above,Gable,0,5701,,43.83013605,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 22274,NJBF000055710,6 N OSBORNE AVE,Margate City,NJ,39.32679385,-74.50746372,RES1,3001,,18,NE,1983,1983,3102,2,1,1828.374643,1828.374643,3505,NO,34.34,40.65,3,0.49,6106,113.359941,123.189718,132.886184,139.456084,I,Above,Gable,0,5701,,37.49464667,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 22275,NJBF000056839,2 N HAVERFORD AVE,Margate City,NJ,39.32936372,-74.50093575,RES1,3001,,18,NE,1925,1925,3102,3,1,1312.403975,1312.403975,3505,NO,35.92,42.33,3,0.32,6106,113.466082,123.27586,132.978134,139.555656,I,Above,Gable,0,5701,,39.12420616,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 22276,NJBF000054653,8 N HARDING AVE,Margate City,NJ,39.32396394,-74.5128737,RES1,3001,,18,NE,1956,1956,3102,2,1,1549.15851,1549.15851,3505,NO,32.77,43.5,3,7.93,6106,113.2833,123.126782,132.818496,139.382165,I,Above,Gable,0,5701,,38.13706171,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 22277,NJBF000054002,29 S BENSON AVE,Margate City,NJ,39.3220655,-74.5114915,RES1,3001,,19,NE,1950,1950,3102,2,1,1581.904427,1581.904427,3505,NO,31.07,45.22,3,2.09,6106,113.341784,123.172928,132.864646,139.43395,I,Above,Gable,0,5701,,38.1445584,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22278,NJBF000056853,,Margate City,NJ,39.3294035,-74.4978165,RES1,3001,,NaN,NE,1928,0,3102,2,1,1563.410881,1563.410881,3505,NO,29.85,42.27,3,7.27,6106,113.534131,123.33065,133.035537,139.618773,I,Above,Flat,0,5701,,36.06157749,0,0,,,,1,1,,0.03,nav,1,1928,2,, 22279,NJBF000054925,9311 MONMOUTH AVE,Margate City,NJ,39.32466497,-74.51684048,RES3B,3001,,21,ME,2000,2000,3301,1,1,1262.323558,1262.323558,3502,NO,22.56,33.66,5,3.25,6106,113.186258,123.048961,132.738595,139.292536,I,Above,Hip,0,5701,,28.11191785,0,0,,,,1,1,,0.03,nav,1,2000,1,, 22280,NJBF000056083,108 S GLADSTONE AVE,Margate City,NJ,39.32768231,-74.49811595,RES1,3001,,19,NE,1930,1930,3102,2,1,2913.996247,2913.996247,3505,NO,35.9,43.9,3,5.02,6106,113.55222,123.344818,133.048891,139.635035,I,Above,Hip,0,5701,,39.89964726,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 22281,NJBF000055454,203 N HARDING AVE,Margate City,NJ,39.32614174,-74.51447092,RES1,3001,,47,NE,1950,1950,3102,2,2,823.1555143,823.1555143,3505,NO,34.58,46.87,3,-2.84,6106,113.21605,123.073677,132.765287,139.321699,I,Above,Flat,0,5701,,40.72605203,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22282,NJBF000058844,30 N CLERMONT AVE,Margate City,NJ,39.33304635,-74.49736934,RES1,3001,,17,NE,1937,1937,3102,2,1,1093.843665,1093.843665,3505,NO,35.76,47.69,3,-2.57,6106,113.492315,123.297497,133.003691,139.577914,I,Above,Hip,0,5701,,41.72901739,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 22283,NJBF000057319,103 N IROQUOIS AVE,Margate City,NJ,39.33035697,-74.5038589,RES1,3001,,21,NE,1945,2018,3102,3,1,860.9580539,860.9580539,3507,NO,60.86,68.27,1,2.42,6106,113.387543,123.212905,132.913145,139.482719,I,Above,Gable,0,5701,,64.56508612,0,1.1,,,,1,1,,0.03,nav,1,1945,3,, 22284,NJBF000061124,,Margate City,NJ,39.33710129,-74.50903118,RES1,3001,,NaN,NE,1969,0,3102,2,1,905.6361345,905.6361345,3505,NO,28.58,33.97,3,-1.37,6106,113.177817,123.045289,132.7428,139.282599,I,Above,Hip,0,5701,,31.27643972,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22285,NJBF000061614,15 BAYSIDE COURT,Margate City,NJ,39.33794379,-74.51026407,RES1,3001,,19,NE,1989,1989,3102,2,1,1754.345501,1754.345501,3505,NO,35.7,47.1,3,2.57,6106,113.138738,123.013996,132.710684,139.245258,I,Above,Hip,0,5701,,41.39780038,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 22286,NJBF000061551,13 BAYSIDE COURT,Margate City,NJ,39.33784576,-74.51015404,RES1,3001,,19,NE,1989,1989,3102,2,1,1813.571123,1813.571123,3505,NO,26.13,39.1,3,0.55,6106,113.142542,123.017044,132.713804,139.248923,I,Above,Gable,0,5701,,32.61458634,0,0,,,,1,1,,0.03,nav,1,1989,2,, 22287,NJBF000057198,8607 AMHERST AVE,Margate City,NJ,39.330134,-74.5099265,RES1,3001,,19,NE,1990,1990,3102,3,1,1711.218826,1711.218826,3505,NO,39.35,52.59,3,-0.32,6106,113.257275,123.108216,132.804001,139.361733,I,Above,Gable,0,5701,,45.96805239,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 22288,NJBF000059633,321 N HUNTINGTON AVE,Margate City,NJ,39.33458452,-74.50607712,RES1,3001,,17,NE,1953,1953,3101,1,1,2527.261326,2527.261326,3505,NO,20.69,25.9,3,4.99,6110,113.278485,123.125891,132.8253,139.378873,I,Above,Hip,0,5701,,23.29574637,0,1.1,,,,1,1,,0.35,nav,1,1953,1,, 22289,NJBF000060385,218 N CLARENDON AVE,Margate City,NJ,39.33588768,-74.4993237,RES1,3001,,17,NE,1950,1950,3103,1,1,1080.930018,1080.930018,3505,NO,14.71,24.16,3,3.97,6106,113.409392,123.230903,132.935878,139.497255,I,Above,Hip,0,5701,,19.43853991,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22290,NJBF000055140,109 N HARDING AVE,Margate City,NJ,39.32525462,-74.51364039,RES1,3001,,47,NE,1948,1948,3102,2,2,881.5757056,881.5757056,3505,NO,34.23,45.22,3,5.71,6106,113.247372,123.098477,132.790253,139.350103,I,Above,Hip,0,5701,,39.72443915,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22291,NJBF000062475,509 N CLERMONT AVE,Margate City,NJ,39.33954876,-74.50314599,RES1,3001,,18,NE,1962,1962,3102,2,1,1296.25025,1296.25025,3505,NO,24.94,39.54,3,-0.12,6106,113.274196,123.122114,132.82416,139.365793,I,Above,Gable,0,5701,,32.24282046,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 22292,NJBF000061348,411 N DELAVAN AVE,Margate City,NJ,39.33748257,-74.5019087,RES1,3001,,17,NE,1952,1952,3102,1,1,1868.705333,1868.705333,3505,NO,16.9,22.73,3,-0.85,6106,113.330086,123.167173,132.870142,139.421529,I,Above,Gable,0,5701,,19.81371817,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 22293,NJBF000058234,21 N ESSEX AVE,Margate City,NJ,39.3319385,-74.498109,RES1,3001,,21,NE,2017,2017,3102,2,1,1035.190916,1035.190916,3505,NO,33.94,40.13,3,-2.81,6106,113.491636,123.29685,133.002162,139.578416,I,Above,Hip,0,5701,,37.03612648,0,0,,,,1,1,,0.03,nav,1,2017,2,, 22294,NJBF000053121,9705 ATLANTIC AVE,Margate City,NJ,39.31876524,-74.51613319,RES1,3001,,17,NE,1927,1927,3102,2,1,941.988362,941.988362,3507,NO,34.72,43.02,1,2.56,6106,113.290682,123.129544,132.816608,139.380894,I,Above,Flat,0,5701,,38.8671726,0,0,,,,1,1,,0.03,nav,1,1927,2,, 22295,NJBF000054403,115 N JEFFERSON AVE,Margate City,NJ,39.32329347,-74.51711304,RES1,3001,,45,NE,1959,1959,3102,2,2,1577.299724,1577.299724,3507,NO,29.73,39.08,1,0.79,6106,113.200868,123.059964,132.748843,139.304561,I,Above,Gable,0,5701,,34.4050028,0,0,,,,1,1,,0.03,nav,1,1959,2,, 22296,NJBF000060273,8097 FULTON AVE,Margate City,NJ,39.33569433,-74.50566678,RES1,3001,,17,NE,1959,1959,3101,2,1,2593.049668,2593.049668,3505,NO,35.63,41.39,3,-0.19,6106,113.271931,123.120661,132.820515,139.371383,I,Above,Gable,0,5701,,38.51047438,0,0,,,,1,1,,0.03,nav,1,1959,2,, 22297,NJBF000055230,112 S KNIGHT AVE,Margate City,NJ,39.32551874,-74.50222086,RES1,3001,,20,NE,1980,1980,3102,2,1,2542.676867,2542.676867,3505,NO,28.68,34.13,3,6.1,6106,113.493496,123.296815,132.996727,139.57889,I,Above,Hip,0,5701,,31.40832369,0,0,,,,1,1,,0.03,nav,1,1980,2,, 22298,NJBF000055099,13 N VENDOME AVE,Margate City,NJ,39.325125,-74.5118315,RES1,3001,,NaN,NE,1930,0,3102,2,1,1429.14895,1429.14895,3505,NO,25.23,31.77,3,-0.17,6106,113.288856,123.13182,132.824687,139.388593,I,Above,Flat,0,5701,,28.50218158,0,0,,,,1,1,,0.03,nav,1,1930,2,, 22299,NJBF000059897,123 N CLARENDON AVE,Margate City,NJ,39.3350438,-74.49807438,RES1,3001,,17,NE,1940,1940,3102,1,1,1684.314825,1684.314825,3505,NO,16.87,28.62,3,5.03,6110,113.448765,123.262548,132.968482,139.534869,I,Above,Gable,0,5701,,22.74021151,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 22300,NJBF000056230,15 N MANSFIELD AVE,Margate City,NJ,39.32800901,-74.50625956,RES1,3001,,18,NE,1930,1930,3102,2,1,1350.647012,1350.647012,3505,NO,36.36,50.59,3,7.31,6106,113.368655,123.197129,132.894878,139.464856,I,Above,Hip,0,5701,,43.47391241,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 22301,NJBF000059218,225 N GLADSTONE AVE,Margate City,NJ,39.33379138,-74.5028744,RES1,3001,,17,NE,1959,1959,3101,1,1,3022.938408,3022.938408,3505,NO,19.82,34.66,3,2.76,6106,113.360393,123.191546,132.893298,139.455393,I,Above,Hip,0,5701,,27.24120992,0,1.2,,,,1,1,,0.03,nav,1,1959,1,, 22302,NJBF000063120,8007 BAYSHORE DR,Margate City,NJ,39.34092756,-74.51008891,RES1,3001,,22,NE,2014,2014,3102,1,1,3252.069505,3252.069505,3505,NO,17.55,27.64,3,-1.3,6106,113.101271,122.983643,132.680414,139.204897,I,Above,Hip,0,5701,,22.59334429,0,0,,,,1,1,,0.03,nav,1,2014,1,, 22303,NJBF000062055,2 EXETER CT,Margate City,NJ,39.33871831,-74.50611242,RES1,3001,,18,NE,1971,1971,3102,2,1,1354.507458,1354.507458,3505,NO,31.3,42.2,3,0.53,6106,113.219936,123.078828,132.778542,139.318253,I,Above,Gable,0,5701,,36.75126606,0,0,,,,1,1,,0.03,nav,1,1971,2,, 22304,NJBF000054485,5 N BENSON AVE,Margate City,NJ,39.32351002,-74.51290633,RES1,3001,,18,NE,1971,1971,3102,2,1,764.5663077,764.5663077,3505,NO,33.66,48.35,3,-0.22,6106,113.289367,123.131437,132.82293,139.387255,I,Above,Gable,0,5701,,41.00566827,0,0,,,,1,1,,0.03,nav,1,1971,2,, 22305,NJBF000060204,33 SEASIDE COURT,Margate City,NJ,39.33558111,-74.50958689,RES1,3001,,19,NE,1989,1989,3101,2,1,1594.733172,1594.733172,3505,NO,25.9,31.68,3,0.97,6106,113.186892,123.052566,132.749566,139.293106,I,Above,Gable,0,5701,,28.78920385,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 22306,NJBF000055292,8702 VENTNOR AVE,Margate City,NJ,39.3256959,-74.50676417,RES1,3001,,20,NE,2007,2007,3103,3,1,3141.705201,3141.705201,3505,NO,42.94,48.9,3,5.55,6106,113.391359,123.214601,132.911157,139.484384,I,Above,Hip,0,5701,,45.92149065,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 22307,NJBF000054283,,Margate City,NJ,39.32295913,-74.51867083,RES1,3001,,NaN,NE,1972,0,3102,2,1,1250.810597,1250.810597,3507,NO,23.21,36.94,1,0.8,6106,113.171968,123.036452,132.724311,139.277158,I,Above,Flat,0,5701,,30.07260227,0,0,,,,1,1,,0.03,nav,1,1972,2,, 22308,NJBF000060140,304 N DOUGLAS AVE,Margate City,NJ,39.33547102,-74.50142789,RES1,3001,,17,NE,1962,1962,3102,2,1,2806.338453,2806.338453,3505,NO,33.76,47.02,3,8.64,6106,113.368723,123.198271,132.901436,139.460736,I,Above,Gable,0,5701,,40.38888964,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 22309,NJBF000055321,8700 VENTNOR AVE,Margate City,NJ,39.3257703,-74.50653761,RES1,3001,,20,NE,1938,1938,3103,3,1,3102.452485,3102.452485,3505,NO,35.22,44.27,3,-0.54,6106,113.395225,123.217743,132.914492,139.48804,I,Above,Hip,0,5701,,39.74210396,0,1.2,,,,1,1,,0.03,nav,1,1938,3,, 22310,NJBF000059291,316 N HUNTINGTON AVE,Margate City,NJ,39.33395096,-74.50606955,RES1,3001,,18,NE,1952,1952,3101,2,1,1585.758342,1585.758342,3505,NO,25.61,40.12,3,-1.4,6106,113.287602,123.133164,132.832484,139.387983,I,Above,Hip,0,5701,,32.86631466,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 22311,NJBF000063133,7906 BAYSHORE DR,Margate City,NJ,39.34096058,-74.50837071,RES1,3001,,18,NE,1972,1972,3102,2,1,2634.109828,2634.109828,3505,NO,31.82,37.77,3,-1.34,6106,113.138947,123.013703,132.711703,139.239193,I,Above,Gable,0,5701,,34.79243426,0,0,,,,1,1,,0.03,nav,1,1972,2,, 22312,NJBF000054488,202 N MADISON AVE,Margate City,NJ,39.32351764,-74.51917675,RES1,3001,,17,NE,1959,1959,3102,2,3,1214.998508,1214.998508,3507,NO,29.75,36.1,1,1.12,6106,113.152525,123.021113,132.708958,139.259718,I,Above,Flat,0,5701,,32.92873718,0,0,,,,1,1,,0.03,nav,1,1959,2,, 22313,NJBF000059924,214 N CLERMONT AVE,Margate City,NJ,39.33508332,-74.49933462,RES1,3001,,17,NE,1950,1950,3103,2,1,1300.557796,1300.557796,3505,NO,28.16,35.37,3,5.14,6106,113.420376,123.239741,132.944598,139.508784,I,Above,Gable,0,5701,,31.76452591,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22314,NJBF000060071,401 N HUNTINGTON AVE,Margate City,NJ,39.33534873,-74.50683285,RES1,3001,,17,NE,1963,1963,3101,2,1,1327.125452,1327.125452,3505,NO,37.67,49.47,3,1.31,6110,113.251015,123.103903,132.802849,139.352581,I,Above,Gable,0,5701,,43.57398338,0,0,,,,1,1,,0.35,nav,1,1963,2,, 22315,NJBF000059802,220 N DOUGLAS AVE,Margate City,NJ,39.33487688,-74.50063939,RES1,3001,,17,NE,1929,1929,3102,2,1,1437.919486,1437.919486,3505,NO,31.36,36.44,3,2.62,6106,113.394462,123.218931,132.922665,139.48533,I,Above,Gable,0,5701,,33.90014245,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 22316,NJBF000061318,8104 MARSHALL AVE,Margate City,NJ,39.3374371,-74.50723327,RES1,3001,,17,NE,1974,1974,3101,1,1,1994.783264,1994.783264,3505,NO,22.45,28.73,3,8.96,6106,113.21291,123.07334,132.772168,139.314301,I,Above,Flat,0,5701,,25.58933289,0,0,,,,1,1,,0.03,nav,1,1974,1,, 22317,NJBF000059853,222 N DOUGLAS AVE,Margate City,NJ,39.3349686,-74.50071525,RES1,3001,,17,NE,1962,1962,3102,2,1,1853.609655,1853.609655,3505,NO,28.93,42.92,3,5.25,6106,113.391495,123.21655,132.920235,139.482461,I,Above,Gable,0,5701,,35.92531144,0,0,,,,1,1,,0.03,nav,1,1962,2,, 22318,NJBF000057072,102 N JASPER AVE,Margate City,NJ,39.32985967,-74.50471376,RES1,3001,,17,NE,1950,1950,3102,2,1,1534.757926,1534.757926,3507,NO,33.26,38.64,1,0.18,6106,113.375872,123.203419,132.902873,139.471933,I,Above,Hip,0,5701,,35.95048602,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22319,NJBF000054437,18 S THURLOW AVE,Margate City,NJ,39.32339596,-74.50886285,RES1,3001,,19,NE,1930,1930,3102,2,1,1209.232818,1209.232818,3505,NO,35.14,40.51,3,3.82,6106,113.379357,123.203924,132.898031,139.470666,I,Above,Gable,0,5701,,37.82460401,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 22320,NJBF000058859,28 N CLARENDON AVE,Margate City,NJ,39.33307017,-74.49663251,RES1,3001,,17,NE,1942,1942,3102,2,1,799.1220548,799.1220548,3505,NO,36.73,48.74,3,0.07,6106,113.508204,123.310282,133.017125,139.592515,I,Above,Gable,0,5701,,42.73577292,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 22321,NJBF000053575,9701-9707 VENTNOR AVE,Margate City,NJ,39.3204572,-74.51773042,COM3,3003,,NaN,ME,1951,1951,3401,3,1,5191.699329,5191.699329,3507,NO,45.44,59.12,1,1.03,6106,113.230295,123.081908,132.769018,139.327784,I,Above,Flat,0,NaN,,52.28312997,0,0,,,,1,1,,0.03,nav,1,1951,3,, 22322,NJBF000053497,9700 VENTNOR AVE,Margate City,NJ,39.32016483,-74.51730985,COM3,3003,,NaN,ME,1947,0,3401,2,1,4480.081652,4480.081652,3507,NO,36.76,50.78,1,-0.2,6106,113.243849,123.092661,132.779847,139.339906,I,Above,Hip,0,NaN,,43.77025551,0,0,,,,1,1,,0.03,nav,1,1947,2,, 22323,NJBF000060490,703 N JEROME AVE,Margate City,NJ,39.33606009,-74.51092523,RES1,3001,,17,NE,1955,1955,3102,2,1,2092.118863,2092.118863,3505,NO,35.52,42.99,3,-2.74,6106,113.150561,123.023507,132.719636,139.258956,I,Above,Gable,0,5701,,39.25539831,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 22324,NJBF000056840,12 N HANOVER AVE,Margate City,NJ,39.32936622,-74.50260723,RES1,3001,,18,NE,1920,1920,3102,2,1,1744.819939,1744.819939,3505,NO,29.31,40.09,3,2.86,6106,113.429311,123.246276,132.947216,139.521533,I,Above,Hip,0,5701,,34.69868516,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22325,NJBF000058629,12 N CLARENDON AVE,Margate City,NJ,39.33264378,-74.4962522,RES1,3001,,19,NE,2011,2011,3102,3,1,1135.105313,1135.105313,3505,NO,64.37,69.44,3,7.84,6106,113.522594,123.32183,133.02892,139.606293,I,Above,Gable,0,5701,,66.90099949,0,0,,,,1,1,,0.03,nav,1,2011,3,, 22326,NJBF000058577,10 N CLARENDON AVE,Margate City,NJ,39.33254522,-74.49617646,RES1,3001,,20,NE,1950,1950,3102,3,1,1482.216957,1482.216957,3505,NO,36.72,42.68,3,1.23,6106,113.525662,123.324291,133.031427,139.609235,I,Above,Gable,0,5701,,39.7018226,0,0,,,,1,1,,0.03,nav,1,1950,3,, 22327,NJBF000060032,202 N CLARENDON AVE,Margate City,NJ,39.335276,-74.49878117,RES1,3001,,17,NE,1955,1955,3103,2,1,1025.984082,1025.984082,3505,NO,21.39,27.32,3,-2.72,6106,113.429915,123.247401,132.952759,139.517187,I,Above,Gable,0,5701,,24.35739676,0,0,,,,1,1,,0.03,nav,1,1955,2,, 22328,NJBF000059625,207 N DOUGLAS AVE,Margate City,NJ,39.33457005,-74.49982504,RES1,3001,,17,NE,1950,1950,3103,2,1,1632.612734,1632.612734,3505,NO,35.67,44.61,3,3.85,6106,113.416735,123.236813,132.94118,139.506271,I,Above,Flat,0,5701,,40.14162574,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22329,NJBF000059604,7701 MONMOUTH AVE,Margate City,NJ,39.33453357,-74.49882554,RES1,3001,,17,NE,1955,1955,3103,1,1,1523.730068,1523.730068,3505,NO,14.21,29.06,3,3.36,6110,113.439291,123.254933,132.960141,139.527047,I,Above,Hip,0,5701,,21.63787517,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 22330,NJBF000053440,9708-9710 VENTNOR AVE,Margate City,NJ,39.319953,-74.5176585,COM7,3001,,NaN,ME,1969,0,3401,2,1,1844.992959,1844.992959,3505,NO,31.15,40.95,3,3.2,6106,113.239518,123.089012,132.775884,139.335507,I,Above,Flat,0,NaN,,36.04906049,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22331,NJBF000058330,115 N GRANVILLE AVE,Margate City,NJ,39.33210255,-74.50225355,RES1,3001,,47,NE,1927,1927,3102,2,2,1584.723088,1584.723088,3505,NO,43.84,53.71,3,8.78,6106,113.397965,123.221562,132.92348,139.491647,I,Above,Flat,0,5701,,48.77658695,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 22332,NJBF000056646,7913 ATLANTIC AVE,Margate City,NJ,39.3289583,-74.49792603,RES1,3001,,NaN,NE,1915,1915,3102,2,1,2151.750309,2151.750309,3505,NO,32.59,43.96,3,6.43,6106,113.538077,123.333734,133.038391,139.622391,I,Above,Flat,0,5701,,38.27503071,0,0,,,,1,1,,0.03,nav,1,1915,2,, 22333,NJBF000056852,105 S DOUGLAS AVE,Margate City,NJ,39.3294032,-74.49534388,RES1,3001,,21,NE,2004,2004,3102,3,1,1623.161523,1623.161523,3505,NO,54.21,63.95,3,7.01,6106,113.588485,123.374445,133.081491,139.66916,I,Above,Hip,0,5701,,59.07784446,0,0,,,,1,1,,0.03,nav,1,2004,3,, 22334,NJBF000060630,707 N JEROME AVE,Margate City,NJ,39.33629551,-74.51115832,RES1,3001,,17,NE,1980,1980,3102,2,1,1661.265604,1661.265604,3505,NO,27.09,41.25,3,-0.05,6106,113.142082,123.016728,132.712719,139.250822,I,Above,Hip,0,5701,,34.16923071,0,0,,,,1,1,,0.03,nav,1,1980,2,, 22335,NJBF000060170,10 SEASIDE COURT,Margate City,NJ,39.3355167,-74.50861522,RES1,3001,,19,NE,1989,1989,3101,2,1,1639.492449,1639.492449,3505,NO,31.97,41.48,3,-0.99,6106,113.209274,123.070479,132.768155,139.31385,I,Above,Hip,0,5701,,36.72781787,0,0,,,,1,1,,0.03,nav,1,1989,2,, 22336,NJBF000059638,7508 WINCHESTER AVE,Margate City,NJ,39.33459523,-74.49567364,RES1,3001,,19,NE,1927,1927,3102,2,1,968.7671387,968.7671387,3505,NO,34.27,44.8,3,-1.69,6106,113.508004,123.310178,133.018161,139.589899,I,Above,Hip,0,5701,,39.53509245,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 22337,NJBF000059448,200 N DELAVAN AVE,Margate City,NJ,39.33426454,-74.49927586,RES1,3001,,20,NE,2003,2003,3103,2,1,1338.265198,1338.265198,3505,NO,41.78,49.15,3,5.63,6106,113.433128,123.249975,132.954756,139.521796,I,Above,Hip,0,5701,,45.46654131,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 22338,NJBF000059690,207 N DELAVAN AVE,Margate City,NJ,39.334691,-74.499251,RES1,3001,,17,NE,1950,1950,3103,1,1,1097.261348,1097.261348,3505,NO,10.79,24.56,3,-1.74,6106,113.427712,123.245632,132.950503,139.516165,I,Above,Gable,0,5701,,17.67406719,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22339,NJBF000053837,9503 VENTNOR AVE,Margate City,NJ,39.3214605,-74.5159355,COM7,3001,,NaN,ME,1969,0,3401,1,1,2291.478164,2291.478164,3505,NO,16.28,26.61,3,3.14,6106,113.254106,123.101805,132.790472,139.351573,I,Above,Flat,0,NaN,,21.44664909,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22340,NJBF000053666,21 N COOLIDGE AVE,Margate City,NJ,39.32081505,-74.51873912,RES1,3001,,17,NE,1954,1954,3102,1,1,1091.29957,1091.29957,3507,NO,14.81,26.13,1,1.62,6106,113.20295,123.060057,132.746803,139.302893,I,Above,Flat,0,5701,,20.47442315,0,0,,,,1,1,,0.03,nav,1,1954,1,, 22341,NJBF000058173,109 N GRANVILLE AVE,Margate City,NJ,39.33183374,-74.50200214,RES1,3001,,47,NE,1927,1927,3102,2,2,1622.633876,1622.633876,3505,NO,40.32,48.66,3,4.53,6106,113.407341,123.229061,132.93112,139.500502,I,Above,Gable,0,5701,,44.48913582,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 22342,NJBF000058203,106 N GLADSTONE AVE,Margate City,NJ,39.33189142,-74.50167493,RES1,3001,,17,NE,1951,1951,3102,2,1,1527.603523,1527.603523,3505,NO,33.12,43.12,3,8.76,6106,113.413735,123.234207,132.936542,139.506387,I,Above,Gable,0,5701,,38.11733429,0,0,,,,1,1,,0.03,nav,1,1951,2,, 22343,NJBF000056663,5 N IROQUOIS AVE,Margate City,NJ,39.32899779,-74.50256495,RES1,3001,,21,NE,2014,2014,3102,3,1,871.794232,871.794232,3505,NO,43.79,52.17,3,7.11,6106,113.435528,123.251191,132.952055,139.527259,I,Above,Hip,0,5701,,47.98308054,0,0,,,,1,1,,0.03,nav,1,2014,3,, 22344,NJBF000057094,220 N NASSAU AVE,Margate City,NJ,39.32991076,-74.5095101,RES1,3001,,19,NE,1990,1990,3102,3,1,1324.91692,1324.91692,3505,NO,46.97,56.58,3,-1.21,6106,113.269671,123.118112,132.814123,139.373258,I,Above,Gable,0,5701,,51.77446059,0,0,,,,1,1,,0.03,nav,1,1990,3,, 22345,NJBF000059283,13 CIRCLE DRIVE,Margate City,NJ,39.3339355,-74.4950965,RES1,3001,,18,NE,1925,1925,3102,2,1,1735.030876,1735.030876,3505,NO,29.26,34.74,3,-0.78,6106,113.529935,123.327812,133.0362,139.611163,I,Above,Hip,0,5701,,31.9994142,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22346,NJBF000061127,21 N GILMAR CIRCLE,Margate City,NJ,39.33711057,-74.50721549,RES1,3001,,17,NE,1968,1968,3101,1,1,1652.492809,1652.492809,3505,NO,15.53,25.49,3,0.19,6106,113.217858,123.07732,132.776142,139.31941,I,Above,Gable,0,5701,,20.50542913,0,0,,,,1,1,,0.03,nav,1,1968,1,, 22347,NJBF000061329,420 N ESSEX AVE,Margate City,NJ,39.33745172,-74.5041203,RES1,3001,,17,NE,1952,1952,3102,2,1,1725.716815,1725.716815,3505,NO,29.5,35.13,3,7.39,6106,113.281593,123.12832,132.829516,139.377256,I,Above,Hip,0,5701,,32.31499421,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 22348,NJBF000059438,201 N DOUGLAS AVE,Margate City,NJ,39.33424047,-74.49955367,RES1,3001,,17,NE,1950,1950,3103,1,1,901.300967,901.300967,3505,NO,22.79,34.83,3,5.2,6106,113.427343,123.245327,132.949869,139.516513,I,Above,Hip,0,5701,,28.8089147,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22349,NJBF000053901,9612 WINCHESTER AVE,Margate City,NJ,39.32170934,-74.51792071,RES1,3001,,17,NE,1950,1950,3102,2,1,1231.869249,1231.869249,3507,NO,24.3,35.68,1,-0.17,6106,113.207167,123.064065,132.751725,139.308228,I,Above,Hip,0,5701,,29.99007177,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22350,NJBF000059549,205 N DOUGLAS AVE,Margate City,NJ,39.33444922,-74.49974688,RES1,3001,,17,NE,1950,1950,3103,2,1,1188.999136,1188.999136,3505,NO,25.97,37.66,3,1.75,6106,113.420152,123.239556,132.943969,139.509594,I,Above,Flat,0,5701,,31.81813466,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22351,NJBF000061129,8110 MARSHALL AVE,Margate City,NJ,39.33711294,-74.50775467,RES1,3001,,17,NE,1973,1973,3101,1,1,2085.791118,2085.791118,3505,NO,17.01,29.99,3,-2.15,6106,113.205882,123.067738,132.766165,139.308397,I,Above,Hip,0,5701,,23.50194295,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 22352,NJBF000053733,,Margate City,NJ,39.32108036,-74.51895615,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4087.323472,4087.323472,3505,NO,22.9,29.61,3,-0.7,6106,113.194213,123.05318,132.739948,139.295171,I,Above,Gable,0,NaN,,26.25176068,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22353,NJBF000059259,28 WEST DRIVE,Margate City,NJ,39.33387068,-74.49561371,RES1,3001,,18,NE,1925,1925,3102,2,1,1606.939749,1606.939749,3505,NO,37.56,51.4,3,7.02,6106,113.519441,123.319365,133.027273,139.601659,I,Above,Gable,0,5701,,44.48160282,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22354,NJBF000058591,220 N HUNTINGTON AVE,Margate City,NJ,39.33257778,-74.5048687,RES1,3001,,17,NE,1972,1972,3101,1,1,1460.062038,1460.062038,3505,NO,22.54,34.09,3,5.37,6106,113.333577,123.169914,132.869895,139.431702,I,Above,Hip,0,5701,,28.31409968,0,0,,,,1,1,,0.03,nav,1,1972,1,, 22355,NJBF000053668,10 N MONROE AVE,Margate City,NJ,39.32082023,-74.51798663,RES1,3001,,18,NE,1988,1988,3102,2,1,1066.713112,1066.713112,3507,NO,28.03,42.01,1,0.03,6106,113.219204,123.073194,132.760356,139.318052,I,Above,Flat,0,5701,,35.021535,0,0,,,,1,1,,0.03,nav,1,1988,2,, 22356,NJBF000059750,214 N DELAVAN AVE,Margate City,NJ,39.33479333,-74.49981392,RES1,3001,,17,NE,1950,1950,3103,1,1,1204.866888,1204.866888,3505,NO,25.35,34.99,3,8.6,6106,113.413854,123.234502,132.938913,139.503278,I,Above,Hip,0,5701,,30.16647762,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22357,NJBF000056113,,Margate City,NJ,39.32775567,-74.51525652,RES1,3001,,NaN,NE,1969,0,3102,2,1,828.9545228,828.9545228,3505,NO,31.57,41.8,3,2.36,6106,113.175002,123.041355,132.733056,139.284495,I,Above,Flat,0,5701,,36.68684001,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22358,NJBF000053595,20 N COOLIDGE AVE,Margate City,NJ,39.32054062,-74.51904804,RES1,3001,,19,NE,1928,1928,3102,2,1,1326.47511,1326.47511,3507,NO,24.81,30.33,1,0.87,6106,113.20041,123.057811,132.744242,139.300072,I,Above,Hip,0,5701,,27.57098729,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22359,NJBF000057125,22 S DOUGLAS AVE,Margate City,NJ,39.32998025,-74.4962885,COM1,3001,739,NaN,ME,1954,1954,3401,3,1,1814.854676,1814.854676,3507,NO,50.53,61.79,1,2.99,6106,113.559486,123.351185,133.057567,139.642226,I,Above,Hip,0,NaN,,56.15864789,0,1.1,,,,1,1,,0.03,nav,1,1954,3,, 22360,NJBF000057144,20 S DOUGLAS AVE,Margate City,NJ,39.33002606,-74.49636235,COM1,3001,,21,ME,2017,2017,3401,3,1,1160.171784,1160.171784,3507,NO,47.44,59.58,1,2.3,6106,113.557225,123.349373,133.055703,139.640122,I,Above,Hip,0,NaN,,53.50999181,0,0,,,,1,1,,0.03,nav,1,2017,3,, 22361,NJBF000053385,3 S COOLIDGE AVE,Margate City,NJ,39.31973183,-74.51773001,RES1,3001,,20,NE,2005,2005,3102,2,1,2145.180477,2145.180477,3507,NO,30.36,36.6,1,0.59,6106,113.241319,123.090312,132.777019,139.336794,I,Above,Flat,0,5701,,33.48155376,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 22362,NJBF000053413,,Margate City,NJ,39.31983934,-74.51635415,RES3D,3001,,NaN,ME,1969,0,3301,1,1,11705.12295,11705.12295,3505,NO,13.51,24.68,3,2.33,6106,113.269555,123.113215,132.800768,139.363246,I,Above,Flat,0,NaN,,19.09097422,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22363,NJBF000053465,9801 VENTNOR AVE,Margate City,NJ,39.32004009,-74.51848535,RES1,3001,,20,NE,1982,1982,3102,2,1,1502.818031,1502.818031,3507,NO,32.22,46.23,1,0.5,6106,113.220251,123.073496,132.759958,139.317715,I,Above,Hip,0,5701,,39.22586765,0,0,,,,1,1,,0.03,nav,1,1982,2,, 22364,NJBF000059497,208 N DOUGLAS AVE,Margate City,NJ,39.33435498,-74.50012447,RES1,3001,,17,NE,1950,1950,3102,2,1,1299.582794,1299.582794,3505,NO,26.37,36.31,3,3.82,6106,113.413149,123.233928,132.938011,139.503292,I,Above,Hip,0,5701,,31.34385226,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22365,NJBF000056980,7811 ATLANTIC AVE,Margate City,NJ,39.32966348,-74.49646134,COM1,3001,,19,ME,1973,1973,3401,3,1,3554.62548,3554.62548,3507,NO,32.59,45.56,1,-0.51,6106,113.560218,123.351716,133.057854,139.642949,I,Above,Hip,0,NaN,,39.07579898,0,0,,,,1,1,,0.03,nav,1,1973,3,, 22366,NJBF000058114,20 N ESSEX AVE,Margate City,NJ,39.33173671,-74.4983702,RES1,3001,,21,NE,2014,2014,3102,3,1,1302.166884,1302.166884,3505,NO,45.53,53.49,3,0.33,6106,113.488732,123.294489,132.999531,139.575886,I,Above,Flat,0,5701,,49.51082282,0,0,,,,1,1,,0.03,nav,1,2014,3,, 22367,NJBF000054502,3 S VENDOME AVE,Margate City,NJ,39.32356312,-74.51032869,RES1,3001,,20,NE,1946,1946,3102,2,1,1652.653334,1652.653334,3505,NO,40.89,46.34,3,2.69,6106,113.34485,123.176188,132.869376,139.438871,I,Above,Gable,0,5701,,43.61835747,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 22368,NJBF000062566,604 N DELAVAN AVE,Margate City,NJ,39.3397312,-74.50462398,RES1,3001,,18,NE,1969,1969,3102,2,1,1695.321138,1695.321138,3505,NO,23.28,34.12,3,-1.65,6106,113.238939,123.093866,132.794738,139.333276,I,Above,Gable,0,5701,,28.70012437,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 22369,NJBF000055975,300 N VENDOME AVE,Margate City,NJ,39.32742686,-74.51459283,RES1,3001,,18,NE,1930,1930,3102,2,1,1810.700162,1810.700162,3505,NO,38.5,45.52,3,1.04,6106,113.194397,123.056812,132.748803,139.302399,I,Above,Gable,0,5701,,42.01315548,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 22370,NJBF000063007,614 N CLERMONT AVE,Margate City,NJ,39.34069251,-74.50475242,RES1,3001,,18,NE,1962,1962,3102,2,1,1847.438147,1847.438147,3505,NO,32.15,39.65,3,8.21,6106,113.222912,123.080848,132.781604,139.316257,I,Above,Gable,0,5701,,35.90202812,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22371,NJBF000057632,1 S DOUGLAS AVE,Margate City,NJ,39.33091341,-74.49657465,RES3C,3001,,21,E,2004,2004,3303,3,1,6130.333116,6130.333116,3507,NO,52.29,65.23,1,2.6,6106,113.539937,123.335593,133.041981,139.623781,I,Above,Hip,0,NaN,,58.75828788,0,0,,,,1,1,,0.03,nav,1,2004,3,, 22372,NJBF000057746,1 S DOUGLAS AVE,Margate City,NJ,39.33109198,-74.49641635,RES3C,3001,,21,E,2004,2004,3303,3,1,1420.995347,1420.995347,3507,NO,33.72,47.19,1,-0.16,6106,113.540899,123.336394,133.042968,139.624571,I,Above,Hip,0,NaN,,40.45425129,0,0,,,,1,1,,0.03,nav,1,2004,3,, 22373,NJBF000058091,19 S ARGYLE AVE,Margate City,NJ,39.33169548,-74.49281752,RES1,3001,,21,NE,2014,2014,3102,3,1,1606.268521,1606.268521,3505,NO,44.56,55.04,3,2.13,6106,113.611597,123.39343,133.103419,139.689378,I,Above,Flat,0,5701,,49.79742561,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 22374,NJBF000053689,28-30 N COOLIDGE AVE,Margate City,NJ,39.32088603,-74.51936029,RES1,3001,,45,NE,1962,1962,3102,2,4,2161.992837,2161.992837,3507,NO,25.46,40.07,1,1.12,6106,113.18839,123.04834,132.734789,139.289426,I,Above,Gable,0,5701,,32.76512911,0,0,,,,1,1,,0.03,nav,1,1962,2,, 22375,NJBF000060198,219 N CLERMONT AVE,Margate City,NJ,39.33556937,-74.49930306,RES1,3001,,17,NE,1958,1958,3103,2,1,1163.592323,1163.592323,3505,NO,32.37,39.45,3,2.81,6106,113.4143,123.234854,132.939806,139.502351,I,Above,Gable,0,5701,,35.91079672,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 22376,NJBF000053905,9415 VENTNOR AVE,Margate City,NJ,39.32172253,-74.51550167,COM3,3003,,NaN,ME,1969,0,3401,2,1,7502.288019,7502.288019,3507,NO,36.52,49.03,1,2.41,6106,113.259576,123.106385,132.79544,139.357065,I,Above,Flat,0,NaN,,42.77273188,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22377,NJBF000062453,7808 BURK AVE,Margate City,NJ,39.339496,-74.50629881,RES1,3001,,18,NE,1970,1970,3102,2,1,1724.425047,1724.425047,3505,NO,35.65,45.05,3,7.74,6106,113.205046,123.066802,132.766382,139.302939,I,Above,Hip,0,5701,,40.35165826,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 22378,NJBF000061611,426 N DOUGLAS AVE,Margate City,NJ,39.33794003,-74.50371609,RES1,3001,,18,NE,1968,1968,3102,2,1,1882.848833,1882.848833,3505,NO,37.49,46.23,3,5.97,6106,113.283765,123.130011,132.831554,139.378247,I,Above,Gable,0,5701,,41.86071953,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 22379,NJBF000063123,7700 BAYSHORE DR,Margate City,NJ,39.34092986,-74.50498954,RES1,3001,,18,NE,1962,1962,3102,2,1,1568.606736,1568.606736,3505,NO,46.01,53.04,3,7.03,6106,113.214393,123.073982,132.774543,139.307894,I,Above,Gable,0,5701,,49.52117217,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22380,NJBF000054673,,Margate City,NJ,39.32403747,-74.51969585,RES3B,3001,,NaN,ME,1969,0,3301,1,1,3399.284788,3399.284788,3505,NO,19.11,29.19,3,0.63,6106,113.133406,123.00601,132.693811,139.242477,I,Above,Flat,0,5701,,24.1501705,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22381,NJBF000053943,7 N JEFFERSON AVE,Margate City,NJ,39.32187408,-74.51585722,RES1,3001,,17,NE,1949,1949,3102,2,1,1079.38479,1079.38479,3507,NO,29.69,35.09,1,0.75,6106,113.249574,123.098405,132.787327,139.347983,I,Above,Gable,0,5701,,32.3925453,0,0,,,,1,1,,0.03,nav,1,1949,2,, 22382,NJBF000054608,9610 AMHERST AVE,Margate City,NJ,39.32385996,-74.52008167,RES3B,3001,,39,ME,2000,2000,3301,3,1,2255.599581,2255.599581,3505,NO,43.8,57.69,3,6.92,6106,113.127665,123.001274,132.688795,139.236901,I,Above,Hip,0,5701,,50.74153539,0,0,,,,1,1,,0.03,nav,1,2000,3,, 22383,NJBF000062873,607 N CLERMONT AVE,Margate City,NJ,39.34040198,-74.50393969,RES1,3001,,18,NE,1963,1963,3102,2,1,1809.342803,1809.342803,3505,NO,41.54,50.87,3,8.8,6106,113.244902,123.0985,132.799906,139.336985,I,Above,Gable,0,5701,,46.20537114,0,0,,,,1,1,,0.03,nav,1,1963,2,, 22384,NJBF000061069,406 N DELAVAN AVE,Margate City,NJ,39.33700839,-74.50196643,RES1,3001,,17,NE,1952,1952,3102,2,1,1314.881653,1314.881653,3505,NO,26.16,37.75,3,-1.99,6106,113.335414,123.171485,132.874372,139.427386,I,Above,Hip,0,5701,,31.95477706,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 22385,NJBF000054347,20A N WASHINGTON AVE,Margate City,NJ,39.32312337,-74.51492155,RES3C,3004,,39,ME,1984,1984,3301,3,1,1094.607767,1094.607767,3505,NO,52.72,65.86,3,3.9,6106,113.251173,123.100433,132.79051,139.351221,I,Above,Flat,0,5701,,59.2856875,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 22386,NJBF000058450,5 S ARGYLE AVE,Margate City,NJ,39.33234044,-74.49336337,RES1,3001,,19,NE,1920,1920,3102,2,1,1298.186647,1298.186647,3505,NO,32.56,46.85,3,3.88,6106,113.590523,123.376509,133.086149,139.669208,I,Above,Hip,0,5701,,39.70643695,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22387,NJBF000053808,8 S ADAMS AVE,Margate City,NJ,39.321361,-74.514534,RES1,3001,,17,NE,1987,1987,3102,2,3,753.355415,753.355415,3507,NO,31.79,44.31,1,0.07,6106,113.286098,123.127573,132.817023,139.381169,I,Above,Gable,0,5701,,38.05289927,0,0,,,,1,1,,0.03,nav,1,1987,2,, 22388,NJBF000053766,10 S ADAMS AVE,Margate City,NJ,39.321187,-74.5146765,RES1,3001,,20,NE,1910,1910,3102,2,1,1008.868613,1008.868613,3507,NO,36.19,43.91,1,0.75,6106,113.28563,123.127087,132.816362,139.380458,I,Above,Gable,0,5701,,40.04915386,0,0,,,,1,1,,0.03,nav,1,1910,2,, 22389,NJBF000053798,10 S ADAMS AVE,Margate City,NJ,39.32131342,-74.5144625,RES1,3001,,20,NE,1910,1910,3102,2,1,884.413012,884.413012,3507,NO,35.11,43.06,1,1.85,6106,113.288388,123.129392,132.818862,139.383221,I,Above,Hip,0,5701,,39.08829417,0,0,,,,1,1,,0.03,nav,1,1910,2,, 22390,NJBF000062753,603 N CLERMONT AVE,Margate City,NJ,39.34014235,-74.50366413,RES1,3001,,18,NE,1962,1962,3102,2,1,2134.000583,2134.000583,3505,NO,30.07,39.46,3,8.95,6106,113.254581,123.1063,132.80793,139.346454,I,Above,Gable,0,5701,,34.76686538,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22391,NJBF000054573,,Margate City,NJ,39.32376425,-74.52025113,RES3B,3001,,NaN,ME,1969,0,3301,1,1,2245.153941,2245.153941,3505,NO,22.28,35.15,3,7.43,6106,113.125433,122.999415,132.686806,139.234698,I,Above,Hip,0,5701,,28.71725311,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22392,NJBF000061298,418 N DOUGLAS AVE,Margate City,NJ,39.33739694,-74.50321771,RES1,3001,,18,NE,1956,1956,3102,2,1,2448.47715,2448.47715,3505,NO,28.66,37.06,3,1.02,6110,113.302316,123.144925,132.846831,139.39633,I,Above,Gable,0,5701,,32.85755486,0,1.1,,,,1,1,,0.35,nav,1,1956,2,, 22393,NJBF000061781,422 N DELAVAN AVE,Margate City,NJ,39.33824647,-74.50313276,RES1,3001,,17,NE,1952,1952,3102,1,1,1836.581046,1836.581046,3505,NO,12.97,25.94,3,-2.15,6106,113.292437,123.13692,132.838943,139.385501,I,Above,Flat,0,5701,,19.45445619,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 22394,NJBF000059762,209 N DELAVAN AVE,Margate City,NJ,39.33480718,-74.49933038,RES1,3001,,17,NE,1962,1962,3103,2,1,1674.118041,1674.118041,3505,NO,31.64,43.65,3,0.27,6106,113.424345,123.242928,132.94775,139.512887,I,Above,Hip,0,5701,,37.64858004,0,0,,,,1,1,,0.03,nav,1,1962,2,, 22395,NJBF000061447,421 N ESSEX AVE,Margate City,NJ,39.33765066,-74.50377495,RES1,3001,,17,NE,1952,1952,3102,2,1,1705.483866,1705.483866,3505,NO,24.52,30.92,3,2.15,6106,113.286465,123.132204,132.833684,139.381316,I,Above,Hip,0,5701,,27.72293435,0,0,,,,1,1,,0.03,nav,1,1952,2,, 22396,NJBF000053875,9402 VENTNOR AVE,Margate City,NJ,39.3216045,-74.5148795,COM3,3003,,NaN,ME,1925,1925,3401,2,1,1229.351303,1229.351303,3507,NO,23.79,30.53,1,-0.52,6106,113.274907,123.118688,132.808054,139.371143,I,Above,Flat,0,NaN,,27.15923293,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22397,NJBF000062639,610 N DOUGLAS AVE,Margate City,NJ,39.33989805,-74.50560242,RES1,3001,,18,NE,1966,1966,3102,2,1,1642.179183,1642.179183,3505,NO,41.66,50.03,3,8.91,6106,113.214963,123.07466,132.77477,139.311039,I,Above,Gable,0,5701,,45.84589471,0,0,,,,1,1,,0.03,nav,1,1966,2,, 22398,NJBF000054969,114 S LANCASTER AVE,Margate City,NJ,39.32477866,-74.50307777,RES1,3001,,18,NE,1977,1977,3102,2,1,2253.465883,2253.465883,3505,NO,42.43,55.75,3,5.63,6106,113.485534,123.290118,132.98906,139.570705,I,Above,Gable,0,5701,,49.08895996,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 22399,NJBF000056501,317 N UNION AVE,Margate City,NJ,39.32861163,-74.51423949,RES1,3001,,18,NE,1951,1951,3102,2,1,858.1506782,858.1506782,3505,NO,24.08,31.74,3,-2.89,6106,113.18474,123.049504,132.742085,139.293946,I,Above,Gable,0,5701,,27.90872872,0,0,,,,1,1,,0.03,nav,1,1951,2,, 22400,NJBF000055793,9102 FREMONT AVE,Margate City,NJ,39.32698972,-74.51604316,RES1,3001,,45,NE,1950,1950,3102,2,2,854.9243805,854.9243805,3505,NO,25.54,32.46,3,-1.83,6106,113.1691,123.036287,132.727269,139.278536,I,Above,Gable,0,5701,,28.99913178,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22401,NJBF000056598,309 N THURLOW AVE,Margate City,NJ,39.32883527,-74.51358149,RES1,3001,,17,NE,1945,1945,3102,1,1,1234.535568,1234.535568,3505,NO,17.96,24.22,3,2.41,6106,113.19591,123.058555,132.751607,139.304428,I,Above,Flat,0,5701,,21.08773562,0,0,,,,1,1,,0.03,nav,1,1945,1,, 22402,NJBF000061869,501 N DOUGLAS AVE,Margate City,NJ,39.33839771,-74.50364349,RES1,3001,,18,NE,1969,1969,3102,2,1,1813.825426,1813.825426,3505,NO,31.66,40.5,3,-0.37,6106,113.279044,123.126175,132.827796,139.372943,I,Above,Hip,0,5701,,36.07991632,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22403,NJBF000056261,,Margate City,NJ,39.32808536,-74.51557784,RES1,3001,,NaN,NE,1969,0,3102,2,1,813.3450834,813.3450834,3505,NO,32.35,45.49,3,3.02,6106,113.163123,123.031939,132.723555,139.273578,I,Above,Gable,0,5701,,38.91833843,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22404,NJBF000056724,112 S DELAVAN AVE,Margate City,NJ,39.32912603,-74.4949022,RES1,3001,,21,NE,2007,2007,3102,3,1,2593.244858,2593.244858,3505,NO,37.36,44.42,3,3.65,6106,113.602151,123.385406,133.092761,139.681813,I,Above,Flat,0,5701,,40.88917674,0,0,,,,1,1,,0.03,nav,1,2007,3,, 22405,NJBF000057276,6 N GLADSTONE AVE,Margate City,NJ,39.33027285,-74.50020272,RES1,3001,,17,NE,1954,1954,3101,1,1,1641.47307,1641.47307,3505,NO,19.98,34.25,3,4.14,6106,113.469195,123.278548,132.98168,139.558475,I,Above,Hip,0,5701,,27.1159615,0,0,,,,1,1,,0.03,nav,1,1954,1,, 22406,NJBF000058964,207 N GLADSTONE AVE,Margate City,NJ,39.33327077,-74.5023483,RES1,3001,,17,NE,1961,1961,3101,1,1,3203.954458,3203.954458,3505,NO,16.77,30.12,3,-1.14,6106,113.379342,123.206722,132.9088,139.473441,I,Above,Flat,0,5701,,23.44172944,0,1.1,,,,1,1,,0.03,nav,1,1961,1,, 22407,NJBF000056691,,Margate City,NJ,39.32905539,-74.51599918,RES1,3001,,NaN,NE,1912,0,3102,2,1,1829.563416,1829.563416,3505,NO,41.11,48.91,3,3.17,6106,113.139635,123.013438,132.705099,139.252039,I,Above,Gable,0,5701,,45.00668359,0,0,,,,1,1,,0.03,nav,1,1912,2,, 22408,NJBF000056030,13 S JASPER AVE,Margate City,NJ,39.32755984,-74.50190368,RES1,3001,,21,NE,1969,2018,3101,1,1,1245.313522,1245.313522,3505,NO,16.97,30.96,3,0.13,6106,113.470802,123.279199,132.98012,139.559479,I,Above,Flat,0,5701,,23.96849621,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22409,NJBF000060461,203 N BARCLAY AVE,Margate City,NJ,39.3360158,-74.49756309,RES1,3001,,18,NE,1950,1950,3103,2,1,1795.245301,1795.245301,3505,NO,30.23,43.29,3,-2.19,6106,113.44652,123.260719,132.967231,139.530896,I,Above,Flat,0,5701,,36.76275036,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22410,NJBF000062872,8103 BAYSHORE DR,Margate City,NJ,39.34039923,-74.51091278,RES1,3001,,22,NE,1990,1990,3102,2,1,2693.19845,2693.19845,3505,NO,36.25,49.07,3,4.26,6106,113.090272,122.974974,132.671199,139.19603,I,Above,Hip,0,5701,,42.65642982,0,0,,,,1,1,,0.03,nav,1,1990,2,, 22411,NJBF000055178,7 S PEMBROKE AVE,Margate City,NJ,39.32537068,-74.50650687,RES1,3001,,21,NE,2012,2012,3103,3,1,1518.677336,1518.677336,3505,NO,44.79,59.63,3,-1.97,6106,113.401756,123.222847,132.919461,139.493724,I,Above,Hip,0,5701,,52.20767831,0,0,,,,1,1,,0.03,nav,1,2012,3,, 22412,NJBF000059932,203 N CLERMONT AVE,Margate City,NJ,39.33509816,-74.49888029,RES1,3001,,17,NE,1955,1955,3103,1,1,1105.188985,1105.188985,3505,NO,14.13,27.44,3,3.1,6106,113.430214,123.247643,132.95289,139.517778,I,Above,Flat,0,5701,,20.78617212,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22413,NJBF000053620,9401-11 PACIFIC AVE,Margate City,NJ,39.32063744,-74.51419681,RES3D,3001,,21,ME,1957,1957,3301,2,1,7203.459278,7203.459278,3505,NO,28.04,35.72,3,-2.09,6106,113.304347,123.141856,132.831133,139.396941,I,Above,Hip,0,NaN,,31.88153332,0,0,,,,1,1,,0.03,nav,1,1957,2,, 22414,NJBF000056910,,Margate City,NJ,39.32951818,-74.50653838,RES1,3001,,NaN,NE,2009,0,3102,2,1,600.7546151,600.7546151,3505,NO,33.75,42.19,3,4.76,6106,113.340692,123.175065,132.873068,139.43925,I,Above,Gable,0,5701,,37.97042905,0,0,,,,1,1,,0.03,nav,1,2009,2,, 22415,NJBF000056855,,Margate City,NJ,39.32941191,-74.5066355,RES1,3001,,NaN,NE,1969,0,3101,1,1,1079.217274,1079.217274,3505,NO,14.84,28.58,3,2.35,6106,113.340069,123.174537,132.87244,139.438662,I,Above,Gable,0,5701,,21.70812684,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22416,NJBF000058283,20 S FREDERICKSBURG AVE,Margate City,NJ,39.33203321,-74.4921036,RES1,3001,,19,NE,1930,1930,3102,2,1,1843.078905,1843.078905,3505,NO,34.33,47.86,3,6.28,6106,113.622564,123.402308,133.11305,139.699074,I,Above,Flat,0,5701,,41.0941232,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22417,NJBF000061815,423 N CLERMONT AVE,Margate City,NJ,39.33830276,-74.50192775,RES1,3001,,17,NE,1959,1959,3102,2,1,1687.234577,1687.234577,3505,NO,28.78,38.75,3,-1.27,6106,113.318327,123.157655,132.860657,139.408969,I,Above,Hip,0,5701,,33.76782452,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 22418,NJBF000053535,15 S MADISON AVE,Margate City,NJ,39.3202986,-74.51563251,RES1,3001,,17,NE,1950,1950,3102,2,1,1161.223138,1161.223138,3507,NO,24.38,32.16,1,0.35,6106,113.278239,123.120545,132.808775,139.372119,I,Above,Hip,0,5701,,28.26895737,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22419,NJBF000060236,7511 MONMOUTH AVE,Margate City,NJ,39.3356295,-74.497768,RES1,3001,,17,NE,1973,1973,3103,1,1,1470.556413,1470.556413,3505,NO,16.1,29.27,3,1.44,6106,113.447357,123.261406,132.967689,139.532462,I,Above,Gable,0,5701,,22.68270552,0,0,,,,1,1,,0.03,nav,1,1973,1,, 22420,NJBF000054566,11 N BENSON AVE,Margate City,NJ,39.32374777,-74.51302858,RES1,3001,,17,NE,1978,1978,3102,1,1,1698.709789,1698.709789,3505,NO,18.76,28.11,3,0.54,6106,113.283133,123.126537,132.818058,139.381751,I,Above,Gable,0,5701,,23.43366218,0,0,,,,1,1,,0.03,nav,1,1978,1,, 22421,NJBF000057460,102 S BARCLAY AVE,Margate City,NJ,39.33060974,-74.49315011,RES1,3001,,21,NE,2001,2001,3102,3,1,1380.155922,1380.155922,3505,NO,36.37,44.09,3,-0.74,6106,113.619604,123.399743,133.109134,139.697656,I,Above,Flat,0,5701,,40.23306387,0,0,,,,1,1,,0.03,nav,1,2001,3,, 22422,NJBF000057453,106 S ARGYLE AVE,Margate City,NJ,39.33059933,-74.49241426,RES1,3001,,19,NE,1935,1935,3102,3,1,1761.480838,1761.480838,3505,NO,59.46,72.29,3,2.06,6106,113.635952,123.412925,133.122997,139.712781,I,Above,Flat,0,5701,,65.87617789,0,0,,,,1,1,,0.03,nav,1,1935,3,, 22423,NJBF000053780,12 S ADAMS AVE,Margate City,NJ,39.3212595,-74.514415,RES1,3001,,21,NE,1940,1940,3102,2,1,736.1490086,736.1490086,3507,NO,34.54,45.16,1,2.63,6106,113.290225,123.130841,132.820312,139.384842,I,Above,Hip,0,5701,,39.84622772,0,0,,,,1,1,,0.03,nav,1,1940,2,, 22424,NJBF000053886,,Margate City,NJ,39.32164806,-74.51289096,RES3E,3001,,NaN,ME,2007,0,3301,1,1,2246.356249,2246.356249,3507,NO,13.79,23.56,1,-0.74,6106,113.317557,123.15314,132.843752,139.410834,I,Above,Flat,0,5701,,18.67641468,0,0,,,,1,1,,0.03,nav,1,2007,1,, 22425,NJBF000053872,20 N MADISON AVE,Margate City,NJ,39.32158777,-74.51747999,RES3C,3001,,20,ME,2005,2005,3301,1,1,2817.715042,2817.715042,3505,NO,19.25,25.34,3,3.87,6106,113.218585,123.073206,132.761052,139.318689,I,Above,Gable,0,NaN,,22.29675938,0,0,,,,1,1,,0.03,nav,1,2005,1,, 22426,NJBF000061053,7607 FREMONT AVE,Margate City,NJ,39.3369734,-74.50064826,RES1,3001,,20,NE,2004,2004,3102,2,1,1315.913878,1315.913878,3505,NO,38.95,51.11,3,3.39,6106,113.365049,123.195254,132.899225,139.454535,I,Above,Hip,0,5701,,45.02668285,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 22427,NJBF000058379,211 N HANOVER AVE,Margate City,NJ,39.33220836,-74.50481029,RES1,3001,,17,NE,1965,1965,3101,1,1,1269.603131,1269.603131,3505,NO,27.59,41.53,3,8.61,6106,113.340144,123.175139,132.875089,139.438031,I,Above,Gable,0,5701,,34.55969051,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 22428,NJBF000054556,15 S THURLOW AVE,Margate City,NJ,39.32372091,-74.50862182,RES1,3001,,20,NE,2008,2008,3103,3,1,1620.915452,1620.915452,3505,NO,61.43,73.19,3,5.51,6106,113.379807,123.204443,132.898862,139.471503,I,Above,Flat,0,5701,,67.31120526,0,0,,,,1,1,,0.03,nav,1,2008,3,, 22429,NJBF000057304,8600 AMHERST AVE,Margate City,NJ,39.33033467,-74.50898625,RES1,3001,,21,NE,2017,2017,3102,2,1,963.9249542,963.9249542,3505,NO,45.63,56.37,3,7.04,6106,113.275063,123.122546,132.819029,139.378261,I,Above,Gable,0,5701,,51.00173049,0,0,,,,1,1,,0.03,nav,1,2017,2,, 22430,NJBF000054850,111 S OSBORNE AVE,Margate City,NJ,39.3244822,-74.50472605,RES1,3001,,19,NE,1920,1920,3102,2,1,1738.201483,1738.201483,3505,NO,29.09,38.98,3,0.44,6106,113.453805,123.264424,132.961985,139.540994,I,Above,Hip,0,5701,,34.03533998,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22431,NJBF000054949,,Margate City,NJ,39.32472044,-74.51528665,RES1,3001,,NaN,NE,1969,0,3103,6,1,1844.601157,1844.601157,3507,NO,101.79,108.79,1,0.85,6106,113.219342,123.075639,132.7662,139.323447,I,Above,Gable,0,5701,,105.2906512,0,0,,,,1,1,,0.03,nav,1,1969,6,, 22432,NJBF000058127,28 N EXETER AVE,Margate City,NJ,39.33175608,-74.49933456,RES1,3001,,17,NE,1937,1937,3102,1,1,1327.799828,1327.799828,3505,NO,13.41,23.61,3,-1.62,6106,113.467205,123.277176,132.981405,139.555961,I,Above,Hip,0,5701,,18.50709236,0,1.1,,,,1,1,,0.03,nav,1,1937,1,, 22433,NJBF000053735,9307 PACIFIC AVE,Margate City,NJ,39.3210965,-74.5132525,RES3C,3001,,19,ME,2005,2005,3301,2,1,4208.178108,4208.178108,3505,NO,43.69,51.47,3,5.88,6106,113.317977,123.15315,132.843253,139.410351,I,Above,Flat,0,NaN,,47.58023771,0,0,,,,1,1,,0.03,nav,1,2005,2,, 22434,NJBF000054056,9712 MONMOUTH AVE,Margate City,NJ,39.32224336,-74.51990594,RES1,3001,,17,NE,1880,1880,3109,2,1,745.6215082,745.6215082,3505,NO,26.59,31.61,3,-0.41,6106,113.155931,123.023048,132.709904,139.261191,I,Above,Flat,0,5701,,29.09929005,0,0,,,,1,1,,0.03,nav,1,1880,2,, 22435,NJBF000054848,115 S NASSAU AVE,Margate City,NJ,39.32447877,-74.50380069,RES1,3001,,22,NE,1990,1990,3102,3,1,1426.026205,1426.026205,3505,NO,53.7,66.77,3,5.06,6106,113.474099,123.280781,132.97904,139.559769,I,Above,Hip,0,5701,,60.23469869,0,0,,,,1,1,,0.03,nav,1,1990,3,, 22436,NJBF000058014,9 N ESSEX AVE,Margate City,NJ,39.33156195,-74.49773457,RES1,3001,,17,NE,1948,1948,3102,2,1,1172.107657,1172.107657,3505,NO,28.08,38.82,3,-2.64,6106,113.505197,123.307716,133.01326,139.591239,I,Above,Gable,0,5701,,33.4496978,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22437,NJBF000053641,9314 PACIFIC AVE,Margate City,NJ,39.32072258,-74.51317609,RES1,3001,,17,NE,1953,1953,3102,1,1,611.8512467,611.8512467,3507,NO,21.3,29.46,1,2.41,6106,113.325263,123.158803,132.848757,139.416492,I,Above,Flat,0,5701,,25.38007897,0,0,,,,1,1,,0.03,nav,1,1953,1,, 22438,NJBF000060450,7503 MONMOUTH AVE,Margate City,NJ,39.33599644,-74.49711106,RES1,3001,,17,NE,1949,1949,3103,2,1,1868.115061,1868.115061,3505,NO,27.77,42.74,3,3.57,6106,113.456783,123.268967,132.975875,139.540292,I,Above,Gable,0,5701,,35.25729518,0,0,,,,1,1,,0.03,nav,1,1949,2,, 22439,NJBF000054404,26A N WASHINGTON AVE,Margate City,NJ,39.32329529,-74.51507386,RES3C,3004,,39,ME,1984,1984,3301,3,1,826.6876143,826.6876143,3505,NO,35.32,47.83,3,1.85,6106,113.245282,123.09578,132.785845,139.345957,I,Above,Gable,0,5701,,41.57474731,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 22440,NJBF000054075,127 N COOLIDGE AVE,Margate City,NJ,39.32230294,-74.52022982,RES1,3001,,21,NE,2002,2002,3102,2,1,1328.450607,1328.450607,3507,NO,27.82,36.18,1,1.48,6106,113.147981,123.016668,132.703384,139.253847,I,Above,Hip,0,5701,,32.00283897,0,0,,,,1,1,,0.03,nav,1,2002,2,, 22441,NJBF000053777,30 S WASHINGTON AVE,Margate City,NJ,39.32124708,-74.51306953,RES3D,3001,,19,ME,2005,1954,3301,1,1,4388.934649,4388.934649,3505,NO,18.68,30.74,3,0.18,6106,113.319683,123.154618,132.844913,139.412176,I,Above,Flat,0,NaN,,24.70954181,0,0,,,,1,1,,0.03,nav,1,2005,1,, 22442,NJBF000062397,8011 LAGOON DRIVE,Margate City,NJ,39.33936372,-74.51001113,RES1,3001,,19,NE,1976,1976,3102,2,1,3188.478046,3188.478046,3505,NO,35.33,48.74,3,2.84,6106,113.124588,123.002536,132.699414,139.229626,I,Above,Gable,0,5701,,42.03471604,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 22443,NJBF000055026,8608 ATLANTIC AVE,Margate City,NJ,39.32492891,-74.50513304,RES1,3001,,17,NE,1950,1950,3102,2,1,1763.377706,1763.377706,3505,NO,35.21,44.84,3,-2.34,6106,113.438332,123.252137,132.949581,139.527176,I,Above,Hip,0,5701,,40.02728532,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 22444,NJBF000058493,14 S FREDERICKSBURG AVE,Margate City,NJ,39.33241228,-74.492427,RES1,3001,,18,NE,1925,1925,3102,2,1,1868.296226,1868.296226,3505,NO,21.51,33.37,3,-0.08,6106,113.610129,123.392318,133.102847,139.687129,I,Above,Gable,0,5701,,27.43720947,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22445,NJBF000053845,9709 WINCHESTER AVE,Margate City,NJ,39.32150288,-74.51895998,RES1,3001,,17,NE,1925,1925,3102,2,1,822.1775926,822.1775926,3507,NO,37.45,43.09,1,-0.61,6106,113.187706,123.048212,132.735198,139.289762,I,Above,Flat,0,5701,,40.27296132,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22446,NJBF000054457,9 N DECATUR AVE,Margate City,NJ,39.32345326,-74.51356392,RES1,3001,,20,NE,2015,2015,3102,2,1,1074.417609,1074.417609,3505,NO,32.05,42.79,3,0.9,6106,113.275858,123.120517,132.811572,139.374618,I,Above,Flat,0,5701,,37.42417972,0,0,,,,1,1,,0.03,nav,1,2015,2,, 22447,NJBF000058212,7401 ATLANTIC AVE,Margate City,NJ,39.33190567,-74.49198463,RES1,3001,,19,NE,1945,1945,3102,2,1,2258.598126,2258.598126,3505,NO,26.58,40.48,3,-0.01,6106,113.626969,123.405847,133.11667,139.703288,I,Above,Hip,0,5701,,33.52595632,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 22448,NJBF000060356,203 N BRUNSWICK DR,Margate City,NJ,39.33583365,-74.49786809,RES1,3001,,17,NE,1948,1948,3103,1,1,1735.240036,1735.240036,3505,NO,18.65,27.21,3,-0.13,6106,113.442311,123.257345,132.963567,139.52744,I,Above,Hip,0,5701,,22.9300204,0,0,,,,1,1,,0.03,nav,1,1948,1,, 22449,NJBF000053532,9711 VENTNOR AVE,Margate City,NJ,39.32028935,-74.51806306,RES3C,3001,,21,ME,1964,1964,3301,1,1,2367.678626,2367.678626,3505,NO,26.06,32.28,3,7.97,6106,113.225619,123.078012,132.764844,139.323144,I,Above,Gable,0,NaN,,29.16963191,0,0,,,,1,1,,0.03,nav,1,1964,1,, 22450,NJBF000053749,106 S BENSON AVE,Margate City,NJ,39.32112981,-74.51118715,COM8,3001,,NaN,ME,1910,1910,3401,2,1,3735.628257,3735.628257,3507,NO,28.88,37.47,1,1.86,6106,113.362451,123.189075,132.880519,139.451633,I,Above,Hip,0,NaN,,33.17107837,0,0,,,,1,1,,0.03,nav,1,1910,2,, 22451,NJBF000053682,106 S BENSON AVE,Margate City,NJ,39.32086764,-74.51089476,RES1,3001,,NaN,NE,1910,1910,3102,2,1,903.0648973,903.0648973,3507,NO,37.71,48.4,1,2.81,6106,113.372742,123.197231,132.888729,139.460724,I,Above,Flat,0,5701,,43.0566676,0,0,,,,1,1,,0.03,nav,1,1910,2,, 22452,NJBF000057348,,Margate City,NJ,39.3304076,-74.51647151,RES1,3001,,NaN,NE,2016,0,3102,2,1,1758.756234,1758.756234,3505,NO,34.24,40.57,3,-2.05,6106,113.109449,122.989666,132.681411,139.224121,I,Above,Hip,0,5701,,37.40750428,0,0,,,,1,1,,0.03,nav,1,2016,2,, 22453,NJBF000053796,9717 WINCHESTER AVE,Margate City,NJ,39.32130528,-74.51931273,RES1,3001,,17,NE,1920,1920,3102,2,1,1168.41333,1168.41333,3507,NO,28.38,37.32,1,0.92,6106,113.183043,123.04431,132.731005,139.285103,I,Above,Hip,0,5701,,32.85347707,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22454,NJBF000054860,6 N VENDOME AVE,Margate City,NJ,39.32450034,-74.51181373,RES1,3001,,17,NE,1938,1938,3102,2,1,1623.008672,1623.008672,3505,NO,44.5,55.05,3,7.36,6106,113.29849,123.139287,132.831907,139.396904,I,Above,Flat,0,5701,,49.7716247,0,0,,,,1,1,,0.03,nav,1,1938,2,, 22455,NJBF000053660,111 S DECATUR AVE,Margate City,NJ,39.320794,-74.5110185,RES1,3001,,20,NE,1987,1987,3102,2,1,1691.762717,1691.762717,3507,NO,40.65,46.61,1,1.79,6106,113.371152,123.195903,132.887281,139.459127,I,Above,Flat,0,5701,,43.63250201,0,0,,,,1,1,,0.03,nav,1,1987,2,, 22456,NJBF000058654,215 N HUNTINGTON AVE,Margate City,NJ,39.33268696,-74.50443796,RES1,3001,,21,NE,2017,2017,3102,2,1,1453.823341,1453.823341,3505,NO,44,51.39,3,6.2,6106,113.341529,123.17631,132.876641,139.438984,I,Above,Hip,0,5701,,47.69605498,0,0,,,,1,1,,0.03,nav,1,2017,2,, 22457,NJBF000053879,16 S WASHINGTON AVE,Margate City,NJ,39.32162355,-74.51348099,RES1,3001,,17,NE,1925,1925,3102,3,3,1143.792764,1143.792764,3507,NO,47.55,55.53,1,1.19,6106,113.305067,123.143044,132.833275,139.3992,I,Above,Hip,0,5701,,51.54039164,0,0,,,,1,1,,0.03,nav,1,1925,3,, 22458,NJBF000053881,9703 WINCHESTER AVE,Margate City,NJ,39.321633,-74.5187725,RES1,3001,,20,NE,2015,2015,3101,3,1,1354.429257,1354.429257,3505,NO,44.25,51.23,3,4.47,6106,113.18982,123.050006,132.737161,139.291933,I,Above,Gable,0,5701,,47.73927299,0,0,,,,1,1,,0.03,nav,1,2015,3,, 22459,NJBF000053899,,Margate City,NJ,39.32170594,-74.51872245,RES3A,3001,,NaN,NE,2015,0,3301,2,1,2205.953399,2205.953399,3507,NO,22.81,33.22,1,1.05,6106,113.189801,123.050039,132.737258,139.292025,I,Above,Flat,0,5701,,28.01258877,0,0,,,,1,1,,0.03,nav,1,2015,2,, 22460,NJBF000053768,14 S ADAMS AVE,Margate City,NJ,39.32119424,-74.51436961,RES1,3001,,21,NE,1915,1915,3102,2,1,1367.510509,1367.510509,3507,NO,32.53,38.61,1,0.71,6106,113.292183,123.132383,132.821847,139.386558,I,Above,Gable,0,5701,,35.57063564,0,0,,,,1,1,,0.03,nav,1,1915,2,, 22461,NJBF000053795,6 S ADAMS AVE REAR,Margate City,NJ,39.32130354,-74.51477864,RES1,3001,,16,NE,1925,1925,3102,1,1,726.6160612,726.6160612,3507,NO,19.58,32.29,1,1.05,6106,113.281625,123.123926,132.813199,139.376922,I,Above,Gable,0,5701,,25.93503429,0,0,,,,1,1,,0.03,nav,1,1925,1,, 22462,NJBF000053776,8 S ADAMS AVE,Margate City,NJ,39.32124384,-74.51472791,RES1,3001,,17,NE,1987,1987,3102,2,3,926.5530708,926.5530708,3507,NO,39.67,46.91,1,1.76,6106,113.28364,123.125515,132.814788,139.378699,I,Above,Gable,0,5701,,43.29060167,0,0,,,,1,1,,0.03,nav,1,1987,2,, 22463,NJBF000054697,21 N BENSON AVE,Margate City,NJ,39.32408172,-74.51346168,RES1,3001,,21,NE,1957,1957,3102,2,1,2200.32716,2200.32716,3505,NO,23.07,28.22,3,-0.94,6106,113.268702,123.115079,132.806477,139.36872,I,Above,Gable,0,5701,,25.64773533,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 22464,NJBF000060405,403 N EXETER AVE,Margate City,NJ,39.33591386,-74.50289479,RES1,3001,,19,NE,1988,1988,3102,2,1,2157.574449,2157.574449,3505,NO,36.07,41.17,3,1.42,6106,113.330115,123.167292,132.869324,139.424549,I,Above,Flat,0,5701,,38.61810824,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 22465,NJBF000053369,9609-9613 PACIFIC AVE,Margate City,NJ,39.3196805,-74.5159775,RES3D,3001,,21,ME,1984,1984,3301,3,1,2910.868645,2910.868645,3505,NO,44.2,50.32,3,8.69,6106,113.280132,123.121656,132.80934,139.372792,I,Above,Hip,0,NaN,,47.26136152,0,0,,,,1,1,,0.03,nav,1,1984,3,, 22466,NJBF000054692,10 N HARDING AVE,Margate City,NJ,39.324078,-74.5129795,RES1,3001,,17,NE,1955,1955,3102,2,1,1550.127476,1550.127476,3505,NO,37,45.54,3,7.08,6106,113.279287,123.123607,132.815304,139.378566,I,Above,Flat,0,5701,,41.27408135,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 22467,NJBF000055294,5 S OSBORNE AVE,Margate City,NJ,39.32570051,-74.50584278,RES1,3001,,20,NE,1940,1940,3103,3,1,2149.948674,2149.948674,3505,NO,28.82,42.89,3,-2.99,6106,113.411464,123.230794,132.928023,139.503045,I,Above,Hip,0,5701,,35.85676379,0,1.1,,,,1,1,,0.03,nav,1,1940,3,, 22468,NJBF000055336,5 S OSBORNE AVE,Margate City,NJ,39.32581763,-74.50587898,RES1,3001,,20,NE,1940,1940,3103,3,1,590.6311828,590.6311828,3505,NO,46.84,56.87,3,8.25,6106,113.408962,123.228823,132.926071,139.500831,I,Above,Hip,0,5701,,51.85592481,0,1.1,,,,1,1,,0.03,nav,1,1940,3,, 22469,NJBF000054702,1 N WILSON AVE,Margate City,NJ,39.32409195,-74.51171818,RES1,3001,,18,NE,1985,1985,3102,2,1,1010.058574,1010.058574,3505,NO,44.59,56.11,3,6.09,6106,113.306646,123.14566,132.838168,139.404026,I,Above,Flat,0,5701,,50.35294342,0,0,,,,1,1,,0.03,nav,1,1985,2,, 22470,NJBF000059123,221 N GLADSTONE AVE,Margate City,NJ,39.33360188,-74.50268669,RES1,3001,,17,NE,1955,1955,3101,1,1,1759.297491,1759.297491,3505,NO,19.6,32.64,3,6.62,6106,113.367187,123.196988,132.898855,139.461872,I,Above,Hip,0,5701,,26.12007659,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22471,NJBF000053785,23 S ADAMS AVE,Margate City,NJ,39.32127124,-74.51348899,RES1,3001,,18,NE,1940,1940,3102,2,1,2123.49217,2123.49217,3507,NO,40.28,45.9,1,1.64,6106,113.3102,123.146976,132.837022,139.403412,I,Above,Flat,0,5701,,43.08684809,0,0,,,,1,1,,0.03,nav,1,1940,2,, 22472,NJBF000056422,102 N MANSFIELD AVE,Margate City,NJ,39.32843024,-74.50720086,RES1,3001,,17,NE,1956,1956,3102,2,1,1515.112942,1515.112942,3505,NO,26.85,38.87,3,3.76,6106,113.341878,123.175722,132.872924,139.44013,I,Above,Flat,0,5701,,32.85966969,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 22473,NJBF000062052,402 N FREDERICKSBURG AVE,Margate City,NJ,39.33871621,-74.49801108,RES1,3001,,18,NE,1992,1992,3103,2,1,1533.697948,1533.697948,3505,NO,34.27,47.7,3,-0.84,6106,113.399351,123.222569,132.928924,139.481377,I,Above,Gable,0,5701,,40.98272835,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 22474,NJBF000055003,8 N UNION AVE,Margate City,NJ,39.32485681,-74.51122937,RES1,3001,,17,NE,1963,1963,3102,2,1,2844.102109,2844.102109,3505,NO,36.15,43.89,3,-0.67,6106,113.305989,123.145494,132.838644,139.404258,I,Above,Hip,0,5701,,40.02094087,0,1.2,,,,1,1,,0.03,nav,1,1963,2,, 22475,NJBF000054878,9101 JEFFERSON CT,Margate City,NJ,39.32454747,-74.51261201,RES1,3001,,17,NE,1940,1940,3102,2,1,860.2087605,860.2087605,3505,NO,32.8,38.94,3,3.95,6106,113.280353,123.124698,132.816828,139.380083,I,Above,Flat,0,5701,,35.8705928,0,0,,,,1,1,,0.03,nav,1,1940,2,, 22476,NJBF000061467,7811 WELLINGTON AVE,Margate City,NJ,39.33769007,-74.5048567,RES1,3001,,18,NE,1972,1972,3102,2,1,1960.928861,1960.928861,3505,NO,38.85,45.69,3,5.47,6106,113.261976,123.112589,132.813225,139.358826,I,Above,Gable,0,5701,,42.27356292,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 22477,NJBF000054751,25 N BENSON AVE,Margate City,NJ,39.32422533,-74.51360921,RES1,3001,,17,NE,1952,1952,3102,1,1,1272.843671,1272.843671,3505,NO,16.98,26.69,3,-1.5,6106,113.263362,123.110849,132.802218,139.363913,I,Above,Gable,0,5701,,21.83690741,0,0,,,,1,1,,0.03,nav,1,1952,1,, 22478,NJBF000062007,400 N FREDERICKSBURG AVE,Margate City,NJ,39.33863376,-74.49783966,RES1,3001,,17,NE,1943,1943,3103,2,1,1050.75593,1050.75593,3505,NO,28.99,37.86,3,3.31,6106,113.40426,123.226522,132.933023,139.486038,I,Above,Flat,0,5701,,33.4234088,0,0,,,,1,1,,0.03,nav,1,1943,2,, 22479,NJBF000056391,17 S HAVERFORD AVE,Margate City,NJ,39.32837455,-74.49966909,RES1,3001,,17,NE,1947,1947,3102,1,1,1344.675394,1344.675394,3505,NO,16.85,27.33,3,0.74,6106,113.508137,123.309482,133.012488,139.594474,I,Above,Hip,0,5701,,22.09166516,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 22480,NJBF000057573,212 N KENYON AVE,Margate City,NJ,39.33080631,-74.50749731,RES1,3001,,18,NE,2013,2013,3101,1,1,1036.495586,1036.495586,3505,NO,17.93,27.94,3,5.39,6106,113.301035,123.143503,132.841152,139.402325,I,Above,Gable,0,5701,,22.93425935,0,1.1,,,,1,1,,0.03,nav,1,2013,1,, 22481,NJBF000057174,417 N RUMSON AVE,Margate City,NJ,39.33007498,-74.51284385,RES1,3001,,17,NE,1969,1969,3101,1,1,2074.252333,2074.252333,3505,NO,25.07,35.09,3,8.63,6106,113.19401,123.057416,132.751272,139.302873,I,Above,Gable,0,5701,,30.08153906,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22482,NJBF000054265,117 N MADISON AVE,Margate City,NJ,39.32290542,-74.51815177,RES1,3001,,17,NE,1930,1930,3101,1,1,1059.800313,1059.800313,3505,NO,18.1,29.61,3,-0.19,6106,113.184079,123.046189,132.734307,139.288391,I,Above,Gable,0,5701,,23.85532299,0,0,,,,1,1,,0.03,nav,1,1930,1,, 22483,NJBF000059284,8093 AMHERST AVE,Margate City,NJ,39.33393693,-74.50336804,RES1,3001,,17,NE,1954,1954,3101,1,1,2715.652091,2715.652091,3505,YES,27.5,40.66,3,8.43,6106,113.347431,123.181153,132.882539,139.443265,I,Above,Hip,0,5701,,34.08046662,0,0,,,,1,1,,0.03,nav,1,1954,1,, 22484,NJBF000053596,25 S JEFFERSON AVE,Margate City,NJ,39.3205441,-74.51458969,RES1,3001,,21,NE,1981,1981,3102,2,1,1600.434935,1600.434935,3507,NO,36.95,44.23,1,2.35,6106,113.297205,123.136028,132.825015,139.390153,I,Above,Gable,0,5701,,40.59432414,0,0,,,,1,1,,0.03,nav,1,1981,2,, 22485,NJBF000053846,108 N COOLIDGE AVE,Margate City,NJ,39.3215045,-74.5199065,RES1,3001,,17,NE,1926,1926,3102,2,1,670.7193643,670.7193643,3507,NO,39.2,46.53,1,2.81,6106,113.167107,123.031573,132.718056,139.270534,I,Above,Hip,0,5701,,42.86813914,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 22486,NJBF000055500,11 N RUMSON AVE,Margate City,NJ,39.32625791,-74.50919278,RES1,3001,,22,NE,2014,2014,3102,2,1,1310.978443,1310.978443,3505,NO,32.48,45.94,3,8.05,6106,113.329897,123.16534,132.860402,139.427767,I,Above,Hip,0,5701,,39.21021874,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 22487,NJBF000054154,9505 WINCHESTER AVE,Margate City,NJ,39.322562,-74.5171275,RES1,3001,,17,NE,1910,1910,3102,2,2,850.6988086,850.6988086,3507,NO,22.21,34.1,1,0.85,6106,113.211541,123.068135,132.756661,139.313541,I,Above,Gable,0,5701,,28.15882065,0,0,,,,1,1,,0.03,nav,1,1910,2,, 22488,NJBF000057310,202 N KENYON AVE,Margate City,NJ,39.33034332,-74.50711032,RES1,3001,,NaN,NE,1952,0,3101,1,1,1499.772496,1499.772496,3505,NO,21.25,29.71,3,6.91,6106,113.316214,123.155594,132.853405,139.416496,I,Above,Flat,0,5701,,25.47976493,0,0,,,,1,1,,0.03,nav,1,1952,1,, 22489,NJBF000057996,115 N HUNTINGTON AVE,Margate City,NJ,39.33152523,-74.50334369,RES1,3001,,17,NE,1940,1940,3102,2,1,1222.428557,1222.428557,3507,NO,23.38,30.94,1,-0.05,6106,113.382178,123.208799,132.909727,139.477361,I,Above,Hip,0,5701,,27.16121289,0,0,,,,1,1,,0.03,nav,1,1940,2,, 22490,NJBF000057617,24 N GLADSTONE AVE,Margate City,NJ,39.330886,-74.5006595,RES1,3001,,17,NE,1920,1920,3102,2,1,1344.56509,1344.56509,3505,NO,36.17,50.1,3,4.94,6106,113.450414,123.263546,132.966465,139.54088,I,Above,Hip,0,5701,,43.13053841,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22491,NJBF000054981,12 N VENDOME AVE,Margate City,NJ,39.32480604,-74.51208457,RES1,3001,,17,NE,1942,1942,3101,1,1,1474.225393,1474.225393,3505,NO,16.98,24.66,3,-1.37,6106,113.288028,123.131005,132.823578,139.387499,I,Above,Hip,0,5701,,20.8190639,0,1.1,,,,1,1,,0.03,nav,1,1942,1,, 22492,NJBF000054646,130 N ADAMS AVE,Margate City,NJ,39.32395056,-74.517038,RES1,3001,,20,NE,1957,1957,3101,1,1,5955.428395,5955.428395,3505,NO,17.15,28.2,3,0.06,6106,113.192627,123.053699,132.742915,139.29768,I,Above,Flat,0,5701,,22.67656569,0,0,,,,1,1,,0.03,nav,1,1957,1,, 22493,NJBF000055243,101 S MANSFIELD AVE,Margate City,NJ,39.32555285,-74.50393085,RES1,3001,,19,NE,1950,1950,3102,3,1,2269.867374,2269.867374,3505,NO,55.36,62.65,3,1.52,6106,113.455525,123.26623,132.964832,139.543757,I,Above,Hip,0,5701,,59.00359716,0,0,,,,1,1,,0.03,nav,1,1950,3,, 22494,NJBF000055623,127 N UNION AVE,Margate City,NJ,39.3265961,-74.5123037,RES1,3001,,17,NE,1969,1969,3102,2,1,1407.18701,1407.18701,3505,NO,42.02,47.27,3,8.31,6106,113.256779,123.106641,132.799766,139.359989,I,Above,Gable,0,5701,,44.64095113,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22495,NJBF000053867,18 S WASHINGTON AVE,Margate City,NJ,39.3215665,-74.513418,RES1,3001,,16,NE,1915,1915,3102,2,1,1019.992329,1019.992329,3507,NO,27.8,36.58,1,0.03,6106,113.307295,123.144809,132.835051,139.401182,I,Above,Hip,0,5701,,32.18872124,0,0,,,,1,1,,0.03,nav,1,1915,2,, 22496,NJBF000054776,9102 JEFFERSON CT,Margate City,NJ,39.32427874,-74.51254083,RES1,3001,,17,NE,1940,1940,3102,2,1,992.8557198,992.8557198,3505,NO,41.67,55.36,3,4.4,6106,113.285886,123.129025,132.821086,139.384935,I,Above,Gable,0,5701,,48.51637708,0,0,,,,1,1,,0.03,nav,1,1940,2,, 22497,NJBF000061951,4 ESSEX CT,Margate City,NJ,39.33853433,-74.50470327,RES1,3001,,18,NE,1970,1970,3102,2,1,1714.613677,1714.613677,3505,NO,33.37,41.97,3,2.79,6106,113.25369,123.10586,132.806652,139.349496,I,Above,Gable,0,5701,,37.66878271,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 22498,NJBF000054179,9511 WINCHESTER AVE,Margate City,NJ,39.32264083,-74.51747899,RES1,3001,,17,NE,1950,1950,3101,1,1,658.5535838,658.5535838,3505,NO,26.17,37.18,3,7.46,6106,113.202709,123.061057,132.749424,139.305414,I,Above,Gable,0,5701,,31.67211182,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 22499,NJBF000055288,11 N THURLOW AVE,Margate City,NJ,39.325681,-74.51050152,RES1,3001,,17,NE,1930,1930,3102,2,1,1293.413739,1293.413739,3505,NO,23.74,33.4,3,-0.71,6106,113.30972,123.148864,132.842822,139.408523,I,Above,Flat,0,5701,,28.57075471,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 22500,NJBF000058395,7 S ARGYLE AVE,Margate City,NJ,39.3322375,-74.49327,RES1,3001,,18,NE,1920,1920,3102,2,1,1306.938662,1306.938662,3505,NO,39.98,53.29,3,5.53,6106,113.594019,123.379317,133.089018,139.672556,I,Above,Gable,0,5701,,46.63784088,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22501,NJBF000057540,309 N NASSAU AVE,Margate City,NJ,39.33074813,-74.50981715,RES1,3001,,17,NE,1950,1950,3102,2,1,1122.517875,1122.517875,3505,NO,28.27,35.34,3,-0.25,6106,113.25082,123.103182,132.799196,139.355682,I,Above,Hip,0,5701,,31.80527282,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22502,NJBF000058316,311 N KENYON AVE,Margate City,NJ,39.33208211,-74.50818949,RES1,3001,,17,NE,1960,1960,3102,2,1,2761.241016,2761.241016,3505,NO,29.99,37.77,3,6.52,6106,113.267487,123.116814,132.814257,139.370738,I,Above,Flat,0,5701,,33.88173014,0,0,,,,1,1,,0.03,nav,1,1960,2,, 22503,NJBF000061794,405 N BRUNSWICK DR,Margate City,NJ,39.33826541,-74.4999476,RES1,3001,,NaN,NE,1969,0,3103,2,1,2077.729193,2077.729193,3505,NO,38.39,51.74,3,7.97,6106,113.362679,123.193214,132.897869,139.449385,I,Above,Gable,0,5701,,45.0640546,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22504,NJBF000057680,419 N PEMBROKE AVE,Margate City,NJ,39.330981,-74.5118505,RES1,3001,,20,NE,1978,1978,3102,3,1,1942.261773,1942.261773,3505,NO,45.3,56.31,3,5.93,6106,113.202728,123.064648,132.759363,139.310934,I,Above,Hip,0,5701,,50.80679589,0,1.1,,,,1,1,,0.03,nav,1,1978,3,, 22505,NJBF000057654,308 N MANSFIELD AVE,Margate City,NJ,39.33094538,-74.50957291,RES1,3001,,20,NE,1951,2018,3101,3,1,1232.741442,1232.741442,3505,NO,41.03,47.73,3,-2.25,6106,113.253348,123.105254,132.801482,139.357996,I,Above,Gable,0,5701,,44.37967897,0,0,,,,1,1,,0.03,nav,1,1951,3,, 22506,NJBF000054610,9414A MONMOUTH AVE,Margate City,NJ,39.32386134,-74.51748562,RES3B,3004,,39,ME,1984,1984,3301,3,1,5275.44757,5275.44757,3505,NO,46.09,59.95,3,1.78,6106,113.184209,123.046863,132.735787,139.289719,I,Above,Gable,0,NaN,,53.01880474,0,1.1,,,,1,1,,0.03,nav,1,1984,3,, 22507,NJBF000057200,206 N LANCASTER AVE,Margate City,NJ,39.330139,-74.5078445,RES1,3001,,17,NE,1950,1950,3101,1,1,1587.694551,1587.694551,3505,NO,17.7,28.93,3,0.36,6106,113.302988,123.144924,132.842156,139.404224,I,Above,Flat,0,5701,,23.31468566,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22508,NJBF000054280,9610 MONMOUTH AVE,Margate City,NJ,39.32295602,-74.51900646,RES3B,3001,,18,ME,1987,1987,3301,1,1,1544.029501,1544.029501,3507,NO,17.21,27.98,1,0.67,6106,113.164722,123.030604,132.718281,139.270388,I,Above,Hip,0,NaN,,22.59646579,0,0,,,,1,1,,0.03,nav,1,1987,1,, 22509,NJBF000055261,12 N THURLOW AVE,Margate City,NJ,39.32559567,-74.51100075,RES1,3001,,22,NE,2014,2014,3102,3,1,1955.75734,1955.75734,3505,NO,60.3,65.62,3,2.83,6106,113.300052,123.141044,132.834639,139.399454,I,Above,Gable,0,5701,,62.96280164,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 22510,NJBF000054389,124 N JEFFERSON AVE,Margate City,NJ,39.32326605,-74.51790813,RES1,3001,,20,NE,2015,2015,3102,3,1,649.786311,649.786311,3507,NO,44.83,55.17,1,0.61,6106,113.183955,123.046309,132.734729,139.288748,I,Above,Flat,0,5701,,50.00117921,0,0,,,,1,1,,0.03,nav,1,2015,3,, 22511,NJBF000056949,210 N NASSAU AVE,Margate City,NJ,39.32960677,-74.5091965,RES1,3001,,17,NE,1951,1951,3101,1,1,1173.176461,1173.176461,3505,NO,17.72,29.11,3,3.02,6106,113.280955,123.127094,132.823237,139.383732,I,Above,Gable,0,5701,,23.41591448,0,0,,,,1,1,,0.03,nav,1,1951,1,, 22512,NJBF000054029,100 N MADISON AVE,Margate City,NJ,39.32215421,-74.51789546,RES1,3001,,17,NE,1955,1955,3109,2,1,1424.365477,1424.365477,3505,NO,29.99,43.59,3,4.05,6106,113.201005,123.059377,132.747274,139.303139,I,Above,Gable,0,5701,,36.7886161,0,0,,,,1,1,,0.03,nav,1,1955,2,, 22513,NJBF000063241,8003 BAYSHORE DR,Margate City,NJ,39.34120371,-74.50966906,RES1,3001,,20,NE,2003,2003,3102,1,1,5859.017044,5859.017044,3505,NO,21.78,31.94,3,4.74,6106,113.106804,122.987994,132.685046,139.209294,I,Above,Hip,0,5701,,26.86407535,0,1.1,,,,1,1,,0.03,nav,1,2003,1,, 22514,NJBF000054532,,Margate City,NJ,39.32365129,-74.51605647,RES1,3001,,NaN,NE,1969,0,3101,1,1,728.3933308,728.3933308,3505,NO,12.74,27.08,3,-2.4,6106,113.218536,123.074416,132.764063,139.321482,I,Above,Flat,0,5701,,19.90530896,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22515,NJBF000063568,617 N BARCLAY AVE,Margate City,NJ,39.34207835,-74.50315223,RES1,3001,,19,NE,1999,1999,3102,2,1,2240.964916,2240.964916,3505,NO,23.84,38.04,3,-0.97,6106,113.239559,123.093794,132.795769,139.327364,I,Above,Hip,0,5701,,30.94146972,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 22516,NJBF000054102,9009 ATLANTIC AVE,Margate City,NJ,39.32238536,-74.51026632,RES1,3001,,17,NE,1955,1955,3102,2,1,2208.31255,2208.31255,3505,NO,39.59,53.01,3,1.33,6106,113.36376,123.190832,132.883513,139.454799,I,Above,Hip,0,5701,,46.30241245,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 22517,NJBF000054122,9007 ATLANTIC AVE,Margate City,NJ,39.32245764,-74.5101545,RES1,3001,,23,NE,2017,2017,3103,3,1,2061.709834,2061.709834,3505,NO,60.86,70.09,3,8.03,6106,113.365115,123.191964,132.884755,139.456162,I,Above,Hip,0,5701,,65.47275651,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 22518,NJBF000054924,3 N VENDOME AVE,Margate City,NJ,39.32466116,-74.51137089,RES1,3001,,19,NE,1951,1951,3102,2,1,2345.474864,2345.474864,3505,NO,27.86,38.81,3,4.25,6106,113.305787,123.145241,132.838216,139.403864,I,Above,Hip,0,5701,,33.33602362,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 22519,NJBF000056084,120 N QUINCY AVE,Margate City,NJ,39.32768486,-74.51017886,RES1,3001,,22,NE,2016,2016,3102,2,1,1368.068915,1368.068915,3505,NO,33.96,42.85,3,1.48,6106,113.287371,123.131658,132.826552,139.389129,I,Above,Flat,0,5701,,38.40763534,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 22520,NJBF000055260,8 N SUMNER AVE,Margate City,NJ,39.32559438,-74.51004474,RES1,3001,,18,NE,1925,1925,3102,2,1,1636.118684,1636.118684,3505,NO,38.93,47.42,3,5.51,6106,113.321007,123.157913,132.852144,139.418939,I,Above,Hip,0,5701,,43.17401425,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 22521,NJBF000059368,8223 FULTON AVE,Margate City,NJ,39.33410773,-74.50838886,REL1,3003,,NaN,ME,1969,0,3401,2,1,1827.936254,1827.936254,3507,NO,27.86,38.54,1,0.56,6106,113.234197,123.09037,132.788028,139.338438,I,Above,Flat,0,5701,,33.19981219,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22522,NJBF000058525,410 N LANCASTER AVE,Margate City,NJ,39.33246563,-74.51012026,RES1,3001,,17,NE,1961,1961,3102,2,1,1515.899157,1515.899157,3505,NO,28.53,38.32,3,3.54,6106,113.21944,123.078345,132.774524,139.325961,I,Above,Flat,0,5701,,33.42214541,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 22523,NJBF000058545,410 N LANCASTER AVE,Margate City,NJ,39.332495,-74.510272,RES1,3001,,17,NE,1961,1961,3102,2,1,538.7638162,538.7638162,3505,NO,34.64,48.48,3,0.25,6106,113.215675,123.075332,132.771413,139.322452,I,Above,Flat,0,5701,,41.5603559,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 22524,NJBF000057534,8511 AMHERST AVE,Margate City,NJ,39.33074008,-74.50882142,RES1,3001,,17,NE,2006,2006,3101,1,1,1550.449296,1550.449296,3505,NO,17.69,26.37,3,5.88,6106,113.27285,123.120862,132.81756,139.376155,I,Above,Gable,0,5701,,22.03472969,0,0,,,,1,1,,0.03,nav,1,2006,1,, 22525,NJBF000054406,7 S VENDOME AVE,Margate City,NJ,39.32331018,-74.51007431,RES1,3001,,20,NE,1950,1950,3103,3,1,2715.080643,2715.080643,3505,NO,56.21,69.73,3,1.31,6106,113.354179,123.183583,132.876827,139.447202,I,Above,Hip,0,5701,,62.97125194,0,0,,,,1,1,,0.03,nav,1,1950,3,, 22526,NJBF000054842,12 S QUINCY AVE,Margate City,NJ,39.32446035,-74.50713991,RES1,3001,,19,NE,1930,1930,3103,3,1,1644.230181,1644.230181,3505,NO,65.02,75.68,3,7.57,6106,113.401298,123.222099,132.917882,139.492324,I,Above,Gable,0,5701,,70.34867568,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 22527,NJBF000054350,8902 ATLANTIC AVE,Margate City,NJ,39.32314279,-74.50806985,RES1,3001,,19,NE,1950,1950,3102,2,1,2051.366134,2051.366134,3505,NO,38.32,52.35,3,1.54,6106,113.400435,123.220796,132.915339,139.489856,I,Above,Gable,0,5701,,45.33683229,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 22528,NJBF000054662,16 S RUMSON AVE,Margate City,NJ,39.32400414,-74.5076519,RES1,3001,,18,NE,1950,1950,3101,1,1,2948.86164,2948.86164,3505,NO,24.74,32.93,3,7.61,6106,113.396828,123.218293,132.913516,139.487636,I,Above,Flat,0,5701,,28.83634655,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22529,NJBF000057730,8802 FULTON AVE,Margate City,NJ,39.33105742,-74.51376413,RES1,3001,,18,NE,1978,1978,3102,2,1,2488.292568,2488.292568,3505,NO,36.94,42.41,3,6.47,6106,113.159527,123.030015,132.723533,139.270733,I,Above,Gable,0,5701,,39.67667622,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 22530,NJBF000054624,102 S QUINCY AVE,Margate City,NJ,39.3238948,-74.50660699,RES1,3001,,21,NE,2002,2002,3103,3,1,1655.572238,1655.572238,3505,NO,57.6,64.5,3,1.1,6106,113.421291,123.237963,132.933885,139.510166,I,Above,Flat,0,5701,,61.04934728,0,0,,,,1,1,,0.03,nav,1,2002,3,, 22531,NJBF000056343,222 N SUMNER AVE,Margate City,NJ,39.328258,-74.5126085,RES1,3001,,17,NE,1945,1945,3101,1,1,1503.466551,1503.466551,3505,NO,17.98,24.18,3,1.25,6106,113.225704,123.08229,132.77578,139.331979,I,Above,Flat,0,5701,,21.08025394,0,0,,,,1,1,,0.03,nav,1,1945,1,, 22532,NJBF000054217,18 S VENDOME AVE,Margate City,NJ,39.32277044,-74.51015735,RES1,3001,,19,NE,1923,1923,3102,2,1,2104.552608,2104.552608,3505,NO,30.36,43.96,3,8.49,6106,113.360401,123.188325,132.881263,139.452238,I,Above,Gable,0,5701,,37.15681525,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 22533,NJBF000054208,116-118 N MADISON AVE,Margate City,NJ,39.32274103,-74.51851127,RES1,3001,,45,NE,1957,1957,3102,2,2,1057.627694,1057.627694,3507,NO,25.51,32.84,1,2.13,6106,113.178739,123.041779,132.729622,139.283186,I,Above,Gable,0,5701,,29.17380186,0,0,,,,1,1,,0.03,nav,1,1957,2,, 22534,NJBF000055526,14 N RUMSON AVE,Margate City,NJ,39.32634492,-74.50985282,RES1,3001,,17,NE,1948,1948,3101,1,1,3263.494166,3263.494166,3505,NO,26.05,35.74,3,6.84,6106,113.31416,123.152709,132.847354,139.413201,I,Above,Hip,0,5701,,30.89603323,0,1.2,,,,1,1,,0.03,nav,1,1948,1,, 22535,NJBF000055590,6 N PEMBROKE AVE,Margate City,NJ,39.32650791,-74.5081285,RES1,3001,,17,NE,1920,1920,3102,2,1,1518.81006,1518.81006,3505,NO,38.15,47.06,3,1.47,6106,113.349569,123.181267,132.87716,139.446242,I,Above,Hip,0,5701,,42.60559681,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22536,NJBF000054469,19 S THURLOW AVE,Margate City,NJ,39.32347823,-74.50840125,RES1,3001,,23,NE,2015,2015,3103,3,1,1534.576888,1534.576888,3505,NO,56.77,71.34,3,6.66,6106,113.388236,123.211123,132.905587,139.479004,I,Above,Hip,0,5701,,64.05675837,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 22537,NJBF000062041,8 BAYCREST DRIVE,Margate City,NJ,39.33869171,-74.50831025,RES1,3001,,18,NE,1979,1979,3102,2,1,1650.598615,1650.598615,3505,NO,43.17,56.31,3,5.95,6106,113.171603,123.040186,132.738271,139.274057,I,Above,Gable,0,5701,,49.74147278,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 22538,NJBF000061246,421 N GLADSTONE AVE,Margate City,NJ,39.33730108,-74.50581418,RES1,3001,,18,NE,1988,1988,3101,2,1,2209.499005,2209.499005,3505,NO,27.7,34.5,3,5.65,6106,113.246208,123.099998,132.799878,139.34511,I,Above,Gable,0,5701,,31.09629156,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 22539,NJBF000056718,,Margate City,NJ,39.32911963,-74.51005415,RES1,3001,,NaN,NE,1969,0,3102,2,1,1619.501567,1619.501567,3505,NO,45.53,59.15,3,8.04,6106,113.269192,123.117509,132.81293,139.372721,I,Above,Gable,0,5701,,52.33856321,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22540,NJBF000056995,216 N NASSAU AVE,Margate City,NJ,39.32970535,-74.50931774,RES1,3001,,17,NE,1951,1951,3102,2,1,1262.377297,1262.377297,3505,NO,33.35,48.16,3,4.79,6106,113.276875,123.123844,132.819931,139.379947,I,Above,Gable,0,5701,,40.75773622,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 22541,NJBF000054521,,Margate City,NJ,39.32361689,-74.51552551,RES3B,3001,,NaN,ME,1969,0,3301,1,1,2263.909576,2263.909576,3505,NO,14.02,21.06,3,-1.85,6106,113.230603,123.084125,132.774067,139.332687,I,Above,Flat,0,5701,,17.54347038,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22542,NJBF000055189,2 N SUMNER AVE,Margate City,NJ,39.32539928,-74.50985752,RES1,3001,,17,NE,1940,1940,3102,2,1,2276.783319,2276.783319,3505,NO,39.66,45.71,3,3.29,6106,113.327975,123.163441,132.85772,139.425236,I,Above,Flat,0,5701,,42.68595095,0,0.2,,,,1,1,,0.03,nav,1,1940,2,, 22543,NJBF000054951,8705 ATLANTIC AVE,Margate City,NJ,39.32472116,-74.50641807,RES1,3001,,19,NE,1930,1930,3102,2,1,1425.14422,1425.14422,3505,NO,38.06,47.51,3,3.03,6106,113.413256,123.231845,132.928258,139.503706,I,Above,Hip,0,5701,,42.7840843,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22544,NJBF000054745,118 N WASHINGTON AVE,Margate City,NJ,39.32421231,-74.51590083,RES1,3001,,19,NE,2015,2015,3102,3,1,1060.18408,1060.18408,3507,NO,44.39,55.15,1,0.01,6106,113.213521,123.070683,132.760667,139.317468,I,Above,Hip,0,5701,,49.76938833,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 22545,NJBF000058213,9 S BARCLAY AVE,Margate City,NJ,39.33190675,-74.49374006,RES1,3001,,19,NE,1928,1928,3102,2,1,1257.446267,1257.446267,3505,NO,35.69,41.46,3,-0.96,6106,113.58831,123.374684,133.083872,139.667686,I,Above,Hip,0,5701,,38.57908651,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22546,NJBF000058157,11 S BARCLAY AVE,Margate City,NJ,39.33180786,-74.4936597,RES1,3001,,20,NE,2010,2010,3102,3,1,1105.049003,1105.049003,3505,NO,51.78,63.29,3,8.24,6106,113.591466,123.377217,133.086454,139.670701,I,Above,Gable,0,5701,,57.53459166,0,0,,,,1,1,,0.03,nav,1,2010,3,, 22547,NJBF000054471,,Margate City,NJ,39.32347938,-74.5062274,RES1,3001,,NaN,NE,2009,0,3103,4,1,3680.691703,3680.691703,3505,NO,46.59,53.66,3,3.77,6106,113.435743,123.249425,132.945437,139.522999,I,Above,Gable,0,5701,,50.12724844,0,0,,,,1,1,,0.03,nav,1,2009,4,, 22548,NJBF000057727,119 N IROQUOIS AVE,Margate City,NJ,39.33105411,-74.50451944,RES1,3001,,17,NE,1952,1952,3101,1,1,1524.014761,1524.014761,3507,NO,17.5,31.19,1,0.15,6106,113.363031,123.19334,132.89325,139.4598,I,Above,Gable,0,5701,,24.34444099,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 22549,NJBF000054705,8906 VENTNOR AVE,Margate City,NJ,39.32409995,-74.50988932,RES1,3001,,22,NE,2015,2015,3103,3,1,3844.83181,3844.83181,3505,NO,51.38,59.07,3,3.28,6106,113.346498,123.177776,132.871496,139.44106,I,Above,Flat,0,5701,,55.2282398,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 22550,NJBF000055400,8707 VENTNOR AVE,Margate City,NJ,39.32598036,-74.50795803,RES1,3001,,20,NE,1925,1925,3102,2,1,2444.436443,2444.436443,3505,NO,31.43,44.18,3,4.66,6106,113.361035,123.190295,132.886111,139.456477,I,Above,Hip,0,5701,,37.80515031,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 22551,NJBF000058290,17 S ANDOVER AVE,Margate City,NJ,39.33204028,-74.49239236,RES1,3001,,19,NE,1930,1930,3102,2,1,1151.396125,1151.396125,3505,NO,34.53,40.93,3,-1.46,6106,113.616124,123.397116,133.107589,139.693142,I,Above,Gable,0,5701,,37.72932422,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22552,NJBF000059730,71 SEASIDE COURT,Margate City,NJ,39.3347464,-74.50776569,RES1,3001,,19,NE,1997,1997,3101,2,1,1968.067303,1968.067303,3505,NO,27.05,35.9,3,4.18,6110,113.238914,123.09419,132.792382,139.34214,I,Above,Hip,0,5701,,31.47849071,0,1.1,,,,1,1,,0.35,nav,1,1997,2,, 22553,NJBF000055264,,Margate City,NJ,39.3255995,-74.513954,RES1,3001,,NaN,NE,1969,0,3102,2,1,929.4756414,929.4756414,3505,NO,31.58,37.23,3,6.87,6106,113.23539,123.088993,132.780711,139.33926,I,Above,Gable,0,5701,,34.40746349,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22554,NJBF000054834,119 N WASHINGTON AVE,Margate City,NJ,39.32443661,-74.51548891,RES1,3001,,19,NE,2008,2008,3102,3,1,1417.322374,1417.322374,3507,NO,39.18,45.79,1,1.91,6106,113.219152,123.07534,132.765662,139.322968,I,Above,Hip,0,5701,,42.4833577,0,0,,,,1,1,,0.03,nav,1,2008,3,, 22555,NJBF000055382,4 N QUINCY AVE,Margate City,NJ,39.32593523,-74.50858775,RES1,3001,,18,NE,1938,1938,3102,2,1,3086.222093,3086.222093,3505,NO,23.46,31.4,3,0.21,6106,113.347895,123.179699,132.875057,139.44423,I,Above,Hip,0,5701,,27.42701623,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 22556,NJBF000058479,36 N ESSEX AVE,Margate City,NJ,39.33238938,-74.49900088,RES1,3001,,17,NE,1948,1948,3102,2,1,1036.116814,1036.116814,3505,NO,42.2,50.05,3,8.67,6106,113.465604,123.275959,132.980613,139.553972,I,Above,Flat,0,5701,,46.12427974,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22557,NJBF000055238,109 N WILSON AVE,Margate City,NJ,39.32531548,-74.51292267,RES1,3001,,18,NE,1948,1948,3102,2,1,931.3945995,931.3945995,3505,NO,26.86,40.77,3,-1.37,6106,113.26216,123.110412,132.802659,139.363931,I,Above,Hip,0,5701,,33.81691948,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22558,NJBF000054273,105 S THURLOW AVE,Margate City,NJ,39.32293014,-74.50790153,RES1,3001,,21,NE,1987,1987,3103,6,1,1348.839951,1348.839951,3505,NO,106.16,114.91,3,-0.54,6106,113.407264,123.226199,132.920761,139.495883,I,Above,Flat,0,5701,,110.5336433,0,0,,,,1,1,,0.03,nav,1,1987,6,, 22559,NJBF000055725,12 N PEMBROKE AVE,Margate City,NJ,39.32682976,-74.508475,RES1,3001,,17,NE,1948,1948,3102,2,1,1895.553266,1895.553266,3505,NO,34.34,48.99,3,-0.27,6106,113.337248,123.171471,132.867237,139.435017,I,Above,Hip,0,5701,,41.66141505,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22560,NJBF000054741,14 S RUMSON AVE,Margate City,NJ,39.32420139,-74.50782916,RES1,3001,,22,NE,2014,2014,3103,3,1,3275.906422,3275.906422,3505,NO,43.26,51.26,3,2.15,6106,113.390047,123.212917,132.908101,139.481588,I,Above,Hip,0,5701,,47.26107765,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 22561,NJBF000056080,9113 FREMONT AVE,Margate City,NJ,39.32767563,-74.51625312,RES1,3001,,21,NE,1998,1998,3102,2,1,2323.527963,2323.527963,3505,NO,26.58,33.46,3,3.32,6106,113.154363,123.024733,132.715825,139.265201,I,Above,Flat,0,5701,,30.02100183,0,0,,,,1,1,,0.03,nav,1,1998,2,, 22562,NJBF000055324,112 N VENDOME AVE,Margate City,NJ,39.32577476,-74.51302258,RES1,3001,,17,NE,1957,1957,3101,1,1,1612.891334,1612.891334,3505,NO,23.88,37.26,3,8.39,6106,113.253162,123.103378,132.795742,139.355969,I,Above,Gable,0,5701,,30.57049175,0,0,,,,1,1,,0.03,nav,1,1957,1,, 22563,NJBF000054978,5 N VENDOME AVE,Margate City,NJ,39.32479954,-74.51151004,RES1,3001,,NaN,NE,1962,0,3102,2,1,2690.599247,2690.599247,3505,NO,23.54,29.95,3,-0.36,6106,113.300688,123.141199,132.834141,139.39927,I,Above,Hip,0,5701,,26.74685142,0,0,,,,1,1,,0.03,nav,1,1962,2,, 22564,NJBF000055948,,Margate City,NJ,39.32735369,-74.51532536,RES1,3001,,NaN,NE,1969,0,3102,2,1,860.6842942,860.6842942,3505,NO,38.36,52.04,3,4.11,6106,113.17944,123.044758,132.736286,139.28841,I,Above,Flat,0,5701,,45.20327413,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22565,NJBF000060702,309 N DELAVAN AVE,Margate City,NJ,39.33642379,-74.50090613,RES1,3001,,17,NE,1950,1950,3102,1,1,1588.540397,1588.540397,3505,NO,21.44,35.79,3,5.21,6106,113.36697,123.196831,132.900536,139.457408,I,Above,Gable,0,5701,,28.61413265,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22566,NJBF000058310,24 N DOUGLAS AVE,Margate City,NJ,39.33207454,-74.49795779,RES1,3001,,17,NE,1928,1928,3102,2,1,1254.867276,1254.867276,3505,NO,22.3,36.55,3,-0.72,6106,113.493026,123.297983,133.003456,139.579585,I,Above,Gable,0,5701,,29.42913806,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22567,NJBF000054685,9211 WINCHESTER AVE,Margate City,NJ,39.32406694,-74.5146499,RES1,3001,,NaN,NE,1952,0,3101,1,1,5287.188467,5287.188467,3505,NO,10.11,16.42,3,-0.49,6106,113.242989,123.094352,132.785015,139.344762,I,Above,Hip,0,5701,,13.26628969,0,0,,,,1,1,,0.03,nav,1,1952,1,, 22568,NJBF000054336,13 S VENDOME AVE,Margate City,NJ,39.32310316,-74.5098942,RES1,3001,,21,NE,2006,2006,3103,3,1,1747.394559,1747.394559,3505,NO,49.41,56.69,3,5.79,6106,113.361187,123.18913,132.8824,139.453426,I,Above,Gable,0,5701,,53.04702819,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 22569,NJBF000055434,8705 VENTNOR AVE,Margate City,NJ,39.32608516,-74.50774001,RES1,3001,,20,NE,1930,1930,3102,2,1,1715.590719,1715.590719,3505,NO,34.01,41.63,3,8.3,6106,113.364271,123.192941,132.88895,139.459571,I,Above,Hip,0,5701,,37.81877217,0,0,,,,1,1,,0.03,nav,1,1930,2,, 22570,NJBF000057928,2 N DOUGLAS AVE,Margate City,NJ,39.33138801,-74.49738456,RES1,3001,,17,NE,1958,1958,3102,2,1,809.442868,809.442868,3505,NO,39.41,46.93,3,5.34,6106,113.51537,123.315881,133.021684,139.600766,I,Above,Flat,0,5701,,43.1695557,0,0,,,,1,1,,0.03,nav,1,1958,2,, 22571,NJBF000055974,8 S JEROME AVE,Margate City,NJ,39.32742405,-74.50298781,RES1,3001,,21,NE,1950,2018,3102,3,1,1403.101921,1403.101921,3505,NO,43.83,54.33,3,-2.37,6106,113.448974,123.261584,132.961606,139.53915,I,Above,Gable,0,5701,,49.0817281,0,0,,,,1,1,,0.03,nav,1,1950,3,, 22572,NJBF000055860,14 S JEROME AVE,Margate City,NJ,39.32714077,-74.50274505,RES1,3001,,21,NE,1999,1999,3102,3,1,1259.856475,1259.856475,3505,NO,36.19,45.19,3,0.16,6106,113.458411,123.269096,132.969209,139.547735,I,Above,Hip,0,5701,,40.69084218,0,0,,,,1,1,,0.03,nav,1,1999,3,, 22573,NJBF000054762,9312 MONMOUTH AVE,Margate City,NJ,39.32425023,-74.51656538,RES1,3001,,17,NE,1953,1953,3101,1,1,1674.783713,1674.783713,3505,NO,20.69,30.7,3,1.63,6106,113.198465,123.058571,132.748187,139.30347,I,Above,Flat,0,5701,,25.69876583,0,0,,,,1,1,,0.03,nav,1,1953,1,, 22574,NJBF000054953,5 S RUMSON AVE,Margate City,NJ,39.32473462,-74.50777088,RES1,3001,,19,NE,1935,1935,3102,2,1,2144.567524,2144.567524,3505,NO,30.34,41.71,3,1.26,6106,113.383438,123.207827,132.903278,139.476067,I,Above,Gable,0,5701,,36.02278131,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 22575,NJBF000055566,8409 ATLANTIC AVE,Margate City,NJ,39.32642332,-74.50321095,RES1,3001,,17,NE,1950,1950,3101,1,1,1521.952622,1521.952622,3505,NO,12.51,18.71,3,-0.88,6106,113.45862,123.269032,132.968521,139.547408,I,Above,Flat,0,5701,,15.60874749,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22576,NJBF000061225,7404 AMHERST AVE,Margate City,NJ,39.33726751,-74.49681531,RES1,3001,,17,NE,1960,1960,3103,2,1,1354.272328,1354.272328,3505,NO,37.66,49.28,3,0.17,6106,113.445724,123.259989,132.9673,139.52721,I,Above,Gable,0,5701,,43.46911243,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 22577,NJBF000058514,404 N KENYON AVE,Margate City,NJ,39.33244832,-74.50909024,RES1,3001,,20,NE,1969,2018,3102,2,1,1446.771885,1446.771885,3505,NO,37.46,49.9,3,6.34,6106,113.242395,123.096747,132.793631,139.34727,I,Above,Gable,0,5701,,43.68265884,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22578,NJBF000055520,5 N QUINCY AVE,Margate City,NJ,39.32631486,-74.50817664,RES1,3001,,17,NE,1932,1932,3102,2,1,559.3109682,559.3109682,3505,NO,32.13,39.45,3,-1.29,6106,113.351323,123.182606,132.878394,139.447726,I,Above,Hip,0,5701,,35.79385058,0,1.2,,,,1,1,,0.03,nav,1,1932,2,, 22579,NJBF000055823,304 N HARDING AVE,Margate City,NJ,39.3270587,-74.51583286,RES1,3001,,47,NE,1950,1950,3102,2,2,927.495262,927.495262,3505,NO,34.47,44.25,3,-1.06,6106,113.172675,123.039192,132.730321,139.281917,I,Above,Gable,0,5701,,39.36185879,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22580,NJBF000058406,37 N EXETER AVE,Margate City,NJ,39.33225908,-74.49927683,RES1,3001,,17,NE,1946,1946,3102,1,1,1147.482126,1147.482126,3505,NO,20.75,35.52,3,3.76,6106,113.461359,123.272533,132.976925,139.550165,I,Above,Hip,0,5701,,28.13659527,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 22581,NJBF000055789,11 S KENYON AVE,Margate City,NJ,39.326981,-74.5036314,RES1,3001,,21,NE,1935,1935,3102,2,1,1351.074947,1351.074947,3505,NO,31.36,38.51,3,-0.2,6106,113.441292,123.255262,132.954631,139.531747,I,Above,Hip,0,5701,,34.93224817,0,0,,,,1,1,,0.03,nav,1,1935,2,, 22582,NJBF000057914,5 N ESSEX AVE,Margate City,NJ,39.33137606,-74.49755991,RES1,3001,,17,NE,1948,1948,3102,2,1,1122.919433,1122.919433,3505,NO,27.7,33.86,3,0.16,6106,113.511686,123.312914,133.018564,139.597367,I,Above,Flat,0,5701,,30.777074,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22583,NJBF000058186,22 N ESSEX AVE,Margate City,NJ,39.33185455,-74.49847814,RES1,3001,,17,NE,1917,1917,3102,2,1,1578.961831,1578.961831,3505,NO,23.47,31.71,3,1.09,6106,113.484682,123.291245,132.996222,139.572052,I,Above,Hip,0,5701,,27.59278926,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 22584,NJBF000054175,125 N MONROE AVE,Margate City,NJ,39.32263484,-74.51914731,RES1,3001,,47,NE,1922,1922,3102,2,3,1567.167763,1567.167763,3507,NO,28.52,34.07,1,2.43,6106,113.166503,123.031837,132.719286,139.271616,I,Above,Hip,0,5701,,31.29572834,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 22585,NJBF000054153,123 N MONROE AVE,Margate City,NJ,39.32255809,-74.51906495,RES1,3001,,18,NE,1955,1955,3102,2,1,1811.7486,1811.7486,3507,NO,31.33,41.43,1,1.62,6106,113.16945,123.034166,132.721622,139.274262,I,Above,Gable,0,5701,,36.38000732,0,0,,,,1,1,,0.03,nav,1,1955,2,, 22586,NJBF000058413,10 S ANDOVER AVE,Margate City,NJ,39.33226506,-74.49298959,RES1,3001,,22,NE,1925,2018,3102,2,1,1413.200524,1413.200524,3505,NO,26.74,41.41,3,3.82,6106,113.599793,123.383973,133.093941,139.677831,I,Above,Gable,0,5701,,34.07684751,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22587,NJBF000054007,109 N MONROE AVE,Margate City,NJ,39.32207991,-74.51867416,RES1,3001,,20,NE,2014,2014,3101,3,1,1126.052118,1126.052118,3505,NO,47.93,53.98,3,8.7,6106,113.185182,123.046556,132.733989,139.288269,I,Above,Flat,0,5701,,50.95559108,0,0,,,,1,1,,0.03,nav,1,2014,3,, 22588,NJBF000053999,107 N MONROE AVE,Margate City,NJ,39.32205704,-74.51853273,RES1,3001,,17,NE,1952,1952,3101,1,1,1652.777796,1652.777796,3505,NO,16.34,29.69,3,2.46,6106,113.188596,123.049297,132.736795,139.291421,I,Above,Gable,0,5701,,23.01441194,0,0,,,,1,1,,0.03,nav,1,1952,1,, 22589,NJBF000056034,304 N VENDOME AVE,Margate City,NJ,39.32757669,-74.51471359,RES1,3001,,19,NE,2006,2006,3102,3,1,1369.099116,1369.099116,3505,NO,52.19,61.1,3,2.06,6106,113.189536,123.052965,132.744933,139.297952,I,Above,Gable,0,5701,,56.64696609,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 22590,NJBF000058352,,Margate City,NJ,39.33214985,-74.51107674,RES1,3001,,NaN,NE,1950,0,3102,2,1,3463.594974,3463.594974,3505,NO,31.51,45.02,3,0.07,6106,113.202892,123.065024,132.760499,139.310746,I,Above,Flat,0,5701,,38.26207839,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22591,NJBF000058429,409 N MANSFIELD AVE,Margate City,NJ,39.33229369,-74.51029259,RES1,3001,,17,NE,1960,1960,3101,1,1,2112.865986,2112.865986,3505,NO,14.34,26.7,3,2.16,6106,113.218094,123.077238,132.773267,139.324798,I,Above,Hip,0,5701,,20.52025291,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 22592,NJBF000055490,9002 MONMOUTH AVE,Margate City,NJ,39.32623224,-74.51346137,RES1,3001,,19,NE,2008,2008,3102,2,1,1578.523869,1578.523869,3505,NO,33.76,39.67,3,6.08,6106,113.236819,123.090429,132.782692,139.341125,I,Above,Gable,0,5701,,36.71921339,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 22593,NJBF000059255,AMHERST AVE,Margate City,NJ,39.33386635,-74.50249538,EDU1,3004,,NaN,E,1969,0,3401,1,1,1729.92747,1729.92747,3507,NO,14.57,29.54,1,1.52,6106,113.367698,123.197414,132.89948,139.462049,I,Above,Flat,0,5701,,22.05579736,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22594,NJBF000058058,306 N KENYON AVE,Margate City,NJ,39.33164001,-74.50830313,RES1,3001,,17,NE,1959,1959,3102,2,1,1632.634945,1632.634945,3505,NO,31.27,41.05,3,6.47,6106,113.27131,123.119807,132.817075,139.374479,I,Above,Gable,0,5701,,36.15986008,0,0,,,,1,1,,0.03,nav,1,1959,2,, 22595,NJBF000055069,10 S PEMBROKE AVE,Margate City,NJ,39.32503724,-74.5067006,RES1,3001,,21,NE,2009,2009,3103,3,1,1444.243926,1444.243926,3505,NO,47.42,61.88,3,2.02,6106,113.402414,123.223241,132.91958,139.493994,I,Above,Gable,0,5701,,54.65413938,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 22596,NJBF000058298,14 S ANDOVER AVE,Margate City,NJ,39.33205875,-74.49285787,RES1,3001,,20,NE,2011,2011,3102,2,1,1698.758747,1698.758747,3505,NO,29.13,41.68,3,-2.93,6106,113.605595,123.38863,133.098672,139.68343,I,Above,Flat,0,5701,,35.4015442,0,1.1,,,,1,1,,0.03,nav,1,2011,2,, 22597,NJBF000055299,114 N WILSON AVE,Margate City,NJ,39.32571267,-74.51375753,RES1,3001,,47,NE,1948,1948,3102,2,2,896.8748558,896.8748558,3505,NO,22.05,34,3,-1.14,6106,113.238001,123.091147,132.78303,139.341794,I,Above,Gable,0,5701,,28.02368797,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22598,NJBF000058576,40 N ESSEX AVE,Margate City,NJ,39.33254454,-74.49917635,RES1,3001,,17,NE,1940,1940,3102,2,1,1752.831661,1752.831661,3505,NO,29.57,44.34,3,1.84,6106,113.459542,123.2711,132.97564,139.548228,I,Above,Gable,0,5701,,36.95728469,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 22599,NJBF000056069,306 N VENDOME AVE,Margate City,NJ,39.32765237,-74.51479963,RES1,3001,,17,NE,1955,1955,3102,1,1,1824.030817,1824.030817,3505,NO,21.4,35.44,3,7.26,6106,113.186547,123.050593,132.742533,139.295205,I,Above,Gable,0,5701,,28.42320246,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22600,NJBF000055989,306 N WILSON AVE,Margate City,NJ,39.32746066,-74.51543872,RES1,3001,,47,NE,1950,1950,3102,2,2,957.9435706,957.9435706,3505,NO,28.09,39.75,3,2.21,6106,113.175364,123.041526,132.733022,139.284672,I,Above,Gable,0,5701,,33.92203941,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22601,NJBF000055857,303 N HARDING AVE,Margate City,NJ,39.32713782,-74.51542127,RES1,3001,,47,NE,1950,1950,3102,2,2,1246.146033,1246.146033,3505,NO,41.53,51.54,3,8.18,6106,113.180527,123.04554,132.736938,139.289292,I,Above,Gable,0,5701,,46.53232605,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22602,NJBF000054769,17 S RUMSON AVE,Margate City,NJ,39.32426518,-74.50726009,RES1,3001,,18,NE,1959,1959,3102,2,1,3400.723846,3400.723846,3505,NO,32.49,40.97,3,1.18,6106,113.401548,123.222215,132.917829,139.492328,I,Above,Hip,0,5701,,36.72979533,0,0.2,,,,1,1,,0.03,nav,1,1959,2,, 22603,NJBF000056026,16 N NASSAU AVE,Margate City,NJ,39.32754815,-74.50729469,RES1,3001,,17,NE,1969,1969,3102,2,1,2003.34619,2003.34619,3505,NO,40.51,46.88,3,4.62,6106,113.352644,123.184105,132.880953,139.449759,I,Above,Gable,0,5701,,43.69407529,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22604,NJBF000055378,118 N WILSON AVE,Margate City,NJ,39.325931,-74.513951,RES1,3001,,47,NE,1948,1948,3102,2,2,985.1054276,985.1054276,3505,NO,35.63,46.85,3,2.72,6106,113.230551,123.08525,132.777098,139.335039,I,Above,Gable,0,5701,,41.23923282,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22605,NJBF000055234,5 S PEMBROKE AVE,Margate City,NJ,39.32553193,-74.50663381,RES1,3001,,19,NE,1925,1925,3102,2,1,1941.89012,1941.89012,3505,NO,28.47,41.04,3,5.01,6106,113.396612,123.218767,132.915353,139.489106,I,Above,Gable,0,5701,,34.75990897,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 22606,NJBF000054974,11 S QUINCY AVE,Margate City,NJ,39.32479405,-74.50686915,RES1,3001,,19,NE,1920,1920,3102,2,1,1763.587133,1763.587133,3505,NO,30.3,37.46,3,5.55,6106,113.40231,123.223056,132.919175,139.493637,I,Above,Gable,0,5701,,33.88254932,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 22607,NJBF000055810,301 N HARDING AVE,Margate City,NJ,39.32703438,-74.51530832,RES1,3001,,47,NE,1950,1950,3102,2,2,796.8666687,796.8666687,3505,NO,28.58,39.81,3,-2.26,6106,113.184538,123.048721,132.74015,139.292966,I,Above,Gable,0,5701,,34.19704623,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22608,NJBF000055225,,Margate City,NJ,39.32531548,-74.51292267,RES1,3001,,NaN,NE,1948,0,3102,2,1,901.0425376,901.0425376,3505,NO,44.42,59.18,3,7.13,6106,113.26216,123.110412,132.802659,139.363931,I,Above,Hip,0,5701,,51.796448,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22609,NJBF000054426,6 S VENDOME AVE,Margate City,NJ,39.32336595,-74.51071825,RES1,3001,,19,NE,2009,2009,3103,3,1,1548.188885,1548.188885,3505,NO,60.74,75.13,3,4.66,6106,113.339282,123.171601,132.864442,139.433449,I,Above,Gable,0,5701,,67.93425803,0,0,,,,1,1,,0.03,nav,1,2009,3,, 22610,NJBF000054523,17 S THURLOW AVE,Margate City,NJ,39.32362073,-74.50853949,RES1,3001,,19,NE,1949,1949,3102,2,1,1727.290082,1727.290082,3505,NO,33.99,48.07,3,-2.39,6106,113.383102,123.207052,132.901484,139.47443,I,Above,Gable,0,5701,,41.03076424,0,1.2,,,,1,1,,0.03,nav,1,1949,2,, 22611,NJBF000058791,32 N DELAVAN AVE,Margate City,NJ,39.3329448,-74.49801882,RES1,3001,,17,NE,1946,1946,3102,1,1,1197.569469,1197.569469,3505,NO,12.85,27.7,3,-0.16,6106,113.479406,123.287107,132.992717,139.566138,I,Above,Gable,0,5701,,20.27450618,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 22612,NJBF000055374,100 N THURLOW AVE,Margate City,NJ,39.32591876,-74.51129824,RES1,3001,,17,NE,1951,1951,3102,2,1,1853.391769,1853.391769,3505,NO,27.27,34.16,3,-2.11,6106,113.288786,123.132114,132.825638,139.389255,I,Above,Hip,0,5701,,30.71203314,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 22613,NJBF000056008,9117 FREMONT AVE,Margate City,NJ,39.32751389,-74.51634151,RES1,3001,,21,NE,1999,1999,3102,2,1,2469.675638,2469.675638,3505,NO,33.15,40.21,3,-2.21,6106,113.154807,123.025021,132.716008,139.265524,I,Above,Flat,0,5701,,36.6828828,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 22614,NJBF000059637,67 SEASIDE COURT,Margate City,NJ,39.33459434,-74.50804669,RES1,3001,,19,NE,1997,1997,3101,2,1,1291.141668,1291.141668,3505,NO,38.59,46.27,3,4.82,6110,113.234859,123.090933,132.788903,139.33856,I,Above,Hip,0,5701,,42.42895755,0,1.1,,,,1,1,,0.35,nav,1,1997,2,, 22615,NJBF000055659,9135 FREMONT AVE,Margate City,NJ,39.326675,-74.51645953,RES1,3001,,21,NE,2003,2003,3102,2,1,3271.324938,3271.324938,3505,NO,32.28,45.89,3,2.55,6106,113.16464,123.032558,132.723188,139.274157,I,Above,Gable,0,5701,,39.08457391,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 22616,NJBF000057988,17 S BARCLAY AVE,Margate City,NJ,39.331512,-74.493441,RES1,3001,,19,NE,1930,1930,3102,3,1,993.4720711,993.4720711,3505,NO,30.98,41.69,3,-1.19,6106,113.600459,123.384431,133.093795,139.67929,I,Above,Hip,0,5701,,36.33460392,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 22617,NJBF000058323,5 S BARCLAY AVE,Margate City,NJ,39.33209396,-74.49388496,RES1,3001,,19,NE,1928,1928,3102,2,1,1266.45983,1266.45983,3505,NO,43.56,50.61,3,8.12,6106,113.582484,123.370009,133.079109,139.662109,I,Above,Hip,0,5701,,47.08284675,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22618,NJBF000058261,7 S BARCLAY AVE,Margate City,NJ,39.3319965,-74.49380175,RES1,3001,,19,NE,1928,1928,3102,2,1,1405.892224,1405.892224,3505,NO,43.6,57.81,3,8.39,6106,113.585678,123.372572,133.081725,139.665161,I,Above,Hip,0,5701,,50.70551709,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22619,NJBF000055405,5 S NASSAU AVE,Margate City,NJ,39.32600954,-74.50522891,RES1,3001,,20,NE,1952,1952,3102,2,1,1951.778918,1951.778918,3505,NO,30.1,39.72,3,5.84,6106,113.420398,123.238105,132.935907,139.511612,I,Above,Flat,0,5701,,34.90916999,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 22620,NJBF000055749,13 S KENYON AVE,Margate City,NJ,39.32688501,-74.50355883,RES1,3001,,19,NE,1954,1954,3102,2,1,1208.133949,1208.133949,3505,NO,25.58,33.05,3,4.26,6106,113.444267,123.257626,132.957016,139.534441,I,Above,Gable,0,5701,,29.31504711,0,0,,,,1,1,,0.03,nav,1,1954,2,, 22621,NJBF000055019,3 S RUMSON AVE,Margate City,NJ,39.32490826,-74.50790057,RES1,3001,,19,NE,1935,1935,3102,2,1,2247.385934,2247.385934,3505,NO,42.28,50.45,3,8.38,6106,113.378044,123.203556,132.898987,139.471248,I,Above,Hip,0,5701,,46.3660424,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 22622,NJBF000055936,108 N QUINCY AVE,Margate City,NJ,39.32733201,-74.50983416,RES1,3001,,47,NE,1930,1930,3102,2,2,1199.584192,1199.584192,3505,NO,36.72,43.27,3,2.07,6106,113.300102,123.141771,132.836779,139.400785,I,Above,Flat,0,5701,,39.99567742,0,0.2,,,,1,1,,0.03,nav,1,1930,2,, 22623,NJBF000056609,324 N THURLOW AVE,Margate City,NJ,39.3288689,-74.51415205,RES1,3001,,17,NE,1947,1947,3102,1,1,2744.536456,2744.536456,3505,NO,10.31,20.67,3,-1.44,6106,113.182883,123.048103,132.740814,139.2923,I,Above,Gable,0,5701,,15.49028587,0,1.2,,,,1,1,,0.03,nav,1,1947,1,, 22624,NJBF000056490,205 N QUINCY AVE,Margate City,NJ,39.32858819,-74.51046469,RES1,3001,,17,NE,1955,1955,3101,1,1,1429.543604,1429.543604,3505,NO,21.45,30.69,3,7.94,6106,113.267911,123.116317,132.811305,139.37139,I,Above,Gable,0,5701,,26.06721135,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22625,NJBF000055863,15 N PEMBROKE AVE,Margate City,NJ,39.32715232,-74.5081643,RES1,3001,,22,NE,2015,2015,3102,3,1,1558.720073,1558.720073,3505,NO,45.49,58.17,3,7.92,6106,113.339358,123.173284,132.869381,139.437186,I,Above,Hip,0,5701,,51.83349103,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 22626,NJBF000055452,109 N UNION AVE,Margate City,NJ,39.32613716,-74.51189622,RES1,3001,,21,NE,2014,2014,3102,2,1,905.215201,905.215201,3505,NO,43.89,53.34,3,7.04,6106,113.272479,123.119082,132.812301,139.374258,I,Above,Gable,0,5701,,48.61362521,0,0,,,,1,1,,0.03,nav,1,2014,2,, 22627,NJBF000055207,9 S OSBORNE AVE,Margate City,NJ,39.32544525,-74.50559076,RES1,3001,,20,NE,2006,2006,3103,3,1,2788.668099,2788.668099,3505,NO,55.54,69.84,3,8.27,6106,113.420735,123.238163,132.935476,139.5114,I,Above,Flat,0,5701,,62.68964588,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 22628,NJBF000055123,5 S QUINCY AVE,Margate City,NJ,39.32521012,-74.5072702,RES1,3001,,19,NE,1910,1910,3103,3,1,2113.490367,2113.490367,3505,NO,56.42,68.45,3,0.97,6106,113.387413,123.211228,132.907229,139.480254,I,Above,Hip,0,5701,,62.43726936,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 22629,NJBF000056557,307 N THURLOW AVE,Margate City,NJ,39.32874808,-74.51345246,RES1,3001,,17,NE,1962,1962,3102,2,1,1205.218437,1205.218437,3505,NO,33.68,40.89,3,8.31,6106,113.200014,123.061821,132.754928,139.308224,I,Above,Gable,0,5701,,37.28695564,0,0,,,,1,1,,0.03,nav,1,1962,2,, 22630,NJBF000060606,24 W GILMAR CIRCLE,Margate City,NJ,39.33626984,-74.50729941,RES1,3001,,17,NE,1964,1964,3101,1,1,1447.525778,1447.525778,3505,NO,21.03,35.87,3,6.01,6106,113.227772,123.085288,132.783985,139.32987,I,Above,Gable,0,5701,,28.45007262,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 22631,NJBF000056121,8606 WINCHESTER AVE,Margate City,NJ,39.32776954,-74.50746129,RES1,3001,,17,NE,1928,1928,3102,2,1,1396.298648,1396.298648,3505,NO,26.88,41.52,3,3.72,6106,113.345767,123.178646,132.87545,139.443478,I,Above,Flat,0,5701,,34.2020572,0,0,,,,1,1,,0.03,nav,1,1928,2,, 22632,NJBF000056216,313 N WILSON AVE,Margate City,NJ,39.32798353,-74.51546513,RES1,3001,,47,NE,1950,1950,3102,2,2,842.9644389,842.9644389,3505,NO,40.51,55.36,3,2.67,6106,113.167086,123.035084,132.726735,139.277227,I,Above,Hip,0,5701,,47.93337204,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22633,NJBF000056708,313 N THURLOW AVE,Margate City,NJ,39.32910217,-74.51380128,RES1,3001,,17,NE,1966,1966,3102,2,1,1963.377243,1963.377243,3505,NO,35.08,44.85,3,3.62,6106,113.187177,123.051631,132.744624,139.296365,I,Above,Hip,0,5701,,39.96605395,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 22634,NJBF000056143,5 N LANCASTER AVE,Margate City,NJ,39.32781138,-74.50505689,RES1,3001,,NaN,NE,1942,0,3102,2,1,2030.836368,2030.836368,3505,NO,31.74,38,3,5.1,6106,113.397941,123.220629,132.919202,139.491974,I,Above,Hip,0,5701,,34.87043375,0,0,,,,1,1,,0.03,nav,1,1942,2,, 22635,NJBF000055739,117 N THURLOW AVE,Margate City,NJ,39.3268495,-74.511628,RES1,3001,,21,NE,2017,2017,3101,1,1,1306.824284,1306.824284,3505,NO,21.23,31.63,3,6.25,6106,113.267849,123.115648,132.809299,139.370471,I,Above,Hip,0,5701,,26.42873147,0,0,,,,1,1,,0.03,nav,1,2017,1,, 22636,NJBF000063378,7509 BURK AVE,Margate City,NJ,39.34154288,-74.50353572,RES1,3001,,18,NE,1981,1981,3102,2,1,2143.760505,2143.760505,3505,NO,32.68,46.53,3,-2.53,6106,113.238299,123.092939,132.794631,139.327827,I,Above,Gable,0,5701,,39.60174747,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 22637,NJBF000056525,8502 WINCHESTER AVE,Margate City,NJ,39.3286736,-74.50593232,RES1,3001,,17,NE,1948,1948,3102,2,1,1182.607263,1182.607263,3505,NO,25.99,34.83,3,0.97,6106,113.366215,123.195359,132.893559,139.462819,I,Above,Hip,0,5701,,30.41189059,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22638,NJBF000055997,106 N PEMBROKE AVE,Margate City,NJ,39.32748963,-74.50906056,RES1,3001,,17,NE,1938,1938,3102,3,1,1333.868671,1333.868671,3505,NO,49.23,58.01,3,8.42,6106,113.314745,123.153603,132.849192,139.414493,I,Above,Flat,0,5701,,53.61909732,0,0,,,,1,1,,0.03,nav,1,1938,3,, 22639,NJBF000055625,100 N RUMSON AVE,Margate City,NJ,39.3266,-74.5100925,RES1,3001,,17,NE,1950,1950,3101,1,1,1025.177926,1025.177926,3505,NO,17.26,28.69,3,5.47,6106,113.305178,123.145581,132.840158,139.405036,I,Above,Hip,0,5701,,22.97534642,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22640,NJBF000056579,28 N KENYON AVE,Margate City,NJ,39.32878784,-74.50575301,RES1,3001,,17,NE,1925,1925,3102,2,1,584.225131,584.225131,3505,NO,30.66,41.24,3,4.59,6106,113.368497,123.197226,132.895592,139.464968,I,Above,Hip,0,5701,,35.94994699,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 22641,NJBF000058713,410 N KENYON AVE,Margate City,NJ,39.33279039,-74.50939497,RES1,3001,,17,NE,1972,1972,3102,2,1,2045.071094,2045.071094,3505,NO,28.26,42.27,3,4.48,6106,113.230781,123.087486,132.784223,139.336299,I,Above,Gable,0,5701,,35.26231162,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 22642,NJBF000057047,206 N MANSFIELD AVE,Margate City,NJ,39.32981286,-74.50852242,RES1,3001,,17,NE,1941,1941,3102,2,1,1730.59951,1730.59951,3505,NO,38.9,45.56,3,6.21,6106,113.29281,123.13667,132.833339,139.394768,I,Above,Flat,0,5701,,42.22859733,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 22643,NJBF000054967,6 S QUINCY AVE,Margate City,NJ,39.32477562,-74.50747975,RES1,3001,,20,NE,1986,1986,3102,2,1,1875.825288,1875.825288,3505,NO,19.23,29.77,3,-2.42,6106,113.389202,123.212488,132.908162,139.48146,I,Above,Gable,0,5701,,24.49700012,0,0,,,,1,1,,0.03,nav,1,1986,2,, 22644,NJBF000056043,108 N PEMBROKE AVE,Margate City,NJ,39.32760069,-74.50912786,RES1,3001,,22,NE,2015,2015,3102,2,1,1008.260571,1008.260571,3505,NO,33.22,39.62,3,6.88,6106,113.311654,123.151155,132.846735,139.411676,I,Above,Gable,0,5701,,36.42215991,0,1.2,,,,1,1,,0.03,nav,1,2015,2,, 22645,NJBF000058761,8201 AMHERST AVE,Margate City,NJ,39.33288437,-74.50521616,RES1,3001,,20,NE,2005,2005,3101,3,1,1769.152719,1769.152719,3505,NO,45.17,56.79,3,0.29,6106,113.321576,123.160318,132.860095,139.420363,I,Above,Hip,0,5701,,50.98180187,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 22646,NJBF000055987,115 N RUMSON AVE,Margate City,NJ,39.32745737,-74.51034773,RES1,3001,,20,NE,1950,1950,3102,2,1,1306.618938,1306.618938,3505,NO,31.36,41.7,3,-1.25,6106,113.287,123.13128,132.825984,139.388665,I,Above,Gable,0,5701,,36.5325068,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22647,NJBF000055722,7 S LANCASTER AVE,Margate City,NJ,39.32681766,-74.50423499,RES1,3001,,17,NE,1950,1950,3102,1,1,1464.243919,1464.243919,3505,NO,24.91,38.75,3,8.5,6106,113.430411,123.246448,132.945297,139.521538,I,Above,Gable,0,5701,,31.8325697,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22648,NJBF000056106,9003 AMHERST AVE,Margate City,NJ,39.32774478,-74.51414868,RES1,3001,,17,NE,1948,1948,3102,1,1,1517.084288,1517.084288,3505,NO,15.13,22.84,3,2.28,6106,113.199444,123.060996,132.753361,139.307277,I,Above,Hip,0,5701,,18.98426936,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 22649,NJBF000060898,216 N BRUNSWICK DR,Margate City,NJ,39.33671896,-74.49928234,RES1,3001,,17,NE,1950,1950,3103,2,1,1122.165916,1122.165916,3505,NO,30.72,35.95,3,1.74,6106,113.398776,123.222335,132.927438,139.48585,I,Above,Hip,0,5701,,33.33505236,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22650,NJBF000055450,9 S MANSFIELD AVE,Margate City,NJ,39.32613536,-74.50442317,RES1,3001,,19,NE,1953,1953,3102,2,1,2109.197632,2109.197632,3505,NO,32,43.88,3,5.6,6106,113.436241,123.250908,132.949363,139.526415,I,Above,Flat,0,5701,,37.9387362,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 22651,NJBF000055506,19 S LANCASTER AVE,Margate City,NJ,39.3262705,-74.503812,RES1,3001,,18,NE,1948,1948,3102,2,1,1413.264215,1413.264215,3505,NO,37.45,52.3,3,6.25,6106,113.447669,123.260159,132.959129,139.537127,I,Above,Gable,0,5701,,44.87316425,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22652,NJBF000055412,8509 ATLANTIC AVE,Margate City,NJ,39.32603114,-74.50408391,RES1,3001,,19,NE,1950,1950,3102,2,1,2391.058687,2391.058687,3505,NO,24.05,37.63,3,1.39,6106,113.44519,123.258079,132.956751,139.534624,I,Above,Flat,0,5701,,30.83898945,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 22653,NJBF000055541,102 N SUMNER AVE,Margate City,NJ,39.32636782,-74.51077601,RES1,3001,,17,NE,1931,1931,3102,2,1,1346.965047,1346.965047,3505,NO,33.06,42.96,3,4.78,6106,113.293602,123.136176,132.830212,139.394096,I,Above,Hip,0,5701,,38.01214693,0,1.1,,,,1,1,,0.03,nav,1,1931,2,, 22654,NJBF000058370,308 N JEROME AVE,Margate City,NJ,39.33218447,-74.50799538,RES1,3001,,17,NE,1965,1965,3101,1,1,1548.869574,1548.869574,3505,NO,15.68,21.81,3,0.73,6106,113.270301,123.119088,132.81669,139.373298,I,Above,Gable,0,5701,,18.74434976,0,0,,,,1,1,,0.03,nav,1,1965,1,, 22655,NJBF000054156,8 S BENSON AVE,Margate City,NJ,39.3225689,-74.51249291,RES1,3001,,49,NE,1988,1988,3102,2,2,1275.177799,1275.177799,3505,NO,38.48,49.58,3,3.05,6106,113.312432,123.149529,132.840846,139.407438,I,Above,Gable,0,5701,,44.0289602,0,0,,,,1,1,,0.03,nav,1,1988,2,, 22656,NJBF000054826,15 S RUMSON AVE,Margate City,NJ,39.32441135,-74.50745464,RES1,3001,,20,NE,2008,2008,3103,3,1,1902.78536,1902.78536,3505,NO,52,65.64,3,6.19,6106,113.395129,123.217106,132.912644,139.486547,I,Above,Hip,0,5701,,58.8187079,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 22657,NJBF000058661,3 S ANDOVER AVE,Margate City,NJ,39.33269993,-74.49289017,RES1,3001,,19,NE,1945,1945,3102,2,1,1713.883578,1713.883578,3505,NO,26.36,37.91,3,0.53,6106,113.59589,123.380864,133.091026,139.673634,I,Above,Hip,0,5701,,32.13737339,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 22658,NJBF000057336,435 N THURLOW AVE,Margate City,NJ,39.33039232,-74.51503178,RES1,3001,,17,NE,1945,1945,3102,2,2,1592.174619,1592.174619,3505,NO,43.08,52.72,3,8.53,6106,113.141317,123.015226,132.707814,139.253816,I,Above,Gable,0,5701,,47.90024804,0,1.2,,,,1,1,,0.03,nav,1,1945,2,, 22659,NJBF000055736,8512 VENTNOR AVE,Margate City,NJ,39.3268418,-74.5047722,RES1,3001,,NaN,NE,1950,0,3101,1,1,2008.773013,2008.773013,3505,NO,11.93,22.02,3,-1.37,6106,113.418281,123.236691,132.935143,139.510297,I,Above,Hip,0,5701,,16.97750409,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22660,NJBF000059693,219 N ESSEX AVE,Margate City,NJ,39.33469816,-74.5007444,RES1,3001,,21,NE,2017,2017,3102,3,1,1091.810218,1091.810218,3505,NO,41.06,54.29,3,-2.12,6106,113.394651,123.219081,132.922702,139.485777,I,Above,Hip,0,5701,,47.67665789,0,0,,,,1,1,,0.03,nav,1,2017,3,, 22661,NJBF000056018,122 N RUMSON AVE,Margate City,NJ,39.32753168,-74.51093272,RES1,3001,,17,NE,1925,1925,3102,2,1,1108.094522,1108.094522,3505,NO,23.09,37.07,3,0.64,6106,113.273074,123.120108,132.814449,139.375745,I,Above,Flat,0,5701,,30.07799325,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22662,NJBF000055484,103 N THURLOW AVE,Margate City,NJ,39.32621799,-74.51102444,RES1,3001,,47,NE,1923,1923,3102,2,2,1701.731633,1701.731633,3505,NO,34.95,42.92,3,2.03,6106,113.290379,123.13352,132.827337,139.390981,I,Above,Hip,0,5701,,38.93773098,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 22663,NJBF000055800,6 N NASSAU AVE,Margate City,NJ,39.32700736,-74.50673901,RES1,3001,,17,NE,1935,1935,3102,2,1,1375.027277,1375.027277,3505,NO,26.62,34.64,3,0.59,6106,113.37273,123.200084,132.897145,139.468108,I,Above,Gable,0,5701,,30.6303929,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 22664,NJBF000053089,9711 ATLANTIC AVE,Margate City,NJ,39.31862089,-74.5163893,RES3D,3001,,20,ME,1954,1954,3301,1,1,5425.09537,5425.09537,3505,NO,19.42,30.56,3,4.46,6106,113.287325,123.126725,132.813554,139.377501,I,Above,Flat,0,NaN,,24.98829213,0,0,,,,1,1,,0.03,nav,1,1954,1,, 22665,NJBF000056511,308 N THURLOW AVE,Margate City,NJ,39.32863479,-74.51383422,RES1,3001,,17,NE,1950,1950,3102,2,1,1015.574127,1015.574127,3505,NO,32.92,39.27,3,3.53,6106,113.193287,123.056378,132.749215,139.301919,I,Above,Flat,0,5701,,36.09261631,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22666,NJBF000055913,111 N RUMSON AVE,Margate City,NJ,39.32726957,-74.51015134,RES1,3001,,17,NE,1948,1948,3102,2,1,1653.137641,1653.137641,3505,NO,27.06,34.36,3,1.65,6106,113.294059,123.136888,132.831661,139.395127,I,Above,Flat,0,5701,,30.71099141,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22667,NJBF000057771,445 N THURLOW AVE,Margate City,NJ,39.33114134,-74.51575892,RES1,3001,,21,NE,2012,2012,3102,3,1,2270.459991,2270.459991,3505,NO,47.79,60.94,3,3.83,6106,113.114438,122.993882,132.686212,139.228747,I,Above,Gable,0,5701,,54.3642141,0,0,,,,1,1,,0.03,nav,1,2012,3,, 22668,NJBF000055116,11 S PEMBROKE AVE,Margate City,NJ,39.32518257,-74.50630559,RES1,3001,,19,NE,1925,1925,3102,2,1,1569.321213,1569.321213,3505,NO,40.06,52.74,3,4.02,6106,113.408918,123.22854,132.925225,139.500178,I,Above,Gable,0,5701,,46.39903702,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 22669,NJBF000055751,103 N RUMSON AVE,Margate City,NJ,39.326891,-74.50983005,RES1,3001,,20,NE,2004,2004,3102,3,1,1486.440845,1486.440845,3505,NO,32.1,40.66,3,-2.87,6106,113.30665,123.146876,132.841734,139.406605,I,Above,Gable,0,5701,,36.3786035,0,0,,,,1,1,,0.03,nav,1,2004,3,, 22670,NJBF000055933,8705 WINCHESTER AVE,Margate City,NJ,39.32732342,-74.50892111,RES1,3001,,17,NE,1946,1946,3102,2,1,1609.294738,1609.294738,3505,NO,26.78,33.34,3,2.08,6106,113.320256,123.157978,132.853607,139.419526,I,Above,Gable,0,5701,,30.05920924,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 22671,NJBF000056349,14 N KENYON AVE,Margate City,NJ,39.32826904,-74.50508376,RES1,3001,,17,NE,1948,1948,3101,1,1,1558.945981,1558.945981,3505,NO,14.42,21.78,3,1.51,6106,113.390707,123.214944,132.913646,139.485445,I,Above,Flat,0,5701,,18.09944792,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 22672,NJBF000055912,212 N UNION AVE,Margate City,NJ,39.32726464,-74.51348131,RES1,3001,,17,NE,1925,1925,3101,1,1,1288.902507,1288.902507,3505,NO,15.63,24.13,3,2.79,6106,113.221144,123.078252,132.77087,139.327235,I,Above,Gable,0,5701,,19.87670604,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 22673,NJBF000054934,15 S QUINCY AVE,Margate City,NJ,39.32469195,-74.50673353,RES1,3001,,21,NE,2009,2009,3103,3,1,2122.981871,2122.981871,3505,NO,57.2,68.57,3,4.8,6106,113.406766,123.226604,132.922776,139.497657,I,Above,Hip,0,5701,,62.88466446,0,0,,,,1,1,,0.03,nav,1,2009,3,, 22674,NJBF000058070,105 N GRANVILLE AVE,Margate City,NJ,39.33165522,-74.50185649,RES1,3001,,47,NE,1927,1927,3102,2,2,1521.173843,1521.173843,3505,NO,33.73,47.61,3,4.96,6106,113.413103,123.233667,132.935803,139.505944,I,Above,Gable,0,5701,,40.66891051,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 22675,NJBF000056992,423 N THURLOW AVE,Margate City,NJ,39.32969908,-74.51436637,RES1,3001,,18,NE,1981,1981,3102,2,1,1797.66433,1797.66433,3505,NO,20.73,33.97,3,-1.67,6106,113.166052,123.034863,132.727676,139.276801,I,Above,Gable,0,5701,,27.3462423,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 22676,NJBF000055850,11 S KNIGHT AVE,Margate City,NJ,39.3271235,-74.5030285,RES1,3001,,18,NE,1968,1968,3102,2,1,1223.798911,1223.798911,3505,NO,39.35,47.16,3,5.31,6106,113.452462,123.2643,132.964186,139.542203,I,Above,Gable,0,5701,,43.25384551,0,0,,,,1,1,,0.03,nav,1,1968,2,, 22677,NJBF000056279,102 N NASSAU AVE,Margate City,NJ,39.32811648,-74.50782747,RES1,3001,,17,NE,1946,1946,3102,2,1,2003.126229,2003.126229,3505,NO,22.76,28.4,3,1.75,6106,113.332697,123.168245,132.864901,139.43148,I,Above,Flat,0,5701,,25.57999911,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 22678,NJBF000056790,11 N IROQUOIS AVE,Margate City,NJ,39.32926767,-74.50280389,RES1,3001,,NaN,NE,1925,0,3102,2,1,1413.417212,1413.417212,3505,NO,30.79,41.9,3,6.21,6106,113.426389,123.243903,132.94466,139.518812,I,Above,Gable,0,5701,,36.34598077,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22679,NJBF000060309,407 N HUNTINGTON AVE,Margate City,NJ,39.33575251,-74.50715798,RES1,3001,,17,NE,1963,1963,3101,1,1,1795.040698,1795.040698,3505,NO,19.05,31.17,3,4.65,6110,113.238149,123.093602,132.792353,139.340175,I,Above,Gable,0,5701,,25.10935018,0,1.2,,,,1,1,,0.35,nav,1,1963,1,, 22680,NJBF000056524,8 N JASPER AVE,Margate City,NJ,39.3286723,-74.50357983,RES1,3001,,17,NE,1948,1948,3101,1,1,1470.860021,1470.860021,3505,NO,16.44,26.44,3,-2.18,6106,113.417921,123.236944,132.936917,139.510842,I,Above,Hip,0,5701,,21.44173727,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 22681,NJBF000055377,,Margate City,NJ,39.32592708,-74.50513843,RES1,3001,,NaN,NE,1969,0,3102,2,1,1916.229319,1916.229319,3505,NO,28.44,42.16,3,-2.75,6106,113.423606,123.240657,132.938496,139.514514,I,Above,Hip,0,5701,,35.29988414,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22682,NJBF000055572,3 S MANSFIELD AVE,Margate City,NJ,39.32645768,-74.50471341,RES1,3001,,19,NE,1955,1955,3102,2,1,2296.788019,2296.788019,3505,NO,38.03,50.64,3,6.67,6106,113.425171,123.242107,132.940464,139.516409,I,Above,Hip,0,5701,,44.33595069,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 22683,NJBF000056317,122 N PEMBROKE AVE,Margate City,NJ,39.32820341,-74.5097473,RES1,3001,,19,NE,1998,1998,3102,3,1,1340.602355,1340.602355,3505,NO,46.73,51.89,3,2.56,6106,113.289285,123.133371,132.828724,139.391141,I,Above,Hip,0,5701,,49.30661186,0,1.1,,,,1,1,,0.03,nav,1,1998,3,, 22684,NJBF000063618,620 N BARCLAY AVE,Margate City,NJ,39.34221537,-74.5036838,RES1,3001,,20,NE,1988,1988,3102,2,1,2968.097,2968.097,3505,NO,20.85,32.29,3,-1.76,6106,113.225892,123.082825,132.784359,139.314622,I,Above,Hip,0,5701,,26.56771103,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 22685,NJBF000056941,24 N IROQUOIS AVE,Margate City,NJ,39.32959401,-74.50363766,RES1,3001,,17,NE,1925,1925,3102,2,1,1463.42387,1463.42387,3505,NO,31.19,38.47,3,2.92,6106,113.403362,123.225459,132.925661,139.497456,I,Above,Gable,0,5701,,34.83041393,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22686,NJBF000058966,8517 WELLINGTON AVE,Margate City,NJ,39.33327398,-74.51075628,RES1,3001,,18,NE,1970,1970,3102,2,1,1677.511276,1677.511276,3505,NO,38.66,48.12,3,4.42,6106,113.193857,123.057961,132.753855,139.301743,I,Above,Hip,0,5701,,43.38901459,0,0,,,,1,1,,0.03,nav,1,1970,2,, 22687,NJBF000059065,12 S COLMAR CIRCLE,Margate City,NJ,39.33347672,-74.5045433,RES1,3001,,17,NE,1961,1961,3101,2,1,1464.580187,1464.580187,3505,NO,34.67,41.59,3,5.59,6106,113.328007,123.165535,132.865932,139.4258,I,Above,Hip,0,5701,,38.13105855,0,0,,,,1,1,,0.03,nav,1,1961,2,, 22688,NJBF000056635,14 N JASPER AVE,Margate City,NJ,39.328938,-74.50382562,RES1,3001,,18,NE,1987,1987,3102,2,1,1344.350797,1344.350797,3505,NO,32.27,37.44,3,7.4,6106,113.408677,123.229576,132.929441,139.502319,I,Above,Hip,0,5701,,34.85716229,0,0,,,,1,1,,0.03,nav,1,1987,2,, 22689,NJBF000059008,301 N HUNTINGTON AVE,Margate City,NJ,39.33335587,-74.50494915,RES1,3001,,17,NE,1962,1962,3101,2,1,2556.405241,2556.405241,3505,NO,44.28,50.4,3,8.78,6106,113.320765,123.159715,132.85978,139.419216,I,Above,Gable,0,5701,,47.3356042,0,0,,,,1,1,,0.03,nav,1,1962,2,, 22690,NJBF000059988,318 N GLADSTONE AVE,Margate City,NJ,39.33519971,-74.50436083,RES1,3001,,17,NE,1958,1958,3101,2,1,1308.019281,1308.019281,3505,NO,27.48,37.65,3,0.72,6106,113.307724,123.149346,132.850141,139.405052,I,Above,Gable,0,5701,,32.56183249,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 22691,NJBF000059409,1 E COLMAR CIRCLE,Margate City,NJ,39.33419407,-74.50335604,RES1,3001,,17,NE,1948,1948,3101,1,1,1119.161632,1119.161632,3505,NO,13.57,22.49,3,-0.67,6106,113.344072,123.17847,132.879907,139.439866,I,Above,Flat,0,5701,,18.02673873,0,0,,,,1,1,,0.03,nav,1,1948,1,, 22692,NJBF000054290,,Margate City,NJ,39.32297,-74.5207085,RES3B,3004,,NaN,ME,1969,0,3301,2,1,3813.756647,3813.756647,3505,NO,32.22,42.28,3,4.12,6106,113.127486,123.000566,132.687357,139.235607,I,Above,Flat,0,NaN,,37.25353323,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22693,NJBF000055251,109 S KENYON AVE,Margate City,NJ,39.32557199,-74.5025232,RES1,3001,,19,NE,1948,1948,3102,2,1,960.9618613,960.9618613,3505,NO,35.17,47.73,3,3.58,6106,113.486104,123.290877,132.990574,139.572101,I,Above,Flat,0,5701,,41.45157652,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22694,NJBF000059235,309 N HUNTINGTON AVE,Margate City,NJ,39.33382618,-74.50533199,RES1,3001,,17,NE,1953,1953,3101,1,1,1577.840187,1577.840187,3505,NO,16.6,22.7,3,-2.36,6106,113.305658,123.147634,132.847488,139.404799,I,Above,Hip,0,5701,,19.64827408,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 22695,NJBF000061192,7512 FREMONT AVE,Margate City,NJ,39.33721858,-74.49955153,RES1,3001,,19,NE,2009,2009,3103,2,1,1834.502153,1834.502153,3505,NO,34.3,42.78,3,3.06,6106,113.38588,123.211945,132.916863,139.472985,I,Above,Gable,0,5701,,38.53812079,0,1.1,,,,1,1,,0.03,nav,1,2009,2,, 22696,NJBF000060789,65 BAYSIDE COURT,Margate City,NJ,39.33654975,-74.50993928,RES1,3001,,19,NE,1989,1989,3102,2,1,2185.409073,2185.409073,3505,NO,23.26,37.86,3,-1.21,6106,113.165461,123.035424,132.732264,139.272046,I,Above,Hip,0,5701,,30.5615523,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 22697,NJBF000060504,213 N CLARENDON AVE,Margate City,NJ,39.33609358,-74.49905388,RES1,3001,,17,NE,1953,1953,3103,2,1,1360.845662,1360.845662,3505,NO,28.52,34.53,3,-0.3,6106,113.412492,123.233384,132.938614,139.499681,I,Above,Hip,0,5701,,31.52678068,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 22698,NJBF000056699,12 N IROQUOIS AVE,Margate City,NJ,39.32906985,-74.50312359,RES1,3001,,20,NE,2011,2011,3102,3,1,1382.926208,1382.926208,3505,NO,55.82,69.85,3,5.88,6106,113.422204,123.24049,132.940937,139.514902,I,Above,Gable,0,5701,,62.83909161,0,0,,,,1,1,,0.03,nav,1,2011,3,, 22699,NJBF000060892,27 W GILMAR CIRCLE,Margate City,NJ,39.3367103,-74.50710309,RES1,3001,,17,NE,1967,1967,3101,1,1,2234.586288,2234.586288,3505,NO,19.81,33.73,3,3.34,6106,113.225942,123.08381,132.782686,139.327504,I,Above,Flat,0,5701,,26.77329063,0,0,,,,1,1,,0.03,nav,1,1967,1,, 22700,NJBF000057384,507 N UNION AVE,Margate City,NJ,39.33047589,-74.51589569,RES1,3001,,16,NE,1926,1926,3102,2,2,789.9314436,789.9314436,3505,NO,26.13,34.9,3,5.08,6106,113.12111,122.999041,132.691137,139.234991,I,Above,Hip,0,5701,,30.51549183,0,0,,,,1,1,,0.03,nav,1,1926,2,, 22701,NJBF000057285,28 N HUNTINGTON AVE,Margate City,NJ,39.33029197,-74.50267654,RES1,3001,,17,NE,1950,1950,3101,1,1,1151.061137,1151.061137,3505,NO,20.96,29.3,3,7.2,6106,113.414484,123.234549,132.935693,139.507728,I,Above,Hip,0,5701,,25.13197497,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22702,NJBF000055589,125 N UNION AVE,Margate City,NJ,39.32650442,-74.51224745,RES1,3001,,17,NE,1930,1930,3102,2,1,1400.024345,1400.024345,3505,NO,33.87,40.28,3,8.18,6106,113.259383,123.108698,132.801827,139.362347,I,Above,Hip,0,5701,,37.07334873,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22703,NJBF000056794,24 N JASPER AVE,Margate City,NJ,39.32927561,-74.50417586,RES1,3001,,21,NE,1985,2018,3102,2,1,1330.63121,1330.63121,3505,NO,37.57,51.94,3,-1.15,6106,113.39611,123.219554,132.919251,139.490702,I,Above,Hip,0,5701,,44.75473549,0,0,,,,1,1,,0.03,nav,1,1985,2,, 22704,NJBF000058281,4 S BARCLAY AVE,Margate City,NJ,39.33202534,-74.494265,RES1,3001,,21,NE,2014,2014,3102,3,1,1162.933629,1162.933629,3505,NO,49.84,57.81,3,6.26,6106,113.575086,123.364041,133.072777,139.655369,I,Above,Flat,0,5701,,53.82267969,0,0,,,,1,1,,0.03,nav,1,2014,3,, 22705,NJBF000056652,1 N HANOVER AVE,Margate City,NJ,39.32897139,-74.50173823,RES1,3001,,18,NE,1950,1950,3102,2,1,2468.733491,2468.733491,3505,NO,32.11,38.7,3,6.2,6106,113.454095,123.266124,132.967635,139.544487,I,Above,Flat,0,5701,,35.40558582,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22706,NJBF000059581,9 E COLMAR CIRCLE,Margate City,NJ,39.33449236,-74.50409708,RES1,3001,,17,NE,1960,1960,3101,1,1,1448.381601,1448.381601,3505,NO,16.8,28.5,3,4.51,6106,113.323514,123.161991,132.862894,139.42054,I,Above,Flat,0,5701,,22.65107954,0,0,,,,1,1,,0.03,nav,1,1960,1,, 22707,NJBF000056755,25 N JEROME AVE,Margate City,NJ,39.32919434,-74.5044031,RES1,3001,,17,NE,1956,1956,3102,2,1,1883.386431,1883.386431,3505,NO,26.83,35.92,3,1.23,6106,113.392302,123.216472,132.915972,139.487156,I,Above,Hip,0,5701,,31.37134924,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 22708,NJBF000058735,37 N DOUGLAS AVE,Margate City,NJ,39.33284497,-74.49818986,RES1,3001,,17,NE,1940,1940,3102,2,1,1252.324756,1252.324756,3505,NO,24.98,36.98,3,-1.16,6106,113.477045,123.2852,132.990642,139.564073,I,Above,Hip,0,5701,,30.97987225,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 22709,NJBF000060909,69 BAYSIDE COURT,Margate City,NJ,39.33672871,-74.50966765,RES1,3001,,19,NE,1989,1989,3102,2,1,1504.996302,1504.996302,3505,NO,28.55,39.69,3,3.47,6106,113.16894,123.038203,132.735244,139.274993,I,Above,Hip,0,5701,,34.11733303,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 22710,NJBF000056354,20 N LANCASTER AVE,Margate City,NJ,39.32829422,-74.50612323,RES1,3001,,17,NE,1981,1981,3101,1,1,2083.47764,2083.47764,3505,NO,20.41,25.82,3,8.55,6106,113.367526,123.196306,132.894247,139.463918,I,Above,Hip,0,5701,,23.11512246,0,0,,,,1,1,,0.03,nav,1,1981,1,, 22711,NJBF000056712,18 N JASPER AVE,Margate City,NJ,39.32910785,-74.50400168,RES1,3001,,17,NE,1925,1925,3102,2,1,1543.94695,1543.94695,3505,NO,25.84,34.93,3,4.08,6106,113.402357,123.224536,132.924317,139.49648,I,Above,Gable,0,5701,,30.38715037,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22712,NJBF000055548,17 S LANCASTER AVE,Margate City,NJ,39.32638213,-74.50389228,RES1,3001,,18,NE,1953,1953,3102,2,1,1673.141179,1673.141179,3505,NO,30.35,44.15,3,6.03,6106,113.444282,123.257471,132.956421,139.534078,I,Above,Flat,0,5701,,37.25057993,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 22713,NJBF000056692,29 N KENYON AVE,Margate City,NJ,39.32905688,-74.50531252,RES1,3001,,18,NE,1935,1935,3102,2,1,987.9423967,987.9423967,3505,NO,39.09,47.99,3,5.93,6106,113.374277,123.201944,132.900718,139.470394,I,Above,Gable,0,5701,,43.53742614,0,0,,,,1,1,,0.03,nav,1,1935,2,, 22714,NJBF000056399,22 N LANCASTER AVE,Margate City,NJ,39.32838487,-74.50619342,RES1,3001,,17,NE,1940,1940,3102,2,1,1246.129606,1246.129606,3505,NO,37.35,51.21,3,6.43,6106,113.364669,123.194035,132.891953,139.461295,I,Above,Gable,0,5701,,44.28305379,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 22715,NJBF000055515,101 S KNIGHT AVE,Margate City,NJ,39.3263032,-74.50237876,RES1,3001,,17,NE,1950,1950,3102,2,1,1377.210135,1377.210135,3505,NO,30.29,38.86,3,4.34,6106,113.478613,123.285096,132.985189,139.565842,I,Above,Flat,0,5701,,34.57433401,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22716,NJBF000060120,322 N GLADSTONE AVE,Margate City,NJ,39.33544319,-74.50462481,RES1,3001,,17,NE,1958,1958,3101,2,1,1670.820024,1670.820024,3505,NO,31.58,42.14,3,2.49,6106,113.29848,123.141937,132.842558,139.396193,I,Above,Gable,0,5701,,36.86361444,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 22717,NJBF000060168,8101 FULTON AVE,Margate City,NJ,39.33551539,-74.50593494,RES1,3001,,17,NE,1959,1959,3101,2,1,1288.075562,1288.075562,3505,NO,22.61,29.39,3,-2.45,6106,113.268522,123.11793,132.817562,139.368497,I,Above,Gable,0,5701,,26.00191956,0,1.2,,,,1,1,,0.03,nav,1,1959,2,, 22718,NJBF000057000,21 N IROQUOIS AVE,Margate City,NJ,39.32971328,-74.50322607,RES1,3001,,17,NE,1925,1925,3102,2,1,1112.335928,1112.335928,3505,NO,41.69,48,3,6.45,6106,113.410712,123.231396,132.931951,139.50428,I,Above,Hip,0,5701,,44.84685254,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22719,NJBF000062944,612 N CLERMONT AVE,Margate City,NJ,39.34055715,-74.50464358,RES1,3001,,18,NE,1962,1962,3102,2,1,1924.949845,1924.949845,3505,NO,41.66,46.92,3,4.39,6106,113.227168,123.084282,132.785127,139.320479,I,Above,Gable,0,5701,,44.29345427,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22720,NJBF000058722,8203 AMHERST AVE,Margate City,NJ,39.33281035,-74.50533703,RES1,3001,,20,NE,2004,2004,3101,3,1,1692.50221,1692.50221,3505,NO,65.02,76.85,3,7.75,6106,113.31996,123.159013,132.858685,139.418924,I,Above,Hip,0,5701,,70.93390419,0,1.2,,,,1,1,,0.03,nav,1,2004,3,, 22721,NJBF000057104,20 N HUNTINGTON AVE,Margate City,NJ,39.3299315,-74.5023385,RES1,3001,,19,NE,1950,1950,3102,2,1,1702.979406,1702.979406,3505,NO,27.67,36.34,3,1.07,6106,113.427101,123.244622,132.945936,139.51948,I,Above,Hip,0,5701,,32.00646556,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22722,NJBF000056964,113 N LANCASTER AVE,Margate City,NJ,39.3296273,-74.50680769,RES1,3001,,17,NE,1954,1954,3101,1,1,1372.050561,1372.050561,3505,NO,20.37,32.23,3,3.1,6106,113.333182,123.169057,132.866895,139.432279,I,Above,Hip,0,5701,,26.30227551,0,0,,,,1,1,,0.03,nav,1,1954,1,, 22723,NJBF000056416,121 N PEMBROKE AVE,Margate City,NJ,39.32842,-74.5094045,RES1,3001,,17,NE,1955,1955,3102,2,1,1057.597517,1057.597517,3505,NO,35.98,50.89,3,-1.99,6106,113.293629,123.136933,132.832586,139.395263,I,Above,Hip,0,5701,,43.43644981,0,0,,,,1,1,,0.03,nav,1,1955,2,, 22724,NJBF000056656,10 N IROQUOIS AVE,Margate City,NJ,39.32897873,-74.50304972,RES1,3001,,18,NE,1925,1925,3102,3,1,1429.233311,1429.233311,3505,NO,51.15,63.51,3,-0.43,6106,113.425142,123.24283,132.943308,139.517613,I,Above,Flat,0,5701,,57.3262808,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 22725,NJBF000060059,320 N GLADSTONE AVE,Margate City,NJ,39.33533288,-74.50449638,RES1,3001,,17,NE,1960,1960,3101,2,1,1589.223951,1589.223951,3505,NO,39.3,53.88,3,8.58,6106,113.302874,123.145459,132.846166,139.400398,I,Above,Gable,0,5701,,46.58758599,0,0,,,,1,1,,0.03,nav,1,1960,2,, 22726,NJBF000059449,3 E COLMAR CIRCLE,Margate City,NJ,39.33426684,-74.50373694,RES1,3001,,17,NE,1954,1954,3101,1,1,1380.252597,1380.252597,3505,NO,23.65,33.41,3,6.87,6106,113.334633,123.170901,132.87205,139.43107,I,Above,Flat,0,5701,,28.53193072,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 22727,NJBF000059286,8507 WELLINGTON AVE,Margate City,NJ,39.33394741,-74.51094699,RES1,3001,,17,NE,1955,1955,3102,1,1,1963.920488,1963.920488,3505,NO,23.71,38.15,3,5.09,6106,113.180039,123.046973,132.742844,139.288432,I,Above,Flat,0,5701,,30.93034041,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22728,NJBF000059361,8505 WELLINGTON AVE,Margate City,NJ,39.33409329,-74.51093759,RES1,3001,,20,NE,2013,2013,3102,2,1,2456.728762,2456.728762,3505,NO,37.16,47.85,3,-1.6,6106,113.178158,123.045481,132.741379,139.286567,I,Above,Hip,0,5701,,42.50395901,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 22729,NJBF000060841,8205 MARSHALL AVE,Margate City,NJ,39.336632,-74.50935933,RES1,3001,,17,NE,1971,1971,3101,2,1,1563.972368,1563.972368,3505,NO,28.13,42.36,3,0.57,6106,113.177137,123.044761,132.742011,139.282689,I,Above,Gable,0,5701,,35.24407988,0,0,,,,1,1,,0.03,nav,1,1971,2,, 22730,NJBF000055425,6 S MANSFIELD AVE,Margate City,NJ,39.3260585,-74.5049005,RES1,3001,,20,NE,2011,2011,3102,3,1,1641.160123,1641.160123,3505,NO,37.33,49.57,3,-1.77,6106,113.426872,123.243336,132.941401,139.51766,I,Above,Hip,0,5701,,43.45027219,0,0,,,,1,1,,0.03,nav,1,2011,3,, 22731,NJBF000057013,17 N HANOVER AVE,Margate City,NJ,39.32973006,-74.50246297,RES1,3001,,17,NE,1925,1925,3102,2,1,1309.817752,1309.817752,3505,NO,37.17,45.49,3,5.94,6106,113.427249,123.244699,132.945857,139.519628,I,Above,Gable,0,5701,,41.32846005,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22732,NJBF000056499,108 N MANSFIELD AVE,Margate City,NJ,39.32861083,-74.50734111,RES1,3001,,17,NE,1946,1946,3102,2,1,1313.391557,1313.391557,3505,NO,27.29,39.02,3,1.09,6110,113.336176,123.171191,132.868348,139.434886,I,Above,Gable,0,5701,,33.152996,0,1.1,,,,1,1,,0.35,nav,1,1946,2,, 22733,NJBF000056353,114 N OSBORNE AVE,Margate City,NJ,39.32828622,-74.50891997,RES1,3001,,17,NE,1941,1941,3102,2,1,1704.619962,1704.619962,3505,NO,26.12,40.19,3,2.72,6110,113.306228,123.147018,132.842963,139.406933,I,Above,Hip,0,5701,,33.1555831,0,0,,,,1,1,,0.35,nav,1,1941,2,, 22734,NJBF000060473,8217 MARSHALL AVE,Margate City,NJ,39.33603588,-74.51053119,RES1,3001,,19,NE,2002,2002,3102,2,1,2849.836474,2849.836474,3505,NO,35.16,40.27,3,0.55,6106,113.159609,123.030744,132.727138,139.267341,I,Above,Gable,0,5701,,37.71172035,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 22735,NJBF000056916,111 N LANCASTER AVE,Margate City,NJ,39.32953061,-74.50672474,RES1,3001,,17,NE,1945,1945,3102,2,1,1448.579155,1448.579155,3505,NO,29.81,38.67,3,3.71,6106,113.336393,123.171613,132.869485,139.435257,I,Above,Gable,0,5701,,34.23722481,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 22736,NJBF000055910,103 N QUINCY AVE,Margate City,NJ,39.32726011,-74.50922202,RES1,3001,,17,NE,1920,1920,3102,2,1,1584.665327,1584.665327,3505,NO,30.51,43.53,3,2.08,6106,113.314576,123.153387,132.848787,139.414207,I,Above,Gable,0,5701,,37.0164226,0,0,,,,1,1,,0.03,nav,1,1920,2,, 22737,NJBF000057373,214 N LANCASTER AVE,Margate City,NJ,39.33045247,-74.50816435,RES1,3001,,20,NE,2010,2010,3102,3,1,1534.082167,1534.082167,3505,NO,39.32,45.7,3,-0.17,6106,113.291456,123.135736,132.832823,139.393484,I,Above,Gable,0,5701,,42.51268092,0,0,,,,1,1,,0.03,nav,1,2010,3,, 22738,NJBF000056038,7 S JEROME AVE,Margate City,NJ,39.32758342,-74.50264257,RES1,3001,,17,NE,1950,1950,3102,3,1,1535.990906,1535.990906,3505,NO,37.3,44.17,3,1.21,6106,113.454245,123.265875,132.966221,139.544129,I,Above,Hip,0,5701,,40.73699842,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 22739,NJBF000057349,500 N THURLOW AVE,Margate City,NJ,39.33041222,-74.51562264,RES1,3001,,17,NE,1950,1950,3102,2,1,3118.981317,3118.981317,3505,NO,20.43,30.84,3,-1.52,6106,113.128041,123.004581,132.696822,139.241447,I,Above,Gable,0,5701,,25.63620257,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 22740,NJBF000059567,307 N GLADSTONE AVE,Margate City,NJ,39.33447601,-74.50310619,RES1,3001,,17,NE,1960,1960,3101,1,1,1498.595443,1498.595443,3505,NO,21.46,28.06,3,7.16,6106,113.345619,123.179723,132.8814,139.440942,I,Above,Gable,0,5701,,24.75737334,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 22741,NJBF000056250,14 N LANCASTER AVE,Margate City,NJ,39.32804765,-74.5058538,RES1,3001,,17,NE,1949,1949,3102,2,1,1501.466227,1501.466227,3505,NO,39.73,46.1,3,4.22,6106,113.377003,123.203855,132.901915,139.472628,I,Above,Gable,0,5701,,42.91890434,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 22742,NJBF000056460,303 N THURLOW AVE,Margate City,NJ,39.32852065,-74.5132477,RES1,3001,,21,NE,2005,2005,3102,3,1,1732.429171,1732.429171,3505,NO,53.47,66.75,3,0.05,6106,113.207813,123.068007,132.761174,139.315413,I,Above,Hip,0,5701,,60.10730615,0,0,,,,1,1,,0.03,nav,1,2005,3,, 22743,NJBF000062874,610 N CLERMONT AVE,Margate City,NJ,39.34041041,-74.50449869,RES1,3001,,18,NE,1969,1969,3102,2,1,1795.067208,1795.067208,3505,NO,25.05,36.93,3,3.82,6106,113.232396,123.088496,132.789458,139.325611,I,Above,Gable,0,5701,,30.9907273,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 22744,NJBF000057005,114 N KENYON AVE,Margate City,NJ,39.32972126,-74.50647975,RES1,3001,,17,NE,1951,1951,3101,1,1,1366.631024,1366.631024,3505,NO,26.31,37.43,3,7.42,6106,113.339037,123.173784,132.871887,139.437723,I,Above,Hip,0,5701,,31.86835143,0,0,,,,1,1,,0.03,nav,1,1951,1,, 22745,NJBF000056829,,Margate City,NJ,39.32934488,-74.50806558,RES1,3001,,NaN,NE,1969,0,3101,1,1,1442.247968,1442.247968,3505,NO,13.33,21.44,3,2.65,6106,113.309607,123.150042,132.846901,139.410343,I,Above,Hip,0,5701,,17.38325481,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22746,NJBF000056788,,Margate City,NJ,39.32926331,-74.50795376,RES1,3001,,NaN,NE,1969,0,3101,1,1,1159.72974,1159.72974,3505,NO,21.19,34.12,3,6.46,6106,113.313256,123.152952,132.849866,139.413723,I,Above,Gable,0,5701,,27.65700384,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22747,NJBF000059545,306 N GLADSTONE AVE,Margate City,NJ,39.33443408,-74.50365091,RES1,3001,,17,NE,1953,1953,3101,1,1,2226.942583,2226.942583,3505,NO,19.18,30.77,3,4.88,6106,113.334178,123.170543,132.871785,139.430447,I,Above,Gable,0,5701,,24.97489305,0,0,,,,1,1,,0.03,nav,1,1953,1,, 22748,NJBF000060714,3 E GILMAR CIRCLE,Margate City,NJ,39.33643714,-74.50591461,RES1,3001,,17,NE,1965,1965,3101,1,1,1836.844244,1836.844244,3505,NO,23.82,35.04,3,6.94,6106,113.256036,123.107914,132.807653,139.355619,I,Above,Hip,0,5701,,29.42999917,0,0,,,,1,1,,0.03,nav,1,1965,1,, 22749,NJBF000057117,118 N KENYON AVE,Margate City,NJ,39.32996461,-74.50670142,RES1,3001,,17,NE,1955,1955,3102,2,1,1526.410511,1526.410511,3505,NO,25.54,37.28,3,-2.73,6106,113.330658,123.16711,132.865118,139.429939,I,Above,Hip,0,5701,,31.41050263,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 22750,NJBF000062607,607 N DOUGLAS AVE,Margate City,NJ,39.33980046,-74.50500583,RES1,3001,,18,NE,1966,1966,3102,1,1,1928.994534,1928.994534,3505,NO,20.11,34.51,3,8.71,6106,113.229523,123.086322,132.786894,139.324536,I,Above,Gable,0,5701,,27.30837173,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 22751,NJBF000059949,223 N DOUGLAS AVE,Margate City,NJ,39.33513106,-74.50039991,RES1,3001,,17,NE,1962,1962,3102,2,1,1236.838876,1236.838876,3505,NO,35.39,50.24,3,7.74,6106,113.396185,123.220315,132.924284,139.486508,I,Above,Gable,0,5701,,42.81390643,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22752,NJBF000056255,113 N PEMBROKE AVE,Margate City,NJ,39.3280657,-74.50903776,RES1,3001,,20,NE,2005,2005,3102,3,1,1296.511646,1296.511646,3505,NO,31.83,43.55,3,-2.42,6106,113.306843,123.147442,132.843236,139.407419,I,Above,Gable,0,5701,,37.69001566,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 22753,NJBF000055757,5 S LANCASTER AVE,Margate City,NJ,39.32690387,-74.50432565,RES1,3001,,17,NE,1952,1952,3102,2,1,1380.746563,1380.746563,3505,NO,22.92,36.22,3,-2.52,6106,113.427163,123.243862,132.942673,139.518583,I,Above,Gable,0,5701,,29.57009744,0,0,,,,1,1,,0.03,nav,1,1952,2,, 22754,NJBF000055640,11 S LANCASTER AVE,Margate City,NJ,39.32662801,-74.5040778,RES1,3001,,21,NE,1945,1945,3102,2,1,1441.326919,1441.326919,3505,NO,29.41,43.95,3,2.91,6106,113.43662,123.251384,132.950284,139.527162,I,Above,Hip,0,5701,,36.68168754,0,0,,,,1,1,,0.03,nav,1,1945,2,, 22755,NJBF000061363,7 BAYSIDE COURT,Margate City,NJ,39.3375108,-74.50983768,RES1,3001,,19,NE,1990,1990,3102,2,1,1982.620944,1982.620944,3505,NO,26.85,33.4,3,5.26,6106,113.15422,123.0264,132.723366,139.260223,I,Above,Hip,0,5701,,30.12564451,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 22756,NJBF000055679,9 S LANCASTER AVE,Margate City,NJ,39.32672004,-74.50416706,RES1,3001,,21,NE,2015,2015,3102,2,1,1421.552977,1421.552977,3505,NO,21.42,32.76,3,-2.57,6106,113.433329,123.248765,132.94763,139.524175,I,Above,Flat,0,5701,,27.08903537,0,0,,,,1,1,,0.03,nav,1,2015,2,, 22757,NJBF000056389,115 N OSBORNE AVE,Margate City,NJ,39.32836745,-74.50839922,RES1,3001,,17,NE,1957,1957,3102,2,1,1891.960026,1891.960026,3505,NO,31.22,45.52,3,8.7,6106,113.316487,123.15529,132.851623,139.416503,I,Above,Gable,0,5701,,38.37459676,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 22758,NJBF000055977,5 S KNIGHT AVE,Margate City,NJ,39.32742972,-74.50327012,RES1,3001,,NaN,NE,1920,0,3102,2,1,885.0020371,885.0020371,3505,NO,26.38,39.06,3,2.06,6106,113.442697,123.256533,132.956338,139.533329,I,Above,Hip,0,5701,,32.71632936,0,0,,,,1,1,,0.03,nav,1,1920,2,, 22759,NJBF000056159,8607 WINCHESTER AVE,Margate City,NJ,39.32785606,-74.50793489,RES1,3001,,20,NE,1949,1949,3102,3,1,978.3820198,978.3820198,3505,NO,38.88,52.47,3,-0.41,6106,113.334111,123.1693,132.865796,139.432683,I,Above,Gable,0,5701,,45.67365469,0,0,,,,1,1,,0.03,nav,1,1949,3,, 22760,NJBF000061290,5 BAYSIDE COURT,Margate City,NJ,39.337388,-74.50973047,RES1,3001,,19,NE,1989,1989,3102,2,1,1776.095837,1776.095837,3505,NO,26.54,33.08,3,-0.78,6106,113.158332,123.029693,132.726729,139.264206,I,Above,Hip,0,5701,,29.80747288,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 22761,NJBF000055776,18 S JEROME AVE,Margate City,NJ,39.32694558,-74.50260482,RES1,3001,,NaN,NE,1947,0,3102,2,1,1460.949826,1460.949826,3505,NO,41.78,56.49,3,6.71,6106,113.464313,123.273788,132.97394,139.553079,I,Above,Gable,0,5701,,49.13587823,0,0,,,,1,1,,0.03,nav,1,1947,2,, 22762,NJBF000060102,8103 FULTON AVE,Margate City,NJ,39.33541084,-74.50610429,RES1,3001,,17,NE,1957,1957,3101,1,1,1330.464272,1330.464272,3505,NO,26.22,35.68,3,7.39,6106,113.26625,123.116109,132.815603,139.366546,I,Above,Flat,0,5701,,30.94972565,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 22763,NJBF000060180,8103 FULTON AVE,Margate City,NJ,39.335547,-74.5060645,RES1,3001,,17,NE,1957,1957,3101,1,1,542.3429934,542.3429934,3505,NO,8.95,14.58,3,-2.04,6106,113.265222,123.115286,132.814825,139.365412,I,Above,Hip,0,5701,,11.76236332,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 22764,NJBF000061194,602 N HUNTINGTON AVE,Margate City,NJ,39.33722448,-74.50919615,RES1,3001,,19,NE,1976,1976,3102,2,1,2009.874411,2009.874411,3505,NO,30.27,36.53,3,-1.74,6106,113.172444,123.040986,132.738388,139.277457,I,Above,Hip,0,5701,,33.40226335,0,0,,,,1,1,,0.03,nav,1,1976,2,, 22765,NJBF000055783,17 S JEROME AVE,Margate City,NJ,39.32696042,-74.50216587,RES1,3001,,21,NE,1958,1958,3102,3,1,2662.138364,2662.138364,3505,NO,43.03,48.55,3,4.58,6106,113.473743,123.281386,132.981889,139.561834,I,Above,Flat,0,5701,,45.78885859,0,0,,,,1,1,,0.03,nav,1,1958,3,, 22766,NJBF000059684,310 N GLADSTONE AVE,Margate City,NJ,39.33467551,-74.50385849,RES1,3001,,17,NE,1954,1954,3101,2,1,1253.180715,1253.180715,3505,NO,33.18,47.89,3,-2.44,6106,113.326201,123.164152,132.865268,139.422784,I,Above,Gable,0,5701,,40.5351303,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 22767,NJBF000057227,27 N HANOVER AVE,Margate City,NJ,39.33018023,-74.50286309,RES1,3001,,17,NE,1930,1930,3101,1,1,1256.553553,1256.553553,3505,NO,21.01,35.75,3,5.29,6106,113.411996,123.232526,132.933494,139.505437,I,Above,Hip,0,5701,,28.38162648,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 22768,NJBF000057252,20 N HAVERFORD AVE,Margate City,NJ,39.33023063,-74.50179803,RES1,3001,,17,NE,1930,1930,3102,2,1,1070.035702,1070.035702,3505,NO,32.13,40.78,3,6.75,6106,113.434699,123.250792,132.952617,139.526491,I,Above,Hip,0,5701,,36.45542507,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22769,NJBF000059962,222 N DELAVAN AVE,Margate City,NJ,39.3351476,-74.50015683,RES1,3001,,17,NE,1949,1949,3101,1,1,1663.874219,1663.874219,3507,NO,15.53,29.15,1,1.64,6106,113.401314,123.224433,132.928607,139.491187,I,Above,Gable,0,5701,,22.34218638,0,0,,,,1,1,,0.03,nav,1,1949,1,, 22770,NJBF000059930,23 N COLMAR CIRCLE,Margate City,NJ,39.3350945,-74.50530177,RES1,3001,,17,NE,1953,1953,3101,1,1,1279.639309,1279.639309,3505,NO,21.16,33.85,3,2.2,6106,113.288427,123.133876,132.833936,139.387415,I,Above,Flat,0,5701,,27.50438962,0,0,,,,1,1,,0.03,nav,1,1953,1,, 22771,NJBF000055946,105 N QUINCY AVE,Margate City,NJ,39.32735054,-74.50930428,RES1,3001,,17,NE,1950,1950,3101,1,1,1340.877386,1340.877386,3505,NO,14.73,27.89,3,3.84,6106,113.311447,123.150902,132.846277,139.411349,I,Above,Hip,0,5701,,21.30973027,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22772,NJBF000060124,325 N GLADSTONE AVE,Margate City,NJ,39.33544679,-74.5040135,RES1,3001,,19,NE,2007,2007,3101,2,1,2205.527871,2205.527871,3505,NO,43.79,54.28,3,8.18,6106,113.311946,123.152732,132.853828,139.408583,I,Above,Hip,0,5701,,49.03543418,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 22773,NJBF000058995,8508 WELLINGTON AVE,Margate City,NJ,39.33331844,-74.51027889,RES1,3001,,18,NE,1969,1969,3102,2,1,2382.076281,2382.076281,3505,NO,28.29,41.85,3,4.26,6106,113.203747,123.06589,132.762114,139.310884,I,Above,Gable,0,5701,,35.07081283,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 22774,NJBF000055998,9 S JEROME AVE,Margate City,NJ,39.327491,-74.5025835,RES1,3001,,20,NE,2006,2006,3102,3,1,1215.025876,1215.025876,3505,NO,66.14,77.79,3,8.36,6106,113.456872,123.267963,132.968324,139.546517,I,Above,Hip,0,5701,,71.96882395,0,0,,,,1,1,,0.03,nav,1,2006,3,, 22775,NJBF000061164,1 BAYSIDE COURT,Margate City,NJ,39.3371704,-74.50946001,RES1,3001,,20,NE,2010,2010,3102,2,1,1924.218765,1924.218765,3505,NO,30.11,39.36,3,6.16,6106,113.167358,123.036922,132.734135,139.272862,I,Above,Hip,0,5701,,34.73216513,0,1.1,,,,1,1,,0.03,nav,1,2010,2,, 22776,NJBF000060566,304 N CLARENDON AVE,Margate City,NJ,39.33619942,-74.49963625,RES1,3001,,17,NE,1950,1950,3103,2,1,1157.095475,1157.095475,3505,NO,38.82,46.19,3,0.11,6106,113.398171,123.221881,132.926627,139.486383,I,Above,Hip,0,5701,,42.50441167,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22777,NJBF000054557,16 N BENSON AVE,Margate City,NJ,39.32372598,-74.51358017,RES1,3001,,17,NE,1956,1956,3102,2,1,1014.294415,1014.294415,3505,NO,25.91,38.17,3,1.97,6106,113.271433,123.117095,132.808264,139.370839,I,Above,Gable,0,5701,,32.04253411,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 22778,NJBF000058523,29 N ESSEX AVE,Margate City,NJ,39.33246199,-74.49862284,RES1,3001,,18,NE,1950,1950,3102,1,1,1113.167186,1113.167186,3505,NO,23.34,33.72,3,4.45,6106,113.472903,123.281836,132.986827,139.560646,I,Above,Flat,0,5701,,28.5278125,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22779,NJBF000056146,7 S JASPER AVE,Margate City,NJ,39.32781208,-74.50213786,RES1,3001,,18,NE,1970,1970,3102,2,1,1292.853899,1292.853899,3505,NO,27.18,35.87,3,1.04,6106,113.46202,123.2722,132.973021,139.55146,I,Above,Flat,0,5701,,31.52518035,0,0,,,,1,1,,0.03,nav,1,1970,2,, 22780,NJBF000056236,3 S JASPER AVE,Margate City,NJ,39.32801853,-74.50229937,RES1,3001,,21,NE,2005,2005,3102,3,1,1136.625588,1136.625588,3505,NO,40.92,52.97,3,-2.04,6106,113.455493,123.267003,132.967766,139.545496,I,Above,Hip,0,5701,,46.94479682,0,0,,,,1,1,,0.03,nav,1,2005,3,, 22781,NJBF000056806,119 N MANSFIELD AVE,Margate City,NJ,39.32929792,-74.50742788,RES1,3001,,NaN,NE,1969,0,3101,1,1,2071.392173,2071.392173,3505,NO,10.89,25.44,3,-0.2,6106,113.324309,123.161843,132.859142,139.424002,I,Above,Hip,0,5701,,18.16074031,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22782,NJBF000058223,32 N EXETER AVE,Margate City,NJ,39.33192531,-74.49945527,RES1,3001,,17,NE,1937,1937,3102,2,1,1064.814174,1064.814174,3505,NO,31.54,46.37,3,-2.83,6106,113.462166,123.273144,132.977311,139.551178,I,Above,Hip,0,5701,,38.95466682,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 22783,NJBF000055196,111 S KENYON AVE,Margate City,NJ,39.32541954,-74.50234416,RES1,3001,,22,NE,1999,1999,3102,3,1,3131.208833,3131.208833,3505,NO,36.6,47.78,3,1.11,6106,113.492245,123.29577,132.995547,139.577628,I,Above,Hip,0,5701,,42.19089336,0,1.1,,,,1,1,,0.03,nav,1,1999,3,, 22784,NJBF000061651,8101 MARSHALL AVE,Margate City,NJ,39.3380097,-74.50692912,RES1,3001,,18,NE,1975,1975,3102,2,1,1811.404267,1811.404267,3505,NO,34.76,41.69,3,-1.13,6106,113.211661,123.072292,132.771371,139.312102,I,Above,Gable,0,5701,,38.22461405,0,0,,,,1,1,,0.03,nav,1,1975,2,, 22785,NJBF000061136,421 N EXETER AVE,Margate City,NJ,39.33712276,-74.50406794,RES1,3001,,18,NE,1995,1995,3102,2,1,1624.880805,1624.880805,3505,NO,30.21,36.47,3,8.08,6106,113.287318,123.132932,132.834146,139.383134,I,Above,Hip,0,5701,,33.3417968,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 22786,NJBF000060587,8213 MARSHALL AVE,Margate City,NJ,39.33624084,-74.51005562,RES1,3001,,19,NE,1998,1998,3102,2,1,1899.383363,1899.383363,3505,NO,29.3,36.8,3,4.62,6106,113.167221,123.036834,132.73357,139.274097,I,Above,Gable,0,5701,,33.05175856,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 22787,NJBF000061694,613 N HUNTINGTON AVE,Margate City,NJ,39.33809053,-74.50945102,RES1,3001,,17,NE,1977,1977,3102,2,1,1349.888563,1349.888563,3505,NO,36.1,47.53,3,4.01,6106,113.154689,123.026731,132.72399,139.259664,I,Above,Gable,0,5701,,41.81695054,0,0,,,,1,1,,0.03,nav,1,1977,2,, 22788,NJBF000061315,7508 FREMONT AVE,Margate City,NJ,39.33743235,-74.49921533,RES1,3001,,17,NE,1950,1950,3103,1,1,1318.017827,1318.017827,3505,NO,12.84,25.51,3,0.51,6106,113.390388,123.215542,132.920766,139.476592,I,Above,Hip,0,5701,,19.17568331,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22789,NJBF000055733,17 S KNIGHT AVE,Margate City,NJ,39.3268364,-74.50279097,RES1,3001,,21,NE,1952,2016,3102,2,1,1766.002335,1766.002335,3505,NO,37.85,49.67,3,4.95,6106,113.461829,123.271752,132.97172,139.550698,I,Above,Gable,0,5701,,43.75971132,0,0,,,,1,1,,0.03,nav,1,1952,2,, 22790,NJBF000057249,110 N JASPER AVE,Margate City,NJ,39.33022766,-74.50504911,RES1,3001,,45,NE,1930,1930,3102,2,2,1276.488828,1276.488828,3507,NO,30.52,36.74,1,2.36,6106,113.363211,123.193324,132.892625,139.460152,I,Above,Hip,0,5701,,33.63232916,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22791,NJBF000054037,111 N MONROE AVE,Margate City,NJ,39.32217614,-74.51872915,RES1,3001,,17,NE,1955,1955,3101,1,1,1671.013691,1671.013691,3505,NO,23.52,32.49,3,4.86,6106,113.182534,123.04448,132.731931,139.285937,I,Above,Gable,0,5701,,28.00356058,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22792,NJBF000053514,PACIFIC AVE,Margate City,NJ,39.32023019,-74.51380506,RES1,3001,,NaN,NE,2004,0,3102,2,1,2628.867763,2628.867763,3501,NO,39.09,46.84,7,13.23,6106,113.319017,123.153447,132.842745,139.409857,I,Above,Gable,0,5701,,42.96483092,0,0,,,,1,1,,0.03,nav,1,2004,2,, 22793,NJBF000060699,308 N CLARENDON AVE,Margate City,NJ,39.33642083,-74.49988111,RES1,3001,,17,NE,1956,1956,3103,1,1,1152.041191,1152.041191,3505,NO,21.14,28.73,3,6.08,6106,113.38967,123.215046,132.919609,139.478167,I,Above,Gable,0,5701,,24.93290907,0,1.2,,,,1,1,,0.03,nav,1,1956,1,, 22794,NJBF000056953,,Margate City,NJ,39.32961,-74.50123217,RES1,3001,,NaN,NE,1973,0,3102,2,1,1670.955389,1670.955389,3505,NO,25.51,33.05,3,-0.53,6106,113.456045,123.267837,132.969943,139.54635,I,Above,Gable,0,5701,,29.27786686,0,0,,,,1,1,,0.03,nav,1,1973,2,, 22795,NJBF000057459,120 N JASPER AVE,Margate City,NJ,39.33060972,-74.50542977,RES1,3001,,18,NE,1951,1951,3102,2,1,3045.223069,3045.223069,3507,NO,33.71,42.3,1,0.82,6106,113.349341,123.182259,132.881372,139.447216,I,Above,Gable,0,5701,,38.00270712,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 22796,NJBF000056836,8401 WINCHESTER AVE,Margate City,NJ,39.32935834,-74.5053039,RES1,3001,,17,NE,1955,1955,3101,1,1,1690.530267,1690.530267,3505,NO,20.94,31.36,3,2.72,6106,113.37013,123.198686,132.897555,139.466583,I,Above,Hip,0,5701,,26.14795125,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22797,NJBF000059984,306 N ESSEX AVE,Margate City,NJ,39.33518966,-74.50198237,RES1,3001,,19,NE,1956,1956,3102,2,1,1821.003496,1821.003496,3505,NO,31.65,38.16,3,0.05,6106,113.360417,123.191608,132.894285,139.453555,I,Above,Gable,0,5701,,34.90329876,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 22798,NJBF000061481,8107 MARSHALL AVE,Margate City,NJ,39.33772117,-74.50761002,RES1,3001,,17,NE,1973,1973,3102,2,1,509.3673184,509.3673184,3505,NO,44.16,50.5,3,5.59,6106,113.200606,123.063476,132.762041,139.302497,I,Above,Gable,0,5701,,47.33302883,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 22799,NJBF000061464,8107 MARSHALL AVE,Margate City,NJ,39.33768834,-74.50745717,RES1,3001,,17,NE,1973,1973,3102,2,1,1453.574288,1453.574288,3505,NO,32.72,45.44,3,1.48,6106,113.204453,123.066555,132.765231,139.306088,I,Above,Gable,0,5701,,39.079713,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 22800,NJBF000061807,3 BAYCREST DRIVE,Margate City,NJ,39.33828813,-74.50818279,RES1,3001,,18,NE,1979,1979,3102,3,1,2183.153573,2183.153573,3505,NO,41.85,47.95,3,8.65,6106,113.180027,123.046966,132.745135,139.282563,I,Above,Hip,0,5701,,44.90057934,0,1.1,,,,1,1,,0.03,nav,1,1979,3,, 22801,NJBF000054846,204 N ADAMS AVE,Margate City,NJ,39.32447681,-74.51749292,RES1,3001,,20,NE,2014,2014,3102,2,1,1141.056701,1141.056701,3507,NO,24.73,36.73,1,-0.98,6106,113.174823,123.039645,132.728832,139.281661,I,Above,Flat,0,5701,,30.73404978,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 22802,NJBF000057570,15 N GLADSTONE AVE,Margate City,NJ,39.33080083,-74.50006044,RES1,3001,,17,NE,1945,1945,3102,2,1,2394.358535,2394.358535,3505,NO,39.11,53.12,3,2.93,6106,113.464812,123.275113,132.978503,139.554255,I,Above,Hip,0,5701,,46.1170318,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 22803,NJBF000057468,114 N IROQUOIS AVE,Margate City,NJ,39.33061895,-74.50461443,RES1,3001,,17,NE,1950,1950,3101,1,1,1505.325991,1505.325991,3507,NO,20.31,26.87,1,1.83,6106,113.367171,123.196585,132.896316,139.463762,I,Above,Flat,0,5701,,23.58731492,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22804,NJBF000058022,25 N FRONTENAC AVE,Margate City,NJ,39.33156786,-74.49970295,RES1,3001,,19,NE,1950,1950,3102,2,1,1885.636729,1885.636729,3505,NO,39.97,45.75,3,4.68,6106,113.461765,123.272777,132.976654,139.551051,I,Above,Flat,0,5701,,42.85912689,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22805,NJBF000058346,38 N EXETER AVE,Margate City,NJ,39.33214346,-74.49967662,RES1,3001,,18,NE,1988,1988,3102,2,1,1221.697147,1221.697147,3505,NO,30.61,44.41,3,8.03,6106,113.454186,123.266753,132.970784,139.54363,I,Above,Gable,0,5701,,37.51044494,0,0,,,,1,1,,0.03,nav,1,1988,2,, 22806,NJBF000061028,217 N BRUNSWICK DR,Margate City,NJ,39.33693098,-74.49886325,RES1,3001,,17,NE,1950,1950,3103,2,1,1381.33436,1381.33436,3505,NO,22.62,31.08,3,-2.31,6106,113.405102,123.227397,132.93288,139.491142,I,Above,Hip,0,5701,,26.84850092,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 22807,NJBF000060143,403 N HUNTINGTON AVE,Margate City,NJ,39.33547329,-74.50693684,RES1,3001,,17,NE,1963,1963,3101,2,1,2044.224643,2044.224643,3505,NO,29.27,39.5,3,0.65,6110,113.246972,123.100666,132.799549,139.348689,I,Above,Hip,0,5701,,34.38145519,0,0,,,,1,1,,0.35,nav,1,1963,2,, 22808,NJBF000061404,307 N ARGYLE AVE,Margate City,NJ,39.33757896,-74.49758608,RES1,3001,,17,NE,1952,1952,3103,1,1,1732.001437,1732.001437,3505,NO,19.24,25.33,3,8.36,6106,113.424387,123.24282,132.949473,139.507085,I,Above,Flat,0,5701,,22.28655169,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 22809,NJBF000054636,107 S QUINCY AVE,Margate City,NJ,39.32392848,-74.50603076,RES1,3001,,19,NE,1920,1920,3102,2,1,1924.987115,1924.987115,3505,NO,31.76,42.4,3,0.46,6106,113.433403,123.247741,132.944096,139.521423,I,Above,Hip,0,5701,,37.07661679,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 22810,NJBF000054135,208 N COOLIDGE AVE,Margate City,NJ,39.32250302,-74.52091531,RES1,3001,,30,NE,2000,2000,3102,2,2,1736.032987,1736.032987,3507,NO,34.03,46.69,1,0.45,6106,113.130062,123.002335,132.688797,139.237378,I,Above,Hip,0,5701,,40.3588628,0,0,,,,1,1,,0.03,nav,1,2000,2,, 22811,NJBF000061606,8210 LAGOON DRIVE,Margate City,NJ,39.33793686,-74.51162432,RES1,3001,,18,NE,1978,1978,3102,2,1,2552.798897,2552.798897,3505,NO,27.07,37.41,3,1.39,6106,113.108724,122.990017,132.685781,139.217654,I,Above,Gable,0,5701,,32.24012406,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 22812,NJBF000061867,27 HARBOUR LANE,Margate City,NJ,39.33839595,-74.50715766,RES1,3001,,18,NE,1984,1984,3102,2,1,2572.150364,2572.150364,3505,NO,31.97,39.98,3,4.57,6106,113.201229,123.063907,132.762829,139.30179,I,Above,Hip,0,5701,,35.97245167,0,0,,,,1,1,,0.03,nav,1,1984,2,, 22813,NJBF000054809,100 S PEMBROKE AVE,Margate City,NJ,39.32436911,-74.50609342,RES1,3001,,22,NE,2016,2016,3103,3,1,2036.765789,2036.765789,3505,NO,57.64,65.34,3,3.48,6106,113.425549,123.241602,132.938103,139.514692,I,Above,Gable,0,5701,,61.48915149,0,0,,,,1,1,,0.03,nav,1,2016,3,, 22814,NJBF000057323,100 N HANOVER AVE,Margate City,NJ,39.33036196,-74.50357793,RES1,3001,,47,NE,1925,1925,3102,2,2,2055.549328,2055.549328,3507,NO,24.03,34.2,1,-0.54,6106,113.393654,123.217818,132.918277,139.488389,I,Above,Hip,0,5701,,29.11392533,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 22815,NJBF000061747,1 BAYCREST DRIVE,Margate City,NJ,39.33818435,-74.50837153,RES1,3001,,18,NE,1978,1978,3102,2,1,1674.3544,1674.3544,3505,NO,43.87,52.94,3,5.72,6106,113.177288,123.044787,132.742816,139.280245,I,Above,Gable,0,5701,,48.40475117,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 22816,NJBF000057210,120 N JEROME AVE,Margate City,NJ,39.33014815,-74.50603174,RES1,3001,,17,NE,1948,1948,3102,2,1,1112.630319,1112.630319,3505,NO,33.7,41.86,3,2.93,6106,113.342736,123.176855,132.875402,139.441148,I,Above,Gable,0,5701,,37.77742245,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22817,NJBF000060915,216 N BELMONT DR,Margate City,NJ,39.33674171,-74.49835979,RES1,3001,,17,NE,1950,1950,3103,1,1,1329.213367,1329.213367,3505,NO,19.3,27.38,3,7.82,6106,113.418839,123.238441,132.94434,139.504077,I,Above,Gable,0,5701,,23.34211737,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22818,NJBF000053142,9704A PACIFIC AVE,Margate City,NJ,39.31888704,-74.5163041,RES1,3001,,30,NE,1954,1985,3102,2,2,1727.105467,1727.105467,3507,NO,36.55,49.46,1,2.91,6106,113.285115,123.125129,132.812165,139.375958,I,Above,Flat,0,5701,,43.00732718,0,0,,,,1,1,,0.03,nav,1,1954,2,, 22819,NJBF000060446,211 N CLARENDON AVE,Margate City,NJ,39.33598449,-74.49895862,RES1,3001,,20,NE,2014,2014,3103,3,1,1574.276518,1574.276518,3505,NO,59.05,72.76,3,1.95,6106,113.416121,123.236303,132.941601,139.503217,I,Above,Gable,0,5701,,65.90215432,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 22820,NJBF000057919,18 N EXETER AVE,Margate City,NJ,39.33138101,-74.49895021,RES1,3001,,17,NE,1930,1930,3102,2,2,1340.028998,1340.028998,3505,NO,32.74,44.41,3,1.14,6106,113.481004,123.288226,132.99269,139.568972,I,Above,Gable,0,5701,,38.57306672,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 22821,NJBF000058709,28 N DELAVAN AVE,Margate City,NJ,39.33278432,-74.49785162,RES1,3001,,18,NE,1928,1928,3102,2,1,828.0681213,828.0681213,3505,NO,36.74,43.86,3,3.79,6106,113.485355,123.29188,132.9976,139.571805,I,Above,Gable,0,5701,,40.29893618,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22822,NJBF000054595,110 S PEMBROKE AVE,Margate City,NJ,39.3238256,-74.50558727,RES1,3001,,17,NE,1935,1935,3102,2,1,1664.079211,1664.079211,3505,NO,23.87,29.1,3,0.96,6106,113.444618,123.256738,132.953374,139.531672,I,Above,Hip,0,5701,,26.48309516,0,0.1,,,,1,1,,0.03,nav,1,1935,2,, 22823,NJBF000057957,31 N GLADSTONE AVE,Margate City,NJ,39.33144906,-74.50062081,RES1,3001,,17,NE,1950,1950,3101,1,1,1830.164515,1830.164515,3505,NO,12.49,26.19,3,-2.52,6106,113.443236,123.257861,132.96095,139.533967,I,Above,Flat,0,5701,,19.3433842,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22824,NJBF000057969,23 N FRONTENAC AVE,Margate City,NJ,39.331475,-74.4995989,RES1,3001,,17,NE,1950,1950,3102,1,1,1495.580393,1495.580393,3505,NO,17.33,30.64,3,0.14,6106,113.465376,123.275668,132.97961,139.554451,I,Above,Gable,0,5701,,23.98430839,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22825,NJBF000060717,219 N CLARENDON AVE,Margate City,NJ,39.33644297,-74.49938199,RES1,3001,,17,NE,1955,1955,3103,2,1,1385.869438,1385.869438,3505,NO,32.67,39.48,3,0.88,6106,113.400394,123.223653,132.928641,139.487915,I,Above,Gable,0,5701,,36.07386343,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 22826,NJBF000061162,223 N BRUNSWICK DR,Margate City,NJ,39.33716973,-74.49970904,RES1,3001,,17,NE,1950,1950,3103,1,1,962.8025893,962.8025893,3505,NO,9.75,18.83,3,-2.8,6106,113.383086,123.209707,132.914488,139.470552,I,Above,Hip,0,5701,,14.2894481,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22827,NJBF000055456,8406 ATLANTIC AVE,Margate City,NJ,39.32614699,-74.50271838,RES1,3001,,17,NE,1950,1950,3102,2,1,1643.984009,1643.984009,3505,NO,34.8,44.86,3,8.11,6106,113.473449,123.280883,132.980651,139.560922,I,Above,Hip,0,5701,,39.83369872,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22828,NJBF000061250,8115 MARSHALL AVE,Margate City,NJ,39.33730992,-74.50815346,RES1,3001,,17,NE,1972,1972,3101,1,1,2131.422689,2131.422689,3505,NO,16.74,28.84,3,-0.35,6106,113.194322,123.058479,132.756629,139.29744,I,Above,Hip,0,5701,,22.78843608,0,0,,,,1,1,,0.03,nav,1,1972,1,, 22829,NJBF000060856,223 N CLARENDON AVE,Margate City,NJ,39.33665027,-74.49958266,RES1,3001,,17,NE,1951,1951,3103,2,1,1698.238235,1698.238235,3505,NO,21.57,34.73,3,-1.56,6106,113.393078,123.217767,132.922606,139.480801,I,Above,Flat,0,5701,,28.15069705,0,0,,,,1,1,,0.03,nav,1,1951,2,, 22830,NJBF000056086,5 S JEROME AVE,Margate City,NJ,39.32769228,-74.50272596,RES1,3001,,21,NE,1938,1938,3102,2,1,1573.447888,1573.447888,3505,NO,29.27,34.58,3,-1.15,6106,113.450844,123.263169,132.963487,139.54103,I,Above,Hip,0,5701,,31.92688631,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 22831,NJBF000057616,6 N EXETER AVE,Margate City,NJ,39.33088217,-74.49847583,RES1,3001,,17,NE,1925,1925,3102,2,1,965.4718931,965.4718931,3505,NO,29.96,42.97,3,8.43,6106,113.498529,123.302254,133.006993,139.585459,I,Above,Hip,0,5701,,36.46521596,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22832,NJBF000060761,407 N GLADSTONE AVE,Margate City,NJ,39.33650401,-74.50505283,RES1,3001,,18,NE,1984,1984,3101,1,1,1981.461239,1981.461239,3505,NO,12.56,18.9,3,1.87,6106,113.274161,123.122429,132.822829,139.372168,I,Above,Flat,0,5701,,15.73233402,0,0,,,,1,1,,0.03,nav,1,1984,1,, 22833,NJBF000061574,313 N ARGYLE AVE,Margate City,NJ,39.3378835,-74.497848,RES1,3001,,17,NE,1950,1950,3103,1,1,958.3663177,958.3663177,3505,NO,22.83,28.5,3,3.72,6106,113.414404,123.234769,132.941215,139.497254,I,Above,Gable,0,5701,,25.66701868,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22834,NJBF000055195,103 S MANSFIELD AVE,Margate City,NJ,39.32541739,-74.50382507,RES1,3001,,19,NE,1925,1925,3102,2,1,1467.62501,1467.62501,3505,NO,23.53,36.26,3,-2.42,6106,113.459835,123.269653,132.968281,139.547614,I,Above,Flat,0,5701,,29.89270029,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22835,NJBF000058044,37 N GLADSTONE AVE,Margate City,NJ,39.33160755,-74.50083087,RES1,3001,,17,NE,1950,1950,3102,2,1,1329.973998,1329.973998,3505,NO,34.39,43.96,3,8.43,6106,113.436351,123.252347,132.955302,139.5275,I,Above,Flat,0,5701,,39.17450477,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22836,NJBF000056864,420 N THURLOW AVE,Margate City,NJ,39.3294182,-74.514664,RES1,3001,,20,NE,2006,2006,3102,2,1,2643.453555,2643.453555,3505,NO,28.08,35.69,3,-0.07,6106,113.163614,123.032816,132.725371,139.274481,I,Above,Gable,0,5701,,31.88574486,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 22837,NJBF000057661,8 N EXETER AVE,Margate City,NJ,39.33095347,-74.49852499,RES1,3001,,17,NE,1950,1950,3102,2,1,971.1826497,971.1826497,3505,NO,30.05,38.91,3,-2.65,6106,113.496441,123.300585,133.005301,139.583492,I,Above,Flat,0,5701,,34.48066105,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22838,NJBF000057814,27 N GLADSTONE AVE,Margate City,NJ,39.33121645,-74.50047127,RES1,3001,,17,NE,1920,1920,3102,2,1,1156.603617,1156.603617,3505,NO,34.9,40.58,3,3.4,6106,113.449854,123.263148,132.966304,139.540217,I,Above,Flat,0,5701,,37.7401614,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22839,NJBF000055533,110 S IROQUOIS AVE,Margate City,NJ,39.32635645,-74.50069512,RES1,3001,,20,NE,1962,1962,3102,2,1,2357.93131,2357.93131,3505,NO,39.16,52.86,3,0.65,6106,113.514779,123.314253,133.015709,139.599393,I,Above,Gable,0,5701,,46.013233,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22840,NJBF000057630,8003 WINCHESTER RD,Margate City,NJ,39.33090712,-74.49972731,RES1,3001,,17,NE,1950,1950,3102,1,1,1432.803061,1432.803061,3505,NO,23.46,29.95,3,7.46,6106,113.470633,123.279813,132.983506,139.559607,I,Above,Hip,0,5701,,26.70289189,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22841,NJBF000057428,104 N HANOVER AVE,Margate City,NJ,39.33055692,-74.50375213,RES1,3001,,17,NE,1964,1964,3101,1,1,1426.836947,1426.836947,3507,NO,18.17,28.55,1,2,6106,113.387031,123.212532,132.912907,139.482204,I,Above,Gable,0,5701,,23.3582831,0,0,,,,1,1,,0.03,nav,1,1964,1,, 22842,NJBF000056828,105 N KENYON AVE,Margate City,NJ,39.32934439,-74.50562037,RES1,3001,,17,NE,1934,1934,3102,2,1,838.6763948,838.6763948,3505,NO,27.01,38.68,3,4.94,6106,113.363385,123.19326,132.89189,139.460316,I,Above,Hip,0,5701,,32.84602699,0,1.1,,,,1,1,,0.03,nav,1,1934,2,, 22843,NJBF000055271,8510 ATLANTIC AVE,Margate City,NJ,39.32562568,-74.50374924,RES1,3001,,17,NE,1949,1949,3102,1,1,1438.06684,1438.06684,3505,NO,16.91,23.81,3,4.53,6106,113.458446,123.268611,132.967381,139.546536,I,Above,Hip,0,5701,,20.36047058,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 22844,NJBF000056075,12 N MANSFIELD AVE,Margate City,NJ,39.32766427,-74.5064417,RES1,3001,,18,NE,1965,1965,3102,2,1,1488.908437,1488.908437,3505,NO,19.39,32.69,3,-2.16,6106,113.369674,123.197842,132.895345,139.465644,I,Above,Gable,0,5701,,26.03660413,0,0,,,,1,1,,0.03,nav,1,1965,2,, 22845,NJBF000057551,4 N EXETER AVE,Margate City,NJ,39.33077033,-74.49843556,RES1,3001,,18,NE,1986,1986,3102,2,1,1090.680939,1090.680939,3505,NO,23.22,30.71,3,-2.64,6106,113.501002,123.304227,133.008971,139.587797,I,Above,Flat,0,5701,,26.96385522,0,0,,,,1,1,,0.03,nav,1,1986,2,, 22846,NJBF000063079,8000 BAYSHORE DR,Margate City,NJ,39.34084827,-74.50911888,RES1,3001,,18,NE,1973,1973,3102,2,1,1131.323591,1131.323591,3505,NO,29.24,38.83,3,2.45,6106,113.123898,123.001716,132.69918,139.225741,I,Above,Gable,0,5701,,34.03182105,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 22847,NJBF000060726,210 N BELMONT DR,Margate City,NJ,39.33645585,-74.4980472,RES1,3001,,17,NE,1950,1950,3103,1,1,1323.188616,1323.188616,3505,NO,19.41,27.97,3,7.6,6106,113.42972,123.2472,132.95334,139.514628,I,Above,Gable,0,5701,,23.69002888,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22848,NJBF000062229,508 N DELAVAN AVE,Margate City,NJ,39.33903994,-74.5039839,RES1,3001,,18,NE,1965,1965,3102,2,1,1883.58203,1883.58203,3505,NO,34.57,44.9,3,5.01,6106,113.262631,123.112943,132.814313,139.356509,I,Above,Gable,0,5701,,39.73367762,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 22849,NJBF000057777,22 N FRONTENAC AVE,Margate City,NJ,39.33114791,-74.4998157,RES1,3001,,17,NE,1948,1948,3102,2,1,1047.923474,1047.923474,3505,NO,29.13,42.74,3,2.26,6106,113.465244,123.275515,132.979196,139.554506,I,Above,Flat,0,5701,,35.93630494,0,0,,,,1,1,,0.03,nav,1,1948,2,, 22850,NJBF000057751,12 N EXETER AVE,Margate City,NJ,39.33110381,-74.49868318,RES1,3001,,17,NE,1951,1951,3102,2,1,691.1319677,691.1319677,3505,NO,20.13,26.65,3,-2.66,6106,113.490817,123.296082,133.000702,139.57821,I,Above,Gable,0,5701,,23.39095457,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 22851,NJBF000056959,108 N JEROME AVE,Margate City,NJ,39.32961863,-74.50557895,RES1,3001,,17,NE,1955,1955,3101,1,1,1852.15608,1852.15608,3505,NO,13.16,24.74,3,1.53,6106,113.36032,123.190863,132.889602,139.457489,I,Above,Hip,0,5701,,18.94741552,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 22852,NJBF000057364,110 N IROQUOIS AVE,Margate City,NJ,39.33044125,-74.50442739,RES1,3001,,17,NE,1940,1940,3101,1,1,1121.750744,1121.750744,3507,NO,16.98,25.96,1,-0.73,6106,113.373839,123.201908,132.901735,139.469986,I,Above,Gable,0,5701,,21.4700702,0,0,,,,1,1,,0.03,nav,1,1940,1,, 22853,NJBF000063056,8009 BAYSHORE DR,Margate City,NJ,39.34079993,-74.51030268,RES1,3001,,NaN,NE,1969,0,3102,2,1,3270.254893,3270.254893,3505,NO,33.87,43.52,3,-1.88,6106,113.098282,122.981285,132.677913,139.202461,I,Above,Hip,0,5701,,38.69225319,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22854,NJBF000061019,213 N ARGYLE AVE,Margate City,NJ,39.33692455,-74.49692504,RES1,3001,,20,NE,2014,2014,3103,2,1,1199.886651,1199.886651,3505,NO,33.28,43.56,3,6.42,6106,113.448028,123.261871,132.96905,139.530166,I,Above,Gable,0,5701,,38.41740838,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 22855,NJBF000056025,16 S HANOVER AVE,Margate City,NJ,39.32754633,-74.50087431,RES1,3001,,20,NE,2006,2006,3102,3,1,1410.002982,1410.002982,3505,NO,44.88,51.85,3,7.21,6106,113.493619,123.297569,132.999311,139.580635,I,Above,Hip,0,5701,,48.36122543,0,0,,,,1,1,,0.03,nav,1,2006,3,, 22856,NJBF000057314,106 N IROQUOIS AVE,Margate City,NJ,39.33035133,-74.50435611,RES1,3001,,45,NE,1925,1925,3102,2,2,1248.202577,1248.202577,3507,NO,28.88,41.8,1,1.24,6106,113.376693,123.204183,132.904041,139.47265,I,Above,Gable,0,5701,,35.34116465,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22857,NJBF000055381,110 S JEROME AVE,Margate City,NJ,39.32593153,-74.50180752,RES1,3001,,19,NE,1940,1940,3102,2,1,1784.567925,1784.567925,3505,NO,39.2,50.61,3,3.13,6106,113.496532,123.299408,132.999809,139.58211,I,Above,Gable,0,5701,,44.90774446,0,0,,,,1,1,,0.03,nav,1,1940,2,, 22858,NJBF000057958,121 N HANOVER AVE,Margate City,NJ,39.33144949,-74.50411376,RES1,3001,,20,NE,2013,2013,3102,3,1,1033.966802,1033.966802,3507,NO,53.5,68.35,1,2.84,6106,113.366303,123.196034,132.896348,139.462681,I,Above,Hip,0,5701,,60.92381282,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 22859,NJBF000061313,8113 MARSHALL AVE,Margate City,NJ,39.33742374,-74.50799607,RES1,3001,,17,NE,1973,1973,3101,1,1,1794.012445,1794.012445,3505,NO,17.93,26.56,3,5,6106,113.196205,123.059977,132.758247,139.298976,I,Above,Gable,0,5701,,22.24337504,0,0,,,,1,1,,0.03,nav,1,1973,1,, 22860,NJBF000058484,7801 OAK GROVE,Margate City,NJ,39.33240159,-74.49823788,RES1,3001,,17,NE,1928,1928,3102,2,1,1345.776892,1345.776892,3505,NO,36.83,49.51,3,-1.69,6106,113.482236,123.289337,132.994643,139.569321,I,Above,Gable,0,5701,,43.16580725,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22861,NJBF000062750,8100 BAYSHORE DR,Margate City,NJ,39.34013551,-74.51040604,RES1,3001,,18,NE,1971,1971,3102,2,1,2574.029147,2574.029147,3505,NO,40.76,54.11,3,1.77,6106,113.105149,122.986894,132.683479,139.210215,I,Above,Gable,0,5701,,47.4383128,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 22862,NJBF000058471,121 N GRANVILLE AVE,Margate City,NJ,39.33237169,-74.50250027,RES1,3001,,17,NE,1945,1945,3102,2,1,1802.340426,1802.340426,3505,NO,25.02,37.58,3,-1.53,6106,113.388724,123.21417,132.91595,139.482901,I,Above,Gable,0,5701,,31.30220133,0,0,,,,1,1,,0.03,nav,1,1945,2,, 22863,NJBF000054681,,Margate City,NJ,39.32405669,-74.51588934,RES3B,3001,,NaN,ME,1969,0,3301,2,1,4260.998407,4260.998407,3505,NO,21.27,29.42,3,-1.56,6106,113.216101,123.072677,132.762601,139.319695,I,Above,Hip,0,NaN,,25.34276412,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22864,NJBF000060905,213 N BRUNSWICK DR,Margate City,NJ,39.33672485,-74.49863214,RES1,3001,,19,NE,2007,2007,3103,3,1,1699.049917,1699.049917,3505,NO,36.58,41.86,3,0.74,6106,113.413062,123.233804,132.939465,139.498855,I,Above,Gable,0,5701,,39.21847706,0,0,,,,1,1,,0.03,nav,1,2007,3,, 22865,NJBF000062442,8009 LAGOON DRIVE,Margate City,NJ,39.33947026,-74.50977366,RES1,3001,,20,NE,1976,1976,3102,2,1,2258.821004,2258.821004,3505,NO,32.14,41.25,3,2.01,6106,113.128373,123.005544,132.702586,139.232879,I,Above,Hip,0,5701,,36.69871201,0,0,,,,1,1,,0.03,nav,1,1976,2,, 22866,NJBF000054182,212 N COOLIDGE AVE,Margate City,NJ,39.32264714,-74.5210505,RES1,3001,,30,NE,1997,1997,3102,2,2,1745.503031,1745.503031,3507,NO,33.84,47.6,1,1.28,6106,113.124923,122.998283,132.684746,139.232771,I,Above,Hip,0,5701,,40.71768842,0,0,,,,1,1,,0.03,nav,1,1997,2,, 22867,NJBF000056090,14 S HANOVER AVE,Margate City,NJ,39.32769994,-74.50099817,RES1,3001,,20,NE,2006,2006,3102,3,1,1499.782541,1499.782541,3505,NO,43.86,53.59,3,3.76,6106,113.488672,123.293628,132.995323,139.576129,I,Above,Hip,0,5701,,48.72263657,0,0,,,,1,1,,0.03,nav,1,2006,3,, 22868,NJBF000055474,103 S KNIGHT AVE,Margate City,NJ,39.32619497,-74.5022829,RES1,3001,,22,NE,2015,2015,3102,2,1,1739.800253,1739.800253,3505,NO,25.67,39.97,3,-0.99,6106,113.48229,123.288022,132.988149,139.569156,I,Above,Flat,0,5701,,32.81850182,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 22869,NJBF000058389,112 N GLADSTONE AVE,Margate City,NJ,39.33223014,-74.50197016,RES1,3001,,17,NE,1954,1954,3102,2,1,1136.295456,1136.295456,3505,NO,31.16,41.19,3,4.02,6106,113.402421,123.225157,132.927329,139.495681,I,Above,Flat,0,5701,,36.17461915,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 22870,NJBF000057397,26 N HAVERFORD AVE,Margate City,NJ,39.33050399,-74.50208034,RES1,3001,,20,NE,2007,2007,3102,3,1,1521.294419,1521.294419,3505,NO,36.82,48.13,3,5.25,6106,113.424588,123.242713,132.944386,139.517056,I,Above,Flat,0,5701,,42.47535184,0,0,,,,1,1,,0.03,nav,1,2007,3,, 22871,NJBF000055688,107 N SUMNER AVE,Margate City,NJ,39.3267422,-74.51059942,RES1,3001,,19,NE,2008,2008,3102,2,1,1521.836871,1521.836871,3505,NO,29.88,42.76,3,1.9,6106,113.291983,123.13502,132.829309,139.39286,I,Above,Gable,0,5701,,36.31734223,0,0,,,,1,1,,0.03,nav,1,2008,2,, 22872,NJBF000058024,101 N GRANVILLE AVE,Margate City,NJ,39.33157036,-74.50176531,RES1,3001,,47,NE,1927,1927,3102,2,2,1404.71142,1404.71142,3505,NO,42.54,54.03,3,8.79,6106,113.416317,123.236238,132.938427,139.508969,I,Above,Gable,0,5701,,48.28373642,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 22873,NJBF000055414,201 N HARDING AVE,Margate City,NJ,39.32604003,-74.5143594,RES1,3001,,47,NE,1950,1950,3102,2,2,837.7365944,837.7365944,3505,NO,26.96,35.93,3,4.62,6106,113.220011,123.076818,132.768457,139.325308,I,Above,Flat,0,5701,,31.44751737,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22874,NJBF000054668,120 S NASSAU AVE,Margate City,NJ,39.32402047,-74.50394878,RES1,3001,,20,NE,1979,1979,3102,2,1,3330.688402,3330.688402,3505,NO,31.68,46.11,3,4.32,6106,113.4776,123.283413,132.981361,139.562428,I,Above,Flat,0,5701,,38.89591271,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 22875,NJBF000060733,404 N DOUGLAS AVE,Margate City,NJ,39.33646405,-74.50229767,RES1,3001,,18,NE,1962,1962,3102,2,1,1338.691278,1338.691278,3505,NO,25.02,34.23,3,-1.27,6106,113.335638,123.1717,132.874268,139.428645,I,Above,Gable,0,5701,,29.62173624,0,0,,,,1,1,,0.03,nav,1,1962,2,, 22876,NJBF000055158,105 S MANSFIELD AVE,Margate City,NJ,39.32530494,-74.50377667,RES1,3001,,20,NE,1925,1925,3102,2,1,1210.484664,1210.484664,3505,NO,24.46,33.65,3,-2.58,6106,113.462525,123.271777,132.970398,139.54999,I,Above,Flat,0,5701,,29.05464954,0,0,,,,1,1,,0.03,nav,1,1925,2,, 22877,NJBF000054979,113 S MANSFIELD AVE,Margate City,NJ,39.32480311,-74.50332671,RES1,3001,,20,NE,1968,1968,3102,2,1,2037.376332,2037.376332,3505,NO,46.48,58.82,3,8.94,6106,113.479729,123.285449,132.984208,139.565363,I,Above,Flat,0,5701,,52.65098318,0,0,,,,1,1,,0.03,nav,1,1968,2,, 22878,NJBF000054146,,Margate City,NJ,39.32254869,-74.51760286,RES1,3001,,NaN,NE,1969,0,3102,2,1,1066.344793,1066.344793,3507,NO,31.96,45.33,1,2.24,6106,113.201397,123.059942,132.748195,139.304064,I,Above,Gable,0,5701,,38.64598552,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22879,NJBF000054091,,Margate City,NJ,39.32235563,-74.51753677,RES3B,3001,,NaN,ME,1969,0,3301,2,1,3065.821716,3065.821716,3505,NO,31.59,44.8,3,5.1,6106,113.205744,123.06333,132.751526,139.307847,I,Above,Hip,0,5701,,38.19683852,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22880,NJBF000054127,9511 WINCHESTER AVE,Margate City,NJ,39.32247522,-74.51737483,RES1,3001,,17,NE,1950,1950,3101,1,1,1390.326619,1390.326619,3505,NO,9.98,19.76,3,-2.36,6106,113.207475,123.064801,132.753146,139.309629,I,Above,Gable,0,5701,,14.871092,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 22881,NJBF000058883,6 EAST DRIVE,Margate City,NJ,39.33311621,-74.49380982,RES1,3001,,18,NE,1925,1925,3102,2,1,1219.571716,1219.571716,3505,NO,29.51,38.54,3,1.13,6106,113.569787,123.359861,133.069261,139.649044,I,Above,Gable,0,5701,,34.0249124,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22882,NJBF000054820,114 S NASSAU AVE,Margate City,NJ,39.32440128,-74.5042748,RES1,3001,,19,NE,1953,1953,3103,3,1,1693.383403,1693.383403,3505,NO,32.25,42.89,3,-0.17,6106,113.464867,123.273307,132.971173,139.551133,I,Above,Hip,0,5701,,37.5675832,0,0,,,,1,1,,0.03,nav,1,1953,3,, 22883,NJBF000063759,7513 BAYSHORE DR,Margate City,NJ,39.34262784,-74.50426762,RES1,3001,,20,NE,1982,1982,3102,2,1,4880.610485,4880.610485,3505,NO,25.32,33.33,3,1.62,6102,113.207333,123.067863,132.768895,139.29662,I,Above,Hip,0,5701,,29.3279343,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 22884,NJBF000055081,114 S KENYON AVE,Margate City,NJ,39.32508198,-74.50257425,RES1,3001,,22,NE,2004,2004,3102,3,1,1562.472205,1562.472205,3505,NO,62.27,70.27,3,8.27,6106,113.492141,123.295561,132.99502,139.577165,I,Above,Hip,0,5701,,66.27090136,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 22885,NJBF000055024,115 S LANCASTER AVE,Margate City,NJ,39.32492546,-74.50270182,RES1,3001,,21,NE,2008,2008,3102,3,1,3878.421415,3878.421415,3505,NO,39.79,47.1,3,6.9,6106,113.491633,123.295091,132.994386,139.576517,I,Above,Hip,0,5701,,43.44206335,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 22886,NJBF000057266,12 N GRANVILLE AVE,Margate City,NJ,39.33025906,-74.50101752,RES1,3001,,20,NE,2012,2012,3102,3,1,1636.313416,1636.313416,3505,NO,45.2,55.01,3,6.81,6106,113.451462,123.264279,132.966741,139.542033,I,Above,Hip,0,5701,,50.10613051,0,0,,,,1,1,,0.03,nav,1,2012,3,, 22887,NJBF000055255,105 S LANCASTER AVE,Margate City,NJ,39.32558258,-74.50324275,RES1,3001,,19,NE,1930,1930,3102,3,1,1432.657581,1432.657581,3505,NO,33.63,40.25,3,-0.89,6106,113.470164,123.278036,132.977178,139.557349,I,Above,Flat,0,5701,,36.9412171,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 22888,NJBF000062642,8109 BAYSHORE DR,Margate City,NJ,39.33991321,-74.51157979,RES1,3001,,22,NE,1998,1998,3102,3,1,6056.836086,6056.836086,3505,NO,60.59,70.13,3,8.7,6106,113.082194,122.968615,132.664403,139.189654,I,Above,Hip,0,5701,,65.35862619,0,1.1,,,,1,1,,0.03,nav,1,1998,3,, 22889,NJBF000055497,205 N HARDING AVE,Margate City,NJ,39.32625333,-74.51457998,RES1,3001,,47,NE,1950,1950,3102,2,2,878.4784473,878.4784473,3505,NO,26.13,39.42,3,-0.2,6106,113.212022,123.070486,132.762071,139.318032,I,Above,Flat,0,5701,,32.77835659,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22890,NJBF000057876,111 N HUNTINGTON AVE,Margate City,NJ,39.33130007,-74.50316099,RES1,3001,,21,NE,2015,2015,3102,2,1,701.2259352,701.2259352,3507,NO,36.52,42.64,1,2.46,6106,113.389418,123.214581,132.915599,139.484175,I,Above,Flat,0,5701,,39.58339963,0,0,,,,1,1,,0.03,nav,1,2015,2,, 22891,NJBF000058705,114 N FRONTENAC AVE,Margate City,NJ,39.33277996,-74.50146593,RES1,3001,,17,NE,1954,1954,3101,1,1,1778.220551,1778.220551,3505,NO,25.37,32.93,3,7.26,6106,113.405736,123.227879,132.930572,139.498298,I,Above,Gable,0,5701,,29.15210283,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 22892,NJBF000058878,4 EAST DRIVE,Margate City,NJ,39.33310517,-74.49368234,RES1,3001,,19,NE,2012,2012,3102,2,1,1333.558272,1333.558272,3505,NO,32.05,39.23,3,5.11,6106,113.572762,123.362257,133.071773,139.65179,I,Above,Hip,0,5701,,35.63810884,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 22893,NJBF000055600,106 S IROQUOIS AVE,Margate City,NJ,39.32652675,-74.50081195,RES1,3001,,20,NE,1998,1998,3102,2,1,2444.41669,2444.41669,3505,NO,27.54,36.74,3,4.92,6106,113.509731,123.310241,133.011667,139.594862,I,Above,Flat,0,5701,,32.14141248,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 22894,NJBF000057107,13 N HUNTINGTON AVE,Margate City,NJ,39.32994514,-74.50182048,RES1,3001,,17,NE,1925,1925,3102,2,1,1837.473921,1837.473921,3505,NO,36.86,48.56,3,2.29,6106,113.43831,123.25364,132.955369,139.529879,I,Above,Hip,0,5701,,42.70785234,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 22895,NJBF000057027,9 N HUNTINGTON AVE,Margate City,NJ,39.32976037,-74.50169157,RES1,3001,,20,NE,2012,2012,3102,2,1,1456.161727,1456.161727,3505,NO,38.54,51.02,3,3.47,6106,113.443777,123.257999,132.959779,139.534964,I,Above,Flat,0,5701,,44.77931718,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 22896,NJBF000062083,504 N DELAVAN AVE,Margate City,NJ,39.33877434,-74.5037221,RES1,3001,,18,NE,1963,1963,3102,2,1,1694.730661,1694.730661,3505,NO,33.92,41.33,3,7.08,6106,113.272103,123.120566,132.822137,139.36576,I,Above,Gable,0,5701,,37.62357008,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 22897,NJBF000059045,102 N DELAVAN AVE,Margate City,NJ,39.33342961,-74.49847699,RES1,3001,,20,NE,2007,2007,3103,3,1,1131.334113,1131.334113,3505,NO,54.17,61.78,3,-1.62,6106,113.462481,123.27353,132.978843,139.549955,I,Above,Gable,0,5701,,57.9778493,0,0,,,,1,1,,0.03,nav,1,2007,3,, 22898,NJBF000059012,100 N DELAVAN AVE,Margate City,NJ,39.33336717,-74.49839553,RES1,3001,,21,NE,2007,2018,3103,3,1,799.7381837,799.7381837,3505,NO,51.37,64.48,3,5.44,6106,113.465153,123.275675,132.981045,139.552496,I,Above,Flat,0,5701,,57.92778967,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 22899,NJBF000055360,100 S KENYON AVE,Margate City,NJ,39.32587775,-74.50323545,RES1,3001,,19,NE,1951,1951,3102,2,1,1594.03725,1594.03725,3505,NO,40.18,50.64,3,7.22,6106,113.466034,123.274815,132.974079,139.553807,I,Above,Flat,0,5701,,45.40994504,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 22900,NJBF000057357,19 N HAVERFORD AVE,Margate City,NJ,39.3304335,-74.501475,RES1,3001,,17,NE,1953,1953,3101,1,1,1347.053282,1347.053282,3505,NO,8.73,18.19,3,-2.58,6106,113.438918,123.254223,132.956361,139.530363,I,Above,Hip,0,5701,,13.45843116,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 22901,NJBF000060572,215 N CLARENDON AVE,Margate City,NJ,39.3362087,-74.49917363,RES1,3001,,17,NE,1948,1948,3103,1,1,1253.565368,1253.565368,3505,NO,17.94,32.51,3,3.74,6106,113.408242,123.229966,132.935106,139.495564,I,Above,Hip,0,5701,,25.2245372,0,0,,,,1,1,,0.03,nav,1,1948,1,, 22902,NJBF000055132,111 S LANCASTER AVE,Margate City,NJ,39.32522815,-74.50293707,RES1,3001,,21,NE,1999,1999,3102,2,1,1688.013022,1688.013022,3505,NO,39.05,46.55,3,6.19,6106,113.482055,123.287487,132.986722,139.567991,I,Above,Hip,0,5701,,42.79687033,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 22903,NJBF000059442,23 EAST DRIVE,Margate City,NJ,39.33424649,-74.49430003,RES1,3001,,18,NE,1925,1925,3102,2,1,1283.260818,1283.260818,3505,NO,27.79,37.92,3,6.48,6106,113.543185,123.338486,133.047658,139.62271,I,Above,Gable,0,5701,,32.85640447,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22904,NJBF000054654,109 S PEMBROKE AVE,Margate City,NJ,39.3239643,-74.50509837,RES1,3001,,20,NE,1925,1925,3103,3,1,3954.92207,3954.92207,3505,NO,50.76,57.08,3,-1.1,6106,113.453282,123.263783,132.960842,139.539867,I,Above,Flat,0,5701,,53.91907038,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 22905,NJBF000057171,11 N HAVERFORD AVE,Margate City,NJ,39.3300719,-74.50115402,RES1,3001,,18,NE,1928,1928,3102,2,1,1345.400419,1345.400419,3505,NO,38.1,44.59,3,8.9,6106,113.451144,123.263988,132.966288,139.54177,I,Above,Hip,0,5701,,41.34575873,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 22906,NJBF000055579,,Margate City,NJ,39.32648375,-74.51478345,RES1,3001,,NaN,NE,1969,0,3102,2,1,832.7866094,832.7866094,3505,NO,27.05,35.2,3,-2.44,6106,113.204162,123.064264,132.755812,139.310881,I,Above,Gable,0,5701,,31.12351015,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22907,NJBF000058250,8100 MONMOUTH AVE,Margate City,NJ,39.331974,-74.50346776,RES1,3001,,18,NE,1948,1948,3102,2,1,1458.785608,1458.785608,3507,NO,25.67,38.52,1,1.84,6106,113.373049,123.20153,132.902462,139.468657,I,Above,Flat,0,5701,,32.09581983,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22908,NJBF000054886,206 N ADAMS AVE,Margate City,NJ,39.32456121,-74.51771178,RES3B,3001,,21,ME,2006,2006,3301,2,1,3229.790706,3229.790706,3502,NO,28.55,39.85,5,-3.11,6106,113.168788,123.034829,132.723928,139.276119,I,Above,Hip,0,5701,,34.20026239,0,0,,,,1,1,,0.03,nav,1,2006,2,, 22909,NJBF000058726,8010 MONMOUTH AVE,Margate City,NJ,39.33282072,-74.50198917,RES1,3001,,17,NE,1950,1950,3101,1,1,1227.917045,1227.917045,3505,NO,10.62,23.9,3,-2.12,6106,113.393624,123.218153,132.920433,139.487066,I,Above,Hip,0,5701,,17.26121576,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 22910,NJBF000059393,103 N CLARENDON AVE,Margate City,NJ,39.33416373,-74.49723888,RES1,3001,,20,NE,2007,2007,3102,3,1,1329.775743,1329.775743,3505,NO,41.81,48.04,3,3.64,6106,113.479493,123.28724,132.993759,139.564541,I,Above,Hip,0,5701,,44.92477062,0,0,,,,1,1,,0.03,nav,1,2007,3,, 22911,NJBF000061633,316 N FREDERICKSBURG AVE,Margate City,NJ,39.33798191,-74.49736569,RES1,3001,,17,NE,1993,1993,3103,2,1,1140.381047,1140.381047,3505,NO,25.98,38.11,3,-0.77,6106,113.423704,123.242223,132.949103,139.505401,I,Above,Gable,0,5701,,32.04637187,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 22912,NJBF000059789,35 EAST DRIVE,Margate City,NJ,39.33485043,-74.49451087,RES1,3001,,19,NE,1925,1925,3102,2,1,1361.787716,1361.787716,3505,NO,37.09,42.62,3,3.02,6106,113.530115,123.32797,133.037053,139.609561,I,Above,Gable,0,5701,,39.85592256,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22913,NJBF000059407,16 N FREDERICKSBURG AVE,Margate City,NJ,39.33419151,-74.49385578,RES1,3001,,18,NE,1930,1930,3102,2,1,1306.901238,1306.901238,3505,NO,33.54,44.02,3,2.13,6106,113.553732,123.346975,133.056547,139.632443,I,Above,Hip,0,5701,,38.77922505,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22914,NJBF000058649,112 N FRONTENAC AVE,Margate City,NJ,39.33267012,-74.50137408,RES1,3001,,17,NE,1956,1956,3102,2,1,1735.107117,1735.107117,3505,NO,30.92,44.1,3,4.61,6106,113.409321,123.230748,132.933494,139.50171,I,Above,Gable,0,5701,,37.50983327,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 22915,NJBF000055150,9 S PEMBROKE AVE,Margate City,NJ,39.32528146,-74.5063784,RES1,3001,,22,NE,2006,2006,3103,3,1,1509.97624,1509.97624,3505,NO,51.57,63.65,3,5.5,6106,113.405902,123.22615,132.922822,139.497481,I,Above,Hip,0,5701,,57.61206409,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 22916,NJBF000058273,108 N GLADSTONE AVE,Margate City,NJ,39.33201558,-74.50171985,RES1,3001,,17,NE,1950,1950,3102,2,1,1047.084321,1047.084321,3505,NO,32.84,39.89,3,-0.8,6106,113.410968,123.231999,132.934326,139.503742,I,Above,Hip,0,5701,,36.36442358,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22917,NJBF000054254,202 N MONROE AVE,Margate City,NJ,39.32287651,-74.51988777,RES3A,3001,,30,NE,2001,2001,3301,2,2,1719.381043,1719.381043,3505,NO,35.29,47.05,3,1.96,6106,113.146726,123.016033,132.703204,139.25347,I,Above,Gable,0,5701,,41.17326396,0,0,,,,1,1,,0.03,nav,1,2001,2,, 22918,NJBF000055568,111 S IROQUOIS AVE,Margate City,NJ,39.32643441,-74.50028406,RES1,3001,,19,NE,1962,1962,3102,2,1,2325.165743,2325.165743,3505,NO,30.21,43.18,3,1.18,6106,113.522663,123.320632,133.022451,139.606761,I,Above,Flat,0,5701,,36.69392286,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 22919,NJBF000062315,506 N CLERMONT AVE,Margate City,NJ,39.33921317,-74.50331386,RES1,3001,,17,NE,1962,1962,3102,2,1,1608.307697,1608.307697,3505,NO,43.56,57.53,3,7.26,6106,113.275093,123.12289,132.824797,139.367442,I,Above,Hip,0,5701,,50.54742737,0,0,,,,1,1,,0.03,nav,1,1962,2,, 22920,NJBF000055721,215 N HARDING AVE,Margate City,NJ,39.32681526,-74.51509803,RES1,3001,,47,NE,1950,1950,3102,2,2,960.6343863,960.6343863,3505,NO,45.17,54.03,3,8.12,6106,113.192372,123.054927,132.746404,139.300125,I,Above,Gable,0,5701,,49.59939835,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22921,NJBF000058861,114 N EXETER AVE,Margate City,NJ,39.3330726,-74.50060824,RES1,3001,,17,NE,1956,1956,3102,3,1,2363.326925,2363.326925,3505,NO,38.31,43.48,3,5.76,6106,113.420514,123.239777,132.943229,139.511665,I,Above,Gable,0,5701,,40.89638786,0,0,,,,1,1,,0.03,nav,1,1956,3,, 22922,NJBF000060700,309 N CLERMONT AVE,Margate City,NJ,39.33642338,-74.50010899,RES1,3001,,17,NE,1956,1956,3102,2,1,1526.219256,1526.219256,3505,NO,25.92,36.3,3,2.59,6106,113.384602,123.210979,132.91535,139.473532,I,Above,Hip,0,5701,,31.10908205,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 22923,NJBF000054983,202 N WASHINGTON AVE,Margate City,NJ,39.32480943,-74.51647608,RES1,3001,,21,NE,2003,2003,3103,3,1,1378.164573,1378.164573,3505,NO,44.21,59.08,3,0.42,6106,113.192053,123.053705,132.743607,139.298092,I,Above,Hip,0,5701,,51.64853942,0,0,,,,1,1,,0.03,nav,1,2003,3,, 22924,NJBF000054113,102 S UNION AVE,Margate City,NJ,39.32241014,-74.50887364,RES1,3001,,21,NE,2006,2006,3103,3,1,3179.573851,3179.573851,3505,NO,47.75,56.36,3,5.39,6106,113.393766,123.21505,132.908688,139.482633,I,Above,Gable,0,5701,,52.05145015,0,0,,,,1,1,,0.03,nav,1,2006,3,, 22925,NJBF000054148,9000 ATLANTIC AVE,Margate City,NJ,39.32255222,-74.50903295,RES1,3001,,19,NE,1940,1940,3102,2,1,1941.93073,1941.93073,3505,NO,44.83,57.22,3,8.06,6106,113.388182,123.210619,132.904216,139.477671,I,Above,Gable,0,5701,,51.02361129,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 22926,NJBF000058337,102 N FRONTENAC AVE,Margate City,NJ,39.33211629,-74.50083834,RES1,3001,,17,NE,1955,1955,3102,2,1,1736.876848,1736.876848,3505,NO,36.63,43.52,3,6.64,6106,113.428985,123.24649,132.949555,139.520343,I,Above,Gable,0,5701,,40.07275373,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 22927,NJBF000058596,104 N EXETER AVE,Margate City,NJ,39.33258853,-74.50012509,RES1,3001,,17,NE,1952,1952,3101,1,1,1131.508579,1131.508579,3505,NO,7.64,14.62,3,-3,6106,113.438002,123.253788,132.957542,139.528288,I,Above,Gable,0,5701,,11.12972606,0,0,,,,1,1,,0.03,nav,1,1952,1,, 22928,NJBF000055701,8302 ATLANTIC AVE,Margate City,NJ,39.32677001,-74.50136616,RES1,3001,,17,NE,1956,1956,3102,2,1,2207.66841,2207.66841,3505,NO,35.62,45.41,3,3.43,6106,113.494053,123.297686,132.998756,139.580526,I,Above,Flat,0,5701,,40.51423831,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 22929,NJBF000056429,8208 VENTNOR AVE,Margate City,NJ,39.32845668,-74.50185519,RES1,3001,,18,NE,1954,1954,3102,2,1,2814.653362,2814.653362,3505,NO,33.54,43.58,3,8.36,6106,113.458925,123.269883,132.97114,139.548844,I,Above,Hip,0,5701,,38.56017334,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 22930,NJBF000057052,2 N GRANVILLE AVE,Margate City,NJ,39.32982116,-74.50061814,RES1,3001,,17,NE,1925,1925,3102,2,1,1595.179113,1595.179113,3505,NO,34.78,41.75,3,6.92,6106,113.466527,123.276314,132.97898,139.556066,I,Above,Hip,0,5701,,38.26076634,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22931,NJBF000058605,105 N FRONTENAC AVE,Margate City,NJ,39.33260089,-74.50058693,RES1,3001,,17,NE,1955,1955,3102,2,1,2005.422854,2005.422854,3505,NO,28.69,34.04,3,1.37,6106,113.427647,123.245467,132.948842,139.51871,I,Above,Hip,0,5701,,31.36832412,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 22932,NJBF000055555,8307 SALEM RD,Margate City,NJ,39.32640425,-74.50154888,RES1,3001,,19,NE,1940,1940,3102,2,1,1089.005107,1089.005107,3505,NO,36.34,43.34,3,5.61,6106,113.49535,123.298613,132.999401,139.581436,I,Above,Hip,0,5701,,39.83614095,0,0,,,,1,1,,0.03,nav,1,1940,2,, 22933,NJBF000054901,,Margate City,NJ,39.32459042,-74.51693398,RES3B,3001,,NaN,ME,1969,0,3301,1,1,1422.673697,1422.673697,3502,NO,12.46,21.68,5,-3.96,6106,113.185328,123.048171,132.73772,139.291588,I,Above,Hip,0,5701,,17.06822186,0,0,,,,1,1,,0.03,nav,1,1969,1,, 22934,NJBF000057645,522 N UNION AVE,Margate City,NJ,39.33093003,-74.51687945,RES1,3001,,22,NE,1990,1990,3102,2,1,1512.729681,1512.729681,3505,NO,26.22,32.55,3,-2.63,6102,113.092892,122.976546,132.66818,139.20869,I,Above,Flat,0,5701,,29.38265551,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 22935,NJBF000055571,8305 SALEM RD,Margate City,NJ,39.32645354,-74.50136234,RES1,3001,,19,NE,1968,1968,3102,2,1,1699.6622,1699.6622,3505,NO,20.55,32.37,3,-1.89,6106,113.498725,123.30135,133.002305,139.584606,I,Above,Hip,0,5701,,26.45583567,0,0,,,,1,1,,0.03,nav,1,1968,2,, 22936,NJBF000062635,8003 LAGOON DRIVE,Margate City,NJ,39.33988855,-74.50916483,RES1,3001,,19,NE,1974,1974,3102,2,1,2798.498991,2798.498991,3505,NO,34.33,48.26,3,-2.53,6106,113.136083,123.011632,132.709098,139.239052,I,Above,Gable,0,5701,,41.29473278,0,0,,,,1,1,,0.03,nav,1,1974,2,, 22937,NJBF000057049,,Margate City,NJ,39.32981503,-74.51624208,RES1,3001,,NaN,NE,1930,0,3102,2,1,2614.79769,2614.79769,3505,NO,35.31,40.8,3,6.24,6102,113.123167,123.000481,132.692209,139.236851,I,Above,Flat,0,5701,,38.05053051,0,0,,,,1,1,,0.03,nav,1,1930,2,, 22938,NJBF000058516,8016 MONMOUTH AVE,Margate City,NJ,39.33244993,-74.50258514,RES1,3001,,17,NE,1954,1954,3102,2,1,1189.03802,1189.03802,3505,NO,26.62,39.47,3,5.39,6106,113.385743,123.211785,132.913513,139.480084,I,Above,Hip,0,5701,,33.04250322,0,0,,,,1,1,,0.03,nav,1,1954,2,, 22939,NJBF000058425,114 N GLADSTONE AVE,Margate City,NJ,39.33229057,-74.50207363,RES1,3001,,20,NE,2014,2014,3102,3,1,2009.96046,2009.96046,3505,NO,43.51,52.95,3,4.48,6106,113.399263,123.222627,132.924729,139.492714,I,Above,Hip,0,5701,,48.23238554,0,0,,,,1,1,,0.03,nav,1,2014,3,, 22940,NJBF000056870,,Margate City,NJ,39.32943692,-74.51611284,RES1,3001,,NaN,NE,1997,0,3102,2,1,1803.903022,1803.903022,3505,NO,31.01,40.64,3,8.48,6106,113.131533,123.007068,132.698769,139.244581,I,Above,Hip,0,5701,,35.82099893,0,0,,,,1,1,,0.03,nav,1,1997,2,, 22941,NJBF000056198,104 S GLADSTONE AVE,Margate City,NJ,39.32795286,-74.4983412,RES1,3001,,19,NE,1926,1926,3102,3,1,1919.165716,1919.165716,3505,NO,45.46,57.43,3,-1.95,6106,113.54338,123.337765,133.041741,139.626982,I,Above,Gable,0,5701,,51.44527352,0,1.2,,,,1,1,,0.03,nav,1,1926,3,, 22942,NJBF000062099,507 N DOUGLAS AVE,Margate City,NJ,39.33879246,-74.50403666,RES1,3001,,18,NE,1966,1966,3102,2,1,1380.116739,1380.116739,3505,NO,26.89,40.72,3,2.58,6106,113.264877,123.114779,132.8161,139.359131,I,Above,Hip,0,5701,,33.80396963,0,0,,,,1,1,,0.03,nav,1,1966,2,, 22943,NJBF000059041,124 N EXETER AVE,Margate City,NJ,39.33341856,-74.50088672,RES1,3001,,17,NE,1955,1955,3101,1,1,1979.288276,1979.288276,3505,NO,20.43,33.49,3,7.48,6106,113.409478,123.230936,132.934225,139.501107,I,Above,Hip,0,5701,,26.95652952,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22944,NJBF000058146,8703 FULTON AVE,Margate City,NJ,39.3317875,-74.5131885,RES1,3001,,20,NE,2012,2012,3102,2,1,1492.383474,1492.383474,3505,NO,34.38,39.68,3,7.04,6102,113.161638,123.03188,132.725916,139.27254,I,Above,Gable,0,5701,,37.02747771,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 22945,NJBF000058951,117 N FRONTENAC AVE,Margate City,NJ,39.33324169,-74.50122621,RES1,3001,,17,NE,1956,1956,3102,2,1,1556.218105,1556.218105,3505,NO,36.11,45.84,3,6.47,6106,113.404498,123.226923,132.929902,139.496703,I,Above,Hip,0,5701,,40.97606478,0,0,,,,1,1,,0.03,nav,1,1956,2,, 22946,NJBF000056683,304 N RUMSON AVE,Margate City,NJ,39.32903651,-74.51236547,RES1,3001,,17,NE,1951,1951,3102,2,1,1524.783258,1524.783258,3505,NO,24.85,33.59,3,2.72,6106,113.21965,123.077688,132.771566,139.326593,I,Above,Gable,0,5701,,29.21954225,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 22947,NJBF000056738,402 N THURLOW AVE,Margate City,NJ,39.32914849,-74.51436019,RES1,3001,,17,NE,1949,1949,3102,1,1,1813.226195,1813.226195,3505,NO,17.1,22.74,3,2.27,6106,113.174235,123.041253,132.733918,139.284318,I,Above,Hip,0,5701,,19.91882664,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 22948,NJBF000056013,109 S GRANVILLE AVE,Margate City,NJ,39.32752152,-74.4982183,RES1,3001,,20,NE,1977,1977,3102,2,1,2287.109328,2287.109328,3505,NO,38.09,43.84,3,7.45,6106,113.552284,123.344826,133.048757,139.635001,I,Above,Gable,0,5701,,40.96483298,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 22949,NJBF000055493,202 N WILSON AVE,Margate City,NJ,39.32624341,-74.51426936,RES1,3001,,47,NE,1950,1950,3102,2,2,842.9847055,842.9847055,3505,NO,33.24,47.24,3,2.96,6106,113.218975,123.076075,132.767845,139.324505,I,Above,Gable,0,5701,,40.24037262,0,0,,,,1,1,,0.03,nav,1,1950,2,, 22950,NJBF000058249,105 N GLADSTONE AVE,Margate City,NJ,39.3319735,-74.50117882,RES1,3001,,17,NE,1942,1942,3102,2,1,954.2214125,954.2214125,3505,NO,32.97,40.34,3,1.24,6106,113.4235,123.242064,132.944819,139.51537,I,Above,Hip,0,5701,,36.65438066,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 22951,NJBF000060988,227 N CLARENDON AVE,Margate City,NJ,39.33685794,-74.49980821,RES1,3001,,17,NE,1950,1950,3103,1,1,1068.240451,1068.240451,3505,NO,14.75,23.29,3,-2.1,6106,113.385219,123.211445,132.916113,139.473185,I,Above,Hip,0,5701,,19.01901063,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22952,NJBF000055611,116 N THURLOW AVE,Margate City,NJ,39.3265555,-74.511904,RES1,3001,,20,NE,2004,2004,3102,3,1,1206.495997,1206.495997,3505,NO,40.9,47.76,3,8.9,6106,113.266143,123.114158,132.807525,139.368679,I,Above,Hip,0,5701,,44.32723909,0,0,,,,1,1,,0.03,nav,1,2004,3,, 22953,NJBF000056077,8807 MONMOUTH AVE,Margate City,NJ,39.32766705,-74.51148713,RES1,3001,,17,NE,1945,1945,3102,2,1,1060.032457,1060.032457,3505,NO,37.12,48.79,3,5.33,6106,113.258947,123.108799,132.802821,139.362666,I,Above,Gable,0,5701,,42.95642624,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 22954,NJBF000056814,418 N THURLOW AVE,Margate City,NJ,39.32930896,-74.51452785,RES1,3001,,20,NE,2006,2006,3102,2,1,2257.237119,2257.237119,3505,NO,36.93,48.24,3,8.74,6106,113.168193,123.036456,132.729063,139.278725,I,Above,Gable,0,5701,,42.58403854,0,0,,,,1,1,,0.03,nav,1,2006,2,, 22955,NJBF000059031,114 N ESSEX AVE,Margate City,NJ,39.33340234,-74.49997932,RES1,3001,,17,NE,1925,1925,3103,3,1,2145.077834,2145.077834,3505,NO,43.3,52.62,3,5.12,6106,113.429746,123.247219,132.951256,139.519822,I,Above,Gable,0,5701,,47.95981141,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 22956,NJBF000056338,3 S IROQUOIS AVE,Margate City,NJ,39.32824619,-74.50174951,RES1,3001,,18,NE,1937,1937,3102,2,1,1235.674118,1235.674118,3505,NO,25.57,36.04,3,-1.59,6106,113.464275,123.274134,132.975407,139.553736,I,Above,Gable,0,5701,,30.80240126,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 22957,NJBF000056295,7 S IROQUOIS AVE,Margate City,NJ,39.32815405,-74.50167713,RES1,3001,,21,NE,1930,1930,3102,2,1,1258.958009,1258.958009,3505,NO,45.58,57.15,3,8.77,6106,113.467206,123.276469,132.97777,139.556421,I,Above,Hip,0,5701,,51.36162937,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 22958,NJBF000055962,207 N UNION AVE,Margate City,NJ,39.32738661,-74.51308787,RES1,3001,,17,NE,1950,1950,3101,1,1,1308.008436,1308.008436,3505,NO,28.14,39.16,3,9,6106,113.227961,123.083781,132.776686,139.333657,I,Above,Gable,0,5701,,33.64882038,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22959,NJBF000057858,,Margate City,NJ,39.33127683,-74.49542441,RES1,3001,,NaN,NE,1969,0,3102,2,1,1068.740678,1068.740678,3505,NO,34.71,43.6,3,-0.81,6106,113.56012,123.351898,133.059401,139.642225,I,Above,Gable,0,5701,,39.15567386,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22960,NJBF000055907,228 N VENDOME AVE,Margate City,NJ,39.327255,-74.5143685,RES1,3001,,18,NE,1926,1926,3102,2,1,1504.929818,1504.929818,3505,NO,34.13,40.5,3,6.83,6106,113.201839,123.062725,132.754794,139.309236,I,Above,Flat,0,5701,,37.31245884,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 22961,NJBF000055873,224 N VENDOME AVE,Margate City,NJ,39.32718149,-74.51431178,RES1,3001,,17,NE,1920,1920,3102,2,1,845.0875835,845.0875835,3505,NO,34.21,48.47,3,3.12,6106,113.204178,123.064576,132.756654,139.311371,I,Above,Flat,0,5701,,41.33745679,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 22962,NJBF000059307,17 EAST DRIVE,Margate City,NJ,39.33397955,-74.49405917,RES1,3001,,18,NE,1925,1925,3102,2,1,1454.36632,1454.36632,3505,NO,44.61,52.78,3,7.88,6106,113.552213,123.345747,133.055092,139.631464,I,Above,Hip,0,5701,,48.69283096,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 22963,NJBF000055918,206 N THURLOW AVE,Margate City,NJ,39.32727606,-74.51257991,RES1,3001,,17,NE,1978,1978,3102,2,1,1336.750712,1336.750712,3505,NO,29.5,43.26,3,7.23,6106,113.240725,123.094001,132.787189,139.345483,I,Above,Gable,0,5701,,36.38091294,0,0,,,,1,1,,0.03,nav,1,1978,2,, 22964,NJBF000055186,,Margate City,NJ,39.32538395,-74.51636963,RES3B,3001,,NaN,E,1969,0,3303,3,1,4108.863302,4108.863302,3507,NO,36.76,48.67,1,2.8,6106,113.185793,123.04896,132.739156,139.29282,I,Above,Hip,0,5701,,42.71409471,0,0,,,,1,1,,0.03,nav,1,1969,3,, 22965,NJBF000056981,,Margate City,NJ,39.32967225,-74.51610022,RES1,3001,,NaN,NE,1991,0,3102,2,1,1312.959647,1312.959647,3505,NO,24.56,36.9,3,3.04,6106,113.128377,123.004615,132.696387,139.241684,I,Above,Hip,0,5701,,30.73093877,0,0,,,,1,1,,0.03,nav,1,1991,2,, 22966,NJBF000056527,403 N VENDOME AVE,Margate City,NJ,39.32867741,-74.51524786,RES1,3001,,17,NE,1930,1930,3102,2,2,1144.545528,1144.545528,3505,NO,31.89,46.82,3,6.32,6106,113.161655,123.030984,132.722978,139.27245,I,Above,Gable,0,5701,,39.35300824,0,0,,,,1,1,,0.03,nav,1,1930,2,, 22967,NJBF000054963,9307 MONMOUTH AVE,Margate City,NJ,39.32476459,-74.51668183,RES1,3001,,19,NE,2010,2010,3102,2,1,1252.066236,1252.066236,3507,NO,37.73,48.66,1,-0.67,6106,113.188213,123.050588,132.740354,139.294464,I,Above,Flat,0,5701,,43.19250163,0,0,,,,1,1,,0.03,nav,1,2010,2,, 22968,NJBF000057367,16 N GRANVILLE AVE,Margate City,NJ,39.33044428,-74.50121137,RES1,3001,,17,NE,1956,1956,3102,2,1,1603.401794,1603.401794,3505,NO,27.53,38.94,3,-1.98,6106,113.44457,123.258771,132.961126,139.535602,I,Above,Gable,0,5701,,33.23691951,0,0,,,,1,1,,0.03,nav,1,1956,2,, 22969,NJBF000058414,7903 WINCHESTER AVE,Margate City,NJ,39.33226581,-74.50028571,RES1,3001,,17,NE,1954,1954,3101,1,1,2167.884448,2167.884448,3505,NO,26.55,37.35,3,7.41,6106,113.439024,123.254576,132.958128,139.529512,I,Above,Flat,0,5701,,31.95020264,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 22970,NJBF000058900,102 N DOUGLAS AVE,Margate City,NJ,39.33314759,-74.49898348,RES1,3001,,17,NE,1960,1960,3103,2,1,1244.3491,1244.3491,3505,NO,32.86,47.32,3,-0.57,6106,113.455291,123.267732,132.972558,139.54367,I,Above,Gable,0,5701,,40.08964648,0,0,,,,1,1,,0.03,nav,1,1960,2,, 22971,NJBF000057224,346 N RUMSON AVE,Margate City,NJ,39.33017416,-74.51347104,RES1,3001,,21,NE,2005,2005,3102,3,1,2171.910696,2171.910696,3505,NO,55.48,70.15,3,2.68,6106,113.178792,123.045231,132.738719,139.288709,I,Above,Hip,0,5701,,62.81936518,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 22972,NJBF000058796,112 N EXETER AVE,Margate City,NJ,39.33295339,-74.50050954,RES1,3001,,17,NE,1954,1954,3102,2,1,2110.74879,2110.74879,3505,NO,33.44,40.73,3,-0.9,6106,113.424369,123.242865,132.946375,139.515347,I,Above,Hip,0,5701,,37.08706598,0,0,,,,1,1,,0.03,nav,1,1954,2,, 22973,NJBF000056948,5-A N HUNTINGTON AVE,Margate City,NJ,39.32960495,-74.50148221,RES1,3001,,18,NE,1979,1979,3102,2,1,1333.256783,1333.256783,3505,NO,33.87,44.48,3,6.08,6106,113.450618,123.26347,132.965374,139.541315,I,Above,Hip,0,5701,,39.17460415,0,0,,,,1,1,,0.03,nav,1,1979,2,, 22974,NJBF000062252,8202 BAYSHORE DR WEST,Margate City,NJ,39.33908544,-74.51179697,RES1,3001,,20,NE,1989,1989,3102,2,1,2497.641248,2497.641248,3505,NO,37.82,47.19,3,8.8,6106,113.088876,122.974062,132.669721,139.197398,I,Above,Flat,0,5701,,42.50767647,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 22975,NJBF000057604,14 S CLARENDON AVE,Margate City,NJ,39.3308673,-74.49482328,RES1,3001,,19,NE,1948,1948,3102,2,1,1830.13367,1830.13367,3505,NO,26.65,33.93,3,-0.22,6106,113.579151,123.367174,133.075108,139.660091,I,Above,Flat,0,5701,,30.28868627,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 22976,NJBF000056092,216 N THURLOW AVE,Margate City,NJ,39.32770658,-74.51303932,RES1,3001,,17,NE,1950,1950,3102,2,1,1557.983217,1557.983217,3505,NO,29.26,34.93,3,8.19,6106,113.224332,123.080987,132.774028,139.33045,I,Above,Flat,0,5701,,32.09145544,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 22977,NJBF000056156,106 S GLADSTONE AVE,Margate City,NJ,39.32784292,-74.49822522,RES1,3001,,19,NE,1922,1922,3102,3,1,1484.212996,1484.212996,3505,NO,52.92,67.32,3,-2.43,6106,113.54751,123.341064,133.045101,139.630756,I,Above,Gable,0,5701,,60.12074491,0,1.1,,,,1,1,,0.03,nav,1,1922,3,, 22978,NJBF000056107,15 S IROQUOIS AVE,Margate City,NJ,39.327745,-74.5013335,RES1,3001,,18,NE,1935,1935,3102,2,1,1856.844424,1856.844424,3505,NO,33.58,40.95,3,8.99,6106,113.480644,123.287176,132.988615,139.568705,I,Above,Flat,0,5701,,37.26439756,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 22979,NJBF000056988,419 N UNION AVE,Margate City,NJ,39.32968,-74.515266,RES1,3001,,17,NE,1965,1965,3102,2,1,1094.87458,1094.87458,3505,NO,28.1,35.36,3,3.68,6106,113.146568,123.019218,132.711483,139.258643,I,Above,Gable,0,5701,,31.7308868,0,0,,,,1,1,,0.03,nav,1,1965,2,, 22980,NJBF000057147,344 N RUMSON AVE,Margate City,NJ,39.33003024,-74.51333656,RES1,3001,,18,NE,1977,1977,3102,2,1,1529.448871,1529.448871,3505,NO,35.3,44.09,3,0.8,6106,113.183831,123.049234,132.742768,139.293394,I,Above,Gable,0,5701,,39.6931922,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 22981,NJBF000057697,,Margate City,NJ,39.33101418,-74.51423234,RES1,3001,,NaN,NE,1969,0,3102,2,1,2933.684701,2933.684701,3505,NO,34.44,44.26,3,-2.08,6106,113.149859,123.02225,132.71547,139.26174,I,Above,Hip,0,5701,,39.34993622,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22982,NJBF000057153,406 N QUINCY AVE,Margate City,NJ,39.33003422,-74.5124573,RES1,3001,,18,NE,1956,1956,3101,1,1,1641.686415,1641.686415,3505,NO,21.9,32.87,3,7.43,6106,113.20311,123.064708,132.758801,139.311342,I,Above,Gable,0,5701,,27.38413029,0,0,,,,1,1,,0.03,nav,1,1956,1,, 22983,NJBF000056012,212 N THURLOW AVE,Margate City,NJ,39.32752018,-74.51282935,RES1,3001,,17,NE,1950,1950,3101,1,1,997.7577521,997.7577521,3505,NO,16,23.51,3,3.28,6106,113.231682,123.086825,132.779937,139.337198,I,Above,Hip,0,5701,,19.75458707,0,0,,,,1,1,,0.03,nav,1,1950,1,, 22984,NJBF000059261,106 N CLERMONT AVE,Margate City,NJ,39.33387971,-74.49818791,RES1,3001,,17,NE,1959,1959,3103,2,1,1234.691905,1234.691905,3505,NO,26.42,38.59,3,2.62,6106,113.462535,123.273596,132.97924,139.549395,I,Above,Gable,0,5701,,32.50694237,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 22985,NJBF000055941,214 N UNION AVE,Margate City,NJ,39.3273431,-74.51356599,RES1,3001,,17,NE,1925,1925,3101,1,1,1550.416287,1550.416287,3505,NO,15.16,28.36,3,-1.39,6106,113.218134,123.075863,132.768454,139.324475,I,Above,Gable,0,5701,,21.76326547,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 22986,NJBF000056368,119 N PEMBROKE AVE,Margate City,NJ,39.3283273,-74.50931953,RES1,3001,,20,NE,2013,2013,3102,2,1,1331.014543,1331.014543,3505,NO,41.49,56.45,3,5.07,6106,113.29685,123.139492,132.835175,139.398225,I,Above,Hip,0,5701,,48.97318954,0,0,,,,1,1,,0.03,nav,1,2013,2,, 22987,NJBF000056576,9001 FREMONT AVE,Margate City,NJ,39.32878557,-74.51498199,RES1,3001,,17,NE,1952,1952,3102,2,1,2152.07137,2152.07137,3505,NO,30.52,38.87,3,-2.38,6106,113.16589,123.034426,132.72661,139.276436,I,Above,Gable,0,5701,,34.69515906,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 22988,NJBF000055949,,Margate City,NJ,39.32735442,-74.51208826,RES1,3001,,NaN,NE,1969,0,3102,2,1,1326.605502,1326.605502,3505,NO,36.51,46.65,3,6.51,6106,113.250362,123.101781,132.795309,139.354503,I,Above,Flat,0,5701,,41.58251039,0,0,,,,1,1,,0.03,nav,1,1969,2,, 22989,NJBF000056690,408 N UNION AVE,Margate City,NJ,39.329054,-74.515198,RES1,3001,,17,NE,1955,1955,3101,1,1,1055.123889,1055.123889,3505,NO,8.38,16.58,3,-2.89,6106,113.157223,123.02756,132.719693,139.268437,I,Above,Gable,0,5701,,12.4828356,0,0,,,,1,1,,0.03,nav,1,1955,1,, 22990,NJBF000056211,108 S FRONTENAC AVE,Margate City,NJ,39.32797616,-74.49763408,RES1,3001,,19,NE,1941,1941,3103,2,1,1232.122414,1232.122414,3505,NO,30.77,45.74,3,3.49,6106,113.558578,123.350018,133.054604,139.641081,I,Above,Flat,0,5701,,38.25589162,0,1.2,,,,1,1,,0.03,nav,1,1941,2,, 22991,NJBF000057590,362 N RUMSON AVE,Margate City,NJ,39.33083433,-74.51410944,RES1,3001,,21,NE,2016,2016,3102,3,1,723.018249,723.018249,3505,NO,47.1,55.47,3,-0.92,6106,113.155176,123.026467,132.719721,139.266708,I,Above,Flat,0,5701,,51.28805215,0,0,,,,1,1,,0.03,nav,1,2016,3,, 22992,NJBF000055111,9211 MONMOUTH AVE,Margate City,NJ,39.32516487,-74.51609233,RES3D,3001,,NaN,ME,1955,1955,3301,2,1,3253.76618,3253.76618,3507,NO,29.27,42.06,1,-0.58,6106,113.195128,123.056366,132.746635,139.301319,I,Above,Flat,0,5701,,35.66106306,0,0,,,,1,1,,0.03,nav,1,1955,2,, 22993,NJBF000056340,202 N QUINCY AVE,Margate City,NJ,39.32825037,-74.51073305,RES1,3001,,17,NE,1952,1952,3101,1,1,1288.667822,1288.667822,3505,NO,26.08,38.57,3,6.72,6106,113.26696,123.115443,132.810148,139.370386,I,Above,Gable,0,5701,,32.32415818,0,0,,,,1,1,,0.03,nav,1,1952,1,, 22994,NJBF000055257,210 N DECATUR AVE,Margate City,NJ,39.32559298,-74.51613239,RES3B,3001,,30,ME,1999,1999,3301,2,2,1768.764453,1768.764453,3507,NO,32.99,44.24,1,0.27,6106,113.187881,123.050745,132.741161,139.294962,I,Above,Hip,0,5701,,38.6151932,0,0,,,,1,1,,0.03,nav,1,1999,2,, 22995,NJBF000055845,208 N UNION AVE,Margate City,NJ,39.32710692,-74.51333116,RES1,3001,,17,NE,1925,1925,3101,1,1,1336.24825,1336.24825,3505,NO,20.56,32.7,3,4.25,6106,113.226757,123.082702,132.775359,139.332368,I,Above,Gable,0,5701,,26.63095657,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 22996,NJBF000059161,114 N DOUGLAS AVE,Margate City,NJ,39.33367822,-74.49946265,RES1,3001,,19,NE,1998,1998,3103,3,1,1274.422334,1274.422334,3505,NO,40.09,47.02,3,5.64,6110,113.437244,123.253259,132.95778,139.526394,I,Above,Gable,0,5701,,43.55210509,0,0,,,,1,1,,0.35,nav,1,1998,3,, 22997,NJBF000055480,9204 AMHERST AVE,Margate City,NJ,39.32620744,-74.51610957,COM3,3001,,17,ME,1932,1932,3401,2,1,1289.690938,1289.690938,3507,NO,37.67,45.23,1,-0.79,6106,113.179238,123.044085,132.734747,139.287422,I,Above,Gable,0,NaN,,41.45352247,0,0,,,,1,1,,0.03,nav,1,1932,2,, 22998,NJBF000056503,402 N VENDOME AVE,Margate City,NJ,39.32862345,-74.5157944,RES1,3001,,22,NE,2001,2003,3102,2,1,3659.296354,3659.296354,3505,NO,36.11,44.48,3,0.75,6106,113.150475,123.021984,132.713639,139.262005,I,Above,Hip,0,5701,,40.29316775,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 22999,NJBF000055649,8306 ATLANTIC AVE,Margate City,NJ,39.32665658,-74.50153579,RES1,3001,,17,NE,1951,1951,3102,1,1,2233.571161,2233.571161,3505,NO,18.6,32.27,3,3.44,6106,113.491962,123.295966,132.996858,139.578502,I,Above,Hip,0,5701,,25.4390377,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 23000,NJBF000054052,25 S BENSON AVE,Margate City,NJ,39.32222781,-74.51167319,RES1,3001,,17,NE,1952,1952,3102,2,1,1080.147013,1080.147013,3505,NO,28.05,38.08,3,1.87,6106,113.335414,123.167879,132.859558,139.428281,I,Above,Hip,0,5701,,33.06613489,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23001,NJBF000056145,205 N SUMNER AVE,Margate City,NJ,39.32781183,-74.51163941,RES1,3001,,17,NE,1950,1950,3101,1,1,1139.155352,1139.155352,3505,NO,23.16,28.5,3,7.13,6106,113.25349,123.104464,132.798434,139.357656,I,Above,Gable,0,5701,,25.82910392,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23002,NJBF000056444,8808 AMHERST AVE,Margate City,NJ,39.328482,-74.51221954,RES1,3001,,17,NE,1959,1959,3102,2,1,1656.093643,1656.093643,3505,NO,44.06,57.67,3,8.46,6106,113.230939,123.086574,132.780381,139.336939,I,Above,Flat,0,5701,,50.86360043,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 23003,NJBF000055713,205 N VENDOME AVE,Margate City,NJ,39.32679847,-74.51344627,RES1,3001,,17,NE,1988,1988,3102,2,1,1259.02959,1259.02959,3505,NO,37.46,49.63,3,2.59,6106,113.228792,123.084212,132.776689,139.334061,I,Above,Hip,0,5701,,43.5444393,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 23004,NJBF000058941,113 N EXETER AVE,Margate City,NJ,39.33321473,-74.50018867,RES1,3001,,17,NE,1956,1956,3102,2,1,2009.308113,2009.308113,3505,NO,38.4,50.32,3,4.56,6106,113.427751,123.245602,132.949429,139.518192,I,Above,Flat,0,5701,,44.35816927,0,0,,,,1,1,,0.03,nav,1,1956,2,, 23005,NJBF000056182,207 N SUMNER AVE,Margate City,NJ,39.32790543,-74.51172939,RES1,3001,,17,NE,1950,1950,3101,1,1,1276.586507,1276.586507,3505,NO,16.26,30.91,3,-0.78,6106,113.250154,123.101816,132.795758,139.354594,I,Above,Hip,0,5701,,23.58206419,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23006,NJBF000055760,214 N VENDOME AVE,Margate City,NJ,39.3269065,-74.514062,RES1,3001,,17,NE,1920,1920,3102,2,1,710.3389365,710.3389365,3505,NO,30.81,37.11,3,-1.78,6106,113.213709,123.072127,132.764262,139.320079,I,Above,Gable,0,5701,,33.95933615,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23007,NJBF000059091,116 N ESSEX AVE,Margate City,NJ,39.33352765,-74.50004538,RES1,3001,,17,NE,1915,1915,3102,3,1,1293.262197,1293.262197,3505,NO,47.6,61.02,3,4.48,6106,113.426516,123.244631,132.948636,139.516694,I,Above,Gable,0,5701,,54.30666898,0,0,,,,1,1,,0.03,nav,1,1915,3,, 23008,NJBF000059077,110 N DOUGLAS AVE,Margate City,NJ,39.33350299,-74.49929507,RES1,3001,,19,NE,1999,1999,3103,3,1,1113.613172,1113.613172,3505,NO,40.72,49.53,3,0.77,6106,113.443412,123.258206,132.962837,139.532296,I,Above,Flat,0,5701,,45.12433639,0,0,,,,1,1,,0.03,nav,1,1999,3,, 23009,NJBF000055834,215 N WILSON AVE,Margate City,NJ,39.32709022,-74.51462418,RES1,3001,,45,NE,1950,1950,3102,2,2,1052.102289,1052.102289,3505,NO,31.52,42.13,3,3.33,6106,113.198688,123.060123,132.751981,139.306196,I,Above,Hip,0,5701,,36.8236205,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23010,NJBF000057744,429 N QUINCY AVE,Margate City,NJ,39.33108724,-74.51280036,RES1,3001,,17,NE,1948,1948,3101,1,1,3108.762631,3108.762631,3505,NO,21.01,30.82,3,8.08,6106,113.180296,123.04668,132.740809,139.290053,I,Above,Gable,0,5701,,25.91628259,0,1.2,,,,1,1,,0.03,nav,1,1948,1,, 23011,NJBF000058990,103 N DOUGLAS AVE,Margate City,NJ,39.33331287,-74.49865559,RES1,3001,,17,NE,1940,1940,3103,2,1,952.2456513,952.2456513,3505,NO,25.65,36.05,3,2.54,6106,113.460179,123.271673,132.976809,139.54798,I,Above,Flat,0,5701,,30.84825622,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23012,NJBF000055437,105 S KNIGHT AVE,Margate City,NJ,39.32609791,-74.5021922,RES1,3001,,17,NE,1930,1930,3102,2,1,1121.507425,1121.507425,3505,NO,31.33,36.76,3,1.57,6106,113.485696,123.290734,132.990895,139.572226,I,Above,Flat,0,5701,,34.04799098,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 23013,NJBF000057950,440 N PEMBROKE AVE,Margate City,NJ,39.33142787,-74.51280729,RES1,3001,,17,NE,1953,1953,3102,1,1,1136.667968,1136.667968,3505,NO,13.57,20.6,3,-2.21,6106,113.17521,123.042681,132.736882,139.285255,I,Above,Hip,0,5701,,17.08568111,0,0,,,,1,1,,0.03,nav,1,1953,1,, 23014,NJBF000055875,210 N UNION AVE,Margate City,NJ,39.32718475,-74.51341319,RES1,3001,,17,NE,1945,1945,3101,1,1,1530.026556,1530.026556,3505,NO,19.06,32.13,3,8.36,6106,113.223812,123.080365,132.772998,139.329672,I,Above,Gable,0,5701,,25.59622046,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 23015,NJBF000057186,8609 AMHERST AVE,Margate City,NJ,39.33010221,-74.51010523,RES1,3001,,18,NE,1981,1981,3102,3,1,1647.763045,1647.763045,3505,NO,51.68,59.72,3,-2.23,6106,113.253825,123.105437,132.801094,139.358525,I,Above,Gable,0,5701,,55.69878318,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 23016,NJBF000057427,15 N GRANVILLE AVE,Margate City,NJ,39.33055249,-74.50078176,RES1,3001,,21,NE,1922,2018,3102,2,1,1547.877971,1547.877971,3505,NO,41.9,50.13,3,8.51,6106,113.45247,123.265144,132.967876,139.542898,I,Above,Flat,0,5701,,46.01739132,0,0,,,,1,1,,0.03,nav,1,1922,2,, 23017,NJBF000055565,203 N WILSON AVE,Margate City,NJ,39.32642087,-74.5139845,RES1,3001,,45,NE,1950,1950,3102,2,2,981.751778,981.751778,3505,NO,27.82,36.08,3,0.25,6106,113.222558,123.079036,132.771045,139.327981,I,Above,Flat,0,5701,,31.94959349,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23018,NJBF000056492,8804 AMHERST AVE,Margate City,NJ,39.32859494,-74.51200712,RES1,3001,,19,NE,1955,1955,3101,1,1,1515.622211,1515.622211,3505,NO,20.8,25.81,3,4.52,6106,113.233962,123.089041,132.783019,139.339792,I,Above,Hip,0,5701,,23.30721991,0,0,,,,1,1,,0.03,nav,1,1955,1,, 23019,NJBF000056157,13 S IROQUOIS AVE,Margate City,NJ,39.3278491,-74.5014046,RES1,3001,,19,NE,1954,1954,3102,2,1,1584.453069,1584.453069,3505,NO,38.84,46.07,3,0.51,6106,113.477582,123.28474,132.986157,139.565916,I,Above,Flat,0,5701,,42.45569426,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 23020,NJBF000056101,209 N THURLOW AVE,Margate City,NJ,39.32773818,-74.5124594,RES1,3001,,17,NE,1950,1950,3101,1,1,1142.646113,1142.646113,3505,NO,13.67,22.74,3,2.3,6106,113.236593,123.090855,132.784273,139.341886,I,Above,Gable,0,5701,,18.20376221,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23021,NJBF000057307,348 N RUMSON AVE,Margate City,NJ,39.33034079,-74.51363843,RES1,3001,,19,NE,1999,1999,3102,2,1,1606.442702,1606.442702,3505,NO,33.47,46,3,6.68,6106,113.172693,123.040385,132.73381,139.283034,I,Above,Hip,0,5701,,39.73445123,0,0,,,,1,1,,0.03,nav,1,1999,2,, 23022,NJBF000059179,105 N DELAVAN AVE,Margate City,NJ,39.3337088,-74.49828582,RES1,3001,,17,NE,1920,1920,3103,2,1,690.6962436,690.6962436,3505,NO,25.94,33.32,3,1.85,6106,113.462773,123.27378,132.979309,139.549854,I,Above,Hip,0,5701,,29.62905557,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23023,NJBF000057629,23 N GRANVILLE AVE,Margate City,NJ,39.33090352,-74.50113234,RES1,3001,,17,NE,1945,1945,3102,2,1,1174.532909,1174.532909,3505,NO,37.78,49.42,3,3.02,6106,113.439744,123.254969,132.957507,139.530985,I,Above,Gable,0,5701,,43.59884257,0,1.2,,,,1,1,,0.03,nav,1,1945,2,, 23024,NJBF000057579,21 N GRANVILLE AVE,Margate City,NJ,39.33081748,-74.50102959,RES1,3001,,17,NE,1920,1920,3102,2,1,1588.04627,1588.04627,3505,NO,32.2,47.1,3,0.17,6106,113.44323,123.257758,132.960357,139.534248,I,Above,Hip,0,5701,,39.65016678,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23025,NJBF000057672,26 N GLADSTONE AVE,Margate City,NJ,39.33096995,-74.5007199,RES1,3001,,17,NE,1930,1930,3102,2,1,972.1083637,972.1083637,3505,NO,43.18,48.42,3,5.39,6106,113.447874,123.261517,132.964408,139.538493,I,Above,Hip,0,5701,,45.80263236,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 23026,NJBF000056253,102 S GLADSTONE AVE,Margate City,NJ,39.32806293,-74.49841538,RES1,3001,,17,NE,1950,1950,3102,3,1,1725.699459,1725.699459,3505,NO,57.06,69.7,3,1.2,6106,113.540172,123.335209,133.03916,139.624059,I,Above,Flat,0,5701,,63.38132047,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 23027,NJBF000056127,8906 AMHERST AVE,Margate City,NJ,39.32777594,-74.51344121,RES1,3001,,17,NE,1971,1971,3101,1,1,1998.807487,1998.807487,3505,NO,14.85,25.46,3,-1.23,6106,113.214507,123.073115,132.765927,139.32133,I,Above,Hip,0,5701,,20.15408329,0,0,,,,1,1,,0.03,nav,1,1971,1,, 23028,NJBF000057328,422 N QUINCY AVE,Margate City,NJ,39.33037657,-74.51275293,RES1,3001,,19,NE,1954,1954,3102,2,1,1644.099003,1644.099003,3505,NO,39.89,46.43,3,3.53,6106,113.191622,123.055584,132.749574,139.300655,I,Above,Gable,0,5701,,43.16276269,0,0,,,,1,1,,0.03,nav,1,1954,2,, 23029,NJBF000054168,25 S CEDAR GROVE AVE,Margate City,NJ,39.32260542,-74.51058344,RES1,3001,,21,NE,2006,2006,3103,3,1,2563.395314,2563.395314,3505,NO,56.81,63.71,3,0.71,6106,113.353562,123.182723,132.875298,139.445662,I,Above,Gable,0,5701,,60.25907628,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 23030,NJBF000054314,9108 VENTNOR AVE,Margate City,NJ,39.32304983,-74.51237405,RES1,3001,,19,NE,1965,1965,3102,2,1,2631.686011,2631.686011,3505,NO,38.19,49.06,3,5.73,6106,113.307841,123.146088,132.837707,139.403833,I,Above,Hip,0,5701,,43.62239749,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 23031,NJBF000055102,,Margate City,NJ,39.3251289,-74.5068196,RES1,3001,,NaN,NE,1969,0,3102,2,1,1676.305622,1676.305622,3505,NO,42.17,54.23,3,5.38,6106,113.398456,123.220091,132.916382,139.490418,I,Above,Gable,0,5701,,48.20339536,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23032,NJBF000056041,223 N UNION AVE,Margate City,NJ,39.32758845,-74.51329702,RES1,3001,,17,NE,1930,1930,3102,2,1,869.8090985,869.8090985,3505,NO,41.1,54.82,3,7.23,6106,113.220425,123.077801,132.770642,139.326747,I,Above,Gable,0,5701,,47.96236865,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23033,NJBF000053975,31 S BENSON AVE,Margate City,NJ,39.32197961,-74.51140211,RES1,3001,,20,NE,1952,1930,3102,2,1,1554.909845,1554.909845,3505,NO,46.76,55.27,3,8.62,6106,113.345032,123.175502,132.867235,139.436833,I,Above,Hip,0,5701,,51.01501014,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23034,NJBF000057393,406 N PEMBROKE AVE,Margate City,NJ,39.33049744,-74.51200233,RES1,3001,,17,NE,1956,1956,3101,1,1,2980.008346,2980.008346,3505,NO,14.18,25.98,3,-1.48,6106,113.206393,123.067467,132.761969,139.314394,I,Above,Gable,0,5701,,20.078384,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 23035,NJBF000058029,2 N DELAVAN AVE,Margate City,NJ,39.33157633,-74.49684586,RES1,3001,,17,NE,1952,1952,3102,2,1,1291.808864,1291.808864,3505,NO,34.22,46.28,3,6.9,6106,113.524578,123.323317,133.029636,139.609149,I,Above,Hip,0,5701,,40.25015939,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23036,NJBF000057725,432 N QUINCY AVE,Margate City,NJ,39.33105131,-74.51340062,RES1,3001,,21,NE,2014,2014,3102,3,1,1681.173352,1681.173352,3505,NO,56.48,71.19,3,-2.02,6106,113.167598,123.036486,132.730229,139.278244,I,Above,Gable,0,5701,,63.83740791,0,0,,,,1,1,,0.03,nav,1,2014,3,, 23037,NJBF000053748,9500 VENTNOR AVE,Margate City,NJ,39.32112845,-74.51563764,RES1,3001,,NaN,NE,1969,0,3102,2,1,1727.350446,1727.350446,3507,NO,35.99,50.23,1,-0.58,6106,113.265593,123.11087,132.79954,139.361736,I,Above,Gable,0,5701,,43.11131528,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23038,NJBF000057856,6 S CLARENDON AVE,Margate City,NJ,39.33127566,-74.49517017,RES1,3001,,21,NE,2016,2016,3102,3,1,1554.034348,1554.034348,3505,NO,52.74,66.99,3,7.31,6106,113.565726,123.356414,133.064144,139.647408,I,Above,Hip,0,5701,,59.86981365,0,0,,,,1,1,,0.03,nav,1,2016,3,, 23039,NJBF000062326,5 EXETER CT,Margate City,NJ,39.339229,-74.5063445,RES1,3001,,18,NE,1970,1970,3102,2,1,1325.976596,1325.976596,3505,NO,33.15,47.84,3,0.21,6106,113.207732,123.068994,132.768539,139.305992,I,Above,Hip,0,5701,,40.49425386,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 23040,NJBF000053578,22 S JEFFERSON AVE,Margate City,NJ,39.32046668,-74.51511911,RES1,3001,,21,NE,2004,2004,3102,2,1,2659.436955,2659.436955,3507,NO,24.68,30.02,1,1.19,6106,113.286868,123.127627,132.816254,139.380422,I,Above,Gable,0,5701,,27.34952693,0,0,,,,1,1,,0.03,nav,1,2004,2,, 23041,NJBF000057895,218 N JEROME AVE,Margate City,NJ,39.3313413,-74.50718218,RES1,3001,,17,NE,1950,1950,3102,2,1,1597.249073,1597.249073,3505,NO,31.36,41.79,3,2.54,6106,113.300285,123.143006,132.841008,139.401481,I,Above,Hip,0,5701,,36.57981127,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23042,NJBF000057074,102 S CLERMONT AVE,Margate City,NJ,39.3298645,-74.4947275,RES1,3001,,21,NE,1925,1925,3102,2,1,1482.212646,1482.212646,3505,NO,43.38,50.96,3,5.01,6106,113.595492,123.380181,133.087918,139.67561,I,Above,Flat,0,5701,,47.16864193,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23043,NJBF000056877,102 N JEROME AVE,Margate City,NJ,39.32944909,-74.50539726,RES1,3001,,17,NE,1945,1945,3101,1,1,1299.940849,1299.940849,3505,NO,16.4,23.57,3,2.47,6106,113.366773,123.196009,132.894835,139.463473,I,Above,Hip,0,5701,,19.98658474,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 23044,NJBF000057416,411 N QUINCY AVE,Margate City,NJ,39.33053221,-74.51231189,RES1,3001,,20,NE,1955,2013,3102,2,1,1776.564791,1776.564791,3505,NO,22.4,28.93,3,-0.37,6106,113.199069,123.0616,132.75591,139.307578,I,Above,Gable,0,5701,,25.6671565,0,0,,,,1,1,,0.03,nav,1,1955,2,, 23045,NJBF000057137,8701 AMHERST AVE,Margate City,NJ,39.33000003,-74.51024041,RES1,3001,,19,NE,1981,1981,3102,3,1,1820.831846,1820.831846,3505,NO,55.5,69.65,3,8.67,6106,113.252334,123.104214,132.799753,139.357138,I,Above,Gable,0,5701,,62.57736965,0,0,,,,1,1,,0.03,nav,1,1981,3,, 23046,NJBF000057333,212 N LANCASTER AVE,Margate City,NJ,39.33038354,-74.50807303,RES1,3001,,20,NE,2016,2016,3102,3,1,1450.890111,1450.890111,3505,NO,38.02,44.55,3,-1.16,6106,113.294439,123.138115,132.835249,139.396262,I,Above,Hip,0,5701,,41.28578167,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 23047,NJBF000061998,7806 MARSHALL AVE,Margate City,NJ,39.33861898,-74.50519801,RES1,3001,,18,NE,1969,1969,3102,2,1,1712.304136,1712.304136,3505,NO,31.47,38.39,3,1.3,6106,113.241551,123.096134,132.796545,139.338222,I,Above,Gable,0,5701,,34.93037475,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 23048,NJBF000062050,7804 MARSHALL AVE,Margate City,NJ,39.33871246,-74.50502186,RES1,3001,,18,NE,1968,1968,3102,2,1,1606.41569,1606.41569,3505,NO,30.17,41.15,3,-1.07,6106,113.244164,123.098212,132.798761,139.340407,I,Above,Hip,0,5701,,35.65896081,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 23049,NJBF000057399,427 N RUMSON AVE,Margate City,NJ,39.3305054,-74.5132972,RES1,3001,,17,NE,1966,1966,3102,2,1,2216.097462,2216.097462,3505,NO,25.22,35.9,3,3.08,6106,113.177805,123.044532,132.73821,139.287791,I,Above,Gable,0,5701,,30.56060373,0,0.2,,,,1,1,,0.03,nav,1,1966,2,, 23050,NJBF000055621,211 N HARDING AVE,Margate City,NJ,39.3265925,-74.514906,RES1,3001,,18,NE,1950,1950,3102,2,1,865.4865874,865.4865874,3505,NO,38.87,50.42,3,8.06,6106,113.199872,123.060862,132.752374,139.306961,I,Above,Flat,0,5701,,44.64612089,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23051,NJBF000057992,400 N MANSFIELD AVE,Margate City,NJ,39.3315194,-74.51012936,RES1,3001,,17,NE,1950,1950,3102,2,1,1683.93921,1683.93921,3505,NO,33.9,46.06,3,2.73,6106,113.232842,123.088922,132.784901,139.338798,I,Above,Gable,0,5701,,39.97859193,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23052,NJBF000058055,402 N MANSFIELD AVE,Margate City,NJ,39.33163827,-74.51024554,RES1,3001,,17,NE,1950,1950,3101,1,1,1627.127937,1627.127937,3505,NO,17.67,27.22,3,1.5,6106,113.228554,123.085506,132.781431,139.334776,I,Above,Hip,0,5701,,22.44588061,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23053,NJBF000057557,7817 VENTNOR AVE,Margate City,NJ,39.33077975,-74.49799491,COM1,3001,,NaN,ME,1962,1928,3401,2,1,2126.211171,2126.211171,3507,NO,26.74,38.93,1,1.31,6106,113.510567,123.311927,133.01705,139.596653,I,Above,Hip,0,NaN,,32.83166522,0,0,,,,1,1,,0.03,nav,1,1962,2,, 23054,NJBF000055595,212 N HARDING AVE,Margate City,NJ,39.32651897,-74.51531017,RES1,3001,,47,NE,1950,1950,3102,2,2,937.707963,937.707963,3505,NO,31.26,44.55,3,5.82,6106,113.192112,123.054586,132.745832,139.299671,I,Above,Flat,0,5701,,37.90678568,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23055,NJBF000056438,8504 WINCHESTER AVE,Margate City,NJ,39.32846904,-74.50626636,RES1,3001,,17,NE,1951,1951,3101,1,1,1363.09944,1363.09944,3505,NO,21.74,36.35,3,5.67,6106,113.361848,123.19179,132.889681,139.458701,I,Above,Gable,0,5701,,29.04823983,0,0,,,,1,1,,0.03,nav,1,1951,1,, 23056,NJBF000053648,,Margate City,NJ,39.32075263,-74.51530124,RES1,3001,,NaN,NE,1969,0,3102,2,1,1756.416519,1756.416519,3507,NO,37.23,46.78,1,0.48,6106,113.278587,123.121124,132.809796,139.373207,I,Above,Gable,0,5701,,42.00388552,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23057,NJBF000054241,21 S CEDAR GROVE AVE,Margate City,NJ,39.32282462,-74.51077593,RES1,3001,,22,NE,2012,2012,3103,3,1,3328.25334,3328.25334,3505,NO,57.02,66.58,3,6.65,6106,113.34607,123.176796,132.869348,139.439022,I,Above,Gable,0,5701,,61.80029725,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 23058,NJBF000059528,115 N CLERMONT AVE,Margate City,NJ,39.33441498,-74.49822073,RES1,3001,,17,NE,1920,1920,3103,2,1,1146.873175,1146.873175,3505,NO,38.93,44.98,3,7.38,6110,113.45431,123.267,132.972708,139.541025,I,Above,Gable,0,5701,,41.95583019,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 23059,NJBF000059152,7802 MONMOUTH AVE,Margate City,NJ,39.33366272,-74.49974833,RES1,3001,,17,NE,1950,1950,3103,2,1,1389.578556,1389.578556,3505,NO,33.07,38.99,3,4.68,6106,113.431168,123.248376,132.952655,139.520815,I,Above,Flat,0,5701,,36.02946395,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23060,NJBF000058960,414 N JEROME AVE,Margate City,NJ,39.33326395,-74.50906831,RES1,3001,,17,NE,1969,1969,3102,2,1,1676.38158,1676.38158,3505,NO,37.98,52.24,3,-0.94,6106,113.231223,123.087902,132.78495,139.336391,I,Above,Flat,0,5701,,45.10569961,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23061,NJBF000056400,214 N RUMSON AVE,Margate City,NJ,39.32838638,-74.51175554,RES1,3001,,17,NE,1925,1925,3101,1,1,964.3195341,964.3195341,3505,NO,20.01,32.41,3,2.04,6106,113.242524,123.095851,132.789927,139.347691,I,Above,Gable,0,5701,,26.21222714,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 23062,NJBF000059190,120 N ESSEX AVE,Margate City,NJ,39.33373737,-74.50028478,RES1,3001,,17,NE,1955,1955,3101,1,1,1223.115809,1223.115809,3505,NO,17.84,28.95,3,2.35,6106,113.418279,123.238025,132.941869,139.508846,I,Above,Gable,0,5701,,23.39200814,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 23063,NJBF000059135,118 N ESSEX AVE,Margate City,NJ,39.33361849,-74.50012917,RES1,3001,,17,NE,1915,1915,3102,3,1,1325.096612,1325.096612,3505,NO,44.72,52.72,3,5.88,6106,113.423396,123.242129,132.946081,139.513709,I,Above,Gable,0,5701,,48.72060229,0,1.1,,,,1,1,,0.03,nav,1,1915,3,, 23064,NJBF000056453,12 S HAVERFORD AVE,Margate City,NJ,39.3284988,-74.50019128,RES1,3001,,21,NE,1986,1986,3102,2,1,1290.56918,1290.56918,3505,NO,32.78,40.41,3,4.79,6106,113.494884,123.298841,133.001456,139.582221,I,Above,Flat,0,5701,,36.59592101,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 23065,NJBF000055137,9 N UNION AVE,Margate City,NJ,39.3252475,-74.5110135,RES1,3001,,17,NE,1938,1938,3102,2,1,1592.351254,1592.351254,3505,NO,29.17,35.31,3,0.86,6106,113.304908,123.144801,132.83825,139.403644,I,Above,Gable,0,5701,,32.23932403,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 23066,NJBF000056743,30 N JEROME AVE,Margate City,NJ,39.32915626,-74.50508605,RES1,3001,,17,NE,1950,1950,3102,2,1,1259.351633,1259.351633,3505,NO,29.8,37.8,3,2.03,6106,113.377837,123.204831,132.903805,139.473716,I,Above,Gable,0,5701,,33.80077017,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23067,NJBF000053720,18 S ADAMS AVE,Margate City,NJ,39.3210205,-74.514362,RES1,3001,,16,NE,1983,1983,3102,1,1,710.396855,710.396855,3507,NO,16.64,25.94,1,-0.06,6106,113.294965,123.134521,132.8239,139.388863,I,Above,Flat,0,5701,,21.28851839,0,0,,,,1,1,,0.03,nav,1,1983,1,, 23068,NJBF000056094,204 N SUMNER AVE,Margate City,NJ,39.32770863,-74.51208095,RES1,3001,,17,NE,1950,1950,3101,1,1,1062.913975,1062.913975,3505,NO,14.38,21.58,3,1.77,6106,113.245307,123.097848,132.791499,139.349986,I,Above,Hip,0,5701,,17.98237602,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23069,NJBF000056402,201 N QUINCY AVE,Margate City,NJ,39.32838878,-74.51026106,RES1,3001,,18,NE,1950,1950,3102,2,1,2270.820663,2270.820663,3505,NO,37.92,51.5,3,0.12,6106,113.27529,123.122184,132.817247,139.37819,I,Above,Hip,0,5701,,44.70971993,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23070,NJBF000058112,439 N PEMBROKE AVE,Margate City,NJ,39.33173052,-74.51257761,RES1,3001,,21,NE,2001,2001,3102,3,1,2050.152954,2050.152954,3505,NO,62.47,71.85,3,7.07,6106,113.175874,123.043281,132.737692,139.285793,I,Above,Hip,0,5701,,67.16385866,0,0,,,,1,1,,0.03,nav,1,2001,3,, 23071,NJBF000058800,407 N KENYON AVE,Margate City,NJ,39.33296067,-74.50905563,RES1,3001,,17,NE,1967,1967,3102,2,1,1664.440794,1664.440794,3505,NO,39.64,49.69,3,2.29,6106,113.235811,123.091542,132.788545,139.340855,I,Above,Flat,0,5701,,44.6645792,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 23072,NJBF000058121,7602 VENTNOR AVE,Margate City,NJ,39.33174843,-74.49507839,RES1,3001,,18,NE,1954,1954,3102,2,1,1468.220572,1468.220572,3505,NO,28.33,35.63,3,3.98,6106,113.561085,123.352733,133.060664,139.642731,I,Above,Gable,0,5701,,31.97952751,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 23073,NJBF000058077,3 S CLARENDON AVE,Margate City,NJ,39.33166275,-74.49500276,RES1,3001,,20,NE,1982,1982,3102,2,1,1441.235289,1441.235289,3505,NO,41.8,48.43,3,4.04,6106,113.563936,123.35502,133.062998,139.645441,I,Above,Gable,0,5701,,45.11209022,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 23074,NJBF000059846,121 N CLARENDON AVE,Margate City,NJ,39.33495837,-74.498014,RES1,3001,,19,NE,1989,1989,3102,2,1,1178.236735,1178.236735,3505,NO,40.3,50.23,3,5.69,6106,113.45129,123.264577,132.97055,139.537336,I,Above,Gable,0,5701,,45.26566313,0,0,,,,1,1,,0.03,nav,1,1989,2,, 23075,NJBF000057795,201 N JASPER AVE,Margate City,NJ,39.33118069,-74.50542924,RES1,3001,,17,NE,1952,1952,3102,2,1,1051.688728,1051.688728,3505,NO,28.13,36.92,3,2.27,6106,113.341177,123.175809,132.875063,139.439483,I,Above,Gable,0,5701,,32.52456006,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23076,NJBF000054344,9409 WINCHESTER AVE,Margate City,NJ,39.32311364,-74.51635934,RES3B,3001,,21,ME,2005,2005,3301,2,1,2340.938895,2340.938895,3505,NO,29.4,37.87,3,3.06,6106,113.219986,123.075278,132.764505,139.322156,I,Above,Gable,0,5701,,33.63471928,0,0,,,,1,1,,0.03,nav,1,2005,2,, 23077,NJBF000056610,4 S HAVERFORD AVE,Margate City,NJ,39.32887035,-74.500517,RES1,3001,,21,NE,2007,2007,3102,3,1,1412.138232,1412.138232,3505,NO,52.48,64.48,3,2.21,6106,113.482386,123.288869,132.991335,139.570719,I,Above,Gable,0,5701,,58.47936519,0,0,,,,1,1,,0.03,nav,1,2007,3,, 23078,NJBF000055915,217 N VENDOME AVE,Margate City,NJ,39.32727174,-74.51390216,RES1,3001,,17,NE,1925,1925,3101,1,1,1278.035676,1278.035676,3505,NO,16.68,28.55,3,1.19,6106,113.211818,123.070756,132.763116,139.318548,I,Above,Hip,0,5701,,22.61510048,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 23079,NJBF000059133,4 N FREDERICKSBURG AVE,Margate City,NJ,39.33361631,-74.49336323,RES1,3001,,18,NE,1929,1929,3102,2,1,1279.101662,1279.101662,3505,NO,38.52,53.09,3,4.8,6106,113.572644,123.362188,133.072106,139.650813,I,Above,Hip,0,5701,,45.8052957,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 23080,NJBF000058728,405 N KENYON AVE,Margate City,NJ,39.33282439,-74.50891217,RES1,3001,,17,NE,1967,1967,3102,2,1,1919.551104,1919.551104,3505,NO,42.45,51.84,3,6.89,6106,113.240942,123.095637,132.792715,139.345701,I,Above,Gable,0,5701,,47.14511642,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 23081,NJBF000057854,17 S BRUNSWICK AVE,Margate City,NJ,39.33127372,-74.49394545,RES1,3001,,20,NE,1933,1933,3102,3,1,1652.525369,1652.525369,3505,NO,49.3,60.05,3,-0.74,6106,113.592722,123.378166,133.087005,139.672355,I,Above,Hip,0,5701,,54.67770382,0,1.1,,,,1,1,,0.03,nav,1,1933,3,, 23082,NJBF000054478,2A N HARDING AVE,Margate City,NJ,39.323493,-74.5124125,RES1,3001,,20,NE,2006,2006,3102,3,1,1441.853609,1441.853609,3505,NO,35.92,45.43,3,2.03,6106,113.300404,123.140325,132.832123,139.397495,I,Above,Hip,0,5701,,40.67456746,0,0,,,,1,1,,0.03,nav,1,2006,3,, 23083,NJBF000057010,8707 AMHERST AVE,Margate City,NJ,39.32972883,-74.51065346,RES1,3001,,18,NE,1988,1987,3102,3,1,1427.362606,1427.362606,3505,NO,59.1,65.24,3,8.47,6106,113.247186,123.100007,132.795197,139.352335,I,Above,Hip,0,5701,,62.17241559,0,1.1,,,,1,1,,0.03,nav,1,1988,3,, 23084,NJBF000056589,8802 AMHERST AVE,Margate City,NJ,39.32880541,-74.5116371,RES1,3001,,19,NE,1940,1940,3102,2,1,1980.027129,1980.027129,3505,NO,37.52,51.86,3,-1.27,6106,113.239017,123.093171,132.787451,139.344563,I,Above,Hip,0,5701,,44.69173193,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23085,NJBF000057560,10 N FRANKLIN AVE,Margate City,NJ,39.3307835,-74.49910917,RES1,3001,,18,NE,1987,1987,3102,3,1,1058.127513,1058.127513,3505,NO,45.08,54.61,3,3.49,6106,113.485988,123.292147,132.996326,139.573884,I,Above,Flat,0,5701,,49.84698081,0,0,,,,1,1,,0.03,nav,1,1987,3,, 23086,NJBF000060992,52 BAYSIDE COURT,Margate City,NJ,39.33686575,-74.5106134,RES1,3001,,19,NE,1991,1991,3102,2,1,1481.555338,1481.555338,3505,NO,31.64,46.04,3,6.46,6106,113.146113,123.019946,132.716344,139.253753,I,Above,Flat,0,5701,,38.83649566,0,1.1,,,,1,1,,0.03,nav,1,1991,2,, 23087,NJBF000058093,210 N IROQUOIS AVE,Margate City,NJ,39.3317055,-74.505646,RES1,3001,,17,NE,1952,1952,3102,2,1,1064.548648,1064.548648,3505,NO,36.77,45.88,3,6.33,6106,113.328901,123.16604,132.865252,139.427884,I,Above,Gable,0,5701,,41.32476689,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23088,NJBF000055900,8230 ATLANTIC AVE,Margate City,NJ,39.32723775,-74.50032652,RES1,3001,,18,NE,1994,1994,3102,2,1,1985.025119,1985.025119,3505,NO,42.76,49.13,3,7.57,6106,113.510079,123.310739,133.012817,139.59571,I,Above,Hip,0,5701,,45.94242109,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 23089,NJBF000054412,9 S CEDAR GROVE AVE,Margate City,NJ,39.32333066,-74.51129917,RES1,3001,,21,NE,2007,2007,3103,3,1,2414.656871,2414.656871,3505,NO,62.42,68.78,3,6.6,6106,113.327116,123.161776,132.854218,139.422108,I,Above,Flat,0,5701,,65.59843116,0,0,,,,1,1,,0.03,nav,1,2007,3,, 23090,NJBF000058078,4 N DELAVAN AVE,Margate City,NJ,39.33166371,-74.49691128,RES1,3001,,17,NE,1950,1950,3102,1,1,1048.182163,1048.182163,3505,NO,19.4,34.31,3,4.82,6106,113.521902,123.321173,133.027457,139.606608,I,Above,Hip,0,5701,,26.85741543,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23091,NJBF000061235,40 BAYSIDE COURT,Margate City,NJ,39.33728365,-74.51100754,RES1,3001,,20,NE,2007,2007,3102,3,1,1371.073252,1371.073252,3505,NO,44.86,58.27,3,-0.15,6106,113.131507,123.008256,132.704409,139.239667,I,Above,Hip,0,5701,,51.56613487,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 23092,NJBF000057039,315 N QUINCY AVE,Margate City,NJ,39.32978576,-74.5116265,RES1,3001,,17,NE,1951,1951,3102,2,1,1698.91837,1698.91837,3505,NO,33.94,41.72,3,6.99,6106,113.224954,123.082173,132.776736,139.331655,I,Above,Gable,0,5701,,37.83123881,0,1.2,,,,1,1,,0.03,nav,1,1951,2,, 23093,NJBF000058986,109 N ESSEX AVE,Margate City,NJ,39.33330806,-74.49939736,RES1,3001,,19,NE,2011,2011,3103,3,1,1207.253705,1207.253705,3505,NO,55.67,65.52,3,-0.8,6106,113.443907,123.258592,132.9631,139.532988,I,Above,Flat,0,5701,,60.59513504,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 23094,NJBF000057713,103 S ARGYLE AVE,Margate City,NJ,39.331042,-74.49230972,RES1,3001,,19,NE,1925,1925,3102,2,1,2013.095003,2013.095003,3505,NO,22.93,37.62,3,1.78,6106,113.631983,123.409787,133.120079,139.708802,I,Above,Flat,0,5701,,30.27356123,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 23095,NJBF000055531,9100 AMHERST AVE,Margate City,NJ,39.32635584,-74.51549894,RES3C,3004,,NaN,ME,1966,1966,3301,1,1,14385.45427,14385.45427,3507,NO,10.94,16.31,1,0.34,6106,113.190391,123.053128,132.744203,139.297943,I,Above,Flat,0,5701,,13.62644047,0,0,,,,1,1,,0.03,nav,1,1966,1,, 23096,NJBF000057151,2 N GLADSTONE AVE,Margate City,NJ,39.33003176,-74.50002771,RES1,3001,,21,NE,2014,2014,3102,3,1,1177.79724,1177.79724,3505,NO,65.48,71.93,3,7.6,6106,113.476489,123.284371,132.987581,139.565281,I,Above,Gable,0,5701,,68.70710277,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 23097,NJBF000057591,316 N NASSAU AVE,Margate City,NJ,39.3308364,-74.51040463,RES1,3001,,19,NE,1989,1989,3102,3,1,2326.779314,2326.779314,3505,NO,44.24,49.35,3,5.98,6106,113.236614,123.091801,132.787438,139.342463,I,Above,Gable,0,5701,,46.7969683,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 23098,NJBF000057015,201 N MANSFIELD AVE,Margate City,NJ,39.32973884,-74.50790146,RES1,3001,,21,NE,2016,2016,3102,3,1,1386.622102,1386.622102,3505,NO,41.87,47.99,3,5.03,6106,113.307533,123.148478,132.845563,139.40845,I,Above,Flat,0,5701,,44.92751882,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 23099,NJBF000059500,8215 FULTON AVE,Margate City,NJ,39.33435967,-74.50787098,RES1,3001,,17,NE,1940,1940,3101,1,1,1010.638378,1010.638378,3505,NO,9.58,21.23,3,-2.8,6106,113.242058,123.096687,132.794751,139.345461,I,Above,Hip,0,5701,,15.40614781,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 23100,NJBF000056299,205 N RUMSON AVE,Margate City,NJ,39.32816569,-74.51106152,RES1,3001,,17,NE,1952,1952,3101,1,1,1372.591108,1372.591108,3505,NO,19.84,25.56,3,6.55,6106,113.260968,123.110598,132.80506,139.364775,I,Above,Gable,0,5701,,22.70212585,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 23101,NJBF000055334,8907 WINCHESTER AVE,Margate City,NJ,39.32579991,-74.51150608,RES1,3001,,17,NE,1959,1959,3101,1,1,2532.059155,2532.059155,3505,NO,9.33,23.77,3,-1.51,6106,113.285988,123.129811,132.823155,139.38655,I,Above,Hip,0,5701,,16.54990266,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 23102,NJBF000056265,8010 ATLANTIC AVE,Margate City,NJ,39.32809858,-74.49870007,RES1,3001,,20,NE,2007,2007,3102,3,1,1361.932002,1361.932002,3505,NO,53.78,62.19,3,7.03,6106,113.533394,123.329757,133.03348,139.617791,I,Above,Hip,0,5701,,57.98467711,0,0,,,,1,1,,0.03,nav,1,2007,3,, 23103,NJBF000057926,205 N JASPER AVE,Margate City,NJ,39.33138719,-74.50565457,RES1,3001,,17,NE,1952,1952,3102,2,1,1271.52906,1271.52906,3505,NO,26.49,37.6,3,-1.7,6106,113.333251,123.16948,132.868613,139.432054,I,Above,Gable,0,5701,,32.04694233,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23104,NJBF000056355,13 S HUNTINGTON AVE,Margate City,NJ,39.32829651,-74.50035675,RES1,3001,,18,NE,1927,1927,3102,1,1,1266.48324,1266.48324,3505,NO,13.94,22.84,3,-1.06,6106,113.494143,123.298194,133.000608,139.581467,I,Above,Gable,0,5701,,18.39201339,0,1.1,,,,1,1,,0.03,nav,1,1927,1,, 23105,NJBF000057975,206 N IROQUOIS AVE,Margate City,NJ,39.3314855,-74.50543533,RES1,3001,,17,NE,1950,1950,3101,1,1,822.0685261,822.0685261,3505,NO,14.03,19.35,3,0.02,6106,113.336694,123.172261,132.871581,139.435208,I,Above,Gable,0,5701,,16.68829854,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23106,NJBF000058032,19 N EXETER AVE,Margate City,NJ,39.33158,-74.498596,RES1,3001,,18,NE,1922,1922,3102,2,1,1091.342666,1091.342666,3505,NO,35.79,46.68,3,-0.31,6106,113.485978,123.292254,132.997066,139.573449,I,Above,Gable,0,5701,,41.23334681,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 23107,NJBF000059662,8207 FULTON AVE,Margate City,NJ,39.33463417,-74.50742353,RES1,3001,,17,NE,1939,1939,3101,1,1,764.1868528,764.1868528,3505,NO,22.43,35.21,3,6.78,6106,113.24805,123.101503,132.799927,139.350706,I,Above,Hip,0,5701,,28.82307911,0,1.1,,,,1,1,,0.03,nav,1,1939,1,, 23108,NJBF000054330,224 N COOLIDGE AVE,Margate City,NJ,39.32309747,-74.52147669,RES1,3001,,30,NE,1997,1997,3102,2,2,1770.416032,1770.416032,3507,NO,23.69,32.97,1,1.78,6106,113.108843,122.985604,132.672066,139.218334,I,Above,Gable,0,5701,,28.33080804,0,0,,,,1,1,,0.03,nav,1,1997,2,, 23109,NJBF000061291,10 BAYSIDE COURT,Margate City,NJ,39.3373888,-74.51029632,RES1,3001,,20,NE,2004,2004,3102,3,1,2579.748686,2579.748686,3505,NO,40.69,54.39,3,3.5,6106,113.145791,123.019669,132.716313,139.252661,I,Above,Hip,0,5701,,47.54212265,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 23110,NJBF000058556,4 S ANDOVER AVE,Margate City,NJ,39.33251055,-74.49323239,RES1,3001,,19,NE,1930,1930,3102,2,1,1210.205257,1210.205257,3505,NO,42.57,48.85,3,8.3,6106,113.591007,123.376914,133.086715,139.669423,I,Above,Hip,0,5701,,45.70726301,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23111,NJBF000057681,200 N JASPER AVE,Margate City,NJ,39.33098274,-74.50579728,RES1,3001,,17,NE,1955,1955,3102,2,1,1606.529534,1606.529534,3505,NO,21.91,33.17,3,-1.14,6106,113.335912,123.171544,132.870477,139.43466,I,Above,Hip,0,5701,,27.54195263,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 23112,NJBF000056586,,Margate City,NJ,39.32880249,-74.50119181,RES1,3001,,NaN,NE,1969,0,3102,2,1,1297.480575,1297.480575,3505,NO,29.69,37.3,3,3.66,6106,113.468527,123.277698,132.979595,139.557846,I,Above,Flat,0,5701,,33.49704909,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23113,NJBF000054141,19 S BENSON AVE,Margate City,NJ,39.3225185,-74.51194583,RES1,3001,,17,NE,1954,1954,3102,2,1,1141.086119,1141.086119,3505,NO,32.77,43.29,3,-0.74,6106,113.32511,123.159727,132.85137,139.419139,I,Above,Hip,0,5701,,38.03419572,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 23114,NJBF000063069,7902 BAYSHORE DR,Margate City,NJ,39.34083008,-74.50772377,RES1,3001,,NaN,NE,1966,0,3102,2,1,1494.966551,1494.966551,3505,NO,36.05,46.87,3,-0.8,6106,113.155101,123.026631,132.725113,139.254235,I,Above,Flat,0,5701,,41.46355287,0,0,,,,1,1,,0.03,nav,1,1966,2,, 23115,NJBF000056844,101 S ESSEX AVE,Margate City,NJ,39.32938104,-74.49607583,RES1,3001,,21,NE,2009,2009,3102,3,1,1509.167962,1509.167962,3505,NO,47.07,54.26,3,-1.92,6106,113.572704,123.361722,133.068113,139.654533,I,Above,Hip,0,5701,,50.66182899,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 23116,NJBF000059823,58 SEASIDE COURT,Margate City,NJ,39.33490254,-74.50834812,RES1,3001,,19,NE,2000,2000,3101,3,1,1924.793611,1924.793611,3505,NO,45.67,53.48,3,3.17,6106,113.223841,123.082124,132.779919,139.328037,I,Above,Hip,0,5701,,49.57706058,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 23117,NJBF000058302,14 N DELAVAN AVE,Margate City,NJ,39.332063,-74.497246,RES1,3001,,17,NE,1955,1955,3102,2,1,1237.209838,1237.209838,3505,NO,37.42,50.78,3,3.94,6106,113.508883,123.31074,133.016827,139.594243,I,Above,Flat,0,5701,,44.10193917,0,0,,,,1,1,,0.03,nav,1,1955,2,, 23118,NJBF000058624,207 N HAVERFORD AVE,Margate City,NJ,39.33263091,-74.50361554,RES1,3001,,17,NE,1952,1952,3102,2,1,1047.242491,1047.242491,3505,NO,34.68,48.69,3,3.57,6106,113.360446,123.191491,132.892445,139.456536,I,Above,Flat,0,5701,,41.6842447,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23119,NJBF000061267,44 BAYSIDE COURT,Margate City,NJ,39.33734716,-74.51065155,RES1,3001,,19,NE,1999,1999,3102,2,1,2319.921181,2319.921181,3505,NO,37.79,47.05,3,8.15,6106,113.138501,123.013844,132.710242,139.246014,I,Above,Hip,0,5701,,42.42166313,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 23120,NJBF000059169,102 N CLERMONT AVE,Margate City,NJ,39.33369048,-74.49802641,RES1,3001,,21,NE,2016,2016,3103,3,1,1420.132937,1420.132937,3505,NO,41.07,53.68,3,-2.49,6106,113.468776,123.278605,132.984354,139.555403,I,Above,Hip,0,5701,,47.37226113,0,0,,,,1,1,,0.03,nav,1,2016,3,, 23121,NJBF000061950,9 HARBOUR LANE,Margate City,NJ,39.33853407,-74.50896654,RES1,3001,,18,NE,1983,1983,3102,2,1,1780.485291,1780.485291,3505,NO,31.96,39.38,3,0.71,6106,113.159242,123.030326,132.727937,139.263029,I,Above,Hip,0,5701,,35.66610896,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 23122,NJBF000061474,7509 FREMONT AVE,Margate City,NJ,39.33770461,-74.49946861,RES1,3001,,20,NE,1953,2018,3103,3,1,2422.149385,2422.149385,3505,NO,40.32,47.73,3,8.68,6106,113.380999,123.207979,132.913007,139.467404,I,Above,Gable,0,5701,,44.02673958,0,0,,,,1,1,,0.03,nav,1,1953,3,, 23123,NJBF000054319,9411 WINCHESTER AVE,Margate City,NJ,39.32306414,-74.51648474,RES3B,3001,,22,ME,2005,2005,3301,2,1,2116.901648,2116.901648,3505,NO,37.42,51.19,3,5.58,6106,113.217992,123.07364,132.762771,139.320232,I,Above,Hip,0,5701,,44.303478,0,0,,,,1,1,,0.03,nav,1,2005,2,, 23124,NJBF000057820,204 N JASPER AVE,Margate City,NJ,39.331229,-74.5060435,RES1,3001,,17,NE,1950,1950,3102,2,1,1622.704137,1622.704137,3505,NO,31.54,40.55,3,-1.41,6106,113.326948,123.164391,132.863199,139.426264,I,Above,Gable,0,5701,,36.04402553,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23125,NJBF000060031,6 SEASIDE COURT,Margate City,NJ,39.33527226,-74.50831094,RES1,3001,,19,NE,1992,1992,3101,2,1,1559.260964,1559.260964,3505,NO,28.97,39.96,3,2.81,6106,113.219447,123.078618,132.776483,139.323545,I,Above,Gable,0,5701,,34.46441691,0,0,,,,1,1,,0.03,nav,1,1992,2,, 23126,NJBF000058048,209 N JASPER AVE,Margate City,NJ,39.3316137,-74.50587634,RES1,3001,,17,NE,1952,1952,3102,2,1,950.8301275,950.8301275,3505,NO,39.97,46.93,3,8.75,6106,113.325136,123.163003,132.862023,139.424433,I,Above,Hip,0,5701,,43.45171368,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23127,NJBF000061919,4 BAYCREST DRIVE,Margate City,NJ,39.33847193,-74.50863697,RES1,3001,,18,NE,1979,1979,3102,2,1,1880.61874,1880.61874,3505,NO,32.84,45.33,3,-1.01,6106,113.167414,123.036864,132.73471,139.270643,I,Above,Gable,0,5701,,39.08433602,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 23128,NJBF000061969,6 BAYCREST DRIVE,Margate City,NJ,39.33856065,-74.50844785,RES1,3001,,18,NE,1988,1988,3102,2,1,1713.891698,1713.891698,3505,NO,44.64,54.37,3,6.57,6106,113.170364,123.039211,132.737195,139.273177,I,Above,Flat,0,5701,,49.50589466,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 23129,NJBF000057779,106 S FREDERICKSBURG AVE,Margate City,NJ,39.33115042,-74.49139412,RES1,3001,,20,NE,1926,1926,3102,2,1,1593.096083,1593.096083,3505,NO,32.16,42,3,8.85,6106,113.650617,123.424832,133.136018,139.725905,I,Above,Flat,0,5701,,37.07867863,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 23130,NJBF000054059,22 S CEDAR GROVE AVE,Margate City,NJ,39.3222466,-74.51098122,RES1,3001,,17,NE,1953,1953,3101,1,1,1698.536371,1698.536371,3505,NO,20.86,26.43,3,7.59,6106,113.350222,123.179836,132.871976,139.442045,I,Above,Gable,0,5701,,23.64531187,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 23131,NJBF000060214,408 N HUNTINGTON AVE,Margate City,NJ,39.33558669,-74.5076585,RES1,3001,,18,NE,1964,1964,3101,2,1,2959.549853,2959.549853,3505,NO,33.6,45.95,3,8.61,6110,113.229413,123.086605,132.784973,139.332343,I,Above,Hip,0,5701,,39.77230642,0,1.2,,,,1,1,,0.35,nav,1,1964,2,, 23132,NJBF000056730,4 S GRANVILLE AVE,Margate City,NJ,39.32913052,-74.50000847,RES1,3001,,20,NE,1962,1962,3102,2,1,1525.749637,1525.749637,3505,NO,42.17,51.19,3,3.45,6106,113.489828,123.29492,132.997883,139.577666,I,Above,Hip,0,5701,,46.68128906,0,0,,,,1,1,,0.03,nav,1,1962,2,, 23133,NJBF000060565,8208 MARSHALL AVE,Margate City,NJ,39.336193,-74.5093645,RES1,3001,,17,NE,1971,1971,3101,1,1,1669.247918,1669.247918,3505,NO,24.03,30.85,3,6.17,6106,113.183174,123.049597,132.746808,139.288879,I,Above,Gable,0,5701,,27.43883995,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 23134,NJBF000057832,8402 AMHERST AVE,Margate City,NJ,39.33124235,-74.5073399,RES1,3001,,17,NE,1950,1950,3101,1,1,1531.019942,1531.019942,3505,NO,12.57,25.19,3,1.96,6106,113.298226,123.141335,132.8392,139.399603,I,Above,Gable,0,5701,,18.88186753,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23135,NJBF000057954,16 S BARCLAY AVE,Margate City,NJ,39.33144033,-74.49381308,RES1,3001,,19,NE,1961,1961,3102,2,1,1120.286232,1120.286232,3505,NO,26.85,39.41,3,5.53,6106,113.593285,123.37864,133.087644,139.672734,I,Above,Gable,0,5701,,33.12746094,0,0,,,,1,1,,0.03,nav,1,1961,2,, 23136,NJBF000057432,14 N GLADSTONE AVE,Margate City,NJ,39.33056629,-74.50037107,RES1,3001,,17,NE,1920,1920,3102,2,1,1341.329357,1341.329357,3505,NO,42.94,52.25,3,6.47,6106,113.461316,123.272262,132.975334,139.551095,I,Above,Hip,0,5701,,47.59486012,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 23137,NJBF000062104,7802 MARSHALL AVE,Margate City,NJ,39.33880086,-74.50482284,RES1,3001,,18,NE,1968,1968,3102,2,1,2020.431377,2020.431377,3505,NO,38.66,49.94,3,7.45,6106,113.247342,123.100743,132.801449,139.343112,I,Above,Hip,0,5701,,44.30058852,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 23138,NJBF000059554,106 N BRUNSWICK AVE,Margate City,NJ,39.3344518,-74.49722568,RES1,3001,,18,NE,1950,1950,3102,2,1,1046.998099,1046.998099,3505,NO,29.25,38.16,3,7.88,6106,113.475752,123.284237,132.990817,139.560633,I,Above,Gable,0,5701,,33.70817024,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23139,NJBF000058179,213 N JASPER AVE,Margate City,NJ,39.33184897,-74.50607301,RES1,3001,,17,NE,1952,1952,3102,2,1,768.341097,768.341097,3505,NO,26.1,33.27,3,-0.36,6106,113.317437,123.15686,132.855786,139.417183,I,Above,Gable,0,5701,,29.68560378,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23140,NJBF000060976,410 N DOUGLAS AVE,Margate City,NJ,39.33684106,-74.5026971,RES1,3001,,18,NE,1965,1965,3102,1,1,2549.324659,2549.324659,3505,NO,21.83,31.65,3,3.52,6106,113.321567,123.160397,132.862677,139.415045,I,Above,Hip,0,5701,,26.7384231,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 23141,NJBF000060192,48 SEASIDE COURT,Margate City,NJ,39.33556115,-74.50891511,RES1,3001,,18,NE,1989,1989,3101,2,1,1482.300335,1482.300335,3505,NO,43.46,52.03,3,6.51,6106,113.202024,123.064676,132.762145,139.307102,I,Above,Hip,0,5701,,47.74325939,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 23142,NJBF000060267,46 SEASIDE COURT,Margate City,NJ,39.3356835,-74.5089985,RES1,3001,,19,NE,1988,1988,3101,2,1,1555.639653,1555.639653,3505,NO,19.02,28.73,3,-2.04,6106,113.198433,123.061805,132.759226,139.303632,I,Above,Hip,0,5701,,23.87402195,0,0,,,,1,1,,0.03,nav,1,1988,2,, 23143,NJBF000060263,12 SEASIDE COURT,Margate City,NJ,39.33567672,-74.50872187,RES1,3001,,19,NE,1997,1997,3101,2,1,2057.921802,2057.921802,3505,NO,39.31,50.18,3,6.83,6106,113.204653,123.066783,132.7644,139.309382,I,Above,Gable,0,5701,,44.74778971,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 23144,NJBF000060040,3 SEASIDE COURT,Margate City,NJ,39.33530047,-74.50769501,RES1,3001,,19,NE,1995,1995,3101,2,1,1469.954391,1469.954391,3505,NO,42.77,57.37,3,4,6110,113.232661,123.089201,132.787512,139.335709,I,Above,Hip,0,5701,,50.0689021,0,0,,,,1,1,,0.35,nav,1,1995,2,, 23145,NJBF000057962,307 N LANCASTER AVE,Margate City,NJ,39.33145886,-74.50854902,RES1,3001,,17,NE,1971,1971,3102,2,1,2135.198205,2135.198205,3505,NO,28.4,33.88,3,7.19,6106,113.268492,123.117511,132.814567,139.371927,I,Above,Gable,0,5701,,31.13777231,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 23146,NJBF000056880,11 S FRONTENAC AVE,Margate City,NJ,39.32945324,-74.49829574,RES1,3001,,19,NE,1939,1939,3102,2,1,1327.853391,1327.853391,3505,NO,29.98,38.17,3,6.18,6106,113.522861,123.321585,133.026077,139.608324,I,Above,Gable,0,5701,,34.07850869,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 23147,NJBF000063307,7911 BAYSHORE DR,Margate City,NJ,39.34137448,-74.50909983,RES1,3001,,20,NE,2005,2005,3102,3,1,3704.638153,3704.638153,3505,NO,39.09,52.5,3,3.81,6106,113.117105,122.996173,132.693621,139.218272,I,Above,Hip,0,5701,,45.79616284,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 23148,NJBF000057899,209 N JEROME AVE,Margate City,NJ,39.33135455,-74.50647145,RES1,3001,,17,NE,1955,1955,3102,2,1,1476.41651,1476.41651,3505,NO,28.4,37.76,3,5.67,6106,113.31574,123.155415,132.853938,139.41582,I,Above,Gable,0,5701,,33.08172168,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 23149,NJBF000053873,9201 ATLANTIC AVE,Margate City,NJ,39.32159419,-74.51174146,RES3E,3001,,20,ME,1952,1952,3301,1,1,5512.225489,5512.225489,3507,NO,19.1,30.4,1,1.75,6106,113.343423,123.173985,132.865305,139.434746,I,Above,Gable,0,5701,,24.7494853,0,0,,,,1,1,,0.03,nav,1,1952,1,, 23150,NJBF000058241,215 N JASPER AVE,Margate City,NJ,39.33195085,-74.50613902,RES1,3001,,17,NE,1952,1952,3102,2,1,1199.092111,1199.092111,3505,NO,37.64,45.8,3,7.61,6106,113.314525,123.154538,132.853437,139.414432,I,Above,Gable,0,5701,,41.72222743,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 23151,NJBF000059683,69 SEASIDE COURT,Margate City,NJ,39.33467511,-74.50791309,RES1,3001,,19,NE,1997,1997,3101,2,1,2063.395595,2063.395595,3505,NO,33.9,39.96,3,6.19,6106,113.236672,123.09239,132.790467,139.340147,I,Above,Hip,0,5701,,36.92669525,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 23152,NJBF000061228,217A N BRUNSWICK DR,Margate City,NJ,39.33727054,-74.49900865,RES1,3001,,19,NE,1950,1950,3103,3,1,1464.806008,1464.806008,3505,NO,46.76,56.86,3,1.75,6106,113.397169,123.221,132.926388,139.483138,I,Above,Hip,0,5701,,51.80933137,0,0,,,,1,1,,0.03,nav,1,1950,3,, 23153,NJBF000061158,217 N ARGYLE AVE,Margate City,NJ,39.33715834,-74.49713245,RES1,3001,,17,NE,1962,1962,3103,2,1,2349.07732,2349.07732,3505,NO,31.19,45.94,3,-2.2,6106,113.440234,123.255589,132.962607,139.522517,I,Above,Hip,0,5701,,38.56200574,0,0,,,,1,1,,0.03,nav,1,1962,2,, 23154,NJBF000060430,15 SEASIDE COURT,Margate City,NJ,39.33595655,-74.50835502,RES1,3001,,19,NE,1990,1990,3101,2,1,1830.566297,1830.566297,3505,NO,38.4,48.61,3,7.64,6106,113.208823,123.070123,132.768027,139.312856,I,Above,Hip,0,5701,,43.50715464,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 23155,NJBF000058780,25 N CLERMONT AVE,Margate City,NJ,39.33293843,-74.49681717,RES1,3001,,17,NE,1953,1953,3102,1,1,1768.372565,1768.372565,3505,NO,23.38,28.57,3,7.28,6106,113.506003,123.308502,133.015156,139.590656,I,Above,Hip,0,5701,,25.97541225,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 23156,NJBF000057642,14 S BRUNSWICK AVE,Margate City,NJ,39.33092711,-74.49414806,RES1,3001,,18,NE,1965,1965,3102,1,1,1738.07728,1738.07728,3505,NO,15.31,23.33,3,3.02,6106,113.593158,123.37847,133.087032,139.673008,I,Above,Hip,0,5701,,19.32388535,0,0,,,,1,1,,0.03,nav,1,1965,1,, 23157,NJBF000056918,214 N OSBORNE AVE,Margate City,NJ,39.32953299,-74.51007292,RES1,3001,,17,NE,1973,1973,3102,2,1,1370.853103,1370.853103,3505,NO,26.34,32.68,3,1.28,6106,113.262776,123.112473,132.807999,139.366818,I,Above,Gable,0,5701,,29.51014875,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 23158,NJBF000060261,7509 MONMOUTH AVE,Margate City,NJ,39.3356745,-74.497657,RES1,3001,,17,NE,1948,1948,3103,2,1,683.8784924,683.8784924,3505,NO,34.58,44.55,3,4.05,6106,113.449183,123.262872,132.969258,139.534038,I,Above,Gable,0,5701,,39.567961,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 23159,NJBF000054296,9413 WINCHESTER AVE,Margate City,NJ,39.32298962,-74.51658745,RES3B,3001,,21,ME,2006,2006,3301,1,1,2384.417001,2384.417001,3505,NO,11.21,20.83,3,0.15,6106,113.216882,123.072701,132.761739,139.319099,I,Above,Hip,0,5701,,16.01934866,0,0,,,,1,1,,0.03,nav,1,2006,1,, 23160,NJBF000057772,217 N KENYON AVE,Margate City,NJ,39.33114235,-74.5072634,RES1,3001,,17,NE,1950,1950,3102,2,1,1374.996147,1374.996147,3505,NO,28.48,39.68,3,5.68,6106,113.301357,123.143829,132.841727,139.40254,I,Above,Hip,0,5701,,34.07640176,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23161,NJBF000056645,5 S HAVERFORD AVE,Margate City,NJ,39.328949,-74.500121,RES1,3001,,18,NE,1930,1930,3102,2,1,794.4831771,794.4831771,3505,NO,40.42,49.22,3,4.23,6106,113.489956,123.294981,132.997796,139.577757,I,Above,Hip,0,5701,,44.82207052,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23162,NJBF000056601,7 S HAVERFORD AVE,Margate City,NJ,39.3288423,-74.50002547,RES1,3001,,18,NE,1930,1930,3102,2,1,1510.52113,1510.52113,3505,NO,33.76,47.72,3,2.27,6106,113.493602,123.297892,133.000752,139.581119,I,Above,Hip,0,5701,,40.74049453,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23163,NJBF000060840,51 BAYSIDE COURT,Margate City,NJ,39.33662784,-74.51094796,RES1,3001,,19,NE,1990,1990,3102,2,1,1891.644906,1891.644906,3505,NO,38.19,52.83,3,0.19,6106,113.142049,123.016701,132.712857,139.250344,I,Above,Gable,0,5701,,45.5132665,0,0,,,,1,1,,0.03,nav,1,1990,2,, 23164,NJBF000059645,119 N CLERMONT AVE,Margate City,NJ,39.33460959,-74.49842827,RES1,3001,,17,NE,1925,1925,3103,2,1,1136.936337,1136.936337,3505,NO,26.98,36.25,3,4.59,6110,113.447013,123.261139,132.9667,139.534012,I,Above,Gable,0,5701,,31.61400845,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 23165,NJBF000062174,8014 LAGOON DRIVE,Margate City,NJ,39.33892526,-74.50996695,RES1,3001,,18,NE,1973,1973,3102,2,1,1869.896363,1869.896363,3505,NO,30.07,44.96,3,0.48,6106,113.131654,123.008238,132.705148,139.23697,I,Above,Gable,0,5701,,37.51413016,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 23166,NJBF000060346,412 N HUNTINGTON AVE,Margate City,NJ,39.3358173,-74.50785099,RES1,3001,,17,NE,1963,1963,3101,2,1,1469.580726,1469.580726,3505,NO,32.82,41.88,3,0.91,6110,113.221932,123.080617,132.77887,139.325136,I,Above,Gable,0,5701,,37.34982321,0,0,,,,1,1,,0.35,nav,1,1963,2,, 23167,NJBF000061320,32 BAYSIDE COURT,Margate City,NJ,39.33743842,-74.51113368,RES1,3001,,19,NE,1989,1989,3102,2,1,1585.849141,1585.849141,3505,NO,21.86,26.95,3,0.03,6106,113.126559,123.004295,132.70037,139.234872,I,Above,Gable,0,5701,,24.4040761,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 23168,NJBF000059649,116 N CLARENDON AVE,Margate City,NJ,39.33461286,-74.49811598,RES1,3001,,17,NE,1950,1950,3103,2,1,1025.314467,1025.314467,3505,NO,39.49,50.34,3,1.92,6106,113.453858,123.26664,132.972471,139.540286,I,Above,Hip,0,5701,,44.91635697,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23169,NJBF000059196,JEROME AVE,Margate City,NJ,39.33375367,-74.50966001,REL1,3003,,NaN,ME,1969,0,3401,1,1,20259.80229,20259.80229,3507,NO,15.72,21.44,1,-0.77,6106,113.211183,123.071899,132.768615,139.317444,I,Above,Flat,0,5701,,18.58051889,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23170,NJBF000060470,25 SEASIDE COURT,Margate City,NJ,39.33602958,-74.50920736,RES1,3001,,19,NE,1990,1990,3101,2,1,1853.641633,1853.641633,3505,NO,45.14,51.87,3,8.36,6106,113.188961,123.054227,132.751536,139.294438,I,Above,Hip,0,5701,,48.50756884,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 23171,NJBF000059271,,Margate City,NJ,39.3339043,-74.49920008,RES1,3001,,NaN,NE,1969,0,3103,6,1,1550.332776,1550.332776,3505,NO,112.91,119.66,3,4.5,6110,113.439871,123.255381,132.960164,139.528512,I,Above,Gable,0,5701,,116.2857406,0,0,,,,1,1,,0.35,nav,1,1969,6,, 23172,NJBF000058229,2 N CLARENDON AVE,Margate City,NJ,39.33193532,-74.4957004,RES1,3001,,18,NE,1950,1950,3102,1,1,2521.084851,2521.084851,3505,NO,17.69,29.12,3,6.32,6106,113.544747,123.339596,133.047015,139.627476,I,Above,Gable,0,5701,,23.40712894,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 23173,NJBF000058269,210 N HANOVER AVE,Margate City,NJ,39.33200896,-74.50513404,RES1,3001,,17,NE,1935,1935,3101,1,1,1216.801349,1216.801349,3505,NO,21.69,29.92,3,8.57,6106,113.335841,123.171657,132.871319,139.434161,I,Above,Flat,0,5701,,25.80310734,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 23174,NJBF000059142,16 CIRCLE DRIVE,Margate City,NJ,39.33363785,-74.49488831,RES1,3001,,18,NE,1925,1925,3102,2,1,1625.899615,1625.899615,3505,NO,41.49,55.59,3,4.47,6106,113.538712,123.334866,133.043386,139.61971,I,Above,Gable,0,5701,,48.53726422,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23175,NJBF000060424,8214 MARSHALL AVE,Margate City,NJ,39.33593689,-74.50978985,RES1,3001,,17,NE,1971,1971,3101,1,1,1866.57959,1866.57959,3505,NO,18.38,26,3,0.82,6106,113.177384,123.044963,132.741857,139.283878,I,Above,Hip,0,5701,,22.18928937,0,1.1,,,,1,1,,0.03,nav,1,1971,1,, 23176,NJBF000059473,8217 FULTON AVE,Margate City,NJ,39.334314,-74.50799592,RES1,3001,,17,NE,1957,1957,3101,1,1,1228.772528,1228.772528,3505,NO,17.41,28.51,3,-1.71,6106,113.23995,123.094995,132.792963,139.343558,I,Above,Hip,0,5701,,22.95635402,0,0,,,,1,1,,0.03,nav,1,1957,1,, 23177,NJBF000060505,8210 MARSHALL AVE,Margate City,NJ,39.33609467,-74.50950515,RES1,3001,,17,NE,1969,1969,3101,1,1,2214.262527,2214.262527,3505,NO,23.18,34.7,3,3.96,6106,113.181458,123.048224,132.74533,139.287429,I,Above,Gable,0,5701,,28.93948647,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 23178,NJBF000057860,,Margate City,NJ,39.33127901,-74.49688828,RES1,3001,,NaN,NE,1969,0,3102,2,1,1071.047689,1071.047689,3505,NO,31.63,45.02,3,5.36,6106,113.527858,123.325919,133.032128,139.612389,I,Above,Flat,0,5701,,38.32464118,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23179,NJBF000061276,37 BAYSIDE COURT,Margate City,NJ,39.33735604,-74.5117316,RES1,3001,,19,NE,1998,1998,3102,2,1,2531.809023,2531.809023,3505,NO,35.5,43.09,3,6.28,6106,113.114475,122.994642,132.690314,139.223863,I,Above,Hip,0,5701,,39.29126751,0,0,,,,1,1,,0.03,nav,1,1998,2,, 23180,NJBF000061435,14 BAYSIDE COURT,Margate City,NJ,39.33762342,-74.51058077,RES1,3001,,19,NE,1989,1989,3102,2,1,1847.773875,1847.773875,3505,NO,42.29,56.84,3,4.6,6106,113.136208,123.011996,132.708454,139.243463,I,Above,Hip,0,5701,,49.56613602,0,0,,,,1,1,,0.03,nav,1,1989,2,, 23181,NJBF000053804,,Margate City,NJ,39.32135146,-74.51197775,RES3E,3001,,NaN,ME,1969,0,3301,2,1,3615.009474,3615.009474,3507,NO,29.04,40,1,-0.51,6106,113.341904,123.172617,132.863661,139.432952,I,Above,Flat,0,5701,,34.5182787,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23182,NJBF000057438,205 N KENYON AVE,Margate City,NJ,39.33057561,-74.50678963,RES1,3001,,21,NE,2017,2017,3102,2,1,1380.474099,1380.474099,3505,NO,37.03,43.14,3,4.94,6106,113.319901,123.158605,132.856708,139.419889,I,Above,Hip,0,5701,,40.08640355,0,0,,,,1,1,,0.03,nav,1,2017,2,, 23183,NJBF000057096,24 N HANOVER AVE,Margate City,NJ,39.32991733,-74.50312381,RES1,3001,,17,NE,1935,1935,3102,2,1,1397.332803,1397.332803,3505,NO,31.6,39.18,3,3.04,6106,113.410026,123.230888,132.93158,139.503636,I,Above,Hip,0,5701,,35.39384969,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 23184,NJBF000056577,206 N PEMBROKE AVE,Margate City,NJ,39.32878705,-74.51028986,RES1,3001,,20,NE,2013,2013,3102,2,1,1447.158969,1447.158969,3505,NO,36.31,46.98,3,5.19,6106,113.268854,123.117137,132.812302,139.372327,I,Above,Gable,0,5701,,41.64384306,0,0,,,,1,1,,0.03,nav,1,2013,2,, 23185,NJBF000060410,310 N DOUGLAS AVE,Margate City,NJ,39.33592253,-74.5018522,RES1,3001,,17,NE,1962,1962,3102,2,1,2551.940958,2551.940958,3505,NO,36.42,50.28,3,-0.48,6106,113.353041,123.185678,132.888552,139.445574,I,Above,Gable,0,5701,,43.34967175,0,0,,,,1,1,,0.03,nav,1,1962,2,, 23186,NJBF000058285,216 N IROQUOIS AVE,Margate City,NJ,39.33203692,-74.50596949,RES1,3001,,17,NE,1952,1952,3102,2,1,1065.066341,1065.066341,3505,NO,28.94,43.55,3,5.33,6106,113.317043,123.156572,132.855615,139.416721,I,Above,Hip,0,5701,,36.242925,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23187,NJBF000061121,48 BAYSIDE COURT,Margate City,NJ,39.33709669,-74.51038852,RES1,3001,,19,NE,1997,1997,3102,2,1,2164.801408,2164.801408,3505,NO,28.21,35.2,3,5.8,6106,113.147826,123.021308,132.717873,139.254988,I,Above,Hip,0,5701,,31.70513573,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 23188,NJBF000060111,8 SEASIDE COURT,Margate City,NJ,39.33542827,-74.50848929,RES1,3001,,19,NE,1989,1989,3101,2,1,2069.360348,2069.360348,3505,NO,31.42,40.07,3,-0.75,6106,113.213313,123.073711,132.771467,139.31769,I,Above,Hip,0,5701,,35.74374482,0,0,,,,1,1,,0.03,nav,1,1989,2,, 23189,NJBF000055704,210 1/2 N VENDOME AVE,Margate City,NJ,39.32678024,-74.51397584,RES1,3001,,17,NE,1920,1920,3102,2,1,1308.996436,1308.996436,3505,NO,33.94,43.87,3,4.25,6106,113.217452,123.075084,132.767227,139.323482,I,Above,Hip,0,5701,,38.90402753,0,0,,,,1,1,,0.03,nav,1,1920,2,, 23190,NJBF000061543,22 HARBOUR LANE,Margate City,NJ,39.33782808,-74.50773606,RES1,3001,,18,NE,1982,1982,3102,2,1,1745.223996,1745.223996,3505,NO,28.33,40.55,3,-0.44,6106,113.196326,123.060043,132.758521,139.298374,I,Above,Gable,0,5701,,34.43901305,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 23191,NJBF000059124,30 N BRUNSWICK AVE,Margate City,NJ,39.33360264,-74.49643909,RES1,3001,,17,NE,1935,1935,3102,2,1,1304.49858,1304.49858,3505,NO,38.89,47.46,3,3.14,6106,113.505,123.307734,133.014855,139.588828,I,Above,Hip,0,5701,,43.17492489,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 23192,NJBF000056498,7 S HUNTINGTON AVE,Margate City,NJ,39.32860721,-74.50055277,RES1,3001,,18,NE,1925,1925,3102,2,1,1166.902913,1166.902913,3505,NO,28.23,41.54,3,5.45,6106,113.485375,123.291212,132.993566,139.573431,I,Above,Flat,0,5701,,34.88421043,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23193,NJBF000056162,124 N QUINCY AVE,Margate City,NJ,39.32786207,-74.51036806,RES1,3001,,17,NE,1927,1927,3102,2,1,1386.29523,1386.29523,3505,NO,35.5,47.74,3,7.65,6106,113.280637,123.126305,132.82113,139.382949,I,Above,Gable,0,5701,,41.62020267,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 23194,NJBF000059042,117 N EXETER AVE,Margate City,NJ,39.33342357,-74.50034775,RES1,3001,,17,NE,1955,1955,3102,2,1,1835.835067,1835.835067,3505,NO,34.98,42.16,3,-0.59,6106,113.421297,123.240431,132.944166,139.512004,I,Above,Gable,0,5701,,38.57085076,0,0,,,,1,1,,0.03,nav,1,1955,2,, 23195,NJBF000056471,200 N PEMBROKE AVE,Margate City,NJ,39.32853726,-74.51007825,RES1,3001,,17,NE,1932,1932,3102,2,1,2109.742973,2109.742973,3505,NO,31.9,44.12,3,8.11,6106,113.27715,123.123725,132.818958,139.379971,I,Above,Gable,0,5701,,38.00858869,0,1.2,,,,1,1,,0.03,nav,1,1932,2,, 23196,NJBF000059163,7804 MONMOUTH AVE,Margate City,NJ,39.33368105,-74.50043794,RES1,3001,,17,NE,1956,1956,3101,1,1,1953.977738,1953.977738,3505,NO,27.2,33.95,3,8.19,6106,113.415692,123.235943,132.93965,139.506531,I,Above,Hip,0,5701,,30.57722283,0,0,,,,1,1,,0.03,nav,1,1956,1,, 23197,NJBF000055797,10 N OSBORNE AVE,Margate City,NJ,39.32699275,-74.50770239,RES1,3001,,19,NE,1948,1948,3102,2,1,2015.000477,2015.000477,3505,NO,30.68,41.77,3,6.83,6106,113.351814,123.183249,132.879616,139.448664,I,Above,Gable,0,5701,,36.22088683,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 23198,NJBF000056506,5 N JEROME AVE,Margate City,NJ,39.32863067,-74.50383732,RES1,3001,,17,NE,1950,1950,3101,1,1,1711.361843,1711.361843,3505,NO,13.45,25.77,3,0.82,6106,113.412866,123.232867,132.932629,139.506138,I,Above,Flat,0,5701,,19.60986654,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23199,NJBF000053985,104 S VENDOME AVE,Margate City,NJ,39.322001,-74.5093851,RES1,3001,,20,NE,1945,1945,3102,2,1,1486.607441,1486.607441,3505,NO,29.35,39.62,3,6.42,6106,113.388709,123.210754,132.903843,139.477332,I,Above,Flat,0,5701,,34.48160671,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 23200,NJBF000056502,6 S HUNTINGTON AVE,Margate City,NJ,39.32861652,-74.50101999,RES1,3001,,18,NE,1925,1925,3102,2,1,1388.917697,1388.917697,3505,NO,32.27,42.57,3,7.66,6106,113.474969,123.282837,132.984815,139.563778,I,Above,Hip,0,5701,,37.4214596,0,0,,,,1,1,,0.03,nav,1,1925,2,, 23201,NJBF000056784,110 S DELAVAN AVE,Margate City,NJ,39.3292575,-74.49499283,RES1,3001,,20,NE,1952,1952,3102,3,1,1433.962939,1433.962939,3505,NO,58.14,68.84,3,4.23,6106,113.598283,123.382314,133.089629,139.678238,I,Above,Gable,0,5701,,63.48984697,0,1.1,,,,1,1,,0.03,nav,1,1952,3,, 23202,NJBF000061214,807 N JEROME AVE,Margate City,NJ,39.33724307,-74.51201727,RES1,3001,,18,NE,1957,1957,3102,2,1,798.6643133,798.6643133,3505,NO,24.57,33.2,3,-0.02,6106,113.109755,122.990875,132.686352,139.21968,I,Above,Flat,0,5701,,28.88558864,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 23203,NJBF000055407,9210 AMHERST AVE,Margate City,NJ,39.32601233,-74.51646778,RES3B,3001,,39,ME,2003,2003,3301,3,1,3415.420273,3415.420273,3505,NO,40.54,50.25,3,1.28,6106,113.174307,123.040024,132.730406,139.282661,I,Above,Hip,0,5701,,45.39804628,0,0,,,,1,1,,0.03,nav,1,2003,3,, 23204,NJBF000054393,111 S RUMSON AVE,Margate City,NJ,39.32327564,-74.50634052,RES1,3001,,20,NE,2009,2009,3103,3,1,2990.676814,2990.676814,3505,NO,41.46,51.87,3,-2.31,6106,113.436251,123.249741,132.945578,139.523191,I,Above,Hip,0,5701,,46.66317255,0,0,,,,1,1,,0.03,nav,1,2009,3,, 23205,NJBF000057545,421 N QUINCY AVE,Margate City,NJ,39.33075746,-74.51255235,RES1,3001,,17,NE,1939,1939,3102,2,1,1378.202539,1378.202539,3505,NO,27.68,36.96,3,2.53,6106,113.19053,123.054807,132.749018,139.299616,I,Above,Gable,0,5701,,32.31886277,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 23206,NJBF000060507,17 SEASIDE COURT,Margate City,NJ,39.33610126,-74.5084085,RES1,3001,,19,NE,1995,1995,3101,2,1,1718.593015,1718.593015,3505,NO,47.65,54.51,3,8.89,6106,113.205604,123.067546,132.765425,139.309689,I,Above,Hip,0,5701,,51.07724807,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 23207,NJBF000056178,8310 VENTNOR AVE,Margate City,NJ,39.3279015,-74.50294824,RES1,3001,,19,NE,1940,1940,3102,3,1,1926.382341,1926.382341,3505,NO,52.2,66.63,3,7.1,6106,113.442931,123.256859,132.957075,139.533786,I,Above,Flat,0,5701,,59.41769543,0,0,,,,1,1,,0.03,nav,1,1940,3,, 23208,NJBF000057886,305 N LANCASTER AVE,Margate City,NJ,39.33132858,-74.50844479,RES1,3001,,17,NE,1969,1969,3102,2,1,1791.384032,1791.384032,3505,NO,27.22,41.79,3,6.19,6106,113.272649,123.120823,132.817922,139.375829,I,Above,Gable,0,5701,,34.50602149,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 23209,NJBF000054269,110 N JEFFERSON AVE,Margate City,NJ,39.32291572,-74.51744393,RES3B,3001,,20,ME,2004,2004,3301,2,1,2074.555725,2074.555725,3505,NO,43.22,48.7,3,7.52,6106,113.199329,123.058498,132.747015,139.302634,I,Above,Hip,0,5701,,45.95933179,0,0,,,,1,1,,0.03,nav,1,2004,2,, 23210,NJBF000058377,8217 AMHERST AVE,Margate City,NJ,39.33220038,-74.5063703,RES1,3001,,17,NE,1950,1950,3101,2,1,2111.379055,2111.379055,3505,NO,39.15,53.36,3,7.93,6106,113.30588,123.147636,132.846417,139.406282,I,Above,Gable,0,5701,,46.25547321,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 23211,NJBF000060779,221 N CLARENDON AVE,Margate City,NJ,39.33653605,-74.4994852,RES1,3001,,17,NE,1948,1948,3103,1,1,1608.877623,1608.877623,3505,NO,12.15,23.31,3,-0.27,6106,113.396827,123.220783,132.925694,139.484463,I,Above,Gable,0,5701,,17.73373225,0,0,,,,1,1,,0.03,nav,1,1948,1,, 23212,NJBF000061409,7401 AMHERST AVE,Margate City,NJ,39.33758829,-74.49700066,RES1,3001,,18,NE,1996,1996,3103,2,1,2151.956027,2151.956027,3505,NO,29.02,42.33,3,0.3,6106,113.4372,123.253109,132.960282,139.518659,I,Above,Hip,0,5701,,35.67334446,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 23213,NJBF000060123,201 N CLARENDON AVE,Margate City,NJ,39.33544528,-74.49848267,RES1,3001,,17,NE,1980,1980,3103,2,1,1574.906882,1574.906882,3505,NO,35.28,41.61,3,1.73,6106,113.434141,123.250793,132.95643,139.520742,I,Above,Gable,0,5701,,38.44656041,0,0,,,,1,1,,0.03,nav,1,1980,2,, 23214,NJBF000054361,105 N JEFFERSON AVE,Margate City,NJ,39.32317832,-74.51672941,RES1,3001,,43,NE,1900,1900,3102,2,4,514.4670809,514.4670809,3507,NO,22.36,36.25,1,1.18,6106,113.210963,123.068038,132.757082,139.313827,I,Above,Gable,0,5701,,29.30136248,0,0,,,,1,1,,0.03,nav,1,1900,2,, 23215,NJBF000062531,601 N DELAVAN AVE,Margate City,NJ,39.33965697,-74.50405859,RES1,3001,,18,NE,1965,1965,3102,2,1,1318.286347,1318.286347,3505,NO,24.19,35.86,3,-1.34,6106,113.252479,123.104713,132.80603,139.345778,I,Above,Gable,0,5701,,30.0286482,0,0,,,,1,1,,0.03,nav,1,1965,2,, 23216,NJBF000055109,111 N DECATUR AVE,Margate City,NJ,39.32514925,-74.51503267,IND2,3003,,NaN,ME,1969,0,3401,3,1,13690.51996,13690.51996,3507,NO,36.63,44.27,1,-0.87,6106,113.218501,123.075179,132.766066,139.323099,I,Above,Hip,0,NaN,,40.45351953,0,0,,,,1,1,,0.03,nav,1,1969,3,, 23217,NJBF000054372,110 S RUMSON AVE,Margate City,NJ,39.32320302,-74.50687356,RES1,3001,,19,NE,1965,1965,3102,2,1,1998.890587,1998.890587,3505,NO,34.02,47.28,3,2.99,6106,113.42568,123.241183,132.936601,139.51331,I,Above,Hip,0,5701,,40.6505236,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 23218,NJBF000053217,9707A PACIFIC AVE,Margate City,NJ,39.31913987,-74.51676142,RES1,3001,,17,NE,1978,1978,3102,2,1,2920.371875,2920.371875,3507,NO,33.46,47.73,1,1.67,6106,113.271351,123.114177,132.801096,139.363648,I,Above,Flat,0,5701,,40.59595196,0,0,,,,1,1,,0.03,nav,1,1978,2,, 23219,NJBF000060668,417 N HUNTINGTON AVE,Margate City,NJ,39.33637022,-74.50780381,RES1,3001,,17,NE,1963,1963,3101,2,1,1350.027321,1350.027321,3505,NO,33.29,46.84,3,1.7,6106,113.215203,123.075225,132.773562,139.318145,I,Above,Flat,0,5701,,40.06140046,0,0,,,,1,1,,0.03,nav,1,1963,2,, 23220,NJBF000057447,109 S ARGYLE AVE,Margate City,NJ,39.33059191,-74.49192784,RES1,3001,,22,NE,1983,1983,3102,3,1,2280.825631,2280.825631,3505,NO,55.12,64.22,3,0.06,6106,113.646742,123.421628,133.132154,139.722762,I,Above,Flat,0,5701,,59.66626419,0,1.1,,,,1,1,,0.03,nav,1,1983,3,, 23221,NJBF000058652,8207 AMHERST AVE,Margate City,NJ,39.33268585,-74.50558937,RES1,3001,,17,NE,1940,1940,3101,1,1,1003.296975,1003.296975,3505,NO,12.75,21.76,3,-2.15,6106,113.316168,123.155956,132.855414,139.415503,I,Above,Gable,0,5701,,17.25644311,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 23222,NJBF000055537,8400 ATLANTIC AVE,Margate City,NJ,39.32636406,-74.50215019,RES1,3001,,19,NE,1945,1945,3102,3,1,2488.16534,2488.16534,3505,NO,45.37,59.86,3,-1.85,6106,113.482749,123.288448,132.988744,139.569726,I,Above,Flat,0,5701,,52.61250016,0,1.1,,,,1,1,,0.03,nav,1,1945,3,, 23223,NJBF000055944,12 N NASSAU AVE,Margate City,NJ,39.32734999,-74.50704676,RES1,3001,,17,NE,1938,1938,3102,2,1,1036.911134,1036.911134,3505,NO,41.11,47.08,3,8.23,6106,113.360971,123.190739,132.887697,139.457389,I,Above,Gable,0,5701,,44.09338729,0,1.2,,,,1,1,,0.03,nav,1,1938,2,, 23224,NJBF000054835,116 S MANSFIELD AVE,Margate City,NJ,39.32443665,-74.50362474,RES1,3001,,20,NE,1920,1920,3102,3,2,1233.740583,1233.740583,3505,NO,46.89,55.54,3,4.49,6106,113.478568,123.284367,132.982743,139.563852,I,Above,Hip,0,5701,,51.21522374,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 23225,NJBF000057520,113 N IROQUOIS AVE,Margate City,NJ,39.33071544,-74.5042287,RES1,3001,,17,NE,1951,1951,3101,1,1,1205.036518,1205.036518,3507,NO,12.89,21.61,1,-0.53,6106,113.374269,123.202306,132.902355,139.470326,I,Above,Gable,0,5701,,17.2504097,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 23226,NJBF000059166,108 N DELAVAN AVE,Margate City,NJ,39.33368607,-74.49875319,RES1,3001,,18,NE,1920,1920,3103,2,1,1776.029993,1776.029993,3505,NO,35.05,49.59,3,2.44,6106,113.452795,123.265758,132.970882,139.540702,I,Above,Gable,0,5701,,42.32183786,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23227,NJBF000059136,106 N DELAVAN AVE,Margate City,NJ,39.3336215,-74.4986455,RES1,3001,,17,NE,1920,1920,3103,2,1,1250.570273,1250.570273,3505,NO,33.05,46.02,3,-0.27,6106,113.45609,123.268403,132.973608,139.543822,I,Above,Gable,0,5701,,39.53584209,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23228,NJBF000058416,7502 VENTNOR AVE,Margate City,NJ,39.33226659,-74.49403342,RES1,3001,,19,NE,1936,1936,3102,3,1,1803.776159,1803.776159,3505,NO,58.34,64.37,3,0.17,6106,113.576791,123.365438,133.074443,139.656661,I,Above,Gable,0,5701,,61.356606,0,1.1,,,,1,1,,0.03,nav,1,1936,3,, 23229,NJBF000061934,8207 LAGOON DRIVE,Margate City,NJ,39.33850792,-74.5114881,RES1,3001,,20,NE,1975,1975,3102,3,1,2395.336074,2395.336074,3505,NO,45.49,52.73,3,4.66,6106,113.103759,122.986006,132.681872,139.212118,I,Above,Hip,0,5701,,49.11065422,0,1.1,,,,1,1,,0.03,nav,1,1975,3,, 23230,NJBF000054910,7 N WILSON AVE,Margate City,NJ,39.32462425,-74.51220211,RES1,3001,,17,NE,1940,1940,3102,2,1,1029.735539,1029.735539,3505,NO,35.56,46.54,3,0.82,6106,113.28817,123.131033,132.823456,139.387439,I,Above,Hip,0,5701,,41.04608192,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 23231,NJBF000054881,9104 WINCHESTER AVE,Margate City,NJ,39.32455205,-74.51299114,RES1,3001,,17,NE,1940,1940,3102,2,1,1115.142286,1115.142286,3505,NO,32.98,45.61,3,-1.06,6106,113.271997,123.11797,132.809862,139.372313,I,Above,Gable,0,5701,,39.29194858,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23232,NJBF000055673,18 N QUINCY AVE,Margate City,NJ,39.32670678,-74.50931404,RES1,3001,,22,NE,2017,2017,3102,3,1,2076.103058,2076.103058,3505,NO,39.28,49.02,3,1.28,6106,113.320658,123.158077,132.85322,139.419509,I,Above,Hip,0,5701,,44.14709996,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 23233,NJBF000055631,11 N QUINCY AVE,Margate City,NJ,39.32661025,-74.50860267,RES1,3001,,17,NE,1929,1929,3102,2,1,1547.599064,1547.599064,3505,NO,27.5,35.13,3,1.35,6106,113.337663,123.171724,132.867323,139.435251,I,Above,Flat,0,5701,,31.31497833,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 23234,NJBF000062481,8002 LAGOON DRIVE,Margate City,NJ,39.33956288,-74.50887251,RES1,3001,,18,NE,1973,1973,3102,2,1,1508.900542,1508.900542,3505,NO,27.76,41.68,3,3.06,6106,113.147061,123.020454,132.718135,139.249796,I,Above,Gable,0,5701,,34.71638238,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 23235,NJBF000060131,116 N BELMONT AVE,Margate City,NJ,39.33545434,-74.49668642,RES1,3001,,19,NE,2010,2010,3102,3,1,1143.556771,1143.556771,3505,NO,50.39,60.12,3,-2.68,6106,113.473701,123.282584,132.989795,139.556868,I,Above,Hip,0,5701,,55.25513451,0,0,,,,1,1,,0.03,nav,1,2010,3,, 23236,NJBF000056218,103 N OSBORNE AVE,Margate City,NJ,39.32798686,-74.5080533,RES1,3001,,17,NE,1950,1950,3102,2,1,2491.758922,2491.758922,3505,NO,26.29,36.84,3,2.48,6106,113.329614,123.165725,132.86218,139.42856,I,Above,Hip,0,5701,,31.56345488,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 23237,NJBF000053540,9614 VENTNOR AVE,Margate City,NJ,39.32031902,-74.51688779,COM4,3001,,NaN,ME,1957,1957,3401,1,1,1526.108902,1526.108902,3507,NO,13.49,20.7,1,-0.81,6106,113.250674,123.098283,132.785794,139.346521,I,Above,Flat,0,NaN,,17.09330376,0,0,,,,1,1,,0.03,nav,1,1957,1,, 23238,NJBF000054409,108 S RUMSON AVE,Margate City,NJ,39.32331767,-74.50696097,RES1,3001,,19,NE,1949,1949,3102,2,1,1972.905674,1972.905674,3505,NO,25.87,39.59,3,2.52,6106,113.422077,123.238332,132.93374,139.510134,I,Above,Hip,0,5701,,32.72657838,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 23239,NJBF000055413,7 N RUMSON AVE,Margate City,NJ,39.32603569,-74.5090256,RES1,3001,,17,NE,1925,1925,3101,1,1,1671.595725,1671.595725,3505,NO,14.19,19.27,3,1.62,6106,113.336816,123.170821,132.865915,139.43402,I,Above,Gable,0,5701,,16.72661977,0,1.2,,,,1,1,,0.03,nav,1,1925,1,, 23240,NJBF000061099,43 BAYSIDE COURT,Margate City,NJ,39.33704999,-74.5113654,RES1,3001,,19,NE,1995,1995,3102,2,1,1986.956408,1986.956408,3505,NO,30.95,44.67,3,-2.97,6106,113.126892,123.004576,132.700477,139.235764,I,Above,Hip,0,5701,,37.81086477,0,0,,,,1,1,,0.03,nav,1,1995,2,, 23241,NJBF000059067,,Margate City,NJ,39.333484,-74.499526,RES1,3001,,NaN,NE,1999,0,3103,4,1,1550.54732,1550.54732,3505,NO,54.64,62.71,3,-2.67,6110,113.438584,123.254325,132.958757,139.527871,I,Above,Flat,0,5701,,58.67433965,0,0,,,,1,1,,0.35,nav,1,1999,4,, 23242,NJBF000061215,46 BAYSIDE COURT,Margate City,NJ,39.33724467,-74.51049606,RES1,3001,,19,NE,1999,1999,3102,2,1,2198.525286,2198.525286,3505,NO,44.65,59.06,3,6.43,6106,113.143383,123.01775,132.71425,139.250668,I,Above,Hip,0,5701,,51.85566703,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 23243,NJBF000061406,408 N CLARENDON AVE,Margate City,NJ,39.33758408,-74.50096692,RES1,3001,,19,NE,2004,2004,3102,2,1,1467.172494,1467.172494,3505,NO,32.22,45.84,3,-1.95,6106,113.34953,123.182751,132.886505,139.439044,I,Above,Gable,0,5701,,39.03283999,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 23244,NJBF000058003,8801 FULTON AVE,Margate City,NJ,39.33154296,-74.51356791,RES1,3001,,17,NE,1949,1949,3102,2,1,2273.95558,2273.95558,3505,NO,33.89,44.93,3,-2.52,6106,113.156801,123.027947,132.721694,139.268107,I,Above,Hip,0,5701,,39.40861951,0,1.2,,,,1,1,,0.03,nav,1,1949,2,, 23245,NJBF000054506,9214 WINCHESTER AVE,Margate City,NJ,39.32357438,-74.51475927,RES1,3001,,17,NE,1955,1955,3102,2,1,1356.866172,1356.866172,3505,NO,31.56,38.16,3,5.86,6106,113.247977,123.098106,132.788487,139.348818,I,Above,Flat,0,5701,,34.85754884,0,0,,,,1,1,,0.03,nav,1,1955,2,, 23246,NJBF000055686,210 N VENDOME AVE,Margate City,NJ,39.32673723,-74.51388692,RES1,3001,,17,NE,1920,1920,3102,2,1,1111.406389,1111.406389,3505,NO,30.65,45.49,3,6.9,6106,113.220035,123.077143,132.769326,139.32586,I,Above,Gable,0,5701,,38.07347378,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23247,NJBF000056067,14 S IROQUOIS AVE,Margate City,NJ,39.32765138,-74.50171514,RES1,3001,,17,NE,1955,1955,3102,2,1,1117.980522,1117.980522,3505,NO,19.21,28.22,3,-1.96,6106,113.473636,123.281507,132.982609,139.562156,I,Above,Gable,0,5701,,23.71875654,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 23248,NJBF000055929,8228 ATLANTIC AVE,Margate City,NJ,39.32730967,-74.5001695,RES1,3001,,18,NE,1995,1995,3102,3,1,1711.236708,1711.236708,3505,NO,47.63,53.29,3,3.81,6106,113.512507,123.312716,133.014949,139.598006,I,Above,Flat,0,5701,,50.45876929,0,0,,,,1,1,,0.03,nav,1,1995,3,, 23249,NJBF000058622,17 N CLERMONT AVE,Margate City,NJ,39.33263035,-74.49651408,RES1,3001,,17,NE,1940,1940,3102,2,1,1227.148216,1227.148216,3505,NO,33.28,38.61,3,0.22,6106,113.517016,123.31734,133.024195,139.601169,I,Above,Hip,0,5701,,35.9453082,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23250,NJBF000056411,10 S HUNTINGTON AVE,Margate City,NJ,39.32841,-74.50084596,RES1,3001,,18,NE,1930,1930,3102,2,1,1399.786765,1399.786765,3505,NO,30.41,37.15,3,8.35,6106,113.481772,123.288262,132.990315,139.570029,I,Above,Gable,0,5701,,33.78168367,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23251,NJBF000059439,15 W COLMAR CIRCLE,Margate City,NJ,39.33424166,-74.50474795,RES1,3001,,17,NE,1952,1952,3101,2,1,3278.335687,3278.335687,3505,NO,32.71,47.66,3,4.81,6106,113.312668,123.153281,132.853645,139.410827,I,Above,Hip,0,5701,,40.18836503,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 23252,NJBF000055279,118 N HARDING AVE,Margate City,NJ,39.32565253,-74.51445368,RES1,3001,,47,NE,1948,1948,3102,2,2,931.8492644,931.8492644,3505,NO,36.49,43.29,3,5.52,6106,113.22367,123.079584,132.771018,139.328387,I,Above,Flat,0,5701,,39.88846442,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23253,NJBF000057327,11 N GRANVILLE AVE,Margate City,NJ,39.33037428,-74.50062305,RES1,3001,,17,NE,1954,1954,3101,1,1,1664.636963,1664.636963,3505,NO,13.29,23.03,3,-1.63,6106,113.458511,123.269971,132.972785,139.548545,I,Above,Hip,0,5701,,18.15884086,0,0,,,,1,1,,0.03,nav,1,1954,1,, 23254,NJBF000055878,215 N VENDOME AVE,Margate City,NJ,39.32719081,-74.51382362,RES1,3001,,17,NE,1925,1925,3101,1,1,1304.778227,1304.778227,3505,NO,19.35,33.82,3,8.45,6106,113.21472,123.073057,132.765437,139.321203,I,Above,Hip,0,5701,,26.58507587,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 23255,NJBF000059105,31 N CLARENDON AVE,Margate City,NJ,39.33355502,-74.49664974,RES1,3001,,17,NE,1930,1930,3102,2,1,1341.383042,1341.383042,3505,NO,24.9,38.43,3,-2.87,6106,113.501019,123.30453,133.011455,139.585241,I,Above,Gable,0,5701,,31.66440092,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23256,NJBF000055020,103 N HARDING AVE,Margate City,NJ,39.324912,-74.5133185,RES1,3001,,47,NE,1948,1948,3102,2,2,886.7284607,886.7284607,3505,NO,36.99,44.41,3,3.2,6106,113.259503,123.108081,132.799919,139.36106,I,Above,Gable,0,5701,,40.70001296,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23257,NJBF000058481,405 N LANCASTER AVE,Margate City,NJ,39.33239248,-74.50937837,RES1,3001,,17,NE,1965,1965,3102,2,1,2681.339737,2681.339737,3505,NO,25.95,32.54,3,-0.15,6106,113.23685,123.092293,132.788966,139.342156,I,Above,Gable,0,5701,,29.24329901,0,0.1,,,,1,1,,0.03,nav,1,1965,2,, 23258,NJBF000058546,407 N LANCASTER AVE,Margate City,NJ,39.33249769,-74.50951794,RES1,3001,,17,NE,1964,1964,3102,2,1,1663.772197,1663.772197,3505,NO,40.04,53.46,3,4.62,6106,113.232247,123.088618,132.785216,139.337828,I,Above,Flat,0,5701,,46.74787073,0,0,,,,1,1,,0.03,nav,1,1964,2,, 23259,NJBF000056983,21 S FRANKLIN AVE,Margate City,NJ,39.32967564,-74.49752277,COM1,3001,,21,ME,1990,1990,3401,2,1,1686.305625,1686.305625,3507,NO,26.66,41.58,1,-0.55,6106,113.536676,123.332755,133.037974,139.621125,I,Above,Hip,0,NaN,,34.12077144,0,0,,,,1,1,,0.03,nav,1,1990,2,, 23260,NJBF000057016,14 S ESSEX AVE,Margate City,NJ,39.3297405,-74.4973495,COM1,3001,29,43,ME,1952,1952,3401,2,1,880.2861145,880.2861145,3507,NO,26.85,39.16,1,-0.13,6106,113.539589,123.335114,133.040502,139.623821,I,Above,Gable,0,NaN,,33.00340901,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 23261,NJBF000059282,4 S COLMAR CIRCLE,Margate City,NJ,39.33393349,-74.50393462,RES1,3001,,17,NE,1954,1954,3101,2,1,1432.945563,1432.945563,3505,NO,27.14,41.15,3,4.74,6106,113.334975,123.171158,132.8721,139.431769,I,Above,Gable,0,5701,,34.14272203,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 23262,NJBF000054724,201C N JEFFERSON AVE,Margate City,NJ,39.3241654,-74.51806122,RES1,3001,,19,NE,2001,2001,3102,2,1,1027.067874,1027.067874,3507,NO,34.99,48.35,1,1.25,6106,113.167112,123.033256,132.721994,139.274115,I,Above,Hip,0,5701,,41.67186329,0,0,,,,1,1,,0.03,nav,1,2001,2,, 23263,NJBF000055645,105 N SUMNER AVE,Margate City,NJ,39.32663821,-74.51051121,RES1,3001,,20,NE,2013,2013,3102,3,1,1961.397017,1961.397017,3505,NO,38.33,46.19,3,0.25,6106,113.295439,123.13776,132.83207,139.396003,I,Above,Gable,0,5701,,42.26043604,0,0,,,,1,1,,0.03,nav,1,2013,3,, 23264,NJBF000056122,3 S JEROME AVE,Margate City,NJ,39.3277705,-74.5028105,RES1,3001,,20,NE,2012,2012,3102,3,1,1156.50939,1156.50939,3505,NO,55.09,63.37,3,1.43,6106,113.447871,123.260798,132.961077,139.53831,I,Above,Flat,0,5701,,59.23393146,0,0,,,,1,1,,0.03,nav,1,2012,3,, 23265,NJBF000057087,8505 MONMOUTH AVE,Margate City,NJ,39.3298949,-74.50762433,RES1,3001,,17,NE,1953,1953,3101,1,1,1359.729153,1359.729153,3505,NO,18.9,33.84,3,0.79,6106,113.31137,123.151598,132.848923,139.412019,I,Above,Hip,0,5701,,26.37263229,0,0,,,,1,1,,0.03,nav,1,1953,1,, 23266,NJBF000053569,12 S MADISON AVE,Margate City,NJ,39.32044054,-74.51628614,RES1,3001,,20,NE,1986,1986,3102,2,1,856.3348811,856.3348811,3507,NO,30.96,45.83,1,1.59,6106,113.2619,123.107437,132.795362,139.357171,I,Above,Flat,0,5701,,38.3972385,0,0,,,,1,1,,0.03,nav,1,1986,2,, 23267,NJBF000059891,45 SEASIDE COURT,Margate City,NJ,39.33503222,-74.50937579,RES1,3001,,19,NE,1998,1998,3101,2,1,2496.45342,2496.45342,3505,NO,33,43.57,3,4.63,6106,113.199312,123.062488,132.759575,139.305224,I,Above,Hip,0,5701,,38.28347869,0,0,,,,1,1,,0.03,nav,1,1998,2,, 23268,NJBF000056960,15 N HANOVER AVE,Margate City,NJ,39.32962006,-74.50233137,RES1,3001,,18,NE,1925,1925,3102,2,1,2457.751504,2457.751504,3505,NO,41.28,55.51,3,5.73,6106,113.431731,123.24828,132.949511,139.523789,I,Above,Gable,0,5701,,48.39537573,0,0,,,,1,1,,0.03,nav,1,1925,2,, 23269,NJBF000062065,8203 LAGOON DRIVE,Margate City,NJ,39.33873696,-74.5110435,RES1,3001,,19,NE,1974,1974,3102,3,1,2162.22542,2162.22542,3505,NO,39.38,49.12,3,6.82,6106,113.110427,122.991307,132.687475,139.217835,I,Above,Gable,0,5701,,44.25067975,0,0,,,,1,1,,0.03,nav,1,1974,3,, 23270,NJBF000061278,221 N BELMONT DR,Margate City,NJ,39.33736158,-74.49820375,RES1,3001,,17,NE,1950,1950,3103,1,1,2135.177323,2135.177323,3505,NO,18.93,28.39,3,6.54,6106,113.413714,123.234273,132.940366,139.497953,I,Above,Hip,0,5701,,23.66152486,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23271,NJBF000055551,8703 VENTNOR AVE,Margate City,NJ,39.32639117,-74.50733203,RES1,3001,,19,NE,1925,1925,3102,3,1,577.0259036,577.0259036,3505,NO,61.02,72.85,3,4.51,6106,113.36873,123.196645,132.893058,139.463957,I,Above,Hip,0,5701,,66.93265183,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 23272,NJBF000055510,8703 VENTNOR AVE,Margate City,NJ,39.32628329,-74.50732684,RES1,3001,,19,NE,1925,1925,3102,3,1,2087.965621,2087.965621,3505,NO,48.26,59.65,3,-2.97,6106,113.37042,123.197966,132.894343,139.465443,I,Above,Gable,0,5701,,53.95274149,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 23273,NJBF000057767,214 N JEROME AVE,Margate City,NJ,39.33112976,-74.50697566,RES1,3001,,18,NE,1950,1950,3102,2,1,1301.347336,1301.347336,3505,NO,39.81,51.71,3,3.72,6106,113.307848,123.149037,132.84714,139.408569,I,Above,Hip,0,5701,,45.76154051,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23274,NJBF000057906,410 N NASSAU AVE,Margate City,NJ,39.33136708,-74.51091294,RES1,3001,,20,NE,1995,1995,3102,2,1,2170.06556,2170.06556,3505,NO,31.84,37.75,3,-2.23,6106,113.217773,123.076803,132.772222,139.32484,I,Above,Hip,0,5701,,34.79060451,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 23275,NJBF000057242,7 N GRANVILLE AVE,Margate City,NJ,39.33021395,-74.50044695,RES1,3001,,17,NE,1920,1920,3102,2,1,1143.800193,1143.800193,3505,NO,39.51,45.93,3,5.1,6106,113.464669,123.274896,132.977811,139.55429,I,Above,Hip,0,5701,,42.71889355,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23276,NJBF000056553,8211 VENTNOR AVE,Margate City,NJ,39.32873612,-74.50234545,RES1,3001,,17,NE,1945,1945,3101,1,1,2622.302438,2622.302438,3505,NO,18.14,31.99,3,1.66,6106,113.444137,123.258053,132.95901,139.535196,I,Above,Hip,0,5701,,25.06517928,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 23277,NJBF000061240,3 BAYSIDE COURT,Margate City,NJ,39.33729348,-74.50963075,RES1,3001,,18,NE,1989,1989,3102,2,1,1890.22693,1890.22693,3505,NO,35.09,43.77,3,3.08,6106,113.161852,123.032513,132.729613,139.267599,I,Above,Hip,0,5701,,39.4319103,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 23278,NJBF000057130,116 N JEROME AVE,Margate City,NJ,39.32998817,-74.50591651,RES1,3001,,17,NE,1954,1954,3102,2,1,3390.372005,3390.372005,3505,NO,25.58,36.4,3,-1.6,6106,113.34757,123.180703,132.879292,139.445647,I,Above,Hip,0,5701,,30.98879794,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 23279,NJBF000057194,,Margate City,NJ,39.3301275,-74.5062625,RES1,3001,,NaN,NE,1952,0,3102,2,1,692.7922004,692.7922004,3505,NO,31.82,44.62,3,5.4,6106,113.337943,123.173,132.871372,139.436698,I,Above,Gable,0,5701,,38.22186063,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23280,NJBF000058582,31 N ESSEX AVE,Margate City,NJ,39.33255645,-74.49870137,RES1,3001,,17,NE,1950,1950,3102,1,1,1164.720379,1164.720379,3505,NO,18.8,28.26,3,7.83,6106,113.469857,123.279395,132.984339,139.557742,I,Above,Gable,0,5701,,23.52821243,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23281,NJBF000056221,EXETER & BEACH,Margate City,NJ,39.32798973,-74.49566051,RES1,3001,,NaN,NE,1969,0,3102,1,1,3315.506118,3315.506118,3505,NO,26.01,39.11,3,8.67,6102,113.601714,123.384796,133.091101,139.681058,I,Above,Flat,0,5701,,32.56042479,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23282,NJBF000061015,64 BAYSIDE COURT,Margate City,NJ,39.33691651,-74.51016073,RES1,3001,,19,NE,1988,1988,3102,2,1,1899.145042,1899.145042,3505,NO,29.97,42.32,3,7.63,6106,113.155396,123.027366,132.724078,139.262233,I,Above,Gable,0,5701,,36.14439987,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 23283,NJBF000058618,415 N MANSFIELD AVE,Margate City,NJ,39.33262188,-74.51063593,RES1,3001,,17,NE,1958,1958,3102,1,1,2008.351361,2008.351361,3505,NO,13.51,21.33,3,-2.23,6106,113.205834,123.067463,132.763323,139.313251,I,Above,Gable,0,5701,,17.42379522,0,0,,,,1,1,,0.03,nav,1,1958,1,, 23284,NJBF000060183,303 N DOUGLAS AVE,Margate City,NJ,39.33554819,-74.50092883,RES1,3001,,17,NE,1962,1962,3102,2,1,2303.198474,2303.198474,3505,NO,35.22,47.5,3,-0.17,6106,113.378672,123.206253,132.909838,139.469736,I,Above,Gable,0,5701,,41.35863012,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 23285,NJBF000056911,120 N LANCASTER AVE,Margate City,NJ,39.32952267,-74.50729851,RES1,3001,,17,NE,1940,1940,3102,2,1,2085.080896,2085.080896,3505,NO,24.07,29.15,3,0.37,6106,113.32389,123.161565,132.859019,139.423638,I,Above,Gable,0,5701,,26.61280183,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 23286,NJBF000060664,26 W GILMAR CIRCLE,Margate City,NJ,39.33636756,-74.5074118,RES1,3001,,17,NE,1965,1965,3101,1,1,1881.438156,1881.438156,3505,NO,15.71,25.6,3,-2.89,6106,113.223899,123.082186,132.780808,139.326156,I,Above,Gable,0,5701,,20.65217609,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 23287,NJBF000055689,102 N RUMSON AVE,Margate City,NJ,39.32674457,-74.51023998,RES1,3001,,18,NE,1950,1950,3102,2,1,2962.255144,2962.255144,3505,NO,33.26,46.18,3,3.45,6106,113.299806,123.141315,132.835845,139.40014,I,Above,Hip,0,5701,,39.71968256,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23288,NJBF000058423,34 N ESSEX AVE,Margate City,NJ,39.3322795,-74.498898,RES1,3001,,17,NE,1948,1948,3102,1,1,951.8519927,951.8519927,3505,NO,18.41,28.22,3,0.45,6106,113.469429,123.279024,132.98374,139.557604,I,Above,Gable,0,5701,,23.31511532,0,0,,,,1,1,,0.03,nav,1,1948,1,, 23289,NJBF000059231,8 N FREDERICKSBURG AVE,Margate City,NJ,39.33381888,-74.49355913,RES1,3001,,18,NE,1929,1929,3102,2,1,1436.141243,1436.141243,3505,NO,21.15,27.04,3,-0.65,6106,113.565487,123.356431,133.066207,139.643896,I,Above,Hip,0,5701,,24.09637641,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 23290,NJBF000059185,6 N FREDERICKSBURG AVE,Margate City,NJ,39.33372939,-74.49349347,RES1,3001,,18,NE,1920,1920,3102,2,1,1346.419895,1346.419895,3505,NO,35.52,49.48,3,-1.44,6106,113.568199,123.358613,133.068432,139.646542,I,Above,Hip,0,5701,,42.50003131,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23291,NJBF000063194,7609 BURK AVE,Margate City,NJ,39.3411025,-74.50434844,RES1,3001,,18,NE,1984,1984,3102,2,1,2133.612035,2133.612035,3505,NO,26.95,40.5,3,1.08,6106,113.226288,123.08345,132.78451,139.318212,I,Above,Gable,0,5701,,33.72502277,0,0,,,,1,1,,0.03,nav,1,1984,2,, 23292,NJBF000057404,8 N FRONTENAC AVE,Margate City,NJ,39.33051687,-74.49965118,RES1,3001,,18,NE,1920,1920,3102,2,1,1375.120952,1375.120952,3505,NO,26.74,41.45,3,5.26,6106,113.477862,123.285564,132.989219,139.566446,I,Above,Hip,0,5701,,34.09248547,0,0,,,,1,1,,0.03,nav,1,1920,2,, 23293,NJBF000056837,416 N UNION AVE,Margate City,NJ,39.32936096,-74.51546407,RES1,3001,,17,NE,1955,1955,3101,1,1,1170.960162,1170.960162,3505,NO,23.36,31.75,3,7.8,6106,113.146889,123.019369,132.71143,139.25888,I,Above,Gable,0,5701,,27.55369795,0,0,,,,1,1,,0.03,nav,1,1955,1,, 23294,NJBF000057092,205 N MANSFIELD AVE,Margate City,NJ,39.32990739,-74.5080322,RES1,3001,,17,NE,1960,1960,3102,2,1,1727.200829,1727.200829,3505,NO,28.1,35.38,3,5.08,6106,113.302225,123.144256,132.841294,139.403521,I,Above,Hip,0,5701,,31.7421975,0,0,,,,1,1,,0.03,nav,1,1960,2,, 23295,NJBF000057817,207 N JEROME AVE,Margate City,NJ,39.33122389,-74.50634118,RES1,3001,,17,NE,1955,1955,3102,2,1,1549.459708,1549.459708,3505,NO,33.99,42.48,3,3.71,6106,113.32048,123.159197,132.857785,139.420264,I,Above,Gable,0,5701,,38.23504813,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 23296,NJBF000061150,416 N ESSEX AVE,Margate City,NJ,39.33714368,-74.50382513,RES1,3001,,17,NE,1994,1952,3102,2,1,1717.437148,1717.437148,3505,NO,36.52,46.15,3,5.5,6106,113.292402,123.137003,132.83841,139.387752,I,Above,Gable,0,5701,,41.33544911,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 23297,NJBF000055654,5 N PEMBROKE AVE,Margate City,NJ,39.32667,-74.5077135,RES1,3001,,18,NE,1930,1930,3102,2,1,1358.255463,1358.255463,3505,NO,26.72,37.92,3,-1.23,6106,113.356295,123.186739,132.882984,139.45261,I,Above,Gable,0,5701,,32.32381935,0,0,,,,1,1,,0.03,nav,1,1930,2,, 23298,NJBF000061843,2 BAYCREST DRIVE,Margate City,NJ,39.33835616,-74.50879859,RES1,3001,,18,NE,1978,1978,3102,2,1,1420.591595,1420.591595,3505,NO,33.05,47.92,3,-1.47,6106,113.165439,123.035297,132.733025,139.26905,I,Above,Gable,0,5701,,40.48392959,0,0,,,,1,1,,0.03,nav,1,1978,2,, 23299,NJBF000062666,609 N DOUGLAS AVE,Margate City,NJ,39.33994923,-74.50513935,RES1,3001,,18,NE,1965,1965,3102,2,1,1652.528576,1652.528576,3505,NO,37.55,47.89,3,1.02,6106,113.224527,123.082298,132.782765,139.319624,I,Above,Flat,0,5701,,42.71976836,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 23300,NJBF000056831,204 N NASSAU AVE,Margate City,NJ,39.329353,-74.50899935,RES1,3001,,17,NE,1972,1972,3101,1,1,1731.016126,1731.016126,3505,NO,19.35,25.48,3,0.23,6106,113.288988,123.133478,132.829687,139.391173,I,Above,Gable,0,5701,,22.41549659,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 23301,NJBF000060044,404 N HUNTINGTON AVE,Margate City,NJ,39.33531095,-74.50735324,RES1,3001,,17,NE,1963,1963,3101,1,1,1621.733726,1621.733726,3505,NO,20.59,32.91,3,1.12,6110,113.240062,123.095128,132.793689,139.342525,I,Above,Gable,0,5701,,26.75113177,0,0,,,,1,1,,0.35,nav,1,1963,1,, 23302,NJBF000055755,3 DOLPHIN DR,Margate City,NJ,39.32690223,-74.50016881,RES1,3001,,18,NE,1959,1959,3102,2,1,2021.961548,2021.961548,3505,NO,39.98,54.95,3,6.48,6106,113.518407,123.317348,133.019435,139.603194,I,Above,Hip,0,5701,,47.46191157,0,0.2,,,,1,1,,0.03,nav,1,1959,2,, 23303,NJBF000060240,314 N ESSEX AVE,Margate City,NJ,39.33563833,-74.50240905,RES1,3001,,17,NE,1956,1956,3102,2,1,2184.374541,2184.374541,3505,NO,34.01,45.25,3,1.45,6106,113.344713,123.179006,132.881395,139.438413,I,Above,Hip,0,5701,,39.62813334,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 23304,NJBF000062732,8107 BAYSHORE DR,Margate City,NJ,39.34010406,-74.51135863,RES1,3001,,20,NE,1986,1986,3102,2,1,3327.257528,3327.257528,3505,NO,36.39,44.09,3,4.73,6106,113.084453,122.970385,132.666317,139.19133,I,Above,Hip,0,5701,,40.23663244,0,0,,,,1,1,,0.03,nav,1,1986,2,, 23305,NJBF000056281,17 S HUNTINGTON AVE,Margate City,NJ,39.32812062,-74.50015649,RES1,3001,,20,NE,1982,1982,3102,2,1,1451.295036,1451.295036,3505,NO,37.57,51.34,3,5.11,6106,113.501093,123.303745,133.006266,139.587846,I,Above,Hip,0,5701,,44.45876571,0,0,,,,1,1,,0.03,nav,1,1982,2,, 23306,NJBF000061244,410 N DELAVAN AVE,Margate City,NJ,39.33729688,-74.50225716,RES1,3001,,17,NE,1969,1952,3102,1,1,2243.963216,2243.963216,3505,NO,13.77,25.34,3,2.03,6106,113.324966,123.163085,132.865758,139.417244,I,Above,Hip,0,5701,,19.55632071,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 23307,NJBF000061327,412 N DELAVAN AVE,Margate City,NJ,39.33744684,-74.50239616,RES1,3001,,17,NE,1969,1952,3102,1,1,1781.915237,1781.915237,3505,NO,10.54,16.47,3,-2.03,6106,113.31981,123.158939,132.86151,139.41222,I,Above,Gable,0,5701,,13.50488969,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23308,NJBF000054496,102 S RUMSON AVE,Margate City,NJ,39.32353945,-74.50719155,RES1,3001,,19,NE,1932,1932,3102,2,1,1919.599056,1919.599056,3505,NO,24.36,39.34,3,-0.12,6106,113.413759,123.231728,132.927072,139.50273,I,Above,Hip,0,5701,,31.84835589,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 23309,NJBF000056151,104 N OSBORNE AVE,Margate City,NJ,39.32782467,-74.50849,RES1,3001,,17,NE,1925,1925,3102,2,1,1514.759406,1514.759406,3505,NO,32.4,38.58,3,4.5,6106,113.322383,123.159858,132.855955,139.421764,I,Above,Gable,0,5701,,35.49014717,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23310,NJBF000057707,302 N LANCASTER AVE,Margate City,NJ,39.33102471,-74.50872237,RES1,3001,,17,NE,1959,1959,3102,2,1,2561.595596,2561.595596,3505,NO,32.66,44.23,3,3.89,6106,113.270923,123.119377,132.816212,139.374308,I,Above,Hip,0,5701,,38.44483091,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 23311,NJBF000063824,7511 BAYSHORE DR,Margate City,NJ,39.3427956,-74.50399184,RES1,3001,,19,NE,1985,1985,3102,2,1,3488.422048,3488.422048,3505,NO,37.35,51.89,3,5.43,6106,113.211191,123.070891,132.772132,139.299576,I,Above,Hip,0,5701,,44.6180737,0,0,,,,1,1,,0.03,nav,1,1985,2,, 23312,NJBF000057830,2 S CLERMONT AVE,Margate City,NJ,39.33124215,-74.49586646,RES3C,3001,,21,E,2000,2000,3303,3,1,4105.937374,4105.937374,3507,NO,38.03,47.05,1,1.49,6106,113.550884,123.344455,133.051554,139.63371,I,Above,Flat,0,NaN,,42.54230729,0,0,,,,1,1,,0.03,nav,1,2000,3,, 23313,NJBF000056845,26 N JASPER AVE,Margate City,NJ,39.32938325,-74.50424138,RES1,3001,,17,NE,1927,1927,3102,2,1,1575.043792,1575.043792,3505,NO,43.64,54.8,3,6.59,6106,113.39314,123.217191,132.91687,139.487954,I,Above,Hip,0,5701,,49.21866652,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 23314,NJBF000056857,118 N LANCASTER AVE,Margate City,NJ,39.32941343,-74.50716427,RES1,3001,,NaN,NE,1969,0,3101,1,1,1242.604313,1242.604313,3505,NO,11.2,17.95,3,-0.1,6106,113.328448,123.165199,132.86272,139.427863,I,Above,Hip,0,5701,,14.57776684,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23315,NJBF000054993,105 S OSBORNE AVE,Margate City,NJ,39.32483189,-74.50503153,RES1,3001,,20,NE,2013,2013,3103,3,1,1930.324885,1930.324885,3505,NO,49.31,56.91,3,-1.64,6106,113.441967,123.255027,132.952506,139.530436,I,Above,Hip,0,5701,,53.11162821,0,0,,,,1,1,,0.03,nav,1,2013,3,, 23316,NJBF000055471,112 S IROQUOIS AVE,Margate City,NJ,39.32618748,-74.50056768,RES1,3001,,20,NE,1965,1965,3102,3,1,2354.538136,2354.538136,3505,NO,65.36,71.97,3,7.64,6106,113.520017,123.31842,133.019914,139.604092,I,Above,Flat,0,5701,,68.66712836,0,0,,,,1,1,,0.03,nav,1,1965,3,, 23317,NJBF000056660,108 S DOUGLAS AVE,Margate City,NJ,39.32899076,-74.49551996,RES1,3001,,21,NE,1925,1925,3102,2,1,2184.259597,2184.259597,3505,NO,27.62,39.96,3,5.4,6106,113.590493,123.375979,133.08274,139.67099,I,Above,Hip,0,5701,,33.78662097,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23318,NJBF000059826,29 N COLMAR CIRCLE,Margate City,NJ,39.334913,-74.5057855,RES1,3001,,17,NE,1951,1951,3101,1,1,1209.648824,1209.648824,3505,NO,26.71,34.86,3,7.69,6110,113.280285,123.127346,132.827017,139.380139,I,Above,Hip,0,5701,,30.78754003,0,0,,,,1,1,,0.35,nav,1,1951,1,, 23319,NJBF000058226,505 N PEMBROKE AVE,Margate City,NJ,39.33192903,-74.51280218,RES1,3001,,17,NE,1963,1963,3102,2,1,5560.734775,5560.734775,3505,NO,28.16,40.62,3,2.56,6102,113.168087,123.037079,132.731389,139.278491,I,Above,Gable,0,5701,,34.38755853,0,1.2,,,,1,1,,0.03,nav,1,1963,2,, 23320,NJBF000056361,8506 WINCHESTER AVE,Margate City,NJ,39.3283101,-74.50651682,RES1,3001,,19,NE,1935,1935,3102,3,1,2207.713967,2207.713967,3505,NO,39.18,52.22,3,-2.52,6106,113.358641,123.189166,132.886824,139.455668,I,Above,Hip,0,5701,,45.69889407,0,0,,,,1,1,,0.03,nav,1,1935,3,, 23321,NJBF000061272,17 N GILMAR CIRCLE,Margate City,NJ,39.337354,-74.5069215,RES1,3001,,17,NE,1967,1967,3101,2,1,1557.776225,1557.776225,3505,NO,26.35,36.11,3,1.41,6106,113.22095,123.079779,132.778832,139.321831,I,Above,Hip,0,5701,,31.23304615,0,0,,,,1,1,,0.03,nav,1,1967,2,, 23322,NJBF000053576,9415-19 PACIFIC AVE,Margate City,NJ,39.32045987,-74.51433363,RES3C,3001,,21,ME,1957,1957,3301,1,1,4862.926408,4862.926408,3505,NO,16.96,24.49,3,4.13,6106,113.30404,123.141496,132.830593,139.396357,I,Above,Flat,0,NaN,,20.72489129,0,0,,,,1,1,,0.03,nav,1,1957,1,, 23323,NJBF000055650,8 DOLPHIN DR,Margate City,NJ,39.32666026,-74.49980749,RES1,3001,,19,NE,1962,1962,3102,2,1,2066.580954,2066.580954,3505,NO,38.49,51.75,3,1.38,6106,113.529854,123.326498,133.028793,139.613609,I,Above,Gable,0,5701,,45.11765943,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 23324,NJBF000061232,601 N HUNTINGTON AVE,Margate City,NJ,39.3372797,-74.50867374,RES1,3001,,18,NE,1974,1974,3102,2,1,2098.908984,2098.908984,3505,NO,37.14,45.97,3,0.88,6106,113.183212,123.049594,132.747369,139.287273,I,Above,Gable,0,5701,,41.55549792,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 23325,NJBF000056958,110 S CLERMONT AVE,Margate City,NJ,39.329617,-74.4945645,RES1,3001,,16,NE,1948,1948,3102,1,1,1613.675148,1613.675148,3505,NO,25.12,34.25,3,8.07,6106,113.602589,123.385856,133.093666,139.68222,I,Above,Flat,0,5701,,29.68373334,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 23326,NJBF000062776,613 N DOUGLAS AVE,Margate City,NJ,39.34020643,-74.50539534,RES1,3001,,19,NE,1965,1965,3102,2,1,1541.441993,1541.441993,3505,NO,40.28,52.4,3,5.58,6106,113.215323,123.074886,132.775152,139.310611,I,Above,Hip,0,5701,,46.33779294,0,0,,,,1,1,,0.03,nav,1,1965,2,, 23327,NJBF000057855,104 S FREDERICKSBURG AVE,Margate City,NJ,39.33127503,-74.49150333,RES1,3001,,21,NE,1925,1925,3102,3,1,1124.415414,1124.415414,3505,NO,43.81,52.73,3,1.25,6106,113.646457,123.421493,133.132608,139.721948,I,Above,Hip,0,5701,,48.26955127,0,0,,,,1,1,,0.03,nav,1,1925,3,, 23328,NJBF000056383,8401 VENTNOR AVE,Margate City,NJ,39.32836221,-74.5033211,REL1,3004,,NaN,ME,1969,0,3401,2,1,7367.316632,7367.316632,3507,NO,29.75,40.17,1,1.64,6106,113.428088,123.245042,132.945117,139.520189,I,Above,Flat,0,5701,,34.96102845,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23329,NJBF000058521,7509 VENTNOR AVE,Margate City,NJ,39.33246102,-74.49454541,RES1,3001,,19,NE,1925,1925,3102,2,1,1690.198503,1690.198503,3505,NO,38.18,45.57,3,8.32,6106,113.562783,123.354172,133.062754,139.643528,I,Above,Hip,0,5701,,41.87597041,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23330,NJBF000057878,13 N EXETER AVE,Margate City,NJ,39.33130412,-74.49835079,RES1,3001,,20,NE,2005,2005,3102,2,1,1116.227258,1116.227258,3505,NO,31.06,41.92,3,5.25,6106,113.495288,123.299708,133.004661,139.582238,I,Above,Flat,0,5701,,36.49400215,0,0,,,,1,1,,0.03,nav,1,2005,2,, 23331,NJBF000060673,401 N DOUGLAS AVE,Margate City,NJ,39.33638335,-74.50169398,RES1,3001,,18,NE,1963,1963,3102,2,1,1948.084483,1948.084483,3505,NO,22.76,35.28,3,1.27,6106,113.35012,123.183317,132.886369,139.442063,I,Above,Hip,0,5701,,29.02048641,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 23332,NJBF000058386,8501 FREMONT AVE,Margate City,NJ,39.33222541,-74.508908,RES1,3001,,17,NE,1962,1962,3102,2,1,2044.889949,2044.889949,3505,NO,31.21,45.34,3,2.86,6106,113.249598,123.102489,132.799455,139.354069,I,Above,Gable,0,5701,,38.27519328,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 23333,NJBF000057086,430 N THURLOW AVE,Margate City,NJ,39.329892,-74.5150965,RES1,3001,,18,NE,1951,1951,3102,2,1,1500.133644,1500.133644,3505,NO,35.37,45.67,3,5.99,6106,113.147204,123.019797,132.712219,139.259265,I,Above,Hip,0,5701,,40.52396436,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 23334,NJBF000057724,12 S BRUNSWICK AVE,Margate City,NJ,39.33105016,-74.49424835,RES1,3001,,18,NE,1952,1952,3102,2,1,1483.48191,1483.48191,3505,NO,45.94,54.36,3,7.28,6106,113.589218,123.375312,133.083816,139.669283,I,Above,Flat,0,5701,,50.15204469,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23335,NJBF000057689,111 N HANOVER AVE,Margate City,NJ,39.331,-74.50363157,RES1,3001,,17,NE,1952,1952,3102,2,1,1839.347811,1839.347811,3507,NO,28.38,33.43,1,-0.45,6106,113.383332,123.209641,132.91022,139.478649,I,Above,Hip,0,5701,,30.90499525,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23336,NJBF000058240,19 S ANDOVER AVE,Margate City,NJ,39.33194969,-74.49229605,RES1,3001,,19,NE,1925,1925,3102,2,1,1575.919929,1575.919929,3505,NO,36.7,46.89,3,-2.18,6106,113.619503,123.399831,133.110372,139.696364,I,Above,Flat,0,5701,,41.79233893,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23337,NJBF000057574,7811 VENTNOR AVE,Margate City,NJ,39.33080926,-74.49788868,COM1,3001,,17,ME,1925,1925,3401,2,1,869.5115053,869.5115053,3507,NO,37.71,48.51,1,0.11,6106,113.512489,123.313478,133.018699,139.598419,I,Above,Hip,0,NaN,,43.11273675,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23338,NJBF000055503,9211 AMHERST AVE,Margate City,NJ,39.32626713,-74.51662316,COM8,3001,,NaN,ME,1955,1955,3401,2,1,1642.342245,1642.342245,3507,NO,35.59,48.23,1,2.28,6106,113.167129,123.034371,132.724759,139.276171,I,Above,Flat,0,NaN,,41.90915945,0,0,,,,1,1,,0.03,nav,1,1955,2,, 23339,NJBF000058101,1 N DELAVAN AVE,Margate City,NJ,39.33172117,-74.49654905,RES1,3001,,17,NE,1952,1952,3102,2,1,786.7286776,786.7286776,3505,NO,31.37,42.25,3,0.39,6106,113.529069,123.326949,133.033565,139.613186,I,Above,Flat,0,5701,,36.81304454,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23340,NJBF000054244,107 S THURLOW AVE,Margate City,NJ,39.32283473,-74.50778229,RES1,3001,,20,NE,1960,1960,3102,2,1,2149.571236,2149.571236,3505,NO,26.47,40.25,3,5.39,6106,113.411295,123.229403,132.924005,139.499478,I,Above,Gable,0,5701,,33.35957457,0,1,,,,1,1,,0.03,nav,1,1960,2,, 23341,NJBF000055824,102 N QUINCY AVE,Margate City,NJ,39.32706446,-74.50958217,RES1,3001,,17,NE,1925,1925,3102,2,1,964.4942436,964.4942436,3505,NO,32.08,39.22,3,6.57,6106,113.309551,123.149274,132.844361,139.409415,I,Above,Gable,0,5701,,35.64930345,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23342,NJBF000057549,119 N JASPER AVE,Margate City,NJ,39.33076609,-74.50506392,RES1,3001,,45,NE,1925,1925,3102,2,2,1387.730036,1387.730036,3507,NO,29.21,34.4,1,2.26,6106,113.355158,123.186963,132.88639,139.45258,I,Above,Gable,0,5701,,31.8051994,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23343,NJBF000059253,29 N BRUNSWICK AVE,Margate City,NJ,39.3338639,-74.49621489,RES1,3001,,18,NE,1958,1958,3102,1,1,1189.266575,1189.266575,3505,NO,9.13,15.34,3,-2.75,6106,113.506283,123.308778,133.016147,139.589603,I,Above,Gable,0,5701,,12.23313842,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 23344,NJBF000055743,5 N OSBORNE AVE,Margate City,NJ,39.3268755,-74.506996,RES1,3001,,17,NE,1925,1925,3102,2,1,2125.766746,2125.766746,3505,NO,41.43,54.71,3,8.7,6106,113.36902,123.197053,132.893882,139.464575,I,Above,Hip,0,5701,,48.06905264,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 23345,NJBF000056199,109 N PEMBROKE AVE,Margate City,NJ,39.32795501,-74.50893938,RES1,3001,,17,NE,1947,1947,3101,1,1,1228.721779,1228.721779,3505,NO,9.59,20.64,3,-1.88,6110,113.310634,123.150454,132.846281,139.410897,I,Above,Hip,0,5701,,15.11412913,0,1.1,,,,1,1,,0.35,nav,1,1947,1,, 23346,NJBF000055290,110 N VENDOME AVE,Margate City,NJ,39.325693,-74.512918,RES1,3001,,17,NE,1957,1957,3101,1,1,1079.486694,1079.486694,3505,NO,18.7,31.85,3,6.07,6106,113.256672,123.106167,132.798565,139.359167,I,Above,Gable,0,5701,,25.27501012,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 23347,NJBF000059158,7604 WINCHESTER AVE,Margate City,NJ,39.33367546,-74.49722483,RES1,3001,,17,NE,1950,1950,3102,1,1,1197.880826,1197.880826,3505,NO,16.97,27.96,3,1.83,6106,113.486654,123.292981,132.999424,139.571864,I,Above,Hip,0,5701,,22.46173521,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23348,NJBF000060151,220 N CLERMONT AVE,Margate City,NJ,39.33548852,-74.49970811,RES1,3001,,17,NE,1962,1962,3103,2,1,1419.936099,1419.936099,3505,NO,40.1,54.8,3,6.84,6106,113.406469,123.228568,132.933166,139.495325,I,Above,Gable,0,5701,,47.44895054,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 23349,NJBF000061820,618 N HUNTINGTON AVE,Margate City,NJ,39.33831037,-74.51025387,RES1,3001,,17,NE,1977,1977,3102,1,1,2412.854698,2412.854698,3505,NO,17.8,31.01,3,0.18,6106,113.133853,123.010062,132.706765,139.240129,I,Above,Gable,0,5701,,24.40418297,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 23350,NJBF000057411,5 N FRONTENAC AVE,Margate City,NJ,39.3305255,-74.4991855,RES1,3001,,17,NE,1948,1948,3102,1,1,717.9235892,717.9235892,3505,NO,10.95,20.71,3,-1.4,6106,113.487989,123.293715,132.997761,139.57583,I,Above,Hip,0,5701,,15.83346236,0,0,,,,1,1,,0.03,nav,1,1948,1,, 23351,NJBF000056318,104 S FRONTENAC AVE,Margate City,NJ,39.32820342,-74.49778799,RES1,3001,,20,NE,1928,1928,3102,3,1,2196.134425,2196.134425,3505,NO,57.98,65.13,3,4.74,6106,113.551935,123.344722,133.049252,139.635023,I,Above,Hip,0,5701,,61.55648714,0,1.1,,,,1,1,,0.03,nav,1,1928,3,, 23352,NJBF000057694,15 S CLARENDON AVE,Margate City,NJ,39.33101149,-74.49449667,RES1,3001,,21,NE,2002,2002,3102,3,1,1257.353374,1257.353374,3505,NO,41.78,49.43,3,-1.71,6106,113.584289,123.371334,133.079602,139.664753,I,Above,Gable,0,5701,,45.6033685,0,0,,,,1,1,,0.03,nav,1,2002,3,, 23353,NJBF000060004,8107 FULTON AVE,Margate City,NJ,39.33522605,-74.5064512,RES1,3001,,19,NE,2004,2004,3101,3,1,1873.852557,1873.852557,3505,NO,53.88,60.79,3,3.74,6106,113.261187,123.112049,132.811263,139.362123,I,Above,Hip,0,5701,,57.33416007,0,0,,,,1,1,,0.03,nav,1,2004,3,, 23354,NJBF000056854,8 N HUNTINGTON AVE,Margate City,NJ,39.3294108,-74.50183232,RES1,3001,,17,NE,1925,1925,3102,2,1,1330.320682,1330.320682,3505,NO,37.51,45.31,3,3.12,6106,113.445706,123.259475,132.961042,139.536751,I,Above,Flat,0,5701,,41.41357113,0,0,,,,1,1,,0.03,nav,1,1925,2,, 23355,NJBF000059452,206 N DOUGLAS AVE,Margate City,NJ,39.33427297,-74.50004028,RES1,3001,,17,NE,1950,1950,3102,2,1,1161.501665,1161.501665,3505,NO,31.96,46.55,3,2.91,6106,113.416154,123.236339,132.940479,139.506174,I,Above,Gable,0,5701,,39.25267273,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23356,NJBF000060744,53 BAYSIDE COURT,Margate City,NJ,39.33647857,-74.51084255,RES1,3001,,19,NE,1997,1997,3102,3,1,2679.078056,2679.078056,3505,NO,32.54,39.92,3,-1.55,6106,113.146469,123.020236,132.716453,139.254626,I,Above,Hip,0,5701,,36.2300991,0,0,,,,1,1,,0.03,nav,1,1997,3,, 23357,NJBF000059491,203 N DOUGLAS AVE,Margate City,NJ,39.33434852,-74.49965814,RES1,3001,,18,NE,1950,1950,3103,2,1,1109.950883,1109.950883,3505,NO,35.7,45.39,3,4.8,6106,113.423519,123.242258,132.94673,139.512838,I,Above,Flat,0,5701,,40.5463216,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23358,NJBF000057120,27 N IROQUOIS AVE,Margate City,NJ,39.32997005,-74.50348272,RES1,3001,,17,NE,1922,1922,3102,2,1,947.2436421,947.2436421,3505,NO,42.28,53.02,3,4.56,6106,113.401368,123.223939,132.924366,139.495597,I,Above,Gable,0,5701,,47.64854358,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 23359,NJBF000057163,,Margate City,NJ,39.33005789,-74.50356078,RES1,3001,,NaN,NE,1922,0,3102,2,1,1338.511613,1338.511613,3505,NO,32.02,37.61,3,8.41,6106,113.398389,123.221562,132.921953,139.492824,I,Above,Gable,0,5701,,34.81266472,0,0,,,,1,1,,0.03,nav,1,1922,2,, 23360,NJBF000054445,104 S RUMSON AVE,Margate City,NJ,39.3234263,-74.50707062,RES1,3001,,21,NE,2000,2000,3103,3,1,1640.547681,1640.547681,3505,NO,42.24,51.74,3,-0.75,6106,113.418075,123.235155,132.930534,139.506576,I,Above,Hip,0,5701,,46.99102603,0,0,,,,1,1,,0.03,nav,1,2000,3,, 23361,NJBF000060918,225 N CLARENDON AVE,Margate City,NJ,39.33675159,-74.49969742,RES1,3001,,18,NE,1948,1948,3103,1,1,1458.375841,1458.375841,3505,NO,15.22,30.02,3,4.62,6106,113.389143,123.214602,132.919354,139.476993,I,Above,Hip,0,5701,,22.62158089,0,0,,,,1,1,,0.03,nav,1,1948,1,, 23362,NJBF000055349,114 N VENDOME AVE,Margate City,NJ,39.32585677,-74.51311078,RES1,3001,,21,NE,2013,2013,3102,2,1,1467.573069,1467.573069,3505,NO,26.59,40.9,3,-1.25,6106,113.250023,123.100889,132.793229,139.353117,I,Above,Gable,0,5701,,33.74257875,0,0,,,,1,1,,0.03,nav,1,2013,2,, 23363,NJBF000060107,223 N DELAVAN AVE,Margate City,NJ,39.33541557,-74.49989878,RES1,3001,,17,NE,1950,1950,3103,1,1,911.8858371,911.8858371,3505,NO,13.26,26.36,3,1.64,6106,113.403269,123.226,132.930427,139.492522,I,Above,Hip,0,5701,,19.81117673,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23364,NJBF000057716,310 N MANSFIELD AVE,Margate City,NJ,39.33104415,-74.509652,RES1,3001,,21,NE,2013,2013,3102,2,1,1075.333022,1075.333022,3505,NO,27.66,39.69,3,4.32,6106,113.250182,123.102735,132.798932,139.355034,I,Above,Gable,0,5701,,33.67655897,0,0,,,,1,1,,0.03,nav,1,2013,2,, 23365,NJBF000058720,,Margate City,NJ,39.33280383,-74.49593212,RES1,3001,,NaN,NE,1969,0,3102,2,1,1172.290366,1172.290366,3505,NO,45.16,50.36,3,7.67,6106,113.527396,123.325707,133.033116,139.610522,I,Above,Gable,0,5701,,47.76018259,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23366,NJBF000057515,9 N FRONTENAC AVE,Margate City,NJ,39.33069616,-74.499329,RES1,3001,,18,NE,1929,1929,3102,2,1,1409.420244,1409.420244,3505,NO,41.34,50.15,3,5.37,6106,113.482399,123.289245,132.993215,139.570591,I,Above,Hip,0,5701,,45.74807277,0,0,,,,1,1,,0.03,nav,1,1929,2,, 23367,NJBF000057465,7 N FRONTENAC AVE,Margate City,NJ,39.33061485,-74.49923334,RES1,3001,,18,NE,1925,1925,3102,2,1,1240.377847,1240.377847,3505,NO,32.5,40.99,3,1.98,6106,113.485665,123.29186,132.995889,139.573647,I,Above,Hip,0,5701,,36.74648856,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23368,NJBF000061531,8105 MARSHALL AVE,Margate City,NJ,39.33780014,-74.507319,RES1,3001,,17,NE,1975,1975,3102,2,1,1910.972241,1910.972241,3505,NO,38.98,52.82,3,0.15,6106,113.205948,123.067742,132.766524,139.307256,I,Above,Gable,0,5701,,45.90222022,0,0,,,,1,1,,0.03,nav,1,1975,2,, 23369,NJBF000059760,108 N BARCLAY AVE,Margate City,NJ,39.33480676,-74.49684423,RES1,3001,,17,NE,1950,1950,3102,1,1,1417.935003,1417.935003,3505,NO,18.37,32.88,3,5.03,6106,113.479225,123.287033,132.994007,139.563184,I,Above,Hip,0,5701,,25.62656462,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23370,NJBF000053206,9511 BEACH,Margate City,NJ,39.3190705,-74.51414,RES3E,3001,,39,ME,2004,2004,3301,3,1,1060.415659,1060.415659,3507,NO,39.29,49.2,1,2.47,6106,113.32928,123.160975,132.849413,139.417266,I,Above,Flat,0,5701,,44.24503332,0,0,,,,1,1,,0.03,nav,1,2004,3,, 23371,NJBF000053167,9517 BEACH,Margate City,NJ,39.31895462,-74.51434189,RES3E,3001,,39,ME,2004,2004,3301,3,1,1086.845799,1086.845799,3507,NO,55,68.59,1,2.5,6106,113.326654,123.158772,132.847019,139.414613,I,Above,Flat,0,5701,,61.79491947,0,0,,,,1,1,,0.03,nav,1,2004,3,, 23372,NJBF000053237,120 S JEFFERSON AVE,Margate City,NJ,39.31921651,-74.51393575,RES3E,3001,,22,ME,1988,1988,3301,1,1,6692.001406,6692.001406,3507,NO,14.35,23.84,1,1.12,6106,113.331496,123.162866,132.851514,139.419594,I,Above,Flat,0,5701,,19.09552848,0,0,,,,1,1,,0.03,nav,1,1988,1,, 23373,NJBF000053189,9513 BEACH,Margate City,NJ,39.3190315,-74.514208,RES3E,3001,,39,ME,2004,2004,3301,3,1,1046.818864,1046.818864,3507,NO,51.36,59.06,1,2.66,6106,113.328395,123.160232,132.848607,139.416372,I,Above,Flat,0,5701,,55.21264039,0,0,,,,1,1,,0.03,nav,1,2004,3,, 23374,NJBF000061142,41 BAYSIDE COURT,Margate City,NJ,39.33713474,-74.51148105,RES1,3001,,19,NE,1997,1997,3102,2,1,2681.9449,2681.9449,3505,NO,32.13,44.94,3,5.97,6106,113.123132,123.001568,132.697396,139.232172,I,Above,Flat,0,5701,,38.53699738,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 23375,NJBF000053924,9606 WINCHESTER AVE,Margate City,NJ,39.32179208,-74.51773828,RES1,3001,,47,NE,1979,1979,3102,2,2,2546.791093,2546.791093,3507,NO,33.12,43.43,1,0.87,6106,113.20989,123.066318,132.754122,139.310892,I,Above,Gable,0,5701,,38.27079697,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 23376,NJBF000061418,28 BAYSIDE COURT,Margate City,NJ,39.33760458,-74.51083406,RES1,3001,,19,NE,1989,1989,3102,2,1,1888.974136,1888.974136,3505,NO,41.87,54.6,3,3.78,6106,113.130859,123.007723,132.704008,139.238569,I,Above,Hip,0,5701,,48.23315402,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 23377,NJBF000054956,102 N HARDING AVE,Margate City,NJ,39.32474192,-74.51360268,RES1,3001,,47,NE,1948,1948,3102,2,2,1241.29898,1241.29898,3505,NO,32.24,42.97,3,8.95,6106,113.2558,123.105017,132.796607,139.357437,I,Above,Flat,0,5701,,37.60284085,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23378,NJBF000055120,103 N WILSON AVE,Margate City,NJ,39.3252025,-74.512812,RES1,3001,,47,NE,1948,1948,3102,2,2,866.8472576,866.8472576,3505,NO,22.92,28.54,3,-2.6,6106,113.266247,123.113651,132.805923,139.367628,I,Above,Hip,0,5701,,25.72778982,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23379,NJBF000061374,7506 FREMONT AVE,Margate City,NJ,39.3375254,-74.49905002,RES1,3001,,17,NE,1950,1950,3103,1,1,1397.385088,1397.385088,3505,NO,25.48,36.32,3,8.82,6106,113.392753,123.21743,132.922804,139.478519,I,Above,Gable,0,5701,,30.89648093,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23380,NJBF000061128,8119 MARSHALL AVE,Margate City,NJ,39.33711203,-74.50849147,RES1,3001,,17,NE,1975,1975,3101,1,1,2036.29507,2036.29507,3505,NO,19.94,29.76,3,6.31,6106,113.189611,123.054721,132.752617,139.293434,I,Above,Hip,0,5701,,24.84950918,0,0,,,,1,1,,0.03,nav,1,1975,1,, 23381,NJBF000059263,103 N CLERMONT AVE,Margate City,NJ,39.3338839,-74.49770908,RES1,3001,,17,NE,1930,1930,3103,1,1,1079.513844,1079.513844,3505,NO,8.89,22.89,3,-1.86,6106,113.473047,123.282047,132.988106,139.559052,I,Above,Gable,0,5701,,15.88857441,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 23382,NJBF000057834,123 N IROQUOIS AVE,Margate City,NJ,39.33124463,-74.50472695,RES1,3001,,17,NE,1950,1950,3102,3,1,1304.336065,1304.336065,3507,NO,40.33,54.18,1,0.84,6106,113.355718,123.187499,132.887297,139.452949,I,Above,Hip,0,5701,,47.25763648,0,0,,,,1,1,,0.03,nav,1,1950,3,, 23383,NJBF000058280,3 N CLERMONT AVE,Margate City,NJ,39.33202513,-74.4960222,RES1,3001,,18,NE,1950,1950,3102,2,1,1196.312527,1196.312527,3505,NO,39.47,47.21,3,2.45,6106,113.536384,123.332873,133.040026,139.619671,I,Above,Hip,0,5701,,43.33545561,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23384,NJBF000061023,409 N DOUGLAS AVE,Margate City,NJ,39.3369295,-74.50220533,RES1,3001,,18,NE,1965,1965,3102,2,1,1883.540216,1883.540216,3505,NO,25.84,34.32,3,1.88,6106,113.331225,123.168133,132.870818,139.423713,I,Above,Gable,0,5701,,30.08050832,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 23385,NJBF000061093,411 N DOUGLAS AVE,Margate City,NJ,39.33704412,-74.50232888,RES1,3001,,18,NE,1965,1965,3102,2,1,1476.236997,1476.236997,3505,NO,36.9,45.24,3,6.16,6106,113.326885,123.164645,132.867239,139.419513,I,Above,Gable,0,5701,,41.07029421,0,0,,,,1,1,,0.03,nav,1,1965,2,, 23386,NJBF000059711,20 E COLMAR CIRCLE,Margate City,NJ,39.33472147,-74.50501617,RES1,3001,,17,NE,1959,1959,3101,1,1,516.9513396,516.9513396,3505,NO,16.94,28.15,3,-2.25,6106,113.299996,123.14314,132.843368,139.398562,I,Above,Gable,0,5701,,22.54748153,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 23387,NJBF000060902,401 N DELAVAN AVE,Margate City,NJ,39.3367215,-74.50116627,RES1,3001,,17,NE,1952,1952,3102,2,1,2345.120382,2345.120382,3505,NO,27.9,33.01,3,3.11,6106,113.357079,123.188879,132.892397,139.447771,I,Above,Hip,0,5701,,30.4581187,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23388,NJBF000060851,405 N DOUGLAS AVE,Margate City,NJ,39.3366465,-74.5019695,RES1,3001,,18,NE,1965,1965,3102,2,1,1360.318717,1360.318717,3505,NO,35.12,46.1,3,5.26,6106,113.340343,123.175462,132.878314,139.432608,I,Above,Gable,0,5701,,40.60997825,0,0,,,,1,1,,0.03,nav,1,1965,2,, 23389,NJBF000060941,400 N CLERMONT AVE,Margate City,NJ,39.33679384,-74.50098358,RES1,3001,,17,NE,1960,1960,3102,2,1,2670.166402,2670.166402,3505,NO,32.23,45.57,3,5.12,6106,113.360103,123.191299,132.894976,139.45039,I,Above,Hip,0,5701,,38.89752279,0,0,,,,1,1,,0.03,nav,1,1960,2,, 23390,NJBF000060554,306 N CLERMONT AVE,Margate City,NJ,39.33617647,-74.50041885,RES1,3001,,18,NE,1957,1957,3102,1,1,1925.232764,1925.232764,3505,NO,23.68,33.72,3,7.22,6106,113.381186,123.20825,132.912334,139.470895,I,Above,Gable,0,5701,,28.69831169,0,0,,,,1,1,,0.03,nav,1,1957,1,, 23391,NJBF000063239,7705 BAYSHORE DR,Margate City,NJ,39.34120137,-74.50534564,RES1,3001,,22,NE,1997,1997,3102,2,1,2937.188201,2937.188201,3505,NO,32.91,42.42,3,-0.54,6106,113.202793,123.064643,132.764915,139.29664,I,Above,Hip,0,5701,,37.66315928,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 23392,NJBF000059982,110 N BELMONT AVE,Margate City,NJ,39.33518943,-74.49644144,RES1,3001,,17,NE,1920,1920,3102,2,1,1081.860406,1081.860406,3505,NO,37.62,48.69,3,4.91,6106,113.482798,123.289903,132.997294,139.565711,I,Above,Gable,0,5701,,43.15501515,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23393,NJBF000063154,7803 BAYSHORE DR,Margate City,NJ,39.34100414,-74.50646486,RES1,3001,,20,NE,2008,2008,3102,2,1,2672.843307,2672.843307,3505,NO,38.81,50.19,3,7.65,6106,113.180654,123.047001,132.746421,139.277054,I,Above,Gable,0,5701,,44.49930255,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 23394,NJBF000057875,103 S ANDOVER AVE,Margate City,NJ,39.33129993,-74.49177304,RES1,3001,,20,NE,2012,2012,3102,3,1,1170.934527,1170.934527,3505,NO,59.76,66.17,3,4.25,6106,113.640163,123.416419,133.127285,139.716119,I,Above,Hip,0,5701,,62.96521802,0,0,,,,1,1,,0.03,nav,1,2012,3,, 23395,NJBF000054024,13 N JEFFERSON AVE,Margate City,NJ,39.32213764,-74.51601815,RES1,3001,,NaN,NE,1969,0,3102,3,1,1803.526497,1803.526497,3507,NO,53.09,66.84,1,-0.91,6106,113.242092,123.092529,132.781487,139.341406,I,Above,Hip,0,5701,,59.96073214,0,0,,,,1,1,,0.03,nav,1,1969,3,, 23396,NJBF000054049,13 N JEFFERSON AVE,Margate City,NJ,39.32221447,-74.51584712,RES1,3001,,NaN,NE,1969,0,3102,3,1,596.8503306,596.8503306,3507,NO,40.58,53.86,1,1.23,6106,113.244671,123.094656,132.783752,139.343917,I,Above,Flat,0,5701,,47.21895086,0,0,,,,1,1,,0.03,nav,1,1969,3,, 23397,NJBF000062270,3 BAYCREST COURT,Margate City,NJ,39.33912903,-74.50905179,RES1,3001,,19,NE,1977,1977,3102,2,1,2109.156394,2109.156394,3505,NO,37.05,44.73,3,0.91,6106,113.149101,123.022148,132.719704,139.252563,I,Above,Gable,0,5701,,40.8906427,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 23398,NJBF000062360,2 BAYCREST CT,Margate City,NJ,39.33928692,-74.50888054,RES1,3001,,18,NE,1978,1978,3102,2,1,1972.008638,1972.008638,3505,NO,37.07,44.11,3,5.73,6106,113.150702,123.023405,132.721082,139.253707,I,Above,Hip,0,5701,,40.59148381,0,0,,,,1,1,,0.03,nav,1,1978,2,, 23399,NJBF000057798,118 N HANOVER AVE,Margate City,NJ,39.3311825,-74.5043305,RES1,3001,,17,NE,1954,1954,3102,2,1,1232.167856,1232.167856,3507,NO,24.12,29.57,1,1.99,6106,113.365361,123.195234,132.89532,139.461917,I,Above,Gable,0,5701,,26.8415932,0,0,,,,1,1,,0.03,nav,1,1954,2,, 23400,NJBF000053214,20 S COOLIDGE AVE,Margate City,NJ,39.31912061,-74.5176844,RES1,3001,,17,NE,1922,1922,3102,2,1,871.914881,871.914881,3507,NO,36.2,46.94,1,2,6106,113.251626,123.098207,132.78459,139.345274,I,Above,Gable,0,5701,,41.5688131,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 23401,NJBF000053233,18 S COOLIDGE AVE,Margate City,NJ,39.3192039,-74.51775807,RES1,3001,,30,NE,1940,1940,3102,2,2,1425.712843,1425.712843,3507,NO,25.78,39.35,1,1.83,6106,113.248756,123.095946,132.782336,139.342758,I,Above,Gable,0,5701,,32.56321836,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23402,NJBF000057471,109 N IROQUOIS AVE,Margate City,NJ,39.33062872,-74.50409152,RES1,3001,,17,NE,1940,1940,3102,2,1,1166.243454,1166.243454,3507,NO,37,50.23,1,1.69,6106,113.378516,123.205703,132.905835,139.474288,I,Above,Hip,0,5701,,43.61557309,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 23403,NJBF000056585,8005 ATLANTIC AVE,Margate City,NJ,39.32879947,-74.49833467,COM1,3001,,NaN,ME,1980,1955,3401,2,1,6048.276999,6048.276999,3507,NO,26.46,39.25,1,-0.83,6106,113.531365,123.328292,133.03255,139.616136,I,Above,Flat,0,NaN,,32.85808107,0,0,,,,1,1,,0.03,nav,1,1980,2,, 23404,NJBF000057421,107 N IROQUOIS AVE,Margate City,NJ,39.3305385,-74.50403363,RES1,3001,,21,NE,2013,2013,3102,3,1,1374.038203,1374.038203,3507,NO,58.75,72.68,1,2.34,6106,113.381082,123.207748,132.907901,139.476689,I,Above,Hip,0,5701,,65.71529103,0,0,,,,1,1,,0.03,nav,1,2013,3,, 23405,NJBF000063647,621 N BARCLAY AVE,Margate City,NJ,39.34230002,-74.50326312,RES1,3001,,20,NE,1994,1994,3102,2,1,2680.720514,2680.720514,3505,NO,33.85,40.22,3,3.26,6106,113.234087,123.089352,132.791221,139.321749,I,Above,Hip,0,5701,,37.03419072,0,0,,,,1,1,,0.03,nav,1,1994,2,, 23406,NJBF000054149,9 N ADAMS AVE,Margate City,NJ,39.32255451,-74.51509742,RES3C,3001,,20,ME,2000,2000,3301,2,1,3926.661425,3926.661425,3505,NO,28.63,42.85,3,5.83,6106,113.255879,123.103902,132.793607,139.354835,I,Above,Hip,0,NaN,,35.73685413,0,0,,,,1,1,,0.03,nav,1,2000,2,, 23407,NJBF000060474,110 N FREDERICKSBURG AVE,Margate City,NJ,39.33604254,-74.49551427,RES1,3001,,17,NE,1950,1950,3102,1,1,1248.359889,1248.359889,3505,NO,9.07,21.26,3,-2.55,6106,113.491408,123.296798,133.005143,139.57167,I,Above,Flat,0,5701,,15.16480301,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23408,NJBF000060814,713 N JEROME AVE,Margate City,NJ,39.33657981,-74.51141451,RES1,3001,,19,NE,2006,2006,3102,3,1,1804.489462,1804.489462,3505,NO,46.55,56.36,3,7.87,6106,113.132397,123.008984,132.704824,139.241504,I,Above,Gable,0,5701,,51.45330238,0,0,,,,1,1,,0.03,nav,1,2006,3,, 23409,NJBF000053272,,Margate City,NJ,39.31934484,-74.51522399,RES3C,3001,,NaN,ME,1979,0,3301,1,1,3775.386568,3775.386568,3505,NO,19.6,32.23,3,4.36,6106,113.301587,123.138771,132.826711,139.392102,I,Above,Flat,0,NaN,,25.91120606,0,0,,,,1,1,,0.03,nav,1,1979,1,, 23410,NJBF000056666,4 N HANOVER AVE,Margate City,NJ,39.32900113,-74.5022917,RES1,3001,,18,NE,1920,1920,3102,2,1,1415.988891,1415.988891,3505,NO,23.33,30.06,3,-1.43,6106,113.441486,123.255985,132.957065,139.532789,I,Above,Hip,0,5701,,26.69420017,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23411,NJBF000053571,,Margate City,NJ,39.32044729,-74.5189132,RES1,3001,,NaN,NE,1969,0,3102,2,1,1885.929117,1885.929117,3507,NO,40.86,49.48,1,2.31,6106,113.20477,123.061269,132.747722,139.30398,I,Above,Hip,0,5701,,45.16939461,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23412,NJBF000056678,,Margate City,NJ,39.32902994,-74.49887361,RES1,3001,,NaN,NE,2017,0,3102,2,1,1419.702291,1419.702291,3505,NO,41.46,51,3,7.19,6106,113.516207,123.316135,133.020011,139.60212,I,Above,Hip,0,5701,,46.22901435,0,0,,,,1,1,,0.03,nav,1,2017,2,, 23413,NJBF000061079,8112 MARSHALL AVE,Margate City,NJ,39.33702492,-74.50791236,RES1,3001,,17,NE,1975,1975,3101,2,1,1552.519884,1552.519884,3505,NO,30.04,37.79,3,7.84,6106,113.203639,123.065948,132.764255,139.306479,I,Above,Hip,0,5701,,33.91812522,0,0,,,,1,1,,0.03,nav,1,1975,2,, 23414,NJBF000053909,24 N MADISON AVE,Margate City,NJ,39.321735,-74.5174865,RES1,3001,,17,NE,1950,1950,3102,1,1,888.3179264,888.3179264,3507,NO,14.08,20.11,1,0.95,6106,113.21621,123.071383,132.7593,139.316698,I,Above,Hip,0,5701,,17.09280811,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23415,NJBF000063757,7506 BAYSHORE DR,Margate City,NJ,39.34262444,-74.50338324,RES1,3001,,19,NE,1986,1986,3102,3,1,3361.746877,3361.746877,3505,NO,53.64,61.22,3,3.79,6106,113.22704,123.083615,132.785364,139.31439,I,Above,Gable,0,5701,,57.43152711,0,0,,,,1,1,,0.03,nav,1,1986,3,, 23416,NJBF000060575,404 N ESSEX AVE,Margate City,NJ,39.33621666,-74.50291286,RES1,3001,,17,NE,1952,1952,3102,1,1,1420.125072,1420.125072,3505,NO,14.62,28.62,3,2.66,6106,113.325485,123.16357,132.86562,139.419781,I,Above,Gable,0,5701,,21.62090769,0,0,,,,1,1,,0.03,nav,1,1952,1,, 23417,NJBF000053390,9505 ATLANTIC AVE,Margate City,NJ,39.31974708,-74.51444486,RES1,3001,,45,NE,1920,1920,3102,2,2,940.4780748,940.4780748,3507,NO,31.89,40.91,1,-0.75,6106,113.312411,123.147793,132.836431,139.402875,I,Above,Flat,0,5701,,36.39975966,0,0,,,,1,1,,0.03,nav,1,1920,2,, 23418,NJBF000059290,7804 AMHERST AVE,Margate City,NJ,39.33394983,-74.50174406,EDU1,3004,,NaN,E,1969,0,3401,1,1,86624.51205,86624.51205,3507,NO,17.29,32.03,1,1.05,6106,113.383087,123.209773,132.912457,139.476144,I,Above,Flat,0,5701,,24.66299797,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23419,NJBF000060647,404A N GLADSTONE AVE,Margate City,NJ,39.33633907,-74.50543574,RES1,3001,,18,NE,1984,1984,3101,2,1,1188.203007,1188.203007,3505,NO,31.67,39.07,3,2.95,6106,113.267999,123.117499,132.817592,139.366777,I,Above,Gable,0,5701,,35.36752528,0,0,,,,1,1,,0.03,nav,1,1984,2,, 23420,NJBF000061455,422 N DOUGLAS AVE,Margate City,NJ,39.33766815,-74.50346807,RES1,3001,,18,NE,1968,1968,3102,2,1,1955.370793,1955.370793,3505,NO,33.03,41.33,3,7.58,6110,113.293024,123.137456,132.83918,139.387279,I,Above,Gable,0,5701,,37.17939309,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 23421,NJBF000054729,117 S OSBORNE AVE,Margate City,NJ,39.324176,-74.5043435,RES1,3001,,21,NE,1965,1965,3103,3,1,886.5394078,886.5394078,3505,NO,54.35,67.97,3,8.21,6106,113.466663,123.274661,132.972377,139.552515,I,Above,Hip,0,5701,,61.16200858,0,0,,,,1,1,,0.03,nav,1,1965,3,, 23422,NJBF000054767,115 S OSBORNE AVE,Margate City,NJ,39.32425894,-74.50449338,RES1,3001,,20,NE,1993,1993,3103,3,1,1856.011625,1856.011625,3505,NO,58.96,67.39,3,6.49,6106,113.462182,123.271083,132.968724,139.548474,I,Above,Hip,0,5701,,63.17510095,0,1.1,,,,1,1,,0.03,nav,1,1993,3,, 23423,NJBF000061117,403 N CLERMONT AVE,Margate City,NJ,39.33708384,-74.50074828,RES1,3001,,18,NE,1978,1978,3102,2,1,1446.475563,1446.475563,3505,NO,28.68,43.06,3,2.12,6106,113.361299,123.192236,132.896134,139.450875,I,Above,Hip,0,5701,,35.86736997,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 23424,NJBF000054048,15 S DECATUR AVE,Margate City,NJ,39.32220591,-74.51236741,RES1,3001,,47,NE,1972,1972,3102,2,2,1069.127465,1069.127465,3505,NO,35.62,44.22,3,-0.73,6106,113.320611,123.155925,132.847147,139.414511,I,Above,Flat,0,5701,,39.91660826,0,0,,,,1,1,,0.03,nav,1,1972,2,, 23425,NJBF000054906,109 S OSBORNE AVE,Margate City,NJ,39.32461372,-74.50484206,RES1,3001,,21,NE,2001,2001,3103,3,1,1703.116649,1703.116649,3505,NO,39.6,45.42,3,7.62,6106,113.449327,123.260869,132.958399,139.537004,I,Above,Hip,0,5701,,42.50808338,0,1.2,,,,1,1,,0.03,nav,1,2001,3,, 23426,NJBF000061372,409 N CLERMONT AVE,Margate City,NJ,39.33752,-74.50114779,RES1,3001,,17,NE,1958,1958,3102,2,1,1643.423686,1643.423686,3505,NO,35.58,46.16,3,6.45,6106,113.346411,123.180257,132.883856,139.436344,I,Above,Gable,0,5701,,40.86847778,0,0,,,,1,1,,0.03,nav,1,1958,2,, 23427,NJBF000061287,407 N CLERMONT AVE,Margate City,NJ,39.33738254,-74.50103059,RES1,3001,,18,NE,1981,1981,3102,2,1,1781.753594,1781.753594,3505,NO,30.91,43.29,3,6.94,6106,113.350896,123.183866,132.887553,139.440736,I,Above,Gable,0,5701,,37.09935247,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 23428,NJBF000061881,3 ESSEX CT,Margate City,NJ,39.33841498,-74.50447418,RES1,3001,,18,NE,1970,1970,3102,2,1,1791.46428,1791.46428,3505,NO,22.15,36.89,3,-0.81,6106,113.260407,123.111252,132.812219,139.35589,I,Above,Gable,0,5701,,29.52426825,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 23429,NJBF000061567,10 ESSEX CT,Margate City,NJ,39.33787136,-74.50502697,RES1,3001,,18,NE,1972,1972,3102,2,1,1601.953688,1601.953688,3505,NO,32.47,44.08,3,2.37,6106,113.255701,123.107547,132.808061,139.35272,I,Above,Hip,0,5701,,38.27368092,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 23430,NJBF000061700,8 ESSEX CT,Margate City,NJ,39.3381034,-74.50555247,RES1,3001,,18,NE,1971,1971,3102,2,1,1818.154322,1818.154322,3505,NO,23.28,34.38,3,-1.22,6106,113.240858,123.095643,132.795764,139.338668,I,Above,Gable,0,5701,,28.82866632,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 23431,NJBF000054243,106 N JEFFERSON AVE,Margate City,NJ,39.32283043,-74.51736839,RES3B,3001,,20,ME,2006,2006,3301,2,1,2092.342122,2092.342122,3505,NO,36.53,49.2,3,2.24,6106,113.202279,123.060825,132.749344,139.30527,I,Above,Gable,0,5701,,42.86578958,0,0,,,,1,1,,0.03,nav,1,2006,2,, 23432,NJBF000057146,219 N NASSAU AVE,Margate City,NJ,39.33002847,-74.50910716,RES1,3001,,17,NE,1950,1950,3101,1,1,905.2131462,905.2131462,3505,NO,9.42,23.52,3,-1.22,6106,113.276839,123.123897,132.820216,139.379923,I,Above,Gable,0,5701,,16.4699813,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23433,NJBF000054327,123 N MADISON AVE,Margate City,NJ,39.32308544,-74.51834925,RES1,3001,,17,NE,1935,1935,3102,2,1,588.7980029,588.7980029,3507,NO,34.91,42.12,1,0.06,6106,113.177078,123.040652,132.728746,139.282094,I,Above,Gable,0,5701,,38.5127376,0,0,,,,1,1,,0.03,nav,1,1935,2,, 23434,NJBF000054493,116 N ADAMS AVE,Margate City,NJ,39.323531,-74.516879,RES1,3001,,17,NE,1950,1950,3102,2,1,1725.48829,1725.48829,3507,NO,35.39,43.73,1,2.75,6106,113.202393,123.061333,132.750452,139.306283,I,Above,Hip,0,5701,,39.56284169,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 23435,NJBF000059759,604 N JEROME AVE,Margate City,NJ,39.33480171,-74.51059869,RES1,3001,,19,NE,1981,1981,3102,2,1,2496.052224,2496.052224,3505,NO,44.43,57.18,3,8.28,6106,113.175562,123.043462,132.739681,139.283505,I,Above,Gable,0,5701,,50.80530943,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 23436,NJBF000054562,122 N ADAMS AVE,Margate City,NJ,39.32373372,-74.51689749,RES3B,3001,,20,ME,2005,2005,3301,2,1,3326.628474,3326.628474,3505,NO,38.18,43.21,3,2.33,6106,113.198955,123.058677,132.747878,139.303325,I,Above,Hip,0,NaN,,40.69664315,0,0,,,,1,1,,0.03,nav,1,2005,2,, 23437,NJBF000057001,211 N NASSAU AVE,Margate City,NJ,39.32971635,-74.50879988,RES1,3001,,17,NE,1949,1949,3101,1,1,1331.295536,1331.295536,3505,NO,13.99,19.92,3,1.74,6106,113.288102,123.132864,132.829312,139.390386,I,Above,Gable,0,5701,,16.95668937,0,0,,,,1,1,,0.03,nav,1,1949,1,, 23438,NJBF000061652,11 ESSEX CT,Margate City,NJ,39.33801169,-74.50489554,RES1,3001,,18,NE,1971,1971,3102,2,1,1843.287851,1843.287851,3505,NO,28.25,41.94,3,-1.44,6106,113.256645,123.108288,132.80891,139.353299,I,Above,Hip,0,5701,,35.0927324,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 23439,NJBF000061751,12 ESSEX CT,Margate City,NJ,39.3381861,-74.5047706,RES1,3001,,18,NE,1971,1971,3102,2,1,1422.971957,1422.971957,3505,NO,27.57,40.53,3,-2.67,6106,113.257,123.108553,132.80928,139.353265,I,Above,Gable,0,5701,,34.05409482,0,0,,,,1,1,,0.03,nav,1,1971,2,, 23440,NJBF000061661,14 ESSEX CT,Margate City,NJ,39.33803078,-74.50465952,RES1,3001,,18,NE,1970,1970,3102,2,1,1676.980409,1676.980409,3505,NO,30.66,39.13,3,5.96,6106,113.261606,123.112258,132.813064,139.357799,I,Above,Gable,0,5701,,34.89447036,0,0,,,,1,1,,0.03,nav,1,1970,2,, 23441,NJBF000054370,,Margate City,NJ,39.32319487,-74.51758682,RES1,3001,,NaN,NE,2017,0,3102,2,1,1000.918897,1000.918897,3507,NO,25.95,36.53,1,1.73,6106,113.192015,123.052767,132.741333,139.296177,I,Above,Gable,0,5701,,31.24194023,0,0,,,,1,1,,0.03,nav,1,2017,2,, 23442,NJBF000057122,217 N NASSAU AVE,Margate City,NJ,39.32997332,-74.50898252,RES1,3001,,17,NE,1950,1950,3101,1,1,1481.698855,1481.698855,3505,NO,18.31,24.39,3,-0.43,6106,113.280361,123.126712,132.823102,139.383198,I,Above,Gable,0,5701,,21.34724797,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23443,NJBF000054376,9512 MONMOUTH AVE,Margate City,NJ,39.32322682,-74.51821716,RES1,3001,,43,NE,1930,1930,3102,2,2,1220.620898,1220.620898,3507,NO,32.33,39.21,1,1.19,6106,113.177813,123.041331,132.729563,139.282965,I,Above,Hip,0,5701,,35.76869544,0,0,,,,1,1,,0.03,nav,1,1930,2,, 23444,NJBF000062627,7807 BURK AVE,Margate City,NJ,39.33986,-74.50641122,RES1,3001,,18,NE,1969,1969,3102,2,1,1862.715231,1862.715231,3505,NO,36.78,51,3,-0.49,6106,113.197549,123.060745,132.760237,139.295258,I,Above,Gable,0,5701,,43.88956947,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 23445,NJBF000053934,9615A WINCHESTER AVE,Margate City,NJ,39.32184166,-74.51840592,RES3A,3001,,20,NE,1960,1960,3301,1,1,1862.660318,1862.660318,3507,NO,18.47,24.75,1,2.94,6106,113.19461,123.054012,132.741473,139.296716,I,Above,Gable,0,5701,,21.60937344,0,0,,,,1,1,,0.03,nav,1,1960,1,, 23446,NJBF000055313,7 N SUMNER AVE,Margate City,NJ,39.32574377,-74.50961038,RES1,3001,,17,NE,1940,1940,3101,1,1,1736.867938,1736.867938,3505,NO,20.52,33.79,3,2.18,6106,113.328321,123.163864,132.858447,139.425873,I,Above,Gable,0,5701,,27.15169621,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 23447,NJBF000058031,309 N LANCASTER AVE,Margate City,NJ,39.33157978,-74.50866288,RES1,3001,,17,NE,1972,1972,3102,2,1,2119.743323,2119.743323,3505,NO,30.79,36.06,3,0.1,6106,113.264244,123.114126,132.811128,139.367941,I,Above,Hip,0,5701,,33.4258477,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 23448,NJBF000057516,,Margate City,NJ,39.330703,-74.5078895,RES1,3001,,NaN,NE,1969,0,3101,1,1,2038.807074,2038.807074,3505,NO,25.86,32.68,3,7.72,6106,113.293869,123.137728,132.835071,139.395688,I,Above,Hip,0,5701,,29.26825334,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23449,NJBF000061471,7502 FREMONT AVE,Margate City,NJ,39.3377023,-74.49872482,RES1,3001,,17,NE,1950,1950,3103,2,1,1648.249479,1648.249479,3505,NO,25.02,31.85,3,0.24,6106,113.397499,123.22122,132.926888,139.482395,I,Above,Hip,0,5701,,28.43081723,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23450,NJBF000061514,230 N BELMONT DR,Margate City,NJ,39.33777678,-74.49860208,RES1,3001,,17,NE,1950,1950,3103,1,1,820.5493973,820.5493973,3505,NO,20.33,32.08,3,8.31,6106,113.399186,123.222565,132.928345,139.483738,I,Above,Hip,0,5701,,26.20661572,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23451,NJBF000054353,25 S UNION AVE,Margate City,NJ,39.3231532,-74.50899693,RES1,3001,,22,NE,2013,2013,3103,3,1,1390.413573,1390.413573,3505,NO,35.98,48.09,3,0.91,6106,113.380035,123.204352,132.898256,139.470969,I,Above,Gable,0,5701,,42.03478729,0,0,,,,1,1,,0.03,nav,1,2013,3,, 23452,NJBF000060820,204 N ARGYLE AVE,Margate City,NJ,39.33659253,-74.49714582,RES1,3001,,17,NE,1950,1950,3103,1,1,837.6087155,837.6087155,3505,NO,24.77,30.94,3,5.74,6106,113.447735,123.261661,132.968609,139.530702,I,Above,Gable,0,5701,,27.85819179,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23453,NJBF000057799,307 N MANSFIELD AVE,Margate City,NJ,39.33118307,-74.50925434,RES1,3001,,17,NE,1952,1952,3101,1,1,1454.943436,1454.943436,3505,NO,17.3,28.54,3,5.65,6106,113.25694,123.108187,132.80469,139.36128,I,Above,Hip,0,5701,,22.91689894,0,0,,,,1,1,,0.03,nav,1,1952,1,, 23454,NJBF000061035,210 N ARGYLE AVE,Margate City,NJ,39.336944,-74.4974895,RES1,3001,,17,NE,1950,1950,3103,1,1,852.4942753,852.4942753,3505,NO,19.56,25.95,3,2.1,6106,113.435276,123.251626,132.958306,139.518547,I,Above,Flat,0,5701,,22.7561147,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23455,NJBF000054678,4 N WILSON AVE,Margate City,NJ,39.32404628,-74.51218606,RES1,3001,,18,NE,1950,1950,3102,2,1,1934.716495,1934.716495,3505,NO,36.95,50.89,3,2.46,6106,113.297106,123.137949,132.830136,139.395102,I,Above,Hip,0,5701,,43.92062932,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 23456,NJBF000055909,6 S KNIGHT AVE,Margate City,NJ,39.32726,-74.503596,RES1,3001,,20,NE,2011,2011,3102,3,1,1272.517037,1272.517037,3505,NO,43.09,50.7,3,4.75,6106,113.438008,123.252706,132.952201,139.528877,I,Above,Gable,0,5701,,46.89343699,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 23457,NJBF000058341,28 N ESSEX AVE,Margate City,NJ,39.33213444,-74.49876125,RES1,3001,,21,NE,1939,2018,3102,2,1,1119.763056,1119.763056,3505,NO,25.07,31.36,3,-0.39,6106,113.474498,123.283086,132.987886,139.562414,I,Above,Hip,0,5701,,28.21591805,0,0,,,,1,1,,0.03,nav,1,1939,2,, 23458,NJBF000058293,26 N ESSEX AVE,Margate City,NJ,39.33204742,-74.49867037,RES1,3001,,17,NE,1939,1939,3102,2,1,1701.434685,1701.434685,3505,NO,41.47,56.01,3,7.42,6106,113.477734,123.285679,132.990537,139.565477,I,Above,Hip,0,5701,,48.74086818,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 23459,NJBF000055898,302 N WILSON AVE,Margate City,NJ,39.32723678,-74.51521845,RES1,3001,,47,NE,1950,1950,3102,2,2,854.0938561,854.0938561,3505,NO,24.4,34.48,3,-0.6,6106,113.18351,123.047981,132.739533,139.292136,I,Above,Gable,0,5701,,29.43550358,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23460,NJBF000058633,39 N ESSEX AVE,Margate City,NJ,39.33264601,-74.49876178,RES1,3001,,21,NE,1950,1950,3102,2,1,1164.208758,1164.208758,3505,NO,32.63,44.11,3,4.17,6106,113.467242,123.277301,132.982212,139.555238,I,Above,Hip,0,5701,,38.37180522,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23461,NJBF000061135,805 N JEROME AVE,Margate City,NJ,39.33712212,-74.51192886,RES1,3001,,17,NE,1955,1955,3102,2,1,2086.461256,2086.461256,3505,NO,28.75,34.93,3,-1.52,6106,113.113402,122.993793,132.689323,139.22322,I,Above,Gable,0,5701,,31.83994286,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 23462,NJBF000059251,,Margate City,NJ,39.333862,-74.4969515,RES1,3001,,NaN,NE,1969,0,3102,2,1,1110.158683,1110.158683,3505,NO,32.57,43.8,3,7.2,6106,113.490077,123.295741,133.002459,139.57473,I,Above,Gable,0,5701,,38.1830032,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23463,NJBF000056452,306 N THURLOW AVE,Margate City,NJ,39.32849521,-74.51374114,RES1,3001,,17,NE,1950,1950,3102,2,1,1853.576765,1853.576765,3505,NO,32.6,45.62,3,8.35,6106,113.197379,123.059615,132.752468,139.305682,I,Above,Gable,0,5701,,39.11050468,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23464,NJBF000056015,4 N LANCASTER AVE,Margate City,NJ,39.3275242,-74.50534667,RES1,3001,,19,NE,1925,1925,3102,2,1,1517.70305,1517.70305,3505,NO,37.57,51.25,3,0.71,6106,113.395743,123.218772,132.917033,139.489789,I,Above,Hip,0,5701,,44.41228449,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23465,NJBF000054187,,Margate City,NJ,39.32266344,-74.51617766,RES3C,3001,,NaN,ME,1921,0,3301,2,1,2277.693209,2277.693209,3505,NO,21.57,33.2,3,0.25,6106,113.230707,123.083659,132.772779,139.331543,I,Above,Gable,0,NaN,,27.38852997,0,0,,,,1,1,,0.03,nav,1,1921,2,, 23466,NJBF000056782,403 N THURLOW AVE,Margate City,NJ,39.32924941,-74.51394215,RES1,3001,,22,NE,2001,2001,3102,3,1,1707.221999,1707.221999,3505,NO,61.39,73.35,3,7.96,6106,113.181934,123.047468,132.740417,139.291515,I,Above,Hip,0,5701,,67.37050454,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 23467,NJBF000058286,306 N JEROME AVE,Margate City,NJ,39.33203719,-74.50787604,RES1,3001,,17,NE,1962,1962,3102,2,1,1644.466207,1644.466207,3505,NO,32.31,43.73,3,4.48,6106,113.275027,123.122856,132.820512,139.377755,I,Above,Gable,0,5701,,38.0214725,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 23468,NJBF000056954,303 N QUINCY AVE,Margate City,NJ,39.32961025,-74.51142516,RES1,3001,,17,NE,1951,1951,3102,2,1,2492.224401,2492.224401,3505,NO,21,32.86,3,-2.08,6106,113.23195,123.08774,132.782388,139.338148,I,Above,Hip,0,5701,,26.92745348,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 23469,NJBF000056196,126 N QUINCY AVE,Margate City,NJ,39.32794215,-74.51043858,RES1,3001,,17,NE,1927,1927,3102,2,1,1223.05774,1223.05774,3505,NO,40.64,53.79,3,2.53,6106,113.27791,123.124141,132.818944,139.380448,I,Above,Gable,0,5701,,47.2160095,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 23470,NJBF000059523,8407 WELLINGTON AVE,Margate City,NJ,39.33440401,-74.5106702,RES1,3001,,20,NE,1988,1988,3102,2,1,1912.045039,1912.045039,3505,NO,27.67,32.75,3,2.25,6106,113.179647,123.046702,132.742823,139.287671,I,Above,Gable,0,5701,,30.20896323,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 23471,NJBF000060164,8094 FULTON AVE,Margate City,NJ,39.33550935,-74.50516747,RES1,3001,,17,NE,1959,1959,3101,2,1,1565.431026,1565.431026,3505,NO,25.06,35.67,3,-1.53,6106,113.285577,123.131596,132.831809,139.384217,I,Above,Hip,0,5701,,30.36566948,0,0,,,,1,1,,0.03,nav,1,1959,2,, 23472,NJBF000059526,7 E COLMAR CIRCLE,Margate City,NJ,39.33441006,-74.50399748,RES1,3001,,17,NE,1910,1910,3101,1,1,1429.381888,1429.381888,3505,NO,17.5,29.77,3,3.01,6106,113.326878,123.164686,132.865654,139.423743,I,Above,Gable,0,5701,,23.63687366,0,1.1,,,,1,1,,0.03,nav,1,1910,1,, 23473,NJBF000056762,17 N JASPER AVE,Margate City,NJ,39.32919984,-74.50357492,RES1,3001,,17,NE,1962,1962,3102,2,1,1131.656942,1131.656942,3505,NO,42.51,56.27,3,6.25,6106,113.410418,123.231041,132.931178,139.503977,I,Above,Gable,0,5701,,49.39177743,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 23474,NJBF000056315,,Margate City,NJ,39.32819932,-74.50429615,REL1,3003,,NaN,ME,1969,0,3401,3,1,5186.04005,5186.04005,3507,NO,50.02,56.97,1,2.18,6106,113.409028,123.229662,132.928937,139.502434,I,Above,Hip,0,NaN,,53.49737501,0,0,,,,1,1,,0.03,nav,1,1969,3,, 23475,NJBF000059160,12 W COLMAR CIRCLE,Margate City,NJ,39.33367821,-74.50492764,RES1,3001,,18,NE,1955,1955,3101,2,1,1856.029761,1856.029761,3505,NO,34.92,43.68,3,-0.51,6106,113.316668,123.156454,132.85659,139.415122,I,Above,Hip,0,5701,,39.29832932,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 23476,NJBF000060110,8096 FULTON AVE,Margate City,NJ,39.33542787,-74.5053343,RES1,3001,,17,NE,1957,1957,3101,2,1,1706.510147,1706.510147,3505,NO,35.38,41.56,3,0.19,6106,113.283025,123.12955,132.829626,139.381981,I,Above,Hip,0,5701,,38.47011663,0,0,,,,1,1,,0.03,nav,1,1957,2,, 23477,NJBF000056805,19 N JASPER AVE,Margate City,NJ,39.32929712,-74.50364169,RES1,3001,,17,NE,1930,1930,3101,1,1,1958.842805,1958.842805,3505,NO,15.64,22.38,3,3.3,6106,113.407548,123.228756,132.92887,139.501324,I,Above,Hip,0,5701,,19.00867677,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 23478,NJBF000061873,5 BAYCREST DRIVE,Margate City,NJ,39.3384015,-74.508002,RES1,3001,,18,NE,1980,1980,3102,2,1,1955.341976,1955.341976,3505,NO,27.06,40.19,3,-2.64,6106,113.182452,123.048892,132.747195,139.284568,I,Above,Gable,0,5701,,33.62473774,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 23479,NJBF000057123,104 N JASPER AVE,Margate City,NJ,39.32997759,-74.50482416,RES1,3001,,17,NE,1950,1950,3102,2,1,2146.057502,2146.057502,3507,NO,39.66,53.64,1,1.83,6106,113.371755,123.200136,132.899539,139.468106,I,Above,Hip,0,5701,,46.65223803,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 23480,NJBF000061103,222 N BELMONT DR,Margate City,NJ,39.33705469,-74.4986482,RES1,3001,,20,NE,2015,2015,3103,2,1,1367.062627,1367.062627,3505,NO,32.69,38.98,3,3.85,6106,113.408139,123.229825,132.935505,139.493621,I,Above,Gable,0,5701,,35.83614122,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 23481,NJBF000061631,315 N ARGYLE AVE,Margate City,NJ,39.33798136,-74.49794738,RES1,3001,,17,NE,1950,1950,3103,1,1,958.0618953,958.0618953,3505,NO,23.72,32.3,3,4.24,6106,113.410865,123.231916,132.938282,139.493792,I,Above,Gable,0,5701,,28.0141658,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23482,NJBF000061556,8212 LAGOON DRIVE,Margate City,NJ,39.33784972,-74.51183214,RES1,3001,,18,NE,1982,1982,3102,2,1,1767.639344,1767.639344,3505,NO,28.07,42.84,3,5.18,6106,113.105337,122.987317,132.68294,139.214676,I,Above,Hip,0,5701,,35.45689638,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 23483,NJBF000061823,4 HARBOUR LANE,Margate City,NJ,39.33831637,-74.50931841,RES1,3001,,18,NE,1979,1979,3102,2,1,1710.96536,1710.96536,3505,NO,39.55,52.07,3,7.8,6106,113.1545,123.026559,132.723917,139.259083,I,Above,Hip,0,5701,,45.80686421,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 23484,NJBF000053516,9405 ATLANTIC AVE,Margate City,NJ,39.32024573,-74.51363518,RES1,3001,,17,NE,1950,1950,3102,2,1,1043.610258,1043.610258,3507,NO,26.59,34.01,1,0.18,6106,113.322472,123.156248,132.84566,139.413088,I,Above,Gable,0,5701,,30.29791726,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23485,NJBF000060738,212 N BRUNSWICK DR,Margate City,NJ,39.33647377,-74.49907755,RES1,3001,,17,NE,1950,1950,3103,2,1,945.9276933,945.9276933,3505,NO,33.96,43.33,3,-0.66,6106,113.406684,123.2287,132.933951,139.493589,I,Above,Hip,0,5701,,38.64485065,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23486,NJBF000063050,8002 BAYSHORE DR,Margate City,NJ,39.34078665,-74.50935167,RES1,3001,,18,NE,1973,1973,3102,2,1,2332.680939,2332.680939,3505,NO,28.68,38.11,3,1.72,6106,113.119565,122.998271,132.695572,139.22193,I,Above,Gable,0,5701,,33.39765526,0,0,,,,1,1,,0.03,nav,1,1973,2,, 23487,NJBF000059389,10 E COLMAR CIRCLE,Margate City,NJ,39.33415899,-74.50435505,RES1,3001,,17,NE,1967,1967,3101,2,1,1311.441355,1311.441355,3505,NO,24.94,30.16,3,0.04,6106,113.322514,123.161174,132.861827,139.420012,I,Above,Flat,0,5701,,27.54616343,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, 23488,NJBF000055350,109 S KNIGHT AVE,Margate City,NJ,39.32585756,-74.5020164,RES1,3001,,20,NE,2013,2013,3102,3,1,1096.890647,1096.890647,3505,NO,58.03,63.53,3,6.75,6106,113.493049,123.296575,132.996783,139.578814,I,Above,Hip,0,5701,,60.7806753,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, 23489,NJBF000058680,41 N ESSEX AVE,Margate City,NJ,39.33274191,-74.49883548,RES1,3001,,17,NE,1950,1950,3102,1,1,1581.763726,1581.763726,3505,NO,20.76,31.37,3,1.37,6106,113.464278,123.274926,132.979795,139.552405,I,Above,Gable,0,5701,,26.06166949,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23490,NJBF000058696,108 N EXETER AVE,Margate City,NJ,39.3327738,-74.50030882,RES1,3001,,17,NE,1956,1956,3102,2,1,1419.622545,1419.622545,3505,NO,28.05,41.34,3,5.86,6106,113.43133,123.248443,132.952083,139.521951,I,Above,Gable,0,5701,,34.69212445,0,0,,,,1,1,,0.03,nav,1,1956,2,, 23491,NJBF000062062,8206 BAYSHORE DR WEST,Margate City,NJ,39.338735,-74.51212,RES1,3001,,22,NE,2015,2015,3102,3,1,1673.62059,1673.62059,3505,NO,39.76,45.53,3,5.7,6106,113.086593,122.972278,132.667723,139.195935,I,Above,Gable,0,5701,,42.64444635,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 23492,NJBF000059714,21 W COLMAR CIRCLE,Margate City,NJ,39.33472472,-74.50516586,RES1,3001,,17,NE,1952,1952,3101,2,1,2607.909476,2607.909476,3505,NO,41.3,55.84,3,6.39,6106,113.296627,123.140439,132.840554,139.395449,I,Above,Gable,0,5701,,48.56938869,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23493,NJBF000063985,7403 BAYSHORE DR,Margate City,NJ,39.34327417,-74.50257258,RES1,3001,,19,NE,1984,1984,3102,2,1,2475.249305,2475.249305,3505,NO,27.94,42.81,3,-1.22,6106,113.236262,123.090768,132.793128,139.320568,I,Above,Hip,0,5701,,35.37107937,0,1.2,,,,1,1,,0.03,nav,1,1984,2,, 23494,NJBF000056095,227 N UNION AVE,Margate City,NJ,39.32771247,-74.51339635,RES1,3001,,17,NE,1930,1930,3102,2,1,729.0277377,729.0277377,3505,NO,37.82,46.87,3,4.87,6106,113.216433,123.074639,132.767459,139.323093,I,Above,Gable,0,5701,,42.3487835,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23495,NJBF000059573,61 SEASIDE COURT,Margate City,NJ,39.33448345,-74.50858114,RES1,3001,,19,NE,1988,1988,3101,2,1,1289.129333,1289.129333,3505,NO,44.01,56.24,3,8.03,6106,113.224641,123.082741,132.780316,139.329229,I,Above,Gable,0,5701,,50.12559179,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 23496,NJBF000060186,35 SEASIDE COURT,Margate City,NJ,39.33555375,-74.50984511,RES1,3001,,19,NE,1998,1998,3101,2,1,1504.715328,1504.715328,3505,NO,27.67,38.64,3,1.2,6106,113.181572,123.048307,132.745126,139.288225,I,Above,Hip,0,5701,,33.15539596,0,0,,,,1,1,,0.03,nav,1,1998,2,, 23497,NJBF000054542,106 S QUINCY AVE,Margate City,NJ,39.32367561,-74.50640397,RES1,3001,,19,NE,1932,1932,3102,2,1,1884.77438,1884.77438,3505,NO,30.02,35.55,3,-1.85,6106,113.428963,123.244049,132.940021,139.516987,I,Above,Gable,0,5701,,32.7872566,0,1.2,,,,1,1,,0.03,nav,1,1932,2,, 23498,NJBF000058935,120 N EXETER AVE,Margate City,NJ,39.33320647,-74.50073707,RES1,3001,,17,NE,1951,1951,3102,2,1,1391.858995,1391.858995,3505,NO,34.93,42.37,3,5.49,6106,113.415792,123.235993,132.939365,139.507166,I,Above,Flat,0,5701,,38.65122648,0,0,,,,1,1,,0.03,nav,1,1951,2,, 23499,NJBF000057696,10 S CLARENDON AVE,Margate City,NJ,39.33101381,-74.49495891,RES1,3001,,20,NE,2011,2011,3102,2,1,1743.483429,1743.483429,3505,NO,45.14,59.79,3,7.27,6106,113.574077,123.363107,133.070958,139.655308,I,Above,Hip,0,5701,,52.46727857,0,0,,,,1,1,,0.03,nav,1,2011,2,, 23500,NJBF000057651,9 S CLERMONT AVE,Margate City,NJ,39.33094026,-74.49512876,RES1,3001,,19,NE,1948,1948,3102,2,1,1817.562549,1817.562549,3505,NO,35.96,45.69,3,-1.32,6106,113.571383,123.360925,133.068604,139.652862,I,Above,Gable,0,5701,,40.82333196,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 23501,NJBF000057569,,Margate City,NJ,39.33080049,-74.49503267,RES1,3001,,NaN,NE,1948,0,3102,2,1,1099.755722,1099.755722,3505,NO,25.05,32.19,3,-0.52,6106,113.575478,123.364205,133.071932,139.656731,I,Above,Flat,0,5701,,28.61908723,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23502,NJBF000060380,7502 MONMOUTH AVE,Margate City,NJ,39.33588284,-74.49665303,RES1,3001,,17,NE,1967,1967,3102,2,1,1123.516274,1123.516274,3505,NO,25.68,33.34,3,-1.85,6106,113.468469,123.278363,132.985663,139.551183,I,Above,Gable,0,5701,,29.51020158,0,0,,,,1,1,,0.03,nav,1,1967,2,, 23503,NJBF000056676,111 N MANSFIELD AVE,Margate City,NJ,39.32902697,-74.50719748,RES1,3001,,17,NE,1960,1960,3102,2,1,2141.81438,2141.81438,3505,NO,25.18,39.14,3,3.62,6106,113.333309,123.169003,132.866388,139.432322,I,Above,Gable,0,5701,,32.16042998,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 23504,NJBF000055999,112 N QUINCY AVE,Margate City,NJ,39.32749358,-74.51005312,RES1,3001,,17,NE,1977,1977,3102,2,1,1524.08852,1524.08852,3505,NO,32.04,43.05,3,-2.26,6110,113.292928,123.13606,132.830975,139.394201,I,Above,Gable,0,5701,,37.54420942,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 23505,NJBF000056773,8605 MONMOUTH AVE,Margate City,NJ,39.32923079,-74.50884697,RES1,3001,,19,NE,1935,1935,3102,2,1,1968.279001,1968.279001,3505,NO,26.96,37.86,3,5.26,6106,113.294097,123.137549,132.833829,139.395905,I,Above,Hip,0,5701,,32.40665243,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 23506,NJBF000057547,32 N HAVERFORD AVE,Margate City,NJ,39.33076405,-74.50232336,RES1,3001,,17,NE,1955,1955,3102,2,1,1375.888615,1375.888615,3505,NO,41.28,53.28,3,8.48,6106,113.415523,123.235471,132.937018,139.508578,I,Above,Gable,0,5701,,47.28071046,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 23507,NJBF000056887,315 N RUMSON AVE,Margate City,NJ,39.32946328,-74.51220782,RES1,3001,,19,NE,2013,2013,3102,2,1,2000.615128,2000.615128,3505,NO,39.98,46.78,3,2.71,6106,113.216888,123.075603,132.769702,139.324108,I,Above,Gable,0,5701,,43.3801314,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 23508,NJBF000060953,47 BAYSIDE COURT,Margate City,NJ,39.33681043,-74.51116975,RES1,3001,,19,NE,1995,1995,3102,2,1,1840.330288,1840.330288,3505,NO,21.37,29.33,3,-1.01,6106,113.134579,123.010726,132.706744,139.243198,I,Above,Hip,0,5701,,25.34995812,0,0,,,,1,1,,0.03,nav,1,1995,2,, 23509,NJBF000058378,111 N GLADSTONE AVE,Margate City,NJ,39.33220798,-74.50138895,RES1,3001,,17,NE,1940,1940,3101,1,1,1840.602853,1840.602853,3505,NO,19.64,26.65,3,1.09,6106,113.415537,123.235694,132.93833,139.507834,I,Above,Hip,0,5701,,23.14630448,0,0,,,,1,1,,0.03,nav,1,1940,1,, 23510,NJBF000056085,310 N WILSON AVE,Margate City,NJ,39.32768967,-74.51564952,RES1,3001,,47,NE,1950,1950,3102,2,2,945.6814415,945.6814415,3505,NO,30.63,40.88,3,2.28,6106,113.167365,123.035189,132.726637,139.277338,I,Above,Hip,0,5701,,35.7547327,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23511,NJBF000055651,207 N WILSON AVE,Margate City,NJ,39.32666334,-74.51415755,RES1,3001,,47,NE,1950,1950,3102,2,2,1582.99268,1582.99268,3505,NO,43.28,50.98,3,7.12,6106,113.215195,123.073218,132.765209,139.321296,I,Above,Flat,0,5701,,47.12906327,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23512,NJBF000057158,,Margate City,NJ,39.33005167,-74.51618499,RES1,3001,,NaN,NE,1981,0,3102,2,1,1401.246004,1401.246004,3505,NO,36.48,45.54,3,2.88,6106,113.120953,122.998782,132.690604,139.234817,I,Above,Hip,0,5701,,41.01020186,0,0,,,,1,1,,0.03,nav,1,1981,2,, 23513,NJBF000057845,200 N IROQUOIS AVE,Margate City,NJ,39.33126226,-74.50522772,RES1,3001,,17,NE,1950,1950,3102,2,1,1257.201303,1257.201303,3505,NO,32.58,39.93,3,5.87,6106,113.344443,123.178446,132.87787,139.442484,I,Above,Hip,0,5701,,36.25590609,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23514,NJBF000060203,222 N CLERMONT AVE,Margate City,NJ,39.33557982,-74.49979563,RES1,3001,,17,NE,1957,1957,3103,1,1,1709.393926,1709.393926,3505,NO,17.19,31.31,3,4.91,6106,113.403256,123.225986,132.930521,139.492216,I,Above,Hip,0,5701,,24.24695255,0,0,,,,1,1,,0.03,nav,1,1957,1,, 23515,NJBF000057296,109 N JASPER AVE,Margate City,NJ,39.330324,-74.504641,RES1,3001,,45,NE,1930,1930,3102,2,2,1346.85403,1346.85403,3507,NO,23.79,32.55,1,-0.86,6106,113.370809,123.19945,132.899084,139.467193,I,Above,Hip,0,5701,,28.16862875,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23516,NJBF000057382,104 S BARCLAY AVE,Margate City,NJ,39.33047381,-74.49305429,RES1,3001,,19,NE,1964,1964,3102,3,1,2150.680813,2150.680813,3505,NO,52.11,66.3,3,4.98,6106,113.62364,123.402977,133.112418,139.701463,I,Above,Gable,0,5701,,59.20328838,0,1.2,,,,1,1,,0.03,nav,1,1964,3,, 23517,NJBF000054246,,Margate City,NJ,39.32283916,-74.51810257,RES1,3001,,NaN,NE,1969,0,3101,1,1,1265.24238,1265.24238,3505,NO,25.17,36.49,3,6.84,6106,113.186141,123.047812,132.735925,139.290227,I,Above,Gable,0,5701,,30.83139307,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23518,NJBF000057255,201 N LANCASTER AVE,Margate City,NJ,39.33023649,-74.50725117,RES1,3001,,17,NE,1925,1925,3102,2,1,613.6209187,613.6209187,3505,NO,36.87,46.44,3,8.44,6106,113.314654,123.154316,132.851999,139.415057,I,Above,Gable,0,5701,,41.65414393,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 23519,NJBF000057437,8203 WINCHESTER AVE,Margate City,NJ,39.33057426,-74.50325794,RES1,3001,,17,NE,1952,1952,3102,2,1,1579.444215,1579.444215,3507,NO,25.31,36.8,1,2.74,6106,113.39766,123.221078,132.921841,139.492062,I,Above,Hip,0,5701,,31.05648786,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, 23520,NJBF000055305,,Margate City,NJ,39.325724,-74.5162265,RES3B,3001,,NaN,E,1969,0,3303,4,1,2387.766494,2387.766494,3507,NO,65.69,76.34,1,-0.35,6106,113.183856,123.04757,132.737981,139.291324,I,Above,Flat,0,5701,,71.01559518,0,0,,,,1,1,,0.03,nav,1,1969,4,, 23521,NJBF000055269,,Margate City,NJ,39.325614,-74.5164185,RES3B,3001,,NaN,E,1969,0,3303,3,1,2421.061019,2421.061019,3507,NO,49.9,54.97,1,0.08,6106,113.181297,123.045456,132.735714,139.288838,I,Above,Hip,0,5701,,52.43308074,0,0,,,,1,1,,0.03,nav,1,1969,3,, 23522,NJBF000055180,8600 ATLANTIC AVE,Margate City,NJ,39.32537531,-74.50429227,RES1,3001,,20,NE,2011,2011,3102,3,1,1535.974568,1535.974568,3505,NO,40.62,53.03,3,1.31,6106,113.450218,123.261888,132.960144,139.53866,I,Above,Hip,0,5701,,46.82326102,0,0,,,,1,1,,0.03,nav,1,2011,3,, 23523,NJBF000054335,9310 WINCHESTER AVE,Margate City,NJ,39.32310088,-74.51537973,RES3B,3001,,49,ME,2005,2005,3301,2,2,2811.058077,2811.058077,3505,NO,36.6,44.28,3,-0.36,6106,113.241518,123.092635,132.782429,139.342201,I,Above,Hip,0,5701,,40.43929139,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 23524,NJBF000057191,104 S CLARENDON AVE,Margate City,NJ,39.33011303,-74.49421472,RES1,3001,,NaN,NE,1930,0,3102,2,1,1556.230299,1556.230299,3505,NO,31.83,40.62,3,3.47,6106,113.603217,123.386451,133.094725,139.682703,I,Above,Hip,0,5701,,36.22698135,0,0,,,,1,1,,0.03,nav,1,1930,2,, 23525,NJBF000061058,414 N ESSEX AVE,Margate City,NJ,39.33698472,-74.50367897,RES1,3001,,17,NE,1994,1952,3102,1,1,1768.122524,1768.122524,3505,NO,16.69,28.42,3,-0.95,6106,113.297843,123.141374,132.842884,139.39304,I,Above,Hip,0,5701,,22.55109964,0,1.2,,,,1,1,,0.03,nav,1,1994,1,, 23526,NJBF000057532,304 N MANSFIELD AVE,Margate City,NJ,39.33073656,-74.50938802,RES1,3001,,17,NE,1952,1952,3101,1,1,1248.305543,1248.305543,3505,NO,12.56,24.66,3,-1.9,6106,113.260418,123.110882,132.807187,139.364603,I,Above,Gable,0,5701,,18.61305242,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 23527,NJBF000053803,9416 VENTNOR AVE,Margate City,NJ,39.3213495,-74.5153115,COM3,3003,,NaN,ME,1988,1988,3401,1,1,3678.166184,3678.166184,3507,YES,15.06,25.27,1,-0.66,6106,113.269371,123.11406,132.803038,139.365599,I,Above,Flat,0,NaN,,20.16597225,0,0,,,,1,1,,0.03,nav,1,1988,1,, 23528,NJBF000056966,202 N MANSFIELD AVE,Margate City,NJ,39.32963158,-74.50832254,RES1,3001,,20,NE,2017,2017,3102,2,1,1149.366324,1149.366324,3505,NO,30.42,38.74,3,8.93,6106,113.299804,123.142241,132.839,139.401259,I,Above,Flat,0,5701,,34.57946486,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 23529,NJBF000060499,204 N BELMONT DR,Margate City,NJ,39.33609089,-74.49735528,RES1,3001,,17,NE,1950,1950,3103,1,1,1298.833239,1298.833239,3505,NO,18.26,27.49,3,4.57,6106,113.450074,123.263571,132.970276,139.533973,I,Above,Hip,0,5701,,22.87202645,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23530,NJBF000054020,11 N JEFFERSON AVE,Margate City,NJ,39.32213239,-74.51585754,RES1,3001,,18,NE,1954,1954,3102,2,2,1071.448057,1071.448057,3507,NO,33.93,39.69,1,1.97,6106,113.245666,123.095409,132.784458,139.344725,I,Above,Flat,0,5701,,36.81338676,0,0,,,,1,1,,0.03,nav,1,1954,2,, 23531,NJBF000056595,412 N VENDOME AVE,Margate City,NJ,39.32883236,-74.51593468,RES1,3001,,22,NE,1989,1989,3102,3,1,2794.488092,2794.488092,3505,NO,51.03,65.16,3,-2.91,6106,113.144313,123.017112,132.708746,139.256331,I,Above,Hip,0,5701,,58.09471477,0,0,,,,1,1,,0.03,nav,1,1989,3,, 23532,NJBF000059482,8208 FULTON AVE,Margate City,NJ,39.33432913,-74.50731461,RES1,3001,,17,NE,1940,1940,3101,2,1,776.6518308,776.6518308,3505,NO,38.6,52.01,3,0.38,6106,113.254771,123.106872,132.805333,139.357246,I,Above,Gable,0,5701,,45.30428373,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 23533,NJBF000053708,23 N COOLIDGE AVE,Margate City,NJ,39.3209745,-74.518596,RES1,3001,,17,NE,1923,1923,3102,2,1,674.5427184,674.5427184,3507,NO,24.72,33.75,1,-0.05,6106,113.20364,123.060724,132.747632,139.303793,I,Above,Gable,0,5701,,29.23749416,0,1.2,,,,1,1,,0.03,nav,1,1923,2,, 23534,NJBF000056350,302 N THURLOW AVE,Margate City,NJ,39.32827464,-74.51350881,RES1,3001,,17,NE,1949,1949,3102,2,1,961.9517336,961.9517336,3505,NO,41.4,50.71,3,8.26,6106,113.205692,123.066216,132.759145,139.313343,I,Above,Gable,0,5701,,46.05578696,0,1.2,,,,1,1,,0.03,nav,1,1949,2,, 23535,NJBF000055319,111 S KNIGHT AVE,Margate City,NJ,39.32576733,-74.50185995,RES1,3001,,19,NE,1964,1964,3102,3,1,665.9448171,665.9448171,3505,NO,43.66,52.3,3,-0.9,6106,113.497795,123.300367,133.000663,139.583119,I,Above,Hip,0,5701,,47.98167874,0,1.2,,,,1,1,,0.03,nav,1,1964,3,, 23536,NJBF000055281,111 S KNIGHT AVE,Margate City,NJ,39.32565758,-74.50183237,RES1,3001,,19,NE,1964,1964,3102,3,1,1613.55793,1613.55793,3505,NO,35.08,42.25,3,1.78,6106,113.499996,123.302103,133.002378,139.585049,I,Above,Hip,0,5701,,38.66210182,0,1.2,,,,1,1,,0.03,nav,1,1964,3,, 23537,NJBF000058954,8501 FULTON AVE,Margate City,NJ,39.33324855,-74.50985949,RES1,3001,,18,NE,1971,1971,3102,2,1,2473.337271,2473.337271,3505,NO,41.38,46.83,3,6.91,6106,113.213994,123.074092,132.77059,139.320432,I,Above,Gable,0,5701,,44.10646292,0,1.2,,,,1,1,,0.03,nav,1,1971,2,, 23538,NJBF000060433,27 SEASIDE COURT,Margate City,NJ,39.33596683,-74.50937599,RES1,3001,,17,NE,1989,1989,3101,2,1,1888.979355,1888.979355,3505,NO,39.87,53.29,3,3.8,6106,113.186113,123.051948,132.749132,139.291894,I,Above,Hip,0,5701,,46.58200584,0,0,,,,1,1,,0.03,nav,1,1989,2,, 23539,NJBF000060495,306 N DELAVAN AVE,Margate City,NJ,39.33607868,-74.50108122,RES1,3001,,17,NE,1950,1950,3102,1,1,1408.274906,1408.274906,3505,NO,18.97,26.18,3,1.5,6106,113.367905,123.197598,132.901121,139.458919,I,Above,Hip,0,5701,,22.5740694,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23540,NJBF000057626,211 N KENYON AVE,Margate City,NJ,39.33089693,-74.50708567,RES1,3001,,17,NE,1950,1950,3102,2,1,1414.768643,1414.768643,3505,NO,36.8,46.18,3,-0.81,6106,113.308772,123.149734,132.847701,139.409489,I,Above,Gable,0,5701,,41.48811956,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23541,NJBF000057241,431 N THURLOW AVE,Margate City,NJ,39.33021219,-74.5148446,RES1,3001,,17,NE,1950,1950,3102,2,1,3440.518538,3440.518538,3505,NO,42.09,50.33,3,4.48,6106,113.148049,123.020573,132.713228,139.26008,I,Above,Flat,0,5701,,46.21012242,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 23542,NJBF000054909,9102 WINCHESTER AVE,Margate City,NJ,39.32462396,-74.51285717,RES1,3001,,17,NE,1950,1950,3102,2,1,985.539934,985.539934,3505,NO,21.22,35.63,3,-0.17,6106,113.273855,123.119502,132.811509,139.37412,I,Above,Gable,0,5701,,28.42602557,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23543,NJBF000054929,9100 WINCHESTER AVE,Margate City,NJ,39.32468262,-74.51274453,RES1,3001,,17,NE,1940,1940,3102,2,1,974.9853926,974.9853926,3505,NO,31.48,44.4,3,-1.67,6106,113.275426,123.120796,132.812898,139.375645,I,Above,Hip,0,5701,,37.94334079,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23544,NJBF000053987,12-14 S DECATUR AVE,Margate City,NJ,39.32200611,-74.51261013,RES1,3001,,20,NE,1962,1962,3102,2,1,2231.768168,2231.768168,3505,NO,25.6,37.89,3,-2.72,6106,113.31831,123.153955,132.844924,139.412078,I,Above,Hip,0,5701,,31.7450257,0,0,,,,1,1,,0.03,nav,1,1962,2,, 23545,NJBF000058158,3 N DELAVAN AVE,Margate City,NJ,39.33180966,-74.49660213,RES1,3001,,17,NE,1940,1940,3102,1,1,1003.256475,1003.256475,3505,NO,13.08,22.14,3,2.1,6106,113.526644,123.325007,133.031598,139.610871,I,Above,Flat,0,5701,,17.61045162,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 23546,NJBF000056256,121 N QUINCY AVE,Margate City,NJ,39.32807181,-74.51000181,RES1,3001,,17,NE,1925,1925,3101,1,1,1193.33347,1193.33347,3505,NO,22.54,32.22,3,4.29,6106,113.2856,123.130366,132.825505,139.38766,I,Above,Gable,0,5701,,27.37672961,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 23547,NJBF000054142,27 S CEDAR GROVE AVE,Margate City,NJ,39.32252092,-74.5105113,RES1,3001,,21,NE,2010,2010,3103,3,1,1977.73009,1977.73009,3505,NO,43.23,49.66,3,8.79,6106,113.356386,123.184956,132.877539,139.44816,I,Above,Gable,0,5701,,46.44572903,0,0,,,,1,1,,0.03,nav,1,2010,3,, 23548,NJBF000061483,20 HARBOUR LANE,Margate City,NJ,39.33772738,-74.50792539,RES1,3001,,18,NE,1982,1982,3102,2,1,2042.866439,2042.866439,3505,NO,32.53,41.77,3,5.12,6106,113.19355,123.057831,132.756167,139.296007,I,Above,Hip,0,5701,,37.15050265,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 23549,NJBF000058120,302 N JEROME AVE,Margate City,NJ,39.3317465,-74.5075755,RES1,3001,,18,NE,1960,1960,3102,2,1,1269.045476,1269.045476,3505,NO,29.02,35.5,3,2.59,6106,113.285788,123.131443,132.829251,139.387872,I,Above,Gable,0,5701,,32.26199381,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 23550,NJBF000055306,209 N DECATUR AVE,Margate City,NJ,39.32573245,-74.51566541,IND2,3003,,NaN,ME,1969,0,3401,1,1,3196.043951,3196.043951,3507,NO,17.1,30.49,1,2.04,6106,113.196021,123.057366,132.748108,139.302679,I,Above,Flat,0,NaN,,23.79132274,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23551,NJBF000058489,8213 AMHERST AVE,Margate City,NJ,39.33240785,-74.5060551,RES1,3001,,20,NE,2014,2014,3101,2,1,1571.37381,1571.37381,3505,NO,26.56,31.88,3,3.95,6106,113.309855,123.150855,132.849911,139.409841,I,Above,Hip,0,5701,,29.22180632,0,0,,,,1,1,,0.03,nav,1,2014,2,, 23552,NJBF000059086,28 N BRUNSWICK AVE,Margate City,NJ,39.33351358,-74.4963256,RES1,3001,,17,NE,1948,1948,3102,2,1,903.5634876,903.5634876,3505,NO,30.17,44.98,3,8.75,6106,113.508739,123.310739,133.017943,139.592395,I,Above,Gable,0,5701,,37.57125,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23553,NJBF000053577,32 S ADAMS AVE,Margate City,NJ,39.320464,-74.5136255,RES1,3001,,17,NE,1954,1954,3102,1,1,1136.741913,1136.741913,3507,NO,19.95,27.68,1,1.09,6106,113.319377,123.153887,132.843423,139.410594,I,Above,Hip,0,5701,,23.81478966,0,0,,,,1,1,,0.03,nav,1,1954,1,, 23554,NJBF000060677,55 BAYSIDE COURT,Margate City,NJ,39.33638694,-74.51076454,RES1,3001,,19,NE,1989,1989,3102,2,1,1883.147279,1883.147279,3505,NO,28.09,33.52,3,-0.11,6106,113.149489,123.022651,132.718914,139.257538,I,Above,Hip,0,5701,,30.80641237,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 23555,NJBF000056546,7 N JEROME AVE,Margate City,NJ,39.32871576,-74.50393511,RES1,3001,,17,NE,1943,1943,3102,2,1,1323.595334,1323.595334,3505,NO,27.61,42.45,3,6.33,6106,113.409485,123.23017,132.929883,139.50302,I,Above,Hip,0,5701,,35.02682727,0,1.1,,,,1,1,,0.03,nav,1,1943,2,, 23556,NJBF000053657,17 S JEFFERSON AVE,Margate City,NJ,39.3207755,-74.5147905,RES1,3001,,16,NE,1915,1915,3102,2,1,839.6939078,839.6939078,3507,NO,25.07,35.26,1,2.8,6106,113.28933,123.129815,132.818805,139.383227,I,Above,Gable,0,5701,,30.16513101,0,0,,,,1,1,,0.03,nav,1,1915,2,, 23557,NJBF000055622,206 N VENDOME AVE,Margate City,NJ,39.32659493,-74.51377624,RES1,3001,,17,NE,1930,1930,3102,2,1,1056.494545,1056.494545,3505,NO,43.64,57.35,3,4.92,6106,113.224562,123.080724,132.772925,139.329977,I,Above,Gable,0,5701,,50.4919177,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23558,NJBF000059206,13 EAST DRIVE,Margate City,NJ,39.33377547,-74.4939163,RES1,3001,,18,NE,1925,1925,3102,2,1,1027.644095,1027.644095,3505,NO,26.35,31.5,3,-2.81,6106,113.558229,123.350585,133.060022,139.637343,I,Above,Gable,0,5701,,28.92466612,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23559,NJBF000056901,18 S FRANKLIN AVE,Margate City,NJ,39.329496,-74.49789439,RES1,3001,,28,NE,1928,1928,3102,2,2,1608.672556,1608.672556,3505,NO,28.36,34.83,3,4.26,6106,113.531087,123.328218,133.033066,139.615951,I,Above,Flat,0,5701,,31.59735051,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 23560,NJBF000063188,7805 BAYSHORE DR,Margate City,NJ,39.3410956,-74.50667908,RES1,3001,,20,NE,2007,2007,3102,2,1,3330.14904,3330.14904,3505,NO,36,46.5,3,7.6,6106,113.174647,123.04218,132.741433,139.271354,I,Above,Hip,0,5701,,41.2520561,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 23561,NJBF000060264,221 N CLERMONT AVE,Margate City,NJ,39.33567688,-74.49940658,RES1,3001,,20,NE,2015,2015,3103,4,1,1185.58877,1185.58877,3505,NO,69.05,74.61,3,-2.59,6106,113.410497,123.231798,132.936675,139.498669,I,Above,Gable,0,5701,,71.83210025,0,0,,,,1,1,,0.03,nav,1,2015,4,, 23562,NJBF000054859,,Margate City,NJ,39.32449609,-74.51822361,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6712.368029,6712.368029,3501,NO,14.36,21.86,7,2.8,6106,113.158594,123.026579,132.715369,139.26653,I,Above,Hip,0,5701,,18.11029314,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23563,NJBF000057977,211 N JEROME AVE,Margate City,NJ,39.33148733,-74.506598,RES1,3001,,17,NE,1955,1955,3102,2,1,1304.582254,1304.582254,3505,NO,30.95,40.25,3,1.92,6106,113.311052,123.151675,132.850135,139.41142,I,Above,Hip,0,5701,,35.60031855,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 23564,NJBF000056322,15 S HUNTINGTON AVE,Margate City,NJ,39.3282096,-74.50024223,RES1,3001,,20,NE,2009,2009,3102,3,1,1047.919743,1047.919743,3505,NO,32.62,38.18,3,-2.63,6106,113.497922,123.301214,133.003694,139.58494,I,Above,Hip,0,5701,,35.40293429,0,0,,,,1,1,,0.03,nav,1,2009,3,, 23565,NJBF000057033,421 N UNION AVE,Margate City,NJ,39.32977449,-74.51534813,RES1,3001,,17,NE,1962,1962,3102,2,1,1359.213192,1359.213192,3505,NO,32.72,40.29,3,2.07,6106,113.143394,123.016701,132.708942,139.255699,I,Above,Hip,0,5701,,36.50406355,0,0,,,,1,1,,0.03,nav,1,1962,2,, 23566,NJBF000058613,7406 VENTNOR AVE,Margate City,NJ,39.33260769,-74.49331243,RES1,3001,,22,NE,2016,2016,3102,3,1,1294.670762,1294.670762,3505,NO,58.25,66.5,3,4.22,6106,113.587883,123.374405,133.084153,139.666416,I,Above,Gable,0,5701,,62.37318664,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 23567,NJBF000055205,108 S KENYON AVE,Margate City,NJ,39.325438,-74.5028615,RES1,3001,,19,NE,1937,1937,3102,3,1,1775.934986,1775.934986,3505,NO,65.22,72.9,3,7.63,6106,113.480652,123.286435,132.985814,139.566915,I,Above,Flat,0,5701,,69.05920386,0,1.1,,,,1,1,,0.03,nav,1,1937,3,, 23568,NJBF000063909,7507 BAYSHORE DR,Margate City,NJ,39.34304926,-74.50363731,RES1,3001,,20,NE,1984,1984,3102,2,1,4546.982612,4546.982612,3505,NO,36.39,41.85,3,1.89,6106,113.21566,123.074378,132.775884,139.302797,I,Above,Hip,0,5701,,39.11840608,0,0,,,,1,1,,0.03,nav,1,1984,2,, 23569,NJBF000060819,211 N BRUNSWICK DR,Margate City,NJ,39.3365882,-74.49850902,RES1,3001,,17,NE,1950,1950,3103,2,1,1173.465629,1173.465629,3505,NO,28.97,38.36,3,2.91,6106,113.417679,123.237521,132.943275,139.503366,I,Above,Hip,0,5701,,33.66375516,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23570,NJBF000056050,103 N PEMBROKE AVE,Margate City,NJ,39.32761121,-74.50859636,RES1,3001,,17,NE,1922,1922,3102,2,1,2201.561773,2201.561773,3505,NO,23.7,29.9,3,-2.79,6106,113.323179,123.160427,132.856379,139.4224,I,Above,Gable,0,5701,,26.8012956,0,0,,,,1,1,,0.03,nav,1,1922,2,, 23571,NJBF000054880,9500-06 AMHERST AVE,Margate City,NJ,39.32455105,-74.51888674,RES3B,3001,,20,ME,1956,1956,3301,2,1,2376.905965,2376.905965,3505,NO,20.6,32.76,3,-1.92,6106,113.143312,123.014296,132.702748,139.252314,I,Above,Gable,0,5701,,26.68045845,0,0,,,,1,1,,0.03,nav,1,1956,2,, 23572,NJBF000058085,21 N EXETER AVE,Margate City,NJ,39.33168195,-74.49862915,RES1,3001,,18,NE,1982,1982,3102,2,1,1394.304766,1394.304766,3505,NO,31.2,42.19,3,3.9,6106,113.483806,123.290519,132.995327,139.571369,I,Above,Gable,0,5701,,36.69632412,0,0,,,,1,1,,0.03,nav,1,1982,2,, 23573,NJBF000058108,7 N DOUGLAS AVE,Margate City,NJ,39.33172596,-74.49725018,RES1,3001,,18,NE,1949,1949,3102,2,1,977.5097139,977.5097139,3505,NO,37.08,50.15,3,4.31,6106,113.513558,123.314465,133.020469,139.598847,I,Above,Flat,0,5701,,43.61384826,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 23574,NJBF000055774,17 N QUINCY AVE,Margate City,NJ,39.32693958,-74.50890725,RES1,3001,,18,NE,1942,1942,3102,3,1,1140.137732,1140.137732,3505,NO,44.56,56.17,3,3.97,6106,113.326166,123.162595,132.858101,139.424787,I,Above,Hip,0,5701,,50.36220528,0,0,,,,1,1,,0.03,nav,1,1942,3,, 23575,NJBF000057597,121 N JASPER AVE,Margate City,NJ,39.3308521,-74.50513903,RES1,3001,,17,NE,1952,1952,3101,1,1,1304.285243,1304.285243,3507,NO,19.63,33.67,1,2.73,6106,113.352275,123.184662,132.884054,139.449881,I,Above,Hip,0,5701,,26.65228036,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 23576,NJBF000053451,11 S MONROE AVE,Margate City,NJ,39.3199805,-74.5166175,RES1,3001,,43,NE,1950,1950,3102,2,2,1153.755078,1153.755078,3507,NO,28.08,33.54,1,-0.26,6106,113.261704,123.106966,132.794446,139.356195,I,Above,Gable,0,5701,,30.80729381,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23577,NJBF000058174,8 S BARCLAY AVE,Margate City,NJ,39.33183426,-74.49414351,RES1,3001,,19,NE,1925,1925,3102,2,1,1970.35226,1970.35226,3505,NO,42.64,56.07,3,8.99,6106,113.580441,123.368336,133.077135,139.660508,I,Above,Hip,0,5701,,49.35653021,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 23578,NJBF000058116,10 S BARCLAY AVE,Margate City,NJ,39.33174019,-74.49406571,RES1,3001,,17,NE,1950,1950,3102,2,1,1280.732619,1280.732619,3505,NO,44.51,51.05,3,8.36,6106,113.583484,123.370777,133.079625,139.663409,I,Above,Hip,0,5701,,47.7757077,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23579,NJBF000056822,116 N LANCASTER AVE,Margate City,NJ,39.32933468,-74.50707187,RES1,3001,,17,NE,1940,1940,3102,2,1,937.0015584,937.0015584,3505,NO,27.57,40.17,3,6.09,6106,113.331598,123.16771,132.865275,139.430782,I,Above,Hip,0,5701,,33.87224601,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23580,NJBF000058050,8302 AMHERST AVE,Margate City,NJ,39.33162388,-74.50668695,RES1,3001,,17,NE,1957,1957,3102,2,1,1704.234378,1704.234378,3505,NO,28.3,40.83,3,0.05,6106,113.30713,123.14855,132.846976,139.407726,I,Above,Hip,0,5701,,34.56764636,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 23581,NJBF000057896,29 N GLADSTONE AVE,Margate City,NJ,39.33134494,-74.50053216,RES1,3001,,17,NE,1953,1953,3101,1,1,2216.946754,2216.946754,3505,NO,18.69,31.03,3,3.86,6106,113.446675,123.260611,132.963748,139.537208,I,Above,Flat,0,5701,,24.85808192,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 23582,NJBF000058071,312 N LANCASTER AVE,Margate City,NJ,39.33165617,-74.5092805,RES1,3001,,17,NE,1960,1960,3102,2,1,1157.739162,1157.739162,3505,NO,26.69,36.86,3,3.51,6106,113.249544,123.102346,132.798935,139.354264,I,Above,Gable,0,5701,,31.77447556,0,0,,,,1,1,,0.03,nav,1,1960,2,, 23583,NJBF000055320,113 N WILSON AVE,Margate City,NJ,39.32576864,-74.51335112,RES1,3001,,47,NE,1948,1948,3102,2,2,888.6758334,888.6758334,3505,NO,32.06,44.5,3,8.27,6106,113.246075,123.097671,132.789828,139.349364,I,Above,Gable,0,5701,,38.27815899,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23584,NJBF000056736,308 N RUMSON AVE,Margate City,NJ,39.32914315,-74.51251117,RES1,3001,,20,NE,1992,1992,3102,2,1,2008.347574,2008.347574,3505,NO,33,41.32,3,8.85,6106,113.214898,123.073906,132.767721,139.322193,I,Above,Hip,0,5701,,37.15573805,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 23585,NJBF000058040,208 N IROQUOIS AVE,Margate City,NJ,39.33159339,-74.50553902,RES1,3001,,17,NE,1952,1952,3101,1,1,1028.341126,1028.341126,3505,NO,13.71,24.48,3,-2.24,6106,113.332859,123.1692,132.868466,139.431605,I,Above,Gable,0,5701,,19.09560721,0,0,,,,1,1,,0.03,nav,1,1952,1,, 23586,NJBF000061899,423 N DELAVAN AVE,Margate City,NJ,39.3384344,-74.50280724,RES1,3001,,17,NE,1952,1952,3102,2,1,2078.129806,2078.129806,3505,NO,29.94,35.13,3,1.13,6106,113.297058,123.140597,132.84289,139.389289,I,Above,Hip,0,5701,,32.53851815,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23587,NJBF000060258,104 N FREDERICKSBURG AVE,Margate City,NJ,39.33567001,-74.49515695,RES1,3001,,17,NE,1949,1949,3102,1,1,2429.321935,2429.321935,3505,NO,21.91,35.26,3,6.38,6106,113.504463,123.307314,133.015932,139.584403,I,Above,Gable,0,5701,,28.58417973,0,0,,,,1,1,,0.03,nav,1,1949,1,, 23588,NJBF000056432,206 N QUINCY AVE,Margate City,NJ,39.32845825,-74.51094729,RES1,3001,,17,NE,1946,1946,3101,1,1,1236.700979,1236.700979,3505,NO,17.52,28.2,3,1.58,6106,113.259227,123.109297,132.803924,139.363265,I,Above,Hip,0,5701,,22.86124411,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 23589,NJBF000057980,310 N LANCASTER AVE,Margate City,NJ,39.33149044,-74.50916155,RES1,3001,,18,NE,1960,1960,3102,2,1,1608.326869,1608.326869,3505,NO,34.35,41.8,3,0,6106,113.254549,123.10633,132.802965,139.35897,I,Above,Hip,0,5701,,38.07568532,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 23590,NJBF000056160,19 N NASSAU AVE,Margate City,NJ,39.3278588,-74.50702437,RES1,3001,,17,NE,1947,1947,3102,2,1,1579.666785,1579.666785,3505,NO,36.55,49.95,3,8.34,6106,113.354063,123.185347,132.882493,139.45123,I,Above,Hip,0,5701,,43.25101096,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 23591,NJBF000054267,9415 WINCHESTER AVE,Margate City,NJ,39.32291459,-74.51668137,RES3B,3001,,20,ME,2007,2007,3301,2,1,1936.469218,1936.469218,3505,NO,29.55,36,3,7.84,6106,113.215962,123.071914,132.760863,139.318142,I,Above,Hip,0,5701,,32.77593299,0,0,,,,1,1,,0.03,nav,1,2007,2,, 23592,NJBF000055671,17 S KENYON AVE,Margate City,NJ,39.32670242,-74.5034057,RES1,3001,,18,NE,1953,1953,3102,2,1,1101.511941,1101.511941,3505,NO,30.25,43.74,3,-0.62,6106,113.450284,123.262412,132.961853,139.539892,I,Above,Hip,0,5701,,36.99834165,0,0,,,,1,1,,0.03,nav,1,1953,2,, 23593,NJBF000057904,,Margate City,NJ,39.33136631,-74.49550285,RES1,3001,,NaN,NE,1949,0,3102,2,1,1161.503078,1161.503078,3505,NO,24.82,39.15,3,-1.44,6106,113.557122,123.349495,133.05695,139.639389,I,Above,Gable,0,5701,,31.98468384,0,0,,,,1,1,,0.03,nav,1,1949,2,, 23594,NJBF000053588,9 S MADISON AVE,Margate City,NJ,39.32049879,-74.51580064,RES1,3001,,43,NE,1937,1937,3102,2,2,1087.130473,1087.130473,3507,NO,37.94,50.43,1,1.16,6106,113.271561,123.115281,132.803521,139.366251,I,Above,Flat,0,5701,,44.18357222,0,0,,,,1,1,,0.03,nav,1,1937,2,, 23595,NJBF000060970,412 N ESSEX AVE,Margate City,NJ,39.3368354,-74.50352647,RES1,3001,,17,NE,1952,1952,3102,2,1,1656.567696,1656.567696,3505,NO,32.3,39.17,3,-2.08,6106,113.303316,123.145769,132.847388,139.398336,I,Above,Gable,0,5701,,35.73407887,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23596,NJBF000058459,8 S ANDOVER AVE,Margate City,NJ,39.33235463,-74.49308215,RES1,3001,,19,NE,1925,1925,3102,2,1,1465.425084,1465.425084,3505,NO,22.43,31.43,3,1.36,6106,113.596502,123.381329,133.091233,139.674686,I,Above,Gable,0,5701,,26.92992215,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23597,NJBF000053834,103 N COOLIDGE AVE,Margate City,NJ,39.32145492,-74.51941607,RES1,3001,,17,NE,1938,1938,3109,2,1,1123.330336,1123.330336,3505,NO,36.24,42.22,3,1.28,6106,113.178529,123.040766,132.727483,139.281123,I,Above,Gable,0,5701,,39.22603989,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 23598,NJBF000054150,22 S VENDOME AVE,Margate City,NJ,39.32255659,-74.50991604,RES1,3001,,22,NE,2017,2017,3103,4,1,1167.462011,1167.462011,3505,NO,70.23,81.61,3,8.37,6106,113.368834,123.195015,132.888014,139.459752,I,Above,Hip,0,5701,,75.92116902,0,0,,,,1,1,,0.03,nav,1,2017,4,, 23599,NJBF000054170,111 S THURLOW AVE,Margate City,NJ,39.32260939,-74.5075394,RES1,3001,,20,NE,1985,1985,3103,4,1,1818.037259,1818.037259,3505,NO,59.73,68.03,3,5.95,6106,113.419956,123.236278,132.930944,139.507164,I,Above,Gable,0,5701,,63.88180817,0,0,,,,1,1,,0.03,nav,1,1985,4,, 23600,NJBF000062697,604 N CLERMONT AVE,Margate City,NJ,39.34003634,-74.50412051,RES1,3001,,18,NE,1962,1962,3102,2,1,1537.366797,1537.366797,3505,NO,31.34,45.78,3,8.63,6106,113.245903,123.099378,132.800644,139.338846,I,Above,Gable,0,5701,,38.56247122,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 23601,NJBF000057994,22 N EXETER AVE,Margate City,NJ,39.33152139,-74.49911236,RES1,3001,,17,NE,1950,1950,3102,1,1,1046.892383,1046.892383,3505,NO,15.56,29.17,3,0.42,6106,113.47545,123.283777,132.988138,139.563746,I,Above,Gable,0,5701,,22.36301904,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23602,NJBF000056895,8715 AMHERST AVE,Margate City,NJ,39.32948502,-74.51115204,RES1,3001,,17,NE,1929,1929,3102,2,1,1589.97832,1589.97832,3505,NO,35.68,43.65,3,7.49,6106,113.239765,123.09398,132.788772,139.345404,I,Above,Hip,0,5701,,39.66439376,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 23603,NJBF000054277,220 N COOLIDGE AVE,Margate City,NJ,39.32295182,-74.52133574,RES1,3001,,30,NE,1997,1997,3102,2,2,1770.731805,1770.731805,3507,NO,25.76,31.26,1,1.2,6106,113.114106,122.989755,132.676219,139.223066,I,Above,Gable,0,5701,,28.5107831,0,0,,,,1,1,,0.03,nav,1,1997,2,, 23604,NJBF000055670,203 N VENDOME AVE,Margate City,NJ,39.3267021,-74.51333509,RES1,3001,,17,NE,1925,1925,3102,2,1,2634.072657,2634.072657,3505,NO,38.37,52.4,3,4.4,6106,113.232638,123.087266,132.779778,139.337579,I,Above,Hip,0,5701,,45.38669465,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 23605,NJBF000056986,10 S FRANKLIN AVE,Margate City,NJ,39.32967867,-74.498089,RES1,3001,,28,NE,1928,1928,3102,2,2,2541.09833,2541.09833,3505,NO,21.5,35.8,3,-0.9,6106,113.524184,123.322696,133.027431,139.609544,I,Above,Gable,0,5701,,28.6539176,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 23606,NJBF000055402,110 PLYMOUTH RD,Margate City,NJ,39.32598686,-74.50111806,RES1,3001,,20,NE,1987,1987,3102,3,1,3058.124603,3058.124603,3505,NO,57.55,68.49,3,6.38,6106,113.510861,123.310974,133.011947,139.59543,I,Above,Flat,0,5701,,63.02241202,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 23607,NJBF000060546,19 W GILMAR CIRCLE,Margate City,NJ,39.33616464,-74.50662388,RES1,3001,,17,NE,1965,1965,3101,2,1,1329.119034,1329.119034,3505,NO,38.29,50.54,3,7.41,6110,113.244169,123.098418,132.797603,139.345125,I,Above,Gable,0,5701,,44.41528774,0,0,,,,1,1,,0.35,nav,1,1965,2,, 23608,NJBF000053414,9712 VENTNOR AVE,Margate City,NJ,39.3198425,-74.51793648,COM4,3001,,NaN,ME,2005,0,3401,1,1,1875.17508,1875.17508,3507,NO,11.74,24.53,1,-0.29,6106,113.23516,123.085411,132.772066,139.331257,I,Above,Flat,0,NaN,,18.13204723,0,0,,,,1,1,,0.03,nav,1,2005,1,, 23609,NJBF000059040,108 N DOUGLAS AVE,Margate City,NJ,39.3334167,-74.4992249,RES1,3001,,18,NE,1978,1978,3103,2,1,1504.291567,1504.291567,3505,NO,40.27,49.39,3,5.74,6106,113.446166,123.260415,132.965088,139.53494,I,Above,Hip,0,5701,,44.82702507,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 23610,NJBF000053843,11 S ADAMS AVE,Margate City,NJ,39.32149273,-74.51396428,RES3D,3001,,20,ME,1985,1985,3301,1,1,5978.362235,5978.362235,3505,NO,15.26,20.8,3,1.4,6106,113.296519,123.136066,132.825932,139.391057,I,Above,Flat,0,NaN,,18.02931612,0,0,,,,1,1,,0.03,nav,1,1985,1,, 23611,NJBF000059357,202 N ESSEX AVE,Margate City,NJ,39.33408083,-74.50062082,RES1,3001,,17,NE,1950,1950,3101,1,1,1671.821752,1671.821752,3507,NO,15.01,20.22,1,-0.27,6106,113.406027,123.228199,132.931824,139.497116,I,Above,Gable,0,5701,,17.61538209,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23612,NJBF000057091,115 N KENYON AVE,Margate City,NJ,39.32990687,-74.50611674,RES1,3001,,17,NE,1950,1950,3101,1,1,2192.995545,2192.995545,3505,NO,21.02,30.03,3,1.97,6106,113.344338,123.178087,132.876507,139.442648,I,Above,Flat,0,5701,,25.52326775,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23613,NJBF000057372,6 N FRONTENAC AVE,Margate City,NJ,39.33045116,-74.49958263,RES1,3001,,21,NE,2003,2003,3102,3,1,1004.05107,1004.05107,3505,NO,33.31,47.91,3,-1.03,6106,113.480299,123.287514,132.991207,139.568725,I,Above,Gable,0,5701,,40.61206318,0,0,,,,1,1,,0.03,nav,1,2003,3,, 23614,NJBF000057316,4 N FRONTENAC AVE,Margate City,NJ,39.33035283,-74.49953826,RES1,3001,,17,NE,1921,1921,3102,2,1,1441.772336,1441.772336,3505,NO,29.89,44.51,3,6.44,6106,113.482687,123.289418,132.993123,139.570964,I,Above,Gable,0,5701,,37.20430689,0,1.1,,,,1,1,,0.03,nav,1,1921,2,, 23615,NJBF000061139,416 N GLADSTONE AVE,Margate City,NJ,39.33712707,-74.50623451,RES1,3001,,19,NE,1990,1990,3101,3,1,1752.256789,1752.256789,3505,NO,39.34,48.6,3,3.97,6106,113.239318,123.094495,132.794046,139.339097,I,Above,Hip,0,5701,,43.96983919,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 23616,NJBF000056181,106 N OSBORNE AVE,Margate City,NJ,39.32790366,-74.50855111,RES1,3001,,19,NE,1992,1992,3102,3,1,1430.126091,1430.126091,3505,NO,39.38,53.22,3,-2.03,6106,113.319893,123.157882,132.853961,139.419485,I,Above,Hip,0,5701,,46.29945377,0,1.1,,,,1,1,,0.03,nav,1,1992,3,, 23617,NJBF000059855,218 N DELAVAN AVE,Margate City,NJ,39.33497153,-74.49998155,RES1,3001,,17,NE,1950,1950,3103,4,1,1598.262655,1598.262655,3505,NO,54.89,67.07,3,3.28,6106,113.40764,123.229513,132.933809,139.497284,I,Above,Gable,0,5701,,60.97885173,0,0,,,,1,1,,0.03,nav,1,1950,4,, 23618,NJBF000057543,104 S ARGYLE AVE,Margate City,NJ,39.33075224,-74.49253532,RES1,3001,,19,NE,1925,1925,3102,3,1,1471.019753,1471.019753,3505,NO,53.51,63.5,3,-0.21,6106,113.631127,123.409056,133.119058,139.708225,I,Above,Flat,0,5701,,58.5081336,0,0,,,,1,1,,0.03,nav,1,1925,3,, 23619,NJBF000055583,15A N RUMSON AVE,Margate City,NJ,39.32648884,-74.5094144,RES1,3001,,18,NE,1987,1987,3102,2,1,1792.95003,1792.95003,3505,NO,39.55,46.24,3,5.18,6106,113.321664,123.158804,132.8538,139.420288,I,Above,Gable,0,5701,,42.89463852,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 23620,NJBF000056785,15 S FRONTENAC AVE,Margate City,NJ,39.32925913,-74.49810311,RES1,3001,,20,NE,2006,2006,3102,2,1,1601.213521,1601.213521,3505,NO,34.01,42.98,3,1.89,6106,113.529879,123.327196,133.031794,139.614824,I,Above,Hip,0,5701,,38.49788297,0,0,,,,1,1,,0.03,nav,1,2006,2,, 23621,NJBF000061361,16 HARBOUR LANE,Margate City,NJ,39.33750336,-74.50834482,RES1,3001,,18,NE,1978,1978,3102,3,1,2217.984438,2217.984438,3505,NO,37.5,52.07,3,-2.11,6106,113.187377,123.052912,132.750934,139.290728,I,Above,Gable,0,5701,,44.78583172,0,0,,,,1,1,,0.03,nav,1,1978,3,, 23622,NJBF000054248,,Margate City,NJ,39.32284517,-74.50597053,RES1,3002,,NaN,NE,1969,0,3101,1,1,1784.081426,1784.081426,3502,NO,17.79,23.06,5,6.92,6106,113.450713,123.261201,132.957108,139.535946,I,Above,Flat,0,5701,,20.42213724,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23623,NJBF000062586,7809 BURK AVE,Margate City,NJ,39.33976732,-74.50658229,RES1,3001,,18,NE,1969,1969,3102,2,1,1718.504266,1718.504266,3505,NO,19.01,32.49,3,-2.81,6106,113.195038,123.058755,132.758119,139.293185,I,Above,Flat,0,5701,,25.74992053,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23624,NJBF000053287,22 S MONROE AVE,Margate City,NJ,39.3193895,-74.5167695,RES1,3001,,45,NE,1952,1952,3101,2,3,726.3822254,726.3822254,3505,NO,20.08,33.66,3,-1.03,6106,113.267388,123.111148,132.798207,139.360423,I,Above,Hip,0,5701,,26.87054217,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23625,NJBF000053282,22 S MONROE AVE,Margate City,NJ,39.3193771,-74.51655201,RES1,3001,,45,NE,1952,1952,3102,2,3,1255.86811,1255.86811,3507,NO,28.59,43.43,1,1.1,6106,113.272278,123.115095,132.802272,139.364946,I,Above,Flat,0,5701,,36.01192326,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23626,NJBF000059313,7 CIRCLE DRIVE,Margate City,NJ,39.3339891,-74.49468619,RES1,3001,,20,NE,2012,2012,3102,2,1,2009.291765,2009.291765,3505,NO,36.61,41.7,3,8.53,6106,113.538259,123.334514,133.043285,139.618689,I,Above,Hip,0,5701,,39.15543715,0,1.1,,,,1,1,,0.03,nav,1,2012,2,, 23627,NJBF000056254,9 S IROQUOIS AVE,Margate City,NJ,39.32806378,-74.50156799,RES1,3001,,20,NE,1940,1940,3102,2,1,1415.179859,1415.179859,3505,NO,31.76,41.66,3,1.86,6106,113.470899,123.279418,132.980776,139.559811,I,Above,Hip,0,5701,,36.70838886,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23628,NJBF000057070,425 N THURLOW AVE,Margate City,NJ,39.32985797,-74.51450017,RES1,3001,,18,NE,1981,1981,3102,2,1,1615.730068,1615.730068,3505,NO,40.58,55.24,3,5.73,6106,113.160789,123.030689,132.723462,139.271919,I,Above,Gable,0,5701,,47.9118017,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 23629,NJBF000061328,603 N HUNTINGTON AVE,Margate City,NJ,39.33744692,-74.50881998,RES1,3001,,18,NE,1974,1974,3102,2,1,2142.9961,2142.9961,3505,NO,31.35,41.63,3,0.99,6106,113.177647,123.045133,132.742813,139.281877,I,Above,Gable,0,5701,,36.49017387,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 23630,NJBF000059779,17 E COLMAR CIRCLE,Margate City,NJ,39.33483434,-74.50446098,RES1,3001,,17,NE,1959,1959,3101,1,1,1576.225045,1576.225045,3505,NO,22.7,30.09,3,8.61,6106,113.310661,123.151695,132.852364,139.408253,I,Above,Gable,0,5701,,26.39346077,0,0,,,,1,1,,0.03,nav,1,1959,1,, 23631,NJBF000058816,19 N CLARENDON AVE,Margate City,NJ,39.33298186,-74.49606981,RES1,3001,,17,NE,1950,1950,3102,2,1,1108.066679,1108.066679,3505,NO,30.18,40.67,3,8.09,6106,113.521852,123.321258,133.028582,139.605191,I,Above,Flat,0,5701,,35.42362977,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23632,NJBF000055079,109 S MANSFIELD AVE,Margate City,NJ,39.32507652,-74.50358833,RES1,3001,,21,NE,2003,2003,3102,3,1,1459.81034,1459.81034,3505,NO,52.46,66.47,3,-1.04,6106,113.470001,123.277715,132.976387,139.556669,I,Above,Flat,0,5701,,59.4618183,0,0,,,,1,1,,0.03,nav,1,2003,3,, 23633,NJBF000060319,8095 FULTON AVE,Margate City,NJ,39.3357675,-74.5054755,RES1,3001,,17,NE,1962,1962,3101,2,1,1330.256355,1330.256355,3505,NO,31.64,44.58,3,1.83,6106,113.275114,123.12321,132.823217,139.374205,I,Above,Flat,0,5701,,38.10957244,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 23634,NJBF000053758,,Margate City,NJ,39.3211585,-74.5165085,RES1,3001,,NaN,NE,1969,0,3102,2,1,1245.535598,1245.535598,3507,NO,26,34.28,1,1.28,6106,113.246185,123.095216,132.783393,139.343727,I,Above,Flat,0,5701,,30.14274506,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23635,NJBF000053044,102 S COOLIDGE AVE,Margate City,NJ,39.31841605,-74.51697305,RES1,3001,,17,NE,1924,1924,3102,2,1,1100.405902,1100.405902,3507,NO,26.33,35.29,1,2.64,6106,113.277794,123.118862,132.805231,139.368255,I,Above,Flat,0,5701,,30.80870014,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 23636,NJBF000061006,412 N GLADSTONE AVE,Margate City,NJ,39.3368952,-74.50595941,RES1,3001,,18,NE,1986,1986,3101,2,1,963.5290788,963.5290788,3505,NO,33.27,40.43,3,6.58,6106,113.248662,123.101989,132.801732,139.34808,I,Above,Hip,0,5701,,36.84710464,0,0,,,,1,1,,0.03,nav,1,1986,2,, 23637,NJBF000060935,410 N GLADSTONE AVE,Margate City,NJ,39.33678235,-74.50587261,RES1,3001,,18,NE,1986,1986,3101,2,1,1617.535368,1617.535368,3505,NO,33.67,41.57,3,-0.89,6106,113.252142,123.104781,132.804581,139.35147,I,Above,Gable,0,5701,,37.62197353,0,0,,,,1,1,,0.03,nav,1,1986,2,, 23638,NJBF000054765,9005 VENTNOR AVE,Margate City,NJ,39.32425347,-74.51159377,RES1,3001,,22,NE,2017,2017,3102,3,1,2758.718668,2758.718668,3505,NO,61.84,73.49,3,6.43,6106,113.306964,123.145995,132.838652,139.404508,I,Above,Hip,0,5701,,67.66533258,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 23639,NJBF000054491,12 N BENSON AVE,Margate City,NJ,39.32352478,-74.51340496,RES1,3001,,18,NE,1930,1930,3102,2,1,1139.57558,1139.57558,3505,NO,36.88,47.82,3,8.45,6106,113.278252,123.122486,132.813673,139.376936,I,Above,Flat,0,5701,,42.34757792,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23640,NJBF000055198,7 N THURLOW AVE,Margate City,NJ,39.32542567,-74.51026729,RES1,3001,,21,NE,2010,2010,3102,3,1,1860.510529,1860.510529,3505,NO,48.09,55.79,3,4.43,6106,113.318625,123.155924,132.849939,139.416569,I,Above,Gable,0,5701,,51.93992976,0,0,,,,1,1,,0.03,nav,1,2010,3,, 23641,NJBF000059250,109 N DELAVAN AVE,Margate City,NJ,39.3338619,-74.49845817,RES1,3001,,17,NE,1925,1925,3103,1,1,1120.829766,1120.829766,3505,NO,15.53,20.89,3,2.16,6106,113.456831,123.26901,132.974419,139.544175,I,Above,Gable,0,5701,,18.20820401,0,0,,,,1,1,,0.03,nav,1,1925,1,, 23642,NJBF000055175,8706 VENTNOR AVE,Margate City,NJ,39.3253669,-74.50737965,RES1,3001,,20,NE,1930,1930,3103,3,1,3752.494035,3752.494035,3505,NO,58.73,70.19,3,4.03,6106,113.382696,123.207494,132.903479,139.476033,I,Above,Flat,0,5701,,64.45870446,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 23643,NJBF000056192,214 N SUMNER AVE,Margate City,NJ,39.32793175,-74.51229276,RES1,3001,,17,NE,1955,1955,3101,1,1,1146.927761,1146.927761,3505,NO,11.71,17.71,3,-0.36,6106,113.237389,123.091565,132.785152,139.34272,I,Above,Gable,0,5701,,14.71247893,0,0,,,,1,1,,0.03,nav,1,1955,1,, 23644,NJBF000056407,9101 FREMONT AVE,Margate City,NJ,39.32840518,-74.51591542,RES1,3001,,22,NE,2001,2001,3102,2,1,3697.73229,3697.73229,3505,NO,33.56,48.32,3,2.5,6106,113.151027,123.022345,132.713863,139.262436,I,Above,Hip,0,5701,,40.93725232,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 23645,NJBF000058520,203 N HAVERFORD AVE,Margate City,NJ,39.33245731,-74.50342216,RES1,3001,,17,NE,1950,1950,3101,1,1,1115.676848,1115.676848,3505,NO,16.22,27.98,3,2.55,6106,113.367194,123.196889,132.897959,139.462913,I,Above,Hip,0,5701,,22.09958228,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23646,NJBF000055576,206 N WILSON AVE,Margate City,NJ,39.3264648,-74.51448965,RES1,3001,,47,NE,1950,1950,3102,2,2,905.7780458,905.7780458,3505,NO,29.37,40.25,3,2.61,6106,113.210855,123.069641,132.761358,139.317106,I,Above,Flat,0,5701,,34.80874407,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23647,NJBF000053849,11 N MADISON AVE,Margate City,NJ,39.32151592,-74.51671093,RES1,3001,,20,NE,2006,2006,3102,2,1,3364.99331,3364.99331,3507,NO,26.47,32.52,1,0.86,6106,113.236396,123.087541,132.775787,139.335171,I,Above,Hip,0,5701,,29.49134172,0,0,,,,1,1,,0.03,nav,1,2006,2,, 23648,NJBF000061579,15 ESSEX CT,Margate City,NJ,39.33789538,-74.5044983,RES1,3001,,19,NE,1959,1959,3102,2,1,2171.216454,2171.216454,3505,NO,33.61,48,3,5.38,6106,113.267078,123.116653,132.817579,139.363083,I,Above,Hip,0,5701,,40.80516291,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 23649,NJBF000055302,11 S NASSAU AVE,Margate City,NJ,39.32571634,-74.50490995,RES1,3001,,19,NE,1925,1925,3102,2,1,1788.442274,1788.442274,3505,NO,40.44,45.97,3,4.72,6106,113.431688,123.247089,132.945015,139.521818,I,Above,Hip,0,5701,,43.20455003,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 23650,NJBF000062178,7807 MARSHALL AVE,Margate City,NJ,39.33893027,-74.50538772,RES1,3001,,18,NE,1970,1970,3102,2,1,4185.384318,4185.384318,3505,NO,29.53,43.79,3,0.81,6106,113.233044,123.089284,132.789555,139.329771,I,Above,Hip,0,5701,,36.66381551,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 23651,NJBF000055117,112 S KENYON AVE,Margate City,NJ,39.32518698,-74.50265418,RES1,3001,,22,NE,2001,2001,3102,3,1,1454.496528,1454.496528,3505,NO,54.78,65.74,3,7.57,6106,113.488854,123.292951,132.992391,139.57424,I,Above,Gable,0,5701,,60.25831527,0,0,,,,1,1,,0.03,nav,1,2001,3,, 23652,NJBF000054234,111 S SUMNER AVE,Margate City,NJ,39.32281111,-74.50683381,RES1,3001,,20,NE,1949,1949,3102,2,1,2383.076487,2383.076487,3505,NO,35.03,48.09,3,3.84,6106,113.43236,123.246382,132.941647,139.518931,I,Above,Hip,0,5701,,41.55652827,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 23653,NJBF000057097,17 S ESSEX AVE,Margate City,NJ,39.32992016,-74.49671331,COM1,3001,,NaN,ME,1930,1930,3401,3,3,1436.630048,1436.630048,3507,NO,57.99,71.68,1,1.84,6106,113.551013,123.344349,133.050342,139.634386,I,Above,Flat,0,NaN,,64.83740841,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 23654,NJBF000055711,9104 FREMONT AVE,Margate City,NJ,39.32679542,-74.51607579,RES1,3001,,47,NE,1950,1950,3102,2,2,820.0575427,820.0575427,3505,NO,37.13,46.26,3,8.2,6106,113.171264,123.037941,132.728835,139.280423,I,Above,Gable,0,5701,,41.69373566,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23655,NJBF000057095,7 S FRANKLIN AVE,Margate City,NJ,39.32991704,-74.49771341,COM1,3001,,20,ME,1973,1973,3401,2,1,3749.85654,3749.85654,3507,NO,26.29,32.11,1,1.36,6106,113.529059,123.326667,133.031793,139.614038,I,Above,Gable,0,NaN,,29.19818442,0,0,,,,1,1,,0.03,nav,1,1973,2,, 23656,NJBF000061261,417 N ESSEX AVE,Margate City,NJ,39.3373338,-74.50345626,RES1,3001,,17,NE,1952,1952,3102,1,1,2163.55595,2163.55595,3505,NO,20.76,31.18,3,4.52,6106,113.297925,123.141412,132.843125,139.392439,I,Above,Gable,0,5701,,25.96675339,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 23657,NJBF000061346,419 N ESSEX AVE,Margate City,NJ,39.33748039,-74.50360788,RES1,3001,,17,NE,1952,1952,3102,1,1,2470.101883,2470.101883,3505,NO,14.49,23.54,3,3.67,6106,113.292534,123.137081,132.838683,139.387214,I,Above,Gable,0,5701,,19.01230597,0,0,,,,1,1,,0.03,nav,1,1952,1,, 23658,NJBF000054672,201B N JEFFERSON AVE,Margate City,NJ,39.32403148,-74.51793558,RES1,3001,,30,NE,2000,2000,3102,2,2,1846.900605,1846.900605,3507,NO,23,29.32,1,1.55,6106,113.171848,123.036997,132.725745,139.278382,I,Above,Hip,0,5701,,26.16259901,0,0,,,,1,1,,0.03,nav,1,2000,2,, 23659,NJBF000060177,212 N CLARENDON AVE,Margate City,NJ,39.33553207,-74.49901096,RES1,3001,,18,NE,1950,1950,3103,1,1,1896.198571,1896.198571,3505,NO,26.66,31.94,3,7.38,6106,113.421266,123.240449,132.945645,139.508797,I,Above,Hip,0,5701,,29.29915155,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23660,NJBF000060014,121 N BRUNSWICK AVE,Margate City,NJ,39.33524152,-74.49751671,RES1,3001,,17,NE,1948,1948,3102,1,1,985.0272424,985.0272424,3505,NO,22.22,36.39,3,6.09,6110,113.458302,123.27021,132.976659,139.543227,I,Above,Flat,0,5701,,29.30169532,0,1.1,,,,1,1,,0.35,nav,1,1948,1,, 23661,NJBF000056135,105 S GRANVILLE AVE,Margate City,NJ,39.32779422,-74.49846248,RES1,3001,,20,NE,1987,1987,3102,2,2,2515.565964,2515.565964,3505,NO,44.58,50.24,3,7.51,6106,113.543009,123.337425,133.041245,139.62656,I,Above,Flat,0,5701,,47.41378853,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 23662,NJBF000054525,13 N DECATUR AVE,Margate City,NJ,39.323624,-74.513748,RES1,3001,,17,NE,1952,1952,3102,2,1,907.0460101,907.0460101,3505,NO,39.28,50.39,3,8.09,6106,113.269289,123.115313,132.806332,139.368719,I,Above,Flat,0,5701,,44.83475254,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23663,NJBF000062510,602 N DELAVAN AVE,Margate City,NJ,39.33960045,-74.50451967,RES1,3001,,18,NE,1962,1962,3102,2,1,1635.541784,1635.541784,3505,NO,38.78,53.59,3,7.02,6106,113.243045,123.097175,132.798128,139.337333,I,Above,Flat,0,5701,,46.18628592,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 23664,NJBF000057066,112 N JEROME AVE,Margate City,NJ,39.32985271,-74.50580131,RES1,3001,,17,NE,1958,1958,3102,3,1,1798.685578,1798.685578,3505,NO,29.47,36.71,3,-2.54,6106,113.352065,123.184285,132.882923,139.449826,I,Above,Gable,0,5701,,33.09392016,0,0,,,,1,1,,0.03,nav,1,1958,3,, 23665,NJBF000057513,,Margate City,NJ,39.330695,-74.494947,RES1,3001,,NaN,NE,1969,0,3102,2,1,1042.531134,1042.531134,3505,NO,39.52,50.77,3,0.54,6106,113.578859,123.366913,133.074689,139.659915,I,Above,Flat,0,5701,,45.14696197,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23666,NJBF000057959,20 N EXETER AVE,Margate City,NJ,39.33144972,-74.49902765,RES1,3001,,17,NE,1951,1951,3102,1,1,1453.38564,1453.38564,3505,NO,26.07,39.51,3,8.42,6106,113.478307,123.286066,132.99048,139.566434,I,Above,Gable,0,5701,,32.78698443,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 23667,NJBF000057890,7901 WINCHESTER RD,Margate City,NJ,39.33133609,-74.49928519,RES1,3001,,20,NE,2007,2007,3102,3,1,2976.43962,2976.43962,3505,NO,49.3,60.34,3,5.38,6106,113.474266,123.282799,132.98697,139.56276,I,Above,Hip,0,5701,,54.81987467,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 23668,NJBF000055163,105 N WILSON AVE,Margate City,NJ,39.32531548,-74.51292267,RES1,3001,,47,NE,1948,1948,3102,2,2,987.7400935,987.7400935,3505,NO,32.5,43.75,3,8.73,6106,113.26216,123.110412,132.802659,139.363931,I,Above,Hip,0,5701,,38.12312988,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23669,NJBF000057633,MANSFIELD AVE,Margate City,NJ,39.33091412,-74.50898511,RES1,3001,,NaN,NE,1952,0,3102,2,1,2066.972048,2066.972048,3505,NO,29.09,39.88,3,2.49,6106,113.266734,123.115991,132.812616,139.37044,I,Above,Gable,0,5701,,34.48415505,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23670,NJBF000060326,7606 AMHERST AVE,Margate City,NJ,39.33577838,-74.49952198,RES1,3001,,18,NE,1950,1950,3103,2,1,1595.819727,1595.819727,3505,NO,31.96,44.81,3,1.92,6106,113.406549,123.228625,132.933417,139.494865,I,Above,Gable,0,5701,,38.38626096,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23671,NJBF000056925,8105 VENTNOR AVE,Margate City,NJ,39.32955265,-74.50064592,RES1,3001,,18,NE,1937,1937,3102,2,1,2724.73448,2724.73448,3505,NO,33.73,46.56,3,4.13,6106,113.46975,123.278852,132.981417,139.559065,I,Above,Hip,0,5701,,40.1451148,0,1.2,,,,1,1,,0.03,nav,1,1937,2,, 23672,NJBF000054531,9 N BENSON AVE,Margate City,NJ,39.32364828,-74.51304202,RES1,3001,,47,NE,1920,1920,3102,2,2,1055.414373,1055.414373,3505,NO,41.15,46.6,3,4.07,6106,113.28434,123.127458,132.818927,139.382752,I,Above,Hip,0,5701,,43.8733047,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 23673,NJBF000055067,,Margate City,NJ,39.325032,-74.5134155,RES1,3001,,NaN,NE,1969,0,3102,2,1,874.9805775,874.9805775,3505,NO,30.72,40.68,3,-2.61,6106,113.255601,123.104997,132.796822,139.357548,I,Above,Flat,0,5701,,35.70373868,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23674,NJBF000055446,8903 WINCHESTER AVE,Margate City,NJ,39.32612257,-74.51094102,RES1,3001,,17,NE,1952,1952,3101,1,1,1056.400309,1056.400309,3505,NO,19.15,32.93,3,4.94,6106,113.293595,123.13607,132.829906,139.393898,I,Above,Gable,0,5701,,26.03824426,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 23675,NJBF000055768,104 N RUMSON AVE,Margate City,NJ,39.32692765,-74.51054146,RES1,3001,,17,NE,1950,1950,3102,2,1,844.5173792,844.5173792,3505,NO,30.25,40.98,3,2.7,6106,113.290523,123.133917,132.828311,139.391626,I,Above,Flat,0,5701,,35.61224317,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23676,NJBF000056366,106 S FRANKLIN AVE,Margate City,NJ,39.32831561,-74.4971613,RES1,3001,,21,NE,1987,1987,3102,3,1,1783.166121,1783.166121,3505,NO,48.63,57.22,3,5.8,6106,113.564089,123.354544,133.05965,139.646334,I,Above,Hip,0,5701,,52.92639534,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 23677,NJBF000053519,17 S MADISON AVE,Margate City,NJ,39.320249,-74.5155625,RES1,3001,,19,NE,1938,1938,3102,2,1,770.3686223,770.3686223,3507,NO,27.76,35.07,1,0.41,6106,113.280518,123.122353,132.810597,139.37415,I,Above,Gable,0,5701,,31.41157942,0,0,,,,1,1,,0.03,nav,1,1938,2,, 23678,NJBF000057979,1 S CLERMONT AVE,Margate City,NJ,39.33148928,-74.49557984,RES1,3001,,17,NE,1949,1949,3102,1,1,1347.697142,1347.697142,3505,NO,19.45,29.31,3,8.45,6106,113.553688,123.346745,133.054162,139.63612,I,Above,Hip,0,5701,,24.38175069,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 23679,NJBF000057699,8001 WINCHESTER RD,Margate City,NJ,39.33101545,-74.49961426,RES1,3001,,17,NE,1930,1930,3102,2,1,1414.67532,1414.67532,3505,NO,30.48,38.28,3,5.5,6106,113.471584,123.280595,132.98441,139.560441,I,Above,Hip,0,5701,,34.38258325,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23680,NJBF000053396,32 S MADISON AVE,Margate City,NJ,39.3197815,-74.5156525,RES3D,3001,,39,ME,2003,2003,3301,2,1,2892.127528,2892.127528,3505,NO,32.29,45.41,3,0.16,6106,113.285656,123.126191,132.814122,139.378103,I,Above,Flat,0,NaN,,38.85132707,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 23681,NJBF000056727,15 N JASPER AVE,Margate City,NJ,39.32912998,-74.50349298,RES1,3001,,17,NE,1925,1925,3102,2,1,1563.360459,1563.360459,3505,NO,43.39,53.18,3,8.29,6106,113.413228,123.233285,132.933464,139.506578,I,Above,Hip,0,5701,,48.28778681,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23682,NJBF000056687,13 N JASPER AVE,Margate City,NJ,39.32904506,-74.50339115,RES1,3001,,17,NE,1925,1925,3102,2,1,1436.238559,1436.238559,3505,NO,21.97,34.4,3,-0.94,6106,113.416695,123.236053,132.936285,139.509783,I,Above,Hip,0,5701,,28.18202806,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23683,NJBF000054911,9511 AMHERST AVE,Margate City,NJ,39.3246255,-74.5195435,COM8,3001,,NaN,ME,1969,0,3401,3,1,756.8261356,756.8261356,3502,NO,56.89,64.8,5,9.04,6102,113.127884,123.001907,132.690041,139.237977,I,Above,Flat,0,5701,,60.84769998,0,0,,,,1,1,,0.03,nav,1,1969,3,, 23684,NJBF000059139,10 S COLMAR CIRCLE,Margate City,NJ,39.33362702,-74.50445801,RES1,3001,,17,NE,1954,1954,3101,2,1,1389.324371,1389.324371,3505,NO,34.75,44.7,3,7.78,6106,113.327759,123.165348,132.865835,139.425425,I,Above,Hip,0,5701,,39.72355703,0,0,,,,1,1,,0.03,nav,1,1954,2,, 23685,NJBF000058398,203 N HUNTINGTON AVE,Margate City,NJ,39.33223941,-74.50403917,RES1,3001,,21,NE,1969,2018,3102,2,1,1266.462376,1266.462376,3505,NO,42.95,53.29,3,8.12,6106,113.356694,123.188431,132.888977,139.453342,I,Above,Gable,0,5701,,48.11818805,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23686,NJBF000057009,31 N JASPER AVE,Margate City,NJ,39.32972657,-74.50410621,RES1,3001,,17,NE,1927,1927,3102,2,1,1123.409388,1123.409388,3505,NO,38.12,52.18,3,8.19,6106,113.391157,123.215676,132.915556,139.486127,I,Above,Gable,0,5701,,45.14845551,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 23687,NJBF000057034,31 N JASPER AVE,Margate City,NJ,39.32977884,-74.50400852,RES1,3001,,17,NE,1927,1927,3102,2,1,549.5433148,549.5433148,3505,NO,33.66,43.27,3,5.82,6106,113.392542,123.216802,132.91677,139.487413,I,Above,Gable,0,5701,,38.46749049,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 23688,NJBF000060772,8207 MARSHALL AVE,Margate City,NJ,39.33652563,-74.50951182,RES1,3001,,17,NE,1971,1971,3101,1,1,1772.394331,1772.394331,3505,NO,21.91,28.29,3,8.48,6106,113.175242,123.043247,132.740382,139.281097,I,Above,Hip,0,5701,,25.10095319,0,0,,,,1,1,,0.03,nav,1,1971,1,, 23689,NJBF000058700,4 S FREDERICKSBURG AVE,Margate City,NJ,39.33277633,-74.49270591,RES1,3001,,17,NE,1950,1950,3102,1,1,1726.308189,1726.308189,3505,NO,12.17,24.63,3,-2.26,6106,113.598878,123.383278,133.09363,139.676259,I,Above,Hip,0,5701,,18.40213109,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23690,NJBF000058669,6 S FREDERICKSBURG AVE,Margate City,NJ,39.3327097,-74.49261965,RES1,3001,,19,NE,1950,1950,3102,1,1,1008.190497,1008.190497,3505,NO,22.75,36.27,3,3.67,6106,113.601698,123.385546,133.095963,139.678947,I,Above,Hip,0,5701,,29.51170149,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23691,NJBF000055954,,Margate City,NJ,39.32736082,-74.50150536,RES1,3001,,NaN,NE,1969,0,3101,1,1,1719.216826,1719.216826,3505,NO,18.28,25.6,3,-0.55,6106,113.482441,123.288513,132.989683,139.57016,I,Above,Gable,0,5701,,21.93863494,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23692,NJBF000055902,,Margate City,NJ,39.32724358,-74.50141283,RES1,3001,,NaN,NE,1969,0,3101,1,1,1626.195505,1626.195505,3505,NO,22.45,29.17,3,3.94,6106,113.486154,123.291469,132.992671,139.573531,I,Above,Gable,0,5701,,25.80684658,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23693,NJBF000058441,11 S ANDOVER AVE,Margate City,NJ,39.33232253,-74.49259924,RES1,3001,,21,NE,2014,2014,3102,3,1,1374.82367,1374.82367,3505,NO,47.59,54.84,3,6.09,6106,113.60759,123.390263,133.10061,139.684921,I,Above,Hip,0,5701,,51.21934322,0,0,,,,1,1,,0.03,nav,1,2014,3,, 23694,NJBF000057375,103 S BRUNSWICK AVE,Margate City,NJ,39.33046076,-74.49330723,RES1,3001,,22,NE,2004,2004,3102,3,1,2763.520986,2763.520986,3505,NO,50.17,56.62,3,5.02,6106,113.618258,123.398635,133.107839,139.69649,I,Above,Hip,0,5701,,53.39541917,0,0,,,,1,1,,0.03,nav,1,2004,3,, 23695,NJBF000055698,115 N THURLOW AVE,Margate City,NJ,39.32676258,-74.51154402,RES1,3001,,17,NE,1930,1930,3102,2,1,2217.498202,2217.498202,3505,NO,36.04,47.48,3,1.19,6106,113.270968,123.118123,132.811798,139.373317,I,Above,Gable,0,5701,,41.76036734,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23696,NJBF000059237,6 S COLMAR CIRCLE,Margate City,NJ,39.33382771,-74.50411258,RES1,3001,,17,NE,1954,1954,3101,2,1,1360.941861,1360.941861,3505,NO,32.71,39.16,3,0.12,6106,113.33253,123.169189,132.869977,139.429625,I,Above,Hip,0,5701,,35.93221064,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 23697,NJBF000056427,216 N RUMSON AVE,Margate City,NJ,39.3284505,-74.5118495,RES1,3001,,20,NE,2015,2015,3102,2,1,1166.690893,1166.690893,3505,NO,33.9,46.33,3,5.47,6106,113.239533,123.093469,132.787505,139.34493,I,Above,Gable,0,5701,,40.11389299,0,0,,,,1,1,,0.03,nav,1,2015,2,, 23698,NJBF000057426,221 N MANSFIELD AVE,Margate City,NJ,39.3305515,-74.508605,RES1,3001,,17,NE,1950,1950,3102,2,1,1672.358794,1672.358794,3505,NO,27.66,38.43,3,0.65,6106,113.280327,123.126823,132.823624,139.383131,I,Above,Gable,0,5701,,33.04968572,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23699,NJBF000054464,103 N ADAMS AVE,Margate City,NJ,39.32346063,-74.51603968,RES1,3001,,17,NE,1961,1961,3102,2,1,1102.077554,1102.077554,3507,NO,39.02,47.85,1,2.51,6106,113.221732,123.076885,132.766457,139.324227,I,Above,Gable,0,5701,,43.43629401,0,0,,,,1,1,,0.03,nav,1,1961,2,, 23700,NJBF000055744,16 S KNIGHT AVE,Margate City,NJ,39.32687714,-74.50329016,RES1,3001,,18,NE,1950,1950,3102,2,1,1578.392738,1578.392738,3505,NO,28.52,40.8,3,5.39,6106,113.450285,123.262469,132.962064,139.540019,I,Above,Hip,0,5701,,34.6591962,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23701,NJBF000055191,104 N VENDOME AVE,Margate City,NJ,39.32540323,-74.51266993,RES1,3001,,18,NE,1948,1948,3101,1,1,2035.967434,2035.967434,3505,NO,22.87,32.34,3,3.72,6106,113.26639,123.113858,132.806299,139.367951,I,Above,Gable,0,5701,,27.60554437,0,1.2,,,,1,1,,0.03,nav,1,1948,1,, 23702,NJBF000055012,3 N UNION AVE,Margate City,NJ,39.32489584,-74.51065948,RES1,3001,,19,NE,1953,1953,3101,1,1,2572.623496,2572.623496,3505,NO,23.84,36.22,3,6.53,6106,113.317878,123.155088,132.848629,139.415352,I,Above,Gable,0,5701,,30.0270193,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 23703,NJBF000055775,100 N QUINCY AVE,Margate City,NJ,39.32694471,-74.50948903,RES1,3001,,21,NE,2017,2017,3102,3,1,1401.455609,1401.455609,3505,NO,40.69,46.05,3,7.65,6106,113.313333,123.152273,132.847381,139.412857,I,Above,Gable,0,5701,,43.37106957,0,0,,,,1,1,,0.03,nav,1,2017,3,, 23704,NJBF000056827,302 N QUINCY AVE,Margate City,NJ,39.3293443,-74.51180023,RES1,3001,,17,NE,1950,1950,3102,1,1,2123.161335,2123.161335,3505,NO,20.81,33.04,3,2.9,6106,113.227582,123.084154,132.778484,139.334043,I,Above,Hip,0,5701,,26.9273746,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23705,NJBF000056007,218 N UNION AVE,Margate City,NJ,39.32750222,-74.51371717,RES1,3001,,17,NE,1925,1925,3101,1,1,1380.381161,1380.381161,3505,NO,17.44,26.21,3,0.73,6106,113.212486,123.071385,132.763936,139.319302,I,Above,Gable,0,5701,,21.82587188,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 23706,NJBF000056154,9109 FREMONT AVE,Margate City,NJ,39.32783792,-74.5162162,RES1,3001,,21,NE,1998,1998,3102,2,1,2476.258201,2476.258201,3505,NO,21.92,28.7,3,-0.82,6106,113.152783,123.02353,132.714696,139.263813,I,Above,Flat,0,5701,,25.3135542,0,0,,,,1,1,,0.03,nav,1,1998,2,, 23707,NJBF000062243,11 EXETER CT,Margate City,NJ,39.33907597,-74.50591628,RES1,3001,,18,NE,1971,1971,3102,2,1,1542.903013,1542.903013,3505,NO,40.88,47.68,3,3.31,6106,113.219329,123.078292,132.77816,139.316923,I,Above,Gable,0,5701,,44.27684783,0,1.2,,,,1,1,,0.03,nav,1,1971,2,, 23708,NJBF000053659,9613 VENTNOR AVE,Margate City,NJ,39.32079048,-74.51722245,RES1,3001,,20,NE,2004,2004,3102,2,1,1757.446649,1757.446649,3507,NO,29.72,43.82,1,2.85,6106,113.236276,123.086967,132.774543,139.333906,I,Above,Flat,0,5701,,36.76883939,0,0,,,,1,1,,0.03,nav,1,2004,2,, 23709,NJBF000056985,122 N LANCASTER AVE,Margate City,NJ,39.32967838,-74.50740735,RES1,3001,,17,NE,1928,1928,3102,2,1,1374.675317,1374.675317,3505,NO,41.2,52.67,3,2.79,6106,113.319276,123.157896,132.855317,139.41936,I,Above,Gable,0,5701,,46.93480678,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 23710,NJBF000061174,219 N BRUNSWICK DR,Margate City,NJ,39.33718767,-74.49915701,RES1,3001,,17,NE,1948,1948,3103,2,1,1271.515162,1271.515162,3505,NO,23.59,30.94,3,0.71,6106,113.395044,123.219302,132.924556,139.481398,I,Above,Hip,0,5701,,27.2651589,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23711,NJBF000056217,305 N VENDOME AVE,Margate City,NJ,39.32798484,-74.51453589,RES1,3001,,20,NE,2015,2015,3102,2,1,2248.731972,2248.731972,3505,NO,26.59,37.43,3,-0.68,6106,113.187432,123.051435,132.743642,139.296198,I,Above,Flat,0,5701,,32.01327766,0,0,,,,1,1,,0.03,nav,1,2015,2,, 23712,NJBF000061370,7513 FREMONT AVE,Margate City,NJ,39.33751822,-74.49980426,RES1,3001,,18,NE,1954,1954,3103,2,1,2684.401378,2684.401378,3505,NO,30.44,39.1,3,6.19,6106,113.376171,123.204126,132.908854,139.463458,I,Above,Hip,0,5701,,34.76569486,0,0,,,,1,1,,0.03,nav,1,1954,2,, 23713,NJBF000056761,123 N NASSAU AVE,Margate City,NJ,39.32919935,-74.5082682,RES1,3001,,19,NE,1953,1953,3102,2,1,2427.021675,2427.021675,3505,NO,43.13,53.89,3,8.61,6106,113.307283,123.148135,132.84481,139.408161,I,Above,Hip,0,5701,,48.50769053,0,0,,,,1,1,,0.03,nav,1,1953,2,, 23714,NJBF000058439,310 N JEROME AVE,Margate City,NJ,39.3323171,-74.50813731,RES1,3001,,17,NE,1962,1962,3101,1,1,2198.363132,2198.363132,3505,NO,18.83,26.47,3,5.32,6106,113.26527,123.115073,132.8126,139.36856,I,Above,Gable,0,5701,,22.64978788,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 23715,NJBF000059752,123 N CLERMONT AVE,Margate City,NJ,39.33479472,-74.49858284,RES1,3001,,18,NE,1988,1988,3103,2,1,1208.931918,1208.931918,3505,NO,37.18,48.14,3,0.86,6110,113.441004,123.256312,132.961769,139.528192,I,Above,Flat,0,5701,,42.66231618,0,0,,,,1,1,,0.35,nav,1,1988,2,, 23716,NJBF000056104,12 S IROQUOIS AVE,Margate City,NJ,39.32774256,-74.50178908,RES1,3001,,19,NE,1986,1986,3101,1,1,1528.350444,1528.350444,3505,NO,15.24,21.51,3,1.96,6106,113.470681,123.279154,132.980229,139.559462,I,Above,Flat,0,5701,,18.37896178,0,1.1,,,,1,1,,0.03,nav,1,1986,1,, 23717,NJBF000059005,502 N KENYON AVE,Margate City,NJ,39.3333494,-74.50996992,RES1,3001,,18,NE,1972,1972,3102,2,1,1892.190118,1892.190118,3505,NO,35.79,44.16,3,7.53,6106,113.210118,123.071,132.767438,139.316769,I,Above,Gable,0,5701,,39.97132368,0,0,,,,1,1,,0.03,nav,1,1972,2,, 23718,NJBF000060147,501 N JEROME AVE,Margate City,NJ,39.33547772,-74.51036781,REL1,3003,,NaN,ME,1969,0,3401,2,1,7812.869342,7812.869342,3507,NO,23.91,34.84,1,1.93,6106,113.17109,123.039917,132.736369,139.278631,I,Above,Flat,0,5701,,29.37343124,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23719,NJBF000059516,501 N JEROME AVE,Margate City,NJ,39.33438246,-74.50910726,REL1,3003,,NaN,ME,1969,0,3401,2,1,55580.27022,55580.27022,3507,NO,40.47,52.17,1,2.14,6106,113.214461,123.07458,132.771772,139.319914,I,Above,Flat,0,5701,,46.32327432,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23720,NJBF000058994,115 N EXETER AVE,Margate City,NJ,39.33331755,-74.50029017,RES1,3001,,17,NE,1954,1954,3102,2,1,1886.216948,1886.216948,3505,NO,23.43,31.38,3,1.85,6106,113.424071,123.242653,132.946415,139.514683,I,Above,Flat,0,5701,,27.40361228,0,0,,,,1,1,,0.03,nav,1,1954,2,, 23721,NJBF000058372,7601 VENTNOR AVE,Margate City,NJ,39.33218813,-74.49519797,RES1,3001,,17,NE,1951,1951,3102,2,1,2339.356643,2339.356643,3505,NO,37.08,48.24,3,0.69,6106,113.552239,123.345655,133.053583,139.63413,I,Above,Hip,0,5701,,42.66279389,0,0.1,,,,1,1,,0.03,nav,1,1951,2,, 23722,NJBF000058562,9 N CLARENDON AVE,Margate City,NJ,39.33251417,-74.49569095,RES1,3001,,18,NE,1939,1939,3102,2,1,1469.020874,1469.020874,3505,NO,27.85,40.81,3,3.86,6106,113.536786,123.333243,133.040804,139.619522,I,Above,Flat,0,5701,,34.32692267,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 23723,NJBF000055965,110 N QUINCY AVE,Margate City,NJ,39.32739673,-74.50995244,RES1,3001,,17,NE,1961,1961,3102,2,1,1385.127204,1385.127204,3505,NO,20.48,35.38,3,-2.61,6106,113.296563,123.138948,132.833898,139.397529,I,Above,Gable,0,5701,,27.92898042,0,0,,,,1,1,,0.03,nav,1,1961,2,, 23724,NJBF000056335,19 N MANSFIELD AVE,Margate City,NJ,39.32823742,-74.50641703,RES1,3001,,17,NE,1950,1950,3102,2,1,1672.219534,1672.219534,3505,NO,23.38,36.73,3,-1.44,6106,113.361897,123.191762,132.88947,139.458667,I,Above,Gable,0,5701,,30.05309093,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23725,NJBF000062597,8000 LAGOON DRIVE,Margate City,NJ,39.33978002,-74.50851265,RES1,3001,,18,NE,1974,1974,3102,2,1,1633.628802,1633.628802,3505,NO,32.59,39.26,3,1.14,6106,113.152045,123.024399,132.722336,139.253887,I,Above,Gable,0,5701,,35.92554891,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 23726,NJBF000059646,31 EAST DRIVE,Margate City,NJ,39.33461013,-74.49453595,RES1,3001,,18,NE,1925,1925,3102,2,1,1699.360837,1699.360837,3505,NO,44.86,56.13,3,7.73,6106,113.532905,123.330215,133.039235,139.612604,I,Above,Hip,0,5701,,50.49563589,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23727,NJBF000059385,110 N CLERMONT AVE,Margate City,NJ,39.334146,-74.4984365,RES1,3001,,17,NE,1962,1962,3103,2,1,1249.220935,1249.220935,3505,NO,29.59,40.73,3,6.65,6110,113.453333,123.266209,132.971686,139.540546,I,Above,Hip,0,5701,,35.1635662,0,0,,,,1,1,,0.35,nav,1,1962,2,, 23728,NJBF000059356,108 N CLERMONT AVE,Margate City,NJ,39.33408031,-74.49834673,RES1,3001,,17,NE,1930,1930,3103,2,1,1124.219801,1124.219801,3505,NO,22.73,37.44,3,1.59,6110,113.456222,123.268529,132.974071,139.543299,I,Above,Gable,0,5701,,30.08535972,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 23729,NJBF000058167,104 N GLADSTONE AVE,Margate City,NJ,39.33182175,-74.50158269,RES1,3001,,17,NE,1951,1951,3102,2,1,1184.355998,1184.355998,3505,NO,26,37.93,3,-1.8,6106,113.416743,123.236615,132.939008,139.509215,I,Above,Hip,0,5701,,31.96563511,0,0,,,,1,1,,0.03,nav,1,1951,2,, 23730,NJBF000054042,24 N JEFFERSON AVE,Margate City,NJ,39.3221886,-74.51665591,RES1,3001,,20,NE,2005,2005,3102,3,1,1116.016411,1116.016411,3507,NO,38.49,44.75,1,1.4,6106,113.227436,123.080732,132.769346,139.327828,I,Above,Gable,0,5701,,41.62097368,0,0,,,,1,1,,0.03,nav,1,2005,3,, 23731,NJBF000056331,4A S HANOVER AVE,Margate City,NJ,39.32823355,-74.50145036,RES1,3001,,20,NE,2007,2007,3102,3,1,1123.899705,1123.899705,3505,NO,48.77,54.06,3,-1.85,6106,113.471038,123.279575,132.981084,139.560008,I,Above,Hip,0,5701,,51.41617593,0,0,,,,1,1,,0.03,nav,1,2007,3,, 23732,NJBF000057910,26 N FRONTENAC AVE,Margate City,NJ,39.331369,-74.500054,RES1,3001,,17,NE,1954,1954,3101,1,1,1566.249992,1566.249992,3505,NO,18.56,32.85,3,6.92,6106,113.456861,123.268805,132.972343,139.546628,I,Above,Hip,0,5701,,25.70492483,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 23733,NJBF000057561,514 N THURLOW AVE,Margate City,NJ,39.3307845,-74.5162555,RES1,3001,,20,NE,1955,1955,3102,2,2,854.7213258,854.7213258,3505,NO,41.91,49.67,3,7.07,6106,113.108718,122.989194,132.681153,139.223442,I,Above,Gable,0,5701,,45.78920589,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 23734,NJBF000057943,38 N GLADSTONE AVE,Margate City,NJ,39.33141083,-74.50115234,RES1,3001,,20,NE,2006,2006,3102,3,1,1669.623671,1669.623671,3505,NO,36.4,47.5,3,-1.51,6106,113.432082,123.248887,132.951534,139.523656,I,Above,Hip,0,5701,,41.95174971,0,0,,,,1,1,,0.03,nav,1,2006,3,, 23735,NJBF000056698,110 N LANCASTER AVE,Margate City,NJ,39.32906528,-74.50682558,RES1,3001,,17,NE,1959,1959,3102,2,1,1445.400274,1445.400274,3505,NO,36.34,45.34,3,5.32,6106,113.340911,123.175124,132.872788,139.439395,I,Above,Hip,0,5701,,40.84410685,0,0,,,,1,1,,0.03,nav,1,1959,2,, 23736,NJBF000060989,218 N BELMONT DR,Margate City,NJ,39.33685929,-74.49843512,RES1,3001,,17,NE,1950,1950,3103,1,1,1148.484296,1148.484296,3505,NO,13.94,27.55,3,1.78,6106,113.415561,123.2358,132.941646,139.500827,I,Above,Hip,0,5701,,20.74399307,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23737,NJBF000056201,217 N THURLOW AVE,Margate City,NJ,39.32795983,-74.51271145,RES1,3001,,17,NE,1949,1949,3101,1,1,846.3568043,846.3568043,3505,NO,17.11,22.54,3,3.38,6106,113.227811,123.083877,132.777208,139.333813,I,Above,Hip,0,5701,,19.82318453,0,0,,,,1,1,,0.03,nav,1,1949,1,, 23738,NJBF000057103,404 N QUINCY AVE,Margate City,NJ,39.32993109,-74.51233453,RES1,3001,,17,NE,1950,1950,3102,1,1,1707.664571,1707.664571,3505,NO,20.56,33.31,3,2.87,6106,113.207289,123.068033,132.762176,139.315225,I,Above,Hip,0,5701,,26.93918885,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23739,NJBF000056283,20 S HAVERFORD AVE,Margate City,NJ,39.328125,-74.499888,RES1,3001,,18,NE,1940,1940,3102,2,1,924.7020676,924.7020676,3505,NO,39.01,53.35,3,5.59,6106,113.506923,123.308441,133.011183,139.593254,I,Above,Hip,0,5701,,46.18251902,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 23740,NJBF000056290,210 N RUMSON AVE,Margate City,NJ,39.32814622,-74.51159123,RES1,3001,,17,NE,1955,1955,3102,2,1,2127.26701,2127.26701,3505,NO,36.81,45.47,3,-2.01,6106,113.249654,123.101498,132.795607,139.354235,I,Above,Flat,0,5701,,41.14249336,0,0,,,,1,1,,0.03,nav,1,1955,2,, 23741,NJBF000058914,108 N ESSEX AVE,Margate City,NJ,39.33316785,-74.49971616,RES1,3001,,17,NE,1915,1915,3103,2,1,1254.688167,1254.688167,3505,NO,40.86,47.53,3,2.31,6106,113.438845,123.254514,132.958726,139.52848,I,Above,Gable,0,5701,,44.19580698,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 23742,NJBF000058526,217 N HANOVER AVE,Margate City,NJ,39.33246839,-74.50507339,RES1,3001,,17,NE,1940,1940,3102,2,1,741.8542869,741.8542869,3505,NO,30.09,40.38,3,-0.95,6106,113.330645,123.167548,132.867351,139.429063,I,Above,Hip,0,5701,,35.23454435,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 23743,NJBF000061593,314 N FREDERICKSBURG AVE,Margate City,NJ,39.3379165,-74.4972425,RES1,3001,,17,NE,1949,1949,3103,1,1,1064.161686,1064.161686,3505,NO,14.7,24.13,3,-1.46,6106,113.427355,123.245163,132.952148,139.508879,I,Above,Hip,0,5701,,19.41618882,0,1.2,,,,1,1,,0.03,nav,1,1949,1,, 23744,NJBF000059902,2 SEASIDE COURT,Margate City,NJ,39.3350524,-74.50806074,RES1,3001,,20,NE,2004,2004,3101,2,1,1807.417228,1807.417228,3505,NO,47.61,60.58,3,8.7,6106,113.228075,123.085521,132.783539,139.331776,I,Above,Hip,0,5701,,54.09365608,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 23745,NJBF000056175,213 N THURLOW AVE,Margate City,NJ,39.3278928,-74.51256487,RES1,3001,,17,NE,1950,1950,3101,1,1,1372.754773,1372.754773,3505,NO,18.82,33.31,3,3.04,6106,113.231995,123.087216,132.780617,139.337679,I,Above,Hip,0,5701,,26.06871532,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23746,NJBF000059582,65 SEASIDE COURT,Margate City,NJ,39.33449367,-74.50820205,RES1,3001,,19,NE,1998,1998,3101,2,1,2160.503878,2160.503878,3505,NO,43.23,50.5,3,6.19,6106,113.232853,123.08932,132.787166,139.336811,I,Above,Hip,0,5701,,46.86295728,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 23747,NJBF000055885,15 S JEROME AVE,Margate City,NJ,39.32720722,-74.50234829,RES1,3001,,19,NE,1948,1948,3102,2,1,1305.645297,1305.645297,3505,NO,34.56,48.02,3,6.75,6106,113.466167,123.275362,132.975809,139.554971,I,Above,Hip,0,5701,,41.29418209,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 23748,NJBF000053509,9507 PACIFIC AVE,Margate City,NJ,39.32020401,-74.51478366,RES3C,3001,,19,ME,1957,1957,3301,1,1,2575.077278,2575.077278,3505,NO,25.7,30.82,3,6.77,6106,113.298127,123.136552,132.825238,139.390428,I,Above,Flat,0,NaN,,28.25890205,0,0,,,,1,1,,0.03,nav,1,1957,1,, 23749,NJBF000060651,200 N ARGYLE AVE,Margate City,NJ,39.3363575,-74.4968755,RES1,3001,,17,NE,1950,1950,3103,1,1,1165.126076,1165.126076,3505,NO,22.35,30.48,3,5.42,6106,113.456969,123.269097,132.976257,139.539648,I,Above,Gable,0,5701,,26.41345085,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23750,NJBF000054436,,Margate City,NJ,39.32339538,-74.51789881,RES1,3001,,NaN,NE,1969,0,3102,2,1,1303.277327,1303.277327,3507,NO,28.68,36.66,1,-0.21,6106,113.182211,123.044979,132.733464,139.287283,I,Above,Flat,0,5701,,32.6689823,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23751,NJBF000061648,17 HARBOUR LANE,Margate City,NJ,39.33800531,-74.50818021,RES1,3001,,18,NE,1980,1980,3102,2,1,1719.368426,1719.368426,3505,NO,33.98,40.93,3,0.74,6106,113.184031,123.050195,132.748358,139.286764,I,Above,Flat,0,5701,,37.45509696,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 23752,NJBF000061510,224 N ARGYLE AVE,Margate City,NJ,39.33776904,-74.49825256,RES1,3001,,17,NE,1949,1949,3103,1,1,997.411106,997.411106,3505,NO,12.13,24.59,3,-2.5,6106,113.407016,123.228851,132.934934,139.490858,I,Above,Flat,0,5701,,18.35820157,0,0,,,,1,1,,0.03,nav,1,1949,1,, 23753,NJBF000054576,103 S RUMSON AVE,Margate City,NJ,39.32376733,-74.50686157,RES1,3001,,19,NE,1925,1925,3103,3,1,1549.925362,1549.925362,3505,NO,31.7,37.82,3,-2.07,6106,113.417604,123.234933,132.930615,139.506588,I,Above,Flat,0,5701,,34.75845191,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 23754,NJBF000055082,108 N HARDING AVE,Margate City,NJ,39.32508294,-74.51391467,RES1,3001,,47,NE,1948,1948,3102,2,2,1118.947776,1118.947776,3505,NO,36.32,47.92,3,-1.78,6106,113.243915,123.095611,132.787148,139.346715,I,Above,Gable,0,5701,,42.11950845,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23755,NJBF000059220,116 N DOUGLAS AVE,Margate City,NJ,39.33379387,-74.49956339,RES1,3001,,18,NE,1989,1989,3103,2,1,1052.162475,1052.162475,3505,NO,39.76,46.98,3,7.35,6106,113.433407,123.250182,132.95464,139.522709,I,Above,Gable,0,5701,,43.37160206,0,0,,,,1,1,,0.03,nav,1,1989,2,, 23756,NJBF000063293,7703 BAYSHORE DR,Margate City,NJ,39.34134857,-74.50519837,RES1,3001,,21,NE,1964,1964,3102,2,1,2562.669431,2562.669431,3505,NO,22.16,32.13,3,0.17,6106,113.204059,123.065617,132.765997,139.297384,I,Above,Gable,0,5701,,27.1418517,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 23757,NJBF000062509,8 EXETER CT,Margate City,NJ,39.33959935,-74.50569939,RES1,3001,,18,NE,1969,1969,3102,2,1,2027.313266,2027.313266,3505,NO,35.51,47.16,3,0.84,6106,113.216926,123.076284,132.776321,139.313539,I,Above,Hip,0,5701,,41.33215176,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 23758,NJBF000057986,412 N NASSAU AVE,Margate City,NJ,39.33150821,-74.51102194,RES1,3001,,20,NE,1990,1990,3102,3,1,1540.63867,1540.63867,3505,NO,63.18,76.35,3,7.45,6106,113.213342,123.073278,132.768656,139.320683,I,Above,Flat,0,5701,,69.7633989,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 23759,NJBF000059248,,Margate City,NJ,39.33385848,-74.50729871,COM8,3004,,NaN,ME,1969,0,3401,2,1,5870.130488,5870.130488,3507,NO,25.04,31.95,1,2.47,6106,113.261799,123.11247,132.810872,139.36421,I,Above,Flat,0,5701,,28.49673561,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23760,NJBF000063084,7904 BAYSHORE DR,Margate City,NJ,39.3408605,-74.50807818,RES1,3001,,19,NE,1968,1968,3102,2,1,3096.341865,3096.341865,3505,NO,42.57,57.3,3,5.75,6106,113.146834,123.020023,132.718243,139.246629,I,Above,Gable,0,5701,,49.93153312,0,0.1,,,,1,1,,0.03,nav,1,1968,2,, 23761,NJBF000058007,33 N GLADSTONE AVE,Margate City,NJ,39.33155,-74.5007185,RES1,3001,,17,NE,1945,1945,3101,1,1,1839.961462,1839.961462,3505,NO,17.43,25.66,3,4.12,6106,113.439642,123.254985,132.958018,139.530581,I,Above,Flat,0,5701,,21.54331225,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 23762,NJBF000058041,210 N JASPER AVE,Margate City,NJ,39.33160248,-74.50640296,RES1,3001,,17,NE,1956,1956,3101,1,1,1581.845674,1581.845674,3505,NO,8.89,23.08,3,-2.36,6106,113.3137,123.15382,132.852449,139.41383,I,Above,Hip,0,5701,,15.98446015,0,0,,,,1,1,,0.03,nav,1,1956,1,, 23763,NJBF000057154,8500 MONMOUTH AVE,Margate City,NJ,39.33003663,-74.50681472,RES1,3001,,19,NE,1954,1954,3101,1,1,2263.495585,2263.495585,3505,NO,11.27,21.28,3,-1.1,6106,113.327113,123.164278,132.862223,139.426643,I,Above,Hip,0,5701,,16.27571009,0,0,,,,1,1,,0.03,nav,1,1954,1,, 23764,NJBF000056720,11 S GLADSTONE AVE,Margate City,NJ,39.32912151,-74.49898587,RES1,3001,,45,NE,1938,1938,3102,2,2,1400.95523,1400.95523,3505,NO,29.24,42.86,3,6.26,6106,113.512426,123.313112,133.016922,139.598625,I,Above,Flat,0,5701,,36.04926869,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 23765,NJBF000055232,3 N SUMNER AVE,Margate City,NJ,39.32552744,-74.50942643,RES1,3001,,18,NE,1925,1925,3102,2,1,1106.992271,1106.992271,3505,NO,24.07,32.09,3,0.52,6106,113.335545,123.16959,132.864213,139.432391,I,Above,Gable,0,5701,,28.07625584,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23766,NJBF000057582,441 N THURLOW AVE,Margate City,NJ,39.33082311,-74.51544893,RES1,3001,,22,NE,2013,2013,3102,3,1,1707.192041,1707.192041,3505,NO,41.2,54.21,3,1.11,6106,113.125878,123.002967,132.695408,139.239427,I,Above,Hip,0,5701,,47.70559697,0,0,,,,1,1,,0.03,nav,1,2013,3,, 23767,NJBF000061402,414 N CLERMONT AVE,Margate City,NJ,39.33757639,-74.5017498,RES1,3001,,17,NE,1959,1959,3102,2,1,1529.541687,1529.541687,3505,NO,42.07,48.22,3,7.75,6106,113.332316,123.168951,132.872058,139.423364,I,Above,Hip,0,5701,,45.14451715,0,0,,,,1,1,,0.03,nav,1,1959,2,, 23768,NJBF000062935,8101 BAYSHORE DR,Margate City,NJ,39.34053633,-74.51069549,RES1,3001,,20,NE,2006,2006,3102,3,1,3406.583279,3406.583279,3505,NO,59.42,72.78,3,6.38,6106,113.093219,122.9773,132.673668,139.198427,I,Above,Hip,0,5701,,66.10255736,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 23769,NJBF000056592,104 S EXETER AVE,Margate City,NJ,39.3288182,-74.49685634,RES1,3001,,17,NE,1946,1946,3102,2,1,1993.621939,1993.621939,3505,NO,41.44,53,3,5.24,6106,113.5636,123.354267,133.0598,139.646029,I,Above,Flat,0,5701,,47.21565535,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 23770,NJBF000060407,303 N DELAVAN AVE,Margate City,NJ,39.33591868,-74.50042013,RES1,3001,,17,NE,1950,1950,3102,1,1,2191.819816,2191.819816,3505,NO,18.89,27.78,3,6.41,6106,113.384743,123.211115,132.915169,139.474638,I,Above,Gable,0,5701,,23.33630947,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23771,NJBF000057020,324 N RUMSON AVE,Margate City,NJ,39.32974991,-74.513085,RES1,3001,,20,NE,1990,1990,3102,3,1,1641.801384,1641.801384,3505,NO,57.95,68.83,3,3.35,6106,113.193444,123.056867,132.750486,139.30232,I,Above,Flat,0,5701,,63.39367917,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 23772,NJBF000054160,107 N MADISON AVE,Margate City,NJ,39.32258096,-74.51782283,RES1,3001,,47,NE,1920,1920,3102,2,1,1810.404397,1810.404397,3507,NO,24.07,31.31,1,1.59,6106,113.196126,123.055708,132.743854,139.299191,I,Above,Gable,0,5701,,27.69033029,0,0,,,,1,1,,0.03,nav,1,1920,2,, 23773,NJBF000059022,35 N CLERMONT AVE,Margate City,NJ,39.33338507,-74.49724947,RES1,3001,,21,NE,2012,2018,3102,2,1,993.5538271,993.5538271,3505,NO,35.78,41.35,3,-0.87,6106,113.490196,123.295814,133.00218,139.575527,I,Above,Gable,0,5701,,38.56061186,0,0,,,,1,1,,0.03,nav,1,2012,2,, 23774,NJBF000058822,9 N BRUNSWICK AVE,Margate City,NJ,39.33298882,-74.49530873,RES1,3001,,18,NE,1928,1928,3102,2,1,1328.91369,1328.91369,3505,NO,24.59,37.07,3,0.42,6106,113.538528,123.334682,133.042689,139.620522,I,Above,Gable,0,5701,,30.8300487,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 23775,NJBF000057237,26 N HUNTINGTON AVE,Margate City,NJ,39.33020215,-74.50259091,RES1,3001,,20,NE,2016,2016,3102,3,1,1140.403575,1140.403575,3505,NO,54.98,61.15,3,1.6,6106,113.417665,123.237089,132.938277,139.510694,I,Above,Hip,0,5701,,58.06456449,0,0,,,,1,1,,0.03,nav,1,2016,3,, 23776,NJBF000057180,25 N HANOVER AVE,Margate City,NJ,39.3300874,-74.50278105,RES1,3001,,19,NE,1925,1925,3102,2,1,1526.922414,1526.922414,3505,NO,39.7,50.36,3,3.05,6106,113.415133,123.23503,132.936037,139.50836,I,Above,Gable,0,5701,,45.03044257,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23777,NJBF000056120,8 N LANCASTER AVE,Margate City,NJ,39.32776824,-74.50563272,RES1,3001,,18,NE,1930,1930,3102,2,1,1602.531725,1602.531725,3505,NO,29.02,41.63,3,-1.62,6106,113.38592,123.210944,132.909075,139.480788,I,Above,Flat,0,5701,,35.32639517,0,0,,,,1,1,,0.03,nav,1,1930,2,, 23778,NJBF000055315,9220 AMHERST AVE,Margate City,NJ,39.32575108,-74.51685087,COM3,3001,,NaN,ME,1953,1953,3401,2,2,2103.064366,2103.064366,3505,NO,32,46.6,3,1.91,6106,113.169818,123.036284,132.726347,139.278248,I,Above,Hip,0,5701,,39.30023588,0,1.2,,,,1,1,,0.03,nav,1,1953,2,, 23779,NJBF000057872,203 N JASPER AVE,Margate City,NJ,39.33129604,-74.50555994,RES1,3001,,17,NE,1952,1952,3102,2,1,713.1728414,713.1728414,3505,NO,40.89,55.24,3,4.86,6106,113.336645,123.17219,132.871373,139.435238,I,Above,Flat,0,5701,,48.06864145,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23780,NJBF000054165,122 N MONROE AVE,Margate City,NJ,39.32259026,-74.51964811,RES1,3001,,20,NE,2006,2006,3102,2,1,1355.74822,1355.74822,3507,NO,35.61,43,1,-0.28,6106,113.156287,123.023563,132.710723,139.262012,I,Above,Gable,0,5701,,39.30463484,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 23781,NJBF000056213,9 N LANCASTER AVE,Margate City,NJ,39.32797851,-74.50526366,RES1,3001,,19,NE,1925,1925,3102,2,1,1109.682785,1109.682785,3505,NO,35.13,49.92,3,3.78,6106,113.390959,123.215061,132.913536,139.485564,I,Above,Hip,0,5701,,42.52436951,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 23782,NJBF000058188,8505 FREMONT AVE,Margate City,NJ,39.33185779,-74.50955807,RES1,3001,,17,NE,1959,1959,3102,2,1,1867.29021,1867.29021,3505,NO,26.96,33.3,3,5.34,6106,113.240542,123.095163,132.791604,139.345829,I,Above,Gable,0,5701,,30.12817003,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 23783,NJBF000054597,28 N DECATUR AVE,Margate City,NJ,39.32384233,-74.51430897,RES1,3001,,17,NE,1945,1945,3102,2,1,1025.220926,1025.220926,3505,NO,34.05,41.31,3,1.92,6106,113.253791,123.102937,132.793709,139.354557,I,Above,Flat,0,5701,,37.68390636,0,0,,,,1,1,,0.03,nav,1,1945,2,, 23784,NJBF000056606,9 N JASPER AVE,Margate City,NJ,39.32886048,-74.50324184,RES1,3001,,17,NE,1925,1925,3102,2,1,1528.293799,1528.293799,3505,NO,39.88,54.23,3,1.83,6106,113.422637,123.240786,132.941078,139.515265,I,Above,Flat,0,5701,,47.05514193,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23785,NJBF000056567,7 N JASPER AVE,Margate City,NJ,39.32877191,-74.50315088,RES1,3001,,18,NE,1925,1925,3102,2,1,1638.319523,1638.319523,3505,NO,29.41,43.78,3,4.46,6106,113.425905,123.243393,132.943729,139.51828,I,Above,Hip,0,5701,,36.59763599,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23786,NJBF000056620,8 N IROQUOIS AVE,Margate City,NJ,39.3288807,-74.50297268,RES1,3001,,18,NE,1925,1925,3102,2,1,1792.941813,1792.941813,3505,NO,28.61,33.79,3,2.2,6106,113.428246,123.245304,132.945812,139.520477,I,Above,Gable,0,5701,,31.20032017,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23787,NJBF000057150,15 N HUNTINGTON AVE,Margate City,NJ,39.33003135,-74.50196155,RES1,3001,,21,NE,2014,2014,3102,3,1,701.080234,701.080234,3505,NO,48.13,55.18,3,-0.63,6106,113.433954,123.250154,132.951793,139.525829,I,Above,Gable,0,5701,,51.65798051,0,0,,,,1,1,,0.03,nav,1,2014,3,, 23788,NJBF000054635,,Margate City,NJ,39.323928,-74.5164695,RES1,3001,,NaN,NE,2002,0,3102,2,1,791.031418,791.031418,3507,NO,38.27,51.25,1,2.72,6106,113.20538,123.063966,132.753497,139.309548,I,Above,Gable,0,5701,,44.75901566,0,0,,,,1,1,,0.03,nav,1,2002,2,, 23789,NJBF000055347,200 N HARDING AVE,Margate City,NJ,39.32584386,-74.51468311,RES1,3001,,45,NE,1950,1950,3102,2,2,934.79407,934.79407,3505,NO,25.43,32.22,3,-2.65,6106,113.215829,123.073362,132.764731,139.321245,I,Above,Gable,0,5701,,28.82806428,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23790,NJBF000056194,11 S IROQUOIS AVE,Margate City,NJ,39.32794187,-74.50149494,RES1,3001,,21,NE,1965,1965,3102,2,1,1734.507195,1734.507195,3505,NO,36.79,42.4,3,2.63,6106,113.474263,123.282093,132.983469,139.56288,I,Above,Gable,0,5701,,39.59723931,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 23791,NJBF000057057,301 N PEMBROKE AVE,Margate City,NJ,39.32982755,-74.51074896,RES1,3001,,19,NE,1988,1988,3102,2,1,1542.026808,1542.026808,3505,NO,41.11,53.63,3,7.91,6106,113.243639,123.097187,132.792339,139.349043,I,Above,Flat,0,5701,,47.3724253,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 23792,NJBF000054757,101 S QUINCY AVE,Margate City,NJ,39.32424653,-74.50628826,RES1,3001,,22,NE,2016,2016,3102,2,1,2441.456823,2441.456823,3505,NO,29.56,42.01,3,-2.57,6106,113.423079,123.239559,132.935866,139.512258,I,Above,Hip,0,5701,,35.78290029,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 23793,NJBF000060591,403 N ESSEX AVE,Margate City,NJ,39.33624424,-74.50241659,RES1,3001,,17,NE,1952,1952,3102,2,1,2637.525527,2637.525527,3505,NO,32.57,37.72,3,4.65,6106,113.336074,123.172059,132.874509,139.429445,I,Above,Hip,0,5701,,35.14289199,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23794,NJBF000058492,9 S ANDOVER AVE,Margate City,NJ,39.33241094,-74.49269069,RES1,3001,,19,NE,1945,1945,3102,2,1,1431.58486,1431.58486,3505,NO,27.87,42.04,3,-0.14,6106,113.604328,123.387642,133.097923,139.681802,I,Above,Gable,0,5701,,34.95123795,0,0,,,,1,1,,0.03,nav,1,1945,2,, 23795,NJBF000061380,420 N DOUGLAS AVE,Margate City,NJ,39.33753964,-74.5033336,RES1,3001,,18,NE,1971,1971,3102,2,1,2050.645701,2050.645701,3505,NO,41.45,48.17,3,6.25,6110,113.297765,123.141266,132.843089,139.391877,I,Above,Gable,0,5701,,44.81083457,0,0,,,,1,1,,0.35,nav,1,1971,2,, 23796,NJBF000061213,219 N BELMONT DR,Margate City,NJ,39.33724239,-74.49816577,RES1,3001,,18,NE,2002,2002,3103,2,1,1245.973735,1245.973735,3505,NO,34.18,47.99,3,-2.75,6106,113.416212,123.23629,132.942405,139.500514,I,Above,Gable,0,5701,,41.08337621,0,0,,,,1,1,,0.03,nav,1,2002,2,, 23797,NJBF000055126,9314 AMHERST AVE,Margate City,NJ,39.3252134,-74.51763481,COM8,3003,,NaN,ME,1969,0,3401,3,1,6896.468324,6896.468324,3507,NO,48.24,61.68,1,2.03,6106,113.160717,123.02868,132.718091,139.269253,I,Above,Gable,0,5701,,54.9626489,0,0,,,,1,1,,0.03,nav,1,1969,3,, 23798,NJBF000056615,104 N LANCASTER AVE,Margate City,NJ,39.32887395,-74.50664276,RES1,3001,,20,NE,1924,1924,3102,3,1,1550.270496,1550.270496,3505,NO,33.77,39.68,3,-0.16,6106,113.347698,123.180527,132.878267,139.445662,I,Above,Gable,0,5701,,36.72394686,0,1.2,,,,1,1,,0.03,nav,1,1924,3,, 23799,NJBF000054447,9309 WINCHESTER AVE,Margate City,NJ,39.32342903,-74.51573833,RES1,3001,,18,NE,1940,1940,3102,2,1,1113.611893,1113.611893,3507,NO,20.3,31.75,1,-0.83,6106,113.228797,123.082563,132.772296,139.33077,I,Above,Hip,0,5701,,26.02776824,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23800,NJBF000054095,13 S DECATUR AVE,Margate City,NJ,39.32237619,-74.51252668,RES1,3001,,17,NE,1950,1950,3102,1,1,1408.553721,1408.553721,3505,NO,12.45,19.21,3,-2.42,6106,113.314578,123.151153,132.842356,139.409156,I,Above,Gable,0,5701,,15.83242595,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23801,NJBF000057782,101 S ARGYLE AVE,Margate City,NJ,39.3311542,-74.4923932,RES1,3001,,20,NE,2012,2012,3102,3,1,2193.774875,2193.774875,3505,NO,52.41,66.57,3,0.81,6106,113.628576,123.407055,133.117299,139.705563,I,Above,Gable,0,5701,,59.48982131,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 23802,NJBF000053955,33 S BENSON AVE,Margate City,NJ,39.3219042,-74.51138129,RES1,3001,,20,NE,1952,1890,3102,2,1,1380.123192,1380.123192,3505,NO,33.09,46.59,3,7.36,6106,113.346627,123.176746,132.868456,139.438197,I,Above,Flat,0,5701,,39.83971291,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23803,NJBF000057069,8017 VENTNOR AVE,Margate City,NJ,39.32985764,-74.49993406,RES1,3001,,NaN,NE,1955,1955,3102,1,1,1992.418079,1992.418079,3505,NO,9.08,22.54,3,-1.93,6106,113.481044,123.288003,132.991241,139.569527,I,Above,Flat,0,5701,,15.80845604,0,0,,,,1,1,,0.03,nav,1,1955,1,, 23804,NJBF000062941,7800 BAYSHORE DR,Margate City,NJ,39.34055424,-74.50627107,RES1,3001,,19,NE,1964,1964,3102,2,1,2680.474467,2680.474467,3505,NO,31.4,42.98,3,4.62,6106,113.191121,123.055467,132.755051,139.287719,I,Above,Hip,0,5701,,37.190353,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 23805,NJBF000061932,8200 LAGOON DRIVE,Margate City,NJ,39.33850694,-74.51066153,RES1,3001,,18,NE,1979,1979,3102,2,1,2261.16865,2261.16865,3505,NO,36.22,41.77,3,7.78,6106,113.122071,123.000631,132.697057,139.22895,I,Above,Gable,0,5701,,38.99676802,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 23806,NJBF000060791,312 N CLERMONT AVE,Margate City,NJ,39.33655022,-74.50078049,RES1,3001,,17,NE,1957,1957,3102,2,1,1787.347961,1787.347961,3505,NO,24.62,30.29,3,2.7,6106,113.368004,123.197653,132.901475,139.458104,I,Above,Gable,0,5701,,27.45561656,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 23807,NJBF000056006,302 N VENDOME AVE,Margate City,NJ,39.32750216,-74.51465365,RES1,3001,,17,NE,1920,1920,3102,2,1,1190.975474,1190.975474,3505,NO,42.42,54.07,3,5.92,6106,113.191955,123.05488,132.746859,139.300166,I,Above,Gable,0,5701,,48.24911419,0,0,,,,1,1,,0.03,nav,1,1920,2,, 23808,NJBF000062165,8204 BAYSHORE DR WEST,Margate City,NJ,39.33890778,-74.51201979,RES1,3001,,20,NE,1983,1983,3102,3,1,2252.607366,2252.607366,3505,NO,44.7,51.73,3,7.1,6106,113.086398,122.972104,132.667616,139.195446,I,Above,Flat,0,5701,,48.21326094,0,0,,,,1,1,,0.03,nav,1,1983,3,, 23809,NJBF000058717,406 N JEROME AVE,Margate City,NJ,39.33280241,-74.50863222,RES1,3001,,17,NE,1964,1964,3101,1,1,2058.201797,2058.201797,3505,NO,16.28,23.86,3,0.7,6106,113.247429,123.100835,132.798105,139.351729,I,Above,Hip,0,5701,,20.0741857,0,0,,,,1,1,,0.03,nav,1,1964,1,, 23810,NJBF000056021,221 N UNION AVE,Margate City,NJ,39.32753436,-74.51324435,RES1,3001,,17,NE,1930,1930,3102,2,1,871.1995045,871.1995045,3505,NO,22.46,29.78,3,-2.82,6106,113.222381,123.079352,132.772208,139.32854,I,Above,Gable,0,5701,,26.12031787,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23811,NJBF000056726,8805 AMHERST AVE,Margate City,NJ,39.32912725,-74.51176945,RES1,3001,,21,NE,2002,2002,3102,2,1,1541.925123,1541.925123,3505,NO,34.64,42.12,3,3.48,6106,113.231424,123.087173,132.781461,139.337576,I,Above,Hip,0,5701,,38.37945168,0,0,,,,1,1,,0.03,nav,1,2002,2,, 23812,NJBF000059692,115 N CLARENDON AVE,Margate City,NJ,39.33469709,-74.49774529,RES1,3001,,17,NE,1956,1956,3102,1,1,1408.631721,1408.631721,3505,NO,15.8,23.93,3,3.02,6106,113.460873,123.272279,132.978445,139.546575,I,Above,Gable,0,5701,,19.8669744,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 23813,NJBF000056896,,Margate City,NJ,39.329487,-74.515072,RES1,3001,,NaN,NE,1969,0,3102,2,1,1759.148626,1759.148626,3505,NO,26.43,40.25,3,2.36,6106,113.153649,123.024838,132.717167,139.265208,I,Above,Gable,0,5701,,33.33940101,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23814,NJBF000056849,,Margate City,NJ,39.32938999,-74.51496503,RES1,3001,,NaN,NE,1969,0,3102,2,1,1650.045355,1650.045355,3505,NO,24.06,31.69,3,0.19,6106,113.157416,123.027831,132.720197,139.2687,I,Above,Gable,0,5701,,27.87815222,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23815,NJBF000059440,212 N ESSEX AVE,Margate City,NJ,39.33424221,-74.50077977,RES1,3001,,17,NE,1950,1950,3102,2,1,1457.820428,1457.820428,3505,NO,42.14,49.59,3,7.59,6106,113.400256,123.22357,132.92709,139.491585,I,Above,Hip,0,5701,,45.86697848,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23816,NJBF000056812,27 N JEROME AVE,Margate City,NJ,39.32930547,-74.50452852,RES1,3001,,17,NE,1955,1955,3101,1,1,1150.102963,1150.102963,3505,NO,15.67,25.09,3,1.58,6106,113.387932,123.212985,132.912422,139.483111,I,Above,Gable,0,5701,,20.37995436,0,0,,,,1,1,,0.03,nav,1,1955,1,, 23817,NJBF000055093,7 N UNION AVE,Margate City,NJ,39.32511745,-74.51088967,RES1,3001,,19,NE,1994,1994,3102,3,1,1630.828366,1630.828366,3505,NO,42.86,57.6,3,3.99,6106,113.309557,123.148486,132.841964,139.407839,I,Above,Flat,0,5701,,50.22966064,0,1.1,,,,1,1,,0.03,nav,1,1994,3,, 23818,NJBF000056212,8111 ATLANTIC AVE,Margate City,NJ,39.32797735,-74.50003585,RES1,3001,,17,NE,1953,1953,3101,1,1,2748.481394,2748.481394,3505,NO,25.73,36.4,3,6.71,6106,113.505804,123.307501,133.010072,139.592153,I,Above,Hip,0,5701,,31.06420623,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 23819,NJBF000056319,18 S HAVERFORD AVE,Margate City,NJ,39.32820617,-74.49999412,RES1,3001,,18,NE,1915,1915,3102,2,1,1561.163748,1561.163748,3505,NO,34.85,41.42,3,2.96,6106,113.503428,123.305647,133.008329,139.590045,I,Above,Hip,0,5701,,38.13547175,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 23820,NJBF000054497,6 S UNION AVE,Margate City,NJ,39.32354074,-74.50997274,RES1,3001,,20,NE,1997,1997,3102,2,1,3053.765472,3053.765472,3505,NO,30.13,40.69,3,5.52,6106,113.352954,123.18271,132.876127,139.446364,I,Above,Gable,0,5701,,35.4087982,0,1.2,,,,1,1,,0.03,nav,1,1997,2,, 23821,NJBF000059980,23 E COLMAR CIRCLE,Margate City,NJ,39.33518724,-74.50465618,RES1,3001,,17,NE,1950,1950,3101,2,1,1190.795386,1190.795386,3505,NO,23.64,34.81,3,1.84,6106,113.30139,123.144268,132.844834,139.399235,I,Above,Flat,0,5701,,29.22467188,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23822,NJBF000053712,9500 VENTNOR AVE,Margate City,NJ,39.32099401,-74.51547516,RES1,3001,,NaN,NE,1969,0,3102,2,1,1219.877776,1219.877776,3507,NO,27.54,40.81,1,0.12,6106,113.271162,123.115282,132.803978,139.366699,I,Above,Gable,0,5701,,34.17339384,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23823,NJBF000055330,9001 WINCHESTER AVE,Margate City,NJ,39.32578704,-74.51223262,GOV1,3004,,NaN,E,1969,1952,3401,2,1,28487.10662,28487.10662,3507,NO,22.24,32.73,1,-0.4,6106,113.27027,123.117154,132.810023,139.371909,I,Above,Flat,0,5703,,27.4876962,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23824,NJBF000057436,216 N LANCASTER AVE,Margate City,NJ,39.33057354,-74.50824481,RES1,3001,,17,NE,1950,1950,3101,1,1,1451.404498,1451.404498,3505,NO,15.19,21.25,3,1.58,6106,113.287916,123.13292,132.829981,139.390179,I,Above,Gable,0,5701,,18.21608222,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23825,NJBF000063020,617 N DELAVAN AVE,Margate City,NJ,39.34071495,-74.50505916,RES1,3001,,18,NE,1963,1963,3102,2,1,1475.709728,1475.709728,3505,NO,35.71,50.06,3,1.84,6106,113.215802,123.075158,132.775672,139.309743,I,Above,Flat,0,5701,,42.88886995,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 23826,NJBF000059976,115 N BARCLAY AVE,Margate City,NJ,39.33518114,-74.49670593,RES1,3001,,17,NE,1950,1950,3102,2,1,1588.00366,1588.00366,3505,NO,26.61,36.12,3,1.98,6106,113.477059,123.285288,132.992443,139.560486,I,Above,Hip,0,5701,,31.36367912,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 23827,NJBF000053553,9406 PACIFIC AVE,Margate City,NJ,39.32036865,-74.51375816,RES1,3001,,17,NE,1949,1949,3102,2,1,913.8349234,913.8349234,3507,NO,27.6,35.19,1,-0.51,6106,113.31794,123.152666,132.842068,139.409098,I,Above,Flat,0,5701,,31.39651684,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 23828,NJBF000054864,110 S NASSAU AVE,Margate City,NJ,39.32450512,-74.50440921,RES1,3001,,21,NE,1999,2018,3103,5,1,2396.527089,2396.527089,3505,NO,83.77,93.02,3,-2.08,6106,113.460407,123.269755,132.967564,139.547132,I,Above,Hip,0,5701,,88.39455579,0,0,,,,1,1,,0.03,nav,1,1999,5,, 23829,NJBF000054554,12 S THURLOW AVE,Margate City,NJ,39.32371137,-74.50919366,RES1,3001,,23,NE,2016,2016,3103,3,1,2049.094403,2049.094403,3505,NO,60.07,73.65,3,5.29,6106,113.367453,123.19448,132.888502,139.460033,I,Above,Hip,0,5701,,66.86024702,0,0,,,,1,1,,0.03,nav,1,2016,3,, 23830,NJBF000056937,419 N VENDOME AVE,Margate City,NJ,39.32957984,-74.51565506,RES1,3001,,18,NE,1972,1972,3102,2,1,2345.104478,2345.104478,3505,NO,29.24,38.42,3,6.16,6106,113.139491,123.013505,132.705513,139.252029,I,Above,Gable,0,5701,,33.83261669,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 23831,NJBF000059324,12 N FREDERICKSBURG AVE,Margate City,NJ,39.3340136,-74.49369428,RES1,3001,,18,NE,1925,1925,3102,2,1,1422.326662,1422.326662,3505,NO,19.72,30.88,3,-1.51,6106,113.559788,123.351848,133.061536,139.638319,I,Above,Hip,0,5701,,25.30105068,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23832,NJBF000057598,311 N NASSAU AVE,Margate City,NJ,39.3308581,-74.50991363,RES1,3001,,17,NE,1950,1950,3102,1,1,1212.544038,1212.544038,3505,NO,24.52,32.64,3,5.66,6106,113.247099,123.10022,132.796194,139.352205,I,Above,Hip,0,5701,,28.57842938,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23833,NJBF000060634,1 E GILMAR CIRCLE,Margate City,NJ,39.33630201,-74.50571892,RES1,3001,,18,NE,1965,1965,3101,2,1,1586.79175,1586.79175,3505,NO,34.9,48.53,3,-1.48,6106,113.262259,123.112902,132.812778,139.361558,I,Above,Flat,0,5701,,41.7178371,0,0,,,,1,1,,0.03,nav,1,1965,2,, 23834,NJBF000060568,402 N GLADSTONE AVE,Margate City,NJ,39.33620189,-74.50533545,RES1,3001,,17,NE,1966,1966,3101,3,1,1820.109236,1820.109236,3505,NO,51.79,59.24,3,-0.15,6106,113.272149,123.120827,132.820985,139.370812,I,Above,Hip,0,5701,,55.51442713,0,1.1,,,,1,1,,0.03,nav,1,1966,3,, 23835,NJBF000058723,20 N CLARENDON AVE,Margate City,NJ,39.33281236,-74.49641293,RES1,3001,,17,NE,1950,1950,3102,2,1,1571.932618,1571.932618,3505,NO,23.76,37.47,3,0.5,6106,113.516681,123.317085,133.024069,139.600645,I,Above,Gable,0,5701,,30.61547548,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23836,NJBF000062724,7803 BURK AVE,Margate City,NJ,39.34008842,-74.50605889,RES1,3001,,17,NE,1970,1970,3102,2,1,2397.187181,2397.187181,3505,NO,26.76,32.65,3,3.9,6106,113.202219,123.064434,132.764191,139.298971,I,Above,Gable,0,5701,,29.70510546,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 23837,NJBF000061016,206 N FREDERICKSBURG AVE,Margate City,NJ,39.33691958,-74.49633408,RES1,3001,,17,NE,1969,1969,3103,2,1,1165.483354,1165.483354,3505,NO,26.26,34.47,3,-2.22,6106,113.46116,123.272423,132.98013,139.542081,I,Above,Gable,0,5701,,30.36102979,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23838,NJBF000055940,10 S JEROME AVE,Margate City,NJ,39.32734052,-74.50291028,RES1,3001,,18,NE,1938,1938,3102,2,1,1111.446692,1111.446692,3505,NO,34.29,41.12,3,1.32,6106,113.451889,123.263906,132.96396,139.541807,I,Above,Hip,0,5701,,37.70544413,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 23839,NJBF000053213,9615 ATLANTIC AVE,Margate City,NJ,39.3191125,-74.5155495,RES3E,3001,,39,ME,1979,1979,3301,3,1,6381.028076,6381.028076,3507,NO,45.75,54.66,1,1.06,6106,113.298035,123.135738,132.82335,139.388375,I,Above,Flat,0,5701,,50.2023139,0,1.1,,,,1,1,,0.03,nav,1,1979,3,, 23840,NJBF000057993,6 S BRUNSWICK AVE,Margate City,NJ,39.33152072,-74.49460986,RES1,3001,,18,NE,1968,1968,3102,3,1,684.0202138,684.0202138,3505,NO,59.47,66.45,3,7.14,6106,113.574595,123.363589,133.071887,139.655406,I,Above,Flat,0,5701,,62.96256603,0,1.1,,,,1,1,,0.03,nav,1,1968,3,, 23841,NJBF000059369,14 N FREDERICKSBURG AVE,Margate City,NJ,39.33411401,-74.49379872,RES1,3001,,18,NE,1929,1929,3102,2,1,1399.872779,1399.872779,3505,NO,22.21,29.48,3,-1.92,6106,113.556077,123.348862,133.058472,139.634737,I,Above,Hip,0,5701,,25.84113882,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 23842,NJBF000054402,2 S CEDAR GROVE AVE,Margate City,NJ,39.32328686,-74.51199626,RES1,3001,,18,NE,1959,1959,3102,2,1,2609.983163,2609.983163,3505,NO,35.68,47.35,3,2.32,6106,113.312555,123.150014,132.841984,139.408525,I,Above,Hip,0,5701,,41.51492171,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 23843,NJBF000054490,119 N JEFFERSON AVE,Margate City,NJ,39.32352451,-74.51724535,RES3B,3004,,20,ME,2004,2004,3301,2,1,4161.664341,4161.664341,3505,NO,44.16,55.36,3,8.07,6106,113.194506,123.05497,132.74388,139.298919,I,Above,Gable,0,NaN,,49.75849484,0,0,,,,1,1,,0.03,nav,1,2004,2,, 23844,NJBF000057204,18 N HAVERFORD AVE,Margate City,NJ,39.33014341,-74.50173309,RES1,3001,,17,NE,1935,1935,3101,1,1,1516.519625,1516.519625,3505,NO,22.94,31.98,3,4.56,6106,113.437388,123.252938,132.954791,139.529,I,Above,Gable,0,5701,,27.45892779,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 23845,NJBF000061938,8208 BAYSHORE DR WEST,Margate City,NJ,39.33851745,-74.51212585,RES1,3001,,18,NE,1972,1972,3102,2,1,2103.2151,2103.2151,3505,NO,41.32,48.01,3,4.88,6106,113.089501,122.974621,132.670061,139.198991,I,Above,Gable,0,5701,,44.66475799,0,0,,,,1,1,,0.03,nav,1,1972,2,, 23846,NJBF000060742,8 E GILMAR CIRCLE,Margate City,NJ,39.33647775,-74.50657699,RES1,3001,,17,NE,1967,1967,3101,1,1,1707.100515,1707.100515,3505,NO,25.39,37.44,3,7.71,6110,113.240823,123.095731,132.794978,139.341562,I,Above,Gable,0,5701,,31.41703253,0,0,,,,1,1,,0.35,nav,1,1967,1,, 23847,NJBF000057669,106A N HUNTINGTON AVE,Margate City,NJ,39.33096506,-74.50330148,RES1,3001,,19,NE,2000,2000,3102,3,1,1267.924161,1267.924161,3507,NO,50.97,62.99,1,-0.53,6106,113.39112,123.215893,132.91672,139.485883,I,Above,Gable,0,5701,,56.97968208,0,0,,,,1,1,,0.03,nav,1,2000,3,, 23848,NJBF000058462,23 N DOUGLAS AVE,Margate City,NJ,39.33236408,-74.49772151,RES1,3001,,17,NE,1930,1930,3102,2,1,1630.863126,1630.863126,3505,NO,29.19,42.08,3,2.65,6106,113.494144,123.298912,133.004654,139.580352,I,Above,Flat,0,5701,,35.63715328,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23849,NJBF000059476,7700 MONMOUTH AVE,Margate City,NJ,39.33431999,-74.49860043,RES1,3001,,17,NE,1960,1960,3103,1,1,1207.911019,1207.911019,3505,NO,16.64,29.24,3,-2.39,6110,113.447276,123.261345,132.966711,139.534716,I,Above,Gable,0,5701,,22.9406467,0,0,,,,1,1,,0.35,nav,1,1960,1,, 23850,NJBF000059096,504 N KENYON AVE,Margate City,NJ,39.3335415,-74.51011532,RES1,3001,,18,NE,1971,1971,3102,2,1,3670.492601,3670.492601,3505,NO,20.41,32.36,3,-2.43,6106,113.204167,123.066254,132.762625,139.31111,I,Above,Gable,0,5701,,26.3834703,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 23851,NJBF000055644,8 N PEMBROKE AVE,Margate City,NJ,39.326635,-74.50821,RES1,3001,,21,NE,2013,2013,3102,2,1,875.0717145,875.0717145,3505,NO,31.64,43.19,3,6.66,6106,113.345912,123.178371,132.874253,139.442936,I,Above,Gable,0,5701,,37.41634315,0,0,,,,1,1,,0.03,nav,1,2013,2,, 23852,NJBF000058561,8600 FULTON AVE,Margate City,NJ,39.33251399,-74.51112244,RES1,3001,,17,NE,1962,1962,3102,2,1,2717.861888,2717.861888,3505,NO,28.19,35.32,3,2.84,6106,113.196673,123.060103,132.755619,139.304804,I,Above,Hip,0,5701,,31.75593349,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 23853,NJBF000056681,28 N JEROME AVE,Margate City,NJ,39.32903479,-74.50496237,RES1,3001,,17,NE,1950,1950,3102,2,1,1106.940485,1106.940485,3505,NO,36.62,47.96,3,3.64,6106,113.382309,123.208397,132.907427,139.477851,I,Above,Gable,0,5701,,42.28937258,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 23854,NJBF000062240,13 BAYCREST DRIVE,Margate City,NJ,39.33907157,-74.50785693,RES1,3001,,18,NE,1979,1979,3102,2,1,1597.747874,1597.747874,3505,NO,29.65,41.09,3,6.56,6106,113.176373,123.043948,132.742367,139.277655,I,Above,Gable,0,5701,,35.36547171,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 23855,NJBF000054976,9414 AMHERST AVE,Margate City,NJ,39.32479729,-74.51857306,RES3B,3001,,39,E,2004,2004,3303,3,1,3883.985411,3883.985411,3505,NO,37.38,44.34,3,-2.26,6106,113.146471,123.01698,132.705705,139.255528,I,Above,Gable,0,5701,,40.85944038,0,0,,,,1,1,,0.03,nav,1,2004,3,, 23856,NJBF000056397,3 N JEROME AVE,Margate City,NJ,39.3283815,-74.5035165,REL1,3004,,15,ME,1930,1930,3401,2,3,522.6150803,522.6150803,3507,NO,27.26,35.23,1,0.32,6106,113.423508,123.241362,132.941292,139.515943,I,Above,Flat,0,5701,,31.24621659,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 23857,NJBF000056677,7911 ATLANTIC AVE,Margate City,NJ,39.32902846,-74.49781506,RES1,3001,,27,NE,1925,1925,3102,2,2,1891.737168,1891.737168,3505,NO,30.75,42.76,3,6.61,6106,113.539515,123.334908,133.039681,139.623735,I,Above,Flat,0,5701,,36.75482171,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23858,NJBF000056480,101 N MANSFIELD AVE,Margate City,NJ,39.32856841,-74.50675087,RES1,3001,,19,NE,1955,1955,3102,2,1,2305.116733,2305.116733,3505,NO,44.55,51.11,3,6.09,6106,113.349759,123.182099,132.879667,139.447498,I,Above,Hip,0,5701,,47.83319,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 23859,NJBF000055813,121 N THURLOW AVE,Margate City,NJ,39.32704142,-74.51179546,RES1,3001,,20,NE,2002,2002,3102,2,1,1459.661416,1459.661416,3505,NO,30.19,35.29,3,0.75,6106,113.261382,123.110522,132.804132,139.364575,I,Above,Hip,0,5701,,32.73771497,0,0,,,,1,1,,0.03,nav,1,2002,2,, 23860,NJBF000056307,112 N OSBORNE AVE,Margate City,NJ,39.32818935,-74.50880889,RES1,3001,,17,NE,1972,1972,3101,1,1,1749.478264,1749.478264,3505,NO,20.79,28.31,3,4.12,6110,113.310077,123.150082,132.846073,139.410476,I,Above,Gable,0,5701,,24.5486716,0,0,,,,1,1,,0.35,nav,1,1972,1,, 23861,NJBF000056621,101 N LANCASTER AVE,Margate City,NJ,39.32888102,-74.50613812,RES1,3001,,19,NE,1945,1945,3102,2,1,1557.799201,1557.799201,3505,NO,36.03,42.09,3,4.21,6106,113.358692,123.189368,132.887479,139.45588,I,Above,Flat,0,5701,,39.06255655,0,0,,,,1,1,,0.03,nav,1,1945,2,, 23862,NJBF000053704,11 S JEFFERSON AVE,Margate City,NJ,39.32096005,-74.51493413,RES1,3001,,18,NE,1902,1902,3102,3,2,931.4942729,931.4942729,3507,NO,50.58,65.09,1,0.15,6106,113.283442,123.125177,132.814178,139.378058,I,Above,Gable,0,5701,,57.83635391,0,0,,,,1,1,,0.03,nav,1,1902,3,, 23863,NJBF000062645,4 BAYSHORE CT,Margate City,NJ,39.33991757,-74.50672536,RES1,3001,,18,NE,1967,1967,3102,2,1,1607.098534,1607.098534,3505,NO,34.37,44.42,3,-1.16,6106,113.189789,123.054531,132.753786,139.288044,I,Above,Hip,0,5701,,39.39482635,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 23864,NJBF000053616,9210 ATLANTIC AVE,Margate City,NJ,39.3206202,-74.51128491,COM8,3001,,NaN,ME,1969,0,3401,1,1,1156.882058,1156.882058,3507,NO,12.83,20.34,1,0.69,6106,113.367973,123.193232,132.884343,139.455888,I,Above,Flat,0,NaN,,16.58600233,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23865,NJBF000053306,9619 PACIFIC AVE,Margate City,NJ,39.31944645,-74.51603807,RES1,3001,,18,NE,1944,1944,3102,2,1,697.483496,697.483496,3507,NO,29.55,37.77,1,0.93,6106,113.282384,123.123314,132.81083,139.37446,I,Above,Flat,0,5701,,33.65921391,0,1.1,,,,1,1,,0.03,nav,1,1944,2,, 23866,NJBF000053284,9619 PACIFIC AVE,Margate City,NJ,39.31937807,-74.51612327,RES1,3001,,18,NE,1944,1944,3102,2,1,1070.818031,1070.818031,3507,NO,27.18,37.25,1,-0.87,6106,113.281572,123.122611,132.810038,139.373582,I,Above,Flat,0,5701,,32.21444558,0,1.1,,,,1,1,,0.03,nav,1,1944,2,, 23867,NJBF000060331,300 N CLERMONT AVE,Margate City,NJ,39.33578598,-74.50005081,RES1,3001,,NaN,NE,1956,0,3102,2,1,1596.542498,1596.542498,3505,NO,27.53,40.94,3,4.95,6106,113.39475,123.219152,132.923498,139.484048,I,Above,Flat,0,5701,,34.23101333,0,0,,,,1,1,,0.03,nav,1,1956,2,, 23868,NJBF000054740,111 N WASHINGTON AVE,Margate City,NJ,39.32420037,-74.51525745,RES1,3001,,21,NE,2005,2005,3102,2,1,3831.774549,3831.774549,3507,NO,37.87,52.19,1,-0.21,6106,113.227755,123.082146,132.772504,139.330721,I,Above,Hip,0,5701,,45.02828298,0,0,,,,1,1,,0.03,nav,1,2005,2,, 23869,NJBF000060365,404 N EXETER AVE,Margate City,NJ,39.33585346,-74.50339615,RES1,3001,,19,NE,1986,1986,3102,2,1,1920.763158,1920.763158,3505,NO,27.69,37.18,3,0.01,6106,113.319895,123.159099,132.860726,139.415262,I,Above,Hip,0,5701,,32.43166564,0,0,,,,1,1,,0.03,nav,1,1986,2,, 23870,NJBF000055871,101 N QUINCY AVE,Margate City,NJ,39.32716617,-74.50910338,RES1,3001,,17,NE,1970,1970,3101,1,1,1077.608685,1077.608685,3505,NO,27.65,37.92,3,8.6,6106,113.318561,123.156559,132.852008,139.417857,I,Above,Hip,0,5701,,32.78697634,0,0,,,,1,1,,0.03,nav,1,1970,1,, 23871,NJBF000058896,203 N GLADSTONE AVE,Margate City,NJ,39.33313442,-74.50224941,RES1,3001,,17,NE,1951,1951,3101,1,1,1199.582072,1199.582072,3505,NO,17.87,31.78,3,-0.39,6106,113.383462,123.21002,132.912151,139.477382,I,Above,Gable,0,5701,,24.82295855,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 23872,NJBF000058006,11 S BRUNSWICK AVE,Margate City,NJ,39.33154932,-74.49415758,RES1,3001,,18,NE,1935,1935,3102,2,1,1672.964394,1672.964394,3505,NO,39.19,47.49,3,2.14,6106,113.584152,123.371293,133.080009,139.664206,I,Above,Gable,0,5701,,43.33700034,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 23873,NJBF000057750,113 N HANOVER AVE,Margate City,NJ,39.33110352,-74.50375792,RES1,3001,,17,NE,1957,1957,3101,1,1,1245.468168,1245.468168,3507,NO,19.44,29.5,1,0.8,6106,113.379071,123.206235,132.906742,139.47466,I,Above,Gable,0,5701,,24.46904452,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 23874,NJBF000059035,38 N CLERMONT AVE,Margate City,NJ,39.33340655,-74.49773581,RES1,3001,,20,NE,2007,2007,3102,2,1,1213.993308,1213.993308,3505,NO,18.85,32.54,3,-2.42,6106,113.479147,123.286929,132.992876,139.565329,I,Above,Hip,0,5701,,25.69356435,0,0,,,,1,1,,0.03,nav,1,2007,2,, 23875,NJBF000054326,112 S RUMSON AVE,Margate City,NJ,39.3230788,-74.50673905,RES1,3001,,21,NE,2006,2006,3103,3,1,2547.051799,2547.051799,3505,NO,39.62,47.06,3,-2.38,6106,113.430466,123.244983,132.940442,139.517565,I,Above,Hip,0,5701,,43.34070218,0,0,,,,1,1,,0.03,nav,1,2006,3,, 23876,NJBF000058510,206 N HAVERFORD AVE,Margate City,NJ,39.33244076,-74.50392109,RES1,3001,,17,NE,1972,1972,3101,1,1,1800.422795,1800.422795,3505,NO,8.34,22.84,3,-2.24,6106,113.356422,123.188238,132.888917,139.452952,I,Above,Gable,0,5701,,15.58689918,0,0,,,,1,1,,0.03,nav,1,1972,1,, 23877,NJBF000055868,120 N SUMNER AVE,Margate City,NJ,39.32715796,-74.51158177,RES1,3001,,17,NE,1956,1956,3102,2,1,2180.919091,2180.919091,3505,NO,30.44,37.99,3,5.3,6106,113.264331,123.112939,132.806727,139.367393,I,Above,Hip,0,5701,,34.21252825,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 23878,NJBF000058117,207 N IROQUOIS AVE,Margate City,NJ,39.33174109,-74.50514542,RES1,3001,,17,NE,1954,1954,3101,1,1,1316.380448,1316.380448,3505,NO,14.15,22.38,3,-0.99,6106,113.339423,123.174494,132.874089,139.437623,I,Above,Hip,0,5701,,18.26670683,0,0,,,,1,1,,0.03,nav,1,1954,1,, 23879,NJBF000058066,205 N IROQUOIS AVE,Margate City,NJ,39.3316509,-74.50508191,RES1,3001,,17,NE,1950,1950,3102,2,1,1007.539918,1007.539918,3505,NO,27.68,36.05,3,-2.96,6106,113.342096,123.176626,132.876249,139.440145,I,Above,Flat,0,5701,,31.86472143,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23880,NJBF000056456,8303 VENTNOR AVE,Margate City,NJ,39.32850166,-74.50273269,RES1,3001,,17,NE,1950,1950,3102,2,1,1399.425496,1399.425496,3505,NO,29.98,44.97,3,7.8,6106,113.438985,123.253848,132.954425,139.53035,I,Above,Hip,0,5701,,37.47834572,0,0.1,,,,1,1,,0.03,nav,1,1950,2,, 23881,NJBF000056412,109 S FRANKLIN AVE,Margate City,NJ,39.32841089,-74.49673491,RES1,3001,,19,NE,1928,1928,3102,2,1,2050.402066,2050.402066,3505,NO,21.69,33.69,3,-0.85,6106,113.572087,123.361012,133.066519,139.653782,I,Above,Hip,0,5701,,27.689112,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 23882,NJBF000059370,,Margate City,NJ,39.33411478,-74.5065166,RES1,3001,,NaN,NE,1969,0,3101,1,1,727.5209717,727.5209717,3505,NO,17.32,29.04,3,1.66,6110,113.275415,123.123404,132.822418,139.376551,I,Above,Hip,0,5701,,23.18053336,0,0,,,,1,1,,0.35,nav,1,1969,1,, 23883,NJBF000058231,426 N NASSAU AVE,Margate City,NJ,39.33193662,-74.51141596,RES1,3001,,21,NE,1995,1995,3102,2,1,3305.940896,3305.940896,3505,NO,40.01,47.45,3,7.03,6106,113.198489,123.061454,132.756662,139.306741,I,Above,Hip,0,5701,,43.73030652,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 23884,NJBF000058554,8014 MONMOUTH AVE,Margate City,NJ,39.33250918,-74.50239962,RES1,3001,,17,NE,1947,1947,3101,1,1,1854.090673,1854.090673,3505,NO,12.31,24.51,3,0.25,6106,113.388984,123.214395,132.916282,139.483037,I,Above,Gable,0,5701,,18.40981775,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 23885,NJBF000061365,220 N ARGYLE AVE,Margate City,NJ,39.33751372,-74.49804789,RES1,3001,,17,NE,1950,1950,3103,1,1,1390.383462,1390.383462,3505,NO,15.63,27.12,3,-0.59,6106,113.415066,123.235342,132.941585,139.498803,I,Above,Hip,0,5701,,21.37594294,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23886,NJBF000057412,206 N KENYON AVE,Margate City,NJ,39.330528,-74.5072725,RES1,3001,,17,NE,1952,1952,3101,1,1,1187.988497,1187.988497,3505,NO,21.09,30.22,3,2.51,6106,113.309986,123.150632,132.848374,139.410688,I,Above,Hip,0,5701,,25.65395083,0,0,,,,1,1,,0.03,nav,1,1952,1,, 23887,NJBF000058866,209 N GRANVILLE AVE,Margate City,NJ,39.3330809,-74.50323891,RES1,3001,,17,NE,1950,1950,3101,1,1,930.0546708,930.0546708,3505,NO,16.33,31.15,3,0.75,6106,113.362378,123.193087,132.894423,139.457945,I,Above,Hip,0,5701,,23.74390001,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23888,NJBF000059191,15 CIRCLE DRIVE,Margate City,NJ,39.33373824,-74.49495933,RES1,3001,,19,NE,1927,1927,3102,2,1,1635.314682,1635.314682,3505,NO,36.37,47.85,3,1.54,6106,113.535748,123.332484,133.040958,139.616826,I,Above,Gable,0,5701,,42.1114528,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 23889,NJBF000058126,121 N HUNTINGTON AVE,Margate City,NJ,39.33175465,-74.50358331,RES1,3001,,20,NE,2005,2005,3102,3,1,988.4810828,988.4810828,3507,NO,37.34,42.66,1,2.21,6106,113.373634,123.20197,132.902764,139.469325,I,Above,Gable,0,5701,,40.0014491,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 23890,NJBF000057164,103 N JASPER AVE,Margate City,NJ,39.33005927,-74.50438991,RES1,3001,,20,NE,2008,2008,3102,2,1,1249.810192,1249.810192,3507,NO,33.01,38.3,1,1.15,6106,113.380137,123.206891,132.906645,139.475883,I,Above,Hip,0,5701,,35.65529001,0,0,,,,1,1,,0.03,nav,1,2008,2,, 23891,NJBF000057139,103 S CLERMONT AVE,Margate City,NJ,39.33000635,-74.49439577,RES1,3001,,19,NE,1925,1925,3102,2,1,1068.597132,1068.597132,3505,NO,45.62,56.03,3,8.73,6106,113.600755,123.384448,133.092526,139.680453,I,Above,Flat,0,5701,,50.82806054,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23892,NJBF000058464,7901 WINCHESTER AVE,Margate City,NJ,39.33236479,-74.50014768,RES1,3001,,17,NE,1951,1951,3101,1,1,557.9721286,557.9721286,3505,NO,19.15,28.53,3,3.11,6106,113.440664,123.255905,132.959593,139.530946,I,Above,Gable,0,5701,,23.8425131,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 23893,NJBF000058501,7901 WINCHESTER AVE,Margate City,NJ,39.33242535,-74.49996803,RES1,3001,,17,NE,1951,1951,3102,1,1,1938.686446,1938.686446,3505,NO,11.88,23.64,3,-0.91,6106,113.443782,123.258418,132.962268,139.533776,I,Above,Flat,0,5701,,17.75849356,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 23894,NJBF000053632,7 S MADISON AVE,Margate City,NJ,39.32068235,-74.51571864,RES1,3001,,20,NE,2014,2014,3102,2,2,1020.774232,1020.774232,3507,NO,28.04,40.17,1,1.82,6106,113.270574,123.114604,132.80299,139.36564,I,Above,Gable,0,5701,,34.10357357,0,0,,,,1,1,,0.03,nav,1,2014,2,, 23895,NJBF000060723,711 N JEROME AVE,Margate City,NJ,39.3364507,-74.51120686,RES1,3001,,17,NE,1945,1945,3102,2,1,758.1366536,758.1366536,3505,NO,29.49,37.53,3,-1.77,6106,113.138814,123.014115,132.710085,139.2476,I,Above,Gable,0,5701,,33.5081491,0,1.2,,,,1,1,,0.03,nav,1,1945,2,, 23896,NJBF000058447,212 N HUNTINGTON AVE,Margate City,NJ,39.33233609,-74.50460298,RES1,3001,,17,NE,1957,1957,3102,2,1,1353.862784,1353.862784,3505,NO,26.6,34.71,3,4.96,6106,113.342883,123.177355,132.877489,139.440487,I,Above,Hip,0,5701,,30.65577822,0,0,,,,1,1,,0.03,nav,1,1957,2,, 23897,NJBF000055211,13 N UNION AVE,Margate City,NJ,39.325455,-74.511208,RES1,3001,,17,NE,1953,1953,3101,1,1,1819.191214,1819.191214,3505,NO,13.62,26.74,3,1.75,6106,113.297604,123.139012,132.832416,139.397048,I,Above,Gable,0,5701,,20.17585488,0,0,,,,1,1,,0.03,nav,1,1953,1,, 23898,NJBF000056547,106 S EXETER AVE,Margate City,NJ,39.328716,-74.496751,RES1,3001,,17,NE,1946,1946,3102,2,1,1526.339642,1526.339642,3505,NO,23.04,30.88,3,1.76,6106,113.567367,123.35728,133.062871,139.649498,I,Above,Gable,0,5701,,26.95567744,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 23899,NJBF000060739,201 N ARGYLE AVE,Margate City,NJ,39.33647419,-74.49655868,RES1,3001,,17,NE,1960,1960,3103,2,1,803.8768428,803.8768428,3505,NO,23.71,30.41,3,-2.87,6106,113.462354,123.273416,132.980873,139.544264,I,Above,Gable,0,5701,,27.06317236,0,0,,,,1,1,,0.03,nav,1,1960,2,, 23900,NJBF000055630,14 S KENYON AVE,Margate City,NJ,39.32660623,-74.50381165,RES1,3001,,18,NE,1952,1952,3102,2,1,1810.462856,1810.462856,3505,NO,36.78,45.45,3,3.76,6106,113.442775,123.256333,132.955427,139.532855,I,Above,Hip,0,5701,,41.11416399,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23901,NJBF000063392,4 BRUNSWICK COURT,Margate City,NJ,39.34158779,-74.50386732,RES1,3001,,19,NE,1980,1980,3102,3,1,2532.587794,2532.587794,3505,NO,47.68,59.31,3,0.58,6106,113.230342,123.086564,132.787987,139.320504,I,Above,Hip,0,5701,,53.49968464,0,1.1,,,,1,1,,0.03,nav,1,1980,3,, 23902,NJBF000056909,205 N NASSAU AVE,Margate City,NJ,39.32951622,-74.50862325,RES1,3001,,17,NE,1927,1927,3102,2,1,863.2905922,863.2905922,3505,NO,42.79,55.3,3,6.8,6106,113.294889,123.138263,132.834779,139.39668,I,Above,Gable,0,5701,,49.04424815,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 23903,NJBF000056654,8110 VENTNOR AVE,Margate City,NJ,39.32897489,-74.50074601,RES1,3001,,17,NE,1952,1952,3102,2,1,861.8046991,861.8046991,3505,NO,30.1,36.13,3,8.09,6106,113.475844,123.283628,132.985939,139.564669,I,Above,Hip,0,5701,,33.11212113,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23904,NJBF000054388,102 N ADAMS AVE,Margate City,NJ,39.32326482,-74.51633632,RES1,3001,,17,NE,1957,1957,3101,1,1,1876.430286,1876.430286,3505,NO,11.73,26.04,3,0.14,6106,113.21822,123.073941,132.763251,139.320705,I,Above,Hip,0,5701,,18.88600603,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, 23905,NJBF000056408,5 S HANOVER AVE,Margate City,NJ,39.32840837,-74.50114873,RES1,3001,,18,NE,1926,1926,3102,2,1,1636.772809,1636.772809,3505,NO,29.48,38.15,3,1,6106,113.475143,123.282925,132.984732,139.563878,I,Above,Hip,0,5701,,33.81668613,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 23906,NJBF000054579,103 S RUMSON AVE,Margate City,NJ,39.3237745,-74.5067195,RES1,3001,,19,NE,1925,1925,3103,3,1,509.0545893,509.0545893,3505,NO,54,68.66,3,3.44,6106,113.420606,123.237356,132.933143,139.509377,I,Above,Gable,0,5701,,61.33210659,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 23907,NJBF000059703,7504 WINCHESTER AVE,Margate City,NJ,39.33471047,-74.49538723,RES1,3001,,18,NE,1927,1927,3102,2,1,1412.999734,1412.999734,3505,NO,41.77,48.11,3,5.74,6106,113.512734,123.313984,133.022245,139.593997,I,Above,Hip,0,5701,,44.93984984,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 23908,NJBF000060608,206 N BELMONT DR,Margate City,NJ,39.33627215,-74.49790017,RES1,3001,,18,NE,1950,1950,3103,2,1,1639.329389,1639.329389,3505,NO,25.21,30.86,3,3.56,6106,113.435521,123.25187,132.958118,139.520317,I,Above,Gable,0,5701,,28.03544665,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23909,NJBF000060090,218 N CLERMONT AVE,Margate City,NJ,39.3353835,-74.499584,RES1,3001,,17,NE,1931,1931,3103,2,1,875.5797911,875.5797911,3505,NO,28.6,37.58,3,3.27,6106,113.410687,123.231957,132.936645,139.499379,I,Above,Flat,0,5701,,33.09168965,0,1.1,,,,1,1,,0.03,nav,1,1931,2,, 23910,NJBF000059529,112 N CLARENDON AVE,Margate City,NJ,39.33441795,-74.49797648,RES1,3001,,17,NE,1927,1927,3102,2,1,1285.474163,1285.474163,3505,NO,28.22,43,3,2.02,6110,113.459675,123.271313,132.977233,139.545945,I,Above,Hip,0,5701,,35.61205054,0,1.1,,,,1,1,,0.35,nav,1,1927,2,, 23911,NJBF000057659,125 N JASPER AVE,Margate City,NJ,39.33095119,-74.50524878,RES1,3001,,17,NE,1952,1952,3102,2,1,1365.424707,1365.424707,3507,NO,34.91,43.91,1,2.14,6106,113.348434,123.181596,132.88093,139.44629,I,Above,Gable,0,5701,,39.41201222,0,0,,,,1,1,,0.03,nav,1,1952,2,, 23912,NJBF000056414,113 S EXETER AVE,Margate City,NJ,39.32841485,-74.49602824,RES1,3001,,20,NE,1950,1950,3102,2,1,1834.06786,1834.06786,3505,NO,24.82,30.56,3,1.36,6106,113.587564,123.373489,133.079614,139.668128,I,Above,Hip,0,5701,,27.69148498,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23913,NJBF000057748,205 N JEROME AVE,Margate City,NJ,39.33109777,-74.5062357,RES1,3001,,17,NE,1955,1955,3102,2,1,1430.007632,1430.007632,3505,NO,21.34,32.73,3,0.01,6106,113.324598,123.16248,132.861116,139.424126,I,Above,Hip,0,5701,,27.03686127,0,0,,,,1,1,,0.03,nav,1,1955,2,, 23914,NJBF000059580,22 W COLMAR CIRCLE,Margate City,NJ,39.33449159,-74.50568588,RES1,3001,,17,NE,1953,1953,3101,1,1,1902.665222,1902.665222,3505,NO,13.82,27.46,3,-2.82,6110,113.288431,123.133859,132.833548,139.388164,I,Above,Hip,0,5701,,20.64024346,0,1.1,,,,1,1,,0.35,nav,1,1953,1,, 23915,NJBF000059626,24 W COLMAR CIRCLE,Margate City,NJ,39.3345735,-74.505813,RES1,3001,,17,NE,1972,1972,3101,2,1,754.0336663,754.0336663,3505,NO,25.19,37.49,3,3.73,6110,113.284484,123.130699,132.830304,139.384425,I,Above,Hip,0,5701,,31.34303863,0,0,,,,1,1,,0.35,nav,1,1972,2,, 23916,NJBF000057254,107 N JASPER AVE,Margate City,NJ,39.33023579,-74.50454648,RES1,3001,,43,NE,1920,1920,3102,2,2,1665.733917,1665.733917,3507,NO,35.19,45,1,2.74,6106,113.374163,123.202127,132.90181,139.470318,I,Above,Hip,0,5701,,40.09622444,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 23917,NJBF000054369,4 N DECATUR AVE,Margate City,NJ,39.32319347,-74.51378635,RES1,3001,,47,NE,1965,1965,3102,2,2,1746.77826,1746.77826,3505,NO,24.65,36.52,3,-1.14,6106,113.2749,123.119603,132.810403,139.373393,I,Above,Flat,0,5701,,30.58170316,0,0,,,,1,1,,0.03,nav,1,1965,2,, 23918,NJBF000056437,9007 FREMONT AVE,Margate City,NJ,39.32846658,-74.51555358,RES1,3001,,20,NE,2002,2002,3102,3,1,1363.314724,1363.314724,3505,NO,34.92,48.01,3,0.36,6106,113.15803,123.027994,132.719743,139.268992,I,Above,Gable,0,5701,,41.46601832,0,1.1,,,,1,1,,0.03,nav,1,2002,3,, 23919,NJBF000055254,8906 WINCHESTER AVE,Margate City,NJ,39.32558151,-74.51129616,RES1,3001,,NaN,NE,1969,0,3102,2,1,2225.765262,2225.765262,3505,NO,37.05,48.78,3,-0.24,6106,113.293803,123.136007,132.829403,139.393628,I,Above,Hip,0,5701,,42.91109156,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23920,NJBF000057466,509 N UNION AVE,Margate City,NJ,39.33061664,-74.51614071,RES1,3001,,18,NE,1990,1990,3102,2,1,1955.662752,1955.662752,3505,NO,35.26,48.42,3,-2.3,6106,113.113671,122.993117,132.685103,139.228061,I,Above,Gable,0,5701,,41.84349229,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 23921,NJBF000060886,314 N CLARENDON AVE,Margate City,NJ,39.33670059,-74.50013065,RES1,3001,,17,NE,1969,1969,3102,2,1,1379.999757,1379.999757,3505,NO,22.6,36.57,3,0.92,6106,113.380255,123.207473,132.911853,139.46899,I,Above,Hip,0,5701,,29.58576346,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23922,NJBF000062831,10 BAYSHORE CT,Margate City,NJ,39.34032262,-74.5068326,RES1,3001,,19,NE,1972,1972,3102,2,1,2777.611477,2777.611477,3505,NO,32.62,38.18,3,4.6,6106,113.181826,123.048088,132.747253,139.279821,I,Above,Gable,0,5701,,35.39747758,0,0,,,,1,1,,0.03,nav,1,1972,2,, 23923,NJBF000055574,1 N PEMBROKE AVE,Margate City,NJ,39.32646169,-74.50750631,RES1,3001,,17,NE,1936,1936,3102,2,1,1588.858296,1588.858296,3505,NO,35.83,42.86,3,-0.51,6106,113.363876,123.192765,132.889081,139.459502,I,Above,Hip,0,5701,,39.34344722,0,0.1,,,,1,1,,0.03,nav,1,1936,2,, 23924,NJBF000057108,8703 AMHERST AVE,Margate City,NJ,39.32994514,-74.51040597,RES1,3001,,18,NE,1988,1988,3102,3,1,2079.460799,2079.460799,3505,NO,50.11,58.47,3,5.7,6106,113.249482,123.10191,132.797322,139.354484,I,Above,Gable,0,5701,,54.28833712,0,1.1,,,,1,1,,0.03,nav,1,1988,3,, 23925,NJBF000060278,329 N GLADSTONE AVE,Margate City,NJ,39.33570316,-74.50428323,RES1,3001,,17,NE,1960,1960,3101,2,1,1742.86656,1742.86656,3505,NO,39.8,53.66,3,1.08,6106,113.302391,123.145071,132.845986,139.399406,I,Above,Gable,0,5701,,46.73089963,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 23926,NJBF000054558,4 N HARDING AVE,Margate City,NJ,39.32372607,-74.51266462,RES1,3001,,17,NE,1955,1955,3102,3,1,1599.842057,1599.842057,3505,NO,37.65,50.87,3,1.83,6106,113.291408,123.133195,132.824936,139.389421,I,Above,Hip,0,5701,,44.26227886,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 23927,NJBF000059993,1 SEASIDE COURT,Margate City,NJ,39.33521207,-74.50756292,RES1,3001,,18,NE,1990,1990,3101,1,1,1764.408177,1764.408177,3505,YES,10.83,23.64,3,-0.87,6110,113.236818,123.092528,132.790924,139.339655,I,Above,Hip,0,5701,,17.23169426,0,0,,,,1,1,,0.35,nav,1,1990,1,, 23928,NJBF000059384,115 N DELAVAN AVE,Margate City,NJ,39.33414565,-74.4986906,RES1,3001,,17,NE,1961,1961,3103,2,1,1246.398104,1246.398104,3505,NO,41.21,47.88,3,7.43,6112,113.447706,123.261686,132.966945,139.535374,I,Above,Hip,0,5701,,44.54550726,0,0,,,,1,1,,0.35,nav,1,1961,2,, 23929,NJBF000058568,7408 VENTNOR AVE,Margate City,NJ,39.33252882,-74.49349663,RES1,3001,,19,NE,1925,1925,3102,2,1,1432.613326,1432.613326,3505,NO,26.79,35.46,3,0.92,6106,113.584917,123.372008,133.081567,139.6638,I,Above,Gable,0,5701,,31.12270489,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23930,NJBF000058838,34 N DELAVAN AVE,Margate City,NJ,39.33303709,-74.49810907,RES1,3001,,17,NE,1950,1950,3102,1,1,1194.278544,1194.278544,3505,NO,23.59,36.94,3,8.93,6106,113.476126,123.284476,132.990027,139.563008,I,Above,Flat,0,5701,,30.26279471,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 23931,NJBF000054677,8 S SUMNER AVE,Margate City,NJ,39.32404619,-74.50860993,RES1,3001,,20,NE,1951,1951,3103,3,1,2368.055164,2368.055164,3505,NO,54.19,63.01,3,1.71,6106,113.375259,123.200929,132.8955,139.467687,I,Above,Gable,0,5701,,58.60161122,0,1.1,,,,1,1,,0.03,nav,1,1951,3,, 23932,NJBF000054375,11 S CEDAR GROVE AVE,Margate City,NJ,39.32322611,-74.51119653,RES1,3001,,23,NE,1969,2018,3102,2,1,1902.136949,1902.136949,3505,NO,35.14,45.95,3,0.95,6106,113.330907,123.164778,132.857238,139.42549,I,Above,Gable,0,5701,,40.54544888,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23933,NJBF000060932,9 E GILMAR CIRCLE,Margate City,NJ,39.3367745,-74.5062135,RES1,3001,,17,NE,1969,1969,3101,1,1,3056.236265,3056.236265,3505,NO,18.9,24.74,3,3,6106,113.244711,123.098832,132.798374,139.344655,I,Above,Gable,0,5701,,21.8151512,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23934,NJBF000062867,7904 LAGOON DRIVE,Margate City,NJ,39.34039043,-74.50741322,RES1,3001,,18,NE,1967,1967,3102,2,1,1353.294055,1353.294055,3505,NO,29.26,34.8,3,4.94,6106,113.16804,123.037061,132.73579,139.267095,I,Above,Hip,0,5701,,32.03152533,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 23935,NJBF000062815,7906 LAGOON DRIVE,Margate City,NJ,39.34028794,-74.50759493,RES1,3001,,18,NE,1967,1967,3102,2,1,1526.445025,1526.445025,3505,NO,33.48,44.17,3,5.03,6106,113.165405,123.034976,132.733574,139.264934,I,Above,Gable,0,5701,,38.82592493,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 23936,NJBF000054378,23 S UNION AVE,Margate City,NJ,39.3232305,-74.5091125,RES1,3001,,20,NE,1951,1951,3102,2,1,1711.69249,1711.69249,3505,NO,29.55,42.46,3,7.16,6106,113.376343,123.201414,132.895274,139.467652,I,Above,Gable,0,5701,,36.00621276,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 23937,NJBF000059327,114 N DELAVAN AVE,Margate City,NJ,39.33401668,-74.49905115,RES1,3001,,17,NE,1942,1942,3103,1,1,1767.161452,1767.161452,3505,NO,19.29,27.28,3,3.5,6112,113.441572,123.256752,132.961682,139.52992,I,Above,Hip,0,5701,,23.28283425,0,1.1,,,,1,1,,0.35,nav,1,1942,1,, 23938,NJBF000054321,109 S SUMNER AVE,Margate City,NJ,39.32306832,-74.50707017,RES1,3001,,23,NE,2005,2005,3103,3,1,1515.277534,1515.277534,3505,NO,46.29,55.84,3,1.43,6106,113.423396,123.239276,132.934492,139.511008,I,Above,Gable,0,5701,,51.06459343,0,0,,,,1,1,,0.03,nav,1,2005,3,, 23939,NJBF000058184,10 N DELAVAN AVE,Margate City,NJ,39.33185321,-74.49708882,RES1,3001,,17,NE,1951,1951,3102,1,1,2049.738582,2049.738582,3505,NO,18.67,27.39,3,5.52,6106,113.515309,123.315889,133.022063,139.600362,I,Above,Gable,0,5701,,23.03200514,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 23940,NJBF000059072,37 N CLERMONT AVE,Margate City,NJ,39.333493,-74.497334,RES1,3001,,17,NE,1953,1953,3102,2,1,883.0164866,883.0164866,3505,NO,34.21,44.57,3,-0.54,6106,113.486804,123.293093,132.999405,139.57226,I,Above,Gable,0,5701,,39.3903036,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 23941,NJBF000055296,12 S MANSFIELD AVE,Margate City,NJ,39.32570773,-74.50463198,RES1,3001,,NaN,NE,1930,0,3101,1,1,2610.880372,2610.880372,3505,NO,17.11,25.83,3,0.36,6106,113.437897,123.252087,132.950219,139.527567,I,Above,Hip,0,5701,,21.47113564,0,0,,,,1,1,,0.03,nav,1,1930,1,, 23942,NJBF000061083,413 N ESSEX AVE,Margate City,NJ,39.33702877,-74.50318072,RES1,3001,,17,NE,1951,1951,3102,2,1,1552.054789,1552.054789,3505,NO,40.1,49.83,3,4.71,6106,113.308247,123.149708,132.851616,139.402486,I,Above,Gable,0,5701,,44.96639066,0,0,,,,1,1,,0.03,nav,1,1951,2,, 23943,NJBF000058455,106 N FRONTENAC AVE,Margate City,NJ,39.3323505,-74.50102589,RES1,3001,,17,NE,1955,1955,3102,2,1,1909.981486,1909.981486,3505,NO,36.8,49.19,3,1.4,6106,113.421525,123.240521,132.943483,139.513262,I,Above,Hip,0,5701,,42.99714117,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 23944,NJBF000059079,,Margate City,NJ,39.33350683,-74.49884564,RES1,3001,,NaN,NE,1969,0,3103,5,1,1176.29074,1176.29074,3505,NO,67.7,79.22,3,-0.28,6106,113.453259,123.266122,132.971134,139.541363,I,Above,Gable,0,5701,,73.45866609,0,0,,,,1,1,,0.03,nav,1,1969,5,, 23945,NJBF000060688,405 N ESSEX AVE,Margate City,NJ,39.33639746,-74.50256974,RES1,3001,,17,NE,1952,1952,3102,1,1,2124.799886,2124.799886,3505,NO,18.46,26.42,3,3.11,6106,113.330558,123.16763,132.869972,139.424112,I,Above,Hip,0,5701,,22.4374071,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 23946,NJBF000060794,407 N ESSEX AVE,Margate City,NJ,39.33655287,-74.50271859,RES1,3001,,17,NE,1952,1952,3102,2,1,2276.831887,2276.831887,3505,NO,29.13,38.91,3,2.16,6106,113.32509,123.163238,132.865475,139.418814,I,Above,Gable,0,5701,,34.01911855,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 23947,NJBF000063482,615 N BARCLAY AVE,Margate City,NJ,39.34184212,-74.50300287,RES1,3001,,20,NE,1988,1988,3102,2,1,2042.086848,2042.086848,3505,NO,27.76,36.65,3,3.21,6106,113.246066,123.099067,132.801177,139.33395,I,Above,Gable,0,5701,,32.20656457,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 23948,NJBF000058465,408 N LANCASTER AVE,Margate City,NJ,39.33236492,-74.51002943,RES1,3001,,17,NE,1958,1958,3102,1,1,2109.930016,2109.930016,3505,NO,18.37,32.87,3,5.57,6106,113.222893,123.081097,132.777319,139.329217,I,Above,Hip,0,5701,,25.61756421,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 23949,NJBF000058670,26 N CLERMONT AVE,Margate City,NJ,39.33271325,-74.49706628,RES1,3001,,21,NE,2016,2016,3102,2,1,1556.163751,1556.163751,3505,NO,32.12,37.54,3,8.34,6106,113.503681,123.306616,133.013005,139.588782,I,Above,Gable,0,5701,,34.82840014,0,0,,,,1,1,,0.03,nav,1,2016,2,, 23950,NJBF000055880,8506 VENTNOR AVE,Margate City,NJ,39.32719537,-74.50441593,COM3,3001,,NaN,ME,1932,1932,3401,2,1,8836.056956,8836.056956,3507,NO,34.37,47.63,1,0.79,6106,113.420957,123.23896,132.937806,139.513011,I,Above,Flat,0,NaN,,41.00283961,0,0,,,,1,1,,0.03,nav,1,1932,2,, 23951,NJBF000053889,9100 ATLANTIC AVE,Margate City,NJ,39.32166593,-74.51037839,RES3B,3001,,21,ME,1973,2002,3301,1,1,3378.657619,3378.657619,3501,NO,13.96,28.38,7,-4.12,6106,113.372055,123.197133,132.889385,139.46139,I,Above,Flat,0,5701,,21.16628286,0,0,,,,1,1,,0.03,nav,1,1973,1,, 23952,NJBF000054138,9218 VENTNOR AVE,Margate City,NJ,39.32250388,-74.51313505,COM4,3001,,NaN,ME,1903,1990,3401,2,1,4941.601777,4941.601777,3507,YES,33.5,40.33,1,1.45,6106,113.299406,123.138985,132.829866,139.395244,I,Above,Hip,0,NaN,,36.91592244,0,0,,,,1,1,,0.03,nav,1,1903,2,, 23953,NJBF000058777,412 N KENYON AVE,Margate City,NJ,39.3329215,-74.509497,RES1,3001,,17,NE,1970,1970,3102,2,1,1254.694141,1254.694141,3505,NO,38.67,45.43,3,0.04,6106,113.22666,123.084201,132.780891,139.332396,I,Above,Gable,0,5701,,42.04933509,0,0,,,,1,1,,0.03,nav,1,1970,2,, 23954,NJBF000063619,7603 BAYSHORE DR,Margate City,NJ,39.34221592,-74.50467667,RES1,3001,,20,NE,1987,1987,3102,2,1,2176.888489,2176.888489,3505,NO,29.48,35.8,3,3.43,6106,113.203832,123.065193,132.765931,139.294704,I,Above,Hip,0,5701,,32.63856852,0,0,,,,1,1,,0.03,nav,1,1987,2,, 23955,NJBF000058867,214 N GRANVILLE AVE,Margate City,NJ,39.3330845,-74.50372204,RES1,3001,,16,NE,1950,1950,3101,1,1,1459.121906,1459.121906,3505,NO,18.56,30.82,3,0.2,6106,113.351684,123.184502,132.885461,139.448054,I,Above,Hip,0,5701,,24.68970541,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23956,NJBF000062614,8104 BAYSHORE DR,Margate City,NJ,39.33981249,-74.51075861,RES1,3001,,20,NE,1970,1970,3102,2,1,4435.628665,4435.628665,3505,NO,27.97,37.16,3,5.5,6106,113.101799,122.984276,132.680626,139.207829,I,Above,Flat,0,5701,,32.56421038,0,0,,,,1,1,,0.03,nav,1,1970,2,, 23957,NJBF000055399,8606 VENTNOR AVE,Margate City,NJ,39.32595956,-74.50605902,RES1,3001,,20,NE,1939,1939,3102,2,1,3752.105176,3752.105176,3505,NO,39.99,45.41,3,6.81,6106,113.402939,123.224026,132.921197,139.495367,I,Above,Hip,0,5701,,42.70399448,0,1.2,,,,1,1,,0.03,nav,1,1939,2,, 23958,NJBF000061186,8108 MARSHALL AVE,Margate City,NJ,39.33721288,-74.50757848,RES1,3001,,17,NE,1972,1972,3101,2,1,1924.381517,1924.381517,3505,NO,28.21,38.72,3,2.51,6106,113.208401,123.069748,132.76831,139.310545,I,Above,Gable,0,5701,,33.46761451,0,0,,,,1,1,,0.03,nav,1,1972,2,, 23959,NJBF000062421,507 N CLERMONT AVE,Margate City,NJ,39.33941997,-74.50298782,RES1,3001,,18,NE,1969,1969,3102,2,1,1654.960462,1654.960462,3505,NO,39.91,47.03,3,5.9,6106,113.279469,123.126359,132.828531,139.37091,I,Above,Gable,0,5701,,43.46870313,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23960,NJBF000058748,7400 VENTNOR AVE,Margate City,NJ,39.33286294,-74.49279176,RES1,3001,,17,NE,1957,1957,3102,2,1,1630.491258,1630.491258,3505,NO,33.43,48.1,3,4.89,6106,113.595765,123.380775,133.091065,139.673267,I,Above,Hip,0,5701,,40.76645831,0,0,,,,1,1,,0.03,nav,1,1957,2,, 23961,NJBF000058124,404 N MANSFIELD AVE,Margate City,NJ,39.33175143,-74.51034545,RES1,3001,,17,NE,1950,1950,3102,1,1,1475.594465,1475.594465,3505,NO,24.35,30.65,3,4.98,6106,113.224749,123.082476,132.778359,139.331203,I,Above,Hip,0,5701,,27.49872272,0,0,,,,1,1,,0.03,nav,1,1950,1,, 23962,NJBF000055283,111 N WILSON AVE,Margate City,NJ,39.32565878,-74.51324192,RES1,3001,,47,NE,1948,1948,3102,2,2,951.7280245,951.7280245,3505,NO,33.36,46.12,3,0.54,6106,113.250088,123.100851,132.793033,139.353005,I,Above,Flat,0,5701,,39.73863325,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23963,NJBF000058487,209 N HUNTINGTON AVE,Margate City,NJ,39.332405,-74.5042195,RES1,3001,,20,NE,2015,2015,3102,3,1,1498.434313,1498.434313,3505,NO,51.51,58.9,3,4.94,6106,113.350343,123.183353,132.883794,139.447349,I,Above,Hip,0,5701,,55.20515612,0,0,,,,1,1,,0.03,nav,1,2015,3,, 23964,NJBF000058567,208 N HAVERFORD AVE,Margate City,NJ,39.3325281,-74.50400485,RES1,3001,,45,NE,1912,1912,3102,2,2,1767.153522,1767.153522,3505,NO,24.76,32.95,3,-1.33,6106,113.353334,123.185768,132.886401,139.450031,I,Above,Hip,0,5701,,28.85640905,0,1.1,,,,1,1,,0.03,nav,1,1912,2,, 23965,NJBF000054000,9609 WINCHESTER AVE,Margate City,NJ,39.3220575,-74.5181695,RES3A,3001,,19,NE,2002,2002,3301,1,1,1782.10686,1782.10686,3501,NO,18.22,32.75,7,-0.98,6106,113.196511,123.055687,132.743385,139.298806,I,Above,Gable,0,5701,,25.48426787,0,0,,,,1,1,,0.03,nav,1,2002,1,, 23966,NJBF000058509,411 N MANSFIELD AVE,Margate City,NJ,39.33243823,-74.5104427,RES1,3001,,20,NE,1960,2015,3102,2,1,1697.048843,1697.048843,3505,NO,19.17,25.61,3,-2.96,6106,113.212724,123.072957,132.768912,139.319742,I,Above,Flat,0,5701,,22.39259164,0,0,,,,1,1,,0.03,nav,1,1960,2,, 23967,NJBF000058603,412 N LANCASTER AVE,Margate City,NJ,39.33259918,-74.51027696,RES1,3001,,17,NE,1960,1960,3101,1,1,1858.980805,1858.980805,3505,NO,11.47,23.76,3,-0.31,6106,113.214075,123.074065,132.770163,139.320911,I,Above,Gable,0,5701,,17.61543429,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 23968,NJBF000057073,8606 AMHERST AVE,Margate City,NJ,39.32986284,-74.50970503,RES1,3001,,17,NE,1955,1955,3102,2,1,567.5260307,567.5260307,3505,NO,21.66,28.08,3,-1.16,6106,113.26608,123.115215,132.81108,139.369917,I,Above,Gable,0,5701,,24.87095774,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 23969,NJBF000055439,119 N WILSON AVE,Margate City,NJ,39.32610323,-74.51367331,RES1,3001,,47,NE,1948,1948,3102,2,2,1023.688763,1023.688763,3505,NO,29.88,39.14,3,1.65,6106,113.234087,123.088173,132.780257,139.338477,I,Above,Gable,0,5701,,34.51016185,0,0,,,,1,1,,0.03,nav,1,1948,2,, 23970,NJBF000060524,311 N DOUGLAS AVE,Margate City,NJ,39.33613613,-74.50145841,RES1,3001,,17,NE,1963,1963,3102,2,1,2561.91207,2561.91207,3505,NO,43.51,51.5,3,6.46,6106,113.358778,123.190273,132.893492,139.450453,I,Above,Gable,0,5701,,47.50239473,0,1.2,,,,1,1,,0.03,nav,1,1963,2,, 23971,NJBF000056624,114 N MANSFIELD AVE,Margate City,NJ,39.32889775,-74.50759975,RES1,3001,,20,NE,2005,2005,3102,3,1,1309.584722,1309.584722,3505,NO,56.54,66.16,3,2.1,6110,113.326324,123.163353,132.860412,139.425802,I,Above,Gable,0,5701,,61.35187031,0,0,,,,1,1,,0.35,nav,1,2005,3,, 23972,NJBF000054416,9510 MONMOUTH AVE,Margate City,NJ,39.32333483,-74.51815524,RES1,3001,,20,NE,1989,1989,3102,2,1,1934.752574,1934.752574,3507,NO,35.98,46.95,1,1.46,6106,113.177537,123.041174,132.72949,139.282845,I,Above,Gable,0,5701,,41.46530247,0,0,,,,1,1,,0.03,nav,1,1989,2,, 23973,NJBF000061913,5 ESSEX CT,Margate City,NJ,39.33846317,-74.50504125,RES1,3001,,18,NE,1971,1971,3102,2,1,1634.897562,1634.897562,3505,NO,36.13,44.43,3,5.33,6106,113.247186,123.100664,132.801192,139.343707,I,Above,Hip,0,5701,,40.27838143,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 23974,NJBF000057032,103 N JEROME AVE,Margate City,NJ,39.32977,-74.504936,RES1,3001,,17,NE,1955,1955,3101,1,1,1587.924756,1587.924756,3507,NO,19.02,31.41,1,1.77,6106,113.372284,123.200515,132.899777,139.468604,I,Above,Hip,0,5701,,25.21614079,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 23975,NJBF000058486,16 N CLERMONT AVE,Margate City,NJ,39.33240361,-74.49679534,RES1,3001,,45,NE,1929,1929,3102,2,2,1234.277889,1234.277889,3505,NO,25.69,32.68,3,1.03,6106,113.514008,123.314899,133.021457,139.598642,I,Above,Hip,0,5701,,29.18146655,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 23976,NJBF000057764,108 N HUNTINGTON AVE,Margate City,NJ,39.33112884,-74.50346994,RES1,3001,,17,NE,1945,1945,3101,1,1,1269.211547,1269.211547,3507,NO,16.41,25.25,1,0.66,6106,113.385055,123.211047,132.911784,139.4802,I,Above,Gable,0,5701,,20.82695828,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 23977,NJBF000056559,12 S GRANVILLE AVE,Margate City,NJ,39.32875053,-74.49968333,RES1,3001,,20,NE,1957,1957,3102,2,1,1563.880328,1563.880328,3505,NO,32.22,41.38,3,6.49,6106,113.502426,123.304975,133.008089,139.589285,I,Above,Gable,0,5701,,36.80157958,0,0,,,,1,1,,0.03,nav,1,1957,2,, 23978,NJBF000056801,7 N HANOVER AVE,Margate City,NJ,39.32928708,-74.50202661,RES1,3001,,17,NE,1930,1930,3102,2,1,1172.506816,1172.506816,3505,NO,35.39,45,3,3.62,6106,113.443199,123.25743,132.958806,139.534416,I,Above,Gable,0,5701,,40.1957581,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 23979,NJBF000057136,6 N GRANVILLE AVE,Margate City,NJ,39.32999857,-74.50077889,RES1,3001,,21,NE,1940,2018,3102,2,1,1615.31189,1615.31189,3505,NO,29.02,36.41,3,5.95,6106,113.460438,123.271451,132.974035,139.5504,I,Above,Hip,0,5701,,32.71082127,0,0,,,,1,1,,0.03,nav,1,1940,2,, 23980,NJBF000055333,108 S KNIGHT AVE,Margate City,NJ,39.32579378,-74.50243007,RES1,3001,,22,NE,2015,2015,3102,2,1,1955.233217,1955.233217,3505,NO,33.78,46.52,3,2.13,6106,113.484906,123.289991,132.989848,139.57121,I,Above,Flat,0,5701,,40.14615572,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 23981,NJBF000056430,104 S FRANKLIN AVE,Margate City,NJ,39.32845757,-74.4972874,RES1,3001,,19,NE,1925,1925,3102,3,1,1947.84579,1947.84579,3505,NO,34.32,46.29,3,2.73,6106,113.559284,123.350706,133.05575,139.64193,I,Above,Hip,0,5701,,40.30445573,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 23982,NJBF000055655,113 N THURLOW AVE,Margate City,NJ,39.32667033,-74.51143326,RES1,3001,,17,NE,1973,1973,3101,1,1,2019.286694,2019.286694,3505,NO,9.95,15.22,3,-1.09,6106,113.274768,123.121143,132.814857,139.376789,I,Above,Gable,0,5701,,12.5863806,0,0,,,,1,1,,0.03,nav,1,1973,1,, 23983,NJBF000058657,103 N EXETER AVE,Margate City,NJ,39.3326925,-74.4996935,RES1,3001,,17,NE,1950,1950,3103,2,1,1721.771303,1721.771303,3505,NO,30.98,38.63,3,-2.24,6106,113.446033,123.260253,132.964388,139.535609,I,Above,Hip,0,5701,,34.80497595,0,0,,,,1,1,,0.03,nav,1,1950,2,, 23984,NJBF000054698,11 S SUMNER AVE,Margate City,NJ,39.32408197,-74.50803699,RES1,3001,,19,NE,1926,1926,3102,2,1,1486.466747,1486.466747,3505,NO,36.55,50.37,3,1.25,6106,113.387256,123.210614,132.9056,139.478857,I,Above,Gable,0,5701,,43.46036391,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 23985,NJBF000055498,8806 WINCHESTER AVE,Margate City,NJ,39.32625471,-74.51011767,RES1,3001,,19,NE,1945,1945,3102,2,1,1338.581465,1338.581465,3505,NO,32.99,42.68,3,2.92,6106,113.309677,123.149066,132.843499,139.408963,I,Above,Gable,0,5701,,37.83865279,0,0,,,,1,1,,0.03,nav,1,1945,2,, 23986,NJBF000057524,510 N THURLOW AVE,Margate City,NJ,39.33072333,-74.51587651,RES1,3001,,20,NE,2005,2005,3102,3,1,2996.128172,2996.128172,3505,NO,53.11,58.66,3,3.63,6106,113.117928,122.996562,132.688728,139.232025,I,Above,Flat,0,5701,,55.88277778,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, 23987,NJBF000056497,110 S ESSEX AVE,Margate City,NJ,39.3286058,-74.49593354,RES1,3001,,20,NE,1979,1979,3102,2,1,2005.12049,2005.12049,3505,NO,28.14,41.28,3,-0.87,6106,113.586896,123.372995,133.079266,139.667571,I,Above,Flat,0,5701,,34.70755791,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 23988,NJBF000054221,9202 VENTNOR AVE,Margate City,NJ,39.32279167,-74.51282035,COM3,3003,,NaN,ME,1925,1950,3401,1,1,7071.717576,7071.717576,3507,NO,14.27,23.04,1,2.29,6106,113.301966,123.14121,132.832426,139.398024,I,Above,Flat,0,NaN,,18.65745495,0,0,,,,1,1,,0.03,nav,1,1925,1,, 23989,NJBF000061535,7507 FREMONT AVE,Margate City,NJ,39.33780662,-74.49931687,RES1,3001,,17,NE,1954,1954,3103,1,1,2541.263774,2541.263774,3505,NO,15.75,25.1,3,-2.97,6106,113.382954,123.209537,132.914701,139.468931,I,Above,Hip,0,5701,,20.42346787,0,0,,,,1,1,,0.03,nav,1,1954,1,, 23990,NJBF000060912,60 BAYSIDE COURT,Margate City,NJ,39.33673708,-74.51044464,RES1,3001,,19,NE,1988,1988,3102,2,1,2135.80696,2135.80696,3505,NO,37.61,51.36,3,-1.25,6106,113.151642,123.024369,132.720874,139.259036,I,Above,Flat,0,5701,,44.48532695,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 23991,NJBF000057723,107 S ANDOVER AVE,Margate City,NJ,39.3310493,-74.49161012,RES1,3001,,19,NE,1925,1925,3102,3,1,1432.735687,1432.735687,3505,NO,49.55,58.14,3,4.87,6106,113.647288,123.422133,133.133086,139.722925,I,Above,Flat,0,5701,,53.84684762,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 23992,NJBF000060360,13 SEASIDE COURT,Margate City,NJ,39.33583803,-74.50825494,RES1,3001,,19,NE,1999,1999,3101,2,1,1864.923924,1864.923924,3505,NO,32.35,44.78,3,7.23,6106,113.212707,123.073232,132.771197,139.3166,I,Above,Flat,0,5701,,38.56355011,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 23993,NJBF000058739,208 N GRANVILLE AVE,Margate City,NJ,39.33284648,-74.50347585,RES1,3001,,17,NE,1925,1925,3102,2,2,1418.543528,1418.543528,3505,NO,36.71,44.56,3,1.43,6106,113.360482,123.191542,132.892648,139.456397,I,Above,Hip,0,5701,,40.63398803,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 23994,NJBF000056759,3 S GRANVILLE AVE,Margate City,NJ,39.32919847,-74.49962566,COM1,3001,,NaN,ME,1969,0,3401,2,1,2996.552112,2996.552112,3507,NO,40.72,49.23,1,2.77,6106,113.497266,123.300923,133.004222,139.584573,I,Above,Gable,0,NaN,,44.97392671,0,0,,,,1,1,,0.03,nav,1,1969,2,, 23995,NJBF000056710,7 S GRANVILLE-8 S GLADSTN,Margate City,NJ,39.32910522,-74.49947498,COM1,3001,,NaN,ME,1969,0,3401,1,1,1515.850559,1515.850559,3507,NO,19.5,34.18,1,0.2,6106,113.501919,123.304648,133.008045,139.588878,I,Above,Flat,0,NaN,,26.84340126,0,0,,,,1,1,,0.03,nav,1,1969,1,, 23996,NJBF000058694,35 N DOUGLAS AVE,Margate City,NJ,39.33277018,-74.49810439,RES1,3001,,17,NE,1930,1930,3102,2,1,1420.919733,1420.919733,3505,NO,37.2,49.83,3,5.95,6106,113.479998,123.287569,132.993069,139.566879,I,Above,Hip,0,5701,,43.51707997,0,0,,,,1,1,,0.03,nav,1,1930,2,, 23997,NJBF000053981,9401 VENTNOR AVE,Margate City,NJ,39.32199105,-74.51509415,COM3,3003,,NaN,ME,1988,1988,3401,1,1,2613.642902,2613.642902,3507,NO,15.73,28.88,1,1.34,6106,113.264422,123.11046,132.799892,139.361975,I,Above,Flat,0,NaN,,22.30809042,0,0,,,,1,1,,0.03,nav,1,1988,1,, 23998,NJBF000059916,111 N BARCLAY AVE,Margate City,NJ,39.33507397,-74.49659787,RES1,3001,,17,NE,1949,1949,3102,2,1,1460.736061,1460.736061,3505,NO,34.29,40.28,3,6.91,6106,113.480933,123.288405,132.995639,139.564237,I,Above,Gable,0,5701,,37.28431854,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 23999,NJBF000060890,12 E GILMAR CIRCLE,Margate City,NJ,39.33670564,-74.50678874,RES1,3001,,17,NE,1967,1967,3101,1,1,1644.624559,1644.624559,3505,NO,14.64,26.76,3,-0.27,6106,113.232943,123.089414,132.788522,139.333949,I,Above,Hip,0,5701,,20.70179057,0,0,,,,1,1,,0.03,nav,1,1967,1,, 24000,NJBF000060540,22 W GILMAR CIRCLE,Margate City,NJ,39.33615808,-74.50714107,RES1,3001,,17,NE,1965,1965,3101,1,1,1465.236154,1465.236154,3505,NO,20.95,30.96,3,4.2,6110,113.232837,123.089345,132.788148,139.334701,I,Above,Gable,0,5701,,25.95479651,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 24001,NJBF000060019,606 N JEROME AVE,Margate City,NJ,39.3352493,-74.51091157,COM8,3001,,NaN,ME,1969,0,3401,1,1,3827.277778,3827.277778,3507,NO,20.68,26.44,1,1.19,6106,113.162313,123.032883,132.728943,139.270777,I,Above,Gable,0,5701,,23.56185779,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24002,NJBF000062942,624 BAYSHORE CT,Margate City,NJ,39.34055461,-74.50707051,RES1,3001,,18,NE,1966,1966,3102,2,1,1816.493048,1816.493048,3505,NO,19.67,28.24,3,-2.57,6106,113.173361,123.041276,132.740256,139.271545,I,Above,Gable,0,5701,,23.95168233,0,0,,,,1,1,,0.03,nav,1,1966,2,, 24003,NJBF000055544,8300 SALEM RD,Margate City,NJ,39.3263723,-74.50093756,RES1,3001,,22,NE,1958,2018,3102,2,1,2422.417654,2422.417654,3505,NO,36.84,43.84,3,5.92,6106,113.509216,123.309776,133.011042,139.594255,I,Above,Hip,0,5701,,40.3404124,0,0,,,,1,1,,0.03,nav,1,1958,2,, 24004,NJBF000063192,617 N CLERMONT AVE,Margate City,NJ,39.34110211,-74.50458871,RES1,3001,,18,NE,1962,1962,3102,2,1,2026.904513,2026.904513,3505,NO,41.99,49.78,3,8.97,6106,113.220941,123.079174,132.780044,139.313367,I,Above,Hip,0,5701,,45.88556602,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 24005,NJBF000056205,8308 VENTNOR AVE,Margate City,NJ,39.3279645,-74.502816,RES1,3001,,20,NE,2006,2006,3102,3,1,1709.309958,1709.309958,3505,NO,36.65,51.42,3,3.35,6106,113.444918,123.258477,132.958816,139.535659,I,Above,Gable,0,5701,,44.03516135,0,0,,,,1,1,,0.03,nav,1,2006,3,, 24006,NJBF000061436,608 N HUNTINGTON AVE,Margate City,NJ,39.33762419,-74.50958089,RES1,3001,,17,NE,1976,1976,3102,2,1,1918.705294,1918.705294,3505,NO,44.23,51.42,3,7.98,6106,113.158329,123.029677,132.726828,139.263816,I,Above,Gable,0,5701,,47.82407939,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 24007,NJBF000060888,408 N DOUGLAS AVE,Margate City,NJ,39.33670445,-74.50257273,RES1,3001,,18,NE,1963,1963,3102,2,1,2097.28723,2097.28723,3505,NO,32.69,45.84,3,5.2,6106,113.326216,123.164132,132.8665,139.419563,I,Above,Gable,0,5701,,39.26592751,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 24008,NJBF000056495,215 N RUMSON AVE,Margate City,NJ,39.32859907,-74.51145376,RES1,3001,,19,NE,2012,2012,3102,2,1,1409.912323,1409.912323,3505,NO,39.67,51.54,3,3.26,6106,113.24604,123.098747,132.793085,139.351039,I,Above,Hip,0,5701,,45.60536814,0,0,,,,1,1,,0.03,nav,1,2012,2,, 24009,NJBF000060251,205 N CLARENDON AVE,Margate City,NJ,39.3356525,-74.49865,RES1,3001,,17,NE,1948,1948,3103,2,1,1163.080633,1163.080633,3505,NO,34.03,46.21,3,4.88,6106,113.427554,123.245497,132.951018,139.51432,I,Above,Flat,0,5701,,40.12002769,0,0,,,,1,1,,0.03,nav,1,1948,2,, 24010,NJBF000058932,302 N HUNTINGTON AVE,Margate City,NJ,39.3332025,-74.50537,RES1,3001,,18,NE,2011,2011,3101,2,1,1373.563829,1373.563829,3505,NO,35.75,46.63,3,6.37,6106,113.313664,123.154003,132.853722,139.412782,I,Above,Gable,0,5701,,41.19077793,0,0,,,,1,1,,0.03,nav,1,2011,2,, 24011,NJBF000058230,208 N HANOVER AVE,Margate City,NJ,39.33193584,-74.50502971,RES1,3001,,17,NE,1949,1949,3102,2,1,1032.262953,1032.262953,3505,NO,43.58,53.67,3,7.32,6106,113.339173,123.174322,132.874047,139.43729,I,Above,Gable,0,5701,,48.62404636,0,0,,,,1,1,,0.03,nav,1,1949,2,, 24012,NJBF000058547,8211 AMHERST AVE,Margate City,NJ,39.33249774,-74.50586607,RES1,3001,,17,NE,1940,1940,3101,1,1,1393.212409,1393.212409,3505,NO,15.69,30.2,3,-1.9,6106,113.312738,123.153181,132.852395,139.412455,I,Above,Hip,0,5701,,22.94637664,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 24013,NJBF000056225,8605 WINCHESTER AVE,Margate City,NJ,39.32799608,-74.50769816,RES1,3001,,17,NE,1938,1938,3102,2,1,1683.551492,1683.551492,3505,NO,19.38,29.84,3,-2.92,6106,113.337275,123.171888,132.868597,139.435686,I,Above,Hip,0,5701,,24.61199816,0,0,,,,1,1,,0.03,nav,1,1938,2,, 24014,NJBF000055681,129 N UNION AVE,Margate City,NJ,39.32672198,-74.51225213,RES1,3001,,17,NE,1933,1933,3102,2,1,677.6220306,677.6220306,3505,NO,34.68,48.77,3,4.78,6106,113.256062,123.106116,132.79932,139.35941,I,Above,Hip,0,5701,,41.72439796,0,1.2,,,,1,1,,0.03,nav,1,1933,2,, 24015,NJBF000055668,129 N UNION AVE,Margate City,NJ,39.32669415,-74.51242683,RES1,3001,,17,NE,1933,1933,3102,2,1,1141.590268,1141.590268,3505,NO,40.44,47.54,3,1.61,6106,113.252641,123.103353,132.796435,139.356205,I,Above,Gable,0,5701,,43.98541536,0,1.2,,,,1,1,,0.03,nav,1,1933,2,, 24016,NJBF000056390,105 N NASSAU AVE,Margate City,NJ,39.3283735,-74.507526,RES1,3001,,17,NE,1940,1940,3102,2,1,865.2676774,865.2676774,3505,NO,19.71,33.13,3,-1.41,6106,113.335569,123.170633,132.867584,139.434246,I,Above,Gable,0,5701,,26.42175929,0,0,,,,1,1,,0.03,nav,1,1940,2,, 24017,NJBF000055265,112 N WILSON AVE,Margate City,NJ,39.32560067,-74.51365003,RES1,3001,,47,NE,1948,1948,3102,2,2,860.9708892,860.9708892,3505,NO,33.19,46.4,3,7.55,6106,113.242023,123.094333,132.786239,139.345441,I,Above,Gable,0,5701,,39.79957633,0,0,,,,1,1,,0.03,nav,1,1948,2,, 24018,NJBF000053923,13 S WASHINGTON AVE,Margate City,NJ,39.32178844,-74.51304341,RES1,3001,,45,NE,1930,1930,3102,2,3,1558.476896,1558.476896,3505,NO,37.95,47.44,3,6.84,6106,113.312145,123.148853,132.839441,139.406024,I,Above,Flat,0,5701,,42.69723334,0,0,,,,1,1,,0.03,nav,1,1930,2,, 24019,NJBF000053933,11 S WASHINGTON AVE,Margate City,NJ,39.32183986,-74.51311734,RES1,3001,,45,NE,1948,1948,3102,2,2,1212.919379,1212.919379,3507,NO,25.48,40.4,1,0.66,6106,113.309752,123.146953,132.83752,139.403882,I,Above,Flat,0,5701,,32.94012953,0,0,,,,1,1,,0.03,nav,1,1948,2,, 24020,NJBF000054487,9010 VENTNOR AVE,Margate City,NJ,39.32351331,-74.51149956,RES1,3001,,19,NE,1945,1945,3102,2,1,2273.132747,2273.132747,3505,NO,44.48,57.4,3,7.6,6106,113.320018,123.156147,132.84854,139.415748,I,Above,Gable,0,5701,,50.93770501,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 24021,NJBF000058836,27 N CLERMONT AVE,Margate City,NJ,39.33303552,-74.49691895,RES1,3001,,17,NE,1953,1953,3102,2,1,1017.254029,1017.254029,3505,NO,32.16,39.06,3,5.18,6106,113.502376,123.305591,133.012176,139.587194,I,Above,Flat,0,5701,,35.61217872,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 24022,NJBF000053266,14 S COOLIDGE AVE,Margate City,NJ,39.31932137,-74.51782506,RES1,3001,,21,NE,2005,2005,3102,3,1,1371.880091,1371.880091,3507,NO,30.97,36.95,1,-0.95,6106,113.24552,123.093413,132.779833,139.339962,I,Above,Gable,0,5701,,33.96185141,0,0,,,,1,1,,0.03,nav,1,2005,3,, 24023,NJBF000054588,2 S UNION AVE,Margate City,NJ,39.32380107,-74.51020007,RES1,3001,,19,NE,1915,1915,3102,2,1,2216.04707,2216.04707,3505,NO,35.76,43.56,3,5.89,6106,113.344135,123.175729,132.869109,139.438505,I,Above,Hip,0,5701,,39.65937861,0,1.2,,,,1,1,,0.03,nav,1,1915,2,, 24024,NJBF000053940,9105 ATLANTIC AVE,Margate City,NJ,39.32186997,-74.51119816,RES3E,3001,,20,ME,1952,1952,3301,1,1,5195.773275,5195.773275,3507,NO,10.24,18.76,1,-0.72,6106,113.351126,123.180357,132.872169,139.442315,I,Above,Flat,0,5701,,14.49827845,0,0,,,,1,1,,0.03,nav,1,1952,1,, 24025,NJBF000057021,5 S FRONTENAC AVE,Margate City,NJ,39.32975018,-74.49851367,RES1,3001,,18,NE,1948,1948,3102,1,1,1560.303941,1560.303941,3505,NO,14.58,27.5,3,-2.92,6106,113.513823,123.314367,133.018762,139.599932,I,Above,Flat,0,5701,,21.03976179,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 24026,NJBF000056947,104 S DELAVAN AVE,Margate City,NJ,39.32960446,-74.49526143,RES1,3001,,19,NE,1925,1925,3102,2,1,1706.038704,1706.038704,3505,NO,28.95,36.14,3,4.74,6106,113.587447,123.373648,133.080829,139.66819,I,Above,Gable,0,5701,,32.54500578,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24027,NJBF000055448,3 S NASSAU AVE,Margate City,NJ,39.32612554,-74.50536762,RES1,3001,,18,NE,1925,1925,3102,2,1,1550.444164,1550.444164,3505,NO,26.92,40.8,3,0.95,6106,113.415656,123.234328,132.932071,139.507311,I,Above,Hip,0,5701,,33.86028459,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24028,NJBF000055578,16 S KENYON AVE,Margate City,NJ,39.32648028,-74.50372894,RES1,3001,,21,NE,2014,2014,3102,3,1,1770.653624,1770.653624,3505,NO,45.17,56.8,3,4.51,6106,113.44643,123.259234,132.958345,139.536148,I,Above,Hip,0,5701,,50.98563065,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 24029,NJBF000056825,1 S GRANVILLE AVE,Margate City,NJ,39.329343,-74.499663,COM1,3001,,NaN,ME,1969,0,3401,1,1,1426.588386,1426.588386,3507,NO,18.4,32.17,1,-0.34,6106,113.494375,123.298627,133.001939,139.581902,I,Above,Flat,0,NaN,,25.28972791,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24030,NJBF000056768,207 N PEMBROKE AVE,Margate City,NJ,39.32921464,-74.5101416,RES1,3001,,17,NE,1957,1957,3102,2,1,1493.411503,1493.411503,3505,NO,25.71,40.28,3,4.03,6106,113.265878,123.114875,132.810264,139.369656,I,Above,Flat,0,5701,,32.99761211,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 24031,NJBF000058490,8407 FREMONT AVE,Margate City,NJ,39.33240893,-74.50855522,RES1,3001,,17,NE,1962,1962,3102,2,1,1387.131738,1387.131738,3505,NO,38.09,47.9,3,5.51,6106,113.254743,123.106644,132.803894,139.358746,I,Above,Gable,0,5701,,42.99477054,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 24032,NJBF000056530,8809 AMHERST AVE,Margate City,NJ,39.32868463,-74.51255509,RES1,3001,,19,NE,2000,2000,3102,3,1,2274.410165,2274.410165,3505,NO,40.12,54.57,3,5.61,6106,113.22062,123.078352,132.772006,139.327397,I,Above,Gable,0,5701,,47.34429782,0,0,,,,1,1,,0.03,nav,1,2000,3,, 24033,NJBF000060487,402 N ESSEX AVE,Margate City,NJ,39.33605722,-74.50278912,RES1,3001,,17,NE,1952,1952,3102,2,1,1625.6251,1625.6251,3505,NO,29.46,39.01,3,3.55,6106,113.33046,123.167565,132.869697,139.424623,I,Above,Hip,0,5701,,34.23353724,0,0,,,,1,1,,0.03,nav,1,1952,2,, 24034,NJBF000060498,401 N ESSEX AVE,Margate City,NJ,39.33608683,-74.50227791,RES1,3001,,17,NE,1952,1952,3102,1,1,2162.916564,2162.916564,3505,NO,16.26,30.99,3,1.8,6106,113.341336,123.176285,132.878831,139.434551,I,Above,Hip,0,5701,,23.62344345,0,0,,,,1,1,,0.03,nav,1,1952,1,, 24035,NJBF000056696,8607 MONMOUTH AVE,Margate City,NJ,39.32906016,-74.50907791,RES1,3001,,17,NE,1948,1948,3102,2,1,1321.31747,1321.31747,3505,NO,28.48,35.53,3,4.4,6106,113.291504,123.135417,132.831487,139.393462,I,Above,Gable,0,5701,,32.00459129,0,0,,,,1,1,,0.03,nav,1,1948,2,, 24036,NJBF000057862,309 N MANSFIELD AVE,Margate City,NJ,39.33128025,-74.50937171,RES1,3001,,NaN,NE,1952,1952,3101,1,1,1063.635842,1063.635842,3505,NO,15.25,29.13,3,-1.58,6106,113.252946,123.105003,132.801446,139.357544,I,Above,Hip,0,5701,,22.19149472,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 24037,NJBF000056795,10 N HANOVER AVE,Margate City,NJ,39.32927758,-74.50251081,RES1,3001,,17,NE,1971,1971,3101,1,1,1721.806128,1721.806128,3505,NO,19.68,27.19,3,3.75,6106,113.432687,123.248972,132.949961,139.524659,I,Above,Hip,0,5701,,23.43130788,0,0,,,,1,1,,0.03,nav,1,1971,1,, 24038,NJBF000058315,110 N GLADSTONE AVE,Margate City,NJ,39.33207885,-74.50187238,RES1,3001,,17,NE,1952,1952,3102,2,1,1770.667922,1770.667922,3505,NO,43.44,52.8,3,4.99,6106,113.406724,123.228596,132.930815,139.499771,I,Above,Hip,0,5701,,48.11872148,0,0,,,,1,1,,0.03,nav,1,1952,2,, 24039,NJBF000059827,104 N BELMONT AVE,Margate City,NJ,39.3349131,-74.49618753,RES1,3001,,17,NE,1949,1949,3102,1,1,1125.95548,1125.95548,3505,NO,13.61,26.26,3,0.27,6106,113.492227,123.297488,133.005062,139.574869,I,Above,Gable,0,5701,,19.931291,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 24040,NJBF000055825,8704 WINCHESTER AVE,Margate City,NJ,39.32706478,-74.50869024,RES1,3001,,17,NE,1962,1962,3102,2,1,1760.635322,1760.635322,3505,NO,25.43,36.24,3,3.5,6106,113.329095,123.164996,132.860696,139.42759,I,Above,Hip,0,5701,,30.83474792,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 24041,NJBF000056337,15 N LANCASTER AVE,Margate City,NJ,39.32824564,-74.50550972,RES1,3001,,17,NE,1948,1948,3101,1,1,1585.315449,1585.315449,3505,NO,10.47,19.5,3,-1.01,6106,113.381685,123.207679,132.906057,139.477055,I,Above,Hip,0,5701,,14.98708846,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 24042,NJBF000056176,16 N MANSFIELD AVE,Margate City,NJ,39.32789766,-74.50665197,RES1,3001,,17,NE,1930,1930,3102,2,1,1296.980326,1296.980326,3505,NO,36.5,46.57,3,8.51,6106,113.361662,123.19147,132.888898,139.45831,I,Above,Hip,0,5701,,41.53392078,0,0,,,,1,1,,0.03,nav,1,1930,2,, 24043,NJBF000058382,7900 WINCHESTER AVE,Margate City,NJ,39.33221378,-74.49977976,RES1,3001,,17,NE,1951,1951,3102,2,1,1359.060688,1359.060688,3505,NO,37.58,50.59,3,6.14,6106,113.450911,123.264127,132.968088,139.540545,I,Above,Gable,0,5701,,44.08424275,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 24044,NJBF000060517,408 N EXETER AVE,Margate City,NJ,39.33612551,-74.50362461,RES1,3001,,19,NE,1990,1990,3102,2,1,1723.477917,1723.477917,3505,NO,26.7,33.54,3,3.87,6106,113.311016,123.151974,132.85345,139.406655,I,Above,Hip,0,5701,,30.11791105,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 24045,NJBF000060127,206 N CLARENDON AVE,Margate City,NJ,39.33544843,-74.49893293,RES1,3001,,17,NE,1950,1950,3103,1,1,1174.830011,1174.830011,3505,NO,25.81,33.5,3,8.68,6106,113.42416,123.242775,132.948027,139.511602,I,Above,Gable,0,5701,,29.65590746,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 24046,NJBF000053495,5 S MONROE AVE,Margate City,NJ,39.32016062,-74.51672768,RES1,3001,,21,NE,2006,2006,3102,2,2,2343.815676,2343.815676,3507,NO,27.59,38.77,1,0.96,6106,113.256546,123.102921,132.790437,139.351713,I,Above,Flat,0,5701,,33.17816429,0,0,,,,1,1,,0.03,nav,1,2006,2,, 24047,NJBF000054139,18 S CEDAR GROVE AVE,Margate City,NJ,39.32250537,-74.51131712,RES1,3001,,20,NE,2006,2006,3103,3,1,3345.484359,3345.484359,3505,NO,34.64,42.2,3,2.01,6106,113.339039,123.170955,132.863,139.432047,I,Above,Gable,0,5701,,38.42022914,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 24048,NJBF000057649,7807 VENTNOR AVE,Margate City,NJ,39.33093723,-74.49767833,COM1,3001,,NaN,ME,1932,1932,3401,2,1,1270.908476,1270.908476,3507,NO,35.61,50.3,1,-0.27,6106,113.515315,123.315773,133.021209,139.600976,I,Above,Gable,0,NaN,,42.95760792,0,0,,,,1,1,,0.03,nav,1,1932,2,, 24049,NJBF000058295,17 N DOUGLAS AVE,Margate City,NJ,39.3320515,-74.49749973,RES1,3001,,21,NE,2016,2016,3102,3,1,1686.396415,1686.396415,3505,NO,41.02,51.46,3,2.33,6106,113.503456,123.306372,133.012235,139.589242,I,Above,Flat,0,5701,,46.23795666,0,0,,,,1,1,,0.03,nav,1,2016,3,, 24050,NJBF000054538,1 S VENDOME AVE,Margate City,NJ,39.32367132,-74.51042812,RES1,3001,,21,NE,2002,2002,3102,2,1,2156.40171,2156.40171,3505,NO,27.33,33.73,3,-2.62,6106,113.341083,123.173205,132.866376,139.43551,I,Above,Hip,0,5701,,30.5309125,0,1.1,,,,1,1,,0.03,nav,1,2002,2,, 24051,NJBF000060805,413 N EXETER AVE,Margate City,NJ,39.33656404,-74.50352249,RES1,3001,,19,NE,1991,1991,3102,2,1,1708.228063,1708.228063,3505,NO,38.58,46.34,3,8.76,6106,113.30718,123.148881,132.85048,139.402374,I,Above,Gable,0,5701,,42.45895423,0,0,,,,1,1,,0.03,nav,1,1991,2,, 24052,NJBF000055453,8507 ATLANTIC AVE,Margate City,NJ,39.32614081,-74.5036964,RES1,3001,,19,NE,1950,1950,3102,3,1,1605.050164,1605.050164,3505,NO,43.28,49.45,3,6.45,6106,113.452092,123.263678,132.962687,139.54112,I,Above,Hip,0,5701,,46.36866826,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 24053,NJBF000055488,8501 ATLANTIC AVE,Margate City,NJ,39.32622565,-74.50351375,RES1,3001,,18,NE,1950,1950,3102,2,1,1818.762665,1818.762665,3505,NO,42.7,56.8,3,7.38,6106,113.454844,123.265924,132.965105,139.543744,I,Above,Hip,0,5701,,49.75013828,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 24054,NJBF000062675,601 N CLERMONT AVE,Margate City,NJ,39.33998513,-74.5035519,RES1,3001,,18,NE,1962,1962,3102,2,1,1981.670914,1981.670914,3505,NO,41.38,51.72,3,8.61,6106,113.259216,123.11004,132.811761,139.35107,I,Above,Gable,0,5701,,46.54840271,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 24055,NJBF000057232,8602 AMHERST AVE,Margate City,NJ,39.33019428,-74.50923228,RES1,3001,,17,NE,1952,1952,3101,1,1,1142.415055,1142.415055,3505,NO,19.5,29.25,3,2.19,6106,113.27169,123.119804,132.81608,139.375133,I,Above,Flat,0,5701,,24.37724841,0,0,,,,1,1,,0.03,nav,1,1952,1,, 24056,NJBF000054315,,Margate City,NJ,39.32305509,-74.51746378,RES1,3001,,NaN,NE,1969,0,3102,2,1,2071.987181,2071.987181,3507,NO,27.69,33.49,1,-0.83,6106,113.196801,123.056543,132.745113,139.30046,I,Above,Hip,0,5701,,30.59004125,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24057,NJBF000054304,,Margate City,NJ,39.32302959,-74.51771993,RES1,3001,,NaN,NE,2017,0,3102,2,1,751.4772339,751.4772339,3507,NO,27.21,36.24,1,-0.83,6106,113.191602,123.052334,132.74075,139.295577,I,Above,Gable,0,5701,,31.7284139,0,0,,,,1,1,,0.03,nav,1,2017,2,, 24058,NJBF000057984,304 N KENYON AVE,Margate City,NJ,39.33150545,-74.50817425,RES1,3001,,17,NE,1959,1959,3102,2,1,1801.632152,1801.632152,3505,NO,32.01,40.87,3,0.25,6106,113.276088,123.123616,132.820946,139.378964,I,Above,Hip,0,5701,,36.44007655,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 24059,NJBF000056227,13 S HANOVER AVE,Margate City,NJ,39.32799899,-74.5007986,RES1,3001,,18,NE,1940,1940,3102,2,1,1928.125024,1928.125024,3505,NO,34.93,41.28,3,-1.64,6106,113.488727,123.293755,132.995711,139.576324,I,Above,Flat,0,5701,,38.10271554,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 24060,NJBF000057647,17 S CLARENDON AVE,Margate City,NJ,39.33093125,-74.49439098,RES1,3001,,17,NE,1960,1960,3102,1,1,1362.383468,1362.383468,3505,NO,23.02,31.45,3,4.97,6106,113.587754,123.374115,133.082457,139.668008,I,Above,Gable,0,5701,,27.2362924,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24061,NJBF000056031,308 N WILSON AVE,Margate City,NJ,39.3275642,-74.51554399,RES1,3001,,43,NE,1950,1950,3102,2,2,987.9194538,987.9194538,3505,NO,44.1,50.21,3,5.1,6106,113.171545,123.038498,132.729967,139.281168,I,Above,Gable,0,5701,,47.15052719,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24062,NJBF000058965,27 N CLARENDON AVE,Margate City,NJ,39.33327379,-74.49640208,RES1,3001,,18,NE,1935,1935,3102,2,1,982.6885395,982.6885395,3505,NO,23.73,29.38,3,-2.93,6106,113.510431,123.312087,133.019176,139.594292,I,Above,Gable,0,5701,,26.55903159,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 24063,NJBF000061360,8111 MARSHALL AVE,Margate City,NJ,39.3375022,-74.50781074,RES1,3001,,17,NE,1973,1973,3101,1,1,1972.482628,1972.482628,3505,NO,13.1,20.79,3,1.66,6106,113.199211,123.062376,132.760784,139.301603,I,Above,Hip,0,5701,,16.94698717,0,1.1,,,,1,1,,0.03,nav,1,1973,1,, 24064,NJBF000058259,33 N FRONTENAC AVE,Margate City,NJ,39.33198971,-74.50014698,RES1,3001,,17,NE,1940,1940,3101,1,1,1338.313407,1338.313407,3505,NO,18.98,31.7,3,0.94,6106,113.445998,123.260151,132.963757,139.536175,I,Above,Flat,0,5701,,25.34062885,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 24065,NJBF000054067,,Margate City,NJ,39.32228359,-74.51946924,RES3B,3001,,NaN,ME,1969,0,3301,2,1,4683.930848,4683.930848,3501,NO,39.9,51.28,7,17.25,6106,113.16481,123.030243,132.717349,139.269543,I,Above,Hip,0,5701,,45.59150052,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24066,NJBF000061695,318 N FREDERICKSBURG AVE,Margate City,NJ,39.33809245,-74.49745015,RES1,3001,,18,NE,2000,2000,3103,2,1,1280.824836,1280.824836,3505,NO,22.72,32.16,3,0.52,6106,113.420333,123.239502,132.946315,139.502056,I,Above,Hip,0,5701,,27.4386308,0,0,,,,1,1,,0.03,nav,1,2000,2,, 24067,NJBF000063971,7405 BAYSHORE DR,Margate City,NJ,39.34323235,-74.50281625,RES1,3001,,20,NE,1984,1984,3102,2,1,3564.873593,3564.873593,3505,NO,33.87,39.62,3,0.38,6106,113.23143,123.086919,132.789082,139.316372,I,Above,Gable,0,5701,,36.74419002,0,0,,,,1,1,,0.03,nav,1,1984,2,, 24068,NJBF000062590,6 BAYSHORE CT,Margate City,NJ,39.33977152,-74.50712417,RES1,3001,,18,NE,1967,1967,3102,2,1,1626.118845,1626.118845,3505,NO,36.94,49.23,3,2.49,6106,113.182953,123.049095,132.748052,139.282143,I,Above,Flat,0,5701,,43.08517349,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 24069,NJBF000054598,,Margate City,NJ,39.32393778,-74.51846342,RES1,3001,,NaN,NE,1969,0,3102,2,1,5319.893986,5319.893986,3507,NO,31.88,38.38,1,0.58,6106,113.161759,123.028809,132.717227,139.268852,I,Above,Hip,0,5701,,35.13042666,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24070,NJBF000054650,,Margate City,NJ,39.3239515,-74.5183475,RES1,3001,,NaN,NE,1969,0,3102,2,1,863.8734789,863.8734789,3507,NO,30.89,41.3,1,1.36,6106,113.16407,123.03068,132.719166,139.271025,I,Above,Flat,0,5701,,36.0921977,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24071,NJBF000054530,206 N MADISON AVE,Margate City,NJ,39.32364081,-74.51933627,RES1,3001,,17,NE,1925,1925,3102,2,2,918.2808738,918.2808738,3507,NO,27.08,34.84,1,2.13,6106,113.14721,123.016901,132.704717,139.254903,I,Above,Gable,0,5701,,30.95792013,0,0,,,,1,1,,0.03,nav,1,1925,2,, 24072,NJBF000055540,207 N HARDING AVE,Margate City,NJ,39.32636739,-74.51467512,RES1,3001,,47,NE,1950,1950,3102,2,2,927.2566327,927.2566327,3505,NO,34.71,42.3,3,2.6,6106,113.208256,123.067507,132.759076,139.31461,I,Above,Gable,0,5701,,38.50399143,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24073,NJBF000053335,,Margate City,NJ,39.31954933,-74.51629942,RES1,3001,,NaN,NE,1969,0,3102,2,1,1423.138477,1423.138477,3507,NO,33.83,42.54,1,2.36,6106,113.275154,123.11754,132.804962,139.367931,I,Above,Flat,0,5701,,38.1862198,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24074,NJBF000058458,39 N EXETER AVE,Margate City,NJ,39.33235414,-74.49932764,RES1,3001,,17,NE,1962,1962,3102,2,1,1522.810111,1522.810111,3505,NO,38.89,52.29,3,4.37,6106,113.458892,123.270558,132.974929,139.547802,I,Above,Gable,0,5701,,45.5894059,0,0,,,,1,1,,0.03,nav,1,1962,2,, 24075,NJBF000056241,10 N KENYON AVE,Margate City,NJ,39.3280286,-74.50490651,RES1,3001,,17,NE,1950,1950,3102,2,1,2417.685142,2417.685142,3505,NO,36.46,44.14,3,5.9,6106,113.398072,123.220799,132.919557,139.492192,I,Above,Flat,0,5701,,40.29740756,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 24076,NJBF000057508,210 N KENYON AVE,Margate City,NJ,39.33068858,-74.50745859,RES1,3001,,18,NE,1952,1952,3102,3,1,1947.582219,1947.582219,3505,NO,47.32,57.08,3,-2.53,6106,113.303554,123.145502,132.843149,139.404687,I,Above,Hip,0,5701,,52.2016603,0,0,,,,1,1,,0.03,nav,1,1952,3,, 24077,NJBF000055831,4 S KENYON AVE,Margate City,NJ,39.32708305,-74.50421456,RES1,3001,,17,NE,1950,1950,3101,1,1,1518.483272,1518.483272,3505,NO,25.81,39.29,3,7.19,6106,113.426995,123.243785,132.942744,139.518546,I,Above,Hip,0,5701,,32.54849379,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 24078,NJBF000060390,108 N FREDERICKSBURG AVE,Margate City,NJ,39.33589079,-74.49538136,RES1,3001,,17,NE,1954,1954,3102,1,1,2366.840363,2366.840363,3505,NO,20.66,29.4,3,2.28,6106,113.496452,123.300862,133.009307,139.57661,I,Above,Flat,0,5701,,25.02992018,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24079,NJBF000053793,24 N MONROE AVE,Margate City,NJ,39.32129745,-74.51837771,RES1,3001,,17,NE,1964,1964,3102,1,1,1001.300318,1001.300318,3507,NO,18.54,32.75,1,0.53,6106,113.203475,123.06081,132.748007,139.304152,I,Above,Flat,0,5701,,25.64692587,0,0,,,,1,1,,0.03,nav,1,1964,1,, 24080,NJBF000056521,1 S HANOVER AVE,Margate City,NJ,39.32866287,-74.50132542,RES1,3001,,18,NE,1955,1955,3101,1,1,4015.645991,4015.645991,3505,NO,23,35.3,3,7.64,6106,113.467604,123.276921,132.978667,139.556957,I,Above,Hip,0,5701,,29.14929598,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 24081,NJBF000054085,14 N ADAMS AVE,Margate City,NJ,39.32233288,-74.515503,RES1,3001,,49,NE,1930,1930,3102,2,4,1372.291542,1372.291542,3507,NO,31.36,45.97,1,2.78,6106,113.250371,123.099327,132.788684,139.349395,I,Above,Gable,0,5701,,38.66418336,0,0,,,,1,1,,0.03,nav,1,1930,2,, 24082,NJBF000053965,9 N JEFFERSON AVE,Margate City,NJ,39.32194182,-74.51589479,RES1,3001,,47,NE,1925,1925,3102,2,2,1249.081014,1249.081014,3507,NO,33.03,45.71,1,-0.89,6106,113.247722,123.096952,132.785886,139.346361,I,Above,Hip,0,5701,,39.37158405,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24083,NJBF000057395,424 N QUINCY AVE,Margate City,NJ,39.33050033,-74.51287788,RES1,3001,,21,NE,1942,2018,3101,2,1,1819.318588,1819.318588,3505,NO,29.76,35.81,3,-2.89,6106,113.187089,123.051979,132.745921,139.296432,I,Above,Flat,0,5701,,32.78450254,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 24084,NJBF000055245,106 S KENYON AVE,Margate City,NJ,39.32555754,-74.50296399,RES1,3001,,17,NE,1920,1920,3102,2,1,1626.756281,1626.756281,3505,NO,23.62,30.03,3,-2.84,6106,113.476643,123.283248,132.982595,139.563325,I,Above,Hip,0,5701,,26.826426,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 24085,NJBF000058309,8109 MONMOUTH AVE,Margate City,NJ,39.3320737,-74.50385179,RES1,3001,,17,NE,1948,1948,3101,1,1,1369.630336,1369.630336,3505,NO,18.3,28.02,3,7.19,6106,113.363163,123.193604,132.89426,139.459439,I,Above,Hip,0,5701,,23.16259146,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 24086,NJBF000059563,,Margate City,NJ,39.33446855,-74.49900895,RES1,3001,,NaN,NE,1969,0,3103,4,1,1334.560633,1334.560633,3505,NO,47.71,52.83,3,3.84,6110,113.436162,123.252418,132.957459,139.524276,I,Above,Hip,0,5701,,50.26865012,0,0,,,,1,1,,0.35,nav,1,1969,4,, 24087,NJBF000057018,,Margate City,NJ,39.32974456,-74.50387929,RES1,3001,,NaN,NE,1969,0,3101,1,1,2001.3278,2001.3278,3505,NO,27.22,38.19,3,8.54,6106,113.39589,123.219486,132.919545,139.490522,I,Above,Gable,0,5701,,32.70824945,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24088,NJBF000056771,104 S DOUGLAS AVE,Margate City,NJ,39.32922913,-74.4957071,RES1,3001,,17,NE,1925,1925,3102,2,1,1773.57662,1773.57662,3505,NO,24.9,30.67,3,2.7,6106,113.582985,123.369977,133.076647,139.664057,I,Above,Hip,0,5701,,27.78395059,0,0,,,,1,1,,0.03,nav,1,1925,2,, 24089,NJBF000053251,9616 PACIFIC AVE,Margate City,NJ,39.31926141,-74.51570025,RES3E,3001,,39,ME,1979,1979,3301,3,1,7035.988427,7035.988427,3507,NO,47.26,60.74,1,-0.64,6106,113.29253,123.13139,132.818999,139.383542,I,Above,Flat,0,5701,,53.99763188,0,1.1,,,,1,1,,0.03,nav,1,1979,3,, 24090,NJBF000059971,216 N CLERMONT AVE,Margate City,NJ,39.33517395,-74.49941613,RES1,3001,,17,NE,1950,1950,3103,2,1,1188.478611,1188.478611,3505,NO,18.8,29.51,3,-2.63,6106,113.417316,123.237282,132.942084,139.505822,I,Above,Gable,0,5701,,24.15699124,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24091,NJBF000061039,25 N GILMAR CIRCLE,Margate City,NJ,39.33695073,-74.50753473,RES1,3001,,20,NE,1965,1965,3101,1,1,1396.679538,1396.679538,3505,NO,15.32,24.77,3,-1.24,6106,113.213014,123.073453,132.77203,139.315223,I,Above,Flat,0,5701,,20.0449436,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24092,NJBF000057222,,Margate City,NJ,39.330173,-74.50336267,RES1,3001,,NaN,NE,1969,0,3101,1,1,995.1487373,995.1487373,3505,NO,18.67,32.38,3,5.65,6106,113.401095,123.223761,132.924337,139.495323,I,Above,Gable,0,5701,,25.52239421,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24093,NJBF000060061,302 N DOUGLAS AVE,Margate City,NJ,39.33533433,-74.50127549,RES1,3001,,17,NE,1961,1961,3102,2,1,1918.312138,1918.312138,3505,NO,31.63,38.33,3,-1.39,6106,113.374019,123.202522,132.905795,139.465824,I,Above,Hip,0,5701,,34.97651038,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 24094,NJBF000060077,204 N CLARENDON AVE,Margate City,NJ,39.33535533,-74.49885532,RES1,3001,,17,NE,1955,1955,3103,1,1,1326.820198,1326.820198,3505,NO,18.46,32.92,3,5.58,6106,113.427179,123.245202,132.950508,139.514538,I,Above,Gable,0,5701,,25.69144512,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 24095,NJBF000056035,10 S JASPER AVE,Margate City,NJ,39.32757792,-74.50237245,RES1,3001,,17,NE,1945,1945,3102,2,1,1255.818373,1255.818373,3505,NO,40.09,51.5,3,5.69,6106,113.460267,123.270722,132.971279,139.549714,I,Above,Hip,0,5701,,45.79149432,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 24096,NJBF000059812,105 N BARCLAY AVE,Margate City,NJ,39.33489215,-74.49644764,RES1,3001,,21,NE,1950,2018,3102,1,1,1225.000414,1225.000414,3505,NO,22.17,29.62,3,8.37,6106,113.486781,123.293108,133.000447,139.569933,I,Above,Hip,0,5701,,25.89166444,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 24097,NJBF000060015,7706 AMHERST AVE,Margate City,NJ,39.33524153,-74.5004758,RES1,3001,,17,NE,1957,1957,3102,2,1,1441.881978,1441.881978,3505,NO,40.06,54.67,3,7.94,6106,113.392954,123.217721,132.921642,139.483359,I,Above,Hip,0,5701,,47.36294563,0,0,,,,1,1,,0.03,nav,1,1957,2,, 24098,NJBF000060220,400 N EXETER AVE,Margate City,NJ,39.33560379,-74.50314319,RES1,3001,,19,NE,1988,1988,3102,2,1,2101.184087,2101.184087,3505,NO,30.32,43.2,3,1,6106,113.32897,123.16638,132.868179,139.424001,I,Above,Hip,0,5701,,36.75731018,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 24099,NJBF000056180,202 N RUMSON AVE,Margate City,NJ,39.32790297,-74.51129773,RES1,3001,,20,NE,2016,2016,3101,1,1,1143.521866,1143.521866,3505,NO,21.25,34.18,3,5.26,6106,113.259636,123.109438,132.80366,139.363422,I,Above,Gable,0,5701,,27.71868508,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24100,NJBF000057334,7602 ATLANTIC AVE,Margate City,NJ,39.33039072,-74.49396117,RES1,3001,,18,NE,1928,1928,3102,2,1,1227.39229,1227.39229,3505,NO,22.3,34.21,3,-0.35,6106,113.604862,123.387823,133.096408,139.684124,I,Above,Hip,0,5701,,28.25778721,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 24101,NJBF000062511,606 N DOUGLAS AVE,Margate City,NJ,39.33960125,-74.50532762,RES1,3001,,18,NE,1966,1966,3102,2,1,1971.136412,1971.136412,3505,NO,20.97,31.89,3,-0.27,6106,113.225122,123.082838,132.783161,139.321006,I,Above,Gable,0,5701,,26.42591033,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 24102,NJBF000061074,13 E GILMAR CIRCLE,Margate City,NJ,39.33701772,-74.50645998,RES1,3001,,17,NE,1965,1965,3101,1,1,1915.110439,1915.110439,3505,NO,12.37,22.69,3,1,6106,113.235861,123.091734,132.79111,139.33611,I,Above,Hip,0,5701,,17.52799204,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24103,NJBF000056172,311 N WILSON AVE,Margate City,NJ,39.32787147,-74.51535907,RES1,3001,,47,NE,1950,1950,3102,2,2,806.6002665,806.6002665,3505,NO,24.98,30.81,3,-0.02,6106,113.171073,123.038243,132.729921,139.28089,I,Above,Flat,0,5701,,27.89673465,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24104,NJBF000061066,208 N FREDERICKSBURG AVE,Margate City,NJ,39.3370043,-74.49642254,RES1,3001,,17,NE,1966,1966,3103,2,1,1593.263544,1593.263544,3505,NO,24.39,38.03,3,1.66,6106,113.458033,123.269903,132.977539,139.539034,I,Above,Gable,0,5701,,31.20974185,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 24105,NJBF000062756,606 N CLERMONT AVE,Margate City,NJ,39.3401575,-74.50424829,RES1,3001,,18,NE,1970,1970,3102,2,1,1838.797112,1838.797112,3505,NO,38.55,51.28,3,-0.27,6106,113.241428,123.095774,132.796938,139.33447,I,Above,Hip,0,5701,,44.91341716,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24106,NJBF000060893,409 N ESSEX AVE,Margate City,NJ,39.33671194,-74.50286413,RES1,3001,,17,NE,1952,1952,3102,2,1,2285.729465,2285.729465,3505,NO,41.97,47.83,3,8.94,6106,113.319669,123.158883,132.861019,139.413551,I,Above,Hip,0,5701,,44.90241316,0,0,,,,1,1,,0.03,nav,1,1952,2,, 24107,NJBF000060314,216 N CLARENDON AVE,Margate City,NJ,39.33575752,-74.49924062,RES1,3001,,21,NE,1969,2018,3103,3,1,1336.652395,1336.652395,3505,NO,39.94,46.63,3,4.26,6106,113.413036,123.233834,132.938863,139.500839,I,Above,Hip,0,5701,,43.28463419,0,0,,,,1,1,,0.03,nav,1,1969,3,, 24108,NJBF000054073,9309-11 VENTNOR AVE,Margate City,NJ,39.32229704,-74.51448533,COM3,3003,,NaN,ME,1979,1979,3401,2,1,2187.293921,2187.293921,3507,NO,32.61,43.22,1,2.14,6106,113.273087,123.117634,132.807583,139.370481,I,Above,Gable,0,NaN,,37.91919315,0,0,,,,1,1,,0.03,nav,1,1979,2,, 24109,NJBF000062034,429 N CLERMONT AVE,Margate City,NJ,39.33867764,-74.502277,RES1,3001,,17,NE,1960,1960,3102,2,1,3651.05982,3651.05982,3505,NO,28.17,36.56,3,1.13,6106,113.305428,123.147268,132.85,139.396339,I,Above,Gable,0,5701,,32.36339779,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 24110,NJBF000053701,,Margate City,NJ,39.32095892,-74.51426206,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3794.3953,3794.3953,3505,NO,33.18,45.84,3,8.29,6106,113.298076,123.136994,132.826402,139.391651,I,Above,Gable,0,NaN,,39.50648126,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24111,NJBF000061143,408 N DELAVAN AVE,Margate City,NJ,39.33713568,-74.50209896,RES1,3001,,17,NE,1965,1952,3102,1,1,1955.746368,1955.746368,3505,NO,13.13,21.99,3,2.1,6106,113.330695,123.167692,132.87048,139.422812,I,Above,Gable,0,5701,,17.560054,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 24112,NJBF000057271,103 S CLARENDON AVE,Margate City,NJ,39.33026495,-74.49386078,RES1,3001,,19,NE,1928,1928,3102,2,1,1688.870439,1688.870439,3505,NO,37.72,46.74,3,8.73,6106,113.608848,123.391016,133.099656,139.687865,I,Above,Gable,0,5701,,42.23161082,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 24113,NJBF000054036,121 N COOLIDGE AVE,Margate City,NJ,39.32217553,-74.51974483,RES1,3001,,17,NE,1920,1920,3102,2,1,796.369098,796.369098,3507,NO,36.51,46.29,1,2.69,6106,113.160446,123.026648,132.713555,139.265312,I,Above,Gable,0,5701,,41.40009038,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 24114,NJBF000058678,209 N HAVERFORD AVE,Margate City,NJ,39.332737,-74.50368517,RES1,3001,,19,NE,2008,2008,3102,2,1,1424.979503,1424.979503,3505,NO,31.13,37.11,3,-2.5,6106,113.357421,123.189073,132.889994,139.453653,I,Above,Gable,0,5701,,34.11789966,0,0,,,,1,1,,0.03,nav,1,2008,2,, 24115,NJBF000057317,7 S ESSEX AVE,Margate City,NJ,39.33035358,-74.49668356,COM1,3001,,NaN,ME,1945,1945,3401,2,1,10351.14423,10351.14423,3507,NO,27.52,35.76,1,-0.53,6106,113.545476,123.339965,133.046107,139.629147,I,Above,Flat,0,NaN,,31.63780837,0,0,,,,1,1,,0.03,nav,1,1945,2,, 24116,NJBF000056142,115 N QUINCY AVE,Margate City,NJ,39.32781046,-74.50971964,RES1,3001,,17,NE,1951,1951,3102,2,1,1524.443393,1524.443393,3505,NO,24.57,32.23,3,3.09,6106,113.295613,123.138328,132.833573,139.396859,I,Above,Gable,0,5701,,28.39886799,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 24117,NJBF000054656,7 N HARDING AVE,Margate City,NJ,39.32397851,-74.51239558,RES1,3001,,17,NE,1957,1957,3102,2,1,1212.874547,1212.874547,3505,NO,42.47,47.64,3,3.49,6106,113.293516,123.135022,132.827046,139.391685,I,Above,Hip,0,5701,,45.05087934,0,0,,,,1,1,,0.03,nav,1,1957,2,, 24118,NJBF000053906,116 N COOLIDGE AVE,Margate City,NJ,39.32172303,-74.52011915,RES1,3001,,17,NE,1922,1922,3109,2,1,578.4109925,578.4109925,3505,NO,29.31,41.02,3,-1.62,6106,113.159192,123.025329,132.711813,139.263472,I,Above,Gable,0,5701,,35.16731284,0,0,,,,1,1,,0.03,nav,1,1922,2,, 24119,NJBF000053563,24 S JEFFERSON AVE,Margate City,NJ,39.32042914,-74.51494528,RES1,3001,,18,NE,1924,1924,3102,2,1,1246.732593,1246.732593,3507,NO,35.29,47.27,1,-0.7,6106,113.291225,123.131122,132.819833,139.384405,I,Above,Gable,0,5701,,41.28348191,0,0,,,,1,1,,0.03,nav,1,1924,2,, 24120,NJBF000061533,9 ESSEX CT,Margate City,NJ,39.337802,-74.50521949,RES1,3001,,19,NE,1970,1970,3102,2,1,3084.626757,3084.626757,3505,NO,36.22,45.1,3,0.85,6106,113.252408,123.104919,132.805281,139.349843,I,Above,Gable,0,5701,,40.66084083,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24121,NJBF000059395,204 N DOUGLAS AVE,Margate City,NJ,39.33416851,-74.499957,RES1,3001,,17,NE,1950,1950,3103,1,1,1638.041869,1638.041869,3505,NO,17.13,30.47,3,0.04,6106,113.419445,123.23898,132.943172,139.509349,I,Above,Gable,0,5701,,23.80142933,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 24122,NJBF000054203,9614 MONMOUTH AVE,Margate City,NJ,39.32272833,-74.51905,RES1,3001,,17,NE,1922,1922,3102,2,1,630.5358121,630.5358121,3507,NO,25.75,35.47,1,-0.63,6106,113.167208,123.032465,132.720011,139.272402,I,Above,Hip,0,5701,,30.61145875,0,0,,,,1,1,,0.03,nav,1,1922,2,, 24123,NJBF000058874,408 N JEROME AVE,Margate City,NJ,39.33309521,-74.50890459,RES1,3001,,17,NE,1963,1963,3102,2,1,2272.206753,2272.206753,3505,NO,42.3,50.73,3,7.74,6106,113.237228,123.092695,132.789827,139.342077,I,Above,Gable,0,5701,,46.51521895,0,0,,,,1,1,,0.03,nav,1,1963,2,, 24124,NJBF000061779,7 ESSEX CT,Margate City,NJ,39.33824173,-74.50541468,RES1,3001,,18,NE,1971,1971,3102,2,1,1925.421142,1925.421142,3505,NO,43.39,51.52,3,8.49,6106,113.241965,123.096513,132.796744,139.339397,I,Above,Gable,0,5701,,47.45520823,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 24125,NJBF000056047,8804 MONMOUTH AVE,Margate City,NJ,39.32760516,-74.51105706,RES1,3001,,17,NE,1967,1967,3102,2,1,1384.901426,1384.901426,3505,NO,27.37,34.09,3,-2.41,6106,113.269285,123.117088,132.811371,139.372257,I,Above,Gable,0,5701,,30.72795617,0,0,,,,1,1,,0.03,nav,1,1967,2,, 24126,NJBF000060860,202 N FREDERICKSBURG AVE,Margate City,NJ,39.33665849,-74.49621336,RES1,3001,,17,NE,1926,1926,3103,1,1,1197.777019,1197.777019,3505,NO,13.82,24.27,3,0.05,6106,113.467454,123.277503,132.98529,139.548443,I,Above,Gable,0,5701,,19.04751829,0,0,,,,1,1,,0.03,nav,1,1926,1,, 24127,NJBF000055423,13 N SUMNER AVE,Margate City,NJ,39.32605085,-74.50992566,RES1,3001,,17,NE,1915,1915,3102,2,1,1906.53249,1906.53249,3505,NO,36.95,47.33,3,3.55,6106,113.316883,123.154783,132.849269,139.4155,I,Above,Gable,0,5701,,42.13791313,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 24128,NJBF000060882,206 N ARGYLE AVE,Margate City,NJ,39.33669344,-74.49727317,RES1,3001,,17,NE,1950,1950,3103,2,1,1012.212899,1012.212899,3505,NO,27.14,37.5,3,-2.78,6106,113.443544,123.258287,132.965133,139.526658,I,Above,Gable,0,5701,,32.31645871,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24129,NJBF000055546,7 N QUINCY AVE,Margate City,NJ,39.3263767,-74.50838274,RES1,3001,,17,NE,1930,1930,3102,2,1,1447.258519,1447.258519,3505,NO,27.22,35.74,3,4.56,6106,113.3459,123.178265,132.873931,139.442734,I,Above,Hip,0,5701,,31.47879197,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 24130,NJBF000059392,207 N ESSEX AVE,Margate City,NJ,39.33415988,-74.50022732,RES1,3001,,17,NE,1950,1950,3102,2,1,936.7329286,936.7329286,3505,NO,27.82,38.69,3,5.02,6106,113.413613,123.234295,132.93826,139.503993,I,Above,Hip,0,5701,,33.25463313,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24131,NJBF000055343,9 N SUMNER AVE,Margate City,NJ,39.325831,-74.509736,RES1,3001,,17,NE,1951,1951,3102,2,1,1221.029194,1221.029194,3505,NO,38.79,46.76,3,0.49,6106,113.324281,123.160648,132.855179,139.422193,I,Above,Flat,0,5701,,42.77347276,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 24132,NJBF000062550,511 N CLERMONT AVE,Margate City,NJ,39.33968473,-74.50323791,RES1,3001,,20,NE,1969,2018,3102,2,1,1755.850517,1755.850517,3505,NO,36.81,46.37,3,2.03,6106,113.27029,123.118962,132.820935,139.361899,I,Above,Hip,0,5701,,41.58974468,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24133,NJBF000054512,14 S THURLOW AVE,Margate City,NJ,39.323594,-74.50904915,RES1,3001,,19,NE,1928,1928,3102,2,1,1588.157361,1588.157361,3505,NO,46.05,60.9,3,8.44,6106,113.372356,123.198376,132.892445,139.464432,I,Above,Hip,0,5701,,53.47531942,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 24134,NJBF000059314,200 N DOUGLAS AVE,Margate City,NJ,39.33399095,-74.49976902,RES1,3001,,20,NE,2005,2005,3103,2,1,1367.997023,1367.997023,3505,NO,29.73,38.03,3,7.56,6106,113.426094,123.244314,132.948633,139.515713,I,Above,Gable,0,5701,,33.87790704,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 24135,NJBF000059722,15 E COLMAR CIRCLE,Margate City,NJ,39.33473533,-74.50437827,RES1,3001,,17,NE,1925,1925,3101,2,1,1356.754075,1356.754075,3505,NO,24.98,35.56,3,-1.12,6106,113.313888,123.154279,132.854999,139.411356,I,Above,Gable,0,5701,,30.27238163,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24136,NJBF000055291,14 N THURLOW AVE,Margate City,NJ,39.32569393,-74.51106773,RES1,3001,,19,NE,1988,1988,3102,2,1,1001.082573,1001.082573,3505,NO,43.17,50.72,3,8.35,6106,113.29714,123.138742,132.832331,139.396832,I,Above,Hip,0,5701,,46.94239138,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 24137,NJBF000054429,108 N ADAMS AVE,Margate City,NJ,39.32337683,-74.51650741,RES3B,3001,,20,ME,1999,1999,3301,2,1,3741.336709,3741.336709,3505,NO,35.74,47.48,3,5.26,6106,113.212812,123.069645,132.758908,139.315806,I,Above,Gable,0,5701,,41.60933817,0,0,,,,1,1,,0.03,nav,1,1999,2,, 24138,NJBF000055352,15 N THURLOW AVE,Margate City,NJ,39.32586856,-74.5107067,RES1,3001,,17,NE,1930,1930,3102,2,1,2120.176092,2120.176092,3505,NO,20.58,25.97,3,-0.61,6106,113.302461,123.1431,132.836995,139.401935,I,Above,Gable,0,5701,,23.27351791,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 24139,NJBF000054800,122-124 N WASHINGTON AVE,Margate City,NJ,39.32434194,-74.51604689,RES1,3001,,17,NE,1923,1923,3102,2,3,980.3980919,980.3980919,3507,NO,33.82,44.22,1,0.33,6106,113.208392,123.06662,132.756574,139.312831,I,Above,Hip,0,5701,,39.01872507,0,0,,,,1,1,,0.03,nav,1,1923,2,, 24140,NJBF000061309,218 N ARGYLE AVE,Margate City,NJ,39.33741344,-74.49792983,RES1,3001,,17,NE,1950,1950,3103,1,1,1463.983937,1463.983937,3505,NO,9.05,21.11,3,-3,6106,113.419069,123.238567,132.944904,139.502686,I,Above,Hip,0,5701,,15.07971982,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24141,NJBF000055272,5 N SUMNER AVE,Margate City,NJ,39.32562723,-74.50949755,RES1,3001,,17,NE,1931,1931,3101,1,1,1953.888395,1953.888395,3505,NO,13.94,27.67,3,-0.79,6106,113.332496,123.167177,132.86179,139.429649,I,Above,Gable,0,5701,,20.80720627,0,1.1,,,,1,1,,0.03,nav,1,1931,1,, 24142,NJBF000058046,303 N KENYON AVE,Margate City,NJ,39.33161128,-74.50774464,RES1,3001,,17,NE,1959,1959,3102,2,1,1937.310711,1937.310711,3505,NO,24.45,30.02,3,0.67,6106,113.284015,123.129996,132.827654,139.386282,I,Above,Gable,0,5701,,27.23663538,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 24143,NJBF000061260,224 N BELMONT DR,Margate City,NJ,39.3373325,-74.498858,RES1,3001,,17,NE,1962,1962,3103,2,1,876.5927459,876.5927459,3505,NO,33.47,43.89,3,5.56,6106,113.399652,123.222987,132.92851,139.485249,I,Above,Flat,0,5701,,38.67916386,0,0,,,,1,1,,0.03,nav,1,1962,2,, 24144,NJBF000057608,221 N LANCASTER AVE,Margate City,NJ,39.33087005,-74.50803976,RES1,3001,,17,NE,1930,1930,3102,2,1,1565.429004,1565.429004,3505,NO,40.95,54.36,3,7.43,6106,113.288164,123.133183,132.830461,139.390357,I,Above,Gable,0,5701,,47.65401552,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24145,NJBF000056588,8705 MONMOUTH AVE,Margate City,NJ,39.32880521,-74.50959125,RES1,3001,,21,NE,2017,2017,3101,1,1,922.8465309,922.8465309,3505,NO,10.82,19.06,3,-0.82,6106,113.283942,123.129266,132.824909,139.386368,I,Above,Hip,0,5701,,14.93950146,0,0,,,,1,1,,0.03,nav,1,2017,1,, 24146,NJBF000057352,8603 AMHERST AVE,Margate City,NJ,39.33041738,-74.50942364,RES1,3001,,17,NE,1961,1961,3102,1,1,2541.215338,2541.215338,3505,NO,26.84,39.18,3,7.83,6106,113.264245,123.113881,132.810081,139.368199,I,Above,Hip,0,5701,,33.00609556,0,0,,,,1,1,,0.03,nav,1,1961,1,, 24147,NJBF000055646,16 N QUINCY AVE,Margate City,NJ,39.32663943,-74.50919146,RES1,3001,,17,NE,1940,1940,3102,2,1,1146.069365,1146.069365,3505,NO,30.82,39.06,3,-0.5,6106,113.324351,123.161023,132.856226,139.422895,I,Above,Hip,0,5701,,34.94159523,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 24148,NJBF000057940,311 N MANSFIELD AVE,Margate City,NJ,39.3314092,-74.5094601,RES1,3001,,17,NE,1952,1952,3101,1,1,1653.340571,1653.340571,3505,NO,21.99,32.79,3,2.96,6106,113.249153,123.101985,132.798397,139.353983,I,Above,Gable,0,5701,,27.39275939,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 24149,NJBF000061141,217 N BELMONT DR,Margate City,NJ,39.33713339,-74.49802885,RES1,3001,,20,NE,2015,2015,3103,3,1,1283.98894,1283.98894,3505,NO,55.33,63.12,3,-2.62,6106,113.420747,123.239941,132.946167,139.504897,I,Above,Gable,0,5701,,59.22625018,0,0,,,,1,1,,0.03,nav,1,2015,3,, 24150,NJBF000055469,12 N RUMSON AVE,Margate City,NJ,39.32618178,-74.50969742,RES1,3001,,17,NE,1945,1945,3102,2,1,1872.601547,1872.601547,3505,NO,36.52,43.87,3,0.45,6106,113.319973,123.157322,132.852012,139.418479,I,Above,Hip,0,5701,,40.19302645,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 24151,NJBF000054798,8902 VENTNOR AVE,Margate City,NJ,39.3243345,-74.50908004,REL1,3004,,NaN,ME,1969,0,3401,2,1,13686.13678,13686.13678,3507,NO,36.5,43.24,1,0.97,6106,113.360722,123.189347,132.883718,139.454537,I,Above,Gable,0,5701,,39.87087405,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24152,NJBF000058737,40 N DOUGLAS AVE,Margate City,NJ,39.33284602,-74.49868269,RES1,3001,,21,NE,2016,2016,3102,3,1,1242.032162,1242.032162,3505,NO,35.91,41.56,3,0.01,6106,113.466162,123.276449,132.98147,139.554033,I,Above,Gable,0,5701,,38.73420493,0,0,,,,1,1,,0.03,nav,1,2016,3,, 24153,NJBF000055056,8802 VENTNOR AVE,Margate City,NJ,39.32501105,-74.50790071,RES1,3001,,19,NE,1950,1950,3102,2,1,525.1143411,525.1143411,3505,NO,44.51,57.46,3,6.6,6106,113.376527,123.202377,132.89785,139.469948,I,Above,Hip,0,5701,,50.9852741,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 24154,NJBF000057879,7503 ATLANTIC AVE,Margate City,NJ,39.3313045,-74.4931175,RES1,3001,,19,NE,1925,1925,3102,3,1,958.0477664,958.0477664,3505,NO,41.33,50.97,3,-0.76,6106,113.610511,123.392508,133.102119,139.688755,I,Above,Flat,0,5701,,46.15151786,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 24155,NJBF000055032,12 S PEMBROKE AVE,Margate City,NJ,39.32494703,-74.50660857,RES1,3001,,19,NE,1930,1930,3102,2,1,1333.140859,1333.140859,3505,NO,31.67,37.59,3,6.83,6106,113.405751,123.225893,132.922261,139.496994,I,Above,Gable,0,5701,,34.63158963,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24156,NJBF000055752,9131 FREMONT AVE,Margate City,NJ,39.32689193,-74.51655878,RES1,3001,,21,NE,2000,2000,3102,2,1,2613.977698,2613.977698,3505,NO,37.84,49.66,3,4.08,6106,113.159259,123.028328,132.718978,139.269287,I,Above,Hip,0,5701,,43.74931865,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, 24157,NJBF000057124,202 N LANCASTER AVE,Margate City,NJ,39.32997918,-74.50769165,RES1,3001,,17,NE,1950,1950,3101,1,1,1037.946605,1037.946605,3505,NO,14.3,24.84,3,-2.89,6106,113.308662,123.149443,132.846742,139.409502,I,Above,Gable,0,5701,,19.56991356,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24158,NJBF000059273,6 CIRCLE DRIVE,Margate City,NJ,39.33391007,-74.49459373,RES1,3001,,18,NE,1923,1923,3102,2,1,1649.117746,1649.117746,3505,NO,25.42,34.55,3,0.56,6106,113.541392,123.337033,133.045874,139.621697,I,Above,Hip,0,5701,,29.98485263,0,1.2,,,,1,1,,0.03,nav,1,1923,2,, 24159,NJBF000056117,2 S JEROME AVE,Margate City,NJ,39.32776582,-74.50323121,RES1,3001,,17,NE,1953,1953,3102,2,1,1437.802234,1437.802234,3505,NO,32.49,44.34,3,-2.63,6106,113.438685,123.253403,132.953353,139.529782,I,Above,Flat,0,5701,,38.41561817,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 24160,NJBF000058512,6 S ANDOVER AVE,Margate City,NJ,39.33244197,-74.49318165,RES1,3001,,19,NE,1925,1925,3102,2,1,1353.966308,1353.966308,3505,NO,31.48,40.56,3,3.7,6106,113.593077,123.378577,133.088408,139.67142,I,Above,Hip,0,5701,,36.02422875,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24161,NJBF000055658,9105 AMHERST AVE,Margate City,NJ,39.32667331,-74.51595985,RES1,3001,,47,NE,1950,1950,3102,2,2,799.9147736,799.9147736,3505,NO,42.27,55.88,3,7.88,6106,113.175609,123.041381,132.732299,139.28439,I,Above,Gable,0,5701,,49.07392022,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24162,NJBF000055404,117 N WILSON AVE,Margate City,NJ,39.3259955,-74.5135685,RES1,3001,,47,NE,1948,1948,3102,2,2,898.0530336,898.0530336,3505,NO,33.25,40.04,3,8.45,6106,113.237961,123.091242,132.78335,139.341997,I,Above,Gable,0,5701,,36.646179,0,0,,,,1,1,,0.03,nav,1,1948,2,, 24163,NJBF000056770,8111 VENTNOR AVE,Margate City,NJ,39.32922519,-74.50122899,RES1,3001,,21,NE,2015,2015,3102,2,1,1385.130286,1385.130286,3505,NO,30.84,41.62,3,8.68,6106,113.461635,123.27225,132.974246,139.551518,I,Above,Flat,0,5701,,36.23094093,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 24164,NJBF000055726,122 N THURLOW AVE,Margate City,NJ,39.32682981,-74.51214453,RES1,3001,,17,NE,1946,1946,3102,2,1,1649.74619,1649.74619,3505,NO,28.58,40.54,3,4.15,6106,113.256816,123.106766,132.800077,139.360186,I,Above,Flat,0,5701,,34.56280979,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 24165,NJBF000060122,37 SEASIDE COURT,Margate City,NJ,39.33544498,-74.50991845,RES1,3001,,19,NE,1989,1989,3101,3,1,1952.594532,1952.594532,3505,NO,36.24,49.06,3,1.09,6106,113.181499,123.048246,132.745003,139.288288,I,Above,Hip,0,5701,,42.65197808,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 24166,NJBF000058593,36 N DOUGLAS AVE,Margate City,NJ,39.33258492,-74.49842251,RES1,3001,,17,NE,1946,1946,3102,1,1,1281.949429,1281.949429,3505,NO,14.42,20.58,3,2.73,6106,113.475575,123.283997,132.989184,139.562992,I,Above,Hip,0,5701,,17.49877349,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 24167,NJBF000060409,414 N HUNTINGTON AVE,Margate City,NJ,39.33592103,-74.50796034,RES1,3001,,20,NE,2007,2007,3101,3,1,2140.942719,2140.942719,3505,NO,42.87,52.43,3,-3,6106,113.21806,123.077517,132.775702,139.321423,I,Above,Hip,0,5701,,47.64828553,0,0,,,,1,1,,0.03,nav,1,2007,3,, 24168,NJBF000058417,4 S ARGYLE AVE,Margate City,NJ,39.33226717,-74.49377436,RES1,3001,,19,NE,1980,1980,3102,2,1,1614.646465,1614.646465,3505,NO,39.34,46.28,3,1.59,6106,113.582496,123.370035,133.079277,139.661914,I,Above,Flat,0,5701,,42.80970499,0,0,,,,1,1,,0.03,nav,1,1980,2,, 24169,NJBF000054374,114 S QUINCY AVE,Margate City,NJ,39.32322599,-74.50599004,RES1,3001,,20,NE,1955,1955,3103,3,1,2331.958798,2331.958798,3505,NO,47.97,59.42,3,5.83,6106,113.444662,123.256501,132.952571,139.530901,I,Above,Flat,0,5701,,53.69908112,0,0,,,,1,1,,0.03,nav,1,1955,3,, 24170,NJBF000055786,14 S KNIGHT AVE,Margate City,NJ,39.32697676,-74.50336516,RES1,3001,,22,NE,2017,2017,3101,1,1,1398.35846,1398.35846,3505,NO,14.02,20.67,3,1.24,6106,113.447186,123.260006,132.959579,139.537213,I,Above,Hip,0,5701,,17.34356737,0,0,,,,1,1,,0.03,nav,1,2017,1,, 24171,NJBF000058199,27 N EXETER AVE,Margate City,NJ,39.33188565,-74.49889113,RES1,3001,,17,NE,1960,1960,3102,1,1,1444.48042,1444.48042,3505,NO,13.61,19.15,3,2.26,6106,113.475144,123.283577,132.988211,139.56321,I,Above,Hip,0,5701,,16.38366641,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24172,NJBF000058478,27 N ESSEX AVE,Margate City,NJ,39.33238582,-74.4985183,RES1,3001,,17,NE,1939,1939,3102,1,1,1219.787877,1219.787877,3505,NO,12.1,20.08,3,-2.49,6106,113.476291,123.284554,132.989617,139.563846,I,Above,Hip,0,5701,,16.09233301,0,0,,,,1,1,,0.03,nav,1,1939,1,, 24173,NJBF000058488,8602 FULTON AVE,Margate City,NJ,39.33240604,-74.51133758,RES1,3001,,19,NE,1988,1988,3102,2,1,1955.258479,1955.258479,3505,NO,35.51,43.09,3,8.06,6106,113.193465,123.057513,132.752865,139.301877,I,Above,Gable,0,5701,,39.29736748,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 24174,NJBF000055969,303 N WILSON AVE,Margate City,NJ,39.32741516,-74.51493109,RES1,3001,,47,NE,1950,1950,3102,2,2,941.0401511,941.0401511,3505,NO,31.28,37.92,3,4.78,6106,113.18717,123.050997,132.742781,139.295654,I,Above,Flat,0,5701,,34.60258125,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24175,NJBF000062388,17 BAYCREST DRIVE,Margate City,NJ,39.33934735,-74.50809886,RES1,3001,,18,NE,1979,1979,3102,2,1,1950.424777,1950.424777,3505,NO,41.03,51.51,3,7.17,6106,113.167205,123.036581,132.734823,139.268687,I,Above,Hip,0,5701,,46.26948965,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 24176,NJBF000056070,15 N NASSAU AVE,Margate City,NJ,39.32765261,-74.50678559,RES1,3001,,20,NE,2007,2007,3102,3,1,1958.330392,1958.330392,3505,NO,41.92,55.18,3,3.73,6106,113.362284,123.191894,132.889143,139.458772,I,Above,Gable,0,5701,,48.55237326,0,0,,,,1,1,,0.03,nav,1,2007,3,, 24177,NJBF000055867,112 N RUMSON AVE,Margate City,NJ,39.3271564,-74.5106178,RES1,3001,,19,NE,1991,1991,3102,2,1,1708.200024,1708.200024,3505,NO,36.92,51.86,3,-1.15,6106,113.285491,123.129955,132.824377,139.387087,I,Above,Gable,0,5701,,44.39355815,0,1.1,,,,1,1,,0.03,nav,1,1991,2,, 24178,NJBF000055522,105 N THURLOW AVE,Margate City,NJ,39.32632122,-74.51109191,RES1,3001,,17,NE,1954,1954,3101,1,1,1560.431832,1560.431832,3505,NO,10.24,18.05,3,-1.6,6106,113.287373,123.131144,132.824954,139.388264,I,Above,Gable,0,5701,,14.14543519,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24179,NJBF000055397,105 N UNION AVE,Margate City,NJ,39.32595739,-74.51171588,RES1,3001,,17,NE,1950,1950,3102,2,1,1281.865451,1281.865451,3505,NO,26.48,35.28,3,-0.85,6106,113.279075,123.124314,132.817581,139.38025,I,Above,Hip,0,5701,,30.88049359,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 24180,NJBF000060848,214 N BELMONT DR,Margate City,NJ,39.3366448,-74.49823136,RES1,3001,,17,NE,1950,1950,3103,1,1,1178.764827,1178.764827,3505,NO,16.73,27.38,3,3.36,6106,113.423034,123.241817,132.947818,139.508116,I,Above,Hip,0,5701,,22.05385634,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24181,NJBF000055558,14 S LANCASTER AVE,Margate City,NJ,39.32640675,-74.50434061,RES1,3001,,19,NE,1927,1927,3102,2,1,1124.080449,1124.080449,3505,NO,34.67,46.74,3,1.21,6106,113.434072,123.249257,132.947875,139.524627,I,Above,Hip,0,5701,,40.70871554,0,0,,,,1,1,,0.03,nav,1,1927,2,, 24182,NJBF000055908,16 N OSBORNE AVE,Margate City,NJ,39.32725541,-74.50795016,RES1,3001,,19,NE,1950,1950,3102,2,1,2371.24225,2371.24225,3505,NO,35.77,45.81,3,0.17,6106,113.342547,123.175885,132.872168,139.440212,I,Above,Flat,0,5701,,40.78953836,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24183,NJBF000056293,13 N LANCASTER AVE,Margate City,NJ,39.32815028,-74.50542886,RES1,3001,,17,NE,1947,1947,3102,2,1,1372.744093,1372.744093,3505,NO,33.29,45.03,3,8.85,6106,113.384855,123.210202,132.908609,139.479964,I,Above,Gable,0,5701,,39.16158999,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 24184,NJBF000058640,27 N DOUGLAS AVE,Margate City,NJ,39.33265489,-74.49803477,RES1,3001,,17,NE,1925,1925,3102,2,1,1579.55945,1579.55945,3505,NO,29.72,38.8,3,-0.12,6106,113.48314,123.290087,132.995622,139.569901,I,Above,Gable,0,5701,,34.25906832,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24185,NJBF000056105,112 N PEMBROKE AVE,Margate City,NJ,39.32774386,-74.50932536,RES1,3001,,18,NE,1987,1987,3102,2,1,1375.732313,1375.732313,3505,NO,40.22,53.32,3,4.2,6106,113.305243,123.146049,132.841541,139.405785,I,Above,Gable,0,5701,,46.76869102,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 24186,NJBF000055723,10 S KENYON AVE,Margate City,NJ,39.32682769,-74.50396249,RES1,3001,,19,NE,1930,1930,3102,3,1,1405.484474,1405.484474,3505,NO,49.4,60.89,3,5.33,6106,113.436254,123.251156,132.950217,139.526967,I,Above,Gable,0,5701,,55.14535065,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 24187,NJBF000056919,314 N QUINCY AVE,Margate City,NJ,39.3295377,-74.51198859,RES1,3001,,17,NE,1950,1950,3102,2,1,1916.348991,1916.348991,3505,NO,42.44,52.47,3,4.22,6106,113.220607,123.078611,132.772872,139.327581,I,Above,Flat,0,5701,,47.45547278,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24188,NJBF000058334,410 N MANSFIELD AVE,Margate City,NJ,39.33211031,-74.51067508,RES1,3001,,17,NE,1950,1950,3101,1,1,1437.767996,1437.767996,3505,NO,12.08,24.99,3,-0.47,6106,113.212321,123.072577,132.768312,139.31952,I,Above,Hip,0,5701,,18.53544351,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 24189,NJBF000056292,12 N KENYON AVE,Margate City,NJ,39.32814993,-74.50495451,RES1,3001,,17,NE,1965,1965,3101,1,1,1453.054445,1453.054445,3505,NO,25.57,30.78,3,6.47,6106,113.395265,123.218575,132.917337,139.489633,I,Above,Flat,0,5701,,28.17385897,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24190,NJBF000055569,104 N SUMNER AVE,Margate City,NJ,39.32644286,-74.51086448,RES1,3001,,17,NE,1925,1925,3102,2,1,1452.672969,1452.672969,3505,NO,30.38,36.91,3,-1.81,6106,113.290572,123.133767,132.827772,139.391332,I,Above,Hip,0,5701,,33.6448144,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24191,NJBF000059434,8219 FULTON AVE,Margate City,NJ,39.33423567,-74.50809971,RES1,3001,,17,NE,1940,1940,3101,1,1,851.4391408,851.4391408,3505,NO,17.88,28.13,3,1.27,6106,113.23876,123.094036,132.791918,139.342536,I,Above,Gable,0,5701,,23.00422845,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 24192,NJBF000056379,311 N UNION AVE,Margate City,NJ,39.3283565,-74.514,RES1,3001,,17,NE,1951,1951,3101,1,1,956.232705,956.232705,3505,NO,21.33,30.94,3,7.16,6106,113.193736,123.056639,132.749289,139.302235,I,Above,Gable,0,5701,,26.13457449,0,0,,,,1,1,,0.03,nav,1,1951,1,, 24193,NJBF000055463,4 S MANSFIELD AVE,Margate City,NJ,39.32616761,-74.50501142,RES1,3001,,19,NE,1925,1925,3102,2,1,1649.235669,1649.235669,3505,NO,35.81,43.13,3,8.92,6106,113.422869,123.240151,132.938176,139.514038,I,Above,Hip,0,5701,,39.47113108,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24194,NJBF000060640,402 N DOUGLAS AVE,Margate City,NJ,39.33631893,-74.50216617,RES1,3001,,18,NE,1962,1962,3102,2,1,1679.437092,1679.437092,3505,NO,30.83,43.05,3,-2.65,6106,113.340577,123.175667,132.878328,139.433438,I,Above,Gable,0,5701,,36.9402984,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 24195,NJBF000054869,N BENSON AVE,Margate City,NJ,39.32451454,-74.51383598,GOV1,3001,,NaN,E,1969,0,3401,1,1,6851.903367,6851.903367,3507,NO,14.03,23.11,1,1.59,6106,113.254086,123.103523,132.794875,139.355599,I,Above,Gable,0,NaN,,18.56762135,0,1.2,,,,1,1,,0.03,nav,1,1969,1,, 24196,NJBF000056125,122 N QUINCY AVE,Margate City,NJ,39.32777522,-74.51026378,RES1,3001,,17,NE,1927,1927,3102,2,1,1464.842994,1464.842994,3505,NO,29.95,36.9,3,0.99,6106,113.28419,123.129132,132.823998,139.386214,I,Above,Gable,0,5701,,33.42236028,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 24197,NJBF000056563,108 S ESSEX AVE,Margate City,NJ,39.32876181,-74.49600811,RES1,3001,,18,NE,1925,1925,3102,3,1,1220.317621,1220.317621,3505,NO,50.02,59.94,3,0.38,6106,113.583039,123.36992,133.076177,139.664036,I,Above,Flat,0,5701,,54.97828011,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 24198,NJBF000057166,204 N LANCASTER AVE,Margate City,NJ,39.33006393,-74.50776207,RES1,3001,,17,NE,1950,1950,3101,1,1,1014.458551,1014.458551,3505,NO,15.27,22.92,3,2.34,6106,113.305896,123.147242,132.844513,139.406929,I,Above,Gable,0,5701,,19.09286699,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24199,NJBF000056342,8103 ATLANTIC AVE,Margate City,NJ,39.32825358,-74.4994168,RES1,3001,,20,NE,2009,2009,3102,3,1,1852.352159,1852.352159,3505,NO,42.76,50.59,3,1.31,6106,113.515414,123.315312,133.018487,139.60118,I,Above,Flat,0,5701,,46.67187041,0,0,,,,1,1,,0.03,nav,1,2009,3,, 24200,NJBF000055237,,Margate City,NJ,39.32554004,-74.51804718,COM8,3001,,NaN,ME,1952,0,3401,2,1,2761.871443,2761.871443,3502,NO,39.12,51.99,5,14.17,6102,113.146839,123.017677,132.706989,139.256603,I,Above,Flat,0,5701,,45.55548786,0,0,,,,1,1,,0.03,nav,1,1952,2,, 24201,NJBF000055309,,Margate City,NJ,39.3257365,-74.517623,COM8,3001,,NaN,ME,1969,0,3401,2,1,634.114526,634.114526,3502,NO,36.78,50.35,5,14.58,6102,113.153176,123.022879,132.712502,139.262698,I,Above,Flat,0,5701,,43.56564309,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24202,NJBF000057030,7807 ATLANTIC AVE,Margate City,NJ,39.32976446,-74.49635026,COM1,3001,,NaN,ME,1973,1930,3401,2,1,1820.427116,1820.427116,3507,NO,34.87,40.72,1,2.43,6106,113.56122,123.352543,133.058808,139.643867,I,Above,Hip,0,NaN,,37.793544,0,0,,,,1,1,,0.03,nav,1,1973,2,, 24203,NJBF000059518,20 N FREDERICKSBURG AVE,Margate City,NJ,39.33439033,-74.49402294,RES1,3001,,19,NE,2011,2011,3102,2,1,1400.533112,1400.533112,3505,NO,33.67,41.63,3,7.55,6106,113.547288,123.341791,133.051244,139.626168,I,Above,Gable,0,5701,,37.6528668,0,0,,,,1,1,,0.03,nav,1,2011,2,, 24204,NJBF000059465,18 N FREDERICKSBURG AVE,Margate City,NJ,39.33429893,-74.49394373,RES1,3001,,18,NE,1930,1930,3102,2,1,1380.037388,1380.037388,3505,NO,38.92,45.81,3,6.58,6106,113.550299,123.344213,133.053723,139.629098,I,Above,Gable,0,5701,,42.36303933,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24205,NJBF000058846,8009 MONMOUTH AVE,Margate City,NJ,39.333049,-74.502162,RES1,3001,,18,NE,1953,1953,3102,2,1,1270.5568,1270.5568,3505,NO,32.84,46.09,3,2.63,6106,113.386583,123.212519,132.914704,139.480348,I,Above,Hip,0,5701,,39.46482551,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 24206,NJBF000061580,420 N CLERMONT AVE,Margate City,NJ,39.33790007,-74.50206351,RES1,3001,,17,NE,1959,1959,3102,1,1,1591.232478,1591.232478,3505,NO,14.42,25.62,3,-1.49,6106,113.320884,123.159753,132.862623,139.412221,I,Above,Hip,0,5701,,20.01590376,0,0,,,,1,1,,0.03,nav,1,1959,1,, 24207,NJBF000054345,9201 VENTNOR AVE,Margate City,NJ,39.32311791,-74.51316664,COM4,3001,,NaN,ME,1969,0,3401,1,1,5512.575635,5512.575635,3507,NO,16.32,23.81,1,0.86,6106,113.289524,123.131354,132.822504,139.386897,I,Above,Flat,0,NaN,,20.06397652,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24208,NJBF000057936,401 N NASSAU AVE,Margate City,NJ,39.33139896,-74.51037562,RES1,3001,,17,NE,1950,1950,3102,3,1,2337.21863,2337.21863,3505,NO,52.91,64.5,3,7.38,6106,113.229132,123.085921,132.781707,139.335387,I,Above,Gable,0,5701,,58.70359327,0,0,,,,1,1,,0.03,nav,1,1950,3,, 24209,NJBF000055549,13 N RUMSON AVE,Margate City,NJ,39.32638238,-74.5093411,RES1,3001,,22,NE,2015,2015,3102,3,1,1631.412728,1631.412728,3505,NO,46.25,60.75,3,8.16,6106,113.324834,123.161313,132.85632,139.423155,I,Above,Gable,0,5701,,53.49846141,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 24210,NJBF000061632,27 BAYSIDE COURT,Margate City,NJ,39.33798183,-74.51106298,RES1,3001,,19,NE,1988,1988,3102,2,1,1734.206344,1734.206344,3505,NO,41.47,46.66,3,5.42,6106,113.120516,122.999434,132.695576,139.228432,I,Above,Flat,0,5701,,44.06081947,0,0,,,,1,1,,0.03,nav,1,1988,2,, 24211,NJBF000058725,109 N FRONTENAC AVE,Margate City,NJ,39.33281816,-74.50080706,RES1,3001,,17,NE,1955,1955,3102,2,1,1804.481909,1804.481909,3505,NO,23.88,34.85,3,1.8,6106,113.419728,123.239124,132.942362,139.511192,I,Above,Gable,0,5701,,29.36756753,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, 24212,NJBF000059348,107B N CLERMONT AVE,Margate City,NJ,39.33407045,-74.49787011,RES1,3001,,18,NE,1967,1967,3103,2,1,1709.321019,1709.321019,3505,NO,32.46,46.24,3,2.02,6110,113.466887,123.277102,132.983054,139.553114,I,Above,Hip,0,5701,,39.35161277,0,1.1,,,,1,1,,0.35,nav,1,1967,2,, 24213,NJBF000062032,7 HARBOUR LANE,Margate City,NJ,39.33867526,-74.50911587,RES1,3001,,19,NE,1983,1983,3102,3,1,1846.986109,1846.986109,3505,NO,49.4,64.26,3,-0.87,6106,113.153982,123.026106,132.723613,139.257934,I,Above,Hip,0,5701,,56.82776329,0,0,,,,1,1,,0.03,nav,1,1983,3,, 24214,NJBF000055916,8100 BEACH SENIOR BLDG.,Margate City,NJ,39.32727564,-74.49899751,COM8,3001,,NaN,ME,1969,0,3401,2,1,4389.959222,4389.959222,3507,NO,24.34,35.77,1,2.23,6106,113.538705,123.333814,133.037003,139.622264,I,Above,Hip,0,NaN,,30.05616406,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24215,NJBF000058244,13 S ARGYLE AVE,Margate City,NJ,39.33196453,-74.49305985,RES1,3001,,19,NE,1920,1920,3102,2,1,1554.478553,1554.478553,3505,NO,36.1,44.06,3,7.4,6106,113.602469,123.386101,133.095931,139.680665,I,Above,Hip,0,5701,,40.0818778,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 24216,NJBF000054792,,Margate City,NJ,39.32432374,-74.5162758,RES1,3001,,NaN,NE,1987,0,3102,2,1,707.0628011,707.0628011,3507,NO,28.36,35.19,1,-0.21,6106,113.203664,123.0628,132.752614,139.308402,I,Above,Gable,0,5701,,31.77729404,0,0,,,,1,1,,0.03,nav,1,1987,2,, 24217,NJBF000054856,,Margate City,NJ,39.32448666,-74.5164174,RES1,3001,,NaN,NE,1969,0,3109,2,1,829.7201483,829.7201483,3505,NO,46.17,55.79,3,8.43,6106,113.198151,123.058446,132.748248,139.303439,I,Above,Hip,0,5701,,50.97781292,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24218,NJBF000054815,9304 MONMOUTH AVE REAR,Margate City,NJ,39.32439613,-74.51624032,RES1,3001,,17,NE,1930,1930,3101,1,1,588.6884763,588.6884763,3505,NO,17.31,28.18,3,0.5,6106,113.203373,123.062605,132.75247,139.30821,I,Above,Gable,0,5701,,22.74743325,0,0,,,,1,1,,0.03,nav,1,1930,1,, 24219,NJBF000060669,6 E GILMAR CIRCLE,Margate City,NJ,39.33637056,-74.50646575,RES1,3001,,17,NE,1965,1965,3101,1,1,1759.489717,1759.489717,3505,NO,23.13,34.78,3,4.56,6110,113.244776,123.098899,132.79822,139.345367,I,Above,Gable,0,5701,,28.95356982,0,0,,,,1,1,,0.35,nav,1,1965,1,, 24220,NJBF000054123,18 N ADAMS AVE,Margate City,NJ,39.32245871,-74.51569814,RES3C,3001,,47,ME,2004,2004,3301,2,2,2394.077031,2394.077031,3505,NO,34.23,40.23,3,-0.63,6106,113.24423,123.094447,132.78375,139.343855,I,Above,Hip,0,NaN,,37.22769905,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 24221,NJBF000061778,426 N CLERMONT AVE,Margate City,NJ,39.33824136,-74.50236262,RES1,3001,,17,NE,1959,1959,3102,2,1,1543.685198,1543.685198,3505,NO,20.62,34.63,3,-1.1,6106,113.309553,123.150632,132.853276,139.40112,I,Above,Hip,0,5701,,27.62370988,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 24222,NJBF000057631,112 N HANOVER AVE,Margate City,NJ,39.33091293,-74.50409537,RES1,3001,,17,NE,1950,1950,3102,2,1,1378.352209,1378.352209,3507,NO,24.01,37.94,1,-0.08,6106,113.374383,123.202435,132.902636,139.470376,I,Above,Hip,0,5701,,30.97497938,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24223,NJBF000054143,24 N ADAMS AVE.,Margate City,NJ,39.32252572,-74.51591608,RES3C,3001,,18,ME,1918,1918,3301,1,1,1180.702958,1180.702958,3505,NO,17.63,27.3,3,1.94,6106,113.238474,123.089843,132.77905,139.338588,I,Above,Gable,0,NaN,,22.46562896,0,0,,,,1,1,,0.03,nav,1,1918,1,, 24224,NJBF000054172,24 N ADAMS AVE.,Margate City,NJ,39.32261668,-74.51573747,RES3C,3001,,18,ME,1918,1918,3301,2,1,1024.56009,1024.56009,3505,NO,28.66,42.72,3,-2.54,6106,113.241005,123.091939,132.781295,139.341072,I,Above,Gable,0,NaN,,35.68897424,0,0,,,,1,1,,0.03,nav,1,1918,2,, 24225,NJBF000056842,209 N OSBORNE AVE,Margate City,NJ,39.32937342,-74.50939419,RES1,3001,,17,NE,1949,1949,3101,1,1,827.1848836,827.1848836,3505,NO,17.63,31.82,3,0.76,6106,113.280018,123.126278,132.822221,139.382834,I,Above,Gable,0,5701,,24.7253873,0,0,,,,1,1,,0.03,nav,1,1949,1,, 24226,NJBF000058659,7503 VENTNOR AVE,Margate City,NJ,39.33269516,-74.49405367,RES1,3001,,18,NE,1925,1925,3102,2,1,1735.113587,1735.113587,3505,NO,19.07,28.19,3,-2.55,6106,113.570314,123.360257,133.069341,139.650149,I,Above,Flat,0,5701,,23.62864194,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24227,NJBF000055609,12 S LANCASTER AVE,Margate City,NJ,39.32655036,-74.50447709,RES1,3001,,22,NE,2014,2014,3102,3,1,2098.465326,2098.465326,3505,NO,55.65,67.95,3,3.6,6106,113.429005,123.245226,132.943795,139.520038,I,Above,Flat,0,5701,,61.80093309,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 24228,NJBF000054189,,Margate City,NJ,39.32267661,-74.5152972,RES3C,3001,,NaN,ME,1969,0,3301,1,1,1186.005905,1186.005905,3501,NO,12.14,21.31,7,-3.63,6106,113.24969,123.098981,132.788625,139.349241,I,Above,Flat,0,NaN,,16.72554018,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24229,NJBF000053428,9506 PACIFIC AVE,Margate City,NJ,39.31988914,-74.51458443,RES1,3001,,21,NE,1910,2018,3102,3,1,1460.830357,1460.830357,3507,NO,34.35,41.79,1,1.2,6106,113.307241,123.143709,132.832341,139.398333,I,Above,Gable,0,5701,,38.06700735,0,0,,,,1,1,,0.03,nav,1,1910,3,, 24230,NJBF000053441,9500 PACIFIC AVE,Margate City,NJ,39.31995867,-74.51448553,RES1,3001,,17,NE,1920,1920,3102,2,1,717.9791028,717.9791028,3507,NO,25.99,37.37,1,-0.52,6106,113.308311,123.14462,132.833351,139.39945,I,Above,Gable,0,5701,,31.67865288,0,0,,,,1,1,,0.03,nav,1,1920,2,, 24231,NJBF000053334,2C S COOLIDGE AVE,Margate City,NJ,39.31954315,-74.51804293,RES1,3001,,22,NE,2001,2001,3102,2,1,1201.980716,1201.980716,3507,NO,33.37,42.57,1,-0.02,6106,113.237409,123.087014,132.773439,139.332816,I,Above,Gable,0,5701,,37.97014181,0,0,,,,1,1,,0.03,nav,1,2001,2,, 24232,NJBF000062891,613 N DELAVAN AVE,Margate City,NJ,39.34044856,-74.50480934,RES1,3001,,18,NE,1964,1964,3102,2,1,1497.398529,1497.398529,3505,NO,21.97,33.56,3,-1.34,6106,113.224987,123.082562,132.78328,139.31878,I,Above,Gable,0,5701,,27.76145305,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 24233,NJBF000054988,109 S NASSAU AVE,Margate City,NJ,39.3248196,-74.50411345,RES1,3001,,NaN,NE,1961,0,3102,2,1,1751.060529,1751.060529,3505,NO,28.97,40.49,3,-2.85,6106,113.462267,123.271381,132.969547,139.549221,I,Above,Hip,0,5701,,34.73299709,0,0,,,,1,1,,0.03,nav,1,1961,2,, 24234,NJBF000055062,105 S NASSAU AVE,Margate City,NJ,39.32502333,-74.50432593,RES1,3001,,20,NE,1994,1994,3102,3,1,1599.156206,1599.156206,3505,NO,45.85,57.33,3,0.52,6106,113.454627,123.265304,132.963392,139.542373,I,Above,Hip,0,5701,,51.58688239,0,0,,,,1,1,,0.03,nav,1,1994,3,, 24235,NJBF000056639,11 N JASPER AVE,Margate City,NJ,39.32894253,-74.50334159,RES1,3001,,17,NE,1925,1925,3102,2,1,1328.588949,1328.588949,3505,NO,30.78,43.35,3,-2.39,6106,113.419242,123.238076,132.938316,139.51213,I,Above,Flat,0,5701,,37.06243789,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24236,NJBF000056902,208 N NASSAU AVE,Margate City,NJ,39.32949696,-74.509165,RES1,3001,,17,NE,1973,1973,3101,1,1,1284.318642,1284.318642,3505,NO,25.14,35.19,3,5.84,6106,113.283252,123.12891,132.825045,139.385858,I,Above,Gable,0,5701,,30.16620577,0,0,,,,1,1,,0.03,nav,1,1973,1,, 24237,NJBF000057450,,Margate City,NJ,39.33059444,-74.50771023,RES1,3001,,NaN,NE,1969,0,3101,1,1,1631.321939,1631.321939,3505,NO,11.8,17.72,3,-1.86,6106,113.299399,123.142145,132.839589,139.400843,I,Above,Gable,0,5701,,14.75970241,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24238,NJBF000059780,22 E COLMAR CIRCLE,Margate City,NJ,39.33483479,-74.50502962,RES1,3001,,17,NE,1955,1955,3101,1,1,1281.76168,1281.76168,3505,NO,19.2,32.27,3,5.17,6106,113.298081,123.141608,132.841841,139.396652,I,Above,Flat,0,5701,,25.73833185,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 24239,NJBF000058322,8503 FREMONT AVE,Margate City,NJ,39.33209247,-74.50914,RES1,3001,,17,NE,1962,1962,3102,3,1,1463.933224,1463.933224,3505,NO,62.75,69.54,3,7.8,6106,113.246392,123.099896,132.796674,139.351159,I,Above,Hip,0,5701,,66.14646358,0,0,,,,1,1,,0.03,nav,1,1962,3,, 24240,NJBF000058390,403 N LANCASTER AVE,Margate City,NJ,39.33223318,-74.50927765,RES1,3001,,19,NE,1960,1960,3102,2,1,1981.163314,1981.163314,3505,NO,28.95,39.86,3,-0.25,6106,113.241331,123.09586,132.792571,139.346394,I,Above,Hip,0,5701,,34.40927219,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 24241,NJBF000057805,11 S CLARENDON AVE,Margate City,NJ,39.33119179,-74.49466318,RES1,3001,,21,NE,1930,1930,3102,3,1,1287.801267,1287.801267,3505,NO,58.77,70.84,3,2.92,6106,113.578075,123.366352,133.074517,139.658883,I,Above,Gable,0,5701,,64.80526698,0,0,,,,1,1,,0.03,nav,1,1930,3,, 24242,NJBF000057775,11 S CLARENDON AVE,Margate City,NJ,39.331144,-74.49453056,RES1,3001,,21,NE,1930,1930,3102,3,1,657.2425487,657.2425487,3505,NO,56.35,64.45,3,6.33,6106,113.58166,123.369234,133.077506,139.662231,I,Above,Gable,0,5701,,60.39845437,0,0,,,,1,1,,0.03,nav,1,1930,3,, 24243,NJBF000056278,120 N PEMBROKE AVE,Margate City,NJ,39.3281159,-74.50963928,RES1,3001,,19,NE,2001,2001,3102,3,1,2003.687087,2003.687087,3505,NO,41.58,47.15,3,7.36,6106,113.292924,123.136268,132.831667,139.394492,I,Above,Hip,0,5701,,44.36934745,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 24244,NJBF000060901,8203 MARSHALL AVE,Margate City,NJ,39.33672092,-74.5091798,RES1,3001,,17,NE,1973,1973,3101,2,1,1565.725747,1565.725747,3505,NO,37.61,51.06,3,3.86,6106,113.179847,123.046926,132.744308,139.285054,I,Above,Gable,0,5701,,44.3386794,0,0,,,,1,1,,0.03,nav,1,1973,2,, 24245,NJBF000060944,8201 MARSHALL AVE,Margate City,NJ,39.33680129,-74.5090294,RES1,3001,,17,NE,1982,1982,3101,2,1,1357.544445,1357.544445,3505,NO,38.62,43.92,3,1.57,6106,113.182065,123.048698,132.746192,139.286976,I,Above,Hip,0,5701,,41.26871717,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 24246,NJBF000059910,316 N GLADSTONE AVE,Margate City,NJ,39.33506429,-74.50422524,RES1,3001,,17,NE,1959,1959,3101,2,1,1793.612985,1793.612985,3505,NO,41.94,52.85,3,4.76,6106,113.312639,123.153285,132.854168,139.409769,I,Above,Gable,0,5701,,47.39546181,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 24247,NJBF000057347,108 S ARGYLE AVE,Margate City,NJ,39.33040664,-74.49225706,RES1,3001,,17,NE,1950,1950,3102,2,1,1710.742222,1710.742222,3505,NO,43.33,53.05,3,7.05,6106,113.64212,123.417871,133.128035,139.718593,I,Above,Gable,0,5701,,48.1913662,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 24248,NJBF000060386,209 N CLARENDON AVE,Margate City,NJ,39.33588804,-74.49885279,RES1,3001,,18,NE,2011,2011,3103,3,1,1343.701611,1343.701611,3505,NO,47.75,58.72,3,-1.85,6106,113.419799,123.23926,132.944637,139.506769,I,Above,Hip,0,5701,,53.23805456,0,0,,,,1,1,,0.03,nav,1,2011,3,, 24249,NJBF000060310,207 N CLARENDON AVE,Margate City,NJ,39.33575277,-74.49877518,RES1,3001,,17,NE,1948,1948,3103,1,1,777.2106088,777.2106088,3505,NO,10.38,18.29,3,-0.25,6106,113.423401,123.242158,132.947584,139.510328,I,Above,Hip,0,5701,,14.33903526,0,1.2,,,,1,1,,0.03,nav,1,1948,1,, 24250,NJBF000055297,107 S KENYON AVE,Margate City,NJ,39.32570956,-74.50263508,RES1,3001,,20,NE,1948,1948,3102,3,1,1312.779871,1312.779871,3505,NO,43.99,53.91,3,-2.71,6106,113.481636,123.287326,132.98699,139.568101,I,Above,Flat,0,5701,,48.95013088,0,1.1,,,,1,1,,0.03,nav,1,1948,3,, 24251,NJBF000058263,34 N EXETER AVE,Margate City,NJ,39.3320035,-74.4995325,RES1,3001,,17,NE,1936,1936,3102,2,1,786.923256,786.923256,3505,NO,34.91,40.31,3,-0.61,6106,113.459342,123.270882,132.975002,139.548508,I,Above,Hip,0,5701,,37.61012401,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 24252,NJBF000055443,111 PLYMOUTH RD,Margate City,NJ,39.32611712,-74.50075352,RES1,3001,,20,NE,1984,1984,3102,2,1,2009.827825,2009.827825,3505,NO,29.73,43.41,3,7.6,6106,113.516955,123.315928,133.017245,139.601192,I,Above,Flat,0,5701,,36.57485152,0,0,,,,1,1,,0.03,nav,1,1984,2,, 24253,NJBF000062394,508 N CLERMONT AVE,Margate City,NJ,39.33935395,-74.50346274,RES1,3001,,17,NE,1966,1966,3102,1,1,1970.3629,1970.3629,3505,NO,21.04,28.18,3,4.86,6106,113.269852,123.118671,132.82046,139.362329,I,Above,Gable,0,5701,,24.61126618,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 24254,NJBF000058641,210 N HAVERFORD AVE,Margate City,NJ,39.33265728,-74.50410321,RES1,3001,,18,NE,2003,2003,3102,2,1,1246.406743,1246.406743,3505,NO,37.27,51.24,3,0.82,6106,113.349341,123.182577,132.88316,139.446238,I,Above,Hip,0,5701,,44.25575466,0,0,,,,1,1,,0.03,nav,1,2003,2,, 24255,NJBF000057344,24 N HAVERFORD AVE,Margate City,NJ,39.33040535,-74.50198197,RES1,3001,,17,NE,1920,1920,3102,2,1,1285.49618,1285.49618,3505,NO,39.31,51.68,3,4.36,6106,113.42816,123.245567,132.947292,139.520393,I,Above,Gable,0,5701,,45.4948494,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 24256,NJBF000059989,21 N COLMAR CIRCLE,Margate City,NJ,39.33520582,-74.50519108,RES1,3001,,18,NE,1953,1953,3101,1,1,1180.287831,1180.287831,3505,NO,20.72,34.29,3,5.31,6106,113.289304,123.134581,132.834739,139.388073,I,Above,Gable,0,5701,,27.5036599,0,0,,,,1,1,,0.03,nav,1,1953,1,, 24257,NJBF000056934,25 N JASPER AVE,Margate City,NJ,39.32957376,-74.50391588,RES1,3001,,17,NE,1950,1950,3101,1,1,1261.877344,1261.877344,3505,NO,15.27,25.93,3,-2.23,6106,113.397536,123.22077,132.920753,139.492047,I,Above,Gable,0,5701,,20.59726536,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24258,NJBF000056702,7 N IROQUOIS AVE,Margate City,NJ,39.32907599,-74.50262453,RES1,3001,,17,NE,1940,1940,3102,2,1,1337.652353,1337.652353,3505,NO,27.34,33.1,3,5.37,6106,113.433087,123.249246,132.950085,139.525005,I,Above,Flat,0,5701,,30.2177875,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 24259,NJBF000056747,9 N IROQUOIS AVE,Margate City,NJ,39.32916532,-74.50271633,RES1,3001,,17,NE,1930,1930,3102,2,1,1388.335095,1388.335095,3505,NO,34.09,46.24,3,-2.35,6106,113.429805,123.246627,132.947422,139.521972,I,Above,Gable,0,5701,,40.16507316,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24260,NJBF000057196,111 N JEROME AVE,Margate City,NJ,39.33013158,-74.50532965,RES1,3001,,17,NE,1950,1950,3102,2,1,980.9296261,980.9296261,3507,NO,28.7,35.78,1,2.91,6106,113.358409,123.189445,132.888509,139.455704,I,Above,Gable,0,5701,,32.24309518,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24261,NJBF000058912,13 N BRUNSWICK AVE,Margate City,NJ,39.33316514,-74.49547246,RES1,3001,,18,NE,1930,1930,3102,2,1,1134.375209,1134.375209,3505,NO,39.34,46.65,3,1.31,6106,113.532465,123.329812,133.037709,139.614702,I,Above,Hip,0,5701,,42.99747345,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24262,NJBF000059710,,Margate City,NJ,39.33472102,-74.49673366,RES1,3001,,NaN,NE,1969,0,3102,2,1,1257.244894,1257.244894,3505,NO,31.51,41.5,3,6.06,6106,113.482853,123.28995,132.997008,139.566662,I,Above,Gable,0,5701,,36.50638627,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24263,NJBF000059212,101 N CLERMONT AVE,Margate City,NJ,39.3337835,-74.49762716,RES1,3001,,17,NE,1947,1947,3103,2,1,761.3082123,761.3082123,3505,NO,33.75,42.39,3,2.38,6106,113.476258,123.284625,132.990738,139.56215,I,Above,Gable,0,5701,,38.07041071,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 24264,NJBF000054771,107 S PEMBROKE AVE,Margate City,NJ,39.32426776,-74.50537976,RES1,3001,,20,NE,1925,1925,3102,2,1,2464.4283,2464.4283,3505,NO,35.23,46.21,3,3.23,6106,113.442638,123.255333,132.952315,139.530397,I,Above,Hip,0,5701,,40.71587307,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 24265,NJBF000057473,22 N GRANVILLE AVE,Margate City,NJ,39.33063106,-74.50136403,RES1,3001,,17,NE,1949,1949,3102,2,1,1266.946312,1266.946312,3505,NO,36.59,50.91,3,-0.35,6106,113.438532,123.253948,132.956228,139.529953,I,Above,Hip,0,5701,,43.74883915,0,0,,,,1,1,,0.03,nav,1,1949,2,, 24266,NJBF000053916,18 S DECATUR AVE,Margate City,NJ,39.32175547,-74.51249326,RES3E,3001,,21,ME,2014,2014,3301,3,1,2021.908324,2021.908324,3507,NO,48.16,55.39,1,-0.8,6106,113.324623,123.158904,132.849823,139.417557,I,Above,Gable,0,5701,,51.77406534,0,0,,,,1,1,,0.03,nav,1,2014,3,, 24267,NJBF000061216,39 BAYSIDE COURT,Margate City,NJ,39.33724845,-74.51162105,RES1,3001,,19,NE,1999,1999,3102,3,1,2404.442861,2404.442861,3505,NO,37.8,50.87,3,0.52,6106,113.118447,122.997821,132.693561,139.227686,I,Above,Flat,0,5701,,44.3337835,0,1.1,,,,1,1,,0.03,nav,1,1999,3,, 24268,NJBF000054026,10 S DECATUR AVE,Margate City,NJ,39.32214266,-74.51273206,RES1,3001,,47,NE,1962,1961,3102,2,2,2478.042562,2478.042562,3505,NO,37.14,48.37,3,2.02,6106,113.313598,123.150231,132.84119,139.407906,I,Above,Flat,0,5701,,42.75211752,0,0,,,,1,1,,0.03,nav,1,1962,2,, 24269,NJBF000058702,105 N EXETER AVE,Margate City,NJ,39.33277855,-74.49977339,RES1,3001,,17,NE,1955,1955,3103,1,1,1517.021538,1517.021538,3505,NO,22.48,34.07,3,5.57,6106,113.443077,123.257884,132.961971,139.532795,I,Above,Gable,0,5701,,28.27182558,0,1.2,,,,1,1,,0.03,nav,1,1955,1,, 24270,NJBF000059403,11 CIRCLE DRIVE,Margate City,NJ,39.3341875,-74.495184,RES1,3001,,18,NE,1925,1925,3102,2,1,1207.194039,1207.194039,3505,NO,23.96,35.32,3,0.26,6106,113.524509,123.323452,133.031807,139.605751,I,Above,Gable,0,5701,,29.64058888,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24271,NJBF000059334,12 CIRCLE DRIVE,Margate City,NJ,39.33403261,-74.4952173,RES1,3001,,18,NE,1927,1927,3102,2,1,1417.230744,1417.230744,3505,NO,27.16,40.86,3,-2.97,6106,113.525933,123.324594,133.032891,139.607329,I,Above,Hip,0,5701,,34.01011582,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 24272,NJBF000060991,73 BAYSIDE COURT,Margate City,NJ,39.33686536,-74.50933762,RES1,3001,,19,NE,1997,1997,3102,2,1,1630.763261,1630.763261,3505,NO,36.06,47.05,3,7.27,6106,113.174332,123.042511,132.739791,139.279757,I,Above,Hip,0,5701,,41.55818246,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 24273,NJBF000054072,1 S WASHINGTON AVE,Margate City,NJ,39.32229604,-74.51347312,GOV1,3001,,NaN,E,1903,1903,3401,1,1,9724.784205,9724.784205,3507,NO,15.67,25.23,1,0.35,6106,113.295155,123.135438,132.826007,139.390996,I,Above,Flat,0,NaN,,20.4504051,0,0,,,,1,1,,0.03,nav,1,1903,1,, 24274,NJBF000053991,1 S WASHINGTON AVE,Margate City,NJ,39.32203757,-74.5132626,RES1,3001,,NaN,NE,1903,1903,3102,2,1,1560.026124,1560.026124,3507,NO,36.79,41.86,1,-0.78,6106,113.3036,123.142103,132.832677,139.398465,I,Above,Flat,0,5701,,39.32648328,0,0,,,,1,1,,0.03,nav,1,1903,2,, 24275,NJBF000058854,425 N KENYON AVE,Margate City,NJ,39.33306743,-74.50917518,RES1,3001,,17,NE,1925,1925,3102,2,1,926.8128568,926.8128568,3505,NO,32.5,44.14,3,7.01,6106,113.231674,123.08824,132.785178,139.336948,I,Above,Flat,0,5701,,38.31931671,0,0,,,,1,1,,0.03,nav,1,1925,2,, 24276,NJBF000058214,4 N CLERMONT AVE,Margate City,NJ,39.33190849,-74.4963968,RES1,3001,,18,NE,1939,1939,3102,2,1,1353.923519,1353.923519,3505,NO,37.66,47.9,3,1.07,6106,113.529775,123.327539,133.034333,139.613677,I,Above,Flat,0,5701,,42.78325449,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 24277,NJBF000059712,7505 WINCHESTER AVE,Margate City,NJ,39.33472192,-74.4960181,RES1,3001,,17,NE,1950,1950,3102,2,1,1497.826054,1497.826054,3505,NO,31.11,36.4,3,-1,6106,113.498642,123.302647,133.010343,139.581099,I,Above,Hip,0,5701,,33.75628354,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 24278,NJBF000058170,2 N CLERMONT AVE,Margate City,NJ,39.33182541,-74.49632897,RES1,3001,,18,NE,1960,1960,3102,1,1,1506.481598,1506.481598,3505,NO,23.96,30.66,3,7.79,6106,113.532445,123.329679,133.036514,139.616217,I,Above,Flat,0,5701,,27.31148289,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24279,NJBF000059817,110 N BARCLAY AVE,Margate City,NJ,39.33489823,-74.49692413,RES1,3001,,21,NE,2015,2015,3102,2,1,1373.689166,1373.689166,3505,NO,20.98,34.77,3,-2.65,6106,113.47619,123.284592,132.99151,139.560238,I,Above,Hip,0,5701,,27.87256398,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 24280,NJBF000057201,3 S FRANKLIN AVE,Margate City,NJ,39.33014051,-74.49796892,COM1,3001,,NaN,ME,1969,0,3401,2,1,2056.535541,2056.535541,3507,NO,23.63,28.8,1,0.96,6106,113.520234,123.319602,133.024572,139.605816,I,Above,Flat,0,NaN,,26.21715018,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24281,NJBF000060325,119 N BELMONT AVE,Margate City,NJ,39.33577767,-74.49656703,RES1,3001,,20,NE,2003,2003,3102,2,1,1230.229039,1230.229039,3505,NO,42.57,48.71,3,5.03,6106,113.471826,123.281066,132.988429,139.55447,I,Above,Hip,0,5701,,45.64203059,0,0,,,,1,1,,0.03,nav,1,2003,2,, 24282,NJBF000056336,207 N RUMSON AVE,Margate City,NJ,39.32824434,-74.51113605,RES1,3001,,17,NE,1952,1952,3101,1,1,1196.467161,1196.467161,3505,NO,10.41,18.26,3,-2.49,6106,113.258204,123.108404,132.802841,139.362234,I,Above,Gable,0,5701,,14.33285819,0,0,,,,1,1,,0.03,nav,1,1952,1,, 24283,NJBF000056555,9 S HAVERFORD AVE,Margate City,NJ,39.32874452,-74.49996583,RES1,3001,,18,NE,1966,1966,3102,2,1,1154.693156,1154.693156,3505,NO,36.96,49.08,3,8.27,6106,113.496292,123.300035,133.002913,139.583594,I,Above,Hip,0,5701,,43.02242322,0,0,,,,1,1,,0.03,nav,1,1966,2,, 24284,NJBF000056517,11 S HAVERFORD AVE,Margate City,NJ,39.32865824,-74.49987614,RES1,3001,,18,NE,1930,1930,3102,2,1,1329.732979,1329.732979,3505,NO,29.19,44.12,3,-0.84,6106,113.49952,123.302613,133.005538,139.586567,I,Above,Hip,0,5701,,36.65494937,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24285,NJBF000060623,19 SEASIDE COURT,Margate City,NJ,39.33628991,-74.5087907,RES1,3001,,19,NE,1997,1997,3101,2,1,1458.186136,1458.186136,3505,NO,35.41,48.04,3,0.35,6106,113.194501,123.058659,132.756283,139.299188,I,Above,Gable,0,5701,,41.72526887,0,1.1,,,,1,1,,0.03,nav,1,1997,2,, 24286,NJBF000060332,106 N FREDERICKSBURG AVE,Margate City,NJ,39.33578699,-74.49527523,RES1,3001,,17,NE,1949,1949,3102,1,1,1692.435632,1692.435632,3505,NO,13.41,24.42,3,2.4,6106,113.500234,123.303908,133.012435,139.580289,I,Above,Flat,0,5701,,18.91236831,0,0,,,,1,1,,0.03,nav,1,1949,1,, 24287,NJBF000056709,12 S FRONTENAC AVE,Margate City,NJ,39.32910485,-74.49868752,RES1,3001,,17,NE,1939,1939,3102,2,1,1150.557269,1150.557269,3505,NO,38.49,50.19,3,6.79,6106,113.519221,123.31858,133.022635,139.604925,I,Above,Hip,0,5701,,44.33991791,0,0,,,,1,1,,0.03,nav,1,1939,2,, 24288,NJBF000056351,,Margate City,NJ,39.32827689,-74.49588169,RES1,3001,,NaN,NE,1969,0,3102,2,1,1990.955467,1990.955467,3505,NO,36.14,41.7,3,3.19,6106,113.592747,123.377635,133.083844,139.67288,I,Above,Hip,0,5701,,38.9200034,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24289,NJBF000059088,2 CIRCLE DRIVE,Margate City,NJ,39.33351544,-74.49427184,RES1,3001,,18,NE,1930,1930,3102,2,1,1283.585071,1283.585071,3505,NO,20.16,28.09,3,-2.4,6106,113.554016,123.347181,133.056239,139.633939,I,Above,Hip,0,5701,,24.12713767,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24290,NJBF000059296,8220 FULTON AVE,Margate City,NJ,39.333957,-74.50800231,RES1,3001,,17,NE,1935,1935,3101,2,1,1310.772919,1310.772919,3505,NO,30.95,43.79,3,-0.98,6106,113.244881,123.098919,132.79683,139.348465,I,Above,Gable,0,5701,,37.3732642,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 24291,NJBF000061497,421 N DOUGLAS AVE,Margate City,NJ,39.33774667,-74.50295072,RES1,3001,,18,NE,1979,1979,3102,2,1,1996.823267,1996.823267,3505,NO,41.14,47.63,3,7.22,6110,113.303371,123.145737,132.847879,139.396569,I,Above,Gable,0,5701,,44.38392627,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 24292,NJBF000061565,423 N DOUGLAS AVE,Margate City,NJ,39.337868,-74.50308134,RES1,3001,,18,NE,1969,1969,3102,2,1,2025.209046,2025.209046,3505,NO,33.34,47.14,3,5.72,6106,113.298818,123.142076,132.844121,139.392152,I,Above,Gable,0,5701,,40.23987378,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 24293,NJBF000056778,10 S FRONTENAC AVE,Margate City,NJ,39.32923944,-74.49869175,RES1,3001,,20,NE,2006,2006,3102,2,1,1699.542114,1699.542114,3505,NO,35.17,40.51,3,-2.67,6106,113.517215,123.316993,133.021086,139.603078,I,Above,Hip,0,5701,,37.84125448,0,0,,,,1,1,,0.03,nav,1,2006,2,, 24294,NJBF000059120,218 N GLADSTONE AVE,Margate City,NJ,39.33359466,-74.50321128,RES1,3001,,17,NE,1952,1952,3101,1,1,2006.731604,2006.731604,3505,NO,17.75,23.42,3,0.89,6106,113.355725,123.187787,132.889239,139.451294,I,Above,Flat,0,5701,,20.58262325,0,1.2,,,,1,1,,0.03,nav,1,1952,1,, 24295,NJBF000056472,111 S EXETER AVE,Margate City,NJ,39.32854275,-74.49611203,RES1,3001,,20,NE,1984,1984,3102,2,1,1888.142865,1888.142865,3505,NO,45.34,53.44,3,6.39,6106,113.583886,123.370554,133.076648,139.664762,I,Above,Hip,0,5701,,49.38907596,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 24296,NJBF000056287,109 S FRONTENAC AVE,Margate City,NJ,39.32814336,-74.49727933,RES1,3001,,19,NE,1925,1925,3102,2,1,2105.576032,2105.576032,3505,NO,44.42,56.95,3,8.76,6106,113.563978,123.354412,133.059359,139.646162,I,Above,Flat,0,5701,,50.68674543,0,0,,,,1,1,,0.03,nav,1,1925,2,, 24297,NJBF000057618,106 S ANDOVER AVE,Margate City,NJ,39.33088626,-74.49191468,RES1,3001,,21,NE,2003,2003,3102,3,1,1224.141836,1224.141836,3505,NO,51.72,61.55,3,3.26,6106,113.642876,123.418552,133.129172,139.718985,I,Above,Hip,0,5701,,56.63662533,0,0,,,,1,1,,0.03,nav,1,2003,3,, 24298,NJBF000059869,109 N BARCLAY AVE,Margate City,NJ,39.33498233,-74.49653849,RES1,3001,,17,NE,1948,1948,3102,1,1,1202.17356,1202.17356,3505,NO,16.2,23.02,3,2.87,6106,113.48354,123.290501,132.997775,139.566797,I,Above,Hip,0,5701,,19.609283,0,0,,,,1,1,,0.03,nav,1,1948,1,, 24299,NJBF000057556,107 S ARGYLE AVE,Margate City,NJ,39.33077784,-74.49208369,RES1,3001,,20,NE,1925,1925,3102,3,1,3877.315995,3877.315995,3505,NO,36.76,45.03,3,3.16,6106,113.640682,123.416767,133.127199,139.717038,I,Above,Hip,0,5701,,40.89417322,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 24300,NJBF000057935,116 N HUNTINGTON AVE,Margate City,NJ,39.33139648,-74.50372295,RES1,3001,,17,NE,1955,1955,3101,1,1,1345.020858,1345.020858,3507,NO,19.47,31.92,1,1,6106,113.375671,123.203551,132.904155,139.471389,I,Above,Gable,0,5701,,25.69343223,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 24301,NJBF000058667,8015 MONMOUTH AVE,Margate City,NJ,39.33270532,-74.5027535,RES1,3001,,17,NE,1950,1950,3102,2,1,3155.296559,3155.296559,3505,NO,36.69,47.78,3,6.12,6106,113.378423,123.205933,132.90758,139.473109,I,Above,Hip,0,5701,,42.23193069,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24302,NJBF000059317,8216 FULTON AVE,Margate City,NJ,39.33399331,-74.50775446,RES1,3001,,17,NE,1938,1938,3101,2,1,3042.870288,3042.870288,3505,NO,27.05,40.89,3,-0.22,6106,113.249843,123.102898,132.800993,139.353023,I,Above,Gable,0,5701,,33.96811164,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 24303,NJBF000056830,102 S DOUGLAS AVE,Margate City,NJ,39.3293484,-74.49578658,RES1,3001,,17,NE,1925,1925,3102,2,1,1849.236513,1849.236513,3505,NO,34.83,44.69,3,7.83,6106,113.579529,123.367216,133.073852,139.660859,I,Above,Flat,0,5701,,39.75992551,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24304,NJBF000059883,103 N BELMONT AVE,Margate City,NJ,39.3350145,-74.495827,RES1,3001,,17,NE,1979,1979,3102,3,1,855.297787,855.297787,3505,NO,51.83,61.01,3,1.51,6106,113.498788,123.302764,133.010678,139.580659,I,Above,Gable,0,5701,,56.42294956,0,1.1,,,,1,1,,0.03,nav,1,1979,3,, 24305,NJBF000058802,207 N GRANVILLE AVE,Margate City,NJ,39.332961,-74.50309614,RES1,3001,,17,NE,1948,1948,3101,1,1,1447.952789,1447.952789,3505,NO,21.81,32.6,3,5.32,6106,113.367232,123.196972,132.898398,139.46254,I,Above,Hip,0,5701,,27.20120584,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 24306,NJBF000057189,212 N MANSFIELD AVE,Margate City,NJ,39.33010667,-74.508751,RES1,3001,,17,NE,1951,1951,3101,1,1,1111.04349,1111.04349,3505,NO,21.17,28.06,3,4.7,6106,113.283525,123.129286,132.825873,139.386137,I,Above,Gable,0,5701,,24.61246651,0,0,,,,1,1,,0.03,nav,1,1951,1,, 24307,NJBF000060829,32 W GILMAR CIRCLE,Margate City,NJ,39.33660289,-74.50801482,RES1,3001,,17,NE,1972,1972,3101,1,1,3152.602878,3152.602878,3505,NO,18.79,27.71,3,0.61,6106,113.207269,123.068869,132.767073,139.310488,I,Above,Hip,0,5701,,23.25186952,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 24308,NJBF000058559,2 WEST DRIVE,Margate City,NJ,39.33251294,-74.49498568,RES1,3001,,19,NE,1925,1925,3102,2,1,2097.870799,2097.870799,3505,NO,24,34.82,3,-0.62,6106,113.552335,123.345762,133.053956,139.633845,I,Above,Hip,0,5701,,29.40959637,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24309,NJBF000060519,413 N HUNTINGTON AVE,Margate City,NJ,39.3361295,-74.5075425,RES1,3001,,17,NE,1963,1963,3101,1,1,1297.494687,1297.494687,3505,NO,22.26,30.79,3,6.83,6110,113.224378,123.082574,132.78108,139.326952,I,Above,Gable,0,5701,,26.52474808,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 24310,NJBF000057282,7701 ATLANTIC AVE,Margate City,NJ,39.33028912,-74.49524609,RES3C,3001,,20,E,1982,1982,3303,4,1,6802.369973,6802.369973,3507,NO,72.01,79.88,1,-0.14,6106,113.578038,123.366187,133.073582,139.659329,I,Above,Flat,0,NaN,,75.945164,0,0,,,,1,1,,0.03,nav,1,1982,4,, 24311,NJBF000057505,7701 ATLANTIC AVE,Margate City,NJ,39.33068596,-74.49543066,RES3C,3001,,20,E,1982,1982,3303,3,1,9305.659312,9305.659312,3507,NO,52.45,63.93,1,1.42,6106,113.568335,123.358432,133.065772,139.65018,I,Above,Flat,0,NaN,,58.1865523,0,0,,,,1,1,,0.03,nav,1,1982,3,, 24312,NJBF000057489,7701 ATLANTIC AVE,Margate City,NJ,39.33065738,-74.49586537,RES3C,3001,,20,E,1982,1982,3303,4,1,8682.731129,8682.731129,3507,NO,75.67,89.95,1,2.38,6106,113.559195,123.351065,133.05801,139.641734,I,Above,Flat,0,NaN,,82.813568,0,0,,,,1,1,,0.03,nav,1,1982,4,, 24313,NJBF000057484,7701 ATLANTIC AVE,Margate City,NJ,39.33064812,-74.49639693,RES3C,3001,,20,E,1982,1982,3303,3,1,1295.382295,1295.382295,3507,NO,46.83,53.02,1,-0.04,6106,113.547615,123.341736,133.048209,139.631016,I,Above,Flat,0,NaN,,49.92542293,0,0,,,,1,1,,0.03,nav,1,1982,3,, 24314,NJBF000060455,411 N HUNTINGTON AVE,Margate City,NJ,39.33600273,-74.50743501,RES1,3001,,17,NE,1963,1963,3101,2,1,1455.157703,1455.157703,3505,NO,31.4,40.37,3,3.79,6110,113.228513,123.085885,132.784458,139.330943,I,Above,Gable,0,5701,,35.8812643,0,0,,,,1,1,,0.35,nav,1,1963,2,, 24315,NJBF000063546,7 BRUNSWICK COURT,Margate City,NJ,39.34201869,-74.50409578,RES1,3001,,19,NE,1987,1987,3102,2,1,1386.373844,1386.373844,3505,NO,38.11,47,3,2.72,6106,113.219404,123.077697,132.778912,139.309355,I,Above,Hip,0,5701,,42.55464099,0,0,,,,1,1,,0.03,nav,1,1987,2,, 24316,NJBF000059066,20 WEST DRIVE,Margate City,NJ,39.33348336,-74.49535507,RES1,3001,,18,NE,1926,1926,3102,2,1,1235.267092,1235.267092,3505,NO,31.58,36.68,3,5.84,6106,113.530585,123.328317,133.036384,139.612504,I,Above,Hip,0,5701,,34.13162566,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 24317,NJBF000056704,102 S ESSEX AVE,Margate City,NJ,39.32907969,-74.49631979,RES1,3001,,17,NE,1956,1956,3102,1,1,1968.421626,1968.421626,3505,NO,17.73,23.11,3,2.28,6106,113.571636,123.3608,133.066883,139.653523,I,Above,Hip,0,5701,,20.4215281,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 24318,NJBF000056649,104 S ESSEX AVE,Margate City,NJ,39.32896968,-74.49621405,RES1,3001,,18,NE,1966,1966,3102,2,1,1831.10286,1831.10286,3505,NO,31.25,43.9,3,5.15,6106,113.575538,123.36392,133.070062,139.657124,I,Above,Flat,0,5701,,37.57730942,0,0,,,,1,1,,0.03,nav,1,1966,2,, 24319,NJBF000063597,7600 BAYSHORE DR,Margate City,NJ,39.34213684,-74.50420584,RES1,3001,,19,NE,1981,1981,3102,3,1,2339.48879,2339.48879,3505,NO,42.04,49.18,3,-2.07,6106,113.215361,123.074431,132.775549,139.305353,I,Above,Hip,0,5701,,45.61021285,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 24320,NJBF000060279,204 N BARCLAY AVE,Margate City,NJ,39.33570432,-74.49802328,RES1,3001,,17,NE,1948,1948,3103,1,1,1466.067501,1466.067501,3505,NO,8.65,19.84,3,-2.19,6106,113.440695,123.256051,132.962122,139.526229,I,Above,Gable,0,5701,,14.24302632,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 24321,NJBF000059329,33 N BRUNSWICK AVE,Margate City,NJ,39.33402082,-74.49632422,RES1,3001,,18,NE,1940,1940,3102,3,1,1850.093378,1850.093378,3505,NO,36.94,43.84,3,-0.45,6106,113.501682,123.305081,133.012382,139.585127,I,Above,Hip,0,5701,,40.38899529,0,1.1,,,,1,1,,0.03,nav,1,1940,3,, 24322,NJBF000053710,14 N MONROE AVE,Margate City,NJ,39.3209874,-74.51812981,RES1,3001,,18,NE,2012,2012,3102,2,1,1086.767331,1086.767331,3507,NO,36.6,49.8,1,1.69,6106,113.213564,123.068751,132.755922,139.313066,I,Above,Gable,0,5701,,43.19965904,0,0,,,,1,1,,0.03,nav,1,2012,2,, 24323,NJBF000053711,25 N COOLIDGE AVE,Margate City,NJ,39.32098833,-74.51873575,RES1,3001,,45,NE,1923,1923,3102,2,2,1273.249842,1273.249842,3507,NO,29.39,34.67,1,-0.9,6106,113.200387,123.058105,132.744945,139.300783,I,Above,Gable,0,5701,,32.03037404,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 24324,NJBF000058607,8 N BRUNSWICK AVE,Margate City,NJ,39.3326015,-74.495485,RES1,3001,,21,NE,1969,2018,3102,2,1,1410.674429,1410.674429,3505,NO,25.14,35.9,3,-0.55,6106,113.540088,123.335908,133.043673,139.622458,I,Above,Gable,0,5701,,30.52260491,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24325,NJBF000054176,9412 WINCHESTER AVE,Margate City,NJ,39.32263506,-74.51632901,RES1,3001,,43,NE,2003,1921,3102,2,5,1054.91404,1054.91404,3507,NO,36.06,46.28,1,1.54,6106,113.22784,123.081329,132.770348,139.328833,I,Above,Hip,0,5701,,41.17196631,0,0,,,,1,1,,0.03,nav,1,2003,2,, 24326,NJBF000057439,11 N GLADSTONE AVE,Margate City,NJ,39.33057701,-74.49986625,RES1,3001,,17,NE,1915,1915,3102,2,1,1124.126368,1124.126368,3505,NO,22.12,34.34,3,-1.92,6106,113.472274,123.281079,132.984571,139.561249,I,Above,Hip,0,5701,,28.22993369,0,0,,,,1,1,,0.03,nav,1,1915,2,, 24327,NJBF000054931,108 S NASSAU AVE,Margate City,NJ,39.32468275,-74.50451862,RES1,3001,,19,NE,1935,1935,3103,3,1,2134.165066,2134.165066,3505,NO,39.27,52.12,3,-0.21,6106,113.455386,123.265781,132.963582,139.542694,I,Above,Gable,0,5701,,45.69834238,0,1.2,,,,1,1,,0.03,nav,1,1935,3,, 24328,NJBF000057781,22 S BARCLAY AVE,Margate City,NJ,39.33115187,-74.49364286,RES1,3001,,21,NE,2006,2006,3102,3,1,1532.66341,1532.66341,3505,NO,54.21,61.06,3,2.6,6106,113.601093,123.384896,133.093981,139.680183,I,Above,Hip,0,5701,,57.63833269,0,0,,,,1,1,,0.03,nav,1,2006,3,, 24329,NJBF000053814,9505 VENTNOR AVE,Margate City,NJ,39.32138346,-74.51627598,RES3C,3001,,21,ME,1954,1954,3301,1,1,6101.338349,6101.338349,3505,NO,24.26,38.63,3,6.89,6106,113.247866,123.096717,132.785146,139.345645,I,Above,Flat,0,NaN,,31.44727068,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24330,NJBF000055777,119 N THURLOW AVE,Margate City,NJ,39.32694679,-74.51173273,RES1,3001,,17,NE,1912,1912,3102,2,1,1218.853042,1218.853042,3505,NO,26.53,37.93,3,-1.72,6106,113.264122,123.112689,132.806306,139.367066,I,Above,Hip,0,5701,,32.22879255,0,1.2,,,,1,1,,0.03,nav,1,1912,2,, 24331,NJBF000055087,8701 ATLANTIC AVE,Margate City,NJ,39.32510776,-74.50586701,RES1,3001,,18,NE,1951,1951,3102,2,1,2296.26172,2296.26172,3505,NO,39.11,45.02,3,5.27,6106,113.419632,123.237142,132.934116,139.510036,I,Above,Gable,0,5701,,42.06495688,0,1.2,,,,1,1,,0.03,nav,1,1951,2,, 24332,NJBF000057337,100 S BRUNSWICK AVE,Margate City,NJ,39.33039323,-74.49380063,RES1,3001,,18,NE,1925,1925,3102,2,1,517.7063319,517.7063319,3505,NO,34.48,39.54,3,-2.49,6106,113.608354,123.390638,133.09937,139.687355,I,Above,Hip,0,5701,,37.00826076,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24333,NJBF000053817,9715 WINCHESTER AVE,Margate City,NJ,39.32139112,-74.51919182,RES1,3001,,20,NE,1920,2015,3102,2,1,886.8272934,886.8272934,3507,NO,40.4,52.74,1,2.17,6106,113.184366,123.045437,132.732241,139.286472,I,Above,Hip,0,5701,,46.56823664,0,0,,,,1,1,,0.03,nav,1,1920,2,, 24334,NJBF000058205,417 N NASSAU AVE,Margate City,NJ,39.33189355,-74.51087949,RES1,3001,,17,NE,1950,1950,3102,2,1,1470.690463,1470.690463,3505,NO,37.63,43.07,3,4.71,6106,113.210933,123.071424,132.766978,139.318317,I,Above,Gable,0,5701,,40.35284051,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24335,NJBF000055460,107 S JEROME AVE,Margate City,NJ,39.32615385,-74.50148272,RES1,3001,,21,NE,2004,2004,3102,3,1,2231.68058,2231.68058,3505,NO,56.52,66.82,3,3.17,6106,113.50043,123.302624,133.003369,139.585924,I,Above,Hip,0,5701,,61.67086443,0,1.1,,,,1,1,,0.03,nav,1,2004,3,, 24336,NJBF000059414,8212 FULTON AVE,Margate City,NJ,39.33420418,-74.50754452,RES1,3001,,17,NE,1938,1938,3101,2,1,1041.801642,1041.801642,3505,NO,37.07,47.56,3,4.01,6106,113.251464,123.104213,132.80249,139.354317,I,Above,Gable,0,5701,,42.31594549,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 24337,NJBF000056875,212 N OSBORNE AVE,Margate City,NJ,39.3294445,-74.5100135,RES1,3001,,17,NE,1978,1978,3101,1,1,1784.990225,1784.990225,3505,NO,19.52,30.21,3,2.5,6106,113.265372,123.114533,132.810075,139.369222,I,Above,Hip,0,5701,,24.86392632,0,0,,,,1,1,,0.03,nav,1,1978,1,, 24338,NJBF000063271,7605 BURK AVE,Margate City,NJ,39.3412874,-74.50401982,RES1,3001,,19,NE,1983,1983,3102,2,1,2055.583422,2055.583422,3505,NO,39.88,52.35,3,7.92,6106,113.231044,123.087205,132.78852,139.322002,I,Above,Gable,0,5701,,46.11327956,0,0,,,,1,1,,0.03,nav,1,1983,2,, 24339,NJBF000055617,208 N WILSON AVE,Margate City,NJ,39.32657721,-74.51459938,RES1,3001,,47,NE,1950,1950,3102,2,2,835.3090954,835.3090954,3505,NO,20.81,34.39,3,-0.65,6106,113.206813,123.066438,132.75813,139.313421,I,Above,Gable,0,5701,,27.59970958,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24340,NJBF000060479,304 N CLERMONT AVE,Margate City,NJ,39.33604512,-74.50030065,RES1,3001,,17,NE,1956,1956,3102,2,1,1886.912808,1886.912808,3505,NO,23.3,31.97,3,-0.55,6106,113.385617,123.211812,132.91598,139.475201,I,Above,Hip,0,5701,,27.63494612,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 24341,NJBF000062931,616 N DELAVAN AVE,Margate City,NJ,39.34053193,-74.50539188,RES1,3001,,18,NE,1963,1963,3102,2,1,1549.725031,1549.725031,3505,NO,35.44,42.66,3,2.01,6106,113.21092,123.071297,132.771557,139.305783,I,Above,Gable,0,5701,,39.04716453,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 24342,NJBF000059182,32 N BRUNSWICK AVE,Margate City,NJ,39.33372191,-74.49656308,RES1,3001,,18,NE,1935,1935,3102,2,1,2069.207854,2069.207854,3505,NO,44.37,51.07,3,8.2,6106,113.500597,123.304197,133.011231,139.584605,I,Above,Gable,0,5701,,47.71661449,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 24343,NJBF000059226,5 CIRCLE DRIVE,Margate City,NJ,39.33380834,-74.49452075,RES1,3001,,18,NE,1925,1925,3102,2,1,1269.413472,1269.413472,3505,NO,41.92,55.64,3,3.99,6106,113.544428,123.339474,133.048361,139.624655,I,Above,Hip,0,5701,,48.78186592,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 24344,NJBF000062959,615 N DELAVAN AVE,Margate City,NJ,39.34057952,-74.50492812,RES1,3001,,18,NE,1964,1964,3102,2,1,1327.441098,1327.441098,3505,NO,26.32,39.47,3,2.78,6106,113.220555,123.078989,132.77961,139.314413,I,Above,Gable,0,5701,,32.8968767,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 24345,NJBF000060526,401 N GLADSTONE AVE,Margate City,NJ,39.33613718,-74.50470039,RES1,3001,,17,NE,1977,1977,3101,1,1,2106.980584,2106.980584,3505,NO,12.76,23.18,3,-0.9,6106,113.287097,123.132805,132.833444,139.38466,I,Above,Flat,0,5701,,17.97083355,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 24346,NJBF000057275,402 N PEMBROKE AVE,Margate City,NJ,39.3302719,-74.51168532,RES1,3001,,17,NE,1956,1956,3102,2,1,1293.687524,1293.687524,3505,NO,21.91,30.12,3,0.1,6106,113.216624,123.07562,132.770271,139.323921,I,Above,Gable,0,5701,,26.01604272,0,0,,,,1,1,,0.03,nav,1,1956,2,, 24347,NJBF000061586,612 N HUNTINGTON AVE,Margate City,NJ,39.3379043,-74.50985089,RES1,3001,,17,NE,1977,1977,3102,1,1,2210.50557,2210.50557,3505,NO,16.86,27.26,3,-0.23,6106,113.148441,123.021753,132.718726,139.254248,I,Above,Gable,0,5701,,22.0605272,0,0,,,,1,1,,0.03,nav,1,1977,1,, 24348,NJBF000057172,401 N QUINCY AVE,Margate City,NJ,39.33007396,-74.51189122,RES1,3001,,17,NE,1956,1956,3102,2,1,3358.926844,3358.926844,3505,NO,38.93,53.64,3,6.86,6106,113.214969,123.074238,132.768705,139.32238,I,Above,Flat,0,5701,,46.28350921,0,0,,,,1,1,,0.03,nav,1,1956,2,, 24349,NJBF000061275,604 N HUNTINGTON AVE,Margate City,NJ,39.3373555,-74.50933617,RES1,3001,,17,NE,1976,1976,3102,1,1,1765.48215,1765.48215,3505,NO,12.56,23.45,3,1.63,6106,113.167499,123.037025,132.734335,139.272693,I,Above,Gable,0,5701,,18.0009061,0,0,,,,1,1,,0.03,nav,1,1976,1,, 24350,NJBF000060511,2 E GILMAR CIRCLE,Margate City,NJ,39.33611291,-74.5062608,RES1,3001,,17,NE,1965,1965,3101,1,1,1668.539056,1668.539056,3505,NO,17.93,23.94,3,3.89,6106,113.252923,123.10543,132.80488,139.353262,I,Above,Flat,0,5701,,20.935129,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24351,NJBF000058449,2 N BRUNSWICK AVE,Margate City,NJ,39.33233692,-74.4952824,RES1,3001,,17,NE,1930,1930,3102,2,1,1369.155268,1369.155268,3505,NO,26.05,37.71,3,-0.31,6106,113.54829,123.342489,133.050376,139.630325,I,Above,Flat,0,5701,,31.88001103,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24352,NJBF000061605,24 HARBOUR LANE,Margate City,NJ,39.33793332,-74.50755452,RES1,3001,,18,NE,1981,1981,3102,2,1,1717.00478,1717.00478,3505,NO,30.97,38.2,3,4,6106,113.198872,123.06207,132.760684,139.300517,I,Above,Gable,0,5701,,34.58515638,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 24353,NJBF000057212,418 N QUINCY AVE,Margate City,NJ,39.33015275,-74.51253517,RES1,3001,,17,NE,1954,1954,3102,1,1,1509.000735,1509.000735,3505,NO,15.31,25.01,3,-1.92,6106,113.199667,123.061978,132.756051,139.308141,I,Above,Gable,0,5701,,20.16030463,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24354,NJBF000058141,308 N KENYON AVE,Margate City,NJ,39.33177801,-74.50842378,RES1,3001,,17,NE,1959,1959,3102,2,1,1423.359201,1423.359201,3505,NO,30.3,41.46,3,7.62,6106,113.266666,123.116105,132.813318,139.370113,I,Above,Gable,0,5701,,35.88016691,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 24355,NJBF000060477,405 N EXETER AVE,Margate City,NJ,39.33604389,-74.5030268,RES1,3001,,18,NE,1987,1987,3102,2,1,1806.207811,1806.207811,3505,NO,37.41,44.8,3,0.75,6106,113.325381,123.163493,132.865433,139.419983,I,Above,Hip,0,5701,,41.10637646,0,0,,,,1,1,,0.03,nav,1,1987,2,, 24356,NJBF000058571,500 N NASSAU AVE,Margate City,NJ,39.33253393,-74.51182326,RES1,3001,,18,NE,1972,1972,3102,2,1,2219.177568,2219.177568,3505,NO,33.93,43.06,3,6.9,6106,113.180941,123.047498,132.742555,139.290186,I,Above,Gable,0,5701,,38.49077706,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 24357,NJBF000058500,41 N EXETER AVE,Margate City,NJ,39.33242427,-74.49940356,RES1,3001,,17,NE,1951,1951,3102,2,1,1697.823983,1697.823983,3505,NO,29.54,37.45,3,6.26,6106,113.456227,123.268423,132.972744,139.545277,I,Above,Gable,0,5701,,33.49935668,0,1.2,,,,1,1,,0.03,nav,1,1951,2,, 24358,NJBF000058373,35 N EXETER AVE,Margate City,NJ,39.33218948,-74.49919634,RES1,3001,,17,NE,1954,1954,3102,1,1,1379.207304,1379.207304,3505,NO,11.09,24.15,3,-2.01,6106,113.464135,123.274757,132.979202,139.552789,I,Above,Hip,0,5701,,17.6208874,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24359,NJBF000060287,402 N EXETER AVE,Margate City,NJ,39.33572127,-74.50324989,RES1,3001,,19,NE,1988,1988,3102,2,1,1551.623887,1551.623887,3505,NO,26.31,38.53,3,5.29,6106,113.324968,123.16317,132.864897,139.420136,I,Above,Hip,0,5701,,32.41764195,0,0,,,,1,1,,0.03,nav,1,1988,2,, 24360,NJBF000057369,304 N NASSAU AVE,Margate City,NJ,39.33044517,-74.51001906,RES1,3001,,20,NE,1993,1993,3102,2,1,1265.564193,1265.564193,3505,NO,41.83,47.35,3,5.13,6106,113.250754,123.103057,132.798859,139.355655,I,Above,Flat,0,5701,,44.58994485,0,0,,,,1,1,,0.03,nav,1,1993,2,, 24361,NJBF000057728,218 N KENYON AVE,Margate City,NJ,39.3310545,-74.5077315,RES1,3001,,18,NE,1952,1952,3101,1,1,1104.540147,1104.540147,3505,NO,17.05,29.78,3,-1.27,6106,113.292283,123.136527,132.834068,139.394138,I,Above,Gable,0,5701,,23.41388835,0,0,,,,1,1,,0.03,nav,1,1952,1,, 24362,NJBF000060632,409 N EXETER AVE,Margate City,NJ,39.33630082,-74.50328956,RES1,3001,,19,NE,1987,1987,3102,2,1,1595.179975,1595.179975,3505,NO,37.89,49.61,3,6.35,6106,113.315978,123.155946,132.857703,139.410911,I,Above,Flat,0,5701,,43.746582,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 24363,NJBF000061369,8102 MARSHALL AVE,Margate City,NJ,39.3375175,-74.507059,RES1,3001,,17,NE,1974,1974,3101,1,1,1690.952585,1690.952585,3505,NO,21.31,34.34,3,7.03,6106,113.215645,123.075523,132.774483,139.31667,I,Above,Hip,0,5701,,27.82477441,0,0,,,,1,1,,0.03,nav,1,1974,1,, 24364,NJBF000059968,300 N DOUGLAS AVE,Margate City,NJ,39.33516838,-74.5011612,RES1,3001,,17,NE,1964,1964,3102,1,1,2359.590937,2359.590937,3505,NO,22.88,36.8,3,5.69,6106,113.37886,123.206408,132.909752,139.470537,I,Above,Gable,0,5701,,29.83731909,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 24365,NJBF000058609,8209 AMHERST AVE,Margate City,NJ,39.33260494,-74.50572325,RES1,3001,,17,NE,1941,1941,3101,1,1,1992.950351,1992.950351,3505,NO,10.94,18.77,3,-2.41,6106,113.314366,123.154501,132.853843,139.413892,I,Above,Hip,0,5701,,14.85514481,0,0,,,,1,1,,0.03,nav,1,1941,1,, 24366,NJBF000058232,211 N IROQUOIS AVE,Margate City,NJ,39.33193683,-74.50536144,RES1,3001,,19,NE,2010,2010,3102,3,1,1478.62296,1478.62296,3505,NO,42.76,55.69,3,7,6106,113.331866,123.168456,132.867932,139.430517,I,Above,Hip,0,5701,,49.22632438,0,0,,,,1,1,,0.03,nav,1,2010,3,, 24367,NJBF000055335,119 N HARDING AVE,Margate City,NJ,39.3258135,-74.5141705,RES1,3001,,47,NE,1948,1948,3102,2,2,868.8034306,868.8034306,3505,NO,28.71,36.89,3,-2.52,6106,113.227472,123.082718,132.774387,139.332071,I,Above,Gable,0,5701,,32.79914807,0,0,,,,1,1,,0.03,nav,1,1948,2,, 24368,NJBF000056641,,Margate City,NJ,39.32894654,-74.50801024,RES1,3001,,NaN,NE,1938,0,3102,2,1,2749.168345,2749.168345,3505,NO,39.09,49.97,3,8.01,6106,113.316606,123.155556,132.852339,139.416779,I,Above,Gable,0,5701,,44.52685066,0,0,,,,1,1,,0.03,nav,1,1938,2,, 24369,NJBF000061087,215 N ARGYLE AVE,Margate City,NJ,39.33703239,-74.49706499,RES1,3001,,17,NE,1950,1950,3103,1,1,1369.017963,1369.017963,3505,NO,11.52,26.17,3,-0.47,6106,113.443455,123.258188,132.965254,139.525753,I,Above,Gable,0,5701,,18.84476757,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24370,NJBF000057973,110 N HAVERFORD AVE,Margate City,NJ,39.33148275,-74.5030116,RES1,3001,,17,NE,1953,1953,3102,2,1,1899.959803,1899.959803,3507,NO,28.25,34.45,1,1.06,6106,113.390089,123.215149,132.916327,139.484714,I,Above,Hip,0,5701,,31.34785147,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 24371,NJBF000057262,119 N JEROME AVE,Margate City,NJ,39.3302511,-74.50537893,RES1,3001,,17,NE,1958,1958,3102,2,1,1636.933852,1636.933852,3507,NO,26.98,33.05,1,0.53,6106,113.35562,123.18723,132.886289,139.453102,I,Above,Hip,0,5701,,30.01627765,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 24372,NJBF000056550,105 N MANSFIELD AVE,Margate City,NJ,39.32872359,-74.50690511,RES1,3001,,17,NE,1926,1926,3102,2,1,1607.768483,1607.768483,3505,NO,37.46,49.22,3,0.59,6106,113.344115,123.177605,132.87511,139.442296,I,Above,Hip,0,5701,,43.34011923,0,1.2,,,,1,1,,0.03,nav,1,1926,2,, 24373,NJBF000053977,119 N COOLIDGE AVE,Margate City,NJ,39.32198322,-74.51987749,RES1,3001,,17,NE,1918,1918,3102,2,1,1131.214109,1131.214109,3507,NO,24.86,31.13,1,2.77,6106,113.160503,123.026565,132.713307,139.265085,I,Above,Hip,0,5701,,27.99572215,0,1.2,,,,1,1,,0.03,nav,1,1918,2,, 24374,NJBF000059705,216 N DOUGLAS AVE,Margate City,NJ,39.33471188,-74.50046841,RES1,3001,,17,NE,1920,1920,3101,1,1,1068.06754,1068.06754,3507,NO,12.48,17.59,1,1.64,6106,113.400549,123.223817,132.927669,139.491178,I,Above,Gable,0,5701,,15.03241876,0,1.2,,,,1,1,,0.03,nav,1,1920,1,, 24375,NJBF000058602,119 N GLADSTONE AVE,Margate City,NJ,39.33259912,-74.50176597,RES1,3001,,17,NE,1951,1951,3101,1,1,1020.609088,1020.609088,3505,NO,19.08,30.24,3,2.95,6106,113.401685,123.224606,132.92702,139.494711,I,Above,Hip,0,5701,,24.65858995,0,0,,,,1,1,,0.03,nav,1,1951,1,, 24376,NJBF000053868,110 N COOLIDGE AVE,Margate City,NJ,39.32157085,-74.51996889,RES1,3001,,17,NE,1925,1925,3102,2,1,626.2197706,626.2197706,3507,NO,31.92,43.75,1,-0.13,6106,113.164758,123.029721,132.716205,139.268441,I,Above,Hip,0,5701,,37.83101044,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24377,NJBF000057784,104 N HAVERFORD AVE,Margate City,NJ,39.33115612,-74.50270363,RES1,3001,,17,NE,1954,1954,3101,1,1,1701.216395,1701.216395,3507,NO,17.69,28.84,1,0.58,6106,113.401537,123.224296,132.925639,139.49547,I,Above,Gable,0,5701,,23.26557289,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24378,NJBF000059117,121 N EXETER AVE,Margate City,NJ,39.33358659,-74.50059047,RES1,3001,,17,NE,1955,1955,3102,2,1,1718.805409,1718.805409,3505,NO,34.7,40.04,3,5.39,6106,113.413662,123.234308,132.937872,139.504773,I,Above,Hip,0,5701,,37.36699424,0,0,,,,1,1,,0.03,nav,1,1955,2,, 24379,NJBF000058814,104 N ESSEX AVE,Margate City,NJ,39.33297732,-74.499571,RES1,3001,,17,NE,1920,1920,3103,2,1,840.0147827,840.0147827,3505,NO,38.29,48.64,3,5.29,6106,113.444736,123.259234,132.963531,139.534123,I,Above,Hip,0,5701,,43.46374936,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 24380,NJBF000056303,8411 VENTNOR AVE,Margate City,NJ,39.32817428,-74.50347321,COM1,3003,,NaN,ME,1930,1930,3401,2,1,4555.245541,4555.245541,3507,NO,39.81,50.85,1,2.69,6106,113.427466,123.24449,132.944388,139.519545,I,Above,Flat,0,NaN,,45.33260237,0,0,,,,1,1,,0.03,nav,1,1930,2,, 24381,NJBF000055559,8701 VENTNOR AVE,Margate City,NJ,39.32640958,-74.50711654,RES1,3001,,22,NE,1969,2018,3102,3,1,3225.16611,3225.16611,3505,NO,51.56,56.66,3,-2.97,6106,113.373164,123.200222,132.896796,139.468091,I,Above,Hip,0,5701,,54.11005267,0,1.2,,,,1,1,,0.03,nav,1,1969,3,, 24382,NJBF000056321,18 N LANCASTER AVE,Margate City,NJ,39.32820763,-74.50603886,RES1,3001,,17,NE,1983,1983,3101,1,1,2033.349807,2033.349807,3505,NO,20.18,34.66,3,6.05,6106,113.370618,123.198768,132.896743,139.46676,I,Above,Hip,0,5701,,27.42050698,0,0,,,,1,1,,0.03,nav,1,1983,1,, 24383,NJBF000056291,16 N LANCASTER AVE,Margate City,NJ,39.32814822,-74.50593177,RES1,3001,,19,NE,1947,1947,3102,2,1,1141.574977,1141.574977,3505,NO,36.38,45.06,3,0.96,6106,113.373839,123.20134,132.899375,139.469729,I,Above,Gable,0,5701,,40.71963615,0,1.1,,,,1,1,,0.03,nav,1,1947,2,, 24384,NJBF000057736,30 N GLADSTONE AVE,Margate City,NJ,39.33106794,-74.50091929,RES1,3001,,21,NE,1940,2017,3101,3,1,1303.81701,1303.81701,3505,NO,65.1,79.68,3,8.93,6106,113.442096,123.256887,132.959639,139.533098,I,Above,Flat,0,5701,,72.38937991,0,0,,,,1,1,,0.03,nav,1,1940,3,, 24385,NJBF000054840,9003 VENTNOR AVE,Margate City,NJ,39.32444854,-74.51116411,RES1,3001,,19,NE,1965,1965,3102,2,1,3082.823295,3082.823295,3505,NO,26.24,33.54,3,-2.25,6106,113.313455,123.151318,132.844339,139.410761,I,Above,Gable,0,5701,,29.89240127,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 24386,NJBF000058125,8002 WINCHESTER AVE,Margate City,NJ,39.33175433,-74.50056141,RES1,3001,,17,NE,1951,1951,3101,1,1,1028.084918,1028.084918,3505,NO,10.33,24.25,3,-0.23,6106,113.440225,123.255481,132.958691,139.530996,I,Above,Hip,0,5701,,17.29013224,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 24387,NJBF000054282,9 N WASHINGTON AVE,Margate City,NJ,39.32295795,-74.5141678,RES1,3001,,NaN,NE,1930,1930,3102,2,1,2380.510028,2380.510028,3505,NO,34.08,43.73,3,3.85,6106,113.270085,123.115591,132.806048,139.368604,I,Above,Flat,0,5701,,38.90924797,0,0,,,,1,1,,0.03,nav,1,1930,2,, 24388,NJBF000053775,19 N MONROE AVE,Margate City,NJ,39.32123641,-74.51785899,RES1,3001,,17,NE,1928,1928,3102,2,2,1229.257334,1229.257334,3507,NO,24.4,29.57,1,2.96,6106,113.215676,123.070625,132.758077,139.315431,I,Above,Gable,0,5701,,26.98230868,0,0,,,,1,1,,0.03,nav,1,1928,2,, 24389,NJBF000055057,5 N UNION AVE,Margate City,NJ,39.32501162,-74.51080362,RES1,3001,,20,NE,2010,2010,3102,2,1,1601.514051,1601.514051,3505,NO,33.88,41.73,3,3.76,6106,113.31299,123.151204,132.844696,139.410927,I,Above,Flat,0,5701,,37.80657134,0,0,,,,1,1,,0.03,nav,1,2010,2,, 24390,NJBF000054088,20 S CEDAR GROVE AVE,Margate City,NJ,39.32235428,-74.51117803,RES1,3001,,20,NE,1995,1995,3102,2,1,2041.458076,2041.458076,3505,NO,39.16,52.28,3,2.7,6106,113.344326,123.175138,132.867201,139.436734,I,Above,Gable,0,5701,,45.72107943,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 24391,NJBF000059056,308 N HUNTINGTON AVE,Margate City,NJ,39.33345848,-74.50560735,RES1,3001,,20,NE,2007,2007,3101,3,1,1488.581197,1488.581197,3505,NO,33.95,43.71,3,-2,6106,113.304804,123.146919,132.846505,139.404361,I,Above,Hip,0,5701,,38.83041835,0,0,,,,1,1,,0.03,nav,1,2007,3,, 24392,NJBF000054528,8804 ATLANTIC AVE,Margate City,NJ,39.32363599,-74.50726844,RES1,3001,,21,NE,2006,2006,3103,3,1,1682.266199,1682.266199,3505,NO,57.25,62.42,3,3.02,6106,113.410663,123.229277,132.92461,139.49999,I,Above,Hip,0,5701,,59.83652073,0,0,,,,1,1,,0.03,nav,1,2006,3,, 24393,NJBF000054051,106 S UNION AVE,Margate City,NJ,39.32221649,-74.50872181,RES1,3001,,21,NE,1996,1996,3102,2,1,1940.96307,1940.96307,3505,NO,25.67,31.44,3,-2.66,6106,113.399971,123.219955,132.913604,139.488085,I,Above,Flat,0,5701,,28.55676124,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 24394,NJBF000053559,11 S MADISON AVE,Margate City,NJ,39.32039956,-74.51572633,RES1,3001,,43,NE,1950,1950,3102,2,2,1058.141831,1058.141831,3507,NO,23.87,34.68,1,-0.33,6106,113.274689,123.117743,132.805974,139.368992,I,Above,Flat,0,5701,,29.27639819,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24395,NJBF000054313,103 S THURLOW AVE,Margate City,NJ,39.32304801,-74.50797166,RES1,3001,,22,NE,2000,2000,3103,3,1,1637.72031,1637.72031,3505,NO,57.53,65.01,3,6.79,6106,113.403984,123.223613,132.91818,139.493012,I,Above,Gable,0,5701,,61.26965077,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 24396,NJBF000054441,103 S SUMNER AVE,Margate City,NJ,39.32341114,-74.50741106,RES1,3001,,19,NE,1935,1935,3102,2,1,2179.422839,2179.422839,3505,NO,36.99,43.94,3,7.89,6106,113.410865,123.229335,132.924465,139.49988,I,Above,Gable,0,5701,,40.46777867,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 24397,NJBF000054184,20 S VENDOME AVE,Margate City,NJ,39.32265241,-74.51003271,RES1,3001,,19,NE,1969,1969,3102,2,1,1600.229725,1600.229725,3505,NO,40.14,53.96,3,1.25,6106,113.364865,123.191864,132.884829,139.45621,I,Above,Hip,0,5701,,47.05070281,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 24398,NJBF000056193,8 S IROQUOIS AVE,Margate City,NJ,39.3279375,-74.501944,RES1,3001,,18,NE,1925,1925,3102,2,1,848.1703265,848.1703265,3505,NO,40.03,51.15,3,7.64,6106,113.464474,123.274211,132.975227,139.553795,I,Above,Flat,0,5701,,45.58661918,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 24399,NJBF000056939,14 S FRANKLIN AVE,Margate City,NJ,39.3295914,-74.49797354,RES1,3001,,28,NE,1928,1928,3102,2,2,1591.421277,1591.421277,3505,NO,34.34,44.55,3,0.7,6106,113.52797,123.325727,133.030535,139.613059,I,Above,Gable,0,5701,,39.44252408,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 24400,NJBF000053093,101 S COOLIDGE AVE,Margate City,NJ,39.31864304,-74.51673959,RES1,3001,,21,NE,1950,1950,3102,2,1,2407.494626,2407.494626,3507,NO,37.93,52.76,1,-0.83,6106,113.27938,123.120313,132.806951,139.370167,I,Above,Flat,0,5701,,45.34630114,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24401,NJBF000056514,109 S EXETER AVE,Margate City,NJ,39.32864201,-74.49619765,RES1,3001,,20,NE,1983,1983,3102,2,1,1922.960396,1922.960396,3505,NO,37.8,44.08,3,2.93,6106,113.580579,123.367911,133.073962,139.661726,I,Above,Hip,0,5701,,40.94162541,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 24402,NJBF000056642,100 S EXETER AVE,Margate City,NJ,39.32894778,-74.49693643,RES1,3001,,21,NE,2010,2010,3102,3,1,1653.097996,1653.097996,3505,NO,39.61,49.46,3,-0.95,6106,113.559982,123.35138,133.056885,139.642699,I,Above,Flat,0,5701,,44.53020459,0,0,,,,1,1,,0.03,nav,1,2010,3,, 24403,NJBF000055678,12 S KENYON AVE,Margate City,NJ,39.32671295,-74.50389568,RES1,3001,,18,NE,1930,1930,3102,2,1,1740.820577,1740.820577,3505,NO,46.41,53,3,8.39,6106,113.439375,123.253631,132.9527,139.52978,I,Above,Gable,0,5701,,49.70464931,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 24404,NJBF000056673,9 S GRANVILLE AVE,Margate City,NJ,39.329021,-74.49940534,COM1,3001,,49,ME,2017,2017,3401,2,4,3725.970763,3725.970763,3507,NO,37.63,47.18,1,0,6106,113.504662,123.306838,133.010267,139.591411,I,Above,Flat,0,NaN,,42.40601048,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 24405,NJBF000055861,5 DOLPHIN DR,Margate City,NJ,39.32714374,-74.49987938,RES1,3001,,19,NE,1961,1961,3102,1,1,3990.382146,3990.382146,3505,NO,18.39,29.7,3,0.29,6106,113.521272,123.319729,133.022141,139.606021,I,Above,Gable,0,5701,,24.04635917,0,1.2,,,,1,1,,0.03,nav,1,1961,1,, 24406,NJBF000054324,12 S UNION AVE,Margate City,NJ,39.323076,-74.50953171,RES1,3001,,19,NE,2005,1946,3102,3,1,1892.772935,1892.772935,3505,NO,58.46,71.57,3,3.19,6106,113.369494,123.195814,132.889317,139.461093,I,Above,Hip,0,5701,,65.01439103,0,1.2,,,,1,1,,0.03,nav,1,2005,3,, 24407,NJBF000055992,15 S JASPER AVE,Margate City,NJ,39.32747038,-74.5018442,RES1,3001,,18,NE,1925,1925,3102,2,1,920.6992913,920.6992913,3505,NO,31.9,45.88,3,6.69,6106,113.473422,123.281282,132.98222,139.561858,I,Above,Flat,0,5701,,38.89026715,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 24408,NJBF000056271,105 S GLADSTONE AVE,Margate City,NJ,39.32810764,-74.49797166,RES1,3001,,22,NE,2006,2006,3102,3,1,1213.57037,1213.57037,3505,NO,35.2,45.29,3,-0.24,6106,113.549257,123.34254,133.046882,139.632501,I,Above,Hip,0,5701,,40.24706911,0,0,,,,1,1,,0.03,nav,1,2006,3,, 24409,NJBF000055426,106 S JEROME AVE,Margate City,NJ,39.32606048,-74.50189739,RES1,3001,,20,NE,1944,1944,3102,2,1,1316.225606,1316.225606,3505,NO,26.71,33.73,3,4.8,6106,113.492718,123.296378,132.996758,139.578696,I,Above,Gable,0,5701,,30.21949875,0,1.1,,,,1,1,,0.03,nav,1,1944,2,, 24410,NJBF000060406,302 N CLERMONT AVE,Margate City,NJ,39.33591556,-74.50017275,RES1,3001,,17,NE,1956,1956,3102,2,1,1941.671697,1941.671697,3505,NO,41.39,53.77,3,6.34,6106,113.390242,123.215529,132.919789,139.479679,I,Above,Gable,0,5701,,47.58347283,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 24411,NJBF000063471,5 BRUNSWICK COURT,Margate City,NJ,39.34181262,-74.50371337,RES1,3001,,19,NE,1981,1981,3102,3,1,3316.768741,3316.768741,3505,NO,62.88,74.85,3,5.31,6106,113.230702,123.086789,132.788324,139.32017,I,Above,Gable,0,5701,,68.86720507,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 24412,NJBF000060051,52 SEASIDE COURT,Margate City,NJ,39.33531863,-74.50869832,RES1,3001,,19,NE,2001,2001,3101,2,1,1299.926124,1299.926124,3505,NO,35.05,41.87,3,7.23,6106,113.210233,123.071242,132.768838,139.31498,I,Above,Hip,0,5701,,38.45701519,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 24413,NJBF000057114,304 N PEMBROKE AVE,Margate City,NJ,39.32995645,-74.51135134,RES1,3001,,20,NE,2016,2016,3101,1,1,1139.78337,1139.78337,3505,NO,21.53,30.7,3,2.74,6106,113.228551,123.085108,132.779896,139.335013,I,Above,Hip,0,5701,,26.11646297,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24414,NJBF000061708,419 N DELAVAN AVE,Margate City,NJ,39.33811972,-74.50253026,RES1,3001,,17,NE,1952,1952,3102,1,1,1587.824942,1587.824942,3505,NO,16.6,23.32,3,1.56,6106,113.307528,123.149025,132.851527,139.399548,I,Above,Hip,0,5701,,19.96119135,0,0,,,,1,1,,0.03,nav,1,1952,1,, 24415,NJBF000058216,310 N KENYON AVE,Margate City,NJ,39.33191416,-74.50854048,RES1,3001,,17,NE,1959,1959,3102,2,1,1437.830042,1437.830042,3505,NO,29.45,40.1,3,-0.45,6106,113.262161,123.112514,132.809675,139.365874,I,Above,Hip,0,5701,,34.77812048,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 24416,NJBF000054804,203 N JEFFERSON AVE,Margate City,NJ,39.32436205,-74.51802594,RES3A,3001,,20,NE,2008,2008,3301,3,2,2622.456113,2622.456113,3502,NO,41.7,47.02,5,6.08,6106,113.164921,123.031602,132.720443,139.27229,I,Above,Hip,0,5701,,44.35824063,0,0,,,,1,1,,0.03,nav,1,2008,3,, 24417,NJBF000055781,204 N UNION AVE,Margate City,NJ,39.32695291,-74.51317793,RES1,3001,,21,NE,1925,2018,3101,3,1,1397.698177,1397.698177,3505,NO,52.28,63.25,3,8.97,6106,113.232377,123.087159,132.779858,139.337505,I,Above,Gable,0,5701,,57.76751124,0,0,,,,1,1,,0.03,nav,1,1925,3,, 24418,NJBF000056304,307 N UNION AVE,Margate City,NJ,39.32818516,-74.51385505,RES1,3001,,17,NE,1930,1930,3102,1,1,1163.104721,1163.104721,3505,NO,10.73,23.4,3,0.15,6106,113.199424,123.061147,132.753833,139.307466,I,Above,Gable,0,5701,,17.06326659,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 24419,NJBF000055812,9127 FREMONT AVE,Margate City,NJ,39.32704026,-74.5165011,RES1,3001,,20,NE,1997,1997,3102,2,1,2458.60856,2458.60856,3505,NO,43.81,53.86,3,6.32,6106,113.158336,123.027653,132.718387,139.268526,I,Above,Hip,0,5701,,48.83615807,0,0,,,,1,1,,0.03,nav,1,1997,2,, 24420,NJBF000054475,,Margate City,NJ,39.3234855,-74.5180545,RES1,3001,,NaN,NE,1969,0,3102,2,1,1131.02724,1131.02724,3507,NO,30.48,35.71,1,-0.73,6106,113.177459,123.0412,132.72964,139.282961,I,Above,Flat,0,5701,,33.09358109,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24421,NJBF000056184,117 N QUINCY AVE,Margate City,NJ,39.32791124,-74.50978876,RES1,3001,,18,NE,1987,1987,3102,2,1,1373.782973,1373.782973,3505,NO,46.23,52.72,3,8.1,6106,113.292624,123.135959,132.83119,139.394125,I,Above,Gable,0,5701,,49.47628863,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 24422,NJBF000055848,104 N QUINCY AVE,Margate City,NJ,39.32711241,-74.5097002,RES1,3001,,20,NE,2013,2013,3102,2,1,1575.094023,1575.094023,3505,NO,42.33,49.46,3,3.67,6106,113.306261,123.146645,132.841668,139.406384,I,Above,Hip,0,5701,,45.89839904,0,0,,,,1,1,,0.03,nav,1,2013,2,, 24423,NJBF000056277,110 N OSBORNE AVE,Margate City,NJ,39.32811573,-74.50871601,RES1,3001,,17,NE,1927,1927,3102,2,1,1554.835835,1554.835835,3505,NO,30.49,44.49,3,4.82,6106,113.313182,123.152554,132.848587,139.413335,I,Above,Gable,0,5701,,37.4868091,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 24424,NJBF000056384,110 N NASSAU AVE,Margate City,NJ,39.32836295,-74.50802908,RES1,3001,,20,NE,1935,2001,3102,2,1,1177.77492,1177.77492,3505,NO,34.57,44.34,3,6.58,6106,113.32467,123.161867,132.858458,139.424109,I,Above,Hip,0,5701,,39.45662394,0,0,,,,1,1,,0.03,nav,1,1935,2,, 24425,NJBF000056655,106 N LANCASTER AVE,Margate City,NJ,39.3289752,-74.50673061,RES1,3001,,19,NE,1950,1950,3102,2,1,1356.342189,1356.342189,3505,NO,37.12,50.24,3,-1.59,6106,113.344302,123.177824,132.875531,139.442528,I,Above,Hip,0,5701,,43.67759196,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24426,NJBF000053887,9400 VENTNOR AVE,Margate City,NJ,39.32166166,-74.51477773,RES1,3001,,NaN,NE,1969,0,3102,2,1,1604.692347,1604.692347,3507,NO,39.53,47.65,1,2.41,6106,113.276254,123.11981,132.809267,139.372485,I,Above,Gable,0,5701,,43.58653843,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24427,NJBF000058919,105 N ESSEX AVE,Margate City,NJ,39.33318612,-74.49927057,RES1,3001,,17,NE,1938,1938,3103,1,1,1362.492561,1362.492561,3505,NO,13.67,19.73,3,-2.92,6106,113.448404,123.262199,132.966789,139.537277,I,Above,Gable,0,5701,,16.69830873,0,1.2,,,,1,1,,0.03,nav,1,1938,1,, 24428,NJBF000058764,116 N FRONTENAC AVE,Margate City,NJ,39.3328876,-74.50158868,RES1,3001,,17,NE,1956,1956,3102,2,1,1735.765479,1735.765479,3505,NO,36,45.99,3,5.29,6106,113.401496,123.224482,132.927098,139.49428,I,Above,Gable,0,5701,,40.99421073,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, 24429,NJBF000060615,114 N FREDERICKSBURG AVE,Margate City,NJ,39.33627831,-74.49571466,RES1,3001,,20,NE,2014,2014,3102,2,1,1932.231501,1932.231501,3505,NO,28.22,42,3,6.92,6106,113.483714,123.290599,132.998791,139.564122,I,Above,Gable,0,5701,,35.11026673,0,0,,,,1,1,,0.03,nav,1,2014,2,, 24430,NJBF000060496,115 N ARGYLE AVE,Margate City,NJ,39.3360789,-74.49618222,RES1,3001,,17,NE,1950,1950,3102,2,1,1642.367775,1642.367775,3505,NO,38.8,52.37,3,2.82,6106,113.476154,123.284532,132.992278,139.557731,I,Above,Hip,0,5701,,45.58572645,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24431,NJBF000060320,109 N ARGYLE AVE,Margate City,NJ,39.33577278,-74.49581643,RES1,3001,,17,NE,1950,1950,3102,2,1,1024.584408,1024.584408,3505,NO,29.05,34.29,3,0.38,6106,113.488482,123.294457,133.002492,139.56964,I,Above,Flat,0,5701,,31.67139314,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24432,NJBF000054966,9 N WILSON AVE,Margate City,NJ,39.32477301,-74.51237366,RES1,3001,,17,NE,1956,1956,3102,2,1,1203.534333,1203.534333,3505,NO,22.6,29.92,3,0.17,6106,113.2822,123.126295,132.81867,139.382042,I,Above,Hip,0,5701,,26.26031862,0,0,,,,1,1,,0.03,nav,1,1956,2,, 24433,NJBF000054737,12 N HARDING AVE,Margate City,NJ,39.32419252,-74.51308973,RES1,3001,,18,NE,1955,1955,3102,3,1,1544.209008,1544.209008,3505,NO,56.04,70.09,3,5.09,6106,113.275173,123.12035,132.812028,139.37487,I,Above,Flat,0,5701,,63.06413531,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, 24434,NJBF000055317,4 N RUMSON AVE,Margate City,NJ,39.32575831,-74.50928983,RES1,3001,,22,NE,2015,2015,3102,2,1,1549.943529,1549.943529,3505,NO,33.79,41.67,3,-1.95,6106,113.335122,123.169345,132.864151,139.432207,I,Above,Gable,0,5701,,37.72855335,0,0,,,,1,1,,0.03,nav,1,2015,2,, 24435,NJBF000053827,22 S WASHINGTON AVE,Margate City,NJ,39.32142294,-74.5134595,RES3C,3001,,20,ME,1989,1989,3301,1,1,3522.74751,3522.74751,3505,NO,10.13,17.76,3,-0.47,6106,113.308567,123.145749,132.835892,139.402137,I,Above,Flat,0,NaN,,13.94437116,0,0,,,,1,1,,0.03,nav,1,1989,1,, 24436,NJBF000058794,27 N DELAVAN AVE,Margate City,NJ,39.33295014,-74.49754082,RES1,3001,,17,NE,1950,1950,3102,2,1,1036.216403,1036.216403,3505,NO,29.36,42.96,3,-0.81,6106,113.489874,123.295527,133.001551,139.575781,I,Above,Flat,0,5701,,36.16012391,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 24437,NJBF000053017,9710 ATLANTIC AVE,Margate City,NJ,39.31828835,-74.51596574,RES3E,3001,,39,ME,1979,1979,3301,3,1,8134.001484,8134.001484,3507,NO,55.44,62.68,1,2.14,6106,113.301571,123.13801,132.824887,139.390072,I,Above,Flat,0,5701,,59.06362298,0,1.1,,,,1,1,,0.03,nav,1,1979,3,, 24438,NJBF000056695,14 S FRONTENAC AVE,Margate City,NJ,39.32905983,-74.4985344,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1504.01814,1504.01814,3505,NO,33.94,43.55,3,-0.39,6106,113.523251,123.321815,133.025987,139.608657,I,Above,Hip,0,5701,,38.74925478,0,0,,,,1,1,,0.03,nav,1,1925,2,, 24439,NJBF000056500,7906 ATLANTIC AVE,Margate City,NJ,39.32861101,-74.49764274,RES1,3001,,19,NE,1925,1925,3102,3,1,1734.124506,1734.124506,3505,NO,38.29,44.02,3,-2.44,6106,113.549268,123.342671,133.047459,139.63269,I,Above,Hip,0,5701,,41.15372464,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 24440,NJBF000056565,103 S FRANKLIN AVE,Margate City,NJ,39.32876617,-74.49701659,RES1,3001,,22,NE,2016,2016,3102,3,1,1349.918207,1349.918207,3505,NO,45.42,58.02,3,6.35,6106,113.560806,123.352003,133.05738,139.643427,I,Above,Hip,0,5701,,51.72075909,0,0,,,,1,1,,0.03,nav,1,2016,3,, 24441,NJBF000057046,2 S FRANKLIN AVE,Margate City,NJ,39.32980842,-74.4982286,RES1,3001,,NaN,NE,1960,1960,3102,1,1,4678.385146,4678.385146,3505,NO,21.37,27.04,3,2.93,6106,113.519263,123.318758,133.023412,139.604971,I,Above,Flat,0,5701,,24.20310307,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24442,NJBF000056973,,Margate City,NJ,39.32964477,-74.49843258,RES1,3001,,NaN,NE,1948,0,3102,2,1,2406.908127,2406.908127,3505,NO,41.19,54.55,3,6.81,6106,113.517104,123.316988,133.021421,139.602982,I,Above,Flat,0,5701,,47.86733905,0,0,,,,1,1,,0.03,nav,1,1948,2,, 24443,NJBF000057035,107 S CLERMONT AVE,Margate City,NJ,39.32977895,-74.49420107,RES1,3001,,22,NE,2000,2000,3102,3,1,1937.5574,1937.5574,3505,NO,60.71,66.93,3,7.06,6106,113.608268,123.390465,133.098652,139.687461,I,Above,Flat,0,5701,,63.81806808,0,0,,,,1,1,,0.03,nav,1,2000,3,, 24444,NJBF000056352,309 N UNION AVE,Margate City,NJ,39.32828138,-74.51391141,RES1,3001,,17,NE,1951,1951,3102,1,1,1404.883506,1404.883506,3505,NO,13.11,25.75,3,1.15,6106,113.196788,123.059064,132.751745,139.305049,I,Above,Gable,0,5701,,19.43097931,0,0,,,,1,1,,0.03,nav,1,1951,1,, 24445,NJBF000059113,8101 AMHERST AVE,Margate City,NJ,39.33357718,-74.50401254,RES1,3001,10,17,NE,1954,1954,3101,2,1,1353.832135,1353.832135,3505,NO,33.46,47.38,3,6.18,6106,113.338285,123.17379,132.874612,139.435201,I,Above,Hip,0,5701,,40.42016277,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 24446,NJBF000054045,9315 VENTNOR AVE,Margate City,NJ,39.32219227,-74.51467469,COM1,3001,,47,ME,2014,2014,3401,3,1,712.6006156,712.6006156,3507,NO,45.82,60.14,1,-0.3,6106,113.270525,123.115505,132.805288,139.367947,I,Above,Gable,0,NaN,,52.98094701,0,0,,,,1,1,,0.03,nav,1,2014,3,, 24447,NJBF000057145,3 N GRANVILLE AVE,Margate City,NJ,39.3300267,-74.50027577,RES1,3001,,17,NE,1920,1920,3102,2,1,1305.586061,1305.586061,3505,NO,25.86,39.46,3,3.14,6106,113.471104,123.280037,132.983041,139.560289,I,Above,Gable,0,5701,,32.66196489,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 24448,NJBF000056263,20 N MANSFIELD AVE,Margate City,NJ,39.32809392,-74.50686913,RES1,3001,,NaN,NE,1930,0,3102,2,1,1251.439589,1251.439589,3505,NO,26.3,33.94,3,-1.4,6106,113.354049,123.185408,132.882742,139.451318,I,Above,Flat,0,5701,,30.11994193,0,0,,,,1,1,,0.03,nav,1,1930,2,, 24449,NJBF000057116,411 N RUMSON AVE,Margate City,NJ,39.32996449,-74.51273966,RES1,3001,,17,NE,1969,1969,3101,1,1,2151.931934,2151.931934,3505,NO,21.11,31.62,3,3.19,6106,113.197909,123.060514,132.754407,139.306497,I,Above,Gable,0,5701,,26.36483712,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24450,NJBF000054435,,Margate City,NJ,39.3233945,-74.5115875,RES1,3001,,NaN,NE,1945,0,3102,2,1,581.7878843,581.7878843,3505,NO,27.29,41.2,3,1.98,6106,113.319868,123.155965,132.848247,139.415457,I,Above,Gable,0,5701,,34.24277436,0,0,,,,1,1,,0.03,nav,1,1945,2,, 24451,NJBF000053154,,Margate City,NJ,39.31891538,-74.51440762,RES3E,3001,,NaN,ME,2004,0,3301,1,1,1135.272972,1135.272972,3507,NO,14.98,29.12,1,-0.35,6106,113.325828,123.158077,132.846261,139.413772,I,Above,Flat,0,5701,,22.04792009,0,0,,,,1,1,,0.03,nav,1,2004,1,, 24452,NJBF000054307,17 S CEDAR GROVE AVE,Margate City,NJ,39.32303275,-74.51098875,RES1,3001,,22,NE,2013,2013,3103,3,1,2252.388936,2252.388936,3505,NO,35.35,46.83,3,-1.72,6106,113.338322,123.170657,132.863165,139.432117,I,Above,Gable,0,5701,,41.09131209,0,0,,,,1,1,,0.03,nav,1,2013,3,, 24453,NJBF000054501,,Margate City,NJ,39.32355638,-74.52121824,COM8,3001,,NaN,ME,1969,0,3401,1,1,7274.507233,7274.507233,3502,NO,24.71,39.33,5,9.48,6102,113.10753,122.984843,132.671647,139.217694,I,Above,Flat,0,5701,,32.01624345,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24454,NJBF000056044,8203 ATLANTIC AVE,Margate City,NJ,39.3276029,-74.5005694,RES1,3001,,NaN,NE,1969,0,3101,1,1,978.9870909,978.9870909,3505,NO,9.61,23.71,3,-1.4,6106,113.499493,123.302316,133.004325,139.586113,I,Above,Gable,0,5701,,16.65769894,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24455,NJBF000056096,,Margate City,NJ,39.32771336,-74.50028445,RES1,3001,,NaN,NE,1950,0,3102,2,1,810.3222794,810.3222794,3505,NO,29.91,39,3,3.41,6106,113.504163,123.306108,133.008387,139.590503,I,Above,Flat,0,5701,,34.45502955,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24456,NJBF000056667,210 N PEMBROKE AVE,Margate City,NJ,39.32900894,-74.51052492,RES1,3001,,19,NE,2012,2012,3101,3,1,2516.277619,2516.277619,3505,NO,39.2,44.74,3,0.39,6106,113.260461,123.110462,132.805535,139.364574,I,Above,Gable,0,5701,,41.97008493,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 24457,NJBF000057320,7701 ATLANTIC AVE,Margate City,NJ,39.33035705,-74.49563165,RES3C,3001,,20,E,1982,1982,3303,4,1,3565.997869,3565.997869,3507,NO,47.88,62.62,1,-0.22,6106,113.56858,123.358577,133.065647,139.650546,I,Above,Flat,0,NaN,,55.25029292,0,0,,,,1,1,,0.03,nav,1,1982,4,, 24458,NJBF000057609,115 N IROQUOIS AVE,Margate City,NJ,39.33087201,-74.50422373,RES1,3001,,NaN,NE,1951,0,3101,1,1,759.9097339,759.9097339,3507,NO,17.04,27.8,1,1.14,6106,113.37213,123.200617,132.900709,139.468299,I,Above,Hip,0,5701,,22.41869917,0,0,,,,1,1,,0.03,nav,1,1951,1,, 24459,NJBF000058147,411 N NASSAU AVE,Margate City,NJ,39.33178892,-74.51056588,RES1,3001,,17,NE,1955,1955,3102,1,1,555.4012095,555.4012095,3505,NO,20.29,26.33,3,8.6,6106,113.219336,123.078142,132.773884,139.326161,I,Above,Hip,0,5701,,23.30703175,0,0,,,,1,1,,0.03,nav,1,1955,1,, 24460,NJBF000058394,406 N LANCASTER AVE,Margate City,NJ,39.33223593,-74.51001788,RES1,3001,,17,NE,1958,1958,3102,1,1,727.928544,727.928544,3505,NO,16.42,25.83,3,1.09,6106,113.224985,123.082753,132.778957,139.331221,I,Above,Hip,0,5701,,21.12534416,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 24461,NJBF000058738,200 N GLADSTONE AVE,Margate City,NJ,39.33284615,-74.50255895,RES1,3001,,20,NE,2014,2014,3102,2,1,2750.365602,2750.365602,3505,NO,20.03,32.83,3,-0.98,6106,113.380702,123.207777,132.909606,139.475097,I,Above,Hip,0,5701,,26.42808892,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 24462,NJBF000061211,402 N CLARENDON AVE,Margate City,NJ,39.33723719,-74.50062622,RES1,3001,,20,NE,2012,2012,3102,3,1,1663.226657,1663.226657,3505,NO,55.09,68.93,3,0.76,6106,113.361877,123.192687,132.896699,139.451071,I,Above,Hip,0,5701,,62.01010323,0,0,,,,1,1,,0.03,nav,1,2012,3,, 24463,NJBF000061487,607 N HUNTINGTON AVE,Margate City,NJ,39.33773899,-74.50894909,RES1,3001,,18,NE,1974,1974,3102,2,1,555.4003231,555.4003231,3505,NO,34.42,42.16,3,4.01,6110,113.170713,123.03957,132.737171,139.275006,I,Above,Gable,0,5701,,38.28733939,0,1.1,,,,1,1,,0.35,nav,1,1974,2,, 24464,NJBF000062558,21 BAYCREST DRIVE,Margate City,NJ,39.33970085,-74.50825858,RES1,3001,,18,NE,1978,1978,3102,2,1,735.6867799,735.6867799,3505,NO,28.24,38.28,3,-2.48,6106,113.158768,123.029782,132.727905,139.260206,I,Above,Gable,0,5701,,33.25993113,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 24465,NJBF000057880,18 S BARCLAY AVE,Margate City,NJ,39.33132586,-74.49373653,RES1,3001,,20,NE,2013,2013,3102,2,1,1957.527002,1957.527002,3505,NO,30.77,38.12,3,-1.24,6106,113.596567,123.381271,133.090315,139.675863,I,Above,Gable,0,5701,,34.44369594,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 24466,NJBF000058971,,Margate City,NJ,39.33327888,-74.4968499,RES1,3001,,NaN,NE,1935,0,3102,2,1,1357.077368,1357.077368,3505,NO,32.07,37.47,3,-1.96,6106,113.500483,123.304083,133.010778,139.585135,I,Above,Gable,0,5701,,34.76823162,0,0,,,,1,1,,0.03,nav,1,1935,2,, 24467,NJBF000058159,21 S ANDOVER AVE,Margate City,NJ,39.33176704,-74.49215848,RES1,3001,,22,NE,2013,2013,3102,2,1,2066.99042,2066.99042,3505,NO,39.28,51.81,3,1.83,6110,113.625115,123.404337,133.114962,139.701749,I,Above,Flat,0,5701,,45.54168988,0,1.2,,,,1,1,,0.35,nav,1,2013,2,, 24468,NJBF000056566,GRANVILLE & ATLANTIC,Margate City,NJ,39.32876222,-74.49910536,COM1,3001,,NaN,ME,1969,0,3401,2,1,3603.809804,3603.809804,3507,NO,32.05,44.54,1,1.62,6106,113.514972,123.31508,133.018679,139.600924,I,Above,Flat,0,NaN,,38.2929293,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24469,NJBF000054431,16 N DECATUR AVE,Margate City,NJ,39.32343793,-74.51402282,RES1,3001,,49,NE,2014,2014,3102,3,2,1825.287278,1825.287278,3501,NO,39.66,47.24,7,-3.55,6106,113.266067,123.112616,132.803382,139.365488,I,Above,Hip,0,5701,,43.45033442,0,0,,,,1,1,,0.03,nav,1,2014,3,, 24470,NJBF000054466,,Margate City,NJ,39.32343793,-74.51402282,RES1,3001,,NaN,NE,2014,0,3102,2,1,1912.438495,1912.438495,3501,NO,51.56,65.56,7,14.27,6106,113.266067,123.112616,132.803382,139.365488,I,Above,Hip,0,5701,,58.55914556,0,0,,,,1,1,,0.03,nav,1,2014,2,, 24471,NJBF000088660,1401 DARMSTADT AVENUE,Mullica,NJ,39.55785517,-74.6481255,RES1,3001,,16,NE,1850,1850,3102,2,1,823.9203862,823.9203862,3507,NO,32.61,42.39,1,-0.3,6112,109.67372,118.659716,128.322011,133.037936,I,Above,Flat,0,5701,,37.50445848,0,0,,,,1,1,,0.35,nav,1,1850,2,, 24472,NJBF000092355,4557 PLEASANT MILLS ROAD,Mullica,NJ,39.62687073,-74.65653012,RES1,3001,,16,NE,1966,1966,3102,1,1,669.4393274,669.4393274,3507,NO,13.86,28.62,1,0.51,6112,109.386545,117.837938,127.637253,131.842371,I,Above,Gable,0,5701,,21.24254656,0,1.2,,,,1,1,,0.35,nav,1,1966,1,, 24473,NJBF000090505,2559 WEEKSTOWN ROAD,Mullica,NJ,39.58687098,-74.60991103,RES1,3001,,16,NE,1976,1976,3101,2,1,2338.407852,2338.407852,3505,NO,34.64,49.46,3,7.02,6112,110.070102,118.837885,128.517052,133.338803,I,Above,Gable,0,5701,,42.05448962,0,0,,,,1,1,,0.35,nav,1,1976,2,, 24474,NJBF000092888,3347 MOORES AVENUE,Mullica,NJ,39.63472865,-74.71492095,RES1,3001,,16,NE,1972,1972,3102,1,1,735.534263,735.534263,3505,NO,19.6,29.51,3,6.71,6112,108.750995,117.148515,126.996624,130.719761,I,Above,Flat,0,5701,,24.55635352,0,0,,,,1,1,,0.35,nav,1,1972,1,, 24475,NJBF000088093,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54847268,-74.64734046,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1365.606509,1365.606509,3507,NO,17.8,23.93,1,-0.04,6112,109.703178,118.763425,128.411583,133.194919,I,Above,Gable,0,5701,,20.86560282,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24476,NJBF000090784,5617 PLEASANT MILLS ROAD,Mullica,NJ,39.59335585,-74.61033955,RES1,3001,,16,NE,1956,1956,3101,1,1,630.2381368,630.2381368,3505,NO,21.45,31.68,3,5.87,6112,110.043995,118.760161,128.451036,133.230234,I,Above,Flat,0,5701,,26.56264486,0,0,,,,1,1,,0.15,nav,1,1956,1,, 24477,NJBF000090596,5741 CRANBERRY COURT,Mullica,NJ,39.58989699,-74.60453143,RES1,3001,,16,NE,1989,1989,3101,2,1,1988.53238,1988.53238,3505,NO,27.08,33.45,3,-0.43,6112,110.129406,118.874126,128.553841,133.397794,I,Above,Gable,0,5701,,30.26516228,0,0,,,,1,1,,0.35,nav,1,1989,2,, 24478,NJBF000088732,5111 WHITE HORSE PIKE,Mullica,NJ,39.559234,-74.69254383,RES1,3001,,16,NE,1963,1954,3101,1,1,761.0389248,761.0389248,3505,NO,21.32,34.69,3,3.32,6112,109.171473,118.120421,127.816196,132.17596,I,Above,Gable,0,5701,,28.00557052,0,0,,,,1,1,,0.35,nav,1,1963,1,, 24479,NJBF000091190,3300 READING AVENUE,Mullica,NJ,39.60187232,-74.75842545,RES1,3001,,15,NE,2010,2010,3102,2,1,1016.887523,1016.887523,3507,NO,39.61,50.72,1,1.04,6112,108.43193,117.051593,126.839937,130.475581,I,Above,Gable,0,5701,,45.1625401,0,0,,,,1,1,,1,nav,1,2010,2,, 24480,NJBF000090681,5021 INDIAN CABIN ROAD,Mullica,NJ,39.59116307,-74.66401142,RES1,3001,,16,NE,1978,1978,3102,2,1,2554.299396,2554.299396,3507,NO,28.06,37.67,1,2.89,6112,109.408496,118.130182,127.859702,132.237604,I,Above,Flat,0,5701,,32.86674901,0,1.2,,,,1,1,,0.35,nav,1,1978,2,, 24481,NJBF000092341,4636 PLEASANT MILLS ROAD,Mullica,NJ,39.62669498,-74.65223841,RES1,3001,,NaN,NE,1969,0,3102,2,1,1077.158349,1077.158349,3507,NO,32.46,44.85,1,1.05,6112,109.435186,117.887948,127.683641,131.923954,I,Above,Gable,0,5701,,38.659167,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24482,NJBF000090740,2565 WEEKSTOWN ROAD,Mullica,NJ,39.59214149,-74.61115293,RES1,3001,,16,NE,1976,1976,3101,1,1,1441.428402,1441.428402,3505,NO,26.31,38.05,3,7.84,6112,110.037612,118.763273,128.452693,133.233072,I,Above,Gable,0,5701,,32.18172394,0,0,,,,1,1,,0.35,nav,1,1976,1,, 24483,NJBF000090876,2610 BACK ROAD,Mullica,NJ,39.59599962,-74.61071014,RES1,3001,,16,NE,1983,1983,3101,2,1,809.6114365,809.6114365,3505,NO,41.77,48.82,3,6.14,6112,110.030705,118.725842,128.421821,133.182179,I,Above,Gable,0,5701,,45.29404203,0,0,,,,1,1,,0.15,nav,1,1983,2,, 24484,NJBF000088767,1501 DARMSTADT AVENUE,Mullica,NJ,39.55970953,-74.6463412,RES1,3001,,16,NE,2004,2004,3102,2,1,787.1248651,787.1248651,3507,NO,31.24,43.64,1,2.35,6112,109.690926,118.663163,128.326895,133.044442,I,Above,Gable,0,5701,,37.43956488,0,0,,,,1,1,,0.35,nav,1,2004,2,, 24485,NJBF000090798,5617 PLEASANT MILLS ROAD,Mullica,NJ,39.59371651,-74.61039355,RES1,3001,,16,NE,1956,1956,3101,1,1,580.6446884,580.6446884,3507,NO,11.94,18.58,1,-0.38,6112,110.042142,118.755434,128.447003,133.223603,I,Above,Flat,0,5701,,15.26110464,0,0,,,,1,1,,0.35,nav,1,1956,1,, 24486,NJBF000092193,4750 PLEASANT MILLS ROAD,Mullica,NJ,39.62440957,-74.64575414,RES1,3001,,16,NE,1935,1935,3102,1,1,594.9692229,594.9692229,3507,NO,15.12,26.26,1,1.13,6106,109.516271,117.986507,127.77181,132.078534,I,Above,Gable,0,5701,,20.68818269,0,0,,,,1,1,,0.03,nav,1,1935,1,, 24487,NJBF000088098,1115 HEIDELBERG AVENUE,Mullica,NJ,39.54857268,-74.64863748,RES1,3005,,16,NE,1960,1960,3101,1,1,583.4441581,583.4441581,3507,NO,20.17,26.63,1,1.01,6112,109.687395,118.746147,128.395436,133.168174,I,Above,Gable,0,5701,,23.40192943,0,0,,,,1,1,,0.35,nav,1,1960,1,, 24488,NJBF000095480,,Mullica,NJ,39.65033581,-74.68272323,RES1,3001,,NaN,NE,1969,0,3101,1,1,719.7039836,719.7039836,3507,NO,13.1,24.15,1,-0.95,6112,109.026571,117.30721,127.181804,131.028063,I,Above,Flat,0,5701,,18.62196393,0,0,,,,1,1,,0.15,nav,1,1969,1,, 24489,NJBF000088744,5117 WHITE HORSE PIKE,Mullica,NJ,39.55939632,-74.69216491,RES1,3001,,16,NE,1930,1930,3101,1,1,1355.496656,1355.496656,3505,NO,9.49,22.98,3,-1.49,6112,109.175143,118.12316,127.818922,132.180651,I,Above,Gable,0,5701,,16.23266297,0,0,,,,1,1,,0.35,nav,1,1930,1,, 24490,NJBF000092381,2640 THURSTON AVENUE,Mullica,NJ,39.62726185,-74.65058875,RES1,3001,,16,NE,2007,2007,3102,2,1,1391.366069,1391.366069,3507,NO,37.66,49.68,1,-0.99,6106,109.451879,117.900372,127.69613,131.945907,I,Above,Hip,0,5701,,43.66996801,0,0,,,,1,1,,0.03,nav,1,2007,2,, 24491,NJBF000092698,4400 PLEASANT MILLS ROAD,Mullica,NJ,39.6324135,-74.659538,RES1,3001,,16,NE,1988,1987,3102,1,1,2385.66636,2385.66636,3507,NO,16.23,26.1,1,-0.42,6106,109.3349,117.744737,127.559449,131.704661,I,Above,Gable,0,5701,,21.16261679,0,0,,,,1,1,,0.03,nav,1,1988,1,, 24492,NJBF000091938,2744 SEVENTH AVENUE,Mullica,NJ,39.6197875,-74.6261465,RES1,3001,,16,NE,1925,1925,3102,1,1,535.7571512,535.7571512,3507,NO,20.47,33.62,1,2.88,6106,109.760942,118.267695,128.025696,132.518642,I,Above,Hip,0,5701,,27.04330046,0,0,,,,1,1,,0.03,nav,1,1925,1,, 24493,NJBF000091928,2744 SEVENTH AVENUE,Mullica,NJ,39.61963626,-74.62592791,RES1,3001,,16,NE,1925,1925,3102,1,1,2038.382916,2038.382916,3507,NO,13.51,25.63,1,1.98,6106,109.764085,118.27203,128.029496,132.525143,I,Above,Flat,0,5701,,19.5716773,0,0,,,,1,1,,0.03,nav,1,1925,1,, 24494,NJBF000092294,2620 THURSTON AVENUE,Mullica,NJ,39.62616485,-74.65140661,RES1,3001,,16,NE,1970,1970,3102,1,1,2868.346661,2868.346661,3507,NO,10.79,20.88,1,0.23,6112,109.446297,117.903079,127.696896,131.947248,I,Above,Gable,0,5701,,15.83592038,0,0,,,,1,1,,0.35,nav,1,1970,1,, 24495,NJBF000091878,,Mullica,NJ,39.61863279,-74.60636306,RES1,3001,,NaN,NE,1969,0,3102,2,1,1603.15357,1603.15357,3507,NO,38.8,47.63,1,2.13,6106,110.005989,118.523474,128.259889,132.917838,I,Above,Gable,0,5701,,43.21212543,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24496,NJBF000092973,4230 PLEASANT MILLS ROAD,Mullica,NJ,39.63555194,-74.66029125,RES1,3001,,17,NE,1984,1984,3102,2,1,2378.581381,2378.581381,3507,NO,39.27,49.08,1,2.13,6112,109.316099,117.702533,127.525456,131.644216,I,Above,Gable,0,5701,,44.17921863,0,0,,,,1,1,,0.35,nav,1,1984,2,, 24497,NJBF000093426,4178 PLEASANT MILLS ROAD,Mullica,NJ,39.639106,-74.6606025,RES1,3001,,16,NE,1946,1960,3102,2,1,2644.727213,2644.727213,3507,NO,37.66,50.54,1,1.51,6112,109.300625,117.660638,127.492638,131.585732,I,Above,Gable,0,5701,,44.09831367,0,0,,,,1,1,,0.35,nav,1,1946,2,, 24498,NJBF000092192,2814 CYPRESS LANE,Mullica,NJ,39.6243345,-74.624179,RES1,3001,,16,NE,1948,1948,3102,1,1,1109.092984,1109.092984,3507,NO,12.83,27.62,1,1.87,6106,109.768386,118.240136,128.006504,132.486921,I,Above,Gable,0,5701,,20.22177984,0,0,,,,1,1,,0.03,nav,1,1948,1,, 24499,NJBF000092252,2830 MULLICA RIVER DRIVE,Mullica,NJ,39.625568,-74.6236965,RES1,3001,,16,NE,1995,1995,3102,1,1,1413.656282,1413.656282,3507,NO,17.97,28.06,1,2.22,6106,109.769721,118.23199,128.000716,132.47736,I,Above,Gable,0,5701,,23.01785768,0,0,,,,1,1,,0.03,nav,1,1995,1,, 24500,NJBF000091847,5045 PLEASANT MILLS ROAD,Mullica,NJ,39.61812583,-74.63057832,RES1,3001,,16,NE,1930,1930,3102,1,1,1748.691511,1748.691511,3507,NO,11.45,20.57,1,-0.73,6106,109.713965,118.233237,127.991557,132.459497,I,Above,Gable,0,5701,,16.01163432,0,0,,,,1,1,,0.03,nav,1,1930,1,, 24501,NJBF000091983,5129 QUARTERMASTER COURT,Mullica,NJ,39.62065518,-74.61926815,RES1,3001,,16,NE,1981,1981,3102,2,1,2316.642265,2316.642265,3507,NO,28.1,41.31,1,2.8,6106,109.840505,118.341061,128.094559,132.637203,I,Above,Gable,0,5701,,34.7025415,0,1.2,,,,1,1,,0.03,nav,1,1981,2,, 24502,NJBF000092167,2804 CYPRESS LANE,Mullica,NJ,39.6237105,-74.624296,RES1,3001,,16,NE,1992,1948,3102,1,1,798.1464471,798.1464471,3507,NO,15.71,24.57,1,1.05,6106,109.769218,118.245776,128.010839,132.494195,I,Above,Gable,0,5701,,20.14138002,0,0,,,,1,1,,0.03,nav,1,1992,1,, 24503,NJBF000091969,2824 MUSKET LANE,Mullica,NJ,39.62037413,-74.61647117,RES1,3001,,17,NE,1987,1987,3102,2,1,2402.667831,2402.667831,3507,NO,34.78,43.2,1,-0.61,6106,109.875418,118.378382,128.128577,132.695338,I,Above,Gable,0,5701,,38.99252754,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 24504,NJBF000093125,4200 PLEASANT MILLS ROAD,Mullica,NJ,39.63686182,-74.66086416,RES1,3001,,15,NE,1750,1750,3102,2,1,2980.622097,2980.622097,3507,YES,27.14,33.41,1,1.94,6106,109.305389,117.682099,127.508671,131.614332,I,Above,Hip,0,5701,,30.27469102,0,0,,,,1,1,,0.03,nav,1,1750,2,, 24505,NJBF000093141,4200 PLEASANT MILLS ROAD,Mullica,NJ,39.63695147,-74.66068675,RES1,3001,,15,NE,1750,1750,3102,2,1,979.6152481,979.6152481,3507,YES,36.18,45.88,1,-0.76,6106,109.307028,117.683066,127.509734,131.616218,I,Above,Gable,0,5701,,41.02919432,0,0,,,,1,1,,0.03,nav,1,1750,2,, 24506,NJBF000093167,4200 PLEASANT MILLS ROAD,Mullica,NJ,39.63716943,-74.66085838,RES1,3001,,15,NE,1750,1750,3102,2,1,2118.443211,2118.443211,3507,YES,24.91,34.26,1,2.9,6106,109.304415,117.678841,127.506172,131.609876,I,Above,Gable,0,5701,,29.58481554,0,0,,,,1,1,,0.03,nav,1,1750,2,, 24507,NJBF000092274,2840 MULLICA RIVER DRIVE,Mullica,NJ,39.62592875,-74.6229377,RES1,3001,,16,NE,1962,1962,3102,1,1,1502.188997,1502.188997,3507,NO,14.95,21.35,1,1.4,6106,109.77746,118.236986,128.005824,132.486341,I,Above,Gable,0,5701,,18.14884727,0,0,,,,1,1,,0.03,nav,1,1962,1,, 24508,NJBF000092159,5030 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62358683,-74.62065854,RES1,3001,,16,NE,1971,1973,3102,2,1,1627.860862,1627.860862,3507,NO,25.92,35.08,1,1.7,6106,109.813211,118.290953,128.052306,132.565689,I,Above,Gable,0,5701,,30.50020951,0,0,,,,1,1,,0.03,nav,1,1971,2,, 24509,NJBF000092451,2658 THURSTON AVENUE,Mullica,NJ,39.62842742,-74.64990182,RES1,3001,,16,NE,1930,1930,3102,1,1,1080.973828,1080.973828,3507,NO,15.85,25.64,1,1.83,6106,109.455733,117.895421,127.693393,131.94113,I,Above,Hip,0,5701,,20.74895235,0,0,,,,1,1,,0.03,nav,1,1930,1,, 24510,NJBF000092043,5152 VENICE AVENUE,Mullica,NJ,39.62160738,-74.61554789,RES1,3001,,17,NE,1974,1974,3102,1,1,867.8817391,867.8817391,3507,NO,13.94,25.03,1,1.12,6106,109.882173,118.375632,128.12764,132.694239,I,Above,Hip,0,5701,,19.4861852,0,0,,,,1,1,,0.03,nav,1,1974,1,, 24511,NJBF000092054,5152 VENICE AVENUE,Mullica,NJ,39.62178005,-74.61523898,RES1,3001,,17,NE,1974,1974,3102,1,1,2944.621414,2944.621414,3507,NO,18.71,32.59,1,2.75,6106,109.885302,118.377441,128.129529,132.697547,I,Above,Gable,0,5701,,25.65042211,0,0,,,,1,1,,0.03,nav,1,1974,1,, 24512,NJBF000092013,2821 SMUGGLERS LANE,Mullica,NJ,39.62119103,-74.61811071,RES1,3001,,17,NE,1979,1979,3102,2,1,2264.357942,2264.357942,3507,NO,22.37,36.34,1,0.37,6106,109.852578,118.349064,128.102637,132.65125,I,Above,Gable,0,5701,,29.35668148,0,0,,,,1,1,,0.03,nav,1,1979,2,, 24513,NJBF000092027,2821 SMUGGLERS LANE,Mullica,NJ,39.6213415,-74.6179045,RES1,3001,,17,NE,1979,1979,3102,2,1,835.2130623,835.2130623,3507,NO,38.68,49.93,1,2.97,6106,109.854544,118.349883,128.103588,132.652937,I,Above,Gable,0,5701,,44.30678786,0,0,,,,1,1,,0.03,nav,1,1979,2,, 24514,NJBF000091973,2748 SEVENTH AVENUE,Mullica,NJ,39.62045521,-74.62629979,RES1,3001,,17,NE,1998,1998,3102,2,1,4634.69276,4634.69276,3507,NO,39.11,54,1,2.19,6103,109.756794,118.258377,128.017994,132.505553,I,Above,Gable,0,5701,,46.55435599,0,0,,,,1,1,,0.03,nav,1,1998,2,, 24515,NJBF000092104,4819 PLEASANT MILLS ROAD,Mullica,NJ,39.62249761,-74.6421616,RES1,3001,,16,NE,1976,1976,3102,1,1,1383.77284,1383.77284,3507,NO,16.7,31.35,1,-0.07,6109,109.563866,118.048823,127.826823,132.174486,I,Above,Gable,0,5701,,24.02782314,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 24516,NJBF000091956,5130 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62008469,-74.61935781,RES1,3001,,17,NE,1994,1994,3102,2,1,2426.087772,2426.087772,3507,NO,33.08,41.52,1,-0.28,6106,109.841453,118.346425,128.098756,132.644193,I,Above,Gable,0,5701,,37.30395153,0,1.2,,,,1,1,,0.03,nav,1,1994,2,, 24517,NJBF000092122,2688 MCCORMICK AVENUE,Mullica,NJ,39.622902,-74.636961,RES1,3001,,16,NE,1927,1927,3102,1,1,1262.701345,1262.701345,3507,NO,18.29,26.23,1,0.84,6106,109.622752,118.104859,127.879413,132.26612,I,Above,Gable,0,5701,,22.26233036,0,0,,,,1,1,,0.03,nav,1,1927,1,, 24518,NJBF000092128,2690 MCCORMICK AVENUE,Mullica,NJ,39.62298851,-74.63686316,RES1,3001,,16,NE,1930,1920,3102,1,2,730.8034052,730.8034052,3507,NO,19.21,30.01,1,1.8,6103,109.623597,118.105042,127.879709,132.26665,I,Above,Gable,0,5701,,24.61405845,0,0,,,,1,1,,0.03,nav,1,1930,1,, 24519,NJBF000091952,5010 PLEASANT MILLS ROAD,Mullica,NJ,39.62001797,-74.63105784,RES1,3001,,16,NE,1950,1950,3102,2,1,881.4080433,881.4080433,3507,YES,30.96,45.5,1,0.28,6103,109.701832,118.206461,127.969386,132.421593,I,Above,Hip,0,5701,,38.22916712,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24520,NJBF000092374,4600 PLEASANT MILLS ROAD,Mullica,NJ,39.62715072,-74.65533539,RES1,3001,,15,NE,1953,1953,3102,1,1,1088.535629,1088.535629,3507,NO,17.06,31.3,1,2.87,6106,109.398963,117.848254,127.647346,131.86011,I,Above,Gable,0,5701,,24.17903254,0,0,,,,1,1,,0.03,nav,1,1953,1,, 24521,NJBF000092012,2826 SCHOONER LANE,Mullica,NJ,39.62115894,-74.61711378,RES1,3001,,17,NE,1976,1976,3102,2,1,904.1632808,904.1632808,3507,NO,32.87,42.12,1,1.7,6106,109.864776,118.361589,128.114131,132.670928,I,Above,Gable,0,5701,,37.49603661,0,0.2,,,,1,1,,0.03,nav,1,1976,2,, 24522,NJBF000092006,2826 SCHOONER LANE,Mullica,NJ,39.62105475,-74.61733968,RES1,3001,,17,NE,1976,1976,3102,2,1,3179.931122,3179.931122,3507,NO,38.79,48.45,1,2.61,6106,109.86241,118.360013,128.112544,132.668169,I,Above,Gable,0,5701,,43.61871063,0,0.2,,,,1,1,,0.03,nav,1,1976,2,, 24523,NJBF000091955,,Mullica,NJ,39.62007128,-74.6167908,RES1,3001,,NaN,NE,1998,0,3102,2,1,3372.476642,3372.476642,3507,NO,28.66,41.7,1,2.16,6106,109.872621,118.377912,128.127754,132.693813,I,Above,Gable,0,5701,,35.18095107,0,0,,,,1,1,,0.03,nav,1,1998,2,, 24524,NJBF000092177,2806 CYPRESS LANE,Mullica,NJ,39.62390231,-74.62428656,RES1,3001,,16,NE,1994,1994,3102,1,1,898.8459035,898.8459035,3507,NO,19.15,28.11,1,0.02,6106,109.768644,118.243729,128.009216,132.491456,I,Above,Gable,0,5701,,23.63052381,0,0,,,,1,1,,0.03,nav,1,1994,1,, 24525,NJBF000092129,2841 SEVENTH AVENUE,Mullica,NJ,39.62299977,-74.61887264,RES1,3001,,16,NE,1981,1954,3102,2,2,1177.081938,1177.081938,3507,NO,35.69,48.9,1,1.61,6106,109.836838,118.319243,128.077569,132.608932,I,Above,Gable,0,5701,,42.29643423,0,0,,,,1,1,,0.03,nav,1,1981,2,, 24526,NJBF000092246,2828 MULLICA RIVER DRIVE,Mullica,NJ,39.6254475,-74.623782,RES1,3001,,16,NE,1995,1996,3102,2,1,1595.455712,1595.455712,3507,NO,40.53,50.78,1,1.56,6106,109.769131,118.232328,128.000858,132.477561,I,Above,Gable,0,5701,,45.65861588,0,0,,,,1,1,,0.03,nav,1,1995,2,, 24527,NJBF000092115,4832 PLEASANT MILLS ROAD,Mullica,NJ,39.62272311,-74.64079489,RES1,3001,,16,NE,1987,1987,3102,1,1,2389.882827,2389.882827,3507,NO,17.67,23.89,1,-0.2,6106,109.578887,118.062186,127.839567,132.19672,I,Above,Gable,0,5701,,20.77933091,0,0,,,,1,1,,0.03,nav,1,1987,1,, 24528,NJBF000092362,2634 THURSTON AVENUE,Mullica,NJ,39.6269911,-74.65097096,RES1,3001,,16,NE,1960,1960,3102,2,1,4668.534607,4668.534607,3507,NO,38.32,49.51,1,0.65,6106,109.448473,117.899012,127.694428,131.942912,I,Above,Gable,0,5701,,43.91161038,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24529,NJBF000092119,2686 MCCORMICK AVENUE,Mullica,NJ,39.6227915,-74.6371825,RES1,3001,,16,NE,1927,1940,3102,1,1,897.1690378,897.1690378,3507,NO,17.67,26.15,1,2.77,6106,109.620557,118.103505,127.877994,132.263636,I,Above,Hip,0,5701,,21.91179879,0,0,,,,1,1,,0.03,nav,1,1927,1,, 24530,NJBF000092114,2686 MCCORMICK AVENUE,Mullica,NJ,39.6226795,-74.636949,RES1,3001,,16,NE,1927,1940,3102,1,1,536.2456631,536.2456631,3507,NO,16.71,27.02,1,0.52,6106,109.623651,118.107468,127.881504,132.269723,I,Above,Gable,0,5701,,21.86295866,0,0,,,,1,1,,0.03,nav,1,1927,1,, 24531,NJBF000092268,2849 MULLICA RIVER DRIVE,Mullica,NJ,39.62581396,-74.62179406,RES1,3001,,17,NE,2013,2013,3102,1,1,2364.843933,2364.843933,3507,NO,16.68,28.64,1,2.88,6106,109.791546,118.25202,128.019508,132.50997,I,Above,Hip,0,5701,,22.6614133,0,0,,,,1,1,,0.03,nav,1,2013,1,, 24532,NJBF000092265,2849 MULLICA RIVER DRIVE,Mullica,NJ,39.62574102,-74.62201984,RES1,3001,,17,NE,2013,2013,3102,1,1,1236.897112,1236.897112,3507,NO,13.59,23.38,1,1.17,6106,109.789108,118.250132,128.017669,132.506759,I,Above,Hip,0,5701,,18.48867696,0,0,,,,1,1,,0.03,nav,1,2013,1,, 24533,NJBF000091849,5306 LINDA AVENUE,Mullica,NJ,39.61816015,-74.60782054,RES1,3001,,16,NE,1960,1960,3102,2,1,592.7639845,592.7639845,3507,NO,29.75,39.48,1,1.74,6106,109.989654,118.510685,128.247567,132.89677,I,Above,Gable,0,5701,,34.61509001,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24534,NJBF000092143,4818 PLEASANT MILLS ROAD,Mullica,NJ,39.623307,-74.6416635,RES1,3001,,16,NE,1972,1972,3102,2,1,1643.509513,1643.509513,3507,NO,23.25,32.39,1,0.89,6106,109.566895,118.045692,127.825127,132.171602,I,Above,Gable,0,5701,,27.81849114,0,0,,,,1,1,,0.03,nav,1,1972,2,, 24535,NJBF000092157,4818 PLEASANT MILLS ROAD,Mullica,NJ,39.62352422,-74.64152188,RES1,3001,,16,NE,1972,1972,3102,2,1,2764.668008,2764.668008,3507,NO,21.08,26.93,1,-0.01,6106,109.567802,118.044947,127.824761,132.170986,I,Above,Gable,0,5701,,24.00670869,0,0,,,,1,1,,0.03,nav,1,1972,2,, 24536,NJBF000092164,4818 PLEASANT MILLS ROAD,Mullica,NJ,39.62368115,-74.64140753,RES1,3001,,16,NE,1972,1972,3102,2,1,2423.456014,2423.456014,3507,NO,25.86,30.94,1,0.09,6106,109.568588,118.044538,127.824618,132.170752,I,Above,Gable,0,5701,,28.40205839,0,0,,,,1,1,,0.03,nav,1,1972,2,, 24537,NJBF000092322,2750 MCCORMICK AVENUE,Mullica,NJ,39.62646759,-74.63502199,RES1,3001,,16,NE,1987,1987,3102,2,1,2022.913224,2022.913224,3507,NO,33.62,42.8,1,2.08,6106,109.633054,118.087929,127.869005,132.248691,I,Above,Gable,0,5701,,38.20642986,0,1.3,,,,1,1,,0.03,nav,1,1987,2,, 24538,NJBF000092206,4730 PLEASANT MILLS ROAD,Mullica,NJ,39.62472472,-74.64788532,RES1,3001,,17,NE,1979,1979,3102,1,1,3315.586037,3315.586037,3507,NO,17.4,28.9,1,1.69,6106,109.49094,117.958717,127.746445,132.034141,I,Above,Gable,0,5701,,23.14992516,0,0,,,,1,1,,0.03,nav,1,1979,1,, 24539,NJBF000092023,5120 QUARTERMASTER COURT,Mullica,NJ,39.62131127,-74.61936658,RES1,3001,,17,NE,1990,1990,3102,1,1,3575.501116,3575.501116,3507,NO,19.38,27.38,1,2.91,6106,109.83696,118.332419,128.08746,132.625267,I,Above,Gable,0,5701,,23.3806833,0,1.2,,,,1,1,,0.03,nav,1,1990,1,, 24540,NJBF000091873,5320 RIVER DRIVE,Mullica,NJ,39.61854972,-74.60618923,RES1,3001,,16,NE,1950,1950,3102,1,1,2092.586415,2092.586415,3507,NO,16.22,31.05,1,-0.18,6106,110.008458,118.526611,128.262673,132.922503,I,Above,Gable,0,5701,,23.63164466,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24541,NJBF000091939,2800 SCHOONER LANE,Mullica,NJ,39.6197936,-74.6188235,RES1,3001,,17,NE,1989,1989,3102,2,1,2769.119064,2769.119064,3507,NO,39.51,53.06,1,2.71,6106,109.848952,118.356228,128.107412,132.658914,I,Above,Hip,0,5701,,46.28169663,0,1.3,,,,1,1,,0.03,nav,1,1989,2,, 24542,NJBF000092141,4759 PLEASANT MILLS ROAD,Mullica,NJ,39.623256,-74.6460715,RES1,3001,,16,NE,1965,1965,3102,2,1,1432.16976,1432.16976,3507,NO,29.59,39.44,1,0.69,6112,109.516476,117.995486,127.778391,132.08999,I,Above,Gable,0,5701,,34.51563266,0,0,,,,1,1,,0.35,nav,1,1965,2,, 24543,NJBF000091830,5340 RIVER DRIVE,Mullica,NJ,39.61787697,-74.60469259,RES1,3001,,16,NE,1974,1974,3102,2,1,2322.541351,2322.541351,3507,NO,35.84,47.86,1,-0.94,6106,110.029582,118.553161,128.286277,132.96201,I,Above,Gable,0,5701,,41.8525311,0,0,,,,1,1,,0.03,nav,1,1974,2,, 24544,NJBF000092656,4420 PLEASANT MILLS ROAD,Mullica,NJ,39.63171899,-74.65966784,RES1,3001,,16,NE,1955,1955,3102,1,1,791.9098595,791.9098595,3507,NO,13.14,27.73,1,-0.02,6106,109.335773,117.750804,127.563929,131.712641,I,Above,Gable,0,5701,,20.43651491,0,0,,,,1,1,,0.03,nav,1,1955,1,, 24545,NJBF000092256,2845 MULLICA RIVER DRIVE,Mullica,NJ,39.6256335,-74.62213651,RES1,3001,,16,NE,1958,1958,3102,2,1,1518.56091,1518.56091,3507,NO,30.39,43.4,1,2.12,6106,109.7881,118.249951,128.017352,132.506168,I,Above,Gable,0,5701,,36.89163906,0,0,,,,1,1,,0.03,nav,1,1958,2,, 24546,NJBF000092316,4632 PLEASANT MILLS ROAD,Mullica,NJ,39.62637619,-74.65260066,RES1,3001,,16,NE,1972,1972,3102,1,1,1202.365609,1202.365609,3507,NO,18.15,28.24,1,0.17,6112,109.432158,117.887326,127.682549,131.92204,I,Above,Gable,0,5701,,23.19739425,0,0,,,,1,1,,0.03,nav,1,1972,1,, 24547,NJBF000091911,2813 MUSKET LANE,Mullica,NJ,39.61932656,-74.61685955,RES1,3001,,17,NE,1987,1987,3102,2,1,3293.974736,3293.974736,3507,NO,26.61,35.11,1,1.41,6106,109.874454,118.385525,128.13381,132.703882,I,Above,Gable,0,5701,,30.85952214,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 24548,NJBF000091888,2801 MUSKET LANE,Mullica,NJ,39.6188809,-74.61735363,RES1,3001,,17,NE,1999,1999,3102,2,1,4005.211105,4005.211105,3507,NO,22.89,36.53,1,1.79,6106,109.870044,118.384542,128.132332,132.701195,I,Above,Gable,0,5701,,29.71058415,0,0,,,,1,1,,0.03,nav,1,1999,2,, 24549,NJBF000091959,2815 SCHOONER LANE,Mullica,NJ,39.62015831,-74.6175965,RES1,3001,,17,NE,1976,1976,3102,2,1,4541.705947,4541.705947,3507,NO,23.71,29.02,1,0.9,6106,109.862521,118.36707,128.117877,132.676955,I,Above,Gable,0,5701,,26.36412516,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 24550,NJBF000092495,2611 FORD AVENUE,Mullica,NJ,39.62908094,-74.65582735,RES1,3001,,16,NE,1990,1990,3102,1,1,1675.991777,1675.991777,3507,NO,14.97,22.12,1,-0.36,6106,109.387106,117.821865,127.625883,131.822209,I,Above,Gable,0,5701,,18.54631722,0,0,,,,1,1,,0.03,nav,1,1990,1,, 24551,NJBF000092000,2829 SCHOONER LANE,Mullica,NJ,39.62096366,-74.61678239,RES1,3001,,17,NE,1980,1980,3102,1,1,3369.724056,3369.724056,3507,NO,13.24,22.01,1,0.41,6106,109.86951,118.367864,128.119655,132.680308,I,Above,Gable,0,5701,,17.62671345,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 24552,NJBF000091867,5322 RIVER DRIVE,Mullica,NJ,39.61846273,-74.60604286,RES1,3001,,16,NE,1950,1950,3102,1,1,1150.892207,1150.892207,3507,NO,20.65,34.49,1,1.95,6106,110.010596,118.529444,128.265173,132.926685,I,Above,Gable,0,5701,,27.5715443,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24553,NJBF000092076,4815 PLEASANT MILLS ROAD,Mullica,NJ,39.62210366,-74.64284354,RES1,3001,0,16,NE,1970,1970,3102,2,1,1343.512296,1343.512296,3507,NO,39.57,49.11,1,2.48,6112,109.557325,118.04526,127.822924,132.167661,I,Above,Gable,0,5701,,44.33615856,0,0,,,,1,1,,0.35,nav,1,1970,2,, 24554,NJBF000092017,4904 PLEASANT MILLS ROAD,Mullica,NJ,39.62120791,-74.63749776,RES1,3001,,16,NE,1964,1964,3102,1,1,1224.975409,1224.975409,3507,NO,18.4,24.11,1,0.58,6112,109.622237,118.11731,127.888487,132.281652,I,Above,Hip,0,5701,,21.25522614,0,0,,,,1,1,,0.35,nav,1,1964,1,, 24555,NJBF000092175,4814 PLEASANT MILLS ROAD,Mullica,NJ,39.623836,-74.6419265,RES1,3001,,16,NE,1949,1949,3102,2,1,1028.476521,1028.476521,3507,NO,24.72,36.48,1,2.03,6106,109.562097,118.036843,127.817707,132.158706,I,Above,Gable,0,5701,,30.59818821,0,0,,,,1,1,,0.03,nav,1,1949,2,, 24556,NJBF000092181,4814 PLEASANT MILLS ROAD,Mullica,NJ,39.62396261,-74.64146768,RES1,3001,,16,NE,1949,1949,3102,2,1,1092.846058,1092.846058,3507,NO,28.41,41.31,1,2.37,6106,109.566946,118.04074,127.821516,132.165369,I,Above,Gable,0,5701,,34.8640057,0,0,,,,1,1,,0.03,nav,1,1949,2,, 24557,NJBF000091904,2800 MUSKET LANE,Mullica,NJ,39.61915801,-74.61792685,RES1,3001,,17,NE,1987,1987,3102,3,1,3391.043708,3391.043708,3507,NO,59.78,71.46,1,2.46,6106,109.862096,118.374389,128.123329,132.685915,I,Above,Gable,0,5701,,65.61674346,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 24558,NJBF000092163,2819 CEDAR LANE,Mullica,NJ,39.62364383,-74.62233095,RES1,3001,,16,NE,1970,1970,3102,2,1,596.5689107,596.5689107,3507,NO,23.13,28.89,1,1.96,6106,109.792947,118.270142,128.03321,132.53279,I,Above,Gable,0,5701,,26.01110358,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24559,NJBF000092587,4500 PLEASANT MILLS ROAD,Mullica,NJ,39.63073083,-74.65791765,RES1,3001,,16,NE,1865,1865,3102,1,1,1905.123332,1905.123332,3507,NO,18.34,30.64,1,-0.03,6112,109.3584,117.780792,127.590282,131.759291,I,Above,Gable,0,5701,,24.49453526,0,0,,,,1,1,,0.03,nav,1,1865,1,, 24560,NJBF000092441,4525 PLEASANT MILLS ROAD,Mullica,NJ,39.62821741,-74.65764458,RES1,3001,,16,NE,1987,1987,3102,1,1,1960.436576,1960.436576,3507,NO,13.49,21.68,1,0.12,6112,109.369725,117.810989,127.61429,131.801829,I,Above,Gable,0,5701,,17.58490372,0,0,,,,1,1,,0.35,nav,1,1987,1,, 24561,NJBF000092452,4525 PLEASANT MILLS ROAD,Mullica,NJ,39.62844768,-74.65798854,RES1,3001,,16,NE,1987,1987,3102,1,1,2176.472949,2176.472949,3507,NO,16.6,24.06,1,1.55,6112,109.365147,117.804676,127.608773,131.792087,I,Above,Gable,0,5701,,20.32924312,0,0,,,,1,1,,0.35,nav,1,1987,1,, 24562,NJBF000092180,2813 CYPRESS LANE,Mullica,NJ,39.62395555,-74.62347304,RES1,3001,,NaN,NE,1950,0,3102,2,1,1004.15894,1004.15894,3507,NO,29.16,36.22,1,1.7,6106,109.778168,118.252884,128.017732,132.506188,I,Above,Gable,0,5701,,32.68910908,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24563,NJBF000092575,4506 PLEASANT MILLS ROAD,Mullica,NJ,39.63039224,-74.65742556,RES1,3001,,16,NE,1985,1962,3102,1,1,5769.712253,5769.712253,3507,NO,19.47,25.29,1,2.3,6112,109.36498,117.789907,127.598227,131.773343,I,Above,Flat,0,5701,,22.37818089,0,0,,,,1,1,,0.15,nav,1,1985,1,, 24564,NJBF000092093,5021 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.622357,-74.6238505,RES1,3001,,16,NE,1971,1975,3102,2,1,1643.428972,1643.428972,3507,NO,26.59,37.94,1,1.68,6106,109.779347,118.266391,128.027991,132.523343,I,Above,Flat,0,5701,,32.26228433,0,0,,,,1,1,,0.03,nav,1,1971,2,, 24565,NJBF000092336,4610 PLEASANT MILLS ROAD,Mullica,NJ,39.62666657,-74.65483846,RES1,3001,,16,NE,1973,1973,3102,2,1,3522.873978,3522.873978,3507,NO,34.37,42.61,1,2.94,6106,109.40611,117.859055,127.656641,131.876487,I,Above,Hip,0,5701,,38.48611553,0,0,,,,1,1,,0.03,nav,1,1973,2,, 24566,NJBF000092232,2824 MULLICA RIVER DRIVE,Mullica,NJ,39.62516167,-74.62387898,RES1,3001,,16,NE,2014,2014,3102,1,1,1324.31726,1324.31726,3507,NO,15.88,25.58,1,0.25,6106,109.768999,118.234388,128.002359,132.48005,I,Above,Gable,0,5701,,20.72692501,0,0,,,,1,1,,0.03,nav,1,2014,1,, 24567,NJBF000092849,4312 PLEASANT MILLS ROAD,Mullica,NJ,39.63414121,-74.65935011,RES1,3001,,16,NE,1957,1957,3102,1,1,3225.846475,3225.846475,3507,NO,21.65,28.61,1,2.94,6112,109.331197,117.728114,127.546901,131.682331,I,Above,Gable,0,5701,,25.13074948,0,0,,,,1,1,,0.35,nav,1,1957,1,, 24568,NJBF000092835,4312 PLEASANT MILLS ROAD,Mullica,NJ,39.634066,-74.6594995,RES1,3001,,16,NE,1957,1957,3102,1,1,1075.603284,1075.603284,3507,NO,14.38,22.67,1,1.52,6112,109.329807,117.72729,127.546,131.680737,I,Above,Gable,0,5701,,18.52136674,0,0,,,,1,1,,0.35,nav,1,1957,1,, 24569,NJBF000092195,,Mullica,NJ,39.6245145,-74.622971,RES1,3001,,NaN,NE,1969,0,3102,2,1,893.5492844,893.5492844,3507,NO,29.07,40.46,1,0.5,6106,109.782166,118.252605,128.018245,132.507278,I,Above,Gable,0,5701,,34.76407151,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24570,NJBF000092161,5036 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62359384,-74.62023501,RES1,3001,,16,NE,1960,1950,3102,2,1,1369.483145,1369.483145,3507,NO,34.29,48.96,1,-0.73,6106,109.818283,118.295998,128.056963,132.573713,I,Above,Gable,0,5701,,41.62655753,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24571,NJBF000092326,2755 MCCORMICK AVENUE,Mullica,NJ,39.6265282,-74.63379693,RES1,3001,,16,NE,2004,2004,3102,1,1,570.2781572,570.2781572,3507,NO,11.24,25.54,1,0.57,6106,109.647131,118.101588,127.88173,132.270905,I,Above,Hip,0,5701,,18.3897822,0,0,,,,1,1,,0.03,nav,1,2004,1,, 24572,NJBF000091926,2688 EIGHTH AVENUE,Mullica,NJ,39.6196203,-74.6329565,RES1,3001,,NaN,NE,1969,0,3102,2,1,4314.80393,4314.80393,3507,NO,38.41,52.23,1,1.36,6112,109.680791,118.18836,127.952071,132.391598,I,Above,Gable,0,5701,,45.32261693,0,0,,,,1,1,,0.15,nav,1,1969,2,, 24573,NJBF000091980,4941 PLEASANT MILLS ROAD,Mullica,NJ,39.62062016,-74.63277004,RES1,3001,,16,NE,1927,1927,3102,1,1,668.5102226,668.5102226,3507,NO,15.78,22.86,1,2.26,6112,109.679587,118.179464,127.945239,132.379954,I,Above,Gable,0,5701,,19.32066837,0,0,,,,1,1,,0.35,nav,1,1927,1,, 24574,NJBF000091958,4955 PLEASANT MILLS ROAD,Mullica,NJ,39.62012452,-74.63257481,RES1,3001,,17,NE,1998,1998,3102,2,1,8367.861896,8367.861896,3507,NO,35,44.2,1,0.38,6112,109.683572,118.187274,127.951774,132.391171,I,Above,Hip,0,5701,,39.59897189,0,0,,,,1,1,,0.35,nav,1,1998,2,, 24575,NJBF000092396,2653 THURSTON AVENUE,Mullica,NJ,39.62749223,-74.64930015,RES1,3001,,16,NE,1955,1955,3102,1,1,1254.355952,1254.355952,3507,NO,19.39,26.15,1,1.7,6106,109.465669,117.912436,127.707732,131.966308,I,Above,Gable,0,5701,,22.76858877,0,0,,,,1,1,,0.03,nav,1,1955,1,, 24576,NJBF000091898,5026 PLEASANT MILLS ROAD,Mullica,NJ,39.61907395,-74.62964648,RES1,3001,,16,NE,1945,1945,3102,1,1,1371.88829,1371.88829,3507,NO,19.72,32.63,1,2.25,6110,109.721778,118.233795,127.993375,132.462805,I,Above,Gable,0,5701,,26.17508634,0,0,,,,1,1,,0.35,nav,1,1945,1,, 24577,NJBF000091902,5032 PLEASANT MILLS ROAD,Mullica,NJ,39.6190953,-74.6291731,RES1,3001,,17,NE,1984,1984,3102,2,1,2440.324041,2440.324041,3507,NO,34.81,46.55,1,-0.2,6110,109.727319,118.239208,127.998411,132.471491,I,Above,Gable,0,5701,,40.68195167,0,0,,,,1,1,,0.03,nav,1,1984,2,, 24578,NJBF000092210,2664 CAMP SWISS AVENUE,Mullica,NJ,39.62475219,-74.64313543,RES1,3001,,16,NE,1960,1960,3102,1,1,1905.636284,1905.636284,3507,NO,14.38,26.77,1,-0.3,6106,109.545112,118.012827,127.796795,132.122262,I,Above,Gable,0,5701,,20.57593146,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24579,NJBF000092178,2808 CYPRESS LANE,Mullica,NJ,39.62393417,-74.62403451,RES1,3001,,16,NE,1960,1960,3102,1,1,765.6827995,765.6827995,3507,NO,17.81,24.45,1,2.15,6106,109.771536,118.246389,128.011714,132.495783,I,Above,Gable,0,5701,,21.12841998,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24580,NJBF000091829,5344 RIVER DRIVE,Mullica,NJ,39.61786465,-74.60434247,RES1,3001,,16,NE,1972,1972,3102,2,1,1486.822281,1486.822281,3507,NO,24.81,34.79,1,2.67,6103,110.034004,118.557716,128.290449,132.969037,I,Above,Gable,0,5701,,29.79913339,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 24581,NJBF000092053,4757 PLEASANT MILLS ROAD,Mullica,NJ,39.62177776,-74.64786788,RES1,3001,,16,NE,1972,1972,3102,2,1,2538.009985,2538.009985,3507,NO,36.51,44.72,1,1.51,6112,109.50085,117.991041,127.772,132.078801,I,Above,Gable,0,5701,,40.61633403,0,0,,,,1,1,,0.35,nav,1,1972,2,, 24582,NJBF000092278,2621 THURSTON AVENUE,Mullica,NJ,39.625984,-74.65076,RES1,3001,,15,NE,1960,1960,3102,1,1,1212.372943,1212.372943,3507,NO,12.86,18.2,1,0.08,6106,109.454195,117.912358,127.705255,131.961926,I,Above,Gable,0,5701,,15.52850511,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24583,NJBF000092365,2771 MCCORMICK AVENUE,Mullica,NJ,39.62700797,-74.63525291,RES1,3001,,16,NE,1951,1951,3102,1,1,1443.995632,1443.995632,3507,NO,13.6,22.12,1,2.69,6103,109.628482,118.079219,127.861754,132.236162,I,Above,Flat,0,5701,,17.8591191,0,0,,,,1,1,,0.03,nav,1,1951,1,, 24584,NJBF000092419,4548 INDIAN CABIN TERRACE,Mullica,NJ,39.62783443,-74.65544777,RES1,3001,,16,NE,1956,1956,3102,1,2,2407.311611,2407.311611,3507,NO,15.28,24.92,1,2.18,6106,109.395453,117.839597,127.640382,131.847814,I,Above,Gable,0,5701,,20.09592269,0,0,,,,1,1,,0.03,nav,1,1956,1,, 24585,NJBF000092190,4800 PLEASANT MILLS ROAD,Mullica,NJ,39.62431,-74.642256,RES1,3001,649,18,NE,1969,1900,3102,2,1,547.4166568,547.4166568,3507,NO,25.58,36.85,1,0.23,6106,109.556702,118.027818,127.810044,132.145373,I,Above,Gable,0,5701,,31.213044,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24586,NJBF000092218,4800 PLEASANT MILLS ROAD,Mullica,NJ,39.6249096,-74.64171345,RES1,3001,649,18,NE,1969,1900,3102,2,1,5328.002075,5328.002075,3507,NO,41.55,53.82,1,2.62,6106,109.560923,118.027481,127.810642,132.146484,I,Above,Flat,0,5701,,47.6824235,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24587,NJBF000091941,5121 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.61985066,-74.62027676,RES1,3001,,16,NE,1987,1987,3102,2,1,5313.043017,5313.043017,3507,NO,37.47,51.47,1,-0.67,6106,109.831182,118.337897,128.090585,132.630113,I,Above,Gable,0,5701,,44.46564828,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 24588,NJBF000091975,2823 SCHOONER LANE,Mullica,NJ,39.62055889,-74.61713543,RES1,3001,,17,NE,1981,1978,3102,2,1,2229.754349,2229.754349,3507,NO,29.91,35.62,1,-0.16,6106,109.866686,118.368157,128.119399,132.679711,I,Above,Gable,0,5701,,32.76484904,0,1.2,,,,1,1,,0.03,nav,1,1981,2,, 24589,NJBF000092434,4540 PLEASANT MILLS ROAD,Mullica,NJ,39.62809247,-74.65645156,RES1,3001,,16,NE,1962,1962,3102,1,1,2984.480993,2984.480993,3507,NO,12.35,27.13,1,0.46,6106,109.383408,117.825609,127.627743,131.82554,I,Above,Gable,0,5701,,19.74057867,0,0,,,,1,1,,0.03,nav,1,1962,1,, 24590,NJBF000092213,2724 MCCORMICK AVENUE,Mullica,NJ,39.62478299,-74.63562533,RES1,3001,,16,NE,2016,2016,3102,1,1,1591.973234,1591.973234,3507,NO,12.72,26.9,1,0.42,6106,109.631868,118.099621,127.877326,132.262829,I,Above,Gable,0,5701,,19.8124237,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24591,NJBF000092209,2724 MCCORMICK AVENUE,Mullica,NJ,39.62473555,-74.63592684,RES1,3001,,16,NE,2016,2016,3102,1,1,1924.836433,1924.836433,3507,NO,17.63,29.28,1,-0.46,6106,109.628512,118.096612,127.874471,132.257845,I,Above,Gable,0,5701,,23.45360922,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24592,NJBF000091801,2721 SEVENTH AVENUE,Mullica,NJ,39.6174241,-74.62586759,RES1,3001,951,NaN,NE,1969,0,3102,2,1,8239.729418,8239.729418,3507,NO,28.17,39.79,1,2.19,6110,109.772456,118.297541,128.050107,132.560031,I,Above,Flat,0,5701,,33.97810866,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24593,NJBF000092887,4304 PLEASANT MILLS ROAD,Mullica,NJ,39.6347215,-74.6601915,RES1,3001,,16,NE,1920,1920,3102,1,1,2495.953842,2495.953842,3507,NO,13.23,26.59,1,2.65,6112,109.319993,117.712618,127.533425,131.658402,I,Above,Gable,0,5701,,19.91224808,0,0,,,,1,1,,0.35,nav,1,1920,1,, 24594,NJBF000092238,2833 MULLICA RIVER DRIVE,Mullica,NJ,39.62526524,-74.62292609,RES1,3001,,16,NE,2003,2003,3102,2,1,2154.91872,2154.91872,3507,NO,35.41,48.1,1,1.88,6106,109.780001,118.244647,128.011955,132.49669,I,Above,Gable,0,5701,,41.7555464,0,0,,,,1,1,,0.03,nav,1,2003,2,, 24595,NJBF000092521,4520 INDIAN CABIN TERRACE,Mullica,NJ,39.6295515,-74.6552865,RES1,3001,,16,NE,1960,1960,3102,1,1,606.7724467,606.7724467,3507,NO,10.59,24.58,1,-0.07,6106,109.391566,117.822786,127.627524,131.825084,I,Above,Gable,0,5701,,17.58308643,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24596,NJBF000091984,5120 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62068781,-74.62024136,RES1,3001,,17,NE,1992,1992,3102,2,1,2275.7593,2275.7593,3507,NO,26.49,34.32,1,1.75,6106,109.828638,118.328863,128.083358,132.618005,I,Above,Gable,0,5701,,30.40481192,0,1.2,,,,1,1,,0.03,nav,1,1992,2,, 24597,NJBF000091793,2710 SEVENTH AVENUE,Mullica,NJ,39.61725816,-74.62726802,RES1,3001,29,16,NE,1969,1965,3102,2,1,1574.75295,1574.75295,3507,NO,33.11,38.45,1,-0.1,6110,109.756291,118.282546,128.036016,132.53581,I,Above,Gable,0,5701,,35.78166249,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24598,NJBF000091805,2710 SEVENTH AVENUE,Mullica,NJ,39.61746216,-74.62772894,RES1,3001,29,16,NE,1969,1965,3102,2,1,632.2175457,632.2175457,3507,NO,29.92,35.61,1,2.79,6110,109.750092,118.274729,128.029058,132.523898,I,Above,Gable,0,5701,,32.76576503,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24599,NJBF000091810,2710 SEVENTH AVENUE,Mullica,NJ,39.61753834,-74.62764056,RES1,3001,29,16,NE,1969,1965,3102,2,1,593.8014004,593.8014004,3507,NO,28.41,39.55,1,0.44,6110,109.750882,118.274937,128.029352,132.524419,I,Above,Gable,0,5701,,33.97916053,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24600,NJBF000091814,2710 SEVENTH AVENUE,Mullica,NJ,39.61757453,-74.62730987,RES1,3001,29,16,NE,1969,1965,3102,2,1,2846.568501,2846.568501,3507,NO,26.63,33.58,1,0.75,6110,109.754703,118.278499,128.032698,132.530174,I,Above,Gable,0,5701,,30.10514452,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24601,NJBF000092187,4812 PLEASANT MILLS ROAD,Mullica,NJ,39.6241816,-74.64170546,RES1,3001,,16,NE,1972,1972,3102,1,2,1325.767801,1325.767801,3507,NO,18.19,31.98,1,1.34,6106,109.563476,118.035589,127.817065,132.157622,I,Above,Gable,0,5701,,25.08509068,0,0,,,,1,1,,0.03,nav,1,1972,1,, 24602,NJBF000092354,4656 RIVERSIDE DRIVE,Mullica,NJ,39.62687039,-74.64900638,RES1,3001,,16,NE,1940,1940,3102,1,1,700.6160327,700.6160327,3507,NO,16.58,31.51,1,-0.95,6106,109.471077,117.922558,127.716163,131.981096,I,Above,Gable,0,5701,,24.04811562,0,0,,,,1,1,,0.03,nav,1,1940,1,, 24603,NJBF000092383,4652 RIVERSIDE DRIVE,Mullica,NJ,39.62729574,-74.64869338,RES1,3001,,16,NE,1993,1993,3102,1,1,1364.227498,1364.227498,3507,NO,14.88,22.18,1,2.45,6106,109.473195,117.921453,127.715812,131.980499,I,Above,Gable,0,5701,,18.52784373,0,0,,,,1,1,,0.03,nav,1,1993,1,, 24604,NJBF000091913,5007 PLEASANT MILLS ROAD,Mullica,NJ,39.61938128,-74.63144667,RES1,3001,,16,NE,1978,1978,3102,2,1,2897.85097,2897.85097,3507,NO,28.41,43.01,1,2.81,6112,109.699413,118.208929,127.970784,132.423888,I,Above,Gable,0,5701,,35.70991557,0,1.1,,,,1,1,,0.35,nav,1,1978,2,, 24605,NJBF000092173,,Mullica,NJ,39.6238145,-74.622734,RES1,3001,,NaN,NE,1970,0,3102,2,1,800.7090854,800.7090854,3507,NO,38.59,46.4,1,-0.35,6106,109.787509,118.263358,128.027193,132.52247,I,Above,Gable,0,5701,,42.49278827,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24606,NJBF000092179,,Mullica,NJ,39.6239392,-74.62276601,RES1,3001,,NaN,NE,1970,0,3102,2,1,1177.63524,1177.63524,3507,NO,29.53,40.48,1,-0.24,6106,109.786682,118.261571,128.025716,132.519967,I,Above,Gable,0,5701,,35.00579877,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24607,NJBF000091933,5014 PLEASANT MILLS ROAD,Mullica,NJ,39.61970794,-74.63088479,RES1,3001,,15,NE,1950,1950,3102,1,1,947.3694004,947.3694004,3507,NO,14.02,26.11,1,0.38,6110,109.704938,118.21197,127.974053,132.429594,I,Above,Hip,0,5701,,20.06341808,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24608,NJBF000092050,2800 SMUGGLERS LANE,Mullica,NJ,39.62169737,-74.61753224,RES1,3001,,16,NE,1980,1980,3102,2,1,5099.092989,5099.092989,3507,NO,21,34.4,1,-0.47,6106,109.857765,118.350369,128.104503,132.654646,I,Above,Hip,0,5701,,27.69886544,0,0,,,,1,1,,0.03,nav,1,1980,2,, 24609,NJBF000092327,4662 RIVERSIDE DRIVE,Mullica,NJ,39.62655163,-74.64887309,RES1,3001,,16,NE,1991,1991,3102,1,1,3226.709253,3226.709253,3507,NO,14.87,25.19,1,1.01,6106,109.473645,117.927538,127.720294,131.988339,I,Above,Hip,0,5701,,20.0304531,0,0,,,,1,1,,0.03,nav,1,1991,1,, 24610,NJBF000092153,4769 PLEASANT MILLS ROAD,Mullica,NJ,39.62349717,-74.64426595,GOV2,3001,,NaN,E,1969,0,3401,2,1,4793.62695,4793.62695,3507,NO,32.18,46.82,1,-0.82,6110,109.536344,118.013587,127.79559,132.120053,I,Above,Hip,0,NaN,,39.50351074,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24611,NJBF000092291,4663 RIVERSIDE DRIVE,Mullica,NJ,39.62615242,-74.64918854,RES1,3001,,16,NE,1920,1920,3102,1,1,1078.291181,1078.291181,3507,NO,18.99,24.98,1,2.39,6106,109.4714,117.928319,127.720388,131.988491,I,Above,Gable,0,5701,,21.98552749,0,0,,,,1,1,,0.03,nav,1,1920,1,, 24612,NJBF000092428,4646 RIVERSIDE DRIVE,Mullica,NJ,39.62803317,-74.64854348,RES1,3001,,16,NE,1933,1933,3102,1,1,1722.032293,1722.032293,3507,NO,15.79,24.4,1,-0.05,6106,109.472418,117.915096,127.711073,131.972209,I,Above,Gable,0,5701,,20.09361739,0,0,,,,1,1,,0.03,nav,1,1933,1,, 24613,NJBF000091919,5018 PLEASANT MILLS ROAD,Mullica,NJ,39.61951783,-74.63053486,RES1,3001,,16,NE,1951,1951,3102,1,1,1724.756103,1724.756103,3507,NO,21.26,35.9,1,1.96,6112,109.709727,118.218251,127.979603,132.439137,I,Above,Gable,0,5701,,28.57902833,0,0,,,,1,1,,0.03,nav,1,1951,1,, 24614,NJBF000091962,2810 SCHOONER LANE,Mullica,NJ,39.62022373,-74.61829492,RES1,3001,,17,NE,1984,1984,3102,2,1,4322.65234,4322.65234,3507,NO,27.47,37.58,1,-0.51,6106,109.853822,118.357801,128.109423,132.66251,I,Above,Gable,0,5701,,32.52699984,0,1.2,,,,1,1,,0.03,nav,1,1984,2,, 24615,NJBF000092443,2644 THURSTON AVENUE,Mullica,NJ,39.62826534,-74.65006727,RES1,3001,,16,NE,1930,1982,3102,2,1,1074.047063,1074.047063,3507,NO,38.68,52.2,1,2.18,6106,109.454414,117.895327,127.693044,131.940509,I,Above,Gable,0,5701,,45.44183269,0,0,,,,1,1,,0.03,nav,1,1930,2,, 24616,NJBF000092313,4670 RIVERSIDE DRIVE,Mullica,NJ,39.62635125,-74.64862268,RES1,3001,,16,NE,1950,1950,3102,1,1,3601.659426,3601.659426,3507,NO,19.03,31.53,1,0.77,6106,109.477149,117.93257,127.72466,131.995995,I,Above,Hip,0,5701,,25.2801226,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24617,NJBF000092259,2832 MULLICA RIVER DRIVE,Mullica,NJ,39.62566038,-74.62355026,RES1,3001,,16,NE,1958,1958,3102,1,1,2387.064174,2387.064174,3507,NO,17.81,25.81,1,0.75,6106,109.77113,118.232698,128.001497,132.478747,I,Above,Hip,0,5701,,21.80962421,0,0,,,,1,1,,0.03,nav,1,1958,1,, 24618,NJBF000090529,5900 PLEASANT MILLS ROAD,Mullica,NJ,39.58754782,-74.59753504,RES1,3001,,16,NE,1948,1948,3101,1,1,773.2136227,773.2136227,3505,NO,21.44,27.39,3,5.8,6112,110.227961,118.992711,128.662377,133.572378,I,Above,Gable,0,5701,,24.41651617,0,0,,,,1,1,,0.35,nav,1,1948,1,, 24619,NJBF000092412,4550 INDIAN CABIN TERRACE,Mullica,NJ,39.62775376,-74.65555462,RES1,3001,,17,NE,1965,1965,3102,1,1,555.7496506,555.7496506,3507,NO,21.17,30.09,1,2.61,6106,109.394522,117.839269,127.639944,131.847047,I,Above,Gable,0,5701,,25.63191159,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24620,NJBF000092062,5144 VENICE AVENUE,Mullica,NJ,39.62192373,-74.61588099,RES1,3001,,16,NE,1960,1960,3102,1,1,2283.097123,2283.097123,3507,NO,14.08,23.07,1,1.26,6106,109.876971,118.367942,128.120975,132.682964,I,Above,Gable,0,5701,,18.57749469,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24621,NJBF000092139,2700 MCCORMICK AVENUE,Mullica,NJ,39.62318559,-74.63664481,RES1,3001,,16,NE,1982,1928,3102,1,1,1339.641814,1339.641814,3507,NO,14.23,20.61,1,1.15,6103,109.625464,118.105409,127.880338,132.267777,I,Above,Gable,0,5701,,17.42093885,0,0,,,,1,1,,0.03,nav,1,1982,1,, 24622,NJBF000092135,2700 MCCORMICK AVENUE,Mullica,NJ,39.623126,-74.636561,RES1,3001,,16,NE,1982,1928,3102,1,1,500.2351602,500.2351602,3507,NO,18.14,32.62,1,-0.93,6106,109.626647,118.107056,127.881777,132.270269,I,Above,Gable,0,5701,,25.38223958,0,0,,,,1,1,,0.03,nav,1,1982,1,, 24623,NJBF000092244,2840 CEDAR LANE,Mullica,NJ,39.6254003,-74.62140893,RES1,3001,,16,NE,1978,1978,3102,1,1,2809.934862,2809.934862,3507,YES,13.91,23.46,1,2.01,6106,109.797656,118.261346,128.027521,132.523652,I,Above,Gable,0,5701,,18.68157896,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 24624,NJBF000092065,2832 SMUGGLERS LANE,Mullica,NJ,39.62198215,-74.61799706,RES1,3001,,16,NE,2000,2000,3102,2,1,3323.293537,3323.293537,3507,NO,28.13,38.33,1,2.32,6106,109.851105,118.341463,128.096677,132.641339,I,Above,Hip,0,5701,,33.23212586,0,0,,,,1,1,,0.03,nav,1,2000,2,, 24625,NJBF000092399,2649 THURSTON AVENUE,Mullica,NJ,39.62752481,-74.64971722,RES1,3001,,16,NE,1957,1957,3102,1,1,1632.995914,1632.995914,3507,NO,13.23,23.81,1,2.31,6106,109.460845,117.907358,127.703057,131.958091,I,Above,Hip,0,5701,,18.52263903,0,0,,,,1,1,,0.03,nav,1,1957,1,, 24626,NJBF000092151,2800 CYPRESS LANE,Mullica,NJ,39.623474,-74.624361,RES1,3001,,16,NE,1950,1950,3102,1,1,1582.356586,1582.356586,3507,NO,19.18,26.08,1,1.45,6106,109.769286,118.24767,128.012258,132.496566,I,Above,Gable,0,5701,,22.6271243,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24627,NJBF000092132,4755 PLEASANT MILLS ROAD,Mullica,NJ,39.62306924,-74.64667812,RES1,3001,,16,NE,1970,1970,3102,1,1,1593.402181,1593.402181,3507,NO,17.57,29.72,1,2.33,6112,109.510175,117.990586,127.773546,132.081516,I,Above,Hip,0,5701,,23.64531704,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 24628,NJBF000091870,5316 RIVER DRIVE,Mullica,NJ,39.6185065,-74.606678,RES1,3001,,16,NE,1950,1950,3102,1,1,1432.785444,1432.785444,3507,NO,21.8,28.17,1,2.99,6106,110.002546,118.520983,128.257449,132.913651,I,Above,Gable,0,5701,,24.98113119,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24629,NJBF000090993,2779 GREEN BANK ROAD,Mullica,NJ,39.59858084,-74.58054464,RES1,3001,,16,NE,1960,1960,3102,1,1,2434.107956,2434.107956,3507,NO,18.57,27.9,1,0.45,6106,110.413508,119.093449,128.76564,133.738156,I,Above,Gable,0,5701,,23.23503418,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24630,NJBF000091974,5168 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62051407,-74.61550559,RES1,3001,,19,NE,2008,2008,3102,2,1,6233.938963,6233.938963,3507,NO,34.74,44.71,1,-0.25,6106,109.886653,118.388609,128.138174,132.711798,I,Above,Hip,0,5701,,39.72640316,0,0,,,,1,1,,0.03,nav,1,2008,2,, 24631,NJBF000092041,4870 PLEASANT MILLS ROAD,Mullica,NJ,39.62157303,-74.63812605,RES1,3001,,16,NE,1974,1974,3102,2,1,2314.067489,2314.067489,3507,NO,31.94,37.34,1,2.32,6106,109.613697,118.105936,127.878468,132.264291,I,Above,Gable,0,5701,,34.6390117,0,1.2,,,,1,1,,0.03,nav,1,1974,2,, 24632,NJBF000092223,4768 PLEASANT MILLS ROAD,Mullica,NJ,39.62497103,-74.64345743,RES1,3001,,16,NE,1970,1970,3102,2,1,1976.479924,1976.479924,3507,NO,24.75,31.3,1,-0.79,6106,109.540679,118.006716,127.791454,132.112941,I,Above,Gable,0,5701,,28.02424604,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24633,NJBF000092249,4768 PLEASANT MILLS ROAD,Mullica,NJ,39.62549967,-74.64326349,RES1,3001,,16,NE,1970,1970,3102,2,1,1332.155156,1332.155156,3507,NO,31.9,45.27,1,0.76,6103,109.54112,118.003132,127.788936,132.10859,I,Above,Gable,0,5701,,38.58841755,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24634,NJBF000092204,4744 PLEASANT MILLS ROAD,Mullica,NJ,39.62470556,-74.64642591,RES1,3001,,15,NE,1950,1950,3102,1,1,1011.733391,1011.733391,3507,NO,20.83,34.33,1,2.03,6106,109.507615,117.975578,127.762104,132.061561,I,Above,Flat,0,5701,,27.57890463,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24635,NJBF000092270,4680 RIVERSIDE DRIVE,Mullica,NJ,39.62587069,-74.64835042,RES1,3001,,16,NE,1964,1964,3102,1,1,659.4317942,659.4317942,3507,NO,14.37,20.8,1,-0.92,6106,109.481846,117.940913,127.731668,132.008274,I,Above,Hip,0,5701,,17.58758262,0,0,,,,1,1,,0.03,nav,1,1964,1,, 24636,NJBF000092079,4852 PLEASANT MILLS ROAD,Mullica,NJ,39.62216968,-74.63910967,RES1,3001,,16,NE,1928,1969,3102,2,1,1703.919967,1703.919967,3507,NO,28.5,39.08,1,0.37,6106,109.600256,118.087868,127.862582,132.236736,I,Above,Gable,0,5701,,33.79029474,0,0,,,,1,1,,0.03,nav,1,1928,2,, 24637,NJBF000091859,,Mullica,NJ,39.61832438,-74.60584044,RES1,3001,,NaN,NE,1959,0,3102,2,1,1180.44054,1180.44054,3507,NO,23.17,36.74,1,0.77,6106,110.013636,118.533593,128.268821,132.932778,I,Above,Gable,0,5701,,29.95347384,0,0,,,,1,1,,0.03,nav,1,1959,2,, 24638,NJBF000092131,4805 PLEASANT MILLS ROAD,Mullica,NJ,39.62305998,-74.64325916,RES1,3001,,16,NE,1975,1966,3102,1,1,2162.533537,2162.533537,3507,NO,16.3,23.38,1,-0.44,6110,109.549363,118.029979,127.810161,132.145467,I,Above,Gable,0,5701,,19.84019478,0,0,,,,1,1,,0.35,nav,1,1975,1,, 24639,NJBF000092675,4410 PLEASANT MILLS ROAD,Mullica,NJ,39.63200549,-74.65975862,RES1,3001,,16,NE,1955,1955,3102,1,1,1342.703585,1342.703585,3507,NO,11.36,24.81,1,-0.54,6106,109.33382,117.746714,127.560595,131.706721,I,Above,Gable,0,5701,,18.08178286,0,0,,,,1,1,,0.03,nav,1,1955,1,, 24640,NJBF000091843,2735 SEVENTH AVENUE,Mullica,NJ,39.61805444,-74.62523485,RES1,3001,,16,NE,1978,1978,3102,1,1,3469.485803,3469.485803,3507,NO,12.92,25.79,1,2.41,6106,109.77786,118.298114,128.051476,132.562524,I,Above,Gable,0,5701,,19.35707307,0,1.2,,,,1,1,,0.03,nav,1,1978,1,, 24641,NJBF000092184,2812 CYPRESS LANE,Mullica,NJ,39.6240975,-74.623815,RES1,3001,,16,NE,1949,1949,3102,2,1,870.5776487,870.5776487,3507,NO,35.95,49.82,1,2.53,6106,109.77358,118.247187,128.012675,132.497502,I,Above,Gable,0,5701,,42.88895516,0,0,,,,1,1,,0.03,nav,1,1949,2,, 24642,NJBF000093250,4196 PLEASANT MILLS ROAD,Mullica,NJ,39.6378285,-74.6600565,RES1,3001,,16,NE,1970,1970,3102,2,1,1052.057997,1052.057997,3507,NO,35.23,47.37,1,0.31,6112,109.310969,117.680443,127.508853,131.614626,I,Above,Gable,0,5701,,41.3004941,0,0,,,,1,1,,0.35,nav,1,1970,2,, 24643,NJBF000092201,2815 MULLICA RIVER DRIVE,Mullica,NJ,39.62468348,-74.62321707,RES1,3001,,16,NE,1983,1983,3102,2,1,691.3448125,691.3448125,3507,NO,37.89,52.05,1,-0.35,6106,109.77862,118.24774,128.013997,132.499999,I,Above,Gable,0,5701,,44.97037902,0,0,,,,1,1,,0.03,nav,1,1983,2,, 24644,NJBF000091875,2869 FIFTH AVENUE,Mullica,NJ,39.61857148,-74.60828583,RES1,3001,,16,NE,1976,1976,3102,2,1,1635.147794,1635.147794,3507,NO,22.45,33.93,1,0.69,6106,109.982381,118.500152,128.238376,132.881407,I,Above,Gable,0,5701,,28.18927756,0,0,,,,1,1,,0.03,nav,1,1976,2,, 24645,NJBF000092420,4648 RIVERSIDE DRIVE,Mullica,NJ,39.62787487,-74.6484727,RES1,3001,,16,NE,1960,1947,3102,1,1,2327.706954,2327.706954,3507,NO,15.72,27,1,-0.5,6106,109.473742,117.917618,127.713166,131.97588,I,Above,Hip,0,5701,,21.35856041,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24646,NJBF000092281,2844 MULLICA RIVER DRIVE,Mullica,NJ,39.626004,-74.62264683,RES1,3001,,16,NE,1992,1960,3102,1,1,1548.763993,1548.763993,3507,NO,17.44,24.16,1,-0.39,6106,109.780663,118.239626,128.008359,132.49076,I,Above,Gable,0,5701,,20.80055467,0,0,,,,1,1,,0.03,nav,1,1992,1,, 24647,NJBF000091982,2818 SCHOONER LANE,Mullica,NJ,39.62063564,-74.61779933,RES1,3001,,17,NE,1989,1989,3102,1,1,3874.450212,3874.450212,3507,NO,20.25,34.44,1,1.67,6106,109.858354,118.359174,128.111224,132.665748,I,Above,Gable,0,5701,,27.34373033,0,1.2,,,,1,1,,0.03,nav,1,1989,1,, 24648,NJBF000091917,2801 SCHOONER LANE,Mullica,NJ,39.61946587,-74.61841497,RES1,3001,,17,NE,1981,1978,3102,2,1,2619.601198,2619.601198,3507,NO,28.04,40.24,1,0.4,6106,109.855077,118.364935,128.115013,132.671804,I,Above,Gable,0,5701,,34.14128275,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 24649,NJBF000092219,2820 MULLICA RIVER DRIVE,Mullica,NJ,39.62492294,-74.62395217,RES1,3001,,16,NE,1998,1998,3102,1,1,1633.617125,1633.617125,3507,NO,11.62,24.28,1,0.43,6106,109.768987,118.236215,128.003708,132.482297,I,Above,Hip,0,5701,,17.95037224,0,0,,,,1,1,,0.03,nav,1,1998,1,, 24650,NJBF000092230,2836 CEDAR LANE,Mullica,NJ,39.62509808,-74.62177674,RES1,3001,,16,NE,1978,1976,3102,2,1,2660.161289,2660.161289,3507,NO,34.25,43.37,1,2.88,6106,109.794344,118.260343,128.026181,132.521214,I,Above,Gable,0,5701,,38.8107665,0,0,,,,1,1,,0.03,nav,1,1978,2,, 24651,NJBF000091935,2740 SEVENTH AVENUE,Mullica,NJ,39.6197508,-74.62672153,RES1,3001,,16,NE,1988,1988,3102,2,1,1678.835792,1678.835792,3507,YES,33.24,45.66,1,0.66,6106,109.754212,118.261209,128.019652,132.508228,I,Above,Gable,0,5701,,39.44787314,0,0,,,,1,1,,0.03,nav,1,1988,2,, 24652,NJBF000092234,4918 PLEASANT MILLS ROAD,Mullica,NJ,39.62518191,-74.6323266,RES1,3001,,17,NE,1954,1954,3102,2,1,3305.284561,3305.284561,3507,NO,36.45,42.17,1,-0.67,6106,109.669037,118.133866,127.909597,132.319103,I,Above,Gable,0,5701,,39.31284367,0,0,,,,1,1,,0.03,nav,1,1954,2,, 24653,NJBF000092307,2630 CIRCLE DRIVE,Mullica,NJ,39.62626767,-74.64981084,RES1,3001,,15,NE,1954,1954,3102,1,1,710.3562492,710.3562492,3507,NO,20.61,26.16,1,2.76,6106,109.463975,117.920004,127.712829,131.975225,I,Above,Gable,0,5701,,23.3834698,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24654,NJBF000092116,4773 PLEASANT MILLS ROAD,Mullica,NJ,39.6227695,-74.6445565,RES1,3001,,16,NE,1975,1975,3102,2,1,1277.071946,1277.071946,3507,NO,28.24,38.21,1,1.63,6112,109.535443,118.018226,127.798798,132.125613,I,Above,Hip,0,5701,,33.22582298,0,0,,,,1,1,,0.35,nav,1,1975,2,, 24655,NJBF000092285,4624 PLEASANT MILLS ROAD,Mullica,NJ,39.6260725,-74.6536575,RES1,3001,,16,NE,1955,1955,3102,1,1,2163.564582,2163.564582,3507,NO,16.08,27.78,1,1.04,6112,109.421298,117.878748,127.674059,131.907132,I,Above,Flat,0,5701,,21.92754968,0,0,,,,1,1,,0.35,nav,1,1955,1,, 24656,NJBF000092304,4624 PLEASANT MILLS ROAD,Mullica,NJ,39.62623767,-74.65377524,RES1,3001,,16,NE,1955,1955,3102,1,1,1873.606881,1873.606881,3507,NO,19.14,26.57,1,0.62,6112,109.419429,117.875623,127.67141,131.902471,I,Above,Gable,0,5701,,22.85629351,0,0,,,,1,1,,0.35,nav,1,1955,1,, 24657,NJBF000092468,4534 INDIAN CABIN TERRACE,Mullica,NJ,39.628739,-74.65489555,RES1,3001,,16,NE,1960,1960,3102,2,1,1997.808816,1997.808816,3507,NO,32.15,42.78,1,2.71,6106,109.398625,117.835954,127.63847,131.844408,I,Above,Gable,0,5701,,37.46644064,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24658,NJBF000092241,2826 MULLICA RIVER DRIVE,Mullica,NJ,39.62532173,-74.6238061,RES1,3001,,15,NE,1956,1956,3102,1,1,891.4386098,891.4386098,3507,NO,13,26.51,1,0.04,6106,109.769295,118.233454,128.001721,132.479007,I,Above,Gable,0,5701,,19.75673177,0,0,,,,1,1,,0.03,nav,1,1956,1,, 24659,NJBF000092011,4912 PLEASANT MILLS ROAD,Mullica,NJ,39.62115724,-74.63653489,RES1,3001,,16,NE,1976,1976,3102,2,1,1888.50142,1888.50142,3507,NO,30.34,40.25,1,-0.69,6112,109.633638,118.129158,127.899398,132.300589,I,Above,Gable,0,5701,,35.29299842,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 24660,NJBF000092086,4856 PLEASANT MILLS ROAD,Mullica,NJ,39.62226391,-74.63871532,RES1,3001,,16,NE,1970,1970,3102,1,1,3988.40663,3988.40663,3507,NO,18.48,27.98,1,-0.76,6103,109.604523,118.091434,127.866028,132.242745,I,Above,Gable,0,5701,,23.22801898,0,0,,,,1,1,,0.03,nav,1,1970,1,, 24661,NJBF000092100,2780 SEVENTH AVENUE,Mullica,NJ,39.6224905,-74.6247355,COM8,3001,649,NaN,ME,1969,0,3401,3,1,4431.274271,4431.274271,3507,NO,42.24,53.57,1,1.98,6106,109.768315,118.254275,128.016995,132.50442,I,Above,Flat,0,NaN,,47.90462567,0,0,,,,1,1,,0.03,nav,1,1969,3,, 24662,NJBF000092453,4538 INDIAN CABIN TERRACE,Mullica,NJ,39.6284625,-74.655292,RES1,3001,,16,NE,1971,1971,3102,2,1,1498.962337,1498.962337,3507,NO,21.99,27.74,1,0.38,6106,109.395121,117.834536,127.63669,131.841282,I,Above,Flat,0,5701,,24.86086712,0,0,,,,1,1,,0.03,nav,1,1971,2,, 24663,NJBF000092774,4320 PLEASANT MILLS ROAD,Mullica,NJ,39.63352138,-74.65954895,RES1,3001,,NaN,NE,1930,0,3102,1,1,6365.068956,6365.068956,3507,NO,18.94,25.37,1,-0.3,6112,109.331082,117.732637,127.550051,131.687948,I,Above,Gable,0,5701,,22.153851,0,0,,,,1,1,,0.35,nav,1,1930,1,, 24664,NJBF000092795,4320 PLEASANT MILLS ROAD,Mullica,NJ,39.63373405,-74.65973876,RES1,3001,,NaN,NE,1930,0,3102,1,1,502.1088807,502.1088807,3507,NO,15.12,26.78,1,2.59,6112,109.328276,117.728248,127.546317,131.681318,I,Above,Gable,0,5701,,20.94880161,0,0,,,,1,1,,0.35,nav,1,1930,1,, 24665,NJBF000091892,2720 SEVENTH AVENUE,Mullica,NJ,39.6189488,-74.62718127,RES1,3001,,15,NE,1940,1940,3102,2,2,844.227687,844.227687,3507,NO,33.27,40.67,1,-0.52,6106,109.751516,118.264684,128.021774,132.511691,I,Above,Gable,0,5701,,36.96694393,0,0,,,,1,1,,0.03,nav,1,1940,2,, 24666,NJBF000091851,5328 RIVER DRIVE,Mullica,NJ,39.61820616,-74.60557975,RES1,3001,,16,NE,2007,2007,3102,1,1,2121.006917,2121.006917,3507,NO,14.53,24.48,1,0.98,6106,110.017309,118.538217,128.272931,132.939659,I,Above,Gable,0,5701,,19.50512572,0,0,,,,1,1,,0.03,nav,1,2007,1,, 24667,NJBF000092439,2661 THURSTON AVENUE,Mullica,NJ,39.62816438,-74.64908837,RES1,3001,,16,NE,2016,2014,3102,1,1,2092.269687,2092.269687,3507,NO,14.12,25.49,1,0.48,6106,109.465811,117.907494,127.704208,131.960144,I,Above,Gable,0,5701,,19.8010255,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24668,NJBF000092279,2742 MCCORMICK AVENUE,Mullica,NJ,39.6259875,-74.63512,RES1,3001,,16,NE,1920,1920,3102,2,1,851.6787058,851.6787058,3507,NO,30.46,41.09,1,-0.39,6106,109.633582,118.092126,127.872175,132.254109,I,Above,Gable,0,5701,,35.77449206,0,0,,,,1,1,,0.03,nav,1,1920,2,, 24669,NJBF000092134,5001 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62309707,-74.62442375,RES1,3001,,16,NE,1930,1930,3102,1,1,2410.23696,2410.23696,3507,NO,16.25,28.04,1,0.43,6103,109.769875,118.251166,128.014962,132.501109,I,Above,Gable,0,5701,,22.14825899,0,0,,,,1,1,,0.03,nav,1,1930,1,, 24670,NJBF000092068,5140 VENICE AVENUE,Mullica,NJ,39.62201008,-74.61620579,RES1,3001,,17,NE,1994,1994,3102,1,1,2429.503118,2429.503118,3507,NO,16.28,29.25,1,1.78,6106,109.872711,118.362988,128.116529,132.675385,I,Above,Gable,0,5701,,22.76360636,0,0,,,,1,1,,0.03,nav,1,1994,1,, 24671,NJBF000093309,,Mullica,NJ,39.63830478,-74.66045489,RES1,3001,,NaN,NE,1969,0,3102,2,1,1599.984767,1599.984767,3507,NO,38.73,44.41,1,1.85,6112,109.30497,117.670923,127.500808,131.600298,I,Above,Gable,0,5701,,41.57084681,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24672,NJBF000092166,4763 PLEASANT MILLS ROAD,Mullica,NJ,39.62370958,-74.64512998,RES1,3001,,16,NE,1942,1942,3102,1,1,2382.918863,2382.918863,3507,NO,14.44,24.97,1,2.69,6110,109.525738,118.001325,127.784515,132.100714,I,Above,Gable,0,5701,,19.70665472,0,0,,,,1,1,,0.35,nav,1,1942,1,, 24673,NJBF000092156,4763 PLEASANT MILLS ROAD,Mullica,NJ,39.6235205,-74.6450315,RES1,3001,,16,NE,1942,1942,3102,1,1,1369.277228,1369.277228,3507,NO,17.68,24.15,1,0.16,6110,109.527492,118.004531,127.787206,132.105406,I,Above,Gable,0,5701,,20.9141106,0,0,,,,1,1,,0.35,nav,1,1942,1,, 24674,NJBF000091957,2744 SEVENTH AVENUE,Mullica,NJ,39.62008571,-74.62653862,RES1,3001,,16,NE,1925,1925,3102,1,1,1982.6699,1982.6699,3507,NO,15.45,25.1,1,1.76,6106,109.75523,118.259649,128.018666,132.506615,I,Above,Gable,0,5701,,20.27460321,0,0,,,,1,1,,0.03,nav,1,1925,1,, 24675,NJBF000091943,2744 SEVENTH AVENUE,Mullica,NJ,39.61988015,-74.62626525,RES1,3001,,16,NE,1925,1925,3102,1,1,705.5051371,705.5051371,3507,NO,12.61,19.83,1,0.42,6106,109.759214,118.265246,128.023558,132.514986,I,Above,Flat,0,5701,,16.22044604,0,0,,,,1,1,,0.03,nav,1,1925,1,, 24676,NJBF000092197,4738 PLEASANT MILLS ROAD,Mullica,NJ,39.62452733,-74.64696567,RES1,3001,,16,NE,1969,1969,3102,1,1,2830.812245,2830.812245,3507,NO,15.4,28.17,1,1.02,6106,109.502056,117.971365,127.757907,132.054206,I,Above,Hip,0,5701,,21.78117379,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 24677,NJBF000092558,2610 FORD AVENUE,Mullica,NJ,39.6301623,-74.65566804,RES1,3001,,16,NE,1951,1951,3102,1,1,2045.682555,2045.682555,3507,NO,19.39,28.28,1,2.55,6106,109.385287,117.811917,127.618396,131.808961,I,Above,Gable,0,5701,,23.8334555,0,0,,,,1,1,,0.03,nav,1,1951,1,, 24678,NJBF000092306,2746 MCCORMICK AVENUE,Mullica,NJ,39.62625993,-74.63527697,RES1,3001,,16,NE,1967,1967,3102,2,1,1262.999306,1262.999306,3507,NO,33.26,47.03,1,1.13,6103,109.630808,118.087265,127.868081,132.24703,I,Above,Gable,0,5701,,40.14590476,0,0,,,,1,1,,0.03,nav,1,1967,2,, 24679,NJBF000092103,4801 PLEASANT MILLS ROAD,Mullica,NJ,39.62249505,-74.64336315,RES1,3001,,NaN,NE,1969,0,3102,2,1,2370.708429,2370.708429,3507,NO,33.17,39.61,1,-0.23,6112,109.550052,118.034977,127.813955,132.152047,I,Above,Gable,0,5701,,36.39036545,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24680,NJBF000092950,4230 PLEASANT MILLS ROAD,Mullica,NJ,39.6353735,-74.659739,RES1,3001,,17,NE,1984,1984,3102,2,1,1097.537446,1097.537446,3507,NO,27.92,36.97,1,2.97,6112,109.322766,117.7105,127.532593,131.656894,I,Above,Flat,0,5701,,32.44789761,0,0,,,,1,1,,0.35,nav,1,1984,2,, 24681,NJBF000092981,4230 PLEASANT MILLS ROAD,Mullica,NJ,39.63560625,-74.66006838,RES1,3001,,17,NE,1984,1984,3102,2,1,635.2909358,635.2909358,3507,NO,38.71,44.67,1,2.28,6112,109.318367,117.704387,127.527286,131.647463,I,Above,Gable,0,5701,,41.69029615,0,0,,,,1,1,,0.35,nav,1,1984,2,, 24682,NJBF000091996,2762 SEVENTH AVENUE,Mullica,NJ,39.62089716,-74.62521494,RES1,3001,,16,NE,1960,1960,3102,2,1,1137.469142,1137.469142,3507,NO,39.03,52.98,1,2.68,6106,109.768196,118.266437,128.026041,132.519536,I,Above,Gable,0,5701,,46.00626869,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24683,NJBF000091999,2762 SEVENTH AVENUE,Mullica,NJ,39.62091861,-74.6255081,RES1,3001,,16,NE,1960,1960,3102,2,1,1968.57853,1968.57853,3507,NO,30.64,41.42,1,1.81,6106,109.76462,118.262671,128.022594,132.513603,I,Above,Gable,0,5701,,36.03250593,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24684,NJBF000092127,4828 PLEASANT MILLS ROAD,Mullica,NJ,39.62296832,-74.6411672,RES1,3001,,16,NE,1964,1964,3102,2,1,3126.736927,3126.736927,3507,YES,31.32,37.08,1,-0.52,6106,109.573768,118.055176,127.833425,132.186039,I,Above,Flat,0,5701,,34.20327596,0,0,,,,1,1,,0.03,nav,1,1964,2,, 24685,NJBF000091850,5045 PLEASANT MILLS ROAD,Mullica,NJ,39.61820362,-74.63139996,RES1,3001,,16,NE,1930,1930,3102,1,1,1759.927211,1759.927211,3507,NO,16.56,28.85,1,-0.07,6110,109.70397,118.222576,127.981792,132.44268,I,Above,Gable,0,5701,,22.70200242,0,0,,,,1,1,,1,nav,1,1930,1,, 24686,NJBF000092222,2668 CAMP SWISS AVENUE,Mullica,NJ,39.62495445,-74.64314282,RES1,3001,,16,NE,1999,1999,3102,1,1,540.3867938,540.3867938,3507,NO,18.99,24.1,1,1.7,6106,109.544339,118.010515,127.794956,132.119066,I,Above,Gable,0,5701,,21.54869401,0,0,,,,1,1,,0.03,nav,1,1999,1,, 24687,NJBF000091986,2758 SEVENTH AVENUE,Mullica,NJ,39.62072203,-74.62582875,RES1,3001,,17,NE,2004,2004,3102,1,1,2253.335631,2253.335631,3507,NO,18.1,23.49,1,2.03,6106,109.761479,118.261031,128.02081,132.510476,I,Above,Gable,0,5701,,20.79515929,0,0,,,,1,1,,0.03,nav,1,2004,1,, 24688,NJBF000092275,2701 MCCORMICK AVENUE,Mullica,NJ,39.62593055,-74.63293891,RES1,3001,,16,NE,1955,1955,3102,1,1,1934.589766,1934.589766,3507,NO,20.81,29.95,1,2.09,6106,109.659249,118.118311,127.896311,132.296167,I,Above,Hip,0,5701,,25.38111474,0,0,,,,1,1,,0.03,nav,1,1955,1,, 24689,NJBF000092096,5030 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62242998,-74.62200284,RES1,3001,,16,NE,1971,1973,3102,2,1,1305.696315,1305.696315,3507,NO,39.73,44.89,1,0.85,6106,109.801224,118.287827,128.047858,132.557598,I,Above,Gable,0,5701,,42.31376625,0,0,,,,1,1,,0.03,nav,1,1971,2,, 24690,NJBF000092170,2810 CYPRESS LANE,Mullica,NJ,39.62378233,-74.62362479,RES1,3001,,16,NE,1990,1990,3102,1,1,2203.487008,2203.487008,3507,NO,17.7,23.04,1,-0.97,6106,109.776975,118.253025,128.017622,132.505935,I,Above,Gable,0,5701,,20.36676693,0,0,,,,1,1,,0.03,nav,1,1990,1,, 24691,NJBF000091961,2748 SEVENTH AVENUE,Mullica,NJ,39.620216,-74.625805,RES1,3001,,17,NE,1998,1998,3102,2,1,658.6663828,658.6663828,3507,NO,34.28,47.83,1,-0.51,6106,109.763533,118.267,128.025635,132.518649,I,Above,Gable,0,5701,,41.05470786,0,0,,,,1,1,,0.03,nav,1,1998,2,, 24692,NJBF000091924,2810 MUSKET LANE,Mullica,NJ,39.61959309,-74.61739325,RES1,3001,,17,NE,1986,1986,3102,2,1,3429.796569,3429.796569,3507,NO,21.57,29.97,1,-0.44,6106,109.867024,118.375981,128.125357,132.689537,I,Above,Gable,0,5701,,25.76990502,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 24693,NJBF000091947,5012 PLEASANT MILLS ROAD,Mullica,NJ,39.619921,-74.6311785,RES1,3001,,16,NE,1942,1942,3102,2,1,720.5384564,720.5384564,3507,NO,22.46,36.52,1,1.14,6106,109.700734,118.206104,127.96892,132.420769,I,Above,Gable,0,5701,,29.49045897,0,0,,,,1,1,,0.03,nav,1,1942,2,, 24694,NJBF000091900,5038 PLEASANT MILLS ROAD,Mullica,NJ,39.61909222,-74.62879043,RES1,3001,,16,NE,1978,1978,3102,2,1,2346.287922,2346.287922,3507,NO,34.26,45.86,1,0.57,6110,109.731877,118.243818,128.002672,132.478832,I,Above,Gable,0,5701,,40.06067016,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 24695,NJBF000092162,4749 PLEASANT MILLS ROAD,Mullica,NJ,39.62361577,-74.64643595,RES1,3001,,16,NE,1972,1972,3102,1,1,2290.856363,2290.856363,3507,NO,10.29,20.62,1,-0.95,6110,109.511125,117.987382,127.771403,132.077786,I,Above,Gable,0,5701,,15.45721965,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 24696,NJBF000092158,4749 PLEASANT MILLS ROAD,Mullica,NJ,39.6235765,-74.646642,RES1,3001,,16,NE,1972,1972,3102,1,1,588.8674963,588.8674963,3507,NO,18.25,28.03,1,2.59,6110,109.508907,117.985461,127.769555,132.074552,I,Above,Gable,0,5701,,23.14361611,0,1.1,,,,1,1,,0.35,nav,1,1972,1,, 24697,NJBF000092199,,Mullica,NJ,39.62457023,-74.6239312,RES1,3001,,NaN,NE,1969,0,3102,2,1,1831.373563,1831.373563,3507,NO,37.46,52.03,1,-0.24,6106,109.770503,118.240454,128.007125,132.488077,I,Above,Gable,0,5701,,44.74576695,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24698,NJBF000092165,2806 CYPRESS LANE,Mullica,NJ,39.62369117,-74.62404044,RES1,3001,,16,NE,1994,1994,3102,1,1,869.7137643,869.7137643,3507,NO,19.68,31.62,1,0.84,6106,109.772344,118.249072,128.013851,132.499391,I,Above,Gable,0,5701,,25.64989504,0,0,,,,1,1,,0.03,nav,1,1994,1,, 24699,NJBF000093749,4200 NESCO ROAD,Mullica,NJ,39.64117061,-74.66125779,REL1,3001,,NaN,ME,1969,1808,3401,2,1,1478.427277,1478.427277,3507,NO,32.31,46.47,1,0.31,6109,109.286369,117.631117,127.468803,131.543205,I,Above,Gable,0,NaN,,39.39199977,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24700,NJBF000093724,4200 NESCO ROAD,Mullica,NJ,39.64102674,-74.66124611,REL1,3001,,NaN,ME,1969,1808,3401,2,1,1733.565856,1733.565856,3507,NO,28.29,33.45,1,-0.96,6112,109.286995,117.632809,127.470121,131.545558,I,Above,Hip,0,NaN,,30.86833974,0,0,,,,1,1,,1,nav,1,1969,2,, 24701,NJBF000092120,2841 SEVENTH AVENUE,Mullica,NJ,39.62282734,-74.61914507,RES1,3001,,16,NE,1981,1954,3102,2,2,908.8670079,908.8670079,3507,NO,36.02,49.12,1,0.32,6106,109.834182,118.317908,128.076109,132.606352,I,Above,Flat,0,5701,,42.56696389,0,0,,,,1,1,,0.03,nav,1,1981,2,, 24702,NJBF000092121,2841 SEVENTH AVENUE,Mullica,NJ,39.62287,-74.6186275,RES1,3001,,16,NE,1981,1954,3102,2,2,1542.671753,1542.671753,3507,NO,29.28,43.53,1,-0.63,6106,109.840266,118.323695,128.081494,132.615627,I,Above,Hip,0,5701,,36.40356394,0,0,,,,1,1,,0.03,nav,1,1981,2,, 24703,NJBF000092108,2680 MCCORMICK AVENUE,Mullica,NJ,39.62259231,-74.63754044,RES1,3001,,16,NE,1942,1942,3102,2,1,2657.439287,2657.439287,3507,NO,37.88,45.85,1,0.62,6106,109.617067,118.101523,127.875865,132.259903,I,Above,Hip,0,5701,,41.86411501,0,0,,,,1,1,,0.03,nav,1,1942,2,, 24704,NJBF000091791,5325 LINDA AVENUE,Mullica,NJ,39.61722126,-74.60726512,RES1,3001,,15,NE,1940,1940,3102,1,1,1076.476968,1076.476968,3507,NO,16.69,21.97,1,0.8,6106,110.000009,118.528442,128.262779,132.922043,I,Above,Gable,0,5701,,19.33109522,0,0,,,,1,1,,0.03,nav,1,1940,1,, 24705,NJBF000091862,5306 LINDA AVENUE,Mullica,NJ,39.6183775,-74.608199,RES1,3001,,16,NE,1960,1960,3102,2,1,970.3807298,970.3807298,3507,NO,29.54,44.2,1,3,6106,109.984169,118.503457,128.241182,132.886068,I,Above,Gable,0,5701,,36.86815094,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24706,NJBF000092133,4818 PLEASANT MILLS ROAD,Mullica,NJ,39.62307019,-74.64146143,RES1,3001,,16,NE,1972,1972,3102,2,1,551.6385041,551.6385041,3507,NO,28.15,37.22,1,1.24,6106,109.570032,118.050649,127.829374,132.178986,I,Above,Gable,0,5701,,32.68217728,0,0,,,,1,1,,0.03,nav,1,1972,2,, 24707,NJBF000091826,5309 LINDA AVENUE,Mullica,NJ,39.61782857,-74.60823316,RES1,3001,,15,NE,1960,1960,3102,1,1,1212.930669,1212.930669,3507,NO,16.71,29.37,1,-0.02,6106,109.985769,118.509344,128.245937,132.893859,I,Above,Gable,0,5701,,23.03921348,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24708,NJBF000092029,2661 MCCORMICK AVENUE,Mullica,NJ,39.62137367,-74.63764933,RES1,3001,,16,NE,1960,1960,3102,1,1,2423.419527,2423.419527,3507,NO,17.83,28.4,1,2.74,6112,109.619919,118.11371,127.885389,132.276291,I,Above,Gable,0,5701,,23.11569092,0,0,,,,1,1,,0.35,nav,1,1960,1,, 24709,NJBF000093273,4192 PLEASANT MILLS ROAD,Mullica,NJ,39.63800257,-74.66039547,RES1,3001,,16,NE,1821,1821,3102,2,1,2843.295435,2843.295435,3507,NO,28.14,40.38,1,0.05,6112,109.306656,117.674851,127.503937,131.605874,I,Above,Gable,0,5701,,34.26351383,0,0,,,,1,1,,0.35,nav,1,1821,2,, 24710,NJBF000091930,2738 SEVENTH AVENUE,Mullica,NJ,39.61967015,-74.62697806,RES1,3001,,16,NE,2008,2008,3102,2,1,3155.618332,3155.618332,3507,YES,35.95,45.92,1,1.71,6106,109.751441,118.259046,128.017543,132.504577,I,Above,Hip,0,5701,,40.93890042,0,0,,,,1,1,,0.03,nav,1,2008,2,, 24711,NJBF000091937,5001 PLEASANT MILLS ROAD,Mullica,NJ,39.61978683,-74.63184549,RES1,3001,,16,NE,1978,1978,3102,2,1,1231.624505,1231.624505,3507,NO,39.02,48.75,1,1.62,6110,109.693329,118.199687,127.962793,132.410158,I,Above,Flat,0,5701,,43.88451742,0,0,,,,1,1,,0.35,nav,1,1978,2,, 24712,NJBF000092311,,Mullica,NJ,39.6263175,-74.65009156,RES1,3001,,NaN,NE,1969,0,3102,2,1,2128.740277,2128.740277,3507,NO,40.31,46.88,1,2.54,6106,109.460636,117.916289,127.709446,131.969287,I,Above,Gable,0,5701,,43.59452907,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24713,NJBF000092269,2836 MULLICA RIVER DRIVE,Mullica,NJ,39.62582987,-74.62319208,RES1,3001,,16,NE,1955,1955,3102,1,1,1561.737387,1561.737387,3507,NO,20.02,28.9,1,2.55,6106,109.774787,118.235063,128.003914,132.482996,I,Above,Flat,0,5701,,24.46189582,0,0,,,,1,1,,0.03,nav,1,1955,1,, 24714,NJBF000092288,2848 MULLICA RIVER DRIVE,Mullica,NJ,39.6261161,-74.62245564,RES1,3001,,17,NE,1975,1975,3102,2,1,2035.118411,2035.118411,3507,NO,31.03,45.68,1,-0.51,6106,109.782538,118.240648,128.009457,132.492705,I,Above,Gable,0,5701,,38.3566402,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 24715,NJBF000091845,5330 RIVER DRIVE,Mullica,NJ,39.61810515,-74.60532261,RES1,3001,,16,NE,1950,1950,3102,2,1,1690.773803,1690.773803,3507,NO,25.68,34.54,1,2.04,6106,110.020883,118.542609,128.276849,132.946221,I,Above,Gable,0,5701,,30.1095627,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24716,NJBF000092111,2684 MCCORMICK AVENUE,Mullica,NJ,39.62265157,-74.63724261,RES1,3001,,16,NE,1960,1960,3102,1,1,1153.397863,1153.397863,3507,NO,16.8,25.3,1,0.31,6106,109.620319,118.10433,127.878555,132.264591,I,Above,Gable,0,5701,,21.05093717,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24717,NJBF000092087,4815 PLEASANT MILLS ROAD,Mullica,NJ,39.62228995,-74.64297494,RES1,3001,0,16,NE,1970,1970,3102,2,1,1848.41244,1848.41244,3507,NO,23.18,30.1,1,-0.57,6110,109.555198,118.041706,127.8199,132.162401,I,Above,Hip,0,5701,,26.63736271,0,0,,,,1,1,,0.35,nav,1,1970,2,, 24718,NJBF000092009,2766 SEVENTH AVENUE,Mullica,NJ,39.62108215,-74.6251176,RES1,3001,,16,NE,1947,1947,3102,1,1,742.6843783,742.6843783,3507,NO,15.02,24.28,1,-0.1,6106,109.768705,118.265522,128.025449,132.518569,I,Above,Gable,0,5701,,19.64816408,0,0,,,,1,1,,0.03,nav,1,1947,1,, 24719,NJBF000091978,4925 PLEASANT MILLS ROAD,Mullica,NJ,39.620602,-74.6348525,RES1,3001,,16,NE,1972,1972,3102,1,1,2580.988913,2580.988913,3507,NO,15.92,29.52,1,2.82,6112,109.6552,118.155086,127.922633,132.340802,I,Above,Gable,0,5701,,22.71825839,0,1.2,,,,1,1,,0.35,nav,1,1972,1,, 24720,NJBF000092123,2796 CEDAR LANE,Mullica,NJ,39.62291714,-74.62441458,RES1,3001,,16,NE,1940,1940,3102,1,1,1263.30883,1263.30883,3507,NO,10.05,17.05,1,-0.49,6106,109.770621,118.253303,128.016686,132.504024,I,Above,Gable,0,5701,,13.55174781,0,0,,,,1,1,,0.03,nav,1,1940,1,, 24721,NJBF000093082,4218 PLEASANT MILLS ROAD,Mullica,NJ,39.63641141,-74.65890842,RES1,3001,,17,NE,1972,1972,3102,1,1,2140.739064,2140.739064,3507,NO,18.68,33.52,1,-0.76,6106,109.328401,117.70836,127.532424,131.656567,I,Above,Gable,0,5701,,26.10224204,0,0,,,,1,1,,0.03,nav,1,1972,1,, 24722,NJBF000092183,2819 CEDAR LANE,Mullica,NJ,39.62402947,-74.62231095,RES1,3001,,16,NE,1970,1970,3102,2,1,2802.962239,2802.962239,3507,NO,35.46,48.58,1,-0.41,6106,109.791804,118.266026,128.029945,132.5273,I,Above,Gable,0,5701,,42.02022444,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24723,NJBF000092172,2819 CEDAR LANE,Mullica,NJ,39.62380221,-74.62233205,RES1,3001,,16,NE,1970,1970,3102,2,1,1415.897328,1415.897328,3507,NO,40.24,45.56,1,1.66,6106,109.792368,118.268342,128.031768,132.530361,I,Above,Gable,0,5701,,42.89713978,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24724,NJBF000092228,2670 CAMP SWISS AVENUE,Mullica,NJ,39.62509069,-74.64262345,RES1,3001,,16,NE,1948,1948,3102,1,1,2023.311898,2023.311898,3507,NO,13.24,22.12,1,1.7,6106,109.549847,118.014995,127.799326,132.126722,I,Above,Gable,0,5701,,17.68078062,0,0,,,,1,1,,0.03,nav,1,1948,1,, 24725,NJBF000092590,4500 PLEASANT MILLS ROAD,Mullica,NJ,39.63075433,-74.65765483,RES1,3001,,16,NE,1865,1865,3102,1,1,1185.582315,1185.582315,3507,NO,16.53,28.03,1,2.31,6112,109.361239,117.783454,127.592808,131.763752,I,Above,Gable,0,5701,,22.2778585,0,0,,,,1,1,,0.03,nav,1,1865,1,, 24726,NJBF000092089,2679 MCCORMICK AVENUE,Mullica,NJ,39.62229105,-74.63630466,RES1,3001,,NaN,NE,1969,0,3102,2,1,1886.939478,1886.939478,3507,NO,23.74,38.11,1,0.2,6106,109.632476,118.119303,127.891906,132.287746,I,Above,Gable,0,5701,,30.92372473,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24727,NJBF000092081,2679 MCCORMICK AVENUE,Mullica,NJ,39.62218609,-74.63609955,RES1,3001,,NaN,NE,1969,0,3102,2,1,2244.587893,2244.587893,3507,NO,38.34,51.61,1,-0.51,6106,109.635226,118.122869,127.895058,132.293206,I,Above,Gable,0,5701,,44.97361764,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24728,NJBF000092640,4323 JACKSON ROAD,Mullica,NJ,39.63139385,-74.66099757,RES1,3001,,16,NE,1976,1976,3102,1,1,2113.702988,2113.702988,3507,NO,13.87,22.32,1,-0.83,6112,109.322192,117.73969,127.552972,131.693296,I,Above,Gable,0,5701,,18.0924289,0,0,,,,1,1,,0.35,nav,1,1976,1,, 24729,NJBF000092333,2756 MCCORMICK AVENUE,Mullica,NJ,39.626628,-74.634718,RES1,3001,,16,NE,1985,1985,3102,1,1,2383.907235,2383.907235,3507,NO,14.9,25.21,1,1.31,6106,109.636038,118.089699,127.870881,132.252004,I,Above,Gable,0,5701,,20.05742354,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 24730,NJBF000092585,4506 PLEASANT MILLS ROAD,Mullica,NJ,39.63069844,-74.65698941,RES1,3001,,16,NE,1985,1962,3102,1,1,3523.960187,3523.960187,3507,NO,16.85,25.44,1,0.07,6106,109.368814,117.791437,127.600172,131.776763,I,Above,Gable,0,5701,,21.1454368,0,0,,,,1,1,,0.03,nav,1,1985,1,, 24731,NJBF000091881,5025 PLEASANT MILLS ROAD,Mullica,NJ,39.61868188,-74.63049671,RES1,3001,,16,NE,1979,1979,3102,2,1,2773.325906,2773.325906,3507,NO,37.36,45.37,1,1.04,6110,109.713032,118.228014,127.987485,132.452578,I,Above,Gable,0,5701,,41.36167831,0,0,,,,1,1,,0.35,nav,1,1979,2,, 24732,NJBF000092102,5021 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62249475,-74.62361451,RES1,3001,,16,NE,1971,1975,3102,2,1,1158.824551,1158.824551,3507,NO,21.37,34.12,1,-0.4,6106,109.781679,118.267673,128.029362,132.525752,I,Above,Gable,0,5701,,27.74546984,0,0,,,,1,1,,0.03,nav,1,1971,2,, 24733,NJBF000092039,5139 VENICE AVENUE,Mullica,NJ,39.62152522,-74.61668755,RES1,3001,,16,NE,1968,1968,3102,1,1,2687.328116,2687.328116,3507,NO,18.84,26.01,1,1.68,6106,109.868621,118.362626,128.115562,132.673528,I,Above,Gable,0,5701,,22.42530228,0,0,,,,1,1,,0.03,nav,1,1968,1,, 24734,NJBF000092337,2755 MCCORMICK AVENUE,Mullica,NJ,39.62667103,-74.63386919,RES1,3001,,16,NE,2004,2004,3102,1,1,2422.579885,2422.579885,3507,NO,14.15,22.97,1,0.97,6106,109.645791,118.09915,127.879687,132.267379,I,Above,Hip,0,5701,,18.5589466,0,0,,,,1,1,,0.03,nav,1,2004,1,, 24735,NJBF000092033,2820 SMUGGLERS LANE,Mullica,NJ,39.62143236,-74.61858182,RES1,3001,,18,NE,1990,1990,3102,2,1,2426.649479,2426.649479,3507,NO,40.36,45.75,1,1.71,6106,109.846012,118.340592,128.09515,132.638504,I,Above,Hip,0,5701,,43.05258984,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 24736,NJBF000092221,4750 PLEASANT MILLS ROAD,Mullica,NJ,39.6249485,-74.6448355,RES1,3001,,16,NE,1935,1935,3102,1,1,1760.121399,1760.121399,3507,NO,12.65,21.51,1,-0.27,6103,109.524971,117.991133,127.776941,132.087548,I,Above,Gable,0,5701,,17.07901286,0,0,,,,1,1,,0.03,nav,1,1935,1,, 24737,NJBF000092021,5147 VENICE AVENUE,Mullica,NJ,39.62128397,-74.61600128,RES1,3001,,16,NE,1975,1975,3102,2,1,2603.073962,2603.073962,3507,NO,27.43,35.4,1,1.82,6106,109.877839,118.37377,128.125508,132.690455,I,Above,Gable,0,5701,,31.41440557,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 24738,NJBF000092182,2808 CYPRESS LANE,Mullica,NJ,39.62402686,-74.62423498,RES1,3001,,16,NE,1960,1960,3102,1,1,1155.111102,1155.111102,3507,NO,12.4,19.29,1,1.77,6106,109.768818,118.242942,128.008664,132.490545,I,Above,Gable,0,5701,,15.84444303,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24739,NJBF000091914,5022 PLEASANT MILLS ROAD,Mullica,NJ,39.61939248,-74.6302022,RES1,3001,,16,NE,1991,1991,3102,2,1,3149.117068,3149.117068,3507,NO,27.71,39.89,1,2.01,6106,109.714101,118.223621,127.984398,132.447386,I,Above,Hip,0,5701,,33.79600163,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 24740,NJBF000090518,5901 PLEASANT MILLS ROAD,Mullica,NJ,39.58725563,-74.59840721,RES1,3001,,16,NE,2008,2009,3101,1,1,2361.104748,2361.104748,3505,NO,14.9,24.62,3,1.99,6112,110.217519,118.984436,128.654378,133.55965,I,Above,Gable,0,5701,,19.76063738,0,0,,,,1,1,,0.35,nav,1,2008,1,, 24741,NJBF000092001,5121 QUARTERMASTER COURT,Mullica,NJ,39.62098955,-74.6197489,RES1,3001,,17,NE,1987,1987,3102,2,1,2952.414714,2952.414714,3507,NO,33.02,43.7,1,2.79,6106,109.833497,118.331417,128.086112,132.622837,I,Above,Gable,0,5701,,38.35590744,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 24742,NJBF000092240,4800 PLEASANT MILLS ROAD,Mullica,NJ,39.62531551,-74.64173417,RES1,3001,649,18,NE,1969,1900,3102,2,1,1550.057781,1550.057781,3507,NO,36.22,48.97,1,2.92,6103,109.559306,118.022766,127.806883,132.139963,I,Above,Gable,0,5701,,42.59567202,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24743,NJBF000091934,5121 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.61971369,-74.62106546,RES1,3001,,16,NE,1987,1987,3102,2,1,1363.143903,1363.143903,3507,NO,25.4,30.85,1,-0.49,6106,109.822161,118.329876,128.083006,132.617076,I,Above,Flat,0,5701,,28.12979454,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 24744,NJBF000091936,2809 SCHOONER LANE,Mullica,NJ,39.61978458,-74.61802647,RES1,3001,,17,NE,1980,1980,3102,1,1,3271.994235,3271.994235,3507,NO,12.33,24.14,1,0.13,6106,109.858654,118.366066,128.116468,132.674407,I,Above,Gable,0,5701,,18.2383961,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 24745,NJBF000092530,4520 INDIAN CABIN TERRACE,Mullica,NJ,39.62969812,-74.65532698,RES1,3001,,16,NE,1960,1960,3102,1,1,1188.918647,1188.918647,3507,NO,18.59,33.37,1,2.83,6106,109.390631,117.820746,127.625864,131.822152,I,Above,Gable,0,5701,,25.98127788,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24746,NJBF000091816,2710 SEVENTH AVENUE,Mullica,NJ,39.61761184,-74.62755557,RES1,3001,29,16,NE,1969,1965,3102,2,1,614.4147609,614.4147609,3507,NO,29.79,41.94,1,-0.99,6110,109.751642,118.275131,128.029631,132.524914,I,Above,Gable,0,5701,,35.86858564,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24747,NJBF000091824,2710 SEVENTH AVENUE,Mullica,NJ,39.61773221,-74.62817376,RES1,3001,29,16,NE,1969,1965,3102,2,1,8121.553184,8121.553184,3507,NO,39.42,47.05,1,2.84,6110,109.743866,118.266375,128.021692,132.511292,I,Above,Hip,0,5701,,43.23670238,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24748,NJBF000092056,5113 VENICE AVENUE,Mullica,NJ,39.62181137,-74.61899811,RES1,3001,,17,NE,1990,1990,3102,2,1,2661.886059,2661.886059,3507,NO,32.21,41.79,1,1,6106,109.83962,118.33123,128.087027,132.624711,I,Above,Hip,0,5701,,36.99813234,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 24749,NJBF000092363,4656 RIVERSIDE DRIVE,Mullica,NJ,39.62699669,-74.64882466,RES1,3001,,16,NE,1940,1940,3102,1,1,2738.744462,2738.744462,3507,NO,14.24,23.17,1,-0.19,6103,109.472702,117.923223,127.716984,131.982544,I,Above,Gable,0,5701,,18.70507982,0,0,,,,1,1,,0.03,nav,1,1940,1,, 24750,NJBF000092092,4823 PLEASANT MILLS ROAD,Mullica,NJ,39.62234321,-74.64183026,RES1,3001,,16,NE,1969,1969,3102,1,1,3128.298566,3128.298566,3507,NO,21.79,35.76,1,2.77,6109,109.568213,118.054369,127.831742,132.183049,I,Above,Gable,0,5701,,28.77084154,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24751,NJBF000092461,4530 PLEASANT MILLS ROAD,Mullica,NJ,39.62864317,-74.6569035,RES1,3001,,16,NE,1954,1990,3102,1,1,1623.273893,1623.273893,3507,NO,14.7,20.85,1,1.34,6112,109.376573,117.814631,127.618401,131.809042,I,Above,Gable,0,5701,,17.77607448,0,0,,,,1,1,,0.35,nav,1,1954,1,, 24752,NJBF000092075,4831 PLEASANT MILLS ROAD,Mullica,NJ,39.622103,-74.641225,RES1,3001,,16,NE,1972,1972,3102,1,1,2180.933642,2180.933642,3507,NO,18.57,25.73,1,1.77,6112,109.575999,118.064019,127.840347,132.19802,I,Above,Gable,0,5701,,22.15018037,0,0,,,,1,1,,0.35,nav,1,1972,1,, 24753,NJBF000092083,4831 PLEASANT MILLS ROAD,Mullica,NJ,39.622209,-74.641051,RES1,3001,,16,NE,1972,1972,3102,1,1,1120.311303,1120.311303,3507,NO,14.95,24.38,1,-0.88,6112,109.577654,118.064872,127.841296,132.199683,I,Above,Gable,0,5701,,19.66411962,0,0,,,,1,1,,0.35,nav,1,1972,1,, 24754,NJBF000091835,5334 RIVER DRIVE,Mullica,NJ,39.61795846,-74.60508701,RES1,3001,,16,NE,1954,1954,3102,1,1,2664.238272,2664.238272,3507,NO,14.98,21,1,-0.28,6106,110.02437,118.547272,128.28096,132.953084,I,Above,Gable,0,5701,,17.98910396,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24755,NJBF000092426,2644 THURSTON AVENUE,Mullica,NJ,39.6280041,-74.65077477,RES1,3001,,16,NE,1982,1982,3102,2,1,2552.344815,2552.344815,3507,NO,33.39,39.24,1,0.05,6106,109.447305,117.890186,127.687835,131.931336,I,Above,Hip,0,5701,,36.31475388,0,0,,,,1,1,,0.03,nav,1,1982,2,, 24756,NJBF000092335,2753 MCCORMICK AVENUE,Mullica,NJ,39.62666601,-74.63343021,RES1,3001,,15,NE,1920,1920,3102,1,1,1234.317973,1234.317973,3507,NO,13.29,22.04,1,0.9,6106,109.650935,118.104348,127.884486,132.275747,I,Above,Gable,0,5701,,17.66097645,0,0,,,,1,1,,0.03,nav,1,1920,1,, 24757,NJBF000092058,4940 PLEASANT MILLS ROAD,Mullica,NJ,39.62182911,-74.63341706,RES1,3001,,17,NE,1974,1972,3102,2,1,3918.136848,3918.136848,3507,NO,29.41,43.16,1,-0.02,6106,109.667848,118.158381,127.927437,132.34934,I,Above,Gable,0,5701,,36.28410937,0,0,,,,1,1,,0.03,nav,1,1974,2,, 24758,NJBF000092176,5026 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62387195,-74.620759,RES1,3001,,16,NE,1961,1961,3102,1,1,1733.413567,1733.413567,3507,NO,19.75,27.11,1,1.67,6106,109.810981,118.286513,128.048604,132.559421,I,Above,Gable,0,5701,,23.43232903,0,0,,,,1,1,,0.03,nav,1,1961,1,, 24759,NJBF000092160,2811 CEDAR LANE,Mullica,NJ,39.62358991,-74.62296556,RES1,3001,,16,NE,1972,1972,3102,2,1,2976.305919,2976.305919,3507,NO,32.78,47.48,1,-0.85,6106,109.785539,118.263112,128.026657,132.521464,I,Above,Gable,0,5701,,40.13361481,0,0,,,,1,1,,0.03,nav,1,1972,2,, 24760,NJBF000092237,2730 MCCORMICK AVENUE,Mullica,NJ,39.62522413,-74.63570346,RES1,3001,,16,NE,1955,1890,3102,1,1,1380.171655,1380.171655,3507,NO,17.41,23.86,1,-0.74,6106,109.629437,118.093809,127.872598,132.25468,I,Above,Gable,0,5701,,20.63809347,0,0,,,,1,1,,0.03,nav,1,1955,1,, 24761,NJBF000092154,4769 PLEASANT MILLS ROAD,Mullica,NJ,39.62350568,-74.64464996,RES1,3001,,NaN,NE,1969,0,3102,2,1,1206.057137,1206.057137,3507,NO,27.38,38.26,1,0.9,6110,109.531914,118.009073,127.791407,132.112747,I,Above,Gable,0,5701,,32.81836079,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24762,NJBF000091836,5312 LINDA AVENUE,Mullica,NJ,39.61796686,-74.60756694,RES1,3001,,16,NE,1950,1950,3102,1,1,923.0328242,923.0328242,3507,NO,18.65,27.47,1,2.57,6106,109.993514,118.51608,128.252297,132.90468,I,Above,Hip,0,5701,,23.06197913,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24763,NJBF000092300,4663 RIVERSIDE DRIVE,Mullica,NJ,39.62621944,-74.64940045,RES1,3001,,16,NE,1920,1920,3102,1,1,2566.669405,2566.669405,3507,NO,15.39,22.14,1,1.19,6106,109.468788,117.925195,127.717585,131.983574,I,Above,Hip,0,5701,,18.76388675,0,0,,,,1,1,,0.03,nav,1,1920,1,, 24764,NJBF000091997,2785 SEVENTH AVENUE,Mullica,NJ,39.62090551,-74.62181172,RES1,3001,,16,NE,1988,1988,3102,2,1,2048.967287,2048.967287,3507,NO,35.92,47.46,1,-0.9,6106,109.808943,118.307359,128.063819,132.584531,I,Above,Gable,0,5701,,41.69068011,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 24765,NJBF000091861,5324 RIVER DRIVE,Mullica,NJ,39.61837628,-74.60592038,RES1,3001,,16,NE,1959,1959,3102,2,1,703.4623863,703.4623863,3507,NO,34.44,48.94,1,0.3,6106,110.012448,118.53199,128.26741,132.930419,I,Above,Gable,0,5701,,41.6860936,0,0,,,,1,1,,0.03,nav,1,1959,2,, 24766,NJBF000092302,2755 LEONA LANE,Mullica,NJ,39.6262309,-74.63312055,RES1,3001,,16,NE,1992,1992,3102,2,1,2104.370607,2104.370607,3507,NO,29.71,39.99,1,2.87,6106,109.65607,118.112826,127.891682,132.288178,I,Above,Gable,0,5701,,34.84779813,0,0,,,,1,1,,0.03,nav,1,1992,2,, 24767,NJBF000092155,2704 MCCORMICK AVENUE,Mullica,NJ,39.62351498,-74.63660563,RES1,3001,,16,NE,1950,1950,3102,1,1,1139.991151,1139.991151,3507,NO,14.53,19.76,1,1,6103,109.624794,118.10222,127.877866,132.26353,I,Above,Gable,0,5701,,17.14782576,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24768,NJBF000092049,5135 VENICE AVENUE,Mullica,NJ,39.62168029,-74.61702504,RES1,3001,,16,NE,1985,1985,3102,2,1,2974.78716,2974.78716,3507,NO,37.49,52.13,1,1.21,6106,109.863971,118.356747,128.110352,132.664665,I,Above,Flat,0,5701,,44.81093871,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 24769,NJBF000092106,5120 VENICE AVENUE,Mullica,NJ,39.62253741,-74.61784317,RES1,3001,,16,NE,1963,1963,3102,1,1,1065.527223,1065.527223,3507,NO,17.59,30.74,1,0.63,6106,109.850959,118.337025,128.093324,132.63581,I,Above,Gable,0,5701,,24.16251394,0,0,,,,1,1,,0.03,nav,1,1963,1,, 24770,NJBF000092438,2654 THURSTON AVENUE,Mullica,NJ,39.62816425,-74.6498673,RES1,3001,,16,NE,1975,1975,3102,1,1,909.1593236,909.1593236,3507,NO,13.47,26.56,1,1.43,6106,109.45701,117.898688,127.69601,131.945724,I,Above,Gable,0,5701,,20.01208614,0,0,,,,1,1,,0.03,nav,1,1975,1,, 24771,NJBF000091932,,Mullica,NJ,39.61970516,-74.61646019,RES1,3001,,NaN,NE,1994,0,3102,2,1,3228.454378,3228.454378,3507,NO,25.35,35.1,1,-0.64,6106,109.877962,118.386128,128.13485,132.7058,I,Above,Gable,0,5701,,30.22145727,0,0,,,,1,1,,0.03,nav,1,1994,2,, 24772,NJBF000092028,2770 SEVENTH AVENUE,Mullica,NJ,39.62134853,-74.6249937,RES1,3001,,16,NE,1929,1929,3102,2,1,967.3079786,967.3079786,3507,NO,28.04,40.06,1,-0.84,6106,109.769248,118.264009,128.024416,132.516867,I,Above,Gable,0,5701,,34.04999632,0,0,,,,1,1,,0.03,nav,1,1929,2,, 24773,NJBF000090531,5900 PLEASANT MILLS ROAD,Mullica,NJ,39.587684,-74.5978385,RES1,3001,,16,NE,1948,1948,3101,1,1,787.0678237,787.0678237,3505,NO,17.82,23.43,3,2.42,6112,110.223543,118.987151,128.657304,133.564267,I,Above,Flat,0,5701,,20.62674942,0,0,,,,1,1,,0.35,nav,1,1948,1,, 24774,NJBF000090526,5900 PLEASANT MILLS ROAD,Mullica,NJ,39.58741834,-74.59790525,RES1,3001,,16,NE,1948,1948,3101,1,1,2082.886965,2082.886965,3505,NO,22.95,32.81,3,3.57,6112,110.223549,118.989267,128.659041,133.567072,I,Above,Gable,0,5701,,27.87993683,0,0,,,,1,1,,0.35,nav,1,1948,1,, 24775,NJBF000090525,5900 PLEASANT MILLS ROAD,Mullica,NJ,39.587407,-74.597729,RES1,3001,,16,NE,1948,1948,3101,1,1,579.5243411,579.5243411,3505,NO,25.79,37.82,3,6.53,6112,110.225889,118.991728,128.661331,133.570727,I,Above,Gable,0,5701,,31.80344308,0,0,,,,1,1,,0.35,nav,1,1948,1,, 24776,NJBF000092186,2714 MCCORMICK AVENUE,Mullica,NJ,39.62415419,-74.6362122,RES1,3001,,16,NE,2004,2004,3102,2,1,3505.60749,3505.60749,3507,NO,36.6,45.21,1,-0.91,6106,109.627194,118.09974,127.876509,132.261283,I,Above,Hip,0,5701,,40.90365675,0,0,,,,1,1,,0.03,nav,1,2004,2,, 24777,NJBF000092194,2720 MCCORMICK AVENUE,Mullica,NJ,39.62446024,-74.63605081,RES1,3001,,15,NE,1965,1965,3102,1,1,2222.549764,2222.549764,3507,NO,16.01,25.86,1,0.97,6106,109.628018,118.098227,127.875559,132.259685,I,Above,Gable,0,5701,,20.93392603,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24778,NJBF000092405,4550 INDIAN CABIN TERRACE,Mullica,NJ,39.62758623,-74.65556338,RES1,3001,,17,NE,1965,1965,3102,1,1,634.7468274,634.7468274,3507,NO,17.29,31,1,1.71,6106,109.394986,117.840998,127.641283,131.849414,I,Above,Hip,0,5701,,24.14177088,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24779,NJBF000092407,4550 INDIAN CABIN TERRACE,Mullica,NJ,39.62767946,-74.65540391,RES1,3001,,17,NE,1965,1965,3102,1,1,1583.399133,1583.399133,3507,NO,17.86,31.58,1,2.18,6106,109.396455,117.841767,127.642153,131.850941,I,Above,Gable,0,5701,,24.71960571,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24780,NJBF000091970,5126 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.6204105,-74.6198319,RES1,3001,,17,NE,1981,1981,3102,2,1,2479.428141,2479.428141,3507,NO,25.41,33,1,0.94,6106,109.834566,118.336979,128.090474,132.630112,I,Above,Gable,0,5701,,29.20318336,0,1.2,,,,1,1,,0.03,nav,1,1981,2,, 24781,NJBF000092216,4720 PLEASANT MILLS ROAD,Mullica,NJ,39.6248745,-74.64828289,RES1,3001,,16,NE,1963,1963,3102,1,1,2582.721069,2582.721069,3507,NO,19.65,28.89,1,0.54,6106,109.485923,117.952558,127.740944,132.024508,I,Above,Gable,0,5701,,24.27013921,0,0,,,,1,1,,0.03,nav,1,1963,1,, 24782,NJBF000091894,5304 IROQUOIS WAY,Mullica,NJ,39.61899475,-74.6073316,RES1,3001,,16,NE,2016,2016,3102,1,1,2635.064997,2635.064997,3507,NO,21.55,31.67,1,2.65,6106,109.992626,118.507181,128.245349,132.893418,I,Above,Gable,0,5701,,26.60971163,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24783,NJBF000092059,5148 VENICE AVENUE,Mullica,NJ,39.62184333,-74.6155464,RES1,3001,,16,NE,1968,1968,3102,1,1,2677.023878,2677.023878,3507,NO,14.3,26.75,1,2.48,6106,109.881338,118.372964,128.125491,132.690662,I,Above,Gable,0,5701,,20.52818722,0,0,,,,1,1,,0.03,nav,1,1968,1,, 24784,NJBF000092410,4541 PLEASANT MILLS ROAD,Mullica,NJ,39.62771802,-74.65715469,RES1,3001,,15,NE,1978,1978,3102,2,1,1340.370152,1340.370152,3507,NO,31.35,40.7,1,-0.73,6112,109.37681,117.821825,127.623591,131.818254,I,Above,Gable,0,5701,,36.02783861,0,0,,,,1,1,,0.35,nav,1,1978,2,, 24785,NJBF000090660,2601 SILVER MAPLE FARM RD,Mullica,NJ,39.5908246,-74.59924039,RES1,3001,,16,NE,1959,1959,3101,2,1,1106.080612,1106.080612,3505,NO,26.04,34.68,3,3.15,6112,110.194778,118.933077,128.609712,133.487772,I,Above,Gable,0,5701,,30.35724113,0,0,,,,1,1,,0.15,nav,1,1959,2,, 24786,NJBF000092145,2702 MCCORMICK AVENUE,Mullica,NJ,39.62332992,-74.63656269,RES1,3001,,16,NE,1953,1953,3102,1,1,1814.735608,1814.735608,3507,NO,15.26,22.37,1,1.71,6103,109.625927,118.104773,127.87996,132.267142,I,Above,Gable,0,5701,,18.81529733,0,0,,,,1,1,,0.03,nav,1,1953,1,, 24787,NJBF000091770,5057 PLEASANT MILLS ROAD,Mullica,NJ,39.6166544,-74.63017589,RES1,3001,,16,NE,1950,1950,3102,2,1,1476.281042,1476.281042,3507,NO,34.33,44.58,1,-0.89,6110,109.723722,118.25441,128.009159,132.489556,I,Above,Gable,0,5701,,39.45429637,0,0,,,,1,1,,0.35,nav,1,1950,2,, 24788,NJBF000092038,4835 PLEASANT MILLS ROAD,Mullica,NJ,39.62151918,-74.64042561,RES1,3001,,16,NE,1964,1964,3102,1,1,2438.504825,2438.504825,3507,NO,11.29,23.41,1,-0.24,6112,109.587192,118.079722,127.854063,132.221846,I,Above,Gable,0,5701,,17.34669869,0,0,,,,1,1,,0.15,nav,1,1964,1,, 24789,NJBF000092095,2670 MCCORMICK AVENUE,Mullica,NJ,39.62240408,-74.63792029,RES1,3001,,18,NE,2008,2008,3102,2,1,8818.643157,8818.643157,3507,NO,35.71,42.35,1,2.06,6106,109.613285,118.099163,127.873402,132.255591,I,Above,Hip,0,5701,,39.03243911,0,0,,,,1,1,,0.03,nav,1,2008,2,, 24790,NJBF000092136,4665 PLEASANT MILLS ROAD,Mullica,NJ,39.62314741,-74.65124823,RES1,3001,,16,NE,1954,1954,3102,1,1,2086.864602,2086.864602,3507,NO,14.48,20.31,1,0.62,6112,109.458008,117.93766,127.724371,131.995493,I,Above,Gable,0,5701,,17.39364692,0,0,,,,1,1,,0.35,nav,1,1954,1,, 24791,NJBF000092482,4532 INDIAN CABIN TERRACE,Mullica,NJ,39.62891,-74.6549285,RES1,3001,,15,NE,1950,1950,3102,1,1,906.9453996,906.9453996,3507,NO,13.77,25.19,1,2.66,6106,109.397701,117.833742,127.636688,131.841262,I,Above,Flat,0,5701,,19.47837495,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24792,NJBF000092243,2837 MULLICA RIVER DRIVE,Mullica,NJ,39.62539214,-74.62260143,RES1,3001,,16,NE,1991,1991,3102,2,1,1807.091035,1807.091035,3507,NO,24.74,30.91,1,-0.02,6106,109.783425,118.24711,128.0144,132.500968,I,Above,Gable,0,5701,,27.82387019,0,0,,,,1,1,,0.03,nav,1,1991,2,, 24793,NJBF000091853,,Mullica,NJ,39.6182285,-74.6057455,RES1,3001,,NaN,NE,1969,0,3102,2,1,586.5599002,586.5599002,3507,NO,28.75,39.8,1,-0.4,6106,110.015171,118.535881,128.270812,132.936092,I,Above,Gable,0,5701,,34.27862261,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24794,NJBF000091901,5302 IROQUOIS WAY,Mullica,NJ,39.61909403,-74.60751964,RES1,3001,,16,NE,1964,1964,3102,1,1,1322.890627,1322.890627,3507,NO,12.34,18.66,1,1.7,6106,109.98993,118.503692,128.242262,132.88824,I,Above,Gable,0,5701,,15.49989869,0,0,,,,1,1,,0.03,nav,1,1964,1,, 24795,NJBF000092126,4805 PLEASANT MILLS ROAD,Mullica,NJ,39.62296706,-74.64351766,RES1,3001,,16,NE,1975,1966,3102,1,1,1357.58943,1357.58943,3507,NO,17.82,26.36,1,1.89,6110,109.546697,118.028013,127.808194,132.142026,I,Above,Gable,0,5701,,22.0890845,0,0,,,,1,1,,0.35,nav,1,1975,1,, 24796,NJBF000090991,2713 GREEN BANK ROAD,Mullica,NJ,39.59855897,-74.59779385,IND2,3001,330,NaN,ME,1969,0,3401,2,1,40503.65874,40503.65874,3507,NO,35.62,50.45,1,0.95,6110,110.186992,118.864002,128.552767,133.396279,I,Above,Flat,0,NaN,,43.03418158,0,0,,,,1,1,,1,nav,1,1969,2,, 24797,NJBF000090964,2713 GREEN BANK ROAD,Mullica,NJ,39.59789453,-74.59769961,IND2,3001,330,NaN,ME,1969,0,3401,1,1,15528.22503,15528.22503,3507,NO,15.08,25.69,1,0.78,6110,110.190531,118.872834,128.560328,133.408441,I,Above,Flat,0,NaN,,20.38831758,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24798,NJBF000092130,2690 MCCORMICK AVENUE,Mullica,NJ,39.623011,-74.6365655,RES1,3001,,16,NE,1930,1920,3102,1,2,1460.804356,1460.804356,3507,NO,21.39,32.94,1,2.14,6106,109.626981,118.108272,127.882735,132.271917,I,Above,Gable,0,5701,,27.16618876,0,0,,,,1,1,,0.03,nav,1,1930,1,, 24799,NJBF000092589,4430 PLEASANT MILLS ROAD,Mullica,NJ,39.6307535,-74.65851,RES1,3001,,16,NE,1930,1930,3102,1,1,844.0348434,844.0348434,3507,NO,19.85,27.07,1,0.79,6112,109.351771,117.774009,127.58398,131.748156,I,Above,Gable,0,5701,,23.45887775,0,0,,,,1,1,,0.03,nav,1,1930,1,, 24800,NJBF000092517,4524 INDIAN CABIN TERRACE,Mullica,NJ,39.6294243,-74.65522626,RES1,3001,,16,NE,1970,1970,3102,2,1,2705.72103,2705.72103,3507,NO,30.22,40.37,1,-0.32,6106,109.392668,117.824843,127.629233,131.828103,I,Above,Gable,0,5701,,35.29667078,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24801,NJBF000093239,4196 PLEASANT MILLS ROAD,Mullica,NJ,39.63770092,-74.66040458,RES1,3001,,16,NE,1970,1970,3102,2,1,2271.996462,2271.996462,3507,NO,28.66,37.23,1,0.94,6112,109.307574,117.678015,127.506354,131.610182,I,Above,Gable,0,5701,,32.94567927,0,0,,,,1,1,,0.03,nav,1,1970,2,, 24802,NJBF000091876,5310 RIVER DRIVE,Mullica,NJ,39.618583,-74.6068055,RES1,3001,,16,NE,2016,2016,3102,1,1,612.4058816,612.4058816,3507,NO,20.47,27.16,1,2.33,6106,110.000688,118.518517,128.255274,132.91001,I,Above,Gable,0,5701,,23.81917818,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24803,NJBF000092168,2708 MCCORMICK AVENUE,Mullica,NJ,39.62377698,-74.63658852,RES1,3001,,16,NE,1932,1932,3102,1,1,1615.183011,1615.183011,3507,NO,20.42,30.52,1,1.77,6103,109.624096,118.099515,127.875745,132.259884,I,Above,Flat,0,5701,,25.46957188,0,0,,,,1,1,,0.03,nav,1,1932,1,, 24804,NJBF000092090,5119 VENICE AVENUE,Mullica,NJ,39.6222925,-74.6184455,RES1,3001,,NaN,NE,1969,0,3102,2,1,954.82732,954.82732,3507,NO,31.46,46.22,1,-0.86,6106,109.844551,118.332465,128.088803,132.627948,I,Above,Flat,0,5701,,38.84410618,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24805,NJBF000091909,5026 PLEASANT MILLS ROAD,Mullica,NJ,39.61928918,-74.62956609,RES1,3001,,16,NE,1945,1945,3102,1,1,1913.024573,1913.024573,3507,NO,21.19,33.83,1,2.77,6110,109.72199,118.232352,127.992335,132.461055,I,Above,Gable,0,5701,,27.51002584,0,0,,,,1,1,,0.03,nav,1,1945,1,, 24806,NJBF000091951,2825 MUSKET LANE,Mullica,NJ,39.61999918,-74.61607202,RES1,3001,,17,NE,1991,1991,3102,2,1,2628.251577,2628.251577,3507,NO,31.43,44.18,1,2.68,6106,109.881624,118.387537,128.136525,132.708776,I,Above,Gable,0,5701,,37.80251098,0,1.1,,,,1,1,,0.03,nav,1,1991,2,, 24807,NJBF000092247,,Mullica,NJ,39.62546763,-74.65112119,RES1,3001,,NaN,NE,1980,0,3102,2,1,1151.499809,1151.499809,3507,NO,31.52,41.61,1,1.72,6112,109.451826,117.913889,127.705863,131.962995,I,Above,Gable,0,5701,,36.56507071,0,0,,,,1,1,,0.35,nav,1,1980,2,, 24808,NJBF000092260,2617 THURSTON AVENUE,Mullica,NJ,39.625675,-74.651012,RES1,3001,,16,NE,1980,1980,3102,1,1,1817.031056,1817.031056,3507,NO,16.99,31.2,1,-0.01,6112,109.452373,117.912871,127.705242,131.961903,I,Above,Flat,0,5701,,24.09849238,0,0,,,,1,1,,0.35,nav,1,1980,1,, 24809,NJBF000092349,2628 THURSTON AVENUE,Mullica,NJ,39.62680204,-74.65167386,RES1,3001,,16,NE,1994,1994,3102,2,2,1739.971879,1739.971879,3507,NO,27.8,39.93,1,-0.73,6106,109.441179,117.893139,127.688652,131.93276,I,Above,Gable,0,5701,,33.86301781,0,0,,,,1,1,,0.03,nav,1,1994,2,, 24810,NJBF000091942,5012 PLEASANT MILLS ROAD,Mullica,NJ,39.61987902,-74.63103584,RES1,3001,,16,NE,1942,1942,3102,2,1,1057.665781,1057.665781,3507,NO,27.57,35.85,1,1.68,6106,109.702568,118.208271,127.970867,132.424124,I,Above,Gable,0,5701,,31.71038922,0,0,,,,1,1,,0.03,nav,1,1942,2,, 24811,NJBF000092014,4908 PLEASANT MILLS ROAD,Mullica,NJ,39.62119201,-74.63697081,RES1,3001,,16,NE,1976,1976,3102,2,1,2190.447054,2190.447054,3507,NO,28.45,40,1,-0.43,6112,109.628434,118.123659,127.894351,132.291832,I,Above,Gable,0,5701,,34.22805107,0,0,,,,1,1,,0.35,nav,1,1976,2,, 24812,NJBF000091981,4929 PLEASANT MILLS ROAD,Mullica,NJ,39.6206205,-74.634306,RES1,3001,,16,NE,1960,1960,3102,2,1,2267.963977,2267.963977,3507,NO,28.01,36.61,1,0.53,6112,109.661537,118.16131,127.928427,132.350844,I,Above,Flat,0,5701,,32.31012671,0,0,,,,1,1,,0.35,nav,1,1960,2,, 24813,NJBF000092074,,Mullica,NJ,39.62209423,-74.61662655,RES1,3001,,NaN,NE,1969,0,3102,2,1,4194.258152,4194.258152,3507,NO,31.78,37.57,1,1.21,6106,109.867296,118.35689,128.111026,132.66599,I,Above,Hip,0,5701,,34.67155831,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24814,NJBF000092339,2635 THURSTON AVENUE,Mullica,NJ,39.62667693,-74.65032814,RES1,3001,,16,NE,1977,1977,3102,1,1,2263.409845,2263.409845,3507,NO,15.54,27.54,1,1.42,6106,109.456773,117.909696,127.703879,131.959514,I,Above,Gable,0,5701,,21.54374783,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 24815,NJBF000092290,4618 PLEASANT MILLS ROAD,Mullica,NJ,39.6261515,-74.654309,RES1,3001,738,14,NE,1969,1948,3102,2,2,1252.37929,1252.37929,3507,NO,37.85,42.96,1,0.72,6112,109.413727,117.870572,127.666556,131.893944,I,Above,Gable,0,5701,,40.40571949,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24816,NJBF000092091,5128 VENICE AVENUE,Mullica,NJ,39.6223025,-74.6172535,RES1,3001,,16,NE,1968,1968,3102,1,1,1893.554094,1893.554094,3507,NO,18.55,30.31,1,2.82,6106,109.858937,118.346861,128.10207,132.650721,I,Above,Flat,0,5701,,24.42631336,0,0,,,,1,1,,0.03,nav,1,1968,1,, 24817,NJBF000092492,4528 INDIAN CABIN TERRACE,Mullica,NJ,39.62905069,-74.65502715,RES1,3001,,15,NE,1965,1965,3102,1,1,1637.639563,1637.639563,3507,NO,13.03,19.16,1,2.26,6106,109.396128,117.831108,127.634462,131.837335,I,Above,Gable,0,5701,,16.09168365,0,0,,,,1,1,,0.03,nav,1,1965,1,, 24818,NJBF000092152,2711 MCCORMICK AVENUE,Mullica,NJ,39.62348865,-74.63558232,RES1,3001,,16,NE,1962,1962,3102,2,1,2975.653112,2975.653112,3507,NO,30.6,39.54,1,-0.85,6106,109.63682,118.114492,127.889196,132.28324,I,Above,Gable,0,5701,,35.07398026,0,0,,,,1,1,,0.03,nav,1,1962,2,, 24819,NJBF000091925,2765 SEVENTH AVENUE,Mullica,NJ,39.61960786,-74.62282423,RES1,3001,,16,NE,1986,1986,3102,1,1,2699.669048,2699.669048,3507,NO,19.65,26.21,1,2.7,6106,109.801364,118.309763,128.064305,132.58496,I,Above,Gable,0,5701,,22.93083965,0,1.2,,,,1,1,,0.03,nav,1,1986,1,, 24820,NJBF000091945,2765 SEVENTH AVENUE,Mullica,NJ,39.61990371,-74.62285893,RES1,3001,,16,NE,1986,1986,3102,1,1,4350.218538,4350.218538,3507,NO,16.77,27.31,1,1.45,6106,109.799902,118.306004,128.06123,132.579769,I,Above,Hip,0,5701,,22.04150392,0,1.2,,,,1,1,,0.03,nav,1,1986,1,, 24821,NJBF000092250,2736 MCCORMICK AVENUE,Mullica,NJ,39.625543,-74.6356045,RES1,3001,,16,NE,2004,2004,3102,1,1,1331.389134,1331.389134,3507,NO,13.38,18.8,1,2.75,6103,109.629487,118.09142,127.87086,132.251718,I,Above,Gable,0,5701,,16.08693728,0,0,,,,1,1,,0.03,nav,1,2004,1,, 24822,NJBF000092261,2736 MCCORMICK AVENUE,Mullica,NJ,39.62569706,-74.63547244,RES1,3001,,16,NE,2004,2004,3102,1,1,3034.799858,3034.799858,3507,NO,19.84,31,1,0.61,6106,109.630491,118.09125,127.870931,132.251875,I,Above,Hip,0,5701,,25.4201192,0,0,,,,1,1,,0.03,nav,1,2004,1,, 24823,NJBF000091977,5135 QUARTERMASTER COURT,Mullica,NJ,39.62059209,-74.6187297,RES1,3001,,17,NE,1978,1978,3102,2,1,4623.815014,4623.815014,3507,NO,30.71,45.19,1,1.8,6106,109.847237,118.348324,128.10117,132.64851,I,Above,Gable,0,5701,,37.95228588,0,1.2,,,,1,1,,0.03,nav,1,1978,2,, 24824,NJBF000092031,5143 VENICE AVENUE,Mullica,NJ,39.62141971,-74.61639098,RES1,3001,,47,NE,1975,1975,3102,2,2,3390.625473,3390.625473,3507,NO,29.61,40.7,1,2.11,6106,109.872607,118.367451,128.119867,132.680857,I,Above,Gable,0,5701,,35.1580297,0,0,,,,1,1,,0.03,nav,1,1975,2,, 24825,NJBF000092002,2780 SEVENTH AVENUE,Mullica,NJ,39.62100054,-74.62406774,RES1,3001,649,NaN,NE,1969,0,3102,2,1,2376.138552,2376.138552,3507,NO,23.33,34.37,1,-0.37,6106,109.781544,118.279061,128.037837,132.539878,I,Above,Hip,0,5701,,28.85116833,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24826,NJBF000091953,5004 PLEASANT MILLS ROAD,Mullica,NJ,39.62004547,-74.63135005,RES1,3001,,16,NE,1942,1942,3102,1,1,1419.622004,1419.622004,3507,NO,13.69,21.03,1,0.87,6106,109.698291,118.202692,127.965935,132.415636,I,Above,Gable,0,5701,,17.35968657,0,0,,,,1,1,,0.03,nav,1,1942,1,, 24827,NJBF000091889,2720 SEVENTH AVENUE,Mullica,NJ,39.61890514,-74.62690317,RES1,3001,,15,NE,1940,1940,3102,2,2,936.4080976,936.4080976,3507,NO,35.26,45.58,1,1.2,6106,109.754982,118.268512,128.025254,132.517668,I,Above,Gable,0,5701,,40.42052907,0,0,,,,1,1,,0.03,nav,1,1940,2,, 24828,NJBF000092343,4614 PLEASANT MILLS ROAD,Mullica,NJ,39.6267374,-74.65407182,RES1,3001,,16,NE,1957,1957,3102,1,1,1148.764287,1148.764287,3507,NO,16.49,27.58,1,0.46,6106,109.414457,117.866881,127.664059,131.889528,I,Above,Gable,0,5701,,22.03766081,0,0,,,,1,1,,0.03,nav,1,1957,1,, 24829,NJBF000091998,2774 SEVENTH AVENUE,Mullica,NJ,39.62090713,-74.62366181,RES1,3001,,15,NE,1941,1941,3102,2,1,2592.562892,2592.562892,3507,NO,25.49,32.81,1,-0.64,6106,109.786737,118.28501,128.043201,132.54908,I,Above,Gable,0,5701,,29.14703867,0,0,,,,1,1,,0.03,nav,1,1941,2,, 24830,NJBF000092264,2834 MULLICA RIVER DRIVE,Mullica,NJ,39.62573135,-74.62341757,RES1,3001,,16,NE,1958,1958,3102,1,1,1898.371592,1898.371592,3507,NO,15.92,22.88,1,0.17,6106,109.772448,118.233476,128.002313,132.480187,I,Above,Gable,0,5701,,19.39955858,0,0,,,,1,1,,0.03,nav,1,1958,1,, 24831,NJBF000092258,2834 MULLICA RIVER DRIVE,Mullica,NJ,39.625657,-74.623272,RES1,3001,,16,NE,1958,1958,3102,1,1,551.5174147,551.5174147,3507,NO,16.49,25.33,1,-0.41,6106,109.774457,118.236062,128.004592,132.484104,I,Above,Gable,0,5701,,20.90752047,0,0,,,,1,1,,0.03,nav,1,1958,1,, 24832,NJBF000092277,2742 MCCORMICK AVENUE,Mullica,NJ,39.62596906,-74.63532953,RES1,3001,,16,NE,1920,1920,3102,2,1,2392.382041,2392.382041,3507,NO,29.48,39.64,1,1.51,6106,109.631201,118.089884,127.870071,132.250436,I,Above,Gable,0,5701,,34.55868134,0,0,,,,1,1,,0.03,nav,1,1920,2,, 24833,NJBF000092113,5116 VENICE AVENUE,Mullica,NJ,39.62267318,-74.61817751,RES1,3001,,16,NE,1970,1970,3102,1,1,2651.550217,2651.550217,3507,NO,11.34,19.02,1,0.45,6106,109.846415,118.331403,128.088329,132.627288,I,Above,Gable,0,5701,,15.18219227,0,0,,,,1,1,,0.03,nav,1,1970,1,, 24834,NJBF000091806,,Mullica,NJ,39.61748498,-74.62948522,RES1,3001,,NaN,NE,1960,0,3102,2,1,2139.775812,2139.775812,3507,NO,33.28,42.66,1,-0.68,6106,109.729113,118.253428,128.009375,132.490063,I,Above,Gable,0,5701,,37.96910975,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24835,NJBF000090541,3823 READING AVENUE,Mullica,NJ,39.58807117,-74.74159393,RES1,3001,,15,NE,1978,1978,3101,1,1,1360.922658,1360.922658,3507,NO,16.29,23.53,1,2.77,6112,108.620255,117.336771,127.098881,130.918546,I,Above,Gable,0,5701,,19.90976169,0,0,,,,1,1,,0.35,nav,1,1978,1,, 24836,NJBF000091214,3252 READING AVENUE,Mullica,NJ,39.60187232,-74.75842545,RES1,3001,,16,NE,2010,2003,3102,2,1,2414.606239,2414.606239,3507,NO,24.76,31.19,1,-0.14,6112,108.43193,117.051593,126.839937,130.475581,I,Above,Gable,0,5701,,27.97541374,0,0,,,,1,1,,1,nav,1,2010,2,, 24837,NJBF000091422,3300 WHITE HORSE PIKE,Mullica,NJ,39.60502465,-74.75558507,COM4,3001,959,NaN,ME,1969,0,3401,1,1,34404.48042,34404.48042,3507,NO,12.74,21.06,1,0.47,6112,108.449405,117.049066,126.842708,130.480185,I,Above,Flat,0,NaN,,16.90162862,0,0,,,,1,1,,1,nav,1,1969,1,, 24838,NJBF000091430,3238 WHITE HORSE PIKE,Mullica,NJ,39.6052446,-74.75710564,COM8,3001,639,NaN,ME,1969,0,3401,2,1,4051.805934,4051.805934,3507,NO,31.95,41.52,1,1.81,6112,108.435118,117.033066,126.827241,130.454116,I,Above,Flat,0,NaN,,36.7362153,0,0,,,,1,1,,1,nav,1,1969,2,, 24839,NJBF000087475,5921 WHITE HORSE PIKE,Mullica,NJ,39.53453376,-74.65705026,RES1,3001,,16,NE,1920,1960,3102,1,1,976.0901863,976.0901863,3505,NO,10.89,20.88,3,-2.19,6112,109.614187,118.777735,128.415145,133.215911,I,Above,Gable,0,5701,,15.88755407,0,0,,,,1,1,,0.35,nav,1,1920,1,, 24840,NJBF000087488,5921 WHITE HORSE PIKE,Mullica,NJ,39.53484686,-74.65694166,RES1,3001,,16,NE,1920,1960,3102,1,1,1487.184655,1487.184655,3505,NO,23.13,34.54,3,8.34,6112,109.614904,118.776084,128.413792,133.21331,I,Above,Hip,0,5701,,28.8370773,0,0,,,,1,1,,0.35,nav,1,1920,1,, 24841,NJBF000087493,5930 WHITE HORSE PIKE,Mullica,NJ,39.53491389,-74.65563218,RES1,3001,,16,NE,1937,1937,3101,2,1,2116.972375,2116.972375,3505,NO,38.7,48.56,3,8.15,6112,109.630233,118.791853,128.428589,133.237861,I,Above,Gable,0,5701,,43.63005841,0,0,,,,1,1,,0.15,nav,1,1937,2,, 24842,NJBF000087515,5835 GARDEN ALLEY,Mullica,NJ,39.53546734,-74.65917293,RES1,3001,,15,NE,1890,1890,3102,2,1,1105.984442,1105.984442,3505,NO,41.7,50.97,3,5.68,6112,109.587642,118.742303,128.382569,133.160525,I,Above,Hip,0,5701,,46.33538237,0,0,,,,1,1,,0.35,nav,1,1890,2,, 24843,NJBF000087519,426 HAMBURG AVENUE,Mullica,NJ,39.53562579,-74.65362444,RES1,3001,,16,NE,1974,1974,3101,1,1,2439.7644,2439.7644,3505,NO,14.8,22.77,3,2.77,6112,109.652755,118.810228,128.446238,133.266345,I,Above,Gable,0,5701,,18.78393314,0,0,,,,1,1,,0.35,nav,1,1974,1,, 24844,NJBF000087531,5930 GEORGINE STREET,Mullica,NJ,39.53578898,-74.65491043,RES1,3001,,NaN,NE,1969,0,3101,1,1,2524.085652,2524.085652,3505,NO,20.23,33.3,3,2.49,6112,109.637207,118.79249,128.429735,133.238777,I,Above,Flat,0,5701,,26.76140653,0,0,,,,1,1,,0.15,nav,1,1969,1,, 24845,NJBF000087535,426 HAMBURG AVENUE,Mullica,NJ,39.53584805,-74.65348387,RES1,3001,,16,NE,1974,1974,3101,1,1,1134.096053,1134.096053,3505,NO,14.43,21.09,3,1.22,6112,109.654019,118.809847,128.446023,133.265732,I,Above,Gable,0,5701,,17.76253753,0,0,,,,1,1,,0.15,nav,1,1974,1,, 24846,NJBF000087544,5841 WHITE HORSE PIKE,Mullica,NJ,39.53605794,-74.65878058,RES1,3001,,15,NE,1940,1940,3102,1,1,1042.008487,1042.008487,3505,NO,10.99,22.25,3,-0.13,6112,109.591173,118.741518,128.3822,133.159285,I,Above,Gable,0,5701,,16.61997377,0,0,,,,1,1,,0.35,nav,1,1940,1,, 24847,NJBF000087546,5906 WHITE HORSE PIKE,Mullica,NJ,39.53608635,-74.65739576,RES1,3001,,16,NE,1900,1956,3102,1,1,827.789073,827.789073,3505,NO,23.2,29.98,3,6.51,6112,109.607358,118.758513,128.39812,133.185833,I,Above,Gable,0,5701,,26.58630215,0,0,,,,1,1,,0.35,nav,1,1900,1,, 24848,NJBF000087552,5829 GARDEN ALLEY,Mullica,NJ,39.53615737,-74.66028131,RES1,3001,,15,NE,1964,1964,3102,2,1,1295.965756,1295.965756,3505,NO,35.69,47.18,3,7.22,6112,109.57349,118.721931,128.363935,133.12862,I,Above,Gable,0,5701,,41.43645137,0,0,,,,1,1,,0.35,nav,1,1964,2,, 24849,NJBF000087558,5902 WHITE HORSE PIKE,Mullica,NJ,39.53629178,-74.65775559,RES1,3001,,15,NE,1940,1940,3102,1,1,558.3267348,558.3267348,3505,NO,22.28,31.79,3,5.59,6112,109.602762,118.752042,128.392194,133.175726,I,Above,Gable,0,5701,,27.03009392,0,0,,,,1,1,,0.15,nav,1,1940,1,, 24850,NJBF000087562,5825 GARDEN ALLEY,Mullica,NJ,39.53635093,-74.66047854,RES1,3001,,16,NE,1990,1990,3102,1,1,851.0563149,851.0563149,3505,NO,22.62,29.86,3,5.41,6112,109.570839,118.717619,128.360021,133.121863,I,Above,Gable,0,5701,,26.23793176,0,0,,,,1,1,,0.35,nav,1,1990,1,, 24851,NJBF000087723,900 HAMBURG AVENUE,Mullica,NJ,39.54110472,-74.64773342,COM3,3001,331,NaN,ME,1969,0,3401,1,1,7930.901511,7930.901511,3507,YES,11.94,17.54,1,1.02,6112,109.713115,118.831273,128.469699,133.298699,I,Above,Hip,0,NaN,,14.73958478,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24852,NJBF000087749,5600 READING AVENUE,Mullica,NJ,39.55947085,-74.69237366,RES1,3001,,NaN,NE,1963,0,3101,1,1,1025.526905,1025.526905,3505,NO,18.53,25.55,3,0.11,6112,109.172777,118.120093,127.816094,132.175702,I,Above,Gable,0,5701,,22.03608938,0,0,,,,1,1,,0.35,nav,1,1963,1,, 24853,NJBF000087814,801 HEIDELBERG AVENUE,Mullica,NJ,39.55947085,-74.69237366,RES1,3001,,16,NE,1963,1956,3101,1,1,1360.908273,1360.908273,3505,NO,15.26,21.9,3,0.68,6112,109.172777,118.120093,127.816094,132.175702,I,Above,Gable,0,5701,,18.58278731,0,0,,,,1,1,,0.35,nav,1,1963,1,, 24854,NJBF000087924,,Mullica,NJ,39.55947085,-74.69237366,RES1,3001,,NaN,NE,1963,0,3101,1,1,2246.878966,2246.878966,3505,NO,10.94,24.13,3,-0.62,6112,109.172777,118.120093,127.816094,132.175702,I,Above,Gable,0,5701,,17.53426047,0,0,,,,1,1,,0.35,nav,1,1963,1,, 24855,NJBF000088010,5812 DUERER STREET,Mullica,NJ,39.54719542,-74.64914324,RES1,3005,,16,NE,1970,1970,3101,1,1,968.3268051,968.3268051,3507,NO,20.27,26.22,1,2.35,6112,109.684137,118.753457,128.401219,133.179144,I,Above,Gable,0,5701,,23.24421335,0,0,,,,1,1,,0.35,nav,1,1970,1,, 24856,NJBF000088009,5812 DUERER STREET,Mullica,NJ,39.54719355,-74.64931356,RES1,3005,,16,NE,1970,1970,3101,1,1,1565.44905,1565.44905,3507,NO,14.35,27.96,1,2,6112,109.682091,118.751322,128.399214,133.175833,I,Above,Gable,0,5701,,21.15427859,0,0,,,,1,1,,0.35,nav,1,1970,1,, 24857,NJBF000088027,5800 DUERER STREET,Mullica,NJ,39.54746456,-74.6497497,RES1,3005,,16,NE,1965,1965,3101,1,1,2089.842487,2089.842487,3507,NO,15.98,25.89,1,0.14,6112,109.676326,118.743177,128.391779,133.163263,I,Above,Gable,0,5701,,20.93521022,0,0,,,,1,1,,0.35,nav,1,1965,1,, 24858,NJBF000088038,5459 WHITE HORSE PIKE,Mullica,NJ,39.54758324,-74.6757078,COM4,3001,,15,ME,1945,1960,3401,1,2,1852.352963,1852.352963,3507,NO,14.76,26.77,1,1.31,6112,109.377014,118.425718,128.094106,132.661851,I,Above,Gable,0,NaN,,20.76363628,0,0,,,,1,1,,1,nav,1,1945,1,, 24859,NJBF000088063,5459 WHITE HORSE PIKE,Mullica,NJ,39.54790674,-74.67561159,COM4,3001,,15,ME,1945,1960,3401,1,2,1647.835266,1647.835266,3507,NO,11.9,22.13,1,-0.63,6112,109.377454,118.423766,128.09251,132.658909,I,Above,Gable,0,NaN,,17.0162852,0,0,,,,1,1,,0.35,nav,1,1945,1,, 24860,NJBF000088080,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54828634,-74.64693994,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1255.25817,1255.25817,3507,NO,15.69,22.18,1,1.16,6112,109.708379,118.770316,128.417907,133.205534,I,Above,Gable,0,5701,,18.93364851,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24861,NJBF000088083,1201 HEIDELBERG AVENUE,Mullica,NJ,39.5483528,-74.64719992,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1508.240781,1508.240781,3507,NO,21.26,26.49,1,1.9,6112,109.70511,118.766379,128.414262,133.199458,I,Above,Flat,0,5701,,23.87266434,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24862,NJBF000088087,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54837629,-74.64674859,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1159.286929,1159.286929,3507,NO,15.31,24.63,1,1.62,6112,109.710495,118.771826,128.419396,133.207892,I,Above,Hip,0,5701,,19.97249234,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24863,NJBF000088092,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54845751,-74.64653411,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1259.127503,1259.127503,3507,NO,13.33,19.35,1,1.45,6112,109.712919,118.773717,128.421238,133.210839,I,Above,Gable,0,5701,,16.3368864,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24864,NJBF000088090,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54843787,-74.64615167,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1993.886949,1993.886949,3507,NO,15.34,26.18,1,2.53,6112,109.717569,118.77873,128.42593,133.218582,I,Above,Gable,0,5701,,20.76262911,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24865,NJBF000088091,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54844141,-74.64632753,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1650.729912,1650.729912,3507,NO,18.11,28.68,1,1.37,6112,109.715439,118.776482,128.423821,133.215108,I,Above,Gable,0,5701,,23.39529505,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24866,NJBF000088094,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54848961,-74.64593237,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1316.325487,1316.325487,3507,NO,21.72,33.47,1,2.61,6112,109.720119,118.780985,128.42809,133.222081,I,Above,Flat,0,5701,,27.5941184,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24867,NJBF000088100,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54858599,-74.6457382,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1614.869051,1614.869051,3507,NO,10.41,23.31,1,-0.85,6112,109.722265,118.782476,128.429567,133.224408,I,Above,Gable,0,5701,,16.86355159,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24868,NJBF000088107,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54867107,-74.64560381,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1784.494145,1784.494145,3507,NO,18.98,33.79,1,2.21,6112,109.723708,118.783319,128.430427,133.225732,I,Above,Gable,0,5701,,26.38458575,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24869,NJBF000088119,1201 HEIDELBERG AVENUE,Mullica,NJ,39.548782,-74.64548104,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1890.143214,1890.143214,3507,NO,13.83,22.97,1,2.55,6112,109.724966,118.783764,128.430934,133.226449,I,Above,Gable,0,5701,,18.39703608,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24870,NJBF000088129,1201 HEIDELBERG AVENUE,Mullica,NJ,39.5488928,-74.64536547,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1325.049471,1325.049471,3507,NO,19.83,28.93,1,1.88,6112,109.726138,118.784121,128.431358,133.227028,I,Above,Gable,0,5701,,24.38451984,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24871,NJBF000088135,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54902717,-74.6452442,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1177.701368,1177.701368,3507,NO,16.86,31.54,1,2.37,6112,109.727323,118.784311,128.431644,133.227357,I,Above,Gable,0,5701,,24.19915703,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24872,NJBF000088146,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54930815,-74.64514853,RES1,3005,610,NaN,NE,1969,0,3101,1,1,3660.114538,3660.114538,3507,NO,15.49,23.37,1,-0.68,6112,109.727887,118.782704,128.43036,133.224953,I,Above,Gable,0,5701,,19.43410442,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24873,NJBF000088158,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54951861,-74.64513249,RES1,3005,610,NaN,NE,1969,0,3101,1,1,2004.535785,2004.535785,3507,NO,18.79,26.58,1,0.94,6112,109.727652,118.780811,128.428752,133.222089,I,Above,Gable,0,5701,,22.68527578,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24874,NJBF000088161,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54965652,-74.64514693,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1479.167289,1479.167289,3507,NO,16.74,30.49,1,-0.65,6112,109.727182,118.779243,128.42739,133.219707,I,Above,Flat,0,5701,,23.61273251,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24875,NJBF000088173,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54982329,-74.64515764,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1713.749034,1713.749034,3507,NO,19.68,27.04,1,0.48,6112,109.726701,118.777446,128.425836,133.216979,I,Above,Flat,0,5701,,23.35958063,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24876,NJBF000088183,1201 HEIDELBERG AVENUE,Mullica,NJ,39.54998859,-74.64507647,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1802.9172,1802.9172,3507,NO,19.78,26.04,1,0.4,6112,109.727345,118.776821,128.425383,133.216062,I,Above,Gable,0,5701,,22.91196233,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24877,NJBF000088187,1201 HEIDELBERG AVENUE,Mullica,NJ,39.55012496,-74.64507482,RES1,3005,610,NaN,NE,1969,0,3101,1,1,2094.68113,2094.68113,3507,NO,13.91,27.44,1,-0.61,6112,109.727072,118.775474,128.424228,133.214022,I,Above,Flat,0,5701,,20.67734769,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24878,NJBF000088191,5710 DUERER STREET,Mullica,NJ,39.55023717,-74.65341536,RES1,3001,,16,NE,2007,2007,3102,2,1,1483.046747,1483.046747,3507,NO,20.38,33.32,1,-0.79,6112,109.627114,118.670118,128.325385,133.050398,I,Above,Gable,0,5701,,26.84664299,0,0,,,,1,1,,0.35,nav,1,2007,2,, 24879,NJBF000088194,1201 HEIDELBERG AVENUE,Mullica,NJ,39.55027889,-74.64502568,RES1,3005,610,NaN,NE,1969,0,3101,1,1,2223.617134,2223.617134,3507,NO,16.68,22.03,1,2.05,6112,109.72734,118.774551,128.423486,133.212644,I,Above,Gable,0,5701,,19.35731006,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24880,NJBF000088201,1201 HEIDELBERG AVENUE,Mullica,NJ,39.55041983,-74.64504223,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1887.245716,1887.245716,3507,NO,15.96,28.55,1,2.02,6112,109.72685,118.772939,128.422086,133.210197,I,Above,Flat,0,5701,,22.2565831,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24881,NJBF000088216,1201 HEIDELBERG AVENUE,Mullica,NJ,39.55062603,-74.64506109,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1922.155037,1922.155037,3507,NO,14.66,20.07,1,2,6112,109.726186,118.770638,128.420093,133.206708,I,Above,Hip,0,5701,,17.36405878,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24882,NJBF000088222,1201 HEIDELBERG AVENUE,Mullica,NJ,39.55075671,-74.6451791,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1387.089418,1387.089418,3507,NO,12.78,18.09,1,0.01,6112,109.724482,118.767841,128.417571,133.202427,I,Above,Gable,0,5701,,15.43538464,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24883,NJBF000088231,1201 HEIDELBERG AVENUE,Mullica,NJ,39.55084205,-74.64530803,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1430.697761,1430.697761,3507,NO,13.47,24.65,1,1.9,6112,109.722743,118.765365,128.415315,133.198629,I,Above,Gable,0,5701,,19.06219183,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24884,NJBF000088234,5660 DUERER STREET,Mullica,NJ,39.55090871,-74.65437411,RES1,3001,,16,NE,1934,1934,3102,1,1,1417.127288,1417.127288,3507,NO,19.95,29.01,1,0.65,6112,109.614419,118.651615,128.308556,133.021744,I,Above,Gable,0,5701,,24.4801264,0,0,,,,1,1,,0.35,nav,1,1934,1,, 24885,NJBF000088237,1201 HEIDELBERG AVENUE,Mullica,NJ,39.5509443,-74.64548883,RES1,3005,610,NaN,NE,1969,0,3101,1,1,1617.774067,1617.774067,3507,NO,13.8,24.3,1,2.54,6112,109.720341,118.762066,128.412298,133.193562,I,Above,Gable,0,5701,,19.04925485,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24886,NJBF000088283,5646 DUERER STREET,Mullica,NJ,39.55177271,-74.65521244,RES1,3001,,16,NE,1950,1950,3102,1,1,1279.495884,1279.495884,3507,NO,18,28.77,1,2.07,6112,109.602779,118.632742,128.29154,132.992576,I,Above,Gable,0,5701,,23.38679367,0,0,,,,1,1,,0.35,nav,1,1950,1,, 24887,NJBF000088293,5634 DUERER STREET,Mullica,NJ,39.55192238,-74.65609837,RES1,3001,,16,NE,1995,1994,3102,2,1,2076.255768,2076.255768,3507,NO,37.73,49.8,1,1.03,6112,109.592075,118.620366,128.280045,132.97324,I,Above,Gable,0,5701,,43.76445484,0,1.1,,,,1,1,,0.35,nav,1,1995,2,, 24888,NJBF000088310,5800 MOSS MILL ROAD,Mullica,NJ,39.5522372,-74.64471816,RES1,3005,,16,NE,1950,1950,3101,1,1,1144.74926,1144.74926,3507,NO,13.46,24.81,1,2.68,6112,109.726909,118.758813,128.410309,133.188988,I,Above,Gable,0,5701,,19.13699209,0,0,,,,1,1,,0.35,nav,1,1950,1,, 24889,NJBF000088319,5601 DUERER STREET,Mullica,NJ,39.55237544,-74.65850895,RES1,3001,,16,NE,1880,1880,3102,2,1,1395.820081,1395.820081,3507,NO,26.29,40.9,1,0.67,6112,109.562985,118.586342,128.248481,132.91999,I,Above,Gable,0,5701,,33.59246576,0,0,,,,1,1,,0.35,nav,1,1880,2,, 24890,NJBF000088325,5601 DUERER STREET,Mullica,NJ,39.55249933,-74.65880601,RES1,3001,,16,NE,1880,1880,3102,2,1,1604.224439,1604.224439,3507,NO,35.97,45.35,1,0.13,6112,109.559274,118.581492,128.244031,132.912419,I,Above,Gable,0,5701,,40.65907489,0,0,,,,1,1,,0.35,nav,1,1880,2,, 24891,NJBF000088327,5601 DUERER STREET,Mullica,NJ,39.55257732,-74.65841532,RES1,3001,,16,NE,1880,1880,3102,2,1,661.0739863,661.0739863,3507,NO,34.43,44.97,1,2.35,6112,109.563663,118.585503,128.247858,132.918776,I,Above,Gable,0,5701,,39.70001347,0,0,,,,1,1,,0.35,nav,1,1880,2,, 24892,NJBF000088381,5600 DUERER STREET,Mullica,NJ,39.55313828,-74.65674024,RES1,3001,,NaN,NE,1926,0,3102,2,1,558.3310373,558.3310373,3507,NO,34.43,43.56,1,1.14,6112,109.582041,118.600478,128.262372,132.942627,I,Above,Gable,0,5701,,38.99252223,0,0,,,,1,1,,0.35,nav,1,1926,2,, 24893,NJBF000088398,1112 DARMSTADT AVENUE,Mullica,NJ,39.5532273,-74.6563224,RES1,3001,,16,NE,1926,1926,3102,2,1,1532.47476,1532.47476,3507,NO,35.7,41.37,1,0.59,6112,109.586746,118.604726,128.266432,132.949347,I,Above,Flat,0,5701,,38.53701168,0,0,,,,1,1,,0.35,nav,1,1926,2,, 24894,NJBF000088691,911 FOURTH AVENUE,Mullica,NJ,39.55859722,-74.66886996,RES1,3001,,16,NE,2004,2004,3101,1,1,3422.648393,3422.648393,3507,NO,17.26,27.81,1,-0.33,6112,109.431301,118.400454,128.079192,132.629278,I,Above,Gable,0,5701,,22.53604593,0,0,,,,1,1,,0.35,nav,1,2004,1,, 24895,NJBF000088700,1408 DARMSTADT AVENUE,Mullica,NJ,39.55876133,-74.64963838,RES1,3001,,16,NE,1976,1976,3102,1,1,1234.905881,1234.905881,3507,NO,10.65,17.76,1,-0.84,6112,109.653698,118.631861,128.296647,132.995055,I,Above,Gable,0,5701,,14.20423675,0,0,,,,1,1,,0.35,nav,1,1976,1,, 24896,NJBF000088716,961 FOURTH AVENUE,Mullica,NJ,39.55895345,-74.6681933,RES1,3001,,16,NE,2004,2004,3101,1,1,781.2667048,781.2667048,3507,NO,15.35,28.04,1,2.98,6112,109.438191,118.405009,128.083783,132.63686,I,Above,Gable,0,5701,,21.69268137,0,0,,,,1,1,,0.35,nav,1,2004,1,, 24897,NJBF000088710,1408 DARMSTADT AVENUE,Mullica,NJ,39.5588621,-74.65002302,RES1,3001,,16,NE,1976,1976,3102,1,1,2349.62971,2349.62971,3507,NO,14.44,23.05,1,2.68,6112,109.648901,118.626087,128.291314,132.986102,I,Above,Gable,0,5701,,18.74567677,0,0,,,,1,1,,0.35,nav,1,1976,1,, 24898,NJBF000088715,961 FOURTH AVENUE,Mullica,NJ,39.55893051,-74.66850529,RES1,3001,,16,NE,2004,2004,3101,1,1,2353.493767,2353.493767,3507,NO,14.67,26.82,1,2.17,6112,109.434713,118.401518,128.080484,132.631262,I,Above,Gable,0,5701,,20.74129053,0,0,,,,1,1,,0.35,nav,1,2004,1,, 24899,NJBF000088722,,Mullica,NJ,39.55901782,-74.64929758,RES1,3001,,NaN,NE,1969,0,3102,2,1,1343.470432,1343.470432,3507,NO,30.6,38.08,1,-0.46,6112,109.65717,118.633478,128.298394,132.997744,I,Above,Gable,0,5701,,34.3379415,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24900,NJBF000088735,1009 FOURTH AVENUE,Mullica,NJ,39.55925988,-74.66806085,RES1,3001,,16,NE,2004,2004,3101,1,1,2991.309935,2991.309935,3507,NO,13.82,24.11,1,-0.89,6112,109.43903,118.403568,128.082699,132.634819,I,Above,Hip,0,5701,,18.96897416,0,0,,,,1,1,,0.35,nav,1,2004,1,, 24901,NJBF000088734,1416 DARMSTADT AVENUE,Mullica,NJ,39.55925884,-74.64857112,RES1,3001,,16,NE,1970,1920,3102,2,2,1624.556026,1624.556026,3507,NO,21.98,33.66,1,-0.27,6112,109.665289,118.640047,128.304778,133.008148,I,Above,Gable,0,5701,,27.81939768,0,0,,,,1,1,,0.35,nav,1,1970,2,, 24902,NJBF000088739,1416 DARMSTADT AVENUE,Mullica,NJ,39.55927903,-74.64882832,RES1,3001,,16,NE,1970,1920,3102,2,2,1271.731571,1271.731571,3507,NO,35.49,44.56,1,0.06,6112,109.662182,118.636663,128.301618,133.002883,I,Above,Gable,0,5701,,40.02468942,0,0,,,,1,1,,0.35,nav,1,1970,2,, 24903,NJBF000088754,5111 WHITE HORSE PIKE,Mullica,NJ,39.55947085,-74.69237366,RES1,3001,,16,NE,1963,1954,3101,1,1,1355.107032,1355.107032,3505,NO,19.23,32.5,3,6.05,6112,109.172777,118.120093,127.816094,132.175702,I,Above,Gable,0,5701,,25.86549525,0,0,,,,1,1,,0.35,nav,1,1963,1,, 24904,NJBF000088755,1501 DARMSTADT AVENUE,Mullica,NJ,39.55948159,-74.646537,RES1,3001,,16,NE,2004,2004,3102,2,1,2678.22774,2678.22774,3507,NO,36.11,46.68,1,0.08,6112,109.689092,118.663034,128.32657,133.044097,I,Above,Gable,0,5701,,41.39427473,0,0,,,,1,1,,0.35,nav,1,2004,2,, 24905,NJBF000088769,5107 WHITE HORSE PIKE,Mullica,NJ,39.55973985,-74.69254734,RES1,3001,,16,NE,1938,1938,3101,1,1,1956.087277,1956.087277,3505,NO,18.42,25.84,3,1.86,6112,109.170389,118.115595,127.812085,132.168633,I,Above,Gable,0,5701,,22.12807672,0,0,,,,1,1,,0.35,nav,1,1938,1,, 24906,NJBF000088764,5421 DUERER STREET,Mullica,NJ,39.55967426,-74.66629748,RES1,3001,,15,NE,1945,1945,3101,1,1,1902.769354,1902.769354,3507,NO,17.38,30.89,1,-0.89,6112,109.458133,118.420499,128.098969,132.662195,I,Above,Gable,0,5701,,24.13559334,0,0,,,,1,1,,0.35,nav,1,1945,1,, 24907,NJBF000088840,230 TWENTY-SECOND AVENUE,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,,16,ME,1969,2000,3401,3,1,2371.928042,2371.928042,3507,NO,52.69,60.83,1,0.95,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,56.75903957,0,0,,,,1,1,,1,nav,1,1969,3,, 24908,NJBF000088862,230 TWENTY-SECOND AVENUE,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,,16,ME,1969,2000,3401,2,1,787.0931268,787.0931268,3507,NO,34.37,47.28,1,2.07,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,40.82742696,0,0,,,,1,1,,1,nav,1,1969,2,, 24909,NJBF000088864,5058 WHITE HORSE PIKE,Mullica,NJ,39.560892,-74.69277142,RES1,3001,210,16,NE,1969,1955,3101,1,1,671.7331713,671.7331713,3505,NO,8.69,15.52,3,-1.87,6112,109.165616,118.102154,127.800422,132.147943,I,Above,Gable,0,5701,,12.10779873,0,0,,,,1,1,,0.35,nav,1,1969,1,, 24910,NJBF000089030,1012 FIFTH AVENUE,Mullica,NJ,39.56330512,-74.67324806,RES1,3001,,16,NE,1958,1958,3101,1,1,2193.559211,2193.559211,3507,NO,19.13,27.26,1,-0.37,6112,109.37216,118.30279,127.991633,132.477016,I,Above,Flat,0,5701,,23.19294996,0,0,,,,1,1,,0.35,nav,1,1958,1,, 24911,NJBF000089131,5300 MOSS MILL ROAD,Mullica,NJ,39.56402077,-74.67104069,RES1,3001,,15,NE,1940,1940,3101,1,1,889.8328985,889.8328985,3507,NO,11.17,25.46,1,-0.44,6112,109.395233,118.321626,128.010014,132.50804,I,Above,Gable,0,5701,,18.31269938,0,0,,,,1,1,,0.35,nav,1,1940,1,, 24912,NJBF000089441,1200 FIFTH AVENUE,Mullica,NJ,39.56402077,-74.67104069,RES1,3001,,16,NE,1940,1976,3101,1,1,1628.454822,1628.454822,3507,NO,18.53,33.41,1,1.24,6112,109.395233,118.321626,128.010014,132.50804,I,Above,Gable,0,5701,,25.97179243,0,0,,,,1,1,,0.35,nav,1,1940,1,, 24913,NJBF000089477,1532 HANOVER AVENUE,Mullica,NJ,39.55970953,-74.6463412,RES1,3001,,16,NE,2004,1960,3102,2,1,1631.362405,1631.362405,3507,NO,34.49,42.95,1,2.89,6112,109.690926,118.663163,128.326895,133.044442,I,Above,Gable,0,5701,,38.71895851,0,0,,,,1,1,,0.35,nav,1,2004,2,, 24914,NJBF000089694,211 WEYMOUTH ROAD,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,,16,ME,1969,1990,3401,1,1,2289.491269,2289.491269,3507,NO,17.96,26.49,1,0.84,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,22.22365004,0,1.2,,,,1,1,,1,nav,1,1969,1,, 24915,NJBF000089812,229 WEYMOUTH ROAD,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,,16,ME,1969,1967,3401,1,1,1489.856608,1489.856608,3507,NO,13.18,23.65,1,1.18,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,18.41388504,0,0,,,,1,1,,1,nav,1,1969,1,, 24916,NJBF000089851,235 WEYMOUTH ROAD,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,,16,ME,1969,1984,3401,1,1,2216.83943,2216.83943,3507,NO,19.55,31.37,1,2.69,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,25.4624299,0,1.2,,,,1,1,,1,nav,1,1969,1,, 24917,NJBF000089956,243-245 WEYMOUTH ROAD,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,,45,ME,1969,1984,3401,2,2,1908.595457,1908.595457,3507,NO,26.84,34.67,1,2.15,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,30.75844227,0,0,,,,1,1,,1,nav,1,1969,2,, 24918,NJBF000090334,5218 INDIAN CABIN ROAD,Mullica,NJ,39.59189705,-74.6638298,RES1,3001,,15,NE,1991,1980,3102,1,1,1455.912901,1455.912901,3507,NO,11.3,21.43,1,-0.13,6112,109.408579,118.124705,127.855473,132.230049,I,Above,Gable,0,5701,,16.36542567,0,0,,,,1,1,,0.35,nav,1,1991,1,, 24919,NJBF000090381,5137 INDIAN CABIN ROAD,Mullica,NJ,39.59189705,-74.6638298,RES1,3001,,16,NE,1991,1953,3102,2,1,4410.391918,4410.391918,3507,NO,32.68,46.84,1,0,6112,109.408579,118.124705,127.855473,132.230049,I,Above,Gable,0,5701,,39.75777107,0,0,,,,1,1,,0.35,nav,1,1991,2,, 24920,NJBF000090422,4200 WHITE HORSE PIKE,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,739,16,ME,1969,1932,3401,1,1,1579.902726,1579.902726,3507,NO,16.63,26.19,1,-0.26,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,21.40860236,0,0,,,,1,1,,1,nav,1,1969,1,, 24921,NJBF000090430,4200 WHITE HORSE PIKE,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,739,16,ME,1969,1932,3401,1,1,5053.100908,5053.100908,3507,NO,19.12,27.61,1,1.98,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,23.36130936,0,0,,,,1,1,,1,nav,1,1969,1,, 24922,NJBF000090432,4200 WHITE HORSE PIKE,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,739,16,ME,1969,1932,3401,1,1,3103.408859,3103.408859,3507,NO,12.91,24.25,1,-0.11,6112,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,18.58089495,0,0,,,,1,1,,1,nav,1,1969,1,, 24923,NJBF000090443,4133 WHITE HORSE PIKE,Mullica,NJ,39.58406742,-74.72761499,COM1,3001,959,NaN,ME,1969,0,3401,1,1,7190.476171,7190.476171,3507,NO,20.85,33.78,1,1.48,6109,108.7624,117.512523,127.26373,131.205443,I,Above,Flat,0,NaN,,27.31514886,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24924,NJBF000090455,4124 WHITE HORSE PIKE,Mullica,NJ,39.58600939,-74.73488834,RES1,3001,31,NaN,NE,1940,1960,3101,1,1,1453.982567,1453.982567,3507,NO,12.21,23.65,1,-0.9,6112,108.688251,117.421679,127.178509,131.056841,I,Above,Gable,0,5701,,17.93289328,0,0,,,,1,1,,0.15,nav,1,1940,1,, 24925,NJBF000090486,3901 RAILROAD AVENUE,Mullica,NJ,39.58600939,-74.73488834,RES1,3001,,16,NE,1940,1940,3101,1,1,1152.527383,1152.527383,3507,NO,16.48,26.53,1,0.96,6112,108.688251,117.421679,127.178509,131.056841,I,Above,Gable,0,5701,,21.50712911,0,0,,,,1,1,,0.15,nav,1,1940,1,, 24926,NJBF000090558,5741 CRANBERRY COURT,Mullica,NJ,39.58886549,-74.60639116,RES1,3001,,16,NE,1989,1989,3101,2,1,1932.784902,1932.784902,3505,NO,37.22,43.79,3,3.76,6112,110.108839,118.861427,128.54099,133.377159,I,Above,Flat,0,5701,,40.5027786,0,0,,,,1,1,,0.35,nav,1,1989,2,, 24927,NJBF000090562,5741 CRANBERRY COURT,Mullica,NJ,39.5889984,-74.6064788,RES1,3001,,16,NE,1989,1989,3101,2,1,2979.622142,2979.622142,3505,NO,28.67,40.11,3,2.48,6112,110.107282,118.858795,128.538662,133.373371,I,Above,Flat,0,5701,,34.39130282,0,0,,,,1,1,,0.35,nav,1,1989,2,, 24928,NJBF000090727,5001 INDIAN CABIN ROAD,Mullica,NJ,39.59189705,-74.6638298,RES1,3001,,16,NE,1991,1980,3102,2,1,2672.393016,2672.393016,3507,NO,26.98,33.79,1,-0.98,6112,109.408579,118.124705,127.855473,132.230049,I,Above,Gable,0,5701,,30.38566813,0,1.2,,,,1,1,,0.35,nav,1,1991,2,, 24929,NJBF000090792,5617 PLEASANT MILLS ROAD,Mullica,NJ,39.59361381,-74.61032186,RES1,3001,,16,NE,1956,1956,3101,1,1,1545.060977,1545.060977,3505,NO,24.86,34.33,3,8.58,6112,110.043388,118.75751,128.44883,133.226603,I,Above,Hip,0,5701,,29.59819709,0,0,,,,1,1,,0.35,nav,1,1956,1,, 24930,NJBF000090880,5509 PLEASANT MILLS ROAD,Mullica,NJ,39.59610094,-74.61377737,RES1,3001,,16,NE,1989,1989,3101,2,1,1416.289629,1416.289629,3505,NO,29.29,43.25,3,5.35,6112,109.99179,118.685601,128.384488,133.120716,I,Above,Gable,0,5701,,36.26807225,0,0,,,,1,1,,0.15,nav,1,1989,2,, 24931,NJBF000091394,2300 EIGHTH AVENUE,Mullica,NJ,39.60452787,-74.65070944,RES1,3001,,14,NE,1944,1944,3101,1,1,1294.024889,1294.024889,3507,NO,19.26,31.2,1,2.52,6112,109.52221,118.144163,127.890154,132.285543,I,Above,Gable,0,5701,,25.23226967,0,0,,,,1,1,,0.35,nav,1,1944,1,, 24932,NJBF000091612,2721 FIFTH AVENUE,Mullica,NJ,39.61183268,-74.61284415,RES1,3001,,NaN,NE,1969,0,3102,2,1,3315.027853,3315.027853,3507,NO,36.95,49.38,1,-0.41,6110,109.950284,118.52029,128.248885,132.896605,I,Above,Gable,0,5701,,43.16323256,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24933,NJBF000091776,5057 PLEASANT MILLS ROAD,Mullica,NJ,39.6167636,-74.63044546,RES1,3001,,16,NE,1950,1950,3102,2,1,542.8071211,542.8071211,3507,NO,31.89,44.59,1,0.6,6110,109.720157,118.249972,128.005197,132.482759,I,Above,Gable,0,5701,,38.24096373,0,0,,,,1,1,,0.35,nav,1,1950,2,, 24934,NJBF000091803,5319 LINDA AVENUE,Mullica,NJ,39.61744606,-74.60759606,RES1,3001,,14,NE,1948,1948,3102,1,1,695.9534391,695.9534391,3507,NO,13.75,26.92,1,-0.41,6106,109.995073,118.521711,128.256854,132.91214,I,Above,Gable,0,5701,,20.33305602,0,0,,,,1,1,,0.03,nav,1,1948,1,, 24935,NJBF000091812,5317 LINDA AVENUE,Mullica,NJ,39.61755649,-74.60775191,RES1,3001,,15,NE,1950,1950,3102,1,1,1006.138309,1006.138309,3507,NO,18.39,25.01,1,2.94,6106,109.992734,118.518494,128.254027,132.907412,I,Above,Gable,0,5701,,21.69774768,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24936,NJBF000091839,2331 ELWOOD ROAD,Mullica,NJ,39.61803857,-74.66501959,RES1,3001,,16,NE,1987,1987,3109,2,1,563.1687856,563.1687856,3505,NO,27.35,35.83,3,5.17,6112,109.320381,117.838001,127.623123,131.819175,I,Above,Gable,0,5701,,31.58913842,0,1.1,,,,1,1,,0.15,nav,1,1987,2,, 24937,NJBF000091848,5040 PLEASANT MILLS ROAD,Mullica,NJ,39.61812969,-74.62930867,RES1,3001,,15,NE,1940,1940,3102,1,1,761.8754061,761.8754061,3507,NO,14.7,21.78,1,2.1,6106,109.729006,118.248345,128.005548,132.483594,I,Above,Gable,0,5701,,18.24004258,0,0,,,,1,1,,0.03,nav,1,1940,1,, 24938,NJBF000091844,5305 LINDA AVENUE,Mullica,NJ,39.61807648,-74.60850569,RES1,3001,,16,NE,1960,1960,3102,1,1,1470.752628,1470.752628,3507,NO,15.76,24.24,1,0.12,6106,109.981481,118.503097,128.240488,132.884753,I,Above,Gable,0,5701,,20.00122915,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24939,NJBF000091854,2861 FIFTH AVENUE,Mullica,NJ,39.61823829,-74.60880633,RES1,3001,,16,NE,1983,1983,3102,1,1,511.7937112,511.7937112,3507,NO,14.35,19.98,1,1.59,6106,109.977175,118.497494,128.23553,132.876433,I,Above,Gable,0,5701,,17.16647257,0,0,,,,1,1,,0.03,nav,1,1983,1,, 24940,NJBF000091893,5032 PLEASANT MILLS ROAD,Mullica,NJ,39.61898767,-74.62943637,RES1,3001,,17,NE,1984,1984,3102,2,1,1434.585779,1434.585779,3507,NO,26.93,37.96,1,2.85,6110,109.724564,118.237261,127.996463,132.468112,I,Above,Flat,0,5701,,32.44378256,0,0,,,,1,1,,0.35,nav,1,1984,2,, 24941,NJBF000091890,5310 RIVER DRIVE,Mullica,NJ,39.61893992,-74.60680809,RES1,3001,,16,NE,2016,2016,3102,1,1,1000.309128,1000.309128,3507,NO,12.43,24.07,1,1.45,6106,109.999326,118.514364,128.251884,132.904453,I,Above,Gable,0,5701,,18.25148526,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24942,NJBF000091923,2720 SEVENTH AVENUE,Mullica,NJ,39.61958059,-74.62733871,RES1,3001,,15,NE,1940,1940,3102,2,2,910.1783722,910.1783722,3507,NO,24.68,30.14,1,2.07,6103,109.747449,118.255716,128.014343,132.499045,I,Above,Flat,0,5701,,27.40981684,0,0,,,,1,1,,0.03,nav,1,1940,2,, 24943,NJBF000092032,4855 PLEASANT MILLS ROAD,Mullica,NJ,39.62141999,-74.63954402,RES1,3001,,16,NE,1968,1967,3102,2,1,1507.277633,1507.277633,3507,NO,29.8,38.77,1,1.97,6112,109.597743,118.091078,127.864459,132.23992,I,Above,Gable,0,5701,,34.28330729,0,0,,,,1,1,,0.35,nav,1,1968,2,, 24944,NJBF000092045,4860 PLEASANT MILLS ROAD,Mullica,NJ,39.62162549,-74.63878181,RES1,3001,,16,NE,1949,1949,3102,1,1,1474.197781,1474.197781,3507,NO,13.59,20.97,1,2.04,6106,109.605898,118.097703,127.870907,132.251153,I,Above,Hip,0,5701,,17.28481117,0,0,,,,1,1,,0.03,nav,1,1949,1,, 24945,NJBF000092073,4852 PLEASANT MILLS ROAD,Mullica,NJ,39.62207029,-74.63934143,RES1,3001,,16,NE,1969,1969,3102,2,1,1643.945124,1643.945124,3507,NO,36.48,50.34,1,-0.62,6106,109.597914,118.08628,127.860961,132.233905,I,Above,Gable,0,5701,,43.40804514,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24946,NJBF000092094,4838 PLEASANT MILLS ROAD,Mullica,NJ,39.62240342,-74.64044024,RES1,3001,,NaN,NE,1969,0,3102,2,1,1918.262002,1918.262002,3507,NO,37.96,47.33,1,-0.32,6106,109.584066,118.069829,127.846186,132.208219,I,Above,Hip,0,5701,,42.64781017,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24947,NJBF000092101,5124 VENICE AVENUE,Mullica,NJ,39.62249346,-74.61750967,RES1,3001,,15,NE,1958,1958,3102,1,1,1184.484546,1184.484546,3507,NO,13.99,23.82,1,0.66,6106,109.855148,118.34158,128.097459,132.642888,I,Above,Gable,0,5701,,18.90495337,0,0,,,,1,1,,0.03,nav,1,1958,1,, 24948,NJBF000092117,2684 MCCORMICK AVENUE,Mullica,NJ,39.62277764,-74.63746011,RES1,3001,,16,NE,1960,1960,3102,1,1,870.4401724,870.4401724,3507,NO,16.7,29.03,1,1.16,6103,109.617366,118.1004,127.875097,132.258594,I,Above,Gable,0,5701,,22.86377938,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24949,NJBF000092137,2711 MCCORMICK AVENUE,Mullica,NJ,39.62317348,-74.63515932,RES1,3001,,16,NE,1962,1962,3102,2,1,1412.753926,1412.753926,3507,NO,23.64,31.34,1,0.57,6106,109.642842,118.122959,127.896576,132.296015,I,Above,Gable,0,5701,,27.49260296,0,0,,,,1,1,,0.03,nav,1,1962,2,, 24950,NJBF000092142,5036 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62327062,-74.62021558,RES1,3001,,16,NE,1960,1950,3102,2,1,619.4552683,619.4552683,3507,NO,31,37.45,1,-0.98,6106,109.819677,118.299893,128.060114,132.579011,I,Above,Flat,0,5701,,34.22304537,0,0,,,,1,1,,0.03,nav,1,1960,2,, 24951,NJBF000092144,5006 NEW HAMPSHIRE AVENUE,Mullica,NJ,39.62331685,-74.6240219,RES1,3001,,15,NE,1923,1923,3102,1,1,552.4574636,552.4574636,3507,NO,12.34,25.12,1,0.08,6106,109.773892,118.253508,128.017426,132.505436,I,Above,Gable,0,5701,,18.73325883,0,0,,,,1,1,,0.03,nav,1,1923,1,, 24952,NJBF000092207,,Mullica,NJ,39.62472909,-74.64868905,RES1,3001,,NaN,NE,1969,0,3102,2,1,1278.526437,1278.526437,3507,NO,26.05,39.49,1,-0.44,6106,109.481794,117.949519,127.737889,132.019151,I,Above,Gable,0,5701,,32.77313124,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24953,NJBF000092214,4511 INDIAN CABIN ROAD,Mullica,NJ,39.62480323,-74.65677918,RES1,3001,,16,NE,1965,1965,3102,2,1,1106.954294,1106.954294,3507,NO,23.34,34.23,1,2.13,6112,109.390498,117.857474,127.652149,131.86874,I,Above,Hip,0,5701,,28.78420056,0,0,,,,1,1,,0.35,nav,1,1965,2,, 24954,NJBF000092208,2828 CEDAR LANE,Mullica,NJ,39.62472913,-74.62237486,RES1,3001,,NaN,NE,1969,0,3102,2,1,545.7147576,545.7147576,3507,NO,37.59,50.13,1,0.29,6106,109.788519,118.257332,128.022899,132.515399,I,Above,Gable,0,5701,,43.86078066,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24955,NJBF000092224,2601 THURSTON AVENUE,Mullica,NJ,39.62497332,-74.65135154,RES1,3001,,16,NE,1930,1930,3102,1,1,703.7244481,703.7244481,3507,NO,15.7,27.35,1,2.24,6112,109.45085,117.916657,127.707659,131.966153,I,Above,Gable,0,5701,,21.52907649,0,0,,,,1,1,,0.35,nav,1,1930,1,, 24956,NJBF000092225,4511 INDIAN CABIN ROAD,Mullica,NJ,39.62499929,-74.65657701,RES1,3001,,16,NE,1965,1965,3102,2,1,1126.349299,1126.349299,3507,NO,23.41,35.61,1,-0.49,6112,109.392118,117.857619,127.652601,131.869514,I,Above,Gable,0,5701,,29.50690901,0,0,,,,1,1,,0.35,nav,1,1965,2,, 24957,NJBF000092227,4760 PLEASANT MILLS ROAD,Mullica,NJ,39.62504659,-74.64435676,RES1,3001,,16,NE,1954,1949,3102,1,1,2018.104875,2018.104875,3507,NO,12.97,19.13,1,1.54,6106,109.530111,117.995542,127.781189,132.09499,I,Above,Gable,0,5701,,16.05172315,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24958,NJBF000092233,2668 CAMP SWISS AVENUE,Mullica,NJ,39.62517089,-74.64296412,RES1,3001,,16,NE,1999,1999,3102,1,1,1323.10003,1323.10003,3507,NO,16.4,24.27,1,1.6,6106,109.545662,118.010189,127.794986,132.11914,I,Above,Gable,0,5701,,20.3319415,0,0,,,,1,1,,0.03,nav,1,1999,1,, 24959,NJBF000092239,2611 THURSTON AVENUE,Mullica,NJ,39.62526907,-74.65131104,RES1,3001,,16,NE,1966,1966,3102,1,1,2308.91335,2308.91335,3507,NO,14.39,24.52,1,2.83,6112,109.450338,117.913904,127.705561,131.962469,I,Above,Hip,0,5701,,19.45585482,0,0,,,,1,1,,0.35,nav,1,1966,1,, 24960,NJBF000092242,4760 PLEASANT MILLS ROAD,Mullica,NJ,39.62532432,-74.64411702,RES1,3001,,16,NE,1954,1949,3102,1,1,1213.587434,1213.587434,3507,NO,16.67,27.47,1,-0.8,6103,109.531927,117.995256,127.781349,132.095295,I,Above,Gable,0,5701,,22.06928509,0,0,,,,1,1,,0.03,nav,1,1954,1,, 24961,NJBF000092284,2746 MCCORMICK AVENUE,Mullica,NJ,39.62602618,-74.63498769,RES1,3001,,16,NE,1967,1967,3102,2,1,748.2994275,748.2994275,3507,NO,27.97,35.58,1,0.18,6106,109.634988,118.093246,127.873268,132.256024,I,Above,Hip,0,5701,,31.77458528,0,0,,,,1,1,,0.03,nav,1,1967,2,, 24962,NJBF000092298,,Mullica,NJ,39.62620676,-74.65525674,RES1,3001,,NaN,NE,1969,0,3102,2,1,920.8473858,920.8473858,3507,NO,35.3,49.87,1,-0.47,6112,109.402931,117.859341,127.656163,131.875673,I,Above,Gable,0,5701,,42.58790469,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24963,NJBF000092312,,Mullica,NJ,39.62634901,-74.6552342,RES1,3001,,NaN,NE,1969,0,3102,2,1,1068.184039,1068.184039,3507,NO,30.8,41.12,1,2.05,6112,109.402724,117.858063,127.655199,131.87397,I,Above,Gable,0,5701,,35.9594107,0,0,,,,1,1,,0.35,nav,1,1969,2,, 24964,NJBF000092324,4618 PLEASANT MILLS ROAD,Mullica,NJ,39.62648907,-74.65424697,RES1,3001,738,14,NE,1969,1948,3102,2,2,697.9013888,697.9013888,3507,NO,31.63,41.27,1,0.16,6112,109.413312,117.867606,127.664334,131.890022,I,Above,Gable,0,5701,,36.44716586,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24965,NJBF000092350,4501 INDIAN CABIN ROAD,Mullica,NJ,39.62681918,-74.65586263,RES1,3001,,16,NE,1955,1955,3102,1,1,2964.140932,2964.140932,3507,NO,19.85,30.75,1,1.93,6112,109.394156,117.845945,127.644648,131.855384,I,Above,Gable,0,5701,,25.29832909,0,1.2,,,,1,1,,0.35,nav,1,1955,1,, 24966,NJBF000092364,4557 PLEASANT MILLS ROAD,Mullica,NJ,39.62700379,-74.65611057,RES1,3001,,16,NE,1966,1966,3102,1,1,2702.543487,2702.543487,3507,NO,13.35,19.96,1,-0.04,6112,109.390782,117.841176,127.640496,131.848066,I,Above,Hip,0,5701,,16.65527432,0,1.2,,,,1,1,,0.35,nav,1,1966,1,, 24967,NJBF000092373,4652 RIVERSIDE DRIVE,Mullica,NJ,39.62713735,-74.64900974,RES1,3001,,16,NE,1993,1993,3102,1,1,630.0513483,630.0513483,3507,NO,17.32,29.46,1,2.4,6106,109.470139,117.919597,127.713831,131.977012,I,Above,Gable,0,5701,,23.38699709,0,0,,,,1,1,,0.03,nav,1,1993,1,, 24968,NJBF000092375,2643 THURSTON AVENUE,Mullica,NJ,39.62715307,-74.64986439,RES1,3001,,16,NE,1960,1960,3102,1,1,2126.671822,2126.671822,3507,NO,15.33,22.66,1,0.99,6106,109.460427,117.909754,127.704693,131.960955,I,Above,Gable,0,5701,,18.99452729,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24969,NJBF000092392,2647 THURSTON AVENUE,Mullica,NJ,39.62735817,-74.64983949,RES1,3001,,15,NE,1950,1950,3102,1,1,892.7319501,892.7319501,3507,NO,19.86,29.36,1,2.02,6106,109.460025,117.9078,127.703202,131.95834,I,Above,Gable,0,5701,,24.61079665,0,0,,,,1,1,,0.03,nav,1,1950,1,, 24970,NJBF000092394,4541 PLEASANT MILLS ROAD,Mullica,NJ,39.62744213,-74.65736353,RES1,3001,,15,NE,1978,1978,3102,2,1,603.8840152,603.8840152,3507,NO,28.6,36.92,1,0.55,6112,109.375389,117.82248,127.623748,131.818553,I,Above,Gable,0,5701,,32.76143842,0,0,,,,1,1,,0.35,nav,1,1978,2,, 24971,NJBF000092397,4549 PLEASANT MILLS ROAD,Mullica,NJ,39.62750856,-74.6567028,RES1,3001,,16,NE,1957,1957,3102,2,1,2496.940022,2496.940022,3507,NO,23.97,33.19,1,-0.81,6112,109.382527,117.829116,127.630058,131.829658,I,Above,Gable,0,5701,,28.57674236,0,0,,,,1,1,,0.35,nav,1,1957,2,, 24972,NJBF000092440,2661 THURSTON AVENUE,Mullica,NJ,39.62819402,-74.64882477,RES1,3001,,16,NE,2016,2014,3102,1,1,665.9165556,665.9165556,3507,NO,12.75,21.69,1,0.16,6106,109.468685,117.910142,127.706721,131.964565,I,Above,Hip,0,5701,,17.21847141,0,0,,,,1,1,,0.03,nav,1,2016,1,, 24973,NJBF000092537,2200 THE LANE,Mullica,NJ,39.62986424,-74.69909648,RES1,3001,,16,NE,1960,1960,3102,1,1,2105.370752,2105.370752,3505,NO,23.4,32.43,3,7.18,6112,108.923678,117.354181,127.185275,131.048213,I,Above,Gable,0,5701,,27.91253564,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24974,NJBF000092565,2201 MICKEL DRIVE,Mullica,NJ,39.63029411,-74.70028589,RES1,3001,,16,NE,1969,1969,3102,1,1,1743.806935,1743.806935,3505,NO,17.86,25.51,3,3.48,6112,108.910297,117.337793,127.170387,131.022078,I,Above,Gable,0,5701,,21.68335658,0,0,,,,1,1,,0.15,nav,1,1969,1,, 24975,NJBF000092672,4333 JACKSON ROAD,Mullica,NJ,39.63197718,-74.66073534,RES1,3001,,16,NE,1979,1979,3102,2,1,1773.851567,1773.851567,3507,NO,33.82,46.88,1,1.37,6112,109.32316,117.736292,127.550796,131.689388,I,Above,Gable,0,5701,,40.35162509,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 24976,NJBF000092700,2008 BOREAS ROAD,Mullica,NJ,39.63243008,-74.71923054,RES1,3001,,16,NE,1890,1890,3102,1,1,1013.907469,1013.907469,3505,NO,20.72,31.21,3,6.28,6112,108.7157,117.12989,126.973776,130.683531,I,Above,Gable,0,5701,,25.96921872,0,0,,,,1,1,,0.35,nav,1,1890,1,, 24977,NJBF000092694,4400 PLEASANT MILLS ROAD,Mullica,NJ,39.63234379,-74.65983528,RES1,3001,,16,NE,1988,1987,3102,1,1,1029.407318,1029.407318,3507,NO,19.25,30.66,1,2.12,6112,109.331855,117.742217,127.556973,131.700285,I,Above,Gable,0,5701,,24.95494399,0,0,,,,1,1,,0.35,nav,1,1988,1,, 24978,NJBF000092710,2008 BOREAS ROAD,Mullica,NJ,39.63255911,-74.71989862,RES1,3001,,16,NE,1890,1890,3102,1,1,790.5220184,790.5220184,3505,NO,16.91,22.14,3,-0.44,6112,108.708823,117.122195,126.966549,130.671193,I,Above,Hip,0,5701,,19.52124441,0,0,,,,1,1,,0.35,nav,1,1890,1,, 24979,NJBF000092734,4302 LAKE NESCOCHAGUE DR,Mullica,NJ,39.63303026,-74.66443014,RES1,3001,,16,NE,1969,1969,3102,2,1,1341.535254,1341.535254,3507,NO,29.9,38.5,1,2.7,6112,109.279182,117.684593,127.504202,131.606792,I,Above,Gable,0,5701,,34.20402146,0,0,,,,1,1,,0.03,nav,1,1969,2,, 24980,NJBF000092745,4306 LAKE NESCOCHAGUE DR.,Mullica,NJ,39.6332301,-74.66393509,RES1,3001,,16,NE,1960,1960,3102,1,1,1744.764534,1744.764534,3507,NO,14.25,20.11,1,2.46,6112,109.283928,117.687828,127.507588,131.612758,I,Above,Gable,0,5701,,17.17985567,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24981,NJBF000092746,4134 JACKSON ROAD,Mullica,NJ,39.63324887,-74.66727026,RES1,3001,,16,NE,1974,1974,3102,2,1,2743.158056,2743.158056,3507,NO,41.22,47.14,1,2.62,6109,109.247559,117.651467,127.473502,131.5524,I,Above,Gable,0,5701,,44.17865903,0,0,,,,1,1,,0.03,nav,1,1974,2,, 24982,NJBF000092770,2022 BOREAS ROAD,Mullica,NJ,39.63243008,-74.71923054,RES1,3001,,16,NE,1890,1870,3102,2,1,1524.744098,1524.744098,3505,NO,26.45,35.69,3,3.48,6112,108.7157,117.12989,126.973776,130.683531,I,Above,Gable,0,5701,,31.07171336,0,0,,,,1,1,,0.35,nav,1,1890,2,, 24983,NJBF000092854,3405 MOORES AVENUE,Mullica,NJ,39.63420909,-74.7117117,RES1,3001,,16,NE,1978,1978,3102,1,1,1397.761581,1397.761581,3505,NO,18.15,23.6,3,6.64,6112,108.78415,117.184905,127.030835,130.778516,I,Above,Gable,0,5701,,20.87789083,0,0,,,,1,1,,0.35,nav,1,1978,1,, 24984,NJBF000092865,4330 LAKE NESCOCHAGUE DR,Mullica,NJ,39.63436787,-74.66376962,RES1,3001,,16,NE,1960,1960,3102,1,1,1672.072216,1672.072216,3507,NO,15.55,28.42,1,-0.38,6112,109.281961,117.677385,127.499811,131.598821,I,Above,Gable,0,5701,,21.98599597,0,0,,,,1,1,,0.03,nav,1,1960,1,, 24985,NJBF000092879,4334 LAKE NESCOCHAGUE DR,Mullica,NJ,39.63461526,-74.66380098,RES1,3001,,16,NE,1969,1969,3102,1,1,1462.69591,1462.69591,3507,NO,17.06,29.38,1,-0.53,6109,109.280802,117.67439,127.497443,131.59459,I,Above,Flat,0,5701,,23.22172289,0,0,,,,1,1,,0.03,nav,1,1969,1,, 24986,NJBF000092884,4035 NESCO ROAD,Mullica,NJ,39.63324887,-74.66727026,RES1,3001,,16,NE,1974,1920,3102,1,1,1582.898463,1582.898463,3507,NO,19.08,27.37,1,2.92,6109,109.247559,117.651467,127.473502,131.5524,I,Above,Gable,0,5701,,23.22408094,0,0,,,,1,1,,0.03,nav,1,1974,1,, 24987,NJBF000092890,4035 NESCO ROAD,Mullica,NJ,39.63324887,-74.66727026,RES1,3001,,16,NE,1974,1920,3102,1,1,556.3914574,556.3914574,3507,NO,14.02,22.54,1,2.53,6109,109.247559,117.651467,127.473502,131.5524,I,Above,Gable,0,5701,,18.28005593,0,0,,,,1,1,,0.03,nav,1,1974,1,, 24988,NJBF000092891,4337 LAKE NESCOCHAGUE DR,Mullica,NJ,39.6347965,-74.66313669,RES1,3001,,16,NE,1968,1968,3102,1,1,1424.897406,1424.897406,3507,NO,19.15,26.28,1,1.6,6112,109.287448,117.679648,127.502695,131.603882,I,Above,Gable,0,5701,,22.71407869,0,0,,,,1,1,,0.35,nav,1,1968,1,, 24989,NJBF000092894,4021 NESCO ROAD,Mullica,NJ,39.63324887,-74.66727026,RES1,3001,,16,NE,1974,1955,3102,2,1,2101.478258,2101.478258,3507,NO,37.36,45.12,1,2.71,6109,109.247559,117.651467,127.473502,131.5524,I,Above,Gable,0,5701,,41.24048325,0,0,,,,1,1,,0.03,nav,1,1974,2,, 24990,NJBF000092910,3339 MOORES AVENUE,Mullica,NJ,39.63498979,-74.71576686,RES1,3001,,16,NE,1890,1890,3102,2,1,1357.059768,1357.059768,3505,NO,30.27,41.63,3,0.52,6112,108.741922,117.137728,126.986689,130.70263,I,Above,Gable,0,5701,,35.9514441,0,0,,,,1,1,,0.35,nav,1,1890,2,, 24991,NJBF000092904,4101 NESCO ROAD,Mullica,NJ,39.63494706,-74.66662318,RES1,3001,,16,NE,1974,1974,3102,2,1,1833.950141,1833.950141,3507,NO,36.72,43.51,1,2.82,6112,109.248992,117.640266,127.466027,131.538826,I,Above,Gable,0,5701,,40.1165686,0,0,,,,1,1,,0.03,nav,1,1974,2,, 24992,NJBF000092926,4219 PLEASANT MILLS ROAD,Mullica,NJ,39.6351684,-74.66132035,RES1,3001,,16,NE,1800,1800,3102,2,1,581.587191,581.587191,3507,NO,35.27,45.44,1,-0.98,6112,109.306097,117.695444,127.518144,131.63126,I,Above,Gable,0,5701,,40.35507219,0,0,,,,1,1,,0.35,nav,1,1800,2,, 24993,NJBF000092942,3325 MOORES AVENUE,Mullica,NJ,39.63529956,-74.71693823,RES1,3001,,16,NE,1850,1850,3102,2,1,780.3073311,780.3073311,3505,NO,42.26,50.37,3,6.87,6112,108.729542,117.123346,126.973355,130.679714,I,Above,Gable,0,5701,,46.31477269,0,0,,,,1,1,,0.35,nav,1,1850,2,, 24994,NJBF000092924,4338 LAKE NESCOCHAGUE DR,Mullica,NJ,39.6351512,-74.66394391,RES1,3001,,16,NE,1950,1950,3102,2,1,1336.685861,1336.685861,3507,NO,35.97,48.5,1,0.59,6112,109.277458,117.667068,127.491536,131.584044,I,Above,Gable,0,5701,,42.23905516,0,0,,,,1,1,,0.03,nav,1,1950,2,, 24995,NJBF000092928,4352 LAKE NESCOCHAGUE DR.,Mullica,NJ,39.63517591,-74.66206337,RES1,3001,,16,NE,1978,1978,3102,1,1,1298.880908,1298.880908,3507,NO,18.14,32.48,1,2.62,6112,109.29793,117.687255,127.510492,131.617679,I,Above,Gable,0,5701,,25.30832347,0,0,,,,1,1,,0.03,nav,1,1978,1,, 24996,NJBF000092936,4219 PLEASANT MILLS ROAD,Mullica,NJ,39.63525833,-74.66121339,RES1,3001,,16,NE,1800,1800,3102,2,1,1313.416331,1313.416331,3507,NO,33.19,43.84,1,1.05,6112,109.306969,117.69564,127.518487,131.631861,I,Above,Flat,0,5701,,38.51379658,0,0,,,,1,1,,0.03,nav,1,1800,2,, 24997,NJBF000092956,4342 LAKE NESCOCHAGUE DR,Mullica,NJ,39.63543596,-74.6634848,RES1,3001,,45,NE,1987,1987,3102,2,2,3146.384763,3146.384763,3507,NO,36.27,42.76,1,-0.17,6112,109.281516,117.668982,127.493839,131.588097,I,Above,Gable,0,5701,,39.51134155,0,0,,,,1,1,,0.03,nav,1,1987,2,, 24998,NJBF000092984,4344 LAKE NESCOCHAGUE DR.,Mullica,NJ,39.6356216,-74.6629645,RES1,3001,,16,NE,1984,1984,3102,2,1,3908.273011,3908.273011,3507,NO,33.46,40.87,1,0.17,6112,109.286572,117.672627,127.497586,131.594729,I,Above,Gable,0,5701,,37.16815491,0,0,,,,1,1,,0.03,nav,1,1984,2,, 24999,NJBF000093096,4119 NESCO ROAD,Mullica,NJ,39.63654489,-74.66587812,RES1,3001,,17,NE,1971,1971,3102,1,1,3628.202219,3628.202219,3507,NO,15.37,24.86,1,2.14,6112,109.251771,117.63115,127.460361,131.528506,I,Above,Gable,0,5701,,20.11578108,0,0,,,,1,1,,0.35,nav,1,1971,1,, 25000,NJBF000093106,4205 PLEASANT MILLS ROAD,Mullica,NJ,39.63666215,-74.66169329,RES1,3001,,16,NE,1762,1762,3102,2,1,1148.471458,1148.471458,3507,NO,32.56,37.83,1,2.74,6109,109.296986,117.675233,127.501887,131.602284,I,Above,Gable,0,5701,,35.19043176,0,0,,,,1,1,,0.03,nav,1,1762,2,, 25001,NJBF000093154,4205 PLEASANT MILLS ROAD,Mullica,NJ,39.63706834,-74.66160846,RES1,3001,,16,NE,1762,1762,3102,2,1,2913.745462,2913.745462,3507,NO,24.94,38.03,1,0.41,6112,109.296545,117.671768,127.499372,131.597789,I,Above,Gable,0,5701,,31.48848389,0,0,,,,1,1,,0.03,nav,1,1762,2,, 25002,NJBF000093173,4205 PLEASANT MILLS ROAD,Mullica,NJ,39.63719579,-74.6618448,RES1,3001,,16,NE,1762,1762,3102,2,1,576.7433916,576.7433916,3507,NO,41.68,49.64,1,2.69,6112,109.29352,117.667807,127.495894,131.591596,I,Above,Gable,0,5701,,45.66221433,0,0,,,,1,1,,0.03,nav,1,1762,2,, 25003,NJBF000093240,,Mullica,NJ,39.63771962,-74.66509159,RES1,3001,,NaN,NE,1969,0,3102,2,1,1144.757355,1144.757355,3507,NO,32.5,38.3,1,1.4,6112,109.256371,117.626988,127.458598,131.525213,I,Above,Gable,0,5701,,35.40291234,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25004,NJBF000093289,4141 NESCO ROAD,Mullica,NJ,39.63816787,-74.66427885,RES1,3001,,16,NE,1970,1970,3102,2,1,2400.985242,2400.985242,3507,YES,30.46,43.2,1,0.87,6112,109.263697,117.630936,127.463118,131.533207,I,Above,Gable,0,5701,,36.82985143,0,0,,,,1,1,,0.35,nav,1,1970,2,, 25005,NJBF000093321,4145 NESCO ROAD,Mullica,NJ,39.63839746,-74.66340265,RES1,3001,,16,NE,1955,1955,3102,1,1,3317.943593,3317.943593,3507,NO,13.77,19.8,1,-0.38,6112,109.272456,117.637933,127.470093,131.545604,I,Above,Gable,0,5701,,16.7846698,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25006,NJBF000093353,4145 NESCO ROAD,Mullica,NJ,39.63862759,-74.66333963,RES1,3001,,16,NE,1955,1955,3102,1,1,713.4138388,713.4138388,3507,NO,16.65,23.27,1,1.97,6112,109.27236,117.63612,127.468816,131.543313,I,Above,Gable,0,5701,,19.96474786,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25007,NJBF000093365,4155 NESCO ROAD,Mullica,NJ,39.63868474,-74.66307971,RES1,3001,,17,NE,2015,2015,3102,1,1,2434.246492,2434.246492,3507,NO,13.35,26.89,1,-0.9,6112,109.274999,117.638317,127.470978,131.54716,I,Above,Hip,0,5701,,20.11875846,0,0,,,,1,1,,0.03,nav,1,2015,1,, 25008,NJBF000093416,4157 NESCO ROAD,Mullica,NJ,39.63901101,-74.66273249,RES1,3001,,16,NE,1954,1954,3102,1,1,2069.49212,2069.49212,3507,NO,13.46,25.84,1,1.42,6112,109.277684,117.638559,127.471801,131.548605,I,Above,Flat,0,5701,,19.65001845,0,0,,,,1,1,,0.03,nav,1,1954,1,, 25009,NJBF000095301,3700 RICHARDS AVENUE,Mullica,NJ,39.65033581,-74.68272323,RES1,3001,,16,NE,1969,1957,3101,1,1,883.0468574,883.0468574,3507,NO,11.53,25.05,1,-0.5,6112,109.026571,117.30721,127.181804,131.028063,I,Above,Flat,0,5701,,18.29169252,0,0,,,,1,1,,0.15,nav,1,1969,1,, 25010,NJBF000095585,2622 RICHARDS AVENUE,Mullica,NJ,39.65103577,-74.68980005,RES1,3001,,16,NE,1965,1965,3101,1,1,1381.283893,1381.283893,3507,NO,12.68,18.18,1,-0.4,6112,108.951269,117.228312,127.108188,130.896684,I,Above,Gable,0,5701,,15.42832255,0,0,,,,1,1,,0.15,nav,1,1965,1,, 25011,NJBF000095586,2608 RICHARDS AVENUE,Mullica,NJ,39.65104138,-74.69191609,RES1,3001,,16,NE,1960,1960,3101,1,1,915.9945278,915.9945278,3507,NO,13.84,26.93,1,-1,6112,108.929647,117.207118,127.087945,130.860871,I,Above,Flat,0,5701,,20.38419952,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25012,NJBF000095584,3415 W LAKEVIEW DR,Mullica,NJ,39.65101702,-74.6912101,RES1,3001,,16,NE,1955,1955,3101,1,1,2790.432148,2790.432148,3507,NO,14.06,22.85,1,2.53,6112,108.936926,117.214412,127.094867,130.873121,I,Above,Hip,0,5701,,18.45413273,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25013,NJBF000095599,2606 RICHARDS AVENUE,Mullica,NJ,39.65112681,-74.6921462,RES1,3001,,16,NE,1959,1959,3101,1,1,975.1335525,975.1335525,3507,NO,19.26,28.49,1,2.96,6112,108.927017,117.203924,127.085078,130.855744,I,Above,Gable,0,5701,,23.87632058,0,0,,,,1,1,,0.35,nav,1,1959,1,, 25014,NJBF000095617,2604 RICHARDS AVENUE,Mullica,NJ,39.65121841,-74.69239404,RES1,3001,,16,NE,1957,1957,3101,1,1,1282.412503,1282.412503,3507,NO,17.15,31.08,1,1.48,6112,108.924189,117.200501,127.082003,130.850244,I,Above,Gable,0,5701,,24.11625761,0,0,,,,1,1,,0.35,nav,1,1957,1,, 25015,NJBF000095631,3413 W LAKEVIEW DR,Mullica,NJ,39.65131224,-74.69145421,RES1,3001,,16,NE,1955,1955,3101,1,1,2178.071507,2178.071507,3507,NO,13.93,21.31,1,2.51,6112,108.933451,117.208881,127.090224,130.864694,I,Above,Gable,0,5701,,17.61558915,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25016,NJBF000095637,2601 N LAKEVIEW DR,Mullica,NJ,39.65136532,-74.69264288,RES1,3001,,16,NE,1955,1955,3101,1,1,1345.416124,1345.416124,3507,NO,12.12,26.58,1,-0.35,6112,108.921165,117.196483,127.07848,130.843913,I,Above,Gable,0,5701,,19.3476063,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25017,NJBF000095659,2600 N LAKEVIEW DRIVE,Mullica,NJ,39.65154186,-74.69323693,RES1,3001,,16,NE,1955,1955,3101,1,1,1315.368996,1315.368996,3507,NO,16.14,27.55,1,-0.89,6112,108.914537,117.188725,127.071444,130.831361,I,Above,Gable,0,5701,,21.8460258,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25018,NJBF000095687,2604 N LAKEVIEW DR,Mullica,NJ,39.65172318,-74.69288773,RES1,3001,,16,NE,1960,1960,3101,1,1,1872.731947,1872.731947,3507,NO,17.79,25.28,1,1.53,6112,108.917479,117.190296,127.073347,130.834571,I,Above,Gable,0,5701,,21.53476857,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25019,NJBF000095706,2606 N LAKEVIEW DRIVE,Mullica,NJ,39.65188056,-74.69271832,RES1,3001,,16,NE,1964,1964,3101,1,1,1240.728839,1240.728839,3507,NO,17.34,26.75,1,-0.13,6112,108.91868,117.190329,127.073727,130.835116,I,Above,Gable,0,5701,,22.04743576,0,0,,,,1,1,,0.35,nav,1,1964,1,, 25020,NJBF000095730,2606 N LAKEVIEW DRIVE,Mullica,NJ,39.65203058,-74.69286348,RES1,3001,,16,NE,1964,1964,3101,1,1,1344.450025,1344.450025,3507,NO,17.87,31.99,1,0.74,6112,108.916704,117.187316,127.071174,130.830492,I,Above,Gable,0,5701,,24.9283403,0,0,,,,1,1,,0.35,nav,1,1964,1,, 25021,NJBF000095728,2608 NORTH LAKEVIEW DRIVE,Mullica,NJ,39.65202548,-74.692518,RES1,3001,,16,NE,1959,1959,3101,1,1,1038.13652,1038.13652,3507,NO,16.06,22.2,1,0.7,6112,108.920232,117.190806,127.074502,130.836372,I,Above,Gable,0,5701,,19.12792334,0,0,,,,1,1,,0.35,nav,1,1959,1,, 25022,NJBF000095752,2610 N LAKEVIEW DRIVE,Mullica,NJ,39.65217901,-74.69233807,RES1,3001,,16,NE,1960,1960,3101,1,1,1045.901926,1045.901926,3507,NO,17.92,26.53,1,2.56,6112,108.921547,117.19098,127.075009,130.837146,I,Above,Flat,0,5701,,22.2259409,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25023,NJBF000095758,,Mullica,NJ,39.65220872,-74.69357375,RES1,3001,,NaN,NE,1969,0,3101,1,1,1350.253463,1350.253463,3507,NO,16.02,24.75,1,0.8,6112,108.908889,117.178397,127.063027,130.815976,I,Above,Gable,0,5701,,20.38572968,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25024,NJBF000095770,,Mullica,NJ,39.65232058,-74.693584,RES1,3001,,NaN,NE,1969,0,3101,1,1,600.0029373,600.0029373,3507,NO,18.06,28.02,1,-0.08,6112,108.908414,117.177125,127.062057,130.814174,I,Above,Gable,0,5701,,23.03827793,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25025,NJBF000095776,2612 N LAKEVIEW DR,Mullica,NJ,39.65237965,-74.69220221,RES1,3001,,16,NE,1955,1955,3101,1,1,1139.915946,1139.915946,3507,NO,17.02,26.28,1,2.17,6112,108.922257,117.190224,127.074728,130.836496,I,Above,Gable,0,5701,,21.65244723,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25026,NJBF000095863,3516 TOMOCOMO DRIVE,Mullica,NJ,39.6530487,-74.68536818,RES1,3001,,16,NE,1957,1957,3101,1,1,1023.604116,1023.604116,3507,NO,13.08,25.48,1,2.06,6112,108.989977,117.251621,127.13478,130.942813,I,Above,Flat,0,5701,,19.27943477,0,0,,,,1,1,,0.35,nav,1,1957,1,, 25027,NJBF000095905,3512 TOMOCOMO DRIVE,Mullica,NJ,39.65337068,-74.68565834,RES1,3001,,16,NE,1960,1955,3101,1,1,1105.022128,1105.022128,3507,NO,17.27,29.36,1,0.67,6112,108.98589,117.245284,127.12945,130.933133,I,Above,Hip,0,5701,,23.31714728,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25028,NJBF000095930,3510 TOMOCOMO DRIVE,Mullica,NJ,39.65354716,-74.68583577,RES1,3001,,16,NE,1955,1955,3101,1,1,1166.092796,1166.092796,3507,NO,19.47,32.82,1,2.69,6112,108.983456,117.241627,127.126351,130.927509,I,Above,Gable,0,5701,,26.14621896,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25029,NJBF000095946,3508 TOMOCOMO DRIVE,Mullica,NJ,39.65365846,-74.68611517,RES1,3001,,16,NE,1957,1957,3101,1,1,1260.115932,1260.115932,3507,NO,14.3,22.16,1,-0.45,6112,108.980206,117.237642,127.1228,130.921109,I,Above,Gable,0,5701,,18.22872403,0,0,,,,1,1,,0.35,nav,1,1957,1,, 25030,NJBF000095966,3403 E LAKEVIEW DRIVE,Mullica,NJ,39.65376028,-74.68934013,RES1,3001,,16,NE,1955,1955,3101,1,1,808.4118409,808.4118409,3507,NO,15.6,21.77,1,1.66,6112,108.946789,117.204227,127.091163,130.864663,I,Above,Gable,0,5701,,18.68638587,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25031,NJBF000095970,3506 TOMOCOMO DRIVE,Mullica,NJ,39.65379195,-74.68634898,RES1,3001,,16,NE,1968,1968,3101,1,1,1590.652201,1590.652201,3507,NO,12.25,22.43,1,0.48,6112,108.977342,117.233869,127.119499,130.915146,I,Above,Gable,0,5701,,17.33944908,0,0,,,,1,1,,0.35,nav,1,1968,1,, 25032,NJBF000095980,3403 E LAKEVIEW DRIVE,Mullica,NJ,39.653862,-74.68915089,RES1,3001,,16,NE,1955,1955,3101,1,1,1150.58739,1150.58739,3507,NO,20.42,26.56,1,1.19,6112,108.948375,117.20504,127.092164,130.866379,I,Above,Gable,0,5701,,23.48714923,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25033,NJBF000095979,2649 N LAKEVIEW DRIVE,Mullica,NJ,39.65385228,-74.68957409,RES1,3001,,16,NE,1955,1955,3101,1,1,1240.733425,1240.733425,3507,NO,20.62,28.07,1,2.22,6112,108.944086,117.200921,127.088209,130.859352,I,Above,Gable,0,5701,,24.34282006,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25034,NJBF000095982,3504 TOMOCOMO DRIVE,Mullica,NJ,39.6538773,-74.68657091,RES1,3001,,16,NE,1997,1997,3101,1,1,1187.417984,1187.417984,3507,NO,12.88,25.13,1,-0.14,6112,108.97477,117.230737,127.116702,130.910107,I,Above,Gable,0,5701,,19.00481757,0,0,,,,1,1,,0.35,nav,1,1997,1,, 25035,NJBF000095997,3502 TOMOCOMO DRIVE,Mullica,NJ,39.65397999,-74.6868003,RES1,3001,,16,NE,1957,1957,3101,1,1,1325.063431,1325.063431,3507,NO,13.88,28.83,1,0.68,6112,108.972066,117.227346,127.113698,130.904688,I,Above,Gable,0,5701,,21.35638462,0,0,,,,1,1,,0.35,nav,1,1957,1,, 25036,NJBF000096010,3500 TOMOCOMO DRIVE,Mullica,NJ,39.65409138,-74.68699204,RES1,3001,,16,NE,1960,1960,3101,1,1,1116.649468,1116.649468,3507,NO,14.81,24.55,1,1.97,6112,108.969715,117.224243,127.110985,130.899786,I,Above,Hip,0,5701,,19.68011216,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25037,NJBF000096048,3424 TOMOCOMO DRIVE,Mullica,NJ,39.65439092,-74.68731475,RES1,3001,,16,NE,1957,1957,3101,1,1,1345.413097,1345.413097,3507,NO,16.69,23.74,1,-0.34,6112,108.965376,117.217829,127.105532,130.88989,I,Above,Gable,0,5701,,20.21430436,0,0,,,,1,1,,0.35,nav,1,1957,1,, 25038,NJBF000096075,3422 TOMOCOMO DRIVE,Mullica,NJ,39.65455042,-74.68745303,RES1,3001,,16,NE,1955,1955,3101,1,1,1047.826594,1047.826594,3507,NO,14.23,25.01,1,-0.6,6112,108.963418,117.214764,127.102961,130.885214,I,Above,Hip,0,5701,,19.61890951,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25039,NJBF000096099,3420 TOMOCOMO DRIVE,Mullica,NJ,39.65471867,-74.6876123,RES1,3001,,16,NE,1955,1955,3101,1,1,1070.131816,1070.131816,3507,NO,15.09,23.51,1,0.93,6112,108.961211,117.211384,127.100112,130.880035,I,Above,Gable,0,5701,,19.29872362,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25040,NJBF000096109,3406 EAST LAKEVIEW DRIVE,Mullica,NJ,39.65479617,-74.69036084,RES1,3001,,16,NE,1955,1955,3101,1,1,1002.26826,1002.26826,3507,NO,13.3,18.97,1,0.3,6112,108.932851,117.183128,127.07331,130.832243,I,Above,Gable,0,5701,,16.13417635,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25041,NJBF000096118,3418 TOMOCOMO DRIVE,Mullica,NJ,39.65485438,-74.68784222,RES1,3001,,16,NE,1959,1959,3101,1,1,1116.666046,1116.666046,3507,NO,12.92,20.14,1,1.64,6112,108.958393,117.207653,127.096853,130.874144,I,Above,Gable,0,5701,,16.53102002,0,0,,,,1,1,,0.35,nav,1,1959,1,, 25042,NJBF000096128,3404 E LAKEVIEW DR,Mullica,NJ,39.65490453,-74.69060639,RES1,3001,,16,NE,1955,1955,3101,1,1,1525.701968,1525.701968,3507,NO,11.69,25.64,1,-0.18,6112,108.929984,117.179542,127.070126,130.826511,I,Above,Gable,0,5701,,18.66624689,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25043,NJBF000096159,3414 TOMOCOMO DRIVE,Mullica,NJ,39.65504393,-74.68835702,RES1,3001,,16,NE,1956,1956,3101,1,1,990.6387547,990.6387547,3507,NO,19.54,29.02,1,1.99,6112,108.952471,117.200495,127.090446,130.862603,I,Above,Gable,0,5701,,24.27812764,0,0,,,,1,1,,0.35,nav,1,1956,1,, 25044,NJBF000096194,3408 TOMOCOMO DRIVE,Mullica,NJ,39.65521037,-74.68883444,RES1,3001,,16,NE,1955,1955,3101,1,1,1296.94298,1296.94298,3507,NO,15.03,20.82,1,2.31,6112,108.947027,117.193977,127.084595,130.852072,I,Above,Hip,0,5701,,17.92428923,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25045,NJBF000088806,5100 WHITE HORSE PIKE,Mullica,NJ,39.56044002,-74.69206726,RES1,3001,,16,NE,1975,1975,3101,1,1,1552.851736,1552.851736,3505,NO,20.61,32.45,3,7.26,6112,109.174003,118.114366,127.811544,132.167456,I,Above,Gable,0,5701,,26.53143689,0,0,,,,1,1,,0.35,nav,1,1975,1,, 25046,NJBF000088842,5058 WHITE HORSE PIKE,Mullica,NJ,39.560892,-74.69277142,RES1,3001,210,16,NE,1969,1955,3101,1,1,2029.749066,2029.749066,3505,NO,17.76,26.7,3,-0.72,6112,109.165616,118.102154,127.800422,132.147943,I,Above,Gable,0,5701,,22.23262657,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25047,NJBF000087720,904 HAMBURG AVENUE,Mullica,NJ,39.54110472,-74.64773342,RES1,3001,,16,NE,1969,1890,3102,2,1,1198.654367,1198.654367,3507,NO,36.22,49.29,1,1.25,6112,109.713115,118.831273,128.469699,133.298699,I,Above,Hip,0,5701,,42.75359938,0,0,,,,1,1,,0.35,nav,1,1969,2,, 25048,NJBF000092986,2050 CHESTNUT STREET,Mullica,NJ,39.63566089,-74.71852725,AGR1,3001,,16,NE,1970,1970,3401,1,1,2904.900501,2904.900501,3507,NO,11.74,24.73,1,-0.84,6112,108.712971,117.104489,126.955759,130.649594,I,Above,Flat,0,5701,,18.23627967,0,0,,,,1,1,,0.15,nav,1,1970,1,, 25049,NJBF000092979,2050 CHESTNUT STREET,Mullica,NJ,39.63557686,-74.71835957,AGR1,3001,,16,NE,1970,1970,3401,1,1,3269.556932,3269.556932,3507,NO,11.63,21.04,1,-0.46,6112,108.714847,117.106927,126.957957,130.653395,I,Above,Flat,0,5701,,16.33390785,0,0,,,,1,1,,0.15,nav,1,1970,1,, 25050,NJBF000093358,3163 NESCO ROAD,Mullica,NJ,39.6386605,-74.72233194,AGR1,3001,,NaN,NE,1969,0,3401,1,1,3517.732035,3517.732035,3507,NO,13.94,25.59,1,0.05,6112,108.667119,117.038411,126.897686,130.548538,I,Above,Flat,0,NaN,,19.7657001,0,0,,,,1,1,,0.15,nav,1,1969,1,, 25051,NJBF000093359,3163 NESCO ROAD,Mullica,NJ,39.6386605,-74.72233194,AGR1,3001,,NaN,NE,1969,0,3401,1,1,4082.420084,4082.420084,3507,NO,16.02,26.78,1,0.14,6112,108.667119,117.038411,126.897686,130.548538,I,Above,Flat,0,NaN,,21.40030519,0,0,,,,1,1,,0.15,nav,1,1969,1,, 25052,NJBF000093292,3163 NESCO ROAD,Mullica,NJ,39.6381944,-74.72254901,AGR1,3001,,NaN,NE,1969,0,3401,1,1,1292.095894,1292.095894,3507,NO,11.32,25.17,1,0.15,6112,108.666429,117.041002,126.899208,130.551657,I,Above,Flat,0,NaN,,18.24252279,0,0,,,,1,1,,0.15,nav,1,1969,1,, 25053,NJBF000069770,1000 ARGO LANE,Northfield,NJ,39.3638256,-74.54603886,RES1,3001,,18,NE,1992,1992,3109,2,1,3794.547426,3794.547426,3507,NO,36,49.97,1,1.76,6112,111.997811,122.098168,131.767642,138.124807,I,Above,Gable,0,5701,,42.98611727,0,1.2,,,,1,1,,0.35,nav,1,1992,2,, 25054,NJBF000069308,2008 BAY DR,Northfield,NJ,39.35961516,-74.54885764,RES1,3001,,17,NE,1982,1982,3109,2,1,4433.867103,4433.867103,3507,NO,24.32,31.55,1,-0.74,6110,111.985825,122.094361,131.767586,138.131596,I,Above,Gable,0,5701,,27.93623088,0,1.2,,,,1,1,,0.35,nav,1,1982,2,, 25055,NJBF000072173,106 CATHERINE PL,Northfield,NJ,39.37278401,-74.5353679,RES1,3001,,17,NE,1975,1975,3102,2,1,1517.093802,1517.093802,3507,NO,37.46,51.9,1,-0.84,6106,112.138107,122.189426,131.852166,138.202241,I,Above,Gable,0,5701,,44.67929657,0,0,,,,1,1,,0.03,nav,1,1975,2,, 25056,NJBF000072285,102 CATHERINE PL,Northfield,NJ,39.37315671,-74.53589798,RES1,3001,,17,NE,1965,1965,3102,2,1,1975.438521,1975.438521,3507,NO,38.55,46.46,1,2.98,6110,112.122153,122.176172,131.838206,138.185669,I,Above,Gable,0,5701,,42.50773539,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 25057,NJBF000072417,20 CATHERINE PL,Northfield,NJ,39.37358076,-74.53666464,RES1,3001,,17,NE,1986,1986,3102,2,1,3332.269492,3332.269492,3507,NO,28.12,41.46,1,1.85,6112,112.100324,122.158228,131.81938,138.163502,I,Above,Gable,0,5701,,34.78638891,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 25058,NJBF000069530,1901 BAY DR,Northfield,NJ,39.36129697,-74.54800204,RES1,3001,,17,NE,1960,1960,3109,1,1,2486.109481,2486.109481,3507,NO,11.21,22.57,1,0.28,6106,111.984156,122.09111,131.762852,138.123448,I,Above,Gable,0,5701,,16.88700479,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 25059,NJBF000069517,1905 BAY DR,Northfield,NJ,39.3611443,-74.54812443,RES1,3001,,17,NE,1958,1958,3109,1,1,2568.546861,2568.546861,3507,NO,12.08,21.66,1,-0.05,6106,111.983291,122.090632,131.762507,138.123289,I,Above,Gable,0,5701,,16.86980919,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 25060,NJBF000069524,225 E STEELMAN AVE,Northfield,NJ,39.3612541,-74.54857689,RES1,3001,,17,NE,1958,1958,3109,1,1,2188.216968,2188.216968,3507,NO,14.86,23.09,1,2.71,6112,111.971691,122.081522,131.753261,138.112309,I,Above,Hip,0,5701,,18.97499084,0,1.1,,,,1,1,,0.35,nav,1,1958,1,, 25061,NJBF000069315,,Northfield,NJ,39.35964109,-74.55179425,RES1,3001,,NaN,NE,1956,0,3109,2,1,2453.164649,2453.164649,3507,NO,34.22,43.5,1,-0.99,6112,111.919234,122.042776,131.715931,138.070852,I,Above,Gable,0,5701,,38.85968071,0,0,,,,1,1,,0.35,nav,1,1956,2,, 25062,NJBF000071143,,Northfield,NJ,39.36957153,-74.57500562,RES1,3001,,NaN,NE,1969,0,3101,1,1,2831.386162,2831.386162,3507,NO,12.16,22.75,1,0.9,6112,111.272465,121.534266,131.201797,137.440114,I,Above,Gable,0,5701,,17.45707626,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25063,NJBF000071009,,Northfield,NJ,39.36912851,-74.57440512,RES1,3001,,NaN,NE,1969,0,3101,1,1,2892.259163,2892.259163,3507,NO,15.19,20.8,1,-0.7,6112,111.291217,121.54924,131.217118,137.459339,I,Above,Gable,0,5701,,17.99527257,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25064,NJBF000071081,,Northfield,NJ,39.36934109,-74.57513312,RES1,3001,,NaN,NE,1969,0,3101,1,1,2122.429346,2122.429346,3507,NO,13.15,20.94,1,0.7,6112,111.272199,121.534488,131.202442,137.441031,I,Above,Gable,0,5701,,17.04576687,0,0,,,,1,1,,0.15,nav,1,1969,1,, 25065,NJBF000072978,8 MAZZA DR,Northfield,NJ,39.37617529,-74.56981428,RES1,3001,,17,NE,1987,1987,3102,2,1,1621.577241,1621.577241,3507,NO,29.48,40.78,1,2.66,6112,111.321421,121.555258,131.209511,137.445488,I,Above,Gable,0,5701,,35.12919685,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 25066,NJBF000069023,,Northfield,NJ,39.35842373,-74.55018196,RES1,3001,,NaN,NE,1973,0,3109,2,1,2995.374552,2995.374552,3507,NO,33.8,44.85,1,2.32,6106,111.971107,122.084156,131.758372,138.122531,I,Above,Gable,0,5701,,39.32453036,0,0,,,,1,1,,0.03,nav,1,1973,2,, 25067,NJBF000072231,104 CATHERINE PL,Northfield,NJ,39.37297607,-74.53561602,RES1,3001,,17,NE,1970,1970,3102,2,1,2103.373959,2103.373959,3507,NO,35.49,48.22,1,0.02,6106,112.130453,122.183038,131.845427,138.194212,I,Above,Hip,0,5701,,41.85310636,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 25068,NJBF000072193,111 CATHERINE PL,Northfield,NJ,39.37285375,-74.53460689,RES1,3001,,17,NE,2004,2004,3102,2,1,3322.260024,3322.260024,3507,NO,24.6,39.44,1,2.83,6106,112.15455,122.202037,131.865065,138.216499,I,Above,Gable,0,5701,,32.02201855,0,0,,,,1,1,,0.03,nav,1,2004,2,, 25069,NJBF000069260,2010 BAY DR,Northfield,NJ,39.35940665,-74.54911321,RES1,3001,,17,NE,1982,1982,3109,2,1,2489.417811,2489.417811,3507,NO,35.85,45.24,1,0.13,6106,111.982698,122.09216,131.765557,138.129531,I,Above,Gable,0,5701,,40.54426673,0,1.2,,,,1,1,,0.03,nav,1,1982,2,, 25070,NJBF000069187,2200 BAY DR,Northfield,NJ,39.35911748,-74.54948793,RES1,3001,,NaN,NE,1966,1966,3109,1,1,3436.374452,3436.374452,3507,NO,16.69,30.06,1,2.27,6106,111.977914,122.088754,131.76239,138.126247,I,Above,Gable,0,5701,,23.3729478,0,1.2,,,,1,1,,0.03,nav,1,1966,1,, 25071,NJBF000069228,224 E ROSEDALE AVE,Northfield,NJ,39.35924805,-74.55142899,RES1,3001,,17,NE,1969,1969,3109,1,1,3127.148259,3127.148259,3507,NO,20.69,30.13,1,2.94,6112,111.932463,122.053414,131.726916,138.084345,I,Above,Gable,0,5701,,25.40988554,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 25072,NJBF000071911,4 ST ANDREWS DR,Northfield,NJ,39.37197427,-74.53669793,RES1,3001,,18,NE,1987,1987,3102,1,1,3779.181487,3779.181487,3507,NO,16.85,27.97,1,1.43,6106,112.116748,122.174698,131.837799,138.188096,I,Above,Hip,0,5701,,22.40986241,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 25073,NJBF000068432,126 E OAKCREST AVE,Northfield,NJ,39.356741,-74.554219,RES1,3001,,17,NE,1968,1968,3102,2,1,1202.381361,1202.381361,3507,NO,30.78,40.02,1,1.7,6106,111.902096,122.031986,131.707754,138.064945,I,Above,Gable,0,5701,,35.39868456,0,0,,,,1,1,,0.03,nav,1,1968,2,, 25074,NJBF000069479,2001 BAY DR,Northfield,NJ,39.36073938,-74.54866887,RES1,3001,,17,NE,1968,1968,3109,2,1,2831.587121,2831.587121,3507,NO,27.31,36.5,1,-0.32,6110,111.976005,122.085485,131.7577,138.118303,I,Above,Hip,0,5701,,31.90324885,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 25075,NJBF000068632,142 E REVERE AVE,Northfield,NJ,39.35728475,-74.55353657,RES1,3001,,17,NE,1964,1964,3102,1,1,2112.794809,2112.794809,3507,NO,19.43,27.41,1,1.35,6112,111.910294,122.037956,131.713227,138.070764,I,Above,Gable,0,5701,,23.42293749,0,0,,,,1,1,,0.35,nav,1,1964,1,, 25076,NJBF000068757,145 E REVERE AVE,Northfield,NJ,39.35756101,-74.55294914,RES1,3001,,17,NE,1960,1960,3102,1,1,2774.787126,2774.787126,3507,NO,18.23,32.53,1,1.14,6112,111.919926,122.045214,131.720218,138.078693,I,Above,Hip,0,5701,,25.37542768,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25077,NJBF000069440,2003 BAY DR,Northfield,NJ,39.36043118,-74.54889799,RES1,3001,,17,NE,1970,1970,3109,1,1,2161.413199,2161.413199,3507,NO,18.45,23.75,1,0.76,6112,111.974674,122.084816,131.757303,138.118311,I,Above,Gable,0,5701,,21.09763741,0,1.2,,,,1,1,,0.35,nav,1,1970,1,, 25078,NJBF000069463,300 E MILL RD,Northfield,NJ,39.36064416,-74.54766502,RES1,3001,,17,NE,1964,1964,3109,1,1,1985.725596,1985.725596,3507,NO,13.06,27.33,1,1.63,6106,111.99987,122.10407,131.776447,138.140361,I,Above,Gable,0,5701,,20.19547298,0,0,,,,1,1,,0.03,nav,1,1964,1,, 25079,NJBF000068791,141 E REVERE AVE,Northfield,NJ,39.35762879,-74.55318125,RES1,3001,,17,NE,2001,2001,3102,1,1,1505.32404,1505.32404,3507,NO,20.86,27.01,1,1.45,6112,111.913819,122.040423,131.715385,138.072884,I,Above,Gable,0,5701,,23.93468053,0,1.2,,,,1,1,,0.35,nav,1,2001,1,, 25080,NJBF000068381,133 E VERNON AVE,Northfield,NJ,39.35656925,-74.55481647,RES1,3001,,17,NE,1960,1960,3102,1,1,1846.208877,1846.208877,3507,NO,15.95,27.32,1,0.92,6112,111.890949,122.023445,131.69941,138.055239,I,Above,Gable,0,5701,,21.63141055,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 25081,NJBF000069430,2002 BAY DR,Northfield,NJ,39.36032905,-74.5480185,RES1,3001,,18,NE,2005,2005,3109,2,1,2785.223639,2785.223639,3507,NO,31.76,46.12,1,0.95,6106,111.995825,122.101308,131.773945,138.137936,I,Above,Gable,0,5701,,38.94058258,0,0,,,,1,1,,0.03,nav,1,2005,2,, 25082,NJBF000068402,128 E OAKCREST AVE,Northfield,NJ,39.35662999,-74.553979,RES1,3001,,17,NE,1987,1987,3102,2,1,1940.119235,1940.119235,3507,NO,39.34,52.38,1,1.25,6110,111.908952,122.037386,131.713221,138.07157,I,Above,Gable,0,5701,,45.86083611,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 25083,NJBF000068685,140 E REVERE AVE,Northfield,NJ,39.35741255,-74.55383742,RES1,3001,,17,NE,1990,1990,3102,2,1,1769.162241,1769.162241,3507,NO,24.02,33.53,1,-0.97,6112,111.901872,122.031325,131.706513,138.062645,I,Above,Gable,0,5701,,28.77443933,0,1.1,,,,1,1,,0.35,nav,1,1990,2,, 25084,NJBF000068280,153 E. VERNON AVE,Northfield,NJ,39.35622544,-74.55385995,RES1,3001,,17,NE,1998,1998,3102,2,1,2128.13036,2128.13036,3507,NO,30.02,37.57,1,0.08,6106,111.916975,122.043887,131.72003,138.080144,I,Above,Flat,0,5701,,33.79680171,0,0,,,,1,1,,0.03,nav,1,1998,2,, 25085,NJBF000068345,147 E VERNON AVE,Northfield,NJ,39.35643978,-74.55440048,RES1,3001,,16,NE,1940,1940,3102,1,1,1738.341335,1738.341335,3507,NO,14.31,20.13,1,0.19,6110,111.902,122.032113,131.708138,138.065765,I,Above,Gable,0,5701,,17.2203251,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 25086,NJBF000068196,122 E VERNON AVE,Northfield,NJ,39.35597802,-74.55435299,RES1,3001,,17,NE,1956,1956,3102,1,1,1132.987856,1132.987856,3507,NO,20.75,27.38,1,1.64,6112,111.909178,122.037981,131.714361,138.073712,I,Above,Gable,0,5701,,24.06720596,0,0,,,,1,1,,0.35,nav,1,1956,1,, 25087,NJBF000069546,206 E MILL RD,Northfield,NJ,39.36149297,-74.54828116,RES1,3001,,17,NE,2000,2000,3109,2,1,1961.561974,1961.561974,3507,NO,22.52,35.01,1,1.22,6110,111.975429,122.084113,131.755646,138.114721,I,Above,Gable,0,5701,,28.76262389,0,0,,,,1,1,,0.35,nav,1,2000,2,, 25088,NJBF000069267,220 E ROSEDALE AVE,Northfield,NJ,39.35945832,-74.55164032,RES1,3001,,17,NE,1954,1954,3109,1,1,2830.993441,2830.993441,3507,NO,12.99,24.12,1,-0.92,6112,111.925032,122.04745,131.720768,138.076807,I,Above,Gable,0,5701,,18.55236127,0,1.2,,,,1,1,,0.35,nav,1,1954,1,, 25089,NJBF000071858,201 ENGLISH LANE,Northfield,NJ,39.37183347,-74.53816737,RES1,3001,,17,NE,1965,1965,3102,2,1,2508.117182,2508.117182,3507,NO,35.17,47.1,1,-0.05,6112,112.085049,122.150442,131.813088,138.160574,I,Above,Hip,0,5701,,41.13346003,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 25090,NJBF000068899,135 E REVERE AVE,Northfield,NJ,39.35796745,-74.55420188,RES1,3001,,17,NE,1960,1960,3102,2,1,1621.735617,1621.735617,3507,NO,22.59,35.77,1,-0.29,6112,111.886439,122.018922,131.693676,138.046727,I,Above,Gable,0,5701,,29.17750456,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 25091,NJBF000072088,7 ST ANDREWS DR,Northfield,NJ,39.37254317,-74.5374293,RES1,3001,,17,NE,1984,1984,3102,2,1,2438.348072,2438.348072,3507,NO,26.46,35.61,1,-0.1,6110,112.094102,122.155841,131.817932,138.164371,I,Above,Gable,0,5701,,31.03134947,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 25092,NJBF000072109,,Northfield,NJ,39.37261016,-74.57435126,RES1,3001,,NaN,NE,1969,0,3101,1,1,2030.798682,2030.798682,3507,NO,16.97,25.88,1,-0.4,6112,111.254094,121.513996,131.17631,137.406942,I,Above,Gable,0,5701,,21.42171456,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25093,NJBF000072087,,Northfield,NJ,39.37254074,-74.57406624,RES1,3001,,NaN,NE,1969,0,3101,1,1,1998.161594,1998.161594,3507,NO,12.96,26,1,0.47,6112,111.261332,121.519611,131.181898,137.413894,I,Above,Gable,0,5701,,19.48174513,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25094,NJBF000072065,,Northfield,NJ,39.37248711,-74.57464992,RES1,3001,,NaN,NE,1969,0,3101,1,1,2862.074266,2862.074266,3507,NO,13.97,23.91,1,-0.12,6112,111.248569,121.510128,131.172798,137.402658,I,Above,Gable,0,5701,,18.94002961,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25095,NJBF000069344,,Northfield,NJ,39.3597686,-74.55199181,RES1,3001,,NaN,NE,1956,0,3109,2,1,1855.593874,1855.593874,3507,NO,37.64,43.17,1,1.18,6112,111.913143,122.037931,131.710973,138.064829,I,Above,Gable,0,5701,,40.40325994,0,0,,,,1,1,,0.35,nav,1,1956,2,, 25096,NJBF000072598,,Northfield,NJ,39.3742204,-74.57092774,RES1,3001,,NaN,NE,1969,0,3101,1,1,1952.665948,1952.665948,3507,NO,13.65,27.83,1,-0.89,6112,111.315512,121.556242,131.214313,137.452772,I,Above,Gable,0,5701,,20.7393134,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25097,NJBF000069176,228 E ROSEDALE AVE,Northfield,NJ,39.35907174,-74.55105526,RES1,3001,,18,NE,1985,1985,3109,2,1,2792.692522,2792.692522,3507,NO,39.99,46.24,1,2.51,6106,111.943141,122.061858,131.735513,138.094717,I,Above,Gable,0,5701,,43.11404219,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 25098,NJBF000069394,222 E SURREY AVE,Northfield,NJ,39.36008543,-74.54930888,RES1,3001,,17,NE,1954,1954,3109,2,1,2853.445048,2853.445048,3507,NO,31.01,44.67,1,-0.05,6112,111.969728,122.08138,131.754163,138.115157,I,Above,Gable,0,5701,,37.84057559,0,1.2,,,,1,1,,0.35,nav,1,1954,2,, 25099,NJBF000069553,202 E MILL RD,Northfield,NJ,39.36155733,-74.54857249,RES1,3001,,17,NE,1948,1948,3109,1,1,526.9517521,526.9517521,3507,NO,12.47,20.2,1,0.26,6112,111.968061,122.078334,131.749784,138.10777,I,Above,Gable,0,5701,,16.33358192,0,0,,,,1,1,,0.35,nav,1,1948,1,, 25100,NJBF000071789,,Northfield,NJ,39.37163314,-74.57429089,RES1,3001,,NaN,NE,1969,0,3101,1,1,2766.976181,2766.976181,3507,NO,13.38,25.1,1,1.22,6112,111.265923,121.525144,131.18904,137.423225,I,Above,Hip,0,5701,,19.24072845,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25101,NJBF000071866,,Northfield,NJ,39.37185551,-74.57474574,RES1,3001,,NaN,NE,1969,0,3101,1,1,2953.572436,2953.572436,3507,NO,16.07,26.64,1,-0.8,6112,111.253126,121.515007,131.178772,137.410389,I,Above,Gable,0,5701,,21.35246389,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25102,NJBF000068319,149 E VERNON AVE,Northfield,NJ,39.35634181,-74.5542305,RES1,3001,,17,NE,1962,1962,3102,2,1,1859.300377,1859.300377,3507,NO,34.13,45.24,1,0.43,6112,111.907093,122.036133,131.712218,138.070729,I,Above,Gable,0,5701,,39.68714575,0,0,,,,1,1,,0.35,nav,1,1962,2,, 25103,NJBF000068163,126 E VERNON AVE,Northfield,NJ,39.35585761,-74.55410073,RES1,3001,,17,NE,1964,1964,3102,1,1,2035.132257,2035.132257,3507,NO,14.56,21.59,1,0.77,6112,111.91643,122.043692,131.720139,138.080719,I,Above,Flat,0,5701,,18.07787884,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 25104,NJBF000069548,211 E MILL RD,Northfield,NJ,39.36151009,-74.54734148,RES1,3001,,17,NE,1974,1974,3109,2,1,1334.61245,1334.61245,3507,NO,25.6,34.46,1,2.2,6106,111.99647,122.100368,131.771967,138.133741,I,Above,Gable,0,5701,,30.02802391,0,0,,,,1,1,,0.03,nav,1,1974,2,, 25105,NJBF000071847,3 ST ANDREWS DR,Northfield,NJ,39.37180458,-74.53695503,RES1,3001,,18,NE,1986,1986,3102,2,1,2012.912967,2012.912967,3507,NO,29.69,36.57,1,-0.87,6106,112.112762,122.171987,131.835178,138.18555,I,Above,Gable,0,5701,,33.13050096,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 25106,NJBF000072528,,Northfield,NJ,39.37400322,-74.57109285,RES1,3001,,NaN,NE,1969,0,3101,1,1,1976.603095,1976.603095,3507,NO,15.81,25.89,1,0.4,6112,111.313965,121.555644,131.214149,137.452721,I,Above,Gable,0,5701,,20.85010306,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25107,NJBF000072579,,Northfield,NJ,39.37416668,-74.57140753,RES1,3001,,NaN,NE,1969,0,3101,1,1,2451.941367,2451.941367,3507,NO,12.99,19.86,1,-0.3,6112,111.305101,121.548529,131.206879,137.443687,I,Above,Gable,0,5701,,16.42172428,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25108,NJBF000072915,2 MAZZA DR,Northfield,NJ,39.3756182,-74.57070821,RES1,3001,,17,NE,1987,1987,3102,2,1,2216.376684,2216.376684,3507,NO,34.17,45.12,1,0.11,6112,111.306507,121.545613,131.201165,137.435685,I,Above,Gable,0,5701,,39.64511592,0,1.2,,,,1,1,,0.35,nav,1,1987,2,, 25109,NJBF000072102,6 ST ANDREWS DR,Northfield,NJ,39.37258732,-74.53690172,RES1,3001,,17,NE,1990,1990,3102,2,1,1934.841233,1934.841233,3507,NO,35.94,42.52,1,0.18,6110,112.105545,122.164612,131.826882,138.17434,I,Above,Gable,0,5701,,39.23089367,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 25110,NJBF000072349,21 WILSON DR,Northfield,NJ,39.37335413,-74.5368121,RES1,3001,,17,NE,1969,1969,3102,2,1,1724.287805,1724.287805,3507,NO,36.74,43.03,1,1.66,6110,112.099406,122.158057,131.819423,138.164102,I,Above,Gable,0,5701,,39.8851849,0,1.1,,,,1,1,,0.35,nav,1,1969,2,, 25111,NJBF000072233,500 BLUE BELL DR,Northfield,NJ,39.37298514,-74.53745361,RES1,3001,,17,NE,1973,1973,3102,2,1,2035.365966,2035.365966,3507,NO,30.51,38.57,1,0.68,6112,112.088816,122.150715,131.812251,138.156921,I,Above,Gable,0,5701,,34.53966393,0,1.1,,,,1,1,,0.35,nav,1,1973,2,, 25112,NJBF000072177,27 WILSON DR,Northfield,NJ,39.37279651,-74.53587355,RES1,3001,,17,NE,1976,1976,3102,2,1,1766.464323,1766.464323,3507,NO,30.24,45.07,1,0.1,6106,112.126534,122.180412,131.842896,138.191817,I,Above,Gable,0,5701,,37.65505182,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 25113,NJBF000072450,101 CATHERINE PL,Northfield,NJ,39.37370068,-74.53606452,RES1,3001,,17,NE,1968,1968,3102,2,1,2646.942583,2646.942583,3507,NO,30.54,42.12,1,0.08,6112,112.112612,122.167477,131.828761,138.173735,I,Above,Gable,0,5701,,36.33240254,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 25114,NJBF000069331,,Northfield,NJ,39.35971298,-74.55028657,RES1,3001,,NaN,NE,1964,0,3109,2,1,2658.595263,2658.595263,3507,NO,29.66,38.4,1,0.19,6110,111.952335,122.06832,131.74141,138.10074,I,Above,Hip,0,5701,,34.03266728,0,0,,,,1,1,,0.35,nav,1,1964,2,, 25115,NJBF000072404,103 CATHERINE PL,Northfield,NJ,39.37353894,-74.5357874,RES1,3001,,17,NE,1967,1967,3102,2,1,2819.867419,2819.867419,3507,NO,36.65,49.92,1,0.44,6110,112.120606,122.174068,131.835687,138.181899,I,Above,Hip,0,5701,,43.28659267,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 25116,NJBF000071768,2 ST ANDREW DR,Northfield,NJ,39.37155488,-74.53719159,RES1,3001,,18,NE,2008,2008,3102,2,1,2589.623939,2589.623939,3507,NO,30.59,37.17,1,-0.72,6112,112.110111,122.170488,131.833875,138.184678,I,Above,Hip,0,5701,,33.88152755,0,0,,,,1,1,,0.35,nav,1,2008,2,, 25117,NJBF000069537,217 E STEELMAN AVE,Northfield,NJ,39.36137798,-74.54876886,RES1,3001,,17,NE,1960,1960,3109,2,1,1580.312294,1580.312294,3507,NO,35.02,48.9,1,-0.63,6112,111.965817,122.076825,131.748433,138.106469,I,Above,Hip,0,5701,,41.95980782,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 25118,NJBF000071422,2 HAVIV DR,Northfield,NJ,39.37057108,-74.57514247,RES1,3001,,17,NE,2001,2001,3101,1,1,2816.496133,2816.496133,3507,NO,10.27,17.92,1,-0.48,6112,111.258144,121.521527,131.187575,137.421963,I,Above,Hip,0,5701,,14.09491937,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25119,NJBF000071389,2 HAVIV DR,Northfield,NJ,39.37045095,-74.57486241,RES1,3001,,17,NE,2001,2001,3101,1,1,3418.182523,3418.182523,3507,NO,14.83,24.6,1,-0.98,6112,111.265868,121.527593,131.193679,137.429596,I,Above,Hip,0,5701,,19.71430636,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25120,NJBF000071472,2 HAVIV DR,Northfield,NJ,39.37070466,-74.57550233,RES1,3001,,17,NE,2001,2001,3101,1,1,3239.588019,3239.588019,3507,NO,15.47,29.25,1,-0.48,6112,111.248442,121.513941,131.179973,137.412459,I,Above,Hip,0,5701,,22.36385256,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25121,NJBF000071647,2 HAVIV DR,Northfield,NJ,39.37116501,-74.57470438,RES1,3001,,17,NE,2001,2001,3101,1,1,4091.122276,4091.122276,3507,NO,11.77,21.75,1,-0.28,6112,111.261591,121.522894,131.18776,137.421888,I,Above,Gable,0,5701,,16.75600235,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25122,NJBF000071204,2 HAVIV DR,Northfield,NJ,39.36975008,-74.57306562,RES1,3001,,17,NE,2001,2001,3101,1,1,3013.848363,3013.848363,3507,NO,12.17,23.63,1,-0.13,6112,111.314688,121.565828,131.232079,137.477492,I,Above,Gable,0,5701,,17.89938814,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25123,NJBF000071075,2713 ZION RD,Northfield,NJ,39.3693285,-74.5756045,RES1,3001,,17,NE,1954,1954,3101,1,1,2206.232779,2206.232779,3507,NO,18.27,29.96,1,-0.06,6112,111.261598,121.526504,131.19474,137.431472,I,Above,Hip,0,5701,,24.11156286,0,1.1,,,,1,1,,0.15,nav,1,1954,1,, 25124,NJBF000072372,,Northfield,NJ,39.37342733,-74.57189786,RES1,3001,,NaN,NE,1969,0,3101,1,1,2029.489618,2029.489618,3507,NO,18.53,28.73,1,-0.11,6112,111.301534,121.547744,131.207553,137.445003,I,Above,Gable,0,5701,,23.62897505,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25125,NJBF000072213,25 WILSON DR,Northfield,NJ,39.37293253,-74.53615885,RES1,3001,,17,NE,1965,1965,3102,1,1,2188.77881,2188.77881,3507,NO,19.28,34.24,1,2.44,6106,112.118641,122.17397,131.836156,138.18392,I,Above,Gable,0,5701,,26.75961304,0,1.2,,,,1,1,,0.03,nav,1,1965,1,, 25126,NJBF000071951,9 ST ANDREWS DR,Northfield,NJ,39.37208509,-74.53795876,RES1,3001,,17,NE,1984,1984,3102,2,1,3074.65117,3074.65117,3507,NO,27.68,37.5,1,1.5,6112,112.087035,122.151412,131.813838,138.160833,I,Above,Gable,0,5701,,32.59012595,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 25127,NJBF000069380,,Northfield,NJ,39.35997608,-74.54993245,RES1,3001,,NaN,NE,2000,0,3109,2,1,2323.048152,2323.048152,3507,NO,39.42,45.36,1,2.65,6112,111.957032,122.071672,131.744532,138.104023,I,Above,Hip,0,5701,,42.39004929,0,0,,,,1,1,,0.35,nav,1,2000,2,, 25128,NJBF000069407,,Northfield,NJ,39.36016526,-74.5525447,RES1,3001,,NaN,NE,1969,0,3102,2,1,2188.083744,2188.083744,3507,NO,26.79,39.25,1,0.5,6112,111.895651,122.023986,131.696678,138.047417,I,Above,Gable,0,5701,,33.0175873,0,0,,,,1,1,,0.35,nav,1,1969,2,, 25129,NJBF000072946,4 MAZZA DR,Northfield,NJ,39.37584863,-74.57052639,RES1,3001,,17,NE,1987,1987,3102,1,1,1926.423144,1926.423144,3507,NO,21.85,31.35,1,2.47,6112,111.308383,121.546366,131.201443,137.435861,I,Above,Gable,0,5701,,26.60016512,0,1.1,,,,1,1,,0.35,nav,1,1987,1,, 25130,NJBF000071787,10 ST ANDREWS DR,Northfield,NJ,39.37162567,-74.53777015,RES1,3001,,17,NE,1984,1984,3102,3,1,2031.549101,2031.549101,3507,NO,34.64,46.75,1,-0.54,6110,112.096268,122.1596,131.822659,138.171862,I,Above,Gable,0,5701,,40.6921057,0,0,,,,1,1,,0.35,nav,1,1984,3,, 25131,NJBF000068507,133 E OAKCREST AVE,Northfield,NJ,39.3569605,-74.5537055,RES1,3001,,17,NE,2000,2000,3102,2,1,1529.330226,1529.330226,3507,NO,29.54,41.54,1,-0.85,6106,111.91075,122.03855,131.714098,138.072203,I,Above,Gable,0,5701,,35.53757962,0,0,,,,1,1,,0.03,nav,1,2000,2,, 25132,NJBF000069127,230 E ROSEDALE AVE,Northfield,NJ,39.35887067,-74.55068445,RES1,3001,,17,NE,1957,1957,3109,1,1,2038.927584,2038.927584,3507,NO,16.59,28.67,1,2.67,6106,111.954072,122.070523,131.744353,138.105407,I,Above,Gable,0,5701,,22.63029583,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, 25133,NJBF000068367,130 E OAKCREST AVE,Northfield,NJ,39.35652358,-74.55369478,RES1,3001,,17,NE,1992,1992,3102,2,1,2666.075156,2666.075156,3507,NO,26.16,38.33,1,0.65,6106,111.916732,122.043501,131.719396,138.079026,I,Above,Gable,0,5701,,32.24785685,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 25134,NJBF000071161,,Northfield,NJ,39.3696268,-74.57462061,RES1,3001,,NaN,NE,1969,0,3101,1,1,2633.196114,2633.196114,3507,NO,15.54,21.11,1,1.76,6112,111.28062,121.540322,131.20756,137.447232,I,Above,Gable,0,5701,,18.32531905,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25135,NJBF000070971,,Northfield,NJ,39.3690085,-74.57403454,RES1,3001,,NaN,NE,1969,0,3101,1,1,2723.113564,2723.113564,3507,NO,18.15,30.27,1,2.82,6112,111.301037,121.556879,131.224743,137.468847,I,Above,Flat,0,5701,,24.20967469,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25136,NJBF000068356,135 E VERNON AVE,Northfield,NJ,39.35647527,-74.55462698,RES1,3001,,17,NE,1956,1956,3102,1,1,1858.830321,1858.830321,3507,NO,11.58,21.46,1,-0.29,6112,111.896438,122.027769,131.703789,138.060556,I,Above,Gable,0,5701,,16.52304345,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 25137,NJBF000072140,24 WILSON DR,Northfield,NJ,39.372698,-74.5364735,RES1,3001,,17,NE,1976,1976,3102,2,1,1901.578662,1901.578662,3507,NO,33.96,44.34,1,2.45,6106,112.114055,122.170957,131.833284,138.181269,I,Above,Gable,0,5701,,39.15162539,0,0,,,,1,1,,0.03,nav,1,1976,2,, 25138,NJBF000069357,,Northfield,NJ,39.35984601,-74.55128216,RES1,3001,,NaN,NE,1900,0,3109,2,1,1088.535398,1088.535398,3507,NO,24.36,33.61,1,0.6,6112,111.928195,122.049495,131.722458,138.078257,I,Above,Gable,0,5701,,28.98277808,0,0,,,,1,1,,0.35,nav,1,1900,2,, 25139,NJBF000072974,6 MAZZA DR,Northfield,NJ,39.3760972,-74.57031778,RES1,3001,,17,NE,1988,1988,3102,2,1,1545.397572,1545.397572,3507,NO,32.6,41.27,1,2.32,6112,111.310696,121.547392,131.201954,137.436308,I,Above,Gable,0,5701,,36.9323563,0,1.1,,,,1,1,,0.35,nav,1,1988,2,, 25140,NJBF000072292,107 CATHERINE PL,Northfield,NJ,39.37318179,-74.53521243,RES1,3001,,17,NE,1964,1964,3102,1,1,2560.068582,2560.068582,3507,NO,13.85,21.52,1,0.39,6106,112.137385,122.18794,131.850274,138.199126,I,Above,Gable,0,5701,,17.68498096,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 25141,NJBF000072200,22 WILSON DR,Northfield,NJ,39.37288483,-74.53677743,RES1,3001,,17,NE,1964,1964,3102,2,1,2028.527781,2028.527781,3507,NO,37.99,48.28,1,2.56,6110,112.105186,122.163643,131.825604,138.172184,I,Above,Hip,0,5701,,43.13830425,0,1.1,,,,1,1,,0.35,nav,1,1964,2,, 25142,NJBF000072111,108 CATHERINE PL,Northfield,NJ,39.37261895,-74.5350473,RES1,3001,,17,NE,2012,2012,3102,2,1,2758.030034,2758.030034,3507,NO,33.79,41.15,1,0.3,6106,112.147125,122.19681,131.859904,138.211318,I,Above,Gable,0,5701,,37.47213225,0,0,,,,1,1,,0.03,nav,1,2012,2,, 25143,NJBF000072352,105 CATHERINE PL,Northfield,NJ,39.37335989,-74.53550718,RES1,3001,,17,NE,1968,1968,3102,2,1,1998.250469,1998.250469,3507,NO,32.59,41.21,1,2.17,6106,112.12883,122.180877,131.84285,138.190369,I,Above,Gable,0,5701,,36.89798672,0,1.2,,,,1,1,,0.03,nav,1,1968,2,, 25144,NJBF000072161,502 BLUE BELL DR,Northfield,NJ,39.37275843,-74.53766937,RES1,3001,,17,NE,1983,1983,3102,1,1,2967.275946,2967.275946,3507,NO,14.94,29.5,1,2.75,6110,112.086376,122.149354,131.811077,138.156137,I,Above,Hip,0,5701,,22.22125622,0,1.2,,,,1,1,,0.35,nav,1,1983,1,, 25145,NJBF000072030,8 ST ANDREWS DR,Northfield,NJ,39.37234767,-74.53761777,RES1,3001,,17,NE,1986,1986,3102,2,1,2548.007163,2548.007163,3507,NO,25.65,36.06,1,2.26,6110,112.091919,122.154597,131.816846,138.163608,I,Above,Gable,0,5701,,30.85661265,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 25146,NJBF000068883,,Northfield,NJ,39.35791032,-74.55396485,RES1,3001,,NaN,NE,1969,0,3102,2,1,1687.177342,1687.177342,3507,NO,36.66,44.24,1,2.52,6112,111.892515,122.023679,131.698461,138.052474,I,Above,Hip,0,5701,,40.44895935,0,0,,,,1,1,,0.35,nav,1,1969,2,, 25147,NJBF000072907,1507 MILL RD,Northfield,NJ,39.37558809,-74.57122421,RES1,3001,,17,NE,1987,1987,3102,2,1,1747.649681,1747.649681,3507,NO,34.71,48.12,1,0.56,6112,111.295037,121.537049,131.192845,137.425508,I,Above,Gable,0,5701,,41.41387488,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 25148,NJBF000069371,,Northfield,NJ,39.35991327,-74.55224516,RES1,3001,,NaN,NE,1977,0,3109,2,1,1995.849262,1995.849262,3507,NO,23.55,37.82,1,1.11,6112,111.905609,122.031953,131.70487,138.05743,I,Above,Gable,0,5701,,30.68619794,0,0,,,,1,1,,0.35,nav,1,1977,2,, 25149,NJBF000072403,19 WILSON DR,Northfield,NJ,39.3735371,-74.53708678,RES1,3001,,17,NE,1962,1962,3102,2,1,2152.575292,2152.575292,3507,NO,35.44,42.19,1,2.86,6112,112.091253,122.151298,131.812311,138.155665,I,Above,Gable,0,5701,,38.81727928,0,1.1,,,,1,1,,0.35,nav,1,1962,2,, 25150,NJBF000069275,,Northfield,NJ,39.35948412,-74.54999171,RES1,3001,,NaN,NE,1966,0,3109,2,1,2040.03167,2040.03167,3507,NO,22.5,27.5,1,0.7,6106,111.961889,122.07596,131.74926,138.110295,I,Above,Gable,0,5701,,24.99777448,0,0,,,,1,1,,0.03,nav,1,1966,2,, 25151,NJBF000069528,213 E MILL RD,Northfield,NJ,39.36129326,-74.54714738,RES1,3001,,17,NE,1957,1957,3109,2,1,3115.626795,3115.626795,3507,NO,22.54,28.31,1,0.09,6106,112.003531,122.106107,131.777931,138.141046,I,Above,Gable,0,5701,,25.42336814,0,1.2,,,,1,1,,0.03,nav,1,1957,2,, 25152,NJBF000069819,1300 ARGO LANE,Northfield,NJ,39.36425251,-74.54472357,COM8,3001,,20,ME,1984,1984,3401,2,1,1372.876474,1372.876474,3507,NO,32.35,40.13,1,0.3,6112,112.022489,122.116585,131.785838,138.14512,I,Above,Gable,0,NaN,,36.23825041,0,0,,,,1,1,,0.35,nav,1,1984,2,, 25153,NJBF000069776,1300 ARGO LANE,Northfield,NJ,39.36386218,-74.54483255,COM8,3001,,20,ME,1984,1984,3401,1,1,5359.33621,5359.33621,3507,NO,13.24,24.61,1,2.73,6112,112.024681,122.118884,131.788516,138.148925,I,Above,Gable,0,NaN,,18.92755579,0,0,,,,1,1,,0.35,nav,1,1984,1,, 25154,NJBF000068567,,Northfield,NJ,39.35713922,-74.55322488,RES1,3001,,NaN,NE,1969,0,3102,2,1,1453.693014,1453.693014,3507,NO,38.53,50.01,1,1.57,6110,111.919222,122.044995,131.720363,138.079403,I,Above,Gable,0,5701,,44.2682407,0,0,,,,1,1,,0.35,nav,1,1969,2,, 25155,NJBF000069372,2006 BAY DR,Northfield,NJ,39.35992088,-74.54853368,RES1,3001,,17,NE,1983,1983,3109,2,1,1606.648016,1606.648016,3507,NO,25.49,36.9,1,3,6110,111.989286,122.096707,131.769677,138.133578,I,Above,Gable,0,5701,,31.19267534,0,1.1,,,,1,1,,0.35,nav,1,1983,2,, 25156,NJBF000068549,131 E OAKCREST AVE,Northfield,NJ,39.35707252,-74.55391514,RES1,3001,,17,NE,1991,1991,3102,2,1,1746.610397,1746.610397,3507,NO,32.99,47.98,1,-0.2,6106,111.904567,122.033669,131.709143,138.066186,I,Above,Gable,0,5701,,40.48789904,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 25157,NJBF000068460,124 E OAKCREST AVE,Northfield,NJ,39.356824,-74.5544105,RES1,3001,,17,NE,1964,1964,3102,2,1,1220.814721,1220.814721,3507,NO,26.25,35.31,1,-0.72,6110,111.896687,122.027729,131.703449,138.059732,I,Above,Gable,0,5701,,30.7776115,0,0,,,,1,1,,0.35,nav,1,1964,2,, 25158,NJBF000068478,135 E OAKCREST AVE,Northfield,NJ,39.35689623,-74.55345631,RES1,3001,,17,NE,1991,1991,3102,2,1,2562.412021,2562.412021,3507,NO,22.38,30.94,1,0.55,6106,111.917211,122.043612,131.719193,138.078323,I,Above,Hip,0,5701,,26.66032786,0,1.2,,,,1,1,,0.03,nav,1,1991,2,, 25159,NJBF000068583,129 E OAKCREST AVE,Northfield,NJ,39.35717534,-74.55414539,RES1,3001,,17,NE,1989,1989,3102,2,1,1973.532317,1973.532317,3507,NO,27.33,32.95,1,1.63,6106,111.898057,122.028543,131.703953,138.059903,I,Above,Gable,0,5701,,30.14187966,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 25160,NJBF000068480,122 E OAKCREST AVE,Northfield,NJ,39.35689836,-74.5545986,RES1,3001,,17,NE,1968,1968,3102,2,1,1896.550723,1896.550723,3507,NO,31.73,45.89,1,2.24,6110,111.891487,122.023641,131.69932,138.054738,I,Above,Gable,0,5701,,38.80658445,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 25161,NJBF000068743,138 E REVERE AVE,Northfield,NJ,39.35752713,-74.55413011,RES1,3001,,17,NE,1970,1970,3102,1,1,1583.124885,1583.124885,3507,NO,20.52,29.61,1,1.5,6112,111.89379,122.024969,131.700087,138.05488,I,Above,Gable,0,5701,,25.06557441,0,0,,,,1,1,,0.35,nav,1,1970,1,, 25162,NJBF000068294,151 E VERNON AVE,Northfield,NJ,39.35625192,-74.55406174,RES1,3001,,17,NE,1960,1960,3102,1,1,1418.541829,1418.541829,3507,NO,14.62,22.82,1,2.24,6112,111.91208,122.040066,131.716206,138.075573,I,Above,Gable,0,5701,,18.71715382,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25163,NJBF000072557,,Northfield,NJ,39.37407447,-74.53576725,RES3D,3001,,NaN,E,1989,0,3303,4,1,15136.35433,15136.35433,3507,NO,55.83,62.69,1,2.31,6112,112.115412,122.168752,131.829715,138.173878,I,Above,Flat,0,NaN,,59.26278499,0,0,,,,1,1,,0.35,nav,1,1989,4,, 25164,NJBF000068869,,Northfield,NJ,39.35785048,-74.55382932,RES1,3001,,NaN,NE,1924,0,3102,2,1,741.69935,741.69935,3507,NO,36.01,46.98,1,2.81,6112,111.896357,122.026705,131.701528,138.056186,I,Above,Hip,0,5701,,41.49681626,0,0,,,,1,1,,0.35,nav,1,1924,2,, 25165,NJBF000069366,2111 BAY DR,Northfield,NJ,39.3598905,-74.5494325,RES1,3001,,17,NE,1965,1965,3109,2,1,1665.082645,1665.082645,3507,NO,38.38,45.47,1,2.39,6112,111.969403,122.081344,131.754298,138.115608,I,Above,Hip,0,5701,,41.92612782,0,1.2,,,,1,1,,0.35,nav,1,1965,2,, 25166,NJBF000072012,,Northfield,NJ,39.37228859,-74.57390255,RES1,3001,,NaN,NE,1969,0,3101,1,1,3347.923275,3347.923275,3507,NO,14.9,23.51,1,3,6112,111.267733,121.525022,131.187648,137.421143,I,Above,Hip,0,5701,,19.20308588,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25167,NJBF000071995,,Northfield,NJ,39.37221692,-74.57477973,RES1,3001,,NaN,NE,1969,0,3101,1,1,2914.985324,2914.985324,3507,NO,15.53,28.06,1,2.18,6112,111.248476,121.510685,131.173872,137.40413,I,Above,Gable,0,5701,,21.79228715,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25168,NJBF000068638,127 E OAKCREST AVE,Northfield,NJ,39.35728991,-74.55447998,RES1,3001,,17,NE,1975,1975,3102,1,1,2631.295384,2631.295384,3507,NO,15.55,26.53,1,0.36,6110,111.889015,122.021444,131.69679,138.051258,I,Above,Hip,0,5701,,21.03892567,0,0,,,,1,1,,0.35,nav,1,1975,1,, 25169,NJBF000072296,18 WILSON DR,Northfield,NJ,39.37320303,-74.5372985,RES1,3001,,17,NE,1964,1964,3102,1,1,2659.632614,2659.632614,3507,NO,17.59,32.23,1,-0.97,6110,112.090001,122.151121,131.812455,138.15663,I,Above,Hip,0,5701,,24.91087183,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 25170,NJBF000071997,5 ST ANDREWS DR,Northfield,NJ,39.37222873,-74.53636692,RES1,3001,,18,NE,1993,1993,3102,3,1,2623.585775,2623.585775,3507,NO,34.89,42.23,1,0.18,6106,112.121483,122.177794,131.840738,138.190783,I,Above,Gable,0,5701,,38.56138583,0,0,,,,1,1,,0.03,nav,1,1993,3,, 25171,NJBF000072337,100 CATHERINE PL,Northfield,NJ,39.37333102,-74.53618485,RES1,3001,,17,NE,1968,1968,3102,2,1,1852.668928,1852.668928,3507,NO,37,50.12,1,1.97,6110,112.113819,122.169294,131.830979,138.177134,I,Above,Hip,0,5701,,43.56032995,0,1.1,,,,1,1,,0.35,nav,1,1968,2,, 25172,NJBF000068238,155 E VERNON AVE,Northfield,NJ,39.35610148,-74.55360431,RES1,3001,,17,NE,1948,1948,3102,2,1,1837.608097,1837.608097,3507,NO,25.44,31.77,1,1.89,6106,111.924366,122.049711,131.725928,138.087294,I,Above,Gable,0,5701,,28.60939568,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 25173,NJBF000072073,26 WILSON DR,Northfield,NJ,39.37250552,-74.53621652,RES1,3001,,17,NE,1987,1987,3102,2,1,3715.520356,3715.520356,3507,NO,30.37,42.8,1,-0.32,6106,112.121898,122.177484,131.840162,138.189462,I,Above,Gable,0,5701,,36.58445344,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 25174,NJBF000072244,109 CATHERINE PL,Northfield,NJ,39.37301788,-74.53491713,RES1,3001,,17,NE,1970,1970,3102,2,1,2033.152821,2033.152821,3507,NO,34.67,45.21,1,1.25,6106,112.145796,122.194856,131.857533,138.207662,I,Above,Gable,0,5701,,39.93928298,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 25175,NJBF000068513,120 E OAKCREST AVE,Northfield,NJ,39.35697317,-74.55486636,RES1,3001,,17,NE,1956,1956,3102,1,1,3509.414528,3509.414528,3507,NO,12.95,24.25,1,0.91,6112,111.884497,122.018164,131.69381,138.048099,I,Above,Gable,0,5701,,18.60355816,0,1.2,,,,1,1,,0.35,nav,1,1956,1,, 25176,NJBF000072447,SHORE ROAD,Northfield,NJ,39.37369266,-74.53395785,COM4,3001,,NaN,ME,1969,0,3401,1,1,1135.845066,1135.845066,3507,NO,13.27,21.1,1,2.25,6106,112.160281,122.204526,131.866872,138.216367,I,Above,Gable,0,NaN,,17.18757216,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25177,NJBF000072274,23 WILSON DR,Northfield,NJ,39.37311517,-74.53641439,RES1,3001,,17,NE,1968,1968,3102,1,1,1634.871654,1634.871654,3507,NO,15.51,23.17,1,1.47,6110,112.11094,122.167568,131.829413,138.175905,I,Above,Hip,0,5701,,19.34011005,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 25178,NJBF000069346,219 E YORKSHIRE AVE,Northfield,NJ,39.35978466,-74.54966405,RES1,3001,,17,NE,1959,1959,3109,1,1,2588.715415,2588.715415,3507,NO,18.63,24.17,1,-0.25,6112,111.965489,122.078427,131.751467,138.112444,I,Above,Gable,0,5701,,21.39956753,0,1.1,,,,1,1,,0.35,nav,1,1959,1,, 25179,NJBF000069566,,Northfield,NJ,39.36166123,-74.54865129,RES1,3001,,NaN,NE,1948,0,3109,2,1,2126.674043,2126.674043,3507,NO,23.48,32.35,1,0.42,6112,111.964993,122.07583,131.747174,138.104555,I,Above,Gable,0,5701,,27.9154137,0,0,,,,1,1,,0.35,nav,1,1948,2,, 25180,NJBF000071940,,Northfield,NJ,39.37205437,-74.57453394,RES1,3001,,NaN,NE,1969,0,3101,1,1,2641.810096,2641.810096,3507,NO,19.18,26.53,1,0.57,6112,111.255838,121.516602,131.179932,137.411723,I,Above,Gable,0,5701,,22.85632962,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25181,NJBF000069408,2004 BAY DR,Northfield,NJ,39.36018185,-74.54833934,RES1,3001,,17,NE,1978,1978,3109,2,1,1805.749229,1805.749229,3507,NO,35.2,49.22,1,1.73,6110,111.990415,122.097288,131.770035,138.133594,I,Above,Gable,0,5701,,42.20677012,0,0,,,,1,1,,0.35,nav,1,1978,2,, 25182,NJBF000072515,,Northfield,NJ,39.37395298,-74.57162536,RES1,3001,,NaN,NE,1969,0,3101,1,1,2547.171268,2547.171268,3507,NO,13.17,27.14,1,0.28,6112,111.302338,121.547005,131.205809,137.442516,I,Above,Gable,0,5701,,20.15769393,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25183,NJBF000072255,20 WILSON DR,Northfield,NJ,39.37304293,-74.53703123,RES1,3001,,17,NE,1965,1965,3102,1,1,2053.691058,2053.691058,3507,NO,16.83,25.47,1,-0.36,6110,112.097761,122.157514,131.819166,138.164565,I,Above,Hip,0,5701,,21.15159838,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 25184,NJBF000069125,,Northfield,NJ,39.35886797,-74.54982805,RES1,3001,,NaN,NE,1969,0,3102,2,1,2941.671673,2941.671673,3507,NO,33.36,48.04,1,-0.09,6106,111.973413,122.085516,131.759359,138.123052,I,Above,Gable,0,5701,,40.69892781,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25185,NJBF000069478,,Northfield,NJ,39.36072367,-74.54752073,RES1,3001,,NaN,NE,1969,0,3109,2,1,1486.252556,1486.252556,3507,NO,23.36,35.52,1,-0.94,6106,112.002128,122.105722,131.778039,138.142091,I,Above,Gable,0,5701,,29.44201774,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25186,NJBF000068222,2800 GAIL AVE,Northfield,NJ,39.35604575,-74.55463735,RES1,3001,,17,NE,1960,1960,3102,1,1,2173.329257,2173.329257,3507,NO,16.5,23.29,1,-0.15,6112,111.901899,122.032282,131.708638,138.06683,I,Above,Gable,0,5701,,19.89758602,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25187,NJBF000069507,,Northfield,NJ,39.36104186,-74.54903306,RES1,3001,,NaN,NE,1953,0,3109,2,1,1781.993915,1781.993915,3507,NO,32.74,45.78,1,1.21,6112,111.964012,122.075843,131.747754,138.106195,I,Above,Gable,0,5701,,39.26246505,0,0,,,,1,1,,0.35,nav,1,1953,2,, 25188,NJBF000069293,225 E ROSEDALE AVE,Northfield,NJ,39.35954681,-74.55090779,RES1,3001,,17,NE,1951,1951,3109,1,1,2138.212992,2138.212992,3507,NO,19.5,26.27,1,0.88,6110,111.94042,122.059271,131.732503,138.090505,I,Above,Gable,0,5701,,22.88180187,0,0,,,,1,1,,0.35,nav,1,1951,1,, 25189,NJBF000069614,208 OXFORD CIRCLE,Northfield,NJ,39.36211927,-74.54888857,RES1,3001,,17,NE,1966,1966,3109,1,1,1289.243434,1289.243434,3507,NO,19.86,28.78,1,2.37,6112,111.953983,122.066725,131.737607,138.09265,I,Above,Gable,0,5701,,24.32113717,0,1,,,,1,1,,0.35,nav,1,1966,1,, 25190,NJBF000072132,504 BLUE BELL DR,Northfield,NJ,39.37266345,-74.53802226,RES1,3001,,17,NE,1979,1979,3102,2,1,2249.316108,2249.316108,3507,NO,27.04,38.87,1,0.12,6110,112.079408,122.144175,131.805865,138.150484,I,Above,Gable,0,5701,,32.95426544,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 25191,NJBF000071711,1 ST ANDREWS DR,Northfield,NJ,39.37135946,-74.53740173,RES1,3001,,18,NE,1985,1985,3102,2,1,3839.033123,3839.033123,3507,NO,23.39,30.89,1,0.92,6112,112.10749,122.168889,131.832421,138.183502,I,Above,Gable,0,5701,,27.13749366,0,1.2,,,,1,1,,0.35,nav,1,1985,2,, 25192,NJBF000069268,,Northfield,NJ,39.359467,-74.550356,RES1,3001,,NaN,NE,1969,0,3102,2,1,539.9949306,539.9949306,3507,NO,32.56,42.08,1,-0.83,6106,111.95389,122.069783,131.743092,138.103072,I,Above,Gable,0,5701,,37.32021306,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25193,NJBF000069251,227 E ROSEDALE AVE,Northfield,NJ,39.35936504,-74.55061702,RES1,3001,,17,NE,1948,1948,3109,1,1,1661.339346,1661.339346,3507,NO,14.89,29.75,1,2.53,6110,111.949295,122.06633,131.739726,138.099261,I,Above,Gable,0,5701,,22.31722392,0,1.2,,,,1,1,,0.35,nav,1,1948,1,, 25194,NJBF000069204,,Northfield,NJ,39.35915233,-74.55033097,RES1,3001,,NaN,NE,1954,0,3109,2,1,2025.984875,2025.984875,3507,NO,26.62,38.25,1,-0.4,6106,111.958453,122.073639,131.747227,138.108386,I,Above,Gable,0,5701,,32.43244392,0,0,,,,1,1,,0.03,nav,1,1954,2,, 25195,NJBF000071776,,Northfield,NJ,39.37159584,-74.57499884,RES1,3001,,NaN,NE,2001,0,3101,1,1,2896.241891,2896.241891,3507,NO,14.89,25.26,1,2.61,6112,111.250159,121.513349,131.177673,137.409161,I,Above,Hip,0,5701,,20.07498415,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25196,NJBF000071710,2 HAVIV DR,Northfield,NJ,39.37135309,-74.57516273,RES1,3001,,17,NE,2001,2001,3101,1,1,2942.523827,2942.523827,3507,NO,17.7,29.18,1,-0.76,6112,111.249058,121.513048,131.177854,137.409508,I,Above,Hip,0,5701,,23.44050325,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25197,NJBF000071351,2 HAVIV DR,Northfield,NJ,39.37031007,-74.57451314,RES1,3001,,17,NE,2001,2001,3101,1,1,1977.940755,1977.940755,3507,NO,14.39,28.53,1,2.07,6112,111.275402,121.535067,131.201189,137.438978,I,Above,Gable,0,5701,,21.45916775,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25198,NJBF000071480,2 HAVIV DR,Northfield,NJ,39.37072675,-74.57626837,RES1,3001,,17,NE,2001,2001,3101,1,1,4123.531471,4123.531471,3507,NO,15.94,30.77,1,2.41,6112,111.230715,121.500538,131.166967,137.39628,I,Above,Gable,0,5701,,23.35538855,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25199,NJBF000071619,2 HAVIV DR,Northfield,NJ,39.37108136,-74.57621231,RES1,3001,,17,NE,2001,2001,3101,1,1,2108.470776,2108.470776,3507,NO,13.15,25.57,1,0.96,6112,111.228086,121.49783,131.163656,137.391999,I,Above,Gable,0,5701,,19.36174672,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25200,NJBF000071632,2 HAVIV DR,Northfield,NJ,39.37113039,-74.57534385,RES1,3001,,17,NE,2001,2001,3101,1,1,3365.128101,3365.128101,3507,NO,19.01,32.11,1,2.95,6112,111.247365,121.512247,131.177512,137.409195,I,Above,Hip,0,5701,,25.55604749,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25201,NJBF000071726,,Northfield,NJ,39.37141099,-74.57452633,RES1,3001,,NaN,NE,2001,0,3101,1,1,2597.721944,2597.721944,3507,NO,19.94,28.1,1,1.36,6112,111.262968,121.523404,131.18778,137.421784,I,Above,Gable,0,5701,,24.02320696,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25202,NJBF000071248,2 HAVIV DR,Northfield,NJ,39.36991511,-74.57346623,RES1,3001,,17,NE,2001,2001,3101,1,1,2039.421136,2039.421136,3507,NO,18.93,30.09,1,2.04,6112,111.303709,121.557214,131.223411,137.46669,I,Above,Flat,0,5701,,24.50931235,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25203,NJBF000071187,2713 ZION RD,Northfield,NJ,39.36969545,-74.57607983,RES1,3001,,17,NE,1954,1954,3101,1,1,1516.647306,1516.647306,3507,NO,16.66,22.08,1,2.55,6112,111.246577,121.514499,131.182444,137.416011,I,Above,Flat,0,5701,,19.37326144,0,1.1,,,,1,1,,0.15,nav,1,1954,1,, 25204,NJBF000071184,2713 ZION RD,Northfield,NJ,39.3696876,-74.57601833,RES1,3001,,17,NE,1954,1954,3101,1,1,1427.040047,1427.040047,3507,NO,14.54,29.33,1,0.59,6112,111.24807,121.515638,131.183559,137.417401,I,Above,Flat,0,5701,,21.93307028,0,1.1,,,,1,1,,0.15,nav,1,1954,1,, 25205,NJBF000068405,131 E VERNON AVE,Northfield,NJ,39.3566425,-74.55499832,RES1,3001,,17,NE,1966,1966,3102,1,1,1606.77735,1606.77735,3507,NO,13.4,25.3,1,2.66,6112,111.885895,122.019473,131.6954,138.050383,I,Above,Gable,0,5701,,19.34964736,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 25206,NJBF000072262,,Northfield,NJ,39.3730676,-74.57274077,RES1,3001,,NaN,NE,1969,0,3101,1,1,2054.834316,2054.834316,3507,NO,13.27,20.03,1,2.34,6112,111.286034,121.536951,131.197732,137.433138,I,Above,Gable,0,5701,,16.6499287,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25207,NJBF000072125,,Northfield,NJ,39.37265609,-74.57315924,RES1,3001,,NaN,NE,1969,0,3101,1,1,3289.837711,3289.837711,3507,NO,17.91,22.99,1,1,6112,111.280824,121.534022,131.195683,137.430858,I,Above,Hip,0,5701,,20.45175297,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25208,NJBF000072198,,Northfield,NJ,39.3728735,-74.57294715,RES1,3001,,NaN,NE,1969,0,3101,1,1,3229.862286,3229.862286,3507,NO,15.29,25.5,1,-0.19,6112,111.283377,121.535424,131.196625,137.431891,I,Above,Hip,0,5701,,20.39155707,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25209,NJBF000072453,,Northfield,NJ,39.37371956,-74.57175121,RES1,3001,,NaN,NE,1969,0,3101,1,1,2568.494958,2568.494958,3507,NO,16.72,28.81,1,-0.83,6112,111.301858,121.547244,131.206497,137.443514,I,Above,Hip,0,5701,,22.76667789,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25210,NJBF000072305,,Northfield,NJ,39.37322359,-74.57201703,RES1,3001,,NaN,NE,1969,0,3101,1,1,2730.100997,2730.100997,3507,NO,12.52,21.88,1,1.77,6112,111.30093,121.547795,131.207997,137.445679,I,Above,Hip,0,5701,,17.20026921,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25211,NJBF000072341,,Northfield,NJ,39.37334246,-74.57251741,RES1,3001,,NaN,NE,1969,0,3101,1,1,3249.09509,3249.09509,3507,NO,17.54,27.82,1,1.6,6112,111.288289,121.537972,131.198191,137.433536,I,Above,Hip,0,5701,,22.68053895,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25212,NJBF000072482,,Northfield,NJ,39.373825,-74.5722465,RES1,3001,,NaN,NE,1969,0,3101,1,1,2449.896212,2449.896212,3507,NO,16.66,28.15,1,-0.74,6112,111.289457,121.537626,131.196908,137.431655,I,Above,Gable,0,5701,,22.40511958,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25213,NJBF000072428,,Northfield,NJ,39.37363487,-74.57235992,RES1,3001,,NaN,NE,1969,0,3101,1,1,2421.072504,2421.072504,3507,NO,16.86,26.13,1,-0.74,6112,111.288836,121.537645,131.197299,137.432255,I,Above,Gable,0,5701,,21.4936791,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25214,NJBF000069691,107 E MILL RD,Northfield,NJ,39.36297757,-74.54874439,RES1,3001,,17,NE,2003,2003,3109,1,1,1567.307989,1567.307989,3507,NO,20.82,31.56,1,2.26,6112,111.946791,122.06,131.730033,138.082438,I,Above,Gable,0,5701,,26.18785885,0,0,,,,1,1,,0.35,nav,1,2003,1,, 25215,NJBF000069502,227 E STEELMAN AVE,Northfield,NJ,39.36101896,-74.54825958,RES1,3001,,17,NE,1956,1956,3109,1,1,1691.992648,1691.992648,3507,NO,16.27,28.2,1,1.48,6106,111.981767,122.089606,131.761588,138.122412,I,Above,Hip,0,5701,,22.23583971,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 25216,NJBF000069363,,Northfield,NJ,39.35987814,-74.55054972,RES1,3001,,NaN,NE,1959,0,3109,2,1,1932.407333,1932.407333,3507,NO,38.3,47.6,1,0.28,6112,111.944315,122.061936,131.734872,138.092817,I,Above,Gable,0,5701,,42.95027991,0,0,,,,1,1,,0.35,nav,1,1959,2,, 25217,NJBF000072426,4209 DOLPHIN AVE,Northfield,NJ,39.37363258,-74.53504241,RES3D,3001,,35,E,1989,1989,3303,3,1,14763.00966,14763.00966,3507,NO,43.68,57.25,1,0.92,6112,112.136439,122.18614,131.848007,138.195455,I,Above,Flat,0,NaN,,50.46767271,0,0,,,,1,1,,0.35,nav,1,1989,3,, 25218,NJBF000071319,,Northfield,NJ,39.37018583,-74.57415357,RES1,3001,,NaN,NE,2001,0,3101,1,1,2688.214365,2688.214365,3507,NO,18.1,32.61,1,2.21,6112,111.284978,121.542539,131.208667,137.448305,I,Above,Gable,0,5701,,25.35638936,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25219,NJBF000071274,,Northfield,NJ,39.37001971,-74.57379371,RES1,3001,,NaN,NE,2001,0,3101,1,1,2450.035988,2450.035988,3507,NO,14.13,21.11,1,-0.69,6112,111.295049,121.550468,131.216669,137.458297,I,Above,Gable,0,5701,,17.61732631,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25220,NJBF000069418,213 E YORKSHIRE AVE,Northfield,NJ,39.36023826,-74.55027403,RES1,3001,,17,NE,1955,1955,3109,1,1,2160.960216,2160.960216,3507,NO,11.21,22.59,1,0.1,6112,111.946015,122.062857,131.735469,138.092996,I,Above,Flat,0,5701,,16.90219762,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25221,NJBF000068782,,Northfield,NJ,39.35761169,-74.55452862,RES1,3001,,NaN,NE,1969,0,3102,2,1,727.9384945,727.9384945,3507,NO,22.25,35.29,1,-0.51,6112,111.883702,122.017081,131.692164,138.045371,I,Above,Gable,0,5701,,28.7692519,0,0,,,,1,1,,0.35,nav,1,1969,2,, 25222,NJBF000068786,128 E REVERE AVE,Northfield,NJ,39.35761844,-74.55433143,RES1,3001,,17,NE,1989,1989,3102,2,1,949.9049182,949.9049182,3507,NO,30.25,43.83,1,1.11,6112,111.888079,122.02047,131.69553,138.04936,I,Above,Hip,0,5701,,37.0443109,0,0,,,,1,1,,0.35,nav,1,1989,2,, 25223,NJBF000068825,,Northfield,NJ,39.35771622,-74.55346033,RES1,3001,,NaN,NE,1960,0,3102,2,1,1561.5159,1561.5159,3507,NO,26.57,35.23,1,1.83,6112,111.906407,122.034605,131.709513,138.065819,I,Above,Gable,0,5701,,30.90007699,0,0,,,,1,1,,0.35,nav,1,1960,2,, 25224,NJBF000069378,,Northfield,NJ,39.35996712,-74.55145783,RES1,3001,,NaN,NE,1900,0,3109,2,1,4077.819608,4077.819608,3507,NO,26.93,39.22,1,-0.46,6112,111.922693,122.04511,131.717964,138.072793,I,Above,Hip,0,5701,,33.07634473,0,0,,,,1,1,,0.35,nav,1,1900,2,, 25225,NJBF000069390,210 E YORKSHIRE AVE,Northfield,NJ,39.36003772,-74.5507988,RES1,3001,,17,NE,1959,1959,3109,1,1,2542.731226,2542.731226,3507,NO,15.6,21.01,1,1.75,6112,111.936676,122.055852,131.72864,138.085258,I,Above,Hip,0,5701,,18.30221297,0,1.1,,,,1,1,,0.35,nav,1,1959,1,, 25226,NJBF000069429,,Northfield,NJ,39.36031437,-74.54962253,RES1,3001,,NaN,NE,1964,0,3109,2,1,2299.161581,2299.161581,3507,NO,23.61,30.49,1,1.3,6112,111.959764,122.07341,131.745971,138.10521,I,Above,Gable,0,5701,,27.05403517,0,0,,,,1,1,,0.35,nav,1,1964,2,, 25227,NJBF000069519,220 E STEELMAN AVE,Northfield,NJ,39.36116281,-74.5491934,RES1,3001,,17,NE,1956,1956,3109,2,1,2184.786145,2184.786145,3507,NO,25.87,33.2,1,-0.13,6112,111.958895,122.071738,131.743525,138.101058,I,Above,Gable,0,5701,,29.53403495,0,1.1,,,,1,1,,0.35,nav,1,1956,2,, 25228,NJBF000070620,2278 BURROUGHS AVE,Northfield,NJ,39.36781067,-74.57787258,RES1,3001,,17,NE,1940,1940,3101,1,1,2189.650452,2189.650452,3507,NO,13.85,23.18,1,0.34,6112,111.227595,121.503301,131.175181,137.407763,I,Above,Gable,0,5701,,18.51158591,0,1.2,,,,1,1,,0.35,nav,1,1940,1,, 25229,NJBF000070780,2 CEDAR SPRINGS DRIVE,Northfield,NJ,39.36840079,-74.57871434,RES1,3001,,17,NE,2014,2014,3101,2,1,1981.217268,1981.217268,3507,NO,33.69,39.31,1,0.45,6110,111.201481,121.482674,131.154227,137.381322,I,Above,Gable,0,5701,,36.5000085,0,1.2,,,,1,1,,0.35,nav,1,2014,2,, 25230,NJBF000070784,1 CEDAR SPRINGS DRIVE,Northfield,NJ,39.3684222,-74.5780714,RES1,3001,,17,NE,2014,2014,3101,2,1,1974.932566,1974.932566,3507,NO,34.11,42.14,1,2.77,6110,111.215878,121.493513,131.164615,137.394314,I,Above,Gable,0,5701,,38.12778165,0,1.2,,,,1,1,,0.35,nav,1,2014,2,, 25231,NJBF000070935,6 CEDAR SPRINGS DR,Northfield,NJ,39.36889826,-74.57866676,RES1,3001,,17,NE,2016,2016,3101,1,1,4267.018994,4267.018994,3507,NO,16.96,25.89,1,-0.5,6110,111.196745,121.478303,131.149072,137.374686,I,Above,Hip,0,5701,,21.42365405,0,1.2,,,,1,1,,0.7,nav,1,2016,1,, 25232,NJBF000070946,2140 SUTTON AVE,Northfield,NJ,39.36894842,-74.57251078,RES1,3001,,17,NE,1990,1990,3101,1,1,2091.738667,2091.738667,3507,NO,17.79,30.26,1,-0.43,6110,111.336453,121.583779,131.250965,137.501275,I,Above,Gable,0,5701,,24.02761765,0,1.2,,,,1,1,,0.35,nav,1,1990,1,, 25233,NJBF000071021,2138 SUTTON AVE,Northfield,NJ,39.36915922,-74.57236485,RES1,3001,,17,NE,1992,1992,3101,1,1,2364.09659,2364.09659,3507,NO,21.8,32.79,1,2.33,6112,111.337369,121.584089,131.250892,137.501055,I,Above,Gable,0,5701,,27.29863012,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25234,NJBF000071056,8 CEDAR SPRINGS DR,Northfield,NJ,39.36924611,-74.5784365,RES1,3001,,17,NE,2014,2014,3101,2,1,2362.364937,2362.364937,3507,NO,22.94,34.13,1,-0.82,6110,111.197985,121.478652,131.148736,137.374138,I,Above,Gable,0,5701,,28.53080294,0,1.2,,,,1,1,,0.7,nav,1,2014,2,, 25235,NJBF000071112,,Northfield,NJ,39.36946379,-74.57260826,RES1,3001,,NaN,NE,2001,0,3101,1,1,2519.318316,2519.318316,3507,NO,12.13,21.29,1,0.94,6112,111.328363,121.57671,131.243172,137.49135,I,Above,Gable,0,5701,,16.70690746,0,0,,,,1,1,,0.35,nav,1,2001,1,, 25236,NJBF000071398,,Northfield,NJ,39.37047289,-74.57366939,RES1,3001,,NaN,NE,1969,0,3101,1,1,2063.63474,2063.63474,3507,NO,15.38,28.1,1,0.02,6112,111.292843,121.547903,131.213336,137.453921,I,Above,Gable,0,5701,,21.74288706,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25237,NJBF000071437,,Northfield,NJ,39.37062114,-74.57400299,RES1,3001,,NaN,NE,1969,0,3101,1,1,2816.783069,2816.783069,3507,NO,13.28,27.45,1,0.05,6112,111.28358,121.540611,131.205981,137.444742,I,Above,Gable,0,5701,,20.3637831,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25238,NJBF000071572,204 ENGLISH LANE,Northfield,NJ,39.37095386,-74.53766474,RES1,3001,,17,NE,1967,1967,3102,2,1,3821.914399,3821.914399,3507,NO,25.72,34.44,1,0.85,6112,112.105955,122.168585,131.832488,138.184526,I,Above,Gable,0,5701,,30.07905417,0,1.2,,,,1,1,,0.35,nav,1,1967,2,, 25239,NJBF000072117,,Northfield,NJ,39.37263919,-74.57481946,RES1,3001,,NaN,NE,1969,0,3101,1,1,600.9626232,600.9626232,3507,NO,18.69,23.74,1,0.56,6110,111.243099,121.505651,131.168153,137.396824,I,Above,Gable,0,5701,,21.21503051,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25240,NJBF000072887,1505 MILL RD,Northfield,NJ,39.37545817,-74.57091382,RES1,3001,,17,NE,2005,2005,3102,2,1,2198.370794,2198.370794,3507,NO,25.65,39.24,1,-0.13,6112,111.303391,121.543717,131.199628,137.433913,I,Above,Gable,0,5701,,32.44374743,0,1.1,,,,1,1,,0.35,nav,1,2005,2,, 25241,NJBF000072894,3 MAZZA DR,Northfield,NJ,39.3755009,-74.57020271,RES1,3001,,17,NE,1987,1987,3102,2,1,1661.629014,1661.629014,3507,NO,31.01,42.61,1,0.76,6112,111.319177,121.555504,131.211084,137.447909,I,Above,Gable,0,5701,,36.80907424,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 25242,NJBF000072941,5 MAZZA DR,Northfield,NJ,39.37578565,-74.56995253,RES1,3001,,17,NE,1987,1987,3102,1,1,2054.904284,2054.904284,3507,NO,19.55,28.63,1,1.79,6112,111.322063,121.55687,131.211861,137.448649,I,Above,Gable,0,5701,,24.09020146,0,1.1,,,,1,1,,0.35,nav,1,1987,1,, 25243,NJBF000072949,12 MAZZA DR,Northfield,NJ,39.37585972,-74.56915201,RES1,3001,,17,NE,1987,1987,3102,2,1,2082.048325,2082.048325,3507,NO,38.31,50.35,1,0.93,6112,111.33959,121.569891,131.22449,137.464012,I,Above,Gable,0,5701,,44.32662457,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 25244,NJBF000072963,10 MAZZA DR,Northfield,NJ,39.3760353,-74.5694892,RES1,3001,,17,NE,1987,1987,3102,2,1,1703.048477,1703.048477,3507,NO,26.82,39.02,1,1.38,6112,111.330194,121.562289,131.216686,137.454355,I,Above,Gable,0,5701,,32.9189909,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 25245,NJBF000072935,OFF OLD MILL RD,Northfield,NJ,39.37574265,-74.56580091,RES1,3001,,NaN,NE,1969,0,3102,2,1,1255.805452,1255.805452,3507,NO,29.22,41.02,1,-0.88,6112,111.417076,121.628831,131.282741,137.534835,I,Above,Gable,0,5701,,35.12119734,0,0,,,,1,1,,1,nav,1,1969,2,, 25246,NJBF000073021,OFF OLD MILL RD,Northfield,NJ,39.3765665,-74.5652555,RES1,3001,,NaN,NE,1969,0,3102,2,1,3029.812031,3029.812031,3507,NO,26.09,32.17,1,2.34,6110,111.421388,121.629716,131.282088,137.533257,I,Above,Flat,0,5701,,29.13186862,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25247,NJBF000073015,OFF OLD MILL RD,Northfield,NJ,39.37653377,-74.5674251,RES1,3001,,NaN,NE,1969,0,3102,2,1,632.9396546,632.9396546,3507,NO,39.36,52.93,1,1.91,6112,111.372342,121.592679,131.245596,137.489133,I,Above,Gable,0,5701,,46.14807899,0,0,,,,1,1,,1,nav,1,1969,2,, 25248,NJBF000072953,OFF OLD MILL RD,Northfield,NJ,39.37591672,-74.56412808,RES1,3001,,NaN,NE,1969,0,3102,2,1,1070.102525,1070.102525,3507,NO,24.6,38.68,1,-0.01,6110,111.453437,121.655896,131.309181,137.56655,I,Above,Gable,0,5701,,31.64105012,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25249,NJBF000068710,,Northfield,NJ,39.35750315,-74.55495332,RES1,3001,,NaN,NE,1968,0,3102,2,1,3573.952663,3573.952663,3507,NO,32.05,43.26,1,0.88,6112,111.875586,122.01087,131.686088,138.038283,I,Above,Gable,0,5701,,37.65780527,0,0,,,,1,1,,0.35,nav,1,1968,2,, 25250,NJBF000068762,117 E OAKCREST AVE,Northfield,NJ,39.35750315,-74.55495332,RES1,3001,,17,NE,1968,1968,3102,1,1,2104.512219,2104.512219,3507,NO,20.3,27.1,1,2.72,6112,111.875586,122.01087,131.686088,138.038283,I,Above,Gable,0,5701,,23.7005713,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, 25251,NJBF000069074,102 E GLENCOVE AVE,Northfield,NJ,39.3586492,-74.55493349,RES1,3001,,17,NE,1979,1979,3102,2,1,2740.633964,2740.633964,3507,NO,34.58,42.38,1,0.47,6112,111.861139,121.998755,131.672984,138.021318,I,Above,Gable,0,5701,,38.47918446,0,0,,,,1,1,,0.35,nav,1,1979,2,, 25252,NJBF000069183,103 E GLENCOVE AVE,Northfield,NJ,39.35909298,-74.55497181,RES1,3001,,17,NE,1973,1973,3102,2,1,1941.503032,1941.503032,3507,NO,22.41,31.09,1,-0.57,6112,111.85454,121.993256,131.667091,138.013771,I,Above,Gable,0,5701,,26.75094652,0,1.1,,,,1,1,,0.35,nav,1,1973,2,, 25253,NJBF000051871,22 POINT DRIVE,Ocean City,NJ,39.31137476,-74.58021178,RES1,3001,,16,NE,1959,1959,3102,1,1,1522.742408,1522.742408,3507,NO,14.86,25.26,1,-0.35,6106,112.080297,122.109339,131.781991,138.177751,I,Above,Flat,0,5701,,20.06181263,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25254,NJBF000051851,24 POINT DRIVE,Ocean City,NJ,39.31120809,-74.58021759,RES1,3001,,16,NE,1959,1959,3102,2,1,2012.621327,2012.621327,3507,NO,29.24,41.62,1,-0.6,6106,112.08312,122.1113,131.78373,138.179903,I,Above,Gable,0,5701,,35.42723528,0,0,,,,1,1,,0.03,nav,1,1959,2,, 25255,NJBF000051792,28 O'BYRNE DRIVE,Ocean City,NJ,39.31077688,-74.57944295,RES1,3001,,16,NE,2013,2013,3102,2,1,1035.755493,1035.755493,3507,NO,26.84,33.17,1,0.8,6106,112.105643,122.129791,131.801413,138.201549,I,Above,Hip,0,5701,,30.00438501,0,0,,,,1,1,,0.03,nav,1,2013,2,, 25256,NJBF000051974,10 O'BYRNE DRIVE,Ocean City,NJ,39.31209856,-74.57919974,RES1,3001,,16,NE,2006,1959,3102,1,1,2387.054179,2387.054179,3507,NO,13.41,23.26,1,0.64,6106,112.087119,122.117612,131.790909,138.188509,I,Above,Gable,0,5701,,18.33239629,0,0,,,,1,1,,0.03,nav,1,2006,1,, 25257,NJBF000051982,9 POINT DRIVE,Ocean City,NJ,39.31218081,-74.57959522,RES1,3001,,NaN,NE,1996,0,3102,2,1,908.9431428,908.9431428,3507,NO,30.78,39.68,1,2.1,6106,112.078035,122.109883,131.783408,138.17934,I,Above,Gable,0,5701,,35.23137423,0,0,,,,1,1,,0.03,nav,1,1996,2,, 25258,NJBF000051848,23 POINT DRIVE,Ocean City,NJ,39.3111811,-74.57972338,RES1,3001,,16,NE,1959,1959,3102,1,1,1549.739953,1549.739953,3507,NO,19.62,28.21,1,2.9,6106,112.093139,122.120043,131.792289,138.190353,I,Above,Gable,0,5701,,23.91532025,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25259,NJBF000051831,26 POINT DRIVE,Ocean City,NJ,39.31104976,-74.58024258,RES1,3001,,16,NE,1959,1959,3102,1,1,1300.890106,1300.890106,3507,NO,12.66,25.66,1,1.6,6106,112.085419,122.112828,131.785052,138.181545,I,Above,Hip,0,5701,,19.15583825,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25260,NJBF000051933,16 POINT DRIVE,Ocean City,NJ,39.31186575,-74.58014152,RES1,3001,,16,NE,1959,1959,3102,2,1,1394.697981,1394.697981,3507,NO,37.46,44.97,1,2.98,6106,112.073008,122.104468,131.77775,138.172485,I,Above,Flat,0,5701,,41.2147676,0,0,,,,1,1,,0.03,nav,1,1959,2,, 25261,NJBF000051959,13 POINT DRIVE,Ocean City,NJ,39.31200145,-74.57959546,RES1,3001,,16,NE,1993,1993,3102,1,1,1887.092898,1887.092898,3507,NO,16.84,24.48,1,0.66,6106,112.081198,122.112102,131.785392,138.181794,I,Above,Hip,0,5701,,20.66171194,0,0,,,,1,1,,0.03,nav,1,1993,1,, 25262,NJBF000051911,15 POINT DRIVE,Ocean City,NJ,39.31168641,-74.57965626,RES1,3001,,16,NE,2004,2004,3102,1,1,1469.663757,1469.663757,3507,NO,19.28,27.39,1,1.91,6106,112.085555,122.114949,131.787845,138.184842,I,Above,Flat,0,5701,,23.3348045,0,0,,,,1,1,,0.03,nav,1,2004,1,, 25263,NJBF000051985,12 POINT DRIVE,Ocean City,NJ,39.31220735,-74.58016302,RES1,3001,,16,NE,1960,1960,3102,1,1,1773.743774,1773.743774,3507,NO,12.99,18.06,1,-0.29,6106,112.066604,122.099905,131.773642,138.167405,I,Above,Gable,0,5701,,15.52622605,0,0,,,,1,1,,0.03,nav,1,1960,1,, 25264,NJBF000051919,16 O'BYRNE DRIVE,Ocean City,NJ,39.31176369,-74.57926019,RES1,3001,,16,NE,1959,1959,3102,1,1,1731.343276,1731.343276,3507,NO,13.3,23.43,1,-0.79,6106,112.09184,122.12072,131.793599,138.191849,I,Above,Gable,0,5701,,18.36647309,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25265,NJBF000051825,25 POINT DRIVE,Ocean City,NJ,39.31101263,-74.57973906,RES1,3001,,16,NE,1959,1959,3102,1,1,1889.321209,1889.321209,3507,NO,14.26,21.33,1,0.7,6106,112.095784,122.121847,131.793871,138.192313,I,Above,Gable,0,5701,,17.79364655,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25266,NJBF000051814,26 O'BYRNE DRIVE,Ocean City,NJ,39.31094254,-74.57939676,RES1,3001,,16,NE,1959,1959,3102,1,1,1208.458684,1208.458684,3507,NO,13.19,23,1,2.51,6106,112.103614,122.128522,131.800354,138.200229,I,Above,Hip,0,5701,,18.09181371,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25267,NJBF000051838,24 O'BYRNE DRIVE,Ocean City,NJ,39.31110095,-74.57932824,RES1,3001,,16,NE,1959,1959,3102,1,1,1299.184465,1299.184465,3507,NO,21.26,30.93,1,2.39,6106,112.102171,122.127744,131.799767,138.199486,I,Above,Flat,0,5701,,26.0909029,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25268,NJBF000052007,10 POINT DRIVE,Ocean City,NJ,39.31237413,-74.58012416,RES1,3001,,16,NE,2009,2009,3102,2,1,2058.701228,2058.701228,3507,NO,35.76,49.53,1,0.27,6106,112.06442,122.098509,131.772451,138.165921,I,Above,Flat,0,5701,,42.64581648,0,0,,,,1,1,,0.03,nav,1,2009,2,, 25269,NJBF000051867,19 POINT DRIVE,Ocean City,NJ,39.31135676,-74.57970578,RES1,3001,,16,NE,1959,1950,3102,1,1,880.8736655,880.8736655,3507,NO,16.32,22.1,1,1.93,6106,112.090373,122.118159,131.790634,138.188304,I,Above,Gable,0,5701,,19.21265032,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25270,NJBF000051805,28 POINT DRIVE,Ocean City,NJ,39.31089325,-74.58027049,RES1,3001,,NaN,NE,1959,0,3102,2,1,1932.563154,1932.563154,3507,NO,37.55,49.59,1,2.65,6106,112.087662,122.11431,131.78633,138.183132,I,Above,Flat,0,5701,,43.56897421,0,0,,,,1,1,,0.03,nav,1,1959,2,, 25271,NJBF000051913,18 POINT DRIVE,Ocean City,NJ,39.31170697,-74.58016881,RES1,3001,,16,NE,1959,1959,3102,1,1,1405.522236,1405.522236,3507,NO,13.72,21.69,1,-0.77,6106,112.075285,122.105971,131.779052,138.174103,I,Above,Gable,0,5701,,17.7054656,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25272,NJBF000051930,15 POINT DRIVE,Ocean City,NJ,39.31183405,-74.57965097,RES1,3001,,16,NE,2004,2004,3102,1,1,1341.26172,1341.26172,3507,NO,17.38,23.09,1,-0.62,6106,112.083051,122.113209,131.786298,138.182928,I,Above,Gable,0,5701,,20.23751688,0,0,,,,1,1,,0.03,nav,1,2004,1,, 25273,NJBF000051883,20 O'BYRNE DRIVE,Ocean City,NJ,39.31143215,-74.57929292,RES1,3001,,16,NE,2015,2015,3102,2,1,1310.835873,1310.835873,3507,NO,26.73,35.97,1,2.44,6106,112.097033,122.124254,131.796706,138.195696,I,Above,Gable,0,5701,,31.34825374,0,0,,,,1,1,,0.03,nav,1,2015,2,, 25274,NJBF000051966,14 POINT DRIVE,Ocean City,NJ,39.31203594,-74.58013175,RES1,3001,,16,NE,1959,1959,3102,1,1,1370.840278,1370.840278,3507,NO,19.79,28.87,1,2.32,6106,112.070211,122.102541,131.776044,138.17037,I,Above,Gable,0,5701,,24.33061604,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25275,NJBF000051897,20 POINT DRIVE,Ocean City,NJ,39.31155363,-74.58019188,RES1,3001,,16,NE,2015,2015,3102,1,1,1813.890985,1813.890985,3507,NO,13.54,22.01,1,3,6106,112.077533,122.107469,131.780353,138.175719,I,Above,Gable,0,5701,,17.7747081,0,0,,,,1,1,,0.03,nav,1,2015,1,, 25276,NJBF000051944,12 O'BYRNE DRIVE,Ocean City,NJ,39.31193906,-74.5792385,RES1,3001,,16,NE,2006,2006,3102,2,1,1259.863485,1259.863485,3507,NO,32.88,42.01,1,-0.91,6106,112.089173,122.11892,131.792021,138.189894,I,Above,Hip,0,5701,,37.44667821,0,0,,,,1,1,,0.03,nav,1,2006,2,, 25277,NJBF000051778,29 POINT DRIVE,Ocean City,NJ,39.31069824,-74.57982131,RES1,3001,,16,NE,1959,1959,3102,1,1,1512.90816,1512.90816,3507,NO,20.5,32.75,1,1.23,6106,112.099742,122.124346,131.795969,138.194927,I,Above,Hip,0,5701,,26.62227013,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25278,NJBF000051892,19 POINT DRIVE,Ocean City,NJ,39.31150782,-74.57970021,RES1,3001,,16,NE,1950,1950,3102,1,1,1531.697687,1531.697687,3507,NO,17.23,32.2,1,2.33,6106,112.087834,122.116398,131.789071,138.18637,I,Above,Gable,0,5701,,24.71710723,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25279,NJBF000051783,30 POINT DRIVE,Ocean City,NJ,39.31071883,-74.5802735,RES1,3001,,16,NE,2014,2014,3102,1,1,1613.689925,1613.689925,3507,NO,20.44,31.94,1,1.49,6106,112.090648,122.116393,131.788178,138.185419,I,Above,Gable,0,5701,,26.19456635,0,0,,,,1,1,,0.03,nav,1,2014,1,, 25280,NJBF000051801,27 POINT DRIVE,Ocean City,NJ,39.31085434,-74.57975803,RES1,3001,,16,NE,1959,1959,3102,1,1,1670.674095,1670.674095,3507,NO,17.52,32.42,1,0.59,6106,112.098213,122.123488,131.795304,138.194089,I,Above,Gable,0,5701,,24.96675844,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25281,NJBF000051855,22 O'BYRNE DRIVE,Ocean City,NJ,39.311264,-74.5793175,RES1,3001,,16,NE,1959,1959,3102,1,1,1474.884105,1474.884105,3507,NO,12.76,27.48,1,-0.32,6106,112.099501,122.125902,131.798139,138.197472,I,Above,Flat,0,5701,,20.12108843,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25282,NJBF000051829,,Ocean City,NJ,39.31104157,-74.58104195,RES3C,3001,,NaN,ME,1969,0,3301,2,1,5349.560806,5349.560806,3507,NO,29.79,44.15,1,2.34,6106,112.070194,122.099359,131.771817,138.16538,I,Above,Flat,0,NaN,,36.97140288,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25283,NJBF000051876,,Ocean City,NJ,39.31139626,-74.58109194,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2854.39224,2854.39224,3507,NO,30.59,38.29,1,-0.51,6106,112.062994,122.094133,131.767087,138.159534,I,Above,Hip,0,NaN,,34.43937916,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25284,NJBF000051905,,Ocean City,NJ,39.31164187,-74.58105618,RES3C,3001,,NaN,ME,1969,0,3301,2,1,2962.051513,2962.051513,3507,NO,33.97,40.86,1,2.74,6106,112.05935,122.091705,131.764978,138.156912,I,Above,Gable,0,NaN,,37.41520526,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25285,NJBF000051935,,Ocean City,NJ,39.31187539,-74.58104153,RES3C,3001,,NaN,ME,1969,0,3301,1,1,1681.123051,1681.123051,3507,NO,12.69,18.96,1,-0.62,6106,112.055513,122.089065,131.762645,138.154017,I,Above,Flat,0,NaN,,15.82728766,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25286,NJBF000051998,,Ocean City,NJ,39.31228701,-74.58095152,RES3C,3001,,NaN,ME,1969,0,3301,1,1,1178.979952,1178.979952,3507,NO,11.27,25.84,1,0.66,6106,112.049985,122.085508,131.759605,138.150224,I,Above,Flat,0,NaN,,18.55598799,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25287,NJBF000052022,,Ocean City,NJ,39.31250005,-74.58082813,RES3C,3001,,NaN,ME,1969,0,3301,2,1,1406.296111,1406.296111,3507,NO,33.57,41.44,1,1.41,6106,112.048622,122.084988,131.759324,138.149843,I,Above,Gable,0,NaN,,37.50654789,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25288,NJBF000052064,,Ocean City,NJ,39.3127203,-74.58080426,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3354.734772,3354.734772,3507,NO,16.45,25.12,1,0.4,6106,112.04521,122.082684,131.757298,138.147325,I,Above,Hip,0,NaN,,20.78499747,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25289,NJBF000051745,32 POINT DRIVE,Ocean City,NJ,39.3104364,-74.58031896,RES1,3001,,NaN,NE,1969,0,3102,2,1,4539.010838,4539.010838,3507,NO,38.36,44,1,1.65,6106,112.094763,122.11913,131.79054,138.188352,I,Above,Hip,0,5701,,41.17819538,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25290,NJBF000051971,,Ocean City,NJ,39.3120789,-74.58098782,RES3C,3001,,NaN,ME,1969,0,3301,2,1,1584.422661,1584.422661,3507,NO,34.06,43.34,1,1.76,6106,112.052957,122.087463,131.761298,138.152332,I,Above,Flat,0,NaN,,38.69642375,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25291,NJBF000079059,332 MONTCLAIR DR,Pleasantville,NJ,39.40925267,-74.50079286,RES3C,3001,,16,E,1954,1954,3303,1,1,1601.592704,1601.592704,3507,NO,16.67,24.08,1,0.87,6112,112.572563,122.417384,132.068809,138.300759,I,Above,Gable,0,NaN,,20.37804612,0,1.1,,,,1,1,,0.35,nav,1,1954,1,, 25292,NJBF000076320,128 N FRANKLIN BLVD,Pleasantville,NJ,39.39295964,-74.51789825,RES1,3001,,15,NE,1943,1943,3101,2,1,1062.463152,1062.463152,3505,NO,32.89,42.43,3,8.08,6112,112.334907,122.284643,131.934622,138.228883,I,Above,Hip,0,5701,,37.66345925,0,0,,,,1,1,,0.35,nav,1,1943,2,, 25293,NJBF000078796,136 W THOMPSON AVE,Pleasantville,NJ,39.40761185,-74.51272043,RES1,3001,,14,NE,1925,1925,3101,1,1,1531.106339,1531.106339,3505,NO,14.59,21.25,3,-2.25,6112,112.32906,122.22382,131.860155,138.096257,I,Above,Gable,0,5701,,17.9205783,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25294,NJBF000078758,135 W THOMPSON AVE,Pleasantville,NJ,39.40735685,-74.51301697,RES1,3001,,16,NE,1989,1989,3101,1,1,1621.274023,1621.274023,3505,NO,18.4,31.43,3,6.67,6112,112.324597,122.221233,131.857506,138.094529,I,Above,Gable,0,5701,,24.91366635,0,0,,,,1,1,,0.35,nav,1,1989,1,, 25295,NJBF000077807,105 CHATHAM AVE,Pleasantville,NJ,39.40096029,-74.51068657,RES1,3001,,16,NE,1950,1950,3101,1,1,2003.098247,2003.098247,3505,NO,19.52,31.26,3,2.04,6112,112.425406,122.328562,131.976492,138.241762,I,Above,Gable,0,5701,,25.38854454,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25296,NJBF000077794,107 CHATHAM AVE,Pleasantville,NJ,39.40091217,-74.51049178,RES1,3001,,16,NE,1950,1950,3101,1,1,1087.240365,1087.240365,3505,NO,17.24,31.45,3,5.48,6112,112.430042,122.332502,131.980749,138.246312,I,Above,Gable,0,5701,,24.34181906,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25297,NJBF000077060,400 N FRANKLIN BLVD,Pleasantville,NJ,39.39622481,-74.51523307,RES1,3001,,15,NE,1920,1920,3101,2,1,2188.73966,2188.73966,3505,NO,28.99,40.46,3,6,6112,112.365506,122.297607,131.946193,138.228851,I,Above,Hip,0,5701,,34.72624303,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 25298,NJBF000073809,7080 BLACK HORSE PIKE,Pleasantville,NJ,39.38330438,-74.50132252,COM1,3003,530,NaN,ME,1969,0,3401,3,1,4916.525731,4916.525731,3507,NO,48.3,54.26,1,2.48,6106,112.792149,122.679668,132.359819,138.704587,I,Above,Flat,0,NaN,,51.28433315,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25299,NJBF000079744,15 W REDWOOD AVE,Pleasantville,NJ,39.41386475,-74.50493704,RES3C,3001,,NaN,E,1969,0,3303,1,1,724.4369536,724.4369536,3507,NO,14.21,20.46,1,-0.13,6106,112.448827,122.296233,131.935787,138.147959,I,Above,Gable,0,NaN,,17.33274543,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25300,NJBF000079043,334 MONTCLAIR DR,Pleasantville,NJ,39.40917857,-74.50060793,RES3C,3001,,16,E,1954,1954,3303,1,1,1570.648225,1570.648225,3507,NO,18.05,24.36,1,1.96,6112,112.577113,122.421433,132.073223,138.305479,I,Above,Gable,0,NaN,,21.20611304,0,1.1,,,,1,1,,0.35,nav,1,1954,1,, 25301,NJBF000073446,EXPRESSWAY PARKING LOT,Pleasantville,NJ,39.38078502,-74.49105397,COM1,3003,,NaN,ME,1969,0,3401,2,1,2023.456941,2023.456941,3507,NO,31.37,40.9,1,2.83,6106,113.045145,122.889712,132.584886,138.93892,I,Above,Flat,0,NaN,,36.13621648,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25302,NJBF000075244,108 S CHESTER AVE,Pleasantville,NJ,39.38920785,-74.51936514,RES1,3001,,15,NE,1910,1910,3102,2,1,1293.895808,1293.895808,3505,NO,27.79,35.15,3,5.9,6112,112.335735,122.297947,131.951433,138.260064,I,Above,Hip,0,5701,,31.47092197,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 25303,NJBF000077160,30 EVANS LANE,Pleasantville,NJ,39.39693252,-74.51607096,RES1,3001,,16,NE,1965,1965,3101,1,1,1428.329222,1428.329222,3505,NO,23.53,36.43,3,6.08,6112,112.341175,122.275485,131.922123,138.201163,I,Above,Gable,0,5701,,29.97895337,0,0,,,,1,1,,0.35,nav,1,1965,1,, 25304,NJBF000077130,413 N FRANKLIN BLVD,Pleasantville,NJ,39.39672652,-74.51559746,RES1,3001,,16,NE,1950,1950,3101,1,1,1316.974942,1316.974942,3505,NO,18.14,31.2,3,2.21,6112,112.353291,122.285974,131.933452,138.213719,I,Above,Gable,0,5701,,24.67341566,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25305,NJBF000077229,520 N FRANKLIN BLVD,Pleasantville,NJ,39.39736602,-74.51386446,RES1,3001,,16,NE,1956,1956,3101,1,1,529.8324142,529.8324142,3505,NO,13.7,19.17,3,-2.65,6112,112.38588,122.309872,131.958563,138.237335,I,Above,Gable,0,5701,,16.43299445,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 25306,NJBF000075934,222 OLD TURNPIKE,Pleasantville,NJ,39.39167035,-74.51616703,COM1,3003,,NaN,ME,1987,1987,3401,1,1,3138.82421,3138.82421,3507,NO,11.86,23.63,1,1.12,6106,112.384436,122.328602,131.982196,138.283415,I,Above,Flat,0,NaN,,17.74526787,0,0,,,,1,1,,0.03,nav,1,1987,1,, 25307,NJBF000075264,106 S CHESTER AVE,Pleasantville,NJ,39.38928435,-74.51932382,RES1,3001,,15,NE,1905,1905,3102,2,1,1322.670702,1322.670702,3505,NO,29.82,39.63,3,2.8,6112,112.335957,122.297875,131.951301,138.259655,I,Above,Hip,0,5701,,34.72739807,0,1.1,,,,1,1,,0.35,nav,1,1905,2,, 25308,NJBF000077148,417 N FRANKLIN BLVD,Pleasantville,NJ,39.39687306,-74.51547064,RES1,3001,,16,NE,1950,1950,3101,1,1,1166.596472,1166.596472,3505,NO,22.58,30.03,3,7.39,6112,112.354826,122.286676,131.934105,138.213849,I,Above,Gable,0,5701,,26.30544122,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25309,NJBF000074133,1112 BAY DRIVE,Pleasantville,NJ,39.38503315,-74.51253165,RES1,3001,,16,NE,1944,1944,3102,2,1,1620.130708,1620.130708,3505,NO,37.84,47.57,3,7.42,6106,112.526404,122.462402,132.128143,138.460626,I,Above,Hip,0,5701,,42.70369475,0,1.1,,,,1,1,,0.03,nav,1,1944,2,, 25310,NJBF000073072,8025 BLACK HORSE PIKE,Pleasantville,NJ,39.37728174,-74.49304958,COM1,3003,560,NaN,ME,1969,0,3401,5,1,16348.48818,16348.48818,3507,NO,71.14,82.41,1,0.7,6106,113.037838,122.891227,132.5868,138.957904,I,Above,Flat,0,NaN,,76.77345966,0,0,,,,1,1,,0.03,nav,1,1969,5,, 25311,NJBF000073903,111 OAKLAND AVE,Pleasantville,NJ,39.38387799,-74.52488699,RES1,3001,,16,NE,1998,1998,3102,1,1,1131.094625,1131.094625,3505,NO,17.01,24.42,3,3.81,6110,112.26216,122.256542,131.912017,138.236129,I,Above,Gable,0,5701,,20.71514731,0,0,,,,1,1,,0.35,nav,1,1998,1,, 25312,NJBF000074878,210 S FRANKLIN BLVD,Pleasantville,NJ,39.38806012,-74.52100374,RES1,3001,,15,NE,1920,1920,3102,2,1,864.6878227,864.6878227,3505,NO,31.41,41.05,3,-1.27,6106,112.309787,122.281083,131.934481,138.246147,I,Above,Hip,0,5701,,36.23123786,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 25313,NJBF000074383,353 S FRANKLIN BLVD,Pleasantville,NJ,39.38616399,-74.5227164,RES1,3001,,16,NE,1950,1950,3102,1,1,1037.852012,1037.852012,3505,NO,21.56,31.29,3,2.28,6106,112.289146,122.270784,131.925112,138.242641,I,Above,Gable,0,5701,,26.42793671,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25314,NJBF000074488,401 S EDGELEY AVE,Pleasantville,NJ,39.386663,-74.52467849,RES1,3001,,16,NE,1979,1979,3102,1,1,759.9799035,759.9799035,3505,NO,16.4,28.55,3,2.13,6110,112.240851,122.23106,131.88295,138.195843,I,Above,Hip,0,5701,,22.47551613,0,1.2,,,,1,1,,0.35,nav,1,1979,1,, 25315,NJBF000074405,418 S EDGELEY AVE,Pleasantville,NJ,39.38626957,-74.52419529,RES1,3001,,16,NE,1962,1962,3102,1,1,2265.203544,2265.203544,3505,NO,19.86,27.81,3,5.77,6106,112.255224,122.24366,131.896515,138.211683,I,Above,Hip,0,5701,,23.83122507,0,0,,,,1,1,,0.03,nav,1,1962,1,, 25316,NJBF000074778,215 S CHESTER AVE,Pleasantville,NJ,39.3877615,-74.5206655,RES1,3001,,15,NE,1915,1915,3102,2,1,1329.499356,1329.499356,3505,NO,34.58,48.32,3,3.05,6106,112.320017,122.29015,131.944273,138.257571,I,Above,Hip,0,5701,,41.45014158,0,0,,,,1,1,,0.03,nav,1,1915,2,, 25317,NJBF000074369,71 E WRIGHT ST,Pleasantville,NJ,39.38610742,-74.52355916,RES1,3001,,16,NE,1968,1968,3102,1,1,1328.756653,1328.756653,3505,NO,13.75,27.81,3,1.35,6106,112.270898,122.256549,131.910193,138.226877,I,Above,Gable,0,5701,,20.7780707,0,0,,,,1,1,,0.03,nav,1,1968,1,, 25318,NJBF000074147,125 E BAYVIEW AVE,Pleasantville,NJ,39.38508474,-74.52347099,RES1,3001,,16,NE,1996,1996,3102,1,1,1303.760521,1303.760521,3505,NO,23.69,31.75,3,8.65,6106,112.282384,122.268799,131.923888,138.244933,I,Above,Flat,0,5701,,27.7225733,0,0,,,,1,1,,0.03,nav,1,1996,1,, 25319,NJBF000074815,63 E DECATUR AVE,Pleasantville,NJ,39.38786892,-74.52189795,RES1,3001,,16,NE,1950,1950,3102,1,1,1014.566079,1014.566079,3505,NO,21.6,28.48,3,3.86,6106,112.291668,122.267344,131.920142,138.231565,I,Above,Gable,0,5701,,25.04009118,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25320,NJBF000074791,301 S FRANKLIN BLVD,Pleasantville,NJ,39.3877915,-74.52175756,RES1,3001,,43,NE,1951,1951,3102,2,2,1695.875281,1695.875281,3505,NO,38.25,53.12,3,4.47,6106,112.29549,122.270623,131.923659,138.235574,I,Above,Hip,0,5701,,45.68832791,0,0,,,,1,1,,0.03,nav,1,1951,2,, 25321,NJBF000074557,350 S EDGELEY AVE,Pleasantville,NJ,39.38698144,-74.5237416,RES1,3001,,16,NE,1920,1920,3102,2,1,1618.543601,1618.543601,3505,NO,26.16,31.44,3,-2.73,6106,112.258774,122.24419,131.896483,138.209303,I,Above,Flat,0,5701,,28.80043934,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25322,NJBF000075099,109 LYONS CT,Pleasantville,NJ,39.38870391,-74.5181695,RES1,3001,,16,NE,1948,1948,3102,1,1,1457.479677,1457.479677,3505,NO,21.21,26.73,3,2.17,6106,112.366827,122.324294,131.979658,138.291621,I,Above,Hip,0,5701,,23.96892516,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25323,NJBF000073980,106 OAKLAND AVE,Pleasantville,NJ,39.38429167,-74.52492362,RES1,3001,,15,NE,1922,1922,3102,1,1,1412.110975,1412.110975,3505,NO,19.53,29.57,3,4.88,6112,112.257418,122.251551,131.906443,138.228792,I,Above,Hip,0,5701,,24.55059252,0,1.2,,,,1,1,,0.35,nav,1,1922,1,, 25324,NJBF000074924,45 E DECATUR AVE,Pleasantville,NJ,39.38818525,-74.52275658,RES1,3001,,16,NE,1956,1956,3102,1,1,1433.553625,1433.553625,3505,NO,23.52,33.86,3,4.91,6110,112.269713,122.248932,131.900487,138.209555,I,Above,Gable,0,5701,,28.69424148,0,0,,,,1,1,,0.35,nav,1,1956,1,, 25325,NJBF000082063,205 KEEFER AVE,Pleasantville,NJ,39.42616752,-74.50767828,RES1,3001,,17,NE,2003,2003,3102,2,1,1745.627991,1745.627991,3505,NO,37.39,49.88,3,2.59,6110,112.305945,122.120819,131.741299,137.90055,I,Above,Gable,0,5701,,43.63525415,0,0,,,,1,1,,0.35,nav,1,2003,2,, 25326,NJBF000074983,104 FRANKFORT COURT,Pleasantville,NJ,39.38836399,-74.5167572,RES1,3001,,16,NE,1925,1925,3102,1,1,740.2951956,740.2951956,3505,NO,21.99,35.34,3,3.64,6106,112.40125,122.352757,132.010013,138.324752,I,Above,Hip,0,5701,,28.66624944,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 25327,NJBF000074160,209 CORDOVA AVENUE,Pleasantville,NJ,39.38515442,-74.51450304,RES1,3001,,17,NE,1950,1950,3102,1,1,1463.573429,1463.573429,3505,NO,18.58,26.32,3,0.47,6106,112.481431,122.426259,132.089812,138.420236,I,Above,Hip,0,5701,,22.44677677,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 25328,NJBF000073990,1600 BAY DRIVE,Pleasantville,NJ,39.38452478,-74.5083671,RES3C,3001,,16,E,1925,1925,3303,2,1,2003.238467,2003.238467,3507,NO,39.48,48.32,1,0.94,6106,112.623836,122.541563,132.212369,138.549616,I,Above,Gable,0,NaN,,43.90364987,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25329,NJBF000074161,210 FLORENCE AVENUE,Pleasantville,NJ,39.38516087,-74.51482362,RES1,3001,,16,NE,1925,1925,3102,1,1,2280.37481,2280.37481,3505,NO,20.73,34.41,3,5.58,6106,112.474226,122.42051,132.083727,138.41385,I,Above,Flat,0,5701,,27.57351623,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 25330,NJBF000074162,210 CORDOVA AVENUE,Pleasantville,NJ,39.38516917,-74.51393609,RES1,3001,,16,NE,1925,1925,3102,2,1,1228.76409,1228.76409,3505,NO,31.76,45.41,3,0.78,6106,112.493892,122.436128,132.100246,138.431069,I,Above,Hip,0,5701,,38.58654605,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25331,NJBF000074830,105 GENOA AVENUE,Pleasantville,NJ,39.38790424,-74.51573928,RES1,3001,,16,NE,1927,1927,3102,2,1,1302.676806,1302.676806,3505,NO,40.4,54.72,3,8.4,6106,112.428071,122.375546,132.034445,138.352044,I,Above,Flat,0,5701,,47.56180548,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 25332,NJBF000074783,105 GENOA AVENUE,Pleasantville,NJ,39.38777089,-74.51584216,RES1,3001,,16,NE,1927,1927,3102,2,1,1003.240224,1003.240224,3505,NO,37.79,50.44,3,3.97,6106,112.42702,122.375122,132.03408,138.352157,I,Above,Flat,0,5701,,44.11808937,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 25333,NJBF000074985,105 FRANKFORT COURT,Pleasantville,NJ,39.3883685,-74.517402,RES1,3001,,16,NE,1997,1997,3102,1,1,795.4624584,795.4624584,3505,NO,11.22,19.95,3,-0.88,6106,112.38691,122.341336,131.997921,138.312044,I,Above,Gable,0,5701,,15.5851044,0,0,,,,1,1,,0.03,nav,1,1997,1,, 25334,NJBF000074918,109 FRANKFORT COURT,Pleasantville,NJ,39.38817405,-74.51750718,RES1,3001,,16,NE,1950,1950,3102,1,1,1502.983993,1502.983993,3505,NO,19.94,29.52,3,7.56,6106,112.386363,122.341515,131.998243,138.313089,I,Above,Gable,0,5701,,24.7304643,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 25335,NJBF000074945,101 GENOA AVENUE,Pleasantville,NJ,39.38826398,-74.5155103,RES1,3001,,16,NE,1950,1950,3102,1,1,961.9147656,961.9147656,3505,NO,11.15,25.2,3,-1.52,6106,112.429818,122.375818,132.034503,138.350761,I,Above,Gable,0,5701,,18.17195269,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 25336,NJBF000074122,1004 BAY DRIVE,Pleasantville,NJ,39.38499649,-74.5138325,RES1,3001,,16,NE,1929,1929,3102,2,1,1163.404663,1163.404663,3505,NO,38.83,53.39,3,8.74,6106,112.497843,122.43977,132.1042,138.435851,I,Above,Gable,0,5701,,46.10887727,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 25337,NJBF000074959,110 LYONS COURT,Pleasantville,NJ,39.388289,-74.51795656,RES1,3001,,16,NE,1925,1925,3102,1,1,1317.486154,1317.486154,3505,NO,10.42,18.46,3,-2.93,6106,112.375325,122.332374,131.988494,138.30242,I,Above,Gable,0,5701,,14.44018753,0,1.2,,,,1,1,,0.03,nav,1,1925,1,, 25338,NJBF000075002,108 LYONS COURT,Pleasantville,NJ,39.38841321,-74.51787581,RES1,3001,,16,NE,1950,1950,3102,1,1,1336.943112,1336.943112,3505,NO,18.58,24.19,3,2.84,6106,112.375985,122.332505,131.988547,138.302026,I,Above,Hip,0,5701,,21.38430764,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 25339,NJBF000074102,7057 BLACK HORSE PIKE,Pleasantville,NJ,39.38490869,-74.50696893,RES3C,3001,569,NaN,E,1969,0,3303,4,1,2115.471494,2115.471494,3507,NO,50.36,55.54,1,1.72,6106,112.651107,122.562325,132.234269,138.570463,I,Above,Gable,0,NaN,,52.94935779,0,0,,,,1,1,,0.03,nav,1,1969,4,, 25340,NJBF000074644,7010 BLACK HORSE PIKE,Pleasantville,NJ,39.38731869,-74.51612325,COM1,3003,,16,ME,1927,1927,3401,2,1,1887.053197,1887.053197,3507,NO,35.68,41.27,1,1.47,6106,112.424988,122.374898,132.034134,138.353891,I,Above,Gable,0,NaN,,38.47226531,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 25341,NJBF000073501,7095 BLACK HORSE PIKE,Pleasantville,NJ,39.38116368,-74.49926817,COM1,3003,530,NaN,ME,1969,0,3401,3,1,39630.40629,39630.40629,3507,NO,47.29,58.49,1,0.02,6106,112.859378,122.738945,132.42361,138.778109,I,Above,Flat,0,NaN,,52.89101058,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25342,NJBF000074970,102 TOULON AVENUE,Pleasantville,NJ,39.38833532,-74.51591615,RES1,3001,,16,NE,2003,2003,3102,1,1,1513.216817,1513.216817,3505,NO,17.28,23.1,3,5.14,6106,112.420163,122.367905,132.026075,138.341683,I,Above,Gable,0,5701,,20.18706874,0,0,,,,1,1,,0.03,nav,1,2003,1,, 25343,NJBF000073584,203 FOX PLACE,Pleasantville,NJ,39.38211625,-74.49957872,RES1,3001,,16,NE,1994,1994,3101,3,1,1162.437589,1162.437589,3505,NO,36.14,50.46,3,2.52,6106,112.842778,122.723314,132.406703,138.756899,I,Above,Gable,0,5701,,43.29602718,0,0,,,,1,1,,0.03,nav,1,1994,3,, 25344,NJBF000075032,105 FRANKFORT COURT,Pleasantville,NJ,39.388498,-74.51737499,RES1,3001,,16,NE,1997,1997,3102,1,1,1650.010946,1650.010946,3505,NO,22.23,31.72,3,7.37,6106,112.386316,122.340451,131.996897,138.310494,I,Above,Hip,0,5701,,26.97639581,0,0,,,,1,1,,0.03,nav,1,1997,1,, 25345,NJBF000081433,100 MEADOWVIEW AVE,Pleasantville,NJ,39.41919969,-74.50943726,RES1,3001,,17,NE,1965,1965,3101,1,1,2160.020426,2160.020426,3505,NO,15.7,21.77,3,3.28,6106,112.315637,122.161873,131.787903,137.976309,I,Above,Gable,0,5701,,18.73217366,0,0,,,,1,1,,0.03,nav,1,1965,1,, 25346,NJBF000081478,103 MEADOWVIEW AVE,Pleasantville,NJ,39.41944442,-74.50902098,RES1,3001,,17,NE,1961,1961,3101,1,1,1656.185032,1656.185032,3505,NO,18.31,28.42,3,1.12,6110,112.322716,122.166659,131.793031,137.980541,I,Above,Gable,0,5701,,23.36366137,0,1.1,,,,1,1,,0.35,nav,1,1961,1,, 25347,NJBF000080433,52 OREGON AVE,Pleasantville,NJ,39.4150449,-74.50543693,RES1,3001,,17,NE,1925,1925,3101,1,1,1965.16817,1965.16817,3505,NO,24.33,37.36,3,7.83,6106,112.429538,122.275193,131.91253,138.119621,I,Above,Gable,0,5701,,30.84759954,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25348,NJBF000080477,52 OREGON AVE,Pleasantville,NJ,39.41519743,-74.50528741,RES1,3001,,17,NE,1925,1925,3101,1,1,594.4702017,594.4702017,3505,NO,22.75,37.28,3,8.68,6106,112.431613,122.276265,131.913644,138.120116,I,Above,Gable,0,5701,,30.01359338,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25349,NJBF000081387,108 MEADOWVIEW AVE,Pleasantville,NJ,39.4189746,-74.5083728,RES1,3001,,17,NE,1975,1975,3101,2,1,1864.799246,1864.799246,3505,NO,23.59,31.6,3,-2.98,6112,112.339576,122.182882,131.81084,138.000552,I,Above,Gable,0,5701,,27.59796069,0,1.1,,,,1,1,,0.35,nav,1,1975,2,, 25350,NJBF000081069,132 MARIN DR,Pleasantville,NJ,39.41743972,-74.51553742,RES1,3001,,33,NE,1988,1988,3101,2,1,3768.110061,3768.110061,3505,NO,22.18,31.59,3,0.46,6110,112.199088,122.073148,131.692167,137.885135,I,Above,Gable,0,5701,,26.88306627,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25351,NJBF000081460,109 MEADOWVIEW AVE,Pleasantville,NJ,39.41933031,-74.50834197,RES1,3001,,17,NE,1969,1969,3101,1,1,1430.646748,1430.646748,3505,NO,13.27,25.92,3,0.95,6112,112.33778,122.179761,131.807329,137.995542,I,Above,Gable,0,5701,,19.59625873,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25352,NJBF000081398,102 MEADOWVIEW AVE,Pleasantville,NJ,39.41902603,-74.50905436,RES1,3001,,17,NE,1963,1963,3101,2,1,1535.23952,1535.23952,3505,NO,38.44,45.71,3,8.65,6110,112.32489,122.170393,131.797232,137.98651,I,Above,Gable,0,5701,,42.07331065,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, 25353,NJBF000081951,313 S NEW ROAD,Pleasantville,NJ,39.42481532,-74.50746002,RES1,3001,,17,NE,2003,2003,3102,1,1,1199.982144,1199.982144,3505,NO,19.72,34.03,3,1.59,6110,112.319318,122.138613,131.761006,137.926109,I,Above,Gable,0,5701,,26.87094252,0,0,,,,1,1,,0.35,nav,1,2003,1,, 25354,NJBF000081936,321 S NEW RD,Pleasantville,NJ,39.42471031,-74.50802206,RES1,3001,,17,NE,1930,1930,3102,2,1,635.8012072,635.8012072,3505,NO,40.41,46.28,3,4.76,6106,112.308316,122.12984,131.751451,137.916832,I,Above,Gable,0,5701,,43.34517522,0,0,,,,1,1,,0.03,nav,1,1930,2,, 25355,NJBF000080918,151 MARIN DR,Pleasantville,NJ,39.41684838,-74.51636827,RES1,3001,,33,NE,1988,1988,3101,2,1,3542.176265,3542.176265,3505,NO,28.4,42.76,3,2.15,6110,112.185525,122.064709,131.683288,137.878248,I,Above,Gable,0,5701,,35.58342262,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25356,NJBF000080323,720 S NEW RD UNIT 1A,Pleasantville,NJ,39.40872628,-74.51526506,RES1,3001,,33,NE,1972,1972,3101,2,1,12979.99906,12979.99906,3505,NO,35.05,40.08,3,2.16,6112,112.266062,122.167614,131.798927,138.028873,I,Above,Gable,0,5701,,37.56485329,0,0,,,,1,1,,0.35,nav,1,1972,2,, 25357,NJBF000077220,567 ABSECON BLVD,Pleasantville,NJ,39.39732395,-74.49327556,RES4,3001,210,NaN,ME,1969,0,3401,1,1,5903.984203,5903.984203,3507,NO,14.54,27.79,1,-0.71,6106,112.835898,122.675632,132.351716,138.633074,I,Above,Flat,0,NaN,,21.16693969,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25358,NJBF000074732,215 S HAMPDEN CT,Pleasantville,NJ,39.38759347,-74.52001676,RES1,3001,,16,NE,1924,1924,3102,2,1,853.584028,853.584028,3505,NO,37.4,50.36,3,7.15,6106,112.335984,122.303349,131.958326,138.273055,I,Above,Gable,0,5701,,43.88413511,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 25359,NJBF000074696,215 S HAMPDEN CT,Pleasantville,NJ,39.38747076,-74.51990848,RES1,3001,,16,NE,1924,1924,3102,2,1,1058.006957,1058.006957,3505,NO,28.89,35.58,3,-2.56,6106,112.339528,122.306546,131.96179,138.277151,I,Above,Hip,0,5701,,32.2348988,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 25360,NJBF000074853,15 TUNIS AVE,Pleasantville,NJ,39.38797999,-74.52433799,RES1,3001,,16,NE,1950,1950,3102,1,1,1054.863151,1054.863151,3505,NO,14.92,22.01,3,1.4,6110,112.236431,122.22328,131.873653,138.181558,I,Above,Gable,0,5701,,18.46393827,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25361,NJBF000077783,116 CHATHAM AVE,Pleasantville,NJ,39.40085826,-74.50939833,RES1,3001,,16,NE,1952,1952,3101,1,1,1224.779162,1224.779162,3505,NO,19.91,31.55,3,8.46,6112,112.454288,122.352381,132.00213,138.268386,I,Above,Gable,0,5701,,25.73068711,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25362,NJBF000074025,202 E EDGEWATER AVE,Pleasantville,NJ,39.38452529,-74.52311573,RES1,3001,,15,NE,1920,1920,3102,1,1,1276.890216,1276.890216,3505,NO,15.46,23.86,3,1.96,6106,112.295574,122.280917,131.937058,138.260898,I,Above,Gable,0,5701,,19.65698602,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25363,NJBF000078374,1015 IOWA AVE,Pleasantville,NJ,39.40512567,-74.50569399,RES3C,3001,,16,E,1978,1978,3303,1,1,1968.008361,1968.008361,3507,NO,12.27,21.4,1,0.97,6110,112.49989,122.373495,132.022854,138.27201,I,Above,Gable,0,NaN,,16.83548391,0,0,,,,1,1,,0.35,nav,1,1978,1,, 25364,NJBF000074138,35 E EDGEWATER AVE,Pleasantville,NJ,39.38504716,-74.5255205,RES1,3001,,15,NE,1890,1890,3102,2,1,1140.190239,1140.190239,3505,NO,28.44,33.46,3,6.33,6110,112.23703,122.233165,131.886536,138.204924,I,Above,Gable,0,5701,,30.94861391,0,0,,,,1,1,,0.35,nav,1,1890,2,, 25365,NJBF000073896,113 OAKLAND AVE,Pleasantville,NJ,39.3838305,-74.5247275,RES1,3001,,15,NE,1925,1925,3102,1,1,975.6609055,975.6609055,3505,NO,13.78,20.26,3,-0.24,6106,112.26618,122.259849,131.915521,138.240052,I,Above,Gable,0,5701,,17.0177719,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25366,NJBF000075207,109 S HAMPDEN CT,Pleasantville,NJ,39.389065,-74.518919,RES1,3001,,15,NE,1920,1920,3102,1,1,1275.746766,1275.746766,3505,NO,21.63,27.28,3,5.57,6112,112.346916,122.3073,131.961426,138.271117,I,Above,Hip,0,5701,,24.456186,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25367,NJBF000074317,100 E BAYVIEW AVE,Pleasantville,NJ,39.38588008,-74.52435217,RES1,3001,,NaN,NE,1940,1940,3102,2,1,914.7006253,914.7006253,3505,NO,35.38,44.37,3,-1.29,6106,112.255332,122.244979,131.898226,138.214797,I,Above,Gable,0,5701,,39.87710071,0,0,,,,1,1,,0.03,nav,1,1940,2,, 25368,NJBF000074840,61 E DECATUR AVE,Pleasantville,NJ,39.3879347,-74.52207615,RES1,3001,,16,NE,1950,1950,3102,1,1,1083.885728,1083.885728,3505,NO,19.36,32.1,3,6.64,6106,112.287112,122.263522,131.916062,138.226997,I,Above,Gable,0,5701,,25.73086511,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25369,NJBF000079160,412 LARCHMONT DR,Pleasantville,NJ,39.40991897,-74.49962875,RES3C,3001,,15,E,1930,1930,3303,1,1,1805.614714,1805.614714,3507,NO,22.03,34.35,1,2.81,6112,112.592261,122.431099,132.083484,138.312523,I,Above,Gable,0,NaN,,28.18702965,0,0,,,,1,1,,0.35,nav,1,1930,1,, 25370,NJBF000074931,310 E BLACK HORSE PIKE,Pleasantville,NJ,39.38820591,-74.51848316,COM1,3003,959,NaN,ME,2015,2015,3401,1,1,5687.644715,5687.644715,3507,NO,10.94,23.23,1,-0.32,6106,112.364416,122.323968,131.979664,138.293419,I,Above,Flat,0,NaN,,17.08336503,0,0,,,,1,1,,0.03,nav,1,2015,1,, 25371,NJBF000074991,50 E DECATUR AVE,Pleasantville,NJ,39.38838686,-74.5221417,RES1,3001,,16,NE,1920,1920,3102,2,1,1330.406787,1330.406787,3505,NO,22.9,37.07,3,0.12,6106,112.281545,122.257639,131.909502,138.218474,I,Above,Gable,0,5701,,29.98214573,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 25372,NJBF000074564,30 E WRIGHT ST,Pleasantville,NJ,39.38700995,-74.52425768,RES1,3001,,16,NE,1954,1954,3102,1,1,1339.795818,1339.795818,3505,NO,18.88,30.79,3,3.39,6106,112.247025,122.234816,131.886603,138.198625,I,Above,Gable,0,5701,,24.83365726,0,0,,,,1,1,,0.03,nav,1,1954,1,, 25373,NJBF000073092,40 PLAZA PL,Pleasantville,NJ,39.37750651,-74.53313616,RES1,3001,,16,NE,1920,1920,3101,2,1,507.5907365,507.5907365,3505,NO,35.85,47.73,3,-2.5,6112,112.13938,122.178628,131.83662,138.172661,I,Above,Flat,0,5701,,41.79374744,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 25374,NJBF000079085,1103 SHANE CT,Pleasantville,NJ,39.40943599,-74.51115866,RES1,3001,,16,NE,2005,2005,3101,2,1,948.5592146,948.5592146,3505,NO,33.11,38.68,3,5.61,6112,112.348875,122.232423,131.868498,138.097632,I,Above,Gable,0,5701,,35.89343414,0,0,,,,1,1,,0.03,nav,1,2005,2,, 25375,NJBF000079924,1425 N MAIN ST,Pleasantville,NJ,39.41334498,-74.50425137,RES3C,3001,,NaN,E,1969,0,3303,1,1,1870.450392,1870.450392,3507,NO,12.06,25.01,1,-0.76,6112,112.467288,122.313731,131.954967,138.169435,I,Above,Hip,0,NaN,,18.5365714,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25376,NJBF000075475,4 S HAMPDEN CT,Pleasantville,NJ,39.38997825,-74.51793448,RES1,3001,,45,NE,1929,1929,3102,1,2,1036.819389,1036.819389,3505,NO,25.96,32.66,3,7.63,6110,112.360491,122.315118,131.969051,138.275857,I,Above,Hip,0,5701,,29.31353412,0,0,,,,1,1,,0.35,nav,1,1929,1,, 25377,NJBF000073363,1100 CLEMATIS AVE,Pleasantville,NJ,39.38010362,-74.52858245,COM3,3003,,NaN,ME,1969,0,3401,1,1,74699.47215,74699.47215,3507,NO,18.42,25.07,1,1.5,6112,112.215881,122.23123,131.888803,138.222684,I,Above,Flat,0,NaN,,21.74633834,0,0,,,,1,1,,1,nav,1,1969,1,, 25378,NJBF000073786,115 E GREENFIELD AVE,Pleasantville,NJ,39.38312548,-74.52528651,RES1,3001,,15,NE,1910,1910,3102,1,1,1466.696606,1466.696606,3505,NO,17.28,31.97,3,4.7,6112,112.260389,122.257407,131.913546,138.240196,I,Above,Gable,0,5701,,24.62642873,0,0,,,,1,1,,0.35,nav,1,1910,1,, 25379,NJBF000074470,414 PROSPECT AVE,Pleasantville,NJ,39.386602,-74.52527706,RES1,3001,,15,NE,1930,1930,3102,2,1,1386.846009,1386.846009,3505,NO,37.1,48.74,3,2.31,6112,112.22807,122.221172,131.872619,138.184942,I,Above,Gable,0,5701,,42.92197038,0,0,,,,1,1,,0.35,nav,1,1930,2,, 25380,NJBF000074097,205 E BAYVIEW AVE,Pleasantville,NJ,39.3848913,-74.52271144,RES1,3001,,16,NE,2004,2004,3102,1,1,1412.463385,1412.463385,3505,NO,8.14,13.56,3,-2.71,6106,112.301156,122.284208,131.940227,138.263067,I,Above,Gable,0,5701,,10.84888768,0,0,,,,1,1,,0.03,nav,1,2004,1,, 25381,NJBF000073569,133 RYON AVE,Pleasantville,NJ,39.38167395,-74.52687991,RES1,3001,,15,NE,1930,1930,3102,1,3,1872.568068,1872.568068,3505,NO,20.77,26.84,3,8.94,6112,112.238704,122.244634,131.901417,138.23164,I,Above,Gable,0,5701,,23.80330112,0,0,,,,1,1,,0.35,nav,1,1930,1,, 25382,NJBF000074541,302 TUNIS AVE,Pleasantville,NJ,39.38691002,-74.51954555,RES1,3001,,16,NE,1930,1930,3102,2,1,706.6415609,706.6415609,3505,NO,36.99,44.34,3,6.22,6106,112.352757,122.318799,131.975129,138.293245,I,Above,Gable,0,5701,,40.6638243,0,0,,,,1,1,,0.03,nav,1,1930,2,, 25383,NJBF000074804,205 S HAMPDEN CT,Pleasantville,NJ,39.38783591,-74.51966782,RES1,3001,,45,NE,1923,1923,3102,1,2,1520.379521,1520.379521,3505,NO,16.59,28.65,3,4.16,6106,112.341504,122.306955,131.961954,138.276039,I,Above,Gable,0,5701,,22.62065485,0,0,,,,1,1,,0.03,nav,1,1923,1,, 25384,NJBF000075003,31 E DECATUR AVE,Pleasantville,NJ,39.38841834,-74.52338088,RES1,3001,,16,NE,1946,1946,3102,1,1,1020.272078,1020.272078,3505,NO,15.81,25.17,3,2.22,6112,112.253747,122.235528,131.886177,138.1935,I,Above,Gable,0,5701,,20.48956391,0,1.1,,,,1,1,,0.35,nav,1,1946,1,, 25385,NJBF000075085,32 E DECATUR AVE,Pleasantville,NJ,39.38865294,-74.52293181,RES1,3001,,15,NE,1912,1912,3102,1,1,1306.425973,1306.425973,3505,NO,19.11,25.66,3,-0.28,6112,112.261603,122.240969,131.891716,138.198622,I,Above,Gable,0,5701,,22.38296676,0,0,,,,1,1,,0.35,nav,1,1912,1,, 25386,NJBF000075048,40 E DECATUR AVE,Pleasantville,NJ,39.38854882,-74.52252018,RES1,3001,,16,NE,1950,1950,3102,1,1,1125.567462,1125.567462,3505,NO,13.8,26.79,3,-2.53,6112,112.271688,122.249299,131.90058,138.208422,I,Above,Gable,0,5701,,20.29830808,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25387,NJBF000075145,115 S HAMPDEN CT,Pleasantville,NJ,39.38884792,-74.51907338,RES1,3001,,15,NE,1910,1910,3102,1,1,1507.648829,1507.648829,3505,NO,21.95,33.11,3,7.69,6112,112.34547,122.306854,131.961112,138.27156,I,Above,Hip,0,5701,,27.53270771,0,0,,,,1,1,,0.35,nav,1,1910,1,, 25388,NJBF000076863,140 COLLINS AVE,Pleasantville,NJ,39.39511799,-74.5140925,RES1,3001,,15,NE,1905,1905,3101,2,1,582.9561156,582.9561156,3505,NO,36.4,41.73,3,8.02,6112,112.399975,122.32923,131.980633,138.268792,I,Above,Gable,0,5701,,39.06419579,0,1.2,,,,1,1,,0.35,nav,1,1905,2,, 25389,NJBF000076798,140 COLLINS AVE,Pleasantville,NJ,39.39483549,-74.51423849,RES1,3001,,15,NE,1905,1905,3101,2,1,878.8634853,878.8634853,3505,NO,38.45,44.41,3,2.03,6110,112.399228,122.32962,131.981227,138.270487,I,Above,Gable,0,5701,,41.42964436,0,1.2,,,,1,1,,0.35,nav,1,1905,2,, 25390,NJBF000076846,140 COLLINS AVE,Pleasantville,NJ,39.39503199,-74.5140615,RES1,3001,,15,NE,1905,1905,3101,2,1,524.3989077,524.3989077,3505,NO,40.74,48.19,3,7.44,6110,112.401418,122.33069,131.982245,138.27079,I,Above,Gable,0,5701,,44.46779873,0,1.2,,,,1,1,,0.35,nav,1,1905,2,, 25391,NJBF000077976,201 E DELILAH RD,Pleasantville,NJ,39.40206482,-74.5073842,COM1,3001,,NaN,ME,1969,0,3401,3,1,5331.110172,5331.110172,3507,NO,57.57,65.66,1,0.66,6106,112.48813,122.375424,132.026314,138.288113,I,Above,Flat,0,NaN,,61.61858345,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25392,NJBF000076315,147 CHARLES AVE,Pleasantville,NJ,39.39294616,-74.51607015,RES1,3001,,NaN,NE,1950,0,3101,1,1,2057.450759,2057.450759,3505,NO,21.18,28.14,3,3.91,6110,112.375327,122.317,131.969015,138.264907,I,Above,Gable,0,5701,,24.66014869,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25393,NJBF000078970,120 ORCHARDS,Pleasantville,NJ,39.40872628,-74.51526506,RES1,3001,,33,NE,1988,1988,3101,2,1,5246.063465,5246.063465,3505,NO,33.59,38.76,3,-2.21,6112,112.266062,122.167614,131.798927,138.028873,I,Above,Gable,0,5701,,36.17551181,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25394,NJBF000078991,120 ORCHARDS,Pleasantville,NJ,39.40885413,-74.51431102,RES1,3001,,33,NE,1988,1988,3101,2,1,4040.901698,4040.901698,3505,NO,33.92,42.26,3,5.67,6110,112.285592,122.183037,131.815487,138.045471,I,Above,Gable,0,5701,,38.09020525,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25395,NJBF000079027,120 ORCHARDS,Pleasantville,NJ,39.409088,-74.51366599,RES1,3001,,33,NE,1988,1988,3101,2,1,2416.55725,2416.55725,3505,NO,22.89,32.15,3,1.64,6112,112.2977,122.191948,131.824972,138.054336,I,Above,Gable,0,5701,,27.52179153,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25396,NJBF000075204,115 S CHESTER AVE,Pleasantville,NJ,39.38906266,-74.51989766,RES1,3001,,45,NE,1910,1910,3102,2,2,917.8439532,917.8439532,3505,NO,33.31,47,3,-0.37,6112,112.325228,122.290075,131.943217,138.251898,I,Above,Hip,0,5701,,40.15541621,0,0,,,,1,1,,0.35,nav,1,1910,2,, 25397,NJBF000073476,127 FRAMBES AVE,Pleasantville,NJ,39.38102459,-74.52760492,RES1,3001,,16,NE,1952,1952,3102,1,1,2262.233122,2262.233122,3505,NO,28.16,37.21,3,8.66,6112,112.228769,122.238712,131.895796,138.227527,I,Above,Hip,0,5701,,32.68432591,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25398,NJBF000074659,218 S CHESTER AVE,Pleasantville,NJ,39.38737123,-74.52022914,RES1,3001,,15,NE,1924,1924,3102,2,1,732.477401,732.477401,3505,NO,41.12,47.7,3,3.76,6106,112.333316,122.301938,131.957001,138.272429,I,Above,Gable,0,5701,,44.41120127,0,0,,,,1,1,,0.03,nav,1,1924,2,, 25399,NJBF000075267,101 S HAMPDEN CT,Pleasantville,NJ,39.38929325,-74.51880001,RES1,3001,,45,NE,1900,1900,3102,2,2,1185.776895,1185.776895,3505,NO,21.65,31.34,3,0.27,6112,112.347489,122.307013,131.960959,138.269809,I,Above,Hip,0,5701,,26.4911301,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 25400,NJBF000076785,144 COLLINS AVE,Pleasantville,NJ,39.39479099,-74.5140965,RES1,3001,,15,NE,1920,1920,3101,1,1,1743.733046,1743.733046,3505,NO,9.26,19.54,3,-1.73,6106,112.402728,122.332584,131.984415,138.27396,I,Above,Gable,0,5701,,14.39958485,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 25401,NJBF000074543,407 PROSPECT AVE,Pleasantville,NJ,39.3869132,-74.52557916,RES1,3001,,16,NE,1952,1952,3102,1,1,1312.976832,1312.976832,3505,NO,17.83,31.93,3,1.73,6112,112.218502,122.212618,131.863369,138.17399,I,Above,Gable,0,5701,,24.87976809,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25402,NJBF000075123,107 LYONS CT,Pleasantville,NJ,39.38877299,-74.51808799,RES1,3001,,15,NE,1930,1930,3102,2,1,798.7558346,798.7558346,3505,NO,31.9,45.59,3,-2.57,6106,112.367994,122.325,131.980357,138.292107,I,Above,Flat,0,5701,,38.74397093,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 25403,NJBF000075184,117 S CHESTER AVE,Pleasantville,NJ,39.38898549,-74.51995999,RES1,3001,,15,NE,1910,1910,3102,1,1,970.2430535,970.2430535,3505,NO,9.79,17.35,3,-2.69,6112,112.324558,122.289798,131.942983,138.251925,I,Above,Hip,0,5701,,13.56948928,0,0,,,,1,1,,0.35,nav,1,1910,1,, 25404,NJBF000074614,62 ANSLEY BLVD,Pleasantville,NJ,39.38720049,-74.52273299,RES1,3001,,16,NE,1950,1950,3102,1,1,907.5668872,907.5668872,3505,NO,17.42,23.07,3,0.27,6106,112.279217,122.259646,131.912566,138.22576,I,Above,Hip,0,5701,,20.24647952,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25405,NJBF000074642,48 ANSLEY BLVD,Pleasantville,NJ,39.38731618,-74.52325867,RES1,3001,,NaN,NE,1920,0,3102,2,1,2786.258473,2786.258473,3505,NO,43.14,55.05,3,8.64,6106,112.266456,122.249182,131.901458,138.213509,I,Above,Hip,0,5701,,49.0939164,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25406,NJBF000075147,116 S CHESTER AVE,Pleasantville,NJ,39.38885298,-74.51932415,RES1,3001,,15,NE,1925,1925,3102,1,1,1568.674731,1568.674731,3505,NO,14.19,24.34,3,-0.86,6112,112.339859,122.30238,131.956378,138.266546,I,Above,Flat,0,5701,,19.26626191,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25407,NJBF000075100,119-21 S HAMPDEN CT,Pleasantville,NJ,39.38870393,-74.51921863,RES1,3001,,15,NE,1915,1915,3102,1,1,2751.021159,2751.021159,3505,NO,18.34,24.38,3,0.42,6112,112.343541,122.305788,131.960088,138.270993,I,Above,Gable,0,5701,,21.35948401,0,0,,,,1,1,,0.35,nav,1,1915,1,, 25408,NJBF000074719,208 S HAMPDEN CT,Pleasantville,NJ,39.38755377,-74.51935955,RES1,3001,,16,NE,1945,1945,3102,1,1,1500.719463,1500.719463,3505,NO,21.65,32.03,3,8.01,6106,112.350937,122.315334,131.971006,138.286607,I,Above,Hip,0,5701,,26.83540184,0,0,,,,1,1,,0.03,nav,1,1945,1,, 25409,NJBF000075116,28 E DECATUR AVE,Pleasantville,NJ,39.38875568,-74.52311872,RES1,3001,,16,NE,1969,1969,3102,1,1,2560.962375,2560.962375,3505,NO,12.04,26.28,3,0.33,6112,112.256525,122.236606,131.887034,138.193282,I,Above,Flat,0,5701,,19.15822816,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25410,NJBF000075156,45 E BLACK HORSE PIKE,Pleasantville,NJ,39.38887813,-74.52187213,RES1,3001,,15,NE,1910,1910,3102,2,1,1782.725996,1782.725996,3505,NO,30.6,37.22,3,4.82,6112,112.283107,122.257262,131.908714,138.215958,I,Above,Hip,0,5701,,33.90996322,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 25411,NJBF000074855,59 E DECATUR AVE,Pleasantville,NJ,39.38799457,-74.52224999,RES1,3001,,16,NE,1956,1956,3102,1,1,1130.105159,1130.105159,3505,NO,22.79,36.39,3,6.97,6106,112.2827,122.259834,131.912128,138.222603,I,Above,Gable,0,5701,,29.58849372,0,0,,,,1,1,,0.03,nav,1,1956,1,, 25412,NJBF000075186,108 S HAMPDEN CT,Pleasantville,NJ,39.388994,-74.51847799,RES1,3001,,15,NE,1925,1925,3102,1,1,1661.105315,1661.105315,3505,NO,11.14,24.56,3,-1.29,6106,112.357336,122.315814,131.970483,138.280916,I,Above,Gable,0,5701,,17.85091086,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25413,NJBF000075071,38 E DECATUR AVE,Pleasantville,NJ,39.38862937,-74.52272848,RES1,3001,562,NaN,NE,1912,0,3102,1,1,1707.651536,1707.651536,3505,NO,14.04,25.98,3,-2.9,6112,112.266348,122.244806,131.895779,138.203036,I,Above,Hip,0,5701,,20.01036694,0,0,,,,1,1,,0.35,nav,1,1912,1,, 25414,NJBF000074915,211 S FRANKLIN BLVD,Pleasantville,NJ,39.38816559,-74.52150617,COM1,3003,,NaN,ME,1969,0,3401,1,1,1995.000441,1995.000441,3507,NO,20.44,31.12,1,1.8,6106,112.297673,122.271139,131.92391,138.234555,I,Above,Gable,0,NaN,,25.78051732,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25415,NJBF000074728,219 S CHESTER AVE,Pleasantville,NJ,39.38757255,-74.52075868,RES1,3001,,15,NE,1923,1923,3102,2,1,847.7069236,847.7069236,3505,NO,42.6,47.94,3,4.19,6106,112.319682,122.290489,131.944774,138.258759,I,Above,Gable,0,5701,,45.27413623,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 25416,NJBF000075144,22 E DECATUR AVE,Pleasantville,NJ,39.38884158,-74.52337317,RES1,3001,,15,NE,1900,1900,3102,2,2,1359.578678,1359.578678,3505,NO,41.42,55.49,3,6.32,6112,112.250114,122.231244,131.881313,138.186888,I,Above,Gable,0,5701,,48.45416582,0,1.2,,,,1,1,,0.35,nav,1,1900,2,, 25417,NJBF000075238,102 S HAMPDEN CT,Pleasantville,NJ,39.38916019,-74.51838932,RES1,3001,,15,NE,1920,1920,3102,1,1,1462.608097,1462.608097,3505,NO,23.67,32.44,3,4.95,6106,112.357802,122.315647,131.970188,138.280009,I,Above,Hip,0,5701,,28.05593196,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25418,NJBF000075182,111 S HAMPDEN CT,Pleasantville,NJ,39.38898049,-74.51895349,RES1,3001,,15,NE,1915,1915,3102,2,1,947.9059793,947.9059793,3505,NO,41.71,52.27,3,3.23,6112,112.346933,122.307589,131.961793,138.271808,I,Above,Hip,0,5701,,46.98789171,0,1.2,,,,1,1,,0.35,nav,1,1915,2,, 25419,NJBF000078976,407 MONTCLAIR DR,Pleasantville,NJ,39.40875639,-74.50063973,RES3C,3001,,16,E,1956,1956,3303,1,1,1565.106235,1565.106235,3507,NO,19.39,27.64,1,1.58,6112,112.579771,122.425263,132.077512,138.311567,I,Above,Gable,0,NaN,,23.51163763,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 25420,NJBF000074571,217 LYONS CT,Pleasantville,NJ,39.38705116,-74.51918799,RES1,3001,,16,NE,1954,1954,3102,1,1,1171.965119,1171.965119,3505,NO,18.39,31.19,3,3.44,6106,112.359406,122.323633,131.980129,138.298033,I,Above,Gable,0,5701,,24.78948496,0,0,,,,1,1,,0.03,nav,1,1954,1,, 25421,NJBF000073769,202 E GREENFIELD AVE,Pleasantville,NJ,39.38303968,-74.52404193,RES1,3001,,14,NE,1915,1915,3102,2,1,589.8472057,589.8472057,3505,NO,35.76,42.65,3,7.4,6106,112.289035,122.280204,131.937487,138.266253,I,Above,Gable,0,5701,,39.20362526,0,0,,,,1,1,,0.03,nav,1,1915,2,, 25422,NJBF000075288,102 S CHESTER AVE,Pleasantville,NJ,39.38936349,-74.51925136,RES1,3001,,15,NE,1920,1920,3102,1,1,1728.107752,1728.107752,3505,NO,10.09,16.49,3,-0.57,6112,112.336862,122.298336,131.95173,138.259827,I,Above,Hip,0,5701,,13.29191435,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25423,NJBF000076372,129 CHARLES AVE,Pleasantville,NJ,39.39318005,-74.51651381,RES1,3001,,16,NE,1955,1955,3101,1,1,1150.855912,1150.855912,3505,NO,22.7,36.94,3,4.43,6112,112.363498,122.306734,131.957942,138.252478,I,Above,Gable,0,5701,,29.81648697,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 25424,NJBF000074765,110 GENOA AVENUE,Pleasantville,NJ,39.38770777,-74.51531615,RES1,3001,,28,NE,1906,1906,3102,2,2,1841.023428,1841.023428,3505,NO,33.78,47.62,3,2.79,6106,112.439273,122.385071,132.044659,138.363454,I,Above,Gable,0,5701,,40.70002075,0,0,,,,1,1,,0.03,nav,1,1906,2,, 25425,NJBF000073603,201 FOX PLACE,Pleasantville,NJ,39.38192848,-74.49970957,RES1,3001,,16,NE,1950,1950,3101,1,1,1402.387652,1402.387652,3505,NO,16.56,28.27,3,4.72,6106,112.841784,122.72297,132.406383,138.757427,I,Above,Gable,0,5701,,22.41705522,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 25426,NJBF000074692,109 GENOA AVENUE,Pleasantville,NJ,39.38746461,-74.51603697,RES1,3001,,16,NE,1927,1927,3102,2,1,1576.943823,1576.943823,3505,NO,25.37,35.02,3,1.25,6106,112.425537,122.374886,132.034027,138.353238,I,Above,Gable,0,5701,,30.19585646,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 25427,NJBF000074257,203 TOLEDO AVENUE,Pleasantville,NJ,39.38562311,-74.51321036,RES1,3001,,16,NE,1929,1929,3102,2,1,1863.357653,1863.357653,3505,NO,30.24,36.71,3,5.95,6106,112.505679,122.444196,132.10853,138.437961,I,Above,Gable,0,5701,,33.47423938,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 25428,NJBF000074301,204 FLORENCE AVENUE,Pleasantville,NJ,39.38582383,-74.51443602,RES1,3001,,16,NE,1930,1930,3102,2,1,1666.025116,1666.025116,3505,NO,29.33,37.63,3,7.04,6106,112.476526,122.420399,132.083216,138.410815,I,Above,Gable,0,5701,,33.47711612,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 25429,NJBF000074394,7048 BLACK HORSE PIKE,Pleasantville,NJ,39.38620502,-74.50877204,COM1,3003,30,NaN,ME,1969,0,3401,2,1,7788.675119,7788.675119,3507,NO,29.55,34.98,1,2.9,6106,112.598585,122.51668,132.185153,138.514841,I,Above,Flat,0,NaN,,32.26923105,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25430,NJBF000073971,1620 BAY DRIVE,Pleasantville,NJ,39.38425234,-74.507272,RES3C,3001,,16,E,1940,1940,3303,2,1,1995.666019,1995.666019,3507,NO,27.76,35.42,1,2.52,6106,112.650814,122.563876,132.236196,138.575155,I,Above,Gable,0,NaN,,31.58693137,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 25431,NJBF000073649,7089 BLACK HORSE PIKE,Pleasantville,NJ,39.38224239,-74.49981396,RES1,3001,,16,NE,1935,1935,3101,1,1,1398.671161,1398.671161,3505,NO,19.34,31.23,3,0.97,6106,112.836291,122.717791,132.400778,138.750404,I,Above,Flat,0,5701,,25.28752808,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 25432,NJBF000074780,108 TOULON AVENUE,Pleasantville,NJ,39.387767,-74.51631399,RES1,3001,,16,NE,1965,1965,3102,1,1,1697.564714,1697.564714,3505,NO,14.39,23.86,3,3.81,6106,112.416586,122.36683,132.025304,138.342981,I,Above,Hip,0,5701,,19.12560152,0,0,,,,1,1,,0.03,nav,1,1965,1,, 25433,NJBF000074191,206 CORDOVA AVENUE,Pleasantville,NJ,39.38530508,-74.51379708,RES1,3001,,16,NE,1925,1925,3102,2,1,1753.946502,1753.946502,3505,NO,35,48.83,3,6.96,6106,112.495679,122.437156,132.101256,138.431604,I,Above,Hip,0,5701,,41.91447284,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 25434,NJBF000081274,NEW RD,Pleasantville,NJ,39.41843056,-74.50907168,EDU1,3003,,NaN,E,1969,0,3401,2,1,7887.381656,7887.381656,3507,NO,24.43,31.08,1,1,6112,112.328612,122.176218,131.80377,137.99557,I,Above,Flat,0,NaN,,27.75467887,0,0,,,,1,1,,1,nav,1,1969,2,, 25435,NJBF000081392,106 MEADOWVIEW AVE,Pleasantville,NJ,39.41900847,-74.50860812,RES1,3001,,17,NE,1985,1985,3101,1,1,1387.345188,1387.345188,3505,NO,19.08,31.59,3,6.21,6112,112.334401,122.178412,131.805965,137.995464,I,Above,Flat,0,5701,,25.33348174,0,0,,,,1,1,,0.35,nav,1,1985,1,, 25436,NJBF000081369,104 MEADOWVIEW AVE,Pleasantville,NJ,39.418887,-74.50881,RES1,3001,,17,NE,1965,1965,3101,1,1,673.3007602,673.3007602,3505,NO,23.19,28.67,3,5.82,6112,112.330983,122.176113,131.803503,137.993451,I,Above,Gable,0,5701,,25.93380286,0,0,,,,1,1,,0.35,nav,1,1965,1,, 25437,NJBF000074896,100 GENOA AVENUE,Pleasantville,NJ,39.38810777,-74.51509106,RES1,3001,,27,NE,1906,1906,3102,2,1,2034.885981,2034.885981,3505,NO,35.11,45.84,3,7.65,6106,112.44055,122.384853,132.044176,138.36145,I,Above,Gable,0,5701,,40.47780375,0,0,,,,1,1,,0.03,nav,1,1906,2,, 25438,NJBF000081418,119 MEADOWVIEW AVE,Pleasantville,NJ,39.41912124,-74.50718793,RES1,3001,,17,NE,1961,1961,3101,2,1,1894.578686,1894.578686,3505,NO,38.25,44.89,3,0.78,6112,112.36351,122.202204,131.831827,138.021252,I,Above,Gable,0,5701,,41.56881873,0,1.1,,,,1,1,,0.35,nav,1,1961,2,, 25439,NJBF000077996,545 ABSECON BLVD,Pleasantville,NJ,39.40219303,-74.49286987,RES4,3001,530,NaN,ME,1969,0,3401,2,1,5745.514064,5745.514064,3507,NO,37.89,43.57,1,-0.33,6106,112.801696,122.631914,132.303305,138.563467,I,Above,Flat,0,NaN,,40.72890427,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25440,NJBF000081148,22D OYSTER BAY RD,Pleasantville,NJ,39.41776746,-74.51449083,RES1,3001,,35,NE,1992,1992,3101,1,1,5640.82259,5640.82259,3505,NO,14.5,20.89,3,0.32,6110,112.218942,122.088076,131.708227,137.900418,I,Above,Gable,0,5701,,17.69813608,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25441,NJBF000081219,22D OYSTER BAY RD,Pleasantville,NJ,39.41810749,-74.51160599,RES1,3001,,35,NE,1992,1992,3101,1,1,3637.464539,3637.464539,3505,NO,16.79,24.9,3,4.69,6110,112.277438,122.135095,131.759171,137.951365,I,Above,Gable,0,5701,,20.84109297,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25442,NJBF000081241,22D OYSTER BAY RD,Pleasantville,NJ,39.41826861,-74.51331079,RES1,3001,,35,NE,1992,1992,3101,1,1,5822.801379,5822.801379,3505,NO,19.22,31.32,3,7.14,6110,112.240422,122.103559,131.724835,137.915527,I,Above,Gable,0,5701,,25.27019466,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25443,NJBF000076814,136 COLLINS AVE,Pleasantville,NJ,39.39489217,-74.51442447,RES1,3001,,15,NE,1925,1925,3101,2,1,1012.712335,1012.712335,3505,NO,25.58,40.3,3,-2.13,6112,112.39465,122.325746,131.97706,138.265948,I,Above,Flat,0,5701,,32.94140291,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 25444,NJBF000076903,131 E MERION AVE,Pleasantville,NJ,39.39530431,-74.51376366,RES1,3001,,16,NE,1972,1972,3101,1,1,1210.066241,1210.066241,3505,NO,19.18,33.29,3,7.74,6110,112.4056,122.333097,131.984642,138.272233,I,Above,Gable,0,5701,,26.23334018,0,0,,,,1,1,,0.35,nav,1,1972,1,, 25445,NJBF000075880,18 N FRANKLIN BLVD,Pleasantville,NJ,39.38932799,-74.5173795,IND2,3001,959,NaN,ME,1969,0,3401,3,1,11321.99566,11321.99566,3507,NO,51.04,63.94,1,2.39,6106,112.378634,122.331679,131.987043,138.297119,I,Above,Flat,0,NaN,,57.49427471,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25446,NJBF000077558,724 CLEARVIEW AVE,Pleasantville,NJ,39.39944953,-74.50939096,RES1,3001,,15,NE,1930,1930,3101,1,1,1707.282736,1707.282736,3505,NO,23.92,29.04,3,5.77,6106,112.466132,122.367149,132.01872,138.290983,I,Above,Gable,0,5701,,26.4804356,0,0,,,,1,1,,0.03,nav,1,1930,1,, 25447,NJBF000076894,135 E MERION AVE,Pleasantville,NJ,39.39522634,-74.51352014,RES1,3001,,16,NE,1960,1960,3101,1,1,2083.263543,2083.263543,3505,NO,10.02,22.74,3,-2.43,6106,112.411629,122.338215,131.990152,138.278235,I,Above,Gable,0,5701,,16.37693396,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 25448,NJBF000076872,135 E MERION AVE,Pleasantville,NJ,39.39513695,-74.51366081,RES1,3001,,16,NE,1960,1960,3101,1,1,765.0271359,765.0271359,3505,NO,16.33,30.88,3,-1.88,6106,112.409299,122.336654,131.988541,138.27691,I,Above,Gable,0,5701,,23.60642285,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 25449,NJBF000077849,106 CHATHAM AVE,Pleasantville,NJ,39.40121174,-74.51022973,RES1,3001,,16,NE,1952,1952,3101,1,1,915.1155203,915.1155203,3505,NO,20.15,26.98,3,7.36,6112,112.433283,122.33401,131.982208,138.24661,I,Above,Flat,0,5701,,23.56604667,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25450,NJBF000077360,140 LORAINE AVE,Pleasantville,NJ,39.39810718,-74.51122043,RES1,3001,,15,NE,1880,1880,3101,2,1,659.9636053,659.9636053,3505,NO,27.73,38.78,3,6,6112,112.437478,122.348816,131.999792,138.276945,I,Above,Gable,0,5701,,33.25491042,0,1.2,,,,1,1,,0.35,nav,1,1880,2,, 25451,NJBF000074114,39 E EDGEWATER AVE,Pleasantville,NJ,39.38495659,-74.52533827,RES1,3001,,15,NE,1920,1920,3102,2,1,1288.727817,1288.727817,3505,NO,25.61,38.6,3,4.59,6110,112.241932,122.237306,131.890953,138.209971,I,Above,Gable,0,5701,,32.10656364,0,0,,,,1,1,,0.35,nav,1,1920,2,, 25452,NJBF000075456,300 E WASHINGTON AVE,Pleasantville,NJ,39.38993551,-74.51616135,IND2,3001,,NaN,ME,1969,0,3401,1,1,4718.286524,4718.286524,3507,NO,12.87,22,1,1.47,6106,112.400111,122.346824,132.002686,138.311271,I,Above,Gable,0,NaN,,17.43351359,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25453,NJBF000075477,300 E WASHINGTON AVE,Pleasantville,NJ,39.389988,-74.51670311,IND2,3001,,NaN,ME,1969,0,3401,1,1,12766.43868,12766.43868,3507,NO,13.69,23.09,1,1.19,6106,112.387647,122.336719,131.991935,138.299828,I,Above,Flat,0,NaN,,18.38829792,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25454,NJBF000075275,300 E WASHINGTON AVE,Pleasantville,NJ,39.38932799,-74.5173795,IND2,3001,,NaN,ME,1969,0,3401,2,1,5473.987399,5473.987399,3507,NO,24.52,29.52,1,0.9,6106,112.378634,122.331679,131.987043,138.297119,I,Above,Flat,0,NaN,,27.02154328,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25455,NJBF000075226,300 E WASHINGTON AVE,Pleasantville,NJ,39.38911603,-74.51673373,IND2,3001,,NaN,ME,1969,0,3401,3,1,12990.45726,12990.45726,3507,NO,33.9,41.62,1,0.52,6106,112.394874,122.345292,132.001606,138.313171,I,Above,Flat,0,NaN,,37.7585284,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25456,NJBF000075271,300 E WASHINGTON AVE,Pleasantville,NJ,39.38931601,-74.516474,IND2,3001,,NaN,ME,1969,0,3401,2,1,14790.62277,14790.62277,3507,NO,33.49,43.78,1,2.29,6106,112.398811,122.347787,132.004116,138.315063,I,Above,Flat,0,NaN,,38.63498473,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25457,NJBF000074785,303 E BLACK HORSE PIKE,Pleasantville,NJ,39.38777317,-74.51922798,RES1,3001,,15,NE,1920,1920,3102,1,1,800.2597528,800.2597528,3505,NO,11.68,21.15,3,1.16,6106,112.351853,122.315368,131.970884,138.285702,I,Above,Hip,0,5701,,16.4109906,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 25458,NJBF000074825,303 E BLACK HORSE PIKE,Pleasantville,NJ,39.38788936,-74.51912188,COM1,3003,,15,ME,1920,1920,3401,1,1,1477.916461,1477.916461,3507,NO,14.44,26.19,1,0.28,6106,112.353141,122.316022,131.971492,138.285931,I,Above,Gable,0,NaN,,20.31040427,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 25459,NJBF000076407,144 CHARLES AVE,Pleasantville,NJ,39.39328827,-74.51585389,RES1,3001,,15,NE,1925,1925,3101,1,1,1375.393095,1375.393095,3505,NO,12.69,18.75,3,-2.99,6112,112.377097,122.317243,131.969045,138.263662,I,Above,Gable,0,5701,,15.71657759,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25460,NJBF000078631,1124 PENNSYLVANIA AVE,Pleasantville,NJ,39.40659517,-74.50304859,RES3C,3001,,NaN,E,1969,0,3303,3,1,1092.150514,1092.150514,3507,NO,31.5,42.59,1,-0.02,6112,112.545177,122.405041,132.05636,138.299597,I,Above,Gable,0,NaN,,37.04557928,0,0,,,,1,1,,0.35,nav,1,1969,3,, 25461,NJBF000075022,101 E BLACK HORSE PIKE,Pleasantville,NJ,39.38847066,-74.52079462,COM1,3003,,NaN,ME,1969,0,3401,2,1,2182.700053,2182.700053,3507,NO,28.48,38.97,1,2.6,6110,112.310689,122.280466,131.933516,138.243698,I,Above,Hip,0,NaN,,33.72247389,0,0,,,,1,1,,0.35,nav,1,1969,2,, 25462,NJBF000074933,206 S FRANKLIN BLVD,Pleasantville,NJ,39.3882125,-74.520917,RES1,3001,,15,NE,1920,1920,3102,2,1,951.4119756,951.4119756,3505,NO,39.89,50.07,3,7.24,6110,112.310325,122.281015,131.934292,138.245417,I,Above,Hip,0,5701,,44.97830496,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 25463,NJBF000073006,132 PLAZA PL,Pleasantville,NJ,39.37642466,-74.53173002,RES1,3001,,16,NE,1958,1958,3101,1,1,1530.242871,1530.242871,3505,NO,18.46,26.38,3,2.66,6112,112.182064,122.214725,131.874942,138.218022,I,Above,Gable,0,5701,,22.41991553,0,0,,,,1,1,,0.35,nav,1,1958,1,, 25464,NJBF000077659,801 CLEARVIEW AVE,Pleasantville,NJ,39.40018032,-74.50937631,RES1,3001,,15,NE,1960,1960,3101,1,1,1134.12737,1134.12737,3505,NO,12.21,18.59,3,-1.83,6112,112.460376,122.359819,132.010471,138.279626,I,Above,Gable,0,5701,,15.39780495,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 25465,NJBF000077791,118 CHATHAM AVE,Pleasantville,NJ,39.40089982,-74.50922953,RES1,3001,,16,NE,1952,1952,3101,1,1,563.303835,563.303835,3505,NO,17.7,24.65,3,2.94,6112,112.457597,122.354912,132.004828,138.270971,I,Above,Gable,0,5701,,21.17746858,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 25466,NJBF000072960,141 PLAZA PL,Pleasantville,NJ,39.37600017,-74.53177139,RES1,3001,,15,NE,1925,1925,3101,1,1,1793.501503,1793.501503,3505,NO,20.75,29.48,3,7.71,6106,112.185511,122.218497,131.879222,138.223925,I,Above,Gable,0,5701,,25.11442701,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25467,NJBF000075837,240 OLD TURNPIKE,Pleasantville,NJ,39.39086149,-74.51446949,COM1,3003,,NaN,ME,1969,0,3401,2,1,16550.95393,16550.95393,3507,NO,28.98,38.2,1,-0.36,6106,112.42917,122.367018,132.02353,138.329539,I,Above,Flat,0,NaN,,33.58932089,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25468,NJBF000078038,850 N FRANKLIN BLVD,Pleasantville,NJ,39.40248797,-74.50927274,COM1,3001,,NaN,ME,1969,0,3401,1,1,13400.62163,13400.62163,3507,NO,12.77,24.45,1,1.78,6112,112.443679,122.337651,131.985457,138.244822,I,Above,Flat,0,NaN,,18.6104231,0,0,,,,1,1,,1,nav,1,1969,1,, 25469,NJBF000078881,301 CEDARCREST AVE,Pleasantville,NJ,39.40812019,-74.5016533,RES3C,3001,,16,E,1997,1997,3303,1,1,2169.835606,2169.835606,3507,NO,19.73,28.3,1,0.85,6112,112.563062,122.41392,132.065428,138.302215,I,Above,Gable,0,NaN,,24.01266635,0,1.1,,,,1,1,,0.35,nav,1,1997,1,, 25470,NJBF000079011,100 W LEEDS AVE,Pleasantville,NJ,39.40899134,-74.5096348,EDU1,3003,,NaN,E,1969,0,3401,2,1,50057.68177,50057.68177,3507,NO,33.88,45.42,1,2.93,6112,112.384911,122.263856,131.902681,138.134312,I,Above,Hip,0,NaN,,39.65172431,0,0,,,,1,1,,1,nav,1,1969,2,, 25471,NJBF000078283,65 E THOMPSON AVE,Pleasantville,NJ,39.4044086,-74.5063205,RES3C,3001,,16,E,1965,1965,3303,1,1,1715.093633,1715.093633,3507,NO,18.23,24.49,1,2.6,6112,112.492102,122.369857,132.019239,138.271318,I,Above,Gable,0,NaN,,21.35894017,0,0,,,,1,1,,0.35,nav,1,1965,1,, 25472,NJBF000073118,37 E ASHLAND AVE,Pleasantville,NJ,39.37790629,-74.53322719,RES1,3001,,15,NE,1927,1927,3101,1,1,1657.208351,1657.208351,3505,NO,25.66,36.72,3,7.69,6112,112.133312,122.172827,131.830242,138.164517,I,Above,Gable,0,5701,,31.19106551,0,1.1,,,,1,1,,0.35,nav,1,1927,1,, 25473,NJBF000074920,201 E BLACK HORSE PIKE,Pleasantville,NJ,39.38818047,-74.51995003,COM1,3003,959,NaN,ME,1969,0,3401,2,1,1924.648353,1924.648353,3507,NO,28.91,40.92,1,1.5,6106,112.332095,122.298389,131.952656,138.26499,I,Above,Hip,0,NaN,,34.91496248,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 25474,NJBF000074860,201 E BLACK HORSE PIKE,Pleasantville,NJ,39.388003,-74.51986649,COM1,3003,959,NaN,ME,1969,0,3401,2,1,527.4323153,527.4323153,3507,NO,37.8,51.31,1,1.88,6106,112.335578,122.30172,131.956304,138.269473,I,Above,Gable,0,NaN,,44.55533823,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 25475,NJBF000074856,204 S CHESTER AVE,Pleasantville,NJ,39.38799749,-74.52006249,RES1,3001,,15,NE,1910,1910,3102,1,1,1168.187673,1168.187673,3505,NO,12.25,26.31,3,-1.34,6106,112.331281,122.29833,131.952729,138.265711,I,Above,Hip,0,5701,,19.28204855,0,0,,,,1,1,,0.03,nav,1,1910,1,, 25476,NJBF000073043,131 E ASHLAND AVE,Pleasantville,NJ,39.37684485,-74.53153765,RES1,3001,,16,NE,1922,1922,3101,2,1,1109.595656,1109.595656,3505,NO,30.44,39.75,3,1.2,6110,112.182092,122.21366,131.873463,138.215227,I,Above,Gable,0,5701,,35.09199009,0,1.1,,,,1,1,,0.35,nav,1,1922,2,, 25477,NJBF000074313,25 E BAYVIEW AVE,Pleasantville,NJ,39.38587289,-74.5253629,RES1,3001,,15,NE,1915,1915,3102,2,1,1256.750804,1256.750804,3505,NO,30.02,39.81,3,5.04,6110,112.232861,122.227282,131.879658,138.194865,I,Above,Hip,0,5701,,34.91447383,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 25478,NJBF000074278,25 E BAYVIEW AVE,Pleasantville,NJ,39.385711,-74.525455,RES1,3001,,15,NE,1915,1915,3102,2,1,596.0023529,596.0023529,3505,NO,37.54,45.8,3,1.13,6112,112.232308,122.227359,131.879879,138.195624,I,Above,Gable,0,5701,,41.6676784,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 25479,NJBF000074283,27 E BAYVIEW AVE,Pleasantville,NJ,39.38573199,-74.525332,RES1,3001,,15,NE,1898,1898,3102,2,1,509.5356681,509.5356681,3505,NO,38.24,53.09,3,6.53,6110,112.234856,122.229301,131.881898,138.197729,I,Above,Hip,0,5701,,45.66352075,0,1.1,,,,1,1,,0.35,nav,1,1898,2,, 25480,NJBF000074322,108 E BAYVIEW AVE,Pleasantville,NJ,39.38589726,-74.52407014,RES1,3001,,15,NE,1987,1987,3102,1,1,1959.652364,1959.652364,3505,NO,16.15,29.57,3,2.36,6106,112.261459,122.24976,131.903232,138.220112,I,Above,Gable,0,5701,,22.86240831,0,0,,,,1,1,,0.03,nav,1,1987,1,, 25481,NJBF000073080,103 E ASHLAND AVE,Pleasantville,NJ,39.37737153,-74.53244039,RES1,3001,,15,NE,1932,1932,3101,2,1,2068.287263,2068.287263,3505,NO,31.92,43.86,3,6.54,6110,112.15642,122.192263,131.850845,138.188778,I,Above,Hip,0,5701,,37.8861283,0,0.1,,,,1,1,,0.35,nav,1,1932,2,, 25482,NJBF000074291,31 E BAYVIEW AVE,Pleasantville,NJ,39.38575821,-74.5251095,RES1,3001,,15,NE,1910,1910,3102,1,1,1585.069006,1585.069006,3505,NO,18.78,32.38,3,3.68,6110,112.239588,122.232948,131.885702,138.201738,I,Above,Hip,0,5701,,25.58112897,0,0,,,,1,1,,0.35,nav,1,1910,1,, 25483,NJBF000074265,27 E BAYVIEW AVE,Pleasantville,NJ,39.38564985,-74.52529924,RES1,3001,,15,NE,1898,1898,3102,2,1,512.7819526,512.7819526,3505,NO,23.1,32.33,3,1.65,6110,112.236352,122.230739,131.883476,138.199692,I,Above,Gable,0,5701,,27.71733756,0,1.1,,,,1,1,,0.35,nav,1,1898,2,, 25484,NJBF000073208,1201 CLEMATIS AVE,Pleasantville,NJ,39.37899192,-74.531526,RES1,3001,,16,NE,1969,1969,3101,1,1,2160.011835,2160.011835,3505,NO,12.91,19.02,3,0.71,6112,112.16074,122.191235,131.848268,138.181447,I,Above,Hip,0,5701,,15.9662269,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25485,NJBF000079349,1400 OCEAN AVE,Pleasantville,NJ,39.41075717,-74.49952748,RES3C,3001,,16,E,1960,1960,3303,1,1,1642.03946,1642.03946,3507,NO,19.43,32.63,1,2.8,6112,112.58787,122.424196,132.075742,138.301217,I,Above,Gable,0,NaN,,26.02643016,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25486,NJBF000079917,1228 N NEW RD,Pleasantville,NJ,39.41332011,-74.51158321,RES1,3001,,NaN,NE,1969,0,3101,1,1,9001.135841,9001.135841,3505,NO,14,24.29,3,-2.97,6112,112.311396,122.184858,131.815187,138.027697,I,Above,Gable,0,5701,,19.14770815,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25487,NJBF000079621,1515 SIXTH AVE,Pleasantville,NJ,39.4120114,-74.49789669,RES3C,3001,,16,E,1989,1989,3303,1,1,1186.982415,1186.982415,3507,NO,17.91,31.79,1,2.39,6112,112.612909,122.440077,132.092653,138.312593,I,Above,Flat,0,NaN,,24.84621341,0,0,,,,1,1,,0.35,nav,1,1989,1,, 25488,NJBF000073906,313 E BAYVIEW AVE,Pleasantville,NJ,39.38388849,-74.5203995,RES1,3001,,NaN,NE,1969,0,3102,2,1,533.2305238,533.2305238,3505,NO,35.9,42.52,3,-2.71,6106,112.36225,122.335467,131.994862,138.324747,I,Above,Flat,0,5701,,39.20972734,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25489,NJBF000074726,28 ANSLEY BLVD,Pleasantville,NJ,39.38757191,-74.52392194,RES1,3001,,16,NE,1954,1954,3102,2,1,1681.984511,1681.984511,3505,NO,40.83,55.38,3,3.97,6110,112.249378,122.234851,131.886169,138.196306,I,Above,Hip,0,5701,,48.10421735,0,1.1,,,,1,1,,0.35,nav,1,1954,2,, 25490,NJBF000073455,137 FRAMBES AVE,Pleasantville,NJ,39.38084862,-74.52731837,RES1,3001,,16,NE,1960,1960,3102,1,1,2013.894377,2013.894377,3505,NO,10.33,16.13,3,-1.25,6112,112.236923,122.245608,131.903136,138.236047,I,Above,Gable,0,5701,,13.23110308,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 25491,NJBF000073647,329 OAKLAND AVE,Pleasantville,NJ,39.38223378,-74.52042884,RES1,3001,,16,NE,2015,2015,3102,1,1,1182.592354,1182.592354,3505,NO,15.44,25.42,3,-2.69,6106,112.377576,122.352336,132.013763,138.350583,I,Above,Gable,0,5701,,20.43172743,0,0,,,,1,1,,0.03,nav,1,2015,1,, 25492,NJBF000074303,75 E WRIGHT ST,Pleasantville,NJ,39.38583061,-74.52324087,RES1,3001,,16,NE,1955,1955,3102,1,1,2003.034734,2003.034734,3505,NO,13.44,26.84,3,1.33,6106,112.280544,122.265032,131.919331,138.237576,I,Above,Gable,0,5701,,20.14034658,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25493,NJBF000074336,73 E WRIGHT ST,Pleasantville,NJ,39.385946,-74.5233865,RES1,3001,,16,NE,1963,1963,3102,1,1,1169.765997,1169.765997,3505,NO,20.44,31.27,3,4.78,6106,112.276223,122.26126,131.915274,138.232851,I,Above,Gable,0,5701,,25.85511604,0,0,,,,1,1,,0.03,nav,1,1963,1,, 25494,NJBF000075621,12 N HAMPDEN CT,Pleasantville,NJ,39.3905347,-74.51746408,RES1,3001,,15,NE,1955,1955,3102,1,1,1469.519853,1469.519853,3505,NO,23.05,34.94,3,8.26,6106,112.365892,122.317584,131.971277,138.276167,I,Above,Gable,0,5701,,28.99135921,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25495,NJBF000075601,8 N HAMPDEN CT,Pleasantville,NJ,39.39047091,-74.51753922,RES1,3001,,15,NE,1920,1920,3102,1,1,1283.997267,1283.997267,3505,NO,17.36,28.37,3,-0.15,6106,112.364806,122.31693,131.970628,138.27572,I,Above,Gable,0,5701,,22.86408376,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25496,NJBF000073618,134 RYON AVE,Pleasantville,NJ,39.38204148,-74.52661678,RES1,3001,,15,NE,1927,1927,3102,2,1,918.1886487,918.1886487,3505,NO,23.33,29.68,3,0.59,6112,112.241044,122.245402,131.901906,138.231031,I,Above,Gable,0,5701,,26.50752648,0,0,,,,1,1,,0.35,nav,1,1927,2,, 25497,NJBF000079491,502 E CALIFORNIA AVE,Pleasantville,NJ,39.41137062,-74.49760635,RES3C,3001,,33,E,1988,1988,3303,2,1,4077.903661,4077.903661,3507,NO,35.18,43.32,1,2.83,6106,112.624124,122.451899,132.105672,138.328266,I,Above,Gable,0,NaN,,39.25131358,0,0,,,,1,1,,0.03,nav,1,1988,2,, 25498,NJBF000076705,145 COLLINS AVE,Pleasantville,NJ,39.39446281,-74.5143027,RES1,3001,,15,NE,1935,1935,3101,1,1,1491.472444,1491.472444,3505,NO,18.63,32.41,3,2.71,6106,112.401015,122.33235,131.984371,138.275167,I,Above,Gable,0,5701,,25.52295697,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 25499,NJBF000076666,143 COLLINS AVE,Pleasantville,NJ,39.39426561,-74.51458272,RES1,3001,,43,NE,1940,1940,3101,2,3,1735.915917,1735.915917,3505,NO,43.16,49.61,3,7.75,6106,112.396566,122.329464,131.98142,138.272853,I,Above,Gable,0,5701,,46.38864154,0,0,,,,1,1,,0.03,nav,1,1940,2,, 25500,NJBF000073122,48 E ASHLAND AVE,Pleasantville,NJ,39.37798223,-74.53256242,RES1,3001,,16,NE,1948,1948,3101,1,1,1137.935211,1137.935211,3505,NO,17.87,32.8,3,6.42,6110,112.147521,122.183692,131.841406,138.17667,I,Above,Gable,0,5701,,25.33273371,0,0,,,,1,1,,0.35,nav,1,1948,1,, 25501,NJBF000073860,218 OAKLAND AVE,Pleasantville,NJ,39.38360677,-74.52263717,RES1,3001,,14,NE,1925,1925,3102,1,1,730.8197743,730.8197743,3505,NO,22.62,28.99,3,7.96,6106,112.314992,122.298984,131.956738,138.28503,I,Above,Flat,0,5701,,25.80634078,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25502,NJBF000073656,342 OAKLAND AVE,Pleasantville,NJ,39.38230899,-74.51967399,RES1,3001,,NaN,NE,1969,0,3102,1,1,951.792277,951.792277,3505,NO,22.07,29.67,3,5.56,6106,112.393708,122.364865,132.026876,138.364274,I,Above,Hip,0,5701,,25.87021714,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25503,NJBF000073820,322 E EDGEWATER AVE,Pleasantville,NJ,39.38337781,-74.52005205,RES1,3001,,15,NE,1910,1910,3102,2,1,1867.135934,1867.135934,3505,NO,40.06,53.2,3,1.19,6106,112.374894,122.346947,132.007297,138.339739,I,Above,Hip,0,5701,,46.62984208,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25504,NJBF000073810,328 E EDGEWATER AVE,Pleasantville,NJ,39.38330865,-74.51988183,RES1,3001,,14,NE,1915,1915,3102,2,1,896.5584312,896.5584312,3505,NO,27.21,36.53,3,1.57,6106,112.379353,122.350671,132.011262,138.344192,I,Above,Flat,0,5701,,31.87229828,0,0,,,,1,1,,0.03,nav,1,1915,2,, 25505,NJBF000078954,144 W LINDLEY AVE,Pleasantville,NJ,39.40861713,-74.51223978,RES1,3001,,16,NE,1994,1994,3101,2,1,596.6857826,596.6857826,3505,NO,31.65,45.34,3,5.31,6112,112.331812,122.221874,131.857521,138.089618,I,Above,Gable,0,5701,,38.49670524,0,1.2,,,,1,1,,0.35,nav,1,1994,2,, 25506,NJBF000073847,222 OAKLAND AVE,Pleasantville,NJ,39.38354145,-74.52243931,RES1,3001,,NaN,NE,1969,0,3102,2,1,569.8232021,569.8232021,3505,NO,25.61,36.83,3,0.36,6106,112.320045,122.303164,131.961176,138.29,I,Above,Gable,0,5701,,31.21864942,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 25507,NJBF000073762,125 E GREENFIELD AVE,Pleasantville,NJ,39.38300408,-74.52485668,RES1,3001,,14,NE,1900,1900,3102,2,1,841.3386092,841.3386092,3505,NO,39.54,49.91,3,7.1,6106,112.271161,122.266241,131.922893,138.250661,I,Above,Gable,0,5701,,44.72108362,0,0,,,,1,1,,0.03,nav,1,1900,2,, 25508,NJBF000073862,125 OAKLAND AVE,Pleasantville,NJ,39.383631,-74.52415949,RES1,3001,,14,NE,1925,1925,3102,1,1,771.3281139,771.3281139,3505,NO,23.86,35.92,3,5.88,6106,112.28077,122.27194,131.928354,138.254506,I,Above,Flat,0,5701,,29.88537159,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25509,NJBF000073819,307 E EDGEWATER AVE,Pleasantville,NJ,39.38337556,-74.5210629,RES1,3001,,15,NE,1925,1925,3102,1,1,2046.192125,2046.192125,3505,NO,23.88,33.96,3,7.57,6106,112.352349,122.329143,131.988582,138.319826,I,Above,Gable,0,5701,,28.91737372,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25510,NJBF000073848,214 OAKLAND AVE,Pleasantville,NJ,39.38354994,-74.52297361,RES1,3001,,15,NE,1927,1927,3102,2,1,934.8444308,934.8444308,3505,NO,28.32,35.16,3,2.49,6106,112.308012,122.293648,131.951183,138.279271,I,Above,Gable,0,5701,,31.7389944,0,0,,,,1,1,,0.03,nav,1,1927,2,, 25511,NJBF000073777,119 E GREENFIELD AVE,Pleasantville,NJ,39.38309192,-74.52513815,RES1,3001,,15,NE,1915,1915,3102,2,1,786.2108215,786.2108215,3505,NO,32.83,41,3,-1.53,6112,112.264036,122.260374,131.916679,138.24368,I,Above,Gable,0,5701,,36.91494842,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 25512,NJBF000073705,108 E PARK AVE,Pleasantville,NJ,39.382611,-74.52585554,RES1,3001,,15,NE,1915,1915,3102,2,1,1144.554498,1144.554498,3505,NO,32.22,44.33,3,5.98,6112,112.252587,122.252796,131.909152,138.237084,I,Above,Gable,0,5701,,38.27348907,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 25513,NJBF000074175,117 E BAYVIEW AVE,Pleasantville,NJ,39.38522656,-74.52364507,RES1,3001,,16,NE,1995,1995,3102,1,1,1420.648553,1420.648553,3505,NO,24.58,35.91,3,5.13,6106,112.277174,122.26425,131.918997,138.239222,I,Above,Gable,0,5701,,30.24658226,0,0,,,,1,1,,0.03,nav,1,1995,1,, 25514,NJBF000073857,310 E EDGEWATER AVE,Pleasantville,NJ,39.3835925,-74.52069399,RES1,3001,,13,NE,1915,1915,3102,1,1,530.6517941,530.6517941,3505,NO,12.03,19.87,3,0.04,6106,112.358508,122.333377,131.992876,138.323658,I,Above,Flat,0,5701,,15.95130052,0,0,,,,1,1,,0.03,nav,1,1915,1,, 25515,NJBF000073657,137 E PARK AVE,Pleasantville,NJ,39.38232054,-74.52625418,RES1,3001,,15,NE,1925,1925,3102,1,1,2429.263516,2429.263516,3505,NO,23.29,36.43,3,8.13,6112,112.24647,122.248843,131.905264,138.233792,I,Above,Gable,0,5701,,29.85956941,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25516,NJBF000073937,118 OAKLAND AVE,Pleasantville,NJ,39.3841081,-74.52436816,RES1,3001,,43,NE,1920,1920,3102,2,2,1860.670399,1860.670399,3505,NO,30.68,37.15,3,6.33,6110,112.271572,122.263259,131.918867,138.242753,I,Above,Gable,0,5701,,33.91359934,0,0,,,,1,1,,0.35,nav,1,1920,2,, 25517,NJBF000074231,107 E BAYVIEW AVE,Pleasantville,NJ,39.38547527,-74.52417999,RES1,3001,,15,NE,1930,1930,3102,2,1,1016.143258,1016.143258,3505,NO,23.75,38.46,3,2.31,6106,112.262929,122.252243,131.906188,138.224668,I,Above,Gable,0,5701,,31.10144226,0,0,,,,1,1,,0.03,nav,1,1930,2,, 25518,NJBF000079290,7 FOX RUN,Pleasantville,NJ,39.41051166,-74.5063848,RES3C,3001,,35,E,1983,1983,3303,2,1,4771.340933,4771.340933,3507,NO,37.73,44.94,1,-0.68,6112,112.443035,122.305411,131.946987,138.173114,I,Above,Gable,0,NaN,,41.33638628,0,0,,,,1,1,,0.35,nav,1,1983,2,, 25519,NJBF000079330,7 FOX RUN,Pleasantville,NJ,39.41067113,-74.50683582,RES3C,3001,,35,E,1983,1983,3303,2,1,4469.167552,4469.167552,3507,NO,21.05,33.24,1,-0.13,6112,112.432182,122.295806,131.936518,138.161869,I,Above,Gable,0,NaN,,27.14706098,0,0,,,,1,1,,0.35,nav,1,1983,2,, 25520,NJBF000079396,7 FOX RUN,Pleasantville,NJ,39.41096986,-74.50707766,RES3C,3001,,35,E,1983,1983,3303,2,1,5653.371747,5653.371747,3507,NO,22.14,31.62,1,0.16,6112,112.424753,122.288441,131.928418,138.152443,I,Above,Gable,0,NaN,,26.88233919,0,0,,,,1,1,,0.35,nav,1,1983,2,, 25521,NJBF000073873,306 E EDGEWATER AVE,Pleasantville,NJ,39.38369197,-74.52098661,RES1,3001,,NaN,NE,1969,0,3102,2,1,1320.140086,1320.140086,3505,NO,39.21,48.26,3,3.83,6106,112.35101,122.327161,131.98627,138.316278,I,Above,Gable,0,5701,,43.73268513,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25522,NJBF000073985,129 E EDGEWATER AVE,Pleasantville,NJ,39.38430377,-74.52364621,RES1,3001,,15,NE,1925,1925,3102,1,1,2062.221056,2062.221056,3505,NO,12.15,22.36,3,-2.99,6106,112.285836,122.273907,131.929876,138.253933,I,Above,Gable,0,5701,,17.25041756,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25523,NJBF000073852,127 OAKLAND AVE,Pleasantville,NJ,39.38357419,-74.52407505,RES1,3001,,14,NE,1930,1930,3102,1,1,934.0682808,934.0682808,3505,NO,14.07,19.89,3,-0.07,6106,112.28319,122.274016,131.930576,138.25708,I,Above,Gable,0,5701,,16.98100062,0,0,,,,1,1,,0.03,nav,1,1930,1,, 25524,NJBF000073960,205 E EDGEWATER AVE,Pleasantville,NJ,39.38420125,-74.52322265,RES1,3001,,15,NE,1920,1920,3102,1,1,902.9765286,902.9765286,3505,NO,14.05,20.6,3,-1.51,6106,112.296254,122.282432,131.938904,138.263952,I,Above,Gable,0,5701,,17.32364651,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25525,NJBF000074107,201 E BAYVIEW AVE,Pleasantville,NJ,39.38492566,-74.52296633,RES1,3001,,16,NE,1995,1995,3102,1,1,1692.507815,1692.507815,3505,NO,10.62,19.06,3,-0.81,6106,112.29514,122.279353,131.935098,138.257465,I,Above,Gable,0,5701,,14.83738791,0,0,,,,1,1,,0.03,nav,1,1995,1,, 25526,NJBF000073932,324 E BAYVIEW AVE,Pleasantville,NJ,39.38407005,-74.51940146,RES1,3001,,14,NE,1928,1928,3102,2,1,774.9185453,774.9185453,3505,NO,34.9,49.84,3,3.24,6106,112.382762,122.351154,132.011241,138.341504,I,Above,Flat,0,5701,,42.36942784,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 25527,NJBF000074242,130 E BAYVIEW AVE,Pleasantville,NJ,39.3855295,-74.52329518,RES1,3001,,15,NE,1910,1910,3102,2,1,1771.747144,1771.747144,3505,NO,46.3,53.15,3,8.36,6106,112.282155,122.267245,131.921899,138.241329,I,Above,Gable,0,5701,,49.72906279,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25528,NJBF000073161,43 E FLORAL AVE,Pleasantville,NJ,39.37836661,-74.53228598,RES1,3001,,16,NE,1945,1945,3101,1,1,1542.002773,1542.002773,3505,NO,17.94,27.09,3,6.17,6110,112.149874,122.184479,131.841857,138.176111,I,Above,Hip,0,5701,,22.51339609,0,0,,,,1,1,,0.35,nav,1,1945,1,, 25529,NJBF000073867,308 E EDGEWATER AVE,Pleasantville,NJ,39.38366569,-74.52082001,RES1,3001,,13,NE,1915,1915,3102,1,1,1368.170324,1368.170324,3505,NO,15.82,23.62,3,-0.44,6106,112.354986,122.330378,131.98967,138.319989,I,Above,Flat,0,5701,,19.71945734,0,0,,,,1,1,,0.03,nav,1,1915,1,, 25530,NJBF000074217,101 E BAYVIEW AVE,Pleasantville,NJ,39.38540754,-74.52438418,RES1,3001,,16,NE,1949,1949,3102,1,1,600.584248,600.584248,3505,NO,18.48,29.4,3,5.37,6106,112.259005,122.249357,131.903214,138.221695,I,Above,Gable,0,5701,,23.94130987,0,0,,,,1,1,,0.03,nav,1,1949,1,, 25531,NJBF000073979,314 E BAYVIEW AVE,Pleasantville,NJ,39.38434556,-74.52020007,RES1,3001,,NaN,NE,1969,0,3102,2,1,650.3655617,650.3655617,3505,NO,37.99,45.16,3,2.62,6106,112.36231,122.334164,131.993163,138.321351,I,Above,Gable,0,5701,,41.57871336,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25532,NJBF000073033,120 PLAZA PL,Pleasantville,NJ,39.37671671,-74.53221679,RES1,3001,,16,NE,1948,1948,3101,1,1,1238.028076,1238.028076,3505,NO,22.39,35.8,3,4.28,6112,112.168104,122.20309,131.862646,138.203623,I,Above,Gable,0,5701,,29.0945863,0,0,,,,1,1,,0.35,nav,1,1948,1,, 25533,NJBF000073931,228 E EDGEWATER AVE,Pleasantville,NJ,39.38406427,-74.52188348,RES1,3001,,15,NE,1910,1910,3102,2,1,613.7205664,613.7205664,3505,NO,33.76,46.42,3,-1.77,6106,112.32746,122.307466,131.965297,138.292641,I,Above,Gable,0,5701,,40.08862435,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25534,NJBF000074090,116 E EDGEWATER AVE,Pleasantville,NJ,39.38485516,-74.52397986,RES1,3001,,15,NE,1915,1915,3102,2,1,1268.960197,1268.960197,3505,NO,34.1,48.93,3,7.31,6110,112.273189,122.262254,131.917204,138.238524,I,Above,Hip,0,5701,,41.51729533,0,1.2,,,,1,1,,0.35,nav,1,1915,2,, 25535,NJBF000073935,311 E BAYVIEW AVE,Pleasantville,NJ,39.38409358,-74.52045654,RES1,3001,,15,NE,1940,1940,3102,1,1,1380.563819,1380.563819,3505,NO,13.29,19.38,3,-2.24,6106,112.358985,122.33228,131.991362,138.320311,I,Above,Flat,0,5701,,16.3377911,0,0,,,,1,1,,0.03,nav,1,1940,1,, 25536,NJBF000074121,108 E EDGEWATER AVE,Pleasantville,NJ,39.38499199,-74.524283,RES1,3001,,16,NE,1995,1995,3102,1,1,1182.756669,1182.756669,3505,NO,17.96,22.99,3,6.19,6110,112.265144,122.255489,131.909993,138.230334,I,Above,Gable,0,5701,,20.47345488,0,0,,,,1,1,,0.35,nav,1,1995,1,, 25537,NJBF000074148,31 E EDGEWATER AVE,Pleasantville,NJ,39.38508692,-74.52572414,RES1,3001,,15,NE,1920,1920,3102,1,1,1681.484842,1681.484842,3505,NO,20.52,29.39,3,2.31,6112,112.232104,122.229161,131.882305,138.200237,I,Above,Gable,0,5701,,24.95408804,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25538,NJBF000074136,33 E EDGEWATER AVE,Pleasantville,NJ,39.38504395,-74.52563145,RES1,3001,,15,NE,1925,1925,3102,2,2,1748.911136,1748.911136,3505,NO,40.36,47.36,3,6.97,6112,112.234581,122.231246,131.884527,138.202769,I,Above,Hip,0,5701,,43.85953617,0,0,,,,1,1,,0.35,nav,1,1925,2,, 25539,NJBF000073997,104 OAKLAND AVE,Pleasantville,NJ,39.38437655,-74.52500271,RES1,3001,,15,NE,1920,1920,3102,1,1,2498.526358,2498.526358,3505,NO,19.98,33.63,3,8.1,6112,112.254853,122.249271,131.903983,138.225869,I,Above,Gable,0,5701,,26.80305324,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25540,NJBF000073842,303 E EDGEWATER AVE,Pleasantville,NJ,39.38351303,-74.52130482,RES1,3001,,14,NE,1922,1922,3102,1,1,1227.255234,1227.255234,3505,NO,13.02,19.42,3,-0.82,6106,112.34563,122.323438,131.982487,138.312859,I,Above,Flat,0,5701,,16.21620733,0,0,,,,1,1,,0.03,nav,1,1922,1,, 25541,NJBF000074035,38 OAKLAND AVE,Pleasantville,NJ,39.38456816,-74.525694,RES1,3001,,15,NE,1910,1910,3102,1,1,1171.942839,1171.942839,3505,NO,17.6,27.48,3,-1.7,6110,112.237628,122.235122,131.888997,138.209108,I,Above,Gable,0,5701,,22.53955037,0,0,,,,1,1,,0.35,nav,1,1910,1,, 25542,NJBF000074046,130 E EDGEWATER AVE,Pleasantville,NJ,39.38460789,-74.5233065,RES1,3001,,15,NE,1915,1915,3102,1,1,1207.936941,1207.936941,3505,NO,24.58,32.33,3,6.27,6106,112.290529,122.276685,131.932549,138.255793,I,Above,Gable,0,5701,,28.45293862,0,0,,,,1,1,,0.03,nav,1,1915,1,, 25543,NJBF000074386,68 E WRIGHT ST,Pleasantville,NJ,39.38617366,-74.52303615,RES1,3001,,16,NE,1949,1949,3102,1,1,1000.690125,1000.690125,3505,NO,22.33,33.99,3,2.99,6106,112.281927,122.265049,131.919073,138.236154,I,Above,Hip,0,5701,,28.16360137,0,0,,,,1,1,,0.03,nav,1,1949,1,, 25544,NJBF000076371,148 CHARLES AVE,Pleasantville,NJ,39.39317916,-74.51556407,RES1,3001,,15,NE,1925,1925,3101,1,1,1435.61407,1435.61407,3505,NO,19.66,28.25,3,1.21,6106,112.384438,122.323493,131.975766,138.271074,I,Above,Gable,0,5701,,23.95753782,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 25545,NJBF000075015,332 S MAIN ST,Pleasantville,NJ,39.38844403,-74.52527486,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1055.881735,1055.881735,3507,NO,28.84,34.72,1,0.18,6112,112.211432,122.201982,131.850852,138.15559,I,Above,Flat,0,NaN,,31.77972708,0,0,,,,1,1,,1,nav,1,1969,2,, 25546,NJBF000076742,129 COLLINS AVE,Pleasantville,NJ,39.39463636,-74.51479008,RES1,3001,,15,NE,1935,1935,3101,1,1,1450.347396,1450.347396,3505,NO,15.23,20.8,3,-2.7,6112,112.388814,122.321957,131.973185,138.262897,I,Above,Gable,0,5701,,18.01905392,0,1.1,,,,1,1,,0.35,nav,1,1935,1,, 25547,NJBF000074626,224 S CHESTER AVE,Pleasantville,NJ,39.38723898,-74.52050381,RES1,3001,,15,NE,1925,1925,3102,2,1,1057.036395,1057.036395,3505,NO,24.6,31.13,3,0.02,6106,112.32842,122.298475,131.953447,138.269122,I,Above,Gable,0,5701,,27.86650916,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25548,NJBF000074328,23 E BAYVIEW AVE,Pleasantville,NJ,39.38591978,-74.52542746,RES1,3001,,15,NE,1910,1910,3102,2,1,532.7455383,532.7455383,3505,NO,35.6,47.37,3,5.33,6112,112.231,122.225666,131.877923,138.192846,I,Above,Gable,0,5701,,41.48277429,0,0,,,,1,1,,0.35,nav,1,1910,2,, 25549,NJBF000075489,2 S HAMPDEN CT,Pleasantville,NJ,39.39004909,-74.51788795,RES1,3001,,15,NE,1924,1924,3102,1,1,1110.821324,1110.821324,3505,NO,24.58,31.1,3,8.12,6110,112.360871,122.315187,131.969075,138.275624,I,Above,Flat,0,5701,,27.84019631,0,0,,,,1,1,,0.35,nav,1,1924,1,, 25550,NJBF000074375,26 E BAYVIEW AVE,Pleasantville,NJ,39.38613331,-74.52500723,RES1,3001,,15,NE,1925,1925,3102,2,1,1213.615691,1213.615691,3505,NO,34.85,41.8,3,7.57,6110,112.238396,122.230819,131.883147,138.197778,I,Above,Gable,0,5701,,38.32336886,0,0,,,,1,1,,0.35,nav,1,1925,2,, 25551,NJBF000074585,9 E WRIGHT ST,Pleasantville,NJ,39.38711253,-74.52549708,RES1,3001,,16,NE,1945,1945,3102,1,1,1333.828304,1333.828304,3505,NO,26.87,40.83,3,8.04,6112,112.218506,122.21197,131.862513,138.172426,I,Above,Gable,0,5701,,33.85224901,0,0,,,,1,1,,0.35,nav,1,1945,1,, 25552,NJBF000073972,,Pleasantville,NJ,39.38425396,-74.52140231,RES1,3001,,NaN,NE,1969,0,3102,2,1,709.5532992,709.5532992,3505,NO,30.69,41.85,3,-0.7,6106,112.336382,122.313945,131.971963,138.299107,I,Above,Gable,0,5701,,36.26873138,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25553,NJBF000075170,103 LYONS CT,Pleasantville,NJ,39.38893289,-74.51799089,RES1,3001,,16,NE,1950,1950,3102,2,1,1139.760237,1139.760237,3505,NO,42.88,53.57,3,8.28,6106,112.368686,122.325037,131.980284,138.291452,I,Above,Gable,0,5701,,48.22337218,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 25554,NJBF000076355,150 CHARLES AVE,Pleasantville,NJ,39.39309605,-74.51530632,RES1,3001,,15,NE,1946,1946,3101,1,1,1373.859212,1373.859212,3505,NO,21.48,30.28,3,5.33,6106,112.390849,122.328908,131.981582,138.277443,I,Above,Gable,0,5701,,25.88284697,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 25555,NJBF000078909,410 CEDARCREST AVE,Pleasantville,NJ,39.40827782,-74.50076297,RES3C,3001,,16,E,1992,1992,3303,1,1,1528.590201,1528.590201,3507,NO,20.92,29.76,1,2.97,6110,112.580925,122.428052,132.080691,138.316783,I,Above,Gable,0,NaN,,25.34081072,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25556,NJBF000078886,416 CEDARCREST AVE,Pleasantville,NJ,39.40814852,-74.50040075,RES3C,3001,,16,E,1992,1992,3303,2,1,2014.657771,2014.657771,3507,NO,24.76,38.95,1,1.9,6106,112.589727,122.435813,132.089145,138.325766,I,Above,Gable,0,NaN,,31.85293421,0,1.2,,,,1,1,,0.03,nav,1,1992,2,, 25557,NJBF000074988,21 E DECATUR AVE,Pleasantville,NJ,39.3883755,-74.52376849,RES1,3001,,15,NE,1935,1935,3102,2,1,595.6700021,595.6700021,3505,NO,40.76,48.05,3,6.86,6110,112.245528,122.229164,131.879511,138.186517,I,Above,Gable,0,5701,,44.4027641,0,1.2,,,,1,1,,0.35,nav,1,1935,2,, 25558,NJBF000073680,122 E PARK AVE,Pleasantville,NJ,39.38247212,-74.52529105,RES1,3001,,15,NE,1920,1920,3102,2,1,3583.712878,3583.712878,3505,NO,37.1,43.69,3,4.82,6106,112.266566,122.264193,131.921186,138.250525,I,Above,Gable,0,5701,,40.39431225,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 25559,NJBF000073148,39 E FLORAL AVE,Pleasantville,NJ,39.37828497,-74.53251933,RES1,3001,,16,NE,1945,1945,3101,1,1,532.7599454,532.7599454,3505,NO,16.37,23.6,3,1.74,6110,112.14545,122.181255,131.838597,138.172734,I,Above,Gable,0,5701,,19.98474032,0,0,,,,1,1,,0.35,nav,1,1945,1,, 25560,NJBF000073169,39 E FLORAL AVE,Pleasantville,NJ,39.37845665,-74.53242353,RES1,3001,,16,NE,1945,1945,3101,1,1,1266.511105,1266.511105,3505,NO,16.36,25.67,3,2.96,6110,112.145869,122.18111,131.838284,138.171916,I,Above,Hip,0,5701,,21.01477244,0,0,,,,1,1,,0.35,nav,1,1945,1,, 25561,NJBF000077709,121 CHATHAM AVE,Pleasantville,NJ,39.40046318,-74.50932206,RES1,3001,,16,NE,1955,1955,3101,1,1,1204.054241,1204.054241,3505,NO,18.67,26.84,3,0.65,6110,112.459205,122.35783,132.008188,138.276158,I,Above,Flat,0,5701,,22.75499355,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25562,NJBF000074591,20 E WRIGHT ST,Pleasantville,NJ,39.38712778,-74.52461397,RES1,3001,,16,NE,1960,1960,3102,1,2,1249.57089,1249.57089,3505,NO,24.1,34.86,3,5.33,6106,112.238024,122.227326,131.878632,138.18969,I,Above,Gable,0,5701,,29.47752225,0,0,,,,1,1,,0.03,nav,1,1960,1,, 25563,NJBF000073882,331 E BAYVIEW AVE,Pleasantville,NJ,39.38373988,-74.51948534,RES1,3001,,15,NE,1910,1910,3102,2,1,885.6940917,885.6940917,3505,NO,28.55,41.67,3,-0.07,6106,112.384057,122.353142,132.013562,138.345125,I,Above,Gable,0,5701,,35.11372478,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25564,NJBF000073872,331 E BAYVIEW AVE,Pleasantville,NJ,39.38368504,-74.51961195,RES1,3001,,15,NE,1910,1910,3102,2,1,701.4816791,701.4816791,3505,NO,40.52,50.52,3,4.84,6106,112.381754,122.35148,132.011851,138.343503,I,Above,Flat,0,5701,,45.51854887,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25565,NJBF000074646,222 S CHESTER AVE,Pleasantville,NJ,39.387323,-74.52046783,RES1,3001,,15,NE,1920,1920,3102,1,1,1189.416102,1189.416102,3505,NO,13.06,21.04,3,0.53,6106,112.328447,122.29823,131.953126,138.268488,I,Above,Gable,0,5701,,17.0477122,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25566,NJBF000074754,217 S CHESTER AVE,Pleasantville,NJ,39.38768449,-74.52071099,RES1,3001,,15,NE,1925,1925,3102,2,1,731.0318265,731.0318265,3505,NO,30.58,37.43,3,8.89,6106,112.319731,122.290173,131.944357,138.257931,I,Above,Hip,0,5701,,34.0011383,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25567,NJBF000077869,102 CHATHAM AVE,Pleasantville,NJ,39.40136259,-74.51053214,RES1,3001,,16,NE,1952,1952,3101,1,1,778.4890818,778.4890818,3505,NO,14.42,20.06,3,-1.17,6112,112.425483,122.327111,131.974716,138.238343,I,Above,Gable,0,5701,,17.24029052,0,1.1,,,,1,1,,0.35,nav,1,1952,1,, 25568,NJBF000076482,161 E ADAMS AVE,Pleasantville,NJ,39.3935843,-74.51500614,RES1,3001,,16,NE,1989,1989,3101,2,1,940.2731762,940.2731762,3505,NO,38.54,53.02,3,2.31,6106,112.39319,122.329111,131.981482,138.2755,I,Above,Gable,0,5701,,45.77911339,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 25569,NJBF000074358,355 S FRANKLIN BLVD,Pleasantville,NJ,39.3860637,-74.52282479,RES1,3001,,16,NE,1950,1950,3102,1,1,1983.067797,1983.067797,3505,NO,24.88,30.29,3,5.83,6106,112.287647,122.269913,131.924275,138.242083,I,Above,Gable,0,5701,,27.58673421,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25570,NJBF000075023,44 E DECATUR AVE,Pleasantville,NJ,39.38847511,-74.52236702,RES1,3001,,16,NE,1954,1954,3102,1,1,1302.825633,1302.825633,3505,NO,18.28,27.39,3,-1.09,6110,112.275753,122.252763,131.90429,138.212626,I,Above,Gable,0,5701,,22.83607599,0,0,,,,1,1,,0.35,nav,1,1954,1,, 25571,NJBF000074021,119 E EDGEWATER AVE,Pleasantville,NJ,39.38449825,-74.52406188,RES1,3001,,15,NE,1925,1925,3102,1,1,1243.495872,1243.495872,3505,NO,17.17,30.42,3,5.72,6110,112.274719,122.264553,131.919907,138.242596,I,Above,Gable,0,5701,,23.79535392,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25572,NJBF000073776,340 E EDGEWATER AVE,Pleasantville,NJ,39.38308772,-74.51930729,RES1,3001,,15,NE,1925,1925,3102,1,1,940.3148461,940.3148461,3505,NO,15.21,25.16,3,2.75,6106,112.394322,122.36314,132.024531,138.359053,I,Above,Gable,0,5701,,20.18378399,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25573,NJBF000073628,7091 BLACK HORSE PIKE,Pleasantville,NJ,39.38211625,-74.49957872,RES1,3001,,16,NE,1950,1950,3101,1,1,2062.607629,2062.607629,3505,NO,22.18,30.26,3,8.06,6106,112.842778,122.723314,132.406703,138.756899,I,Above,Gable,0,5701,,26.22187591,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 25574,NJBF000074611,7014 BLACK HORSE PIKE,Pleasantville,NJ,39.38718924,-74.51535726,RES1,3001,739,NaN,NE,1969,0,3102,2,1,1438.244726,1438.244726,3505,NO,24.67,33.18,3,2.75,6106,112.443202,122.38979,132.049981,138.37096,I,Above,Flat,0,5701,,28.92399601,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25575,NJBF000082098,203 KEEFER AVE,Pleasantville,NJ,39.42644951,-74.50756649,RES1,3001,,17,NE,2003,2003,3102,2,1,1814.653324,1814.653324,3505,NO,41.49,56,3,5.12,6110,112.306438,122.119871,131.740209,137.898288,I,Above,Gable,0,5701,,48.74474486,0,0,,,,1,1,,0.35,nav,1,2003,2,, 25576,NJBF000074185,207 TOLEDO AVENUE,Pleasantville,NJ,39.38528676,-74.5133965,RES1,3001,,16,NE,1925,1925,3102,1,1,1832.180697,1832.180697,3505,NO,25.88,34.15,3,7.42,6106,112.504763,122.444439,132.108977,138.439716,I,Above,Flat,0,5701,,30.01334046,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 25577,NJBF000074224,207 TOLEDO AVENUE,Pleasantville,NJ,39.38545114,-74.51336776,RES1,3001,,16,NE,1925,1925,3102,1,1,2320.716884,2320.716884,3505,NO,11.99,23.4,3,0.68,6106,112.503814,122.443209,132.107582,138.437635,I,Above,Hip,0,5701,,17.69442607,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 25578,NJBF000082011,217 S NEW RD,Pleasantville,NJ,39.42544782,-74.50714123,COM1,3001,,17,ME,1960,1960,3401,1,1,912.6360678,912.6360678,3507,NO,20.91,28.15,1,1.5,6110,112.321792,122.137673,131.759848,137.922338,I,Above,Hip,0,NaN,,24.53169234,0,0,,,,1,1,,1,nav,1,1960,1,, 25579,NJBF000074566,7014 BLACK HORSE PIKE,Pleasantville,NJ,39.38702797,-74.51528218,RES1,3001,739,NaN,NE,1969,0,3102,2,1,697.3835421,697.3835421,3505,NO,25.04,34.45,3,-0.1,6106,112.446373,122.392804,132.053273,138.375004,I,Above,Flat,0,5701,,29.74451464,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25580,NJBF000075124,,Pleasantville,NJ,39.38877687,-74.51716799,RES1,3001,,NaN,NE,1940,0,3102,2,1,1898.229886,1898.229886,3505,NO,25.57,38.84,3,3.08,6106,112.388352,122.341183,131.997482,138.31009,I,Above,Gable,0,5701,,32.20225323,0,0,,,,1,1,,0.03,nav,1,1940,2,, 25581,NJBF000075059,103 FRANKFORT COURT,Pleasantville,NJ,39.38860676,-74.51723306,RES1,3001,,16,NE,1940,1940,3102,1,1,1181.816562,1181.816562,3505,NO,18.11,31.2,3,3.8,6106,112.388466,122.341815,131.998267,138.311535,I,Above,Gable,0,5701,,24.65498287,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 25582,NJBF000075102,102 LYONS COURT,Pleasantville,NJ,39.38870745,-74.51769783,RES1,3001,,16,NE,1948,1948,3102,1,1,1512.426709,1512.426709,3505,NO,21.12,30.7,3,1.98,6106,112.377243,122.332567,131.98841,138.300816,I,Above,Flat,0,5701,,25.90991782,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25583,NJBF000074192,208 FLORENCE AVENUE,Pleasantville,NJ,39.38531721,-74.51472254,RES1,3001,,16,NE,1930,1930,3102,2,1,1614.988644,1614.988644,3505,NO,28.38,35.39,3,0.07,6106,112.47498,122.420655,132.083788,138.413326,I,Above,Gable,0,5701,,31.88778112,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 25584,NJBF000074774,103 PALERMO AVENUE,Pleasantville,NJ,39.3877486,-74.51484451,RES1,3001,,16,NE,1950,1950,3102,1,1,1116.374451,1116.374451,3505,NO,19.8,32.62,3,2.94,6106,112.449337,122.392962,132.052993,138.372004,I,Above,Gable,0,5701,,26.20837561,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25585,NJBF000074118,211 CORDOVA AVENUE,Pleasantville,NJ,39.38498262,-74.51460314,RES1,3001,,16,NE,1925,1925,3102,2,1,2375.801424,2375.801424,3505,NO,32.28,41.3,3,-1.07,6106,112.480846,122.426289,132.089945,138.42102,I,Above,Gable,0,5701,,36.79087728,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25586,NJBF000074761,7006 BLACK HORSE PIKE,Pleasantville,NJ,39.38769762,-74.51679091,COM1,3003,737,NaN,ME,1969,0,3401,1,1,8205.977576,8205.977576,3507,NO,13.2,22.72,1,1.43,6106,112.406642,122.359134,132.017204,138.334742,I,Above,Flat,0,NaN,,17.95993689,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25587,NJBF000074306,7025 BLACK HORSE PIKE,Pleasantville,NJ,39.38583274,-74.51350725,RES1,3001,29,16,NE,1920,1920,3102,2,1,2478.026495,2478.026495,3505,NO,20.43,27.75,3,-2.68,6106,112.497078,122.436734,132.100506,138.428805,I,Above,Gable,0,5701,,24.09032873,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25588,NJBF000073500,212 OXFORD PLACE,Pleasantville,NJ,39.38116169,-74.50052321,RES1,3001,,16,NE,1955,1955,3101,1,1,1086.368878,1086.368878,3505,NO,11.96,19.49,3,-0.93,6106,112.83156,122.716596,132.399783,138.754254,I,Above,Hip,0,5701,,15.72244435,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25589,NJBF000073730,7090 BLACK HORSE PIKE,Pleasantville,NJ,39.38276765,-74.49944861,COM1,3003,530,NaN,ME,1969,0,3401,2,1,7742.94796,7742.94796,3507,NO,32.31,47.01,1,1.5,6106,112.839059,122.718729,132.401644,138.748899,I,Above,Flat,0,NaN,,39.66089063,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25590,NJBF000081985,315 KEEFER AVE,Pleasantville,NJ,39.42506313,-74.50821434,RES1,3001,,15,NE,1920,1920,3102,1,1,1807.8526,1807.8526,3505,NO,17.74,23.48,3,1.13,6106,112.302011,122.122829,131.743721,137.907531,I,Above,Hip,0,5701,,20.61171986,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25591,NJBF000082163,,Pleasantville,NJ,39.42728548,-74.50733031,COM1,3001,,NaN,ME,1969,0,3401,2,1,10464.98299,10464.98299,3507,NO,27.44,35.59,1,2.53,6110,112.30593,122.115385,131.735159,137.889734,I,Above,Hip,0,NaN,,31.51500051,0,0,,,,1,1,,1,nav,1,1969,2,, 25592,NJBF000073267,,Pleasantville,NJ,39.37945458,-74.4913657,COM1,3003,,NaN,ME,1969,0,3401,3,1,7121.403318,7121.403318,3507,NO,36.61,49.54,1,1.3,6106,113.052142,122.898249,132.594141,138.954453,I,Above,Hip,0,NaN,,43.07109204,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25593,NJBF000074779,331 S EDGELEY AVE,Pleasantville,NJ,39.38776257,-74.52378564,RES1,3001,,16,NE,1961,1961,3102,1,1,2058.521853,2058.521853,3505,NO,15.91,25.42,3,-0.56,6106,112.250668,122.235247,131.886426,138.195948,I,Above,Hip,0,5701,,20.66559923,0,0,,,,1,1,,0.03,nav,1,1961,1,, 25594,NJBF000075016,25 E DECATUR AVE,Pleasantville,NJ,39.38844897,-74.52352458,RES1,3001,,15,NE,1935,1935,3102,1,1,1894.108306,1894.108306,3505,NO,20.02,27.35,3,1.41,6112,112.250269,122.232673,131.883145,138.190158,I,Above,Gable,0,5701,,23.68514276,0,1.1,,,,1,1,,0.35,nav,1,1935,1,, 25595,NJBF000076300,125 PENNY LANE,Pleasantville,NJ,39.3929015,-74.51688914,RES1,3001,,15,NE,1915,1915,3101,2,1,1274.484543,1274.484543,3505,NO,38.4,46.13,3,1.49,6112,112.357658,122.303022,131.954187,138.249582,I,Above,Gable,0,5701,,42.26889043,0,0,,,,1,1,,0.35,nav,1,1915,2,, 25596,NJBF000074232,26 E EDGEWATER AVE,Pleasantville,NJ,39.38547849,-74.525592,RES1,3001,,15,NE,1925,1925,3102,1,1,1450.689039,1450.689039,3505,NO,22.42,30.46,3,4.78,6112,112.231412,122.227389,131.880111,138.196621,I,Above,Gable,0,5701,,26.43781944,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25597,NJBF000074233,37 E BAYVIEW AVE,Pleasantville,NJ,39.3854845,-74.524877,RES1,3001,,15,NE,1926,1926,3102,1,1,576.7523567,576.7523567,3505,NO,19.58,25.26,3,6.27,6106,112.247303,122.239893,131.89322,138.21071,I,Above,Flat,0,5701,,22.41942516,0,0,,,,1,1,,0.03,nav,1,1926,1,, 25598,NJBF000074677,15 ANSLEY BLVD,Pleasantville,NJ,39.38741928,-74.52472866,RES1,3001,,16,NE,1927,1927,3102,2,1,2657.083237,2657.083237,3505,NO,37.4,49.1,3,2.86,6110,112.232816,122.222267,131.873066,138.182768,I,Above,Hip,0,5701,,43.24801565,0,1.1,,,,1,1,,0.35,nav,1,1927,2,, 25599,NJBF000075125,118 S CHESTER AVE,Pleasantville,NJ,39.3887785,-74.51939449,RES1,3001,,15,NE,1920,1920,3102,2,1,563.145044,563.145044,3505,NO,24.52,32.17,3,3.07,6112,112.338978,122.30192,131.955946,138.266353,I,Above,Gable,0,5701,,28.34378876,0,0,,,,1,1,,0.35,nav,1,1920,2,, 25600,NJBF000074010,125 E EDGEWATER AVE,Pleasantville,NJ,39.38442166,-74.52388067,RES1,3001,,15,NE,1998,1998,3102,1,1,1731.435198,1731.435198,3505,NO,24.08,31.98,3,7.49,6106,112.279476,122.268535,131.924145,138.247395,I,Above,Gable,0,5701,,28.03031476,0,0,,,,1,1,,0.03,nav,1,1998,1,, 25601,NJBF000074885,55 E DECATUR AVE,Pleasantville,NJ,39.38807367,-74.52244722,RES1,3001,,16,NE,1950,1950,3102,1,1,1313.685011,1313.685011,3505,NO,15.47,22.16,3,-1.31,6106,112.277606,122.255543,131.907543,138.217451,I,Above,Gable,0,5701,,18.81226921,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25602,NJBF000073197,1200 CLEMATIS AVE,Pleasantville,NJ,39.37884749,-74.5302495,RES1,3001,,NaN,NE,1969,0,3101,2,1,838.8180108,838.8180108,3505,NO,39.88,52.88,3,3.47,6112,112.190895,122.21518,131.873239,138.209324,I,Above,Gable,0,5701,,46.38018446,0,1.2,,,,1,1,,0.35,nav,1,1969,2,, 25603,NJBF000073880,117 OAKLAND AVE,Pleasantville,NJ,39.38373637,-74.52454415,RES1,3001,,15,NE,1925,1925,3102,1,1,1614.081105,1614.081105,3505,NO,21.9,32.22,3,6.57,6106,112.27117,122.264065,131.920016,138.245197,I,Above,Gable,0,5701,,27.05987773,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25604,NJBF000075234,107 S HAMPDEN CT,Pleasantville,NJ,39.38913978,-74.51886101,RES1,3001,,15,NE,1915,1915,3102,2,1,875.5416407,875.5416407,3505,NO,27.59,41.33,3,3.77,6112,112.347522,122.307538,131.961624,138.271057,I,Above,Hip,0,5701,,34.45882777,0,0,,,,1,1,,0.35,nav,1,1915,2,, 25605,NJBF000074030,117 E EDGEWATER AVE,Pleasantville,NJ,39.38454053,-74.52418414,RES1,3001,,14,NE,1920,1920,3102,1,1,1046.003243,1046.003243,3505,NO,9.24,17.28,3,-2.77,6112,112.271591,122.261956,131.917147,138.239492,I,Above,Flat,0,5701,,13.26165374,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25606,NJBF000074002,117 E EDGEWATER AVE,Pleasantville,NJ,39.38439023,-74.52426762,RES1,3001,,14,NE,1920,1920,3102,1,1,554.9408407,554.9408407,3505,NO,15.9,27.56,3,4.58,6112,112.27114,122.262062,131.917381,138.240237,I,Above,Gable,0,5701,,21.72968177,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25607,NJBF000073053,127 E ASHLAND AVE,Pleasantville,NJ,39.37698676,-74.53177672,RES1,3001,,16,NE,1953,1953,3101,1,1,1593.55725,1593.55725,3505,NO,15.08,20.29,3,2.36,6110,112.175261,122.207964,131.867441,138.208182,I,Above,Gable,0,5701,,17.68664759,0,1.1,,,,1,1,,0.35,nav,1,1953,1,, 25608,NJBF000074827,206 S CHESTER AVE,Pleasantville,NJ,39.3878945,-74.52012299,RES1,3001,,15,NE,1924,1924,3102,2,1,1321.663427,1321.663427,3505,NO,35.18,42.07,3,8.56,6106,112.33086,122.298322,131.952797,138.26614,I,Above,Hip,0,5701,,38.62606548,0,1.2,,,,1,1,,0.03,nav,1,1924,2,, 25609,NJBF000075027,210 E BLACK HORSE PIKE,Pleasantville,NJ,39.38848341,-74.51944926,RES1,3001,,NaN,NE,1910,0,3102,1,1,1511.513045,1511.513045,3505,NO,17.08,31.73,3,5.36,6106,112.34045,122.304046,131.958409,138.270003,I,Above,Hip,0,5701,,24.40169022,0,0,,,,1,1,,0.03,nav,1,1910,1,, 25610,NJBF000075058,17 E DECATUR AVE,Pleasantville,NJ,39.3885876,-74.52388916,RES1,3001,,43,NE,1938,1938,3102,1,2,1703.379498,1703.379498,3505,NO,11.74,20.71,3,-2.32,6110,112.240934,122.224826,131.874765,138.180738,I,Above,Gable,0,5701,,16.22568022,0,0,,,,1,1,,0.35,nav,1,1938,1,, 25611,NJBF000075869,222 OLD TURNPIKE,Pleasantville,NJ,39.391433,-74.51633799,COM1,3003,,NaN,ME,1987,1987,3401,1,1,616.3315625,616.3315625,3507,NO,12.91,19.06,1,1.31,6106,112.382766,122.32806,131.981779,138.28386,I,Above,Flat,0,NaN,,15.98799618,0,0,,,,1,1,,0.03,nav,1,1987,1,, 25612,NJBF000073822,207 OAKLAND AVE,Pleasantville,NJ,39.38338159,-74.52348467,RES1,3001,,14,NE,1925,1925,3102,1,1,1276.405959,1276.405959,3505,NO,15.36,27.96,3,-1.77,6106,112.298205,122.286416,131.943728,138.271834,I,Above,Gable,0,5701,,21.66014253,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25613,NJBF000075115,43 E BLACK HORSE PIKE,Pleasantville,NJ,39.3887516,-74.52211478,RES1,3001,,15,NE,1943,1943,3102,1,1,1762.049813,1762.049813,3505,NO,16.6,26.16,3,2.21,6112,112.278849,122.254303,131.905693,138.213176,I,Above,Hip,0,5701,,21.38308092,0,0,,,,1,1,,0.35,nav,1,1943,1,, 25614,NJBF000074867,213 E BLACK HORSE PIKE,Pleasantville,NJ,39.38802203,-74.51954914,COM1,3003,,NaN,ME,1969,1927,3401,2,1,2184.965283,2184.965283,3507,NO,38.63,47.37,1,2.36,6106,112.342442,122.307106,131.961978,138.275407,I,Above,Hip,0,NaN,,43.00140546,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25615,NJBF000072937,155 PLAZA PL,Pleasantville,NJ,39.37574888,-74.53138827,RES1,3001,,16,NE,2004,2004,3101,1,1,1411.510949,1411.510949,3505,NO,21.9,28.49,3,8.88,6106,112.196734,122.227879,131.889144,138.235585,I,Above,Gable,0,5701,,25.19674593,0,0,,,,1,1,,0.03,nav,1,2004,1,, 25616,NJBF000073623,200 E PARK AVE,Pleasantville,NJ,39.38206223,-74.52444659,RES1,3001,,15,NE,1928,1928,3102,1,1,1550.311501,1550.311501,3505,NO,26.84,37.7,3,8.03,6106,112.289413,122.283353,131.941564,138.273817,I,Above,Gable,0,5701,,32.26897857,0,0,,,,1,1,,0.03,nav,1,1928,1,, 25617,NJBF000073915,332 E BAYVIEW AVE,Pleasantville,NJ,39.38398861,-74.51873614,RES1,3001,,14,NE,1910,1910,3102,1,1,918.8836005,918.8836005,3505,NO,16.79,25.13,3,5.06,6106,112.398365,122.363738,132.024549,138.355887,I,Above,Flat,0,5701,,20.95909591,0,0,,,,1,1,,0.03,nav,1,1910,1,, 25618,NJBF000074822,23 TUNIS AVE,Pleasantville,NJ,39.38787994,-74.52398418,RES1,3001,,16,NE,1948,1948,3102,1,1,994.1301175,994.1301175,3505,NO,14.56,19.79,3,3.37,6110,112.245205,122.230545,131.88138,138.190162,I,Above,Gable,0,5701,,17.17763772,0,0,,,,1,1,,0.35,nav,1,1948,1,, 25619,NJBF000075097,116 S HAMPDEN CT,Pleasantville,NJ,39.38870219,-74.51866891,RES1,3001,,15,NE,1905,1905,3102,1,1,1515.373363,1515.373363,3505,NO,12.21,22.57,3,-1.78,6106,112.355757,122.315501,131.970359,138.281834,I,Above,Hip,0,5701,,17.38813597,0,0,,,,1,1,,0.03,nav,1,1905,1,, 25620,NJBF000073969,218 E EDGEWATER AVE,Pleasantville,NJ,39.38424757,-74.52237568,RES1,3001,,15,NE,1910,1910,3102,2,1,741.682138,741.682138,3505,NO,39.84,46.85,3,3.8,6106,112.31471,122.296851,131.954006,138.279958,I,Above,Gable,0,5701,,43.34488446,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25621,NJBF000074005,223 E BAYVIEW AVE,Pleasantville,NJ,39.384408,-74.5218485,RES1,3001,,15,NE,1925,1925,3102,1,1,623.8033796,623.8033796,3505,NO,9.05,16.82,3,-2.95,6106,112.324948,122.304454,131.961872,138.287819,I,Above,Gable,0,5701,,12.93188751,0,1.2,,,,1,1,,0.03,nav,1,1925,1,, 25622,NJBF000074044,223 E BAYVIEW AVE,Pleasantville,NJ,39.38459775,-74.52179811,RES1,3001,,15,NE,1925,1925,3102,1,1,1357.13945,1357.13945,3505,NO,11.01,19.58,3,-2.77,6106,112.324284,122.303358,131.960577,138.285792,I,Above,Gable,0,5701,,15.29224585,0,1.2,,,,1,1,,0.03,nav,1,1925,1,, 25623,NJBF000074410,20 E BAYVIEW AVE,Pleasantville,NJ,39.38627867,-74.52532909,RES1,3001,,15,NE,1921,1921,3102,1,1,1565.497774,1565.497774,3505,NO,14.1,22.48,3,-2.16,6112,112.229876,122.223634,131.875482,138.189063,I,Above,Gable,0,5701,,18.29253524,0,0,,,,1,1,,0.35,nav,1,1921,1,, 25624,NJBF000079087,1106 SHANE CT,Pleasantville,NJ,39.40944798,-74.51041297,RES1,3001,,16,NE,2005,2005,3101,2,1,1715.690235,1715.690235,3505,NO,44.8,50.84,3,8.67,6112,112.364779,122.245428,131.882546,138.111942,I,Above,Hip,0,5701,,47.81770765,0,1.1,,,,1,1,,0.35,nav,1,2005,2,, 25625,NJBF000075803,211 OLD TURNPIKE,Pleasantville,NJ,39.39120003,-74.51778583,IND2,3001,,NaN,ME,1969,0,3401,2,1,16726.12362,16726.12362,3507,NO,37.44,51.36,1,2.42,6106,112.352844,122.304966,131.957434,138.259219,I,Above,Flat,0,NaN,,44.40013128,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25626,NJBF000072992,140 PLAZA PL,Pleasantville,NJ,39.37628705,-74.5314067,RES1,3001,,16,NE,1971,1971,3101,2,1,1202.252148,1202.252148,3505,NO,27.75,41.57,3,2.79,6110,112.190758,122.221856,131.882441,138.22669,I,Above,Gable,0,5701,,34.660801,0,0,,,,1,1,,0.35,nav,1,1971,2,, 25627,NJBF000075426,8 S HAMPDEN CT,Pleasantville,NJ,39.38983499,-74.5180035,RES1,3001,,15,NE,1905,1905,3102,2,1,836.4212424,836.4212424,3505,NO,39.6,48.95,3,2.51,6110,112.360229,122.315378,131.969428,138.276771,I,Above,Hip,0,5701,,44.27741179,0,0,,,,1,1,,0.35,nav,1,1905,2,, 25628,NJBF000074888,28 TUNIS AVE,Pleasantville,NJ,39.38807653,-74.52363083,RES1,3001,,16,NE,1948,1948,3102,1,1,937.4131771,937.4131771,3505,NO,10.23,22.3,3,-1.12,6110,112.25127,122.234693,131.885581,138.194001,I,Above,Gable,0,5701,,16.2661638,0,0,,,,1,1,,0.35,nav,1,1948,1,, 25629,NJBF000073632,333 OAKLAND AVE,Pleasantville,NJ,39.3821291,-74.52027188,RES1,3001,,15,NE,1925,1925,3102,1,1,2182.371082,2182.371082,3505,NO,10.51,21.83,3,-2.63,6106,112.382109,122.356211,132.017906,138.355358,I,Above,Gable,0,5701,,16.16867956,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25630,NJBF000074575,220 S HAMPDEN CT,Pleasantville,NJ,39.38708069,-74.51957314,RES1,3001,,15,NE,1885,1885,3102,2,1,1717.064653,1717.064653,3505,NO,45.35,56.49,3,7.85,6106,112.350572,122.316533,131.972613,138.289979,I,Above,Gable,0,5701,,50.91918852,0,0,,,,1,1,,0.03,nav,1,1885,2,, 25631,NJBF000073841,216 OAKLAND AVE,Pleasantville,NJ,39.38350859,-74.52281467,RES1,3001,,14,NE,1925,1925,3102,2,1,1162.764571,1162.764571,3505,NO,28.53,36.22,3,1.49,6106,112.311955,122.296879,131.954604,138.283073,I,Above,Flat,0,5701,,32.37438426,0,0,,,,1,1,,0.03,nav,1,1925,2,, 25632,NJBF000079225,238 W LEEDS AVE,Pleasantville,NJ,39.41022624,-74.51308371,RES1,3001,,15,NE,1925,1925,3101,1,1,1869.615317,1869.615317,3505,NO,24.03,31.79,3,8.94,6112,112.301787,122.190424,131.822719,138.047591,I,Above,Gable,0,5701,,27.90770013,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25633,NJBF000079265,238 W LEEDS AVE,Pleasantville,NJ,39.41040565,-74.51297542,RES1,3001,,15,NE,1925,1925,3101,1,1,764.0909582,764.0909582,3505,NO,21.65,35.79,3,7.89,6112,112.3028,122.190481,131.822687,138.046855,I,Above,Gable,0,5701,,28.71842184,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25634,NJBF000073619,316 E GREENFIELD AVE,Pleasantville,NJ,39.38204655,-74.52135045,RES1,3001,,16,NE,1997,1997,3102,2,1,1661.170669,1661.170669,3505,NO,34.25,45.01,3,-0.23,6106,112.35882,122.338065,131.998911,138.335383,I,Above,Flat,0,5701,,39.62785497,0,0,,,,1,1,,0.03,nav,1,1997,2,, 25635,NJBF000075051,206 E BLACK HORSE PIKE,Pleasantville,NJ,39.38855477,-74.51956865,RES1,3001,,45,NE,1910,1910,3102,2,2,1736.215667,1736.215667,3505,NO,28,39.89,3,-0.14,6110,112.337132,122.301179,131.955327,138.266492,I,Above,Hip,0,5701,,33.94558348,0,0,,,,1,1,,0.35,nav,1,1910,2,, 25636,NJBF000074713,207 LYONS CT,Pleasantville,NJ,39.38753191,-74.51886824,RES1,3001,,43,NE,1915,1915,3102,1,2,1573.706742,1573.706742,3505,NO,21.66,31.32,3,2.2,6106,112.362067,122.324236,131.980424,138.296633,I,Above,Gable,0,5701,,26.4923253,0,1.1,,,,1,1,,0.03,nav,1,1915,1,, 25637,NJBF000074407,69 E WRIGHT ST,Pleasantville,NJ,39.38627257,-74.52373932,RES1,3001,,16,NE,1965,1965,3102,1,1,1575.638078,1575.638078,3505,NO,21.15,29.09,3,5.29,6106,112.265354,122.251647,131.904905,138.220664,I,Above,Gable,0,5701,,25.11844522,0,0,,,,1,1,,0.03,nav,1,1965,1,, 25638,NJBF000074549,300 S CHESTER AVE,Pleasantville,NJ,39.38693256,-74.52054893,RES1,3001,,16,NE,1954,1954,3102,1,1,2904.887559,2904.887559,3505,NO,21.43,34.76,3,3.59,6106,112.330245,122.300886,131.956218,138.273126,I,Above,Gable,0,5701,,28.0966527,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 25639,NJBF000075718,260 OLD TURNPIKE,Pleasantville,NJ,39.39086149,-74.51446949,GOV1,3004,,NaN,E,1969,0,3401,1,1,1717.27118,1717.27118,3505,NO,27.53,39.81,3,8.81,6106,112.42917,122.367018,132.02353,138.329539,I,Above,Flat,0,NaN,,33.67194149,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25640,NJBF000075739,260 OLD TURNPIKE,Pleasantville,NJ,39.39093604,-74.51435918,GOV1,3004,,NaN,E,1969,0,3401,1,1,596.5784289,596.5784289,3505,NO,23.23,28.53,3,4.05,6106,112.430925,122.368177,132.024714,138.330486,I,Above,Flat,0,NaN,,25.87942315,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25641,NJBF000074608,25 ANSLEY BLVD,Pleasantville,NJ,39.3871832,-74.52414834,RES1,3001,,16,NE,1953,1953,3102,1,1,1196.353797,1196.353797,3505,NO,11.98,19.5,3,-2.61,6106,112.247893,122.234942,131.88659,138.198042,I,Above,Hip,0,5701,,15.73913321,0,0,,,,1,1,,0.03,nav,1,1953,1,, 25642,NJBF000075447,9 S HAMPDEN CT,Pleasantville,NJ,39.38990184,-74.51840269,RES1,3001,,15,NE,1915,1915,3102,2,1,806.9165804,806.9165804,3505,NO,41.26,55.24,3,8.03,6110,112.350791,122.307646,131.961193,138.267868,I,Above,Hip,0,5701,,48.24648844,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 25643,NJBF000075424,11 S HAMPDEN CT,Pleasantville,NJ,39.38982353,-74.51845723,RES1,3001,,15,NE,1895,1895,3102,2,1,965.42858,965.42858,3505,NO,36.62,41.75,3,-1.8,6110,112.350297,122.307509,131.961104,138.268055,I,Above,Hip,0,5701,,39.18388068,0,1.2,,,,1,1,,0.35,nav,1,1895,2,, 25644,NJBF000075438,11 S HAMPDEN CT,Pleasantville,NJ,39.38988381,-74.51863453,RES1,3001,,15,NE,1895,1895,3102,2,1,930.8492435,930.8492435,3505,NO,41.85,47.42,3,7.89,6110,112.345816,122.303746,131.957077,138.2636,I,Above,Flat,0,5701,,44.63438064,0,1.2,,,,1,1,,0.35,nav,1,1895,2,, 25645,NJBF000074801,50 TUNIS AVE,Pleasantville,NJ,39.38782317,-74.52290538,RES1,3001,,16,NE,1948,1948,3102,1,1,1014.202341,1014.202341,3505,NO,14.88,27.71,3,1.9,6106,112.269708,122.25011,131.902022,138.212411,I,Above,Gable,0,5701,,21.29708784,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25646,NJBF000074477,52 E WRIGHT ST,Pleasantville,NJ,39.38662369,-74.5234978,RES1,3001,,16,NE,1948,1948,3102,1,1,1454.323019,1454.323019,3505,NO,17.03,30.74,3,2.49,6106,112.267483,122.252214,131.905213,138.21983,I,Above,Gable,0,5701,,23.88509573,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25647,NJBF000074075,600 S EDGELEY AVE,Pleasantville,NJ,39.3847563,-74.52491438,RES1,3001,,16,NE,1985,1985,3102,1,1,1661.324195,1661.324195,3505,NO,24.51,30.73,3,6.42,6110,112.253277,122.246865,131.901144,138.221589,I,Above,Gable,0,5701,,27.61788687,0,1.2,,,,1,1,,0.35,nav,1,1985,1,, 25648,NJBF000073062,104 PLAZA PL,Pleasantville,NJ,39.37710699,-74.5324965,RES1,3001,,45,NE,1926,1926,3101,2,2,564.6784968,564.6784968,3505,NO,38.96,49.42,3,0.69,6112,112.157847,122.194076,131.852966,138.191848,I,Above,Gable,0,5701,,44.19056389,0,1.1,,,,1,1,,0.35,nav,1,1926,2,, 25649,NJBF000079508,11 UTAH AVE,Pleasantville,NJ,39.41144827,-74.50621652,RES3C,3001,,16,E,1955,1955,3303,1,1,1834.742315,1834.742315,3507,NO,11.92,20.38,1,1.17,6112,112.439561,122.29868,131.939324,138.161516,I,Above,Flat,0,NaN,,16.14895271,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 25650,NJBF000078160,79A ATLANTIC AVE,Pleasantville,NJ,39.403319,-74.50888799,RES3C,3001,,33,E,1950,1950,3303,3,1,3892.903041,3892.903041,3507,NO,44.41,52.46,1,0.65,6112,112.445312,122.33582,131.983068,138.239039,I,Above,Flat,0,NaN,,48.43182728,0,0,,,,1,1,,0.35,nav,1,1950,3,, 25651,NJBF000078173,79A ATLANTIC AVE,Pleasantville,NJ,39.40342392,-74.5084494,RES3C,3001,,33,E,1950,1950,3303,3,1,4457.480548,4457.480548,3507,NO,32.95,39.46,1,-0.18,6112,112.453978,122.342482,131.990191,138.245867,I,Above,Flat,0,NaN,,36.20261789,0,0,,,,1,1,,0.35,nav,1,1950,3,, 25652,NJBF000078153,79A ATLANTIC AVE,Pleasantville,NJ,39.40329497,-74.50803794,RES3C,3001,,33,E,1950,1950,3303,4,1,3537.521452,3537.521452,3507,NO,65.09,74.15,1,1.63,6112,112.463924,122.351082,131.999516,138.255875,I,Above,Gable,0,NaN,,69.61804959,0,0,,,,1,1,,0.35,nav,1,1950,4,, 25653,NJBF000078100,79A ATLANTIC AVE,Pleasantville,NJ,39.40295421,-74.50783583,RES3C,3001,,33,E,1950,1950,3303,3,1,5254.31755,5254.31755,3507,NO,36.22,44.95,1,1.48,6112,112.471066,122.358194,132.007339,138.265213,I,Above,Gable,0,NaN,,40.58239553,0,0,,,,1,1,,0.35,nav,1,1950,3,, 25654,NJBF000073919,105 OAKLAND AVE,Pleasantville,NJ,39.38401717,-74.52520848,RES1,3001,,15,NE,1915,1915,3102,1,1,1627.311471,1627.311471,3505,NO,16.46,24.35,3,1.78,6112,112.253673,122.24944,131.904461,138.227542,I,Above,Hip,0,5701,,20.40633927,0,1.1,,,,1,1,,0.35,nav,1,1915,1,, 25655,NJBF000074972,207 S FRANKLIN BLVD,Pleasantville,NJ,39.38833684,-74.52137777,COM1,3003,,16,ME,1940,1940,3401,1,1,716.6225993,716.6225993,3507,NO,16.65,23.18,1,2.15,6110,112.298963,122.271605,131.924268,138.234347,I,Above,Flat,0,NaN,,19.91600991,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 25656,NJBF000074603,218 S HAMPDEN CT,Pleasantville,NJ,39.38717348,-74.5195645,RES1,3001,,15,NE,1890,1890,3102,1,1,1334.85956,1334.85956,3505,NO,17.73,23.26,3,7.21,6106,112.349899,122.31571,131.971679,138.288666,I,Above,Gable,0,5701,,20.49536379,0,0,,,,1,1,,0.03,nav,1,1890,1,, 25657,NJBF000074938,39 E DECATUR AVE,Pleasantville,NJ,39.38824431,-74.52295554,RES1,3001,,15,NE,1926,1926,3102,2,1,883.1074737,883.1074737,3505,NO,25.08,36.37,3,-1.31,6110,112.264758,122.244816,131.896104,138.20468,I,Above,Gable,0,5701,,30.724887,0,1.1,,,,1,1,,0.35,nav,1,1926,2,, 25658,NJBF000074522,223 LYONS CT,Pleasantville,NJ,39.38684662,-74.51928808,RES1,3001,,15,NE,1920,1920,3102,1,1,2071.35881,2071.35881,3505,NO,19.09,32,3,5.93,6106,112.359077,122.324007,131.980669,138.299328,I,Above,Gable,0,5701,,25.54675743,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25659,NJBF000075074,48 E DECATUR AVE,Pleasantville,NJ,39.38863649,-74.52208782,RES1,3001,,15,NE,1910,1910,3102,1,1,947.6569898,947.6569898,3505,NO,15.31,28.59,3,-2.43,6110,112.280494,122.255989,131.907563,138.215562,I,Above,Flat,0,5701,,21.95431406,0,0,,,,1,1,,0.35,nav,1,1910,1,, 25660,NJBF000076127,105 PENNY LANE,Pleasantville,NJ,39.39232047,-74.51721931,RES1,3001,,15,NE,1920,1920,3101,2,1,1139.861255,1139.861255,3505,NO,38.09,43.71,3,1.07,6106,112.355477,122.303274,131.954857,138.252424,I,Above,Flat,0,5701,,40.90297791,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 25661,NJBF000073437,EXPRESSWAY PARKING LOT,Pleasantville,NJ,39.380698,-74.49087499,COM1,3003,,NaN,ME,1969,0,3401,1,1,2300.382661,2300.382661,3507,NO,12.67,22.49,1,0.12,6106,113.050006,122.89384,132.589317,138.943655,I,Above,Flat,0,NaN,,17.58262248,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25662,NJBF000079795,15 W REDWOOD AVE,Pleasantville,NJ,39.41287018,-74.50505645,RES3C,3001,,NaN,E,1969,0,3303,1,1,926.1253322,926.1253322,3507,NO,14.76,28.88,1,1.52,6112,112.453684,122.304439,131.945044,138.161416,I,Above,Flat,0,NaN,,21.82107766,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25663,NJBF000079730,15 W REDWOOD AVE,Pleasantville,NJ,39.412576,-74.5060805,RES3C,3001,,NaN,E,1969,0,3303,1,1,546.4873438,546.4873438,3507,NO,18.02,30.13,1,2.25,6106,112.434048,122.289414,131.928847,138.146285,I,Above,Gable,0,NaN,,24.07477666,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25664,NJBF000079707,15 W REDWOOD AVE,Pleasantville,NJ,39.412424,-74.5057145,RES3C,3001,,NaN,E,1969,0,3303,1,1,706.8039098,706.8039098,3507,NO,18.56,29.34,1,0,6106,112.442985,122.297446,131.937617,138.155769,I,Above,Gable,0,NaN,,23.95426045,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25665,NJBF000079739,15 W REDWOOD AVE,Pleasantville,NJ,39.41263349,-74.50605449,RES3C,3001,,NaN,E,1969,0,3303,1,1,601.3317857,601.3317857,3507,NO,15.7,26.49,1,1.81,6106,112.434178,122.289283,131.928683,138.145884,I,Above,Flat,0,NaN,,21.09409652,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25666,NJBF000079740,15 W REDWOOD AVE,Pleasantville,NJ,39.41264026,-74.5056379,RES3C,3001,,NaN,E,1969,0,3303,1,1,975.3177915,975.3177915,3507,NO,15.84,27.57,1,1.48,6106,112.442994,122.29655,131.936565,138.153815,I,Above,Gable,0,NaN,,21.70615601,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25667,NJBF000079733,15 W REDWOOD AVE,Pleasantville,NJ,39.41258691,-74.50544591,RES3C,3001,,NaN,E,1969,0,3303,1,1,925.8851705,925.8851705,3507,NO,15.47,22.81,1,0.7,6106,112.447483,122.300487,131.940857,138.158365,I,Above,Gable,0,NaN,,19.14043265,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25668,NJBF000079729,15 W REDWOOD AVE,Pleasantville,NJ,39.41256634,-74.50530096,RES3C,3001,,NaN,E,1969,0,3303,1,1,719.1511992,719.1511992,3507,NO,14.22,23.64,1,0.44,6110,112.450731,122.303264,131.943877,138.161499,I,Above,Gable,0,NaN,,18.92928136,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25669,NJBF000079760,15 W REDWOOD AVE,Pleasantville,NJ,39.4127256,-74.5059911,RES3C,3001,,NaN,E,1969,0,3303,1,1,1024.609653,1024.609653,3507,NO,17.5,30.89,1,1.78,6106,112.43483,122.289431,131.92881,138.145629,I,Above,Flat,0,NaN,,24.19181248,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25670,NJBF000079714,15 W REDWOOD AVE,Pleasantville,NJ,39.41244828,-74.5058519,RES3C,3001,,NaN,E,1969,0,3303,1,1,1082.745861,1082.745861,3507,NO,17.4,26.21,1,2.49,6106,112.439863,122.294763,131.934697,138.152721,I,Above,Flat,0,NaN,,21.80926483,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25671,NJBF000076916,127 E MERION AVE,Pleasantville,NJ,39.3953895,-74.51398493,RES1,3001,,16,NE,1972,1972,3101,1,1,1683.243895,1683.243895,3505,NO,12.09,22.38,3,1.1,6112,112.400009,122.328302,131.979473,138.26655,I,Above,Gable,0,5701,,17.23582286,0,0,,,,1,1,,0.35,nav,1,1972,1,, 25672,NJBF000074691,7008 BLACK HORSE PIKE,Pleasantville,NJ,39.38745986,-74.51643796,COM1,3003,560,NaN,ME,1969,0,3401,2,1,848.4317088,848.4317088,3507,NO,24.5,31.64,1,-0.8,6106,112.416684,122.367859,132.026593,138.345466,I,Above,Flat,0,NaN,,28.07020704,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25673,NJBF000074226,204 CORDOVA AVENUE,Pleasantville,NJ,39.38545908,-74.51370739,RES1,3001,,16,NE,1925,1925,3102,2,1,979.4443019,979.4443019,3505,NO,29.74,37.71,3,-1.26,6106,112.496205,122.437128,132.101139,138.430894,I,Above,Gable,0,5701,,33.72571158,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25674,NJBF000074256,7025 BLACK HORSE PIKE,Pleasantville,NJ,39.38560711,-74.5136657,RES1,3001,29,16,NE,1920,1920,3102,2,1,1260.109498,1260.109498,3505,NO,36.5,48.06,3,2.13,6106,112.495702,122.436297,132.100174,138.429323,I,Above,Gable,0,5701,,42.27741294,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25675,NJBF000074680,116 GENOA AVENUE,Pleasantville,NJ,39.38743078,-74.51547816,RES1,3001,,16,NE,1927,1927,3102,2,1,1215.398335,1215.398335,3505,NO,38.93,53.44,3,6.75,6106,112.438258,122.385115,132.044878,138.36472,I,Above,Flat,0,5701,,46.18505205,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 25676,NJBF000074681,7020 BLACK HORSE PIKE,Pleasantville,NJ,39.3874315,-74.51343049,COM1,3003,30,NaN,ME,1969,0,3401,1,1,1720.335097,1720.335097,3507,NO,17.37,23.38,1,1.4,6106,112.483684,122.421309,132.083236,138.404713,I,Above,Flat,0,NaN,,20.37842892,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25677,NJBF000073794,7084 BLACK HORSE PIKE,Pleasantville,NJ,39.38319849,-74.50061294,COM1,3003,,NaN,ME,1969,0,3401,1,1,7137.912262,7137.912262,3507,NO,13.45,27.72,1,1.86,6106,112.808944,122.693436,132.374535,138.719832,I,Above,Flat,0,NaN,,20.58209807,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25678,NJBF000073590,204 OXFORD PLACE,Pleasantville,NJ,39.38186058,-74.50008054,RES1,3001,,16,NE,1950,1950,3101,1,1,2254.898581,2254.898581,3505,NO,13.13,23.65,3,0.06,6106,112.834239,122.717067,132.400104,138.751442,I,Above,Gable,0,5701,,18.39028414,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25679,NJBF000074206,204 TOLEDO AVENUE,Pleasantville,NJ,39.38536451,-74.51280618,RES1,3001,,16,NE,1954,1954,3102,2,1,1428.00515,1428.00515,3505,NO,32.22,43.54,3,6.35,6106,112.517125,122.454058,132.119122,138.449968,I,Above,Flat,0,5701,,37.87952374,0,0,,,,1,1,,0.03,nav,1,1954,2,, 25680,NJBF000074969,104 FRANKFORT COURT,Pleasantville,NJ,39.38832768,-74.51688778,RES1,3001,,16,NE,1925,1925,3102,1,1,1975.794266,1975.794266,3505,NO,19.71,27.57,3,2.17,6106,112.398676,122.350823,132.007989,138.322761,I,Above,Hip,0,5701,,23.64043137,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 25681,NJBF000073547,208 OXFORD PLACE,Pleasantville,NJ,39.38151501,-74.50027029,RES1,3001,,43,NE,1960,1960,3101,1,2,3735.686788,3735.686788,3505,NO,20.54,32.55,3,5.45,6106,112.83357,122.717364,132.40051,138.753402,I,Above,Flat,0,5701,,26.5440279,0,0,,,,1,1,,0.03,nav,1,1960,1,, 25682,NJBF000074128,1110 BAY DRIVE,Pleasantville,NJ,39.38502506,-74.51272445,RES1,3001,,16,NE,1950,2017,3102,1,1,1813.914215,1813.914215,3505,NO,13.22,20.77,3,-0.33,6106,112.522214,122.459087,132.124636,138.457013,I,Above,Gable,0,5701,,16.99753652,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25683,NJBF000074059,7066 BLACK HORSE PIKE,Pleasantville,NJ,39.38468099,-74.50471667,COM1,3003,739,NaN,ME,1969,1970,3401,2,1,2287.388756,2287.388756,3507,NO,40.98,47.11,1,2.28,6106,112.70327,122.604735,132.279496,138.617481,I,Above,Flat,0,NaN,,44.04761369,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25684,NJBF000074599,7018 BLACK HORSE PIKE,Pleasantville,NJ,39.3871578,-74.51427269,COM1,3003,30,NaN,ME,1969,0,3401,1,1,17557.20662,17557.20662,3507,NO,17.23,22.54,1,0.49,6106,112.467546,122.409271,132.070635,138.392637,I,Above,Flat,0,NaN,,19.88571446,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25685,NJBF000074884,109 FRANKFORT COURT,Pleasantville,NJ,39.38807149,-74.51766749,RES1,3001,,16,NE,1950,1950,3102,1,1,1980.854656,1980.854656,3505,NO,24.68,32.76,3,5.51,6106,112.383761,122.339771,131.996468,138.311597,I,Above,Gable,0,5701,,28.71692572,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 25686,NJBF000081473,105 MEADOWVIEW AVE,Pleasantville,NJ,39.41941896,-74.50876547,RES1,3001,,17,NE,1962,1962,3101,1,1,2166.764384,2166.764384,3505,NO,22.09,28.99,3,5.55,6110,112.328271,122.171412,131.798213,137.985914,I,Above,Gable,0,5701,,25.53685746,0,0,,,,1,1,,0.35,nav,1,1962,1,, 25687,NJBF000078144,78B ATLANTIC AVE,Pleasantville,NJ,39.40322836,-74.50649998,RES3C,3001,,33,E,1950,1950,3303,3,1,5968.486403,5968.486403,3507,NO,51.39,63.77,1,1.93,6110,112.497793,122.378965,132.029589,138.286661,I,Above,Flat,0,NaN,,57.57865515,0,0,,,,1,1,,0.35,nav,1,1950,3,, 25688,NJBF000074638,23 ANSLEY BLVD,Pleasantville,NJ,39.3872938,-74.52432692,RES1,3001,,16,NE,1947,1947,3102,1,1,1072.115804,1072.115804,3505,NO,13.11,18.51,3,-2.24,6106,112.242898,122.230636,131.88197,138.192725,I,Above,Hip,0,5701,,15.80937521,0,0,,,,1,1,,0.03,nav,1,1947,1,, 25689,NJBF000079833,1411 N MAIN ST,Pleasantville,NJ,39.41303896,-74.50472882,RES3C,3001,,15,E,1905,1905,3303,2,1,882.595036,882.595036,3507,NO,37.4,51.12,1,2.3,6112,112.45939,122.308461,131.94935,138.165053,I,Above,Gable,0,NaN,,44.2586895,0,1.1,,,,1,1,,0.35,nav,1,1905,2,, 25690,NJBF000079825,1411 N MAIN ST,Pleasantville,NJ,39.41299253,-74.50447016,RES3C,3001,,15,E,1905,1905,3303,2,1,1412.36707,1412.36707,3507,NO,31.95,44.7,1,0.85,6112,112.465251,122.313511,131.954849,138.170781,I,Above,Hip,0,NaN,,38.32520775,0,1.1,,,,1,1,,0.35,nav,1,1905,2,, 25691,NJBF000074758,58 TUNIS AVE,Pleasantville,NJ,39.38769202,-74.52254468,RES1,3001,,16,NE,1948,1948,3102,1,1,1038.397679,1038.397679,3505,NO,19.73,28.73,3,4.21,6106,112.278902,122.257811,131.910238,138.221617,I,Above,Gable,0,5701,,24.22852316,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25692,NJBF000074872,205 S CHESTER AVE,Pleasantville,NJ,39.38803763,-74.52048919,RES1,3001,,16,NE,1948,1948,3102,1,1,1128.098474,1128.098474,3505,NO,9.81,20.58,3,-1.66,6106,112.321424,122.290381,131.944308,138.256647,I,Above,Gable,0,5701,,15.1966851,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25693,NJBF000079361,1133 N MAIN ST,Pleasantville,NJ,39.410803,-74.50992033,GOV1,3004,,NaN,E,1969,0,3404,4,1,616.5746715,616.5746715,3507,NO,69.47,78.03,1,2.95,6106,112.365226,122.240095,131.876144,138.099994,I,Above,Gable,0,NaN,,73.74897609,0,0,,,,2,2,,0.03,nav,1,1969,4,, 25694,NJBF000079789,1133 N MAIN ST,Pleasantville,NJ,39.41284837,-74.51002049,GOV1,3004,,NaN,E,1969,0,3404,7,1,5585.108364,5585.108364,3507,NO,112.22,118.84,1,0.78,6106,112.348079,122.217202,131.850442,138.065592,I,Above,Flat,0,NaN,,115.5294763,0,0,,,,2,2,,0.03,nav,1,1969,7,, 25695,NJBF000079375,1133 N MAIN ST,Pleasantville,NJ,39.41088899,-74.50976499,GOV1,3004,,NaN,E,1969,0,3404,7,1,903.6650836,903.6650836,3507,NO,99.79,107.74,1,0.87,6106,112.367902,122.241934,131.878096,138.101638,I,Above,Gable,0,NaN,,103.7687134,0,0,,,,2,2,,0.03,nav,1,1969,7,, 25696,NJBF000079937,1133 N MAIN ST,Pleasantville,NJ,39.41339049,-74.51004849,GOV1,3004,,NaN,E,1969,0,3404,6,1,7201.492012,7201.492012,3507,NO,93.14,107.06,1,2.75,6112,112.343557,122.211111,131.843607,138.05645,I,Above,Gable,0,NaN,,100.1027283,0,0,,,,2,2,,1,nav,1,1969,6,, 25697,NJBF000074708,223 S CHESTER AVE,Pleasantville,NJ,39.387519,-74.521025,RES1,3001,,15,NE,1922,1922,3102,2,1,707.5675768,707.5675768,3505,NO,35.05,44.06,3,0.9,6106,112.314267,122.28637,131.940471,138.254378,I,Above,Hip,0,5701,,39.55346861,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 25698,NJBF000074763,220 S FRANKLIN BLVD,Pleasantville,NJ,39.38769925,-74.5211906,RES1,3001,,15,NE,1924,1924,3102,1,1,1858.832897,1858.832897,3505,NO,16.23,30.35,3,2.55,6106,112.308929,122.281565,131.935266,138.248229,I,Above,Gable,0,5701,,23.29214727,0,0,,,,1,1,,0.03,nav,1,1924,1,, 25699,NJBF000074347,19 E BAYVIEW AVE,Pleasantville,NJ,39.38600399,-74.5256295,RES1,3001,,15,NE,1914,1914,3102,2,1,1149.383786,1149.383786,3505,NO,43.72,55.1,3,7.98,6112,112.225722,122.221238,131.873206,138.187498,I,Above,Gable,0,5701,,49.40714235,0,1.2,,,,1,1,,0.35,nav,1,1914,2,, 25700,NJBF000073721,320 OAKLAND AVE,Pleasantville,NJ,39.38272835,-74.5207139,RES1,3001,,15,NE,1953,1953,3102,1,1,1241.000777,1241.000777,3505,NO,20.89,34.84,3,5.5,6106,112.366403,122.342111,132.002672,138.337066,I,Above,Flat,0,5701,,27.86634711,0,0,,,,1,1,,0.03,nav,1,1953,1,, 25701,NJBF000074466,63 ROOSEVELT DR,Pleasantville,NJ,39.38656592,-74.52309255,RES1,3001,,16,NE,1950,1950,3102,1,1,983.1405053,983.1405053,3505,NO,9.77,24.11,3,-1.59,6106,112.277034,122.259944,131.913389,138.228768,I,Above,Gable,0,5701,,16.94416739,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25702,NJBF000077752,120 CHATHAM AVE,Pleasantville,NJ,39.40071081,-74.5090924,RES1,3001,,16,NE,1952,1952,3101,1,1,1423.724124,1423.724124,3505,NO,9.72,23.76,3,-1.06,6110,112.46216,122.359315,132.009656,138.276657,I,Above,Hip,0,5701,,16.73817611,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25703,NJBF000076682,153 COLLINS AVE,Pleasantville,NJ,39.39434033,-74.51398703,RES1,3001,,15,NE,1929,1929,3101,1,1,1397.760555,1397.760555,3505,NO,13.19,18.7,3,-0.67,6106,112.40903,122.339207,131.991758,138.283296,I,Above,Gable,0,5701,,15.94062449,0,1.2,,,,1,1,,0.03,nav,1,1929,1,, 25704,NJBF000075056,111 LYONS CT,Pleasantville,NJ,39.38858486,-74.51821475,RES1,3001,,16,NE,1948,1948,3102,1,1,1010.80184,1010.80184,3505,NO,16.41,25.42,3,4.9,6106,112.366893,122.324728,131.9802,138.292621,I,Above,Flat,0,5701,,20.91600291,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25705,NJBF000074731,214 S CHESTER AVE,Pleasantville,NJ,39.38759148,-74.520302,RES1,3001,,15,NE,1925,1925,3102,2,1,1084.72275,1084.72275,3505,NO,40.37,55.3,3,3.98,6106,112.329671,122.29835,131.953052,138.267475,I,Above,Hip,0,5701,,47.83580088,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25706,NJBF000074492,401 S EDGELEY AVE,Pleasantville,NJ,39.38667852,-74.52444611,RES1,3001,,16,NE,1979,1979,3102,1,1,2057.572154,2057.572154,3505,NO,19.62,33.2,3,2.69,6106,112.245871,122.234971,131.887044,138.200184,I,Above,Hip,0,5701,,26.41202073,0,1.2,,,,1,1,,0.03,nav,1,1979,1,, 25707,NJBF000074807,213 S CHESTER AVE,Pleasantville,NJ,39.38784583,-74.52065926,RES1,3001,,16,NE,1960,1960,3102,1,1,1766.445247,1766.445247,3505,NO,20.39,29.2,3,1.69,6106,112.319403,122.289395,131.943413,138.256366,I,Above,Hip,0,5701,,24.79215462,0,0,,,,1,1,,0.03,nav,1,1960,1,, 25708,NJBF000075096,110 E BLACK HORSE PIKE,Pleasantville,NJ,39.38869805,-74.52010518,RES1,3001,,15,NE,1905,1905,3102,2,1,906.630447,906.630447,3505,NO,30.22,44.53,3,5.04,6112,112.323941,122.290243,131.943668,138.253659,I,Above,Gable,0,5701,,37.3774744,0,1.1,,,,1,1,,0.35,nav,1,1905,2,, 25709,NJBF000074344,71 E WRIGHT ST,Pleasantville,NJ,39.385989,-74.523717,RES1,3001,,16,NE,1968,1968,3102,1,1,583.8498309,583.8498309,3505,NO,19.58,34.47,3,1.93,6106,112.268472,122.255005,131.908666,138.225633,I,Above,Hip,0,5701,,27.02344328,0,0,,,,1,1,,0.03,nav,1,1968,1,, 25710,NJBF000074354,30 E BAYVIEW AVE,Pleasantville,NJ,39.386045,-74.52477299,RES1,3001,,43,NE,1920,1920,3102,1,2,1592.417831,1592.417831,3505,NO,19.55,28.39,3,2.85,6106,112.244423,122.235852,131.888505,138.203821,I,Above,Hip,0,5701,,23.96981064,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25711,NJBF000074633,213 LYONS CT,Pleasantville,NJ,39.38728132,-74.51900874,RES1,3001,,15,NE,1928,1928,3102,2,1,1214.111112,1214.111112,3505,NO,41.05,49.97,3,4.46,6106,112.361254,122.324379,131.980753,138.297875,I,Above,Hip,0,5701,,45.51013163,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 25712,NJBF000073895,325 E BAYVIEW AVE,Pleasantville,NJ,39.38382788,-74.5197828,RES1,3001,,NaN,NE,1918,1918,3102,1,1,1068.145927,1068.145927,3505,NO,18.18,30.94,3,6.68,6106,112.376565,122.34696,132.006995,138.337848,I,Above,Flat,0,5701,,24.55965332,0,0,,,,1,1,,0.03,nav,1,1918,1,, 25713,NJBF000075591,6 N HAMPDEN CT,Pleasantville,NJ,39.39042782,-74.51765253,RES1,3001,,15,NE,1915,1915,3102,2,1,1168.462956,1168.462956,3505,NO,38.85,53.6,3,1.3,6106,112.36267,122.31537,131.969004,138.274172,I,Above,Gable,0,5701,,46.22514743,0,0,,,,1,1,,0.03,nav,1,1915,2,, 25714,NJBF000074011,106 OAKLAND AVE,Pleasantville,NJ,39.38442449,-74.524834,RES1,3001,,15,NE,1922,1922,3102,1,1,610.8351101,610.8351101,3505,NO,14.87,27.59,3,0.13,6112,112.258183,122.25175,131.906542,138.228472,I,Above,Gable,0,5701,,21.23231196,0,1.2,,,,1,1,,0.35,nav,1,1922,1,, 25715,NJBF000074531,17 E WRIGHT ST,Pleasantville,NJ,39.38686803,-74.52495692,RES1,3001,,16,NE,1953,1953,3102,1,1,1733.422426,1733.422426,3505,NO,14.51,29.22,3,-0.82,6110,112.232762,122.224015,131.875375,138.187042,I,Above,Gable,0,5701,,21.8673782,0,0,,,,1,1,,0.35,nav,1,1953,1,, 25716,NJBF000074740,206 S HAMPDEN CT,Pleasantville,NJ,39.38761447,-74.51930957,RES1,3001,,15,NE,1920,1920,3102,2,1,834.3774704,834.3774704,3505,NO,39.85,46.1,3,6.1,6106,112.351495,122.315587,131.97123,138.286631,I,Above,Hip,0,5701,,42.97268528,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25717,NJBF000074788,5 ANSLEY BLVD,Pleasantville,NJ,39.38778113,-74.52544055,RES1,3001,,NaN,NE,1969,0,3102,2,1,1868.404832,1868.404832,3505,NO,44.31,53.49,3,7.8,6112,112.2137,122.205981,131.855638,138.162879,I,Above,Hip,0,5701,,48.89864844,0,0,,,,1,1,,0.35,nav,1,1969,2,, 25718,NJBF000074579,225 S HAMPDEN CT,Pleasantville,NJ,39.38709565,-74.52010362,RES1,3001,,15,NE,1912,1912,3102,2,1,1247.829954,1247.829954,3505,NO,29.55,37.03,3,-1.76,6106,112.338631,122.307019,131.962564,138.279287,I,Above,Hip,0,5701,,33.28983617,0,1.1,,,,1,1,,0.03,nav,1,1912,2,, 25719,NJBF000074063,109 E EDGEWATER AVE,Pleasantville,NJ,39.38469316,-74.52455949,RES1,3001,,15,NE,1920,1920,3102,1,1,1397.218433,1397.218433,3505,NO,21.76,27.94,3,2.91,6112,112.261791,122.253768,131.908434,138.229634,I,Above,Gable,0,5701,,24.84650694,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25720,NJBF000074050,113 E EDGEWATER AVE,Pleasantville,NJ,39.38461493,-74.52436604,RES1,3001,,14,NE,1926,1926,3102,1,1,1129.737926,1129.737926,3505,NO,15.99,28.09,3,-2.36,6112,112.266832,122.257979,131.912916,138.234705,I,Above,Flat,0,5701,,22.04054752,0,0,,,,1,1,,0.35,nav,1,1926,1,, 25721,NJBF000073679,219 E GREENFIELD AVE,Pleasantville,NJ,39.38247203,-74.52343066,RES1,3001,,NaN,NE,1969,0,3102,2,1,847.8238898,847.8238898,3505,NO,30.06,37.37,3,-1.27,6106,112.308167,122.296928,131.955457,138.287423,I,Above,Gable,0,5701,,33.71444267,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25722,NJBF000074837,19 TUNIS AVE,Pleasantville,NJ,39.38792366,-74.52414346,RES1,3001,,16,NE,1948,1948,3102,1,1,965.8185458,965.8185458,3505,NO,16.34,30.67,3,1.02,6110,112.241272,122.227291,131.87792,138.186312,I,Above,Gable,0,5701,,23.50591171,0,0,,,,1,1,,0.35,nav,1,1948,1,, 25723,NJBF000074784,210 S CHESTER AVE,Pleasantville,NJ,39.38777115,-74.52020772,RES1,3001,,15,NE,1915,1915,3102,2,1,622.5914569,622.5914569,3505,NO,29.67,42.36,3,-1.73,6106,112.330108,122.298122,131.952678,138.266449,I,Above,Gable,0,5701,,36.01135804,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 25724,NJBF000074760,210 S CHESTER AVE,Pleasantville,NJ,39.38769469,-74.5200441,RES1,3001,,15,NE,1915,1915,3102,2,1,679.9232632,679.9232632,3505,NO,34.17,45.66,3,6.37,6106,112.334448,122.301806,131.956623,138.270893,I,Above,Gable,0,5701,,39.91498982,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 25725,NJBF000073738,339 E EDGEWATER AVE,Pleasantville,NJ,39.38281626,-74.51961007,RES1,3001,,NaN,NE,1969,0,3102,2,1,1155.712278,1155.712278,3505,NO,30.18,40.05,3,5.06,6106,112.390199,122.360657,132.022105,138.357432,I,Above,Flat,0,5701,,35.11535997,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25726,NJBF000074416,62 E WRIGHT ST,Pleasantville,NJ,39.38632811,-74.5231885,RES1,3001,,16,NE,1949,1949,3102,1,1,1142.844515,1142.844515,3505,NO,23.7,35.48,3,7.36,6106,112.277094,122.260745,131.914424,138.230669,I,Above,Gable,0,5701,,29.59208739,0,0,,,,1,1,,0.03,nav,1,1949,1,, 25727,NJBF000075098,11 E DECATUR AVE,Pleasantville,NJ,39.38870347,-74.52417711,RES1,3001,,NaN,NE,1969,0,3102,2,1,1728.1211,1728.1211,3505,NO,27.9,40.57,3,4.92,6112,112.233506,122.218566,131.868077,138.173203,I,Above,Flat,0,5701,,34.23417429,0,0,,,,1,1,,0.35,nav,1,1969,2,, 25728,NJBF000079485,423 E CALIFORNIA AVE,Pleasantville,NJ,39.41135081,-74.49860496,RES3C,3001,,16,E,1995,1995,3303,1,1,1415.02612,1415.02612,3507,NO,15.89,24.35,1,2.39,6112,112.602938,122.434375,132.086632,138.309478,I,Above,Gable,0,NaN,,20.11957324,0,1.2,,,,1,1,,0.35,nav,1,1995,1,, 25729,NJBF000074824,44 TUNIS AVE,Pleasantville,NJ,39.3878825,-74.52305149,RES1,3001,,16,NE,1948,1948,3102,1,1,1122.48394,1122.48394,3505,NO,27.07,38.58,3,8.42,6106,112.265918,122.246916,131.89861,138.208567,I,Above,Gable,0,5701,,32.82426535,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25730,NJBF000074573,24 E WRIGHT ST,Pleasantville,NJ,39.38707547,-74.52446953,RES1,3001,,16,NE,1948,1948,3102,1,1,1167.278399,1167.278399,3505,NO,14.76,27.86,3,2.56,6106,112.241713,122.230411,131.881918,138.193389,I,Above,Gable,0,5701,,21.31145103,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25731,NJBF000078926,400 CEDARCREST AVE,Pleasantville,NJ,39.40838882,-74.50102181,RES3C,3001,,16,E,1992,1992,3303,1,1,1365.843024,1365.843024,3507,NO,11.56,24.09,1,0.35,6112,112.574481,122.422307,132.074427,138.310057,I,Above,Gable,0,NaN,,17.82602814,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25732,NJBF000075080,49 E BLACK HORSE PIKE,Pleasantville,NJ,39.3886412,-74.52188138,RES1,3001,,NaN,NE,1910,1924,3102,2,1,1522.37611,1522.37611,3505,NO,31.1,42.08,3,7.49,6112,112.285044,122.259578,131.911345,138.219567,I,Above,Flat,0,5701,,36.5906314,0,1.2,,,,1,1,,0.35,nav,1,1910,2,, 25733,NJBF000073663,321 OAKLAND AVE,Pleasantville,NJ,39.38235149,-74.5208915,RES1,3001,,16,NE,2016,2016,3102,1,1,965.6006145,965.6006145,3505,NO,10.24,17.18,3,-2.77,6106,112.366091,122.342939,132.003811,138.339575,I,Above,Hip,0,5701,,13.71346741,0,0,,,,1,1,,0.03,nav,1,2016,1,, 25734,NJBF000074103,41 E EDGEWATER AVE,Pleasantville,NJ,39.38490955,-74.52523734,RES1,3001,,15,NE,1920,1920,3102,1,1,1537.638092,1537.638092,3505,NO,21.73,27.01,3,4.73,6110,112.244625,122.239574,131.89337,138.212725,I,Above,Hip,0,5701,,24.36810754,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25735,NJBF000075149,112 S HAMPDEN CT,Pleasantville,NJ,39.38885707,-74.51856823,RES1,3001,,15,NE,1922,1922,3102,2,1,956.9072046,956.9072046,3505,NO,39.4,45.93,3,4.63,6106,112.356586,122.31566,131.970417,138.281339,I,Above,Hip,0,5701,,42.66018281,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 25736,NJBF000074031,40 OAKLAND AVE,Pleasantville,NJ,39.38454338,-74.52558783,RES1,3001,,15,NE,1926,1926,3102,2,1,1054.859939,1054.859939,3505,NO,38.46,48.84,3,3.11,6110,112.240229,122.237247,131.891244,138.211611,I,Above,Gable,0,5701,,43.65237884,0,1.1,,,,1,1,,0.35,nav,1,1926,2,, 25737,NJBF000073078,40 PLAZA PL,Pleasantville,NJ,39.37736552,-74.53320334,RES1,3001,,16,NE,1920,1920,3101,2,1,1430.929242,1430.929242,3505,NO,27.56,40.09,3,1.33,6112,112.139296,122.178939,131.837076,138.173545,I,Above,Hip,0,5701,,33.82905169,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 25738,NJBF000076590,138 E ADAMS AVE,Pleasantville,NJ,39.39401314,-74.5149781,RES1,3001,,15,NE,1936,1936,3101,1,1,1517.984513,1517.984513,3505,NO,24.07,38,3,8.81,6110,112.390072,122.325133,131.976969,138.269187,I,Above,Gable,0,5701,,31.03677819,0,1.1,,,,1,1,,0.35,nav,1,1936,1,, 25739,NJBF000075046,55 E BLACK HORSE PIKE,Pleasantville,NJ,39.38853721,-74.52131492,COM1,3003,,NaN,ME,1973,1973,3401,1,1,3958.213539,3958.213539,3507,NO,18.48,27.47,1,0.95,6110,112.298548,122.270624,131.923078,138.232393,I,Above,Flat,0,NaN,,22.97287988,0,0,,,,1,1,,0.35,nav,1,1973,1,, 25740,NJBF000074057,32 OAKLAND AVE,Pleasantville,NJ,39.38466137,-74.52597275,RES1,3001,,15,NE,1924,1924,3102,2,1,1480.975447,1480.975447,3505,NO,29.97,36.19,3,-2.49,6112,112.230527,122.229245,131.882761,138.202085,I,Above,Gable,0,5701,,33.07661237,0,1.1,,,,1,1,,0.35,nav,1,1924,2,, 25741,NJBF000074049,36 OAKLAND AVE,Pleasantville,NJ,39.38461432,-74.52581036,RES1,3001,,15,NE,1922,1922,3102,2,1,1257.390903,1257.390903,3505,NO,25.07,30.26,3,4,6112,112.234606,122.232602,131.886317,138.206071,I,Above,Gable,0,5701,,27.66775824,0,1.1,,,,1,1,,0.35,nav,1,1922,2,, 25742,NJBF000076034,122 OLD TURNPIKE,Pleasantville,NJ,39.39201114,-74.51741653,IND2,3001,959,NaN,ME,1950,1950,3401,1,1,7420.391417,7420.391417,3507,NO,18.63,28.19,1,0.24,6106,112.353824,122.303008,131.954788,138.253485,I,Above,Flat,0,NaN,,23.40932502,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25743,NJBF000076689,149 COLLINS AVE,Pleasantville,NJ,39.39438416,-74.51414862,RES1,3001,,15,NE,1936,1936,3101,1,1,1822.686796,1822.686796,3505,NO,21.78,33.51,3,5.98,6106,112.405086,122.33589,131.988195,138.279433,I,Above,Hip,0,5701,,27.64326017,0,0,,,,1,1,,0.03,nav,1,1936,1,, 25744,NJBF000073850,344 E BAYVIEW AVE,Pleasantville,NJ,39.38356269,-74.51798987,COM1,3003,,NaN,ME,1969,0,3401,1,1,8948.039874,8948.039874,3507,NO,19.38,28.3,1,2.49,6102,112.419101,122.381386,132.043425,138.377368,I,Above,Flat,0,NaN,,23.83924008,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25745,NJBF000074759,207 S HAMPDEN CT,Pleasantville,NJ,39.38769217,-74.51975099,RES1,3001,,45,NE,1923,1923,3102,1,2,1516.879499,1516.879499,3505,NO,9.53,22.36,3,-1.45,6106,112.340983,122.307,131.962107,138.276708,I,Above,Gable,0,5701,,15.94579259,0,0,,,,1,1,,0.03,nav,1,1923,1,, 25746,NJBF000074831,214 S FRANKLIN BLVD,Pleasantville,NJ,39.3879097,-74.52108689,RES1,3001,,15,NE,1920,1920,3102,2,1,930.8758381,930.8758381,3505,NO,35.19,48.62,3,-2.47,6106,112.309312,122.28119,131.934709,138.246908,I,Above,Gable,0,5701,,41.90448751,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25747,NJBF000074364,28 E BAYVIEW AVE,Pleasantville,NJ,39.38608107,-74.52490417,RES1,3001,,43,NE,1920,1920,3102,1,2,1307.859861,1307.859861,3505,NO,16.11,22.48,3,2.83,6106,112.241171,122.233173,131.885662,138.20065,I,Above,Gable,0,5701,,19.29595249,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25748,NJBF000074686,59 TUNIS AVE,Pleasantville,NJ,39.38745186,-74.5227704,RES1,3001,,16,NE,1948,1948,3102,2,1,1183.329526,1183.329526,3505,NO,25.5,32.1,3,2.03,6106,112.276089,122.256361,131.908904,138.221004,I,Above,Hip,0,5701,,28.80092509,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 25749,NJBF000074664,61 TUNIS AVE,Pleasantville,NJ,39.38738524,-74.52261718,RES1,3001,,16,NE,1955,1955,3102,2,1,1172.838371,1172.838371,3505,NO,36.14,42.61,3,3.69,6106,112.280104,122.259753,131.912529,138.225098,I,Above,Gable,0,5701,,39.37559938,0,0,,,,1,1,,0.03,nav,1,1955,2,, 25750,NJBF000075585,1 N HAMPDEN CT,Pleasantville,NJ,39.39041141,-74.51811267,RES1,3001,,15,NE,1915,1915,3102,2,1,1148.029715,1148.029715,3505,NO,29.93,42.66,3,7.69,6112,112.352644,122.30744,131.960613,138.265421,I,Above,Hip,0,5701,,36.29269656,0,0,,,,1,1,,0.35,nav,1,1915,2,, 25751,NJBF000076332,141 CHARLES AVE,Pleasantville,NJ,39.3930114,-74.51618801,RES1,3001,,16,NE,1950,1950,3101,1,1,1428.40346,1428.40346,3505,NO,25.12,31.25,3,8.56,6112,112.372158,122.314242,131.966039,138.261559,I,Above,Gable,0,5701,,28.18592012,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25752,NJBF000078031,145 E DELILAH RD,Pleasantville,NJ,39.40244773,-74.50820056,COM1,3001,959,NaN,ME,1955,1955,3401,1,1,2565.905365,2565.905365,3507,NO,18.4,25.92,1,0.97,6106,112.467265,122.357002,132.0063,138.266214,I,Above,Flat,0,NaN,,22.16129107,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25753,NJBF000079017,410 MONTCLAIR DR,Pleasantville,NJ,39.4090535,-74.5002735,RES3C,3001,,16,E,1960,1960,3303,1,1,976.3408957,976.3408957,3507,NO,11.28,20.38,1,0.76,6112,112.585272,122.428665,132.081107,138.313877,I,Above,Hip,0,NaN,,15.82818277,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25754,NJBF000079010,414 MONTCLAIR DR,Pleasantville,NJ,39.40898765,-74.5000965,RES3C,3001,,16,E,1960,1960,3303,1,1,1230.410033,1230.410033,3507,NO,18.45,30.86,1,1.27,6112,112.589605,122.432497,132.085284,138.318317,I,Above,Hip,0,NaN,,24.65382003,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25755,NJBF000079003,120 ORCHARDS,Pleasantville,NJ,39.40894684,-74.51582081,RES1,3001,,33,NE,1988,1988,3101,2,1,5066.503611,5066.503611,3505,NO,34.59,41.25,3,7.23,6112,112.252508,122.155582,131.785827,138.014486,I,Above,Gable,0,5701,,37.92080251,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25756,NJBF000078944,120 ORCHARDS,Pleasantville,NJ,39.40854293,-74.51480234,RES1,3001,,33,NE,1988,1988,3101,2,1,3139.649671,3139.649671,3505,NO,30.54,39.88,3,3.35,6112,112.277352,122.177627,131.809828,138.040831,I,Above,Gable,0,5701,,35.20929952,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25757,NJBF000078993,120 ORCHARDS,Pleasantville,NJ,39.40887736,-74.51476757,RES1,3001,,33,NE,1988,1988,3101,2,1,5368.467356,5368.467356,3505,NO,20.12,26.58,3,-2.19,6112,112.275615,122.174778,131.806565,138.036181,I,Above,Gable,0,5701,,23.34972936,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25758,NJBF000079023,120 ORCHARDS,Pleasantville,NJ,39.40906899,-74.51470052,RES1,3001,,33,NE,1988,1988,3101,2,1,3828.038518,3828.038518,3505,NO,29.23,40.46,3,-2.86,6112,112.275639,122.173973,131.805588,138.034436,I,Above,Gable,0,5701,,34.84412924,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25759,NJBF000079008,120 ORCHARDS,Pleasantville,NJ,39.40897472,-74.51394026,RES1,3001,,33,NE,1988,1988,3101,2,1,4596.619084,4596.619084,3505,NO,30.66,39.29,3,3.63,6112,112.292658,122.188303,131.8211,138.050787,I,Above,Gable,0,5701,,34.97435859,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25760,NJBF000074706,305 S FRANKLIN BLVD,Pleasantville,NJ,39.38750914,-74.52195317,RES1,3001,,16,NE,1947,1947,3102,2,1,1452.504946,1452.504946,3505,NO,27.92,35.5,3,1.66,6106,112.293732,122.27014,131.923371,138.236231,I,Above,Hip,0,5701,,31.70782633,0,0.2,,,,1,1,,0.03,nav,1,1947,2,, 25761,NJBF000075076,306 S MAIN ST,Pleasantville,NJ,39.38863732,-74.52490788,COM1,3003,,NaN,ME,2010,2010,3401,1,1,11692.02322,11692.02322,3507,NO,15.06,21.7,1,0.95,6110,112.217859,122.206414,131.855345,138.159782,I,Above,Flat,0,NaN,,18.38054021,0,0,,,,1,1,,1,nav,1,2010,1,, 25762,NJBF000073146,34 E ASHLAND AVE,Pleasantville,NJ,39.37826883,-74.53303369,RES1,3001,,16,NE,1951,1951,3101,1,1,1389.378243,1389.378243,3505,NO,18.6,29.23,3,4.5,6112,112.134018,122.172389,131.829439,138.162647,I,Above,Gable,0,5701,,23.91506982,0,0,,,,1,1,,0.35,nav,1,1951,1,, 25763,NJBF000079097,1105 SHANE CT,Pleasantville,NJ,39.40954071,-74.51105824,RES1,3001,,16,NE,2005,2005,3101,2,1,918.7558961,918.7558961,3505,NO,32.08,46.03,3,-1.99,6112,112.350256,122.233115,131.869194,138.097927,I,Above,Gable,0,5701,,39.05696084,0,0,,,,1,1,,0.03,nav,1,2005,2,, 25764,NJBF000075466,14 S CHESTER AVE,Pleasantville,NJ,39.38996271,-74.51891222,RES1,3001,,15,NE,1915,1915,3102,1,1,1532.685904,1532.685904,3505,NO,8.65,16.44,3,-2.25,6112,112.338973,122.298041,131.950981,138.256896,I,Above,Gable,0,5701,,12.54320204,0,0,,,,1,1,,0.35,nav,1,1915,1,, 25765,NJBF000074694,218 S CHESTER AVE,Pleasantville,NJ,39.38746905,-74.520374,RES1,3001,,15,NE,1924,1924,3102,2,1,834.2312734,834.2312734,3505,NO,25.94,35.64,3,0.72,6106,112.329192,122.298358,131.953152,138.268007,I,Above,Gable,0,5701,,30.79103575,0,0,,,,1,1,,0.03,nav,1,1924,2,, 25766,NJBF000074053,201 VENICE AVENUE,Pleasantville,NJ,39.38464099,-74.50709746,RES3C,3001,,16,E,1955,1955,3303,1,1,4702.728609,4702.728609,3507,NO,14.81,20.3,1,2.75,6106,112.650886,122.562879,132.234971,138.572292,I,Above,Hip,0,NaN,,17.55033938,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 25767,NJBF000074913,102 TOULON AVENUE,Pleasantville,NJ,39.38816483,-74.5160475,RES1,3001,,16,NE,2003,2003,3102,1,1,1894.742754,1894.742754,3505,NO,15.53,22.05,3,-0.93,6106,112.418827,122.367373,132.025621,138.341839,I,Above,Gable,0,5701,,18.78941587,0,0,,,,1,1,,0.03,nav,1,2003,1,, 25768,NJBF000074131,210 CORDOVA AVENUE,Pleasantville,NJ,39.38502778,-74.51399393,RES1,3001,,16,NE,1925,1925,3102,2,1,514.0188775,514.0188775,3505,NO,34.09,48.38,3,5.67,6106,112.493956,122.436586,132.100812,138.432195,I,Above,Hip,0,5701,,41.23364731,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25769,NJBF000074113,1000 BAY DRIVE,Pleasantville,NJ,39.38495548,-74.51404845,RES1,3001,,16,NE,1925,1925,3102,2,1,1350.546154,1350.546154,3505,NO,35.73,49.8,3,0.08,6106,112.493456,122.436399,132.100656,138.43231,I,Above,Hip,0,5701,,42.76396636,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25770,NJBF000073691,7079 BLACK HORSE PIKE,Pleasantville,NJ,39.3825085,-74.502146,COM1,3003,530,NaN,ME,1969,0,3401,1,1,1723.650399,1723.650399,3507,NO,21.24,30.23,1,2.28,6106,112.781887,122.673424,132.353401,138.70163,I,Above,Flat,0,NaN,,25.73480472,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25771,NJBF000081489,101 MEADOWVIEW AVE,Pleasantville,NJ,39.41951514,-74.50923777,RES1,3001,,17,NE,1959,1959,3101,1,1,2264.243139,2264.243139,3505,NO,21.85,27.64,3,3.11,6106,112.317668,122.162116,131.788064,137.975199,I,Above,Gable,0,5701,,24.74199772,0,0,,,,1,1,,0.03,nav,1,1959,1,, 25772,NJBF000073560,205 FOX PLACE,Pleasantville,NJ,39.3816165,-74.49994849,RES1,3001,,16,NE,1950,1950,3101,2,1,1218.321763,1218.321763,3505,NO,23.9,38.54,3,2.41,6106,112.839682,122.722033,132.405462,138.75791,I,Above,Gable,0,5701,,31.21578838,0,0,,,,1,1,,0.03,nav,1,1950,2,, 25773,NJBF000080307,39 OREGON AVE,Pleasantville,NJ,39.41463461,-74.50542363,RES1,3001,,17,NE,1955,1955,3101,1,1,1272.806493,1272.806493,3505,NO,27.48,38.58,3,8.9,6106,112.43281,122.279667,131.91753,138.12636,I,Above,Gable,0,5701,,33.03025794,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25774,NJBF000081454,111 MEADOWVIEW AVE,Pleasantville,NJ,39.41930415,-74.50809111,RES1,3001,,17,NE,1963,1963,3101,1,1,2515.258405,2515.258405,3505,NO,24.46,31.96,3,7.12,6112,112.34324,122.18444,131.812431,138.000829,I,Above,Flat,0,5701,,28.20980395,0,0,,,,1,1,,0.35,nav,1,1963,1,, 25775,NJBF000081415,104 MEADOWVIEW AVE,Pleasantville,NJ,39.41907149,-74.50882349,RES1,3001,,17,NE,1965,1965,3101,1,1,1240.929047,1240.929047,3505,NO,15.2,28.78,3,-1.63,6112,112.329442,122.173986,131.801127,137.990289,I,Above,Gable,0,5701,,21.99093965,0,0,,,,1,1,,0.35,nav,1,1965,1,, 25776,NJBF000081408,506 S NEW RD,Pleasantville,NJ,39.4190495,-74.50943149,RES1,3001,,17,NE,1965,1965,3101,1,1,613.6223747,613.6223747,3505,NO,18.02,32.42,3,5.91,6106,112.316798,122.163537,131.789764,137.978814,I,Above,Gable,0,5701,,25.21672323,0,0,,,,1,1,,0.03,nav,1,1965,1,, 25777,NJBF000081399,506 S NEW RD,Pleasantville,NJ,39.41902894,-74.50965506,RES1,3001,,17,NE,1965,1965,3101,1,1,1827.287354,1827.287354,3505,NO,14.04,19.28,3,-1.69,6106,112.312221,122.159811,131.785717,137.974772,I,Above,Gable,0,5701,,16.66180447,0,0,,,,1,1,,0.03,nav,1,1965,1,, 25778,NJBF000081468,107 MEADOWVIEW AVE,Pleasantville,NJ,39.41938776,-74.50855675,RES1,3001,,17,NE,1962,1962,3101,1,1,2094.897348,2094.897348,3505,NO,22.33,29.54,3,5.22,6112,112.332859,122.175385,131.802548,137.990447,I,Above,Gable,0,5701,,25.93134159,0,0,,,,1,1,,0.35,nav,1,1962,1,, 25779,NJBF000077696,553 ABSECON BLVD,Pleasantville,NJ,39.40038354,-74.49299845,RES4,3001,280,NaN,ME,1969,0,3401,3,1,6742.695894,6742.695894,3507,NO,53.08,60.67,1,0.73,6106,112.814701,122.648551,132.321731,138.589729,I,Above,Flat,0,NaN,,56.87173751,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25780,NJBF000082025,211-215 S NEW RD,Pleasantville,NJ,39.42569699,-74.5070905,COM1,3001,733,NaN,ME,1969,0,3401,2,1,4474.614753,4474.614753,3507,NO,27.7,35.02,1,0.97,6110,112.321199,122.135978,131.757948,137.919388,I,Above,Gable,0,NaN,,31.35806197,0,0,,,,1,1,,1,nav,1,1969,2,, 25781,NJBF000081895,327 S NEW RD,Pleasantville,NJ,39.42429881,-74.50766495,RES1,3001,,17,NE,1920,1920,3102,2,1,1542.331025,1542.331025,3505,NO,32.55,39.36,3,5.29,6106,112.318453,122.140345,131.76301,137.930257,I,Above,Flat,0,5701,,35.95779783,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25782,NJBF000081919,321 S NEW RD,Pleasantville,NJ,39.42451186,-74.50753411,RES1,3001,,17,NE,1930,1930,3102,2,1,1309.053233,1309.053233,3505,NO,27.15,42.07,3,3.84,6106,112.319775,122.140444,131.763071,137.929446,I,Above,Gable,0,5701,,34.60837019,0,0,,,,1,1,,0.03,nav,1,1930,2,, 25783,NJBF000081749,1 HILLSIDE CIRCLE,Pleasantville,NJ,39.42252105,-74.4922456,RES1,3001,,17,NE,1981,1981,3101,2,1,3187.793793,3187.793793,3505,NO,35.87,45.93,3,4.42,6112,112.653085,122.431114,132.08096,138.255306,I,Above,Gable,0,5701,,40.90089936,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 25784,NJBF000080449,720 S NEW RD UNIT 1A,Pleasantville,NJ,39.41509383,-74.50962808,RES1,3001,,33,NE,1972,1972,3101,2,1,11894.55913,11894.55913,3505,NO,29.03,37.48,3,-1.66,6112,112.340263,122.200898,131.831824,138.037597,I,Above,Gable,0,5701,,33.25712714,0,0,,,,1,1,,0.35,nav,1,1972,2,, 25785,NJBF000074890,103 GENOA AVENUE,Pleasantville,NJ,39.3880844,-74.5156515,RES1,3001,,16,NE,1950,1950,3102,1,1,1428.815543,1428.815543,3505,NO,15.63,24.67,3,-0.26,6106,112.428334,122.375196,132.03396,138.350865,I,Above,Hip,0,5701,,20.15296004,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 25786,NJBF000073968,1604 BAY DRIVE,Pleasantville,NJ,39.38424647,-74.50771295,RES3C,3001,,16,E,1925,1925,3303,2,1,1353.032492,1353.032492,3507,NO,34.64,48.67,1,2.69,6106,112.641084,122.556111,132.227947,138.566734,I,Above,Gable,0,NaN,,41.65762221,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25787,NJBF000074819,103 PALERMO AVENUE,Pleasantville,NJ,39.38787563,-74.51477026,RES1,3001,,16,NE,1950,1950,3102,1,1,1643.642682,1643.642682,3505,NO,15.35,27.27,3,3.54,6106,112.449819,122.392955,132.052908,138.371436,I,Above,Flat,0,5701,,21.31007721,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25788,NJBF000074000,14 EMPIRE DRIVE,Pleasantville,NJ,39.38437882,-74.50620243,RES3C,3001,,35,E,1980,1980,3303,3,1,12048.08403,12048.08403,3507,NO,45.27,50.71,1,0.97,6106,112.673309,122.581536,132.254921,138.593754,I,Above,Flat,0,NaN,,47.99054629,0,0,,,,1,1,,0.03,nav,1,1980,3,, 25789,NJBF000074264,204 FLORENCE AVENUE,Pleasantville,NJ,39.38564516,-74.5145382,RES1,3001,,16,NE,1930,1930,3102,2,1,1401.484581,1401.484581,3505,NO,39.43,47.45,3,2.24,6106,112.475963,122.420478,132.083405,138.411689,I,Above,Flat,0,5701,,43.43999311,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 25790,NJBF000074135,1010 BAY DRIVE,Pleasantville,NJ,39.38504172,-74.51359954,RES1,3001,,16,NE,1925,1925,3102,2,1,3215.463006,3215.463006,3505,NO,31.99,40.72,3,0.31,6106,112.50258,122.443408,132.108024,138.439661,I,Above,Hip,0,5701,,36.35707023,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25791,NJBF000074777,7004 BLACK HORSE PIKE,Pleasantville,NJ,39.3877614,-74.51722231,COM1,3003,,NaN,ME,1969,0,3401,3,1,3812.963614,3812.963614,3507,NO,51.53,59.3,1,2.65,6106,112.396494,122.350868,132.008417,138.325285,I,Above,Flat,0,NaN,,55.41103274,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25792,NJBF000078529,212 E LEEDS AVE,Pleasantville,NJ,39.40601549,-74.5035325,RES3C,3001,,NaN,E,1924,0,3303,4,1,858.0465501,858.0465501,3507,NO,65.46,71.37,1,-0.32,6110,112.539393,122.402499,132.05383,138.299502,I,Above,Gable,0,NaN,,68.41391314,0,0,,,,1,1,,0.35,nav,1,1924,4,, 25793,NJBF000077740,122 CHATHAM AVE,Pleasantville,NJ,39.40064102,-74.50892618,RES1,3001,,16,NE,1955,1955,3101,1,1,1162.221964,1162.221964,3505,NO,12.37,25.17,3,-2.63,6110,112.466351,122.362976,132.013625,138.280988,I,Above,Flat,0,5701,,18.77004835,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25794,NJBF000074689,223 S CHESTER AVE,Pleasantville,NJ,39.38745454,-74.52083198,RES1,3001,,15,NE,1922,1922,3102,2,1,882.2944616,882.2944616,3505,NO,40.75,46.2,3,8,6106,112.319143,122.290438,131.944809,138.259206,I,Above,Hip,0,5701,,43.47319295,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 25795,NJBF000074980,33 E DECATUR AVE,Pleasantville,NJ,39.38835457,-74.52325567,RES1,3001,,15,NE,1925,1925,3102,2,1,1477.957773,1477.957773,3505,NO,31.48,42.41,3,6.13,6112,112.257091,122.238383,131.889236,138.196977,I,Above,Gable,0,5701,,36.94114016,0,0,,,,1,1,,0.35,nav,1,1925,2,, 25796,NJBF000075172,110 S HAMPDEN CT,Pleasantville,NJ,39.38893597,-74.51854718,RES1,3001,,15,NE,1920,1920,3102,2,1,1046.824797,1046.824797,3505,NO,43.9,55.52,3,8.71,6106,112.356334,122.315204,131.969879,138.280488,I,Above,Hip,0,5701,,49.71375185,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25797,NJBF000075249,103 S HAMPDEN CT,Pleasantville,NJ,39.38922601,-74.51885804,RES1,3001,,45,NE,1915,1915,3102,2,2,1425.294628,1425.294628,3505,NO,35.81,41.91,3,4.91,6112,112.34681,122.306692,131.960667,138.269741,I,Above,Hip,0,5701,,38.8633657,0,0,,,,1,1,,0.35,nav,1,1915,2,, 25798,NJBF000074623,52 ANSLEY BLVD,Pleasantville,NJ,39.38722646,-74.52311315,RES1,3001,,16,NE,1948,1948,3102,1,1,1572.840968,1572.840968,3505,NO,17.3,22.35,3,6.3,6106,112.270527,122.252691,131.905224,138.217833,I,Above,Gable,0,5701,,19.82456345,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25799,NJBF000074703,53 TUNIS AVE,Pleasantville,NJ,39.38750726,-74.52294653,RES1,3001,,16,NE,1948,1948,3102,1,1,1102.018442,1102.018442,3505,NO,23.58,33.2,3,6.69,6106,112.271651,122.252673,131.904977,138.216628,I,Above,Gable,0,5701,,28.39456432,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25800,NJBF000074652,208 S HAMPDEN CT,Pleasantville,NJ,39.38735049,-74.51931565,RES1,3001,,16,NE,1945,1945,3102,1,1,615.8036684,615.8036684,3505,NO,15.95,28.16,3,2.47,6106,112.353796,122.318245,131.974227,138.290734,I,Above,Gable,0,5701,,22.05100345,0,0,,,,1,1,,0.03,nav,1,1945,1,, 25801,NJBF000074845,38 TUNIS AVE,Pleasantville,NJ,39.38796326,-74.5232587,RES1,3001,,15,NE,1948,1948,3102,1,1,1244.981341,1244.981341,3505,NO,15.19,23.85,3,0.91,6106,112.260569,122.242423,131.893813,138.203178,I,Above,Gable,0,5701,,19.51836554,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25802,NJBF000074935,26 TUNIS AVE,Pleasantville,NJ,39.3882182,-74.5239115,RES1,3001,,16,NE,1957,1957,3102,1,1,3752.326024,3752.326024,3505,NO,17.08,29.13,3,2.5,6110,112.243774,122.2283,131.878734,138.18621,I,Above,Gable,0,5701,,23.10584678,0,1.2,,,,1,1,,0.35,nav,1,1957,1,, 25803,NJBF000075148,100 E BLACK HORSE PIKE,Pleasantville,NJ,39.38885337,-74.52041289,COM1,3003,,NaN,ME,1969,0,3401,1,1,1220.620179,1220.620179,3507,NO,17.67,25.09,1,1.93,6112,112.315704,122.2832,131.936112,138.245117,I,Above,Flat,0,NaN,,21.38209754,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25804,NJBF000075187,111 S HAMPDEN CT,Pleasantville,NJ,39.38899468,-74.51916143,RES1,3001,,15,NE,1915,1915,3102,2,1,757.4266938,757.4266938,3505,NO,38,47.12,3,5.07,6112,112.342185,122.303767,131.957742,138.26748,I,Above,Gable,0,5701,,42.5626186,0,1.2,,,,1,1,,0.35,nav,1,1915,2,, 25805,NJBF000077812,112 CHATHAM AVE,Pleasantville,NJ,39.40099522,-74.50974548,RES1,3001,,16,NE,1952,1952,3101,1,1,1375.861331,1375.861331,3505,NO,22.18,36.61,3,4.21,6112,112.445612,122.344828,131.993944,138.259476,I,Above,Gable,0,5701,,29.39370414,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25806,NJBF000073808,313 E EDGEWATER AVE,Pleasantville,NJ,39.38329792,-74.52075645,RES1,3001,,14,NE,1923,1923,3102,2,1,1036.44974,1036.44974,3505,NO,34.63,40.49,3,0.41,6106,112.359953,122.335375,131.995187,138.327131,I,Above,Gable,0,5701,,37.56301777,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 25807,NJBF000077795,114 CHATHAM AVE,Pleasantville,NJ,39.40092067,-74.5095624,RES1,3001,,16,NE,1952,1952,3101,1,1,825.0147,825.0147,3505,NO,11.51,16.57,3,-1.3,6112,112.450202,122.348829,131.998281,138.264203,I,Above,Gable,0,5701,,14.03922835,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25808,NJBF000074604,215 LYONS CT,Pleasantville,NJ,39.38717546,-74.51907946,RES1,3001,,15,NE,1925,1925,3102,2,1,1011.795258,1011.795258,3505,NO,24.9,34.07,3,2.37,6106,112.36068,122.324255,131.980698,138.298194,I,Above,Hip,0,5701,,29.48731334,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 25809,NJBF000075061,118 S HAMPDEN CT,Pleasantville,NJ,39.38860751,-74.51871517,RES1,3001,,15,NE,1920,1920,3102,1,1,1798.488129,1798.488129,3505,NO,17.36,32.12,3,1.36,6106,112.355594,122.315673,131.970609,138.282433,I,Above,Hip,0,5701,,24.74025482,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25810,NJBF000075055,200 E BLACK HORSE PIKE,Pleasantville,NJ,39.38858456,-74.51970592,RES1,3001,,16,NE,1910,1910,3102,2,1,1477.130259,1477.130259,3505,NO,34.07,47.41,3,-2.12,6110,112.33382,122.298452,131.952424,138.263317,I,Above,Hip,0,5701,,40.73870688,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 25811,NJBF000075195,101 LYONS CT,Pleasantville,NJ,39.38903488,-74.51799335,RES1,3001,,15,NE,1929,1929,3102,2,1,2066.781053,2066.781053,3505,NO,36.86,47.99,3,2.23,6106,112.367714,122.323935,131.979047,138.289781,I,Above,Gable,0,5701,,42.4261599,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 25812,NJBF000075086,13 E DECATUR AVE,Pleasantville,NJ,39.38865616,-74.52404545,RES1,3001,,16,NE,1949,1949,3102,1,1,1250.931576,1250.931576,3505,NO,10.69,16.17,3,0.19,6112,112.236859,122.221375,131.871075,138.176566,I,Above,Flat,0,5701,,13.43026139,0,0,,,,1,1,,0.35,nav,1,1949,1,, 25813,NJBF000076558,148 E ADAMS AVE,Pleasantville,NJ,39.39389632,-74.5146667,RES1,3001,,15,NE,1935,1935,3101,1,1,1369.261863,1369.261863,3505,NO,20.63,32.62,3,7.43,6106,112.397932,122.331838,131.984186,138.277129,I,Above,Gable,0,5701,,26.62424733,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 25814,NJBF000075443,6 S HAMPDEN CT,Pleasantville,NJ,39.38988686,-74.51794075,RES1,3001,,15,NE,1925,1925,3102,1,1,1587.405473,1587.405473,3505,NO,10.01,18.1,3,-1.01,6110,112.361155,122.315945,131.969992,138.277175,I,Above,Hip,0,5701,,14.0550031,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25815,NJBF000076573,144 E ADAMS AVE,Pleasantville,NJ,39.3939522,-74.51480826,RES1,3001,,15,NE,1930,1930,3101,1,1,1678.391046,1678.391046,3505,NO,15.4,21.75,3,3.99,6106,112.394342,122.328767,131.980879,138.273481,I,Above,Hip,0,5701,,18.57144093,0,0,,,,1,1,,0.03,nav,1,1930,1,, 25816,NJBF000076172,115 HARRIS AVE,Pleasantville,NJ,39.39247514,-74.51779274,RES1,3001,,15,NE,1925,1925,3101,1,1,972.2997058,972.2997058,3505,NO,17.19,27.64,3,3.37,6112,112.341453,122.291546,131.942295,138.238695,I,Above,Hip,0,5701,,22.41623425,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25817,NJBF000074068,124 E EDGEWATER AVE,Pleasantville,NJ,39.38471895,-74.52358872,RES1,3001,,15,NE,1915,1915,3102,2,1,1485.494844,1485.494844,3505,NO,34.69,45.32,3,-2.26,6106,112.283191,122.270559,131.92603,138.248438,I,Above,Hip,0,5701,,40.00106072,0,0,,,,1,1,,0.03,nav,1,1915,2,, 25818,NJBF000077290,141 LORAINE AVE,Pleasantville,NJ,39.39768068,-74.51135344,RES1,3001,,15,NE,1910,1910,3101,2,1,713.0786008,713.0786008,3505,NO,29.1,34.17,3,3.62,6110,112.438165,122.350902,132.002265,138.281165,I,Above,Gable,0,5701,,31.63569231,0,0,,,,1,1,,0.35,nav,1,1910,2,, 25819,NJBF000076851,136 COLLINS AVE,Pleasantville,NJ,39.39505599,-74.51422399,RES1,3001,,15,NE,1925,1925,3101,2,1,537.4662391,537.4662391,3505,NO,31.72,44.92,3,4,6112,112.397631,122.327565,131.978896,138.267228,I,Above,Gable,0,5701,,38.32031461,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 25820,NJBF000075957,22 N FRANKLIN BLVD,Pleasantville,NJ,39.39175477,-74.51845261,IND2,3001,959,NaN,ME,1969,0,3401,2,1,16522.03413,16522.03413,3507,NO,25.05,35.23,1,1.99,6106,112.3332,122.287426,131.93844,138.237258,I,Above,Hip,0,NaN,,30.13847228,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25821,NJBF000076539,152 E ADAMS AVE,Pleasantville,NJ,39.3938307,-74.51449297,RES1,3001,,15,NE,1934,1934,3101,1,1,1551.386586,1551.386586,3505,NO,14.37,24.75,3,-0.08,6106,112.402327,122.335586,131.988219,138.281564,I,Above,Gable,0,5701,,19.55918411,0,0,,,,1,1,,0.03,nav,1,1934,1,, 25822,NJBF000076470,165 E ADAMS AVE,Pleasantville,NJ,39.39354646,-74.51474881,RES1,3001,,16,NE,1997,1997,3101,2,1,762.5258777,762.5258777,3505,NO,27.68,35.45,3,1.37,6106,112.399179,122.334041,131.986755,138.281125,I,Above,Flat,0,5701,,31.56922839,0,0,,,,1,1,,0.03,nav,1,1997,2,, 25823,NJBF000074084,120 E EDGEWATER AVE,Pleasantville,NJ,39.38480046,-74.52379546,RES1,3001,,16,NE,1988,1988,3102,1,1,1079.560577,1079.560577,3505,NO,21.61,33.88,3,4.94,6110,112.277833,122.266085,131.921269,138.243066,I,Above,Hip,0,5701,,27.74738951,0,1.2,,,,1,1,,0.35,nav,1,1988,1,, 25824,NJBF000074108,120 E EDGEWATER AVE,Pleasantville,NJ,39.38492918,-74.52364693,RES1,3001,,16,NE,1988,1988,3102,1,1,596.5228828,596.5228828,3505,NO,18.29,31.69,3,6.82,6110,112.279923,122.267337,131.922479,138.243938,I,Above,Flat,0,5701,,24.98582915,0,1.2,,,,1,1,,0.35,nav,1,1988,1,, 25825,NJBF000078323,1001 IOWA AVE,Pleasantville,NJ,39.40473799,-74.5060235,RES3C,3001,,16,E,1977,1977,3303,1,1,1809.238471,1809.238471,3507,NO,19.94,32.82,1,2.58,6110,112.495897,122.371708,132.021092,138.271835,I,Above,Gable,0,NaN,,26.37861414,0,0,,,,1,1,,0.35,nav,1,1977,1,, 25826,NJBF000077337,140 LORAINE AVE,Pleasantville,NJ,39.39797227,-74.51120415,RES1,3001,,15,NE,1880,1880,3101,2,1,1650.502559,1650.502559,3505,NO,46.25,56.33,3,8.95,6112,112.438965,122.350504,132.001675,138.279412,I,Above,Gable,0,5701,,51.28876301,0,1.2,,,,1,1,,0.35,nav,1,1880,2,, 25827,NJBF000077695,123 CHATHAM AVE,Pleasantville,NJ,39.40038215,-74.50914919,RES1,3001,,16,NE,1975,1975,3101,1,1,1040.88173,1040.88173,3505,NO,14.81,20,3,-2.79,6110,112.463643,122.361729,132.012418,138.280801,I,Above,Gable,0,5701,,17.405138,0,0,,,,1,1,,0.35,nav,1,1975,1,, 25828,NJBF000075395,300 E WASHINGTON AVE,Pleasantville,NJ,39.3897125,-74.5157785,IND2,3001,,NaN,ME,1969,0,3401,2,1,7689.962425,7689.962425,3507,NO,27.91,36.54,1,1.36,6106,112.410609,122.355916,132.012474,138.322332,I,Above,Flat,0,NaN,,32.22370676,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25829,NJBF000075577,300 E WASHINGTON AVE,Pleasantville,NJ,39.39037007,-74.51712949,IND2,3001,,NaN,ME,1969,0,3401,3,1,1474.770634,1474.770634,3507,NO,47.13,58.93,1,0.11,6106,112.374782,122.325214,131.979479,138.285372,I,Above,Flat,0,NaN,,53.02869897,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25830,NJBF000075551,300 E WASHINGTON AVE,Pleasantville,NJ,39.39027149,-74.51718949,IND2,3001,,NaN,ME,1969,0,3401,3,1,1472.719992,1472.719992,3507,NO,50.19,60.12,1,1.83,6106,112.374344,122.32519,131.979522,138.28578,I,Above,Hip,0,NaN,,55.1546843,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25831,NJBF000075523,300 E WASHINGTON AVE,Pleasantville,NJ,39.39017098,-74.51724862,IND2,3001,,NaN,ME,1969,0,3401,3,1,1537.454468,1537.454468,3507,NO,57.13,71.64,1,-0.97,6106,112.373916,122.325177,131.979576,138.286203,I,Above,Flat,0,NaN,,64.38325217,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25832,NJBF000075386,300 E WASHINGTON AVE,Pleasantville,NJ,39.38970175,-74.51723409,IND2,3001,,NaN,ME,1969,0,3401,2,1,15923.76921,15923.76921,3507,NO,34.77,49.58,1,0.76,6106,112.378479,122.330344,131.985372,138.293999,I,Above,Gable,0,NaN,,42.17156939,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25833,NJBF000075373,300 E WASHINGTON AVE,Pleasantville,NJ,39.389675,-74.51675249,IND2,3001,,NaN,ME,1969,0,3401,2,1,575.1798995,575.1798995,3507,NO,23.85,31.12,1,2.77,6106,112.389394,122.339127,131.994699,138.303875,I,Above,Flat,0,NaN,,27.48631677,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25834,NJBF000075006,105 E BLACK HORSE PIKE,Pleasantville,NJ,39.38842144,-74.52062658,COM1,3003,,15,ME,1915,1915,3401,2,1,1234.776821,1234.776821,3507,NO,31.89,41.45,1,-0.13,6110,112.314872,122.283947,131.937228,138.247807,I,Above,Hip,0,NaN,,36.66995467,0,0,,,,1,1,,0.35,nav,1,1915,2,, 25835,NJBF000078179,141 PACIFIC AVE,Pleasantville,NJ,39.40344999,-74.5060715,RES3C,3001,,16,E,1959,1959,3303,1,1,1446.515993,1446.515993,3507,NO,14.39,20.81,1,0.96,6112,112.505257,122.384227,132.035163,138.291386,I,Above,Gable,0,NaN,,17.60186095,0,1.1,,,,1,1,,0.35,nav,1,1959,1,, 25836,NJBF000077787,120 CHATHAM AVE,Pleasantville,NJ,39.40086231,-74.50903604,RES1,3001,,16,NE,1952,1952,3101,1,1,542.7715975,542.7715975,3505,NO,13.04,23.35,3,-1.32,6110,112.462131,122.358734,132.008955,138.275334,I,Above,Gable,0,5701,,18.19822921,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25837,NJBF000077835,108 CHATHAM AVE,Pleasantville,NJ,39.40113336,-74.51006426,RES1,3001,,16,NE,1952,1952,3101,1,1,881.8248047,881.8248047,3505,NO,21.06,35.38,3,2.55,6112,112.437541,122.337761,131.98628,138.25109,I,Above,Gable,0,5701,,28.22099694,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25838,NJBF000077493,710 CLEARVIEW AVE,Pleasantville,NJ,39.39903479,-74.50979522,RES1,3001,,16,NE,2004,2004,3101,2,1,1398.492467,1398.492467,3505,NO,38.34,48.43,3,3.52,6106,112.460796,122.364329,132.015912,138.289777,I,Above,Gable,0,5701,,43.38330574,0,0,,,,1,1,,0.03,nav,1,2004,2,, 25839,NJBF000077635,800 CLEARVIEW AVE,Pleasantville,NJ,39.39999473,-74.50888211,RES1,3001,,16,NE,2001,2001,3101,2,1,3580.799136,3580.799136,3505,NO,36.34,44.31,3,4.9,6106,112.472675,122.370473,132.022008,138.292144,I,Above,Hip,0,5701,,40.32249402,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 25840,NJBF000077721,119 CHATHAM AVE,Pleasantville,NJ,39.40052827,-74.50947515,RES1,3001,,16,NE,1955,1955,3101,1,1,786.9407097,786.9407097,3505,NO,14.7,26.34,3,-0.37,6112,112.455337,122.354452,132.004526,138.272157,I,Above,Flat,0,5701,,20.51930664,0,0,,,,1,1,,0.35,nav,1,1955,1,, 25841,NJBF000077679,801 CLEARVIEW AVE,Pleasantville,NJ,39.40027694,-74.50956974,RES1,3001,,15,NE,1960,1960,3101,1,1,1350.148827,1350.148827,3505,NO,17.6,24.99,3,5.15,6112,112.455346,122.355383,132.005657,138.27432,I,Above,Gable,0,5701,,21.29468153,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 25842,NJBF000077770,118 CHATHAM AVE,Pleasantville,NJ,39.40077284,-74.50923427,RES1,3001,,16,NE,1952,1952,3101,1,1,1237.905446,1237.905446,3505,NO,16.22,21.59,3,-0.76,6112,112.458558,122.356162,132.006236,138.272918,I,Above,Flat,0,5701,,18.90632842,0,1.2,,,,1,1,,0.35,nav,1,1952,1,, 25843,NJBF000077861,104 CHATHAM AVE,Pleasantville,NJ,39.40129395,-74.5103856,RES1,3001,,16,NE,1950,1950,3101,1,1,1166.728194,1166.728194,3505,NO,11.13,17.51,3,-1.99,6112,112.429221,122.330405,131.978291,138.242276,I,Above,Hip,0,5701,,14.31637913,0,0,,,,1,1,,0.35,nav,1,1950,1,, 25844,NJBF000073622,241-317 E GREENFIELD AVE,Pleasantville,NJ,39.38206197,-74.52259096,RES1,3001,,NaN,NE,1969,0,3102,2,1,550.4866381,550.4866381,3505,NO,30.76,36.06,3,3.86,6106,112.330929,122.316035,131.975795,138.3106,I,Above,Gable,0,5701,,33.41003541,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25845,NJBF000072912,170 PLAZA PL,Pleasantville,NJ,39.37560416,-74.53028024,RES1,3001,,16,NE,1982,1982,3101,2,2,1880.615669,1880.615669,3505,NO,42.06,53.9,3,4.07,6106,112.223201,122.248882,131.911001,138.260109,I,Above,Gable,0,5701,,47.97874318,0,0,,,,1,1,,0.03,nav,1,1982,2,, 25846,NJBF000076754,152 COLLINS AVE,Pleasantville,NJ,39.39467463,-74.5137724,RES1,3001,,15,NE,1932,1932,3101,1,1,1879.788535,1879.788535,3505,NO,18.58,25.45,3,3.59,6106,112.410851,122.33951,131.991872,138.282132,I,Above,Gable,0,5701,,22.01497078,0,1.1,,,,1,1,,0.03,nav,1,1932,1,, 25847,NJBF000072877,165 PLAZA PL,Pleasantville,NJ,39.37537422,-74.53097194,RES1,3001,,16,NE,1955,1955,3101,2,1,2199.239056,2199.239056,3505,NO,29.16,34.45,3,6.48,6106,112.209999,122.239156,131.901132,138.249868,I,Above,Hip,0,5701,,31.80738052,0,0,,,,1,1,,0.03,nav,1,1955,2,, 25848,NJBF000078865,303 CEDARCREST AVE,Pleasantville,NJ,39.40802152,-74.50132627,RES3C,3001,,16,E,1961,1961,3303,2,1,1368.3204,1368.3204,3507,NO,39.05,47.13,1,0.22,6112,112.570866,122.420734,132.072844,138.310044,I,Above,Gable,0,NaN,,43.09012305,0,0,,,,1,1,,0.35,nav,1,1961,2,, 25849,NJBF000074596,300 S FRANKLIN BLVD,Pleasantville,NJ,39.38714625,-74.52135672,COM1,3003,,NaN,ME,1969,0,3401,1,1,11696.75817,11696.75817,3507,NO,13.07,28.02,1,1.59,6106,112.310314,122.284427,131.938708,138.253791,I,Above,Flat,0,NaN,,20.54508124,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25850,NJBF000076150,112 E PLEASANT AVE,Pleasantville,NJ,39.39239486,-74.51751784,RES1,3001,,15,NE,1930,1930,3101,1,1,830.3147554,830.3147554,3505,NO,26.54,33.98,3,7.1,6106,112.348221,122.297224,131.94838,138.245365,I,Above,Gable,0,5701,,30.26280224,0,0,,,,1,1,,0.03,nav,1,1930,1,, 25851,NJBF000076232,139 INGERSOLL AVE,Pleasantville,NJ,39.39266632,-74.516378,RES1,3001,,15,NE,1915,1915,3101,2,1,575.974256,575.974256,3505,NO,25.55,31.63,3,0.37,6106,112.370991,122.31449,131.966534,138.263358,I,Above,Flat,0,5701,,28.59000566,0,0,,,,1,1,,0.03,nav,1,1915,2,, 25852,NJBF000079378,1420 SIXTH AVE,Pleasantville,NJ,39.41089649,-74.4980829,RES3C,3001,,15,E,1930,1930,3303,1,1,1328.281761,1328.281761,3507,NO,14.05,28.58,1,2.38,6106,112.617659,122.448371,132.101964,138.326654,I,Above,Gable,0,NaN,,21.31642467,0,0,,,,1,1,,0.03,nav,1,1930,1,, 25853,NJBF000073020,126 PLAZA PL,Pleasantville,NJ,39.37656342,-74.5319345,RES1,3001,,16,NE,1958,1958,3101,2,1,1953.981946,1953.981946,3505,NO,39.87,46.88,3,4.96,6112,112.176032,122.209667,131.869587,138.211723,I,Above,Gable,0,5701,,43.37464446,0,1.1,,,,1,1,,0.35,nav,1,1958,2,, 25854,NJBF000073109,37 E ASHLAND AVE,Pleasantville,NJ,39.37773533,-74.53329053,RES1,3001,,15,NE,1927,1927,3101,1,1,697.9343753,697.9343753,3505,NO,24.73,31.29,3,6.1,6112,112.13359,122.173506,131.831108,138.165938,I,Above,Gable,0,5701,,28.01086938,0,1.1,,,,1,1,,0.35,nav,1,1927,1,, 25855,NJBF000073183,29 E FLORAL AVE,Pleasantville,NJ,39.37865647,-74.53278623,RES1,3001,,16,NE,1956,1956,3101,1,1,1578.430338,1578.430338,3505,NO,11.37,21.93,3,-2.78,6112,112.135738,122.172665,131.829352,138.161498,I,Above,Gable,0,5701,,16.64672584,0,0,,,,1,1,,0.35,nav,1,1956,1,, 25856,NJBF000079240,411 E REDWOOD AVE,Pleasantville,NJ,39.41029635,-74.49946758,RES3C,3001,,16,E,2007,2007,3303,2,1,2060.332041,2060.332041,3507,NO,34.81,40.05,1,0.91,6112,112.592744,122.430035,132.082217,138.30964,I,Above,Gable,0,NaN,,37.43191141,0,1.2,,,,1,1,,0.35,nav,1,2007,2,, 25857,NJBF000075631,5 N HAMPDEN CT,Pleasantville,NJ,39.39056097,-74.51802563,RES1,3001,,15,NE,1920,1920,3102,1,1,1397.266878,1397.266878,3505,NO,12.74,25.08,3,1.6,6110,112.353228,122.307407,131.960472,138.264729,I,Above,Gable,0,5701,,18.90604458,0,0,,,,1,1,,0.35,nav,1,1920,1,, 25858,NJBF000075605,3 N HAMPDEN CT,Pleasantville,NJ,39.39047794,-74.51806213,RES1,3001,,15,NE,1925,1925,3102,1,1,1207.414329,1207.414329,3505,NO,15.19,24.86,3,4.01,6110,112.353173,122.307639,131.960777,138.26535,I,Above,Gable,0,5701,,20.02827076,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25859,NJBF000073651,327 OAKLAND AVE,Pleasantville,NJ,39.38225173,-74.52063985,RES1,3001,,NaN,NE,1969,0,3102,2,1,1185.308496,1185.308496,3505,NO,29.47,39.16,3,6.95,6106,112.372686,122.348425,132.009642,138.346131,I,Above,Flat,0,5701,,34.31477987,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25860,NJBF000073132,40 E ASHLAND AVE,Pleasantville,NJ,39.37810684,-74.53279482,RES1,3001,,16,NE,1923,1923,3101,2,1,1194.295947,1194.295947,3505,NO,38.32,50.81,3,3.28,6110,112.141021,122.178287,131.835696,138.170012,I,Above,Gable,0,5701,,44.5633042,0,1.1,,,,1,1,,0.35,nav,1,1923,2,, 25861,NJBF000075696,11 N HAMPDEN CT,Pleasantville,NJ,39.39076777,-74.51791192,RES1,3001,,16,NE,2008,2008,3102,2,1,1042.005461,1042.005461,3505,NO,39.2,45.82,3,2.72,6112,112.353902,122.307255,131.960165,138.263655,I,Above,Gable,0,5701,,42.5087068,0,0,,,,1,1,,0.35,nav,1,2008,2,, 25862,NJBF000074305,27 E BAYVIEW AVE,Pleasantville,NJ,39.38583257,-74.52525078,RES1,3001,,15,NE,1898,1898,3102,2,1,1275.84517,1275.84517,3505,NO,32.3,41.39,3,-1.79,6110,112.235728,122.229668,131.882196,138.197725,I,Above,Hip,0,5701,,36.84136621,0,1.1,,,,1,1,,0.35,nav,1,1898,2,, 25863,NJBF000073187,38 E FLORAL AVE,Pleasantville,NJ,39.37876497,-74.53211652,RES1,3001,,15,NE,1921,1921,3101,2,1,1314.933641,1314.933641,3505,NO,26.49,39.9,3,0.19,6112,112.149705,122.183254,131.840211,138.173195,I,Above,Hip,0,5701,,33.19279731,0,1.1,,,,1,1,,0.35,nav,1,1921,2,, 25864,NJBF000080008,1228 N NEW RD,Pleasantville,NJ,39.41364296,-74.51109225,RES1,3001,,NaN,NE,1969,0,3101,1,1,512.6280314,512.6280314,3505,NO,24.1,35.41,3,5.35,6112,112.319528,122.19015,131.820776,138.032131,I,Above,Gable,0,5701,,29.75367601,0,0,,,,1,1,,0.35,nav,1,1969,1,, 25865,NJBF000078226,202 PACIFIC AVE,Pleasantville,NJ,39.4038504,-74.505938,RES3C,3001,,16,E,1999,1999,3303,2,1,1839.417181,1839.417181,3507,NO,33.38,40.89,1,-0.94,6112,112.504907,122.38244,132.033058,138.287604,I,Above,Gable,0,NaN,,37.13465466,0,1.2,,,,1,1,,0.35,nav,1,1999,2,, 25866,NJBF000078843,305 CEDARCREST AVE,Pleasantville,NJ,39.40788297,-74.50092809,RES3C,3001,,16,E,1962,1962,3303,1,1,1611.83899,1611.83899,3507,NO,18.77,26.99,1,1.15,6110,112.580526,122.429234,132.082102,138.319881,I,Above,Gable,0,NaN,,22.88142832,0,0,,,,1,1,,0.35,nav,1,1962,1,, 25867,NJBF000073928,313 E BAYVIEW AVE,Pleasantville,NJ,39.38405549,-74.52037399,RES1,3001,,NaN,NE,1940,0,3102,2,1,954.8627877,954.8627877,3505,NO,20.96,28.21,3,-2.23,6106,112.361209,122.334153,131.99336,138.322571,I,Above,Flat,0,5701,,24.58501387,0,0,,,,1,1,,0.03,nav,1,1940,2,, 25868,NJBF000073891,200 OAKLAND AVE,Pleasantville,NJ,39.3837993,-74.52363833,RES1,3001,,NaN,NE,1969,0,3102,2,1,847.8068394,847.8068394,3505,NO,27.87,33.68,3,-1.74,6106,112.290808,122.279346,131.935984,138.26215,I,Above,Gable,0,5701,,30.77634167,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25869,NJBF000079519,502 E CALIFORNIA AVE,Pleasantville,NJ,39.41150528,-74.49723847,RES3C,3001,,33,E,1988,1988,3303,2,1,3907.149588,3907.149588,3507,NO,24.42,35.62,1,0.11,6106,112.630933,122.457039,132.111226,138.33318,I,Above,Gable,0,NaN,,30.02023391,0,0,,,,1,1,,0.03,nav,1,1988,2,, 25870,NJBF000079577,502 E CALIFORNIA AVE,Pleasantville,NJ,39.41175196,-74.49752155,RES3C,3001,,33,E,1988,1988,3303,2,1,3320.64939,3320.64939,3507,NO,40.72,53.68,1,1.94,6106,112.622934,122.449427,132.102887,138.323853,I,Above,Gable,0,NaN,,47.20417034,0,0,,,,1,1,,0.03,nav,1,1988,2,, 25871,NJBF000079626,502 E CALIFORNIA AVE,Pleasantville,NJ,39.41202888,-74.49733607,RES3C,3001,,33,E,1988,1988,3303,2,1,3882.765771,3882.765771,3507,NO,27.92,36.79,1,1.67,6110,112.62474,122.449848,132.103274,138.323033,I,Above,Gable,0,NaN,,32.35775985,0,0,,,,1,1,,0.35,nav,1,1988,2,, 25872,NJBF000073643,201 E PARK AVE,Pleasantville,NJ,39.38219883,-74.52587709,RES1,3001,,15,NE,1922,1922,3102,1,1,1603.829527,1603.829527,3505,NO,19.84,26.83,3,6.89,6110,112.256085,122.256754,131.913633,138.243232,I,Above,Gable,0,5701,,23.33520809,0,0,,,,1,1,,0.35,nav,1,1922,1,, 25873,NJBF000078965,411 MONTCLAIR DR,Pleasantville,NJ,39.40867887,-74.50043957,RES3C,3001,,16,E,1953,1953,3303,2,1,1125.968752,1125.968752,3507,NO,23.72,30.83,1,0.17,6112,112.584674,122.42961,132.08225,138.31662,I,Above,Gable,0,NaN,,27.27524321,0,0,,,,1,1,,0.35,nav,1,1953,2,, 25874,NJBF000078949,417 MONTCLAIR DR,Pleasantville,NJ,39.408586,-74.5001875,RES3C,3001,,16,E,1988,1988,3303,1,1,1472.236672,1472.236672,3507,NO,14.8,29.18,1,-0.67,6106,112.590843,122.435064,132.088194,138.322942,I,Above,Gable,0,NaN,,21.99440389,0,0,,,,1,1,,0.03,nav,1,1988,1,, 25875,NJBF000073720,116 E PARK AVE,Pleasantville,NJ,39.38272375,-74.52539078,RES1,3001,,14,NE,1940,1940,3102,1,1,1627.236955,1627.236955,3505,NO,12.46,25.71,3,-2.98,6106,112.261905,122.259788,131.916369,138.244522,I,Above,Gable,0,5701,,19.08264266,0,0,,,,1,1,,0.03,nav,1,1940,1,, 25876,NJBF000073845,129 OAKLAND AVE,Pleasantville,NJ,39.38352849,-74.52398949,RES1,3001,,14,NE,1930,1930,3102,1,1,1165.58496,1165.58496,3505,NO,13.63,23.51,3,-1.65,6106,112.28555,122.276013,131.932706,138.259519,I,Above,Gable,0,5701,,18.57018428,0,0,,,,1,1,,0.03,nav,1,1930,1,, 25877,NJBF000073767,225 OAKLAND AVE,Pleasantville,NJ,39.383029,-74.52252949,RES1,3001,,NaN,NE,1969,0,3102,2,1,1014.168517,1014.168517,3505,NO,35.08,49.22,3,1.66,6106,112.322951,122.306959,131.965547,138.296393,I,Above,Gable,0,5701,,42.14749035,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25878,NJBF000073811,226 OAKLAND AVE,Pleasantville,NJ,39.38332622,-74.52216214,RES1,3001,,16,NE,1985,1985,3102,1,1,854.0438319,854.0438319,3505,NO,17.76,26.31,3,5.41,6106,112.328292,122.310302,131.968831,138.298911,I,Above,Gable,0,5701,,22.03837182,0,0,,,,1,1,,0.03,nav,1,1985,1,, 25879,NJBF000073861,335 E BAYVIEW AVE,Pleasantville,NJ,39.38362465,-74.51919164,RES1,3001,,14,NE,1910,1910,3102,2,1,652.481271,652.481271,3505,NO,21.52,32.76,3,-2.39,6106,112.391699,122.35952,132.020355,138.352733,I,Above,Gable,0,5701,,27.14171818,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25880,NJBF000073815,224 OAKLAND AVE,Pleasantville,NJ,39.38334675,-74.52238216,RES1,3001,,15,NE,1921,1921,3102,1,1,1210.571802,1210.571802,3505,NO,17.88,22.94,3,1.78,6106,112.323178,122.306206,131.964516,138.294225,I,Above,Gable,0,5701,,20.41209607,0,0,,,,1,1,,0.03,nav,1,1921,1,, 25881,NJBF000073837,110 E GREENFIELD AVE,Pleasantville,NJ,39.38348385,-74.52523887,RES1,3001,,15,NE,1925,1925,3102,1,1,1138.308893,1138.308893,3505,NO,15.03,23.48,3,4.35,6112,112.258037,122.254484,131.910188,138.235425,I,Above,Hip,0,5701,,19.255908,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25882,NJBF000078934,144 W LINDLEY AVE,Pleasantville,NJ,39.40848261,-74.51244449,RES1,3001,,16,NE,1994,1994,3101,2,1,2373.108244,2373.108244,3505,NO,23.6,31.3,3,-2.13,6112,112.328436,122.219672,131.855215,138.087777,I,Above,Gable,0,5701,,27.44883198,0,1.2,,,,1,1,,0.35,nav,1,1994,2,, 25883,NJBF000073827,320 E EDGEWATER AVE,Pleasantville,NJ,39.38341383,-74.52017249,RES1,3001,,NaN,NE,1969,0,3102,2,1,1011.437857,1011.437857,3505,NO,33,38.76,3,5.13,6106,112.371869,122.344452,132.004648,138.336797,I,Above,Flat,0,5701,,35.87948925,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25884,NJBF000073830,222 OAKLAND AVE,Pleasantville,NJ,39.38343997,-74.52260461,RES1,3001,,NaN,NE,1969,0,3102,2,1,1202.022555,1202.022555,3505,NO,37.54,44.76,3,0.94,6106,112.317306,122.301302,131.959298,138.288329,I,Above,Flat,0,5701,,41.1497711,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, 25885,NJBF000073829,112 E GREENFIELD AVE,Pleasantville,NJ,39.38343953,-74.5251394,RES1,3001,,15,NE,1925,1925,3102,2,1,843.5939159,843.5939159,3505,NO,22.03,35.46,3,-0.82,6112,112.260691,122.256705,131.91255,138.238112,I,Above,Hip,0,5701,,28.74469718,0,0,,,,1,1,,0.35,nav,1,1925,2,, 25886,NJBF000073854,312 E EDGEWATER AVE,Pleasantville,NJ,39.38357957,-74.52056567,RES1,3001,,15,NE,1915,1915,3102,1,1,1181.695316,1181.695316,3505,NO,19.37,24.49,3,7.45,6106,112.36148,122.33576,131.99539,138.326375,I,Above,Gable,0,5701,,21.93014483,0,0,,,,1,1,,0.03,nav,1,1915,1,, 25887,NJBF000073743,308 OAKLAND AVE,Pleasantville,NJ,39.38287042,-74.52120976,RES1,3001,,15,NE,1953,1953,3102,1,1,1305.96165,1305.96165,3505,NO,24.49,35.6,3,7.26,6106,112.353949,122.331872,131.991816,138.325005,I,Above,Gable,0,5701,,30.04812614,0,0,,,,1,1,,0.03,nav,1,1953,1,, 25888,NJBF000073725,345 E EDGEWATER AVE,Pleasantville,NJ,39.38275024,-74.51932534,RES1,3001,,15,NE,1940,1940,3102,1,1,1075.166598,1075.166598,3505,NO,27.04,38.84,3,8.42,6106,112.397202,122.36638,132.028169,138.364102,I,Above,Gable,0,5701,,32.93763691,0,0,,,,1,1,,0.03,nav,1,1940,1,, 25889,NJBF000079454,7 FOX RUN,Pleasantville,NJ,39.41122456,-74.50734575,RES3C,3001,,35,E,1983,1983,3303,2,1,2523.771074,2523.771074,3507,NO,21.47,31.23,1,-0.09,6112,112.41711,122.281075,131.920334,138.14321,I,Above,Hip,0,NaN,,26.35183292,0,0,,,,1,1,,0.35,nav,1,1983,2,, 25890,NJBF000079515,7 FOX RUN,Pleasantville,NJ,39.41149315,-74.50738979,RES3C,3001,,35,E,1983,1983,3303,2,1,3935.538005,3935.538005,3507,NO,39.73,53.74,1,2.44,6112,112.414165,122.277525,131.916378,138.138107,I,Above,Gable,0,NaN,,46.73646317,0,0,,,,1,1,,0.35,nav,1,1983,2,, 25891,NJBF000079524,7 FOX RUN,Pleasantville,NJ,39.41151766,-74.50675046,RES3C,3001,,35,E,1983,1983,3303,2,1,6065.496659,6065.496659,3507,NO,36.8,46.27,1,1,6110,112.427649,122.288552,131.928318,138.150098,I,Above,Gable,0,NaN,,41.53369587,0,0,,,,1,1,,0.35,nav,1,1983,2,, 25892,NJBF000079415,7 FOX RUN,Pleasantville,NJ,39.41105225,-74.50632237,RES3C,3001,,35,E,1983,1983,3303,2,1,7525.224665,7525.224665,3507,NO,35.78,50.48,1,0,6112,112.440299,122.300929,131.941916,138.165766,I,Above,Gable,0,NaN,,43.12920614,0,0,,,,1,1,,0.35,nav,1,1983,2,, 25893,NJBF000073697,112 E PARK AVE,Pleasantville,NJ,39.38254349,-74.5257155,RES1,3001,,14,NE,1860,1860,3102,2,1,1007.485336,1007.485336,3505,NO,23.17,37.25,3,0.94,6110,112.256373,122.255972,131.912529,138.24095,I,Above,Gable,0,5701,,30.20951324,0,0,,,,1,1,,0.35,nav,1,1860,2,, 25894,NJBF000074460,417 S EDGELEY AVE,Pleasantville,NJ,39.38652175,-74.52455076,RES1,3001,,15,NE,1928,1928,3102,1,1,1561.011533,1561.011533,3505,NO,17.2,22.26,3,4.81,6106,112.244974,122.234766,131.886962,138.200609,I,Above,Gable,0,5701,,19.72923186,0,1.1,,,,1,1,,0.03,nav,1,1928,1,, 25895,NJBF000073920,122 OAKLAND AVE,Pleasantville,NJ,39.38401953,-74.52419402,RES1,3001,,16,NE,1998,1998,3102,2,1,925.6833594,925.6833594,3505,NO,38.77,49.01,3,6.63,6106,112.276292,122.267243,131.923116,138.247607,I,Above,Gable,0,5701,,43.88834198,0,0,,,,1,1,,0.03,nav,1,1998,2,, 25896,NJBF000073951,112 OAKLAND AVE,Pleasantville,NJ,39.38418046,-74.52461773,RES1,3001,,16,NE,1998,1998,3102,2,1,1218.385113,1218.385113,3505,NO,29.36,39.63,3,7.66,6112,112.265309,122.258107,131.913407,138.236648,I,Above,Gable,0,5701,,34.49430669,0,0,,,,1,1,,0.35,nav,1,1998,2,, 25897,NJBF000074451,58 E WRIGHT ST,Pleasantville,NJ,39.38647981,-74.52333611,RES1,3001,,16,NE,1948,1948,3102,1,1,1053.44066,1053.44066,3505,NO,23.34,38.02,3,8.26,6106,112.272417,122.256569,131.90991,138.225335,I,Above,Gable,0,5701,,30.67966643,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25898,NJBF000073959,203 E EDGEWATER AVE,Pleasantville,NJ,39.38420119,-74.52332845,RES1,3001,,15,NE,1925,1925,3102,1,1,1453.501826,1453.501826,3505,NO,16.29,24.43,3,3.91,6106,112.29391,122.280584,131.936964,138.261873,I,Above,Gable,0,5701,,20.35798308,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25899,NJBF000074141,104 E EDGEWATER AVE,Pleasantville,NJ,39.38506299,-74.524558,RES1,3001,,15,NE,1925,1925,3102,1,1,1023.605958,1023.605958,3505,NO,15.4,23.1,3,1.85,6106,112.258345,122.249909,131.90408,138.223751,I,Above,Gable,0,5701,,19.24759609,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25900,NJBF000074183,605 S EDGELEY AVE,Pleasantville,NJ,39.38528292,-74.52508382,RES1,3001,,16,NE,2004,2004,3102,2,1,1464.175049,1464.175049,3505,NO,36.36,44.29,3,0.05,6110,112.244557,122.238358,131.89178,138.209811,I,Above,Gable,0,5701,,40.32589794,0,0,,,,1,1,,0.35,nav,1,2004,2,, 25901,NJBF000074125,127 E BAYVIEW AVE,Pleasantville,NJ,39.38500973,-74.52320292,RES1,3001,,16,NE,1994,1994,3102,1,1,1635.576463,1635.576463,3505,NO,13.6,19.73,3,0.8,6106,112.289065,122.274301,131.929726,138.251434,I,Above,Gable,0,5701,,16.66350297,0,0,,,,1,1,,0.03,nav,1,1994,1,, 25902,NJBF000074203,34 E EDGEWATER AVE,Pleasantville,NJ,39.385347,-74.52519799,RES1,3001,,16,NE,1929,1929,3102,1,1,1477.350281,1477.350281,3505,NO,18.56,30.25,3,4.57,6110,112.241418,122.235684,131.888921,138.206529,I,Above,Gable,0,5701,,24.40487764,0,0,,,,1,1,,0.35,nav,1,1929,1,, 25903,NJBF000074289,33 E BAYVIEW AVE,Pleasantville,NJ,39.38574918,-74.52496642,RES1,3001,,15,NE,1920,1920,3102,2,1,961.5857365,961.5857365,3505,NO,26.83,34.59,3,5.6,6106,112.242859,122.235556,131.888445,138.204717,I,Above,Gable,0,5701,,30.70757778,0,0,,,,1,1,,0.03,nav,1,1920,2,, 25904,NJBF000074440,419 S EDGELEY AVE,Pleasantville,NJ,39.38644438,-74.52464005,RES1,3001,,15,NE,1929,1929,3102,1,1,1594.366807,1594.366807,3505,NO,22.41,30.66,3,6.47,6106,112.243709,122.234017,131.886241,138.20009,I,Above,Gable,0,5701,,26.53398923,0,0,,,,1,1,,0.03,nav,1,1929,1,, 25905,NJBF000074253,126 E BAYVIEW AVE,Pleasantville,NJ,39.38558828,-74.52357603,RES1,3001,,14,NE,1915,1915,3102,1,1,1180.892521,1180.892521,3505,NO,18.5,27.01,3,0.08,6106,112.275341,122.261683,131.916009,138.234825,I,Above,Gable,0,5701,,22.75620749,0,0,,,,1,1,,0.03,nav,1,1915,1,, 25906,NJBF000074207,101 E BAYVIEW AVE,Pleasantville,NJ,39.38536639,-74.52453792,RES1,3001,,16,NE,1949,1949,3102,1,1,930.9122507,930.9122507,3505,NO,26.12,35.56,3,7.9,6106,112.255962,122.247088,131.900868,138.219313,I,Above,Gable,0,5701,,30.83963943,0,0,,,,1,1,,0.03,nav,1,1949,1,, 25907,NJBF000074282,77 E WRIGHT ST,Pleasantville,NJ,39.38572681,-74.52297745,RES1,3001,,16,NE,1997,1997,3102,1,1,1429.798998,1429.798998,3505,NO,16.54,24.18,3,-2.27,6106,112.287395,122.270767,131.925441,138.244458,I,Above,Gable,0,5701,,20.35927734,0,0,,,,1,1,,0.03,nav,1,1997,1,, 25908,NJBF000073995,312 E BAYVIEW AVE,Pleasantville,NJ,39.38434556,-74.52020007,RES1,3001,,13,NE,1912,1912,3102,1,1,710.5335325,710.5335325,3505,NO,15.87,22.75,3,2.05,6106,112.36231,122.334164,131.993163,138.321351,I,Above,Gable,0,5701,,19.30609212,0,0,,,,1,1,,0.03,nav,1,1912,1,, 25909,NJBF000075663,7 N HAMPDEN CT,Pleasantville,NJ,39.39064994,-74.51799181,RES1,3001,,16,NE,1955,1955,3102,1,1,956.8314625,956.8314625,3505,NO,14.25,21.15,3,-1.61,6112,112.353185,122.307077,131.960059,138.263973,I,Above,Gable,0,5701,,17.69901846,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 25910,NJBF000074773,54 TUNIS AVE,Pleasantville,NJ,39.38774687,-74.52270609,RES1,3001,,16,NE,1948,1948,3102,1,1,1065.109464,1065.109464,3505,NO,10.27,19.41,3,-1.38,6106,112.274822,122.254404,131.906606,138.217558,I,Above,Gable,0,5701,,14.84253239,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25911,NJBF000074200,111 E BAYVIEW AVE,Pleasantville,NJ,39.38534282,-74.52391117,RES1,3001,,16,NE,1997,1997,3102,1,1,1678.497462,1678.497462,3505,NO,17.35,31.79,3,1.84,6106,112.270158,122.258356,131.912714,138.232103,I,Above,Gable,0,5701,,24.57257049,0,0,,,,1,1,,0.03,nav,1,1997,1,, 25912,NJBF000074215,30 E EDGEWATER AVE,Pleasantville,NJ,39.38540249,-74.525421,RES1,3001,,15,NE,1910,1910,3102,2,1,862.2065185,862.2065185,3505,NO,37.31,46.96,3,1.6,6110,112.235933,122.231189,131.884161,138.201227,I,Above,Gable,0,5701,,42.13727786,0,0,,,,1,1,,0.35,nav,1,1910,2,, 25913,NJBF000073665,323 OAKLAND AVE,Pleasantville,NJ,39.38235606,-74.52075331,RES1,3001,,NaN,NE,2016,0,3102,2,1,1352.344716,1352.344716,3505,NO,26.55,37.25,3,0.26,6106,112.369148,122.345338,132.006326,138.342239,I,Above,Hip,0,5701,,31.89918356,0,0,,,,1,1,,0.03,nav,1,2016,2,, 25914,NJBF000074139,116 E EDGEWATER AVE,Pleasantville,NJ,39.38504768,-74.52401789,RES1,3001,,15,NE,1915,1915,3102,2,1,915.3195585,915.3195585,3505,NO,21.33,33.74,3,-2.24,6110,112.270531,122.259564,131.914223,138.234691,I,Above,Gable,0,5701,,27.53372467,0,1.2,,,,1,1,,0.35,nav,1,1915,2,, 25915,NJBF000074155,102 E EDGEWATER AVE,Pleasantville,NJ,39.38512947,-74.52471743,RES1,3001,,15,NE,1915,1915,3102,2,1,1269.951851,1269.951851,3505,NO,45.14,57.27,3,6.9,6106,112.254181,122.246422,131.900368,138.219546,I,Above,Gable,0,5701,,51.20492739,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 25916,NJBF000079430,501 E CALIFORNIA AVE,Pleasantville,NJ,39.41110147,-74.49789756,RES3C,3001,,16,E,1997,1997,3303,2,1,1836.548606,1836.548606,3507,NO,33.13,42.99,1,-0.32,6106,112.620003,122.449523,132.103161,138.326951,I,Above,Flat,0,NaN,,38.06032339,0,1.2,,,,1,1,,0.03,nav,1,1997,2,, 25917,NJBF000074437,69 ROOSEVELT DR,Pleasantville,NJ,39.38642183,-74.52293957,RES1,3001,,16,NE,1950,1950,3102,1,1,1039.03037,1039.03037,3505,NO,20.6,30.33,3,4.61,6106,112.281769,122.264142,131.917921,138.234093,I,Above,Gable,0,5701,,25.46829722,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25918,NJBF000075088,16 N FRANKLIN BLVD (R),Pleasantville,NJ,39.3886845,-74.5128355,IND2,3001,,NaN,ME,1969,0,3401,1,1,2426.331166,2426.331166,3507,NO,19.29,27.79,1,2.86,6106,112.485193,122.418687,132.079727,138.396243,I,Above,Gable,0,NaN,,23.5438606,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25919,NJBF000074033,200 E EDGEWATER AVE,Pleasantville,NJ,39.38455694,-74.52322193,RES1,3001,,16,NE,1910,1910,3102,2,1,1125.217424,1125.217424,3505,NO,42.46,55.98,3,7.87,6106,112.292907,122.278716,131.934721,138.258289,I,Above,Gable,0,5701,,49.22239854,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25920,NJBF000076511,155 E ADAMS AVE,Pleasantville,NJ,39.393731,-74.515305,RES1,3001,,16,NE,1989,1989,3101,1,1,1204.634731,1204.634731,3505,NO,13.16,19.63,3,-2.01,6110,112.385327,122.322305,131.974141,138.267309,I,Above,Gable,0,5701,,16.39162956,0,0,,,,1,1,,0.35,nav,1,1989,1,, 25921,NJBF000074218,136 E BAYVIEW AVE,Pleasantville,NJ,39.3854081,-74.52306722,RES1,3001,,15,NE,1900,1900,3102,2,1,1025.252314,1025.252314,3505,NO,34.27,44.5,3,-1.82,6106,112.288367,122.272524,131.927542,138.247771,I,Above,Gable,0,5701,,39.38371218,0,0,,,,1,1,,0.03,nav,1,1900,2,, 25922,NJBF000074487,7024 BLACK HORSE PIKE,Pleasantville,NJ,39.38665414,-74.51299568,COM1,3003,739,NaN,ME,1969,0,3401,2,1,13476.56487,13476.56487,3507,NO,38.69,52.1,1,2.35,6106,112.500627,122.437145,132.100475,138.425617,I,Above,Flat,0,NaN,,45.39640549,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25923,NJBF000081969,316 KEEFER AVE,Pleasantville,NJ,39.42495431,-74.50781952,RES1,3001,,17,NE,2000,2000,3102,1,1,1162.18566,1162.18566,3505,NO,18.7,33.65,3,8.2,6106,112.310917,122.130863,131.752515,137.916916,I,Above,Gable,0,5701,,26.17467111,0,0,,,,1,1,,0.03,nav,1,2000,1,, 25924,NJBF000074119,900 BAY DRIVE,Pleasantville,NJ,39.38498522,-74.51490342,RES1,3001,,16,NE,1978,1978,3102,2,1,1327.8951,1327.8951,3505,NO,20.72,31.44,3,-0.67,6106,112.474155,122.420964,132.084313,138.415124,I,Above,Gable,0,5701,,26.08033834,0,0,,,,1,1,,0.03,nav,1,1978,2,, 25925,NJBF000074730,109 GENOA AVENUE,Pleasantville,NJ,39.38758831,-74.51595159,RES1,3001,,16,NE,1927,1927,3102,2,1,907.518898,907.518898,3505,NO,19.56,24.78,3,-1.96,6106,112.426279,122.375097,132.034172,138.352933,I,Above,Gable,0,5701,,22.17098381,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 25926,NJBF000073621,202 OXFORD PLACE,Pleasantville,NJ,39.3820585,-74.49995999,RES1,3001,,16,NE,1955,1955,3101,1,1,906.0978036,906.0978036,3505,NO,25.27,35.03,3,6.74,6106,112.834921,122.717137,132.400128,138.750581,I,Above,Flat,0,5701,,30.14963102,0,0,,,,1,1,,0.03,nav,1,1955,1,, 25927,NJBF000080111,44 W CALIFORNIA AVE,Pleasantville,NJ,39.41395459,-74.50581061,RES1,3001,,17,NE,1938,1938,3101,1,1,1717.019972,1717.019972,3505,NO,12.74,25.36,3,-2.71,6106,112.429575,122.279881,131.917999,138.129642,I,Above,Gable,0,5701,,19.05281384,0,0,,,,1,1,,0.03,nav,1,1938,1,, 25928,NJBF000078053,545 ABSECON BLVD,Pleasantville,NJ,39.40260435,-74.4929667,RES4,3001,530,NaN,ME,1969,0,3401,3,1,6553.11406,6553.11406,3507,NO,35.24,47.71,1,0.25,6106,112.796045,122.625887,132.29668,138.555123,I,Above,Flat,0,NaN,,41.47656935,0,0,,,,1,1,,0.03,nav,1,1969,3,, 25929,NJBF000074841,102 GENOA AVENUE,Pleasantville,NJ,39.38794504,-74.51515242,RES1,3001,,28,NE,1906,1906,3102,2,2,1235.401609,1235.401609,3505,NO,42.55,49.99,3,8.14,6106,112.440708,122.385484,132.044947,138.362867,I,Above,Flat,0,5701,,46.26812471,0,0,,,,1,1,,0.03,nav,1,1906,2,, 25930,NJBF000081343,118 MEADOWVIEW AVE,Pleasantville,NJ,39.41873819,-74.50726205,RES1,3001,,17,NE,1971,1971,3101,2,1,1516.000087,1516.000087,3505,NO,31.28,45.18,3,1.09,6112,112.364616,122.20486,131.834836,138.025869,I,Above,Gable,0,5701,,38.23448282,0,1.1,,,,1,1,,0.35,nav,1,1971,2,, 25931,NJBF000074875,7000 BLACK HORSE PIKE,Pleasantville,NJ,39.388046,-74.51808549,COM1,3003,999,NaN,ME,1969,0,3401,1,1,1721.152572,1721.152572,3507,NO,14.64,20.12,1,-0.78,6106,112.374716,122.332661,131.988966,138.303794,I,Above,Gable,0,NaN,,17.37818511,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25932,NJBF000081265,22D OYSTER BAY RD,Pleasantville,NJ,39.4183765,-74.511385,RES1,3001,,35,NE,1992,1992,3101,1,1,2961.258356,2961.258356,3505,NO,20.33,25.9,3,8.74,6110,112.280253,122.136187,131.760256,137.951399,I,Above,Gable,0,5701,,23.11522385,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25933,NJBF000081363,22D OYSTER BAY RD,Pleasantville,NJ,39.41884821,-74.51169767,RES1,3001,,35,NE,1992,1992,3101,1,1,5011.449316,5011.449316,3505,NO,15.92,24.04,3,-0.73,6110,112.270464,122.125847,131.748837,137.93784,I,Above,Flat,0,5701,,19.97845844,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25934,NJBF000081277,22D OYSTER BAY RD,Pleasantville,NJ,39.41844967,-74.51302275,RES1,3001,,35,NE,1992,1992,3101,1,1,5923.842396,5923.842396,3505,NO,21.59,32.6,3,3.01,6110,112.245266,122.106738,131.728216,137.918285,I,Above,Gable,0,5701,,27.09374809,0,0,,,,1,1,,0.35,nav,1,1992,1,, 25935,NJBF000075026,102 FRANKFORT COURT,Pleasantville,NJ,39.38848109,-74.51679954,RES1,3001,,16,NE,1925,1925,3102,1,1,1694.373002,1694.373002,3505,NO,16.68,22.86,3,-2.25,6106,112.399222,122.350773,132.007835,138.322037,I,Above,Gable,0,5701,,19.76852105,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 25936,NJBF000081637,121 WOODS RD,Pleasantville,NJ,39.42115526,-74.49302437,RES1,3001,,17,NE,1985,1985,3101,2,1,2159.969234,2159.969234,3505,NO,30.15,39.57,3,1.98,6112,112.646809,122.431506,132.081549,138.261842,I,Above,Flat,0,5701,,34.85749816,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 25937,NJBF000074099,200 NAPLES AVENUE,Pleasantville,NJ,39.38489849,-74.507589,RES3C,3001,,NaN,E,1950,0,3303,4,1,940.2353183,940.2353183,3507,NO,64.38,74.18,1,1.81,6106,112.637461,122.551436,132.222695,138.558671,I,Above,Flat,0,NaN,,69.27773603,0,0,,,,1,1,,0.03,nav,1,1950,4,, 25938,NJBF000078175,539 ABSECON BLVD,Pleasantville,NJ,39.40343339,-74.49282934,RES4,3001,530,NaN,ME,1969,0,3401,1,1,25326.79024,25326.79024,3507,NO,14.44,27.84,1,1.73,6106,112.791903,122.619685,132.289771,138.544604,I,Above,Flat,0,NaN,,21.14181023,0,0,,,,1,1,,0.03,nav,1,1969,1,, 25939,NJBF000082041,207 KEEFER AVE,Pleasantville,NJ,39.42591318,-74.50782147,RES1,3001,,17,NE,2003,2003,3102,2,1,1481.805896,1481.805896,3505,NO,31.62,38.54,3,3.19,6106,112.304634,122.120945,131.741486,137.901784,I,Above,Flat,0,5701,,35.07721913,0,0,,,,1,1,,0.03,nav,1,2003,2,, 25940,NJBF000082119,201 KEEFER AVE,Pleasantville,NJ,39.4266926,-74.50742718,RES1,3001,,17,NE,2003,2003,3102,2,1,1512.133868,1512.133868,3505,NO,32.8,41.29,3,8.92,6110,112.307745,122.119798,131.740086,137.897166,I,Above,Gable,0,5701,,37.04093522,0,0,,,,1,1,,0.35,nav,1,2003,2,, 25941,NJBF000074227,,Pleasantville,NJ,39.3854599,-74.50677174,COM1,3003,,NaN,ME,1969,0,3401,2,1,12072.32829,12072.32829,3507,NO,27.43,42.18,1,0.39,6106,112.650111,122.560014,132.231576,138.565425,I,Above,Flat,0,NaN,,34.80424301,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25942,NJBF000081161,,Pleasantville,NJ,39.41781853,-74.4938912,COM1,3003,,NaN,ME,1969,0,3401,1,1,16182.94828,16182.94828,3507,NO,12.19,24.53,1,-0.37,6112,112.653448,122.450815,132.103125,138.297622,I,Above,Flat,0,NaN,,18.35743476,0,0,,,,1,1,,1,nav,1,1969,1,, 25943,NJBF000077944,547 ABSECON BLVD,Pleasantville,NJ,39.40185221,-74.49295811,RES4,3001,530,NaN,ME,1969,0,3401,2,1,13033.24666,13033.24666,3507,NO,30.77,37.09,1,0.45,6106,112.802746,122.633909,132.305543,138.567208,I,Above,Gable,0,NaN,,33.9301166,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25944,NJBF000074286,7021 BLACK HORSE PIKE,Pleasantville,NJ,39.38573836,-74.51417108,RES1,3001,,NaN,NE,1925,0,3102,2,1,1680.434234,1680.434234,3505,NO,25.09,37.47,3,-0.28,6106,112.483232,122.425989,132.089184,138.417368,I,Above,Gable,0,5701,,31.27860366,0,0,,,,1,1,,0.03,nav,1,1925,2,, 25945,NJBF000080540,45 W NEVADA AVE,Pleasantville,NJ,39.41536949,-74.505011,RES1,3001,,17,NE,1960,1960,3101,2,1,722.1135855,722.1135855,3505,NO,36.52,50.82,3,6.45,6112,112.436215,122.279353,131.916943,138.12273,I,Above,Gable,0,5701,,43.66807153,0,0,,,,1,1,,0.35,nav,1,1960,2,, 25946,NJBF000074047,202 NAPLES AVENUE,Pleasantville,NJ,39.38460972,-74.50750681,RES3C,3001,560,NaN,E,1965,1965,3303,1,1,9040.183941,9040.183941,3507,NO,20.55,31.61,1,1.42,6106,112.642092,122.555928,132.227595,138.564874,I,Above,Flat,0,NaN,,26.07833127,0,0,,,,1,1,,0.03,nav,1,1965,1,, 25947,NJBF000074832,211 S CHESTER AVE,Pleasantville,NJ,39.38791072,-74.52056486,RES1,3001,,16,NE,1960,1960,3102,1,1,946.0084154,946.0084154,3505,NO,13.6,18.93,3,0.01,6106,112.320897,122.29037,131.944393,138.257179,I,Above,Gable,0,5701,,16.26366371,0,0,,,,1,1,,0.03,nav,1,1960,1,, 25948,NJBF000074572,401 PROSPECT AVE,Pleasantville,NJ,39.38705195,-74.52536958,RES1,3001,,16,NE,1951,1951,3102,1,1,1201.295675,1201.295675,3505,NO,17.09,24.05,3,5.84,6112,112.221888,122.214838,131.865578,138.175918,I,Above,Gable,0,5701,,20.57135227,0,0,,,,1,1,,0.35,nav,1,1951,1,, 25949,NJBF000074669,217 S HAMPDEN CT,Pleasantville,NJ,39.38740413,-74.51993241,RES1,3001,,15,NE,1924,1924,3102,2,1,1143.904887,1143.904887,3505,NO,22.52,30.4,3,1.37,6106,112.339612,122.306825,131.962133,138.27775,I,Above,Gable,0,5701,,26.46058053,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 25950,NJBF000076729,137 COLLINS AVE,Pleasantville,NJ,39.39456624,-74.51462783,RES1,3001,,15,NE,1934,1934,3101,1,1,1651.824446,1651.824446,3505,NO,22.89,36.61,3,7.62,6110,112.392979,122.325544,131.977052,138.267178,I,Above,Flat,0,5701,,29.75412473,0,1.1,,,,1,1,,0.35,nav,1,1934,1,, 25951,NJBF000076766,148 COLLINS AVE,Pleasantville,NJ,39.39471461,-74.51392018,RES1,3001,,43,NE,1925,1925,3101,1,2,1200.394476,1200.394476,3505,NO,20.13,27.55,3,0.71,6106,112.407253,122.336481,131.988618,138.278607,I,Above,Gable,0,5701,,23.84229479,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25952,NJBF000074425,421 S EDGELEY AVE,Pleasantville,NJ,39.3863706,-74.52472296,RES1,3001,,15,NE,1930,1930,3102,1,1,2391.771155,2391.771155,3505,NO,11.59,19.09,3,-0.96,6106,112.242531,122.233322,131.885573,138.19961,I,Above,Gable,0,5701,,15.3392873,0,0,,,,1,1,,0.03,nav,1,1930,1,, 25953,NJBF000074402,421 S EDGELEY AVE,Pleasantville,NJ,39.38624949,-74.52465849,RES1,3001,,15,NE,1920,1930,3102,1,1,553.8983684,553.8983684,3505,NO,12.54,27.25,3,-1.82,6106,112.245103,122.23574,131.888215,138.202845,I,Above,Hip,0,5701,,19.89281476,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25954,NJBF000077452,208 WALNUT AVE,Pleasantville,NJ,39.39872228,-74.50994465,RES1,3001,,15,NE,1950,1950,3101,1,1,1380.234096,1380.234096,3505,NO,15.63,22.87,3,-1.72,6106,112.460151,122.364936,132.01673,138.291866,I,Above,Gable,0,5701,,19.25011706,0,0,,,,1,1,,0.03,nav,1,1950,1,, 25955,NJBF000074810,11 TUNIS AVE,Pleasantville,NJ,39.38785292,-74.52444693,RES1,3001,,16,NE,1925,1925,3102,2,1,2211.211203,2211.211203,3505,NO,30.53,37.71,3,0.31,6110,112.235155,122.222691,131.873141,138.181426,I,Above,Gable,0,5701,,34.1189164,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 25956,NJBF000074630,221 S HAMPDEN CT,Pleasantville,NJ,39.38725292,-74.52001771,RES1,3001,,15,NE,1910,1910,3102,2,1,1254.812718,1254.812718,3505,NO,37.99,47.53,3,2.22,6106,112.339093,122.30689,131.962313,138.27847,I,Above,Hip,0,5701,,42.76229722,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25957,NJBF000073712,307 OAKLAND AVE,Pleasantville,NJ,39.38265582,-74.52155644,RES1,3001,,NaN,NE,1969,0,3102,2,1,1377.815353,1377.815353,3505,NO,22.41,36.06,3,-0.06,6106,112.348293,122.328024,131.987932,138.321588,I,Above,Flat,0,5701,,29.23428853,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25958,NJBF000078430,120 E LINDLEY AVE,Pleasantville,NJ,39.40546844,-74.50550138,RES3C,3001,,16,E,1990,1990,3303,1,1,1301.94257,1301.94257,3507,NO,19.27,26.53,1,2.73,6112,112.501318,122.373356,132.022558,138.270294,I,Above,Gable,0,NaN,,22.90036034,0,0,,,,1,1,,0.35,nav,1,1990,1,, 25959,NJBF000072942,152 PLAZA PL,Pleasantville,NJ,39.3758062,-74.53071202,RES1,3001,,16,NE,1964,1964,3101,2,1,2652.682216,2652.682216,3505,NO,38.04,50.65,3,6.04,6106,112.211376,122.239152,131.900758,138.248248,I,Above,Gable,0,5701,,44.34231644,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 25960,NJBF000075045,21 E DECATUR AVE,Pleasantville,NJ,39.3885353,-74.52373241,RES1,3001,,15,NE,1935,1935,3102,2,1,1812.748899,1812.748899,3505,NO,27,34.51,3,4.36,6112,112.244897,122.228138,131.878297,138.18469,I,Above,Gable,0,5701,,30.75531116,0,1.2,,,,1,1,,0.35,nav,1,1935,2,, 25961,NJBF000074865,32 TUNIS AVE,Pleasantville,NJ,39.38801764,-74.52343678,RES1,3001,,16,NE,1948,1948,3102,1,1,1187.437145,1187.437145,3505,NO,24.55,38.36,3,8.81,6106,112.256115,122.238719,131.889868,138.19878,I,Above,Gable,0,5701,,31.45534082,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25962,NJBF000073905,323 E BAYVIEW AVE,Pleasantville,NJ,39.3838855,-74.51988799,RES1,3001,,NaN,NE,1920,1920,3102,1,1,513.7676379,513.7676379,3505,NO,12.67,20.69,3,0.97,6106,112.373676,122.344509,132.004376,138.334868,I,Above,Gable,0,5701,,16.67846544,0,0,,,,1,1,,0.03,nav,1,1920,1,, 25963,NJBF000074380,24 E BAYVIEW AVE,Pleasantville,NJ,39.38616139,-74.52512365,RES1,3001,,15,NE,1925,1925,3102,2,1,1077.490187,1077.490187,3505,NO,31.21,45.23,3,8.2,6110,112.23553,122.22847,131.880658,138.195011,I,Above,Gable,0,5701,,38.21787958,0,0,,,,1,1,,0.35,nav,1,1925,2,, 25964,NJBF000073729,122 E PARK AVE,Pleasantville,NJ,39.38276561,-74.52512369,RES1,3001,,15,NE,1920,1920,3102,2,1,1271.778896,1271.778896,3505,NO,45.45,59,3,8.19,6106,112.267473,122.264043,131.920787,138.249155,I,Above,Gable,0,5701,,52.22482599,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 25965,NJBF000073668,317 OAKLAND AVE,Pleasantville,NJ,39.38236042,-74.52120156,RES1,3001,,NaN,NE,1969,0,3102,2,1,515.7843359,515.7843359,3505,NO,36.12,49.29,3,-0.18,6106,112.359077,122.337379,131.997967,138.333309,I,Above,Flat,0,5701,,42.70254289,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25966,NJBF000073678,317 OAKLAND AVE,Pleasantville,NJ,39.38246666,-74.5210405,RES1,3001,,NaN,NE,1969,0,3102,2,1,1382.54659,1382.54659,3505,NO,44.06,51.86,3,8.93,6106,112.361655,122.339109,131.999706,138.334799,I,Above,Flat,0,5701,,47.9580941,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25967,NJBF000079073,1101 SHANE CT,Pleasantville,NJ,39.40933155,-74.51127303,RES1,3001,,16,NE,2005,2005,3101,2,1,1305.267867,1305.267867,3505,NO,34.32,40.68,3,1.33,6112,112.347208,122.231493,131.867544,138.097068,I,Above,Gable,0,5701,,37.5014965,0,0,,,,1,1,,0.35,nav,1,2005,2,, 25968,NJBF000075114,108 E BLACK HORSE PIKE,Pleasantville,NJ,39.3887472,-74.52025524,RES1,3001,,15,NE,1920,1920,3102,2,1,1097.824558,1097.824558,3505,NO,38.1,49,3,3.11,6112,112.320169,122.28709,131.9403,138.249922,I,Above,Flat,0,5701,,43.55174812,0,0,,,,1,1,,0.35,nav,1,1920,2,, 25969,NJBF000074882,6 TUNIS AVE,Pleasantville,NJ,39.38806837,-74.52487959,RES1,3001,,16,NE,1960,1960,3102,1,1,1513.58068,1513.58068,3505,NO,20.66,26.01,3,2.26,6110,112.223588,122.21284,131.862597,138.169418,I,Above,Gable,0,5701,,23.33339483,0,0,,,,1,1,,0.35,nav,1,1960,1,, 25970,NJBF000075034,326 S MAIN ST,Pleasantville,NJ,39.388503,-74.525201,COM1,3003,,NaN,ME,1955,1955,3401,1,1,1647.747398,1647.747398,3507,NO,16.79,22.67,1,1.09,6112,112.212548,122.202666,131.85152,138.156115,I,Above,Flat,0,NaN,,19.72695846,0,0,,,,1,1,,1,nav,1,1955,1,, 25971,NJBF000077826,110 CHATHAM AVE,Pleasantville,NJ,39.40107168,-74.50988515,RES1,3001,,16,NE,1952,1952,3101,1,1,1196.531215,1196.531215,3505,NO,12.86,27.16,3,2.2,6112,112.441934,122.341556,131.990388,138.255534,I,Above,Gable,0,5701,,20.00964754,0,0,,,,1,1,,0.35,nav,1,1952,1,, 25972,NJBF000073744,131 E GREENFIELD AVE,Pleasantville,NJ,39.38287699,-74.5245715,RES1,3001,,16,NE,2003,2003,3102,2,1,838.1465106,838.1465106,3505,NO,31.81,42.77,3,1.07,6106,112.278774,122.272606,131.929661,138.258361,I,Above,Gable,0,5701,,37.28996867,0,0,,,,1,1,,0.03,nav,1,2003,2,, 25973,NJBF000078556,206 E LEEDS AVE,Pleasantville,NJ,39.40617498,-74.50391781,RES3C,3001,,15,E,1926,1926,3303,1,1,1213.068847,1213.068847,3507,NO,19.3,25.42,1,0.82,6112,112.529811,122.39402,132.0446,138.289553,I,Above,Gable,0,NaN,,22.35643335,0,1.1,,,,1,1,,0.35,nav,1,1926,1,, 25974,NJBF000074964,300 E BLACK HORSE PIKE,Pleasantville,NJ,39.388294,-74.518947,RES1,3001,,NaN,NE,1969,0,3102,2,2,2274.611331,2274.611331,3505,NO,35.8,42.21,3,4.7,6106,112.353314,122.314869,131.969983,138.282895,I,Above,Gable,0,5701,,39.00850951,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 25975,NJBF000074998,300 E BLACK HORSE PIKE,Pleasantville,NJ,39.388403,-74.51883317,RES1,3001,,NaN,NE,1969,0,3102,2,2,1017.596503,1017.596503,3505,NO,23.78,36.92,3,1.36,6106,112.354847,122.315738,131.970823,138.283393,I,Above,Gable,0,5701,,30.34823819,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 25976,NJBF000073753,129 E GREENFIELD AVE,Pleasantville,NJ,39.382922,-74.52467,RES1,3001,,15,NE,1920,1920,3102,2,1,821.4709638,821.4709638,3505,NO,42.62,48.27,3,4.53,6106,112.276128,122.270392,131.927306,138.255679,I,Above,Gable,0,5701,,45.44357862,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 25977,NJBF000079038,408 MONTCLAIR DR,Pleasantville,NJ,39.40914223,-74.50041258,RES3C,3001,,16,E,1961,1961,3303,1,1,2400.052747,2400.052747,3507,NO,14.41,26.52,1,0.13,6112,112.581587,122.425275,132.077402,138.309803,I,Above,Gable,0,NaN,,20.46430033,0,1.2,,,,1,1,,0.35,nav,1,1961,1,, 25978,NJBF000074663,19 ANSLEY BLVD,Pleasantville,NJ,39.38738261,-74.52451569,RES1,3001,,16,NE,1958,1958,3102,1,1,1071.237347,1071.237347,3505,NO,13.97,19.65,3,0.49,6110,112.237883,122.226385,131.877426,138.187562,I,Above,Hip,0,5701,,16.80842911,0,0,,,,1,1,,0.35,nav,1,1958,1,, 25979,NJBF000074523,53 ANSLEY BLVD,Pleasantville,NJ,39.38685044,-74.52344918,RES1,3001,,16,NE,1948,1948,3102,1,1,2312.538175,2312.538175,3505,NO,24.86,34.6,3,7.11,6106,112.266496,122.250712,131.903449,138.217192,I,Above,Hip,0,5701,,29.7299391,0,0,,,,1,1,,0.03,nav,1,1948,1,, 25980,NJBF000074018,227 E BAYVIEW AVE,Pleasantville,NJ,39.38447781,-74.52149833,RES1,3001,,15,NE,1910,1910,3102,1,1,1585.142595,1585.142595,3505,NO,21.22,35.96,3,8.42,6106,112.332112,122.309902,131.967546,138.293634,I,Above,Flat,0,5701,,28.58608132,0,0,,,,1,1,,0.03,nav,1,1910,1,, 25981,NJBF000074750,62 TUNIS AVE,Pleasantville,NJ,39.38766022,-74.52234927,RES1,3001,,16,NE,1953,1953,3102,1,1,1308.337787,1308.337787,3505,NO,16.4,23.82,3,4.67,6106,112.28355,122.261593,131.914248,138.226,I,Above,Gable,0,5701,,20.11199542,0,0,,,,1,1,,0.03,nav,1,1953,1,, 25982,NJBF000073069,115 E ASHLAND AVE,Pleasantville,NJ,39.37720512,-74.53210197,RES1,3001,,15,NE,1935,1935,3101,1,1,1595.599997,1595.599997,3505,NO,19.69,29.16,3,7.6,6112,112.165725,122.199957,131.858959,138.198208,I,Above,Gable,0,5701,,24.4253237,0,0,,,,1,1,,0.35,nav,1,1935,1,, 25983,NJBF000073627,312 E GREENFIELD AVE,Pleasantville,NJ,39.38210994,-74.52152431,RES1,3001,,NaN,NE,1969,0,3102,2,1,1920.903923,1920.903923,3505,NO,30.63,43.34,3,-1.93,6106,112.354316,122.334334,131.994951,138.330938,I,Above,Flat,0,5701,,36.98758858,0,0,,,,1,1,,0.03,nav,1,1969,2,, 25984,NJBF000073802,211 OAKLAND AVE,Pleasantville,NJ,39.38325745,-74.52331881,RES1,3001,,43,NE,1910,1910,3102,2,2,837.0584317,837.0584317,3505,NO,34.09,48.46,3,6.21,6106,112.303111,122.290651,131.948267,138.277117,I,Above,Gable,0,5701,,41.27588092,0,0,,,,1,1,,0.03,nav,1,1910,2,, 25985,NJBF000076609,136 E ADAMS AVE,Pleasantville,NJ,39.39408272,-74.51513133,RES1,3001,,15,NE,1925,1925,3101,1,1,1415.005342,1415.005342,3505,NO,17.79,25.29,3,5.28,6112,112.386098,122.321705,131.973273,138.26508,I,Above,Gable,0,5701,,21.53969271,0,0,,,,1,1,,0.35,nav,1,1925,1,, 25986,NJBF000072970,137 PLAZA PL,Pleasantville,NJ,39.3760812,-74.53189081,RES1,3001,,15,NE,1935,1935,3101,1,1,983.0255218,983.0255218,3505,NO,23.13,31.92,3,4.8,6110,112.181972,122.215533,131.876086,138.220233,I,Above,Hip,0,5701,,27.52130681,0,0,,,,1,1,,0.35,nav,1,1935,1,, 25987,NJBF000079262,403 E REDWOOD AVE,Pleasantville,NJ,39.41039143,-74.49978226,RES3C,3001,,16,E,1964,1964,3303,1,1,1951.608357,1951.608357,3507,NO,14.86,29.55,1,-0.36,6112,112.585279,122.423479,132.075071,138.302122,I,Above,Gable,0,NaN,,22.20435484,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 25988,NJBF000075008,212 E BLACK HORSE PIKE,Pleasantville,NJ,39.38842663,-74.51929076,RES1,3001,,45,NE,1900,1900,3102,2,2,1249.186918,1249.186918,3505,NO,25.84,36.43,3,3.66,6110,112.344467,122.307415,131.96201,138.274006,I,Above,Hip,0,5701,,31.13232242,0,0,,,,1,1,,0.35,nav,1,1900,2,, 25989,NJBF000074269,37 E BAYVIEW AVE,Pleasantville,NJ,39.38567406,-74.52475833,RES1,3001,,15,NE,1926,1926,3102,1,1,1637.673555,1637.673555,3505,NO,19.53,34.15,3,5.68,6106,112.248192,122.239997,131.893169,138.210038,I,Above,Gable,0,5701,,26.83888395,0,0,,,,1,1,,0.03,nav,1,1926,1,, 25990,NJBF000072972,144 PLAZA PL,Pleasantville,NJ,39.37608453,-74.53108541,RES1,3001,,16,NE,1960,1960,3101,2,1,2059.376455,2059.376455,3505,NO,27.43,35.67,3,3.37,6106,112.200091,122.229647,131.89068,138.236348,I,Above,Gable,0,5701,,31.54901919,0,0,,,,1,1,,0.03,nav,1,1960,2,, 25991,NJBF000075146,118 S CHESTER AVE,Pleasantville,NJ,39.38884798,-74.51956047,RES1,3001,,15,NE,1920,1920,3102,2,1,1082.795393,1082.795393,3505,NO,36.71,44.99,3,2.57,6112,112.33467,122.298275,131.952043,138.261985,I,Above,Gable,0,5701,,40.84630837,0,0,,,,1,1,,0.35,nav,1,1920,2,, 25992,NJBF000077922,824 N FRANKLIN BLVD,Pleasantville,NJ,39.40167474,-74.51046929,RES1,3001,,16,NE,1990,1990,3101,2,1,1115.7321,1115.7321,3505,NO,35.51,41.53,3,7.52,6112,112.42431,122.324983,131.972261,138.23459,I,Above,Gable,0,5701,,38.52015889,0,0,,,,1,1,,0.35,nav,1,1990,2,, 25993,NJBF000075119,49 E BLACK HORSE PIKE,Pleasantville,NJ,39.38876032,-74.52167079,COM1,3003,,NaN,ME,1924,1924,3401,2,1,2912.261463,2912.261463,3507,NO,39.11,52.39,1,0.46,6112,112.288631,122.26203,131.913837,138.221809,I,Above,Gable,0,NaN,,45.74978723,0,1.2,,,,1,1,,0.35,nav,1,1924,2,, 25994,NJBF000073881,327 E BAYVIEW AVE,Pleasantville,NJ,39.38373851,-74.51972767,RES1,3001,,15,NE,1910,1910,3102,1,1,954.7130605,954.7130605,3505,NO,20.43,26,3,2.89,6106,112.378647,122.348866,132.009063,138.340354,I,Above,Flat,0,5701,,23.21334339,0,0,,,,1,1,,0.03,nav,1,1910,1,, 25995,NJBF000075024,122 S HAMPDEN CT,Pleasantville,NJ,39.38847594,-74.51879769,RES1,3001,,16,NE,1991,1991,3102,2,1,1264.480416,1264.480416,3505,NO,30.59,36.24,3,3.71,6106,112.354957,122.315591,131.970616,138.282913,I,Above,Gable,0,5701,,33.41653156,0,1.1,,,,1,1,,0.03,nav,1,1991,2,, 25996,NJBF000073874,121 OAKLAND AVE,Pleasantville,NJ,39.3836985,-74.52434127,RES1,3001,,15,NE,1925,1925,3102,1,1,1430.036313,1430.036313,3505,NO,15.85,23.66,3,3.88,6106,112.276057,122.268024,131.924195,138.249813,I,Above,Flat,0,5701,,19.75236666,0,0,,,,1,1,,0.03,nav,1,1925,1,, 25997,NJBF000073982,237 E BAYVIEW AVE,Pleasantville,NJ,39.38429383,-74.52103901,RES1,3001,,14,NE,1915,1915,3102,1,1,1404.903304,1404.903304,3505,NO,19.82,26.1,3,6.54,6106,112.344097,122.319921,131.978218,138.305634,I,Above,Gable,0,5701,,22.96186379,0,0,,,,1,1,,0.03,nav,1,1915,1,, 25998,NJBF000073126,33 E ASHLAND AVE,Pleasantville,NJ,39.3779932,-74.53335832,RES1,3001,,16,NE,1924,1924,3101,1,1,1980.55357,1980.55357,3505,NO,21.54,33.13,3,3.39,6112,112.129488,122.169613,131.826835,138.160508,I,Above,Gable,0,5701,,27.33362902,0,0,,,,1,1,,0.35,nav,1,1924,1,, 25999,NJBF000077523,714 CLEARVIEW AVE,Pleasantville,NJ,39.39920533,-74.50962205,RES1,3001,,15,NE,2007,2007,3101,1,1,1707.700873,1707.700873,3505,NO,12.4,23.63,3,-1.05,6106,112.463145,122.365616,132.017204,138.290417,I,Above,Gable,0,5701,,18.01400136,0,1.1,,,,1,1,,0.03,nav,1,2007,1,, 26000,NJBF000073939,322 E BAYVIEW AVE,Pleasantville,NJ,39.38413019,-74.51954937,RES1,3001,,NaN,NE,1928,0,3102,2,1,508.770223,508.770223,3505,NO,42.22,52.67,3,3.42,6106,112.378888,122.347913,132.007787,138.33763,I,Above,Flat,0,5701,,47.44846892,0,0,,,,1,1,,0.03,nav,1,1928,2,, 26001,NJBF000073949,320 E BAYVIEW AVE,Pleasantville,NJ,39.38416899,-74.5196945,RES1,3001,,NaN,NE,1969,0,3102,2,1,581.3988476,581.3988476,3505,NO,28,41.31,3,2.96,6106,112.375282,122.344946,132.004637,138.334151,I,Above,Flat,0,5701,,34.65669496,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26002,NJBF000073637,239 E GREENFIELD AVE,Pleasantville,NJ,39.38216111,-74.52264735,RES1,3001,,NaN,NE,1969,0,3102,2,1,1158.8205,1158.8205,3505,NO,28.52,40.64,3,5.9,6106,112.328714,122.314007,131.973595,138.307912,I,Above,Flat,0,5701,,34.57706726,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26003,NJBF000079034,141 W LEEDS AVE,Pleasantville,NJ,39.40912242,-74.5118443,RES1,3001,,15,NE,1966,1966,3101,1,1,4502.962406,4502.962406,3505,NO,15.69,24.7,3,4.38,6110,112.336531,122.223619,131.859145,138.089297,I,Above,Gable,0,5701,,20.19473419,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26004,NJBF000078398,109 E LINDLEY AVE,Pleasantville,NJ,39.40525031,-74.50604117,RES3C,3001,,16,E,1984,1984,3303,1,1,2561.59261,2561.59261,3507,NO,15.9,23.46,1,1.13,6112,112.491403,122.366071,132.014785,138.263343,I,Above,Gable,0,NaN,,19.67924613,0,1.1,,,,1,1,,0.35,nav,1,1984,1,, 26005,NJBF000074764,204 S HAMPDEN CT,Pleasantville,NJ,39.38769946,-74.5192537,RES1,3001,,45,NE,1915,1915,3102,1,3,1950.131633,1950.131633,3505,NO,18.35,26.58,3,4.68,6106,112.351957,122.315684,131.971272,138.286374,I,Above,Hip,0,5701,,22.46632261,0,0,,,,1,1,,0.03,nav,1,1915,1,, 26006,NJBF000074349,310 S HAMPDEN CT,Pleasantville,NJ,39.38602404,-74.5196995,COM1,3003,,NaN,ME,1969,0,3401,1,1,4041.120473,4041.120473,3507,NO,16.79,28.99,1,-0.66,6102,112.35759,122.32537,131.982697,138.304378,I,Above,Gable,0,NaN,,22.8880374,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26007,NJBF000074223,28 E EDGEWATER AVE,Pleasantville,NJ,39.38543121,-74.52550264,RES1,3001,,15,NE,1895,1895,3102,1,1,1250.17222,1250.17222,3505,NO,20.24,31.36,3,8.8,6112,112.233834,122.229445,131.882307,138.199137,I,Above,Gable,0,5701,,25.79752916,0,0,,,,1,1,,0.35,nav,1,1895,1,, 26008,NJBF000072943,105 E RIDGEWOOD AVE,Pleasantville,NJ,39.37632742,-74.53228675,RES1,3001,,NaN,NE,1989,1989,3101,3,1,16992.6613,16992.6613,3505,NO,35.03,48.82,3,-0.98,6112,112.17052,122.20598,131.865989,138.208388,I,Above,Gable,0,5701,,41.92418499,0,0,,,,1,1,,0.35,nav,1,1989,3,, 26009,NJBF000073806,330 E EDGEWATER AVE,Pleasantville,NJ,39.38328284,-74.51979186,RES1,3001,,14,NE,1920,1920,3102,2,1,735.6063377,735.6063377,3505,NO,30.43,43.03,3,8.42,6106,112.381613,122.352532,132.013238,138.346382,I,Above,Flat,0,5701,,36.72983704,0,0,,,,1,1,,0.03,nav,1,1920,2,, 26010,NJBF000073517,136 FRAMBES AVE,Pleasantville,NJ,39.38127088,-74.52705015,RES1,3001,,16,NE,1961,1961,3102,1,1,1841.445911,1841.445911,3505,NO,16.34,29.31,3,1.72,6112,112.238811,122.245881,131.903062,138.23467,I,Above,Gable,0,5701,,22.82464306,0,0,,,,1,1,,0.35,nav,1,1961,1,, 26011,NJBF000075882,222 OLD TURNPIKE,Pleasantville,NJ,39.39148919,-74.51575183,COM1,3003,,NaN,ME,1987,1987,3401,1,1,5046.766158,5046.766158,3507,NO,13.02,20.34,1,-0.29,6106,112.395208,122.337812,131.992098,138.294428,I,Above,Gable,0,NaN,,16.68267491,0,0,,,,1,1,,0.03,nav,1,1987,1,, 26012,NJBF000075183,39 E BLACK HORSE PIKE,Pleasantville,NJ,39.38898519,-74.52217756,COM1,3003,,NaN,ME,1969,0,3401,2,1,1515.260066,1515.260066,3507,NO,28.57,42.07,1,-0.35,6112,112.275355,122.250763,131.901773,138.20821,I,Above,Hip,0,NaN,,35.32001436,0,0,,,,1,1,,0.35,nav,1,1969,2,, 26013,NJBF000074658,44 ANSLEY BLVD,Pleasantville,NJ,39.38737119,-74.52347244,RES1,3001,,16,NE,1920,1920,3102,2,1,1393.118856,1393.118856,3505,NO,29.15,37.62,3,0.12,6106,112.261216,122.244862,131.896867,138.208418,I,Above,Hip,0,5701,,33.38348544,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 26014,NJBF000073172,35 E FLORAL AVE,Pleasantville,NJ,39.37851726,-74.53255783,RES1,3001,,16,NE,1960,1960,3101,1,1,1496.233077,1496.233077,3505,NO,21.15,31.04,3,5.31,6110,112.142254,122.178128,131.835139,138.168276,I,Above,Hip,0,5701,,26.09131905,0,0,,,,1,1,,0.35,nav,1,1960,1,, 26015,NJBF000075546,2 N HAMPDEN CT,Pleasantville,NJ,39.39026773,-74.51773521,RES1,3001,,15,NE,1903,1903,3102,2,1,986.225753,986.225753,3505,NO,32.04,37.73,3,6.7,6106,112.36229,122.315596,131.969355,138.275123,I,Above,Hip,0,5701,,34.88786656,0,0,,,,1,1,,0.03,nav,1,1903,2,, 26016,NJBF000073899,225 E EDGEWATER AVE,Pleasantville,NJ,39.38383893,-74.52228135,RES1,3001,,15,NE,1920,1920,3102,2,1,1144.533565,1144.533565,3505,NO,31.76,39.23,3,-0.4,6106,112.320724,122.302818,131.960585,138.288367,I,Above,Gable,0,5701,,35.49264608,0,0,,,,1,1,,0.03,nav,1,1920,2,, 26017,NJBF000074733,66 TUNIS AVE,Pleasantville,NJ,39.38759888,-74.52213983,RES1,3001,,16,NE,1945,1945,3102,1,2,2198.974561,2198.974561,3505,NO,14.69,20.09,3,1.53,6106,112.288753,122.265908,131.918842,138.231101,I,Above,Gable,0,5701,,17.39010143,0,0,,,,1,1,,0.03,nav,1,1945,1,, 26018,NJBF000077592,730 CLEARVIEW AVE,Pleasantville,NJ,39.39968249,-74.50922399,RES1,3001,,16,NE,2003,2003,3101,1,1,1190.639474,1190.639474,3505,NO,13.65,19.77,3,0.89,6106,112.467834,122.367686,132.019176,138.290516,I,Above,Gable,0,5701,,16.70991361,0,1.2,,,,1,1,,0.03,nav,1,2003,1,, 26019,NJBF000079114,1108 SHANE CT,Pleasantville,NJ,39.4096273,-74.51052155,RES1,3001,,16,NE,2005,2005,3101,2,1,1285.598204,1285.598204,3505,NO,24.54,33.57,3,-0.52,6112,112.361101,122.241658,131.878386,138.10698,I,Above,Gable,0,5701,,29.0524327,0,1.1,,,,1,1,,0.35,nav,1,2005,2,, 26020,NJBF000073768,221 OAKLAND AVE,Pleasantville,NJ,39.38303859,-74.52298988,RES1,3001,,14,NE,1925,1925,3102,1,1,925.9420042,925.9420042,3505,NO,21.57,29.92,3,6.96,6106,112.312555,122.298734,131.956913,138.28711,I,Above,Flat,0,5701,,25.74190342,0,0,,,,1,1,,0.03,nav,1,1925,1,, 26021,NJBF000073973,108 OAKLAND AVE,Pleasantville,NJ,39.38425812,-74.52480471,RES1,3001,,15,NE,1922,1922,3102,1,1,1999.789202,1999.789202,3505,NO,17.2,23.38,3,-1.48,6112,112.260396,122.254,131.909038,138.231695,I,Above,Gable,0,5701,,20.29104595,0,0,,,,1,1,,0.35,nav,1,1922,1,, 26022,NJBF000076356,137 CHARLES AVE,Pleasantville,NJ,39.39310685,-74.51632586,RES1,3001,,15,NE,1928,1928,3101,1,1,1023.128796,1023.128796,3505,NO,18.72,26.81,3,0.24,6112,112.368278,122.310808,131.962323,138.257324,I,Above,Gable,0,5701,,22.76540867,0,1.1,,,,1,1,,0.35,nav,1,1928,1,, 26023,NJBF000078343,110 E THOMPSON AVE,Pleasantville,NJ,39.404875,-74.5063685,RES3C,3001,,16,E,1989,1989,3303,1,1,1233.050632,1233.050632,3507,NO,16.55,27.26,1,0.7,6112,112.487342,122.364185,132.012913,138.262997,I,Above,Gable,0,NaN,,21.90447418,0,0,,,,1,1,,0.35,nav,1,1989,1,, 26024,NJBF000074554,224 S HAMPDEN CT,Pleasantville,NJ,39.38695851,-74.51972368,RES1,3001,,16,NE,1905,1905,3102,2,1,1055.445051,1055.445051,3505,NO,33.73,40.8,3,0.87,6106,112.348346,122.315149,131.971242,138.288958,I,Above,Flat,0,5701,,37.26659974,0,1.2,,,,1,1,,0.03,nav,1,1905,2,, 26025,NJBF000075527,8 S CHESTER AVE,Pleasantville,NJ,39.39018015,-74.5187765,RES1,3001,,15,NE,1925,1925,3102,1,1,1580.343392,1580.343392,3505,NO,19.97,26.43,3,7.06,6112,112.340017,122.298153,131.950943,138.256078,I,Above,Flat,0,5701,,23.20198165,0,0,,,,1,1,,0.35,nav,1,1925,1,, 26026,NJBF000074986,107 FRANKFORT COURT,Pleasantville,NJ,39.38836991,-74.51758725,RES1,3001,,16,NE,1950,1950,3102,1,1,1097.465063,1097.465063,3505,NO,16.81,24.03,3,-1.39,6106,112.382789,122.338052,131.994445,138.308384,I,Above,Gable,0,5701,,20.41744297,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 26027,NJBF000075066,104 LYONS COURT,Pleasantville,NJ,39.38861523,-74.51775097,RES1,3001,,16,NE,1950,1950,3102,1,1,1170.705656,1170.705656,3505,NO,13.71,28.32,3,-0.02,6106,112.376908,122.332595,131.988503,138.301248,I,Above,Flat,0,5701,,21.01525017,0,0,,,,1,1,,0.03,nav,1,1950,1,, 26028,NJBF000075028,106 LYONS COURT,Pleasantville,NJ,39.38848952,-74.51782391,RES1,3001,,16,NE,1925,1925,3102,2,1,1449.079411,1449.079411,3505,NO,26.63,33.1,3,-0.9,6106,112.376433,122.332616,131.988611,138.301815,I,Above,Hip,0,5701,,29.86355855,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 26029,NJBF000074222,205 CORDOVA AVENUE,Pleasantville,NJ,39.38542949,-74.514326,RES1,3001,,16,NE,1925,1925,3102,2,1,1666.555307,1666.555307,3505,NO,23.88,30.31,3,-2.15,6106,112.482735,122.426497,132.089902,138.419289,I,Above,Hip,0,5701,,27.09556131,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 26030,NJBF000074251,203 CORDOVA AVENUE,Pleasantville,NJ,39.38557367,-74.51423938,RES1,3001,,16,NE,1925,1925,3102,2,1,1967.068861,1967.068861,3505,NO,30.29,44.21,3,8.35,6106,112.483285,122.426511,132.089832,138.418667,I,Above,Gable,0,5701,,37.25404757,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 26031,NJBF000074229,208 FLORENCE AVENUE,Pleasantville,NJ,39.38547218,-74.51464293,RES1,3001,,16,NE,1930,1930,3102,2,1,923.1298748,923.1298748,3505,NO,44.74,54.02,3,8.68,6106,112.475279,122.42044,132.083468,138.412408,I,Above,Hip,0,5701,,49.37976439,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 26032,NJBF000074742,105 PALERMO AVENUE,Pleasantville,NJ,39.38762217,-74.51492111,RES1,3001,,16,NE,1950,1950,3102,1,1,725.583587,725.583587,3505,NO,18.6,28.37,3,6.77,6106,112.448834,122.392951,132.05306,138.372552,I,Above,Gable,0,5701,,23.48545541,0,0,,,,1,1,,0.03,nav,1,1950,1,, 26033,NJBF000075143,100 LYONS COURT,Pleasantville,NJ,39.38882632,-74.5176573,RES1,3001,,16,NE,1950,1950,3102,1,1,862.3631185,862.3631185,3505,NO,15.27,21.11,3,3.4,6106,112.377065,122.332045,131.987776,138.299717,I,Above,Hip,0,5701,,18.19275708,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 26034,NJBF000074869,108 FRANKFORT COURT,Pleasantville,NJ,39.38802426,-74.51706112,RES1,3001,,16,NE,1925,1925,3102,1,1,2045.270723,2045.270723,3505,NO,24.81,36.38,3,8.05,6106,112.397638,122.350954,132.008331,138.324234,I,Above,Flat,0,5701,,30.59345322,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 26035,NJBF000073522,210 OXFORD PLACE,Pleasantville,NJ,39.38133344,-74.50042445,RES1,3001,,16,NE,2015,2015,3101,1,1,1466.994441,1466.994441,3505,NO,19.92,25.35,3,2.75,6106,112.83201,122.716548,132.399688,138.753392,I,Above,Gable,0,5701,,22.6358787,0,0,,,,1,1,,0.03,nav,1,2015,1,, 26036,NJBF000074802,106 GENOA AVENUE,Pleasantville,NJ,39.3878266,-74.5152336,RES1,3001,,28,NE,1906,1906,3102,2,2,1178.334066,1178.334066,3505,NO,22.75,30.25,3,0,6106,112.439985,122.385272,132.044797,138.363152,I,Above,Gable,0,5701,,26.50124797,0,0,,,,1,1,,0.03,nav,1,1906,2,, 26037,NJBF000073699,7092 BLACK HORSE PIKE,Pleasantville,NJ,39.3825493,-74.49904129,COM1,3003,280,NaN,ME,1969,0,3401,3,1,6644.37594,6644.37594,3507,NO,33.79,45.3,1,2.22,6106,112.850311,122.728321,132.411939,138.760172,I,Above,Flat,0,NaN,,39.54174375,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26038,NJBF000080103,40 W CALIFORNIA AVE,Pleasantville,NJ,39.41393774,-74.50556946,RES1,3001,,17,NE,1997,1997,3101,1,1,1617.010406,1617.010406,3505,NO,26.47,38.13,3,7.1,6106,112.434847,122.284326,131.922831,138.13459,I,Above,Gable,0,5701,,32.30290311,0,0,,,,1,1,,0.03,nav,1,1997,1,, 26039,NJBF000081347,116 MEADOWVIEW AVE,Pleasantville,NJ,39.41875943,-74.50747946,RES1,3001,,17,NE,1970,1970,3101,1,1,1953.291545,1953.291545,3505,NO,17.78,25.01,3,5.15,6112,112.359899,122.200827,131.83044,138.021326,I,Above,Gable,0,5701,,21.3926572,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 26040,NJBF000080298,51 OREGON AVE,Pleasantville,NJ,39.41460841,-74.50561792,RES1,3001,,17,NE,1952,1952,3101,1,1,1860.699152,1860.699152,3505,NO,19.98,28.88,3,4.71,6106,112.428887,122.276525,131.914126,138.123037,I,Above,Gable,0,5701,,24.42857883,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 26041,NJBF000074186,207 CORDOVA AVENUE,Pleasantville,NJ,39.38529398,-74.5144222,RES1,3001,,16,NE,1925,1925,3102,2,1,2032.241585,2032.241585,3505,NO,27.71,39.78,3,-1.05,6106,112.481892,122.426219,132.089688,138.419576,I,Above,Hip,0,5701,,33.74552204,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 26042,NJBF000074558,7016 BLACK HORSE PIKE,Pleasantville,NJ,39.3869819,-74.51470815,COM1,3003,999,NaN,ME,1969,0,3401,1,1,7615.927644,7615.927644,3507,NO,18.29,24.2,1,0.87,6106,112.459545,122.40343,132.064553,138.38696,I,Above,Flat,0,NaN,,21.24734154,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26043,NJBF000074640,109 PALERMO AVENUE,Pleasantville,NJ,39.38730766,-74.5151319,RES1,3001,,16,NE,1927,1927,3102,2,1,1061.566567,1061.566567,3505,NO,33.18,39.99,3,-0.21,6106,112.447083,122.392517,132.052794,138.373454,I,Above,Hip,0,5701,,36.58395389,0,0,,,,1,1,,0.03,nav,1,1927,2,, 26044,NJBF000074698,107 PALERMO AVENUE,Pleasantville,NJ,39.38748035,-74.51503873,RES1,3001,,16,NE,1927,1927,3102,2,1,1119.507921,1119.507921,3505,NO,39.7,52.97,3,2.07,6106,112.44754,122.392356,132.052517,138.372519,I,Above,Hip,0,5701,,46.33557968,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 26045,NJBF000074530,7020 BLACK HORSE PIKE,Pleasantville,NJ,39.38686781,-74.51365743,COM1,3003,30,NaN,ME,1969,0,3401,2,1,16951.58233,16951.58233,3507,NO,31.81,41.08,1,2.16,6106,112.48394,122.423206,132.085575,138.409302,I,Above,Flat,0,NaN,,36.44624783,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26046,NJBF000073759,7086 BLACK HORSE PIKE,Pleasantville,NJ,39.38298823,-74.50006137,COM1,3003,4,NaN,ME,1969,0,3401,3,1,7798.8005,7798.8005,3507,NO,43.07,55.58,1,2.07,6106,112.823284,122.705493,132.387459,138.733721,I,Above,Flat,0,NaN,,49.32667867,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26047,NJBF000073964,1616 BAY DRIVE,Pleasantville,NJ,39.38421984,-74.50752412,RES3C,3001,,16,E,1925,1925,3303,2,1,1108.14538,1108.14538,3507,NO,27.3,36.23,1,2.49,6106,112.645535,122.55974,132.231814,138.570803,I,Above,Gable,0,NaN,,31.76441836,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 26048,NJBF000074734,114 GENOA AVENUE,Pleasantville,NJ,39.38759911,-74.51536283,RES1,3001,,28,NE,1906,1906,3102,2,2,896.6110998,896.6110998,3505,NO,32.03,37.56,3,2.17,6106,112.439244,122.385384,132.045058,138.36428,I,Above,Gable,0,5701,,34.79414856,0,0,,,,1,1,,0.03,nav,1,1906,2,, 26049,NJBF000074923,106 FRANKFORT COURT,Pleasantville,NJ,39.38818514,-74.51699133,RES1,3001,,16,NE,1925,1925,3102,1,1,1494.124177,1494.124177,3505,NO,17.5,23.6,3,0.84,6106,112.397708,122.350503,132.007746,138.32303,I,Above,Hip,0,5701,,20.55036648,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 26050,NJBF000073828,7080 BLACK HORSE PIKE,Pleasantville,NJ,39.38341852,-74.50104679,COM1,3003,530,NaN,ME,1969,0,3401,3,1,7414.785226,7414.785226,3507,NO,36.18,42.16,1,-0.11,6106,112.797113,122.683368,132.363731,138.708008,I,Above,Flat,0,NaN,,39.16680704,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26051,NJBF000074094,7064 BLACK HORSE PIKE,Pleasantville,NJ,39.38488325,-74.50520023,COM1,3003,951,NaN,ME,1969,0,3401,1,1,3907.302446,3907.302446,3507,NO,19.24,28.39,1,-0.13,6106,112.690582,122.59402,132.268008,138.604955,I,Above,Flat,0,NaN,,23.81406624,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26052,NJBF000073933,13 EMPIRE DRIVE,Pleasantville,NJ,39.38407416,-74.50640564,RES3C,3001,,35,E,1980,1980,3303,2,1,14669.68847,14669.68847,3507,NO,37.56,47.26,1,0.5,6106,112.671783,122.581132,132.254614,138.594717,I,Above,Flat,0,NaN,,42.40891464,0,0,,,,1,1,,0.03,nav,1,1980,2,, 26053,NJBF000075077,,Pleasantville,NJ,39.38863785,-74.51672258,RES1,3001,,NaN,NE,1925,0,3102,2,1,1773.838592,1773.838592,3505,NO,33.52,48.16,3,-2.87,6106,112.399488,122.350488,132.007429,138.321034,I,Above,Flat,0,5701,,40.84277577,0,0,,,,1,1,,0.03,nav,1,1925,2,, 26054,NJBF000074868,,Pleasantville,NJ,39.38802303,-74.51468364,RES1,3001,,NaN,NE,1950,0,3102,2,1,1855.165883,1855.165883,3505,NO,31.9,38.12,3,1.64,6106,112.45036,122.392934,132.052795,138.370763,I,Above,Flat,0,5701,,35.01275966,0,0,,,,1,1,,0.03,nav,1,1950,2,, 26055,NJBF000080525,39 W NEVADA AVE,Pleasantville,NJ,39.41533508,-74.50469064,RES1,3001,,17,NE,1955,1955,3101,1,1,946.0011007,946.0011007,3505,NO,12.77,25.79,3,-0.92,6112,112.443251,122.28535,131.923473,138.129452,I,Above,Gable,0,5701,,19.2812947,0,0,,,,1,1,,0.35,nav,1,1955,1,, 26056,NJBF000075168,,Pleasantville,NJ,39.38892814,-74.51759216,RES1,3001,,NaN,NE,1950,0,3102,2,1,1043.722405,1043.722405,3505,NO,29.02,35.8,3,-0.04,6106,112.377576,122.332124,131.987789,138.29936,I,Above,Flat,0,5701,,32.40881847,0,0,,,,1,1,,0.03,nav,1,1950,2,, 26057,NJBF000074039,115 E EDGEWATER AVE,Pleasantville,NJ,39.38457334,-74.52428066,RES1,3001,,15,NE,1925,1925,3102,1,1,1250.23478,1250.23478,3505,NO,23.9,36.9,3,8.56,6112,112.269124,122.259915,131.91498,138.237059,I,Above,Hip,0,5701,,30.39705416,0,0,,,,1,1,,0.35,nav,1,1925,1,, 26058,NJBF000073780,344 E EDGEWATER AVE,Pleasantville,NJ,39.383102,-74.51908076,RES1,3001,,NaN,NE,1955,1955,3102,1,1,993.0158033,993.0158033,3505,NO,23.32,32.18,3,3.83,6106,112.39923,122.366981,132.028563,138.36328,I,Above,Flat,0,5701,,27.75059106,0,0,,,,1,1,,0.03,nav,1,1955,1,, 26059,NJBF000074928,10 TUNIS AVE,Pleasantville,NJ,39.38819853,-74.52467569,RES1,3001,,16,NE,1961,1961,3102,1,1,1157.530912,1157.530912,3505,NO,13.6,27.07,3,1.04,6110,112.226943,122.215057,131.864816,138.171369,I,Above,Gable,0,5701,,20.33477572,0,0,,,,1,1,,0.35,nav,1,1961,1,, 26060,NJBF000072914,157 PLAZA PL,Pleasantville,NJ,39.37561325,-74.53122754,RES1,3001,,16,NE,1980,1980,3101,1,1,2120.792755,2120.792755,3505,NO,10.93,21.44,3,-1.54,6106,112.201748,122.232128,131.893658,138.240949,I,Above,Gable,0,5701,,16.18445444,0,0,,,,1,1,,0.03,nav,1,1980,1,, 26061,NJBF000074619,56 ANSLEY BLVD,Pleasantville,NJ,39.38721271,-74.52294059,RES1,3001,,16,NE,1952,1952,3102,1,1,818.2892854,818.2892854,3505,NO,17.77,31.09,3,1.29,6106,112.274471,122.255852,131.908561,138.221441,I,Above,Hip,0,5701,,24.42702858,0,0,,,,1,1,,0.03,nav,1,1952,1,, 26062,NJBF000075390,12 S HAMPDEN CT,Pleasantville,NJ,39.38970691,-74.51809644,RES1,3001,,15,NE,1920,1920,3102,2,1,1131.106842,1131.106842,3505,NO,45.06,51.63,3,8.68,6110,112.359346,122.315094,131.969217,138.277013,I,Above,Hip,0,5701,,48.34714401,0,0,,,,1,1,,0.35,nav,1,1920,2,, 26063,NJBF000073055,104 PLAZA PL,Pleasantville,NJ,39.37703248,-74.53269665,RES1,3001,,45,NE,1926,1926,3101,2,2,1477.893058,1477.893058,3505,NO,38.18,50.99,3,-0.66,6112,112.154081,122.19134,131.850208,138.188997,I,Above,Gable,0,5701,,44.58555816,0,1.1,,,,1,1,,0.35,nav,1,1926,2,, 26064,NJBF000074311,320 S HAMPDEN CT,Pleasantville,NJ,39.38586048,-74.51923661,COM1,3003,,16,ME,1963,1963,3401,1,1,3737.520008,3737.520008,3507,NO,12.35,20.75,1,1.78,6106,112.369431,122.335253,131.993234,138.316113,I,Above,Hip,0,NaN,,16.54881948,0,0,,,,1,1,,0.03,nav,1,1963,1,, 26065,NJBF000073104,49 E ASHLAND AVE,Pleasantville,NJ,39.37767146,-74.53289988,RES1,3001,,16,NE,1955,1955,3101,1,1,2233.467456,2233.467456,3505,NO,19.29,31.4,3,4.93,6110,112.14304,122.181039,131.838957,138.174806,I,Above,Hip,0,5701,,25.34163553,0,0,,,,1,1,,0.35,nav,1,1955,1,, 26066,NJBF000073918,328 E BAYVIEW AVE,Pleasantville,NJ,39.38400332,-74.51910216,RES1,3001,,14,NE,1910,1910,3102,1,1,1038.505561,1038.505561,3505,NO,26.03,38.53,3,7.82,6106,112.390071,122.357133,132.017583,138.348461,I,Above,Gable,0,5701,,32.28123504,0,0,,,,1,1,,0.03,nav,1,1910,1,, 26067,NJBF000078109,79A ATLANTIC AVE,Pleasantville,NJ,39.40299597,-74.5073386,RES3C,3001,,33,E,1950,1950,3303,3,1,3438.903391,3438.903391,3507,NO,34.4,43.44,1,1.7,6112,112.481498,122.366542,132.01631,138.274152,I,Above,Flat,0,NaN,,38.92044934,0,0,,,,1,1,,0.35,nav,1,1950,3,, 26068,NJBF000078075,79A ATLANTIC AVE,Pleasantville,NJ,39.40275069,-74.50724556,RES3C,3001,,33,E,1950,1950,3303,4,1,4926.562756,4926.562756,3507,NO,73.66,86.81,1,1.07,6106,112.48551,122.370732,132.020938,138.279851,I,Above,Flat,0,NaN,,80.23658209,0,0,,,,1,1,,0.03,nav,1,1950,4,, 26069,NJBF000075871,AC LINE TO FRANKLIN AVE,Pleasantville,NJ,39.39143863,-74.51071496,GOV1,3001,,NaN,E,1969,0,3401,3,1,2680.148199,2680.148199,3507,NO,53.29,65.01,1,2.04,6106,112.506811,122.427327,132.087378,138.39335,I,Above,Flat,0,NaN,,59.15234483,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26070,NJBF000074962,37 E DECATUR AVE,Pleasantville,NJ,39.38829222,-74.52308939,RES1,3001,,15,NE,1928,1928,3102,1,1,1110.438053,1110.438053,3505,NO,20.93,29.95,3,2.81,6110,112.26137,122.241977,131.893073,138.201285,I,Above,Flat,0,5701,,25.43792814,0,0,,,,1,1,,0.35,nav,1,1928,1,, 26071,NJBF000074500,59 ROOSEVELT DR,Pleasantville,NJ,39.38672734,-74.52323963,RES1,3001,,16,NE,1948,1948,3102,1,1,1015.712891,1015.712891,3505,NO,20.08,31.47,3,6.18,6106,112.272279,122.255674,131.908768,138.22329,I,Above,Gable,0,5701,,25.77759546,0,0,,,,1,1,,0.03,nav,1,1948,1,, 26072,NJBF000074976,22 TUNIS AVE,Pleasantville,NJ,39.38834717,-74.52437735,RES1,3001,,16,NE,1920,1920,3102,2,1,1662.102641,1662.102641,3505,NO,30.73,45.4,3,8.41,6110,112.232257,122.218766,131.86859,138.174927,I,Above,Gable,0,5701,,38.06485521,0,0,,,,1,1,,0.35,nav,1,1920,2,, 26073,NJBF000074536,223 LYONS CT,Pleasantville,NJ,39.38689099,-74.51946049,RES1,3001,,15,NE,1920,1920,3102,1,1,503.2468345,503.2468345,3505,NO,25.77,35.78,3,8.6,6106,112.354845,122.320514,131.976952,138.29524,I,Above,Gable,0,5701,,30.77765103,0,0,,,,1,1,,0.03,nav,1,1920,1,, 26074,NJBF000076269,155 CHARLES AVE,Pleasantville,NJ,39.39280256,-74.51567687,RES1,3001,,16,NE,1988,1988,3101,1,1,1473.546429,1473.546429,3505,NO,24.02,36.8,3,7.16,6106,112.385243,122.325421,131.978064,138.274878,I,Above,Gable,0,5701,,30.412451,0,0,,,,1,1,,0.03,nav,1,1988,1,, 26075,NJBF000075526,1 S HAMPDEN CT,Pleasantville,NJ,39.39017992,-74.51824776,RES1,3001,,15,NE,1906,1906,3102,2,1,1004.078766,1004.078766,3505,NO,34.2,48.88,3,-2.68,6110,112.351726,122.307473,131.960812,138.266465,I,Above,Flat,0,5701,,41.54001727,0,0,,,,1,1,,0.35,nav,1,1906,2,, 26076,NJBF000076618,130 E ADAMS AVE,Pleasantville,NJ,39.39410824,-74.51528125,RES1,3001,,16,NE,1962,1962,3101,1,1,1511.697231,1511.697231,3505,NO,11.22,17.18,3,-1.93,6112,112.382581,122.3188,131.970162,138.26175,I,Above,Hip,0,5701,,14.20306583,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 26077,NJBF000073401,EXPRESSWAY PARKING LOT,Pleasantville,NJ,39.38044099,-74.49015399,COM1,3003,,NaN,ME,1969,0,3401,1,1,3662.743048,3662.743048,3507,NO,10.89,23.51,1,-0.12,6106,113.068618,122.909477,132.606102,138.961215,I,Above,Flat,0,NaN,,17.20041926,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26078,NJBF000073420,EXPRESSWAY PARKING LOT,Pleasantville,NJ,39.38059168,-74.49052946,COM1,3003,,NaN,ME,1969,0,3401,1,1,2259.365087,2259.365087,3507,NO,17.8,30.01,1,1.24,6106,113.058756,122.901159,132.597173,138.951807,I,Above,Flat,0,NaN,,23.90468877,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26079,NJBF000073557,EXPRESSWAY PARKING LOT,Pleasantville,NJ,39.38158879,-74.493167,COM1,3003,,NaN,ME,1969,0,3401,1,1,3947.11179,3947.11179,3507,NO,12.06,17.5,1,-0.05,6106,112.990115,122.84338,132.535155,138.886485,I,Above,Flat,0,NaN,,14.78338106,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26080,NJBF000079845,15 W REDWOOD AVE,Pleasantville,NJ,39.41309258,-74.50558758,RES3C,3001,,NaN,E,1969,0,3303,1,1,992.1818281,992.1818281,3507,NO,11.8,19.09,1,0.27,6106,112.44069,122.292741,131.932267,138.147605,I,Above,Gable,0,NaN,,15.44533895,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26081,NJBF000079802,15 W REDWOOD AVE,Pleasantville,NJ,39.41290362,-74.50574216,RES3C,3001,,NaN,E,1969,0,3303,1,1,1822.671792,1822.671792,3507,NO,11.48,24.7,1,-0.23,6106,112.438813,122.291981,131.931511,138.147622,I,Above,Gable,0,NaN,,18.0887693,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26082,NJBF000079694,15 W REDWOOD AVE,Pleasantville,NJ,39.41237492,-74.50555789,RES3C,3001,,NaN,E,1969,0,3303,1,1,874.4242051,874.4242051,3507,NO,18.9,31.31,1,1.6,6106,112.446678,122.300707,131.941172,138.15956,I,Above,Flat,0,NaN,,25.1068065,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26083,NJBF000079689,15 W REDWOOD AVE,Pleasantville,NJ,39.4123445,-74.505463,RES3C,3001,,NaN,E,1969,0,3303,1,1,1019.201277,1019.201277,3507,NO,18.95,27.99,1,1.8,6110,112.448929,122.302694,131.943339,138.161871,I,Above,Gable,0,NaN,,23.47059059,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26084,NJBF000079667,15 W REDWOOD AVE,Pleasantville,NJ,39.412232,-74.50572449,RES3C,3001,,NaN,E,1969,0,3303,1,1,658.4497474,658.4497474,3507,NO,20.6,28.35,1,1.52,6106,112.444207,122.299258,131.939654,138.158618,I,Above,Hip,0,NaN,,24.47639958,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26085,NJBF000079777,15 W REDWOOD AVE,Pleasantville,NJ,39.41280121,-74.50595472,RES3C,3001,,NaN,E,1969,0,3303,1,1,1065.080277,1065.080277,3507,NO,11.57,19.98,1,0.51,6106,112.43504,122.28929,131.928628,138.145136,I,Above,Flat,0,NaN,,15.7757249,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26086,NJBF000079737,15 W REDWOOD AVE,Pleasantville,NJ,39.41261673,-74.50553959,RES3C,3001,,NaN,E,1969,0,3303,1,1,1023.270527,1023.270527,3507,NO,12.45,18.33,1,-0.42,6106,112.445255,122.298518,131.938708,138.156073,I,Above,Gable,0,NaN,,15.39070609,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26087,NJBF000079766,15 W REDWOOD AVE,Pleasantville,NJ,39.41274417,-74.50515547,RES3C,3001,,NaN,E,1969,0,3303,1,1,1315.59178,1315.59178,3507,NO,16.7,25.52,1,-0.27,6112,112.452514,122.303997,131.944609,138.161499,I,Above,Flat,0,NaN,,21.11397569,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26088,NJBF000079774,15 W REDWOOD AVE,Pleasantville,NJ,39.4127845,-74.50529849,RES3C,3001,,NaN,E,1969,0,3303,1,1,727.2864629,727.2864629,3507,NO,21.44,31.72,1,2.45,6106,112.449161,122.301048,131.941394,138.158087,I,Above,Flat,0,NaN,,26.5794482,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26089,NJBF000074612,223 S HAMPDEN CT,Pleasantville,NJ,39.38718963,-74.52009039,RES1,3001,,15,NE,1912,1912,3102,2,1,1389.765406,1389.765406,3505,NO,33.34,38.76,3,1.09,6106,112.338074,122.306281,131.961717,138.27806,I,Above,Hip,0,5701,,36.05266426,0,0,,,,1,1,,0.03,nav,1,1912,2,, 26090,NJBF000078037,78B ATLANTIC AVE,Pleasantville,NJ,39.40247656,-74.50670295,RES3C,3001,,33,E,1950,1950,3303,3,1,5050.782728,5050.782728,3507,NO,58.39,64.15,1,1.48,6106,112.499528,122.383183,132.034476,138.294702,I,Above,Hip,0,NaN,,61.26558369,0,0,,,,1,1,,0.03,nav,1,1950,3,, 26091,NJBF000078087,78B ATLANTIC AVE,Pleasantville,NJ,39.40283856,-74.50625885,RES3C,3001,,33,E,1950,1950,3303,4,1,4519.280764,4519.280764,3507,NO,78.29,90.56,1,0.98,6106,112.506192,122.387272,132.038718,138.297506,I,Above,Flat,0,NaN,,84.42569491,0,0,,,,1,1,,0.03,nav,1,1950,4,, 26092,NJBF000078178,78B ATLANTIC AVE,Pleasantville,NJ,39.40344769,-74.50714694,RES3C,3001,,33,E,1950,1950,3303,4,1,4702.10169,4702.10169,3507,NO,64.27,74.87,1,1.5,6112,112.481989,122.365239,132.014695,138.270664,I,Above,Flat,0,NaN,,69.56681408,0,0,,,,1,1,,0.35,nav,1,1950,4,, 26093,NJBF000079109,413 LARCHMONT DR,Pleasantville,NJ,39.40960591,-74.49990052,RES3C,3001,,16,E,1962,1962,3303,1,1,1134.340411,1134.340411,3507,NO,14.27,23.36,1,1.95,6112,112.588901,122.42953,132.081874,138.312267,I,Above,Gable,0,NaN,,18.81445434,0,0,,,,1,1,,0.35,nav,1,1962,1,, 26094,NJBF000074895,49 E DECATUR AVE,Pleasantville,NJ,39.38810211,-74.52259525,RES1,3001,,16,NE,1948,1948,3102,1,1,1773.940311,1773.940311,3505,NO,21.58,36.23,3,5.23,6106,112.274064,122.252648,131.904469,138.214081,I,Above,Gable,0,5701,,28.90576671,0,0,,,,1,1,,0.03,nav,1,1948,1,, 26095,NJBF000074700,2 E WRIGHT ST,Pleasantville,NJ,39.38750232,-74.52540176,RES1,3001,,15,NE,1880,1880,3102,2,1,1481.888552,1481.888552,3505,NO,35.72,41.48,3,-1.85,6112,112.21709,122.209578,131.859661,138.168104,I,Above,Hip,0,5701,,38.59950287,0,1.1,,,,1,1,,0.35,nav,1,1880,2,, 26096,NJBF000074639,65 TUNIS AVE,Pleasantville,NJ,39.38730746,-74.52242536,RES1,3001,,16,NE,1945,1945,3102,2,1,1069.485587,1069.485587,3505,NO,26.35,38.81,3,1.56,6106,112.285087,122.263946,131.917007,138.230137,I,Above,Gable,0,5701,,32.57949845,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 26097,NJBF000073967,201 E EDGEWATER AVE,Pleasantville,NJ,39.3842447,-74.52342053,RES1,3001,,NaN,NE,1969,0,3102,2,1,1367.906099,1367.906099,3505,NO,34.55,49.42,3,-0.16,6106,112.291417,122.278485,131.934727,138.25933,I,Above,Gable,0,5701,,41.98290942,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26098,NJBF000079215,1133 N MAIN ST,Pleasantville,NJ,39.41017294,-74.50889273,GOV1,3004,,NaN,E,1969,0,3404,4,1,759.3590309,759.3590309,3507,NO,59.85,72.1,1,0.41,6112,112.391905,122.264697,131.903049,138.12993,I,Above,Flat,0,NaN,,65.97153518,0,0,,,,2,2,,1,nav,1,1969,4,, 26099,NJBF000079291,1133 N MAIN ST,Pleasantville,NJ,39.41051663,-74.5097812,GOV1,3004,,NaN,E,1969,0,3404,7,1,4560.189079,4560.189079,3507,NO,87.27,99.51,1,2.85,6106,112.370325,122.245499,131.882122,138.107235,I,Above,Flat,0,NaN,,93.38829942,0,0,,,,2,2,,0.03,nav,1,1969,7,, 26100,NJBF000079204,1133 N MAIN ST,Pleasantville,NJ,39.41014623,-74.5086056,GOV1,3004,,NaN,E,1969,0,3404,7,1,15544.39441,15544.39441,3507,NO,76.76,87.78,1,1.94,6112,112.398254,122.270033,131.908836,138.135924,I,Above,Gable,0,NaN,,82.27070424,0,0,,,,2,2,,1,nav,1,1969,7,, 26101,NJBF000079314,1133 N MAIN ST,Pleasantville,NJ,39.41060456,-74.50921381,GOV1,3004,,NaN,E,1969,0,3404,7,1,951.167083,951.167083,3507,NO,109.3,123.65,1,2.16,6106,112.381801,122.254573,131.891901,138.116844,I,Above,Hip,0,NaN,,116.475958,0,0,,,,2,2,,0.03,nav,1,1969,7,, 26102,NJBF000079192,1133 N MAIN ST,Pleasantville,NJ,39.41005208,-74.50898181,GOV1,3004,,NaN,E,1969,0,3404,5,1,796.6577173,796.6577173,3507,NO,69.37,76.46,1,0.39,6112,112.390908,122.264381,131.902761,138.130126,I,Above,Flat,0,NaN,,72.91843746,0,0,,,,2,2,,0.35,nav,1,1969,5,, 26103,NJBF000079862,1133 N MAIN ST,Pleasantville,NJ,39.41314412,-74.50947489,GOV1,3004,,NaN,E,1969,0,3404,4,1,17500.2468,17500.2468,3507,NO,65.5,76.95,1,-0.95,6106,112.357536,122.22373,131.857391,138.071485,I,Above,Flat,0,NaN,,71.22792586,0,0,,,,2,2,,0.03,nav,1,1969,4,, 26104,NJBF000073752,233 OAKLAND AVE,Pleasantville,NJ,39.38292088,-74.52223721,RES1,3001,,NaN,NE,1969,0,3102,2,1,760.7737299,760.7737299,3505,NO,37.44,49.24,3,5.03,6106,112.330516,122.313238,131.972217,138.303894,I,Above,Gable,0,5701,,43.34316399,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26105,NJBF000072956,148 PLAZA PL,Pleasantville,NJ,39.37593698,-74.53090038,RES1,3001,,16,NE,1977,1977,3101,1,1,2358.654849,2358.654849,3505,NO,19.68,29.29,3,6.48,6106,112.205786,122.234463,131.895792,138.242403,I,Above,Hip,0,5701,,24.48297853,0,0,,,,1,1,,0.03,nav,1,1977,1,, 26106,NJBF000074454,47 E WRIGHT ST,Pleasantville,NJ,39.38649203,-74.52403375,RES1,3001,,16,NE,1955,1955,3102,1,1,1385.917196,1385.917196,3505,NO,16.73,28.13,3,0.35,6106,112.256764,122.244169,131.896865,138.211328,I,Above,Gable,0,5701,,22.42883156,0,0,,,,1,1,,0.03,nav,1,1955,1,, 26107,NJBF000073231,33 INDIAN LANE,Pleasantville,NJ,39.37913424,-74.5317944,RES1,3001,,16,NE,1997,1997,3101,1,1,1904.65745,1904.65745,3505,NO,16.64,30.99,3,-1.77,6112,112.153304,122.185038,131.841711,138.173823,I,Above,Hip,0,5701,,23.81835785,0,1.2,,,,1,1,,0.35,nav,1,1997,1,, 26108,NJBF000073961,41 OAKLAND AVE,Pleasantville,NJ,39.38420357,-74.52582018,RES1,3001,,15,NE,1927,1927,3102,1,1,1335.484354,1335.484354,3505,NO,22.21,29.81,3,8.5,6112,112.238236,122.236721,131.890982,138.212409,I,Above,Hip,0,5701,,26.00920157,0,0,,,,1,1,,0.35,nav,1,1927,1,, 26109,NJBF000076763,127 COLLINS AVE,Pleasantville,NJ,39.39470362,-74.51493734,RES1,3001,,15,NE,1936,1936,3101,1,1,1406.295625,1406.295625,3505,NO,17.47,24.07,3,-0.91,6112,112.384996,122.318656,131.969623,138.258941,I,Above,Flat,0,5701,,20.76997031,0,0,,,,1,1,,0.35,nav,1,1936,1,, 26110,NJBF000079420,1421 SIXTH AVE,Pleasantville,NJ,39.41106316,-74.49852461,RES3C,3001,,16,E,2002,2002,3303,2,1,1336.359982,1336.359982,3507,NO,37.91,50.45,1,0.72,6112,112.6069,122.43879,132.091508,138.315561,I,Above,Gable,0,NaN,,44.18360324,0,0,,,,1,1,,0.35,nav,1,2002,2,, 26111,NJBF000075165,119-121 S CHESTER AVE,Pleasantville,NJ,39.38891572,-74.52001829,RES1,3001,,45,NE,1910,1910,3102,2,2,1401.270483,1401.270483,3505,NO,38.96,49.02,3,3.33,6112,112.323896,122.289497,131.942717,138.251886,I,Above,Hip,0,5701,,43.99307794,0,0,,,,1,1,,0.35,nav,1,1910,2,, 26112,NJBF000074932,348 S MAIN ST,Pleasantville,NJ,39.388209,-74.5254295,COM1,3003,,NaN,ME,1950,1950,3401,1,1,1381.56898,1381.56898,3507,NO,12.37,21.99,1,0.28,6112,112.210093,122.20171,131.850773,138.156268,I,Above,Flat,0,NaN,,17.17801779,0,0,,,,1,1,,0.35,nav,1,1950,1,, 26113,NJBF000075854,,Pleasantville,NJ,39.39137346,-74.51713365,IND2,3001,,NaN,ME,1969,0,3401,3,1,509.0806054,509.0806054,3507,NO,43.39,53,1,1.08,6106,112.365715,122.314652,131.967588,138.269233,I,Above,Flat,0,NaN,,48.19150544,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26114,NJBF000079587,412 E CALIFORNIA AVE,Pleasantville,NJ,39.41180668,-74.49832446,RES3C,3001,,15,E,1923,1923,3303,1,1,557.6624043,557.6624043,3507,NO,18.31,31.1,1,-0.01,6112,112.605384,122.43462,132.086775,138.307648,I,Above,Gable,0,NaN,,24.70663219,0,1.1,,,,1,1,,0.35,nav,1,1923,1,, 26115,NJBF000079655,1323 N MAIN ST (R),Pleasantville,NJ,39.41216337,-74.5052956,RES3C,3001,,15,E,1910,1910,3303,1,1,1535.441628,1535.441628,3507,NO,18.9,29.24,1,0.85,6112,112.453855,122.307528,131.948649,138.167981,I,Above,Hip,0,NaN,,24.06849919,0,0,,,,1,1,,0.35,nav,1,1910,1,, 26116,NJBF000077345,136 LORAINE AVE,Pleasantville,NJ,39.39803442,-74.51138582,RES1,3001,,15,NE,1880,1880,3101,1,1,1188.256236,1188.256236,3505,NO,8.88,18.36,3,-1.79,6112,112.434464,122.346645,131.997507,138.274887,I,Above,Flat,0,5701,,13.62152653,0,0,,,,1,1,,0.35,nav,1,1880,1,, 26117,NJBF000074288,,Pleasantville,NJ,39.38574016,-74.50679635,COM1,3003,,NaN,ME,1969,0,3401,2,1,1532.445372,1532.445372,3507,NO,33.09,47.56,1,0.3,6106,112.646863,122.556637,132.227864,138.560472,I,Above,Flat,0,NaN,,40.32409109,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26118,NJBF000078253,ABSECON BLVD,Pleasantville,NJ,39.4041199,-74.49260991,RES4,3001,530,NaN,ME,1969,0,3401,3,1,2582.193673,2582.193673,3507,NO,38.11,52.05,1,0.18,6106,112.790763,122.616414,132.286073,138.53787,I,Above,Flat,0,NaN,,45.07893028,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26119,NJBF000078271,ABSECON BLVD,Pleasantville,NJ,39.40430169,-74.49288539,RES4,3001,530,NaN,ME,1969,0,3401,1,1,2145.99454,2145.99454,3507,NO,14.15,25.97,1,2.17,6106,112.783278,122.609607,132.278648,138.529791,I,Above,Gable,0,NaN,,20.06260023,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26120,NJBF000080345,32 OREGON AVE,Pleasantville,NJ,39.41478231,-74.50456191,RES1,3001,,17,NE,1920,1920,3101,1,1,1638.101578,1638.101578,3505,NO,11.78,25.2,3,-1.57,6112,112.450039,122.293353,131.932352,138.140691,I,Above,Gable,0,5701,,18.48750197,0,0,,,,1,1,,0.35,nav,1,1920,1,, 26121,NJBF000080452,31 W NEVADA AVE,Pleasantville,NJ,39.41510229,-74.50453109,RES1,3001,,17,NE,1954,1954,3101,1,1,585.4506536,585.4506536,3505,NO,19.61,31.14,3,7.7,6112,112.44835,122.290586,131.92924,138.136228,I,Above,Gable,0,5701,,25.37253019,0,0,,,,1,1,,0.35,nav,1,1954,1,, 26122,NJBF000080473,27 W NEVADA AVE,Pleasantville,NJ,39.4151838,-74.50422937,RES1,3001,,17,NE,1956,1956,3101,1,1,1952.138627,1952.138627,3505,NO,18.04,29.99,3,4.83,6112,112.454157,122.295066,131.934085,138.140763,I,Above,Gable,0,5701,,24.01508428,0,0,,,,1,1,,0.35,nav,1,1956,1,, 26123,NJBF000080500,31 W NEVADA AVE,Pleasantville,NJ,39.41527985,-74.5045038,RES1,3001,,17,NE,1954,1954,3101,1,1,1373.484279,1373.484279,3505,NO,18.38,26.93,3,2.97,6112,112.44762,122.289219,131.927697,138.133934,I,Above,Hip,0,5701,,22.65631257,0,0,,,,1,1,,0.35,nav,1,1954,1,, 26124,NJBF000072988,129 PLAZA PL,Pleasantville,NJ,39.37625931,-74.53219242,RES1,3001,,15,NE,1928,1928,3101,1,1,1265.896905,1265.896905,3505,NO,20.12,31.64,3,4.15,6112,112.173359,122.208367,131.868517,138.211372,I,Above,Gable,0,5701,,25.88234727,0,0,,,,1,1,,0.35,nav,1,1928,1,, 26125,NJBF000072998,125 PLAZA PL,Pleasantville,NJ,39.37632742,-74.53228675,RES1,3001,,15,NE,1928,1928,3101,1,1,1988.983478,1988.983478,3505,NO,12.81,19.64,3,-2.39,6112,112.17052,122.20598,131.865989,138.208388,I,Above,Gable,0,5701,,16.22506253,0,0,,,,1,1,,0.35,nav,1,1928,1,, 26126,NJBF000073047,110 PLAZA PL,Pleasantville,NJ,39.37692959,-74.53249376,RES1,3001,,16,NE,2007,2007,3101,2,1,1408.38291,1408.38291,3505,NO,40.36,49.97,3,1.46,6112,112.159692,122.195979,131.855098,138.194689,I,Above,Gable,0,5701,,45.16510142,0,1.1,,,,1,1,,0.35,nav,1,2007,2,, 26127,NJBF000073095,38 PLAZA PL,Pleasantville,NJ,39.37752507,-74.53342205,RES1,3001,,16,NE,1953,1953,3101,1,1,1802.882528,1802.882528,3505,NO,16.02,24.78,3,4.14,6112,112.132756,122.173422,131.831222,138.166628,I,Above,Gable,0,5701,,20.39980764,0,0,,,,1,1,,0.35,nav,1,1953,1,, 26128,NJBF000073130,31 E ASHLAND AVE,Pleasantville,NJ,39.37809024,-74.53344392,RES1,3001,,16,NE,1954,1954,3101,1,1,1248.44689,1248.44689,3505,NO,17.34,29.53,3,-0.89,6112,112.126579,122.167083,131.824126,138.157245,I,Above,Gable,0,5701,,23.43688835,0,0,,,,1,1,,0.35,nav,1,1954,1,, 26129,NJBF000073162,28 E ASHLAND AVE,Pleasantville,NJ,39.37837846,-74.53318963,RES1,3001,,16,NE,1920,1920,3101,2,1,1810.628375,1810.628375,3505,NO,44.38,58.34,3,8.81,6112,112.129417,122.168506,131.825317,138.157788,I,Above,Gable,0,5701,,51.35751888,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 26130,NJBF000073308,1104 CLEMATIS AVE,Pleasantville,NJ,39.37972293,-74.52962948,COM3,3003,,NaN,ME,1969,0,3401,2,1,3602.606383,3602.606383,3507,NO,36.21,48.44,1,-0.64,6112,112.196131,122.216846,131.874182,138.20782,I,Above,Flat,0,NaN,,42.32766451,0,0,,,,1,1,,0.35,nav,1,1969,2,, 26131,NJBF000073634,130 RYON AVE,Pleasantville,NJ,39.38214162,-74.52676384,RES1,3001,,15,NE,1915,1915,3102,2,1,2174.129549,2174.129549,3505,NO,39.46,48.59,3,8.73,6112,112.236778,122.241757,131.898013,138.226497,I,Above,Gable,0,5701,,44.02530693,0,0,,,,1,1,,0.35,nav,1,1915,2,, 26132,NJBF000073670,133 E PARK AVE,Pleasantville,NJ,39.38241036,-74.52638043,RES1,3001,,15,NE,1921,1921,3102,1,1,1743.756237,1743.756237,3505,NO,17.61,28.48,3,1.51,6112,112.242793,122.245693,131.901897,138.229868,I,Above,Hip,0,5701,,23.04113254,0,0,,,,1,1,,0.35,nav,1,1921,1,, 26133,NJBF000073696,324-340 OAKLAND AVE,Pleasantville,NJ,39.38254251,-74.52036884,RES1,3001,,NaN,NE,1969,0,3102,2,1,929.5442661,929.5442661,3505,NO,39.69,54.17,3,3.08,6106,112.375905,122.350141,132.011241,138.34683,I,Above,Gable,0,5701,,46.92626099,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26134,NJBF000073714,104 E PARK AVE,Pleasantville,NJ,39.38268569,-74.52600187,RES1,3001,,16,NE,1950,1950,3102,1,1,1059.424273,1059.424273,3505,NO,11.02,16.24,3,-2.81,6112,112.248601,122.249442,131.905581,138.232987,I,Above,Gable,0,5701,,13.62879775,0,0,,,,1,1,,0.35,nav,1,1950,1,, 26135,NJBF000073723,102 E PARK AVE,Pleasantville,NJ,39.38273238,-74.52616136,RES1,3001,,15,NE,1927,1927,3102,2,1,874.3031553,874.3031553,3505,NO,39.52,49.52,3,7.29,6112,112.244602,122.246163,131.902115,138.229093,I,Above,Gable,0,5701,,44.52057729,0,1.1,,,,1,1,,0.35,nav,1,1927,2,, 26136,NJBF000073735,100 E PARK AVE,Pleasantville,NJ,39.38279538,-74.52629308,RES1,3001,,15,NE,1920,1920,3102,1,1,1898.838937,1898.838937,3505,NO,15.89,26.46,3,1.52,6112,112.241045,122.243181,131.898944,138.225465,I,Above,Hip,0,5701,,21.17557977,0,0,,,,1,1,,0.35,nav,1,1920,1,, 26137,NJBF000073755,102 E PARK AVE,Pleasantville,NJ,39.38295463,-74.52596522,RES1,3001,,15,NE,1927,1927,3102,2,1,1307.565211,1307.565211,3505,NO,27.08,33,3,4.31,6112,112.246852,122.247269,131.903082,138.229436,I,Above,Hip,0,5701,,30.04020871,0,1.1,,,,1,1,,0.35,nav,1,1927,2,, 26138,NJBF000073791,113 E GREENFIELD AVE,Pleasantville,NJ,39.38317529,-74.52542293,RES1,3001,,16,NE,2003,2003,3102,2,1,927.616468,927.616468,3505,NO,25.55,34.89,3,-1.59,6112,112.25687,122.254491,131.910452,138.236698,I,Above,Gable,0,5701,,30.22042699,0,0,,,,1,1,,0.35,nav,1,2003,2,, 26139,NJBF000073800,109 E GREENFIELD AVE,Pleasantville,NJ,39.38325132,-74.52558241,RES1,3001,,16,NE,2003,2003,3102,2,1,843.2863941,843.2863941,3505,NO,45.33,52.66,3,8.25,6112,112.25259,122.250897,131.906628,138.232329,I,Above,Gable,0,5701,,48.99327459,0,0,,,,1,1,,0.35,nav,1,2003,2,, 26140,NJBF000073798,332 E EDGEWATER AVE,Pleasantville,NJ,39.38323023,-74.51926522,RES1,3001,,NaN,NE,1925,0,3102,2,1,990.607817,990.607817,3505,NO,42.79,47.97,3,4.45,6106,112.393884,122.362387,132.023642,138.35761,I,Above,Gable,0,5701,,45.3828361,0,0,,,,1,1,,0.03,nav,1,1925,2,, 26141,NJBF000073858,106 E GREENFIELD AVE,Pleasantville,NJ,39.38360073,-74.52553525,RES1,3001,,15,NE,1915,1915,3102,2,1,1737.939102,1737.939102,3505,NO,40.28,49.08,3,1.61,6112,112.250309,122.248052,131.903357,138.227683,I,Above,Gable,0,5701,,44.67992432,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 26142,NJBF000073940,237 E BAYVIEW AVE,Pleasantville,NJ,39.38413212,-74.52119793,RES1,3001,,14,NE,1915,1915,3102,1,1,938.2714434,938.2714434,3505,NO,13.44,25.51,3,-1.46,6106,112.342095,122.318821,131.977179,138.305084,I,Above,Flat,0,5701,,19.47548451,0,0,,,,1,1,,0.03,nav,1,1915,1,, 26143,NJBF000073954,222 E EDGEWATER AVE,Pleasantville,NJ,39.38418778,-74.5220787,RES1,3001,,NaN,NE,1969,0,3102,2,1,671.7207886,671.7207886,3505,NO,31.07,37.16,3,1.2,6106,112.321907,122.302712,131.960208,138.286787,I,Above,Gable,0,5701,,34.11513679,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26144,NJBF000073988,218 E EDGEWATER AVE,Pleasantville,NJ,39.38431172,-74.52244514,RES1,3001,,15,NE,1910,1910,3102,2,1,611.6239009,611.6239009,3505,NO,34.32,46.97,3,1.68,6106,112.312563,122.294965,131.951975,138.277572,I,Above,Gable,0,5701,,40.6426547,0,0,,,,1,1,,0.03,nav,1,1910,2,, 26145,NJBF000074027,109 E EDGEWATER AVE,Pleasantville,NJ,39.38452928,-74.52469847,RES1,3001,,15,NE,1920,1920,3102,1,1,978.9747237,978.9747237,3505,NO,11.15,16.44,3,-1.66,6112,112.260231,122.253042,131.907809,138.229494,I,Above,Flat,0,5701,,13.79435176,0,0,,,,1,1,,0.35,nav,1,1920,1,, 26146,NJBF000074156,29 E EDGEWATER AVE,Pleasantville,NJ,39.38513071,-74.52581918,RES1,3001,,15,NE,1925,1925,3102,2,1,1512.091028,1512.091028,3505,NO,28.01,40.71,3,6.98,6112,112.229574,122.227031,131.880036,138.197649,I,Above,Gable,0,5701,,34.36079067,0,0,,,,1,1,,0.35,nav,1,1925,2,, 26147,NJBF000074172,23 E EDGEWATER AVE,Pleasantville,NJ,39.38521569,-74.52605178,RES1,3001,,15,NE,1910,1928,3102,1,1,5823.499318,5823.499318,3505,NO,19.72,28.31,3,8.92,6112,112.223584,122.222048,131.87474,138.191667,I,Above,Flat,0,5701,,24.0160065,0,0,,,,1,1,,0.35,nav,1,1910,1,, 26148,NJBF000074243,22 E EDGEWATER AVE,Pleasantville,NJ,39.38553716,-74.52577711,RES1,3001,,15,NE,1924,1924,3102,2,1,1116.61453,1116.61453,3505,NO,30.32,41.99,3,7.99,6112,112.226739,122.223521,131.876005,138.192008,I,Above,Hip,0,5701,,36.15951718,0,1.1,,,,1,1,,0.35,nav,1,1924,2,, 26149,NJBF000074414,16 E BAYVIEW AVE,Pleasantville,NJ,39.38631165,-74.52550809,RES1,3001,,15,NE,1925,1925,3102,1,1,2565.705745,2565.705745,3505,NO,15.7,20.98,3,-2.72,6112,112.225584,122.220144,131.871791,138.184986,I,Above,Gable,0,5701,,18.33998018,0,0,,,,1,1,,0.35,nav,1,1925,1,, 26150,NJBF000074515,413 PROSPECT AVE,Pleasantville,NJ,39.38679029,-74.52566067,RES1,3001,,16,NE,1952,1952,3102,1,1,1405.465642,1405.465642,3505,NO,22.69,29.02,3,6.11,6112,112.217798,122.212463,131.863313,138.174325,I,Above,Gable,0,5701,,25.85539522,0,0,,,,1,1,,0.35,nav,1,1952,1,, 26151,NJBF000074621,7 E WRIGHT ST,Pleasantville,NJ,39.38721918,-74.5256387,RES1,3001,,16,NE,1950,1950,3102,1,1,962.5087436,962.5087436,3505,NO,13.04,27.5,3,0.99,6112,112.214381,122.208369,131.85864,138.167918,I,Above,Gable,0,5701,,20.27169721,0,0,,,,1,1,,0.35,nav,1,1950,1,, 26152,NJBF000074672,400 S MAIN ST,Pleasantville,NJ,39.38741376,-74.52588642,COM1,3003,,NaN,ME,1940,1940,3401,2,1,5625.750564,5625.750564,3507,NO,26.45,32.2,1,-0.12,6112,112.207116,122.201997,131.851776,138.159907,I,Above,Flat,0,NaN,,29.3244458,0,0,,,,1,1,,0.35,nav,1,1940,2,, 26153,NJBF000075210,112 S CHESTER AVE,Pleasantville,NJ,39.38906925,-74.51945091,RES1,3001,,15,NE,1905,1910,3102,2,1,4071.000217,4071.000217,3505,NO,37.4,44.67,3,0.11,6112,112.335085,122.297885,131.951468,138.260595,I,Above,Hip,0,5701,,41.03496398,0,0,,,,1,1,,0.35,nav,1,1905,2,, 26154,NJBF000075237,114 S FRANKLIN BLVD,Pleasantville,NJ,39.38915382,-74.52018423,RES1,3001,,45,NE,1926,1926,3102,2,2,1279.466991,1279.466991,3505,NO,26.84,36.2,3,0.11,6112,112.318064,122.284088,131.936823,138.244815,I,Above,Gable,0,5701,,31.51644274,0,0,,,,1,1,,0.35,nav,1,1926,2,, 26155,NJBF000075333,300 E WASHINGTON AVE,Pleasantville,NJ,39.38954228,-74.51590874,IND2,3001,,NaN,ME,1969,0,3401,3,1,1356.997182,1356.997182,3507,NO,33.62,48.42,1,-0.02,6106,112.409264,122.355393,132.01203,138.322505,I,Above,Flat,0,NaN,,41.02134116,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26156,NJBF000075570,2 S CHESTER AVE,Pleasantville,NJ,39.39034055,-74.51868358,RES1,3001,,15,NE,1900,1900,3102,2,1,1257.169357,1257.169357,3505,NO,36.43,49.83,3,-2.24,6112,112.340635,122.29811,131.950781,138.255331,I,Above,Flat,0,5701,,43.13302477,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 26157,NJBF000075632,2 N CHESTER AVE,Pleasantville,NJ,39.39056434,-74.51853198,RES1,3001,,15,NE,1910,1910,3102,2,1,1085.607337,1085.607337,3505,NO,33.11,39.31,3,0.71,6112,112.342007,122.29846,131.950991,138.25475,I,Above,Hip,0,5701,,36.21098723,0,0,,,,1,1,,0.35,nav,1,1910,2,, 26158,NJBF000075659,4 N CHESTER AVE,Pleasantville,NJ,39.39063622,-74.51847943,RES1,3001,,15,NE,1915,1915,3102,2,1,1034.231202,1034.231202,3505,NO,41.07,54.81,3,4.96,6112,112.342538,122.298642,131.951132,138.254639,I,Above,Hip,0,5701,,47.94290943,0,0,,,,1,1,,0.35,nav,1,1915,2,, 26159,NJBF000075707,10 N CHESTER AVE,Pleasantville,NJ,39.39081515,-74.51837296,RES1,3001,,15,NE,1945,1945,3102,1,1,2935.728793,2935.728793,3505,NO,24.91,36.25,3,8.98,6112,112.343288,122.298641,131.951003,138.253858,I,Above,Hip,0,5701,,30.58305278,0,1.1,,,,1,1,,0.35,nav,1,1945,1,, 26160,NJBF000075741,12 N CHESTER AVE,Pleasantville,NJ,39.39095222,-74.51833719,RES1,3001,,16,NE,1953,1953,3102,1,1,850.4379545,850.4379545,3505,NO,16.74,28.21,3,5.03,6112,112.342866,122.297846,131.950062,138.252374,I,Above,Flat,0,5701,,22.47804651,0,0,,,,1,1,,0.35,nav,1,1953,1,, 26161,NJBF000075763,9 N CHESTER AVE,Pleasantville,NJ,39.3910258,-74.5187816,RES1,3001,,NaN,NE,1969,0,3102,1,1,6246.08128,6246.08128,3505,NO,9.57,17.79,3,-1.07,6112,112.332369,122.289235,131.940885,138.242454,I,Above,Flat,0,5701,,13.67791961,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26162,NJBF000076210,118 N FRANKLIN BLVD,Pleasantville,NJ,39.39259778,-74.51812016,RES1,3001,,15,NE,1920,1920,3101,2,1,725.0340452,725.0340452,3505,NO,35.17,50.09,3,-0.57,6112,112.333164,122.284504,131.934734,138.230316,I,Above,Gable,0,5701,,42.62973535,0,0,,,,1,1,,0.35,nav,1,1920,2,, 26163,NJBF000076291,131 HARRIS AVE,Pleasantville,NJ,39.39286187,-74.51758528,RES1,3001,,15,NE,1928,1928,3101,1,1,1437.175462,1437.175462,3505,NO,12.24,25.22,3,-1.41,6112,112.342662,122.291177,131.94163,138.236586,I,Above,Flat,0,5701,,18.73095814,0,0,,,,1,1,,0.35,nav,1,1928,1,, 26164,NJBF000076394,125 CHARLES AVE,Pleasantville,NJ,39.39325353,-74.51674795,RES1,3001,,15,NE,1924,1924,3101,1,1,1231.960389,1231.960389,3505,NO,15.27,29.45,3,4.05,6112,112.357697,122.301839,131.952687,138.246715,I,Above,Gable,0,5701,,22.36172666,0,0,,,,1,1,,0.35,nav,1,1924,1,, 26165,NJBF000076410,121 CHARLES AVE,Pleasantville,NJ,39.39329641,-74.51689124,RES1,3001,,15,NE,1965,1925,3101,1,1,2139.225501,2139.225501,3505,NO,18.04,23.11,3,-1.1,6112,112.354181,122.298881,131.949515,138.243243,I,Above,Gable,0,5701,,20.57186332,0,0,,,,1,1,,0.35,nav,1,1965,1,, 26166,NJBF000076439,138 CHARLES AVE,Pleasantville,NJ,39.39340199,-74.51614084,RES1,3001,,15,NE,1925,1925,3101,1,1,1346.349952,1346.349952,3505,NO,24.35,38.2,3,6.92,6112,112.369782,122.310995,131.962323,138.256227,I,Above,Gable,0,5701,,31.27528348,0,0,,,,1,1,,0.35,nav,1,1925,1,, 26167,NJBF000076461,132 CHARLES AVE,Pleasantville,NJ,39.39349702,-74.5162535,RES1,3001,,16,NE,1946,1946,3101,1,1,1671.055433,1671.055433,3505,NO,18.46,32.84,3,0.03,6112,112.366466,122.308013,131.959087,138.252497,I,Above,Flat,0,5701,,25.65305994,0,0,,,,1,1,,0.35,nav,1,1946,1,, 26168,NJBF000076528,145 E ADAMS AVE,Pleasantville,NJ,39.39379724,-74.51553824,RES1,3001,,43,NE,1925,1925,3101,1,2,1285.277174,1285.277174,3505,NO,14.75,25.75,3,3.94,6112,112.379624,122.317509,131.968992,138.261701,I,Above,Gable,0,5701,,20.24818828,0,0,,,,1,1,,0.35,nav,1,1925,1,, 26169,NJBF000076554,141 E ADAMS AVE,Pleasantville,NJ,39.39387378,-74.51566527,RES1,3001,,15,NE,1925,1925,3101,1,1,1282.366488,1282.366488,3505,NO,23.35,30.7,3,7.35,6112,112.37616,122.314467,131.965704,138.257988,I,Above,Gable,0,5701,,27.0242201,0,0,,,,1,1,,0.35,nav,1,1925,1,, 26170,NJBF000076564,139 E ADAMS AVE,Pleasantville,NJ,39.39392184,-74.51581331,RES1,3001,,15,NE,1923,1923,3101,1,1,1310.483124,1310.483124,3505,NO,23,37.01,3,8.05,6112,112.372486,122.311358,131.962362,138.254327,I,Above,Gable,0,5701,,30.00433765,0,1.1,,,,1,1,,0.35,nav,1,1923,1,, 26171,NJBF000076641,128 E ADAMS AVE,Pleasantville,NJ,39.39417599,-74.51542251,RES1,3001,,15,NE,1927,1927,3101,1,1,1732.114063,1732.114063,3505,NO,19.42,30.77,3,6.65,6112,112.378869,122.315587,131.966697,138.257889,I,Above,Gable,0,5701,,25.09846329,0,1.1,,,,1,1,,0.35,nav,1,1927,1,, 26172,NJBF000076659,124 E ADAMS AVE,Pleasantville,NJ,39.39424104,-74.51560633,RES1,3001,,16,NE,1952,1952,3101,1,1,1543.104542,1543.104542,3505,NO,13.07,19.95,3,-1.68,6112,112.374281,122.311684,131.962498,138.253274,I,Above,Gable,0,5701,,16.5105391,0,0,,,,1,1,,0.35,nav,1,1952,1,, 26173,NJBF000076780,125 COLLINS AVE,Pleasantville,NJ,39.39476844,-74.51510323,RES1,3001,,15,NE,1925,1925,3101,1,1,1407.418435,1407.418435,3505,NO,23.38,29.18,3,6.08,6112,112.380796,122.315063,131.965752,138.254676,I,Above,Flat,0,5701,,26.27960946,0,1.1,,,,1,1,,0.35,nav,1,1925,1,, 26174,NJBF000076848,128 COLLINS AVE,Pleasantville,NJ,39.39503769,-74.51474898,RES1,3001,,15,NE,1930,1930,3101,1,1,1553.757696,1553.757696,3505,NO,16.38,27.49,3,0.27,6112,112.386253,122.318493,131.969234,138.257272,I,Above,Gable,0,5701,,21.93786609,0,1.1,,,,1,1,,0.35,nav,1,1930,1,, 26175,NJBF000076935,121 E MERION AVE,Pleasantville,NJ,39.39550122,-74.51427531,RES1,3001,,16,NE,1957,1985,3101,1,1,3537.887816,3537.887816,3505,NO,20.73,28.05,3,6.22,6112,112.392691,122.322031,131.972713,138.25912,I,Above,Hip,0,5701,,24.38905943,0,0,,,,1,1,,0.35,nav,1,1957,1,, 26176,NJBF000077006,122 E MERION AVE,Pleasantville,NJ,39.39581569,-74.51406609,RES1,3001,,16,NE,1957,1957,3101,1,1,1307.564733,1307.564733,3505,NO,24.34,37.33,3,7.23,6112,112.394584,122.322438,131.972949,138.258162,I,Above,Gable,0,5701,,30.83510796,0,0,,,,1,1,,0.35,nav,1,1957,1,, 26177,NJBF000077017,120 E MERION AVE,Pleasantville,NJ,39.39587956,-74.51425852,RES1,3001,,16,NE,1957,1957,3101,1,1,873.3214041,873.3214041,3505,NO,18.92,24.01,3,6.28,6112,112.389803,122.318367,131.968565,138.253375,I,Above,Gable,0,5701,,21.46698611,0,0,,,,1,1,,0.35,nav,1,1957,1,, 26178,NJBF000077026,118 E MERION AVE,Pleasantville,NJ,39.39594708,-74.51443687,RES1,3001,,16,NE,1945,1945,3101,1,1,1350.224909,1350.224909,3505,NO,17.45,26.12,3,6.86,6112,112.385327,122.314531,131.964429,138.248832,I,Above,Gable,0,5701,,21.78472094,0,0,,,,1,1,,0.35,nav,1,1945,1,, 26179,NJBF000077038,110 E MERION AVE,Pleasantville,NJ,39.39603692,-74.51462823,RES1,3001,,16,NE,1952,1952,3101,1,1,1334.706735,1334.706735,3505,NO,25.68,38.66,3,8.28,6112,112.380371,122.310227,131.959779,138.243667,I,Above,Gable,0,5701,,32.16894789,0,0,,,,1,1,,0.35,nav,1,1952,1,, 26180,NJBF000077047,106 E MERION AVE,Pleasantville,NJ,39.39609804,-74.51484425,RES1,3001,,16,NE,1950,1950,3101,1,1,1222.276666,1222.276666,3505,NO,24.13,29.16,3,5.79,6112,112.375115,122.305784,131.954999,138.238476,I,Above,Gable,0,5701,,26.64803669,0,0,,,,1,1,,0.35,nav,1,1950,1,, 26181,NJBF000077167,20 EVANS LANE,Pleasantville,NJ,39.39698563,-74.51629507,RES1,3001,,15,NE,1936,1936,3101,1,1,1051.6796,1051.6796,3505,NO,16.39,24.5,3,0.45,6112,112.335824,122.27099,131.917292,138.195935,I,Above,Hip,0,5701,,20.44371257,0,1.1,,,,1,1,,0.35,nav,1,1936,1,, 26182,NJBF000077215,8 EVANS LANE,Pleasantville,NJ,39.397285,-74.51666423,RES1,3001,,16,NE,1950,1950,3101,2,1,512.7488727,512.7488727,3505,NO,23.8,38.62,3,1.41,6112,112.325247,122.261389,131.906846,138.18394,I,Above,Gable,0,5701,,31.21108327,0,1.2,,,,1,1,,0.35,nav,1,1950,2,, 26183,NJBF000077270,520 N FRANKLIN BLVD,Pleasantville,NJ,39.39757726,-74.51410141,RES1,3001,,16,NE,1956,1956,3101,1,1,1275.583739,1275.583739,3505,NO,27.58,37.37,3,8.26,6112,112.378923,122.3035,131.951622,138.229344,I,Above,Hip,0,5701,,32.47179014,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 26184,NJBF000077273,418 N MAIN ST,Pleasantville,NJ,39.39758993,-74.51698845,COM1,3001,,NaN,ME,1980,1980,3401,1,1,3799.627527,3799.627527,3507,NO,16.57,23.34,1,0.6,6112,112.315622,122.252521,131.897176,138.172727,I,Above,Flat,0,NaN,,19.95324571,0,0,,,,1,1,,0.35,nav,1,1980,1,, 26185,NJBF000077283,120 E MULBERRY AVE,Pleasantville,NJ,39.39766324,-74.51298853,RES1,3001,,15,NE,1971,1971,3101,1,1,1615.799477,1615.799477,3505,NO,16.49,27.57,3,4.96,6112,112.402532,122.322215,131.971578,138.249637,I,Above,Gable,0,5701,,22.02906437,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26186,NJBF000077325,127 LORAINE AVE,Pleasantville,NJ,39.39790974,-74.51205296,RES1,3001,,16,NE,2004,2004,3101,1,1,1691.399513,1691.399513,3505,NO,23.26,29.64,3,6.67,6112,112.420927,122.336161,131.986354,138.263904,I,Above,Hip,0,5701,,26.45224998,0,1.1,,,,1,1,,0.35,nav,1,2004,1,, 26187,NJBF000077366,130 LORAINE AVE,Pleasantville,NJ,39.39813507,-74.51158908,RES1,3001,,16,NE,1996,1996,3101,1,1,1366.699811,1366.699811,3505,NO,18.18,25.46,3,1.38,6112,112.429177,122.34201,131.992487,138.26933,I,Above,Flat,0,5701,,21.81948486,0,0,,,,1,1,,0.35,nav,1,1996,1,, 26188,NJBF000077684,126 E READING AVE,Pleasantville,NJ,39.40032056,-74.50976701,RES1,3001,,16,NE,2007,2007,3101,2,1,860.7292336,860.7292336,3505,NO,29.45,40.29,3,1.16,6112,112.450692,122.351446,132.001406,138.2698,I,Above,Flat,0,5701,,34.8703301,0,0,,,,1,1,,0.35,nav,1,2007,2,, 26189,NJBF000077732,117 CHATHAM AVE,Pleasantville,NJ,39.40060154,-74.50963156,RES1,3001,,16,NE,1950,1950,3101,1,1,961.534792,961.534792,3505,NO,22.2,34.75,3,3.01,6112,112.451308,122.350909,132.000682,138.267934,I,Above,Gable,0,5701,,28.47511462,0,0,,,,1,1,,0.35,nav,1,1950,1,, 26190,NJBF000077745,115 CHATHAM AVE,Pleasantville,NJ,39.40065354,-74.50981071,RES1,3001,,16,NE,1960,1960,3101,1,1,1352.165611,1352.165611,3505,NO,22.22,29.32,3,6.42,6112,112.446983,122.347207,131.996679,138.263635,I,Above,Hip,0,5701,,25.76741374,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 26191,NJBF000077757,113 CHATHAM AVE,Pleasantville,NJ,39.400732,-74.50997822,RES1,3001,,16,NE,1955,1955,3101,1,1,863.6387048,863.6387048,3505,NO,10.95,19.58,3,-2.08,6112,112.442706,122.343447,131.992599,138.259153,I,Above,Hip,0,5701,,15.26624479,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 26192,NJBF000077772,111 CHATHAM AVE,Pleasantville,NJ,39.40078393,-74.51016009,RES1,3001,,16,NE,1950,1950,3101,1,1,1399.658034,1399.658034,3505,NO,11.31,21.7,3,-2.62,6112,112.438317,122.339693,131.98854,138.254794,I,Above,Gable,0,5701,,16.50128175,0,0,,,,1,1,,0.35,nav,1,1950,1,, 26193,NJBF000077789,109 CHATHAM AVE,Pleasantville,NJ,39.40086547,-74.51031449,RES1,3001,,16,NE,1955,1955,3101,1,1,1084.634471,1084.634471,3505,NO,22.63,29.99,3,3.89,6112,112.434301,122.336133,131.984673,138.250515,I,Above,Gable,0,5701,,26.30884102,0,0,,,,1,1,,0.35,nav,1,1955,1,, 26194,NJBF000077884,100 CHATHAM AVE,Pleasantville,NJ,39.40144385,-74.51073071,RES1,3001,,16,NE,1952,1952,3101,1,1,1302.723081,1302.723081,3505,NO,19.54,31.12,3,2.3,6112,112.420496,122.322758,131.969996,138.233188,I,Above,Flat,0,5701,,25.3302526,0,1.1,,,,1,1,,0.35,nav,1,1952,1,, 26195,NJBF000078201,131 PACIFIC AVE,Pleasantville,NJ,39.40361516,-74.50647027,RES3C,3001,,15,E,1905,1905,3303,1,1,901.450012,901.450012,3507,NO,9.9,18.37,1,-0.87,6112,112.495297,122.375473,132.02565,138.281079,I,Above,Gable,0,NaN,,14.1350514,0,0,,,,1,1,,0.35,nav,1,1905,1,, 26196,NJBF000078245,122 PACIFIC AVE,Pleasantville,NJ,39.40405246,-74.50655178,RES3C,3001,,16,E,1990,1990,3303,1,1,1468.471532,1468.471532,3507,NO,13.46,25.76,1,0.32,6112,112.489985,122.369482,132.018994,138.27254,I,Above,Gable,0,NaN,,19.61113752,0,0,,,,1,1,,0.35,nav,1,1990,1,, 26197,NJBF000078299,63 E THOMPSON AVE,Pleasantville,NJ,39.40452923,-74.50653983,RES3C,3001,,16,E,1974,1974,3303,1,1,1924.042337,1924.042337,3507,NO,12.97,26.74,1,-0.04,6112,112.486401,122.364738,132.013664,138.265181,I,Above,Gable,0,NaN,,19.85509026,0,0,,,,1,1,,0.35,nav,1,1974,1,, 26198,NJBF000078308,61 E THOMPSON AVE,Pleasantville,NJ,39.4046005,-74.50668139,RES3C,3001,,15,E,1920,1920,3303,1,1,1282.3691,1282.3691,3507,NO,19.9,25.23,1,1.42,6112,112.482775,122.361498,132.010136,138.261312,I,Above,Gable,0,NaN,,22.56577078,0,0,,,,1,1,,0.35,nav,1,1920,1,, 26199,NJBF000078353,106 E THOMPSON AVE,Pleasantville,NJ,39.40495484,-74.50656237,RES3C,3001,,15,E,1920,1920,3303,1,1,1267.826513,1267.826513,3507,NO,17.65,26.42,1,0.92,6112,112.482509,122.359924,132.00828,138.257978,I,Above,Gable,0,NaN,,22.03215434,0,0,,,,1,1,,0.35,nav,1,1920,1,, 26200,NJBF000078587,1106 IOWA AVE,Pleasantville,NJ,39.40636573,-74.50423669,RES3C,3001,,16,E,1964,1964,3303,2,1,780.2711035,780.2711035,3507,NO,30.47,40.55,1,-0.29,6112,112.521409,122.386389,132.036275,138.280378,I,Above,Gable,0,NaN,,35.51338841,0,0,,,,1,1,,0.35,nav,1,1964,2,, 26201,NJBF000078599,204 E LEEDS AVE,Pleasantville,NJ,39.40639593,-74.5038751,RES3C,3001,,15,E,1926,1926,3303,1,1,986.7544015,986.7544015,3507,NO,19.06,31.39,1,2.14,6112,112.528971,122.392484,132.042854,138.28687,I,Above,Gable,0,NaN,,25.22649522,0,1.2,,,,1,1,,0.35,nav,1,1926,1,, 26202,NJBF000078617,1106 IOWA AVE,Pleasantville,NJ,39.4065185,-74.5041557,RES3C,3001,,16,E,1964,1964,3303,2,1,1846.507588,1846.507588,3507,NO,34.7,40.04,1,1.86,6112,112.521943,122.386243,132.036057,138.279523,I,Above,Gable,0,NaN,,37.36872508,0,0,,,,1,1,,0.35,nav,1,1964,2,, 26203,NJBF000078771,147 W THOMPSON AVE,Pleasantville,NJ,39.40745624,-74.51326035,RES1,3001,,16,NE,2007,2007,3101,2,1,1296.91205,1296.91205,3505,NO,32.12,41.48,3,-0.84,6112,112.31862,122.215938,131.851743,138.088217,I,Above,Gable,0,5701,,36.80275574,0,1.1,,,,1,1,,0.35,nav,1,2007,2,, 26204,NJBF000078814,138 W THOMPSON AVE,Pleasantville,NJ,39.40771915,-74.51285263,RES1,3001,,16,NE,2006,2006,3101,2,1,1004.182456,1004.182456,3505,NO,28.08,39.51,3,-1.2,6112,112.325391,122.220375,131.856383,138.091964,I,Above,Gable,0,5701,,33.79229318,0,0,,,,1,1,,0.35,nav,1,2006,2,, 26205,NJBF000078826,144 W THOMPSON AVE,Pleasantville,NJ,39.4077778,-74.51298935,RES1,3001,,16,NE,2006,2006,3101,2,1,1096.269418,1096.269418,3505,NO,23.8,32.63,3,-1.53,6112,112.322022,122.217375,131.853115,138.088375,I,Above,Gable,0,5701,,28.21772478,0,0,,,,1,1,,0.35,nav,1,2006,2,, 26206,NJBF000078910,1175 PENNSYLVANIA AVE,Pleasantville,NJ,39.40829199,-74.50205731,RES3C,3001,,16,E,1983,1983,3303,1,1,1730.175735,1730.175735,3507,NO,12.42,20.84,1,0.3,6112,112.553021,122.404974,132.055676,138.29173,I,Above,Gable,0,NaN,,16.6274645,0,1.2,,,,1,1,,0.35,nav,1,1983,1,, 26207,NJBF000078946,322 CEDARCREST AVE,Pleasantville,NJ,39.40854469,-74.50138532,RES3C,3001,,15,E,1960,1960,3303,1,1,1761.191161,1761.191161,3507,NO,18.97,31.3,1,1.11,6112,112.565451,122.414251,132.065643,138.300621,I,Above,Flat,0,NaN,,25.13125629,0,0,,,,1,1,,0.35,nav,1,1960,1,, 26208,NJBF000078972,323 MONTCLAIR DR,Pleasantville,NJ,39.40873558,-74.50116651,RES3C,3001,,16,E,1954,1954,3303,1,1,981.8938969,981.8938969,3507,NO,12.3,23.51,1,0.22,6112,112.56862,122.416129,132.067616,138.301776,I,Above,Gable,0,NaN,,17.90431436,0,1.1,,,,1,1,,0.35,nav,1,1954,1,, 26209,NJBF000078984,333 MONTCLAIR DR,Pleasantville,NJ,39.4088259,-74.5008421,RES3C,3001,,16,E,1956,1956,3303,1,1,1476.220421,1476.220421,3507,NO,16.87,25.1,1,0.49,6112,112.574883,122.420954,132.072818,138.306584,I,Above,Gable,0,NaN,,20.98794805,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 26210,NJBF000078996,125 W LEEDS AVE,Pleasantville,NJ,39.40890081,-74.51121812,RES1,3001,,15,NE,1915,1915,3101,2,1,1100.143185,1100.143185,3505,NO,37.69,47.4,3,6.31,6112,112.351619,122.236916,131.873618,138.104989,I,Above,Gable,0,5701,,42.543995,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 26211,NJBF000078999,331 MONTCLAIR DR,Pleasantville,NJ,39.40890852,-74.50102749,RES3C,3001,,16,E,1955,1955,3303,1,1,1480.104155,1480.104155,3507,NO,17.94,32.25,1,1.65,6112,112.570257,122.416812,132.0683,138.301721,I,Above,Hip,0,NaN,,25.09765506,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 26212,NJBF000079031,1100 SHANE CT,Pleasantville,NJ,39.40911868,-74.51089543,RES1,3001,,16,NE,2005,2005,3101,2,1,958.6324756,958.6324756,3505,NO,35.64,49.74,3,0.98,6112,112.356912,122.240346,131.877215,138.107804,I,Above,Gable,0,5701,,42.68955009,0,0,,,,1,1,,0.35,nav,1,2005,2,, 26213,NJBF000079054,1102 SHANE CT,Pleasantville,NJ,39.40921393,-74.51076184,RES1,3001,,16,NE,2005,2005,3101,2,1,1179.622855,1179.622855,3505,NO,34.32,47.07,3,8.32,6112,112.359052,122.241705,131.878636,138.108879,I,Above,Hip,0,5701,,40.69774775,0,1.1,,,,1,1,,0.35,nav,1,2005,2,, 26214,NJBF000079068,1104 SHANE CT,Pleasantville,NJ,39.40930191,-74.5105745,RES1,3001,,16,NE,2005,2005,3101,2,1,1096.268025,1096.268025,3505,NO,28.51,33.52,3,2.2,6112,112.362402,122.244086,131.881167,138.111115,I,Above,Gable,0,5701,,31.01368343,0,0,,,,1,1,,0.35,nav,1,2005,2,, 26215,NJBF000079107,407 LARCHMONT DR,Pleasantville,NJ,39.40959951,-74.50006695,RES3C,3001,,16,E,1982,1982,3303,1,1,2146.009038,2146.009038,3507,NO,12.78,27.65,1,2.21,6112,112.585391,122.426648,132.07875,138.309181,I,Above,Gable,0,NaN,,20.21481607,0,0,,,,1,1,,0.35,nav,1,1982,1,, 26216,NJBF000079127,333 LARCHMONT DR,Pleasantville,NJ,39.40970351,-74.50021488,RES3C,3001,,16,E,1956,1956,3303,1,1,1072.992834,1072.992834,3507,NO,21.82,27.97,1,2.38,6112,112.581401,122.422943,132.074697,138.304698,I,Above,Gable,0,NaN,,24.89510506,0,0,,,,1,1,,0.35,nav,1,1956,1,, 26217,NJBF000079174,408 LARCHMONT DR,Pleasantville,NJ,39.4099634,-74.49976709,RES3C,3001,,16,E,1961,1961,3303,1,1,1319.203231,1319.203231,3507,NO,13.46,24.73,1,-0.69,6112,112.58896,122.428194,132.080317,138.309183,I,Above,Gable,0,NaN,,19.09415261,0,0,,,,1,1,,0.35,nav,1,1961,1,, 26218,NJBF000079190,406 LARCHMONT DR,Pleasantville,NJ,39.41002994,-74.49996818,RES3C,3001,,16,E,1962,1962,3303,1,1,1083.661017,1083.661017,3507,NO,10.19,21.9,1,-0.38,6112,112.584129,122.423933,132.075672,138.304271,I,Above,Gable,0,NaN,,16.0425795,0,0,,,,1,1,,0.35,nav,1,1962,1,, 26219,NJBF000079367,1414 OCEAN AVE,Pleasantville,NJ,39.41083222,-74.49916099,RES3C,3001,,15,E,1910,1910,3303,1,1,1047.80166,1047.80166,3507,NO,16.31,22.86,1,2.15,6112,112.595111,122.429908,132.081924,138.30704,I,Above,Hip,0,NaN,,19.58439721,0,0,,,,1,1,,0.35,nav,1,1910,1,, 26220,NJBF000079373,1133 N MAIN ST,Pleasantville,NJ,39.41087752,-74.50940302,GOV1,3004,,NaN,E,1969,0,3404,5,1,7611.817888,7611.817888,3507,NO,75.79,86.71,1,0.58,6106,112.375725,122.248421,131.885121,138.108841,I,Above,Flat,0,NaN,,81.24729912,0,0,,,,2,2,,0.03,nav,1,1969,5,, 26221,NJBF000079437,300 MALLARD CT,Pleasantville,NJ,39.41111987,-74.51276852,RES1,3001,,16,NE,2000,2000,3101,2,1,1186.409239,1186.409239,3505,NO,41.89,49.78,3,3.63,6112,112.301991,122.18673,131.818269,138.039524,I,Above,Flat,0,5701,,45.83262416,0,0,,,,1,1,,0.35,nav,1,2000,2,, 26222,NJBF000079563,412 E CALIFORNIA AVE,Pleasantville,NJ,39.41169814,-74.49844827,RES3C,3001,,15,E,1923,1923,3303,1,1,1875.572301,1875.572301,3507,NO,17.29,28.91,1,0.42,6112,112.603585,122.433553,132.085645,138.306998,I,Above,Gable,0,NaN,,23.09771818,0,1.1,,,,1,1,,0.35,nav,1,1923,1,, 26223,NJBF000079595,1311 N MAIN ST,Pleasantville,NJ,39.41183929,-74.50518231,RES3C,3001,,16,E,2001,2001,3303,1,1,1601.27107,1601.27107,3507,NO,17.3,25.4,1,0.05,6112,112.458723,122.312897,131.954593,138.175316,I,Above,Gable,0,NaN,,21.34742186,0,0,,,,1,1,,0.35,nav,1,2001,1,, 26224,NJBF000079623,1323 N MAIN ST (R),Pleasantville,NJ,39.41201468,-74.50537736,RES3C,3001,,15,E,2001,1910,3303,1,1,511.7822877,511.7822877,3507,NO,14.75,22.85,1,1.49,6112,112.453238,122.307631,131.948816,138.168761,I,Above,Flat,0,NaN,,18.79975749,0,0,,,,1,1,,0.35,nav,1,2001,1,, 26225,NJBF000079637,1321-23 N MAIN ST,Pleasantville,NJ,39.41207865,-74.505005,RES3C,3001,,43,E,1914,1914,3303,2,2,1642.951263,1642.951263,3507,NO,37.22,51.39,1,0.75,6112,112.460696,122.313536,131.955198,138.174931,I,Above,Hip,0,NaN,,44.30488807,0,0,,,,1,1,,0.35,nav,1,1914,2,, 26226,NJBF000079653,15 W REDWOOD AVE,Pleasantville,NJ,39.41216061,-74.50556509,RES3C,3001,,NaN,E,1969,0,3303,1,1,593.2064085,593.2064085,3507,NO,19.97,34.95,1,1.08,6110,112.448131,122.3028,131.943522,138.162816,I,Above,Gable,0,NaN,,27.45718467,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26227,NJBF000079662,1521 SIXTH AVE,Pleasantville,NJ,39.41221559,-74.49781418,RES3C,3001,,16,E,1993,1993,3303,2,1,1514.028283,1514.028283,3507,NO,35.22,41.21,1,2.34,6112,112.613085,122.439418,132.091884,138.310943,I,Above,Gable,0,NaN,,38.21360696,0,0,,,,1,1,,0.35,nav,1,1993,2,, 26228,NJBF000079685,15 W REDWOOD AVE,Pleasantville,NJ,39.41232602,-74.50534845,RES3C,3001,,NaN,E,1969,0,3303,1,1,799.1846006,799.1846006,3507,NO,11.51,23.91,1,0.91,6110,112.451524,122.304921,131.945762,138.164393,I,Above,Gable,0,NaN,,17.70792777,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26229,NJBF000079726,15 W REDWOOD AVE,Pleasantville,NJ,39.41253908,-74.5052077,RES3C,3001,,NaN,E,1969,0,3303,1,1,1067.562891,1067.562891,3507,NO,11.91,19.8,1,-0.66,6110,112.452916,122.305185,131.945972,138.163723,I,Above,Flat,0,NaN,,15.85536492,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26230,NJBF000079771,508 NEVADA AVE,Pleasantville,NJ,39.41276356,-74.49733717,RES3C,3001,,16,E,1970,1970,3303,1,1,2071.36074,2071.36074,3507,NO,12.69,26.01,1,0.13,6112,112.619,122.442186,132.094758,138.311411,I,Above,Hip,0,NaN,,19.35368999,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 26231,NJBF000079750,1401 N MAIN ST,Pleasantville,NJ,39.41269426,-74.50464719,RES3C,3001,999,NaN,E,1969,1940,3303,1,1,10054.92048,10054.92048,3507,NO,14.49,24.45,1,0.63,6112,112.463716,122.313484,131.954923,138.1721,I,Above,Flat,0,NaN,,19.46999431,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26232,NJBF000078679,,Pleasantville,NJ,39.40689113,-74.50344233,RES3C,3001,,NaN,E,1969,0,3303,4,1,972.1919708,972.1919708,3507,NO,59.9,68.12,1,0.91,6112,112.534351,122.395006,132.045391,138.28734,I,Above,Flat,0,NaN,,64.01113246,0,0,,,,1,1,,0.35,nav,1,1969,4,, 26233,NJBF000077599,302 SKYLINE CONDOS,Pleasantville,NJ,39.39971796,-74.51026666,RES1,3001,,33,NE,1989,1989,3101,1,1,4156.066806,4156.066806,3505,NO,11.52,17.42,3,-1.1,6112,112.4448,122.348886,131.998979,138.269726,I,Above,Gable,0,5701,,14.47147935,0,0,,,,1,1,,0.35,nav,1,1989,1,, 26234,NJBF000077577,302 SKYLINE CONDOS,Pleasantville,NJ,39.39958923,-74.5099541,RES1,3001,,33,NE,1989,1989,3101,1,1,3972.165602,3972.165602,3505,NO,18.5,27.32,3,6.81,6112,112.452697,122.355756,132.00642,138.277854,I,Above,Gable,0,5701,,22.91314395,0,0,,,,1,1,,0.35,nav,1,1989,1,, 26235,NJBF000077527,302 SKYLINE CONDOS,Pleasantville,NJ,39.39925109,-74.51018582,RES1,3001,,33,NE,1989,1989,3101,1,1,3515.030744,3515.030744,3505,NO,10.23,23.95,3,-2.24,6112,112.450458,122.355174,132.005977,138.278749,I,Above,Gable,0,5701,,17.08770779,0,0,,,,1,1,,0.35,nav,1,1989,1,, 26236,NJBF000077509,302 SKYLINE CONDOS,Pleasantville,NJ,39.39913666,-74.51088757,RES1,3001,,33,NE,1989,1989,3101,1,1,4100.831351,4100.831351,3505,NO,20.38,30.6,3,3.49,6112,112.436094,122.343963,131.994016,138.266948,I,Above,Gable,0,5701,,25.49266492,0,0,,,,1,1,,0.35,nav,1,1989,1,, 26237,NJBF000087997,OLD NEW YORK RD,Port Republic,NJ,39.54702848,-74.46455009,COM4,3002,510,NaN,ME,1969,0,3401,1,1,963.0379495,963.0379495,3507,NO,13.11,20.81,1,1,6106,112.421816,121.536226,131.126568,136.9072,I,Above,Flat,0,5701,,16.96418245,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26238,NJBF000087665,322 SOOYS LANDING RD,Port Republic,NJ,39.53903349,-74.49545247,GOV1,3001,999,NaN,E,1969,0,3401,1,1,521.6848496,521.6848496,3507,NO,20.04,25.16,1,0.75,6106,111.944244,121.099862,130.684804,136.399158,I,Above,Gable,0,NaN,,22.60021084,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26239,NJBF000087335,291 OLD NEW YORK RD,Port Republic,NJ,39.53139912,-74.48752559,RES1,3001,,17,NE,1970,1970,3101,1,1,1249.801584,1249.801584,3507,NO,12.7,23.14,1,0.95,6106,112.117236,121.325321,130.915074,136.677747,I,Above,Gable,0,5701,,17.91938563,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 26240,NJBF000087663,322 SOOYS LANDING RD,Port Republic,NJ,39.53891584,-74.49610907,GOV1,3001,999,NaN,E,1969,0,3401,1,1,628.8568305,628.8568305,3507,NO,14.4,25.46,1,2.02,6106,111.933854,121.090182,130.674978,136.387569,I,Above,Gable,0,NaN,,19.9280788,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26241,NJBF000087808,631 CHESTNUT NECK RD,Port Republic,NJ,39.54288849,-74.46736347,RES1,3001,73,NaN,NE,1969,0,3102,2,1,561.2084936,561.2084936,3507,NO,22.07,33.2,1,-0.66,6110,112.398184,121.537596,131.129934,136.912691,I,Above,Flat,0,5701,,27.63181028,0,0,,,,1,1,,0.7,nav,1,1969,2,, 26242,NJBF000086322,3 S OLD NEW YORK RD,Port Republic,NJ,39.51289576,-74.48353474,RES1,3001,,17,NE,1980,1980,3102,1,1,2943.687483,2943.687483,3507,NO,17.05,30.7,1,2.02,6106,112.284331,121.609701,131.209481,137.040505,I,Above,Gable,0,5701,,23.87471527,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 26243,NJBF000086338,3 S OLD NEW YORK RD,Port Republic,NJ,39.51301336,-74.48386316,RES1,3001,,17,NE,1980,1980,3102,1,1,1029.109213,1029.109213,3507,NO,15.84,21.6,1,-0.77,6106,112.277896,121.60265,131.202103,137.032139,I,Above,Flat,0,5701,,18.72111762,0,1.2,,,,1,1,,0.03,nav,1,1980,1,, 26244,NJBF000086654,345 UPPER POMONA AVE,Port Republic,NJ,39.51689182,-74.50913511,RES1,3001,,17,NE,1987,1987,3102,2,1,4337.470303,4337.470303,3507,NO,38.28,52.31,1,0.26,6112,111.818651,121.12717,130.708077,136.462849,I,Above,Hip,0,5701,,45.29256481,0,1.2,,,,1,1,,0.15,nav,1,1987,2,, 26245,NJBF000086711,5 MILL ST,Port Republic,NJ,39.51780837,-74.49709645,RES1,3001,,17,NE,1754,1754,3102,2,1,2763.520183,2763.520183,3505,NO,30.75,36.06,3,4.52,6106,112.02152,121.319884,130.908003,136.692229,I,Above,Hip,0,5701,,33.40527692,0,0,,,,1,1,,0.03,nav,1,1754,2,, 26246,NJBF000086860,17 MAIN ST,Port Republic,NJ,39.51978044,-74.48717059,RES1,3001,,17,NE,1830,1830,3102,2,1,1984.240254,1984.240254,3505,NO,42.19,48.16,3,5.93,6112,112.184021,121.467353,131.061495,136.862491,I,Above,Hip,0,5701,,45.17912429,0,1.2,,,,1,1,,0.35,nav,1,1830,2,, 26247,NJBF000087130,18 ADAMS AVE,Port Republic,NJ,39.5255024,-74.48657302,RES1,3001,,17,NE,2001,2001,3102,1,1,2910.092896,2910.092896,3505,NO,20,28.69,3,8.18,6112,112.164457,121.411074,131.003444,136.787242,I,Above,Flat,0,5701,,24.34517559,0,1.2,,,,1,1,,0.15,nav,1,2001,1,, 26248,NJBF000087278,274 OLD NEW YORK RD,Port Republic,NJ,39.52952129,-74.48533576,RES1,3001,,17,NE,1981,1981,3101,2,1,2529.615734,2529.615734,3507,NO,37.86,49.13,1,2.15,6106,112.164612,121.385164,130.976673,136.750913,I,Above,Gable,0,5701,,43.4976435,0,1.2,,,,1,1,,0.03,nav,1,1981,2,, 26249,NJBF000087298,274 OLD NEW YORK RD,Port Republic,NJ,39.53015546,-74.48516629,RES1,3001,,17,NE,1981,1981,3101,2,1,3154.579984,3154.579984,3507,NO,37.67,46.36,1,-0.68,6112,112.164179,121.380607,130.971954,136.744673,I,Above,Gable,0,5701,,42.0150513,0,1.2,,,,1,1,,0.35,nav,1,1981,2,, 26250,NJBF000087638,476 CHESTNUT NECK RD,Port Republic,NJ,39.53835975,-74.48141479,RES1,3001,,17,NE,1996,1996,3102,2,1,2525.699962,2525.699962,3507,NO,33.55,43.99,1,-0.99,6110,112.18429,121.347456,130.937008,136.69548,I,Above,Gable,0,5701,,38.76781558,0,1.2,,,,1,1,,0.35,nav,1,1996,2,, 26251,NJBF000087704,631 CHESTNUT NECK RD,Port Republic,NJ,39.54045355,-74.4689915,RES1,3001,73,NaN,NE,1969,0,3102,2,1,2663.622156,2663.622156,3507,NO,28.13,33.43,1,0.62,6110,112.384448,121.53866,131.132017,136.916464,I,Above,Flat,0,5701,,30.77938513,0,0,,,,1,1,,1,nav,1,1969,2,, 26252,NJBF000087446,358 CHESTNUT NECK RD,Port Republic,NJ,39.5337842,-74.48887724,RES1,3001,,17,NE,1971,1971,3101,2,1,2524.581221,2524.581221,3507,NO,28,42.41,1,1.4,6112,112.081809,121.273933,130.862317,136.61375,I,Above,Hip,0,5701,,35.20632045,0,0,,,,1,1,,0.35,nav,1,1971,2,, 26253,NJBF000087192,219 OLD NEW YORK RD,Port Republic,NJ,39.52675334,-74.48626126,RES1,3001,,17,NE,2000,2000,3102,2,1,1084.739446,1084.739446,3505,NO,32.27,46.05,3,5.24,6112,112.163277,121.401793,130.993869,136.774452,I,Above,Gable,0,5701,,39.16164961,0,0,,,,1,1,,0.15,nav,1,2000,2,, 26254,NJBF000087537,12 WILSON AVE,Port Republic,NJ,39.53585918,-74.46259454,IND3,3002,,17,E,1990,1990,3401,2,1,1046.750896,1046.750896,3507,NO,24.09,32.23,1,0.03,6106,112.521632,121.70781,131.307771,137.115915,I,Above,Gable,0,5701,,28.1611066,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 26255,NJBF000087442,327 OLD NEW YORK RD,Port Republic,NJ,39.53371767,-74.48763273,RES1,3001,,17,NE,1960,1960,3101,1,1,2436.35197,2436.35197,3507,NO,12.08,22.98,1,0.83,6112,112.103299,121.296009,130.884925,136.640051,I,Above,Flat,0,5701,,17.52951184,0,0,,,,1,1,,0.35,nav,1,1960,1,, 26256,NJBF000086995,138 OLD NEW YORK RD,Port Republic,NJ,39.5234985,-74.4846935,RES1,3001,,17,NE,1930,1930,3102,2,1,983.9140478,983.9140478,3505,NO,43.77,55.25,3,8.09,6106,112.207561,121.466933,131.061232,136.855813,I,Above,Flat,0,5701,,49.51317134,0,0,,,,1,1,,0.03,nav,1,1930,2,, 26257,NJBF000086994,138 OLD NEW YORK RD,Port Republic,NJ,39.5234895,-74.48504935,RES1,3001,,17,NE,1930,1930,3102,2,1,1413.396385,1413.396385,3505,NO,45.8,57.54,3,8.99,6112,112.201449,121.46091,131.054989,136.84879,I,Above,Gable,0,5701,,51.66983483,0,0,,,,1,1,,0.35,nav,1,1930,2,, 26258,NJBF000087126,201 OLD NEW YORK RD,Port Republic,NJ,39.52548281,-74.48537219,RES1,3001,,17,NE,1997,1997,3102,1,1,1162.430047,1162.430047,3505,NO,22.73,37.48,3,4.14,6110,112.185316,121.432015,131.025094,136.811841,I,Above,Gable,0,5701,,30.10347962,0,0,,,,1,1,,0.35,nav,1,1997,1,, 26259,NJBF000088026,758 OLD NEW YORK RD,Port Republic,NJ,39.54746107,-74.46156509,COM4,3002,510,NaN,ME,1969,0,3401,2,1,937.5641801,937.5641801,3507,NO,32.92,43.57,1,2.96,6106,112.470044,121.58376,131.174796,136.961577,I,Above,Flat,0,5701,,38.24189359,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 26260,NJBF000088034,758 OLD NEW YORK RD,Port Republic,NJ,39.54754176,-74.46161742,COM4,3002,510,NaN,ME,1969,0,3401,2,1,641.9376551,641.9376551,3507,NO,25.45,30.54,1,1.5,6106,112.468672,121.58183,131.172782,136.959287,I,Above,Gable,0,5701,,27.99297076,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 26261,NJBF000088041,758 OLD NEW YORK RD,Port Republic,NJ,39.5476121,-74.46116405,COM4,3002,510,NaN,ME,1969,0,3401,2,1,4133.378757,4133.378757,3507,NO,25.87,31.23,1,-0.54,6102,112.475969,121.58901,131.180065,136.967475,I,Above,Flat,0,5701,,28.5511146,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 26262,NJBF000087042,150 OLD NEW YORK RD,Port Republic,NJ,39.52432692,-74.4845983,RES1,3001,,17,NE,1920,1920,3102,2,1,1172.409266,1172.409266,3505,NO,23.31,28.86,3,0.24,6106,112.204838,121.45892,131.052935,136.845132,I,Above,Gable,0,5701,,26.08277707,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 26263,NJBF000087030,150 OLD NEW YORK RD,Port Republic,NJ,39.52418711,-74.4847178,RES1,3001,,17,NE,1920,1920,3102,2,1,1752.303858,1752.303858,3505,NO,26.36,35.86,3,2.33,6112,112.203498,121.458481,131.05248,136.84484,I,Above,Gable,0,5701,,31.11070978,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 26264,NJBF000086315,292 RIVERSIDE DR,Port Republic,NJ,39.51284176,-74.50099852,RES1,3001,,17,NE,1988,1988,3102,2,1,3605.144184,3605.144184,3507,NO,35.24,41.29,1,1.35,6106,111.977867,121.310067,130.896375,136.689709,I,Above,Gable,0,5701,,38.2647859,0,0,,,,1,1,,0.03,nav,1,1988,2,, 26265,NJBF000086837,22 OLD NEW YORK RD,Port Republic,NJ,39.51946832,-74.48515053,RES1,3001,,17,NE,1875,1875,3102,2,1,1273.176968,1273.176968,3505,NO,31.61,42.78,3,1.1,6110,112.220933,121.505901,131.101566,136.908007,I,Above,Gable,0,5701,,37.19610042,0,0,,,,1,1,,0.35,nav,1,1875,2,, 26266,NJBF000086850,26 OLD NEW YORK RD,Port Republic,NJ,39.51964829,-74.48522627,RES1,3001,,17,NE,1865,1865,3102,2,1,1018.479501,1018.479501,3505,NO,27.18,36.84,3,-0.09,6110,112.218671,121.502516,131.098054,136.903752,I,Above,Gable,0,5701,,32.0098364,0,0,,,,1,1,,0.35,nav,1,1865,2,, 26267,NJBF000087163,215 OLD NEW YORK RD,Port Republic,NJ,39.52617991,-74.48554396,RES1,3001,,17,NE,1920,1920,3102,2,1,1355.862538,1355.862538,3505,NO,33.14,42.57,3,5.92,6110,112.178666,121.420878,131.013582,136.797721,I,Above,Hip,0,5701,,37.85740135,0,0,,,,1,1,,0.35,nav,1,1920,2,, 26268,NJBF000086555,43 RIVERSIDE DR,Port Republic,NJ,39.5149705,-74.4879255,RES1,3001,,17,NE,2013,2013,3102,2,1,832.5703879,832.5703879,3507,NO,33.33,46.87,1,2.48,6106,112.19589,121.509735,131.105134,136.920629,I,Above,Gable,0,5701,,40.10075376,0,1.2,,,,1,1,,0.03,nav,1,2013,2,, 26269,NJBF000086554,43 RIVERSIDE DR,Port Republic,NJ,39.51496608,-74.48870108,RES1,3001,,17,NE,2013,2013,3102,2,1,3114.685414,3114.685414,3507,NO,24.71,39.27,1,-0.84,6106,112.182294,121.496391,131.0912,136.905083,I,Above,Gable,0,5701,,31.99117009,0,1.2,,,,1,1,,0.03,nav,1,2013,2,, 26270,NJBF000086440,280 RIVERSIDE DR,Port Republic,NJ,39.51383166,-74.50019417,RES1,3001,,17,NE,1988,1988,3102,2,1,2562.281405,2562.281405,3507,NO,36,46.65,1,0.21,6112,111.987111,121.312517,130.899247,136.690735,I,Above,Hip,0,5701,,41.32678895,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 26271,NJBF000086764,20 ST JOHNS LANE,Port Republic,NJ,39.518467,-74.48297,RES1,3001,,17,NE,1950,1950,3102,2,1,552.353146,552.353146,3505,NO,25.36,36.48,3,-2.2,6106,112.264467,121.555346,131.153019,136.967211,I,Above,Gable,0,5701,,30.92224992,0,0,,,,1,1,,0.03,nav,1,1950,2,, 26272,NJBF000086761,20 ST JOHNS LANE,Port Republic,NJ,39.51843188,-74.48329149,RES1,3001,,17,NE,1950,1950,3102,2,1,2635.421117,2635.421117,3505,NO,24.22,35.58,3,-1.46,6106,112.259021,121.550171,131.147624,136.961275,I,Above,Gable,0,5701,,29.90275999,0,0,,,,1,1,,0.03,nav,1,1950,2,, 26273,NJBF000087085,158 OLD NEW YORK RD,Port Republic,NJ,39.5249183,-74.48450682,RES1,3001,,17,NE,1900,1900,3102,2,1,1783.984058,1783.984058,3505,NO,28.29,38.83,3,4.28,6106,112.203281,121.453579,131.047405,136.837961,I,Above,Flat,0,5701,,33.55942052,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 26274,NJBF000086152,18 PITNEY RD,Port Republic,NJ,39.51029821,-74.48416463,RES1,3001,,17,NE,1990,1990,3102,1,1,3341.405362,3341.405362,3507,NO,16.75,28.6,1,1.21,6110,112.287039,121.628436,131.228864,137.067326,I,Above,Gable,0,5701,,22.67465088,0,1.2,,,,1,1,,0.35,nav,1,1990,1,, 26275,NJBF000087172,,Port Republic,NJ,39.526406,-74.489786,RES1,3001,,NaN,NE,1969,0,3102,2,1,1175.253365,1175.253365,3505,NO,35.94,41.9,3,0.37,6112,112.104394,121.345273,130.935536,136.708347,I,Above,Gable,0,5701,,38.91616788,0,0,,,,1,1,,0.35,nav,1,1969,2,, 26276,NJBF000087679,499 CHESTNUT NECK RD,Port Republic,NJ,39.53945684,-74.48056342,RES1,3001,,17,NE,1986,1986,3102,1,1,2246.435477,2246.435477,3507,NO,12.43,22.47,1,-0.92,6110,112.192795,121.348949,130.938315,136.696053,I,Above,Gable,0,5701,,17.45021585,0,0,,,,1,1,,0.35,nav,1,1986,1,, 26277,NJBF000086533,1 S OLD NEW YORK RD,Port Republic,NJ,39.51463642,-74.48410213,RES1,3001,,17,NE,1990,1990,3102,2,1,3616.512679,3616.512679,3507,NO,34.81,40.3,1,-0.54,6110,112.26501,121.579863,131.178393,137.002666,I,Above,Gable,0,5701,,37.55354409,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 26278,NJBF000086665,279 MAIN ST,Port Republic,NJ,39.51716393,-74.50314272,RES1,3001,,17,NE,1984,1984,3102,2,1,770.9018373,770.9018373,3507,NO,25.39,32.68,1,1.2,6112,111.920202,121.224738,130.809157,136.57989,I,Above,Gable,0,5701,,29.03620936,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 26279,NJBF000086717,279 MAIN ST,Port Republic,NJ,39.5178718,-74.50313143,RES1,3001,,17,NE,1984,1984,3102,2,1,1274.547295,1274.547295,3507,NO,35.77,45.75,1,-0.08,6112,111.917065,121.216879,130.801246,136.569228,I,Above,Gable,0,5701,,40.760367,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 26280,NJBF000086878,1 MAIN ST,Port Republic,NJ,39.52004001,-74.48582648,RES1,3001,,17,NE,1952,1952,3102,1,1,1714.701536,1714.701536,3505,NO,17.27,31.55,3,6.1,6106,112.206123,121.487588,131.08255,136.885673,I,Above,Gable,0,5701,,24.41028929,0,0,,,,1,1,,0.03,nav,1,1952,1,, 26281,NJBF000087957,11 RIVER RD,Port Republic,NJ,39.54655899,-74.46063504,RES1,3001,,16,NE,1975,1975,3102,2,1,683.2310027,683.2310027,3507,NO,34.03,46.22,1,0.44,6106,112.491326,121.6115,131.203616,136.994227,I,Above,Hip,0,5701,,40.12598422,0,0,,,,1,1,,0.03,nav,1,1975,2,, 26282,NJBF000087580,322 SOOYS LANDING RD,Port Republic,NJ,39.53690486,-74.49540498,GOV1,3001,999,NaN,E,1969,0,3401,1,1,607.3672282,607.3672282,3507,NO,14.14,21,1,-0.65,6110,111.9557,121.125964,130.711295,136.432919,I,Above,Gable,0,NaN,,17.56967816,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26283,NJBF000087647,322 SOOYS LANDING RD,Port Republic,NJ,39.53858273,-74.49599433,GOV1,3001,999,NaN,E,1969,0,3401,2,1,694.1970615,694.1970615,3507,NO,35.63,47.24,1,1.14,6110,111.93744,121.096084,130.680964,136.395049,I,Above,Gable,0,NaN,,41.43611035,0,0,,,,1,1,,0.35,nav,1,1969,2,, 26284,NJBF000087513,22-24 WILSON AVE,Port Republic,NJ,39.53535594,-74.46312967,IND3,3002,999,NaN,E,1969,0,3401,2,1,919.4330898,919.4330898,3507,NO,25.69,31.5,1,0.91,6106,112.51534,121.704374,131.304436,137.112642,I,Above,Flat,0,5701,,28.59520492,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26285,NJBF000086614,40 RIVERSIDE DR,Port Republic,NJ,39.51525096,-74.4881782,RES1,3001,,17,NE,2013,1990,3102,2,1,2439.58247,2439.58247,3507,NO,36.7,49,1,0.11,6106,112.19,121.502156,131.097258,136.911269,I,Above,Gable,0,5701,,42.84697658,0,1.2,,,,1,1,,0.03,nav,1,2013,2,, 26286,NJBF000087990,762 OLD NEW YORK RD,Port Republic,NJ,39.54693944,-74.4608947,RES1,3001,,16,NE,1950,1950,3102,2,1,1029.235554,1029.235554,3507,NO,34.77,47.9,1,0.8,6106,112.484602,121.602156,131.193861,136.983166,I,Above,Gable,0,5701,,41.33393296,0,0,,,,1,1,,0.03,nav,1,1950,2,, 26287,NJBF000086828,22 OLD NEW YORK RD,Port Republic,NJ,39.51931585,-74.48514775,RES1,3001,,17,NE,1875,1875,3102,2,1,824.0996735,824.0996735,3505,NO,30.99,45.35,3,5.3,6110,112.22179,121.507714,131.103444,136.910383,I,Above,Gable,0,5701,,38.16633465,0,0,,,,1,1,,0.35,nav,1,1875,2,, 26288,NJBF000086705,49 MAIN ST,Port Republic,NJ,39.51774628,-74.48999075,RES1,3001,,17,NE,1985,1985,3102,2,1,2002.587689,2002.587689,3505,NO,31.97,37.01,3,-1.74,6106,112.145362,121.442219,131.035129,136.836637,I,Above,Gable,0,5701,,34.49070698,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 26289,NJBF000086740,49 MAIN ST,Port Republic,NJ,39.51822227,-74.48965711,RES1,3001,,17,NE,1985,1985,3102,2,1,995.235895,995.235895,3505,NO,30.89,36.27,3,5.56,6112,112.148741,121.442486,131.035471,136.836104,I,Above,Gable,0,5701,,33.57528864,0,1.2,,,,1,1,,0.15,nav,1,1985,2,, 26290,NJBF000086417,286 RIVERSIDE DR,Port Republic,NJ,39.51365991,-74.50093566,RES1,3001,,18,NE,2010,2010,3102,2,1,3108.159054,3108.159054,3507,NO,37.05,45.05,1,1.92,6112,111.975042,121.301873,130.888113,136.678403,I,Above,Hip,0,5701,,41.05072647,0,1.2,,,,1,1,,0.03,nav,1,2010,2,, 26291,NJBF000087482,7 NEW YORK RD,Port Republic,NJ,39.5346575,-74.4655905,IND3,3002,,NaN,E,1950,1950,3401,1,1,1479.066246,1479.066246,3507,NO,12.94,18.93,1,2.07,6112,112.476775,121.669075,131.268282,137.073269,I,Above,Flat,0,5701,,15.93881638,0,0,,,,1,1,,0.7,nav,1,1950,1,, 26292,NJBF000087465,7 NEW YORK RD,Port Republic,NJ,39.53431217,-74.46669101,IND3,3002,,NaN,E,1950,1950,3401,1,1,1265.005552,1265.005552,3507,NO,18.29,23.41,1,2.6,6106,112.459732,121.653751,131.252596,137.05619,I,Above,Flat,0,5701,,20.85375023,0,0,,,,1,1,,0.03,nav,1,1950,1,, 26293,NJBF000087626,470 CHESTNUT NECK RD,Port Republic,NJ,39.53806416,-74.48152577,RES1,3001,,17,NE,1975,1975,3102,2,1,541.2602455,541.2602455,3507,NO,30.41,43.55,1,0.4,6110,112.184007,121.349101,130.938743,136.697747,I,Above,Flat,0,5701,,36.98244803,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 26294,NJBF000086551,82 RIVERSIDE DR,Port Republic,NJ,39.514941,-74.4917635,RES1,3001,,17,NE,1975,1975,3102,1,1,524.1200071,524.1200071,3507,NO,15.69,22.79,1,2.08,6106,112.128707,121.443911,131.036433,136.843755,I,Above,Gable,0,5701,,19.24219518,0,0,,,,1,1,,0.03,nav,1,1975,1,, 26295,NJBF000088016,767 OLD NEW YORK RD,Port Republic,NJ,39.54729718,-74.46222365,COM4,3002,,17,ME,1940,1940,3401,1,1,1763.187324,1763.187324,3507,NO,17.13,25.85,1,-0.56,6106,112.459801,121.574095,131.16503,136.950608,I,Above,Gable,0,5701,,21.48601706,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 26296,NJBF000088042,,Port Republic,NJ,39.54761678,-74.46251442,COM4,3002,,NaN,ME,1940,0,3401,2,1,687.9486283,687.9486283,3507,NO,27.03,40.74,1,1.41,6106,112.452951,121.564975,131.155555,136.939832,I,Above,Flat,0,5701,,33.88936368,0,0,,,,1,1,,0.03,nav,1,1940,2,, 26297,NJBF000087706,648 CHESTNUT NECK RD,Port Republic,NJ,39.54051299,-74.46692074,RES1,3001,,14,NE,1900,1900,3102,2,1,1858.105345,1858.105345,3507,NO,31.77,37.07,1,0.66,6112,112.419597,121.574456,131.168675,136.957717,I,Above,Gable,0,5701,,34.41849656,0,0,,,,1,1,,0.35,nav,1,1900,2,, 26298,NJBF000086600,68 RIVERSIDE DR,Port Republic,NJ,39.51560229,-74.49034788,RES1,3001,,17,NE,1960,1960,3102,2,1,2626.691607,2626.691607,3507,NO,30.19,38.73,1,2.01,6106,112.150127,121.460701,131.054059,136.862192,I,Above,Hip,0,5701,,34.46078024,0,0,,,,1,1,,0.03,nav,1,1960,2,, 26299,NJBF000086591,68 RIVERSIDE DR,Port Republic,NJ,39.5154915,-74.490628,RES1,3001,,17,NE,1960,1960,3102,2,1,1092.824942,1092.824942,3507,NO,33.36,47.74,1,0.17,6106,112.145787,121.457142,131.050329,136.858229,I,Above,Gable,0,5701,,40.54940402,0,0,,,,1,1,,0.03,nav,1,1960,2,, 26300,NJBF000086584,68 RIVERSIDE DR,Port Republic,NJ,39.51534268,-74.49088233,RES1,3001,,17,NE,1960,1960,3102,2,1,931.0559113,931.0559113,3507,NO,31.62,37.55,1,1.61,6106,112.142102,121.454478,131.047525,136.855387,I,Above,Gable,0,5701,,34.58211292,0,0,,,,1,1,,0.03,nav,1,1960,2,, 26301,NJBF000086704,11 KNOWLES LANE,Port Republic,NJ,39.51773985,-74.48904078,RES1,3001,,17,NE,1900,1900,3102,2,1,2606.374001,2606.374001,3505,NO,28.6,37.65,3,-2.33,6106,112.161981,121.458649,131.05223,136.855893,I,Above,Gable,0,5701,,33.12180065,0,0,,,,1,1,,0.03,nav,1,1900,2,, 26302,NJBF000086805,11 OLD NEW YORK RD,Port Republic,NJ,39.51896024,-74.48572075,RES1,3001,,17,NE,1989,1989,3102,2,1,2100.892295,2100.892295,3505,NO,24.23,37.97,3,1.52,6110,112.213648,121.501912,131.097383,136.904249,I,Above,Gable,0,5701,,31.10217417,0,0,,,,1,1,,0.35,nav,1,1989,2,, 26303,NJBF000086911,144 POMONA AVE,Port Republic,NJ,39.52107015,-74.49556936,RES1,3001,,17,NE,2017,2017,3102,2,1,1801.849093,1801.849093,3505,NO,40.41,50.65,3,7.03,6112,112.031798,121.308411,130.896806,136.673042,I,Above,Gable,0,5701,,45.52612759,0,0,,,,1,1,,0.35,nav,1,2017,2,, 26304,NJBF000087525,33 WILSON AVE,Port Republic,NJ,39.53573007,-74.46391387,IND3,3002,,NaN,E,1969,0,3401,1,1,1519.150427,1519.150427,3507,NO,17.34,23.64,1,2.54,6106,112.49953,121.685897,131.285221,137.091108,I,Above,Hip,0,NaN,,20.49176877,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26305,NJBF000087521,33 WILSON AVE,Port Republic,NJ,39.53564646,-74.46429322,IND3,3002,,NaN,E,1969,0,3401,1,1,3182.635622,3182.635622,3507,NO,13,24.07,1,1.29,6106,112.493459,121.680178,131.279356,137.084687,I,Above,Gable,0,NaN,,18.53080028,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26306,NJBF000087502,4 BOAT AVE,Port Republic,NJ,39.53507529,-74.46422032,IND3,3002,,16,E,1960,1960,3401,1,1,1757.797117,1757.797117,3507,NO,17.24,32.2,1,1.86,6106,112.498095,121.688383,131.288046,137.094777,I,Above,Hip,0,5701,,24.71898229,0,0,,,,1,1,,0.03,nav,1,1960,1,, 26307,NJBF000086720,6 MILL ST,Port Republic,NJ,39.51790464,-74.49659695,RES1,3001,,17,NE,1983,1983,3102,1,1,2109.809191,2109.809191,3505,NO,15.95,23.17,3,1.89,6106,112.029686,121.327272,130.915694,136.700823,I,Above,Gable,0,5701,,19.56445266,0,0,,,,1,1,,0.03,nav,1,1983,1,, 26308,NJBF000086876,13 MAIN ST,Port Republic,NJ,39.51997256,-74.48674451,RES1,3001,,17,NE,1850,1850,3102,2,1,1714.903089,1714.903089,3505,NO,34.09,43.11,3,7.91,6112,112.190441,121.472476,131.066835,136.868146,I,Above,Gable,0,5701,,38.59650789,0,0,,,,1,1,,0.35,nav,1,1850,2,, 26309,NJBF000086723,1-9 KNOWLES LANE,Port Republic,NJ,39.51793133,-74.48832807,RES1,3001,,18,NE,2000,2000,3102,2,1,9370.201528,9370.201528,3505,NO,29.86,35.75,3,4.48,6106,112.17345,121.468743,131.06276,136.867359,I,Above,Flat,0,5701,,32.80482205,0,1.2,,,,1,1,,0.03,nav,1,2000,2,, 26310,NJBF000086719,1-9 KNOWLES LANE,Port Republic,NJ,39.51790076,-74.4887139,RES1,3001,,18,NE,2000,2000,3102,2,1,689.8235542,689.8235542,3505,NO,28.75,38.23,3,-1.45,6106,112.166861,121.462431,131.056187,136.860031,I,Above,Gable,0,5701,,33.48666949,0,1.2,,,,1,1,,0.03,nav,1,2000,2,, 26311,NJBF000086814,188 MAIN ST,Port Republic,NJ,39.51912378,-74.4963607,RES1,3001,,17,NE,1986,1986,3102,2,1,2473.59391,2473.59391,3505,NO,35.54,45.41,3,5.92,6112,112.027756,121.317311,130.905633,136.686887,I,Above,Gable,0,5701,,40.47380462,0,1.2,,,,1,1,,0.35,nav,1,1986,2,, 26312,NJBF000087708,639 CHESTNUT NECK RD,Port Republic,NJ,39.54057129,-74.46787974,RES1,3001,,17,NE,1930,1930,3102,2,1,1569.182469,1569.182469,3507,NO,28.07,37.72,1,1.43,6112,112.402818,121.556824,131.15058,136.937321,I,Above,Hip,0,5701,,32.89748866,0,0,,,,1,1,,0.15,nav,1,1930,2,, 26313,NJBF000087717,639 CHESTNUT NECK RD,Port Republic,NJ,39.5409385,-74.468066,RES1,3001,,17,NE,1930,1930,3102,2,1,638.7622908,638.7622908,3507,NO,26.57,37.01,1,-0.78,6112,112.397496,121.549054,131.142472,136.927953,I,Above,Gable,0,5701,,31.78878746,0,0,,,,1,1,,0.15,nav,1,1930,2,, 26314,NJBF000088171,800 CHESTNUT NECK RD,Port Republic,NJ,39.54803791,-74.46150522,COM4,3002,,14,ME,1956,1950,3401,3,1,776.193932,776.193932,3507,NO,46.77,56.26,1,1.88,6102,112.467603,121.577652,131.168241,136.954051,I,Above,Flat,0,5701,,51.51548883,0,0,,,,1,1,,0.03,nav,1,1956,3,, 26315,NJBF000086153,20 PITNEY RD,Port Republic,NJ,39.51033597,-74.48353716,RES1,3001,,17,NE,1990,1990,3102,2,1,2220.38895,2220.38895,3507,NO,38.52,47.49,1,2.89,6112,112.29801,121.638945,131.239908,137.079346,I,Above,Gable,0,5701,,43.00774322,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 26316,NJBF000086637,295 ENGLISH CREEK RD,Port Republic,NJ,39.5163495,-74.5047015,RES1,3001,,17,NE,1960,1960,3102,1,1,1218.163469,1218.163469,3507,NO,16.87,30.65,1,2.13,6112,111.897212,121.207735,130.79126,136.56094,I,Above,Flat,0,5701,,23.75808537,0,0,,,,1,1,,0.35,nav,1,1960,1,, 26317,NJBF000088069,780 CHESTNUT NECK RD,Port Republic,NJ,39.54803791,-74.46150522,COM4,3002,,14,ME,1956,1956,3401,1,1,554.2705389,554.2705389,3507,NO,11.6,21,1,-0.66,6102,112.467603,121.577652,131.168241,136.954051,I,Above,Flat,0,5701,,16.30057946,0,0,,,,1,1,,0.03,nav,1,1956,1,, 26318,NJBF000086830,56 MILL ST,Port Republic,NJ,39.5193245,-74.496793,RES1,3001,,17,NE,1830,1830,3102,2,1,670.492729,670.492729,3505,NO,36.22,42.52,3,4.64,6112,112.019298,121.307648,130.89566,136.675068,I,Above,Gable,0,5701,,39.36951656,0,1.2,,,,1,1,,0.35,nav,1,1830,2,, 26319,NJBF000086806,101 MAIN ST,Port Republic,NJ,39.51896449,-74.49071259,RES1,3001,,17,NE,1982,1982,3102,1,1,1873.721819,1873.721819,3505,NO,15.15,24.8,3,-1.44,6112,112.126535,121.415772,131.007798,136.803449,I,Above,Gable,0,5701,,19.97361299,0,0,,,,1,1,,0.35,nav,1,1982,1,, 26320,NJBF000086734,30 ST JOHNS LANE,Port Republic,NJ,39.51815122,-74.48273311,RES1,3001,,17,NE,1975,1975,3102,1,1,692.1815387,692.1815387,3505,NO,19.21,32.64,3,4.49,6106,112.270323,121.563126,131.16112,136.97679,I,Above,Gable,0,5701,,25.92459808,0,0,,,,1,1,,0.03,nav,1,1975,1,, 26321,NJBF000087209,201 COUNTRY LANE,Port Republic,NJ,39.52703631,-74.49147728,RES1,3001,,17,NE,2002,2002,3102,2,1,2165.210605,2165.210605,3505,NO,39.2,54,3,6.74,6112,112.072143,121.308964,130.898151,136.664422,I,Above,Gable,0,5701,,46.59980036,0,1.2,,,,1,1,,0.35,nav,1,2002,2,, 26322,NJBF000087229,201 COUNTRY LANE,Port Republic,NJ,39.52741551,-74.49159235,RES1,3001,,17,NE,2002,2002,3102,2,1,2559.49408,2559.49408,3505,NO,27.91,36.87,3,-0.56,6112,112.068236,121.302554,130.891578,136.656265,I,Above,Hip,0,5701,,32.38539328,0,1.2,,,,1,1,,0.35,nav,1,2002,2,, 26323,NJBF000086784,237 MAIN ST,Port Republic,NJ,39.51868237,-74.50106898,RES1,3001,,17,NE,1975,1975,3102,1,1,3787.080637,3787.080637,3507,NO,20.07,30.1,1,2.31,6112,111.948685,121.242464,130.82798,136.598471,I,Above,Gable,0,5701,,25.08520043,0,0,,,,1,1,,0.35,nav,1,1975,1,, 26324,NJBF000086737,1 OLD NEW YORK RD,Port Republic,NJ,39.51819691,-74.48549977,RES1,3001,,17,NE,1970,1970,3102,2,1,2299.873291,2299.873291,3505,NO,29.98,43.16,3,7.32,6106,112.22154,121.514562,131.110502,136.920329,I,Above,Gable,0,5701,,36.57039481,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 26325,NJBF000086754,111 MAIN ST (R),Port Republic,NJ,39.5183305,-74.490791,RES1,3001,,17,NE,1900,1900,3102,2,1,1055.39012,1055.39012,3505,NO,32.19,45.69,3,3.26,6110,112.128419,121.421737,131.013908,136.811567,I,Above,Gable,0,5701,,38.9425315,0,0,,,,1,1,,0.35,nav,1,1900,2,, 26326,NJBF000086763,233 MAIN ST,Port Republic,NJ,39.51844862,-74.50037241,RES1,3001,,17,NE,1960,1960,3102,2,1,1174.299991,1174.299991,3507,NO,38.94,46.45,1,0.99,6112,111.961808,121.256924,130.842889,136.616154,I,Above,Gable,0,5701,,42.69355062,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 26327,NJBF000087348,297 OLD NEW YORK RD,Port Republic,NJ,39.53185863,-74.48819228,RES1,3001,,17,NE,1988,1988,3101,2,1,2641.970271,2641.970271,3507,NO,40.69,47.38,1,2.93,6110,112.103471,121.308462,130.897757,136.657177,I,Above,Gable,0,5701,,44.03292301,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 26328,NJBF000087044,153 OLD NEW YORK RD,Port Republic,NJ,39.524385,-74.4857175,RES1,3001,,17,NE,1970,1970,3102,2,1,1402.4354,1402.4354,3505,NO,37.76,48.47,3,0.7,6112,112.185118,121.438886,131.032192,136.821595,I,Above,Gable,0,5701,,43.11708845,0,0,,,,1,1,,0.35,nav,1,1970,2,, 26329,NJBF000086645,321 ENGLISH CREEK RD,Port Republic,NJ,39.51660045,-74.50687589,RES1,3001,,17,NE,1968,1968,3102,2,1,5747.73358,5747.73358,3507,NO,26.53,38.65,1,0.96,6112,111.858674,121.16832,130.75053,136.513074,I,Above,Gable,0,5701,,32.58977093,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, 26330,NJBF000086880,34 OLD NEW YORK RD,Port Republic,NJ,39.52006627,-74.48528284,RES1,3001,,17,NE,1925,1925,3102,2,1,2258.513154,2258.513154,3505,NO,20.53,35.02,3,-2.3,6112,112.215466,121.496684,131.09201,136.896234,I,Above,Gable,0,5701,,27.77415274,0,0,,,,1,1,,0.35,nav,1,1925,2,, 26331,NJBF000086758,14 ST JOHNS LANE,Port Republic,NJ,39.51837178,-74.4837256,RES1,3001,,17,NE,1963,1963,3102,1,1,2723.329358,2723.329358,3505,NO,17.11,28.51,3,3.48,6106,112.25171,121.543309,131.140468,136.953422,I,Above,Gable,0,5701,,22.81236726,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 26332,NJBF000087430,350 CHESTNUT NECK RD,Port Republic,NJ,39.53349475,-74.4893845,RES1,3001,,NaN,NE,1969,0,3101,1,1,3523.352071,3523.352071,3507,NO,11.43,26.31,1,-0.92,6112,112.074694,121.268694,130.856962,136.607875,I,Above,Gable,0,5701,,18.86919975,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26333,NJBF000087092,157 OLD NEW YORK RD,Port Republic,NJ,39.524988,-74.4857325,RES1,3001,,17,NE,1875,1875,3102,2,1,1291.882563,1291.882563,3505,NO,33.23,41.33,3,8.58,6110,112.181699,121.431594,131.024655,136.81211,I,Above,Flat,0,5701,,37.28087789,0,1.2,,,,1,1,,0.35,nav,1,1875,2,, 26334,NJBF000087081,157 OLD NEW YORK RD,Port Republic,NJ,39.52489221,-74.48529889,RES1,3001,,17,NE,1875,1875,3102,2,1,1639.635621,1639.635621,3505,NO,31.83,38.57,3,5.7,6106,112.1897,121.440194,131.033552,136.822336,I,Above,Gable,0,5701,,35.19928199,0,1.2,,,,1,1,,0.03,nav,1,1875,2,, 26335,NJBF000086773,169 MAIN ST,Port Republic,NJ,39.51852591,-74.49680859,RES1,3001,,17,NE,1890,1890,3102,2,1,1536.216552,1536.216552,3505,NO,45.39,55.77,3,6.42,6112,112.022956,121.316543,130.904704,136.687009,I,Above,Hip,0,5701,,50.57953885,0,0,,,,1,1,,0.35,nav,1,1890,2,, 26336,NJBF000086747,6 ST JOHNS LANE,Port Republic,NJ,39.51828161,-74.48450476,RES1,3001,,17,NE,1972,1972,3102,1,1,3164.773549,3164.773549,3505,NO,24.86,31.87,3,5.44,6106,112.238527,121.530828,131.127456,136.939091,I,Above,Gable,0,5701,,28.36151751,0,1.2,,,,1,1,,0.03,nav,1,1972,1,, 26337,NJBF000086756,6 ST JOHNS LANE,Port Republic,NJ,39.51836028,-74.48401293,RES1,3001,,17,NE,1972,1972,3102,1,1,723.7311113,723.7311113,3505,NO,26.45,35.13,3,7.95,6106,112.24674,121.538464,131.135418,136.94782,I,Above,Gable,0,5701,,30.79091243,0,1.2,,,,1,1,,0.03,nav,1,1972,1,, 26338,NJBF000087173,42 ADAMS AVE,Port Republic,NJ,39.526425,-74.488738,RES1,3001,,17,NE,1980,1980,3102,2,1,1556.60216,1556.60216,3505,NO,28.23,38.04,3,2.96,6112,112.122321,121.363029,130.953854,136.729289,I,Above,Gable,0,5701,,33.13311337,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 26339,NJBF000087214,42 ADAMS AVE,Port Republic,NJ,39.52712067,-74.48883913,RES1,3001,,17,NE,1980,1980,3102,2,1,524.0777155,524.0777155,3505,NO,21.74,35.52,3,-1.83,6106,112.116981,121.353145,130.943686,136.716594,I,Above,Gable,0,5701,,28.62981582,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 26340,NJBF000088160,790 CHESTNUT NECK RD,Port Republic,NJ,39.54803791,-74.46150522,COM4,3002,,NaN,ME,1956,0,3401,1,1,578.397988,578.397988,3507,NO,18.05,27.27,1,0.95,6102,112.467603,121.577652,131.168241,136.954051,I,Above,Flat,0,5701,,22.66011897,0,0,,,,1,1,,0.03,nav,1,1956,1,, 26341,NJBF000086832,143 MAIN ST,Port Republic,NJ,39.51941222,-74.49381571,RES1,3001,,NaN,NE,1969,0,3102,2,1,556.5598463,556.5598463,3505,NO,31.83,38.66,3,8.05,6110,112.070378,121.357429,130.947294,136.733911,I,Above,Gable,0,5701,,35.24675884,0,0,,,,1,1,,1,nav,1,1969,2,, 26342,NJBF000086791,143 MAIN ST,Port Republic,NJ,39.51880764,-74.49480698,RES1,3001,,NaN,NE,1969,0,3102,2,1,750.5448564,750.5448564,3505,NO,36.59,50.97,3,8.99,6106,112.056225,121.347443,130.93682,136.723142,I,Above,Flat,0,5701,,43.77829153,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26343,NJBF000087222,,Port Republic,NJ,39.52725685,-74.49263164,RES1,3001,,NaN,NE,1969,0,3102,2,1,2763.6155,2763.6155,3505,NO,23.97,29.79,3,-0.01,6112,112.05124,121.286661,130.875203,136.637613,I,Above,Gable,0,5701,,26.8781364,0,0,,,,1,1,,0.35,nav,1,1969,2,, 26344,NJBF000086908,160 POMONA AVE,Port Republic,NJ,39.52103772,-74.49685029,RES1,3001,,17,NE,1988,1988,3102,2,1,2290.272178,2290.272178,3505,NO,31.5,44.17,3,-2.93,6112,112.00988,121.286979,130.874624,136.647615,I,Above,Gable,0,5701,,37.83588332,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 26345,NJBF000087954,17 RIVER RD,Port Republic,NJ,39.54646184,-74.45992643,RES1,3001,,16,NE,1975,1975,3102,1,1,806.9372255,806.9372255,3507,NO,18.04,30.88,1,0.52,6106,112.504021,121.625333,131.217801,137.010163,I,Above,Flat,0,5701,,24.46107425,0,0,,,,1,1,,0.03,nav,1,1975,1,, 26346,NJBF000087354,292 OLD NEW YORK RD,Port Republic,NJ,39.53200556,-74.48616309,RES1,3001,,17,NE,1900,1900,3101,2,1,1751.495089,1751.495089,3507,NO,37.02,45.56,1,2.45,6112,112.137339,121.341545,130.931708,136.696133,I,Above,Flat,0,5701,,41.29056611,0,0,,,,1,1,,0.35,nav,1,1900,2,, 26347,NJBF000087930,747 OLD NEW YORK RD,Port Republic,NJ,39.54607891,-74.46216197,RES1,3001,,17,NE,1975,1975,3102,2,1,2861.898477,2861.898477,3507,NO,36.07,49.87,1,1.71,6106,112.468141,121.5903,131.182232,136.970341,I,Above,Gable,0,5701,,42.97275557,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 26348,NJBF000087920,747 OLD NEW YORK RD,Port Republic,NJ,39.545993,-74.462015,RES1,3001,,17,NE,1975,1975,3102,2,1,529.1335086,529.1335086,3507,NO,38.8,44.97,1,2.11,6106,112.471164,121.593976,131.186033,136.974643,I,Above,Flat,0,5701,,41.88232084,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 26349,NJBF000086721,4 OLD NEW YORK RD,Port Republic,NJ,39.51792234,-74.48459972,RES1,3001,,17,NE,1792,1792,3102,2,1,2924.885902,2924.885902,3505,NO,34.07,39.44,3,1.43,6106,112.238772,121.533342,131.130055,136.942656,I,Above,Gable,0,5701,,36.75556209,0,0,,,,1,1,,0.03,nav,1,1792,2,, 26350,NJBF000086729,4 OLD NEW YORK RD,Port Republic,NJ,39.518059,-74.4841615,RES1,3001,,17,NE,1792,1792,3102,2,1,1331.976874,1331.976874,3505,NO,38.39,53.3,3,3.32,6106,112.245746,121.539377,131.136354,136.949417,I,Above,Gable,0,5701,,45.84679055,0,0,,,,1,1,,0.03,nav,1,1792,2,, 26351,NJBF000087323,280 OLD NEW YORK RD,Port Republic,NJ,39.530807,-74.4855925,RES1,3001,,17,NE,1977,1977,3101,2,1,533.756507,533.756507,3507,NO,35.42,49.7,1,2.08,6106,112.153429,121.365562,130.956446,136.726064,I,Above,Gable,0,5701,,42.55862553,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 26352,NJBF000086775,109 MAIN ST,Port Republic,NJ,39.51853738,-74.49106084,RES1,3001,,17,NE,1850,1850,3102,2,1,1191.052981,1191.052981,3505,NO,28.77,37.78,3,-2.24,6110,112.12266,121.414715,131.006638,136.802952,I,Above,Gable,0,5701,,33.27066823,0,0,,,,1,1,,0.35,nav,1,1850,2,, 26353,NJBF000086823,109 MAIN ST,Port Republic,NJ,39.51919982,-74.49123808,RES1,3001,,17,NE,1850,1850,3102,2,1,909.4271245,909.4271245,3505,NO,31.45,42.13,3,5.33,6112,112.116199,121.404035,130.995638,136.789238,I,Above,Flat,0,5701,,36.79077612,0,0,,,,1,1,,0.35,nav,1,1850,2,, 26354,NJBF000086696,,Port Republic,NJ,39.5176165,-74.50032598,RES1,3001,,NaN,NE,1969,0,3102,2,1,1877.458105,1877.458105,3507,NO,27.29,41.11,1,0.49,6106,111.966604,121.267208,130.853312,136.62988,I,Above,Flat,0,5701,,34.2013147,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26355,NJBF000088315,838 CHESTNUT NECK RD,Port Republic,NJ,39.54803791,-74.46150522,COM4,3002,,NaN,ME,1956,0,3401,1,1,528.1563887,528.1563887,3507,NO,14.2,21.22,1,1.43,6102,112.467603,121.577652,131.168241,136.954051,I,Above,Flat,0,5701,,17.71108713,0,0,,,,1,1,,0.03,nav,1,1956,1,, 26356,NJBF000087511,30 WILSON AVE,Port Republic,NJ,39.535307,-74.46362,IND3,3002,,NaN,E,1969,0,3401,3,1,793.1973363,793.1973363,3507,NO,35.65,44.52,1,0.19,6106,112.50713,121.696246,131.296068,137.103445,I,Above,Hip,0,NaN,,40.08603072,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26357,NJBF000087457,1 NEW YORK RD,Port Republic,NJ,39.53410199,-74.4655304,IND3,3002,,NaN,E,1969,0,3401,1,1,2193.711113,2193.711113,3507,NO,15.42,29.56,1,1.14,6106,112.481094,121.676865,131.276527,137.082893,I,Above,Gable,0,5701,,22.48612828,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 26358,NJBF000087233,233 OLD NEW YORK RD,Port Republic,NJ,39.5274695,-74.486623,RES1,3001,,17,NE,1985,1985,3102,1,1,835.1029926,835.1029926,3505,NO,20.74,28.14,3,4.06,6112,112.153277,121.387141,130.97875,136.756164,I,Above,Flat,0,5701,,24.44286314,0,1.1,,,,1,1,,0.15,nav,1,1985,1,, 26359,NJBF000087680,505 CHESTNUT NECK RD,Port Republic,NJ,39.53954554,-74.47923223,RES1,3001,,17,NE,1980,1980,3102,2,1,2326.404284,2326.404284,3507,NO,28.4,35.74,1,-0.29,6110,112.214905,121.370898,130.960706,136.721801,I,Above,Flat,0,5701,,32.06929014,0,1.2,,,,1,1,,0.35,nav,1,1980,2,, 26360,NJBF000087602,462 CHESTNUT NECK RD,Port Republic,NJ,39.53743143,-74.4822772,RES1,3001,,17,NE,1980,1980,3102,2,1,2529.077828,2529.077828,3507,NO,37.63,45.03,1,0.03,6110,112.174665,121.343749,130.933381,136.692142,I,Above,Gable,0,5701,,41.33049159,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 26361,NJBF000087974,754 OLD NEW YORK RD,Port Republic,NJ,39.54676904,-74.46131228,RES1,3001,,17,NE,1940,1940,3102,2,1,1169.275055,1169.275055,3507,NO,21.34,32.31,1,-0.16,6106,112.478509,121.59685,131.18854,136.97723,I,Above,Gable,0,5701,,26.82234981,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 26362,NJBF000086777,44 ST JOHNS LANE,Port Republic,NJ,39.518553,-74.481103,RES1,3001,,17,NE,1750,1750,3102,3,1,1440.469992,1440.469992,3505,NO,46.15,56.4,3,7.46,6112,112.296799,121.586855,131.185875,137.003517,I,Above,Hip,0,5701,,51.27648029,0,1.1,,,,1,1,,0.35,nav,1,1750,3,, 26363,NJBF000086790,44 ST JOHNS LANE,Port Republic,NJ,39.518795,-74.4809375,RES1,3001,,17,NE,1750,1750,3102,3,1,952.8382582,952.8382582,3505,NO,52.75,58.14,3,4.35,6112,112.298406,121.586942,131.185967,137.003187,I,Above,Gable,0,5701,,55.44524596,0,1.1,,,,1,1,,0.35,nav,1,1750,3,, 26364,NJBF000086811,44 ST JOHNS LANE,Port Republic,NJ,39.51908171,-74.48245178,RES1,3001,,17,NE,1750,1750,3102,3,1,3129.386152,3129.386152,3505,NO,53.9,61.89,3,8.63,6112,112.270257,121.557227,131.154996,136.968301,I,Above,Gable,0,5701,,57.89865017,0,1.1,,,,1,1,,0.35,nav,1,1750,3,, 26365,NJBF000086202,298 RIVERSIDE DR,Port Republic,NJ,39.51178525,-74.50239649,RES1,3001,,17,NE,1986,1986,3102,2,1,2218.70117,2218.70117,3507,NO,23.33,35.38,1,1.38,6106,111.958596,121.298321,130.883768,136.67778,I,Above,Gable,0,5701,,29.3556914,0,0,,,,1,1,,0.03,nav,1,1986,2,, 26366,NJBF000087533,26 NEW YORK RD,Port Republic,NJ,39.53580952,-74.46514538,IND3,3002,,17,E,1975,1975,3401,1,1,1308.314674,1308.314674,3507,NO,18.07,27.12,1,2.08,6112,112.477738,121.663063,131.261646,137.06493,I,Above,Gable,0,5701,,22.59138609,0,0,,,,1,1,,0.35,nav,1,1975,1,, 26367,NJBF000087575,444 CHESTNUT NECK RD,Port Republic,NJ,39.53666772,-74.48360803,RES1,3001,,17,NE,1985,1985,3102,2,1,2289.618059,2289.618059,3507,NO,38.42,51.73,1,-0.27,6112,112.15614,121.329961,130.919398,136.676731,I,Above,Gable,0,5701,,45.07403828,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 26368,NJBF000087955,751 OLD NEW YORK RD,Port Republic,NJ,39.54647589,-74.4627376,RES1,3001,,17,NE,1993,1993,3102,2,1,3098.644613,3098.644613,3507,NO,30.59,42.84,1,1.17,6106,112.455946,121.575158,131.166562,136.952568,I,Above,Gable,0,5701,,36.71728951,0,1.2,,,,1,1,,0.03,nav,1,1993,2,, 26369,NJBF000086553,102 RIVERSIDE DR,Port Republic,NJ,39.51495467,-74.49278357,RES1,3001,,17,NE,1992,1992,3102,2,1,2209.470282,2209.470282,3507,NO,39.36,53.93,1,1.52,6106,112.110786,121.426232,131.018001,136.822981,I,Above,Gable,0,5701,,46.64533782,0,0,,,,1,1,,0.03,nav,1,1992,2,, 26370,NJBF000086652,345 UPPER POMONA AVE,Port Republic,NJ,39.516832,-74.5088875,RES1,3001,,17,NE,1987,1987,3102,2,1,1600.990357,1600.990357,3507,NO,28.35,42.61,1,-0.66,6106,111.823147,121.13198,130.713025,136.468776,I,Above,Flat,0,5701,,35.4795531,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 26371,NJBF000086724,5 MILL ST,Port Republic,NJ,39.51793729,-74.4973914,RES1,3001,,17,NE,1754,1754,3102,2,1,1050.565772,1050.565772,3505,NO,33,42.54,3,7.74,6112,112.015779,121.313386,130.901291,136.684288,I,Above,Gable,0,5701,,37.76777284,0,0,,,,1,1,,0.35,nav,1,1754,2,, 26372,NJBF000086844,17 MAIN ST,Port Republic,NJ,39.51954328,-74.48695388,RES1,3001,,17,NE,1830,1830,3102,2,1,1255.711402,1255.711402,3505,NO,36.08,43.92,3,-0.06,6112,112.189045,121.473844,131.068224,136.870486,I,Above,Hip,0,5701,,39.99645912,0,1.2,,,,1,1,,0.35,nav,1,1830,2,, 26373,NJBF000087142,18 ADAMS AVE,Port Republic,NJ,39.52574,-74.486357,RES1,3001,,17,NE,2001,2001,3102,1,1,616.8097898,616.8097898,3505,NO,19.62,29.45,3,4.07,6112,112.166939,121.412011,131.004416,136.78798,I,Above,Flat,0,5701,,24.53436546,0,1.2,,,,1,1,,0.15,nav,1,2001,1,, 26374,NJBF000087333,291 OLD NEW YORK RD,Port Republic,NJ,39.53122027,-74.48748749,RES1,3001,,17,NE,1970,1970,3101,1,1,3319.154706,3319.154706,3507,NO,13.79,25.43,1,0.82,6106,112.118837,121.328107,130.917939,136.681279,I,Above,Gable,0,5701,,19.60995832,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 26375,NJBF000087336,291 OLD NEW YORK RD,Port Republic,NJ,39.53142525,-74.48718954,RES1,3001,,17,NE,1970,1970,3101,1,1,612.8044652,612.8044652,3507,NO,12.91,21.87,1,1.53,6110,112.12284,121.33078,130.920679,136.684171,I,Above,Gable,0,5701,,17.39118862,0,1.2,,,,1,1,,0.35,nav,1,1970,1,, 26376,NJBF000087700,631 CHESTNUT NECK RD,Port Republic,NJ,39.54021162,-74.46915701,RES1,3001,73,NaN,NE,1969,0,3102,2,1,699.8271021,699.8271021,3507,NO,28.8,36.57,1,2.5,6110,112.38302,121.538706,131.132155,136.916779,I,Above,Hip,0,5701,,32.68759076,0,0,,,,1,1,,1,nav,1,1969,2,, 26377,NJBF000087745,631 CHESTNUT NECK RD,Port Republic,NJ,39.54183806,-74.46871481,RES1,3001,73,NaN,NE,1969,0,3102,2,1,797.5439429,797.5439429,3507,NO,28.37,40.9,1,0.91,6110,112.381185,121.526638,131.119166,136.901091,I,Above,Gable,0,5701,,34.6357054,0,0,,,,1,1,,1,nav,1,1969,2,, 26378,NJBF000087755,631 CHESTNUT NECK RD,Port Republic,NJ,39.5420195,-74.4687295,RES1,3001,73,NaN,NE,1969,0,3102,2,1,605.3702315,605.3702315,3507,NO,33.82,43.84,1,0.24,6110,112.379892,121.524166,131.116564,136.898041,I,Above,Hip,0,5701,,38.83059231,0,0,,,,1,1,,1,nav,1,1969,2,, 26379,NJBF000087768,631 CHESTNUT NECK RD,Port Republic,NJ,39.54230887,-74.46863464,RES1,3001,73,NaN,NE,1969,0,3102,2,1,582.7308679,582.7308679,3507,NO,34,41.93,1,-0.18,6106,112.379825,121.522284,131.114521,136.895566,I,Above,Flat,0,5701,,37.96675503,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26380,NJBF000087781,631 CHESTNUT NECK RD,Port Republic,NJ,39.54255963,-74.4685859,RES1,3001,73,NaN,NE,1969,0,3102,2,1,501.9355205,501.9355205,3507,NO,25.28,33.06,1,1.14,6106,112.379208,121.520074,131.112158,136.892751,I,Above,Flat,0,5701,,29.16704639,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26381,NJBF000087199,219 OLD NEW YORK RD,Port Republic,NJ,39.52685997,-74.48689652,RES1,3001,,17,NE,2000,2000,3102,2,1,545.808066,545.808066,3505,NO,27.81,37.73,3,-1.9,6106,112.151754,121.389583,130.981267,136.759934,I,Above,Gable,0,5701,,32.76859525,0,0,,,,1,1,,0.03,nav,1,2000,2,, 26382,NJBF000087545,12 WILSON AVE,Port Republic,NJ,39.53607688,-74.46237926,IND3,3002,,17,E,1990,1990,3401,2,1,1721.502536,1721.502536,3507,NO,32.77,39.82,1,1.85,6106,112.52408,121.709016,131.308922,137.117012,I,Above,Gable,0,5701,,36.29581307,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 26383,NJBF000087553,12 WILSON AVE,Port Republic,NJ,39.5361645,-74.4625515,IND3,3002,,17,E,1990,1990,3401,2,1,649.6921098,649.6921098,3507,NO,24.98,30.56,1,2.01,6106,112.520563,121.704878,131.304616,137.112193,I,Above,Gable,0,5701,,27.77184235,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 26384,NJBF000087956,755 OLD NEW YORK RD,Port Republic,NJ,39.54650607,-74.46348844,RES1,3001,,17,NE,1930,1930,3102,2,1,2240.768498,2240.768498,3507,NO,26.36,39.87,1,0.31,6106,112.442986,121.56149,131.1526,136.936805,I,Above,Hip,0,5701,,33.11475827,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 26385,NJBF000087483,8 BOAT AVE,Port Republic,NJ,39.53478398,-74.46409094,IND3,3002,,17,E,1960,1960,3401,3,1,976.8097174,976.8097174,3507,NO,52.47,58.22,1,1.69,6106,112.502052,121.694194,131.294158,137.101778,I,Above,Gable,0,5701,,55.34628841,0,1.1,,,,1,1,,0.03,nav,1,1960,3,, 26386,NJBF000086750,2 MILL ST (R),Port Republic,NJ,39.51830163,-74.49578738,RES1,3001,,17,NE,1977,1977,3102,2,1,2232.886112,2232.886112,3505,NO,28.2,41.68,3,3.15,6106,112.041758,121.336528,130.925389,136.711099,I,Above,Gable,0,5701,,34.93925326,0,0,,,,1,1,,0.03,nav,1,1977,2,, 26387,NJBF000086587,342 ENGLISH CREEK RD,Port Republic,NJ,39.51539268,-74.50860713,RES1,3001,,16,NE,1950,1950,3102,2,1,1062.875194,1062.875194,3507,NO,35.53,43.5,1,2.25,6106,111.834497,121.152949,130.734132,136.496687,I,Above,Gable,0,5701,,39.5170367,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 26388,NJBF000086598,342 ENGLISH CREEK RD,Port Republic,NJ,39.51556021,-74.50866435,RES1,3001,,16,NE,1950,1950,3102,2,1,1514.350804,1514.350804,3507,NO,30.05,43.23,1,0.38,6106,111.832761,121.150109,130.73126,136.492955,I,Above,Gable,0,5701,,36.64327205,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 26389,NJBF000086610,342 ENGLISH CREEK RD,Port Republic,NJ,39.51570829,-74.5084358,RES1,3001,,16,NE,1950,1950,3102,2,1,4991.729394,4991.729394,3507,NO,30.73,35.75,1,-0.7,6106,111.835998,121.152256,130.733545,136.495282,I,Above,Gable,0,5701,,33.24255394,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 26390,NJBF000086848,28 OLD NEW YORK RD,Port Republic,NJ,39.51962295,-74.48490973,RES1,3001,,17,NE,1853,1853,3102,2,1,538.6738527,538.6738527,3505,NO,31.01,45.27,3,5.31,6112,112.224327,121.50828,131.10405,136.910508,I,Above,Gable,0,5701,,38.13997363,0,0,,,,1,1,,0.15,nav,1,1853,2,, 26391,NJBF000086730,11 MILL ST,Port Republic,NJ,39.518074,-74.4980375,RES1,3001,,17,NE,1860,1860,3102,2,1,1141.290012,1141.290012,3505,NO,31.85,40.89,3,7.04,6112,112.003933,121.30083,130.8883,136.669128,I,Above,Flat,0,5701,,36.37362609,0,1.1,,,,1,1,,0.35,nav,1,1860,2,, 26392,NJBF000086735,11 MILL ST,Port Republic,NJ,39.51818638,-74.49728603,RES1,3001,,17,NE,1860,1860,3102,2,1,1291.597963,1291.597963,3505,NO,32.72,41.01,3,2.66,6112,112.016374,121.312321,130.900246,136.682587,I,Above,Gable,0,5701,,36.86928951,0,1.1,,,,1,1,,0.35,nav,1,1860,2,, 26393,NJBF000086577,43 RIVERSIDE DR,Port Republic,NJ,39.51525096,-74.4881782,RES1,3001,,17,NE,2013,2013,3102,2,1,3080.495286,3080.495286,3507,NO,38.27,52.94,1,0.04,6106,112.19,121.502156,131.097258,136.911269,I,Above,Gable,0,5701,,45.60435329,0,1.2,,,,1,1,,0.03,nav,1,2013,2,, 26394,NJBF000087318,295 OLD NEW YORK RD,Port Republic,NJ,39.53070986,-74.48700201,RES1,3001,,17,NE,1997,1997,3101,1,1,4890.411102,4890.411102,3507,NO,17.24,28.43,1,1.35,6106,112.129797,121.34246,130.9327,136.698931,I,Above,Hip,0,5701,,22.83848663,0,1.2,,,,1,1,,0.03,nav,1,1997,1,, 26395,NJBF000087075,158 OLD NEW YORK RD,Port Republic,NJ,39.52478806,-74.48480802,RES1,3001,,17,NE,1900,1900,3102,2,1,1627.731631,1627.731631,3505,NO,42.12,55.88,3,7.75,6106,112.198755,121.449896,131.043593,136.833855,I,Above,Flat,0,5701,,48.9981087,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 26396,NJBF000086656,277 MAIN ST,Port Republic,NJ,39.51697622,-74.50182807,RES1,3001,,17,NE,1960,1960,3102,1,1,1620.700703,1620.700703,3507,NO,11.5,23.12,1,0.76,6106,111.943756,121.249092,130.834339,136.609375,I,Above,Flat,0,5701,,17.31404516,0,0,,,,1,1,,0.03,nav,1,1960,1,, 26397,NJBF000086856,23 MAIN ST,Port Republic,NJ,39.51966521,-74.48764473,RES1,3001,,17,NE,1885,1885,3102,2,1,1242.55965,1242.55965,3505,NO,26.61,32.85,3,3.68,6112,112.176356,121.460502,131.054364,136.854678,I,Above,Hip,0,5701,,29.73268849,0,0,,,,1,1,,0.35,nav,1,1885,2,, 26398,NJBF000087170,216 OLD NEW YORK RD,Port Republic,NJ,39.52633225,-74.48485766,RES1,3001,,17,NE,1850,1850,3102,2,1,1999.633397,1999.633397,3505,NO,28.84,42.17,3,0.46,6106,112.189714,121.430939,131.023977,136.80929,I,Above,Gable,0,5701,,35.50824907,0,0,,,,1,1,,0.03,nav,1,1850,2,, 26399,NJBF000087929,27 RIVER RD,Port Republic,NJ,39.54607697,-74.45898839,RES1,3001,,16,NE,2014,2014,3102,2,1,2342.825646,2342.825646,3507,NO,31.08,41.16,1,2.23,6102,112.522389,121.646843,131.240008,137.035121,I,Above,Flat,0,5701,,36.12317166,0,0,,,,1,1,,0.03,nav,1,2014,2,, 26400,NJBF000086666,279 MAIN ST,Port Republic,NJ,39.517167,-74.502708,RES1,3001,,17,NE,1984,1984,3102,2,1,1900.385876,1900.385876,3507,NO,24.48,36.96,1,2.78,6112,111.927679,121.232047,130.816731,136.588641,I,Above,Gable,0,5701,,30.72431456,0,1.2,,,,1,1,,0.35,nav,1,1984,2,, 26401,NJBF000086543,200 RIVERSIDE DR,Port Republic,NJ,39.51476028,-74.49735186,RES1,3001,,17,NE,1980,1980,3102,2,1,2821.135807,2821.135807,3507,NO,32.56,42.87,1,1.25,6106,112.032042,121.350325,130.938875,136.733837,I,Above,Gable,0,5701,,37.71836169,0,0,,,,1,1,,0.03,nav,1,1980,2,, 26402,NJBF000087969,11 RIVER RD,Port Republic,NJ,39.54673119,-74.46053949,RES1,3001,,16,NE,1975,1975,3102,2,1,1553.222097,1553.222097,3507,NO,29.73,43.4,1,-0.61,6106,112.491929,121.611075,131.203084,136.993582,I,Above,Gable,0,5701,,36.56273975,0,0,,,,1,1,,0.03,nav,1,1975,2,, 26403,NJBF000086782,7 OLD NEW YORK RD,Port Republic,NJ,39.5186575,-74.485891,RES1,3001,,17,NE,1989,1989,3102,2,1,855.7460677,855.7460677,3505,NO,26.47,38.77,3,4.22,6106,112.212265,121.502462,131.097934,136.905422,I,Above,Gable,0,5701,,32.61714872,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 26404,NJBF000086779,7 OLD NEW YORK RD,Port Republic,NJ,39.5186151,-74.48564991,RES1,3001,,17,NE,1989,1989,3102,2,1,1907.025677,1907.025677,3505,NO,36.34,41.99,3,1.32,6110,112.216709,121.507132,131.102794,136.910937,I,Above,Gable,0,5701,,39.16366584,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 26405,NJBF000088054,OLD NEW YORK RD,Port Republic,NJ,39.5477845,-74.4646055,COM4,3002,510,NaN,ME,1969,0,3401,1,1,4037.688497,4037.688497,3507,NO,13.46,23.03,1,0.11,6106,112.416391,121.52586,131.115615,136.894568,I,Above,Flat,0,5701,,18.24831495,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26406,NJBF000087610,322 SOOYS LANDING RD,Port Republic,NJ,39.53761233,-74.496342,GOV1,3001,999,NaN,E,1969,0,3401,2,1,3248.27827,3248.27827,3507,NO,20.52,29.87,1,-0.77,6106,111.936468,121.101763,130.686707,136.402932,I,Above,Gable,0,NaN,,25.1969732,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26407,NJBF000087603,322 SOOYS LANDING RD,Port Republic,NJ,39.53744816,-74.49653759,GOV1,3001,999,NaN,E,1969,0,3401,1,1,1218.526785,1218.526785,3507,NO,15.29,29.45,1,-0.93,6106,111.934005,121.100407,130.685324,136.401467,I,Above,Gable,0,NaN,,22.36982721,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26408,NJBF000087606,322 SOOYS LANDING RD,Port Republic,NJ,39.53755245,-74.49487123,GOV1,3001,999,NaN,E,1969,0,3401,1,1,2325.032658,2325.032658,3507,NO,13.91,22.27,1,2.87,6112,111.961408,121.127297,130.712664,136.433828,I,Above,Gable,0,NaN,,18.08872632,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26409,NJBF000087579,322 SOOYS LANDING RD,Port Republic,NJ,39.536818,-74.4952515,GOV1,3001,999,NaN,E,1969,0,3401,3,1,509.479351,509.479351,3507,NO,43.07,48.15,1,2.18,6112,111.95872,121.129598,130.71499,136.437396,I,Above,Gable,0,NaN,,45.60885752,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26410,NJBF000087499,22-24 WILSON AVE,Port Republic,NJ,39.53504484,-74.4627915,IND3,3002,999,NaN,E,1969,0,3401,2,1,1570.849611,1570.849611,3507,NO,29.18,42.58,1,-0.87,6106,112.523072,121.714176,131.314682,137.124198,I,Above,Hip,0,5701,,35.87743845,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26411,NJBF000087021,145 OLD NEW YORK RD,Port Republic,NJ,39.52404831,-74.48542655,RES1,3001,,17,NE,1940,1940,3102,1,1,1537.600135,1537.600135,3505,NO,21.54,29.06,3,4.57,6110,112.191938,121.447849,131.041467,136.832622,I,Above,Gable,0,5701,,25.30122418,0,0,,,,1,1,,0.35,nav,1,1940,1,, 26412,NJBF000086733,10 MILL ST,Port Republic,NJ,39.51815111,-74.49672081,RES1,3001,,NaN,NE,1900,1900,3102,2,1,1822.374204,1822.374204,3505,NO,32.6,39.19,3,8.14,6110,112.026326,121.322341,130.910633,136.694543,I,Above,Gable,0,5701,,35.89765511,0,0,,,,1,1,,0.35,nav,1,1900,2,, 26413,NJBF000086732,10 MILL ST,Port Republic,NJ,39.5181495,-74.496278,RES1,3001,,NaN,NE,1983,1900,3102,2,1,1312.76264,1312.76264,3505,NO,36.92,47.38,3,0.81,6112,112.034008,121.329911,130.918489,136.703525,I,Above,Gable,0,5701,,42.14850226,0,0,,,,1,1,,0.35,nav,1,1983,2,, 26414,NJBF000087557,32 NEW YORK RD,Port Republic,NJ,39.5362602,-74.46508704,IND3,3002,,17,E,1975,1975,3401,1,1,1807.575206,1807.575206,3507,NO,13.27,23.58,1,-1,6112,112.476096,121.658644,131.256915,137.059315,I,Above,Gable,0,5701,,18.42611032,0,1.1,,,,1,1,,0.35,nav,1,1975,1,, 26415,NJBF000086435,224 RIVERSIDE DR,Port Republic,NJ,39.51381351,-74.49838874,RES1,3001,,16,NE,1862,1862,3102,2,1,1098.299779,1098.299779,3507,NO,21.54,36.36,1,-0.73,6106,112.01861,121.343416,130.931416,136.727434,I,Above,Gable,0,5701,,28.95259215,0,1.2,,,,1,1,,0.03,nav,1,1862,2,, 26416,NJBF000086438,224 RIVERSIDE DR,Port Republic,NJ,39.51382282,-74.49814108,RES1,3001,,16,NE,1862,1862,3102,2,1,1167.189802,1167.189802,3507,NO,28.15,42.8,1,0.05,6106,112.022886,121.347538,130.935712,136.732298,I,Above,Gable,0,5701,,35.47719331,0,1.2,,,,1,1,,0.03,nav,1,1862,2,, 26417,NJBF000087622,470 CHESTNUT NECK RD,Port Republic,NJ,39.5379964,-74.4816821,RES1,3001,,17,NE,1975,1975,3102,2,1,2347.758858,2347.758858,3507,NO,31.48,38.51,1,-0.4,6110,112.181725,121.347226,130.936839,136.695611,I,Above,Flat,0,5701,,34.99381697,0,1.2,,,,1,1,,0.35,nav,1,1975,2,, 26418,NJBF000086560,82 RIVERSIDE DR,Port Republic,NJ,39.51504905,-74.49151036,RES1,3001,,17,NE,1975,1975,3102,1,1,1826.760961,1826.760961,3507,NO,14.87,26.24,1,1.93,6106,112.132605,121.447042,131.039718,136.847223,I,Above,Gable,0,5701,,20.55421587,0,0,,,,1,1,,0.03,nav,1,1975,1,, 26419,NJBF000087351,299 OLD NEW YORK RD,Port Republic,NJ,39.53197722,-74.48726526,RES1,3001,,17,NE,1970,1970,3101,1,1,2519.150856,2519.150856,3507,NO,11.91,24.23,1,-0.04,6110,112.118672,121.322961,130.912633,136.674197,I,Above,Gable,0,5701,,18.068956,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26420,NJBF000088045,,Port Republic,NJ,39.54763197,-74.46234038,COM4,3002,,NaN,ME,1940,0,3401,2,1,1646.407216,1646.407216,3507,NO,29.84,39.58,1,0.17,6106,112.455822,121.567875,131.158504,136.943158,I,Above,Flat,0,5701,,34.7065761,0,0,,,,1,1,,0.03,nav,1,1940,2,, 26421,NJBF000087338,297 OLD NEW YORK RD,Port Republic,NJ,39.531487,-74.4876325,RES1,3001,,17,NE,1988,1988,3101,2,1,512.7940462,512.7940462,3507,NO,28.34,39.73,1,-0.87,6106,112.114949,121.322445,130.912119,136.674227,I,Above,Gable,0,5701,,34.03889163,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 26422,NJBF000086891,161 POMONA AVE,Port Republic,NJ,39.5203465,-74.4966945,RES1,3001,,17,NE,1950,1950,3102,2,1,639.4584496,639.4584496,3505,NO,41.83,47.49,3,5.7,6112,112.015955,121.297569,130.88544,136.661361,I,Above,Gable,0,5701,,44.65853348,0,0,,,,1,1,,0.35,nav,1,1950,2,, 26423,NJBF000086892,161 POMONA AVE,Port Republic,NJ,39.52039451,-74.49685343,RES1,3001,,17,NE,1950,1950,3102,2,1,1255.242213,1255.242213,3505,NO,38.17,51.1,3,8.43,6112,112.012994,121.294329,130.882096,136.657427,I,Above,Gable,0,5701,,44.63625289,0,0,,,,1,1,,0.35,nav,1,1950,2,, 26424,NJBF000086728,11 KNOWLES LANE,Port Republic,NJ,39.51805075,-74.489082,RES1,3001,,17,NE,1900,1900,3102,2,1,1277.208082,1277.208082,3505,NO,38.78,49.72,3,6.76,6110,112.159658,121.45436,131.047804,136.850317,I,Above,Flat,0,5701,,44.24727725,0,0,,,,1,1,,0.15,nav,1,1900,2,, 26425,NJBF000087540,33 WILSON AVE,Port Republic,NJ,39.53590436,-74.46420183,IND3,3002,,NaN,E,1969,0,3401,1,1,823.9071885,823.9071885,3507,NO,19.97,25.63,1,1.76,6110,112.493512,121.678671,131.277699,137.082642,I,Above,Gable,0,NaN,,22.79855462,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26426,NJBF000086672,281 ENGLISH CREEK RD,Port Republic,NJ,39.5172775,-74.5038875,RES1,3001,,17,NE,1949,1949,3102,1,1,851.554241,851.554241,3507,NO,15.27,27.34,1,1.19,6112,111.90685,121.210888,130.794848,136.563082,I,Above,Gable,0,5701,,21.30213259,0,1.2,,,,1,1,,0.35,nav,1,1949,1,, 26427,NJBF000086657,281 ENGLISH CREEK RD,Port Republic,NJ,39.5169821,-74.50334519,RES1,3001,,17,NE,1949,1949,3102,1,1,2486.094683,2486.094683,3507,NO,17.56,31.85,1,-0.59,6112,111.917583,121.2234,130.807711,136.578608,I,Above,Gable,0,5701,,24.7065083,0,1.2,,,,1,1,,0.03,nav,1,1949,1,, 26428,NJBF000087505,4 BOAT AVE,Port Republic,NJ,39.535206,-74.464241,IND3,3002,,16,E,1960,1960,3401,1,1,571.9394329,571.9394329,3507,NO,14.44,28.68,1,0.23,6106,112.496957,121.686425,131.285975,137.092376,I,Above,Hip,0,5701,,21.56024802,0,0,,,,1,1,,0.03,nav,1,1960,1,, 26429,NJBF000086726,51 MAIN ST,Port Republic,NJ,39.51795771,-74.49041551,RES1,3001,,17,NE,1980,1980,3102,2,1,3590.337724,3590.337724,3505,NO,35.83,43.08,3,1.33,6106,112.136859,121.432467,131.025013,136.824822,I,Above,Gable,0,5701,,39.4544861,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 26430,NJBF000086861,13 MAIN ST,Port Republic,NJ,39.5198,-74.486761,RES1,3001,,17,NE,1850,1850,3102,2,1,544.1235804,544.1235804,3505,NO,37.28,47.02,3,7.58,6112,112.191068,121.474203,131.068618,136.870462,I,Above,Gable,0,5701,,42.14712665,0,0,,,,1,1,,0.35,nav,1,1850,2,, 26431,NJBF000086429,211 RIVERSIDE DR,Port Republic,NJ,39.51375907,-74.49657244,RES1,3001,,17,NE,1990,1990,3102,2,1,3729.06678,3729.06678,3507,NO,39.95,48.81,1,1.98,6110,112.050566,121.375024,130.964338,136.764926,I,Above,Gable,0,5701,,44.3792944,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 26432,NJBF000087728,639 CHESTNUT NECK RD,Port Republic,NJ,39.5412335,-74.46837833,RES1,3001,,17,NE,1930,1930,3102,2,1,783.9341709,783.9341709,3507,NO,30.24,44.25,1,-0.4,6110,112.390451,121.539966,131.133048,136.917139,I,Above,Flat,0,5701,,37.24364811,0,0,,,,1,1,,0.03,nav,1,1930,2,, 26433,NJBF000087819,689 CHESTNUT NECK RD,Port Republic,NJ,39.543171,-74.4640715,RES1,3001,,16,NE,1940,1940,3102,1,1,557.7073637,557.7073637,3507,NO,15.12,24.6,1,0.24,6106,112.452794,121.592298,131.18576,136.975457,I,Above,Flat,0,5701,,19.85998139,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 26434,NJBF000087813,689 CHESTNUT NECK RD,Port Republic,NJ,39.54302874,-74.46436435,RES1,3001,,16,NE,1940,1940,3102,1,1,1413.205861,1413.205861,3507,NO,15.73,25.46,1,0.04,6106,112.448636,121.588869,131.182319,136.971659,I,Above,Gable,0,5701,,20.5956178,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 26435,NJBF000087818,689 CHESTNUT NECK RD,Port Republic,NJ,39.543168,-74.464634,RES1,3001,,16,NE,1940,1940,3102,1,1,631.8594933,631.8594933,3507,NO,18.61,30.63,1,-0.63,6106,112.443194,121.582379,131.175611,136.964052,I,Above,Gable,0,5701,,24.62352712,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 26436,NJBF000088296,828 CHESTNUT NECK RD,Port Republic,NJ,39.54803791,-74.46150522,COM4,3002,,NaN,ME,1956,0,3401,1,1,1111.466454,1111.466454,3507,NO,16.67,25.73,1,2.5,6102,112.467603,121.577652,131.168241,136.954051,I,Above,Flat,0,5701,,21.19849889,0,0,,,,1,1,,0.03,nav,1,1956,1,, 26437,NJBF000086736,11 MILL ST,Port Republic,NJ,39.5181945,-74.4975565,RES1,3001,,17,NE,1860,1860,3102,2,1,680.8830215,680.8830215,3505,NO,33.96,40.8,3,4.58,6112,112.011647,121.307618,130.89537,136.676987,I,Above,Gable,0,5701,,37.38079198,0,1.1,,,,1,1,,0.35,nav,1,1860,2,, 26438,NJBF000086759,15 MILL ST,Port Republic,NJ,39.51837641,-74.4973528,RES1,3001,,17,NE,1860,1860,3102,2,1,2083.076297,2083.076297,3505,NO,47.32,52.59,3,8.44,6112,112.014283,121.309004,130.89685,136.678316,I,Above,Gable,0,5701,,49.95322992,0,0,,,,1,1,,0.35,nav,1,1860,2,, 26439,NJBF000086571,57 RIVERSIDE DR,Port Republic,NJ,39.51518338,-74.48903558,RES1,3001,,NaN,NE,1969,0,3102,2,1,521.0320351,521.0320351,3507,NO,35.59,41.29,1,-0.96,6106,112.175288,121.488121,131.082599,136.895025,I,Above,Gable,0,5701,,38.4394925,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26440,NJBF000087623,540 CHESTNUT NECK RD,Port Republic,NJ,39.53799641,-74.47410975,RES1,3001,,17,NE,2017,2017,3102,2,1,1854.528165,1854.528165,3507,NO,26.57,36.69,1,1.75,6110,112.310849,121.478739,131.071439,136.849685,I,Above,Flat,0,5701,,31.63180403,0,1.2,,,,1,1,,0.15,nav,1,2017,2,, 26441,NJBF000086934,118 OLD NEW YORK RD,Port Republic,NJ,39.52206476,-74.48511926,RES1,3001,,17,NE,1955,1955,3102,1,1,2186.272009,2186.272009,3505,NO,15.67,23.63,3,4.79,6112,112.207761,121.476297,131.070913,136.869083,I,Above,Hip,0,5701,,19.64990393,0,0,,,,1,1,,0.35,nav,1,1955,1,, 26442,NJBF000086996,137 OLD NEW YORK RD,Port Republic,NJ,39.52354731,-74.48541955,RES1,3001,,17,NE,1940,1940,3102,1,1,1635.918595,1635.918595,3505,NO,22.38,31.64,3,5.71,6112,112.194703,121.453819,131.047642,136.840405,I,Above,Flat,0,5701,,27.00985034,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 26443,NJBF000086822,56 MILL ST,Port Republic,NJ,39.5191984,-74.49695683,RES1,3001,,17,NE,1830,1830,3102,2,1,2327.5782,2327.5782,3505,NO,28.14,33.5,3,6.4,6112,112.01709,121.306315,130.894251,136.673702,I,Above,Gable,0,5701,,30.81906781,0,1.2,,,,1,1,,0.35,nav,1,1830,2,, 26444,NJBF000086588,62 RIVERSIDE DR,Port Republic,NJ,39.51542317,-74.48975754,RES1,3001,,17,NE,1957,1957,3102,1,1,2336.851074,2336.851074,3507,NO,19.46,33.66,1,1.71,6106,112.161385,121.472918,131.066772,136.876815,I,Above,Gable,0,5701,,26.56406499,0,0,,,,1,1,,0.03,nav,1,1957,1,, 26445,NJBF000086745,30 ST JOHNS LANE,Port Republic,NJ,39.51827439,-74.48231031,RES1,3001,,17,NE,1975,1975,3102,1,1,1461.330346,1461.330346,3505,NO,21.36,35.62,3,5.32,6106,112.277093,121.569062,131.167314,136.983442,I,Above,Gable,0,5701,,28.49066085,0,0,,,,1,1,,0.03,nav,1,1975,1,, 26446,NJBF000087190,201 COUNTRY LANE,Port Republic,NJ,39.52674808,-74.49099325,RES1,3001,,17,NE,2002,2002,3102,2,1,3881.400705,3881.400705,3505,NO,29.45,42.89,3,3.94,6112,112.081912,121.320606,130.910126,136.678647,I,Above,Hip,0,5701,,36.16701718,0,1.2,,,,1,1,,0.35,nav,1,2002,2,, 26447,NJBF000087236,201 COUNTRY LANE,Port Republic,NJ,39.52759945,-74.49166076,RES1,3001,,17,NE,2002,2002,3102,2,1,1343.34676,1343.34676,3505,NO,31.32,44.96,3,6.26,6112,112.066123,121.299235,130.888173,136.65206,I,Above,Gable,0,5701,,38.14129114,0,1.2,,,,1,1,,0.35,nav,1,2002,2,, 26448,NJBF000086552,69 RIVERSIDE DR,Port Republic,NJ,39.51495041,-74.49024363,RES1,3001,,14,NE,1900,1900,3102,2,1,1582.949629,1582.949629,3507,NO,29.04,35.45,1,-0.31,6106,112.155296,121.469963,131.063613,136.874247,I,Above,Flat,0,5701,,32.24332145,0,0,,,,1,1,,0.03,nav,1,1900,2,, 26449,NJBF000087964,15 RIVER RD,Port Republic,NJ,39.54669856,-74.46018359,RES1,3001,,17,NE,1975,1975,3102,2,1,2019.534372,2019.534372,3507,NO,28.2,43.07,1,2.05,6102,112.498183,121.617794,131.209964,137.001311,I,Above,Flat,0,5701,,35.63616616,0,0,,,,1,1,,0.03,nav,1,1975,2,, 26450,NJBF000086526,216 RIVERSIDE DR,Port Republic,NJ,39.51457366,-74.49799617,RES1,3001,,17,NE,1977,1977,3102,2,1,2983.729817,2983.729817,3507,NO,24.47,36.87,1,3,6106,112.021743,121.341469,130.929605,136.723696,I,Above,Flat,0,5701,,30.66818738,0,1.2,,,,1,1,,0.03,nav,1,1977,2,, 26451,NJBF000086471,234 RIVERSIDE DR,Port Republic,NJ,39.51405702,-74.49940026,RES1,3001,,17,NE,1950,1950,3102,1,1,1128.969673,1128.969673,3507,NO,17.23,24.87,1,1.44,6106,111.999831,121.323455,130.910702,136.703302,I,Above,Gable,0,5701,,21.05364301,0,0,,,,1,1,,0.03,nav,1,1950,1,, 26452,NJBF000087247,239 OLD NEW YORK RD,Port Republic,NJ,39.52798443,-74.48657071,RES1,3001,,17,NE,1978,1978,3102,2,1,1943.192085,1943.192085,3505,NO,46.99,59.54,3,8.46,6106,112.151477,121.381996,130.973443,136.749362,I,Above,Gable,0,5701,,53.26568456,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 26453,NJBF000086949,128 OLD NEW YORK RD,Port Republic,NJ,39.52264594,-74.48491375,RES1,3001,,17,NE,1945,1945,3102,2,1,741.7667365,741.7667365,3505,NO,26.7,37.37,3,-1.16,6112,112.208255,121.473077,131.067588,136.864369,I,Above,Gable,0,5701,,32.03093238,0,0,,,,1,1,,0.35,nav,1,1945,2,, 26454,NJBF000086952,128 OLD NEW YORK RD,Port Republic,NJ,39.52272967,-74.48512501,RES1,3001,,17,NE,1945,1945,3102,2,1,1078.549871,1078.549871,3505,NO,40.5,51.8,3,5.31,6112,112.204142,121.468447,131.062788,136.858825,I,Above,Gable,0,5701,,46.15176662,0,0,,,,1,1,,0.35,nav,1,1945,2,, 26455,NJBF000086924,15 SHELL LANDING RD,Port Republic,NJ,39.52166867,-74.48374996,RES1,3001,,17,NE,1990,1990,3102,2,1,2385.806182,2385.806182,3505,NO,26.68,34.59,3,2.24,6106,112.233714,121.504621,131.100313,136.902763,I,Above,Gable,0,5701,,30.63341094,0,0,,,,1,1,,0.03,nav,1,1990,2,, 26456,NJBF000086762,233 MAIN ST,Port Republic,NJ,39.5184362,-74.50009489,RES1,3001,,17,NE,1960,1960,3102,2,1,1490.451315,1490.451315,3507,NO,34.49,44.92,1,2.2,6112,111.966645,121.261764,130.847899,136.621956,I,Above,Gable,0,5701,,39.70674609,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 26457,NJBF000087363,305 OLD NEW YORK RD,Port Republic,NJ,39.53222015,-74.48834165,RES1,3001,,17,NE,1990,1990,3101,2,1,1571.827575,1571.827575,3507,NO,29.64,35.78,1,2.32,6110,112.099036,121.301621,130.890731,136.648599,I,Above,Gable,0,5701,,32.71273839,0,0,,,,1,1,,0.35,nav,1,1990,2,, 26458,NJBF000087112,202 OLD NEW YORK RD,Port Republic,NJ,39.52525351,-74.48479474,RES1,3001,,17,NE,1875,1875,3102,2,1,1703.067553,1703.067553,3505,NO,32.07,40.67,3,4.44,6106,112.196512,121.444665,131.038179,136.827011,I,Above,Gable,0,5701,,36.36952268,0,0,,,,1,1,,0.03,nav,1,1875,2,, 26459,NJBF000086797,52 MILL ST,Port Republic,NJ,39.51889933,-74.49688556,RES1,3001,,17,NE,1940,1940,3102,1,1,1522.905589,1522.905589,3505,NO,17.62,30.63,3,-0.39,6112,112.019788,121.310954,130.898993,136.679727,I,Above,Hip,0,5701,,24.12833172,0,0,,,,1,1,,0.35,nav,1,1940,1,, 26460,NJBF000087640,486 CHESTNUT NECK RD,Port Republic,NJ,39.53841443,-74.48054966,RES1,3001,,17,NE,1970,1970,3102,1,1,3844.153807,3844.153807,3507,NO,13.99,20.58,1,0.4,6106,112.198694,121.361751,130.951604,136.712264,I,Above,Hip,0,5701,,17.28101156,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 26461,NJBF000087631,486 CHESTNUT NECK RD,Port Republic,NJ,39.53819322,-74.48019456,RES1,3001,,17,NE,1970,1970,3102,1,1,1333.492134,1333.492134,3507,NO,15.87,23.8,1,2.83,6106,112.205934,121.370553,130.960645,136.722868,I,Above,Gable,0,5701,,19.83327901,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 26462,NJBF000087833,,Port Republic,NJ,39.5434905,-74.465341,RES1,3001,,NaN,NE,1960,0,3102,2,1,902.0821327,902.0821327,3507,NO,24.57,35.48,1,0.62,6110,112.429205,121.565909,131.158612,136.944763,I,Above,Flat,0,5701,,30.02355712,0,0,,,,1,1,,0.03,nav,1,1960,2,, 26463,NJBF000087428,330 OLD NEW YORK RD,Port Republic,NJ,39.53344957,-74.4859016,RES1,3001,,17,NE,1980,1980,3101,1,1,2818.995439,2818.995439,3507,NO,11.97,17.91,1,-0.8,6110,112.134185,121.328895,130.918641,136.679337,I,Above,Gable,0,5701,,14.93582182,0,1.2,,,,1,1,,0.35,nav,1,1980,1,, 26464,NJBF000087422,326 OLD NEW YORK RD,Port Republic,NJ,39.53333051,-74.48451327,RES1,3001,,16,NE,1970,1970,3101,2,1,1233.33273,1233.33273,3507,NO,33.06,46.5,1,0.12,6112,112.158516,121.354206,130.944609,136.70938,I,Above,Gable,0,5701,,39.778523,0,0,,,,1,1,,0.15,nav,1,1970,2,, 26465,NJBF000087417,326 OLD NEW YORK RD,Port Republic,NJ,39.5332345,-74.4840685,RES1,3001,,16,NE,1970,1970,3101,2,1,710.1243689,710.1243689,3507,NO,26.22,39.28,1,-0.88,6106,112.166617,121.36301,130.953651,136.719883,I,Above,Flat,0,5701,,32.7487352,0,0,,,,1,1,,0.03,nav,1,1970,2,, 26466,NJBF000086839,143 MAIN ST,Port Republic,NJ,39.519478,-74.493258,GOV1,3001,,NaN,E,1969,0,3401,3,1,2418.54078,2418.54078,3505,NO,38.27,48.84,3,5.19,6106,112.079719,121.366213,130.956418,136.744176,I,Above,Gable,0,5701,,43.55642461,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26467,NJBF000087240,201 COUNTRY LANE,Port Republic,NJ,39.52769365,-74.49213988,RES1,3001,,17,NE,2002,2002,3102,2,1,2749.163669,2749.163669,3505,NO,31.54,42.12,3,-1.55,6112,112.057443,121.289945,130.878619,136.640889,I,Above,Gable,0,5701,,36.83088375,0,1.2,,,,1,1,,0.35,nav,1,2002,2,, 26468,NJBF000087241,,Port Republic,NJ,39.52775,-74.4925555,RES1,3001,,NaN,NE,1969,0,3102,2,1,633.6395456,633.6395456,3505,NO,29.72,42,3,7.7,6112,112.050061,121.28221,130.870664,136.631612,I,Above,Gable,0,5701,,35.86324916,0,0,,,,1,1,,0.35,nav,1,1969,2,, 26469,NJBF000087947,21 RIVER RD,Port Republic,NJ,39.54638768,-74.45977198,RES1,3001,,16,NE,1975,1975,3102,1,1,1472.249222,1472.249222,3507,NO,13.79,28.18,1,1.97,6106,112.5071,121.628997,131.221587,137.014424,I,Above,Gable,0,5701,,20.9868896,0,1.2,,,,1,1,,0.03,nav,1,1975,1,, 26470,NJBF000087440,330 OLD NEW YORK RD,Port Republic,NJ,39.53370488,-74.48622379,RES1,3001,,17,NE,1980,1980,3101,1,1,2611.640052,2611.640052,3507,NO,19.82,34.6,1,1.46,6112,112.127354,121.320333,130.909846,136.668889,I,Above,Gable,0,5701,,27.20732907,0,1.2,,,,1,1,,0.35,nav,1,1980,1,, 26471,NJBF000086683,316 ENGLISH CREEK RD,Port Republic,NJ,39.51744109,-74.50729722,RES1,3001,,17,NE,1967,1967,3102,1,1,2096.3727,2096.3727,3507,NO,20.4,32.08,1,2.21,6112,111.847593,121.151723,130.73368,136.491574,I,Above,Gable,0,5701,,26.24301711,0,1.2,,,,1,1,,0.35,nav,1,1967,1,, 26472,NJBF000087339,292 OLD NEW YORK RD,Port Republic,NJ,39.53150486,-74.48636199,RES1,3001,,17,NE,1900,1900,3101,2,1,949.3821984,949.3821984,3507,NO,32.64,45.63,1,2.26,6112,112.136573,121.344057,130.934312,136.699758,I,Above,Gable,0,5701,,39.13863937,0,0,,,,1,1,,0.35,nav,1,1900,2,, 26473,NJBF000088056,,Port Republic,NJ,39.54783578,-74.46339334,COM4,3002,,NaN,ME,1969,0,3401,1,1,4653.176625,4653.176625,3507,NO,19.28,27.29,1,0.64,6106,112.436694,121.546675,131.136787,136.918555,I,Above,Flat,0,NaN,,23.28417126,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26474,NJBF000087326,280 OLD NEW YORK RD,Port Republic,NJ,39.53089725,-74.48596274,RES1,3001,,17,NE,1977,1977,3101,2,1,2214.65852,2214.65852,3507,NO,30.35,36.72,1,-0.28,6110,112.1466,121.358112,130.948782,136.717158,I,Above,Gable,0,5701,,33.53553006,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 26475,NJBF000087456,424 CHESTNUT NECK RD,Port Republic,NJ,39.53405679,-74.48651559,RES1,3001,,17,NE,1995,1995,3101,2,1,2929.610357,2929.610357,3507,NO,26,35.18,1,0.26,6112,112.120529,121.311135,130.900398,136.657564,I,Above,Gable,0,5701,,30.59109135,0,1.2,,,,1,1,,0.35,nav,1,1995,2,, 26476,NJBF000086793,159 MAIN ST,Port Republic,NJ,39.51882231,-74.49599586,RES1,3001,,17,NE,1930,2018,3102,2,1,970.5095304,970.5095304,3505,NO,42.73,48.55,3,3.88,6110,112.035563,121.326997,130.915612,136.698899,I,Above,Gable,0,5701,,45.63606598,0,0,,,,1,1,,0.35,nav,1,1930,2,, 26477,NJBF000087211,32 ADAMS AVE (R),Port Republic,NJ,39.52708238,-74.48782904,RES1,3001,,17,NE,1970,1970,3102,1,1,1128.302217,1128.302217,3505,NO,14.3,20.32,3,-1.78,6106,112.13455,121.370948,130.962043,136.737658,I,Above,Gable,0,5701,,17.30672145,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 26478,NJBF000087225,32 ADAMS AVE (R),Port Republic,NJ,39.52732405,-74.48790424,RES1,3001,,17,NE,1970,1970,3102,1,1,1159.005121,1159.005121,3505,NO,20.62,35.52,3,1.61,6106,112.132,121.366821,130.957792,136.732437,I,Above,Flat,0,5701,,28.07125072,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 26479,NJBF000087507,30 WILSON AVE,Port Republic,NJ,39.53524348,-74.46373818,IND3,3002,,NaN,E,1969,0,3401,1,1,1044.406478,1044.406478,3507,NO,15.26,26.67,1,1.67,6106,112.505462,121.694922,131.294727,137.102017,I,Above,Gable,0,NaN,,20.96853934,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26480,NJBF000087452,1 NEW YORK RD,Port Republic,NJ,39.5339615,-74.4659495,IND3,3002,,NaN,E,1969,0,3401,1,1,888.2281281,888.2281281,3507,NO,18.68,26.52,1,0.1,6106,112.47465,121.671132,131.270659,137.076528,I,Above,Flat,0,5701,,22.60000993,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 26481,NJBF000087237,233 OLD NEW YORK RD,Port Republic,NJ,39.52763036,-74.48643774,RES1,3001,,17,NE,1985,1985,3102,1,1,2591.673836,2591.673836,3505,NO,17.66,30.15,3,2.89,6112,112.155623,121.388447,130.980096,136.757467,I,Above,Hip,0,5701,,23.9080905,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 26482,NJBF000087905,741 CHESTNUT NECK RD,Port Republic,NJ,39.5456097,-74.46212627,RES1,3001,,17,NE,1970,1970,3102,2,1,1659.239463,1659.239463,3507,NO,34.7,45.94,1,0.75,6106,112.471559,121.596745,131.189067,136.978181,I,Above,Gable,0,5701,,40.32145279,0,0,,,,1,1,,0.03,nav,1,1970,2,, 26483,NJBF000087598,456 CHESTNUT NECK RD,Port Republic,NJ,39.53735452,-74.48314182,RES1,3001,,17,NE,1850,1850,3102,2,1,1840.471682,1840.471682,3507,NO,25.55,33.27,1,1.56,6112,112.160377,121.32975,130.919084,136.6757,I,Above,Gable,0,5701,,29.40813529,0,0,,,,1,1,,0.35,nav,1,1850,2,, 26484,NJBF000087971,754 OLD NEW YORK RD,Port Republic,NJ,39.54673899,-74.46081137,RES1,3001,,17,NE,1940,1940,3102,2,1,1717.755179,1717.755179,3507,NO,26.47,33.23,1,2.22,6106,112.487238,121.606134,131.198035,136.98791,I,Above,Gable,0,5701,,29.85035825,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 26485,NJBF000086769,44 ST JOHNS LANE,Port Republic,NJ,39.518501,-74.4814705,RES1,3001,,17,NE,1750,1750,3102,3,1,507.3478218,507.3478218,3505,NO,57.92,67.26,3,3.21,6112,112.290612,121.581043,131.179814,136.996894,I,Above,Flat,0,5701,,62.59077536,0,1.1,,,,1,1,,0.35,nav,1,1750,3,, 26486,NJBF000086815,44 ST JOHNS LANE,Port Republic,NJ,39.5191435,-74.481551,RES1,3001,,17,NE,1750,1750,3102,3,1,4092.648203,4092.648203,3505,NO,54.06,62.36,3,7.74,6112,112.285739,121.572203,131.170603,136.985532,I,Above,Flat,0,5701,,58.21128508,0,1.1,,,,1,1,,0.35,nav,1,1750,3,, 26487,NJBF000086817,44 ST JOHNS LANE,Port Republic,NJ,39.51915373,-74.4806249,RES1,3001,,17,NE,1750,1750,3102,3,1,3637.197852,3637.197852,3505,NO,43.91,50.27,3,-1.5,6106,112.301941,121.588215,131.187295,137.004023,I,Above,Flat,0,5701,,47.08879178,0,1.1,,,,1,1,,0.03,nav,1,1750,3,, 26488,NJBF000086738,269 POMONA AVE,Port Republic,NJ,39.51822044,-74.50304375,RES1,3001,,17,NE,1978,1978,3102,1,1,678.5659942,678.5659942,3507,NO,14.49,27.53,1,2.66,6112,111.916916,121.21438,130.79877,136.565628,I,Above,Gable,0,5701,,21.00958061,0,0,,,,1,1,,0.35,nav,1,1978,1,, 26489,NJBF000087394,354 CHESTNUT NECK RD,Port Republic,NJ,39.53281708,-74.4883729,RES1,3001,,17,NE,1980,1980,3101,2,1,1613.20631,1613.20631,3507,NO,28.15,33.18,1,1.69,6112,112.095403,121.294021,130.882924,136.63882,I,Above,Gable,0,5701,,30.66256598,0,0,,,,1,1,,0.35,nav,1,1980,2,, 26490,NJBF000087218,227 OLD NEW YORK RD,Port Republic,NJ,39.52719175,-74.48640834,RES1,3001,,17,NE,1985,1985,3102,1,1,1130.860408,1130.860408,3505,NO,11.53,17.64,3,-1.19,6112,112.158438,121.394108,130.985937,136.764768,I,Above,Gable,0,5701,,14.58488474,0,1.2,,,,1,1,,0.35,nav,1,1985,1,, 26491,NJBF000086608,54 RIVERSIDE DR,Port Republic,NJ,39.51570047,-74.48903364,RES1,3001,,14,NE,1930,1930,3102,1,1,687.0758656,687.0758656,3507,NO,15.67,29.73,1,0.35,6102,112.17265,121.482225,131.076522,136.887175,I,Above,Flat,0,5701,,22.70016661,0,0,,,,1,1,,0.03,nav,1,1930,1,, 26492,NJBF000087008,144 OLD NEW YORK RD,Port Republic,NJ,39.52384357,-74.48475813,RES1,3001,,17,NE,1985,1985,3102,2,1,3465.882823,3465.882823,3505,NO,24.67,30.69,3,1.79,6106,112.204621,121.461797,131.055913,136.84926,I,Above,Gable,0,5701,,27.68365128,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 26493,NJBF000087584,39 NEW YORK RD,Port Republic,NJ,39.5370114,-74.46578565,IND3,3002,,17,E,1975,1975,3401,1,1,1430.483559,1430.483559,3507,NO,15.29,23.51,1,2.8,6112,112.459606,121.637147,131.234482,137.033784,I,Above,Gable,0,5701,,19.40077165,0,0,,,,1,1,,0.35,nav,1,1975,1,, 26494,NJBF000087094,7 BATES LANE,Port Republic,NJ,39.52500578,-74.4838192,RES1,3001,,16,NE,1787,1787,3102,2,1,921.5324072,921.5324072,3505,NO,35.75,48.87,3,-2.08,6106,112.214738,121.464454,131.058661,136.850537,I,Above,Gable,0,5701,,42.30854852,0,0,,,,1,1,,0.03,nav,1,1787,2,, 26495,NJBF000086474,390 ENGLISH CREEK RD,Port Republic,NJ,39.5140742,-74.50946116,RES1,3001,,NaN,NE,1969,0,3102,2,1,1772.839321,1772.839321,3507,NO,34.45,48.6,1,0.68,6112,111.825812,121.153519,130.734158,136.499787,I,Above,Gable,0,5701,,41.52353415,0,0,,,,1,1,,0.35,nav,1,1969,2,, 26496,NJBF000086493,,Port Republic,NJ,39.51425739,-74.49487077,RES1,3001,,NaN,NE,1990,0,3102,2,1,1608.048037,1608.048037,3507,NO,37.99,47.5,1,2.68,6106,112.077805,121.398432,130.988865,136.791592,I,Above,Gable,0,5701,,42.74368275,0,0,,,,1,1,,0.03,nav,1,1990,2,, 26497,NJBF000086525,216 RIVERSIDE DR,Port Republic,NJ,39.51455951,-74.49829473,RES1,3001,,17,NE,1977,1977,3102,2,1,659.1041847,659.1041847,3507,NO,28.87,40.62,1,0.22,6106,112.016609,121.336537,130.924467,136.717877,I,Above,Gable,0,5701,,34.74570475,0,1.2,,,,1,1,,0.03,nav,1,1977,2,, 26498,NJBF000086559,43 RIVERSIDE DR,Port Republic,NJ,39.51503887,-74.48812461,RES1,3001,,17,NE,2013,2013,3102,2,1,1244.560627,1244.560627,3507,NO,31.34,40.19,1,0.8,6106,112.192033,121.505504,131.100725,136.915569,I,Above,Flat,0,5701,,35.76614102,0,1.2,,,,1,1,,0.03,nav,1,2013,2,, 26499,NJBF000086715,320 UPPER POMONA AVE,Port Republic,NJ,39.51786937,-74.50782521,RES1,3001,,17,NE,1940,1940,3102,2,1,2104.318543,2104.318543,3507,NO,38.99,52.45,1,1.76,6112,111.836598,121.138021,130.71968,136.474278,I,Above,Gable,0,5701,,45.71606619,0,0,,,,1,1,,0.35,nav,1,1940,2,, 26500,NJBF000086765,169 MAIN ST,Port Republic,NJ,39.51847015,-74.49657731,RES1,3001,,17,NE,1890,1890,3102,2,1,788.0272762,788.0272762,3505,NO,26.38,36.75,3,4.03,6106,112.027246,121.321136,130.909456,136.692557,I,Above,Gable,0,5701,,31.56634075,0,0,,,,1,1,,0.03,nav,1,1890,2,, 26501,NJBF000086798,216 MAIN ST,Port Republic,NJ,39.5189056,-74.49823021,RES1,3001,,17,NE,1972,1972,3102,2,1,1822.250135,1822.250135,3505,NO,38.4,46.9,3,6.97,6112,111.996537,121.288021,130.875225,136.652446,I,Above,Gable,0,5701,,42.64817533,0,0,,,,1,1,,0.35,nav,1,1972,2,, 26502,NJBF000086796,222 MAIN ST,Port Republic,NJ,39.51888831,-74.49876534,RES1,3001,,17,NE,1970,1970,3102,1,1,3094.925058,3094.925058,3505,NO,14.67,25.46,3,-1.34,6112,111.987392,121.279144,130.866023,136.641904,I,Above,Gable,0,5701,,20.06238358,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26503,NJBF000086819,143 MAIN ST,Port Republic,NJ,39.51917379,-74.49460319,RES1,3001,,NaN,NE,1969,0,3102,2,1,5150.874333,5150.874333,3505,NO,31.92,44.79,3,8.5,6106,112.057933,121.34672,130.936141,136.721654,I,Above,Hip,0,5701,,38.35580238,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26504,NJBF000086825,248 MAIN ST,Port Republic,NJ,39.5192471,-74.50114494,RES1,3001,,17,NE,1973,1973,3102,1,1,2086.875363,2086.875363,3507,NO,10.88,20.03,1,-0.86,6112,111.944672,121.234718,130.820123,136.588239,I,Above,Gable,0,5701,,15.45073723,0,1.2,,,,1,1,,0.35,nav,1,1973,1,, 26505,NJBF000086840,106 MAIN ST,Port Republic,NJ,39.51948714,-74.49113188,RES1,3001,,17,NE,1860,1860,3102,2,1,1189.313517,1189.313517,3505,NO,26.43,41.31,3,5.15,6112,112.116577,121.402545,130.994131,136.786989,I,Above,Gable,0,5701,,33.87049066,0,0,,,,1,1,,0.35,nav,1,1860,2,, 26506,NJBF000086843,104 MAIN ST,Port Republic,NJ,39.519516,-74.49093565,RES1,3001,,17,NE,1884,1884,3102,2,1,2560.838637,2560.838637,3505,NO,43.71,48.87,3,8.42,6112,112.119836,121.405575,130.997281,136.790504,I,Above,Gable,0,5701,,46.2902621,0,0,,,,1,1,,0.35,nav,1,1884,2,, 26507,NJBF000086846,112 MAIN ST,Port Republic,NJ,39.51956102,-74.4915911,RES1,3001,,17,NE,1897,1897,3102,2,1,1438.420589,1438.420589,3505,NO,42.77,55.23,3,6.21,6112,112.108226,121.393815,130.985078,136.776585,I,Above,Gable,0,5701,,48.99947305,0,0,,,,1,1,,0.35,nav,1,1897,2,, 26508,NJBF000086868,118 MAIN ST,Port Republic,NJ,39.51991049,-74.49242933,REL1,3001,,NaN,ME,1969,0,3401,2,1,4355.953629,4355.953629,3507,NO,30.76,45.18,1,0.31,6112,112.091913,121.375426,130.966046,136.754312,I,Above,Gable,0,NaN,,37.96881189,0,0,,,,1,1,,1,nav,1,1969,2,, 26509,NJBF000086894,38 OLD NEW YORK RD,Port Republic,NJ,39.52043664,-74.48527781,RES1,3001,,17,NE,1975,1975,3102,1,1,2691.695073,2691.695073,3505,NO,17.46,28.67,3,-1.98,6112,112.213594,121.492466,131.087644,136.890682,I,Above,Gable,0,5701,,23.06698294,0,1.2,,,,1,1,,0.15,nav,1,1975,1,, 26510,NJBF000086896,53 OLD NEW YORK RD,Port Republic,NJ,39.52048705,-74.48594262,RES1,3001,,17,NE,1952,1952,3102,1,1,2550.182485,2550.182485,3505,NO,16.54,29.88,3,2.68,6112,112.201729,121.48038,131.075084,136.876497,I,Above,Hip,0,5701,,23.21035225,0,0,,,,1,1,,0.35,nav,1,1952,1,, 26511,NJBF000086986,135 OLD NEW YORK RD,Port Republic,NJ,39.52340328,-74.4856956,RES1,3001,,17,NE,1981,1981,3102,2,1,533.1054893,533.1054893,3505,NO,40.99,50.87,3,8.87,6112,112.190672,121.45073,131.044438,136.837021,I,Above,Flat,0,5701,,45.9337134,0,0,,,,1,1,,0.35,nav,1,1981,2,, 26512,NJBF000087196,219 OLD NEW YORK RD,Port Republic,NJ,39.52681567,-74.48656223,RES1,3001,,17,NE,2000,2000,3102,2,1,689.1574971,689.1574971,3505,NO,27.19,36.29,3,5.72,6112,112.157757,121.395868,130.987753,136.767393,I,Above,Gable,0,5701,,31.74231662,0,0,,,,1,1,,0.15,nav,1,2000,2,, 26513,NJBF000087650,540 CHESTNUT NECK RD,Port Republic,NJ,39.53871773,-74.47410656,RES1,3001,,17,NE,2017,2017,3102,2,1,5410.230177,5410.230177,3507,NO,34.87,45.27,1,1.07,6110,112.306838,121.470056,131.062334,136.838758,I,Above,Gable,0,5701,,40.0684329,0,1.2,,,,1,1,,0.15,nav,1,2017,2,, 26514,NJBF000087721,650 CHESTNUT NECK RD,Port Republic,NJ,39.5410631,-74.46592665,RES1,3001,,17,NE,1975,1975,3102,2,1,1736.956004,1736.956004,3507,NO,31.99,41.03,1,1.9,6112,112.433428,121.585304,131.179561,136.969613,I,Above,Flat,0,5701,,36.50816659,0,0,,,,1,1,,0.35,nav,1,1975,2,, 26515,NJBF000087727,631 CHESTNUT NECK RD,Port Republic,NJ,39.54116507,-74.46919459,RES1,3001,73,NaN,NE,1969,0,3102,2,1,1363.769996,1363.769996,3507,NO,34.58,43.74,1,1.08,6110,112.376869,121.526415,131.119203,136.901536,I,Above,Gable,0,5701,,39.16039753,0,0,,,,1,1,,0.15,nav,1,1969,2,, 26516,NJBF000052048,34 HIGBEE AVE,Somers Point,NJ,39.31265392,-74.59486134,RES1,3001,,16,NE,1993,1993,3101,2,1,1864.060593,1864.060593,3505,NO,35.81,46.02,3,8.97,6112,111.782372,121.845735,131.526179,137.861095,I,Above,Flat,0,5701,,40.91696241,0,1.1,,,,1,1,,0.35,nav,1,1993,2,, 26517,NJBF000051739,27 SOMERS AVE,Somers Point,NJ,39.31042134,-74.59635777,RES1,3001,,16,NE,1953,1953,3102,1,1,744.9698996,744.9698996,3505,NO,12.47,19.85,3,1.43,6112,111.795504,121.848627,131.526186,137.861533,I,Above,Gable,0,5701,,16.16279351,0,0,,,,1,1,,0.35,nav,1,1953,1,, 26518,NJBF000052573,610 SUNNY AVE,Somers Point,NJ,39.31566522,-74.59188837,RES1,3001,,16,NE,1970,1970,3102,1,1,692.7197775,692.7197775,3507,NO,16.95,25.95,1,-0.49,6112,111.782852,121.858371,131.54171,137.880025,I,Above,Flat,0,5701,,21.45083474,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26519,NJBF000052384,18 E NEW YORK AVE,Somers Point,NJ,39.31432004,-74.59438145,RES1,3001,,16,NE,1948,1948,3101,1,1,1185.592513,1185.592513,3505,NO,17.64,26.54,3,-0.92,6112,111.761081,121.833007,131.515741,137.847715,I,Above,Hip,0,5701,,22.0896243,0,0,,,,1,1,,0.35,nav,1,1948,1,, 26520,NJBF000052210,100 ANCHORAGE DRIVE,Somers Point,NJ,39.31343253,-74.57899239,RES1,3001,,16,NE,1966,1966,3102,2,1,1766.180271,1766.180271,3507,NO,32.33,38.11,1,2.11,6106,112.06774,122.104739,131.779664,138.174551,I,Above,Gable,0,5701,,35.21819254,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 26521,NJBF000052153,107 STERN DRIVE,Somers Point,NJ,39.31314365,-74.58071318,RES1,3001,,16,NE,1959,1959,3102,1,1,1509.774836,1509.774836,3507,NO,19.67,31.12,1,1.47,6106,112.039499,122.079008,131.754138,138.143382,I,Above,Flat,0,5701,,25.39143188,0,0,,,,1,1,,0.03,nav,1,1959,1,, 26522,NJBF000051949,140 DECATUR AVE,Somers Point,NJ,39.31195798,-74.59077688,RES1,3001,,16,NE,1930,1930,3102,2,1,941.1484417,941.1484417,3505,NO,40.94,55.43,3,5.3,6106,111.870041,121.923231,131.600677,137.95422,I,Above,Hip,0,5701,,48.184926,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 26523,NJBF000054957,109 OSBORNE RD,Somers Point,NJ,39.32474633,-74.60412316,RES1,3001,,16,NE,1964,1964,3101,1,1,1554.542706,1554.542706,3507,NO,22.11,27.16,1,2.79,6106,111.395094,121.539591,131.243458,137.500052,I,Above,Gable,0,5701,,24.63635073,0,0,,,,1,1,,0.03,nav,1,1964,1,, 26524,NJBF000053820,42 LAUREL DR SOUTH,Somers Point,NJ,39.32139529,-74.6147745,RES1,3001,,16,NE,1966,1966,3101,1,1,2082.390836,2082.390836,3507,NO,16.24,25.55,1,2.53,6110,111.274912,121.402652,131.111269,137.328468,I,Above,Gable,0,5701,,20.89467965,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26525,NJBF000052606,,Somers Point,NJ,39.31594486,-74.58745936,RES1,3001,,NaN,NE,2008,0,3102,2,1,12433.70786,12433.70786,3507,NO,25.09,36.22,1,2.85,6106,111.860895,121.929917,131.611397,137.966854,I,Above,Flat,0,5701,,30.65223444,0,0,,,,1,1,,0.03,nav,1,2008,2,, 26526,NJBF000053789,40 LAUREL DR SOUTH,Somers Point,NJ,39.3212843,-74.61499358,RES1,3001,,16,NE,1964,1964,3101,1,1,2574.881885,2574.881885,3507,NO,13.86,23.1,1,0.03,6106,111.273347,121.400388,131.109017,137.325528,I,Above,Gable,0,5701,,18.47908992,0,0,,,,1,1,,0.03,nav,1,1964,1,, 26527,NJBF000057043,34 CHAPMAN BLVD,Somers Point,NJ,39.32979875,-74.60263067,RES1,3001,,16,NE,1968,1968,3101,2,1,1482.019359,1482.019359,3507,NO,39.3,53.26,1,1.93,6112,111.328694,121.503302,131.211278,137.458266,I,Above,Gable,0,5701,,46.28004691,0,0,,,,1,1,,0.35,nav,1,1968,2,, 26528,NJBF000059969,615 W OCEAN HEIGHTS AVE,Somers Point,NJ,39.33517068,-74.59592102,RES1,3001,,16,NE,1930,1930,3102,2,1,1287.885847,1287.885847,3505,NO,24.54,38.74,3,2.81,6112,111.355413,121.553619,131.258907,137.519466,I,Above,Gable,0,5701,,31.64020344,0,0,,,,1,1,,0.03,nav,1,1930,2,, 26529,NJBF000055184,164 BALA DR,Somers Point,NJ,39.32537883,-74.61263877,RES1,3001,,16,NE,1959,1959,3101,1,1,1713.503075,1713.503075,3507,NO,20.74,27.93,1,2.61,6110,111.236313,121.388518,131.1013,137.315197,I,Above,Gable,0,5701,,24.3370139,0,0,,,,1,1,,0.35,nav,1,1959,1,, 26530,NJBF000055675,153 EXTON RD,Somers Point,NJ,39.32671135,-74.60959688,RES1,3001,,16,NE,1970,1970,3101,1,1,2118.970781,2118.970781,3507,NO,15.61,30.13,1,-0.24,6110,111.263148,121.423166,131.13468,137.358819,I,Above,Hip,0,5701,,22.87197526,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26531,NJBF000053649,31 LAUREL DR SOUTH,Somers Point,NJ,39.32075411,-74.61494426,RES1,3001,,16,NE,1962,1962,3101,1,1,1947.438936,1947.438936,3507,NO,14.67,29.41,1,1.61,6106,111.284007,121.407903,131.11558,137.334165,I,Above,Flat,0,5701,,22.03965547,0,0,,,,1,1,,0.03,nav,1,1962,1,, 26532,NJBF000057625,21 DEFEO LN,Somers Point,NJ,39.3308965,-74.59717,RES1,3001,,16,NE,1988,1988,3101,1,1,1796.398148,1796.398148,3507,NO,15.74,24.49,1,-0.69,6106,111.409091,121.582993,131.286742,137.555371,I,Above,Hip,0,5701,,20.11917957,0,0,,,,1,1,,0.03,nav,1,1988,1,, 26533,NJBF000056850,4 FRANKLIN DR,Somers Point,NJ,39.32939045,-74.60228682,RES1,3001,,16,NE,1973,1973,3101,2,1,1172.614506,1172.614506,3507,NO,23.73,32.01,1,-0.96,6112,111.342442,121.514078,131.221334,137.471274,I,Above,Gable,0,5701,,27.87094227,0,0,,,,1,1,,0.35,nav,1,1973,2,, 26534,NJBF000057082,5 EDGEWOOD DR,Somers Point,NJ,39.3298815,-74.600325,RES1,3001,,16,NE,1977,1977,3101,2,1,1395.889309,1395.889309,3507,NO,28.74,33.85,1,1.68,6110,111.369168,121.541479,131.247313,137.504763,I,Above,Gable,0,5701,,31.29219979,0,0,,,,1,1,,0.35,nav,1,1977,2,, 26535,NJBF000056807,11 HAMILTON DR,Somers Point,NJ,39.32930066,-74.60410137,RES1,3001,,43,NE,1970,1970,3101,1,2,2239.560601,2239.560601,3507,NO,16.16,26.66,1,0.95,6112,111.311444,121.484393,131.193338,137.435055,I,Above,Gable,0,5701,,21.40800599,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26536,NJBF000057028,7 SCHOOLHOUSE DR,Somers Point,NJ,39.329762,-74.5990315,RES1,3001,,16,NE,1972,1972,3101,2,1,1307.919562,1307.919562,3507,NO,40.17,54.46,1,2.91,6110,111.395153,121.564914,131.269439,137.533228,I,Above,Gable,0,5701,,47.31832911,0,0,,,,1,1,,0.35,nav,1,1972,2,, 26537,NJBF000054735,163 BALA DR,Somers Point,NJ,39.32419088,-74.61176635,RES1,3001,,16,NE,1958,1958,3101,1,1,1154.308912,1154.308912,3507,NO,13.07,20.61,1,-0.97,6106,111.273118,121.417906,131.128108,137.350322,I,Above,Gable,0,5701,,16.83836392,0,0,,,,1,1,,0.03,nav,1,1958,1,, 26538,NJBF000058975,535 W OCEAN HTS AVE,Somers Point,NJ,39.33881864,-74.59823119,COM8,3001,999,NaN,ME,1969,2011,3401,1,1,956.0077248,956.0077248,3507,NO,12.94,27.56,1,0.5,6110,111.24558,121.47143,131.180564,137.418498,I,Above,Flat,0,NaN,,20.25447802,0,0,,,,1,1,,1,nav,1,1969,1,, 26539,NJBF000054510,130 DEVON RD,Somers Point,NJ,39.32358419,-74.61241496,RES1,3001,,16,NE,1957,1957,3101,2,1,1326.478628,1326.478628,3507,NO,39.79,45.74,1,2.88,6110,111.273486,121.414598,131.124518,137.34566,I,Above,Gable,0,5701,,42.76375261,0,0,,,,1,1,,0.35,nav,1,1957,2,, 26540,NJBF000056898,4 SCHOOLHOUSE DR,Somers Point,NJ,39.3294941,-74.59999545,RES1,3001,,16,NE,1967,1967,3101,2,1,1275.11712,1275.11712,3507,NO,33.36,45.39,1,0.45,6112,111.382304,121.551747,131.256928,137.517157,I,Above,Gable,0,5701,,39.3756296,0,0,,,,1,1,,0.35,nav,1,1967,2,, 26541,NJBF000053200,130 E GROVELAND AVE,Somers Point,NJ,39.31906039,-74.5875791,RES1,3001,,16,NE,1954,1954,3102,1,1,1966.285781,1966.285781,3505,NO,20.16,29.58,3,2.53,6106,111.803076,121.889613,131.574965,137.921023,I,Above,Hip,0,5701,,24.86900592,0,0,,,,1,1,,0.03,nav,1,1954,1,, 26542,NJBF000057093,9 SCHOOLHOUSE DR,Somers Point,NJ,39.32990998,-74.59884934,RES1,3001,,16,NE,1966,1966,3101,2,1,1306.784752,1306.784752,3507,NO,24.21,29.97,1,-0.81,6110,111.395816,121.566231,131.270716,137.534861,I,Above,Gable,0,5701,,27.08882843,0,0,,,,1,1,,0.35,nav,1,1966,2,, 26543,NJBF000054756,1107 MASSACHUSETTS AVE,Somers Point,NJ,39.3242371,-74.60519442,RES1,3001,,16,NE,1963,1963,3101,1,1,1718.61827,1718.61827,3507,NO,17.45,28.52,1,0.96,6112,111.385561,121.527789,131.231963,137.485246,I,Above,Gable,0,5701,,22.98781665,0,0,,,,1,1,,0.35,nav,1,1963,1,, 26544,NJBF000055435,5 BUCKNELL RD,Somers Point,NJ,39.32609148,-74.61142038,RES1,3001,,16,NE,1979,1979,3101,2,1,1769.835267,1769.835267,3507,NO,26.35,37.15,1,1.57,6106,111.243601,121.400157,131.112698,137.330104,I,Above,Gable,0,5701,,31.75007647,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26545,NJBF000055310,14 CORNELL RD,Somers Point,NJ,39.32573689,-74.60958923,RES1,3001,,16,NE,1970,1970,3101,2,1,1439.506631,1439.506631,3507,NO,33.29,38.46,1,1.28,6106,111.281397,121.435299,131.14554,137.373013,I,Above,Hip,0,5701,,35.87627009,0,0,,,,1,1,,0.03,nav,1,1970,2,, 26546,NJBF000055383,1 BUCKNELL RD,Somers Point,NJ,39.32593549,-74.61193006,RES1,3001,,16,NE,1979,1979,3101,2,1,1446.244564,1446.244564,3507,NO,27.02,36.72,1,2.73,6106,111.237884,121.393523,131.106368,137.321821,I,Above,Gable,0,5701,,31.87202892,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26547,NJBF000052181,,Somers Point,NJ,39.31327964,-74.57629075,RES1,3001,,NaN,NE,1969,0,3102,2,1,5610.6623,5610.6623,3507,NO,37.44,42.76,1,1.94,6106,112.123092,122.152645,131.826566,138.231736,I,Above,Flat,0,5701,,40.10228109,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26548,NJBF000052616,101 LONGPORT BLVD.,Somers Point,NJ,39.3160045,-74.5850835,COM8,3001,510,NaN,ME,1969,0,3401,1,1,578.8583062,578.8583062,3507,NO,15.84,23.25,1,1.57,6106,111.905028,121.969531,131.649987,138.014688,I,Above,Flat,0,NaN,,19.54513087,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26549,NJBF000055063,143 COLWICK DR,Somers Point,NJ,39.3250235,-74.61281233,RES1,3001,,16,NE,1957,1957,3101,1,1,1780.2231,1780.2231,3507,NO,12.65,25.55,1,0.04,6110,111.240026,121.390026,131.10247,137.316741,I,Above,Hip,0,5701,,19.09740661,0,0,,,,1,1,,0.35,nav,1,1957,1,, 26550,NJBF000055027,24 HADDON RD,Somers Point,NJ,39.32492976,-74.60706607,RES1,3001,,16,NE,1963,1963,3101,1,1,2052.682228,2052.682228,3507,NO,20.83,30.76,1,2.14,6110,111.339973,121.48771,131.194481,137.436691,I,Above,Gable,0,5701,,25.79553512,0,0,,,,1,1,,0.35,nav,1,1963,1,, 26551,NJBF000054920,138 BALA DR,Somers Point,NJ,39.324652,-74.6151605,RES1,3001,,16,NE,1962,1962,3101,1,1,1128.338279,1128.338279,3507,NO,16.35,22.59,1,1.22,6106,111.207927,121.355358,131.069608,137.273613,I,Above,Gable,0,5701,,19.46897007,0,0,,,,1,1,,0.03,nav,1,1962,1,, 26552,NJBF000055891,122 HADDON RD,Somers Point,NJ,39.3272192,-74.60507841,RES1,3001,,16,NE,1966,1966,3101,1,1,547.0466634,547.0466634,3507,NO,15.55,21.56,1,0.66,6112,111.332527,121.493172,131.200852,137.44485,I,Above,Gable,0,5701,,18.55628724,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 26553,NJBF000056285,174 EXTON RD,Somers Point,NJ,39.32813135,-74.60875899,RES1,3001,,16,NE,1978,1978,3101,2,1,1467.734766,1467.734766,3507,NO,36.64,44.38,1,-0.46,6106,111.251172,121.419872,131.132269,137.35565,I,Above,Gable,0,5701,,40.50766653,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 26554,NJBF000058348,40 WILSON AVE,Somers Point,NJ,39.33214833,-74.60601757,RES1,3001,,16,NE,1984,1984,3101,1,1,2082.283041,2082.283041,3507,NO,18.25,31.27,1,2.04,6106,111.224566,121.417549,131.131157,137.354225,I,Above,Gable,0,5701,,24.76220739,0,0,,,,1,1,,0.03,nav,1,1984,1,, 26555,NJBF000054309,124 DEVON RD,Somers Point,NJ,39.32304009,-74.61229798,RES1,3001,,16,NE,1957,1957,3101,2,1,1528.308367,1528.308367,3507,NO,32.62,42.95,1,1.79,6112,111.285562,121.423344,131.132324,137.355891,I,Above,Gable,0,5701,,37.78939079,0,0,,,,1,1,,0.35,nav,1,1957,2,, 26556,NJBF000054991,5 COLGATE RD,Somers Point,NJ,39.32482396,-74.60925639,RES1,3001,,16,NE,1970,1970,3101,2,1,1315.370866,1315.370866,3507,NO,39.28,50.18,1,1.18,6106,111.30407,121.452176,131.160867,137.393018,I,Above,Hip,0,5701,,44.72977764,0,0,,,,1,1,,0.03,nav,1,1970,2,, 26557,NJBF000058788,57 DEFEO LN,Somers Point,NJ,39.33294383,-74.60332658,RES1,3001,,16,NE,1985,1985,3101,2,1,1478.401045,1478.401045,3507,NO,28.58,42.79,1,0.65,6110,111.258148,121.453717,131.165089,137.39839,I,Above,Gable,0,5701,,35.68471087,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 26558,NJBF000055277,4 WARWICK AVE,Somers Point,NJ,39.32564864,-74.58202703,RES1,3001,,18,NE,1999,1999,3102,2,1,2342.45654,2342.45654,3505,NO,25.71,32.27,3,-2.42,6106,111.794305,121.904602,131.593292,137.942776,I,Above,Gable,0,5701,,28.98754107,0,0,,,,1,1,,0.03,nav,1,1999,2,, 26559,NJBF000057634,10 CRESTMONT DR,Somers Point,NJ,39.33091468,-74.6013263,RES1,3001,,43,NE,1966,1966,3101,2,2,567.2540658,567.2540658,3507,NO,38.99,45.19,1,2.34,6110,111.331895,121.512034,131.219725,137.469154,I,Above,Gable,0,5701,,42.09432598,0,0,,,,1,1,,0.35,nav,1,1966,2,, 26560,NJBF000053618,36 GULPH MILL RD,Somers Point,NJ,39.32062577,-74.61813606,RES1,3001,,16,NE,1971,1971,3101,1,1,2184.826441,2184.826441,3507,NO,20.92,29.25,1,1.46,6106,111.234368,121.356526,131.066857,137.270232,I,Above,Gable,0,5701,,25.08490912,0,0,,,,1,1,,0.03,nav,1,1971,1,, 26561,NJBF000054332,129 BALA DR,Somers Point,NJ,39.32309893,-74.61496463,RES1,3001,,16,NE,1955,1955,3101,2,1,1439.455185,1439.455185,3507,NO,28.32,34.84,1,1.15,6106,111.240088,121.378058,131.089666,137.300034,I,Above,Gable,0,5701,,31.58016863,0,0,,,,1,1,,0.03,nav,1,1955,2,, 26562,NJBF000054200,210 SUNNY AVE,Somers Point,NJ,39.32270955,-74.58638217,RES1,3001,,16,NE,1958,1958,3102,1,1,1526.212559,1526.212559,3505,NO,16.92,24.89,3,2.73,6112,111.761089,121.865544,131.554131,137.894479,I,Above,Hip,0,5701,,20.90564267,0,0,,,,1,1,,0.35,nav,1,1958,1,, 26563,NJBF000053400,16 FRESH SPRING COVE,Somers Point,NJ,39.31979803,-74.61651336,RES1,3001,,16,NE,1971,1971,3101,1,1,2010.06525,2010.06525,3507,NO,18.5,25.34,1,-0.7,6110,111.276029,121.393933,131.101308,137.31556,I,Above,Gable,0,5701,,21.92113473,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26564,NJBF000054129,112 E DAWES AVE,Somers Point,NJ,39.32247853,-74.58521269,RES1,3001,,16,NE,1966,1966,3102,1,1,1797.064218,1797.064218,3505,NO,14.53,28.19,3,3.89,6106,111.787765,121.888292,131.575988,137.921771,I,Above,Gable,0,5701,,21.35791101,0,0,,,,1,1,,0.03,nav,1,1966,1,, 26565,NJBF000054352,124 E MEYRAN AVE,Somers Point,NJ,39.323151,-74.5846035,RES1,3001,,16,NE,1973,1973,3102,2,1,1024.611722,1024.611722,3505,NO,36.74,51.45,3,3.66,6106,111.787703,121.890562,131.578557,137.924864,I,Above,Gable,0,5701,,44.09399944,0,0,,,,1,1,,0.03,nav,1,1973,2,, 26566,NJBF000054620,6 YALE BLVD,Somers Point,NJ,39.32388809,-74.61032749,RES1,3001,,16,NE,1970,1970,3101,1,1,2215.373305,2215.373305,3507,NO,13.93,28.42,1,2.52,6110,111.303137,121.445795,131.154188,137.384366,I,Above,Gable,0,5701,,21.17500189,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26567,NJBF000053521,6 WISTERIA WALK,Somers Point,NJ,39.32025222,-74.61397481,RES1,3001,,16,NE,1966,1966,3101,1,1,2408.106055,2408.106055,3507,NO,13.44,28.05,1,0.53,6106,111.309329,121.43036,131.136318,137.361324,I,Above,Gable,0,5701,,20.74677804,0,0,,,,1,1,,0.03,nav,1,1966,1,, 26568,NJBF000054569,12 JEFFERSON AVE,Somers Point,NJ,39.32375576,-74.60246891,RES1,3001,,16,NE,1966,1966,3101,1,1,1467.914753,1467.914753,3507,NO,16.74,31.52,1,1.55,6112,111.442757,121.579682,131.280891,137.548317,I,Above,Gable,0,5701,,24.1307019,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26569,NJBF000054155,116 COLWICK DR,Somers Point,NJ,39.322567,-74.6134515,RES1,3001,,16,NE,1955,1955,3101,2,1,1290.122541,1290.122541,3507,NO,33.16,43.38,1,2.43,6110,111.27507,121.409991,131.11931,137.338909,I,Above,Gable,0,5701,,38.27296256,0,0,,,,1,1,,0.35,nav,1,1955,2,, 26570,NJBF000053896,124 E PIERSON AVE,Somers Point,NJ,39.32169636,-74.58603174,RES1,3001,,16,NE,1973,1973,3102,2,1,1601.599065,1601.599065,3505,NO,36.71,47.78,3,1.43,6112,111.78582,121.883815,131.57119,137.915913,I,Above,Hip,0,5701,,42.24754109,0,0,,,,1,1,,0.35,nav,1,1973,2,, 26571,NJBF000053812,28 GULPH MILL RD,Somers Point,NJ,39.32137921,-74.61769136,RES1,3001,,16,NE,1967,1967,3101,1,1,1762.9987,1762.9987,3507,NO,10.66,21.77,1,-0.26,6106,111.22757,121.354365,131.065643,137.268573,I,Above,Gable,0,5701,,16.2141915,0,0,,,,1,1,,0.03,nav,1,1967,1,, 26572,NJBF000052092,77 GIBBS AVE,Somers Point,NJ,39.3128745,-74.59288548,RES1,3001,,15,NE,1920,1920,3102,1,1,940.203877,940.203877,3505,NO,23.43,29.83,3,5.89,6106,111.814628,121.876258,131.556064,137.898446,I,Above,Gable,0,5701,,26.62766121,0,0,,,,1,1,,0.03,nav,1,1920,1,, 26573,NJBF000053526,51 GULPH MILL RD,Somers Point,NJ,39.32025866,-74.61723958,RES1,3001,,16,NE,1972,1972,3101,1,1,2757.132706,2757.132706,3507,NO,20.51,31.72,1,1.29,6106,111.255663,121.376032,131.084886,137.293967,I,Above,Hip,0,5701,,26.11483657,0,0,,,,1,1,,0.03,nav,1,1972,1,, 26574,NJBF000051483,30 BROADWAY,Somers Point,NJ,39.3075222,-74.60263078,RES1,3001,,17,NE,2009,2009,3102,2,1,3012.687619,3012.687619,3507,NO,32.51,40.02,1,2.89,6102,111.736382,121.780629,131.455901,137.773812,I,Above,Hip,0,5701,,36.26142991,0,1.2,,,,1,1,,0.03,nav,1,2009,2,, 26575,NJBF000051447,BROADWAY,Somers Point,NJ,39.30666614,-74.6085931,RES1,3001,20,NaN,NE,1960,1960,3102,2,1,2899.76507,2899.76507,3507,NO,32.85,38.62,1,2.97,6106,111.649065,121.692845,131.369177,137.664131,I,Above,Flat,0,5701,,35.73701158,0,0,,,,1,1,,0.03,nav,1,1960,2,, 26576,NJBF000051992,50 MAYS LANDING RD,Somers Point,NJ,39.31224701,-74.61686883,RES3C,3001,20,NaN,ME,1973,1973,3301,1,1,1369.752905,1369.752905,3507,NO,13.25,23.28,1,2.47,6112,111.409462,121.484663,131.177392,137.41607,I,Above,Gable,0,NaN,,18.26577177,0,0,,,,1,1,,0.35,nav,1,1973,1,, 26577,NJBF000052072,50 MAYS LANDING RD,Somers Point,NJ,39.3127686,-74.61743585,RES3D,3001,20,NaN,ME,1973,1973,3301,1,1,5331.272784,5331.272784,3507,NO,12.28,19.46,1,1,6106,111.390683,121.468616,131.162829,137.397015,I,Above,Flat,0,NaN,,15.86990041,0,0,,,,1,1,,0.03,nav,1,1973,1,, 26578,NJBF000052124,50 MAYS LANDING RD,Somers Point,NJ,39.31300957,-74.6167757,RES3D,3001,20,NaN,ME,1973,1973,3301,1,1,5351.037718,5351.037718,3507,NO,18.17,23.7,1,2.9,6112,111.396974,121.47636,131.170637,137.407127,I,Above,Gable,0,NaN,,20.93326525,0,0,,,,1,1,,0.35,nav,1,1973,1,, 26579,NJBF000052073,50 MAYS LANDING RD,Somers Point,NJ,39.31277339,-74.61809242,RES3D,3001,20,NaN,ME,1973,1973,3301,1,1,6199.971256,6199.971256,3507,NO,17.65,27.81,1,2.59,6106,111.380003,121.457793,131.152454,137.3835,I,Above,Gable,0,NaN,,22.73135388,0,0,,,,1,1,,0.03,nav,1,1973,1,, 26580,NJBF000051983,50 MAYS LANDING RD,Somers Point,NJ,39.3121891,-74.61767884,RES3C,3001,20,NaN,ME,1973,1973,3301,1,1,6367.060806,6367.060806,3507,NO,17.6,23.7,1,2.47,6110,111.397388,121.472111,131.165245,137.400283,I,Above,Gable,0,NaN,,20.65397211,0,0,,,,1,1,,0.35,nav,1,1973,1,, 26581,NJBF000056754,,Somers Point,NJ,39.3291915,-74.6069335,RES3D,3001,,NaN,E,1969,0,3303,3,1,7262.181499,7262.181499,3507,NO,41.65,51.53,1,-0.39,6106,111.263276,121.437776,131.149476,137.378076,I,Above,Gable,0,5701,,46.59001428,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26582,NJBF000059222,2 BETHEL RD,Somers Point,NJ,39.33379622,-74.59420033,COM8,3001,649,NaN,ME,2006,2006,3401,1,1,1423.535086,1423.535086,3505,NO,13.26,23.37,3,-1.78,6110,111.413042,121.59926,131.302219,137.575006,I,Above,Gable,0,NaN,,18.31557826,0,0,,,,1,1,,0.35,nav,1,2006,1,, 26583,NJBF000058402,43 WILSON AVE,Somers Point,NJ,39.33225187,-74.60686782,RES1,3001,,16,NE,1985,1985,3101,1,1,1625.200131,1625.200131,3507,NO,16.36,27.51,1,2.17,6106,111.207574,121.401885,131.116516,137.335121,I,Above,Gable,0,5701,,21.93520172,0,0,,,,1,1,,0.03,nav,1,1985,1,, 26584,NJBF000053802,311 BAY AVE,Somers Point,NJ,39.32132659,-74.58582527,RES1,3001,,45,NE,1952,1952,3102,2,2,1197.981746,1197.981746,3505,NO,24.94,38.3,3,1.83,6110,111.796351,121.891827,131.57871,137.92534,I,Above,Flat,0,5701,,31.61764687,0,0,,,,1,1,,0.35,nav,1,1952,2,, 26585,NJBF000055016,111 OSBORNE RD,Somers Point,NJ,39.32490216,-74.60394418,RES1,3001,,16,NE,1964,1964,3101,2,1,1650.406965,1650.406965,3507,NO,31.58,43.23,1,1.59,6106,111.395395,121.540696,131.244597,137.501511,I,Above,Hip,0,5701,,37.40544051,0,0,,,,1,1,,0.03,nav,1,1964,2,, 26586,NJBF000052282,7 WOODLAWN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,NaN,NE,2007,0,3102,2,1,1480.910776,1480.910776,3505,NO,42.74,49.79,3,8.99,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,46.26892882,0,0,,,,1,1,,0.03,nav,1,2007,2,, 26587,NJBF000055905,124 HADDON RD,Somers Point,NJ,39.32725003,-74.60476498,RES1,3001,,16,NE,1966,1966,3101,1,1,1588.761688,1588.761688,3507,NO,17.23,25.6,1,0.97,6110,111.337501,121.498085,131.205501,137.450869,I,Above,Gable,0,5701,,21.41370986,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26588,NJBF000055361,16 CORNELL RD,Somers Point,NJ,39.32587944,-74.60978384,RES1,3001,,16,NE,1971,1971,3101,1,1,1531.547573,1531.547573,3507,NO,16.17,25.41,1,0.12,6106,111.275415,121.430268,131.140889,137.366943,I,Above,Gable,0,5701,,20.79190387,0,0,,,,1,1,,0.03,nav,1,1971,1,, 26589,NJBF000054053,18 GULPH MILL RD,Somers Point,NJ,39.32223114,-74.61683656,RES1,3001,,16,NE,1967,1967,3101,1,1,1583.302786,1583.302786,3507,NO,13.1,24.86,1,2.36,6110,111.225581,121.357792,131.069752,137.273919,I,Above,Gable,0,5701,,18.98094188,0,0,,,,1,1,,0.35,nav,1,1967,1,, 26590,NJBF000052395,6 WOODLAWN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,2006,3102,2,1,5342.492194,5342.492194,3505,NO,24.77,32.81,3,-1.65,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,28.78933228,0,0,,,,1,1,,0.03,nav,1,2007,2,, 26591,NJBF000053739,39 LAUREL DR SOUTH,Somers Point,NJ,39.32110732,-74.61391161,RES1,3001,,16,NE,1962,1962,3101,1,1,2271.566527,2271.566527,3507,NO,18.72,30.78,1,1.64,6112,111.294518,121.420635,131.127988,137.350365,I,Above,Gable,0,5701,,24.74835558,0,0,,,,1,1,,0.35,nav,1,1962,1,, 26592,NJBF000053348,121 E GROVELAND AVE,Somers Point,NJ,39.319611,-74.587676,RES1,3001,,16,NE,1977,1977,3102,1,1,1998.413825,1998.413825,3505,NO,24.19,33.58,3,6.39,6112,111.791407,121.881223,131.567259,137.911331,I,Above,Flat,0,5701,,28.88270468,0,0,,,,1,1,,0.35,nav,1,1977,1,, 26593,NJBF000051620,1409 ATKINSON AVE,Somers Point,NJ,39.3091466,-74.61689342,RES1,3001,,15,NE,1900,1900,3102,2,1,1833.069102,1833.069102,3507,NO,24.34,37.82,1,0.68,6112,111.465792,121.524357,131.210348,137.459563,I,Above,Gable,0,5701,,31.07995499,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 26594,NJBF000057478,,Somers Point,NJ,39.3306365,-74.6014575,RES1,3001,,NaN,NE,1969,0,3101,1,1,1248.568542,1248.568542,3507,NO,14.07,26.48,1,0.48,6110,111.334624,121.513159,131.220739,137.470471,I,Above,Gable,0,5701,,20.27684521,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26595,NJBF000055985,166 EXTON RD,Somers Point,NJ,39.3274488,-74.60948674,RES1,3001,,16,NE,1977,1977,3101,1,1,2000.312382,2000.312382,3507,NO,10.58,24,1,-0.37,6106,111.251305,121.415953,131.128279,137.350449,I,Above,Gable,0,5701,,17.28891359,0,0,,,,1,1,,0.03,nav,1,1977,1,, 26596,NJBF000054980,13 YALE BLVD,Somers Point,NJ,39.32480422,-74.61063378,RES1,3001,,16,NE,1970,1970,3101,2,1,1446.938075,1446.938075,3507,NO,36.51,43.69,1,-0.78,6106,111.280894,121.42928,131.139267,137.364866,I,Above,Gable,0,5701,,40.10246511,0,0,,,,1,1,,0.03,nav,1,1970,2,, 26597,NJBF000053661,34 GULPH MILL RD,Somers Point,NJ,39.32079576,-74.61799763,RES1,3001,,16,NE,1965,1965,3101,2,1,1382.883298,1382.883298,3507,NO,37.61,43.95,1,2.56,6106,111.233438,121.356657,131.067172,137.270632,I,Above,Gable,0,5701,,40.77718271,0,0,,,,1,1,,0.03,nav,1,1965,2,, 26598,NJBF000055236,1021 MASSACHUSETTS AVE,Somers Point,NJ,39.32553858,-74.60716467,RES1,3001,,16,NE,1965,1965,3101,1,1,1566.227349,1566.227349,3507,NO,13.14,22.18,1,2.39,6106,111.326969,121.478542,131.186189,137.425903,I,Above,Hip,0,5701,,17.65996509,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26599,NJBF000055580,21 CORNELL RD,Somers Point,NJ,39.32648387,-74.60986261,RES1,3001,,16,NE,1970,1970,3101,2,1,1499.798708,1499.798708,3507,NO,39.18,45.55,1,0.22,6106,111.262809,121.421483,131.132973,137.356596,I,Above,Hip,0,5701,,42.3657941,0,0,,,,1,1,,0.03,nav,1,1970,2,, 26600,NJBF000054939,19 AMBLER RD,Somers Point,NJ,39.32470416,-74.60806468,RES1,3001,,16,NE,1968,1968,3101,1,1,2014.407206,2014.407206,3507,NO,15.9,27.35,1,2.61,6106,111.32682,121.473684,131.181088,137.41932,I,Above,Gable,0,5701,,21.62569303,0,0,,,,1,1,,0.03,nav,1,1968,1,, 26601,NJBF000054642,21 PRINCETON RD,Somers Point,NJ,39.32394585,-74.60619632,RES1,3001,,16,NE,1962,1962,3101,1,1,1665.120902,1665.120902,3507,NO,19.37,28.44,1,0.95,6112,111.373356,121.514499,131.219184,137.468746,I,Above,Gable,0,5701,,23.90407224,0,0,,,,1,1,,0.35,nav,1,1962,1,, 26602,NJBF000051835,1245 ATKINSON AVE,Somers Point,NJ,39.311064,-74.6147025,RES1,3001,,15,NE,1926,1926,3102,2,1,1526.398983,1526.398983,3507,NO,32.19,38.53,1,1.64,6112,111.466579,121.535527,131.224384,137.477256,I,Above,Gable,0,5701,,35.36032179,0,0,,,,1,1,,0.35,nav,1,1926,2,, 26603,NJBF000055105,14 COLGATE RD,Somers Point,NJ,39.32513978,-74.61027889,RES1,3001,,16,NE,1970,1970,3101,2,1,1650.547533,1650.547533,3507,NO,28.93,36.32,1,-0.02,6106,111.280694,121.43108,131.141188,137.36736,I,Above,Gable,0,5701,,32.62546402,0,0,,,,1,1,,0.03,nav,1,1970,2,, 26604,NJBF000051834,77 GREATE BAY DR,Somers Point,NJ,39.31106247,-74.60773749,RES3A,3001,,29,NE,1977,1977,3301,2,1,1960.685152,1960.685152,3507,NO,39.59,53.66,1,2.32,6106,111.583569,121.650665,131.335364,137.619931,I,Above,Hip,0,5701,,46.62341055,0,0,,,,1,1,,0.03,nav,1,1977,2,, 26605,NJBF000056826,25 CHAPMAN BLVD,Somers Point,NJ,39.32934428,-74.60057825,RES1,3001,,16,NE,1967,1967,3101,2,1,1334.240985,1334.240985,3507,NO,35.61,49.12,1,-0.41,6112,111.374372,121.543649,131.249238,137.507264,I,Above,Flat,0,5701,,42.36556681,0,0,,,,1,1,,0.35,nav,1,1967,2,, 26606,NJBF000056382,41 BUCKNELL RD,Somers Point,NJ,39.32836005,-74.61079817,RES1,3001,,16,NE,1978,1978,3101,2,1,1292.589026,1292.589026,3507,NO,33.02,45.77,1,2.51,6106,111.21187,121.382699,131.097511,137.310195,I,Above,Gable,0,5701,,39.39674025,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26607,NJBF000056607,1038 W GROVELAND AVE,Somers Point,NJ,39.3288673,-74.60735947,RES1,3001,,16,NE,1971,1971,3101,2,1,1210.368257,1210.368257,3507,NO,26.93,40.57,1,2.26,6106,111.261846,121.434528,131.146316,137.373963,I,Above,Hip,0,5701,,33.7507873,0,0,,,,1,1,,0.03,nav,1,1971,2,, 26608,NJBF000051573,17 BROADWAY,Somers Point,NJ,39.30850777,-74.60313683,RES1,3001,,17,NE,1994,1994,3102,2,1,2370.27352,2370.27352,3507,NO,24.72,38.47,1,0.94,6110,111.709645,121.759644,131.437034,137.749746,I,Above,Gable,0,5701,,31.59288114,0,0,,,,1,1,,0.03,nav,1,1994,2,, 26609,NJBF000056569,,Somers Point,NJ,39.32877542,-74.60400686,RES1,3001,,NaN,NE,1969,0,3101,1,1,2619.989359,2619.989359,3507,NO,14.78,25.56,1,-0.53,6112,111.322837,121.49236,131.200681,137.44458,I,Above,Gable,0,5701,,20.16996753,0,0,,,,1,1,,0.35,nav,1,1969,1,, 26610,NJBF000052216,84 MAYS LANDING RD,Somers Point,NJ,39.31426073,-74.61930539,COM1,3001,999,NaN,ME,1969,1964,3401,2,1,2077.525717,2077.525717,3507,NO,28.84,40.96,1,1.6,6112,111.333174,121.418686,131.117364,137.337381,I,Above,Flat,0,5701,,34.89964267,0,0,,,,1,1,,1,nav,1,1969,2,, 26611,NJBF000056740,,Somers Point,NJ,39.32915031,-74.6054494,RES3D,3001,,NaN,E,1969,0,3303,4,1,7992.643304,7992.643304,3507,NO,53.94,61.59,1,1.13,6110,111.290232,121.463393,131.173533,137.409365,I,Above,Flat,0,5701,,57.76381626,0,0,,,,1,1,,0.35,nav,1,1969,4,, 26612,NJBF000056626,,Somers Point,NJ,39.32890011,-74.60508251,RES3D,3001,,NaN,E,1969,0,3303,4,1,7542.429382,7542.429382,3507,NO,77.54,88.61,1,1.21,6110,111.301353,121.472623,131.182136,137.420537,I,Above,Gable,0,5701,,83.07453652,0,0,,,,1,1,,0.35,nav,1,1969,4,, 26613,NJBF000056302,9 RUTGERS RD,Somers Point,NJ,39.32817237,-74.60659162,RES1,3001,,16,NE,1969,1969,3101,1,1,2252.995201,2252.995201,3507,NO,18.66,29.97,1,1.68,6106,111.288187,121.455957,131.166195,137.399845,I,Above,Hip,0,5701,,24.31612062,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26614,NJBF000056301,19 COOPER DR,Somers Point,NJ,39.328168,-74.603846,RES1,3001,,16,NE,1971,1971,3101,1,1,1696.529174,1696.529174,3507,NO,14.54,24.73,1,-0.99,6110,111.336917,121.502457,131.209991,137.456649,I,Above,Gable,0,5701,,19.63585579,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26615,NJBF000056262,32 BUCKNELL RD,Somers Point,NJ,39.32809197,-74.61050074,RES1,3001,,16,NE,1978,1978,3101,1,1,2140.450817,2140.450817,3507,NO,19.6,25.16,1,2.74,6106,111.221941,121.390986,131.105156,137.320208,I,Above,Gable,0,5701,,22.38097173,0,0,,,,1,1,,0.03,nav,1,1978,1,, 26616,NJBF000052164,80 MAYS LANDING RD,Somers Point,NJ,39.313205,-74.617781,RES1,3001,,16,NE,1965,1965,3101,1,4,842.8828559,842.8828559,3505,NO,17,29.37,3,-0.8,6112,111.377096,121.457327,131.152698,137.383729,I,Above,Gable,0,5701,,23.18476073,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 26617,NJBF000056224,21 COOPER DR,Somers Point,NJ,39.3279945,-74.6039885,RES1,3001,,16,NE,1973,1973,3101,2,1,1379.760561,1379.760561,3507,NO,28.15,42.33,1,1.88,6110,111.337572,121.502155,131.209643,137.456204,I,Above,Gable,0,5701,,35.23650026,0,0,,,,1,1,,0.35,nav,1,1973,2,, 26618,NJBF000056468,39 BUCKNELL RD,Somers Point,NJ,39.32853394,-74.61058707,RES1,3001,,16,NE,1979,1979,3101,2,1,1383.348686,1383.348686,3507,NO,27.1,38.86,1,-0.49,6106,111.212227,121.384123,131.09892,137.312041,I,Above,Gable,0,5701,,32.98070498,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26619,NJBF000056237,1024 W GROVELAND AVE,Somers Point,NJ,39.32802203,-74.6056528,RES1,3001,,16,NE,1967,1967,3101,1,1,1948.69262,1948.69262,3507,NO,12.17,24.88,1,-0.61,6106,111.307505,121.473658,131.182795,137.421411,I,Above,Gable,0,5701,,18.52387471,0,0,,,,1,1,,0.03,nav,1,1967,1,, 26620,NJBF000056005,24 FRANKLIN DR,Somers Point,NJ,39.3275015,-74.6036805,RES1,3001,,16,NE,1968,1968,3101,2,1,1762.485709,1762.485709,3507,NO,25.57,37.73,1,0,6112,111.352186,121.51338,131.220043,137.469673,I,Above,Gable,0,5701,,31.64968346,0,0,,,,1,1,,0.35,nav,1,1968,2,, 26621,NJBF000056123,18 DARTMOUTH RD,Somers Point,NJ,39.32777226,-74.60815599,RES1,3001,,16,NE,1971,1971,3101,1,1,1674.400951,1674.400951,3507,NO,10.01,17.82,1,-0.64,6106,111.2683,121.434435,131.145792,137.373292,I,Above,Gable,0,5701,,13.91683094,0,0,,,,1,1,,0.03,nav,1,1971,1,, 26622,NJBF000056071,16 DARTMOUTH RD,Somers Point,NJ,39.32765514,-74.60793685,RES1,3001,,16,NE,1971,1971,3101,1,1,2140.781054,2140.781054,3507,NO,11.3,17.41,1,0.59,6110,111.27428,121.439561,131.150559,137.379505,I,Above,Gable,0,5701,,14.35356606,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26623,NJBF000056420,20 COOPER DR,Somers Point,NJ,39.3284275,-74.604274,RES1,3001,,43,NE,1970,1970,3101,1,2,2251.82207,2251.82207,3507,NO,14.43,26.26,1,1.47,6112,111.324494,121.492063,131.200284,137.444075,I,Above,Gable,0,5701,,20.34603193,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26624,NJBF000056103,36 BUCKNELL RD,Somers Point,NJ,39.32774117,-74.61087718,RES1,3001,,16,NE,1978,1978,3101,2,1,1226.977933,1226.977933,3507,NO,39.89,50.35,1,2.43,6106,111.22207,121.388962,131.103094,137.317508,I,Above,Hip,0,5701,,45.12080156,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26625,NJBF000056200,172 EXTON RD,Somers Point,NJ,39.3279565,-74.608937,RES1,3001,,16,NE,1978,1978,3101,2,1,1417.254866,1417.254866,3507,NO,33.68,47.27,1,0.72,6106,111.251351,121.41901,131.131385,137.354497,I,Above,Gable,0,5701,,40.4715058,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26626,NJBF000051559,23 BROADWAY,Somers Point,NJ,39.30832817,-74.60395118,RES1,3001,,18,NE,2002,2002,3102,2,1,1942.673445,1942.673445,3507,NO,33.14,41.92,1,2.17,6110,111.698714,121.748409,131.42585,137.73564,I,Above,Gable,0,5701,,37.53089752,0,0,,,,1,1,,0.03,nav,1,2002,2,, 26627,NJBF000056252,45 BUCKNELL RD,Somers Point,NJ,39.32806254,-74.61109459,RES1,3001,,16,NE,1979,1979,3101,2,1,1931.116646,1931.116646,3507,NO,36.97,48.97,1,1.39,6106,111.212351,121.381339,131.096103,137.308349,I,Above,Gable,0,5701,,42.9671533,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26628,NJBF000056027,38 BUCKNELL RD,Somers Point,NJ,39.3275496,-74.61100629,RES1,3001,,16,NE,1978,1978,3101,2,1,1641.238773,1641.238773,3507,NO,36.01,42.59,1,-0.24,6106,111.223435,121.389137,131.103164,137.317602,I,Above,Flat,0,5701,,39.29964607,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26629,NJBF000055769,14 STANFORD RD,Somers Point,NJ,39.3269279,-74.60838167,RES1,3001,,16,NE,1971,1971,3101,1,1,2260.502017,2260.502017,3507,NO,17.48,23.44,1,1.79,6110,111.280063,121.440965,131.151533,137.38079,I,Above,Hip,0,5701,,20.45934379,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26630,NJBF000056137,25 BUCKNELL RD,Somers Point,NJ,39.3277981,-74.60962822,RES1,3001,,16,NE,1978,1978,3101,1,1,2336.974544,2336.974544,3507,NO,18.41,30.46,1,2.9,6106,111.242383,121.409297,131.122196,137.342498,I,Above,Gable,0,5701,,24.43556817,0,0,,,,1,1,,0.03,nav,1,1978,1,, 26631,NJBF000056274,14 RUTGERS RD,Somers Point,NJ,39.32811391,-74.60737417,RES1,3001,,16,NE,1971,1971,3101,1,1,1795.340912,1795.340912,3507,NO,13.52,21.1,1,0.6,6110,111.275567,121.443455,131.154416,137.38452,I,Above,Gable,0,5701,,17.30703013,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26632,NJBF000054600,130 BALA DR,Somers Point,NJ,39.32384842,-74.61559209,RES1,3001,,16,NE,1959,1959,3101,1,1,1395.033123,1395.033123,3507,NO,18.32,23.88,1,1.86,6106,111.215825,121.358214,131.071636,137.276311,I,Above,Gable,0,5701,,21.10100225,0,0,,,,1,1,,0.03,nav,1,1959,1,, 26633,NJBF000054632,26 OSBORNE RD,Somers Point,NJ,39.32392361,-74.60544924,RES1,3001,,16,NE,1961,1961,3101,2,1,1462.566285,1462.566285,3507,NO,29.67,43.76,1,2.51,6112,111.386854,121.527352,131.231344,137.484467,I,Above,Flat,0,5701,,36.71484674,0,0,,,,1,1,,0.35,nav,1,1961,2,, 26634,NJBF000056017,20 BUCKNELL RD,Somers Point,NJ,39.32753052,-74.61053912,RES1,3001,,16,NE,1978,1978,3101,2,1,1422.212324,1422.212324,3507,NO,29.62,42.77,1,1.37,6106,111.23175,121.39723,131.110746,137.327527,I,Above,Gable,0,5701,,36.19765138,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26635,NJBF000054513,128 BALA DR,Somers Point,NJ,39.32359433,-74.61562336,RES1,3001,,16,NE,1968,1968,3101,1,1,1505.483419,1505.483419,3507,NO,12.27,19.7,1,0.16,6106,111.220048,121.360879,131.073925,137.279331,I,Above,Gable,0,5701,,15.98543477,0,0,,,,1,1,,0.03,nav,1,1968,1,, 26636,NJBF000051588,1407 ROBERTS AVE,Somers Point,NJ,39.30867624,-74.61624332,RES1,3001,,16,NE,1982,1982,3102,2,1,1587.570517,1587.570517,3507,NO,37.9,52.49,1,1.59,6106,111.484978,121.541107,131.225687,137.479531,I,Above,Gable,0,5701,,45.19366366,0,0,,,,1,1,,0.03,nav,1,1982,2,, 26637,NJBF000052289,18 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,2002,3102,2,1,950.6626999,950.6626999,3505,NO,26.17,33.85,3,-2.54,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,30.0138546,0,0,,,,1,1,,0.03,nav,1,2007,2,, 26638,NJBF000051576,15 BROADWAY,Somers Point,NJ,39.30856553,-74.60286598,RES1,3001,,16,NE,1986,1986,3102,2,1,2710.895198,2710.895198,3507,NO,36.42,41.48,1,-0.01,6112,111.713332,121.763413,131.440782,137.754469,I,Above,Gable,0,5701,,38.94981859,0,0,,,,1,1,,0.03,nav,1,1986,2,, 26639,NJBF000051581,13 BROADWAY,Somers Point,NJ,39.30862805,-74.60257426,RES1,3001,,16,NE,1987,1987,3102,1,1,3163.907464,3163.907464,3507,NO,17.54,28.03,1,-0.81,6106,111.717321,121.767482,131.444826,137.759565,I,Above,Gable,0,5701,,22.78747478,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 26640,NJBF000055706,61 BUCKNELL RD,Somers Point,NJ,39.32678708,-74.61243017,RES1,3001,,16,NE,1979,1979,3101,2,1,1383.480062,1383.480062,3507,NO,32.06,37.95,1,-0.83,6106,111.213569,121.374599,131.089119,137.299198,I,Above,Gable,0,5701,,35.00701594,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26641,NJBF000054786,16 JEFFERSON AVE,Somers Point,NJ,39.32430732,-74.60208795,RES1,3001,,16,NE,1966,1966,3101,1,1,1572.281593,1572.281593,3507,NO,17.53,27.05,1,-0.19,6110,111.439458,121.579349,131.280915,137.548305,I,Above,Gable,0,5701,,22.28784196,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26642,NJBF000055821,1419 MASSACHUSETTS AVE,Somers Point,NJ,39.32705506,-74.60926189,RES1,3001,,16,NE,1960,1960,3101,1,1,1537.661183,1537.661183,3507,NO,11.75,25.3,1,1,6106,111.262508,121.424579,131.136188,137.36078,I,Above,Hip,0,5701,,18.52668861,0,0,,,,1,1,,0.03,nav,1,1960,1,, 26643,NJBF000055763,120 HADDON RD,Somers Point,NJ,39.32691013,-74.60509346,RES1,3001,,16,NE,1966,1966,3101,2,1,1248.063153,1248.063153,3507,NO,25.21,37.66,1,1.56,6106,111.337973,121.496692,131.204035,137.448983,I,Above,Gable,0,5701,,31.43662046,0,0,,,,1,1,,0.03,nav,1,1966,2,, 26644,NJBF000051566,19 BROADWAY,Somers Point,NJ,39.30843154,-74.60341854,RES1,3001,,17,NE,1994,1994,3102,2,1,2134.447859,2134.447859,3507,NO,29,43.34,1,2.22,6106,111.706099,121.755924,131.433306,137.745049,I,Above,Gable,0,5701,,36.16574041,0,0,,,,1,1,,0.03,nav,1,1994,2,, 26645,NJBF000055732,123 HADDON RD,Somers Point,NJ,39.32683516,-74.60455043,RES1,3001,,16,NE,1966,1966,3101,1,1,2037.931616,2037.931616,3507,NO,20.26,32.76,1,0.83,6110,111.348981,121.506786,131.213529,137.461275,I,Above,Hip,0,5701,,26.50817402,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26646,NJBF000056442,31 BUCKNELL RD,Somers Point,NJ,39.32847799,-74.60943696,RES1,3001,,16,NE,1979,1979,3101,2,1,1550.703963,1550.703963,3507,NO,37.37,46.56,1,-0.76,6106,111.233006,121.404194,131.117705,137.336624,I,Above,Gable,0,5701,,41.96623368,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26647,NJBF000052056,714 BAY AVE,Somers Point,NJ,39.31268063,-74.5920604,RES1,3001,,17,NE,2005,2005,3102,2,1,2448.601351,2448.601351,3505,NO,38.23,45.78,3,8.92,6106,111.833313,121.892574,131.571694,137.917992,I,Above,Gable,0,5701,,42.00793394,0,0,,,,1,1,,0.03,nav,1,2005,2,, 26648,NJBF000053355,19 LAUREL DR SOUTH,Somers Point,NJ,39.31962573,-74.61516434,RES1,3001,,16,NE,1965,1965,3101,1,1,2168.172521,2168.172521,3507,NO,14.38,20.38,1,2.89,6106,111.301299,121.418502,131.124396,137.345807,I,Above,Gable,0,5701,,17.38367994,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26649,NJBF000054517,5 AMBLER RD,Somers Point,NJ,39.32360981,-74.60925765,RES1,3001,,16,NE,1965,1965,3101,1,1,2673.853206,2673.853206,3507,NO,20,34.5,1,2.58,6106,111.326559,121.467184,131.174184,137.410408,I,Above,Gable,0,5701,,27.2479629,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26650,NJBF000055715,12 STANFORD RD,Somers Point,NJ,39.32679881,-74.60817779,RES1,3001,,16,NE,1970,1970,3101,1,1,2327.627086,2327.627086,3507,NO,17.29,27.26,1,2.76,6110,111.285994,121.445986,131.156193,137.386862,I,Above,Gable,0,5701,,22.27277745,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26651,NJBF000055218,108 PRINCETON RD,Somers Point,NJ,39.32547112,-74.60529556,RES1,3001,,16,NE,1965,1965,3101,1,1,2084.429597,2084.429597,3507,NO,13.08,23.09,1,2.56,6106,111.360979,121.510891,131.216711,137.465457,I,Above,Gable,0,5701,,18.08452372,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26652,NJBF000055653,121 HADDON RD,Somers Point,NJ,39.32666966,-74.60472224,RES1,3001,,16,NE,1966,1966,3101,1,1,1882.628064,1882.628064,3507,NO,13.42,20.02,1,0.44,6106,111.348977,121.505895,131.21261,137.460094,I,Above,Gable,0,5701,,16.72285176,0,0,,,,1,1,,0.03,nav,1,1966,1,, 26653,NJBF000055628,3 STANFORD RD,Somers Point,NJ,39.32660108,-74.60704416,RES1,3001,,16,NE,1968,1968,3101,1,1,1785.893233,1785.893233,3507,NO,11.32,17.87,1,0.64,6106,111.309399,121.467536,131.176388,137.413134,I,Above,Gable,0,5701,,14.59493019,0,0,,,,1,1,,0.03,nav,1,1968,1,, 26654,NJBF000052242,10 HORTER AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,15,NE,2007,1969,3102,2,1,1487.047638,1487.047638,3505,NO,36.8,41.83,3,-0.42,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,39.31475096,0,0,,,,1,1,,0.03,nav,1,2007,2,, 26655,NJBF000055233,162 BALA DR,Somers Point,NJ,39.32553177,-74.6128356,RES1,3001,,16,NE,1959,1959,3101,1,1,1461.038697,1461.038697,3507,NO,12.29,18.1,1,0.61,6110,111.230157,121.383318,131.096517,137.308923,I,Above,Gable,0,5701,,15.19543192,0,0,,,,1,1,,0.35,nav,1,1959,1,, 26656,NJBF000055971,53 BUCKNELL RD,Somers Point,NJ,39.3274216,-74.61176579,RES1,3001,,16,NE,1978,1978,3101,2,1,1516.113517,1516.113517,3507,NO,39.92,47.3,1,1.58,6106,111.212926,121.377928,131.09259,137.303745,I,Above,Gable,0,5701,,43.60899164,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26657,NJBF000052218,47 GIBBS AVE,Somers Point,NJ,39.31345758,-74.59388574,RES1,3001,,16,NE,1930,1930,3101,2,1,1318.577331,1318.577331,3505,NO,29.41,44.36,3,1.38,6106,111.78571,121.852101,131.533286,137.869854,I,Above,Hip,0,5701,,36.88399358,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 26658,NJBF000052189,55 GIBBS AVE,Somers Point,NJ,39.31332444,-74.59366196,RES1,3001,,16,NE,1930,1930,3102,1,1,1086.060295,1086.060295,3505,NO,12.79,18.83,3,-0.89,6106,111.792237,121.857547,131.538417,137.876301,I,Above,Gable,0,5701,,15.81036758,0,0,,,,1,1,,0.03,nav,1,1930,1,, 26659,NJBF000052226,11 HORTER AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1976,3102,1,1,1406.782033,1406.782033,3505,NO,24.66,31.81,3,5.29,6110,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,28.23723842,0,0,,,,1,1,,0.35,nav,1,2007,1,, 26660,NJBF000051961,,Somers Point,NJ,39.31201546,-74.58854375,RES1,3001,,NaN,NE,1969,0,3102,2,1,3788.438117,3788.438117,3507,NO,34.68,44.56,1,-0.66,6102,111.91063,121.960222,131.636789,137.999035,I,Above,Flat,0,5701,,39.61970648,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26661,NJBF000054477,6 HADDON RD,Somers Point,NJ,39.32348989,-74.60872257,RES1,3001,,16,NE,1963,1963,3101,1,1,2345.568644,2345.568644,3507,NO,11.11,21.35,1,-0.49,6106,111.33797,121.477655,131.183994,137.423163,I,Above,Gable,0,5701,,16.23207482,0,0,,,,1,1,,0.03,nav,1,1963,1,, 26662,NJBF000054458,108 E MEYRAN AVE,Somers Point,NJ,39.32345415,-74.58522398,RES1,3001,,16,NE,1951,1951,3102,2,1,803.4525855,803.4525855,3505,NO,29.36,39.32,3,5.57,6112,111.770312,121.87631,131.564937,137.907846,I,Above,Gable,0,5701,,34.33960738,0,0,,,,1,1,,0.35,nav,1,1951,2,, 26663,NJBF000054440,128 COLWICK DR,Somers Point,NJ,39.32340025,-74.61456997,RES1,3001,,16,NE,1955,1955,3101,2,1,3071.555854,3071.555854,3507,NO,32.42,41.52,1,-0.22,6106,111.241007,121.380878,131.092586,137.30385,I,Above,Gable,0,5701,,36.96598932,0,0,,,,1,1,,0.03,nav,1,1955,2,, 26664,NJBF000055637,100 SHORE RD,Somers Point,NJ,39.32662131,-74.58400705,RES3D,3001,20,NaN,E,1970,1970,3303,2,1,9274.290504,9274.290504,3507,NO,26.81,39.45,1,1.41,6110,111.738289,121.859046,131.549627,137.888245,I,Above,Flat,0,NaN,,33.12810847,0,0,,,,1,1,,0.35,nav,1,1970,2,, 26665,NJBF000055602,100 SHORE RD,Somers Point,NJ,39.32652762,-74.58444884,RES3D,3001,20,NaN,E,1970,1970,3303,2,1,4258.337252,4258.337252,3507,NO,28.99,43.51,1,2.04,6110,111.731247,121.85259,131.543367,137.880448,I,Above,Hip,0,NaN,,36.2536073,0,0,,,,1,1,,0.35,nav,1,1970,2,, 26666,NJBF000054433,173 BALA DR,Somers Point,NJ,39.3233885,-74.61092101,RES1,3001,,16,NE,1958,1958,3101,2,1,1478.026883,1478.026883,3507,NO,41.47,53.75,1,2.64,6110,111.302311,121.442043,131.150263,137.379279,I,Above,Hip,0,5701,,47.60984571,0,0,,,,1,1,,0.35,nav,1,1958,2,, 26667,NJBF000054561,127 COLWICK DR,Somers Point,NJ,39.32373104,-74.61410984,RES1,3001,,16,NE,1957,1957,3101,1,1,2242.942327,2242.942327,3507,NO,15.8,28.23,1,-0.76,6106,111.242465,121.384421,131.096201,137.308576,I,Above,Gable,0,5701,,22.01060567,0,0,,,,1,1,,0.03,nav,1,1957,1,, 26668,NJBF000054977,3 COLGATE RD,Somers Point,NJ,39.3247975,-74.6088545,RES1,3001,,16,NE,1968,1968,3101,1,1,602.0780273,602.0780273,3507,NO,20.25,25.43,1,2.11,6106,111.311445,121.459238,131.167512,137.401667,I,Above,Hip,0,5701,,22.84045539,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 26669,NJBF000054930,3 COLGATE RD,Somers Point,NJ,39.32468262,-74.60906106,RES1,3001,,16,NE,1968,1968,3101,1,1,1979.267327,1979.267327,3507,NO,12.32,26.46,1,0.64,6106,111.310036,121.457197,131.16551,137.399068,I,Above,Hip,0,5701,,19.38947349,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 26670,NJBF000054397,131 DEVON RD,Somers Point,NJ,39.32328253,-74.61176674,RES1,3001,,16,NE,1958,1958,3101,2,1,1388.496737,1388.496737,3507,NO,37.48,52.32,1,2.99,6112,111.28998,121.429196,131.138049,137.363352,I,Above,Hip,0,5701,,44.89820141,0,0,,,,1,1,,0.35,nav,1,1958,2,, 26671,NJBF000054580,162 JORDAN RD,Somers Point,NJ,39.32377733,-74.60438227,RES1,3001,,16,NE,1964,1964,3101,1,1,1928.090987,1928.090987,3507,NO,17.12,31.83,1,-0.99,6112,111.408367,121.547146,131.250014,137.508574,I,Above,Hip,0,5701,,24.47233355,0,0,,,,1,1,,0.35,nav,1,1964,1,, 26672,NJBF000054387,122 EXTON RD,Somers Point,NJ,39.32326206,-74.6133272,RES1,3001,,16,NE,1957,1957,3101,1,1,1265.539851,1265.539851,3507,NO,15.38,22.32,1,1.99,6112,111.264216,121.403366,131.113663,137.331477,I,Above,Gable,0,5701,,18.85148778,0,0,,,,1,1,,0.35,nav,1,1957,1,, 26673,NJBF000052274,8 HORTER AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1976,3102,1,1,1320.83312,1320.83312,3505,NO,17.92,24.24,3,-0.04,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,21.07828362,0,0,,,,1,1,,0.03,nav,1,2007,1,, 26674,NJBF000054570,126 EXTON RD,Somers Point,NJ,39.32375878,-74.61342751,RES1,3001,,16,NE,1957,1957,3101,1,1,2233.361902,2233.361902,3507,NO,18.89,32.42,1,1.73,6110,111.253285,121.39547,131.106631,137.322244,I,Above,Gable,0,5701,,25.65620596,0,1.2,,,,1,1,,0.35,nav,1,1957,1,, 26675,NJBF000054671,17 HADDON RD,Somers Point,NJ,39.32402912,-74.60750596,RES1,3001,,16,NE,1962,1962,3101,1,1,1458.700465,1458.700465,3507,NO,19.02,26.91,1,1.23,6106,111.349006,121.49143,131.197407,137.440536,I,Above,Gable,0,5701,,22.96216346,0,0,,,,1,1,,0.03,nav,1,1962,1,, 26676,NJBF000052151,44 GIBBS AVE,Somers Point,NJ,39.31314018,-74.59403219,RES1,3001,,16,NE,1930,1930,3101,2,1,1497.559177,1497.559177,3505,NO,29.68,40.5,3,6.04,6106,111.788766,121.853612,131.534389,137.871291,I,Above,Gable,0,5701,,35.08927714,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 26677,NJBF000051561,8 BROADWAY,Somers Point,NJ,39.30837954,-74.60144699,RES1,3001,,16,NE,2002,2002,3102,2,1,1621.737774,1621.737774,3507,NO,38.99,45.13,1,0.56,6112,111.741623,121.789403,131.465747,137.786023,I,Above,Hip,0,5701,,42.06012214,0,0,,,,1,1,,0.35,nav,1,2002,2,, 26678,NJBF000051773,60 GREATE BAY DR,Somers Point,NJ,39.31067546,-74.60626233,RES3A,3001,,29,NE,1977,1977,3301,2,1,1959.720771,1959.720771,3507,NO,29.82,43.2,1,1.02,6112,111.615964,121.680087,131.363212,137.655553,I,Above,Gable,0,5701,,36.51012749,0,0,,,,1,1,,0.35,nav,1,1977,2,, 26679,NJBF000053181,56 GULPH MILL RD,Somers Point,NJ,39.31900137,-74.61801112,RES1,3001,,16,NE,1972,1972,3101,1,1,2078.658399,2078.658399,3507,NO,20.96,34.02,1,2.55,6106,111.266507,121.379251,131.086447,137.296147,I,Above,Gable,0,5701,,27.48983571,0,0,,,,1,1,,0.03,nav,1,1972,1,, 26680,NJBF000055440,105 E OCEAN AVE,Somers Point,NJ,39.32610507,-74.58355147,RES1,3001,,16,NE,1984,1984,3102,2,1,1673.601354,1673.601354,3505,NO,34.55,47.17,3,1.77,6112,111.756302,121.873033,131.562946,137.904939,I,Above,Hip,0,5701,,40.86292286,0,1.1,,,,1,1,,0.35,nav,1,1984,2,, 26681,NJBF000051425,,Somers Point,NJ,39.30643055,-74.61084588,RES3D,3001,,NaN,ME,1969,0,3301,1,1,5298.362999,5298.362999,3507,NO,14.69,27.14,1,0.3,6102,111.615265,121.658751,131.33565,137.621447,I,Above,Flat,0,NaN,,20.91533135,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26682,NJBF000052337,14 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1964,3102,1,1,1670.662812,1670.662812,3505,NO,10.98,20.91,3,-2.62,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,15.94634749,0,0,,,,1,1,,0.03,nav,1,2007,1,, 26683,NJBF000051995,114 DECATUR AVE,Somers Point,NJ,39.31227534,-74.591221,RES1,3001,,16,NE,1960,1960,3102,2,1,2657.43594,2657.43594,3505,NO,32.67,41.46,3,6.84,6106,111.856124,121.911788,131.589909,137.940764,I,Above,Gable,0,5701,,37.06616159,0,0,,,,1,1,,0.03,nav,1,1960,2,, 26684,NJBF000053294,14 WISTERIA WALK,Somers Point,NJ,39.31940993,-74.61434399,RES1,3001,,16,NE,1966,1966,3101,1,1,2176.622439,2176.622439,3507,NO,17.19,24.31,1,0.78,6106,111.318819,121.43486,131.139668,137.365784,I,Above,Gable,0,5701,,20.74818455,0,0,,,,1,1,,0.03,nav,1,1966,1,, 26685,NJBF000051999,901 MAYS LANDING RD,Somers Point,NJ,39.31229984,-74.60863082,COM8,3001,612,NaN,ME,1969,0,3401,2,1,23998.1359,23998.1359,3507,NO,33.03,45.05,1,2.63,6112,111.545669,121.620041,131.307636,137.584182,I,Above,Hip,0,NaN,,39.0366027,0,0,,,,1,1,,1,nav,1,1969,2,, 26686,NJBF000053182,4 FRESH SPRING COVE,Somers Point,NJ,39.31900202,-74.61696875,RES1,3001,,16,NE,1972,1972,3101,1,1,2227.531869,2227.531869,3507,NO,11.77,20.62,1,-0.27,6106,111.283357,121.396483,131.102789,137.317586,I,Above,Hip,0,5701,,16.19606715,0,0,,,,1,1,,0.03,nav,1,1972,1,, 26687,NJBF000052054,55 HIGBEE AVE,Somers Point,NJ,39.31267402,-74.59395129,RES1,3001,,16,NE,2007,2007,3101,1,1,2145.966464,2145.966464,3505,NO,22.08,36.51,3,6.07,6110,111.798651,121.8608,131.540822,137.879427,I,Above,Gable,0,5701,,29.29528483,0,1.1,,,,1,1,,0.35,nav,1,2007,1,, 26688,NJBF000052141,,Somers Point,NJ,39.31388406,-74.62512521,RES3B,3001,,NaN,E,1969,0,3303,3,1,5733.314463,5733.314463,3507,NO,52.58,66.05,1,-0.22,6106,111.248616,121.32846,131.030474,137.223226,I,Above,Flat,0,5701,,59.3170887,0,0,,,,1,1,,0.03,nav,1,1969,3,, 26689,NJBF000052300,15 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,15,NE,2007,1962,3102,1,1,2118.163552,2118.163552,3505,NO,13.75,24.18,3,-1.31,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,18.96536492,0,0,,,,1,1,,0.03,nav,1,2007,1,, 26690,NJBF000055436,124 OSBORNE RD,Somers Point,NJ,39.32609426,-74.60333672,RES1,3001,,16,NE,1964,1964,3101,1,1,1485.548917,1485.548917,3507,NO,22.13,34.94,1,2.96,6110,111.384243,121.536348,131.241122,137.496957,I,Above,Hip,0,5701,,28.53466709,0,0,,,,1,1,,0.35,nav,1,1964,1,, 26691,NJBF000053170,6 FRESH SPRING COVE,Somers Point,NJ,39.31897138,-74.61671004,RES1,3001,,16,NE,1965,1965,3101,1,1,1951.558441,1951.558441,3507,NO,12.92,21.26,1,1.9,6106,111.288142,121.401167,131.107194,137.323362,I,Above,Gable,0,5701,,17.087884,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26692,NJBF000051979,136 DECATUR AVE,Somers Point,NJ,39.31213153,-74.5910647,RES1,3001,,16,NE,1930,1930,3102,1,1,1183.455938,1183.455938,3505,NO,18.28,30.71,3,5.94,6106,111.86158,121.916203,131.594039,137.94593,I,Above,Gable,0,5701,,24.49468326,0,0,,,,1,1,,0.03,nav,1,1930,1,, 26693,NJBF000055473,127 OSBORNE RD,Somers Point,NJ,39.32619093,-74.60260608,RES1,3001,,16,NE,1964,1964,3101,1,1,1880.574569,1880.574569,3507,NO,10.91,22.41,1,-0.02,6112,111.395543,121.547527,131.251752,137.510657,I,Above,Gable,0,5701,,16.66483778,0,0,,,,1,1,,0.35,nav,1,1964,1,, 26694,NJBF000052752,,Somers Point,NJ,39.31690793,-74.58703143,COM8,3001,,NaN,ME,1983,0,3401,3,1,4083.957199,4083.957199,3507,NO,56.26,62.79,1,0.76,6106,111.851845,121.925326,131.607815,137.962247,I,Above,Flat,0,NaN,,59.52358675,0,0,,,,1,1,,0.03,nav,1,1983,3,, 26695,NJBF000052029,110 DECATUR AVE,Somers Point,NJ,39.31252013,-74.59159618,RES1,3001,,16,NE,1930,1930,3102,1,1,1526.480845,1526.480845,3505,NO,20.47,26.6,3,8.3,6106,111.844784,121.902407,131.581068,137.929708,I,Above,Gable,0,5701,,23.53705466,0,0,,,,1,1,,0.03,nav,1,1930,1,, 26696,NJBF000051552,27 BROADWAY,Somers Point,NJ,39.30825061,-74.60436179,RES1,3001,,17,NE,1995,1995,3102,2,1,2021.148038,2021.148038,3507,NO,33.95,48.9,1,-0.05,6112,111.692966,121.742566,131.420057,137.728325,I,Above,Gable,0,5701,,41.42840076,0,0,,,,1,1,,0.35,nav,1,1995,2,, 26697,NJBF000051543,29 BROADWAY,Somers Point,NJ,39.30817158,-74.60456012,RES1,3001,,17,NE,1981,1981,3102,2,1,1420.231004,1420.231004,3507,NO,31.39,36.46,1,-0.25,6112,111.690963,121.740287,131.417722,137.725386,I,Above,Gable,0,5701,,33.92434665,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 26698,NJBF000052069,719 BAY AVE,Somers Point,NJ,39.31276093,-74.59253545,RES1,3001,,16,NE,1950,1950,3102,1,1,713.0528494,713.0528494,3505,NO,14.32,26.38,3,0.29,6106,111.823109,121.883567,131.563034,137.907171,I,Above,Hip,0,5701,,20.34865662,0,0,,,,1,1,,0.03,nav,1,1950,1,, 26699,NJBF000052033,48 HIGBEE AVE,Somers Point,NJ,39.3125295,-74.59446471,RES1,3001,,16,NE,1930,1930,3101,1,1,1278.546534,1278.546534,3505,NO,20.9,31.13,3,7.98,6112,111.79186,121.853962,131.534014,137.870932,I,Above,Gable,0,5701,,26.01170657,0,0,,,,1,1,,0.35,nav,1,1930,1,, 26700,NJBF000054211,12 OSBORNE RD,Somers Point,NJ,39.32274689,-74.60684283,RES1,3001,,16,NE,1961,1961,3101,1,1,1515.130754,1515.130754,3507,NO,14.15,19.95,1,2.39,6110,111.38423,121.518454,131.22207,137.472564,I,Above,Gable,0,5701,,17.04716547,0,0,,,,1,1,,0.35,nav,1,1961,1,, 26701,NJBF000053971,13 GULPH MILL RD,Somers Point,NJ,39.32196819,-74.61628399,RES1,3001,,16,NE,1968,1968,3101,1,1,2038.324731,2038.324731,3507,NO,16.27,21.71,1,0.08,6110,111.239484,121.370303,131.081291,137.289106,I,Above,Hip,0,5701,,18.99349842,0,0,,,,1,1,,0.35,nav,1,1968,1,, 26702,NJBF000053286,1 FRESH SPRING COVE,Somers Point,NJ,39.31938872,-74.61713172,RES1,3001,,16,NE,1972,1972,3101,1,1,2392.483867,2392.483867,3507,NO,11.67,21.39,1,0.51,6106,111.273542,121.388865,131.096029,137.30868,I,Above,Flat,0,5701,,16.5266885,0,0,,,,1,1,,0.03,nav,1,1972,1,, 26703,NJBF000058863,27 WILSON AVE,Somers Point,NJ,39.333078,-74.606061,RES1,3001,,16,NE,1984,1984,3101,2,1,1640.994839,1640.994839,3507,NO,24.47,37.07,1,0.48,6106,111.206543,121.405666,131.120111,137.339838,I,Above,Gable,0,5701,,30.77008298,0,0,,,,1,1,,0.03,nav,1,1984,2,, 26704,NJBF000051958,101 HIGBEE AVE,Somers Point,NJ,39.31199934,-74.5927872,COM8,3001,,NaN,ME,1936,1936,3401,1,1,5099.588328,5099.588328,3507,NO,14.53,20.44,1,0.47,6106,111.832174,121.88884,131.567262,137.912589,I,Above,Hip,0,NaN,,17.48378953,0,0,,,,1,1,,0.03,nav,1,1936,1,, 26705,NJBF000059037,61 DEFEO LN,Somers Point,NJ,39.33341151,-74.60398968,RES1,3001,,16,NE,1985,1985,3101,2,1,1797.416216,1797.416216,3507,NO,35.9,42.45,1,1.52,6112,111.237509,121.436858,131.149297,137.377872,I,Above,Gable,0,5701,,39.17410773,0,0,,,,1,1,,0.35,nav,1,1985,2,, 26706,NJBF000059039,71 DEFEO LN,Somers Point,NJ,39.33341638,-74.60537286,RES1,3001,,16,NE,1984,1984,3101,1,1,1507.077217,1507.077217,3507,NO,12.78,21.05,1,-0.46,6110,111.212557,121.413307,131.127261,137.349175,I,Above,Gable,0,5701,,16.91463368,0,0,,,,1,1,,0.35,nav,1,1984,1,, 26707,NJBF000054379,126 COLWICK DR,Somers Point,NJ,39.323234,-74.614388,RES1,3001,,16,NE,1955,1955,3101,2,1,1372.321463,1372.321463,3507,NO,38.65,49.09,1,1.65,6106,111.247108,121.385995,131.097264,137.309994,I,Above,Gable,0,5701,,43.87404003,0,0,,,,1,1,,0.03,nav,1,1955,2,, 26708,NJBF000053958,11 GULPH MILL RD,Somers Point,NJ,39.32192208,-74.61602677,RES1,3001,,16,NE,1967,1967,3101,1,1,2653.366457,2653.366457,3507,NO,20.82,27.38,1,1.89,6110,111.244539,121.375159,131.085826,137.295067,I,Above,Gable,0,5701,,24.10213646,0,0,,,,1,1,,0.35,nav,1,1967,1,, 26709,NJBF000055010,105 PRINCETON RD,Somers Point,NJ,39.32489424,-74.60523373,RES1,3001,,16,NE,1965,1965,3101,2,1,1893.246161,1893.246161,3507,NO,37.78,51.23,1,0.19,6106,111.372728,121.519027,131.224073,137.47501,I,Above,Hip,0,5701,,44.50721774,0,0,,,,1,1,,0.03,nav,1,1965,2,, 26710,NJBF000051904,123 HIGBEE AVE,Somers Point,NJ,39.31164116,-74.59231104,RES1,3001,,16,NE,1930,1930,3102,1,1,1092.478551,1092.478551,3505,NO,11.33,20.15,3,-1.42,6106,111.847374,121.901333,131.578984,137.927273,I,Above,Gable,0,5701,,15.73967768,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 26711,NJBF000054750,133 COLWICK DR,Somers Point,NJ,39.32422367,-74.61367808,RES1,3001,,16,NE,1957,1957,3101,1,1,1909.065933,1909.065933,3507,NO,16.22,25.54,1,0.78,6110,111.240464,121.385488,131.097603,137.310391,I,Above,Hip,0,5701,,20.87902177,0,0,,,,1,1,,0.35,nav,1,1957,1,, 26712,NJBF000055366,154 BALA DR,Somers Point,NJ,39.32588822,-74.6137439,RES1,3001,,16,NE,1959,1959,3101,2,1,1303.15235,1303.15235,3507,NO,20.95,27.74,1,-0.47,6110,111.208344,121.363685,131.078322,137.285036,I,Above,Hip,0,5701,,24.34497593,0,0,,,,1,1,,0.35,nav,1,1959,2,, 26713,NJBF000054670,165 BALA DR,Somers Point,NJ,39.3240238,-74.61163986,RES1,3001,,16,NE,1958,1958,3101,1,1,1441.858167,1441.858167,3507,NO,11.76,19.14,1,1.02,6106,111.27835,121.422094,131.13193,137.355323,I,Above,Gable,0,5701,,15.45269863,0,0,,,,1,1,,0.03,nav,1,1958,1,, 26714,NJBF000054723,130 EXTON RD,Somers Point,NJ,39.32415711,-74.61312389,RES1,3001,,16,NE,1957,1957,3101,1,1,1759.385875,1759.385875,3507,NO,10.74,16.19,1,-0.87,6106,111.250951,121.395591,131.107061,137.322788,I,Above,Gable,0,5701,,13.46927201,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, 26715,NJBF000054644,12 HADDON RD,Somers Point,NJ,39.32395016,-74.60816203,RES1,3001,,16,NE,1962,1962,3101,2,1,1363.149539,1363.149539,3507,NO,25.88,34.84,1,0.87,6106,111.339115,121.481378,131.187847,137.428138,I,Above,Gable,0,5701,,30.36159511,0,0,,,,1,1,,0.03,nav,1,1962,2,, 26716,NJBF000054695,1112 MASSACHUSETTS AVE,Somers Point,NJ,39.32408062,-74.60568408,RES1,3001,,16,NE,1961,1961,3101,1,1,1054.576155,1054.576155,3507,NO,13.83,20.88,1,1.08,6112,111.37983,121.521456,131.225862,137.477373,I,Above,Gable,0,5701,,17.35642986,0,0,,,,1,1,,0.35,nav,1,1961,1,, 26717,NJBF000051888,751 BAY AVE,Somers Point,NJ,39.31146638,-74.5938219,RES1,3001,,18,NE,2002,2002,3102,2,1,1528.668684,1528.668684,3505,NO,23,31.5,3,1.18,6106,111.822778,121.878091,131.556163,137.898832,I,Above,Flat,0,5701,,27.25225013,0,0,,,,1,1,,0.03,nav,1,2002,2,, 26718,NJBF000054719,132 COLWICK DR,Somers Point,NJ,39.32415505,-74.61439201,RES1,3001,,16,NE,1957,1957,3101,2,1,1453.494537,1453.494537,3507,NO,22.17,29.05,1,-0.11,6106,111.229894,121.374412,131.087127,137.29665,I,Above,Hip,0,5701,,25.61044695,0,0,,,,1,1,,0.03,nav,1,1957,2,, 26719,NJBF000055926,40 BUCKNELL RD,Somers Point,NJ,39.327301,-74.611296,RES1,3001,,16,NE,1978,1978,3101,2,1,1400.05649,1400.05649,3507,NO,28.91,38,1,2.32,6106,111.22315,121.38732,131.101333,137.315205,I,Above,Flat,0,5701,,33.4583135,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26720,NJBF000055877,121 N AMBLER RD,Somers Point,NJ,39.32718861,-74.6055313,RES1,3001,,16,NE,1967,1967,3101,2,1,1521.688435,1521.688435,3507,NO,34.82,49.73,1,-0.24,6106,111.325074,121.485882,131.193964,137.435924,I,Above,Hip,0,5701,,42.2750941,0,0,,,,1,1,,0.03,nav,1,1967,2,, 26721,NJBF000051723,37 SOMERS AVE,Somers Point,NJ,39.31024128,-74.59597129,RES1,3001,,16,NE,1920,1920,3102,2,1,1223.102868,1223.102868,3505,NO,26.21,35.55,3,5.13,6110,111.805753,121.857384,131.53446,137.871933,I,Above,Gable,0,5701,,30.88475468,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 26722,NJBF000053662,4 MALVERN RD,Somers Point,NJ,39.32079814,-74.61594397,RES1,3001,,16,NE,1967,1967,3101,1,1,2284.712966,2284.712966,3507,NO,20.86,34.43,1,2.76,6106,111.266773,121.390721,131.099372,137.312929,I,Above,Gable,0,5701,,27.64753385,0,0,,,,1,1,,0.03,nav,1,1967,1,, 26723,NJBF000055960,18 BUCKNELL RD,Somers Point,NJ,39.32736812,-74.61073325,RES1,3001,,16,NE,1979,1979,3101,1,1,1668.162773,1668.162773,3507,NO,18.44,32.62,1,-0.25,6106,111.231478,121.395968,131.10948,137.325871,I,Above,Flat,0,5701,,25.52643031,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 26724,NJBF000055268,184 JORDAN RD,Somers Point,NJ,39.3256109,-74.60251215,RES1,3001,,16,NE,1964,1964,3101,1,1,1758.672115,1758.672115,3507,NO,13.68,22.41,1,2.83,6110,111.407895,121.556205,131.259683,137.520907,I,Above,Gable,0,5701,,18.04429657,0,1.1,,,,1,1,,0.35,nav,1,1964,1,, 26725,NJBF000054038,213 BAY AVE,Somers Point,NJ,39.32217758,-74.585045,RES1,3001,,16,NE,1973,1973,3102,2,1,1275.292237,1275.292237,3505,NO,42.87,57.59,3,8.64,6106,111.796341,121.894806,131.582116,137.929449,I,Above,Gable,0,5701,,50.228929,0,0,,,,1,1,,0.03,nav,1,1973,2,, 26726,NJBF000053293,118 E GROVELAND AVE,Somers Point,NJ,39.31940642,-74.58846163,RES1,3001,,16,NE,1982,1982,3102,1,1,1609.063505,1609.063505,3505,NO,8.36,21.04,3,-2.93,6112,111.78012,121.870366,131.5566,137.898058,I,Above,Gable,0,5701,,14.70029292,0,0,,,,1,1,,0.35,nav,1,1982,1,, 26727,NJBF000056996,,Somers Point,NJ,39.32971016,-74.60448247,RES3D,3001,,NaN,E,1969,0,3303,3,1,7205.512136,7205.512136,3507,NO,50.26,57.42,1,2.86,6112,111.297078,121.472986,131.182716,137.421276,I,Above,Hip,0,NaN,,53.84290825,0,0,,,,1,1,,0.35,nav,1,1969,3,, 26728,NJBF000057398,24 CRESTVIEW DR,Somers Point,NJ,39.33050514,-74.59725574,RES1,3001,,16,NE,1973,1973,3101,2,1,1466.709316,1466.709316,3507,NO,33.18,47.8,1,-0.28,6112,111.414599,121.586218,131.28974,137.559235,I,Above,Gable,0,5701,,40.49119371,0,0,,,,1,1,,0.35,nav,1,1973,2,, 26729,NJBF000057029,31 CHAPMAN BLVD,Somers Point,NJ,39.32976276,-74.60150493,RES1,3001,,16,NE,1966,1966,3101,1,1,1738.21871,1738.21871,3507,NO,14.87,24.88,1,2.85,6112,111.349778,121.522852,131.229703,137.482067,I,Above,Gable,0,5701,,19.87327414,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26730,NJBF000054236,120 COLWICK DR,Somers Point,NJ,39.3228135,-74.6138325,RES1,3001,,16,NE,1955,1955,3101,2,1,2009.876852,2009.876852,3507,NO,38.81,52.06,1,2.08,6110,111.264124,121.40052,131.110591,137.327482,I,Above,Flat,0,5701,,45.43877179,0,0,,,,1,1,,0.35,nav,1,1955,2,, 26731,NJBF000056813,1 SCHOOLHOUSE DR,Somers Point,NJ,39.32930633,-74.5995785,RES1,3001,,16,NE,1971,1971,3101,2,1,1770.934799,1770.934799,3507,NO,34.97,45.33,1,-0.32,6112,111.393384,121.561083,131.265711,137.52846,I,Above,Flat,0,5701,,40.15169323,0,0,,,,1,1,,0.35,nav,1,1971,2,, 26732,NJBF000056348,1028 W GROVELAND AVE,Somers Point,NJ,39.328268,-74.606141,RES1,3001,,16,NE,1968,1968,3101,1,1,1533.970357,1533.970357,3507,NO,16.49,30.34,1,0.98,6110,111.29434,121.46241,131.172303,137.407782,I,Above,Gable,0,5701,,23.41496206,0,0,,,,1,1,,0.35,nav,1,1968,1,, 26733,NJBF000056562,1036 W GROVELAND AVE,Somers Point,NJ,39.32875822,-74.60710673,RES1,3001,,16,NE,1971,1971,3101,1,1,1455.609398,1455.609398,3507,NO,19.35,32.72,1,1.44,6110,111.268281,121.440114,131.151523,137.380746,I,Above,Gable,0,5701,,26.03776754,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26734,NJBF000056046,19 STANFORD RD,Somers Point,NJ,39.32760396,-74.6086699,RES1,3001,,16,NE,1970,1970,3101,1,1,1534.861017,1534.861017,3507,NO,15.1,29.77,1,1.03,6106,111.262514,121.427822,131.139503,137.365094,I,Above,Gable,0,5701,,22.43319671,0,0,,,,1,1,,0.03,nav,1,1970,1,, 26735,NJBF000055753,15 BUCKNELL RD,Somers Point,NJ,39.32689255,-74.61058393,RES1,3001,,16,NE,1979,1979,3101,2,1,1301.835723,1301.835723,3507,NO,20.28,25.39,1,-0.72,6106,111.24287,121.404318,131.117068,137.335805,I,Above,Gable,0,5701,,22.83626011,0,0,,,,1,1,,0.03,nav,1,1979,2,, 26736,NJBF000056479,18 COOPER DR,Somers Point,NJ,39.32856784,-74.60417163,RES1,3001,,43,NE,1970,1970,3101,1,2,2202.50117,2202.50117,3507,NO,10.52,24.48,1,-0.85,6112,111.32371,121.492078,131.200346,137.444152,I,Above,Flat,0,5701,,17.50428319,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26737,NJBF000055844,57 BUCKNELL RD,Somers Point,NJ,39.32710181,-74.61209378,RES1,3001,,16,NE,1979,1979,3101,2,1,1166.571708,1166.571708,3507,NO,37.88,50.36,1,1.89,6106,111.213354,121.376357,131.090946,137.301591,I,Above,Gable,0,5701,,44.12146611,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26738,NJBF000056063,23 BUCKNELL RD,Somers Point,NJ,39.3276489,-74.60982681,RES1,3001,,16,NE,1978,1978,3101,2,1,1285.548661,1285.548661,3507,NO,32.46,38.68,1,0.79,6106,111.24174,121.407771,131.120694,137.340536,I,Above,Gable,0,5701,,35.57107154,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26739,NJBF000055982,12 DARTMOUTH RD,Somers Point,NJ,39.32743791,-74.60753024,RES1,3001,,16,NE,1971,1971,3101,1,1,1943.08527,1943.08527,3507,NO,19.46,33.04,1,0.57,6106,111.285394,121.449084,131.159417,137.391042,I,Above,Gable,0,5701,,26.24872963,0,0,,,,1,1,,0.03,nav,1,1971,1,, 26740,NJBF000055801,125 HADDON RD,Somers Point,NJ,39.3270079,-74.60440554,RES1,3001,,16,NE,1966,1966,3101,1,1,1824.577131,1824.577131,3507,NO,17.67,25.55,1,1.7,6110,111.348345,121.507108,131.213911,137.461763,I,Above,Gable,0,5701,,21.61051632,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26741,NJBF000051729,41 GREATE BAY DR,Somers Point,NJ,39.31031304,-74.60482509,RES3A,3001,,29,NE,1977,1977,3301,2,1,2021.043141,2021.043141,3507,NO,36.65,46.14,1,-0.22,6112,111.64742,121.708583,131.390237,137.690021,I,Above,Gable,0,5701,,41.39364716,0,0,,,,1,1,,0.35,nav,1,1977,2,, 26742,NJBF000054303,9 PRINCETON RD,Somers Point,NJ,39.32301781,-74.60724562,RES1,3001,,16,NE,1962,1962,3101,1,1,1155.764482,1155.764482,3507,NO,13.07,18.89,1,1.51,6110,111.372221,121.508321,131.21267,137.46038,I,Above,Gable,0,5701,,15.9802852,0,0,,,,1,1,,0.35,nav,1,1962,1,, 26743,NJBF000055489,103 E OCEAN AVE,Somers Point,NJ,39.32622859,-74.58377511,RES1,3001,,16,NE,1963,1963,3102,1,1,2406.780529,2406.780529,3505,NO,8.91,18.57,3,-1.89,6112,111.749725,121.867712,131.557853,137.89857,I,Above,Gable,0,5701,,13.741351,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 26744,NJBF000055356,6 WARWICK AVE,Somers Point,NJ,39.32587313,-74.58188386,RES1,3001,,18,NE,1999,1999,3102,2,1,2425.335102,2425.335102,3505,NO,42.1,53.89,3,3.3,6106,111.793217,121.904371,131.593154,137.942565,I,Above,Hip,0,5701,,47.99642127,0,1.2,,,,1,1,,0.03,nav,1,1999,2,, 26745,NJBF000055468,17 CORNELL RD,Somers Point,NJ,39.32617906,-74.60951474,RES1,3001,,16,NE,1970,1970,3101,1,1,1737.639035,1737.639035,3507,NO,13.01,25.64,1,1.7,6110,111.27445,121.431095,131.141842,137.368178,I,Above,Gable,0,5701,,19.32628294,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26746,NJBF000054797,7 YALE BLVD,Somers Point,NJ,39.32433259,-74.61014665,RES1,3001,,16,NE,1970,1970,3101,2,1,1680.867433,1680.867433,3507,NO,32.85,39.7,1,1.64,6110,111.297941,121.443293,131.15215,137.381687,I,Above,Hip,0,5701,,36.27299727,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 26747,NJBF000051940,45 E NEW JERSEY AVE,Somers Point,NJ,39.31189282,-74.59452293,RES1,3001,,16,NE,1920,1920,3102,2,1,1236.012164,1236.012164,3505,NO,39.34,49.36,3,6.54,6112,111.80227,121.86095,131.540032,137.878583,I,Above,Gable,0,5701,,44.35300439,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 26748,NJBF000053625,325 BAY AVE,Somers Point,NJ,39.32065956,-74.58631567,RES1,3001,,16,NE,1954,1954,3102,1,1,2305.570395,2305.570395,3505,NO,17.03,27.2,3,-1.15,6106,111.798747,121.891573,131.578024,137.92459,I,Above,Hip,0,5701,,22.115204,0,0,,,,1,1,,0.03,nav,1,1954,1,, 26749,NJBF000052715,551 LAUNCH & 18 KAPPELLA,Somers Point,NJ,39.31669241,-74.58646857,RES1,3001,,16,NE,1940,1940,3102,2,2,922.1235283,922.1235283,3507,NO,32.52,44.22,1,0.88,6106,111.866376,121.937527,131.619476,137.976764,I,Above,Gable,0,5701,,38.3669029,0,0,,,,1,1,,0.03,nav,1,1940,2,, 26750,NJBF000054712,135 BALA DR,Somers Point,NJ,39.32411823,-74.6150313,RES1,3001,,16,NE,1957,1957,3101,2,1,1783.596962,1783.596962,3507,NO,32.88,38.27,1,0.62,6106,111.220024,121.3642,131.077491,137.283996,I,Above,Gable,0,5701,,35.57255494,0,0,,,,1,1,,0.03,nav,1,1957,2,, 26751,NJBF000051909,57 E NEW JERSEY AVE,Somers Point,NJ,39.31166898,-74.59406278,RES1,3001,,16,NE,1900,1900,3102,2,1,2061.293262,2061.293262,3505,NO,44.57,52.91,3,6.33,6106,111.814712,121.871493,131.550001,137.891092,I,Above,Hip,0,5701,,48.73865753,0,0,,,,1,1,,0.03,nav,1,1900,2,, 26752,NJBF000051853,70 BAYVIEW DR,Somers Point,NJ,39.31125359,-74.60722313,RES3A,3001,,29,NE,1977,1977,3301,2,1,1918.234474,1918.234474,3507,NO,30.86,41.51,1,0.62,6110,111.588869,121.656747,131.341516,137.627751,I,Above,Gable,0,5701,,36.18094882,0,0,,,,1,1,,0.35,nav,1,1977,2,, 26753,NJBF000054706,180 BALA DR,Somers Point,NJ,39.32410245,-74.61104903,RES1,3001,,16,NE,1955,1955,3101,1,1,1396.053538,1396.053538,3507,NO,12.64,26.11,1,1.1,6110,111.286896,121.431029,131.140415,137.366396,I,Above,Flat,0,5701,,19.3748367,0,1.1,,,,1,1,,0.35,nav,1,1955,1,, 26754,NJBF000054693,131 COLWICK DR,Somers Point,NJ,39.32407818,-74.61384924,RES1,3001,,16,NE,1957,1957,3101,1,1,1484.091158,1484.091158,3507,NO,19.12,26.4,1,2.84,6106,111.240338,121.38445,131.09651,137.308965,I,Above,Gable,0,5701,,22.75987906,0,0,,,,1,1,,0.03,nav,1,1957,1,, 26755,NJBF000053931,17 GULPH MILL RD,Somers Point,NJ,39.32182927,-74.61674212,RES1,3001,,16,NE,1967,1967,3101,1,1,2237.284787,2237.284787,3507,NO,17.34,25.67,1,0.86,6110,111.234601,121.364441,131.07562,137.281663,I,Above,Gable,0,5701,,21.50583412,0,0,,,,1,1,,0.35,nav,1,1967,1,, 26756,NJBF000051712,839 BAY AVE,Somers Point,NJ,39.31014228,-74.59565679,RES1,3001,,16,NE,1925,1925,3102,2,2,1617.768164,1617.768164,3505,NO,39.83,52.7,3,7.17,6106,111.813226,121.863897,131.540663,137.879717,I,Above,Flat,0,5701,,46.26199063,0,0,,,,1,1,,0.03,nav,1,1925,2,, 26757,NJBF000051726,,Somers Point,NJ,39.31028014,-74.61808585,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4138.343338,4138.343338,3507,NO,15.3,29.61,1,2.87,6106,111.425762,121.49014,131.17935,137.419069,I,Above,Flat,0,NaN,,22.45212718,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26758,NJBF000051758,,Somers Point,NJ,39.31056213,-74.61788619,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4145.471934,4145.471934,3507,NO,16.45,30.75,1,2.06,6106,111.423836,121.48976,131.179475,137.419162,I,Above,Gable,0,NaN,,23.59883922,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26759,NJBF000051872,,Somers Point,NJ,39.31137724,-74.61727622,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6392.837774,6392.837774,3507,NO,19.37,30.12,1,1.15,6106,111.418797,121.489213,131.180336,137.420088,I,Above,Gable,0,NaN,,24.74108267,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26760,NJBF000051852,,Somers Point,NJ,39.31125059,-74.61846357,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6181.145586,6181.145586,3507,NO,18.69,23.72,1,0.15,6106,111.401902,121.471372,131.162965,137.397527,I,Above,Flat,0,NaN,,21.20644198,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26761,NJBF000051658,,Somers Point,NJ,39.309564,-74.6180245,RES1,3001,,NaN,NE,1969,0,3102,2,1,4189.390476,4189.390476,3507,NO,38.62,51.77,1,0.75,6106,111.43983,121.500425,131.187997,137.430479,I,Above,Flat,0,5701,,45.19579726,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26762,NJBF000054904,141 BALA DR,Somers Point,NJ,39.3246005,-74.6146145,RES1,3001,,16,NE,1957,1957,3101,2,1,1194.787576,1194.787576,3507,NO,36.3,43.92,1,1.26,6106,111.217892,121.365119,131.07874,137.285619,I,Above,Hip,0,5701,,40.11025729,0,0,,,,1,1,,0.03,nav,1,1957,2,, 26763,NJBF000051891,127 HIGBEE AVE,Somers Point,NJ,39.31149672,-74.59213154,RES1,3001,,17,NE,1930,1930,3102,1,1,1973.972576,1973.972576,3505,NO,18.12,27.61,3,4.56,6102,111.85326,121.906149,131.583496,137.932922,I,Above,Gable,0,5701,,22.86338429,0,0,,,,1,1,,0.03,nav,1,1930,1,, 26764,NJBF000054998,21 AMBLER RD,Somers Point,NJ,39.32485167,-74.6078655,RES1,3001,,16,NE,1964,1964,3101,2,1,2131.233336,2131.233336,3507,NO,35.58,41.97,1,2.75,6106,111.327522,121.475205,131.18262,137.421301,I,Above,Hip,0,5701,,38.77572684,0,0,,,,1,1,,0.03,nav,1,1964,2,, 26765,NJBF000053805,3 GULPH MILL RD,Somers Point,NJ,39.32135252,-74.61668317,RES1,3001,,16,NE,1968,1968,3101,1,1,650.7893326,650.7893326,3507,NO,18.7,28.96,1,0.17,6110,111.244406,121.37143,131.081728,137.289725,I,Above,Hip,0,5701,,23.82860439,0,1.2,,,,1,1,,0.35,nav,1,1968,1,, 26766,NJBF000053811,3 GULPH MILL RD,Somers Point,NJ,39.32137298,-74.61646457,RES1,3001,,16,NE,1968,1968,3101,1,1,2895.974023,2895.974023,3507,NO,13.5,25.29,1,-0.73,6106,111.247587,121.3748,131.084931,137.293931,I,Above,Gable,0,5701,,19.39250432,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 26767,NJBF000051964,,Somers Point,NJ,39.31202734,-74.58760294,RES1,3001,,NaN,NE,1969,0,3102,2,1,2922.874362,2922.874362,3507,NO,36.04,47.7,1,-0.42,6102,111.928062,121.97598,131.652175,138.018082,I,Above,Gable,0,5701,,41.87330684,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26768,NJBF000054683,8 YALE BLVD,Somers Point,NJ,39.32405966,-74.61046849,RES1,3001,,16,NE,1971,1971,3101,2,1,1388.748364,1388.748364,3507,NO,25.36,34.33,1,2.37,6110,111.297543,121.441294,131.150067,137.378987,I,Above,Flat,0,5701,,29.8470494,0,0,,,,1,1,,0.35,nav,1,1971,2,, 26769,NJBF000051741,829 BAY AVE,Somers Point,NJ,39.31042445,-74.59523363,RES1,3001,,17,NE,1905,1905,3102,2,1,1507.20346,1507.20346,3505,NO,36.12,51.09,3,6.48,6106,111.815814,121.867446,131.544487,137.884442,I,Above,Gable,0,5701,,43.60269349,0,0,,,,1,1,,0.03,nav,1,1905,2,, 26770,NJBF000051789,823 BAY AVE,Somers Point,NJ,39.31076224,-74.59480637,COM1,3001,649,NaN,ME,1886,1886,3401,2,1,4145.930935,4145.930935,3507,NO,24.51,38.86,1,0.96,6106,111.817502,121.870384,131.547783,137.888495,I,Above,Flat,0,NaN,,31.68641648,0,0,,,,1,1,,0.03,nav,1,1886,2,, 26771,NJBF000051952,118 GIBBS AVE,Somers Point,NJ,39.31196792,-74.59215288,RES1,3001,,16,NE,1910,1910,3102,2,1,2189.263109,2189.263109,3505,NO,21.79,34.21,3,-0.99,6106,111.84441,121.899908,131.577989,137.925972,I,Above,Flat,0,5701,,27.99873966,0,0,,,,1,1,,0.03,nav,1,1910,2,, 26772,NJBF000052135,71 GIBBS AVE,Somers Point,NJ,39.31306903,-74.59319727,RES1,3001,,16,NE,1920,1920,3102,2,1,832.0651081,832.0651081,3505,NO,29.24,41,3,6.57,6106,111.805376,121.868566,131.548819,137.889357,I,Above,Gable,0,5701,,35.1237666,0,0,,,,1,1,,0.03,nav,1,1920,2,, 26773,NJBF000054853,23 HADDON RD,Somers Point,NJ,39.32448316,-74.60695705,RES1,3001,,16,NE,1962,1962,3101,1,1,1671.647881,1671.647881,3507,NO,20.4,34.35,1,2.73,6110,111.350145,121.495058,131.201143,137.445352,I,Above,Gable,0,5701,,27.3732178,0,0,,,,1,1,,0.35,nav,1,1962,1,, 26774,NJBF000051704,28 SOMERS AVE,Somers Point,NJ,39.31006573,-74.59637406,RES1,3001,,16,NE,1920,1983,3102,2,1,976.0088683,976.0088683,3505,NO,45.54,52.07,3,7.8,6112,111.801625,121.852831,131.5298,137.866134,I,Above,Gable,0,5701,,48.8060727,0,0,,,,1,1,,0.35,nav,1,1920,2,, 26775,NJBF000055004,1203 MASSACHUSETTS AVE,Somers Point,NJ,39.32486498,-74.60621383,RES1,3001,,16,NE,1965,1965,3101,1,1,1673.583458,1673.583458,3507,NO,18.59,32.09,1,-0.7,6110,111.356053,121.502863,131.208764,137.455204,I,Above,Gable,0,5701,,25.33588532,0,0,,,,1,1,,0.35,nav,1,1965,1,, 26776,NJBF000054921,172 JORDAN RD,Somers Point,NJ,39.3246539,-74.60350145,RES1,3001,,16,NE,1964,1964,3101,1,1,1596.582586,1596.582586,3507,NO,15.85,24.35,1,-0.05,6106,111.407837,121.551221,131.254427,137.5142,I,Above,Gable,0,5701,,20.0989718,0,0,,,,1,1,,0.03,nav,1,1964,1,, 26777,NJBF000055308,103 N AMBLER RD,Somers Point,NJ,39.32573459,-74.60701845,RES1,3001,,16,NE,1966,1966,3101,2,1,1521.048107,1521.048107,3507,NO,28.19,35.37,1,-0.98,6106,111.325901,121.478608,131.186365,137.426122,I,Above,Hip,0,5701,,31.77576374,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 26778,NJBF000054887,18 JEFFERSON AVE,Somers Point,NJ,39.32457081,-74.6018099,RES1,3001,,16,NE,1966,1966,3101,1,1,1005.424085,1005.424085,3507,NO,17.38,30.33,1,1.96,6110,111.439601,121.58081,131.282457,137.550266,I,Above,Gable,0,5701,,23.85730366,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26779,NJBF000054014,20 GULPH MILL RD,Somers Point,NJ,39.32211429,-74.61708952,RES1,3001,,16,NE,1967,1967,3101,1,1,1722.702078,1722.702078,3507,NO,11.58,25.2,1,0.98,6110,111.223645,121.355061,131.067061,137.270386,I,Above,Gable,0,5701,,18.39051649,0,0,,,,1,1,,0.35,nav,1,1967,1,, 26780,NJBF000051639,112 WOODLAND AVE,Somers Point,NJ,39.30935251,-74.60136527,COM1,3001,733,NaN,ME,1992,1992,3401,1,1,6236.428595,6236.428595,3507,NO,18.26,25.53,1,2.45,6106,111.725425,121.778405,131.456503,137.774143,I,Above,Hip,0,NaN,,21.89523287,0,0,,,,1,1,,0.03,nav,1,1992,1,, 26781,NJBF000053759,10 MALVERN RD,Somers Point,NJ,39.32115927,-74.61696394,RES1,3001,,16,NE,1967,1967,3101,1,1,1645.142971,1645.142971,3507,NO,15.09,20.35,1,1.46,6106,111.243439,121.369215,131.079431,137.286722,I,Above,Gable,0,5701,,17.72087028,0,0,,,,1,1,,0.03,nav,1,1967,1,, 26782,NJBF000057731,27 DEFEO LN,Somers Point,NJ,39.33106022,-74.59795481,RES1,3001,,16,NE,1988,1988,3101,1,1,2018.036831,2018.036831,3507,NO,19.71,24.96,1,1.56,6106,111.391466,121.567667,131.27226,137.536788,I,Above,Gable,0,5701,,22.3366367,0,0,,,,1,1,,0.03,nav,1,1988,1,, 26783,NJBF000054968,138 EXTON RD,Somers Point,NJ,39.32477755,-74.61240535,RES1,3001,,16,NE,1957,1957,3101,1,1,2285.881551,2285.881551,3507,NO,14.93,27.28,1,0.19,6106,111.251438,121.399902,131.111584,137.328686,I,Above,Hip,0,5701,,21.10242303,0,0,,,,1,1,,0.03,nav,1,1957,1,, 26784,NJBF000054964,143 BALA DR,Somers Point,NJ,39.32476537,-74.61445263,RES1,3001,,16,NE,1957,1957,3101,2,1,1258.0923,1258.0923,3507,NO,29.52,38.79,1,2.86,6106,111.217515,121.365783,131.07949,137.286599,I,Above,Hip,0,5701,,34.15263898,0,0,,,,1,1,,0.03,nav,1,1957,2,, 26785,NJBF000051807,900 MAYS LANDING RD,Somers Point,NJ,39.31090778,-74.60986478,RES4,3001,281,NaN,ME,1988,1988,3401,3,1,5449.459917,5449.459917,3507,NO,43.73,55.27,1,-0.13,6106,111.550182,121.617371,131.303008,137.57854,I,Above,Flat,0,NaN,,49.49873466,0,0,,,,1,1,,0.03,nav,1,1988,3,, 26786,NJBF000054874,17 AMBLER RD,Somers Point,NJ,39.32453651,-74.6082333,RES1,3001,,16,NE,1965,1965,3101,1,1,1872.79718,1872.79718,3507,NO,16.86,30.96,1,-0.23,6106,111.327011,121.472922,131.180259,137.418251,I,Above,Hip,0,5701,,23.91432847,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26787,NJBF000055039,102 PRINCETON RD,Somers Point,NJ,39.32496512,-74.60576362,RES1,3001,,16,NE,1965,1965,3101,1,1,1582.920176,1582.920176,3507,NO,19.42,28.53,1,0.27,6110,111.362095,121.509217,131.214834,137.463056,I,Above,Gable,0,5701,,23.97611424,0,1.2,,,,1,1,,0.35,nav,1,1965,1,, 26788,NJBF000058151,59 CHAPMAN BLVD,Somers Point,NJ,39.3318005,-74.60539983,RES1,3001,,16,NE,1985,1985,3101,2,1,1620.793062,1620.793062,3507,NO,26.76,37.01,1,2.28,6110,111.24202,121.432215,131.144849,137.37206,I,Above,Gable,0,5701,,31.88943392,0,0,,,,1,1,,0.35,nav,1,1985,2,, 26789,NJBF000052429,96 MAYS LANDING RD,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,2004,3102,2,1,1908.657156,1908.657156,3505,NO,25.64,38.44,3,3.63,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,32.03605083,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 26790,NJBF000054942,22 HADDON RD,Somers Point,NJ,39.32471266,-74.60729253,RES1,3001,,16,NE,1962,1962,3101,2,1,1612.605527,1612.605527,3507,NO,29.75,38.82,1,-0.81,6110,111.340041,121.486564,131.193262,137.435121,I,Above,Hip,0,5701,,34.28735977,0,0,,,,1,1,,0.35,nav,1,1962,2,, 26791,NJBF000051629,,Somers Point,NJ,39.30923751,-74.6150476,RES1,3001,,NaN,NE,1969,0,3102,2,1,2781.104378,2781.104378,3507,NO,34.13,39.43,1,2.98,6106,111.49429,121.553425,131.238576,137.496034,I,Above,Hip,0,5701,,36.77761379,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26792,NJBF000051766,1246 ATKINSON AVE,Somers Point,NJ,39.31064356,-74.61412025,COM1,3001,999,43,ME,1930,1930,3401,2,2,1993.624511,1993.624511,3507,NO,31.05,38.53,1,2.72,6106,111.48388,121.550532,131.238153,137.495144,I,Above,Flat,0,NaN,,34.78820008,0,0,,,,1,1,,0.03,nav,1,1930,2,, 26793,NJBF000058171,49 WILSON AVE,Somers Point,NJ,39.33182918,-74.60627109,RES1,3001,,16,NE,1985,1985,3101,1,1,1957.17562,1957.17562,3507,NO,17.88,23.54,1,2.81,6106,111.225996,121.417094,131.130693,137.353613,I,Above,Gable,0,5701,,20.70930316,0,0,,,,1,1,,0.03,nav,1,1985,1,, 26794,NJBF000057670,9 WAYNE DR,Somers Point,NJ,39.33096698,-74.60184084,RES1,3001,,16,NE,1979,1979,3101,2,1,1468.606751,1468.606751,3507,NO,35.61,44.5,1,2.72,6112,111.321545,121.502656,131.210899,137.45775,I,Above,Gable,0,5701,,40.05488553,0,0,,,,1,1,,0.35,nav,1,1979,2,, 26795,NJBF000054300,121 EXTON RD,Somers Point,NJ,39.32300888,-74.61288301,RES1,3001,,16,NE,1957,1957,3101,2,1,1461.340949,1461.340949,3507,NO,35.75,42.89,1,0.42,6112,111.276335,121.413949,131.123432,137.344272,I,Above,Hip,0,5701,,39.31902842,0,0,,,,1,1,,0.35,nav,1,1957,2,, 26796,NJBF000051732,833 BAY AVE,Somers Point,NJ,39.31034916,-74.59540891,RES1,3001,,16,NE,1981,1981,3102,1,1,1509.824645,1509.824645,3505,NO,19.95,34.71,3,6.53,6106,111.813989,121.865453,131.54245,137.881909,I,Above,Gable,0,5701,,27.32660197,0,0,,,,1,1,,0.03,nav,1,1981,1,, 26797,NJBF000052258,35-37 GIBBS AVE,Somers Point,NJ,39.31367017,-74.59421297,RES1,3001,,16,NE,1930,1930,3101,1,2,1372.20616,1372.20616,3505,NO,16.36,24.49,3,3.66,6110,111.77589,121.843946,131.525618,137.860211,I,Above,Gable,0,5701,,20.42631589,0,1.2,,,,1,1,,0.35,nav,1,1930,1,, 26798,NJBF000052232,43 GIBBS AVE,Somers Point,NJ,39.31352949,-74.59399443,RES1,3001,,16,NE,1930,1930,3101,1,1,1320.47405,1320.47405,3505,NO,21.62,36.4,3,4.51,6106,111.782448,121.849395,131.530743,137.866656,I,Above,Hip,0,5701,,29.01154164,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 26799,NJBF000053665,9 MALVERN RD,Somers Point,NJ,39.320812,-74.6171825,RES1,3001,,16,NE,1967,1967,3101,1,1,2379.398665,2379.398665,3507,NO,16.08,23.57,1,1.77,6106,111.246342,121.369987,131.079786,137.287217,I,Above,Gable,0,5701,,19.8295406,0,0,,,,1,1,,0.03,nav,1,1967,1,, 26800,NJBF000053639,57 GULPH MILL RD,Somers Point,NJ,39.3207165,-74.616954,RES1,3001,,16,NE,1965,1965,3101,1,1,2438.950994,2438.950994,3507,NO,18.29,31.68,1,-0.11,6106,111.251808,121.374973,131.084395,137.293281,I,Above,Gable,0,5701,,24.98394736,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26801,NJBF000057683,40 CHAPMAN BLVD,Somers Point,NJ,39.3309855,-74.6049625,RES3D,3001,20,NaN,E,1970,1970,3303,4,1,8444.122848,8444.122848,3507,NO,72.73,80.42,1,1.57,6110,111.264926,121.449454,131.16089,137.392924,I,Above,Gable,0,5701,,76.57487931,0,0,,,,1,1,,0.35,nav,1,1970,4,, 26802,NJBF000057769,40 CHAPMAN BLVD,Somers Point,NJ,39.33114,-74.6060945,RES3D,3001,20,NaN,E,1970,1970,3303,4,1,7422.193068,7422.193068,3507,NO,78.25,89.09,1,1.93,6110,111.241919,121.428394,131.141168,137.367259,I,Above,Gable,0,5701,,83.67173215,0,0,,,,1,1,,0.35,nav,1,1970,4,, 26803,NJBF000057514,40 CHAPMAN BLVD,Somers Point,NJ,39.330696,-74.605655,RES3D,3001,20,NaN,E,1970,1970,3303,3,1,7424.615497,7424.615497,3507,NO,51.25,62.43,1,-0.03,6106,111.25794,121.441191,131.153081,137.382767,I,Above,Hip,0,5701,,56.83900061,0,0,,,,1,1,,0.03,nav,1,1970,3,, 26804,NJBF000053394,7 VIOLET LN,Somers Point,NJ,39.31977696,-74.61380515,RES1,3001,,16,NE,1958,1958,3101,1,1,2215.465006,2215.465006,3507,NO,13.45,25.55,1,2.2,6106,111.320949,121.439184,131.144175,137.371628,I,Above,Flat,0,5701,,19.49912658,0,0,,,,1,1,,0.03,nav,1,1958,1,, 26805,NJBF000055560,114 HADDON RD,Somers Point,NJ,39.32641079,-74.60558458,RES1,3001,,16,NE,1966,1966,3101,1,1,1466.839624,1466.839624,3507,NO,17.93,24.24,1,-0.39,6106,111.338511,121.494486,131.201712,137.445995,I,Above,Gable,0,5701,,21.08368351,0,0,,,,1,1,,0.03,nav,1,1966,1,, 26806,NJBF000058145,4 WHITMAN DR,Somers Point,NJ,39.3317846,-74.60494686,RES1,3001,,16,NE,1983,1983,3101,2,1,1488.670113,1488.670113,3507,NO,27.97,42.87,1,0.54,6110,111.250388,121.440082,131.15222,137.381653,I,Above,Gable,0,5701,,35.42234564,0,0,,,,1,1,,0.35,nav,1,1983,2,, 26807,NJBF000058027,212 EXTON RD,Somers Point,NJ,39.331572,-74.60637817,RES1,3001,,27,NE,1987,1987,3101,2,1,1598.898962,1598.898962,3507,NO,34.69,48.57,1,-0.48,6106,111.228872,121.418374,131.131854,137.355124,I,Above,Gable,0,5701,,41.63132131,0,0,,,,1,1,,0.03,nav,1,1987,2,, 26808,NJBF000057987,14 WILSON AVE,Somers Point,NJ,39.3315104,-74.60413112,RES1,3001,,16,NE,1981,1981,3101,1,1,2153.902359,2153.902359,3507,NO,15.48,27.59,1,0.71,6112,111.270104,121.457237,131.168276,137.402521,I,Above,Hip,0,5701,,21.53438358,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 26809,NJBF000053580,333 BAY AVE,Somers Point,NJ,39.32047257,-74.58639745,RES1,3001,,17,NE,1925,1925,3102,2,1,1038.194679,1038.194679,3505,NO,29.47,39.4,3,-2.45,6106,111.800515,121.892471,131.578766,137.925543,I,Above,Hip,0,5701,,34.43128601,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 26810,NJBF000055514,19 CORNELL RD,Somers Point,NJ,39.32630252,-74.60969434,RES1,3001,,16,NE,1971,1971,3101,2,1,1424.657753,1424.657753,3507,NO,25.22,37.32,1,2.41,6106,111.269073,121.426556,131.137642,137.362695,I,Above,Hip,0,5701,,31.27093446,0,0,,,,1,1,,0.03,nav,1,1971,2,, 26811,NJBF000053747,38 LAUREL DR SOUTH,Somers Point,NJ,39.32112822,-74.61521744,RES1,3001,,16,NE,1964,1964,3101,1,1,2301.795748,2301.795748,3507,NO,15.93,27.5,1,-0.26,6106,111.272573,121.398643,131.107209,137.323172,I,Above,Hip,0,5701,,21.71116426,0,0,,,,1,1,,0.03,nav,1,1964,1,, 26812,NJBF000057614,19 EDGEWOOD DR,Somers Point,NJ,39.3308798,-74.59888162,RES1,3001,,16,NE,1979,1979,3101,2,1,1621.068853,1621.068853,3507,NO,23.57,28.88,1,0.98,6110,111.377513,121.554033,131.259349,137.52021,I,Above,Gable,0,5701,,26.22521906,0,0,,,,1,1,,0.35,nav,1,1979,2,, 26813,NJBF000054893,107 OSBORNE RD,Somers Point,NJ,39.32458163,-74.60425761,RES1,3001,,16,NE,1965,1965,3101,1,1,1601.063895,1601.063895,3507,NO,19.27,29.21,1,2.49,6106,111.395724,121.539328,131.243111,137.499614,I,Above,Gable,0,5701,,24.24234749,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26814,NJBF000054987,15 BAY AVE,Somers Point,NJ,39.32481845,-74.58296363,RES1,3001,,16,NE,1969,1969,3102,2,1,2018.727464,2018.727464,3505,NO,41.32,48.65,3,5.58,6106,111.790405,121.898523,131.587067,137.935181,I,Above,Hip,0,5701,,44.98329332,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26815,NJBF000054902,1212 MASSACHUSETTS AVE,Somers Point,NJ,39.324591,-74.60648766,RES1,3001,,16,NE,1962,1962,3101,2,1,1845.284092,1845.284092,3507,NO,34.01,42.56,1,2.34,6110,111.356328,121.501623,131.207421,137.45348,I,Above,Gable,0,5701,,38.28631757,0,1.2,,,,1,1,,0.35,nav,1,1962,2,, 26816,NJBF000054272,109 E DAWES AVE,Somers Point,NJ,39.32292902,-74.5852002,RES1,3001,,16,NE,1964,1964,3102,1,1,1380.465068,1380.465068,3505,NO,22.57,27.99,3,5.93,6106,111.780058,121.883067,131.571188,137.91572,I,Above,Gable,0,5701,,25.28086354,0,0,,,,1,1,,0.03,nav,1,1964,1,, 26817,NJBF000058268,13 WILSON AVE,Somers Point,NJ,39.3320085,-74.604166,RES1,3001,,16,NE,1981,1981,3101,2,1,1547.180983,1547.180983,3507,NO,35.69,42.1,1,2.85,6112,111.260254,121.450651,131.162155,137.394572,I,Above,Hip,0,5701,,38.89663053,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 26818,NJBF000053421,44 GULPH MILL RD,Somers Point,NJ,39.31987469,-74.61858402,RES1,3001,,16,NE,1972,1972,3101,1,1,2149.261633,2149.261633,3507,NO,14.38,25.86,1,-0.06,6106,111.241089,121.358648,131.067993,137.271797,I,Above,Gable,0,5701,,20.11898902,0,0,,,,1,1,,0.03,nav,1,1972,1,, 26819,NJBF000055428,425 NEW RD,Somers Point,NJ,39.32606381,-74.60013397,COM1,3001,649,NaN,ME,1998,1998,3401,1,1,12232.11839,12232.11839,3507,NO,20.94,32.62,1,2.76,6112,111.442537,121.590938,131.29285,137.563499,I,Above,Flat,0,NaN,,26.77842429,0,0,,,,1,1,,1,nav,1,1998,1,, 26820,NJBF000053646,34 LAUREL DR SOUTH,Somers Point,NJ,39.32073674,-74.61562096,RES1,3001,,16,NE,1964,1964,3101,1,1,2556.461586,2556.461586,3507,NO,13.98,28.59,1,1.61,6106,111.273196,121.39686,131.105114,137.32046,I,Above,Hip,0,5701,,21.28249552,0,0,,,,1,1,,0.03,nav,1,1964,1,, 26821,NJBF000057997,39 DEFEO LN,Somers Point,NJ,39.33152668,-74.6003866,RES1,3001,,16,NE,1989,1989,3101,1,1,1224.643019,1224.643019,3507,NO,19.4,33.82,1,1.95,6106,111.337895,121.52067,131.227941,137.479743,I,Above,Gable,0,5701,,26.60972056,0,0,,,,1,1,,0.03,nav,1,1989,1,, 26822,NJBF000055535,111 N AMBLER RD,Somers Point,NJ,39.32636075,-74.60635002,RES1,3001,,16,NE,1967,1967,3101,1,1,1743.712367,1743.712367,3507,NO,10.51,16.44,1,-0.32,6106,111.325989,121.482186,131.19008,137.430917,I,Above,Gable,0,5701,,13.47553746,0,0,,,,1,1,,0.03,nav,1,1967,1,, 26823,NJBF000055495,126 OSBORNE RD,Somers Point,NJ,39.32624893,-74.6031592,RES1,3001,,16,NE,1964,1964,3101,1,1,1701.63516,1701.63516,3507,NO,12.56,25.4,1,-0.85,6110,111.38457,121.537464,131.242254,137.498409,I,Above,Gable,0,5701,,18.98081337,0,0,,,,1,1,,0.35,nav,1,1964,1,, 26824,NJBF000055536,154 EXTON RD,Somers Point,NJ,39.32636303,-74.61059024,RES1,3001,,16,NE,1979,1979,3101,2,1,1853.849584,1853.849584,3507,NO,29.7,43.25,1,-0.02,6106,111.252638,121.410747,131.122812,137.343325,I,Above,Gable,0,5701,,36.47586699,0,0,,,,1,1,,0.03,nav,1,1979,2,, 26825,NJBF000053431,18 FRESH SPRING COVE,Somers Point,NJ,39.31989614,-74.61682079,RES1,3001,,16,NE,1965,1965,3101,2,1,1746.761341,1746.761341,3507,NO,32.73,47.25,1,2.12,6110,111.269199,121.387583,131.095406,137.30781,I,Above,Hip,0,5701,,39.98923471,0,0,,,,1,1,,0.35,nav,1,1965,2,, 26826,NJBF000055521,6 BUCKNELL RD,Somers Point,NJ,39.32631672,-74.61180028,RES1,3001,,16,NE,1980,1980,3101,1,1,1629.252852,1629.252852,3507,NO,18.84,29.71,1,-0.5,6106,111.23296,121.390983,131.104217,137.318996,I,Above,Gable,0,5701,,24.27759896,0,0,,,,1,1,,0.03,nav,1,1980,1,, 26827,NJBF000058768,58 DEFEO LN,Somers Point,NJ,39.332898,-74.603987,RES1,3001,,16,NE,1981,1981,3101,1,1,1974.982018,1974.982018,3507,NO,16.81,27.33,1,0.5,6112,111.247057,121.443047,131.155086,137.385392,I,Above,Gable,0,5701,,22.07311676,0,0,,,,1,1,,0.35,nav,1,1981,1,, 26828,NJBF000053546,129 E CEDAR AVE,Somers Point,NJ,39.3203425,-74.586495,RES1,3001,,16,NE,1925,1925,3102,2,2,808.489815,808.489815,3505,NO,34.76,48.95,3,5.62,6106,111.800946,121.892387,131.578594,137.925348,I,Above,Gable,0,5701,,41.85455012,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 26829,NJBF000051860,805 BAY AVE,Somers Point,NJ,39.311301,-74.594511,RES1,3001,,NaN,NE,1910,0,3102,1,1,2350.651593,2350.651593,3505,NO,12.48,25.13,3,0.08,6106,111.813162,121.868574,131.546707,137.887045,I,Above,Gable,0,5701,,18.8044748,0,0,,,,1,1,,0.03,nav,1,1910,1,, 26830,NJBF000053322,9 VIOLET LN,Somers Point,NJ,39.31951423,-74.61387518,RES1,3001,,16,NE,1956,1956,3101,1,1,1852.525732,1852.525732,3507,NO,10.18,24,1,-0.71,6106,111.324658,121.441342,131.145935,137.373951,I,Above,Gable,0,5701,,17.09022216,0,0,,,,1,1,,0.03,nav,1,1956,1,, 26831,NJBF000055539,123 PRINCETON RD,Somers Point,NJ,39.32636589,-74.60376692,RES1,3001,,16,NE,1965,1965,3101,1,1,1050.577479,1050.577479,3507,NO,16.68,28.51,1,1.13,6112,111.37156,121.525753,131.231231,137.484178,I,Above,Gable,0,5701,,22.59567546,0,0,,,,1,1,,0.35,nav,1,1965,1,, 26832,NJBF000051751,40 DELAWARE AVE,Somers Point,NJ,39.31050531,-74.59572185,RES1,3001,,16,NE,1920,1920,3102,2,2,550.3731903,550.3731903,3505,NO,28.75,38.31,3,2.13,6112,111.805498,121.858238,131.535639,137.873355,I,Above,Hip,0,5701,,33.52768638,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 26833,NJBF000055582,8 BUCKNELL RD,Somers Point,NJ,39.32648829,-74.61164387,RES1,3001,,16,NE,1979,1979,3101,1,1,2495.215653,2495.215653,3507,NO,13.74,20.75,1,-0.2,6106,111.23241,121.391491,131.104796,137.319751,I,Above,Hip,0,5701,,17.24320239,0,0,,,,1,1,,0.03,nav,1,1979,1,, 26834,NJBF000055615,156 EXTON RD,Somers Point,NJ,39.32656606,-74.61058333,RES1,3001,,16,NE,1979,1979,3101,1,1,599.1774425,599.1774425,3507,NO,18.97,32.33,1,0.7,6106,111.248978,121.408362,131.120686,137.340542,I,Above,Gable,0,5701,,25.65041665,0,0,,,,1,1,,0.03,nav,1,1979,1,, 26835,NJBF000054838,139 BALA DR,Somers Point,NJ,39.32444383,-74.6148095,RES1,3001,,16,NE,1957,1957,3101,2,1,1148.680116,1148.680116,3507,NO,39.56,47.99,1,1.92,6106,111.217595,121.363819,131.077395,137.283858,I,Above,Gable,0,5701,,43.77534443,0,0,,,,1,1,,0.03,nav,1,1957,2,, 26836,NJBF000055424,69 BUCKNELL RD,Somers Point,NJ,39.32605522,-74.61216422,RES1,3001,,16,NE,1979,1979,3101,2,1,1750.372674,1750.372674,3507,NO,36.48,41.79,1,0.37,6106,111.231702,121.388111,131.101359,137.315258,I,Above,Gable,0,5701,,39.13488783,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26837,NJBF000052182,38 GIBBS AVE,Somers Point,NJ,39.31328312,-74.59424534,RES1,3001,,16,NE,1930,1930,3101,1,1,1219.498256,1219.498256,3505,NO,9.9,16.43,3,-2.88,6106,111.782284,121.848239,131.529341,137.864944,I,Above,Gable,0,5701,,13.16581639,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 26838,NJBF000052163,42 GIBBS AVE,Somers Point,NJ,39.31320097,-74.59412312,RES1,3001,,16,NE,1930,1930,3101,1,1,1178.129104,1178.129104,3505,NO,11.81,24.35,3,-1.36,6106,111.785998,121.851317,131.532233,137.868581,I,Above,Gable,0,5701,,18.07933065,0,0,,,,1,1,,0.03,nav,1,1930,1,, 26839,NJBF000057593,13 CRESTMONT DR,Somers Point,NJ,39.33084063,-74.60052332,RES1,3001,,43,NE,1979,1979,3101,2,2,1287.038897,1287.038897,3507,NO,31.1,38.47,1,-0.58,6106,111.347956,121.526576,131.233423,137.486831,I,Above,Gable,0,5701,,34.78310203,0,0,,,,1,1,,0.03,nav,1,1979,2,, 26840,NJBF000058062,57 CHAPMAN BLVD,Somers Point,NJ,39.33164393,-74.60512681,RES1,3001,,16,NE,1983,1983,3101,1,1,1793.653825,1793.653825,3507,NO,18.71,24.95,1,2.55,6110,111.249781,121.438722,131.150928,137.37997,I,Above,Gable,0,5701,,21.82801865,0,0,,,,1,1,,0.35,nav,1,1983,1,, 26841,NJBF000053371,15 WISTERIA WALK,Somers Point,NJ,39.31968557,-74.61485059,RES1,3001,,16,NE,1967,1967,3101,1,1,2338.182232,2338.182232,3507,NO,16.75,23.38,1,1.4,6106,111.30534,121.422943,131.128673,137.351392,I,Above,Gable,0,5701,,20.06660865,0,0,,,,1,1,,0.03,nav,1,1967,1,, 26842,NJBF000058716,37 WILSON AVE,Somers Point,NJ,39.33279409,-74.60714772,RES1,3001,,16,NE,1984,1984,3101,2,1,1320.530117,1320.530117,3507,NO,27.99,36.47,1,0.26,6106,111.19255,121.390627,131.106046,137.321455,I,Above,Gable,0,5701,,32.2265742,0,0,,,,1,1,,0.03,nav,1,1984,2,, 26843,NJBF000055529,117 HADDON RD,Somers Point,NJ,39.3263538,-74.60504967,RES1,3001,,16,NE,1966,1966,3101,1,1,1804.708313,1804.708313,3507,NO,19.06,29.61,1,2.38,6106,111.349008,121.504218,131.210873,137.457861,I,Above,Gable,0,5701,,24.33635637,0,0,,,,1,1,,0.03,nav,1,1966,1,, 26844,NJBF000054891,174 BALA DR,Somers Point,NJ,39.32457491,-74.61155701,RES1,3001,,16,NE,1970,1970,3101,1,1,1339.583597,1339.583597,3507,NO,17.98,26.83,1,2.73,6106,111.269505,121.416637,131.127194,137.349111,I,Above,Gable,0,5701,,22.40106652,0,0,,,,1,1,,0.03,nav,1,1970,1,, 26845,NJBF000057621,,Somers Point,NJ,39.33089036,-74.59591365,COM1,3004,,NaN,ME,1969,0,3401,2,1,33127.20106,33127.20106,3507,NO,40.83,51.47,1,2.03,6106,111.432804,121.604492,131.307109,137.581445,I,Above,Flat,0,NaN,,46.15258341,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26846,NJBF000057894,,Somers Point,NJ,39.33134121,-74.59507785,COM1,3004,,NaN,ME,1969,0,3401,2,1,12509.70791,12509.70791,3507,NO,29.62,43.72,1,-0.47,6112,111.440456,121.613377,131.315582,137.592244,I,Above,Flat,0,NaN,,36.67094279,0,0,,,,1,1,,1,nav,1,1969,2,, 26847,NJBF000055202,151 BALA DR,Somers Point,NJ,39.3254365,-74.61362,RES1,3001,,16,NE,1956,1956,3101,2,1,1266.27182,1266.27182,3507,NO,25.48,33.33,1,1.93,6112,111.218824,121.371361,131.08522,137.294105,I,Above,Gable,0,5701,,29.40500369,0,0,,,,1,1,,0.35,nav,1,1956,2,, 26848,NJBF000055008,4 BRYN MAWR RD,Somers Point,NJ,39.32488681,-74.60217825,RES1,3001,,16,NE,1966,1966,3101,1,1,1470.266484,1470.266484,3507,NO,19.73,28.6,1,0.95,6110,111.427191,121.570716,131.273054,137.538159,I,Above,Gable,0,5701,,24.16283815,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26849,NJBF000053416,10 WISTERIA WALK,Somers Point,NJ,39.31985048,-74.61424326,RES1,3001,,16,NE,1967,1967,3101,2,1,2167.850848,2167.850848,3507,NO,31.8,41.89,1,-0.83,6106,111.31234,121.430976,131.136471,137.361563,I,Above,Hip,0,5701,,36.8425655,0,0,,,,1,1,,0.03,nav,1,1967,2,, 26850,NJBF000057558,10 CRESTMONT DR,Somers Point,NJ,39.3307805,-74.6012685,RES1,3001,,43,NE,1966,1966,3101,2,2,1314.079386,1314.079386,3507,NO,28.22,34.61,1,2.73,6110,111.335395,121.514612,131.222133,137.472267,I,Above,Gable,0,5701,,31.41849297,0,0,,,,1,1,,0.35,nav,1,1966,2,, 26851,NJBF000053234,10 VIOLET LN,Somers Point,NJ,39.31920837,-74.61341821,RES1,3001,,16,NE,1956,1956,3101,1,1,1840.478411,1840.478411,3507,NO,18.62,31.22,1,0.06,6110,111.337911,121.45281,131.156483,137.387737,I,Above,Gable,0,5701,,24.92340898,0,0,,,,1,1,,0.35,nav,1,1956,1,, 26852,NJBF000053307,12 FRESH SPRING COVE,Somers Point,NJ,39.31945264,-74.61611981,RES1,3001,,16,NE,1969,1969,3101,1,1,2061.238315,2061.238315,3507,NO,12.73,25.95,1,0.77,6106,111.288835,121.404827,131.111233,137.328601,I,Above,Hip,0,5701,,19.34369574,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26853,NJBF000057789,8 WILSON AVE,Somers Point,NJ,39.33116619,-74.60349072,RES1,3001,,16,NE,1981,1981,3101,1,1,1809.472763,1809.472763,3507,NO,16.31,23.16,1,-0.59,6112,111.287976,121.472237,131.182314,137.42074,I,Above,Gable,0,5701,,19.73508016,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 26854,NJBF000054836,20 PRINCETON RD,Somers Point,NJ,39.32444033,-74.60630053,RES1,3001,,16,NE,1963,1963,3101,1,1,1300.34415,1300.34415,3507,NO,16.15,26.87,1,2.04,6110,111.362389,121.506635,131.212065,137.459503,I,Above,Gable,0,5701,,21.50787598,0,1.1,,,,1,1,,0.35,nav,1,1963,1,, 26855,NJBF000057923,15 WAYNE DR,Somers Point,NJ,39.33138301,-74.6012114,RES1,3001,,16,NE,1979,1979,3101,2,1,1402.401541,1402.401541,3507,NO,27.83,38.86,1,0.6,6110,111.32541,121.508376,131.216342,137.464775,I,Above,Gable,0,5701,,33.34620363,0,0,,,,1,1,,0.35,nav,1,1979,2,, 26856,NJBF000057823,53 CHAPMAN BLVD,Somers Point,NJ,39.33122983,-74.60436586,RES1,3001,,16,NE,1981,1981,3101,1,1,1709.289603,1709.289603,3507,NO,17.83,28.15,1,1.66,6106,111.271059,121.456615,131.167652,137.40171,I,Above,Gable,0,5701,,22.99023182,0,1.1,,,,1,1,,0.03,nav,1,1981,1,, 26857,NJBF000057828,16 CRESTMONT DR,Somers Point,NJ,39.33123701,-74.60076169,RES1,3001,,43,NE,1979,1979,3101,2,2,1218.982082,1218.982082,3507,NO,29.24,43.57,1,0.73,6106,111.336316,121.517763,131.225168,137.476172,I,Above,Gable,0,5701,,36.40907475,0,0,,,,1,1,,0.03,nav,1,1979,2,, 26858,NJBF000057778,11 CEDAR CT,Somers Point,NJ,39.33114796,-74.60876716,RES1,3001,,16,NE,1988,1988,3101,2,1,1722.478998,1722.478998,3507,NO,30.82,42.57,1,-0.5,6110,111.194841,121.383038,131.098729,137.311831,I,Above,Gable,0,5701,,36.69652375,0,0,,,,1,1,,0.35,nav,1,1988,2,, 26859,NJBF000051622,1414 ATKINSON AVE,Somers Point,NJ,39.30915329,-74.61635115,RES1,3001,,15,NE,1925,1925,3102,2,1,1047.738715,1047.738715,3507,NO,23.46,34.96,1,1.23,6112,111.47451,121.533157,131.218855,137.470571,I,Above,Hip,0,5701,,29.20908973,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 26860,NJBF000055157,19 YALE BLVD,Somers Point,NJ,39.32529686,-74.6110871,RES1,3001,,16,NE,1970,1970,3101,2,1,1469.182406,1469.182406,3507,NO,35.38,45.98,1,0.46,6106,111.264029,121.415569,131.126687,137.34842,I,Above,Gable,0,5701,,40.67967361,0,0,,,,1,1,,0.03,nav,1,1970,2,, 26861,NJBF000052049,23 MAYS LANDING RD,Somers Point,NJ,39.31265761,-74.61287565,COM1,3002,,NaN,ME,1956,1956,3401,1,1,34819.11281,34819.11281,3507,NO,17.07,24.59,1,0.16,6110,111.46761,121.545171,131.236146,137.492116,I,Above,Flat,0,NaN,,20.82998617,0,0,,,,1,1,,1,nav,1,1956,1,, 26862,NJBF000055303,146 EXTON RD,Somers Point,NJ,39.32571791,-74.61128442,RES1,3001,,16,NE,1979,1979,3101,2,1,1687.883192,1687.883192,3507,NO,26.22,40.14,1,1.67,6106,111.252852,121.407052,131.118947,137.338289,I,Above,Gable,0,5701,,33.18078038,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26863,NJBF000057873,6 FOX TAIL CT,Somers Point,NJ,39.33129807,-74.60780387,RES1,3001,,27,NE,1987,1987,3101,2,1,1362.846453,1362.846453,3507,NO,38.3,44.67,1,-0.69,6106,111.208854,121.397521,131.112297,137.329585,I,Above,Flat,0,5701,,41.48645824,0,0,,,,1,1,,0.03,nav,1,1987,2,, 26864,NJBF000053565,29 GULPH MILL RD,Somers Point,NJ,39.32043301,-74.61771197,RES1,3001,,16,NE,1968,1968,3101,1,1,2016.83146,2016.83146,3507,NO,19.93,32.29,1,2.82,6106,111.244793,121.366001,131.075595,137.281743,I,Above,Flat,0,5701,,26.11137186,0,0,,,,1,1,,0.03,nav,1,1968,1,, 26865,NJBF000053257,438 SUNNY AVE,Somers Point,NJ,39.31927176,-74.58875058,RES1,3001,,15,NE,1925,1925,3102,2,1,1050.116591,1050.116591,3505,NO,47.1,57.39,3,8.1,6110,111.777032,121.867096,131.553334,137.893998,I,Above,Gable,0,5701,,52.2428466,0,0,,,,1,1,,0.35,nav,1,1925,2,, 26866,NJBF000055187,111 PRINCETON RD,Somers Point,NJ,39.32538881,-74.60474202,RES1,3001,,16,NE,1964,1964,3101,1,1,1406.537012,1406.537012,3507,NO,17.1,31.18,1,2.54,6106,111.372274,121.521247,131.22646,137.478067,I,Above,Hip,0,5701,,24.13950439,0,0,,,,1,1,,0.03,nav,1,1964,1,, 26867,NJBF000055380,188 JORDAN RD,Somers Point,NJ,39.32593109,-74.60218287,RES1,3001,,16,NE,1965,1965,3101,1,1,1670.006437,1670.006437,3507,NO,14.71,29.36,1,-0.38,6110,111.407919,121.55786,131.261413,137.523114,I,Above,Gable,0,5701,,22.03912794,0,0,,,,1,1,,0.35,nav,1,1965,1,, 26868,NJBF000053404,21 LAUREL DR SOUTH,Somers Point,NJ,39.31981892,-74.61529183,RES1,3001,,16,NE,1958,1958,3101,1,1,2448.258599,2448.258599,3507,NO,15.19,24.12,1,1.2,6106,111.295619,121.413934,131.120281,137.340405,I,Above,Gable,0,5701,,19.65513377,0,0,,,,1,1,,0.03,nav,1,1958,1,, 26869,NJBF000055095,112 OSBORNE RD,Somers Point,NJ,39.32511935,-74.60428765,RES1,3001,,16,NE,1964,1964,3101,1,1,1020.203802,1020.203802,3507,NO,11.69,24.87,1,0.39,6106,111.385292,121.532225,131.236698,137.491305,I,Above,Gable,0,5701,,18.27778658,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 26870,NJBF000055128,22 JEFFERSON AVE,Somers Point,NJ,39.3252165,-74.60133377,RES1,3001,,16,NE,1965,1965,3101,1,1,1487.368552,1487.368552,3507,NO,12.57,25.2,1,0.15,6110,111.436317,121.580952,131.28295,137.550852,I,Above,Gable,0,5701,,18.88343877,0,0,,,,1,1,,0.35,nav,1,1965,1,, 26871,NJBF000051614,1403 ROBERTS AVE,Somers Point,NJ,39.309054,-74.615863,RES1,3001,,16,NE,2000,2000,3102,2,1,1083.242781,1083.242781,3507,NO,28.63,40.59,1,1.04,6106,111.484289,121.542436,131.227642,137.481959,I,Above,Flat,0,5701,,34.61400448,0,0,,,,1,1,,0.03,nav,1,2000,2,, 26872,NJBF000058477,10 WOODLOT CT,Somers Point,NJ,39.33238267,-74.60051412,RES1,3001,,16,NE,1991,1991,3101,1,1,1830.71936,1830.71936,3507,NO,15.86,24.44,1,0.9,6106,111.319887,121.508278,131.216333,137.464743,I,Above,Gable,0,5701,,20.1481639,0,0,,,,1,1,,0.03,nav,1,1991,1,, 26873,NJBF000055101,178 JORDAN RD,Somers Point,NJ,39.32512754,-74.60300598,RES1,3001,,16,NE,1964,1964,3101,1,1,1347.105437,1347.105437,3507,NO,17.68,30.81,1,2.78,6106,111.407938,121.553767,131.257113,137.517628,I,Above,Gable,0,5701,,24.24620402,0,0,,,,1,1,,0.03,nav,1,1964,1,, 26874,NJBF000058692,30 WILSON AVE,Somers Point,NJ,39.33276655,-74.60630108,RES1,3001,,16,NE,1986,1986,3101,1,1,2220.193114,2220.193114,3507,NO,14.16,23.47,1,1.15,6110,111.208049,121.405319,131.119771,137.339384,I,Above,Gable,0,5701,,18.81758954,0,0,,,,1,1,,0.35,nav,1,1986,1,, 26875,NJBF000053374,117 E GROVELAND AVE,Somers Point,NJ,39.31968946,-74.58789922,RES1,3001,,16,NE,1993,1993,3102,2,1,2257.339517,2257.339517,3505,NO,31.8,42.17,3,1.1,6112,111.78577,121.876476,131.562724,137.90566,I,Above,Gable,0,5701,,36.98416776,0,0,,,,1,1,,0.35,nav,1,1993,2,, 26876,NJBF000055103,104 PRINCETON RD,Somers Point,NJ,39.32513129,-74.60560173,RES1,3001,,16,NE,1965,1965,3101,1,1,1322.735678,1322.735678,3507,NO,13.77,28.37,1,-0.74,6106,111.361874,121.509906,131.215585,137.464018,I,Above,Gable,0,5701,,21.07213692,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26877,NJBF000055165,153 BALA DR,Somers Point,NJ,39.32532079,-74.61324667,RES1,3001,,16,NE,1957,1957,3101,2,1,1277.450303,1277.450303,3507,NO,24.9,30.37,1,0.25,6112,111.227212,121.37905,131.092361,137.303479,I,Above,Hip,0,5701,,27.63243684,0,0,,,,1,1,,0.35,nav,1,1957,2,, 26878,NJBF000055096,144 BALA DR,Somers Point,NJ,39.32512246,-74.61464284,RES1,3001,,16,NE,1959,1959,3101,1,1,1242.112773,1242.112773,3507,NO,17.21,31.66,1,-0.78,6106,111.207713,121.358157,131.072595,137.277527,I,Above,Gable,0,5701,,24.4393187,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 26879,NJBF000051525,35 BROADWAY,Somers Point,NJ,39.3079965,-74.6054065,RES1,3001,,16,NE,1950,1950,3102,1,1,1298.838649,1298.838649,3507,NO,17.28,27.37,1,-0.31,6112,111.679475,121.728471,131.405975,137.71054,I,Above,Gable,0,5701,,22.32401549,0,0,,,,1,1,,0.35,nav,1,1950,1,, 26880,NJBF000057403,12 EDGEWOOD DR,Somers Point,NJ,39.33051161,-74.60016024,RES1,3001,,16,NE,1981,1981,3101,2,1,1660.572695,1660.572695,3507,NO,39.3,50.93,1,1.17,6106,111.360647,121.536699,131.242921,137.499083,I,Above,Gable,0,5701,,45.11670199,0,0,,,,1,1,,0.03,nav,1,1981,2,, 26881,NJBF000057451,18 SCHOOLHOUSE DR,Somers Point,NJ,39.33059565,-74.59858188,RES1,3001,,16,NE,1972,1972,3101,2,1,1302.032181,1302.032181,3507,NO,26.65,40.92,1,2.85,6106,111.388253,121.562543,131.267351,137.530506,I,Above,Gable,0,5701,,33.78375194,0,0,,,,1,1,,0.03,nav,1,1972,2,, 26882,NJBF000057335,4 CRESTMONT DR,Somers Point,NJ,39.33039183,-74.60205949,RES1,3001,,43,NE,1966,1966,3101,2,2,510.4000006,510.4000006,3507,NO,28.16,36.75,1,1.79,6112,111.328149,121.505866,131.213822,137.461541,I,Above,Hip,0,5701,,32.45364859,0,1.2,,,,1,1,,0.35,nav,1,1966,2,, 26883,NJBF000057408,3 WAYNE DR,Somers Point,NJ,39.33051998,-74.60242034,RES1,3001,,16,NE,1979,1979,3101,2,1,1274.319048,1274.319048,3507,NO,25.52,37.6,1,-0.45,6112,111.319243,121.498194,131.206621,137.452227,I,Above,Gable,0,5701,,31.56141273,0,0,,,,1,1,,0.35,nav,1,1979,2,, 26884,NJBF000055044,15 YALE BLVD,Somers Point,NJ,39.32497556,-74.61079685,RES1,3001,,16,NE,1971,1971,3101,1,1,1727.78292,1727.78292,3507,NO,14.36,22.01,1,-0.1,6110,111.274925,121.424413,131.134799,137.359027,I,Above,Gable,0,5701,,18.18499636,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26885,NJBF000051660,10 MACARTHUR BLVD,Somers Point,NJ,39.30959065,-74.60004062,COM1,3001,,NaN,ME,1971,1971,3401,1,1,6297.053143,6297.053143,3507,NO,11.75,17.16,1,0.66,6112,111.744542,121.797479,131.475362,137.797864,I,Above,Flat,0,NaN,,14.45803004,0,0,,,,1,1,,1,nav,1,1971,1,, 26886,NJBF000055133,22 AMBLER RD,Somers Point,NJ,39.32523381,-74.60809406,RES1,3001,,16,NE,1970,1970,3101,1,1,2226.313121,2226.313121,3507,NO,14.55,21.08,1,2.53,6106,111.316492,121.466655,131.174789,137.411109,I,Above,Gable,0,5701,,17.81392518,0,0,,,,1,1,,0.03,nav,1,1970,1,, 26887,NJBF000055124,3 BRYN MAWR RD,Somers Point,NJ,39.32521034,-74.6019405,RES1,3001,,16,NE,1965,1965,3101,1,1,1459.280205,1459.280205,3507,NO,18.85,33.29,1,2.46,6110,111.425533,121.570785,131.273298,137.538449,I,Above,Gable,0,5701,,26.07006309,0,0,,,,1,1,,0.35,nav,1,1965,1,, 26888,NJBF000057851,10 WILSON AVE,Somers Point,NJ,39.33126614,-74.60369089,RES1,3001,,16,NE,1981,1981,3101,1,1,2320.124361,2320.124361,3507,NO,15.33,22.42,1,-0.01,6112,111.282526,121.467639,131.178009,137.415156,I,Above,Gable,0,5701,,18.87679685,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 26889,NJBF000055516,1414 MASSACHUSETTS AVE,Somers Point,NJ,39.32630603,-74.60897958,RES1,3001,,16,NE,1970,1970,3101,1,1,2030.172651,2030.172651,3507,NO,18.78,30.23,1,2.98,6110,111.28129,121.438535,131.148917,137.377397,I,Above,Hip,0,5701,,24.50605413,0,0,,,,1,1,,0.35,nav,1,1970,1,, 26890,NJBF000057175,184 EXTON RD,Somers Point,NJ,39.33008181,-74.60704309,RES1,3001,,27,NE,1987,1987,3101,2,1,500.5604075,500.5604075,3507,NO,29.42,36.48,1,0.56,6106,111.244816,121.425113,131.137859,137.362938,I,Above,Gable,0,5701,,32.94716869,0,0,,,,1,1,,0.03,nav,1,1987,2,, 26891,NJBF000057208,12 SCHOOLHOUSE DR,Somers Point,NJ,39.33014752,-74.59916613,RES1,3001,,16,NE,1972,1972,3101,2,1,1509.316242,1509.316242,3507,NO,39.39,52.6,1,1.74,6106,111.385614,121.557979,131.262958,137.524882,I,Above,Gable,0,5701,,45.99757821,0,0,,,,1,1,,0.03,nav,1,1972,2,, 26892,NJBF000057340,7 CRESTMONT DR,Somers Point,NJ,39.33039491,-74.60107848,RES1,3001,,43,NE,1966,1966,3101,2,2,1299.251743,1299.251743,3507,NO,36.86,47.64,1,1.96,6110,111.345966,121.522497,131.2295,137.481786,I,Above,Gable,0,5701,,42.25171622,0,0,,,,1,1,,0.35,nav,1,1966,2,, 26893,NJBF000051785,106 WOODLAND AVE,Somers Point,NJ,39.31073253,-74.60167456,RES1,3001,,16,NE,1955,1955,3102,2,1,2038.91211,2038.91211,3505,NO,32.43,40.95,3,8.81,6106,111.694901,121.755732,131.436478,137.748549,I,Above,Hip,0,5701,,36.68892684,0,0,,,,1,1,,0.03,nav,1,1955,2,, 26894,NJBF000054242,100 E DAWES AVE,Somers Point,NJ,39.32282632,-74.58628312,RES1,3001,,16,NE,1956,1956,3102,1,1,1312.791283,1312.791283,3505,NO,9.81,21.67,3,-1.26,6112,111.760941,121.865828,131.55447,137.894885,I,Above,Gable,0,5701,,15.74186127,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 26895,NJBF000054287,100 E DAWES AVE,Somers Point,NJ,39.32296335,-74.58617468,RES1,3001,,16,NE,1956,1956,3102,1,1,1277.122017,1277.122017,3505,NO,25.55,37.87,3,8.95,6110,111.760597,121.866012,131.554724,137.895181,I,Above,Gable,0,5701,,31.70690361,0,1.1,,,,1,1,,0.35,nav,1,1956,1,, 26896,NJBF000054263,14 OSBORNE RD,Somers Point,NJ,39.32290023,-74.60664775,RES1,3001,,16,NE,1960,1960,3101,2,1,1515.948214,1515.948214,3507,NO,30.86,39.47,1,-0.26,6110,111.384796,121.519835,131.223495,137.474396,I,Above,Gable,0,5701,,35.16326897,0,0,,,,1,1,,0.35,nav,1,1960,2,, 26897,NJBF000051487,7 LANDING LN,Somers Point,NJ,39.30757123,-74.60161316,RES1,3001,,17,NE,1986,1986,3102,2,1,2415.640147,2415.640147,3507,NO,34.45,47.19,1,2.95,6102,111.753359,121.796937,131.47184,137.793892,I,Above,Hip,0,5701,,40.82157636,0,0,,,,1,1,,0.03,nav,1,1986,2,, 26898,NJBF000057934,12 WILSON AVE,Somers Point,NJ,39.33139448,-74.60391537,RES1,3001,,16,NE,1981,1981,3101,1,1,1924.641187,1924.641187,3507,NO,12.77,18.86,1,0.87,6112,111.27613,121.462297,131.173011,137.408669,I,Above,Hip,0,5701,,15.81198446,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 26899,NJBF000057448,16 SCHOOLHOUSE DR,Somers Point,NJ,39.3305935,-74.5989055,RES1,3001,,16,NE,1973,1973,3101,1,1,601.6179045,601.6179045,3507,NO,10.48,15.82,1,-0.54,6106,111.382302,121.557064,131.26217,137.523849,I,Above,Gable,0,5701,,13.15251326,0,0,,,,1,1,,0.03,nav,1,1973,1,, 26900,NJBF000057365,16 SCHOOLHOUSE DR,Somers Point,NJ,39.3304415,-74.598783,RES1,3001,,16,NE,1973,1973,3101,1,1,1579.772428,1579.772428,3507,NO,13.16,22.43,1,-0.07,6106,111.387353,121.56098,131.265848,137.528582,I,Above,Gable,0,5701,,17.79375283,0,0,,,,1,1,,0.03,nav,1,1973,1,, 26901,NJBF000057238,13 SCHOOLHOUSE DR,Somers Point,NJ,39.33020398,-74.59847484,RES1,3001,,16,NE,1972,1972,3101,2,1,1287.403887,1287.403887,3507,NO,39.33,54.14,1,0.95,6110,111.397381,121.569066,131.273454,137.538363,I,Above,Gable,0,5701,,46.73353386,0,0,,,,1,1,,0.35,nav,1,1972,2,, 26902,NJBF000051512,45 BROADWAY,Somers Point,NJ,39.30784463,-74.60623023,RES1,3001,,16,NE,1955,1955,3102,2,1,1438.634041,1438.634041,3507,NO,36.48,42.81,1,1.68,6112,111.668046,121.716776,131.39438,137.695864,I,Above,Gable,0,5701,,39.64555903,0,0,,,,1,1,,0.35,nav,1,1955,2,, 26903,NJBF000057131,10 SCHOOLHOUSE DR,Somers Point,NJ,39.32999016,-74.59935453,RES1,3001,,16,NE,1972,1972,3101,1,1,1680.992973,1680.992973,3507,NO,16.64,27.73,1,-0.27,6106,111.385011,121.556662,131.261683,137.523249,I,Above,Gable,0,5701,,22.18460257,0,0,,,,1,1,,0.03,nav,1,1972,1,, 26904,NJBF000057509,11 CRESTMONT DR,Somers Point,NJ,39.330689,-74.600711,RES1,3001,,43,NE,1966,1966,3101,2,2,1445.945065,1445.945065,3507,NO,33.46,44.89,1,1.54,6110,111.347293,121.525204,131.232104,137.485136,I,Above,Hip,0,5701,,39.17913051,0,0,,,,1,1,,0.35,nav,1,1966,2,, 26905,NJBF000057295,11 EDGEWOOD DR,Somers Point,NJ,39.33032366,-74.59976503,RES1,3001,,16,NE,1979,1979,3101,2,1,1317.800373,1317.800373,3507,NO,38.95,52.91,1,1.96,6106,111.371352,121.545675,131.251364,137.509961,I,Above,Gable,0,5701,,45.93194221,0,0,,,,1,1,,0.03,nav,1,1979,2,, 26906,NJBF000057248,8 EDGEWOOD DR,Somers Point,NJ,39.33022449,-74.60054294,RES1,3001,,16,NE,1977,1977,3101,2,1,1892.324386,1892.324386,3507,NO,40.01,48.78,1,1.78,6106,111.358891,121.533647,131.239988,137.495314,I,Above,Gable,0,5701,,44.39534729,0,0,,,,1,1,,0.03,nav,1,1977,2,, 26907,NJBF000051499,57 BROADWAY,Somers Point,NJ,39.30763365,-74.60731226,RES1,3001,,18,NE,1990,1990,3102,2,1,2000.35849,2000.35849,3507,NO,26.15,35.15,1,-0.18,6110,111.653315,121.70157,131.379278,137.676726,I,Above,Gable,0,5701,,30.64736461,0,0,,,,1,1,,0.03,nav,1,1990,2,, 26908,NJBF000057324,10 EDGEWOOD DR,Somers Point,NJ,39.33036447,-74.60032834,RES1,3001,,16,NE,1978,1978,3101,1,1,1540.881077,1540.881077,3507,NO,18.59,29.65,1,0.83,6106,111.36027,121.53562,131.241876,137.497743,I,Above,Gable,0,5701,,24.12158751,0,0,,,,1,1,,0.03,nav,1,1978,1,, 26909,NJBF000057469,16 CEDAR CT,Somers Point,NJ,39.33062475,-74.60799824,RES1,3001,,27,NE,1987,1987,3101,1,1,1361.312871,1361.312871,3507,NO,15.85,26.17,1,2,6106,111.217988,121.402377,131.116697,137.335323,I,Above,Gable,0,5701,,21.00884807,0,0,,,,1,1,,0.03,nav,1,1987,1,, 26910,NJBF000054249,7 HADDON RD,Somers Point,NJ,39.32285086,-74.60859585,RES1,3001,,16,NE,1962,1962,3101,1,1,1467.422401,1467.422401,3507,NO,16.98,21.99,1,0,6110,111.35199,121.487722,131.193032,137.434938,I,Above,Gable,0,5701,,19.48450202,0,0,,,,1,1,,0.35,nav,1,1962,1,, 26911,NJBF000057169,35 CHAPMAN BLVD,Somers Point,NJ,39.33007,-74.6021915,RES1,3001,,16,NE,1974,1974,3101,1,1,1322.540462,1322.540462,3507,NO,18.01,29.16,1,2.13,6110,111.331656,121.507485,131.215282,137.463436,I,Above,Gable,0,5701,,23.58275659,0,0,,,,1,1,,0.35,nav,1,1974,1,, 26912,NJBF000052644,520 BAY AVE,Somers Point,NJ,39.31620067,-74.58780549,COM8,3001,510,17,ME,2008,2008,3401,2,1,1977.442596,1977.442596,3507,NO,25.1,39.89,1,1.12,6106,111.849782,121.920893,131.602868,137.956213,I,Above,Gable,0,NaN,,32.49841692,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 26913,NJBF000052605,520 BAY AVE,Somers Point,NJ,39.315936,-74.589263,RES1,3001,510,17,NE,2008,2008,3102,2,1,759.3920355,759.3920355,3507,NO,33.97,41.73,1,1.32,6106,111.827034,121.899445,131.581796,137.93003,I,Above,Flat,0,5701,,37.84881682,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 26914,NJBF000057263,5 CRESTMONT DR,Somers Point,NJ,39.33025117,-74.60127199,RES1,3001,,43,NE,1966,1966,3101,2,2,1347.874852,1347.874852,3507,NO,23.68,34.89,1,2.18,6110,111.345066,121.520932,131.227997,137.47985,I,Above,Gable,0,5701,,29.28375981,0,0,,,,1,1,,0.35,nav,1,1966,2,, 26915,NJBF000057360,8 CEDAR CT,Somers Point,NJ,39.33043965,-74.60743585,RES1,3001,,27,NE,1987,1987,3101,2,1,1365.951116,1365.951116,3507,NO,23.27,31.2,1,0.61,6110,111.231265,121.414126,131.127653,137.349628,I,Above,Gable,0,5701,,27.23363126,0,0,,,,1,1,,0.35,nav,1,1987,2,, 26916,NJBF000052633,557 LAUNCH AVE,Somers Point,NJ,39.31613,-74.58677133,RES1,3001,,17,NE,1998,1998,3102,2,1,1265.50916,1265.50916,3505,NO,37.33,48.33,3,1.65,6106,111.87064,121.939313,131.620702,137.978377,I,Above,Flat,0,5701,,42.82705456,0,0,,,,1,1,,0.03,nav,1,1998,2,, 26917,NJBF000051609,1418 ATKINSON AVE,Somers Point,NJ,39.30898763,-74.61639817,RES1,3001,,15,NE,1925,1925,3102,1,1,1538.143371,1538.143371,3507,NO,13.54,21.82,1,-0.89,6112,111.476756,121.534525,131.219884,137.471945,I,Above,Gable,0,5701,,17.68100196,0,0,,,,1,1,,0.35,nav,1,1925,1,, 26918,NJBF000051654,911 BAY AVE,Somers Point,NJ,39.30950337,-74.59639176,RES1,3001,,16,NE,1946,1946,3102,2,1,1476.622369,1476.622369,3505,NO,27.17,34.17,3,-0.29,6106,111.811463,121.859628,131.535649,137.873574,I,Above,Hip,0,5701,,30.66880695,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 26919,NJBF000057157,11 SCHOOLHOUSE DR,Somers Point,NJ,39.33005034,-74.59864895,RES1,3001,,16,NE,1972,1972,3101,1,1,1584.8294,1584.8294,3507,NO,16.19,29.74,1,-0.45,6110,111.396964,121.567953,131.272373,137.536981,I,Above,Gable,0,5701,,22.96213737,0,0,,,,1,1,,0.35,nav,1,1972,1,, 26920,NJBF000053166,101 E MARYLAND AVE,Somers Point,NJ,39.31895235,-74.58923217,COM1,3001,642,NaN,ME,1960,1960,3401,1,1,15206.36963,15206.36963,3507,NO,13.08,24.23,1,2.26,6110,111.77365,121.862847,131.548975,137.8886,I,Above,Flat,0,NaN,,18.65809347,0,0,,,,1,1,,1,nav,1,1960,1,, 26921,NJBF000056177,47 BUCKNELL RD,Somers Point,NJ,39.32789853,-74.61124912,RES1,3001,,16,NE,1978,1978,3101,2,1,1367.440377,1367.440377,3507,NO,38.01,49.79,1,2.13,6106,111.212792,121.38076,131.095483,137.307537,I,Above,Gable,0,5701,,43.90281948,0,0,,,,1,1,,0.03,nav,1,1978,2,, 26922,NJBF000057259,13 PACIFIC AVE,Somers Point,NJ,39.33016301,-74.60718492,RES1,3001,,27,NE,1987,2001,3101,1,1,2348.028537,2348.028537,3507,NO,15.3,26.72,1,2.29,6106,111.240817,121.421729,131.134707,137.358829,I,Above,Gable,0,5701,,21.01327313,0,0,,,,1,1,,0.03,nav,1,1987,1,, 26923,NJBF000054884,137 COLWICK DR,Somers Point,NJ,39.32455417,-74.6133165,RES1,3001,,16,NE,1957,1957,3101,1,1,1255.941983,1255.941983,3507,NO,15.12,28.82,1,2.38,6110,111.240352,121.387432,131.099686,137.313109,I,Above,Hip,0,5701,,21.96931515,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 26924,NJBF000051767,107 HOLLY HILLS DR,Somers Point,NJ,39.31064429,-74.60203562,RES1,3001,,16,NE,1955,1955,3102,1,1,2137.281776,2137.281776,3505,NO,14.28,23.44,3,2.38,6112,111.690157,121.750836,131.431612,137.742412,I,Above,Gable,0,5701,,18.86133283,0,0,,,,1,1,,0.35,nav,1,1955,1,, 26925,NJBF000057607,196 EXTON RD,Somers Point,NJ,39.33086857,-74.6067828,RES1,3001,,27,NE,1988,1988,3101,2,1,1257.105706,1257.105706,3507,NO,25.6,36.84,1,2.64,6106,111.234772,121.419992,131.133244,137.356927,I,Above,Gable,0,5701,,31.21815512,0,0,,,,1,1,,0.03,nav,1,1988,2,, 26926,NJBF000055883,19 BUCKNELL RD,Somers Point,NJ,39.32720358,-74.61025219,RES1,3001,,16,NE,1979,1979,3101,2,1,1307.814253,1307.814253,3507,NO,22.65,29.19,1,-0.13,6106,111.242747,121.406079,131.118886,137.338177,I,Above,Gable,0,5701,,25.91792454,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26927,NJBF000054253,7 PRINCETON RD,Somers Point,NJ,39.32287091,-74.60747231,RES1,3001,,16,NE,1961,1961,3101,2,1,1281.868222,1281.868222,3507,NO,23.42,28.78,1,1.24,6110,111.371022,121.506347,131.210688,137.457824,I,Above,Hip,0,5701,,26.09950548,0,0,,,,1,1,,0.35,nav,1,1961,2,, 26928,NJBF000052820,1 LANTERN LN,Somers Point,NJ,39.31852347,-74.6140954,RES1,3001,,16,NE,1957,1960,3101,1,1,3003.563144,3003.563144,3507,NO,15.63,26.03,1,0.52,6112,111.339352,121.450227,131.153247,137.383598,I,Above,Hip,0,5701,,20.82827113,0,0,,,,1,1,,0.35,nav,1,1957,1,, 26929,NJBF000051781,11 MACARTHUR BLVD,Somers Point,NJ,39.31070659,-74.599161,COM1,3001,739,NaN,ME,1950,1950,3401,2,1,35477.96483,35477.96483,3507,NO,33.14,38.83,1,-0.03,6112,111.739982,121.798071,131.47748,137.800296,I,Above,Hip,0,NaN,,35.98731472,0,0,,,,1,1,,1,nav,1,1950,2,, 26930,NJBF000055652,48 BUCKNELL RD,Somers Point,NJ,39.32666875,-74.61192574,RES1,3001,,16,NE,1979,1979,3101,1,1,2174.598897,2174.598897,3507,NO,15.61,30.05,1,-0.02,6106,111.224268,121.38452,131.098358,137.311314,I,Above,Gable,0,5701,,22.82785309,0,0,,,,1,1,,0.03,nav,1,1979,1,, 26931,NJBF000057303,180 EXTON RD,Somers Point,NJ,39.33033447,-74.60899613,RES3D,3004,20,NaN,ME,1971,1971,3301,2,1,6573.958215,6573.958215,3507,NO,31.22,40.41,1,1.99,6106,111.206041,121.38903,131.104136,137.318891,I,Above,Gable,0,NaN,,35.81315662,0,0,,,,1,1,,0.03,nav,1,1971,2,, 26932,NJBF000056688,180 EXTON RD,Somers Point,NJ,39.3290485,-74.6093845,RES3D,3004,20,NaN,ME,1971,1971,3301,2,1,6866.11241,6866.11241,3507,NO,35.72,43.66,1,-0.84,6110,111.223282,121.39811,131.112225,137.329459,I,Above,Gable,0,NaN,,39.69119332,0,0,,,,1,1,,0.35,nav,1,1971,2,, 26933,NJBF000057026,180 EXTON RD,Somers Point,NJ,39.3297595,-74.6096825,RES3D,3004,20,NaN,ME,1971,1971,3301,1,1,5171.184935,5171.184935,3507,NO,16.3,23.95,1,0.72,6110,111.20487,121.384403,131.099638,137.312993,I,Above,Gable,0,NaN,,20.12113951,0,0,,,,1,1,,0.35,nav,1,1971,1,, 26934,NJBF000057126,180 EXTON RD,Somers Point,NJ,39.32998267,-74.609488,RES3D,3004,20,NaN,ME,1971,1971,3301,2,1,2772.972781,2772.972781,3507,NO,28.79,35.82,1,2.94,6110,111.204074,121.384982,131.10025,137.313797,I,Above,Hip,0,NaN,,32.30590474,0,0,,,,1,1,,0.35,nav,1,1971,2,, 26935,NJBF000056903,180 EXTON RD,Somers Point,NJ,39.3295025,-74.6092315,RES3D,3004,20,NaN,ME,1971,1971,3301,2,1,6588.726024,6588.726024,3507,NO,29.15,41.95,1,1.56,6110,111.217464,121.395159,131.10962,137.326055,I,Above,Gable,0,NaN,,35.55092647,0,0,,,,1,1,,0.35,nav,1,1971,2,, 26936,NJBF000056484,180 EXTON RD,Somers Point,NJ,39.3285765,-74.608661,RES3D,3004,20,NaN,ME,1971,1971,3301,2,1,6996.692709,6996.692709,3507,NO,24.42,32.86,1,1.45,6106,111.244589,121.416088,131.1289,137.351249,I,Above,Gable,0,NaN,,28.64070958,0,0,,,,1,1,,0.03,nav,1,1971,2,, 26937,NJBF000056581,180 EXTON RD,Somers Point,NJ,39.328792,-74.608175,RES3D,3004,20,NaN,ME,1971,1971,3301,2,1,5899.528286,5899.528286,3507,NO,34.97,40.37,1,0.35,6110,111.249008,121.421658,131.134208,137.358176,I,Above,Flat,0,NaN,,37.6701182,0,0,,,,1,1,,0.35,nav,1,1971,2,, 26938,NJBF000056935,180 EXTON RD,Somers Point,NJ,39.32957394,-74.60804788,RES3D,3004,20,NaN,ME,1971,1971,3301,2,1,5057.373143,5057.373143,3507,NO,39.34,46.32,1,0.65,6110,111.236673,121.414283,131.12756,137.349499,I,Above,Gable,0,NaN,,42.83298505,0,0,,,,1,1,,0.35,nav,1,1971,2,, 26939,NJBF000051485,5 LANDING LN,Somers Point,NJ,39.30753625,-74.60187014,RES1,3001,,19,NE,1980,1986,3102,2,1,3121.810481,3121.810481,3507,NO,23.08,34.12,1,-0.89,6102,111.749475,121.793106,131.468059,137.789138,I,Above,Hip,0,5701,,28.59612573,0,0,,,,1,1,,0.03,nav,1,1980,2,, 26940,NJBF000053117,14 VIOLET LN,Somers Point,NJ,39.31875941,-74.61350352,RES1,3001,,16,NE,1956,1956,3101,1,1,1728.128662,1728.128662,3507,NO,11.55,21.16,1,0.72,6112,111.344788,121.457059,131.160012,137.392387,I,Above,Hip,0,5701,,16.359252,0,0,,,,1,1,,0.35,nav,1,1956,1,, 26941,NJBF000057497,192 EXTON RD,Somers Point,NJ,39.33067457,-74.6069044,RES1,3001,,27,NE,1987,1987,3101,2,1,1566.159871,1566.159871,3507,NO,30.02,39.58,1,2.65,6106,111.236244,121.420287,131.13348,137.357232,I,Above,Gable,0,5701,,34.80030809,0,0,,,,1,1,,0.03,nav,1,1987,2,, 26942,NJBF000052087,77 GIBBS AVE,Somers Point,NJ,39.31284139,-74.59283688,RES1,3001,,15,NE,1920,1920,3102,1,1,907.7544555,907.7544555,3505,NO,21.19,31.15,3,6.53,6106,111.816106,121.877479,131.557211,137.899886,I,Above,Gable,0,5701,,26.17016035,0,0,,,,1,1,,0.03,nav,1,1920,1,, 26943,NJBF000052077,83 GIBBS AVE,Somers Point,NJ,39.3127885,-74.592773,RES1,3001,,43,NE,1935,1935,3102,3,4,1155.832962,1155.832962,3505,NO,58.23,72.65,3,3.71,6106,111.81822,121.879206,131.558829,137.901917,I,Above,Flat,0,5701,,65.43613497,0,0,,,,1,1,,0.03,nav,1,1935,3,, 26944,NJBF000052883,118 PLEASANT AVE,Somers Point,NJ,39.31762865,-74.58996372,RES1,3001,,16,NE,1961,1961,3102,1,1,2277.289591,2277.289591,3505,NO,19.42,27.64,3,1.36,6110,111.783542,121.866685,131.551589,137.892068,I,Above,Gable,0,5701,,23.53016326,0,0,,,,1,1,,0.35,nav,1,1961,1,, 26945,NJBF000052842,537 SUNRISE AVE,Somers Point,NJ,39.31740788,-74.5901237,RES1,3001,,16,NE,1961,1961,3102,1,1,3489.726713,3489.726713,3505,NO,13.12,24.77,3,1.25,6112,111.784498,121.866694,131.551405,137.891872,I,Above,Gable,0,5701,,18.94308708,0,0,,,,1,1,,0.35,nav,1,1961,1,, 26946,NJBF000054827,105 OSBORNE RD,Somers Point,NJ,39.32441553,-74.60442502,RES1,3001,,16,NE,1964,1964,3101,1,1,1560.023038,1560.023038,3507,NO,14.38,22.84,1,0.07,6110,111.395828,121.538552,131.242274,137.498546,I,Above,Gable,0,5701,,18.6092763,0,0,,,,1,1,,0.35,nav,1,1964,1,, 26947,NJBF000057292,39 CHAPMAN BLVD,Somers Point,NJ,39.33031304,-74.6026428,RES1,3001,,16,NE,1974,1974,3101,1,1,1677.901805,1677.901805,3507,NO,19.45,25.9,1,1.74,6112,111.319014,121.4969,131.205362,137.450603,I,Above,Gable,0,5701,,22.6777581,0,0,,,,1,1,,0.35,nav,1,1974,1,, 26948,NJBF000052408,155 MEDICAL CENTER WAY,Somers Point,NJ,39.314508,-74.5918965,COM7,3001,,NaN,ME,2013,2013,3401,2,1,9567.983018,9567.983018,3507,NO,24.04,29.32,1,0.41,6106,111.803489,121.872577,131.554295,137.895952,I,Above,Flat,0,NaN,,26.68137978,0,0,,,,1,1,,0.03,nav,1,2013,2,, 26949,NJBF000052465,,Somers Point,NJ,39.31488858,-74.59130171,RES1,3001,,NaN,NE,2013,0,3102,2,1,57492.70589,57492.70589,3507,NO,36.13,49.17,1,-0.94,6106,111.80769,121.8779,131.559855,137.902834,I,Above,Gable,0,5701,,42.65214584,0,0,,,,1,1,,0.03,nav,1,2013,2,, 26950,NJBF000051592,1422 ATKINSON AVE,Somers Point,NJ,39.30874516,-74.61676501,RES1,3001,,16,NE,1982,1982,3102,2,1,1146.315057,1146.315057,3507,NO,30.72,43.5,1,-0.68,6110,111.475211,121.531666,131.216687,137.467874,I,Above,Gable,0,5701,,37.1083486,0,0,,,,1,1,,0.35,nav,1,1982,2,, 26951,NJBF000052819,,Somers Point,NJ,39.31729263,-74.58961706,RES3C,3001,,NaN,ME,1969,0,3301,2,1,8224.227969,8224.227969,3505,NO,40.74,47.55,3,3.82,6106,111.796086,121.876707,131.560999,137.903874,I,Above,Hip,0,NaN,,44.14324858,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26952,NJBF000058614,39 WILSON AVE,Somers Point,NJ,39.33261205,-74.60713396,RES1,3001,,16,NE,1985,1985,3101,2,1,1721.770941,1721.770941,3507,NO,37.96,47.99,1,-0.27,6106,111.196183,121.393049,131.108294,137.324388,I,Above,Gable,0,5701,,42.97593578,0,0,,,,1,1,,0.03,nav,1,1985,2,, 26953,NJBF000057486,19 SCHOOLHOUSE DR,Somers Point,NJ,39.33065095,-74.59782508,RES1,3001,,16,NE,1972,1972,3101,2,1,1651.305735,1651.305735,3507,NO,30.28,43.84,1,-0.59,6110,111.401328,121.574776,131.27893,137.545368,I,Above,Gable,0,5701,,37.05899146,0,0,,,,1,1,,0.35,nav,1,1972,2,, 26954,NJBF000055416,113 HADDON RD,Somers Point,NJ,39.3260435,-74.605417,RES1,3001,,16,NE,1965,1965,3101,1,1,1650.644215,1650.644215,3507,NO,18.41,32.27,1,1.01,6106,111.348276,121.501831,131.208459,137.45475,I,Above,Gable,0,5701,,25.33692899,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26955,NJBF000055485,1407 MASSACHUSETTS AVE,Somers Point,NJ,39.32622049,-74.6081163,RES1,3001,,16,NE,1969,1969,3101,1,1,1957.749208,1957.749208,3507,NO,11.8,18.31,1,-0.93,6106,111.297818,121.454143,131.163567,137.396478,I,Above,Gable,0,5701,,15.05782503,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26956,NJBF000051756,108 WOODLAND AVE,Somers Point,NJ,39.31054,-74.601626,RES1,3001,,16,NE,1955,1984,3102,2,1,1472.125662,1472.125662,3505,NO,31.29,41.99,3,2.85,6106,111.699272,121.758995,131.439371,137.752247,I,Above,Gable,0,5701,,36.64341493,0,0,,,,1,1,,0.03,nav,1,1955,2,, 26957,NJBF000053692,25 GULPH MILL RD,Somers Point,NJ,39.32089372,-74.61743171,RES1,3001,,16,NE,1965,1965,3101,1,1,1504.351471,1504.351471,3507,NO,21.45,27.48,1,2.2,6106,111.240768,121.364801,131.074975,137.280887,I,Above,Gable,0,5701,,24.46872872,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26958,NJBF000053202,54 GULPH MILL RD,Somers Point,NJ,39.31906454,-74.61824956,RES1,3001,,16,NE,1973,1973,3101,1,1,2756.554771,2756.554771,3507,NO,15.49,29.75,1,-0.63,6106,111.261469,121.374483,131.082007,137.290308,I,Above,Hip,0,5701,,22.61903152,0,0,,,,1,1,,0.03,nav,1,1973,1,, 26959,NJBF000053194,8 FRESH SPRING COVE,Somers Point,NJ,39.31903909,-74.61638252,RES1,3001,,16,NE,1970,1970,3101,1,1,2317.124438,2317.124438,3507,NO,14.51,26.36,1,-0.41,6106,111.29221,121.405721,131.111595,137.32912,I,Above,Gable,0,5701,,20.43360685,0,0,,,,1,1,,0.03,nav,1,1970,1,, 26960,NJBF000055418,125 OSBORNE RD,Somers Point,NJ,39.32604584,-74.60279519,RES1,3001,,16,NE,1964,1964,3101,1,1,1475.500739,1475.500739,3507,NO,19.34,30.7,1,0.69,6110,111.394822,121.546101,131.250331,137.508834,I,Above,Gable,0,5701,,25.01704371,0,0,,,,1,1,,0.35,nav,1,1964,1,, 26961,NJBF000054401,101 E DAWES AVE,Somers Point,NJ,39.32328637,-74.58592431,RES1,3001,,16,NE,1928,1928,3102,2,1,2272.465001,2272.465001,3505,NO,26.62,37.73,3,5.42,6112,111.759724,121.866388,131.555262,137.895803,I,Above,Gable,0,5701,,32.17243923,0,0.2,,,,1,1,,0.35,nav,1,1928,2,, 26962,NJBF000054450,101 E DAWES AVE,Somers Point,NJ,39.3234395,-74.585768,RES1,3001,,16,NE,1928,1928,3102,2,1,808.7694276,808.7694276,3505,NO,37.91,47.99,3,3.48,6112,111.760034,121.867201,131.556128,137.896861,I,Above,Gable,0,5701,,42.95089259,0,0.2,,,,1,1,,0.35,nav,1,1928,2,, 26963,NJBF000051548,31 BROADWAY,Somers Point,NJ,39.30820279,-74.6048412,RES1,3001,,18,NE,1957,2006,3102,2,1,2737.506313,2737.506313,3507,NO,31.77,45.39,1,0.42,6112,111.685527,121.735227,131.412859,137.719216,I,Above,Hip,0,5701,,38.58180658,0,0,,,,1,1,,0.35,nav,1,1957,2,, 26964,NJBF000058987,20 WHITMAN DR,Somers Point,NJ,39.3333085,-74.603542,RES1,3001,,16,NE,1984,1984,3101,2,1,1347.397913,1347.397913,3507,NO,37.74,46.33,1,0.54,6112,111.247519,121.445704,131.157584,137.388644,I,Above,Gable,0,5701,,42.0340098,0,0,,,,1,1,,0.35,nav,1,1984,2,, 26965,NJBF000055607,8 STANFORD RD,Somers Point,NJ,39.32654507,-74.6077589,RES1,3001,,16,NE,1969,1969,3101,1,1,2167.022547,2167.022547,3507,NO,15.25,20.57,1,2.38,6106,111.297982,121.456167,131.165647,137.399173,I,Above,Gable,0,5701,,17.91368633,0,0,,,,1,1,,0.03,nav,1,1969,1,, 26966,NJBF000053602,123 E CEDAR AVE,Somers Point,NJ,39.32057324,-74.58694874,RES1,3001,,17,NE,2004,2004,3102,1,1,3394.52294,3394.52294,3505,NO,21.91,29.53,3,5.43,6112,111.788159,121.881852,131.568557,137.912802,I,Above,Hip,0,5701,,25.72048538,0,1.1,,,,1,1,,0.35,nav,1,2004,1,, 26967,NJBF000055690,118 HADDON RD,Somers Point,NJ,39.32674566,-74.60525303,RES1,3001,,16,NE,1966,1966,3101,2,1,1313.832084,1313.832084,3507,NO,21.81,31.44,1,0.67,6106,111.338176,121.495993,131.203298,137.448036,I,Above,Gable,0,5701,,26.62628211,0,0,,,,1,1,,0.03,nav,1,1966,2,, 26968,NJBF000051786,,Somers Point,NJ,39.31074983,-74.61072855,RES4,3001,,NaN,ME,1988,0,3401,2,1,8054.758566,8054.758566,3507,NO,29.43,35.74,1,0.78,6106,111.538492,121.605104,131.290933,137.563081,I,Above,Flat,0,NaN,,32.58390826,0,0,,,,1,1,,0.03,nav,1,1988,2,, 26969,NJBF000052440,1 WOODLAWN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,17,NE,2007,2005,3102,2,1,2765.173671,2765.173671,3505,NO,39.15,45.33,3,5.37,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,42.24006865,0,0,,,,1,1,,0.03,nav,1,2007,2,, 26970,NJBF000052205,,Somers Point,NJ,39.31339718,-74.61907103,COM8,3002,,NaN,ME,1969,0,3401,2,1,41804.48868,41804.48868,3507,NO,27.18,34.7,1,1.26,6106,111.352799,121.433674,131.130341,137.354516,I,Above,Flat,0,5703,,30.93793583,0,0,,,,1,1,,0.03,nav,1,1969,2,, 26971,NJBF000052096,715 BAY AVE,Somers Point,NJ,39.31288802,-74.59247198,COM7,3001,560,16,ME,1970,1970,3401,3,1,1238.672776,1238.672776,3507,NO,51.75,60.58,1,1.45,6106,111.821987,121.883045,131.562672,137.906697,I,Above,Gable,0,NaN,,56.1690036,0,0,,,,1,1,,0.03,nav,1,1970,3,, 26972,NJBF000051496,6 BROADWAY,Somers Point,NJ,39.30761919,-74.60079101,RES4,3001,280,NaN,ME,1972,1972,3401,2,1,9488.02169,9488.02169,3507,NO,31.85,39.76,1,1.97,6102,111.766978,121.810011,131.484635,137.809988,I,Above,Flat,0,NaN,,35.80350977,0,0,,,,1,1,,0.03,nav,1,1972,2,, 26973,NJBF000056089,22 BUCKNELL RD,Somers Point,NJ,39.32769828,-74.61036394,RES1,3001,,16,NE,1978,1978,3101,1,1,2365.200719,2365.200719,3507,NO,15.65,25.39,1,2.69,6106,111.231628,121.398126,131.111667,137.328731,I,Above,Gable,0,5701,,20.51994048,0,0,,,,1,1,,0.03,nav,1,1978,1,, 26974,NJBF000051810,900 MAYS LANDING RD,Somers Point,NJ,39.31092246,-74.61052623,RES4,3001,281,NaN,ME,1988,1988,3401,1,1,5205.468234,5205.468234,3507,NO,18.46,31.73,1,0.98,6110,111.538766,121.606256,131.29231,137.56481,I,Above,Flat,0,NaN,,25.0959626,0,0,,,,1,1,,1,nav,1,1988,1,, 26975,NJBF000052386,7 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1955,3102,1,1,2428.553157,2428.553157,3505,NO,15.07,25.3,3,2,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,20.18494178,0,0,,,,1,1,,0.03,nav,1,2007,1,, 26976,NJBF000054857,137 EXTON RD,Somers Point,NJ,39.32448809,-74.61212576,RES1,3001,,16,NE,1958,1958,3101,2,1,1298.281462,1298.281462,3507,NO,37.47,51.91,1,-0.52,6106,111.261528,121.408181,131.119167,137.33862,I,Above,Hip,0,5701,,44.69245044,0,0,,,,1,1,,0.03,nav,1,1958,2,, 26977,NJBF000053738,113 E JOHNSON AVE,Somers Point,NJ,39.32110598,-74.58616853,RES1,3001,,16,NE,1957,1957,3102,2,1,2995.913244,2995.913244,3505,NO,19.68,26.55,3,-2.75,6112,111.793653,121.88865,131.575492,137.921366,I,Above,Flat,0,5701,,23.11724367,0,0,,,,1,1,,0.35,nav,1,1957,2,, 26978,NJBF000051752,45 GREATE BAY DR,Somers Point,NJ,39.31050691,-74.60551738,RES3A,3001,,29,NE,1977,1977,3301,2,1,1871.369342,1871.369342,3507,NO,33.96,40.91,1,0.21,6112,111.631893,121.694607,131.377002,137.67315,I,Above,Gable,0,5701,,37.43106038,0,0,,,,1,1,,0.35,nav,1,1977,2,, 26979,NJBF000053276,120 E GROVELAND AVE,Somers Point,NJ,39.31935345,-74.58829566,RES1,3001,,16,NE,1925,1925,3102,1,1,1823.527572,1823.527572,3505,NO,15.74,30.45,3,-0.93,6110,111.784217,121.873837,131.559918,137.902208,I,Above,Gable,0,5701,,23.09594472,0,0,,,,1,1,,0.35,nav,1,1925,1,, 26980,NJBF000053285,17 LAUREL DR SOUTH,Somers Point,NJ,39.31937845,-74.6149177,RES1,3001,,17,NE,1960,1960,3101,1,1,2237.525467,2237.525467,3507,NO,16.69,23.54,1,1.73,6106,111.309941,121.425728,131.130968,137.354425,I,Above,Gable,0,5701,,20.11707578,0,0,,,,1,1,,0.03,nav,1,1960,1,, 26981,NJBF000055899,127 HADDON RD,Somers Point,NJ,39.32723767,-74.60416225,RES1,3001,,16,NE,1966,1966,3101,1,1,1095.374284,1095.374284,3507,NO,16.16,30.33,1,-0.31,6112,111.34844,121.508429,131.215259,137.463497,I,Above,Hip,0,5701,,23.24504953,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 26982,NJBF000054854,104 OSBORNE RD,Somers Point,NJ,39.32448385,-74.6049612,RES1,3001,,16,NE,1963,1963,3101,1,1,1736.597731,1736.597731,3507,NO,18.72,33.67,1,2.97,6110,111.385108,121.528675,131.232958,137.486516,I,Above,Gable,0,5701,,26.19439861,0,0,,,,1,1,,0.35,nav,1,1963,1,, 26983,NJBF000053171,60 GULPH MILL RD,Somers Point,NJ,39.31897631,-74.61748277,RES1,3001,,16,NE,1972,1972,3101,1,1,1483.479858,1483.479858,3507,NO,13.19,22.45,1,1.91,6106,111.275502,121.388305,131.095001,137.307377,I,Above,Gable,0,5701,,17.81908824,0,0,,,,1,1,,0.03,nav,1,1972,1,, 26984,NJBF000055865,1 DARTMOUTH RD,Somers Point,NJ,39.32715537,-74.60614236,RES1,3001,,16,NE,1968,1968,3101,1,1,2194.880341,2194.880341,3507,NO,16.79,22.8,1,0.69,6106,111.314939,121.475976,131.18461,137.423792,I,Above,Gable,0,5701,,19.79682209,0,0,,,,1,1,,0.03,nav,1,1968,1,, 26985,NJBF000057821,204 EXTON RD,Somers Point,NJ,39.33122923,-74.60658137,RES1,3001,,27,NE,1987,1987,3101,1,1,1360.579155,1360.579155,3507,NO,19.19,26.63,1,-0.25,6106,111.231651,121.419068,131.132448,137.355893,I,Above,Gable,0,5701,,22.90715237,0,0,,,,1,1,,0.03,nav,1,1987,1,, 26986,NJBF000057686,49 CHAPMAN BLVD,Somers Point,NJ,39.33099791,-74.60395272,RES1,3001,,16,NE,1981,1981,3101,1,1,1720.935245,1720.935245,3507,NO,15.29,26.7,1,2.23,6110,111.28276,121.466415,131.176818,137.413611,I,Above,Gable,0,5701,,20.99377744,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 26987,NJBF000058588,12 WHITMAN DR,Somers Point,NJ,39.33257333,-74.60425552,RES1,3001,,16,NE,1981,1981,3101,1,1,1954.021059,1954.021059,3507,NO,14.5,24.69,1,1.54,6112,111.248212,121.442364,131.154431,137.384536,I,Above,Gable,0,5701,,19.59339666,0,0,,,,1,1,,0.35,nav,1,1981,1,, 26988,NJBF000057491,43 CHAPMAN BLVD,Somers Point,NJ,39.33065826,-74.60329226,RES1,3001,,16,NE,1975,1975,3101,1,1,2146.395261,2146.395261,3507,NO,16.24,27.07,1,-0.18,6112,111.300934,121.481728,131.191151,137.432198,I,Above,Gable,0,5701,,21.65575459,0,0,,,,1,1,,0.35,nav,1,1975,1,, 26989,NJBF000055270,26 JEFFERSON AVE,Somers Point,NJ,39.32561924,-74.6010126,RES1,3001,,16,NE,1966,1966,3101,1,1,1560.927338,1560.927338,3507,NO,15.72,21.81,1,2.22,6112,111.434743,121.581474,131.283652,137.551725,I,Above,Hip,0,5701,,18.76363811,0,0,,,,1,1,,0.35,nav,1,1966,1,, 26990,NJBF000053500,9 WISTERIA WALK,Somers Point,NJ,39.32017632,-74.61459475,RES1,3001,,16,NE,1965,1965,3101,1,1,1764.326915,1764.326915,3507,NO,19.41,32.27,1,1.71,6106,111.300481,121.421004,131.127372,137.349643,I,Above,Gable,0,5701,,25.84307964,0,0,,,,1,1,,0.03,nav,1,1965,1,, 26991,NJBF000054420,20 OSBORNE RD,Somers Point,NJ,39.32335389,-74.60609061,RES1,3001,,16,NE,1961,1961,3101,2,1,1450.521542,1450.521542,3507,NO,36.83,49.2,1,0.42,6112,111.386128,121.523583,131.22738,137.479385,I,Above,Hip,0,5701,,43.01851424,0,0,,,,1,1,,0.35,nav,1,1961,2,, 26992,NJBF000052246,18 GIBBS AVE,Somers Point,NJ,39.31359707,-74.5947837,RES1,3001,,16,NE,1915,1915,3101,2,1,1832.070173,1832.070173,3505,NO,30.34,36.05,3,5.19,6112,111.766756,121.83524,131.517099,137.849542,I,Above,Gable,0,5701,,33.19645793,0,1.2,,,,1,1,,0.35,nav,1,1915,2,, 26993,NJBF000053341,5 FRESH SPRING COVE,Somers Point,NJ,39.31957714,-74.61704008,RES1,3001,,16,NE,1972,1972,3101,1,1,2651.912931,2651.912931,3507,NO,17.11,27.98,1,2.09,6106,111.271552,121.388001,131.095432,137.307877,I,Above,Hip,0,5701,,22.54293496,0,0,,,,1,1,,0.03,nav,1,1972,1,, 26994,NJBF000056247,7 RUTGERS RD,Somers Point,NJ,39.32804243,-74.60636401,RES1,3001,,16,NE,1968,1968,3101,1,1,1994.367237,1994.367237,3507,NO,14.77,27.15,1,1.14,6106,111.294603,121.461395,131.17126,137.406431,I,Above,Gable,0,5701,,20.95697505,0,0,,,,1,1,,0.03,nav,1,1968,1,, 26995,NJBF000055005,141 COLWICK DR,Somers Point,NJ,39.32487771,-74.61297408,RES1,3001,,16,NE,1957,1957,3101,1,1,1486.504298,1486.504298,3507,NO,11.15,18.66,1,0.47,6112,111.240033,121.389127,131.10152,137.315501,I,Above,Hip,0,5701,,14.9037754,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 26996,NJBF000054468,125 EXTON RD,Somers Point,NJ,39.32347224,-74.61289989,RES1,3001,,16,NE,1957,1957,3101,2,1,1653.219498,1653.219498,3507,NO,31.55,42.7,1,2.25,6110,111.267442,121.407882,131.118095,137.337265,I,Above,Gable,0,5701,,37.12851799,0,0,,,,1,1,,0.35,nav,1,1957,2,, 26997,NJBF000054006,123 E PIERSON AVE,Somers Point,NJ,39.32207644,-74.58592448,RES1,3001,,16,NE,1926,1926,3102,2,1,1633.574823,1633.574823,3505,NO,34.06,42.58,3,3.72,6106,111.781164,121.881044,131.568742,137.912804,I,Above,Gable,0,5701,,38.32149275,0,0,,,,1,1,,0.03,nav,1,1926,2,, 26998,NJBF000055778,59 BUCKNELL RD,Somers Point,NJ,39.32694767,-74.61225743,RES1,3001,,16,NE,1979,1979,3101,2,1,1287.052558,1287.052558,3507,NO,29.63,41.4,1,0.88,6106,111.213479,121.375517,131.090073,137.300447,I,Above,Gable,0,5701,,35.51610153,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 26999,NJBF000054675,16 PRINCETON RD,Somers Point,NJ,39.32404447,-74.60672084,RES1,3001,,16,NE,1962,1962,3101,1,1,1614.423241,1614.423241,3507,NO,14.98,27.55,1,0.96,6110,111.362379,121.504451,131.209738,137.456514,I,Above,Flat,0,5701,,21.2677035,0,0,,,,1,1,,0.35,nav,1,1962,1,, 27000,NJBF000054728,18 PRINCETON RD,Somers Point,NJ,39.32417233,-74.60651792,RES1,3001,,16,NE,1962,1962,3101,2,1,1209.423442,1209.423442,3507,NO,38.62,44.02,1,0.38,6110,111.363553,121.506288,131.211561,137.458867,I,Above,Hip,0,5701,,41.32340248,0,0,,,,1,1,,0.35,nav,1,1962,2,, 27001,NJBF000055217,2 WARWICK AVE,Somers Point,NJ,39.32546507,-74.58220825,RES1,3001,,18,NE,2004,2004,3102,2,1,2071.147964,2071.147964,3505,NO,41.07,51.23,3,5.15,6106,111.793949,121.903706,131.592352,137.94164,I,Above,Hip,0,5701,,46.14519925,0,1.2,,,,1,1,,0.03,nav,1,2004,2,, 27002,NJBF000051633,927 BAY AVE,Somers Point,NJ,39.30925538,-74.59679036,RES1,3001,,NaN,NE,1964,1964,3102,1,1,2305.757813,2305.757813,3505,NO,23.36,36.71,3,8.85,6106,111.808763,121.856092,131.531866,137.868891,I,Above,Flat,0,5701,,30.03645747,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27003,NJBF000054814,135 COLWICK DR,Somers Point,NJ,39.32439567,-74.613491,RES1,3001,,16,NE,1957,1957,3101,1,1,1276.585122,1276.585122,3507,NO,21.01,26.96,1,2.45,6110,111.240376,121.386472,131.098662,137.311773,I,Above,Gable,0,5701,,23.98317065,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 27004,NJBF000053858,21 GULPH MILL RD,Somers Point,NJ,39.32153749,-74.61707165,RES1,3001,,16,NE,1967,1967,3101,2,1,1330.162052,1330.162052,3507,NO,30.7,43.02,1,2.04,6110,111.234663,121.362644,131.073624,137.27906,I,Above,Gable,0,5701,,36.85782361,0,1.1,,,,1,1,,0.35,nav,1,1967,2,, 27005,NJBF000055192,105 HADDON RD,Somers Point,NJ,39.32540337,-74.60601329,RES1,3001,,16,NE,1966,1966,3101,1,1,2025.195022,2025.195022,3507,NO,11.95,20.64,1,-0.74,6106,111.349627,121.499632,131.20603,137.451634,I,Above,Gable,0,5701,,16.2945659,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27006,NJBF000055370,156 BALA DR,Somers Point,NJ,39.32589432,-74.61348359,RES1,3001,,16,NE,1959,1959,3101,1,1,948.7990699,948.7990699,3507,NO,18.75,32.2,1,2.31,6110,111.212568,121.367967,131.082344,137.290319,I,Above,Gable,0,5701,,25.47196156,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27007,NJBF000054877,3 SWARTHMORE RD,Somers Point,NJ,39.324546,-74.602546,RES1,3001,,16,NE,1966,1966,3101,2,1,1430.401566,1430.401566,3507,NO,24.67,33.33,1,2.23,6110,111.426864,121.568677,131.270924,137.535443,I,Above,Hip,0,5701,,29.00395793,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27008,NJBF000051473,38 BROADWAY,Somers Point,NJ,39.30744528,-74.60355137,RES1,3001,,20,NE,2005,2005,3102,2,1,6898.504406,6898.504406,3507,NO,36.39,42.74,1,-0.04,6112,111.721707,121.766326,131.441872,137.756118,I,Above,Gable,0,5701,,39.56913829,0,1.2,,,,1,1,,0.35,nav,1,2005,2,, 27009,NJBF000057492,12 PACIFIC AVE,Somers Point,NJ,39.3306607,-74.6084989,RES1,3001,,27,NE,1987,1987,3101,2,1,1520.319319,1520.319319,3507,NO,31.63,37.86,1,0.1,6106,111.208581,121.393467,131.108369,137.324436,I,Above,Gable,0,5701,,34.74746776,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27010,NJBF000055051,170 BALA DR,Somers Point,NJ,39.32499357,-74.61204764,RES1,3001,,16,NE,1959,1959,3101,1,1,1431.740695,1431.740695,3507,NO,12.24,21.95,1,0.82,6106,111.253423,121.403203,131.114844,137.332945,I,Above,Gable,0,5701,,17.09655785,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27011,NJBF000055300,109 HADDON RD,Somers Point,NJ,39.32571355,-74.60572121,RES1,3001,,16,NE,1966,1966,3101,1,1,1387.423011,1387.423011,3507,NO,18.36,28.89,1,-0.19,6106,111.349005,121.500737,131.207249,137.453198,I,Above,Gable,0,5701,,23.62574904,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27012,NJBF000051744,1260 ATKINSON AVE,Somers Point,NJ,39.31043354,-74.61482134,RES1,3001,,16,NE,1926,1926,3102,2,1,1209.394948,1209.394948,3507,NO,37.59,49.08,1,1.75,6112,111.476165,121.541708,131.229302,137.48376,I,Above,Flat,0,5701,,43.33657647,0,1.1,,,,1,1,,0.35,nav,1,1926,2,, 27013,NJBF000057757,51 CHAPMAN BLVD,Somers Point,NJ,39.33111304,-74.60416005,RES1,3001,,16,NE,1981,1981,3101,1,1,1749.218294,1749.218294,3507,NO,21.38,30.65,1,2.55,6110,111.276917,121.461518,131.172237,137.407665,I,Above,Gable,0,5701,,26.01591708,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 27014,NJBF000054495,11 JEFFERSON AVE,Somers Point,NJ,39.32353717,-74.60209877,RES1,3001,,16,NE,1967,1967,3101,2,1,1304.886217,1304.886217,3507,NO,40.89,47.66,1,2.62,6112,111.453398,121.588623,131.28925,137.559071,I,Above,Gable,0,5701,,44.27460473,0,0,,,,1,1,,0.35,nav,1,1967,2,, 27015,NJBF000051924,49 E NEW JERSEY AVE,Somers Point,NJ,39.31179745,-74.59437034,RES1,3001,,16,NE,1920,1920,3102,2,1,1484.504446,1484.504446,3505,NO,23.33,37.23,3,-2.84,6110,111.806795,121.864726,131.543582,137.883043,I,Above,Hip,0,5701,,30.28278709,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 27016,NJBF000054806,161 BALA DR,Somers Point,NJ,39.32436545,-74.61190466,RES1,3001,,16,NE,1958,1958,3101,2,1,1286.740253,1286.740253,3507,NO,32.51,40.99,1,-0.98,6106,111.267538,121.413413,131.124004,137.344951,I,Above,Hip,0,5701,,36.75083574,0,0,,,,1,1,,0.03,nav,1,1958,2,, 27017,NJBF000055298,17 COLGATE RD,Somers Point,NJ,39.32571019,-74.6103383,RES1,3001,,16,NE,1970,1970,3101,2,1,1258.025256,1258.025256,3507,NO,26.1,31.37,1,1.1,6106,111.269088,121.423041,131.133984,137.357937,I,Above,Hip,0,5701,,28.73235446,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27018,NJBF000053321,43 GULPH MILL RD,Somers Point,NJ,39.31951158,-74.61767012,RES1,3001,,16,NE,1972,1972,3101,1,1,2177.904474,2177.904474,3507,NO,11.89,21.08,1,-0.69,6106,111.262549,121.378392,131.086253,137.295836,I,Above,Hip,0,5701,,16.48605613,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27019,NJBF000058879,64 DEFEO LN,Somers Point,NJ,39.33310767,-74.60487442,RES1,3001,,16,NE,1984,1984,3101,2,1,1457.892798,1457.892798,3507,NO,24.2,31.47,1,1.98,6112,111.227207,121.425465,131.138628,137.36398,I,Above,Gable,0,5701,,27.8337109,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27020,NJBF000054581,163 JORDAN RD,Somers Point,NJ,39.3237808,-74.60376928,RES1,3001,,16,NE,1965,1965,3101,2,1,2069.392097,2069.392097,3507,NO,26.67,36.82,1,-0.88,6110,111.419148,121.557434,131.259779,137.521156,I,Above,Gable,0,5701,,31.74399892,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27021,NJBF000054753,10 YALE BLVD,Somers Point,NJ,39.32423117,-74.6106598,RES1,3001,,16,NE,1970,1970,3101,1,1,1903.100025,1903.100025,3507,NO,17.68,29.05,1,0.25,6106,111.291101,121.435951,131.145151,137.372568,I,Above,Gable,0,5701,,23.36218797,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27022,NJBF000054849,134 EXTON RD,Somers Point,NJ,39.32448059,-74.612817,RES1,3001,,16,NE,1957,1957,3101,1,1,2201.766296,2201.766296,3507,NO,19.62,34.07,1,2.74,6106,111.250056,121.396694,131.108347,137.324459,I,Above,Gable,0,5701,,26.84510386,0,0,,,,1,1,,0.03,nav,1,1957,1,, 27023,NJBF000054649,6 SWARTHMORE RD,Somers Point,NJ,39.3239605,-74.6026575,RES1,3001,,16,NE,1965,1965,3101,1,1,737.0513634,737.0513634,3507,NO,14.47,25.31,1,0.19,6112,111.435632,121.573982,131.275605,137.541507,I,Above,Gable,0,5701,,19.89193365,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27024,NJBF000055390,114 PRINCETON RD,Somers Point,NJ,39.32594677,-74.60477206,RES1,3001,,16,NE,1966,1966,3101,2,1,1777.001917,1777.001917,3507,NO,31.61,39.44,1,2.03,6106,111.361442,121.513898,131.219812,137.469443,I,Above,Hip,0,5701,,35.52768866,0,0,,,,1,1,,0.03,nav,1,1966,2,, 27025,NJBF000054609,130 COLWICK DR,Somers Point,NJ,39.32386,-74.6146185,RES1,3001,,16,NE,1957,1957,3101,2,1,1247.648523,1247.648523,3507,NO,27.8,42.64,1,0.67,6106,111.231633,121.374306,131.086786,137.296216,I,Above,Gable,0,5701,,35.22067184,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27026,NJBF000058317,45 WILSON AVE,Somers Point,NJ,39.33208827,-74.60669139,RES1,3001,,16,NE,1985,1985,3101,2,1,1533.688356,1533.688356,3507,NO,32.25,42.32,1,2.66,6106,111.21375,121.406857,131.121148,137.341164,I,Above,Gable,0,5701,,37.28437788,0,0,,,,1,1,,0.03,nav,1,1985,2,, 27027,NJBF000051613,939 BAY AVE,Somers Point,NJ,39.30904983,-74.59755032,COM8,3001,999,NaN,ME,1910,1910,3401,2,1,9486.337192,9486.337192,3507,NO,26.1,32.01,1,2.74,6110,111.7988,121.845962,131.521722,137.856228,I,Above,Flat,0,NaN,,29.05346504,0,0,,,,1,1,,1,nav,1,1910,2,, 27028,NJBF000051626,939 BAY AVE,Somers Point,NJ,39.309217,-74.597354,COM4,3001,999,NaN,ME,1965,1910,3401,2,1,860.8555107,860.8555107,3507,NO,34.03,47.65,1,1.34,6112,111.799303,121.847131,131.523093,137.857911,I,Above,Gable,0,NaN,,40.84118572,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27029,NJBF000051862,71 BAYVIEW DR,Somers Point,NJ,39.31132055,-74.60745022,RES3A,3001,,29,NE,1977,1977,3301,2,1,1927.663892,1927.663892,3507,NO,29.95,40.88,1,-0.79,6106,111.583753,121.652124,131.337152,137.622161,I,Above,Gable,0,5701,,35.41514577,0,0,,,,1,1,,0.03,nav,1,1977,2,, 27030,NJBF000051996,58 HIGBEE AVE,Somers Point,NJ,39.31227826,-74.59400037,RES1,3001,,16,NE,1930,1930,3102,1,1,1486.707967,1486.707967,3507,NO,11.39,22.46,1,0.83,6106,111.804891,121.864928,131.544361,137.883926,I,Above,Hip,0,5701,,16.92557533,0,0,,,,1,1,,0.03,nav,1,1930,1,, 27031,NJBF000055059,101 HADDON RD,Somers Point,NJ,39.32501382,-74.60641141,RES1,3001,,16,NE,1966,1966,3101,2,1,1194.783667,1194.783667,3507,NO,36.95,46.62,1,2.96,6106,111.34985,121.497708,131.203982,137.449002,I,Above,Gable,0,5701,,41.78548168,0,0,,,,1,1,,0.03,nav,1,1966,2,, 27032,NJBF000055542,1004 W GROVELAND AVE,Somers Point,NJ,39.3263688,-74.60241686,RES1,3001,,16,NE,1964,1964,3101,1,1,1369.327931,1369.327931,3507,NO,16.15,28.55,1,-0.49,6112,111.395662,121.548553,131.252807,137.512006,I,Above,Hip,0,5701,,22.34978641,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 27033,NJBF000055379,122 OSBORNE RD,Somers Point,NJ,39.32593104,-74.60346974,RES1,3001,,16,NE,1964,1964,3101,1,1,1318.08268,1318.08268,3507,NO,12,20.36,1,-0.94,6106,111.384872,121.536093,131.240798,137.496549,I,Above,Gable,0,5701,,16.17948772,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27034,NJBF000054364,11 PRINCETON RD,Somers Point,NJ,39.32318193,-74.60708665,RES1,3001,,16,NE,1962,1962,3101,1,1,1519.608246,1519.608246,3507,NO,20.78,33.07,1,1.66,6110,111.371949,121.50896,131.213398,137.46131,I,Above,Gable,0,5701,,26.9258666,0,0,,,,1,1,,0.35,nav,1,1962,1,, 27035,NJBF000055601,113 N AMBLER RD,Somers Point,NJ,39.32652707,-74.60622156,RES1,3001,,16,NE,1968,1968,3101,1,1,1637.287793,1637.287793,3507,NO,13.68,21.91,1,2.88,6106,111.325162,121.482312,131.190283,137.431174,I,Above,Gable,0,5701,,17.79257341,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27036,NJBF000051556,25 BROADWAY,Somers Point,NJ,39.30830725,-74.60419259,RES1,3001,,18,NE,1995,2010,3102,2,1,1501.83273,1501.83273,3507,NO,27.55,35.13,1,-0.88,6112,111.694886,121.744657,131.422175,137.730993,I,Above,Gable,0,5701,,31.34219624,0,0,,,,1,1,,0.03,nav,1,1995,2,, 27037,NJBF000056982,29 CHAPMAN BLVD,Somers Point,NJ,39.3296723,-74.60126212,RES1,3001,,16,NE,1971,1971,3101,2,1,1543.266703,1543.266703,3507,NO,36.95,48.45,1,1.36,6112,111.355874,121.528076,131.234611,137.488402,I,Above,Gable,0,5701,,42.70232425,0,0,,,,1,1,,0.35,nav,1,1971,2,, 27038,NJBF000054919,11 YALE BLVD,Somers Point,NJ,39.32464984,-74.61050302,RES1,3001,,16,NE,1970,1970,3101,1,1,1117.31069,1117.31069,3507,NO,21.88,27.38,1,2.65,6110,111.285986,121.433387,131.143031,137.369784,I,Above,Gable,0,5701,,24.62997585,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27039,NJBF000056632,14 COOPER DR,Somers Point,NJ,39.328924,-74.6039085,RES1,3001,,43,NE,1970,1970,3101,1,2,2222.647755,2222.647755,3507,NO,20.26,25.91,1,2.9,6112,111.321839,121.492214,131.200591,137.444459,I,Above,Hip,0,5701,,23.08197462,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27040,NJBF000051608,1402 ROBERTS AVE,Somers Point,NJ,39.30896702,-74.61537917,RES1,3001,,16,NE,2002,2002,3102,2,1,833.448142,833.448142,3507,NO,33.63,46.22,1,1.4,6106,111.493804,121.551499,131.236244,137.493093,I,Above,Gable,0,5701,,39.92247246,0,0,,,,1,1,,0.03,nav,1,2002,2,, 27041,NJBF000055327,112 PRINCETON RD,Somers Point,NJ,39.32578462,-74.60495047,RES1,3001,,16,NE,1965,1965,3101,1,1,2015.244137,2015.244137,3507,NO,11.16,22.47,1,-0.14,6106,111.361286,121.512878,131.218762,137.468094,I,Above,Gable,0,5701,,16.81313612,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27042,NJBF000054074,117 BALA DR,Somers Point,NJ,39.32229866,-74.61387758,RES1,3001,,16,NE,1955,1955,3101,2,1,1575.414601,1575.414601,3507,NO,25.23,32.41,1,1.23,6112,111.272949,121.406224,131.115511,137.333955,I,Above,Hip,0,5701,,28.82006219,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27043,NJBF000052303,155 LONGPORT BLVD.,Somers Point,NJ,39.31386609,-74.57841247,RES1,3001,,NaN,NE,1969,0,3102,2,1,1257.098277,1257.098277,3507,NO,33.65,39.22,1,1.6,6106,112.071429,122.109303,131.784574,138.180472,I,Above,Flat,0,5701,,36.43386688,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27044,NJBF000052271,48 E NEW YORK AVE,Somers Point,NJ,39.31372442,-74.59304397,RES1,3001,,16,NE,1969,1930,3102,1,1,1188.743707,1188.743707,3505,NO,18.4,29.33,3,-0.86,6106,111.796398,121.862976,131.544133,137.883382,I,Above,Gable,0,5701,,23.86129179,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 27045,NJBF000051957,,Somers Point,NJ,39.31199868,-74.58804896,RES1,3001,,NaN,NE,1969,0,3102,2,1,4261.527033,4261.527033,3507,NO,26.06,39.3,1,0.37,6102,111.92019,121.968787,131.645125,138.009363,I,Above,Flat,0,5701,,32.6846827,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27046,NJBF000055219,179 JORDAN RD,Somers Point,NJ,39.32547332,-74.60166776,RES1,3001,,16,NE,1965,1965,3101,2,1,771.8084537,771.8084537,3507,NO,40.64,49.26,1,2.35,6110,111.425599,121.57217,131.27475,137.540298,I,Above,Gable,0,5701,,44.951746,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27047,NJBF000055256,179 JORDAN RD,Somers Point,NJ,39.32558384,-74.60195986,RES1,3001,,16,NE,1965,1965,3101,2,1,1449.592603,1449.592603,3507,NO,33.07,47.86,1,0.55,6110,111.418304,121.565873,131.268834,137.532685,I,Above,Gable,0,5701,,40.46627988,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27048,NJBF000054548,13 HADDON RD,Somers Point,NJ,39.32369901,-74.60786717,RES1,3001,,16,NE,1962,1962,3101,2,1,897.2607185,897.2607185,3507,NO,29.83,43.38,1,0.69,6106,111.348863,121.489444,131.195298,137.437821,I,Above,Hip,0,5701,,36.60783878,0,0,,,,1,1,,0.03,nav,1,1962,2,, 27049,NJBF000055181,117 OSBORNE RD,Somers Point,NJ,39.3253765,-74.60340961,RES1,3001,,16,NE,1964,1964,3101,1,1,2683.317398,2683.317398,3507,NO,20.42,33.35,1,1.45,6106,111.396164,121.543902,131.2479,137.505741,I,Above,Gable,0,5701,,26.88578559,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27050,NJBF000052668,9 KAPPELLA AVE,Somers Point,NJ,39.31642562,-74.58687053,RES1,3001,,16,NE,1907,1907,3102,1,1,1715.105346,1715.105346,3505,NO,10.39,24.71,3,-0.17,6106,111.86347,121.933972,131.615782,137.972221,I,Above,Gable,0,5701,,17.55044864,0,0,,,,1,1,,0.03,nav,1,1907,1,, 27051,NJBF000055053,1312 MASSACHUSETTS AVE,Somers Point,NJ,39.32500833,-74.60741104,RES1,3001,,16,NE,1963,1963,3101,1,1,696.6578867,696.6578867,3507,NO,18.39,28.7,1,0.62,6110,111.332526,121.480939,131.188133,137.428452,I,Above,Hip,0,5701,,23.54333821,0,0,,,,1,1,,0.35,nav,1,1963,1,, 27052,NJBF000054456,3 FARRAGUT RD,Somers Point,NJ,39.32344721,-74.61483458,RES1,3001,,16,NE,1955,1955,3101,2,1,1187.793369,1187.793369,3507,NO,25.99,33.14,1,0.88,6106,111.235755,121.375867,131.087907,137.297707,I,Above,Gable,0,5701,,29.56104677,0,0,,,,1,1,,0.03,nav,1,1955,2,, 27053,NJBF000055794,126 PRINCETON RD,Somers Point,NJ,39.32699113,-74.60375983,RES1,3001,,16,NE,1965,1965,3101,1,1,1643.667978,1643.667978,3507,NO,16.56,22.3,1,-0.67,6112,111.360162,121.518241,131.224419,137.475349,I,Above,Gable,0,5701,,19.43314645,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27054,NJBF000053186,58 GULPH MILL RD,Somers Point,NJ,39.3190204,-74.61784126,RES1,3001,,16,NE,1969,1969,3101,1,1,895.6183044,895.6183044,3507,NO,20.65,33.22,1,1.28,6106,111.268899,121.381821,131.088907,137.299375,I,Above,Gable,0,5701,,26.93653179,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27055,NJBF000054711,507-509 NEW RD,Somers Point,NJ,39.32410661,-74.60117963,COM1,3001,739,NaN,ME,1970,1970,3401,1,1,5253.250639,5253.250639,3507,NO,17.58,27.42,1,1.98,6112,111.459448,121.59715,131.297713,137.569884,I,Above,Hip,0,NaN,,22.49859069,0,0,,,,1,1,,1,nav,1,1970,1,, 27056,NJBF000056053,6 RUTGERS RD,Somers Point,NJ,39.32762211,-74.60641916,RES1,3001,,16,NE,1969,1969,3101,1,1,1916.858358,1916.858358,3507,NO,11.72,24.96,1,0.63,6106,111.301421,121.465591,131.175035,137.411346,I,Above,Gable,0,5701,,18.34048138,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27057,NJBF000051770,900 MAYS LANDING RD,Somers Point,NJ,39.31065124,-74.61014014,RES4,3001,281,NaN,ME,1988,1988,3401,1,1,5053.727238,5053.727238,3507,NO,13.08,24.35,1,-0.87,6106,111.550232,121.616112,131.301399,137.576534,I,Above,Gable,0,NaN,,18.71848408,0,0,,,,1,1,,0.03,nav,1,1988,1,, 27058,NJBF000054690,116 E WILMONT AVE,Somers Point,NJ,39.32407455,-74.58445314,RES1,3001,,16,NE,1928,1928,3102,2,1,1388.380124,1388.380124,3505,NO,43.32,52.67,3,8.4,6110,111.774343,121.881992,131.570739,137.91498,I,Above,Gable,0,5701,,47.99954339,0,0,,,,1,1,,0.35,nav,1,1928,2,, 27059,NJBF000051941,745 BAY AVE,Somers Point,NJ,39.31189383,-74.5935343,RES1,3001,,17,NE,2008,2008,3102,2,1,2193.345258,2193.345258,3505,NO,38.51,45.41,3,6.73,6106,111.820346,121.877576,131.556187,137.89878,I,Above,Hip,0,5701,,41.96047352,0,0,,,,1,1,,0.03,nav,1,2008,2,, 27060,NJBF000054312,16 OSBORNE RD,Somers Point,NJ,39.32304701,-74.6064614,RES1,3001,,16,NE,1961,1961,3101,1,1,1123.773534,1123.773534,3507,NO,11.75,19.6,1,0.67,6110,111.385339,121.521158,131.224859,137.476148,I,Above,Gable,0,5701,,15.67562208,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27061,NJBF000051624,,Somers Point,NJ,39.30918933,-74.59727654,COM4,3001,,NaN,ME,1987,0,3401,2,1,678.9306393,678.9306393,3507,NO,34,47.61,1,2.24,6112,111.801192,121.848774,131.524652,137.85987,I,Above,Gable,0,NaN,,40.80657827,0,0,,,,1,1,,0.35,nav,1,1987,2,, 27062,NJBF000055911,55 BUCKNELL RD,Somers Point,NJ,39.32726261,-74.61193332,RES1,3001,,16,NE,1978,1978,3101,2,1,1487.530324,1487.530324,3507,NO,24.15,32.57,1,0.2,6106,111.213069,121.377078,131.09171,137.302592,I,Above,Gable,0,5701,,28.35765627,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27063,NJBF000053408,28 LAUREL DR SOUTH,Somers Point,NJ,39.31983054,-74.61584334,RES1,3001,,16,NE,1965,1965,3101,1,1,2057.413125,2057.413125,3507,NO,15.9,22.64,1,0.19,6106,111.286361,121.404632,131.111481,137.328885,I,Above,Gable,0,5701,,19.26961803,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27064,NJBF000054872,14 YALE BLVD,Somers Point,NJ,39.32453093,-74.61096947,RES1,3001,,16,NE,1965,1965,3101,1,1,2044.600552,2044.600552,3507,NO,19.93,26.98,1,0.89,6106,111.280279,121.427044,131.136969,137.361879,I,Above,Gable,0,5701,,23.45370751,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27065,NJBF000051836,807 BAY AVE,Somers Point,NJ,39.311072,-74.59440933,COM4,3001,560,NaN,ME,1910,1910,3401,2,1,1092.381375,1092.381375,3507,NO,36.22,49.1,1,1.9,6106,111.81915,121.873162,131.550879,137.892305,I,Above,Gable,0,NaN,,42.65795029,0,0,,,,1,1,,0.03,nav,1,1910,2,, 27066,NJBF000051508,998 BAY AVE,Somers Point,NJ,39.30778932,-74.59689153,COM1,3001,649,NaN,ME,1982,1982,3401,1,1,1202.234877,1202.234877,3507,NO,14.78,26.12,1,1.57,6102,111.833378,121.872923,131.54617,137.887112,I,Above,Hip,0,NaN,,20.44803556,0,0,,,,1,1,,0.03,nav,1,1982,1,, 27067,NJBF000054676,139 DEVON RD,Somers Point,NJ,39.32404605,-74.61222224,RES1,3001,,16,NE,1958,1958,3101,2,1,1532.718169,1532.718169,3507,NO,33,44.08,1,1.32,6110,111.268136,121.412072,131.1225,137.342998,I,Above,Hip,0,5701,,38.54440338,0,0,,,,1,1,,0.35,nav,1,1958,2,, 27068,NJBF000051490,59 BROADWAY,Somers Point,NJ,39.30757585,-74.60753047,RES1,3001,,18,NE,1988,1988,3102,2,1,2418.076891,2418.076891,3507,NO,38.57,45.75,1,2.68,6106,111.650641,121.698708,131.376406,137.673088,I,Above,Gable,0,5701,,42.15629008,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 27069,NJBF000054808,119 E WILMONT AVE,Somers Point,NJ,39.32436753,-74.58415014,RES1,3001,,16,NE,2008,2008,3102,2,1,1822.734609,1822.734609,3505,NO,42.73,49.69,3,7.07,6112,111.775092,121.883643,131.572474,137.917094,I,Above,Gable,0,5701,,46.20805926,0,0,,,,1,1,,0.35,nav,1,2008,2,, 27070,NJBF000054606,109 E MEYRAN AVE,Somers Point,NJ,39.32385945,-74.58508159,RES1,3001,,15,NE,1932,1932,3102,1,1,1440.622383,1440.622383,3505,NO,9.32,23.21,3,-1.68,6112,111.765914,121.873846,131.562762,137.905071,I,Above,Hip,0,5701,,16.26212704,0,1.2,,,,1,1,,0.35,nav,1,1932,1,, 27071,NJBF000054912,138 COLWICK DR,Somers Point,NJ,39.324627,-74.6138505,RES1,3001,,16,NE,1957,1957,3101,2,1,1314.08888,1314.08888,3507,NO,32.43,40.88,1,-0.66,6110,111.230095,121.377588,131.090482,137.301035,I,Above,Gable,0,5701,,36.65626537,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27072,NJBF000053722,35 LAUREL DR SOUTH,Somers Point,NJ,39.32102769,-74.61451326,RES1,3001,,16,NE,1962,1962,3101,1,1,1933.057562,1933.057562,3507,NO,13.26,20.24,1,0.72,6106,111.286034,121.41162,131.11938,137.339114,I,Above,Gable,0,5701,,16.75181183,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 27073,NJBF000054240,125 BALA DR,Somers Point,NJ,39.32282151,-74.61463934,RES1,3001,,16,NE,1955,1955,3101,2,1,1348.172464,1348.172464,3507,NO,31.77,39.05,1,0.44,6110,111.250622,121.386969,131.097818,137.310744,I,Above,Gable,0,5701,,35.41084291,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27074,NJBF000054224,5 PRINCETON RD,Somers Point,NJ,39.32279507,-74.60781633,RES1,3001,,16,NE,1961,1961,3101,1,1,2708.615313,2708.615313,3507,NO,15.54,24.06,1,0.7,6110,111.366475,121.501512,131.206049,137.45182,I,Above,Gable,0,5701,,19.8024546,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27075,NJBF000052263,,Somers Point,NJ,39.3136935,-74.58803996,RES3C,3001,,NaN,ME,1969,0,3301,1,1,7460.855464,7460.855464,3507,NO,10.52,25.15,1,-0.52,6102,111.890119,121.947908,131.626645,137.986162,I,Above,Flat,0,NaN,,17.83534103,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27076,NJBF000055914,3 DARTMOUTH RD,Somers Point,NJ,39.32727,-74.60640533,RES1,3001,,16,NE,1968,1968,3101,1,1,1974.204896,1974.204896,3507,NO,18.68,25.99,1,-0.06,6106,111.308189,121.470129,131.179153,137.416704,I,Above,Gable,0,5701,,22.33558824,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27077,NJBF000058679,14 WHITMAN DR,Somers Point,NJ,39.33273975,-74.60410874,RES1,3001,,16,NE,1981,1981,3101,1,1,2421.536431,2421.536431,3507,NO,15.25,29.68,1,0.23,6112,111.247775,121.442863,131.154907,137.385158,I,Above,Gable,0,5701,,22.46572709,0,0,,,,1,1,,0.35,nav,1,1981,1,, 27078,NJBF000055084,5 BRYN MAWR RD,Somers Point,NJ,39.32509243,-74.6017303,RES1,3001,,16,NE,1966,1966,3101,1,1,1899.001093,1899.001093,3507,NO,12.69,27.47,1,0.86,6110,111.431476,121.575781,131.277975,137.544469,I,Above,Gable,0,5701,,20.07973127,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27079,NJBF000051774,816 BAY AVE,Somers Point,NJ,39.31068182,-74.5942963,RES1,3001,,15,NE,1908,1908,3102,3,1,750.1250332,750.1250332,3505,NO,60.51,68.74,3,6.18,6106,111.828238,121.879957,131.556991,137.900018,I,Above,Flat,0,5701,,64.62829782,0,0,,,,1,1,,0.03,nav,1,1908,3,, 27080,NJBF000058245,18 WILSON AVE,Somers Point,NJ,39.33196533,-74.60484507,RES1,3001,,16,NE,1983,1983,3101,2,1,1511.123987,1511.123987,3507,NO,25.01,33.12,1,1.61,6110,111.248882,121.439651,131.151837,137.381156,I,Above,Gable,0,5701,,29.06433666,0,1.1,,,,1,1,,0.35,nav,1,1983,2,, 27081,NJBF000057989,193 NEW RD,Somers Point,NJ,39.331515,-74.593148,COM1,3001,737,NaN,ME,2000,2000,3401,1,1,7786.946032,7786.946032,3507,NO,14.57,21.14,1,-0.15,6112,111.474091,121.644271,131.34493,137.629655,I,Above,Flat,0,NaN,,17.8540298,0,0,,,,1,1,,1,nav,1,2000,1,, 27082,NJBF000058142,193 NEW RD,Somers Point,NJ,39.33177895,-74.5929444,COM1,3001,737,NaN,ME,2000,2000,3401,1,1,11132.86642,11132.86642,3507,NO,18.34,31.08,1,1.51,6112,111.473271,121.644621,131.34528,137.630077,I,Above,Flat,0,NaN,,24.70880043,0,0,,,,1,1,,1,nav,1,2000,1,, 27083,NJBF000054384,4 PRINCETON RD,Somers Point,NJ,39.323256,-74.60797,RES1,3001,,16,NE,1962,1962,3101,2,1,1200.681441,1200.681441,3507,NO,36.87,44.47,1,-0.14,6110,111.355283,121.493204,131.198532,137.442044,I,Above,Hip,0,5701,,40.67101214,0,0,,,,1,1,,0.35,nav,1,1962,2,, 27084,NJBF000052357,,Somers Point,NJ,39.31413758,-74.59262843,COM6,3001,,NaN,E,1969,0,3404,6,1,42945.91301,42945.91301,3507,NO,95.65,104.16,1,0.91,6106,111.796618,121.864838,131.546392,137.886136,I,Above,Flat,0,NaN,,99.9061444,0,0,,,,2,2,,0.03,nav,1,1969,6,, 27085,NJBF000054442,128 DEVON RD,Somers Point,NJ,39.32341389,-74.61236929,RES1,3001,,16,NE,1957,1957,3101,2,1,1804.72166,1804.72166,3507,NO,35.08,42.54,1,1.38,6110,111.277419,121.417488,131.127107,137.349053,I,Above,Gable,0,5701,,38.81121987,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27086,NJBF000056219,12 RUTGERS RD,Somers Point,NJ,39.3279873,-74.60710699,RES1,3001,,16,NE,1970,1970,3101,1,1,2104.447719,2104.447719,3507,NO,15.91,23.17,1,1.44,6110,111.282592,121.449514,131.160061,137.391869,I,Above,Gable,0,5701,,19.54160771,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 27087,NJBF000055325,106 HADDON RD,Somers Point,NJ,39.32578054,-74.60625515,RES1,3001,,16,NE,1965,1965,3101,2,1,1578.532279,1578.532279,3507,NO,32.98,44,1,-0.45,6106,111.33839,121.490906,131.198,137.441212,I,Above,Gable,0,5701,,38.48558143,0,0,,,,1,1,,0.03,nav,1,1965,2,, 27088,NJBF000057170,6 EDGEWOOD DR,Somers Point,NJ,39.33007102,-74.60070016,RES1,3001,,16,NE,1976,1976,3101,2,1,1351.276995,1351.276995,3507,NO,39.25,50.95,1,1.81,6110,111.358819,121.532819,131.239176,137.494273,I,Above,Gable,0,5701,,45.09745761,0,0,,,,1,1,,0.35,nav,1,1976,2,, 27089,NJBF000051970,,Somers Point,NJ,39.31206254,-74.61129267,COM1,3001,,NaN,ME,1969,0,3401,3,1,2360.824496,2360.824496,3507,NO,53.9,61.48,1,-0.46,6106,111.50498,121.57896,131.267746,137.532986,I,Above,Gable,0,NaN,,57.69036674,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27090,NJBF000054415,190 BALA DR,Somers Point,NJ,39.32333283,-74.61022363,RES1,3001,,16,NE,1959,1959,3101,1,1,2040.816258,2040.816258,3507,NO,17.29,31.49,1,-0.58,6112,111.315193,121.454422,131.161912,137.394458,I,Above,Gable,0,5701,,24.39059616,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27091,NJBF000054879,6 COLGATE RD,Somers Point,NJ,39.32455055,-74.60956697,RES1,3001,,16,NE,1970,1970,3101,1,1,2109.763798,2109.763798,3507,NO,11.4,21.42,1,0.14,6106,111.303805,121.450329,131.15894,137.390523,I,Above,Gable,0,5701,,16.410249,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 27092,NJBF000054866,6 COLGATE RD,Somers Point,NJ,39.3245115,-74.6097425,RES1,3001,,16,NE,1970,1970,3101,1,1,670.1758013,670.1758013,3507,NO,16.28,27.64,1,1.14,6110,111.301553,121.447886,131.156607,137.387487,I,Above,Flat,0,5701,,21.96027681,0,1.1,,,,1,1,,0.35,nav,1,1970,1,, 27093,NJBF000055077,113 OSBORNE RD,Somers Point,NJ,39.32506574,-74.60376301,RES1,3001,,16,NE,1962,1962,3101,1,1,1660.864923,1660.864923,3507,NO,20.81,31.94,1,1.96,6106,111.395589,121.541739,131.24568,137.502897,I,Above,Hip,0,5701,,26.37327752,0,0,,,,1,1,,0.03,nav,1,1962,1,, 27094,NJBF000056173,20 DARTMOUTH RD,Somers Point,NJ,39.32788456,-74.60838764,RES1,3001,,16,NE,1969,1969,3101,2,1,1230.631595,1230.631595,3507,NO,37.91,44.76,1,2.79,6106,111.262174,121.429139,131.140866,137.366868,I,Above,Hip,0,5701,,41.33443478,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27095,NJBF000057380,13 EDGEWOOD DR,Somers Point,NJ,39.33047086,-74.59957363,RES1,3001,,16,NE,1979,1979,3101,2,1,1425.238159,1425.238159,3507,NO,25.45,32.52,1,0.09,6106,111.372185,121.547159,131.252792,137.511793,I,Above,Gable,0,5701,,28.98389836,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27096,NJBF000057258,12 SCHOOLHOUSE DR,Somers Point,NJ,39.33024501,-74.59934467,RES1,3001,,16,NE,1972,1972,3101,2,1,586.2689409,586.2689409,3507,NO,33.02,39.58,1,0.05,6106,111.380538,121.553768,131.258997,137.519784,I,Above,Gable,0,5701,,36.2996612,0,0,,,,1,1,,0.03,nav,1,1972,2,, 27097,NJBF000052955,,Somers Point,NJ,39.31795849,-74.58876473,COM7,3001,,NaN,ME,1969,0,3401,2,1,9111.075703,9111.075703,3507,NO,26.92,40.45,1,1.46,6106,111.800252,121.88298,131.567649,137.912071,I,Above,Hip,0,NaN,,33.68399778,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27098,NJBF000055365,123 OSBORNE RD,Somers Point,NJ,39.32588483,-74.60295604,RES1,3001,,16,NE,1964,1964,3101,1,1,1484.777484,1484.777484,3507,NO,16.23,23.35,1,1.27,6110,111.394902,121.545346,131.249535,137.507818,I,Above,Gable,0,5701,,19.78892363,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27099,NJBF000054534,103 BAY AVE,Somers Point,NJ,39.32365492,-74.5839916,RES1,3001,,17,NE,1981,1981,3102,2,1,2883.30574,2883.30574,3505,NO,38.16,52.71,3,1.89,6106,111.790731,121.894937,131.58305,137.930376,I,Above,Gable,0,5701,,45.4350098,0,1.2,,,,1,1,,0.03,nav,1,1981,2,, 27100,NJBF000054617,120 E WILMONT AVE,Somers Point,NJ,39.32387937,-74.58398445,RES1,3001,,17,NE,1929,1929,3102,2,1,1695.239256,1695.239256,3505,NO,27.84,37.17,3,4.76,6106,111.786942,121.892372,131.580681,137.927392,I,Above,Gable,0,5701,,32.50811401,0,0,,,,1,1,,0.03,nav,1,1929,2,, 27101,NJBF000058098,2 WOODLOT CT,Somers Point,NJ,39.33171404,-74.60108619,RES1,3001,,16,NE,1990,1990,3101,2,1,1155.885506,1155.885506,3507,NO,35.83,44.5,1,1.66,6110,111.321629,121.506538,131.214647,137.462578,I,Above,Hip,0,5701,,40.16141862,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 27102,NJBF000052452,407 HARBOUR COVE,Somers Point,NJ,39.31480508,-74.5897331,RES3C,3001,,37,ME,1984,1984,3301,1,1,9406.166598,9406.166598,3507,NO,11.04,25.08,1,-0.85,6106,111.838469,121.905476,131.586536,137.936121,I,Above,Flat,0,NaN,,18.06001767,0,0,,,,1,1,,0.03,nav,1,1984,1,, 27103,NJBF000054288,122 COLWICK DR,Somers Point,NJ,39.322965,-74.6140245,RES1,3001,,16,NE,1955,1955,3101,2,1,1309.79535,1309.79535,3507,NO,33.46,39.18,1,0.93,6110,111.258145,121.39544,131.105933,137.321371,I,Above,Gable,0,5701,,36.31938333,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27104,NJBF000054382,122 E MEYRAN AVE,Somers Point,NJ,39.32323975,-74.5847659,RES1,3001,,16,NE,1951,1951,3102,1,1,2106.557069,2106.557069,3505,NO,13.24,18.67,3,0.33,6106,111.782984,121.886719,131.574887,137.92028,I,Above,Gable,0,5701,,15.95623417,0,0,,,,1,1,,0.03,nav,1,1951,1,, 27105,NJBF000054791,168 JORDAN RD,Somers Point,NJ,39.324323,-74.6038505,RES1,3001,,16,NE,1966,1966,3101,2,1,1699.723943,1699.723943,3507,NO,32.24,44.98,1,2.69,6110,111.40773,121.549397,131.252498,137.511736,I,Above,Hip,0,5701,,38.61073502,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27106,NJBF000055331,120 OSBORNE RD,Somers Point,NJ,39.3257883,-74.60365889,RES1,3001,,16,NE,1964,1964,3101,1,1,1713.016422,1713.016422,3507,NO,11.36,23.92,1,-0.65,6106,111.384137,121.534648,131.239357,137.494698,I,Above,Flat,0,5701,,17.63890593,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27107,NJBF000052499,605 HARBOUR COVE,Somers Point,NJ,39.31516487,-74.58794352,RES3C,3001,,37,ME,1985,1985,3301,1,1,4230.941089,4230.941089,3507,NO,12.49,17.49,1,-0.22,6106,111.865648,121.931319,131.61201,137.967744,I,Above,Flat,0,NaN,,14.99155959,0,0,,,,1,1,,0.03,nav,1,1985,1,, 27108,NJBF000055629,116 HADDON RD,Somers Point,NJ,39.32660204,-74.6054313,RES1,3001,,16,NE,1967,1967,3101,1,1,1638.882453,1638.882453,3507,NO,19.64,28.69,1,1.09,6106,111.337695,121.494748,131.202054,137.44643,I,Above,Gable,0,5701,,24.16820507,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27109,NJBF000055702,1415 MASSACHUSETTS AVE,Somers Point,NJ,39.3267715,-74.60891094,RES1,3001,,16,NE,1971,1971,3101,2,1,1582.372318,1582.372318,3507,NO,34.8,47.05,1,-0.32,6110,111.273838,121.43398,131.144881,137.372124,I,Above,Hip,0,5701,,40.92309498,0,0,,,,1,1,,0.35,nav,1,1971,2,, 27110,NJBF000053327,,Somers Point,NJ,39.31952816,-74.58733012,RES1,3001,,NaN,NE,1969,0,3102,2,1,1740.687802,1740.687802,3507,NO,26.19,32.81,1,1.93,6106,111.799481,121.888123,131.573877,137.919596,I,Above,Gable,0,5701,,29.50294064,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27111,NJBF000055127,115 OSBORNE RD,Somers Point,NJ,39.32521624,-74.60358181,RES1,3001,,16,NE,1963,1963,3101,1,1,1631.505113,1631.505113,3507,NO,18.39,33.21,1,0.76,6106,111.396046,121.542957,131.246917,137.504484,I,Above,Gable,0,5701,,25.79695381,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 27112,NJBF000055145,11 COLGATE RD,Somers Point,NJ,39.32526402,-74.60978684,RES1,3001,,16,NE,1970,1970,3101,1,1,2473.511264,2473.511264,3507,NO,13.77,24.19,1,0.48,6106,111.286795,121.437812,131.147612,137.375732,I,Above,Gable,0,5701,,18.9806143,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27113,NJBF000052816,,Somers Point,NJ,39.31728899,-74.58928651,RES3C,3001,,NaN,ME,1969,0,3301,1,1,4733.62435,4733.62435,3505,NO,14.45,26.44,3,-1.01,6106,111.802369,121.882352,131.566464,137.910697,I,Above,Hip,0,NaN,,20.44422393,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27114,NJBF000051735,39 GREATE BAY DR,Somers Point,NJ,39.31037624,-74.60506261,RES3A,3001,,29,NE,1977,1977,3301,2,1,1892.901463,1892.901463,3507,NO,24.08,32.57,1,2.47,6112,111.642143,121.703823,131.385724,137.684272,I,Above,Gable,0,5701,,28.32394062,0,0,,,,1,1,,0.35,nav,1,1977,2,, 27115,NJBF000054207,120 BALA DR,Somers Point,NJ,39.32273822,-74.6151859,RES1,3001,,16,NE,1966,1966,3101,1,1,2011.009982,2011.009982,3507,NO,16.13,24.84,1,0.34,6106,111.243164,121.378902,131.090136,137.300671,I,Above,Gable,0,5701,,20.48485986,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27116,NJBF000054665,3 YALE BLVD,Somers Point,NJ,39.32401551,-74.60981912,RES1,3001,,16,NE,1969,1969,3101,2,1,1413.108789,1413.108789,3507,NO,34.12,40.08,1,2.21,6106,111.309426,121.45273,131.160828,137.393008,I,Above,Hip,0,5701,,37.09874494,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27117,NJBF000053836,44 LAUREL DR SOUTH,Somers Point,NJ,39.32146044,-74.61453668,RES1,3001,,16,NE,1978,1978,3101,1,1,1253.302413,1253.302413,3507,NO,13.95,26.66,1,0.76,6110,111.277618,121.40578,131.114291,137.332419,I,Above,Flat,0,5701,,20.30519892,0,0,,,,1,1,,0.35,nav,1,1978,1,, 27118,NJBF000055693,2 DARTMOUTH RD,Somers Point,NJ,39.32675848,-74.60654819,RES1,3001,,16,NE,1968,1968,3101,1,1,2030.314127,2030.314127,3507,NO,19.67,33.21,1,0.6,6106,111.315166,121.47398,131.182541,137.421119,I,Above,Gable,0,5701,,26.43972282,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27119,NJBF000055007,23 AMBLER RD,Somers Point,NJ,39.32488246,-74.60758334,RES1,3001,,16,NE,1963,1963,3101,1,1,618.92325,618.92325,3507,NO,14.3,24.59,1,-0.71,6106,111.331873,121.479597,131.186787,137.426711,I,Above,Gable,0,5701,,19.44542375,0,0,,,,1,1,,0.03,nav,1,1963,1,, 27120,NJBF000055061,23 AMBLER RD,Somers Point,NJ,39.32501716,-74.60770903,RES1,3001,,16,NE,1963,1963,3101,1,1,1775.530185,1775.530185,3507,NO,18.05,30.2,1,2.84,6106,111.327185,121.475811,131.183297,137.422172,I,Above,Hip,0,5701,,24.12082433,0,0,,,,1,1,,0.03,nav,1,1963,1,, 27121,NJBF000053290,3 FRESH SPRING COVE,Somers Point,NJ,39.31940324,-74.6166783,RES1,3001,,16,NE,1972,1972,3101,1,1,2943.402887,2943.402887,3507,NO,20.49,33.63,1,2.83,6110,111.280662,121.39621,131.103007,137.317828,I,Above,Gable,0,5701,,27.0606631,0,0,,,,1,1,,0.35,nav,1,1972,1,, 27122,NJBF000054761,178 BALA DR,Somers Point,NJ,39.32425017,-74.6112433,RES1,3001,,16,NE,1970,1970,3101,2,1,2166.741312,2166.741312,3507,NO,31.22,36.61,1,2.01,6106,111.280859,121.425938,131.135723,137.360265,I,Above,Hip,0,5701,,33.91685906,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27123,NJBF000051830,900 MAYS LANDING RD,Somers Point,NJ,39.31104767,-74.61098183,RES4,3001,281,NaN,ME,1988,1988,3401,1,1,5442.015638,5442.015638,3507,NO,12.99,18.47,1,1.03,6110,111.528786,121.597103,131.283678,137.553696,I,Above,Hip,0,NaN,,15.73205334,0,0,,,,1,1,,1,nav,1,1988,1,, 27124,NJBF000051802,800 BAY AVE .,Somers Point,NJ,39.31086012,-74.59384537,COM1,3001,510,NaN,ME,1876,1876,3401,3,1,6936.746452,6936.746452,3507,NO,46.1,57.11,1,2.63,6102,111.833269,121.885302,131.562419,137.90676,I,Above,Hip,0,NaN,,51.60131024,0,0,,,,1,1,,0.03,nav,1,1876,3,, 27125,NJBF000055691,124 PRINCETON RD,Somers Point,NJ,39.32675552,-74.60394075,RES1,3001,,16,NE,1965,1965,3101,1,1,1204.535998,1204.535998,3507,NO,13.86,26.34,1,2.25,6112,111.361269,121.518047,131.22413,137.474987,I,Above,Gable,0,5701,,20.10331262,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27126,NJBF000051859,801 BAY AVE,Somers Point,NJ,39.31129541,-74.59419954,COM1,3001,649,NaN,ME,1865,1865,3401,2,1,2404.894424,2404.894424,3507,NO,32.93,40.23,1,0.32,6106,111.818947,121.873878,131.551855,137.893481,I,Above,Flat,0,NaN,,36.57861519,0,1.2,,,,1,1,,0.03,nav,1,1865,2,, 27127,NJBF000056705,13 HAMILTON DR,Somers Point,NJ,39.3290825,-74.604266,RES1,3001,,43,NE,1970,1970,3101,1,2,2183.274276,2183.274276,3507,NO,13.73,25.51,1,1.04,6112,111.312539,121.484251,131.193139,137.434802,I,Above,Hip,0,5701,,19.61886037,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27128,NJBF000056721,21 CHAPMAN BLVD,Somers Point,NJ,39.3291241,-74.59982366,RES1,3001,,16,NE,1968,1968,3101,1,1,2565.379494,2565.379494,3507,NO,16.8,31.74,1,-0.8,6112,111.392211,121.559113,131.263801,137.526013,I,Above,Hip,0,5701,,24.26567384,0,0,,,,1,1,,0.35,nav,1,1968,1,, 27129,NJBF000057692,5 FOX TAIL CT,Somers Point,NJ,39.3310088,-74.6071848,RES1,3001,,27,NE,1987,1987,3101,2,1,1299.295508,1299.295508,3507,NO,30.57,36.2,1,0.69,6106,111.225093,121.411493,131.125314,137.346582,I,Above,Hip,0,5701,,33.38402886,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27130,NJBF000055100,9 COLGATE RD,Somers Point,NJ,39.32512616,-74.60961798,RES1,3001,,16,NE,1970,1970,3101,1,1,2258.000752,2258.000752,3507,NO,19.41,28.33,1,2.99,6106,111.292253,121.442358,131.151807,137.381205,I,Above,Gable,0,5701,,23.87389656,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27131,NJBF000054090,114 E DAWES AVE,Somers Point,NJ,39.32235534,-74.58492177,RES1,3001,,16,NE,1965,1965,3102,2,1,1732.577503,1732.577503,3505,NO,40.46,49.79,3,1.57,6106,111.795593,121.894761,131.582176,137.929496,I,Above,Gable,0,5701,,45.12664622,0,0,,,,1,1,,0.03,nav,1,1965,2,, 27132,NJBF000051551,1000 SPRUCE ST,Somers Point,NJ,39.30824281,-74.61672422,RES1,3001,,18,NE,1996,1996,3102,2,1,2375.591103,2375.591103,3507,NO,35.11,45.53,1,-0.93,6110,111.485034,121.538851,131.222722,137.475816,I,Above,Gable,0,5701,,40.31983128,0,0,,,,1,1,,0.35,nav,1,1996,2,, 27133,NJBF000054041,115 E PIERSON AVE,Somers Point,NJ,39.32218688,-74.58616412,RES1,3001,,16,NE,1925,1925,3102,2,1,1686.637198,1686.637198,3505,NO,33.69,46.54,3,0.21,6106,111.774568,121.875604,131.563549,137.90631,I,Above,Gable,0,5701,,40.11069072,0,0,,,,1,1,,0.03,nav,1,1925,2,, 27134,NJBF000058409,38 WILSON AVE,Somers Point,NJ,39.33226078,-74.60623238,RES1,3001,,16,NE,1985,1985,3101,1,1,1813.575837,1813.575837,3507,NO,14.84,26.18,1,1.45,6106,111.218669,121.412562,131.126502,137.348156,I,Above,Gable,0,5701,,20.50917164,0,0,,,,1,1,,0.03,nav,1,1985,1,, 27135,NJBF000055259,1 CORNELL RD,Somers Point,NJ,39.32559426,-74.60872738,RES1,3001,,16,NE,1969,1969,3101,2,1,1294.917086,1294.917086,3507,NO,33.4,41.87,1,-0.79,6106,111.298876,121.451564,131.160776,137.392868,I,Above,Gable,0,5701,,37.63923881,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27136,NJBF000054578,7 AMBLER RD,Somers Point,NJ,39.3237685,-74.60909198,RES1,3001,,16,NE,1967,1967,3101,1,1,1664.653048,1664.653048,3507,NO,15.5,28.13,1,1.09,6106,111.326477,121.46801,131.175081,137.411565,I,Above,Gable,0,5701,,21.81512386,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27137,NJBF000051768,820 BAY AVE,Somers Point,NJ,39.3106475,-74.5943475,RES1,3001,,15,NE,1920,1920,3102,2,1,630.3336251,630.3336251,3505,NO,39.73,46.71,3,3.46,6106,111.82792,121.879527,131.556529,137.899448,I,Above,Flat,0,5701,,43.21650284,0,0,,,,1,1,,0.03,nav,1,1920,2,, 27138,NJBF000056324,22 COOPER DR,Somers Point,NJ,39.32821266,-74.60443152,RES1,3001,,43,NE,1970,1970,3101,1,2,2123.408693,2123.408693,3507,NO,17.08,31.21,1,2.9,6110,111.32563,121.491989,131.200138,137.443892,I,Above,Gable,0,5701,,24.14052108,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27139,NJBF000054633,182 BALA DR,Somers Point,NJ,39.32392403,-74.61089042,RES1,3001,,16,NE,1960,1960,3101,1,1,1356.912439,1356.912439,3507,NO,21.52,29.16,1,2.15,6110,111.2929,121.435907,131.144883,137.372234,I,Above,Gable,0,5701,,25.33960764,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 27140,NJBF000057044,5 HAMILTON DR,Somers Point,NJ,39.32979884,-74.60373864,RES1,3001,,43,NE,1970,1970,3101,1,2,2201.746359,2201.746359,3507,NO,16.11,26.07,1,1.05,6110,111.308737,121.484506,131.193577,137.435356,I,Above,Gable,0,5701,,21.08512207,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27141,NJBF000053375,14 FRESH SPRING COVE,Somers Point,NJ,39.31969573,-74.61623932,RES1,3001,,16,NE,1968,1968,3101,1,1,2141.425851,2141.425851,3507,NO,16.64,23.54,1,0.83,6106,111.282389,121.399772,131.106722,137.322666,I,Above,Hip,0,5701,,20.09348875,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27142,NJBF000051762,827 BAY AVE REAR,Somers Point,NJ,39.31060396,-74.59548181,RES1,3001,,16,NE,1980,1980,3102,2,1,900.7759526,900.7759526,3505,NO,27.44,35.57,3,-0.57,6110,111.808065,121.86102,131.538473,137.876882,I,Above,Hip,0,5701,,31.50459638,0,0,,,,1,1,,0.35,nav,1,1980,2,, 27143,NJBF000054261,3 PRINCETON RD,Somers Point,NJ,39.32289327,-74.60809971,RES1,3001,,16,NE,1961,1961,3101,1,1,2181.719477,2181.719477,3507,NO,11.64,21.37,1,1.14,6110,111.359757,121.495526,131.200455,137.444563,I,Above,Gable,0,5701,,16.50686362,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27144,NJBF000054308,1 PRINCETON RD,Somers Point,NJ,39.3230335,-74.608458,RES1,3001,,16,NE,1962,1962,3101,1,1,942.193705,942.193705,3507,NO,20.03,27.34,1,2.82,6110,111.350976,121.487765,131.193214,137.435162,I,Above,Hip,0,5701,,23.68421538,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 27145,NJBF000053458,23 LAUREL DR SOUTH,Somers Point,NJ,39.32001223,-74.61536758,RES1,3001,,16,NE,1965,1965,3101,1,1,2256.765544,2256.765544,3507,NO,18.29,23.5,1,1.19,6106,111.290794,121.410229,131.116985,137.336073,I,Above,Hip,0,5701,,20.89319716,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27146,NJBF000055584,1411 MASSACHUSETTS AVE,Somers Point,NJ,39.32649371,-74.60850502,RES1,3001,,16,NE,1971,1971,3101,2,1,2035.36861,2035.36861,3507,NO,24.11,37.82,1,0.54,6110,111.285997,121.444222,131.154373,137.3845,I,Above,Gable,0,5701,,30.96343491,0,0,,,,1,1,,0.35,nav,1,1971,2,, 27147,NJBF000055153,106 PRINCETON RD,Somers Point,NJ,39.3252898,-74.60545003,RES1,3001,,16,NE,1966,1966,3101,1,1,1869.433817,1869.433817,3507,NO,12.49,21.11,1,-0.84,6110,111.36161,121.510516,131.216254,137.464875,I,Above,Gable,0,5701,,16.7999869,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27148,NJBF000054733,137 BALA DR,Somers Point,NJ,39.32418683,-74.614686,RES1,3001,,16,NE,1957,1957,3101,2,1,561.6944094,561.6944094,3507,NO,36.57,43.7,1,2.08,6110,111.224433,121.3691,131.082156,137.290122,I,Above,Gable,0,5701,,40.13510555,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27149,NJBF000054775,123 E WILMONT AVE,Somers Point,NJ,39.32427421,-74.58392367,RES1,3001,,16,NE,1964,1964,3102,1,1,1651.298198,1651.298198,3505,NO,17.33,28.12,3,2.57,6106,111.78116,121.88864,131.577261,137.92307,I,Above,Flat,0,5701,,22.72722089,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27150,NJBF000053258,124 E GROVELAND AVE,Somers Point,NJ,39.31927981,-74.58818479,RES1,3001,,16,NE,1920,1920,3102,2,1,1584.133084,1584.133084,3505,NO,24.12,37.76,3,-1.81,6110,111.787629,121.876617,131.562552,137.905508,I,Above,Gable,0,5701,,30.94144384,0,0,,,,1,1,,0.35,nav,1,1920,2,, 27151,NJBF000055947,2 RUTGERS RD,Somers Point,NJ,39.32735099,-74.60596716,RES1,3001,,16,NE,1968,1968,3101,1,1,2073.814928,2073.814928,3507,NO,20.83,26.83,1,2.29,6106,111.314389,121.476537,131.185227,137.424586,I,Above,Gable,0,5701,,23.83102751,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27152,NJBF000058282,6 WOODLOT CT,Somers Point,NJ,39.33203081,-74.60081668,RES1,3001,,16,NE,1990,1990,3101,1,1,1059.708921,1059.708921,3507,NO,16.66,23.07,1,2.21,6110,111.320757,121.507324,131.215413,137.463562,I,Above,Gable,0,5701,,19.86509176,0,0,,,,1,1,,0.35,nav,1,1990,1,, 27153,NJBF000053568,4 WISTERIA WALK,Somers Point,NJ,39.32043487,-74.61377671,RES1,3001,,16,NE,1963,1963,3101,1,1,1509.774099,1509.774099,3507,NO,12.78,23.13,1,-0.53,6110,111.309221,121.431348,131.137446,137.36278,I,Above,Gable,0,5701,,17.9558129,0,0,,,,1,1,,0.35,nav,1,1963,1,, 27154,NJBF000052108,,Somers Point,NJ,39.31292497,-74.62446377,COM8,3001,,NaN,ME,1969,0,3401,3,1,2441.58422,2441.58422,3507,NO,42.11,53.47,1,-0.95,6106,111.276398,121.351703,131.051026,137.250543,I,Above,Flat,0,5701,,47.7908006,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27155,NJBF000055859,42 BUCKNELL RD,Somers Point,NJ,39.32714043,-74.61144853,RES1,3001,,16,NE,1979,1979,3101,1,1,1759.612695,1759.612695,3507,NO,18.65,23.74,1,2.47,6106,111.223556,121.38673,131.100694,137.314369,I,Above,Flat,0,5701,,21.19288006,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27156,NJBF000055828,,Somers Point,NJ,39.32707117,-74.58466609,RES3D,3001,,NaN,E,1969,0,3303,3,1,6539.628703,6539.628703,3507,NO,51.14,57.41,1,2.1,6112,111.717449,121.842376,131.5337,137.868285,I,Above,Flat,0,NaN,,54.2794783,0,0,,,,1,1,,0.35,nav,1,1969,3,, 27157,NJBF000058168,5 WOODLOT CT,Somers Point,NJ,39.33182415,-74.60036094,RES1,3001,,16,NE,1990,1990,3101,2,1,1030.666534,1030.666534,3507,NO,22.29,30.25,1,0.94,6106,111.332938,121.517559,131.225038,137.47599,I,Above,Gable,0,5701,,26.26539106,0,0,,,,1,1,,0.03,nav,1,1990,2,, 27158,NJBF000055627,1418 MASSACHUSETTS AVE,Somers Point,NJ,39.32660078,-74.60934073,RES1,3001,,16,NE,1970,1970,3101,1,1,2259.85248,2259.85248,3507,NO,15.11,22.85,1,-0.41,6110,111.269592,121.428828,131.139945,137.365692,I,Above,Gable,0,5701,,18.98254196,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27159,NJBF000052353,,Somers Point,NJ,39.31388406,-74.62512521,RES3B,3001,,NaN,E,1969,0,3303,3,1,8557.477985,8557.477985,3507,NO,50.5,60.7,1,0.39,6106,111.248616,121.32846,131.030474,137.223226,I,Above,Flat,0,5701,,55.6020295,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27160,NJBF000052443,,Somers Point,NJ,39.31388406,-74.62512521,RES3B,3001,,NaN,E,1969,0,3303,3,1,8577.866099,8577.866099,3507,NO,32.21,40.78,1,-0.37,6106,111.248616,121.32846,131.030474,137.223226,I,Above,Flat,0,5701,,36.49359328,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27161,NJBF000056946,3 COOPER DR,Somers Point,NJ,39.3296025,-74.6028065,RES1,3001,,16,NE,1968,1968,3101,2,1,1299.270745,1299.270745,3507,NO,37.1,48.22,1,0.62,6112,111.329143,121.502699,131.210661,137.457474,I,Above,Gable,0,5701,,42.65867377,0,0,,,,1,1,,0.35,nav,1,1968,2,, 27162,NJBF000056189,5 RUTGERS RD,Somers Point,NJ,39.32791897,-74.60612314,RES1,3001,,16,NE,1968,1968,3101,1,1,1550.930514,1550.930514,3507,NO,12.65,26.73,1,-0.89,6106,111.301123,121.466968,131.176455,137.413183,I,Above,Gable,0,5701,,19.68939789,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27163,NJBF000056312,17 DARTMOUTH RD,Somers Point,NJ,39.32819703,-74.60802434,RES1,3001,,16,NE,1970,1970,3101,1,1,1210.794211,1210.794211,3507,NO,11.51,20.54,1,-0.64,6106,111.262696,121.431467,131.143185,137.369889,I,Above,Gable,0,5701,,16.02520748,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27164,NJBF000056235,1021 W GROVELAND AVE,Somers Point,NJ,39.3280175,-74.6048055,RES1,3001,,16,NE,1972,1972,3101,1,1,1579.925429,1579.925429,3507,NO,13.59,24.56,1,-0.41,6106,111.322599,121.488049,131.196351,137.438992,I,Above,Gable,0,5701,,19.07595618,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27165,NJBF000056037,51 BUCKNELL RD,Somers Point,NJ,39.3275811,-74.61158275,RES1,3001,,16,NE,1978,1978,3101,2,1,1309.390982,1309.390982,3507,NO,30.08,42.52,1,2.69,6106,111.213058,121.379049,131.093723,137.30523,I,Above,Gable,0,5701,,36.30071229,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27166,NJBF000051599,1427 ATKINSON AVE,Somers Point,NJ,39.30889418,-74.61714903,RES1,3001,,16,NE,1906,2008,3102,2,1,2505.310759,2505.310759,3507,NO,30.68,37.15,1,0.49,6110,111.46625,121.523449,131.209018,137.457907,I,Above,Hip,0,5701,,33.91649827,0,0,,,,1,1,,0.35,nav,1,1906,2,, 27167,NJBF000054593,15 HADDON RD,Somers Point,NJ,39.32381987,-74.60767696,RES1,3001,,16,NE,1962,1962,3101,1,1,2312.539699,2312.539699,3507,NO,12.23,17.51,1,0.04,6106,111.349912,121.49114,131.196988,137.440005,I,Above,Gable,0,5701,,14.86894941,0,0,,,,1,1,,0.03,nav,1,1962,1,, 27168,NJBF000056129,3 RUTGERS RD,Somers Point,NJ,39.32777678,-74.60589527,RES1,3001,,16,NE,1968,1968,3101,1,1,2175.897644,2175.897644,3507,NO,15.91,21.19,1,1.84,6106,111.30777,121.472553,131.181656,137.41994,I,Above,Gable,0,5701,,18.54989394,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27169,NJBF000051755,825 BAY AVE,Somers Point,NJ,39.310522,-74.59510233,RES1,3001,100,16,NE,1905,1905,3102,2,1,1881.729398,1881.729398,3505,NO,38.92,51.21,3,2.44,6106,111.816445,121.86843,131.545572,137.885779,I,Above,Gable,0,5701,,45.06476619,0,1.2,,,,1,1,,0.03,nav,1,1905,2,, 27170,NJBF000054547,4 HAVERFORD RD,Somers Point,NJ,39.32369748,-74.60353165,RES1,3001,,16,NE,1966,1966,3101,2,1,1255.691815,1255.691815,3507,NO,27.4,39.19,1,1.12,6112,111.424901,121.562467,131.264502,137.527243,I,Above,Hip,0,5701,,33.29377383,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27171,NJBF000054503,6 HAVERFORD RD,Somers Point,NJ,39.32356735,-74.60332543,RES1,3001,,16,NE,1966,1966,3101,2,1,1844.340954,1844.340954,3507,NO,36.67,51.51,1,-0.39,6112,111.430972,121.56756,131.269253,137.533368,I,Above,Hip,0,5701,,44.09228261,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27172,NJBF000054459,188 BALA DR,Somers Point,NJ,39.323457,-74.61039518,RES1,3001,,16,NE,1960,1960,3101,1,1,1276.971015,1276.971015,3507,NO,20.86,29.66,1,1.78,6112,111.309981,121.450012,131.157842,137.389152,I,Above,Gable,0,5701,,25.26151573,0,0,,,,1,1,,0.35,nav,1,1960,1,, 27173,NJBF000055182,24 JEFFERSON AVE,Somers Point,NJ,39.32537673,-74.60118452,RES1,3001,,16,NE,1965,1965,3101,1,1,1494.368628,1494.368628,3507,NO,12.91,27.84,1,0.3,6110,111.436072,121.581518,131.283571,137.551638,I,Above,Gable,0,5701,,20.37586387,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27174,NJBF000053518,40 GULPH MILL RD,Somers Point,NJ,39.32024884,-74.61834931,RES1,3001,,16,NE,1973,1973,3101,1,1,1919.166607,1919.166607,3507,NO,16,27.88,1,-0.72,6106,111.237932,121.357783,131.067615,137.271263,I,Above,Gable,0,5701,,21.94134594,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27175,NJBF000054421,118 E MEYRAN AVE,Somers Point,NJ,39.32335675,-74.58503668,RES1,3001,,16,NE,1950,1950,3102,1,1,1362.538597,1362.538597,3505,NO,14.21,22.77,3,3.35,6112,111.775655,121.880676,131.569106,137.913059,I,Above,Gable,0,5701,,18.49418704,0,1.2,,,,1,1,,0.35,nav,1,1950,1,, 27176,NJBF000053792,6 GULPH MILL RD,Somers Point,NJ,39.32129337,-74.61578936,RES1,3001,,16,NE,1967,1967,3101,1,1,2171.419209,2171.419209,3507,NO,19.62,29.66,1,1.18,6106,111.260121,121.387048,131.096418,137.309014,I,Above,Hip,0,5701,,24.64130435,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27177,NJBF000055197,13 COLGATE RD,Somers Point,NJ,39.32542286,-74.60997886,RES1,3001,,16,NE,1970,1970,3101,2,1,1418.899741,1418.899741,3507,NO,39.77,48.55,1,1.59,6106,111.280556,121.43262,131.142822,137.369481,I,Above,Hip,0,5701,,44.16165745,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27178,NJBF000054413,123 COLWICK DR,Somers Point,NJ,39.32333156,-74.61387654,RES1,3001,,16,NE,1957,1957,3101,1,1,1498.950437,1498.950437,3507,NO,18.97,25.23,1,2.52,6110,111.253759,121.393301,131.104234,137.319125,I,Above,Gable,0,5701,,22.10020523,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 27179,NJBF000052355,24 E NEW YORK AVE,Somers Point,NJ,39.31413375,-74.59394301,RES1,3001,,15,NE,1946,1946,3101,1,1,1197.99986,1197.99986,3505,NO,21.21,32.3,3,2.06,6110,111.772473,121.842708,131.524935,137.859275,I,Above,Gable,0,5701,,26.75573895,0,0,,,,1,1,,0.35,nav,1,1946,1,, 27180,NJBF000052329,27 GIBBS AVE,Somers Point,NJ,39.31398984,-74.59421565,RES1,3001,,43,NE,1945,1945,3101,2,2,641.588103,641.588103,3505,NO,34.89,42.1,3,-2.73,6112,111.770061,121.839903,131.522058,137.855693,I,Above,Gable,0,5701,,38.49478471,0,0,,,,1,1,,0.35,nav,1,1945,2,, 27181,NJBF000054396,4 HADDON RD,Somers Point,NJ,39.32328004,-74.60883696,RES1,3001,,16,NE,1961,1961,3101,1,1,1593.572427,1593.572427,3507,NO,18.95,28.68,1,1.8,6110,111.339901,121.478348,131.184491,137.423822,I,Above,Gable,0,5701,,23.81516887,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27182,NJBF000055258,12 CORNELL RD,Somers Point,NJ,39.32559298,-74.60942067,RES1,3001,,16,NE,1970,1970,3101,1,1,2271.836578,2271.836578,3507,NO,19.35,29.82,1,1.52,6106,111.286955,121.439902,131.149787,137.378554,I,Above,Gable,0,5701,,24.58353371,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27183,NJBF000051733,,Somers Point,NJ,39.31034949,-74.60783311,RES3A,3001,,NaN,NE,1969,0,3301,2,1,4020.695656,4020.695656,3507,NO,35.9,42,1,2.97,6106,111.594945,121.658177,131.341553,137.627994,I,Above,Gable,0,5701,,38.95179261,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27184,NJBF000053289,24 LAUREL DR SOUTH,Somers Point,NJ,39.31939747,-74.61555841,RES1,3001,,16,NE,1961,1961,3101,1,1,1667.126856,1667.126856,3507,NO,14.51,24.33,1,-0.98,6106,111.299072,121.414862,131.120683,137.340975,I,Above,Hip,0,5701,,19.42230168,0,0,,,,1,1,,0.03,nav,1,1961,1,, 27185,NJBF000054177,200 BALA DR,Somers Point,NJ,39.32263514,-74.60869004,RES1,3001,,16,NE,1959,1959,3101,1,1,1247.624315,1247.624315,3507,NO,14.01,23.71,1,2.18,6112,111.354373,121.48883,131.19391,137.436094,I,Above,Hip,0,5701,,18.8590117,0,1.1,,,,1,1,,0.35,nav,1,1959,1,, 27186,NJBF000051567,998 SPRUCE ST,Somers Point,NJ,39.3084321,-74.61698844,RES1,3001,,16,NE,2005,2005,3102,2,1,1879.204391,1879.204391,3507,NO,34.65,40.38,1,0.48,6110,111.477293,121.532079,131.216519,137.467742,I,Above,Gable,0,5701,,37.51421687,0,0,,,,1,1,,0.35,nav,1,2005,2,, 27187,NJBF000055486,2 STANFORD RD,Somers Point,NJ,39.32622402,-74.60716267,RES1,3001,,16,NE,1968,1968,3101,1,1,518.4101276,518.4101276,3507,NO,17.47,29.24,1,2.56,6106,111.314311,121.470155,131.17866,137.416099,I,Above,Gable,0,5701,,23.35628007,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 27188,NJBF000051692,830 BAY AVE,Somers Point,NJ,39.3099853,-74.59501215,COM1,3001,510,NaN,ME,1968,1968,3401,2,1,16197.79718,16197.79718,3507,NO,31.67,38.83,1,0.07,6102,111.827761,121.876695,131.552908,137.895057,I,Above,Flat,0,NaN,,35.2514499,0,0,,,,1,1,,0.03,nav,1,1968,2,, 27189,NJBF000052005,56 HIGBEE AVE,Somers Point,NJ,39.3123547,-74.59417872,RES1,3001,,16,NE,2012,1985,3102,1,1,1295.401332,1295.401332,3505,NO,16.1,23.92,3,4.24,6106,111.800227,121.860952,131.540592,137.879197,I,Above,Gable,0,5701,,20.01245073,0,0,,,,1,1,,0.03,nav,1,2012,1,, 27190,NJBF000053219,128 E GROVELAND AVE,Somers Point,NJ,39.3191565,-74.5878005,RES1,3001,,16,NE,1981,1981,3102,2,1,1464.004312,1464.004312,3505,NO,30.5,37.62,3,5.57,6106,111.79714,121.884663,131.570246,137.915125,I,Above,Gable,0,5701,,34.05779621,0,0,,,,1,1,,0.03,nav,1,1981,2,, 27191,NJBF000054634,129 COLWICK DR,Somers Point,NJ,39.32392584,-74.61401345,RES1,3001,,16,NE,1957,1957,3101,1,1,1339.136759,1339.136759,3507,NO,13.98,28.22,1,-0.32,6106,111.240444,121.383606,131.095594,137.30777,I,Above,Gable,0,5701,,21.10154703,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 27192,NJBF000054169,10 OSBORNE RD,Somers Point,NJ,39.32260795,-74.60700334,RES1,3001,,16,NE,1961,1961,3101,1,1,1581.580346,1581.580346,3507,NO,16.67,27.69,1,2,6110,111.384018,121.51749,131.221049,137.471254,I,Above,Gable,0,5701,,22.18263978,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27193,NJBF000052368,909 HARBOUR COVE,Somers Point,NJ,39.31422337,-74.58852009,RES3C,3001,,37,ME,1986,1986,3301,1,1,9860.599358,9860.599358,3507,NO,15.01,27.25,1,-0.95,6106,111.871629,121.933216,131.612902,137.969012,I,Above,Flat,0,NaN,,21.12668863,0,0,,,,1,1,,0.03,nav,1,1986,1,, 27194,NJBF000052252,BAY AVE,Somers Point,NJ,39.31364585,-74.59091818,RES1,3001,,NaN,NE,1987,1987,3102,1,1,1516.667735,1516.667735,3507,NO,20.38,25.56,1,2.99,6106,111.837145,121.899827,131.579826,137.927959,I,Above,Gable,0,5701,,22.96885568,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27195,NJBF000059099,22 WHITMAN DR,Somers Point,NJ,39.33354456,-74.60347386,RES1,3001,,16,NE,1984,1984,3101,2,1,1570.898188,1570.898188,3507,NO,37.18,44.27,1,-0.94,6112,111.244398,121.444047,131.156029,137.386627,I,Above,Gable,0,5701,,40.72172073,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27196,NJBF000051931,111 HIGBEE AVE,Somers Point,NJ,39.31184957,-74.59263714,RES1,3001,,43,NE,1930,1930,3102,2,2,1327.772937,1327.772937,3505,NO,36.3,44.73,3,0.93,6106,111.837614,121.893229,131.571352,137.917718,I,Above,Flat,0,5701,,40.51397371,0,0,,,,1,1,,0.03,nav,1,1930,2,, 27197,NJBF000053957,15 GULPH MILL RD,Somers Point,NJ,39.32191527,-74.61653946,RES1,3001,,16,NE,1967,1967,3101,1,1,1734.402366,1734.402366,3507,NO,18.74,32.62,1,-0.32,6110,111.236309,121.366731,131.077867,137.284611,I,Above,Gable,0,5701,,25.6783245,0,0,,,,1,1,,0.35,nav,1,1967,1,, 27198,NJBF000059790,400 W OCEAN HEIGHTS,Somers Point,NJ,39.334852,-74.5965815,RES1,3001,,16,NE,1903,1903,3102,2,2,1819.680636,1819.680636,3505,NO,42.34,49.53,3,8.29,6112,111.348594,121.546093,131.251852,137.510421,I,Above,Gable,0,5701,,45.93185046,0,1.2,,,,1,1,,0.03,nav,1,1903,2,, 27199,NJBF000059446,400 W OCEAN HEIGHTS,Somers Point,NJ,39.33425667,-74.59673793,RES1,3001,,16,NE,1903,1903,3102,2,2,1206.780811,1206.780811,3505,NO,28.8,34.25,3,5.69,6106,111.356362,121.550431,131.256015,137.515791,I,Above,Gable,0,5701,,31.52667689,0,1.2,,,,1,1,,0.03,nav,1,1903,2,, 27200,NJBF000055444,20 CORNELL RD,Somers Point,NJ,39.32611881,-74.61018197,RES1,3001,,16,NE,1970,1970,3101,2,1,1555.550723,1555.550723,3507,NO,23.86,35.51,1,0.35,6106,111.264142,121.420615,131.131949,137.355267,I,Above,Hip,0,5701,,29.68634814,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27201,NJBF000051947,122 GIBBS AVE,Somers Point,NJ,39.31194147,-74.59200567,RES1,3001,,16,NE,1935,1935,3102,1,1,1111.999426,1111.999426,3505,NO,18.84,33.42,3,8.27,6106,111.847607,121.902722,131.580695,137.92935,I,Above,Hip,0,5701,,26.12759002,0,0,,,,1,1,,0.03,nav,1,1935,1,, 27202,NJBF000051945,741 BAY AVE,Somers Point,NJ,39.31193984,-74.59338798,RES1,3001,649,18,NE,2011,2011,3102,2,1,1596.976792,1596.976792,3505,NO,38.63,47.55,3,1.26,6106,111.822195,121.879458,131.558071,137.901126,I,Above,Hip,0,5701,,43.08567922,0,0,,,,1,1,,0.03,nav,1,2011,2,, 27203,NJBF000054239,133 AMBLER RD,Somers Point,NJ,39.32282085,-74.61018471,RES1,3001,,16,NE,1958,1958,3101,1,1,1578.844555,1578.844555,3507,NO,12.55,21.64,1,1.52,6112,111.325354,121.461449,131.168147,137.402607,I,Above,Hip,0,5701,,17.0946128,0,0,,,,1,1,,0.35,nav,1,1958,1,, 27204,NJBF000054758,103 OSBORNE RD,Somers Point,NJ,39.3242489,-74.60458634,RES1,3001,,16,NE,1964,1964,3101,1,1,2086.274856,2086.274856,3507,NO,17.25,29.88,1,-0.38,6110,111.396061,121.537892,131.241544,137.497615,I,Above,Gable,0,5701,,23.56266783,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27205,NJBF000054768,167 JORDAN RD,Somers Point,NJ,39.32426263,-74.60326098,RES1,3001,,16,NE,1964,1964,3101,1,1,1617.203888,1617.203888,3507,NO,11.5,23.69,1,0.37,6110,111.419306,121.560077,131.262592,137.524742,I,Above,Gable,0,5701,,17.59140711,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27206,NJBF000055284,160 BALA DR,Somers Point,NJ,39.32566063,-74.61303598,RES1,3001,,16,NE,1959,1959,3101,1,1,1773.352175,1773.352175,3507,NO,17.61,23.87,1,1.71,6110,111.224402,121.378366,131.091951,137.302933,I,Above,Hip,0,5701,,20.74021408,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27207,NJBF000055338,158 BALA DR,Somers Point,NJ,39.32582049,-74.61323101,RES1,3001,,16,NE,1959,1959,3101,1,1,2816.882872,2816.882872,3507,NO,16.91,27.13,1,-0.48,6106,111.218174,121.373125,131.087137,137.296612,I,Above,Hip,0,5701,,22.0208835,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 27208,NJBF000054755,135 EXTON RD,Somers Point,NJ,39.32423336,-74.61237288,RES1,3001,,16,NE,1958,1958,3101,2,1,2504.880682,2504.880682,3507,NO,39.1,51.66,1,0.4,6106,111.262119,121.407215,131.118067,137.337192,I,Above,Gable,0,5701,,45.38171645,0,0,,,,1,1,,0.03,nav,1,1958,2,, 27209,NJBF000052037,718 BAY AVE,Somers Point,NJ,39.31258687,-74.59225941,RES1,3001,101,NaN,NE,1950,1950,3102,1,1,1811.12795,1811.12795,3505,NO,16.02,30.88,3,0.42,6106,111.831329,121.890392,131.569464,137.915227,I,Above,Gable,0,5701,,23.4507059,0,0,,,,1,1,,0.03,nav,1,1950,1,, 27210,NJBF000051895,63 E NEW JERSEY AVE,Somers Point,NJ,39.311549,-74.593937,RES1,3001,,16,NE,1920,1920,3102,2,1,2106.228053,2106.228053,3505,NO,29.35,44.04,3,5.45,6106,111.819179,121.875116,131.553374,137.895331,I,Above,Hip,0,5701,,36.69417704,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 27211,NJBF000054660,128 EXTON RD,Somers Point,NJ,39.32398895,-74.61329603,RES1,3001,,16,NE,1957,1957,3101,1,1,1612.619197,1612.619197,3507,NO,11.92,21.81,1,1.26,6110,111.251206,121.394808,131.106192,137.321658,I,Above,Gable,0,5701,,16.86601254,0,0,,,,1,1,,0.35,nav,1,1957,1,, 27212,NJBF000054322,124 COLWICK DR,Somers Point,NJ,39.32306973,-74.61419845,RES1,3001,,16,NE,1955,1955,3101,2,1,1602.026062,1602.026062,3507,NO,25.6,36.76,1,-0.02,6106,111.253306,121.39122,131.102046,137.316272,I,Above,Gable,0,5701,,31.18067748,0,0,,,,1,1,,0.03,nav,1,1955,2,, 27213,NJBF000054250,198 BALA DR,Somers Point,NJ,39.32285285,-74.60908993,RES1,3001,,16,NE,1963,1963,3101,1,1,1926.985467,1926.985467,3507,NO,13.9,24.73,1,-0.51,6110,111.343469,121.479409,131.185164,137.424725,I,Above,Gable,0,5701,,19.31507951,0,0,,,,1,1,,0.35,nav,1,1963,1,, 27214,NJBF000052319,7 HORTER AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1979,3102,1,1,2589.359388,2589.359388,3505,NO,21.95,26.95,3,3.44,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,24.45270652,0,1.2,,,,1,1,,0.03,nav,1,2007,1,, 27215,NJBF000055499,7 BUCKNELL RD,Somers Point,NJ,39.3262565,-74.6112585,RES1,3001,,16,NE,1979,1979,3101,2,1,1360.200544,1360.200544,3507,NO,24.87,38.1,1,1.95,6106,111.243256,121.400823,131.113424,137.33105,I,Above,Gable,0,5701,,31.48533597,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27216,NJBF000051719,24 GREATE BAY DR,Somers Point,NJ,39.31020275,-74.60445199,RES3A,3001,,29,NE,1977,1977,3301,2,1,1842.364648,1842.364648,3507,NO,36.31,42.16,1,1.37,6112,111.655904,121.716187,131.397435,137.699189,I,Above,Gable,0,5701,,39.23430073,0,0,,,,1,1,,0.35,nav,1,1977,2,, 27217,NJBF000051668,,Somers Point,NJ,39.3096295,-74.5953305,RES1,3001,,NaN,NE,1969,0,3102,2,1,809.9497937,809.9497937,3507,NO,28.88,43.43,1,-0.62,6106,111.828387,121.875826,131.551585,137.893478,I,Above,Flat,0,5701,,36.15235989,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27218,NJBF000051534,,Somers Point,NJ,39.30808535,-74.59676416,COM1,3001,,NaN,ME,1982,0,3401,1,1,13440.30535,13440.30535,3507,NO,15.47,28.13,1,2.43,6102,111.830342,121.871317,131.545035,137.885626,I,Above,Flat,0,NaN,,21.80280161,0,0,,,,1,1,,0.03,nav,1,1982,1,, 27219,NJBF000055078,107 PRINCETON RD,Somers Point,NJ,39.32507068,-74.60507353,RES1,3001,,16,NE,1964,1964,3101,1,1,1598.642454,1598.642454,3507,NO,13.46,18.62,1,1.14,6106,111.37228,121.51955,131.224673,137.475774,I,Above,Gable,0,5701,,16.04044827,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27220,NJBF000054766,16 HADDON RD,Somers Point,NJ,39.32425572,-74.60783617,RES1,3001,,16,NE,1962,1962,3101,1,1,1730.069491,1730.069491,3507,NO,13.99,22.63,1,1.49,6106,111.339084,121.483073,131.189661,137.430474,I,Above,Gable,0,5701,,18.31120926,0,0,,,,1,1,,0.03,nav,1,1962,1,, 27221,NJBF000057313,15 SCHOOLHOUSE DR,Somers Point,NJ,39.330349,-74.59829,RES1,3001,,16,NE,1972,1972,3101,2,1,1321.084812,1321.084812,3507,NO,31.59,42.97,1,2.89,6110,111.398173,121.570476,131.274814,137.5401,I,Above,Gable,0,5701,,37.27725122,0,0,,,,1,1,,0.35,nav,1,1972,2,, 27222,NJBF000051481,4 BROADWAY,Somers Point,NJ,39.30750265,-74.6002043,COM1,3001,,NaN,ME,1948,1948,3401,2,1,2041.422004,2041.422004,3507,NO,35.92,50.45,1,2.2,6102,111.779457,121.821266,131.495414,137.823567,I,Above,Hip,0,NaN,,43.18348097,0,0,,,,1,1,,0.03,nav,1,1948,2,, 27223,NJBF000051799,81 GREATE BAY DR,Somers Point,NJ,39.31084637,-74.60699651,RES3A,3001,,29,NE,1977,1977,3301,2,1,1907.059573,1907.059573,3507,NO,32.74,46.77,1,0.53,6110,111.600198,121.665701,131.349564,137.638113,I,Above,Gable,0,5701,,39.75687927,0,0,,,,1,1,,0.35,nav,1,1977,2,, 27224,NJBF000052059,6 POINT DRIVE,Somers Point,NJ,39.31269393,-74.5800707,RES1,3001,,16,NE,1988,1988,3102,2,1,1343.258325,1343.258325,3507,NO,26.25,34.05,1,1.88,6106,112.059816,122.095468,131.769807,138.162632,I,Above,Hip,0,5701,,30.14984272,0,0,,,,1,1,,0.03,nav,1,1988,2,, 27225,NJBF000052094,2 POINT DRIVE,Somers Point,NJ,39.31287742,-74.58005484,RES1,3001,,NaN,NE,1959,0,3102,2,1,2535.402705,2535.402705,3507,NO,35.69,47.79,1,1.25,6106,112.056907,122.093486,131.768055,138.160459,I,Above,Flat,0,5701,,41.74082736,0,0,,,,1,1,,0.03,nav,1,1959,2,, 27226,NJBF000052468,1105 HARBOUR COVE,Somers Point,NJ,39.31489294,-74.5875565,RES3C,3001,,37,ME,1986,1986,3301,1,1,5477.838074,5477.838074,3507,NO,15.88,23.94,1,1.64,6106,111.877806,121.941239,131.621388,137.979434,I,Above,Flat,0,NaN,,19.90978365,0,0,,,,1,1,,0.03,nav,1,1986,1,, 27227,NJBF000054215,113 COLWICK DR,Somers Point,NJ,39.32276698,-74.61297626,RES1,3001,,16,NE,1957,1957,3101,2,1,1499.825964,1499.825964,3507,NO,25.3,34.78,1,0.25,6112,111.279277,121.415422,131.124613,137.345831,I,Above,Flat,0,5701,,30.04130407,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27228,NJBF000056065,9 DARTMOUTH RD,Somers Point,NJ,39.32765031,-74.6071223,RES1,3001,,16,NE,1969,1969,3101,2,1,1464.391004,1464.391004,3507,NO,32.24,40.41,1,1.96,6106,111.288582,121.453377,131.163551,137.396417,I,Above,Gable,0,5701,,36.32868935,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27229,NJBF000055164,8 CORNELL RD,Somers Point,NJ,39.32531833,-74.6090436,RES1,3001,,16,NE,1970,1970,3101,1,1,1536.089545,1536.089545,3507,NO,17.24,22.88,1,0.11,6106,111.298541,121.449636,131.15879,137.390293,I,Above,Gable,0,5701,,20.06119553,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27230,NJBF000054829,18 HADDON RD,Somers Point,NJ,39.32441703,-74.60763861,RES1,3001,,16,NE,1962,1962,3101,2,1,1635.020593,1635.020593,3507,NO,29.01,37.39,1,1.58,6106,111.339515,121.484396,131.19102,137.432228,I,Above,Gable,0,5701,,33.19993877,0,0,,,,1,1,,0.03,nav,1,1962,2,, 27231,NJBF000055316,152 BALA DR,Somers Point,NJ,39.32575115,-74.61393705,RES1,3001,,16,NE,1959,1959,3101,2,1,1303.308493,1303.308493,3507,NO,27.34,33.4,1,-0.49,6110,111.207688,121.362152,131.076791,137.283028,I,Above,Gable,0,5701,,30.37091777,0,0,,,,1,1,,0.35,nav,1,1959,2,, 27232,NJBF000055080,147 BALA DR,Somers Point,NJ,39.325079,-74.614104,RES1,3001,,16,NE,1957,1957,3101,2,1,1247.215635,1247.215635,3507,NO,39.94,49.85,1,1.43,6110,111.217448,121.36771,131.081534,137.289275,I,Above,Gable,0,5701,,44.8949282,0,1.2,,,,1,1,,0.35,nav,1,1957,2,, 27233,NJBF000051954,43 E NEW JERSEY AVE,Somers Point,NJ,39.31196971,-74.59468813,RES1,3001,,15,NE,1920,1920,3102,1,2,739.136632,739.136632,3505,NO,20.31,30.21,3,4.52,6112,111.79787,121.857211,131.536494,137.874141,I,Above,Gable,0,5701,,25.26066885,0,0,,,,1,1,,0.35,nav,1,1920,1,, 27234,NJBF000052050,78 GIBBS AVE,Somers Point,NJ,39.31266161,-74.59325353,RES1,3001,,16,NE,1946,1946,3102,1,1,1654.239981,1654.239981,3505,NO,16.81,29.55,3,2.56,6106,111.811657,121.872688,131.55235,137.893845,I,Above,Hip,0,5701,,23.17673448,0,0,,,,1,1,,0.03,nav,1,1946,1,, 27235,NJBF000052339,26 E NEW YORK AVE,Somers Point,NJ,39.314046,-74.59378,RES1,3001,,15,NE,1945,1945,3101,1,1,1122.727902,1122.727902,3505,NO,19.47,28.09,3,5.25,6106,111.777054,121.846553,131.528564,137.863837,I,Above,Gable,0,5701,,23.78014882,0,0,,,,1,1,,0.03,nav,1,1945,1,, 27236,NJBF000052766,110 E MARYLAND AVE,Somers Point,NJ,39.31696634,-74.58658643,COM4,3001,562,18,ME,2005,2005,3401,2,1,3181.194417,3181.194417,3507,NO,31.62,43.86,1,0.09,6106,111.859273,121.932172,131.614515,137.970561,I,Above,Flat,0,NaN,,37.73745187,0,0,,,,1,1,,0.03,nav,1,2005,2,, 27237,NJBF000052728,549 LAUNCH AVE,Somers Point,NJ,39.3167514,-74.58626026,RES1,3001,,43,NE,1922,1922,3102,2,3,3052.361729,3052.361729,3505,NO,26.11,37.67,3,1.94,6106,111.869305,121.940352,131.622274,137.980227,I,Above,Hip,0,5701,,31.88988759,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 27238,NJBF000058589,34 WILSON AVE,Somers Point,NJ,39.33257366,-74.60660609,RES1,3001,,16,NE,1985,1985,3101,2,1,1354.521224,1354.521224,3507,NO,29.87,39.25,1,-0.33,6110,111.206224,121.40246,131.117084,137.335871,I,Above,Gable,0,5701,,34.55904035,0,0,,,,1,1,,0.35,nav,1,1985,2,, 27239,NJBF000055098,17 YALE BLVD,Somers Point,NJ,39.32512497,-74.61097691,RES1,3001,,16,NE,1971,1971,3101,2,1,1294.710467,1294.710467,3507,NO,22.78,28.97,1,0,6106,111.269096,121.419546,131.130316,137.353167,I,Above,Flat,0,5701,,25.87606376,0,0,,,,1,1,,0.03,nav,1,1971,2,, 27240,NJBF000053035,,Somers Point,NJ,39.31834554,-74.58952634,COM7,3001,,NaN,ME,1969,0,3401,3,1,11233.93486,11233.93486,3507,NO,39.7,50.91,1,-0.42,6112,111.778945,121.865296,131.550853,137.891038,I,Above,Hip,0,NaN,,45.30263685,0,0,,,,1,1,,0.35,nav,1,1969,3,, 27241,NJBF000052983,,Somers Point,NJ,39.31811631,-74.59000388,RES3A,3001,,NaN,NE,1969,0,3303,3,1,2885.711977,2885.711977,3507,NO,54.85,60.65,1,1.96,6112,111.774063,121.860013,131.54555,137.884444,I,Above,Gable,0,5701,,57.74885957,0,0,,,,1,1,,0.35,nav,1,1969,3,, 27242,NJBF000052935,,Somers Point,NJ,39.31786352,-74.58954355,RES3A,3001,,NaN,NE,1969,0,3303,3,1,2953.40249,2953.40249,3507,NO,42.05,51.95,1,-0.58,6112,111.787235,121.870916,131.555888,137.897402,I,Above,Flat,0,5701,,47.00074181,0,0,,,,1,1,,0.35,nav,1,1969,3,, 27243,NJBF000052062,53 HIGBEE AVE,Somers Point,NJ,39.31271628,-74.59409566,RES1,3001,,16,NE,1920,1920,3101,1,1,985.3975664,985.3975664,3505,NO,15.38,24.56,3,2.23,6110,111.795238,121.857833,131.537992,137.875878,I,Above,Gable,0,5701,,19.9681492,0,0,,,,1,1,,0.35,nav,1,1920,1,, 27244,NJBF000052548,110 HARBOR LN,Somers Point,NJ,39.31550125,-74.59162156,COM7,3001,,NaN,ME,1970,1976,3401,1,1,7845.977894,7845.977894,3507,NO,12.51,17.6,1,0.33,6112,111.790744,121.864901,131.547873,137.88776,I,Above,Flat,0,NaN,,15.05625864,0,1.2,,,,1,1,,0.35,nav,1,1970,1,, 27245,NJBF000052105,50 GIBBS AVE,Somers Point,NJ,39.312922,-74.59369769,RES1,3001,,16,NE,1976,1976,3102,1,1,1723.682438,1723.682438,3505,NO,22.14,36.25,3,5.88,6106,111.79882,121.861961,131.542238,137.881154,I,Above,Gable,0,5701,,29.1957141,0,0,,,,1,1,,0.03,nav,1,1976,1,, 27246,NJBF000052093,56 GIBBS AVE,Somers Point,NJ,39.31287607,-74.59358515,RES1,3001,,16,NE,1920,1920,3102,2,1,1482.878173,1482.878173,3505,NO,32.81,38.7,3,5.84,6106,111.801723,121.864439,131.54459,137.884104,I,Above,Hip,0,5701,,35.75425714,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 27247,NJBF000054603,167 BALA DR,Somers Point,NJ,39.32385364,-74.61144038,RES1,3001,,16,NE,1959,1959,3101,1,1,1233.844332,1233.844332,3507,NO,15.69,29.24,1,-0.47,6106,111.284888,121.42756,131.136955,137.361893,I,Above,Gable,0,5701,,22.46563305,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27248,NJBF000056977,6 SCHOOLHOUSE DR,Somers Point,NJ,39.32965984,-74.59978147,RES1,3001,,16,NE,1968,1968,3101,2,1,1230.916011,1230.916011,3507,NO,33.43,42.74,1,2.38,6112,111.383199,121.553386,131.258516,137.519192,I,Above,Gable,0,5701,,38.08667211,0,0,,,,1,1,,0.35,nav,1,1968,2,, 27249,NJBF000052525,618 SUNNY AVE,Somers Point,NJ,39.31532951,-74.59221017,RES1,3001,,16,NE,1952,1952,3102,2,1,1775.361958,1775.361958,3507,NO,33.66,44.79,1,-0.11,6112,111.782903,121.857083,131.540126,137.878098,I,Above,Gable,0,5701,,39.22903122,0,0,,,,1,1,,0.35,nav,1,1952,2,, 27250,NJBF000054807,5 YALE BLVD,Somers Point,NJ,39.3243665,-74.6098755,RES1,3001,,16,NE,1970,1970,3101,2,1,648.7556724,648.7556724,3507,NO,24.17,36.73,1,-0.55,6110,111.301954,121.447432,131.156079,137.386805,I,Above,Gable,0,5701,,30.45332424,0,0,,,,1,1,,0.35,nav,1,1970,2,, 27251,NJBF000054799,132 EXTON RD,Somers Point,NJ,39.32433936,-74.61298374,RES1,3001,,16,NE,1957,1957,3101,1,1,1868.883978,1868.883978,3507,NO,18.38,25.68,1,2.35,6106,111.249904,121.395666,131.107272,137.323057,I,Above,Hip,0,5701,,22.02743095,0,0,,,,1,1,,0.03,nav,1,1957,1,, 27252,NJBF000054824,169 JORDAN RD,Somers Point,NJ,39.32440773,-74.60310592,RES1,3001,,16,NE,1965,1965,3101,1,1,1510.814087,1510.814087,3507,NO,18.95,25.81,1,1.68,6110,111.4194,121.560912,131.263473,137.525866,I,Above,Hip,0,5701,,22.38304453,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27253,NJBF000052562,95 MAYS LANDING RD,Somers Point,NJ,39.31558089,-74.62790196,COM3,3001,510,18,ME,1973,1973,3401,2,1,1359.235009,1359.235009,3507,NO,31.73,41.19,1,0.44,6102,111.17512,121.261226,130.969253,137.141757,I,Above,Flat,0,NaN,,36.45838686,0,0,,,,1,1,,0.03,nav,1,1973,2,, 27254,NJBF000056893,3 SCHOOLHOUSE DR,Somers Point,NJ,39.32947251,-74.59939917,RES1,3001,,16,NE,1971,1971,3101,2,1,1309.927233,1309.927233,3507,NO,39.91,45.6,1,2.17,6112,111.393644,121.562132,131.266744,137.529778,I,Above,Gable,0,5701,,42.75718812,0,0,,,,1,1,,0.35,nav,1,1971,2,, 27255,NJBF000054256,196 BALA DR,Somers Point,NJ,39.32287811,-74.60940138,RES1,3001,,16,NE,1964,1964,3101,1,1,2280.522044,2280.522044,3507,NO,12.07,20.92,1,0.71,6110,111.337679,121.473882,131.179954,137.417954,I,Above,Gable,0,5701,,16.49161885,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27256,NJBF000052302,23 GIBBS AVE,Somers Point,NJ,39.3138641,-74.59455031,RES1,3001,,16,NE,1930,1930,3101,1,1,1181.672334,1181.672334,3505,NO,16.82,24.91,3,-2.04,6112,111.766216,121.835847,131.517988,137.850612,I,Above,Hip,0,5701,,20.86509966,0,0,,,,1,1,,0.35,nav,1,1930,1,, 27257,NJBF000052286,27 GIBBS AVE,Somers Point,NJ,39.31380618,-74.59443713,RES1,3001,,43,NE,1945,1945,3101,2,2,1125.362096,1125.362096,3505,NO,25.81,32.43,3,4.67,6112,111.769332,121.838475,131.520469,137.853733,I,Above,Gable,0,5701,,29.12102918,0,0,,,,1,1,,0.35,nav,1,1945,2,, 27258,NJBF000055301,137 E OCEAN AVE,Somers Point,NJ,39.32571375,-74.58263779,RES1,3001,,16,NE,1967,1967,3102,2,1,1543.698349,1543.698349,3505,NO,38.11,46.51,3,7.92,6110,111.781118,121.893355,131.582438,137.929271,I,Above,Gable,0,5701,,42.31198881,0,0,,,,1,1,,0.35,nav,1,1967,2,, 27259,NJBF000052326,28 E NEW YORK AVE,Somers Point,NJ,39.31397888,-74.59365768,RES1,3001,,16,NE,1946,1946,3102,1,1,1397.02707,1397.02707,3505,NO,19.37,29.9,3,8.16,6106,111.780504,121.849445,131.531293,137.867268,I,Above,Gable,0,5701,,24.63211964,0,0,,,,1,1,,0.03,nav,1,1946,1,, 27260,NJBF000051538,33 BROADWAY,Somers Point,NJ,39.30813803,-74.6051424,RES1,3001,,18,NE,1957,1957,3102,2,1,2690.86551,2690.86551,3507,NO,29.81,40.35,1,0.98,6112,111.681495,121.731063,131.408715,137.713979,I,Above,Hip,0,5701,,35.07856698,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27261,NJBF000056359,11 RUTGERS RD,Somers Point,NJ,39.32830378,-74.60685611,RES1,3001,,16,NE,1968,1968,3101,2,1,1918.44482,1918.44482,3507,NO,27.89,40.61,1,1.59,6106,111.281106,121.449887,131.160538,137.392485,I,Above,Hip,0,5701,,34.25235713,0,0,,,,1,1,,0.03,nav,1,1968,2,, 27262,NJBF000054470,15 PRINCETON RD,Somers Point,NJ,39.32347904,-74.60670803,RES1,3001,,16,NE,1961,1961,3101,1,1,1374.341412,1374.341412,3507,NO,20.08,28.95,1,1.93,6110,111.373051,121.511656,131.216167,137.464874,I,Above,Gable,0,5701,,24.51561207,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27263,NJBF000054318,207 BAY AVE,Somers Point,NJ,39.32306404,-74.58435403,RES1,3001,,16,NE,1973,1973,3102,2,1,1122.594888,1122.594888,3505,NO,27.63,42.61,3,-2.41,6106,111.794098,121.895884,131.583659,137.931229,I,Above,Flat,0,5701,,35.11956235,0,0,,,,1,1,,0.03,nav,1,1973,2,, 27264,NJBF000054331,2 HADDON RD,Somers Point,NJ,39.32309892,-74.60896215,RES1,3001,,16,NE,1961,1961,3101,1,1,1547.21773,1547.21773,3507,NO,15.41,27.34,1,-0.04,6110,111.341108,121.478498,131.184495,137.423839,I,Above,Hip,0,5701,,21.37114518,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27265,NJBF000054329,107 E DAWES AVE,Somers Point,NJ,39.323096,-74.585505,RES1,3001,,16,NE,1955,1955,3102,1,2,1862.477165,1862.477165,3505,NO,18.92,29.18,3,3.5,6106,111.771196,121.875839,131.564292,137.907097,I,Above,Gable,0,5701,,24.05041234,0,0,,,,1,1,,0.03,nav,1,1955,1,, 27266,NJBF000054167,118 BALA DR,Somers Point,NJ,39.32259591,-74.61500738,RES1,3001,,16,NE,1966,1966,3101,1,1,1053.059972,1053.059972,3507,NO,16.96,23.82,1,1.63,6110,111.248753,121.383668,131.094499,137.306405,I,Above,Gable,0,5701,,20.39142536,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27267,NJBF000053705,1 WISTERIA WALK,Somers Point,NJ,39.32096463,-74.61372601,RES1,3001,,16,NE,1962,1962,3101,1,1,2392.264978,2392.264978,3507,NO,14.89,28.77,1,2.06,6112,111.30024,121.425521,131.13247,137.356234,I,Above,Hip,0,5701,,21.83105457,0,0,,,,1,1,,0.35,nav,1,1962,1,, 27268,NJBF000056847,30 CHAPMAN BLVD,Somers Point,NJ,39.32938926,-74.60168803,RES1,3001,,16,NE,1969,1969,3101,1,1,1700.024724,1700.024724,3507,NO,16.28,28.68,1,1.61,6112,111.35332,121.524256,131.230936,137.483671,I,Above,Gable,0,5701,,22.48202633,0,0,,,,1,1,,0.35,nav,1,1969,1,, 27269,NJBF000054152,121 BALA DR,Somers Point,NJ,39.32255699,-74.61425266,RES1,3001,,16,NE,1955,1955,3101,2,1,1347.306133,1347.306133,3507,NO,28.07,41.8,1,-0.3,6110,111.261935,121.396731,131.106787,137.322515,I,Above,Gable,0,5701,,34.93556799,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27270,NJBF000055483,109 N AMBLER RD,Somers Point,NJ,39.32621709,-74.60653349,RES1,3001,,16,NE,1967,1967,3101,2,1,1529.269821,1529.269821,3507,NO,36.96,51.33,1,2.53,6106,111.325449,121.480865,131.188758,137.429208,I,Above,Gable,0,5701,,44.14496523,0,0,,,,1,1,,0.03,nav,1,1967,2,, 27271,NJBF000053231,10 FRESH SPRING COVE,Somers Point,NJ,39.31919872,-74.61616139,RES1,3001,,16,NE,1968,1968,3101,1,1,2749.130844,2749.130844,3507,NO,16.35,26.05,1,1.51,6106,111.29287,121.40737,131.113348,137.331397,I,Above,Hip,0,5701,,21.20006306,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27272,NJBF000057309,4 CRESTMONT DR,Somers Point,NJ,39.33034317,-74.60183601,RES1,3001,,43,NE,1966,1966,3101,2,2,1188.095358,1188.095358,3507,NO,37.46,51.44,1,0.95,6112,111.333102,121.510243,131.217938,137.46686,I,Above,Gable,0,5701,,44.44907795,0,1.2,,,,1,1,,0.35,nav,1,1966,2,, 27273,NJBF000058697,68 DEFEO LN,Somers Point,NJ,39.33277412,-74.60549783,RES1,3001,,16,NE,1984,1984,3101,2,1,1337.169516,1337.169516,3507,NO,25.65,31.05,1,1.91,6110,111.22222,121.418864,131.132438,137.355908,I,Above,Gable,0,5701,,28.35038324,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27274,NJBF000058623,21 WILSON AVE,Somers Point,NJ,39.3326305,-74.605316,RES1,3001,,16,NE,1984,1984,3101,1,1,1337.939826,1337.939826,3507,NO,20.12,30.53,1,2.63,6112,111.228122,121.423667,131.136924,137.361751,I,Above,Gable,0,5701,,25.32364691,0,0,,,,1,1,,0.35,nav,1,1984,1,, 27275,NJBF000057963,37 DEFEO LN,Somers Point,NJ,39.33146017,-74.60014965,RES1,3001,,16,NE,1987,1987,3101,1,1,1498.19649,1498.19649,3507,NO,16.95,25.54,1,0.42,6106,111.343485,121.525505,131.232492,137.485613,I,Above,Gable,0,5701,,21.24542973,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27276,NJBF000058627,28 WILSON AVE,Somers Point,NJ,39.33263892,-74.6060827,RES1,3001,,16,NE,1983,1983,3101,1,1,1826.127611,1826.127611,3507,NO,17.08,30.16,1,-0.05,6110,111.214299,121.410553,131.124655,137.345756,I,Above,Gable,0,5701,,23.61927486,0,0,,,,1,1,,0.35,nav,1,1983,1,, 27277,NJBF000058565,19 WILSON AVE,Somers Point,NJ,39.3325265,-74.605102,RES1,3001,,16,NE,1983,1983,3101,2,1,1398.099849,1398.099849,3507,NO,32.14,40.72,1,0.26,6112,111.233877,121.428547,131.141485,137.36769,I,Above,Gable,0,5701,,36.42971682,0,0,,,,1,1,,0.35,nav,1,1983,2,, 27278,NJBF000051448,,Somers Point,NJ,39.30666973,-74.60922684,RES1,3001,,NaN,NE,1969,0,3102,2,1,3538.414628,3538.414628,3507,NO,28.88,43.28,1,0.51,6106,111.638234,121.682335,131.358975,137.651138,I,Above,Hip,0,5701,,36.08084549,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27279,NJBF000051948,138 DECATUR AVE,Somers Point,NJ,39.31194785,-74.59054438,RES1,3001,,18,NE,1930,1930,3102,2,1,1283.299153,1283.299153,3505,NO,28.56,41.05,3,5.26,6106,111.874544,121.927287,131.604614,137.959117,I,Above,Flat,0,5701,,34.8023734,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 27280,NJBF000053855,301 BAY AVE,Somers Point,NJ,39.32153196,-74.58567388,RES1,3001,,18,NE,1959,1959,3102,1,1,2672.182315,2672.182315,3505,NO,14.58,20.45,3,-1.19,6110,111.795627,121.891911,131.578921,137.925572,I,Above,Hip,0,5701,,17.51764762,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27281,NJBF000058552,26 WILSON AVE,Somers Point,NJ,39.33250663,-74.6058352,RES1,3001,,16,NE,1983,1983,3101,1,1,1812.175958,1812.175958,3507,NO,12,25.52,1,-0.5,6110,111.221161,121.416345,131.130063,137.352805,I,Above,Gable,0,5701,,18.76141788,0,0,,,,1,1,,0.35,nav,1,1983,1,, 27282,NJBF000055148,146 BALA DR,Somers Point,NJ,39.32527618,-74.61448466,RES1,3001,,16,NE,1959,1959,3101,1,1,716.5403815,716.5403815,3507,NO,18.5,31.97,1,0.19,6110,111.207455,121.358883,131.073389,137.278567,I,Above,Gable,0,5701,,25.23709864,0,1.1,,,,1,1,,0.35,nav,1,1959,1,, 27283,NJBF000056792,23 CHAPMAN BLVD,Somers Point,NJ,39.32926986,-74.60030561,RES1,3001,,16,NE,1967,1967,3101,2,1,1694.76152,1694.76152,3507,NO,30.72,38.91,1,0.82,6112,111.380704,121.549162,131.25443,137.513951,I,Above,Gable,0,5701,,34.81344894,0,0,,,,1,1,,0.35,nav,1,1967,2,, 27284,NJBF000056940,12 CRESTVIEW DR,Somers Point,NJ,39.32959372,-74.59842127,RES1,3001,,16,NE,1967,1967,3101,1,1,1688.677705,1688.677705,3507,NO,15.32,23.42,1,-0.85,6112,111.409498,121.577311,131.281136,137.548254,I,Above,Gable,0,5701,,19.37200815,0,0,,,,1,1,,0.35,nav,1,1967,1,, 27285,NJBF000056611,,Somers Point,NJ,39.32887055,-74.6063064,RES3D,3001,,NaN,E,1969,0,3303,3,1,6801.367518,6801.367518,3507,NO,39.57,44.77,1,1.14,6106,111.280257,121.452281,131.162996,137.395674,I,Above,Flat,0,5701,,42.17109175,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27286,NJBF000056803,,Somers Point,NJ,39.32928781,-74.6058909,RES3D,3001,,NaN,E,1969,0,3303,3,1,7955.636977,7955.636977,3507,NO,47.01,53.8,1,0.88,6110,111.279851,121.454237,131.164969,137.398234,I,Above,Hip,0,5701,,50.40465091,0,0,,,,1,1,,0.35,nav,1,1969,3,, 27287,NJBF000057059,,Somers Point,NJ,39.3298324,-74.60580482,RES3D,3001,,NaN,E,1969,0,3303,4,1,7966.128144,7966.128144,3507,NO,54.28,60.85,1,0.1,6110,111.271292,121.449097,131.160298,137.392156,I,Above,Gable,0,5701,,57.56467772,0,0,,,,1,1,,0.35,nav,1,1969,4,, 27288,NJBF000059981,416 W OCEAN HEIGHTS AVE,Somers Point,NJ,39.33518746,-74.59549167,RES1,3001,,15,NE,1900,1900,3102,2,1,1090.729111,1090.729111,3505,NO,23.13,36.16,3,2.12,6112,111.363323,121.560768,131.265653,137.52812,I,Above,Gable,0,5701,,29.64302225,0,0,,,,1,1,,0.35,nav,1,1900,2,, 27289,NJBF000056082,1020 W GROVELAND AVE,Somers Point,NJ,39.32767906,-74.60498245,RES1,3001,,16,NE,1968,1968,3101,1,1,1929.120377,1929.120377,3507,NO,13.12,24.41,1,2.46,6106,111.325725,121.489184,131.197287,137.440215,I,Above,Flat,0,5701,,18.76293173,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27290,NJBF000055737,7 STANFORD RD,Somers Point,NJ,39.32684528,-74.60748021,RES1,3001,,16,NE,1969,1969,3101,2,1,1516.225059,1516.225059,3507,NO,26.52,37.71,1,0.32,6106,111.29727,121.45719,131.166764,137.400617,I,Above,Gable,0,5701,,32.11728793,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27291,NJBF000055035,176 JORDAN RD,Somers Point,NJ,39.3249519,-74.60316646,RES1,3001,,16,NE,1964,1964,3101,1,1,1650.663124,1650.663124,3507,NO,14.56,25.45,1,2.02,6106,111.40832,121.553222,131.256497,137.516846,I,Above,Gable,0,5701,,20.00521665,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27292,NJBF000057011,3 EDGEWOOD DR,Somers Point,NJ,39.32972928,-74.60049881,RES1,3001,,16,NE,1976,1976,3101,1,1,1300.139377,1300.139377,3507,NO,19,32.64,1,1.84,6110,111.368764,121.540351,131.246215,137.503355,I,Above,Hip,0,5701,,25.82285018,0,0,,,,1,1,,0.35,nav,1,1976,1,, 27293,NJBF000056917,4 SCHOOLHOUSE DR,Somers Point,NJ,39.32953099,-74.60024767,RES1,3001,,16,NE,1967,1967,3101,2,1,884.1044904,884.1044904,3507,NO,34.68,41.63,1,-0.55,6112,111.376988,121.547002,131.252452,137.511394,I,Above,Hip,0,5701,,38.15569245,0,0,,,,1,1,,0.35,nav,1,1967,2,, 27294,NJBF000052565,105 HARBOUR COVE,Somers Point,NJ,39.31559703,-74.58935985,RES3C,3001,,37,ME,1984,1984,3301,1,1,6602.865505,6602.865505,3507,NO,11.42,25.14,1,0.01,6106,111.83128,121.90199,131.58394,137.932756,I,Above,Flat,0,NaN,,18.28288165,0,0,,,,1,1,,0.03,nav,1,1984,1,, 27295,NJBF000056871,10 CRESTVIEW DR,Somers Point,NJ,39.32943866,-74.59861554,RES1,3001,,16,NE,1966,1966,3101,2,1,1299.22625,1299.22625,3507,NO,30.37,42.9,1,-0.06,6112,111.408714,121.575858,131.279725,137.546452,I,Above,Gable,0,5701,,36.63277957,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27296,NJBF000052104,43 HIGBEE AVE,Somers Point,NJ,39.31292181,-74.59441651,RES1,3001,,16,NE,1940,1940,3101,1,1,1684.90025,1684.90025,3505,NO,15.89,21.06,3,0.42,6112,111.785648,121.849854,131.530491,137.866448,I,Above,Gable,0,5701,,18.4771957,0,0,,,,1,1,,0.35,nav,1,1940,1,, 27297,NJBF000052121,39 HIGBEE AVE,Somers Point,NJ,39.31298678,-74.59453972,RES1,3001,,16,NE,1920,1920,3101,1,1,1239.493352,1239.493352,3505,NO,22.23,32.88,3,8.42,6112,111.782226,121.846971,131.52777,137.863028,I,Above,Gable,0,5701,,27.55686364,0,1.1,,,,1,1,,0.35,nav,1,1920,1,, 27298,NJBF000055094,501 NEW RD,Somers Point,NJ,39.32511904,-74.60057958,COM1,3001,,NaN,ME,1973,1973,3401,1,1,19920.21563,19920.21563,3507,NO,16.59,31.07,1,2.07,6112,111.451743,121.594912,131.296156,137.567807,I,Above,Flat,0,NaN,,23.83071467,0,0,,,,1,1,,1,nav,1,1973,1,, 27299,NJBF000054568,4 YALE BLVD,Somers Point,NJ,39.32375166,-74.61015534,RES1,3001,,16,NE,1970,1970,3101,1,1,1548.754044,1548.754044,3507,NO,13.36,25.76,1,1.54,6110,111.308592,121.45037,131.158405,137.389867,I,Above,Gable,0,5701,,19.56317717,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27300,NJBF000055209,182 JORDAN RD,Somers Point,NJ,39.32545261,-74.60267457,RES1,3001,,16,NE,1965,1965,3101,1,1,1226.237976,1226.237976,3507,NO,15.31,29.8,1,1.89,6110,111.407879,121.555382,131.25882,137.519805,I,Above,Gable,0,5701,,22.55359315,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27301,NJBF000055441,116 PRINCETON RD,Somers Point,NJ,39.32611145,-74.60461695,RES1,3001,,16,NE,1966,1966,3101,2,1,1979.750268,1979.750268,3507,NO,30.53,41.46,1,0.61,6106,111.36116,121.514507,131.220473,137.470289,I,Above,Hip,0,5701,,35.99552512,0,0,,,,1,1,,0.03,nav,1,1966,2,, 27302,NJBF000051439,,Somers Point,NJ,39.30654654,-74.61003589,RES3D,3001,,NaN,ME,1969,0,3301,2,1,6890.339489,6890.339489,3507,NO,23.55,31.62,1,2.24,6106,111.626793,121.670588,131.347351,137.636351,I,Above,Hip,0,NaN,,27.58560809,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27303,NJBF000054664,164 JORDAN RD,Somers Point,NJ,39.32401509,-74.60414281,RES1,3001,,16,NE,1964,1964,3101,1,1,2214.133609,2214.133609,3507,NO,14.78,26.34,1,1.5,6112,111.40821,121.548245,131.251211,137.510099,I,Above,Gable,0,5701,,20.56271246,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27304,NJBF000053188,2 FRESH SPRING COVE,Somers Point,NJ,39.31902305,-74.61720323,RES1,3001,,16,NE,1972,1972,3101,1,1,2441.90364,2441.90364,3507,NO,18.21,23.92,1,0.84,6106,111.279169,121.392342,131.098886,137.312467,I,Above,Gable,0,5701,,21.06546809,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27305,NJBF000054480,125 COLWICK DR,Somers Point,NJ,39.32349896,-74.61402425,RES1,3001,,16,NE,1957,1957,3101,1,1,1378.344139,1378.344139,3507,NO,20.81,32.41,1,1.96,6110,111.24821,121.388758,131.100093,137.313689,I,Above,Hip,0,5701,,26.60839371,0,0,,,,1,1,,0.35,nav,1,1957,1,, 27306,NJBF000054805,1109 MASSACHUSETTS AVE,Somers Point,NJ,39.32436299,-74.60542724,RES1,3001,,16,NE,1963,1963,3101,1,1,2301.332183,2301.332183,3507,NO,20.04,27,1,1.21,6112,111.379136,121.52231,131.226853,137.478636,I,Above,Gable,0,5701,,23.51770832,0,0,,,,1,1,,0.35,nav,1,1963,1,, 27307,NJBF000054373,18 OSBORNE RD,Somers Point,NJ,39.3232045,-74.6062845,RES1,3001,,16,NE,1961,1961,3101,1,1,1548.711171,1548.711171,3507,NO,11.62,22.68,1,-0.91,6110,111.385491,121.522162,131.225926,137.477517,I,Above,Gable,0,5701,,17.14675654,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27308,NJBF000054541,119 E MEYRAN AVE,Somers Point,NJ,39.32367442,-74.58473017,RES1,3001,,16,NE,1953,1953,3102,1,1,1505.526465,1505.526465,3505,NO,26.18,35.67,3,6.81,6112,111.776023,121.882094,131.57064,137.91492,I,Above,Gable,0,5701,,30.92629169,0,0,,,,1,1,,0.35,nav,1,1953,1,, 27309,NJBF000056904,8 COOPER DR,Somers Point,NJ,39.3295045,-74.60348417,RES1,3001,,43,NE,1970,1970,3101,1,2,2270.470461,2270.470461,3507,NO,14.7,28.78,1,2.42,6112,111.318759,121.492396,131.200929,137.444884,I,Above,Gable,0,5701,,21.74182793,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27310,NJBF000052424,3 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,17,NE,2007,2008,3102,2,1,1714.587177,1714.587177,3505,NO,35.4,46.41,3,-1.63,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,40.90689497,0,0,,,,1,1,,0.03,nav,1,2007,2,, 27311,NJBF000055478,67 BUCKNELL RD,Somers Point,NJ,39.32620084,-74.61236772,RES1,3001,,16,NE,1979,1979,3101,2,1,1601.242915,1601.242915,3507,NO,31.39,42.32,1,-0.29,6106,111.225544,121.382881,131.09654,137.308938,I,Above,Gable,0,5701,,36.85306815,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27312,NJBF000054720,166 JORDAN RD,Somers Point,NJ,39.3241555,-74.60398836,RES1,3001,,16,NE,1964,1964,3101,1,1,1318.018262,1318.018262,3507,NO,15.83,23.3,1,-0.34,6112,111.408358,121.549123,131.252134,137.511279,I,Above,Gable,0,5701,,19.56625459,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27313,NJBF000051398,,Somers Point,NJ,39.30613757,-74.61076261,RES3D,3001,,NaN,ME,1969,0,3301,2,1,7700.626005,7700.626005,3507,NO,34.48,47.88,1,-0.85,6102,111.621985,121.663901,131.340129,137.62725,I,Above,Hip,0,NaN,,41.17832181,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27314,NJBF000054086,116 BALA DR,Somers Point,NJ,39.32235,-74.6146545,RES1,3001,,16,NE,1966,1966,3101,1,1,1083.241474,1083.241474,3507,NO,18.51,32.57,1,0.86,6110,111.259134,121.392625,131.102721,137.317201,I,Above,Gable,0,5701,,25.53808221,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27315,NJBF000055355,105 N AMBLER RD,Somers Point,NJ,39.32587228,-74.60684226,RES1,3001,,16,NE,1967,1967,3101,2,1,2593.821138,2593.821138,3507,NO,35.13,49.1,1,0.51,6106,111.326435,121.47989,131.187652,137.427787,I,Above,Hip,0,5701,,42.1147283,0,0,,,,1,1,,0.03,nav,1,1967,2,, 27316,NJBF000055213,10 CORNELL RD,Somers Point,NJ,39.32545571,-74.60923169,RES1,3001,,16,NE,1970,1970,3101,1,1,1737.092701,1737.092701,3507,NO,15.94,26.45,1,0.03,6106,111.292746,121.444771,131.15429,137.384427,I,Above,Gable,0,5701,,21.19653784,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27317,NJBF000055155,114 OSBORNE RD,Somers Point,NJ,39.32529309,-74.60414413,RES1,3001,,16,NE,1964,1964,3101,1,1,1842.078266,1842.078266,3507,NO,17.37,26.23,1,1.15,6106,111.384638,121.532521,131.237077,137.491783,I,Above,Gable,0,5701,,21.80216221,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27318,NJBF000055660,10 STANFORD RD,Somers Point,NJ,39.32667818,-74.60796536,RES1,3001,,16,NE,1971,1971,3101,1,1,2089.913264,2089.913264,3507,NO,18.49,31.52,1,0.35,6110,111.291936,121.451062,131.160909,137.393004,I,Above,Gable,0,5701,,25.00164824,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27319,NJBF000054305,119 COLWICK DR,Somers Point,NJ,39.32303022,-74.61338247,RES1,3001,,16,NE,1957,1957,3101,1,1,1236.233398,1236.233398,3507,NO,16.97,30.49,1,1.4,6112,111.267613,121.405348,131.115334,137.333678,I,Above,Gable,0,5701,,23.73020661,0,0,,,,1,1,,0.35,nav,1,1957,1,, 27320,NJBF000055966,5 DARTMOUTH RD,Somers Point,NJ,39.32739739,-74.60662906,RES1,3001,,16,NE,1968,1968,3101,1,1,1675.899132,1675.899132,3507,NO,15.02,27.84,1,0.09,6106,111.301906,121.464794,131.174185,137.410248,I,Above,Gable,0,5701,,21.43097104,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27321,NJBF000055017,145 BALA DR,Somers Point,NJ,39.32490604,-74.61425507,RES1,3001,,16,NE,1957,1957,3101,2,1,1556.142223,1556.142223,3507,NO,34.53,47.33,1,-0.81,6106,111.218168,121.367337,131.081057,137.288653,I,Above,Hip,0,5701,,40.92768922,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27322,NJBF000055841,122 HADDON RD,Somers Point,NJ,39.32709712,-74.60495451,RES1,3001,,16,NE,1966,1966,3101,1,1,2132.860019,2132.860019,3507,NO,19.47,30.67,1,0.18,6110,111.33696,121.49674,131.204165,137.449145,I,Above,Gable,0,5701,,25.07068568,0,1.1,,,,1,1,,0.35,nav,1,1966,1,, 27323,NJBF000051845,35 DELAWARE & ANCHORAGE,Somers Point,NJ,39.31117336,-74.59556335,RES1,3001,,16,NE,1920,1920,3102,2,2,2032.346213,2032.346213,3505,NO,36.84,45.56,3,-1.31,6112,111.796327,121.852508,131.530933,137.86733,I,Above,Hip,0,5701,,41.1998448,0,0,,,,1,1,,0.35,nav,1,1920,2,, 27324,NJBF000057098,33 CHAPMAN BLVD,Somers Point,NJ,39.329921,-74.601678,RES1,3001,,43,NE,1970,1970,3101,1,2,2366.939098,2366.939098,3507,NO,12.34,19.65,1,-0.56,6110,111.343729,121.518009,131.225171,137.476212,I,Above,Flat,0,5701,,15.99727329,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27325,NJBF000054996,10 COLGATE RD,Somers Point,NJ,39.32483346,-74.60995395,RES1,3001,,16,NE,1971,1971,3101,1,1,2435.100761,2435.100761,3507,NO,18.41,25.77,1,-0.17,6106,111.291948,121.440338,131.149709,137.378483,I,Above,Gable,0,5701,,22.08717667,0,0,,,,1,1,,0.03,nav,1,1971,1,, 27326,NJBF000058331,20 WILSON AVE,Somers Point,NJ,39.33210264,-74.605142,RES1,3001,,16,NE,1983,1983,3101,1,1,2669.519664,2669.519664,3507,NO,11.57,24.91,1,-0.97,6110,111.241013,121.432954,131.145575,137.373009,I,Above,Flat,0,5701,,18.24015495,0,0,,,,1,1,,0.35,nav,1,1983,1,, 27327,NJBF000058899,19 WHITMAN DR,Somers Point,NJ,39.33314612,-74.60314151,RES1,3001,,16,NE,1985,1985,3101,2,1,1538.811355,1538.811355,3507,NO,23.88,35.58,1,-0.44,6112,111.257782,121.454452,131.165782,137.399291,I,Above,Gable,0,5701,,29.72729945,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 27328,NJBF000057758,11 WAYNE DR,Somers Point,NJ,39.3311135,-74.601656,RES1,3001,,16,NE,1980,1980,3101,2,1,1365.473819,1365.473819,3507,NO,38.68,49.04,1,0.93,6112,111.322217,121.504036,131.21222,137.459454,I,Above,Gable,0,5701,,43.86196422,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 27329,NJBF000052374,10 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1954,3102,1,1,1013.197268,1013.197268,3505,NO,21.02,29.82,3,3.64,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,25.42268723,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27330,NJBF000052372,20 E NEW YORK AVE,Somers Point,NJ,39.314234,-74.594274,RES1,3001,,16,NE,1940,1940,3101,1,1,1446.273896,1446.273896,3505,NO,8.24,16.05,3,-2.73,6112,111.764595,121.835883,131.518432,137.851105,I,Above,Hip,0,5701,,12.14581466,0,1.2,,,,1,1,,0.35,nav,1,1940,1,, 27331,NJBF000054572,184 BALA DR,Somers Point,NJ,39.32376076,-74.6107236,RES1,3001,,16,NE,1960,1960,3101,1,1,1248.069072,1248.069072,3507,NO,14.6,24.85,1,0.08,6110,111.298745,121.440717,131.149298,137.378001,I,Above,Gable,0,5701,,19.72685906,0,0,,,,1,1,,0.35,nav,1,1960,1,, 27332,NJBF000052315,16 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,15,NE,2007,1972,3102,1,1,1041.642586,1041.642586,3505,NO,23.56,35,3,7.82,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,29.28075358,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27333,NJBF000054590,2 FARRAGUT RD,Somers Point,NJ,39.32381641,-74.61485383,RES1,3001,,16,NE,1957,1957,3101,2,1,1374.017053,1374.017053,3507,NO,35.13,45.26,1,2.22,6110,111.22857,121.370932,131.083574,137.292,I,Above,Gable,0,5701,,40.19559503,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27334,NJBF000054601,133 BALA DR,Somers Point,NJ,39.32385261,-74.61508693,RES1,3001,,16,NE,1957,1957,3101,2,1,1269.388481,1269.388481,3507,NO,30.8,37.15,1,0.4,6106,111.224038,121.366579,131.079509,137.286659,I,Above,Gable,0,5701,,33.97529087,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27335,NJBF000054621,137 DEVON RD,Somers Point,NJ,39.32388963,-74.61203647,RES1,3001,,16,NE,1958,1958,3101,2,1,2088.288948,2088.288948,3507,NO,31.18,41.5,1,-0.89,6110,111.274166,121.417129,131.127146,137.34908,I,Above,Gable,0,5701,,36.33957534,0,0,,,,1,1,,0.35,nav,1,1958,2,, 27336,NJBF000054338,192 BALA DR,Somers Point,NJ,39.32310603,-74.6098178,RES1,3001,,16,NE,1967,1967,3101,1,1,2059.72688,2059.72688,3507,NO,17.82,26.27,1,0.55,6110,111.326325,121.464053,131.170837,137.406087,I,Above,Gable,0,5701,,22.04253801,0,0,,,,1,1,,0.35,nav,1,1967,1,, 27337,NJBF000054198,123 BALA DR,Somers Point,NJ,39.32269716,-74.61446393,RES1,3001,,16,NE,1955,1955,3101,2,1,1327.114457,1327.114457,3507,NO,22.4,35.24,1,1.4,6110,111.255839,121.391456,131.101936,137.316151,I,Above,Gable,0,5701,,28.81979168,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27338,NJBF000054230,106 E DAWES AVE,Somers Point,NJ,39.32280571,-74.58585958,RES1,3001,,16,NE,1956,1956,3102,1,1,1237.364184,1237.364184,3505,NO,17.29,31.23,3,2.77,6110,111.769463,121.873289,131.561667,137.903869,I,Above,Gable,0,5701,,24.26208027,0,0,,,,1,1,,0.35,nav,1,1956,1,, 27339,NJBF000054076,16 GULPH MILL RD,Somers Point,NJ,39.32230654,-74.61655488,RES1,3001,,16,NE,1967,1967,3101,1,1,1477.016711,1477.016711,3507,NO,16.2,25.06,1,1.14,6110,111.228759,121.361524,131.073345,137.278641,I,Above,Gable,0,5701,,20.62953898,0,0,,,,1,1,,0.35,nav,1,1967,1,, 27340,NJBF000053765,4 GULPH MILL RD,Somers Point,NJ,39.3211809,-74.61598517,RES1,3001,,16,NE,1967,1967,3101,1,1,2145.100727,2145.100727,3507,NO,18.53,32.8,1,2.61,6106,111.258992,121.385202,131.094558,137.306583,I,Above,Hip,0,5701,,25.66475427,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27341,NJBF000053983,125 E PIERSON AVE,Somers Point,NJ,39.32199824,-74.58576569,RES1,3001,,16,NE,1920,1920,3102,1,1,1625.066928,1625.066928,3505,NO,19.35,26.78,3,6.37,6106,111.785594,121.884686,131.572217,137.917147,I,Above,Gable,0,5701,,23.06319075,0,0,,,,1,1,,0.03,nav,1,1920,1,, 27342,NJBF000051423,90 BROADWAY-BLDG A,Somers Point,NJ,39.3064056,-74.6081557,RES1,3001,,43,NE,1949,1949,3102,2,4,3163.080146,3163.080146,3507,NO,31.92,40,1,-0.61,6106,111.661222,121.703403,131.378988,137.676685,I,Above,Flat,0,5701,,35.96414475,0,0,,,,1,1,,0.03,nav,1,1949,2,, 27343,NJBF000053744,8 MALVERN RD,Somers Point,NJ,39.32111877,-74.61669992,RES1,3001,,16,NE,1966,1966,3101,1,1,2614.708876,2614.708876,3507,NO,14.56,20.06,1,2.8,6106,111.248476,121.374105,131.084007,137.292738,I,Above,Gable,0,5701,,17.30670508,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27344,NJBF000053647,3 WISTERIA WALK,Somers Point,NJ,39.320751,-74.614055,RES1,3001,,16,NE,1961,1961,3101,1,1,2364.772002,2364.772002,3507,NO,13.97,28.66,1,0.08,6110,111.298751,121.422736,131.129617,137.352524,I,Above,Gable,0,5701,,21.3147674,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27345,NJBF000053106,15 LAUREL DR SOUTH,Somers Point,NJ,39.318719,-74.61436254,RES1,3001,,16,NE,1951,1951,3101,2,1,1763.681167,1763.681167,3507,NO,30.52,41.5,1,0.95,6112,111.331295,121.443293,131.146886,137.375281,I,Above,Hip,0,5701,,36.00938793,0,0,,,,1,1,,0.35,nav,1,1951,2,, 27346,NJBF000051480,24 BROADWAY,Somers Point,NJ,39.30749871,-74.60225452,RES1,3001,,17,NE,1940,1940,3102,2,1,2924.92318,2924.92318,3507,NO,38.77,51.54,1,1.35,6102,111.743387,121.787174,131.462231,137.781801,I,Above,Gable,0,5701,,45.15296001,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 27347,NJBF000053606,5 WISTERIA WALK,Somers Point,NJ,39.32058221,-74.61427042,RES1,3001,,16,NE,1961,1961,3101,1,1,2466.049117,2466.049117,3507,NO,19.81,33.97,1,1.84,6106,111.298325,121.421288,131.12807,137.350518,I,Above,Gable,0,5701,,26.88976708,0,0,,,,1,1,,0.03,nav,1,1961,1,, 27348,NJBF000055991,21 BUCKNELL RD,Somers Point,NJ,39.32746878,-74.60992595,RES1,3001,,16,NE,1979,1979,3101,1,1,2773.238735,2773.238735,3507,NO,17.65,27.19,1,0.55,6106,111.243394,121.408313,131.121115,137.341089,I,Above,Gable,0,5701,,22.42185352,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 27349,NJBF000051711,111 HOLLY HILLS DR,Somers Point,NJ,39.31014085,-74.60199769,RES1,3001,,16,NE,2000,2000,3102,2,1,1509.177956,1509.177956,3505,NO,44.67,55.4,3,7.42,6110,111.699966,121.757848,131.437698,137.750217,I,Above,Flat,0,5701,,50.0325701,0,0,,,,1,1,,0.35,nav,1,2000,2,, 27350,NJBF000051939,50 MAYS LANDING RD,Somers Point,NJ,39.31189281,-74.61712467,RES3C,3001,20,NaN,ME,1973,1973,3301,2,1,4762.907913,4762.907913,3507,NO,38.46,46.59,1,2.53,6112,111.411793,121.485026,131.177165,137.415852,I,Above,Gable,0,NaN,,42.52739446,0,0,,,,1,1,,0.35,nav,1,1973,2,, 27351,NJBF000052046,50 MAYS LANDING RD,Somers Point,NJ,39.3126426,-74.61694358,RES3D,3001,20,NaN,ME,1973,1973,3301,2,1,6321.170352,6321.170352,3507,NO,25.26,31.73,1,0.22,6112,111.400978,121.478325,131.171943,137.408901,I,Above,Flat,0,5701,,28.49250575,0,0,,,,1,1,,0.35,nav,1,1973,2,, 27352,NJBF000052015,50 MAYS LANDING RD,Somers Point,NJ,39.31243557,-74.61787763,RES3C,3001,20,NaN,ME,1973,1973,3301,1,1,5572.630013,5572.630013,3507,NO,14.5,25.25,1,2.1,6106,111.389641,121.465656,131.159451,137.392687,I,Above,Flat,0,NaN,,19.8734847,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27353,NJBF000051968,50 MAYS LANDING RD,Somers Point,NJ,39.31204076,-74.61817034,RES3C,3001,20,NaN,ME,1973,1973,3301,1,1,4331.02771,4331.02771,3507,NO,13.8,20.18,1,0.16,6106,111.392169,121.465968,131.159102,137.392319,I,Above,Gable,0,NaN,,16.99021039,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27354,NJBF000052018,50 MAYS LANDING RD,Somers Point,NJ,39.3124756,-74.61863686,RES3C,3001,20,NaN,ME,1973,1973,3301,1,1,6177.476558,6177.476558,3507,NO,18.02,23.96,1,-0.43,6106,111.376671,121.452689,131.147073,137.376548,I,Above,Hip,0,NaN,,20.99137062,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27355,NJBF000058015,1 WOODLOT CT,Somers Point,NJ,39.33156283,-74.60062791,RES1,3001,,16,NE,1995,1995,3101,2,1,1586.952373,1586.952373,3507,NO,24.44,30.73,1,1.98,6110,111.332804,121.516138,131.223674,137.474236,I,Above,Hip,0,5701,,27.58318071,0,0,,,,1,1,,0.35,nav,1,1995,2,, 27356,NJBF000055125,149 BALA DR,Somers Point,NJ,39.325212,-74.613913,RES1,3001,,16,NE,1957,1957,3101,2,1,1973.536971,1973.536971,3507,NO,26.06,35.23,1,2.88,6110,111.218142,121.369252,131.083079,137.2913,I,Above,Gable,0,5701,,30.64570137,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27357,NJBF000055696,127 PRINCETON RD,Somers Point,NJ,39.32676034,-74.60331141,RES1,3001,,16,NE,1965,1965,3101,1,1,1804.442086,1804.442086,3507,NO,15.71,26.28,1,2.77,6112,111.37244,121.528655,131.234159,137.487939,I,Above,Gable,0,5701,,20.99322824,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27358,NJBF000056932,,Somers Point,NJ,39.3295695,-74.6061845,RES3D,3001,,NaN,E,1969,0,3303,3,1,8276.776456,8276.776456,3507,NO,47.6,62.38,1,2.24,6106,111.269466,121.445869,131.157192,137.388118,I,Above,Flat,0,5701,,54.99051041,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27359,NJBF000057023,,Somers Point,NJ,39.329755,-74.60671,RES3D,3001,,NaN,E,1969,0,3303,4,1,7938.777259,7938.777259,3507,NO,59.8,71.65,1,1.21,6106,111.256744,121.434712,131.146772,137.374553,I,Above,Flat,0,5701,,65.72417218,0,0,,,,1,1,,0.03,nav,1,1969,4,, 27360,NJBF000058277,7 WOODLOT CT,Somers Point,NJ,39.33202065,-74.60015678,RES1,3001,,16,NE,1990,1990,3101,2,1,1669.454537,1669.454537,3507,NO,40.96,46.36,1,2.12,6106,111.333094,121.518678,131.226107,137.477365,I,Above,Gable,0,5701,,43.65981905,0,0,,,,1,1,,0.03,nav,1,1990,2,, 27361,NJBF000058541,13 WHITMAN DR,Somers Point,NJ,39.33248909,-74.60367487,RES1,3001,,16,NE,1981,1981,3101,1,1,3147.070543,3147.070543,3507,NO,16.02,24.99,1,0.07,6112,111.260243,121.453241,131.164623,137.397781,I,Above,Gable,0,5701,,20.50531378,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 27362,NJBF000058626,56 DEFEO LN,Somers Point,NJ,39.33263499,-74.6035246,RES1,3001,,16,NE,1981,1981,3101,1,1,2647.978869,2647.978869,3507,NO,19.61,28.55,1,2.03,6112,111.260261,121.454044,131.165384,137.39877,I,Above,Gable,0,5701,,24.08125608,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 27363,NJBF000054618,129 EXTON RD,Somers Point,NJ,39.32388274,-74.61274131,RES1,3001,,16,NE,1956,1956,3101,2,1,1445.051228,1445.051228,3507,NO,23.12,34.34,1,0.05,6106,111.262458,121.405414,131.1161,137.334634,I,Above,Gable,0,5701,,28.73122992,0,0,,,,1,1,,0.03,nav,1,1956,2,, 27364,NJBF000054159,110 E DAWES AVE,Somers Point,NJ,39.32257868,-74.58544637,RES1,3001,,16,NE,1965,1965,3102,1,1,2421.164704,2421.164704,3505,NO,11.9,21.06,3,-1.86,6106,111.781487,121.883103,131.571027,137.915574,I,Above,Gable,0,5701,,16.47960292,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27365,NJBF000054629,118 E WILMONT AVE,Somers Point,NJ,39.3239185,-74.5841825,RES1,3001,,16,NE,1973,1973,3102,1,1,1645.221721,1645.221721,3505,NO,20.19,31.21,3,5.99,6106,111.782393,121.888517,131.576972,137.922768,I,Above,Gable,0,5701,,25.69657094,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27366,NJBF000057293,22 CRESTVIEW DR,Somers Point,NJ,39.3303155,-74.5974935,RES1,3001,,16,NE,1966,1966,3101,2,1,1261.027881,1261.027881,3507,NO,30.06,40.94,1,1.53,6112,111.413626,121.584456,131.288041,137.557069,I,Above,Gable,0,5701,,35.50153431,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27367,NJBF000053505,25 LAUREL DR SOUTH,Somers Point,NJ,39.3201948,-74.61532769,RES1,3001,,16,NE,1963,1963,3101,1,1,1645.478604,1645.478604,3507,NO,18.48,27.31,1,0.26,6106,111.288058,121.408579,131.115623,137.334273,I,Above,Gable,0,5701,,22.89770717,0,0,,,,1,1,,0.03,nav,1,1963,1,, 27368,NJBF000052247,52 E NEW YORK AVE,Somers Point,NJ,39.31359796,-74.59277787,COM4,3001,562,NaN,ME,1952,1952,3401,1,1,2487.413813,2487.413813,3507,NO,14.3,22.81,1,-0.15,6106,111.803569,121.869032,131.549869,137.890577,I,Above,Flat,0,NaN,,18.55278666,0,0,,,,1,1,,0.03,nav,1,1952,1,, 27369,NJBF000054867,101 PRINCETON RD,Somers Point,NJ,39.32451159,-74.60561049,RES1,3001,,16,NE,1965,1965,3101,1,1,2054.125799,2054.125799,3507,NO,14,27.79,1,1,6110,111.373169,121.51739,131.222289,137.472726,I,Above,Hip,0,5701,,20.89571152,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27370,NJBF000057677,15 CRESTMONT DR,Somers Point,NJ,39.33098034,-74.6003431,RES1,3001,,43,NE,1979,1979,3101,2,2,1385.257041,1385.257041,3507,NO,23.98,35.34,1,1.71,6106,111.348717,121.527971,131.234758,137.488549,I,Above,Gable,0,5701,,29.66192755,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27371,NJBF000056488,19 HAMILTON DR,Somers Point,NJ,39.32858765,-74.60462902,RES1,3001,,43,NE,1970,1970,3101,1,2,2097.182383,2097.182383,3507,NO,10.61,20.15,1,-0.88,6110,111.315194,121.484097,131.192834,137.434419,I,Above,Hip,0,5701,,15.38177042,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27372,NJBF000056512,33 BUCKNELL RD,Somers Point,NJ,39.32863876,-74.60968437,RES1,3001,,16,NE,1979,1979,3101,2,1,1756.436241,1756.436241,3507,NO,30.43,44.1,1,-0.69,6106,111.225753,121.39806,131.112021,137.329191,I,Above,Gable,0,5701,,37.26355811,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27373,NJBF000055050,20 JEFFERSON AVE,Somers Point,NJ,39.32499319,-74.60152537,RES1,3001,,16,NE,1966,1966,3101,1,1,1722.83104,1722.83104,3507,NO,14.75,29.29,1,-0.34,6110,111.436984,121.580461,131.282363,137.550114,I,Above,Gable,0,5701,,22.01696221,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27374,NJBF000051510,51 BROADWAY,Somers Point,NJ,39.30781642,-74.60669747,RES1,3001,,18,NE,2009,2009,3102,2,1,3951.290611,3951.290611,3507,NO,25.88,33.88,1,0.38,6112,111.660547,121.709414,131.387188,137.686735,I,Above,Gable,0,5701,,29.87828448,0,1.2,,,,1,1,,0.35,nav,1,2009,2,, 27375,NJBF000056473,15 RUTGERS RD,Somers Point,NJ,39.32855082,-74.60731311,RES1,3001,,16,NE,1970,1970,3101,1,1,1586.655616,1586.655616,3507,NO,15.76,26.02,1,-0.49,6110,111.268519,121.439155,131.150546,137.379476,I,Above,Hip,0,5701,,20.889813,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27376,NJBF000052183,,Somers Point,NJ,39.31329234,-74.57712489,RES1,3001,,NaN,NE,1969,0,3102,2,1,5824.205099,5824.205099,3507,NO,28.31,33.67,1,0.24,6106,112.106572,122.138278,131.812454,138.214564,I,Above,Hip,0,5701,,30.98935561,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27377,NJBF000052065,,Somers Point,NJ,39.31273325,-74.57712602,RES1,3001,,NaN,NE,1969,0,3102,2,1,5591.708892,5591.708892,3507,NO,21.35,28.16,1,-0.86,6106,112.116322,122.145122,131.818611,138.222153,I,Above,Flat,0,5701,,24.75687049,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27378,NJBF000054744,1114 MASSACHUSETTS AVE,Somers Point,NJ,39.32421003,-74.60588967,RES1,3001,,16,NE,1962,1962,3101,1,1,1571.45771,1571.45771,3507,NO,19.68,34.36,1,1.85,6112,111.373835,121.516394,131.221154,137.471276,I,Above,Hip,0,5701,,27.02024114,0,0,,,,1,1,,0.35,nav,1,1962,1,, 27379,NJBF000056243,26 BUCKNELL RD,Somers Point,NJ,39.32803331,-74.61000276,RES1,3001,,16,NE,1978,1978,3101,2,1,1333.600585,1333.600585,3507,NO,27.45,34.43,1,-0.1,6106,111.231567,121.400099,131.113673,137.331354,I,Above,Gable,0,5701,,30.93754093,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27380,NJBF000055481,152 EXTON RD,Somers Point,NJ,39.3262077,-74.61079219,RES1,3001,,16,NE,1979,1979,3101,1,1,1834.217745,1834.217745,3507,NO,14.08,21.62,1,2.03,6106,111.252084,121.409263,131.121326,137.341387,I,Above,Hip,0,5701,,17.84709074,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27381,NJBF000055092,168 BALA DR,Somers Point,NJ,39.32511625,-74.61225248,RES1,3001,,16,NE,1959,1959,3101,1,1,1400.836437,1400.836437,3507,NO,15.22,20.64,1,1.33,6106,111.247716,121.398269,131.110287,137.326976,I,Above,Hip,0,5701,,17.92903275,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27382,NJBF000054276,127 BALA DR,Somers Point,NJ,39.322949,-74.6148145,RES1,3001,,16,NE,1955,1955,3101,2,1,1424.771375,1424.771375,3507,NO,27.64,40.24,1,0.98,6106,111.24537,121.382457,131.093679,137.305308,I,Above,Gable,0,5701,,33.94203607,0,0,,,,1,1,,0.03,nav,1,1955,2,, 27383,NJBF000058617,,Somers Point,NJ,39.33262167,-74.59623751,COM1,3004,,NaN,ME,1969,0,3401,1,1,142043.8786,142043.8786,3507,NO,16.2,21.52,1,-1,6106,111.395374,121.578337,131.282452,137.549781,I,Above,Flat,0,NaN,,18.85840018,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27384,NJBF000054320,130 AMBLER RD,Somers Point,NJ,39.32306508,-74.61058971,RES1,3001,,16,NE,1959,1959,3101,1,1,1234.887331,1234.887331,3507,NO,21.25,33.22,1,1.79,6112,111.313941,121.451624,131.159055,137.390756,I,Above,Gable,0,5701,,27.2393155,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27385,NJBF000056377,18 RUTGERS RD,Somers Point,NJ,39.32834557,-74.60786804,RES1,3001,,16,NE,1969,1969,3101,1,1,1595.262001,1595.262001,3507,NO,13,26.4,1,1.66,6106,111.262642,121.432282,131.144011,137.370962,I,Above,Gable,0,5701,,19.69760982,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27386,NJBF000056339,16 RUTGERS RD,Somers Point,NJ,39.32824993,-74.60760413,RES1,3001,,16,NE,1969,1969,3101,1,1,1477.158981,1477.158981,3507,NO,20.9,33,1,1.5,6106,111.269027,121.437911,131.149261,137.377804,I,Above,Gable,0,5701,,26.95061105,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27387,NJBF000054812,15 AMBLER RD,Somers Point,NJ,39.32438699,-74.60839761,RES1,3001,,16,NE,1966,1966,3101,1,1,2099.413986,2099.413986,3507,NO,15.12,20.8,1,-0.38,6106,111.326943,121.472003,131.179289,137.416999,I,Above,Gable,0,5701,,17.95974092,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27388,NJBF000056179,34 BUCKNELL RD,Somers Point,NJ,39.32790295,-74.61069015,RES1,3001,,16,NE,1978,1978,3101,2,1,1475.353189,1475.353189,3507,NO,38.55,44.61,1,0.01,6106,111.222237,121.390121,131.104258,137.319033,I,Above,Gable,0,5701,,41.58372318,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27389,NJBF000056886,,Somers Point,NJ,39.329462,-74.6049465,RES3D,3001,,NaN,E,1969,0,3303,4,1,7157.10131,7157.10131,3507,NO,73.96,88.16,1,1.33,6112,111.293392,121.468127,131.178078,137.415262,I,Above,Gable,0,5701,,81.06260747,0,0,,,,1,1,,0.35,nav,1,1969,4,, 27390,NJBF000056469,,Somers Point,NJ,39.328534,-74.6056415,RES3D,3001,,NaN,E,1969,0,3303,4,1,7961.044354,7961.044354,3507,NO,61.15,73.64,1,2.29,6106,111.29822,121.467611,131.177295,137.41426,I,Above,Gable,0,5701,,67.39566562,0,0,,,,1,1,,0.03,nav,1,1969,4,, 27391,NJBF000051563,21 BROADWAY,Somers Point,NJ,39.30838746,-74.60370439,RES1,3001,,18,NE,1990,1990,3102,2,1,2631.612758,2631.612758,3507,NO,39.22,45.05,1,0.72,6110,111.701945,121.751761,131.429195,137.739859,I,Above,Gable,0,5701,,42.13520368,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 27392,NJBF000056510,1034 W GROVELAND AVE,Somers Point,NJ,39.32863444,-74.60687671,RES1,3001,,16,NE,1971,1971,3101,1,1,1674.586958,1674.586958,3507,NO,11.64,26.3,1,0.03,6110,111.274615,121.445511,131.156549,137.38729,I,Above,Flat,0,5701,,18.96976009,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27393,NJBF000051583,9 BROADWAY,Somers Point,NJ,39.30864817,-74.60219337,RES1,3001,,16,NE,1950,1950,3102,1,1,905.7940889,905.7940889,3507,NO,15.34,24.77,1,2.8,6106,111.723642,121.77357,131.450768,137.767064,I,Above,Gable,0,5701,,20.05727191,0,0,,,,1,1,,0.03,nav,1,1950,1,, 27394,NJBF000052198,80 MAYS LANDING RD,Somers Point,NJ,39.31335234,-74.61771848,RES1,3001,,16,NE,1965,1965,3101,1,4,1385.600529,1385.600529,3505,NO,20.05,25.31,3,8.32,6112,111.375415,121.456468,131.152106,137.382928,I,Above,Flat,0,5701,,22.68147572,0,1.1,,,,1,1,,0.7,nav,1,1965,1,, 27395,NJBF000052166,80 MAYS LANDING RD,Somers Point,NJ,39.31320628,-74.61798802,RES1,3001,,16,NE,1965,1965,3101,1,4,1484.225022,1484.225022,3505,NO,13.9,23.8,3,1.32,6110,111.373734,121.453914,131.149428,137.379467,I,Above,Gable,0,5701,,18.8492702,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 27396,NJBF000056119,22 FRANKLIN DR,Somers Point,NJ,39.3277665,-74.60348,RES1,3001,,16,NE,1973,1973,3101,2,1,1268.49425,1268.49425,3507,NO,40.65,48.99,1,2.61,6112,111.350859,121.513529,131.220289,137.46998,I,Above,Gable,0,5701,,44.82309864,0,0,,,,1,1,,0.35,nav,1,1973,2,, 27397,NJBF000054788,134 COLWICK DR,Somers Point,NJ,39.32431795,-74.61419649,RES1,3001,,16,NE,1957,1957,3101,2,1,1118.493152,1118.493152,3507,NO,24.32,32.12,1,2.25,6106,111.230106,121.375654,131.088424,137.298347,I,Above,Gable,0,5701,,28.22127938,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27398,NJBF000056347,28 BUCKNELL RD,Somers Point,NJ,39.32826656,-74.60985027,RES1,3001,,16,NE,1979,1979,3101,2,1,2119.076157,2119.076157,3507,NO,33.79,41.61,1,0.37,6106,111.229832,121.399811,131.113507,137.331135,I,Above,Gable,0,5701,,37.69820702,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27399,NJBF000056308,29 BUCKNELL RD,Somers Point,NJ,39.32819033,-74.60932862,RES1,3001,,16,NE,1979,1979,3101,2,1,2248.471922,2248.471922,3507,NO,32.63,43.02,1,1.71,6106,111.24023,121.409537,131.122596,137.343017,I,Above,Gable,0,5701,,37.8245481,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27400,NJBF000056207,27 BUCKNELL RD,Somers Point,NJ,39.32797088,-74.6094443,RES1,3001,,16,NE,1978,1978,3101,1,1,2159.930447,2159.930447,3507,NO,14.51,26.8,1,-0.06,6106,111.242327,121.410279,131.123196,137.343803,I,Above,Gable,0,5701,,20.65680163,0,0,,,,1,1,,0.03,nav,1,1978,1,, 27401,NJBF000053164,18 WISTERIA WALK,Somers Point,NJ,39.31894808,-74.61443328,RES1,3001,,16,NE,1957,1957,3101,2,1,1488.989616,1488.989616,3507,NO,25.32,32.97,1,-0.85,6110,111.325901,121.439229,131.143291,137.370564,I,Above,Hip,0,5701,,29.14487381,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27402,NJBF000056054,168 EXTON RD,Somers Point,NJ,39.32762296,-74.60930445,RES1,3001,,16,NE,1977,1977,3101,2,1,1484.999592,1484.999592,3507,NO,29.5,36.54,1,-0.85,6106,111.251216,121.416902,131.129254,137.351719,I,Above,Gable,0,5701,,33.01806481,0,0,,,,1,1,,0.03,nav,1,1977,2,, 27403,NJBF000056544,35 BUCKNELL RD,Somers Point,NJ,39.32870654,-74.61000864,RES1,3001,,16,NE,1979,1979,3101,1,1,2332.468169,2332.468169,3507,NO,14.37,23.64,1,2.42,6106,111.2189,121.391749,131.106134,137.321488,I,Above,Gable,0,5701,,19.00112612,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27404,NJBF000056326,43 BUCKNELL RD,Somers Point,NJ,39.32821782,-74.61091878,RES1,3001,,16,NE,1979,1979,3101,2,1,1411.886238,1411.886238,3507,NO,36.13,51.06,1,2.44,6106,111.212456,121.382402,131.097169,137.309747,I,Above,Flat,0,5701,,43.596496,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27405,NJBF000053703,36 LAUREL DR SOUTH,Somers Point,NJ,39.32095947,-74.61537297,RES1,3001,,16,NE,1964,1964,3101,2,1,1362.114438,1362.114438,3507,NO,37.95,42.97,1,0.24,6106,111.273146,121.39818,131.106596,137.322383,I,Above,Hip,0,5701,,40.46036004,0,0,,,,1,1,,0.03,nav,1,1964,2,, 27406,NJBF000054607,26 OSBORNE RD,Somers Point,NJ,39.32385955,-74.60561416,RES1,3001,,16,NE,1961,1961,3101,2,1,619.653567,619.653567,3507,NO,36.7,51,1,0.31,6112,111.385139,121.525362,131.229416,137.48198,I,Above,Hip,0,5701,,43.84794386,0,0,,,,1,1,,0.35,nav,1,1961,2,, 27407,NJBF000056131,11 DARTMOUTH RD,Somers Point,NJ,39.32778511,-74.60733448,RES1,3001,,16,NE,1970,1970,3101,1,1,2084.681538,2084.681538,3507,NO,14.76,22.27,1,2.33,6110,111.282373,121.448149,131.158691,137.390091,I,Above,Gable,0,5701,,18.51331725,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27408,NJBF000054631,9 AMBLER RD,Somers Point,NJ,39.32392154,-74.60893591,RES1,3001,,16,NE,1968,1968,3101,1,1,1596.796225,1596.796225,3507,NO,16.75,26.72,1,2.94,6106,111.3263,121.46872,131.175864,137.412573,I,Above,Gable,0,5701,,21.73608295,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27409,NJBF000051575,1409 ROBERTS AVE,Somers Point,NJ,39.30852966,-74.61640602,RES1,3001,,16,NE,1982,1982,3102,2,1,1263.482889,1263.482889,3507,NO,37.74,48,1,1.53,6106,111.484982,121.540331,131.224674,137.478261,I,Above,Gable,0,5701,,42.86901201,0,0,,,,1,1,,0.03,nav,1,1982,2,, 27410,NJBF000056088,1 RUTGERS RD,Somers Point,NJ,39.32769665,-74.60563202,RES1,3001,,16,NE,1968,1968,3101,1,1,2081.996744,2081.996744,3507,NO,19.12,31.94,1,0.98,6106,111.313891,121.477974,131.18673,137.426526,I,Above,Gable,0,5701,,25.52858908,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27411,NJBF000052206,56 E NEW YORK AVE,Somers Point,NJ,39.31340516,-74.5924034,RES1,3001,,16,NE,1953,1953,3102,1,1,1113.778652,1113.778652,3505,NO,13.51,23.02,3,2.97,6106,111.813962,121.877762,131.558127,137.90093,I,Above,Hip,0,5701,,18.26431874,0,0,,,,1,1,,0.03,nav,1,1953,1,, 27412,NJBF000054574,5 HAVERFORD RD,Somers Point,NJ,39.32376587,-74.60293444,RES1,3001,,16,NE,1965,1965,3101,2,1,1254.044764,1254.044764,3507,NO,25.85,31.64,1,-0.47,6112,111.434273,121.571708,131.273323,137.538587,I,Above,Flat,0,5701,,28.74209784,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27413,NJBF000056246,15 DARTMOUTH RD,Somers Point,NJ,39.32803835,-74.60782308,RES1,3001,,16,NE,1971,1971,3101,2,1,1309.232229,1309.232229,3507,NO,23.18,35.27,1,0.87,6106,111.269148,121.436802,131.148132,137.376337,I,Above,Hip,0,5701,,29.22381989,0,0,,,,1,1,,0.03,nav,1,1971,2,, 27414,NJBF000054659,114 E WILMONT AVE,Somers Point,NJ,39.3239885,-74.5843545,RES1,3001,,16,NE,1977,1977,3102,1,1,1496.040537,1496.040537,3505,NO,21.46,32.13,3,8.45,6110,111.777786,121.884716,131.57333,137.918222,I,Above,Gable,0,5701,,26.79630371,0,0,,,,1,1,,0.35,nav,1,1977,1,, 27415,NJBF000055731,46 BUCKNELL RD,Somers Point,NJ,39.32683418,-74.61179264,RES1,3001,,16,NE,1979,1979,3101,2,1,1293.752175,1293.752175,3507,NO,25.94,32.96,1,1.4,6106,111.223439,121.384719,131.098639,137.31168,I,Above,Gable,0,5701,,29.45234027,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27416,NJBF000054428,131 BALA DR,Somers Point,NJ,39.323374,-74.61507,RES1,3001,,16,NE,1937,1937,3101,2,1,1619.17718,1619.17718,3507,NO,31.83,38.64,1,2.27,6106,111.233239,121.37286,131.085012,137.293909,I,Above,Gable,0,5701,,35.23630196,0,0,,,,1,1,,0.03,nav,1,1937,2,, 27417,NJBF000055738,117 N AMBLER RD,Somers Point,NJ,39.32684885,-74.60585598,RES1,3001,,16,NE,1968,1968,3101,1,1,2329.173888,2329.173888,3507,NO,22.08,30.72,1,2.95,6106,111.325635,121.484549,131.19255,137.434102,I,Above,Gable,0,5701,,26.40330286,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27418,NJBF000054559,12 PRINCETON RD,Somers Point,NJ,39.32372784,-74.60707397,RES1,3001,,16,NE,1962,1962,3101,1,1,1358.101964,1358.101964,3507,NO,15.57,23.88,1,2.14,6110,111.362078,121.502419,131.207596,137.45376,I,Above,Gable,0,5701,,19.72872134,0,0,,,,1,1,,0.35,nav,1,1962,1,, 27419,NJBF000052484,,Somers Point,NJ,39.31502512,-74.59303915,RES1,3001,,NaN,NE,1969,0,3102,2,1,1410.408003,1410.408003,3507,NO,26.37,39.87,1,-0.02,6112,111.773057,121.846869,131.529918,137.865368,I,Above,Flat,0,5701,,33.12037531,0,0,,,,1,1,,0.35,nav,1,1969,2,, 27420,NJBF000052364,9 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1965,3102,1,1,1379.704652,1379.704652,3505,NO,11.35,18.54,3,-0.97,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,14.94504253,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27421,NJBF000055820,16 STANFORD RD,Somers Point,NJ,39.32705467,-74.60858583,RES1,3001,,16,NE,1971,1971,3101,1,1,1464.242446,1464.242446,3507,NO,14.66,21.46,1,1.62,6110,111.274173,121.435968,131.146897,137.374745,I,Above,Gable,0,5701,,18.05734524,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27422,NJBF000054482,106 E MEYRAN AVE,Somers Point,NJ,39.32350383,-74.58538172,RES1,3001,,16,NE,1950,1950,3102,1,1,1433.721358,1433.721358,3505,NO,21.06,28.82,3,7.47,6112,111.766363,121.873008,131.561771,137.903891,I,Above,Gable,0,5701,,24.94231475,0,0,,,,1,1,,0.35,nav,1,1950,1,, 27423,NJBF000055661,158 EXTON RD,Somers Point,NJ,39.32668288,-74.61026266,RES1,3001,,16,NE,1979,1979,3101,2,1,1533.434243,1533.434243,3507,NO,36.46,42.14,1,1.39,6106,111.252261,121.412303,131.124455,137.345465,I,Above,Gable,0,5701,,39.29944335,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27424,NJBF000051595,1405 ROBERTS AVE,Somers Point,NJ,39.30886647,-74.6160563,RES1,3001,,16,NE,1982,1982,3102,2,1,1261.7678,1261.7678,3507,NO,32.93,41.38,1,1.34,6110,111.484565,121.541708,131.226606,137.480669,I,Above,Gable,0,5701,,37.15339504,0,0,,,,1,1,,0.35,nav,1,1982,2,, 27425,NJBF000054515,17 PRINCETON RD,Somers Point,NJ,39.32360768,-74.60652731,RES1,3001,,16,NE,1961,1961,3101,1,1,2476.570618,2476.570618,3507,NO,17.14,23.86,1,0.88,6110,111.373822,121.513105,131.217631,137.466759,I,Above,Hip,0,5701,,20.49960854,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27426,NJBF000055235,107 HADDON RD,Somers Point,NJ,39.32553801,-74.60588945,RES1,3001,,16,NE,1965,1965,3101,1,1,1410.19236,1410.19236,3507,NO,16.12,26,1,0.86,6106,111.349307,121.500064,131.206515,137.452256,I,Above,Gable,0,5701,,21.05862149,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27427,NJBF000055638,63 BUCKNELL RD,Somers Point,NJ,39.32662188,-74.61262731,RES1,3001,,16,NE,1979,1979,3101,1,1,1934.668151,1934.668151,3507,NO,20.19,27.48,1,2.18,6106,111.213335,121.373329,131.087832,137.297511,I,Above,Gable,0,5701,,23.83523683,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27428,NJBF000054564,132 DEVON RD,Somers Point,NJ,39.32374257,-74.61255494,RES1,3001,,16,NE,1958,1958,3101,2,1,1307.712809,1307.712809,3507,NO,34.39,47.46,1,2.85,6110,111.26818,121.410272,131.120567,137.340486,I,Above,Hip,0,5701,,40.92651477,0,0,,,,1,1,,0.35,nav,1,1958,2,, 27429,NJBF000055647,1 STANFORD RD,Somers Point,NJ,39.32664083,-74.60677274,RES1,3001,,16,NE,1968,1968,3101,1,1,545.3021399,545.3021399,3507,NO,17.46,28.47,1,0.31,6106,111.313394,121.471617,131.180255,137.418155,I,Above,Gable,0,5701,,22.96288289,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 27430,NJBF000055588,1 STANFORD RD,Somers Point,NJ,39.32650115,-74.60684044,RES1,3001,,16,NE,1968,1968,3101,1,1,2191.857676,2191.857676,3507,NO,10.31,23.09,1,-0.8,6106,111.314817,121.472203,131.180737,137.418785,I,Above,Gable,0,5701,,16.70114165,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 27431,NJBF000052140,48 GIBBS AVE,Somers Point,NJ,39.31308974,-74.5939049,RES1,3001,,16,NE,1920,1920,3101,1,1,1028.466258,1028.466258,3505,NO,19.95,27.19,3,0.62,6106,111.791995,121.856376,131.537012,137.874584,I,Above,Hip,0,5701,,23.56905294,0,0,,,,1,1,,0.03,nav,1,1920,1,, 27432,NJBF000055626,122 PRINCETON RD,Somers Point,NJ,39.32660028,-74.60414475,RES1,3001,,16,NE,1965,1965,3101,1,1,1842.818575,1842.818575,3507,NO,15.9,22.71,1,-0.56,6112,111.360515,121.516503,131.222599,137.473014,I,Above,Gable,0,5701,,19.30454664,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27433,NJBF000053477,30 LAUREL DR SOUTH,Somers Point,NJ,39.3200811,-74.61587688,RES1,3001,,16,NE,1964,1964,3101,1,1,2119.272287,2119.272287,3507,NO,16.76,25.78,1,-0.76,6106,111.28117,121.400902,131.108227,137.3246,I,Above,Gable,0,5701,,21.26860209,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27434,NJBF000055772,14 BUCKNELL RD,Somers Point,NJ,39.32693753,-74.61112083,RES1,3001,,16,NE,1978,1978,3101,2,1,1255.421594,1255.421594,3507,NO,39.49,49.7,1,1.72,6106,111.23289,121.394732,131.108093,137.324062,I,Above,Gable,0,5701,,44.59699867,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27435,NJBF000053472,42 GULPH MILL RD,Somers Point,NJ,39.3200687,-74.61848303,RES1,3001,,16,NE,1973,1973,3101,1,1,2692.94921,2692.94921,3507,NO,20.07,28.43,1,2.02,6106,111.239115,121.357852,131.06747,137.27109,I,Above,Gable,0,5701,,24.24950708,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27436,NJBF000054438,129 E MEYRAN AVE,Somers Point,NJ,39.32339741,-74.58411103,RES1,3001,,16,NE,1972,1972,3102,1,1,1834.400096,1834.400096,3505,NO,16.85,28.02,3,1.23,6106,111.792957,121.896015,131.583962,137.931552,I,Above,Gable,0,5701,,22.43339506,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27437,NJBF000052365,600 BAY AVE,Somers Point,NJ,39.31421112,-74.58982822,COM1,3001,,NaN,ME,1986,1986,3401,2,1,31884.49014,31884.49014,3507,NO,26.09,40.97,1,1.59,6106,111.847332,121.911233,131.591514,137.94242,I,Above,Flat,0,NaN,,33.52964941,0,0,,,,1,1,,0.03,nav,1,1986,2,, 27438,NJBF000054539,135 DEVON RD,Somers Point,NJ,39.32367161,-74.61194349,RES1,3001,,16,NE,1958,1958,3101,2,1,1270.580395,1270.580395,3507,NO,24.3,37.08,1,-0.13,6110,111.279785,121.421401,131.131005,137.354132,I,Above,Gable,0,5701,,30.6917937,0,0,,,,1,1,,0.35,nav,1,1958,2,, 27439,NJBF000054443,8 PRINCETON RD,Somers Point,NJ,39.32341731,-74.6074412,RES1,3001,,16,NE,1962,1962,3101,1,1,2107.37318,2107.37318,3507,NO,17.71,30.99,1,0.55,6110,111.36146,121.500098,131.205177,137.450646,I,Above,Hip,0,5701,,24.34610694,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 27440,NJBF000054585,19 PRINCETON RD,Somers Point,NJ,39.32378663,-74.6063698,RES1,3001,,16,NE,1961,1961,3101,1,1,1596.396617,1596.396617,3507,NO,15.08,21.3,1,0.22,6110,111.373254,121.513534,131.218162,137.467434,I,Above,Flat,0,5701,,18.19000463,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27441,NJBF000055750,100 SHORE RD,Somers Point,NJ,39.3268885,-74.58429,RES3D,3001,20,NaN,E,1970,1970,3303,2,1,6429.716992,6429.716992,3507,NO,26.63,38.76,1,2.59,6110,111.728026,121.850992,131.541948,137.878617,I,Above,Flat,0,NaN,,32.69546751,0,0,,,,1,1,,0.35,nav,1,1970,2,, 27442,NJBF000051782,62 GREATE BAY DR,Somers Point,NJ,39.31071491,-74.60650673,RES3A,3001,,29,NE,1977,1977,3301,2,1,1933.288034,1933.288034,3507,NO,39.76,53.95,1,0.78,6112,111.611014,121.675508,131.358845,137.649979,I,Above,Gable,0,5701,,46.85260626,0,0,,,,1,1,,0.35,nav,1,1977,2,, 27443,NJBF000054417,1 AMBLER RD,Somers Point,NJ,39.32333598,-74.60962195,RES1,3001,,16,NE,1965,1965,3101,2,1,1440.326839,1440.326839,3507,NO,23.77,35.96,1,-0.33,6106,111.325409,121.46448,131.17142,137.406831,I,Above,Hip,0,5701,,29.86098872,0,0,,,,1,1,,0.03,nav,1,1965,2,, 27444,NJBF000055244,144 EXTON RD,Somers Point,NJ,39.3255569,-74.61146634,RES1,3001,,16,NE,1979,1979,3101,1,1,2134.13998,2134.13998,3507,NO,18.64,26.15,1,1.58,6106,111.252768,121.405989,131.117844,137.336851,I,Above,Gable,0,5701,,22.39416608,0,1.1,,,,1,1,,0.03,nav,1,1979,1,, 27445,NJBF000055714,12 BUCKNELL RD,Somers Point,NJ,39.32679878,-74.61129815,RES1,3001,,16,NE,1978,1978,3101,2,1,1524.93932,1524.93932,3507,NO,35.06,43.04,1,0.88,6106,111.232476,121.393469,131.106831,137.322411,I,Above,Gable,0,5701,,39.05342889,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27446,NJBF000052009,111 GIBBS AVE,Somers Point,NJ,39.31237958,-74.59207796,RES1,3001,,16,NE,1900,1900,3102,1,1,1444.982374,1444.982374,3505,NO,12.53,25.92,3,-1.17,6106,111.83839,121.896026,131.574701,137.921797,I,Above,Gable,0,5701,,19.22647441,0,0,,,,1,1,,0.03,nav,1,1900,1,, 27447,NJBF000053784,23 GULPH MILL RD,Somers Point,NJ,39.3212695,-74.6172165,RES1,3001,,16,NE,1968,1968,3101,1,1,1797.573448,1797.573448,3507,NO,17.46,28.79,1,1.57,6106,111.237305,121.36364,131.074283,137.279947,I,Above,Gable,0,5701,,23.12372353,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 27448,NJBF000053816,23 GULPH MILL RD,Somers Point,NJ,39.3213885,-74.6171195,RES1,3001,,16,NE,1968,1968,3101,1,1,608.3939009,608.3939009,3507,NO,16.05,29.84,1,2.03,6106,111.236652,121.36373,131.074493,137.280214,I,Above,Gable,0,5701,,22.94125572,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 27449,NJBF000056004,125 N AMBLER RD,Somers Point,NJ,39.32750003,-74.60520238,RES1,3001,,16,NE,1966,1966,3101,1,1,1577.251744,1577.251744,3507,NO,14.47,24.29,1,2.9,6106,111.325137,121.487646,131.195763,137.438246,I,Above,Hip,0,5701,,19.38351229,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27450,NJBF000056109,8 RUTGERS RD,Somers Point,NJ,39.32774677,-74.60665258,RES1,3001,,16,NE,1969,1969,3101,1,1,1891.558423,1891.558423,3507,NO,15.31,28.03,1,-0.94,6106,111.294996,121.460112,131.169931,137.40471,I,Above,Gable,0,5701,,21.66752591,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27451,NJBF000054430,126 BALA DR,Somers Point,NJ,39.32338083,-74.61556107,RES1,3001,,16,NE,1959,1959,3101,1,1,1355.881603,1355.881603,3507,NO,11.61,18.08,1,0.56,6106,111.225033,121.364582,131.077224,137.283679,I,Above,Gable,0,5701,,14.84383435,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27452,NJBF000055819,17 BUCKNELL RD,Somers Point,NJ,39.32705286,-74.6104158,RES1,3001,,16,NE,1979,1979,3101,2,1,1345.412048,1345.412048,3507,NO,24.66,35.43,1,2.87,6106,111.242757,121.405175,131.117959,137.336968,I,Above,Gable,0,5701,,30.04496884,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27453,NJBF000055677,5 STANFORD RD,Somers Point,NJ,39.32671277,-74.60727947,RES1,3001,,16,NE,1969,1969,3101,2,1,1357.580158,1357.580158,3507,NO,25.91,33.76,1,1.81,6106,111.303222,121.462199,131.171416,137.406668,I,Above,Hip,0,5701,,29.8322321,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27454,NJBF000054474,133 DEVON RD,Somers Point,NJ,39.32348225,-74.61185558,RES1,3001,,16,NE,1958,1958,3101,2,1,1747.496176,1747.496176,3507,NO,34.36,43.69,1,1.62,6110,111.284782,121.425225,131.134462,137.358658,I,Above,Gable,0,5701,,39.02761703,0,0,,,,1,1,,0.35,nav,1,1958,2,, 27455,NJBF000052010,67 HIGBEE AVE,Somers Point,NJ,39.31238061,-74.59352512,RES1,3001,,16,NE,1948,1948,3102,2,1,1220.860603,1220.860603,3505,NO,19.14,33.99,3,-2.45,6106,111.811741,121.871636,131.550998,137.892206,I,Above,Gable,0,5701,,26.56217026,0,0,,,,1,1,,0.03,nav,1,1948,2,, 27456,NJBF000053461,5 VIOLET LN,Somers Point,NJ,39.3200266,-74.61369165,RES1,3001,,16,NE,1966,1966,3101,1,1,1901.921928,1901.921928,3507,NO,11.43,20.52,1,-0.68,6110,111.318193,121.437909,131.143234,137.370375,I,Above,Gable,0,5701,,15.97569577,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27457,NJBF000054526,8 HADDON RD,Somers Point,NJ,39.32363399,-74.60851882,RES1,3001,,16,NE,1963,1963,3101,1,1,1404.872841,1404.872841,3507,NO,17.84,32.4,1,1.74,6106,111.338813,121.479295,131.185651,137.425305,I,Above,Gable,0,5701,,25.11588023,0,0,,,,1,1,,0.03,nav,1,1963,1,, 27458,NJBF000054540,8 HADDON RD,Somers Point,NJ,39.32367199,-74.60865933,RES1,3001,,16,NE,1963,1963,3101,1,1,750.5567448,750.5567448,3507,NO,13.94,27.84,1,-0.52,6106,111.335698,121.476472,131.18301,137.421873,I,Above,Gable,0,5701,,20.8867498,0,0,,,,1,1,,0.03,nav,1,1963,1,, 27459,NJBF000054489,1007 MASSACHUSETTS AVE,Somers Point,NJ,39.32352247,-74.60401089,RES1,3001,,16,NE,1964,1964,3101,2,1,1422.745926,1422.745926,3507,NO,29.47,40.19,1,-0.55,6112,111.419628,121.556545,131.258764,137.519868,I,Above,Gable,0,5701,,34.83316926,0,0,,,,1,1,,0.35,nav,1,1964,2,, 27460,NJBF000054639,14 JEFFERSON AVE,Somers Point,NJ,39.32393939,-74.60232423,RES1,3001,,16,NE,1966,1966,3101,1,1,1493.465946,1493.465946,3507,NO,18.55,25.31,1,-0.04,6112,111.441989,121.579881,131.281196,137.548694,I,Above,Gable,0,5701,,21.93255564,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27461,NJBF000052272,29 GIBBS AVE,Somers Point,NJ,39.31373044,-74.59432785,RES1,3001,,16,NE,1926,1926,3101,1,1,1262.718317,1262.718317,3505,NO,22.98,30.42,3,6.38,6110,111.7727,121.841259,131.523082,137.857022,I,Above,Gable,0,5701,,26.70050107,0,1.1,,,,1,1,,0.35,nav,1,1926,1,, 27462,NJBF000054368,121 COLWICK DR,Somers Point,NJ,39.32319207,-74.61363714,RES1,3001,,16,NE,1955,1955,3101,1,1,1847.027306,1847.027306,3507,NO,13.27,18.87,1,-0.93,6112,111.260354,121.399062,131.109544,137.326089,I,Above,Gable,0,5701,,16.07215864,0,0,,,,1,1,,0.35,nav,1,1955,1,, 27463,NJBF000053435,11 WISTERIA WALK,Somers Point,NJ,39.31992838,-74.61474326,RES1,3001,,16,NE,1965,1965,3101,1,1,2055.551905,2055.551905,3507,NO,18.22,25.87,1,-0.27,6106,111.302636,121.421677,131.12774,137.350149,I,Above,Gable,0,5701,,22.04561088,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27464,NJBF000054377,175 BALA DR,Somers Point,NJ,39.32322816,-74.61074948,RES1,3001,,16,NE,1959,1959,3101,1,1,984.7876738,984.7876738,3507,NO,13.24,27.28,1,-0.65,6112,111.308217,121.44693,131.154751,137.385138,I,Above,Hip,0,5701,,20.25822393,0,1.2,,,,1,1,,0.35,nav,1,1959,1,, 27465,NJBF000059060,69 DEFEO LN,Somers Point,NJ,39.33347431,-74.60509011,RES1,3001,,16,NE,1984,1984,3101,2,1,1408.436411,1408.436411,3507,NO,39.26,48.31,1,1.77,6112,111.216554,121.417422,131.131109,137.354193,I,Above,Gable,0,5701,,43.78397375,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27466,NJBF000053473,8 WISTERIA WALK,Somers Point,NJ,39.32007048,-74.61414134,RES1,3001,,16,NE,1967,1967,3101,1,1,1862.406429,1862.406429,3507,NO,11.26,21.51,1,0.01,6106,111.309952,121.429894,131.135683,137.360513,I,Above,Gable,0,5701,,16.38705757,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27467,NJBF000055472,121 PRINCETON RD,Somers Point,NJ,39.32619024,-74.60391413,RES1,3001,,16,NE,1968,1968,3101,1,1,1636.422511,1636.422511,3507,NO,17,27.81,1,-0.69,6110,111.372187,121.52542,131.23083,137.483669,I,Above,Gable,0,5701,,22.40529326,0,0,,,,1,1,,0.35,nav,1,1968,1,, 27468,NJBF000053368,37 GULPH MILL RD,Somers Point,NJ,39.31967635,-74.61814613,RES1,3001,,16,NE,1972,1972,3101,1,1,2357.339637,2357.339637,3507,NO,17.45,31.63,1,1.28,6106,111.251826,121.368427,131.077012,137.283678,I,Above,Gable,0,5701,,24.54234811,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27469,NJBF000052045,,Somers Point,NJ,39.31388406,-74.62512521,RES3B,3001,,NaN,E,1969,0,3303,3,1,11613.50415,11613.50415,3507,NO,59.05,69.6,1,1.81,6106,111.248616,121.32846,131.030474,137.223226,I,Above,Flat,0,5701,,64.32309986,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27470,NJBF000051718,837 BAY AVE,Somers Point,NJ,39.31019067,-74.59550251,RES1,3001,,16,NE,1950,1950,3102,1,1,1114.029582,1114.029582,3505,NO,11.46,17.64,3,-1.29,6106,111.815134,121.865864,131.542641,137.882181,I,Above,Flat,0,5701,,14.55226447,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 27471,NJBF000053425,4 VIOLET LN,Somers Point,NJ,39.31987873,-74.61317816,RES1,3001,,16,NE,1956,1956,3101,1,1,2129.371291,2129.371291,3507,NO,19.44,32.07,1,0.9,6112,111.329484,121.448333,131.152963,137.383079,I,Above,Gable,0,5701,,25.75826426,0,0,,,,1,1,,0.35,nav,1,1956,1,, 27472,NJBF000058931,31 WILSON AVE,Somers Point,NJ,39.33320227,-74.60657804,RES1,3001,,16,NE,1984,1984,3101,2,1,1433.375419,1433.375419,3507,NO,29.16,41.81,1,2.21,6110,111.195052,121.395407,131.110531,137.327331,I,Above,Gable,0,5701,,35.48527963,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27473,NJBF000051416,90 BROADWAY-BLDG B,Somers Point,NJ,39.30634206,-74.6084179,RES1,3001,,43,NE,1957,1957,3102,2,2,1914.760672,1914.760672,3507,NO,32.69,40.51,1,2.24,6106,111.657926,121.699904,131.375476,137.672236,I,Above,Flat,0,5701,,36.59786098,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27474,NJBF000051413,90 BROADWAY-BLDG C,Somers Point,NJ,39.306302,-74.6085765,RES1,3001,,43,NE,1953,1953,3102,2,4,1668.304785,1668.304785,3507,NO,32.78,40.69,1,0.28,6106,111.655966,121.697812,131.373373,137.669573,I,Above,Flat,0,5701,,36.73291718,0,0,,,,1,1,,0.03,nav,1,1953,2,, 27475,NJBF000059027,63 DEFEO LN,Somers Point,NJ,39.33338997,-74.6042873,RES1,3001,,16,NE,1984,1984,3101,2,1,1244.191904,1244.191904,3507,NO,27.49,41.64,1,0.29,6112,111.232553,121.432071,131.144815,137.372042,I,Above,Gable,0,5701,,34.56601602,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27476,NJBF000055457,190 JORDAN RD,Somers Point,NJ,39.32614822,-74.60200403,RES1,3001,,16,NE,1964,1964,3101,1,1,1294.22991,1294.22991,3507,NO,18.84,27.79,1,-0.56,6112,111.407152,121.55824,131.261878,137.523699,I,Above,Hip,0,5701,,23.31293446,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27477,NJBF000055433,1405 MASSACHUSETTS AVE,Somers Point,NJ,39.32608198,-74.60792161,RES1,3001,,16,NE,1968,1968,3101,1,1,1982.697331,1982.697331,3507,NO,20.46,30.25,1,1.9,6106,111.303742,121.459108,131.168169,137.402469,I,Above,Gable,0,5701,,25.35503731,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27478,NJBF000052718,15 KAPPELLA AVE,Somers Point,NJ,39.31671682,-74.58684503,RES1,3001,,16,NE,1922,1922,3102,1,1,735.1708365,735.1708365,3505,NO,15.21,22.81,3,1.01,6106,111.858781,121.930833,131.612995,137.968713,I,Above,Flat,0,5701,,19.00880264,0,0,,,,1,1,,0.03,nav,1,1922,1,, 27479,NJBF000051402,98 BROADWAY,Somers Point,NJ,39.30617878,-74.60908102,RES1,3001,,18,NE,1999,1999,3102,2,1,4334.003836,4334.003836,3507,NO,35.46,41.61,1,1.57,6106,111.649629,121.691069,131.366604,137.660992,I,Above,Hip,0,5701,,38.53359788,0,0,,,,1,1,,0.03,nav,1,1999,2,, 27480,NJBF000058933,59 DEFEO LN,Somers Point,NJ,39.33320453,-74.60372365,RES1,3001,,16,NE,1984,1984,3101,1,1,1754.40829,1754.40829,3507,NO,18.93,33.25,1,0.9,6112,111.246142,121.443851,131.155846,137.386384,I,Above,Gable,0,5701,,26.09433985,0,0,,,,1,1,,0.35,nav,1,1984,1,, 27481,NJBF000052295,46 E NEW YORK AVE,Somers Point,NJ,39.31383777,-74.59333887,COM4,3001,562,NaN,ME,1969,0,3401,1,1,4818.669483,4818.669483,3507,NO,13.9,22.9,1,-0.18,6106,111.788912,121.856581,131.538056,137.875759,I,Above,Hip,0,NaN,,18.40095268,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27482,NJBF000052041,38 HIGBEE AVE,Somers Point,NJ,39.31260907,-74.59473447,RES1,3001,,16,NE,1920,1920,3101,2,1,2467.684576,2467.684576,3505,NO,36.43,48.27,3,0.18,6112,111.785502,121.848435,131.528745,137.864318,I,Above,Hip,0,5701,,42.35237544,0,0,,,,1,1,,0.35,nav,1,1920,2,, 27483,NJBF000058882,33 WILSON AVE,Somers Point,NJ,39.33311513,-74.6068595,RES1,3001,,16,NE,1984,1984,3101,1,1,1764.928205,1764.928205,3507,NO,12.18,24.67,1,1.25,6110,111.191689,121.39168,131.107048,137.322776,I,Above,Gable,0,5701,,18.4268454,0,0,,,,1,1,,0.35,nav,1,1984,1,, 27484,NJBF000059069,67 DEFEO LN,Somers Point,NJ,39.33348524,-74.60481825,RES1,3001,,16,NE,1984,1984,3101,2,1,1781.655601,1781.655601,3507,NO,36.3,42.43,1,1.96,6112,111.221235,121.421912,131.135309,137.359666,I,Above,Gable,0,5701,,39.36273194,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27485,NJBF000051986,106 GIBBS AVE,Somers Point,NJ,39.31220801,-74.5924521,RES1,3001,,16,NE,1921,1921,3102,1,1,1176.965257,1176.965257,3505,NO,15.81,30.43,3,0.71,6106,111.834584,121.891871,131.570458,137.916537,I,Above,Gable,0,5701,,23.11744675,0,0,,,,1,1,,0.03,nav,1,1921,1,, 27486,NJBF000058803,75 DEFEO LN,Somers Point,NJ,39.3329629,-74.60584269,RES1,3001,,16,NE,1984,1984,3101,1,1,1596.860774,1596.860774,3507,NO,21,35.12,1,1.65,6110,111.21256,121.410744,131.124853,137.346022,I,Above,Gable,0,5701,,28.06277741,0,0,,,,1,1,,0.35,nav,1,1984,1,, 27487,NJBF000051400,,Somers Point,NJ,39.30613819,-74.61031863,RES3D,3001,,NaN,ME,1969,0,3301,1,1,7245.08094,7245.08094,3507,NO,11.56,26.33,1,0.49,6106,111.629455,121.671207,131.347228,137.63631,I,Above,Hip,0,NaN,,18.9445222,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27488,NJBF000051902,46 E NEW JERSEY AVE,Somers Point,NJ,39.31160516,-74.59471101,RES1,3001,,16,NE,1900,1900,3102,2,1,820.4400846,820.4400846,3505,NO,31.08,43.47,3,-0.45,6110,111.804034,121.8614,131.540114,137.87874,I,Above,Gable,0,5701,,37.27283778,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 27489,NJBF000055314,181 JORDAN RD,Somers Point,NJ,39.32574661,-74.60178744,RES1,3001,,16,NE,1961,1961,3101,2,1,1234.944328,1234.944328,3507,NO,21.74,27.99,1,-0.97,6110,111.418425,121.566809,131.269804,137.533921,I,Above,Hip,0,5701,,24.86182747,0,0,,,,1,1,,0.35,nav,1,1961,2,, 27490,NJBF000055890,13 STANFORD RD,Somers Point,NJ,39.32721599,-74.60807406,RES1,3001,,16,NE,1970,1970,3101,1,1,2133.065665,2133.065665,3507,NO,18.73,31.37,1,-0.63,6110,111.280054,121.442626,131.153237,137.383003,I,Above,Gable,0,5701,,25.04747428,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27491,NJBF000054124,197 BALA DR,Somers Point,NJ,39.32245948,-74.60935384,RES1,3001,,16,NE,1959,1959,3101,1,1,1474.905066,1474.905066,3507,NO,18.78,28.68,1,0.24,6112,111.346246,121.479886,131.185297,137.424926,I,Above,Hip,0,5701,,23.72821652,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27492,NJBF000051942,1201 ATKINSON AVE,Somers Point,NJ,39.31191713,-74.61347468,COM8,3001,,NaN,ME,1984,1984,3401,1,1,7741.412302,7741.412302,3507,NO,14.09,28.15,1,2.07,6112,111.471245,121.544787,131.234649,137.490336,I,Above,Flat,0,NaN,,21.11795575,0,0,,,,1,1,,1,nav,1,1984,1,, 27493,NJBF000051912,121 HIGBEE AVE,Somers Point,NJ,39.31169814,-74.59242021,RES1,3001,,16,NE,1930,1930,3102,2,1,989.0649478,989.0649478,3505,NO,25.95,38.72,3,3.45,6106,111.844341,121.898785,131.576573,137.924257,I,Above,Gable,0,5701,,32.33587672,0,0,,,,1,1,,0.03,nav,1,1930,2,, 27494,NJBF000055938,123 N AMBLER RD,Somers Point,NJ,39.32733735,-74.60536949,RES1,3001,,16,NE,1967,1967,3101,1,1,1576.326683,1576.326683,3507,NO,16.87,25.8,1,-0.44,6106,111.325198,121.486812,131.194907,137.437141,I,Above,Hip,0,5701,,21.33264653,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 27495,NJBF000054742,130 EXTON RD,Somers Point,NJ,39.3242025,-74.6133025,RES1,3001,,16,NE,1957,1957,3101,1,1,765.7904797,765.7904797,3507,NO,18.87,26.45,1,0.46,6110,111.247124,121.392035,131.103748,137.318447,I,Above,Gable,0,5701,,22.65991963,0,1.2,,,,1,1,,0.35,nav,1,1957,1,, 27496,NJBF000051874,105 BRADDOCK AVE,Somers Point,NJ,39.31138981,-74.60154203,RES1,3001,,16,NE,1980,1980,3102,1,1,2761.08363,2761.08363,3505,NO,19.13,31.31,3,3.65,6112,111.685306,121.749635,131.431473,137.742084,I,Above,Gable,0,5701,,25.21559913,0,0,,,,1,1,,0.35,nav,1,1980,1,, 27497,NJBF000052593,,Somers Point,NJ,39.31585773,-74.62797691,COM3,3001,,NaN,ME,1969,0,3401,1,1,3211.186147,3211.186147,3507,NO,16.11,28.91,1,-0.88,6102,111.168912,121.256396,130.965132,137.136226,I,Above,Flat,0,NaN,,22.50808236,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27498,NJBF000054732,127 E WILMONT AVE,Somers Point,NJ,39.32418665,-74.5837155,RES1,3001,,16,NE,1947,1947,3102,2,1,3617.041347,3617.041347,3505,NO,35.4,48.45,3,6.8,6106,111.786775,121.893262,131.58169,137.928597,I,Above,Gable,0,5701,,41.92491109,0,0,,,,1,1,,0.03,nav,1,1947,2,, 27499,NJBF000051749,7 MILLER LN,Somers Point,NJ,39.31047922,-74.59563871,RES1,3001,,16,NE,1920,1920,3102,1,1,900.3173575,900.3173575,3507,NO,14.95,24.3,1,0.93,6110,111.807472,121.859958,131.537277,137.87541,I,Above,Hip,0,5701,,19.62910272,0,0,,,,1,1,,0.35,nav,1,1920,1,, 27500,NJBF000051915,749 BAY AVE,Somers Point,NJ,39.31172491,-74.59373024,RES1,3001,,17,NE,2004,2004,3102,2,1,2122.749488,2122.749488,3505,NO,36.45,49.7,3,5.06,6106,111.819797,121.876394,131.554832,137.89712,I,Above,Gable,0,5701,,43.07266725,0,0,,,,1,1,,0.03,nav,1,2004,2,, 27501,NJBF000052658,553 LAUNCH AVE,Somers Point,NJ,39.31631742,-74.58661108,RES1,3001,,16,NE,1928,1928,3102,1,1,1225.637038,1225.637038,3505,NO,17.15,25.15,3,6.55,6106,111.87035,121.939728,131.621277,137.97906,I,Above,Flat,0,5701,,21.14785349,0,0,,,,1,1,,0.03,nav,1,1928,1,, 27502,NJBF000053853,5 GULPH MILL RD,Somers Point,NJ,39.32151934,-74.61625647,RES1,3001,,16,NE,1967,1967,3101,1,1,2509.185749,2509.185749,3507,NO,16.9,27.4,1,1.19,6106,111.248285,121.376431,131.086622,137.29614,I,Above,Hip,0,5701,,22.15088504,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27503,NJBF000057502,14 EDGEWOOD DR,Somers Point,NJ,39.33068247,-74.59997754,RES1,3001,,16,NE,1987,1987,3101,1,1,2836.913305,2836.913305,3507,NO,20.51,27.05,1,2.58,6106,111.360884,121.537754,131.243945,137.500397,I,Above,Gable,0,5701,,23.77833108,0,1.1,,,,1,1,,0.03,nav,1,1987,1,, 27504,NJBF000057257,,Somers Point,NJ,39.3302437,-74.60464927,RES3D,3001,,NaN,E,1969,0,3303,4,1,7230.957262,7230.957262,3507,NO,58.1,69.68,1,2.49,6112,111.284224,121.463701,131.174118,137.410111,I,Above,Gable,0,5701,,63.88972017,0,0,,,,1,1,,0.35,nav,1,1969,4,, 27505,NJBF000057422,,Somers Point,NJ,39.33053908,-74.60415123,RES3D,3001,,NaN,E,1969,0,3303,4,1,8218.854616,8218.854616,3507,NO,57.8,69.61,1,1.94,6112,111.287683,121.468585,131.178772,137.416149,I,Above,Gable,0,5701,,63.70232473,0,0,,,,1,1,,0.35,nav,1,1969,4,, 27506,NJBF000054285,122 BALA DR,Somers Point,NJ,39.32295957,-74.61537239,RES1,3001,,16,NE,1968,1968,3101,2,1,1316.851556,1316.851556,3507,NO,30.12,35.64,1,-0.12,6106,111.235974,121.373014,131.08479,137.29364,I,Above,Gable,0,5701,,32.88000212,0,0,,,,1,1,,0.03,nav,1,1968,2,, 27507,NJBF000057149,7 EDGEWOOD DR,Somers Point,NJ,39.3300305,-74.600139,RES1,3001,,16,NE,1978,1978,3101,2,1,1321.818474,1321.818474,3507,NO,23.06,37.72,1,-0.48,6106,111.369853,121.542848,131.248637,137.506463,I,Above,Gable,0,5701,,30.39225932,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27508,NJBF000056551,17 HAMILTON DR,Somers Point,NJ,39.32872496,-74.60452923,RES1,3001,,43,NE,1970,1970,3101,1,2,2418.84124,2418.84124,3507,NO,21.09,33.4,1,2,6110,111.314443,121.484126,131.192908,137.434511,I,Above,Hip,0,5701,,27.24215379,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27509,NJBF000056289,1023 W GROVELAND AVE,Somers Point,NJ,39.32814557,-74.6050183,RES1,3001,,16,NE,1972,1972,3101,2,1,1200.544072,1200.544072,3507,NO,27.33,40.4,1,1.18,6106,111.316452,121.482887,131.191536,137.432747,I,Above,Flat,0,5701,,33.86595966,0,0,,,,1,1,,0.03,nav,1,1972,2,, 27510,NJBF000056385,21 HAMILTON DR,Somers Point,NJ,39.328364,-74.604791,RES1,3001,,43,NE,1970,1970,3101,1,2,2305.184318,2305.184318,3507,NO,15.01,22.5,1,-0.6,6110,111.316453,121.484077,131.192737,137.434298,I,Above,Hip,0,5701,,18.75774621,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27511,NJBF000055939,15 STANFORD RD,Somers Point,NJ,39.32734006,-74.60826524,RES1,3001,,16,NE,1970,1970,3101,1,1,1563.447903,1563.447903,3507,NO,13.31,25.12,1,1.93,6110,111.274436,121.437885,131.148838,137.377269,I,Above,Gable,0,5701,,19.21282773,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27512,NJBF000052441,708 HARBOUR COVE,Somers Point,NJ,39.31471416,-74.58820188,RES3C,3001,,37,ME,1985,1985,3301,2,1,8992.021447,8992.021447,3507,NO,25.25,36.52,1,0.92,6106,111.868838,121.932523,131.61273,137.968716,I,Above,Flat,0,NaN,,30.88451537,0,0,,,,1,1,,0.03,nav,1,1985,2,, 27513,NJBF000055782,4 DARTMOUTH RD,Somers Point,NJ,39.32695742,-74.60667683,RES1,3001,,16,NE,1968,1968,3101,1,1,1643.043995,1643.043995,3507,NO,14.74,25.13,1,1.25,6106,111.309219,121.469366,131.178289,137.415591,I,Above,Gable,0,5701,,19.93168978,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27514,NJBF000055833,6 DARTMOUTH RD,Somers Point,NJ,39.32708755,-74.60690805,RES1,3001,,16,NE,1969,1969,3101,1,1,2310.627768,2310.627768,3507,NO,16.85,24.87,1,-0.49,6106,111.302748,121.463864,131.173167,137.408934,I,Above,Gable,0,5701,,20.85844257,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27515,NJBF000055840,16 BUCKNELL RD,Somers Point,NJ,39.32709704,-74.61096391,RES1,3001,,16,NE,1979,1979,3101,2,1,1391.096053,1391.096053,3507,NO,41.03,55.71,1,2.93,6106,111.232596,121.395415,131.10882,137.325011,I,Above,Gable,0,5701,,48.37069748,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27516,NJBF000055228,28 AMBLER ROAD,Somers Point,NJ,39.32551272,-74.60783751,RES1,3001,,NaN,NE,1995,1995,3101,1,1,2974.762675,2974.762675,3507,NO,16.63,29.73,1,1.27,6106,111.315753,121.467526,131.17578,137.412384,I,Above,Flat,0,5701,,23.18334344,0,0,,,,1,1,,0.03,nav,1,1995,1,, 27517,NJBF000055239,113 PRINCETON RD,Somers Point,NJ,39.32554465,-74.60457899,RES1,3001,,16,NE,1964,1964,3101,1,1,1283.884965,1283.884965,3507,NO,13.88,25.95,1,2.38,6106,111.372279,121.522085,131.227339,137.479194,I,Above,Gable,0,5701,,19.91832146,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27518,NJBF000051946,43 E NEW JERSEY AVE,Somers Point,NJ,39.31194026,-74.59460557,RES1,3001,,15,NE,1920,1920,3102,1,2,1105.755047,1105.755047,3505,NO,21.2,26.89,3,5.55,6112,111.799907,121.858966,131.538162,137.876234,I,Above,Gable,0,5701,,24.04399656,0,0,,,,1,1,,0.35,nav,1,1920,1,, 27519,NJBF000054725,19 HADDON RD,Somers Point,NJ,39.32416742,-74.60727721,RES1,3001,,16,NE,1962,1962,3101,2,1,1527.147946,1527.147946,3507,NO,33.04,47.24,1,1.94,6106,111.350427,121.493576,131.199531,137.443282,I,Above,Hip,0,5701,,40.14289988,0,0,,,,1,1,,0.03,nav,1,1962,2,, 27520,NJBF000053915,24 GULPH MILL RD,Somers Point,NJ,39.32174939,-74.61747373,RES1,3001,,16,NE,1967,1967,3101,1,1,2595.419169,2595.419169,3507,NO,18.85,29,1,0.98,6106,111.224205,121.353289,131.065018,137.267723,I,Above,Gable,0,5701,,23.92573192,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27521,NJBF000051923,130 GIBBS AVE,Somers Point,NJ,39.311796,-74.591719,RES1,3001,,16,NE,1929,1929,3102,1,1,1326.176053,1326.176053,3505,NO,22.6,32.38,3,4.32,6106,111.85551,121.90937,131.586991,137.93722,I,Above,Flat,0,5701,,27.49133696,0,1.2,,,,1,1,,0.03,nav,1,1929,1,, 27522,NJBF000052174,30 GIBBS AVE,Somers Point,NJ,39.31324844,-74.59448882,RES1,3001,,16,NE,1930,1930,3101,2,1,844.2678251,844.2678251,3505,NO,33.32,47.68,3,8.87,6112,111.77845,121.844567,131.525741,137.860439,I,Above,Gable,0,5701,,40.49596119,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 27523,NJBF000052207,30 GIBBS AVE,Somers Point,NJ,39.3134081,-74.59446937,RES1,3001,,16,NE,1930,1930,3101,2,1,1382.821878,1382.821878,3505,NO,34.37,44.33,3,2.52,6110,111.775928,121.842905,131.524313,137.858621,I,Above,Gable,0,5701,,39.34802585,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 27524,NJBF000054119,119 BALA DR,Somers Point,NJ,39.32245072,-74.61409141,RES1,3001,,16,NE,1955,1955,3101,2,1,1740.521018,1740.521018,3507,NO,34.98,44.82,1,2.47,6110,111.26659,121.400764,131.110495,137.327379,I,Above,Gable,0,5701,,39.899608,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27525,NJBF000053967,22 GULPH MILL RD,Somers Point,NJ,39.32194565,-74.61728756,RES1,3001,,16,NE,1967,1967,3101,1,1,1818.991079,1818.991079,3507,NO,15.04,20.1,1,0.22,6106,111.223557,121.353891,131.065788,137.268722,I,Above,Gable,0,5701,,17.5704309,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27526,NJBF000055285,115 PRINCETON RD,Somers Point,NJ,39.32566548,-74.60437497,RES1,3001,,16,NE,1964,1964,3101,2,1,2664.80768,2664.80768,3507,NO,37.49,50.3,1,2.22,6106,111.37368,121.524058,131.229271,137.481683,I,Above,Gable,0,5701,,43.89161906,0,0,,,,1,1,,0.03,nav,1,1964,2,, 27527,NJBF000054955,103 PRINCETON RD,Somers Point,NJ,39.32474077,-74.60539027,RES1,3001,,16,NE,1964,1964,3101,1,1,1653.911302,1653.911302,3507,NO,15.7,24.35,1,1.21,6110,111.372807,121.518279,131.223273,137.473984,I,Above,Gable,0,5701,,20.02610303,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 27528,NJBF000055031,11 HARNED AVE,Somers Point,NJ,39.32493988,-74.58317518,RES1,3001,,16,NE,1969,1969,3102,1,1,2124.886913,2124.886913,3505,NO,21.12,32.62,3,5.03,6110,111.784123,121.893446,131.582209,137.929118,I,Above,Gable,0,5701,,26.87122268,0,0,,,,1,1,,0.35,nav,1,1969,1,, 27529,NJBF000052692,551 LAUNCH & 18 KAPPELLA,Somers Point,NJ,39.31659108,-74.5863839,RES1,3001,,16,NE,1940,1940,3102,2,2,1107.180615,1107.180615,3505,NO,35.53,50.49,3,7.17,6106,111.86979,121.940212,131.621996,137.979907,I,Above,Flat,0,5701,,43.01378832,0,0,,,,1,1,,0.03,nav,1,1940,2,, 27530,NJBF000055369,148 EXTON RD,Somers Point,NJ,39.32589216,-74.611102,RES1,3001,,16,NE,1979,1979,3101,1,1,1985.021615,1985.021615,3507,NO,20.34,27.91,1,1.12,6106,111.2527,121.407957,131.119907,137.33954,I,Above,Gable,0,5701,,24.12235536,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27531,NJBF000054125,8 OSBORNE RD,Somers Point,NJ,39.32246175,-74.6071829,RES1,3001,,16,NE,1961,1961,3101,1,1,1804.398163,1804.398163,3507,NO,15.49,24.42,1,-0.36,6110,111.383592,121.516278,131.219786,137.469632,I,Above,Gable,0,5701,,19.95562847,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27532,NJBF000053447,44 GULPH MILL RD,Somers Point,NJ,39.3199705,-74.61874,RES1,3001,,16,NE,1972,1972,3101,1,1,529.9925397,529.9925397,3507,NO,13.71,25.78,1,0.2,6106,111.236822,121.354858,131.064521,137.267218,I,Above,Gable,0,5701,,19.74690062,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27533,NJBF000054663,131 COLWICK DR,Somers Point,NJ,39.32401213,-74.61365219,RES1,3001,,16,NE,1957,1957,3101,1,1,710.8883234,710.8883234,3507,NO,17.47,30.26,1,-0.89,6110,111.244844,121.388567,131.100334,137.31398,I,Above,Hip,0,5701,,23.86742472,0,0,,,,1,1,,0.35,nav,1,1957,1,, 27534,NJBF000054630,129 COLWICK DR,Somers Point,NJ,39.323921,-74.6138645,RES1,3001,,16,NE,1957,1957,3101,1,1,504.9279932,504.9279932,3507,NO,12.76,19.71,1,-0.17,6106,111.242996,121.386142,131.097977,137.310895,I,Above,Gable,0,5701,,16.23127605,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 27535,NJBF000051900,126 GIBBS AVE,Somers Point,NJ,39.31158403,-74.59180005,RES1,3001,,14,NE,1930,1930,3102,1,1,1253.542893,1253.542893,3505,NO,24.71,35.4,3,7.95,6102,111.857821,121.910655,131.587987,137.938499,I,Above,Flat,0,5701,,30.05445347,0,0,,,,1,1,,0.03,nav,1,1930,1,, 27536,NJBF000054707,14 HADDON RD,Somers Point,NJ,39.32410389,-74.60799014,RES1,3001,,16,NE,1963,1963,3101,1,1,1709.922122,1709.922122,3507,NO,21.19,28.86,1,2.58,6106,111.339235,121.482363,131.188886,137.429477,I,Above,Gable,0,5701,,25.02452939,0,0,,,,1,1,,0.03,nav,1,1963,1,, 27537,NJBF000054637,515 NEW RD,Somers Point,NJ,39.32393321,-74.60137936,COM1,3001,,NaN,ME,1970,1968,3401,1,1,15431.09761,15431.09761,3507,NO,16.42,22.88,1,0.86,6112,111.459055,121.595921,131.296439,137.568264,I,Above,Flat,0,NaN,,19.65366358,0,0,,,,1,1,,1,nav,1,1970,1,, 27538,NJBF000054583,515 NEW RD,Somers Point,NJ,39.32378402,-74.60185767,COM1,3001,,NaN,ME,1968,1968,3401,1,1,1787.299361,1787.299361,3507,NO,18.85,24.38,1,0.51,6112,111.453184,121.589657,131.29039,137.560514,I,Above,Flat,0,NaN,,21.61342811,0,0,,,,1,1,,0.35,nav,1,1968,1,, 27539,NJBF000051721,,Somers Point,NJ,39.31023054,-74.61837766,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4197.451339,4197.451339,3507,NO,36.11,45.27,1,0.42,6106,111.421947,121.485998,131.175273,137.413783,I,Above,Gable,0,NaN,,40.68945503,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27540,NJBF000051803,,Somers Point,NJ,39.31087768,-74.6177653,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3086.311098,3086.311098,3507,NO,40.02,52.17,1,1.33,6106,111.420012,121.48765,131.177988,137.417154,I,Above,Gable,0,NaN,,46.09360271,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27541,NJBF000051827,,Somers Point,NJ,39.31102697,-74.61797096,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4154.372429,4154.372429,3507,NO,39.18,51.18,1,2.05,6106,111.413955,121.482347,131.173139,137.410816,I,Above,Gable,0,NaN,,45.18245908,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27542,NJBF000051818,,Somers Point,NJ,39.31095796,-74.61733554,RES3C,3001,,NaN,ME,1969,0,3301,1,1,5237.315218,5237.315218,3507,NO,12.73,22.13,1,2.06,6106,111.425495,121.493647,131.183895,137.424809,I,Above,Flat,0,NaN,,17.43049614,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27543,NJBF000051916,,Somers Point,NJ,39.31174597,-74.61757422,RES3C,3001,,NaN,ME,1973,0,3301,2,1,5173.741626,5173.741626,3507,NO,27.85,34.65,1,1.89,6106,111.407208,121.479556,131.171666,137.408736,I,Above,Hip,0,NaN,,31.24722192,0,0,,,,1,1,,0.03,nav,1,1973,2,, 27544,NJBF000051873,50 MAYS LANDING RD,Somers Point,NJ,39.31138,-74.6179185,RES3C,3001,20,NaN,ME,1973,1973,3301,1,1,1348.338015,1348.338015,3507,NO,13.44,20.78,1,2.43,6106,111.408332,121.478631,131.170165,137.406865,I,Above,Gable,0,NaN,,17.11111646,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27545,NJBF000051938,,Somers Point,NJ,39.31187937,-74.61862639,RES3C,3001,,NaN,ME,1973,0,3301,1,1,5345.251597,5345.251597,3507,NO,20.18,26.68,1,2.42,6106,111.387792,121.460589,131.153666,137.385272,I,Above,Flat,0,NaN,,23.43017202,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27546,NJBF000053994,215 BAY AVE,Somers Point,NJ,39.3220408,-74.58520518,RES1,3001,,18,NE,2006,2006,3102,2,1,1520.190994,1520.190994,3505,NO,31.34,37.57,3,6.75,6106,111.795669,121.893736,131.580999,137.92808,I,Above,Gable,0,5701,,34.4536018,0,0,,,,1,1,,0.03,nav,1,2006,2,, 27547,NJBF000054875,12 HARNED AVE,Somers Point,NJ,39.32454082,-74.58345828,RES1,3001,,16,NE,1969,1969,3102,1,1,2506.924629,2506.924629,3505,NO,22.41,28.27,3,7.81,6106,111.785581,121.893398,131.581986,137.928908,I,Above,Gable,0,5701,,25.33835854,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27548,NJBF000051701,841 BAY AVE,Somers Point,NJ,39.3100515,-74.595735,RES1,3001,,16,NE,1920,1920,3102,3,3,1621.120747,1621.120747,3505,NO,33.95,45.13,3,-0.92,6106,111.813436,121.863722,131.540373,137.879372,I,Above,Hip,0,5701,,39.54353257,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 27549,NJBF000054180,181 BALA DR,Somers Point,NJ,39.3226425,-74.609837,RES1,3001,,16,NE,1964,1964,3101,1,1,1465.481301,1465.481301,3507,NO,13.42,23.65,1,0.25,6110,111.334585,121.469498,131.175616,137.412333,I,Above,Gable,0,5701,,18.53594859,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27550,NJBF000052508,209 HARBOUR COVE,Somers Point,NJ,39.31520266,-74.58908648,RES3C,3001,,37,ME,1984,1984,3301,1,1,8995.665049,8995.665049,3507,NO,12.76,19.01,1,0.5,6106,111.843475,121.911502,131.592789,137.94384,I,Above,Flat,0,NaN,,15.88559375,0,0,,,,1,1,,0.03,nav,1,1984,1,, 27551,NJBF000052491,507 HARBOUR COVE,Somers Point,NJ,39.31512407,-74.58842748,RES3C,3001,,37,ME,1985,1985,3301,1,1,6386.934153,6386.934153,3507,NO,13.26,18.29,1,-0.91,6106,111.857278,121.923642,131.604506,137.958427,I,Above,Flat,0,NaN,,15.77787453,0,0,,,,1,1,,0.03,nav,1,1985,1,, 27552,NJBF000055036,110 OSBORNE RD,Somers Point,NJ,39.32495359,-74.60446285,RES1,3001,,16,NE,1964,1964,3101,1,1,1536.574787,1536.574787,3507,NO,13.9,22.35,1,0.52,6110,111.385235,121.531297,131.235724,137.490058,I,Above,Gable,0,5701,,18.12511148,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27553,NJBF000054959,172 BALA DR,Somers Point,NJ,39.3247505,-74.6116935,RES1,3001,,16,NE,1968,1968,3101,1,1,1801.915777,1801.915777,3507,NO,13.03,20.38,1,-0.9,6106,111.263916,121.412155,131.123099,137.34375,I,Above,Hip,0,5701,,16.70488286,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27554,NJBF000053864,26 GULPH MILL RD,Somers Point,NJ,39.32154596,-74.61755103,RES1,3001,,16,NE,1967,1967,3101,2,1,1317.753466,1317.753466,3507,NO,23.81,35.22,1,0.45,6106,111.226731,121.354576,131.06602,137.269056,I,Above,Hip,0,5701,,29.51227401,0,0,,,,1,1,,0.03,nav,1,1967,2,, 27555,NJBF000054917,106 OSBORNE RD,Somers Point,NJ,39.32464191,-74.60480747,RES1,3001,,16,NE,1963,1963,3101,2,1,1431.58243,1431.58243,3507,NO,34.05,40.62,1,2.56,6110,111.38491,121.529328,131.233674,137.48743,I,Above,Gable,0,5701,,37.33379151,0,0,,,,1,1,,0.35,nav,1,1963,2,, 27556,NJBF000054089,101 E PIERSON AVE,Somers Point,NJ,39.32235467,-74.58653866,RES1,3001,,16,NE,1958,1958,3102,1,1,2689.096574,2689.096574,3505,NO,14.88,19.91,3,-1.04,6112,111.764364,121.86717,131.555497,137.896238,I,Above,Gable,0,5701,,17.39435301,0,0,,,,1,1,,0.35,nav,1,1958,1,, 27557,NJBF000053357,12 WISTERIA WALK,Somers Point,NJ,39.31963471,-74.61432599,RES1,3001,,16,NE,1966,1966,3101,1,1,1771.125919,1771.125919,3507,NO,14.74,28.43,1,-0.21,6106,111.31495,121.432313,131.137503,137.362933,I,Above,Gable,0,5701,,21.58252245,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27558,NJBF000054985,140 BALA DR,Somers Point,NJ,39.32481433,-74.61498849,RES1,3001,,16,NE,1959,1959,3101,1,1,1046.584194,1046.584194,3507,NO,12.96,18.28,1,0.8,6106,111.207759,121.356228,131.07055,137.274848,I,Above,Gable,0,5701,,15.62022864,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27559,NJBF000054839,505 NEW RD,Somers Point,NJ,39.32444447,-74.60093653,COM1,3001,101,NaN,ME,1954,1954,3401,1,1,10049.17177,10049.17177,3507,NO,13.12,23.94,1,2.61,6112,111.457654,121.597129,131.297891,137.570085,I,Above,Flat,0,NaN,,18.53098785,0,0,,,,1,1,,1,nav,1,1954,1,, 27560,NJBF000054133,202 BALA DR,Somers Point,NJ,39.32248827,-74.60834959,RES1,3001,,16,NE,1959,1959,3101,1,1,1390.365703,1390.365703,3507,NO,12.97,25.12,1,0.57,6112,111.362943,121.496363,131.200928,137.445207,I,Above,Gable,0,5701,,19.04487224,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27561,NJBF000055884,8 DARTMOUTH RD,Somers Point,NJ,39.32720457,-74.60711673,RES1,3001,,16,NE,1969,1969,3101,1,1,1628.262036,1628.262036,3507,NO,15.85,26.58,1,-0.15,6106,111.296924,121.458904,131.168552,137.402931,I,Above,Gable,0,5701,,21.21482033,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27562,NJBF000055934,10 DARTMOUTH RD,Somers Point,NJ,39.32732409,-74.60733744,RES1,3001,,16,NE,1969,1969,3101,1,1,1481.496202,1481.496202,3507,NO,17.26,24.99,1,2.23,6106,111.290876,121.453735,131.163742,137.396672,I,Above,Gable,0,5701,,21.12512449,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27563,NJBF000054937,25 HADDON RD,Somers Point,NJ,39.32469714,-74.60671566,RES1,3001,,16,NE,1964,1964,3101,1,1,2380.038603,2380.038603,3507,NO,10.81,23.5,1,-0.53,6110,111.350387,121.496476,131.202621,137.447256,I,Above,Gable,0,5701,,17.15159316,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27564,NJBF000053767,30 GULPH MILL RD,Somers Point,NJ,39.32119144,-74.61779795,RES1,3001,,16,NE,1968,1968,3101,1,1,1666.728099,1666.728099,3507,NO,14.34,19.75,1,2.8,6106,111.229332,121.354969,131.066011,137.269072,I,Above,Flat,0,5701,,17.04552076,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27565,NJBF000055282,103 N AMBLER RD,Somers Point,NJ,39.32565849,-74.60681433,RES1,3001,,16,NE,1966,1966,3101,2,1,644.7775449,644.7775449,3507,NO,35.21,48.33,1,0.91,6106,111.330887,121.482993,131.19046,137.431439,I,Above,Hip,0,5701,,41.76809255,0,1.2,,,,1,1,,0.03,nav,1,1966,2,, 27566,NJBF000053690,33 LAUREL DR SOUTH,Somers Point,NJ,39.32089311,-74.61472968,RES1,3001,,16,NE,1962,1962,3101,1,1,2250.393693,2250.393693,3507,NO,15.51,21.71,1,2.55,6106,111.284956,121.40971,131.117434,137.33658,I,Above,Gable,0,5701,,18.61161666,0,0,,,,1,1,,0.03,nav,1,1962,1,, 27567,NJBF000053564,38 GULPH MILL RD,Somers Point,NJ,39.32042969,-74.61823592,RES1,3001,,16,NE,1973,1973,3101,2,1,1731.024187,1731.024187,3507,NO,28.68,41.16,1,-0.24,6106,111.236394,121.357356,131.067419,137.27099,I,Above,Gable,0,5701,,34.91860947,0,0,,,,1,1,,0.03,nav,1,1973,2,, 27568,NJBF000054121,114 COLWICK DR,Somers Point,NJ,39.3224535,-74.6132875,RES1,3001,,16,NE,1955,1955,3101,2,1,1361.007268,1361.007268,3507,NO,31.84,42.73,1,0.21,6112,111.279902,121.414145,131.123131,137.343914,I,Above,Hip,0,5701,,37.28604091,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27569,NJBF000052646,555 LAUNCH AVE,Somers Point,NJ,39.31621007,-74.58668557,RES1,3001,,16,NE,1971,1971,3102,2,1,1242.229418,1242.229418,3505,NO,30.15,42.92,3,3.91,6106,111.87083,121.939771,131.621221,137.979008,I,Above,Flat,0,5701,,36.53546086,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 27570,NJBF000052435,100 MEDICAL CENTER WAY,Somers Point,NJ,39.31468953,-74.59374873,COM6,3001,,NaN,E,1969,0,3404,5,1,75052.43979,75052.43979,3507,NO,77.12,87.95,1,0.99,6110,111.766011,121.839054,131.521997,137.855497,I,Above,Gable,0,NaN,,82.53549705,0,0,,,,2,2,,1,nav,1,1969,5,, 27571,NJBF000057571,16 EDGEWOOD DR,Somers Point,NJ,39.3308021,-74.59977806,RES1,3001,,16,NE,1978,1978,3101,2,1,1623.276597,1623.276597,3507,NO,27.11,37.94,1,1.9,6106,111.362374,121.539718,131.245817,137.502803,I,Above,Gable,0,5701,,32.52761072,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27572,NJBF000057737,14 CRESTMONT DR,Somers Point,NJ,39.33106933,-74.60089034,RES1,3001,,43,NE,1979,1979,3101,2,2,1249.017829,1249.017829,3507,NO,21.41,33.48,1,-0.34,6106,111.337048,121.5176,131.224992,137.47595,I,Above,Gable,0,5701,,27.44872682,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27573,NJBF000053773,313 BAY AVE,Somers Point,NJ,39.32123012,-74.58592065,RES1,3001,,16,NE,1961,1961,3102,1,1,1787.113436,1787.113436,3505,NO,22.52,32.14,3,6.11,6110,111.796223,121.891369,131.578204,137.924726,I,Above,Gable,0,5701,,27.33036334,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27574,NJBF000054589,10 HADDON RD,Somers Point,NJ,39.32380117,-74.60837042,RES1,3001,,16,NE,1962,1962,3101,1,1,1773.595997,1773.595997,3507,NO,14.54,21.23,1,1.55,6106,111.338286,121.479728,131.186181,137.425984,I,Above,Gable,0,5701,,17.88429124,0,0,,,,1,1,,0.03,nav,1,1962,1,, 27575,NJBF000058144,11 WILSON AVE,Somers Point,NJ,39.33178116,-74.6037921,RES1,3001,,16,NE,1981,1981,3101,2,1,1423.201491,1423.201491,3507,NO,37.76,48.28,1,0.65,6112,111.2712,121.459738,131.170658,137.405614,I,Above,Hip,0,5701,,43.02081778,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 27576,NJBF000058011,15 FOX TAIL CT,Somers Point,NJ,39.331553,-74.6072605,RES1,3001,,27,NE,1987,1987,3101,2,1,1318.597129,1318.597129,3507,NO,34.91,43.09,1,0.48,6106,111.213659,121.403657,131.11808,137.337146,I,Above,Gable,0,5701,,38.99842724,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27577,NJBF000051715,110 WOODLAND AVE,Somers Point,NJ,39.3101715,-74.6015815,COM1,3001,219,NaN,ME,1993,1993,3401,1,1,3905.349792,3905.349792,3507,NO,16.99,30.06,1,0.73,6106,111.70675,121.764411,131.444102,137.758305,I,Above,Gable,0,NaN,,23.52200313,0,0,,,,1,1,,0.03,nav,1,1993,1,, 27578,NJBF000054936,10 HARNED AVE,Somers Point,NJ,39.32469456,-74.58369399,RES1,3001,,16,NE,1965,1965,3102,2,1,1563.616064,1563.616064,3505,NO,41.36,53.03,3,7.93,6110,111.778254,121.887508,131.57636,137.92188,I,Above,Gable,0,5701,,47.19583533,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27579,NJBF000051646,,Somers Point,NJ,39.30939844,-74.61489854,RES1,3001,,NaN,NE,1969,0,3102,2,1,2408.996358,2408.996358,3507,NO,21.08,27.98,1,-0.5,6106,111.493818,121.553803,131.239217,137.496821,I,Above,Gable,0,5701,,24.52670317,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27580,NJBF000051779,1246 ATKINSON AVE,Somers Point,NJ,39.31070483,-74.61438772,RES1,3001,999,43,NE,1930,1930,3102,2,2,1246.028779,1246.028779,3507,NO,30.8,44.27,1,-0.26,6106,111.47834,121.545336,131.233245,137.488792,I,Above,Gable,0,5701,,37.53698119,0,0,,,,1,1,,0.03,nav,1,1930,2,, 27581,NJBF000054077,12 GULPH MILL RD,Somers Point,NJ,39.32230915,-74.61599976,RES1,3001,,16,NE,1968,1968,3101,2,1,2298.103403,2298.103403,3507,NO,29.33,39.38,1,2.28,6106,111.237786,121.370735,131.082032,137.290057,I,Above,Gable,0,5701,,34.3549453,0,0,,,,1,1,,0.03,nav,1,1968,2,, 27582,NJBF000054084,14 GULPH MILL RD,Somers Point,NJ,39.32232981,-74.6162541,RES1,3001,,16,NE,1967,1967,3101,1,1,1286.9795,1286.9795,3507,NO,13.44,27.77,1,-0.38,6110,111.233243,121.366243,131.077816,137.284517,I,Above,Gable,0,5701,,20.60467665,0,0,,,,1,1,,0.35,nav,1,1967,1,, 27583,NJBF000057755,17 CRESTMONT DR,Somers Point,NJ,39.33111163,-74.60011424,RES1,3001,,43,NE,1979,1979,3101,2,2,1221.357727,1221.357727,3507,NO,38.42,50.48,1,1.07,6106,111.350515,121.530285,131.236959,137.491381,I,Above,Hip,0,5701,,44.45363302,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27584,NJBF000057732,200 EXTON RD,Somers Point,NJ,39.33106224,-74.60669091,RES1,3001,,27,NE,1987,1987,3101,2,1,1358.417558,1358.417558,3507,NO,24.39,30.84,1,-0.44,6106,111.23281,121.419219,131.132559,137.356035,I,Above,Flat,0,5701,,27.61726673,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27585,NJBF000058201,4 WOODLOT CT,Somers Point,NJ,39.3318872,-74.60097586,RES1,3001,,16,NE,1965,1965,3101,2,1,1118.233009,1118.233009,3507,NO,41.3,53.8,1,2.69,6110,111.320475,121.50634,131.214476,137.462354,I,Above,Gable,0,5701,,47.55001613,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27586,NJBF000053557,7 WISTERIA WALK,Somers Point,NJ,39.32039785,-74.61448335,RES1,3001,,16,NE,1962,1962,3101,2,1,2100.242882,2100.242882,3507,NO,22.37,36.45,1,-0.52,6106,111.298215,121.420064,131.126718,137.348768,I,Above,Gable,0,5701,,29.40988599,0,0,,,,1,1,,0.03,nav,1,1962,2,, 27587,NJBF000053430,47 GULPH MILL RD,Somers Point,NJ,39.31989183,-74.617437,RES1,3001,,16,NE,1965,1965,3101,1,1,2045.18997,2045.18997,3507,NO,13.02,20.59,1,2.14,6106,111.259276,121.377423,131.085782,137.295179,I,Above,Gable,0,5701,,16.80560703,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27588,NJBF000057909,40 CHAPMAN BLVD,Somers Point,NJ,39.33136892,-74.60565658,RES3D,3001,20,NaN,E,1970,1970,3303,4,1,8057.903198,8057.903198,3507,NO,45.58,55.73,1,1.06,6110,111.245431,121.433042,131.145563,137.372985,I,Above,Gable,0,5701,,50.65268435,0,0,,,,1,1,,0.35,nav,1,1970,4,, 27589,NJBF000057667,15 CEDAR CT,Somers Point,NJ,39.33096373,-74.60774912,RES1,3001,,27,NE,1987,1987,3101,2,1,1303.617741,1303.617741,3507,NO,30.74,41.91,1,0.3,6106,111.216034,121.402488,131.116877,137.335564,I,Above,Gable,0,5701,,36.3264059,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27590,NJBF000055368,13 CORNELL RD,Somers Point,NJ,39.32588884,-74.60910245,RES1,3001,,16,NE,1970,1970,3101,2,1,1822.326622,1822.326622,3507,NO,27.45,35.57,1,0.66,6106,111.286938,121.441617,131.15158,137.380881,I,Above,Hip,0,5701,,31.51249748,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27591,NJBF000058106,16 WILSON AVE,Somers Point,NJ,39.33172398,-74.60442023,RES1,3001,,16,NE,1981,1981,3101,1,1,1884.961941,1884.961941,3507,NO,16.4,23.78,1,2.99,6110,111.260958,121.44976,131.161288,137.393443,I,Above,Gable,0,5701,,20.09118803,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 27592,NJBF000058036,3 WHITMAN DR,Somers Point,NJ,39.33158567,-74.60457478,RES1,3001,,16,NE,1981,1981,3101,1,1,1768.056974,1768.056974,3507,NO,16.71,27.65,1,1.22,6110,111.26073,121.448787,131.160357,137.392233,I,Above,Hip,0,5701,,22.18394305,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 27593,NJBF000055502,118 PRINCETON RD,Somers Point,NJ,39.32626014,-74.60446786,RES1,3001,,16,NE,1966,1966,3101,1,1,2282.222158,2282.222158,3507,NO,15.95,29.7,1,1.59,6106,111.361051,121.515201,131.221203,137.471227,I,Above,Gable,0,5701,,22.82762381,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27594,NJBF000054973,174 JORDAN RD,Somers Point,NJ,39.32479249,-74.60334252,RES1,3001,,16,NE,1964,1964,3101,2,1,1482.227015,1482.227015,3507,NO,33.46,39.91,1,-0.79,6106,111.40811,121.552195,131.255432,137.515485,I,Above,Hip,0,5701,,36.68421375,0,0,,,,1,1,,0.03,nav,1,1964,2,, 27595,NJBF000054754,4 SWARTHMORE RD,Somers Point,NJ,39.32423189,-74.60277912,RES1,3001,,16,NE,1965,1965,3101,1,1,1317.703647,1317.703647,3507,NO,14.72,27.31,1,0.14,6110,111.428471,121.568596,131.270659,137.535126,I,Above,Gable,0,5701,,21.016377,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27596,NJBF000055534,1409 MASSACHUSETTS AVE,Somers Point,NJ,39.32636009,-74.60830519,RES1,3001,,16,NE,1971,1971,3101,1,1,2320.126852,2320.126852,3507,NO,17.17,28.44,1,-0.59,6110,111.291945,121.449238,131.159024,137.39056,I,Above,Gable,0,5701,,22.80582591,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27597,NJBF000054847,170 JORDAN RD,Somers Point,NJ,39.3244775,-74.603669,RES1,3001,,16,NE,1964,1964,3101,1,1,988.4335732,988.4335732,3507,NO,15.82,23.45,1,0.34,6110,111.40809,121.550547,131.253683,137.513252,I,Above,Gable,0,5701,,19.63463931,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27598,NJBF000053479,64 GULPH MILL RD,Somers Point,NJ,39.320093,-74.61677175,RES1,3001,,16,NE,1968,1968,3101,2,1,2286.02444,2286.02444,3507,NO,26.04,36.88,1,-0.66,6106,111.266343,121.385898,131.094034,137.305992,I,Above,Gable,0,5701,,31.45730305,0,0,,,,1,1,,0.03,nav,1,1968,2,, 27599,NJBF000051907,,Somers Point,NJ,39.31166048,-74.59174965,RES1,3001,,NaN,NE,1969,0,3102,2,1,1316.134549,1316.134549,3505,NO,28.55,36.5,3,1.27,6106,111.85738,121.910547,131.587974,137.938468,I,Above,Flat,0,5701,,32.52499477,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27600,NJBF000054965,2 CORNELL RD,Somers Point,NJ,39.32476667,-74.60859549,RES1,3001,,16,NE,1968,1968,3101,1,1,527.9536208,527.9536208,3507,NO,12.49,26.16,1,1.38,6106,111.316499,121.463992,131.171979,137.407478,I,Above,Gable,0,5701,,19.32505142,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27601,NJBF000055014,2 CORNELL RD,Somers Point,NJ,39.32489727,-74.60848986,RES1,3001,,16,NE,1968,1968,3101,1,1,2300.762011,2300.762011,3507,NO,16.23,27.05,1,2.96,6106,111.315899,121.464152,131.172214,137.407778,I,Above,Gable,0,5701,,21.64169404,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27602,NJBF000055550,23 SOUTHVIEW DR,Somers Point,NJ,39.32638687,-74.60157828,RES1,3001,,16,NE,1967,1967,3101,2,1,1257.395669,1257.395669,3507,NO,36.22,44.43,1,-0.61,6112,111.410443,121.562538,131.266063,137.529069,I,Above,Flat,0,5701,,40.32300583,0,0,,,,1,1,,0.35,nav,1,1967,2,, 27603,NJBF000054903,20 HADDON RD,Somers Point,NJ,39.32459554,-74.60751068,RES1,3001,,16,NE,1963,1963,3101,1,1,2207.218973,2207.218973,3507,NO,20.42,33.91,1,1.24,6106,111.338421,121.484339,131.191084,137.432301,I,Above,Hip,0,5701,,27.16525874,0,0,,,,1,1,,0.03,nav,1,1963,1,, 27604,NJBF000053482,2 VIOLET LN,Somers Point,NJ,39.32009722,-74.61304261,RES1,3001,,16,NE,1960,1960,3101,1,1,2177.847891,2177.847891,3507,NO,13.09,26.6,1,0.07,6112,111.327696,121.447832,131.152719,137.382738,I,Above,Gable,0,5701,,19.8471661,0,0,,,,1,1,,0.35,nav,1,1960,1,, 27605,NJBF000055363,19 COLGATE RD,Somers Point,NJ,39.32588082,-74.61049547,RES1,3001,,16,NE,1970,1970,3101,1,1,1870.337393,1870.337393,3507,NO,19.5,33.89,1,1.67,6106,111.263229,121.418291,131.129619,137.352232,I,Above,Gable,0,5701,,26.69636336,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27606,NJBF000055616,11 BUCKNELL RD,Somers Point,NJ,39.32657222,-74.61091632,RES1,3001,,16,NE,1979,1979,3101,2,1,1560.993571,1560.993571,3507,NO,36.21,45.46,1,1.43,6106,111.243195,121.402689,131.11536,137.333577,I,Above,Gable,0,5701,,40.83441596,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27607,NJBF000055538,65 BUCKNELL RD,Somers Point,NJ,39.32636505,-74.61257645,RES1,3001,,16,NE,1979,1979,3101,2,1,1504.863133,1504.863133,3507,NO,30.73,37.87,1,1.74,6106,111.218987,121.377362,131.09146,137.302275,I,Above,Gable,0,5701,,34.29888334,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27608,NJBF000053427,35 GULPH MILL RD,Somers Point,NJ,39.31988143,-74.61805732,RES1,3001,,16,NE,1972,1972,3101,2,1,1306.402222,1306.402222,3507,NO,27.44,37.29,1,0.78,6106,111.249461,121.367294,131.076182,137.282567,I,Above,Gable,0,5701,,32.36594984,0,0,,,,1,1,,0.03,nav,1,1972,2,, 27609,NJBF000053462,126 1/2 E CEDAR AVE,Somers Point,NJ,39.3200334,-74.58727129,RES1,3001,,43,NE,1925,1925,3102,1,2,897.8790222,897.8790222,3505,NO,11.95,23.04,3,-2.64,6112,111.791613,121.882957,131.569247,137.913745,I,Above,Flat,0,5701,,17.49517682,0,0,,,,1,1,,0.35,nav,1,1925,1,, 27610,NJBF000055508,112 HADDON RD,Somers Point,NJ,39.32627624,-74.60575344,RES1,3001,,16,NE,1961,1961,3101,1,1,1635.899322,1635.899322,3507,NO,12.06,18.4,1,-0.52,6106,111.338049,121.493304,131.200527,137.444466,I,Above,Gable,0,5701,,15.22564788,0,0,,,,1,1,,0.03,nav,1,1961,1,, 27611,NJBF000055594,119 HADDON RD,Somers Point,NJ,39.32651529,-74.60488183,RES1,3001,,16,NE,1966,1966,3101,1,1,1828.863885,1828.863885,3507,NO,17.89,29.4,1,1.61,6106,111.349006,121.505086,131.211773,137.459017,I,Above,Gable,0,5701,,23.64453279,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27612,NJBF000051817,79 GREATE BAY DR,Somers Point,NJ,39.31095712,-74.60738657,RES3A,3001,,29,NE,1977,1977,3301,2,1,2346.024777,2346.024777,3507,NO,27.62,41.3,1,-0.03,6106,111.591481,121.657812,131.342109,137.628571,I,Above,Gable,0,5701,,34.45833303,0,0,,,,1,1,,0.03,nav,1,1977,2,, 27613,NJBF000051861,45 ANCHORAGE LN,Somers Point,NJ,39.31130862,-74.59479734,RES1,3001,,16,NE,1900,1900,3102,2,1,1185.938631,1185.938631,3505,NO,32.29,40.93,3,-1.68,6112,111.807804,121.863667,131.541948,137.881091,I,Above,Gable,0,5701,,36.60697142,0,0,,,,1,1,,0.35,nav,1,1900,2,, 27614,NJBF000051869,50 E NEW JERSEY AVE,Somers Point,NJ,39.3113611,-74.59460645,RES1,3001,,16,NE,1915,1915,3102,2,1,614.9631807,614.9631807,3505,NO,34.96,46.84,3,4.77,6110,111.810348,121.866225,131.544498,137.884272,I,Above,Flat,0,5701,,40.8987511,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 27615,NJBF000053326,116 E GROVELAND AVE,Somers Point,NJ,39.31952409,-74.58863157,RES1,3001,,16,NE,1995,1995,3102,1,1,1642.544459,1642.544459,3505,NO,16.28,30.31,3,5.07,6112,111.774786,121.866032,131.552498,137.892916,I,Above,Gable,0,5701,,23.29737438,0,0,,,,1,1,,0.35,nav,1,1995,1,, 27616,NJBF000055387,108 HADDON RD,Somers Point,NJ,39.32593999,-74.60608193,RES1,3001,,16,NE,1965,1965,3101,1,1,1949.875976,1949.875976,3507,NO,13.43,25.69,1,0.11,6106,111.338483,121.491872,131.198999,137.4425,I,Above,Gable,0,5701,,19.55846059,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27617,NJBF000051787,40 DELAWARE AVE,Somers Point,NJ,39.31074986,-74.59556131,RES1,3001,,16,NE,1920,1920,3102,2,2,2136.028645,2136.028645,3505,NO,25.95,37.54,3,1.25,6112,111.803997,121.857858,131.535589,137.873243,I,Above,Hip,0,5701,,31.74501191,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 27618,NJBF000053529,66 GULPH MILL RD,Somers Point,NJ,39.32027551,-74.61665407,RES1,3001,,16,NE,1967,1967,3101,1,1,1920.924714,1920.924714,3507,NO,19.13,28.4,1,1.19,6106,111.26487,121.385536,131.093898,137.305796,I,Above,Gable,0,5701,,23.76141041,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27619,NJBF000055599,156 EXTON RD,Somers Point,NJ,39.32652499,-74.61043486,RES1,3001,,16,NE,1979,1979,3101,1,1,1521.745117,1521.745117,3507,NO,18.12,29.95,1,-0.89,6106,111.252265,121.411356,131.123477,137.344191,I,Above,Gable,0,5701,,24.03618881,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27620,NJBF000055603,125 PRINCETON RD,Somers Point,NJ,39.32653004,-74.60359689,RES1,3001,,16,NE,1965,1965,3101,2,1,1438.449978,1438.449978,3507,NO,40.26,50.31,1,2.19,6112,111.371569,121.526624,131.232133,137.485335,I,Above,Hip,0,5701,,45.28539425,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 27621,NJBF000055152,100 HADDON RD,Somers Point,NJ,39.32528883,-74.60680882,RES1,3001,,16,NE,1966,1966,3101,1,1,2152.082792,2152.082792,3507,NO,13.64,27.89,1,2.44,6106,111.337807,121.487617,131.194611,137.436842,I,Above,Gable,0,5701,,20.76655976,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27622,NJBF000055392,1403 MASSACHUSETTS AVE,Somers Point,NJ,39.32594956,-74.60771975,RES1,3001,,16,NE,1968,1968,3101,1,1,1672.498287,1672.498287,3507,NO,16.36,26.06,1,2.25,6106,111.309697,121.464135,131.172834,137.408538,I,Above,Gable,0,5701,,21.21312869,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27623,NJBF000055596,50 BUCKNELL RD,Somers Point,NJ,39.32652103,-74.61213505,RES1,3001,,16,NE,1979,1979,3101,2,1,1439.740162,1439.740162,3507,NO,34.61,46.12,1,1.58,6106,111.223501,121.382837,131.096692,137.309133,I,Above,Gable,0,5701,,40.36318574,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 27624,NJBF000052173,76 MAYS LANDING RD,Somers Point,NJ,39.31324634,-74.6174798,RES1,3001,,16,NE,1976,1976,3101,1,1,648.3943385,648.3943385,3505,NO,15.22,22.36,3,3.89,6112,111.381214,121.461745,131.156996,137.389322,I,Above,Gable,0,5701,,18.79389784,0,0,,,,1,1,,0.7,nav,1,1976,1,, 27625,NJBF000052162,76 MAYS LANDING RD,Somers Point,NJ,39.31319389,-74.6173578,RES1,3001,,16,NE,1976,1976,3101,1,1,1398.685955,1398.685955,3505,NO,15.02,24.49,3,-2.11,6112,111.384145,121.46442,131.159479,137.392566,I,Above,Hip,0,5701,,19.75690077,0,0,,,,1,1,,0.35,nav,1,1976,1,, 27626,NJBF000055136,103 HADDON RD,Somers Point,NJ,39.32524376,-74.60621499,RES1,3001,,16,NE,1965,1965,3101,1,1,1111.065585,1111.065585,3507,NO,18.9,28.83,1,-0.44,6106,111.349026,121.498181,131.204566,137.449747,I,Above,Gable,0,5701,,23.86652246,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27627,NJBF000051737,16 MACARTHUR BLVD,Somers Point,NJ,39.310406,-74.600789,COM1,3001,641,NaN,ME,1991,1991,3401,2,1,4423.570933,4423.570933,3507,NO,36.21,48.68,1,2.26,6112,111.716497,121.774665,131.454371,137.771224,I,Above,Flat,0,NaN,,42.44828332,0,0,,,,1,1,,1,nav,1,1991,2,, 27628,NJBF000055344,1401 MASSACHUSETTS AVE,Somers Point,NJ,39.3258313,-74.60751183,RES1,3001,,16,NE,1968,1968,3101,1,1,2010.197349,2010.197349,3507,NO,15.18,28.03,1,2.29,6106,111.315519,121.469103,131.177451,137.414544,I,Above,Gable,0,5701,,21.60911283,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27629,NJBF000053372,46 GULPH MILL RD,Somers Point,NJ,39.31968707,-74.61868786,RES1,3001,,16,NE,1973,1973,3101,1,1,2275.775075,2275.775075,3507,NO,14.34,28.56,1,-0.4,6106,111.242903,121.35932,131.068404,137.272356,I,Above,Gable,0,5701,,21.44840978,0,0,,,,1,1,,0.03,nav,1,1973,1,, 27630,NJBF000055318,808 W GROVELAND AVE,Somers Point,NJ,39.32576046,-74.60125943,RES1,3001,,16,NE,1965,1965,3101,1,1,1941.583753,1941.583753,3507,NO,20.64,29.4,1,1.37,6112,111.427711,121.575587,131.278137,137.544632,I,Above,Gable,0,5701,,25.02124875,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27631,NJBF000056781,1 FRANKLIN DR,Somers Point,NJ,39.32924532,-74.60188655,RES1,3001,,16,NE,1972,1972,3101,2,1,1442.52045,1442.52045,3507,NO,25.45,34.18,1,-0.78,6112,111.352354,121.522617,131.229352,137.481631,I,Above,Hip,0,5701,,29.81663145,0,0,,,,1,1,,0.35,nav,1,1972,2,, 27632,NJBF000051667,28 ANNIE AVE,Somers Point,NJ,39.30961737,-74.5967654,RES1,3001,,16,NE,1910,1910,3102,1,1,1737.532901,1737.532901,3505,NO,8.73,15.81,3,-2.99,6110,111.802677,121.851941,131.528326,137.864382,I,Above,Hip,0,5701,,12.27176747,0,0,,,,1,1,,0.35,nav,1,1910,1,, 27633,NJBF000051535,1002 SPRUCE ST,Somers Point,NJ,39.30809012,-74.61649607,RES1,3001,,18,NE,2002,2002,3102,2,1,2516.272393,2516.272393,3507,NO,25.2,32.64,1,-0.3,6106,111.491537,121.544567,131.227971,137.482643,I,Above,Hip,0,5701,,28.91813007,0,0,,,,1,1,,0.03,nav,1,2002,2,, 27634,NJBF000053255,11 VIOLET LN,Somers Point,NJ,39.3192689,-74.61395286,RES1,3001,,16,NE,1961,1961,3101,1,1,1888.549835,1888.549835,3507,NO,17.78,27.21,1,0.58,6110,111.327901,121.443143,131.147371,137.375852,I,Above,Gable,0,5701,,22.49167886,0,0,,,,1,1,,0.35,nav,1,1961,1,, 27635,NJBF000057402,,Somers Point,NJ,39.33050917,-74.59520012,COM1,3004,,NaN,ME,1969,0,3401,1,1,11849.89921,11849.89921,3507,NO,12.8,21.15,1,0.76,6112,111.45316,121.621223,131.32293,137.601687,I,Above,Flat,0,NaN,,16.97565766,0,0,,,,1,1,,1,nav,1,1969,1,, 27636,NJBF000057948,35 DEFEO LN,Somers Point,NJ,39.3314248,-74.5999092,RES1,3001,,16,NE,1987,1987,3101,1,1,1302.010315,1302.010315,3507,NO,16.43,29.68,1,-0.62,6106,111.348569,121.530026,131.236752,137.491105,I,Above,Gable,0,5701,,23.05483127,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27637,NJBF000058467,24 WILSON AVE,Somers Point,NJ,39.33236747,-74.60561733,RES1,3001,,16,NE,1983,1983,3101,1,1,2643.862435,2643.862435,3507,NO,16.09,28.1,1,-0.45,6106,111.227642,121.421724,131.135085,137.359349,I,Above,Hip,0,5701,,22.09680488,0,0,,,,1,1,,0.03,nav,1,1983,1,, 27638,NJBF000055113,6 CORNELL RD,Somers Point,NJ,39.32517765,-74.60883079,RES1,3001,,16,NE,1970,1970,3101,2,1,1524.047271,1524.047271,3507,NO,25.78,32.14,1,-0.09,6106,111.304806,121.454947,131.163709,137.396702,I,Above,Gable,0,5701,,28.96028009,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27639,NJBF000058418,15 WILSON AVE,Somers Point,NJ,39.33226793,-74.60457527,RES1,3001,,16,NE,1980,1980,3101,1,1,1916.262361,1916.262361,3507,NO,15.01,24.94,1,1.23,6112,111.248117,121.4406,131.152755,137.382354,I,Above,Gable,0,5701,,19.97494953,0,0,,,,1,1,,0.35,nav,1,1980,1,, 27640,NJBF000055088,144 COLWICK DR,Somers Point,NJ,39.32510986,-74.61333496,RES1,3001,,16,NE,1957,1957,3101,2,1,1510.655417,1510.655417,3507,NO,35.59,47.23,1,0.78,6110,111.229675,121.380197,131.093291,137.304705,I,Above,Gable,0,5701,,41.40918095,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27641,NJBF000057846,13 WAYNE DR,Somers Point,NJ,39.3312625,-74.6014665,RES1,3001,,16,NE,1979,1979,3101,2,1,1396.269958,1396.269958,3507,NO,33.5,47.19,1,-0.68,6112,111.322931,121.505461,131.213582,137.461212,I,Above,Gable,0,5701,,40.34141715,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 27642,NJBF000058569,12 WOODLOT CT,Somers Point,NJ,39.33253113,-74.60027303,RES1,3001,,16,NE,1993,1993,3101,2,1,1354.43793,1354.43793,3507,NO,35.19,45.9,1,2.7,6106,111.321625,121.510616,131.21854,137.46759,I,Above,Flat,0,5701,,40.54689159,0,0,,,,1,1,,0.03,nav,1,1993,2,, 27643,NJBF000053382,410 BAY AVENUE,Somers Point,NJ,39.31972517,-74.58643246,RES1,3001,,NaN,NE,1990,1990,3102,2,1,505.4250812,505.4250812,3507,NO,36,46.12,1,-0.43,6106,111.813136,121.900998,131.586493,137.935282,I,Above,Gable,0,5701,,41.05823051,0,0,,,,1,1,,0.03,nav,1,1990,2,, 27644,NJBF000053558,27 LAUREL DR SOUTH,Somers Point,NJ,39.32039882,-74.61526302,RES1,3001,,16,NE,1963,1963,3101,1,1,2073.608845,2073.608845,3507,NO,16.61,30.21,1,1.88,6106,111.285343,121.407081,131.114425,137.332686,I,Above,Gable,0,5701,,23.41074608,0,0,,,,1,1,,0.03,nav,1,1963,1,, 27645,NJBF000058504,41 WILSON AVE,Somers Point,NJ,39.33242991,-74.60705287,RES1,3001,,16,NE,1984,1984,3101,2,1,1910.858113,1910.858113,3507,NO,38.98,46.84,1,0.18,6110,111.200997,121.396609,131.111603,137.328708,I,Above,Flat,0,5701,,42.90858022,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27646,NJBF000054833,5 SWARTHMORE RD,Somers Point,NJ,39.32443046,-74.60229803,RES1,3001,,16,NE,1965,1965,3101,1,1,2913.261477,2913.261477,3507,NO,12.84,26.16,1,0.96,6110,111.433435,121.574291,131.276185,137.542216,I,Above,Hip,0,5701,,19.50116652,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27647,NJBF000057942,55 CHAPMAN BLVD,Somers Point,NJ,39.33141074,-74.60469963,RES1,3001,,16,NE,1981,1981,3101,1,1,1807.198301,1807.198301,3507,NO,18,24.59,1,0.03,6110,111.261728,121.44877,131.160317,137.39218,I,Above,Gable,0,5701,,21.29201885,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 27648,NJBF000055388,183 JORDAN RD,Somers Point,NJ,39.32594117,-74.60156216,RES1,3001,,16,NE,1965,1965,3101,2,1,1266.982568,1266.982568,3507,NO,33.67,43.96,1,1.12,6112,111.418919,121.568248,131.271265,137.535787,I,Above,Hip,0,5701,,38.81552951,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27649,NJBF000053377,45 GULPH MILL RD,Somers Point,NJ,39.31970199,-74.61754713,RES1,3001,,16,NE,1972,1972,3101,1,1,2191.297664,2191.297664,3507,NO,13.58,18.93,1,1.19,6106,111.261017,121.378014,131.08612,137.295642,I,Above,Hip,0,5701,,16.2527853,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27650,NJBF000057937,210 EXTON RD,Somers Point,NJ,39.33140497,-74.60647911,RES1,3001,,27,NE,1987,1987,3101,2,1,1692.342741,1692.342741,3507,NO,27.34,38.31,1,-0.54,6106,111.230185,121.418674,131.132109,137.355454,I,Above,Gable,0,5701,,32.8249212,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27651,NJBF000053221,16 WISTERIA WALK,Somers Point,NJ,39.31916216,-74.61440036,RES1,3001,,16,NE,1959,1959,3101,2,1,1800.30118,1800.30118,3507,NO,26.54,37.72,1,2.71,6106,111.322485,121.437067,131.141484,137.368181,I,Above,Gable,0,5701,,32.1327845,0,0,,,,1,1,,0.03,nav,1,1959,2,, 27652,NJBF000058403,22 WILSON AVE,Somers Point,NJ,39.33225349,-74.60536966,RES1,3001,,16,NE,1983,1983,3101,2,1,1390.956178,1390.956178,3507,NO,38.21,53,1,0.96,6110,111.234161,121.427284,131.140279,137.366115,I,Above,Gable,0,5701,,45.60242661,0,0,,,,1,1,,0.35,nav,1,1983,2,, 27653,NJBF000057541,17 EDGEWOOD DR,Somers Point,NJ,39.33075011,-74.59917408,RES1,3001,,16,NE,1979,1979,3101,1,1,2043.329672,2043.329672,3507,NO,11.73,18.72,1,0.77,6106,111.374478,121.55062,131.256105,137.516044,I,Above,Gable,0,5701,,15.22279819,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27654,NJBF000055174,177 JORDAN RD,Somers Point,NJ,39.32536492,-74.60214305,RES1,3001,,16,NE,1965,1965,3101,1,1,1639.83561,1639.83561,3507,NO,14.68,23.59,1,0.03,6110,111.419038,121.565455,131.268324,137.532043,I,Above,Gable,0,5701,,19.13192672,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27655,NJBF000057761,29 DEFEO LN,Somers Point,NJ,39.33112277,-74.59830871,RES1,3001,,16,NE,1994,1994,3101,2,1,2428.395336,2428.395336,3507,NO,36.1,49.21,1,2.08,6106,111.383727,121.560883,131.265854,137.528558,I,Above,Gable,0,5701,,42.6544458,0,0,,,,1,1,,0.03,nav,1,1994,2,, 27656,NJBF000051849,68 BAYVIEW DR,Somers Point,NJ,39.31118299,-74.60699473,RES3A,3001,,29,NE,1977,1977,3301,2,1,1874.08051,1874.08051,3507,NO,23.59,30.44,1,-0.77,6112,111.59408,121.661438,131.345941,137.633416,I,Above,Gable,0,5701,,27.01494936,0,0,,,,1,1,,0.35,nav,1,1977,2,, 27657,NJBF000055144,111 PRINCETON RD,Somers Point,NJ,39.3252635,-74.6046145,RES1,3001,,16,NE,1964,1964,3101,1,1,741.5720339,741.5720339,3507,NO,15.67,23.46,1,0.8,6106,111.376863,121.524954,131.229897,137.482515,I,Above,Gable,0,5701,,19.56396421,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27658,NJBF000055371,1402 MASSACHUSETTS AVE,Somers Point,NJ,39.32589749,-74.60833917,RES1,3001,,16,NE,1970,1970,3101,1,1,2356.208798,2356.208798,3507,NO,13.29,23.01,1,2.15,6106,111.299952,121.454361,131.163591,137.39652,I,Above,Hip,0,5701,,18.14973625,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27659,NJBF000057553,20 SCHOOLHOUSE DR,Somers Point,NJ,39.33077267,-74.59842067,RES1,3001,,16,NE,1973,1973,3101,1,1,1570.488187,1570.488187,3507,NO,17.72,30.11,1,0.26,6110,111.388018,121.563164,131.267965,137.531286,I,Above,Gable,0,5701,,23.91389359,0,0,,,,1,1,,0.35,nav,1,1973,1,, 27660,NJBF000051582,11 BROADWAY,Somers Point,NJ,39.30863017,-74.60235593,RES1,3001,,16,NE,1980,1980,3102,2,1,1710.805807,1710.805807,3507,NO,30.75,44.78,1,0.73,6106,111.721108,121.771085,131.448328,137.763988,I,Above,Gable,0,5701,,37.76382991,0,0,,,,1,1,,0.03,nav,1,1980,2,, 27661,NJBF000053527,3 VIOLET LN,Somers Point,NJ,39.320259,-74.61352808,RES1,3001,,16,NE,1958,1958,3101,1,1,2668.674182,2668.674182,3507,NO,15.4,28.77,1,1.87,6112,111.316619,121.437713,131.143294,137.37043,I,Above,Hip,0,5701,,22.08317219,0,0,,,,1,1,,0.35,nav,1,1958,1,, 27662,NJBF000053239,126 E GROVELAND AVE,Somers Point,NJ,39.31922001,-74.58802677,RES1,3001,,16,NE,1925,1925,3102,2,2,1696.593548,1696.593548,3505,NO,30.68,44.45,3,8.4,6106,111.791702,121.880038,131.565817,137.90959,I,Above,Gable,0,5701,,37.56317866,0,0,,,,1,1,,0.03,nav,1,1925,2,, 27663,NJBF000057297,23 CRESTVIEW DR,Somers Point,NJ,39.33032788,-74.59681376,RES1,3001,,16,NE,1971,1971,3101,2,1,2781.67434,2781.67434,3507,NO,33.51,41.9,1,2.55,6112,111.426079,121.595869,131.298855,137.57092,I,Above,Gable,0,5701,,37.70835781,0,0,,,,1,1,,0.35,nav,1,1971,2,, 27664,NJBF000053342,26 LAUREL DR SOUTH,Somers Point,NJ,39.3195795,-74.61572493,RES1,3001,,16,NE,1965,1965,3101,1,1,2464.850424,2464.850424,3507,NO,15.91,26.08,1,2.13,6106,111.292944,121.409771,131.116066,137.334914,I,Above,Gable,0,5701,,20.99793909,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27665,NJBF000057584,7 WAYNE DR,Somers Point,NJ,39.33082336,-74.60203063,RES1,3001,,16,NE,1979,1979,3101,2,1,1393.964878,1393.964878,3507,NO,29.8,43.52,1,0.07,6112,111.320734,121.501158,131.209465,137.455899,I,Above,Gable,0,5701,,36.66077447,0,0,,,,1,1,,0.35,nav,1,1979,2,, 27666,NJBF000051784,814 BAY AVE,Somers Point,NJ,39.3107275,-74.594263,RES1,3001,,15,NE,1920,1920,3102,2,1,762.4268636,762.4268636,3505,NO,25.69,39.64,3,-0.6,6106,111.82803,121.879946,131.557038,137.900068,I,Above,Hip,0,5701,,32.66530839,0,0,,,,1,1,,0.03,nav,1,1920,2,, 27667,NJBF000057693,25 DEFEO LN,Somers Point,NJ,39.33101062,-74.59770269,RES1,3001,,16,NE,1987,1987,3101,1,1,2045.186748,2045.186748,3507,NO,18.49,24.78,1,1.07,6106,111.397058,121.572547,131.27687,137.542706,I,Above,Gable,0,5701,,21.63319528,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27668,NJBF000053232,50 GULPH MILL RD,Somers Point,NJ,39.31919899,-74.61855505,RES1,3001,,16,NE,1972,1972,3101,1,1,2701.992385,2701.992385,3507,NO,17.38,27.77,1,-0.44,6106,111.25408,121.367733,131.075776,137.282104,I,Above,Gable,0,5701,,22.57877553,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27669,NJBF000055139,166 BALA DR,Somers Point,NJ,39.32525054,-74.61241116,RES1,3001,,16,NE,1959,1959,3101,1,1,1939.435749,1939.435749,3507,NO,20.78,34.42,1,2.4,6110,111.242528,121.393929,131.106298,137.321749,I,Above,Gable,0,5701,,27.5989105,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27670,NJBF000058482,10 WHITMAN DR,Somers Point,NJ,39.332393,-74.604386,RES1,3001,,16,NE,1981,1981,3101,2,1,1357.321188,1357.321188,3507,NO,25.03,39.54,1,-0.78,6112,111.249201,121.442312,131.154369,137.384454,I,Above,Gable,0,5701,,32.28741088,0,0,,,,1,1,,0.35,nav,1,1981,2,, 27671,NJBF000053688,126 E JOHNSON AVE,Somers Point,NJ,39.32088425,-74.58669746,RES1,3001,,16,NE,1920,1920,3102,2,1,1570.447335,1570.447335,3505,NO,36.74,46.56,3,9,6112,111.787458,121.882355,131.569254,137.913625,I,Above,Gable,0,5701,,41.65116414,0,0,,,,1,1,,0.35,nav,1,1920,2,, 27672,NJBF000055086,1 BAY AVE,Somers Point,NJ,39.32510486,-74.58263331,RES1,3001,,16,NE,1987,1987,3102,2,1,2441.99195,2441.99195,3505,NO,36.84,43.01,3,3.78,6106,111.791879,121.900744,131.589339,137.937957,I,Above,Gable,0,5701,,39.92888687,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 27673,NJBF000057918,33 DEFEO LN,Somers Point,NJ,39.33137933,-74.59966671,RES1,3001,,16,NE,1987,1987,3101,1,1,1878.338543,1878.338543,3507,NO,19.36,33.87,1,0.48,6106,111.353878,121.534695,131.241152,137.496775,I,Above,Gable,0,5701,,26.61707358,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27674,NJBF000057284,14 SCHOOLHOUSE DR,Somers Point,NJ,39.33029099,-74.598979,RES1,3001,,16,NE,1972,1972,3101,2,1,1356.322616,1356.322616,3507,NO,36.11,45.25,1,0.24,6106,111.386461,121.559444,131.26437,137.526689,I,Above,Gable,0,5701,,40.67901767,0,0,,,,1,1,,0.03,nav,1,1972,2,, 27675,NJBF000057793,31 DEFEO LN,Somers Point,NJ,39.33117804,-74.59863271,RES1,3001,,16,NE,1984,1984,3101,1,1,1376.495693,1376.495693,3507,NO,12.82,21.62,1,-0.26,6106,111.376701,121.554707,131.260023,137.521064,I,Above,Gable,0,5701,,17.22299981,0,0,,,,1,1,,0.03,nav,1,1984,1,, 27676,NJBF000055064,2 BRYN MAWR RD,Somers Point,NJ,39.32502481,-74.60241548,RES1,3001,,16,NE,1965,1965,3101,1,1,2064.566484,2064.566484,3507,NO,16.25,25.36,1,2.76,6106,111.420406,121.565018,131.267725,137.531296,I,Above,Gable,0,5701,,20.80124729,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27677,NJBF000057223,37 CHAPMAN BLVD,Somers Point,NJ,39.33017306,-74.60243183,RES1,3001,,16,NE,1971,1971,3101,1,1,1940.641568,1940.641568,3507,NO,14,23.94,1,0.77,6112,111.325411,121.502169,131.210295,137.456987,I,Above,Gable,0,5701,,18.97040276,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27678,NJBF000055135,109 PRINCETON RD,Somers Point,NJ,39.3252373,-74.60492399,RES1,3001,,16,NE,1964,1964,3101,2,1,1146.355078,1146.355078,3507,NO,23.54,36.69,1,1.55,6106,111.371863,121.520041,131.225234,137.47649,I,Above,Hip,0,5701,,30.11379936,0,0,,,,1,1,,0.03,nav,1,1964,2,, 27679,NJBF000055146,16 COLGATE RD,Somers Point,NJ,39.32527126,-74.6104583,RES1,3001,,16,NE,1970,1970,3101,2,1,2039.928595,2039.928595,3507,NO,37.45,45.03,1,-0.18,6106,111.275207,121.426452,131.136916,137.36178,I,Above,Gable,0,5701,,41.23732995,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27680,NJBF000051503,55 BROADWAY,Somers Point,NJ,39.30772804,-74.60703849,RES1,3001,,18,NE,1990,1990,3102,2,1,2896.009979,2896.009979,3507,NO,28.49,34.55,1,1.07,6106,111.656298,121.704897,131.382662,137.681005,I,Above,Gable,0,5701,,31.5210726,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 27681,NJBF000057211,1 HAMILTON DR,Somers Point,NJ,39.33015,-74.603558,RES1,3001,,43,NE,1970,1970,3101,1,2,630.2603541,630.2603541,3507,NO,12.7,27,1,2.15,6110,111.305513,121.483337,131.192561,137.434033,I,Above,Gable,0,5701,,19.84970143,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27682,NJBF000055409,18 CORNELL RD,Somers Point,NJ,39.32601361,-74.60996322,RES1,3001,,16,NE,1970,1970,3101,2,1,1532.420408,1532.420408,3507,NO,39.02,47.38,1,2.56,6106,111.26984,121.425593,131.136569,137.361302,I,Above,Gable,0,5701,,43.198304,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27683,NJBF000055353,18 CORNELL RD,Somers Point,NJ,39.32586984,-74.61009155,RES1,3001,,16,NE,1970,1970,3101,2,1,505.8926984,505.8926984,3507,NO,26.21,37.96,1,2.96,6110,111.270312,121.425201,131.136114,137.360713,I,Above,Gable,0,5701,,32.08461818,0,0,,,,1,1,,0.35,nav,1,1970,2,, 27684,NJBF000055206,18 COLGATE RD,Somers Point,NJ,39.32543931,-74.61062495,RES1,3001,,16,NE,1970,1970,3101,2,1,1497.301179,1497.301179,3507,NO,24.63,39.58,1,1.14,6106,111.269238,121.421569,131.132427,137.355914,I,Above,Gable,0,5701,,32.10578048,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27685,NJBF000057218,184 EXTON RD,Somers Point,NJ,39.33016301,-74.60718492,RES1,3001,,27,NE,1987,1987,3101,2,1,1240.993731,1240.993731,3507,NO,23.12,30.47,1,1.52,6106,111.240817,121.421729,131.134707,137.358829,I,Above,Gable,0,5701,,26.79773403,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27686,NJBF000051464,42 BROADWAY,Somers Point,NJ,39.30724238,-74.60383905,RES1,3001,,16,NE,1951,1951,3102,1,1,2306.264925,2306.264925,3507,NO,19.36,31.33,1,2.68,6112,111.720373,121.764139,131.439421,137.753072,I,Above,Hip,0,5701,,25.34381605,0,1.2,,,,1,1,,0.35,nav,1,1951,1,, 27687,NJBF000051809,106 WOODLAND AVE,Somers Point,NJ,39.31092007,-74.60172909,RES1,3001,,16,NE,1955,1955,3102,2,1,1647.383248,1647.383248,3505,NO,43.99,50.54,3,5.06,6110,111.69055,121.752462,131.433569,137.744831,I,Above,Gable,0,5701,,47.26450888,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27688,NJBF000053409,415 BAY AVE,Somers Point,NJ,39.31983369,-74.58707766,RES1,3001,,17,NE,2000,2000,3102,2,1,2952.954755,2952.954755,3505,NO,19.85,25.14,3,-1.52,6106,111.798842,121.888672,131.574634,137.920493,I,Above,Hip,0,5701,,22.4976645,0,0,,,,1,1,,0.03,nav,1,2000,2,, 27689,NJBF000057302,188 EXTON RD,Somers Point,NJ,39.33033264,-74.60705487,RES1,3001,,27,NE,1987,1987,3101,2,1,1338.29025,1338.29025,3507,NO,35.46,45.7,1,1.02,6106,111.239942,121.421869,131.134882,137.359058,I,Above,Gable,0,5701,,40.5813726,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27690,NJBF000052710,16 KAPPELLA AVE,Somers Point,NJ,39.31666649,-74.58670479,RES1,3001,,16,NE,1921,1921,3102,1,1,1313.618739,1313.618739,3505,NO,16.12,24.27,3,2.11,6106,111.86235,121.933838,131.615868,137.972289,I,Above,Hip,0,5701,,20.19516443,0,0,,,,1,1,,0.03,nav,1,1921,1,, 27691,NJBF000057148,3 HAMILTON DR,Somers Point,NJ,39.3300305,-74.6035675,RES1,3001,,43,NE,1970,1970,3101,1,2,2232.593964,2232.593964,3507,NO,13.2,24.06,1,1.13,6110,111.307565,121.484633,131.193753,137.435579,I,Above,Gable,0,5701,,18.62985411,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27692,NJBF000051493,9 LANDING LN,Somers Point,NJ,39.30761126,-74.60137182,RES1,3001,,18,NE,1986,1986,3102,2,1,2071.720337,2071.720337,3507,NO,32.98,38.83,1,-0.04,6112,111.756877,121.800439,131.475308,137.798251,I,Above,Gable,0,5701,,35.90539217,0,0,,,,1,1,,0.03,nav,1,1986,2,, 27693,NJBF000057385,17 SCHOOLHOUSE DR,Somers Point,NJ,39.33047758,-74.59808619,RES1,3001,,16,NE,1973,1973,3101,1,1,1968.389541,1968.389541,3507,NO,10.32,25.18,1,-0.29,6110,111.399616,121.572403,131.276658,137.542462,I,Above,Gable,0,5701,,17.74746833,0,0,,,,1,1,,0.35,nav,1,1973,1,, 27694,NJBF000057220,9 EDGEWOOD DR,Somers Point,NJ,39.3301676,-74.59992129,RES1,3001,,16,NE,1979,1979,3101,1,1,1939.651382,1939.651382,3507,NO,20.6,32.29,1,1.17,6106,111.371334,121.544896,131.250599,137.508983,I,Above,Gable,0,5701,,26.44733176,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27695,NJBF000051492,11 LANDING LN,Somers Point,NJ,39.3076104,-74.6011429,RES1,3001,,17,NE,1987,1987,3102,3,1,2829.440996,2829.440996,3507,NO,42.71,51.13,1,2.06,6102,111.76093,121.804264,131.479029,137.802935,I,Above,Gable,0,5701,,46.92262941,0,1.2,,,,1,1,,0.03,nav,1,1987,3,, 27696,NJBF000051519,41 BROADWAY,Somers Point,NJ,39.30794003,-74.6058458,RES1,3001,,16,NE,1950,1950,3102,1,1,3378.165279,3378.165279,3507,NO,10.76,25.33,1,-0.91,6112,111.672934,121.721922,131.399528,137.702375,I,Above,Gable,0,5701,,18.0468014,0,0,,,,1,1,,0.35,nav,1,1950,1,, 27697,NJBF000057415,12 CEDAR CT,Somers Point,NJ,39.33053125,-74.60771306,RES1,3001,,27,NE,1987,1987,3101,1,1,1488.384455,1488.384455,3507,NO,19.58,33.09,1,0.18,6110,111.22472,121.408337,131.122254,137.34258,I,Above,Gable,0,5701,,26.33841214,0,0,,,,1,1,,0.35,nav,1,1987,1,, 27698,NJBF000057464,15 EDGEWOOD DR,Somers Point,NJ,39.33061484,-74.59938796,RES1,3001,,16,NE,1979,1979,3101,2,1,1448.830634,1448.830634,3507,NO,22.79,31.9,1,1.54,6110,111.372987,121.548596,131.254173,137.513564,I,Above,Gable,0,5701,,27.34623375,0,1.1,,,,1,1,,0.35,nav,1,1979,2,, 27699,NJBF000051685,29 ANNIE AVE,Somers Point,NJ,39.30991778,-74.5965416,RES1,3001,,16,NE,1920,1920,3102,2,1,1212.344925,1212.344925,3505,NO,25.42,35.67,3,3.99,6112,111.801264,121.851881,131.528677,137.864758,I,Above,Flat,0,5701,,30.54163619,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 27700,NJBF000052350,4 HORTER AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1980,3102,2,1,1088.881162,1088.881162,3505,NO,31.24,42.36,3,1.1,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,36.80308617,0,0,,,,1,1,,0.03,nav,1,2007,2,, 27701,NJBF000053474,49 GULPH MILL RD,Somers Point,NJ,39.32007404,-74.61732767,RES1,3001,,16,NE,1971,1971,3101,1,1,2070.588212,2070.588212,3507,NO,18.05,26.94,1,-0.28,6106,111.257667,121.37692,131.085515,137.294811,I,Above,Gable,0,5701,,22.4988489,0,0,,,,1,1,,0.03,nav,1,1971,1,, 27702,NJBF000051819,15 MACARTHUR BLVD,Somers Point,NJ,39.31098149,-74.59913216,RES4,3001,530,NaN,ME,1950,1956,3401,3,1,9056.121692,9056.121692,3507,NO,56.37,67.25,1,2.87,6110,111.735533,121.795097,131.474963,137.79707,I,Above,Flat,0,NaN,,61.80924404,0,0,,,,1,1,,1,nav,1,1950,3,, 27703,NJBF000051471,40 BROADWAY,Somers Point,NJ,39.30743382,-74.6028926,RES1,3001,,19,NE,1992,1992,3102,2,1,3595.308313,3595.308313,3507,NO,35.43,48.57,1,2.99,6102,111.733393,121.777397,131.45262,137.769693,I,Above,Hip,0,5701,,41.99856311,0,0,,,,1,1,,0.03,nav,1,1992,2,, 27704,NJBF000054259,209 BAY AVE,Somers Point,NJ,39.32288541,-74.58449457,RES1,3001,,16,NE,1973,1973,3102,2,1,1263.068244,1263.068244,3505,NO,45.48,58.36,3,8.15,6106,111.794516,121.895639,131.583324,137.930842,I,Above,Gable,0,5701,,51.92068845,0,0,,,,1,1,,0.03,nav,1,1973,2,, 27705,NJBF000056804,180 EXTON RD,Somers Point,NJ,39.3292945,-74.608908,RES3D,3004,20,NaN,ME,1971,1971,3301,1,1,6197.72765,6197.72765,3507,NO,11.66,21.91,1,0.76,6110,111.226925,121.40315,131.117035,137.33575,I,Above,Gable,0,NaN,,16.78543777,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27706,NJBF000057056,180 EXTON RD,Somers Point,NJ,39.329826,-74.608705,RES3D,3004,20,NaN,ME,1971,1971,3301,2,1,6230.954288,6230.954288,3507,NO,25.43,30.89,1,1.45,6106,111.220554,121.400118,131.114367,137.332266,I,Above,Gable,0,NaN,,28.16277843,0,0,,,,1,1,,0.03,nav,1,1971,2,, 27707,NJBF000056665,180 EXTON RD,Somers Point,NJ,39.32899991,-74.60850337,RES3D,3004,20,NaN,ME,1971,1971,3301,1,1,6667.366681,6667.366681,3507,NO,11.19,18.82,1,-0.11,6110,111.239439,121.413583,131.126711,137.34839,I,Above,Gable,0,NaN,,15.00527603,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27708,NJBF000056851,180 EXTON RD,Somers Point,NJ,39.3293908,-74.60767941,RES3D,3004,20,NaN,ME,1971,1971,3301,1,1,7135.536727,7135.536727,3507,NO,13.67,28.56,1,1.33,6110,111.246515,121.422745,131.135435,137.359776,I,Above,Gable,0,NaN,,21.11286944,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27709,NJBF000052031,8 POINT DRIVE,Somers Point,NJ,39.31252394,-74.58009318,RES1,3001,,16,NE,1959,1959,3102,1,1,1768.115188,1768.115188,3507,NO,14.98,20.1,1,1.95,6106,112.06238,122.097188,131.771314,138.164505,I,Above,Hip,0,5701,,17.54064012,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27710,NJBF000057495,5 WAYNE DR,Somers Point,NJ,39.330672,-74.6022195,RES1,3001,,16,NE,1979,1979,3101,2,1,1477.777231,1477.777231,3507,NO,38.63,47.28,1,0.31,6112,111.320076,121.499762,131.208125,137.45417,I,Above,Flat,0,5701,,42.95801574,0,1.2,,,,1,1,,0.35,nav,1,1979,2,, 27711,NJBF000054504,10 PRINCETON RD,Somers Point,NJ,39.32357271,-74.60725635,RES1,3001,,16,NE,1962,1962,3101,1,1,1028.719898,1028.719898,3507,NO,18.2,24.97,1,1.61,6106,111.361783,121.501276,131.206405,137.452227,I,Above,Gable,0,5701,,21.5828604,0,0,,,,1,1,,0.03,nav,1,1962,1,, 27712,NJBF000056955,5 SCHOOLHOUSE DR,Somers Point,NJ,39.3296115,-74.599209,RES1,3001,,16,NE,1972,1972,3101,1,1,1500.672086,1500.672086,3507,NO,16.13,25.44,1,-0.48,6110,111.394625,121.563702,131.26826,137.531721,I,Above,Hip,0,5701,,20.78512235,0,0,,,,1,1,,0.35,nav,1,1972,1,, 27713,NJBF000053161,423 BAY AVE,Somers Point,NJ,39.3189379,-74.58771563,RES1,3001,,16,NE,2015,2015,3102,2,1,1340.105103,1340.105103,3505,NO,22.24,34.56,3,0.11,6106,111.802644,121.888778,131.574061,137.919915,I,Above,Gable,0,5701,,28.39625358,0,0,,,,1,1,,0.03,nav,1,2015,2,, 27714,NJBF000051644,917 BAY AVE,Somers Point,NJ,39.30939064,-74.59655853,RES1,3001,,16,NE,1908,1908,3102,2,1,3063.192692,3063.192692,3505,NO,23.47,32.53,3,2.23,6106,111.810471,121.858244,131.534148,137.871719,I,Above,Hip,0,5701,,27.99937018,0,0,,,,1,1,,0.03,nav,1,1908,2,, 27715,NJBF000051659,30 ANNIE AVE,Somers Point,NJ,39.30958372,-74.59666834,RES1,3001,,16,NE,1910,1910,3102,1,1,1127.338694,1127.338694,3505,NO,18.27,29.09,3,0.74,6110,111.805022,121.853983,131.530267,137.866819,I,Above,Hip,0,5701,,23.67806463,0,0,,,,1,1,,0.35,nav,1,1910,1,, 27716,NJBF000054961,6 BRYN MAWR RD,Somers Point,NJ,39.32475309,-74.60196998,RES1,3001,,16,NE,1965,1965,3101,1,1,2154.668964,2154.668964,3507,NO,14.54,27.51,1,0.87,6110,111.433386,121.575874,131.277875,137.544365,I,Above,Gable,0,5701,,21.02254098,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27717,NJBF000051746,37 GREATE BAY DR,Somers Point,NJ,39.31044404,-74.60529356,RES3A,3001,,29,NE,1977,1977,3301,2,1,1930.363114,1930.363114,3507,NO,22.52,30.35,1,0.17,6112,111.636901,121.699116,131.381271,137.678594,I,Above,Gable,0,5701,,26.43263484,0,0,,,,1,1,,0.35,nav,1,1977,2,, 27718,NJBF000052402,3 WOODLAWN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,17,NE,2007,2007,3102,2,1,1903.163905,1903.163905,3505,NO,33.36,43.41,3,-0.93,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,38.38823389,0,0,,,,1,1,,0.03,nav,1,2007,2,, 27719,NJBF000057061,8 SCHOOLHOUSE DR,Somers Point,NJ,39.32983535,-74.59957112,RES1,3001,,16,NE,1972,1972,3101,1,1,1847.369316,1847.369316,3507,NO,20.17,34.14,1,1.63,6110,111.383863,121.554851,131.259939,137.521014,I,Above,Gable,0,5701,,27.15338544,0,0,,,,1,1,,0.35,nav,1,1972,1,, 27720,NJBF000056000,4 RUTGERS RD,Somers Point,NJ,39.32749436,-74.60618715,RES1,3001,,16,NE,1968,1968,3101,1,1,1517.600866,1517.600866,3507,NO,18.1,24.45,1,-0.1,6106,111.30787,121.471074,131.180143,137.417983,I,Above,Gable,0,5701,,21.27631353,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27721,NJBF000056133,170 EXTON RD,Somers Point,NJ,39.32779328,-74.6091132,RES1,3001,,16,NE,1978,1978,3101,1,1,1328.049203,1328.049203,3507,NO,10.85,16.95,1,0.07,6106,111.251345,121.418039,131.130399,137.353213,I,Above,Gable,0,5701,,13.90240366,0,0,,,,1,1,,0.03,nav,1,1978,1,, 27722,NJBF000053594,68 GULPH MILL RD,Somers Point,NJ,39.3205399,-74.61647969,RES1,3001,,16,NE,1966,1966,3101,2,1,1574.068889,1574.068889,3507,NO,25.97,31.79,1,0.12,6106,111.262807,121.385081,131.09376,137.30559,I,Above,Hip,0,5701,,28.87954247,0,0,,,,1,1,,0.03,nav,1,1966,2,, 27723,NJBF000054752,2 COLGATE RD,Somers Point,NJ,39.32422675,-74.60924814,RES1,3001,,16,NE,1970,1970,3101,1,1,2612.749794,2612.749794,3507,NO,17.16,23.89,1,0.26,6106,111.315286,121.4597,131.16756,137.401759,I,Above,Gable,0,5701,,20.52518293,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 27724,NJBF000055043,142 BALA DR,Somers Point,NJ,39.32497364,-74.61481284,RES1,3001,,16,NE,1959,1959,3101,1,1,1112.97678,1112.97678,3507,NO,17.18,23.18,1,-0.69,6106,111.207663,121.357158,131.071546,137.276152,I,Above,Gable,0,5701,,20.18129206,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 27725,NJBF000053198,13 VIOLET LN,Somers Point,NJ,39.3190526,-74.61399937,RES1,3001,,16,NE,1955,1955,3101,1,1,1504.654325,1504.654325,3507,NO,14.64,25.98,1,1.92,6112,111.331137,121.445111,131.148996,137.377995,I,Above,Gable,0,5701,,20.310631,0,0,,,,1,1,,0.35,nav,1,1955,1,, 27726,NJBF000053105,431 BAY AVE,Somers Point,NJ,39.31871569,-74.58800601,COM1,3001,530,NaN,ME,1969,0,3401,3,1,7480.79461,7480.79461,3507,NO,50.17,64.85,1,2.26,6106,111.801093,121.886568,131.571746,137.917063,I,Above,Flat,0,NaN,,57.51173872,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27727,NJBF000052879,100 E MARYLAND AVE,Somers Point,NJ,39.31761633,-74.58804057,COM8,3001,219,16,ME,1950,1950,3401,2,1,1090.261425,1090.261425,3507,NO,29.32,41.7,1,-0.89,6106,111.820061,121.899474,131.583344,137.931689,I,Above,Gable,0,NaN,,35.51049229,0,0,,,,1,1,,0.03,nav,1,1950,2,, 27728,NJBF000054386,123 EXTON RD,Somers Point,NJ,39.32326172,-74.61283391,RES1,3001,,16,NE,1957,1957,3101,2,1,2038.190736,2038.190736,3507,NO,37.32,51.49,1,1.11,6112,111.272451,121.411607,131.121435,137.341646,I,Above,Flat,0,5701,,44.40266844,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27729,NJBF000053522,31 GULPH MILL RD,Somers Point,NJ,39.32025388,-74.61782942,RES1,3001,,16,NE,1965,1965,3101,2,1,1420.506883,1420.506883,3507,NO,35.48,46.65,1,2.11,6106,111.246223,121.366333,131.075706,137.281905,I,Above,Hip,0,5701,,41.06719696,0,0,,,,1,1,,0.03,nav,1,1965,2,, 27730,NJBF000051671,27 WOODLAND AVE,Somers Point,NJ,39.30970624,-74.60078805,RES1,3001,,15,NE,1959,1959,3102,2,1,1200.343205,1200.343205,3505,NO,36.12,50.09,3,2.53,6106,111.729216,121.783551,131.462006,137.781006,I,Above,Gable,0,5701,,43.10755403,0,0,,,,1,1,,0.03,nav,1,1959,2,, 27731,NJBF000055253,150 BALA DR,Somers Point,NJ,39.32558025,-74.61413521,RES1,3001,,16,NE,1959,1959,3101,1,1,1535.366496,1535.366496,3507,NO,20.07,25.77,1,1.85,6110,111.207588,121.36096,131.075555,137.281407,I,Above,Gable,0,5701,,22.92077956,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27732,NJBF000052347,11 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1955,3102,1,1,878.4174348,878.4174348,3505,NO,19.91,28.58,3,1.59,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,24.2449289,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27733,NJBF000051541,4 BROADWAY,Somers Point,NJ,39.30816908,-74.60051628,COM1,3001,,NaN,ME,1948,1948,3401,2,1,16494.13505,16494.13505,3507,NO,39.12,52.68,1,1.03,6112,111.761882,121.807599,131.483121,137.807953,I,Above,Flat,0,NaN,,45.89984546,0,0,,,,1,1,,1,nav,1,1948,2,, 27734,NJBF000051527,1 GOLL AVE,Somers Point,NJ,39.30801098,-74.59782516,COM1,3001,510,NaN,ME,1989,1989,3401,1,1,31083.17426,31083.17426,3507,NO,11.84,25.24,1,-0.75,6102,111.812635,121.854516,131.528556,137.865022,I,Above,Flat,0,NaN,,18.54212356,0,0,,,,1,1,,0.03,nav,1,1989,1,, 27735,NJBF000055976,1018 W GROVELAND AVE,Somers Point,NJ,39.3274272,-74.60461603,RES1,3001,,16,NE,1966,1966,3101,1,1,1524.656375,1524.656375,3507,NO,13.43,25.84,1,1.53,6110,111.336876,121.498445,131.205917,137.451402,I,Above,Gable,0,5701,,19.636698,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27736,NJBF000059090,23 WHITMAN DR,Somers Point,NJ,39.33352748,-74.60281673,RES1,3001,,16,NE,1985,1985,3101,1,1,2156.825663,2156.825663,3507,NO,15.4,22.74,1,2.32,6106,111.256676,121.455439,131.166706,137.400493,I,Above,Gable,0,5701,,19.07347745,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 27737,NJBF000051530,1 MACARTHUR BLVD,Somers Point,NJ,39.30804448,-74.59992126,COM1,3001,739,NaN,ME,1960,1960,3401,1,1,15659.13195,15659.13195,3507,NO,12.03,25.99,1,1.27,6110,111.774684,121.819107,131.494131,137.821826,I,Above,Flat,0,NaN,,19.00692214,0,0,,,,1,1,,1,nav,1,1960,1,, 27738,NJBF000054551,127 EXTON RD,Somers Point,NJ,39.3237064,-74.61295812,RES1,3001,,16,NE,1957,1957,3101,2,1,1499.715487,1499.715487,3507,NO,35.68,49.48,1,1.7,6110,111.262119,121.403991,131.114618,137.332704,I,Above,Hip,0,5701,,42.58349524,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27739,NJBF000054193,118 COLWICK DR,Somers Point,NJ,39.32269057,-74.61369007,RES1,3001,,16,NE,1955,1955,3101,2,1,2038.886212,2038.886212,3507,NO,37.86,48.08,1,2.53,6110,111.268788,121.404448,131.114188,137.332199,I,Above,Gable,0,5701,,42.96732111,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27740,NJBF000054623,3 HAVERFORD RD,Somers Point,NJ,39.32389415,-74.60311805,RES1,3001,,16,NE,1965,1965,3101,1,1,1549.259304,1549.259304,3507,NO,15.75,29.06,1,0.42,6112,111.428641,121.567028,131.26896,137.532965,I,Above,Gable,0,5701,,22.40595751,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27741,NJBF000055030,142 COLWICK DR,Somers Point,NJ,39.32493848,-74.61350839,RES1,3001,,16,NE,1957,1957,3101,2,1,1302.495065,1302.495065,3507,NO,39.48,46.79,1,0.88,6112,111.229994,121.379439,131.092454,137.303613,I,Above,Hip,0,5701,,43.13464945,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27742,NJBF000056417,13 RUTGERS RD,Somers Point,NJ,39.32842462,-74.6070764,RES1,3001,,16,NE,1971,1971,3101,1,1,2137.708239,2137.708239,3507,NO,20.93,33.77,1,2.51,6110,111.275006,121.444695,131.155704,137.386193,I,Above,Gable,0,5701,,27.35007396,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27743,NJBF000052996,,Somers Point,NJ,39.31815923,-74.58749235,COM1,3001,,NaN,ME,1969,0,3401,3,1,12888.4662,12888.4662,3507,NO,41.4,55.89,1,2.1,6106,111.820792,121.902132,131.586377,137.935381,I,Above,Flat,0,NaN,,48.6447228,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27744,NJBF000055641,1413 MASSACHUSETTS AVE,Somers Point,NJ,39.32663107,-74.60872159,RES1,3001,,16,NE,1970,1970,3101,1,1,1216.906654,1216.906654,3507,NO,19.25,27.56,1,0.03,6110,111.279702,121.438883,131.149421,137.378045,I,Above,Gable,0,5701,,23.40080723,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27745,NJBF000052111,75 GIBBS AVE,Somers Point,NJ,39.31293081,-74.59298683,RES1,3001,,16,NE,1950,1950,3102,1,1,931.1387935,931.1387935,3505,NO,17.43,28.86,3,3.57,6106,111.811724,121.873827,131.553769,137.895569,I,Above,Gable,0,5701,,23.14460672,0,0,,,,1,1,,0.03,nav,1,1950,1,, 27746,NJBF000058485,17 WILSON AVE,Somers Point,NJ,39.3324025,-74.6048765,RES1,3001,,16,NE,1983,1983,3101,2,1,1468.157608,1468.157608,3507,NO,30.5,36.47,1,1.71,6112,111.240202,121.433853,131.146445,137.374146,I,Above,Gable,0,5701,,33.48620029,0,0,,,,1,1,,0.35,nav,1,1983,2,, 27747,NJBF000055561,9 BUCKNELL RD,Somers Point,NJ,39.32641638,-74.61109108,RES1,3001,,16,NE,1979,1979,3101,1,1,1660.523317,1660.523317,3507,NO,14.2,22.8,1,1.55,6106,111.243127,121.401671,131.114315,137.332213,I,Above,Gable,0,5701,,18.49746938,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27748,NJBF000054418,13 PRINCETON RD,Somers Point,NJ,39.3233373,-74.60691396,RES1,3001,,16,NE,1961,1961,3101,1,1,1299.076166,1299.076166,3507,NO,10.8,25.73,1,-0.02,6110,111.372091,121.509949,131.214448,137.462659,I,Above,Gable,0,5701,,18.26516581,0,1.1,,,,1,1,,0.35,nav,1,1961,1,, 27749,NJBF000054787,21 HADDON RD,Somers Point,NJ,39.32431096,-74.60711395,RES1,3001,,16,NE,1962,1962,3101,2,1,1940.549888,1940.549888,3507,NO,37.63,51.68,1,1.73,6110,111.350596,121.494539,131.200539,137.44458,I,Above,Gable,0,5701,,44.65464352,0,0,,,,1,1,,0.35,nav,1,1962,2,, 27750,NJBF000054611,14 PRINCETON RD,Somers Point,NJ,39.32386345,-74.60687668,RES1,3001,,16,NE,1962,1962,3101,2,1,1315.499339,1315.499339,3507,NO,21.17,33.75,1,-0.19,6110,111.363008,121.504063,131.209247,137.455889,I,Above,Hip,0,5701,,27.45889056,0,0,,,,1,1,,0.35,nav,1,1962,2,, 27751,NJBF000054484,22 OSBORNE RD,Somers Point,NJ,39.32350823,-74.60592247,RES1,3001,,16,NE,1961,1961,3101,2,1,1515.989751,1515.989751,3507,NO,30.45,41.09,1,-0.58,6112,111.386241,121.524523,131.22838,137.480666,I,Above,Hip,0,5701,,35.76884416,0,0,,,,1,1,,0.35,nav,1,1961,2,, 27752,NJBF000058988,21 WHITMAN DR,Somers Point,NJ,39.33331086,-74.60297613,RES1,3001,,16,NE,1985,1985,3101,2,1,1334.885886,1334.885886,3507,NO,23.61,31.16,1,1.05,6112,111.257759,121.455307,131.166585,137.400334,I,Above,Gable,0,5701,,27.38564084,0,1.1,,,,1,1,,0.35,nav,1,1985,2,, 27753,NJBF000054684,132 BALA DR,Somers Point,NJ,39.3240636,-74.61554281,RES1,3001,,16,NE,1959,1959,3101,2,1,1388.588902,1388.588902,3507,NO,37.8,47.04,1,-0.31,6106,111.212605,121.356328,131.070044,137.274208,I,Above,Hip,0,5701,,42.41721144,0,0,,,,1,1,,0.03,nav,1,1959,2,, 27754,NJBF000056403,1030 W GROVELAND AVE,Somers Point,NJ,39.32839066,-74.6063853,RES1,3001,,16,NE,1968,1968,3101,1,1,1551.731659,1551.731659,3507,NO,17.99,23.42,1,2.73,6110,111.287765,121.456787,131.16706,137.400965,I,Above,Gable,0,5701,,20.70381726,0,0,,,,1,1,,0.35,nav,1,1968,1,, 27755,NJBF000056518,17 RUTGERS RD,Somers Point,NJ,39.32865982,-74.60755243,RES1,3001,,16,NE,1970,1970,3101,1,1,2252.582138,2252.582138,3507,NO,20.59,26.3,1,2.63,6106,111.262318,121.433789,131.145547,137.372962,I,Above,Gable,0,5701,,23.44260855,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27756,NJBF000053740,37 LAUREL DR SOUTH,Somers Point,NJ,39.32110972,-74.61425536,RES1,3001,,16,NE,1962,1962,3101,1,1,2002.973418,2002.973418,3507,NO,14.55,21.76,1,-0.12,6112,111.288779,121.414884,131.12255,137.343254,I,Above,Gable,0,5701,,18.15248708,0,0,,,,1,1,,0.35,nav,1,1962,1,, 27757,NJBF000056640,15 HAMILTON DR,Somers Point,NJ,39.32894538,-74.60436484,RES1,3001,,43,NE,1970,1970,3101,1,2,2176.434821,2176.434821,3507,NO,11.59,18.68,1,-0.45,6112,111.313303,121.484235,131.193081,137.43473,I,Above,Gable,0,5701,,15.13817213,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27758,NJBF000053832,21 GULPH MILL RD,Somers Point,NJ,39.321438,-74.61694183,RES1,3001,,16,NE,1967,1967,3101,2,1,719.7668788,719.7668788,3507,NO,36.49,43.79,1,1.37,6110,111.238614,121.366054,131.07674,137.283164,I,Above,Flat,0,5701,,40.13825522,0,1.1,,,,1,1,,0.35,nav,1,1967,2,, 27759,NJBF000053840,21 GULPH MILL RD,Somers Point,NJ,39.32146718,-74.61681594,RES1,3001,,16,NE,1967,1967,3101,2,1,599.9493199,599.9493199,3507,NO,38.51,45.03,1,-0.27,6110,111.240124,121.367781,131.0784,137.285344,I,Above,Gable,0,5701,,41.76923664,0,1.1,,,,1,1,,0.35,nav,1,1967,2,, 27760,NJBF000055049,7 COLGATE RD,Somers Point,NJ,39.32498423,-74.60939577,RES1,3001,,16,NE,1970,1970,3101,2,1,2119.958693,2119.958693,3507,NO,25.69,33.58,1,0.47,6106,111.298696,121.447845,131.156887,137.387829,I,Above,Hip,0,5701,,29.63596613,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27761,NJBF000056102,49 BUCKNELL RD,Somers Point,NJ,39.32773943,-74.61142494,RES1,3001,,16,NE,1978,1978,3101,2,1,1477.172729,1477.172729,3507,NO,34.48,44.74,1,2.28,6106,111.212789,121.379764,131.094472,137.306212,I,Above,Gable,0,5701,,39.60730791,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27762,NJBF000052777,,Somers Point,NJ,39.31704164,-74.58915564,RES3C,3001,,NaN,ME,1969,0,3301,2,1,7882.874621,7882.874621,3505,NO,39.08,49.6,3,5.06,6106,111.809256,121.887616,131.571346,137.916826,I,Above,Flat,0,NaN,,44.34039945,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27763,NJBF000054941,1 SWARTHMORE RD,Somers Point,NJ,39.32471132,-74.60279633,RES1,3001,,16,NE,1965,1965,3101,2,1,1189.018764,1189.018764,3507,NO,28.49,43.47,1,-0.9,6110,111.41936,121.562429,131.265091,137.527927,I,Above,Hip,0,5701,,35.97969528,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27764,NJBF000052260,20 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,15,NE,2007,1960,3102,1,1,1205.434123,1205.434123,3505,NO,10.9,24.51,3,-0.24,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,17.70704179,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27765,NJBF000051597,1428 ATKINSON AVE,Somers Point,NJ,39.30888858,-74.6166125,RES1,3001,,16,NE,1982,1982,3102,2,1,1260.01383,1260.01383,3507,NO,23.95,33.07,1,2.15,6112,111.475058,121.532287,131.217545,137.468946,I,Above,Gable,0,5701,,28.51400179,0,0,,,,1,1,,0.35,nav,1,1982,2,, 27766,NJBF000054703,165 JORDAN RD,Somers Point,NJ,39.32409478,-74.60341874,RES1,3001,,16,NE,1965,1965,3101,1,1,1278.146542,1278.146542,3507,NO,14.33,25.49,1,0.03,6112,111.419585,121.559475,131.261917,137.523886,I,Above,Gable,0,5701,,19.90723695,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27767,NJBF000052375,,Somers Point,NJ,39.314255,-74.6196255,COM1,3001,,NaN,ME,1961,0,3401,1,1,1097.586379,1097.586379,3507,NO,11.97,19.84,1,-0.95,6112,111.328166,121.413511,131.112407,137.330895,I,Above,Gable,0,5701,,15.90078005,0,0,,,,1,1,,1,nav,1,1961,1,, 27768,NJBF000051742,1254 ATKINSON AVE,Somers Point,NJ,39.31042508,-74.6145683,RES1,3001,,16,NE,1920,1920,3102,2,2,1377.368349,1377.368349,3507,NO,39.05,45.27,1,0.64,6106,111.480495,121.545984,131.233409,137.489069,I,Above,Gable,0,5701,,42.15840449,0,0,,,,1,1,,0.03,nav,1,1920,2,, 27769,NJBF000051763,1254 ATKINSON AVE,Somers Point,NJ,39.31060699,-74.61451188,RES1,3001,,16,NE,1920,1920,3102,2,2,887.7373542,887.7373542,3507,NO,33.83,44.53,1,0.6,6106,111.478089,121.544558,131.232336,137.48764,I,Above,Gable,0,5701,,39.18037491,0,0,,,,1,1,,0.03,nav,1,1920,2,, 27770,NJBF000055304,121 OSBORNE RD,Somers Point,NJ,39.32572279,-74.60311275,RES1,3001,,16,NE,1964,1964,3101,1,1,1704.171319,1704.171319,3507,NO,14.86,22.71,1,-0.47,6110,111.395076,121.544673,131.248815,137.506899,I,Above,Gable,0,5701,,18.78415356,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27771,NJBF000056033,1015 W GROVELAND AVE,Somers Point,NJ,39.32757283,-74.60395275,RES1,3001,,16,NE,1967,1967,3101,2,1,1352.869589,1352.869589,3507,NO,38.94,45,1,0.05,6112,111.345984,121.507883,131.214883,137.462998,I,Above,Gable,0,5701,,41.97010701,0,0,,,,1,1,,0.35,nav,1,1967,2,, 27772,NJBF000052314,,Somers Point,NJ,39.313919,-74.5890895,RES1,3001,,NaN,NE,1969,0,3102,2,1,846.2795694,846.2795694,3507,NO,30.76,39.92,1,2.2,6106,111.866369,121.927338,131.606865,137.961563,I,Above,Flat,0,5701,,35.33941318,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27773,NJBF000054465,3 AMBLER RD,Somers Point,NJ,39.32346362,-74.60942978,RES1,3001,,16,NE,1968,1968,3101,1,1,1873.963187,1873.963187,3507,NO,19.71,32.11,1,1.56,6106,111.32632,121.46611,131.173059,137.408954,I,Above,Gable,0,5701,,25.90923351,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27774,NJBF000058860,66 DEFEO LN,Somers Point,NJ,39.3330725,-74.6052045,RES1,3001,,16,NE,1984,1984,3101,2,1,1764.52153,1764.52153,3507,NO,31.05,41.15,1,2.03,6112,111.221938,121.420278,131.133773,137.357655,I,Above,Gable,0,5701,,36.09935212,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27775,NJBF000056462,1032 W GROVELAND AVE,Somers Point,NJ,39.3285208,-74.60662221,RES1,3001,,16,NE,1971,1971,3101,1,1,1868.517162,1868.517162,3507,NO,14.64,28.89,1,-0.07,6110,111.281188,121.451198,131.161852,137.394192,I,Above,Gable,0,5701,,21.76264718,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27776,NJBF000055248,20 COLGATE RD,Somers Point,NJ,39.32556487,-74.61084964,RES1,3001,,16,NE,1970,1970,3101,1,1,2061.810938,2061.810938,3507,NO,12.99,24.57,1,-0.97,6106,111.263067,121.416232,131.127485,137.349454,I,Above,Hip,0,5701,,18.77934521,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27777,NJBF000055836,11 STANFORD RD,Somers Point,NJ,39.32709136,-74.60786276,RES1,3001,,16,NE,1970,1970,3101,1,1,1597.046751,1597.046751,3507,NO,14.54,26.44,1,2.28,6110,111.28604,121.447716,131.157966,137.389163,I,Above,Gable,0,5701,,20.49089502,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27778,NJBF000055784,9 STANFORD RD,Somers Point,NJ,39.32696667,-74.60766607,RES1,3001,,16,NE,1970,1970,3101,1,1,2025.309582,2025.309582,3507,NO,18.68,27.94,1,0.44,6106,111.291768,121.452558,131.162463,137.395018,I,Above,Gable,0,5701,,23.3131336,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27779,NJBF000055011,173 JORDAN RD,Somers Point,NJ,39.3248943,-74.60266115,RES1,3001,,16,NE,1964,1964,3101,1,1,1365.546643,1365.546643,3507,NO,14.84,28.91,1,1.78,6106,111.418409,121.562466,131.265231,137.528095,I,Above,Flat,0,5701,,21.87624932,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27780,NJBF000058480,36 WILSON AVE,Somers Point,NJ,39.332392,-74.606432,RES1,3001,,16,NE,1984,1984,3101,2,1,1426.340387,1426.340387,3507,NO,23.52,29.32,1,-0.86,6110,111.212689,121.407596,131.12187,137.342115,I,Above,Gable,0,5701,,26.42215181,0,0,,,,1,1,,0.35,nav,1,1984,2,, 27781,NJBF000054716,6 SWARTHMORE RD,Somers Point,NJ,39.32414014,-74.60257865,RES1,3001,,16,NE,1965,1965,3101,1,1,1633.278809,1633.278809,3507,NO,19.01,25.93,1,2.05,6110,111.433735,121.573104,131.274883,137.540565,I,Above,Gable,0,5701,,22.47093709,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27782,NJBF000052119,73 GIBBS AVE,Somers Point,NJ,39.31298377,-74.59308876,RES1,3001,,16,NE,1920,1920,3102,1,1,1038.718653,1038.718653,3505,NO,22.84,31.96,3,5.73,6106,111.808893,121.871447,131.551518,137.892747,I,Above,Gable,0,5701,,27.40140022,0,0,,,,1,1,,0.03,nav,1,1920,1,, 27783,NJBF000054852,9 YALE BLVD,Somers Point,NJ,39.32448242,-74.61030945,RES1,3001,,16,NE,1970,1970,3101,2,1,1854.305753,1854.305753,3507,NO,35.19,44.78,1,2.56,6110,111.292411,121.438726,131.147948,137.376203,I,Above,Hip,0,5701,,39.98431959,0,0,,,,1,1,,0.35,nav,1,1970,2,, 27784,NJBF000052139,680 BAY AVE,Somers Point,NJ,39.31308573,-74.59162076,COM1,3001,510,NaN,ME,1957,1957,3401,2,1,11048.07963,11048.07963,3507,NO,33.21,39.12,1,1.3,6106,111.834156,121.894929,131.574445,137.92135,I,Above,Flat,0,NaN,,36.16628927,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27785,NJBF000052024,680 BAY AVE,Somers Point,NJ,39.31250134,-74.59084859,COM3,3001,510,NaN,ME,1957,1957,3401,2,1,6198.808311,6198.808311,3507,NO,30.7,41.29,1,1.08,6106,111.858967,121.915246,131.593536,137.945237,I,Above,Flat,0,NaN,,35.99641079,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27786,NJBF000051927,680 BAY AVE,Somers Point,NJ,39.31180137,-74.58974317,RES1,3001,510,NaN,NE,1957,1957,3102,2,1,2805.695125,2805.695125,3507,NO,34.33,43.48,1,0.41,6102,111.892071,121.942637,131.619397,137.977506,I,Above,Flat,0,5701,,38.90285661,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27787,NJBF000052902,505 BAY AVE,Somers Point,NJ,39.31771098,-74.58893877,COM7,3001,562,NaN,ME,1994,1994,3401,1,1,7734.791647,7734.791647,3507,NO,14.39,28.01,1,-0.24,6106,111.801382,121.883063,131.56752,137.911948,I,Above,Hip,0,NaN,,21.20009066,0,0,,,,1,1,,0.03,nav,1,1994,1,, 27788,NJBF000057656,23 DEFEO LN,Somers Point,NJ,39.3309475,-74.597436,RES1,3001,,16,NE,1988,1988,3101,1,1,1803.492961,1803.492961,3507,NO,12.12,23.29,1,0.29,6106,111.40319,121.57785,131.28188,137.549135,I,Above,Gable,0,5701,,17.70419104,0,0,,,,1,1,,0.03,nav,1,1988,1,, 27789,NJBF000051878,74 BAYVIEW DR,Somers Point,NJ,39.31141388,-74.60769778,RES3A,3001,,29,NE,1977,1977,3301,2,1,2251.740326,2251.740326,3507,NO,32.87,46.09,1,2.46,6106,111.577806,121.646822,131.332172,137.615775,I,Above,Gable,0,5701,,39.48156014,0,0,,,,1,1,,0.03,nav,1,1977,2,, 27790,NJBF000055250,15 COLGATE RD,Somers Point,NJ,39.32557,-74.6101565,RES1,3001,,16,NE,1970,1970,3101,1,1,1628.39343,1628.39343,3507,NO,15.91,29.59,1,0.77,6106,111.274781,121.427813,131.138388,137.36369,I,Above,Gable,0,5701,,22.7493477,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27791,NJBF000054499,171 BALA DR,Somers Point,NJ,39.32354362,-74.61109881,RES1,3001,,16,NE,1959,1959,3101,1,1,1094.510595,1094.510595,3507,NO,14.03,26.91,1,0.56,6110,111.296417,121.437131,131.145747,137.373382,I,Above,Gable,0,5701,,20.47064566,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27792,NJBF000055357,111 HADDON RD,Somers Point,NJ,39.325876,-74.6055439,RES1,3001,,16,NE,1966,1966,3101,1,1,1592.125898,1592.125898,3507,NO,20.33,34.35,1,2.35,6106,111.349125,121.501735,131.20828,137.454526,I,Above,Gable,0,5701,,27.34347416,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27793,NJBF000055881,18 STANFORD RD,Somers Point,NJ,39.32719543,-74.60878793,RES1,3001,,16,NE,1970,1970,3101,1,1,1606.258673,1606.258673,3507,NO,16.69,28.55,1,-0.81,6106,111.268079,121.430847,131.14215,137.368554,I,Above,Gable,0,5701,,22.62016025,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27794,NJBF000051984,58 HIGBEE AVE,Somers Point,NJ,39.31220137,-74.59392091,RES1,3001,,16,NE,1930,1930,3102,1,1,1013.957013,1013.957013,3505,NO,21.31,30.25,3,4.78,6106,111.807725,121.867221,131.546495,137.88661,I,Above,Gable,0,5701,,25.78083906,0,0,,,,1,1,,0.03,nav,1,1930,1,, 27795,NJBF000055068,4 CORNELL RD,Somers Point,NJ,39.32503215,-74.60866256,RES1,3001,,16,NE,1968,1968,3101,1,1,2270.043576,2270.043576,3507,NO,11.14,17.47,1,0.28,6106,111.31041,121.459575,131.167982,137.402268,I,Above,Flat,0,5701,,14.30706503,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27796,NJBF000055501,1004 W GROVELAND AVE,Somers Point,NJ,39.32625933,-74.60236106,RES1,3001,,16,NE,1964,1964,3101,1,1,553.6431122,553.6431122,3507,NO,18.94,30.78,1,0.5,6112,111.398691,121.550843,131.254924,137.514739,I,Above,Gable,0,5701,,24.85958692,0,1.2,,,,1,1,,0.35,nav,1,1964,1,, 27797,NJBF000051972,62 HIGBEE AVE,Somers Point,NJ,39.31208148,-74.5938215,RES1,3001,,16,NE,1930,2010,3102,2,1,1771.991776,1771.991776,3505,NO,23.24,31.97,3,1.88,6106,111.8117,121.870389,131.549429,137.8903,I,Above,Gable,0,5701,,27.60356578,0,0,,,,1,1,,0.03,nav,1,1930,2,, 27798,NJBF000052427,803 HARBOUR COVE,Somers Point,NJ,39.31460516,-74.58896682,RES3C,3001,,37,ME,1985,1984,3301,1,1,9543.440379,9543.440379,3507,NO,12.66,22.86,1,1.45,6106,111.856405,121.920918,131.601336,137.954573,I,Above,Gable,0,NaN,,17.7587785,0,0,,,,1,1,,0.03,nav,1,1985,1,, 27799,NJBF000055761,1417 MASSACHUSETTS AVE,Somers Point,NJ,39.3269084,-74.60909677,RES1,3001,,16,NE,1970,1970,3101,2,1,1761.365326,1761.365326,3507,NO,28.81,39.13,1,-0.13,6110,111.268084,121.429164,131.140423,137.366308,I,Above,Hip,0,5701,,33.97058558,0,0,,,,1,1,,0.35,nav,1,1970,2,, 27800,NJBF000053361,6 VIOLET LN,Somers Point,NJ,39.319649,-74.61328324,RES1,3001,,16,NE,1959,1959,3101,1,1,1877.760825,1877.760825,3507,NO,15.04,24.69,1,0.15,6110,111.331994,121.449487,131.153811,137.384208,I,Above,Gable,0,5701,,19.86456445,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27801,NJBF000051738,31 SOMERS AVE,Somers Point,NJ,39.31040788,-74.59620923,RES1,3001,,16,NE,1920,1920,3102,2,1,1794.695703,1794.695703,3505,NO,31.15,37.4,3,5.67,6112,111.798432,121.851289,131.528756,137.864757,I,Above,Hip,0,5701,,34.27581249,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 27802,NJBF000052480,311 HARBOUR COVE,Somers Point,NJ,39.31500461,-74.58949042,RES3C,3001,,37,ME,1984,1984,3301,1,1,9465.239269,9465.239269,3507,NO,15.79,23.55,1,2.94,6106,111.839439,121.907112,131.588327,137.938318,I,Above,Flat,0,NaN,,19.66588237,0,0,,,,1,1,,0.03,nav,1,1984,1,, 27803,NJBF000053894,19 GULPH MILL RD,Somers Point,NJ,39.32169415,-74.61693399,RES1,3001,,16,NE,1967,1967,3101,2,1,1876.109287,1876.109287,3507,NO,33.64,41.36,1,1.41,6106,111.233988,121.362954,131.074079,137.279647,I,Above,Flat,0,5701,,37.49678603,0,0,,,,1,1,,0.03,nav,1,1967,2,, 27804,NJBF000054255,104 E DAWES AVE,Somers Point,NJ,39.32287803,-74.58603889,RES1,3001,,16,NE,1955,1955,3102,2,1,1581.117122,1581.117122,3505,NO,43,56.94,3,5.16,6110,111.76473,121.869362,131.557913,137.899174,I,Above,Gable,0,5701,,49.97139529,0,0,,,,1,1,,0.35,nav,1,1955,2,, 27805,NJBF000054790,134 BALA DR,Somers Point,NJ,39.32432201,-74.61550166,RES1,3001,,16,NE,1959,1959,3101,1,1,2432.542392,2432.542392,3507,NO,19.91,32.22,1,1.59,6106,111.20847,121.353786,131.067867,137.271334,I,Above,Gable,0,5701,,26.06578389,0,1.1,,,,1,1,,0.03,nav,1,1959,1,, 27806,NJBF000051826,,Somers Point,NJ,39.31101737,-74.60069969,COM1,3001,,NaN,ME,1966,0,3401,1,1,8133.307752,8133.307752,3507,NO,17.76,29.19,1,-0.36,6112,111.706982,121.768421,131.449157,137.764515,I,Above,Flat,0,NaN,,23.47493759,0,0,,,,1,1,,1,nav,1,1966,1,, 27807,NJBF000057419,9 CRESTMONT DR,Somers Point,NJ,39.33053735,-74.60087322,RES1,3001,,43,NE,1966,1966,3101,2,2,1723.215467,1723.215467,3507,NO,33.45,42.35,1,1.33,6110,111.347112,121.524275,131.231203,137.483977,I,Above,Gable,0,5701,,37.9022645,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27808,NJBF000051977,110 GIBBS AVE,Somers Point,NJ,39.3121163,-74.5923441,RES1,3001,,NaN,NE,1935,1935,3102,2,1,1501.604373,1501.604373,3505,NO,30.98,40.21,3,-1.55,6106,111.838228,121.89484,131.573237,137.920019,I,Above,Gable,0,5701,,35.59370809,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 27809,NJBF000056024,14 DARTMOUTH RD,Somers Point,NJ,39.32753823,-74.60774051,RES1,3001,,16,NE,1971,1971,3101,1,1,2503.103414,2503.103414,3507,NO,14.34,22.59,1,0.82,6106,111.279862,121.4443,131.154962,137.385242,I,Above,Gable,0,5701,,18.46786978,0,0,,,,1,1,,0.03,nav,1,1971,1,, 27810,NJBF000056097,1017 W GROVELAND AVE,Somers Point,NJ,39.3277164,-74.60415248,RES1,3001,,16,NE,1971,1971,3101,2,1,1317.11172,1317.11172,3507,NO,34.21,45.52,1,2.53,6110,111.339796,121.502774,131.210119,137.45683,I,Above,Gable,0,5701,,39.86677236,0,0,,,,1,1,,0.35,nav,1,1971,2,, 27811,NJBF000055384,3 BUCKNELL RD,Somers Point,NJ,39.32593673,-74.61161501,RES1,3001,,16,NE,1979,1979,3101,2,1,1761.439795,1761.439795,3507,NO,32.35,46.68,1,2.31,6106,111.243169,121.398786,131.111314,137.328297,I,Above,Gable,0,5701,,39.51524633,0,0,,,,1,1,,0.03,nav,1,1979,2,, 27812,NJBF000057099,4 EDGEWOOD DR,Somers Point,NJ,39.32992107,-74.60091513,RES1,3001,,16,NE,1975,1975,3101,2,1,1650.094261,1650.094261,3507,NO,28.91,41.74,1,-1,6112,111.357638,121.53097,131.237399,137.491989,I,Above,Gable,0,5701,,35.322767,0,0,,,,1,1,,0.35,nav,1,1975,2,, 27813,NJBF000053615,27 GULPH MILL RD,Somers Point,NJ,39.32061662,-74.61758926,RES1,3001,,16,NE,1965,1965,3101,1,1,2282.29671,2282.29671,3507,NO,15.79,29.8,1,-0.54,6106,111.243368,121.365707,131.075524,137.281633,I,Above,Flat,0,5701,,22.79717627,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27814,NJBF000051557,1504 ATKINSON AVE,Somers Point,NJ,39.30830961,-74.617183,RES1,3001,,16,NE,1994,1994,3102,2,1,1504.722681,1504.722681,3507,NO,31.32,38.77,1,0.25,6112,111.47635,121.530474,131.214745,137.465479,I,Above,Hip,0,5701,,35.04684071,0,0,,,,1,1,,0.35,nav,1,1994,2,, 27815,NJBF000052448,2 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,738,15,NE,2007,1938,3102,1,1,1652.037299,1652.037299,3505,NO,17.74,24.55,3,-1.38,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,21.14589801,0,1.1,,,,1,1,,0.03,nav,1,2007,1,, 27816,NJBF000053116,15 VIOLET LN,Somers Point,NJ,39.31875702,-74.61403694,RES1,3001,,16,NE,1957,1957,3101,2,1,1806.039766,1806.039766,3507,NO,23.13,34.28,1,0.89,6112,111.335984,121.448226,131.151617,137.381446,I,Above,Gable,0,5701,,28.70519775,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27817,NJBF000055419,107 N AMBLER RD,Somers Point,NJ,39.32604764,-74.60670868,RES1,3001,,16,NE,1967,1967,3101,2,1,1700.35412,1700.35412,3507,NO,27.33,35.16,1,0.75,6106,111.325499,121.479971,131.187824,137.428003,I,Above,Hip,0,5701,,31.24206444,0,0,,,,1,1,,0.03,nav,1,1967,2,, 27818,NJBF000052681,10 KAPPELLA AVE,Somers Point,NJ,39.316497,-74.5870355,RES1,3001,,NaN,NE,1972,1949,3102,1,1,1438.385225,1438.385225,3505,NO,14.93,24.13,3,2.18,6106,111.859092,121.930314,131.612292,137.967876,I,Above,Gable,0,5701,,19.52980099,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27819,NJBF000055052,12 COLGATE RD,Somers Point,NJ,39.32499372,-74.61011041,RES1,3001,,16,NE,1971,1971,3101,1,1,1636.706558,1636.706558,3507,NO,21.18,31.59,1,2.78,6106,111.286292,121.435725,131.145469,137.372948,I,Above,Hip,0,5701,,26.38250019,0,0,,,,1,1,,0.03,nav,1,1971,1,, 27820,NJBF000051628,1401 ROBERTS AVE,Somers Point,NJ,39.30923653,-74.61570513,RES1,3001,,16,NE,1981,1981,3102,2,1,1718.059431,1718.059431,3507,NO,25.7,40.38,1,-0.67,6112,111.483533,121.542658,131.228178,137.482603,I,Above,Gable,0,5701,,33.04132055,0,0,,,,1,1,,0.35,nav,1,1981,2,, 27821,NJBF000055247,119 OSBORNE RD,Somers Point,NJ,39.32556048,-74.60328539,RES1,3001,,16,NE,1964,1964,3101,1,1,989.3885345,989.3885345,3507,NO,17.89,29.68,1,0.91,6106,111.395005,121.54376,131.247865,137.505685,I,Above,Gable,0,5701,,23.783894,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27822,NJBF000055089,1312 MASSACHUSETTS AVE,Somers Point,NJ,39.3251117,-74.60724179,RES1,3001,,16,NE,1963,1963,3101,1,1,2085.219485,2085.219485,3507,NO,11.13,16.45,1,0.41,6110,111.333539,121.482503,131.189674,137.430446,I,Above,Flat,0,5701,,13.78921257,0,0,,,,1,1,,0.35,nav,1,1963,1,, 27823,NJBF000052394,2 HORTER AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,17,NE,2007,2003,3102,2,1,3738.249663,3738.249663,3505,NO,40.32,52.32,3,2.71,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,46.32024656,0,0,,,,1,1,,0.03,nav,1,2007,2,, 27824,NJBF000054679,23 BAY AVE,Somers Point,NJ,39.32404838,-74.58350067,RES1,3001,,16,NE,1967,1967,3102,1,1,2162.721985,2162.721985,3505,NO,14.68,21.94,3,-0.98,6106,111.793404,121.898596,131.586784,137.934958,I,Above,Gable,0,5701,,18.31196406,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27825,NJBF000056520,37 BUCKNELL RD,Somers Point,NJ,39.32866077,-74.61034062,RES1,3001,,16,NE,1978,1978,3101,1,1,2099.695933,2099.695933,3507,NO,11.16,19.84,1,0.03,6106,111.214066,121.386714,131.1014,137.31529,I,Above,Hip,0,5701,,15.49946472,0,0,,,,1,1,,0.03,nav,1,1978,1,, 27826,NJBF000053146,58 GULPH MILL RD,Somers Point,NJ,39.31889258,-74.61774156,RES1,3001,,16,NE,1969,1969,3101,1,1,2365.91353,2365.91353,3507,NO,11.16,17.11,1,0.2,6106,111.27285,121.385076,131.091837,137.303235,I,Above,Gable,0,5701,,14.13302803,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27827,NJBF000055475,115 HADDON RD,Somers Point,NJ,39.3261962,-74.60521947,RES1,3001,,16,NE,1966,1966,3101,1,1,1562.909955,1562.909955,3507,NO,13.51,23.49,1,0.54,6106,111.348942,121.503299,131.209925,137.45664,I,Above,Gable,0,5701,,18.49885625,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27828,NJBF000055415,1410 MASSACHUSETTS AVE,Somers Point,NJ,39.32604189,-74.60856002,RES1,3001,,16,NE,1970,1970,3101,2,1,1383.760054,1383.760054,3507,NO,32.26,41.92,1,0.99,6106,111.29344,121.448855,131.158486,137.389871,I,Above,Gable,0,5701,,37.0901887,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27829,NJBF000055149,180 JORDAN RD,Somers Point,NJ,39.32527948,-74.60284872,RES1,3001,,16,NE,1964,1964,3101,2,1,1469.234467,1469.234467,3507,NO,31.35,42.74,1,0.3,6106,111.407966,121.554571,131.257958,137.518706,I,Above,Gable,0,5701,,37.0420688,0,0,,,,1,1,,0.03,nav,1,1964,2,, 27830,NJBF000055210,102 HADDON RD,Somers Point,NJ,39.32545415,-74.6065771,RES1,3001,,16,NE,1965,1965,3101,2,1,1412.617908,1412.617908,3507,NO,38.82,46.79,1,0.67,6106,111.338805,121.489496,131.196483,137.439261,I,Above,Gable,0,5701,,42.80326059,0,0,,,,1,1,,0.03,nav,1,1965,2,, 27831,NJBF000057615,47 CHAPMAN BLVD,Somers Point,NJ,39.33088004,-74.60374142,RES1,3001,,16,NE,1981,1981,3101,1,1,1857.326269,1857.326269,3507,NO,18.81,26.18,1,2.14,6110,111.28875,121.471434,131.181513,137.419702,I,Above,Gable,0,5701,,22.49886123,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 27832,NJBF000057550,45 CHAPMAN BLVD,Somers Point,NJ,39.33076947,-74.60353936,RES1,3001,,16,NE,1981,1981,3101,1,1,1743.040475,1743.040475,3507,NO,19.35,33.2,1,0.04,6112,111.294435,121.476198,131.185972,137.425485,I,Above,Gable,0,5701,,26.276615,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 27833,NJBF000053271,41 GULPH MILL RD,Somers Point,NJ,39.31934229,-74.61779976,RES1,3001,,16,NE,1966,1966,3101,1,1,2235.051834,2235.051834,3507,NO,11.8,26.22,1,-0.19,6106,111.263597,121.378402,131.086058,137.295599,I,Above,Hip,0,5701,,19.00797735,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27834,NJBF000051731,,Somers Point,NJ,39.31031904,-74.60743627,RES3A,3001,,NaN,NE,1969,0,3301,1,1,4899.335029,4899.335029,3507,NO,15.04,24.72,1,1.51,6106,111.602286,121.665143,131.348239,137.636537,I,Above,Gable,0,5701,,19.88041748,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27835,NJBF000053228,22 LAUREL DR SOUTH,Somers Point,NJ,39.31918007,-74.61532821,RES1,3001,,16,NE,1979,1979,3101,1,1,1925.695943,1925.695943,3507,NO,10.27,17.58,1,-0.79,6106,111.306865,121.42143,131.126663,137.348819,I,Above,Gable,0,5701,,13.92636737,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27836,NJBF000055735,160 EXTON RD,Somers Point,NJ,39.32683869,-74.61008327,RES1,3001,,16,NE,1979,1979,3101,1,1,1950.679643,1950.679643,3507,NO,11.82,24.56,1,0.75,6106,111.252435,121.413412,131.125581,137.346934,I,Above,Hip,0,5701,,18.18812193,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27837,NJBF000058239,47 WILSON AVE,Somers Point,NJ,39.33194867,-74.60648252,RES1,3001,,16,NE,1984,1984,3101,1,1,2188.852401,2188.852401,3507,NO,13.44,27.86,1,-0.29,6106,111.220013,121.412056,131.125993,137.347485,I,Above,Gable,0,5701,,20.64758116,0,0,,,,1,1,,0.03,nav,1,1984,1,, 27838,NJBF000051951,137 GIBBS AVE,Somers Point,NJ,39.31196604,-74.59144508,RES1,3001,,16,NE,1950,1950,3102,1,2,819.7642272,819.7642272,3505,NO,15.51,26.51,3,-2.25,6106,111.857523,121.911866,131.589623,137.940464,I,Above,Gable,0,5701,,21.01097466,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 27839,NJBF000055312,11 CORNELL RD,Somers Point,NJ,39.32574315,-74.60891498,RES1,3001,,16,NE,1970,1970,3101,2,1,1439.958311,1439.958311,3507,NO,31.09,36.83,1,0.14,6106,111.292869,121.446563,131.156153,137.386843,I,Above,Gable,0,5701,,33.96091468,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27840,NJBF000058810,35 WILSON AVE,Somers Point,NJ,39.33297417,-74.60709001,RES1,3001,,16,NE,1984,1984,3101,2,1,1874.995185,1874.995185,3507,NO,33.49,41.45,1,-0.28,6106,111.190226,121.389452,131.10496,137.320041,I,Above,Gable,0,5701,,37.47103592,0,0,,,,1,1,,0.03,nav,1,1984,2,, 27841,NJBF000058942,35 WILSON AVE,Somers Point,NJ,39.333215,-74.6074095,RES1,3001,,16,NE,1984,1984,3101,2,1,502.3972742,502.3972742,3507,NO,31.26,39.49,1,1.72,6106,111.180093,121.381135,131.09721,137.309913,I,Above,Gable,0,5701,,35.37535457,0,0,,,,1,1,,0.03,nav,1,1984,2,, 27842,NJBF000055563,6 STANFORD RD,Somers Point,NJ,39.32642024,-74.60755514,RES1,3001,,16,NE,1969,1969,3101,1,1,1721.507276,1721.507276,3507,NO,16.42,21.66,1,0.2,6106,111.303848,121.46114,131.170267,137.405185,I,Above,Gable,0,5701,,19.04001571,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27843,NJBF000054380,126 DEVON RD,Somers Point,NJ,39.32323508,-74.61229788,RES1,3001,,16,NE,1957,1957,3101,2,1,1666.161567,1666.161567,3507,NO,39.4,52.21,1,1.91,6112,111.281938,121.420909,131.130188,137.35309,I,Above,Hip,0,5701,,45.80286955,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27844,NJBF000052201,101 HARLAN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1976,3102,2,1,1398.850469,1398.850469,3505,NO,28.65,41.42,3,2.15,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,35.03886565,0,1.1,,,,1,1,,0.03,nav,1,2007,2,, 27845,NJBF000054247,111 E DAWES AVE,Somers Point,NJ,39.32284094,-74.58500444,RES1,3001,,16,NE,1965,1965,3102,1,1,1795.932583,1795.932583,3505,NO,22,32.29,3,2.77,6106,111.785413,121.887478,131.575405,137.920988,I,Above,Gable,0,5701,,27.1427568,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27846,NJBF000057190,3 CRESTMONT DR,Somers Point,NJ,39.3301075,-74.601458,RES1,3001,,43,NE,1966,1966,3101,2,2,1356.845003,1356.845003,3507,NO,34.7,42.13,1,1.58,6112,111.344318,121.519505,131.226622,137.47808,I,Above,Gable,0,5701,,38.41841848,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27847,NJBF000057643,12 CRESTMONT DR,Somers Point,NJ,39.33092767,-74.60108083,RES1,3001,,43,NE,1966,1966,3101,2,2,1288.018507,1288.018507,3507,NO,37.14,46.27,1,1.36,6110,111.336136,121.516043,131.223505,137.474034,I,Above,Flat,0,5701,,41.70467741,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27848,NJBF000055159,132 E OCEAN AVE,Somers Point,NJ,39.32530752,-74.5829079,RES1,3001,,16,NE,1966,1966,3102,1,1,2149.192344,2149.192344,3505,NO,21.28,30.26,3,6.03,6112,111.782914,121.893599,131.582512,137.929433,I,Above,Hip,0,5701,,25.77147376,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27849,NJBF000052188,,Somers Point,NJ,39.31331732,-74.5879352,RES3C,3001,,NaN,ME,1969,0,3301,1,1,7565.008515,7565.008515,3507,NO,18.23,30.95,1,-0.25,6102,111.898805,121.954347,131.632514,137.993505,I,Above,Flat,0,NaN,,24.59136843,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27850,NJBF000053304,8 VIOLET LN,Somers Point,NJ,39.3194379,-74.61335141,RES1,3001,,16,NE,1957,1957,3101,1,1,2150.094669,2150.094669,3507,NO,17.25,27.82,1,0.87,6106,111.334769,121.451019,131.155036,137.385827,I,Above,Gable,0,5701,,22.53340776,0,0,,,,1,1,,0.03,nav,1,1957,1,, 27851,NJBF000055466,1412 MASSACHUSETTS AVE,Somers Point,NJ,39.32617562,-74.60877826,RES1,3001,,16,NE,1971,1971,3101,1,1,2198.107356,2198.107356,3507,NO,14.67,29.62,1,0.36,6110,111.287189,121.443536,131.153552,137.38344,I,Above,Gable,0,5701,,22.14386308,0,0,,,,1,1,,0.35,nav,1,1971,1,, 27852,NJBF000055799,162 EXTON RD,Somers Point,NJ,39.32700392,-74.60990269,RES1,3001,,16,NE,1978,1978,3101,2,1,1253.578336,1253.578336,3507,NO,33.95,40.47,1,2.52,6106,111.252446,121.414412,131.126608,137.348273,I,Above,Flat,0,5701,,37.20757713,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 27853,NJBF000054289,194 BALA DR,Somers Point,NJ,39.32296766,-74.60960281,RES1,3001,,16,NE,1966,1966,3101,1,1,2629.829236,2629.829236,3507,NO,17.99,32.31,1,0.22,6110,111.332556,121.469375,131.175761,137.412499,I,Above,Flat,0,5701,,25.14972924,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27854,NJBF000052269,13 HORTER AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1976,3102,1,1,1424.755134,1424.755134,3505,NO,19.5,25.55,3,4.28,6110,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,22.52503987,0,0,,,,1,1,,0.35,nav,1,2007,1,, 27855,NJBF000057859,11 FOX TAIL CT,Somers Point,NJ,39.33127687,-74.60705023,RES1,3001,,27,NE,1987,1987,3101,2,1,1517.5265,1517.5265,3507,NO,40.69,54.36,1,2.76,6106,111.222487,121.410543,131.124476,137.345492,I,Above,Gable,0,5701,,47.52592667,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27856,NJBF000055570,1416 MASSACHUSETTS AVE,Somers Point,NJ,39.32644557,-74.60916906,RES1,3001,,16,NE,1968,1968,3101,1,1,2499.171748,2499.171748,3507,NO,13.16,18.88,1,1.06,6110,111.275433,121.433631,131.144379,137.371478,I,Above,Gable,0,5701,,16.01817899,0,0,,,,1,1,,0.35,nav,1,1968,1,, 27857,NJBF000053583,3 MALVERN RD,Somers Point,NJ,39.32048778,-74.6162514,RES1,3001,,16,NE,1965,1965,3101,1,1,2013.344968,2013.344968,3507,NO,14.15,20.26,1,0.36,6106,111.267508,121.389542,131.097922,137.311055,I,Above,Gable,0,5701,,17.20779972,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27858,NJBF000057576,1 FOX TAIL CT,Somers Point,NJ,39.33081174,-74.60731061,RES1,3001,,27,NE,1987,1987,3101,1,1,1395.564129,1395.564129,3507,NO,15.12,20.61,1,0.91,6106,111.226542,121.41174,131.125505,137.346828,I,Above,Gable,0,5701,,17.86101145,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27859,NJBF000057161,5 PACIFIC AVE,Somers Point,NJ,39.33016301,-74.60718492,RES1,3001,,27,NE,1987,2000,3101,1,1,2432.462174,2432.462174,3507,NO,18.31,31.09,1,0.48,6106,111.240817,121.421729,131.134707,137.358829,I,Above,Gable,0,5701,,24.70185751,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27860,NJBF000052026,731 BAY AVE,Somers Point,NJ,39.312504,-74.593081,COM7,3001,562,NaN,ME,1983,1983,3401,2,1,2570.916863,2570.916863,3507,NO,24.66,31.26,1,-0.85,6106,111.817681,121.877576,131.556914,137.899575,I,Above,Flat,0,NaN,,27.96236642,0,0,,,,1,1,,0.03,nav,1,1983,2,, 27861,NJBF000058319,193 NEW RD,Somers Point,NJ,39.33881864,-74.59823119,COM8,3001,737,NaN,ME,1969,2000,3401,3,1,3465.210688,3465.210688,3507,NO,52.31,65.8,1,-0.23,6112,111.24558,121.47143,131.180564,137.418498,I,Above,Flat,0,NaN,,59.05827297,0,0,,,,1,1,,1,nav,1,1969,3,, 27862,NJBF000058519,193 NEW RD,Somers Point,NJ,39.33245727,-74.5934975,COM1,3001,737,NaN,ME,2000,2000,3401,1,1,3620.89432,3620.89432,3507,NO,19.06,24.92,1,-0.02,6106,111.450523,121.627123,131.32868,137.608876,I,Above,Hip,0,NaN,,21.98881605,0,0,,,,1,1,,0.03,nav,1,2000,1,, 27863,NJBF000051638,1401 ATKINSON AVE,Somers Point,NJ,39.3093405,-74.616647,RES1,3001,,16,NE,2008,2008,3102,2,1,944.2280473,944.2280473,3507,NO,33.02,43.09,1,-0.55,6112,111.466272,121.525885,131.212165,137.461865,I,Above,Hip,0,5701,,38.05480383,0,0,,,,1,1,,0.35,nav,1,2008,2,, 27864,NJBF000051798,105 HOLLY HILLS DR,Somers Point,NJ,39.31084233,-74.60212119,RES1,3001,,16,NE,1963,1963,3102,1,1,1709.471888,1709.471888,3505,NO,13.47,24.65,3,0.06,6112,111.685061,121.746908,131.428084,137.737906,I,Above,Gable,0,5701,,19.06448643,0,0,,,,1,1,,0.35,nav,1,1963,1,, 27865,NJBF000057392,6 CRESTMONT DR,Somers Point,NJ,39.3304905,-74.601644,RES1,3001,,43,NE,1966,1966,3101,2,2,1209.519217,1209.519217,3507,NO,38.2,48.25,1,0.91,6110,111.333878,121.511725,131.219362,137.468696,I,Above,Gable,0,5701,,43.22597624,0,0,,,,1,1,,0.35,nav,1,1966,2,, 27866,NJBF000056164,24 BUCKNELL RD,Somers Point,NJ,39.3278647,-74.61018058,RES1,3001,,16,NE,1978,1978,3101,1,1,2185.681018,2185.681018,3507,NO,17.77,23.72,1,-0.47,6106,111.231647,121.399159,131.112715,137.330101,I,Above,Gable,0,5701,,20.74582524,0,0,,,,1,1,,0.03,nav,1,1978,1,, 27867,NJBF000053320,39 GULPH MILL RD,Somers Point,NJ,39.31950516,-74.61823559,RES1,3001,,16,NE,1965,1965,3101,2,1,1405.218705,1405.218705,3507,NO,29.89,43.47,1,-0.99,6106,111.253544,121.369113,131.077456,137.28428,I,Above,Hip,0,5701,,36.68068353,0,0,,,,1,1,,0.03,nav,1,1965,2,, 27868,NJBF000053175,12 VIOLET LN,Somers Point,NJ,39.31898306,-74.61345606,RES1,3001,,16,NE,1956,1956,3101,1,1,1837.803767,1837.803767,3507,NO,12.79,21.24,1,0.91,6112,111.341443,121.455023,131.158332,137.390172,I,Above,Flat,0,5701,,17.01344189,0,0,,,,1,1,,0.35,nav,1,1956,1,, 27869,NJBF000053693,6 MALVERN RD,Somers Point,NJ,39.32089656,-74.61622361,RES1,3001,,16,NE,1967,1967,3101,1,1,2031.000717,2031.000717,3507,NO,15.94,23.35,1,2.67,6106,111.260358,121.384818,131.093896,137.305738,I,Above,Gable,0,5701,,19.64850447,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27870,NJBF000055442,110 HADDON RD,Somers Point,NJ,39.32611674,-74.60591481,RES1,3001,,16,NE,1966,1966,3101,1,1,1516.403937,1516.403937,3507,NO,17.81,26.79,1,1.95,6106,111.338141,121.492519,131.199704,137.443405,I,Above,Gable,0,5701,,22.29860045,0,0,,,,1,1,,0.03,nav,1,1966,1,, 27871,NJBF000052253,8 HARLAN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1970,3102,1,1,1502.968938,1502.968938,3505,NO,15.83,26.87,3,5.16,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,21.35134305,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27872,NJBF000054885,1 COLGATE RD,Somers Point,NJ,39.32455887,-74.608858,RES1,3001,,16,NE,1968,1968,3101,1,1,1866.768619,1866.768619,3507,NO,19.41,25.33,1,2.45,6106,111.315828,121.462143,131.170095,137.405038,I,Above,Gable,0,5701,,22.36836166,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27873,NJBF000054832,6 COLGATE RD,Somers Point,NJ,39.3244285,-74.6097745,RES1,3001,,16,NE,1970,1970,3101,1,1,601.9832356,601.9832356,3507,NO,16.81,25.63,1,2.02,6106,111.302511,121.448347,131.156986,137.387984,I,Above,Gable,0,5701,,21.22094052,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 27874,NJBF000053718,32 GULPH MILL RD,Somers Point,NJ,39.32101065,-74.61792006,RES1,3001,,16,NE,1968,1968,3101,1,1,1892.979649,1892.979649,3507,NO,18.65,26.33,1,1.62,6106,111.230705,121.355225,131.066057,137.269147,I,Above,Gable,0,5701,,22.48834602,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27875,NJBF000053885,7 GULPH MILL RD,Somers Point,NJ,39.32164261,-74.61602981,RES1,3001,,16,NE,1967,1967,3101,1,1,1788.338628,1788.338628,3507,NO,18.77,29.25,1,-0.56,6106,111.249675,121.378625,131.08882,137.299016,I,Above,Hip,0,5701,,24.01279409,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27876,NJBF000055803,119 N AMBLER RD,Somers Point,NJ,39.32701123,-74.60568937,RES1,3001,,16,NE,1967,1967,3101,1,1,1688.581722,1688.581722,3507,NO,20.42,29.1,1,1.86,6106,111.32558,121.485388,131.193417,137.435221,I,Above,Gable,0,5701,,24.75919611,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27877,NJBF000053547,32 LAUREL DR SOUTH,Somers Point,NJ,39.32034802,-74.61588478,RES1,3001,,16,NE,1965,1965,3101,1,1,2487.64977,2487.64977,3507,NO,12.09,26.61,1,-0.44,6106,111.276087,121.397391,131.105197,137.320604,I,Above,Hip,0,5701,,19.35333051,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27878,NJBF000055513,4 STANFORD RD,Somers Point,NJ,39.32629973,-74.60734727,RES1,3001,,16,NE,1968,1968,3101,1,1,1458.451175,1458.451175,3507,NO,12.25,24.67,1,-0.19,6106,111.309695,121.46612,131.174897,137.411206,I,Above,Gable,0,5701,,18.45853142,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27879,NJBF000055993,17 STANFORD RD,Somers Point,NJ,39.32747105,-74.60847046,RES1,3001,,16,NE,1971,1971,3101,1,1,2393.591285,2393.591285,3507,NO,13.67,19.78,1,2.71,6106,111.268449,121.432824,131.144141,137.371145,I,Above,Hip,0,5701,,16.72867625,0,0,,,,1,1,,0.03,nav,1,1971,1,, 27880,NJBF000054970,8 HARNED AVE,Somers Point,NJ,39.3247794,-74.58392859,RES1,3001,,16,NE,1965,1965,3102,2,1,2201.381689,2201.381689,3505,NO,21.89,27.2,3,-2.7,6112,111.772178,121.882478,131.571534,137.915857,I,Above,Gable,0,5701,,24.54807277,0,0,,,,1,1,,0.35,nav,1,1965,2,, 27881,NJBF000055417,150 EXTON RD,Somers Point,NJ,39.32604372,-74.61092506,RES1,3001,,16,NE,1978,1978,3101,2,1,1268.833908,1268.833908,3507,NO,25.27,34.46,1,1.56,6106,111.252876,121.409053,131.12103,137.341004,I,Above,Gable,0,5701,,29.86304485,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 27882,NJBF000054825,4 COLGATE RD,Somers Point,NJ,39.3244093,-74.60941151,RES1,3001,,16,NE,1970,1970,3101,1,1,1679.670432,1679.670432,3507,NO,18.17,31.06,1,2.77,6106,111.309097,121.454691,131.162959,137.395761,I,Above,Hip,0,5701,,24.61188094,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27883,NJBF000053387,,Somers Point,NJ,39.31973369,-74.5873851,RES1,3001,,NaN,NE,1969,0,3102,2,1,558.4314215,558.4314215,3507,NO,37.64,49.18,1,0.86,6110,111.794762,121.88467,131.570687,137.915586,I,Above,Gable,0,5701,,43.41375298,0,0,,,,1,1,,0.35,nav,1,1969,2,, 27884,NJBF000055131,25 AMBLER RD,Somers Point,NJ,39.3252245,-74.607456,RES1,3001,,16,NE,1963,1963,3101,2,1,1870.71487,1870.71487,3507,NO,21.54,27.03,1,0.27,6106,111.327742,121.477519,131.185037,137.424421,I,Above,Gable,0,5701,,24.28438202,0,0,,,,1,1,,0.03,nav,1,1963,2,, 27885,NJBF000054915,136 EXTON RD,Somers Point,NJ,39.32463309,-74.61261878,RES1,3001,,16,NE,1957,1957,3101,1,1,2541.330954,2541.330954,3507,NO,18.59,29.21,1,2.71,6106,111.250545,121.398119,131.109801,137.326357,I,Above,Gable,0,5701,,23.90111196,0,0,,,,1,1,,0.03,nav,1,1957,1,, 27886,NJBF000056878,27 CHAPMAN BLVD,Somers Point,NJ,39.32944955,-74.60082621,RES1,3001,,16,NE,1972,1972,3101,2,1,1532.3935,1532.3935,3507,NO,31.31,40.6,1,2.19,6112,111.367899,121.538158,131.244077,137.500612,I,Above,Gable,0,5701,,35.95335011,0,0,,,,1,1,,0.35,nav,1,1972,2,, 27887,NJBF000056188,13 DARTMOUTH RD,Somers Point,NJ,39.32791635,-74.60759723,RES1,3001,,16,NE,1970,1970,3101,1,1,2289.225509,2289.225509,3507,NO,16.76,27.11,1,-0.94,6106,111.275352,121.442108,131.153067,137.382767,I,Above,Gable,0,5701,,21.93704667,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27888,NJBF000054197,211 BAY AVE,Somers Point,NJ,39.32269708,-74.58462866,RES1,3001,,17,NE,1966,1966,3102,3,1,1692.861503,1692.861503,3505,NO,39.91,49.32,3,-2.05,6106,111.795233,121.895624,131.583206,137.930724,I,Above,Gable,0,5701,,44.6137228,0,1.2,,,,1,1,,0.03,nav,1,1966,3,, 27889,NJBF000051484,1 LANDING LN,Somers Point,NJ,39.30753222,-74.6020771,RES1,3001,,18,NE,1980,1980,3102,2,1,2861.651033,2861.651033,3507,NO,32.35,43.54,1,0.02,6102,111.745912,121.789714,131.464753,137.784972,I,Above,Gable,0,5701,,37.94198663,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 27890,NJBF000052318,6 HORTER AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1979,3102,1,1,1378.171844,1378.171844,3505,NO,21.29,30.61,3,2.46,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,25.95032595,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27891,NJBF000052489,120 MAYS LANDING RD,Somers Point,NJ,39.31509185,-74.62744689,COM3,3001,,15,ME,1945,1945,3401,1,1,1003.08626,1003.08626,3507,NO,16.2,24.03,1,1.71,6102,111.190965,121.274988,130.98152,137.158151,I,Above,Flat,0,NaN,,20.1180916,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 27892,NJBF000058936,29 WILSON AVE,Somers Point,NJ,39.33320806,-74.60628238,RES1,3001,,16,NE,1984,1984,3101,1,1,2727.17006,2727.17006,3507,NO,18.42,27.44,1,-0.26,6106,111.200197,121.400359,131.115156,137.333373,I,Above,Gable,0,5701,,22.93070431,0,0,,,,1,1,,0.03,nav,1,1984,1,, 27893,NJBF000055037,20 YALE BLVD,Somers Point,NJ,39.32496204,-74.61148023,RES1,3001,,16,NE,1971,1971,3101,1,1,2791.371737,2791.371737,3507,NO,15.49,26.83,1,1.17,6106,111.263606,121.413126,131.124161,137.34513,I,Above,Hip,0,5701,,21.16231839,0,0,,,,1,1,,0.03,nav,1,1971,1,, 27894,NJBF000051764,600 MAYS LANDING RD,Somers Point,NJ,39.31062516,-74.60819558,RES1,3001,,16,NE,1948,1948,3101,1,1,1791.707558,1791.707558,3505,NO,20.52,32.9,3,7.66,6106,111.583708,121.648633,131.332751,137.616686,I,Above,Gable,0,5701,,26.70697096,0,0,,,,1,1,,0.03,nav,1,1948,1,, 27895,NJBF000055212,116 OSBORNE RD,Somers Point,NJ,39.32545547,-74.60399054,RES1,3001,,16,NE,1964,1964,3101,1,1,1991.462459,1991.462459,3507,NO,16.16,28.43,1,0.2,6106,111.384368,121.533118,131.237732,137.492619,I,Above,Gable,0,5701,,22.29634429,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27896,NJBF000055410,119 PRINCETON RD,Somers Point,NJ,39.32602028,-74.60407391,RES1,3001,,16,NE,1965,1965,3101,1,1,1814.598041,1814.598041,3507,NO,15.88,29.38,1,-0.1,6106,111.372476,121.524795,131.230154,137.482805,I,Above,Gable,0,5701,,22.63220094,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27897,NJBF000054933,16 YALE BLVD,Somers Point,NJ,39.3246897,-74.61111124,RES1,3001,,16,NE,1970,1970,3101,2,1,1336.43622,1336.43622,3507,NO,25.33,36.3,1,1.44,6106,111.274914,121.422689,131.132978,137.356661,I,Above,Gable,0,5701,,30.81629696,0,0,,,,1,1,,0.03,nav,1,1970,2,, 27898,NJBF000056346,30 BUCKNELL RD,Somers Point,NJ,39.3282645,-74.610276,RES1,3001,,16,NE,1979,1979,3101,1,1,1329.789271,1329.789271,3507,NO,17.85,25.57,1,1.97,6106,111.222564,121.392657,131.106799,137.322359,I,Above,Hip,0,5701,,21.70772136,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27899,NJBF000055411,15 CORNELL RD,Somers Point,NJ,39.32602451,-74.60928094,RES1,3001,,16,NE,1970,1970,3101,1,1,2725.37516,2725.37516,3507,NO,14.21,24.89,1,0.58,6110,111.281332,121.436929,131.147245,137.375227,I,Above,Gable,0,5701,,19.55162534,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27900,NJBF000054213,113 E DAWES AVE,Somers Point,NJ,39.3227555,-74.5848465,RES1,3001,,16,NE,1965,1965,3102,1,1,1181.111274,1181.111274,3505,NO,9.53,19.89,3,-2.56,6106,111.789997,121.891217,131.578974,137.925446,I,Above,Gable,0,5701,,14.70840449,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27901,NJBF000052690,11 KAPPELLA AVE,Somers Point,NJ,39.31656694,-74.58712633,RES1,3001,,16,NE,1972,1972,3102,1,1,999.256202,999.256202,3505,NO,21.39,33.25,3,4.04,6106,111.856118,121.927908,131.610017,137.965039,I,Above,Gable,0,5701,,27.31874842,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27902,NJBF000051922,747 BAY AVE,Somers Point,NJ,39.31178712,-74.59358386,RES1,3001,,17,NE,2010,2010,3102,2,1,1389.338395,1389.338395,3505,NO,43.1,57.72,3,4.15,6106,111.821356,121.878074,131.556541,137.899243,I,Above,Gable,0,5701,,50.40795783,0,0,,,,1,1,,0.03,nav,1,2010,2,, 27903,NJBF000057698,19 CEDAR CT,Somers Point,NJ,39.33101464,-74.60800694,RES1,3001,,27,NE,1987,1987,3101,2,1,1200.188657,1200.188657,3507,NO,35.49,49.79,1,2.95,6106,111.21057,121.397505,131.112226,137.329486,I,Above,Gable,0,5701,,42.63905945,0,0,,,,1,1,,0.03,nav,1,1987,2,, 27904,NJBF000055055,9 HARNED AVE,Somers Point,NJ,39.32501002,-74.58342178,RES1,3001,,16,NE,1968,1968,3102,2,1,1510.802944,1510.802944,3505,NO,28.09,35.6,3,1.65,6112,111.778049,121.888377,131.577337,137.923044,I,Above,Hip,0,5701,,31.84473805,0,0,,,,1,1,,0.35,nav,1,1968,2,, 27905,NJBF000053925,9 GULPH MILL RD,Somers Point,NJ,39.3218015,-74.61582203,RES1,3001,,16,NE,1967,1967,3101,1,1,2672.426278,2672.426278,3507,NO,14.58,23.81,1,-0.96,6110,111.250143,121.380094,131.090365,137.301033,I,Above,Gable,0,5701,,19.19609626,0,1.1,,,,1,1,,0.35,nav,1,1967,1,, 27906,NJBF000053566,53 GULPH MILL RD,Somers Point,NJ,39.32043359,-74.61707952,RES1,3001,,16,NE,1967,1967,3101,2,1,1326.900902,1326.900902,3507,NO,37.53,49.72,1,0.21,6106,111.255013,121.376467,131.085495,137.29475,I,Above,Gable,0,5701,,43.62492002,0,0,,,,1,1,,0.03,nav,1,1967,2,, 27907,NJBF000052208,106 STERN DRIVE,Somers Point,NJ,39.31341614,-74.5801762,RES1,3001,,16,NE,1968,1968,3102,1,1,2561.923776,2561.923776,3507,NO,18.12,23.47,1,2.14,6106,112.04509,122.084795,131.760088,138.15062,I,Above,Hip,0,5701,,20.79186518,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27908,NJBF000052209,,Somers Point,NJ,39.31341786,-74.57831315,RES1,3001,,NaN,NE,1969,0,3102,2,1,2411.172049,2411.172049,3507,NO,36.21,44.24,1,2.07,6106,112.081204,122.116488,131.791179,138.188611,I,Above,Flat,0,5701,,40.22764458,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27909,NJBF000052114,,Somers Point,NJ,39.31294246,-74.58076029,RES3C,3001,,NaN,ME,1959,0,3301,1,1,3419.917645,3419.917645,3507,NO,21.5,32.86,1,2.72,6106,112.042149,122.080697,131.755583,138.145186,I,Above,Hip,0,NaN,,27.18335346,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27910,NJBF000055856,1014 W GROVELAND AVE,Somers Point,NJ,39.32713777,-74.60394265,RES1,3001,,16,NE,1965,1965,3101,1,1,2785.668878,2785.668878,3507,NO,11.6,20.2,1,-0.8,6112,111.354187,121.513353,131.219866,137.469458,I,Above,Gable,0,5701,,15.90010897,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27911,NJBF000053945,217 BAY AVE,Somers Point,NJ,39.32188062,-74.58540953,RES1,3001,,16,NE,1971,1971,3102,1,1,2637.489716,2637.489716,3505,NO,23.57,38.39,3,6.17,6106,111.794539,121.892178,131.579395,137.926108,I,Above,Hip,0,5701,,30.98231505,0,0,,,,1,1,,0.03,nav,1,1971,1,, 27912,NJBF000055372,221 E OCEAN AVE,Somers Point,NJ,39.32590339,-74.58300841,RES1,3001,,16,NE,1900,1900,3102,2,1,2612.109739,2612.109739,3505,NO,34.79,48.82,3,0.94,6112,111.770523,121.884753,131.574194,137.918981,I,Above,Gable,0,5701,,41.80269385,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 27913,NJBF000056197,1019 W GROVELAND AVE,Somers Point,NJ,39.327945,-74.60455071,RES1,3001,,16,NE,1972,1972,3101,2,1,1801.779772,1801.779772,3507,NO,36.12,48.06,1,2.9,6106,111.328463,121.493235,131.201212,137.445291,I,Above,Gable,0,5701,,42.08754594,0,0,,,,1,1,,0.03,nav,1,1972,2,, 27914,NJBF000051854,,Somers Point,NJ,39.3112602,-74.61090775,RES4,3001,,NaN,ME,1988,0,3401,3,1,5476.471797,5476.471797,3507,NO,52.83,65.7,1,0.73,6110,111.526151,121.595609,131.282565,137.552218,I,Above,Hip,0,NaN,,59.26413215,0,0,,,,1,1,,1,nav,1,1988,3,, 27915,NJBF000054817,176 BALA DR,Somers Point,NJ,39.32439916,-74.61139347,RES1,3001,,16,NE,1959,1959,3101,1,1,1382.758619,1382.758619,3507,NO,18.88,29.85,1,2.85,6106,111.275551,121.421572,131.131717,137.355027,I,Above,Gable,0,5701,,24.36612377,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27916,NJBF000051410,,Somers Point,NJ,39.30627201,-74.60880022,RES1,3001,,NaN,NE,1999,0,3102,2,1,1484.101834,1484.101834,3507,NO,32.69,42.05,1,1.95,6106,111.652706,121.694504,131.370106,137.665423,I,Above,Gable,0,5701,,37.36750742,0,0,,,,1,1,,0.03,nav,1,1999,2,, 27917,NJBF000052212,,Somers Point,NJ,39.3134398,-74.58872508,RES3C,3001,,NaN,ME,1969,0,3301,2,1,19568.16301,19568.16301,3507,NO,30.26,44.69,1,0.77,6106,111.881775,121.939454,131.618144,137.975657,I,Above,Flat,0,NaN,,37.4713316,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27918,NJBF000058376,8 WOODLOT CT,Somers Point,NJ,39.33219885,-74.60067829,RES1,3001,,16,NE,1990,1990,3101,1,1,1478.201784,1478.201784,3507,NO,10.95,25.91,1,0.04,6110,111.320235,121.507682,131.215762,137.46401,I,Above,Gable,0,5701,,18.42681337,0,0,,,,1,1,,0.35,nav,1,1990,1,, 27919,NJBF000054640,182 BALA DR,Somers Point,NJ,39.323942,-74.6107415,RES1,3001,,16,NE,1960,1960,3101,1,1,504.9384428,504.9384428,3507,NO,12.26,22.83,1,1.3,6110,111.295077,121.438165,131.147027,137.375029,I,Above,Gable,0,5701,,17.54154776,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 27920,NJBF000057209,9 PACIFIC AVE,Somers Point,NJ,39.33016301,-74.60718492,RES1,3001,,27,NE,1987,2001,3101,1,1,2409.788443,2409.788443,3507,NO,18.98,28.78,1,2.4,6106,111.240817,121.421729,131.134707,137.358829,I,Above,Gable,0,5701,,23.87908993,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27921,NJBF000051844,,Somers Point,NJ,39.31114543,-74.61050013,RES4,3001,,NaN,ME,1988,0,3401,3,1,5433.194291,5433.194291,3507,NO,42.2,52.03,1,0.64,6110,111.535126,121.60383,131.290312,137.562196,I,Above,Hip,0,NaN,,47.11287492,0,0,,,,1,1,,1,nav,1,1988,3,, 27922,NJBF000055401,107 E OCEAN AVE,Somers Point,NJ,39.32598648,-74.58330065,RES1,3001,,16,NE,1993,1993,3102,2,1,2044.296606,2044.296606,3505,NO,21.71,28.66,3,-1.26,6112,111.763304,121.87874,131.568415,137.911772,I,Above,Gable,0,5701,,25.18324901,0,1.2,,,,1,1,,0.35,nav,1,1993,2,, 27923,NJBF000053813,8 GULPH MILL RD,Somers Point,NJ,39.3213806,-74.61558673,RES1,3001,,16,NE,1967,1967,3101,1,1,2561.115977,2561.115977,3507,NO,12.36,20.31,1,-0.57,6106,111.261798,121.389298,131.098634,137.311913,I,Above,Hip,0,5701,,16.33521768,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27924,NJBF000054699,11 AMBLER RD,Somers Point,NJ,39.32408217,-74.60874436,RES1,3001,,16,NE,1967,1967,3101,1,1,1712.968633,1712.968633,3507,NO,12.5,20.3,1,-0.19,6106,111.326635,121.469963,131.177152,137.414238,I,Above,Gable,0,5701,,16.40231891,0,0,,,,1,1,,0.03,nav,1,1967,1,, 27925,NJBF000051975,125 GIBBS AVE,Somers Point,NJ,39.31210609,-74.59166125,RES1,3001,,43,NE,1930,1930,3102,1,2,1468.586229,1468.586229,3505,NO,19.29,25.29,3,5.26,6106,111.851016,121.906477,131.584544,137.934113,I,Above,Hip,0,5701,,22.28961159,0,0,,,,1,1,,0.03,nav,1,1930,1,, 27926,NJBF000055276,104 HADDON RD,Somers Point,NJ,39.32563431,-74.60638626,RES1,3001,,16,NE,1965,1965,3101,1,1,1623.292381,1623.292381,3507,NO,15.24,28.55,1,1.55,6106,111.338816,121.490503,131.197537,137.440619,I,Above,Gable,0,5701,,21.89407993,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27927,NJBF000055322,186 JORDAN RD,Somers Point,NJ,39.32577251,-74.60236155,RES1,3001,,16,NE,1964,1964,3101,1,1,1540.15006,1540.15006,3507,NO,18.57,23.98,1,2.62,6110,111.407608,121.556762,131.260293,137.521682,I,Above,Gable,0,5701,,21.27864717,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27928,NJBF000054962,100 PRINCETON RD,Somers Point,NJ,39.32475614,-74.60601389,RES1,3001,,16,NE,1965,1965,3101,1,1,1412.175717,1412.175717,3507,NO,18.33,29.71,1,0.79,6110,111.361572,121.507576,131.213154,137.460894,I,Above,Hip,0,5701,,24.01911193,0,1.1,,,,1,1,,0.35,nav,1,1965,1,, 27929,NJBF000055556,120 PRINCETON RD,Somers Point,NJ,39.32640569,-74.60431015,RES1,3001,,16,NE,1966,1966,3101,1,1,1225.45739,1225.45739,3507,NO,16.37,26.39,1,1.81,6110,111.361162,121.516085,131.222111,137.472393,I,Above,Gable,0,5701,,21.38105367,0,0,,,,1,1,,0.35,nav,1,1966,1,, 27930,NJBF000055787,44 BUCKNELL RD,Somers Point,NJ,39.32697688,-74.61162531,RES1,3001,,16,NE,1978,1978,3101,2,1,1686.106217,1686.106217,3507,NO,39.02,46.48,1,0.73,6106,111.223614,121.385779,131.099713,137.313086,I,Above,Gable,0,5701,,42.74992503,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27931,NJBF000051727,,Somers Point,NJ,39.31028372,-74.61731954,RES1,3001,,NaN,NE,1969,0,3102,2,1,20629.13311,20629.13311,3507,NO,24.44,31.29,1,0.8,6106,111.438085,121.502632,131.191392,137.434703,I,Above,Hip,0,5701,,27.86566215,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27932,NJBF000054779,137 BALA DR,Somers Point,NJ,39.32428521,-74.61492496,RES1,3001,,16,NE,1957,1957,3101,2,1,1379.114517,1379.114517,3507,NO,33.61,44.11,1,-0.43,6106,111.21866,121.363884,131.077329,137.283777,I,Above,Gable,0,5701,,38.857777,0,0,,,,1,1,,0.03,nav,1,1957,2,, 27933,NJBF000055923,164 EXTON RD,Somers Point,NJ,39.32729162,-74.60969319,RES1,3001,,16,NE,1978,1978,3101,2,1,2394.064412,2394.064412,3507,NO,37.05,46.56,1,0.59,6106,111.250687,121.41441,131.126753,137.348457,I,Above,Gable,0,5701,,41.80389926,0,0,,,,1,1,,0.03,nav,1,1978,2,, 27934,NJBF000055919,20 STANFORD RD,Somers Point,NJ,39.32727616,-74.60904497,RES1,3001,,16,NE,1970,1970,3101,1,1,2117.711172,2117.711172,3507,NO,17.29,26,1,-0.6,6106,111.262137,121.425522,131.137185,137.362077,I,Above,Gable,0,5701,,21.64676913,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27935,NJBF000055612,128 OSBORNE RD,Somers Point,NJ,39.32655785,-74.6028582,RES1,3001,,16,NE,1964,1964,3101,1,1,1542.093509,1542.093509,3507,NO,15.45,28.59,1,0.65,6112,111.384271,121.538784,131.243648,137.500191,I,Above,Gable,0,5701,,22.01995021,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27936,NJBF000054997,18 YALE BLVD,Somers Point,NJ,39.32484095,-74.61129873,RES1,3001,,16,NE,1972,1972,3101,1,1,2358.812888,2358.812888,3507,NO,20.86,30.53,1,2.66,6106,111.268921,121.417662,131.128349,137.350608,I,Above,Gable,0,5701,,25.696096,0,0,,,,1,1,,0.03,nav,1,1972,1,, 27937,NJBF000052176,59 GIBBS AVE,Somers Point,NJ,39.31325411,-74.59355337,RES1,3001,,16,NE,1930,1930,3102,1,1,1076.887511,1076.887511,3505,NO,21.91,33.84,3,8.51,6106,111.7955,121.860258,131.540967,137.879504,I,Above,Gable,0,5701,,27.87410546,0,0,,,,1,1,,0.03,nav,1,1930,1,, 27938,NJBF000053483,128 E CEDAR AVE,Somers Point,NJ,39.32009871,-74.58688915,RES1,3001,,15,NE,1925,1925,3102,2,1,524.4305893,524.4305893,3505,NO,30.58,41.18,3,6.25,6106,111.79774,121.888654,131.574808,137.920668,I,Above,Gable,0,5701,,35.88228156,0,0,,,,1,1,,0.03,nav,1,1925,2,, 27939,NJBF000052154,67 GIBBS AVE,Somers Point,NJ,39.31314366,-74.59330602,RES1,3001,,16,NE,1916,1916,3102,2,1,1825.698324,1825.698324,3505,NO,40.82,54.34,3,5.76,6106,111.802021,121.865793,131.546213,137.886086,I,Above,Flat,0,5701,,47.58333305,0,0,,,,1,1,,0.03,nav,1,1916,2,, 27940,NJBF000052170,,Somers Point,NJ,39.31388406,-74.62512521,RES3B,3001,,NaN,E,1969,0,3303,4,1,8874.286677,8874.286677,3507,NO,61.7,75.43,1,0.21,6106,111.248616,121.32846,131.030474,137.223226,I,Above,Flat,0,5701,,68.56334742,0,0,,,,1,1,,0.03,nav,1,1969,4,, 27941,NJBF000052356,12 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,1954,3102,1,1,1299.1425,1299.1425,3505,NO,11.18,17.84,3,0.22,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,14.51171155,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27942,NJBF000051475,26 BROADWAY,Somers Point,NJ,39.30746446,-74.60240091,RES1,3001,,16,NE,1955,1955,3102,2,1,2503.554912,2503.554912,3507,NO,37.89,52.23,1,-0.09,6102,111.741462,121.785193,131.460249,137.77931,I,Above,Hip,0,5701,,45.06309717,0,0,,,,1,1,,0.03,nav,1,1955,2,, 27943,NJBF000054940,8 COLGATE RD,Somers Point,NJ,39.32470871,-74.6097636,RES1,3001,,16,NE,1970,1970,3101,1,1,1811.079022,1811.079022,3507,NO,10.76,23.38,1,-0.56,6106,111.297499,121.445064,131.154082,137.384187,I,Above,Gable,0,5701,,17.07072124,0,0,,,,1,1,,0.03,nav,1,1970,1,, 27944,NJBF000054851,136 COLWICK DR,Somers Point,NJ,39.32448221,-74.61402238,RES1,3001,,16,NE,1957,1957,3101,2,1,1515.60561,1515.60561,3507,NO,29.58,41.32,1,0.04,6110,111.229938,121.376518,131.089365,137.299575,I,Above,Hip,0,5701,,35.45402574,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27945,NJBF000057687,18 EDGEWOOD DR,Somers Point,NJ,39.330998,-74.59959,RES1,3001,,16,NE,1979,1979,3101,1,1,2044.047501,2044.047501,3507,NO,11,20.98,1,-0.6,6106,111.362261,121.540568,131.246647,137.503865,I,Above,Gable,0,5701,,15.98901948,0,0,,,,1,1,,0.03,nav,1,1979,1,, 27946,NJBF000054666,101 OSBORNE RD,Somers Point,NJ,39.32401661,-74.60481738,RES1,3001,,16,NE,1964,1964,3101,1,1,1402.75469,1402.75469,3507,NO,13.76,20.93,1,0.93,6112,111.396262,121.536855,131.240412,137.49617,I,Above,Gable,0,5701,,17.34568055,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27947,NJBF000051790,812 BAY AVE,Somers Point,NJ,39.31076364,-74.59421475,RES1,3001,,16,NE,1920,1920,3102,2,1,817.8223605,817.8223605,3505,NO,39,51.48,3,3.15,6106,111.828239,121.880288,131.557418,137.900535,I,Above,Hip,0,5701,,45.23874112,0,0,,,,1,1,,0.03,nav,1,1920,2,, 27948,NJBF000051617,301 MAYS LANDING,Somers Point,NJ,39.30912119,-74.60037181,RES4,3001,,NaN,ME,1959,1959,3401,2,1,9980.730133,9980.730133,3507,NO,36.53,45.7,1,2.33,6110,111.747188,121.797912,131.475109,137.797649,I,Above,Flat,0,NaN,,41.11716006,0,0,,,,1,1,,1,nav,1,1959,2,, 27949,NJBF000052291,,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,NaN,NE,2007,0,3102,2,1,743.4417453,743.4417453,3505,NO,32.92,47.65,3,-1.52,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,40.28596299,0,0,,,,1,1,,0.03,nav,1,2007,2,, 27950,NJBF000052308,,Somers Point,NJ,39.31388406,-74.62512521,RES3B,3001,,NaN,E,1969,0,3303,4,1,11085.52365,11085.52365,3507,NO,49.67,55.36,1,2.57,6106,111.248616,121.32846,131.030474,137.223226,I,Above,Flat,0,5701,,52.51610032,0,0,,,,1,1,,0.03,nav,1,1969,4,, 27951,NJBF000052413,,Somers Point,NJ,39.31388406,-74.62512521,RES3B,3001,,NaN,E,1969,0,3303,3,1,8428.99796,8428.99796,3507,NO,37.28,49.08,1,0.68,6106,111.248616,121.32846,131.030474,137.223226,I,Above,Flat,0,5701,,43.18145404,0,0,,,,1,1,,0.03,nav,1,1969,3,, 27952,NJBF000054507,123 E MEYRAN AVE,Somers Point,NJ,39.32357499,-74.58450628,RES1,3001,,16,NE,1950,1950,3102,1,1,1137.004001,1137.004001,3505,NO,26.06,36.76,3,8.88,6110,111.782127,121.887116,131.575445,137.920922,I,Above,Gable,0,5701,,31.40569887,0,0,,,,1,1,,0.35,nav,1,1950,1,, 27953,NJBF000056171,10 RUTGERS RD,Somers Point,NJ,39.3278704,-74.6068954,RES1,3001,,16,NE,1970,1970,3101,1,1,1613.348548,1613.348548,3507,NO,12.38,22.87,1,1.64,6110,111.288474,121.454523,131.164723,137.397937,I,Above,Gable,0,5701,,17.62425501,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27954,NJBF000054552,169 BALA DR,Somers Point,NJ,39.3237085,-74.6112545,RES1,3001,,16,NE,1959,1959,3101,1,1,1170.480871,1170.480871,3507,NO,13.44,23.08,1,2.04,6106,111.290711,121.432464,131.14147,137.367794,I,Above,Gable,0,5701,,18.25999079,0,0,,,,1,1,,0.03,nav,1,1959,1,, 27955,NJBF000056978,7 HAMILTON DR,Somers Point,NJ,39.32966071,-74.60383952,RES1,3001,,43,NE,1970,1970,3101,1,2,2253.832224,2253.832224,3507,NO,19.55,24.93,1,2.33,6110,111.309472,121.484461,131.1935,137.435258,I,Above,Gable,0,5701,,22.24148921,0,0,,,,1,1,,0.35,nav,1,1970,1,, 27956,NJBF000055684,13 BUCKNELL RD,Somers Point,NJ,39.32673622,-74.61072532,RES1,3001,,16,NE,1977,1977,3101,1,1,2186.293913,2186.293913,3507,NO,16.67,31.04,1,-0.17,6106,111.243391,121.403879,131.116571,137.335157,I,Above,Hip,0,5701,,23.85186241,0,0,,,,1,1,,0.03,nav,1,1977,1,, 27957,NJBF000054423,2 PRINCETON RD,Somers Point,NJ,39.32336365,-74.60824078,RES1,3001,,16,NE,1962,1962,3101,1,1,1748.007775,1748.007775,3507,NO,21.89,34.41,1,2.47,6110,111.348606,121.487313,131.193036,137.434909,I,Above,Gable,0,5701,,28.14794114,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 27958,NJBF000052221,26 GIBBS AVE,Somers Point,NJ,39.31347632,-74.59457051,RES1,3001,,16,NE,1930,1930,3101,1,1,1264.324194,1264.324194,3505,NO,9.8,20.47,3,-2.36,6112,111.772835,121.840338,131.521902,137.855587,I,Above,Flat,0,5701,,15.13343242,0,1.1,,,,1,1,,0.35,nav,1,1930,1,, 27959,NJBF000053471,33 GULPH MILL RD,Somers Point,NJ,39.32005786,-74.61792879,RES1,3001,,16,NE,1965,1965,3101,1,1,2378.39695,2378.39695,3507,NO,10.78,24.33,1,-0.83,6106,111.248244,121.367165,131.076267,137.282661,I,Above,Flat,0,5701,,17.55496258,0,0,,,,1,1,,0.03,nav,1,1965,1,, 27960,NJBF000054205,108 E DAWES AVE,Somers Point,NJ,39.32273449,-74.58569683,RES1,3001,,16,NE,1957,1957,3102,2,1,909.1751764,909.1751764,3505,NO,31.56,40.66,3,5.56,6110,111.773889,121.876942,131.565159,137.908234,I,Above,Gable,0,5701,,36.11385447,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27961,NJBF000054356,107 E DAWES AVE,Somers Point,NJ,39.3231575,-74.585273,RES1,3001,,16,NE,1955,1955,3102,1,2,1246.413514,1246.413514,3505,NO,21.62,28.95,3,8.66,6106,111.774594,121.879051,131.567429,137.911,I,Above,Gable,0,5701,,25.28586592,0,0,,,,1,1,,0.03,nav,1,1955,1,, 27962,NJBF000052405,1008 HARBOUR COVE,Somers Point,NJ,39.31448489,-74.58784299,RES3C,3001,,37,ME,1986,1986,3301,2,1,10700.46261,10700.46261,3507,NO,37.07,46.62,1,-0.83,6106,111.87969,121.941437,131.62117,137.979233,I,Above,Flat,0,NaN,,41.84621125,0,0,,,,1,1,,0.03,nav,1,1986,2,, 27963,NJBF000054398,6 PRINCETON RD,Somers Point,NJ,39.32328268,-74.60762451,RES1,3001,,16,NE,1962,1962,3101,1,1,2784.836242,2784.836242,3507,NO,16.46,30.58,1,-0.45,6110,111.360751,121.498666,131.203723,137.448771,I,Above,Gable,0,5701,,23.52254292,0,1.1,,,,1,1,,0.35,nav,1,1962,1,, 27964,NJBF000054481,124 EXTON RD,Somers Point,NJ,39.32349928,-74.61341511,RES1,3001,,16,NE,1957,1957,3101,1,1,1483.945474,1483.945474,3507,NO,17.01,31.93,1,2.52,6110,111.25834,121.398934,131.109682,137.326253,I,Above,Gable,0,5701,,24.46809894,0,0,,,,1,1,,0.35,nav,1,1957,1,, 27965,NJBF000052327,13 CLIVEDEN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,15,NE,2007,1904,3102,1,1,614.4816889,614.4816889,3505,NO,19.68,33.4,3,6.75,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,26.54306365,0,0,,,,1,1,,0.03,nav,1,2007,1,, 27966,NJBF000055438,2 STANFORD RD,Somers Point,NJ,39.32610323,-74.60721665,RES1,3001,,16,NE,1968,1968,3101,1,1,2124.695321,2124.695321,3507,NO,15.71,21.9,1,0.18,6106,111.315612,121.470731,131.179138,137.416724,I,Above,Gable,0,5701,,18.80310377,0,1.2,,,,1,1,,0.03,nav,1,1968,1,, 27967,NJBF000055208,148 BALA DR,Somers Point,NJ,39.32545091,-74.61430213,RES1,3001,,16,NE,1959,1959,3101,1,1,1333.644372,1333.644372,3507,NO,14.5,28.6,1,0.28,6110,111.207223,121.359768,131.074345,137.27982,I,Above,Gable,0,5701,,21.54666778,0,1.1,,,,1,1,,0.35,nav,1,1959,1,, 27968,NJBF000052020,48 HIGBEE AVE,Somers Point,NJ,39.31248685,-74.59434419,RES1,3001,,16,NE,2012,1930,3102,1,1,1906.404041,1906.404041,3505,NO,16.18,29.45,3,3.7,6110,111.794829,121.856524,131.53645,137.87399,I,Above,Hip,0,5701,,22.81755385,0,0,,,,1,1,,0.35,nav,1,2012,1,, 27969,NJBF000054186,131 AMBLER RD,Somers Point,NJ,39.32266148,-74.61033785,RES1,3001,,16,NE,1973,1973,3101,1,1,1862.285766,1862.285766,3507,NO,10.14,16.75,1,-0.74,6112,111.325718,121.46088,131.167477,137.401746,I,Above,Hip,0,5701,,13.44793587,0,0,,,,1,1,,0.35,nav,1,1973,1,, 27970,NJBF000052025,63 HIGBEE AVE,Somers Point,NJ,39.3125015,-74.5937715,RES1,3001,,15,NE,1920,1920,3101,1,1,1014.669769,1014.669769,3505,NO,12.56,25.36,3,-2.62,6106,111.805031,121.865964,131.545633,137.885476,I,Above,Gable,0,5701,,18.96185118,0,0,,,,1,1,,0.03,nav,1,1920,1,, 27971,NJBF000052342,BAY AVE,Somers Point,NJ,39.31405556,-74.59054868,RES1,3001,,NaN,NE,1987,1987,3102,1,1,7548.450729,7548.450729,3507,NO,19.74,28.86,1,0.55,6106,111.836656,121.900967,131.581375,137.929819,I,Above,Flat,0,5701,,24.29893841,0,0,,,,1,1,,0.03,nav,1,1987,1,, 27972,NJBF000058959,73 DEFEO LN,Somers Point,NJ,39.33326197,-74.60557177,RES1,3001,,16,NE,1984,1984,3101,1,1,1896.357091,1896.357091,3507,NO,13.18,26.82,1,1.9,6110,111.211852,121.411767,131.12582,137.347291,I,Above,Gable,0,5701,,19.9991771,0,0,,,,1,1,,0.35,nav,1,1984,1,, 27973,NJBF000054334,124 BALA DR,Somers Point,NJ,39.32310064,-74.61549523,RES1,3001,,16,NE,1967,1967,3101,1,2,2161.778626,2161.778626,3507,NO,16.5,27.4,1,1.58,6106,111.231329,121.369195,131.081318,137.289073,I,Above,Gable,0,5701,,21.95223,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 27974,NJBF000054365,124 BALA DR,Somers Point,NJ,39.32318487,-74.61560092,RES1,3001,,16,NE,1967,1967,3101,1,2,1014.089791,1014.089791,3507,NO,11.04,20.93,1,-0.04,6106,111.228025,121.366374,131.078737,137.285677,I,Above,Gable,0,5701,,15.98564846,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 27975,NJBF000054714,4 SWARTHMORE RD,Somers Point,NJ,39.324134,-74.6029635,RES1,3001,,16,NE,1965,1965,3101,1,1,547.7887869,547.7887869,3507,NO,17.54,26.55,1,-0.3,6112,111.426972,121.566677,131.268776,137.532711,I,Above,Hip,0,5701,,22.04646585,0,0,,,,1,1,,0.35,nav,1,1965,1,, 27976,NJBF000051908,42 E NEW JERSEY AVE,Somers Point,NJ,39.31166525,-74.59487247,RES1,3001,,16,NE,1910,1910,3102,1,1,1458.845263,1458.845263,3505,NO,11.92,24.84,3,0.85,6112,111.800017,121.857941,131.536828,137.874617,I,Above,Hip,0,5701,,18.38184081,0,0,,,,1,1,,0.35,nav,1,1910,1,, 27977,NJBF000055266,110 PRINCETON RD,Somers Point,NJ,39.32560799,-74.60511009,RES1,3001,,16,NE,1965,1965,3101,2,1,1396.952471,1396.952471,3507,NO,40.43,50.4,1,2.27,6106,111.361729,121.512348,131.218165,137.467331,I,Above,Gable,0,5701,,45.41541784,0,0,,,,1,1,,0.03,nav,1,1965,2,, 27978,NJBF000051797,,Somers Point,NJ,39.31083886,-74.59503068,RES1,3001,,NaN,NE,1969,0,3102,2,1,943.8924013,943.8924013,3505,NO,39.67,51.24,3,7.15,6106,111.81202,121.865638,131.543266,137.882833,I,Above,Gable,0,5701,,45.45447944,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27979,NJBF000051881,1231 ATKINSON AVE,Somers Point,NJ,39.31142797,-74.61415045,RES1,3001,,16,NE,1920,1920,3102,2,1,1609.761253,1609.761253,3507,NO,39.46,53.89,1,1.89,6112,111.469033,121.539945,131.229223,137.48343,I,Above,Gable,0,5701,,46.67488794,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 27980,NJBF000051743,109 HOLLY HILLS DR,Somers Point,NJ,39.31042634,-74.60202463,RES1,3001,,16,NE,1954,1954,3102,2,1,2732.571782,2732.571782,3505,NO,41.62,53.39,3,7.1,6106,111.694312,121.753783,131.434162,137.745684,I,Above,Gable,0,5701,,47.5024156,0,0,,,,1,1,,0.03,nav,1,1954,2,, 27981,NJBF000055267,118 OSBORNE RD,Somers Point,NJ,39.32560838,-74.60380005,RES1,3001,,16,NE,1964,1964,3101,1,1,1367.07252,1367.07252,3507,NO,14.26,21.09,1,0.95,6106,111.384944,121.53447,131.239094,137.494368,I,Above,Gable,0,5701,,17.67325728,0,0,,,,1,1,,0.03,nav,1,1964,1,, 27982,NJBF000051753,43 GREATE BAY DR,Somers Point,NJ,39.31050866,-74.60577164,RES3A,3001,,29,NE,1977,1977,3301,2,1,2176.430164,2176.430164,3507,NO,28.41,43.29,1,0.02,6112,111.627447,121.690344,131.372882,137.667906,I,Above,Gable,0,5701,,35.85061383,0,0,,,,1,1,,0.35,nav,1,1977,2,, 27983,NJBF000051890,50 E NEW JERSEY AVE,Somers Point,NJ,39.31148982,-74.59458765,RES1,3001,,16,NE,1915,1915,3102,2,1,1617.58886,1617.58886,3505,NO,38.63,43.83,3,5.25,6110,111.80835,121.864909,131.543381,137.882849,I,Above,Gable,0,5701,,41.2295834,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 27984,NJBF000051937,124 GIBBS AVE,Somers Point,NJ,39.3118785,-74.5918625,RES1,3001,,16,NE,1910,1910,3102,1,1,742.8464016,742.8464016,3505,NO,9.64,17.46,3,-1.87,6106,111.851378,121.905919,131.583731,137.933143,I,Above,Gable,0,5701,,13.54891228,0,1.1,,,,1,1,,0.03,nav,1,1910,1,, 27985,NJBF000053604,2 WISTERIA WALK,Somers Point,NJ,39.320579,-74.61357,RES1,3001,,16,NE,1959,1959,3101,2,1,1097.487479,1097.487479,3507,NO,24.35,31.83,1,0.56,6110,111.30999,121.432981,131.139142,137.364981,I,Above,Gable,0,5701,,28.08676534,0,0,,,,1,1,,0.35,nav,1,1959,2,, 27986,NJBF000056296,1026 W GROVELAND AVE,Somers Point,NJ,39.32815532,-74.60592099,RES1,3001,,16,NE,1967,1967,3101,1,1,1833.819037,1833.819037,3507,NO,18.72,24.18,1,1.34,6106,111.300311,121.467506,131.177055,137.413957,I,Above,Gable,0,5701,,21.44931917,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 27987,NJBF000051625,910 BAY AVE,Somers Point,NJ,39.30920801,-74.59589683,COM1,3001,649,NaN,ME,1969,1969,3401,2,1,3150.157159,3150.157159,3507,NO,23.88,30.71,1,1.44,6102,111.825727,121.871644,131.54694,137.887761,I,Above,Flat,0,NaN,,27.29580536,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27988,NJBF000051549,,Somers Point,NJ,39.30823366,-74.59643447,RES1,3001,,NaN,NE,1969,0,3102,2,1,1123.392537,1123.392537,3507,NO,38.04,49.82,1,1.53,6102,111.833597,121.874954,131.548794,137.890291,I,Above,Gable,0,5701,,43.92918156,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27989,NJBF000052036,59 HIGBEE AVE,Somers Point,NJ,39.31258085,-74.59386946,RES1,3001,,16,NE,1920,1920,3101,1,1,1218.998154,1218.998154,3505,NO,21.06,33.58,3,6.02,6106,111.80183,121.863343,131.543181,137.882396,I,Above,Gable,0,5701,,27.319923,0,1.2,,,,1,1,,0.03,nav,1,1920,1,, 27990,NJBF000052083,708 BAY AVE,Somers Point,NJ,39.3128235,-74.5919735,RES1,3001,,16,NE,1925,1925,3102,1,1,1246.400428,1246.400428,3505,NO,17.71,23.29,3,4.98,6106,111.832351,121.892257,131.57155,137.917787,I,Above,Hip,0,5701,,20.50271178,0,0,,,,1,1,,0.03,nav,1,1925,1,, 27991,NJBF000054522,186 BALA DR,Somers Point,NJ,39.3236199,-74.61058921,RES1,3001,,16,NE,1959,1959,3101,1,1,1835.523047,1835.523047,3507,NO,18.15,28.72,1,0.44,6110,111.303657,121.444733,131.152982,137.38281,I,Above,Hip,0,5701,,23.43586843,0,0,,,,1,1,,0.35,nav,1,1959,1,, 27992,NJBF000051866,76 BAYVIEW DR,Somers Point,NJ,39.31135553,-74.60800199,RES3A,3001,,29,NE,1977,1977,3301,2,1,2054.298017,2054.298017,3507,NO,23.67,36.85,1,1.4,6106,111.573667,121.642517,131.327934,137.610368,I,Above,Gable,0,5701,,30.25704797,0,0,,,,1,1,,0.03,nav,1,1977,2,, 27993,NJBF000054984,140 COLWICK DR,Somers Point,NJ,39.32481169,-74.61368752,RES1,3001,,16,NE,1957,1957,3101,2,1,1633.979136,1633.979136,3507,NO,36.29,47,1,-0.01,6110,111.229343,121.377995,131.091003,137.301713,I,Above,Hip,0,5701,,41.64490189,0,0,,,,1,1,,0.35,nav,1,1957,2,, 27994,NJBF000055662,115 N AMBLER RD,Somers Point,NJ,39.32668359,-74.60601944,RES1,3001,,16,NE,1968,1968,3101,1,1,1845.129704,1845.129704,3507,NO,12.88,22.28,1,1.44,6106,111.325821,121.483816,131.191779,137.433108,I,Above,Gable,0,5701,,17.57948775,0,0,,,,1,1,,0.03,nav,1,1968,1,, 27995,NJBF000054509,2 YALE BLVD,Somers Point,NJ,39.32357653,-74.60999293,RES1,3001,,16,NE,1969,1969,3101,2,1,1333.733498,1333.733498,3507,NO,30.9,36.15,1,0.61,6106,111.314602,121.455262,131.162893,137.395721,I,Above,Hip,0,5701,,33.52699292,0,0,,,,1,1,,0.03,nav,1,1969,2,, 27996,NJBF000054995,108 OSBORNE RD,Somers Point,NJ,39.32483344,-74.60466135,RES1,3001,,16,NE,1964,1964,3101,1,1,1781.609397,1781.609397,3507,NO,10.68,24.41,1,-0.71,6110,111.383965,121.529443,131.233897,137.487706,I,Above,Gable,0,5701,,17.54588115,0,0,,,,1,1,,0.35,nav,1,1964,1,, 27997,NJBF000052378,,Somers Point,NJ,39.31426073,-74.61930539,COM1,3001,,NaN,ME,1969,0,3401,3,1,2451.853714,2451.853714,3507,NO,55.6,64.17,1,2.96,6112,111.333174,121.418686,131.117364,137.337381,I,Above,Flat,0,5701,,59.88329473,0,0,,,,1,1,,1,nav,1,1969,3,, 27998,NJBF000056023,7 DARTMOUTH RD,Somers Point,NJ,39.32753681,-74.6068711,RES1,3001,,16,NE,1969,1969,3101,1,1,2222.688612,2222.688612,3507,NO,17.53,29.53,1,1.35,6106,111.29507,121.458996,131.16879,137.403232,I,Above,Gable,0,5701,,23.52766696,0,0,,,,1,1,,0.03,nav,1,1969,1,, 27999,NJBF000051969,33 E NEW JERSEY AVE,Somers Point,NJ,39.31206244,-74.59481785,RES1,3001,,16,NE,1900,1920,3102,2,2,881.3824669,881.3824669,3505,NO,27.87,35.85,3,5.35,6112,111.793839,121.853872,131.533364,137.870205,I,Above,Hip,0,5701,,31.86221068,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 28000,NJBF000055634,10 BUCKNELL RD,Somers Point,NJ,39.32661583,-74.61151169,RES1,3001,,16,NE,1979,1979,3101,1,1,1831.332183,1831.332183,3507,NO,10.94,19.02,1,0.3,6106,111.232259,121.392129,131.105469,137.320631,I,Above,Hip,0,5701,,14.98018367,0,0,,,,1,1,,0.03,nav,1,1979,1,, 28001,NJBF000054845,136 BALA DR,Somers Point,NJ,39.32447538,-74.6153226,RES1,3001,,16,NE,1959,1959,3101,1,1,1116.851175,1116.851175,3507,NO,19.53,30.48,1,2.47,6106,111.20856,121.354863,131.069002,137.272822,I,Above,Gable,0,5701,,25.00735823,0,0,,,,1,1,,0.03,nav,1,1959,1,, 28002,NJBF000054166,292 SUNNY AVE,Somers Point,NJ,39.32259055,-74.58649067,RES1,3001,,16,NE,1960,1960,3102,1,1,1087.511423,1087.511423,3505,NO,23.3,37.73,3,6.4,6112,111.7611,121.865127,131.55366,137.893909,I,Above,Hip,0,5701,,30.51531806,0,0,,,,1,1,,0.35,nav,1,1960,1,, 28003,NJBF000054946,139 COLWICK DR,Somers Point,NJ,39.324717,-74.6131425,RES1,3001,,16,NE,1957,1957,3101,1,1,1315.123652,1315.123652,3507,NO,15.95,24.34,1,0.76,6110,111.240222,121.388316,131.100639,137.314352,I,Above,Hip,0,5701,,20.14203646,0,0,,,,1,1,,0.35,nav,1,1957,1,, 28004,NJBF000052102,,Somers Point,NJ,39.31291378,-74.58798935,RES3C,3001,,NaN,ME,1987,0,3301,1,1,5361.66104,5361.66104,3507,NO,13,22.36,1,0.96,6106,111.904984,121.958433,131.636057,137.997967,I,Above,Flat,0,NaN,,17.68270226,0,0,,,,1,1,,0.03,nav,1,1987,1,, 28005,NJBF000052961,,Somers Point,NJ,39.31798489,-74.58976027,RES3A,3001,,NaN,NE,1969,0,3303,3,1,2799.100365,2799.100365,3507,NO,54.25,62.36,1,1.37,6112,111.781001,121.865763,131.551003,137.891281,I,Above,Flat,0,5701,,58.30668601,0,0,,,,1,1,,0.35,nav,1,1969,3,, 28006,NJBF000052100,45 HIGBEE AVE,Somers Point,NJ,39.31290003,-74.59423939,RES1,3001,,16,NE,1920,1920,3101,2,1,3520.650101,3520.650101,3505,NO,44.92,52.55,3,8.13,6110,111.789302,121.853126,131.533639,137.870395,I,Above,Gable,0,5701,,48.73453733,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 28007,NJBF000056174,1022 W GROVELAND AVE,Somers Point,NJ,39.32788541,-74.60543171,RES1,3001,,16,NE,1968,1968,3101,1,1,2182.385151,2182.385151,3507,NO,14.35,27.63,1,-0.44,6106,111.313946,121.479064,131.187833,137.427951,I,Above,Gable,0,5701,,20.990633,0,0,,,,1,1,,0.03,nav,1,1968,1,, 28008,NJBF000051472,44 BROADWAY,Somers Point,NJ,39.30744026,-74.60325053,RES1,3001,,20,NE,2005,2001,3102,2,1,5652.726573,5652.726573,3507,NO,37.76,51.59,1,-0.09,6112,111.727031,121.771373,131.446771,137.762307,I,Above,Hip,0,5701,,44.67507944,0,0,,,,1,1,,0.35,nav,1,2005,2,, 28009,NJBF000054626,1 YALE BLVD,Somers Point,NJ,39.32389819,-74.60962463,RES1,3001,,16,NE,1968,1968,3101,1,1,1534.425126,1534.425126,3507,NO,15.85,30.74,1,2.44,6106,111.314932,121.45745,131.165199,137.398705,I,Above,Gable,0,5701,,23.29831209,0,0,,,,1,1,,0.03,nav,1,1968,1,, 28010,NJBF000056969,6 COOPER DR,Somers Point,NJ,39.329639,-74.603381,RES1,3001,,43,NE,1974,1974,3101,1,2,2293.80958,2293.80958,3507,NO,14.23,20.11,1,1.76,6112,111.318121,121.49251,131.201073,137.445066,I,Above,Gable,0,5701,,17.17083963,0,0,,,,1,1,,0.35,nav,1,1974,1,, 28011,NJBF000056872,9 HAMILTON DR,Somers Point,NJ,39.32943926,-74.6040004,RES1,3001,,43,NE,1970,1970,3101,1,2,2253.87939,2253.87939,3507,NO,18.62,26.12,1,1.3,6112,111.310704,121.484434,131.193415,137.435153,I,Above,Gable,0,5701,,22.37329141,0,0,,,,1,1,,0.35,nav,1,1970,1,, 28012,NJBF000054721,5 YALE BLVD,Somers Point,NJ,39.32415581,-74.61000315,RES1,3001,,16,NE,1970,1970,3101,2,1,1466.319574,1466.319574,3507,NO,23.24,35.22,1,-0.53,6110,111.303685,121.447905,131.156375,137.387201,I,Above,Hip,0,5701,,29.23052469,0,0,,,,1,1,,0.35,nav,1,1970,2,, 28013,NJBF000053176,20 LAUREL DR SOUTH,Somers Point,NJ,39.31898661,-74.61518096,RES1,3001,,16,NE,1960,1960,3101,2,1,2875.991341,2875.991341,3507,NO,25.22,35.67,1,0.85,6106,111.312853,121.426316,131.131076,137.354609,I,Above,Hip,0,5701,,30.44529798,0,0,,,,1,1,,0.03,nav,1,1960,2,, 28014,NJBF000055200,130 E OCEAN AVE,Somers Point,NJ,39.32542681,-74.58310352,RES1,3001,,16,NE,1965,1965,3102,1,1,1562.407415,1562.407415,3505,NO,16.89,23.49,3,-2.57,6112,111.776976,121.888815,131.577935,137.923717,I,Above,Gable,0,5701,,20.19172353,0,0,,,,1,1,,0.35,nav,1,1965,1,, 28015,NJBF000056971,32 CHAPMAN BLVD,Somers Point,NJ,39.32964234,-74.6021932,RES1,3001,,16,NE,1967,1967,3101,1,1,1621.352363,1621.352363,3507,NO,15.69,29.05,1,2.14,6112,111.339509,121.51263,131.220033,137.469586,I,Above,Flat,0,5701,,22.37128637,0,0,,,,1,1,,0.35,nav,1,1967,1,, 28016,NJBF000053314,48 GULPH MILL RD,Somers Point,NJ,39.31949302,-74.61877268,RES1,3001,,16,NE,1972,1972,3101,2,1,1553.486264,1553.486264,3507,NO,23.39,28.8,1,1.05,6106,111.245133,121.360384,131.069176,137.273392,I,Above,Gable,0,5701,,26.09581912,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28017,NJBF000054759,13 AMBLER RD,Somers Point,NJ,39.32424956,-74.60861504,RES1,3001,,16,NE,1966,1966,3101,1,1,1642.436995,1642.436995,3507,NO,19.23,28.75,1,1.46,6106,111.325742,121.470051,131.177351,137.414488,I,Above,Hip,0,5701,,23.99274789,0,0,,,,1,1,,0.03,nav,1,1966,1,, 28018,NJBF000052281,,Somers Point,NJ,39.31377887,-74.5885257,RES3C,3001,,NaN,ME,1969,0,3301,2,1,5417.081261,5417.081261,3507,NO,38.74,47.32,1,1.29,6106,111.87945,121.938616,131.617691,137.975035,I,Above,Flat,0,NaN,,43.0342487,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28019,NJBF000053865,10 GULPH MILL RD,Somers Point,NJ,39.32155238,-74.61533626,RES1,3001,,16,NE,1967,1967,3101,2,1,1782.781895,1782.781895,3507,NO,38.17,48.41,1,1.77,6110,111.262743,121.391319,131.100716,137.31463,I,Above,Gable,0,5701,,43.29333865,0,0,,,,1,1,,0.35,nav,1,1967,2,, 28020,NJBF000051518,1512 ATKINSON AVE,Somers Point,NJ,39.30793795,-74.61712613,RES1,3001,,17,NE,1994,1994,3102,2,1,2242.325058,2242.325058,3507,NO,26.64,34.22,1,1.53,6112,111.484056,121.536238,131.219634,137.471908,I,Above,Gable,0,5701,,30.42775772,0,0,,,,1,1,,0.35,nav,1,1994,2,, 28021,NJBF000055359,117 PRINCETON RD,Somers Point,NJ,39.32587729,-74.60423987,RES1,3001,,16,NE,1964,1964,3101,1,1,1404.93082,1404.93082,3507,NO,20.41,31.11,1,1.38,6106,111.372164,121.523741,131.229084,137.481429,I,Above,Gable,0,5701,,25.75901981,0,0,,,,1,1,,0.03,nav,1,1964,1,, 28022,NJBF000058284,63 CHAPMAN BLVD,Somers Point,NJ,39.33203415,-74.60581214,RES1,3001,,16,NE,1985,1985,3101,2,1,2125.087775,2125.087775,3507,NO,36.18,43.74,1,1.7,6106,111.230344,121.422414,131.135697,137.360142,I,Above,Gable,0,5701,,39.95932818,0,0,,,,1,1,,0.03,nav,1,1985,2,, 28023,NJBF000058219,61 CHAPMAN BLVD,Somers Point,NJ,39.33191697,-74.60561175,RES1,3001,,16,NE,1985,1985,3101,1,1,1828.975405,1828.975405,3507,NO,17.55,30.04,1,-0.57,6106,111.236073,121.427212,131.140177,137.365977,I,Above,Gable,0,5701,,23.79295934,0,0,,,,1,1,,0.03,nav,1,1985,1,, 28024,NJBF000053601,29 LAUREL DR SOUTH,Somers Point,NJ,39.32057189,-74.61511588,RES1,3001,,16,NE,1963,1963,3101,1,1,2981.208442,2981.208442,3507,NO,15.02,25.74,1,1.39,6106,111.284552,121.407339,131.114855,137.333232,I,Above,Gable,0,5701,,20.37903066,0,0,,,,1,1,,0.03,nav,1,1963,1,, 28025,NJBF000058368,9 WHITMAN DR,Somers Point,NJ,39.3321829,-74.60401986,RES1,3001,,16,NE,1981,1981,3101,1,1,1744.236693,1744.236693,3507,NO,20.82,26.38,1,2.27,6112,111.259668,121.451045,131.16254,137.395073,I,Above,Gable,0,5701,,23.60251582,0,1.1,,,,1,1,,0.35,nav,1,1981,1,, 28026,NJBF000051877,54 E NEW JERSEY AVE,Somers Point,NJ,39.31140795,-74.59442631,RES1,3001,,17,NE,2005,2005,3102,3,1,1209.377751,1209.377751,3505,NO,53.1,63,3,8.01,6106,111.812784,121.868661,131.546925,137.887297,I,Above,Gable,0,5701,,58.04715187,0,0,,,,1,1,,0.03,nav,1,2005,3,, 28027,NJBF000054810,12 YALE BLVD,Somers Point,NJ,39.32437586,-74.61079255,RES1,3001,,16,NE,1971,1971,3101,2,1,1461.268184,1461.268184,3507,NO,28.34,37.33,1,-0.97,6106,111.286147,121.43192,131.141454,137.367739,I,Above,Gable,0,5701,,32.83501882,0,0,,,,1,1,,0.03,nav,1,1971,2,, 28028,NJBF000057374,,Somers Point,NJ,39.330453,-74.606067,RES3D,3001,,NaN,E,1970,0,3303,3,1,8458.501263,8458.501263,3507,NO,58.46,71.61,1,2.66,6106,111.255141,121.437146,131.149235,137.37776,I,Above,Flat,0,5701,,65.03372283,0,0,,,,1,1,,0.03,nav,1,1970,3,, 28029,NJBF000057358,,Somers Point,NJ,39.330434,-74.6052165,RES3D,3001,,NaN,E,1969,0,3303,4,1,7620.26904,7620.26904,3507,NO,69.71,76.62,1,0.9,6110,111.270598,121.451795,131.162977,137.395638,I,Above,Gable,0,5701,,73.16315722,0,0,,,,1,1,,0.35,nav,1,1969,4,, 28030,NJBF000051634,8 MACARTHUR BLVD,Somers Point,NJ,39.30925545,-74.5999764,COM1,3001,,NaN,ME,1941,1941,3401,1,1,8236.374592,8236.374592,3507,NO,13.84,24.03,1,-0.36,6112,111.751784,121.802823,131.480072,137.803868,I,Above,Flat,0,NaN,,18.93464506,0,0,,,,1,1,,1,nav,1,1941,1,, 28031,NJBF000051840,66 BAYVIEW DR,Somers Point,NJ,39.31111465,-74.60675954,RES3A,3001,,29,NE,1977,1977,3301,2,1,1895.721737,1895.721737,3507,NO,28.3,42.16,1,-0.74,6112,111.599361,121.666208,131.350447,137.639181,I,Above,Gable,0,5701,,35.22935375,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28032,NJBF000051806,58 GREATE BAY CT,Somers Point,NJ,39.310905,-74.6063052,RES3A,3001,,29,NE,1977,1977,3301,2,1,1935.963979,1935.963979,3507,NO,29.14,35.27,1,0.19,6112,111.611027,121.676442,131.360026,137.651443,I,Above,Gable,0,5701,,32.20316331,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28033,NJBF000051823,56 GREATE BAY CT,Somers Point,NJ,39.31100815,-74.60604949,RES3A,3001,,29,NE,1977,1977,3301,2,1,1894.335015,1894.335015,3507,NO,41.12,53.16,1,2.82,6112,111.613563,121.679384,131.363018,137.655235,I,Above,Gable,0,5701,,47.14169579,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28034,NJBF000051821,54 GREATE BAY CT,Somers Point,NJ,39.31098539,-74.60579985,RES3A,3001,,29,NE,1977,1977,3301,2,1,1850.998251,1850.998251,3507,NO,33.99,39.54,1,-0.75,6112,111.618284,121.683816,131.367266,137.660652,I,Above,Gable,0,5701,,36.765329,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28035,NJBF000051800,50 GREATE BAY CT,Somers Point,NJ,39.31084794,-74.60533774,RES3A,3001,,29,NE,1977,1977,3301,2,1,1834.716667,1834.716667,3507,NO,35.78,48.11,1,0.74,6112,111.628775,121.693242,131.376178,137.672027,I,Above,Gable,0,5701,,41.9465865,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28036,NJBF000051775,47 GREATE BAY CT,Somers Point,NJ,39.31068571,-74.60543472,RES3A,3001,,29,NE,1977,1977,3301,2,1,1694.486151,1694.486151,3507,NO,22.37,28.57,1,0.42,6112,111.630049,121.693691,131.376377,137.672316,I,Above,Gable,0,5701,,25.46946274,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28037,NJBF000051791,36 FAIRVIEW DR,Somers Point,NJ,39.31076662,-74.60507877,RES3A,3001,,29,NE,1977,1977,3301,2,1,1962.444785,1962.444785,3507,NO,28.07,40.6,1,2.79,6112,111.634741,121.69858,131.381222,137.678462,I,Above,Gable,0,5701,,34.33776577,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28038,NJBF000051777,34 FAIRVIEW DR,Somers Point,NJ,39.31069558,-74.60483207,RES3A,3001,,29,NE,1977,1977,3301,2,1,1812.732712,1812.732712,3507,NO,36.75,47.61,1,-0.55,6112,111.640321,121.703593,131.385966,137.68451,I,Above,Gable,0,5701,,42.1783114,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28039,NJBF000051760,30 FAIRVIEW DR,Somers Point,NJ,39.31056997,-74.60431152,RES3A,3001,,29,NE,1977,1977,3301,2,1,1818.184654,1818.184654,3507,NO,25.67,40.35,1,0.59,6112,111.651657,121.713848,131.395704,137.696911,I,Above,Gable,0,5701,,33.00855317,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28040,NJBF000051705,22 GREATE BAY DR,Somers Point,NJ,39.3100909,-74.60421277,RES3A,3001,,29,NE,1977,1977,3301,2,1,1793.571516,1793.571516,3507,NO,24.06,35.27,1,1.62,6112,111.662101,121.721588,131.402501,137.705643,I,Above,Gable,0,5701,,29.66463632,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28041,NJBF000051716,20 GREATE BAY DR,Somers Point,NJ,39.31018334,-74.60395596,RES3A,3001,,29,NE,1977,1977,3301,2,1,1843.140448,1843.140448,3507,NO,32.32,42.12,1,0.66,6112,111.664904,121.724695,131.405642,137.709609,I,Above,Gable,0,5701,,37.21933835,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28042,NJBF000051687,83 GREATE BAY DR,Somers Point,NJ,39.30993557,-74.60371102,RES3A,3001,,29,NE,1977,1977,3301,2,1,1888.332174,1888.332174,3507,NO,24.7,31.14,1,-0.56,6112,111.673671,121.731914,131.412274,137.718073,I,Above,Gable,0,5701,,27.92263087,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28043,NJBF000051708,1 GREATE BAY DR,Somers Point,NJ,39.31011714,-74.60289682,RES3A,3001,,29,NE,1977,1977,3301,2,1,1818.308152,1818.308152,3507,NO,34.16,46.78,1,1.2,6112,111.684614,121.743168,131.423438,137.732179,I,Above,Gable,0,5701,,40.46780543,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28044,NJBF000051728,3 GREATE BAY DR,Somers Point,NJ,39.31028775,-74.60272765,RES3A,3001,,29,NE,1977,1977,3301,2,1,1700.362823,1700.362823,3507,NO,34.36,48.57,1,1.96,6112,111.684468,121.743813,131.424308,137.733243,I,Above,Gable,0,5701,,41.46502466,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28045,NJBF000051748,5 GREATE BAY DR,Somers Point,NJ,39.31046154,-74.60262675,RES3A,3001,,29,NE,1977,1977,3301,2,1,1770.323873,1770.323873,3507,NO,37.88,52.02,1,-0.54,6112,111.683076,121.743288,131.424046,137.732874,I,Above,Gable,0,5701,,44.94725721,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28046,NJBF000059053,65 DEFEO LN,Somers Point,NJ,39.33345042,-74.60456849,RES1,3001,,16,NE,1984,1984,3101,1,1,1947.503991,1947.503991,3507,NO,17.08,31.26,1,-0.55,6112,111.22638,121.426579,131.139675,137.365352,I,Above,Gable,0,5701,,24.17191011,0,0,,,,1,1,,0.35,nav,1,1984,1,, 28047,NJBF000057250,,Somers Point,NJ,39.33022922,-74.60643602,RES3D,3001,,NaN,E,1969,0,3303,3,1,8091.593293,8091.593293,3507,NO,58.25,66.66,1,1.41,6110,111.252775,121.433607,131.145861,137.373367,I,Above,Gable,0,5701,,62.45266761,0,0,,,,1,1,,0.35,nav,1,1969,3,, 28048,NJBF000057230,,Somers Point,NJ,39.3301875,-74.605681,RES3D,3001,,NaN,E,1969,0,3303,4,1,7042.442396,7042.442396,3507,NO,53.94,59.48,1,1.23,6110,111.266892,121.446889,131.158315,137.389576,I,Above,Flat,0,5701,,56.71130435,0,0,,,,1,1,,0.35,nav,1,1969,4,, 28049,NJBF000051673,22 ANNIE AVE,Somers Point,NJ,39.30972923,-74.59693886,RES1,3001,,16,NE,1910,1910,3102,2,1,1600.014087,1600.014087,3505,NO,31.13,43.54,3,8.23,6112,111.79752,121.847614,131.52427,137.859276,I,Above,Gable,0,5701,,37.33501475,0,0,,,,1,1,,0.35,nav,1,1910,2,, 28050,NJBF000058238,45 DEFEO LN,Somers Point,NJ,39.3319425,-74.6013615,COM3,3001,,NaN,ME,1969,0,3401,3,1,3527.329151,3527.329151,3507,NO,43.33,55.31,1,-0.88,6112,111.312408,121.499131,131.207695,137.453592,I,Above,Gable,0,NaN,,49.31815229,0,0,,,,1,1,,0.35,nav,1,1969,3,, 28051,NJBF000051811,,Somers Point,NJ,39.31092651,-74.60662543,RES3A,3001,,NaN,NE,1977,0,3301,2,1,1694.009716,1694.009716,3507,NO,23.28,34.52,1,-0.52,6112,111.605115,121.670846,131.354652,137.644586,I,Above,Gable,0,5701,,28.89769204,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28052,NJBF000051815,52 GREATE BAY CT,Somers Point,NJ,39.31095237,-74.60554593,RES3A,3001,,29,NE,1977,1977,3301,2,1,2077.537139,2077.537139,3507,NO,26.85,38.24,1,1.56,6112,111.623278,121.68846,131.371705,137.666313,I,Above,Gable,0,5701,,32.54761644,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28053,NJBF000051769,32 FAIRVIEW DR,Somers Point,NJ,39.31065084,-74.60459442,RES3A,3001,,29,NE,1977,1977,3301,2,1,1752.967394,1752.967394,3507,NO,21.27,33.91,1,-0.22,6112,111.645276,121.708125,131.390284,137.690008,I,Above,Gable,0,5701,,27.58595254,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28054,NJBF000051754,28 FAIRVIEW DR,Somers Point,NJ,39.31051708,-74.60406177,RES3A,3001,,29,NE,1977,1977,3301,2,1,1840.806659,1840.806659,3507,NO,35.05,45.83,1,2.81,6112,111.656977,121.718683,131.400306,137.702765,I,Above,Gable,0,5701,,40.44003031,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28055,NJBF000051730,25 FAIRVIEW DR,Somers Point,NJ,39.31031703,-74.60424526,RES3A,3001,,29,NE,1977,1977,3301,2,1,1825.670016,1825.670016,3507,NO,35.38,47.48,1,0.78,6112,111.65743,121.718181,131.399531,137.701824,I,Above,Hip,0,5701,,41.43061619,0,0,,,,1,1,,0.35,nav,1,1977,2,, 28056,NJBF000052552,610 SUNNY AVE,Somers Point,NJ,39.31553698,-74.59207732,RES1,3001,,16,NE,1970,1970,3102,1,1,1048.416058,1048.416058,3507,NO,18.25,28.7,1,1.75,6112,111.781646,121.856763,131.540024,137.877937,I,Above,Gable,0,5701,,23.47593502,0,0,,,,1,1,,0.35,nav,1,1970,1,, 28057,NJBF000051431,,Somers Point,NJ,39.30648852,-74.61883941,RES1,3001,,NaN,NE,1969,0,3102,2,1,1255.245606,1255.245606,3507,NO,27.85,34.76,1,0.52,6110,111.482727,121.527165,131.208078,137.457384,I,Above,Flat,0,5701,,31.30194069,0,0,,,,1,1,,1,nav,1,1969,2,, 28058,NJBF000051433,,Somers Point,NJ,39.30649986,-74.61925484,RES1,3001,,NaN,NE,1969,0,3102,2,1,2146.051805,2146.051805,3507,NO,29.77,38.35,1,-0.51,6110,111.475839,121.520251,131.201395,137.448727,I,Above,Flat,0,5701,,34.06399829,0,0,,,,1,1,,1,nav,1,1969,2,, 28059,NJBF000051444,,Somers Point,NJ,39.30664498,-74.61862514,RES1,3001,,NaN,NE,2002,0,3102,2,1,2961.230795,2961.230795,3507,NO,30.39,41.86,1,1.02,6112,111.483338,121.528614,131.209789,137.459551,I,Above,Gable,0,5701,,36.12444459,0,0,,,,1,1,,1,nav,1,2002,2,, 28060,NJBF000051521,4 LANDING LN,Somers Point,NJ,39.30795099,-74.601835,RES1,3001,,17,NE,1986,1986,3102,2,1,2015.170754,2015.170754,3507,NO,34.16,43.74,1,2.38,6112,111.74257,121.788402,131.464123,137.784077,I,Above,Hip,0,5701,,38.948054,0,0,,,,1,1,,0.35,nav,1,1986,2,, 28061,NJBF000051528,6 LANDING LN,Somers Point,NJ,39.30801829,-74.60153763,RES1,3001,,16,NE,1988,1988,3102,2,1,2313.732364,2313.732364,3507,NO,30.63,39.61,1,1.94,6112,111.746581,121.792493,131.468204,137.789204,I,Above,Flat,0,5701,,35.12098282,0,1.2,,,,1,1,,0.35,nav,1,1988,2,, 28062,NJBF000051550,2 LANDING LN,Somers Point,NJ,39.30823671,-74.60192448,RES1,3001,,16,NE,1985,1985,3102,1,1,1684.646182,1684.646182,3507,NO,18.04,27.87,1,2.82,6112,111.735822,121.783279,131.45958,137.77828,I,Above,Gable,0,5701,,22.95277778,0,1.1,,,,1,1,,0.35,nav,1,1985,1,, 28063,NJBF000051558,10 BROADWAY,Somers Point,NJ,39.30832347,-74.60167906,RES1,3001,,16,NE,2002,2002,3102,2,1,1982.222958,1982.222958,3507,NO,32.14,43.26,1,2.81,6112,111.738572,121.786264,131.462611,137.782082,I,Above,Gable,0,5701,,37.6966867,0,0,,,,1,1,,0.35,nav,1,2002,2,, 28064,NJBF000051632,1408 ATKINSON AVE,Somers Point,NJ,39.30925229,-74.6162375,RES1,3001,,15,NE,1925,1925,3102,2,1,838.4442982,838.4442982,3507,NO,41.3,48.78,1,2.79,6112,111.474563,121.533742,131.219595,137.471503,I,Above,Gable,0,5701,,45.04254002,0,0,,,,1,1,,0.35,nav,1,1925,2,, 28065,NJBF000051645,1400 ATKINSON AVE,Somers Point,NJ,39.30939473,-74.61601363,RES1,3001,,15,NE,1950,1950,3102,1,1,1458.802429,1458.802429,3507,NO,18.11,29.65,1,0.97,6112,111.475593,121.535546,131.221588,137.474043,I,Above,Gable,0,5701,,23.88162886,0,1.2,,,,1,1,,0.35,nav,1,1950,1,, 28066,NJBF000051655,15 GEORGE ST,Somers Point,NJ,39.30952638,-74.59741276,RES1,3001,,16,NE,1931,1931,3102,1,1,1209.692766,1209.692766,3505,NO,17.39,32.12,3,5.05,6112,111.79266,121.84224,131.518765,137.852419,I,Above,Gable,0,5701,,24.7517539,0,0,,,,1,1,,0.35,nav,1,1931,1,, 28067,NJBF000051661,1301 ROBERTS AVE,Somers Point,NJ,39.30959156,-74.61532016,RES1,3001,,NaN,NE,1969,0,3102,2,1,2478.625936,2478.625936,3507,NO,40.31,53.57,1,2.97,6112,111.483359,121.544383,131.230459,137.48546,I,Above,Gable,0,5701,,46.9416082,0,0,,,,1,1,,0.35,nav,1,1969,2,, 28068,NJBF000051665,1306 ATKINSON AVE,Somers Point,NJ,39.30961593,-74.61581795,RES1,3001,,16,NE,2006,2006,3102,2,1,2666.728987,2666.728987,3507,NO,40.14,53.82,1,2.19,6112,111.474761,121.535901,131.222314,137.474927,I,Above,Gable,0,5701,,46.98121951,0,0,,,,1,1,,0.35,nav,1,2006,2,, 28069,NJBF000051675,1304 ATKINSON AVE,Somers Point,NJ,39.30978697,-74.6156248,RES1,3001,,16,NE,2006,2006,3102,2,1,2146.038161,2146.038161,3507,NO,34.76,41.61,1,0.12,6112,111.474796,121.536856,131.223531,137.476457,I,Above,Gable,0,5701,,38.18210419,0,0,,,,1,1,,0.35,nav,1,2006,2,, 28070,NJBF000051679,18 ANNIE AVE,Somers Point,NJ,39.30982479,-74.59705022,RES1,3001,,16,NE,1920,1920,3102,2,2,1075.921929,1075.921929,3505,NO,41.35,50.33,3,7.74,6112,111.793787,121.844543,131.521415,137.855678,I,Above,Gable,0,5701,,45.83864589,0,0,,,,1,1,,0.35,nav,1,1920,2,, 28071,NJBF000051681,14 ANNIE AVE,Somers Point,NJ,39.30989499,-74.59717492,RES1,3001,,16,NE,1900,1900,3102,2,1,1375.437643,1375.437643,3505,NO,29.69,35.78,3,6.93,6112,111.790272,121.841566,131.518617,137.852155,I,Above,Gable,0,5701,,32.73382835,0,0,,,,1,1,,0.35,nav,1,1900,2,, 28072,NJBF000051690,1302 ATKINSON AVE,Somers Point,NJ,39.30994898,-74.61544735,RES1,3001,,16,NE,2008,2008,3102,2,1,2204.197737,2204.197737,3507,NO,25.75,39.04,1,1.01,6112,111.474752,121.537684,131.224607,137.477808,I,Above,Gable,0,5701,,32.39514542,0,1.2,,,,1,1,,0.35,nav,1,2008,2,, 28073,NJBF000051695,23 ANNIE AVE,Somers Point,NJ,39.31001644,-74.59671853,RES1,3001,,16,NE,1920,1920,3102,1,1,1162.182409,1162.182409,3505,NO,26.31,40.45,3,8.69,6112,111.796301,121.847679,131.524723,137.859784,I,Above,Gable,0,5701,,33.38014516,0,0,,,,1,1,,0.35,nav,1,1920,1,, 28074,NJBF000051707,1301 ROBERTS AVE,Somers Point,NJ,39.31009796,-74.61489842,RES1,3001,,NaN,NE,1969,0,3102,2,1,1691.120271,1691.120271,3507,NO,29.45,36.95,1,2.44,6112,111.481043,121.544778,131.2317,137.486939,I,Above,Hip,0,5701,,33.20160002,0,0,,,,1,1,,0.35,nav,1,1969,2,, 28075,NJBF000051709,26 SOMERS AVE,Somers Point,NJ,39.31013121,-74.59647081,RES1,3001,,16,NE,1920,1920,3102,1,1,930.5283917,930.5283917,3505,NO,16.56,31.06,3,5.27,6112,111.798699,121.850386,131.52751,137.863251,I,Above,Gable,0,5701,,23.81035685,0,0,,,,1,1,,0.35,nav,1,1920,1,, 28076,NJBF000051720,1301 ROBERTS AVE,Somers Point,NJ,39.31021591,-74.6151063,RES1,3001,,NaN,NE,1969,0,3102,2,1,1621.373443,1621.373443,3507,NO,40.45,47.45,1,2.74,6112,111.475467,121.539837,131.227134,137.48101,I,Above,Gable,0,5701,,43.94863668,0,0,,,,1,1,,0.35,nav,1,1969,2,, 28077,NJBF000051717,24 SOMERS AVE,Somers Point,NJ,39.31018612,-74.59656547,RES1,3001,,16,NE,1945,1945,3102,1,1,1235.862574,1235.862574,3505,NO,14.56,20.51,3,3.6,6112,111.796009,121.848117,131.525377,137.860569,I,Above,Hip,0,5701,,17.53527681,0,0,,,,1,1,,0.35,nav,1,1945,1,, 28078,NJBF000051724,22 SOMERS AVE,Somers Point,NJ,39.31026745,-74.59671978,RES1,3001,,16,NE,1951,1951,3102,1,1,1167.049185,1167.049185,3505,NO,13.28,19,3,-2.72,6112,111.791749,121.844498,131.521968,137.85628,I,Above,Gable,0,5701,,16.14009312,0,0,,,,1,1,,0.35,nav,1,1951,1,, 28079,NJBF000051761,19 SOMERS AVE,Somers Point,NJ,39.31057676,-74.59640722,RES1,3001,,16,NE,1900,1900,3102,2,3,3788.036199,3788.036199,3505,NO,19.85,25.78,3,-2.26,6112,111.791801,121.845841,131.523684,137.858367,I,Above,Flat,0,5701,,22.8130242,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 28080,NJBF000051796,36 DELAWARE AVE,Somers Point,NJ,39.3108358,-74.59569047,RES1,3001,,16,NE,1920,1920,3102,2,1,1673.985752,1673.985752,3505,NO,25.16,39.79,3,2.4,6112,111.800105,121.854612,131.532544,137.869415,I,Above,Hip,0,5701,,32.47495556,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 28081,NJBF000051793,2 CHESTNUT ST,Somers Point,NJ,39.31078039,-74.61643952,COM1,3001,,NaN,ME,1973,1973,3401,1,1,10846.99617,10846.99617,3507,NO,16.2,31.17,1,0.65,6112,111.44332,121.510646,131.199958,137.445695,I,Above,Flat,0,NaN,,23.68541182,0,0,,,,1,1,,1,nav,1,1973,1,, 28082,NJBF000051812,32 DELAWARE AVE,Somers Point,NJ,39.31092789,-74.59581992,RES1,3001,,16,NE,1928,1928,3102,2,1,1796.113025,1796.113025,3505,NO,37.54,45.48,3,7.14,6112,111.796087,121.851273,131.529419,137.865482,I,Above,Gable,0,5701,,41.50650519,0,0.1,,,,1,1,,0.35,nav,1,1928,2,, 28083,NJBF000051824,103 HOLLY HILLS DR,Somers Point,NJ,39.31100998,-74.60227703,RES1,3001,,16,NE,1956,1956,3102,2,1,1139.896328,1139.896328,3505,NO,38.81,44.49,3,3.51,6112,111.679261,121.742176,131.423736,137.732367,I,Above,Gable,0,5701,,41.64849493,0,0,,,,1,1,,0.35,nav,1,1956,2,, 28084,NJBF000051837,104 BRADDOCK AVE,Somers Point,NJ,39.31107231,-74.60184543,RES1,3001,,16,NE,1981,1981,3102,2,1,1313.416433,1313.416433,3505,NO,35.3,45.63,3,1.92,6112,111.685741,121.748601,131.43004,137.740334,I,Above,Gable,0,5701,,40.46480873,0,1.1,,,,1,1,,0.35,nav,1,1981,2,, 28085,NJBF000051832,900 MAYS LANDING RD,Somers Point,NJ,39.31106001,-74.61012524,RES4,3001,281,NaN,ME,1988,1988,3401,1,1,5733.426765,5733.426765,3507,NO,12.72,22.13,1,-0.06,6106,111.543008,121.611122,131.297213,137.571074,I,Above,Hip,0,NaN,,17.4214462,0,0,,,,1,1,,0.03,nav,1,1988,1,, 28086,NJBF000051847,102 BRADDOCK AVE,Somers Point,NJ,39.31118013,-74.60207739,RES1,3001,,16,NE,1958,1958,3102,1,1,1329.880178,1329.880178,3505,NO,15.68,20.86,3,2.83,6112,111.679689,121.74336,131.425116,137.734079,I,Above,Hip,0,5701,,18.26945567,0,0,,,,1,1,,0.35,nav,1,1958,1,, 28087,NJBF000051875,30 ANCHORAGE LN,Somers Point,NJ,39.31139621,-74.59546122,RES1,3001,,16,NE,1900,1900,3102,2,1,1028.430354,1028.430354,3505,NO,31.8,44.02,3,-2.45,6112,111.794154,121.85142,131.530158,137.866317,I,Above,Hip,0,5701,,37.91470331,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 28088,NJBF000051887,103 BRADDOCK AVE,Somers Point,NJ,39.31146249,-74.60181126,RES1,3001,,16,NE,1955,1955,3102,1,1,1805.806989,1805.806989,3505,NO,18.74,24.15,3,7.55,6112,111.679249,121.744232,131.426342,137.735574,I,Above,Gable,0,5701,,21.44348131,0,0,,,,1,1,,0.35,nav,1,1955,1,, 28089,NJBF000051898,1233 ATKINSON AVE REAR,Somers Point,NJ,39.31156737,-74.61448987,RES1,3001,,16,NE,1960,1960,3102,1,1,1105.016117,1105.016117,3507,NO,19.9,32.29,1,0.72,6112,111.460876,121.532557,131.222335,137.474493,I,Above,Gable,0,5701,,26.09657189,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 28090,NJBF000051921,13-15 SEASHORE LN,Somers Point,NJ,39.31177911,-74.61432443,RES1,3001,,43,NE,1966,1966,3102,1,2,2463.005257,2463.005257,3507,NO,16.53,21.58,1,0.17,6112,111.459729,121.532564,131.222678,137.47489,I,Above,Hip,0,5701,,19.05908964,0,0,,,,1,1,,0.35,nav,1,1966,1,, 28091,NJBF000051914,,Somers Point,NJ,39.31172138,-74.61647862,COM4,3001,,NaN,ME,1969,0,3401,1,1,7012.952145,7012.952145,3507,NO,18.54,23.9,1,1.31,6112,111.425452,121.497856,131.189213,137.43154,I,Above,Flat,0,NaN,,21.21952966,0,0,,,,1,1,,0.35,nav,1,1969,1,, 28092,NJBF000051956,9 SEASHORE LN,Somers Point,NJ,39.31198391,-74.61405922,RES1,3001,,27,NE,1966,1966,3102,2,1,1535.378608,1535.378608,3507,NO,39.78,50.64,1,2.15,6112,111.460348,121.534296,131.224665,137.477416,I,Above,Hip,0,5701,,45.21349793,0,0,,,,1,1,,0.35,nav,1,1966,2,, 28093,NJBF000051978,5 SEASHORE LN,Somers Point,NJ,39.31212498,-74.61391776,RES1,3001,,27,NE,1966,1966,3102,2,1,1653.935744,1653.935744,3507,NO,24.9,35.85,1,0.96,6112,111.460095,121.534809,131.225377,137.478308,I,Above,Gable,0,5701,,30.37332878,0,0,,,,1,1,,0.35,nav,1,1966,2,, 28094,NJBF000051981,33 E NEW JERSEY AVE,Somers Point,NJ,39.31214796,-74.59495937,RES1,3001,,16,NE,1920,1920,3102,2,2,1364.433579,1364.433579,3505,NO,25.26,35.76,3,-1.07,6112,111.789717,121.850423,131.530121,137.866128,I,Above,Gable,0,5701,,30.51087788,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 28095,NJBF000051987,1-3 SEASHORE LN,Somers Point,NJ,39.31222272,-74.61374727,RES1,3001,,43,NE,1964,1964,3102,2,2,1151.529095,1151.529095,3507,NO,26.26,33.1,1,0.4,6112,111.461128,121.536371,131.22703,137.480424,I,Above,Hip,0,5701,,29.67889873,0,0,,,,1,1,,0.35,nav,1,1964,2,, 28096,NJBF000051989,31 E NEW JERSEY AVE,Somers Point,NJ,39.31222796,-74.59508963,RES1,3001,,16,NE,1920,1920,3102,1,2,949.7092546,949.7092546,3505,NO,13.43,20.03,3,-2.03,6112,111.785886,121.847218,131.527107,137.862337,I,Above,Hip,0,5701,,16.72838015,0,1.1,,,,1,1,,0.35,nav,1,1920,1,, 28097,NJBF000052131,33 HIGBEE AVE,Somers Point,NJ,39.31305005,-74.59464316,RES1,3001,,16,NE,1920,1920,3101,1,1,1321.164738,1321.164738,3505,NO,22.01,29.94,3,8.01,6112,111.779207,121.844449,131.525398,137.860044,I,Above,Gable,0,5701,,25.97681861,0,1.1,,,,1,1,,0.35,nav,1,1920,1,, 28098,NJBF000052155,74 MAYS LANDING RD,Somers Point,NJ,39.31315346,-74.61720386,RES1,3001,,16,NE,1972,1972,3101,1,1,1234.891165,1234.891165,3505,NO,11.32,17.05,3,-2.03,6112,111.387396,121.46748,131.162347,137.39631,I,Above,Gable,0,5701,,14.18339151,0,0,,,,1,1,,0.35,nav,1,1972,1,, 28099,NJBF000052146,29 HIGBEE AVE,Somers Point,NJ,39.31312575,-74.59474165,RES1,3001,,16,NE,1920,1920,3101,2,1,1841.675965,1841.675965,3505,NO,42.06,48.22,3,7.14,6112,111.776026,121.841833,131.522949,137.856961,I,Above,Hip,0,5701,,45.13835773,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 28100,NJBF000052177,21 HIGBEE AVE,Somers Point,NJ,39.31325657,-74.59498158,RES1,3001,,16,NE,1910,1910,3101,2,1,1169.949823,1169.949823,3505,NO,31.29,43.67,3,-2.28,6112,111.769278,121.836156,131.517596,137.850227,I,Above,Hip,0,5701,,37.48131998,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 28101,NJBF000052283,49 MAYS LANDING RD,Somers Point,NJ,39.31378821,-74.61810766,COM1,3001,,16,ME,1950,1950,3401,1,1,1289.187038,1289.187038,3507,NO,16.56,24.04,1,-0.65,6112,111.361106,121.444441,131.141269,137.368709,I,Above,Gable,0,5701,,20.30278433,0,0,,,,1,1,,0.7,nav,1,1950,1,, 28102,NJBF000052320,19 GIBBS AVE,Somers Point,NJ,39.31395227,-74.59464113,RES1,3001,,16,NE,1920,1920,3101,2,2,1759.274301,1759.274301,3505,NO,30.76,35.9,3,7.22,6112,111.762962,121.833216,131.515537,137.847522,I,Above,Gable,0,5701,,33.32992333,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 28103,NJBF000052332,15 GIBBS AVE,Somers Point,NJ,39.31400397,-74.59476748,RES1,3001,,16,NE,1945,1945,3101,1,1,1265.908847,1265.908847,3505,NO,13.21,20.42,3,1.79,6112,111.759717,121.830445,131.512911,137.844218,I,Above,Gable,0,5701,,16.81555459,0,1.1,,,,1,1,,0.35,nav,1,1945,1,, 28104,NJBF000052361,8 WOODLAWN AVE,Somers Point,NJ,39.32275704,-74.63776588,RES1,3001,,16,NE,2007,2013,3102,2,1,2059.417771,2059.417771,3505,NO,27.23,42.15,3,3.21,6106,110.901006,121.007977,130.741833,136.834466,I,Above,Hip,0,5701,,34.68883012,0,0,,,,1,1,,0.03,nav,1,2007,2,, 28105,NJBF000052393,10 E NEW YORK AVE,Somers Point,NJ,39.31437763,-74.59469922,COM7,3001,562,NaN,ME,1969,0,3401,1,1,6032.941309,6032.941309,3507,NO,17.84,25.37,1,2.82,6112,111.754208,121.826925,131.509915,137.840394,I,Above,Flat,0,NaN,,21.60782816,0,0,,,,1,1,,0.35,nav,1,1969,1,, 28106,NJBF000052447,,Somers Point,NJ,39.3147401,-74.58925534,RES1,3001,,NaN,NE,1969,0,3102,2,1,852.904477,852.904477,3507,NO,32.33,42.97,1,2.27,6106,111.848587,121.914371,131.595111,137.946807,I,Above,Gable,0,5701,,37.65066081,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28107,NJBF000052654,7 KAPPELLA AVE,Somers Point,NJ,39.31629661,-74.5871063,RES1,3001,,NaN,NE,1969,0,3102,2,1,523.4273327,523.4273327,3507,NO,37.25,44.08,1,2.39,6106,111.861308,121.931571,131.61333,137.969198,I,Above,Gable,0,5701,,40.66616172,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28108,NJBF000052921,112 PLEASANT AVE,Somers Point,NJ,39.31779706,-74.59034207,RES1,3001,,16,NE,1958,1958,3102,1,1,1240.706381,1240.706381,3505,NO,21.15,28.07,3,2.28,6112,111.773431,121.858207,131.54353,137.881967,I,Above,Gable,0,5701,,24.60701851,0,0,,,,1,1,,0.35,nav,1,1958,1,, 28109,NJBF000053069,17 VIOLET LN,Somers Point,NJ,39.31852347,-74.6140954,RES1,3001,,16,NE,1957,1957,3101,2,1,1408.396156,1408.396156,3507,NO,34.98,40.98,1,2.92,6112,111.339352,121.450227,131.153247,137.383598,I,Above,Hip,0,5701,,37.98176685,0,0,,,,1,1,,0.35,nav,1,1957,2,, 28110,NJBF000053070,16 VIOLET LN,Somers Point,NJ,39.31852535,-74.61353308,RES1,3001,,16,NE,1958,1958,3101,1,1,2037.478917,2037.478917,3507,NO,14.41,24.13,1,1.24,6112,111.348634,121.459539,131.162101,137.395134,I,Above,Gable,0,5701,,19.26577211,0,0,,,,1,1,,0.35,nav,1,1958,1,, 28111,NJBF000053156,28 E MARYLAND AVE,Somers Point,NJ,39.3189239,-74.59009737,COM1,3001,739,NaN,ME,1950,1950,3401,1,1,3023.255303,3023.255303,3507,NO,19.77,27.73,1,2.71,6112,111.757832,121.848506,131.535086,137.871232,I,Above,Hip,0,NaN,,23.75244641,0,0,,,,1,1,,0.35,nav,1,1950,1,, 28112,NJBF000053280,41 DOGWOOD DR,Somers Point,NJ,39.31936456,-74.6126924,RES1,3001,,16,NE,1958,1958,3101,1,1,2969.952165,2969.952165,3507,NO,16.87,21.97,1,1.76,6112,111.347107,121.46291,131.166247,137.400437,I,Above,Hip,0,5701,,19.4199532,0,0,,,,1,1,,0.35,nav,1,1958,1,, 28113,NJBF000053339,43 DOGWOOD DR,Somers Point,NJ,39.31956868,-74.61276353,RES1,3001,,16,NE,1971,1971,3101,1,1,2099.51087,2099.51087,3507,NO,15.28,29.44,1,2.1,6112,111.342129,121.459137,131.162885,137.396038,I,Above,Gable,0,5701,,22.36298329,0,0,,,,1,1,,0.35,nav,1,1971,1,, 28114,NJBF000053350,428 SUNNY AVE,Somers Point,NJ,39.31961367,-74.5888798,RES1,3001,,16,NE,1996,1996,3102,2,1,1562.499134,1562.499134,3505,NO,29.13,39.62,3,4.79,6112,111.768475,121.860716,131.547425,137.886563,I,Above,Gable,0,5701,,34.37677559,0,0,,,,1,1,,0.35,nav,1,1996,2,, 28115,NJBF000053403,45 DOGWOOD DR,Somers Point,NJ,39.31981703,-74.61278365,RES1,3001,,16,NE,1957,1957,3101,1,1,2052.019992,2052.019992,3507,NO,11.07,23.34,1,-0.92,6112,111.337204,121.455676,131.159865,137.392079,I,Above,Gable,0,5701,,17.20763232,0,0,,,,1,1,,0.35,nav,1,1957,1,, 28116,NJBF000053406,115 E GROVELAND AVE,Somers Point,NJ,39.31983009,-74.58811897,RES1,3001,,15,NE,1910,1910,3102,1,1,1240.712966,1240.712966,3505,NO,17.28,24.37,3,6.48,6112,111.779069,121.871011,131.557541,137.899169,I,Above,Flat,0,5701,,20.82300431,0,0,,,,1,1,,0.35,nav,1,1910,1,, 28117,NJBF000053467,47 DOGWOOD DR,Somers Point,NJ,39.32004421,-74.61278838,RES1,3001,,16,NE,1957,1957,3101,1,1,1804.842902,1804.842902,3507,NO,16.96,28.07,1,1.53,6112,111.332934,121.452748,131.157326,137.388748,I,Above,Gable,0,5701,,22.51356356,0,0,,,,1,1,,0.35,nav,1,1957,1,, 28118,NJBF000053515,126 E CEDAR AVE,Somers Point,NJ,39.32023191,-74.58721639,RES1,3001,,16,NE,1928,1928,3102,2,1,1941.501633,1941.501633,3505,NO,36.49,46.57,3,1.34,6112,111.789121,121.881465,131.567944,137.91209,I,Above,Hip,0,5701,,41.53329238,0,0,,,,1,1,,0.35,nav,1,1928,2,, 28119,NJBF000053554,49 DOGWOOD DR,Somers Point,NJ,39.32036973,-74.61281436,RES1,3001,,16,NE,1960,1960,3101,1,1,2003.531404,2003.531404,3507,NO,12.98,18.15,1,0.1,6112,111.326461,121.448209,131.153359,137.383546,I,Above,Gable,0,5701,,15.56194069,0,0,,,,1,1,,0.35,nav,1,1960,1,, 28120,NJBF000053543,114 E CEDAR AVE,Somers Point,NJ,39.32033191,-74.58755181,RES1,3001,,16,NE,1950,1950,3102,1,1,1400.650253,1400.650253,3505,NO,16.83,23.81,3,-0.48,6112,111.780923,121.874525,131.561302,137.903788,I,Above,Gable,0,5701,,20.32176053,0,0,,,,1,1,,0.35,nav,1,1950,1,, 28121,NJBF000053635,100 W LAUREL DR,Somers Point,NJ,39.320702,-74.61324229,RES1,3001,,16,NE,1962,1962,3101,1,1,2507.583669,2507.583669,3507,NO,18.69,30.06,1,0.94,6112,111.313168,121.436897,131.142977,137.369975,I,Above,Gable,0,5701,,24.37805048,0,0,,,,1,1,,0.35,nav,1,1962,1,, 28122,NJBF000053715,118 E JOHNSON AVE,Somers Point,NJ,39.32100493,-74.58695984,RES1,3001,,15,NE,1972,1972,3102,1,1,2210.018464,2210.018464,3505,NO,24.78,33.3,3,7.34,6112,111.780265,121.876401,131.563576,137.906524,I,Above,Gable,0,5701,,29.03823167,0,0,,,,1,1,,0.35,nav,1,1972,1,, 28123,NJBF000053822,42 LAUREL DR SOUTH,Somers Point,NJ,39.3214001,-74.61461171,RES1,3001,,16,NE,1966,1966,3101,1,1,633.9288733,633.9288733,3507,NO,19.3,31.58,1,2.75,6106,111.277493,121.405287,131.113764,137.331735,I,Above,Gable,0,5701,,25.4415222,0,0,,,,1,1,,0.03,nav,1,1966,1,, 28124,NJBF000053918,122 E PIERSON AVE,Somers Point,NJ,39.32176347,-74.58622931,RES1,3001,,16,NE,2007,2007,3102,2,1,1558.647294,1558.647294,3505,NO,38.84,44.71,3,0.58,6112,111.780838,121.879642,131.567196,137.910923,I,Above,Hip,0,5701,,41.7771264,0,0,,,,1,1,,0.35,nav,1,2007,2,, 28125,NJBF000053938,112 E PIERSON AVE,Somers Point,NJ,39.32184932,-74.58666244,RES1,3001,,45,NE,1925,1925,3102,2,2,976.0806704,976.0806704,3505,NO,35.16,46.66,3,8.54,6112,111.770983,121.871215,131.559102,137.900813,I,Above,Flat,0,5701,,40.91044622,0,0,,,,1,1,,0.35,nav,1,1925,2,, 28126,NJBF000053963,,Somers Point,NJ,39.3219407,-74.61483892,RES1,3001,,NaN,NE,1966,0,3101,1,1,1031.41305,1031.41305,3507,NO,13.64,20.49,1,1.64,6112,111.263699,121.394698,131.10429,137.319286,I,Above,Gable,0,5701,,17.06257825,0,0,,,,1,1,,0.35,nav,1,1966,1,, 28127,NJBF000053953,114 E PIERSON AVE,Somers Point,NJ,39.32189573,-74.5864986,RES1,3001,,16,NE,1950,1950,3102,2,1,1159.29458,1159.29458,3505,NO,42.21,53.02,3,4.08,6112,111.773282,121.873423,131.561265,137.903505,I,Above,Gable,0,5701,,47.61631296,0,0,,,,1,1,,0.35,nav,1,1950,2,, 28128,NJBF000054228,237 SUNNY AVE,Somers Point,NJ,39.32280375,-74.58693551,RES1,3001,,16,NE,1980,1980,3102,2,1,1135.048775,1135.048775,3505,NO,29.83,37.52,3,5.59,6112,111.748751,121.854955,131.543958,137.881758,I,Above,Gable,0,5701,,33.67543706,0,0,,,,1,1,,0.35,nav,1,1980,2,, 28129,NJBF000054311,119 COLWICK DR,Somers Point,NJ,39.32304067,-74.61321982,RES1,3001,,16,NE,1957,1957,3101,1,1,1018.74009,1018.74009,3507,NO,15.64,25.33,1,0.14,6110,111.27011,121.407917,131.117767,137.336861,I,Above,Flat,0,5701,,20.4869391,0,0,,,,1,1,,0.35,nav,1,1957,1,, 28130,NJBF000054333,129 DEVON RD,Somers Point,NJ,39.32309927,-74.61119231,RES1,3001,,16,NE,1958,1958,3101,2,1,958.9275514,958.9275514,3507,NO,40.04,45.89,1,1.49,6112,111.303106,121.441117,131.149156,137.377853,I,Above,Flat,0,5701,,42.96417256,0,0,,,,1,1,,0.35,nav,1,1958,2,, 28131,NJBF000054346,175 BALA DR,Somers Point,NJ,39.32311901,-74.61099243,RES1,3001,,16,NE,1959,1959,3101,1,1,820.0235084,820.0235084,3507,NO,19.78,29.52,1,1.96,6112,111.306121,121.444217,131.1521,137.381691,I,Above,Gable,0,5701,,24.64945138,0,1.2,,,,1,1,,0.35,nav,1,1959,1,, 28132,NJBF000054359,129 DEVON RD,Somers Point,NJ,39.32317763,-74.61133642,RES1,3001,,16,NE,1958,1958,3101,2,1,1280.447809,1280.447809,3507,NO,34.35,47.2,1,2.78,6112,111.299204,121.437721,131.146012,137.373749,I,Above,Gable,0,5701,,40.77640666,0,0,,,,1,1,,0.35,nav,1,1958,2,, 28133,NJBF000054472,37 E DAWES AVE,Somers Point,NJ,39.32348065,-74.58630712,RES1,3001,,16,NE,1951,1951,3102,1,1,872.3698546,872.3698546,3505,NO,14.55,26.85,3,-1.25,6112,111.748866,121.857491,131.546774,137.885175,I,Above,Gable,0,5701,,20.70312281,0,1.1,,,,1,1,,0.35,nav,1,1951,1,, 28134,NJBF000054511,104 E MEYRAN AVE,Somers Point,NJ,39.32358941,-74.58552389,RES1,3001,,16,NE,1950,1950,3102,1,1,953.7929936,953.7929936,3505,NO,12.83,18,3,0.97,6112,111.762107,121.869556,131.55848,137.899772,I,Above,Hip,0,5701,,15.41492938,0,0,,,,1,1,,0.35,nav,1,1950,1,, 28135,NJBF000054527,102 E MEYRAN AVE,Somers Point,NJ,39.32363596,-74.58566142,RES1,3001,,16,NE,1953,1953,3102,1,1,944.1058187,944.1058187,3505,NO,20.56,33.78,3,8.39,6112,111.75862,121.866648,131.555696,137.896291,I,Above,Gable,0,5701,,27.17268689,0,1.1,,,,1,1,,0.35,nav,1,1953,1,, 28136,NJBF000054544,24 OSBORNE RD,Somers Point,NJ,39.32368543,-74.60580216,RES1,3001,,16,NE,1961,1961,3101,1,1,3087.307441,3087.307441,3507,NO,16.36,26.26,1,-0.55,6112,111.385074,121.524357,131.228344,137.480608,I,Above,Hip,0,5701,,21.31262621,0,0,,,,1,1,,0.35,nav,1,1961,1,, 28137,NJBF000054614,1009 MASSACHUSETTS AVE,Somers Point,NJ,39.32387215,-74.60460561,RES1,3001,,16,NE,1963,1963,3101,1,1,1969.621588,1969.621588,3507,NO,19.76,27.08,1,0.42,6112,111.402659,121.542199,131.245384,137.502596,I,Above,Gable,0,5701,,23.42369352,0,0,,,,1,1,,0.35,nav,1,1963,1,, 28138,NJBF000054652,14 JEFFERSON AVE,Somers Point,NJ,39.32396346,-74.602496,RES1,3001,,16,NE,1966,1966,3101,1,1,617.4561456,617.4561456,3507,NO,11.67,21.06,1,-0.67,6112,111.438472,121.576681,131.278171,137.544805,I,Above,Flat,0,5701,,16.36614626,0,0,,,,1,1,,0.35,nav,1,1966,1,, 28139,NJBF000054638,105 E MEYRAN AVE,Somers Point,NJ,39.32393469,-74.58523194,RES1,3001,,16,NE,1932,1932,3102,1,1,1493.693937,1493.693937,3505,NO,16.84,27,3,-1.69,6112,111.761657,121.870366,131.559438,137.900913,I,Above,Gable,0,5701,,21.91995059,0,1.2,,,,1,1,,0.35,nav,1,1932,1,, 28140,NJBF000054747,3 YALE BLVD,Somers Point,NJ,39.32421331,-74.60972422,RES1,3001,,16,NE,1969,1969,3101,2,1,537.1982099,537.1982099,3507,NO,25.48,39.27,1,0.74,6106,111.307393,121.451881,131.160169,137.392139,I,Above,Gable,0,5701,,32.37893455,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28141,NJBF000054722,112 E WILMONT AVE,Somers Point,NJ,39.32415667,-74.58464161,RES1,3001,,16,NE,1956,1956,3102,2,1,1315.340507,1315.340507,3505,NO,45.8,59.23,3,8.85,6112,111.769215,121.877772,131.566701,137.909935,I,Above,Gable,0,5701,,52.5152851,0,0,,,,1,1,,0.35,nav,1,1956,2,, 28142,NJBF000054746,110 E WILMONT AVE,Somers Point,NJ,39.32421283,-74.58475979,RES1,3001,,16,NE,1928,1928,3102,2,1,1715.667655,1715.667655,3505,NO,39.26,51.04,3,1.25,6112,111.765929,121.87508,131.564126,137.906717,I,Above,Gable,0,5701,,45.14786567,0,1.1,,,,1,1,,0.35,nav,1,1928,2,, 28143,NJBF000054783,104 E WILMONT AVE,Somers Point,NJ,39.32430151,-74.58490585,RES1,3001,,16,NE,1958,1958,3102,1,1,1224.230514,1224.230514,3505,NO,19.98,25.65,3,7.3,6112,111.761517,121.871512,131.560721,137.902457,I,Above,Flat,0,5701,,22.8141529,0,0,,,,1,1,,0.35,nav,1,1958,1,, 28144,NJBF000054821,1212 MASSACHUSETTS AVE,Somers Point,NJ,39.32440662,-74.60657228,RES1,3001,,16,NE,1962,1962,3101,2,1,663.0104451,663.0104451,3507,NO,36.5,43.31,1,-0.07,6112,111.358264,121.502478,131.208111,137.454385,I,Above,Gable,0,5701,,39.90552695,0,1.2,,,,1,1,,0.35,nav,1,1962,2,, 28145,NJBF000054868,109 E WILMONT AVE,Somers Point,NJ,39.32451376,-74.58446889,RES1,3001,,17,NE,1935,1935,3102,2,1,3277.198701,3277.198701,3505,NO,30.22,36.41,3,-2.98,6112,111.766294,121.87643,131.565571,137.908469,I,Above,Gable,0,5701,,33.31679387,0,0,,,,1,1,,0.35,nav,1,1935,2,, 28146,NJBF000054986,145 BALA DR,Somers Point,NJ,39.3248177,-74.61407638,RES1,3001,,16,NE,1957,1957,3101,2,1,2019.043714,2019.043714,3507,NO,25.1,39.69,1,1.81,6106,111.222779,121.371428,131.084835,137.293617,I,Above,Gable,0,5701,,32.39487851,0,0,,,,1,1,,0.03,nav,1,1957,2,, 28147,NJBF000055009,6 HARNED AVE,Somers Point,NJ,39.32489099,-74.58414197,RES1,3001,,16,NE,1965,1965,3102,2,1,2210.010317,2210.010317,3505,NO,37.04,42.65,3,3.32,6112,111.766043,121.877487,131.566761,137.909891,I,Above,Gable,0,5701,,39.84849318,0,0,,,,1,1,,0.35,nav,1,1965,2,, 28148,NJBF000055090,7 HARNED AVE,Somers Point,NJ,39.32511193,-74.58363647,RES1,3001,,16,NE,1966,1966,3102,2,1,1581.891303,1581.891303,3505,NO,25.11,33.82,3,-2.78,6112,111.772062,121.883489,131.572656,137.917199,I,Above,Gable,0,5701,,29.46519589,0,0,,,,1,1,,0.35,nav,1,1966,2,, 28149,NJBF000055141,5 HARNED AVE,Somers Point,NJ,39.32525521,-74.58386037,RES1,3001,,16,NE,1963,1963,3102,1,1,2282.703924,2282.703924,3505,NO,15.98,25.99,3,-0.85,6112,111.765161,121.877938,131.567352,137.910568,I,Above,Gable,0,5701,,20.98926133,0,0,,,,1,1,,0.35,nav,1,1963,1,, 28150,NJBF000055241,124 E OCEAN AVE,Somers Point,NJ,39.32554672,-74.58338943,RES1,3001,,16,NE,1965,1965,3102,1,1,1873.239015,1873.239015,3505,NO,13.31,24.61,3,-0.97,6112,111.769272,121.882496,131.571875,137.916154,I,Above,Hip,0,5701,,18.95803441,0,0,,,,1,1,,0.35,nav,1,1965,1,, 28151,NJBF000055362,17 COLGATE RD,Somers Point,NJ,39.32587951,-74.61024596,RES1,3001,,16,NE,1970,1970,3101,2,1,765.6448988,765.6448988,3507,NO,29.12,36.83,1,1,6110,111.267496,121.422489,131.133568,137.357389,I,Above,Gable,0,5701,,32.97427289,0,0,,,,1,1,,0.35,nav,1,1970,2,, 28152,NJBF000055674,1008 W GROVELAND AVE,Somers Point,NJ,39.32670996,-74.60304327,RES1,3001,,16,NE,1964,1964,3101,1,1,2281.742863,2281.742863,3507,NO,17.29,29.66,1,2.82,6112,111.378158,121.533799,131.239002,137.49419,I,Above,Gable,0,5701,,23.47724697,0,0,,,,1,1,,0.35,nav,1,1964,1,, 28153,NJBF000056672,4 CRESTVIEW DR,Somers Point,NJ,39.32901931,-74.59919249,RES1,3001,,16,NE,1969,1969,3101,1,1,2392.249664,2392.249664,3507,NO,20.95,28.78,1,1.67,6112,111.405749,121.571121,131.275137,137.540584,I,Above,Gable,0,5701,,24.86479376,0,0,,,,1,1,,0.35,nav,1,1969,1,, 28154,NJBF000056739,12 COOPER DR,Somers Point,NJ,39.32914855,-74.60373161,RES1,3001,,43,NE,1970,1970,3101,1,2,1875.601133,1875.601133,3507,NO,18.06,27.26,1,0.32,6112,111.320857,121.492487,131.200916,137.444875,I,Above,Hip,0,5701,,22.66097595,0,0,,,,1,1,,0.35,nav,1,1970,1,, 28155,NJBF000056744,6 CRESTVIEW DR,Somers Point,NJ,39.32915699,-74.59898399,RES1,3001,,16,NE,1966,1966,3101,1,1,2815.830628,2815.830628,3507,NO,14.85,29.47,1,2.08,6112,111.407062,121.572994,131.276946,137.542899,I,Above,Gable,0,5701,,22.15899326,0,0,,,,1,1,,0.35,nav,1,1966,1,, 28156,NJBF000056796,10 COOPER DR,Somers Point,NJ,39.32927918,-74.60362148,RES1,3001,,43,NE,1970,1970,3101,1,2,2367.037216,2367.037216,3507,NO,13.14,19.33,1,1.88,6112,111.320449,121.492795,131.201243,137.445295,I,Above,Flat,0,5701,,16.23152482,0,0,,,,1,1,,0.35,nav,1,1970,1,, 28157,NJBF000056808,8 CRESTVIEW DR,Somers Point,NJ,39.32930114,-74.59878077,RES1,3001,,16,NE,1965,1965,3101,2,1,1567.361707,1567.361707,3507,NO,32.41,46.54,1,0.42,6112,111.408181,121.574712,131.278608,137.545025,I,Above,Gable,0,5701,,39.47332462,0,0,,,,1,1,,0.35,nav,1,1965,2,, 28158,NJBF000056835,25 CHAPMAN BLVD,Somers Point,NJ,39.32935821,-74.6007289,RES1,3001,,16,NE,1967,1967,3101,2,1,1027.45852,1027.45852,3507,NO,21.81,29.79,1,0.16,6112,111.371357,121.540915,131.246658,137.503941,I,Above,Flat,0,5701,,25.7968143,0,0,,,,1,1,,0.35,nav,1,1967,2,, 28159,NJBF000056975,14 CRESTVIEW DR,Somers Point,NJ,39.32965352,-74.59832342,RES1,3001,,16,NE,1965,1965,3101,1,1,515.6713558,515.6713558,3507,NO,15.31,24.66,1,2.35,6112,111.41022,121.578257,131.282045,137.549417,I,Above,Gable,0,5701,,19.98356459,0,0,,,,1,1,,0.35,nav,1,1965,1,, 28160,NJBF000057014,14 CRESTVIEW DR,Somers Point,NJ,39.32973166,-74.59822591,RES1,3001,,16,NE,1965,1965,3101,1,1,1464.626873,1464.626873,3507,NO,17.35,22.75,1,0.26,6112,111.410598,121.578971,131.282737,137.5503,I,Above,Gable,0,5701,,20.05154739,0,0,,,,1,1,,0.35,nav,1,1965,1,, 28161,NJBF000057075,16 CRESTVIEW DR,Somers Point,NJ,39.32986485,-74.59807337,RES1,3001,,16,NE,1965,1965,3101,2,1,1765.25036,1765.25036,3507,NO,32.16,37.28,1,-0.83,6112,111.411016,121.579978,131.283718,137.551551,I,Above,Gable,0,5701,,34.71624196,0,0,,,,1,1,,0.35,nav,1,1965,2,, 28162,NJBF000057152,18 CRESTVIEW DR,Somers Point,NJ,39.33003183,-74.5978605,RES1,3001,,16,NE,1965,1965,3101,1,1,1822.303896,1822.303896,3507,NO,17.05,26.2,1,2.11,6112,111.411935,121.581599,131.285286,137.553552,I,Above,Gable,0,5701,,21.62444073,0,0,,,,1,1,,0.35,nav,1,1965,1,, 28163,NJBF000057219,20 CRESTVIEW DR,Somers Point,NJ,39.33016463,-74.59766033,RES1,3001,,16,NE,1965,1965,3101,2,1,1474.300657,1474.300657,3507,NO,33.71,40.85,1,0.5,6112,111.413239,121.58341,131.287024,137.555774,I,Above,Gable,0,5701,,37.2806162,0,0,,,,1,1,,0.35,nav,1,1965,2,, 28164,NJBF000057470,199 NEW RD,Somers Point,NJ,39.34250417,-74.600954,COM3,3003,51,NaN,ME,1969,1972,3401,1,1,3419.706048,3419.706048,3507,NO,11.92,22.21,1,-0.4,6112,111.127063,121.382275,131.095304,137.307981,I,Above,Hip,0,NaN,,17.06549151,0,0,,,,1,1,,0.35,nav,1,1969,1,, 28165,NJBF000058336,45 DEFEO LN,Somers Point,NJ,39.33211378,-74.60160428,COM3,3001,,NaN,ME,1969,0,3401,3,1,2483.361099,2483.361099,3507,NO,40.66,52.08,1,1.9,6112,111.304803,121.49294,131.201884,137.446075,I,Above,Flat,0,NaN,,46.36997094,0,0,,,,1,1,,1,nav,1,1969,3,, 28166,NJBF000054291,235 SUNNY AVE,Somers Point,NJ,39.32297217,-74.58684282,RES1,3001,,16,NE,2006,2006,3102,2,1,1519.748983,1519.748983,3505,NO,38.26,48.83,3,0.95,6112,111.747557,121.854506,131.543618,137.881308,I,Above,Gable,0,5701,,43.54652396,0,0,,,,1,1,,0.35,nav,1,2006,2,, 28167,NJBF000054354,201 SUNNY AVE,Somers Point,NJ,39.32315461,-74.58655903,RES1,3001,,16,NE,1952,1952,3102,2,1,983.8478119,983.8478119,3505,NO,37.74,46.9,3,2.04,6112,111.749782,121.857135,131.546257,137.884578,I,Above,Gable,0,5701,,42.32292527,0,1.1,,,,1,1,,0.35,nav,1,1952,2,, 28168,NJBF000053976,106 E PIERSON AVE,Somers Point,NJ,39.32198632,-74.58679332,RES1,3001,,15,NE,1920,1920,3102,1,1,1093.953693,1093.953693,3505,NO,13.43,24.23,3,2.5,6112,111.766032,121.867318,131.555419,137.896196,I,Above,Hip,0,5701,,18.82926708,0,0,,,,1,1,,0.35,nav,1,1920,1,, 28169,NJBF000053946,118 E PIERSON AVE,Somers Point,NJ,39.32188499,-74.5863657,RES1,3001,,16,NE,1926,1926,3102,1,1,1156.931212,1156.931212,3505,NO,13.74,21.79,3,-1.96,6112,111.776036,121.875824,131.56358,137.906395,I,Above,Gable,0,5701,,17.76298905,0,1.1,,,,1,1,,0.35,nav,1,1926,1,, 28170,NJBF000053770,111 E JOHNSON AVE,Somers Point,NJ,39.32120709,-74.58641405,RES1,3001,,16,NE,1955,1955,3102,1,1,1134.0763,1134.0763,3505,NO,15.36,26.54,3,-2.71,6112,111.787151,121.883246,131.570329,137.914915,I,Above,Gable,0,5701,,20.9485185,0,0,,,,1,1,,0.35,nav,1,1955,1,, 28171,NJBF000053794,109 E JOHNSON AVE,Somers Point,NJ,39.32129774,-74.58652761,RES1,3001,,16,NE,1990,1990,3102,1,1,1855.263439,1855.263439,3505,NO,14.81,26.51,3,4,6112,111.783345,121.880196,131.567438,137.911297,I,Above,Gable,0,5701,,20.66413814,0,0,,,,1,1,,0.35,nav,1,1990,1,, 28172,NJBF000053503,128 E CEDAR AVE,Somers Point,NJ,39.3201804,-74.587059,RES1,3001,,15,NE,1925,1925,3102,2,1,607.757449,607.757449,3505,NO,28.43,40.35,3,4.84,6112,111.793047,121.884772,131.571108,137.916043,I,Above,Hip,0,5701,,34.39086124,0,0,,,,1,1,,0.35,nav,1,1925,2,, 28173,NJBF000051706,17 ANNIE AVE,Somers Point,NJ,39.31009413,-74.59690407,RES1,3001,,16,NE,1950,1950,3102,1,1,1400.638439,1400.638439,3505,NO,19.84,29.81,3,7.22,6112,111.791557,121.843596,131.520859,137.854925,I,Above,Flat,0,5701,,24.82880651,0,0,,,,1,1,,0.35,nav,1,1950,1,, 28174,NJBF000051920,38 E NEW JERSEY AVE,Somers Point,NJ,39.3117655,-74.59500869,RES1,3001,,16,NE,1890,1890,3102,2,1,1091.428343,1091.428343,3505,NO,39.79,47.68,3,4.6,6112,111.795717,121.854384,131.533497,137.870428,I,Above,Gable,0,5701,,43.73497646,0,0,,,,1,1,,0.35,nav,1,1890,2,, 28175,NJBF000051652,17 GEORGE ST,Somers Point,NJ,39.30947418,-74.59729966,RES1,3001,,16,NE,1920,1920,3102,2,1,1309.51708,1309.51708,3505,NO,29.02,36.66,3,8,6112,111.79563,121.844788,131.521172,137.855447,I,Above,Gable,0,5701,,32.83876682,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 28176,NJBF000051926,142 DECATUR AVE,Somers Point,NJ,39.31181582,-74.59083103,RES1,3001,,19,NE,2015,2015,3102,1,1,2151.349395,2151.349395,3505,NO,17.92,23.89,3,6.48,6102,111.871586,121.924092,131.601348,137.95508,I,Above,Flat,0,5701,,20.90768281,0,1.2,,,,1,1,,0.03,nav,1,2015,1,, 28177,NJBF000051963,131 GIBBS AVE,Somers Point,NJ,39.31209155,-74.5914735,RES1,3001,,16,NE,1925,1925,3102,2,1,682.1008025,682.1008025,3505,NO,34.63,47.39,3,-2.78,6106,111.854725,121.909804,131.587765,137.938128,I,Above,Flat,0,5701,,41.01208612,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28178,NJBF000052011,112 DECATUR AVE,Somers Point,NJ,39.31239724,-74.59141698,RES1,3001,,16,NE,1996,1996,3102,2,1,2173.342049,2173.342049,3505,NO,37.99,44.63,3,-0.98,6106,111.850305,121.90696,131.585354,137.93507,I,Above,Gable,0,5701,,41.30748477,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 28179,NJBF000065217,,Ventnor City,NJ,39.34643503,-74.48794398,COM8,3001,,NaN,ME,1969,0,3401,3,1,709.6255934,709.6255934,3507,NO,48.7,54.45,1,1.43,6106,113.518964,123.316283,133.032185,139.553186,I,Above,Flat,0,NaN,,51.57303843,0,0,,,,1,1,,0.03,nav,1,1969,3,, 28180,NJBF000065103,5 N VASSAR SQUARE,Ventnor City,NJ,39.34615301,-74.46730583,RES3A,3001,,17,NE,2012,2012,3301,3,1,1205.029475,1205.029475,3505,NO,35.88,41.37,3,-2.06,6106,113.978056,123.688904,133.429499,139.91475,I,Above,Flat,0,5701,,38.62573914,0,0,,,,1,1,,0.03,nav,1,2012,3,, 28181,NJBF000067153,719 N SURREY AVE,Ventnor City,NJ,39.35234403,-74.48218448,RES3A,3001,,27,NE,1980,1980,3301,2,1,1348.683109,1348.683109,3505,NO,41.57,48.38,3,3.07,6106,113.570575,123.354537,133.075949,139.561602,I,Above,Gable,0,5701,,44.97132388,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28182,NJBF000064863,5508 CALVERT AVE,Ventnor City,NJ,39.34550281,-74.47837351,RES1,3001,,17,NE,1940,1940,3102,1,1,1028.864171,1028.864171,3505,NO,17.8,30,3,2.19,6106,113.742802,123.497592,133.224298,139.740528,I,Above,Gable,0,5701,,23.90161814,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28183,NJBF000063791,621 KINGSLEY DRIVE,Ventnor City,NJ,39.34270697,-74.49511381,RES1,3001,,17,NE,1977,1977,3102,1,1,1935.40442,1935.40442,3505,NO,15.3,28.98,3,2.77,6106,113.409401,123.229669,132.938673,139.476604,I,Above,Gable,0,5701,,22.14389285,0,0,,,,1,1,,0.03,nav,1,1977,1,, 28184,NJBF000065109,413 N BURGHLEY AVE,Ventnor City,NJ,39.34616269,-74.48341185,RES1,3001,,17,NE,1966,1966,3102,1,1,1901.100723,1901.100723,3505,NO,22.67,36.16,3,8.63,6106,113.622854,123.400232,133.1211,139.640627,I,Above,Flat,0,5701,,29.41941755,0,0,,,,1,1,,0.03,nav,1,1966,1,, 28185,NJBF000065137,308 N SUFFOLK AVE,Ventnor City,NJ,39.34624,-74.478625,RES1,3001,,17,NE,1930,1930,3102,2,1,1074.425096,1074.425096,3505,NO,24.71,29.96,3,0.75,6106,113.72764,123.485016,133.211397,139.724142,I,Above,Hip,0,5701,,27.33651725,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28186,NJBF000063112,105 N CAMBRIDGE AVE,Ventnor City,NJ,39.34091843,-74.48133276,RES1,3001,,17,NE,1925,1925,3102,2,1,1028.521104,1028.521104,3505,NO,41.14,50.76,3,7.04,6106,113.738179,123.495165,133.218379,139.763913,I,Above,Hip,0,5701,,45.94802539,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28187,NJBF000060017,111 N MARTINDALE AVE,Ventnor City,NJ,39.33524321,-74.49351596,RES1,3001,,17,NE,1940,1940,3102,2,1,1386.368975,1386.368975,3505,NO,28.23,34.03,3,-1.37,6106,113.546612,123.341244,133.051311,139.623665,I,Above,Hip,0,5701,,31.12712515,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28188,NJBF000066827,611 N SURREY AVE,Ventnor City,NJ,39.35091712,-74.4810053,RES1,3001,,17,NE,1975,1975,3102,2,1,1297.997825,1297.997825,3505,NO,35.88,43.99,3,-0.77,6106,113.614775,123.391225,133.114291,139.605922,I,Above,Gable,0,5701,,39.93273969,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28189,NJBF000063027,344-346 HAMPSHIRE DR,Ventnor City,NJ,39.34073421,-74.49226431,RES1,3001,,45,NE,1972,1972,3102,2,2,2112.154445,2112.154445,3505,NO,36.69,45.68,3,2.54,6106,113.499085,123.302295,133.014044,139.563269,I,Above,Gable,0,5701,,41.18669079,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28190,NJBF000061707,103 S CORNWALL AVE,Ventnor City,NJ,39.33811818,-74.47771319,RES1,3001,,17,NE,1914,1914,3102,3,1,2425.214028,2425.214028,3505,NO,48.8,58.01,3,0.6,6106,113.855636,123.590767,133.317808,139.872402,I,Above,Flat,0,5701,,53.40152026,0,1.2,,,,1,1,,0.03,nav,1,1914,3,, 28191,NJBF000064632,301 N DORSET AVE,Ventnor City,NJ,39.3449565,-74.4805735,COM1,3003,,NaN,ME,1975,1975,3401,1,1,3486.304337,3486.304337,3507,NO,18.25,25.91,1,-0.5,6106,113.701381,123.464228,133.18838,139.711005,I,Above,Hip,0,NaN,,22.08103076,0,0,,,,1,1,,0.03,nav,1,1975,1,, 28192,NJBF000060928,20 N BUFFALO AVE,Ventnor City,NJ,39.336771,-74.48741,RES1,3001,,18,NE,2016,2016,3102,2,1,617.2237067,617.2237067,3505,NO,43.94,51.92,3,5.29,6106,113.660275,123.432789,133.149058,139.71995,I,Above,Gable,0,5701,,47.93249148,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 28193,NJBF000060357,6810 VENTNOR AVE,Ventnor City,NJ,39.33583481,-74.48668628,RES1,3001,,27,NE,1929,1929,3102,2,1,1429.409574,1429.409574,3505,NO,36.85,47.17,3,5.86,6106,113.689094,123.456106,133.172974,139.748778,I,Above,Flat,0,5701,,42.00826489,0,0,,,,1,1,,0.03,nav,1,1929,2,, 28194,NJBF000065537,505 N DERBY AVE,Ventnor City,NJ,39.34738051,-74.4835204,RES1,3001,,17,NE,1963,1963,3101,1,1,1290.291165,1290.291165,3505,NO,18.06,25.65,3,3.47,6106,113.604597,123.384926,133.105569,139.618725,I,Above,Flat,0,5701,,21.85705189,0,0,,,,1,1,,0.03,nav,1,1963,1,, 28195,NJBF000066586,716 N BURGHLEY AVE,Ventnor City,NJ,39.35014418,-74.48715285,RES1,3001,,17,NE,1975,1975,3101,2,1,1744.159018,1744.159018,3505,NO,39.45,45.8,3,2.18,6106,113.488465,123.289686,133.005906,139.50729,I,Above,Gable,0,5701,,42.62659407,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28196,NJBF000064123,24 S OAKLAND AVE,Ventnor City,NJ,39.34362885,-74.46846981,RES3B,3001,,17,E,1925,1925,3303,3,2,1715.173167,1715.173167,3504,NO,39.75,45.9,-4,0,6106,113.985447,123.695583,133.434551,139.93545,I,Above,Hip,0,NaN,,42.82318541,0,0,,,,1,1,,0.03,nav,1,1925,3,, 28197,NJBF000064003,120 N OXFORD AVE,Ventnor City,NJ,39.34331396,-74.47800857,RES1,3001,,17,NE,1946,1946,3102,2,1,1632.676222,1632.676222,3505,NO,35.6,49.5,3,-1.94,6106,113.779632,123.52817,133.255311,139.782561,I,Above,Flat,0,5701,,42.54865297,0,0,,,,1,1,,0.03,nav,1,1946,2,, 28198,NJBF000063962,118 N OXFORD AVE,Ventnor City,NJ,39.34321763,-74.47793374,RES1,3001,,17,NE,1946,1946,3102,2,1,1448.211107,1448.211107,3505,NO,39.14,49.99,3,2.32,6106,113.782555,123.530567,133.257795,139.785417,I,Above,Hip,0,5701,,44.56072036,0,0,,,,1,1,,0.03,nav,1,1946,2,, 28199,NJBF000060218,100 S NEW HAVEN AVE,Ventnor City,NJ,39.33559801,-74.48329366,RES1,3001,,17,NE,1925,1925,3102,3,1,1618.38181,1618.38181,3505,NO,37.22,42.68,3,-2,6106,113.767094,123.51916,133.239555,139.81628,I,Above,Gable,0,5701,,39.95251915,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 28200,NJBF000059945,19 N SWARTHMORE AVE,Ventnor City,NJ,39.33512776,-74.49197513,RES1,3001,,17,NE,1925,1925,3102,2,1,1289.78946,1289.78946,3505,NO,36.92,51.77,3,2.69,6106,113.58221,123.369914,133.081417,139.656165,I,Above,Gable,0,5701,,44.34568929,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28201,NJBF000059741,109 S TROY AVE,Ventnor City,NJ,39.334775,-74.483649,RES1,3001,,17,NE,1925,1925,3102,2,1,1005.796768,1005.796768,3505,NO,39.11,50.05,3,8.13,6106,113.770598,123.521998,133.241852,139.823216,I,Above,Gable,0,5701,,44.58039918,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28202,NJBF000065879,505 N OXFORD AVE,Ventnor City,NJ,39.34834433,-74.48151893,RES1,3001,,17,NE,1963,1963,3102,1,1,1756.559006,1756.559006,3507,NO,20.92,26.8,1,2.42,6106,113.636396,123.410161,133.132987,139.638813,I,Above,Hip,0,5701,,23.85994667,0,0,,,,1,1,,0.03,nav,1,1963,1,, 28203,NJBF000060129,102 S NEW HAVEN AVE,Ventnor City,NJ,39.33545092,-74.4832024,RES1,3001,,20,NE,2016,2016,3102,3,1,1881.11661,1881.11661,3505,NO,60.86,73.59,3,5.73,6106,113.771139,123.522435,133.242901,139.820378,I,Above,Gable,0,5701,,67.22789829,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, 28204,NJBF000060381,112 N SWARTHMORE AVE,Ventnor City,NJ,39.33588332,-74.49302178,RES1,3001,,17,NE,1948,1948,3102,1,1,1890.116537,1890.116537,3505,NO,16.71,25.11,3,-1.82,6106,113.548649,123.342863,133.05349,139.623881,I,Above,Hip,0,5701,,20.90809153,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 28205,NJBF000060536,23 S AVOLYN AVE,Ventnor City,NJ,39.33615385,-74.48401583,RES1,3001,,30,NE,1921,1921,3102,2,1,1608.328699,1608.328699,3505,NO,42.94,51.86,3,5.95,6106,113.743561,123.50011,133.21983,139.793884,I,Above,Flat,0,5701,,47.40058429,0,0,,,,1,1,,0.03,nav,1,1921,2,, 28206,NJBF000064608,312 N DERBY AVE,Ventnor City,NJ,39.34488998,-74.48207567,RES1,3001,,17,NE,1983,1983,3102,2,1,2171.714073,2171.714073,3505,NO,34.03,39.88,3,1.76,6106,113.669076,123.438109,133.160548,139.685465,I,Above,Gable,0,5701,,36.95904395,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 28207,NJBF000061684,105 N RICHARDS AVE,Ventnor City,NJ,39.33807349,-74.48700571,RES1,3001,,17,NE,1925,1925,3102,1,1,1532.150335,1532.150335,3505,NO,18.93,24.56,3,2.19,6106,113.6514,123.4255,133.142348,139.70671,I,Above,Hip,0,5701,,21.74480391,0,0,,,,1,1,,0.03,nav,1,1925,1,, 28208,NJBF000058787,,Ventnor City,NJ,39.33294374,-74.49090659,RES1,3001,,NaN,NE,1969,0,3102,2,1,927.9945384,927.9945384,3505,NO,37.87,44.65,3,8.95,6106,113.636159,123.413346,133.125443,139.710085,I,Above,Hip,0,5701,,41.26308665,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28209,NJBF000066806,806 N BURGHLEY AVE,Ventnor City,NJ,39.35085196,-74.48776891,RES1,3001,,17,NE,1972,1972,3101,1,1,2441.56714,2441.56714,3505,NO,15.27,23.16,3,4.6,6106,113.465743,123.270924,132.986333,139.484376,I,Above,Hip,0,5701,,19.21559107,0,0,,,,1,1,,0.03,nav,1,1972,1,, 28210,NJBF000060464,21 N LAFAYETTE AVE,Ventnor City,NJ,39.33601866,-74.49017109,RES1,3001,,17,NE,1929,1929,3102,2,1,1055.948333,1055.948333,3505,NO,37.04,42.67,3,-0.02,6106,113.609695,123.392036,133.105426,139.678211,I,Above,Flat,0,5701,,39.85219089,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 28211,NJBF000066580,610 N SOMERSET AVE,Ventnor City,NJ,39.35013372,-74.48262793,RES1,3001,,17,NE,1974,1974,3102,2,1,1619.490554,1619.490554,3507,NO,21.16,35.56,1,-0.07,6106,113.588851,123.370724,133.092025,139.589728,I,Above,Gable,0,5701,,28.35934824,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28212,NJBF000066884,608 N VICTORIA AVE,Ventnor City,NJ,39.351159,-74.480809,RES3A,3001,,NaN,NE,1988,1988,3301,2,1,1013.79727,1013.79727,3505,NO,32.62,38.08,3,2.66,6106,113.616032,123.392093,133.11535,139.605457,I,Above,Hip,0,5701,,35.34763359,0,0,,,,1,1,,0.03,nav,1,1988,2,, 28213,NJBF000063156,114 N CAMBRIDGE AVE,Ventnor City,NJ,39.34100815,-74.48183389,RES1,3001,,17,NE,1962,1962,3102,1,1,1404.169545,1404.169545,3505,NO,10.11,24.35,3,-1.7,6106,113.725919,123.485225,133.207883,139.753543,I,Above,Hip,0,5701,,17.23012839,0,0,,,,1,1,,0.03,nav,1,1962,1,, 28214,NJBF000060109,,Ventnor City,NJ,39.33541922,-74.48532906,RES1,3001,,NaN,NE,1925,0,3102,2,1,1540.253674,1540.253674,3505,NO,20.83,33.77,3,-0.63,6106,113.724725,123.484903,133.203107,139.781288,I,Above,Hip,0,5701,,27.2976832,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28215,NJBF000060659,14 S NEW HAVEN AVE,Ventnor City,NJ,39.33636433,-74.48393695,RES1,3001,,17,NE,1942,1942,3102,2,1,1769.217499,1769.217499,3505,NO,25.91,32.76,3,0.14,6106,113.742425,123.499182,133.219022,139.791906,I,Above,Hip,0,5701,,29.33657256,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 28216,NJBF000060391,114 S PORTLAND AVE,Ventnor City,NJ,39.33589346,-74.48063688,RES1,3001,,NaN,NE,1920,0,3102,3,1,1348.69318,1348.69318,3505,NO,35.06,45.65,3,0.21,6106,113.82155,123.563244,133.286596,139.858945,I,Above,Flat,0,5701,,40.35638364,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 28217,NJBF000063247,130 N HARVARD AVE,Ventnor City,NJ,39.34122218,-74.48271175,RES1,3001,,27,NE,1920,1920,3102,2,1,1677.37603,1677.37603,3505,NO,29.14,41.03,3,7.48,6106,113.703676,123.467183,133.188878,139.73433,I,Above,Gable,0,5701,,35.08595498,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28218,NJBF000065476,421 N DORSET AVE,Ventnor City,NJ,39.34717739,-74.48236269,RES1,3001,,17,NE,1947,1947,3102,1,1,1102.432977,1102.432977,3505,NO,17.17,27.77,3,3.97,6106,113.632844,123.407855,133.129828,139.642852,I,Above,Gable,0,5701,,22.47041888,0,0,,,,1,1,,0.03,nav,1,1947,1,, 28219,NJBF000063931,602 N BUFFALO AVE,Ventnor City,NJ,39.34311349,-74.49316853,RES1,3001,,17,NE,1975,1975,3102,2,1,1681.60323,1681.60323,3505,NO,33.68,44.26,3,-1.05,6106,113.447081,123.259796,132.970639,139.507896,I,Above,Gable,0,5701,,38.96932164,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28220,NJBF000062855,118 N PRINCETON AVE,Ventnor City,NJ,39.34036235,-74.48347209,RES1,3001,,17,NE,1930,1930,3102,1,1,1216.825336,1216.825336,3505,NO,21.48,26.73,3,7.44,6106,113.698435,123.463127,133.183935,139.734762,I,Above,Hip,0,5701,,24.10513937,0,0,,,,1,1,,0.03,nav,1,1930,1,, 28221,NJBF000062817,116 N PRINCETON AVE,Ventnor City,NJ,39.34029081,-74.48344302,RES1,3001,,17,NE,2016,1930,3102,2,1,1369.266682,1369.266682,3505,NO,38.89,52.75,3,8.78,6106,113.700029,123.46443,133.185265,139.736454,I,Above,Hip,0,5701,,45.82007268,0,0,,,,1,1,,0.03,nav,1,2016,2,, 28222,NJBF000066772,605 N VICTORIA AVE,Ventnor City,NJ,39.35072953,-74.47994073,RES3A,3001,,NaN,NE,1991,1991,3301,1,1,2170.920983,2170.920983,3505,NO,23.4,35.24,3,6.14,6106,113.640691,123.412325,133.136683,139.627823,I,Above,Gable,0,5701,,29.32261841,0,0,,,,1,1,,0.03,nav,1,1991,1,, 28223,NJBF000066344,513 N SUFFOLK AVE,Ventnor City,NJ,39.34952874,-74.48075532,RES1,3001,,17,NE,1974,1974,3102,2,1,1328.920038,1328.920038,3507,NO,23.5,30.36,1,1.66,6106,113.638044,123.410868,133.134439,139.633017,I,Above,Flat,0,5701,,26.9252912,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28224,NJBF000060453,6811 VENTNOR AVE,Ventnor City,NJ,39.33600184,-74.48727787,RES1,3001,,17,NE,1950,1950,3102,1,1,1187.901763,1187.901763,3505,NO,23.31,33.27,3,5.36,6106,113.673744,123.443706,133.159994,139.734754,I,Above,Gable,0,5701,,28.28872357,0,0,,,,1,1,,0.03,nav,1,1950,1,, 28225,NJBF000065082,316 N SOMERSET AVE,Ventnor City,NJ,39.34608771,-74.47940674,RES1,3001,,17,NE,1960,1960,3102,2,1,1961.10344,1961.10344,3505,NO,42.1,50.16,3,6.01,6106,113.712354,123.472686,133.198153,139.712985,I,Above,Flat,0,5701,,46.12956836,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 28226,NJBF000060871,7302 CALVERT AVENUE,Ventnor City,NJ,39.33667404,-74.49525077,RES1,3001,,17,NE,1950,1999,3102,2,1,2510.14175,2510.14175,3505,NO,21.03,35.85,3,-1.46,6106,113.488489,123.294412,133.003073,139.567449,I,Above,Gable,0,5701,,28.43961828,0,0,,,,1,1,,0.03,nav,1,1950,2,, 28227,NJBF000060341,6605 ATLANTIC AVE,Ventnor City,NJ,39.33580659,-74.484113,REL1,3001,,NaN,ME,1930,1930,3401,1,1,3924.694619,3924.694619,3507,NO,14.86,24.8,1,0.06,6106,113.746184,123.502242,133.221799,139.79776,I,Above,Gable,0,NaN,,19.82689599,0,0,,,,1,1,,0.03,nav,1,1930,1,, 28228,NJBF000060693,15 S NEW HAVEN AVE,Ventnor City,NJ,39.336408,-74.48342594,RES1,3001,,17,NE,1927,1927,3102,3,1,2147.885395,2147.885395,3505,NO,45.93,53.92,3,8.61,6106,113.753083,123.507799,133.228195,139.800569,I,Above,Hip,0,5701,,49.92764608,0,1.2,,,,1,1,,0.03,nav,1,1927,3,, 28229,NJBF000062220,215 N ROSBOROUGH AVE,Ventnor City,NJ,39.33902287,-74.49131444,RES1,3001,,17,NE,1946,1946,3102,1,1,1396.636438,1396.636438,3505,NO,18.08,28.32,3,0.32,6106,113.5433,123.338224,133.050823,139.608801,I,Above,Gable,0,5701,,23.20229398,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 28230,NJBF000060045,23 S BUFFALO AVE,Ventnor City,NJ,39.33531234,-74.48553487,RES1,3001,,17,NE,1946,1946,3102,2,1,1792.366933,1792.366933,3505,NO,36.82,47.89,3,5.44,6106,113.72166,123.482427,133.200397,139.77911,I,Above,Hip,0,5701,,42.35204207,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 28231,NJBF000066800,6200 BURK AVE,Ventnor City,NJ,39.35082473,-74.48948103,RES1,3001,,17,NE,1978,1978,3101,2,1,1972.715631,1972.715631,3505,NO,29.85,43.13,3,-2.38,6106,113.428094,123.240632,132.954205,139.453057,I,Above,Gable,0,5701,,36.48849716,0,0,,,,1,1,,0.03,nav,1,1978,2,, 28232,NJBF000065041,24 N MARION AVE,Ventnor City,NJ,39.3459801,-74.4690229,RES1,3001,,17,NE,1926,1926,3102,2,1,1072.573585,1072.573585,3507,NO,31.91,40.41,1,2.69,6106,113.942573,123.659968,133.398304,139.889648,I,Above,Hip,0,5701,,36.15776395,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 28233,NJBF000066756,5500 WELLINGTON AVE,Ventnor City,NJ,39.35068784,-74.48225815,RES1,3001,,17,NE,1972,1972,3102,2,1,1634.918633,1634.918633,3507,NO,31.05,40.3,1,1.95,6106,113.589964,123.371291,133.092929,139.587308,I,Above,Gable,0,5701,,35.67607607,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 28234,NJBF000065045,9 N BATON ROUGE AVE,Ventnor City,NJ,39.34598742,-74.46789154,RES3A,3001,,17,NE,1940,1940,3301,1,1,1031.540497,1031.540497,3505,NO,18.63,31.84,3,2.47,6106,113.967338,123.680193,133.420012,139.907883,I,Above,Gable,0,5701,,25.23557965,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28235,NJBF000063115,2 1/2 S OXFORD AVE,Ventnor City,NJ,39.34092035,-74.47545535,RES1,3001,,17,NE,1977,1977,3102,1,1,2458.398739,2458.398739,3505,NO,15.18,27.84,3,-0.92,6106,113.867697,123.600202,133.330238,139.864679,I,Above,Gable,0,5701,,21.50915009,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 28236,NJBF000065438,416 N DUDLEY AVE,Ventnor City,NJ,39.34708217,-74.48192671,RES1,3001,,17,NE,1960,1960,3102,1,1,1468.425246,1468.425246,3505,NO,16.6,26.56,3,0.89,6106,113.643721,123.416695,133.139175,139.652197,I,Above,Hip,0,5701,,21.5804393,0,0,,,,1,1,,0.03,nav,1,1960,1,, 28237,NJBF000062336,3 N SACRAMENTO AVE,Ventnor City,NJ,39.33924603,-74.48136842,RES1,3001,,17,NE,1920,1920,3102,2,1,2128.7919,2128.7919,3505,NO,36.21,42.91,3,2.21,6106,113.75988,123.513027,133.236059,139.790813,I,Above,Hip,0,5701,,39.55952755,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28238,NJBF000063068,23 N CORNWALL AVE,Ventnor City,NJ,39.34082983,-74.47993841,RES1,3001,,19,NE,2015,2016,3102,2,1,875.5685151,875.5685151,3505,NO,34.15,46.59,3,3.91,6106,113.770126,123.521055,133.24584,139.789859,I,Above,Flat,0,5701,,40.37097246,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 28239,NJBF000060697,12 N NEWARK AVE,Ventnor City,NJ,39.33641428,-74.48834475,RES1,3001,,17,NE,1945,1945,3102,1,1,1370.884015,1370.884015,3505,NO,27.72,38.15,3,8.99,6106,113.644547,123.420121,133.135389,139.707631,I,Above,Gable,0,5701,,32.93671485,0,0,,,,1,1,,0.03,nav,1,1945,1,, 28240,NJBF000066645,715 N BURGHLEY AVE,Ventnor City,NJ,39.35034141,-74.48678751,RES1,3001,,17,NE,1965,1965,3101,2,1,1295.281077,1295.281077,3505,NO,37.15,50.97,3,4.69,6106,113.494035,123.294052,133.010635,139.51079,I,Above,Gable,0,5701,,44.05889352,0,0,,,,1,1,,0.03,nav,1,1965,2,, 28241,NJBF000060072,108 N WASHINGTON AVE,Ventnor City,NJ,39.33534902,-74.49332662,RES1,3001,,17,NE,1948,1948,3102,1,1,1812.090778,1812.090778,3505,NO,25.2,37.72,3,7.19,6106,113.549313,123.343416,133.053676,139.625855,I,Above,Hip,0,5701,,31.4626743,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 28242,NJBF000063055,6005 WINCHESTER AVE,Ventnor City,NJ,39.34079449,-74.47956862,RES1,3001,,19,NE,1969,2018,3102,2,1,1319.563292,1319.563292,3505,NO,36.81,50.81,3,1.6,6106,113.778743,123.528045,133.253249,139.796868,I,Above,Hip,0,5701,,43.80802865,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28243,NJBF000060482,121 N SWARTHMORE AVE,Ventnor City,NJ,39.33604889,-74.49268921,RES1,3001,,17,NE,1948,1948,3102,1,1,1980.550806,1980.550806,3505,NO,26.91,40.63,3,7.71,6106,113.553706,123.346927,133.057892,139.627983,I,Above,Hip,0,5701,,33.77245065,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 28244,NJBF000064149,22 S OAKLAND AVE,Ventnor City,NJ,39.34371256,-74.46854906,RES3B,3001,,17,E,1920,1920,3303,3,1,1882.434562,1882.434562,3504,NO,36.6,48.4,-4,0,6106,113.982608,123.693247,133.432118,139.932872,I,Above,Hip,0,NaN,,42.49926066,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 28245,NJBF000059187,109 S NEWARK AVE,Ventnor City,NJ,39.3337338,-74.48574592,RES1,3001,,20,NE,1965,1965,3102,2,1,1482.298504,1482.298504,3505,NO,27.58,38.54,3,-1.65,6110,113.73882,123.496274,133.213703,139.800261,I,Above,Hip,0,5701,,33.06138178,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 28246,NJBF000066037,517 N DUDLEY AVE,Ventnor City,NJ,39.34873836,-74.48273427,RES1,3001,,17,NE,1963,1963,3102,1,1,1557.630467,1557.630467,3507,NO,18.8,29.69,1,-0.03,6106,113.604433,123.384106,133.105486,139.610653,I,Above,Hip,0,5701,,24.24241732,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 28247,NJBF000060095,7114 WINCHESTER AVE,Ventnor City,NJ,39.33539719,-74.49139165,RES1,3001,,17,NE,1930,1930,3102,2,1,1610.035603,1610.035603,3505,NO,22.63,30.84,3,1.61,6106,113.591346,123.37727,133.089376,139.663672,I,Above,Hip,0,5701,,26.73123442,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 28248,NJBF000065447,508 N BURGHLEY AVE,Ventnor City,NJ,39.34710983,-74.48467747,RES1,3001,,17,NE,1970,1970,3101,2,1,1232.150692,1232.150692,3505,NO,26.59,36.74,3,4.46,6106,113.582513,123.367218,133.086595,139.602211,I,Above,Flat,0,5701,,31.66607059,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28249,NJBF000059996,,Ventnor City,NJ,39.33521658,-74.48740698,RES1,3001,,NaN,NE,1940,0,3102,2,1,4085.573003,4085.573003,3505,NO,24.78,31.2,3,-0.55,6106,113.681714,123.450163,133.166185,139.744708,I,Above,Flat,0,5701,,27.98970939,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28250,NJBF000062814,117 N PORTLAND AVE,Ventnor City,NJ,39.34028034,-74.48368823,RES1,3001,,17,NE,1940,1940,3102,2,1,967.2981839,967.2981839,3505,NO,31.98,41.7,3,6.9,6106,113.694769,123.46018,133.180747,139.732192,I,Above,Gable,0,5701,,36.83831839,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28251,NJBF000066385,609 N DUDLEY AVE,Ventnor City,NJ,39.3496301,-74.48346925,RES1,3001,,17,NE,1974,1974,3102,2,1,1250.945284,1250.945284,3507,NO,29.27,39.5,1,-0.51,6106,113.576691,123.361189,133.081606,139.582842,I,Above,Flat,0,5701,,34.381523,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28252,NJBF000060676,201 N SWARTHMORE AVE,Ventnor City,NJ,39.33638598,-74.49334422,RES1,3001,,NaN,NE,1970,1970,3102,2,1,1584.884144,1584.884144,3505,NO,35.47,41.25,3,8.04,6106,113.53459,123.331518,133.041911,139.609831,I,Above,Flat,0,5701,,38.3575418,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28253,NJBF000064526,7 S MARION AVE,Ventnor City,NJ,39.34471486,-74.46774286,RES1,3001,,17,NE,1919,1919,3102,2,1,1751.29767,1751.29767,3504,NO,36.48,50.74,-4,0,6106,113.987186,123.696754,133.436731,139.930165,I,Above,Hip,0,5701,,43.61193914,0,1.1,,,,1,1,,0.03,nav,1,1919,2,, 28254,NJBF000059063,18 S MELBOURNE AVE,Ventnor City,NJ,39.33347633,-74.48954821,RES1,3001,,17,NE,1913,1913,3102,2,1,1272.462902,1272.462902,3505,NO,37.21,47.49,3,2.97,6106,113.658673,123.431538,133.145074,139.729417,I,Above,Hip,0,5701,,42.34699157,0,1.1,,,,1,1,,0.03,nav,1,1913,2,, 28255,NJBF000059016,15 S SWARTHMORE AVE,Ventnor City,NJ,39.33337543,-74.49051869,RES1,3001,,17,NE,1910,1910,3102,2,1,1989.056143,1989.056143,3505,NO,39.92,51.25,3,3.21,6106,113.638688,123.415411,133.127978,139.711518,I,Above,Hip,0,5701,,45.58204686,0,0,,,,1,1,,0.03,nav,1,1910,2,, 28256,NJBF000061699,10 N NEWPORT AVE,Ventnor City,NJ,39.33810285,-74.48430027,RES1,3001,,17,NE,1928,1928,3102,2,1,555.8194873,555.8194873,3505,NO,32.7,43.13,3,1.34,6106,113.7107,123.473392,133.193092,139.75674,I,Above,Flat,0,5701,,37.91543329,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 28257,NJBF000066175,710 N CAMBRIDGE AVE,Ventnor City,NJ,39.34911644,-74.48807913,RES1,3001,,17,NE,1960,1960,3101,1,1,1691.047596,1691.047596,3505,NO,17.19,28.38,3,3.89,6106,113.481145,123.284411,132.99981,139.506957,I,Above,Flat,0,5701,,22.78304952,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 28258,NJBF000065670,601 N CORNWALL AVE,Ventnor City,NJ,39.34777096,-74.48555367,RES1,3001,,17,NE,1968,1968,3101,1,1,2067.145484,2067.145484,3505,NO,10.74,23.83,3,-0.56,6106,113.554505,123.344286,133.062622,139.575406,I,Above,Hip,0,5701,,17.28605198,0,0,,,,1,1,,0.03,nav,1,1968,1,, 28259,NJBF000060335,7303 MONMOUTH AVE,Ventnor City,NJ,39.33579605,-74.49408184,RES1,3001,,16,NE,1950,1950,3102,2,1,806.9668364,806.9668364,3505,NO,38.09,52.02,3,0.94,6106,113.526452,123.325,133.034624,139.604044,I,Above,Hip,0,5701,,45.05516213,0,0,,,,1,1,,0.03,nav,1,1950,2,, 28260,NJBF000060361,209 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33583809,-74.49471123,RES1,3001,,28,NE,1915,1915,3102,2,1,2165.970761,2165.970761,3505,NO,39.02,44.54,3,4.17,6106,113.511982,123.313356,133.022405,139.590829,I,Above,Gable,0,5701,,41.77984064,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 28261,NJBF000060348,117 N SWARTHMORE AVE,Ventnor City,NJ,39.33582107,-74.49252781,RES1,3001,,17,NE,1925,1925,3102,2,1,978.2768985,978.2768985,3505,NO,26.5,40.38,3,1.86,6106,113.560412,123.352337,133.063422,139.634652,I,Above,Gable,0,5701,,33.4413403,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28262,NJBF000060363,7301 MONMOUTH AVE,Ventnor City,NJ,39.3358425,-74.493999,RES1,3001,,45,NE,1950,1950,3102,2,2,800.0730611,800.0730611,3505,NO,40.28,47.23,3,2.5,6106,113.527647,123.32596,133.035668,139.605011,I,Above,Gable,0,5701,,43.75708494,0,0,,,,1,1,,0.03,nav,1,1950,2,, 28263,NJBF000063837,102 S OAKLAND AVE,Ventnor City,NJ,39.34284814,-74.4679787,RES3B,3001,,NaN,E,1922,1900,3303,3,1,1905.677066,1905.677066,3504,NO,56,66.02,-4,0,6106,114.006506,123.712935,133.452484,139.955443,I,Above,Hip,0,NaN,,61.01054567,0,1.1,,,,1,1,,0.03,nav,1,1922,3,, 28264,NJBF000060316,6901 VENTNOR AVE,Ventnor City,NJ,39.3357606,-74.48776063,RES1,3001,,17,NE,1966,1966,3102,2,1,2144.502352,2144.502352,3505,NO,35.76,46.57,3,-1.06,6106,113.66641,123.437795,133.153552,139.729261,I,Above,Flat,0,5701,,41.16405316,0,0,,,,1,1,,0.03,nav,1,1966,2,, 28265,NJBF000066375,709 N CORNWALL AVE,Ventnor City,NJ,39.349598,-74.487089,RES1,3001,,17,NE,1968,1968,3101,2,1,1031.534226,1031.534226,3505,NO,36.54,50.82,3,-0.44,6106,113.496893,123.296813,133.0132,139.517382,I,Above,Flat,0,5701,,43.68259612,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 28266,NJBF000063436,205 N SACRAMENTO AVE,Ventnor City,NJ,39.3417285,-74.48342984,RES1,3001,,18,NE,1925,1925,3102,1,1,1448.648347,1448.648347,3505,NO,17.52,28.32,3,2.22,6106,113.681044,123.448764,133.169689,139.713062,I,Above,Flat,0,5701,,22.91982439,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 28267,NJBF000060512,104 S STRATFORD AVE,Ventnor City,NJ,39.33611525,-74.48151841,RES1,3001,,16,NE,1925,1925,3102,1,1,2097.355183,2097.355183,3505,NO,16.88,25.29,3,2.42,6106,113.799117,123.545068,133.267488,139.839781,I,Above,Hip,0,5701,,21.0847058,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 28268,NJBF000062117,6808 VENTNOR GDNS PL,Ventnor City,NJ,39.33882149,-74.48963367,RES1,3001,,17,NE,1966,1966,3102,2,1,1329.844707,1329.844707,3505,NO,45.08,56.19,3,6.26,6106,113.58318,123.370378,133.084624,139.644511,I,Above,Hip,0,5701,,50.63531856,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 28269,NJBF000066594,710 N DERBY AVE,Ventnor City,NJ,39.35018328,-74.48629842,RES1,3001,,17,NE,1977,1977,3101,1,1,1406.25479,1406.25479,3505,NO,17.81,31.62,3,3.28,6106,113.506923,123.304542,133.021693,139.522364,I,Above,Gable,0,5701,,24.71661925,0,0,,,,1,1,,0.03,nav,1,1977,1,, 28270,NJBF000065630,506 N DORSET AVE,Ventnor City,NJ,39.34765754,-74.48339073,RES1,3001,,17,NE,1960,1960,3101,1,1,1874.148568,1874.148568,3505,NO,20.59,32.45,3,8.56,6106,113.603857,123.384193,133.104953,139.616515,I,Above,Gable,0,5701,,26.52313737,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 28271,NJBF000064511,5400 MONMOUTH AVE,Ventnor City,NJ,39.34466852,-74.47649583,RES1,3001,,17,NE,1953,1953,3102,1,1,902.7105064,902.7105064,3505,NO,16.41,29.55,3,-2.23,6106,113.795156,123.540361,133.26932,139.78639,I,Above,Flat,0,5701,,22.9835606,0,0,,,,1,1,,0.03,nav,1,1953,1,, 28272,NJBF000062265,6 N SACRAMENTO AVE,Ventnor City,NJ,39.339114,-74.4817655,RES1,3001,,17,NE,1940,1940,3102,2,2,2095.633964,2095.633964,3505,NO,28.23,38.18,3,2.24,6106,113.752908,123.507403,133.229979,139.785945,I,Above,Hip,0,5701,,33.20458809,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 28273,NJBF000062271,124 N AVOLYN AVE,Ventnor City,NJ,39.3391305,-74.4868705,RES1,3001,,17,NE,1929,1929,3102,2,1,1076.913338,1076.913338,3505,NO,30.02,37.18,3,8.06,6106,113.640027,123.416171,133.133264,139.692152,I,Above,Hip,0,5701,,33.60054164,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 28274,NJBF000064988,5505 CALVERT AVE,Ventnor City,NJ,39.34585235,-74.47844404,RES1,3001,,17,NE,1927,1927,3102,2,1,1043.745607,1043.745607,3505,NO,34.65,48.52,3,-0.26,6106,113.736696,123.492511,133.219122,139.733619,I,Above,Hip,0,5701,,41.5842301,0,0,,,,1,1,,0.03,nav,1,1927,2,, 28275,NJBF000065091,321 N OXFORD AVE,Ventnor City,NJ,39.34611754,-74.47977459,RES1,3001,,17,NE,1960,1960,3102,2,1,1952.865127,1952.865127,3505,NO,45.02,58.76,3,6.27,6106,113.703835,123.465772,133.190806,139.706048,I,Above,Flat,0,5701,,51.88830275,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 28276,NJBF000062238,823 N AVOLYN AVE,Ventnor City,NJ,39.33906798,-74.48636234,RES1,3001,,17,NE,1940,1940,3102,1,1,1641.379993,1641.379993,3505,NO,13.36,26.91,3,0.34,6106,113.652098,123.425925,133.143542,139.702709,I,Above,Flat,0,5701,,20.13834064,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28277,NJBF000064989,20 N MARION AVE,Ventnor City,NJ,39.34585257,-74.46891614,RES1,3001,,17,NE,1926,1926,3102,2,1,1182.368201,1182.368201,3507,NO,26.38,35.8,1,1.07,6106,113.946576,123.663274,133.401749,139.893387,I,Above,Hip,0,5701,,31.09140158,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 28278,NJBF000062284,26 N PORTLAND AVE,Ventnor City,NJ,39.33914984,-74.48324617,RES1,3001,0,17,NE,1890,1890,3102,2,1,1551.089713,1551.089713,3505,NO,25.6,39.37,3,-2.29,6106,113.719759,123.480579,133.201531,139.758778,I,Above,Hip,0,5701,,32.48358972,0,0,,,,1,1,,0.03,nav,1,1890,2,, 28279,NJBF000064969,309 N OXFORD AVE,Ventnor City,NJ,39.34581441,-74.4795588,RES1,3001,,45,NE,1930,1930,3102,2,2,935.5461486,935.5461486,3505,NO,40.08,46.25,3,8.8,6106,113.712574,123.472973,133.198274,139.714805,I,Above,Gable,0,5701,,43.16676512,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28280,NJBF000065016,5402 CALVERT AVE,Ventnor City,NJ,39.34591853,-74.47753407,RES1,3001,,17,NE,1940,1940,3102,2,1,1248.190403,1248.190403,3505,NO,33.81,39.99,3,1.64,6106,113.755906,123.508067,133.235759,139.748266,I,Above,Gable,0,5701,,36.90174709,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28281,NJBF000065671,517 N BURGHLEY AVE,Ventnor City,NJ,39.34777303,-74.48470383,RES1,3001,,17,NE,1958,1958,3101,1,1,1485.235636,1485.235636,3505,NO,23.35,34.19,3,8.23,6106,113.573302,123.359456,133.078732,139.590867,I,Above,Flat,0,5701,,28.77256009,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28282,NJBF000064982,29 N OAKLAND AVE,Ventnor City,NJ,39.34583947,-74.46993776,RES1,3001,,17,NE,1920,1920,3102,2,1,930.1907943,930.1907943,3507,NO,35.49,47.87,1,2.64,6106,113.924288,123.645088,133.382236,139.87695,I,Above,Gable,0,5701,,41.67927727,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28283,NJBF000064948,27 N OAKLAND AVE,Ventnor City,NJ,39.34573673,-74.46985304,RES1,3001,,17,NE,1920,1920,3102,1,1,1984.7099,1984.7099,3507,NO,13.93,27.89,1,1.14,6106,113.927485,123.647727,133.384984,139.879952,I,Above,Hip,0,5701,,20.90648629,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 28284,NJBF000064928,416 N CAMBRIDGE AVE,Ventnor City,NJ,39.34569752,-74.48532822,RES1,3001,,17,NE,1970,1970,3102,2,1,1681.029895,1681.029895,3505,NO,32.14,43.88,3,2.08,6106,113.586548,123.371109,133.08989,139.613461,I,Above,Gable,0,5701,,38.01305873,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28285,NJBF000064832,,Ventnor City,NJ,39.34544289,-74.48005819,RES1,3001,,NaN,NE,1969,0,3102,2,1,1328.431905,1328.431905,3505,NO,47.25,61.44,3,8.57,6106,113.706406,123.468118,133.192852,139.712125,I,Above,Flat,0,5701,,54.34397764,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28286,NJBF000064541,312 N BURGHLEY AVE,Ventnor City,NJ,39.3447425,-74.482799,RES1,3001,,17,NE,1958,1958,3102,1,1,1231.619122,1231.619122,3505,NO,16.76,31.5,3,-0.23,6106,113.655029,123.426804,133.148433,139.674938,I,Above,Hip,0,5701,,24.13102168,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28287,NJBF000064556,2 S MARION AVE,Ventnor City,NJ,39.344775,-74.468248,RES1,3001,,17,NE,1902,1902,3102,3,1,1838.274371,1838.274371,3504,NO,57.2,65.04,-4,0,6106,113.975309,123.687036,133.426354,139.921109,I,Above,Hip,0,5701,,61.11667288,0,1.1,,,,1,1,,0.03,nav,1,1902,3,, 28288,NJBF000064927,410 N BURGHLEY AVE,Ventnor City,NJ,39.34568964,-74.48358145,RES1,3001,,17,NE,1970,1970,3102,2,1,2341.489005,2341.489005,3505,NO,39.32,54.18,3,5.07,6106,113.625305,123.402411,133.123121,139.645331,I,Above,Flat,0,5701,,46.74972756,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 28289,NJBF000064865,4 N MARION AVE,Ventnor City,NJ,39.34552084,-74.46868201,RES3A,3001,,17,NE,1926,1926,3301,2,1,1381.890057,1381.890057,3505,NO,35.95,44.52,3,6.07,6106,113.956041,123.671099,133.409873,139.902405,I,Above,Flat,0,5701,,40.23263426,0,0,,,,1,1,,0.03,nav,1,1926,2,, 28290,NJBF000064890,407 N CORNWALL AVE,Ventnor City,NJ,39.345589,-74.483826,RES1,3001,,17,NE,1962,1962,3102,2,1,1430.805827,1430.805827,3505,NO,29.24,43.85,3,5.44,6106,113.62121,123.399143,133.119587,139.64256,I,Above,Flat,0,5701,,36.54202496,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 28291,NJBF000064939,5103 WINCHESTER AVE,Ventnor City,NJ,39.34571941,-74.47071824,RES1,3001,,17,NE,2016,1985,3102,3,1,865.0054113,865.0054113,3507,NO,37.57,47.82,1,-0.37,6106,113.908694,123.632406,133.36855,139.866074,I,Above,Flat,0,5701,,42.69378975,0,0,,,,1,1,,0.03,nav,1,2016,3,, 28292,NJBF000064944,24 N AUSTIN AVE,Ventnor City,NJ,39.34572909,-74.46955707,RES1,3001,,17,NE,1945,1945,3102,2,1,1009.398155,1009.398155,3507,NO,37.04,50.01,1,0.93,6106,113.934098,123.653126,133.390765,139.884908,I,Above,Hip,0,5701,,43.52369585,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 28293,NJBF000064895,26 N OAKLAND AVE,Ventnor City,NJ,39.3455974,-74.47015804,RES1,3001,,17,NE,1910,1910,3102,2,1,1198.395953,1198.395953,3507,NO,30.69,42.1,1,2.7,6106,113.9226,123.643785,133.380647,139.877182,I,Above,Flat,0,5701,,36.39451015,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 28294,NJBF000064994,5404 CALVERT AVE,Ventnor City,NJ,39.3458611,-74.47760693,RES1,3001,,14,NE,1930,1930,3102,2,1,1248.395508,1248.395508,3505,NO,34.8,47.46,3,4.18,6106,113.755052,123.507395,133.235003,139.747952,I,Above,Gable,0,5701,,41.13186631,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28295,NJBF000064530,403 N HARVARD AVE,Ventnor City,NJ,39.34472103,-74.48491598,RES1,3001,,17,NE,1965,1965,3102,1,1,1269.071251,1269.071251,3505,NO,9.72,19.77,3,-1.34,6106,113.608506,123.389224,133.108511,139.636986,I,Above,Hip,0,5701,,14.74513733,0,0,,,,1,1,,0.03,nav,1,1965,1,, 28296,NJBF000064924,316 N OXFORD AVE,Ventnor City,NJ,39.34567367,-74.47986532,RES1,3001,,17,NE,1930,1930,3102,2,1,1083.094424,1083.094424,3505,NO,33.42,45.01,3,0.12,6106,113.707646,123.469035,133.193984,139.711733,I,Above,Gable,0,5701,,39.21896469,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28297,NJBF000064919,305 N OXFORD AVE,Ventnor City,NJ,39.34566679,-74.47943752,RES1,3001,,17,NE,1950,1950,3102,2,1,1108.638445,1108.638445,3505,NO,37.47,51.37,3,8.23,6106,113.717168,123.476752,133.2022,139.719326,I,Above,Gable,0,5701,,44.41900682,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 28298,NJBF000064869,5506 CALVERT AVE,Ventnor City,NJ,39.34554102,-74.47829208,RES1,3001,,17,NE,1928,1928,3102,1,1,926.5415781,926.5415781,3505,NO,25.65,34.93,3,7.5,6106,113.744115,123.498643,133.225445,139.741329,I,Above,Hip,0,5701,,30.28893792,0,0,,,,1,1,,0.03,nav,1,1928,1,, 28299,NJBF000064841,214 N SURREY AVE,Ventnor City,NJ,39.34546153,-74.47710457,RES1,3001,,NaN,NE,1945,1945,3102,2,1,1118.06689,1118.06689,3505,NO,33.63,45.92,3,8.85,6106,113.77134,123.520758,133.248978,139.763083,I,Above,Hip,0,5701,,39.77518514,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 28300,NJBF000064804,229 N SOMERSET AVE,Ventnor City,NJ,39.34537304,-74.47832766,RES1,3001,,17,NE,1940,1940,3102,1,1,1084.955077,1084.955077,3505,NO,20.94,31.51,3,7.94,6106,113.745518,123.499842,133.226606,139.743447,I,Above,Gable,0,5701,,26.22270664,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28301,NJBF000064823,227 N SOMERSET AVE,Ventnor City,NJ,39.345412,-74.47814484,RES1,3001,,17,NE,1929,1929,3102,2,1,738.0678266,738.0678266,3505,NO,33.21,39.06,3,-2.66,6106,113.749046,123.502689,133.229669,139.745979,I,Above,Flat,0,5701,,36.13594524,0,0,,,,1,1,,0.03,nav,1,1929,2,, 28302,NJBF000064814,23 N NASHVILLE AVE,Ventnor City,NJ,39.34539083,-74.47031248,RES1,3001,,17,NE,1910,1910,3102,2,1,1363.754685,1363.754685,3507,NO,35.46,48.76,1,0.99,6106,113.921898,123.643274,133.379935,139.877925,I,Above,Gable,0,5701,,42.11004686,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 28303,NJBF000064778,21 N NASHVILLE AVE,Ventnor City,NJ,39.34530086,-74.47024702,RES1,3001,,17,NE,1905,1905,3102,2,1,1278.433219,1278.433219,3507,NO,37.91,44.02,1,-0.68,6106,113.924502,123.645424,133.382166,139.880412,I,Above,Hip,0,5701,,40.96362332,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 28304,NJBF000064678,204 N SURREY AVE,Ventnor City,NJ,39.3450538,-74.47683092,RES1,3001,,45,NE,1980,1980,3102,2,2,1699.580713,1699.580713,3505,NO,43.04,50.44,3,7.07,6106,113.782722,123.530139,133.258694,139.774414,I,Above,Flat,0,5701,,46.73835629,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28305,NJBF000064794,222 N SUFFOLK AVE,Ventnor City,NJ,39.34533523,-74.47787482,RES1,3001,,17,NE,1929,1929,3102,1,1,1082.841663,1082.841663,3505,NO,18.49,27.56,3,4.73,6106,113.756012,123.508367,133.23567,139.7519,I,Above,Gable,0,5701,,23.0240111,0,0,,,,1,1,,0.03,nav,1,1929,1,, 28306,NJBF000064791,215 N SUFFOLK AVE,Ventnor City,NJ,39.34533003,-74.47738821,RES1,3001,,17,NE,1952,1952,3102,1,1,1707.708076,1707.708076,3505,NO,19.52,27.85,3,5.47,6106,113.766823,123.51714,133.245023,139.760371,I,Above,Hip,0,5701,,23.68949815,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 28307,NJBF000064660,406 N CAMBRIDGE AVE,Ventnor City,NJ,39.34501735,-74.48479263,RES1,3001,,17,NE,1960,1960,3102,1,1,1564.816473,1564.816473,3505,NO,11.14,17.97,3,-0.66,6106,113.60733,123.388161,133.107568,139.634379,I,Above,Hip,0,5701,,14.55337192,0,0,,,,1,1,,0.03,nav,1,1960,1,, 28308,NJBF000064787,227 N SOMERSET AVE,Ventnor City,NJ,39.34531998,-74.47824585,RES1,3001,,17,NE,1929,1929,3102,2,1,955.784384,955.784384,3505,NO,24.89,31.11,3,-1.95,6106,113.748021,123.501891,133.228754,139.745732,I,Above,Gable,0,5701,,28.00245531,0,0,,,,1,1,,0.03,nav,1,1929,2,, 28309,NJBF000064726,206 N SURREY AVE,Ventnor City,NJ,39.34517067,-74.47689002,RES1,3001,,NaN,NE,1965,1965,3102,2,1,1398.679448,1398.679448,3505,NO,28.71,36.31,3,7.38,6106,113.779889,123.527799,133.256282,139.771502,I,Above,Flat,0,5701,,32.51194835,0,0,,,,1,1,,0.03,nav,1,1965,2,, 28310,NJBF000064623,17 S VASSAR SQUARE,Ventnor City,NJ,39.34493212,-74.46627604,RES3B,3001,,17,ME,1920,1920,3301,2,1,1565.121586,1565.121586,3504,NO,30.19,42.65,-4,0,6106,114.016563,123.720718,133.462644,139.950263,I,Above,Flat,0,NaN,,36.4197144,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28311,NJBF000064703,211 N SUFFOLK AVE,Ventnor City,NJ,39.34511818,-74.47722488,RES1,3001,,45,NE,1900,1900,3102,3,3,1913.204703,1913.204703,3505,NO,39.2,51.44,3,-2.36,6106,113.773193,123.522383,133.250465,139.766622,I,Above,Flat,0,5701,,45.32030078,0,0,,,,1,1,,0.03,nav,1,1900,3,, 28312,NJBF000064871,23 N OAKLAND AVE,Ventnor City,NJ,39.34554461,-74.46971017,RES1,3001,,17,NE,1920,1920,3102,2,1,1343.981923,1343.981923,3507,NO,25.64,31.5,1,1.62,6106,113.93313,123.652391,133.38983,139.885319,I,Above,Hip,0,5701,,28.56868654,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28313,NJBF000064735,411 N HARVARD AVE,Ventnor City,NJ,39.34518951,-74.48527961,RES1,3001,,17,NE,1962,1962,3102,1,1,1264.417601,1264.417601,3505,NO,20.61,26.51,3,6.62,6106,113.59428,123.377558,133.096423,139.622655,I,Above,Flat,0,5701,,23.55793946,0,0,,,,1,1,,0.03,nav,1,1962,1,, 28314,NJBF000064760,27 N HILLSIDE AVE,Ventnor City,NJ,39.34527348,-74.47111092,RES1,3001,,17,NE,1916,1916,3102,2,1,1710.752647,1710.752647,3507,NO,32.01,38.3,1,2.95,6106,113.905862,123.630234,133.36587,139.866703,I,Above,Hip,0,5701,,35.15713659,0,1.2,,,,1,1,,0.03,nav,1,1916,2,, 28315,NJBF000064799,,Ventnor City,NJ,39.34535111,-74.4818908,RES1,3001,,NaN,NE,1969,0,3102,2,1,1818.379502,1818.379502,3505,NO,27.4,34.77,3,-1.23,6106,113.667113,123.436348,133.158979,139.681203,I,Above,Gable,0,5701,,31.0810146,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28316,NJBF000064781,20 N OAKLAND AVE,Ventnor City,NJ,39.34530559,-74.46996278,RES1,3001,,17,NE,1914,1914,3102,2,1,1607.298355,1607.298355,3507,NO,29.7,43.69,1,0.65,6106,113.930682,123.650463,133.387572,139.884969,I,Above,Gable,0,5701,,36.69877373,0,1.1,,,,1,1,,0.03,nav,1,1914,2,, 28317,NJBF000064751,18 N OAKLAND AVE,Ventnor City,NJ,39.34522902,-74.46984941,RES1,3001,,17,NE,1915,1915,3102,2,1,980.5160396,980.5160396,3507,NO,22.15,35.38,1,0.46,6106,113.934193,123.65335,133.390604,139.888043,I,Above,Hip,0,5701,,28.76140785,0,0,,,,1,1,,0.03,nav,1,1915,2,, 28318,NJBF000064725,5709 CALVERT AVE,Ventnor City,NJ,39.34516977,-74.47986077,RES1,3001,,17,NE,1960,1960,3102,1,1,1894.301176,1894.301176,3505,NO,15.23,21.52,3,4.12,6106,113.714333,123.474641,133.199612,139.720051,I,Above,Hip,0,5701,,18.37440943,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 28319,NJBF000064822,22 N OAKLAND AVE,Ventnor City,NJ,39.3454058,-74.47002535,RES1,3001,,17,NE,1910,1910,3102,2,1,1445.48591,1445.48591,3507,NO,34.72,41.73,1,1.17,6106,113.928015,123.648258,133.385288,139.882377,I,Above,Hip,0,5701,,38.22522965,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 28320,NJBF000064775,225 N SOMERSET AVE,Ventnor City,NJ,39.3452965,-74.4780495,RES1,3001,,17,NE,1929,1929,3102,1,1,768.0327511,768.0327511,3505,NO,18.71,33.42,3,1.77,6106,113.75267,123.50567,133.232766,139.749514,I,Above,Flat,0,5701,,26.06457685,0,0,,,,1,1,,0.03,nav,1,1929,1,, 28321,NJBF000064695,214 N SUFFOLK AVE,Ventnor City,NJ,39.34510205,-74.47769016,RES1,3001,,17,NE,1929,1929,3102,2,1,1053.023595,1053.023595,3505,NO,29.45,35.56,3,2.35,6106,113.763145,123.514235,133.241762,139.758888,I,Above,Gable,0,5701,,32.5034668,0,0,,,,1,1,,0.03,nav,1,1929,2,, 28322,NJBF000064658,316 N BURGHLEY AVE,Ventnor City,NJ,39.34501558,-74.48303824,RES1,3001,,17,NE,1958,1958,3102,1,1,1309.640528,1309.640528,3505,NO,19.04,31.55,3,6.21,6106,113.646156,123.419529,133.14088,139.666166,I,Above,Hip,0,5701,,25.29340712,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28323,NJBF000064858,310 N OXFORD AVE,Ventnor City,NJ,39.34549144,-74.47974747,RES1,3001,,17,NE,2015,2015,3102,2,1,1024.438828,1024.438828,3505,NO,40.91,48.6,3,4.39,6106,113.712646,123.473155,133.198249,139.716796,I,Above,Gable,0,5701,,44.75199496,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 28324,NJBF000064732,316 N DERBY AVE,Ventnor City,NJ,39.34518454,-74.48229433,RES1,3001,,17,NE,1958,1958,3102,1,1,1647.260016,1647.260016,3505,NO,19.49,33.4,3,6.54,6106,113.660383,123.430968,133.153149,139.676733,I,Above,Hip,0,5701,,26.44560107,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28325,NJBF000064765,17 N OAKLAND AVE,Ventnor City,NJ,39.3452823,-74.46948139,RES1,3001,,17,NE,1920,1920,3102,2,1,1162.56584,1162.56584,3507,NO,23.19,31.43,1,0.64,6106,113.941593,123.659373,133.397103,139.893197,I,Above,Hip,0,5701,,27.30892085,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28326,NJBF000059644,110 S TROY AVE,Ventnor City,NJ,39.33460743,-74.48395869,RES1,3001,,18,NE,1935,1935,3102,2,1,1506.733503,1506.733503,3505,NO,23.68,38.42,3,0.69,6106,113.766089,123.518349,133.237838,139.820192,I,Above,Gable,0,5701,,31.04851655,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 28327,NJBF000064401,215 N DORSET AVE,Ventnor City,NJ,39.34439202,-74.48011934,RES1,3001,,17,NE,1940,1940,3102,2,1,2068.682248,2068.682248,3505,NO,28.04,38.47,3,-0.67,6106,113.718855,123.478576,133.203264,139.728266,I,Above,Gable,0,5701,,33.25104805,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28328,NJBF000064405,125 N SURREY AVE,Ventnor City,NJ,39.3444095,-74.475782,RES1,3001,,16,NE,1930,1930,3102,1,1,1669.172273,1669.172273,3507,NO,16.23,30.92,1,0.46,6106,113.814309,123.555997,133.285817,139.802735,I,Above,Flat,0,5701,,23.57546959,0,0,,,,1,1,,0.03,nav,1,1930,1,, 28329,NJBF000064346,5251 WINCHESTER AVE,Ventnor City,NJ,39.34426517,-74.47211904,RES1,3001,,NaN,NE,1960,1960,3102,2,1,2361.50728,2361.50728,3507,NO,30.54,44.73,1,1.57,6106,113.896872,123.623195,133.357532,139.866177,I,Above,Flat,0,5701,,37.63503005,0,0,,,,1,1,,0.03,nav,1,1960,2,, 28330,NJBF000059676,115 S AVOLYN AVE,Ventnor City,NJ,39.33466216,-74.48279403,RES1,3001,,19,NE,2005,2005,3102,3,1,1302.622847,1302.622847,3505,NO,54.6,59.9,3,2.1,6106,113.790977,123.538488,133.259234,139.840795,I,Above,Hip,0,5701,,57.25036256,0,0,,,,1,1,,0.03,nav,1,2005,3,, 28331,NJBF000064335,5504 MONMOUTH AVE,Ventnor City,NJ,39.34424067,-74.47734807,RES1,3001,,17,NE,1956,1956,3102,1,1,1698.473523,1698.473523,3505,NO,22.92,32.89,3,4.35,6106,113.78199,123.529809,133.257747,139.778792,I,Above,Hip,0,5701,,27.90456234,0,0,,,,1,1,,0.03,nav,1,1956,1,, 28332,NJBF000064368,5603 MONMOUTH AVE,Ventnor City,NJ,39.34431812,-74.47798243,RES1,3001,,17,NE,1929,1929,3102,1,1,1130.334135,1130.334135,3505,NO,18.17,29.97,3,0.34,6106,113.766993,123.517617,133.244804,139.766641,I,Above,Gable,0,5701,,24.07193732,0,0,,,,1,1,,0.03,nav,1,1929,1,, 28333,NJBF000064416,30 N WEYMOUTH AVE,Ventnor City,NJ,39.34443492,-74.47195514,RES1,3001,,17,NE,1980,1980,3102,2,1,947.6173926,947.6173926,3507,NO,36.27,45.75,1,1.07,6106,113.898251,123.624272,133.358822,139.866165,I,Above,Hip,0,5701,,41.01102512,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28334,NJBF000059670,9 N WASHINGTON AVE,Ventnor City,NJ,39.3346497,-74.49232101,RES1,3001,,17,NE,1925,1925,3102,2,1,1858.116918,1858.116918,3505,NO,25.74,33.24,3,-1.02,6106,113.581212,123.369113,133.080205,139.65645,I,Above,Hip,0,5701,,29.49182329,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28335,NJBF000059558,5 N SWARTHMORE AVE,Ventnor City,NJ,39.33445828,-74.4914174,RES1,3001,,17,NE,1925,1925,3102,2,1,1360.051574,1360.051574,3505,NO,44.99,52.96,3,6.99,6106,113.603816,123.387327,133.099246,139.677389,I,Above,Hip,0,5701,,48.97346906,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28336,NJBF000059622,21 S NEWARK AVE,Ventnor City,NJ,39.33456234,-74.48640902,RES1,3001,,20,NE,2016,2016,3102,2,1,2155.49617,2155.49617,3505,NO,37.24,42.29,3,4.36,6110,113.712754,123.475232,133.192152,139.774361,I,Above,Gable,0,5701,,39.76120968,0,1.1,,,,1,1,,0.35,nav,1,2016,2,, 28337,NJBF000064444,228 N DUDLEY AVE,Ventnor City,NJ,39.3445045,-74.47984,RES1,3001,,17,NE,1962,1962,3102,2,1,1132.961308,1132.961308,3505,NO,27.82,42.05,3,1.45,6106,113.723542,123.482335,133.207344,139.731322,I,Above,Flat,0,5701,,34.93602762,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 28338,NJBF000064359,310 N CORNWALL AVE,Ventnor City,NJ,39.3442985,-74.4833195,RES1,3001,,17,NE,1958,1958,3102,1,1,1197.945568,1197.945568,3505,NO,22.42,28.62,3,8.09,6106,113.649384,123.4224,133.143461,139.67287,I,Above,Gable,0,5701,,25.52299225,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28339,NJBF000059665,6 S WYOMING AVE,Ventnor City,NJ,39.33464066,-74.48872292,RES1,3001,,NaN,NE,1969,0,3102,2,1,1556.391439,1556.391439,3505,NO,29.44,42.64,3,4.88,6106,113.66067,123.433179,133.147769,139.728009,I,Above,Gable,0,5701,,36.03790146,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28340,NJBF000064345,206 N OXFORD AVE,Ventnor City,NJ,39.34426483,-74.47874368,RES1,3001,,17,NE,1940,1940,3102,2,1,1042.791384,1042.791384,3505,NO,28.95,40.1,3,-2.81,6106,113.750877,123.504566,133.230855,139.754333,I,Above,Gable,0,5701,,34.52505472,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28341,NJBF000064204,305 N CAMBRIDGE AVE,Ventnor City,NJ,39.34388484,-74.48333996,RES1,3001,,17,NE,1958,1958,3102,2,1,1205.682427,1205.682427,3505,NO,28.87,42.42,3,0.68,6106,113.654386,123.426585,133.147632,139.679285,I,Above,Gable,0,5701,,35.64180008,0,0,,,,1,1,,0.03,nav,1,1958,2,, 28342,NJBF000064312,316 N CAMBRIDGE AVE,Ventnor City,NJ,39.34418409,-74.48410417,RES1,3001,,17,NE,1960,1960,3102,1,1,2103.192366,2103.192366,3505,NO,12.98,23.14,3,1.4,6106,113.633546,123.409643,133.129839,139.660562,I,Above,Hip,0,5701,,18.06384983,0,0,,,,1,1,,0.03,nav,1,1960,1,, 28343,NJBF000064336,22 S BATON ROUGE AVE,Ventnor City,NJ,39.3442412,-74.46693414,RES1,3001,,17,NE,1920,1920,3102,3,1,2107.825549,2107.825549,3504,NO,48,53.46,-4,0,6106,114.01115,123.716451,133.457468,139.950477,I,Above,Hip,0,5701,,50.73053425,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 28344,NJBF000064203,101 S BATON ROUGE AVE,Ventnor City,NJ,39.34388467,-74.4661629,RES1,3001,,17,NE,1910,1910,3102,3,3,1953.507515,1953.507515,3504,NO,42.67,53.62,-4,0,6106,114.032736,123.734178,133.476193,139.968235,I,Above,Flat,0,5701,,48.14414568,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 28345,NJBF000064361,321 N HARVARD AVE,Ventnor City,NJ,39.34430039,-74.48455577,RES1,3001,,17,NE,1962,1963,3102,2,1,1729.361755,1729.361755,3505,NO,23.05,28.91,3,1.99,6106,113.62202,123.400292,133.119988,139.650446,I,Above,Hip,0,5701,,25.97922604,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 28346,NJBF000064320,124 N SURREY AVE,Ventnor City,NJ,39.34419382,-74.47613238,RES1,3001,,17,NE,1958,1958,3102,1,1,1725.254175,1725.254175,3505,NO,18.75,26.08,3,5.11,6106,113.809419,123.55209,133.281485,139.80029,I,Above,Flat,0,5701,,22.4184035,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 28347,NJBF000064236,5707 MONMOUTH AVE,Ventnor City,NJ,39.34396468,-74.47867949,RES1,3001,,16,NE,1940,1940,3102,1,1,1435.319031,1435.319031,3505,NO,16.91,25.74,3,3.99,6106,113.756262,123.509026,133.235391,139.760363,I,Above,Hip,0,5701,,21.32601652,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28348,NJBF000064355,15 S OAKLAND AVE,Ventnor City,NJ,39.34429036,-74.46846695,RES1,3001,,NaN,NE,1928,1928,3102,3,3,1493.139021,1493.139021,3507,NO,56.46,65.09,1,0.28,6106,113.976843,123.688407,133.427418,139.925171,I,Above,Hip,0,5701,,60.77491872,0,1.1,,,,1,1,,0.03,nav,1,1928,3,, 28349,NJBF000064385,12 S MARION AVE,Ventnor City,NJ,39.34435966,-74.4679532,RES1,3001,,17,NE,1902,1902,3102,2,1,1887.25343,1887.25343,3504,NO,28.78,41.02,-4,0,6106,113.987217,123.696864,133.436549,139.932333,I,Above,Flat,0,5701,,34.89965526,0,0,,,,1,1,,0.03,nav,1,1902,2,, 28350,NJBF000064242,212 N DUDLEY AVE,Ventnor City,NJ,39.34398296,-74.47935896,RES1,3001,,16,NE,1950,1950,3102,1,1,923.891823,923.891823,3505,NO,21.72,28.27,3,3.79,6106,113.741019,123.496666,133.222236,139.748255,I,Above,Flat,0,5701,,24.99583917,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 28351,NJBF000064298,101 N LITTLE ROCK AVE,Ventnor City,NJ,39.34414512,-74.47225283,RES1,3001,,17,NE,1930,1930,3102,2,1,969.2025837,969.2025837,3507,NO,35.5,42.3,1,2.01,6106,113.895498,123.622108,133.356273,139.865885,I,Above,Flat,0,5701,,38.90309776,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28352,NJBF000064367,307 N BURGHLEY AVE,Ventnor City,NJ,39.34431705,-74.4819581,RES1,3001,,17,NE,1950,1950,3102,1,1,1430.012242,1430.012242,3505,NO,19.21,31.85,3,0.74,6106,113.679224,123.446523,133.16911,139.69697,I,Above,Flat,0,5701,,25.52905666,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 28353,NJBF000064248,5703 MONMOUTH AVE,Ventnor City,NJ,39.34399373,-74.47859944,RES1,3001,,17,NE,1940,1940,3102,1,1,1333.811126,1333.811126,3505,NO,16.27,29.88,3,3.07,6106,113.757645,123.510139,133.236597,139.761275,I,Above,Hip,0,5701,,23.07713911,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28354,NJBF000064291,218 N DUDLEY AVE,Ventnor City,NJ,39.34411964,-74.4795472,RES1,3001,,17,NE,1962,1962,3102,2,1,1426.80654,1426.80654,3505,NO,28.28,43.16,3,-0.59,6106,113.735064,123.491797,133.217149,139.742733,I,Above,Hip,0,5701,,35.71764154,0,0,,,,1,1,,0.03,nav,1,1962,2,, 28355,NJBF000064303,211 N DORSET AVE,Ventnor City,NJ,39.34415293,-74.47993834,RES1,3001,,17,NE,1927,1927,3102,2,1,1622.298676,1622.298676,3505,NO,39.26,51.96,3,7.85,6106,113.725998,123.484441,133.20934,139.735355,I,Above,Hip,0,5701,,45.60895614,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 28356,NJBF000064326,319 N HARVARD AVE,Ventnor City,NJ,39.34420551,-74.48447645,RES1,3001,,17,NE,1962,1962,3102,1,1,1764.432107,1764.432107,3505,NO,21.69,33.7,3,6.16,6106,113.62503,123.402757,133.122543,139.653443,I,Above,Hip,0,5701,,27.69488124,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 28357,NJBF000064212,110 N SURREY AVE,Ventnor City,NJ,39.34389837,-74.47582799,RES1,3001,,17,NE,1930,1930,3102,2,1,990.5266162,990.5266162,3505,NO,32.41,44.81,3,2.83,6106,113.820013,123.560782,133.290539,139.810237,I,Above,Gable,0,5701,,38.6136793,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28358,NJBF000064028,101 S AUSTIN AVE,Ventnor City,NJ,39.34337775,-74.46720895,RES3B,3001,,17,E,1920,1920,3303,3,1,1932.14563,1932.14563,3504,NO,36.97,42.77,-4,0,6106,114.016435,123.720949,133.461546,139.959469,I,Above,Hip,0,NaN,,39.87210693,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 28359,NJBF000064180,5 S HILLSIDE AVE,Ventnor City,NJ,39.34379602,-74.46989247,RES1,3001,,17,NE,1925,1925,3102,3,1,1324.087686,1324.087686,3507,NO,45.39,53.87,1,1.82,6106,113.952007,123.668253,133.405397,139.909941,I,Above,Hip,0,5701,,49.63151853,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 28360,NJBF000064207,13-15 N VICTORIA AVE,Ventnor City,NJ,39.34388861,-74.47252686,RES1,3001,,NaN,NE,1954,1972,3102,2,1,2378.157376,2378.157376,3507,NO,38.91,47.78,1,1.19,6106,113.89283,123.620003,133.353816,139.865458,I,Above,Hip,0,5701,,43.34849858,0,0,,,,1,1,,0.03,nav,1,1954,2,, 28361,NJBF000063972,3 N SURREY AVE,Ventnor City,NJ,39.34323338,-74.47292947,RES1,3001,,17,NE,1928,1928,3102,2,1,1414.78816,1414.78816,3505,NO,28.1,41.82,3,6.13,6106,113.892619,123.619994,133.353277,139.869316,I,Above,Hip,0,5701,,34.96193239,0,0,,,,1,1,,0.03,nav,1,1928,2,, 28362,NJBF000064011,,Ventnor City,NJ,39.3433285,-74.47718913,RES1,3001,,NaN,NE,1969,0,3102,2,1,1426.671751,1426.671751,3505,NO,37.63,43.27,3,5.62,6106,113.797529,123.542686,133.270798,139.79638,I,Above,Flat,0,5701,,40.44987027,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28363,NJBF000064001,20 S NASHVILLE AVE,Ventnor City,NJ,39.34331056,-74.469109,RES1,3001,,17,NE,1925,1925,3102,2,1,1388.934403,1388.934403,3505,NO,42.42,50.86,3,6.76,6106,113.97559,123.687603,133.425724,139.930172,I,Above,Hip,0,5701,,46.63906461,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28364,NJBF000064190,225 N DERBY AVE,Ventnor City,NJ,39.34382915,-74.48065851,RES1,3001,,16,NE,1940,1940,3102,1,1,997.8402566,997.8402566,3505,NO,14.19,25.55,3,0.52,6106,113.714352,123.475114,133.199184,139.727999,I,Above,Gable,0,5701,,19.87304364,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28365,NJBF000063915,18 S HILLSIDE AVE,Ventnor City,NJ,39.34307172,-74.46982846,RES1,3001,,NaN,NE,1920,0,3102,2,1,1755.597371,1755.597371,3505,NO,25.28,30.4,3,2.02,6110,113.962938,123.677329,133.41451,139.922358,I,Above,Flat,0,5701,,27.8373698,0,0,,,,1,1,,0.35,nav,1,1920,2,, 28366,NJBF000063788,110 S MARION AVE,Ventnor City,NJ,39.34269676,-74.46644254,RES3B,3001,,18,E,1920,1920,3303,2,1,2442.572424,2442.572424,3504,NO,37.7,48.59,-4,0,6106,114.042208,123.74214,133.483685,139.982091,I,Above,Hip,0,NaN,,43.14214753,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 28367,NJBF000063804,100 N OXFORD AVE,Ventnor City,NJ,39.34274782,-74.47754387,RES1,3001,,16,NE,1940,1940,3102,2,2,791.1840345,791.1840345,3505,NO,27.68,37.24,3,-2.73,6106,113.797374,123.542713,133.270385,139.799766,I,Above,Hip,0,5701,,32.45818563,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 28368,NJBF000063993,205 N DERBY AVE,Ventnor City,NJ,39.34329621,-74.48024273,RES1,3001,,16,NE,1929,1929,3102,1,1,1255.242944,1255.242944,3505,NO,12.27,22.51,3,0.94,6106,113.73058,123.488418,133.212962,139.744055,I,Above,Hip,0,5701,,17.38870376,0,0,,,,1,1,,0.03,nav,1,1929,1,, 28369,NJBF000063807,5511 WINCHESTER AVE,Ventnor City,NJ,39.34275017,-74.47488958,RES1,3001,,17,NE,1900,1900,3102,1,1,2285.479539,2285.479539,3505,NO,26.22,36.37,3,7.91,6106,113.855826,123.590182,133.321032,139.84456,I,Above,Hip,0,5701,,31.29469828,0,0,,,,1,1,,0.03,nav,1,1900,1,, 28370,NJBF000063782,,Ventnor City,NJ,39.34268593,-74.47678719,RES1,3001,,NaN,NE,1932,0,3102,2,1,1665.241688,1665.241688,3505,NO,26.42,35.39,3,-0.12,6106,113.814881,123.556937,133.285504,139.813669,I,Above,Flat,0,5701,,30.90684926,0,0,,,,1,1,,0.03,nav,1,1932,2,, 28371,NJBF000063964,22 S NASHVILLE AVE,Ventnor City,NJ,39.34322044,-74.46905681,RES1,3001,,NaN,NE,1925,0,3102,3,1,1688.649897,1688.649897,3505,NO,35.9,41.75,3,-1.6,6110,113.97793,123.689531,133.427713,139.93243,I,Above,Flat,0,5701,,38.82744843,0,1.1,,,,1,1,,0.35,nav,1,1925,3,, 28372,NJBF000063941,116 S VASSAR SQUARE,Ventnor City,NJ,39.34315319,-74.46530164,RES3B,3001,,14,E,1905,1905,3303,3,1,2365.465902,2365.465902,3504,NO,47.32,58.65,-4,0,6106,114.061234,123.757629,133.50073,139.99306,I,Above,Hip,0,NaN,,52.98618929,0,1.1,,,,1,1,,0.03,nav,1,1905,3,, 28373,NJBF000063950,5212 VENTNOR AVE,Ventnor City,NJ,39.34318414,-74.47120963,COM1,3001,,NaN,ME,1980,1980,3401,1,1,4825.776967,4825.776967,3507,NO,11.84,21.33,1,-0.2,6106,113.931081,123.651331,133.386763,139.898228,I,Above,Gable,0,NaN,,16.5842098,0,0,,,,1,1,,0.03,nav,1,1980,1,, 28374,NJBF000063895,1 N SURREY AVE,Ventnor City,NJ,39.34301729,-74.47278033,RES1,3001,,17,NE,1920,1920,3102,2,1,1641.964537,1641.964537,3505,NO,24.78,31.49,3,1.83,6106,113.898747,123.625033,133.358489,139.875218,I,Above,Hip,0,5701,,28.13400345,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28375,NJBF000059804,8 S ROSBOROUGH AVE,Ventnor City,NJ,39.3348795,-74.488006,RES1,3001,,17,NE,1930,1930,3102,2,1,1292.572644,1292.572644,3505,NO,21.72,26.73,3,0.62,6106,113.67318,123.443276,133.15863,139.738363,I,Above,Hip,0,5701,,24.22251457,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28376,NJBF000059006,12 S BALTIMORE AVE,Ventnor City,NJ,39.3333505,-74.490253,RES1,3001,,17,NE,1927,1927,3102,2,1,810.0921147,810.0921147,3505,NO,28.59,34.48,3,3.23,6106,113.644884,123.420407,133.133227,139.7172,I,Above,Flat,0,5701,,31.53459476,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 28377,NJBF000063819,2 S VICTORIA AVE,Ventnor City,NJ,39.34278203,-74.47219195,COM1,3001,,NaN,ME,1898,1898,3401,1,1,5837.158377,5837.158377,3507,NO,19.35,24.37,1,1.53,6106,113.914787,123.638144,133.372319,139.8886,I,Above,Gable,0,NaN,,21.8588788,0,0,,,,1,1,,0.03,nav,1,1898,1,, 28378,NJBF000063949,21 S HILLSIDE AVE,Ventnor City,NJ,39.34317741,-74.46938344,RES1,3001,,17,NE,1925,1925,3102,2,1,1414.275703,1414.275703,3505,NO,34.56,46.54,3,6.45,6110,113.971334,123.684157,133.421916,139.927869,I,Above,Hip,0,5701,,40.54981102,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 28379,NJBF000063805,7 N SOMERSET AVE,Ventnor City,NJ,39.34274854,-74.47511633,RES1,3001,,18,NE,2005,2005,3102,3,1,1832.451919,1832.451919,3505,NO,37.82,45.4,3,-2.01,6106,113.850862,123.586148,133.316724,139.8408,I,Above,Hip,0,5701,,41.61066899,0,0,,,,1,1,,0.03,nav,1,2005,3,, 28380,NJBF000063566,,Ventnor City,NJ,39.34207079,-74.47805863,RES1,3001,,NaN,NE,1969,0,3102,2,1,2570.202958,2570.202958,3505,NO,35.22,43.48,3,-0.68,6106,113.795003,123.540955,133.26799,139.801999,I,Above,Hip,0,5701,,39.35183457,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28381,NJBF000063815,24 S HILLSIDE AVE,Ventnor City,NJ,39.34276209,-74.46952991,RES1,3001,,17,NE,1950,1950,3102,2,1,2307.011344,2307.011344,3505,NO,22.35,35.75,3,-2.65,6110,113.973574,123.686067,133.423607,139.932009,I,Above,Flat,0,5701,,29.05226546,0,1.1,,,,1,1,,0.35,nav,1,1950,2,, 28382,NJBF000063651,5613 WINCHESTER AVE,Ventnor City,NJ,39.3423085,-74.4759365,RES1,3001,,17,NE,1908,1908,3102,1,1,1893.648817,1893.648817,3505,NO,23.63,32.02,3,7.04,6106,113.838606,123.576292,133.305854,139.834148,I,Above,Hip,0,5701,,27.82501481,0,0,,,,1,1,,0.03,nav,1,1908,1,, 28383,NJBF000063600,,Ventnor City,NJ,39.34214888,-74.48297993,RES1,3001,,NaN,NE,1962,0,3102,2,1,1267.880364,1267.880364,3505,NO,30.56,38.42,3,-2.85,6106,113.685379,123.45216,133.173596,139.714276,I,Above,Flat,0,5701,,34.48921825,0,0,,,,1,1,,0.03,nav,1,1962,2,, 28384,NJBF000063543,130 N DERBY AVE,Ventnor City,NJ,39.34201176,-74.47966567,RES1,3001,,17,NE,1998,1998,3102,2,1,1191.348049,1191.348049,3505,NO,36.89,51.49,3,4.4,6106,113.76035,123.512876,133.238044,139.7752,I,Above,Flat,0,5701,,44.1911883,0,0,,,,1,1,,0.03,nav,1,1998,2,, 28385,NJBF000063623,106 S AMHERST AVE,Ventnor City,NJ,39.34222474,-74.46891129,RES1,3001,,17,NE,1902,1902,3102,2,1,1734.767798,1734.767798,3505,NO,33.8,43.05,3,8.13,6106,113.994264,123.703048,133.441335,139.950291,I,Above,Flat,0,5701,,38.42324795,0,1.1,,,,1,1,,0.03,nav,1,1902,2,, 28386,NJBF000063539,408-410N WISSAHICKON AVE,Ventnor City,NJ,39.3419948,-74.49299539,RES1,3001,,45,NE,1972,1972,3102,2,2,1670.086595,1670.086595,3505,NO,33.25,45.59,3,8.8,6106,113.465913,123.275286,132.98633,139.529073,I,Above,Gable,0,5701,,39.42463147,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28387,NJBF000063739,106-108 N DUDLEY AVE,Ventnor City,NJ,39.34256333,-74.4783119,COM1,3001,,45,ME,1945,1945,3401,2,2,1200.144299,1200.144299,3507,NO,20.76,31.69,1,-0.93,6106,113.782892,123.531013,133.257775,139.789615,I,Above,Gable,0,NaN,,26.22378078,0,0,,,,1,1,,0.03,nav,1,1945,2,, 28388,NJBF000063751,104 S NASHVILLE AVE,Ventnor City,NJ,39.34259945,-74.46850242,RES3B,3001,,19,E,1913,2018,3303,3,1,1833.598815,1833.598815,3504,NO,36.03,48.66,-4,0,6106,113.998306,123.706283,133.445132,139.950987,I,Above,Gable,0,NaN,,42.3424961,0,0,,,,1,1,,0.03,nav,1,1913,3,, 28389,NJBF000063698,5609 WINCHESTER AVE,Ventnor City,NJ,39.342426,-74.475773,RES1,3001,,19,NE,1969,2018,3102,2,1,959.952664,959.952664,3505,NO,33.14,41.96,3,6.72,6106,113.840668,123.57794,133.307706,139.83501,I,Above,Hip,0,5701,,37.55132518,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 28390,NJBF000063520,5502 VENTNOR AVE,Ventnor City,NJ,39.3419305,-74.473921,RES1,3001,,18,NE,1985,1985,3102,1,1,2773.392126,2773.392126,3505,NO,21.2,30.84,3,4.31,6106,113.888023,123.616539,133.348517,139.873828,I,Above,Hip,0,5701,,26.01747359,0,0,,,,1,1,,0.03,nav,1,1985,1,, 28391,NJBF000063720,28 S WEYMOUTH AVE,Ventnor City,NJ,39.34250066,-74.47046334,RES1,3001,,17,NE,1925,1925,3102,2,2,1869.382752,1869.382752,3505,NO,40.29,48.63,3,1.37,6110,113.956517,123.672205,133.408535,139.921104,I,Above,Flat,0,5701,,44.45787895,0,0,,,,1,1,,0.35,nav,1,1925,2,, 28392,NJBF000063729,15 S VICTORIA AVE,Ventnor City,NJ,39.34253744,-74.47146599,RES1,3001,,17,NE,1925,1925,3102,2,1,1711.432915,1711.432915,3505,NO,32.24,40.31,3,1.95,6106,113.933991,123.653838,133.388905,139.904312,I,Above,Hip,0,5701,,36.27445953,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28393,NJBF000063724,107 S NASHVILLE AVE,Ventnor City,NJ,39.3425156,-74.46799002,RES3B,3001,,18,E,1900,1900,3303,3,2,2083.479097,2083.479097,3504,NO,40.82,50.16,-4,0,6106,114.010643,123.716373,133.455878,139.960417,I,Above,Hip,0,NaN,,45.49165169,0,0,,,,1,1,,0.03,nav,1,1900,3,, 28394,NJBF000063524,6815 FULTON AVE,Ventnor City,NJ,39.3419456,-74.49483453,RES1,3001,,17,NE,1972,1972,3102,2,1,1240.283326,1240.283326,3505,NO,42.9,55.83,3,6.1,6106,113.425807,123.243078,132.952368,139.494065,I,Above,Gable,0,5701,,49.36040135,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28395,NJBF000063462,16 S SURREY AVE,Ventnor City,NJ,39.34179498,-74.47231341,RES1,3001,,18,NE,1991,1991,3102,2,1,1028.666445,1028.666445,3505,NO,35.58,44.23,3,8.28,6106,113.925191,123.646812,133.380761,139.902315,I,Above,Flat,0,5701,,39.90572404,0,0,,,,1,1,,0.03,nav,1,1991,2,, 28396,NJBF000063298,203 N PRINCETON AVE,Ventnor City,NJ,39.34135815,-74.48380793,RES1,3001,,17,NE,1935,1935,3102,2,1,1036.650459,1036.650459,3505,NO,42.87,54.86,3,4.38,6106,113.677656,123.446115,133.166613,139.712309,I,Above,Hip,0,5701,,48.8631545,0,0,,,,1,1,,0.03,nav,1,1935,2,, 28397,NJBF000063274,113 N CAMBRIDGE AVE,Ventnor City,NJ,39.341298,-74.4815965,RES1,3001,,28,NE,1930,1930,3102,2,2,1947.239792,1947.239792,3505,NO,32.63,40.36,3,-1.8,6106,113.727292,123.486272,133.209213,139.753003,I,Above,Hip,0,5701,,36.49377631,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28398,NJBF000063270,,Ventnor City,NJ,39.34128505,-74.47261687,RES1,3001,,NaN,NE,1969,0,3102,2,1,2617.352288,2617.352288,3505,NO,28.64,36.69,3,1.87,6110,113.92528,123.646973,133.380498,139.905474,I,Above,Hip,0,5701,,32.66814037,0,0,,,,1,1,,0.35,nav,1,1969,2,, 28399,NJBF000063478,208 N HARVARD AVE,Ventnor City,NJ,39.34183067,-74.48322957,RES1,3001,,17,NE,1981,1981,3102,2,1,727.5332983,727.5332983,3505,NO,28.77,42.63,3,1.26,6106,113.684099,123.451208,133.172357,139.714998,I,Above,Gable,0,5701,,35.70054571,0,0,,,,1,1,,0.03,nav,1,1981,2,, 28400,NJBF000063550,3 S SUFFOLK AVE,Ventnor City,NJ,39.34202712,-74.4731918,RES1,3001,,18,NE,1920,1920,3102,3,1,2142.145581,2142.145581,3505,NO,41.38,53.09,3,4.47,6106,113.902778,123.628524,133.361404,139.884264,I,Above,Hip,0,5701,,47.23606436,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 28401,NJBF000063335,129 N HARVARD AVE,Ventnor City,NJ,39.34143959,-74.48245846,RES1,3001,,28,NE,1920,1920,3102,2,1,1558.97202,1558.97202,3505,NO,33.6,47.85,3,-2.32,6106,113.706368,123.46931,133.191297,139.7353,I,Above,Flat,0,5701,,40.72715598,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28402,NJBF000062883,5808 VENTNOR AVE,Ventnor City,NJ,39.34043437,-74.4770542,RES1,3001,,18,NE,1923,1923,3102,2,1,2131.120006,2131.120006,3505,NO,40.71,48.48,3,7.9,6106,113.838982,123.576964,133.305056,139.845782,I,Above,Hip,0,5701,,44.59414105,0,1.2,,,,1,1,,0.03,nav,1,1923,2,, 28403,NJBF000062655,9 S DORSET AVE,Ventnor City,NJ,39.33993005,-74.47661528,RES1,3001,,18,NE,1965,1965,3102,2,1,2463.525205,2463.525205,3505,NO,32.42,46.55,3,7.2,6106,113.855401,123.590371,133.318928,139.861349,I,Above,Hip,0,5701,,39.482887,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 28404,NJBF000062747,113 N PORTLAND AVE,Ventnor City,NJ,39.34013039,-74.48357114,RES1,3001,,17,NE,2016,2016,3102,1,1,1360.047576,1360.047576,3505,NO,14.43,21.36,3,1.8,6106,113.69937,123.463928,133.184612,139.73678,I,Above,Gable,0,5701,,17.89597954,0,0,,,,1,1,,0.03,nav,1,2016,1,, 28405,NJBF000062591,105 S OXFORD AVE,Ventnor City,NJ,39.3397755,-74.47397252,RES1,3001,,17,NE,1910,1910,3102,3,1,2032.882307,2032.882307,3505,NO,49.54,55.76,3,7.78,6106,113.915603,123.639312,133.37101,139.907443,I,Above,Hip,0,5701,,52.6500095,0,1.2,,,,1,1,,0.03,nav,1,1910,3,, 28406,NJBF000062688,108 N PRINCETON AVE,Ventnor City,NJ,39.34001279,-74.48321352,RES1,3001,,17,NE,1930,1930,3102,2,1,1304.123051,1304.123051,3505,NO,26.19,35.06,3,2.77,6106,113.708824,123.471593,133.192657,139.745167,I,Above,Hip,0,5701,,30.62347684,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28407,NJBF000062871,228 N WISSAHICKON AVE,Ventnor City,NJ,39.34039766,-74.49146449,RES1,3001,,17,NE,2014,2014,3102,2,1,1256.782792,1256.782792,3505,NO,41.07,47.09,3,2.11,6106,113.521329,123.32027,133.032791,139.584093,I,Above,Gable,0,5701,,44.07988974,0,0,,,,1,1,,0.03,nav,1,2014,2,, 28408,NJBF000062626,128 N BRYANT AVE,Ventnor City,NJ,39.3398552,-74.48599248,RES1,3001,,17,NE,1920,1920,3102,2,1,1303.961133,1303.961133,3505,NO,35.95,43.06,3,-2.43,6106,113.649624,123.423791,133.14186,139.696798,I,Above,Hip,0,5701,,39.50144902,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28409,NJBF000062606,10 S DORSET AVE,Ventnor City,NJ,39.33979814,-74.47711823,RES1,3001,,18,NE,1930,1930,3102,2,1,2142.831989,2142.831989,3505,NO,22.32,28.68,3,0.45,6106,113.846097,123.582836,133.310787,139.855051,I,Above,Hip,0,5701,,25.49934356,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 28410,NJBF000062372,5 N SACRAMENTO AVE,Ventnor City,NJ,39.33932016,-74.48146513,RES1,3001,,17,NE,1940,1940,3102,2,1,1252.524835,1252.524835,3505,NO,37.69,49.97,3,8.6,6106,113.756743,123.510477,133.233408,139.787877,I,Above,Flat,0,5701,,43.82779658,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28411,NJBF000062400,131 N AVOLYN AVE,Ventnor City,NJ,39.33937202,-74.4866038,RES1,3001,,17,NE,1940,1940,3102,1,1,2507.114778,2507.114778,3505,NO,17.12,26.72,3,4.15,6106,113.642637,123.418238,133.135627,139.693234,I,Above,Flat,0,5701,,21.91703257,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28412,NJBF000062418,218 N NEWARK AVE,Ventnor City,NJ,39.33940371,-74.49140181,RES1,3001,,17,NE,1950,1950,3102,1,1,1180.269076,1180.269076,3505,NO,10.23,23.19,3,-2.17,6106,113.536174,123.33242,133.044957,139.601067,I,Above,Gable,0,5701,,16.70876138,0,0,,,,1,1,,0.03,nav,1,1950,1,, 28413,NJBF000062393,10 S DERBY AVE,Ventnor City,NJ,39.33935233,-74.47799945,RES1,3001,,17,NE,1916,1916,3102,2,1,1793.244678,1793.244678,3505,NO,29.75,42.7,3,3.89,6106,113.83269,123.572018,133.298891,139.847437,I,Above,Hip,0,5701,,36.2249664,0,1.2,,,,1,1,,0.03,nav,1,1916,2,, 28414,NJBF000062348,128 N AVOLYN AVE,Ventnor City,NJ,39.33926884,-74.48696838,RES1,3001,,17,NE,1940,1940,3102,1,1,1136.586815,1136.586815,3505,NO,11.73,16.79,3,1.02,6106,113.635993,123.412893,133.129895,139.68807,I,Above,Hip,0,5701,,14.25942235,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28415,NJBF000062367,124 N NEW HAVEN AVE,Ventnor City,NJ,39.33931234,-74.48628604,RES1,3001,,17,NE,1927,1927,3102,2,1,931.8744832,931.8744832,3505,NO,32.9,39.81,3,-1.24,6106,113.650472,123.424572,133.142289,139.700162,I,Above,Gable,0,5701,,36.35463354,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 28416,NJBF000062429,126 N NEW HAVEN AVE,Ventnor City,NJ,39.33944719,-74.48641763,RES1,3001,,17,NE,1940,1940,3102,2,1,962.8759428,962.8759428,3505,NO,29.43,37.78,3,7.71,6106,113.64573,123.420721,133.138311,139.695497,I,Above,Hip,0,5701,,33.60415255,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28417,NJBF000062411,117 N NEW HAVEN AVE,Ventnor City,NJ,39.33939721,-74.48589372,RES1,3001,,17,NE,1920,1920,3102,2,1,1399.001873,1399.001873,3505,NO,23.81,29.9,3,0.83,6106,113.657977,123.430617,133.148754,139.70609,I,Above,Hip,0,5701,,26.85457587,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28418,NJBF000062459,112 N NEWPORT AVE,Ventnor City,NJ,39.33951189,-74.48495927,RES1,3001,,17,NE,1940,1940,3102,2,1,985.6984291,985.6984291,3505,NO,40.82,49.94,3,6.08,6106,113.677065,123.446013,133.165152,139.721534,I,Above,Flat,0,5701,,45.3780322,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28419,NJBF000062364,219 N LAFAYETTE AVE,Ventnor City,NJ,39.33930727,-74.49336196,RES1,3001,,17,NE,1979,1979,3102,2,1,1580.13515,1580.13515,3505,NO,37.76,45.9,3,3.9,6106,113.494144,123.298621,133.009263,139.564347,I,Above,Flat,0,5701,,41.83180533,0,0,,,,1,1,,0.03,nav,1,1979,2,, 28420,NJBF000062401,114 N BRYANT AVE,Ventnor City,NJ,39.33937388,-74.48557874,RES1,3001,,17,NE,1919,1919,3102,2,1,1080.714667,1080.714667,3505,NO,38.48,43.5,3,5.04,6106,113.665243,123.436488,133.154956,139.712321,I,Above,Hip,0,5701,,40.98647948,0,1.1,,,,1,1,,0.03,nav,1,1919,2,, 28421,NJBF000062434,121 N NEW HAVEN AVE,Ventnor City,NJ,39.33945518,-74.4859602,RES1,3001,,17,NE,1938,1938,3102,2,1,958.5522918,958.5522918,3505,NO,36.38,46.04,3,7.46,6106,113.655735,123.428797,133.146869,139.703916,I,Above,Hip,0,5701,,41.20763807,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 28422,NJBF000062359,228 N WYOMING AVE,Ventnor City,NJ,39.33928405,-74.49303274,RES1,3001,,17,NE,1945,1945,3102,1,1,1274.62454,1274.62454,3505,NO,21.29,32.14,3,2.2,6106,113.501735,123.30473,133.015684,139.571155,I,Above,Flat,0,5701,,26.7117888,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 28423,NJBF000062332,107 S DUDLEY AVE,Ventnor City,NJ,39.33923762,-74.4747427,RES1,3001,,16,NE,1950,1950,3102,2,1,2233.581354,2233.581354,3505,NO,38.93,50.28,3,3.91,6106,113.905886,123.631472,133.362171,139.903483,I,Above,Hip,0,5701,,44.60679147,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 28424,NJBF000066826,615 N SUFFOLK AVE,Ventnor City,NJ,39.35091675,-74.48181989,RES1,3001,,17,NE,1975,1975,3102,2,1,1964.691689,1964.691689,3507,NO,30.4,38.88,1,0.61,6106,113.59674,123.37663,133.09874,139.591401,I,Above,Flat,0,5701,,34.6402337,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28425,NJBF000058848,7318-20 VENTNOR AVE,Ventnor City,NJ,39.33305076,-74.49245101,RES1,3001,,NaN,NE,1960,1960,3102,3,1,2539.84228,2539.84228,3505,NO,59,70.47,3,3.09,6106,113.600646,123.384721,133.095373,139.677428,I,Above,Flat,0,5701,,64.73426157,0,0,,,,1,1,,0.03,nav,1,1960,3,, 28426,NJBF000066732,611 N SUFFOLK AVE,Ventnor City,NJ,39.35060745,-74.48163662,RES1,3001,,17,NE,1977,1977,3102,2,1,1417.772525,1417.772525,3507,NO,34.31,39.73,1,-0.11,6106,113.604742,123.383293,133.105669,139.599729,I,Above,Flat,0,5701,,37.02463925,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 28427,NJBF000066973,809 N DERBY AVE,Ventnor City,NJ,39.35150789,-74.48682233,RES1,3001,,17,NE,1974,1974,3101,2,1,1934.08967,1934.08967,3505,NO,41.45,48.02,3,4.6,6106,113.47839,123.280674,132.996982,139.491116,I,Above,Hip,0,5701,,44.73240218,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28428,NJBF000067244,715 N LITTLE ROCK AVE,Ventnor City,NJ,39.3527247,-74.48098183,RES3A,3001,,27,NE,1980,1980,3301,2,1,1138.284667,1138.284667,3505,NO,40.39,54.31,3,5.96,6106,113.592373,123.371915,133.094668,139.576853,I,Above,Flat,0,5701,,47.34860512,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28429,NJBF000062366,30 N PORTLAND AVE,Ventnor City,NJ,39.339312,-74.483364,RES1,3001,,17,NE,1912,1912,3102,2,1,1189.697821,1189.697821,3505,NO,29.8,43.71,3,4.22,6106,113.714967,123.476679,133.197519,139.753977,I,Above,Flat,0,5701,,36.75571466,0,1.1,,,,1,1,,0.03,nav,1,1912,2,, 28430,NJBF000066954,6004 BURK AVE,Ventnor City,NJ,39.35144363,-74.48822385,RES1,3001,,17,NE,1976,1976,3101,2,1,1575.694934,1575.694934,3505,NO,24.74,34.32,3,-0.78,6106,113.448098,123.256313,132.971101,139.466312,I,Above,Gable,0,5701,,29.53349967,0,0,,,,1,1,,0.03,nav,1,1976,2,, 28431,NJBF000066987,812 N DERBY AVE,Ventnor City,NJ,39.35160608,-74.48743655,RES1,3001,,17,NE,1977,1977,3101,2,1,1691.547652,1691.547652,3505,NO,29.03,42.42,3,-0.5,6106,113.4635,123.268608,132.984217,139.478202,I,Above,Flat,0,5701,,35.7252632,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 28432,NJBF000064265,5602 MONMOUTH AVE,Ventnor City,NJ,39.34405308,-74.47775598,RES1,3001,,16,NE,1940,1940,3102,1,1,1299.563426,1299.563426,3505,NO,12.32,24.49,3,-0.96,6106,113.775465,123.524573,133.252025,139.774853,I,Above,Gable,0,5701,,18.40690842,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28433,NJBF000063704,5501 VENTNOR AVE,Ventnor City,NJ,39.34243971,-74.47406833,RES1,3001,,18,NE,1922,1922,3102,3,1,2145.998483,2145.998483,3505,NO,58.94,73.2,3,3.18,6106,113.878027,123.608303,133.340137,139.863215,I,Above,Hip,0,5701,,66.06527985,0,1.1,,,,1,1,,0.03,nav,1,1922,3,, 28434,NJBF000062060,6517 WINCHESTER AVE,Ventnor City,NJ,39.338733,-74.4853275,RES1,3001,,17,NE,1928,1928,3102,2,1,692.7034056,692.7034056,3505,NO,27.41,40.99,3,-1.98,6106,113.679487,123.448091,133.166767,139.727463,I,Above,Hip,0,5701,,34.19660212,0,0,,,,1,1,,0.03,nav,1,1928,2,, 28435,NJBF000062003,112 N AVOLYN AVE,Ventnor City,NJ,39.3386235,-74.486476,RES1,3001,,45,NE,1940,1940,3102,2,2,1525.909835,1525.909835,3505,NO,28.05,41.09,3,2.01,6106,113.655619,123.428833,133.146289,139.707799,I,Above,Flat,0,5701,,34.57285851,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28436,NJBF000062005,4 S HARVARD AVE,Ventnor City,NJ,39.33862951,-74.48064117,RES1,3001,,17,NE,1928,1928,3102,2,1,1391.905995,1391.905995,3505,NO,34.86,48.42,3,-0.63,6106,113.784226,123.532822,133.256597,139.813758,I,Above,Hip,0,5701,,41.64152548,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 28437,NJBF000062077,128 N RICHARDS AVE,Ventnor City,NJ,39.33875736,-74.48802883,RES1,3001,,17,NE,1927,1927,3102,2,1,937.5458632,937.5458632,3505,NO,32.32,41.83,3,2.92,6106,113.619506,123.399674,133.115539,139.676265,I,Above,Gable,0,5701,,37.07397091,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 28438,NJBF000065367,6202 FULTON AVE,Ventnor City,NJ,39.34686908,-74.4865779,RES1,3001,,17,NE,1977,1977,3101,2,1,1879.314213,1879.314213,3505,NO,36.45,46.86,3,0.07,6106,113.543557,123.335901,133.053222,139.57137,I,Above,Gable,0,5701,,41.65506933,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 28439,NJBF000058136,104 S WASHINGTON AVE,Ventnor City,NJ,39.33176929,-74.49044814,RES1,3001,,18,NE,1920,1920,3102,2,1,2156.824974,2156.824974,3505,NO,34.18,43.01,3,4.46,6106,113.662729,123.434679,133.146934,139.736341,I,Above,Gable,0,5701,,38.59600225,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28440,NJBF000065325,313 N SUFFOLK AVE,Ventnor City,NJ,39.34674776,-74.47854391,RES1,3001,,17,NE,1960,1960,3102,2,1,1273.715057,1273.715057,3505,NO,35.13,49.39,3,0.77,6106,113.722816,123.480897,133.207348,139.717262,I,Above,Gable,0,5701,,42.25899773,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 28441,NJBF000062018,22 N NEWPORT AVE,Ventnor City,NJ,39.33865497,-74.48429771,COM1,3001,,17,ME,1900,1900,3401,2,1,1222.304421,1222.304421,3507,NO,28.67,37.08,1,0.33,6106,113.703251,123.467303,133.187067,139.74773,I,Above,Hip,0,NaN,,32.87259811,0,0,,,,1,1,,0.03,nav,1,1900,2,, 28442,NJBF000061968,9 S CAMBRIDGE AVE,Ventnor City,NJ,39.33855942,-74.47931234,RES1,3001,,18,NE,1930,1930,3102,3,1,2293.154448,2293.154448,3505,NO,54.86,60.34,3,0.72,6106,113.814465,123.557334,133.282601,139.837997,I,Above,Hip,0,5701,,57.60041949,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 28443,NJBF000061977,6900 VENTNOR GDNS PL,Ventnor City,NJ,39.33857859,-74.49013596,RES1,3001,,17,NE,1958,1958,3102,2,1,1801.720241,1801.720241,3505,NO,41.18,50.81,3,8.79,6106,113.575382,123.364132,133.077858,139.638672,I,Above,Flat,0,5701,,45.99482979,0,0,,,,1,1,,0.03,nav,1,1958,2,, 28444,NJBF000061959,,Ventnor City,NJ,39.33854735,-74.4754648,RES1,3001,,NaN,NE,1969,0,3102,2,1,2573.678431,2573.678431,3505,NO,25.67,39.3,3,-1.04,6106,113.899305,123.62619,133.35593,139.902751,I,Above,Hip,0,5701,,32.48330792,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28445,NJBF000060710,231 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33643203,-74.49532133,RES1,3001,,17,NE,1900,1900,3102,3,1,1215.807539,1215.807539,3505,NO,33.98,45.38,3,-2.66,6106,113.490287,123.295875,133.004443,139.569698,I,Above,Flat,0,5701,,39.67946938,0,0,,,,1,1,,0.03,nav,1,1900,3,, 28446,NJBF000061901,307 WINDSOR DRIVE,Ventnor City,NJ,39.33843864,-74.49379542,RES1,3001,,17,NE,1980,1980,3102,2,1,1936.654302,1936.654302,3505,NO,30.17,43.68,3,4.24,6106,113.496413,123.300589,133.010766,139.569347,I,Above,Hip,0,5701,,36.92303977,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 28447,NJBF000061911,6811 MONMOUTH AVE,Ventnor City,NJ,39.3384616,-74.48955484,RES1,3001,,45,NE,1960,1960,3102,2,2,2118.755639,2118.755639,3505,NO,28.29,37.9,3,3.69,6106,113.589813,123.375777,133.090072,139.651751,I,Above,Gable,0,5701,,33.09445731,0,0,,,,1,1,,0.03,nav,1,1960,2,, 28448,NJBF000061936,114 N TROY AVE,Ventnor City,NJ,39.3385102,-74.48710372,RES1,3001,,17,NE,1940,1940,3102,2,1,1348.128353,1348.128353,3505,NO,33.73,45.96,3,-0.11,6106,113.64329,123.418898,133.13569,139.697795,I,Above,Hip,0,5701,,39.84287598,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28449,NJBF000061889,11 S CAMBRIDGE AVE,Ventnor City,NJ,39.33842501,-74.47927134,RES1,3001,,18,NE,1930,1930,3102,3,1,1674.254032,1674.254032,3505,NO,61.45,70.02,3,3.35,6106,113.81718,123.559548,133.284844,139.840901,I,Above,Hip,0,5701,,65.73736797,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 28450,NJBF000061956,7 S HARVARD AVE,Ventnor City,NJ,39.33854211,-74.48009792,RES1,3001,,17,NE,1929,1929,3102,3,1,1786.415182,1786.415182,3505,NO,36.72,49.09,3,4.37,6106,113.79738,123.543489,133.267863,139.824683,I,Above,Hip,0,5701,,42.90564324,0,1.1,,,,1,1,,0.03,nav,1,1929,3,, 28451,NJBF000062230,6412 WINCHESTER AVE,Ventnor City,NJ,39.33904233,-74.4836967,RES1,3001,,17,NE,1941,1941,3102,2,1,1993.754897,1993.754897,3505,NO,39.52,47.66,3,7.18,6106,113.71127,123.47373,133.194183,139.752365,I,Above,Flat,0,5701,,43.59252125,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 28452,NJBF000059378,7114 VENTNOR AVE,Ventnor City,NJ,39.334134,-74.4901325,RES1,3001,,43,NE,1940,1940,3102,2,2,1012.494046,1012.494046,3505,NO,41,48.91,3,4.97,6106,113.636626,123.413775,133.126875,139.707857,I,Above,Hip,0,5701,,44.95581598,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28453,NJBF000061738,320-322 WALDON DRIVE,Ventnor City,NJ,39.33817102,-74.49521577,RES1,3001,,45,NE,1970,1970,3102,2,2,2055.373572,2055.373572,3505,NO,37.87,47.42,3,2.81,6106,113.468661,123.278314,132.98715,139.545358,I,Above,Gable,0,5701,,42.64432722,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28454,NJBF000061572,123 N NEWARK AVE,Ventnor City,NJ,39.33788251,-74.48904055,RES1,3001,,17,NE,1930,1930,3102,1,1,1281.961792,1281.961792,3505,NO,20.35,29.96,3,3.46,6106,113.609063,123.391371,133.106124,139.670874,I,Above,Flat,0,5701,,25.15506887,0,1.2,,,,1,1,,0.03,nav,1,1930,1,, 28455,NJBF000061698,,Ventnor City,NJ,39.33810222,-74.47637999,RES1,3001,,NaN,NE,1969,0,3102,2,1,2471.156526,2471.156526,3505,NO,29.34,37.55,3,7.28,6106,113.885185,123.614755,133.343347,139.894867,I,Above,Hip,0,5701,,33.44568889,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28456,NJBF000061860,102 S DERBY AVE,Ventnor City,NJ,39.33838717,-74.47751403,RES1,3001,,18,NE,1930,1930,3102,2,1,618.3396432,618.3396432,3505,NO,33.93,46.89,3,2.12,6106,113.856379,123.591346,133.318657,139.871362,I,Above,Hip,0,5701,,40.41437105,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 28457,NJBF000061757,8 N NEWPORT AVE,Ventnor City,NJ,39.33819423,-74.48394196,COM1,3001,,17,ME,1900,1900,3401,2,1,1375.741353,1375.741353,3507,NO,41.04,52.72,1,2.31,6106,113.717359,123.478765,133.19886,139.761815,I,Above,Hip,0,NaN,,46.88059387,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 28458,NJBF000061642,110 S DERBY AVE,Ventnor City,NJ,39.33800079,-74.47694392,RES1,3001,,21,NE,2009,2009,3102,3,1,2698.640812,2698.640812,3505,NO,34.6,46.91,3,0.21,6106,113.874141,123.605796,133.333713,139.887157,I,Above,Flat,0,5701,,40.75365475,0,0,,,,1,1,,0.03,nav,1,2009,3,, 28459,NJBF000061715,108 S DERBY AVE,Ventnor City,NJ,39.33813841,-74.4770143,RES1,3001,,19,NE,1920,1920,3102,3,1,1995.424367,1995.424367,3505,NO,48.6,55.12,3,4.88,6106,113.870748,123.603031,133.330887,139.88377,I,Above,Hip,0,5701,,51.86039045,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 28460,NJBF000061310,29 N BUFFALO AVE,Ventnor City,NJ,39.33741686,-74.48720207,RES1,3001,,17,NE,1950,1950,3102,2,1,1240.815704,1240.815704,3505,NO,43.98,53.35,3,8.57,6106,113.656024,123.429303,133.145872,139.713561,I,Above,Hip,0,5701,,48.66417026,0,0.1,,,,1,1,,0.03,nav,1,1950,2,, 28461,NJBF000060574,13 S TROY AVE,Ventnor City,NJ,39.33621659,-74.48478764,RES1,3001,,45,NE,1964,1964,3102,2,2,1659.201105,1659.201105,3505,NO,24.33,30.72,3,3.15,6106,113.725685,123.485654,133.204566,139.778515,I,Above,Hip,0,5701,,27.52535526,0,0,,,,1,1,,0.03,nav,1,1964,2,, 28462,NJBF000061426,111 S CORNWALL AVE,Ventnor City,NJ,39.33761144,-74.47726234,RES1,3001,,19,NE,1925,1925,3102,3,1,6605.073729,6605.073729,3505,NO,40.84,52.99,3,5.29,6106,113.872425,123.60443,133.331915,139.888196,I,Above,Hip,0,5701,,46.9154704,0,0,,,,1,1,,0.03,nav,1,1925,3,, 28463,NJBF000061265,200 N LAFAYETTE AVE,Ventnor City,NJ,39.33734314,-74.49174237,RES1,3001,,17,NE,1968,1968,3102,1,1,1925.759682,1925.759682,3505,NO,14.49,25.07,3,3.1,6106,113.556802,123.349321,133.061353,139.626779,I,Above,Hip,0,5701,,19.7825328,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 28464,NJBF000061532,6501 VENTNOR AVE,Ventnor City,NJ,39.337801,-74.483569,COM1,3001,,NaN,ME,1902,1902,3401,1,1,3146.21885,3146.21885,3507,NO,17.37,30.64,1,-0.01,6106,113.730926,123.489777,133.210225,139.775082,I,Above,Flat,0,NaN,,24.00520007,0,0,,,,1,1,,0.03,nav,1,1902,1,, 28465,NJBF000060530,6511 ATLANTIC AVE,Ventnor City,NJ,39.33614495,-74.48331646,RES1,3001,,18,NE,1930,1930,3102,2,1,2935.178758,2935.178758,3505,NO,27.95,36.83,3,-0.43,6106,113.759107,123.512684,133.233153,139.806898,I,Above,Flat,0,5701,,32.38700866,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28466,NJBF000060990,119 N LAFAYETTE AVE,Ventnor City,NJ,39.3368605,-74.49084084,RES1,3001,,17,NE,1930,1930,3102,1,1,1367.47173,1367.47173,3505,NO,20.78,28.72,3,5.93,6106,113.583318,123.370723,133.083574,139.651969,I,Above,Hip,0,5701,,24.75035449,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 28467,NJBF000060956,103 N WYOMING AVE,Ventnor City,NJ,39.33681468,-74.4898833,RES1,3001,,17,NE,1992,1992,3102,1,1,1776.722536,1776.722536,3505,NO,15.17,28.51,3,3.58,6106,113.605099,123.38828,133.102066,139.671427,I,Above,Hip,0,5701,,21.84182522,0,0,,,,1,1,,0.03,nav,1,1992,1,, 28468,NJBF000061042,6903 WINCHESTER AVE,Ventnor City,NJ,39.33695912,-74.48887918,RES1,3001,,45,NE,1940,1940,3102,2,2,966.9818234,966.9818234,3505,NO,25.92,37.86,3,0.12,6106,113.625284,123.404543,133.119349,139.68867,I,Above,Gable,0,5701,,31.88958943,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28469,NJBF000065181,11 N VASSAR SQUARE,Ventnor City,NJ,39.3463225,-74.46742483,RES3A,3001,,17,NE,1935,1935,3301,2,1,1333.307375,1333.307375,3505,NO,25.3,33.26,3,1.24,6106,113.973249,123.684924,133.425364,139.910188,I,Above,Hip,0,5701,,29.28009266,0,0,,,,1,1,,0.03,nav,1,1935,2,, 28470,NJBF000061067,,Ventnor City,NJ,39.33700607,-74.48031664,RES1,3001,,NaN,NE,1969,0,3102,2,1,1494.118347,1494.118347,3505,NO,37.5,47.18,3,1.04,6110,113.813401,123.556599,133.280504,139.846166,I,Above,Gable,0,5701,,42.34097461,0,0,,,,1,1,,0.35,nav,1,1969,2,, 28471,NJBF000061100,23 N WISSAHICKON AVE,Ventnor City,NJ,39.33705049,-74.48766684,RES1,3001,,17,NE,1912,1912,3102,2,1,744.2783026,744.2783026,3505,NO,26.84,36.74,3,-2.35,6106,113.650783,123.425106,133.141151,139.710566,I,Above,Hip,0,5701,,31.79330675,0,0,,,,1,1,,0.03,nav,1,1912,2,, 28472,NJBF000060869,20 S NEWPORT AVE,Ventnor City,NJ,39.33667193,-74.48314167,RES1,3001,,17,NE,1926,1926,3102,3,1,811.292029,811.292029,3505,NO,54.64,63.65,3,1.2,6106,113.75573,123.509927,133.230672,139.801413,I,Above,Flat,0,5701,,59.14834599,0,1.2,,,,1,1,,0.03,nav,1,1926,3,, 28473,NJBF000060916,18 N BUFFALO AVE,Ventnor City,NJ,39.3367447,-74.48718685,RES1,3001,,17,NE,1940,1940,3102,1,1,2242.637708,2242.637708,3505,NO,15.04,20.5,3,-2.72,6106,113.665551,123.437049,133.153543,139.724633,I,Above,Gable,0,5701,,17.76898205,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 28474,NJBF000061110,26 N BUFFALO AVE,Ventnor City,NJ,39.33707292,-74.48742583,RES1,3001,,18,NE,1940,1940,3102,2,1,925.5790202,925.5790202,3505,NO,22.05,28.12,3,-1.6,6106,113.655786,123.429142,133.145436,139.71481,I,Above,Gable,0,5701,,25.08412673,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28475,NJBF000061064,24 N BUFFALO AVE,Ventnor City,NJ,39.3370008,-74.48736932,RES1,3001,,17,NE,1940,1940,3102,2,1,1113.607358,1113.607358,3505,NO,27.61,39.1,3,-0.26,6106,113.658029,123.430958,133.147301,139.717053,I,Above,Gable,0,5701,,33.35264708,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28476,NJBF000061008,29 N NEWARK AVE,Ventnor City,NJ,39.33689806,-74.48824924,RES1,3001,,NaN,NE,1940,1940,3102,2,1,1848.465905,1848.465905,3505,NO,22.28,28.05,3,-1.69,6106,113.640023,123.416437,133.13187,139.701806,I,Above,Hip,0,5701,,25.16649415,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28477,NJBF000060923,108 S SACRAMENTO AVE,Ventnor City,NJ,39.33675978,-74.47986852,RES1,3001,,19,NE,1920,1920,3102,3,1,1596.245995,1596.245995,3505,NO,50.08,56.84,3,6.72,6106,113.826615,123.56732,133.291686,139.857976,I,Above,Hip,0,5701,,53.45776288,0,0,,,,1,1,,0.03,nav,1,1920,3,, 28478,NJBF000061063,104 S SACRAMENTO AVE,Ventnor City,NJ,39.33699516,-74.48004526,RES1,3001,,17,NE,1920,1920,3102,3,1,1488.300539,1488.300539,3505,NO,39.54,52.44,3,4.71,6106,113.819539,123.561574,133.285782,139.851066,I,Above,Gable,0,5701,,45.98808543,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 28479,NJBF000061122,100 S SACRAMENTO AVE,Ventnor City,NJ,39.33709974,-74.48014649,RES1,3001,,17,NE,1920,1920,3102,2,1,1796.705068,1796.705068,3505,NO,40.29,48.07,3,5.31,6106,113.815886,123.558608,133.282719,139.847587,I,Above,Hip,0,5701,,44.17628884,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28480,NJBF000060987,102 N ROSBOROUGH AVE,Ventnor City,NJ,39.33685608,-74.4895832,RES1,3001,,17,NE,2010,2010,3102,3,1,1450.54968,1450.54968,3505,NO,33.84,43.72,3,1.63,6106,113.611158,123.393161,133.107251,139.676629,I,Above,Flat,0,5701,,38.78254185,0,0,,,,1,1,,0.03,nav,1,2010,3,, 28481,NJBF000061062,7 N RICHARDS AVE,Ventnor City,NJ,39.33699322,-74.48616616,RES1,3001,,17,NE,1930,1930,3102,2,1,1281.309395,1281.309395,3505,NO,33.17,42.26,3,2.08,6106,113.684676,123.452473,133.170057,139.740044,I,Above,Hip,0,5701,,37.71481929,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28482,NJBF000061075,215-217 N SWARTHMORE AVE,Ventnor City,NJ,39.33701801,-74.49389996,RES1,3001,,45,NE,1960,1960,3102,2,2,1951.258787,1951.258787,3505,NO,31.19,40.35,3,4.01,6106,113.513595,123.314576,133.024523,139.589142,I,Above,Gable,0,5701,,35.7679754,0,0,,,,1,1,,0.03,nav,1,1960,2,, 28483,NJBF000060910,207-209 N SWARTHMORE AVE,Ventnor City,NJ,39.33672951,-74.4936728,RES1,3001,,45,NE,1971,1971,3102,2,2,1734.911173,1734.911173,3505,NO,38.14,52.59,3,0.63,6106,113.522578,123.321827,133.031954,139.598049,I,Above,Flat,0,5701,,45.36465426,0,0,,,,1,1,,0.03,nav,1,1971,2,, 28484,NJBF000061070,19 N BUFFALO AVE,Ventnor City,NJ,39.33700969,-74.48690293,RES1,3001,,17,NE,1932,1932,3102,2,1,1064.793899,1064.793899,3505,NO,34.2,48.67,3,7.53,6106,113.668187,123.439157,133.15598,139.725796,I,Above,Flat,0,5701,,41.43533894,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 28485,NJBF000060919,6306 ATLANTIC AVE,Ventnor City,NJ,39.33675397,-74.48085387,RES1,3001,,17,NE,1942,1942,3102,2,1,1397.038418,1397.038418,3505,NO,29.68,42.43,3,2.95,6110,113.80501,123.549815,133.27308,139.840944,I,Above,Hip,0,5701,,36.0527462,0,1.1,,,,1,1,,0.35,nav,1,1942,2,, 28486,NJBF000061148,28 N BUFFALO AVE,Ventnor City,NJ,39.33714193,-74.48747133,RES1,3001,,18,NE,1932,1932,3102,2,1,1093.117597,1093.117597,3505,NO,27.31,40.57,3,5.98,6106,113.653849,123.427572,133.14383,139.712844,I,Above,Gable,0,5701,,33.93874493,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 28487,NJBF000064935,412 N CORNWALL AVE,Ventnor City,NJ,39.34571151,-74.48447131,RES1,3001,,17,NE,1958,1958,3102,1,1,1867.615233,1867.615233,3505,NO,22.83,30.69,3,7.11,6106,113.605329,123.386265,133.105986,139.628852,I,Above,Hip,0,5701,,26.75917374,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28488,NJBF000065021,5501 CALVERT AVE,Ventnor City,NJ,39.34592716,-74.47828848,RES1,3001,,45,NE,1930,1930,3102,2,2,1297.775223,1297.775223,3505,NO,35.52,40.98,3,4.27,6106,113.739161,123.49448,133.221274,139.735101,I,Above,Hip,0,5701,,38.24858021,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 28489,NJBF000064517,211 N OXFORD AVE,Ventnor City,NJ,39.34468233,-74.47862907,RES1,3001,,17,NE,1940,1940,3102,2,1,1670.028928,1670.028928,3505,NO,27.79,42.15,3,-2.54,6106,113.747933,123.502042,133.228464,139.749513,I,Above,Gable,0,5701,,34.96914746,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28490,NJBF000064779,,Ventnor City,NJ,39.34530147,-74.48084991,COM1,3003,,NaN,ME,1970,0,3401,3,1,20149.04553,20149.04553,3507,NO,37.48,44.93,1,2.09,6106,113.690771,123.455512,133.179335,139.700497,I,Above,Flat,0,NaN,,41.20536875,0,0,,,,1,1,,0.03,nav,1,1970,3,, 28491,NJBF000064533,205 N SOMERSET AVE,Ventnor City,NJ,39.34472745,-74.47779115,RES1,3001,,17,NE,1934,1934,3102,1,1,954.7734986,954.7734986,3505,NO,13.74,20.49,3,1.57,6106,113.765833,123.516544,133.243955,139.763261,I,Above,Gable,0,5701,,17.11375813,0,0,,,,1,1,,0.03,nav,1,1934,1,, 28492,NJBF000064830,408 N CORNWALL AVE,Ventnor City,NJ,39.34543991,-74.48422831,RES1,3001,,17,NE,1956,1956,3102,1,1,1456.506278,1456.506278,3505,NO,14.6,21.12,3,1.76,6106,113.614271,123.393599,133.113605,139.637721,I,Above,Hip,0,5701,,17.85993318,0,0,,,,1,1,,0.03,nav,1,1956,1,, 28493,NJBF000064836,322 N DORSET AVE,Ventnor City,NJ,39.34545046,-74.48160564,RES1,3001,,17,NE,1958,1958,3102,1,1,1350.581913,1350.581913,3505,NO,12.74,20.61,3,-2.25,6106,113.672114,123.440355,133.163307,139.684653,I,Above,Gable,0,5701,,16.67788169,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28494,NJBF000064782,,Ventnor City,NJ,39.34531151,-74.48052,RES1,3001,,NaN,NE,1969,0,3102,2,1,1462.022537,1462.022537,3505,NO,26.06,38.16,3,2.16,6106,113.697917,123.461293,133.185496,139.706141,I,Above,Flat,0,5701,,32.10991558,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28495,NJBF000064861,24 N OAKLAND AVE,Ventnor City,NJ,39.34549933,-74.47009555,RES1,3001,,17,NE,1910,1910,3102,2,1,1303.401498,1303.401498,3507,NO,21.15,34.81,1,-0.93,6106,113.925241,123.645968,133.382908,139.879746,I,Above,Hip,0,5701,,27.97921488,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 28496,NJBF000064761,5707 CALVERT AVE,Ventnor City,NJ,39.34527607,-74.47965742,RES1,3001,,17,NE,1970,1970,3102,2,1,1266.379542,1266.379542,3505,NO,45.42,52.61,3,6.78,6106,113.717449,123.477126,133.202332,139.72189,I,Above,Hip,0,5701,,49.01506294,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28497,NJBF000064348,5605 MONMOUTH AVE,Ventnor City,NJ,39.34426665,-74.47804347,RES1,3001,,17,NE,1929,1929,3102,1,1,1044.338354,1044.338354,3505,NO,25.49,30.76,3,8.04,6106,113.766318,123.517086,133.2442,139.766422,I,Above,Gable,0,5701,,28.12479171,0,0,,,,1,1,,0.03,nav,1,1929,1,, 28498,NJBF000064311,,Ventnor City,NJ,39.34418263,-74.47907421,RES1,3001,,NaN,NE,1969,0,3102,2,1,1256.059913,1256.059913,3505,NO,35.02,41.42,3,-0.61,6106,113.744674,123.499564,133.225467,139.749943,I,Above,Flat,0,5701,,38.22106009,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28499,NJBF000064306,309 N CAMBRIDGE AVE,Ventnor City,NJ,39.3441635,-74.483561,RES1,3001,,17,NE,1958,1958,3102,1,1,1326.700283,1326.700283,3505,NO,21.47,29.18,3,6,6106,113.645815,123.419563,133.14036,139.670719,I,Above,Hip,0,5701,,25.32622868,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28500,NJBF000064022,308 N HARVARD AVE,Ventnor City,NJ,39.3433556,-74.48428747,RES1,3001,,16,NE,1960,1960,3102,1,1,2231.865885,2231.865885,3505,NO,24.64,37.62,3,5.71,6106,113.640456,123.415503,133.135512,139.670818,I,Above,Hip,0,5701,,31.13362208,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 28501,NJBF000060870,209 N WASHINGTON AVE,Ventnor City,NJ,39.33667216,-74.49439949,RES1,3001,,17,NE,1950,1950,3102,2,1,1279.717241,1279.717241,3505,NO,31.09,45.84,3,2.91,6106,113.50734,123.309573,133.019017,139.584482,I,Above,Hip,0,5701,,38.46240266,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 28502,NJBF000060799,220 N WASHINGTON AVE,Ventnor City,NJ,39.33655815,-74.49481467,RES1,3001,,17,NE,1950,1950,3102,2,1,1120.832382,1120.832382,3505,NO,27.24,41.95,3,3.38,6106,113.499724,123.303455,133.012502,139.57791,I,Above,Gable,0,5701,,34.59965361,0,0,,,,1,1,,0.03,nav,1,1950,2,, 28503,NJBF000063839,602 KINGSLEY DRIVE,Ventnor City,NJ,39.34285155,-74.49397239,RES1,3001,,17,NE,1976,1976,3102,1,1,1804.436098,1804.436098,3505,NO,25.57,39.71,3,8.63,6106,113.432774,123.248389,132.95847,139.496515,I,Above,Hip,0,5701,,32.63789376,0,0,,,,1,1,,0.03,nav,1,1976,1,, 28504,NJBF000063778,27 S WEYMOUTH AVE,Ventnor City,NJ,39.34267896,-74.47011111,RES1,3001,,17,NE,1925,1925,3102,2,1,1688.158137,1688.158137,3505,NO,24.73,31.75,3,-2.4,6110,113.961902,123.676562,133.413353,139.923974,I,Above,Hip,0,5701,,28.23751138,0,0,,,,1,1,,0.35,nav,1,1925,2,, 28505,NJBF000063792,9 S VICTORIA AVE,Ventnor City,NJ,39.34270799,-74.47162282,RES1,3001,,17,NE,1920,1920,3102,2,1,1326.670132,1326.670132,3505,NO,25.38,34.38,3,3.22,6106,113.928279,123.64915,133.384031,139.899052,I,Above,Hip,0,5701,,29.87823547,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28506,NJBF000063756,11 S VICTORIA AVE,Ventnor City,NJ,39.3426225,-74.4715485,RES1,3001,,17,NE,1925,1925,3102,2,1,1095.814086,1095.814086,3505,NO,43.45,55.73,3,7.68,6106,113.931065,123.651437,133.386406,139.901634,I,Above,Hip,0,5701,,49.58932938,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28507,NJBF000063785,5306 VENTNOR AVE,Ventnor City,NJ,39.34269286,-74.472505,RES1,3001,,18,NE,1910,1910,3102,3,1,3082.564373,3082.564373,3505,NO,52.91,60.02,3,7.7,6106,113.909077,123.633514,133.367293,139.884897,I,Above,Hip,0,5701,,56.46768564,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 28508,NJBF000063766,,Ventnor City,NJ,39.3426484,-74.48023824,RES1,3001,,NaN,NE,1940,0,3102,2,1,1715.915993,1715.915993,3505,NO,39.75,54.29,3,1.55,6106,113.739278,123.495644,133.22018,139.754772,I,Above,Hip,0,5701,,47.01994554,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28509,NJBF000063817,110 N DORSET AVE,Ventnor City,NJ,39.34277587,-74.47945112,RES1,3001,,17,NE,1930,1930,3102,1,1,1438.079673,1438.079673,3505,NO,18.14,27.73,3,1.36,6106,113.754945,123.508302,133.233748,139.766419,I,Above,Flat,0,5701,,22.93401472,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 28510,NJBF000063858,118 N DUDLEY AVE,Ventnor City,NJ,39.3429044,-74.47854391,COM1,3001,,17,ME,1940,1940,3401,2,1,1226.041684,1226.041684,3507,NO,30.84,44.35,1,1.15,6106,113.773257,123.523111,133.249614,139.780043,I,Above,Hip,0,NaN,,37.59340708,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28511,NJBF000063646,214 N CAMBRIDGE AVE,Ventnor City,NJ,39.34229924,-74.48288082,RES1,3001,,16,NE,1954,1954,3102,1,1,2238.080231,2238.080231,3505,NO,20.2,29.92,3,4.89,6106,113.685568,123.452273,133.173821,139.713592,I,Above,Hip,0,5701,,25.05910288,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 28512,NJBF000063608,210 N CAMBRIDGE AVE,Ventnor City,NJ,39.34218126,-74.48277271,RES1,3001,,17,NE,1927,1927,3102,2,1,1249.386755,1249.386755,3505,NO,33.45,40.51,3,-0.69,6106,113.689525,123.455504,133.177169,139.717471,I,Above,Hip,0,5701,,36.98168881,0,0,,,,1,1,,0.03,nav,1,1927,2,, 28513,NJBF000063563,215 N SACRAMENTO AVE,Ventnor City,NJ,39.34206772,-74.48367949,RES1,3001,,16,NE,1930,1930,3102,2,1,1562.255751,1562.255751,3505,NO,26.5,41.12,3,0.27,6106,113.67102,123.440574,133.161237,139.702989,I,Above,Hip,0,5701,,33.80814665,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28514,NJBF000063453,,Ventnor City,NJ,39.34177822,-74.47927049,RES1,3001,,NaN,NE,1945,0,3102,2,1,1393.395609,1393.395609,3505,NO,29.86,36.25,3,7.01,6106,113.7722,123.522534,133.248146,139.785917,I,Above,Gable,0,5701,,33.05393698,0,0,,,,1,1,,0.03,nav,1,1945,2,, 28515,NJBF000063256,107 S VICTORIA AVE,Ventnor City,NJ,39.3412375,-74.470599,COM1,3001,,NaN,ME,1900,0,3401,1,1,2612.933079,2612.933079,3507,NO,19.6,24.7,1,0.99,6106,113.970279,123.683638,133.419677,139.938773,I,Above,Flat,0,NaN,,22.1503978,0,0,,,,1,1,,0.03,nav,1,1900,1,, 28516,NJBF000063177,5907 WINCHESTER AVE,Ventnor City,NJ,39.34106816,-74.4784654,RES1,3001,,18,NE,1980,1980,3102,2,1,2253.476587,2253.476587,3505,NO,37.46,42.5,3,1.54,6106,113.799417,123.54475,133.271248,139.81143,I,Above,Hip,0,5701,,39.97830223,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 28517,NJBF000063325,205 N PRINCETON AVE,Ventnor City,NJ,39.34141277,-74.48389044,RES1,3001,,16,NE,1935,1935,3102,1,1,611.9312272,611.9312272,3505,NO,26.7,36.15,3,8.6,6106,113.675109,123.444044,133.164454,139.709917,I,Above,Hip,0,5701,,31.42045264,0,0,,,,1,1,,0.03,nav,1,1935,1,, 28518,NJBF000063176,123 N SACRAMENTO AVE,Ventnor City,NJ,39.34105937,-74.48287779,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1869.625057,1869.625057,3505,NO,26.07,35.19,3,0.38,6106,113.702194,123.466021,133.187524,139.734027,I,Above,Hip,0,5701,,30.62728306,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28519,NJBF000067059,812 N DORSET AVE,Ventnor City,NJ,39.35190846,-74.48680838,RES1,3001,,17,NE,1976,1976,3101,2,1,1466.514887,1466.514887,3505,NO,36.7,43.39,3,0.72,6106,113.473618,123.276551,132.992787,139.484846,I,Above,Gable,0,5701,,40.04151386,0,0,,,,1,1,,0.03,nav,1,1976,2,, 28520,NJBF000063065,340 HAMPSHIRE DR.,Ventnor City,NJ,39.34082412,-74.49247809,RES1,3001,,45,NE,1972,1972,3102,2,2,1993.86459,1993.86459,3505,NO,39.58,48.96,3,4.82,6106,113.493133,123.297486,133.009029,139.557691,I,Above,Gable,0,5701,,44.27019346,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28521,NJBF000063139,6317 MONMOUTH AVE,Ventnor City,NJ,39.34096619,-74.48421426,RES1,3001,,17,NE,1932,1932,3102,2,1,949.5216798,949.5216798,3505,NO,34.71,43.15,3,8.56,6106,113.673942,123.443204,133.163241,139.711358,I,Above,Gable,0,5701,,38.92954661,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 28522,NJBF000063041,336-338 HAMPSHIRE DR,Ventnor City,NJ,39.34077751,-74.49275524,RES1,3001,,45,NE,1972,1972,3102,2,2,1910.938041,1910.938041,3505,NO,35.1,47.1,3,-1.2,6106,113.487623,123.293066,133.004341,139.553041,I,Above,Gable,0,5701,,41.1006356,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28523,NJBF000062920,5806 VENTNOR AVE,Ventnor City,NJ,39.34049869,-74.47688385,RES1,3001,,18,NE,1945,1945,3102,1,1,1915.279359,1915.279359,3505,NO,9.08,18.29,3,-2.67,6106,113.841856,123.579286,133.307585,139.84759,I,Above,Hip,0,5701,,13.68506961,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 28524,NJBF000062932,117 N PRINCETON AVE,Ventnor City,NJ,39.34053201,-74.4831727,RES1,3001,,17,NE,1925,1925,3102,2,1,962.5474913,962.5474913,3505,NO,33.88,46.53,3,3.58,6106,113.70275,123.466582,133.187729,139.737375,I,Above,Flat,0,5701,,40.20429006,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28525,NJBF000062773,6204 WINCHESTER AVE,Ventnor City,NJ,39.34019867,-74.48141693,RES1,3001,,17,NE,1930,1930,3102,2,1,1292.630801,1292.630801,3505,NO,42.66,53.57,3,4.97,6106,113.745969,123.501611,133.224677,139.774256,I,Above,Gable,0,5701,,48.11644269,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 28526,NJBF000062463,214 N WISSAHICKON AVE,Ventnor City,NJ,39.33951658,-74.49061995,RES1,3001,,17,NE,1950,1950,3102,1,1,1884.505566,1884.505566,3505,NO,19.68,28.47,3,3.98,6106,113.55193,123.345085,133.058398,139.614414,I,Above,Hip,0,5701,,24.07614405,0,0,,,,1,1,,0.03,nav,1,1950,1,, 28527,NJBF000062420,212 N WISSAHICKON AVE,Ventnor City,NJ,39.33940555,-74.49052653,RES1,3001,,17,NE,1950,1950,3102,1,1,1007.483769,1007.483769,3505,NO,13.25,26.9,3,0.79,6106,113.555493,123.347975,133.061373,139.617976,I,Above,Flat,0,5701,,20.07526898,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 28528,NJBF000062496,106 S OXFORD AVE,Ventnor City,NJ,39.33958743,-74.47435408,RES1,3001,,16,NE,1928,1928,3102,2,1,1808.173925,1808.173925,3505,NO,30.78,37.63,3,-1.9,6106,113.909757,123.63458,133.365793,139.904251,I,Above,Hip,0,5701,,34.20524268,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 28529,NJBF000062488,14 S DORSET AVE,Ventnor City,NJ,39.33956884,-74.47691788,RES1,3001,,18,NE,1920,1920,3102,2,1,1638.065514,1638.065514,3505,NO,36.01,41.25,3,5.94,6106,113.853576,123.588938,133.317098,139.862134,I,Above,Hip,0,5701,,38.63259111,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28530,NJBF000062427,6625 MONMOUTH AVE,Ventnor City,NJ,39.33944155,-74.48745073,RES1,3001,,16,NE,1948,1948,3102,1,1,1620.609146,1620.609146,3505,NO,15.94,29.79,3,3.76,6106,113.622981,123.402366,133.11888,139.676164,I,Above,Hip,0,5701,,22.86500663,0,0,,,,1,1,,0.03,nav,1,1948,1,, 28531,NJBF000062377,17 S DERBY AVE,Ventnor City,NJ,39.33932784,-74.47740793,RES1,3001,,18,NE,1912,1912,3102,2,1,1842.224928,1842.224928,3505,NO,32.94,40.36,3,-0.89,6106,113.846027,123.582842,133.3104,139.857819,I,Above,Hip,0,5701,,36.65393897,0,0,,,,1,1,,0.03,nav,1,1912,2,, 28532,NJBF000062309,6106 VENTNOR AVE,Ventnor City,NJ,39.33920329,-74.47960378,RES1,3001,,17,NE,1922,1922,3102,2,1,2278.861983,2278.861983,3505,NO,45.1,59.99,3,7.05,6106,113.79934,123.544996,133.27001,139.822383,I,Above,Flat,0,5701,,52.54200519,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 28533,NJBF000062298,,Ventnor City,NJ,39.33917506,-74.47535977,RES1,3001,,NaN,NE,1969,0,3102,2,1,3176.975264,3176.975264,3505,NO,33.88,42.9,3,-2.17,6106,113.89316,123.621135,133.351088,139.894378,I,Above,Hip,0,5701,,38.38696932,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28534,NJBF000061385,,Ventnor City,NJ,39.33754447,-74.47789965,RES1,3001,,NaN,NE,1969,0,3102,2,1,2553.895021,2553.895021,3505,NO,33.29,42.01,3,-2.03,6106,113.859295,123.593778,133.320515,139.878619,I,Above,Hip,0,5701,,37.65185552,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28535,NJBF000062203,6200 VENTNOR AVE,Ventnor City,NJ,39.33898714,-74.48019736,RES1,3001,,17,NE,1910,1910,3102,2,1,1448.398316,1448.398316,3505,NO,43.94,53.44,3,7.59,6106,113.789187,123.536797,133.261114,139.815638,I,Above,Flat,0,5701,,48.68899153,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 28536,NJBF000062082,125 N RICHARDS AVE,Ventnor City,NJ,39.33877131,-74.48758712,RES1,3001,,17,NE,1920,1920,3102,2,1,1047.140646,1047.140646,3505,NO,27.77,36.68,3,3.78,6106,113.629078,123.407393,133.123712,139.684435,I,Above,Gable,0,5701,,32.22667095,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28537,NJBF000061937,108 N AVOLYN AVE,Ventnor City,NJ,39.33851043,-74.4863433,RES1,3001,,17,NE,1938,1938,3102,2,1,747.6626525,747.6626525,3505,NO,27.96,41.32,3,1.69,6106,113.66009,123.432458,133.150042,139.712131,I,Above,Flat,0,5701,,34.64449209,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 28538,NJBF000061902,112 N TROY AVE,Ventnor City,NJ,39.33843999,-74.4870663,RES1,3001,,17,NE,1938,1938,3102,2,1,1166.0674,1166.0674,3505,NO,41.91,54.65,3,6.81,6106,113.645081,123.420352,133.137178,139.699645,I,Above,Hip,0,5701,,48.27880319,0,0,,,,1,1,,0.03,nav,1,1938,2,, 28539,NJBF000067442,801 N VICTORIA AVE,Ventnor City,NJ,39.35350341,-74.48236216,RES3A,3001,,28,NE,1999,1999,3301,2,1,2579.876654,2579.876654,3505,NO,27.31,36.37,3,0.49,6106,113.552031,123.338716,133.059662,139.539513,I,Above,Gable,0,5701,,31.84381181,0,0,,,,1,1,,0.03,nav,1,1999,2,, 28540,NJBF000067333,801 N VICTORIA AVE,Ventnor City,NJ,39.35312149,-74.48205389,RES3A,3001,,28,NE,1999,1999,3301,2,1,2145.310194,2145.310194,3505,NO,22.35,36.04,3,1.28,6106,113.563654,123.348395,133.069792,139.55126,I,Above,Gable,0,5701,,29.191521,0,0,,,,1,1,,0.03,nav,1,1999,2,, 28541,NJBF000067479,801 N VICTORIA AVE,Ventnor City,NJ,39.35362,-74.482161,RES3A,3001,,28,NE,1999,1999,3301,2,1,2496.315922,2496.315922,3505,NO,33.16,42.33,3,3.24,6106,113.555013,123.341042,133.062197,139.54121,I,Above,Hip,0,5701,,37.7441464,0,0,,,,1,1,,0.03,nav,1,1999,2,, 28542,NJBF000067556,801 N VICTORIA AVE,Ventnor City,NJ,39.353818,-74.4823025,RES3A,3001,,28,NE,1999,1999,3301,2,1,2608.140159,2608.140159,3505,NO,35,44.72,3,5.54,6106,113.549385,123.336342,133.057282,139.535438,I,Above,Flat,0,5701,,39.86241143,0,0,,,,1,1,,0.03,nav,1,1999,2,, 28543,NJBF000067622,801 N VICTORIA AVE,Ventnor City,NJ,39.3540035,-74.4824675,RES3A,3001,,28,NE,1999,1999,3301,2,1,2483.523572,2483.523572,3505,NO,34.59,45.09,3,5.05,6106,113.543434,123.33139,133.052091,139.52948,I,Above,Hip,0,5701,,39.84161487,0,0,,,,1,1,,0.03,nav,1,1999,2,, 28544,NJBF000061691,304 WINDSOR DRIVE,Ventnor City,NJ,39.33808799,-74.49400628,RES1,3001,,17,NE,1979,1979,3102,2,1,2183.781589,2183.781589,3505,NO,34.55,47.19,3,2.35,6106,113.496554,123.30075,133.010702,139.570609,I,Above,Hip,0,5701,,40.86626328,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 28545,NJBF000061597,6929 MONMOUTH AVE,Ventnor City,NJ,39.33791974,-74.49066919,RES1,3001,,17,NE,1925,1925,3102,2,1,1259.094211,1259.094211,3505,NO,32.46,37.64,3,8.59,6106,113.572601,123.361981,133.075119,139.638744,I,Above,Hip,0,5701,,35.05093562,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28546,NJBF000064197,311 N HARVARD AVE,Ventnor City,NJ,39.34385596,-74.48420767,RES1,3001,,17,NE,1962,1962,3102,1,1,1746.012586,1746.012586,3505,NO,15.02,28.42,3,-2.42,6106,113.635581,123.411401,133.13149,139.664053,I,Above,Hip,0,5701,,21.72357911,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 28547,NJBF000061378,115 N NEWARK AVE,Ventnor City,NJ,39.33753187,-74.4887633,RES1,3001,,17,NE,1925,1925,3102,2,1,1162.067492,1162.067492,3505,NO,29.6,39.44,3,0.62,6106,113.619998,123.400227,133.11522,139.681817,I,Above,Hip,0,5701,,34.51971541,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28548,NJBF000060610,118 S SACRAMENTO AVE,Ventnor City,NJ,39.33627409,-74.4794959,RES1,3001,,20,NE,2007,2007,3102,3,1,1711.576279,1711.576279,3505,NO,56.75,64.34,3,0.92,6106,113.841453,123.579366,133.304065,139.872379,I,Above,Flat,0,5701,,60.54791819,0,0,,,,1,1,,0.03,nav,1,2007,3,, 28549,NJBF000066611,709 N DERBY AVE,Ventnor City,NJ,39.35022447,-74.48580962,RES1,3001,,17,NE,1965,1965,3101,2,1,1894.113078,1894.113078,3505,NO,36.28,49.27,3,-1.65,6106,113.517215,123.312818,133.030502,139.530627,I,Above,Gable,0,5701,,42.77689663,0,0,,,,1,1,,0.03,nav,1,1965,2,, 28550,NJBF000061256,104 N WISSAHICKON AVE,Ventnor City,NJ,39.33733048,-74.48835112,RES1,3001,,17,NE,1925,1925,3102,2,1,1208.214144,1208.214144,3505,NO,36.23,43.57,3,6.48,6106,113.631856,123.409811,133.125196,139.692966,I,Above,Hip,0,5701,,39.90088415,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28551,NJBF000061184,,Ventnor City,NJ,39.33720504,-74.49111023,RES1,3001,,NaN,NE,1969,0,3102,2,1,1413.966129,1413.966129,3505,NO,29.03,39.25,3,-2.59,6106,113.572654,123.362102,133.074732,139.641332,I,Above,Gable,0,5701,,34.13811686,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28552,NJBF000061175,18 N RICHARDS AVE,Ventnor City,NJ,39.33718836,-74.48676389,RES1,3001,,17,NE,1920,1920,3102,1,1,1518.681488,1518.681488,3505,NO,16.31,28.04,3,-0.19,6106,113.668818,123.439652,133.156643,139.725573,I,Above,Hip,0,5701,,22.17532963,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 28553,NJBF000061144,125 N LAFAYETTE AVE,Ventnor City,NJ,39.33713715,-74.49087377,RES1,3001,,NaN,NE,1910,1960,3102,2,1,11261.21472,11261.21472,3505,NO,33.43,44.62,3,0.27,6106,113.578799,123.367058,133.07991,139.647018,I,Above,Flat,0,5701,,39.02384987,0,0,,,,1,1,,0.03,nav,1,1910,2,, 28554,NJBF000061091,6518 VENTNOR AVE,Ventnor City,NJ,39.33704196,-74.48402854,COM1,3001,,NaN,ME,1920,1920,3401,4,3,2916.798517,2916.798517,3507,NO,73.37,87.9,1,1.96,6106,113.731128,123.490006,133.209853,139.779107,I,Above,Flat,0,NaN,,80.63244583,0,0,,,,1,1,,0.03,nav,1,1920,4,, 28555,NJBF000064171,19 S NASHVILLE AVE,Ventnor City,NJ,39.34377771,-74.46896229,RES1,3001,,17,NE,1920,1920,3102,2,1,1531.31264,1531.31264,3507,NO,28.05,37.66,1,2.08,6106,113.972681,123.685128,133.423468,139.925223,I,Above,Gable,0,5701,,32.85274908,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28556,NJBF000060899,101 N WYOMING AVE,Ventnor City,NJ,39.3367206,-74.48984037,RES1,3001,,17,NE,1940,1940,3102,1,1,1786.722536,1786.722536,3505,NO,14.3,26.66,3,1.01,6106,113.607339,123.390093,133.10391,139.67374,I,Above,Gable,0,5701,,20.48184477,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28557,NJBF000060904,25 N NEWARK AVE,Ventnor City,NJ,39.33672366,-74.48810634,RES1,3001,,17,NE,1920,1920,3102,2,1,1570.252335,1570.252335,3505,NO,42.03,56.97,3,6.54,6106,113.645565,123.420921,133.136475,139.707329,I,Above,Hip,0,5701,,49.49945911,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28558,NJBF000060388,110 S STRATFORD AVE,Ventnor City,NJ,39.33588916,-74.48134764,RES1,3001,,17,NE,1929,1929,3102,2,1,1472.051348,1472.051348,3505,NO,30.97,45.2,3,7.11,6106,113.805953,123.55061,133.273176,139.846522,I,Above,Flat,0,5701,,38.08103636,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 28559,NJBF000060307,115 N SWARTHMORE AVE,Ventnor City,NJ,39.33575193,-74.49247191,RES1,3001,,17,NE,1925,1925,3102,2,1,971.9451085,971.9451085,3505,NO,33.39,43.45,3,8.14,6106,113.562602,123.354103,133.065231,139.636815,I,Above,Gable,0,5701,,38.42255194,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28560,NJBF000060256,,Ventnor City,NJ,39.33566748,-74.48552035,RES1,3001,,NaN,NE,2007,0,3102,2,1,1539.725025,1539.725025,3505,NO,30.84,38.9,3,1.58,6106,113.717105,123.478739,133.196788,139.773672,I,Above,Flat,0,5701,,34.87095761,0,0,,,,1,1,,0.03,nav,1,2007,2,, 28561,NJBF000060229,7 S WISSAHICKON AVE,Ventnor City,NJ,39.33561933,-74.48647679,RES1,3001,,17,NE,1925,1925,3102,3,1,1336.393587,1336.393587,3505,NO,57.44,66.53,3,0.1,6106,113.696673,123.462234,133.179281,139.756231,I,Above,Hip,0,5701,,61.98460314,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 28562,NJBF000060246,19 S RICHARDS AVE,Ventnor City,NJ,39.33564548,-74.48510092,RES1,3001,,17,NE,1939,1939,3102,2,1,1348.433887,1348.433887,3505,NO,43.46,54.9,3,6.8,6106,113.72664,123.486447,133.20493,139.781935,I,Above,Hip,0,5701,,49.17997277,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 28563,NJBF000059623,8 S WYOMING AVE,Ventnor City,NJ,39.33456808,-74.48864936,RES1,3001,,NaN,NE,1958,1958,3102,2,1,1765.920914,1765.920914,3505,NO,42.61,49.36,3,4.04,6106,113.663312,123.435311,133.149961,139.730592,I,Above,Gable,0,5701,,45.98585869,0,0,,,,1,1,,0.03,nav,1,1958,2,, 28564,NJBF000060228,,Ventnor City,NJ,39.3356175,-74.4811515,RES1,3001,,NaN,NE,1969,0,3102,2,1,2150.831545,2150.831545,3505,NO,38.43,47.55,3,5.71,6106,113.814016,123.557145,133.279876,139.854491,I,Above,Hip,0,5701,,42.98906109,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28565,NJBF000060194,109 N WASHINGTON AVE,Ventnor City,NJ,39.33556629,-74.49302311,RES1,3001,,17,NE,1948,1948,3102,1,1,1425.438768,1425.438768,3505,NO,17.36,23.52,3,0.37,6106,113.553015,123.34639,133.056969,139.628657,I,Above,Hip,0,5701,,20.43802683,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 28566,NJBF000059648,114 S AVOLYN AVE,Ventnor City,NJ,39.33461132,-74.48324895,RES1,3001,,20,NE,2005,2005,3102,2,1,1709.047366,1709.047366,3505,NO,36.8,46.6,3,8.71,6106,113.781665,123.53095,133.251198,139.833289,I,Above,Hip,0,5701,,41.69707452,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 28567,NJBF000062570,15 N SACRAMENTO AVE,Ventnor City,NJ,39.33973883,-74.48179374,RES1,3001,,17,NE,1925,1925,3102,2,1,1655.411536,1655.411536,3505,NO,39.7,49.3,3,7.23,6106,113.743841,123.499968,133.222574,139.775138,I,Above,Hip,0,5701,,44.49664009,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28568,NJBF000062500,11 N SACRAMENTO AVE,Ventnor City,NJ,39.33958912,-74.4816933,RES1,3001,,17,NE,1920,1920,3102,2,1,1464.447058,1464.447058,3505,NO,25.8,36.27,3,-0.68,6106,113.748089,123.50343,133.226135,139.779403,I,Above,Gable,0,5701,,31.03429755,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 28569,NJBF000064720,225 N SURREY AVE,Ventnor City,NJ,39.34515734,-74.47638688,RES1,3001,,17,NE,2007,2007,3102,3,1,965.1674108,965.1674108,3507,NO,52.27,62.31,1,-0.5,6106,113.791165,123.536959,133.266048,139.780323,I,Above,Flat,0,5701,,57.28674616,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 28570,NJBF000064704,223 N SURREY AVE,Ventnor City,NJ,39.34511881,-74.4762625,RES1,3001,,16,NE,1951,1951,3102,2,1,1225.182557,1225.182557,3507,NO,40.68,48.29,1,2.23,6106,113.794397,123.539596,133.268835,139.783053,I,Above,Flat,0,5701,,44.48658496,0,0,,,,1,1,,0.03,nav,1,1951,2,, 28571,NJBF000065636,608 N CAMBRIDGE AVE,Ventnor City,NJ,39.34767566,-74.48691599,RES1,3001,,17,NE,1974,1974,3101,2,1,1356.098036,1356.098036,3505,NO,38.42,50.64,3,7.53,6106,113.525565,123.320994,133.037857,139.551957,I,Above,Flat,0,5701,,44.52706075,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28572,NJBF000064213,23 S OAKLAND AVE,Ventnor City,NJ,39.34390634,-74.46815763,RES1,3001,,17,NE,1930,1930,3102,3,1,1630.40099,1630.40099,3504,NO,39.29,49.39,-4,0,6106,113.988664,123.69815,133.437541,139.936127,I,Above,Hip,0,5701,,44.34041558,0,0,,,,1,1,,0.03,nav,1,1930,3,, 28573,NJBF000064244,21 S OAKLAND AVE,Ventnor City,NJ,39.34398548,-74.46823301,RES1,3001,,17,NE,1925,1925,3102,2,1,1383.711863,1383.711863,3504,NO,25.45,40.4,-4,0,6106,113.98598,123.69594,133.435239,139.933693,I,Above,Gable,0,5701,,32.92643907,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28574,NJBF000060465,12 N ROSBOROUGH AVE,Ventnor City,NJ,39.33602155,-74.48890486,RES1,3001,4,17,NE,1940,1940,3102,2,1,1279.104068,1279.104068,3505,NO,43.19,56.08,3,5.65,6106,113.637585,123.414525,133.129172,139.702935,I,Above,Gable,0,5701,,49.63388192,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28575,NJBF000066006,602 N DORSET AVE,Ventnor City,NJ,39.34867252,-74.48424198,RES1,3001,,17,NE,1990,1990,3101,2,1,2250.964289,2250.964289,3505,NO,29.77,42.27,3,7.24,6106,113.57189,123.357845,133.077525,139.584524,I,Above,Gable,0,5701,,36.01774679,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 28576,NJBF000058375,105 S SWARTHMORE AVE,Ventnor City,NJ,39.33219248,-74.48960202,RES1,3001,,19,NE,1920,1920,3102,2,1,1544.284169,1544.284169,3505,NO,31.57,46.28,3,8.93,6106,113.675419,123.444962,133.158146,139.747316,I,Above,Hip,0,5701,,38.92804664,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 28577,NJBF000058673,15 S MARTINDALE AVE,Ventnor City,NJ,39.33272309,-74.49143738,RES1,3001,,17,NE,1928,1928,3102,2,1,1149.993359,1149.993359,3505,NO,42.63,53.26,3,5.89,6106,113.627576,123.406409,133.117948,139.702638,I,Above,Gable,0,5701,,47.94641294,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 28578,NJBF000058367,110 S MELBOURNE AVE,Ventnor City,NJ,39.33218104,-74.48860126,RES1,3001,,18,NE,1970,1970,3102,2,1,1572.202608,1572.202608,3505,NO,22.63,35.4,3,-0.89,6106,113.697606,123.462873,133.17704,139.767593,I,Above,Flat,0,5701,,29.01597875,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 28579,NJBF000060462,22 S AVOLYN AVE,Ventnor City,NJ,39.33601681,-74.48428639,RES1,3001,,29,NE,1921,1921,3102,2,1,1873.266547,1873.266547,3505,NO,32.47,38.38,3,0.09,6106,113.73949,123.496823,133.216233,139.791122,I,Above,Flat,0,5701,,35.42208612,0,0,,,,1,1,,0.03,nav,1,1921,2,, 28580,NJBF000060441,7105 WINCHESTER AVE,Ventnor City,NJ,39.3359786,-74.49090624,RES1,3001,,17,NE,1940,1940,3102,1,1,1508.675127,1508.675127,3505,NO,19.8,30.59,3,2.55,6106,113.594028,123.37941,133.092076,139.664362,I,Above,Flat,0,5701,,25.19309819,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28581,NJBF000064205,3 S HILLSIDE AVE,Ventnor City,NJ,39.34388644,-74.4699584,RES1,3001,,17,NE,1925,1925,3102,2,2,1364.249711,1364.249711,3507,NO,22.81,37.38,1,0.93,6106,113.949375,123.666085,133.403149,139.907456,I,Above,Hip,0,5701,,30.09276396,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28582,NJBF000066368,708 N BURGHLEY AVE,Ventnor City,NJ,39.3495865,-74.486704,RES1,3001,,17,NE,1957,1957,3101,1,1,1245.761144,1245.761144,3505,NO,22.85,34.68,3,4.91,6106,113.50557,123.303814,133.020624,139.524646,I,Above,Hip,0,5701,,28.76468508,0,0,,,,1,1,,0.03,nav,1,1957,1,, 28583,NJBF000064196,8 S NASHVILLE AVE,Ventnor City,NJ,39.34385266,-74.46953459,RES1,3001,,17,NE,1925,1925,3102,2,1,1468.793165,1468.793165,3507,NO,27.38,37.16,1,-0.55,6106,113.959105,123.674031,133.411637,139.914814,I,Above,Gable,0,5701,,32.27119059,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28584,NJBF000064195,111 N SOMERSET AVE,Ventnor City,NJ,39.34384998,-74.47706365,RES1,3001,,17,NE,1940,1940,3102,1,1,1775.467475,1775.467475,3505,NO,15.54,24.16,3,3.92,6106,113.793399,123.539186,133.267458,139.790017,I,Above,Hip,0,5701,,19.85423852,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28585,NJBF000063843,,Ventnor City,NJ,39.34286538,-74.49327274,RES1,3001,,NaN,NE,1969,0,3102,2,1,3046.6584,3046.6584,3505,NO,42.62,48.28,3,7.49,6106,113.448092,123.260691,132.971444,139.509843,I,Above,Gable,0,5701,,45.45087332,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28586,NJBF000063810,,Ventnor City,NJ,39.3427525,-74.50019901,REL1,3001,,NaN,ME,1969,0,3401,3,1,27444.32401,27444.32401,3507,NO,46.36,57.87,1,0.99,6106,113.295985,123.13873,132.843144,139.375818,I,Above,Flat,0,NaN,,52.11866159,0,0,,,,1,1,,0.03,nav,1,1969,3,, 28587,NJBF000063736,625 KINSLEY DRIVE,Ventnor City,NJ,39.34255312,-74.49549153,RES1,3001,,17,NE,1999,1999,3102,2,1,1989.591038,1989.591038,3505,NO,23.94,30.51,3,-2.77,6106,113.403087,123.22465,132.933307,139.471657,I,Above,Flat,0,5701,,27.22451065,0,0,,,,1,1,,0.03,nav,1,1999,2,, 28588,NJBF000063341,116 N CORNWALL AVE,Ventnor City,NJ,39.3414555,-74.48148,RES1,3001,,17,NE,1925,1925,3102,2,1,815.6655594,815.6655594,3505,NO,19.87,29.72,3,-2.11,6106,113.72774,123.486599,133.209679,139.752462,I,Above,Hip,0,5701,,24.79124648,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28589,NJBF000063476,605 N LAFAYETTE AVE,Ventnor City,NJ,39.3418285,-74.495738,RES1,3001,,17,NE,1979,1979,3102,2,1,1553.565108,1553.565108,3505,NO,26.84,33.23,3,-1.64,6106,113.407385,123.228322,132.936772,139.478251,I,Above,Gable,0,5701,,30.03516803,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 28590,NJBF000063461,,Ventnor City,NJ,39.34178883,-74.48417475,RES1,3001,,NaN,NE,1969,0,3102,2,1,999.6708528,999.6708528,3505,NO,32.57,45.85,3,8.32,6106,113.663787,123.434802,133.154915,139.698564,I,Above,Hip,0,5701,,39.20752247,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28591,NJBF000063429,,Ventnor City,NJ,39.34171183,-74.48411475,RES1,3001,,NaN,NE,1969,0,3102,2,1,1052.516358,1052.516358,3505,NO,34.19,39.22,3,7.36,6106,113.666141,123.436723,133.1569,139.700919,I,Above,Hip,0,5701,,36.70543908,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28592,NJBF000063206,109 S VICTORIA AVE,Ventnor City,NJ,39.34111798,-74.47050217,COM1,3001,,NaN,ME,1969,0,3401,3,1,1798.6033,1798.6033,3507,NO,44.42,54.62,1,0.36,6106,113.973992,123.686682,133.42283,139.942189,I,Above,Flat,0,NaN,,49.51774422,0,0,,,,1,1,,0.03,nav,1,1969,3,, 28593,NJBF000063062,5911 WINCHESTER AVE,Ventnor City,NJ,39.3408215,-74.4786575,RES1,3001,,17,NE,1980,1980,3102,2,1,1838.277553,1838.277553,3505,NO,44.94,50.38,3,6.75,6106,113.798487,123.544043,133.270299,139.812175,I,Above,Flat,0,5701,,47.66086653,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 28594,NJBF000063265,112 N CORNWALL AVE,Ventnor City,NJ,39.3412755,-74.481362,RES1,3001,,17,NE,1950,1950,3102,2,1,1040.10144,1040.10144,3505,NO,27.97,38.18,3,-0.75,6106,113.732749,123.490694,133.213896,139.757512,I,Above,Hip,0,5701,,33.076628,0,0,,,,1,1,,0.03,nav,1,1950,2,, 28595,NJBF000063037,111 N SACRAMENTO AVE,Ventnor City,NJ,39.34076375,-74.48262477,RES1,3001,,17,NE,1930,1930,3102,2,1,1341.496541,1341.496541,3505,NO,28.08,36.11,3,6.75,6106,113.711732,123.473798,133.195563,139.743423,I,Above,Gable,0,5701,,32.09564693,0,0.1,,,,1,1,,0.03,nav,1,1930,2,, 28596,NJBF000063118,102 N CORNWALL AVE,Ventnor City,NJ,39.34092416,-74.48105664,RES1,3001,,17,NE,1930,1930,3102,2,1,1454.694434,1454.694434,3505,NO,26.79,33.17,3,0.25,6106,113.744187,123.500028,133.223552,139.768692,I,Above,Gable,0,5701,,29.97863122,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28597,NJBF000062860,1 N DERBY AVE,Ventnor City,NJ,39.34037631,-74.47828532,RES1,3001,,18,NE,1940,1940,3102,2,1,2172.163076,2172.163076,3505,NO,22.41,28.62,3,0.47,6106,113.812641,123.555601,133.28225,139.825831,I,Above,Hip,0,5701,,25.51488619,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28598,NJBF000062616,6101 VENTNOR AVE,Ventnor City,NJ,39.33981423,-74.47964052,RES1,3001,,19,NE,1939,1939,3102,2,1,2262.931588,2262.931588,3505,NO,36.42,46.71,3,3.59,6106,113.7903,123.537581,133.262618,139.811707,I,Above,Hip,0,5701,,41.56429435,0,1.2,,,,1,1,,0.03,nav,1,1939,2,, 28599,NJBF000062583,114 N PORTLAND AVE,Ventnor City,NJ,39.33976224,-74.48406395,RES1,3001,,27,NE,1930,1930,3102,2,1,2333.586022,2333.586022,3505,NO,30.21,37.61,3,-0.79,6106,113.693446,123.459207,133.179327,139.733854,I,Above,Flat,0,5701,,33.90577706,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28600,NJBF000062632,121 N BRYANT AVE,Ventnor City,NJ,39.33988096,-74.48557146,RES1,3001,,17,NE,1943,1943,3102,1,1,1167.746753,1167.746753,3505,NO,23.39,32.26,3,4.05,6106,113.658571,123.43101,133.149526,139.70419,I,Above,Gable,0,5701,,27.82444168,0,0,,,,1,1,,0.03,nav,1,1943,1,, 28601,NJBF000062636,221 N NEWARK AVE,Ventnor City,NJ,39.33989688,-74.49127205,RES1,3001,,17,NE,1950,1950,3102,1,1,1759.850461,1759.850461,3505,NO,14.75,26.22,3,-0.13,6106,113.532359,123.329254,133.041944,139.59577,I,Above,Gable,0,5701,,20.4807872,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 28602,NJBF000062727,9 N CAMBRIDGE AVE,Ventnor City,NJ,39.34009391,-74.48055448,RES1,3001,,17,NE,1930,1930,3102,2,1,2499.981786,2499.981786,3505,NO,27.96,36.47,3,5.7,6106,113.766411,123.518181,133.242208,139.791189,I,Above,Hip,0,5701,,32.21676574,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28603,NJBF000062662,101 N PRINCETON AVE,Ventnor City,NJ,39.33994168,-74.48269954,RES1,3001,,17,NE,1925,1925,3102,2,1,1578.217394,1578.217394,3505,NO,26.02,34.41,3,0.28,6106,113.721121,123.481551,133.203174,139.755598,I,Above,Hip,0,5701,,30.21893851,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28604,NJBF000062609,119 N BRYANT AVE,Ventnor City,NJ,39.3398091,-74.48550381,RES1,3001,,17,NE,1928,1928,3102,1,1,1055.727527,1055.727527,3505,NO,16.5,28.74,3,4.67,6106,113.661022,123.433003,133.151584,139.706607,I,Above,Gable,0,5701,,22.61970409,0,0,,,,1,1,,0.03,nav,1,1928,1,, 28605,NJBF000062549,305-307 N LAFAYETTE AVE,Ventnor City,NJ,39.33968119,-74.49372811,RES1,3001,,45,NE,1970,1970,3102,2,2,1880.680808,1880.680808,3505,NO,32.52,46.36,3,1.97,6106,113.480958,123.287948,132.99826,139.551319,I,Above,Gable,0,5701,,39.44176105,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28606,NJBF000062412,7 N SACRAMENTO AVE,Ventnor City,NJ,39.3393985,-74.481528,RES1,3001,,17,NE,1940,1940,3102,2,1,1211.321204,1211.321204,3505,NO,35.78,46.32,3,4.33,6106,113.754288,123.508478,133.231348,139.785459,I,Above,Flat,0,5701,,41.04927664,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 28607,NJBF000059987,115 N FREDERICKSBURG,Ventnor City,NJ,39.33519312,-74.49418461,RES1,3001,,NaN,NE,1965,1965,3102,1,1,2011.627585,2011.627585,3505,NO,25.86,36.47,3,8.18,6106,113.532541,123.329919,133.039357,139.611011,I,Above,Hip,0,5701,,31.16557929,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 28608,NJBF000064489,217 N DUDLEY AVE,Ventnor City,NJ,39.34461497,-74.47946656,RES1,3001,,17,NE,1977,1977,3102,2,1,1207.27344,1207.27344,3505,NO,32.75,42.27,3,-0.49,6106,113.730317,123.487786,133.213228,139.736027,I,Above,Hip,0,5701,,37.51092103,0,0,,,,1,1,,0.03,nav,1,1977,2,, 28609,NJBF000063434,103 S LITTLE ROCK AV,Ventnor City,NJ,39.34172399,-74.47023667,COM1,3001,,NaN,ME,1938,1938,3401,3,1,1527.080352,1527.080352,3507,NO,40,50.18,1,2.84,6106,113.971768,123.684777,133.421324,139.936936,I,Above,Flat,0,NaN,,45.09435873,0,0,,,,1,1,,0.03,nav,1,1938,3,, 28610,NJBF000058304,,Ventnor City,NJ,39.33206606,-74.49019541,RES1,3001,,NaN,NE,1969,0,3102,2,1,1666.208796,1666.208796,3505,NO,38.79,50.4,3,4.76,6106,113.664131,123.43584,133.148415,139.737191,I,Above,Hip,0,5701,,44.59415626,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28611,NJBF000062156,118 N AVOLYN AVE,Ventnor City,NJ,39.33889429,-74.4866963,RES1,3001,,17,NE,1924,1924,3102,2,1,1766.788099,1766.788099,3505,NO,30.53,39.75,3,4.22,6106,113.647083,123.421903,133.139156,139.699268,I,Above,Gable,0,5701,,35.13960583,0,0,,,,1,1,,0.03,nav,1,1924,2,, 28612,NJBF000062200,120 N AVOLYN AVE,Ventnor City,NJ,39.3389823,-74.48674162,RES1,3001,,17,NE,1940,1940,3102,2,1,1319.793298,1319.793298,3505,NO,20.69,33.41,3,-0.44,6106,113.644874,123.420107,133.137319,139.696975,I,Above,Hip,0,5701,,27.05161725,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28613,NJBF000058972,9 S WASHINGTON AVE,Ventnor City,NJ,39.3332861,-74.49122663,RES1,3001,,17,NE,1925,1925,3102,2,1,1356.677143,1356.677143,3505,NO,36.1,45.94,3,6.84,6106,113.624331,123.403828,133.115693,139.698632,I,Above,Hip,0,5701,,41.02101812,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28614,NJBF000065850,702-04 N HARVARD AVE,Ventnor City,NJ,39.34827053,-74.4882788,RES1,3001,,17,NE,1994,1994,3102,3,1,3696.304195,3696.304195,3505,NO,54.23,63.72,3,7.22,6106,113.487633,123.290114,133.005433,139.517026,I,Above,Flat,0,5701,,58.97658411,0,1.1,,,,1,1,,0.03,nav,1,1994,3,, 28615,NJBF000061909,109 N TROY AVE,Ventnor City,NJ,39.33845818,-74.48661361,RES1,3001,,17,NE,1936,1936,3102,1,1,1370.740376,1370.740376,3505,NO,17.39,30.14,3,2.28,6106,113.654814,123.428206,133.145502,139.70788,I,Above,Hip,0,5701,,23.76758313,0,1.1,,,,1,1,,0.03,nav,1,1936,1,, 28616,NJBF000063911,5300 VENTNOR AVE,Ventnor City,NJ,39.34305912,-74.47174551,COM1,3001,,NaN,ME,1920,1920,3401,2,3,2631.393115,2631.393115,3507,NO,28.48,36.22,1,1.61,6106,113.920941,123.643097,133.377847,139.89148,I,Above,Flat,0,NaN,,32.3494643,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28617,NJBF000061564,101 S CAMBRIDGE AVE,Ventnor City,NJ,39.3378645,-74.4785065,RES1,3001,,18,NE,1890,1890,3102,3,1,964.5479855,964.5479855,3505,NO,63,71.13,3,6.62,6110,113.841605,123.579405,133.305495,139.863146,I,Above,Hip,0,5701,,67.06360617,0,1.2,,,,1,1,,0.35,nav,1,1890,3,, 28618,NJBF000061741,3 N NEWPORT AVE,Ventnor City,NJ,39.33817344,-74.48342665,RES1,3001,,47,NE,1925,1925,3102,2,2,1973.377342,1973.377342,3505,NO,46.28,60.46,3,8.07,6106,113.729002,123.488181,133.20883,139.771555,I,Above,Hip,0,5701,,53.36927009,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 28619,NJBF000061686,,Ventnor City,NJ,39.3380742,-74.48340187,COM1,3001,,NaN,ME,1925,0,3401,2,1,1594.062246,1594.062246,3507,NO,32.82,40.23,1,2.29,6106,113.730898,123.489726,133.210388,139.773637,I,Above,Flat,0,NaN,,36.52794807,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28620,NJBF000061861,107 N TROY AVE,Ventnor City,NJ,39.3383875,-74.4865565,RES1,3001,,17,NE,1940,1940,3102,1,1,1373.263448,1373.263448,3505,NO,16.04,26.85,3,-2.29,6106,113.657024,123.429999,133.147347,139.710088,I,Above,Hip,0,5701,,21.44471056,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28621,NJBF000061666,127 N NEWARK AVE,Ventnor City,NJ,39.33803883,-74.48919242,RES1,3001,,17,NE,1930,1930,3102,2,1,902.5903307,902.5903307,3505,NO,22.3,36.41,3,1.23,6106,113.603599,123.386946,133.101564,139.665482,I,Above,Hip,0,5701,,29.35586472,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28622,NJBF000061775,306 WINDSOR DRIVE,Ventnor City,NJ,39.33823404,-74.49417309,RES1,3001,,17,NE,1970,1970,3102,2,1,2441.700378,2441.700378,3505,NO,30.71,40.38,3,7.91,6106,113.490861,123.296153,133.00596,139.565053,I,Above,Hip,0,5701,,35.54869216,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 28623,NJBF000061312,6502 VENTNOR AVE,Ventnor City,NJ,39.3374216,-74.48332441,COM1,3001,738,NaN,ME,1928,1928,3401,2,3,1710.688411,1710.688411,3507,NO,25.88,40.29,1,0.88,6106,113.741487,123.498353,133.219013,139.785772,I,Above,Flat,0,NaN,,33.08853665,0,0,,,,1,1,,0.03,nav,1,1928,2,, 28624,NJBF000061333,6500 VENTNOR AVE,Ventnor City,NJ,39.33745539,-74.48325308,COM1,3001,,NaN,ME,1928,1928,3401,2,3,1701.144238,1701.144238,3507,NO,28.86,39.95,1,1.43,6106,113.742602,123.499252,133.219994,139.786521,I,Above,Flat,0,NaN,,34.40171358,0,0,,,,1,1,,0.03,nav,1,1928,2,, 28625,NJBF000061421,6515 VENTNOR AVE,Ventnor City,NJ,39.33760695,-74.48399281,COM1,3001,,NaN,ME,1912,1912,3401,2,2,1336.098689,1336.098689,3507,NO,28.85,34.38,1,-0.87,6106,113.724218,123.484371,133.204337,139.770509,I,Above,Flat,0,NaN,,31.615828,0,1.1,,,,1,1,,0.03,nav,1,1912,2,, 28626,NJBF000061218,108 S CAMBRIDGE AVE,Ventnor City,NJ,39.33725096,-74.47881745,RES1,3001,,17,NE,1925,1925,3102,1,1,1879.104135,1879.104135,3505,NO,20.89,31.9,3,5.73,6106,113.84309,123.580652,133.30629,139.86792,I,Above,Hip,0,5701,,26.3940779,0,0,,,,1,1,,0.03,nav,1,1925,1,, 28627,NJBF000061247,115 N ROSBOROUGH AVE,Ventnor City,NJ,39.33730151,-74.4894301,RES1,3001,,17,NE,1950,1950,3102,2,1,1250.088755,1250.088755,3505,NO,37.05,49.07,3,3.56,6106,113.60842,123.390915,133.105212,139.67257,I,Above,Gable,0,5701,,43.06135881,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 28628,NJBF000060618,15 N ROSBOROUGH AVE,Ventnor City,NJ,39.33628422,-74.48861322,RES1,3001,,17,NE,1940,1940,3102,2,1,1524.731704,1524.731704,3505,NO,27.46,41.71,3,1.28,6106,113.640422,123.4168,133.131779,139.704491,I,Above,Hip,0,5701,,34.58552565,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28629,NJBF000061279,7044-7046 CALVERT AVE,Ventnor City,NJ,39.33736316,-74.49397888,RES1,3001,,45,NE,1964,1964,3102,2,2,1871.329189,1871.329189,3505,NO,35.37,42.34,3,3.16,6106,113.507102,123.30932,133.01923,139.582294,I,Above,Gable,0,5701,,38.85451377,0,0,,,,1,1,,0.03,nav,1,1964,2,, 28630,NJBF000060584,21 N WYOMING AVE,Ventnor City,NJ,39.33623945,-74.48944204,RES1,3001,,17,NE,1900,1900,3102,2,1,1689.136978,1689.136978,3505,NO,38.09,47.29,3,2.25,6106,113.62275,123.40255,133.116694,139.68906,I,Above,Hip,0,5701,,42.68950649,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 28631,NJBF000060922,6616 VENTNOR AVE,Ventnor City,NJ,39.33675846,-74.48481571,COM1,3001,101,NaN,ME,1920,1920,3401,3,1,828.7976247,828.7976247,3507,NO,42.02,49.69,1,0.23,6106,113.71766,123.479138,133.198105,139.769182,I,Above,Flat,0,NaN,,45.85627237,0,0,,,,1,1,,0.03,nav,1,1920,3,, 28632,NJBF000060843,6616 VENTNOR AVE,Ventnor City,NJ,39.33663849,-74.4847196,COM1,3001,101,NaN,ME,1920,1920,3401,3,1,772.3536405,772.3536405,3507,NO,33.34,43.55,1,1.77,6106,113.721418,123.482183,133.201233,139.772925,I,Above,Flat,0,NaN,,38.44281653,0,0,,,,1,1,,0.03,nav,1,1920,3,, 28633,NJBF000060965,100 S PRINCETON AVE,Ventnor City,NJ,39.33683005,-74.48067286,RES1,3001,,17,NE,1935,1935,3102,2,1,1579.520049,1579.520049,3505,NO,30.92,44.12,3,8.15,6110,113.807959,123.552201,133.275679,139.84286,I,Above,Hip,0,5701,,37.51837107,0,1.1,,,,1,1,,0.35,nav,1,1935,2,, 28634,NJBF000065125,327 N DUDLEY AVE,Ventnor City,NJ,39.34619473,-74.48066308,RES1,3001,,17,NE,1960,1960,3102,2,1,1913.689539,1913.689539,3505,NO,33.72,41.16,3,7.28,6106,113.683212,123.449039,133.173037,139.689158,I,Above,Hip,0,5701,,37.44185552,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 28635,NJBF000065981,610 N BURGHLEY AVE,Ventnor City,NJ,39.34860664,-74.48591081,RES1,3001,,17,NE,1985,1985,3101,2,1,1552.683496,1552.683496,3505,NO,34.41,45.94,3,0.8,6106,113.535774,123.328732,133.046565,139.555205,I,Above,Gable,0,5701,,40.17450752,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 28636,NJBF000061851,110 N TROY AVE,Ventnor City,NJ,39.3383685,-74.487004,RES1,3001,,17,NE,1938,1938,3102,2,1,1368.323085,1368.323085,3505,NO,36.37,48.73,3,-1.29,6106,113.647415,123.422246,133.139128,139.701965,I,Above,Hip,0,5701,,42.55386413,0,0,,,,1,1,,0.03,nav,1,1938,2,, 28637,NJBF000064685,219 N SOMERSET AVE,Ventnor City,NJ,39.34507923,-74.47807359,RES1,3001,,17,NE,1932,1932,3102,1,1,1089.906964,1089.906964,3505,NO,17.86,22.93,3,7.31,6106,113.754973,123.507615,133.234686,139.752638,I,Above,Gable,0,5701,,20.39510564,0,0,,,,1,1,,0.03,nav,1,1932,1,, 28638,NJBF000062760,112 N PRINCETON AVE,Ventnor City,NJ,39.34016312,-74.48330596,RES1,3001,,17,NE,1930,1930,3102,2,1,1114.896088,1114.896088,3505,NO,23.46,32.16,3,1.18,6106,113.704775,123.468291,133.189267,139.741038,I,Above,Hip,0,5701,,27.80877885,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28639,NJBF000062673,118 N PORTLAND AVE,Ventnor City,NJ,39.33998245,-74.48392638,RES1,3001,,17,NE,1930,1930,3102,2,1,1327.361371,1327.361371,3505,NO,29.23,36.8,3,2.05,6106,113.693527,123.459232,133.179519,139.732758,I,Above,Gable,0,5701,,33.01386107,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28640,NJBF000062525,228 N ROSBOROUGH AVE,Ventnor City,NJ,39.33963536,-74.49248485,RES1,3001,,17,NE,1952,1952,3102,1,1,1142.87645,1142.87645,3505,NO,10.08,18.04,3,-1.81,6106,113.509083,123.310576,133.022073,139.576349,I,Above,Flat,0,5701,,14.0633183,0,0,,,,1,1,,0.03,nav,1,1952,1,, 28641,NJBF000064756,410 N CAMBRIDGE AVE,Ventnor City,NJ,39.34525855,-74.48498439,RES1,3001,,17,NE,1967,1967,3102,1,1,1788.511657,1788.511657,3505,NO,22.07,31.46,3,6.78,6106,113.599923,123.382085,133.10127,139.626932,I,Above,Hip,0,5701,,26.76722348,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 28642,NJBF000059073,104 S ROSBOROUGH AVE,Ventnor City,NJ,39.33349566,-74.48672056,RES1,3001,,17,NE,1958,1958,3102,2,1,1809.154793,1809.154793,3505,NO,36.4,42.18,3,3.71,6110,113.720657,123.481586,133.197958,139.785022,I,Above,Flat,0,5701,,39.2914982,0,1.1,,,,1,1,,0.35,nav,1,1958,2,, 28643,NJBF000058410,7212 ATLANTIC AVE,Ventnor City,NJ,39.33226128,-74.49011944,RES1,3001,,17,NE,1920,1920,3102,2,1,1563.494695,1563.494695,3505,NO,35.24,50.15,3,6.08,6110,113.663071,123.435003,133.147701,139.735903,I,Above,Flat,0,5701,,42.69326263,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 28644,NJBF000065292,308 N SURREY AVE,Ventnor City,NJ,39.34664256,-74.47809267,RES1,3001,,17,NE,1964,1964,3102,2,1,1801.965731,1801.965731,3505,NO,33.84,41.24,3,3.79,6106,113.734139,123.490123,133.217116,139.726806,I,Above,Hip,0,5701,,37.54073298,0,0,,,,1,1,,0.03,nav,1,1964,2,, 28645,NJBF000063064,6003 WINCHESTER AVE,Ventnor City,NJ,39.34082391,-74.47947712,RES1,3001,,17,NE,1955,1955,3102,1,1,1543.371109,1543.371109,3505,NO,13.88,21.42,3,3.14,6106,113.78037,123.529357,133.254669,139.797971,I,Above,Gable,0,5701,,17.65112526,0,0,,,,1,1,,0.03,nav,1,1955,1,, 28646,NJBF000061552,201 N WYOMING AVE,Ventnor City,NJ,39.33784633,-74.490787,RES1,3001,,17,NE,1975,1975,3102,2,1,1335.2679,1335.2679,3505,NO,34.95,46.53,3,-0.5,6106,113.571006,123.360705,133.07372,139.637609,I,Above,Hip,0,5701,,40.74300959,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 28647,NJBF000061722,118 N BUFFALO AVE,Ventnor City,NJ,39.33814806,-74.48826526,RES1,3001,,17,NE,1922,1922,3102,2,1,1081.200197,1081.200197,3505,NO,36.24,44.6,3,8.19,6106,113.622583,123.40224,133.117806,139.681542,I,Above,Gable,0,5701,,40.41892394,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 28648,NJBF000061816,6401 VENTNOR AVE,Ventnor City,NJ,39.33830512,-74.48252886,COM1,3001,738,NaN,ME,1920,1920,3401,2,1,3575.508418,3575.508418,3507,NO,29.3,42.52,1,-0.72,6106,113.747011,123.502734,133.224376,139.785616,I,Above,Hip,0,NaN,,35.9109392,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28649,NJBF000066365,602 N SOMERSET AVE,Ventnor City,NJ,39.34957618,-74.48217348,RES1,3001,,17,NE,1971,1971,3102,2,1,1390.611223,1390.611223,3507,NO,31.92,44.1,1,1.38,6106,113.606071,123.384971,133.106882,139.606999,I,Above,Gable,0,5701,,38.0096325,0,0,,,,1,1,,0.03,nav,1,1971,2,, 28650,NJBF000062038,106 N NEW HAVEN AVE,Ventnor City,NJ,39.33868337,-74.48574799,RES1,3001,,17,NE,1930,1930,3102,1,1,1129.190443,1129.190443,3505,NO,19.22,32.84,3,4.77,6106,113.670874,123.441142,133.159367,139.720447,I,Above,Hip,0,5701,,26.03077574,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 28651,NJBF000063991,5405 WINCHESTER AVE,Ventnor City,NJ,39.343288,-74.4736615,RES1,3001,,17,NE,1900,1900,3102,2,1,1081.896318,1081.896318,3505,NO,24.59,31.43,3,2.39,6106,113.87576,123.606262,133.338641,139.856326,I,Above,Hip,0,5701,,28.01326602,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 28652,NJBF000064012,5403 WINCHESTER AVE,Ventnor City,NJ,39.3433315,-74.473569,RES1,3001,,18,NE,1900,1900,3102,2,1,1122.98633,1122.98633,3505,NO,34.23,48.93,3,-0.89,6106,113.87724,123.607456,133.339951,139.857177,I,Above,Hip,0,5701,,41.58028812,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 28653,NJBF000064426,23 N WEYMOUTH AVE,Ventnor City,NJ,39.34445604,-74.47149731,RES1,3001,,45,NE,1920,1920,3102,2,2,2102.827503,2102.827503,3507,NO,29.76,40.6,1,1.84,6106,113.908054,123.632252,133.36738,139.873355,I,Above,Hip,0,5701,,35.18408638,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 28654,NJBF000064024,5404 EDGEWATER AVE,Ventnor City,NJ,39.34336567,-74.47547761,RES1,3001,,17,NE,1985,1985,3102,1,1,1327.434162,1327.434162,3505,NO,15.65,30.02,3,4.09,6106,113.834737,123.57289,133.303054,139.824754,I,Above,Gable,0,5701,,22.83888163,0,0,,,,1,1,,0.03,nav,1,1985,1,, 28655,NJBF000064066,303 N HARVARD AVE,Ventnor City,NJ,39.34348731,-74.48387318,RES1,3001,,18,NE,2008,2008,3102,2,1,2157.190422,2157.190422,3505,NO,38.91,45.9,3,0.61,6106,113.647871,123.421451,133.141914,139.676183,I,Above,Hip,0,5701,,42.40563902,0,0,,,,1,1,,0.03,nav,1,2008,2,, 28656,NJBF000063877,16 S WEYMOUTH AVE,Ventnor City,NJ,39.34296156,-74.47081158,RES1,3001,,17,NE,1925,1925,3102,2,1,1790.32743,1790.32743,3505,NO,27.01,37.8,3,-0.76,6106,113.942759,123.660897,133.396818,139.908198,I,Above,Flat,0,5701,,32.40815422,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28657,NJBF000059596,18 S ROSBOROUGH AVE,Ventnor City,NJ,39.33452416,-74.48773063,RES1,3001,,NaN,NE,1910,1910,3102,2,1,1807.265335,1807.265335,3505,NO,41.48,47.42,3,5.41,6110,113.684153,123.452133,133.167696,139.749275,I,Above,Hip,0,5701,,44.45193076,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 28658,NJBF000066659,808 N CAMBRIDGE AVE,Ventnor City,NJ,39.35039304,-74.48912351,RES1,3001,,17,NE,1978,1978,3101,1,1,1756.000431,1756.000431,3505,NO,22.16,34,3,4.14,6106,113.441546,123.251742,132.965786,139.466739,I,Above,Flat,0,5701,,28.0794207,0,0,,,,1,1,,0.03,nav,1,1978,1,, 28659,NJBF000062193,105 N NEW HAVEN AVE,Ventnor City,NJ,39.33896741,-74.48556313,RES1,3001,,17,NE,1950,1950,3102,1,1,1445.002347,1445.002347,3505,NO,13.9,21.82,3,-2.37,6106,113.671106,123.441288,133.159736,139.719261,I,Above,Hip,0,5701,,17.86135258,0,0,,,,1,1,,0.03,nav,1,1950,1,, 28660,NJBF000063013,6 S OXFORD AVE,Ventnor City,NJ,39.34069675,-74.47527051,RES1,3001,,18,NE,1920,1920,3102,2,1,2305.961718,2305.961718,3505,NO,24,32.86,3,2.98,6106,113.874724,123.605949,133.336184,139.871333,I,Above,Hip,0,5701,,28.42814378,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 28661,NJBF000062370,107 N BRYANT AVE,Ventnor City,NJ,39.33931552,-74.4851268,RES1,3001,,17,NE,1940,1940,3102,2,1,1016.541279,1016.541279,3505,NO,41.41,53.78,3,7.24,6106,113.676006,123.44519,133.164133,139.72164,I,Above,Flat,0,5701,,47.59313759,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28662,NJBF000059418,16 S WYOMING AVE,Ventnor City,NJ,39.33420892,-74.48835473,RES1,3001,,17,NE,1975,1975,3102,1,1,1955.872566,1955.872566,3505,NO,16.35,23.28,3,2.76,6106,113.674768,123.444552,133.159425,139.741915,I,Above,Hip,0,5701,,19.81487823,0,0,,,,1,1,,0.03,nav,1,1975,1,, 28663,NJBF000062908,10 S OXFORD AVE,Ventnor City,NJ,39.34046554,-74.47506624,RES1,3001,,18,NE,1906,1906,3102,2,1,2190.19108,2190.19108,3505,NO,37.04,42.2,3,-0.28,6106,113.882322,123.61216,133.342618,139.878449,I,Above,Hip,0,5701,,39.62227904,0,1.1,,,,1,1,,0.03,nav,1,1906,2,, 28664,NJBF000060564,16 N ROSBOROUGH AVE,Ventnor City,NJ,39.33619297,-74.4890495,RES1,3001,,17,NE,1940,1940,3102,2,2,1608.677601,1608.677601,3505,NO,41.4,51.97,3,4.02,6106,113.632054,123.410056,133.124584,139.697446,I,Above,Gable,0,5701,,46.68378738,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28665,NJBF000064796,320 N DORSET AVE,Ventnor City,NJ,39.34533738,-74.4815055,RES1,3001,,17,NE,1940,1940,3102,1,1,1429.936525,1429.936525,3505,NO,17.93,26.79,3,-0.69,6106,113.675827,123.443403,133.166475,139.688301,I,Above,Flat,0,5701,,22.35901213,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28666,NJBF000061183,6100 BOARDWALK,Ventnor City,NJ,39.33720429,-74.47764316,RES3C,3001,,NaN,E,1940,1940,3303,3,1,13855.51013,13855.51013,3507,NO,51.01,64.51,1,0.78,6106,113.869564,123.602131,133.329108,139.888461,I,Above,Flat,0,NaN,,57.75994815,0,0,,,,1,1,,0.03,nav,1,1940,3,, 28667,NJBF000059221,7208 VENTNOR AVE,Ventnor City,NJ,39.3337945,-74.4908835,RES1,3001,,17,NE,1910,1910,3102,2,1,1106.036073,1106.036073,3505,NO,33.61,46.26,3,1.77,6106,113.624813,123.404239,133.116542,139.697984,I,Above,Flat,0,5701,,39.93921721,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 28668,NJBF000064165,7 N LITTLE ROCK AVE,Ventnor City,NJ,39.343756,-74.47192,RES1,3001,,18,NE,1930,1930,3102,2,1,1054.075065,1054.075065,3507,NO,34.53,43.87,1,2.49,6106,113.907935,123.632338,133.366906,139.877554,I,Above,Flat,0,5701,,39.19941644,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28669,NJBF000066820,802 N DERBY AVE,Ventnor City,NJ,39.35089147,-74.48689456,RES1,3001,,17,NE,1976,1976,3101,1,1,1688.157928,1688.157928,3505,NO,24.08,38.22,3,5.15,6106,113.484632,123.286119,133.002476,139.499844,I,Above,Gable,0,5701,,31.14629226,0,0,,,,1,1,,0.03,nav,1,1976,1,, 28670,NJBF000063043,6111 WINCHESTER AVE,Ventnor City,NJ,39.34078028,-74.48098262,RES1,3001,,17,NE,1940,1940,3102,1,1,1792.847115,1792.847115,3505,NO,26.64,36.78,3,8.82,6106,113.747748,123.502941,133.226538,139.772365,I,Above,Gable,0,5701,,31.71061085,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28671,NJBF000064160,5116 VENTNOR AVE,Ventnor City,NJ,39.34374274,-74.47037674,RES1,3001,,49,NE,1925,1925,3102,2,3,3312.766767,3312.766767,3505,NO,24.43,33.89,3,2.37,6106,113.942041,123.660138,133.396659,139.90292,I,Above,Hip,0,5701,,29.15912271,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28672,NJBF000066778,6001 MARSHALL AVENUE,Ventnor City,NJ,39.35074345,-74.48677585,RES1,3001,,17,NE,1976,1976,3101,1,1,1686.059392,1686.059392,3505,NO,21.04,29.21,3,4.49,6106,113.489161,123.289866,133.006384,139.504447,I,Above,Gable,0,5701,,25.12220776,0,0,,,,1,1,,0.03,nav,1,1976,1,, 28673,NJBF000066634,608 N SUFFOLK AVE,Ventnor City,NJ,39.35030821,-74.48187136,RES1,3001,,17,NE,1972,1972,3102,2,1,1171.277237,1171.277237,3507,NO,33.26,48.09,1,1.19,6106,113.603381,123.382372,133.104523,139.600435,I,Above,Flat,0,5701,,40.677789,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28674,NJBF000060097,6900 VENTNOR AVE,Ventnor City,NJ,39.33540463,-74.48755023,RES1,3001,,16,NE,1940,1940,3102,1,1,1378.991966,1378.991966,3505,NO,18.17,30.23,3,1.65,6106,113.675968,123.44552,133.161431,139.738971,I,Above,Flat,0,5701,,24.19909122,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 28675,NJBF000066629,611 N SOMERSET AVE,Ventnor City,NJ,39.35028997,-74.48227756,RES1,3001,,17,NE,1972,1972,3102,2,1,1149.653799,1149.653799,3507,NO,23.88,28.99,1,0.18,6106,113.594603,123.375283,133.096964,139.593451,I,Above,Flat,0,5701,,26.43443598,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 28676,NJBF000062345,106 N NEWPORT AVE,Ventnor City,NJ,39.3392625,-74.4847545,RES1,3001,,18,NE,1928,2018,3102,2,1,940.0178651,940.0178651,3505,NO,31.51,42.55,3,-2.2,6106,113.684969,123.45244,133.171776,139.729404,I,Above,Gable,0,5701,,37.03193723,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 28677,NJBF000067603,4800 WELLINGTON AVE,Ventnor City,NJ,39.35394555,-74.47374933,COM1,3003,,NaN,ME,1970,1970,3401,1,1,506.0588736,506.0588736,3507,NO,14.05,26.17,1,-0.38,6106,113.736861,123.488396,133.219882,139.683422,I,Above,Flat,0,NaN,,20.10716327,0,0,,,,1,1,,0.03,nav,1,1970,1,, 28678,NJBF000066850,6102 BURK AVE,Ventnor City,NJ,39.35101412,-74.4890552,RES1,3001,,17,NE,1978,1978,3101,1,1,2029.627497,2029.627497,3505,NO,17.56,32.02,3,3.33,6106,113.435136,123.246172,132.960159,139.457907,I,Above,Gable,0,5701,,24.78926294,0,0,,,,1,1,,0.03,nav,1,1978,1,, 28679,NJBF000066409,515 N SUFFOLK AVE,Ventnor City,NJ,39.34968462,-74.48082999,RES1,3001,,17,NE,1977,1977,3102,2,1,3275.038616,3275.038616,3507,NO,31.62,41.76,1,0.71,6106,113.634385,123.40782,133.131281,139.629139,I,Above,Gable,0,5701,,36.69317519,0,0,,,,1,1,,0.03,nav,1,1977,2,, 28680,NJBF000066819,604 N VICTORIA AVE,Ventnor City,NJ,39.35089083,-74.48061439,RES3A,3001,,NaN,NE,1983,1983,3301,2,1,1143.517072,1143.517072,3505,NO,31.26,38.36,3,6.15,6106,113.623756,123.398512,133.122044,139.613288,I,Above,Flat,0,5701,,34.8095185,0,0,,,,1,1,,0.03,nav,1,1983,2,, 28681,NJBF000061446,22 N TROY AVE,Ventnor City,NJ,39.3376445,-74.486409,RES1,3001,,17,NE,1935,1935,3102,2,1,1440.036061,1440.036061,3505,NO,35.61,43.4,3,-0.68,6106,113.670409,123.440893,133.158311,139.724911,I,Above,Hip,0,5701,,39.50242721,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 28682,NJBF000060921,20 N NEWARK AVE,Ventnor City,NJ,39.3367572,-74.48862855,RES1,3001,,17,NE,1940,1940,3102,2,1,2311.752508,2311.752508,3505,NO,26.82,40.41,3,-0.6,6106,113.633572,123.411243,133.126274,139.696706,I,Above,Hip,0,5701,,33.61278489,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 28683,NJBF000064135,306 N CAMBRIDGE AVE,Ventnor City,NJ,39.34366604,-74.4836852,RES1,3001,,17,NE,1958,1958,3102,1,1,1879.965471,1879.965471,3505,NO,10.28,16.18,3,-0.82,6106,113.649657,123.422836,133.143504,139.676649,I,Above,Flat,0,5701,,13.23101158,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 28684,NJBF000067681,,Ventnor City,NJ,39.35414901,-74.48358089,RES1,3001,,NaN,NE,1969,0,3103,5,1,2524.679236,2524.679236,3505,NO,80.54,91.21,3,3.54,6106,113.516925,123.309847,133.029206,139.507042,I,Above,Hip,0,5701,,85.87122118,0,0,,,,1,1,,0.03,nav,1,1969,5,, 28685,NJBF000063042,130 N PRINCETON AVE,Ventnor City,NJ,39.34078,-74.4838415,RES1,3001,,17,NE,1984,1984,3102,2,1,631.6067336,631.6067336,3505,NO,32.5,44.13,3,5.09,6106,113.684674,123.451918,133.17235,139.721201,I,Above,Gable,0,5701,,38.31251751,0,0,,,,1,1,,0.03,nav,1,1984,2,, 28686,NJBF000066812,813 N CAMBRIDGE AVE,Ventnor City,NJ,39.35086425,-74.48893439,RES1,3001,,17,NE,1974,1974,3101,1,1,2233.325819,2233.325819,3505,NO,18.85,29.99,3,3.89,6106,113.439737,123.249976,132.964125,139.462599,I,Above,Hip,0,5701,,24.421044,0,0,,,,1,1,,0.03,nav,1,1974,1,, 28687,NJBF000061800,6105 ATLANTIC AVE,Ventnor City,NJ,39.33826969,-74.47888288,RES1,3001,,18,NE,1940,1940,3102,2,1,2551.75752,2551.75752,3505,NO,35.13,46.75,3,6.32,6110,113.827821,123.568191,133.293909,139.850093,I,Above,Gable,0,5701,,40.94335703,0,0,,,,1,1,,0.35,nav,1,1940,2,, 28688,NJBF000066863,5901 MARSHALL AVE,Ventnor City,NJ,39.35105569,-74.48614996,RES1,3001,,17,NE,1975,1975,3101,1,1,1903.395087,1903.395087,3505,NO,17.59,27.42,3,3.28,6106,113.499048,123.297633,133.014781,139.510818,I,Above,Gable,0,5701,,22.50360965,0,0,,,,1,1,,0.03,nav,1,1975,1,, 28689,NJBF000066388,610 N DUDLEY AVE,Ventnor City,NJ,39.349631,-74.483973,RES1,3001,,17,NE,1974,1974,3102,2,1,961.5111844,961.5111844,3507,NO,24.12,30.22,1,0.69,6106,113.565517,123.352162,133.072006,139.573724,I,Above,Gable,0,5701,,27.1696145,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28690,NJBF000061442,126 N ROSBOROUGH AVE,Ventnor City,NJ,39.33763803,-74.49024874,RES1,3001,,17,NE,1925,1925,3102,2,1,2375.945117,2375.945117,3505,NO,35.63,43.73,3,1.63,6106,113.585735,123.372596,133.086119,139.65136,I,Above,Hip,0,5701,,39.67959927,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28691,NJBF000059239,2 N WASHINGTON AVE,Ventnor City,NJ,39.33383402,-74.49212325,RES1,3001,,45,NE,1940,1940,3102,2,2,1580.824137,1580.824137,3505,NO,26.35,31.71,3,3.24,6106,113.596937,123.381769,133.092895,139.672557,I,Above,Hip,0,5701,,29.02721554,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28692,NJBF000062952,112 S SURREY AVE,Ventnor City,NJ,39.34056467,-74.47135129,RES1,3001,,20,NE,2012,2012,3102,3,1,2001.792268,2001.792268,3505,NO,43.53,49.69,3,-1.35,6106,113.9627,123.677553,133.412572,139.93728,I,Above,Hip,0,5701,,46.60655525,0,0,,,,1,1,,0.03,nav,1,2012,3,, 28693,NJBF000062239,6215 VENTNOR AVE,Ventnor City,NJ,39.33906984,-74.48107261,RES1,3001,21,NaN,NE,1920,1920,3102,2,1,4035.904629,4035.904629,3505,NO,31.1,40.5,3,7.74,6106,113.768759,123.520241,133.243583,139.79892,I,Above,Flat,0,5701,,35.80425867,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28694,NJBF000064458,129 N SURREY AVE,Ventnor City,NJ,39.3445322,-74.47588259,RES1,3001,,16,NE,1929,1929,3102,1,1,1903.533009,1903.533009,3507,NO,13.72,20.4,1,2.71,6106,113.810468,123.552839,133.282538,139.799031,I,Above,Hip,0,5701,,17.06101357,0,0,,,,1,1,,0.03,nav,1,1929,1,, 28695,NJBF000064792,318 N DERBY AVE,Ventnor City,NJ,39.34533152,-74.48243169,RES1,3001,,17,NE,1960,1960,3102,2,1,1910.100505,1910.100505,3505,NO,27.69,33.92,3,-1.49,6106,113.655404,123.426885,133.148904,139.671854,I,Above,Flat,0,5701,,30.80692797,0,0,,,,1,1,,0.03,nav,1,1960,2,, 28696,NJBF000064840,18 N AUSTIN AVE,Ventnor City,NJ,39.34546149,-74.46934477,RES1,3001,,17,NE,1920,1920,3102,2,1,1442.030334,1442.030334,3507,NO,38.4,46.04,1,1.21,6106,113.942249,123.659857,133.397767,139.892587,I,Above,Hip,0,5701,,42.21955944,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28697,NJBF000061393,201 N LAFAYETTE AVE,Ventnor City,NJ,39.337559,-74.491347,RES1,3001,,17,NE,1950,1950,3102,2,1,1266.773649,1266.773649,3505,NO,45.22,58.42,3,7.8,6106,113.562565,123.353939,133.066378,139.631163,I,Above,Gable,0,5701,,51.81947133,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 28698,NJBF000067175,712 N LITTLE ROCK AVE,Ventnor City,NJ,39.35244,-74.481193,RES3A,3001,,27,NE,1980,1980,3301,2,1,926.8656725,926.8656725,3505,NO,36.38,43.03,3,2.05,6106,113.5913,123.371241,133.093802,139.57774,I,Above,Gable,0,5701,,39.70523291,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28699,NJBF000067152,710 N LITTLE ROCK AVE,Ventnor City,NJ,39.35234101,-74.48111613,RES3A,3001,,27,NE,1980,1980,3301,2,1,1245.653947,1245.653947,3505,NO,29.58,42.46,3,2.27,6106,113.594255,123.3737,133.096372,139.580725,I,Above,Flat,0,5701,,36.01806917,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28700,NJBF000064081,8 N VICTORIA AVE,Ventnor City,NJ,39.34351551,-74.47277252,RES1,3001,,17,NE,1917,1917,3102,1,2,1834.6449,1834.6449,3505,NO,23,30.19,3,8.24,6106,113.892323,123.619685,133.353176,139.867363,I,Above,Gable,0,5701,,26.59413253,0,0,,,,1,1,,0.03,nav,1,1917,1,, 28701,NJBF000059207,7003 ATLANTIC AVE,Ventnor City,NJ,39.3337765,-74.48809593,RES1,3001,,19,NE,1954,1954,3102,2,1,2551.406538,2551.406538,3505,NO,19.84,33.88,3,-2.51,6110,113.686486,123.453998,133.169041,139.753675,I,Above,Hip,0,5701,,26.85636879,0,1.1,,,,1,1,,0.35,nav,1,1954,2,, 28702,NJBF000059230,7001 ATLANTIC AVE,Ventnor City,NJ,39.3338159,-74.48797646,RES1,3001,,20,NE,1945,1945,3102,1,1,2429.266349,2429.266349,3505,NO,17.35,31.99,3,4.56,6110,113.688573,123.455685,133.170857,139.755427,I,Above,Hip,0,5701,,24.67292053,0,1.1,,,,1,1,,0.35,nav,1,1945,1,, 28703,NJBF000061431,102 S CAMBRIDGE AVE,Ventnor City,NJ,39.33761612,-74.47909703,RES1,3001,,17,NE,1920,1920,3102,2,1,1712.172192,1712.172192,3505,NO,40.05,51.61,3,2.14,6106,113.83197,123.571611,133.296988,139.857162,I,Above,Gable,0,5701,,45.83225296,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28704,NJBF000060099,12 N LAFAYETTE AVE,Ventnor City,NJ,39.3354055,-74.4901635,RES1,3001,,17,NE,1942,1942,3102,2,1,1376.619445,1376.619445,3505,NO,30.4,39.74,3,2.5,6106,113.618334,123.399022,133.112324,139.687848,I,Above,Hip,0,5701,,35.07063553,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 28705,NJBF000067314,721 N LITTLE ROCK AVE,Ventnor City,NJ,39.35303768,-74.48118867,RES3A,3001,,27,NE,1980,1980,3301,2,1,1743.36259,1743.36259,3505,NO,26.91,33.84,3,1.31,6106,113.583849,123.364796,133.087235,139.568066,I,Above,Hip,0,5701,,30.3735309,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28706,NJBF000067831,,Ventnor City,NJ,39.35466313,-74.48307379,RES1,3001,,NaN,NE,1969,0,3103,5,1,2146.185164,2146.185164,3505,NO,88.91,102.09,3,-2.78,6106,113.521736,123.313332,133.03315,139.50781,I,Above,Hip,0,5701,,95.49912582,0,0,,,,1,1,,0.03,nav,1,1969,5,, 28707,NJBF000067956,,Ventnor City,NJ,39.35516312,-74.48305628,RES1,3001,,NaN,NE,1969,0,3103,6,1,3815.139341,3815.139341,3507,NO,74.09,87.59,1,1.69,6106,113.515904,123.308215,133.027919,139.49999,I,Above,Gable,0,5701,,80.83875714,0,0,,,,1,1,,0.03,nav,1,1969,6,, 28708,NJBF000061395,204 N LAFAYETTE AVE,Ventnor City,NJ,39.33756523,-74.49195763,RES1,3001,,16,NE,1965,1965,3102,1,1,1794.522897,1794.522897,3505,NO,23.12,28.51,3,3.97,6106,113.548985,123.343003,133.054851,139.619082,I,Above,Gable,0,5701,,25.81151793,0,0,,,,1,1,,0.03,nav,1,1965,1,, 28709,NJBF000061323,200 N LAFAYETTE AVE,Ventnor City,NJ,39.337442,-74.4918875,RES1,3001,,17,NE,1968,1968,3102,1,1,662.0210224,662.0210224,3505,NO,16.6,27.58,3,2.84,6106,113.552218,123.34562,133.057522,139.622371,I,Above,Gable,0,5701,,22.08852633,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 28710,NJBF000067283,5200 MARSHALL AVE,Ventnor City,NJ,39.3529017,-74.48163636,RES1,3001,,27,NE,1980,1980,3102,2,1,1242.704761,1242.704761,3505,NO,34.45,42.83,3,5.98,6106,113.575666,123.358269,133.080208,139.562306,I,Above,Gable,0,5701,,38.64236205,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28711,NJBF000061629,117 N WISSAHICKON AVE,Ventnor City,NJ,39.337977,-74.488408,RES1,3001,,17,NE,1903,1903,3102,2,1,1422.100017,1422.100017,3505,NO,45.85,52.47,3,7.58,6106,113.621758,123.401596,133.116998,139.681542,I,Above,Hip,0,5701,,49.15995391,0,1.2,,,,1,1,,0.03,nav,1,1903,2,, 28712,NJBF000062913,122 N PRINCETON AVE,Ventnor City,NJ,39.34047365,-74.48358481,RES1,3001,,17,NE,1930,1930,3102,2,1,2364.355859,2364.355859,3505,NO,38.15,47.29,3,5.47,6106,113.694435,123.459871,133.180564,139.730874,I,Above,Hip,0,5701,,42.71937888,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28713,NJBF000067009,5000 WELLINGTON AVE,Ventnor City,NJ,39.3516853,-74.47786524,COM1,3003,,NaN,ME,1980,1980,3401,1,1,199299.1511,199299.1511,3507,NO,15.61,24.2,1,-0.06,6106,113.674448,123.439116,133.165829,139.64874,I,Above,Flat,0,NaN,,19.90173292,0,0,,,,1,1,,0.03,nav,1,1980,1,, 28714,NJBF000067183,5000 WELLINGTON AVE,Ventnor City,NJ,39.35246385,-74.47565583,COM1,3003,,NaN,ME,1980,1980,3401,1,1,9451.294796,9451.294796,3507,NO,12.47,22.66,1,-0.05,6106,113.713391,123.47026,133.199583,139.674487,I,Above,Flat,0,NaN,,17.56449334,0,0,,,,1,1,,0.03,nav,1,1980,1,, 28715,NJBF000063008,5908 WINCHESTER AVE,Ventnor City,NJ,39.34069306,-74.4782516,RES1,3001,,17,NE,1921,1921,3102,2,1,2090.11094,2090.11094,3505,NO,37.57,49.11,3,0.18,6106,113.809124,123.552693,133.279409,139.821212,I,Above,Hip,0,5701,,43.33960452,0,1.1,,,,1,1,,0.03,nav,1,1921,2,, 28716,NJBF000067270,5202 MARSHALL AVE,Ventnor City,NJ,39.35283893,-74.48177066,RES1,3001,,27,NE,1980,1980,3102,2,1,964.1371871,964.1371871,3505,NO,34.95,43.1,3,-1.07,6106,113.573472,123.356537,133.07833,139.560921,I,Above,Gable,0,5701,,39.02508302,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28717,NJBF000062946,6104 WINCHESTER AVE,Ventnor City,NJ,39.34055802,-74.48071282,RES1,3001,,18,NE,1930,1930,3102,2,1,1278.918368,1278.918368,3505,NO,43.89,58,3,5.53,6106,113.756678,123.510215,133.234101,139.780768,I,Above,Gable,0,5701,,50.94222638,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 28718,NJBF000060522,118 N BALTIMORE AVE,Ventnor City,NJ,39.33613058,-74.49249997,RES1,3001,,17,NE,1950,1950,3102,2,1,1551.367585,1551.367585,3505,NO,31.54,38.06,3,-1.74,6106,113.556746,123.34937,133.060526,139.630486,I,Above,Gable,0,5701,,34.80031,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 28719,NJBF000062328,28 N PORTLAND AVE,Ventnor City,NJ,39.33923234,-74.48330074,RES1,3001,,17,NE,1912,1912,3102,2,1,1110.281329,1110.281329,3505,NO,37.06,49.61,3,-1.8,6106,113.717437,123.478689,133.19959,139.756434,I,Above,Hip,0,5701,,43.33177963,0,0,,,,1,1,,0.03,nav,1,1912,2,, 28720,NJBF000061012,120 N WYOMING AVE,Ventnor City,NJ,39.33690185,-74.49049205,RES1,3001,,27,NE,1935,1935,3102,2,1,1768.328822,1768.328822,3505,NO,35.86,50.64,3,0.89,6106,113.59046,123.376475,133.089672,139.658166,I,Above,Hip,0,5701,,43.25016624,0,0,,,,1,1,,0.03,nav,1,1935,2,, 28721,NJBF000060563,6509 ATLANTIC AVE,Ventnor City,NJ,39.33619137,-74.48313959,RES1,3001,,20,NE,2009,2009,3102,3,1,2190.882688,2190.882688,3505,NO,58.68,69.17,3,2.57,6106,113.762354,123.515309,133.235976,139.809356,I,Above,Hip,0,5701,,63.9230417,0,0,,,,1,1,,0.03,nav,1,2009,3,, 28722,NJBF000065200,325 N OXFORD AVE,Ventnor City,NJ,39.34638536,-74.48000587,RES1,3001,,17,NE,1960,1960,3102,2,1,1552.060913,1552.060913,3505,NO,34.35,46.03,3,4.79,6106,113.69525,123.458709,133.183459,139.697625,I,Above,Flat,0,5701,,40.1900712,0,0,,,,1,1,,0.03,nav,1,1960,2,, 28723,NJBF000061057,121-123 N MELBOURNE,Ventnor City,NJ,39.33698294,-74.49184055,RES1,3001,,45,NE,1931,1931,3102,2,2,1524.926137,1524.926137,3505,NO,31.36,39.51,3,1.76,6106,113.559559,123.351575,133.063471,139.630418,I,Above,Flat,0,5701,,35.43811982,0,1.2,,,,1,1,,0.03,nav,1,1931,2,, 28724,NJBF000060324,8 N ROSBOROUGH AVE,Ventnor City,NJ,39.33577635,-74.48873567,RES1,3001,,45,NE,1970,1970,3102,2,2,2144.998519,2144.998519,3505,NO,34.7,43.7,3,-0.86,6106,113.644702,123.420277,133.135053,139.710086,I,Above,Hip,0,5701,,39.20164876,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28725,NJBF000061170,6514 VENTNOR AVE,Ventnor City,NJ,39.3371827,-74.48388847,COM1,3001,,NaN,ME,1920,1920,3401,3,1,1640.233462,1640.233462,3507,NO,40.07,46.89,1,0.49,6106,113.732312,123.490952,133.210972,139.779388,I,Above,Hip,0,NaN,,43.47875172,0,0,,,,1,1,,0.03,nav,1,1920,3,, 28726,NJBF000066860,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35105387,-74.48259027,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,5665.094091,5665.094091,3505,NO,18.49,32.03,3,5.42,6106,113.57795,123.361348,133.082538,139.575379,I,Above,Gable,0,NaN,,25.25802835,0,0,,,,1,1,,0.03,nav,1,1972,1,, 28727,NJBF000066943,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35140177,-74.48270629,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,4977.229599,4977.229599,3505,NO,17.93,23.07,3,7.38,6106,113.570956,123.355471,133.076461,139.567615,I,Above,Flat,0,NaN,,20.49987042,0,0,,,,1,1,,0.03,nav,1,1972,1,, 28728,NJBF000066998,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35163905,-74.48295258,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,4902.289875,4902.289875,3505,NO,28.1,42.37,3,5.57,6106,113.562476,123.348461,133.06912,139.559306,I,Above,Flat,0,NaN,,35.23893556,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28729,NJBF000067129,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35220826,-74.48290356,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,3859.266627,3859.266627,3505,NO,21.95,27.99,3,3.5,6106,113.556351,123.343128,133.063728,139.5509,I,Above,Flat,0,NaN,,24.97053989,0,0,,,,1,1,,0.03,nav,1,1972,1,, 28730,NJBF000067107,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35213553,-74.4825018,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,7904.983175,7904.983175,3505,NO,23.51,32.86,3,5.35,6106,113.566165,123.351111,133.072194,139.559295,I,Above,Flat,0,NaN,,28.18292107,0,0,,,,1,1,,0.03,nav,1,1972,1,, 28731,NJBF000060885,15 N WISSAHICKON AVE,Ventnor City,NJ,39.33669864,-74.48736492,RES1,3001,,17,NE,1936,1936,3102,2,1,1004.949725,1004.949725,3505,NO,36.79,45.07,3,2.62,6106,113.662255,123.434392,133.150697,139.721963,I,Above,Hip,0,5701,,40.93251595,0,1.2,,,,1,1,,0.03,nav,1,1936,2,, 28732,NJBF000062019,109 S DORSET AVE,Ventnor City,NJ,39.33865882,-74.47560011,RES1,3001,,17,NE,1910,1910,3102,2,1,2108.567191,2108.567191,3505,NO,35.15,41.2,3,5.62,6106,113.894826,123.622541,133.352136,139.898735,I,Above,Flat,0,5701,,38.17252677,0,1.2,,,,1,1,,0.03,nav,1,1910,2,, 28733,NJBF000059085,8 S BALTIMORE AVE,Ventnor City,NJ,39.33351355,-74.49041435,RES1,3001,,17,NE,1965,1965,3102,2,1,1385.150718,1385.150718,3505,NO,28.65,40.15,3,-0.85,6106,113.639064,123.41572,133.128419,139.711553,I,Above,Gable,0,5701,,34.40114054,0,0,,,,1,1,,0.03,nav,1,1965,2,, 28734,NJBF000062851,102 N HARVARD AVE,Ventnor City,NJ,39.34035852,-74.48202563,RES1,3001,,17,NE,1920,1920,3102,1,1,1750.174827,1750.174827,3505,NO,15.33,28.64,3,-1,6106,113.730385,123.488969,133.21137,139.760801,I,Above,Hip,0,5701,,21.98402001,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 28735,NJBF000062894,6203 WINCHESTER AVE,Ventnor City,NJ,39.34045087,-74.48165335,RES1,3001,,20,NE,2017,2017,3102,3,1,1928.094167,1928.094167,3505,NO,31.42,43.69,3,-0.44,6106,113.737379,123.494612,133.217434,139.765924,I,Above,Flat,0,5701,,37.55231274,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, 28736,NJBF000064285,18 S MARION AVE,Ventnor City,NJ,39.34410448,-74.46771366,RES1,3001,,17,NE,1905,1905,3102,2,1,1722.82445,1722.82445,3504,NO,37.66,44.53,-4,0,6106,113.995819,123.703951,133.443934,139.94015,I,Above,Hip,0,5701,,41.09480626,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 28737,NJBF000064251,20 S MARION AVE,Ventnor City,NJ,39.34400556,-74.46766549,RES1,3001,,17,NE,1927,1927,3102,2,2,1525.912221,1525.912221,3504,NO,22.31,29.23,-4,0,6106,113.998179,123.705901,133.445943,139.942458,I,Above,Flat,0,5701,,25.766289,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 28738,NJBF000067201,723 N SURREY AVE,Ventnor City,NJ,39.35254407,-74.48232741,RES3A,3001,,27,NE,1980,1980,3301,2,1,893.1411924,893.1411924,3505,NO,26.82,34.93,3,-0.33,6106,113.564882,123.349795,133.070997,139.555778,I,Above,Gable,0,5701,,30.87355238,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 28739,NJBF000066612,708 N DORSET AVE,Ventnor City,NJ,39.35022701,-74.48546997,RES1,3001,,17,NE,1975,1975,3101,2,1,2004.205364,2004.205364,3505,NO,30.73,37.8,3,8.49,6106,113.524712,123.318864,133.036926,139.536787,I,Above,Flat,0,5701,,34.2649571,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28740,NJBF000066845,709 N DORSET AVE,Ventnor City,NJ,39.35098706,-74.48525729,RES3C,3001,,NaN,ME,1965,1965,3301,1,1,6110.778949,6110.778949,3505,NO,13.95,21.43,3,3.28,6106,113.519724,123.314358,133.032517,139.528253,I,Above,Hip,0,NaN,,17.68639183,0,0,,,,1,1,,0.03,nav,1,1965,1,, 28741,NJBF000066754,709 N DORSET AVE,Ventnor City,NJ,39.35067417,-74.48500671,RES3C,3001,,NaN,ME,1965,1965,3301,1,1,6253.076068,6253.076068,3505,NO,12.92,24.37,3,-1.25,6106,113.529258,123.322253,133.040752,139.537918,I,Above,Hip,0,NaN,,18.64499195,0,0,,,,1,1,,0.03,nav,1,1965,1,, 28742,NJBF000066092,512 N SOMERSET AVE,Ventnor City,NJ,39.34888716,-74.48162229,RES1,3001,,17,NE,1964,1964,3102,2,1,1287.53568,1287.53568,3507,NO,33.67,42.58,1,-0.55,6106,113.627117,123.402372,133.125014,139.628099,I,Above,Flat,0,5701,,38.12690519,0,0,,,,1,1,,0.03,nav,1,1964,2,, 28743,NJBF000061210,12 N TROY AVE,Ventnor City,NJ,39.337237,-74.486089,RES1,3001,,17,NE,1935,1935,3102,2,1,1730.516746,1730.516746,3505,NO,37.15,43.71,3,-0.38,6106,113.683039,123.45113,133.168829,139.737549,I,Above,Hip,0,5701,,40.42864838,0,0,,,,1,1,,0.03,nav,1,1935,2,, 28744,NJBF000067239,721 N VICTORIA AVE,Ventnor City,NJ,39.3527069,-74.481684,RES3A,3001,,27,NE,1980,1980,3301,2,1,1704.653275,1704.653275,3505,NO,30.31,45.24,3,-1.21,6106,113.577062,123.359535,133.081459,139.564627,I,Above,Flat,0,5701,,37.77643215,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 28745,NJBF000060315,112 S STRATFORD AVE,Ventnor City,NJ,39.33575754,-74.48124437,RES1,3001,,17,NE,1920,1920,3102,3,1,1705.829891,1705.829891,3505,NO,35.61,42.89,3,-0.44,6106,113.810037,123.55392,133.276575,139.850523,I,Above,Hip,0,5701,,39.250712,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 28746,NJBF000066548,708 N DERBY AVE,Ventnor City,NJ,39.35002799,-74.48617975,RES1,3001,,17,NE,1965,1965,3101,1,1,1634.934826,1634.934826,3505,NO,16.44,21.78,3,1.15,6106,113.511525,123.308349,133.025658,139.527058,I,Above,Gable,0,5701,,19.11441214,0,0,,,,1,1,,0.03,nav,1,1965,1,, 28747,NJBF000066305,505 N VICTORIA AVE,Ventnor City,NJ,39.34944252,-74.47885567,RES3A,3001,,17,NE,1980,1980,3301,2,1,2246.085657,2246.085657,3505,NO,41.63,53.41,3,7.74,6106,113.681127,123.445819,133.171654,139.667878,I,Above,Gable,0,5701,,47.52335409,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28748,NJBF000067177,721 N SURREY AVE,Ventnor City,NJ,39.35244527,-74.48225081,RES3A,3001,,27,NE,1980,1980,3301,2,1,1176.971615,1176.971615,3505,NO,26.47,39.4,3,-1.17,6106,113.567816,123.352236,133.073548,139.558755,I,Above,Gable,0,5701,,32.93614508,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28749,NJBF000064882,5107 WINCHESTER AVE,Ventnor City,NJ,39.34557107,-74.47104519,RES1,3001,,17,NE,2016,1920,3102,3,1,1652.038712,1652.038712,3507,NO,50.68,64.19,1,0.83,6106,113.903427,123.628159,133.363883,139.863052,I,Above,Hip,0,5701,,57.43429739,0,0,,,,1,1,,0.03,nav,1,2016,3,, 28750,NJBF000063045,114 N HARVARD AVE,Ventnor City,NJ,39.34078164,-74.48237298,RES1,3001,,17,NE,1925,1925,3102,1,1,1598.79644,1598.79644,3505,NO,20.91,34.68,3,1.51,6106,113.717052,123.478098,133.200143,139.747643,I,Above,Hip,0,5701,,27.79591891,0,0,,,,1,1,,0.03,nav,1,1925,1,, 28751,NJBF000066598,713 N BURGHLEY AVE,Ventnor City,NJ,39.35019888,-74.48666324,RES1,3001,,17,NE,1965,1965,3101,1,1,1919.342353,1919.342353,3505,NO,21.84,31.83,3,2.97,6106,113.498625,123.297842,133.014588,139.515405,I,Above,Gable,0,5701,,26.83532348,0,0,,,,1,1,,0.03,nav,1,1965,1,, 28752,NJBF000067077,708 N VICTORIA AVE,Ventnor City,NJ,39.35198782,-74.4815992,RES3A,3001,,17,NE,1980,1980,3301,2,1,1164.406158,1164.406158,3505,NO,20.69,29,3,-2.4,6106,113.58803,123.368897,133.091069,139.57787,I,Above,Gable,0,5701,,24.84692565,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28753,NJBF000066867,606 N VICTORIA AVE,Ventnor City,NJ,39.35107444,-74.48075644,RES3A,3001,,NaN,NE,1986,1986,3301,1,1,1138.61889,1138.61889,3505,NO,25.76,31.4,3,8.25,6106,113.618285,123.39397,133.117304,139.607784,I,Above,Hip,0,5701,,28.57853366,0,0,,,,1,1,,0.03,nav,1,1986,1,, 28754,NJBF000060816,10 S NEW HAVEN AVE,Ventnor City,NJ,39.33658521,-74.48413314,RES1,3001,,17,NE,1935,1935,3102,2,1,1703.234564,1703.234564,3505,NO,28.59,38.2,3,3.48,6106,113.735081,123.493232,133.212898,139.784672,I,Above,Gable,0,5701,,33.39424214,0,0.1,,,,1,1,,0.03,nav,1,1935,2,, 28755,NJBF000059074,7101 ATLANTIC AVE,Ventnor City,NJ,39.33349888,-74.48859203,RES1,3001,,17,NE,1930,1930,3102,2,1,1574.283403,1574.283403,3505,NO,36.65,47.88,3,3.41,6110,113.679412,123.448276,133.162763,139.748085,I,Above,Hip,0,5701,,42.26789763,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 28756,NJBF000059002,7302 VENTNOR AVE,Ventnor City,NJ,39.33334417,-74.4918207,RES1,3001,,17,NE,1910,1910,3102,2,1,2591.124869,2591.124869,3505,NO,30.45,41.14,3,6.65,6106,113.610432,123.392625,133.103936,139.685841,I,Above,Gable,0,5701,,35.79552626,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 28757,NJBF000066746,814 N HARVARD AVE,Ventnor City,NJ,39.35064864,-74.49015717,RES1,3001,,18,NE,1980,1980,3102,2,1,1953.411792,1953.411792,3505,NO,38.31,49.93,3,2.34,6106,113.415336,123.230487,132.943384,139.443303,I,Above,Hip,0,5701,,44.12091377,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 28758,NJBF000062748,6507 MONMOUTH AVE,Ventnor City,NJ,39.34013182,-74.48609245,RES1,3001,,17,NE,1963,1963,3102,2,1,1586.29969,1586.29969,3505,NO,32.33,46.08,3,2.05,6106,113.643678,123.418938,133.136919,139.69042,I,Above,Flat,0,5701,,39.20449966,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 28759,NJBF000066528,513 N VICTORIA AVE,Ventnor City,NJ,39.34999263,-74.47933018,RES3A,3001,,17,NE,1998,1998,3301,2,1,1851.43197,1851.43197,3505,NO,37.99,47.62,3,6.96,6106,113.663608,123.431318,133.156515,139.6506,I,Above,Flat,0,5701,,42.80320929,0,0,,,,1,1,,0.03,nav,1,1998,2,, 28760,NJBF000066995,6002 BURK AVE,Ventnor City,NJ,39.35163397,-74.48782056,RES1,3001,,17,NE,1975,1975,3101,2,1,1320.276363,1320.276363,3505,NO,35.32,44.71,3,2.23,6106,113.454624,123.261437,132.976621,139.470663,I,Above,Gable,0,5701,,40.01843066,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28761,NJBF000063518,,Ventnor City,NJ,39.34192463,-74.48325952,RES1,3001,,NaN,NE,1969,0,3102,2,1,883.9519154,883.9519154,3505,NO,36.8,46.84,3,1.64,6106,113.682182,123.449634,133.170753,139.712912,I,Above,Gable,0,5701,,41.81972923,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28762,NJBF000066556,600 N SURREY AVE,Ventnor City,NJ,39.35005785,-74.48082038,RES1,3001,,17,NE,1976,1976,3102,1,1,1691.938462,1691.938462,3507,NO,12.06,20.29,1,0.36,6106,113.62983,123.403921,133.127341,139.623227,I,Above,Flat,0,5701,,16.17257523,0,0,,,,1,1,,0.03,nav,1,1976,1,, 28763,NJBF000066740,6003 MARSHALL AVENUE,Ventnor City,NJ,39.3506332,-74.4870014,RES1,3001,,17,NE,1972,1972,3101,1,1,1877.151391,1877.151391,3505,NO,20.07,33.85,3,4.14,6106,113.485576,123.287048,133.00334,139.502106,I,Above,Gable,0,5701,,26.95912888,0,0,,,,1,1,,0.03,nav,1,1972,1,, 28764,NJBF000063442,7008 FULTON AVE,Ventnor City,NJ,39.34174958,-74.49440261,RES1,3001,,35,NE,1980,1980,3102,2,1,826.5364055,826.5364055,3505,NO,40.78,50.5,3,2.15,6106,113.438017,123.252941,132.962643,139.505589,I,Above,Gable,0,5701,,45.6419631,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28765,NJBF000066709,810 N CAMBRIDGE AVE,Ventnor City,NJ,39.35053841,-74.48921662,RES1,3001,,17,NE,1978,1978,3101,2,1,1276.997744,1276.997744,3505,NO,40.49,47.68,3,4.46,6106,113.437625,123.248492,132.962407,139.462646,I,Above,Gable,0,5701,,44.08643828,0,0,,,,1,1,,0.03,nav,1,1978,2,, 28766,NJBF000061963,106 S DORSET AVE,Ventnor City,NJ,39.33855451,-74.47614267,RES1,3001,,17,NE,1952,1952,3102,1,1,2139.101329,2139.101329,3505,NO,20.64,29.49,3,5.91,6106,113.884282,123.613985,133.342923,139.891465,I,Above,Gable,0,5701,,25.06591845,0,0,,,,1,1,,0.03,nav,1,1952,1,, 28767,NJBF000061907,110 S DORSET AVE,Ventnor City,NJ,39.3384554,-74.47604036,RES1,3001,,19,NE,1920,1920,3102,3,1,3273.602792,3273.602792,3505,NO,38.34,45.43,3,2.38,6106,113.887897,123.61693,133.345975,139.894779,I,Above,Hip,0,5701,,41.8863143,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 28768,NJBF000060266,6812 VENTNOR AVE,Ventnor City,NJ,39.33568213,-74.48692134,RES1,3001,101,NaN,NE,1940,1940,3102,2,2,1885.009223,1885.009223,3505,NO,19.24,29.63,3,-2.29,6106,113.686018,123.453627,133.170228,139.746712,I,Above,Flat,0,5701,,24.43144045,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28769,NJBF000066578,613 N OXFORD AVE,Ventnor City,NJ,39.35013199,-74.48302132,RES1,3001,,17,NE,1974,1974,3102,1,1,1302.130551,1302.130551,3507,NO,19.39,27.94,1,1.89,6106,113.580176,123.363713,133.084562,139.582702,I,Above,Gable,0,5701,,23.66752184,0,0,,,,1,1,,0.03,nav,1,1974,1,, 28770,NJBF000062232,101 N BRYANT AVE,Ventnor City,NJ,39.33905567,-74.48491754,RES1,3001,,17,NE,1928,1928,3102,2,1,1116.828251,1116.828251,3505,NO,25.96,34.11,3,1.01,6106,113.684137,123.4518,133.170942,139.729752,I,Above,Hip,0,5701,,30.03430397,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 28771,NJBF000066493,706 N DERBY AVE,Ventnor City,NJ,39.34990163,-74.48608664,RES1,3001,,17,NE,1976,1976,3101,2,1,1644.310935,1644.310935,3505,NO,25.49,34.94,3,3.12,6106,113.515202,123.311391,133.028825,139.530819,I,Above,Gable,0,5701,,30.21484386,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 28772,NJBF000066909,,Ventnor City,NJ,39.3512474,-74.49065296,RES1,3001,,NaN,NE,1969,0,3102,2,1,1981.684086,1981.684086,3505,NO,41.18,50.79,3,4.22,6106,113.396679,123.215078,132.927319,139.424297,I,Above,Flat,0,5701,,45.98912459,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28773,NJBF000064460,5402 MONMOUTH AVE,Ventnor City,NJ,39.34453529,-74.47673176,RES1,3001,,17,NE,1955,1955,3102,1,1,1902.547242,1902.547242,3505,NO,20.76,35.58,3,2.31,6106,113.791711,123.537606,133.266282,139.784543,I,Above,Hip,0,5701,,28.17280122,0,0,,,,1,1,,0.03,nav,1,1955,1,, 28774,NJBF000059114,7311 VENTNOR AVE,Ventnor City,NJ,39.33357964,-74.49224196,RES1,3001,738,NaN,NE,1920,1920,3102,2,3,1512.216351,1512.216351,3505,NO,35.01,45.64,3,8.37,6106,113.597857,123.382502,133.093463,139.673909,I,Above,Flat,0,5701,,40.32768849,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28775,NJBF000059126,7309 VENTNOR AVE,Ventnor City,NJ,39.3336055,-74.49217,RES1,3001,,NaN,NE,1920,1920,3102,2,2,1064.935059,1064.935059,3505,NO,44.58,49.82,3,6.82,6106,113.599095,123.3835,133.094535,139.674989,I,Above,Flat,0,5701,,47.20087881,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28776,NJBF000059156,7305 VENTNOR AVE,Ventnor City,NJ,39.333673,-74.4920615,RES1,3001,,NaN,NE,1950,1950,3102,1,1,1332.876892,1332.876892,3505,NO,24.34,36.87,3,4.99,6106,113.600527,123.384657,133.095808,139.676158,I,Above,Flat,0,5701,,30.60350717,0,0,,,,1,1,,0.03,nav,1,1950,1,, 28777,NJBF000059175,7303 VENTNOR AVE,Ventnor City,NJ,39.33369917,-74.49200089,RES1,3001,,NaN,NE,1950,1950,3102,2,1,1202.765231,1202.765231,3505,NO,37.36,50.61,3,-0.18,6106,113.601509,123.385449,133.096663,139.677,I,Above,Flat,0,5701,,43.98530306,0,0,,,,1,1,,0.03,nav,1,1950,2,, 28778,NJBF000062917,227 N WISSAHICKON AVE,Ventnor City,NJ,39.34049257,-74.49100677,RES1,3001,,17,NE,1950,1950,3102,1,1,954.1682847,954.1682847,3505,NO,16.42,23.7,3,-2.66,6106,113.530155,123.327352,133.040327,139.5914,I,Above,Gable,0,5701,,20.05886587,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 28779,NJBF000060393,6806 VENTNOR AVE,Ventnor City,NJ,39.33589445,-74.48657117,RES1,3001,,27,NE,1929,1929,3102,2,1,1611.824861,1611.824861,3505,NO,29.33,36.97,3,-2.2,6106,113.690817,123.457496,133.174492,139.750034,I,Above,Flat,0,5701,,33.15283983,0,0,,,,1,1,,0.03,nav,1,1929,2,, 28780,NJBF000060277,1 S WISSAHICKON AVE,Ventnor City,NJ,39.335703,-74.4865525,RES1,3001,,27,NE,1929,1929,3102,2,1,1506.194311,1506.194311,3505,NO,36,50.54,3,8.85,6106,113.693842,123.459945,133.176928,139.753434,I,Above,Flat,0,5701,,43.2716256,0,0,,,,1,1,,0.03,nav,1,1929,2,, 28781,NJBF000066697,713 N DERBY AVE,Ventnor City,NJ,39.35050233,-74.48603177,RES1,3001,,17,NE,1984,1984,3101,1,1,1756.251645,1756.251645,3505,NO,13.32,24.88,3,-0.53,6106,113.508737,123.305805,133.023191,139.522025,I,Above,Hip,0,5701,,19.09843745,0,0,,,,1,1,,0.03,nav,1,1984,1,, 28782,NJBF000060342,9 N WYOMING AVE,Ventnor City,NJ,39.33580747,-74.48908524,RES1,3001,,17,NE,1920,1920,3102,2,1,1684.709225,1684.709225,3505,NO,41.73,49.91,3,3.58,6106,113.636577,123.413721,133.128154,139.702789,I,Above,Flat,0,5701,,45.8232485,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28783,NJBF000060399,10 N ROSBOROUGH AVE,Ventnor City,NJ,39.33590082,-74.4888516,RES1,3001,,45,NE,1970,1970,3102,2,2,2542.731053,2542.731053,3505,NO,43.97,54.15,3,6.17,6106,113.640421,123.416818,133.131498,139.705865,I,Above,Hip,0,5701,,49.06097896,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 28784,NJBF000066353,507 N VICTORIA AVE,Ventnor City,NJ,39.34955098,-74.47901726,RES3A,3001,,17,NE,1986,1986,3301,2,1,1594.625099,1594.625099,3505,NO,39.36,50.98,3,1.54,6106,113.676185,123.441754,133.167384,139.663298,I,Above,Gable,0,5701,,45.16814768,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 28785,NJBF000067135,708 N LITTLE ROCK AVE,Ventnor City,NJ,39.35223848,-74.4810471,RES3A,3001,,27,NE,1980,1980,3301,2,1,1295.295665,1295.295665,3505,NO,25.65,37.56,3,-0.65,6106,113.597084,123.376059,133.098833,139.583632,I,Above,Hip,0,5701,,31.60887802,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28786,NJBF000058996,7107 ATLANTIC AVE,Ventnor City,NJ,39.33331899,-74.4889203,RES1,3001,,18,NE,1930,1930,3102,2,1,1570.687266,1570.687266,3505,NO,45.3,60,3,6.96,6110,113.674694,123.444459,133.15858,139.744287,I,Above,Hip,0,5701,,52.64733262,0,1.2,,,,1,1,,0.35,nav,1,1930,2,, 28787,NJBF000059014,7105 ATLANTIC AVE,Ventnor City,NJ,39.3333735,-74.488823,RES1,3001,,17,NE,1920,1920,3102,2,2,1543.335249,1543.335249,3505,NO,33.56,41.64,3,2.46,6110,113.676064,123.445568,133.159797,139.745388,I,Above,Flat,0,5701,,37.59663975,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 28788,NJBF000065984,502 N SUFFOLK AVE,Ventnor City,NJ,39.34861909,-74.4805424,RES1,3001,,17,NE,1975,1975,3102,1,1,1809.540566,1809.540566,3507,NO,16.27,26.35,1,0.84,6106,113.654453,123.424637,133.14857,139.651653,I,Above,Flat,0,5701,,21.31048284,0,0,,,,1,1,,0.03,nav,1,1975,1,, 28789,NJBF000064371,119 N SUFFOLK AVE,Ventnor City,NJ,39.34432292,-74.47654329,RES1,3001,,17,NE,1962,1962,3102,1,1,1642.743311,1642.743311,3505,NO,16.51,27.69,3,3.64,6106,113.798663,123.543317,133.272218,139.79121,I,Above,Hip,0,5701,,22.09955466,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 28790,NJBF000067029,6000 BURK AVE,Ventnor City,NJ,39.35175065,-74.48756151,RES1,3001,,17,NE,1975,1975,3101,2,1,1614.617872,1614.617872,3505,NO,21.3,28.96,3,-0.88,6106,113.458884,123.264787,132.980228,139.473533,I,Above,Hip,0,5701,,25.13079173,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28791,NJBF000060255,123 N MARTINDALE AVE,Ventnor City,NJ,39.335665,-74.4938345,RES1,3001,,17,NE,1927,1927,3102,2,1,830.9723646,830.9723646,3505,NO,44.35,51.62,3,7.18,6106,113.533719,123.330854,133.040688,139.610952,I,Above,Hip,0,5701,,47.9868433,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 28792,NJBF000060205,121 N MARTINDALE AVE,Ventnor City,NJ,39.33558187,-74.49378078,RES1,3001,,17,NE,1920,1920,3102,3,1,944.7942911,944.7942911,3505,NO,54.06,61.68,3,3.43,6106,113.536062,123.332742,133.042614,139.613279,I,Above,Hip,0,5701,,57.86773229,0,0,,,,1,1,,0.03,nav,1,1920,3,, 28793,NJBF000062964,140 N PORTLAND AVE,Ventnor City,NJ,39.34060178,-74.48439952,RES1,3001,,28,NE,1930,1930,3102,2,1,1385.631655,1385.631655,3505,NO,39.82,52.18,3,3.44,6106,113.674721,123.443912,133.163728,139.713935,I,Above,Flat,0,5701,,46.00170892,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28794,NJBF000065998,501 N SUFFOLK AVE,Ventnor City,NJ,39.3486505,-74.4800645,RES1,3001,,17,NE,1975,1975,3102,2,1,1558.658073,1558.658073,3507,NO,21.48,28.32,1,-0.47,6106,113.664621,123.432855,133.157347,139.659588,I,Above,Flat,0,5701,,24.89815423,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28795,NJBF000062212,218 N ROSBOROUGH AVE,Ventnor City,NJ,39.33900755,-74.49187972,RES1,3001,,17,NE,1948,1948,3102,1,1,1456.895324,1456.895324,3505,NO,17.53,23.07,3,2.86,6106,113.530991,123.328318,133.040364,139.59802,I,Above,Hip,0,5701,,20.30283389,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 28796,NJBF000060311,20 S TROY AVE,Ventnor City,NJ,39.33575419,-74.48488249,RES1,3001,,17,NE,1920,1920,3102,2,1,1008.043454,1008.043454,3505,NO,28.65,37.84,3,5.2,6106,113.729968,123.489133,133.207867,139.784282,I,Above,Hip,0,5701,,33.24363755,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28797,NJBF000066714,813 N HARVARD AVE,Ventnor City,NJ,39.35055586,-74.48958636,RES1,3001,,17,NE,1977,1977,3101,2,1,1873.295002,1873.295002,3505,NO,34.31,44.04,3,-1.86,6106,113.429204,123.241704,132.955223,139.455479,I,Above,Gable,0,5701,,39.17591109,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 28798,NJBF000062886,6010 WINCHESTER AVE,Ventnor City,NJ,39.34043712,-74.47945092,RES1,3001,,18,NE,1960,1960,3102,2,1,2883.549923,2883.549923,3505,NO,29.17,41.93,3,-2.42,6106,113.786126,123.534094,133.259405,139.804772,I,Above,Hip,0,5701,,35.54638652,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 28799,NJBF000062957,3 N DERBY AVE,Ventnor City,NJ,39.34057613,-74.478448,RES1,3001,,18,NE,1962,1962,3102,2,1,1881.546045,1881.546045,3505,NO,37.23,46.91,3,3.8,6106,113.806371,123.550481,133.276959,139.81977,I,Above,Gable,0,5701,,42.06974885,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 28800,NJBF000066686,812 N HARVARD AVE,Ventnor City,NJ,39.35046954,-74.49001354,RES1,3001,,18,NE,1992,1992,3102,2,1,2180.059089,2180.059089,3505,NO,29.62,39.47,3,4.34,6106,113.420803,123.235003,132.948088,139.448888,I,Above,Hip,0,5701,,34.54102949,0,1.2,,,,1,1,,0.03,nav,1,1992,2,, 28801,NJBF000066726,809 N CAMBRIDGE AVE,Ventnor City,NJ,39.35058592,-74.48871602,RES1,3001,,17,NE,1974,1974,3101,1,1,1745.12512,1745.12512,3505,NO,24.22,31.91,3,8.75,6106,113.44813,123.256915,132.971357,139.471178,I,Above,Gable,0,5701,,28.06630188,0,0,,,,1,1,,0.03,nav,1,1974,1,, 28802,NJBF000066332,608 N DUDLEY AVE,Ventnor City,NJ,39.34948809,-74.48384346,RES1,3001,,17,NE,1970,1970,3102,2,1,1090.970368,1090.970368,3507,NO,37.85,51.22,1,0.31,6106,113.570232,123.356053,133.076066,139.578413,I,Above,Gable,0,5701,,44.53613231,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28803,NJBF000060260,7113 WINCHESTER AVE,Ventnor City,NJ,39.33567442,-74.49157683,RES1,3001,,17,NE,1924,1924,3102,1,1,1518.819867,1518.819867,3505,NO,14.86,23.76,3,0.07,6106,113.583433,123.370885,133.082857,139.655775,I,Above,Hip,0,5701,,19.30957148,0,1.1,,,,1,1,,0.03,nav,1,1924,1,, 28804,NJBF000061347,,Ventnor City,NJ,39.3374825,-74.4862895,RES1,3001,,NaN,NE,1969,0,3102,2,1,1485.038774,1485.038774,3505,NO,25.62,32.62,3,4.54,6106,113.675268,123.444832,133.162354,139.729796,I,Above,Gable,0,5701,,29.12045899,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28805,NJBF000061379,,Ventnor City,NJ,39.33753432,-74.48640794,RES1,3001,,NaN,NE,1940,0,3102,2,1,619.3743426,619.3743426,3505,NO,27.18,39.85,3,1.47,6106,113.671946,123.442145,133.15955,139.726726,I,Above,Hip,0,5701,,33.5121697,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28806,NJBF000061293,,Ventnor City,NJ,39.33738972,-74.48647467,RES1,3001,,NaN,NE,1940,0,3102,2,1,1062.830662,1062.830662,3505,NO,37.02,51.28,3,2.4,6106,113.672434,123.442553,133.15987,139.727788,I,Above,Gable,0,5701,,44.14890911,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28807,NJBF000066367,605 N OXFORD AVE,Ventnor City,NJ,39.34958105,-74.48255572,RES1,3001,,17,NE,1974,1974,3102,2,1,1552.705204,1552.705204,3507,NO,25.92,34.94,1,0.8,6106,113.597531,123.378062,133.099531,139.600059,I,Above,Gable,0,5701,,30.42563151,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28808,NJBF000061208,6805 WINCHESTER AVE,Ventnor City,NJ,39.33723609,-74.48829217,RES1,3001,,17,NE,1941,1941,3102,2,1,1119.371726,1119.371726,3505,NO,27.56,34.81,3,0.87,6106,113.634444,123.411908,133.127341,139.695599,I,Above,Flat,0,5701,,31.18679196,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 28809,NJBF000063510,5709 WINCHESTER AVE,Ventnor City,NJ,39.3419008,-74.47663539,RES1,3001,,17,NE,1925,1925,3102,1,1,2369.000059,2369.000059,3505,NO,18.2,28.54,3,3.75,6106,113.828646,123.568294,133.296998,139.829003,I,Above,Gable,0,5701,,23.37089521,0,0,,,,1,1,,0.03,nav,1,1925,1,, 28810,NJBF000063467,5711 WINCHESTER AVE,Ventnor City,NJ,39.341805,-74.4766845,RES1,3001,,NaN,NE,1940,1940,3102,2,1,1411.522573,1411.522573,3505,NO,28.1,33.65,3,6.42,6106,113.82882,123.568456,133.297095,139.829718,I,Above,Hip,0,5701,,30.87241166,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28811,NJBF000065468,413 N DUDLEY AVE,Ventnor City,NJ,39.34716343,-74.48150262,RES1,3001,,17,NE,1969,1969,3102,1,1,1497.819323,1497.819323,3505,NO,10.67,22.87,3,-1.36,6106,113.652043,123.423391,133.146351,139.658423,I,Above,Gable,0,5701,,16.77286091,0,0,,,,1,1,,0.03,nav,1,1969,1,, 28812,NJBF000066276,606 N DUDLEY AVE,Ventnor City,NJ,39.34935143,-74.48374366,RES1,3001,,17,NE,1969,1969,3102,2,1,1069.335073,1069.335073,3507,NO,25.17,31.91,1,-0.25,6106,113.574185,123.359324,133.07947,139.582442,I,Above,Flat,0,5701,,28.53725424,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28813,NJBF000066352,615 N DORSET AVE,Ventnor City,NJ,39.34953919,-74.48425062,RES1,3001,,17,NE,1970,1970,3102,1,1,3011.607251,3011.607251,3507,NO,19.33,26.6,1,1.87,6106,113.560542,123.348197,133.067741,139.570196,I,Above,Gable,0,5701,,22.96527006,0,1.2,,,,1,1,,0.03,nav,1,1970,1,, 28814,NJBF000066657,,Ventnor City,NJ,39.35038496,-74.48018417,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1830.413621,1830.413621,3505,NO,17.85,22.86,3,3.55,6106,113.639718,123.411739,133.135862,139.629155,I,Above,Gable,0,5701,,20.35374699,0,0,,,,1,1,,0.03,nav,1,1969,1,, 28815,NJBF000066704,,Ventnor City,NJ,39.35052264,-74.48031778,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1165.766892,1165.766892,3505,NO,17.55,27.5,3,-1.25,6106,113.634993,123.407832,133.131774,139.624534,I,Above,Hip,0,5701,,22.52415444,0,0,,,,1,1,,0.03,nav,1,1969,1,, 28816,NJBF000066933,807 N DERBY AVE,Ventnor City,NJ,39.35134988,-74.48672457,RES1,3001,,17,NE,1974,1974,3101,2,1,1823.883355,1823.883355,3505,NO,39.97,51.97,3,1.02,6106,113.482552,123.284136,133.000586,139.495476,I,Above,Gable,0,5701,,45.97205983,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28817,NJBF000062209,104 S DUDLEY AVE,Ventnor City,NJ,39.33900241,-74.47523674,RES1,3001,,20,NE,2005,2005,3102,3,1,2388.469465,2388.469465,3505,NO,39.97,45.15,3,0.95,6106,113.898192,123.625243,133.355319,139.899179,I,Above,Hip,0,5701,,42.56310063,0,0,,,,1,1,,0.03,nav,1,2005,3,, 28818,NJBF000066499,709 N BURGHLEY AVE,Ventnor City,NJ,39.34990917,-74.48644401,RES1,3001,,17,NE,1967,1967,3101,2,1,1690.351383,1690.351383,3505,NO,34.83,43.17,3,8.23,6106,113.507199,123.304933,133.021972,139.524161,I,Above,Flat,0,5701,,38.99829391,0,0,,,,1,1,,0.03,nav,1,1967,2,, 28819,NJBF000066311,706 N BURGHLEY AVE,Ventnor City,NJ,39.3494545,-74.48660851,RES1,3001,,17,NE,1975,1975,3101,2,1,1752.821259,1752.821259,3505,NO,36.96,49.81,3,3.78,6106,113.509373,123.306958,133.023895,139.528547,I,Above,Gable,0,5701,,43.38130645,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28820,NJBF000062889,8 S DUDLEY AVE,Ventnor City,NJ,39.34044378,-74.4763258,RES1,3001,,18,NE,1925,1925,3102,3,1,1937.527313,1937.527313,3505,NO,41.8,49.18,3,7.24,6106,113.85488,123.589869,133.318822,139.85785,I,Above,Hip,0,5701,,45.49168633,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 28821,NJBF000065435,401 N SOMERSET AVE,Ventnor City,NJ,39.34707457,-74.47964252,RES1,3001,,17,NE,1970,1970,3102,1,1,1446.223361,1446.223361,3505,NO,19.79,29.5,3,6.46,6106,113.694295,123.45764,133.182771,139.69272,I,Above,Gable,0,5701,,24.64691479,0,0,,,,1,1,,0.03,nav,1,1970,1,, 28822,NJBF000066306,715 N HARVARD AVE,Ventnor City,NJ,39.3494435,-74.4886445,RES1,3001,,17,NE,1985,1985,3101,1,1,1270.06018,1270.06018,3505,NO,12.59,21.52,3,-1.3,6106,113.464377,123.270713,132.98545,139.491123,I,Above,Hip,0,5701,,17.05564197,0,0,,,,1,1,,0.03,nav,1,1985,1,, 28823,NJBF000066078,612 N DERBY AVE,Ventnor City,NJ,39.34885344,-74.48521748,RES1,3001,,17,NE,1968,1968,3101,2,1,1764.936577,1764.936577,3505,NO,21.24,36.01,3,-1.06,6106,113.547974,123.33844,133.057005,139.563861,I,Above,Flat,0,5701,,28.6248376,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 28824,NJBF000066407,608 N OXFORD AVE,Ventnor City,NJ,39.34968345,-74.48312794,RES1,3001,,17,NE,1974,1974,3102,2,1,1459.148482,1459.148482,3507,NO,28.42,33.83,1,-0.06,6106,113.58356,123.36671,133.087508,139.588117,I,Above,Gable,0,5701,,31.12605726,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 28825,NJBF000062292,215 N LAFAYETTE AVE,Ventnor City,NJ,39.33916179,-74.49325055,RES1,3001,,17,NE,1990,1990,3102,2,1,1507.663812,1507.663812,3505,NO,37.04,47.34,3,2.75,6106,113.498574,123.30221,133.012949,139.568792,I,Above,Flat,0,5701,,42.19101891,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 28826,NJBF000066575,806 N HARVARD AVE,Ventnor City,NJ,39.35012892,-74.48973166,RES1,3001,,18,NE,1994,1994,3102,2,1,1671.701797,1671.701797,3505,NO,35.04,47.98,3,1.7,6106,113.431436,123.243777,132.95723,139.459704,I,Above,Hip,0,5701,,41.50985899,0,1.2,,,,1,1,,0.03,nav,1,1994,2,, 28827,NJBF000064415,3 N HILLSIDE AVE,Ventnor City,NJ,39.34443461,-74.4704576,RES1,3001,,17,NE,1940,1940,3102,1,1,1652.686603,1652.686603,3507,NO,15.53,22.03,1,2.6,6106,113.931182,123.651111,133.387559,139.89067,I,Above,Hip,0,5701,,18.78145073,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28828,NJBF000060262,13 N LAFAYETTE AVE,Ventnor City,NJ,39.33567606,-74.48988279,RES1,3001,,17,NE,1924,1924,3102,2,1,1292.457769,1292.457769,3505,NO,23.78,31.37,3,0.03,6106,113.620781,123.400987,133.114608,139.689189,I,Above,Hip,0,5701,,27.5752304,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 28829,NJBF000060372,16 N WYOMING AVE,Ventnor City,NJ,39.33586822,-74.48968621,RES1,3001,,17,NE,1930,1930,3102,1,1,1745.233177,1745.233177,3505,NO,16.27,30.18,3,1.69,6106,113.622478,123.402348,133.116194,139.690075,I,Above,Flat,0,5701,,23.22449752,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 28830,NJBF000066297,620 N DORSET AVE,Ventnor City,NJ,39.34941609,-74.48481032,RES1,3001,,17,NE,1949,1949,3101,1,1,1909.626523,1909.626523,3505,NO,22.39,31.07,3,3.78,6106,113.549741,123.339547,133.058482,139.562063,I,Above,Hip,0,5701,,26.7323307,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 28831,NJBF000065993,609 N BURGHLEY AVE,Ventnor City,NJ,39.3486415,-74.48541736,RES1,3001,,17,NE,1975,1975,3101,2,1,2190.700579,2190.700579,3505,NO,38.06,45.9,3,3.82,6106,113.546279,123.337189,133.055562,139.56368,I,Above,Gable,0,5701,,41.98143813,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 28832,NJBF000058639,102 S MELBOURNE AVE,Ventnor City,NJ,39.33265448,-74.48896814,RES1,3001,,17,NE,1930,1930,3102,2,1,2215.038069,2215.038069,3505,NO,29.82,35.47,3,8.13,6110,113.682914,123.451051,133.164971,139.753262,I,Above,Hip,0,5701,,32.6474657,0,1.2,,,,1,1,,0.35,nav,1,1930,2,, 28833,NJBF000066327,607 N DUDLEY AVE,Ventnor City,NJ,39.3494768,-74.48334679,RES1,3001,,17,NE,1974,1974,3102,1,1,1776.363953,1776.363953,3507,NO,18.4,24.16,1,0.99,6106,113.581356,123.365047,133.085625,139.587542,I,Above,Flat,0,5701,,21.2811306,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 28834,NJBF000065991,605 N DERBY AVE,Ventnor City,NJ,39.3486345,-74.48451831,RES1,3001,,17,NE,1990,1990,3101,2,1,1466.172974,1466.172974,3505,NO,24.29,33.52,3,1.7,6106,113.566269,123.353327,133.072702,139.580141,I,Above,Gable,0,5701,,28.90766118,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 28835,NJBF000066278,512 N SUFFOLK AVE,Ventnor City,NJ,39.3493535,-74.481117,RES1,3001,,16,NE,1975,1975,3102,2,1,1059.450017,1059.450017,3507,NO,28.47,34.99,1,2.14,6106,113.632296,123.406312,133.129482,139.629468,I,Above,Gable,0,5701,,31.73119147,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 28836,NJBF000066917,,Ventnor City,NJ,39.35130163,-74.48196929,RES1,3001,,NaN,NE,1969,0,3102,2,1,1227.750181,1227.750181,3507,NO,32.64,38.25,1,0.24,6106,113.588543,123.369758,133.091625,139.582453,I,Above,Gable,0,5701,,35.44365108,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28837,NJBF000060216,14 S BUFFALO AVE,Ventnor City,NJ,39.33559256,-74.48621407,RES1,3001,,NaN,NE,1927,1926,3102,2,1,2344.02519,2344.02519,3505,NO,27.75,34.14,3,-0.4,6106,113.702828,123.467206,133.18452,139.761674,I,Above,Flat,0,5701,,30.94308731,0,0,,,,1,1,,0.03,nav,1,1927,2,, 28838,NJBF000065576,5700 FREMONT AVE,Ventnor City,NJ,39.3475036,-74.4814614,RES1,3001,,17,NE,1960,1960,3102,2,1,3071.781373,3071.781373,3505,NO,28.19,36.79,3,6.14,6106,113.648547,123.420404,133.143382,139.653588,I,Above,Gable,0,5701,,32.48995431,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 28839,NJBF000065969,608 N DERBY AVE,Ventnor City,NJ,39.34858001,-74.48499823,RES1,3001,,17,NE,1968,1968,3101,2,1,1643.988074,1643.988074,3505,NO,21.45,29.22,3,-2.36,6106,113.556348,123.345348,133.064195,139.572315,I,Above,Gable,0,5701,,25.3337613,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 28840,NJBF000066993,700 N VICTORIA AVE,Ventnor City,NJ,39.35162138,-74.48130013,RES3A,3001,,17,NE,1980,1980,3301,2,1,1208.386046,1208.386046,3505,NO,38.8,52.98,3,4.76,6106,113.599299,123.378257,133.100851,139.589188,I,Above,Gable,0,5701,,45.88796636,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28841,NJBF000066324,707 N CORNWALL AVE,Ventnor City,NJ,39.34947045,-74.48696399,RES1,3001,,17,NE,1959,1959,3101,1,1,1162.844746,1162.844746,3505,NO,17.26,25.63,3,0.67,6106,113.50131,123.30045,133.016995,139.521774,I,Above,Gable,0,5701,,21.44722638,0,0,,,,1,1,,0.03,nav,1,1959,1,, 28842,NJBF000060492,17 N WYOMING AVE,Ventnor City,NJ,39.33606173,-74.48930613,RES1,3001,,NaN,NE,1930,1930,3102,2,1,1127.381643,1127.381643,3505,NO,38.38,50.14,3,6.43,6106,113.628188,123.406944,133.121197,139.694485,I,Above,Hip,0,5701,,44.25895295,0,0,,,,1,1,,0.03,nav,1,1930,2,, 28843,NJBF000066537,611 N OXFORD AVE,Ventnor City,NJ,39.35000844,-74.4828863,RES1,3001,,17,NE,1974,1974,3102,2,1,1349.360162,1349.360162,3507,NO,38.93,53.9,1,2.21,6106,113.584752,123.367485,133.088509,139.587155,I,Above,Gable,0,5701,,46.41694039,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28844,NJBF000066335,508 N VICTORIA AVE,Ventnor City,NJ,39.34950025,-74.47953566,RES3A,3001,,17,NE,1986,1986,3301,2,1,2352.632245,2352.632245,3505,NO,32.87,39.99,3,4.6,6106,113.665368,123.433015,133.158031,139.655015,I,Above,Hip,0,5701,,36.42970392,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 28845,NJBF000066275,611 N DORSET AVE,Ventnor City,NJ,39.34935109,-74.48412276,RES1,3001,,17,NE,1974,1974,3102,2,1,1741.038878,1741.038878,3507,NO,36.55,46.11,1,-0.48,6106,113.565792,123.352545,133.072262,139.575589,I,Above,Flat,0,5701,,41.33346269,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 28846,NJBF000065477,5901 FREMONT AVE,Ventnor City,NJ,39.34718385,-74.48303053,RES1,3001,,17,NE,1975,1975,3101,2,1,1310.22056,1310.22056,3505,NO,23.67,38.19,3,2.28,6106,113.617976,123.395831,133.117045,139.630757,I,Above,Gable,0,5701,,30.93152015,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28847,NJBF000058619,106 S PITTSBURGH AVE,Ventnor City,NJ,39.33262232,-74.48822993,RES1,3001,,20,NE,1995,1995,3102,2,1,3467.273532,3467.273532,3505,NO,42.53,54.16,3,7.04,6106,113.699608,123.464528,133.179173,139.768487,I,Above,Hip,0,5701,,48.34545049,0,1.2,,,,1,1,,0.03,nav,1,1995,2,, 28848,NJBF000066356,606 N OXFORD AVE,Ventnor City,NJ,39.34955223,-74.48302091,RES1,3001,,17,NE,1976,1976,3102,2,1,1474.334817,1474.334817,3507,NO,41.33,55.22,1,2.75,6106,113.58761,123.370058,133.090998,139.592184,I,Above,Gable,0,5701,,48.274489,0,0,,,,1,1,,0.03,nav,1,1976,2,, 28849,NJBF000066117,,Ventnor City,NJ,39.34896364,-74.47944723,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2139.047725,2139.047725,3505,NO,20.92,27.36,3,2.96,6106,113.674218,123.440469,133.165655,139.665322,I,Above,Gable,0,5701,,24.13828998,0,0,,,,1,1,,0.03,nav,1,1969,1,, 28850,NJBF000058655,101 S BALTIMORE AVE,Ventnor City,NJ,39.33269144,-74.48926614,RES1,3001,,17,NE,1926,1926,3102,2,1,1727.537349,1727.537349,3505,NO,43.64,57.1,3,6.35,6106,113.675836,123.44534,133.158976,139.746747,I,Above,Gable,0,5701,,50.36907719,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 28851,NJBF000060196,24 S TROY AVE,Ventnor City,NJ,39.33556835,-74.48475381,RES1,3001,,17,NE,1928,1928,3102,2,1,2338.936806,2338.936806,3505,NO,32.92,43.15,3,6.18,6106,113.735345,123.493484,133.212319,139.789702,I,Above,Hip,0,5701,,38.03506213,0,0,,,,1,1,,0.03,nav,1,1928,2,, 28852,NJBF000064224,6 S NASHVILLE AVE,Ventnor City,NJ,39.34393659,-74.46959963,RES1,3001,,17,NE,1925,1925,3102,2,1,1316.923173,1316.923173,3507,NO,38.4,43.8,1,1.01,6106,113.956574,123.671946,133.409473,139.912444,I,Above,Gable,0,5701,,41.0979795,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28853,NJBF000066449,512 N VICTORIA AVE,Ventnor City,NJ,39.34978024,-74.47977727,RES3A,3001,,17,NE,1980,1980,3301,2,1,2003.75583,2003.75583,3505,NO,34.52,42.84,3,4.09,6106,113.656452,123.425639,133.150331,139.646206,I,Above,Flat,0,5701,,38.6803172,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28854,NJBF000061999,112 N RICHARDS AVE,Ventnor City,NJ,39.3386195,-74.4879195,RES1,3001,,17,NE,1985,1985,3102,2,1,766.151046,766.151046,3505,NO,36.3,41.4,3,3.19,6106,113.623776,123.403138,133.119102,139.680544,I,Above,Flat,0,5701,,38.84776509,0,0,,,,1,1,,0.03,nav,1,1985,2,, 28855,NJBF000062472,6619 MONMOUTH AVE,Ventnor City,NJ,39.33953489,-74.48728678,RES1,3001,,18,NE,2011,2011,3102,2,1,1977.924786,1977.924786,3505,NO,29.02,42.63,3,0.69,6106,113.625345,123.404256,133.120947,139.677751,I,Above,Hip,0,5701,,35.82854125,0,1.1,,,,1,1,,0.03,nav,1,2011,2,, 28856,NJBF000065442,415 N OXFORD AVE,Ventnor City,NJ,39.34709559,-74.48058402,RES1,3001,,17,NE,1929,1929,3102,2,1,862.9277062,862.9277062,3505,NO,22.54,28.91,3,-0.27,6106,113.673229,123.440569,133.164598,139.675809,I,Above,Hip,0,5701,,25.72500268,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 28857,NJBF000065744,609 N CAMBRIDGE AVE,Ventnor City,NJ,39.34797203,-74.48664329,RES1,3001,,17,NE,1968,1968,3101,2,1,966.1084735,966.1084735,3505,NO,30.22,43.47,3,3.53,6106,113.527773,123.32262,133.039741,139.552149,I,Above,Gable,0,5701,,36.84118785,0,0,,,,1,1,,0.03,nav,1,1968,2,, 28858,NJBF000061952,111 N TROY AVE,Ventnor City,NJ,39.33853572,-74.48665865,RES1,3001,,17,NE,1940,1940,3102,2,1,1525.410556,1525.410556,3505,NO,43.27,55.3,3,5.88,6106,113.652761,123.426538,133.143795,139.705769,I,Above,Hip,0,5701,,49.28741219,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 28859,NJBF000060202,22 S RICHARDS AVE,Ventnor City,NJ,39.3355795,-74.485454,RES1,3001,,45,NE,1925,1925,3102,3,3,1539.472022,1539.472022,3505,NO,38.97,50.27,3,0.57,6106,113.719756,123.480884,133.198986,139.776325,I,Above,Flat,0,5701,,44.6207136,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 28860,NJBF000060163,24 S RICHARDS AVE,Ventnor City,NJ,39.33550719,-74.48537978,RES1,3001,,17,NE,1925,1925,3102,2,1,1239.573571,1239.573571,3505,NO,28.14,39.5,3,4.27,6106,113.722391,123.483015,133.201181,139.778903,I,Above,Flat,0,5701,,33.81739005,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28861,NJBF000065427,404 N SOMERSET AVE,Ventnor City,NJ,39.34704559,-74.48019194,RES1,3001,,17,NE,1987,1987,3102,1,1,2179.526143,2179.526143,3505,NO,13.36,21.9,3,-1.38,6106,113.682541,123.448132,133.172621,139.683542,I,Above,Flat,0,5701,,17.63060589,0,0,,,,1,1,,0.03,nav,1,1987,1,, 28862,NJBF000066252,505 N SURREY AVE,Ventnor City,NJ,39.34930586,-74.47971568,RES3A,3001,,17,NE,1990,1990,3301,2,1,1802.360212,1802.360212,3505,NO,40.62,52.37,3,5.02,6106,113.663878,123.431912,133.156738,139.655012,I,Above,Gable,0,5701,,46.49538743,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 28863,NJBF000066443,704 N DERBY AVE,Ventnor City,NJ,39.34976846,-74.48594869,RES1,3001,,17,NE,1977,1977,3101,1,1,1110.012291,1110.012291,3505,NO,15.46,28.73,3,0.89,6106,113.519981,123.315326,133.032936,139.535535,I,Above,Hip,0,5701,,22.09466959,0,0,,,,1,1,,0.03,nav,1,1977,1,, 28864,NJBF000064587,222 N SOMERSET AVE,Ventnor City,NJ,39.34485745,-74.47838009,RES1,3001,,17,NE,1940,1940,3102,1,1,921.0957581,921.0957581,3505,NO,16.99,26.18,3,0.35,6106,113.751131,123.504576,133.231288,139.750969,I,Above,Gable,0,5701,,21.58720514,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28865,NJBF000062608,3 S DERBY AVE,Ventnor City,NJ,39.33980724,-74.47776596,RES1,3001,,17,NE,1920,1920,3102,2,1,2153.542819,2153.542819,3505,NO,36.87,42.67,3,2.89,6106,113.831706,123.571156,133.298351,139.84396,I,Above,Flat,0,5701,,39.7717014,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 28866,NJBF000064364,5111 VENTNOR AVE,Ventnor City,NJ,39.34431092,-74.47009996,RES1,3001,,47,NE,1900,1900,3102,2,2,1643.152921,1643.152921,3507,NO,37.75,51.33,1,1.7,6106,113.940678,123.658887,133.395789,139.898452,I,Above,Flat,0,5701,,44.54157485,0,0,,,,1,1,,0.03,nav,1,1900,2,, 28867,NJBF000066196,516 N SOMERSET AVE,Ventnor City,NJ,39.349156,-74.481861,RES1,3001,,17,NE,1958,1958,3102,1,1,1172.848402,1172.848402,3507,NO,11.42,22.3,1,0.68,6106,113.618369,123.39515,133.117481,139.619439,I,Above,Hip,0,5701,,16.85898402,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28868,NJBF000064283,14 S OAKLAND AVE,Ventnor City,NJ,39.34409718,-74.46885562,RES1,3001,,17,NE,1925,1925,3102,2,1,1754.403603,1754.403603,3507,NO,29,38.91,1,-0.05,6106,113.970825,123.68354,133.422035,139.921933,I,Above,Flat,0,5701,,33.95670524,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28869,NJBF000064294,102 S JACKSON AVE,Ventnor City,NJ,39.344128,-74.4653575,RES1,3001,,17,NE,1910,1910,3102,3,3,1533.313421,1533.313421,3504,NO,54.97,65.44,-4,0,6106,114.047236,123.745994,133.489099,139.977252,I,Above,Hip,0,5701,,60.20400423,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 28870,NJBF000066191,706 N CORNWALL AVE,Ventnor City,NJ,39.34915076,-74.48722588,RES1,3001,,17,NE,1965,1965,3101,2,1,1168.050505,1168.050505,3505,NO,33.17,41.82,3,1.02,6106,113.499609,123.299266,133.015579,139.522155,I,Above,Gable,0,5701,,37.49725588,0,0,,,,1,1,,0.03,nav,1,1965,2,, 28871,NJBF000066267,601 N OXFORD AVE,Ventnor City,NJ,39.34933328,-74.48230085,RES1,3001,,17,NE,1972,1972,3102,2,1,1651.943344,1651.943344,3507,NO,36.64,41.71,1,1.58,6106,113.606358,123.385339,133.107137,139.608681,I,Above,Flat,0,5701,,39.17500303,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 28872,NJBF000066220,609 N DORSET AVE,Ventnor City,NJ,39.3492189,-74.48401486,RES1,3001,,17,NE,2015,2015,3102,1,1,1687.584412,1687.584412,3507,NO,16.1,26.35,1,2.04,6106,113.569882,123.355923,133.075781,139.579702,I,Above,Flat,0,5701,,21.22559022,0,0,,,,1,1,,0.03,nav,1,2015,1,, 28873,NJBF000060211,6816 VENTNOR AVE,Ventnor City,NJ,39.33558503,-74.48712477,RES1,3001,737,NaN,NE,1940,1940,3102,1,4,6918.667998,6918.667998,3505,NO,23.4,36.6,3,6.93,6106,113.682857,123.451077,133.167453,139.74433,I,Above,Flat,0,5701,,29.99950353,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28874,NJBF000062988,104 N CAMBRIDGE AVE,Ventnor City,NJ,39.3406465,-74.48152412,RES1,3001,,17,NE,1926,1926,3102,2,2,1622.746491,1622.746491,3505,NO,32.96,45.77,3,6.12,6106,113.737609,123.49476,133.217741,139.765004,I,Above,Flat,0,5701,,39.36710434,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 28875,NJBF000065608,414 N SOMERSET AVE,Ventnor City,NJ,39.34759355,-74.48061115,RES1,3001,,17,NE,1964,1964,3102,2,1,2139.33952,2139.33952,3505,NO,40.24,51.01,3,7.43,6106,113.666172,123.434627,133.158583,139.667187,I,Above,Flat,0,5701,,45.62545009,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 28876,NJBF000062573,117 N BRYANT AVE,Ventnor City,NJ,39.33974052,-74.48542852,RES1,3001,,17,NE,1928,1928,3102,2,1,1442.104015,1442.104015,3505,NO,28.29,34.39,3,5.74,6106,113.663596,123.435094,133.15375,139.709107,I,Above,Gable,0,5701,,31.34042427,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 28877,NJBF000066235,712 N CAMBRIDGE AVE,Ventnor City,NJ,39.34925675,-74.48820016,RES1,3001,,17,NE,1965,1965,3101,1,1,1744.287314,1744.287314,3505,NO,16.59,25.79,3,-0.23,6106,113.476644,123.280702,132.995948,139.502415,I,Above,Hip,0,5701,,21.18945371,0,0,,,,1,1,,0.03,nav,1,1965,1,, 28878,NJBF000066419,509 N VICTORIA AVE,Ventnor City,NJ,39.3497058,-74.47911022,RES3A,3001,,17,NE,1986,1986,3301,2,1,2064.978057,2064.978057,3505,NO,28.6,35.21,3,-1.86,6106,113.672144,123.438395,133.163893,139.659141,I,Above,Gable,0,5701,,31.9027767,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 28879,NJBF000060132,6 S WISSAHICKON AVE,Ventnor City,NJ,39.33545734,-74.48678329,RES1,3001,,45,NE,1925,1925,3102,2,2,1753.009468,1753.009468,3505,NO,36.37,50.02,3,8.72,6106,113.692159,123.458592,133.175296,139.752947,I,Above,Flat,0,5701,,43.19339611,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28880,NJBF000066423,714 N CORNWALL AVE,Ventnor City,NJ,39.34971233,-74.48768055,RES1,3001,,17,NE,1969,1969,3101,2,1,1211.566093,1211.566093,3505,NO,28.18,34,3,5.48,6106,113.4823,123.284985,133.000709,139.5046,I,Above,Gable,0,5701,,31.09039768,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28881,NJBF000065116,18 N VASSAR SQUARE,Ventnor City,NJ,39.34617586,-74.46771648,RES3A,3001,,17,NE,1935,1935,3301,1,1,1517.045853,1517.045853,3505,NO,15.08,28.03,3,-2.69,6106,113.968751,123.681291,133.421345,139.907769,I,Above,Gable,0,5701,,21.55686249,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 28882,NJBF000065945,8.01N DORSET AVE,Ventnor City,NJ,39.34850832,-74.48410985,RES1,3001,,17,NE,1974,1974,3101,2,1,2519.616367,2519.616367,3505,NO,34.29,41.91,3,2.3,6106,113.576943,123.362015,133.081864,139.589614,I,Above,Hip,0,5701,,38.09560726,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28883,NJBF000066090,609 N DERBY AVE,Ventnor City,NJ,39.34888301,-74.48473468,RES1,3001,,17,NE,1983,1983,3101,2,1,1692.701517,1692.701517,3505,NO,24.82,32.97,3,3.43,6106,113.558264,123.346728,133.065826,139.572143,I,Above,Flat,0,5701,,28.89517145,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, 28884,NJBF000061080,105 S SACRAMENTO AVE,Ventnor City,NJ,39.3370253,-74.4796336,RES1,3001,,20,NE,2015,2015,3102,4,1,1914.551167,1914.551167,3505,NO,44.43,59.3,3,-2.39,6106,113.828179,123.568575,133.29325,139.857664,I,Above,Flat,0,5701,,51.8657607,0,1.1,,,,1,1,,0.03,nav,1,2015,4,, 28885,NJBF000066111,605 N DORSET AVE,Ventnor City,NJ,39.3489317,-74.48380153,RES1,3001,,17,NE,1970,1970,3102,1,1,1827.925794,1827.925794,3507,NO,16.86,24.2,1,1.94,6106,113.578293,123.362876,133.083016,139.588248,I,Above,Gable,0,5701,,20.52856604,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 28886,NJBF000064193,105 N SURREY AVE,Ventnor City,NJ,39.3438333,-74.47530464,RES1,3001,,17,NE,2011,2011,3102,3,1,1997.994549,1997.994549,3507,NO,57.97,69.68,1,0.03,6106,113.832394,123.570859,133.301248,139.820111,I,Above,Hip,0,5701,,63.82224186,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, 28887,NJBF000066440,802 N HARVARD AVE,Ventnor City,NJ,39.34975838,-74.48943629,RES1,3001,,18,NE,1987,1987,3102,2,1,2963.558226,2963.558226,3505,NO,26.14,32,3,2.52,6106,113.442772,123.253131,132.96697,139.471266,I,Above,Hip,0,5701,,29.07119747,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 28888,NJBF000066137,6002 WELLINGTON AVE,Ventnor City,NJ,39.34901784,-74.48568341,RES1,3001,,17,NE,1971,1971,3101,2,1,1845.263311,1845.263311,3505,NO,30.55,37.7,3,7.34,6106,113.535523,123.3283,133.046325,139.552657,I,Above,Gable,0,5701,,34.12586548,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 28889,NJBF000066479,511 N VICTORIA AVE,Ventnor City,NJ,39.34985984,-74.47920958,RES3A,3001,,17,NE,1980,1980,3301,2,1,2077.070336,2077.070336,3505,NO,34.97,46.06,3,3.18,6106,113.667962,123.434921,133.160279,139.654876,I,Above,Hip,0,5701,,40.51562252,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28890,NJBF000060616,110 N MELBOURNE AVE,Ventnor City,NJ,39.33627987,-74.49176645,RES1,3001,,17,NE,1930,1930,3102,2,1,998.6674566,998.6674566,3505,NO,34.93,42.5,3,5.57,6106,113.570894,123.360756,133.072634,139.642745,I,Above,Hip,0,5701,,38.71501816,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28891,NJBF000060605,112 N MELBOURNE AVE,Ventnor City,NJ,39.3362675,-74.491899,RES1,3001,,17,NE,1925,1925,3102,2,1,532.8607968,532.8607968,3505,NO,26.57,31.65,3,-2.3,6106,113.568137,123.358536,133.070284,139.640314,I,Above,Hip,0,5701,,29.10999209,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28892,NJBF000066205,604 N DUDLEY AVE,Ventnor City,NJ,39.34919187,-74.4836226,RES1,3001,,17,NE,1972,1972,3102,2,1,1664.414502,1664.414502,3507,NO,38.18,47.36,1,2.37,6106,113.578909,123.36323,133.083536,139.587227,I,Above,Hip,0,5701,,42.76898438,0,0,,,,1,1,,0.03,nav,1,1972,2,, 28893,NJBF000065330,505 N CORNWALL AVE,Ventnor City,NJ,39.34675399,-74.48474324,RES1,3001,,17,NE,1960,1960,3101,2,1,2051.10681,2051.10681,3505,NO,28.19,40.29,3,3.54,6106,113.585689,123.369949,133.089288,139.606839,I,Above,Hip,0,5701,,34.23705812,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 28894,NJBF000067180,718 N VICTORIA AVE,Ventnor City,NJ,39.35245667,-74.48197461,RES3A,3001,,35,NE,1980,1980,3301,2,1,941.1199525,941.1199525,3505,NO,19.38,26.41,3,-2.71,6106,113.573775,123.357048,133.078682,139.563501,I,Above,Gable,0,5701,,22.89666122,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28895,NJBF000066130,709 N HARVARD AVE,Ventnor City,NJ,39.34899661,-74.48834015,RES1,3001,,17,NE,1980,1980,3101,2,1,1473.067791,1473.067791,3505,NO,34.9,45.51,3,3.48,6106,113.476892,123.281054,132.996194,139.504057,I,Above,Flat,0,5701,,40.2054459,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28896,NJBF000066468,610 N OXFORD AVE,Ventnor City,NJ,39.34982741,-74.48325278,RES1,3001,,17,NE,1974,1974,3102,2,1,1160.374824,1160.374824,3507,NO,32.31,41.13,1,0.55,6106,113.578946,123.362898,133.08353,139.583513,I,Above,Gable,0,5701,,36.72055475,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28897,NJBF000059055,101 S LAFAYETTE AVE,Ventnor City,NJ,39.3334565,-74.487664,RES1,3001,,17,NE,1960,1960,3102,1,1,1569.505859,1569.505859,3505,NO,16.01,28.6,3,1.3,6110,113.700448,123.465259,133.180666,139.767103,I,Above,Hip,0,5701,,22.30202627,0,1.1,,,,1,1,,0.35,nav,1,1960,1,, 28898,NJBF000066108,506 N SUFFOLK AVE,Ventnor City,NJ,39.34892966,-74.48075864,RES1,3001,,17,NE,1978,1978,3102,2,1,1143.546787,1143.546787,3507,NO,35.33,43.66,1,2.86,6106,113.645651,123.417349,133.140991,139.64273,I,Above,Hip,0,5701,,39.49624116,0,0,,,,1,1,,0.03,nav,1,1978,2,, 28899,NJBF000065716,503 N DUDLEY AVE,Ventnor City,NJ,39.3479074,-74.48204802,RES1,3001,,17,NE,1963,1963,3102,1,1,1845.092059,1845.092059,3507,NO,14.66,25.81,1,0.99,6106,113.630344,123.405484,133.127747,139.636532,I,Above,Gable,0,5701,,20.23181266,0,0,,,,1,1,,0.03,nav,1,1963,1,, 28900,NJBF000066422,607 N OXFORD AVE,Ventnor City,NJ,39.34971195,-74.48268474,RES1,3001,,17,NE,1974,1974,3102,2,1,1097.038619,1097.038619,3507,NO,34.25,40.99,1,1.61,6106,113.592995,123.37432,133.095621,139.595603,I,Above,Gable,0,5701,,37.61938018,0,0,,,,1,1,,0.03,nav,1,1974,2,, 28901,NJBF000064183,124 N SOMERSET AVE,Ventnor City,NJ,39.34380028,-74.47753627,RES1,3001,,17,NE,1930,1930,3102,2,1,1094.400358,1094.400358,3505,NO,33.75,45.53,3,0.98,6106,113.78365,123.531289,133.258999,139.782754,I,Above,Gable,0,5701,,39.64112467,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28902,NJBF000064162,303 N CAMBRIDGE AVE,Ventnor City,NJ,39.34374893,-74.48323571,RES1,3001,,17,NE,1958,1958,3102,1,1,1654.392412,1654.392412,3505,NO,16.28,21.63,3,-1.52,6106,113.658482,123.429942,133.151106,139.683392,I,Above,Hip,0,5701,,18.95114064,0,0,,,,1,1,,0.03,nav,1,1958,1,, 28903,NJBF000062839,24 N CAMBRIDGE AVE,Ventnor City,NJ,39.34033516,-74.48127166,RES1,3001,,17,NE,1915,1915,3102,2,1,1483.441785,1483.441785,3505,NO,33.33,40.28,3,6.52,6106,113.74734,123.502697,133.225936,139.774583,I,Above,Gable,0,5701,,36.80523727,0,0,,,,1,1,,0.03,nav,1,1915,2,, 28904,NJBF000066165,608 N DORSET AVE,Ventnor City,NJ,39.34909241,-74.48452666,RES1,3001,,17,NE,1952,1952,3101,1,1,1429.236182,1429.236182,3505,NO,11.68,24.99,3,0.43,6106,113.560178,123.348157,133.067458,139.572502,I,Above,Flat,0,5701,,18.33811126,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 28905,NJBF000064126,5401-5403 EDGEWATER AVE,Ventnor City,NJ,39.34363284,-74.47565137,RES1,3001,,47,NE,1970,1970,3102,2,2,1201.935753,1201.935753,3505,NO,44.17,58.49,3,5.77,6106,113.827404,123.56686,133.296824,139.817518,I,Above,Flat,0,5701,,51.32910626,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28906,NJBF000063360,207 N PRINCETON AVE,Ventnor City,NJ,39.3415025,-74.48392333,RES1,3001,,17,NE,1970,1970,3102,2,1,1157.984734,1157.984734,3505,NO,41.85,53.88,3,3.53,6106,113.67319,123.442471,133.162849,139.707857,I,Above,Gable,0,5701,,47.86890806,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28907,NJBF000062022,15 N NEWPORT AVE,Ventnor City,NJ,39.33866554,-74.48383657,RES1,3001,,17,NE,1925,1925,3102,2,1,1337.931612,1337.931612,3505,NO,37.1,51.76,3,4.47,6106,113.713272,123.475402,133.195664,139.755988,I,Above,Gable,0,5701,,44.43100401,0,0,,,,1,1,,0.03,nav,1,1925,2,, 28908,NJBF000060537,107 S STRATFORD AVE,Ventnor City,NJ,39.33615392,-74.48111061,RES1,3001,,17,NE,1920,1920,3102,3,1,1706.386153,1706.386153,3505,NO,39.98,54.42,3,8.2,6106,113.807545,123.551893,133.274768,139.846329,I,Above,Hip,0,5701,,47.20244283,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 28909,NJBF000066679,6005 MARSHALL AVENUE,Ventnor City,NJ,39.35045049,-74.48741505,RES1,3001,,17,NE,1976,1976,3101,1,1,2052.132174,2052.132174,3505,NO,8.97,20.56,3,-2.5,6106,113.478735,123.281652,132.997527,139.497468,I,Above,Hip,0,5701,,14.76034434,0,0,,,,1,1,,0.03,nav,1,1976,1,, 28910,NJBF000066135,704 N CORNWALL AVE,Ventnor City,NJ,39.34901,-74.487117,RES1,3001,,17,NE,1958,1958,3101,2,1,1024.124987,1024.124987,3505,NO,40.62,49.26,3,8.8,6106,113.503844,123.30276,133.019214,139.526466,I,Above,Hip,0,5701,,44.94023048,0,0,,,,1,1,,0.03,nav,1,1958,2,, 28911,NJBF000065688,505 N DORSET AVE,Ventnor City,NJ,39.34781117,-74.48286597,RES1,3001,,17,NE,2004,2004,3102,2,1,2281.781523,2281.781523,3507,NO,34.94,43.62,1,1.29,6106,113.613491,123.391904,133.113242,139.623454,I,Above,Hip,0,5701,,39.28072993,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 28912,NJBF000066141,517 N SOMERSET AVE,Ventnor City,NJ,39.34903247,-74.48122752,RES1,3001,,17,NE,1974,1974,3102,1,1,1679.034937,1679.034937,3507,NO,12.03,26.1,1,-0.51,6106,113.633966,123.407837,133.130919,139.63274,I,Above,Gable,0,5701,,19.06654405,0,0,,,,1,1,,0.03,nav,1,1974,1,, 28913,NJBF000063004,105 N HARVARD AVE,Ventnor City,NJ,39.34067864,-74.481824,RES1,3001,,28,NE,1910,1910,3102,2,1,1269.907729,1269.907729,3505,NO,23.6,33.38,3,-1.16,6106,113.730548,123.489038,133.211686,139.759133,I,Above,Flat,0,5701,,28.49195349,0,0,,,,1,1,,0.03,nav,1,1910,2,, 28914,NJBF000062969,101 N HARVARD AVE,Ventnor City,NJ,39.34061381,-74.48175628,RES1,3001,,17,NE,1920,1920,3102,2,1,710.0960786,710.0960786,3505,NO,29.05,34.38,3,6.96,6106,113.73292,123.490971,133.21369,139.761412,I,Above,Flat,0,5701,,31.71767272,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28915,NJBF000065868,504 N SOMERSET AVE,Ventnor City,NJ,39.34831333,-74.48117497,RES1,3001,,17,NE,1970,1970,3102,2,1,1378.73686,1378.73686,3507,NO,24.04,29.07,1,2.64,6106,113.644404,123.416657,133.139885,139.645436,I,Above,Gable,0,5701,,26.5505464,0,0,,,,1,1,,0.03,nav,1,1970,2,, 28916,NJBF000060128,5 S NEWARK AVE,Ventnor City,NJ,39.3354485,-74.48705852,RES1,3001,,18,NE,1925,1925,3102,1,1,1562.090053,1562.090053,3505,NO,21.44,30.9,3,5.47,6106,113.686199,123.45378,133.170199,139.747777,I,Above,Gable,0,5701,,26.16997168,0,0,,,,1,1,,0.03,nav,1,1925,1,, 28917,NJBF000061958,115 N BUFFALO AVE,Ventnor City,NJ,39.33854663,-74.48813908,RES1,3001,,17,NE,1980,1980,3102,2,1,1515.354933,1515.354933,3505,NO,32.78,46.3,3,6.22,6106,113.619932,123.400049,133.115782,139.677546,I,Above,Gable,0,5701,,39.53862028,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 28918,NJBF000062801,,Ventnor City,NJ,39.34025625,-74.49073938,RES1,3001,,NaN,NE,1969,0,3102,2,1,1421.847969,1421.847969,3505,NO,34.26,43.33,3,2.06,6106,113.539287,123.334756,133.047988,139.600344,I,Above,Flat,0,5701,,38.79472991,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28919,NJBF000064733,25 N HILLSIDE AVE,Ventnor City,NJ,39.34518551,-74.47105616,RES1,3001,,17,NE,1916,1916,3102,1,1,1455.163222,1455.163222,3507,NO,16.65,26.91,1,-0.58,6106,113.908208,123.632171,133.367877,139.868989,I,Above,Hip,0,5701,,21.77739691,0,1.1,,,,1,1,,0.03,nav,1,1916,1,, 28920,NJBF000064699,23 N HILLSIDE AVE,Ventnor City,NJ,39.34510879,-74.47100808,RES1,3001,,17,NE,1920,1920,3102,2,1,1325.455184,1325.455184,3507,NO,25.35,35.9,1,2.08,6106,113.910269,123.633874,133.369639,139.870999,I,Above,Hip,0,5701,,30.62554779,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28921,NJBF000059718,112 S AVOLYN AVE,Ventnor City,NJ,39.33472849,-74.48336251,RES1,3001,,21,NE,2012,2012,3102,3,1,1559.834597,1559.834597,3505,NO,61.2,71.78,3,6.63,6106,113.777542,123.527616,133.247766,139.829272,I,Above,Flat,0,5701,,66.4880842,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, 28922,NJBF000059746,7 N BALTIMORE AVE,Ventnor City,NJ,39.33478283,-74.49093827,RES1,3001,,17,NE,1940,1940,3102,1,1,1710.49096,1710.49096,3505,NO,17.17,27.66,3,-1.67,6106,113.609867,123.392205,133.104645,139.682024,I,Above,Hip,0,5701,,22.41288801,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28923,NJBF000063960,101 N SOMERSET AVE,Ventnor City,NJ,39.34320392,-74.47653467,RES1,3001,,17,NE,1920,1920,3102,2,1,2443.838028,2443.838028,3505,NO,36.14,48.48,3,-2.26,6106,113.813583,123.555751,133.284639,139.809526,I,Above,Hip,0,5701,,42.31040594,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28924,NJBF000064689,4 N AUSTIN AVE,Ventnor City,NJ,39.34509034,-74.46904515,RES1,3001,,17,NE,1920,1920,3102,2,1,1121.569147,1121.569147,3507,NO,36.7,43.42,1,2.14,6106,113.953682,123.669293,133.407584,139.903296,I,Above,Hip,0,5701,,40.06314898,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28925,NJBF000063504,5206 ATLANTIC AVE,Ventnor City,NJ,39.34188966,-74.47008999,COM1,3001,738,NaN,ME,1920,1920,3401,2,1,5322.116674,5322.116674,3507,NO,38.14,44.07,1,0.86,6106,113.972798,123.68559,133.422339,139.93669,I,Above,Flat,0,NaN,,41.10710483,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28926,NJBF000062047,6005 ATLANTIC AVE,Ventnor City,NJ,39.33870856,-74.47798614,RES1,3001,,18,NE,1960,1960,3102,2,1,2277.285719,2277.285719,3505,NO,31.93,44.92,3,0.96,6110,113.841641,123.579355,133.306163,139.858158,I,Above,Gable,0,5701,,38.42398676,0,0,,,,1,1,,0.35,nav,1,1960,2,, 28927,NJBF000065736,510 N DORSET AVE,Ventnor City,NJ,39.34794974,-74.48366161,RES1,3001,,17,NE,2017,2017,3101,2,1,1696.728415,1696.728415,3505,NO,21.39,34.53,3,-1.44,6106,113.594076,123.376144,133.096566,139.606846,I,Above,Gable,0,5701,,27.95845976,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 28928,NJBF000064040,202 N DORSET AVE,Ventnor City,NJ,39.34340853,-74.48000114,RES1,3001,,NaN,NE,1980,1980,3102,2,1,1152.911945,1152.911945,3505,NO,47.24,55.53,3,8.86,6106,113.734427,123.4915,133.216324,139.746444,I,Above,Hip,0,5701,,51.3844666,0,0,,,,1,1,,0.03,nav,1,1980,2,, 28929,NJBF000062320,225 N WYOMING AVE,Ventnor City,NJ,39.33922073,-74.49239321,RES1,3001,,17,NE,1945,1945,3102,1,1,1324.427011,1324.427011,3505,NO,19.42,31.06,3,2.2,6106,113.516747,123.316819,133.028383,139.584659,I,Above,Hip,0,5701,,25.24247482,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 28930,NJBF000064743,6 S VASSAR SQUARE,Ventnor City,NJ,39.34521241,-74.4669487,RES3B,3001,,17,ME,1920,1920,3301,2,1,1432.617321,1432.617321,3504,NO,37.63,50.76,-4,0,6106,113.998136,123.70558,133.446623,139.935159,I,Above,Gable,0,NaN,,44.19626544,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28931,NJBF000063028,133 N PORTLAND AVE,Ventnor City,NJ,39.34073815,-74.48408153,RES1,3001,,28,NE,1940,1940,3102,2,2,628.5129127,628.5129127,3505,NO,43.91,52.66,3,8.95,6106,113.679916,123.448082,133.16825,139.717506,I,Above,Flat,0,5701,,48.28628444,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28932,NJBF000063009,131 N PORTLAND AVE,Ventnor City,NJ,39.34069353,-74.48404199,RES1,3001,,17,NE,1940,1940,3102,2,1,1018.226402,1018.226402,3505,NO,30.3,43.05,3,-2.57,6106,113.68139,123.449282,133.169491,139.718957,I,Above,Flat,0,5701,,36.67318942,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28933,NJBF000062983,129 N PORTLAND AVE,Ventnor City,NJ,39.34064326,-74.48400781,RES1,3001,,28,NE,1940,1940,3102,2,2,768.7552826,768.7552826,3505,NO,28.3,41.32,3,5.01,6106,113.682826,123.450453,133.170696,139.720413,I,Above,Flat,0,5701,,34.81009325,0,0,,,,1,1,,0.03,nav,1,1940,2,, 28934,NJBF000064684,405 N CAMBRIDGE AVE,Ventnor City,NJ,39.34507872,-74.48433066,RES1,3001,,17,NE,1962,1962,3102,1,1,1242.799378,1242.799378,3505,NO,25.06,37.51,3,7.05,6106,113.616735,123.395732,133.115644,139.641768,I,Above,Hip,0,5701,,31.28246069,0,0,,,,1,1,,0.03,nav,1,1962,1,, 28935,NJBF000065832,616 N CAMBRIDGE AVE,Ventnor City,NJ,39.34821352,-74.48734226,RES1,3001,,17,NE,1966,1966,3101,1,1,1357.57985,1357.57985,3505,NO,25.62,31.31,3,6.65,6106,113.509145,123.307476,133.023807,139.53531,I,Above,Flat,0,5701,,28.46207193,0,0,,,,1,1,,0.03,nav,1,1966,1,, 28936,NJBF000064673,14 N NASHVILLE AVE,Ventnor City,NJ,39.34504115,-74.47049786,RES1,3001,,17,NE,1916,1916,3102,2,1,1866.132465,1866.132465,3507,NO,23.93,31.06,1,0.59,6106,113.922375,123.643764,133.38018,139.880427,I,Above,Hip,0,5701,,27.49853538,0,1.1,,,,1,1,,0.03,nav,1,1916,2,, 28937,NJBF000064053,9 N SURREY AVE,Ventnor City,NJ,39.34345214,-74.47311368,RES1,3001,,17,NE,1928,1928,3102,2,1,1458.444709,1458.444709,3505,NO,34.51,41.85,3,8.01,6106,113.885661,123.614278,133.347342,139.862762,I,Above,Gable,0,5701,,38.18108411,0,0,,,,1,1,,0.03,nav,1,1928,2,, 28938,NJBF000065869,606 N BURGHLEY AVE,Ventnor City,NJ,39.34831576,-74.48571238,RES1,3001,,17,NE,2005,2005,3101,2,1,1853.36719,1853.36719,3505,NO,34.8,42.02,3,-1.57,6106,113.543945,123.335481,133.053574,139.563604,I,Above,Gable,0,5701,,38.40949456,0,0,,,,1,1,,0.03,nav,1,2005,2,, 28939,NJBF000063243,,Ventnor City,NJ,39.34121433,-74.4697245,RES3C,3001,,NaN,E,1969,0,3305,8,1,11516.47041,11516.47041,3507,NO,152.94,167.19,1,1.45,6106,113.989807,123.699565,133.436709,139.953095,I,Above,Flat,0,NaN,,160.0675699,0,0,,,,2,2,,0.03,nav,1,1969,8,, 28940,NJBF000059733,11 N SWARTHMORE AVE,Ventnor City,NJ,39.3347574,-74.49163512,RES1,3001,,17,NE,1925,1925,3102,2,1,1233.962944,1233.962944,3505,NO,36.38,41.56,3,7.07,6106,113.594856,123.380107,133.091871,139.668541,I,Above,Hip,0,5701,,38.97273299,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28941,NJBF000059671,9 N SWARTHMORE AVE,Ventnor City,NJ,39.33465373,-74.49157358,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1504.420925,1504.420925,3505,NO,32.07,45.28,3,4.71,6106,113.597631,123.382344,133.094148,139.671309,I,Above,Gable,0,5701,,38.67574559,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 28942,NJBF000062979,6009 WINCHESTER AVE,Ventnor City,NJ,39.34063133,-74.47978537,RES1,3001,,18,NE,1926,1926,3102,2,1,1540.141178,1540.141178,3505,NO,32.11,42.11,3,5.3,6106,113.776163,123.525985,133.25093,139.79579,I,Above,Gable,0,5701,,37.11045778,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 28943,NJBF000064256,209 N DORSET AVE,Ventnor City,NJ,39.34402317,-74.47981516,RES1,3001,,17,NE,1940,1940,3102,1,1,1421.723488,1421.723488,3505,NO,24.73,38.25,3,5.47,6106,113.730427,123.488071,133.213112,139.739638,I,Above,Hip,0,5701,,31.48999686,0,0,,,,1,1,,0.03,nav,1,1940,1,, 28944,NJBF000065147,N SURREY AVE,Ventnor City,NJ,39.34625871,-74.47658136,COM8,3003,,NaN,ME,2000,2000,3401,2,1,8768.444052,8768.444052,3507,NO,22.47,28.22,1,0.4,6106,113.772501,123.521407,133.250235,139.759112,I,Above,Hip,0,NaN,,25.34751905,0,0,,,,1,1,,0.03,nav,1,2000,2,, 28945,NJBF000064714,408 N CAMBRIDGE AVE,Ventnor City,NJ,39.34514386,-74.48487961,RES1,3001,,17,NE,1968,1968,3102,1,1,1597.766839,1597.766839,3505,NO,22.66,34.6,3,3.59,6106,113.603735,123.385209,133.104514,139.630713,I,Above,Flat,0,5701,,28.62865717,0,0,,,,1,1,,0.03,nav,1,1968,1,, 28946,NJBF000064279,9 N WEYMOUTH AVE,Ventnor City,NJ,39.34408568,-74.47118159,RES1,3001,,16,NE,1920,1920,3102,2,1,1798.02614,1798.02614,3507,NO,24.74,39.66,1,-0.25,6106,113.919835,123.641951,133.377464,139.884388,I,Above,Hip,0,5701,,32.19912079,0,0,,,,1,1,,0.03,nav,1,1920,2,, 28947,NJBF000065914,606 N DERBY AVE,Ventnor City,NJ,39.34843,-74.48488728,RES1,3001,,17,NE,1968,1968,3101,2,1,1467.726115,1467.726115,3505,NO,36.02,47.26,3,5.6,6106,113.560745,123.348977,133.067968,139.576789,I,Above,Flat,0,5701,,41.63931368,0,0,,,,1,1,,0.03,nav,1,1968,2,, 28948,NJBF000063536,110 S AMHERST AVE,Ventnor City,NJ,39.34197313,-74.4687327,RES3B,3001,,17,E,1913,1913,3303,2,1,1465.38113,1465.38113,3504,NO,24.89,32.16,-4,0,6106,114.001506,123.709,133.447492,139.957042,I,Above,Hip,0,NaN,,28.52441804,0,1.1,,,,1,1,,0.03,nav,1,1913,2,, 28949,NJBF000064702,16 N NASHVILLE AVE,Ventnor City,NJ,39.34511515,-74.47055244,RES1,3001,,17,NE,1920,1920,3102,2,1,1771.512705,1771.512705,3507,NO,38.11,43.6,1,0.72,6106,113.920221,123.641987,133.378334,139.878372,I,Above,Hip,0,5701,,40.85637893,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28950,NJBF000060527,18 S AVOLYN AVE,Ventnor City,NJ,39.33613726,-74.48438138,RES1,3001,,29,NE,1921,1921,3102,2,1,1664.878913,1664.878913,3505,NO,32.05,40.46,3,4.63,6106,113.735751,123.493796,133.213125,139.787399,I,Above,Flat,0,5701,,36.25533252,0,0,,,,1,1,,0.03,nav,1,1921,2,, 28951,NJBF000063712,144 N DERBY AVE,Ventnor City,NJ,39.3424735,-74.4800025,RES1,3001,,17,NE,1975,1975,3102,2,1,1079.630648,1079.630648,3505,NO,35,46.95,3,8.02,6106,113.746809,123.50179,133.226591,139.761775,I,Above,Hip,0,5701,,40.97500613,0,0,,,,1,1,,0.03,nav,1,1975,2,, 28952,NJBF000063699,5404 VENTNOR AVE,Ventnor City,NJ,39.34242853,-74.47303185,RES1,3001,,17,NE,1946,1946,3102,2,1,1817.575766,1817.575766,3505,NO,27.87,34.34,3,1.25,6106,113.900973,123.626974,133.360081,139.880469,I,Above,Flat,0,5701,,31.10412309,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 28953,NJBF000065581,406 N SUFFOLK AVE,Ventnor City,NJ,39.34751968,-74.47963749,RES1,3001,,17,NE,1969,1969,3102,2,1,1158.09148,1158.09148,3505,NO,25.41,37.67,3,-2.47,6106,113.688656,123.452872,133.177975,139.685555,I,Above,Gable,0,5701,,31.53991228,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28954,NJBF000065622,515 N BURGHLEY AVE,Ventnor City,NJ,39.347629,-74.484587,RES1,3001,,17,NE,1952,1952,3101,1,1,1483.905115,1483.905115,3505,NO,18.15,30.12,3,1.36,6106,113.577761,123.363128,133.082551,139.59535,I,Above,Hip,0,5701,,24.13361998,0,0,,,,1,1,,0.03,nav,1,1952,1,, 28955,NJBF000065658,501 N DUDLEY AVE,Ventnor City,NJ,39.34773413,-74.48193277,RES1,3001,,17,NE,1963,1963,3102,1,1,1207.730829,1207.730829,3507,NO,20.68,28.6,1,1.18,6106,113.635128,123.409438,133.13185,139.641416,I,Above,Hip,0,5701,,24.63735569,0,0,,,,1,1,,0.03,nav,1,1963,1,, 28956,NJBF000062790,5 S DORSET AVE,Ventnor City,NJ,39.3402306,-74.47687574,RES1,3001,,18,NE,1920,1920,3102,2,1,1842.922543,1842.922543,3505,NO,27.92,36.79,3,5.07,6106,113.84562,123.582385,133.310666,139.852081,I,Above,Gable,0,5701,,32.3587489,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 28957,NJBF000063740,608 KINGSLEY DRIVE,Ventnor City,NJ,39.34256827,-74.49456687,RES1,3001,,17,NE,1975,1975,3102,2,1,1546.221162,1546.221162,3505,NO,24.53,39.18,3,2.02,6106,113.423391,123.240946,132.950471,139.48946,I,Above,Flat,0,5701,,31.85209538,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 28958,NJBF000059951,15 N BALTIMORE AVE,Ventnor City,NJ,39.33513183,-74.49122697,RES1,3001,,17,NE,1940,1940,3102,1,1,1425.714623,1425.714623,3505,NO,22.19,29.21,3,6.47,6106,113.598655,123.383165,133.095387,139.670982,I,Above,Hip,0,5701,,25.70098284,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 28959,NJBF000058708,14 S MARTINDALE AVE,Ventnor City,NJ,39.33278372,-74.49191454,RES1,3001,,17,NE,1922,1922,3102,2,1,1709.561333,1709.561333,3505,NO,34.61,45.83,3,7.15,6106,113.616193,123.397235,133.108333,139.692114,I,Above,Hip,0,5701,,40.22237668,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 28960,NJBF000059288,6929 ATLANTIC AVE,Ventnor City,NJ,39.33394889,-74.48767674,RES1,3001,,18,NE,1919,1919,3102,2,1,1752.227034,1752.227034,3505,NO,20.08,34.62,3,-1.11,6110,113.693313,123.459517,133.175018,139.759259,I,Above,Flat,0,5701,,27.34756057,0,1.1,,,,1,1,,0.35,nav,1,1919,2,, 28961,NJBF000059530,15 S WYOMING AVE,Ventnor City,NJ,39.33441841,-74.48794713,RES1,3001,,17,NE,1930,1930,3102,2,1,1580.390625,1580.390625,3505,NO,39.17,50.43,3,6.51,6106,113.680861,123.449474,133.164799,139.746696,I,Above,Hip,0,5701,,44.80316657,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28962,NJBF000060002,19 S WISSAHICKON AVE,Ventnor City,NJ,39.33522499,-74.48615467,RES1,3001,,17,NE,1930,1930,3102,2,1,1249.560976,1249.560976,3505,NO,29.38,42.25,3,2.13,6106,113.709197,123.472358,133.189667,139.768691,I,Above,Hip,0,5701,,35.8171198,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28963,NJBF000060003,8 N LAFAYETTE AVE,Ventnor City,NJ,39.33522551,-74.49002866,RES1,3001,,17,NE,1950,1950,3102,1,1,1633.677581,1633.677581,3505,NO,15.61,27.41,3,4.32,6106,113.623778,123.403416,133.116819,139.693262,I,Above,Hip,0,5701,,21.51303199,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 28964,NJBF000059925,16 S WISSAHICKON AVE,Ventnor City,NJ,39.3350847,-74.48647697,RES1,3001,,17,NE,1928,1928,3102,2,1,1430.657692,1430.657692,3505,NO,31.93,39.11,3,4.5,6106,113.704032,123.468188,133.185138,139.764749,I,Above,Hip,0,5701,,35.51654376,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 28965,NJBF000059875,18 S WISSAHICKON AVE,Ventnor City,NJ,39.33499603,-74.48639191,RES1,3001,,17,NE,1938,1938,3102,2,1,1251.517947,1251.517947,3505,NO,33.96,39.92,3,-2.94,6106,113.707133,123.470693,133.187714,139.767799,I,Above,Hip,0,5701,,36.94255786,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 28966,NJBF000059958,6 N LAFAYETTE AVE,Ventnor City,NJ,39.33514312,-74.48995266,RES1,3001,,18,NE,2017,2017,3102,3,1,1075.0138,1075.0138,3505,NO,49.04,57.43,3,-1.99,6106,113.626602,123.405695,133.119158,139.696039,I,Above,Hip,0,5701,,53.23627571,0,0,,,,1,1,,0.03,nav,1,2017,3,, 28967,NJBF000059922,7 N MELBOURNE AVE,Ventnor City,NJ,39.335082,-74.49032891,RES1,3001,,17,NE,1918,1918,3102,2,1,1074.747895,1074.747895,3505,NO,34.68,43.82,3,1.85,6106,113.619154,123.39969,133.112775,139.689545,I,Above,Hip,0,5701,,39.25440283,0,1.1,,,,1,1,,0.03,nav,1,1918,2,, 28968,NJBF000060009,20 N BALTIMORE AVE,Ventnor City,NJ,39.33523603,-74.49176441,RES1,3001,,17,NE,1935,1935,3102,2,1,1155.04774,1155.04774,3505,NO,31.68,41.66,3,5.25,6106,113.585368,123.372457,133.084179,139.658729,I,Above,Hip,0,5701,,36.67143566,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 28969,NJBF000060006,25 S BUFFALO AVE,Ventnor City,NJ,39.33522815,-74.48546371,RES1,3001,,17,NE,1920,1920,3102,2,1,1339.654913,1339.654913,3505,NO,31.58,44.04,3,8.49,6106,113.724381,123.484628,133.202655,139.781809,I,Above,Hip,0,5701,,37.81097996,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28970,NJBF000058757,5 S FREDERICKSBURG AVE,Ventnor City,NJ,39.33288017,-74.4923051,RES1,3001,,19,NE,2008,2008,3102,3,1,1059.283061,1059.283061,3505,NO,52.54,65.14,3,-0.65,6106,113.606256,123.389232,133.099983,139.682854,I,Above,Flat,0,5701,,58.84288456,0,0,,,,1,1,,0.03,nav,1,2008,3,, 28971,NJBF000059771,101 N MARTINDALE AVE,Ventnor City,NJ,39.33481979,-74.49316747,RES1,3001,,17,NE,1922,1922,3102,2,1,915.5072523,915.5072523,3505,NO,38.9,48.53,3,0.75,6106,113.560187,123.352179,133.062503,139.636977,I,Above,Gable,0,5701,,43.71821536,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 28972,NJBF000059735,,Ventnor City,NJ,39.33475867,-74.49236609,RES1,3001,,NaN,NE,1969,0,3102,2,1,1101.493125,1101.493125,3505,NO,43.54,55.72,3,8.97,6106,113.578705,123.367094,133.078162,139.653918,I,Above,Hip,0,5701,,49.6307507,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28973,NJBF000059778,1 N MELBOURNE AVE,Ventnor City,NJ,39.33483184,-74.48991427,RES1,3001,,17,NE,1926,1926,3102,2,1,893.7203734,893.7203734,3505,NO,35.77,49.84,3,-2.23,6106,113.631768,123.409864,133.12331,139.701582,I,Above,Hip,0,5701,,42.80182993,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 28974,NJBF000059770,1 N MELBOURNE AVE,Ventnor City,NJ,39.33481921,-74.49010224,RES1,3001,,17,NE,1926,1926,3102,2,1,1594.296353,1594.296353,3505,NO,38.57,51.04,3,8.62,6106,113.627803,123.406666,133.119926,139.698061,I,Above,Hip,0,5701,,44.80219694,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 28975,NJBF000058744,19A S WASHINGTON AVE,Ventnor City,NJ,39.33285662,-74.49083711,RES1,3001,,19,NE,1986,1986,3102,3,1,995.521746,995.521746,3505,NO,64.08,72.77,3,7.17,6106,113.638918,123.415565,133.12771,139.712767,I,Above,Hip,0,5701,,68.42564172,0,0,,,,1,1,,0.03,nav,1,1986,3,, 28976,NJBF000059873,105 S TROY AVE,Ventnor City,NJ,39.33499266,-74.48382896,RES1,3001,,20,NE,2015,2015,3102,3,1,1905.701268,1905.701268,3505,NO,54.4,65.21,3,-2.92,6106,113.763631,123.516364,133.23607,139.816319,I,Above,Hip,0,5701,,59.80665894,0,0,,,,1,1,,0.03,nav,1,2015,3,, 28977,NJBF000059929,104 S AVOLYN AVE,Ventnor City,NJ,39.33508944,-74.48360745,RES1,3001,,17,NE,1985,1985,3102,2,1,1942.353177,1942.353177,3505,NO,41.9,50.18,3,3,6106,113.767198,123.519249,133.239211,139.818861,I,Above,Flat,0,5701,,46.04380863,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 28978,NJBF000059887,7005 VENTNOR AVE,Ventnor City,NJ,39.33502374,-74.48924456,RES1,3001,,17,NE,1920,1920,3102,1,1,1595.572783,1595.572783,3505,NO,14.45,28.3,3,-2.97,6106,113.643861,123.419616,133.133758,139.711824,I,Above,Hip,0,5701,,21.37749521,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 28979,NJBF000059601,115 S TROY AVE,Ventnor City,NJ,39.334526,-74.483428,RES1,3001,,18,NE,1960,1960,3102,2,1,1847.60901,1847.60901,3505,NO,42.06,53.94,3,7.71,6106,113.778897,123.528709,133.248747,139.831377,I,Above,Flat,0,5701,,48.00034335,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 28980,NJBF000058706,7207 ATLANTIC AVE,Ventnor City,NJ,39.33278107,-74.49012749,RES1,3001,,17,NE,1920,1920,3102,2,1,1560.135798,1560.135798,3505,NO,27.81,36.6,3,2.07,6110,113.655618,123.429032,133.141846,139.72815,I,Above,Hip,0,5701,,32.20586435,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 28981,NJBF000059857,105 N MARTINDALE AVE,Ventnor City,NJ,39.33497247,-74.49328548,RES1,3001,,17,NE,1922,1922,3102,2,1,832.7884982,832.7884982,3505,NO,28.8,43.22,3,-0.25,6106,113.555472,123.348381,133.05862,139.632344,I,Above,Flat,0,5701,,36.00811306,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 28982,NJBF000059837,100 N WASHINGTON AVE,Ventnor City,NJ,39.33494046,-74.49300438,RES1,3001,,17,NE,1948,1948,3102,2,1,1296.33688,1296.33688,3505,NO,28.84,40.31,3,7.22,6106,113.562116,123.353732,133.064229,139.638447,I,Above,Hip,0,5701,,34.57278544,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, 28983,NJBF000059892,110 N MARTINDALE AVE,Ventnor City,NJ,39.33503264,-74.49378319,RES1,3001,,17,NE,1927,1927,3102,2,1,814.5500326,814.5500326,3505,NO,39.37,47.39,3,8.2,6106,113.543636,123.338851,133.048636,139.621456,I,Above,Gable,0,5701,,43.37980114,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 28984,NJBF000059885,12 S NEWARK AVE,Ventnor City,NJ,39.33502099,-74.48721834,RES1,3001,,17,NE,1920,1920,3102,2,1,1320.07216,1320.07216,3505,NO,29.75,39.29,3,-1.97,6106,113.688585,123.455713,133.171892,139.751462,I,Above,Hip,0,5701,,34.52144002,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 28985,NJBF000059865,7007 VENTNOR AVE,Ventnor City,NJ,39.33498054,-74.48937159,RES1,3001,,20,NE,2009,2009,3102,2,1,1411.804448,1411.804448,3505,NO,25.13,35.2,3,0.71,6106,113.641656,123.417838,133.131846,139.709988,I,Above,Hip,0,5701,,30.16567318,0,0,,,,1,1,,0.03,nav,1,2009,2,, 28986,NJBF000059888,109 S AVOLYN AVE,Ventnor City,NJ,39.33502789,-74.48311785,RES1,3001,,17,NE,1925,1925,3102,3,1,1306.376101,1306.376101,3505,NO,46.46,57.79,3,0.27,6106,113.778804,123.52864,133.249114,139.828859,I,Above,Hip,0,5701,,52.12297147,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 28987,NJBF000059894,16 N BALTIMORE AVE,Ventnor City,NJ,39.33503635,-74.49161282,RES1,3001,,17,NE,1928,1928,3102,2,1,1352.944862,1352.944862,3505,NO,19.14,26.03,3,-2.08,6106,113.591471,123.377377,133.089211,139.664764,I,Above,Hip,0,5701,,22.58458379,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 28988,NJBF000059559,7B N WASHINGTON AVE,Ventnor City,NJ,39.33446214,-74.49215095,RES1,3001,,28,NE,1950,1950,3102,1,1,2879.098141,2879.098141,3505,NO,18.02,31.81,3,6.81,6106,113.587575,123.374239,133.085457,139.662662,I,Above,Flat,0,5701,,24.91611086,0,0,,,,1,1,,0.03,nav,1,1950,1,, 28989,NJBF000059882,30 S BUFFALO AVE,Ventnor City,NJ,39.33501293,-74.48575784,RES1,3001,,19,NE,1983,1983,3102,2,1,1530.939812,1530.939812,3505,NO,44.54,58.91,3,7.53,6106,113.720867,123.48179,133.199471,139.779669,I,Above,Hip,0,5701,,51.72589264,0,0,,,,1,1,,0.03,nav,1,1983,2,, 28990,NJBF000058775,102 S PITTSBURGH AVE,Ventnor City,NJ,39.33291634,-74.48845544,RES1,3001,,17,NE,1923,1923,3102,2,1,1374.197819,1374.197819,3505,NO,23.23,33.05,3,-0.59,6110,113.690552,123.457236,133.171727,139.759602,I,Above,Hip,0,5701,,28.13880145,0,1.1,,,,1,1,,0.35,nav,1,1923,2,, 28991,NJBF000059877,13 N BALTIMORE AVE,Ventnor City,NJ,39.33499908,-74.49110102,RES1,3001,,18,NE,1935,1935,3102,1,1,3459.502495,3459.502495,3505,NO,15.32,20.75,3,2.87,6106,113.603277,123.386892,133.099213,139.675506,I,Above,Flat,0,5701,,18.03494771,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 28992,NJBF000059796,9 N BALTIMORE AVE,Ventnor City,NJ,39.334869,-74.49101843,RES1,3001,,17,NE,1950,1950,3102,2,1,1364.168747,1364.168747,3505,NO,40.54,46.22,3,7.7,6106,113.60691,123.389822,133.102199,139.679129,I,Above,Gable,0,5701,,43.37885562,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 28993,NJBF000059557,106 S RICHARDS AVE,Ventnor City,NJ,39.33445382,-74.48458262,RES1,3001,,18,NE,2006,2006,3102,2,1,1744.282722,1744.282722,3505,NO,38.95,53.4,3,1.24,6106,113.754462,123.508943,133.22774,139.810964,I,Above,Hip,0,5701,,46.17416303,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 28994,NJBF000058718,7205 ATLANTIC AVE,Ventnor City,NJ,39.3328035,-74.490025,RES1,3001,,17,NE,1920,1920,3102,2,1,1080.614256,1080.614256,3505,NO,33.02,46.57,3,0.45,6110,113.657557,123.430597,133.143516,139.729875,I,Above,Flat,0,5701,,39.79167402,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 28995,NJBF000058783,25 S SWARTHMORE AVE,Ventnor City,NJ,39.33294073,-74.49020545,RES1,3001,,19,NE,1948,1948,3102,2,1,1340.099563,1340.099563,3505,NO,28.3,38.16,3,-2.4,6110,113.651664,123.425853,133.138628,139.72423,I,Above,Gable,0,5701,,33.23190871,0,1.1,,,,1,1,,0.35,nav,1,1948,2,, 28996,NJBF000059881,,Ventnor City,NJ,39.3350095,-74.49072833,RES1,3001,,NaN,NE,1969,0,3102,2,1,1211.860907,1211.860907,3505,NO,30.57,39.91,3,-0.81,6106,113.611366,123.393412,133.106095,139.682757,I,Above,Hip,0,5701,,35.23934535,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28997,NJBF000059814,,Ventnor City,NJ,39.3348935,-74.49068818,RES1,3001,,NaN,NE,1969,0,3102,2,1,1738.817902,1738.817902,3505,NO,35.4,42.53,3,2.37,6106,113.613855,123.39542,133.108122,139.685318,I,Above,Flat,0,5701,,38.96738197,0,0,,,,1,1,,0.03,nav,1,1969,2,, 28998,NJBF000059784,16 S NEWARK AVE,Ventnor City,NJ,39.33484348,-74.48707458,RES1,3001,,17,NE,1930,1930,3102,2,1,1621.377834,1621.377834,3505,NO,31.96,40.41,3,2.97,6106,113.694196,123.460244,133.176536,139.757041,I,Above,Hip,0,5701,,36.18561853,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 28999,NJBF000059901,4 N LAFAYETTE AVE,Ventnor City,NJ,39.33505025,-74.48989536,RES1,3001,,17,NE,1930,1930,3102,2,1,1185.64359,1185.64359,3505,NO,40.42,54.26,3,6.7,6106,113.629168,123.407766,133.12127,139.698613,I,Above,Hip,0,5701,,47.34095043,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29000,NJBF000059818,103 N MARTINDALE AVE,Ventnor City,NJ,39.33489885,-74.49321963,RES1,3001,,17,NE,1922,1922,3102,2,1,788.4377266,788.4377266,3505,NO,32.07,39.12,3,4.28,6106,113.55792,123.350353,133.060641,139.634736,I,Above,Flat,0,5701,,35.59560176,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 29001,NJBF000059180,7 S SWARTHMORE AVE,Ventnor City,NJ,39.33371533,-74.49082274,RES1,3001,,17,NE,1910,1910,3102,2,1,1408.848472,1408.848472,3505,NO,33.77,44.72,3,4.1,6106,113.627249,123.406201,133.118546,139.700377,I,Above,Hip,0,5701,,39.24898942,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 29002,NJBF000063537,"FRED & WASH, MARS",Ventnor City,NJ,39.34198192,-74.50057162,IND2,3002,,NaN,ME,1990,1990,3401,1,1,1071.658668,1071.658668,3507,NO,13.31,24.37,1,-0.85,6106,113.298113,123.140676,132.844813,139.380323,I,Above,Gable,0,NaN,,18.84262261,0,0,,,,1,1,,0.03,nav,1,1990,1,, 29003,NJBF000059189,9 S BALTIMORE AVE,Ventnor City,NJ,39.33373566,-74.49011012,RES1,3001,,17,NE,1940,1940,3102,1,1,1678.887536,1678.887536,3505,NO,11.13,17.91,3,-1.6,6106,113.642669,123.418638,133.131679,139.714307,I,Above,Hip,0,5701,,14.5190375,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 29004,NJBF000059577,116 S AVOLYN AVE,Ventnor City,NJ,39.33448709,-74.48316186,RES1,3001,,20,NE,1995,1995,3102,2,1,1664.50211,1664.50211,3505,NO,38.36,46.81,3,3.52,6106,113.78529,123.533881,133.254196,139.836923,I,Above,Hip,0,5701,,42.5828544,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 29005,NJBF000058924,101 S PITTSBURGH AVE,Ventnor City,NJ,39.33319055,-74.48820228,RES1,3001,,16,NE,1958,1958,3102,2,1,1525.155187,1525.155187,3505,NO,21.87,35.12,3,-2.27,6110,113.692289,123.458657,133.173464,139.760491,I,Above,Hip,0,5701,,28.49306672,0,0.1,,,,1,1,,0.35,nav,1,1958,2,, 29006,NJBF000058503,110 S PITTSBURGH AVE,Ventnor City,NJ,39.33242716,-74.48806665,RES1,3001,,19,NE,1990,1990,3102,2,1,2378.176311,2378.176311,3505,NO,39.68,50.83,3,8.55,6106,113.70592,123.469609,133.184369,139.774648,I,Above,Flat,0,5701,,45.25437527,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 29007,NJBF000058967,14 S BALTIMORE AVE,Ventnor City,NJ,39.3332808,-74.49019963,RES1,3001,,17,NE,1910,1910,3102,2,1,1530.308136,1530.308136,3505,NO,46.83,55.84,3,8.91,6106,113.647028,123.422133,133.134989,139.7193,I,Above,Flat,0,5701,,51.33886308,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 29008,NJBF000058957,107 S PHILADELPHIA AVE,Ventnor City,NJ,39.33326171,-74.48679744,RES1,3001,,20,NE,2012,2012,3102,3,1,2129.624513,2129.624513,3505,NO,45.14,53.45,3,0.19,6110,113.722237,123.482849,133.199091,139.787154,I,Above,Hip,0,5701,,49.29263702,0,0,,,,1,1,,0.35,nav,1,2012,3,, 29009,NJBF000059365,12 S LAFAYETTE AVE,Ventnor City,NJ,39.33410036,-74.4891252,RES1,3001,,17,NE,1920,1920,3102,2,1,1296.449073,1296.449073,3505,NO,31.54,38.03,3,-2.23,6106,113.659314,123.432077,133.146161,139.728381,I,Above,Hip,0,5701,,34.7857474,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29010,NJBF000059321,14 S LAFAYETTE AVE,Ventnor City,NJ,39.33400119,-74.48906406,RES1,3001,,17,NE,1920,1920,3102,2,1,1410.233953,1410.233953,3505,NO,36.49,47.25,3,-0.19,6106,113.662033,123.434269,133.148393,139.731098,I,Above,Hip,0,5701,,41.87366156,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29011,NJBF000059295,106 S WISSAHICKON AV,Ventnor City,NJ,39.33395651,-74.48564416,RES1,3001,,18,NE,1925,1925,3102,3,1,1841.901738,1841.901738,3505,NO,60.21,68.1,3,2.09,6110,113.737975,123.4956,133.213183,139.798697,I,Above,Hip,0,5701,,64.15581655,0,1.1,,,,1,1,,0.35,nav,1,1925,3,, 29012,NJBF000059588,105 S BUFFALO AVE,Ventnor City,NJ,39.33450341,-74.48486661,RES1,3001,,17,NE,1925,1925,3102,2,1,1251.071706,1251.071706,3505,NO,26.42,32.8,3,1.29,6110,113.747532,123.50334,133.221849,139.804803,I,Above,Hip,0,5701,,29.60968243,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 29013,NJBF000059309,109 S WISSAHICKON AV,Ventnor City,NJ,39.33398154,-74.48519916,RES1,3001,,20,NE,1960,1960,3102,2,1,1899.179762,1899.179762,3505,NO,32.13,39.29,3,-0.18,6106,113.747427,123.503241,133.221292,139.806841,I,Above,Gable,0,5701,,35.70914183,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29014,NJBF000058929,11 S WASHINGTON AVE,Ventnor City,NJ,39.33319867,-74.49113466,RES1,3001,,17,NE,1925,1925,3102,2,1,1369.040803,1369.040803,3505,NO,21.66,34.63,3,-0.52,6106,113.627573,123.406437,133.118372,139.70176,I,Above,Hip,0,5701,,28.14847273,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29015,NJBF000058548,21 S MARTINDALE AVE,Ventnor City,NJ,39.33250123,-74.49125291,RES1,3001,,17,NE,1925,1925,3102,2,1,1389.810384,1389.810384,3505,NO,21.56,31.85,3,-1.82,6110,113.634738,123.412167,133.12383,139.709565,I,Above,Hip,0,5701,,26.7029662,0,0,,,,1,1,,0.35,nav,1,1925,2,, 29016,NJBF000059540,7102 VENTNOR AVE,Ventnor City,NJ,39.3344275,-74.4895195,RES1,3001,,17,NE,1905,1905,3102,2,1,1357.591229,1357.591229,3505,NO,27.45,37.45,3,3.31,6106,113.646069,123.421397,133.135156,139.715571,I,Above,Gable,0,5701,,32.44970926,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 29017,NJBF000059572,7100 VENTNOR AVE,Ventnor City,NJ,39.33448222,-74.48940984,RES1,3001,,17,NE,1905,1905,3102,2,1,1390.38684,1390.38684,3505,NO,36.03,50.1,3,3.44,6106,113.647731,123.422738,133.136616,139.716906,I,Above,Hip,0,5701,,43.06295282,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 29018,NJBF000058508,7202 ATLANTIC AVE,Ventnor City,NJ,39.33243553,-74.48979121,RES1,3001,,17,NE,1930,1930,3102,1,1,1735.365169,1735.365169,3505,NO,18.61,29.43,3,5.08,6110,113.667842,123.438869,133.151928,139.739957,I,Above,Flat,0,5701,,24.02052781,0,1.1,,,,1,1,,0.35,nav,1,1930,1,, 29019,NJBF000058944,108 S ROSBOROUGH AVE,Ventnor City,NJ,39.33321975,-74.48651206,RES1,3001,,20,NE,2000,2000,3102,2,1,1714.492753,1714.492753,3505,NO,31.29,43.21,3,4.02,6110,113.729095,123.488388,133.204911,139.793395,I,Above,Hip,0,5701,,37.2484049,0,1.1,,,,1,1,,0.35,nav,1,2000,2,, 29020,NJBF000058529,109 S MELBOURNE AVE,Ventnor City,NJ,39.33247201,-74.48835287,RES1,3001,,20,NE,1980,1980,3102,3,1,1277.579102,1277.579102,3505,NO,50.18,64.59,3,2.07,6106,113.698996,123.464021,133.178507,139.768263,I,Above,Hip,0,5701,,57.38472987,0,1.1,,,,1,1,,0.03,nav,1,1980,3,, 29021,NJBF000059326,6 N WASHINGTON AVE,Ventnor City,NJ,39.33401638,-74.4922585,RES1,3001,,17,NE,1954,1954,3102,2,1,1328.073727,1328.073727,3505,NO,26.29,33.97,3,-2.16,6106,113.591402,123.377314,133.088346,139.667134,I,Above,Gable,0,5701,,30.12967555,0,0,,,,1,1,,0.03,nav,1,1954,2,, 29022,NJBF000058890,7117 ATLANTIC AVE,Ventnor City,NJ,39.33312616,-74.48943281,RES1,3001,,18,NE,1920,1920,3102,3,1,1177.180907,1177.180907,3505,NO,54.65,60.4,3,4.34,6110,113.666085,123.4375,133.151072,139.736947,I,Above,Gable,0,5701,,57.52317395,0,1.1,,,,1,1,,0.35,nav,1,1920,3,, 29023,NJBF000058608,111 S PITTSBURGH AVE,Ventnor City,NJ,39.33260214,-74.48773835,RES1,3001,,16,NE,1925,1925,3102,2,1,2074.180097,2074.180097,3505,NO,25.29,39.03,3,-1.64,6106,113.710718,123.473498,133.188631,139.778593,I,Above,Hip,0,5701,,32.15999403,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29024,NJBF000059194,2 S BALTIMORE AVE,Ventnor City,NJ,39.33374793,-74.49058069,RES1,3001,,17,NE,1955,1925,3102,2,1,7652.920246,7652.920246,3505,NO,25.33,33.19,3,2.72,6106,113.632123,123.410132,133.122718,139.704723,I,Above,Hip,0,5701,,29.25806649,0,0.1,,,,1,1,,0.03,nav,1,1955,2,, 29025,NJBF000059277,21 S LAFAYETTE AVE,Ventnor City,NJ,39.333914,-74.4884655,RES1,3001,,17,NE,1925,1925,3102,2,1,1763.455301,1763.455301,3505,NO,27.52,38.47,3,1.31,6110,113.676417,123.445875,133.160577,139.744256,I,Above,Gable,0,5701,,32.99256746,0,0.1,,,,1,1,,0.35,nav,1,1925,2,, 29026,NJBF000059150,22 S LAFAYETTE AVE,Ventnor City,NJ,39.33365468,-74.48875251,RES1,3001,,17,NE,1947,1947,3102,2,1,1341.116589,1341.116589,3505,NO,31.29,40.38,3,-2.45,6110,113.673695,123.443668,133.158029,139.742524,I,Above,Gable,0,5701,,35.8362497,0,1.1,,,,1,1,,0.35,nav,1,1947,2,, 29027,NJBF000059018,20 S MELBOURNE AVE,Ventnor City,NJ,39.33337921,-74.48941373,RES1,3001,,17,NE,1920,1920,3102,2,1,1187.988903,1187.988903,3505,NO,46.77,58.66,3,8.26,6106,113.662976,123.435005,133.148652,139.733543,I,Above,Hip,0,5701,,52.71598137,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29028,NJBF000059575,10 S WYOMING AVE,Ventnor City,NJ,39.33448484,-74.48856078,RES1,3001,,17,NE,1930,1930,3102,2,1,1168.608404,1168.608404,3505,NO,35.74,49.13,3,-1.47,6106,113.666402,123.437804,133.152526,139.733604,I,Above,Hip,0,5701,,42.43580443,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29029,NJBF000059081,11 S SWARTHMORE AVE,Ventnor City,NJ,39.333508,-74.4906545,RES1,3001,,17,NE,1930,1930,3102,2,1,1530.654692,1530.654692,3505,NO,30.9,37.61,3,0.6,6106,113.633837,123.411504,133.123968,139.706819,I,Above,Hip,0,5701,,34.25598738,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29030,NJBF000058586,103 S BALTIMORE AVE,Ventnor City,NJ,39.33256928,-74.48915811,RES1,3001,,18,NE,2008,2008,3102,3,1,1295.446565,1295.446565,3505,NO,57.04,67.34,3,8.91,6110,113.679919,123.448627,133.162339,139.750712,I,Above,Hip,0,5701,,62.19176622,0,0,,,,1,1,,0.35,nav,1,2008,3,, 29031,NJBF000058925,19 S SWARTHMORE AVE,Ventnor City,NJ,39.333191,-74.49037413,RES1,3001,,17,NE,1952,1952,3102,2,1,1424.042767,1424.042767,3505,NO,32.24,40.19,3,-2.05,6106,113.64445,123.420049,133.132716,139.717149,I,Above,Hip,0,5701,,36.21278358,0,0,,,,1,1,,0.03,nav,1,1952,2,, 29032,NJBF000059001,103 S LAFAYETTE AVE,Ventnor City,NJ,39.3333436,-74.48758235,RES1,3001,,20,NE,2016,2016,3102,3,1,1417.39985,1417.39985,3505,NO,35.5,50.37,3,-1.48,6110,113.703812,123.46797,133.183435,139.770436,I,Above,Hip,0,5701,,42.93165101,0,0,,,,1,1,,0.35,nav,1,2016,3,, 29033,NJBF000059122,16 S MELBOURNE AVE,Ventnor City,NJ,39.33360128,-74.48958888,RES1,3001,,17,NE,1925,1925,3102,2,1,1327.614012,1327.614012,3505,NO,33.12,41.41,3,8.9,6106,113.656029,123.42941,133.142933,139.726722,I,Above,Hip,0,5701,,37.26503577,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29034,NJBF000058256,7300 ATLANTIC AVE,Ventnor City,NJ,39.33198307,-74.49065054,RES1,3001,,17,NE,1922,1922,3102,2,1,1603.525652,1603.525652,3505,NO,29.52,34.81,3,1.67,6106,113.655257,123.428671,133.140785,139.729178,I,Above,Gable,0,5701,,32.1647836,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 29035,NJBF000058461,7303 ATLANTIC AVE,Ventnor City,NJ,39.33236254,-74.49101868,RES1,3001,,NaN,NE,1925,1938,3102,2,1,2678.231162,2678.231162,3505,NO,44.68,56.55,3,6.04,6110,113.641825,123.417872,133.129726,139.71628,I,Above,Flat,0,5701,,50.61701624,0,0,,,,1,1,,0.35,nav,1,1925,2,, 29036,NJBF000057941,110 S WASHINGTON AVE,Ventnor City,NJ,39.33141045,-74.49015338,RES1,3001,,20,NE,2015,2015,3102,4,1,1644.331291,1644.331291,3505,NO,55.12,60.65,3,7.14,6106,113.674265,123.443948,133.156393,139.747412,I,Above,Hip,0,5701,,57.88552142,0,1.1,,,,1,1,,0.03,nav,1,2015,4,, 29037,NJBF000058067,106 S WASHINGTON AVE,Ventnor City,NJ,39.33165181,-74.49035139,RES1,3001,,20,NE,1930,1930,3102,3,1,2563.422234,2563.422234,3505,NO,48.52,63.47,3,-0.28,6106,113.666507,123.437715,133.150033,139.739971,I,Above,Flat,0,5701,,55.99698299,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 29038,NJBF000061043,303 N FREDERICKSBURG,Ventnor City,NJ,39.33696077,-74.49577714,RES1,3001,,17,NE,1963,1963,3103,2,1,1207.455734,1207.455734,3505,NO,41.6,49.27,3,7.62,6106,113.472904,123.281859,132.990073,139.552604,I,Above,Gable,0,5701,,45.43382654,0,0,,,,1,1,,0.03,nav,1,1963,2,, 29039,NJBF000058454,111 S MELBOURNE AVE,Ventnor City,NJ,39.33235032,-74.4882445,RES1,3001,,17,NE,1977,1977,3102,2,1,1739.538058,1739.538058,3505,NO,25.94,33.52,3,3.94,6106,113.7031,123.467325,133.181889,139.772253,I,Above,Gable,0,5701,,29.7332657,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 29040,NJBF000058314,107 S SWARTHMORE AVE,Ventnor City,NJ,39.33207644,-74.48947704,RES1,3001,,19,NE,1930,1930,3102,2,1,1534.040908,1534.040908,3505,NO,31.04,37.16,3,4.5,6106,113.679796,123.448484,133.161761,139.751518,I,Above,Hip,0,5701,,34.10130445,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29041,NJBF000058176,107 S WASHINGTON AVE,Ventnor City,NJ,39.33184048,-74.49002167,RES1,3001,,18,NE,1911,1911,3102,2,1,1202.538783,1202.538783,3505,NO,34.95,44.13,3,8.05,6106,113.671109,123.441449,133.154134,139.743933,I,Above,Gable,0,5701,,39.53777464,0,1.1,,,,1,1,,0.03,nav,1,1911,2,, 29042,NJBF000057884,107 S FREDERICKSBURG,Ventnor City,NJ,39.33131844,-74.49107464,RES1,3001,,18,NE,1926,1926,3102,2,1,1353.930699,1353.930699,3505,NO,32.3,41.91,3,7.69,6106,113.655271,123.428608,133.140143,139.730027,I,Above,Gable,0,5701,,37.10817183,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 29043,NJBF000059240,9 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33383414,-74.49310104,RES1,3001,,17,NE,1984,1930,3102,2,1,1324.214562,1324.214562,3505,NO,29.48,34.63,3,6.16,6106,113.575375,123.364397,133.074602,139.652898,I,Above,Hip,0,5701,,32.05409106,0,0,,,,1,1,,0.03,nav,1,1984,2,, 29044,NJBF000058391,25 S FREDERICKSBURG,Ventnor City,NJ,39.33223357,-74.49179444,RES1,3001,,20,NE,1925,1925,3102,2,1,1594.919306,1594.919306,3505,NO,31.25,38.13,3,7.53,6106,113.626568,123.405556,133.11664,139.702479,I,Above,Gable,0,5701,,34.69114199,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29045,NJBF000058008,103 S FREDERICKSBURG,Ventnor City,NJ,39.33155226,-74.49123894,RES1,3001,,17,NE,1935,1935,3102,2,1,1750.132635,1750.132635,3505,NO,29.7,37.75,3,5.48,6106,113.648369,123.423068,133.134508,139.72341,I,Above,Hip,0,5701,,33.72455398,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 29046,NJBF000059149,5 N FREDERICKSBURG,Ventnor City,NJ,39.33365452,-74.49293906,RES1,3001,,20,NE,2005,2005,3102,2,1,2570.664918,2570.664918,3505,NO,41.89,52.25,3,5.86,6106,113.581446,123.369281,133.079602,139.658784,I,Above,Flat,0,5701,,47.06871213,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 29047,NJBF000058440,23 S FREDERICKSBURG,Ventnor City,NJ,39.3323215,-74.4918785,RES1,3001,,17,NE,1930,1930,3102,2,1,1511.220891,1511.220891,3505,NO,24.53,33.27,3,2.76,6106,113.623497,123.403087,133.114113,139.699535,I,Above,Hip,0,5701,,28.90303789,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29048,NJBF000057888,111 S MARTINDALE,Ventnor City,NJ,39.33133279,-74.4903514,RES1,3001,,19,NE,1999,1999,3102,2,1,1364.040904,1364.040904,3505,NO,37.37,46.7,3,2.26,6106,113.670991,123.441296,133.153529,139.74449,I,Above,Gable,0,5701,,42.03805161,0,0.1,,,,1,1,,0.03,nav,1,1999,2,, 29049,NJBF000059462,21 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33429465,-74.49346846,RES1,3001,,17,NE,1950,1950,3102,2,1,2296.174802,2296.174802,3505,NO,39.14,47.4,3,3.26,6106,113.560853,123.352712,133.062662,139.638729,I,Above,Hip,0,5701,,43.27223825,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 29050,NJBF000059402,19 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33418653,-74.49338484,RES1,3001,,17,NE,1926,1926,3102,3,1,1021.773713,1021.773713,3505,NO,39.89,47.67,3,1.21,6106,113.564189,123.355397,133.065404,139.641992,I,Above,Hip,0,5701,,43.77984681,0,1.1,,,,1,1,,0.03,nav,1,1926,3,, 29051,NJBF000059312,13 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33398652,-74.49321265,RES1,3001,,17,NE,1925,1925,3102,2,1,750.4840008,750.4840008,3505,NO,25.83,36.57,3,4.29,6106,113.570771,123.360693,133.070823,139.648396,I,Above,Hip,0,5701,,31.19913108,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29052,NJBF000058035,111 S WASHINGTON AVE,Ventnor City,NJ,39.3315855,-74.489827,RES1,3001,,18,NE,1970,1970,3102,3,1,1467.34669,1467.34669,3505,NO,57.03,66.49,3,-0.28,6106,113.678966,123.447762,133.160571,139.751506,I,Above,Flat,0,5701,,61.76066107,0,0,,,,1,1,,0.03,nav,1,1970,3,, 29053,NJBF000058076,7310 ATLANTIC AVE,Ventnor City,NJ,39.33166189,-74.49135041,RES1,3001,,17,NE,1925,1925,3102,3,1,1663.800618,1663.800618,3505,NO,48.9,58.29,3,-1.08,6106,113.644378,123.419862,133.131225,139.719607,I,Above,Hip,0,5701,,53.59616762,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 29054,NJBF000059521,8 N SWARTHMORE AVE,Ventnor City,NJ,39.33439669,-74.4918275,RES1,3001,,17,NE,1925,1925,3102,1,1,1674.291806,1674.291806,3505,NO,19.26,34.25,3,4.62,6106,113.595623,123.380724,133.092239,139.670114,I,Above,Hip,0,5701,,26.75660688,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29055,NJBF000064754,227 N SURREY AVE,Ventnor City,NJ,39.3452508,-74.47644861,RES1,3001,,17,NE,1980,1980,3102,1,1,2158.161766,2158.161766,3507,NO,15.51,26.23,1,-0.97,6106,113.788568,123.534818,133.263831,139.777739,I,Above,Hip,0,5701,,20.87146146,0,1.1,,,,1,1,,0.03,nav,1,1980,1,, 29056,NJBF000063216,118 N CAMBRIDGE AVE,Ventnor City,NJ,39.3411377,-74.48189178,RES1,3001,,17,NE,1925,1925,3102,2,1,1001.794834,1001.794834,3505,NO,35.19,40.87,3,7.83,6106,113.722899,123.482753,133.205354,139.750372,I,Above,Hip,0,5701,,38.03200853,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29057,NJBF000064239,112 N SURREY AVE,Ventnor City,NJ,39.34396976,-74.47589031,RES1,3001,,17,NE,1930,1930,3102,1,1,1363.788203,1363.788203,3505,NO,24.24,29.65,3,7.08,6106,113.817699,123.558882,133.288565,139.808022,I,Above,Gable,0,5701,,26.94250886,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 29058,NJBF000064274,116 N SURREY AVE,Ventnor City,NJ,39.3440706,-74.47601834,RES1,3001,,17,NE,1940,1940,3102,1,1,1480.374987,1480.374987,3505,NO,18.68,28.33,3,5.38,6106,113.813549,123.555482,133.285012,139.804218,I,Above,Hip,0,5701,,23.50506058,0,0,,,,1,1,,0.03,nav,1,1940,1,, 29059,NJBF000061270,103 N NEWARK AVE,Ventnor City,NJ,39.33735325,-74.48862916,RES1,3001,,17,NE,1960,1960,3102,1,1,1280.834626,1280.834626,3505,NO,15.99,23.22,3,3.01,6106,113.625405,123.404605,133.119712,139.687247,I,Above,Gable,0,5701,,19.60107126,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 29060,NJBF000061178,6807 WINCHESTER AVE,Ventnor City,NJ,39.3371938,-74.48848272,RES1,3001,,17,NE,1954,1954,3102,2,1,2301.079479,2301.079479,3505,NO,31.94,40.23,3,-0.89,6106,113.630804,123.408975,133.12421,139.69259,I,Above,Hip,0,5701,,36.08196324,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 29061,NJBF000065603,516 N BURGHLEY AVE,Ventnor City,NJ,39.3475745,-74.48511473,RES1,3001,,17,NE,1961,1961,3101,2,1,2817.347533,2817.347533,3505,NO,42.1,50.42,3,8.39,6106,113.566771,123.354284,133.073127,139.586626,I,Above,Hip,0,5701,,46.26017961,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 29062,NJBF000061257,204 N MELBOURNE AVE,Ventnor City,NJ,39.33733054,-74.49259484,RES1,3001,,17,NE,1960,1960,3102,2,1,1411.297663,1411.297663,3505,NO,27.97,37.65,3,5.91,6106,113.538123,123.334284,133.045497,139.610169,I,Above,Hip,0,5701,,32.8104757,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 29063,NJBF000062347,6417 WINCHESTER AVE,Ventnor City,NJ,39.33926524,-74.48413636,RES1,3001,,17,NE,1940,1940,3102,2,1,1012.21966,1012.21966,3505,NO,29.94,40.63,3,5.18,6106,113.698568,123.463429,133.183428,139.740694,I,Above,Hip,0,5701,,35.28471132,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29064,NJBF000065584,606 N CAMBRIDGE AVE,Ventnor City,NJ,39.3475285,-74.4867805,RES1,3001,,17,NE,1974,1974,3101,2,1,1061.742766,1061.742766,3505,NO,27.1,33.82,3,1.79,6106,113.530489,123.325039,133.042066,139.556865,I,Above,Gable,0,5701,,30.45801215,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29065,NJBF000061230,101 S SACRAMENTO AVE,Ventnor City,NJ,39.33727364,-74.47982986,RES1,3001,,17,NE,1922,1922,3102,3,1,1672.94164,1672.94164,3505,NO,39.19,51.85,3,0.98,6106,113.820477,123.562318,133.286812,139.85019,I,Above,Flat,0,5701,,45.52078005,0,1.1,,,,1,1,,0.03,nav,1,1922,3,, 29066,NJBF000064276,5600 MONMOUTH AVE,Ventnor City,NJ,39.34407772,-74.4776722,RES1,3001,,17,NE,1929,1929,3102,2,1,1180.954759,1180.954759,3505,NO,24.03,29.21,3,-1.17,6106,113.776989,123.525801,133.253353,139.775889,I,Above,Gable,0,5701,,26.61941706,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 29067,NJBF000065542,604 N CAMBRIDGE AVE,Ventnor City,NJ,39.34739323,-74.4866831,RES1,3001,,17,NE,1965,1965,3101,2,1,1353.7797,1353.7797,3505,NO,39.6,50.06,3,6.6,6106,113.534406,123.328266,133.045415,139.560873,I,Above,Hip,0,5701,,44.82695302,0,0,,,,1,1,,0.03,nav,1,1965,2,, 29068,NJBF000063677,19 S VICTORIA AVE,Ventnor City,NJ,39.34236145,-74.47130945,RES1,3001,,18,NE,1925,1925,3102,2,1,1344.812607,1344.812607,3505,NO,30.58,40.11,3,4.33,6106,113.93977,123.658582,133.393832,139.909643,I,Above,Hip,0,5701,,35.34621315,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 29069,NJBF000064041,18 S NASHVILLE AVE,Ventnor City,NJ,39.34341012,-74.46918944,RES1,3001,,17,NE,1925,1925,3102,2,1,1405.663841,1405.663841,3505,NO,33.41,41.03,3,3.04,6106,113.97253,123.685084,133.423109,139.927337,I,Above,Gable,0,5701,,37.21761161,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29070,NJBF000065530,409 N SOMERSET AVE,Ventnor City,NJ,39.34735182,-74.47987397,RES1,3001,,17,NE,1965,1965,3102,1,1,2802.471813,2802.471813,3505,NO,15.94,27.7,3,3.69,6106,113.685597,123.45047,133.175308,139.684136,I,Above,Hip,0,5701,,21.82410689,0,0,,,,1,1,,0.03,nav,1,1965,1,, 29071,NJBF000066487,602 N SUFFOLK AVE,Ventnor City,NJ,39.34988554,-74.48156236,RES1,3001,,17,NE,1972,1972,3102,2,1,1700.862449,1700.862449,3507,NO,22.54,27.9,1,-0.56,6106,113.615617,123.392517,133.115092,139.612842,I,Above,Gable,0,5701,,25.21910918,0,0,,,,1,1,,0.03,nav,1,1972,2,, 29072,NJBF000065579,507 N DERBY AVE,Ventnor City,NJ,39.34751472,-74.48362385,RES1,3001,,17,NE,1963,1963,3101,1,1,1180.386891,1180.386891,3505,NO,15.43,25.73,3,-0.93,6106,113.600556,123.381596,133.102108,139.614654,I,Above,Gable,0,5701,,20.58177525,0,0,,,,1,1,,0.03,nav,1,1963,1,, 29073,NJBF000060173,8 N WYOMING AVE,Ventnor City,NJ,39.33552866,-74.48940413,RES1,3001,,NaN,NE,1969,0,3102,2,1,1498.259871,1498.259871,3505,NO,42.79,49.45,3,5.44,6106,113.633376,123.411149,133.125219,139.700876,I,Above,Hip,0,5701,,46.12106257,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 29074,NJBF000065570,409 N SUFFOLK AVE,Ventnor City,NJ,39.34748555,-74.47898733,RES1,3001,,17,NE,1952,1952,3102,2,1,820.5906392,820.5906392,3505,NO,23,37.26,3,1.27,6106,113.703456,123.464881,133.190755,139.697496,I,Above,Gable,0,5701,,30.13130172,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 29075,NJBF000065574,409 N SUFFOLK AVE,Ventnor City,NJ,39.34748935,-74.47913351,RES1,3001,,17,NE,1952,1952,3102,2,1,1634.943983,1634.943983,3505,NO,23.67,30.01,3,0.41,6106,113.70017,123.462216,133.187916,139.694877,I,Above,Gable,0,5701,,26.83628608,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 29076,NJBF000064038,6201 CALVERT AVE,Ventnor City,NJ,39.3434005,-74.4834895,RES1,3001,,17,NE,1966,1966,3102,2,1,1771.566655,1771.566655,3505,NO,36.9,48.53,3,4.62,6106,113.657476,123.42924,133.150126,139.684522,I,Above,Gable,0,5701,,42.71359512,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 29077,NJBF000060276,7307 MONMOUTH AVE,Ventnor City,NJ,39.33569824,-74.4943122,RES1,3001,,17,NE,1950,1950,3102,1,1,1193.35418,1193.35418,3505,NO,14.96,20.94,3,3.18,6106,113.522731,123.32201,133.031407,139.600916,I,Above,Gable,0,5701,,17.95056285,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 29078,NJBF000060184,113 S NEWPORT AVE,Ventnor City,NJ,39.33555072,-74.48133371,RES1,3001,,17,NE,1920,1920,3102,3,1,1850.048099,1850.048099,3505,NO,44.67,58.3,3,1.58,6106,113.810893,123.554616,133.277132,139.852351,I,Above,Flat,0,5701,,51.48616549,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 29079,NJBF000060580,,Ventnor City,NJ,39.3362315,-74.487725,RES1,3001,,NaN,NE,1969,0,3102,2,1,1437.379989,1437.379989,3505,NO,25.88,31.34,3,3.01,6106,113.660738,123.433196,133.149065,139.722506,I,Above,Hip,0,5701,,28.60709728,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29080,NJBF000065531,422 N OXFORD AVE,Ventnor City,NJ,39.34735482,-74.48127732,RES1,3001,,17,NE,1940,1940,3102,1,1,1526.14672,1526.14672,3505,NO,18.28,25.42,3,1.34,6106,113.654548,123.425329,133.148533,139.659296,I,Above,Hip,0,5701,,21.84801319,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 29081,NJBF000060682,116 S SACRAMENTO AVE,Ventnor City,NJ,39.33638977,-74.47957734,RES1,3001,,18,NE,2014,2014,3102,3,1,1862.587333,1862.587333,3505,NO,32.29,42.94,3,-2.64,6106,113.838087,123.576634,133.301263,139.869085,I,Above,Hip,0,5701,,37.61557015,0,0,,,,1,1,,0.03,nav,1,2014,3,, 29082,NJBF000062798,22 N CAMBRIDGE AVE,Ventnor City,NJ,39.3402459,-74.48122139,RES1,3001,,17,NE,1930,1930,3102,2,1,1631.459239,1631.459239,3505,NO,26.61,40.71,3,3.46,6106,113.74966,123.504591,133.227881,139.776949,I,Above,Hip,0,5701,,33.66362073,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29083,NJBF000060153,106 N SWARTHMORE AVE,Ventnor City,NJ,39.33549147,-74.49270856,RES1,3001,,17,NE,1948,1948,3102,1,1,1868.889963,1868.889963,3505,NO,18.5,24.91,3,3.27,6106,113.560984,123.352809,133.063673,139.636051,I,Above,Hip,0,5701,,21.70382342,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 29084,NJBF000061238,27 N BUFFALO AVE,Ventnor City,NJ,39.33729257,-74.48715039,RES1,3001,,17,NE,1932,1932,3102,2,1,989.2280009,989.2280009,3505,NO,21.47,31.58,3,-0.89,6106,113.658866,123.431609,133.148215,139.716545,I,Above,Flat,0,5701,,26.52512849,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 29085,NJBF000064054,104 S BATON ROUGE AVE,Ventnor City,NJ,39.34345246,-74.46627368,RES3B,3001,,17,E,1910,1910,3303,3,1,1816.939724,1816.939724,3504,NO,48.56,59.8,-4,0,6106,114.035983,123.736917,133.478752,139.973148,I,Above,Gable,0,NaN,,54.18173187,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 29086,NJBF000065634,410 N SUFFOLK AVE,Ventnor City,NJ,39.34766527,-74.47977863,RES1,3001,,17,NE,1980,1980,3102,2,1,1999.47701,1999.47701,3505,NO,29.15,39.49,3,2.43,6106,113.68364,123.448741,133.173665,139.680692,I,Above,Hip,0,5701,,34.31707635,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29087,NJBF000061504,,Ventnor City,NJ,39.33775525,-74.495928,RES1,3001,,NaN,NE,1969,0,3103,5,1,2077.275602,2077.275602,3505,NO,83.62,95.68,3,5.88,6106,113.458629,123.270305,132.978457,139.537551,I,Above,Hip,0,5701,,89.65378389,0,0,,,,1,1,,0.03,nav,1,1969,5,, 29088,NJBF000064072,114 N SOMERSET AVE,Ventnor City,NJ,39.3435065,-74.4773085,RES1,3001,,16,NE,1920,1920,3102,1,1,1084.161128,1084.161128,3505,NO,25.67,35.95,3,8.3,6106,113.792533,123.538582,133.266556,139.791431,I,Above,Flat,0,5701,,30.81225812,0,0,,,,1,1,,0.03,nav,1,1920,1,, 29089,NJBF000065187,16 N JACKSON AVE,Ventnor City,NJ,39.34635279,-74.46714876,RES3A,3001,,17,NE,1935,1935,3301,2,1,1555.973211,1555.973211,3505,NO,32.34,44.78,3,-2.19,6106,113.97891,123.689542,133.430349,139.914159,I,Above,Hip,0,5701,,38.56068674,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 29090,NJBF000061266,6506 VENTNOR AVE,Ventnor City,NJ,39.3373464,-74.48351615,COM1,3001,738,NaN,ME,1922,1922,3401,2,3,1691.125597,1691.125597,3507,NO,33.63,38.89,1,0.38,6106,113.73829,123.495773,133.216216,139.783522,I,Above,Flat,0,NaN,,36.25949776,0,0,,,,1,1,,0.03,nav,1,1922,2,, 29091,NJBF000065591,502 N DUDLEY AVE,Ventnor City,NJ,39.3475429,-74.48232093,RES1,3001,,17,NE,1971,1971,3102,2,1,1480.872081,1480.872081,3507,NO,34.71,46.09,1,0.74,6106,113.629022,123.404591,133.126578,139.63761,I,Above,Flat,0,5701,,40.39633236,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 29092,NJBF000065567,5401 BALFOUR AVE,Ventnor City,NJ,39.34747756,-74.47876485,RES1,3001,,17,NE,1962,1962,3102,1,1,1595.087543,1595.087543,3505,NO,20.84,34.06,3,2.93,6106,113.708463,123.468944,133.195082,139.701503,I,Above,Flat,0,5701,,27.45013503,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 29093,NJBF000060457,105 S NEWPORT AVE,Ventnor City,NJ,39.3360068,-74.48170967,RES1,3001,,17,NE,1925,1925,3102,2,1,2451.299254,2451.299254,3505,NO,35.23,44.55,3,4.76,6106,113.796368,123.542845,133.265034,139.838152,I,Above,Hip,0,5701,,39.89148832,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29094,NJBF000066173,600 N OXFORD AVE,Ventnor City,NJ,39.34911405,-74.48272456,RES1,3001,,17,NE,1974,1974,3102,2,1,1528.374744,1528.374744,3507,NO,22.49,37.21,1,0.9,6106,113.59979,123.380149,133.10149,139.604664,I,Above,Gable,0,5701,,29.85021778,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29095,NJBF000061477,119 N NEWARK AVE,Ventnor City,NJ,39.33771411,-74.48889366,RES1,3001,,17,NE,1920,1920,3102,2,1,1393.723405,1393.723405,3505,NO,23.21,31.37,3,1.02,6106,113.614618,123.395869,133.110751,139.676397,I,Above,Hip,0,5701,,27.29027445,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29096,NJBF000061429,117 N NEWARK AVE,Ventnor City,NJ,39.33761275,-74.48883761,RES1,3001,,17,NE,1925,1925,3102,1,1,1094.543489,1094.543489,3505,NO,16.55,29.83,3,-1.92,6106,113.617235,123.39799,133.112917,139.679083,I,Above,Hip,0,5701,,23.19370625,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29097,NJBF000060569,103 N MELBOURNE AVE,Ventnor City,NJ,39.33620378,-74.49118511,RES1,3001,,17,NE,1928,1928,3102,2,1,1338.49628,1338.49628,3505,NO,29.09,43.58,3,1.42,6106,113.584767,123.371936,133.084364,139.655389,I,Above,Hip,0,5701,,36.33836468,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 29098,NJBF000060392,7 S BUFFALO AVE,Ventnor City,NJ,39.33589374,-74.48599335,RES1,3001,,45,NE,1924,1924,3102,2,3,1480.089706,1480.089706,3505,NO,27.55,36.42,3,-0.76,6106,113.703559,123.467788,133.185383,139.761048,I,Above,Hip,0,5701,,31.98319341,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 29099,NJBF000060340,9 S BUFFALO AVE,Ventnor City,NJ,39.33580603,-74.48593387,RES1,3001,,16,NE,1938,1938,3102,2,1,1355.761562,1355.761562,3505,NO,25.05,39.63,3,3.38,6106,113.706069,123.469819,133.18746,139.763584,I,Above,Hip,0,5701,,32.33974182,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 29100,NJBF000061205,119 N WYOMING AVE,Ventnor City,NJ,39.33723467,-74.4902836,RES1,3001,,17,NE,1930,1930,3102,2,1,877.2024159,877.2024159,3505,NO,28.44,39.27,3,4.71,6106,113.590483,123.376463,133.089906,139.657015,I,Above,Gable,0,5701,,33.85322812,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29101,NJBF000064077,6116 CALVERT AVE,Ventnor City,NJ,39.34350896,-74.48260387,RES1,3001,,17,NE,1998,1998,3102,2,1,1341.03319,1341.03319,3505,NO,28.65,43.56,3,6.48,6106,113.675623,123.443877,133.165747,139.698689,I,Above,Flat,0,5701,,36.102429,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 29102,NJBF000063486,5504 VENTNOR AVE,Ventnor City,NJ,39.34185534,-74.47406975,RES1,3001,,18,NE,1985,1985,3102,1,1,2845.684111,2845.684111,3505,NO,15.57,22.13,3,-1.92,6106,113.88574,123.614696,133.346487,139.872573,I,Above,Hip,0,5701,,18.85338146,0,0,,,,1,1,,0.03,nav,1,1985,1,, 29103,NJBF000065641,433 N OXFORD AVE,Ventnor City,NJ,39.34768046,-74.48100914,RES1,3001,,17,NE,1940,1940,3102,1,1,1336.008579,1336.008579,3505,NO,7.95,14.6,3,-2.62,6106,113.65626,123.426562,133.150047,139.658734,I,Above,Gable,0,5701,,11.27240022,0,0,,,,1,1,,0.03,nav,1,1940,1,, 29104,NJBF000065678,504 N DUDLEY AVE,Ventnor City,NJ,39.347793,-74.48249297,RES1,3001,,17,NE,1980,1980,3102,2,1,1701.476884,1701.476884,3507,NO,23.01,35.74,1,0.61,6106,113.621977,123.398773,133.120538,139.630439,I,Above,Gable,0,5701,,29.37589635,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29105,NJBF000065523,506 N DERBY AVE,Ventnor City,NJ,39.34732808,-74.48400394,RES1,3001,,17,NE,1955,1955,3101,2,1,1503.737339,1503.737339,3505,NO,39.69,54.37,3,2.37,6106,113.594575,123.376854,133.096959,139.610849,I,Above,Hip,0,5701,,47.03045164,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 29106,NJBF000063644,104 N DORSET AVE,Ventnor City,NJ,39.34228942,-74.47908815,RES1,3001,,NaN,NE,1930,1930,3102,2,1,2536.460454,2536.460454,3505,NO,37.56,51.06,3,-0.89,6106,113.769416,123.520156,133.246003,139.7807,I,Above,Flat,0,5701,,44.30856606,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29107,NJBF000061048,21 N WISSAHICKON AVE,Ventnor City,NJ,39.33696681,-74.48760132,RES1,3001,,17,NE,1955,1955,3102,1,1,1711.984378,1711.984378,3505,NO,19,33.72,3,6.54,6106,113.653376,123.427206,133.143307,139.713158,I,Above,Hip,0,5701,,26.35536224,0,0,,,,1,1,,0.03,nav,1,1955,1,, 29108,NJBF000065660,512 N DERBY AVE,Ventnor City,NJ,39.34774392,-74.48435313,RES1,3001,,17,NE,1962,1962,3101,1,1,1548.994628,1548.994628,3505,NO,16.68,29.33,3,-1.46,6106,113.58145,123.366049,133.08572,139.597715,I,Above,Gable,0,5701,,23.00383294,0,0,,,,1,1,,0.03,nav,1,1962,1,, 29109,NJBF000060296,7111 WINCHESTER AVE,Ventnor City,NJ,39.33573514,-74.49146394,RES1,3001,,17,NE,1940,1940,3102,1,1,1729.578018,1729.578018,3505,NO,19.49,33.23,3,2.31,6106,113.585083,123.372213,133.084302,139.657081,I,Above,Hip,0,5701,,26.35990209,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 29110,NJBF000064235,1 S HILLSIDE AVE,Ventnor City,NJ,39.34396083,-74.47000269,RES1,3001,,NaN,NE,1913,1913,3102,2,1,1626.061271,1626.061271,3507,NO,36.91,43.91,1,2.26,6106,113.947401,123.664457,133.401467,139.905545,I,Above,Gable,0,5701,,40.41013812,0,0,,,,1,1,,0.03,nav,1,1913,2,, 29111,NJBF000064690,225 N OXFORD AVE,Ventnor City,NJ,39.34509112,-74.47895785,RES1,3001,,17,NE,1948,1948,3102,1,1,1583.710925,1583.710925,3505,NO,17.23,25.92,3,3.05,6106,113.735306,123.491664,133.217692,139.737115,I,Above,Hip,0,5701,,21.57648946,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 29112,NJBF000060345,2 S BUFFALO AVE,Ventnor City,NJ,39.335814,-74.4863875,RES1,3001,,27,NE,1929,1929,3102,2,1,1199.236222,1199.236222,3505,NO,22.59,28.3,3,1.41,6106,113.695952,123.461646,133.178818,139.754811,I,Above,Flat,0,5701,,25.44853766,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29113,NJBF000061430,8 S PORTLAND AVE,Ventnor City,NJ,39.3376146,-74.4821547,COM1,3001,,NaN,ME,1960,1960,3401,3,1,8214.120757,8214.120757,3507,NO,47,54.35,1,1.19,6106,113.764625,123.517057,133.239018,139.80369,I,Above,Flat,0,NaN,,50.67606728,0,0,,,,1,1,,0.03,nav,1,1960,3,, 29114,NJBF000063697,25 S LITTLE ROCK AVE,Ventnor City,NJ,39.342424,-74.47085466,RES1,3001,,NaN,NE,1920,0,3102,2,1,1420.784226,1420.784226,3505,NO,37.16,50.3,3,1.2,6106,113.948918,123.666025,133.401852,139.915992,I,Above,Flat,0,5701,,43.7277055,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29115,NJBF000064023,4 N VICTORIA AVE,Ventnor City,NJ,39.34336439,-74.47265479,RES1,3001,,17,NE,1928,1928,3102,2,1,2375.957117,2375.957117,3505,NO,37.95,46.7,3,2.46,6106,113.896922,123.623466,133.357096,139.871733,I,Above,Hip,0,5701,,42.32700141,0,0,,,,1,1,,0.03,nav,1,1928,2,, 29116,NJBF000061457,112 N WISSAHICKON AVE,Ventnor City,NJ,39.337675,-74.488626,RES1,3001,,17,NE,1930,1930,3102,1,1,1411.600996,1411.600996,3505,NO,25.81,34.2,3,6.41,6106,113.621068,123.401074,133.116222,139.682178,I,Above,Hip,0,5701,,30.00777492,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 29117,NJBF000063348,5200 BOARDWALK,Ventnor City,NJ,39.34147207,-74.46917934,RES3C,3001,,NaN,E,1974,1974,3305,6,1,26798.26664,26798.26664,3507,NO,99.77,107.92,1,2.86,6106,113.998351,123.7065,133.444367,139.957742,I,Above,Flat,0,NaN,,103.8423962,0,0,,,,2,2,,0.03,nav,1,1974,6,, 29118,NJBF000062110,102 S DORSET AVE,Ventnor City,NJ,39.33881123,-74.47628001,RES1,3001,,18,NE,1925,1925,3102,2,1,2190.766447,2190.766447,3505,NO,30.86,42.61,3,2.48,6106,113.877817,123.608709,133.337522,139.885061,I,Above,Hip,0,5701,,36.73519996,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 29119,NJBF000061245,,Ventnor City,NJ,39.33729695,-74.49554903,RES1,3001,,NaN,NE,1969,0,3103,5,1,2247.599623,2247.599623,3505,NO,105.57,115.23,3,8.46,6106,113.473311,123.282155,132.99061,139.552069,I,Above,Flat,0,5701,,110.4037545,0,0,,,,1,1,,0.03,nav,1,1969,5,, 29120,NJBF000063570,5301 ATLANTIC AVE,Ventnor City,NJ,39.34208106,-74.47096212,RES1,3001,565,NaN,NE,1930,1930,3102,3,1,2386.258505,2386.258505,3505,NO,39.92,49.17,3,0.46,6106,113.951105,123.667871,133.403534,139.919672,I,Above,Flat,0,5701,,44.54221721,0,0,,,,1,1,,0.03,nav,1,1930,3,, 29121,NJBF000065284,503 N CORNWALL AVE,Ventnor City,NJ,39.34662395,-74.48466553,RES1,3001,,17,NE,1960,1960,3101,1,1,1443.000309,1443.000309,3505,NO,18.26,26.02,3,7.6,6106,113.589089,123.372754,133.092189,139.610368,I,Above,Hip,0,5701,,22.13700894,0,0,,,,1,1,,0.03,nav,1,1960,1,, 29122,NJBF000063666,104 S AMHERST AVE,Ventnor City,NJ,39.34234235,-74.46904216,RES1,3001,,17,NE,2014,1920,3102,3,1,1547.000411,1547.000411,3505,NO,59.82,66.41,3,7.38,6110,113.98984,123.699417,133.437547,139.946379,I,Above,Hip,0,5701,,63.11380478,0,0,,,,1,1,,0.35,nav,1,2014,3,, 29123,NJBF000061159,117 N WYOMING AVE,Ventnor City,NJ,39.3371625,-74.490217,RES1,3001,,17,NE,1920,1920,3102,1,1,1488.867066,1488.867066,3505,NO,15.43,28.52,3,3.45,6106,113.592963,123.378469,133.091969,139.659468,I,Above,Flat,0,5701,,21.97499566,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29124,NJBF000065260,408 N DUDLEY AVE,Ventnor City,NJ,39.3465533,-74.48162711,RES1,3001,,NaN,NE,1945,0,3102,1,1,984.6723412,984.6723412,3505,NO,16.17,27.39,3,-1.83,6106,113.657238,123.427866,133.15073,139.666205,I,Above,Hip,0,5701,,21.78131243,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 29125,NJBF000064065,130 N OXFORD AVE,Ventnor City,NJ,39.34348156,-74.47817986,RES1,3001,,17,NE,1909,1909,3102,2,1,1829.028313,1829.028313,3505,NO,38.57,48.02,3,3.83,6106,113.773642,123.523263,133.250207,139.776875,I,Above,Flat,0,5701,,43.29325062,0,0,,,,1,1,,0.03,nav,1,1909,2,, 29126,NJBF000064094,132 N OXFORD AVE,Ventnor City,NJ,39.34355635,-74.47821594,RES1,3001,,17,NE,1940,1940,3102,2,1,1290.143011,1290.143011,3505,NO,30.85,39.61,3,0.45,6106,113.771871,123.521805,133.248709,139.775046,I,Above,Flat,0,5701,,35.22994789,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29127,NJBF000061453,6707 WINCHESTER AVE,Ventnor City,NJ,39.33765966,-74.48743496,RES1,3001,,NaN,NE,1950,0,3102,2,1,1351.858356,1351.858356,3505,NO,26.86,38.92,3,4.07,6106,113.647563,123.42245,133.138809,139.705218,I,Above,Gable,0,5701,,32.8925179,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29128,NJBF000063883,615 KINGSLEY DRIVE,Ventnor City,NJ,39.34298634,-74.49460569,RES1,3001,,17,NE,1977,1977,3102,2,1,1747.423082,1747.423082,3505,NO,25.36,38.41,3,2.09,6106,113.416926,123.235617,132.945088,139.482077,I,Above,Gable,0,5701,,31.88536974,0,0,,,,1,1,,0.03,nav,1,1977,2,, 29129,NJBF000063948,16 S HILLSIDE AVE,Ventnor City,NJ,39.34317258,-74.46989224,RES1,3001,,17,NE,1920,1920,3102,3,1,1747.985456,1747.985456,3505,NO,38.57,45.35,3,3.35,6110,113.960201,123.675075,133.412181,139.91974,I,Above,Hip,0,5701,,41.96117822,0,1.1,,,,1,1,,0.35,nav,1,1920,3,, 29130,NJBF000065268,511 N HARVARD AVE,Ventnor City,NJ,39.34657419,-74.48638041,RES1,3001,,17,NE,1978,1978,3101,2,1,1893.740966,1893.740966,3505,NO,32.42,43.77,3,7.17,6106,113.551793,123.342681,133.060246,139.579836,I,Above,Hip,0,5701,,38.09536604,0,0,,,,1,1,,0.03,nav,1,1978,2,, 29131,NJBF000065269,506 N CORNWALL AVE,Ventnor City,NJ,39.34657688,-74.48515138,RES1,3001,,17,NE,2011,2011,3101,2,1,1531.610887,1531.610887,3505,NO,29.8,44.04,3,3.85,6106,113.578966,123.364604,133.083509,139.602304,I,Above,Gable,0,5701,,36.91872588,0,0,,,,1,1,,0.03,nav,1,2011,2,, 29132,NJBF000064031,5301 VENTNOR AVE,Ventnor City,NJ,39.34338339,-74.47203662,RES1,3001,,17,NE,1920,1920,3102,2,1,1712.592061,1712.592061,3505,NO,26.81,37.86,3,-1.26,6106,113.91027,123.63433,133.368733,139.881573,I,Above,Flat,0,5701,,32.33798895,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29133,NJBF000065275,507 N CAMBRIDGE AVE,Ventnor City,NJ,39.34660102,-74.48552706,RES1,3001,,17,NE,1965,1965,3101,1,1,1652.678187,1652.678187,3505,NO,18.13,28.98,3,0.24,6106,113.570329,123.357622,133.076112,139.595042,I,Above,Flat,0,5701,,23.55250106,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 29134,NJBF000061202,6508-10 VENTNOR AVE,Ventnor City,NJ,39.33722835,-74.48360863,COM1,3001,,NaN,ME,1922,1952,3401,1,1,6322.559993,6322.559993,3507,NO,12.14,20.75,1,1.34,6106,113.737848,123.495426,133.215751,139.78376,I,Above,Flat,0,NaN,,16.44464972,0,0,,,,1,1,,0.03,nav,1,1922,1,, 29135,NJBF000061046,,Ventnor City,NJ,39.33696583,-74.48153091,COM1,3001,,NaN,ME,1969,0,3401,3,1,2752.041208,2752.041208,3507,NO,60.78,71.64,1,2.59,6110,113.78721,123.535387,133.257937,139.825508,I,Above,Flat,0,NaN,,66.20722646,0,0,,,,1,1,,0.35,nav,1,1969,3,, 29136,NJBF000061033,,Ventnor City,NJ,39.33694339,-74.481964,COM1,3001,,NaN,ME,1969,0,3401,2,1,7625.231587,7625.231587,3507,NO,31.21,37.03,1,-0.06,6110,113.777985,123.527921,133.24999,139.818183,I,Above,Flat,0,NaN,,34.11824966,0,0,,,,1,1,,1,nav,1,1969,2,, 29137,NJBF000061071,7117 MONMOUTH AVE,Ventnor City,NJ,39.33701035,-74.49249245,RES1,3001,,17,NE,1970,1970,3102,1,1,1695.600065,1695.600065,3505,NO,15.61,24.9,3,-2.88,6106,113.54481,123.339697,133.050972,139.617158,I,Above,Flat,0,5701,,20.25236067,0,0,,,,1,1,,0.03,nav,1,1970,1,, 29138,NJBF000063567,101 N DERBY AVE,Ventnor City,NJ,39.34207226,-74.47916801,RES1,3001,,28,NE,1915,1915,3102,3,1,1923.005476,1923.005476,3505,NO,50.81,56.74,3,2.56,6106,113.770536,123.521117,133.246862,139.782868,I,Above,Flat,0,5701,,53.77441151,0,0,,,,1,1,,0.03,nav,1,1915,3,, 29139,NJBF000065305,401 N OXFORD AVE,Ventnor City,NJ,39.34668275,-74.48027339,RES1,3001,,16,NE,2017,2017,3102,2,1,802.2682994,802.2682994,3505,NO,31.49,45.47,3,0.19,6106,113.685471,123.450663,133.175083,139.688052,I,Above,Flat,0,5701,,38.47960769,0,0,,,,1,1,,0.03,nav,1,2017,2,, 29140,NJBF000060432,19 S TROY AVE,Ventnor City,NJ,39.33596599,-74.48457334,RES1,3001,,17,NE,1908,1908,3102,2,2,1649.429009,1649.429009,3505,NO,38.38,44.86,3,3.65,6106,113.733866,123.492278,133.211374,139.786613,I,Above,Hip,0,5701,,41.61791341,0,1.1,,,,1,1,,0.03,nav,1,1908,2,, 29141,NJBF000061468,203 N LAFAYETTE AVE,Ventnor City,NJ,39.33769583,-74.49151219,RES1,3001,,17,NE,1962,1962,3102,1,1,1671.120668,1671.120668,3505,NO,15.43,29.35,3,2.31,6106,113.557043,123.349477,133.061769,139.62579,I,Above,Hip,0,5701,,22.39025516,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 29142,NJBF000060735,12 N WISSAHICKON AVE,Ventnor City,NJ,39.33646555,-74.48763841,RES1,3001,,17,NE,1940,1940,3102,2,1,1436.086745,1436.086745,3505,NO,22.39,30.49,3,-0.21,6106,113.659429,123.432127,133.148119,139.720443,I,Above,Hip,0,5701,,26.44063231,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29143,NJBF000063625,6101 MONMOUTH AVE,Ventnor City,NJ,39.34223102,-74.48225887,RES3D,3001,,NaN,E,1965,1965,3305,8,1,12543.86688,12543.86688,3507,NO,149.32,158.83,1,1.44,6106,113.700209,123.464132,133.186371,139.725856,I,Above,Flat,0,NaN,,154.0743924,0,0,,,,2,2,,0.03,nav,1,1965,8,, 29144,NJBF000060484,20-22 N WYOMING AVE,Ventnor City,NJ,39.33605155,-74.48984261,RES1,3001,,45,NE,1940,1940,3102,2,2,1586.49377,1586.49377,3505,NO,41.55,55.98,3,4.68,6106,113.616478,123.397502,133.111221,139.684134,I,Above,Hip,0,5701,,48.76493764,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29145,NJBF000065328,417 N DERBY AVE,Ventnor City,NJ,39.34675173,-74.48301431,RES1,3001,,17,NE,1991,1991,3102,2,1,3195.419574,3195.419574,3505,NO,30.02,39.26,3,0.08,6106,113.623974,123.400878,133.122148,139.638139,I,Above,Hip,0,5701,,34.63749584,0,0,,,,1,1,,0.03,nav,1,1991,2,, 29146,NJBF000063936,,Ventnor City,NJ,39.34312518,-74.475876,RES1,3001,,NaN,NE,1920,0,3102,2,1,1008.765701,1008.765701,3505,NO,34.88,46.44,3,5.77,6106,113.829149,123.568413,133.298088,139.821953,I,Above,Flat,0,5701,,40.66062633,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29147,NJBF000063620,107 N DERBY AVE,Ventnor City,NJ,39.34221962,-74.47937063,RES1,3001,,17,NE,1954,1954,3102,2,1,1483.189338,1483.189338,3505,NO,26.06,39.65,3,2.83,6106,113.764091,123.515857,133.241374,139.776921,I,Above,Gable,0,5701,,32.85622104,0,0,,,,1,1,,0.03,nav,1,1954,2,, 29148,NJBF000060451,106 S STRATFORD AVE,Ventnor City,NJ,39.33599701,-74.48142683,RES1,3001,,17,NE,1925,1925,3102,3,1,1291.53002,1291.53002,3505,NO,44.53,56.68,3,6.49,6106,113.802736,123.548002,133.2705,139.843341,I,Above,Hip,0,5701,,50.60701513,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 29149,NJBF000061451,123 N ROSBOROUGH AVE,Ventnor City,NJ,39.33765847,-74.48969457,RES1,3001,,16,NE,1950,1950,3102,1,1,1197.75463,1197.75463,3505,NO,20.66,33.77,3,4.55,6106,113.597696,123.382233,133.096308,139.661803,I,Above,Hip,0,5701,,27.21418438,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29150,NJBF000061138,132 N LAFAYETTE AVE,Ventnor City,NJ,39.33712495,-74.49155554,RES1,3001,,45,NE,1930,1930,3102,2,2,1422.573743,1422.573743,3505,NO,27.34,34.2,3,1.78,6106,113.563903,123.35506,133.067248,139.633823,I,Above,Gable,0,5701,,30.77327616,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29151,NJBF000063670,101 S FRANKFORT AVE,Ventnor City,NJ,39.34234894,-74.46931307,RES1,3001,,18,NE,2014,2014,3102,4,2,1950.442405,1950.442405,3505,NO,58.31,73.15,3,7.94,6110,113.983795,123.694483,133.432266,139.941943,I,Above,Flat,0,5701,,65.73310261,0,0,,,,1,1,,0.35,nav,1,2014,4,, 29152,NJBF000065346,501 N BURGHLEY AVE,Ventnor City,NJ,39.34680245,-74.48391479,RES1,3001,,17,NE,1970,1970,3101,1,1,1848.305203,1848.305203,3505,NO,15.4,30.38,3,-1.64,6106,113.603388,123.384221,133.104475,139.621074,I,Above,Gable,0,5701,,22.89340415,0,0,,,,1,1,,0.03,nav,1,1970,1,, 29153,NJBF000063622,15 S SURREY AVE,Ventnor City,NJ,39.34222023,-74.47212766,RES1,3001,,17,NE,1911,1911,3102,2,1,1599.431563,1599.431563,3505,NO,32.31,42.38,3,1.6,6106,113.923627,123.645459,133.379672,139.898577,I,Above,Hip,0,5701,,37.34648105,0,1.1,,,,1,1,,0.03,nav,1,1911,2,, 29154,NJBF000063595,17 S SURREY AVE,Ventnor City,NJ,39.34213422,-74.47205763,RES1,3001,,17,NE,1911,1911,3102,2,1,1450.555088,1450.555088,3505,NO,19.62,31.58,3,-2.31,6106,113.926305,123.647656,133.381951,139.901081,I,Above,Hip,0,5701,,25.59816521,0,0,,,,1,1,,0.03,nav,1,1911,2,, 29155,NJBF000065340,327 N SOMERSET AVE,Ventnor City,NJ,39.3467915,-74.4794465,RES1,3001,,17,NE,1960,1960,3102,2,1,989.1435092,989.1435092,3505,NO,42.27,55.71,3,7.19,6106,113.702323,123.464268,133.18965,139.700798,I,Above,Gable,0,5701,,48.98909281,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 29156,NJBF000062813,227 N NEWARK AVE,Ventnor City,NJ,39.34027314,-74.49165105,RES1,3001,,17,NE,1950,1950,3102,1,1,1596.386644,1596.386644,3505,NO,17.59,29.2,3,4.07,6106,113.518883,123.318329,133.030663,139.582462,I,Above,Flat,0,5701,,23.39680016,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29157,NJBF000063588,412-414 N WISSAHICKON AVE,Ventnor City,NJ,39.3421206,-74.49310761,RES1,3001,,45,NE,1974,1974,3102,2,2,1791.530182,1791.530182,3505,NO,38.43,53.16,3,1.48,6106,113.461718,123.271876,132.982809,139.524881,I,Above,Gable,0,5701,,45.79544979,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29158,NJBF000060447,8 S RICHARDS AVE,Ventnor City,NJ,39.33598467,-74.48577861,RES1,3001,,15,NE,1910,1910,3102,1,1,1845.244922,1845.244922,3505,NO,18.33,29.76,3,-0.3,6106,113.707026,123.470585,133.188418,139.76364,I,Above,Hip,0,5701,,24.04252536,0,0,,,,1,1,,0.03,nav,1,1910,1,, 29159,NJBF000063590,,Ventnor City,NJ,39.34212464,-74.47786696,RES1,3001,,NaN,NE,1909,0,3102,2,1,963.0489391,963.0489391,3505,NO,32.51,39.17,3,-2.43,6106,113.798518,123.543794,133.271057,139.804405,I,Above,Flat,0,5701,,35.840395,0,0,,,,1,1,,0.03,nav,1,1909,2,, 29160,NJBF000063544,5604 WINCHESTER AVE,Ventnor City,NJ,39.34201499,-74.47546563,RES1,3001,,17,NE,1920,1920,3102,2,1,1451.061495,1451.061495,3505,NO,45.82,57.08,3,8.46,6106,113.852881,123.587953,133.318063,139.846805,I,Above,Gable,0,5701,,51.44933189,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29161,NJBF000062308,126 N AVOLYN AVE,Ventnor City,NJ,39.33920236,-74.48692239,RES1,3001,,17,NE,1929,1929,3102,2,1,1101.587479,1101.587479,3505,NO,33.32,48.06,3,0.44,6106,113.637917,123.414457,133.131501,139.690022,I,Above,Hip,0,5701,,40.69006861,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 29162,NJBF000063553,19 S SURREY AVE,Ventnor City,NJ,39.34203176,-74.47199486,RES1,3001,,17,NE,1920,1920,3102,3,1,1171.061094,1171.061094,3505,NO,44.92,59.64,3,6.31,6106,113.929042,123.649905,133.384269,139.903723,I,Above,Hip,0,5701,,52.28146854,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 29163,NJBF000065290,502 N BURGHLEY AVE,Ventnor City,NJ,39.3466319,-74.48435932,RES1,3001,,17,NE,1958,1958,3101,1,1,2250.194344,2250.194344,3505,NO,17.73,31.71,3,5.64,6106,113.595779,123.378152,133.097927,139.615814,I,Above,Hip,0,5701,,24.71853489,0,0,,,,1,1,,0.03,nav,1,1958,1,, 29164,NJBF000064486,317 N CAMBRIDGE AVE,Ventnor City,NJ,39.34460597,-74.48387319,RES1,3001,,17,NE,1960,1960,3102,2,1,1896.22072,1896.22072,3505,NO,24.09,37.35,3,2.58,6106,113.633088,123.409122,133.129559,139.657827,I,Above,Gable,0,5701,,30.7210916,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 29165,NJBF000064504,5501 MONMOUTH AVE,Ventnor City,NJ,39.34465234,-74.47726153,RES1,3001,,45,NE,1940,1940,3102,2,2,1357.23893,1357.23893,3505,NO,33.83,45.43,3,-1.58,6106,113.778487,123.526835,133.254876,139.773573,I,Above,Flat,0,5701,,39.63068292,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29166,NJBF000060542,212 N WASHINGTON AVE,Ventnor City,NJ,39.33616,-74.494431,RES1,3001,,17,NE,1950,1950,3102,2,1,999.1732406,999.1732406,3505,NO,21.43,31.76,3,-0.69,6106,113.513707,123.314728,133.024079,139.591588,I,Above,Gable,0,5701,,26.59725732,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 29167,NJBF000060083,6705 ATLANTIC AVE,Ventnor City,NJ,39.33536614,-74.48479755,RES1,3001,,43,NE,1920,1920,3102,2,3,1946.723919,1946.723919,3505,NO,28.64,41.6,3,5.7,6110,113.737154,123.49495,133.213702,139.792154,I,Above,Flat,0,5701,,35.1186914,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 29168,NJBF000065262,400 N OXFORD AVE,Ventnor City,NJ,39.34656182,-74.48063732,RES1,3001,,17,NE,1943,1943,3102,2,1,1607.164352,1607.164352,3505,NO,39.39,46.67,3,3.39,6106,113.679002,123.445477,133.169482,139.68361,I,Above,Gable,0,5701,,43.03181158,0,1.1,,,,1,1,,0.03,nav,1,1943,2,, 29169,NJBF000064509,220 N OXFORD AVE,Ventnor City,NJ,39.34466641,-74.47909307,RES1,3001,,17,NE,1940,1940,3102,1,1,1251.142369,1251.142369,3505,NO,20.36,28.95,3,3.7,6106,113.737903,123.493916,133.219794,139.741713,I,Above,Hip,0,5701,,24.65330958,0,0,,,,1,1,,0.03,nav,1,1940,1,, 29170,NJBF000064484,27 N WEYMOUTH AVE,Ventnor City,NJ,39.34460275,-74.47161473,RES1,3001,,17,NE,1930,1930,3102,2,1,1858.466771,1858.466771,3507,NO,34.8,40.12,1,-0.02,6106,113.903532,123.628528,133.363511,139.869079,I,Above,Hip,0,5701,,37.45815493,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29171,NJBF000061470,,Ventnor City,NJ,39.33770184,-74.48817287,RES1,3001,,NaN,NE,1969,0,3102,2,1,1554.268375,1554.268375,3505,NO,36.88,47.56,3,7.42,6106,113.6307,123.40884,133.12445,139.690444,I,Above,Gable,0,5701,,42.21796759,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29172,NJBF000063517,5307 ATLANTIC AVE,Ventnor City,NJ,39.34192243,-74.47145625,RES1,3001,,NaN,NE,1920,1930,3102,2,1,6044.886381,6044.886381,3505,NO,34.87,44.99,3,8.87,6106,113.942351,123.660766,133.395795,139.914202,I,Above,Flat,0,5701,,39.93130264,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29173,NJBF000059461,14 N WASHINGTON AVE,Ventnor City,NJ,39.33428915,-74.4924545,RES1,3001,,17,NE,1928,1928,3102,2,1,1017.172389,1017.172389,3505,NO,42.19,50.45,3,8.42,6106,113.5833,123.370792,133.081692,139.659172,I,Above,Flat,0,5701,,46.32145131,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 29174,NJBF000066617,806 N CAMBRIDGE AVE,Ventnor City,NJ,39.35025437,-74.48901664,RES1,3001,,17,NE,1978,1978,3101,1,1,2017.89304,2017.89304,3505,NO,14.64,22.03,3,-2.6,6106,113.445702,123.255176,132.969363,139.470993,I,Above,Flat,0,5701,,18.33682146,0,0,,,,1,1,,0.03,nav,1,1978,1,, 29175,NJBF000062269,1 S CAMBRIDGE AVE,Ventnor City,NJ,39.33912578,-74.47979084,RES1,3001,,17,NE,1903,1903,3102,2,1,2305.906861,2305.906861,3505,NO,37.77,45.32,3,2.76,6106,113.796258,123.542509,133.267301,139.820409,I,Above,Hip,0,5701,,41.54352148,0,1.2,,,,1,1,,0.03,nav,1,1903,2,, 29176,NJBF000063617,6102 MONMOUTH AVE,Ventnor City,NJ,39.34221249,-74.48083684,RES1,3001,,16,NE,1930,1930,3102,2,1,1478.609886,1478.609886,3505,NO,21.3,35.77,3,0.28,6106,113.731852,123.489745,133.213584,139.751402,I,Above,Hip,0,5701,,28.53708462,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29177,NJBF000064562,207 N SOMERSET AVE,Ventnor City,NJ,39.34479119,-74.47783877,RES1,3001,,17,NE,1927,1927,3102,1,1,1014.766141,1014.766141,3505,NO,17.91,25.18,3,-1.55,6106,113.763934,123.514982,133.242336,139.76139,I,Above,Gable,0,5701,,21.54463844,0,0,,,,1,1,,0.03,nav,1,1927,1,, 29178,NJBF000064574,205 N SOMERSET AVE,Ventnor City,NJ,39.34482833,-74.47767472,RES1,3001,,17,NE,1934,1934,3102,1,1,832.7173932,832.7173932,3505,NO,15.72,27.19,3,1.4,6106,113.767067,123.517511,133.245059,139.763612,I,Above,Flat,0,5701,,21.45540143,0,0,,,,1,1,,0.03,nav,1,1934,1,, 29179,NJBF000065515,502 N DORSET AVE,Ventnor City,NJ,39.347293,-74.4830915,RES1,3001,,17,NE,1962,1962,3101,2,1,1311.715064,1311.715064,3505,NO,25.8,39.62,3,-2.93,6106,113.615211,123.393545,133.114679,139.627875,I,Above,Gable,0,5701,,32.70981127,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 29180,NJBF000059422,19 S WYOMING AVE,Ventnor City,NJ,39.3342148,-74.48783691,RES1,3001,,17,NE,1925,1925,3102,2,1,1500.420021,1500.420021,3505,NO,34.37,45.55,3,7.99,6106,113.686098,123.453699,133.169093,139.752002,I,Above,Hip,0,5701,,39.95795877,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29181,NJBF000063907,5501 WINCHESTER AVE,Ventnor City,NJ,39.34304607,-74.47449875,RES1,3001,,18,NE,1936,1936,3102,2,1,2253.545446,2253.545446,3505,NO,25.75,38.94,3,2.08,6106,113.860525,123.593931,133.325271,139.84631,I,Above,Flat,0,5701,,32.34440305,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 29182,NJBF000063681,,Ventnor City,NJ,39.34237034,-74.49572299,RES1,3001,,NaN,NE,1969,0,3102,2,1,3894.885253,3894.885253,3505,NO,42.38,52.27,3,8.53,6106,113.400423,123.222571,132.931019,139.470024,I,Above,Gable,0,5701,,47.32487108,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29183,NJBF000064501,135 N SURREY AVE,Ventnor City,NJ,39.34464365,-74.47596568,RES1,3001,,16,NE,1930,1930,3102,2,1,1335.297904,1335.297904,3507,NO,30.44,39.4,1,2.49,6106,113.807169,123.550124,133.279723,139.795808,I,Above,Flat,0,5701,,34.92254543,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29184,NJBF000064843,21 N OAKLAND AVE,Ventnor City,NJ,39.3454623,-74.46964494,RES1,3001,,17,NE,1920,1920,3102,2,1,1327.65874,1327.65874,3507,NO,26.58,36.92,1,1.88,6106,113.93564,123.654464,133.391985,139.887688,I,Above,Hip,0,5701,,31.75001877,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29185,NJBF000064801,19 N OAKLAND AVE,Ventnor City,NJ,39.34536846,-74.46957121,RES1,3001,,17,NE,1920,1920,3102,2,1,1200.920369,1200.920369,3507,NO,24.35,33.82,1,2.45,6106,113.938493,123.656818,133.394434,139.890377,I,Above,Hip,0,5701,,29.08589288,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29186,NJBF000066514,702 N DORSET AVE,Ventnor City,NJ,39.34995295,-74.48527322,RES1,3001,,17,NE,1980,1980,3101,1,1,1981.611535,1981.611535,3505,NO,9.81,18.56,3,-1.79,6106,113.532588,123.325387,133.043716,139.544857,I,Above,Hip,0,5701,,14.18362852,0,0,,,,1,1,,0.03,nav,1,1980,1,, 29187,NJBF000064510,203 N SOMERSET AVE,Ventnor City,NJ,39.34466683,-74.47775643,RES1,3001,,17,NE,1929,1929,3102,2,1,1171.075948,1171.075948,3505,NO,43.28,50.6,3,7.22,6106,113.767393,123.517829,133.245282,139.764842,I,Above,Gable,0,5701,,46.93976771,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29188,NJBF000060382,11 N WYOMING AVE,Ventnor City,NJ,39.3358845,-74.4891775,RES1,3001,,17,NE,1930,1930,3102,2,1,1622.591872,1622.591872,3505,NO,30.33,35.88,3,5.34,6106,113.633486,123.411225,133.125578,139.699788,I,Above,Gable,0,5701,,33.1022378,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29189,NJBF000063564,449-451 BERKSHIRE DR,Ventnor City,NJ,39.34206908,-74.49356058,RES1,3001,,45,NE,1972,1972,3102,2,2,2371.259247,2371.259247,3505,NO,36.81,51.37,3,0.79,6106,113.452381,123.264388,132.974886,139.516925,I,Above,Flat,0,5701,,44.08986043,0,0,,,,1,1,,0.03,nav,1,1972,2,, 29190,NJBF000064483,201 N SOMERSET AVE,Ventnor City,NJ,39.34460155,-74.47770574,RES1,3001,,17,NE,1927,1927,3102,1,1,1046.031723,1046.031723,3505,NO,15.47,25.02,3,0.2,6106,113.769349,123.519437,133.24695,139.766762,I,Above,Gable,0,5701,,20.24108874,0,0,,,,1,1,,0.03,nav,1,1927,1,, 29191,NJBF000063913,133 N DORSET AVE,Ventnor City,NJ,39.34306953,-74.479108,COM1,3001,283,NaN,ME,1940,1940,3401,3,1,1990.074787,1990.074787,3507,NO,38.9,46.73,1,2.82,6106,113.758618,123.511199,133.237049,139.767565,I,Above,Hip,0,NaN,,42.81521667,0,0,,,,1,1,,0.03,nav,1,1940,3,, 29192,NJBF000065549,601 N CAMBRIDGE AVE,Ventnor City,NJ,39.34744709,-74.48616692,RES1,3001,,17,NE,1968,1968,3101,2,1,1401.56863,1401.56863,3505,NO,29.42,43.21,3,2.75,6106,113.545135,123.336891,133.054594,139.569477,I,Above,Hip,0,5701,,36.31323445,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 29193,NJBF000063613,,Ventnor City,NJ,39.3421945,-74.4961085,RES1,3001,,NaN,NE,1969,0,3102,2,1,1891.076201,1891.076201,3505,NO,33.25,46.06,3,-2.95,6106,113.394233,123.217658,132.925755,139.465229,I,Above,Gable,0,5701,,39.65660722,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29194,NJBF000065513,606 N HARVARD AVE,Ventnor City,NJ,39.34729261,-74.48746093,RES1,3001,,17,NE,1967,1967,3102,2,1,1519.706195,1519.706195,3505,NO,34.42,46.87,3,6.63,6106,113.518469,123.315469,133.031792,139.548145,I,Above,Gable,0,5701,,40.64250536,0,0,,,,1,1,,0.03,nav,1,1967,2,, 29195,NJBF000064025,5401 WINCHESTER AVE,Ventnor City,NJ,39.3433701,-74.47346485,RES1,3001,,18,NE,1940,1940,3102,2,1,1698.328952,1698.328952,3505,NO,35.14,40.32,3,-1.62,6106,113.879015,123.608891,133.341516,139.858273,I,Above,Hip,0,5701,,37.72944021,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29196,NJBF000063611,5200 ATLANTIC AVE,Ventnor City,NJ,39.34218827,-74.46963907,RES1,3001,,16,NE,1930,1930,3102,2,1,1527.435595,1527.435595,3505,NO,29.69,37,3,8.17,6106,113.978762,123.690404,133.427756,139.939245,I,Above,Gable,0,5701,,33.34751103,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29197,NJBF000064508,210 N SOMERSET AVE,Ventnor City,NJ,39.344663,-74.4782355,RES1,3001,,17,NE,1960,1960,3102,1,1,1391.176877,1391.176877,3505,NO,26.23,39.24,3,7.07,6106,113.756877,123.509301,133.236187,139.756644,I,Above,Hip,0,5701,,32.73596239,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 29198,NJBF000060521,9 N NEWARK AVE,Ventnor City,NJ,39.3361305,-74.487638,RES1,3001,,17,NE,1920,1920,3102,1,1,3036.582299,3036.582299,3505,NO,17.97,25.19,3,3.6,6106,113.664032,123.435859,133.151801,139.725772,I,Above,Gable,0,5701,,21.57889224,0,0,,,,1,1,,0.03,nav,1,1920,1,, 29199,NJBF000059468,14 S WYOMING AVE,Ventnor City,NJ,39.33430649,-74.48842369,RES1,3001,,17,NE,1927,1927,3102,3,1,1465.79304,1465.79304,3505,NO,43.62,51.23,3,4.95,6106,113.671902,123.442241,133.157064,139.739061,I,Above,Flat,0,5701,,47.42215955,0,1.1,,,,1,1,,0.03,nav,1,1927,3,, 29200,NJBF000064485,14 S BATON ROUGE AVE,Ventnor City,NJ,39.34460368,-74.46720605,RES1,3001,,17,NE,1930,1930,3102,2,1,1454.521145,1454.521145,3504,NO,32,40.46,-4,0,6106,114.00043,123.707604,133.448282,139.940498,I,Above,Hip,0,5701,,36.23337583,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29201,NJBF000064521,12 S BATON ROUGE AVE,Ventnor City,NJ,39.34469441,-74.46726687,RES1,3001,,17,NE,1930,1930,3102,2,1,1262.88588,1262.88588,3504,NO,26.47,40.69,-4,0,6106,113.997914,123.705526,133.446128,139.938123,I,Above,Hip,0,5701,,33.57657932,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29202,NJBF000063410,424 BERKSHIRE DRIVE,Ventnor City,NJ,39.34164822,-74.49412478,RES1,3001,,35,NE,1980,1980,3102,2,1,4207.006863,4207.006863,3505,NO,40.38,55.18,3,4.16,6106,113.44555,123.259021,132.968987,139.512621,I,Above,Hip,0,5701,,47.77793101,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29203,NJBF000059426,101 S NEWARK AVE,Ventnor City,NJ,39.33421886,-74.48612104,RES1,3001,,17,NE,1940,1940,3102,1,1,1820.830828,1820.830828,3505,NO,18.17,26.12,3,6.36,6110,113.723843,123.484186,133.201332,139.78535,I,Above,Hip,0,5701,,22.1462783,0,1.1,,,,1,1,,0.35,nav,1,1940,1,, 29204,NJBF000064088,304 N CAMBRIDGE AVE,Ventnor City,NJ,39.34353348,-74.48354077,RES1,3001,,17,NE,1960,1960,3102,1,1,1774.285036,1774.285036,3505,NO,10.7,16.7,3,-1.61,6106,113.6546,123.426874,133.147702,139.681435,I,Above,Hip,0,5701,,13.70077821,0,0,,,,1,1,,0.03,nav,1,1960,1,, 29205,NJBF000063668,612 KINGSLEY DRIVE,Ventnor City,NJ,39.34234624,-74.49492875,RES1,3001,,17,NE,1975,1975,3102,2,1,1586.456106,1586.456106,3505,NO,29.83,36.86,3,-2.89,6106,113.418346,123.236966,132.946157,139.485917,I,Above,Gable,0,5701,,33.34519738,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29206,NJBF000059362,21 N MARTINDALE AVE,Ventnor City,NJ,39.33409516,-74.49256914,RES1,3001,,45,NE,1940,1940,3102,2,2,1522.70153,1522.70153,3505,NO,25.65,34.19,3,0.89,6106,113.583466,123.370922,133.081677,139.659743,I,Above,Hip,0,5701,,29.91753571,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29207,NJBF000065360,,Ventnor City,NJ,39.3468395,-74.467535,RES1,3001,,NaN,NE,1969,0,3102,2,1,1508.742156,1508.742156,3505,NO,29.4,36.72,3,1.85,6106,113.964122,123.677301,133.417598,139.900301,I,Above,Hip,0,5701,,33.06081896,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29208,NJBF000061180,6512 VENTNOR AVE,Ventnor City,NJ,39.3372015,-74.483775,COM1,3001,,NaN,ME,1920,1920,3401,3,1,2067.762225,2067.762225,3507,NO,56.24,65.69,1,0.42,6106,113.734557,123.492767,133.21291,139.781165,I,Above,Flat,0,NaN,,60.96469194,0,0,,,,1,1,,0.03,nav,1,1920,3,, 29209,NJBF000059256,107 S NEWARK AVE,Ventnor City,NJ,39.33386644,-74.48581556,RES1,3001,,17,NE,1920,1920,3102,2,1,1394.163291,1394.163291,3505,NO,26.42,38.36,3,-0.71,6110,113.735449,123.493555,133.21094,139.796822,I,Above,Flat,0,5701,,32.38805537,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 29210,NJBF000062085,5 S CAMBRIDGE AVE,Ventnor City,NJ,39.33877532,-74.47952484,RES1,3001,,17,NE,1917,1917,3102,2,1,2343.96466,2343.96466,3505,NO,39.45,47.1,3,3.92,6106,113.806855,123.551141,133.276193,139.830779,I,Above,Hip,0,5701,,43.27764037,0,0.2,,,,1,1,,0.03,nav,1,1917,2,, 29211,NJBF000061805,109 N BUFFALO AVE,Ventnor City,NJ,39.33828539,-74.48792049,RES1,3001,,17,NE,1952,1952,3102,2,1,1493.007699,1493.007699,3505,NO,33.84,42.53,3,6.91,6106,113.628335,123.406862,133.122793,139.685932,I,Above,Flat,0,5701,,38.1890881,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 29212,NJBF000060725,114 N MELBOURNE AVE,Ventnor City,NJ,39.336455,-74.491916,RES1,3001,,17,NE,1926,1926,3102,2,1,838.8997084,838.8997084,3505,NO,36.6,49.89,3,4.7,6106,113.56517,123.356134,133.067892,139.637088,I,Above,Hip,0,5701,,43.24858023,0,1.2,,,,1,1,,0.03,nav,1,1926,2,, 29213,NJBF000060698,114 N MELBOURNE AVE,Ventnor City,NJ,39.3364145,-74.4920185,RES1,3001,,17,NE,1926,1926,3102,2,1,503.3950372,503.3950372,3505,NO,30.88,41.02,3,1.79,6106,113.563461,123.354761,133.066414,139.635682,I,Above,Hip,0,5701,,35.94602626,0,1.2,,,,1,1,,0.03,nav,1,1926,2,, 29214,NJBF000060691,7001 WINCHESTER AVE,Ventnor City,NJ,39.3364058,-74.49007432,RES1,3001,,17,NE,1928,1928,3102,2,1,2695.925923,2695.925923,3505,NO,27.97,41.85,3,3.73,6106,113.606506,123.389443,133.102985,139.674092,I,Above,Hip,0,5701,,34.91031878,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 29215,NJBF000063469,200 N CAMBRIDGE AVE,Ventnor City,NJ,39.34180897,-74.48245737,RES1,3001,,17,NE,1925,1925,3102,1,1,1095.713412,1095.713412,3505,NO,21.47,33.9,3,3.87,6106,113.701462,123.465253,133.187257,139.729251,I,Above,Hip,0,5701,,27.68624105,0,0,,,,1,1,,0.03,nav,1,1925,1,, 29216,NJBF000059367,8 N WASHINGTON AVE,Ventnor City,NJ,39.33410714,-74.49232299,RES1,3001,,17,NE,1953,1953,3102,1,1,1074.669208,1074.669208,3505,NO,20.67,33.52,3,1.63,6106,113.588723,123.375158,133.086147,139.664501,I,Above,Hip,0,5701,,27.09860145,0,0,,,,1,1,,0.03,nav,1,1953,1,, 29217,NJBF000062105,122 N TROY AVE,Ventnor City,NJ,39.33880275,-74.48733706,RES1,3001,,17,NE,1948,1948,3102,2,1,1129.500181,1129.500181,3505,NO,37.96,48.31,3,1.59,6106,113.634164,123.411492,133.128071,139.688653,I,Above,Gable,0,5701,,43.13558885,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 29218,NJBF000063853,104 N OXFORD AVE,Ventnor City,NJ,39.34289427,-74.47767937,RES1,3001,,17,NE,1962,1962,3102,2,1,1701.540247,1701.540247,3505,NO,34.15,43.93,3,-1,6106,113.792464,123.538692,133.26621,139.795076,I,Above,Hip,0,5701,,39.03604917,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 29219,NJBF000061802,7004-7006 CALVERT AVE,Ventnor City,NJ,39.3382745,-74.4922575,RES1,3001,,45,NE,1968,1968,3102,2,2,1656.419629,1656.419629,3505,NO,31.6,37.35,3,7.79,6106,113.532671,123.329783,133.041409,139.602161,I,Above,Gable,0,5701,,34.47818851,0,0,,,,1,1,,0.03,nav,1,1968,2,, 29220,NJBF000065157,27 N MARION AVE,Ventnor City,NJ,39.346281,-74.4688875,RES1,3001,,45,NE,1960,1960,3102,2,2,1446.036004,1446.036004,3507,NO,30.72,39.94,1,0.03,6106,113.941653,123.659123,133.397639,139.887121,I,Above,Gable,0,5701,,35.33096925,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29221,NJBF000061808,19 N NEW HAVEN AVE,Ventnor City,NJ,39.33828851,-74.48498457,COM1,3001,,17,ME,1920,1920,3401,1,1,1491.874695,1491.874695,3507,NO,13.74,18.79,1,-0.15,6106,113.693061,123.459116,133.178107,139.741055,I,Above,Hip,0,NaN,,16.2646659,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29222,NJBF000064327,5115 VENTNOR AVE,Ventnor City,NJ,39.34420621,-74.47032437,RES1,3001,,NaN,NE,1933,1920,3102,3,3,2560.246577,2560.246577,3507,NO,55.43,63.34,1,2.96,6106,113.93713,123.65602,133.39263,139.89647,I,Above,Hip,0,5701,,59.38434763,0,0,,,,1,1,,0.03,nav,1,1933,3,, 29223,NJBF000063849,137 N DERBY AVE,Ventnor City,NJ,39.34288848,-74.47991435,RES1,3001,,16,NE,1930,1930,3102,1,1,1243.250566,1243.250566,3505,NO,21.27,32.28,3,5.53,6106,113.743245,123.498792,133.223706,139.756508,I,Above,Hip,0,5701,,26.77694551,0,0,,,,1,1,,0.03,nav,1,1930,1,, 29224,NJBF000062089,107 S DORSET AVE,Ventnor City,NJ,39.33877729,-74.47569114,RES1,3001,,17,NE,1930,1930,3102,2,1,2757.962785,2757.962785,3505,NO,32.56,39.54,3,2.21,6106,113.891234,123.619611,133.349116,139.895338,I,Above,Flat,0,5701,,36.05050489,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29225,NJBF000063868,11 S LITTLE ROCK AVE,Ventnor City,NJ,39.34292965,-74.47122583,RES1,3001,,17,NE,1902,1902,3102,2,1,1501.865963,1501.865963,3505,NO,21.79,34.44,3,-2.39,6106,113.934079,123.653829,133.389225,139.901989,I,Above,Gable,0,5701,,28.11682754,0,1.1,,,,1,1,,0.03,nav,1,1902,2,, 29226,NJBF000063825,15 S LITTLE ROCK AVE,Ventnor City,NJ,39.34279691,-74.47115402,RES1,3001,,17,NE,1925,1925,3102,3,1,1146.276496,1146.276496,3505,NO,32.6,38.42,3,-0.74,6106,113.937417,123.656577,133.392055,139.905261,I,Above,Gable,0,5701,,35.50810218,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 29227,NJBF000063908,106 S MARION AVE,Ventnor City,NJ,39.34304836,-74.46667518,RES3B,3001,,17,E,1917,1917,3303,3,1,2223.120923,2223.120923,3504,NO,40.99,55.94,-4,0,6106,114.032495,123.734138,133.47541,139.973029,I,Above,Gable,0,NaN,,48.46262171,0,1.1,,,,1,1,,0.03,nav,1,1917,3,, 29228,NJBF000063861,108 S MARION AVE,Ventnor City,NJ,39.34290707,-74.46657145,RES3B,3001,,18,E,1910,1910,3303,2,1,2493.198221,2493.198221,3504,NO,37.21,43.11,-4,0,6106,114.036633,123.737546,133.478943,139.976843,I,Above,Hip,0,NaN,,40.15886558,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 29229,NJBF000063823,619 KINGSLEY DRIVE,Ventnor City,NJ,39.3427905,-74.4949385,RES1,3001,,17,NE,1975,1975,3102,1,1,2120.949865,2120.949865,3505,NO,22.19,27.27,3,4.72,6106,113.412168,123.231863,132.941028,139.478702,I,Above,Gable,0,5701,,24.73133138,0,0,,,,1,1,,0.03,nav,1,1975,1,, 29230,NJBF000059366,103 S NEWARK AVE,Ventnor City,NJ,39.33410176,-74.48603325,RES1,3001,,17,NE,1930,1930,3102,2,1,1519.620332,1519.620332,3505,NO,29.13,42.6,3,0.34,6110,113.727401,123.487058,133.20427,139.7889,I,Above,Flat,0,5701,,35.86384025,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 29231,NJBF000063345,3 N DUDLEY AVE,Ventnor City,NJ,39.34146602,-74.47658402,RES1,3001,,18,NE,1986,1986,3102,2,1,2578.933492,2578.933492,3505,NO,37.34,44.22,3,-1.13,6106,113.835557,123.573995,133.30273,139.836931,I,Above,Flat,0,5701,,40.78237621,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 29232,NJBF000062121,217 N WYOMING AVE,Ventnor City,NJ,39.338823,-74.49202,RES1,3001,,17,NE,1970,1970,3102,1,1,1365.427791,1365.427791,3505,NO,15.12,22.78,3,2.07,6106,113.530416,123.327885,133.039784,139.598197,I,Above,Flat,0,5701,,18.95191392,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 29233,NJBF000061786,6903 MONMOUTH AVE,Ventnor City,NJ,39.33825498,-74.48991549,RES1,3001,,17,NE,1930,1930,3102,3,1,1330.109909,1330.109909,3505,NO,40.47,53.54,3,0.97,6106,113.584682,123.371671,133.085588,139.648087,I,Above,Hip,0,5701,,47.00757852,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 29234,NJBF000059401,15 S LAFAYETTE AVE,Ventnor City,NJ,39.33418329,-74.48869438,RES1,3001,,17,NE,1926,1926,3102,2,1,1315.816138,1315.816138,3505,NO,23.67,36.1,3,0.54,6106,113.667659,123.438813,133.153343,139.735632,I,Above,Hip,0,5701,,29.8851188,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 29235,NJBF000062537,222 N NEWARK AVE,Ventnor City,NJ,39.33966871,-74.49163939,RES1,3001,,17,NE,1953,1953,3102,1,1,2079.122272,2079.122272,3505,NO,19.25,28.26,3,7.07,6106,113.527334,123.325255,133.037575,139.592272,I,Above,Hip,0,5701,,23.75490531,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 29236,NJBF000064179,205 N DORSET AVE,Ventnor City,NJ,39.34379365,-74.47967516,RES1,3001,,45,NE,1925,1925,3102,2,2,1561.80287,1561.80287,3505,NO,23.04,37.42,3,-2.25,6106,113.736537,123.493093,133.218296,139.745836,I,Above,Gable,0,5701,,30.22858823,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29237,NJBF000063393,204 N SACRAMENTO AVE,Ventnor City,NJ,39.341588,-74.4837215,RES1,3001,,47,NE,1925,1925,3102,1,2,1300.803065,1300.803065,3505,NO,14.54,28.45,3,-2.19,6106,113.676479,123.445109,133.165709,139.710092,I,Above,Hip,0,5701,,21.49226058,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29238,NJBF000063383,113 S FRANKFORT AVE,Ventnor City,NJ,39.34156966,-74.46867469,RES3B,3001,,18,E,1986,1986,3303,2,1,3751.592308,3751.592308,3504,NO,25.88,36.83,-4,0,6106,114.008118,123.714458,133.452982,139.964215,I,Above,Hip,0,NaN,,31.35397252,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 29239,NJBF000062152,121 N TROY AVE,Ventnor City,NJ,39.33889031,-74.48696539,RES1,3001,,17,NE,1940,1940,3102,2,1,1148.906375,1148.906375,3505,NO,37.08,49.76,3,8.41,6106,113.641198,123.417154,133.134127,139.694269,I,Above,Hip,0,5701,,43.42019052,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29240,NJBF000065253,403 N DUDLEY AVE,Ventnor City,NJ,39.34653454,-74.48101283,RES1,3001,,17,NE,1970,1970,3102,2,1,1127.620542,1127.620542,3505,NO,28.9,43.48,3,6.83,6106,113.671044,123.439047,133.162618,139.677401,I,Above,Flat,0,5701,,36.18567318,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29241,NJBF000062126,6806 VENTNOR GARDENS PL,Ventnor City,NJ,39.33883766,-74.48944913,RES1,3001,,17,NE,1966,1966,3102,1,1,2384.706093,2384.706093,3505,NO,22.29,29.81,3,5.7,6106,113.587036,123.373483,133.087916,139.647799,I,Above,Gable,0,5701,,26.04632801,0,0,,,,1,1,,0.03,nav,1,1966,1,, 29242,NJBF000063857,,Ventnor City,NJ,39.34290428,-74.46597541,RES3B,3001,,NaN,E,1969,0,3303,3,1,3699.138947,3699.138947,3504,NO,47.82,61.47,-4,0,6106,114.049749,123.748273,133.490456,139.986286,I,Above,Hip,0,NaN,,54.64427733,0,0,,,,1,1,,0.03,nav,1,1969,3,, 29243,NJBF000062080,211 N ROSBOROUGH AVE,Ventnor City,NJ,39.33876827,-74.49108576,RES1,3001,,17,NE,1943,1943,3102,2,1,1290.495953,1290.495953,3505,NO,33.86,41.63,3,4.54,6106,113.551813,123.345119,133.057923,139.61726,I,Above,Hip,0,5701,,37.74609204,0,1.1,,,,1,1,,0.03,nav,1,1943,2,, 29244,NJBF000062153,103 N NEW HAVEN AVE,Ventnor City,NJ,39.33889265,-74.48551629,RES1,3001,,17,NE,1950,1950,3102,2,1,1394.527935,1394.527935,3505,NO,33.15,47.49,3,6.11,6106,113.673147,123.442947,133.161438,139.721341,I,Above,Flat,0,5701,,40.32198745,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 29245,NJBF000063443,122 N CORNWALL AVE,Ventnor City,NJ,39.3417514,-74.48175093,RES1,3001,,17,NE,1969,1969,3102,2,1,1384.944914,1384.944914,3505,NO,33.96,41.01,3,3.4,6106,113.717821,123.478502,133.201292,139.742801,I,Above,Gable,0,5701,,37.48837457,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29246,NJBF000062764,312-314 HAMPSHIRE DR,Ventnor City,NJ,39.34018259,-74.49358737,RES1,3001,,45,NE,1972,1972,3102,2,2,1970.694273,1970.694273,3505,NO,30.19,42.59,3,3.76,6106,113.477262,123.284872,132.995336,139.546208,I,Above,Flat,0,5701,,36.38797266,0,0,,,,1,1,,0.03,nav,1,1972,2,, 29247,NJBF000065166,305 N SUFFOLK AVE,Ventnor City,NJ,39.3462935,-74.478181,RES1,3001,,17,NE,2014,2014,3102,3,1,1103.585178,1103.585178,3505,NO,56.38,68.62,3,0.39,6106,113.736738,123.492372,133.219278,139.73097,I,Above,Hip,0,5701,,62.5004174,0,0,,,,1,1,,0.03,nav,1,2014,3,, 29248,NJBF000063851,114 N DORSET AVE,Ventnor City,NJ,39.34289261,-74.47960444,RES1,3001,,NaN,NE,1930,1920,3102,1,1,4544.098677,4544.098677,3505,NO,23.02,31.2,3,5.42,6106,113.750019,123.504279,133.22955,139.761837,I,Above,Flat,0,5701,,27.11357493,0,1.2,,,,1,1,,0.03,nav,1,1930,1,, 29249,NJBF000063364,5701 VENTNOR AVE,Ventnor City,NJ,39.34151059,-74.47593131,RES1,3001,,18,NE,1988,1988,3102,2,1,2096.632581,2096.632581,3505,NO,29.6,44.11,3,0.05,6106,113.84934,123.58518,133.314696,139.847176,I,Above,Gable,0,5701,,36.85260439,0,1,,,,1,1,,0.03,nav,1,1988,2,, 29250,NJBF000063353,220 N PRINCETON AVE,Ventnor City,NJ,39.34147937,-74.48437856,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1363.21497,1363.21497,3505,NO,33.61,39.15,3,3.9,6106,113.663425,123.434587,133.154468,139.699932,I,Above,Hip,0,5701,,36.38286351,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29251,NJBF000062821,15 N CORNWALL AVE,Ventnor City,NJ,39.34029955,-74.47947713,RES1,3001,,19,NE,1900,1900,3102,3,1,1967.404896,1967.404896,3505,NO,64.15,78.75,3,7.31,6106,113.78739,123.535142,133.260411,139.806569,I,Above,Hip,0,5701,,71.4519476,0,1.1,,,,1,1,,0.03,nav,1,1900,3,, 29252,NJBF000063297,105 S VICTORIA AVE,Ventnor City,NJ,39.34135647,-74.47073215,COM1,3001,20,NaN,ME,1900,1900,3401,3,1,2745.181031,2745.181031,3507,NO,34.77,47.61,1,-0.93,6106,113.965775,123.679949,133.415833,139.934776,I,Above,Flat,0,NaN,,41.19216435,0,0,,,,1,1,,0.03,nav,1,1900,3,, 29253,NJBF000063840,5507 WINCHESTER AVE,Ventnor City,NJ,39.34285449,-74.47475496,RES1,3001,,18,NE,1980,1980,3102,2,1,2572.292467,2572.292467,3505,NO,30.99,37.74,3,7.95,6106,113.857424,123.591456,133.322476,139.845136,I,Above,Hip,0,5701,,34.36143742,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 29254,NJBF000063415,206 N SACRAMENTO AVE,Ventnor City,NJ,39.34165784,-74.48377688,RES1,3001,,47,NE,1925,1925,3102,1,2,1464.46274,1464.46274,3505,NO,15.86,27.53,3,1.22,6106,113.674329,123.443353,133.163896,139.707945,I,Above,Hip,0,5701,,21.69570279,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29255,NJBF000063452,5309-5315 ATLANTIC AVE,Ventnor City,NJ,39.34177611,-74.47155726,RES1,3001,,NaN,NE,1920,1920,3102,3,1,5137.860849,5137.860849,3505,NO,62.31,73.13,3,5.65,6110,113.942067,123.66056,133.395449,139.914876,I,Above,Flat,0,5701,,67.71966764,0,0,,,,1,1,,0.35,nav,1,1920,3,, 29256,NJBF000059383,21 S WYOMING AVE,Ventnor City,NJ,39.33414376,-74.48775862,RES1,3001,,17,NE,1926,1926,3102,2,1,1870.641185,1870.641185,3505,NO,25.65,31.57,3,4.13,6106,113.688801,123.455879,133.171338,139.754632,I,Above,Hip,0,5701,,28.60981023,0,1.2,,,,1,1,,0.03,nav,1,1926,2,, 29257,NJBF000060590,111 N BALTIMORE AVE,Ventnor City,NJ,39.33624369,-74.49207405,RES1,3001,,17,NE,1940,1940,3102,2,1,1439.741264,1439.741264,3505,NO,30.53,38.98,3,8.25,6106,113.564591,123.355681,133.067259,139.637203,I,Above,Hip,0,5701,,34.75392942,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29258,NJBF000063299,,Ventnor City,NJ,39.34136114,-74.47454679,RES1,3001,,NaN,NE,1969,0,3102,2,1,1800.969753,1800.969753,3505,NO,32.37,46.76,3,-2.31,6106,113.881808,123.611592,133.342762,139.872629,I,Above,Gable,0,5701,,39.56349081,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29259,NJBF000063211,,Ventnor City,NJ,39.34112521,-74.47435633,RES1,3001,,NaN,NE,1969,0,3102,2,1,1912.377627,1912.377627,3505,NO,29.65,43.02,3,5.81,6106,113.889154,123.617607,133.348987,139.879572,I,Above,Hip,0,5701,,36.3378027,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29260,NJBF000063860,,Ventnor City,NJ,39.34290588,-74.47630674,RES1,3001,,NaN,NE,1992,0,3102,2,1,1522.474578,1522.474578,3505,NO,41.52,47.04,3,3,6106,113.822547,123.563107,133.292256,139.818227,I,Above,Flat,0,5701,,44.28097927,0,0,,,,1,1,,0.03,nav,1,1992,2,, 29261,NJBF000065144,406 N DORSET AVE,Ventnor City,NJ,39.34625706,-74.48224719,RES1,3001,,17,NE,1970,1970,3102,2,1,1338.505383,1338.505383,3505,NO,36.19,43.65,3,2.72,6106,113.647391,123.420028,133.142204,139.659998,I,Above,Gable,0,5701,,39.91710028,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 29262,NJBF000065236,501 N CORNWALL AVE,Ventnor City,NJ,39.34648204,-74.48454702,RES1,3001,,17,NE,1960,1960,3101,2,1,1822.157919,1822.157919,3505,NO,30.44,39.12,3,7.98,6106,113.593575,123.376441,133.09602,139.614857,I,Above,Gable,0,5701,,34.77991387,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 29263,NJBF000064532,5800 CALVERT AVE,Ventnor City,NJ,39.3447274,-74.48003092,RES1,3001,,17,NE,1962,1962,3102,1,1,1580.519057,1580.519057,3505,NO,14.24,26.22,3,2.7,6106,113.716393,123.476467,133.201252,139.724322,I,Above,Hip,0,5701,,20.23150586,0,0,,,,1,1,,0.03,nav,1,1962,1,, 29264,NJBF000060660,216 N WASHINGTON AVE,Ventnor City,NJ,39.33636444,-74.49463254,RES1,3001,,17,NE,1950,1950,3102,1,1,1184.904554,1184.904554,3505,NO,14.37,26.67,3,0.25,6106,113.506425,123.308858,133.018049,139.584475,I,Above,Gable,0,5701,,20.52093162,0,0,,,,1,1,,0.03,nav,1,1950,1,, 29265,NJBF000064215,111 N SUFFOLK AVE,Ventnor City,NJ,39.3439095,-74.4762485,RES1,3001,,17,NE,1970,1970,3102,2,1,1527.761133,1527.761133,3505,NO,36.92,51.11,3,2.21,6106,113.810598,123.553132,133.282382,139.80293,I,Above,Flat,0,5701,,44.01500393,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 29266,NJBF000064142,,Ventnor City,NJ,39.34368876,-74.4760733,RES1,3001,,NaN,NE,1960,0,3102,2,1,1075.658295,1075.658295,3505,NO,31.27,44.12,3,1.52,6106,113.817366,123.558691,133.288147,139.809481,I,Above,Flat,0,5701,,37.69481941,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29267,NJBF000063302,1 S OXFORD AVE,Ventnor City,NJ,39.34136375,-74.47522083,RES1,3001,,18,NE,1918,1918,3102,3,1,1730.521661,1730.521661,3505,NO,65.36,70.65,3,8.56,6106,113.866931,123.5995,133.329856,139.861405,I,Above,Hip,0,5701,,68.00431952,0,1.1,,,,1,1,,0.03,nav,1,1918,3,, 29268,NJBF000061014,210 N SWARTHMORE AVE,Ventnor City,NJ,39.336912,-74.49433923,RES1,3001,,17,NE,1974,1974,3102,1,1,1758.794822,1758.794822,3505,NO,14.17,21.63,3,1.78,6106,113.505356,123.307958,133.017485,139.582029,I,Above,Hip,0,5701,,17.9007662,0,0,,,,1,1,,0.03,nav,1,1974,1,, 29269,NJBF000063319,209 N PORTLAND AVE,Ventnor City,NJ,39.34139809,-74.48459506,RES1,3001,,14,NE,1920,1920,3102,2,1,2420.830817,2420.830817,3505,NO,34.23,47.21,3,0.59,6106,113.659738,123.431628,133.151272,139.697316,I,Above,Hip,0,5701,,40.71822834,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29270,NJBF000064980,5800 BALFOUR AVE,Ventnor City,NJ,39.3458379,-74.48103677,RES1,3001,,17,NE,2016,1960,3102,2,1,882.7203266,882.7203266,3505,NO,43.62,53.25,3,8.53,6106,113.67961,123.446269,133.169854,139.688391,I,Above,Hip,0,5701,,48.43418979,0,1.2,,,,1,1,,0.03,nav,1,2016,2,, 29271,NJBF000063318,115 N CAMBRIDGE AVE,Ventnor City,NJ,39.3413975,-74.481679,RES1,3001,,17,NE,1940,1940,3102,1,1,1497.224795,1497.224795,3505,NO,11.62,19.18,3,-2.09,6106,113.724137,123.483696,133.20655,139.749901,I,Above,Hip,0,5701,,15.39662664,0,0,,,,1,1,,0.03,nav,1,1940,1,, 29272,NJBF000066360,712 N CORNWALL AVE,Ventnor City,NJ,39.34956047,-74.48755168,RES1,3001,,17,NE,1968,1968,3101,2,1,1314.650479,1314.650479,3505,NO,32.46,37.55,3,-0.74,6106,113.487115,123.288956,133.004847,139.509463,I,Above,Gable,0,5701,,35.008599,0,0,,,,1,1,,0.03,nav,1,1968,2,, 29273,NJBF000065085,326 N OXFORD AVE,Ventnor City,NJ,39.34609508,-74.48025314,RES1,3001,,17,NE,1952,1952,3102,2,1,1260.285952,1260.285952,3505,NO,25.02,34.14,3,2.73,6106,113.693576,123.457472,133.18195,139.698025,I,Above,Gable,0,5701,,29.58206957,0,0,,,,1,1,,0.03,nav,1,1952,2,, 29274,NJBF000065037,500 N CAMBRIDGE AVE,Ventnor City,NJ,39.34596951,-74.48556909,RES1,3001,,17,NE,1964,1964,3101,1,1,2129.408664,2129.408664,3505,NO,18.72,33,3,0.4,6106,113.577649,123.363811,133.082309,139.604599,I,Above,Gable,0,5701,,25.8585093,0,0,,,,1,1,,0.03,nav,1,1964,1,, 29275,NJBF000063376,601 N LAFAYETTE AVE,Ventnor City,NJ,39.34153967,-74.49548541,RES1,3001,,17,NE,1974,1974,3102,2,1,1900.41923,1900.41923,3505,NO,34.21,45.13,3,2.29,6106,113.416874,123.236022,132.944712,139.487732,I,Above,Gable,0,5701,,39.67120347,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29276,NJBF000062346,207 N WISSAHICKON AVE,Ventnor City,NJ,39.33926402,-74.48972388,RES1,3001,,17,NE,1954,1954,3102,1,1,2158.090545,2158.090545,3505,NO,22.86,31.82,3,7.57,6106,113.57517,123.363851,133.07804,139.63571,I,Above,Gable,0,5701,,27.33842177,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 29277,NJBF000065093,502 N CAMBRIDGE AVE,Ventnor City,NJ,39.34611834,-74.48567204,RES1,3001,,17,NE,1965,1965,3101,1,1,2147.165316,2147.165316,3505,NO,23.41,29.3,3,4.95,6106,113.573432,123.360343,133.078717,139.600291,I,Above,Gable,0,5701,,26.35403859,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 29278,NJBF000065127,508 N HARVARD AVE,Ventnor City,NJ,39.34619543,-74.48658084,RES1,3001,,19,NE,1996,1996,3102,3,1,1872.539012,1872.539012,3505,NO,49.54,62.45,3,8.32,6106,113.552297,123.343261,133.060643,139.58233,I,Above,Flat,0,5701,,55.99624301,0,1.2,,,,1,1,,0.03,nav,1,1996,3,, 29279,NJBF000060245,7309 MONMOUTH AVE,Ventnor City,NJ,39.33564405,-74.4944309,RES1,3001,,17,NE,1950,1950,3102,2,1,1152.4207,1152.4207,3505,NO,33.37,39.06,3,5.63,6106,113.520853,123.320501,133.02978,139.599343,I,Above,Gable,0,5701,,36.21061811,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29280,NJBF000062788,6001 VENTNOR AVE,Ventnor City,NJ,39.34022819,-74.47870693,RES1,3001,,19,NE,1913,1913,3102,2,1,3303.193224,3303.193224,3505,NO,37.7,48.45,3,4.54,6106,113.805326,123.549694,133.275841,139.821025,I,Above,Hip,0,5701,,43.07302846,0,1.2,,,,1,1,,0.03,nav,1,1913,2,, 29281,NJBF000062529,216 N WISSAHICKON AVE,Ventnor City,NJ,39.33964147,-74.49075565,RES1,3001,,17,NE,1950,1950,3102,1,1,1877.240325,1877.240325,3505,NO,12.07,21,3,1.46,6106,113.547241,123.341286,133.054471,139.609815,I,Above,Hip,0,5701,,16.53312754,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29282,NJBF000063273,421-423 N LAFAYETTE AVE,Ventnor City,NJ,39.34129375,-74.49525368,RES1,3001,,NaN,NE,1970,1970,3102,2,1,1907.162855,1907.162855,3505,NO,33.13,43.7,3,5.03,6106,113.425313,123.242864,132.951772,139.496121,I,Above,Flat,0,5701,,38.41517808,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29283,NJBF000060248,18 N LAFAYETTE AVE,Ventnor City,NJ,39.33564585,-74.49041603,RES1,3001,,45,NE,1930,1930,3102,2,2,1776.339873,1776.339873,3505,NO,43.27,51.36,3,8.1,6106,113.609436,123.391842,133.104935,139.67916,I,Above,Hip,0,5701,,47.31431156,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29284,NJBF000064152,109 N SOMERSET AVE,Ventnor City,NJ,39.34371995,-74.47694001,RES1,3001,,17,NE,1955,1955,3102,1,1,1844.780324,1844.780324,3505,NO,15.65,21.14,3,-2.82,6106,113.797846,123.542833,133.271251,139.794248,I,Above,Flat,0,5701,,18.39472027,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 29285,NJBF000063338,200 N SACRAMENTO AVE,Ventnor City,NJ,39.34144623,-74.4836111,RES1,3001,,47,NE,1925,1925,3102,1,2,1354.51437,1354.51437,3505,NO,21.06,34.26,3,2.7,6106,113.68083,123.448659,133.169376,139.714436,I,Above,Gable,0,5701,,27.66336784,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29286,NJBF000062043,123 N RICHARDS AVE,Ventnor City,NJ,39.33869778,-74.48753459,RES1,3001,,17,NE,1920,1920,3102,2,1,1060.077012,1060.077012,3505,NO,38.79,45.26,3,2.1,6106,113.631218,123.40913,133.125496,139.686599,I,Above,Gable,0,5701,,42.02550431,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29287,NJBF000062402,224 N ROSBOROUGH AVE,Ventnor City,NJ,39.33937395,-74.4922369,RES1,3001,,17,NE,1940,1940,3102,1,1,1158.124283,1158.124283,3505,NO,19.75,25.24,3,4.39,6106,113.518116,123.317892,133.029616,139.585296,I,Above,Hip,0,5701,,22.49924027,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 29288,NJBF000066574,6101 MARSHALL AVE,Ventnor City,NJ,39.35012597,-74.48803606,RES1,3001,,17,NE,1977,1977,3101,1,1,1921.66239,1921.66239,3505,NO,17.97,32.16,3,7.32,6106,113.46911,123.274104,132.989369,139.491281,I,Above,Flat,0,5701,,25.06441979,0,0,,,,1,1,,0.03,nav,1,1977,1,, 29289,NJBF000063351,6221 MONMOUTH AVE,Ventnor City,NJ,39.34147795,-74.48319635,RES1,3001,,37,NE,1920,1950,3102,2,1,3511.666196,3511.666196,3505,NO,28.07,37.12,3,2.62,6106,113.689566,123.455714,133.176887,139.721411,I,Above,Gable,0,5701,,32.59480295,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29290,NJBF000065046,416 N CORNWALL AVE,Ventnor City,NJ,39.34598835,-74.48470563,RES1,3001,,17,NE,1958,1958,3102,1,1,1381.253646,1381.253646,3505,NO,19.28,32.71,3,0.52,6106,113.596514,123.379031,133.098473,139.620057,I,Above,Flat,0,5701,,25.99381348,0,0,,,,1,1,,0.03,nav,1,1958,1,, 29291,NJBF000062029,5 S HARVARD AVE,Ventnor City,NJ,39.33867212,-74.48021459,RES1,3001,,17,NE,1922,1922,3102,3,1,1511.494635,1511.494635,3505,NO,32.65,43.09,3,-2.78,6106,113.793045,123.539962,133.26422,139.820507,I,Above,Hip,0,5701,,37.86976551,0,0,,,,1,1,,0.03,nav,1,1922,3,, 29292,NJBF000060961,117 N MELBOURNE AVE,Ventnor City,NJ,39.33682384,-74.49167736,RES1,3001,,17,NE,1927,1927,3102,1,1,1352.333353,1352.333353,3505,NO,18.23,26.8,3,2.47,6106,113.565367,123.356266,133.068301,139.63611,I,Above,Hip,0,5701,,22.51259905,0,1.1,,,,1,1,,0.03,nav,1,1927,1,, 29293,NJBF000060838,2 N RICHARDS AVE,Ventnor City,NJ,39.33661892,-74.48633569,RES1,3001,,17,NE,1974,1974,3102,1,1,1228.733903,1228.733903,3505,NO,17.22,28.52,3,3.38,6106,113.686047,123.453607,133.170961,139.742862,I,Above,Hip,0,5701,,22.87041123,0,0,,,,1,1,,0.03,nav,1,1974,1,, 29294,NJBF000059213,12 S MELBOURNE AVE,Ventnor City,NJ,39.33378401,-74.48974966,RES1,3001,,17,NE,1925,1925,3102,2,1,1365.522634,1365.522634,3505,NO,38.25,44.99,3,8.38,6106,113.649934,123.4245,133.137903,139.720761,I,Above,Hip,0,5701,,41.62282777,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29295,NJBF000063311,114 N CORNWALL AVE,Ventnor City,NJ,39.341388,-74.481439,RES1,3001,,17,NE,1920,1920,3102,1,1,1385.163351,1385.163351,3505,NO,25.37,32.19,3,6.18,6106,113.729553,123.488082,133.211204,139.754307,I,Above,Gable,0,5701,,28.78293107,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29296,NJBF000061745,15 S CAMBRIDGE AVE,Ventnor City,NJ,39.3381834,-74.47905003,RES1,3001,,18,NE,1927,1927,3102,2,1,2306.813381,2306.813381,3505,NO,36.96,44.36,3,0.27,6110,113.825321,123.566172,133.291687,139.848663,I,Above,Hip,0,5701,,40.65950629,0,1.1,,,,1,1,,0.35,nav,1,1927,2,, 29297,NJBF000062555,9 S DERBY AVE,Ventnor City,NJ,39.33969353,-74.47767124,RES1,3001,,18,NE,1905,1905,3102,2,1,1998.067205,1998.067205,3505,NO,25.2,39.79,3,1.88,6106,113.835315,123.574101,133.301395,139.847413,I,Above,Hip,0,5701,,32.4971784,0,1.2,,,,1,1,,0.03,nav,1,1905,2,, 29298,NJBF000065102,505 N HARVARD AVE,Ventnor City,NJ,39.34614818,-74.48603472,RES1,3001,,17,NE,1980,1980,3101,2,1,1417.974651,1417.974651,3505,NO,31.69,37.49,3,4.11,6106,113.565002,123.353529,133.071506,139.593142,I,Above,Gable,0,5701,,34.58663634,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29299,NJBF000065054,503 N HARVARD AVE,Ventnor City,NJ,39.34601441,-74.48592412,RES1,3001,,17,NE,1980,1980,3101,2,1,2066.884862,2066.884862,3505,NO,29.79,35.39,3,0,6106,113.569214,123.356986,133.075094,139.597372,I,Above,Gable,0,5701,,32.5883382,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29300,NJBF000064208,5201 VENTNOR AVE,Ventnor City,NJ,39.34389154,-74.47103011,RES1,3001,,NaN,NE,1920,1922,3102,2,1,5745.149189,5745.149189,3507,NO,27.93,35.16,1,1.59,6106,113.925725,123.6468,133.382498,139.889944,I,Above,Hip,0,5701,,31.54064715,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29301,NJBF000061719,107 N RICHARDS AVE,Ventnor City,NJ,39.3381446,-74.48706963,RES1,3001,,17,NE,1920,1920,3102,2,1,1071.776469,1071.776469,3505,NO,32.56,42.51,3,2.28,6106,113.649007,123.423559,133.140349,139.704336,I,Above,Hip,0,5701,,37.53263932,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29302,NJBF000062823,226 N WISSAHICKON AVE,Ventnor City,NJ,39.34030253,-74.49134583,RES1,3001,,17,NE,1950,1950,3102,1,1,974.3545928,974.3545928,3505,NO,14.1,26.96,3,2.13,6106,113.525224,123.323426,133.03606,139.587885,I,Above,Gable,0,5701,,20.53024119,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29303,NJBF000062782,226 N WISSAHICKON AVE,Ventnor City,NJ,39.340212,-74.491378,RES1,3001,,17,NE,1950,1950,3102,1,1,601.9425245,601.9425245,3505,NO,14.81,27.57,3,3.21,6106,113.525748,123.323867,133.036466,139.588714,I,Above,Gable,0,5701,,21.19141768,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29304,NJBF000063331,8 N DUDLEY AVE,Ventnor City,NJ,39.34143065,-74.47708333,RES1,3001,,17,NE,1935,1935,3102,2,1,1610.730426,1610.730426,3505,NO,46.89,53.11,3,8.33,6106,113.82503,123.565457,133.293599,139.829067,I,Above,Gable,0,5701,,49.99779321,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 29305,NJBF000064138,203 N DORSET AVE,Ventnor City,NJ,39.34368272,-74.4795709,RES1,3001,,45,NE,1925,1925,3102,2,2,1718.261564,1718.261564,3505,NO,20.61,26.83,3,-2.07,6106,113.740298,123.496174,133.221497,139.74947,I,Above,Gable,0,5701,,23.72024363,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29306,NJBF000065095,404 N DORSET AVE,Ventnor City,NJ,39.34613271,-74.48216356,RES1,3001,,17,NE,1960,1960,3102,2,1,1692.346528,1692.346528,3505,NO,38.29,48.91,3,4.46,6106,113.650845,123.422874,133.145153,139.663513,I,Above,Hip,0,5701,,43.59926235,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29307,NJBF000059480,7106 VENTNOR AVE,Ventnor City,NJ,39.3343283,-74.48972304,RES1,3001,,17,NE,1920,1920,3102,2,1,1821.752853,1821.752853,3505,NO,35.23,47.4,3,1.64,6106,113.642968,123.418894,133.132434,139.713059,I,Above,Hip,0,5701,,41.31721026,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29308,NJBF000058828,22 S BALTIMORE AVE,Ventnor City,NJ,39.333017,-74.4902815,RES1,3001,,17,NE,1906,1906,3102,2,1,562.2436377,562.2436377,3505,NO,22.59,30.7,3,-2.13,6106,113.648928,123.423651,133.136369,139.721585,I,Above,Hip,0,5701,,26.64163549,0,1.2,,,,1,1,,0.03,nav,1,1906,2,, 29309,NJBF000062379,100 S DUDLEY AVE,Ventnor City,NJ,39.33933003,-74.47549965,RES1,3001,,20,NE,2005,2005,3102,3,1,2218.192031,2218.192031,3505,NO,45.24,54.33,3,4.56,6110,113.887996,123.616923,133.346729,139.889578,I,Above,Hip,0,5701,,49.78407188,0,0,,,,1,1,,0.35,nav,1,2005,3,, 29310,NJBF000062765,126A&B N PORTLAND AVE,Ventnor City,NJ,39.340183,-74.4841275,RES1,3001,,NaN,NE,1935,1935,3102,2,1,1896.681008,1896.681008,3505,NO,25.86,33.76,3,3.17,6106,113.686383,123.453421,133.173505,139.725795,I,Above,Gable,0,5701,,29.81250661,0,0,,,,1,1,,0.03,nav,1,1935,2,, 29311,NJBF000062824,126A&B N PORTLAND AVE,Ventnor City,NJ,39.3403065,-74.4841735,RES1,3001,,NaN,NE,1940,1935,3102,2,1,994.7986103,994.7986103,3505,NO,31.91,43.58,3,-0.49,6106,113.683713,123.451239,133.171281,139.722937,I,Above,Gable,0,5701,,37.74769765,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29312,NJBF000062791,128 N PORTLAND AVE,Ventnor City,NJ,39.34023233,-74.48448754,RES1,3001,,17,NE,1940,1940,3102,2,2,1860.019773,1860.019773,3505,NO,30.55,36.72,3,-0.65,6106,113.677754,123.446438,133.166136,139.718392,I,Above,Hip,0,5701,,33.63527466,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29313,NJBF000062737,124 N PORTLAND AVE,Ventnor City,NJ,39.34011602,-74.48401015,RES1,3001,,17,NE,1930,1930,3102,2,1,1190.921081,1190.921081,3505,NO,21.8,35.96,3,-0.08,6106,113.689868,123.45625,133.176456,139.729028,I,Above,Flat,0,5701,,28.87978302,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29314,NJBF000062027,215 N WYOMING AVE.,Ventnor City,NJ,39.33866962,-74.49187184,RES1,3001,,17,NE,1946,1946,3102,1,1,1298.173157,1298.173157,3505,NO,20.97,29.72,3,8.53,6106,113.535774,123.332222,133.044252,139.603491,I,Above,Gable,0,5701,,25.34320865,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 29315,NJBF000063421,203 N SACRAMENTO AVE,Ventnor City,NJ,39.34166332,-74.48336506,RES1,3001,,47,NE,1925,1925,3102,1,2,1427.690116,1427.690116,3505,NO,17.74,25.16,3,2.58,6106,113.683361,123.450653,133.171648,139.715321,I,Above,Hip,0,5701,,21.4510844,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29316,NJBF000062024,6 N PORTLAND AVE,Ventnor City,NJ,39.33866712,-74.48288139,RES1,3001,,17,NE,1922,1922,3102,1,1,2111.809353,2111.809353,3505,NO,12.66,27.51,3,-0.31,6106,113.734344,123.492442,133.213742,139.77332,I,Above,Flat,0,5701,,20.08773034,0,0,,,,1,1,,0.03,nav,1,1922,1,, 29317,NJBF000061976,107 N AVOLYN AVE,Ventnor City,NJ,39.33857502,-74.48598731,RES1,3001,,17,NE,1940,1940,3102,2,1,1332.782703,1332.782703,3505,NO,35.44,43.5,3,7.97,6106,113.667065,123.438081,133.156044,139.717743,I,Above,Hip,0,5701,,39.47058324,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29318,NJBF000062037,111 N AVOLYN AVE,Ventnor City,NJ,39.33868292,-74.48605139,RES1,3001,,28,NE,1938,1938,3102,2,2,1870.311307,1870.311307,3505,NO,23.48,35.4,3,-1.39,6106,113.664186,123.435741,133.153648,139.71479,I,Above,Gable,0,5701,,29.44043531,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 29319,NJBF000058818,6 S MARTINDALE AVE,Ventnor City,NJ,39.33298599,-74.49210297,RES1,3001,,17,NE,1940,1940,3102,2,1,968.4301906,968.4301906,3505,NO,40.79,46.39,3,5.82,6106,113.609223,123.39163,133.102596,139.685391,I,Above,Flat,0,5701,,43.58525064,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29320,NJBF000061690,104 N RICHARDS AVE,Ventnor City,NJ,39.33808482,-74.48745565,RES1,3001,,17,NE,1954,1954,3102,1,1,1118.491127,1118.491127,3505,NO,15.23,29.94,3,-1.01,6106,113.641303,123.41735,133.133736,139.697981,I,Above,Hip,0,5701,,22.58439886,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 29321,NJBF000060425,7107 WINCHESTER AVE,Ventnor City,NJ,39.33593763,-74.49103295,RES1,3001,,NaN,NE,1958,1958,3102,2,1,2168.078968,2168.078968,3505,NO,38.47,52.78,3,6.04,6106,113.591791,123.377609,133.090146,139.662488,I,Above,Flat,0,5701,,45.6222321,0,0,,,,1,1,,0.03,nav,1,1958,2,, 29322,NJBF000059280,10 N MARTINDALE AVE,Ventnor City,NJ,39.33393135,-74.49288904,RES1,3001,,17,NE,1926,1926,3102,2,1,927.8305249,927.8305249,3505,NO,26.25,32.17,3,-1.44,6106,113.578696,123.367075,133.077497,139.655736,I,Above,Hip,0,5701,,29.21471461,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 29323,NJBF000061954,6309 VENTNOR AVE,Ventnor City,NJ,39.33854054,-74.4821233,COM1,3001,562,NaN,ME,1960,1960,3401,1,1,4672.307314,4672.307314,3507,NO,12.55,18.26,1,-0.77,6106,113.752764,123.507361,133.229478,139.789004,I,Above,Flat,0,NaN,,15.40696956,0,0,,,,1,1,,0.03,nav,1,1960,1,, 29324,NJBF000063891,19 S WEYMOUTH AVE,Ventnor City,NJ,39.34300726,-74.47030415,RES1,3001,,NaN,NE,1925,1950,3102,2,1,1606.012789,1606.012789,3505,NO,27.68,36.7,3,-0.49,6106,113.953333,123.669508,133.406078,139.915704,I,Above,Flat,0,5701,,32.18824441,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29325,NJBF000063854,21 S WEYMOUTH AVE,Ventnor City,NJ,39.34289442,-74.47031486,RES1,3001,,16,NE,1930,1930,3102,2,1,1276.666966,1276.666966,3505,NO,34.13,49.12,3,0.76,6106,113.954581,123.67055,133.407097,139.917305,I,Above,Flat,0,5701,,41.62616934,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29326,NJBF000066929,804 N DORSET AVE,Ventnor City,NJ,39.35133394,-74.48638414,RES1,3001,,17,NE,1967,1967,3101,1,1,2156.955371,2156.955371,3505,NO,26.28,31.49,3,8.85,6106,113.490318,123.290409,133.007239,139.501993,I,Above,Flat,0,5701,,28.88395564,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 29327,NJBF000060233,108 N SWARTHMORE AVE,Ventnor City,NJ,39.33562408,-74.49280504,RES1,3001,,17,NE,1948,1948,3102,1,1,1545.345764,1545.345764,3505,NO,20.17,25.3,3,8.58,6106,113.557023,123.349616,133.060409,139.632127,I,Above,Gable,0,5701,,22.73245422,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 29328,NJBF000065038,,Ventnor City,NJ,39.34596984,-74.47744351,RES1,3001,,NaN,NE,1940,0,3102,2,1,1301.900046,1301.900046,3505,NO,42.24,49.87,3,4.04,6106,113.757227,123.509119,133.236918,139.748987,I,Above,Hip,0,5701,,46.05798249,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29329,NJBF000058825,110 S PHILADELPHIA AVE,Ventnor City,NJ,39.33300018,-74.48705363,RES1,3001,,18,NE,1980,1980,3102,3,1,2357.609065,2357.609065,3505,NO,34.43,42.61,3,-1.81,6106,113.720225,123.481208,133.197127,139.786121,I,Above,Hip,0,5701,,38.51982447,0,1.1,,,,1,1,,0.03,nav,1,1980,3,, 29330,NJBF000063235,5901 WINCHESTER AVE,Ventnor City,NJ,39.34119501,-74.47810953,RES1,3001,,17,NE,1907,1907,3102,1,1,3398.642883,3398.642883,3505,NO,18.89,26.85,3,7.9,6106,113.805546,123.549696,133.276616,139.815436,I,Above,Hip,0,5701,,22.86947173,0,0,,,,1,1,,0.03,nav,1,1907,1,, 29331,NJBF000060949,116 N WYOMING AVE,Ventnor City,NJ,39.33680781,-74.49042097,RES1,3001,,27,NE,1935,1935,3102,2,1,1511.072163,1511.072163,3505,NO,35.67,40.71,3,0.95,6106,113.593319,123.378786,133.092041,139.661024,I,Above,Hip,0,5701,,38.1907974,0,0,,,,1,1,,0.03,nav,1,1935,2,, 29332,NJBF000065139,322 N SOMERSET AVE,Ventnor City,NJ,39.34624066,-74.47946947,RES1,3001,,17,NE,1960,1960,3102,2,1,1740.182194,1740.182194,3505,NO,37.71,45.89,3,1.89,6106,113.708989,123.469899,133.195285,139.709399,I,Above,Flat,0,5701,,41.79985213,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29333,NJBF000062508,114 N NEWPORT AVE,Ventnor City,NJ,39.33959794,-74.48503209,RES1,3001,,17,NE,1940,1940,3102,2,1,980.7501459,980.7501459,3505,NO,32.17,38.78,3,8.24,6106,113.674292,123.443758,133.162826,139.718781,I,Above,Flat,0,5701,,35.47964187,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29334,NJBF000063422,603 N LAFAYETTE AVE,Ventnor City,NJ,39.34166557,-74.49563684,RES1,3001,,17,NE,1980,1980,3102,2,1,1487.372151,1487.372151,3505,NO,32.82,43.94,3,3.85,6106,113.411807,123.231918,132.940465,139.482774,I,Above,Gable,0,5701,,38.37862636,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29335,NJBF000060438,11 S RICHARDS AVE,Ventnor City,NJ,39.33597539,-74.48535579,RES1,3001,,17,NE,1946,1946,3102,2,1,1107.445629,1107.445629,3505,NO,36.43,45.68,3,8.47,6106,113.716487,123.47823,133.196504,139.771791,I,Above,Hip,0,5701,,41.05488063,0,0,,,,1,1,,0.03,nav,1,1946,2,, 29336,NJBF000063214,203 N PORTLAND AVE,Ventnor City,NJ,39.3411334,-74.48440408,RES1,3001,,47,NE,1932,1932,3102,2,2,1056.690853,1056.690853,3505,NO,25.54,31.62,3,-0.08,6106,113.667507,123.437967,133.157806,139.705152,I,Above,Flat,0,5701,,28.58065018,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 29337,NJBF000060884,135 N BALTIMORE AVE,Ventnor City,NJ,39.3366973,-74.49244685,RES1,3001,,17,NE,1942,1942,3102,2,2,1979.606806,1979.606806,3505,NO,33.01,43.44,3,1.94,6106,113.550111,123.343991,133.055272,139.622866,I,Above,Gable,0,5701,,38.22479944,0,0,,,,1,1,,0.03,nav,1,1942,2,, 29338,NJBF000058880,21 S SWARTHMORE AVE,Ventnor City,NJ,39.33310826,-74.49031145,RES1,3001,,17,NE,1917,1917,3102,2,1,1307.129942,1307.129942,3505,NO,28.82,33.92,3,3.99,6106,113.646997,123.422098,133.134808,139.71964,I,Above,Gable,0,5701,,31.37269574,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 29339,NJBF000062958,348-350 HAMPSHIRE DR,Ventnor City,NJ,39.34057933,-74.49215225,RES1,3001,,45,NE,1971,1971,3102,2,2,1646.993405,1646.993405,3505,NO,25.92,37.6,3,0.84,6106,113.503659,123.30601,133.017865,139.567899,I,Above,Gable,0,5701,,31.75523094,0,0,,,,1,1,,0.03,nav,1,1971,2,, 29340,NJBF000062950,107 S SUFFOLK AVE,Ventnor City,NJ,39.34055964,-74.47200698,RES1,3001,,17,NE,1900,1900,3102,3,1,2876.949428,2876.949428,3505,NO,33.35,46.42,3,-1,6106,113.948349,123.665864,133.400066,139.926824,I,Above,Hip,0,5701,,39.88615291,0,1.2,,,,1,1,,0.03,nav,1,1900,3,, 29341,NJBF000061985,6807 MONMOUTH AVE,Ventnor City,NJ,39.33859386,-74.4892761,RES1,3001,,45,NE,1960,1960,3102,2,2,1556.048297,1556.048297,3505,NO,36.61,45.44,3,7.54,6106,113.594179,123.379277,133.093863,139.65502,I,Above,Hip,0,5701,,41.02419413,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29342,NJBF000060792,111 N MELBOURNE AVE,Ventnor City,NJ,39.336551,-74.49148091,RES1,3001,,17,NE,1926,1926,3102,2,1,1277.094962,1277.094962,3505,NO,33.56,45.89,3,0.09,6106,113.573452,123.362798,133.074987,139.644194,I,Above,Hip,0,5701,,39.7228743,0,0,,,,1,1,,0.03,nav,1,1926,2,, 29343,NJBF000063197,109 N CAMBRIDGE AVE,Ventnor City,NJ,39.34110661,-74.48145328,RES1,3001,,17,NE,1984,1984,3102,1,1,1183.327346,1183.327346,3505,NO,16.48,21.94,3,-0.79,6106,113.733001,123.490935,133.214025,139.75868,I,Above,Gable,0,5701,,19.21117519,0,0,,,,1,1,,0.03,nav,1,1984,1,, 29344,NJBF000063164,107 N CAMBRIDGE AVE,Ventnor City,NJ,39.341028,-74.481377,RES1,3001,,17,NE,1929,1929,3102,1,2,1361.26576,1361.26576,3505,NO,8.81,18.27,3,-2.02,6106,113.735735,123.493165,133.216336,139.761325,I,Above,Hip,0,5701,,13.53672152,0,1.1,,,,1,1,,0.03,nav,1,1929,1,, 29345,NJBF000060824,118 N LAFAYETTE AVE,Ventnor City,NJ,39.336601,-74.491139,RES1,3001,,17,NE,1914,1914,3102,2,1,1250.099484,1250.099484,3505,NO,28.89,43.52,3,3.15,6106,113.580314,123.368323,133.08085,139.650155,I,Above,Gable,0,5701,,36.20385984,0,1.1,,,,1,1,,0.03,nav,1,1914,2,, 29346,NJBF000060804,24 S NEWPORT AVE,Ventnor City,NJ,39.33656229,-74.4827291,RES1,3001,,17,NE,1990,1990,3102,2,1,2415.327046,2415.327046,3505,YES,33.72,48.62,3,0.17,6106,113.766333,123.518512,133.239686,139.810715,I,Above,Flat,0,5701,,41.16943804,0,0,,,,1,1,,0.03,nav,1,1990,2,, 29347,NJBF000065034,323 N DUDLEY AVE,Ventnor City,NJ,39.34596833,-74.48052754,RES1,3001,,17,NE,1952,1952,3102,1,1,1385.432482,1385.432482,3505,NO,13.31,18.4,3,-0.13,6106,113.689158,123.453946,133.178112,139.695257,I,Above,Gable,0,5701,,15.85443321,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 29348,NJBF000063379,200 N HARVARD AVE,Ventnor City,NJ,39.34154316,-74.48300511,RES1,3001,,17,NE,1979,1979,3102,1,1,1322.937994,1322.937994,3505,NO,14.68,20.67,3,-1.56,6106,113.692914,123.458406,133.179792,139.723785,I,Above,Gable,0,5701,,17.67667325,0,0,,,,1,1,,0.03,nav,1,1979,1,, 29349,NJBF000062385,108 N NEWPORT AVE,Ventnor City,NJ,39.33934231,-74.48483139,RES1,3001,,17,NE,1928,1928,3102,2,1,1104.465453,1104.465453,3505,NO,34.94,46.2,3,4.72,6106,113.682188,123.45018,133.169441,139.726676,I,Above,Hip,0,5701,,40.56947019,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 29350,NJBF000065064,311 N OXFORD AVE,Ventnor City,NJ,39.34604251,-74.47960642,RES1,3001,,17,NE,1970,1970,3102,2,1,504.1588043,504.1588043,3505,NO,37.14,46.7,3,7.7,6106,113.708546,123.469619,133.194855,139.710237,I,Above,Flat,0,5701,,41.91834237,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 29351,NJBF000058891,109 S PHILADELPHIA AVE,Ventnor City,NJ,39.33312649,-74.48668577,RES1,3001,,19,NE,2004,2004,3102,3,1,2323.923339,2323.923339,3505,NO,35.51,47.99,3,-2.29,6106,113.726572,123.486344,133.202667,139.791433,I,Above,Flat,0,5701,,41.74933096,0,0,,,,1,1,,0.03,nav,1,2004,3,, 29352,NJBF000059413,4 N SWARTHMORE AVE,Ventnor City,NJ,39.33419891,-74.49166259,RES1,3001,,18,NE,2014,2014,3102,2,1,1689.282453,1689.282453,3505,NO,28.71,38.39,3,7.51,6106,113.601994,123.385854,133.097489,139.676353,I,Above,Hip,0,5701,,33.5532314,0,0,,,,1,1,,0.03,nav,1,2014,2,, 29353,NJBF000063175,5 N DORSET AVE,Ventnor City,NJ,39.34105916,-74.47751838,RES1,3001,,18,NE,1920,1920,3102,2,1,1791.656452,1791.656452,3505,NO,27.73,39.58,3,-1.15,6106,113.820407,123.561778,133.28938,139.827748,I,Above,Gable,0,5701,,33.65358661,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 29354,NJBF000063278,6 N DUDLEY AVE,Ventnor City,NJ,39.3413025,-74.4773115,RES1,3001,,17,NE,1950,1950,3102,2,1,1062.561689,1062.561689,3505,NO,33.59,46.47,3,0.53,6106,113.821726,123.562801,133.290665,139.827302,I,Above,Gable,0,5701,,40.03165308,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29355,NJBF000060836,13 N WISSAHICKON AVE,Ventnor City,NJ,39.33661836,-74.48733855,RES1,3001,,17,NE,1940,1940,3102,2,1,866.1444827,866.1444827,3505,NO,31.26,40.14,3,1.26,6106,113.663939,123.435757,133.152077,139.723756,I,Above,Flat,0,5701,,35.69963714,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29356,NJBF000063412,121 N CAMBRIDGE AVE,Ventnor City,NJ,39.34165145,-74.48190188,RES1,3001,,17,NE,1940,1940,3102,2,1,1052.604446,1052.604446,3505,NO,31.82,39.28,3,-0.47,6106,113.715823,123.476909,133.199525,139.741758,I,Above,Gable,0,5701,,35.55292664,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29357,NJBF000064514,15 S BATON ROUGE AVE,Ventnor City,NJ,39.3446735,-74.46679767,RES3B,3001,,17,ME,1930,1930,3301,2,1,1845.949268,1845.949268,3504,NO,38.08,52.77,-4,0,6106,114.008486,123.714174,133.455394,139.945947,I,Above,Hip,0,NaN,,45.42151544,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29358,NJBF000064475,19 S BATON ROUGE AVE,Ventnor City,NJ,39.34457692,-74.46674938,RES3B,3001,,17,ME,1925,1925,3301,2,1,1401.575307,1401.575307,3504,NO,36.59,45.77,-4,0,6106,114.010816,123.716102,133.457382,139.948218,I,Above,Flat,0,NaN,,41.17952936,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29359,NJBF000063224,117 N HARVARD AVE,Ventnor City,NJ,39.34117084,-74.48222337,RES1,3001,,17,NE,1920,1920,3102,1,1,1608.619589,1608.619589,3505,NO,14.94,28.34,3,1.87,6106,113.715153,123.476478,133.198712,139.743926,I,Above,Gable,0,5701,,21.63977733,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29360,NJBF000066566,707 N DERBY AVE,Ventnor City,NJ,39.35009893,-74.48571973,RES1,3001,,17,NE,1980,1980,3101,2,1,1177.825707,1177.825707,3505,NO,32.49,47.4,3,-2.08,6106,113.520811,123.315795,133.033602,139.534314,I,Above,Gable,0,5701,,39.94268811,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29361,NJBF000063167,14 S SOMERSET AVE,Ventnor City,NJ,39.34103563,-74.47424204,RES1,3001,,18,NE,1939,1939,3102,2,1,1889.347861,1889.347861,3505,NO,30.64,43.05,3,1.36,6106,113.892848,123.620626,133.352136,139.882877,I,Above,Hip,0,5701,,36.84652795,0,1.1,,,,1,1,,0.03,nav,1,1939,2,, 29362,NJBF000060749,101 S STRATFORD AVE,Ventnor City,NJ,39.33649034,-74.48136437,RES1,3001,,19,NE,2003,2003,3102,3,1,1889.73832,1889.73832,3505,NO,35.89,44.33,3,-0.07,6106,113.797382,123.54365,133.266305,139.836319,I,Above,Flat,0,5701,,40.10690969,0,0,,,,1,1,,0.03,nav,1,2003,3,, 29363,NJBF000060070,18 N MELBOURNE AVE,Ventnor City,NJ,39.33534786,-74.49103336,RES1,3001,,17,NE,1925,1925,3102,2,1,1755.696778,1755.696778,3505,NO,30.89,41.73,3,-2.85,6106,113.599944,123.3842,133.096645,139.671538,I,Above,Hip,0,5701,,36.31016419,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29364,NJBF000060098,120 N MARTINDALE AVE,Ventnor City,NJ,39.33540518,-74.49409584,RES1,3001,,17,NE,2017,1979,3102,2,1,916.2721051,916.2721051,3505,NO,23.16,37.87,3,-0.07,6106,113.531563,123.329126,133.03868,139.609629,I,Above,Gable,0,5701,,30.51778977,0,0,,,,1,1,,0.03,nav,1,2017,2,, 29365,NJBF000060754,11-13 S AVOLYN AVE,Ventnor City,NJ,39.33649783,-74.48429343,RES1,3001,,45,NE,1961,1961,3102,2,2,1623.446832,1623.446832,3505,NO,29.11,41.76,3,2.4,6106,113.732745,123.491348,133.21083,139.783136,I,Above,Hip,0,5701,,35.43573423,0,0,,,,1,1,,0.03,nav,1,1961,2,, 29366,NJBF000063513,121 N CORNWALL AVE,Ventnor City,NJ,39.34191001,-74.48143716,RES1,3001,,17,NE,1935,1935,3102,2,1,1704.24381,1704.24381,3505,NO,27.18,41.78,3,1.04,6106,113.722632,123.482357,133.205505,139.745761,I,Above,Flat,0,5701,,34.47986271,0,0,,,,1,1,,0.03,nav,1,1935,2,, 29367,NJBF000064492,311 N CORNWALL AVE,Ventnor City,NJ,39.34461761,-74.48305966,RES1,3001,,17,NE,1958,1958,3102,1,1,1470.481291,1470.481291,3505,NO,16.61,27.5,3,2.17,6106,113.650905,123.423516,133.144857,139.6723,I,Above,Flat,0,5701,,22.05365661,0,0,,,,1,1,,0.03,nav,1,1958,1,, 29368,NJBF000062888,311 ESSEX COURT,Ventnor City,NJ,39.34044349,-74.49379203,RES1,3001,,35,NE,1970,1970,3102,2,1,7811.184196,7811.184196,3505,NO,38.52,48.48,3,6.91,6106,113.469201,123.278334,132.988609,139.538113,I,Above,Gable,0,5701,,43.49995294,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29369,NJBF000063137,113 N HARVARD AVE,Ventnor City,NJ,39.340965,-74.482051,RES1,3001,,17,NE,1930,1930,3102,1,1,1396.90574,1396.90574,3505,NO,18.09,23.83,3,2.05,6106,113.721706,123.481825,133.204239,139.750385,I,Above,Hip,0,5701,,20.96368096,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 29370,NJBF000063259,6305 MONMOUTH AVE,Ventnor City,NJ,39.34125003,-74.48368562,RES1,3001,,16,NE,1930,1930,3102,1,1,1338.808098,1338.808098,3505,NO,22.26,27.97,3,7.08,6106,113.681796,123.449487,133.170113,139.716296,I,Above,Hip,0,5701,,25.11462455,0,0,,,,1,1,,0.03,nav,1,1930,1,, 29371,NJBF000060771,114 S SACRAMENTO AVE,Ventnor City,NJ,39.33652087,-74.47967777,RES1,3001,,17,NE,1910,1910,3102,2,1,1350.542334,1350.542334,3505,NO,37.02,43.99,3,4.2,6106,113.834077,123.573379,133.297918,139.865197,I,Above,Gable,0,5701,,40.50552429,0,0,,,,1,1,,0.03,nav,1,1910,2,, 29372,NJBF000058858,103 S PITTSBURGH AVE,Ventnor City,NJ,39.33306982,-74.48812145,RES1,3001,,19,NE,2017,2017,3102,3,1,1412.363491,1412.363491,3505,NO,51.99,63.77,3,-0.26,6110,113.695759,123.461451,133.176311,139.763929,I,Above,Flat,0,5701,,57.88153907,0,0,,,,1,1,,0.35,nav,1,2017,3,, 29373,NJBF000060762,116 N LAFAYETTE AVE,Ventnor City,NJ,39.33650608,-74.4910515,RES1,3001,,NaN,NE,1920,1920,3102,1,1,1288.889376,1288.889376,3505,NO,21.49,28.17,3,8.19,6106,113.583564,123.370948,133.083548,139.653359,I,Above,Gable,0,5701,,24.82783975,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29374,NJBF000066622,612 N SOMERSET AVE,Ventnor City,NJ,39.35027254,-74.48274764,RES1,3001,,17,NE,1974,1974,3102,2,1,1558.467267,1558.467267,3507,NO,34.84,43.77,1,2.57,6106,113.584417,123.367056,133.088197,139.585303,I,Above,Gable,0,5701,,39.30475172,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29375,NJBF000060727,19 N ROSBOROUGH AVE,Ventnor City,NJ,39.3364575,-74.48876224,RES1,3001,,17,NE,1925,1925,3102,2,1,1491.303078,1491.303078,3505,NO,37.56,44.41,3,4.5,6106,113.634743,123.412209,133.127063,139.698855,I,Above,Flat,0,5701,,40.9835487,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29376,NJBF000063215,5903 WINCHESTER AVE,Ventnor City,NJ,39.34113692,-74.47821762,RES1,3001,,18,NE,1920,1920,3102,2,1,1883.839505,1883.839505,3505,NO,34.49,48.97,3,0.33,6106,113.80394,123.548404,133.275194,139.814535,I,Above,Hip,0,5701,,41.73200266,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29377,NJBF000060929,124 N LAFAYETTE AVE,Ventnor City,NJ,39.336772,-74.4912745,RES1,3001,,17,NE,1936,1936,3102,2,1,1371.12813,1371.12813,3505,NO,32.47,40.55,3,0.24,6106,113.574959,123.363996,133.076413,139.644828,I,Above,Hip,0,5701,,36.50904048,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 29378,NJBF000066931,811 N BURGHLEY AVE,Ventnor City,NJ,39.35134163,-74.48757167,RES1,3001,,17,NE,1978,1978,3101,2,1,1781.625977,1781.625977,3505,NO,30.73,41.67,3,7.98,6106,113.463865,123.269082,132.984602,139.48002,I,Above,Hip,0,5701,,36.20047353,0,0,,,,1,1,,0.03,nav,1,1978,2,, 29379,NJBF000061350,104 S CAMBRIDGE AVE,Ventnor City,NJ,39.33748477,-74.4789952,RES1,3001,,17,NE,1920,1920,3102,2,1,1847.881742,1847.881742,3505,NO,34.19,48.92,3,2.69,6106,113.835994,123.574882,133.300356,139.861053,I,Above,Flat,0,5701,,41.55456227,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29380,NJBF000065053,411 N BURGHLEY AVE,Ventnor City,NJ,39.34601163,-74.48332168,RES1,3001,,17,NE,1962,1962,3102,2,1,1178.360933,1178.360933,3505,NO,34.03,39.32,3,8.11,6106,113.626819,123.4035,133.12448,139.644724,I,Above,Gable,0,5701,,36.67574924,0,0,,,,1,1,,0.03,nav,1,1962,2,, 29381,NJBF000060876,6618 VENTNOR AVE,Ventnor City,NJ,39.33668708,-74.48486737,COM1,3001,,43,ME,1928,1928,3401,2,2,1460.344625,1460.344625,3507,NO,37.41,45.42,1,0.64,6106,113.717507,123.479018,133.197921,139.769389,I,Above,Flat,0,NaN,,41.41360662,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 29382,NJBF000065123,12 N JACKSON AVE,Ventnor City,NJ,39.34618922,-74.46701116,RES3A,3001,,45,NE,1935,1935,3301,2,2,1582.295786,1582.295786,3505,NO,33.16,47.93,3,4.47,6106,113.984068,123.693809,133.434796,139.918944,I,Above,Hip,0,5701,,40.54450656,0,0,,,,1,1,,0.03,nav,1,1935,2,, 29383,NJBF000062466,128 1/2 N NEW HAVEN AVE,Ventnor City,NJ,39.33951986,-74.4864553,RES1,3001,,28,NE,1940,1940,3102,2,1,1225.391718,1225.391718,3505,NO,32.95,43.07,3,3.99,6106,113.643925,123.419252,133.136809,139.693617,I,Above,Gable,0,5701,,38.00563773,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29384,NJBF000060833,9 S AVOLYN AVE,Ventnor City,NJ,39.33661326,-74.48438676,RES1,3001,,45,NE,1924,1924,3102,2,2,1395.597264,1395.597264,3505,NO,25.45,30.97,3,3.52,6106,113.7291,123.488394,133.207795,139.779516,I,Above,Flat,0,5701,,28.21358041,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 29385,NJBF000064665,5700 CALVERT AVE,Ventnor City,NJ,39.34502854,-74.47940505,RES1,3001,,17,NE,1960,1960,3102,1,1,2334.081244,2334.081244,3505,NO,23.73,33.46,3,7.49,6106,113.726251,123.484347,133.209853,139.730336,I,Above,Gable,0,5701,,28.59354036,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 29386,NJBF000060724,218 N WASHINGTON AVE,Ventnor City,NJ,39.33645219,-74.49471787,RES1,3001,,17,NE,1950,1950,3102,2,1,1310.00838,1310.00838,3505,NO,28.04,36.26,3,5.89,6106,113.503331,123.306364,133.015487,139.581449,I,Above,Gable,0,5701,,32.14772691,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29387,NJBF000061955,18-20 N NEWPORT AVE,Ventnor City,NJ,39.33854163,-74.4842628,COM1,3001,,NaN,ME,1900,1940,3401,1,1,3357.807168,3357.807168,3507,NO,10.67,16.39,1,-0.62,6106,113.705555,123.46918,133.18897,139.750225,I,Above,Hip,0,NaN,,13.52993883,0,0,,,,1,1,,0.03,nav,1,1900,1,, 29388,NJBF000060401,2 N NEWARK AVE,Ventnor City,NJ,39.33590103,-74.48791019,RES1,3001,,17,NE,1920,1920,3102,2,1,1161.117436,1161.117436,3505,NO,28.92,35.4,3,2.97,6106,113.661197,123.433582,133.149211,139.724164,I,Above,Hip,0,5701,,32.16179576,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29389,NJBF000065687,610 N CAMBRIDGE AVE,Ventnor City,NJ,39.34780992,-74.48701097,RES1,3001,,17,NE,1974,1974,3101,2,1,1026.365078,1026.365078,3505,NO,39.57,50.18,3,6.25,6106,113.52172,123.317825,133.034568,139.548017,I,Above,Gable,0,5701,,44.87367243,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29390,NJBF000061094,109 S HARVARD AVE,Ventnor City,NJ,39.33704442,-74.47889885,RES1,3001,,17,NE,1920,1920,3102,2,1,2490.716596,2490.716596,3505,NO,38.22,45.19,3,2.3,6106,113.8441,123.581482,133.306992,139.869919,I,Above,Hip,0,5701,,41.70459421,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29391,NJBF000063349,433 BERKSHIRE DRIVE,Ventnor City,NJ,39.34147287,-74.49365094,RES1,3001,,35,NE,1982,1982,3102,2,1,1361.309817,1361.309817,3505,NO,42.9,54.08,3,7.23,6106,113.458406,123.2694,132.979819,139.524619,I,Above,Gable,0,5701,,48.49128529,0,0,,,,1,1,,0.03,nav,1,1982,2,, 29392,NJBF000066913,812 N BURGHLEY AVE,Ventnor City,NJ,39.35127242,-74.48810121,RES1,3001,,17,NE,1976,1976,3101,2,1,2208.12713,2208.12713,3505,NO,31.25,40.58,3,2.1,6106,113.453019,123.260393,132.975352,139.471391,I,Above,Flat,0,5701,,35.91623766,0,0,,,,1,1,,0.03,nav,1,1976,2,, 29393,NJBF000066880,810 N BURGHLEY AVE,Ventnor City,NJ,39.3511381,-74.48798824,RES1,3001,,17,NE,1977,1977,3101,1,1,2060.45674,2060.45674,3505,NO,15.38,21.44,3,3.78,6106,113.457234,123.263879,132.97899,139.475666,I,Above,Hip,0,5701,,18.41391174,0,0,,,,1,1,,0.03,nav,1,1977,1,, 29394,NJBF000060914,102 S PRINCETON AVE,Ventnor City,NJ,39.33673957,-74.48059489,RES1,3001,,16,NE,1925,1925,3102,2,1,1746.903085,1746.903085,3505,NO,29.83,43.74,3,2.53,6110,113.810904,123.55459,133.278141,139.845707,I,Above,Gable,0,5701,,36.786609,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 29395,NJBF000060483,210 N WASHINGTON AVE,Ventnor City,NJ,39.33604919,-74.49434887,RES1,3001,,17,NE,1950,1950,3102,2,1,1489.046152,1489.046152,3505,NO,39.53,52.01,3,8.08,6106,113.517054,123.317426,133.026838,139.594899,I,Above,Gable,0,5701,,45.77191734,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29396,NJBF000062129,6416 WINCHESTER AVE,Ventnor City,NJ,39.33884026,-74.48383159,RES1,3001,,17,NE,1925,1925,3102,2,2,559.5753215,559.5753215,3505,NO,32.08,37.99,3,-2.16,6106,113.711025,123.473562,133.193847,139.753222,I,Above,Flat,0,5701,,35.03665472,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29397,NJBF000060052,117 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33532012,-74.49427993,RES1,3001,,17,NE,1950,1950,3102,2,1,2078.586019,2078.586019,3505,NO,37.58,50.88,3,6.58,6106,113.528681,123.326809,133.03618,139.607212,I,Above,Hip,0,5701,,44.2295223,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 29398,NJBF000066876,6100 BURK AVE,Ventnor City,NJ,39.35111636,-74.48882464,RES1,3001,,17,NE,1978,1978,3101,1,1,2099.078177,2099.078177,3505,NO,14.82,25.45,3,4.2,6106,113.438939,123.249164,132.963375,139.460518,I,Above,Hip,0,5701,,20.13105256,0,0,,,,1,1,,0.03,nav,1,1978,1,, 29399,NJBF000060831,133 N BALTIMORE AVE,Ventnor City,NJ,39.33660749,-74.49237484,RES1,3001,,45,NE,1942,1942,3102,2,2,1591.311248,1591.311248,3505,NO,37.02,43.28,3,8.22,6106,113.552941,123.346276,133.057614,139.625674,I,Above,Gable,0,5701,,40.15094628,0,0,,,,1,1,,0.03,nav,1,1942,2,, 29400,NJBF000063386,,Ventnor City,NJ,39.3415775,-74.500012,IND2,3002,,NaN,ME,1969,0,3401,1,1,665.5901733,665.5901733,3507,NO,10.86,19.16,1,-0.16,6106,113.316017,123.155132,132.859766,139.397703,I,Above,Flat,0,NaN,,15.00974752,0,0,,,,1,1,,0.03,nav,1,1969,1,, 29401,NJBF000060695,,Ventnor City,NJ,39.33641095,-74.48488935,RES1,3001,,NaN,NE,1928,0,3102,2,1,2068.411863,2068.411863,3505,NO,29.58,42.67,3,-0.42,6106,113.7208,123.481697,133.200533,139.773472,I,Above,Flat,0,5701,,36.12197562,0,0,,,,1,1,,0.03,nav,1,1928,2,, 29402,NJBF000060797,14 N WISSAHICKON AVE,Ventnor City,NJ,39.33655776,-74.48772766,RES1,3001,,17,NE,1925,1925,3102,1,1,1795.947872,1795.947872,3505,NO,16.02,22.78,3,0.45,6106,113.656181,123.429499,133.145414,139.717247,I,Above,Hip,0,5701,,19.40134103,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29403,NJBF000066892,809 N BURGHLEY AVE,Ventnor City,NJ,39.35118691,-74.48746485,RES1,3001,,17,NE,1977,1977,3101,2,1,1994.345519,1994.345519,3505,NO,32.97,43.79,3,-2.23,6106,113.468213,123.272691,132.988361,139.484521,I,Above,Flat,0,5701,,38.37610635,0,0,,,,1,1,,0.03,nav,1,1977,2,, 29404,NJBF000058833,100 S PITTSBURGH AVE,Ventnor City,NJ,39.33302918,-74.48854356,RES1,3001,,17,NE,1920,1920,3102,2,1,2261.700815,2261.700815,3505,NO,45.24,54.54,3,7.45,6110,113.687016,123.454389,133.168818,139.756133,I,Above,Gable,0,5701,,49.88905681,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 29405,NJBF000060667,106 S PORTLAND AVE,Ventnor City,NJ,39.33636997,-74.48099011,RES1,3001,,20,NE,2014,2014,3102,3,1,1377.630204,1377.630204,3505,NO,44.83,53.05,3,6.15,6106,113.807257,123.551652,133.274699,139.844892,I,Above,Gable,0,5701,,48.94140983,0,0,,,,1,1,,0.03,nav,1,2014,3,, 29406,NJBF000060823,22 S NEWPORT AVE,Ventnor City,NJ,39.33659801,-74.48301506,RES1,3001,,18,NE,1918,2018,3102,2,1,1725.489057,1725.489057,3505,NO,39.87,47.08,3,5.04,6106,113.75954,123.513014,133.233883,139.804938,I,Above,Gable,0,5701,,43.47613499,0,0,,,,1,1,,0.03,nav,1,1918,2,, 29407,NJBF000064999,5 N BATON ROUGE AVE,Ventnor City,NJ,39.34587587,-74.46776411,RES3A,3001,,17,NE,1930,1930,3301,2,1,931.075183,931.075183,3505,NO,44.95,51.6,3,8.86,6106,113.971593,123.683702,133.423688,139.911689,I,Above,Flat,0,5701,,48.2772989,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29408,NJBF000063172,5702 VENTNOR AVE,Ventnor City,NJ,39.3410544,-74.475763,RES1,3001,,17,NE,1978,1978,3102,2,1,2619.577839,2619.577839,3505,NO,30.21,36.44,3,-1.79,6106,113.859129,123.593217,133.322896,139.857382,I,Above,Gable,0,5701,,33.32565821,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 29409,NJBF000061339,23 N RICHARDS AVE,Ventnor City,NJ,39.33747159,-74.4865283,RES1,3001,,17,NE,1940,1940,3102,2,1,1168.503496,1168.503496,3505,NO,37.14,42.55,3,2.63,6106,113.670145,123.440697,133.157969,139.725461,I,Above,Hip,0,5701,,39.84529246,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29410,NJBF000064497,6 N NASHVILLE AVE,Ventnor City,NJ,39.34463548,-74.47016616,RES1,3001,,17,NE,1920,1920,3102,1,1,3623.968837,3623.968837,3507,NO,17.65,26.71,1,0.79,6106,113.934984,123.654159,133.390988,139.892264,I,Above,Hip,0,5701,,22.17807832,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29411,NJBF000063203,6403 SUNSET AVE,Ventnor City,NJ,39.34111585,-74.48487869,RES1,3001,,NaN,NE,1930,1930,3102,2,2,1536.785002,1536.785002,3505,NO,38.91,48.8,3,6.49,6106,113.657243,123.429679,133.149005,139.696737,I,Above,Flat,0,5701,,43.85138368,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29412,NJBF000060752,12 S NEW HAVEN AVE,Ventnor City,NJ,39.33649598,-74.48401054,RES1,3001,,17,NE,1932,1932,3102,3,1,1552.738942,1552.738942,3505,NO,49.37,60.27,3,6.04,6106,113.738988,123.496395,133.216178,139.78838,I,Above,Hip,0,5701,,54.82199973,0,1.2,,,,1,1,,0.03,nav,1,1932,3,, 29413,NJBF000063282,19 N DORSET AVE,Ventnor City,NJ,39.34131848,-74.4777281,RES1,3001,,NaN,NE,1969,0,3102,1,1,2489.275202,2489.275202,3505,NO,21.5,32.67,3,8.58,6106,113.812324,123.555169,133.282544,139.81995,I,Above,Flat,0,5701,,27.08587298,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 29414,NJBF000064026,207 N DERBY AVE,Ventnor City,NJ,39.34337274,-74.48030297,RES1,3001,,17,NE,1930,1930,3102,2,1,1113.614181,1113.614181,3505,NO,40.91,55.32,3,2.87,6106,113.728237,123.486497,133.210974,139.741739,I,Above,Flat,0,5701,,48.11494352,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29415,NJBF000059483,104 S BUFFALO AVE,Ventnor City,NJ,39.3343297,-74.48520846,RES1,3001,,16,NE,1925,1925,3102,2,1,1795.890395,1795.890395,3505,NO,38.63,43.75,3,4.94,6106,113.742414,123.499198,133.217315,139.801102,I,Above,Hip,0,5701,,41.18630124,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29416,NJBF000064090,310 N HARVARD AVE,Ventnor City,NJ,39.34354476,-74.48446503,RES1,3001,,19,NE,2006,2006,3102,3,1,4155.244821,4155.244821,3505,NO,47.56,61.62,3,-0.65,6106,113.634016,123.41024,133.130052,139.66448,I,Above,Hip,0,5701,,54.59218239,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 29417,NJBF000063738,5502 WINCHESTER AVE,Ventnor City,NJ,39.34255407,-74.47441852,RES1,3001,,17,NE,1919,1919,3102,2,1,1468.618098,1468.618098,3505,NO,29.86,44.42,3,7.68,6106,113.868791,123.600767,133.332179,139.855562,I,Above,Hip,0,5701,,37.14205231,0,1.2,,,,1,1,,0.03,nav,1,1919,2,, 29418,NJBF000062778,6223 WINCHESTER AVE,Ventnor City,NJ,39.34020679,-74.48217878,RES1,3001,,17,NE,1925,1925,3102,1,1,2035.994493,2035.994493,3505,NO,15.35,26.39,3,2.29,6106,113.729052,123.487919,133.210138,139.760572,I,Above,Hip,0,5701,,20.87300695,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29419,NJBF000063529,445-447 BERKSHIRE DR,Ventnor City,NJ,39.3419565,-74.4933825,RES1,3001,,45,NE,1973,1973,3102,2,2,1545.425737,1545.425737,3505,NO,38.67,46.82,3,2.42,6106,113.457851,123.268817,132.979489,139.522176,I,Above,Flat,0,5701,,42.74304292,0,0,,,,1,1,,0.03,nav,1,1973,2,, 29420,NJBF000064513,9 N HILLSIDE AVE,Ventnor City,NJ,39.34467315,-74.47061814,RES1,3001,,17,NE,1918,1918,3102,1,2,1778.123507,1778.123507,3507,NO,14.9,23.49,1,-0.14,6106,113.924547,123.645638,133.38189,139.884295,I,Above,Hip,0,5701,,19.19450335,0,1.1,,,,1,1,,0.03,nav,1,1918,1,, 29421,NJBF000062960,8 S OXFORD AVE,Ventnor City,NJ,39.34058337,-74.47515599,RES1,3001,,18,NE,1925,1925,3102,3,1,2016.627741,2016.627741,3505,NO,40.26,46.11,3,7.9,6106,113.878778,123.609262,133.339624,139.875076,I,Above,Hip,0,5701,,43.18821283,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 29422,NJBF000060661,112 N MELBOURNE AVE,Ventnor City,NJ,39.33636574,-74.49183452,RES1,3001,,17,NE,1925,1925,3102,2,1,1177.227388,1177.227388,3505,NO,34.56,43.01,3,2.49,6106,113.568185,123.358568,133.070392,139.640058,I,Above,Hip,0,5701,,38.78463641,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29423,NJBF000058950,19 S BALTIMORE AVE,Ventnor City,NJ,39.33323453,-74.48968405,RES1,3001,,17,NE,1935,1935,3102,1,1,2187.329122,2187.329122,3505,NO,16.38,27.89,3,-1.96,6106,113.659036,123.431818,133.145168,139.730306,I,Above,Hip,0,5701,,22.13706311,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 29424,NJBF000065889,601 N DERBY AVE,Ventnor City,NJ,39.34836634,-74.48428339,RES1,3001,,17,NE,1986,1986,3101,2,1,1763.46338,1763.46338,3505,NO,32.82,47.12,3,5.16,6106,113.574947,123.360478,133.080152,139.588804,I,Above,Flat,0,5701,,39.97045099,0,0,,,,1,1,,0.03,nav,1,1986,2,, 29425,NJBF000062069,203 N NEWARK AVE,Ventnor City,NJ,39.33874367,-74.48976911,RES1,3001,,17,NE,1966,1966,3102,2,1,1308.314002,1308.314002,3505,NO,40.41,54.79,3,8.48,6106,113.581244,123.368831,133.082936,139.643136,I,Above,Flat,0,5701,,47.59926264,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 29426,NJBF000063147,130 N SACRAMENTO AVE,Ventnor City,NJ,39.34097987,-74.48325287,RES1,3001,,17,NE,1925,1925,3102,2,1,1064.882135,1064.882135,3505,NO,35.26,49.03,3,-2.7,6106,113.694974,123.4602,133.181287,139.728567,I,Above,Gable,0,5701,,42.1453179,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29427,NJBF000063914,23 S HILLSIDE AVE,Ventnor City,NJ,39.34307055,-74.46932309,RES1,3001,,17,NE,1950,1950,3102,2,1,851.5367321,851.5367321,3505,NO,29.84,44.82,3,3.57,6110,113.974048,123.686394,133.424222,139.930493,I,Above,Hip,0,5701,,37.33258754,0,1.1,,,,1,1,,0.35,nav,1,1950,2,, 29428,NJBF000061634,6205 OCEAN AVE,Ventnor City,NJ,39.33798876,-74.48015027,RES1,3001,,16,NE,1952,1952,3102,2,1,2423.521693,2423.521693,3505,NO,27.79,33.82,3,3.87,6106,113.803722,123.548684,133.272926,139.832879,I,Above,Hip,0,5701,,30.80375752,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 29429,NJBF000061615,201 N WYOMING AVE,Ventnor City,NJ,39.33794802,-74.49084857,RES1,3001,,17,NE,1975,1975,3102,2,1,709.866962,709.866962,3505,NO,41.54,55.78,3,2.63,6106,113.568241,123.358466,133.07143,139.634796,I,Above,Gable,0,5701,,48.66080064,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 29430,NJBF000060538,1 N WISSAHICKON AVE,Ventnor City,NJ,39.3361575,-74.4869415,RES1,3001,,17,NE,1922,1922,3102,2,1,1410.698016,1410.698016,3505,NO,31.15,42.74,3,3.14,6106,113.679023,123.44796,133.164617,139.738729,I,Above,Hip,0,5701,,36.94860634,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 29431,NJBF000061185,116 N ROSBOROUGH AVE,Ventnor City,NJ,39.33721011,-74.4898674,RES1,3001,,17,NE,1920,1920,3102,2,1,1774.664184,1774.664184,3505,NO,27.36,37.52,3,5.35,6106,113.600033,123.384162,133.098014,139.665532,I,Above,Hip,0,5701,,32.4356454,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29432,NJBF000062484,1 S CORNWALL AVE,Ventnor City,NJ,39.33956476,-74.4788555,RES1,3001,,17,NE,1906,1906,3102,3,1,2365.370586,2365.370586,3505,NO,48.61,62.79,3,5.62,6106,113.810969,123.554372,133.280282,139.829347,I,Above,Hip,0,5701,,55.69903852,0,1.2,,,,1,1,,0.03,nav,1,1906,3,, 29433,NJBF000062386,5 S CORNWALL AVE,Ventnor City,NJ,39.33934312,-74.47868707,RES1,3001,,17,NE,1926,1926,3102,2,1,2453.703351,2453.703351,3505,NO,18.37,33.05,3,-2.9,6106,113.817657,123.559826,133.285904,139.835862,I,Above,Flat,0,5701,,25.71166044,0,1.2,,,,1,1,,0.03,nav,1,1926,2,, 29434,NJBF000065224,,Ventnor City,NJ,39.34644499,-74.48363646,RES1,3001,,NaN,NE,1969,0,3102,2,1,1664.217298,1664.217298,3505,NO,38.26,52.23,3,7.05,6106,113.614216,123.39313,133.113726,139.631964,I,Above,Hip,0,5701,,45.24355552,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29435,NJBF000065043,17 N AUSTIN AVE,Ventnor City,NJ,39.34598588,-74.46929805,RES1,3001,,17,NE,1942,1942,3102,2,1,1335.07017,1335.07017,3507,NO,34.21,39.94,1,2.71,6106,113.936449,123.654967,133.392945,139.885075,I,Above,Gable,0,5701,,37.07314573,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 29436,NJBF000064967,5406 CALVERT AVE,Ventnor City,NJ,39.34581383,-74.47779093,RES1,3001,,17,NE,1960,1960,3102,2,1,1046.636989,1046.636989,3505,NO,35.45,48.11,3,8.87,6106,113.751605,123.504617,133.232006,139.745543,I,Above,Gable,0,5701,,41.77859432,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29437,NJBF000064132,129 N OXFORD AVE,Ventnor City,NJ,39.34366115,-74.47782416,RES1,3001,,43,NE,1929,1929,3102,2,2,1240.815857,1240.815857,3505,NO,36.27,45.17,3,-0.42,6106,113.779131,123.527664,133.255031,139.780078,I,Above,Gable,0,5701,,40.72050286,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29438,NJBF000061809,6901 MONMOUTH AVE,Ventnor City,NJ,39.338289,-74.4897665,RES1,3001,,17,NE,2014,2014,3102,3,1,815.4932554,815.4932554,3505,NO,40.5,50.16,3,8.2,6106,113.587488,123.373928,133.087995,139.65041,I,Above,Flat,0,5701,,45.33004333,0,0,,,,1,1,,0.03,nav,1,2014,3,, 29439,NJBF000065300,514 N HARVARD AVE,Ventnor City,NJ,39.34667144,-74.48697286,RES1,3001,,17,NE,1965,1965,3102,2,1,1420.687585,1420.687585,3505,NO,26.85,39.71,3,0.03,6106,113.537392,123.331024,133.047939,139.567321,I,Above,Flat,0,5701,,33.27917546,0,0,,,,1,1,,0.03,nav,1,1965,2,, 29440,NJBF000063836,116 N DUDLEY AVE,Ventnor City,NJ,39.34284812,-74.47848999,COM1,3001,,17,ME,1926,1926,3401,2,1,1056.202598,1056.202598,3507,NO,40.47,47.25,1,1.97,6106,113.775189,123.524693,133.251258,139.78189,I,Above,Hip,0,NaN,,43.86433345,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 29441,NJBF000060208,11 N LAFAYETTE AVE,Ventnor City,NJ,39.33558421,-74.48982033,RES1,3001,,17,NE,1920,1920,3102,2,1,1228.280287,1228.280287,3505,NO,38.18,45.47,3,8.33,6106,113.62344,123.403135,133.116803,139.691853,I,Above,Hip,0,5701,,41.82488248,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29442,NJBF000063075,110 N CAMBRIDGE AVE,Ventnor City,NJ,39.340846,-74.48169005,RES1,3001,,17,NE,1919,1919,3102,1,1,1609.093571,1609.093571,3505,NO,21.66,32.13,3,3.98,6106,113.731266,123.489586,133.212395,139.758768,I,Above,Hip,0,5701,,26.89635556,0,1.1,,,,1,1,,0.03,nav,1,1919,1,, 29443,NJBF000062678,109 N PORTLAND AVE,Ventnor City,NJ,39.33999051,-74.48346043,RES1,3001,,17,NE,1921,1921,3102,2,1,1292.376347,1292.376347,3505,NO,41.21,55.38,3,8.83,6106,113.703691,123.467447,133.188241,139.741077,I,Above,Hip,0,5701,,48.29785562,0,0,,,,1,1,,0.03,nav,1,1921,2,, 29444,NJBF000060985,20 N WISSAHICKON AVE,Ventnor City,NJ,39.33685268,-74.48796481,RES1,3001,,17,NE,1940,1940,3102,2,1,1730.986677,1730.986677,3505,NO,42.75,55.85,3,6.11,6106,113.646907,123.421994,133.137709,139.70799,I,Above,Gable,0,5701,,49.30142104,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29445,NJBF000064780,210 N SURREY AVE,Ventnor City,NJ,39.34530543,-74.47702216,RES1,3001,,45,NE,1970,1970,3102,2,2,1402.182332,1402.182332,3505,NO,40.9,54.17,3,7.54,6106,113.775224,123.523966,133.252288,139.767061,I,Above,Flat,0,5701,,47.53833887,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29446,NJBF000062302,8 N SACRAMENTO AVE,Ventnor City,NJ,39.33918042,-74.48202686,RES1,3001,,NaN,NE,1960,1960,3102,2,1,8427.376214,8427.376214,3505,NO,39.82,50.08,3,4.91,6106,113.74624,123.501996,133.22429,139.780192,I,Above,Hip,0,5701,,44.95121856,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29447,NJBF000064096,104 N SUFFOLK AVE,Ventnor City,NJ,39.34356447,-74.47648476,RES1,3001,,17,NE,1956,1956,3102,1,1,1560.777079,1560.777079,3505,NO,13.59,23.57,3,1.2,6106,113.809933,123.55269,133.281648,139.804526,I,Above,Hip,0,5701,,18.5795143,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 29448,NJBF000060282,6903 VENTNOR AVE,Ventnor City,NJ,39.3357102,-74.48787416,RES1,3001,,NaN,NE,1966,1966,3102,2,1,2151.92836,2151.92836,3505,NO,34.39,43.92,3,4.33,6106,113.664621,123.436352,133.151986,139.727879,I,Above,Flat,0,5701,,39.15706515,0,0,,,,1,1,,0.03,nav,1,1966,2,, 29449,NJBF000062171,16 S DERBY AVE,Ventnor City,NJ,39.33891619,-74.47765862,RES1,3001,,18,NE,1965,1965,3102,1,1,4471.477613,4471.477613,3505,NO,23.26,30.01,3,7.42,6110,113.846049,123.582909,133.310123,139.860303,I,Above,Hip,0,5701,,26.6322791,0,1.2,,,,1,1,,0.35,nav,1,1965,1,, 29450,NJBF000066620,615 N OXFORD AVE,Ventnor City,NJ,39.35025916,-74.48312849,RES1,3001,,17,NE,1974,1974,3102,2,1,1067.25709,1067.25709,3507,NO,38.07,46.05,1,0.34,6106,113.576183,123.360409,133.081115,139.578701,I,Above,Flat,0,5701,,42.05779141,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29451,NJBF000062251,127 N TROY AVE,Ventnor City,NJ,39.33908489,-74.48711854,RES1,3001,,17,NE,1920,1920,3102,2,1,1083.968422,1083.968422,3505,NO,30.36,44.85,3,8.22,6106,113.635152,123.412245,133.129075,139.688208,I,Above,Hip,0,5701,,37.60619996,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29452,NJBF000062223,125 N TROY AVE,Ventnor City,NJ,39.3390282,-74.4870798,RES1,3001,,17,NE,1922,1922,3102,2,1,1099.418144,1099.418144,3505,NO,34.39,47.81,3,6.63,6106,113.636786,123.413573,133.130438,139.689866,I,Above,Hip,0,5701,,41.09730283,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 29453,NJBF000061413,6003 BOARDWALK,Ventnor City,NJ,39.33759809,-74.47683984,RES1,3001,,20,NE,1920,1920,3102,3,1,3006.33365,3006.33365,3505,NO,33.95,44.58,3,0.52,6106,113.881886,123.612111,133.340085,139.895414,I,Above,Hip,0,5701,,39.26399657,0,0,,,,1,1,,0.03,nav,1,1920,3,, 29454,NJBF000062001,6007 ATLANTIC AVE,Ventnor City,NJ,39.33862197,-74.47811009,RES1,3001,,18,NE,1905,1905,3102,2,1,3344.115341,3344.115341,3505,NO,32.23,38.29,3,-0.84,6110,113.840085,123.578102,133.304756,139.85748,I,Above,Hip,0,5701,,35.26053935,0,1.2,,,,1,1,,0.35,nav,1,1905,2,, 29455,NJBF000060243,13 S BUFFALO AVE,Ventnor City,NJ,39.33564149,-74.48581775,RES1,3001,,17,NE,1930,1930,3102,3,1,1096.37932,1096.37932,3505,NO,42.89,53.2,3,3.96,6106,113.710895,123.473722,133.191456,139.768442,I,Above,Flat,0,5701,,48.04296898,0,0,,,,1,1,,0.03,nav,1,1930,3,, 29456,NJBF000061570,110 N BUFFALO AVE,Ventnor City,NJ,39.3378795,-74.488043,RES1,3001,,17,NE,1922,1922,3102,2,1,813.3328566,813.3328566,3505,NO,33.86,46,3,5.68,6106,113.631153,123.409186,133.124948,139.690099,I,Above,Gable,0,5701,,39.9324961,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 29457,NJBF000067041,707 N SURREY AVE,Ventnor City,NJ,39.35179284,-74.48172392,RES3A,3001,,27,NE,1980,1980,3301,2,1,1109.220107,1109.220107,3505,NO,27.05,34.47,3,2.31,6106,113.587734,123.368786,133.090848,139.578819,I,Above,Gable,0,5701,,30.75990017,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29458,NJBF000058976,6 S SWARTHMORE AVE,Ventnor City,NJ,39.33329325,-74.49093201,RES1,3001,,17,NE,1925,1925,3102,2,1,1522.31553,1522.31553,3505,NO,35.1,43.73,3,-0.92,6106,113.630733,123.408991,133.121141,139.704451,I,Above,Hip,0,5701,,39.41185485,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29459,NJBF000058921,8 S SWARTHMORE AVE,Ventnor City,NJ,39.33318794,-74.49085743,RES1,3001,,17,NE,1930,1930,3102,2,1,1048.216422,1048.216422,3505,NO,32.79,41.68,3,7.01,6106,113.633851,123.4115,133.1237,139.707505,I,Above,Hip,0,5701,,37.23461388,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29460,NJBF000062261,4 S CORNWALL AVE,Ventnor City,NJ,39.33910093,-74.47905865,RES1,3001,,18,NE,1945,1945,3102,2,1,1726.448074,1726.448074,3505,NO,36.89,51.89,3,6.14,6106,113.812723,123.555857,133.28148,139.833451,I,Above,Hip,0,5701,,44.38853717,0,1.2,,,,1,1,,0.03,nav,1,1945,2,, 29461,NJBF000063414,12 S SUFFOLK AVE,Ventnor City,NJ,39.341653,-74.47350838,RES1,3001,,18,NE,1930,1930,3102,2,1,3184.835831,3184.835831,3505,NO,45.38,59.46,3,8.84,6106,113.900789,123.626977,133.359438,139.885057,I,Above,Flat,0,5701,,52.42147866,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29462,NJBF000060285,21 N MELBOURNE AVE,Ventnor City,NJ,39.33571728,-74.49080157,RES1,3001,,17,NE,1927,1927,3102,2,1,1202.5813,1202.5813,3505,NO,29.31,38.67,3,6.72,6106,113.599939,123.384185,133.096913,139.67045,I,Above,Gable,0,5701,,33.99020558,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 29463,NJBF000066433,710 N BURGHLEY AVE,Ventnor City,NJ,39.34974493,-74.4868171,RES1,3001,,17,NE,1966,1966,3101,2,1,1181.644819,1181.644819,3505,NO,28,39.69,3,3.76,6106,113.501035,123.300063,133.016722,139.519988,I,Above,Flat,0,5701,,33.84117067,0,0,,,,1,1,,0.03,nav,1,1966,2,, 29464,NJBF000060609,19 S AVOLYN AVE,Ventnor City,NJ,39.33627271,-74.4840991,RES1,3001,,29,NE,1921,1921,3102,2,1,1468.638793,1468.638793,3505,NO,28.76,40.48,3,7.01,6110,113.740102,123.497307,133.216959,139.790404,I,Above,Flat,0,5701,,34.62272286,0,0,,,,1,1,,0.35,nav,1,1921,2,, 29465,NJBF000059731,18 S NEWARK AVE,Ventnor City,NJ,39.33475398,-74.48700933,RES1,3001,,17,NE,1925,1925,3102,2,1,1384.719409,1384.719409,3505,NO,23.06,30.81,3,-2.64,6106,113.69688,123.462412,133.178754,139.759723,I,Above,Hip,0,5701,,26.93285502,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29466,NJBF000058752,16 S SWARTHMORE AVE,Ventnor City,NJ,39.33287357,-74.49059313,RES1,3001,,18,NE,1928,1928,3102,2,1,1086.327391,1086.327391,3505,NO,33.46,40.85,3,7.37,6106,113.644054,123.419709,133.132093,139.717424,I,Above,Gable,0,5701,,37.15449059,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 29467,NJBF000065701,417 N SUFFOLK AVE,Ventnor City,NJ,39.34785963,-74.4793587,RES1,3001,,17,NE,1950,1950,3102,1,1,1773.922293,1773.922293,3505,NO,15.49,22.7,3,3.35,6106,113.690398,123.454125,133.179528,139.684881,I,Above,Gable,0,5701,,19.09636743,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29468,NJBF000061628,7000 VENTNOR GDNS PL,Ventnor City,NJ,39.33797669,-74.49140758,RES1,3001,,17,NE,1965,1965,3102,2,1,1326.66067,1326.66067,3505,NO,22.36,29.19,3,0.35,6106,113.555494,123.348196,133.060617,139.623429,I,Above,Gable,0,5701,,25.77747827,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 29469,NJBF000062884,10 N CORNWALL AVE,Ventnor City,NJ,39.34043543,-74.48019439,RES1,3001,,18,NE,1962,1962,3102,2,1,2077.766482,2077.766482,3505,NO,39.15,51.96,3,8.2,6106,113.769772,123.520843,133.245307,139.791882,I,Above,Hip,0,5701,,45.55579681,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 29470,NJBF000060213,16 N LAFAYETTE AVE,Ventnor City,NJ,39.33558628,-74.49030606,RES1,3001,,17,NE,1929,1929,3102,2,1,1305.699198,1305.699198,3505,NO,33.94,40.16,3,3.35,6106,113.612692,123.394469,133.10766,139.682254,I,Above,Hip,0,5701,,37.05030179,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 29471,NJBF000060790,102 N WYOMING AVE,Ventnor City,NJ,39.3365498,-74.49019142,RES1,3001,,17,NE,1945,1945,3102,2,1,1347.912952,1347.912952,3505,NO,42.28,47.92,3,5.38,6106,113.601943,123.385755,133.099202,139.669554,I,Above,Hip,0,5701,,45.10058535,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 29472,NJBF000061914,211 N WYOMING AVE,Ventnor City,NJ,39.33846453,-74.49162209,RES1,3001,,17,NE,1950,1950,3102,1,1,2055.157739,2055.157739,3505,NO,19.66,26.76,3,1.58,6106,113.544097,123.338953,133.05121,139.611592,I,Above,Hip,0,5701,,23.20773183,0,0,,,,1,1,,0.03,nav,1,1950,1,, 29473,NJBF000058539,20 S MARTINDALE AVE,Ventnor City,NJ,39.33248598,-74.49168578,RES1,3001,,17,NE,1926,1926,3102,1,1,1863.060826,1863.060826,3505,NO,22.36,33.6,3,6.26,6106,113.625412,123.404645,133.115892,139.701042,I,Above,Flat,0,5701,,27.97807717,0,1.1,,,,1,1,,0.03,nav,1,1926,1,, 29474,NJBF000059941,18 N BALTIMORE AVE,Ventnor City,NJ,39.3351241,-74.49171075,RES1,3001,,17,NE,1920,1920,3102,2,1,1676.686914,1676.686914,3505,NO,30.77,37.55,3,4.57,6106,113.588089,123.374651,133.086406,139.661481,I,Above,Hip,0,5701,,34.15999538,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29475,NJBF000059896,17 N SWARTHMORE AVE,Ventnor City,NJ,39.33504297,-74.49188888,RES1,3001,,17,NE,1925,1925,3102,1,1,1594.542707,1594.542707,3505,NO,17.18,30.45,3,3.35,6106,113.585285,123.372393,133.083964,139.659163,I,Above,Hip,0,5701,,23.81324099,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29476,NJBF000066823,809 N CORNWALL AVE,Ventnor City,NJ,39.35089403,-74.48811,RES1,3001,,17,NE,1975,1975,3101,2,1,1367.25605,1367.25605,3505,NO,33.32,41,3,6.32,6106,113.457641,123.26437,132.9794,139.477388,I,Above,Flat,0,5701,,37.16203241,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29477,NJBF000063780,5100 ATLANTIC AVE,Ventnor City,NJ,39.3426836,-74.46859529,RES3B,3001,,17,E,1913,1913,3303,3,1,1247.784853,1247.784853,3504,NO,53.6,68.22,-4,0,6106,113.995142,123.703685,133.442421,139.948182,I,Above,Hip,0,NaN,,60.90574799,0,1.1,,,,1,1,,0.03,nav,1,1913,3,, 29478,NJBF000063061,109 N HARVARD AVE,Ventnor City,NJ,39.34081968,-74.48194815,RES1,3001,,17,NE,1912,1912,3102,1,1,1423.943847,1423.943847,3505,NO,15.04,29.31,3,1.3,6106,113.725922,123.485266,133.207785,139.754606,I,Above,Hip,0,5701,,22.17690574,0,1.1,,,,1,1,,0.03,nav,1,1912,1,, 29479,NJBF000064728,316 N DORSET AVE,Ventnor City,NJ,39.34517863,-74.48136783,RES1,3001,,17,NE,1923,1923,3102,2,1,997.0448518,997.0448518,3505,NO,28.36,39.69,3,2.62,6106,113.680927,123.44759,133.170823,139.693323,I,Above,Hip,0,5701,,34.02717471,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 29480,NJBF000060617,6507 ATLANTIC AVE,Ventnor City,NJ,39.33628326,-74.48299249,RES1,3001,,18,NE,1940,1940,3102,2,1,1754.273616,1754.273616,3505,NO,32.94,44.28,3,8.01,6110,113.764355,123.516924,133.237766,139.810537,I,Above,Flat,0,5701,,38.60814228,0,0.1,,,,1,1,,0.35,nav,1,1940,2,, 29481,NJBF000059719,4 N MELBOURNE AVE,Ventnor City,NJ,39.33472886,-74.49052837,RES1,3001,,17,NE,1910,1910,3102,1,1,1545.980039,1545.980039,3505,NO,12.76,20.56,3,-2.53,6106,113.619657,123.400098,133.112926,139.690988,I,Above,Hip,0,5701,,16.66093689,0,1.1,,,,1,1,,0.03,nav,1,1910,1,, 29482,NJBF000062324,211 N NEWARK AVE,Ventnor City,NJ,39.33922469,-74.49063822,RES1,3001,,17,NE,1955,1955,3102,1,1,1540.06475,1540.06475,3505,NO,15.6,30.29,3,3.44,6106,113.555497,123.348011,133.061288,139.618708,I,Above,Gable,0,5701,,22.94329248,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 29483,NJBF000064866,321 N DERBY AVE,Ventnor City,NJ,39.34552153,-74.48201732,RES1,3001,,17,NE,1954,1954,3102,1,1,1456.917936,1456.917936,3505,NO,15.9,23.42,3,3.56,6106,113.662087,123.432215,133.154695,139.676153,I,Above,Gable,0,5701,,19.66279247,0,0,,,,1,1,,0.03,nav,1,1954,1,, 29484,NJBF000062559,124 N BRYANT AVE,Ventnor City,NJ,39.33970178,-74.48584728,RES1,3001,,28,NE,1928,1928,3102,2,1,1563.395024,1563.395024,3505,NO,46.35,53.58,3,8.07,6106,113.654892,123.428073,133.146283,139.70199,I,Above,Hip,0,5701,,49.96817144,0,0,,,,1,1,,0.03,nav,1,1928,2,, 29485,NJBF000062858,347 HAMPSHIRE DRIVE,Ventnor City,NJ,39.34037271,-74.49249816,RES1,3001,,35,NE,1974,1974,3102,2,1,6602.916595,6602.916595,3505,NO,29.06,41.4,3,7.61,6106,113.498788,123.30214,133.013653,139.564446,I,Above,Gable,0,5701,,35.22902165,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29486,NJBF000061109,305 N FREDERICKSBURG,Ventnor City,NJ,39.33706747,-74.49588585,RES1,3001,,17,NE,1965,1965,3103,2,1,1161.454882,1161.454882,3505,NO,30.44,38,3,-2.09,6106,113.469032,123.278738,132.986864,139.548824,I,Above,Gable,0,5701,,34.22083227,0,0,,,,1,1,,0.03,nav,1,1965,2,, 29487,NJBF000066300,710 N CORNWALL AVE,Ventnor City,NJ,39.34942853,-74.48746563,RES1,3001,,17,NE,1958,1958,3101,2,1,1327.94037,1327.94037,3505,NO,24.39,31.37,3,-0.5,6106,113.490707,123.291929,133.007936,139.513189,I,Above,Gable,0,5701,,27.88146199,0,0,,,,1,1,,0.03,nav,1,1958,2,, 29488,NJBF000060154,9 N LAFAYETTE AVE,Ventnor City,NJ,39.33549222,-74.48971882,RES1,3001,,17,NE,1970,1970,3102,2,1,1284.7329,1284.7329,3505,NO,40.77,48.56,3,4.24,6106,113.626939,123.405959,133.119712,139.695263,I,Above,Gable,0,5701,,44.66634536,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29489,NJBF000059013,,Ventnor City,NJ,39.33336822,-74.49100525,RES1,3001,,NaN,NE,1969,0,3102,2,1,1442.791757,1442.791757,3505,NO,39.06,51.95,3,4.92,6106,113.628078,123.406853,133.11895,139.701879,I,Above,Gable,0,5701,,45.5047841,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29490,NJBF000064014,607 KINGSLEY DRIVE,Ventnor City,NJ,39.34333513,-74.49376516,RES1,3001,,17,NE,1987,1987,3102,2,1,2281.666816,2281.666816,3505,NO,27.08,38.98,3,5.13,6106,113.430906,123.246723,132.95698,139.492838,I,Above,Gable,0,5701,,33.02974922,0,0,,,,1,1,,0.03,nav,1,1987,2,, 29491,NJBF000059144,7210 VENTNOR AVE,Ventnor City,NJ,39.33364089,-74.4911614,RES1,3001,,17,NE,1928,1928,3102,2,1,1155.177616,1155.177616,3505,NO,25.9,31.93,3,3.47,6106,113.620832,123.401023,133.113027,139.694709,I,Above,Hip,0,5701,,28.91850984,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 29492,NJBF000059519,7104 VENTNOR AVE,Ventnor City,NJ,39.33439458,-74.48962049,RES1,3001,,17,NE,1905,1905,3102,2,1,1382.407491,1382.407491,3505,NO,21.99,29.54,3,-0.43,6106,113.644309,123.419977,133.133631,139.714079,I,Above,Hip,0,5701,,25.7662494,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 29493,NJBF000058940,105 S LAFAYETTE AVE,Ventnor City,NJ,39.33321191,-74.48749913,RES1,3001,,17,NE,1930,1930,3102,3,1,1698.523746,1698.523746,3505,NO,53.38,66.63,3,-0.24,6110,113.707477,123.470923,133.186441,139.774094,I,Above,Gable,0,5701,,60.00253814,0,1.2,,,,1,1,,0.35,nav,1,1930,3,, 29494,NJBF000064304,216 N DORSET AVE,Ventnor City,NJ,39.34415684,-74.48059827,RES1,3001,,45,NE,1940,1940,3102,2,2,2149.690054,2149.690054,3505,NO,26.83,37.79,3,-0.11,6106,113.711373,123.472596,133.196734,139.723695,I,Above,Flat,0,5701,,32.3070107,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29495,NJBF000062730,4 N CORNWALL AVE,Ventnor City,NJ,39.34010246,-74.47987599,RES1,3001,,18,NE,1926,1926,3102,3,1,2093.531947,2093.531947,3505,NO,59.86,66.16,3,8.28,6106,113.781251,123.530202,133.254998,139.802896,I,Above,Gable,0,5701,,63.01231256,0,1.2,,,,1,1,,0.03,nav,1,1926,3,, 29496,NJBF000061676,9 N NEW HAVEN AVE,Ventnor City,NJ,39.33805435,-74.48471582,COM1,3001,,17,ME,1920,1920,3401,2,1,1545.963051,1545.963051,3507,NO,32.33,42.12,1,-0.2,6106,113.70219,123.46652,133.185769,139.749873,I,Above,Flat,0,NaN,,37.22867043,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29497,NJBF000062882,132 N PORTLAND AVE,Ventnor City,NJ,39.340433,-74.4842625,RES1,3001,,28,NE,1930,1930,3102,2,1,1352.93657,1352.93657,3505,NO,28.89,37.43,3,1.38,6106,113.68004,123.448245,133.1682,139.719228,I,Above,Flat,0,5701,,33.15920996,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29498,NJBF000060299,10 S BUFFALO AVE,Ventnor City,NJ,39.33573624,-74.48630755,RES1,3001,,17,NE,1927,1927,3102,2,1,1515.002124,1515.002124,3505,NO,35.75,42.02,3,8.63,6106,113.698788,123.463939,133.181181,139.757588,I,Above,Hip,0,5701,,38.88611587,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 29499,NJBF000061342,127 N WYOMING AVE,Ventnor City,NJ,39.33747556,-74.49045604,RES1,3001,,17,NE,1930,1930,3102,2,1,734.0718484,734.0718484,3505,NO,31.46,45.51,3,-0.91,6106,113.583382,123.370717,133.084018,139.649877,I,Above,Flat,0,5701,,38.48455193,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29500,NJBF000060832,118 N MELBOURNE AVE,Ventnor City,NJ,39.336608,-74.4921035,RES1,3001,,NaN,NE,1950,1940,3102,2,1,1719.925115,1719.925115,3505,NO,40.05,53.87,3,4.87,6106,113.558933,123.351101,133.062699,139.631037,I,Above,Hip,0,5701,,46.96017415,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29501,NJBF000061140,,Ventnor City,NJ,39.3371312,-74.48114258,RES1,3001,,NaN,NE,1969,0,3102,2,1,2294.373191,2294.373191,3505,NO,46.72,60.61,3,8.63,6106,113.793508,123.540477,133.263482,139.829645,I,Above,Hip,0,5701,,53.66773672,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29502,NJBF000061236,,Ventnor City,NJ,39.33728574,-74.48078877,RES1,3001,,NaN,NE,1969,0,3102,2,1,2077.749374,2077.749374,3505,NO,30.31,41.1,3,3.58,6106,113.799195,123.545073,133.268496,139.83331,I,Above,Flat,0,5701,,35.70258477,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29503,NJBF000061332,,Ventnor City,NJ,39.33745329,-74.48044452,RES1,3001,,NaN,NE,1969,0,3102,2,1,1818.788396,1818.788396,3505,NO,35.05,47.42,3,8.88,6106,113.804501,123.549359,133.273191,139.836571,I,Above,Hip,0,5701,,41.23986826,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29504,NJBF000064407,5101 VENTNOR AVE,Ventnor City,NJ,39.34441469,-74.4699099,RES1,3001,738,NaN,NE,1920,1920,3102,2,3,2659.877383,2659.877383,3507,NO,26.71,37.65,1,-0.38,6106,113.943493,123.661157,133.398307,139.899897,I,Above,Hip,0,5701,,32.17934409,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29505,NJBF000064386,5105 VENTNOR AVE,Ventnor City,NJ,39.34436018,-74.47001591,RES1,3001,565,NaN,NE,1920,1920,3102,2,2,1762.472327,1762.472327,3507,NO,31.98,41.57,1,0.72,6106,113.941883,123.659858,133.396869,139.899043,I,Above,Flat,0,5701,,36.77717736,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29506,NJBF000065011,15 N AUSTIN AVE,Ventnor City,NJ,39.34589499,-74.46923184,RES1,3001,,45,NE,1930,1930,3102,2,2,1751.017127,1751.017127,3507,NO,29.87,40.81,1,0.52,6106,113.939084,123.657145,133.395208,139.887585,I,Above,Flat,0,5701,,35.34304835,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29507,NJBF000062794,114 N PRINCETON AVE,Ventnor City,NJ,39.34024138,-74.48335995,RES1,3001,,17,NE,1925,1925,3102,2,1,953.3834634,953.3834634,3505,NO,28.32,42.86,3,4.82,6106,113.702534,123.466464,133.187387,139.738779,I,Above,Hip,0,5701,,35.58863112,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29508,NJBF000064712,221 N SOMERSET AVE,Ventnor City,NJ,39.34513845,-74.47811859,RES1,3001,,17,NE,1927,1927,3102,1,1,1107.351619,1107.351619,3505,NO,21.03,27.1,3,8.74,6106,113.753207,123.506162,133.233179,139.750898,I,Above,Flat,0,5701,,24.06096967,0,0,,,,1,1,,0.03,nav,1,1927,1,, 29509,NJBF000063195,132 N SACRAMENTO AVE,Ventnor City,NJ,39.34110348,-74.48332647,RES1,3001,,28,NE,1930,1930,3102,2,1,2117.457259,2117.457259,3505,NO,28.19,36.16,3,-0.79,6106,113.691714,123.457538,133.17855,139.725227,I,Above,Flat,0,5701,,32.17589083,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29510,NJBF000062431,400 N LAFAYETTE AVE,Ventnor City,NJ,39.33945286,-74.49563469,EDU1,3001,,NaN,E,1980,1980,3401,1,1,187725.5963,187725.5963,3507,NO,20.48,30.82,1,2.84,6106,113.44186,123.256572,132.965097,139.517307,I,Above,Flat,0,NaN,,25.64823459,0,0,,,,1,1,,0.03,nav,1,1980,1,, 29511,NJBF000062536,6103 VENTNOR AVE,Ventnor City,NJ,39.33966194,-74.47973633,RES1,3001,,17,NE,1920,1920,3102,1,1,2592.039943,2592.039943,3505,NO,15.9,25.21,3,4.51,6106,113.790251,123.537565,133.262477,139.812556,I,Above,Hip,0,5701,,20.55515987,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29512,NJBF000062797,139 N NEWPORT AVE,Ventnor City,NJ,39.34024511,-74.48515156,RES1,3001,,28,NE,1925,1925,3102,2,1,1390.845023,1390.845023,3505,NO,38.64,49.13,3,4,6106,113.662917,123.43445,133.153436,139.705981,I,Above,Flat,0,5701,,43.88810549,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 29513,NJBF000062696,6210 WINCHESTER AVE,Ventnor City,NJ,39.34003367,-74.48178357,RES1,3001,,17,NE,1920,1920,3102,2,1,1560.801832,1560.801832,3505,NO,39.69,53.9,3,8.89,6106,113.740091,123.496883,133.219527,139.770459,I,Above,Flat,0,5701,,46.79444912,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29514,NJBF000065417,418 N OXFORD AVE,Ventnor City,NJ,39.34700642,-74.48095126,RES1,3001,,17,NE,1940,1940,3102,2,1,938.7296459,938.7296459,3505,NO,31.76,44.92,3,3.11,6106,113.666286,123.434989,133.158599,139.670789,I,Above,Gable,0,5701,,38.34345705,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29515,NJBF000067031,810 N DORSET AVE,Ventnor City,NJ,39.35175794,-74.48672788,RES1,3001,,17,NE,1978,1978,3101,1,1,1985.672855,1985.672855,3505,NO,20.59,30.51,3,2.36,6106,113.477297,123.279621,132.995979,139.488762,I,Above,Gable,0,5701,,25.54593672,0,0,,,,1,1,,0.03,nav,1,1978,1,, 29516,NJBF000065024,28 N AUSTIN AVE,Ventnor City,NJ,39.34593534,-74.469714,RES1,3001,,17,NE,1920,1920,3102,2,1,1100.439606,1100.439606,3507,NO,40.15,51.76,1,2.23,6106,113.927965,123.648059,133.385497,139.879093,I,Above,Gable,0,5701,,45.95462688,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29517,NJBF000061854,4 N PORTLAND AVE,Ventnor City,NJ,39.33837538,-74.48308764,RES1,3001,,17,NE,1915,1915,3102,3,3,606.6043589,606.6043589,3505,NO,38.33,52.03,3,-2.11,6106,113.733737,123.491987,133.213027,139.774384,I,Above,Flat,0,5701,,45.18088625,0,1.2,,,,1,1,,0.03,nav,1,1915,3,, 29518,NJBF000061872,4 N PORTLAND AVE,Ventnor City,NJ,39.33840063,-74.48293899,RES1,3001,,17,NE,1915,1915,3102,3,3,1254.549905,1254.549905,3505,NO,49.82,61.12,3,2.53,6106,113.73667,123.494356,133.215562,139.77665,I,Above,Flat,0,5701,,55.46871114,0,1.2,,,,1,1,,0.03,nav,1,1915,3,, 29519,NJBF000064971,13 N AUSTIN AVE,Ventnor City,NJ,39.34581884,-74.4691697,RES1,3001,,18,NE,1930,1930,3102,2,1,1350.772981,1350.772981,3507,NO,34.77,49.21,1,1.35,6106,113.941435,123.659087,133.397231,139.889792,I,Above,Flat,0,5701,,41.98981262,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29520,NJBF000066989,703 N SURREY AVE,Ventnor City,NJ,39.35161448,-74.48158298,RES3A,3001,,27,NE,1980,1980,3301,2,1,933.5708672,933.5708672,3505,NO,44.47,53.84,3,8.49,6106,113.593125,123.373265,133.095526,139.584256,I,Above,Gable,0,5701,,49.15693981,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29521,NJBF000065755,504 N OXFORD AVE,Ventnor City,NJ,39.3480095,-74.48182349,RES1,3001,,17,NE,1965,1965,3102,1,1,1398.775148,1398.775148,3507,NO,16.55,25.11,1,1.65,6106,113.633988,123.408381,133.130892,139.638861,I,Above,Gable,0,5701,,20.82800005,0,0,,,,1,1,,0.03,nav,1,1965,1,, 29522,NJBF000063917,,Ventnor City,NJ,39.34307334,-74.47596502,RES1,3001,,NaN,NE,1923,0,3102,2,1,1105.690559,1105.690559,3505,NO,32.87,43.22,3,7.73,6106,113.827875,123.567392,133.296958,139.821295,I,Above,Gable,0,5701,,38.04428554,0,0,,,,1,1,,0.03,nav,1,1923,2,, 29523,NJBF000060588,110 N LAFAYETTE AVE,Ventnor City,NJ,39.33624092,-74.49085216,RES1,3001,,45,NE,1898,1898,3102,2,2,1932.961826,1932.961826,3505,NO,34.91,42.09,3,7.59,6106,113.591607,123.377445,133.090202,139.661379,I,Above,Hip,0,5701,,38.49899512,0,1.1,,,,1,1,,0.03,nav,1,1898,2,, 29524,NJBF000059974,100 N SWARTHMORE AVE,Ventnor City,NJ,39.33517653,-74.4924392,RES1,3001,,17,NE,1930,1930,3102,2,1,1292.826189,1292.826189,3505,NO,26.19,32.6,3,4.28,6106,113.571293,123.361119,133.072189,139.646176,I,Above,Flat,0,5701,,29.39671371,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29525,NJBF000063117,6001 WINCHESTER AVE,Ventnor City,NJ,39.34092199,-74.47919764,RES1,3001,,18,NE,1890,1890,3102,2,1,1991.065487,1991.065487,3505,NO,28.53,37.24,3,7.39,6106,113.785211,123.533261,133.258901,139.801195,I,Above,Hip,0,5701,,32.88662585,0,1.1,,,,1,1,,0.03,nav,1,1890,2,, 29526,NJBF000061945,304 N LAFAYETTE AVE,Ventnor City,NJ,39.33852406,-74.49335037,RES1,3001,,17,NE,1974,1974,3102,2,1,1827.731746,1827.731746,3505,NO,29.76,39.38,3,-0.77,6106,113.505091,123.307555,133.018158,139.576795,I,Above,Gable,0,5701,,34.57387413,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29527,NJBF000060403,107 S NEWPORT AVE,Ventnor City,NJ,39.33590668,-74.48163439,RES1,3001,,17,NE,1910,1910,3102,3,1,1604.616385,1604.616385,3505,NO,47.88,53.15,3,3.7,6106,113.79941,123.545311,133.267565,139.841155,I,Above,Gable,0,5701,,50.51792633,0,0,,,,1,1,,0.03,nav,1,1910,3,, 29528,NJBF000064122,118 N SOMERSET AVE,Ventnor City,NJ,39.34362689,-74.47738133,RES1,3001,,16,NE,1940,1940,3102,1,1,981.7232135,981.7232135,3505,NO,21.21,32.17,3,4.73,6106,113.789349,123.535964,133.263855,139.788228,I,Above,Flat,0,5701,,26.68743907,0,0,,,,1,1,,0.03,nav,1,1940,1,, 29529,NJBF000061509,111 N WISSAHICKON AVE,Ventnor City,NJ,39.33776457,-74.4882431,RES1,3001,,17,NE,1925,1925,3102,2,1,1268.515838,1268.515838,3505,NO,27.66,39.48,3,-1.43,6106,113.628294,123.406892,133.122439,139.688095,I,Above,Gable,0,5701,,33.56724106,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29530,NJBF000060798,203-205 N SWARTHMORE AVE,Ventnor City,NJ,39.33655783,-74.49352899,RES1,3001,,45,NE,1970,1970,3102,2,2,2041.923881,2041.923881,3505,NO,39.42,52.08,3,7.68,6106,113.528131,123.326308,133.036549,139.603533,I,Above,Flat,0,5701,,45.7467985,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29531,NJBF000065852,412 N SURREY AVE,Ventnor City,NJ,39.34827433,-74.47938697,RES1,3001,,17,NE,1975,1975,3102,2,1,1687.500906,1687.500906,3505,NO,30.23,43.93,3,8.31,6106,113.684431,123.449092,133.174423,139.677633,I,Above,Gable,0,5701,,37.07778727,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29532,NJBF000060027,102 N SWARTHMORE AVE,Ventnor City,NJ,39.33526955,-74.49250283,RES1,3001,,17,NE,1923,1923,3102,2,1,874.341542,874.341542,3505,NO,36.44,41.9,3,1.01,6106,113.568592,123.358942,133.069966,139.643496,I,Above,Hip,0,5701,,39.17160131,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 29533,NJBF000063591,6811 FULTON AVE,Ventnor City,NJ,39.34212621,-74.49448559,RES1,3001,,17,NE,1988,1988,3102,2,1,2031.985369,2031.985369,3505,NO,38.8,52.75,3,6.2,6106,113.43112,123.247291,132.956907,139.498031,I,Above,Hip,0,5701,,45.77162859,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 29534,NJBF000060821,114 S HARVARD AVE,Ventnor City,NJ,39.33659379,-74.47902789,RES1,3001,,17,NE,1925,1925,3102,3,1,2916.414917,2916.414917,3505,NO,46.43,57.48,3,6.66,6106,113.847387,123.584167,133.309454,139.875105,I,Above,Hip,0,5701,,51.95733493,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 29535,NJBF000061763,106 N RICHARDS AVE,Ventnor City,NJ,39.33820831,-74.4875881,RES1,3001,,17,NE,1950,1950,3102,1,1,1640.663951,1640.663951,3505,NO,20.75,33.04,3,2.3,6106,113.636714,123.413631,133.129895,139.693491,I,Above,Hip,0,5701,,26.89270416,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29536,NJBF000063352,117 N CAMBRIDGE AVE,Ventnor City,NJ,39.341479,-74.4817475,RES1,3001,,17,NE,1921,1921,3102,2,1,1382.573124,1382.573124,3505,NO,34.08,39.36,3,-2.27,6106,113.72154,123.481576,133.204358,139.747344,I,Above,Hip,0,5701,,36.71827506,0,1.1,,,,1,1,,0.03,nav,1,1921,2,, 29537,NJBF000063343,5 S SOMERSET AVE,Ventnor City,NJ,39.34145873,-74.47397676,RES1,3001,,17,NE,1935,1935,3102,1,1,2402.282775,2402.282775,3505,NO,17.45,24.99,3,6.34,6106,113.893048,123.620715,133.352586,139.880456,I,Above,Hip,0,5701,,21.21859093,0,1.2,,,,1,1,,0.03,nav,1,1935,1,, 29538,NJBF000063132,11 N DERBY AVE,Ventnor City,NJ,39.3409565,-74.478767,RES1,3001,,17,NE,1907,1907,3102,2,1,4551.018656,4551.018656,3505,NO,28.02,40.32,3,4.36,6106,113.794257,123.540588,133.266728,139.808073,I,Above,Hip,0,5701,,34.17029001,0,0,,,,1,1,,0.03,nav,1,1907,2,, 29539,NJBF000064520,18 S VASSAR SQUARE,Ventnor City,NJ,39.34469,-74.4665342,RES3B,3001,,17,ME,1930,1930,3301,3,1,1586.097992,1586.097992,3504,NO,53.19,68.15,-4,0,6106,114.014059,123.718728,133.460299,139.949896,I,Above,Hip,0,NaN,,60.66662531,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 29540,NJBF000064479,22 S VASSAR SQUARE,Ventnor City,NJ,39.344593,-74.466452,RES3B,3001,,17,ME,1930,1930,3301,2,1,1246.264536,1246.264536,3504,NO,23.11,36.42,-4,0,6106,114.017127,123.721259,133.462933,139.952706,I,Above,Hip,0,NaN,,29.76182014,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29541,NJBF000062280,214 N NEWARK AVE,Ventnor City,NJ,39.33914075,-74.49111468,RES1,3001,,17,NE,1940,1940,3102,1,1,1316.756034,1316.756034,3505,NO,12.58,20.92,3,1.52,6106,113.546094,123.340453,133.053255,139.610799,I,Above,Hip,0,5701,,16.75239969,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 29542,NJBF000061269,6204 ATLANTIC AVE,Ventnor City,NJ,39.33735121,-74.47961376,RES1,3001,,17,NE,1925,1925,3102,1,1,1600.212844,1600.212844,3505,NO,11.09,22.33,3,-0.78,6110,113.824186,123.565319,133.290069,139.852647,I,Above,Flat,0,5701,,16.70851835,0,1.1,,,,1,1,,0.35,nav,1,1925,1,, 29543,NJBF000066893,806 N DERBY AVE,Ventnor City,NJ,39.35118756,-74.48710627,RES1,3001,,17,NE,1976,1976,3101,2,1,1642.121031,1642.121031,3505,NO,39.38,49.1,3,8.71,6106,113.476164,123.279097,132.995161,139.491117,I,Above,Flat,0,5701,,44.24214455,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 29544,NJBF000059184,7005 ATLANTIC AVE,Ventnor City,NJ,39.33372408,-74.48819662,RES1,3001,,19,NE,1965,1965,3102,1,1,1974.740641,1974.740641,3505,NO,11.3,19.43,3,-0.72,6110,113.684983,123.452784,133.167714,139.752477,I,Above,Gable,0,5701,,15.36812123,0,0,,,,1,1,,0.35,nav,1,1965,1,, 29545,NJBF000059162,7015 ATLANTIC AVE,Ventnor City,NJ,39.33367891,-74.48831273,RES1,3001,,17,NE,1900,1900,3102,3,1,2233.25196,2233.25196,3505,NO,52.51,65.89,3,8.9,6110,113.683054,123.451224,133.166028,139.750873,I,Above,Hip,0,5701,,59.19815026,0,0,,,,1,1,,0.35,nav,1,1900,3,, 29546,NJBF000062036,209 N LAFAYETTE AVE,Ventnor City,NJ,39.33868163,-74.49280566,RES1,3001,,17,NE,1977,1977,3102,2,1,1593.592074,1593.592074,3505,NO,26.46,37.99,3,2.62,6106,113.514961,123.315471,133.026604,139.585021,I,Above,Flat,0,5701,,32.22216707,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 29547,NJBF000061962,7003 CALVERT AVE,Ventnor City,NJ,39.33855424,-74.49263193,RES1,3001,,17,NE,1970,1970,3102,2,1,2311.22328,2311.22328,3505,NO,33.82,39.42,3,-1.62,6106,113.520556,123.319992,133.031282,139.590434,I,Above,Hip,0,5701,,36.62100123,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 29548,NJBF000064214,207 N DORSET AVE,Ventnor City,NJ,39.34390756,-74.47976274,RES1,3001,,17,NE,1969,2018,3102,2,1,1656.964861,1656.964861,3505,NO,33.1,45.01,3,4.77,6106,113.733091,123.490265,133.215367,139.742431,I,Above,Hip,0,5701,,39.05564283,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29549,NJBF000063693,610 KINGSLEY DRIVE,Ventnor City,NJ,39.34241454,-74.49470347,RES1,3001,,17,NE,1977,1977,3102,1,1,2919.62089,2919.62089,3505,NO,26.82,39.11,3,8.24,6106,113.422429,123.240222,132.949625,139.489233,I,Above,Flat,0,5701,,32.96600751,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 29550,NJBF000059615,12 N SWARTHMORE AVE,Ventnor City,NJ,39.33454921,-74.4919457,RES1,3001,,17,NE,1925,1925,3102,1,1,3027.743288,3027.743288,3505,NO,20.21,27.95,3,5.84,6106,113.590886,123.376908,133.088337,139.665459,I,Above,Hip,0,5701,,24.08086674,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29551,NJBF000063604,5600 WINCHESTER AVE,Ventnor City,NJ,39.3421619,-74.47514031,RES1,3001,,17,NE,1921,1921,3102,2,1,2126.018991,2126.018991,3505,NO,32.66,46.41,3,-1.49,6106,113.85811,123.592171,133.322683,139.849876,I,Above,Hip,0,5701,,39.53090281,0,1.2,,,,1,1,,0.03,nav,1,1921,2,, 29552,NJBF000063771,24 S WEYMOUTH AVE,Ventnor City,NJ,39.34265995,-74.47057383,RES1,3001,,17,NE,1925,1925,3102,2,1,2013.63205,2013.63205,3505,NO,30.38,39.71,3,-2.01,6106,113.951977,123.668473,133.404674,139.91681,I,Above,Hip,0,5701,,35.04302694,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29553,NJBF000064254,306 N CORNWALL AVE,Ventnor City,NJ,39.34401605,-74.48309606,RES1,3001,,17,NE,1958,1958,3102,1,1,2279.942298,2279.942298,3505,NO,13.72,19.7,3,2.12,6106,113.658048,123.429501,133.150817,139.68153,I,Above,Hip,0,5701,,16.71309367,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 29554,NJBF000064494,329 N BURGHLEY AVE,Ventnor City,NJ,39.34462727,-74.48219398,RES1,3001,,17,NE,1940,1940,3102,2,1,979.9569101,979.9569101,3505,NO,34.91,42.05,3,6.84,6106,113.669927,123.438893,133.161207,139.687673,I,Above,Flat,0,5701,,38.48269039,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29555,NJBF000062779,6505 MONMOUTH AVE,Ventnor City,NJ,39.3402075,-74.4859345,RES1,3001,,45,NE,1968,1968,3102,2,2,2104.244626,2104.244626,3505,NO,42.21,49.99,3,4.36,6106,113.646157,123.420925,133.139077,139.692133,I,Above,Flat,0,5701,,46.09808166,0,0,,,,1,1,,0.03,nav,1,1968,2,, 29556,NJBF000065209,24 N VASSAR SQUARE,Ventnor City,NJ,39.34641133,-74.46791463,RES3A,3001,,17,NE,1930,1930,3301,2,1,1456.99405,1456.99405,3505,NO,32.18,43.51,3,-1.49,6106,113.961329,123.675155,133.414948,139.900866,I,Above,Hip,0,5701,,37.8441129,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29557,NJBF000063473,5216 ATLANTIC AVE,Ventnor City,NJ,39.34181855,-74.47039012,COM1,3001,101,NaN,ME,1940,1940,3401,2,3,2175.886682,2175.886682,3507,NO,29.15,36.21,1,1.1,6106,113.967147,123.680994,133.417356,139.932994,I,Above,Flat,0,NaN,,32.6773656,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29558,NJBF000057990,104 S MARTINDALE AVE,Ventnor City,NJ,39.33151503,-74.49099253,RES1,3001,,17,NE,1930,1930,3102,3,1,2033.826531,2033.826531,3505,NO,57.43,69.55,3,8.06,6106,113.654303,123.427852,133.139517,139.728916,I,Above,Gable,0,5701,,63.48929662,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 29559,NJBF000057944,106 S MARTINDALE AVE,Ventnor City,NJ,39.33141333,-74.49088552,RES1,3001,,17,NE,1925,1925,3102,3,1,1619.350457,1619.350457,3505,NO,43.48,57.24,3,3.48,6106,113.658093,123.430897,133.142638,139.732523,I,Above,Gable,0,5701,,50.35900289,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 29560,NJBF000064261,4903 ATLANTIC AVE,Ventnor City,NJ,39.34404049,-74.46688045,RES1,3001,,17,NE,1920,1920,3102,2,1,1705.83417,1705.83417,3504,NO,25.62,33.64,-4,0,6110,114.014969,123.719616,133.460692,139.954452,I,Above,Hip,0,5701,,29.63342212,0,0,,,,1,1,,0.35,nav,1,1920,2,, 29561,NJBF000061643,105 S CORNWALL AVE,Ventnor City,NJ,39.33800167,-74.47762055,RES1,3001,,17,NE,1914,1914,3102,3,1,1979.923765,1979.923765,3505,NO,43.2,51.58,3,-0.98,6106,113.85923,123.593693,133.320823,139.875837,I,Above,Flat,0,5701,,47.38776227,0,1.2,,,,1,1,,0.03,nav,1,1914,3,, 29562,NJBF000060520,7 S RICHARDS AVE,Ventnor City,NJ,39.33613049,-74.48547942,RES1,3001,,16,NE,1900,1900,3102,1,1,1711.945382,1711.945382,3505,NO,16.32,23.72,3,-2.38,6106,113.711648,123.474314,133.192484,139.766964,I,Above,Hip,0,5701,,20.02092338,0,0,,,,1,1,,0.03,nav,1,1900,1,, 29563,NJBF000066040,701 N CAMBRIDGE AVE,Ventnor City,NJ,39.34874816,-74.48726467,RES1,3001,,17,NE,1975,1975,3101,2,1,1741.048562,1741.048562,3505,NO,32.02,38.22,3,-1.35,6106,113.503944,123.30299,133.019325,139.528014,I,Above,Flat,0,5701,,35.11990147,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 29564,NJBF000065494,602 N CAMBRIDGE AVE,Ventnor City,NJ,39.34724767,-74.48658108,RES1,3001,,17,NE,1980,1980,3101,1,1,1131.876856,1131.876856,3505,NO,10.11,18.36,3,-1.47,6106,113.538553,123.331681,133.048957,139.565121,I,Above,Flat,0,5701,,14.23907186,0,0,,,,1,1,,0.03,nav,1,1980,1,, 29565,NJBF000060158,9 S WISSAHICKON AVE,Ventnor City,NJ,39.33549899,-74.48637001,RES1,3001,,17,NE,1925,1925,3102,3,1,1065.738614,1065.738614,3505,NO,40.2,53.96,3,1.12,6106,113.700683,123.465476,133.182613,139.760197,I,Above,Flat,0,5701,,47.08129219,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 29566,NJBF000065264,26 N VASSAR SQUARE,Ventnor City,NJ,39.34656288,-74.46802579,RES3A,3001,,17,NE,1935,1935,3301,2,1,1390.726302,1390.726302,3505,NO,30.63,36.88,3,-1.38,6106,113.95692,123.671504,133.411151,139.896682,I,Above,Hip,0,5701,,33.75269822,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 29567,NJBF000060354,18 S TROY AVE,Ventnor City,NJ,39.33582784,-74.48494488,RES1,3001,,17,NE,1912,1912,3102,2,1,1588.715673,1588.715673,3505,NO,31.47,36.71,3,6.35,6106,113.727563,123.487187,133.205867,139.7819,I,Above,Hip,0,5701,,34.08880244,0,1.1,,,,1,1,,0.03,nav,1,1912,2,, 29568,NJBF000060817,7045-7047 VENTNOR GD,Ventnor City,NJ,39.33658544,-74.49326587,RES1,3001,,45,NE,1970,1970,3102,2,2,2443.911293,2443.911293,3505,NO,25.15,32.73,3,1.97,6106,113.533567,123.330682,133.041173,139.608347,I,Above,Gable,0,5701,,28.93875792,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29569,NJBF000059614,6 N BALTIMORE AVE,Ventnor City,NJ,39.33454904,-74.49121895,RES1,3001,,17,NE,1935,1935,3102,2,1,1660.22199,1660.22199,3505,NO,34.67,46.78,3,0.22,6106,113.606918,123.389828,133.101954,139.679969,I,Above,Hip,0,5701,,40.72801242,0,0,,,,1,1,,0.03,nav,1,1935,2,, 29570,NJBF000060400,10 S RICHARDS AVE,Ventnor City,NJ,39.335901,-74.4857145,RES1,3001,,15,NE,1910,1910,3102,1,1,1581.291117,1581.291117,3505,NO,16.45,22.59,3,2.01,6106,113.709591,123.47266,133.190546,139.766207,I,Above,Hip,0,5701,,19.51837046,0,0,,,,1,1,,0.03,nav,1,1910,1,, 29571,NJBF000057810,109 S FREDERICKSBURG,Ventnor City,NJ,39.33120278,-74.4909803,RES1,3001,,18,NE,1920,1920,3102,3,1,1304.228882,1304.228882,3505,NO,41.63,55.66,3,2.05,6106,113.65898,123.431587,133.143181,139.733565,I,Above,Hip,0,5701,,48.64511527,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 29572,NJBF000058533,17 S FREDERICKSBURG AVE,Ventnor City,NJ,39.33248031,-74.49200415,RES1,3001,,29,NE,1926,1926,3102,2,1,846.7305921,846.7305921,3505,NO,33.54,43.14,3,4.19,6106,113.618492,123.399065,133.110009,139.694705,I,Above,Hip,0,5701,,38.34014436,0,0,,,,1,1,,0.03,nav,1,1926,2,, 29573,NJBF000063253,110 S LITTLE ROCK AVE,Ventnor City,NJ,39.3412295,-74.4703255,COM1,3001,20,NaN,ME,1890,1890,3401,3,1,1458.593012,1458.593012,3507,NO,55.84,69.82,1,2.84,6106,113.976383,123.688616,133.424998,139.943264,I,Above,Hip,0,NaN,,62.82760752,0,1.1,,,,1,1,,0.03,nav,1,1890,3,, 29574,NJBF000064465,314 N CORNWALL AVE,Ventnor City,NJ,39.34456205,-74.48355232,RES1,3001,,17,NE,1958,1958,3102,1,1,1158.700622,1158.700622,3505,NO,19.08,33.48,3,-0.37,6106,113.640766,123.415341,133.136136,139.664352,I,Above,Gable,0,5701,,26.2805958,0,0,,,,1,1,,0.03,nav,1,1958,1,, 29575,NJBF000061494,301-303 WALDON DRIVE,Ventnor City,NJ,39.33774485,-74.49412405,RES1,3001,,45,NE,1990,1990,3102,2,2,1985.647743,1985.647743,3505,NO,34.52,44.25,3,2.81,6106,113.498649,123.302479,133.01229,139.573556,I,Above,Hip,0,5701,,39.38419397,0,0,,,,1,1,,0.03,nav,1,1990,2,, 29576,NJBF000061233,4 S NEWPORT AVE,Ventnor City,NJ,39.33728228,-74.48316658,COM1,3001,,16,ME,1910,1910,3401,3,1,1009.267152,1009.267152,3507,NO,46.96,61.39,1,2.41,6106,113.746855,123.502706,133.223517,139.790928,I,Above,Flat,0,NaN,,54.17809701,0,0,,,,1,1,,0.03,nav,1,1910,3,, 29577,NJBF000065450,316 N SURREY AVE,Ventnor City,NJ,39.34712544,-74.4784679,RES1,3001,,17,NE,1966,1966,3102,2,1,1307.237668,1307.237668,3505,NO,37.14,45.92,3,7.98,6106,113.719598,123.478128,133.204645,139.712435,I,Above,Hip,0,5701,,41.52924491,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 29578,NJBF000063900,14 S WEYMOUTH AVE,Ventnor City,NJ,39.34303064,-74.47087404,RES1,3001,,17,NE,1920,1920,3102,2,1,1353.705589,1353.705589,3505,NO,39.16,51.39,3,0.92,6106,113.940486,123.659029,133.394877,139.906103,I,Above,Flat,0,5701,,45.27895228,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29579,NJBF000060637,113 N BALTIMORE AVE,Ventnor City,NJ,39.33631137,-74.49220103,RES1,3001,,17,NE,1940,1940,3102,2,1,1048.419104,1048.419104,3505,NO,26.19,33.56,3,-1.5,6106,113.560863,123.352675,133.06414,139.633661,I,Above,Flat,0,5701,,29.87564691,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29580,NJBF000062460,6403 WINCHESTER AVE,Ventnor City,NJ,39.33951372,-74.48363257,RES1,3001,,17,NE,1940,1940,3102,1,1,1433.204274,1433.204274,3505,NO,17.49,23.41,3,0.47,6106,113.706304,123.469642,133.190209,139.745775,I,Above,Gable,0,5701,,20.44725308,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 29581,NJBF000065892,5402 FREMONT AVE,Ventnor City,NJ,39.34837427,-74.47979094,RES1,3001,,17,NE,1981,1981,3102,1,1,2601.759511,2601.759511,3505,NO,20.14,31.5,3,2.46,6106,113.674213,123.440764,133.165607,139.668903,I,Above,Gable,0,5701,,25.81880357,0,1.2,,,,1,1,,0.03,nav,1,1981,1,, 29582,NJBF000066889,611 N VICTORIA AVE,Ventnor City,NJ,39.351172,-74.480312,RES3A,3001,,NaN,NE,1986,1989,3301,1,1,1868.992729,1868.992729,3505,NO,22.03,32.46,3,6.79,6106,113.626861,123.400854,133.124698,139.614057,I,Above,Hip,0,5701,,27.24367695,0,0,,,,1,1,,0.03,nav,1,1986,1,, 29583,NJBF000060313,15 N LAFAYETTE AVE,Ventnor City,NJ,39.33575684,-74.48995586,RES1,3001,,17,NE,1940,1940,3102,2,1,1243.837729,1243.837729,3505,NO,38.64,52.33,3,4.22,6106,113.618052,123.398784,133.112346,139.686499,I,Above,Gable,0,5701,,45.48403243,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29584,NJBF000062749,5703 ATLANTIC AVE,Ventnor City,NJ,39.34013488,-74.47502227,RES1,3001,,19,NE,1985,1985,3102,3,1,1599.674383,1599.674383,3505,NO,51.84,57.7,3,-1.53,6110,113.887718,123.616594,133.347069,139.884502,I,Above,Gable,0,5701,,54.77190343,0,1.2,,,,1,1,,0.35,nav,1,1985,3,, 29585,NJBF000060030,11 N MELBOURNE AVE,Ventnor City,NJ,39.33527129,-74.49044366,RES1,3001,,17,NE,1930,1930,3102,1,1,1577.174275,1577.174275,3505,NO,23.22,31.59,3,4.42,6106,113.614002,123.395533,133.108538,139.684374,I,Above,Hip,0,5701,,27.40073382,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 29586,NJBF000064249,5604 MONMOUTH AVE,Ventnor City,NJ,39.34399403,-74.47782777,RES1,3001,,16,NE,1940,1940,3102,1,1,1026.002053,1026.002053,3505,NO,15.24,23.18,3,2.15,6106,113.774654,123.523933,133.251299,139.774577,I,Above,Gable,0,5701,,19.20869641,0,0,,,,1,1,,0.03,nav,1,1940,1,, 29587,NJBF000064076,608 N BUFFALO AVE,Ventnor City,NJ,39.34350749,-74.49354267,RES1,3001,,17,NE,1974,1974,3102,2,1,1585.293056,1585.293056,3505,NO,40.25,48.87,3,7.22,6106,113.433533,123.248772,132.959233,139.494386,I,Above,Flat,0,5701,,44.56143284,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29588,NJBF000064019,105 S MARION AVE,Ventnor City,NJ,39.34334812,-74.46645166,RES3B,3001,,17,E,1900,1900,3303,3,1,1781.921655,1781.921655,3504,NO,38.08,44.89,-4,0,6106,114.033443,123.73486,133.476451,139.971934,I,Above,Gable,0,NaN,,41.48420647,0,1.1,,,,1,1,,0.03,nav,1,1900,3,, 29589,NJBF000063220,128 N HARVARD AVE,Ventnor City,NJ,39.34116054,-74.48265777,RES1,3001,,17,NE,1925,1925,3102,2,1,775.8042076,775.8042076,3505,NO,30.7,40.69,3,5.22,6106,113.705685,123.468821,133.190573,139.736302,I,Above,Flat,0,5701,,35.69659398,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29590,NJBF000065042,324 N OXFORD AVE,Ventnor City,NJ,39.34598478,-74.48015189,RES1,3001,,17,NE,1945,1945,3102,2,1,1159.147353,1159.147353,3505,NO,36.22,44.44,3,4.41,6106,113.697243,123.460486,133.185087,139.701602,I,Above,Gable,0,5701,,40.33178482,0,0,,,,1,1,,0.03,nav,1,1945,2,, 29591,NJBF000064111,127 N OXFORD AVE,Ventnor City,NJ,39.3436024,-74.47776445,RES1,3001,,45,NE,1929,1929,3102,2,2,1441.706124,1441.706124,3505,NO,38.24,45.37,3,5.71,6106,113.781233,123.529386,133.256823,139.782071,I,Above,Gable,0,5701,,41.8055337,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29592,NJBF000064674,212 N SUFFOLK AVE,Ventnor City,NJ,39.34504276,-74.47764357,RES1,3001,,17,NE,1929,1929,3102,2,1,1038.709954,1038.709954,3505,NO,30.96,36.79,3,2.07,6106,113.764933,123.515706,133.243289,139.760641,I,Above,Gable,0,5701,,33.87242976,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29593,NJBF000062807,6221 WINCHESTER AVE,Ventnor City,NJ,39.34027016,-74.48198474,RES1,3001,,17,NE,1960,1960,3102,2,1,1412.267852,1412.267852,3505,NO,30.44,41.03,3,5.67,6106,113.732485,123.490685,133.213124,139.762996,I,Above,Gable,0,5701,,35.73402706,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 29594,NJBF000066239,602 N OXFORD AVE,Ventnor City,NJ,39.34927817,-74.48279976,RES1,3001,,17,NE,1974,1974,3102,2,1,1378.975738,1378.975738,3507,NO,37.13,49.51,1,1.81,6106,113.596022,123.377012,133.098244,139.600635,I,Above,Flat,0,5701,,43.32228706,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 29595,NJBF000061915,208 N ROSBOROUGH AVE,Ventnor City,NJ,39.33846548,-74.49139144,RES1,3001,,17,NE,1950,1950,3102,1,1,2426.945619,2426.945619,3505,NO,26.98,34.56,3,8.45,6106,113.549203,123.343064,133.055545,139.616099,I,Above,Gable,0,5701,,30.77116581,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29596,NJBF000062313,110 N BRYANT AVE,Ventnor City,NJ,39.33921049,-74.48546534,RES1,3001,,NaN,NE,1924,1924,3102,2,1,1226.938845,1226.938845,3505,NO,31.36,39.14,3,-2.6,6106,113.669979,123.440339,133.158914,139.717114,I,Above,Gable,0,5701,,35.24691826,0,0,,,,1,1,,0.03,nav,1,1924,2,, 29597,NJBF000063402,2 S SOMERSET AVE,Ventnor City,NJ,39.3416178,-74.47468847,RES1,3001,,18,NE,1920,1920,3102,2,1,1763.061209,1763.061209,3505,NO,31.72,40.72,3,8.37,6106,113.875285,123.606242,133.337262,139.866161,I,Above,Gable,0,5701,,36.21778441,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 29598,NJBF000065677,511 N DERBY AVE,Ventnor City,NJ,39.34779122,-74.48385218,RES1,3001,,17,NE,1957,1957,3101,1,1,1417.676614,1417.676614,3505,NO,17.87,27.36,3,-0.1,6106,113.59193,123.374491,133.094717,139.606017,I,Above,Gable,0,5701,,22.6160965,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 29599,NJBF000064275,317 N HARVARD AVE,Ventnor City,NJ,39.34407245,-74.48440514,RES1,3001,,17,NE,1960,1960,3102,2,1,1392.315384,1392.315384,3505,NO,27.21,42,3,5.83,6106,113.62837,123.405501,133.12537,139.656931,I,Above,Flat,0,5701,,34.60053483,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 29600,NJBF000060516,1 S BUFFALO AVE,Ventnor City,NJ,39.33612303,-74.48616896,RES1,3001,,17,NE,1920,1920,3102,2,1,1487.954617,1487.954617,3505,NO,25.49,35.6,3,1.07,6106,113.696534,123.462103,133.179553,139.754019,I,Above,Hip,0,5701,,30.54767888,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29601,NJBF000066856,804 N DERBY AVE,Ventnor City,NJ,39.35102747,-74.48701667,RES1,3001,,17,NE,1974,1974,3101,1,1,1966.588133,1966.588133,3505,NO,23.68,38.52,3,5.87,6106,113.480191,123.28245,132.998645,139.495381,I,Above,Hip,0,5701,,31.09740466,0,0,,,,1,1,,0.03,nav,1,1974,1,, 29602,NJBF000064188,15 N LITTLE ROCK AVE,Ventnor City,NJ,39.34382351,-74.47199416,RES1,3001,,17,NE,1930,1930,3102,2,1,944.6428015,944.6428015,3507,NO,38.71,51.46,1,2.07,6106,113.905413,123.630267,133.364745,139.875258,I,Above,Flat,0,5701,,45.08704906,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29603,NJBF000059763,104 N MARTINDALE AVE,Ventnor City,NJ,39.33480816,-74.49361213,RES1,3001,,17,NE,1930,1930,3102,2,1,818.4113034,818.4113034,3505,NO,39.8,52.49,3,6.9,6106,113.550536,123.344408,133.054314,139.628235,I,Above,Gable,0,5701,,46.14362997,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29604,NJBF000066073,710 N HARVARD AVE,Ventnor City,NJ,39.34883875,-74.48872843,RES1,3001,,18,NE,1990,1990,3102,2,1,2326.758205,2326.758205,3505,NO,42.77,51.4,3,4.58,6106,113.470326,123.275859,132.990611,139.499422,I,Above,Hip,0,5701,,47.08354391,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 29605,NJBF000062629,,Ventnor City,NJ,39.33987116,-74.49037529,RES1,3001,,NaN,NE,1954,0,3102,2,1,1078.758274,1078.758274,3505,NO,39.95,47.34,3,4.71,6106,113.552548,123.345514,133.05909,139.613497,I,Above,Hip,0,5701,,43.64434717,0,0,,,,1,1,,0.03,nav,1,1954,2,, 29606,NJBF000058433,108 S MELBOURNE AVE,Ventnor City,NJ,39.33230177,-74.48870119,RES1,3001,,20,NE,2017,2017,3102,3,1,1256.667423,1256.667423,3505,NO,46.81,57.1,3,6.58,6106,113.693713,123.45974,133.173838,139.763809,I,Above,Hip,0,5701,,51.95253451,0,0,,,,1,1,,0.03,nav,1,2017,3,, 29607,NJBF000060966,211 N WASHINGTON AVE,Ventnor City,NJ,39.33683028,-74.49453713,RES1,3001,,17,NE,1968,1968,3102,2,1,1624.066819,1624.066819,3505,NO,38.71,47.61,3,2.06,6106,113.502112,123.305355,133.01469,139.579333,I,Above,Flat,0,5701,,43.15732427,0,0,,,,1,1,,0.03,nav,1,1968,2,, 29608,NJBF000065341,407 N DUDLEY AVE,Ventnor City,NJ,39.34679192,-74.48114131,RES1,3001,,17,NE,1967,1967,3102,1,1,1627.090556,1627.090556,3505,NO,19.03,32.56,3,-0.13,6106,113.664869,123.433937,133.157343,139.670925,I,Above,Gable,0,5701,,25.79712236,0,0,,,,1,1,,0.03,nav,1,1967,1,, 29609,NJBF000067331,723 N LITTLE ROCK AVE,Ventnor City,NJ,39.35311741,-74.48130039,RES3A,3001,,27,NE,1980,1980,3301,2,1,1033.546035,1033.546035,3505,NO,23.67,34.67,3,1.83,6106,113.580397,123.361946,133.084237,139.5648,I,Above,Flat,0,5701,,29.17150419,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29610,NJBF000064098,116 N SOMERSET AVE,Ventnor City,NJ,39.34357,-74.4773445,RES1,3001,,16,NE,1930,1930,3102,1,1,1105.580954,1105.580954,3505,NO,11.34,25.14,3,-0.27,6106,113.790895,123.537234,133.265167,139.789773,I,Above,Flat,0,5701,,18.24131552,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 29611,NJBF000061161,307 N FREDERICKSBURG,Ventnor City,NJ,39.33716691,-74.49598346,RES1,3001,,17,NE,1970,1970,3103,2,1,1598.414103,1598.414103,3505,NO,32.39,45.13,3,2.92,6106,113.465509,123.275897,132.983946,139.545374,I,Above,Flat,0,5701,,38.76209553,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29612,NJBF000060639,23 N WYOMING AVE,Ventnor City,NJ,39.33631606,-74.48951987,RES1,3001,,17,NE,1940,1940,3102,2,1,1475.072629,1475.072629,3505,NO,27.58,39.51,3,3.84,6106,113.61997,123.400303,133.114381,139.686331,I,Above,Hip,0,5701,,33.5469952,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29613,NJBF000065276,415 N DERBY AVE,Ventnor City,NJ,39.34660201,-74.48289766,RES1,3001,,17,NE,1950,1950,3102,2,1,1312.548439,1312.548439,3505,NO,23.98,32.03,3,1.46,6106,113.628494,123.404599,133.126013,139.642681,I,Above,Hip,0,5701,,28.00416117,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29614,NJBF000066085,707 N HARVARD AVE,Ventnor City,NJ,39.34886353,-74.48821878,RES1,3001,,17,NE,1984,1984,3101,1,1,1557.778128,1557.778128,3505,NO,26.37,41.1,3,7.84,6106,113.481293,123.284675,132.999966,139.508471,I,Above,Gable,0,5701,,33.73519719,0,0,,,,1,1,,0.03,nav,1,1984,1,, 29615,NJBF000059076,,Ventnor City,NJ,39.33350142,-74.49109341,RES1,3001,,NaN,NE,1929,0,3102,2,1,2045.410467,2045.410467,3505,NO,42.02,49.68,3,4.25,6106,113.624283,123.4038,133.11584,139.698147,I,Above,Hip,0,5701,,45.84815757,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29616,NJBF000062485,113 N BRYANT AVE,Ventnor City,NJ,39.33956488,-74.4853321,RES1,3001,,17,NE,1919,1919,3102,2,1,880.3793111,880.3793111,3505,NO,34.87,42.57,3,3.38,6106,113.668114,123.438774,133.15752,139.713778,I,Above,Flat,0,5701,,38.71824238,0,1.1,,,,1,1,,0.03,nav,1,1919,2,, 29617,NJBF000060121,6923 VENTNOR AVE,Ventnor City,NJ,39.33544404,-74.48839813,RES1,3001,,17,NE,1920,1920,3102,2,1,1251.728124,1251.728124,3505,NO,40.14,47.41,3,2.42,6106,113.656734,123.429995,133.145056,139.721878,I,Above,Flat,0,5701,,43.7745618,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29618,NJBF000064798,22 N NASHVILLE AVE,Ventnor City,NJ,39.34534297,-74.47073357,RES1,3001,,17,NE,1950,1950,3102,2,1,1835.698198,1835.698198,3507,NO,27.84,34.39,1,1.22,6106,113.913242,123.636229,133.372348,139.871778,I,Above,Hip,0,5701,,31.11610784,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 29619,NJBF000066156,607 N DORSET AVE,Ventnor City,NJ,39.34907472,-74.48389576,RES1,3001,,17,NE,1974,1974,3102,2,1,1685.122961,1685.122961,3507,NO,38.72,45.85,1,1.54,6106,113.57437,123.359628,133.079642,139.58421,I,Above,Gable,0,5701,,42.28558844,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 29620,NJBF000064136,208 N DORSET AVE,Ventnor City,NJ,39.34368007,-74.48019428,RES1,3001,,45,NE,1960,1960,3102,2,2,1782.318852,1782.318852,3505,NO,41.89,52.65,3,4.86,6106,113.726586,123.485067,133.209671,139.738618,I,Above,Gable,0,5701,,47.27296285,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29621,NJBF000063160,104 S SURREY AVE,Ventnor City,NJ,39.34101825,-74.47176294,RES1,3001,,19,NE,2006,2006,3102,3,1,2351.060053,2351.060053,3505,NO,48.43,57.18,3,-1.07,6110,113.94761,123.665197,133.399754,139.923525,I,Above,Hip,0,5701,,52.80710654,0,1.1,,,,1,1,,0.35,nav,1,2006,3,, 29622,NJBF000064888,219 N SUFFOLK AVE,Ventnor City,NJ,39.34558361,-74.4776006,RES1,3001,,17,NE,1950,1950,3102,1,1,1303.193834,1303.193834,3505,NO,24.89,32.56,3,8.79,6106,113.758802,123.51054,133.238163,139.752567,I,Above,Flat,0,5701,,28.72690972,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29623,NJBF000060614,115 S PRINCETON AVE,Ventnor City,NJ,39.33627773,-74.47971315,RES1,3001,,18,NE,1915,1915,3102,3,1,2582.716907,2582.716907,3505,NO,58.65,67.43,3,1.89,6106,113.836623,123.575451,133.299906,139.868593,I,Above,Hip,0,5701,,63.03960466,0,1.1,,,,1,1,,0.03,nav,1,1915,3,, 29624,NJBF000059957,107 S AVOLYN AVE,Ventnor City,NJ,39.33514193,-74.48318884,RES1,3001,,17,NE,1937,1937,3102,2,1,1481.948719,1481.948719,3505,NO,33.59,47.87,3,3.28,6106,113.775673,123.526106,133.246526,139.825687,I,Above,Hip,0,5701,,40.73213987,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 29625,NJBF000061789,125 N WISSAHICKON AVE,Ventnor City,NJ,39.33825834,-74.48863504,RES1,3001,,17,NE,1930,1930,3102,1,1,1313.221548,1313.221548,3505,NO,18.39,25.18,3,1.18,6106,113.612914,123.394428,133.109629,139.672696,I,Above,Hip,0,5701,,21.78172969,0,0,,,,1,1,,0.03,nav,1,1930,1,, 29626,NJBF000061756,123 N WISSAHICKON AVE,Ventnor City,NJ,39.33819382,-74.48857466,RES1,3001,,17,NE,1930,1930,3102,2,1,1110.188537,1110.188537,3505,NO,33.04,44.66,3,7.47,6106,113.615111,123.396208,133.111464,139.67487,I,Above,Hip,0,5701,,38.8536345,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29627,NJBF000058598,18 S MARTINDALE AVE,Ventnor City,NJ,39.33258957,-74.49176595,RES1,3001,,18,NE,1929,1929,3102,2,1,1445.803244,1445.803244,3505,NO,28.15,36.98,3,5.28,6106,113.622192,123.402058,133.113253,139.697926,I,Above,Gable,0,5701,,32.56485153,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 29628,NJBF000065357,504 N BURGHLEY AVE,Ventnor City,NJ,39.34683006,-74.48445161,RES1,3001,,17,NE,1972,1972,3101,2,1,1221.612543,1221.612543,3505,NO,42.72,50.8,3,5.87,6106,113.591139,123.374315,133.093969,139.610883,I,Above,Flat,0,5701,,46.75749759,0,0,,,,1,1,,0.03,nav,1,1972,2,, 29629,NJBF000063928,12 S WEYMOUTH AVE,Ventnor City,NJ,39.34309713,-74.47093619,RES1,3001,,45,NE,1940,1940,3102,2,1,1251.124762,1251.124762,3505,NO,31.28,45.33,3,2.12,6106,113.938253,123.657195,133.392968,139.904055,I,Above,Flat,0,5701,,38.30481478,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29630,NJBF000064329,204 N OXFORD AVE,Ventnor City,NJ,39.34420817,-74.47869427,RES1,3001,,NaN,NE,1940,1940,3102,1,1,1120.090294,1120.090294,3505,NO,8.82,22.95,3,-2.9,6106,113.752731,123.506087,133.232435,139.756132,I,Above,Hip,0,5701,,15.88335208,0,0,,,,1,1,,0.03,nav,1,1940,1,, 29631,NJBF000059257,9 S MELBOURNE AVE,Ventnor City,NJ,39.33386979,-74.48933529,RES1,3001,,17,NE,1920,1920,3102,2,1,1226.667369,1226.667369,3505,NO,36.58,50.29,3,4.62,6106,113.657882,123.430915,133.144745,139.727713,I,Above,Gable,0,5701,,43.43634365,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29632,NJBF000064831,411 N CAMBRIDGE AVE,Ventnor City,NJ,39.34544123,-74.48461587,RES1,3001,,17,NE,1962,1962,3102,1,1,1221.77203,1221.77203,3505,NO,20.34,26.6,3,2.99,6106,113.605675,123.386656,133.106234,139.630655,I,Above,Gable,0,5701,,23.46574069,0,0,,,,1,1,,0.03,nav,1,1962,1,, 29633,NJBF000059851,108 S AVOLYN AVE,Ventnor City,NJ,39.33496593,-74.48352601,RES1,3001,,18,NE,1930,1930,3102,2,1,1846.728228,1846.728228,3505,NO,28.52,39.27,3,3.48,6106,113.770675,123.522062,133.242086,139.822369,I,Above,Flat,0,5701,,33.89186636,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29634,NJBF000061846,108 N RICHARDS AVE,Ventnor City,NJ,39.33836252,-74.4876925,RES1,3001,,17,NE,1950,1950,3102,1,1,894.9083606,894.9083606,3505,NO,24.08,31.03,3,6.56,6106,113.632307,123.410056,133.126228,139.689018,I,Above,Flat,0,5701,,27.55692959,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29635,NJBF000059836,3 S WYOMING AVE,Ventnor City,NJ,39.33493977,-74.48840697,RES1,3001,,17,NE,1925,1925,3102,2,1,1639.660966,1639.660966,3505,NO,37.51,51.62,3,8.6,6106,113.663498,123.435461,133.150423,139.729572,I,Above,Hip,0,5701,,44.56522525,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29636,NJBF000064071,25 S NASHVILLE AVE,Ventnor City,NJ,39.34349719,-74.46874427,RES3B,3001,,17,E,1920,1920,3303,2,1,1446.758548,1446.758548,3504,NO,30.57,38.3,-4,0,6106,113.981162,123.692113,133.430717,139.93312,I,Above,Hip,0,NaN,,34.43634426,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29637,NJBF000064013,200 N DORSET AVE,Ventnor City,NJ,39.3433345,-74.479929,RES1,3001,,NaN,NE,1980,1980,3102,2,1,1721.812251,1721.812251,3505,NO,41.2,48.77,3,2.54,6106,113.737008,123.493613,133.218519,139.748933,I,Above,Hip,0,5701,,44.98785312,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29638,NJBF000059238,108 S WISSAHICKON AVE,Ventnor City,NJ,39.33382963,-74.48553671,RES1,3001,,19,NE,2000,2000,3102,2,1,1774.696391,1774.696391,3505,NO,28.55,40.98,3,3.88,6110,113.742091,123.498922,133.216588,139.802772,I,Above,Gable,0,5701,,34.76243934,0,1.1,,,,1,1,,0.35,nav,1,2000,2,, 29639,NJBF000065414,314 N SURREY AVE,Ventnor City,NJ,39.34699138,-74.4783722,RES1,3001,,17,NE,1962,1962,3102,2,1,1067.05966,1067.05966,3505,NO,39.28,49.58,3,2.35,6106,113.723457,123.481314,133.207955,139.71629,I,Above,Hip,0,5701,,44.42752471,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 29640,NJBF000064884,408 N BURGHLEY AVE,Ventnor City,NJ,39.34557642,-74.4834699,RES1,3001,,17,NE,1967,1967,3102,1,1,1242.326173,1242.326173,3505,NO,13.38,25.21,3,-1.72,6106,113.629254,123.405648,133.126489,139.649203,I,Above,Hip,0,5701,,19.2920185,0,0,,,,1,1,,0.03,nav,1,1967,1,, 29641,NJBF000060306,7305 MONMOUTH AVE,Ventnor City,NJ,39.33575086,-74.49418796,RES1,3001,,17,NE,1950,1950,3102,2,1,1129.803288,1129.803288,3505,NO,26.58,32.3,3,4.13,6106,113.524735,123.32362,133.03314,139.602601,I,Above,Gable,0,5701,,29.441787,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29642,NJBF000061742,309 WALDON DRIVE,Ventnor City,NJ,39.3381745,-74.494602,RES1,3001,,17,NE,1988,1988,3102,2,1,2240.886815,2240.886815,3505,NO,24.13,30.1,3,0.41,6106,113.482184,123.289184,132.998587,139.557473,I,Above,Hip,0,5701,,27.11322915,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 29643,NJBF000061827,311 WALDON DRIVE,Ventnor City,NJ,39.33832457,-74.49468309,RES1,3001,,17,NE,1974,1974,3102,2,1,851.5404431,851.5404431,3505,NO,39.57,53.91,3,7.83,6106,113.478337,123.286071,132.99541,139.553559,I,Above,Flat,0,5701,,46.74017358,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29644,NJBF000064592,8 S BATON ROUGE AVE,Ventnor City,NJ,39.3448645,-74.46742181,RES3A,3001,,17,NE,1930,1930,3301,2,1,1670.945256,1670.945256,3504,NO,23.66,33.92,-4,0,6106,113.99229,123.700888,133.441293,139.932993,I,Above,Flat,0,5701,,28.78678163,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29645,NJBF000064977,26 N AUSTIN AVE,Ventnor City,NJ,39.34583102,-74.46965065,RES1,3001,,17,NE,1920,1920,3102,2,1,1617.007935,1617.007935,3507,NO,40.31,48.71,1,2.81,6106,113.930704,123.650325,133.387844,139.881765,I,Above,Hip,0,5701,,44.50992644,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29646,NJBF000064595,401 N CAMBRIDGE AVE,Ventnor City,NJ,39.34487022,-74.4841262,RES1,3001,,17,NE,1965,1965,3102,1,1,1433.03027,1433.03027,3505,NO,18.2,28.63,3,2.61,6106,113.624018,123.401695,133.121843,139.648914,I,Above,Hip,0,5701,,23.41530501,0,0,,,,1,1,,0.03,nav,1,1965,1,, 29647,NJBF000061908,313 WALDON DRIVE,Ventnor City,NJ,39.33845586,-74.49483623,RES1,3001,,17,NE,1974,1974,3102,2,1,1888.861144,1888.861144,3505,NO,28.3,40.99,3,3.72,6106,113.47316,123.28189,132.991097,139.548511,I,Above,Gable,0,5701,,34.64424798,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29648,NJBF000060815,21 N NEWARK AVE,Ventnor City,NJ,39.3365825,-74.4879955,RES1,3001,,17,NE,1908,1908,3102,2,1,1571.894857,1571.894857,3505,NO,34.2,42.67,3,3.26,6106,113.649962,123.424479,133.140125,139.711725,I,Above,Gable,0,5701,,38.43691379,0,0,,,,1,1,,0.03,nav,1,1908,2,, 29649,NJBF000064769,4 S VASSAR SQUARE,Ventnor City,NJ,39.34528684,-74.46701139,RES3B,3001,,17,ME,1930,1930,3301,2,1,1572.059053,1572.059053,3504,NO,37.04,43.89,-4,0,6106,113.995798,123.703648,133.444613,139.932998,I,Above,Gable,0,NaN,,40.46335752,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29650,NJBF000058881,7312 VENTNOR AVE,Ventnor City,NJ,39.33310979,-74.49231302,RES1,3001,,NaN,NE,1920,1920,3102,2,2,708.0551491,708.0551491,3505,NO,38.66,51.11,3,7.66,6106,113.602861,123.38651,133.097305,139.679354,I,Above,Flat,0,5701,,44.88733732,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29651,NJBF000064978,9 N MARION AVE,Ventnor City,NJ,39.34583359,-74.46845379,RES3A,3001,,28,NE,1926,1926,3301,2,1,1792.623392,1792.623392,3505,NO,25.55,38.63,3,-0.96,6106,113.956978,123.671774,133.410852,139.901184,I,Above,Flat,0,5701,,32.08992208,0,0,,,,1,1,,0.03,nav,1,1926,2,, 29652,NJBF000060897,120 N MELBOURNE AVE,Ventnor City,NJ,39.33671804,-74.49215112,RES1,3001,,45,NE,1950,1950,3102,2,2,1798.976357,1798.976357,3505,NO,39.7,44.86,3,3.21,6106,113.556359,123.34902,133.060586,139.628395,I,Above,Gable,0,5701,,42.27861506,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29653,NJBF000062556,5700 ATLANTIC AVE,Ventnor City,NJ,39.33969433,-74.47474299,RES1,3001,,17,NE,1918,1918,3102,2,1,756.0407049,756.0407049,3505,NO,33.23,46.8,3,2.64,6110,113.899765,123.626444,133.357202,139.896173,I,Above,Flat,0,5701,,40.01359084,0,1.2,,,,1,1,,0.35,nav,1,1918,2,, 29654,NJBF000063185,CANTERBURY COURT,Ventnor City,NJ,39.34108513,-74.49372247,RES1,3001,,NaN,NE,1969,0,3102,2,1,2399.054026,2399.054026,3505,NO,47.5,53.18,3,8.82,6106,113.462068,123.272445,132.982796,139.529366,I,Above,Hip,0,5701,,50.33926912,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29655,NJBF000063032,CANTERBURY COURT,Ventnor City,NJ,39.34074586,-74.49339686,RES1,3001,,NaN,NE,1969,0,3102,2,1,2696.894701,2696.894701,3505,NO,33.3,41.09,3,1.79,6106,113.473844,123.281995,132.992652,139.541052,I,Above,Gable,0,5701,,37.19688828,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29656,NJBF000065255,416 N DERBY AVE,Ventnor City,NJ,39.34654034,-74.48340508,RES1,3001,,17,NE,1960,1960,3102,2,1,2294.589456,2294.589456,3505,NO,31.53,38.19,3,3.6,6106,113.618087,123.396215,133.117063,139.634575,I,Above,Flat,0,5701,,34.85554324,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 29657,NJBF000065211,414 N DERBY AVE,Ventnor City,NJ,39.34642042,-74.48328448,RES1,3001,,17,NE,1962,1962,3102,1,1,1608.704873,1608.704873,3505,NO,17.28,28.57,3,5.5,6106,113.62233,123.399697,133.12069,139.638721,I,Above,Flat,0,5701,,22.92227618,0,0,,,,1,1,,0.03,nav,1,1962,1,, 29658,NJBF000062095,3 S HARVARD AVE,Ventnor City,NJ,39.33878784,-74.48029239,RES1,3001,,15,NE,1956,1956,3102,1,1,1990.10477,1990.10477,3505,NO,16.37,27.12,3,2.24,6106,113.789781,123.537303,133.261489,139.817257,I,Above,Hip,0,5701,,21.74179528,0,0,,,,1,1,,0.03,nav,1,1956,1,, 29659,NJBF000061824,105 N TROY AVE,Ventnor City,NJ,39.33831784,-74.48650088,RES1,3001,,17,NE,1950,1950,3102,1,1,1381.311898,1381.311898,3505,NO,14.22,21.38,3,3.5,6106,113.659212,123.431775,133.149174,139.712277,I,Above,Hip,0,5701,,17.80329264,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29660,NJBF000062552,101 N PORTLAND AVE,Ventnor City,NJ,39.33968935,-74.48322363,RES1,3001,,27,NE,1970,1970,3102,2,2,2016.08659,2016.08659,3505,NO,36.59,43.2,3,0.79,6106,113.712968,123.475001,133.196028,139.750313,I,Above,Hip,0,5701,,39.89603456,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29661,NJBF000063499,5603 VENTNOR AVE,Ventnor City,NJ,39.34188095,-74.47516841,RES1,3001,,17,NE,1920,1920,3102,2,1,1633.840642,1633.840642,3505,NO,25.81,37.82,3,2.43,6106,113.861223,123.59476,133.325219,139.853944,I,Above,Hip,0,5701,,31.81182773,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29662,NJBF000065210,307 N SUFFOLK AVE,Ventnor City,NJ,39.34642034,-74.47826866,RES1,3001,,17,NE,1969,1969,3102,2,1,1093.172603,1093.172603,3505,NO,24.59,30.44,3,2.18,6106,113.733155,123.489415,133.21621,139.72739,I,Above,Hip,0,5701,,27.51503609,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 29663,NJBF000064655,215 N SOMERSET AVE,Ventnor City,NJ,39.34500623,-74.47792739,RES1,3001,,17,NE,1929,1929,3102,2,1,1894.547443,1894.547443,3505,NO,31.26,36.31,3,3.3,6106,113.759173,123.511047,133.238294,139.756367,I,Above,Gable,0,5701,,33.78503194,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29664,NJBF000058958,17 S SWARTHMORE AVE,Ventnor City,NJ,39.33326171,-74.49047734,RES1,3001,,17,NE,1925,1925,3102,2,1,1136.585234,1136.585234,3505,NO,34.8,49.36,3,3.19,6106,113.64119,123.417423,133.130006,139.714034,I,Above,Hip,0,5701,,42.0791465,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29665,NJBF000060398,16 S TROY AVE,Ventnor City,NJ,39.33589928,-74.48500517,RES1,3001,,17,NE,1906,1906,3102,2,1,1866.631442,1866.631442,3505,NO,30.8,44.26,3,5.07,6106,113.725266,123.485328,133.203957,139.779622,I,Above,Hip,0,5701,,37.53286601,0,1.1,,,,1,1,,0.03,nav,1,1906,2,, 29666,NJBF000060578,6750 VENTNOR AVE,Ventnor City,NJ,39.33621763,-74.4859763,RES1,3001,,NaN,NE,1940,1940,3102,3,3,1947.165329,1947.165329,3505,NO,35.48,50.44,3,-0.29,6106,113.699484,123.464482,133.182148,139.756151,I,Above,Hip,0,5701,,42.96309785,0,0,,,,1,1,,0.03,nav,1,1940,3,, 29667,NJBF000065844,613 N CAMBRIDGE AVE,Ventnor City,NJ,39.34826184,-74.4868745,RES1,3001,,17,NE,1965,1965,3101,2,1,1215.12844,1215.12844,3505,NO,32.36,47.19,3,7.13,6106,113.518896,123.31531,133.03214,139.543159,I,Above,Flat,0,5701,,39.77392748,0,0,,,,1,1,,0.03,nav,1,1965,2,, 29668,NJBF000062146,106 S DUDLEY AVE,Ventnor City,NJ,39.33888512,-74.47510734,RES1,3001,,19,NE,1986,1986,3102,3,1,2014.978747,2014.978747,3505,NO,48.19,58.63,3,3.09,6106,113.902627,123.628858,133.359073,139.903188,I,Above,Flat,0,5701,,53.40660011,0,1.1,,,,1,1,,0.03,nav,1,1986,3,, 29669,NJBF000062977,5901 VENTNOR AVE,Ventnor City,NJ,39.34062577,-74.47774015,RES1,3001,,18,NE,1930,1930,3102,2,1,2285.15201,2285.15201,3505,NO,32.55,43.14,3,6.25,6106,113.821302,123.562584,133.289889,139.831037,I,Above,Hip,0,5701,,37.84861158,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29670,NJBF000066160,502 N SURREY AVE,Ventnor City,NJ,39.34908346,-74.48002833,RES1,3001,,17,NE,1990,1990,3102,2,1,1842.435741,1842.435741,3507,NO,21.12,27.19,1,-0.53,6106,113.659845,123.428763,133.153247,139.653153,I,Above,Gable,0,5701,,24.15499608,0,0,,,,1,1,,0.03,nav,1,1990,2,, 29671,NJBF000063286,5312 ATLANTIC AVE,Ventnor City,NJ,39.34132559,-74.47141891,COM1,3001,51,NaN,ME,1980,1980,3401,1,1,2784.426349,2784.426349,3507,NO,17.14,24.69,1,-0.63,6110,113.951075,123.667974,133.402992,139.924208,I,Above,Flat,0,NaN,,20.91507873,0,0,,,,1,1,,0.35,nav,1,1980,1,, 29672,NJBF000064544,31 N WEYMOUTH AVE,Ventnor City,NJ,39.34474757,-74.47175185,RES1,3001,,45,NE,1920,1920,3102,2,3,1383.654937,1383.654937,3507,NO,34.61,43.7,1,2.77,6106,113.898619,123.624484,133.359298,139.864518,I,Above,Hip,0,5701,,39.15487291,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29673,NJBF000065877,612 N CORNWALL AVE,Ventnor City,NJ,39.348335,-74.4865885,RES1,3001,,17,NE,1972,1972,3101,1,1,1470.807841,1470.807841,3505,NO,13.74,19.28,3,0.13,6106,113.524289,123.319618,133.036749,139.54723,I,Above,Hip,0,5701,,16.51220779,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 29674,NJBF000064191,210 N DORSET AVE,Ventnor City,NJ,39.34383058,-74.48027884,RES1,3001,,17,NE,1930,1930,3102,1,1,1027.239348,1027.239348,3505,NO,17.7,26.64,3,4.93,6106,113.722716,123.481886,133.206392,139.734651,I,Above,Gable,0,5701,,22.1712396,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 29675,NJBF000063304,124 N CAMBRIDGE AVE,Ventnor City,NJ,39.3413675,-74.4821095,RES1,3001,,17,NE,1925,1925,3102,1,1,1840.624274,1840.624274,3505,NO,14.22,22.87,3,-2.69,6106,113.715025,123.476331,133.198701,139.742721,I,Above,Flat,0,5701,,18.54460709,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29676,NJBF000065792,429 N SUFFOLK AVE,Ventnor City,NJ,39.34811728,-74.4796517,RES1,3001,,17,NE,1929,1929,3102,2,1,984.1783545,984.1783545,3505,NO,35.44,41.4,3,0.04,6106,113.680602,123.446066,133.171098,139.675543,I,Above,Flat,0,5701,,38.42255904,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 29677,NJBF000062023,7 S CAMBRIDGE AVE,Ventnor City,NJ,39.33866659,-74.479416,RES1,3001,,18,NE,1946,1946,3102,2,1,2012.516507,2012.516507,3505,NO,36.43,44.24,3,1.94,6106,113.810715,123.554282,133.279444,139.834433,I,Above,Hip,0,5701,,40.33394615,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 29678,NJBF000059052,7315 VENTNOR AVE,Ventnor City,NJ,39.33344986,-74.49258746,RES1,3001,,NaN,NE,1940,1920,3102,2,3,2785.191762,2785.191762,3505,NO,33.95,44.17,3,-2.82,6106,113.592069,123.377831,133.08844,139.668873,I,Above,Flat,0,5701,,39.05661712,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29679,NJBF000059777,6 N MELBOURNE AVE,Ventnor City,NJ,39.334828,-74.49059712,RES1,3001,,18,NE,1940,1940,3102,2,1,1466.238928,1466.238928,3505,NO,37.35,42.37,3,3.56,6106,113.616763,123.397764,133.110543,139.688113,I,Above,Flat,0,5701,,39.85734345,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29680,NJBF000064688,409 N HARVARD AVE,Ventnor City,NJ,39.34508317,-74.48517917,RES1,3001,,17,NE,1958,1958,3102,1,1,1378.433311,1378.433311,3505,NO,18.64,27.46,3,2.97,6106,113.597922,123.38054,133.099522,139.626254,I,Above,Flat,0,5701,,23.05011122,0,0,,,,1,1,,0.03,nav,1,1958,1,, 29681,NJBF000059102,103 S PHILADELPHIA AVE,Ventnor City,NJ,39.33355076,-74.48702634,RES1,3001,,19,NE,2016,2016,3102,3,1,1928.801852,1928.801852,3505,NO,54.71,61.63,3,5.52,6110,113.713177,123.475545,133.191619,139.778193,I,Above,Hip,0,5701,,58.1704764,0,0,,,,1,1,,0.35,nav,1,2016,3,, 29682,NJBF000065988,509 N SOMERSET AVE,Ventnor City,NJ,39.3486277,-74.48093024,RES1,3001,,17,NE,1955,1955,3102,1,1,3248.371284,3248.371284,3507,NO,12.71,25.57,1,1.94,6106,113.645758,123.417593,133.141071,139.644634,I,Above,Hip,0,5701,,19.13938782,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 29683,NJBF000061410,102 N BUFFALO AVE,Ventnor City,NJ,39.33759173,-74.48782837,RES1,3001,,17,NE,1922,1922,3102,1,1,1615.959146,1615.959146,3505,NO,22.13,33.02,3,3.91,6106,113.639818,123.416207,133.132156,139.698809,I,Above,Gable,0,5701,,27.57266292,0,1.1,,,,1,1,,0.03,nav,1,1922,1,, 29684,NJBF000065231,317 N SOMERSET AVE,Ventnor City,NJ,39.34646054,-74.47916982,RES1,3001,,17,NE,1935,1935,3102,1,1,1445.669426,1445.669426,3505,NO,19.48,32.02,3,7.17,6106,113.712726,123.472837,133.198563,139.711033,I,Above,Hip,0,5701,,25.75324619,0,0,,,,1,1,,0.03,nav,1,1935,1,, 29685,NJBF000064693,11 S VASSAR SQUARE,Ventnor City,NJ,39.34509966,-74.46644401,RES3B,3001,,17,ME,1920,1920,3301,2,1,1628.351853,1628.351853,3504,NO,25.98,38.85,-4,0,6106,114.010684,123.715869,133.457578,139.944978,I,Above,Flat,0,NaN,,32.41246242,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29686,NJBF000064144,106 N SUFFOLK AVE,Ventnor City,NJ,39.34370311,-74.47658614,RES1,3001,,17,NE,1956,1956,3102,1,1,1388.867765,1388.867765,3505,NO,16.46,30.78,3,-0.3,6106,113.805875,123.549355,133.278196,139.800552,I,Above,Flat,0,5701,,23.62211402,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 29687,NJBF000064579,3 N NASHVILLE AVE,Ventnor City,NJ,39.34483223,-74.46986366,RES1,3001,,NaN,NE,1910,1910,3102,2,1,1197.998015,1197.998015,3507,NO,25.2,38.77,1,0.87,6106,113.939048,123.657421,133.394645,139.894066,I,Above,Flat,0,5701,,31.98536067,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 29688,NJBF000061357,105 N WISSAHICKON AVE,Ventnor City,NJ,39.33749803,-74.48801215,RES1,3001,,17,NE,1920,1920,3102,2,1,1413.50464,1413.50464,3505,NO,35.81,42.95,3,2.66,6106,113.637041,123.413977,133.129727,139.696792,I,Above,Hip,0,5701,,39.38245579,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29689,NJBF000061389,107 N WISSAHICKON AVE,Ventnor City,NJ,39.33754944,-74.48810109,RES1,3001,,17,NE,1926,1926,3102,2,1,822.2468992,822.2468992,3505,NO,27.16,36.72,3,1.48,6106,113.634379,123.411825,133.12749,139.694271,I,Above,Hip,0,5701,,31.9413604,0,0,,,,1,1,,0.03,nav,1,1926,2,, 29690,NJBF000064109,5001 ATLANTIC AVE,Ventnor City,NJ,39.34360018,-74.46789081,RES3B,3001,,17,E,1950,1950,3303,2,1,3297.360901,3297.360901,3504,NO,37.21,45.51,-4,0,6106,113.998544,123.706286,133.446006,139.945163,I,Above,Gable,0,NaN,,41.35720787,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29691,NJBF000062698,6 S DORSET AVE,Ventnor City,NJ,39.34004093,-74.47729015,RES1,3001,,18,NE,1920,1920,3102,2,1,1742.449665,1742.449665,3505,NO,35.46,41.87,3,-2.39,6106,113.839049,123.577081,133.304856,139.848197,I,Above,Hip,0,5701,,38.66516286,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29692,NJBF000065907,510 N OXFORD AVE,Ventnor City,NJ,39.34841684,-74.48214002,RES1,3001,,17,NE,1963,1963,3102,1,1,1446.617144,1446.617144,3507,NO,14.93,24.88,1,-0.45,6106,113.621717,123.398249,133.12035,139.626543,I,Above,Hip,0,5701,,19.90453334,0,0,,,,1,1,,0.03,nav,1,1963,1,, 29693,NJBF000065860,508 N OXFORD AVE,Ventnor City,NJ,39.34829102,-74.48205674,RES1,3001,,17,NE,1963,1963,3102,1,1,1698.421275,1698.421275,3507,NO,20.27,29.93,1,0.94,6106,113.62518,123.401115,133.123326,139.630087,I,Above,Hip,0,5701,,25.09716094,0,0,,,,1,1,,0.03,nav,1,1963,1,, 29694,NJBF000062818,325 HAMPSHIRE DRIVE,Ventnor City,NJ,39.34029296,-74.49282992,RES1,3001,,35,NE,1978,1974,3102,2,1,4401.772282,4401.772282,3505,NO,28.59,42.3,3,-0.27,6106,113.492525,123.29712,133.008311,139.55925,I,Above,Gable,0,5701,,35.44611269,0,0,,,,1,1,,0.03,nav,1,1978,2,, 29695,NJBF000063070,,Ventnor City,NJ,39.34083736,-74.47737685,RES1,3001,,NaN,NE,1969,0,3102,2,1,2896.20283,2896.20283,3505,NO,31.63,41.17,3,-0.2,6106,113.826478,123.566746,133.294495,139.833759,I,Above,Hip,0,5701,,36.40061659,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29696,NJBF000062929,5605 ATLANTIC AVE,Ventnor City,NJ,39.3405215,-74.47433107,RES1,3001,,18,NE,1930,1930,3102,2,1,3303.589329,3303.589329,3505,YES,28.51,40.25,3,0.11,6110,113.897747,123.624691,133.356042,139.889656,I,Above,Hip,0,5701,,34.37879479,0,0,,,,1,1,,0.35,nav,1,1930,2,, 29697,NJBF000065901,513 N DORSET AVE,Ventnor City,NJ,39.34840233,-74.483382,RES1,3001,,17,NE,2003,2003,3102,2,1,1775.970576,1775.970576,3507,NO,28.29,41.84,1,2.25,6106,113.594428,123.376196,133.096881,139.604498,I,Above,Flat,0,5701,,35.06455144,0,0,,,,1,1,,0.03,nav,1,2003,2,, 29698,NJBF000064051,100 S MARION AVE,Ventnor City,NJ,39.34344016,-74.4670136,RES3B,3001,,16,E,1970,1970,3303,1,1,2541.17165,2541.17165,3504,NO,12.84,26.48,-4,0,6106,114.0199,123.72377,133.464627,139.961607,I,Above,Hip,0,NaN,,19.6595769,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 29699,NJBF000064009,102 S MARION AVE,Ventnor City,NJ,39.34332426,-74.46689971,RES3B,3001,,17,E,1900,1900,3303,3,1,2132.73801,2132.73801,3504,NO,49.35,61.72,-4,0,6106,114.023927,123.727083,133.468082,139.965208,I,Above,Gable,0,NaN,,55.53558767,0,0,,,,1,1,,0.03,nav,1,1900,3,, 29700,NJBF000062205,6503 WINCHESTER AVE,Ventnor City,NJ,39.3389885,-74.484642,RES1,3001,,17,NE,1930,1930,3102,2,1,1067.219578,1067.219578,3505,NO,31.95,37.77,3,-0.92,6106,113.691149,123.457476,133.176906,139.735952,I,Above,Gable,0,5701,,34.85767691,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29701,NJBF000058704,18 S SWARTHMORE AVE,Ventnor City,NJ,39.3327793,-74.4905272,RES1,3001,,17,NE,1925,1925,3102,2,1,1646.564884,1646.564884,3505,NO,36.07,42.53,3,2.22,6106,113.646836,123.421947,133.134373,139.720142,I,Above,Gable,0,5701,,39.29752758,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29702,NJBF000058411,7305 ATLANTIC AVE,Ventnor City,NJ,39.3322615,-74.49112,RES1,3001,,18,NE,1930,1930,3102,3,1,1324.561369,1324.561369,3505,NO,46.73,56.19,3,2.63,6110,113.641017,123.417211,133.128944,139.715697,I,Above,Flat,0,5701,,51.46009306,0,0,,,,1,1,,0.35,nav,1,1930,3,, 29703,NJBF000061396,,Ventnor City,NJ,39.33756623,-74.49582833,RES1,3001,,NaN,NE,1969,0,3103,4,1,2585.816202,2585.816202,3505,NO,72.08,80.48,3,4.56,6106,113.463439,123.274193,132.982419,139.542419,I,Above,Hip,0,5701,,76.27889546,0,0,,,,1,1,,0.03,nav,1,1969,4,, 29704,NJBF000063373,412 CANTERBURY COURT,Ventnor City,NJ,39.34153611,-74.49321148,RES1,3001,,35,NE,1979,1979,3102,2,1,7297.926881,7297.926881,3505,NO,33.2,40.63,3,4.47,6106,113.467302,123.276533,132.987373,139.532174,I,Above,Flat,0,5701,,36.91917683,0,0,,,,1,1,,0.03,nav,1,1979,2,, 29705,NJBF000063230,5801 VENTNOR AVE,Ventnor City,NJ,39.34117797,-74.47694967,RES1,3001,,19,NE,1900,1900,3102,2,1,768.6948044,768.6948044,3505,NO,37.21,44.71,3,0.99,6106,113.831333,123.570622,133.298902,139.835434,I,Above,Hip,0,5701,,40.96034101,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 29706,NJBF000065303,325 N SOMERSET AVE,Ventnor City,NJ,39.34668051,-74.47936212,RES1,3001,,16,NE,1958,1958,3102,2,1,764.0576513,764.0576513,3505,NO,36.62,45.11,3,3.36,6106,113.705622,123.466988,133.192476,139.704082,I,Above,Gable,0,5701,,40.86463378,0,0,,,,1,1,,0.03,nav,1,1958,2,, 29707,NJBF000059517,6901 ATLANTIC AVE,Ventnor City,NJ,39.33438326,-74.48673285,RES1,3001,,18,NE,1985,1985,3102,3,1,1586.737532,1586.737532,3505,NO,52.11,59.83,3,-0.67,6110,113.708093,123.471464,133.188015,139.770918,I,Above,Flat,0,5701,,55.97256027,0,0,,,,1,1,,0.35,nav,1,1985,3,, 29708,NJBF000061813,130 N WISSAHICKON AVE,Ventnor City,NJ,39.33830201,-74.48916215,RES1,3001,,17,NE,1930,1930,3102,2,1,1214.331398,1214.331398,3505,NO,30.56,38.07,3,8.26,6106,113.600675,123.384554,133.099228,139.66187,I,Above,Gable,0,5701,,34.31754394,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29709,NJBF000061777,128 N WISSAHICKON AVE,Ventnor City,NJ,39.33824062,-74.48907708,RES1,3001,,17,NE,1930,1930,3102,2,1,817.7598666,817.7598666,3505,NO,24.31,35.57,3,-1.77,6106,113.603384,123.386747,133.1015,139.664478,I,Above,Flat,0,5701,,29.94184747,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29710,NJBF000063930,112 N OXFORD AVE,Ventnor City,NJ,39.34310558,-74.47786787,RES1,3001,,45,NE,1975,1975,3102,2,2,1292.570052,1292.570052,3505,NO,41.36,52.32,3,6.11,6106,113.785491,123.532979,133.260282,139.788378,I,Above,Gable,0,5701,,46.84213615,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29711,NJBF000063658,,Ventnor City,NJ,39.34232273,-74.47749786,RES1,3001,,NaN,NE,1910,0,3102,2,1,1215.90761,1215.90761,3505,NO,24.39,36.29,3,-0.66,6106,113.804023,123.548213,133.27592,139.807481,I,Above,Flat,0,5701,,30.33953623,0,0,,,,1,1,,0.03,nav,1,1910,2,, 29712,NJBF000061897,203 N ROSBOROUGH AVE,Ventnor City,NJ,39.33843269,-74.49033658,RES1,3001,,17,NE,1950,1950,3102,2,1,1778.949813,1778.949813,3505,NO,38.25,46.51,3,8.23,6106,113.572931,123.362179,133.075692,139.637095,I,Above,Gable,0,5701,,42.37546388,0,0.1,,,,1,1,,0.03,nav,1,1950,2,, 29713,NJBF000063703,6805 FULTON AVE,Ventnor City,NJ,39.34243946,-74.49400079,RES1,3001,,17,NE,1978,1978,3102,2,1,1732.246157,1732.246157,3505,NO,36.75,45.62,3,4.09,6106,113.437665,123.252452,132.962519,139.50251,I,Above,Gable,0,5701,,41.18640001,0,0,,,,1,1,,0.03,nav,1,1978,2,, 29714,NJBF000065391,503 N BURGHLEY AVE,Ventnor City,NJ,39.34693076,-74.48403339,RES1,3001,,17,NE,1960,1960,3101,1,1,1510.957804,1510.957804,3505,NO,20.17,31.44,3,1.12,6106,113.599097,123.380695,133.100806,139.616825,I,Above,Flat,0,5701,,25.80339721,0,0,,,,1,1,,0.03,nav,1,1960,1,, 29715,NJBF000060427,,Ventnor City,NJ,39.3359438,-74.49478896,RES1,3001,,NaN,NE,1918,0,3102,2,1,2281.012957,2281.012957,3505,NO,38.24,44.22,3,4.98,6106,113.508791,123.310784,133.019777,139.587678,I,Above,Gable,0,5701,,41.22697644,0,0,,,,1,1,,0.03,nav,1,1918,2,, 29716,NJBF000061650,114 N BUFFALO AVE,Ventnor City,NJ,39.33800862,-74.48815604,RES1,3001,,17,NE,1922,1922,3102,2,1,1033.506447,1033.506447,3505,NO,35.99,46.36,3,6.17,6106,113.626885,123.405728,133.121389,139.685855,I,Above,Gable,0,5701,,41.17627907,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 29717,NJBF000062478,6401 WINCHESTER AVE,Ventnor City,NJ,39.33955875,-74.48350196,RES1,3001,,17,NE,1910,1910,3102,1,1,1576.633982,1576.633982,3505,NO,13.07,21.08,3,1.75,6106,113.708587,123.471481,133.192193,139.747415,I,Above,Gable,0,5701,,17.07343234,0,1.1,,,,1,1,,0.03,nav,1,1910,1,, 29718,NJBF000062680,124 N NEWPORT AVE,Ventnor City,NJ,39.33999584,-74.48536936,RES1,3001,,17,NE,2009,2009,3102,3,1,1056.351391,1056.351391,3505,NO,56.42,67.58,3,1.04,6106,113.66148,123.433338,133.152076,139.706048,I,Above,Gable,0,5701,,62.00050307,0,0,,,,1,1,,0.03,nav,1,2009,3,, 29719,NJBF000065919,500 N SUFFOLK AVE,Ventnor City,NJ,39.34844008,-74.48043495,RES1,3001,,17,NE,1981,1981,3102,2,1,1741.937077,1741.937077,3507,NO,36.6,50.04,1,-0.57,6106,113.659127,123.428512,133.15259,139.656469,I,Above,Flat,0,5701,,43.31940038,0,0,,,,1,1,,0.03,nav,1,1981,2,, 29720,NJBF000059961,5 S ROSBOROUGH AVE,Ventnor City,NJ,39.33514756,-74.48767196,RES1,3001,,45,NE,1930,1930,3102,2,2,1921.96797,1921.96797,3505,NO,26.63,39.23,3,0.93,6106,113.676825,123.446217,133.161958,139.740654,I,Above,Gable,0,5701,,32.92720815,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29721,NJBF000059909,7 S ROSBOROUGH AVE,Ventnor City,NJ,39.33506411,-74.48762059,RES1,3001,,17,NE,1925,1925,3102,3,1,1921.239362,1921.239362,3505,NO,46.78,58.07,3,-1.34,6106,113.679109,123.448062,133.163839,139.742965,I,Above,Gable,0,5701,,52.42559208,0,0,,,,1,1,,0.03,nav,1,1925,3,, 29722,NJBF000064758,20 N NASHVILLE AVE,Ventnor City,NJ,39.34526635,-74.47067637,RES1,3001,,17,NE,1930,1930,3102,2,1,1674.49038,1674.49038,3507,NO,28.6,33.91,1,2.53,6106,113.915523,123.638111,133.374303,139.873949,I,Above,Hip,0,5701,,31.25264038,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29723,NJBF000066222,504 N SURREY AVE,Ventnor City,NJ,39.34922432,-74.4801503,RES1,3001,,17,NE,1990,1990,3102,2,1,1475.843713,1475.843713,3507,NO,24.23,31.36,1,0.97,6106,113.655337,123.425036,133.149359,139.648699,I,Above,Gable,0,5701,,27.79704393,0,0,,,,1,1,,0.03,nav,1,1990,2,, 29724,NJBF000060653,6706-08 VENTNOR AVE,Ventnor City,NJ,39.33635999,-74.48566684,RES1,3001,,NaN,NE,1920,1920,3102,2,4,1822.729621,1822.729621,3505,NO,28.49,34.55,3,1.26,6106,113.704349,123.468405,133.186416,139.759698,I,Above,Hip,0,5701,,31.52364398,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29725,NJBF000060621,3 S RICHARDS AVE,Ventnor City,NJ,39.3362885,-74.485607,RES1,3001,,17,NE,1940,1940,3102,1,1,1491.14651,1491.14651,3505,NO,18.05,31.39,3,4.04,6106,113.706645,123.470264,133.188326,139.761978,I,Above,Hip,0,5701,,24.71828731,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 29726,NJBF000063385,3 S SOMERSET AVE,Ventnor City,NJ,39.34157721,-74.47411229,RES1,3001,,18,NE,1938,1938,3102,2,1,2608.753752,2608.753752,3505,NO,26.44,31.82,3,1.05,6106,113.888508,123.617001,133.348718,139.876341,I,Above,Hip,0,5701,,29.12793652,0,1.2,,,,1,1,,0.03,nav,1,1938,2,, 29727,NJBF000064567,13 N HILLSIDE AVE,Ventnor City,NJ,39.34481234,-74.47075087,RES1,3001,,17,NE,1918,1918,3102,2,1,1584.807178,1584.807178,3507,NO,38.17,47.56,1,2.5,6106,113.919804,123.641732,133.377818,139.87992,I,Above,Hip,0,5701,,42.86254698,0,1.1,,,,1,1,,0.03,nav,1,1918,2,, 29728,NJBF000059489,27 N MARTINDALE AVE,Ventnor City,NJ,39.33434483,-74.49279368,RES1,3001,,17,NE,1925,1925,3102,2,1,1073.846424,1073.846424,3505,NO,35.87,49.11,3,4.85,6106,113.575022,123.364124,133.074714,139.651523,I,Above,Gable,0,5701,,42.49234158,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29729,NJBF000066094,515 N OXFORD AVE,Ventnor City,NJ,39.34889156,-74.48197211,RES1,3001,,17,NE,1963,1963,3102,1,1,1571.780089,1571.780089,3507,NO,11.92,19.47,1,1.05,6106,113.61931,123.396054,133.11829,139.621775,I,Above,Hip,0,5701,,15.69542564,0,0,,,,1,1,,0.03,nav,1,1963,1,, 29730,NJBF000065963,702 N CAMBRIDGE AVE,Ventnor City,NJ,39.34856064,-74.48765053,RES1,3001,,17,NE,1975,1975,3101,2,1,1727.616683,1727.616683,3505,NO,25.37,34.14,3,-0.14,6106,113.497804,123.298147,133.014094,139.523935,I,Above,Gable,0,5701,,29.75740027,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 29731,NJBF000061972,119 N RICHARDS AVE,Ventnor City,NJ,39.33856337,-74.48741188,RES1,3001,,17,NE,1920,1920,3102,2,1,1075.123856,1075.123856,3505,NO,31.56,39.92,3,-0.21,6106,113.635769,123.412821,133.129301,139.691109,I,Above,Gable,0,5701,,35.73877946,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29732,NJBF000065980,508 N SOMERSET AVE,Ventnor City,NJ,39.34860352,-74.48139515,RES1,3001,,17,NE,1975,1975,3102,2,1,1063.276386,1063.276386,3507,NO,24.89,35.17,1,1.09,6106,113.635784,123.409533,133.132473,139.636768,I,Above,Gable,0,5701,,30.02647336,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29733,NJBF000063014,110 S SURREY AVE,Ventnor City,NJ,39.34069954,-74.47140374,RES1,3001,,NaN,NE,1900,1900,3102,3,1,1726.933595,1726.933595,3505,NO,54,64.65,3,4.9,6106,113.959735,123.67512,133.410089,139.934308,I,Above,Hip,0,5701,,59.32864644,0,1.1,,,,1,1,,0.03,nav,1,1900,3,, 29734,NJBF000058831,7119 ATLANTIC AVE,Ventnor City,NJ,39.33302848,-74.48957653,RES1,3001,,18,NE,1920,1920,3102,2,1,2339.375261,2339.375261,3505,NO,30.77,44.07,3,8.85,6106,113.664281,123.436038,133.149446,139.735526,I,Above,Hip,0,5701,,37.41674403,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29735,NJBF000063275,207 N PORTLAND AVE,Ventnor City,NJ,39.34129826,-74.48450629,RES1,3001,,17,NE,2014,2014,3102,3,1,1389.073436,1389.073436,3505,NO,58.54,70.2,3,1.72,6106,113.663043,123.434322,133.154058,139.700582,I,Above,Gable,0,5701,,64.36999882,0,0,,,,1,1,,0.03,nav,1,2014,3,, 29736,NJBF000060074,115 N MARTINDALE AVE,Ventnor City,NJ,39.33535238,-74.49358989,RES1,3001,,17,NE,1925,1925,3102,2,1,1281.445135,1281.445135,3505,NO,38.08,45.15,3,0.88,6106,113.543467,123.338709,133.048724,139.620551,I,Above,Hip,0,5701,,41.61408999,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29737,NJBF000061133,103 N ROSBOROUGH AVE,Ventnor City,NJ,39.33711946,-74.48928062,RES1,3001,,17,NE,1920,1920,3102,1,1,1545.835186,1545.835186,3505,NO,19.52,31.86,3,8.7,6106,113.614217,123.395605,133.110029,139.678351,I,Above,Flat,0,5701,,25.68912022,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29738,NJBF000062621,105 N PORTLAND AVE,Ventnor City,NJ,39.33984785,-74.48334886,RES1,3001,,17,NE,1921,1921,3102,1,1,1367.056074,1367.056074,3505,NO,11.37,24.81,3,-0.68,6106,113.708067,123.471011,133.191914,139.745438,I,Above,Hip,0,5701,,18.09209648,0,1.1,,,,1,1,,0.03,nav,1,1921,1,, 29739,NJBF000062599,103 N PORTLAND AVE,Ventnor City,NJ,39.33978091,-74.48329157,RES1,3001,,17,NE,1921,1921,3102,1,1,1246.388439,1246.388439,3505,NO,22.96,30.12,3,4.64,6106,113.710228,123.472769,133.19373,139.747571,I,Above,Hip,0,5701,,26.54275063,0,0,,,,1,1,,0.03,nav,1,1921,1,, 29740,NJBF000060377,115 N WASHINGTON AVE,Ventnor City,NJ,39.33587894,-74.4932748,RES1,3001,,17,NE,1948,1948,3102,1,1,1870.797754,1870.797754,3505,NO,16.38,27.38,3,0.57,6106,113.543119,123.338412,133.0488,139.618901,I,Above,Hip,0,5701,,21.88072152,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 29741,NJBF000062437,6405 WINCHESTER AVE,Ventnor City,NJ,39.33945926,-74.48369766,RES1,3001,,17,NE,1900,1900,3102,2,1,1258.709677,1258.709677,3505,NO,30.03,39.27,3,-0.3,6106,113.705612,123.469092,133.189583,139.745497,I,Above,Gable,0,5701,,34.6510196,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 29742,NJBF000064512,4 S MARION AVE,Ventnor City,NJ,39.3446711,-74.46817609,RES1,3001,,17,NE,1902,1902,3102,3,1,1878.653616,1878.653616,3504,NO,39.09,45.05,-4,0,6106,113.97825,123.689464,133.428872,139.923894,I,Above,Gable,0,5701,,42.07004573,0,0,,,,1,1,,0.03,nav,1,1902,3,, 29743,NJBF000066434,600 N SUFFOLK AVE,Ventnor City,NJ,39.3497457,-74.48145066,RES1,3001,,17,NE,1972,1972,3102,2,1,1186.275562,1186.275562,3507,NO,27.49,32.58,1,-0.5,6106,113.619866,123.396035,133.11876,139.617106,I,Above,Flat,0,5701,,30.03683259,0,0,,,,1,1,,0.03,nav,1,1972,2,, 29744,NJBF000060452,14 S TROY AVE,Ventnor City,NJ,39.33599873,-74.48506288,RES1,3001,,17,NE,1906,1906,3102,2,1,1421.834114,1421.834114,3505,NO,32.35,38.34,3,-1.93,6106,113.722615,123.483182,133.201767,139.776911,I,Above,Hip,0,5701,,35.34660538,0,1.1,,,,1,1,,0.03,nav,1,1906,2,, 29745,NJBF000065929,507 N OXFORD AVE,Ventnor City,NJ,39.34847487,-74.48166294,RES1,3001,,17,NE,1975,1975,3102,2,1,1446.244269,1446.244269,3507,NO,33.99,43.82,1,1.12,6106,113.63152,123.406149,133.128794,139.634106,I,Above,Gable,0,5701,,38.90359353,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29746,NJBF000062281,125 N AVOLYN AVE,Ventnor City,NJ,39.33914364,-74.48643018,RES1,3001,,17,NE,1930,1930,3102,2,1,1103.795663,1103.795663,3505,NO,42.64,48.7,3,8.63,6106,113.649567,123.423869,133.141422,139.7002,I,Above,Hip,0,5701,,45.66965253,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29747,NJBF000066330,,Ventnor City,NJ,39.34948467,-74.47986008,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1951.483184,1951.483184,3505,NO,33.73,44.3,3,0.47,6106,113.658398,123.427376,133.152009,139.649555,I,Above,Gable,0,5701,,39.01514777,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29748,NJBF000062881,104 N HARVARD AVE,Ventnor City,NJ,39.3404285,-74.482094,RES1,3001,,17,NE,1962,1962,3102,2,1,709.3770783,709.3770783,3505,NO,40.79,50.3,3,7.45,6106,113.727945,123.486981,133.209311,139.758436,I,Above,Hip,0,5701,,45.54837113,0,0,,,,1,1,,0.03,nav,1,1962,2,, 29749,NJBF000061021,128 N LAFAYETTE AVE,Ventnor City,NJ,39.33692683,-74.49141298,RES1,3001,,17,NE,1956,1956,3102,1,1,1476.305014,1476.305014,3505,NO,16.08,28.22,3,3.29,6106,113.569781,123.359812,133.072115,139.639709,I,Above,Hip,0,5701,,22.15024285,0,0,,,,1,1,,0.03,nav,1,1956,1,, 29750,NJBF000060013,106 S NEW HAVEN AVE,Ventnor City,NJ,39.33524022,-74.48301232,RES1,3001,,17,NE,1925,1925,3102,2,1,1409.170141,1409.170141,3505,NO,40.4,52.88,3,8.22,6106,113.778222,123.528169,133.248798,139.827317,I,Above,Gable,0,5701,,46.6395428,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29751,NJBF000062447,116 N BRYANT AVE,Ventnor City,NJ,39.33948236,-74.48566632,RES1,3001,,17,NE,1908,1908,3102,2,1,1185.370938,1185.370938,3505,NO,37.35,47.97,3,-0.97,6106,113.661862,123.433739,133.152124,139.708943,I,Above,Flat,0,5701,,42.659314,0,1.1,,,,1,1,,0.03,nav,1,1908,2,, 29752,NJBF000065471,519 N CAMBRIDGE AVE,Ventnor City,NJ,39.34717137,-74.48597786,RES1,3001,,17,NE,1964,1964,3101,2,1,2124.998392,2124.998392,3505,NO,36.9,43.64,3,5.47,6106,113.552912,123.3433,133.06124,139.577457,I,Above,Gable,0,5701,,40.26909308,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 29753,NJBF000063884,113 N DORSET AVE,Ventnor City,NJ,39.34298772,-74.47902513,COM1,3001,,NaN,ME,1920,1920,3401,1,1,1588.541466,1588.541466,3507,NO,13.12,27.04,1,2.52,6106,113.761534,123.513585,133.23953,139.770347,I,Above,Gable,0,NaN,,20.08104193,0,0,,,,1,1,,0.03,nav,1,1920,1,, 29754,NJBF000066595,605 N SUFFOLK AVE,Ventnor City,NJ,39.35019356,-74.48130496,RES1,3001,,17,NE,1974,1974,3102,1,1,1494.815928,1494.815928,3507,NO,20.13,31.2,1,2.79,6106,113.617362,123.393751,133.116581,139.612388,I,Above,Hip,0,5701,,25.66553266,0,0,,,,1,1,,0.03,nav,1,1974,1,, 29755,NJBF000063464,203 N HARVARD AVE,Ventnor City,NJ,39.34179749,-74.48269667,RES1,3001,,17,NE,1925,1925,3102,2,2,1174.663229,1174.663229,3505,NO,38.75,47.31,3,2.6,6106,113.696323,123.4611,133.182837,139.725146,I,Above,Flat,0,5701,,43.02596221,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29756,NJBF000063039,405-407 N LAFAYETTE AVE,Ventnor City,NJ,39.34076534,-74.49475349,RES1,3001,,45,NE,1970,1970,3102,2,2,2169.531564,2169.531564,3505,NO,23.71,35.84,3,-1.91,6106,113.443563,123.257656,132.967031,139.514241,I,Above,Hip,0,5701,,29.77662924,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29757,NJBF000061894,5 S SACRAMENTO AVE,Ventnor City,NJ,39.33842951,-74.4807187,RES1,3001,,17,NE,1925,1925,3102,2,1,2193.553715,2193.553715,3505,NO,32.48,40.45,3,3.63,6106,113.785213,123.533645,133.257307,139.815685,I,Above,Hip,0,5701,,36.46474675,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29758,NJBF000063329,324-326 N WISSAHICKON AVE,Ventnor City,NJ,39.34142946,-74.49245901,RES1,3001,,45,NE,1974,1974,3102,2,2,2427.005266,2427.005266,3505,NO,34.18,39.69,3,2.12,6106,113.485395,123.291108,133.002676,139.54845,I,Above,Gable,0,5701,,36.93575193,0,0,,,,1,1,,0.03,nav,1,1974,2,, 29759,NJBF000063610,18 S VICTORIA AVE,Ventnor City,NJ,39.34218531,-74.47169491,RES1,3001,,17,NE,1900,1900,3102,2,1,1333.135159,1333.135159,3505,NO,36.49,47.55,3,-2.18,6106,113.933612,123.653599,133.38835,139.90617,I,Above,Hip,0,5701,,42.01669393,0,0,,,,1,1,,0.03,nav,1,1900,2,, 29760,NJBF000064349,218 N DORSET AVE,Ventnor City,NJ,39.34426866,-74.48063032,RES1,3001,,45,NE,1940,1940,3102,2,2,1655.984933,1655.984933,3505,NO,25.49,31.07,3,-0.67,6106,113.709191,123.470791,133.194892,139.721295,I,Above,Flat,0,5701,,28.28184497,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29761,NJBF000065503,516 N CORNWALL AVE,Ventnor City,NJ,39.34726757,-74.48573213,RES1,3001,,17,NE,1965,1965,3101,2,1,1374.277348,1374.277348,3505,NO,35.14,45.3,3,-1.72,6106,113.557098,123.346629,133.064828,139.580378,I,Above,Hip,0,5701,,40.22064671,0,0,,,,1,1,,0.03,nav,1,1965,2,, 29762,NJBF000063171,311 CANTERBURY COURT,Ventnor City,NJ,39.34104748,-74.49274349,RES1,3001,,35,NE,1979,1979,3102,2,1,7657.402524,7657.402524,3505,NO,41.69,47.28,3,8.16,6106,113.484257,123.290292,133.001582,139.549013,I,Above,Gable,0,5701,,44.48202308,0,0,,,,1,1,,0.03,nav,1,1979,2,, 29763,NJBF000064968,5507 CALVERT AVE,Ventnor City,NJ,39.34581384,-74.47851673,RES1,3001,,17,NE,1955,1955,3102,1,1,1029.069257,1029.069257,3505,NO,21.86,35.14,3,6.57,6106,113.735581,123.491621,133.218148,139.732972,I,Above,Flat,0,5701,,28.49870744,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 29764,NJBF000062725,228 N NEWARK AVE,Ventnor City,NJ,39.34008886,-74.49203546,RES1,3001,,17,NE,1965,1965,3102,1,1,1054.80364,1054.80364,3505,NO,19.81,26.55,3,8.12,6106,113.512879,123.313537,133.02549,139.577935,I,Above,Gable,0,5701,,23.17992725,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 29765,NJBF000065273,24 N JACKSON AVE,Ventnor City,NJ,39.34659844,-74.46734341,RES3A,3001,,17,NE,1935,1935,3301,2,1,1573.286023,1573.286023,3505,NO,28.36,38.06,3,0.32,6106,113.971473,123.683387,133.423939,139.907197,I,Above,Hip,0,5701,,33.20836051,0,0,,,,1,1,,0.03,nav,1,1935,2,, 29766,NJBF000059419,12 N WASHINGTON AVE,Ventnor City,NJ,39.33421066,-74.49238521,RES1,3001,,29,NE,1925,1925,3102,2,1,1844.11301,1844.11301,3505,NO,34.55,48.21,3,7.92,6106,113.585907,123.372891,133.083842,139.661714,I,Above,Hip,0,5701,,41.38202046,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29767,NJBF000064115,305 N HARVARD AVE,Ventnor City,NJ,39.34361894,-74.48399591,RES1,3001,,18,NE,2008,2008,3102,3,1,1366.681508,1366.681508,3505,NO,47.66,58.11,3,-1.25,6106,113.643404,123.417799,133.138125,139.671788,I,Above,Hip,0,5701,,52.8866858,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 29768,NJBF000063146,5909 WINCHESTER AVE,Ventnor City,NJ,39.34097884,-74.47854488,RES1,3001,,18,NE,1980,1980,3102,2,1,1890.324608,1890.324608,3505,NO,18.96,27.39,3,-2.65,6106,113.798843,123.544302,133.2707,139.811513,I,Above,Hip,0,5701,,23.17303545,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 29769,NJBF000059658,17 S ROSBOROUGH AVE,Ventnor City,NJ,39.33463143,-74.48723993,RES1,3001,,17,NE,1954,1954,3102,2,1,1606.140631,1606.140631,3505,YES,34.53,42.64,3,2.39,6110,113.693491,123.459674,133.175757,139.757173,I,Above,Hip,0,5701,,38.5887245,0,0,,,,1,1,,0.35,nav,1,1954,2,, 29770,NJBF000062622,120 N NEWPORT AVE,Ventnor City,NJ,39.33985063,-74.4852257,RES1,3001,,17,NE,1929,1929,3102,2,1,1106.142102,1106.142102,3505,NO,41.6,48.22,3,3.81,6106,113.666594,123.437495,133.156375,139.711062,I,Above,Flat,0,5701,,44.90932488,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 29771,NJBF000062643,122 N NEWPORT AVE,Ventnor City,NJ,39.33991437,-74.48531515,RES1,3001,,17,NE,1930,1930,3102,2,1,1452.911653,1452.911653,3505,NO,37.67,45.99,3,8.69,6106,113.663778,123.43521,133.154,139.708387,I,Above,Gable,0,5701,,41.82998095,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29772,NJBF000060811,8 N BUFFALO AVE,Ventnor City,NJ,39.33657483,-74.48702372,RES1,3001,,17,NE,1940,1940,3102,1,1,1635.196709,1635.196709,3505,NO,18.88,26.64,3,4.96,6106,113.671477,123.441844,133.158481,139.730471,I,Above,Hip,0,5701,,22.75998563,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 29773,NJBF000061835,113 N RICHARDS AVE,Ventnor City,NJ,39.33834422,-74.48725205,RES1,3001,,17,NE,1930,1930,3102,2,1,1221.794704,1221.794704,3505,NO,20.23,26.03,3,-2.43,6106,113.64228,123.418105,133.134729,139.697676,I,Above,Gable,0,5701,,23.1305965,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29774,NJBF000066110,505 N SUFFOLK AVE,Ventnor City,NJ,39.34893143,-74.48029156,RES1,3001,,17,NE,1975,1975,3102,2,1,1369.5075,1369.5075,3507,NO,29.19,39.67,1,0.61,6106,113.655963,123.425699,133.149889,139.650975,I,Above,Gable,0,5701,,34.43054298,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29775,NJBF000063551,2 S SUFFOLK AVE,Ventnor City,NJ,39.34202928,-74.47375365,RES1,3001,,18,NE,1985,1985,3102,2,1,1957.826858,1957.826858,3505,NO,24.72,31.78,3,1.21,6106,113.890385,123.618441,133.35063,139.874994,I,Above,Gable,0,5701,,28.25379782,0,0,,,,1,1,,0.03,nav,1,1985,2,, 29776,NJBF000061335,122 N ROSBOROUGH AVE,Ventnor City,NJ,39.33746461,-74.49010608,RES1,3001,,17,NE,1900,1900,3102,3,1,1257.45132,1257.45132,3505,NO,29.79,36.8,3,-1.97,6106,113.591262,123.377068,133.090713,139.656867,I,Above,Hip,0,5701,,33.29577127,0,1.1,,,,1,1,,0.03,nav,1,1900,3,, 29777,NJBF000059579,19 S ROSBOROUGH AVE,Ventnor City,NJ,39.33449122,-74.48712335,RES1,3001,,NaN,NE,1989,1989,3102,2,1,4067.110435,4067.110435,3505,NO,38.27,50.72,3,5.08,6110,113.698006,123.463319,133.179493,139.761645,I,Above,Flat,0,5701,,44.49726429,0,0,,,,1,1,,0.35,nav,1,1989,2,, 29778,NJBF000063508,,Ventnor City,NJ,39.34189433,-74.46891999,RES1,3001,,NaN,NE,1900,0,3102,2,1,1293.475818,1293.475818,3505,NO,22.41,31.06,3,-1.45,6106,113.998445,123.706514,133.444758,139.955297,I,Above,Hip,0,5701,,26.73411017,0,0,,,,1,1,,0.03,nav,1,1900,2,, 29779,NJBF000063575,108 S AMHERST AVE,Ventnor City,NJ,39.34208881,-74.4688276,RES1,3001,,17,NE,1916,1916,3102,3,1,1683.330149,1683.330149,3505,NO,37.85,47.24,3,1.09,6106,113.997885,123.706026,133.444407,139.953728,I,Above,Hip,0,5701,,42.54553613,0,1.1,,,,1,1,,0.03,nav,1,1916,3,, 29780,NJBF000060730,6501 ATLANTIC AVE,Ventnor City,NJ,39.33646082,-74.48252539,RES1,3001,,18,NE,1981,1981,3102,3,1,1839.006007,1839.006007,3505,NO,57.6,65,3,0.71,6106,113.772208,123.523271,133.244649,139.816062,I,Above,Flat,0,5701,,61.29953706,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, 29781,NJBF000060358,5 N ROSBOROUGH AVE,Ventnor City,NJ,39.33583507,-74.48822302,RES1,3001,,45,NE,1966,1966,3102,2,2,2056.265031,2056.265031,3505,NO,32.16,37.67,3,7.04,6106,113.655203,123.428747,133.144049,139.719139,I,Above,Gable,0,5701,,34.91511859,0,0,,,,1,1,,0.03,nav,1,1966,2,, 29782,NJBF000065133,328 N OXFORD AVE,Ventnor City,NJ,39.34621504,-74.48034822,RES1,3001,,19,NE,1945,2018,3102,2,1,919.3729145,919.3729145,3505,NO,39.44,46.43,3,2.46,6106,113.689911,123.454455,133.178817,139.694388,I,Above,Hip,0,5701,,42.93568723,0,0,,,,1,1,,0.03,nav,1,1945,2,, 29783,NJBF000066224,504 N VICTORIA AVE,Ventnor City,NJ,39.3492292,-74.47930869,RES3A,3001,,17,NE,1980,1980,3301,1,1,2359.131654,2359.131654,3505,NO,11.22,23.09,3,-0.01,6106,113.673862,123.440043,133.165363,139.663423,I,Above,Hip,0,5701,,17.15206601,0,0,,,,1,1,,0.03,nav,1,1980,1,, 29784,NJBF000060200,7311 MONMOUTH AVE,Ventnor City,NJ,39.3355751,-74.49455526,RES1,3001,,17,NE,1947,1947,3102,2,1,1475.504959,1475.504959,3505,NO,36.6,49.2,3,3.83,6106,113.519072,123.31907,133.028225,139.597891,I,Above,Gable,0,5701,,42.89911887,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 29785,NJBF000065077,5403 CALVERT AVE,Ventnor City,NJ,39.3460785,-74.47796174,RES1,3001,,17,NE,1962,1962,3102,1,1,1764.184088,1764.184088,3505,NO,21.18,27.54,3,3.03,6106,113.744387,123.498661,133.225836,139.738285,I,Above,Gable,0,5701,,24.35880457,0,0,,,,1,1,,0.03,nav,1,1962,1,, 29786,NJBF000065235,21 N VASSAR SQUARE,Ventnor City,NJ,39.34647592,-74.46754372,RES3A,3001,,18,NE,1922,1922,3301,2,1,1389.946351,1389.946351,3505,NO,34.38,47.11,3,8.74,6106,113.968638,123.681108,133.421392,139.905855,I,Above,Hip,0,5701,,40.74420577,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 29787,NJBF000061635,6701 WINCHESTER AVE,Ventnor City,NJ,39.337992,-74.4867045,RES1,3001,,17,NE,1950,1950,3102,2,1,1352.461583,1352.461583,3505,NO,35.03,45.05,3,1,6106,113.659147,123.431762,133.148914,139.71371,I,Above,Gable,0,5701,,40.04175416,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29788,NJBF000063650,6100 MONMOUTH AVE,Ventnor City,NJ,39.34230391,-74.48090164,RES1,3001,,17,NE,1970,1970,3102,2,1,1841.891417,1841.891417,3505,NO,29.26,40.13,3,-0.25,6106,113.729194,123.487569,133.211337,139.748745,I,Above,Flat,0,5701,,34.6941889,0,0,,,,1,1,,0.03,nav,1,1970,2,, 29789,NJBF000061438,6416 VENTNOR AVE,Ventnor City,NJ,39.33762863,-74.48279869,COM1,3001,,NaN,ME,1960,1920,3401,2,4,16482.09518,16482.09518,3507,NO,29.17,39.98,1,2.89,6106,113.750241,123.505416,133.226675,139.791884,I,Above,Flat,0,NaN,,34.57683114,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29790,NJBF000060596,108 S PORTLAND AVE,Ventnor City,NJ,39.33625487,-74.48089656,RES1,3001,,17,NE,1900,1900,3102,3,1,1685.937871,1685.937871,3505,NO,40.71,53.33,3,-0.53,6106,113.810875,123.554587,133.277717,139.848423,I,Above,Hip,0,5701,,47.02094219,0,0,,,,1,1,,0.03,nav,1,1900,3,, 29791,NJBF000061285,106 S CAMBRIDGE AVE,Ventnor City,NJ,39.3373785,-74.4789305,RES1,3001,,17,NE,1930,1930,3102,2,2,2067.350958,2067.350958,3505,NO,36.5,41.95,3,-0.98,6106,113.838856,123.57721,133.302739,139.863898,I,Above,Gable,0,5701,,39.22329246,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29792,NJBF000062396,2 S CORNWALL AVE,Ventnor City,NJ,39.33935784,-74.47925862,RES1,3001,,18,NE,1922,1922,3102,3,1,1523.221439,1523.221439,3505,NO,47.05,55.66,3,1.46,6106,113.804854,123.549444,133.274868,139.825795,I,Above,Hip,0,5701,,51.35664679,0,1.2,,,,1,1,,0.03,nav,1,1922,3,, 29793,NJBF000062671,1 N CORNWALL AVE,Ventnor City,NJ,39.3399746,-74.47920585,RES1,3001,,18,NE,1923,1923,3102,3,1,2087.102058,2087.102058,3505,NO,40.72,48.38,3,2.96,6106,113.797724,123.543573,133.269122,139.816586,I,Above,Hip,0,5701,,44.54911758,0,1.2,,,,1,1,,0.03,nav,1,1923,3,, 29794,NJBF000062792,1 N CORNWALL AVE,Ventnor City,NJ,39.34023511,-74.47924761,RES1,3001,,18,NE,1923,1923,3102,3,1,1307.969848,1307.969848,3505,NO,65.14,75.94,3,8.99,6106,113.793309,123.539951,133.265476,139.811596,I,Above,Hip,0,5701,,70.53978454,0,1.2,,,,1,1,,0.03,nav,1,1923,3,, 29795,NJBF000062612,2 S DERBY AVE,Ventnor City,NJ,39.33981061,-74.4783445,RES1,3001,,17,NE,1900,1900,3102,2,1,1798.136098,1798.136098,3505,NO,25.64,39.04,3,1.65,6106,113.818898,123.560766,133.28729,139.834046,I,Above,Flat,0,5701,,32.34137925,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 29796,NJBF000060146,17 S BUFFALO AVE,Ventnor City,NJ,39.33547719,-74.48565923,RES1,3001,,17,NE,1948,1948,3102,2,1,1576.875118,1576.875118,3505,NO,34.05,42.16,3,7.23,6106,113.716656,123.478381,133.196251,139.7741,I,Above,Hip,0,5701,,38.10441685,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 29797,NJBF000064473,305 N DERBY AVE,Ventnor City,NJ,39.34457563,-74.4812762,RES1,3001,,19,NE,1930,2018,3102,2,1,1363.151832,1363.151832,3505,NO,38.78,45.16,3,0.67,6106,113.690881,123.455865,133.179221,139.704842,I,Above,Flat,0,5701,,41.96942614,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29798,NJBF000061717,6417 VENTNOR AVE,Ventnor City,NJ,39.33813946,-74.48305237,COM1,3001,100,NaN,ME,1920,1920,3401,1,1,8996.412523,8996.412523,3507,NO,14.63,22.29,1,1.06,6106,113.737733,123.495246,133.216297,139.778918,I,Above,Flat,0,NaN,,18.4566737,0,0,,,,1,1,,0.03,nav,1,1920,1,, 29799,NJBF000063727,6803 FULTON AVE,Ventnor City,NJ,39.34252112,-74.49380753,RES1,3001,,17,NE,1978,1978,3102,2,1,1362.936389,1362.936389,3505,NO,26.32,31.72,3,1.05,6106,113.440842,123.254978,132.965228,139.504955,I,Above,Hip,0,5701,,29.01813049,0,0,,,,1,1,,0.03,nav,1,1978,2,, 29800,NJBF000065140,7 N VASSAR SQUARE,Ventnor City,NJ,39.3462503,-74.46734855,RES3A,3001,,45,NE,1930,1930,3301,2,2,1585.529957,1585.529957,3505,NO,24.87,30.87,3,2.44,6106,113.975853,123.687074,133.427614,139.912541,I,Above,Hip,0,5701,,27.87154677,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29801,NJBF000066012,613 N CORNWALL AVE,Ventnor City,NJ,39.34868224,-74.48632558,RES1,3001,,17,NE,1995,1995,3101,1,1,2243.582403,2243.582403,3505,NO,18.65,28.59,3,3.05,6106,113.525609,123.320492,133.03786,139.546373,I,Above,Hip,0,5701,,23.6225483,0,1.1,,,,1,1,,0.03,nav,1,1995,1,, 29802,NJBF000060786,21 N ROSBOROUGH AVE,Ventnor City,NJ,39.33654706,-74.48880541,RES1,3001,,45,NE,1935,1935,3102,2,1,2011.531732,2011.531732,3505,NO,41.89,53.62,3,8.74,6106,113.632571,123.410451,133.125275,139.696616,I,Above,Flat,0,5701,,47.75950031,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 29803,NJBF000066868,803 N DERBY AVE,Ventnor City,NJ,39.35107699,-74.48649847,RES1,3001,,17,NE,1977,1977,3101,2,1,1950.733544,1950.733544,3505,NO,27.09,38.09,3,3.61,6106,113.491064,123.291181,133.007938,139.504098,I,Above,Flat,0,5701,,32.58823127,0,0,,,,1,1,,0.03,nav,1,1977,2,, 29804,NJBF000061725,301 & 303 WINDSOR DR,Ventnor City,NJ,39.33815192,-74.49344711,RES1,3001,,45,NE,1980,1980,3102,2,2,2317.780278,2317.780278,3505,NO,37.05,44.69,3,6.2,6106,113.508035,123.309976,133.020459,139.580658,I,Above,Hip,0,5701,,40.86863164,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29805,NJBF000062637,229 N ROSBOROUGH AVE,Ventnor City,NJ,39.33989711,-74.49214907,RES1,3001,,17,NE,1947,1947,3102,1,1,917.3477896,917.3477896,3505,NO,15.8,24.73,3,-0.3,6106,113.51296,123.313642,133.025477,139.578758,I,Above,Hip,0,5701,,20.26419019,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 29806,NJBF000061819,324-326 WALDON DRIVE,Ventnor City,NJ,39.33830951,-74.49534008,RES1,3001,,NaN,NE,1985,1985,3102,2,1,1296.056365,1296.056365,3505,NO,27.14,41.6,3,0.85,6106,113.464013,123.274559,132.983291,139.540765,I,Above,Gable,0,5701,,34.37095666,0,0,,,,1,1,,0.03,nav,1,1985,2,, 29807,NJBF000062173,105 S DORSET AVE,Ventnor City,NJ,39.33892229,-74.47579406,RES1,3001,,17,NE,1930,1930,3102,2,1,2728.531464,2728.531464,3505,NO,41.44,48.26,3,8.9,6106,113.887015,123.61617,133.345572,139.891304,I,Above,Hip,0,5701,,44.84819791,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29808,NJBF000061663,307 WALDON DRIVE,Ventnor City,NJ,39.33803498,-74.49450519,RES1,3001,,17,NE,1977,1977,3102,2,1,1390.368209,1390.368209,3505,NO,28.68,38.72,3,5.38,6106,113.486248,123.29247,133.001952,139.561548,I,Above,Gable,0,5701,,33.69730655,0,1.1,,,,1,1,,0.03,nav,1,1977,2,, 29809,NJBF000063225,127 N SACRAMENTO AVE,Ventnor City,NJ,39.34117093,-74.48296583,RES1,3001,,27,NE,1925,1925,3102,2,1,1905.360377,1905.360377,3505,NO,32.94,41.1,3,-1.36,6106,113.698751,123.463212,133.184624,139.730602,I,Above,Gable,0,5701,,37.0170044,0,0,,,,1,1,,0.03,nav,1,1925,2,, 29810,NJBF000058767,14 S WASHINGTON AVE,Ventnor City,NJ,39.33289657,-74.49131887,RES1,3001,,17,NE,1925,1925,3102,3,1,1286.066541,1286.066541,3505,NO,51.33,64.27,3,-1.01,6106,113.627741,123.406554,133.118245,139.702483,I,Above,Hip,0,5701,,57.8040968,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 29811,NJBF000058824,12 S WASHINGTON AVE,Ventnor City,NJ,39.33299095,-74.4913905,RES1,3001,,18,NE,1930,1930,3102,2,1,907.9586536,907.9586536,3505,NO,41.09,48.3,3,8.56,6106,113.624862,123.404239,133.115883,139.699681,I,Above,Hip,0,5701,,44.69392124,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29812,NJBF000065274,409 N DORSET AVE,Ventnor City,NJ,39.34660095,-74.48190235,RES1,3001,,17,NE,1948,1948,3102,1,1,1038.180839,1038.180839,3505,NO,23.22,37.2,3,8.44,6106,113.650533,123.422421,133.144966,139.660521,I,Above,Hip,0,5701,,30.21037141,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 29813,NJBF000063280,6303 MONMOUTH AVE,Ventnor City,NJ,39.34130308,-74.48358974,RES1,3001,,16,NE,1920,1920,3102,2,1,1302.138463,1302.138463,3505,NO,29.1,34.6,3,6.07,6106,113.683207,123.450615,133.171348,139.717165,I,Above,Gable,0,5701,,31.85112501,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29814,NJBF000062904,352-354 HAMPSHIRE DR,Ventnor City,NJ,39.34046434,-74.49202542,RES1,3001,,45,NE,1972,1972,3102,2,2,1979.651412,1979.651412,3505,NO,30.6,41.97,3,-1.24,6106,113.508024,123.309549,133.021524,139.572186,I,Above,Gable,0,5701,,36.28841768,0,0,,,,1,1,,0.03,nav,1,1972,2,, 29815,NJBF000064937,318 N OXFORD AVE,Ventnor City,NJ,39.34571614,-74.4799371,RES1,3001,,16,NE,1946,1946,3102,2,1,856.4524104,856.4524104,3505,NO,35.57,48.66,3,1.87,6106,113.705507,123.467285,133.192149,139.709782,I,Above,Gable,0,5701,,42.11229708,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 29816,NJBF000059244,8 N MARTINDALE AVE,Ventnor City,NJ,39.33384749,-74.492847,RES1,3001,,17,NE,1926,1926,3102,2,1,1177.115508,1177.115508,3505,NO,43.05,55.54,3,6.57,6106,113.580794,123.368763,133.079208,139.657817,I,Above,Hip,0,5701,,49.29790481,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 29817,NJBF000064810,16 N AUSTIN AVE,Ventnor City,NJ,39.34538797,-74.46925553,RES1,3001,,17,NE,1920,1920,3102,2,1,1072.172755,1072.172755,3507,NO,26.02,38.26,1,1.13,6106,113.945157,123.662252,133.400276,139.895183,I,Above,Hip,0,5701,,32.13920279,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29818,NJBF000064772,14 N AUSTIN AVE,Ventnor City,NJ,39.34529137,-74.46918905,RES1,3001,,17,NE,1925,1925,3102,2,1,1005.796225,1005.796225,3507,NO,36.14,49.99,1,0.71,6106,113.947894,123.664514,133.402622,139.897799,I,Above,Hip,0,5701,,43.06523912,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29819,NJBF000062948,108 N HARVARD AVE,Ventnor City,NJ,39.34055855,-74.48219183,RES1,3001,,17,NE,1945,1945,3102,2,1,1474.936931,1474.936931,3505,NO,23.19,31.89,3,-0.22,6106,113.724038,123.483795,133.206025,139.754547,I,Above,Flat,0,5701,,27.53981809,0,0,,,,1,1,,0.03,nav,1,1945,2,, 29820,NJBF000059956,11 S NEWARK AVE,Ventnor City,NJ,39.33514136,-74.48682853,RES1,3001,,17,NE,1930,1930,3102,2,1,2329.82745,2329.82745,3505,NO,25.92,40.89,3,4.45,6106,113.695502,123.461297,133.177897,139.757083,I,Above,Hip,0,5701,,33.40473338,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29821,NJBF000064340,5113 VENTNOR AVE,Ventnor City,NJ,39.34425479,-74.47019508,RES1,3001,,NaN,NE,1920,1920,3102,2,3,1389.328122,1389.328122,3507,NO,26.52,38.88,1,-0.96,6106,113.939323,123.657796,133.394574,139.897793,I,Above,Hip,0,5701,,32.69960791,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29822,NJBF000062652,8 S DORSET AVE,Ventnor City,NJ,39.33992246,-74.47718322,RES1,3001,,18,NE,1920,1920,3102,2,1,2220.439006,2220.439006,3505,NO,40.84,50.05,3,5.14,6106,113.843002,123.580306,133.308194,139.851939,I,Above,Hip,0,5701,,45.44156111,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 29823,NJBF000066965,806 N DORSET AVE,Ventnor City,NJ,39.35147763,-74.48648767,RES1,3001,,17,NE,1975,1975,3101,1,1,1824.868469,1824.868469,3505,NO,9.67,20.47,3,-2.86,6106,113.486179,123.286974,133.003659,139.497735,I,Above,Flat,0,5701,,15.06906769,0,0,,,,1,1,,0.03,nav,1,1975,1,, 29824,NJBF000058691,7110 ATLANTIC AVE,Ventnor City,NJ,39.33276577,-74.48906939,RES1,3001,,17,NE,1920,1920,3102,2,1,1661.564478,1661.564478,3505,NO,24.52,30.52,3,3.26,6110,113.679126,123.448002,133.161849,139.74958,I,Above,Gable,0,5701,,27.51986197,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 29825,NJBF000060678,15 S AVOLYN AVE,Ventnor City,NJ,39.33638719,-74.48420618,RES1,3001,,29,NE,1921,1921,3102,2,1,1692.118917,1692.118917,3505,NO,39.61,52.3,3,1.41,6106,113.736182,123.494133,133.21369,139.786561,I,Above,Hip,0,5701,,45.95545247,0,0,,,,1,1,,0.03,nav,1,1921,2,, 29826,NJBF000065560,517 N CORNWALL AVE,Ventnor City,NJ,39.34746396,-74.48533217,RES1,3001,,17,NE,1956,1956,3101,2,1,1280.302844,1280.302844,3505,NO,26.72,36.68,3,4.2,6106,113.563408,123.351624,133.07024,139.584484,I,Above,Gable,0,5701,,31.69999645,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 29827,NJBF000066257,709 N CAMBRIDGE AVE,Ventnor City,NJ,39.34931296,-74.4877168,RES1,3001,,17,NE,1968,1968,3101,1,1,1534.344557,1534.344557,3505,NO,23.9,32.49,3,6.15,6106,113.486635,123.288716,133.004472,139.510444,I,Above,Hip,0,5701,,28.19546071,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 29828,NJBF000059178,4 N MARTINDALE AVE,Ventnor City,NJ,39.33370802,-74.49270454,RES1,3001,,17,NE,1940,1940,3102,3,1,1218.94464,1218.94464,3505,NO,62.14,73.9,3,6.17,6106,113.585865,123.372843,133.083394,139.662717,I,Above,Gable,0,5701,,68.01979229,0,1.2,,,,1,1,,0.03,nav,1,1940,3,, 29829,NJBF000067054,709 N SURREY AVE,Ventnor City,NJ,39.35188117,-74.4817921,RES3A,3001,,27,NE,1980,1980,3301,2,1,846.6400888,846.6400888,3505,NO,44.25,50.95,3,6.62,6106,113.585113,123.366608,133.088573,139.576168,I,Above,Gable,0,5701,,47.59981698,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29830,NJBF000063886,603 KINGSLEY DRIVE,Ventnor City,NJ,39.34299319,-74.49348886,RES1,3001,,17,NE,1980,1980,3102,1,1,2083.304518,2083.304518,3505,NO,20.28,34.25,3,6.49,6106,113.441593,123.255427,132.965965,139.503626,I,Above,Hip,0,5701,,27.26432431,0,0,,,,1,1,,0.03,nav,1,1980,1,, 29831,NJBF000064437,10 N HILLSIDE AVE,Ventnor City,NJ,39.34448984,-74.47097137,RES1,3001,,17,NE,1928,1928,3102,1,1,1658.599642,1658.599642,3507,NO,10.95,24.71,1,-0.28,6106,113.919179,123.64131,133.377107,139.881428,I,Above,Hip,0,5701,,17.83105663,0,0,,,,1,1,,0.03,nav,1,1928,1,, 29832,NJBF000061589,6207 OCEAN AVE,Ventnor City,NJ,39.3379087,-74.48031974,RES1,3001,,17,NE,1902,1902,3102,3,1,1885.313771,1885.313771,3505,NO,59.34,70.62,3,2.31,6106,113.801063,123.546536,133.270576,139.831239,I,Above,Flat,0,5701,,64.9802753,0,1.1,,,,1,1,,0.03,nav,1,1902,3,, 29833,NJBF000061416,112 N NEWARK AVE,Ventnor City,NJ,39.33760228,-74.48932642,RES1,3001,,17,NE,1940,1940,3102,2,2,1461.301144,1461.301144,3505,NO,34.16,42.18,3,1.67,6106,113.606611,123.389425,133.103861,139.669835,I,Above,Gable,0,5701,,38.16957228,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29834,NJBF000064773,7 S VASSAR SQUARE,Ventnor City,NJ,39.34529237,-74.46657239,RES3B,3001,,17,ME,1920,1920,3301,2,1,1340.94605,1340.94605,3504,NO,21.14,32.66,-4,0,6106,114.005371,123.711475,133.453023,139.939953,I,Above,Hip,0,NaN,,26.89828409,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29835,NJBF000060096,7 N LAFAYETTE AVE,Ventnor City,NJ,39.33540329,-74.4896534,RES1,3001,,17,NE,1945,1945,3102,1,1,1864.371962,1864.371962,3505,NO,17.29,25.51,3,6.17,6106,113.629624,123.408126,133.12193,139.697938,I,Above,Flat,0,5701,,21.40143535,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 29836,NJBF000061673,119 N WISSAHICKON AVE,Ventnor City,NJ,39.3380448,-74.48847298,RES1,3001,,17,NE,1922,1922,3102,2,1,1201.878092,1201.878092,3505,NO,34.59,41.72,3,-1.03,6106,113.619395,123.399682,133.115025,139.679208,I,Above,Flat,0,5701,,38.15302253,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 29837,NJBF000062577,6004 VENTNOR AVE,Ventnor City,NJ,39.33974781,-74.47852644,RES1,3001,,17,NE,1920,1920,3102,3,1,2125.891033,2125.891033,3505,NO,36.22,46.38,3,0.49,6106,113.815757,123.558228,133.284536,139.831985,I,Above,Hip,0,5701,,41.3015695,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 29838,NJBF000063015,,Ventnor City,NJ,39.34070619,-74.48480082,RES1,3001,,NaN,NE,1929,0,3102,2,1,4019.952781,4019.952781,3505,NO,33.17,39.25,3,-1.46,6106,113.664468,123.435607,133.154997,139.704886,I,Above,Gable,0,5701,,36.21060552,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29839,NJBF000064612,,Ventnor City,NJ,39.34490018,-74.4762117,RES1,3001,,NaN,NE,2006,0,3102,2,1,1960.374939,1960.374939,3507,NO,33.33,40.33,1,-0.5,6106,113.798389,123.542911,133.272213,139.787475,I,Above,Hip,0,5701,,36.82992456,0,0,,,,1,1,,0.03,nav,1,2006,2,, 29840,NJBF000063711,106 S NASHVILLE AVE,Ventnor City,NJ,39.34247275,-74.46839529,RES3B,3001,,17,E,1920,1920,3303,3,1,2031.512936,2031.512936,3504,NO,45.88,59.25,-4,0,6106,114.002318,123.709582,133.448558,139.954648,I,Above,Hip,0,NaN,,52.56164404,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 29841,NJBF000065092,,Ventnor City,NJ,39.34611832,-74.48305821,RES1,3001,,NaN,NE,1969,0,3102,2,1,1736.578579,1736.578579,3505,NO,44.54,50.84,3,8.23,6106,113.631272,123.407055,133.128324,139.647738,I,Above,Flat,0,5701,,47.68988606,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29842,NJBF000061660,122 N WISSAHICKON AVE,Ventnor City,NJ,39.33802375,-74.48893421,RES1,3001,,17,NE,1930,1930,3102,2,1,1681.30497,1681.30497,3505,NO,23.71,35.88,3,-0.11,6106,113.609502,123.391707,133.106582,139.670689,I,Above,Flat,0,5701,,29.79710425,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29843,NJBF000064423,315 N CAMBRIDGE AVE,Ventnor City,NJ,39.34445337,-74.48378184,RES1,3001,,17,NE,1958,1958,3102,1,1,1575.539348,1575.539348,3505,NO,22.31,29.74,3,3.96,6106,113.637117,123.412432,133.132976,139.661983,I,Above,Hip,0,5701,,26.02869035,0,0,,,,1,1,,0.03,nav,1,1958,1,, 29844,NJBF000059396,10 S LAFAYETTE AVE,Ventnor City,NJ,39.33417234,-74.48919387,RES1,3001,,17,NE,1920,1920,3102,2,1,1547.631295,1547.631295,3505,NO,34.71,40.49,3,-0.98,6106,113.656793,123.430045,133.144075,139.725917,I,Above,Hip,0,5701,,37.59806016,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29845,NJBF000062451,6115 VENTNOR AVE,Ventnor City,NJ,39.33948826,-74.48010862,RES1,3001,,17,NE,1920,1920,3102,3,1,2055.539778,2055.539778,3505,NO,58.65,65.48,3,0.55,6106,113.784372,123.532827,133.257299,139.808932,I,Above,Hip,0,5701,,62.06555831,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 29846,NJBF000062830,111 S SUFFOLK AVE,Ventnor City,NJ,39.34031833,-74.47184717,RES1,3001,,17,NE,1920,1920,3102,3,1,2221.97485,2221.97485,3505,NO,49.02,60.38,3,3.96,6106,113.955095,123.671389,133.405761,139.933213,I,Above,Flat,0,5701,,54.69799623,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 29847,NJBF000059225,7 N MARTINDALE AVE,Ventnor City,NJ,39.33380831,-74.49236032,RES1,3001,,45,NE,1908,1908,3102,2,2,1302.382802,1302.382802,3505,NO,39.58,45.31,3,6.23,6106,113.592075,123.37785,133.088746,139.668181,I,Above,Gable,0,5701,,42.44411816,0,1.2,,,,1,1,,0.03,nav,1,1908,2,, 29848,NJBF000064850,5510 CALVERT AVE,Ventnor City,NJ,39.34547908,-74.47846384,RES1,3001,,45,NE,1929,1929,3102,2,2,1336.049654,1336.049654,3505,NO,36.37,46.47,3,-1.57,6106,113.741129,123.496245,133.222845,139.739359,I,Above,Flat,0,5701,,41.42036604,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29849,NJBF000062771,5701 ATLANTIC AVE,Ventnor City,NJ,39.34019208,-74.47482865,RES1,3001,,18,NE,1897,1897,3102,3,1,2513.567803,2513.567803,3505,NO,54.79,68.13,3,3.08,6110,113.891202,123.619418,133.350131,139.886765,I,Above,Hip,0,5701,,61.45892386,0,1.2,,,,1,1,,0.35,nav,1,1897,3,, 29850,NJBF000059721,102 N MARTINDALE AVE,Ventnor City,NJ,39.3347345,-74.4935535,RES1,3001,,17,NE,1930,1930,3102,2,1,788.029526,788.029526,3505,NO,36.79,42.33,3,-0.88,6106,113.552831,123.346256,133.056204,139.630484,I,Above,Flat,0,5701,,39.55818698,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29851,NJBF000060073,4 N WYOMING AVE,Ventnor City,NJ,39.33535203,-74.48927964,RES1,3001,,45,NE,1940,1940,3102,2,3,2074.913303,2074.913303,3505,NO,37.24,45.86,3,-1.47,6106,113.638555,123.415331,133.129495,139.706057,I,Above,Hip,0,5701,,41.54884226,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29852,NJBF000062338,219 N ROSBOROUGH AVE,Ventnor City,NJ,39.33924779,-74.49154168,RES1,3001,,17,NE,1960,1960,3102,1,1,1404.297919,1404.297919,3505,NO,21.41,32.72,3,4.72,6106,113.535198,123.331663,133.044054,139.600815,I,Above,Hip,0,5701,,27.06435883,0,0,,,,1,1,,0.03,nav,1,1960,1,, 29853,NJBF000062877,103 N SACRAMENTO AVE,Ventnor City,NJ,39.3404145,-74.4823205,RES1,3001,,17,NE,1925,1925,3102,2,1,1145.498693,1145.498693,3505,NO,31,37.27,3,-0.76,6106,113.723124,123.483084,133.205161,139.754611,I,Above,Hip,0,5701,,34.13693866,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29854,NJBF000062911,,Ventnor City,NJ,39.34047191,-74.48238122,RES1,3001,,NaN,NE,1969,0,3102,2,1,980.074628,980.074628,3505,NO,35.17,49.3,3,8.88,6106,113.721035,123.481382,133.203397,139.752599,I,Above,Hip,0,5701,,42.23555778,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29855,NJBF000062933,,Ventnor City,NJ,39.34053433,-74.48244338,RES1,3001,,NaN,NE,1969,0,3102,2,1,1137.815459,1137.815459,3505,NO,42,51.1,3,3.45,6106,113.718834,123.47959,133.201541,139.750469,I,Above,Flat,0,5701,,46.55156886,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29856,NJBF000059380,18 S WYOMING AVE,Ventnor City,NJ,39.33413887,-74.48827339,RES1,3001,,17,NE,1930,1930,3102,2,1,1182.311521,1182.311521,3505,NO,29.69,35.24,3,0.53,6106,113.677546,123.446793,133.161734,139.744607,I,Above,Hip,0,5701,,32.46358811,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29857,NJBF000059062,15 S BALTIMORE AVE,Ventnor City,NJ,39.33347446,-74.48988586,RES1,3001,,17,NE,1930,1930,3102,2,1,1577.59861,1577.59861,3505,NO,41.84,56.48,3,7.1,6106,113.651254,123.425552,133.138757,139.722702,I,Above,Hip,0,5701,,49.16333378,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29858,NJBF000062030,119 N BUFFALO AVE,Ventnor City,NJ,39.3386737,-74.48825403,RES1,3001,,17,NE,2002,2002,3102,1,1,1443.147873,1443.147873,3505,NO,20.02,33.94,3,6.17,6106,113.615665,123.396589,133.112216,139.673313,I,Above,Gable,0,5701,,26.97940121,0,0,,,,1,1,,0.03,nav,1,2002,1,, 29859,NJBF000065151,504 N CAMBRIDGE AVE,Ventnor City,NJ,39.34626371,-74.48581224,RES1,3001,,17,NE,1969,1969,3101,1,1,1703.679367,1703.679367,3505,NO,13.03,20.06,3,0.76,6106,113.568422,123.356236,133.074446,139.595337,I,Above,Hip,0,5701,,16.54725581,0,0,,,,1,1,,0.03,nav,1,1969,1,, 29860,NJBF000064007,103 N SOMERSET AVE,Ventnor City,NJ,39.34331776,-74.47663764,RES1,3001,,16,NE,1950,1950,3102,1,1,1309.414441,1309.414441,3505,NO,25.27,39.36,3,6.23,6106,113.809807,123.552655,133.281423,139.805925,I,Above,Hip,0,5701,,32.31591909,0,0,,,,1,1,,0.03,nav,1,1950,1,, 29861,NJBF000062236,106 N BRYANT AVE,Ventnor City,NJ,39.33906286,-74.48536532,RES1,3001,,17,NE,1924,1924,3102,2,1,1337.767176,1337.767176,3505,NO,35.96,45.33,3,0.14,6106,113.674176,123.443753,133.16242,139.721369,I,Above,Gable,0,5701,,40.64073941,0,0,,,,1,1,,0.03,nav,1,1924,2,, 29862,NJBF000059095,,Ventnor City,NJ,39.33353839,-74.48900474,RES1,3001,,NaN,NE,1969,0,3102,2,1,1767.11582,1767.11582,3505,NO,31.1,45.51,3,-2.73,6106,113.669772,123.440497,133.154582,139.739293,I,Above,Gable,0,5701,,38.30336893,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29863,NJBF000062832,11 S DUDLEY AVE,Ventnor City,NJ,39.34032625,-74.4756953,RES1,3001,,NaN,NE,1897,1897,3102,3,1,1371.635855,1371.635855,3505,NO,45.11,50.82,3,4.61,6106,113.87035,123.602453,133.332144,139.870283,I,Above,Hip,0,5701,,47.96587014,0,1.2,,,,1,1,,0.03,nav,1,1897,3,, 29864,NJBF000066061,503 N SUFFOLK AVE,Ventnor City,NJ,39.34882358,-74.48013395,RES1,3001,,17,NE,1975,1975,3102,2,1,2527.537759,2527.537759,3507,NO,29.15,39.44,1,-0.46,6106,113.660833,123.429698,133.154088,139.655512,I,Above,Flat,0,5701,,34.29754616,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 29865,NJBF000061119,8 N TROY AVE,Ventnor City,NJ,39.33709567,-74.48595811,RES1,3001,,16,NE,1920,1920,3102,2,1,1171.704581,1171.704581,3505,NO,40.38,45.4,3,4.47,6106,113.687856,123.455032,133.172848,139.7423,I,Above,Gable,0,5701,,42.89373634,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29866,NJBF000060404,119 N SWARTHMORE AVE,Ventnor City,NJ,39.33591151,-74.49258716,RES1,3001,,17,NE,1925,1925,3102,2,1,1436.303986,1436.303986,3505,NO,42.35,56.6,3,5.97,6106,113.557851,123.350271,133.061313,139.632096,I,Above,Hip,0,5701,,49.47128753,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 29867,NJBF000065096,401 N DORSET AVE,Ventnor City,NJ,39.34613331,-74.48153652,RES1,3001,,17,NE,1950,1950,3102,1,1,870.2470563,870.2470563,3505,NO,15.44,21.12,3,-0.48,6106,113.664706,123.434087,133.157081,139.674686,I,Above,Hip,0,5701,,18.2781226,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 29868,NJBF000060842,23 N ROSBOROUGH AVE,Ventnor City,NJ,39.33663756,-74.48888988,RES1,3001,,45,NE,1935,1935,3102,2,2,1491.403015,1491.403015,3505,NO,37.82,45.48,3,5.44,6106,113.629446,123.407924,133.122676,139.693531,I,Above,Flat,0,5701,,41.65088527,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 29869,NJBF000060942,27 N NEWARK AVE,Ventnor City,NJ,39.33679607,-74.48817313,RES1,3001,,17,NE,1929,1929,3102,2,1,1262.053036,1262.053036,3505,NO,32.83,38.98,3,8.95,6106,113.643099,123.418926,133.134422,139.704893,I,Above,Hip,0,5701,,35.90616751,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 29870,NJBF000059995,17 N BALTIMORE AVE,Ventnor City,NJ,39.3352165,-74.491296,RES1,3001,,17,NE,1902,1902,3102,1,1,1664.030571,1664.030571,3505,NO,21.83,29.33,3,3.28,6106,113.595956,123.380989,133.093157,139.668319,I,Above,Hip,0,5701,,25.57903001,0,1.1,,,,1,1,,0.03,nav,1,1902,1,, 29871,NJBF000064413,121 N SUFFOLK AVE,Ventnor City,NJ,39.34442921,-74.47668009,RES1,3001,,17,NE,1965,1965,3102,1,1,956.422713,956.422713,3505,NO,16.91,28.69,3,-2.2,6106,113.79425,123.539701,133.268438,139.787153,I,Above,Gable,0,5701,,22.8001776,0,0,,,,1,1,,0.03,nav,1,1965,1,, 29872,NJBF000062107,24 S CORNWALL AVE,Ventnor City,NJ,39.3388045,-74.47881361,RES1,3001,,18,NE,1910,1910,3102,2,1,1730.064765,1730.064765,3505,NO,36.35,47.85,3,-1.89,6106,113.822112,123.563505,133.289373,139.842504,I,Above,Hip,0,5701,,42.0982025,0,1.2,,,,1,1,,0.03,nav,1,1910,2,, 29873,NJBF000064617,217 N OXFORD AVE,Ventnor City,NJ,39.34491051,-74.47866875,RES1,3001,,17,NE,1960,1960,3102,1,1,653.0467072,653.0467072,3505,NO,24.79,37.87,3,8.34,6106,113.744045,123.498811,133.225183,139.745078,I,Above,Hip,0,5701,,31.33203772,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 29874,NJBF000064588,222 N SOMERSET AVE,Ventnor City,NJ,39.34485839,-74.47852932,RES1,3001,,17,NE,1940,1940,3102,1,1,727.7208516,727.7208516,3505,NO,23.43,29.53,3,6.62,6106,113.74783,123.501899,133.228435,139.748372,I,Above,Gable,0,5701,,26.48181936,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 29875,NJBF000064737,223 N SOMERSET AVE,Ventnor City,NJ,39.3451952,-74.47816168,RES1,3001,,17,NE,1929,1929,3102,2,1,993.4994532,993.4994532,3505,NO,41.4,53.9,3,8.89,6106,113.751512,123.504767,133.231731,139.749225,I,Above,Gable,0,5701,,47.65087579,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29876,NJBF000064744,9 S VASSAR SQUARE,Ventnor City,NJ,39.34521314,-74.46649081,RES3B,3001,,NaN,ME,1920,1920,3301,2,4,2179.903942,2179.903942,3504,NO,27.61,36.8,-4,0,6106,114.008179,123.713792,133.455444,139.942475,I,Above,Hip,0,NaN,,32.20547837,0,0,,,,1,1,,0.03,nav,1,1920,2,, 29877,NJBF000061105,109 N WYOMING AVE,Ventnor City,NJ,39.33705794,-74.49011669,RES1,3001,,17,NE,1940,1940,3102,2,1,1433.656788,1433.656788,3505,NO,39.36,53.01,3,8.52,6106,113.596598,123.381408,133.094994,139.663051,I,Above,Hip,0,5701,,46.18482356,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29878,NJBF000063957,113 N OXFORD AVE,Ventnor City,NJ,39.34320225,-74.47742938,RES1,3001,,16,NE,1929,1929,3102,1,1,1360.962951,1360.962951,3505,NO,12.5,21.3,3,-0.38,6106,113.793902,123.539777,133.267601,139.794332,I,Above,Hip,0,5701,,16.89797865,0,0,,,,1,1,,0.03,nav,1,1929,1,, 29879,NJBF000061806,6300 VENTNOR AVE,Ventnor City,NJ,39.33828668,-74.48146928,COM1,3001,,NaN,ME,1940,1940,3401,3,1,2928.488548,2928.488548,3507,NO,52.05,65.66,1,0.56,6106,113.770621,123.521845,133.244653,139.804824,I,Above,Flat,0,NaN,,58.85552354,0,0,,,,1,1,,0.03,nav,1,1940,3,, 29880,NJBF000061898,6300 VENTNOR AVE,Ventnor City,NJ,39.33843403,-74.48131447,REL1,3001,,NaN,ME,1940,1940,3401,1,1,2396.615192,2396.615192,3507,NO,16.26,30.33,1,2.72,6106,113.772046,123.522982,133.245981,139.805144,I,Above,Hip,0,NaN,,23.29698261,0,0,,,,1,1,,0.03,nav,1,1940,1,, 29881,NJBF000061845,6300 VENTNOR AVE,Ventnor City,NJ,39.33836087,-74.4811854,RES1,3001,,NaN,NE,1940,1940,3102,2,1,1610.49407,1610.49407,3505,NO,35.18,40.91,3,7.07,6106,113.775878,123.526093,133.249226,139.808626,I,Above,Hip,0,5701,,38.04568755,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29882,NJBF000064146,27 S OAKLAND AVE,Ventnor City,NJ,39.34370928,-74.46799956,RES3B,3001,,17,E,1930,1930,3303,2,1,1902.524004,1902.524004,3504,NO,29.83,43.9,-4,0,6106,113.994719,123.703138,133.442724,139.941725,I,Above,Flat,0,NaN,,36.86462934,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 29883,NJBF000060601,105 S STRATFORD AVE,Ventnor City,NJ,39.33626159,-74.48117841,RES1,3001,,17,NE,1925,1925,3102,2,1,2132.12181,2132.12181,3505,NO,23.12,34.58,3,0.38,6106,113.804593,123.549498,133.272319,139.843366,I,Above,Flat,0,5701,,28.84904273,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29884,NJBF000064033,6208 CALVERT AVE,Ventnor City,NJ,39.3433849,-74.48284209,RES1,3001,,17,NE,1999,1999,3102,2,1,2686.088512,2686.088512,3505,NO,37.79,52.33,3,5.03,6106,113.672006,123.440992,133.162596,139.696455,I,Above,Gable,0,5701,,45.0553579,0,0,,,,1,1,,0.03,nav,1,1999,2,, 29885,NJBF000061490,3 N NEW HAVEN AVE,Ventnor City,NJ,39.33774055,-74.4844993,COM1,3001,,NaN,ME,1910,1910,3401,3,1,2223.906435,2223.906435,3507,NO,56.05,69.99,1,2.53,6106,113.711235,123.473863,133.193305,139.759001,I,Above,Flat,0,NaN,,63.02003242,0,0,,,,1,1,,0.03,nav,1,1910,3,, 29886,NJBF000064639,226 N SOMERSET AVE,Ventnor City,NJ,39.34496433,-74.47845799,RES1,3001,,17,NE,1920,1920,3102,1,1,1309.076205,1309.076205,3505,NO,17.58,30.18,3,1.34,6106,113.748007,123.502005,133.228624,139.747871,I,Above,Hip,0,5701,,23.88415358,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 29887,NJBF000065710,406 N SURREY AVE,Ventnor City,NJ,39.34788134,-74.47908764,RES1,3001,,17,NE,1975,1975,3102,2,1,1398.77857,1398.77857,3505,NO,27.38,37.84,3,3.73,6106,113.696113,123.458748,133.18447,139.689284,I,Above,Gable,0,5701,,32.60576519,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29888,NJBF000064649,5207 WINCHESTER AVE,Ventnor City,NJ,39.344992,-74.4719695,RES1,3001,,NaN,NE,1969,0,3102,2,1,2532.474764,2532.474764,3507,NO,34.62,44.8,1,-0.2,6106,113.89063,123.617906,133.352448,139.857038,I,Above,Flat,0,5701,,39.70980489,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29889,NJBF000059038,7319 VENTNOR AVE,Ventnor City,NJ,39.33341161,-74.49275081,RES1,3001,,NaN,NE,1960,1960,3102,1,1,6674.498598,6674.498598,3505,NO,15.54,22.46,3,3.43,6106,113.588985,123.375344,133.085791,139.666124,I,Above,Flat,0,5701,,19.00079001,0,0,,,,1,1,,0.03,nav,1,1960,1,, 29890,NJBF000064636,407 N HARVARD AVE,Ventnor City,NJ,39.34495992,-74.48509123,RES1,3001,,17,NE,1958,1958,3102,2,1,1357.020881,1357.020881,3505,NO,36.18,41.69,3,6.19,6106,113.601487,123.383466,133.10255,139.629876,I,Above,Gable,0,5701,,38.93423099,0,0,,,,1,1,,0.03,nav,1,1958,2,, 29891,NJBF000061289,311 N FREDERICKSBURG,Ventnor City,NJ,39.337386,-74.4961715,RES1,3001,,17,NE,1970,1970,3103,1,1,1756.159907,1756.159907,3505,NO,16.86,26.45,3,0.47,6106,113.458313,123.270092,132.977991,139.538285,I,Above,Hip,0,5701,,21.65430951,0,0,,,,1,1,,0.03,nav,1,1970,1,, 29892,NJBF000064106,102 S BATON ROUGE AVE,Ventnor City,NJ,39.34359083,-74.46637923,RES3B,3001,,17,E,1910,1910,3303,3,1,2116.395904,2116.395904,3504,NO,45.34,52.37,-4,0,6106,114.031853,123.733514,133.47522,139.969345,I,Above,Hip,0,NaN,,48.85899911,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 29893,NJBF000059372,107 S WISSAHICKON AVE,Ventnor City,NJ,39.33411815,-74.4853056,RES1,3001,,18,NE,1942,1942,3102,2,1,1556.709189,1556.709189,3505,NO,25.16,37.1,3,-2.93,6110,113.743188,123.499819,133.217788,139.802622,I,Above,Hip,0,5701,,31.12699996,0,1.1,,,,1,1,,0.35,nav,1,1942,2,, 29894,NJBF000062321,6419 WINCHESTER AVE,Ventnor City,NJ,39.33922157,-74.48422466,RES1,3001,,17,NE,1940,1940,3102,2,1,991.0523583,991.0523583,3505,NO,36.81,42.87,3,3.77,6106,113.697185,123.462318,133.182218,139.739771,I,Above,Hip,0,5701,,39.83909871,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29895,NJBF000062262,19 S DERBY AVE,Ventnor City,NJ,39.33910683,-74.47725104,RES1,3001,,18,NE,1965,1965,3102,2,1,3327.178329,3327.178329,3505,NO,31.53,39.27,3,2.23,6110,113.852458,123.588089,133.315802,139.864058,I,Above,Hip,0,5701,,35.40417139,0,0.1,,,,1,1,,0.35,nav,1,1965,2,, 29896,NJBF000058926,16 S BALTIMORE AVE,Ventnor City,NJ,39.33319151,-74.49013612,RES1,3001,,18,NE,1980,1980,3102,2,1,1541.325951,1541.325951,3505,NO,41.32,53.19,3,8.14,6106,113.649679,123.424267,133.137166,139.721903,I,Above,Flat,0,5701,,47.25303131,0,0,,,,1,1,,0.03,nav,1,1980,2,, 29897,NJBF000063892,,Ventnor City,NJ,39.34301175,-74.47608772,RES1,3001,,NaN,NE,1945,0,3102,2,1,1874.360108,1874.360108,3505,NO,29.82,42.63,3,4.25,6106,113.825971,123.565861,133.295277,139.820208,I,Above,Flat,0,5701,,36.22346099,0,0,,,,1,1,,0.03,nav,1,1945,2,, 29898,NJBF000063465,210 N SACRAMENTO AVE,Ventnor City,NJ,39.3417985,-74.4838885,RES1,3001,,47,NE,1925,1925,3102,1,2,1282.552114,1282.552114,3505,NO,13.02,26.94,3,1.14,6106,113.669971,123.439796,133.160222,139.703598,I,Above,Gable,0,5701,,19.98152765,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 29899,NJBF000065316,411 N DORSET AVE,Ventnor City,NJ,39.34672036,-74.48199011,RES1,3001,,17,NE,1945,1945,3102,1,1,1358.689185,1358.689185,3505,NO,20.22,28.65,3,3.96,6106,113.647037,123.419541,133.141977,139.657002,I,Above,Hip,0,5701,,24.43358676,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 29900,NJBF000063017,112 N HARVARD AVE,Ventnor City,NJ,39.34070667,-74.48230673,RES1,3001,,17,NE,1925,1925,3102,1,1,1559.443997,1559.443997,3505,NO,19.99,30.74,3,2.3,6106,113.719514,123.480105,133.202219,139.750057,I,Above,Hip,0,5701,,25.3669939,0,0,,,,1,1,,0.03,nav,1,1925,1,, 29901,NJBF000064104,206 N DORSET AVE,Ventnor City,NJ,39.34357977,-74.48010311,RES1,3001,,17,NE,1929,1929,3102,2,1,1658.934349,1658.934349,3505,NO,26.73,32.08,3,4.64,6106,113.729916,123.487795,133.212503,139.741854,I,Above,Hip,0,5701,,29.40601979,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 29902,NJBF000065611,402 N SURREY AVE,Ventnor City,NJ,39.34760551,-74.47886679,RES1,3001,,17,NE,1987,1987,3102,1,1,2027.917003,2027.917003,3505,NO,14.74,20.12,3,2.04,6106,113.704553,123.465716,133.191723,139.697634,I,Above,Hip,0,5701,,17.42959081,0,0,,,,1,1,,0.03,nav,1,1987,1,, 29903,NJBF000066848,808 N BURGHLEY AVE,Ventnor City,NJ,39.35100649,-74.48786135,RES1,3001,,17,NE,1975,1975,3101,1,1,1774.775302,1774.775302,3505,NO,20.01,30.23,3,7.27,6106,113.461736,123.267594,132.982871,139.480165,I,Above,Hip,0,5701,,25.12270166,0,0,,,,1,1,,0.03,nav,1,1975,1,, 29904,NJBF000062668,2 N CORNWALL AVE,Ventnor City,NJ,39.33995672,-74.47984165,RES1,3001,,18,NE,1909,1909,3102,2,1,3155.502006,3155.502006,3505,NO,27.69,38.24,3,4.97,6106,113.783948,123.532411,133.257233,139.805869,I,Above,Flat,0,5701,,32.96372195,0,0.1,,,,1,1,,0.03,nav,1,1909,2,, 29905,NJBF000062551,6105 VENTNOR AVE,Ventnor City,NJ,39.33968618,-74.48009707,RES1,3001,,18,NE,1932,1932,3102,2,1,518.6228222,518.6228222,3505,NO,32.04,45.32,3,5.25,6106,113.781971,123.530852,133.255358,139.805885,I,Above,Gable,0,5701,,38.68139934,0,1.2,,,,1,1,,0.03,nav,1,1932,2,, 29906,NJBF000066930,6006 BURK AVENUE,Ventnor City,NJ,39.35133537,-74.48842279,RES1,3001,,17,NE,1986,1986,3101,2,1,1845.202585,1845.202585,3505,NO,28.79,43.17,3,3.36,6106,113.44507,123.25395,132.968546,139.464404,I,Above,Gable,0,5701,,35.97913092,0,0,,,,1,1,,0.03,nav,1,1986,2,, 29907,NJBF000062745,6206 WINCHESTER AVE,Ventnor City,NJ,39.3401244,-74.48151793,RES1,3001,,17,NE,1920,1920,3102,2,1,1750.795632,1750.795632,3505,NO,36.59,47.7,3,6.76,6106,113.744749,123.500637,133.223584,139.773701,I,Above,Gable,0,5701,,42.14294183,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29908,NJBF000067072,5902 BURK AVE,Ventnor City,NJ,39.35195233,-74.48717386,RES1,3001,,17,NE,1975,1975,3101,2,1,1516.35688,1516.35688,3505,NO,23.67,35.18,3,0.23,6106,113.464941,123.269526,132.985347,139.4774,I,Above,Gable,0,5701,,29.42548642,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29909,NJBF000062800,109 N PRINCETON AVE,Ventnor City,NJ,39.34025531,-74.48293966,RES1,3001,,17,NE,1929,1929,3102,2,1,844.9303555,844.9303555,3505,NO,39.67,48.43,3,1.35,6106,113.711615,123.473805,133.195188,139.746131,I,Above,Flat,0,5701,,44.05162205,0,0,,,,1,1,,0.03,nav,1,1929,2,, 29910,NJBF000062690,5705 ATLANTIC AVE,Ventnor City,NJ,39.34001777,-74.47516534,RES1,3001,,19,NE,1910,1910,3102,3,1,2045.890427,2045.890427,3505,NO,38.09,45.19,3,-1.72,6110,113.886138,123.615326,133.345616,139.884025,I,Above,Hip,0,5701,,41.64118013,0,1.2,,,,1,1,,0.35,nav,1,1910,3,, 29911,NJBF000062512,6306 WINCHESTER AVE,Ventnor City,NJ,39.33960131,-74.48274621,RES1,3001,,45,NE,1950,1950,3102,2,2,952.8943546,952.8943546,3505,NO,40.17,49.94,3,6.25,6106,113.724701,123.484505,133.206047,139.760382,I,Above,Flat,0,5701,,45.05604342,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29912,NJBF000065314,412 N DUDLEY AVE,Ventnor City,NJ,39.34671029,-74.48163016,RES1,3001,,17,NE,1975,1975,3102,2,1,1147.032736,1147.032736,3505,NO,33.3,45.14,3,8.56,6106,113.655127,123.426089,133.148939,139.663581,I,Above,Hip,0,5701,,39.21663576,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29913,NJBF000063904,115 S BATON ROUGE AVE,Ventnor City,NJ,39.34303729,-74.46547394,RES3B,3001,,17,E,1930,1930,3303,3,1,1837.750242,1837.750242,3504,NO,55.96,69.22,-4,0,6106,114.058987,123.75581,133.498671,139.99213,I,Above,Flat,0,NaN,,62.58723951,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 29914,NJBF000062623,117 N NEWPORT CT,Ventnor City,NJ,39.33985266,-74.48446356,RES1,3001,,17,NE,1925,1925,3102,2,2,4060.172764,4060.172764,3505,NO,33.41,45.86,3,-0.78,6106,113.68339,123.451063,133.17076,139.725046,I,Above,Flat,0,5701,,39.63375042,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29915,NJBF000064790,1 N AUSTIN AVE,Ventnor City,NJ,39.34532982,-74.46879274,RES1,3001,,NaN,NE,1985,1985,3102,1,1,781.4819151,781.4819151,3507,NO,10.83,18.96,1,0.11,6106,113.95609,123.671193,133.409818,139.903607,I,Above,Hip,0,5701,,14.89430135,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 29916,NJBF000063942,108 S BATON ROUGE AVE,Ventnor City,NJ,39.34315794,-74.4660516,RES3B,3001,,19,E,1908,1908,3303,2,1,1914.323539,1914.323539,3504,NO,22.26,31.12,-4,0,6106,114.044717,123.744114,133.486219,139.981175,I,Above,Hip,0,NaN,,26.69368169,0,1.1,,,,1,1,,0.03,nav,1,1908,2,, 29917,NJBF000066742,715 N DERBY AVE,Ventnor City,NJ,39.35064124,-74.48614711,RES1,3001,,17,NE,1985,1985,3101,2,1,1268.033205,1268.033205,3505,NO,34.51,49.07,3,8.76,6106,113.504411,123.302228,133.01946,139.51765,I,Above,Flat,0,5701,,41.79217806,0,0,,,,1,1,,0.03,nav,1,1985,2,, 29918,NJBF000066442,512 N SURREY AVE,Ventnor City,NJ,39.34976683,-74.48058849,RES1,3001,,17,NE,1985,1985,3102,2,1,1927.073045,1927.073045,3507,NO,29.68,42.82,1,0.47,6106,113.638686,123.411256,133.134991,139.63209,I,Above,Hip,0,5701,,36.24808669,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 29919,NJBF000066389,510 N SURREY AVE,Ventnor City,NJ,39.34963127,-74.48047853,RES1,3001,,17,NE,2006,2006,3102,2,1,1304.352833,1304.352833,3507,NO,23.61,32.44,1,0.49,6106,113.64284,123.414695,133.138577,139.63624,I,Above,Hip,0,5701,,28.02248049,0,0,,,,1,1,,0.03,nav,1,2006,2,, 29920,NJBF000063659,6807 FULTON AVE,Ventnor City,NJ,39.3423256,-74.49415508,RES1,3001,,17,NE,1973,1973,3102,2,1,1504.20099,1504.20099,3505,NO,23.67,36.46,3,-2.45,6106,113.435769,123.250963,132.960888,139.501309,I,Above,Gable,0,5701,,30.06232731,0,1.1,,,,1,1,,0.03,nav,1,1973,2,, 29921,NJBF000065554,605 N HARVARD AVE,Ventnor City,NJ,39.34746026,-74.48707856,RES1,3001,,17,NE,1986,1986,3101,2,1,2379.058729,2379.058729,3505,NO,30.89,35.98,3,4.61,6106,113.524761,123.320456,133.037169,139.552478,I,Above,Flat,0,5701,,33.43460614,0,0,,,,1,1,,0.03,nav,1,1986,2,, 29922,NJBF000066584,807 N HARVARD AVE,Ventnor City,NJ,39.35013918,-74.48926046,RES1,3001,,17,NE,1978,1978,3101,2,1,1412.581601,1412.581601,3505,NO,42.36,54.3,3,6.62,6106,113.441784,123.252097,132.966048,139.468343,I,Above,Gable,0,5701,,48.33164649,0,0,,,,1,1,,0.03,nav,1,1978,2,, 29923,NJBF000065066,,Ventnor City,NJ,39.34605068,-74.47007495,RES1,3001,,NaN,NE,1969,0,3102,2,1,2747.476571,2747.476571,3507,NO,28.08,40.73,1,1.71,6106,113.918518,123.640314,133.377286,139.871354,I,Above,Flat,0,5701,,34.40381281,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29924,NJBF000059093,7214 VENTNOR AVE,Ventnor City,NJ,39.3335314,-74.49135379,RES1,3001,,17,NE,1915,1915,3102,2,1,1500.985664,1500.985664,3505,NO,34.97,41.19,3,4.39,6106,113.618113,123.398826,133.110622,139.692468,I,Above,Hip,0,5701,,38.07939415,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 29925,NJBF000062128,127 N RICHARDS AVE,Ventnor City,NJ,39.33883948,-74.48764534,RES1,3001,,17,NE,1920,1920,3102,2,1,1136.813022,1136.813022,3505,NO,37.01,48.5,3,0.26,6106,113.626873,123.405604,133.12187,139.682238,I,Above,Gable,0,5701,,42.75491984,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 29926,NJBF000065337,,Ventnor City,NJ,39.34677996,-74.47906396,RES1,3001,,NaN,NE,1969,0,3102,2,1,1351.422437,1351.422437,3505,NO,38.43,43.47,3,4.03,6106,113.710917,123.471237,133.19707,139.707675,I,Above,Gable,0,5701,,40.95222518,0,0,,,,1,1,,0.03,nav,1,1969,2,, 29927,NJBF000060338,113 S STRATFORD AVE,Ventnor City,NJ,39.3358031,-74.48078882,RES1,3001,,21,NE,2014,2014,3102,2,1,1782.110806,1782.110806,3505,NO,35.84,41.73,3,8.51,6106,113.819436,123.561533,133.284699,139.857775,I,Above,Hip,0,5701,,38.78902577,0,0,,,,1,1,,0.03,nav,1,2014,2,, 29928,NJBF000062647,220 N WISSAHICKON AVE,Ventnor City,NJ,39.33991886,-74.49098339,RES1,3001,,17,NE,1950,1950,3102,1,1,1009.270359,1009.270359,3505,NO,22,28.38,3,4.46,6106,113.538452,123.334155,133.047131,139.601008,I,Above,Gable,0,5701,,25.1894221,0,0,,,,1,1,,0.03,nav,1,1950,1,, 29929,NJBF000063342,106 S LITTLE ROCK AVE,Ventnor City,NJ,39.34145836,-74.47050182,COM1,3001,29,NaN,ME,1890,1890,3401,3,1,1856.68912,1856.68912,3507,NO,43.08,52.79,1,2.06,6106,113.969475,123.682949,133.419134,139.936861,I,Above,Hip,0,NaN,,47.93392669,0,1.1,,,,1,1,,0.03,nav,1,1890,3,, 29930,NJBF000064036,27 S NASHVILLE AVE,Ventnor City,NJ,39.34339795,-74.46866769,RES3B,3001,,17,E,1925,1925,3303,3,1,1508.66482,1508.66482,3504,NO,41.34,51.9,-4,0,6110,113.984134,123.694559,133.433255,139.935884,I,Above,Hip,0,NaN,,46.621363,0,1.1,,,,1,1,,0.35,nav,1,1925,3,, 29931,NJBF000065188,312 N SUFFOLK AVE,Ventnor City,NJ,39.34635663,-74.47876327,RES1,3001,,17,NE,1930,1930,3102,2,1,1371.309922,1371.309922,3505,NO,34.77,41.51,3,5.71,6106,113.723068,123.481262,133.207475,139.71983,I,Above,Flat,0,5701,,38.1389625,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29932,NJBF000064491,9 S MARION AVE,Ventnor City,NJ,39.34461686,-74.46768198,RES1,3001,,17,NE,1910,1910,3102,2,1,1562.459389,1562.459389,3504,NO,25.09,33.91,-4,0,6106,113.989807,123.698919,133.438972,139.932672,I,Above,Hip,0,5701,,29.49875632,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 29933,NJBF000066625,809 N HARVARD AVE,Ventnor City,NJ,39.35028022,-74.48934784,RES1,3001,,17,NE,1978,1978,3101,1,1,1795.137725,1795.137725,3505,NO,22.34,34.41,3,5.53,6106,113.438023,123.248979,132.962808,139.464408,I,Above,Flat,0,5701,,28.37369867,0,0,,,,1,1,,0.03,nav,1,1978,1,, 29934,NJBF000064061,1 N VICTORIA AVE,Ventnor City,NJ,39.34346834,-74.4722307,RES1,3001,,NaN,NE,1920,1920,3102,3,1,1688.602826,1688.602826,3505,NO,49.81,58.94,3,3.92,6106,113.904882,123.629922,133.364087,139.87704,I,Above,Flat,0,5701,,54.37872284,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 29935,NJBF000058815,7 S MARTINDALE AVE,Ventnor City,NJ,39.3329814,-74.49164597,RES1,3001,,17,NE,1928,1928,3102,2,1,1117.847964,1117.847964,3505,NO,23.96,29.82,3,-2.77,6106,113.619362,123.399803,133.111202,139.694673,I,Above,Hip,0,5701,,26.89072778,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 29936,NJBF000062440,14 N SACRAMENTO AVE,Ventnor City,NJ,39.33946669,-74.48226579,RES1,3001,,NaN,NE,1950,1950,3102,2,1,5352.009004,5352.009004,3505,NO,36.05,47.41,3,1.93,6106,113.737096,123.494554,133.216612,139.771197,I,Above,Flat,0,5701,,41.72676475,0,0,,,,1,1,,0.03,nav,1,1950,2,, 29937,NJBF000066035,601 N DORSET AVE,Ventnor City,NJ,39.34873479,-74.48357021,RES1,3001,,NaN,NE,1955,1955,3102,2,1,2575.315235,2575.315235,3507,NO,37.81,51.05,1,0.88,6106,113.585968,123.369184,133.089613,139.595659,I,Above,Flat,0,5701,,44.43074683,0,0,,,,1,1,,0.03,nav,1,1955,2,, 29938,NJBF000063753,101 S AMHERST AVE,Ventnor City,NJ,39.34261012,-74.46878717,RES1,3001,,17,NE,1910,1910,3102,3,1,2578.322217,2578.322217,3505,NO,44.16,57.27,3,5.4,6106,113.991901,123.701053,133.439534,139.946272,I,Above,Flat,0,5701,,50.71801279,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 29939,NJBF000066554,711 N BURGHLEY AVE,Ventnor City,NJ,39.35005525,-74.48657917,RES1,3001,,17,NE,1975,1975,3101,2,1,1360.27157,1360.27157,3505,NO,38.36,46.01,3,7.28,6106,113.502333,123.30092,133.017785,139.519299,I,Above,Gable,0,5701,,42.18290585,0,0,,,,1,1,,0.03,nav,1,1975,2,, 29940,NJBF000062547,116 N NEWPORT AVE,Ventnor City,NJ,39.33967934,-74.48510677,RES1,3001,,17,NE,1929,1929,3102,3,1,1065.83501,1065.83501,3505,NO,42.28,52.56,3,7.37,6106,113.671542,123.441523,133.160517,139.716072,I,Above,Flat,0,5701,,47.41581276,0,1.1,,,,1,1,,0.03,nav,1,1929,3,, 29941,NJBF000062499,113 N BRYANT AVE,Ventnor City,NJ,39.33958804,-74.48519457,RES1,3001,,17,NE,1919,1919,3102,2,1,507.9635002,507.9635002,3505,NO,38.32,49.15,3,8.32,6106,113.670828,123.440962,133.159855,139.715936,I,Above,Flat,0,5701,,43.73230658,0,1.1,,,,1,1,,0.03,nav,1,1919,2,, 29942,NJBF000064983,414 N CORNWALL AVE,Ventnor City,NJ,39.34584149,-74.48460273,RES1,3001,,17,NE,1956,1956,3102,1,1,1554.914443,1554.914443,3505,NO,19.79,31.6,3,4.34,6106,113.600718,123.382488,133.102054,139.624339,I,Above,Hip,0,5701,,25.69324165,0,0,,,,1,1,,0.03,nav,1,1956,1,, 29943,NJBF000064296,113 N SURREY AVE,Ventnor City,NJ,39.3441345,-74.475493,RES1,3001,,18,NE,1930,2018,3102,2,1,1428.664965,1428.664965,3507,NO,33.45,40,1,1.3,6106,113.824278,123.564179,133.294345,139.812057,I,Above,Flat,0,5701,,36.72576877,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29944,NJBF000061681,17 S SACRAMENTO AVE,Ventnor City,NJ,39.33806214,-74.48044795,RES1,3001,,17,NE,1925,1925,3102,2,1,1992.235546,1992.235546,3505,NO,36.31,51.3,3,3.49,6106,113.796168,123.542557,133.266474,139.826487,I,Above,Hip,0,5701,,43.8072889,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29945,NJBF000063916,166 N DERBY AVE,Ventnor City,NJ,39.34307257,-74.48053033,RES1,3001,,15,NE,1910,1910,3102,2,1,1739.282264,1739.282264,3505,NO,23.4,33.96,3,-2.49,6106,113.727198,123.485743,133.209955,139.742672,I,Above,Flat,0,5701,,28.67738942,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 29946,NJBF000064008,214 N DERBY AVE,Ventnor City,NJ,39.343321,-74.480688,RES1,3001,,16,NE,1900,1900,3102,2,1,1162.226924,1162.226924,3505,NO,40.54,51.59,3,5.4,6106,113.720426,123.480188,133.204222,139.735822,I,Above,Hip,0,5701,,46.06939914,0,0,,,,1,1,,0.03,nav,1,1900,2,, 29947,NJBF000062686,16 N CAMBRIDGE AVE,Ventnor City,NJ,39.3400115,-74.481026,RES1,3001,,17,NE,1919,1919,3102,2,1,1394.762592,1394.762592,3505,NO,39.43,44.77,3,5.78,6106,113.757105,123.51066,133.234148,139.784241,I,Above,Hip,0,5701,,42.10061184,0,1.1,,,,1,1,,0.03,nav,1,1919,2,, 29948,NJBF000059838,14 N BALTIMORE AVE,Ventnor City,NJ,39.33494076,-74.49154342,RES1,3001,,17,NE,1935,1935,3102,1,1,1658.563173,1658.563173,3505,NO,11.84,23.32,3,-1.16,6106,113.594332,123.379684,133.091569,139.667596,I,Above,Gable,0,5701,,17.5790169,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 29949,NJBF000060715,4 N BUFFALO AVE,Ventnor City,NJ,39.3364375,-74.48690325,RES1,3001,,17,NE,1935,1935,3102,2,1,1359.246396,1359.246396,3505,NO,36.13,45.2,3,-0.17,6106,113.676025,123.445525,133.162266,139.734978,I,Above,Hip,0,5701,,40.66405453,0,0,,,,1,1,,0.03,nav,1,1935,2,, 29950,NJBF000062109,26 N NEWPORT AVE,Ventnor City,NJ,39.33881088,-74.48444008,COM1,3001,,17,ME,1922,1922,3401,2,1,1760.043168,1760.043168,3507,NO,30.56,39.11,1,1.67,6106,113.698004,123.463041,133.182669,139.742566,I,Above,Flat,0,NaN,,34.83486733,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 29951,NJBF000060694,107 S PORTLAND AVE.,Ventnor City,NJ,39.33640825,-74.48057931,RES1,3001,,20,NE,1988,1988,3102,2,1,1653.69491,1653.69491,3505,NO,24.18,32.76,3,2.71,6106,113.815786,123.55856,133.282071,139.851461,I,Above,Gable,0,5701,,28.47385049,0,0,,,,1,1,,0.03,nav,1,1988,2,, 29952,NJBF000061973,213 N WYOMING AVE,Ventnor City,NJ,39.3385675,-74.49175994,RES1,3001,,17,NE,1948,1948,3102,2,1,1664.101116,1664.101116,3505,NO,35.32,43.2,3,3.9,6106,113.539641,123.335351,133.047482,139.60728,I,Above,Gable,0,5701,,39.25780111,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 29953,NJBF000061373,6519 VENTNOR AVE,Ventnor City,NJ,39.33752077,-74.48411401,COM1,3001,,NaN,ME,1912,1912,3401,3,3,1876.117792,1876.117792,3507,NO,37.06,43.3,1,2.68,6106,113.722721,123.483169,133.202994,139.769696,I,Above,Flat,0,NaN,,40.18025964,0,0,,,,1,1,,0.03,nav,1,1912,3,, 29954,NJBF000061196,6601 VENTNOR AVE,Ventnor City,NJ,39.33722514,-74.48511021,COM1,3001,,NaN,ME,1932,1932,3401,2,1,18480.76239,18480.76239,3507,NO,38.46,50.2,1,1.56,6106,113.704795,123.468707,133.187431,139.756094,I,Above,Flat,0,NaN,,44.3295699,0,0,,,,1,1,,0.03,nav,1,1932,2,, 29955,NJBF000065117,309 N SOMERSET AVE,Ventnor City,NJ,39.34617604,-74.47896321,RES1,3001,,16,NE,1930,1930,3102,2,1,1072.990727,1072.990727,3505,NO,30.28,41.03,3,2.17,6106,113.721011,123.479667,133.205652,139.719301,I,Above,Hip,0,5701,,35.65274575,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29956,NJBF000065128,22 N BATON ROUGE AVE,Ventnor City,NJ,39.34619584,-74.46848496,RES3A,3001,,28,NE,1926,1926,3301,2,1,1426.519478,1426.519478,3505,NO,25.49,36.21,3,-0.08,6106,113.951593,123.667267,133.406309,139.894995,I,Above,Flat,0,5701,,30.84720562,0,0,,,,1,1,,0.03,nav,1,1926,2,, 29957,NJBF000065088,18 N BATON ROUGE AVE,Ventnor City,NJ,39.34609983,-74.46842337,RES3A,3001,,28,NE,1926,1926,3301,2,1,1497.693505,1497.693505,3505,NO,20.09,33.74,3,-2.88,6106,113.954202,123.669427,133.40855,139.897509,I,Above,Flat,0,5701,,26.91308099,0,0,,,,1,1,,0.03,nav,1,1926,2,, 29958,NJBF000067049,,Ventnor City,NJ,39.35185123,-74.4885412,RES1,3001,,NaN,NE,1969,0,3103,6,1,2180.207493,2180.207493,3505,NO,101.79,109.18,3,2.02,6106,113.435887,123.246196,132.960546,139.453808,I,Above,Hip,0,5701,,105.4852587,0,0,,,,1,1,,0.03,nav,1,1969,6,, 29959,NJBF000067068,,Ventnor City,NJ,39.3519255,-74.488013,RES1,3001,,NaN,NE,1969,0,3103,4,1,1740.242598,1740.242598,3505,NO,58.79,64.36,3,-0.19,6106,113.446654,123.254812,132.969719,139.462355,I,Above,Hip,0,5701,,61.57436327,0,0,,,,1,1,,0.03,nav,1,1969,4,, 29960,NJBF000063968,604 N BUFFALO AVE,Ventnor City,NJ,39.34322658,-74.49330347,RES1,3001,,17,NE,1979,1979,3102,2,1,2037.557887,2037.557887,3505,NO,26.78,32.9,3,1.21,6106,113.442589,123.256147,132.966855,139.503489,I,Above,Flat,0,5701,,29.83914502,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 29961,NJBF000061893,126 N BUFFALO AVE,Ventnor City,NJ,39.33842884,-74.48848492,RES1,3001,,17,NE,1922,1922,3102,2,1,1049.877811,1049.877811,3505,NO,30.81,45.01,3,2.66,6106,113.613897,123.395198,133.110568,139.672831,I,Above,Gable,0,5701,,37.90596192,0,0,,,,1,1,,0.03,nav,1,1922,2,, 29962,NJBF000062204,6715 MONMOUTH AVE,Ventnor City,NJ,39.33898762,-74.4885177,RES1,3001,,47,NE,1960,1960,3102,2,2,2696.490278,2696.490278,3505,NO,40.41,48.87,3,4.09,6106,113.605567,123.388397,133.103783,139.663232,I,Above,Hip,0,5701,,44.63923815,0,0,,,,1,1,,0.03,nav,1,1960,2,, 29963,NJBF000066280,511 N SUFFOLK AVE,Ventnor City,NJ,39.34935798,-74.48064656,RES1,3001,,17,NE,1978,1978,3102,2,1,1530.983951,1530.983951,3507,NO,21.56,30.33,1,-0.82,6106,113.642626,123.414672,133.138392,139.637723,I,Above,Gable,0,5701,,25.94432547,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 29964,NJBF000060896,108 N WYOMING AVE,Ventnor City,NJ,39.33671677,-74.49035332,RES1,3001,,27,NE,1935,1935,3102,2,1,1884.117909,1884.117909,3505,NO,41.97,56.05,3,8.21,6106,113.596071,123.381011,133.094321,139.663776,I,Above,Gable,0,5701,,49.00847148,0,0,,,,1,1,,0.03,nav,1,1935,2,, 29965,NJBF000060304,3 N ROSBOROUGH AVE,Ventnor City,NJ,39.33574931,-74.48819273,RES1,3001,,17,NE,1928,1928,3102,2,1,1242.240785,1242.240785,3505,NO,37.26,45.39,3,2.39,6106,113.657049,123.43024,133.145558,139.721076,I,Above,Hip,0,5701,,41.3273434,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 29966,NJBF000060489,6 S RICHARDS AVE,Ventnor City,NJ,39.33605864,-74.48586727,RES1,3001,,17,NE,1930,1930,3102,2,1,1601.423287,1601.423287,3505,NO,25.98,35.44,3,-1.68,6106,113.70407,123.468194,133.185947,139.76078,I,Above,Hip,0,5701,,30.71206058,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29967,NJBF000061877,129 N WISSAHICKON AVE,Ventnor City,NJ,39.33840405,-74.48875799,RES1,3001,,17,NE,1922,1922,3102,2,1,880.9473719,880.9473719,3505,NO,35.6,48.67,3,5.58,6106,113.608208,123.390614,133.105705,139.668002,I,Above,Hip,0,5701,,42.1345384,0,0,,,,1,1,,0.03,nav,1,1922,2,, 29968,NJBF000066842,812 N CORNWALL AVE,Ventnor City,NJ,39.35097608,-74.48872568,RES1,3001,,17,NE,1977,1977,3101,1,1,1995.583933,1995.583933,3505,NO,23.51,29.01,3,8.57,6106,113.442924,123.252465,132.966814,139.464637,I,Above,Gable,0,5701,,26.26282403,0,0,,,,1,1,,0.03,nav,1,1977,1,, 29969,NJBF000058246,109 S SWARTHMORE AVE,Ventnor City,NJ,39.33196972,-74.48941472,RES1,3001,,19,NE,1930,1930,3102,2,1,1746.913034,1746.913034,3505,NO,37.09,42.3,3,0.56,6106,113.682646,123.450774,133.164085,139.754303,I,Above,Gable,0,5701,,39.69165855,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29970,NJBF000066724,802 N BURGHLEY AVE,Ventnor City,NJ,39.35058392,-74.48752868,RES1,3001,,17,NE,1976,1976,3101,1,1,1755.372471,1755.372471,3505,NO,11.03,21.15,3,-0.72,6106,113.474492,123.278147,132.993872,139.493179,I,Above,Flat,0,5701,,16.08820792,0,0,,,,1,1,,0.03,nav,1,1976,1,, 29971,NJBF000066372,713 N CAMBRIDGE AVE,Ventnor City,NJ,39.34959344,-74.48793883,RES1,3001,,17,NE,1965,1965,3101,1,1,1574.451263,1574.451263,3505,NO,12.56,19.91,3,1.69,6106,113.478107,123.28168,132.997147,139.50177,I,Above,Gable,0,5701,,16.23659361,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 29972,NJBF000059507,16 N WASHINGTON AVE,Ventnor City,NJ,39.33436445,-74.49251418,RES1,3001,,45,NE,1925,1925,3102,2,2,1389.723075,1389.723075,3505,NO,34.85,45.5,3,4.72,6106,113.580933,123.368886,133.079743,139.656854,I,Above,Hip,0,5701,,40.1780299,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29973,NJBF000060333,101 N BALTIMORE AVE,Ventnor City,NJ,39.33579098,-74.49175983,RES1,3001,,17,NE,1940,1940,3102,2,1,942.9415146,942.9415146,3505,NO,26.89,39.88,3,4.46,6106,113.577777,123.366324,133.078138,139.650359,I,Above,Gable,0,5701,,33.38345838,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 29974,NJBF000062222,6501 WINCHESTER AVE,Ventnor City,NJ,39.33902668,-74.4845461,RES1,3001,,17,NE,1930,1930,3102,2,1,989.0492499,989.0492499,3505,NO,29.06,37.79,3,3.44,6106,113.69274,123.458755,133.178292,139.737079,I,Above,Flat,0,5701,,33.42756066,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29975,NJBF000062276,217 N ROSBOROUGH AVE,Ventnor City,NJ,39.33913627,-74.49142648,RES1,3001,,17,NE,1945,1945,3102,1,1,1554.592034,1554.592034,3505,NO,11.03,18.92,3,-1.71,6106,113.539286,123.334973,133.04747,139.604839,I,Above,Hip,0,5701,,14.97099866,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 29976,NJBF000064946,409 N CORNWALL AVE,Ventnor City,NJ,39.34573408,-74.48395756,RES1,3001,,17,NE,1962,1962,3102,2,1,1546.781626,1546.781626,3505,NO,31.53,43.53,3,-1.41,6106,113.61639,123.39519,133.115478,139.637795,I,Above,Gable,0,5701,,37.53017382,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 29977,NJBF000064922,311 N DUDLEY AVE,Ventnor City,NJ,39.34566946,-74.48026248,RES1,3001,,17,NE,1959,1959,3102,1,1,2222.832203,2222.832203,3505,NO,20.98,28.17,3,2.14,6106,113.698943,123.461987,133.186475,139.704839,I,Above,Gable,0,5701,,24.5749581,0,0,,,,1,1,,0.03,nav,1,1959,1,, 29978,NJBF000064911,405 N BURGHLEY AVE,Ventnor City,NJ,39.34564456,-74.48302733,RES1,3001,,17,NE,1965,1965,3102,2,1,1152.870884,1152.870884,3505,NO,37.5,50.48,3,4.81,6106,113.638147,123.412808,133.134141,139.656049,I,Above,Flat,0,5701,,43.98895035,0,0,,,,1,1,,0.03,nav,1,1965,2,, 29979,NJBF000064908,9 N AUSTIN AVE,Ventnor City,NJ,39.34563767,-74.46905995,RES1,3001,,17,NE,1930,1930,3102,2,1,962.5413424,962.5413424,3507,NO,35.89,47.65,1,0.96,6106,113.946209,123.663038,133.401322,139.894432,I,Above,Gable,0,5701,,41.77139819,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29980,NJBF000064877,7 N AUSTIN AVE,Ventnor City,NJ,39.34556426,-74.46899515,RES1,3001,,17,NE,1930,1930,3102,2,1,1178.010346,1178.010346,3507,NO,23.6,33.15,1,0.9,6106,113.948601,123.665013,133.40338,139.896652,I,Above,Gable,0,5701,,28.37893731,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29981,NJBF000064896,12 N MARION AVE,Ventnor City,NJ,39.34560118,-74.46871893,RES3A,3001,,17,NE,1960,1960,3301,2,1,1094.115564,1094.115564,3505,NO,41.94,56.54,3,4.04,6106,113.954186,123.669562,133.408289,139.900548,I,Above,Hip,0,5701,,49.24059182,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 29982,NJBF000064917,14 N MARION AVE,Ventnor City,NJ,39.345661,-74.468775,RES1,3001,,17,NE,1940,1940,3102,2,1,949.1940139,949.1940139,3507,NO,36.96,49.42,1,-0.4,6106,113.952174,123.667901,133.406557,139.898697,I,Above,Gable,0,5701,,43.19031108,0,0,,,,1,1,,0.03,nav,1,1940,2,, 29983,NJBF000064949,304 N SOMERSET AVE,Ventnor City,NJ,39.34573827,-74.4790615,RES1,3001,,45,NE,1930,1930,3102,2,2,1398.927192,1398.927192,3505,NO,34.95,41.13,3,6.46,6106,113.724542,123.482701,133.208587,139.72473,I,Above,Gable,0,5701,,38.03978383,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29984,NJBF000064955,307 N OXFORD AVE,Ventnor City,NJ,39.34575812,-74.47951241,RES1,3001,,17,NE,1930,1930,3102,2,1,1037.608191,1037.608191,3505,NO,38.98,45.19,3,2.78,6106,113.714344,123.474429,133.199787,139.716543,I,Above,Gable,0,5701,,42.08197797,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 29985,NJBF000064398,211 N DUDLEY AVE,Ventnor City,NJ,39.34438827,-74.47927981,RES1,3001,,17,NE,1962,1962,3102,1,1,1027.699562,1027.699562,3505,NO,16.95,22.7,3,2.04,6106,113.73743,123.493626,133.219288,139.743003,I,Above,Flat,0,5701,,19.82818726,0,0,,,,1,1,,0.03,nav,1,1962,1,, 29986,NJBF000064321,10 S OAKLAND AVE,Ventnor City,NJ,39.34419434,-74.46891896,RES1,3001,29,NaN,NE,1929,1929,3102,3,1,2194.196593,2194.196593,3507,NO,37.34,48.27,1,1.84,6106,113.968169,123.681349,133.419767,139.919398,I,Above,Flat,0,5701,,42.80144881,0,0,,,,1,1,,0.03,nav,1,1929,3,, 29987,NJBF000064403,8 N HILLSIDE AVE,Ventnor City,NJ,39.34440084,-74.47092487,RES1,3001,,17,NE,1930,1930,3102,2,1,2063.945619,2063.945619,3507,NO,39.14,46.43,1,2.24,6106,113.921357,123.643109,133.378961,139.883591,I,Above,Hip,0,5701,,42.78805839,0,0,,,,1,1,,0.03,nav,1,1930,2,, 29988,NJBF000064379,6 N HILLSIDE AVE,Ventnor City,NJ,39.34433062,-74.47085762,RES1,3001,,18,NE,2009,2009,3102,2,1,1547.050048,1547.050048,3507,NO,21.98,32.59,1,0.69,6106,113.923748,123.645077,133.381011,139.885794,I,Above,Hip,0,5701,,27.28686092,0,1.1,,,,1,1,,0.03,nav,1,2009,2,, 29989,NJBF000064451,5903 CALVERT AVE,Ventnor City,NJ,39.34451981,-74.4811103,RES1,3001,,45,NE,1950,1950,3102,2,2,1229.469054,1229.469054,3505,NO,27.69,37.96,3,0.99,6106,113.695285,123.459448,133.182996,139.708701,I,Above,Flat,0,5701,,32.82738466,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 29990,NJBF000064288,117 N SOMERSET AVE,Ventnor City,NJ,39.34411268,-74.47725384,RES1,3001,,17,NE,1948,1948,3102,2,1,1665.097534,1665.097534,3505,NO,33.69,45.93,3,1.88,6106,113.785747,123.532897,133.260946,139.782486,I,Above,Flat,0,5701,,39.81075288,0,0,,,,1,1,,0.03,nav,1,1948,2,, 29991,NJBF000064243,4905 ATLANTIC AVE,Ventnor City,NJ,39.343993,-74.467009,RES1,3001,,NaN,NE,1908,1908,3102,2,1,1329.280698,1329.280698,3507,NO,33.12,38.12,1,0.62,6110,114.012753,123.717815,133.458718,139.953126,I,Above,Hip,0,5701,,35.62458881,0,0,,,,1,1,,0.35,nav,1,1908,2,, 29992,NJBF000064238,15 S NASHVILLE AVE,Ventnor City,NJ,39.34396617,-74.46912429,RES1,3001,,17,NE,1925,1925,3102,2,1,1418.525661,1418.525661,3507,NO,34.27,45.72,1,-0.12,6106,113.966654,123.680166,133.418307,139.919669,I,Above,Gable,0,5701,,39.99920252,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29993,NJBF000064201,17 S NASHVILLE AVE,Ventnor City,NJ,39.34387619,-74.46904569,RES1,3001,,17,NE,1920,1920,3102,3,1,1604.599885,1604.599885,3507,NO,59.39,73,1,1.1,6106,113.969549,123.682549,133.420787,139.922336,I,Above,Gable,0,5701,,66.19374448,0,0,,,,1,1,,0.03,nav,1,1920,3,, 29994,NJBF000063977,5409 WINCHESTER AVE,Ventnor City,NJ,39.34324269,-74.47390616,RES1,3001,,17,NE,1928,1928,3102,2,1,2757.776066,2757.776066,3505,NO,33.78,42.79,3,-2.5,6106,113.870981,123.602386,133.334463,139.853002,I,Above,Hip,0,5701,,38.28722712,0,0,,,,1,1,,0.03,nav,1,1928,2,, 29995,NJBF000063951,611 KINGSLEY DRIVE,Ventnor City,NJ,39.34318699,-74.49428806,RES1,3001,,17,NE,1975,1975,3102,1,1,2768.791395,2768.791395,3505,NO,21.96,34.44,3,8.82,6106,113.421288,123.239051,132.948814,139.485062,I,Above,Flat,0,5701,,28.20310362,0,0,,,,1,1,,0.03,nav,1,1975,1,, 29996,NJBF000064219,22 S MARION AVE,Ventnor City,NJ,39.34392298,-74.46757692,RES1,3001,,17,NE,1907,1907,3102,3,2,1971.161858,1971.161858,3504,NO,50.05,64.95,-4,0,6110,114.0012,123.708387,133.44854,139.945154,I,Above,Flat,0,5701,,57.50022049,0,1.2,,,,1,1,,0.35,nav,1,1907,3,, 29997,NJBF000064017,12 S HILLSIDE AVE,Ventnor City,NJ,39.34334305,-74.47005376,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1623.244821,1623.244821,3505,NO,41.21,46.68,3,6.9,6106,113.954402,123.670309,133.407219,139.914453,I,Above,Flat,0,5701,,43.943441,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 29998,NJBF000064199,304 N CORNWALL AVE,Ventnor City,NJ,39.34387165,-74.48298658,RES1,3001,,17,NE,1962,1962,3102,1,1,1341.647409,1341.647409,3505,NO,12.24,25.54,3,-2.01,6106,113.662359,123.433035,133.154474,139.685854,I,Above,Hip,0,5701,,18.88735122,0,0,,,,1,1,,0.03,nav,1,1962,1,, 29999,NJBF000064174,4909 ATLANTIC AVE,Ventnor City,NJ,39.34378445,-74.46743341,RES1,3001,,NaN,NE,1902,0,3102,2,1,1914.777911,1914.777911,3504,NO,36.7,47.69,-4,0,6106,114.006185,123.712491,133.452823,139.949611,I,Above,Hip,0,5701,,42.19575915,0,0,,,,1,1,,0.03,nav,1,1902,2,, 30000,NJBF000063730,8 S VICTORIA AVE,Ventnor City,NJ,39.34253901,-74.47196835,RES1,3001,,17,NE,1915,1915,3102,2,1,1365.973241,1365.973241,3505,NO,29.86,37.11,3,6.05,6106,113.922925,123.644823,133.379261,139.896117,I,Above,Gable,0,5701,,33.4848387,0,0,,,,1,1,,0.03,nav,1,1915,2,, 30001,NJBF000063356,126 N CAMBRIDGE AVE,Ventnor City,NJ,39.34148529,-74.48217891,RES1,3001,,16,NE,1930,1930,3102,2,1,1160.049957,1160.049957,3505,NO,30.04,44.61,3,6.45,6106,113.711925,123.473795,133.196095,139.739549,I,Above,Flat,0,5701,,37.32498769,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 30002,NJBF000063310,125 N HARVARD AVE,Ventnor City,NJ,39.34138192,-74.48239405,RES1,3001,,17,NE,1924,1924,3102,2,1,753.3996188,753.3996188,3505,NO,28.16,42.5,3,6.69,6106,113.708556,123.471094,133.193149,139.737399,I,Above,Flat,0,5701,,35.32699178,0,0,,,,1,1,,0.03,nav,1,1924,2,, 30003,NJBF000062786,6 N CORNWALL AVE,Ventnor City,NJ,39.34022635,-74.47994923,RES1,3001,,18,NE,1927,1927,3102,2,1,1395.482701,1395.482701,3505,NO,35.18,45.04,3,5.17,6106,113.777977,123.527528,133.252252,139.799588,I,Above,Gable,0,5701,,40.11229382,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 30004,NJBF000063262,129 N SACRAMENTO AVE,Ventnor City,NJ,39.34126277,-74.48305198,RES1,3001,,17,NE,1930,1930,3102,2,1,980.8271868,980.8271868,3505,NO,30.62,35.81,3,2.05,6106,113.695621,123.46066,133.181982,139.727541,I,Above,Gable,0,5701,,33.21802484,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 30005,NJBF000062563,300-302 HAMPSHIRE DR,Ventnor City,NJ,39.33971977,-74.49325697,RES1,3001,,45,NE,1972,1972,3102,2,2,3099.310786,3099.310786,3505,NO,37.59,47.41,3,8.51,6106,113.49085,123.295893,133.006654,139.559933,I,Above,Hip,0,5701,,42.50280873,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30006,NJBF000062649,106 S SOMERSET AVE,Ventnor City,NJ,39.33992053,-74.47366745,RES1,3001,,16,NE,1960,1960,3102,2,1,1588.926598,1588.926598,3505,NO,31.46,45.58,3,-1.48,6106,113.92039,123.643189,133.375276,139.910109,I,Above,Flat,0,5701,,38.52081357,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30007,NJBF000062452,135 N AVOLYN AVE,Ventnor City,NJ,39.33948864,-74.48672115,RES1,3001,,17,NE,1932,1932,3102,2,1,1074.479059,1074.479059,3505,NO,40.91,47.34,3,8.28,6106,113.63847,123.414854,133.132131,139.689139,I,Above,Gable,0,5701,,44.12385121,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 30008,NJBF000062368,17 N PORTLAND AVE,Ventnor City,NJ,39.33931295,-74.48284157,RES1,3001,,17,NE,1950,1950,3102,2,1,2574.11098,2574.11098,3505,NO,40.32,54.61,3,5.47,6106,113.726469,123.485981,133.207391,139.763393,I,Above,Hip,0,5701,,47.46521111,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 30009,NJBF000067075,711 N SURREY AVE,Ventnor City,NJ,39.35197839,-74.48187138,RES3A,3001,,27,NE,1980,1980,3301,2,1,1109.152526,1109.152526,3505,NO,31.54,41.5,3,2.29,6106,113.582136,123.364135,133.085988,139.573174,I,Above,Gable,0,5701,,36.5198445,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30010,NJBF000064278,2 S NASHVILLE AVE,Ventnor City,NJ,39.34408463,-74.46975571,RES1,3001,,NaN,NE,1918,1918,3102,3,2,2076.272967,2076.272967,3507,NO,56.31,63.6,1,2.38,6106,113.951203,123.667529,133.404862,139.907592,I,Above,Hip,0,5701,,59.95166207,0,0,,,,1,1,,0.03,nav,1,1918,3,, 30011,NJBF000064258,302 N BURGHLEY AVE,Ventnor City,NJ,39.34403329,-74.48224581,RES1,3001,,17,NE,1958,1958,3102,2,1,1550.509415,1550.509415,3505,NO,32.07,42.2,3,2.79,6106,113.676607,123.444502,133.166769,139.696492,I,Above,Flat,0,5701,,37.13670822,0,0,,,,1,1,,0.03,nav,1,1958,2,, 30012,NJBF000064045,129 N DUDLEY AVE,Ventnor City,NJ,39.34341693,-74.47852162,RES1,3001,,17,NE,1925,1925,3102,2,1,3197.933592,3197.933592,3505,NO,34.94,45.88,3,5.86,6106,113.766956,123.517861,133.244402,139.772037,I,Above,Hip,0,5701,,40.40945824,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30013,NJBF000064064,5405 1/2 WINCHESTER,Ventnor City,NJ,39.34347671,-74.47379944,RES1,3001,,16,NE,1900,1900,3102,2,1,1208.324941,1208.324941,3505,NO,30.28,36.97,3,5.89,6106,113.870252,123.601734,133.333953,139.85102,I,Above,Flat,0,5701,,33.62515263,0,0,,,,1,1,,0.03,nav,1,1900,2,, 30014,NJBF000062189,25 N NEWPORT AVE,Ventnor City,NJ,39.33896076,-74.48410413,RES1,3001,,17,NE,1925,1925,3102,2,1,1100.495503,1100.495503,3505,NO,31.07,39.78,3,1.2,6106,113.703386,123.467369,133.187374,139.746267,I,Above,Gable,0,5701,,35.42320716,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30015,NJBF000065602,603 N CAMBRIDGE AVE,Ventnor City,NJ,39.34757311,-74.48630834,RES1,3001,,17,NE,1968,1968,3101,1,1,1346.355297,1346.355297,3505,NO,21.77,36.25,3,2.96,6106,113.540374,123.332988,133.050522,139.564828,I,Above,Hip,0,5701,,29.00684673,0,0,,,,1,1,,0.03,nav,1,1968,1,, 30016,NJBF000061947,6809 MONMOUTH AVE,Ventnor City,NJ,39.33852904,-74.48939569,RES1,3001,,NaN,NE,1969,0,3102,2,1,1800.68503,1800.68503,3505,NO,27.17,36.49,3,-1.85,6106,113.592413,123.377863,133.092323,139.653747,I,Above,Gable,0,5701,,31.82743769,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30017,NJBF000060543,114 S PRINCETON AVE,Ventnor City,NJ,39.33616017,-74.48016174,RES1,3001,,20,NE,2015,2015,3102,3,1,4354.638522,4354.638522,3505,NO,58.49,71.47,3,0.38,6106,113.828353,123.568751,133.292682,139.862796,I,Above,Gable,0,5701,,64.97815303,0,1.2,,,,1,1,,0.03,nav,1,2015,3,, 30018,NJBF000060589,101 S NEWPORT AVE,Ventnor City,NJ,39.33624117,-74.48187449,RES1,3001,,17,NE,1990,1990,3102,1,1,1749.858673,1749.858673,3505,NO,19.31,31.32,3,4.12,6106,113.789555,123.537321,133.259373,139.831368,I,Above,Hip,0,5701,,25.31227533,0,1.1,,,,1,1,,0.03,nav,1,1990,1,, 30019,NJBF000061191,25 N BUFFALO AVE,Ventnor City,NJ,39.33721828,-74.48709388,RES1,3001,,17,NE,1932,1932,3102,2,1,914.9123385,914.9123385,3505,NO,29.51,43.78,3,3.83,6106,113.661127,123.433441,133.150095,139.718817,I,Above,Flat,0,5701,,36.64489876,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 30020,NJBF000061152,23 N BUFFALO AVE,Ventnor City,NJ,39.33714975,-74.48704161,RES1,3001,,17,NE,1932,1932,3102,2,1,942.0540788,942.0540788,3505,NO,38.55,44.37,3,7.17,6106,113.663205,123.435123,133.151822,139.7209,I,Above,Flat,0,5701,,41.45852561,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 30021,NJBF000065126,5401 CALVERT AVE,Ventnor City,NJ,39.34619479,-74.47773287,RES1,3001,,17,NE,1960,1960,3102,1,1,1690.184488,1690.184488,3505,NO,18.08,32.84,3,1.02,6106,113.747916,123.501478,133.228923,139.740337,I,Above,Gable,0,5701,,25.45791309,0,0,,,,1,1,,0.03,nav,1,1960,1,, 30022,NJBF000064042,117 N OXFORD AVE,Ventnor City,NJ,39.34341165,-74.47760732,RES1,3001,,17,NE,1930,1930,3102,1,1,2277.602819,2277.602819,3505,NO,17.69,27.62,3,4.85,6106,113.787203,123.534284,133.261902,139.787862,I,Above,Flat,0,5701,,22.65610684,0,0,,,,1,1,,0.03,nav,1,1930,1,, 30023,NJBF000063937,605 KINGSLEY DRIVE,Ventnor City,NJ,39.3431386,-74.49364372,RES1,3001,,17,NE,1987,1987,3102,2,1,1754.067065,1754.067065,3505,NO,18.92,30.9,3,-2.96,6106,113.436206,123.251049,132.961432,139.498302,I,Above,Gable,0,5701,,24.90643435,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, 30024,NJBF000062604,218 N WISSAHICKON AVE,Ventnor City,NJ,39.33979426,-74.49087407,RES1,3001,,17,NE,1950,1950,3102,1,1,1183.976319,1183.976319,3505,NO,19.34,28.82,3,7.67,6106,113.542557,123.337484,133.050562,139.605102,I,Above,Hip,0,5701,,24.07627782,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30025,NJBF000062468,6308 WINCHESTER AVE,Ventnor City,NJ,39.33952039,-74.48288821,RES1,3001,,45,NE,1950,1950,3102,2,2,907.4583669,907.4583669,3505,NO,34.7,43.94,3,-0.32,6106,113.722661,123.482868,133.204247,139.759158,I,Above,Flat,0,5701,,39.31923558,0,0,,,,1,1,,0.03,nav,1,1950,2,, 30026,NJBF000062373,103 N NEWPORT AVE,Ventnor City,NJ,39.33932128,-74.48436196,RES1,3001,,17,NE,1925,1925,3102,2,1,1212.57239,1212.57239,3505,NO,32.34,38.92,3,7.05,6106,113.692823,123.458777,133.178539,139.735638,I,Above,Flat,0,5701,,35.62596479,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30027,NJBF000062341,6203 VENTNOR AVE,Ventnor City,NJ,39.33925086,-74.4805841,RES1,3001,,17,NE,1920,1920,3102,2,1,1560.558158,1560.558158,3505,NO,36.04,41.1,3,4.65,6106,113.777096,123.526967,133.250877,139.804533,I,Above,Hip,0,5701,,38.5703218,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30028,NJBF000062384,105 S DUDLEY AVE,Ventnor City,NJ,39.33933951,-74.47488101,RES1,3001,,17,NE,1929,1929,3102,2,1,1879.046985,1879.046985,3505,NO,26.68,32.98,3,1.2,6106,113.90148,123.62788,133.358427,139.899589,I,Above,Flat,0,5701,,29.83144348,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 30029,NJBF000062290,5905 ATLANTIC AVE,Ventnor City,NJ,39.33915797,-74.47704328,RES1,3001,,17,NE,1960,1960,3102,1,1,3654.681315,3654.681315,3505,NO,19.42,28.42,3,8.9,6110,113.85635,123.591242,133.319205,139.866718,I,Above,Hip,0,5701,,23.91746296,0,1.2,,,,1,1,,0.35,nav,1,1960,1,, 30030,NJBF000062014,118 N TROY AVE,Ventnor City,NJ,39.33864391,-74.48723809,RES1,3001,,17,NE,1948,1948,3102,2,1,1328.402831,1328.402831,3505,NO,41.56,46.85,3,5.94,6106,113.63851,123.415022,133.131689,139.693096,I,Above,Gable,0,5701,,44.20676353,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 30031,NJBF000061793,12 S HARVARD AVE,Ventnor City,NJ,39.338264,-74.48035058,RES1,3001,,17,NE,1930,1930,3102,2,1,2087.600756,2087.600756,3505,NO,31.69,38.22,3,-2,6106,113.795568,123.542051,133.266104,139.824853,I,Above,Hip,0,5701,,34.95512144,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30032,NJBF000061538,4-6 S PORTLAND AVE,Ventnor City,NJ,39.33781602,-74.48213533,COM1,3001,,NaN,ME,1935,1910,3401,3,3,2198.975166,2198.975166,3507,NO,45.35,56.71,1,1.2,6106,113.762334,123.515184,133.237195,139.800735,I,Above,Hip,0,NaN,,51.02938812,0,1.1,,,,1,1,,0.03,nav,1,1935,3,, 30033,NJBF000060577,123 N SWARTHMORE AVE,Ventnor City,NJ,39.33621691,-74.49280989,RES1,3001,,17,NE,1948,1948,3102,1,1,2041.570121,2041.570121,3505,NO,15.51,29,3,1.25,6106,113.548714,123.342899,133.053772,139.623019,I,Above,Hip,0,5701,,22.25572613,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30034,NJBF000062986,120 N SACRAMENTO AVE,Ventnor City,NJ,39.34064487,-74.48303204,RES1,3001,,17,NE,1920,1920,3102,2,1,1732.54466,1732.54466,3505,NO,41.03,46.63,3,4.03,6106,113.704345,123.467849,133.189158,139.738061,I,Above,Flat,0,5701,,43.83412674,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30035,NJBF000062864,113 N PRINCETON AVE,Ventnor City,NJ,39.34038154,-74.48304522,RES1,3001,,17,NE,1900,1900,3102,2,1,1380.952982,1380.952982,3505,NO,31.69,37.6,3,4.42,6106,113.70759,123.470526,133.191803,139.742151,I,Above,Gable,0,5701,,34.64373554,0,0,,,,1,1,,0.03,nav,1,1900,2,, 30036,NJBF000062901,115 N PRINCETON AVE,Ventnor City,NJ,39.34046217,-74.48309992,RES1,3001,,17,NE,1925,1925,3102,2,1,1175.568043,1175.568043,3505,NO,27.08,35.01,3,0.42,6106,113.705302,123.468659,133.189882,139.739843,I,Above,Hip,0,5701,,31.04496513,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30037,NJBF000065467,417 N OXFORD AVE,Ventnor City,NJ,39.34716266,-74.48063343,RES1,3001,,17,NE,1929,1929,3102,2,1,789.585736,789.585736,3505,NO,31.63,43.69,3,0.04,6106,113.671276,123.438958,133.162924,139.673847,I,Above,Gable,0,5701,,37.66155698,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 30038,NJBF000063978,5407 WINCHESTER AVE,Ventnor City,NJ,39.34324536,-74.47374954,RES1,3001,,17,NE,1920,1920,3102,2,1,1417.292111,1417.292111,3505,NO,30.66,36.76,3,1.12,6106,113.87439,123.605158,133.337426,139.855558,I,Above,Hip,0,5701,,33.71150581,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30039,NJBF000063493,633 KINGSLEY DRIVE,Ventnor City,NJ,39.34187177,-74.49530553,RES1,3001,,17,NE,1980,1980,3102,2,1,1453.947656,1453.947656,3505,NO,31.68,44.37,3,3.6,6106,113.416366,123.235519,132.94437,139.486022,I,Above,Flat,0,5701,,38.02621659,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 30040,NJBF000058000,108 S WASHINGTON AVE,Ventnor City,NJ,39.33153462,-74.49025025,RES1,3001,,19,NE,1970,1970,3102,2,1,1577.739924,1577.739924,3505,NO,27.94,41.92,3,3.3,6106,113.670374,123.440822,133.153207,139.743677,I,Above,Hip,0,5701,,34.92751682,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30041,NJBF000062799,2 S DORSET AVE,Ventnor City,NJ,39.34024715,-74.47744653,RES1,3001,,17,NE,1930,1930,3102,2,1,2294.072926,2294.072926,3505,NO,22.7,31.34,3,1.35,6106,113.83283,123.572002,133.299614,139.842188,I,Above,Hip,0,5701,,27.02033219,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 30042,NJBF000063745,5709 EDGEWATER AVE,Ventnor City,NJ,39.34258764,-74.47781661,RES1,3001,,47,NE,1960,1960,3102,2,2,1523.762672,1523.762672,3505,NO,38.41,47.46,3,0.75,6106,113.793475,123.539591,133.266934,139.797705,I,Above,Hip,0,5701,,42.93732044,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30043,NJBF000058847,104 S LAFAYETTE AVE,Ventnor City,NJ,39.33304918,-74.48781746,RES1,3001,,17,NE,1977,1977,3102,2,1,1788.094973,1788.094973,3505,NO,35.85,41.17,3,2.84,6110,113.702745,123.467091,133.182251,139.77028,I,Above,Flat,0,5701,,38.50822595,0,1.1,,,,1,1,,0.35,nav,1,1977,2,, 30044,NJBF000065920,505 N SOMERSET AVE,Ventnor City,NJ,39.3484445,-74.48081133,RES1,3001,,17,NE,1955,1955,3102,1,1,1089.376949,1089.376949,3507,NO,21.42,33.11,1,2.67,6106,113.650762,123.421737,133.145375,139.649751,I,Above,Gable,0,5701,,27.26604077,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 30045,NJBF000063755,2 N SUFFOLK AVE,Ventnor City,NJ,39.34261938,-74.47419167,RES1,3001,,17,NE,1927,1927,3102,1,1,2679.69907,2679.69907,3505,NO,13.86,19.16,3,0.66,6106,113.872928,123.604117,133.33581,139.858284,I,Above,Hip,0,5701,,16.50776147,0,0,,,,1,1,,0.03,nav,1,1927,1,, 30046,NJBF000060199,4 N ROSBOROUGH AVE,Ventnor City,NJ,39.33557467,-74.488546,RES1,3001,,17,NE,1920,1920,3102,2,1,1366.573097,1366.573097,3505,NO,28.45,41.8,3,-1.25,6106,113.651663,123.4259,133.140834,139.71694,I,Above,Gable,0,5701,,35.12459778,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30047,NJBF000063926,105 S AUSTIN AVE,Ventnor City,NJ,39.343088,-74.4669915,RES3B,3001,,17,E,1920,1920,3303,3,1,1356.388725,1356.388725,3504,NO,50.25,56.82,-4,0,6106,114.025012,123.728014,133.468872,139.967395,I,Above,Hip,0,NaN,,53.53652324,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 30048,NJBF000066785,609 N SURREY AVE,Ventnor City,NJ,39.35076951,-74.48090264,RES3A,3001,,17,NE,1975,1975,3301,2,1,995.8316474,995.8316474,3505,NO,39.69,46.57,3,8.09,6106,113.618904,123.394657,133.117868,139.610133,I,Above,Flat,0,5701,,43.13240848,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30049,NJBF000059217,103 S ROSBOROUGH AVE,Ventnor City,NJ,39.33378601,-74.48647929,RES1,3001,,17,NE,1962,1962,3102,2,1,1478.066011,1478.066011,3505,NO,28.05,35.47,3,4.27,6110,113.72196,123.482651,133.199335,139.785225,I,Above,Hip,0,5701,,31.75967012,0,1.1,,,,1,1,,0.35,nav,1,1962,2,, 30050,NJBF000066761,808 N CORNWALL AVE,Ventnor City,NJ,39.35070278,-74.4885019,RES1,3001,,17,NE,1977,1977,3101,1,1,2142.910131,2142.910131,3505,NO,25.4,39.42,3,8.48,6106,113.451383,123.259457,132.974104,139.473241,I,Above,Gable,0,5701,,32.41392834,0,0,,,,1,1,,0.03,nav,1,1977,1,, 30051,NJBF000066716,806 N CORNWALL AVE,Ventnor City,NJ,39.350562,-74.48838956,RES1,3001,,17,NE,1977,1977,3101,1,1,2079.056406,2079.056406,3505,NO,21.52,30.84,3,2.11,6106,113.455671,123.263003,132.977799,139.477616,I,Above,Hip,0,5701,,26.17805923,0,0,,,,1,1,,0.03,nav,1,1977,1,, 30052,NJBF000063114,112 N CAMBRIDGE AVE,Ventnor City,NJ,39.34092,-74.481744,RES1,3001,,17,NE,1919,1919,3102,1,1,1483.629316,1483.629316,3505,NO,12.66,25.29,3,-0.29,6106,113.729083,123.487804,133.210557,139.756591,I,Above,Hip,0,5701,,18.97261986,0,1.1,,,,1,1,,0.03,nav,1,1919,1,, 30053,NJBF000063011,109 N SACRAMENTO AVE,Ventnor City,NJ,39.34069467,-74.48253411,RES1,3001,,17,NE,2014,2014,3102,3,1,901.7814015,901.7814015,3505,NO,47.93,62.8,3,4.07,6106,113.714666,123.476186,133.198047,139.74619,I,Above,Gable,0,5701,,55.36568121,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 30054,NJBF000062102,209 1/2 N LAFAYETTE AVE,Ventnor City,NJ,39.33879585,-74.49289073,RES1,3001,,17,NE,1990,1990,3102,2,1,971.6958551,971.6958551,3505,NO,28.61,42.11,3,6.63,6106,113.511526,123.31269,133.023749,139.581573,I,Above,Hip,0,5701,,35.35625469,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 30055,NJBF000062993,11 S OXFORD AVE,Ventnor City,NJ,39.34065288,-74.47466901,RES1,3001,,18,NE,1945,1945,3102,2,1,2235.548225,2235.548225,3505,NO,30.5,44.46,3,1.58,6106,113.888561,123.617202,133.348158,139.881994,I,Above,Hip,0,5701,,37.48060138,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 30056,NJBF000067132,711 N VICTORIA AVE,Ventnor City,NJ,39.35222666,-74.48132262,RES1,3001,,27,NE,1980,1980,3102,2,1,944.2281636,944.2281636,3505,NO,21.13,28.73,3,-2.8,6106,113.591115,123.371234,133.093684,139.578895,I,Above,Gable,0,5701,,24.92955316,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30057,NJBF000064139,21 S NASHVILLE AVE,Ventnor City,NJ,39.343683,-74.468893,RES1,3001,,17,NE,1919,1919,3102,2,1,1308.277239,1308.277239,3505,NO,41.29,52.58,3,8.63,6106,113.975445,123.687405,133.425829,139.927819,I,Above,Gable,0,5701,,46.93654442,0,0,,,,1,1,,0.03,nav,1,1919,2,, 30058,NJBF000064105,23 S NASHVILLE AVE,Ventnor City,NJ,39.3435908,-74.46878062,RES1,3001,,17,NE,1920,1920,3102,2,1,1744.734258,1744.734258,3505,NO,46.31,54.57,3,8.68,6106,113.979114,123.69042,133.428983,139.931057,I,Above,Hip,0,5701,,50.44079858,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30059,NJBF000066249,704 N BURGHLEY AVE,Ventnor City,NJ,39.34930258,-74.48647809,RES1,3001,,17,NE,1965,1965,3101,2,1,1484.024325,1484.024325,3505,NO,36.89,43.61,3,7.12,6106,113.514233,123.310966,133.028071,139.533436,I,Above,Gable,0,5701,,40.25110945,0,0,,,,1,1,,0.03,nav,1,1965,2,, 30060,NJBF000067149,5215 WELLINGTON AVE,Ventnor City,NJ,39.35233248,-74.48013435,GOV2,3001,,NaN,E,1970,1970,3401,1,1,6206.609086,6206.609086,3507,NO,14.03,19.19,1,0.4,6106,113.616097,123.391393,133.115238,139.598309,I,Above,Hip,0,NaN,,16.60911966,0,0,,,,1,1,,0.03,nav,1,1970,1,, 30061,NJBF000062885,5615 ATLANTIC AVE,Ventnor City,NJ,39.3404366,-74.47449111,RES1,3001,,17,NE,1905,1905,3102,2,1,5357.608882,5357.608882,3505,NO,31.47,37.69,3,7.32,6106,113.895363,123.622765,133.353913,139.888391,I,Above,Hip,0,5701,,34.57778402,0,1.2,,,,1,1,,0.03,nav,1,1905,2,, 30062,NJBF000067114,808 MARSHALL CT,Ventnor City,NJ,39.35215616,-74.48627895,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,9655.440842,9655.440842,3505,NO,30.35,39.89,3,1.76,6106,113.482207,123.283301,133.000068,139.490499,I,Above,Flat,0,NaN,,35.12135442,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30063,NJBF000067105,808 MARSHALL CT,Ventnor City,NJ,39.35212387,-74.48508867,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,8430.278698,8430.278698,3505,NO,21.38,27.56,3,4.79,6106,113.508999,123.304938,133.02305,139.512744,I,Above,Flat,0,NaN,,24.468792,0,0,,,,1,1,,0.03,nav,1,1972,1,, 30064,NJBF000067235,808 MARSHALL CT,Ventnor City,NJ,39.35269583,-74.48348597,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,6577.987776,6577.987776,3505,NO,19.42,26.35,3,6.85,6110,113.537292,123.327384,133.047204,139.532453,I,Above,Flat,0,NaN,,22.88400835,0,0,,,,1,1,,0.35,nav,1,1972,1,, 30065,NJBF000067394,808 MARSHALL CT,Ventnor City,NJ,39.35332433,-74.48364189,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,11698.91454,11698.91454,3505,NO,41.81,50.44,3,6.22,6106,113.525924,123.317744,133.037237,139.519392,I,Above,Flat,0,NaN,,46.12575248,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30066,NJBF000067308,808 MARSHALL CT,Ventnor City,NJ,39.35301386,-74.48376954,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,3835.495747,3835.495747,3505,NO,12.13,17.99,3,-0.04,6106,113.52699,123.318832,133.03825,139.522137,I,Above,Flat,0,NaN,,15.0610221,0,0,,,,1,1,,0.03,nav,1,1972,1,, 30067,NJBF000067249,808 MARSHALL CT,Ventnor City,NJ,39.35274357,-74.48496916,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,19104.72412,19104.72412,3505,NO,27.75,37.3,3,8.26,6106,113.50382,123.300317,133.018424,139.504808,I,Above,Flat,0,NaN,,32.52968218,0,0,,,,1,1,,0.03,nav,1,1972,1,, 30068,NJBF000067254,808 MARSHALL CT,Ventnor City,NJ,39.3527611,-74.48424885,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,2357.627692,2357.627692,3505,NO,26.13,38.53,3,2.16,6106,113.519565,123.313017,133.031942,139.517598,I,Above,Flat,0,NaN,,32.33299316,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30069,NJBF000062221,6414 WINCHESTER AVE,Ventnor City,NJ,39.3390255,-74.483826,RES1,3001,,17,NE,1925,1925,3102,2,1,1471.409683,1471.409683,3505,NO,43.32,57.78,3,8.7,6106,113.708654,123.471618,133.191929,139.750294,I,Above,Hip,0,5701,,50.54938773,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30070,NJBF000060269,111 N SWARTHMORE AVE,Ventnor City,NJ,39.335689,-74.492404,RES1,3001,,17,NE,1925,1925,3102,2,1,793.5779294,793.5779294,3505,NO,22.68,36.64,3,0.11,6106,113.564974,123.356016,133.067199,139.639124,I,Above,Flat,0,5701,,29.65769028,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30071,NJBF000062811,5401 BOARDWALK,Ventnor City,NJ,39.34027091,-74.47141908,RES1,3001,,19,NE,1999,1999,3102,3,1,2296.343604,2296.343604,3505,NO,33.06,41.63,3,-1.03,6106,113.965128,123.679568,133.414466,139.94081,I,Above,Flat,0,5701,,37.34870576,0,1.2,,,,1,1,,0.03,nav,1,1999,3,, 30072,NJBF000060244,6627 ATLANTIC AVE,Ventnor City,NJ,39.33564193,-74.48418151,RES1,3001,,17,NE,1950,1950,3102,2,1,1556.361151,1556.361151,3505,NO,34.86,48.22,3,7.18,6110,113.746929,123.50285,133.222304,139.799173,I,Above,Gable,0,5701,,41.53893311,0,0.1,,,,1,1,,0.35,nav,1,1950,2,, 30073,NJBF000062296,104 N NEWPORT AVE,Ventnor City,NJ,39.339169,-74.48468,RES1,3001,,17,NE,1928,1928,3102,2,1,917.7683098,917.7683098,3505,NO,37.58,51.85,3,8.56,6106,113.687861,123.454791,133.174198,139.732289,I,Above,Gable,0,5701,,44.71421191,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 30074,NJBF000066736,805 N CORNWALL AVE,Ventnor City,NJ,39.35061715,-74.48787788,RES1,3001,,17,NE,2010,2010,3101,3,1,1910.675229,1910.675229,3505,NO,42.1,51.97,3,4.94,6106,113.466328,123.271549,132.986888,139.486196,I,Above,Flat,0,5701,,47.03380156,0,0,,,,1,1,,0.03,nav,1,2010,3,, 30075,NJBF000066925,,Ventnor City,NJ,39.35131402,-74.48928621,RES1,3001,,NaN,NE,1969,0,3103,5,1,1482.647461,1482.647461,3505,NO,59.63,72.64,3,4.92,6106,113.426181,123.23876,132.952433,139.448725,I,Above,Flat,0,5701,,66.13198521,0,0,,,,1,1,,0.03,nav,1,1969,5,, 30076,NJBF000063833,158 N DERBY AVE,Ventnor City,NJ,39.34283623,-74.48034427,RES1,3001,,14,NE,1920,1920,3102,1,1,1523.608907,1523.608907,3505,NO,13.43,25.84,3,0.78,6106,113.734444,123.491678,133.216098,139.749828,I,Above,Flat,0,5701,,19.63473114,0,0,,,,1,1,,0.03,nav,1,1920,1,, 30077,NJBF000064317,6003 CALVERT AVE,Ventnor City,NJ,39.34419101,-74.48186583,RES1,3001,,17,NE,1953,1953,3102,2,1,1022.655297,1022.655297,3505,NO,27.19,37.87,3,-2.37,6106,113.682918,123.449554,133.172248,139.700677,I,Above,Gable,0,5701,,32.52875737,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 30078,NJBF000066345,716 N CAMBRIDGE AVE,Ventnor City,NJ,39.34952895,-74.48845704,RES1,3001,,17,NE,1975,1975,3101,2,1,1880.532036,1880.532036,3505,NO,33.09,39.37,3,0.65,6106,113.467441,123.273128,132.98805,139.493213,I,Above,Flat,0,5701,,36.23084635,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 30079,NJBF000066844,705-709 N DUDLEY AVE,Ventnor City,NJ,39.35098229,-74.48437708,RES3C,3001,,NaN,ME,1965,1965,3301,2,1,6692.408242,6692.408242,3505,NO,41.07,56,3,3.89,6106,113.539289,123.330155,133.049308,139.544327,I,Above,Hip,0,NaN,,48.53555718,0,0,,,,1,1,,0.03,nav,1,1965,2,, 30080,NJBF000066661,705-709 N DUDLEY AVE,Ventnor City,NJ,39.35039918,-74.48391154,RES3C,3001,,NaN,ME,1965,1965,3301,2,1,6577.88506,6577.88506,3505,NO,36.54,49.37,3,3.13,6106,113.557031,123.344849,133.064636,139.562272,I,Above,Hip,0,NaN,,42.95057631,0,0,,,,1,1,,0.03,nav,1,1965,2,, 30081,NJBF000066519,802 N CAMBRIDGE AVE,Ventnor City,NJ,39.34997033,-74.48879288,RES1,3001,,17,NE,1978,1978,3101,1,1,1988.808157,1988.808157,3505,NO,21.27,28.62,3,4.46,6106,113.454317,123.262291,132.976772,139.479785,I,Above,Flat,0,5701,,24.94442878,0,0,,,,1,1,,0.03,nav,1,1978,1,, 30082,NJBF000066320,711 N CAMBRIDGE AVE,Ventnor City,NJ,39.34946309,-74.48780555,RES1,3001,,17,NE,1965,1965,3101,1,1,2249.080672,2249.080672,3505,NO,18.03,25.02,3,3.07,6106,113.48273,123.285481,133.001115,139.506351,I,Above,Gable,0,5701,,21.5261305,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 30083,NJBF000064383,26 S VASSAR SQUARE,Ventnor City,NJ,39.34435425,-74.46622307,RES3B,3001,,NaN,ME,1930,1930,3301,3,1,3001.681529,3001.681529,3504,NO,42.76,51.14,-4,0,6106,114.025278,123.727979,133.469944,139.960046,I,Above,Flat,0,NaN,,46.95114431,0,0,,,,1,1,,0.03,nav,1,1930,3,, 30084,NJBF000064424,10 S MARION AVE,Ventnor City,NJ,39.34445542,-74.4680063,RES1,3001,,17,NE,1905,1905,3102,2,1,1320.363902,1320.363902,3504,NO,29.58,40.23,-4,0,6106,113.984809,123.694875,133.434495,139.93,I,Above,Gable,0,5701,,34.9029082,0,0,,,,1,1,,0.03,nav,1,1905,2,, 30085,NJBF000066390,705 N BURGHLEY AVE,Ventnor City,NJ,39.34963217,-74.48624051,RES1,3001,,17,NE,1967,1967,3101,2,1,1090.816864,1090.816864,3505,NO,31.36,38.42,3,1.32,6106,113.515255,123.311596,133.028907,139.532409,I,Above,Flat,0,5701,,34.89093355,0,0,,,,1,1,,0.03,nav,1,1967,2,, 30086,NJBF000066530,608 N SOMERSET AVE,Ventnor City,NJ,39.34999338,-74.48251838,RES1,3001,,17,NE,1972,1972,3102,2,1,1504.708035,1504.708035,3507,NO,38.87,53.42,1,0.25,6106,113.593091,123.374235,133.095685,139.594005,I,Above,Gable,0,5701,,46.14479767,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30087,NJBF000065976,509 N OXFORD AVE,Ventnor City,NJ,39.348589,-74.481754,RES1,3001,,17,NE,1965,1965,3102,2,1,835.0534134,835.0534134,3507,NO,27.79,40.66,1,1.96,6106,113.628037,123.403273,133.125798,139.63062,I,Above,Flat,0,5701,,34.22701633,0,0,,,,1,1,,0.03,nav,1,1965,2,, 30088,NJBF000066438,612 N DUDLEY AVE,Ventnor City,NJ,39.3497531,-74.48410398,RES1,3001,,NaN,NE,1969,0,3102,2,1,2067.957332,2067.957332,3507,NO,35.27,43.59,1,0.8,6106,113.561051,123.348483,133.06816,139.569359,I,Above,Flat,0,5701,,39.42804898,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30089,NJBF000060155,122 N MARTINDALE AVE,Ventnor City,NJ,39.33549236,-74.49414967,RES1,3001,,18,NE,2017,2017,3102,2,1,846.2706071,846.2706071,3505,NO,23.47,37.07,3,-2.96,6106,113.529164,123.327193,133.03671,139.607246,I,Above,Gable,0,5701,,30.26913982,0,0,,,,1,1,,0.03,nav,1,2017,2,, 30090,NJBF000066454,707 N BURGHLEY AVE,Ventnor City,NJ,39.34978576,-74.48633868,RES1,3001,,17,NE,1975,1975,3101,1,1,1682.108137,1682.108137,3505,NO,24.18,36.54,3,8.38,6106,113.511105,123.308157,133.025334,139.528097,I,Above,Flat,0,5701,,30.35715847,0,0,,,,1,1,,0.03,nav,1,1975,1,, 30091,NJBF000066238,610 N DORSET AVE,Ventnor City,NJ,39.34926366,-74.48468449,RES1,3001,,17,NE,1968,1968,3101,2,1,1377.015105,1377.015105,3505,NO,19.3,32.44,3,-1.76,6106,113.554486,123.343465,133.062565,139.566838,I,Above,Gable,0,5701,,25.86819559,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 30092,NJBF000065473,504 N DERBY AVE,Ventnor City,NJ,39.34717394,-74.48393526,RES1,3001,,17,NE,1957,1957,3101,2,1,2649.229303,2649.229303,3505,NO,23.16,30.25,3,1.3,6106,113.598104,123.379778,133.099976,139.614619,I,Above,Hip,0,5701,,26.70206669,0,1.1,,,,1,1,,0.03,nav,1,1957,2,, 30093,NJBF000066142,517 N OXFORD AVE,Ventnor City,NJ,39.34903299,-74.48210819,RES1,3001,,17,NE,1963,1963,3102,1,1,1268.625629,1268.625629,3507,NO,15.75,23.62,1,1.74,6106,113.614486,123.392076,133.114138,139.617039,I,Above,Flat,0,5701,,19.68242351,0,0,,,,1,1,,0.03,nav,1,1963,1,, 30094,NJBF000065946,5400 FREMONT AVE,Ventnor City,NJ,39.34850922,-74.47960091,RES1,3001,,17,NE,1987,1987,3102,2,1,1597.746887,1597.746887,3505,NO,41.09,49.88,3,3.85,6106,113.676672,123.442688,133.167742,139.67004,I,Above,Flat,0,5701,,45.48513394,0,0,,,,1,1,,0.03,nav,1,1987,2,, 30095,NJBF000065949,611 N CORNWALL AVE,Ventnor City,NJ,39.3485195,-74.4862155,RES1,3001,,17,NE,1968,1968,3101,2,1,1195.306436,1195.306436,3505,NO,32.46,38.3,3,5.09,6106,113.53014,123.324235,133.041746,139.551038,I,Above,Flat,0,5701,,35.38048578,0,0,,,,1,1,,0.03,nav,1,1968,2,, 30096,NJBF000064184,20 S OAKLAND AVE,Ventnor City,NJ,39.34380733,-74.46861684,RES1,3001,,17,NE,1925,1925,3102,3,1,1721.234628,1721.234628,3504,NO,39.62,44.66,-4,0,6106,113.97988,123.690999,133.429787,139.930313,I,Above,Gable,0,5701,,42.13812194,0,0,,,,1,1,,0.03,nav,1,1925,3,, 30097,NJBF000066148,701 N CORNWALL AVE,Ventnor City,NJ,39.34905078,-74.48661927,RES1,3001,,17,NE,1965,1965,3101,2,1,1476.361101,1476.361101,3505,NO,27.78,40.07,3,0.1,6106,113.514354,123.311209,133.0282,139.534963,I,Above,Hip,0,5701,,33.92900859,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 30098,NJBF000066738,607 N SURREY AVE,Ventnor City,NJ,39.35062999,-74.48079257,RES1,3001,,17,NE,1975,1975,3102,2,1,1047.492138,1047.492138,3505,NO,28.14,40.79,3,0.05,6106,113.623122,123.398156,133.121519,139.61437,I,Above,Gable,0,5701,,34.46811052,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30099,NJBF000062553,104 S OXFORD AVE,Ventnor City,NJ,39.33969146,-74.47448365,RES1,3001,,17,NE,1929,1929,3102,3,1,2243.62602,2243.62602,3505,NO,54.98,65.28,3,8.87,6106,113.905503,123.631109,133.362178,139.900462,I,Above,Hip,0,5701,,60.12923681,0,0,,,,1,1,,0.03,nav,1,1929,3,, 30100,NJBF000066183,711 N HARVARD AVE,Ventnor City,NJ,39.34913823,-74.48845028,RES1,3001,,17,NE,1975,1975,3101,2,1,1489.385768,1489.385768,3505,NO,30.68,38.28,3,-0.07,6106,113.472633,123.277542,132.992541,139.499716,I,Above,Gable,0,5701,,34.48255404,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 30101,NJBF000059025,7 S WASHINGTON AVE,Ventnor City,NJ,39.33338757,-74.49127962,RES1,3001,,17,NE,1945,1945,3102,1,1,1466.027,1466.027,3505,NO,12.71,26.8,3,-2.54,6106,113.621739,123.401743,133.11358,139.696065,I,Above,Hip,0,5701,,19.75578818,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 30102,NJBF000066197,519 N SOMERSET AVE,Ventnor City,NJ,39.34916921,-74.48135613,RES1,3001,,17,NE,1966,1966,3102,1,1,1284.328483,1284.328483,3507,NO,19.17,30,1,2.3,6106,113.629373,123.404047,133.126962,139.628225,I,Above,Hip,0,5701,,24.58515639,0,0,,,,1,1,,0.03,nav,1,1966,1,, 30103,NJBF000065922,506 N SOMERSET AVE,Ventnor City,NJ,39.34844613,-74.48127489,RES1,3001,,17,NE,1967,1967,3102,1,1,1330.020668,1330.020668,3507,NO,11.86,21.27,1,1.14,6106,113.640476,123.413411,133.136508,139.641485,I,Above,Gable,0,5701,,16.56465752,0,0,,,,1,1,,0.03,nav,1,1967,1,, 30104,NJBF000067629,801 N LITTLE ROCK AVE,Ventnor City,NJ,39.35401468,-74.4819608,RES3A,3001,,28,NE,1999,1999,3301,2,1,2911.263404,2911.263404,3505,NO,32.62,44.19,3,4.54,6106,113.554491,123.340324,133.061621,139.538358,I,Above,Gable,0,5701,,38.40128212,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 30105,NJBF000067757,801 N LITTLE ROCK AVE,Ventnor City,NJ,39.3543945,-74.482281,RES3A,3001,,28,NE,1999,1999,3301,2,1,2475.567959,2475.567959,3505,NO,27.3,35.05,3,-2.54,6106,113.542663,123.330466,133.051289,139.526449,I,Above,Flat,0,5701,,31.17921545,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 30106,NJBF000067555,801 N LITTLE ROCK AVE,Ventnor City,NJ,39.35381793,-74.48179321,RES3A,3001,,28,NE,1999,1999,3301,2,1,2731.368036,2731.368036,3505,NO,44.73,49.81,3,6.03,6106,113.560679,123.345479,133.067023,139.544574,I,Above,Flat,0,5701,,47.26756287,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 30107,NJBF000067482,801 N LITTLE ROCK AVE,Ventnor City,NJ,39.35362707,-74.48166334,RES3A,3001,,28,NE,1999,1999,3301,2,1,2712.365926,2712.365926,3505,NO,32.97,42.66,3,6.23,6106,113.565953,123.349888,133.071631,139.55001,I,Above,Hip,0,5701,,37.81656457,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 30108,NJBF000065446,501 N DERBY AVE,Ventnor City,NJ,39.34710526,-74.48326577,RES1,3001,,17,NE,1965,1965,3101,1,1,1882.348061,1882.348061,3505,NO,15.7,24.67,3,3.92,6106,113.613804,123.392497,133.113452,139.627823,I,Above,Flat,0,5701,,20.18754821,0,0,,,,1,1,,0.03,nav,1,1965,1,, 30109,NJBF000065420,513 N CAMBRIDGE AVE,Ventnor City,NJ,39.34701508,-74.48584869,RES1,3001,,17,NE,1964,1964,3101,1,1,1533.092737,1533.092737,3505,NO,18.35,30.42,3,7.07,6106,113.5578,123.347319,133.065416,139.582373,I,Above,Gable,0,5701,,24.38061829,0,0,,,,1,1,,0.03,nav,1,1964,1,, 30110,NJBF000059720,101 S BUFFALO AVE,Ventnor City,NJ,39.33473315,-74.4850647,RES1,3001,,18,NE,1925,1925,3102,2,1,1959.568456,1959.568456,3505,NO,26.52,37.16,3,4.49,6110,113.739996,123.49725,133.215599,139.797347,I,Above,Hip,0,5701,,31.83934503,0,0,,,,1,1,,0.35,nav,1,1925,2,, 30111,NJBF000059639,103 S BUFFALO AVE,Ventnor City,NJ,39.33459547,-74.48496185,RES1,3001,,17,NE,1985,1985,3102,2,1,2052.798509,2052.798509,3505,NO,28.07,38.89,3,-0.21,6106,113.744169,123.500622,133.219051,139.801521,I,Above,Hip,0,5701,,33.47678113,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 30112,NJBF000060654,,Ventnor City,NJ,39.33636139,-74.48781842,RES1,3001,,NaN,NE,1920,0,3102,2,1,2162.242955,2162.242955,3505,NO,32.42,47.24,3,-0.74,6106,113.656901,123.430092,133.145886,139.718648,I,Above,Hip,0,5701,,39.82693092,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30113,NJBF000065923,701 N HARVARD AVE,Ventnor City,NJ,39.34844656,-74.48785176,RES1,3001,,17,NE,1987,1987,3101,1,1,2609.683892,2609.683892,3505,NO,20.59,27.48,3,6.87,6106,113.494822,123.295808,133.011556,139.522075,I,Above,Hip,0,5701,,24.03279277,0,1.2,,,,1,1,,0.03,nav,1,1987,1,, 30114,NJBF000065874,,Ventnor City,NJ,39.34832817,-74.47954556,RES1,3001,,NaN,NE,1975,0,3102,2,1,766.0950392,766.0950392,3505,NO,45.02,58.85,3,7.39,6106,113.680221,123.445654,133.170791,139.67396,I,Above,Gable,0,5701,,51.93051459,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30115,NJBF000065898,,Ventnor City,NJ,39.34838493,-74.47960942,RES1,3001,,NaN,NE,1981,0,3102,2,1,510.422556,510.422556,3505,NO,31.85,38.12,3,2.42,6106,113.678094,123.443902,133.168959,139.671923,I,Above,Flat,0,5701,,34.98554692,0,0,,,,1,1,,0.03,nav,1,1981,2,, 30116,NJBF000065802,507 N DUDLEY AVE,Ventnor City,NJ,39.34815352,-74.48227717,RES1,3001,,17,NE,1956,1956,3102,1,1,1772.637461,1772.637461,3507,NO,10.66,21.05,1,-0.41,6106,113.622084,123.39868,133.120654,139.628396,I,Above,Hip,0,5701,,15.85484792,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 30117,NJBF000065801,502 N SOMERSET AVE,Ventnor City,NJ,39.348151,-74.48106876,RES1,3001,,17,NE,1965,1965,3102,1,1,1686.474165,1686.474165,3507,NO,16.69,31.31,1,-0.46,6106,113.64884,123.420328,133.143697,139.649967,I,Above,Flat,0,5701,,23.99802968,0,0,,,,1,1,,0.03,nav,1,1965,1,, 30118,NJBF000059697,7105 VENTNOR AVE,Ventnor City,NJ,39.33470044,-74.48990022,RES1,3001,,17,NE,1920,1920,3102,2,1,1725.577107,1725.577107,3505,NO,34.94,46.55,3,3.45,6106,113.633906,123.411588,133.125024,139.703878,I,Above,Hip,0,5701,,40.74254008,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30119,NJBF000065752,408 N SURREY AVE,Ventnor City,NJ,39.34799934,-74.47917062,RES1,3001,,17,NE,1978,1978,3102,2,1,1621.551341,1621.551341,3505,NO,33.63,48.38,3,4.4,6106,113.692755,123.45597,133.181583,139.685906,I,Above,Gable,0,5701,,41.00687982,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 30120,NJBF000065867,501 N SOMERSET AVE,Ventnor City,NJ,39.34830874,-74.48069328,RES1,3001,,17,NE,1975,1975,3102,2,1,1143.713098,1143.713098,3507,NO,27.22,35.2,1,0.66,6106,113.655113,123.425328,133.149118,139.654047,I,Above,Flat,0,5701,,31.20851852,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 30121,NJBF000063523,,Ventnor City,NJ,39.34194495,-74.47191566,RES1,3001,,NaN,NE,1920,0,3102,2,1,1765.580753,1765.580753,3505,NO,25.65,31.85,3,3.7,6106,113.931932,123.652275,133.38673,139.906386,I,Above,Hip,0,5701,,28.751048,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30122,NJBF000065735,507 N DORSET AVE,Ventnor City,NJ,39.34794818,-74.48298862,RES1,3001,,17,NE,1975,1975,3102,2,1,1826.808472,1826.808472,3507,NO,22.63,30.79,1,-0.27,6106,113.608996,123.388202,133.109386,139.619002,I,Above,Flat,0,5701,,26.70825239,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30123,NJBF000059732,105 S RICHARDS AVE,Ventnor City,NJ,39.33475707,-74.48434246,RES1,3001,,17,NE,1925,1925,3102,2,1,1081.198666,1081.198666,3505,NO,35.25,49.54,3,0.1,6106,113.755587,123.509857,133.228971,139.81059,I,Above,Flat,0,5701,,42.39650222,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30124,NJBF000065824,603 N BURGHLEY AVE,Ventnor City,NJ,39.34818871,-74.48505257,RES1,3001,,17,NE,1978,1978,3101,2,1,1930.257997,1930.257997,3505,NO,33.41,45.7,3,-1.23,6106,113.560185,123.348653,133.067491,139.57771,I,Above,Gable,0,5701,,39.55502022,0,0,,,,1,1,,0.03,nav,1,1978,2,, 30125,NJBF000066202,707 N CAMBRIDGE AVE,Ventnor City,NJ,39.34918117,-74.48757026,RES1,3001,,17,NE,1968,1968,3101,2,1,1723.693467,1723.693467,3505,NO,32.2,46.58,3,2.26,6106,113.491595,123.292791,133.008727,139.515315,I,Above,Hip,0,5701,,39.39051116,0,0,,,,1,1,,0.03,nav,1,1968,2,, 30126,NJBF000065681,412 N SUFFOLK AVE,Ventnor City,NJ,39.34780033,-74.47989412,RES1,3001,,18,NE,1969,2018,3102,2,1,1628.661425,1628.661425,3505,NO,29.6,44.1,3,-1.06,6106,113.679352,123.445204,133.169981,139.676465,I,Above,Gable,0,5701,,36.84888581,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30127,NJBF000059898,,Ventnor City,NJ,39.33504472,-74.48601611,RES1,3001,,NaN,NE,1982,0,3102,2,1,2068.503928,2068.503928,3505,NO,43.03,53.62,3,7.96,6110,113.714742,123.47684,133.194259,139.774228,I,Above,Hip,0,5701,,48.32440546,0,0,,,,1,1,,0.35,nav,1,1982,2,, 30128,NJBF000059977,14 N MELBOURNE AVE,Ventnor City,NJ,39.33518242,-74.49088354,RES1,3001,,17,NE,1940,1940,3102,2,1,1282.328427,1282.328427,3505,NO,34.35,44.75,3,2.36,6106,113.605529,123.388705,133.101266,139.677026,I,Above,Hip,0,5701,,39.55155611,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30129,NJBF000059792,,Ventnor City,NJ,39.33486391,-74.4858627,RES1,3001,,NaN,NE,1969,0,3102,2,1,2140.349936,2140.349936,3505,NO,24.75,32.66,3,-1.14,6110,113.72061,123.481582,133.199125,139.780048,I,Above,Hip,0,5701,,28.70692662,0,0,,,,1,1,,0.35,nav,1,1969,2,, 30130,NJBF000059535,26 N MARTINDALE AVE,Ventnor City,NJ,39.33442447,-74.49330715,RES1,3001,,17,NE,1926,1926,3102,2,1,1760.148413,1760.148413,3505,NO,37.13,50.27,3,1.36,6106,113.562608,123.354127,133.06425,139.640056,I,Above,Flat,0,5701,,43.69869309,0,0,,,,1,1,,0.03,nav,1,1926,2,, 30131,NJBF000059785,12 N BALTIMORE AVE,Ventnor City,NJ,39.33484652,-74.49148345,RES1,3001,,17,NE,1935,1935,3102,2,1,1492.209541,1492.209541,3505,NO,26.6,38.64,3,-0.27,6106,113.59696,123.381802,133.093728,139.670211,I,Above,Hip,0,5701,,32.61669406,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 30132,NJBF000058662,105 S MELBOURNE AVE,Ventnor City,NJ,39.3327035,-74.4885195,RES1,3001,,17,NE,1927,1927,3102,3,1,1482.77992,1482.77992,3505,NO,42.89,48.64,3,1.66,6110,113.692101,123.458472,133.172849,139.761495,I,Above,Flat,0,5701,,45.76530034,0,1.1,,,,1,1,,0.35,nav,1,1927,3,, 30133,NJBF000059343,2 S MELBOURNE AVE,Ventnor City,NJ,39.3340588,-74.48997808,RES1,3001,,17,NE,1925,1925,3102,2,1,1224.486479,1224.486479,3505,NO,32.13,45.77,3,3.53,6106,113.641085,123.41737,133.130606,139.712074,I,Above,Hip,0,5701,,38.94955339,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30134,NJBF000059272,11 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33390615,-74.49315467,RES1,3001,,17,NE,1984,1984,3102,2,1,1186.540606,1186.540606,3505,NO,30.9,36.71,3,6.24,6106,113.57318,123.362631,133.072799,139.650754,I,Above,Hip,0,5701,,33.80399606,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, 30135,NJBF000057960,109 S MARTINDALE AVE,Ventnor City,NJ,39.33145238,-74.49045619,RES1,3001,,19,NE,1940,1940,3102,1,1,1417.228331,1417.228331,3505,NO,12.22,23.59,3,-0.56,6106,113.667007,123.438095,133.150259,139.740683,I,Above,Flat,0,5701,,17.90485891,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 30136,NJBF000059937,108 S NEW HAVEN AVE,Ventnor City,NJ,39.33510997,-74.4829042,RES1,3001,,17,NE,1920,1920,3102,2,1,1375.548903,1375.548903,3505,NO,33.61,45.11,3,1.76,6106,113.782388,123.53154,133.25226,139.831425,I,Above,Hip,0,5701,,39.35744012,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30137,NJBF000059931,12 N MELBOURNE AVE,Ventnor City,NJ,39.33509688,-74.49080214,RES1,3001,,17,NE,1923,1923,3102,2,1,1303.324162,1303.324162,3505,NO,35.21,47.37,3,-0.7,6106,113.608514,123.391113,133.103739,139.679948,I,Above,Hip,0,5701,,41.28768439,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 30138,NJBF000059928,7211 WINCHESTER AVE,Ventnor City,NJ,39.33508898,-74.4926297,RES1,3001,,17,NE,1948,1948,3102,1,1,1147.275834,1147.275834,3505,NO,17.52,24.3,3,4.56,6106,113.568299,123.35871,133.069584,139.643688,I,Above,Hip,0,5701,,20.90873583,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30139,NJBF000059933,104 N WASHINGTON AVE,Ventnor City,NJ,39.33510361,-74.49313022,RES1,3001,,17,NE,1948,1948,3102,1,1,1610.092807,1610.092807,3505,NO,15.79,24.4,3,-0.54,6106,113.557059,123.349657,133.060063,139.63347,I,Above,Hip,0,5701,,20.09370595,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30140,NJBF000060025,26 S BUFFALO AVE,Ventnor City,NJ,39.33526574,-74.48597483,RES1,3001,,17,NE,1926,1926,3102,2,1,1683.785068,1683.785068,3505,NO,27.56,37.28,3,-0.54,6106,113.712598,123.475106,133.192609,139.771475,I,Above,Gable,0,5701,,32.42097121,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 30141,NJBF000059939,6715 ATLANTIC AVE,Ventnor City,NJ,39.33512142,-74.485174,RES1,3001,,NaN,NE,1930,1930,3102,2,2,3803.287384,3803.287384,3505,NO,24.93,39.2,3,0.9,6106,113.732244,123.490984,133.209295,139.789028,I,Above,Flat,0,5701,,32.0669732,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30142,NJBF000060022,9 S NEWARK AVE,Ventnor City,NJ,39.33525141,-74.48692073,RES1,3001,,17,NE,1950,1950,3102,1,1,2112.72443,2112.72443,3505,NO,22.29,31.67,3,4.2,6106,113.691957,123.458433,133.174958,139.753564,I,Above,Hip,0,5701,,26.98077535,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30143,NJBF000060021,12 S WISSAHICKON AVE,Ventnor City,NJ,39.3352505,-74.486622,RES1,3001,,NaN,NE,1930,1930,3102,2,1,1268.369646,1268.369646,3505,NO,32.71,46.96,3,3.9,6106,113.698547,123.463755,133.180587,139.75932,I,Above,Gable,0,5701,,39.83629406,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30144,NJBF000060067,104 S NEW HAVEN AVE,Ventnor City,NJ,39.33534021,-74.48309453,RES1,3001,,17,NE,1925,1925,3102,1,1,2385.328942,2385.328942,3505,NO,9.31,21.14,3,-1.86,6106,113.77502,123.525577,133.246137,139.824158,I,Above,Hip,0,5701,,15.22502469,0,0,,,,1,1,,0.03,nav,1,1925,1,, 30145,NJBF000059999,6606 ATLANTIC AVE,Ventnor City,NJ,39.33522021,-74.48397985,RES1,3001,,17,NE,1923,1923,3102,3,1,1807.009334,1807.009334,3505,NO,46.3,57.22,3,2.96,6106,113.757181,123.511146,133.230736,139.80981,I,Above,Gable,0,5701,,51.75585624,0,1.1,,,,1,1,,0.03,nav,1,1923,3,, 30146,NJBF000059967,14 S WISSAHICKON AVE,Ventnor City,NJ,39.3351665,-74.486585,RES1,3001,,NaN,NE,1978,1978,3102,2,1,1272.271893,1272.271893,3505,NO,37.2,46.71,3,8.87,6106,113.700535,123.465362,133.182216,139.761384,I,Above,Hip,0,5701,,41.95170768,0,0,,,,1,1,,0.03,nav,1,1978,2,, 30147,NJBF000059844,102 S TROY AVE,Ventnor City,NJ,39.33495511,-74.48423809,RES1,3001,,20,NE,2015,2015,3102,3,1,1916.345054,1916.345054,3505,NO,56.42,70.59,3,5.74,6106,113.755148,123.509503,133.228767,139.80932,I,Above,Gable,0,5701,,63.50581622,0,0,,,,1,1,,0.03,nav,1,2015,3,, 30148,NJBF000059788,106 S TROY AVE,Ventnor City,NJ,39.33484965,-74.48414406,RES1,3001,,17,NE,1925,1925,3102,2,1,1742.889784,1742.889784,3505,NO,31.26,36.67,3,8.27,6106,113.758665,123.512347,133.231689,139.812784,I,Above,Flat,0,5701,,33.96739369,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 30149,NJBF000058555,7217 ATLANTIC AVE,Ventnor City,NJ,39.3325105,-74.49064722,RES1,3001,,17,NE,1910,1910,3102,2,1,1625.152083,1625.152083,3505,NO,29.65,35.45,3,-0.16,6106,113.647958,123.422831,133.135078,139.721651,I,Above,Hip,0,5701,,32.548132,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 30150,NJBF000059352,7116 VENTNOR AVE,Ventnor City,NJ,39.33407616,-74.49028049,RES1,3001,,17,NE,1940,1940,3102,2,1,1253.596047,1253.596047,3505,NO,34.62,45.13,3,2.53,6106,113.634192,123.411811,133.124756,139.705806,I,Above,Hip,0,5701,,39.87419632,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30151,NJBF000059275,1 S BALTIMORE AVE,Ventnor City,NJ,39.33391058,-74.49026018,RES1,3001,,17,NE,1925,1925,3102,2,1,1520.771427,1520.771427,3505,NO,31.11,44.36,3,-2.06,6106,113.636928,123.414013,133.126944,139.708688,I,Above,Flat,0,5701,,37.73543236,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30152,NJBF000059550,7 S LAFAYETTE AVE,Ventnor City,NJ,39.33444978,-74.4888957,RES1,3001,,18,NE,1924,1924,3102,2,1,1233.502709,1233.502709,3505,NO,32.96,41.04,3,5.1,6106,113.659504,123.432237,133.146618,139.727546,I,Above,Hip,0,5701,,37.00136653,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 30153,NJBF000059292,7209 VENTNOR AVE,Ventnor City,NJ,39.3339514,-74.49145785,RES1,3001,,17,NE,1905,1905,3102,2,1,1833.868901,1833.868901,3505,NO,27.17,41.79,3,5.78,6106,113.609966,123.392274,133.104056,139.684153,I,Above,Hip,0,5701,,34.47681682,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 30154,NJBF000059009,106 S ROSBOROUGH AVE,Ventnor City,NJ,39.3333578,-74.48662457,RES1,3001,,20,NE,1958,1958,3102,2,1,1970.735816,1970.735816,3505,NO,29.5,36.78,3,2.42,6110,113.724689,123.484836,133.201275,139.789042,I,Above,Hip,0,5701,,33.14066391,0,1.1,,,,1,1,,0.35,nav,1,1958,2,, 30155,NJBF000059474,6905 ATLANTIC AVE,Ventnor City,NJ,39.33431679,-74.48689986,RES1,3001,,17,NE,1925,1925,3102,2,1,1387.350128,1387.350128,3505,NO,40.47,47.24,3,6.26,6110,113.705328,123.46923,133.185596,139.768712,I,Above,Flat,0,5701,,43.85745069,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 30156,NJBF000059333,100 S NEWARK AVE,Ventnor City,NJ,39.3340325,-74.4864325,RES1,3001,,17,NE,1925,1925,3102,2,1,1624.605524,1624.605524,3505,NO,43.79,57.33,3,6.57,6110,113.719562,123.480722,133.197507,139.78226,I,Above,Hip,0,5701,,50.55508335,0,0,,,,1,1,,0.35,nav,1,1925,2,, 30157,NJBF000058918,102 S LAFAYETTE AVE,Ventnor City,NJ,39.33317861,-74.48793002,RES1,3001,,17,NE,1930,1930,3102,2,1,1565.691581,1565.691581,3505,NO,30.99,37.22,3,3.13,6110,113.698446,123.463627,133.178704,139.766068,I,Above,Gable,0,5701,,34.10539807,0,1.1,,,,1,1,,0.35,nav,1,1930,2,, 30158,NJBF000059576,31 N MARTINDALE AVE,Ventnor City,NJ,39.33448533,-74.49288383,RES1,3001,,17,NE,1925,1925,3102,2,1,899.0350426,899.0350426,3505,NO,30.82,36.62,3,-1.29,6106,113.571088,123.360958,133.071488,139.647638,I,Above,Gable,0,5701,,33.72082382,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30159,NJBF000059621,33 N MARTINDALE AVE,Ventnor City,NJ,39.33456175,-74.49292877,RES1,3001,,17,NE,1925,1925,3102,2,1,1142.692035,1142.692035,3505,NO,28.35,37.44,3,1.01,6106,113.569025,123.359296,133.069798,139.64559,I,Above,Hip,0,5701,,32.89268285,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30160,NJBF000065005,400 N DORSET AVE,Ventnor City,NJ,39.34588736,-74.48206307,RES1,3001,,17,NE,1952,1952,3102,2,1,3497.338105,3497.338105,3505,NO,36.1,43.27,3,-0.05,6106,113.656293,123.427382,133.149791,139.669349,I,Above,Gable,0,5701,,39.68328875,0,0.2,,,,1,1,,0.03,nav,1,1952,2,, 30161,NJBF000061206,301 N WASHINGTON AVE,Ventnor City,NJ,39.33723517,-74.49489938,RES1,3001,,17,NE,1940,1940,3102,2,1,1814.572658,1814.572658,3505,NO,45.78,58.21,3,8.95,6106,113.488531,123.294397,133.003442,139.565965,I,Above,Gable,0,5701,,51.99323945,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 30162,NJBF000062939,116 N SACRAMENTO AVE,Ventnor City,NJ,39.34055,-74.4828925,RES1,3001,,17,NE,1925,1925,3102,2,1,1079.975028,1079.975028,3505,NO,29.52,39.63,3,3.05,6106,113.708689,123.471381,133.192836,139.742126,I,Above,Hip,0,5701,,34.5775911,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30163,NJBF000064954,5511-13 CALVERT AVE,Ventnor City,NJ,39.34575645,-74.47868697,RES1,3001,,45,NE,1930,1930,3102,2,2,1546.988421,1546.988421,3505,NO,42.32,51.14,3,5.61,6106,113.732586,123.489214,133.215542,139.730965,I,Above,Flat,0,5701,,46.72983047,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30164,NJBF000064318,5609 MONMOUTH AVE,Ventnor City,NJ,39.34419214,-74.47819296,RES1,3001,,17,NE,1929,1929,3102,2,1,930.0700487,930.0700487,3505,NO,28.88,41,3,7.35,6106,113.763995,123.515226,133.242163,139.765058,I,Above,Flat,0,5701,,34.94221598,0,0,,,,1,1,,0.03,nav,1,1929,2,, 30165,NJBF000059643,16 S ROSBOROUGH AVE,Ventnor City,NJ,39.33460626,-74.48780843,RES1,3001,,17,NE,1911,1911,3102,2,1,2018.596228,2018.596228,3505,NO,27.95,38.95,3,-2.99,6106,113.681321,123.449847,133.165349,139.746491,I,Above,Hip,0,5701,,33.4529354,0,0,,,,1,1,,0.03,nav,1,1911,2,, 30166,NJBF000059681,9 S WYOMING AVE,Ventnor City,NJ,39.33467049,-74.48818049,RES1,3001,,17,NE,1895,1895,3102,2,1,1807.733611,1807.733611,3505,NO,22.95,31.73,3,0.88,6106,113.672237,123.442514,133.157654,139.738217,I,Above,Flat,0,5701,,27.33741281,0,1.1,,,,1,1,,0.03,nav,1,1895,2,, 30167,NJBF000059632,11 S WYOMING AVE,Ventnor City,NJ,39.33458366,-74.48811575,RES1,3001,,17,NE,1940,1940,3102,2,1,1593.999012,1593.999012,3505,NO,40.25,47.73,3,6.02,6106,113.674838,123.444613,133.159801,139.740807,I,Above,Flat,0,5701,,43.98767222,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30168,NJBF000059571,13 S WYOMING AVE,Ventnor City,NJ,39.33448165,-74.48805655,RES1,3001,,17,NE,1927,1927,3102,3,1,1245.189403,1245.189403,3505,NO,43.91,57.62,3,-0.69,6106,113.67755,123.446802,133.162029,139.743547,I,Above,Hip,0,5701,,50.76648471,0,1.1,,,,1,1,,0.03,nav,1,1927,3,, 30169,NJBF000058755,7203 ATLANTIC AVE,Ventnor City,NJ,39.33287653,-74.48993554,RES1,3001,,17,NE,1920,1920,3102,2,1,1451.295799,1451.295799,3505,NO,35.73,45.14,3,8.99,6110,113.658483,123.43135,133.144372,139.73057,I,Above,Flat,0,5701,,40.43267772,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 30170,NJBF000063956,13 S WEYMOUTH AVE,Ventnor City,NJ,39.34319332,-74.47054024,RES1,3001,,17,NE,1925,1925,3102,2,1,1304.165123,1304.165123,3505,NO,42.26,48.85,3,5.81,6106,113.945694,123.66324,133.399522,139.908957,I,Above,Gable,0,5701,,45.55226019,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30171,NJBF000062984,,Ventnor City,NJ,39.34064431,-74.48372281,RES1,3001,,NaN,NE,1969,0,3102,2,1,1247.772068,1247.772068,3505,NO,34.56,42.06,3,1.9,6106,113.689105,123.455528,133.176081,139.725578,I,Above,Gable,0,5701,,38.30884432,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30172,NJBF000060149,105 N SWARTHMORE AVE,Ventnor City,NJ,39.3354855,-74.49221904,RES1,3001,,17,NE,1928,1928,3102,2,1,1095.198534,1095.198534,3505,NO,42.34,53.3,3,3.62,6106,113.57188,123.361585,133.072913,139.645901,I,Above,Gable,0,5701,,47.81914884,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 30173,NJBF000060101,103 N SWARTHMORE AVE,Ventnor City,NJ,39.3354095,-74.4921795,RES1,3001,,17,NE,1925,1925,3102,2,1,776.89949,776.89949,3505,NO,32.72,38.93,3,1.71,6106,113.573793,123.363128,133.074481,139.647829,I,Above,Gable,0,5701,,35.82467139,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30174,NJBF000061826,124 N BUFFALO AVE,Ventnor City,NJ,39.33832265,-74.48841344,RES1,3001,,17,NE,1922,1922,3102,2,1,2194.425784,2194.425784,3505,NO,40.79,50.26,3,5.06,6106,113.616931,123.397659,133.113091,139.675907,I,Above,Hip,0,5701,,45.5245259,0,0,,,,1,1,,0.03,nav,1,1922,2,, 30175,NJBF000063848,5503 WINCHESTER AVE,Ventnor City,NJ,39.34288581,-74.47449788,RES1,3001,,17,NE,1985,1985,3102,2,1,1227.021161,1227.021161,3505,NO,31.37,39.02,3,6.25,6106,113.86266,123.595706,133.32704,139.848903,I,Above,Hip,0,5701,,35.19506191,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 30176,NJBF000060197,102 N BALTIMORE AVE,Ventnor City,NJ,39.33556869,-74.49203308,RES1,3001,,45,NE,1930,1930,3102,2,2,3648.542444,3648.542444,3505,NO,24.42,30.36,3,-0.63,6106,113.574822,123.363952,133.07547,139.648324,I,Above,Gable,0,5701,,27.39262842,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30177,NJBF000062992,121 N PRINCETON AVE,Ventnor City,NJ,39.34065115,-74.48326122,RES1,3001,,17,NE,1925,1925,3102,2,1,1187.825932,1187.825932,3505,NO,40.91,46.15,3,7.23,6106,113.69921,123.463696,133.184754,139.73383,I,Above,Flat,0,5701,,43.52617129,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30178,NJBF000063023,123 1/2 N PRINCETON AVE,Ventnor City,NJ,39.34072133,-74.48332408,RES1,3001,,27,NE,1925,1925,3102,2,1,1718.843265,1718.843265,3505,NO,41.05,51.89,3,4.08,6106,113.69688,123.461797,133.18279,139.731541,I,Above,Flat,0,5701,,46.46663576,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30179,NJBF000062840,110 N SACRAMENTO AVE,Ventnor City,NJ,39.34033637,-74.48273731,RES1,3001,,17,NE,1930,1930,3102,2,1,1276.615862,1276.615862,3505,NO,27.01,33.89,3,0.96,6106,113.715006,123.476532,133.198144,139.748451,I,Above,Hip,0,5701,,30.44958014,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30180,NJBF000063754,115 S AUSTIN AVE,Ventnor City,NJ,39.34261044,-74.46658669,RES3B,3001,,20,E,1998,1998,3303,3,1,2911.020247,2911.020247,3504,NO,31.75,41.35,-4,0,6106,114.040196,123.740508,133.481855,139.981158,I,Above,Gable,0,NaN,,36.54921595,0,1.2,,,,1,1,,0.03,nav,1,1998,3,, 30181,NJBF000061653,105 N BUFFALO AVE,Ventnor City,NJ,39.3380126,-74.48769252,RES1,3001,,17,NE,1952,1952,3102,1,1,1222.463649,1222.463649,3505,NO,22.89,30.96,3,5.25,6106,113.637053,123.413929,133.130064,139.694629,I,Above,Hip,0,5701,,26.92187766,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 30182,NJBF000065404,506 N BURGHLEY AVE,Ventnor City,NJ,39.34696954,-74.48456611,RES1,3001,,17,NE,1972,1972,3101,2,1,1248.427902,1248.427902,3505,NO,36.81,44.8,3,6.84,6106,113.586792,123.370739,133.090254,139.60652,I,Above,Gable,0,5701,,40.80428372,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30183,NJBF000066430,603 N SOMERSET AVE,Ventnor City,NJ,39.3497366,-74.48182867,RES1,3001,,17,NE,1972,1972,3102,2,1,989.7847104,989.7847104,3507,NO,30.78,39.07,1,2.85,6106,113.611618,123.389366,133.111653,139.610514,I,Above,Gable,0,5701,,34.92441,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30184,NJBF000066904,,Ventnor City,NJ,39.35123074,-74.48980556,RES1,3001,,NaN,NE,1969,0,3103,6,1,1691.658616,1691.658616,3505,NO,123.47,131.47,3,8.46,6106,113.415694,123.23038,132.943518,139.440389,I,Above,Hip,0,5701,,127.4731708,0,0,,,,1,1,,0.03,nav,1,1969,6,, 30185,NJBF000066912,,Ventnor City,NJ,39.35126653,-74.49014032,RES1,3001,,NaN,NE,1969,0,3103,4,1,2182.855016,2182.855016,3505,NO,79.26,92.82,3,7.99,6106,113.407818,123.224021,132.936797,139.433568,I,Above,Hip,0,5701,,86.03877614,0,0,,,,1,1,,0.03,nav,1,1969,4,, 30186,NJBF000064537,311 N DERBY AVE,Ventnor City,NJ,39.34473552,-74.48140289,RES1,3001,,17,NE,1967,1967,3102,2,1,1582.47726,1582.47726,3505,NO,27.6,33.75,3,5.91,6106,113.685971,123.451834,133.175042,139.699966,I,Above,Gable,0,5701,,30.67547539,0,1.1,,,,1,1,,0.03,nav,1,1967,2,, 30187,NJBF000060057,101 N SWARTHMORE AVE,Ventnor City,NJ,39.33533,-74.4921365,RES1,3001,,17,NE,1925,1925,3102,2,1,1027.309376,1027.309376,3505,NO,22.49,33.34,3,-0.65,6106,113.575836,123.364776,133.076157,139.649882,I,Above,Gable,0,5701,,27.91685239,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30188,NJBF000062722,317-319 N LAFAYETTE AVE,Ventnor City,NJ,39.34008701,-74.49407083,RES1,3001,,45,NE,1975,1975,3102,2,2,1798.836456,1798.836456,3505,NO,24.71,29.73,3,1.78,6106,113.467852,123.277329,132.987331,139.538237,I,Above,Gable,0,5701,,27.2206571,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30189,NJBF000065002,412 N BURGHLEY AVE,Ventnor City,NJ,39.34588157,-74.48373977,RES1,3001,,17,NE,1965,1965,3102,2,1,2386.02352,2386.02352,3505,NO,31.26,38.3,3,2.26,6106,113.619274,123.397458,133.117979,139.639312,I,Above,Gable,0,5701,,34.77764849,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 30190,NJBF000062528,127 N NEW HAVEN AVE,Ventnor City,NJ,39.33963829,-74.48608477,RES1,3001,,17,NE,2012,2012,3102,2,1,1180.209859,1180.209859,3505,NO,22.14,35.35,3,-0.74,6106,113.650501,123.424539,133.142494,139.698604,I,Above,Gable,0,5701,,28.74077826,0,0,,,,1,1,,0.03,nav,1,2012,2,, 30191,NJBF000062297,15 N PORTLAND AVE,Ventnor City,NJ,39.33917386,-74.4827482,RES1,3001,,17,NE,1950,1950,3102,1,1,1950.179295,1950.179295,3505,NO,13.16,27.77,3,-0.6,6106,113.73042,123.489197,133.210697,139.767372,I,Above,Hip,0,5701,,20.46682565,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 30192,NJBF000067446,801 N SURREY AVE,Ventnor City,NJ,39.3535235,-74.482817,RES3A,3001,,28,NE,1980,1980,3301,2,1,2496.73395,2496.73395,3505,NO,29.52,41.16,3,-2.09,6106,113.541689,123.330337,133.050744,139.530998,I,Above,Flat,0,5701,,35.34426776,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 30193,NJBF000067338,801 N SURREY AVE,Ventnor City,NJ,39.35313916,-74.48251099,RES3A,3001,,28,NE,1980,1980,3301,2,1,2442.168707,2442.168707,3505,NO,41.27,55.34,3,4.96,6106,113.553307,123.340013,133.060868,139.542773,I,Above,Flat,0,5701,,48.30630559,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 30194,NJBF000067269,801 N SURREY AVE,Ventnor City,NJ,39.35283476,-74.48255102,RES3A,3001,,28,NE,1980,1980,3301,2,1,2426.987117,2426.987117,3505,NO,43.19,53.92,3,4.32,6106,113.55625,123.34261,133.063487,139.547013,I,Above,Gable,0,5701,,48.55280459,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 30195,NJBF000067516,801 N SURREY AVE,Ventnor City,NJ,39.35370742,-74.48298366,RES3A,3001,,28,NE,1980,1980,3301,2,1,2476.074352,2476.074352,3505,NO,32.31,46.44,3,-1.26,6110,113.535692,123.325353,133.04552,139.52501,I,Above,Hip,0,5701,,39.37417632,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 30196,NJBF000067590,801 N SURREY AVE,Ventnor City,NJ,39.353906,-74.4831285,RES3A,3001,,28,NE,1980,1980,3301,2,1,2392.195445,2392.195445,3505,NO,35.75,43.91,3,5.37,6110,113.529984,123.320588,133.040537,139.519155,I,Above,Flat,0,5701,,39.82929322,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 30197,NJBF000067358,801 N SURREY AVE,Ventnor City,NJ,39.35321098,-74.4828774,RES3A,3001,,28,NE,1980,1980,3301,2,1,1990.104461,1990.104461,3505,NO,29.85,43.26,3,5.37,6106,113.544294,123.332674,133.053084,139.535023,I,Above,Hip,0,5701,,36.5571468,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 30198,NJBF000067396,801 N SURREY AVE,Ventnor City,NJ,39.35332734,-74.48267351,RES3A,3001,,28,NE,1980,1980,3301,2,1,2552.194736,2552.194736,3505,NO,31,40.34,3,6.42,6110,113.547332,123.335045,133.055666,139.536781,I,Above,Flat,0,5701,,35.67088671,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 30199,NJBF000067418,801 N SURREY AVE,Ventnor City,NJ,39.35340551,-74.48302067,RES3A,3001,,28,NE,1980,1980,3301,2,1,1978.729705,1978.729705,3505,NO,36.07,41.98,3,4.96,6106,113.538652,123.32797,133.048166,139.529252,I,Above,Gable,0,5701,,39.02493914,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 30200,NJBF000063790,105 N DUDLEY AVE,Ventnor City,NJ,39.34270589,-74.47793889,RES1,3001,,17,NE,1940,1940,3102,2,1,3249.610963,3249.610963,3505,NO,34.93,45.93,3,5.49,6106,113.789221,123.53611,133.263315,139.793688,I,Above,Flat,0,5701,,40.42951855,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30201,NJBF000063831,,Ventnor City,NJ,39.34281655,-74.47985944,RES1,3001,,NaN,NE,1969,0,3102,2,1,1420.864883,1420.864883,3505,NO,32.61,41.6,3,5.3,6106,113.745399,123.500557,133.225533,139.758633,I,Above,Hip,0,5701,,37.10488093,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30202,NJBF000062538,10 N CAMBRIDGE AVE,Ventnor City,NJ,39.33966882,-74.48073926,RES1,3001,,17,NE,1920,1920,3102,2,1,1352.223778,1352.223778,3505,NO,29.59,41.22,3,7.83,6106,113.768047,123.519576,133.243355,139.794935,I,Above,Hip,0,5701,,35.40801585,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30203,NJBF000062503,8 N CAMBRIDGE AVE,Ventnor City,NJ,39.339593,-74.480709,RES1,3001,,17,NE,1920,1920,3102,2,1,1264.462709,1264.462709,3505,NO,24.69,30.88,3,-2.61,6106,113.769732,123.520953,133.244758,139.796712,I,Above,Flat,0,5701,,27.78724455,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30204,NJBF000060883,,Ventnor City,NJ,39.33669659,-74.47861577,RES1,3001,,NaN,NE,1969,0,3102,2,1,2089.101657,2089.101657,3505,NO,38.34,43.65,3,0.2,6106,113.85505,123.590378,133.316151,139.880398,I,Above,Hip,0,5701,,40.99559617,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30205,NJBF000060957,,Ventnor City,NJ,39.33681767,-74.47871606,RES1,3001,,NaN,NE,1969,0,3102,2,1,1492.780621,1492.780621,3505,NO,23.76,30.38,3,-0.98,6106,113.851202,123.587252,133.312933,139.876726,I,Above,Flat,0,5701,,27.07051367,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30206,NJBF000059903,6700 ATLANTIC AVE,Ventnor City,NJ,39.33505304,-74.48436032,RES1,3001,,17,NE,1965,1965,3102,2,1,1556.644296,1556.644296,3505,NO,29.04,41.55,3,6.17,6106,113.751111,123.506238,133.225392,139.805446,I,Above,Hip,0,5701,,35.29594704,0,0,,,,1,1,,0.03,nav,1,1965,2,, 30207,NJBF000064121,6110 CALVERT AVE,Ventnor City,NJ,39.34362665,-74.48233024,RES1,3001,,18,NE,2000,2000,3102,3,1,1797.306989,1797.306989,3505,NO,56.73,61.78,3,5.47,6106,113.680115,123.447472,133.169649,139.701655,I,Above,Flat,0,5701,,59.25468929,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, 30208,NJBF000060139,110 N WASHINGTON AVE,Ventnor City,NJ,39.33547041,-74.4934224,RES1,3001,,17,NE,1948,1948,3102,1,1,1692.49541,1692.49541,3505,NO,22.15,30.04,3,6.26,6106,113.545538,123.340374,133.050564,139.622138,I,Above,Hip,0,5701,,26.09209378,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30209,NJBF000063935,15 S WEYMOUTH AVE,Ventnor City,NJ,39.34312322,-74.47047982,RES1,3001,,17,NE,1925,1925,3102,2,1,1533.96161,1533.96161,3505,NO,20,30.52,3,-1.84,6106,113.947935,123.665083,133.401436,139.911032,I,Above,Hip,0,5701,,25.26165117,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30210,NJBF000060600,16 S NEW HAVEN AVE,Ventnor City,NJ,39.3362607,-74.48384489,RES1,3001,,17,NE,1940,1940,3102,2,1,1176.408245,1176.408245,3505,NO,37.32,47.98,3,1.53,6106,113.745863,123.501967,133.221888,139.795287,I,Above,Gable,0,5701,,42.65023989,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30211,NJBF000066655,710 N DORSET AVE,Ventnor City,NJ,39.35036569,-74.48554987,RES1,3001,,17,NE,1966,1966,3101,1,1,1239.042761,1239.042761,3505,NO,12.64,27.25,3,0.77,6106,113.52116,123.315912,133.03386,139.533056,I,Above,Flat,0,5701,,19.94429563,0,0,,,,1,1,,0.03,nav,1,1966,1,, 30212,NJBF000058830,12 S SWARTHMORE AVE,Ventnor City,NJ,39.33302408,-74.49072305,RES1,3001,,19,NE,2009,2009,3102,3,1,1377.281834,1377.281834,3505,NO,46.37,56.59,3,-1.92,6106,113.639094,123.415719,133.128011,139.712609,I,Above,Gable,0,5701,,51.47789635,0,0,,,,1,1,,0.03,nav,1,2009,3,, 30213,NJBF000063101,5 S OXFORD AVE,Ventnor City,NJ,39.34089506,-74.47485051,RES1,3001,,20,NE,2016,2016,3102,2,1,1999.273387,1999.273387,3505,NO,41.98,54.64,3,7.42,6106,113.881326,123.611282,133.342042,139.875098,I,Above,Hip,0,5701,,48.30953567,0,0,,,,1,1,,0.03,nav,1,2016,2,, 30214,NJBF000060655,205 N WASHINGTON AVE,Ventnor City,NJ,39.33636299,-74.4940915,RES1,3001,,17,NE,1953,1953,3102,2,1,1685.728934,1685.728934,3505,NO,31.82,38.79,3,1.19,6106,113.51841,123.3185,133.028192,139.595306,I,Above,Flat,0,5701,,35.30168981,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 30215,NJBF000061414,6906 MONMOUTH AVE,Ventnor City,NJ,39.3375985,-74.4905445,RES1,3001,,17,NE,1955,1955,3102,1,1,1082.082851,1082.082851,3505,NO,16.32,23.77,3,0.47,6106,113.579768,123.367792,133.08102,139.646244,I,Above,Hip,0,5701,,20.04236485,0,0,,,,1,1,,0.03,nav,1,1955,1,, 30216,NJBF000066804,810 N CORNWALL AVE,Ventnor City,NJ,39.35083994,-74.48860441,RES1,3001,,17,NE,1977,1977,3101,1,1,1847.272706,1847.272706,3505,NO,13.38,22.15,3,2.72,6106,113.447368,123.256134,132.970643,139.469117,I,Above,Gable,0,5701,,17.76491933,0,0,,,,1,1,,0.03,nav,1,1977,1,, 30217,NJBF000060075,15 S WISSAHICKON AVE,Ventnor City,NJ,39.33535391,-74.48626015,RES1,3001,,17,NE,1925,1925,3102,3,1,1341.549732,1341.549732,3505,NO,56.27,69.61,3,-0.53,6106,113.705105,123.469051,133.186275,139.76462,I,Above,Hip,0,5701,,62.94011593,0,0,,,,1,1,,0.03,nav,1,1925,3,, 30218,NJBF000062201,131 N RICHARDS AVE,Ventnor City,NJ,39.33898364,-74.48775678,RES1,3001,,18,NE,1920,1920,3102,2,1,1142.729435,1142.729435,3505,NO,27.95,36.9,3,-2.8,6106,113.622431,123.401998,133.118161,139.677775,I,Above,Gable,0,5701,,32.42662865,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30219,NJBF000066829,5903 MARSHALL AVE,Ventnor City,NJ,39.35093983,-74.48636985,RES1,3001,,17,NE,1977,1977,3101,1,1,1757.014176,1757.014176,3505,NO,15.31,25.78,3,4.15,6106,113.495649,123.294969,133.011895,139.508682,I,Above,Gable,0,5701,,20.54863838,0,0,,,,1,1,,0.03,nav,1,1977,1,, 30220,NJBF000063152,122 N HARVARD AVE,Ventnor City,NJ,39.34098834,-74.48254586,RES1,3001,,28,NE,1925,1925,3102,2,1,1400.930482,1400.930482,3505,NO,35.95,42.09,3,-0.07,6106,113.710473,123.472733,133.194599,139.741156,I,Above,Flat,0,5701,,39.02350074,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30221,NJBF000058648,16 S MARTINDALE AVE,Ventnor City,NJ,39.33266695,-74.49185766,RES1,3001,,17,NE,1929,1929,3102,2,1,1283.910141,1283.910141,3505,NO,41.61,48.95,3,4.89,6106,113.619087,123.39956,133.110686,139.694957,I,Above,Hip,0,5701,,45.28274712,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 30222,NJBF000064747,14 S JACKSON AVE,Ventnor City,NJ,39.34521844,-74.466218,RES3B,3001,,17,ME,1925,1925,3301,3,1,1624.60062,1624.60062,3504,NO,56.08,62.43,-4,0,6106,114.014106,123.718639,133.460655,139.946759,I,Above,Hip,0,NaN,,59.25386479,0,0,,,,1,1,,0.03,nav,1,1925,3,, 30223,NJBF000064650,1 N OAKLAND AVE,Ventnor City,NJ,39.3449928,-74.46926954,RES1,3001,,17,NE,1920,1920,3102,2,1,1210.095549,1210.095549,3507,NO,32.15,39.2,1,0.08,6106,113.950003,123.666317,133.404312,139.901175,I,Above,Hip,0,5701,,35.67611251,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30224,NJBF000064365,306 N BURGHLEY AVE,Ventnor City,NJ,39.3443145,-74.4824655,RES1,3001,,17,NE,1958,1958,3102,1,1,1207.527803,1207.527803,3505,NO,21.32,32.97,3,5.44,6106,113.668026,123.437466,133.159481,139.687929,I,Above,Gable,0,5701,,27.14424134,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 30225,NJBF000063242,111 N CAMBRIDGE AVE,Ventnor City,NJ,39.34121084,-74.48153138,RES1,3001,,17,NE,1920,1920,3102,1,1,1445.675092,1445.675092,3505,NO,13.59,28.32,3,-1.42,6106,113.729889,123.488393,133.211402,139.755586,I,Above,Gable,0,5701,,20.95429066,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 30226,NJBF000063201,413-415 BERKSHIRE DR,Ventnor City,NJ,39.34111479,-74.49451875,RES1,3001,,45,NE,1970,1970,3102,2,2,1956.869602,1956.869602,3505,NO,23.88,33.54,3,-2.37,6106,113.444012,123.25793,132.967526,139.513328,I,Above,Hip,0,5701,,28.7094428,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30227,NJBF000063092,5515 ATLANTIC AVE,Ventnor City,NJ,39.34087734,-74.47354851,RES1,3001,,18,NE,1920,1920,3102,2,1,3359.979129,3359.979129,3505,NO,34.1,45.22,3,5.86,6106,113.910214,123.634777,133.367116,139.896785,I,Above,Flat,0,5701,,39.65982006,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30228,NJBF000066852,SE OXFORD & MARSHALL AVES,Ventnor City,NJ,39.35101958,-74.48353362,RES3C,3001,,NaN,ME,1965,1965,3301,2,1,5872.005485,5872.005485,3505,NO,29.68,36.24,3,5.02,6106,113.557479,123.344824,133.064931,139.558951,I,Above,Flat,0,NaN,,32.96119132,0,0,,,,1,1,,0.03,nav,1,1965,2,, 30229,NJBF000066771,SE OXFORD & MARSHALL AVES,Ventnor City,NJ,39.35072878,-74.48330019,RES3C,3001,,NaN,ME,1965,1965,3301,2,1,6111.627362,6111.627362,3505,NO,39.12,44.17,3,5.34,6106,113.566371,123.352192,133.07262,139.567924,I,Above,Hip,0,NaN,,41.64830597,0,0,,,,1,1,,0.03,nav,1,1965,2,, 30230,NJBF000064159,309 N HARVARD AVE,Ventnor City,NJ,39.34374193,-74.4841042,RES1,3001,,17,NE,1962,1962,3102,1,1,1797.046341,1797.046341,3505,NO,19.27,29.93,3,8.73,6106,113.639389,123.414515,133.13472,139.667811,I,Above,Gable,0,5701,,24.60388929,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30231,NJBF000066052,612 N BURGHLEY AVE,Ventnor City,NJ,39.34877831,-74.48604872,RES1,3001,,17,NE,1988,1988,3101,2,1,2240.859416,2240.859416,3505,NO,34.8,46.66,3,6.86,6106,113.530508,123.32439,133.042047,139.549883,I,Above,Gable,0,5701,,40.73112769,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 30232,NJBF000059821,111 S AVOLYN AVE,Ventnor City,NJ,39.33490167,-74.48298251,RES1,3001,,17,NE,1980,1980,3102,3,1,1311.06876,1311.06876,3505,NO,35.62,46.92,3,0.57,6106,113.783511,123.532448,133.253041,139.833399,I,Above,Flat,0,5701,,41.26995668,0,0,,,,1,1,,0.03,nav,1,1980,3,, 30233,NJBF000063912,5311 VENTNOR AVE,Ventnor City,NJ,39.3430653,-74.47266669,RES1,3001,,17,NE,1908,1908,3102,2,1,1607.705076,1607.705076,3505,NO,27.12,36.92,3,2.79,6106,113.9006,123.626531,133.36013,139.876309,I,Above,Hip,0,5701,,32.0202453,0,0,,,,1,1,,0.03,nav,1,1908,2,, 30234,NJBF000063934,5309 VENTNOR AVE,Ventnor City,NJ,39.34312166,-74.47255299,RES1,3001,,17,NE,1936,1936,3102,2,1,1537.874555,1537.874555,3505,NO,32.77,40.3,3,-2.2,6106,113.902357,123.627948,133.361692,139.877271,I,Above,Hip,0,5701,,36.53684293,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 30235,NJBF000065366,510 N CORNWALL AVE,Ventnor City,NJ,39.34686272,-74.4853714,RES1,3001,,17,NE,1965,1965,3101,1,1,1491.295293,1491.295293,3505,NO,17.69,27.83,3,-0.33,6106,113.570365,123.357529,133.076166,139.593606,I,Above,Hip,0,5701,,22.75982901,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 30236,NJBF000062228,15 S CORNWALL AVE,Ventnor City,NJ,39.33903746,-74.47843704,RES1,3001,,17,NE,1927,1927,3102,3,1,2392.944109,2392.944109,3505,NO,49.26,58.83,3,3.68,6106,113.827286,123.567674,133.294003,139.84514,I,Above,Flat,0,5701,,54.04801713,0,1.2,,,,1,1,,0.03,nav,1,1927,3,, 30237,NJBF000065379,414 N DUDLEY AVE,Ventnor City,NJ,39.3468994,-74.48184382,RES1,3001,,18,NE,1969,2018,3102,2,1,1330.974388,1330.974388,3505,NO,34.4,45.5,3,0.76,6106,113.647935,123.420188,133.142777,139.656674,I,Above,Hip,0,5701,,39.94933742,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30238,NJBF000059432,110 S RICHARDS AVE,Ventnor City,NJ,39.33423393,-74.48441274,RES1,3001,,17,NE,1925,1925,3102,2,1,1303.664899,1303.664899,3505,NO,35.31,47.93,3,0.53,6106,113.761245,123.514423,133.233353,139.817726,I,Above,Hip,0,5701,,41.62033648,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30239,NJBF000065343,29 N VASSAR SQUARE,Ventnor City,NJ,39.34679556,-74.46777436,RES3A,3001,,45,NE,1930,1930,3301,2,2,1690.526035,1690.526035,3505,NO,38.66,51.92,3,0.49,6106,113.95944,123.673489,133.413469,139.897116,I,Above,Hip,0,5701,,45.28880669,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30240,NJBF000064900,326 N DORSET AVE,Ventnor City,NJ,39.34560966,-74.48175881,RES1,3001,,19,NE,1954,2018,3102,2,1,3373.387243,3373.387243,3505,NO,38.11,48.03,3,3.27,6106,113.666637,123.435861,133.158631,139.679308,I,Above,Flat,0,5701,,43.06537755,0,0,,,,1,1,,0.03,nav,1,1954,2,, 30241,NJBF000064739,234 N SOMERSET AVE,Ventnor City,NJ,39.34519777,-74.47866424,RES1,3001,,17,NE,1930,1930,3102,2,1,1185.321338,1185.321338,3505,NO,26.14,36.06,3,-2.47,6106,113.740393,123.49575,133.222121,139.740477,I,Above,Gable,0,5701,,31.09970711,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30242,NJBF000064803,4812 VENTNOR AVE,Ventnor City,NJ,39.34537075,-74.46706672,RES3B,3001,,17,ME,1920,1920,3301,2,1,1556.210961,1556.210961,3504,NO,35.39,49.34,-4,0,6106,113.993474,123.701726,133.442619,139.930792,I,Above,Gable,0,NaN,,42.36574769,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30243,NJBF000064880,20 N AUSTIN AVE,Ventnor City,NJ,39.34557021,-74.46942253,RES1,3001,,17,NE,1910,1910,3102,2,1,1274.460788,1274.460788,3507,NO,28.36,39.86,1,-0.65,6106,113.939114,123.657267,133.395078,139.8896,I,Above,Hip,0,5701,,34.11332131,0,0,,,,1,1,,0.03,nav,1,1910,2,, 30244,NJBF000064620,217 N OXFORD AVE,Ventnor City,NJ,39.34492774,-74.47882983,RES1,3001,,17,NE,1960,1960,3102,1,1,1423.197594,1423.197594,3505,NO,19,31.77,3,7.82,6106,113.740268,123.495744,133.221926,139.742004,I,Above,Hip,0,5701,,25.38412347,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 30245,NJBF000064457,11 S MARION AVE,Ventnor City,NJ,39.34452723,-74.46759775,RES1,3001,,17,NE,1920,1920,3102,2,1,1773.708044,1773.708044,3504,NO,26.98,38.02,-4,0,6106,113.992829,123.70141,133.441568,139.935421,I,Above,Hip,0,5701,,32.50030247,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30246,NJBF000064399,15 S MARION AVE,Ventnor City,NJ,39.34438963,-74.46750051,RES1,3001,,17,NE,1907,1907,3102,2,1,1970.223725,1970.223725,3504,NO,30.92,37.12,-4,0,6106,113.996751,123.704648,133.444926,139.939107,I,Above,Hip,0,5701,,34.02032816,0,1.1,,,,1,1,,0.03,nav,1,1907,2,, 30247,NJBF000064616,228 N OXFORD AVE,Ventnor City,NJ,39.34490954,-74.47926581,RES1,3001,,19,NE,1940,2018,3102,1,1,1251.142867,1251.142867,3505,NO,20.68,27.86,3,2.27,6106,113.73088,123.488141,133.213812,139.734708,I,Above,Hip,0,5701,,24.26690504,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 30248,NJBF000064468,132 N SURREY AVE,Ventnor City,NJ,39.34456615,-74.47640061,RES1,3001,,17,NE,1951,1951,3102,1,1,1300.07153,1300.07153,3505,NO,13.01,25.25,3,-2.85,6106,113.798602,123.543192,133.272265,139.789681,I,Above,Hip,0,5701,,19.13307718,0,0,,,,1,1,,0.03,nav,1,1951,1,, 30249,NJBF000064642,17 N HILLSIDE AVE,Ventnor City,NJ,39.3449691,-74.47087608,RES1,3001,,17,NE,1918,1918,3102,1,1,1057.143657,1057.143657,3507,NO,14.83,29.41,1,1.03,6106,113.915002,123.637773,133.373703,139.875385,I,Above,Hip,0,5701,,22.12258398,0,0,,,,1,1,,0.03,nav,1,1918,1,, 30250,NJBF000064606,15 N HILLSIDE AVE,Ventnor City,NJ,39.3448875,-74.4708185,RES1,3001,,17,NE,1918,1918,3102,1,1,1496.934715,1496.934715,3507,NO,10.68,21.63,1,-0.65,6106,113.91735,123.63971,133.375713,139.877635,I,Above,Hip,0,5701,,16.15354169,0,1.1,,,,1,1,,0.03,nav,1,1918,1,, 30251,NJBF000064470,5505 MONMOUTH AVE,Ventnor City,NJ,39.34457065,-74.47741396,RES1,3001,,17,NE,1926,1926,3102,1,1,995.6575064,995.6575064,3505,NO,26.04,38.05,3,8.21,6106,113.776197,123.525004,133.252864,139.772285,I,Above,Gable,0,5701,,32.04940806,0,0,,,,1,1,,0.03,nav,1,1926,1,, 30252,NJBF000064454,208 N SOMERSET AVE,Ventnor City,NJ,39.34452371,-74.47811972,RES1,3001,,17,NE,1965,1965,3102,1,1,1639.754607,1639.754607,3505,NO,16.23,27.77,3,5.29,6106,113.76124,123.512885,133.239908,139.760899,I,Above,Hip,0,5701,,21.99928836,0,0,,,,1,1,,0.03,nav,1,1965,1,, 30253,NJBF000064600,314 N BURGHLEY AVE,Ventnor City,NJ,39.34487467,-74.48290752,RES1,3001,,17,NE,1958,1958,3102,1,1,1185.631723,1185.631723,3505,NO,24.33,31.99,3,6.91,6106,113.650883,123.423403,133.144906,139.670815,I,Above,Flat,0,5701,,28.16114985,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30254,NJBF000064637,12 N NASHVILLE AVE,Ventnor City,NJ,39.3449605,-74.470431,RES1,3001,,17,NE,1912,1912,3102,2,2,2022.529089,2022.529089,3507,NO,35.56,44.5,1,-0.39,6106,113.924907,123.645852,133.382351,139.882804,I,Above,Hip,0,5701,,40.02967205,0,1.2,,,,1,1,,0.03,nav,1,1912,2,, 30255,NJBF000064607,12 N NASHVILLE AVE,Ventnor City,NJ,39.34488862,-74.47055837,RES1,3001,,17,NE,1912,1912,3102,2,2,540.8850204,540.8850204,3507,NO,36.68,41.99,1,0.23,6106,113.923042,123.644351,133.380685,139.881854,I,Above,Hip,0,5701,,39.33618188,0,1.2,,,,1,1,,0.03,nav,1,1912,2,, 30256,NJBF000064464,209 N OXFORD AVE,Ventnor City,NJ,39.34455946,-74.47848642,RES1,3001,,17,NE,1959,1959,3102,2,1,1920.888777,1920.888777,3505,NO,28.43,39.31,3,-0.51,6106,113.752705,123.505952,133.232543,139.754,I,Above,Hip,0,5701,,33.868516,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 30257,NJBF000064601,313 N DERBY AVE,Ventnor City,NJ,39.34487663,-74.48153061,RES1,3001,,17,NE,1942,1942,3102,1,1,1106.895244,1106.895244,3505,NO,14.1,24.88,3,-1.9,6106,113.68129,123.447995,133.171053,139.695381,I,Above,Flat,0,5701,,19.49161045,0,0,,,,1,1,,0.03,nav,1,1942,1,, 30258,NJBF000064443,,Ventnor City,NJ,39.34450061,-74.48175773,RES1,3001,,NaN,NE,1969,0,3102,2,1,2728.582375,2728.582375,3505,NO,36.06,45.77,3,-2.27,6106,113.68122,123.448073,133.170883,139.697513,I,Above,Flat,0,5701,,40.91340618,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30259,NJBF000064625,20 S JACKSON AVE,Ventnor City,NJ,39.34493907,-74.46600364,RES3B,3001,,17,ME,1920,1920,3301,2,1,1516.559037,1516.559037,3504,NO,27.15,37.44,-4,0,6106,114.022441,123.725526,133.467814,139.954489,I,Above,Hip,0,NaN,,32.29819076,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30260,NJBF000064440,24 S VASSAR SQUARE,Ventnor City,NJ,39.34449371,-74.46637874,RES3B,3001,,17,ME,1930,1930,3301,3,1,1722.991211,1722.991211,3504,NO,41.41,55.58,-4,0,6106,114.020023,123.72365,133.465416,139.9554,I,Above,Hip,0,NaN,,48.4984076,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 30261,NJBF000064651,306 N DORSET AVE,Ventnor City,NJ,39.344999,-74.481197,RES1,3001,,NaN,NE,1969,0,3102,1,1,905.9520813,905.9520813,3505,NO,25.74,32.76,3,7.1,6106,113.687067,123.452626,133.176061,139.699306,I,Above,Hip,0,5701,,29.25117957,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 30262,NJBF000064377,20 S BATON ROUGE AVE,Ventnor City,NJ,39.34432921,-74.46699855,RES1,3001,,17,NE,1930,1930,3102,2,2,1625.95719,1625.95719,3504,NO,38.93,44.84,-4,0,6106,114.008572,123.714323,133.455259,139.948076,I,Above,Gable,0,5701,,41.8845442,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30263,NJBF000064414,128 N SURREY AVE,Ventnor City,NJ,39.34443149,-74.47633617,RES1,3001,,17,NE,1975,1975,3102,2,1,1250.122786,1250.122786,3505,NO,22.11,31.84,3,-2.64,6106,113.801808,123.545837,133.274988,139.792979,I,Above,Gable,0,5701,,26.97752445,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30264,NJBF000064435,311 N BURGHLEY AVE,Ventnor City,NJ,39.34448548,-74.48209674,RES1,3001,,17,NE,1962,1962,3102,1,1,1373.404353,1373.404353,3505,NO,21.24,32.8,3,4.89,6106,113.67394,123.44219,133.164616,139.691734,I,Above,Flat,0,5701,,27.02066874,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30265,NJBF000059699,108 S TROY AVE,Ventnor City,NJ,39.33470272,-74.4840521,RES1,3001,,20,NE,2006,2006,3102,2,1,1728.523879,1728.523879,3505,NO,24.58,36.12,3,0.21,6106,113.762717,123.515623,133.235033,139.816894,I,Above,Flat,0,5701,,30.35218453,0,0,,,,1,1,,0.03,nav,1,2006,2,, 30266,NJBF000064353,26 N WEYMOUTH AVE,Ventnor City,NJ,39.34428631,-74.47186365,RES1,3001,,17,NE,1920,1920,3102,2,1,1187.86297,1187.86297,3507,NO,40.21,51.05,1,1.32,6106,113.902207,123.627535,133.362194,139.870035,I,Above,Hip,0,5701,,45.62988433,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30267,NJBF000059738,7 S WYOMING AVE,Ventnor City,NJ,39.3347746,-74.48823324,RES1,3001,,17,NE,1925,1925,3102,2,1,2524.845477,2524.845477,3505,NO,22.56,28.96,3,-1.96,6106,113.669615,123.440399,133.155505,139.735546,I,Above,Hip,0,5701,,25.7647546,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30268,NJBF000064397,25 S BATON ROUGE AVE,Ventnor City,NJ,39.34438757,-74.46658925,RES3B,3001,,17,ME,1920,1920,3301,2,1,1698.675416,1698.675416,3504,NO,26.43,39.5,-4,0,6106,114.0168,123.721038,133.46252,139.953697,I,Above,Flat,0,NaN,,32.96677806,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30269,NJBF000059702,102 S RICHARDS AVE,Ventnor City,NJ,39.33470636,-74.48478124,RES1,3001,,16,NE,1925,1925,3102,2,1,1386.934087,1386.934087,3505,NO,33.21,44.48,3,6.15,6110,113.746623,123.502608,133.221249,139.803155,I,Above,Gable,0,5701,,38.84458086,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 30270,NJBF000064374,307 N CORNWALL AVE,Ventnor City,NJ,39.34432772,-74.48283389,RES1,3001,,17,NE,1958,1958,3102,1,1,1490.821474,1490.821474,3505,NO,22.82,30.67,3,6.87,6106,113.659721,123.430746,133.152348,139.681119,I,Above,Hip,0,5701,,26.74262358,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30271,NJBF000064410,320 N CAMBRIDGE AVE,Ventnor City,NJ,39.34442254,-74.48430368,RES1,3001,,17,NE,1966,1966,3102,2,1,1685.793238,1685.793238,3505,NO,20.45,29.41,3,-1.43,6106,113.62597,123.403438,133.123407,139.653012,I,Above,Hip,0,5701,,24.93002834,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 30272,NJBF000064164,316 N HARVARD AVE,Ventnor City,NJ,39.34375288,-74.48463417,RES1,3001,,20,NE,2001,2001,3102,2,1,2306.42906,2306.42906,3505,NO,30.92,41.95,3,2.97,6106,113.627525,123.404928,133.124553,139.657992,I,Above,Hip,0,5701,,36.43472736,0,1.2,,,,1,1,,0.03,nav,1,2001,2,, 30273,NJBF000064067,103 S MARION AVE,Ventnor City,NJ,39.34348815,-74.46657968,RES3B,3001,,18,E,1924,1924,3303,3,1,1706.67734,1706.67734,3504,NO,42.04,53.2,-4,0,6106,114.028795,123.731032,133.472465,139.967749,I,Above,Gable,0,NaN,,47.62329892,0,1.2,,,,1,1,,0.03,nav,1,1924,3,, 30274,NJBF000063945,117 N DUDLEY AVE,Ventnor City,NJ,39.34316152,-74.47826003,RES1,3001,,17,NE,1921,1921,3102,2,1,2418.446571,2418.446571,3505,NO,40.26,51.81,3,4.86,6106,113.776106,123.525352,133.252195,139.780723,I,Above,Hip,0,5701,,46.03465226,0,1.1,,,,1,1,,0.03,nav,1,1921,2,, 30275,NJBF000063842,5010 ATLANTIC AVE,Ventnor City,NJ,39.34286457,-74.46823387,RES3B,3001,,17,E,1950,1950,3303,2,1,1348.354324,1348.354324,3504,NO,21.11,30.21,-4,0,6106,114.000683,123.708176,133.447395,139.95112,I,Above,Gable,0,NaN,,25.65591434,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 30276,NJBF000063797,103 S NASHVILLE AVE,Ventnor City,NJ,39.3427255,-74.4681965,RES3B,3001,,18,E,2007,2007,3303,3,2,2010.011835,2010.011835,3504,NO,34.6,44.25,-4,0,6106,114.003328,123.710361,133.449616,139.953869,I,Above,Flat,0,NaN,,39.42876139,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 30277,NJBF000063802,109 N DORSET AVE,Ventnor City,NJ,39.3427359,-74.47879713,COM1,3001,,NaN,ME,1940,1940,3401,2,2,1382.561746,1382.561746,3507,NO,25.84,32.47,1,2.68,6106,113.769902,123.520436,133.246639,139.77842,I,Above,Flat,0,NaN,,29.1544861,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 30278,NJBF000063741,5700 EDGEWATER AVE,Ventnor City,NJ,39.34257064,-74.47702206,RES1,3001,,17,NE,1955,1955,3102,2,1,2111.43279,2111.43279,3505,NO,30.49,37.28,3,7.32,6106,113.811225,123.553998,133.28228,139.811548,I,Above,Hip,0,5701,,33.88469074,0,0,,,,1,1,,0.03,nav,1,1955,2,, 30279,NJBF000063768,19 S LITTLE ROCK AVE,Ventnor City,NJ,39.3426535,-74.471015,RES1,3001,,NaN,NE,1890,1916,3102,2,1,1660.145959,1660.145959,3505,NO,24.13,30.48,3,2.12,6106,113.942375,123.660647,133.39629,139.90979,I,Above,Flat,0,5701,,27.30583009,0,0,,,,1,1,,0.03,nav,1,1890,2,, 30280,NJBF000063742,623 KINGSLEY DRIVE,Ventnor City,NJ,39.3425805,-74.4952805,RES1,3001,,17,NE,1978,1978,3102,1,1,1847.283232,1847.283232,3505,NO,21.05,32.43,3,8.39,6106,113.407402,123.228106,132.936958,139.475352,I,Above,Hip,0,5701,,26.73873958,0,0,,,,1,1,,0.03,nav,1,1978,1,, 30281,NJBF000063636,,Ventnor City,NJ,39.34226105,-74.47761283,RES1,3001,,NaN,NE,1906,0,3102,2,1,1433.650074,1433.650074,3505,NO,42.32,56.97,3,6.53,6106,113.802311,123.546839,133.274407,139.806528,I,Above,Flat,0,5701,,49.64378164,0,0,,,,1,1,,0.03,nav,1,1906,2,, 30282,NJBF000063641,16 S VICTORIA AVE,Ventnor City,NJ,39.34227544,-74.47176125,RES1,3001,,17,NE,1920,1920,3102,2,1,1720.040091,1720.040091,3505,NO,37.16,50.32,3,7.96,6106,113.93097,123.651429,133.386105,139.903672,I,Above,Hip,0,5701,,43.73532391,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30283,NJBF000063688,103 N DORSET AVE,Ventnor City,NJ,39.34239566,-74.47851456,COM1,3001,,NaN,ME,1925,1926,3401,2,1,2413.41974,2413.41974,3507,NO,25.8,36.6,1,2.64,6106,113.780632,123.529222,133.25574,139.788849,I,Above,Hip,0,NaN,,31.20268288,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30284,NJBF000063683,106 N DORSET AVE,Ventnor City,NJ,39.34237245,-74.47914889,RES1,3001,,NaN,NE,1920,1920,3102,1,1,1798.725553,1798.725553,3505,NO,14.59,28.46,3,-1.26,6106,113.766968,123.518151,133.243931,139.778283,I,Above,Flat,0,5701,,21.52297009,0,0,,,,1,1,,0.03,nav,1,1920,1,, 30285,NJBF000062966,127 N PORTLAND AVE,Ventnor City,NJ,39.34060622,-74.48396367,RES1,3001,,28,NE,1940,1940,3102,2,2,858.6218279,858.6218279,3505,NO,29.96,41.19,3,7.42,6106,113.684294,123.451648,133.171936,139.721821,I,Above,Flat,0,5701,,35.57830054,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30286,NJBF000063455,441-443 BERKSHIRE DR,Ventnor City,NJ,39.34178232,-74.4933694,RES1,3001,,45,NE,1970,1970,3102,2,2,1820.736287,1820.736287,3505,NO,34.31,41.61,3,2.08,6106,113.460492,123.27099,132.981677,139.525205,I,Above,Flat,0,5701,,37.96308149,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30287,NJBF000063294,405-407 BERKSHIRE DR,Ventnor City,NJ,39.34135296,-74.4948054,RES1,3001,,45,NE,1968,1968,3102,2,2,2238.270069,2238.270069,3505,NO,34.66,48.12,3,7.4,6106,113.434463,123.250197,132.959524,139.50399,I,Above,Gable,0,5701,,41.39181238,0,0,,,,1,1,,0.03,nav,1,1968,2,, 30288,NJBF000063495,202 N CAMBRIDGE AVE,Ventnor City,NJ,39.34187217,-74.48253186,RES1,3001,,16,NE,1925,1925,3102,1,1,1021.300047,1021.300047,3505,NO,20.32,28.27,3,3.87,6106,113.698966,123.463218,133.185141,139.726872,I,Above,Hip,0,5701,,24.29527328,0,0,,,,1,1,,0.03,nav,1,1925,1,, 30289,NJBF000063208,2 S OXFORD AVE,Ventnor City,NJ,39.34112473,-74.4755952,RES1,3001,,18,NE,1910,1910,3102,3,1,2667.279434,2667.279434,3505,NO,52.08,57.46,3,5.85,6106,113.861881,123.59544,133.325327,139.859037,I,Above,Gable,0,5701,,54.77052935,0,1.2,,,,1,1,,0.03,nav,1,1910,3,, 30290,NJBF000063189,112 S LITTLE ROCK AVE,Ventnor City,NJ,39.34109819,-74.47021589,COM1,3001,,45,ME,1950,1950,3401,2,4,1624.845307,1624.845307,3507,NO,25.41,38.51,1,0.53,6106,113.980541,123.692024,133.428532,139.947068,I,Above,Flat,0,NaN,,31.9598538,0,0,,,,1,1,,0.03,nav,1,1950,2,, 30291,NJBF000063251,204 N PRINCETON AVE,Ventnor City,NJ,39.34122882,-74.48416381,RES1,3001,,17,NE,1949,1949,3102,1,1,1421.093375,1421.093375,3505,NO,15.81,28.38,3,2.96,6106,113.671521,123.441188,133.161292,139.707954,I,Above,Flat,0,5701,,22.09605093,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 30292,NJBF000062861,225 N WISSAHICKON AVE,Ventnor City,NJ,39.34037695,-74.49084632,RES1,3001,,17,NE,1955,1955,3102,1,1,1131.739933,1131.739933,3505,NO,12.92,18.08,3,1.11,6106,113.535284,123.331507,133.044637,139.596353,I,Above,Gable,0,5701,,15.50291111,0,0,,,,1,1,,0.03,nav,1,1955,1,, 30293,NJBF000062734,20 S DUDLEY AVE,Ventnor City,NJ,39.34010525,-74.47614669,RES1,3001,,17,NE,1975,1975,3102,2,1,4646.29534,4646.29534,3505,YES,41.19,47,3,6.14,6106,113.863359,123.596807,133.325937,139.866333,I,Above,Hip,0,5701,,44.09467191,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30294,NJBF000063155,6315 MONMOUTH AVE,Ventnor City,NJ,39.34100788,-74.48413473,RES1,3001,,17,NE,1932,1932,3102,2,1,978.7214896,978.7214896,3505,NO,31.57,43.2,3,3.81,6106,113.675123,123.444149,133.164274,139.712109,I,Above,Flat,0,5701,,37.38205668,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 30295,NJBF000062770,5902 VENTNOR AVE,Ventnor City,NJ,39.34019167,-74.47761226,RES1,3001,,17,NE,1920,1920,3102,2,1,2082.516398,2082.516398,3505,NO,40.65,51.21,3,3.27,6106,113.829933,123.569659,133.297074,139.84029,I,Above,Hip,0,5701,,45.92997319,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30296,NJBF000062965,229 N WISSAHICKON AVE,Ventnor City,NJ,39.3406056,-74.49111647,RES1,3001,,17,NE,1950,1950,3102,1,1,1177.573791,1177.573791,3505,NO,22.93,32.18,3,8.85,6106,113.526217,123.324157,133.037027,139.587497,I,Above,Gable,0,5701,,27.55838184,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30297,NJBF000062578,227 N ROSBOROUGH AVE,Ventnor City,NJ,39.33974788,-74.49201692,RES1,3001,,17,NE,1946,1946,3102,1,1,1670.189835,1670.189835,3505,NO,18.79,29.33,3,2.16,6106,113.517901,123.317648,133.029604,139.583679,I,Above,Hip,0,5701,,24.05793259,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 30298,NJBF000062523,225 N ROSBOROUGH AVE,Ventnor City,NJ,39.3396295,-74.491919,RES1,3001,,17,NE,1942,1942,3102,2,1,932.1816854,932.1816854,3505,NO,37.92,51.5,3,8.82,6106,113.521671,123.320705,133.03275,139.587449,I,Above,Gable,0,5701,,44.70989802,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 30299,NJBF000062751,225 N NEWARK AVE,Ventnor City,NJ,39.34013767,-74.49151701,RES1,3001,,17,NE,2015,2015,3102,2,1,1320.081319,1320.081319,3505,NO,33.36,42.22,3,3.22,6106,113.523675,123.322214,133.034674,139.587201,I,Above,Gable,0,5701,,37.78749,0,0,,,,1,1,,0.03,nav,1,2015,2,, 30300,NJBF000062735,7 S DORSET AVE,Ventnor City,NJ,39.3401135,-74.4767805,RES1,3001,,18,NE,1918,1918,3102,2,1,2089.302074,2089.302074,3505,NO,42.74,53.73,3,4.9,6106,113.84928,123.585374,133.313755,139.855578,I,Above,Hip,0,5701,,48.23233079,0,1.2,,,,1,1,,0.03,nav,1,1918,2,, 30301,NJBF000062682,127 N NEWPORT AVE,Ventnor City,NJ,39.3400003,-74.4849059,RES1,3001,,NaN,NE,1900,1900,3102,2,1,1760.72888,1760.72888,3505,NO,20.78,31.6,3,-1.68,6106,113.67165,123.441551,133.160784,139.714522,I,Above,Flat,0,5701,,26.18850189,0,0,,,,1,1,,0.03,nav,1,1900,2,, 30302,NJBF000062736,127 N NEWPORT AVE,Ventnor City,NJ,39.3401156,-74.48462149,RES1,3001,,NaN,NE,1960,1900,3102,2,1,1624.662768,1624.662768,3505,NO,32.74,42.81,3,6.49,6106,113.676379,123.44535,133.164897,139.717857,I,Above,Flat,0,5701,,37.77289037,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30303,NJBF000062471,220 N NEWARK AVE,Ventnor City,NJ,39.3395289,-74.49151615,RES1,3001,,17,NE,1953,1953,3102,1,1,1384.521726,1384.521726,3505,NO,23.58,38.35,3,6.08,6106,113.531955,123.329001,133.041433,139.596876,I,Above,Hip,0,5701,,30.96232358,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 30304,NJBF000059872,107 N FREDERICKSBURG,Ventnor City,NJ,39.33498956,-74.49400723,RES1,3001,,17,NE,1972,1972,3102,1,1,1603.82176,1603.82176,3505,NO,17.87,27.62,3,5.65,6106,113.53929,123.335353,133.044924,139.617604,I,Above,Gable,0,5701,,22.74324219,0,0,,,,1,1,,0.03,nav,1,1972,1,, 30305,NJBF000066731,615 N SOMERSET AVE,Ventnor City,NJ,39.35060575,-74.48245764,RES1,3001,,17,NE,1975,1975,3102,1,1,1673.543813,1673.543813,3507,NO,18.01,24.88,1,-0.62,6106,113.586583,123.368607,133.090027,139.585064,I,Above,Hip,0,5701,,21.44256342,0,0,,,,1,1,,0.03,nav,1,1975,1,, 30306,NJBF000058721,16 S WASHINGTON AVE,Ventnor City,NJ,39.3328075,-74.491258,RES1,3001,,17,NE,1925,1925,3102,2,1,1226.586417,1226.586417,3505,NO,31.13,38.71,3,0.18,6106,113.630329,123.408635,133.120365,139.705008,I,Above,Hip,0,5701,,34.91813687,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30307,NJBF000064671,19 N HILLSIDE AVE,Ventnor City,NJ,39.3450394,-74.47093637,RES1,3001,,17,NE,1920,1920,3102,2,2,1622.024641,1622.024641,3507,NO,32.76,45.03,1,0.65,6106,113.912767,123.635931,133.371787,139.873291,I,Above,Hip,0,5701,,38.89237368,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30308,NJBF000061797,300 N LAFAYETTE AVE,Ventnor City,NJ,39.33826883,-74.49314672,RES1,3001,,17,NE,2003,2003,3102,2,1,2163.679523,2163.679523,3505,NO,33.35,39.52,3,6.27,6106,113.513066,123.314007,133.024783,139.584754,I,Above,Hip,0,5701,,36.43532528,0,1.2,,,,1,1,,0.03,nav,1,2003,2,, 30309,NJBF000064086,26 S OAKLAND AVE,Ventnor City,NJ,39.3435322,-74.46838942,RES3B,3001,,17,E,1908,1908,3303,2,1,1562.37478,1562.37478,3504,NO,24.52,30.18,-4,0,6106,113.9885,123.698097,133.437164,139.938261,I,Above,Hip,0,NaN,,27.34749996,0,1.1,,,,1,1,,0.03,nav,1,1908,2,, 30310,NJBF000063457,206 N HARVARD AVE,Ventnor City,NJ,39.34178554,-74.48314861,RES1,3001,,17,NE,1925,1925,3102,2,1,874.1571464,874.1571464,3505,NO,32.92,40.33,3,1.89,6106,113.686489,123.453151,133.174388,139.717198,I,Above,Flat,0,5701,,36.62723303,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30311,NJBF000058839,24 S BALTIMORE AVE,Ventnor City,NJ,39.33303718,-74.49000592,RES1,3001,,17,NE,1910,1910,3102,3,1,1602.312264,1602.312264,3505,NO,47.25,60.66,3,0.79,6110,113.654706,123.428313,133.141304,139.726803,I,Above,Flat,0,5701,,53.95466462,0,0,,,,1,1,,0.35,nav,1,1910,3,, 30312,NJBF000058426,104 S BALTIMORE AVE,Ventnor City,NJ,39.33229124,-74.48940495,RES1,3001,,18,NE,1927,1927,3102,2,1,1528.111843,1528.111843,3505,NO,30.71,36.43,3,0.23,6106,113.67837,123.447353,133.160754,139.749836,I,Above,Gable,0,5701,,33.5683204,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 30313,NJBF000062133,,Ventnor City,NJ,39.33885473,-74.48246433,RES1,3001,,NaN,NE,1969,0,3102,2,1,1907.332483,1907.332483,3505,NO,40.37,48.85,3,5.51,6106,113.740996,123.497798,133.219576,139.777727,I,Above,Gable,0,5701,,44.61248687,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30314,NJBF000062157,310 N LAFAYETTE AVE,Ventnor City,NJ,39.33889489,-74.49373723,RES1,3001,,17,NE,1973,1973,3102,2,1,1567.163317,1567.163317,3505,NO,32.92,38.01,3,2.31,6106,113.491466,123.296539,133.006801,139.563408,I,Above,Gable,0,5701,,35.46483255,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 30315,NJBF000062162,6507 WINCHESTER AVE,Ventnor City,NJ,39.3389064,-74.4848113,RES1,3001,,17,NE,1923,1923,3102,2,1,1405.74431,1405.74431,3505,NO,31.65,40.94,3,5.58,6106,113.68853,123.455372,133.174613,139.734181,I,Above,Flat,0,5701,,36.29210177,0,1.2,,,,1,1,,0.03,nav,1,1923,2,, 30316,NJBF000062111,110 N NEW HAVEN AVE,Ventnor City,NJ,39.33881292,-74.48587317,RES1,3001,,17,NE,1942,1942,3102,2,1,1050.542446,1050.542446,3505,NO,41.65,54.43,3,4.32,6106,113.666351,123.437471,133.155577,139.715998,I,Above,Hip,0,5701,,48.04251699,0,0,,,,1,1,,0.03,nav,1,1942,2,, 30317,NJBF000062074,214 N ROSBOROUGH AVE,Ventnor City,NJ,39.33875453,-74.49165114,RES1,3001,,17,NE,1941,1941,3102,1,1,1303.987723,1303.987723,3505,NO,18.13,31.29,3,3.8,6106,113.539501,123.335209,133.04746,139.606467,I,Above,Hip,0,5701,,24.71125544,0,1.1,,,,1,1,,0.03,nav,1,1941,1,, 30318,NJBF000065492,418 N DUDLEY AVE,Ventnor City,NJ,39.34724077,-74.48206524,RES1,3001,,17,NE,1960,1960,3102,1,1,2273.811458,2273.811458,3505,NO,9.95,17.07,3,-2.21,6106,113.638603,123.412483,133.13479,139.647131,I,Above,Gable,0,5701,,13.51174509,0,1.2,,,,1,1,,0.03,nav,1,1960,1,, 30319,NJBF000063940,109 N OXFORD AVE,Ventnor City,NJ,39.34315267,-74.47735996,RES1,3001,,17,NE,1962,1962,3102,2,1,1196.843824,1196.843824,3505,NO,36.74,49.66,3,0.4,6106,113.796071,123.54155,133.269454,139.79631,I,Above,Gable,0,5701,,43.19931166,0,0,,,,1,1,,0.03,nav,1,1962,2,, 30320,NJBF000061979,116 N TROY AVE,Ventnor City,NJ,39.33858312,-74.48717126,RES1,3001,,17,NE,1948,1948,3102,2,1,1072.121009,1072.121009,3505,NO,40.7,52.34,3,2.99,6106,113.640818,123.416893,133.133624,139.695349,I,Above,Flat,0,5701,,46.519958,0,0,,,,1,1,,0.03,nav,1,1948,2,, 30321,NJBF000058099,109 S WASHINGTON AVE,Ventnor City,NJ,39.33171412,-74.48991966,RES1,3001,,20,NE,2001,2001,3102,2,1,1628.659961,1628.659961,3505,NO,34.96,40.72,3,4.55,6106,113.675122,123.444674,133.157426,139.747798,I,Above,Flat,0,5701,,37.8406899,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 30322,NJBF000065377,312 N SURREY AVE,Ventnor City,NJ,39.34689589,-74.47825585,RES1,3001,,17,NE,1963,1963,3102,2,1,1131.424297,1131.424297,3505,NO,33.56,44.01,3,-0.9,6106,113.727252,123.484432,133.211217,139.719854,I,Above,Gable,0,5701,,38.78756829,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 30323,NJBF000060550,223 N FREDERICKSBURG,Ventnor City,NJ,39.33617194,-74.49508591,RES1,3001,,19,NE,1925,2018,3102,2,1,1024.113419,1024.113419,3505,NO,41.08,55.42,3,7.54,6106,113.499075,123.302957,133.011708,139.57831,I,Above,Gable,0,5701,,48.24798035,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30324,NJBF000061944,10 S CAMBRIDGE AVE,Ventnor City,NJ,39.33852272,-74.4798274,RES1,3001,,17,NE,1930,1930,3102,2,1,1809.386341,1809.386341,3505,NO,29.99,41.71,3,4.15,6106,113.803608,123.548537,133.273215,139.829698,I,Above,Hip,0,5701,,35.84916503,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30325,NJBF000061599,120 N WISSAHICKON AVE,Ventnor City,NJ,39.33792483,-74.48885176,RES1,3001,,45,NE,1940,1940,3102,2,3,1503.73248,1503.73248,3505,NO,36.35,50.1,3,5.45,6106,113.612663,123.394268,133.109216,139.673845,I,Above,Flat,0,5701,,43.22334987,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30326,NJBF000061704,13 N NEW HAVEN AVE,Ventnor City,NJ,39.3381071,-74.48481845,COM1,3001,,28,ME,1930,1930,3401,2,1,1610.435827,1610.435827,3507,NO,26.21,40.19,1,1.94,6106,113.699219,123.464113,133.18326,139.747121,I,Above,Flat,0,NaN,,33.1960106,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30327,NJBF000061627,,Ventnor City,NJ,39.3379765,-74.4831475,COM1,3001,,NaN,ME,1920,0,3401,3,1,1343.90172,1343.90172,3507,NO,48.22,55.3,1,2.6,6106,113.737816,123.495331,133.216257,139.779844,I,Above,Hip,0,NaN,,51.75972823,0,0,,,,1,1,,0.03,nav,1,1920,3,, 30328,NJBF000061829,109 S DERBY AVE,Ventnor City,NJ,39.3383305,-74.476317,RES1,3001,,21,NE,2007,2007,3102,3,1,728.4583125,728.4583125,3505,NO,45.66,52.23,3,5.45,6106,113.88349,123.613361,133.342062,139.892224,I,Above,Hip,0,5701,,48.94529832,0,0,,,,1,1,,0.03,nav,1,2007,3,, 30329,NJBF000061884,106 N AVOLYN AVE,Ventnor City,NJ,39.3384168,-74.48629188,RES1,3001,,17,NE,1940,1940,3102,1,1,1702.71659,1702.71659,3505,NO,19.67,32.04,3,7.99,6106,113.662479,123.434399,133.152027,139.714598,I,Above,Flat,0,5701,,25.85253755,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 30330,NJBF000061541,231/2 N NEW HAVEN REAR,Ventnor City,NJ,39.33782438,-74.48423843,RES1,3001,,17,NE,1900,1900,3102,2,1,1444.554606,1444.554606,3505,NO,38.1,49.21,3,8.42,6106,113.715861,123.477594,133.197326,139.762451,I,Above,Hip,0,5701,,43.65537653,0,0,,,,1,1,,0.03,nav,1,1900,2,, 30331,NJBF000061515,6400 VENTNOR AVE,Ventnor City,NJ,39.33777985,-74.48239652,COM1,3001,219,NaN,ME,1935,1935,3401,1,1,1929.922158,1929.922158,3507,NO,19.4,29.79,1,2,6106,113.757049,123.51091,133.232629,139.796634,I,Above,Flat,0,NaN,,24.59347779,0,0,,,,1,1,,0.03,nav,1,1935,1,, 30332,NJBF000060636,10 N NEWARK AVE,Ventnor City,NJ,39.33630646,-74.48827805,RES1,3001,,17,NE,1920,1920,3102,2,1,2847.573588,2847.573588,3505,NO,34.5,48.73,3,8.4,6106,113.647509,123.422517,133.137836,139.710636,I,Above,Gable,0,5701,,41.61526271,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30333,NJBF000060579,102 S STRATFORD AVE,Ventnor City,NJ,39.33622548,-74.48161335,RES1,3001,,16,NE,1925,1925,3102,1,1,2073.82844,2073.82844,3505,NO,11.46,18.36,3,-0.33,6106,113.795521,123.542153,133.264487,139.836279,I,Above,Flat,0,5701,,14.90806461,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 30334,NJBF000061456,,Ventnor City,NJ,39.33767017,-74.49526523,RES1,3001,,NaN,NE,1969,0,3102,2,1,1982.865695,1982.865695,3505,NO,32.91,43.8,3,0.6,6106,113.474456,123.283035,132.991785,139.55205,I,Above,Hip,0,5701,,38.35696074,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30335,NJBF000061263,,Ventnor City,NJ,39.337341,-74.4950295,RES1,3001,,NaN,NE,1969,0,3102,2,1,1578.373293,1578.373293,3505,NO,22.89,29.46,3,1.37,6106,113.484177,123.290886,132.99982,139.561742,I,Above,Hip,0,5701,,26.1720364,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30336,NJBF000061337,,Ventnor City,NJ,39.33746788,-74.49491658,RES1,3001,,NaN,NE,1969,0,3101,1,1,2142.896372,2142.896372,3505,NO,12.61,25.97,3,1.75,6106,113.484927,123.291475,133.000526,139.562055,I,Above,Hip,0,5701,,19.29394517,0,0,,,,1,1,,0.03,nav,1,1969,1,, 30337,NJBF000061114,212 N SWARTHMORE AVE,Ventnor City,NJ,39.33707963,-74.49449593,RES1,3001,,17,NE,1998,1998,3102,2,1,1647.764711,1647.764711,3505,NO,40.7,50.32,3,4.78,6106,113.499572,123.303291,133.012691,139.576347,I,Above,Flat,0,5701,,45.50893398,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, 30338,NJBF000061188,113 N ROSBOROUGH AVE,Ventnor City,NJ,39.33721428,-74.4893576,RES1,3001,,17,NE,1938,1938,3102,2,1,1369.785607,1369.785607,3505,NO,37.96,52.37,3,3.77,6106,113.611215,123.393177,133.107535,139.675357,I,Above,Gable,0,5701,,45.16661209,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 30339,NJBF000060567,13 N ROSBOROUGH AVE,Ventnor City,NJ,39.33620132,-74.48850443,RES1,3001,,17,NE,1930,1930,3102,2,1,1691.09121,1691.09121,3505,NO,23.88,31.76,3,2.24,6106,113.643968,123.419665,133.134741,139.707915,I,Above,Hip,0,5701,,27.81953277,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30340,NJBF000061356,110 N NEWARK AVE,Ventnor City,NJ,39.3374965,-74.4892485,RES1,3001,,17,NE,1972,1972,3102,1,1,1694.66464,1694.66464,3505,NO,24.53,34.58,3,6.27,6106,113.609747,123.391965,133.106466,139.672989,I,Above,Hip,0,5701,,29.55234185,0,0,,,,1,1,,0.03,nav,1,1972,1,, 30341,NJBF000060532,19 N WYOMING AVE,Ventnor City,NJ,39.33614634,-74.48940099,RES1,3001,,17,NE,1940,1940,3102,2,1,1369.397491,1369.397491,3505,NO,46.71,54.75,3,8.16,6106,113.624935,123.404317,133.118487,139.691316,I,Above,Hip,0,5701,,50.73069327,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30342,NJBF000060611,3 N WISSAHICKON AVE,Ventnor City,NJ,39.3362755,-74.48704307,RES1,3001,,17,NE,1940,1940,3102,1,1,1530.555957,1530.555957,3505,NO,10.02,17.58,3,-2.58,6106,113.675175,123.444847,133.161419,139.734909,I,Above,Hip,0,5701,,13.79974217,0,0,,,,1,1,,0.03,nav,1,1940,1,, 30343,NJBF000061326,107 N NEWARK AVE,Ventnor City,NJ,39.33744643,-74.48869476,RES1,3001,,17,NE,1930,1930,3102,2,1,1192.971785,1192.971785,3505,NO,32.5,38.82,3,6.54,6106,113.622675,123.402395,133.117447,139.684496,I,Above,Gable,0,5701,,35.65892563,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30344,NJBF000060593,214 N WASHINGTON AVE,Ventnor City,NJ,39.33625358,-74.49452478,RES1,3001,,17,NE,1950,1950,3102,2,1,1226.060886,1226.060886,3505,NO,28.82,37.43,3,7.25,6106,113.510331,123.312007,133.021283,139.588292,I,Above,Gable,0,5701,,33.1221705,0,0,,,,1,1,,0.03,nav,1,1950,2,, 30345,NJBF000061295,7029-7031 VENTNOR GD,Ventnor City,NJ,39.33739155,-74.49342906,RES1,3001,,45,NE,1970,1970,3102,2,2,1649.852646,1649.852646,3505,NO,31.07,36.96,3,8.97,6106,113.518858,123.318774,133.029203,139.592747,I,Above,Gable,0,5701,,34.01122704,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30346,NJBF000060539,10 S TROY AVE,Ventnor City,NJ,39.3361575,-74.4852045,RES1,3001,,16,NE,1940,1940,3102,1,1,1550.992525,1550.992525,3505,NO,18.4,28.18,3,0.79,6106,113.717339,123.478911,133.197375,139.7717,I,Above,Hip,0,5701,,23.29082182,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 30347,NJBF000061248,22 N RICHARDS AVE,Ventnor City,NJ,39.33730698,-74.48690502,RES1,3001,,17,NE,1925,1925,3102,2,1,1355.830375,1355.830375,3505,NO,20.42,27.59,3,-1.19,6106,113.664081,123.435817,133.152677,139.720979,I,Above,Flat,0,5701,,24.00347604,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30348,NJBF000061120,21 N BUFFALO AVE,Ventnor City,NJ,39.33709604,-74.48695848,RES1,3001,,17,NE,1932,1932,3102,2,1,1458.016197,1458.016197,3505,NO,30.14,38.49,3,-1.61,6106,113.665797,123.43722,133.153999,139.723367,I,Above,Hip,0,5701,,34.31462589,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 30349,NJBF000061301,101 S HARVARD AVE,Ventnor City,NJ,39.33739948,-74.47912668,RES1,3001,,19,NE,1917,1917,3102,2,1,598.6203144,598.6203144,3505,NO,24.98,38.53,3,1.15,6106,113.834256,123.573479,133.298788,139.86021,I,Above,Hip,0,5701,,31.75959767,0,0,,,,1,1,,0.03,nav,1,1917,2,, 30350,NJBF000064753,225 N SOMERSET AVE,Ventnor City,NJ,39.34525022,-74.47821979,RES1,3001,,17,NE,1929,1929,3102,1,1,1139.076408,1139.076408,3505,NO,18.28,27.43,3,4.32,6106,113.749511,123.503125,133.23002,139.747324,I,Above,Gable,0,5701,,22.85432586,0,0,,,,1,1,,0.03,nav,1,1929,1,, 30351,NJBF000064661,7 N NASHVILLE AVE,Ventnor City,NJ,39.34502171,-74.47001618,RES1,3001,,17,NE,1920,1920,3102,2,1,1175.590635,1175.590635,3507,NO,28.55,37.98,1,-0.52,6106,113.933223,123.652617,133.389651,139.888592,I,Above,Hip,0,5701,,33.26440296,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30352,NJBF000064622,5 N NASHVILLE AVE,Ventnor City,NJ,39.34493197,-74.46992332,RES1,3001,,17,NE,1915,1915,3102,2,1,1140.777896,1140.777896,3507,NO,23.66,30.69,1,0.1,6106,113.936444,123.655269,133.39242,139.891528,I,Above,Flat,0,5701,,27.17571893,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 30353,NJBF000064698,16 N OAKLAND AVE,Ventnor City,NJ,39.34510585,-74.46981116,RES1,3001,,17,NE,1920,1920,3102,2,1,1164.155567,1164.155567,3507,NO,24.73,32.54,1,2.68,6106,113.936634,123.655376,133.392676,139.890604,I,Above,Hip,0,5701,,28.63760588,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30354,NJBF000064635,6 S BATON ROUGE AVE,Ventnor City,NJ,39.34495918,-74.46748084,RES1,3001,,17,NE,1920,1920,3102,2,1,1578.971119,1578.971119,3504,NO,29.74,37.53,-4,0,6106,113.989754,123.698791,133.439123,139.930566,I,Above,Flat,0,5701,,33.6349331,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30355,NJBF000064449,2 N NASHVILLE AVE,Ventnor City,NJ,39.34451731,-74.47010616,RES1,3001,29,17,NE,1920,1920,3102,2,1,1568.26979,1568.26979,3507,NO,31.04,41.65,1,-0.41,6106,113.937848,123.656526,133.393428,139.895103,I,Above,Hip,0,5701,,36.34642044,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30356,NJBF000064648,210 N SUFFOLK AVE,Ventnor City,NJ,39.34498851,-74.47759016,RES1,3001,,17,NE,1929,1929,3102,1,1,997.665028,997.665028,3505,NO,17.39,26.29,3,0.11,6106,113.766831,123.517265,133.244913,139.762451,I,Above,Hip,0,5701,,21.83571746,0,0,,,,1,1,,0.03,nav,1,1929,1,, 30357,NJBF000059509,7117 VENTNOR AVE,Ventnor City,NJ,39.33436882,-74.49066388,REL1,3001,,NaN,ME,1926,1926,3401,1,1,1689.384171,1689.384171,3507,NO,14.78,26.69,1,0.35,6106,113.621655,123.401707,133.114336,139.69374,I,Above,Hip,0,NaN,,20.73625008,0,0,,,,1,1,,0.03,nav,1,1926,1,, 30358,NJBF000064378,208 N OXFORD AVE,Ventnor City,NJ,39.34432983,-74.47878705,RES1,3001,,17,NE,1927,1927,3102,1,1,900.8043644,900.8043644,3505,NO,13.95,19.68,3,2.78,6106,113.749073,123.503083,133.229321,139.752525,I,Above,Hip,0,5701,,16.81416804,0,0,,,,1,1,,0.03,nav,1,1927,1,, 30359,NJBF000064362,311 N CAMBRIDGE AVE,Ventnor City,NJ,39.3443088,-74.48367018,RES1,3001,,17,NE,1958,1958,3102,1,1,1669.890157,1669.890157,3505,NO,14.29,20.12,3,-1.76,6106,113.641492,123.416019,133.136691,139.666371,I,Above,Gable,0,5701,,17.20795894,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30360,NJBF000064301,220 N DUDLEY AVE,Ventnor City,NJ,39.34415049,-74.47965034,RES1,3001,,45,NE,1962,1962,3102,2,2,1056.484823,1056.484823,3505,NO,36.96,50.06,3,5.76,6106,113.732395,123.489625,133.214857,139.740443,I,Above,Gable,0,5701,,43.50890539,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 30361,NJBF000064388,5601 MONMOUTH AVE,Ventnor City,NJ,39.34436449,-74.4779122,RES1,3001,,17,NE,1940,1940,3102,2,1,1866.196096,1866.196096,3505,NO,36.87,42.62,3,3.28,6106,113.767932,123.518365,133.245634,139.767096,I,Above,Hip,0,5701,,39.7433271,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 30362,NJBF000063896,1 S VICTORIA AVE,Ventnor City,NJ,39.34301909,-74.47187265,COM1,3001,,NaN,ME,1937,1937,3401,2,2,1383.375965,1383.375965,3507,NO,36.4,50.39,1,2.57,6106,113.918675,123.64126,133.375848,139.890042,I,Above,Gable,0,NaN,,43.39731166,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 30363,NJBF000063897,5402 WINCHESTER AVE,Ventnor City,NJ,39.3430205,-74.473481,RES1,3001,,18,NE,2017,2017,3102,2,1,1129.788605,1129.788605,3505,NO,43.34,48.41,3,5.64,6106,113.883267,123.612434,133.345023,139.863603,I,Above,Hip,0,5701,,45.87153262,0,0,,,,1,1,,0.03,nav,1,2017,2,, 30364,NJBF000063451,,Ventnor City,NJ,39.341776,-74.468828,RES1,3001,,NaN,NE,1969,0,3102,2,1,1262.784586,1262.784586,3505,NO,31.91,42.65,3,-2.96,6106,114.002028,123.709457,133.447807,139.958592,I,Above,Hip,0,5701,,37.2769048,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30365,NJBF000063488,404-406 N WISSAHICKON AVE,Ventnor City,NJ,39.34185868,-74.49286522,RES1,3001,,NaN,NE,1970,1970,3102,2,1,1760.947947,1760.947947,3505,NO,28.24,37.2,3,6.62,6106,113.47062,123.279109,132.990281,139.533753,I,Above,Gable,0,5701,,32.72209052,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30366,NJBF000062545,117 N NEWPORT AVE,Ventnor City,NJ,39.33967622,-74.4846397,RES1,3001,,28,NE,1925,1925,3102,2,1,1071.446015,1071.446015,3505,NO,22.03,27.87,3,-1.79,6106,113.681892,123.449885,133.169378,139.724719,I,Above,Flat,0,5701,,24.9494469,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30367,NJBF000062489,115 NEWPORT COURT,Ventnor City,NJ,39.33956961,-74.48424986,RES1,3001,220,NaN,NE,1920,1920,3102,1,2,4479.683001,4479.683001,3505,NO,16.97,31.45,3,4.63,6106,113.691932,123.458016,133.177919,139.733605,I,Above,Gable,0,5701,,24.20954542,0,1.2,,,,1,1,,0.03,nav,1,1920,1,, 30368,NJBF000062527,,Ventnor City,NJ,39.33963775,-74.48398865,RES1,3001,,NaN,NE,1969,0,3102,2,1,877.4804147,877.4804147,3505,NO,30.62,39.49,3,-0.35,6106,113.696774,123.461918,133.182109,139.737257,I,Above,Hip,0,5701,,35.05584001,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30369,NJBF000062557,102 N PORTLAND AVE,Ventnor City,NJ,39.33969549,-74.48361908,RES1,3001,,17,NE,1900,1900,3102,1,1,1245.051152,1245.051152,3505,NO,20.64,34.76,3,5.47,6106,113.704171,123.467887,133.188484,139.743056,I,Above,Flat,0,5701,,27.70003513,0,0,,,,1,1,,0.03,nav,1,1900,1,, 30370,NJBF000062164,6717 MONMOUTH AVE,Ventnor City,NJ,39.3389075,-74.48866081,RES1,3001,,47,NE,1960,1960,3102,2,2,2295.553466,2295.553466,3505,NO,35.23,40.44,3,0.78,6106,113.603508,123.38675,133.101984,139.661801,I,Above,Flat,0,5701,,37.83496954,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30371,NJBF000062138,210 N NEWARK AVE,Ventnor City,NJ,39.33887129,-74.49087873,RES1,3001,,17,NE,1948,1948,3102,1,1,1373.045338,1373.045338,3505,NO,12.99,25.87,3,2.48,6106,113.554985,123.347658,133.060672,139.619651,I,Above,Gable,0,5701,,19.43283057,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30372,NJBF000061381,,Ventnor City,NJ,39.33754209,-74.48109874,RES1,3001,,NaN,NE,1969,0,3102,2,1,1994.046181,1994.046181,3505,NO,25.83,40.76,3,0.75,6106,113.788885,123.536704,133.25982,139.823642,I,Above,Hip,0,5701,,33.29496275,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30373,NJBF000061338,,Ventnor City,NJ,39.3374713,-74.48125413,RES1,3001,,NaN,NE,1969,0,3102,2,1,2066.619086,2066.619086,3505,NO,19.41,24.44,3,-2.19,6106,113.786436,123.534726,133.25766,139.822079,I,Above,Hip,0,5701,,21.92550317,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30374,NJBF000061302,,Ventnor City,NJ,39.33739997,-74.48139767,RES1,3001,,NaN,NE,1969,0,3102,2,1,1942.498583,1942.498583,3505,NO,32.4,39.72,3,0.03,6106,113.784229,123.532945,133.255708,139.820705,I,Above,Gable,0,5701,,36.06261735,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30375,NJBF000061596,,Ventnor City,NJ,39.33791946,-74.4807826,RES1,3001,,NaN,NE,1969,0,3102,2,1,1638.150091,1638.150091,3505,NO,36.19,50.08,3,0.05,6106,113.790727,123.538163,133.261685,139.822981,I,Above,Hip,0,5701,,43.1317521,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30376,NJBF000061394,,Ventnor City,NJ,39.33756103,-74.48152533,RES1,3001,,NaN,NE,1969,0,3102,2,1,1868.742761,1868.742761,3505,NO,44.44,51.06,3,6.83,6106,113.779242,123.528894,133.251541,139.815801,I,Above,Flat,0,5701,,47.7506272,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30377,NJBF000061731,,Ventnor City,NJ,39.33816499,-74.48117964,RES1,3001,,NaN,NE,1969,0,3102,2,1,2194.226632,2194.226632,3505,NO,36.07,47.47,3,5.18,6106,113.778644,123.528353,133.251466,139.811944,I,Above,Gable,0,5701,,41.76977875,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30378,NJBF000061649,,Ventnor City,NJ,39.33800682,-74.48147472,RES1,3001,,NaN,NE,1969,0,3102,2,1,2240.682014,2240.682014,3505,NO,38.57,45.1,3,6.64,6106,113.774286,123.524841,133.247605,139.809333,I,Above,Hip,0,5701,,41.8366012,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30379,NJBF000061562,,Ventnor City,NJ,39.337863,-74.48177,RES1,3001,,NaN,NE,1969,0,3102,2,1,1687.858482,1687.858482,3505,NO,43.13,48.74,3,6.28,6106,113.76974,123.521174,133.243593,139.806471,I,Above,Flat,0,5701,,45.9340262,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30380,NJBF000061709,,Ventnor City,NJ,39.33812643,-74.48192261,COM1,3001,,NaN,ME,1969,0,3401,1,1,3436.527669,3436.527669,3507,NO,14.56,22.32,1,-0.43,6106,113.762798,123.515529,133.237814,139.799411,I,Above,Hip,0,NaN,,18.43862179,0,0,,,,1,1,,0.03,nav,1,1969,1,, 30381,NJBF000061657,100 S CORNWALL AVE,Ventnor City,NJ,39.3380203,-74.47819637,RES1,3001,,18,NE,1930,1930,3102,3,1,1748.374401,1748.374401,3505,NO,54.31,68.58,3,0.58,6106,113.84633,123.583225,133.309694,139.865861,I,Above,Hip,0,5701,,61.44501774,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 30382,NJBF000065075,325 N DUDLEY AVE,Ventnor City,NJ,39.3460741,-74.48063399,RES1,3001,,17,NE,1950,1950,3102,2,1,1220.995794,1220.995794,3505,NO,31.67,46.6,3,8.16,6106,113.685432,123.450886,133.174924,139.691651,I,Above,Gable,0,5701,,39.13750398,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 30383,NJBF000061190,104 N NEWARK AVE,Ventnor City,NJ,39.33721545,-74.48901042,RES1,3001,,17,NE,1925,1925,3102,1,1,1502.553333,1502.553333,3505,NO,16.77,26.92,3,-0.23,6106,113.618884,123.39936,133.114067,139.682081,I,Above,Flat,0,5701,,21.84329959,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 30384,NJBF000061171,7108 VENTNOR GARDENS,Ventnor City,NJ,39.33718294,-74.49293106,RES1,3001,,17,NE,1960,1960,3102,2,1,1351.548606,1351.548606,3505,NO,31.79,38.28,3,5.32,6106,113.532733,123.32996,133.040838,139.605816,I,Above,Hip,0,5701,,35.03273709,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30385,NJBF000061224,7106 VENTNOR GARDENS,Ventnor City,NJ,39.33726095,-74.4927749,RES1,3001,,17,NE,1960,1960,3102,2,1,1307.004566,1307.004566,3505,NO,19.59,33.06,3,-1.94,6106,113.535108,123.331864,133.042898,139.607697,I,Above,Hip,0,5701,,26.32146544,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30386,NJBF000061061,107 N WYOMING AVE,Ventnor City,NJ,39.33699188,-74.49004256,RES1,3001,,17,NE,1928,1928,3102,1,1,1785.778428,1785.778428,3505,NO,10.68,19.9,3,-2.98,6106,113.599137,123.38346,133.097111,139.66553,I,Above,Gable,0,5701,,15.28847908,0,0,,,,1,1,,0.03,nav,1,1928,1,, 30387,NJBF000060967,114 S CAMBRIDGE AVE,Ventnor City,NJ,39.33683211,-74.47848358,RES1,3001,,20,NE,1965,1965,3102,2,1,2492.466929,2492.466929,3505,NO,40.43,46.07,3,6.71,6106,113.856117,123.591238,133.317185,139.880418,I,Above,Flat,0,5701,,43.25042109,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 30388,NJBF000060972,19 N WISSAHICKON AVE,Ventnor City,NJ,39.33683846,-74.48747526,RES1,3001,,17,NE,1940,1940,3102,2,1,1007.158149,1007.158149,3505,NO,41.65,56.3,3,6.14,6106,113.657923,123.430885,133.147098,139.717634,I,Above,Gable,0,5701,,48.97807099,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30389,NJBF000060598,7007 WINCHESTER AVE,Ventnor City,NJ,39.33625603,-74.49039144,RES1,3001,,45,NE,1935,1935,3102,2,2,2054.561696,2054.561696,3505,NO,25.7,33.46,3,3.86,6106,113.601575,123.385477,133.098687,139.670211,I,Above,Flat,0,5701,,29.58037707,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 30390,NJBF000060873,115 N LAFAYETTE AVE,Ventnor City,NJ,39.3366859,-74.49069748,RES1,3001,,17,NE,1920,1920,3102,1,1,1511.12512,1511.12512,3505,NO,19.33,33.98,3,5.05,6106,113.588903,123.375237,133.088205,139.657518,I,Above,Hip,0,5701,,26.65591209,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 30391,NJBF000060822,111 N LAFAYETTE AVE,Ventnor City,NJ,39.33659431,-74.49065042,RES1,3001,,17,NE,1920,1920,3102,2,1,1109.708411,1109.708411,3505,NO,25.64,30.81,3,0.19,6106,113.591206,123.377099,133.090102,139.659872,I,Above,Hip,0,5701,,28.22734915,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30392,NJBF000060221,112 N WASHINGTON AVE,Ventnor City,NJ,39.33560413,-74.49352101,RES1,3001,,17,NE,1948,1948,3102,2,1,1748.588096,1748.588096,3505,NO,26.7,40.99,3,1.36,6106,113.541496,123.337116,133.047234,139.618144,I,Above,Flat,0,5701,,33.84829105,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 30393,NJBF000060289,114 N WASHINGTON AVE,Ventnor City,NJ,39.33572445,-74.49362451,RES1,3001,,17,NE,1948,1948,3102,1,1,1761.052276,1761.052276,3505,NO,17.12,29.35,3,-0.53,6106,113.537538,123.333925,133.043964,139.614259,I,Above,Hip,0,5701,,23.23827308,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30394,NJBF000060181,4 S WISSAHICKON AVE,Ventnor City,NJ,39.33554779,-74.48683971,RES1,3001,,17,NE,1930,1930,3102,1,1,1778.205881,1778.205881,3505,NO,17.38,22.67,3,-0.67,6106,113.689649,123.456563,133.173224,139.750403,I,Above,Flat,0,5701,,20.02188259,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 30395,NJBF000065430,505 N BURGHLEY AVE,Ventnor City,NJ,39.34706294,-74.48416451,RES1,3001,,17,NE,1950,1950,3101,1,1,1490.350945,1490.350945,3505,NO,19.59,32.23,3,5.88,6106,113.594457,123.376886,133.096837,139.612273,I,Above,Hip,0,5701,,25.9117759,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30396,NJBF000062729,6003 VENTNOR AVE,Ventnor City,NJ,39.34010002,-74.47885092,RES1,3001,,19,NE,1920,1920,3102,2,1,2822.530094,2822.530094,3505,NO,31.69,43.92,3,-1.47,6106,113.803869,123.548534,133.274503,139.820649,I,Above,Hip,0,5701,,37.8008519,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30397,NJBF000061618,7 N NEW HAVEN AVE,Ventnor City,NJ,39.33795661,-74.48472591,COM1,3001,,17,ME,1920,1920,3401,3,1,1351.902277,1351.902277,3507,NO,39.44,46.64,1,-0.33,6106,113.703289,123.467418,133.186646,139.751275,I,Above,Flat,0,NaN,,43.04173196,0,0,,,,1,1,,0.03,nav,1,1920,3,, 30398,NJBF000064788,,Ventnor City,NJ,39.345321,-74.4858685,RES1,3001,,NaN,NE,1969,0,3102,2,1,1390.325906,1390.325906,3505,NO,28,34.16,3,-1.18,6106,113.579545,123.365614,133.083833,139.609737,I,Above,Flat,0,5701,,31.07671516,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30399,NJBF000062743,104 N SACRAMENTO AVE,Ventnor City,NJ,39.34012367,-74.48258111,RES1,3001,,17,NE,1940,1940,3102,1,1,1504.829031,1504.829031,3505,NO,21.84,36.65,3,8.23,6106,113.721298,123.481661,133.20343,139.754741,I,Above,Hip,0,5701,,29.24566418,0,0,,,,1,1,,0.03,nav,1,1940,1,, 30400,NJBF000059890,13 S NEWARK AVE,Ventnor City,NJ,39.33503162,-74.48673791,RES1,3001,,17,NE,1928,1928,3102,2,1,1519.450277,1519.450277,3505,NO,30.71,44.87,3,-1.97,6106,113.699012,123.464133,133.180805,139.760566,I,Above,Hip,0,5701,,37.7891114,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30401,NJBF000063621,215 N HARVARD AVE,Ventnor City,NJ,39.34221999,-74.48307916,RES1,3001,,16,NE,1962,1962,3102,2,1,1742.033221,1742.033221,3505,NO,42.16,51.53,3,6.32,6106,113.682247,123.449609,133.170936,139.711328,I,Above,Gable,0,5701,,46.84545154,0,0,,,,1,1,,0.03,nav,1,1962,2,, 30402,NJBF000060878,4 N RICHARDS AVE,Ventnor City,NJ,39.336689,-74.486388,RES1,3001,,17,NE,1942,1942,3102,1,1,1601.760464,1601.760464,3505,NO,11.78,23.93,3,-0.97,6106,113.683942,123.451901,133.169212,139.740748,I,Above,Hip,0,5701,,17.85447569,0,1.1,,,,1,1,,0.03,nav,1,1942,1,, 30403,NJBF000062291,6209 VENTNOR AVE,Ventnor City,NJ,39.33915982,-74.48072616,RES1,3001,,17,NE,1920,1920,3102,2,1,1660.847678,1660.847678,3505,NO,40.49,50.79,3,7.13,6106,113.775193,123.525439,133.24918,139.803541,I,Above,Hip,0,5701,,45.64060808,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30404,NJBF000062365,6209 VENTNOR AVE,Ventnor City,NJ,39.33930962,-74.48084623,RES1,3001,,17,NE,1920,1920,3102,2,1,1694.529567,1694.529567,3505,NO,27.32,40.64,3,5.49,6106,113.770525,123.521637,133.245259,139.798964,I,Above,Gable,0,5701,,33.98357248,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30405,NJBF000066651,603 N SURREY AVE,Ventnor City,NJ,39.35035697,-74.48052045,RES1,3001,,17,NE,1975,1975,3102,2,1,2371.097869,2371.097869,3505,NO,19.82,27.01,3,-2.86,6106,113.632644,123.406027,133.129756,139.623665,I,Above,Gable,0,5701,,23.41553847,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30406,NJBF000064273,115 N SUFFOLK AVE,Ventnor City,NJ,39.34406884,-74.47635288,RES1,3001,,17,NE,1960,1960,3102,1,1,2310.534482,2310.534482,3505,NO,21.81,28.76,3,8.22,6106,113.806191,123.549506,133.278633,139.798567,I,Above,Gable,0,5701,,25.28780738,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 30407,NJBF000063281,320-322 N WISSAHICKON AVE,Ventnor City,NJ,39.34130586,-74.49233713,RES1,3001,,45,NE,1970,1970,3102,2,2,1538.012675,1538.012675,3505,NO,35.13,45.34,3,5.81,6106,113.489753,123.294645,133.006331,139.552768,I,Above,Hip,0,5701,,40.23603089,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30408,NJBF000063841,111 N DUDLEY AVE,Ventnor City,NJ,39.34285501,-74.47800883,RES1,3001,,17,NE,1989,1989,3102,2,1,918.2366429,918.2366429,3505,NO,42.2,51.83,3,3.83,6106,113.785704,123.533219,133.260347,139.790054,I,Above,Flat,0,5701,,47.01547641,0,0,,,,1,1,,0.03,nav,1,1989,2,, 30409,NJBF000063882,111 N DUDLEY AVE,Ventnor City,NJ,39.34298326,-74.47810067,RES1,3001,,17,NE,1989,1989,3102,2,1,1220.281486,1220.281486,3505,NO,34.41,40.17,3,-1.91,6106,113.781981,123.530165,133.257189,139.786383,I,Above,Flat,0,5701,,37.29195043,0,0,,,,1,1,,0.03,nav,1,1989,2,, 30410,NJBF000060846,6620 VENTNOR AVE,Ventnor City,NJ,39.33664306,-74.48495726,COM1,3001,,NaN,ME,1920,1920,3401,2,2,1528.424945,1528.424945,3507,NO,24.1,32.59,1,-0.5,6106,113.716125,123.477904,133.196705,139.768426,I,Above,Flat,0,NaN,,28.34462075,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30411,NJBF000060686,129 N BALTIMORE AVE,Ventnor City,NJ,39.33639511,-74.49223751,RES1,3001,,17,NE,2016,2016,3102,2,1,1162.655081,1162.655081,3505,NO,29.96,40.62,3,-1.99,6106,113.558888,123.351079,133.06252,139.63164,I,Above,Hip,0,5701,,35.28958518,0,0,,,,1,1,,0.03,nav,1,2016,2,, 30412,NJBF000066779,613 N SUFFOLK AVE,Ventnor City,NJ,39.35074455,-74.48176069,RES1,3001,,17,NE,1971,1971,3102,1,1,1373.44254,1373.44254,3507,NO,17.99,29.58,1,1.66,6106,113.600237,123.379566,133.101773,139.595263,I,Above,Gable,0,5701,,23.78529826,0,0,,,,1,1,,0.03,nav,1,1971,1,, 30413,NJBF000060494,12 S TROY AVE,Ventnor City,NJ,39.33607735,-74.48513703,RES1,3001,,16,NE,1930,1930,3102,2,1,1377.018357,1377.018357,3505,NO,45.16,60.02,3,8.13,6106,113.719914,123.480995,133.199516,139.774256,I,Above,Hip,0,5701,,52.58625013,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30414,NJBF000063113,106 S SURREY AVE,Ventnor City,NJ,39.34091965,-74.47162044,RES1,3001,,17,NE,1920,1920,3102,3,1,2494.80019,2494.80019,3505,NO,42.29,54.85,3,6.28,6106,113.952058,123.668835,133.403559,139.927373,I,Above,Gable,0,5701,,48.56730935,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 30415,NJBF000066762,815 N HARVARD AVE,Ventnor City,NJ,39.35070725,-74.48969066,RES1,3001,,17,NE,1978,1978,3101,1,1,1747.907706,1747.907706,3505,NO,19.55,31.29,3,4.06,6106,113.42494,123.238174,132.95155,139.451062,I,Above,Hip,0,5701,,25.42108422,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 30416,NJBF000061766,6006 ATLANTIC AVE,Ventnor City,NJ,39.33821502,-74.4777983,RES1,3001,,18,NE,1951,1951,3102,2,1,1701.129708,1701.129708,3505,NO,39.66,49.86,3,5.65,6110,113.852453,123.588176,133.315132,139.869391,I,Above,Flat,0,5701,,44.75880762,0,1.2,,,,1,1,,0.35,nav,1,1951,2,, 30417,NJBF000066767,610 N SURREY AVE,Ventnor City,NJ,39.35072012,-74.48137929,RES1,3001,,17,NE,1975,1975,3102,2,1,1598.412391,1598.412391,3507,NO,40.02,54.51,1,2.78,6106,113.60901,123.386679,133.109338,139.602483,I,Above,Flat,0,5701,,47.26243461,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30418,NJBF000066781,807 N CORNWALL AVE,Ventnor City,NJ,39.35075424,-74.48797399,RES1,3001,,17,NE,1976,1976,3101,1,1,1693.835188,1693.835188,3505,NO,20.24,29.96,3,5.64,6106,113.462446,123.268333,132.98354,139.482186,I,Above,Gable,0,5701,,25.0954779,0,0,,,,1,1,,0.03,nav,1,1976,1,, 30419,NJBF000060979,20 N BUFFALO AVE,Ventnor City,NJ,39.336846,-74.4872575,RES1,3001,,18,NE,2016,2016,3102,2,1,1249.796002,1249.796002,3505,NO,32.69,44.18,3,0.08,6106,113.662623,123.434678,133.151115,139.721677,I,Above,Gable,0,5701,,38.43412691,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 30420,NJBF000066427,604 N SOMERSET AVE,Ventnor City,NJ,39.34972156,-74.48229113,RES1,3001,,17,NE,1971,1971,3102,2,1,1182.618196,1182.618196,3507,NO,39.77,51.63,1,1.26,6106,113.601587,123.381261,133.103015,139.602501,I,Above,Gable,0,5701,,45.70263042,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 30421,NJBF000061737,6201 OCEAN AVE,Ventnor City,NJ,39.3381704,-74.47979531,RES1,3001,,17,NE,1920,1920,3102,3,1,1348.549772,1348.549772,3505,NO,46.97,52.77,3,5.24,6106,113.809089,123.553016,133.277683,139.836057,I,Above,Hip,0,5701,,49.8666048,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 30422,NJBF000066739,714 N DORSET AVE,Ventnor City,NJ,39.35063267,-74.48580456,RES1,3001,,17,NE,1963,1963,3101,2,1,1815.515881,1815.515881,3505,NO,33.83,43.86,3,-2.67,6106,113.512095,123.30843,133.026044,139.524036,I,Above,Gable,0,5701,,38.84268445,0,0,,,,1,1,,0.03,nav,1,1963,2,, 30423,NJBF000066020,514 N OXFORD AVE,Ventnor City,NJ,39.34870258,-74.4823816,RES1,3001,,17,NE,1963,1963,3102,1,1,1310.039546,1310.039546,3507,NO,18.73,30.67,1,2.2,6106,113.612674,123.390787,133.112575,139.617535,I,Above,Gable,0,5701,,24.6993743,0,0,,,,1,1,,0.03,nav,1,1963,1,, 30424,NJBF000060812,16 N NEWARK AVE,Ventnor City,NJ,39.33657647,-74.48849638,RES1,3001,,17,NE,1940,1940,3102,2,2,1627.894244,1627.894244,3505,NO,37.02,44.76,3,1.02,6106,113.638991,123.415628,133.130767,139.702145,I,Above,Hip,0,5701,,40.88711038,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 30425,NJBF000062004,6512 WINCHESTER AVE,Ventnor City,NJ,39.3386235,-74.484747,COM1,3001,,17,ME,1928,1928,3401,2,1,940.0302707,940.0302707,3507,NO,37.7,49.86,1,1.89,6106,113.693778,123.459652,133.178933,139.739993,I,Above,Hip,0,NaN,,43.77815807,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30426,NJBF000061929,128 N BUFFALO AVE,Ventnor City,NJ,39.33849715,-74.4885437,RES1,3001,,17,NE,1923,1923,3102,2,1,1059.508081,1059.508081,3505,NO,32.74,44.04,3,-1.32,6106,113.611668,123.393391,133.108707,139.670612,I,Above,Gable,0,5701,,38.39358833,0,0,,,,1,1,,0.03,nav,1,1923,2,, 30427,NJBF000062661,14 N CAMBRIDGE AVE,Ventnor City,NJ,39.33994049,-74.48095884,RES1,3001,,17,NE,1920,1920,3102,2,1,1703.356935,1703.356935,3505,NO,38.83,43.9,3,8.18,6106,113.75955,123.512652,133.236209,139.786606,I,Above,Hip,0,5701,,41.36672079,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30428,NJBF000062611,12 N CAMBRIDGE AVE,Ventnor City,NJ,39.33981058,-74.48089629,RES1,3001,,17,NE,1920,1920,3102,2,1,2170.069584,2170.069584,3505,NO,28.42,34.63,3,4.16,6106,113.762675,123.515203,133.238819,139.789838,I,Above,Hip,0,5701,,31.52623341,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30429,NJBF000059819,107 S TROY AVE,Ventnor City,NJ,39.33489897,-74.48370477,RES1,3001,,17,NE,1925,1925,3102,1,1,1509.355089,1509.355089,3505,NO,8.21,19.57,3,-2.89,6106,113.767656,123.51962,133.239439,139.820153,I,Above,Gable,0,5701,,13.88689642,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 30430,NJBF000060436,18 N WYOMING AVE,Ventnor City,NJ,39.33597347,-74.48973526,RES1,3001,,17,NE,1944,1944,3102,2,1,1536.280322,1536.280322,3505,NO,27.53,37.26,3,-1.19,6106,113.619949,123.400305,133.114118,139.687481,I,Above,Hip,0,5701,,32.39659441,0,1.1,,,,1,1,,0.03,nav,1,1944,2,, 30431,NJBF000066658,614 N SOMERSET AVE,Ventnor City,NJ,39.35039289,-74.48289334,RES1,3001,,17,NE,1974,1974,3102,2,1,1230.352223,1230.352223,3507,NO,37.95,51.52,1,-0.9,6106,113.579673,123.363149,133.084103,139.580737,I,Above,Flat,0,5701,,44.73137574,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 30432,NJBF000058827,,Ventnor City,NJ,39.33301644,-74.4909667,RES1,3001,,NaN,NE,1900,0,3102,2,1,943.7056702,943.7056702,3505,NO,25.57,39.89,3,2.66,6106,113.633831,123.411473,133.123529,139.707824,I,Above,Hip,0,5701,,32.73190897,0,0,,,,1,1,,0.03,nav,1,1900,2,, 30433,NJBF000066924,808 N DERBY AVE,Ventnor City,NJ,39.35131002,-74.48723278,RES1,3001,,16,NE,1976,1976,3101,1,1,1779.863604,1779.863604,3505,NO,20.45,27.25,3,8.54,6106,113.471793,123.275492,132.99139,139.486789,I,Above,Flat,0,5701,,23.84750553,0,0,,,,1,1,,0.03,nav,1,1976,1,, 30434,NJBF000060740,6725 VENTNOR AVE,Ventnor City,NJ,39.33647454,-74.48632548,RES1,3001,,NaN,NE,1920,1970,3102,2,1,6854.482882,6854.482882,3505,NO,26.05,39.75,3,3.46,6106,113.688264,123.455406,133.172749,139.745391,I,Above,Flat,0,5701,,32.89905666,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30435,NJBF000064137,12 N VICTORIA AVE,Ventnor City,NJ,39.34368049,-74.47286596,RES1,3001,,NaN,NE,1910,2016,3102,2,1,1401.171257,1401.171257,3505,NO,43.11,54.78,3,6.01,6106,113.888118,123.61622,133.349602,139.863208,I,Above,Hip,0,5701,,48.94526147,0,0,,,,1,1,,0.03,nav,1,1910,2,, 30436,NJBF000066640,6007 MARSHALL AVENUE,Ventnor City,NJ,39.35033341,-74.48762977,RES1,3001,,17,NE,1976,1976,3101,1,1,1696.413168,1696.413168,3505,NO,20.46,33.77,3,2.38,6106,113.475464,123.279091,132.994755,139.49541,I,Above,Gable,0,5701,,27.11603297,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 30437,NJBF000060830,6927 WINCHESTER AVE,Ventnor City,NJ,39.33660645,-74.48963717,RES1,3001,,17,NE,1950,1950,3102,2,1,1193.491757,1193.491757,3505,NO,43.46,50.09,3,7.75,6106,113.6134,123.394988,133.10899,139.679504,I,Above,Flat,0,5701,,46.77591367,0,0,,,,1,1,,0.03,nav,1,1950,2,, 30438,NJBF000060048,19 N BALTIMORE AVE,Ventnor City,NJ,39.33531433,-74.49137592,RES1,3001,,17,NE,1902,1902,3102,2,1,1140.005008,1140.005008,3505,NO,38,45.86,3,1.62,6106,113.592848,123.378482,133.09059,139.665254,I,Above,Hip,0,5701,,41.93052005,0,1.1,,,,1,1,,0.03,nav,1,1902,2,, 30439,NJBF000060055,,Ventnor City,NJ,39.33532503,-74.48526875,RES1,3001,,NaN,NE,1969,0,3102,2,1,1095.658831,1095.658831,3505,NO,30.88,42.53,3,-1.03,6106,113.727341,123.487019,133.205269,139.783939,I,Above,Hip,0,5701,,36.70686697,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30440,NJBF000060012,30 S RICHARDS AVE,Ventnor City,NJ,39.33523996,-74.48520913,RES1,3001,,29,NE,1904,1904,3102,2,1,2308.241622,2308.241622,3505,NO,21.79,30.96,3,-1.1,6106,113.729834,123.489035,133.207331,139.786446,I,Above,Flat,0,5701,,26.37615326,0,0,,,,1,1,,0.03,nav,1,1904,2,, 30441,NJBF000063030,5904 WINCHESTER AVE,Ventnor City,NJ,39.34074263,-74.47807841,RES1,3001,,18,NE,1950,1950,3102,2,1,1586.330796,1586.330796,3505,NO,39.78,46.02,3,2.34,6106,113.81229,123.555252,133.282174,139.823368,I,Above,Hip,0,5701,,42.89975522,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 30442,NJBF000060353,7100 WINCHESTER AVE,Ventnor City,NJ,39.33582619,-74.49051342,RES1,3001,,17,NE,1925,1925,3102,2,1,1201.803471,1201.803471,3505,NO,38.03,49.45,3,1.61,6106,113.604811,123.388107,133.101134,139.674471,I,Above,Hip,0,5701,,43.73885915,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30443,NJBF000062101,12 N PORTLAND AVE,Ventnor City,NJ,39.33879542,-74.48297334,RES1,3001,,16,NE,1890,1890,3102,3,1,1599.095551,1599.095551,3505,NO,56.42,70.8,3,4.62,6106,113.730582,123.489382,133.210596,139.769553,I,Above,Hip,0,5701,,63.61250068,0,0,,,,1,1,,0.03,nav,1,1890,3,, 30444,NJBF000065062,305 N SOMERSET AVE,Ventnor City,NJ,39.34603684,-74.47884737,RES1,3001,,45,NE,1930,1930,3102,2,2,1239.176414,1239.176414,3505,NO,29.05,40.76,3,7.39,6106,113.725385,123.483268,133.209396,139.723592,I,Above,Gable,0,5701,,34.90720411,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30445,NJBF000063057,9 S OXFORD AVE,Ventnor City,NJ,39.34080083,-74.47472439,RES1,3001,,18,NE,1920,1920,3102,2,1,1654.308017,1654.308017,3505,NO,27.78,33.33,3,5.06,6106,113.885375,123.614589,133.345493,139.878708,I,Above,Hip,0,5701,,30.55239375,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30446,NJBF000059374,6917 ATLANTIC AVE,Ventnor City,NJ,39.33412554,-74.48732764,RES1,3001,,17,NE,1910,1910,3102,2,1,1820.109659,1820.109659,3505,NO,22.97,35.9,3,-2.86,6110,113.698546,123.463748,133.179639,139.763353,I,Above,Hip,0,5701,,29.43722949,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 30447,NJBF000060046,10 N LAFAYETTE AVE,Ventnor City,NJ,39.33531349,-74.49010184,RES1,3001,,17,NE,1930,1930,3102,1,1,1553.759,1553.759,3505,NO,23.94,37.29,3,6.9,6106,113.620965,123.401146,133.114492,139.690483,I,Above,Hip,0,5701,,30.61592432,0,0,,,,1,1,,0.03,nav,1,1930,1,, 30448,NJBF000063277,132 N HARVARD AVE,Ventnor City,NJ,39.34130216,-74.48277064,RES1,3001,,45,NE,1925,1925,3102,2,2,1473.382643,1473.382643,3505,NO,39.46,45.35,3,7.46,6106,113.701303,123.465246,133.18688,139.731955,I,Above,Gable,0,5701,,42.40445834,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30449,NJBF000066861,807 N BURGHLEY AVE,Ventnor City,NJ,39.35105413,-74.48734768,RES1,3001,,17,NE,1972,1972,3101,1,1,1888.267893,1888.267893,3505,NO,18.1,32.41,3,4.77,6106,113.472504,123.276237,132.992064,139.488847,I,Above,Flat,0,5701,,25.25669488,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 30450,NJBF000059904,6721-23 ATLANTIC AVE,Ventnor City,NJ,39.33505354,-74.48539673,RES1,3001,,NaN,NE,1930,1930,3102,2,1,1915.785696,1915.785696,3505,NO,44.23,53.62,3,6.08,6106,113.728255,123.48776,133.205825,139.785881,I,Above,Flat,0,5701,,48.92246017,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30451,NJBF000065136,19 N BATON ROUGE AVE,Ventnor City,NJ,39.3462364,-74.46808494,RES3A,3001,,35,NE,1940,1950,3301,2,1,7799.100069,7799.100069,3505,NO,36.66,47.88,3,-1.89,6106,113.959864,123.674011,133.413579,139.900856,I,Above,Flat,0,5701,,42.26535391,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30452,NJBF000060704,114 N LAFAYETTE AVE,Ventnor City,NJ,39.33642606,-74.49097846,RES1,3001,,17,NE,1924,1924,3102,2,1,1304.079254,1304.079254,3505,NO,22.65,33.94,3,-0.55,6106,113.586277,123.373139,133.085799,139.656035,I,Above,Gable,0,5701,,28.29204211,0,0,,,,1,1,,0.03,nav,1,1924,2,, 30453,NJBF000058769,7201 ATLANTIC AVE,Ventnor City,NJ,39.332898,-74.489826,RES1,3001,,17,NE,1908,1908,3102,2,1,924.0262532,924.0262532,3505,NO,34.38,40.17,3,-0.29,6110,113.660612,123.433069,133.146204,139.732466,I,Above,Flat,0,5701,,37.27495268,0,1.1,,,,1,1,,0.35,nav,1,1908,2,, 30454,NJBF000060318,6605 ATLANTIC AVE,Ventnor City,NJ,39.33576558,-74.48443485,RES1,3001,,NaN,NE,1930,1930,3102,1,1,1590.405492,1590.405492,3505,NO,23.99,31.38,3,8.37,6106,113.739652,123.496962,133.21617,139.792443,I,Above,Hip,0,5701,,27.68503062,0,0,,,,1,1,,0.03,nav,1,1930,1,, 30455,NJBF000060471,7103 WINCHESTER AVE,Ventnor City,NJ,39.33603236,-74.49079196,RES1,3001,,17,NE,1940,1940,3102,1,1,1641.540111,1641.540111,3505,NO,18.39,29.91,3,-1.06,6106,113.595812,123.380845,133.09363,139.665792,I,Above,Gable,0,5701,,24.14818937,0,0,,,,1,1,,0.03,nav,1,1940,1,, 30456,NJBF000060510,7101 WINCHESTER AVE,Ventnor City,NJ,39.33610636,-74.49072007,RES1,3001,,17,NE,1946,1946,3102,2,1,1739.149219,1739.149219,3505,NO,34.93,44.21,3,-2.47,6106,113.596381,123.3813,133.094166,139.666066,I,Above,Hip,0,5701,,39.56829609,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 30457,NJBF000066644,607 N SUFFOLK AVE,Ventnor City,NJ,39.35033982,-74.48140802,RES1,3001,,17,NE,1973,1973,3102,2,1,1235.128388,1235.128388,3507,NO,25.64,35.47,1,2.64,6106,113.613217,123.390311,133.112998,139.60817,I,Above,Gable,0,5701,,30.55620119,0,0,,,,1,1,,0.03,nav,1,1973,2,, 30458,NJBF000065065,302 N SUFFOLK AVE,Ventnor City,NJ,39.34604299,-74.47845884,RES1,3001,,45,NE,1928,1928,3102,2,2,1282.267882,1282.267882,3505,NO,32.63,39.18,3,7.78,6106,113.733873,123.490147,133.216734,139.730241,I,Above,Hip,0,5701,,35.90412386,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 30459,NJBF000060681,103 S STRATFORD AVE,Ventnor City,NJ,39.33638868,-74.48129139,RES1,3001,,17,NE,1985,1985,3102,1,1,1252.931868,1252.931868,3505,NO,15.17,28.14,3,1.12,6106,113.800369,123.546073,133.268791,139.839276,I,Above,Flat,0,5701,,21.65746023,0,1.1,,,,1,1,,0.03,nav,1,1985,1,, 30460,NJBF000061933,100 N NEW HAVEN AVE,Ventnor City,NJ,39.33850773,-74.48564041,RES1,3001,,17,NE,1924,1924,3102,2,1,1214.788859,1214.788859,3505,NO,32.95,46.59,3,1.3,6106,113.675633,123.445009,133.163331,139.725312,I,Above,Hip,0,5701,,39.77005927,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 30461,NJBF000062256,101 S DORSET AVE,Ventnor City,NJ,39.33909658,-74.47591908,RES1,3001,,18,NE,1905,1905,3102,3,1,3018.638379,3018.638379,3505,NO,45.92,59.28,3,2.71,6110,113.88191,123.612004,133.341282,139.886416,I,Above,Flat,0,5701,,52.5992524,0,1.1,,,,1,1,,0.35,nav,1,1905,3,, 30462,NJBF000063207,3 S OXFORD AVE,Ventnor City,NJ,39.34112363,-74.47502104,RES1,3001,,18,NE,1910,1910,3102,2,1,2731.331495,2731.331495,3505,NO,22.83,37.26,3,-0.77,6106,113.874531,123.605719,133.336295,139.868596,I,Above,Hip,0,5701,,30.04452785,0,1.2,,,,1,1,,0.03,nav,1,1910,2,, 30463,NJBF000065114,303 N SUFFOLK AVE,Ventnor City,NJ,39.34616768,-74.47809867,RES1,3001,,NaN,NE,1950,1950,3102,1,1,1314.411696,1314.411696,3505,NO,15.73,23.56,3,3.02,6106,113.74019,123.495221,133.22223,139.734446,I,Above,Hip,0,5701,,19.64405745,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30464,NJBF000060508,106 N MELBOURNE AVE,Ventnor City,NJ,39.33610489,-74.49161867,RES1,3001,,17,NE,1925,1925,3102,2,1,967.9281252,967.9281252,3505,NO,35.84,48.97,3,-2.82,6106,113.576553,123.365324,133.077319,139.64834,I,Above,Hip,0,5701,,42.40748934,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30465,NJBF000065015,22 N MARION AVE,Ventnor City,NJ,39.34591213,-74.4689885,RES1,3001,,17,NE,1930,1930,3102,1,1,1148.132725,1148.132725,3507,NO,17.01,29.65,1,0.13,6106,113.944227,123.661338,133.39972,139.891288,I,Above,Gable,0,5701,,23.33371023,0,0,,,,1,1,,0.03,nav,1,1930,1,, 30466,NJBF000066667,804 N CORNWALL AVE,Ventnor City,NJ,39.35041935,-74.48826978,RES1,3001,,17,NE,1977,1977,3101,1,1,1712.482875,1712.482875,3505,NO,13.27,26.04,3,2.49,6106,113.460164,123.266713,132.981668,139.482171,I,Above,Hip,0,5701,,19.65570251,0,0,,,,1,1,,0.03,nav,1,1977,1,, 30467,NJBF000066853,609 N VICTORIA AVE,Ventnor City,NJ,39.35102005,-74.48019032,RES3A,3001,,NaN,NE,1988,1988,3301,2,1,1793.007181,1793.007181,3505,NO,24.72,35.36,3,-0.6,6106,113.631492,123.404699,133.128714,139.618694,I,Above,Gable,0,5701,,30.03906573,0,0,,,,1,1,,0.03,nav,1,1988,2,, 30468,NJBF000062092,6803 MONMOUTH AVE,Ventnor City,NJ,39.33878175,-74.48897133,RES1,3001,,45,NE,1960,1960,3102,2,1,2595.926708,2595.926708,3505,NO,30.69,38.34,3,8.71,6106,113.598359,123.382618,133.097528,139.657871,I,Above,Flat,0,5701,,34.51424317,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30469,NJBF000063049,,Ventnor City,NJ,39.34078492,-74.47603915,RES1,3001,,NaN,NE,1969,0,3102,2,1,2924.487215,2924.487215,3505,NO,27.23,40.27,3,0.68,6106,113.856641,123.591244,133.320569,139.857125,I,Above,Hip,0,5701,,33.74935119,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30470,NJBF000060690,10 N.WISSAHICKON AVE,Ventnor City,NJ,39.33640483,-74.48756589,RES1,3001,,17,NE,1940,1940,3102,2,1,1109.917423,1109.917423,3505,NO,32.58,40.4,3,3.86,6106,113.661855,123.434088,133.150145,139.722799,I,Above,Flat,0,5701,,36.48970582,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30471,NJBF000065006,6203 FREMONT AVE,Ventnor City,NJ,39.34588803,-74.48578477,RES1,3001,,17,NE,1980,1980,3101,2,1,2175.343673,2175.343673,3505,NO,31.88,38.43,3,-1.96,6106,113.573942,123.360855,133.079124,139.601983,I,Above,Gable,0,5701,,35.15607229,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30472,NJBF000066668,811 N HARVARD AVE,Ventnor City,NJ,39.35042107,-74.48945815,RES1,3001,,17,NE,1978,1978,3101,1,1,1715.987167,1715.987167,3505,NO,19.69,32.91,3,7.59,6106,113.433774,123.245469,132.959153,139.460063,I,Above,Hip,0,5701,,26.30193514,0,0,,,,1,1,,0.03,nav,1,1978,1,, 30473,NJBF000059167,110 S WISSAHICKON AVE,Ventnor City,NJ,39.33368742,-74.48545285,RES1,3001,,18,NE,1980,1980,3102,2,1,1957.9556,1957.9556,3505,NO,28.46,37.89,3,6.81,6106,113.745923,123.502014,133.219735,139.806658,I,Above,Flat,0,5701,,33.17751814,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30474,NJBF000059258,111 S WISSAHICKON AVE,Ventnor City,NJ,39.33387002,-74.48508933,RES1,3001,,18,NE,2005,2005,3102,2,1,2050.761174,2050.761174,3505,NO,33.89,48.46,3,-0.17,6106,113.7514,123.506449,133.22459,139.810734,I,Above,Flat,0,5701,,41.17551218,0,0,,,,1,1,,0.03,nav,1,2005,2,, 30475,NJBF000059287,110 S BUFFALO AVE,Ventnor City,NJ,39.33394866,-74.48490649,RES1,3001,,18,NE,1988,1988,3102,3,1,2337.693432,2337.693432,3505,NO,37.56,44.19,3,0.95,6106,113.754334,123.508825,133.227175,139.812964,I,Above,Flat,0,5701,,40.87644371,0,0,,,,1,1,,0.03,nav,1,1988,3,, 30476,NJBF000061382,7036-7038 CALVERT AVE,Ventnor City,NJ,39.33754243,-74.49363648,RES1,3001,,17,NE,1969,1969,3102,2,1,2462.87565,2462.87565,3505,NO,35.87,42.43,3,2.68,6106,113.512223,123.31342,133.023669,139.586342,I,Above,Gable,0,5701,,39.14751242,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 30477,NJBF000066791,602 N VICTORIA AVE,Ventnor City,NJ,39.3507905,-74.48051367,RES3A,3001,,NaN,NE,1983,1983,3301,1,1,987.9078652,987.9078652,3505,NO,14.34,26.1,3,3.43,6106,113.627241,123.401395,133.125062,139.616692,I,Above,Hip,0,5701,,20.21706512,0,0,,,,1,1,,0.03,nav,1,1983,1,, 30478,NJBF000066764,602 N VICTORIA AVE,Ventnor City,NJ,39.35071383,-74.48045055,RES3A,3001,,NaN,NE,1983,1983,3301,1,1,976.3229773,976.3229773,3505,NO,16.66,22.39,3,2.94,6106,113.629616,123.403364,133.127119,139.619064,I,Above,Flat,0,5701,,19.52546435,0,0,,,,1,1,,0.03,nav,1,1983,1,, 30479,NJBF000066678,807 N CAMBRIDGE AVE,Ventnor City,NJ,39.35045028,-74.48859697,RES1,3001,,17,NE,1974,1974,3101,1,1,1869.58306,1869.58306,3505,NO,19.31,29.03,3,5.23,6106,113.452512,123.260531,132.975128,139.475603,I,Above,Gable,0,5701,,24.16957781,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 30480,NJBF000057953,105 S FREDERICKSBURG,Ventnor City,NJ,39.33143585,-74.49115872,RES1,3001,,18,NE,1925,1925,3102,3,1,1406.321018,1406.321018,3505,NO,46.75,54.64,3,5,6106,113.651761,123.425791,133.137277,139.726666,I,Above,Flat,0,5701,,50.69537372,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 30481,NJBF000058333,111 S BALTIMORE AVE,Ventnor City,NJ,39.33210422,-74.48878323,RES1,3001,,19,NE,1930,1930,3102,3,1,1522.553695,1522.553695,3505,NO,45.21,50.58,3,1.39,6106,113.694679,123.460502,133.174469,139.765068,I,Above,Hip,0,5701,,47.89252294,0,0,,,,1,1,,0.03,nav,1,1930,3,, 30482,NJBF000059236,18 S LAFAYETTE AVE,Ventnor City,NJ,39.33382723,-74.48891317,RES1,3001,,17,NE,1922,1922,3102,2,1,1582.009509,1582.009509,3505,NO,27.06,32.53,3,5.61,6106,113.667778,123.4389,133.153138,139.736738,I,Above,Gable,0,5701,,29.79677095,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 30483,NJBF000062784,115 N PORTLAND AVE,Ventnor City,NJ,39.34021854,-74.4836547,RES1,3001,,17,NE,1940,1940,3102,2,1,976.5647077,976.5647077,3505,NO,39.48,47.68,3,8.81,6106,113.696318,123.461444,133.182043,139.733793,I,Above,Gable,0,5701,,43.58440509,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30484,NJBF000066635,805 N CAMBRIDGE AVE,Ventnor City,NJ,39.35030839,-74.48849194,RES1,3001,,17,NE,1974,1974,3101,1,1,1689.363311,1689.363311,3505,NO,26.32,31.49,3,7.63,6106,113.45666,123.263963,132.978701,139.479865,I,Above,Gable,0,5701,,28.90360558,0,0,,,,1,1,,0.03,nav,1,1974,1,, 30485,NJBF000064021,609 KINGSLEY DRIVE,Ventnor City,NJ,39.34335066,-74.49410147,RES1,3001,,17,NE,1986,1986,3102,2,1,1300.304846,1300.304846,3505,NO,34.14,47.79,3,0.03,6106,113.423243,123.240563,132.950497,139.486079,I,Above,Gable,0,5701,,40.96710204,0,0,,,,1,1,,0.03,nav,1,1986,2,, 30486,NJBF000066164,507 N SUFFOLK AVE,Ventnor City,NJ,39.34908844,-74.48039458,RES1,3001,,17,NE,1978,1978,3102,2,1,2176.994199,2176.994199,3507,NO,37.51,48.67,1,0.48,6106,113.651667,123.422137,133.146188,139.646591,I,Above,Gable,0,5701,,43.08956192,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 30487,NJBF000066404,701 N DERBY AVE,Ventnor City,NJ,39.34968302,-74.48534429,RES1,3001,,17,NE,1965,1965,3101,1,1,1899.00957,1899.00957,3505,NO,14.57,22.51,3,1.45,6106,113.534479,123.327074,133.04537,139.547975,I,Above,Flat,0,5701,,18.53836201,0,0,,,,1,1,,0.03,nav,1,1965,1,, 30488,NJBF000064564,5 S MARION AVE,Ventnor City,NJ,39.34479692,-74.46782565,RES3A,3001,,17,NE,1910,1910,3301,3,1,1403.687367,1403.687367,3504,NO,34.72,42.08,-4,0,6106,113.984292,123.694369,133.43424,139.927553,I,Above,Hip,0,5701,,38.39903025,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 30489,NJBF000066587,803 N CAMBRIDGE AVE,Ventnor City,NJ,39.35015461,-74.48838901,RES1,3001,,17,NE,1976,1976,3101,2,1,1815.838176,1815.838176,3505,NO,30.69,36.22,3,3.51,6106,113.460907,123.26748,132.982358,139.484269,I,Above,Gable,0,5701,,33.45774402,0,0,,,,1,1,,0.03,nav,1,1976,2,, 30490,NJBF000066573,804 N CAMBRIDGE AVE,Ventnor City,NJ,39.35011474,-74.48889873,RES1,3001,,17,NE,1978,1978,3101,2,1,1829.229214,1829.229214,3505,NO,33.05,46.09,3,7.38,6106,113.450104,123.258808,132.973148,139.475452,I,Above,Gable,0,5701,,39.56946638,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 30491,NJBF000066489,605 N SOMERSET AVE,Ventnor City,NJ,39.3498897,-74.48192855,RES1,3001,,17,NE,1972,1972,3102,2,1,1381.529968,1381.529968,3507,NO,30.62,38.11,1,-0.81,6106,113.607445,123.385903,133.108051,139.606228,I,Above,Gable,0,5701,,34.36653244,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 30492,NJBF000061801,10 N NEWPORT AVE,Ventnor City,NJ,39.33827211,-74.48397728,COM1,3001,,17,ME,1928,1928,3401,2,1,1033.300481,1033.300481,3507,NO,32.32,42.47,1,2.73,6106,113.715528,123.477276,133.197342,139.759895,I,Above,Hip,0,NaN,,37.39328844,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 30493,NJBF000063450,123 N CAMBRIDGE AVE,Ventnor City,NJ,39.3417695,-74.481983,RES1,3001,,17,NE,1930,1930,3102,1,1,1484.131075,1484.131075,3505,NO,12.34,21.17,3,1.09,6106,113.71246,123.47416,133.196691,139.738375,I,Above,Hip,0,5701,,16.75390261,0,0,,,,1,1,,0.03,nav,1,1930,1,, 30494,NJBF000063477,6122 MONMOUTH AVE,Ventnor City,NJ,39.34183,-74.481869,RES1,3001,,17,NE,1925,1925,3102,2,1,849.3397697,849.3397697,3505,NO,44.29,50.54,3,7.11,6106,113.714163,123.475523,133.198184,139.739403,I,Above,Hip,0,5701,,47.41304458,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30495,NJBF000064572,22 S JACKSON AVE,Ventnor City,NJ,39.34482728,-74.46594533,RES3B,3001,,47,ME,1929,1929,3301,3,3,1910.367139,1910.367139,3504,NO,33.82,42.99,-4,0,6106,114.025198,123.727807,133.470169,139.95716,I,Above,Flat,0,NaN,,38.40548475,0,0,,,,1,1,,0.03,nav,1,1929,3,, 30496,NJBF000064542,24 S JACKSON AVE,Ventnor City,NJ,39.34474298,-74.4658411,RES3B,3001,,17,ME,1925,1925,3301,2,1,1918.61945,1918.61945,3504,NO,28.24,34.9,-4,0,6106,114.028576,123.730591,133.473088,139.960111,I,Above,Hip,0,NaN,,31.57382631,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30497,NJBF000058850,10 S WASHINGTON AVE,Ventnor City,NJ,39.33305317,-74.49146024,RES1,3001,,19,NE,1994,1994,3102,2,1,934.9897831,934.9897831,3505,NO,41.53,50.5,3,7.93,6106,113.622453,123.4023,133.113892,139.697366,I,Above,Hip,0,5701,,46.01385848,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 30498,NJBF000066396,510 N VICTORIA AVE,Ventnor City,NJ,39.34965552,-74.47963182,RES3A,3001,,17,NE,1979,1979,3301,2,1,1657.345767,1657.345767,3505,NO,40.1,52.39,3,8.64,6106,113.661246,123.429591,133.154472,139.650782,I,Above,Gable,0,5701,,46.2484641,0,0,,,,1,1,,0.03,nav,1,1979,2,, 30499,NJBF000066194,613 N DERBY AVE,Ventnor City,NJ,39.34915491,-74.48495118,RES1,3001,,17,NE,1972,1972,3101,2,1,1783.94789,1783.94789,3505,NO,38.24,44.31,3,1.63,6106,113.549975,123.339885,133.058702,139.563766,I,Above,Flat,0,5701,,41.27630054,0,1.2,,,,1,1,,0.03,nav,1,1972,2,, 30500,NJBF000059455,22 N MARTINDALE AVE,Ventnor City,NJ,39.33427829,-74.49317071,RES1,3001,,17,NE,1925,1925,3102,2,1,1010.179587,1010.179587,3505,NO,27.75,33.06,3,1.82,6106,113.567641,123.358178,133.068402,139.644948,I,Above,Gable,0,5701,,30.40393058,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30501,NJBF000063878,100 S OAKLAND AVE,Ventnor City,NJ,39.34296166,-74.46807317,RES3B,3001,,17,E,1922,1922,3303,2,1,2043.645658,2043.645658,3504,NO,37.81,45.87,-4,0,6106,114.00294,123.710002,133.449437,139.952177,I,Above,Flat,0,NaN,,41.84124205,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 30502,NJBF000059421,7201 VENTNOR AVE,Ventnor City,NJ,39.33421212,-74.49092378,RES1,3001,,17,NE,1923,1923,3102,2,1,1007.804808,1007.804808,3505,NO,36.66,41.69,3,-1.79,6106,113.618106,123.398842,133.111189,139.690923,I,Above,Hip,0,5701,,39.17396913,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 30503,NJBF000066139,705 N CAMBRIDGE AVE,Ventnor City,NJ,39.34902235,-74.48747511,RES1,3001,,17,NE,1969,1969,3101,2,1,1590.052325,1590.052325,3505,NO,23.8,35.26,3,-2.67,6106,113.495752,123.296232,133.012297,139.519665,I,Above,Gable,0,5701,,29.52819667,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 30504,NJBF000062255,116 N NEW HAVEN AVE,Ventnor City,NJ,39.33909251,-74.48611466,RES1,3001,,17,NE,1938,1938,3102,2,1,1595.69402,1595.69402,3505,NO,37.3,49.15,3,1,6106,113.657213,123.43005,133.147928,139.706921,I,Above,Hip,0,5701,,43.22502769,0,0,,,,1,1,,0.03,nav,1,1938,2,, 30505,NJBF000065019,,Ventnor City,NJ,39.34592341,-74.47039944,RES1,3001,,NaN,NE,1969,0,3102,2,1,1979.857126,1979.857126,3507,NO,29.11,44.08,1,0,6106,113.913056,123.635899,133.372454,139.868072,I,Above,Hip,0,5701,,36.59472112,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30506,NJBF000063918,126 N DUDLEY AVE,Ventnor City,NJ,39.34307368,-74.47869709,COM1,3001,,16,ME,1924,1924,3401,1,1,1256.940931,1256.940931,3507,NO,17.12,28.27,1,2.26,6106,113.767631,123.518504,133.244833,139.77462,I,Above,Flat,0,NaN,,22.69499892,0,1.1,,,,1,1,,0.03,nav,1,1924,1,, 30507,NJBF000059359,3 N WASHINGTON AVE,Ventnor City,NJ,39.33408712,-74.49186919,RES1,3001,,17,NE,1925,1925,3102,2,1,1782.512978,1782.512978,3505,NO,24.09,37.86,3,1.32,6106,113.599011,123.383448,133.094864,139.673899,I,Above,Hip,0,5701,,30.97651596,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30508,NJBF000062260,223 N WYOMING AVE,Ventnor City,NJ,39.33909907,-74.49226975,RES1,3001,,17,NE,1945,1945,3102,1,1,1338.436432,1338.436432,3505,NO,13.91,23.05,3,1.68,6106,113.521128,123.320365,133.03204,139.588978,I,Above,Hip,0,5701,,18.47705638,0,0,,,,1,1,,0.03,nav,1,1945,1,, 30509,NJBF000065012,301 N SOMERSET AVE,Ventnor City,NJ,39.34589791,-74.47871812,RES1,3001,,17,NE,1929,1929,3102,2,1,1380.444097,1380.444097,3505,NO,43.76,58.24,3,6.74,6106,113.730047,123.487102,133.213388,139.728107,I,Above,Hip,0,5701,,50.99764772,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 30510,NJBF000062224,6700 MONMOUTH AVE,Ventnor City,NJ,39.33902852,-74.48755534,RES1,3001,,17,NE,1926,1926,3102,1,1,1519.628117,1519.628117,3505,NO,14.45,28.61,3,-1.11,6106,113.626282,123.405098,133.121472,139.680876,I,Above,Hip,0,5701,,21.53160572,0,1.1,,,,1,1,,0.03,nav,1,1926,1,, 30511,NJBF000062210,6223 VENTNOR AVE,Ventnor City,NJ,39.33900486,-74.48122924,RES1,3001,,NaN,NE,1950,1950,3102,2,1,4989.060345,4989.060345,3505,NO,26.91,33.61,3,3.16,6106,113.766198,123.518176,133.241337,139.797239,I,Above,Flat,0,5701,,30.25996311,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 30512,NJBF000065323,414 N DORSET AVE,Ventnor City,NJ,39.34674023,-74.48265805,RES1,3001,,17,NE,1960,1960,3102,1,1,2778.141522,2778.141522,3505,NO,11.6,20.58,3,-1.88,6106,113.632004,123.407375,133.129049,139.644727,I,Above,Flat,0,5701,,16.08659766,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 30513,NJBF000064990,417 N CAMBRIDGE AVE,Ventnor City,NJ,39.34585618,-74.48495341,RES1,3001,,17,NE,1968,1968,3102,1,1,1206.476841,1206.476841,3505,NO,18.31,28.22,3,5.13,6106,113.592776,123.37607,133.09525,139.61772,I,Above,Gable,0,5701,,23.26498341,0,0,,,,1,1,,0.03,nav,1,1968,1,, 30514,NJBF000064961,18 N MARION AVE,Ventnor City,NJ,39.34578902,-74.46887714,RES1,3001,,17,NE,1928,1928,3102,2,1,1032.006151,1032.006151,3507,NO,27.75,38.91,1,2.18,6106,113.948266,123.664673,133.403198,139.895028,I,Above,Hip,0,5701,,33.33046779,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 30515,NJBF000062294,118 N NEW HAVEN AVE,Ventnor City,NJ,39.33916748,-74.4861773,RES1,3001,,17,NE,1924,1924,3102,2,1,1149.992458,1149.992458,3505,NO,33.29,42.68,3,0.83,6106,113.654842,123.428124,133.145943,139.704559,I,Above,Hip,0,5701,,37.98101979,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 30516,NJBF000062234,6713 MONMOUTH AVE,Ventnor City,NJ,39.33905788,-74.48834404,RES1,3001,,47,NE,1980,1980,3102,2,2,2045.198314,2045.198314,3505,NO,33.99,41.19,3,-1.04,6106,113.60846,123.390719,133.106287,139.665424,I,Above,Hip,0,5701,,37.58660597,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30517,NJBF000064536,21 S VASSAR SQUARE,Ventnor City,NJ,39.34473483,-74.46614258,RES3B,3001,,17,ME,1908,1908,3301,2,1,1516.671141,1516.671141,3504,NO,31.8,43.57,-4,0,6106,114.022053,123.725256,133.467349,139.95543,I,Above,Flat,0,NaN,,37.68050869,0,1.1,,,,1,1,,0.03,nav,1,1908,2,, 30518,NJBF000064543,219 N DUDLEY AVE,Ventnor City,NJ,39.34474678,-74.47952607,RES1,3001,,17,NE,1947,1947,3102,2,1,2014.250247,2014.250247,3505,NO,24.91,31.68,3,-1.88,6106,113.72728,123.48528,133.210651,139.732837,I,Above,Gable,0,5701,,28.29033034,0,0,,,,1,1,,0.03,nav,1,1947,2,, 30519,NJBF000064785,,Ventnor City,NJ,39.3453155,-74.479984,RES1,3001,,NaN,NE,1969,0,3102,2,1,1281.881858,1281.881858,3505,NO,21.55,26.78,3,-0.03,6106,113.709717,123.470848,133.195672,139.71552,I,Above,Gable,0,5701,,24.16138738,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30520,NJBF000064873,,Ventnor City,NJ,39.34554923,-74.48018657,RES1,3001,,NaN,NE,1969,0,3102,2,1,1687.00213,1687.00213,3505,NO,38.2,49.76,3,0.33,6106,113.702169,123.464647,133.189226,139.708123,I,Above,Gable,0,5701,,43.98068225,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30521,NJBF000064828,2 N MARION AVE,Ventnor City,NJ,39.34543579,-74.46859504,RES3A,3001,,47,NE,1972,1972,3301,2,2,2050.939356,2050.939356,3505,NO,39.79,50.93,3,0.91,6106,113.95906,123.673589,133.412475,139.905148,I,Above,Gable,0,5701,,45.36151814,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30522,NJBF000064923,312 N DUDLEY AVE,Ventnor City,NJ,39.3456711,-74.48081545,RES1,3001,,17,NE,1940,1940,3102,3,1,1440.538464,1440.538464,3505,NO,44.04,49.55,3,8.37,6106,113.6867,123.452073,133.175922,139.695054,I,Above,Hip,0,5701,,46.79813212,0,1.1,,,,1,1,,0.03,nav,1,1940,3,, 30523,NJBF000064534,302 N DORSET AVE,Ventnor City,NJ,39.34472917,-74.48103179,RES1,3001,,NaN,NE,1915,1915,3102,3,1,1469.332289,1469.332289,3505,NO,54.16,66.58,3,-0.38,6106,113.694259,123.458545,133.182177,139.706654,I,Above,Flat,0,5701,,60.37055188,0,1.2,,,,1,1,,0.03,nav,1,1915,3,, 30524,NJBF000064904,5502 CALVERT AVE,Ventnor City,NJ,39.3456244,-74.47815464,RES1,3001,,45,NE,1929,1929,3102,2,2,1063.580781,1063.580781,3505,NO,34.95,45.21,3,6.49,6106,113.746054,123.500185,133.227147,139.742347,I,Above,Flat,0,5701,,40.07673852,0,0,,,,1,1,,0.03,nav,1,1929,2,, 30525,NJBF000064925,28-30 N OAKLAND AVE,Ventnor City,NJ,39.34567378,-74.47026472,RES1,3001,,NaN,NE,1910,1920,3102,2,1,1941.650627,1941.650627,3507,NO,25.37,39.33,1,-0.9,6106,113.919244,123.641024,133.377749,139.874213,I,Above,Flat,0,5701,,32.35224266,0,0,,,,1,1,,0.03,nav,1,1910,2,, 30526,NJBF000064835,217 N SUFFOLK AVE,Ventnor City,NJ,39.34545023,-74.47749216,RES1,3001,,17,NE,1930,1930,3102,1,1,1508.978008,1508.978008,3505,NO,12.13,24.04,3,-0.8,6106,113.762959,123.513962,133.241718,139.756627,I,Above,Hip,0,5701,,18.0829679,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 30527,NJBF000064552,310 N DERBY AVE,Ventnor City,NJ,39.34477231,-74.48195069,RES1,3001,,17,NE,1996,1996,3102,2,1,1590.056678,1590.056678,3505,NO,36.2,43.87,3,6.52,6106,113.67339,123.441642,133.164226,139.68963,I,Above,Flat,0,5701,,40.03253382,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, 30528,NJBF000064547,315 N CORNWALL AVE,Ventnor City,NJ,39.3447595,-74.4831505,RES1,3001,,17,NE,1958,1958,3102,1,1,1209.695,1209.695,3505,NO,17.93,27.02,3,-0.54,6106,113.647046,123.420344,133.14158,139.668351,I,Above,Hip,0,5701,,22.4755323,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30529,NJBF000064987,321 N DUDLEY AVE,Ventnor City,NJ,39.34584586,-74.48044329,RES1,3001,,17,NE,1952,1952,3102,1,1,946.9306495,946.9306495,3505,NO,13.75,21.12,3,2.46,6106,113.69263,123.456806,133.181076,139.698753,I,Above,Gable,0,5701,,17.43774809,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 30530,NJBF000064881,216 N SURREY AVE,Ventnor City,NJ,39.34557063,-74.47721241,RES1,3001,,17,NE,1964,1964,3102,2,1,1380.585888,1380.585888,3505,NO,27.75,36.96,3,2.89,6106,113.767555,123.517647,133.245736,139.759473,I,Above,Gable,0,5701,,32.35718604,0,1.1,,,,1,1,,0.03,nav,1,1964,2,, 30531,NJBF000064749,231 N OXFORD AVE,Ventnor City,NJ,39.34522124,-74.47902245,RES1,3001,,18,NE,2016,2016,3102,2,1,1350.324532,1350.324532,3505,NO,27.3,42.02,3,5.59,6106,113.732189,123.489091,133.215041,139.733876,I,Above,Hip,0,5701,,34.66006629,0,0,,,,1,1,,0.03,nav,1,2016,2,, 30532,NJBF000064815,,Ventnor City,NJ,39.34539165,-74.47147982,RES1,3001,,NaN,NE,1969,0,3102,2,1,2285.82021,2285.82021,3507,NO,36.27,42.95,1,1.1,6106,113.89619,123.622315,133.357483,139.858741,I,Above,Hip,0,5701,,39.6094195,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30533,NJBF000064826,402 N BURGHLEY AVE,Ventnor City,NJ,39.34543119,-74.48337954,RES1,3001,,17,NE,1970,1970,3102,2,1,2074.165086,2074.165086,3505,NO,45.21,52.38,3,6.77,6106,113.633145,123.408852,133.129801,139.653203,I,Above,Flat,0,5701,,48.7967813,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 30534,NJBF000064854,226 N SUFFOLK AVE,Ventnor City,NJ,39.34548356,-74.47798941,RES1,3001,,17,NE,1950,1950,3102,2,1,2050.984002,2050.984002,3505,NO,38.02,48.85,3,5.81,6106,113.751547,123.504692,133.231855,139.747502,I,Above,Gable,0,5701,,43.43713356,0,0,,,,1,1,,0.03,nav,1,1950,2,, 30535,NJBF000064675,7 S BATON ROUGE AVE,Ventnor City,NJ,39.34504435,-74.4671036,RES3B,3001,,17,ME,1925,1925,3301,3,1,1007.509794,1007.509794,3504,NO,57.62,68.08,-4,0,6106,113.996924,123.704631,133.445463,139.935288,I,Above,Flat,0,NaN,,62.84904264,0,0,,,,1,1,,0.03,nav,1,1925,3,, 30536,NJBF000064633,9 S BATON ROUGE AVE,Ventnor City,NJ,39.34495691,-74.46702794,RES3B,3001,,17,ME,1925,1925,3301,1,1,1700.106623,1700.106623,3504,NO,16.2,28.58,-4,0,6106,113.999728,123.706945,133.447874,139.937859,I,Above,Hip,0,NaN,,22.39003904,0,0,,,,1,1,,0.03,nav,1,1925,1,, 30537,NJBF000064864,5109 WINCHESTER AVE,Ventnor City,NJ,39.34551285,-74.47118454,RES1,3001,,17,NE,1920,1920,3102,2,1,988.8034023,988.8034023,3507,NO,30.85,37.65,1,-0.07,6106,113.901103,123.626282,133.361827,139.861672,I,Above,Hip,0,5701,,34.24898241,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30538,NJBF000064768,220 N SUFFOLK AVE,Ventnor City,NJ,39.34528664,-74.47781471,RES1,3001,,17,NE,1929,1929,3102,1,1,1133.830595,1133.830595,3505,NO,16.09,23.02,3,-2.45,6106,113.757964,123.509968,133.237343,139.753718,I,Above,Gable,0,5701,,19.55457461,0,0,,,,1,1,,0.03,nav,1,1929,1,, 30539,NJBF000064683,308 N DORSET AVE,Ventnor City,NJ,39.34507378,-74.48132093,RES1,3001,,17,NE,1985,1985,3102,1,1,1487.771677,1487.771677,3505,NO,18.82,23.93,3,3.95,6106,113.683343,123.449584,133.172875,139.695878,I,Above,Hip,0,5701,,21.37694833,0,0,,,,1,1,,0.03,nav,1,1985,1,, 30540,NJBF000064855,25 N NASHVILLE AVE,Ventnor City,NJ,39.34548814,-74.47038202,RES1,3001,,17,NE,1910,1910,3102,2,1,1476.998042,1476.998042,3507,NO,23.15,29.93,1,1.73,6106,113.919094,123.640958,133.37753,139.875244,I,Above,Gable,0,5701,,26.53898846,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 30541,NJBF000064885,27 N NASHVILLE AVE,Ventnor City,NJ,39.3455802,-74.47046241,RES1,3001,,17,NE,1910,1910,3102,2,1,1423.439048,1423.439048,3507,NO,35.72,44.88,1,-0.54,6106,113.916136,123.638517,133.374988,139.872476,I,Above,Gable,0,5701,,40.29952884,0,0,,,,1,1,,0.03,nav,1,1910,2,, 30542,NJBF000064662,15 S VASSAR SQUARE,Ventnor City,NJ,39.34502202,-74.46635329,RES3B,3001,,17,ME,1930,1930,3301,2,1,1435.655154,1435.655154,3504,NO,21.8,35.6,-4,0,6106,114.013698,123.718354,133.460181,139.94764,I,Above,Flat,0,NaN,,28.70048959,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30543,NJBF000064853,5 N AUSTIN AVE,Ventnor City,NJ,39.34548345,-74.46892897,RES1,3001,,17,NE,1930,1930,3102,2,1,1151.48826,1151.48826,3507,NO,26.53,40.23,1,-0.46,6106,113.951107,123.667082,133.405533,139.898997,I,Above,Hip,0,5701,,33.37978557,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30544,NJBF000064757,213 N SUFFOLK AVE,Ventnor City,NJ,39.34526502,-74.47724392,RES1,3001,,NaN,NE,1952,0,3102,1,1,652.8938374,652.8938374,3505,NO,14.52,25.92,3,1.36,6106,113.77085,123.520431,133.248487,139.763903,I,Above,Flat,0,5701,,20.21918301,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 30545,NJBF000064741,407 N CAMBRIDGE AVE,Ventnor City,NJ,39.34520607,-74.48442723,RES1,3001,,17,NE,1962,1962,3102,1,1,1252.017121,1252.017121,3505,NO,17.89,25.65,3,2.29,6106,113.612942,123.392619,133.112418,139.637943,I,Above,Hip,0,5701,,21.76872183,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30546,NJBF000064851,5111 WINCHESTER AVE,Ventnor City,NJ,39.34548062,-74.47125244,RES1,3001,,17,NE,1920,1920,3102,2,1,857.2814667,857.2814667,3507,NO,39.11,51.25,1,1.19,6106,113.900046,123.62543,133.36089,139.861078,I,Above,Gable,0,5701,,45.18050505,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30547,NJBF000064784,409 N CAMBRIDGE AVE,Ventnor City,NJ,39.34531476,-74.48451348,RES1,3001,,17,NE,1962,1962,3102,1,1,1237.021424,1237.021424,3505,NO,27.09,36.99,3,8.81,6106,113.609608,123.389883,133.109582,139.634593,I,Above,Hip,0,5701,,32.03881664,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30548,NJBF000064740,,Ventnor City,NJ,39.3452005,-74.4817865,RES1,3001,,NaN,NE,1969,0,3102,2,1,1278.173095,1278.173095,3505,NO,22.99,32.21,3,0.97,6106,113.671414,123.439885,133.162642,139.685549,I,Above,Gable,0,5701,,27.60146806,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30549,NJBF000064827,308 N OXFORD AVE,Ventnor City,NJ,39.345433,-74.4797045,RES1,3001,,17,NE,2015,2017,3102,2,1,1042.62572,1042.62572,3505,NO,20.38,29.25,3,-2.57,6106,113.714355,123.474561,133.199707,139.718498,I,Above,Gable,0,5701,,24.81438978,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, 30550,NJBF000064847,4901 VENTNOR AVE,Ventnor City,NJ,39.34547077,-74.46782962,RES3A,3001,1,NaN,NE,1912,1912,3301,3,4,2986.616969,2986.616969,3505,NO,34.84,45.74,3,-1.81,6106,113.975413,123.686937,133.426827,139.916959,I,Above,Hip,0,5701,,40.28687201,0,1.2,,,,1,1,,0.03,nav,1,1912,3,, 30551,NJBF000064692,26 N HILLSIDE AVE,Ventnor City,NJ,39.34509866,-74.47145163,RES1,3001,,17,NE,1920,1920,3102,1,1,1827.805258,1827.805258,3507,NO,13.59,28.36,1,0.51,6106,113.900631,123.626022,133.361222,139.863866,I,Above,Hip,0,5701,,20.97648458,0,0,,,,1,1,,0.03,nav,1,1920,1,, 30552,NJBF000064680,228 N SOMERSET AVE,Ventnor City,NJ,39.34505553,-74.47852474,RES1,3001,,17,NE,1967,1967,3102,1,1,1399.502295,1399.502295,3505,NO,18.75,27.69,3,1.12,6106,113.745322,123.499796,133.226334,139.745208,I,Above,Hip,0,5701,,23.22184702,0,0,,,,1,1,,0.03,nav,1,1967,1,, 30553,NJBF000064817,224 N SUFFOLK AVE,Ventnor City,NJ,39.34539554,-74.47792091,RES1,3001,,17,NE,1929,1929,3102,1,1,1243.137727,1243.137727,3505,NO,19.36,33.52,3,4.61,6106,113.754199,123.506874,133.234121,139.750111,I,Above,Flat,0,5701,,26.43871756,0,0,,,,1,1,,0.03,nav,1,1929,1,, 30554,NJBF000064838,8 S JACKSON AVE,Ventnor City,NJ,39.34545783,-74.4664437,RES3B,3001,,17,ME,1925,1925,3301,2,1,1363.96495,1363.96495,3504,NO,22.46,35.3,-4,0,6106,114.006019,123.711963,133.453686,139.939424,I,Above,Flat,0,NaN,,28.87823722,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30555,NJBF000064789,5600 N CALVERT AVE,Ventnor City,NJ,39.34532867,-74.47879023,RES1,3001,,17,NE,1960,1960,3102,1,1,1638.494425,1638.494425,3505,NO,23.02,36.31,3,3.96,6106,113.735896,123.492057,133.218277,139.736148,I,Above,Hip,0,5701,,29.66366039,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 30556,NJBF000064358,,Ventnor City,NJ,39.34429662,-74.47968369,RES1,3001,,NaN,NE,1969,0,3102,2,1,1255.933157,1255.933157,3505,NO,32.24,37.51,3,6.95,6106,113.729709,123.4874,133.212593,139.737441,I,Above,Gable,0,5701,,34.87565684,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30557,NJBF000059698,5 N BALTIMORE AVE,Ventnor City,NJ,39.33470266,-74.49084261,RES1,3001,,19,NE,2009,2009,3102,2,1,1721.158138,1721.158138,3505,NO,31.38,38.45,3,-0.1,6106,113.613072,123.394789,133.107306,139.685126,I,Above,Gable,0,5701,,34.91356203,0,0,,,,1,1,,0.03,nav,1,2009,2,, 30558,NJBF000059679,7107 VENTNOR AVE,Ventnor City,NJ,39.33466645,-74.49000737,RES1,3001,,17,NE,1920,1920,3102,2,1,1182.195661,1182.195661,3505,NO,30.67,37.54,3,3.9,6106,113.632018,123.410066,133.123391,139.702279,I,Above,Flat,0,5701,,34.10662632,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30559,NJBF000059727,28 N WASHINGTONA AVE,Ventnor City,NJ,39.3347402,-74.49281604,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1557.731086,1557.731086,3505,NO,32.34,45.24,3,1.77,6106,113.569042,123.359311,133.06995,139.6452,I,Above,Gable,0,5701,,38.79022118,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30560,NJBF000064375,205 N OXFORD AVE,Ventnor City,NJ,39.34432857,-74.47838525,RES1,3001,,17,NE,1960,1960,3102,2,1,941.548027,941.548027,3505,NO,21.95,32.58,3,0.41,6106,113.757957,123.510286,133.236996,139.759504,I,Above,Flat,0,5701,,27.26180593,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 30561,NJBF000064339,114 N SUFFOLK AVE,Ventnor City,NJ,39.34425022,-74.47702557,RES1,3001,,17,NE,1952,1952,3102,1,1,1473.1086,1473.1086,3505,NO,11.68,20.84,3,-2.86,6106,113.788973,123.535473,133.263795,139.784157,I,Above,Hip,0,5701,,16.25854171,0,0,,,,1,1,,0.03,nav,1,1952,1,, 30562,NJBF000064421,5511 MONMOUTH AVE,Ventnor City,NJ,39.34444934,-74.47764737,RES1,3001,,17,NE,1927,1927,3102,2,1,1229.783566,1229.783566,3505,NO,35.64,49.56,3,-2.82,6106,113.772661,123.522173,133.249757,139.770271,I,Above,Gable,0,5701,,42.60227761,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 30563,NJBF000059660,1 S LAFAYETTE AVE,Ventnor City,NJ,39.334633,-74.489094,RES1,3001,,17,NE,1954,1954,3102,1,1,1240.656626,1240.656626,3505,NO,20.74,34.26,3,2.41,6106,113.652603,123.42667,133.14089,139.720827,I,Above,Flat,0,5701,,27.50288535,0,0,,,,1,1,,0.03,nav,1,1954,1,, 30564,NJBF000064392,220 N DORSET AVE,Ventnor City,NJ,39.34437159,-74.48074835,RES1,3001,,17,NE,1940,1940,3102,2,1,1114.838158,1114.838158,3505,NO,38.03,44.33,3,7.7,6106,113.705229,123.467549,133.191513,139.717525,I,Above,Hip,0,5701,,41.17834516,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30565,NJBF000059616,7 N SWARTHMORE AVE,Ventnor City,NJ,39.33455038,-74.49147674,RES1,3001,,17,NE,1925,1925,3102,2,1,1778.479622,1778.479622,3505,NO,33.57,45.57,3,7.44,6106,113.601215,123.385231,133.09711,139.674809,I,Above,Hip,0,5701,,39.56991814,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30566,NJBF000059672,111 S TROY AVE,Ventnor City,NJ,39.33465494,-74.48354079,RES1,3001,,19,NE,1925,2018,3102,3,1,1278.360111,1278.360111,3505,NO,60.12,71.06,3,7.52,6106,113.77463,123.525259,133.245203,139.827177,I,Above,Hip,0,5701,,65.59367001,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 30567,NJBF000064436,21-23 S BATON ROUGE AVE,Ventnor City,NJ,39.34448621,-74.46662786,RES3B,3001,,45,ME,1939,1939,3301,2,1,1484.489234,1484.489234,3504,NO,31.02,44.48,-4,0,6110,114.014662,123.719268,133.460703,139.951558,I,Above,Flat,0,NaN,,37.75076865,0,1.2,,,,1,1,,0.35,nav,1,1939,2,, 30568,NJBF000064428,308 N BURGHLEY AVE,Ventnor City,NJ,39.34445856,-74.48257693,RES1,3001,,17,NE,1958,1958,3102,1,1,1460.178584,1460.178584,3505,NO,11.28,23.7,3,0.7,6106,113.663675,123.433897,133.155784,139.683578,I,Above,Hip,0,5701,,17.49420606,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30569,NJBF000064389,28 N WEYMOUTH AVE,Ventnor City,NJ,39.34436451,-74.47189316,RES1,3001,,17,NE,1920,1920,3102,2,1,1456.427027,1456.427027,3507,NO,36.6,47.14,1,1.98,6106,113.900533,123.62615,133.360775,139.8683,I,Above,Hip,0,5701,,41.87409252,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30570,NJBF000064366,318 N CAMBRIDGE AVE,Ventnor City,NJ,39.34431609,-74.48422181,RES1,3001,,17,NE,1962,1962,3102,1,1,1790.093585,1790.093585,3505,NO,18.94,30.28,3,1.79,6106,113.629195,123.406081,133.126144,139.656256,I,Above,Hip,0,5701,,24.61016686,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 30571,NJBF000064229,107 N SURREY AVE,Ventnor City,NJ,39.3439464,-74.47537475,RES1,3001,,16,NE,1900,1900,3102,2,1,1270.985498,1270.985498,3507,NO,34.01,39.01,1,-0.31,6106,113.829364,123.568366,133.298672,139.817104,I,Above,Hip,0,5701,,36.51039495,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 30572,NJBF000064323,305 N CORNWALL AVE,Ventnor City,NJ,39.34419813,-74.48270886,RES1,3001,,17,NE,1958,1958,3102,1,1,1164.689856,1164.689856,3505,NO,18.36,25.52,3,3.45,6106,113.664198,123.434411,133.156156,139.685496,I,Above,Gable,0,5701,,21.93817398,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30573,NJBF000064231,229 N DERBY AVE,Ventnor City,NJ,39.3439513,-74.48073935,RES1,3001,,45,NE,1915,1915,3102,2,2,1535.840963,1535.840963,3505,NO,31.28,44.83,3,7.8,6106,113.710976,123.472341,133.19632,139.724588,I,Above,Gable,0,5701,,38.05563142,0,0,,,,1,1,,0.03,nav,1,1915,2,, 30574,NJBF000064314,17 S OAKLAND AVE,Ventnor City,NJ,39.34418791,-74.46835098,RES3A,3001,,17,NE,1930,1930,3301,3,1,2420.626349,2420.626349,3504,NO,44.94,50.38,-4,0,6106,113.980727,123.691604,133.43076,139.92863,I,Above,Hip,0,5701,,47.66189399,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 30575,NJBF000064334,4829 ATLANTIC AVE,Ventnor City,NJ,39.344233,-74.4664855,RES3B,3001,101,NaN,ME,1960,1960,3301,2,4,3129.979657,3129.979657,3504,NO,21.79,28.99,-4,0,6106,114.021089,123.724579,133.466188,139.957734,I,Above,Flat,0,NaN,,25.38697463,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30576,NJBF000064241,19 N LITTLE ROCK AVE,Ventnor City,NJ,39.34397834,-74.47210238,RES1,3001,,17,NE,1930,1930,3102,2,1,1254.13837,1254.13837,3507,NO,25.91,34.87,1,2.85,6106,113.901013,123.626644,133.360993,139.871031,I,Above,Flat,0,5701,,30.39347878,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30577,NJBF000064240,110 N SUFFOLK AVE,Ventnor City,NJ,39.34397518,-74.47680514,RES1,3001,,17,NE,1951,1951,3102,1,1,1458.903159,1458.903159,3505,NO,15.87,27.65,3,-2.73,6106,113.797464,123.542448,133.271032,139.792402,I,Above,Gable,0,5701,,21.75832445,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, 30578,NJBF000064287,112 N SUFFOLK AVE,Ventnor City,NJ,39.34411038,-74.47691476,RES1,3001,,17,NE,1956,1956,3102,1,1,1365.8439,1365.8439,3505,NO,20.69,27.4,3,3.25,6106,113.793262,123.538997,133.26745,139.78833,I,Above,Hip,0,5701,,24.04745939,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 30579,NJBF000064333,15 N WEYMOUTH AVE,Ventnor City,NJ,39.3442275,-74.471319,RES1,3001,,17,NE,1920,1920,3102,1,1,1870.524687,1870.524687,3507,NO,15.32,24.04,1,-0.68,6106,113.914958,123.63794,133.373285,139.879894,I,Above,Hip,0,5701,,19.68048948,0,0,,,,1,1,,0.03,nav,1,1920,1,, 30580,NJBF000064360,17 N WEYMOUTH AVE,Ventnor City,NJ,39.34429974,-74.47139777,RES1,3001,,18,NE,1920,2018,3102,2,1,1319.070841,1319.070841,3507,NO,29.91,36.79,1,1.93,6106,113.912276,123.635735,133.370983,139.877457,I,Above,Hip,0,5701,,33.34911844,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30581,NJBF000064305,5611 MONMOUTH AVE,Ventnor City,NJ,39.34415778,-74.47827536,RES1,3001,,17,NE,1929,1929,3102,1,1,1233.186754,1233.186754,3505,NO,25.64,32.9,3,6.19,6106,113.762634,123.514133,133.240973,139.764198,I,Above,Flat,0,5701,,29.27231817,0,0,,,,1,1,,0.03,nav,1,1929,1,, 30582,NJBF000064330,103 N LITTLE ROCK AVE,Ventnor City,NJ,39.34421188,-74.4723081,RES1,3001,,17,NE,1930,1930,3102,2,1,888.248351,888.248351,3507,NO,28.38,38.1,1,0.26,6106,113.893408,123.620388,133.354487,139.86391,I,Above,Gable,0,5701,,33.24331826,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30583,NJBF000064225,203 N DUDLEY AVE,Ventnor City,NJ,39.34393805,-74.47891893,RES1,3001,,45,NE,1950,1950,3102,2,2,1063.655291,1063.655291,3505,NO,34.14,41.07,3,7.24,6106,113.751322,123.50503,133.231114,139.756643,I,Above,Hip,0,5701,,37.60327634,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 30584,NJBF000064344,209 N DUDLEY AVE,Ventnor City,NJ,39.34426041,-74.47919319,RES1,3001,,45,NE,1960,1960,3102,1,2,1154.75153,1154.75153,3505,NO,15.64,26.78,3,3.1,6106,113.741034,123.496589,133.222353,139.746613,I,Above,Flat,0,5701,,21.21114707,0,0,,,,1,1,,0.03,nav,1,1960,1,, 30585,NJBF000064221,301 N CORNWALL AVE,Ventnor City,NJ,39.34392643,-74.48248283,RES1,3001,,17,NE,1958,1958,3102,1,1,1592.027096,1592.027096,3505,NO,11.51,20.28,3,0.49,6106,113.672783,123.441445,133.163447,139.69401,I,Above,Flat,0,5701,,15.89144993,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30586,NJBF000064245,115 N SOMERSET AVE,Ventnor City,NJ,39.34398552,-74.47717693,RES1,3001,,17,NE,1946,1946,3102,1,1,1361.419161,1361.419161,3505,NO,16.61,22.38,3,4.27,6106,113.789116,123.53567,133.263809,139.785872,I,Above,Hip,0,5701,,19.49458931,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 30587,NJBF000064350,14 S MARION AVE,Ventnor City,NJ,39.34427714,-74.4678622,RES3A,3001,,17,NE,1910,1910,3301,2,1,1698.268036,1698.268036,3504,NO,21.73,27.9,-4,0,6106,113.990302,123.699404,133.439204,139.935086,I,Above,Hip,0,5701,,24.81810106,0,0,,,,1,1,,0.03,nav,1,1910,2,, 30588,NJBF000064272,11 S NASHVILLE AVE,Ventnor City,NJ,39.34406731,-74.46919604,RES1,3001,,NaN,NE,1925,1925,3102,2,1,2284.22426,2284.22426,3507,NO,26.51,36.86,1,0.5,6106,113.963747,123.677769,133.415823,139.916924,I,Above,Flat,0,5701,,31.68728122,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30589,NJBF000064324,1 S NASHVILLE AVE,Ventnor City,NJ,39.3441989,-74.46937014,RES1,3001,,NaN,NE,1929,1929,3102,3,1,2615.697533,2615.697533,3507,NO,58.91,73.21,1,2.7,6106,113.958193,123.673205,133.41104,139.912042,I,Above,Flat,0,5701,,66.05985899,0,0,,,,1,1,,0.03,nav,1,1929,3,, 30590,NJBF000064295,,Ventnor City,NJ,39.34413428,-74.48093615,RES1,3001,,NaN,NE,1945,0,3102,2,1,838.1854543,838.1854543,3505,NO,36.37,43.55,3,3.63,6106,113.704212,123.466806,133.190557,139.718109,I,Above,Gable,0,5701,,39.96352162,0,0,,,,1,1,,0.03,nav,1,1945,2,, 30591,NJBF000064002,2 N VICTORIA AVE,Ventnor City,NJ,39.34331319,-74.47255738,RES1,3001,,17,NE,1920,1920,3102,2,1,1121.906868,1121.906868,3505,NO,32.52,46.75,3,2.95,6106,113.899751,123.625781,133.359531,139.874159,I,Above,Hip,0,5701,,39.63118135,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30592,NJBF000064125,5 N VICTORIA AVE,Ventnor City,NJ,39.34363149,-74.47236389,RES1,3001,,17,NE,1902,1902,3102,2,1,1294.062323,1294.062323,3505,NO,32.16,37.73,3,4.26,6106,113.89981,123.625752,133.359758,139.872257,I,Above,Hip,0,5701,,34.94168126,0,1.1,,,,1,1,,0.03,nav,1,1902,2,, 30593,NJBF000063998,5 N SURREY AVE,Ventnor City,NJ,39.34330823,-74.47298378,RES1,3001,,17,NE,1928,1928,3102,2,2,1710.225997,1710.225997,3505,NO,35.28,47.9,3,4.04,6106,113.89042,123.618186,133.351405,139.867211,I,Above,Hip,0,5701,,41.59281046,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30594,NJBF000063954,5411 WINCHESTER AVE,Ventnor City,NJ,39.34319161,-74.47408749,RES1,3001,,17,NE,1924,1924,3102,2,1,1383.205768,1383.205768,3505,NO,33.38,44.6,3,1.23,6106,113.867669,123.599705,133.331557,139.850816,I,Above,Gable,0,5701,,38.99019835,0,0,,,,1,1,,0.03,nav,1,1924,2,, 30595,NJBF000064117,6103 CALVERT AVE,Ventnor City,NJ,39.34362457,-74.48310009,RES1,3001,,17,NE,1959,1959,3102,1,1,1857.159056,1857.159056,3505,NO,13.35,24.6,3,-1.05,6106,113.663128,123.433738,133.155054,139.687876,I,Above,Hip,0,5701,,18.97538933,0,0,,,,1,1,,0.03,nav,1,1959,1,, 30596,NJBF000064186,,Ventnor City,NJ,39.34380963,-74.47580337,RES1,3001,,NaN,NE,1969,0,3102,2,1,1180.509253,1180.509253,3505,NO,43.99,56.44,3,8.62,6106,113.821723,123.562196,133.291981,139.812086,I,Above,Flat,0,5701,,50.21428446,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30597,NJBF000064010,134-136 N DUDLEY AVE,Ventnor City,NJ,39.3433282,-74.47892429,COM1,3001,,45,ME,1930,1930,3401,2,2,2155.647198,2155.647198,3507,NO,35.66,41.19,1,2.44,6106,113.759264,123.51165,133.23772,139.766535,I,Above,Flat,0,NaN,,38.42673357,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30598,NJBF000064206,201 N DUDLEY AVE,Ventnor City,NJ,39.34388739,-74.47886938,RES1,3001,,17,NE,1929,1929,3102,2,1,842.7720632,842.7720632,3505,NO,40.29,49.42,3,5.11,6106,113.753098,123.506485,133.232627,139.758345,I,Above,Hip,0,5701,,44.85898518,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 30599,NJBF000064173,11 N VICTORIA AVE,Ventnor City,NJ,39.34378307,-74.47247607,RES1,3001,,17,NE,1925,1925,3102,2,1,1389.279402,1389.279402,3507,NO,34.46,41.41,1,2.55,6106,113.895346,123.622079,133.355951,139.86799,I,Above,Gable,0,5701,,37.93552035,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30600,NJBF000064172,,Ventnor City,NJ,39.34378103,-74.47521656,RES1,3001,,NaN,NE,1969,0,3102,2,1,1387.273175,1387.273175,3507,NO,21.93,36.41,1,0.27,6106,113.835017,123.573006,133.3035,139.822432,I,Above,Hip,0,5701,,29.17149029,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30601,NJBF000063846,18 S WEYMOUTH AVE,Ventnor City,NJ,39.34287754,-74.47076454,RES1,3001,,20,NE,1925,1925,3102,2,1,1431.986274,1431.986274,3505,NO,35.18,49.94,3,-1.4,6106,113.944901,123.66266,133.398635,139.910285,I,Above,Hip,0,5701,,42.55834497,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30602,NJBF000063829,20 S WEYMOUTH AVE,Ventnor City,NJ,39.34280552,-74.4707005,RES1,3001,,17,NE,1925,1925,3102,2,1,1677.795433,1677.795433,3505,NO,34.42,45.49,3,-0.85,6106,113.947258,123.664596,133.400647,139.912456,I,Above,Hip,0,5701,,39.95562882,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30603,NJBF000063820,1 N SUFFOLK AVE,Ventnor City,NJ,39.34278226,-74.47384506,RES1,3001,,17,NE,1905,1905,3102,2,1,2797.965321,2797.965321,3505,NO,47.78,60.5,3,8.83,6106,113.878412,123.608539,133.340667,139.861416,I,Above,Hip,0,5701,,54.14127309,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 30604,NJBF000063963,8 S WEYMOUTH AVE,Ventnor City,NJ,39.3432192,-74.47092851,RES1,3001,,NaN,NE,1950,1950,3102,1,1,807.8215641,807.8215641,3505,NO,17.43,32.39,3,6.84,6106,113.936799,123.655983,133.391773,139.90224,I,Above,Gable,0,5701,,24.90825714,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30605,NJBF000063821,5403 VENTNOR AVE,Ventnor City,NJ,39.34278783,-74.47328117,RES1,3001,,17,NE,1920,1920,3102,2,1,1423.748679,1423.748679,3505,NO,33.93,48.48,3,7.9,6106,113.890746,123.618573,133.351396,139.870634,I,Above,Hip,0,5701,,41.20354079,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30606,NJBF000063898,5103 ATLANTIC AVE,Ventnor City,NJ,39.34302282,-74.46897635,RES1,3001,,17,NE,1903,1903,3102,3,1,1887.497851,1887.497851,3505,NO,51.5,64.19,3,4.21,6110,113.982304,123.693141,133.431412,139.936807,I,Above,Hip,0,5701,,57.84426757,0,1.1,,,,1,1,,0.35,nav,1,1903,3,, 30607,NJBF000063889,110 N OXFORD AVE,Ventnor City,NJ,39.34300172,-74.47776685,RES1,3001,,45,NE,1987,1987,3102,2,2,1959.541619,1959.541619,3505,NO,35.87,46.18,3,3.81,6106,113.789094,123.53593,133.263348,139.791807,I,Above,Hip,0,5701,,41.02441306,0,0,,,,1,1,,0.03,nav,1,1987,2,, 30608,NJBF000063856,617 KINGSLEY DRIVE,Ventnor City,NJ,39.34290014,-74.4947821,RES1,3001,,17,NE,1978,1978,3102,1,1,2324.216518,2324.216518,3505,NO,17.41,26.5,3,3.57,6106,113.414175,123.233438,132.942746,139.480017,I,Above,Hip,0,5701,,21.95657178,0,0,,,,1,1,,0.03,nav,1,1978,1,, 30609,NJBF000063774,100 N OXFORD AVE,Ventnor City,NJ,39.34266491,-74.47761627,RES1,3001,,16,NE,1940,1940,3102,2,2,1452.744436,1452.744436,3505,NO,28.66,37.28,3,7.2,6106,113.796886,123.542339,133.269922,139.799889,I,Above,Hip,0,5701,,32.96679272,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 30610,NJBF000063762,606 KINGSLEY DRIVE,Ventnor City,NJ,39.34263569,-74.49436762,RES1,3001,,17,NE,1972,1972,3102,1,1,2555.052875,2555.052875,3505,NO,21.59,27.57,3,8.95,6106,113.42689,123.243734,132.953446,139.492254,I,Above,Flat,0,5701,,24.58201937,0,0,,,,1,1,,0.03,nav,1,1972,1,, 30611,NJBF000063955,113 S BATON ROUGE AVE,Ventnor City,NJ,39.34319197,-74.46561271,RES3B,3001,,17,E,1924,1924,3303,2,1,1485.240832,1485.240832,3504,NO,24,37.74,-4,0,6106,114.0539,123.751621,133.494311,139.987571,I,Above,Flat,0,NaN,,30.86951407,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 30612,NJBF000063758,,Ventnor City,NJ,39.34262452,-74.47690806,RES1,3001,,NaN,NE,1928,0,3102,2,1,1458.825217,1458.825217,3505,NO,40.15,51.13,3,3.82,6106,113.813022,123.555444,133.283863,139.812607,I,Above,Gable,0,5701,,45.63815827,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30613,NJBF000063947,3A N SURREY AVE,Ventnor City,NJ,39.34316988,-74.47281873,RES1,3001,,17,NE,1949,1949,3102,1,1,1476.26785,1476.26785,3505,NO,14.17,21.31,3,-1.95,6106,113.895871,123.622656,133.356072,139.872134,I,Above,Hip,0,5701,,17.74213772,0,0,,,,1,1,,0.03,nav,1,1949,1,, 30614,NJBF000063979,130 N DUDLEY AVE,Ventnor City,NJ,39.34325913,-74.47882209,COM1,3001,,16,ME,1930,1930,3401,2,1,791.3845131,791.3845131,3507,NO,39.28,51.51,1,2.54,6106,113.762427,123.514233,133.240421,139.769431,I,Above,Flat,0,NaN,,45.3968958,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30615,NJBF000063803,17 S LITTLE ROCK AVE,Ventnor City,NJ,39.34274066,-74.47105304,RES1,3001,,45,NE,1890,1890,3102,2,2,2266.028388,2266.028388,3505,NO,40.13,52.14,3,8.11,6106,113.940377,123.659001,133.394602,139.907784,I,Above,Gable,0,5701,,46.13399212,0,0,,,,1,1,,0.03,nav,1,1890,2,, 30616,NJBF000063881,139 N DERBY AVE,Ventnor City,NJ,39.34297797,-74.47995795,RES1,3001,,17,NE,1956,1956,3102,1,1,2087.419077,2087.419077,3505,NO,17.99,24.5,3,3.35,6106,113.741081,123.497014,133.22188,139.754262,I,Above,Hip,0,5701,,21.2439656,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 30617,NJBF000063813,114 N DUDLEY AVE,Ventnor City,NJ,39.34276098,-74.47848604,COM1,3001,,17,ME,1992,1992,3401,2,1,1019.22897,1019.22897,3507,NO,30.41,38.69,1,0.37,6106,113.77643,123.525722,133.252288,139.783381,I,Above,Hip,0,NaN,,34.54608403,0,0,,,,1,1,,0.03,nav,1,1992,2,, 30618,NJBF000063781,110-112 N DUDLEY AVE,Ventnor City,NJ,39.34268426,-74.47841569,COM1,3001,,NaN,ME,1992,1992,3401,2,1,2057.66879,2057.66879,3507,NO,38.17,52.91,1,2.04,6106,113.778995,123.527822,133.254467,139.785847,I,Above,Hip,0,NaN,,45.5394856,0,0,,,,1,1,,0.03,nav,1,1992,2,, 30619,NJBF000063775,107 N DORSET AVE,Ventnor City,NJ,39.34267002,-74.47861007,COM1,3001,737,NaN,ME,1915,1915,3401,1,1,990.6449913,990.6449913,3507,NO,10.3,25.04,1,-0.25,6106,113.774902,123.524507,133.250925,139.78273,I,Above,Flat,0,NaN,,17.67248598,0,0,,,,1,1,,0.03,nav,1,1915,1,, 30620,NJBF000063686,420-422 N WISSAHICKON AVE,Ventnor City,NJ,39.34239235,-74.49336756,RES1,3001,,45,NE,1970,1970,3102,2,2,1552.96172,1552.96172,3505,NO,38.37,50.54,3,5.92,6106,113.452322,123.264242,132.974918,139.515535,I,Above,Gable,0,5701,,44.45057977,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30621,NJBF000063599,6106 MONMOUTH AVE,Ventnor City,NJ,39.3421425,-74.4811885,RES1,3001,,17,NE,1925,1925,3102,2,1,782.5971154,782.5971154,3505,NO,29.06,35.73,3,7.44,6106,113.725002,123.484217,133.207654,139.746322,I,Above,Hip,0,5701,,32.39620271,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30622,NJBF000063796,5115 ATLANTIC AVE,Ventnor City,NJ,39.34272361,-74.46964346,RES1,3001,,17,NE,1925,1925,3102,2,2,2254.900375,2254.900375,3505,NO,38.24,50.02,3,1.48,6110,113.971592,123.684458,133.42185,139.930791,I,Above,Flat,0,5701,,44.1278024,0,1.2,,,,1,1,,0.35,nav,1,1925,2,, 30623,NJBF000063649,7 N OXFORD AVE,Ventnor City,NJ,39.34230355,-74.47606082,RES1,3001,,16,NE,1940,1940,3102,2,1,1099.474649,1099.474649,3505,NO,33.59,46.83,3,-0.53,6106,113.835941,123.574128,133.303542,139.832143,I,Above,Hip,0,5701,,40.20740517,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 30624,NJBF000063749,5515 WINCHESTER AVE,Ventnor City,NJ,39.3425976,-74.47502267,RES1,3001,,17,NE,1900,1900,3102,2,1,1399.963142,1399.963142,3505,NO,35.19,42.95,3,7.65,6106,113.854909,123.589472,133.320152,139.844792,I,Above,Hip,0,5701,,39.07090805,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 30625,NJBF000063772,5513 WINCHESTER AVE,Ventnor City,NJ,39.342663,-74.4749395,RES1,3001,,18,NE,1920,1920,3102,2,1,1150.913835,1150.913835,3505,NO,29.63,37.27,3,-1.31,6106,113.855876,123.590243,133.321028,139.845129,I,Above,Hip,0,5701,,33.44743985,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30626,NJBF000063638,5211 ATLANTIC AVE,Ventnor City,NJ,39.34226421,-74.47054567,RES1,3001,,NaN,NE,1920,1920,3102,3,1,2209.07305,2209.07305,3505,NO,50.72,61.28,3,-2.11,6110,113.957826,123.673317,133.409522,139.923495,I,Above,Flat,0,5701,,55.99880302,0,0,,,,1,1,,0.35,nav,1,1920,3,, 30627,NJBF000063526,,Ventnor City,NJ,39.34194899,-74.46799234,RES3B,3001,,NaN,E,1969,0,3303,3,1,2625.736621,2625.736621,3504,NO,42.98,49.24,-4,0,6106,114.018092,123.722547,133.461994,139.969161,I,Above,Flat,0,NaN,,46.10967927,0,0,,,,1,1,,0.03,nav,1,1969,3,, 30628,NJBF000063645,5609 WINCHESTER AVE,Ventnor City,NJ,39.3422895,-74.4756705,RES1,3001,,19,NE,1910,2018,3102,2,1,1207.260431,1207.260431,3505,NO,27.86,35.31,3,2.44,6106,113.844731,123.581272,133.311152,139.83894,I,Above,Hip,0,5701,,31.58559785,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 30629,NJBF000063558,6 S SURREY AVE,Ventnor City,NJ,39.34205427,-74.47247988,RES1,3001,,18,NE,1920,1920,3102,2,1,1507.921859,1507.921859,3505,NO,39.88,49.41,3,6.59,6106,113.918084,123.640977,133.37474,139.895479,I,Above,Hip,0,5701,,44.64385545,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30630,NJBF000063576,,Ventnor City,NJ,39.3420905,-74.4828755,RES1,3001,,NaN,NE,1969,0,3102,2,1,535.2949914,535.2949914,3505,NO,25.62,36.12,3,-2.7,6106,113.688462,123.454669,133.176217,139.717116,I,Above,Flat,0,5701,,30.86964439,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30631,NJBF000063743,5 S SURREY AVE,Ventnor City,NJ,39.34258212,-74.47240632,RES1,3001,,17,NE,1912,1912,3102,2,1,1359.07472,1359.07472,3505,NO,20.87,31.6,3,-2.38,6106,113.912722,123.636506,133.3704,139.888285,I,Above,Hip,0,5701,,26.23609936,0,1.1,,,,1,1,,0.03,nav,1,1912,2,, 30632,NJBF000063667,5209 ATLANTIC AVE,Ventnor City,NJ,39.34234584,-74.47044702,RES1,3001,,NaN,NE,1925,1912,3102,3,4,2269.907754,2269.907754,3505,NO,47.23,53.74,3,0.44,6110,113.958918,123.674192,133.410529,139.9238,I,Above,Flat,0,5701,,50.48596094,0,0,,,,1,1,,0.35,nav,1,1925,3,, 30633,NJBF000063687,105 S AMHERST AVE,Ventnor City,NJ,39.34239354,-74.46858564,RES3B,3001,,17,E,1911,1911,3303,2,1,1891.069532,1891.069532,3504,NO,32.2,38.85,-4,0,6106,113.999168,123.707022,133.445744,139.952837,I,Above,Flat,0,NaN,,35.52172742,0,1.1,,,,1,1,,0.03,nav,1,1911,2,, 30634,NJBF000063639,107 S AMHERST AVE,Ventnor City,NJ,39.34227078,-74.46849019,RES3B,3001,,18,E,1911,1911,3303,3,1,2226.48694,2226.48694,3504,NO,32.75,44.33,-4,0,6106,114.002901,123.710091,133.448925,139.956275,I,Above,Hip,0,NaN,,38.54173149,0,1.2,,,,1,1,,0.03,nav,1,1911,3,, 30635,NJBF000063764,105 S NASHVILLE AVE,Ventnor City,NJ,39.34264425,-74.46808785,RES3B,3001,,17,E,1900,1900,3303,3,1,1666.628757,1666.628757,3504,NO,40.9,51.46,-4,0,6106,114.006803,123.713214,133.452603,139.956875,I,Above,Hip,0,NaN,,46.17681556,0,0,,,,1,1,,0.03,nav,1,1900,3,, 30636,NJBF000063481,113 S AMHERST AVE,Ventnor City,NJ,39.34183454,-74.46814711,RES3B,3001,,20,E,1989,1989,3303,2,1,2423.601585,2423.601585,3504,NO,23.86,35.7,-4,0,6106,114.016199,123.721018,133.460251,139.968471,I,Above,Flat,0,NaN,,29.78063364,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 30637,NJBF000063232,,Ventnor City,NJ,39.34118168,-74.47104399,COM1,3001,,NaN,ME,1980,0,3401,3,1,2229.566583,2229.566583,3507,NO,40.99,51.34,1,1.31,6106,113.961231,123.676271,133.411745,139.932505,I,Above,Flat,0,NaN,,46.16771172,0,0,,,,1,1,,0.03,nav,1,1980,3,, 30638,NJBF000063441,101 N CORNWALL AVE,Ventnor City,NJ,39.34173939,-74.48106084,RES1,3001,,NaN,NE,1980,1980,3102,1,1,21309.04201,21309.04201,3505,NO,21.67,31.27,3,3.3,6106,113.73321,123.49096,133.214526,139.755223,I,Above,Flat,0,5701,,26.47277028,0,0,,,,1,1,,0.03,nav,1,1980,1,, 30639,NJBF000063370,101 N CORNWALL AVE,Ventnor City,NJ,39.34152581,-74.4808536,RES1,3001,,NaN,NE,1980,1980,3102,1,1,510.2095517,510.2095517,3505,NO,23.56,29.28,3,5.79,6106,113.740619,123.497009,133.220797,139.762374,I,Above,Flat,0,5701,,26.4207226,0,0,,,,1,1,,0.03,nav,1,1980,1,, 30640,NJBF000063283,101 N CORNWALL AVE,Ventnor City,NJ,39.34131848,-74.48081419,RES1,3001,,NaN,NE,1980,1980,3102,1,1,9031.924293,9031.924293,3505,NO,18.6,29.16,3,4.98,6106,113.744279,123.500019,133.223841,139.766497,I,Above,Hip,0,5701,,23.8805143,0,0,,,,1,1,,0.03,nav,1,1980,1,, 30641,NJBF000063424,5401 ATLANTIC AVE,Ventnor City,NJ,39.34167845,-74.47218729,RES1,3001,,18,NE,1927,1927,3102,2,1,1593.78743,1593.78743,3505,NO,44.04,55.78,3,7.21,6106,113.929515,123.650354,133.384448,139.90622,I,Above,Hip,0,5701,,49.90783232,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 30642,NJBF000063413,120 N CORNWALL AVE,Ventnor City,NJ,39.34165197,-74.48166067,RES1,3001,,17,NE,1940,1940,3102,2,1,567.1200958,567.1200958,3505,NO,44.33,49.73,3,8.51,6106,113.721129,123.481203,133.204089,139.746028,I,Above,Hip,0,5701,,47.02928248,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30643,NJBF000063181,126 N HARVARD AVE,Ventnor City,NJ,39.34107652,-74.48259569,RES1,3001,,28,NE,1925,1925,3102,2,1,1885.588281,1885.588281,3505,NO,35.86,49.64,3,-0.32,6106,113.708178,123.470857,133.192672,139.738796,I,Above,Flat,0,5701,,42.7484831,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30644,NJBF000062595,121 N NEWPORT AVE,Ventnor City,NJ,39.33977845,-74.48472391,RES1,3001,,28,NE,1925,1925,3102,2,1,2047.286178,2047.286178,3505,NO,27.22,33.71,3,1.9,6106,113.678662,123.447257,133.166668,139.721504,I,Above,Gable,0,5701,,30.46822231,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30645,NJBF000062581,215 N WISSAHICKON AVE,Ventnor City,NJ,39.33975949,-74.49022957,RES1,3001,,17,NE,1953,1953,3102,1,1,2284.458233,2284.458233,3505,NO,10.93,20.54,3,0.39,6106,113.557271,123.34934,133.063055,139.618075,I,Above,Gable,0,5701,,15.73439375,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 30646,NJBF000062588,15 S DORSET AVE,Ventnor City,NJ,39.33976893,-74.47642818,RES1,3001,,17,NE,1957,1957,3102,1,1,3260.721473,3260.721473,3505,NO,24.63,33.14,3,5.31,6110,113.861678,123.59549,133.324249,139.867087,I,Above,Gable,0,5701,,28.88797605,0,1.2,,,,1,1,,0.35,nav,1,1957,1,, 30647,NJBF000062700,102 N SACRAMENTO AVE,Ventnor City,NJ,39.34004409,-74.48251038,RES1,3001,,17,NE,1920,1920,3102,2,1,2227.89933,2227.89933,3505,NO,18.44,28.33,3,-2.99,6106,113.723941,123.483814,133.205654,139.75733,I,Above,Hip,0,5701,,23.38583566,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30648,NJBF000062711,5904 VENTNOR AVE,Ventnor City,NJ,39.3400715,-74.47777562,RES1,3001,,18,NE,1920,1920,3102,3,1,2502.449467,2502.449467,3505,NO,52.54,66.3,3,4.6,6106,113.827929,123.568052,133.295264,139.839466,I,Above,Hip,0,5701,,59.41700661,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 30649,NJBF000062657,102 N PRINCETON AVE,Ventnor City,NJ,39.33993381,-74.48315465,RES1,3001,,17,NE,1935,1935,3102,1,1,1504.512657,1504.512657,3505,NO,13.15,22.91,3,-2.25,6106,113.711189,123.47352,133.194643,139.747532,I,Above,Hip,0,5701,,18.02987418,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 30650,NJBF000062576,219 N NEWARK AVE,Ventnor City,NJ,39.33974714,-74.49115698,RES1,3001,,17,NE,1947,1947,3102,1,1,1340.792099,1340.792099,3505,NO,13.4,22.15,3,1.65,6106,113.536936,123.332968,133.045764,139.600377,I,Above,Flat,0,5701,,17.77534709,0,0,,,,1,1,,0.03,nav,1,1947,1,, 30651,NJBF000062600,126 N BRYANT AVE,Ventnor City,NJ,39.33978247,-74.48592927,RES1,3001,,16,NE,1933,1933,3102,2,1,1084.1052,1084.1052,3505,NO,24.77,36.2,3,-1.2,6106,113.652001,123.425724,133.143853,139.699161,I,Above,Hip,0,5701,,30.48505615,0,1.1,,,,1,1,,0.03,nav,1,1933,2,, 30652,NJBF000062517,213 N WISSAHICKON AVE,Ventnor City,NJ,39.33961526,-74.4901118,RES1,3001,,17,NE,1953,1953,3102,1,1,1807.75821,1807.75821,3505,NO,21.19,36.17,3,3.19,6106,113.561832,123.353042,133.066865,139.622644,I,Above,Hip,0,5701,,28.67655624,0,0,,,,1,1,,0.03,nav,1,1953,1,, 30653,NJBF000062518,16 N SACRAMENTO AVE,Ventnor City,NJ,39.33961628,-74.48232421,RES1,3001,,NaN,NE,1950,1953,3102,2,1,5157.620931,5157.620931,3505,NO,36.36,50.72,3,4.89,6106,113.733808,123.49187,133.213878,139.767707,I,Above,Flat,0,5701,,43.53746456,0,0,,,,1,1,,0.03,nav,1,1950,2,, 30654,NJBF000062569,6302 WINCHESTER AVE,Ventnor City,NJ,39.33973761,-74.482436,RES1,3001,,45,NE,1950,1950,3102,2,2,930.7438415,930.7438415,3505,NO,28.55,37.13,3,-1.7,6106,113.729693,123.48852,133.210416,139.763693,I,Above,Gable,0,5701,,32.83928315,0,0,,,,1,1,,0.03,nav,1,1950,2,, 30655,NJBF000062540,6304 WINCHESTER AVE,Ventnor City,NJ,39.33967083,-74.4825983,RES1,3001,,45,NE,1950,1950,3102,2,2,914.716971,914.716971,3505,NO,42.06,48,3,5.55,6106,113.727022,123.486371,133.208082,139.76189,I,Above,Hip,0,5701,,45.02899486,0,0,,,,1,1,,0.03,nav,1,1950,2,, 30656,NJBF000062439,229 N WYOMING AVE,Ventnor City,NJ,39.33946411,-74.49263454,RES1,3001,,17,NE,1941,1941,3102,1,1,1457.401683,1457.401683,3505,NO,19.84,31.42,3,1,6106,113.508089,123.309809,133.021153,139.576113,I,Above,Hip,0,5701,,25.63357294,0,1.1,,,,1,1,,0.03,nav,1,1941,1,, 30657,NJBF000062486,118 1/2 N BRYANT AVE,Ventnor City,NJ,39.33956817,-74.4857363,RES1,3001,,28,NE,1928,1928,3102,2,1,1080.461669,1080.461669,3505,NO,23.48,37.17,3,-0.55,6106,113.659154,123.431538,133.149855,139.706239,I,Above,Flat,0,5701,,30.32766197,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 30658,NJBF000062444,9 N SACRAMENTO AVE,Ventnor City,NJ,39.3394775,-74.4815825,RES1,3001,,17,NE,1920,1920,3102,2,1,1585.026798,1585.026798,3505,NO,37.03,44.56,3,7.89,6106,113.75201,123.506622,133.229438,139.783183,I,Above,Flat,0,5701,,40.79686458,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30659,NJBF000062409,109 N BRYANT AVE,Ventnor City,NJ,39.33939649,-74.48518634,RES1,3001,,17,NE,1940,1940,3102,2,1,1233.212476,1233.212476,3505,NO,37.73,47.9,3,2.57,6106,113.673622,123.443251,133.162138,139.719241,I,Above,Flat,0,5701,,42.81768709,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30660,NJBF000062375,130 N AVOLYN AVE,Ventnor City,NJ,39.33932534,-74.48701347,RES1,3001,,17,NE,1916,1916,3102,2,1,1130.15424,1130.15424,3505,NO,39.88,50.73,3,2.39,6106,113.634241,123.41147,133.128429,139.686315,I,Above,Hip,0,5701,,45.30396454,0,0,,,,1,1,,0.03,nav,1,1916,2,, 30661,NJBF000062469,125 N NEW HAVEN AVE,Ventnor City,NJ,39.33952045,-74.4860109,RES1,3001,,28,NE,1920,1920,3102,2,1,1706.202744,1706.202744,3505,NO,31.63,42.81,3,5.67,6106,113.65373,123.427167,133.14519,139.701906,I,Above,Gable,0,5701,,37.21927744,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30662,NJBF000062519,120 N BRYANT AVE,Ventnor City,NJ,39.33961673,-74.48579559,RES1,3001,,17,NE,1928,1928,3102,2,1,1362.588682,1362.588682,3505,NO,31.14,39.28,3,5.44,6106,113.657167,123.429925,133.148182,139.704325,I,Above,Flat,0,5701,,35.20796428,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30663,NJBF000062362,6411 WINCHESTER AVE,Ventnor City,NJ,39.33929984,-74.48404051,RES1,3001,,17,NE,1945,1945,3102,2,1,1183.973854,1183.973854,3505,NO,30,37.75,3,2.12,6106,113.700191,123.464735,133.184841,139.741856,I,Above,Hip,0,5701,,33.8723233,0,0,,,,1,1,,0.03,nav,1,1945,2,, 30664,NJBF000062380,5601 BOARDWALK,Ventnor City,NJ,39.33933521,-74.47320318,RES1,3001,,18,NE,1989,1989,3102,3,1,2104.874033,2104.874033,3505,NO,54.78,62.94,3,4.14,6106,113.938447,123.657945,133.39052,139.926932,I,Above,Flat,0,5701,,58.86289232,0,1.2,,,,1,1,,0.03,nav,1,1989,3,, 30665,NJBF000062446,111 N BRYANT AVE,Ventnor City,NJ,39.339482,-74.4852555,RES1,3001,,17,NE,1940,1940,3102,2,1,1168.67707,1168.67707,3505,NO,32.94,44.92,3,4.28,6106,113.670936,123.441068,133.159888,139.71656,I,Above,Flat,0,5701,,38.93008108,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30666,NJBF000062286,226 N WYOMING AVE,Ventnor City,NJ,39.33915205,-74.49291205,RES1,3001,,17,NE,1944,1944,3102,1,1,1311.088255,1311.088255,3505,NO,19.18,30.37,3,1.46,6106,113.506209,123.308352,133.019414,139.575592,I,Above,Hip,0,5701,,24.77701246,0,1.1,,,,1,1,,0.03,nav,1,1944,1,, 30667,NJBF000066784,803 N BURGHLEY AVE,Ventnor City,NJ,39.3507652,-74.48712317,RES1,3001,,17,NE,1977,1977,3101,2,1,1933.844946,1933.844946,3505,NO,26.15,36.24,3,-0.56,6106,113.481184,123.283422,132.999554,139.497707,I,Above,Gable,0,5701,,31.19419586,0,0,,,,1,1,,0.03,nav,1,1977,2,, 30668,NJBF000066975,701 N SURREY AVE,Ventnor City,NJ,39.35151233,-74.48149491,RES3A,3001,,27,NE,1980,1980,3301,2,1,818.7477488,818.7477488,3505,NO,36.62,48.14,3,6.9,6106,113.596367,123.375954,133.098338,139.58749,I,Above,Gable,0,5701,,42.3786285,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30669,NJBF000066680,714 N DERBY AVE,Ventnor City,NJ,39.35045625,-74.48656716,RES1,3001,,17,NE,1967,1967,3101,1,1,1788.485313,1788.485313,3505,NO,22.86,33.5,3,6.58,6106,113.497464,123.296744,133.013547,139.512971,I,Above,Hip,0,5701,,28.17921825,0,0,,,,1,1,,0.03,nav,1,1967,1,, 30670,NJBF000066049,511 N OXFORD AVE,Ventnor City,NJ,39.34876464,-74.48187392,RES1,3001,,17,NE,1963,1963,3102,1,1,1417.967762,1417.967762,3507,NO,17.39,30.86,1,0.13,6106,113.623114,123.399198,133.121564,139.625601,I,Above,Flat,0,5701,,24.12553614,0,0,,,,1,1,,0.03,nav,1,1963,1,, 30671,NJBF000064170,5207 VENTNOR AVE,Ventnor City,NJ,39.34377744,-74.47158809,COM1,3001,771,NaN,ME,1940,1940,3401,3,1,24598.97591,24598.97591,3507,NO,33.44,40.59,1,1.21,6106,113.914963,123.638058,133.373045,139.882656,I,Above,Flat,0,NaN,,37.01124676,0,0,,,,1,1,,0.03,nav,1,1940,3,, 30672,NJBF000063433,5607 VENTNOR AVE,Ventnor City,NJ,39.34171892,-74.47549447,RES1,3001,,17,NE,1920,1920,3102,2,1,2634.547362,2634.547362,3505,NO,43.29,51.69,3,4.47,6106,113.856197,123.590709,133.320764,139.851122,I,Above,Hip,0,5701,,47.48930087,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30673,NJBF000059249,10 S MELBOURNE AVE,Ventnor City,NJ,39.33385878,-74.48984583,RES1,3001,,17,NE,1935,1935,3102,1,1,1501.549114,1501.549114,3505,NO,22.01,28.91,3,5.8,6106,113.646775,123.421954,133.135279,139.717719,I,Above,Hip,0,5701,,25.46415135,0,0,,,,1,1,,0.03,nav,1,1935,1,, 30674,NJBF000062141,27 S CORNWALL AVE,Ventnor City,NJ,39.33888287,-74.47833543,RES1,3001,,17,NE,1905,1905,3102,2,1,1931.378336,1931.378336,3505,NO,22.65,33.17,3,-2.58,6106,113.831609,123.571198,133.297626,139.849395,I,Above,Gable,0,5701,,27.90887069,0,1.2,,,,1,1,,0.03,nav,1,1905,2,, 30675,NJBF000065620,413 N SUFFOLK AVE,Ventnor City,NJ,39.34762615,-74.47924018,RES1,3001,,17,NE,1930,1930,3102,2,1,1119.314787,1119.314787,3505,NO,38.29,50.85,3,2.13,6106,113.696054,123.458818,133.184381,139.690785,I,Above,Hip,0,5701,,44.57057157,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30676,NJBF000062170,18 N PORTLAND AVE,Ventnor City,NJ,39.33891508,-74.48304426,RES1,3001,,18,NE,1901,1901,3102,3,1,1408.8473,1408.8473,3505,NO,56.62,67.74,3,1.35,6106,113.727392,123.486786,133.207935,139.766296,I,Above,Hip,0,5701,,62.17885518,0,0,,,,1,1,,0.03,nav,1,1901,3,, 30677,NJBF000061997,218 N WYOMING AVE,Ventnor City,NJ,39.33861852,-74.49241565,RES1,3001,,17,NE,1947,1947,3102,1,1,1489.811611,1489.811611,3505,NO,18.43,31.41,3,-0.68,6106,113.524444,123.323111,133.034612,139.593651,I,Above,Gable,0,5701,,24.92108607,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 30678,NJBF000062075,220 N WYOMING AVE,Ventnor City,NJ,39.33875507,-74.49255488,RES1,3001,,17,NE,1947,1947,3102,1,1,1160.498785,1160.498785,3505,NO,10.94,25.38,3,-2.41,6106,113.519515,123.319124,133.030501,139.5888,I,Above,Gable,0,5701,,18.15746653,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 30679,NJBF000065609,602 N CORNWALL AVE,Ventnor City,NJ,39.34759443,-74.48598049,RES1,3001,,17,NE,1963,1963,3101,2,1,2057.620942,2057.620942,3505,NO,37.6,45.5,3,6.48,6106,113.547367,123.338617,133.056507,139.570504,I,Above,Flat,0,5701,,41.55097308,0,0,,,,1,1,,0.03,nav,1,1963,2,, 30680,NJBF000065669,404 N SURREY AVE,Ventnor City,NJ,39.34777067,-74.47898408,RES1,3001,,17,NE,1989,1989,3102,2,1,1095.931355,1095.931355,3505,NO,24.93,30.78,3,2.8,6106,113.699833,123.461814,133.187669,139.692898,I,Above,Hip,0,5701,,27.85198848,0,0,,,,1,1,,0.03,nav,1,1989,2,, 30681,NJBF000062154,222 N WYOMING AVE,Ventnor City,NJ,39.33889282,-74.49265505,RES1,3001,,17,NE,1947,1947,3102,1,1,1402.866535,1402.866535,3505,NO,18.68,33.43,3,2.13,6106,113.515422,123.315808,133.027099,139.584681,I,Above,Hip,0,5701,,26.05307169,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 30682,NJBF000062182,126 N TROY AVE,Ventnor City,NJ,39.33894328,-74.48747999,RES1,3001,,17,NE,1930,1930,3102,2,1,1533.31878,1533.31878,3505,NO,23.88,33.61,3,-0.92,6106,113.629105,123.407389,133.123833,139.683685,I,Above,Gable,0,5701,,28.74327905,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30683,NJBF000061990,104 N NEW HAVEN AVE,Ventnor City,NJ,39.33859972,-74.48572314,RES1,3001,,17,NE,1936,1936,3102,1,1,1360.904058,1360.904058,3505,NO,14.68,23.54,3,-1,6106,113.672552,123.442508,133.160752,139.722266,I,Above,Hip,0,5701,,19.10787305,0,1.1,,,,1,1,,0.03,nav,1,1936,1,, 30684,NJBF000062087,101 N NEW HAVEN AVE,Ventnor City,NJ,39.33877584,-74.48547852,RES1,3001,,17,NE,1950,1950,3102,1,1,783.6092287,783.6092287,3505,NO,16,26.6,3,-2.23,6106,113.67555,123.444904,133.163423,139.723938,I,Above,Hip,0,5701,,21.29794556,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30685,NJBF000062058,6515 WINCHESTER AVE,Ventnor City,NJ,39.33873092,-74.48522145,RES1,3001,,17,NE,1928,1928,3102,2,1,1045.091507,1045.091507,3505,NO,36.27,45.11,3,5.6,6106,113.681854,123.450003,133.168791,139.729461,I,Above,Flat,0,5701,,40.68984356,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30686,NJBF000062081,6 S CAMBRIDGE AVE,Ventnor City,NJ,39.33876997,-74.48001789,RES1,3001,,17,NE,1922,1922,3102,2,1,1527.399892,1527.399892,3505,NO,25.34,33.35,3,4.25,6106,113.796061,123.542394,133.266887,139.822322,I,Above,Gable,0,5701,,29.3461854,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 30687,NJBF000062020,8 S CAMBRIDGE AVE,Ventnor City,NJ,39.3386598,-74.47993296,RES1,3001,,17,NE,1940,1940,3102,2,1,1752.313986,1752.313986,3505,NO,22.69,35.48,3,-2.37,6106,113.79942,123.545129,133.269704,139.825608,I,Above,Gable,0,5701,,29.08947151,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30688,NJBF000062012,1 S SACRAMENTO AVE,Ventnor City,NJ,39.33864142,-74.48090517,RES1,3001,,17,NE,1920,1920,3102,2,1,1762.770168,1762.770168,3505,NO,30.31,42.69,3,4.18,6106,113.778259,123.527988,133.251469,139.808944,I,Above,Gable,0,5701,,36.49690373,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30689,NJBF000061946,3 S SACRAMENTO AVE,Ventnor City,NJ,39.33852836,-74.48083213,RES1,3001,,17,NE,1930,1930,3102,2,1,1681.561618,1681.561618,3505,NO,38.79,47.43,3,6.85,6106,113.781396,123.530543,133.254091,139.812088,I,Above,Hip,0,5701,,43.1110404,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30690,NJBF000062008,121 N RICHARDS AVE,Ventnor City,NJ,39.33863414,-74.48748308,RES1,3001,,17,NE,1920,1920,3102,2,1,851.852137,851.852137,3505,NO,33.2,43.52,3,6.27,6106,113.633236,123.410768,133.127181,139.688618,I,Above,Gable,0,5701,,38.35666153,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30691,NJBF000062064,311 WINDSOR DRIVE,Ventnor City,NJ,39.33873582,-74.49403575,RES1,3001,,17,NE,1975,1975,3102,1,1,1866.137994,1866.137994,3505,NO,15.06,26.24,3,3.67,6106,113.487024,123.292993,133.002964,139.559989,I,Above,Hip,0,5701,,20.65100204,0,0,,,,1,1,,0.03,nav,1,1975,1,, 30692,NJBF000061987,309 WINDSOR DRIVE,Ventnor City,NJ,39.33859562,-74.49390024,RES1,3001,,17,NE,1980,1980,3102,2,1,2065.340215,2065.340215,3505,NO,19.3,31.16,3,-2.48,6106,113.491945,123.296972,133.007061,139.564842,I,Above,Hip,0,5701,,25.22636009,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 30693,NJBF000061922,202 N NEWARK AVE,Ventnor City,NJ,39.33848044,-74.49006541,RES1,3001,,17,NE,1998,1998,3102,1,1,1329.898645,1329.898645,3505,NO,20.6,28.34,3,1.64,6106,113.5783,123.366498,133.080285,139.641616,I,Above,Gable,0,5701,,24.4705296,0,0,,,,1,1,,0.03,nav,1,1998,1,, 30694,NJBF000062090,116 N AVOLYN AVE,Ventnor City,NJ,39.33878089,-74.48657123,RES1,3001,,17,NE,1938,1938,3102,2,1,908.0422029,908.0422029,3505,NO,34.77,44.53,3,8.95,6106,113.651376,123.425385,133.142758,139.70345,I,Above,Flat,0,5701,,39.65141972,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 30695,NJBF000061905,,Ventnor City,NJ,39.33844103,-74.47518271,RES1,3001,,NaN,NE,1969,0,3102,2,1,1982.898716,1982.898716,3505,NO,36.57,51.46,3,7.22,6106,113.906937,123.632401,133.36246,139.909067,I,Above,Hip,0,5701,,44.01802301,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30696,NJBF000061840,,Ventnor City,NJ,39.33835143,-74.47535823,RES1,3001,,NaN,NE,1969,0,3102,2,1,2997.457258,2997.457258,3505,NO,27.74,40.01,3,4.3,6106,113.904302,123.630267,133.360104,139.907651,I,Above,Hip,0,5701,,33.87501724,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30697,NJBF000065500,402 N SUFFOLK AVE,Ventnor City,NJ,39.34726334,-74.47947087,RES1,3001,,17,NE,1955,1955,3102,2,1,1149.914158,1149.914158,3505,NO,38.97,47.11,3,6.11,6106,113.695655,123.458659,133.183978,139.692665,I,Above,Hip,0,5701,,43.03842259,0,0,,,,1,1,,0.03,nav,1,1955,2,, 30698,NJBF000065398,417 N DORSET AVE,Ventnor City,NJ,39.34694837,-74.48218114,RES1,3001,,17,NE,1946,1946,3102,1,1,1228.707758,1228.707758,3505,NO,21.89,34.33,3,4.08,6106,113.639846,123.413622,133.135823,139.649857,I,Above,Hip,0,5701,,28.10863011,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 30699,NJBF000061912,25 N NEW HAVEN AVE,Ventnor City,NJ,39.33846236,-74.48509599,COM1,3001,,17,ME,1924,1924,3401,2,1,2228.838088,2228.838088,3507,NO,36.3,49.03,1,1.83,6106,113.688262,123.455217,133.174109,139.736172,I,Above,Hip,0,NaN,,42.66757715,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 30700,NJBF000061924,310 WINDSOR DRIVE,Ventnor City,NJ,39.33849079,-74.49440323,RES1,3001,,17,NE,1974,1974,3102,2,1,1785.649968,1785.649968,3505,NO,32.57,40.77,3,6.53,6106,113.482257,123.289198,132.998809,139.556537,I,Above,Hip,0,5701,,36.66677628,0,0,,,,1,1,,0.03,nav,1,1974,2,, 30701,NJBF000062250,209 N NEWARK AVE,Ventnor City,NJ,39.33908377,-74.49050888,RES1,3001,,17,NE,1955,1955,3102,1,1,1387.057959,1387.057959,3505,NO,20.31,28.2,3,8.21,6106,113.560265,123.351875,133.06527,139.623441,I,Above,Flat,0,5701,,24.25451752,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 30702,NJBF000061953,6516 WINCHESTER AVE,Ventnor City,NJ,39.33853659,-74.48483685,COM1,3001,101,NaN,ME,1928,1950,3401,3,1,2422.519807,2422.519807,3507,NO,52.42,63.98,1,1.02,6106,113.692959,123.459002,133.178177,139.739738,I,Above,Hip,0,NaN,,58.19994048,0,0,,,,1,1,,0.03,nav,1,1928,3,, 30703,NJBF000061703,7001-7003 VENTNOR GARDENS,Ventnor City,NJ,39.33810633,-74.49199947,RES1,3001,,45,NE,1980,1980,3102,2,2,559.989435,559.989435,3505,NO,35.3,42.67,3,4.7,6106,113.54067,123.336244,133.048105,139.609843,I,Above,Hip,0,5701,,38.98874637,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30704,NJBF000061750,7001-7003 VENTNOR GARDENS,Ventnor City,NJ,39.33818533,-74.49188123,RES1,3001,,45,NE,1980,1980,3102,2,2,1486.627089,1486.627089,3505,NO,33.4,47.98,3,7.93,6106,113.542198,123.337463,133.049445,139.610918,I,Above,Hip,0,5701,,40.69318409,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30705,NJBF000061844,308 WINDSOR DRIVE,Ventnor City,NJ,39.33836063,-74.49429732,RES1,3001,,17,NE,1989,1989,3102,2,1,1794.970328,1794.970328,3505,NO,25.29,35.65,3,-2.1,6106,113.48638,123.292532,133.002233,139.560641,I,Above,Flat,0,5701,,30.47182982,0,0,,,,1,1,,0.03,nav,1,1989,2,, 30706,NJBF000061754,6611 WINCHESTER AVE,Ventnor City,NJ,39.33818807,-74.48630851,RES1,3001,562,NaN,NE,1960,1960,3102,1,1,3899.379759,3899.379759,3505,NO,24.2,36.87,3,8.78,6106,113.665218,123.43664,133.154225,139.717995,I,Above,Flat,0,5701,,30.53594622,0,0,,,,1,1,,0.03,nav,1,1960,1,, 30707,NJBF000061603,2 N NEWPORT AVE,Ventnor City,NJ,39.33792909,-74.48372355,COM1,3001,,17,ME,1950,1950,3401,2,1,2050.370667,2050.370667,3507,NO,27.34,35.39,1,1.25,6106,113.725768,123.485593,133.20589,139.770151,I,Above,Gable,0,NaN,,31.36254275,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 30708,NJBF000061590,101 N RICHARDS AVE,Ventnor City,NJ,39.33790944,-74.48687637,RES1,3001,,17,NE,1935,1935,3102,2,1,1612.153849,1612.153849,3505,NO,30.97,43.7,3,2.15,6106,113.656504,123.429639,133.146603,139.711819,I,Above,Hip,0,5701,,37.33482488,0,0,,,,1,1,,0.03,nav,1,1935,2,, 30709,NJBF000061710,6907 MONMOUTH AVE,Ventnor City,NJ,39.338127,-74.4901515,RES1,3001,,17,NE,2014,2014,3102,2,1,1699.798724,1699.798724,3505,NO,35.4,49.87,3,3.87,6106,113.581216,123.368895,133.082565,139.645544,I,Above,Flat,0,5701,,42.63189919,0,0,,,,1,1,,0.03,nav,1,2014,2,, 30710,NJBF000061561,7013-7015 VENTNOR GARDENS,Ventnor City,NJ,39.3378628,-74.49258884,RES1,3001,,NaN,NE,1964,1964,3102,2,1,1891.552382,1891.552382,3505,NO,30.76,43.92,3,7.33,6106,113.530958,123.328457,133.039729,139.602043,I,Above,Flat,0,5701,,37.34241254,0,0,,,,1,1,,0.03,nav,1,1964,2,, 30711,NJBF000061575,305 WALDON DRIVE,Ventnor City,NJ,39.33788364,-74.49435547,RES1,3001,,17,NE,1978,1978,3102,2,1,1416.433719,1416.433719,3505,NO,30.62,38.74,3,0.27,6106,113.491635,123.296821,133.00643,139.566842,I,Above,Flat,0,5701,,34.68237557,0,0,,,,1,1,,0.03,nav,1,1978,2,, 30712,NJBF000061728,107 N BUFFALO AVE,Ventnor City,NJ,39.33815467,-74.48780237,RES1,3001,,17,NE,1952,1952,3102,2,1,1399.903326,1399.903326,3505,NO,43.21,55.96,3,5.16,6106,113.632711,123.410409,133.126447,139.69027,I,Above,Hip,0,5701,,49.58365956,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 30713,NJBF000061546,,Ventnor City,NJ,39.3378353,-74.49546455,RES1,3001,,NaN,NE,1969,0,3102,2,1,2751.490918,2751.490918,3505,NO,28.1,41.4,3,3.68,6106,113.467767,123.277639,132.98622,139.545552,I,Above,Gable,0,5701,,34.74913934,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30714,NJBF000061539,6201 ATLANTIC AVE,Ventnor City,NJ,39.33782118,-74.47974972,GOV1,3001,,NaN,E,1928,1928,3401,3,1,12129.84942,12129.84942,3507,NO,58.54,64.87,1,1,6106,113.814811,123.557684,133.282353,139.842574,I,Above,Flat,0,NaN,,61.70318545,0,0,,,,1,1,,0.03,nav,1,1928,3,, 30715,NJBF000061626,125 N NEWARK AVE,Ventnor City,NJ,39.33797422,-74.48910978,RES1,3001,,17,NE,1915,1915,3102,2,1,1307.666396,1307.666396,3505,NO,27.45,33.78,3,5.03,6106,113.606297,123.38913,133.103823,139.668096,I,Above,Flat,0,5701,,30.61671666,0,0,,,,1,1,,0.03,nav,1,1915,2,, 30716,NJBF000061916,102 S DERBY AVE,Ventnor City,NJ,39.33846647,-74.47731295,RES1,3001,,18,NE,1930,1930,3102,2,1,3045.138672,3045.138672,3505,NO,21.96,28.1,3,0.6,6106,113.859736,123.594064,133.321619,139.873446,I,Above,Hip,0,5701,,25.03162525,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 30717,NJBF000061730,104 N TROY AVE,Ventnor City,NJ,39.3381635,-74.4868185,RES1,3001,,17,NE,1936,1936,3102,1,1,1225.148301,1225.148301,3505,NO,24.2,35.58,3,7.8,6106,113.654311,123.427838,133.144891,139.708794,I,Above,Hip,0,5701,,29.89069275,0,0,,,,1,1,,0.03,nav,1,1936,1,, 30718,NJBF000061622,7009-7011 VENTNOR GARDENS,Ventnor City,NJ,39.3379598,-74.49238974,RES1,3001,,45,NE,1975,1975,3102,2,2,2051.881858,2051.881858,3505,NO,33.95,47.45,3,5.87,6106,113.534027,123.330916,133.042387,139.604447,I,Above,Gable,0,5701,,40.69520685,0,0,,,,1,1,,0.03,nav,1,1975,2,, 30719,NJBF000061636,6900 MONMOUTH AVE,Ventnor City,NJ,39.33799487,-74.48965094,RES1,3001,,17,NE,2015,2015,3102,1,1,1311.004127,1311.004127,3505,NO,13.88,28.43,3,2.67,6106,113.594062,123.379265,133.093418,139.657318,I,Above,Gable,0,5701,,21.15431946,0,0,,,,1,1,,0.03,nav,1,2015,1,, 30720,NJBF000061668,316-318 WALDON DRIVE,Ventnor City,NJ,39.33803928,-74.49508633,RES1,3001,,NaN,NE,1978,1978,3102,2,1,2115.015351,2115.015351,3505,NO,31.88,44.95,3,-0.91,6106,113.473346,123.282098,132.991043,139.549963,I,Above,Gable,0,5701,,38.41587363,0,0,,,,1,1,,0.03,nav,1,1978,2,, 30721,NJBF000061600,110 S DERBY AVE,Ventnor City,NJ,39.337925,-74.477143,RES1,3001,,21,NE,2009,2009,3102,3,1,602.5937626,602.5937626,3505,NO,41.89,52.39,3,5.9,6106,113.870791,123.603082,133.330755,139.885079,I,Above,Hip,0,5701,,47.13761776,0,0,,,,1,1,,0.03,nav,1,2009,3,, 30722,NJBF000061765,109 N RICHARDS AVE,Ventnor City,NJ,39.33821243,-74.48713279,RES1,3001,,17,NE,1920,1920,3102,2,1,1093.818316,1093.818316,3505,NO,35.03,40.88,3,5.64,6106,113.646704,123.421692,133.138425,139.702061,I,Above,Hip,0,5701,,37.95485614,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30723,NJBF000061918,135 N WISSAHICKON AVE,Ventnor City,NJ,39.3384705,-74.488799,RES1,3001,,17,NE,1930,1930,3102,1,1,1705.042038,1705.042038,3505,NO,16.26,30.93,3,2.83,6106,113.606404,123.38915,133.104205,139.66616,I,Above,Hip,0,5701,,23.59725016,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 30724,NJBF000061146,110 S CAMBRIDGE AVE,Ventnor City,NJ,39.3371399,-74.47871409,RES1,3001,,20,NE,2008,2008,3102,3,1,1834.398577,1834.398577,3505,NO,50.78,63.96,3,4.22,6106,113.846866,123.58372,133.309457,139.871487,I,Above,Hip,0,5701,,57.37204671,0,1.2,,,,1,1,,0.03,nav,1,2008,3,, 30725,NJBF000060541,15 S TROY AVE,Ventnor City,NJ,39.33615835,-74.48469481,RES1,3001,,45,NE,1948,1948,3102,2,2,2036.54012,2036.54012,3505,NO,40.56,53.89,3,2.48,6106,113.728544,123.487968,133.206968,139.781211,I,Above,Gable,0,5701,,47.22847929,0,0,,,,1,1,,0.03,nav,1,1948,2,, 30726,NJBF000061123,7115 MONMOUTH AVE,Ventnor City,NJ,39.33710058,-74.49238634,RES1,3001,,45,NE,1902,1902,3102,1,2,3120.04504,3120.04504,3505,NO,23.24,35.74,3,5.71,6106,113.5459,123.340566,133.051953,139.617847,I,Above,Hip,0,5701,,29.49199196,0,0,,,,1,1,,0.03,nav,1,1902,1,, 30727,NJBF000065256,508 N CAMBRIDGE AVE,Ventnor City,NJ,39.34654113,-74.48601331,RES1,3001,,17,NE,1968,1968,3101,1,1,1448.246411,1448.246411,3505,NO,18.8,27.52,3,1.66,6106,113.560351,123.3496,133.067565,139.587119,I,Above,Gable,0,5701,,23.16050222,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 30728,NJBF000061166,107 S HARVARD AVE,Ventnor City,NJ,39.33717769,-74.47900839,RES1,3001,,17,NE,1922,1922,3102,2,1,1653.217396,1653.217396,3505,NO,38.57,50.47,3,2.13,6106,113.839878,123.578051,133.30346,139.865866,I,Above,Flat,0,5701,,44.51869037,0,0,,,,1,1,,0.03,nav,1,1922,2,, 30729,NJBF000061282,9-11 S NEWPORT AVE,Ventnor City,NJ,39.337371,-74.4825735,COM1,3001,,NaN,ME,1968,1968,3401,1,1,7961.903243,7961.903243,3507,NO,20.3,34.96,1,2.62,6106,113.758712,123.512292,133.23376,139.800189,I,Above,Flat,0,NaN,,27.63232541,0,0,,,,1,1,,0.03,nav,1,1968,1,, 30730,NJBF000061358,26 N RICHARDS AVE,Ventnor City,NJ,39.33749872,-74.4870306,RES1,3001,,17,NE,1925,1925,3102,2,1,1906.857367,1906.857367,3505,NO,40.14,49.77,3,1.28,6106,113.658677,123.431437,133.148192,139.715493,I,Above,Hip,0,5701,,44.95562879,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30731,NJBF000061296,24 N RICHARDS AVE,Ventnor City,NJ,39.33739327,-74.48695566,RES1,3001,,17,NE,1925,1925,3102,2,1,1049.643463,1049.643463,3505,NO,30.51,44.02,3,6.72,6106,113.66178,123.433951,133.150771,139.718625,I,Above,Gable,0,5701,,37.26560849,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30732,NJBF000060646,100 S STRATFORD AVE,Ventnor City,NJ,39.33633712,-74.48170666,RES1,3001,,19,NE,1990,1990,3102,3,1,1791.823266,1791.823266,3505,NO,39.02,47.07,3,4.97,6106,113.791919,123.539232,133.261484,139.83276,I,Above,Flat,0,5701,,43.04603516,0,1.1,,,,1,1,,0.03,nav,1,1990,3,, 30733,NJBF000061131,106 S HARVARD AVE,Ventnor City,NJ,39.33711854,-74.47943221,RES1,3001,,17,NE,1925,1925,3102,3,1,2562.758538,2562.758538,3505,NO,48.34,55.17,3,2.4,6106,113.831347,123.571138,133.296057,139.859587,I,Above,Flat,0,5701,,51.75136956,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 30734,NJBF000061324,,Ventnor City,NJ,39.33744358,-74.47842362,RES1,3001,,NaN,NE,1969,0,3102,2,1,2795.188682,2795.188682,3505,NO,24.86,34.54,3,-3,6106,113.849119,123.58553,133.311648,139.871422,I,Above,Flat,0,5701,,29.69574429,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30735,NJBF000060946,7300 CALVERT AVE,Ventnor City,NJ,39.33680425,-74.4950312,RES1,3001,,17,NE,1970,1970,3102,1,1,1566.844799,1566.844799,3505,NO,16.23,26.61,3,5,6106,113.491556,123.296868,133.005745,139.569877,I,Above,Hip,0,5701,,21.42106689,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 30736,NJBF000060971,6915 WINCHESTER AVE,Ventnor City,NJ,39.33683807,-74.48909283,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1346.825158,1346.825158,3505,NO,28.38,36.29,3,2.38,6106,113.62222,123.402082,133.116658,139.686436,I,Above,Flat,0,5701,,32.33238096,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30737,NJBF000061011,105 N WYOMING AVE,Ventnor City,NJ,39.33689951,-74.48999016,RES1,3001,,NaN,NE,1928,1930,3102,2,1,1598.4135,1598.4135,3505,NO,36.03,50.36,3,5.92,6106,113.60157,123.385429,133.09912,139.668007,I,Above,Hip,0,5701,,43.19356662,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30738,NJBF000060844,9 S NEW HAVEN AVE,Ventnor City,NJ,39.33663984,-74.48362335,RES1,3001,,17,NE,1916,1916,3102,2,1,2205.128385,2205.128385,3505,NO,23.31,37.74,3,2.12,6106,113.745569,123.50171,133.221931,139.793154,I,Above,Hip,0,5701,,30.52658231,0,1.1,,,,1,1,,0.03,nav,1,1916,2,, 30739,NJBF000060770,11 S NEW HAVEN AVE,Ventnor City,NJ,39.33651925,-74.48352755,RES1,3001,,17,NE,1902,1902,3102,3,1,2072.471612,2072.471612,3505,NO,33.84,41.73,3,-1.91,6106,113.749317,123.504748,133.225051,139.79688,I,Above,Hip,0,5701,,37.78308049,0,1.2,,,,1,1,,0.03,nav,1,1902,3,, 30740,NJBF000060930,6701 VENTNOR AVE,Ventnor City,NJ,39.33677316,-74.48592999,COM1,3001,,NaN,ME,1998,1998,3401,1,1,10328.59596,10328.59596,3507,NO,19.71,32.83,1,1.33,6106,113.692892,123.459124,133.176923,139.748056,I,Above,Flat,0,NaN,,26.27023224,0,0,,,,1,1,,0.03,nav,1,1998,1,, 30741,NJBF000060983,126 N LAFAYETTE AVE,Ventnor City,NJ,39.33685085,-74.49136887,RES1,3001,,17,NE,1948,1948,3102,2,1,1180.157104,1180.157104,3505,NO,28.66,36.48,3,-0.97,6106,113.571797,123.361443,133.073778,139.641754,I,Above,Gable,0,5701,,32.57203757,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 30742,NJBF000061031,215 N WASHINGTON AVE,Ventnor City,NJ,39.33693761,-74.49462658,RES1,3001,,17,NE,1950,1950,3102,1,1,1615.619531,1615.619531,3505,NO,14.48,23.98,3,-2.14,6106,113.498634,123.302549,133.011813,139.575899,I,Above,Hip,0,5701,,19.23296379,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30743,NJBF000065155,412 N DERBY AVE,Ventnor City,NJ,39.34627654,-74.48315757,RES1,3001,,17,NE,1962,1962,3102,2,1,1509.267551,1509.267551,3505,NO,36.58,47.67,3,-1.74,6106,113.626983,123.40352,133.124665,139.643333,I,Above,Gable,0,5701,,42.12151966,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 30744,NJBF000060863,3 N BUFFALO AVE,Ventnor City,NJ,39.33666414,-74.4866378,RES1,3001,,NaN,NE,1932,1980,3102,1,1,1233.417598,1233.417598,3505,NO,12.23,26.54,3,-0.39,6106,113.678771,123.447727,133.164775,139.736401,I,Above,Hip,0,5701,,19.38755749,0,0,,,,1,1,,0.03,nav,1,1932,1,, 30745,NJBF000061027,7121 MONMOUTH AVE,Ventnor City,NJ,39.3369308,-74.4926108,RES1,3001,,17,NE,1930,1930,3102,1,1,1474.497981,1474.497981,3505,NO,14.03,23.08,3,-0.9,6106,113.543268,123.338463,133.049615,139.616023,I,Above,Hip,0,5701,,18.55316797,0,0,,,,1,1,,0.03,nav,1,1930,1,, 30746,NJBF000060958,7041-7043 VENTNOR GD,Ventnor City,NJ,39.33681979,-74.49344292,RES1,3001,,45,NE,1970,1970,3102,2,2,2147.704194,2147.704194,3505,NO,41.14,52.79,3,5.76,6106,113.526418,123.324911,133.035263,139.601243,I,Above,Flat,0,5701,,46.96505145,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 30747,NJBF000061005,7125 MONMOUTH AVE,Ventnor City,NJ,39.33689403,-74.49274696,RES1,3001,,17,NE,1960,1960,3102,2,1,1588.683579,1588.683579,3505,NO,30.81,42.06,3,0.46,6106,113.540773,123.336458,133.047477,139.613902,I,Above,Hip,0,5701,,36.43765377,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30748,NJBF000060982,6600 VENTNOR AVE,Ventnor City,NJ,39.33685033,-74.48443243,COM1,3001,,NaN,ME,1940,1940,3401,2,1,11838.26976,11838.26976,3507,NO,32.17,43.15,1,2.42,6106,113.724867,123.484957,133.204346,139.77481,I,Above,Flat,0,NaN,,37.6608776,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30749,NJBF000060937,112 S HARVARD AVE,Ventnor City,NJ,39.3367873,-74.47915633,RES1,3001,,17,NE,1925,1925,3102,3,1,1409.549205,1409.549205,3505,NO,36.12,46.72,3,0.86,6106,113.841941,123.579744,133.304919,139.869759,I,Above,Hip,0,5701,,41.4227656,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 30750,NJBF000061040,104 N ROSBOROUGH AVE,Ventnor City,NJ,39.33695548,-74.48963262,RES1,3001,,17,NE,1920,1920,3102,2,1,1347.855025,1347.855025,3505,NO,35.4,41.94,3,1.59,6106,113.608696,123.391168,133.105221,139.674099,I,Above,Flat,0,5701,,38.6732316,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30751,NJBF000061076,7110 VENTNOR GARDENS,Ventnor City,NJ,39.33701924,-74.49299081,RES1,3001,,17,NE,1960,1960,3102,2,1,1323.182223,1323.182223,3505,NO,32.76,43.64,3,-2.26,6106,113.533663,123.330724,133.041526,139.607152,I,Above,Hip,0,5701,,38.19876409,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30752,NJBF000061041,121-123 N LAFAYETTE AVE,Ventnor City,NJ,39.33695902,-74.49089966,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1801.183907,1801.183907,3505,NO,39.27,45.86,3,3.26,6106,113.580669,123.368581,133.081386,139.649285,I,Above,Flat,0,5701,,42.56698698,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30753,NJBF000061112,126 N WYOMING AVE,Ventnor City,NJ,39.3370739,-74.49066905,RES1,3001,,17,NE,1910,1910,3102,2,1,1730.774839,1730.774839,3505,NO,37.54,49.25,3,1.34,6106,113.584191,123.371408,133.084453,139.652015,I,Above,Gable,0,5701,,43.39441777,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 30754,NJBF000061059,124 N WYOMING AVE,Ventnor City,NJ,39.33698616,-74.49057045,RES1,3001,,27,NE,1910,1910,3102,2,1,1991.497094,1991.497094,3505,NO,35.31,40.71,3,5.43,6106,113.587585,123.37415,133.087282,139.655327,I,Above,Hip,0,5701,,38.01112691,0,0,,,,1,1,,0.03,nav,1,1910,2,, 30755,NJBF000060968,7112 VENTNOR GARDENS,Ventnor City,NJ,39.33683338,-74.49290731,RES1,3001,,17,NE,1963,1963,3102,2,1,1254.573958,1254.573958,3505,NO,32.47,41.54,3,2.88,6106,113.538079,123.334294,133.045154,139.611672,I,Above,Hip,0,5701,,37.00303689,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 30756,NJBF000061068,108 S HARVARD AVE,Ventnor City,NJ,39.33700777,-74.47934688,RES1,3001,,17,NE,1925,1925,3102,2,1,1623.540771,1623.540771,3505,NO,29.29,34.38,3,-0.22,6106,113.834729,123.573885,133.298882,139.862867,I,Above,Hip,0,5701,,31.83502254,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30757,NJBF000061010,10 N RICHARDS AVE,Ventnor City,NJ,39.3368995,-74.4865565,RES1,3001,,17,NE,1925,1925,3102,2,1,1205.391933,1205.391933,3505,NO,39.56,48.14,3,2.93,6106,113.677325,123.446543,133.163709,139.734142,I,Above,Hip,0,5701,,43.85062315,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30758,NJBF000059358,108 S BUFFALO AVE,Ventnor City,NJ,39.33408188,-74.48501805,RES1,3001,,19,NE,2009,2009,3102,3,1,1618.260957,1618.260957,3505,NO,61.31,75.26,3,7.63,6106,113.750028,123.505347,133.223609,139.808698,I,Above,Flat,0,5701,,68.28877624,0,1.1,,,,1,1,,0.03,nav,1,2009,3,, 30759,NJBF000065240,326 N SOMERSET AVE,Ventnor City,NJ,39.34649001,-74.47972574,RES1,3001,,17,NE,1958,1958,3102,1,1,1753.566548,1753.566548,3505,NO,17.53,24.7,3,5.38,6106,113.700068,123.462568,133.187639,139.700825,I,Above,Flat,0,5701,,21.11420114,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 30760,NJBF000065061,14 N VASSAR SQUARE,Ventnor City,NJ,39.34603445,-74.46761223,RES3A,3001,,17,NE,1930,1930,3301,2,1,1308.286181,1308.286181,3505,NO,35.64,44.23,3,2.03,6106,113.972879,123.684707,133.424896,139.911672,I,Above,Hip,0,5701,,39.93458337,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30761,NJBF000065087,16 N VASSAR SQUARE,Ventnor City,NJ,39.34609975,-74.46766087,RES3A,3001,,17,NE,1932,1932,3301,2,1,1443.20325,1443.20325,3505,NO,42.17,53.06,3,5.86,6106,113.970946,123.683108,133.423233,139.909847,I,Above,Hip,0,5701,,47.61521398,0,0,,,,1,1,,0.03,nav,1,1932,2,, 30762,NJBF000065035,303 N SOMERSET AVE,Ventnor City,NJ,39.3459685,-74.4787935,RES1,3001,,17,NE,1930,1930,3102,2,1,1009.344294,1009.344294,3505,NO,33.44,44.22,3,-0.21,6106,113.727478,123.484992,133.211186,139.725659,I,Above,Hip,0,5701,,38.82954612,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 30763,NJBF000064964,,Ventnor City,NJ,39.34580835,-74.48315374,RES1,3001,,NaN,NE,1969,0,3102,2,1,1229.347662,1229.347662,3505,NO,34.95,46.58,3,3.56,6106,113.633204,123.408746,133.129926,139.651093,I,Above,Flat,0,5701,,40.76420269,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30764,NJBF000064959,324 N DUDLEY AVE,Ventnor City,NJ,39.3457785,-74.48089,RES1,3001,,17,NE,2016,2016,3102,2,1,1321.114322,1321.114322,3505,NO,34.24,42.79,3,3.39,6106,113.68363,123.449546,133.173303,139.691959,I,Above,Hip,0,5701,,38.51694889,0,0,,,,1,1,,0.03,nav,1,2016,2,, 30765,NJBF000064842,301 N OXFORD AVE,Ventnor City,NJ,39.34546168,-74.47923508,RES1,3001,,17,NE,1956,1956,3102,2,1,1694.4205,1694.4205,3505,NO,43.04,49.26,3,5.96,6106,113.724331,123.482634,133.208327,139.726223,I,Above,Flat,0,5701,,46.14752779,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 30766,NJBF000064825,,Ventnor City,NJ,39.3454295,-74.480623,RES1,3001,,NaN,NE,1969,0,3102,2,1,1399.81141,1399.81141,3505,NO,22.51,29.64,3,-0.12,6106,113.694096,123.458155,133.182235,139.702392,I,Above,Flat,0,5701,,26.07832666,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30767,NJBF000064432,4807 ATLANTIC AVE,Ventnor City,NJ,39.34448126,-74.46597899,RES3B,3001,,NaN,ME,1922,1922,3301,3,3,1529.50916,1529.50916,3504,NO,37.94,51.56,-4,0,6106,114.028971,123.730973,133.473271,139.961962,I,Above,Flat,0,NaN,,44.75047604,0,1.1,,,,1,1,,0.03,nav,1,1922,3,, 30768,NJBF000059704,12 S ROSBOROUGH AVE,Ventnor City,NJ,39.33471067,-74.48784507,RES1,3001,,17,NE,1910,1910,3102,2,1,980.3604921,980.3604921,3505,NO,38.54,50.21,3,4.29,6106,113.679052,123.448016,133.163501,139.74413,I,Above,Gable,0,5701,,44.37456147,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 30769,NJBF000064455,4805 ATLANTIC AVE,Ventnor City,NJ,39.34452554,-74.46587501,RES3B,3001,,47,ME,1930,1930,3301,3,3,1769.99831,1769.99831,3504,NO,37.83,48.28,-4,0,6106,114.030665,123.732349,133.474788,139.962919,I,Above,Flat,0,NaN,,43.05416494,0,0,,,,1,1,,0.03,nav,1,1930,3,, 30770,NJBF000064338,4 N HILLSIDE AVE,Ventnor City,NJ,39.3442468,-74.47079936,RES1,3001,,17,NE,1925,1925,3102,1,1,2115.197596,2115.197596,3507,NO,11.7,26.12,1,0.28,6106,113.926147,123.647054,133.383061,139.888088,I,Above,Hip,0,5701,,18.91072555,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 30771,NJBF000064246,,Ventnor City,NJ,39.34398717,-74.47899121,RES1,3001,,NaN,NE,1969,0,3102,2,1,949.7416978,949.7416978,3505,NO,29.33,39.23,3,1.16,6106,113.749088,123.503204,133.229203,139.754592,I,Above,Hip,0,5701,,34.27569114,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30772,NJBF000064234,315 N HARVARD AVE,Ventnor City,NJ,39.34395926,-74.48429875,RES1,3001,,17,NE,1960,1960,3102,2,1,1509.115999,1509.115999,3505,NO,32.55,47.13,3,6.27,6106,113.632207,123.40864,133.128627,139.660711,I,Above,Hip,0,5701,,39.83956873,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 30773,NJBF000064319,304 N BURGHLEY AVE,Ventnor City,NJ,39.34419259,-74.48233384,RES1,3001,,17,NE,1958,1958,3102,1,1,1744.508612,1744.508612,3505,NO,15.68,24.97,3,3.13,6106,113.672551,123.441168,133.163333,139.692293,I,Above,Hip,0,5701,,20.32261551,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30774,NJBF000064015,5303 VENTNOR AVE,Ventnor City,NJ,39.34333747,-74.47214443,RES1,3001,,17,NE,1960,1960,3102,2,1,938.0491475,938.0491475,3505,NO,28.54,34.54,3,1.22,6106,113.908521,123.632917,133.367184,139.880553,I,Above,Flat,0,5701,,31.53661777,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 30775,NJBF000063901,124 N DUDLEY AVE,Ventnor City,NJ,39.34303284,-74.47861919,COM1,3001,,17,ME,1940,1940,3401,2,1,965.6123503,965.6123503,3507,NO,23.12,29.88,1,-0.4,6106,113.769895,123.52035,133.24677,139.776638,I,Above,Hip,0,NaN,,26.50107086,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30776,NJBF000063795,,Ventnor City,NJ,39.3427225,-74.476678,RES1,3001,,NaN,NE,1969,0,3102,2,1,1111.054353,1111.054353,3505,NO,29.29,42.18,3,5.31,6106,113.816793,123.558481,133.287178,139.814917,I,Above,Flat,0,5701,,35.73425309,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30777,NJBF000063769,600 KINGSLEY DR,Ventnor City,NJ,39.3426549,-74.49365651,RES1,3001,,17,NE,1979,1979,3102,2,1,2278.032038,2278.032038,3505,NO,29,43.08,3,4.9,6106,113.442393,123.256181,132.966571,139.505754,I,Above,Gable,0,5701,,36.04008499,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 30778,NJBF000063643,101 N DORSET AVE,Ventnor City,NJ,39.34228444,-74.47842492,COM1,3001,738,NaN,ME,1925,1925,3401,2,1,2504.120764,2504.120764,3507,NO,38.63,50.71,1,0.78,6106,113.784104,123.532065,133.258683,139.792231,I,Above,Hip,0,NaN,,44.66872083,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30779,NJBF000063657,5503 VENTNOR AVE,Ventnor City,NJ,39.34232246,-74.47420667,RES1,3001,,17,NE,1918,1918,3102,2,1,1970.639647,1970.639647,3505,NO,33.4,40.12,3,-2.43,6106,113.87653,123.607111,133.338768,139.862809,I,Above,Gable,0,5701,,36.76228203,0,1.1,,,,1,1,,0.03,nav,1,1918,2,, 30780,NJBF000064750,218 N SUFFOLK AVE,Ventnor City,NJ,39.345224,-74.47777314,RES1,3001,,17,NE,1929,1929,3102,1,1,1047.51342,1047.51342,3505,NO,20.42,32.41,3,3.41,6106,113.759716,123.511411,133.238837,139.755469,I,Above,Gable,0,5701,,26.41363628,0,0,,,,1,1,,0.03,nav,1,1929,1,, 30781,NJBF000063725,23 S LITTLE ROCK AVE,Ventnor City,NJ,39.34251989,-74.47088013,RES1,3001,,33,NE,1925,1925,3102,3,3,2195.837202,2195.837202,3505,NO,50.6,62.17,3,7.34,6106,113.9471,123.664524,133.400328,139.914073,I,Above,Flat,0,5701,,56.38630438,0,0,,,,1,1,,0.03,nav,1,1925,3,, 30782,NJBF000063748,21 S LITTLE ROCK AVE,Ventnor City,NJ,39.34259572,-74.47093673,RES1,3001,,35,NE,1925,1925,3102,3,1,1956.157746,1956.157746,3505,NO,53.69,65.85,3,-2.04,6106,113.944842,123.66267,133.398407,139.911952,I,Above,Flat,0,5701,,59.76942053,0,0,,,,1,1,,0.03,nav,1,1925,3,, 30783,NJBF000063391,5407 ATLANTIC AVE,Ventnor City,NJ,39.341587,-74.472705,RES1,3001,,18,NE,1928,1928,3102,2,2,3287.171599,3287.171599,3505,NO,30.36,40.9,3,4,6110,113.919331,123.642078,133.375522,139.89924,I,Above,Flat,0,5701,,35.63476346,0,1.2,,,,1,1,,0.35,nav,1,1928,2,, 30784,NJBF000063292,6301 MONMOUTH AVE,Ventnor City,NJ,39.341346,-74.4834645,RES1,3001,,17,NE,1920,1920,3102,2,1,940.712668,940.712668,3505,NO,44.88,58.55,3,6.74,6106,113.685414,123.452388,133.173261,139.718739,I,Above,Flat,0,5701,,51.71129836,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30785,NJBF000067083,5900 BURK AVE,Ventnor City,NJ,39.35202726,-74.48695992,RES1,3001,,17,NE,1976,1976,3101,1,1,1874.957638,1874.957638,3505,NO,15.69,26.82,3,2.02,6106,113.468737,123.272533,132.988573,139.480112,I,Above,Gable,0,5701,,21.25186871,0,1.1,,,,1,1,,0.03,nav,1,1976,1,, 30786,NJBF000063122,6319 MONMOUTH AVE,Ventnor City,NJ,39.34092853,-74.48429054,RES1,3001,,17,NE,1932,1932,3102,2,1,904.6072779,904.6072779,3505,NO,36.05,44.85,3,4.67,6106,113.672738,123.442239,133.162191,139.710561,I,Above,Hip,0,5701,,40.45253107,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 30787,NJBF000063102,128 N SACRAMENTO AVE,Ventnor City,NJ,39.34089784,-74.48320289,RES1,3001,,17,NE,1925,1925,3102,2,2,1649.471147,1649.471147,3505,NO,40.33,52.2,3,3.11,6106,113.697177,123.461999,133.183136,139.730817,I,Above,Hip,0,5701,,46.26713635,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30788,NJBF000063047,135 N PORTLAND AVE,Ventnor City,NJ,39.3407819,-74.48409145,RES1,3001,,28,NE,1940,1940,3102,2,1,897.2034742,897.2034742,3505,NO,39.81,52.67,3,2.78,6106,113.679127,123.447434,133.167595,139.71662,I,Above,Flat,0,5701,,46.23748644,0,0,,,,1,1,,0.03,nav,1,1940,2,, 30789,NJBF000062914,6404 MONMOUTH AVE,Ventnor City,NJ,39.34047961,-74.4845825,RES1,3001,,17,NE,1900,1900,3102,2,2,1359.684401,1359.684401,3505,NO,39.91,45.68,3,2.81,6106,113.67232,123.441998,133.161609,139.712586,I,Above,Gable,0,5701,,42.79261135,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 30790,NJBF000062846,6404 MONMOUTH AVE,Ventnor City,NJ,39.3403425,-74.4844875,RES1,3001,,17,NE,1900,1900,3102,2,2,793.1163255,793.1163255,3505,NO,38.06,51.35,3,1.38,6106,113.676274,123.44522,133.164925,139.716589,I,Above,Flat,0,5701,,44.70518298,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 30791,NJBF000062863,316-318 HAMPSHIRE DR,Ventnor City,NJ,39.34037938,-74.49345122,RES1,3001,,45,NE,1972,1972,3102,2,2,1725.954578,1725.954578,3505,NO,23.58,34.78,3,2.21,6106,113.477616,123.285113,132.995711,139.545783,I,Above,Flat,0,5701,,29.18077472,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30792,NJBF000062738,7005 BALFOUR AVE,Ventnor City,NJ,39.34011693,-74.49266983,RES1,3001,,35,NE,1972,1974,3102,2,1,4587.946126,4587.946126,3505,NO,39.02,53.54,3,2.05,6106,113.49845,123.301924,133.013263,139.565144,I,Above,Hip,0,5701,,46.28031033,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30793,NJBF000062755,224 N WISSAHICKON AVE,Ventnor City,NJ,39.34015646,-74.49122138,RES1,3001,,16,NE,1950,1950,3102,1,1,1088.168987,1088.168987,3505,NO,17.49,26.94,3,6.14,6106,113.529979,123.327284,133.040036,139.592639,I,Above,Flat,0,5701,,22.21844172,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 30794,NJBF000062681,308-310 HAMPSHIRE DR,Ventnor City,NJ,39.33999936,-74.49352813,RES1,3001,,45,NE,1972,1972,3102,2,2,1872.072758,1872.072758,3505,NO,34.8,40.34,3,7.28,6106,113.481064,123.287968,132.998482,139.550252,I,Above,Hip,0,5701,,37.56926501,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30795,NJBF000062648,226 N NEWARK AVE,Ventnor City,NJ,39.33992019,-74.49190192,RES1,3001,,17,NE,1953,1953,3102,1,1,1909.56283,1909.56283,3505,NO,17.67,26.1,3,4.05,6106,113.518112,123.317783,133.029858,139.583193,I,Above,Gable,0,5701,,21.8844888,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 30796,NJBF000062664,313-315 N LAFAYETTE AVE,Ventnor City,NJ,39.33994583,-74.49397398,RES1,3001,,45,NE,1972,1972,3102,2,2,1999.907221,1999.907221,3505,NO,32.01,46.68,3,2.67,6106,113.471913,123.280623,132.990713,139.542347,I,Above,Gable,0,5701,,39.34203861,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30797,NJBF000062613,108 S SOMERSET AVE,Ventnor City,NJ,39.33981178,-74.47357001,RES1,3001,,17,NE,1913,1913,3102,3,1,1818.45884,1818.45884,3505,NO,63.34,70.89,3,8.12,6106,113.923983,123.646125,133.378316,139.91342,I,Above,Flat,0,5701,,67.11664628,0,0,,,,1,1,,0.03,nav,1,1913,3,, 30798,NJBF000062625,5 N CAMBRIDGE AVE,Ventnor City,NJ,39.3398546,-74.4803776,RES1,3001,,19,NE,1989,1989,3102,1,1,1646.455882,1646.455882,3505,NO,13.63,25.32,3,0.44,6106,113.773504,123.523966,133.24817,139.798201,I,Above,Hip,0,5701,,19.47834504,0,1.2,,,,1,1,,0.03,nav,1,1989,1,, 30799,NJBF000062398,209 N WISSAHICKON AVE,Ventnor City,NJ,39.3393683,-74.48989181,RES1,3001,,17,NE,1958,1958,3102,1,1,1089.730727,1089.730727,3505,NO,19.07,28.64,3,5,6106,113.570046,123.359704,133.073732,139.630819,I,Above,Gable,0,5701,,23.85082081,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30800,NJBF000062424,110 N NEWPORT AVE,Ventnor City,NJ,39.3394295,-74.4848855,RES1,3001,,17,NE,1918,1918,3102,2,1,972.7754695,972.7754695,3505,NO,26.25,34.98,3,2.53,6106,113.679785,123.448224,133.167434,139.724222,I,Above,Hip,0,5701,,30.61465031,0,0,,,,1,1,,0.03,nav,1,1918,2,, 30801,NJBF000062350,129 N AVOLYN AVE,Ventnor City,NJ,39.339269,-74.4865455,RES1,3001,,14,NE,1930,1930,3102,1,1,1043.013743,1043.013743,3505,NO,13.22,23.62,3,-0.47,6106,113.645312,123.420415,133.137856,139.695994,I,Above,Gable,0,5701,,18.41808227,0,0,,,,1,1,,0.03,nav,1,1930,1,, 30802,NJBF000064806,4915 VENTNOR AVE,Ventnor City,NJ,39.34537655,-74.46800501,RES3A,3001,,NaN,NE,1925,1925,3301,2,4,1941.617237,1941.617237,3505,NO,43.21,49.01,3,8.08,6106,113.972793,123.684822,133.424479,139.915607,I,Above,Hip,0,5701,,46.11077504,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30803,NJBF000062115,119 N TROY AVE,Ventnor City,NJ,39.33881881,-74.48689857,RES1,3001,,17,NE,1912,1912,3102,2,1,1259.22777,1259.22777,3505,NO,37.41,51.98,3,-1.07,6106,113.643619,123.419118,133.136153,139.696663,I,Above,Hip,0,5701,,44.69625276,0,1.2,,,,1,1,,0.03,nav,1,1912,2,, 30804,NJBF000061466,,Ventnor City,NJ,39.3376899,-74.47794868,RES1,3001,,NaN,NE,2012,0,3102,2,1,2773.536234,2773.536234,3505,NO,33,40.85,3,1.95,6106,113.856237,123.591287,133.317991,139.875414,I,Above,Hip,0,5701,,36.9212705,0,0,,,,1,1,,0.03,nav,1,2012,2,, 30805,NJBF000062106,6003 ATLANTIC AVE,Ventnor City,NJ,39.33880361,-74.47777419,RES1,3001,,18,NE,1958,1958,3102,2,1,2712.773335,2712.773335,3505,NO,36.55,42.12,3,3.29,6110,113.845027,123.582092,133.309158,139.860189,I,Above,Hip,0,5701,,39.3312347,0,1.2,,,,1,1,,0.35,nav,1,1958,2,, 30806,NJBF000061910,16 N NEWPORT AVE,Ventnor City,NJ,39.33845891,-74.48413682,COM1,3001,,17,ME,1928,1928,3401,2,1,1391.705022,1391.705022,3507,NO,31.32,44.84,1,2.44,6106,113.709461,123.472348,133.192264,139.753897,I,Above,Hip,0,NaN,,38.08377328,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30807,NJBF000062066,208 N NEWARK AVE,Ventnor City,NJ,39.33874035,-74.49076477,RES1,3001,,17,NE,1946,1946,3102,1,1,1240.843855,1240.843855,3505,NO,25.56,40.36,3,6.55,6106,113.559289,123.351144,133.064261,139.623936,I,Above,Gable,0,5701,,32.96142176,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 30808,NJBF000061986,6101 ATLANTIC AVE,Ventnor City,NJ,39.33859457,-74.47862466,RES1,3001,,18,NE,1910,1910,3102,3,1,1091.384085,1091.384085,3505,NO,47.25,54.17,3,6.16,6106,113.829109,123.569203,133.29526,139.849171,I,Above,Hip,0,5701,,50.71180944,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 30809,NJBF000061895,6101 ATLANTIC AVE,Ventnor City,NJ,39.33843001,-74.47852438,RES1,3001,,18,NE,1910,1910,3102,3,1,3306.622536,3306.622536,3505,NO,38.18,50.83,3,5.87,6110,113.833563,123.572832,133.298982,139.853592,I,Above,Hip,0,5701,,44.50394008,0,1.1,,,,1,1,,0.35,nav,1,1910,3,, 30810,NJBF000062025,5910 ATLANTIC AVE,Ventnor City,NJ,39.33866767,-74.47686105,RES1,3001,,18,NE,1912,1912,3102,3,1,1575.567343,1575.567343,3505,NO,47.23,61.83,3,0.18,6106,113.866959,123.599907,133.328018,139.877718,I,Above,Flat,0,5701,,54.52947305,0,1.1,,,,1,1,,0.03,nav,1,1912,3,, 30811,NJBF000067697,801 N VICTORIA AVE,Ventnor City,NJ,39.35420208,-74.48260814,RES3A,3001,,28,NE,1999,1999,3301,2,1,2607.471953,2607.471953,3505,NO,30.64,42.39,3,1.12,6110,113.53782,123.326697,133.047183,139.523705,I,Above,Flat,0,5701,,36.51575111,0,0,,,,1,1,,0.35,nav,1,1999,2,, 30812,NJBF000067655,801 N VICTORIA AVE,Ventnor City,NJ,39.35408467,-74.4828176,RES3A,3001,,28,NE,1999,1999,3301,2,1,2508.187657,2508.187657,3505,NO,29.44,39.4,3,-0.08,6110,113.534632,123.324209,133.044478,139.521836,I,Above,Hip,0,5701,,34.41928983,0,0,,,,1,1,,0.35,nav,1,1999,2,, 30813,NJBF000067583,801 N VICTORIA AVE,Ventnor City,NJ,39.353889,-74.482676,RES3A,3001,,28,NE,1999,1999,3301,2,1,2602.98909,2602.98909,3505,NO,22.91,36.79,3,-2.68,6110,113.540233,123.328887,133.049371,139.527584,I,Above,Flat,0,5701,,29.85019086,0,0,,,,1,1,,0.35,nav,1,1999,2,, 30814,NJBF000067514,801 N VICTORIA AVE,Ventnor City,NJ,39.35370009,-74.48250384,RES3A,3001,,28,NE,1999,1999,3301,2,1,2560.048203,2560.048203,3505,NO,35.11,40.19,3,8.26,6110,113.546413,123.334026,133.054759,139.533754,I,Above,Hip,0,5701,,37.64673589,0,0,,,,1,1,,0.35,nav,1,1999,2,, 30815,NJBF000067391,801 N VICTORIA AVE,Ventnor City,NJ,39.35331666,-74.48219848,RES3A,3001,,28,NE,1999,1999,3301,2,1,2625.52434,2625.52434,3505,NO,28.9,36.16,3,-0.64,6106,113.558,123.34368,133.064862,139.545486,I,Above,Hip,0,5701,,32.53188647,0,0,,,,1,1,,0.03,nav,1,1999,2,, 30816,NJBF000067368,801 N VICTORIA AVE,Ventnor City,NJ,39.35323716,-74.48185099,RES3A,3001,,28,NE,1999,1999,3301,2,1,2662.241964,2662.241964,3505,NO,30.73,41.04,3,2.99,6106,113.56669,123.350767,133.072378,139.553003,I,Above,Flat,0,5701,,35.88801328,0,0,,,,1,1,,0.03,nav,1,1999,2,, 30817,NJBF000067424,801 N VICTORIA AVE,Ventnor City,NJ,39.3534355,-74.4819935,RES3A,3001,,28,NE,1999,1999,3301,2,1,2563.363528,2563.363528,3505,NO,40.84,48.41,3,6.27,6106,113.561022,123.346038,133.067434,139.5472,I,Above,Flat,0,5701,,44.62265126,0,0,,,,1,1,,0.03,nav,1,1999,2,, 30818,NJBF000061720,7012-7014 CALVERT,Ventnor City,NJ,39.33814535,-74.49261288,RES1,3001,,45,NE,1960,1960,3102,2,2,2038.676656,2038.676656,3505,NO,42.85,50.06,3,5.07,6106,113.526567,123.324887,133.036162,139.597185,I,Above,Hip,0,5701,,46.45448405,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30819,NJBF000061608,102 N RICHARDS AVE,Ventnor City,NJ,39.33793786,-74.48738776,RES1,3001,,17,NE,1948,1948,3102,1,1,1819.650961,1819.650961,3505,NO,18.51,23.91,3,-0.62,6106,113.644808,123.420196,133.136635,139.70164,I,Above,Hip,0,5701,,21.20664362,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30820,NJBF000061770,7008-7010 CALVERT AVE,Ventnor City,NJ,39.33822758,-74.49245317,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1634.276136,1634.276136,3505,NO,31.07,43.4,3,-0.29,6106,113.528968,123.326808,133.038243,139.599034,I,Above,Hip,0,5701,,37.23414547,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30821,NJBF000061577,300 & 302 WINDSOR DR,Ventnor City,NJ,39.337894,-74.4938845,RES1,3001,,45,NE,1980,1980,3102,2,2,2238.320697,2238.320697,3505,NO,34.86,43.87,3,8.05,6106,113.50191,123.305083,133.015132,139.576013,I,Above,Flat,0,5701,,39.36170476,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30822,NJBF000062487,112 S SOMERSET AVE,Ventnor City,NJ,39.33956882,-74.47336974,RES1,3001,,17,NE,1920,1920,3102,3,1,3149.283848,3149.283848,3505,NO,41.07,48.53,3,4.91,6106,113.931637,123.65238,133.384783,139.920524,I,Above,Hip,0,5701,,44.80191402,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 30823,NJBF000061760,6905 MONMOUTH AVE,Ventnor City,NJ,39.33820688,-74.49003652,RES1,3001,,17,NE,1925,1925,3102,2,1,1191.258068,1191.258068,3505,NO,38.4,45.94,3,4.76,6106,113.582642,123.370034,133.083824,139.646486,I,Above,Flat,0,5701,,42.17328174,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30824,NJBF000060562,108 N MELBOURNE AVE,Ventnor City,NJ,39.33619093,-74.49168607,RES1,3001,,18,NE,2016,2016,3102,2,1,935.2604448,935.2604448,3505,NO,29.33,41.06,3,7.26,6106,113.573888,123.363172,133.075114,139.645694,I,Above,Hip,0,5701,,35.19606927,0,1.2,,,,1,1,,0.03,nav,1,2016,2,, 30825,NJBF000061130,16 N RICHARDS AVE,Ventnor City,NJ,39.33711406,-74.48673098,RES1,3001,,17,NE,1925,1925,3102,2,1,1016.935885,1016.935885,3505,NO,32.1,37.88,3,3.03,6106,113.670558,123.441063,133.158078,139.727391,I,Above,Hip,0,5701,,34.98681601,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30826,NJBF000061082,7037-7039 VENTNOR GARDENS,Ventnor City,NJ,39.33702841,-74.4935056,RES1,3001,,NaN,NE,1970,1970,3102,2,1,1553.252612,1553.252612,3505,NO,37.66,44.1,3,2.36,6106,113.522162,123.321468,133.031786,139.596809,I,Above,Gable,0,5701,,40.88008036,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30827,NJBF000061024,6905 WINCHESTER AVE,Ventnor City,NJ,39.33692967,-74.48902682,RES1,3001,,45,NE,1958,1958,3102,2,2,1618.810323,1618.810323,3505,NO,29.27,37.42,3,3.04,6106,113.622415,123.402232,133.116886,139.686262,I,Above,Gable,0,5701,,33.34768175,0,0,,,,1,1,,0.03,nav,1,1958,2,, 30828,NJBF000061505,7028-7030 CALVERT AVE,Ventnor City,NJ,39.33775557,-74.49330531,RES1,3001,,NaN,NE,1990,1990,3102,2,1,1807.033278,1807.033278,3505,NO,26.31,35.31,3,2.4,6106,113.516601,123.316917,133.027499,139.589587,I,Above,Gable,0,5701,,30.80754009,0,0,,,,1,1,,0.03,nav,1,1990,2,, 30829,NJBF000060920,117 N LAFAYETTE AVE,Ventnor City,NJ,39.33675572,-74.49078425,RES1,3001,,17,NE,1940,1940,3102,1,1,1039.250653,1039.250653,3505,NO,20.53,35.48,3,4.18,6106,113.58602,123.372908,133.085801,139.654722,I,Above,Hip,0,5701,,28.00858177,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 30830,NJBF000060881,16 N WISSAHICKON AVE,Ventnor City,NJ,39.33669318,-74.48779033,RES1,3001,,17,NE,1955,1955,3102,2,1,1018.848077,1018.848077,3505,NO,31.22,37.22,3,7.06,6106,113.652962,123.426892,133.142762,139.713904,I,Above,Gable,0,5701,,34.22343874,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 30831,NJBF000060763,6 N BUFFALO AVE,Ventnor City,NJ,39.3365115,-74.486957,RES1,3001,,17,NE,1940,1940,3102,2,1,1198.083492,1198.083492,3505,NO,26.23,39.98,3,-0.85,6106,113.673819,123.443739,133.160436,139.732761,I,Above,Hip,0,5701,,33.1067616,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30832,NJBF000060903,115 N MELBOURNE AVE,Ventnor City,NJ,39.33672263,-74.49161739,RES1,3001,,17,NE,1956,1956,3102,2,1,1648.231346,1648.231346,3505,NO,33.27,38.47,3,6.8,6106,113.568082,123.35846,133.07054,139.638854,I,Above,Flat,0,5701,,35.87135167,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 30833,NJBF000060855,113 N MELBOURNE AVE,Ventnor City,NJ,39.33664986,-74.49153523,RES1,3001,,17,NE,1928,1928,3102,2,1,1107.701418,1107.701418,3505,NO,41.29,55.51,3,6.38,6106,113.570897,123.360733,133.072883,139.641599,I,Above,Flat,0,5701,,48.39507281,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 30834,NJBF000060862,6925 WINCHESTER AVE,Ventnor City,NJ,39.33666327,-74.48952578,RES1,3001,,NaN,NE,1948,1948,3102,2,1,1181.605568,1181.605568,3505,NO,21.42,33.15,3,-1.98,6106,113.615067,123.396327,133.110447,139.680773,I,Above,Flat,0,5701,,27.28867661,0,0,,,,1,1,,0.03,nav,1,1948,2,, 30835,NJBF000062707,120 N PORTLAND AVE,Ventnor City,NJ,39.34005554,-74.48397418,RES1,3001,,17,NE,1924,1924,3102,2,1,1218.105249,1218.105249,3505,NO,32.36,45.41,3,7.94,6106,113.691471,123.457557,133.177797,139.730669,I,Above,Flat,0,5701,,38.88462855,0,1.2,,,,1,1,,0.03,nav,1,1924,2,, 30836,NJBF000060793,116 N MELBOURNE AVE,Ventnor City,NJ,39.3365528,-74.49200077,RES1,3001,,17,NE,1930,1930,3102,2,1,1273.996564,1273.996564,3505,NO,31.08,44.34,3,0.88,6106,113.561943,123.353529,133.065218,139.6339,I,Above,Flat,0,5701,,37.7131256,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30837,NJBF000060270,6 N ROSBOROUGH AVE,Ventnor City,NJ,39.33569183,-74.48865708,RES1,3001,,17,NE,1923,1923,3102,2,1,2176.333187,2176.333187,3505,NO,39.11,53.04,3,6.53,6106,113.647602,123.422619,133.137461,139.712943,I,Above,Hip,0,5701,,46.07687005,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 30838,NJBF000060136,6701 ATLANTIC AVE,Ventnor City,NJ,39.33546337,-74.48459545,RES1,3001,,43,NE,1920,1920,3102,2,2,2135.555,2135.555,3505,NO,32.39,46.57,3,-1.25,6106,113.740291,123.497486,133.216469,139.794386,I,Above,Flat,0,5701,,39.47932732,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30839,NJBF000060113,,Ventnor City,NJ,39.33543203,-74.48122283,RES1,3001,,NaN,NE,1969,0,3102,2,1,1152.365592,1152.365592,3505,NO,35.16,47.17,3,0.33,6106,113.814968,123.557918,133.280533,139.856277,I,Above,Flat,0,5701,,41.1604081,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30840,NJBF000060150,25 S RICHARDS AVE,Ventnor City,NJ,39.3354885,-74.4849575,RES1,3001,,43,NE,1920,1920,3102,2,2,1608.905784,1608.905784,3505,NO,35.89,49.54,3,5.83,6106,113.731972,123.49076,133.209366,139.787188,I,Above,Hip,0,5701,,42.71450739,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30841,NJBF000060141,20 N MELBOURNE AVE,Ventnor City,NJ,39.33547186,-74.49113724,RES1,3001,,17,NE,1933,1933,3102,2,1,3178.760927,3178.760927,3505,NO,22.93,36.64,3,-0.48,6106,113.595934,123.380965,133.093329,139.667582,I,Above,Hip,0,5701,,29.78455628,0,1.1,,,,1,1,,0.03,nav,1,1933,2,, 30842,NJBF000060810,100 S PORTLAND AVE,Ventnor City,NJ,39.33657451,-74.48119982,RES1,3001,,16,NE,1945,1945,3102,2,1,1607.234864,1607.234864,3505,NO,33.1,47.22,3,4.81,6106,113.799833,123.545631,133.268481,139.837813,I,Above,Hip,0,5701,,40.16205302,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 30843,NJBF000064837,415 N HARVARD AVE,Ventnor City,NJ,39.34545659,-74.4854949,RES1,3001,,18,NE,1968,1968,3102,1,1,1259.122305,1259.122305,3505,NO,18.02,29.9,3,2.05,6106,113.586014,123.370779,133.089393,139.61435,I,Above,Gable,0,5701,,23.95771483,0,0,,,,1,1,,0.03,nav,1,1968,1,, 30844,NJBF000065429,419 N DORSET AVE,Ventnor City,NJ,39.34706284,-74.48228929,RES1,3001,,17,NE,1956,1956,3102,2,1,947.374608,947.374608,3505,NO,28.68,37.85,3,1.4,6106,113.635962,123.410429,133.132496,139.646043,I,Above,Gable,0,5701,,33.26531314,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 30845,NJBF000058119,7308 ATLANTIC AVE,Ventnor City,NJ,39.33174489,-74.49116184,RES1,3001,,18,NE,1920,1920,3102,2,1,1578.137856,1578.137856,3505,NO,33.01,44.52,3,2.34,6110,113.64735,123.422268,133.133831,139.722238,I,Above,Hip,0,5701,,38.76502725,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 30846,NJBF000060750,109 N LAFAYETTE AVE,Ventnor City,NJ,39.33649185,-74.49056017,RES1,3001,,17,NE,1932,1932,3102,1,1,1717.711788,1717.711788,3505,NO,8.91,22.96,3,-1.84,6106,113.594596,123.379838,133.092915,139.663225,I,Above,Hip,0,5701,,15.93622678,0,0,,,,1,1,,0.03,nav,1,1932,1,, 30847,NJBF000061613,112 N BUFFALO AVE,Ventnor City,NJ,39.33794233,-74.48809961,RES1,3001,,17,NE,1922,1922,3102,2,1,969.8566097,969.8566097,3505,NO,38.88,51.81,3,4.14,6106,113.629035,123.40747,133.123181,139.687999,I,Above,Gable,0,5701,,45.34640067,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 30848,NJBF000064277,19 S OAKLAND AVE,Ventnor City,NJ,39.34407953,-74.468311,RES3A,3001,,17,NE,1900,1900,3301,3,1,1694.857388,1694.857388,3504,NO,33.33,41.38,-4,0,6106,113.983021,123.693502,133.432704,139.930959,I,Above,Gable,0,5701,,37.35191597,0,0,,,,1,1,,0.03,nav,1,1900,3,, 30849,NJBF000064577,405 N HARVARD AVE,Ventnor City,NJ,39.34483087,-74.48500167,RES1,3001,,17,NE,1962,1962,3102,1,1,1263.759144,1263.759144,3505,NO,22.29,27.7,3,4.93,6106,113.605154,123.386477,133.105664,139.633614,I,Above,Gable,0,5701,,24.99683127,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30850,NJBF000059948,7001 VENTNOR AVE,Ventnor City,NJ,39.33513047,-74.4890398,RES1,3001,,17,NE,1930,1930,3102,2,1,1885.699273,1885.699273,3505,NO,32.51,47.45,3,-0.35,6106,113.646915,123.422079,133.136443,139.714211,I,Above,Hip,0,5701,,39.97578958,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30851,NJBF000059332,5 S MELBOURNE AVE,Ventnor City,NJ,39.33402813,-74.48945999,RES1,3001,,17,NE,1920,1920,3102,2,1,976.7540397,976.7540397,3505,NO,40.06,52.64,3,4.65,6106,113.652932,123.426926,133.140664,139.722836,I,Above,Gable,0,5701,,46.34948063,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30852,NJBF000065719,603 N CORNWALL AVE,Ventnor City,NJ,39.34791115,-74.48570095,RES1,3001,,17,NE,1968,1968,3101,2,1,1639.466972,1639.466972,3505,NO,23.21,30.16,3,-0.59,6106,113.549434,123.340122,133.058279,139.570429,I,Above,Gable,0,5701,,26.68271734,0,0,,,,1,1,,0.03,nav,1,1968,2,, 30853,NJBF000065652,415 N SUFFOLK AVE,Ventnor City,NJ,39.34771528,-74.47932822,RES1,3001,,17,NE,1929,1929,3102,2,1,844.8966871,844.8966871,3505,NO,43.65,58.29,3,5,6106,113.692958,123.456268,133.18172,139.687791,I,Above,Hip,0,5701,,50.971256,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 30854,NJBF000063438,635 KINGSLEY DRIVE,Ventnor City,NJ,39.34172878,-74.49518844,RES1,3001,,17,NE,1994,1994,3102,2,1,1946.234836,1946.234836,3505,NO,29.67,43.96,3,-2.77,6106,113.420907,123.239206,132.94817,139.490581,I,Above,Flat,0,5701,,36.81460839,0,0,,,,1,1,,0.03,nav,1,1994,2,, 30855,NJBF000064538,202 N SUFFOLK AVE,Ventnor City,NJ,39.34473748,-74.47743967,RES1,3001,,17,NE,1930,1930,3102,1,1,1432.671461,1432.671461,3505,NO,14.51,26.84,3,-1.49,6106,113.773445,123.522716,133.250545,139.769135,I,Above,Gable,0,5701,,20.6750058,0,0,,,,1,1,,0.03,nav,1,1930,1,, 30856,NJBF000064663,24 N HILLSIDE AVE,Ventnor City,NJ,39.3450225,-74.471394,RES1,3001,,17,NE,1950,1950,3102,1,1,1554.412502,1554.412502,3507,NO,11.49,19.01,1,0.65,6106,113.902913,123.627904,133.363177,139.866044,I,Above,Hip,0,5701,,15.25045375,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 30857,NJBF000064629,22 N HILLSIDE AVE,Ventnor City,NJ,39.34494407,-74.47133676,RES1,3001,,17,NE,1940,1940,3102,1,1,1547.201429,1547.201429,3507,NO,19.08,29.51,1,1.94,6106,113.905187,123.62978,133.365123,139.868221,I,Above,Hip,0,5701,,24.294219,0,0,,,,1,1,,0.03,nav,1,1940,1,, 30858,NJBF000064134,12 S NASHVILLE AVE,Ventnor City,NJ,39.34366599,-74.46939243,RES1,3001,,17,NE,1925,1925,3102,2,1,1334.128155,1334.128155,3505,NO,18.61,30.54,3,-2.54,6106,113.964704,123.678642,133.416421,139.920057,I,Above,Hip,0,5701,,24.57444654,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30859,NJBF000064099,5708-5710 MONMOUTH AVE,Ventnor City,NJ,39.34357328,-74.4786398,RES1,3001,,45,NE,1976,1976,3102,2,2,1311.363854,1311.363854,3505,NO,40.43,54.18,3,6.33,6106,113.762293,123.514034,133.24044,139.767446,I,Above,Hip,0,5701,,47.3082065,0,0,,,,1,1,,0.03,nav,1,1976,2,, 30860,NJBF000063690,109 S NASHVILLE AVE,Ventnor City,NJ,39.3424014,-74.46789868,RES3B,3001,,17,E,1900,1900,3303,2,1,2055.772974,2055.772974,3504,NO,23.91,38.24,-4,0,6106,114.014159,123.719264,133.458876,139.963641,I,Above,Hip,0,NaN,,31.07639161,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 30861,NJBF000063507,SW LAFAYETTE & WELLINGTON,Ventnor City,NJ,39.34189405,-74.49659786,RES1,3001,,NaN,NE,1960,1960,3102,2,1,2805.530292,2805.530292,3505,NO,26.08,33.1,3,4.56,6106,113.387433,123.212291,132.919949,139.460328,I,Above,Flat,0,5701,,29.58864522,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30862,NJBF000063362,116 1/2 N CORNWALL,Ventnor City,NJ,39.3415055,-74.4815215,RES1,3001,,17,NE,1925,1925,3102,2,1,774.4657298,774.4657298,3505,NO,40.13,52.41,3,8.51,6106,113.726181,123.485326,133.208362,139.750929,I,Above,Gable,0,5701,,46.26673303,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30863,NJBF000063267,5705 VENTNOR AVE,Ventnor City,NJ,39.34128157,-74.47639077,RES1,3001,,17,NE,1987,1987,3102,2,1,2189.079354,2189.079354,3505,NO,42.38,48.45,3,4.93,6106,113.842259,123.579474,133.308424,139.843167,I,Above,Gable,0,5701,,45.41572537,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 30864,NJBF000063501,6120 MONMOUTH AVE,Ventnor City,NJ,39.3418815,-74.481765,RES1,3001,,17,NE,1925,1925,3102,2,1,750.5581235,750.5581235,3505,NO,26.6,39.4,3,-1.97,6106,113.715778,123.476818,133.199597,139.740415,I,Above,Flat,0,5701,,33.00238055,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30865,NJBF000063279,4 N DUDLEY AVE,Ventnor City,NJ,39.34130294,-74.47699473,RES1,3001,,18,NE,1920,1920,3102,2,1,1859.112126,1859.112126,3505,NO,38.68,46.36,3,5.29,6106,113.828674,123.568441,133.296677,139.83264,I,Above,Gable,0,5701,,42.52139053,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30866,NJBF000063226,4 N DUDLEY AVE,Ventnor City,NJ,39.34117183,-74.4771733,RES1,3001,,18,NE,1920,1920,3102,2,1,643.0382507,643.0382507,3505,NO,29.22,40.68,3,4.57,6106,113.8265,123.566701,133.294717,139.831759,I,Above,Hip,0,5701,,34.95335573,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30867,NJBF000063236,110 N CORNWALL AVE,Ventnor City,NJ,39.34119764,-74.48130991,RES1,3001,,16,NE,1925,1925,3102,2,1,938.9138363,938.9138363,3505,NO,26.64,37.89,3,2.95,6106,113.734939,123.492484,133.21574,139.759715,I,Above,Hip,0,5701,,32.26459503,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30868,NJBF000063199,202 N PRINCETON AVE,Ventnor City,NJ,39.34110971,-74.48399841,RES1,3001,,17,NE,2014,2014,3102,3,1,1388.918822,1388.918822,3505,NO,49.78,64.03,3,7.23,6106,113.676782,123.445466,133.165745,139.712929,I,Above,Flat,0,5701,,56.90649957,0,0,,,,1,1,,0.03,nav,1,2014,3,, 30869,NJBF000062976,111 S SURREY AVE,Ventnor City,NJ,39.34062294,-74.47073141,COM1,3001,,NaN,ME,1962,1962,3401,2,1,18786.75758,18786.75758,3507,NO,34.13,39.81,1,1.58,6106,113.975549,123.688018,133.42382,139.946282,I,Above,Flat,0,NaN,,36.96722999,0,0,,,,1,1,,0.03,nav,1,1962,2,, 30870,NJBF000062742,221 N WISSAHICKON AVE,Ventnor City,NJ,39.34012285,-74.49060518,RES1,3001,,17,NE,1946,1946,3102,1,1,1995.522637,1995.522637,3505,NO,19.6,28.32,3,1.96,6106,113.54405,123.338619,133.051979,139.605047,I,Above,Gable,0,5701,,23.96424642,0,0,,,,1,1,,0.03,nav,1,1946,1,, 30871,NJBF000062845,325-327 N LAFAYETTE AVE,Ventnor City,NJ,39.34034016,-74.49434448,RES1,3001,,45,NE,1970,1970,3102,2,2,1845.334584,1845.334584,3505,NO,37.34,49.44,3,-0.25,6106,113.458377,123.269658,132.97941,139.528921,I,Above,Flat,0,5701,,43.39273009,0,0,,,,1,1,,0.03,nav,1,1970,2,, 30872,NJBF000062605,,Ventnor City,NJ,39.3397956,-74.48379554,RES1,3001,,NaN,NE,1930,0,3102,2,1,1581.770787,1581.770787,3505,NO,26.97,35.03,3,4.26,6106,113.698903,123.463611,133.184024,139.738179,I,Above,Hip,0,5701,,30.99963027,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30873,NJBF000062574,230 N ROSBOROUGH AVE,Ventnor City,NJ,39.33974543,-74.49258926,RES1,3001,,17,NE,1952,1952,3102,2,1,1322.557613,1322.557613,3505,NO,28.88,42.7,3,2.23,6106,113.505289,123.307502,133.018904,139.572588,I,Above,Gable,0,5701,,35.79044617,0,0,,,,1,1,,0.03,nav,1,1952,2,, 30874,NJBF000062594,5801 ATLANTIC AVE,Ventnor City,NJ,39.33977803,-74.47586207,RES1,3001,,21,NE,1920,1920,3102,2,1,4774.706017,4774.706017,3505,YES,32.33,43.15,3,0.37,6110,113.874016,123.605509,133.33494,139.876363,I,Above,Gable,0,5701,,37.73858513,0,0,,,,1,1,,0.35,nav,1,1920,2,, 30875,NJBF000062617,224 N NEWARK AVE,Ventnor City,NJ,39.33981467,-74.49177595,RES1,3001,,17,NE,1950,1950,3102,1,1,1143.488705,1143.488705,3505,NO,25.8,31.51,3,6.49,6106,113.522323,123.321193,133.033386,139.587302,I,Above,Flat,0,5701,,28.65387544,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 30876,NJBF000062650,107 N PORTLAND AVE,Ventnor City,NJ,39.33992101,-74.48340566,RES1,3001,,17,NE,1921,1921,3102,1,1,1307.833161,1307.833161,3505,NO,16.09,22.71,3,-0.61,6106,113.705825,123.469185,133.190033,139.743205,I,Above,Hip,0,5701,,19.40366934,0,0,,,,1,1,,0.03,nav,1,1921,1,, 30877,NJBF000062378,227 N WYOMING AVE,Ventnor City,NJ,39.33932975,-74.49251268,RES1,3001,,17,NE,1948,1948,3102,1,1,1557.631567,1557.631567,3505,NO,20.32,26.7,3,6.25,6106,113.51261,123.313471,133.024925,139.580602,I,Above,Flat,0,5701,,23.51021819,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30878,NJBF000063855,5600 EDGEWATER AVE,Ventnor City,NJ,39.3428995,-74.476463,RES1,3001,,43,NE,1992,1992,3102,2,2,1491.630667,1491.630667,3505,NO,31.61,44.39,3,4.15,6106,113.819189,123.560381,133.289343,139.815684,I,Above,Gable,0,5701,,38.00278653,0,0,,,,1,1,,0.03,nav,1,1992,2,, 30879,NJBF000067195,717 N VICTORIA AVE,Ventnor City,NJ,39.35251633,-74.48156822,RES3A,3001,,27,NE,1980,1980,3301,2,1,997.2538681,997.2538681,3505,NO,30.89,43.58,3,3.31,6106,113.58204,123.363695,133.085796,139.569813,I,Above,Flat,0,5701,,37.233585,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30880,NJBF000066966,813 N BURGHLEY AVE,Ventnor City,NJ,39.35147834,-74.48768264,RES1,3001,,17,NE,1975,1975,3101,1,1,1688.51027,1688.51027,3505,NO,19.87,28.29,3,0.87,6106,113.459671,123.26561,132.980979,139.475754,I,Above,Hip,0,5701,,24.08128654,0,0,,,,1,1,,0.03,nav,1,1975,1,, 30881,NJBF000059496,3 N SWARTHMORE AVE,Ventnor City,NJ,39.3343541,-74.49132236,RES1,3001,,17,NE,1930,1930,3102,1,1,1636.79134,1636.79134,3505,NO,10.82,20.03,3,-1.52,6106,113.607357,123.390179,133.10217,139.680847,I,Above,Hip,0,5701,,15.42203145,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 30882,NJBF000058228,,Ventnor City,NJ,39.33193491,-74.49010886,RES1,3001,,NaN,NE,1969,0,3102,2,1,1559.377843,1559.377843,3505,NO,27.13,38.17,3,0.94,6106,113.667861,123.438837,133.151463,139.740812,I,Above,Hip,0,5701,,32.65014451,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30883,NJBF000058597,107 S MELBOURNE AVE,Ventnor City,NJ,39.332589,-74.48844704,RES1,3001,,17,NE,1930,1930,3102,2,1,1669.847627,1669.847627,3505,NO,33.72,41.22,3,8.03,6106,113.695292,123.46104,133.175461,139.764646,I,Above,Hip,0,5701,,37.47251811,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30884,NJBF000065489,410 N SOMERSET AVE,Ventnor City,NJ,39.34723809,-74.48032695,RES1,3001,,17,NE,1978,1978,3102,1,1,1968.339015,1968.339015,3505,NO,14.3,21.12,3,1.98,6106,113.677065,123.443611,133.167928,139.678023,I,Above,Hip,0,5701,,17.71175386,0,0,,,,1,1,,0.03,nav,1,1978,1,, 30885,NJBF000061930,8 S HARVARD AVE,Ventnor City,NJ,39.3384991,-74.48053449,RES1,3001,,17,NE,1925,1925,3102,2,1,1952.966082,1952.966082,3505,NO,40.92,53.66,3,6.88,6106,113.788355,123.536183,133.260061,139.817788,I,Above,Hip,0,5701,,47.29086778,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30886,NJBF000061518,101 S CAMBRIDGE AVE,Ventnor City,NJ,39.33778267,-74.47868611,RES1,3001,,18,NE,1890,1890,3102,3,1,1777.894562,1777.894562,3505,NO,42.14,47.69,3,-1.63,6110,113.838754,123.577099,133.302971,139.861431,I,Above,Hip,0,5701,,44.91404804,0,1.2,,,,1,1,,0.35,nav,1,1890,3,, 30887,NJBF000061501,6705 WINCHESTER AVE,Ventnor City,NJ,39.33775215,-74.48723729,RES1,3001,,17,NE,1946,1946,3102,2,1,2065.995879,2065.995879,3505,NO,33.95,44.16,3,-1.59,6106,113.650678,123.424954,133.141527,139.707505,I,Above,Hip,0,5701,,39.05463207,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 30888,NJBF000061571,107 S CORNWALL AVE,Ventnor City,NJ,39.33788002,-74.47753391,RES1,3001,,17,NE,1920,1920,3102,3,1,2651.74238,2651.74238,3505,NO,33.5,38.76,3,-2.37,6106,113.862796,123.596596,133.323808,139.879281,I,Above,Hip,0,5701,,36.12567444,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 30889,NJBF000061646,103 N RICHARDS AVE,Ventnor City,NJ,39.3380024,-74.48696495,RES1,3001,,17,NE,1941,1941,3102,2,1,848.5700654,848.5700654,3505,NO,36.39,46.18,3,4.64,6106,113.653272,123.427019,133.143902,139.708633,I,Above,Hip,0,5701,,41.28238531,0,1.1,,,,1,1,,0.03,nav,1,1941,2,, 30890,NJBF000061864,12 S CAMBRIDGE AVE,Ventnor City,NJ,39.33839407,-74.47974337,RES1,3001,,17,NE,1951,1951,3102,2,1,1803.51678,1803.51678,3505,NO,34.95,47.97,3,-0.14,6106,113.807203,123.551465,133.276221,139.833273,I,Above,Flat,0,5701,,41.45771778,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, 30891,NJBF000061680,202 N ROSBOROUGH AVE,Ventnor City,NJ,39.33806083,-74.49059594,RES1,3001,,17,NE,1960,1960,3102,2,1,1035.83478,1035.83478,3505,NO,32.82,40.36,3,4.39,6106,113.572286,123.36171,133.074934,139.637943,I,Above,Hip,0,5701,,36.5911501,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30892,NJBF000061489,6001 BOARDWALK,Ventnor City,NJ,39.33773952,-74.47666842,RES1,3001,,19,NE,2008,2008,3102,2,1,2604.606745,2604.606745,3505,NO,44.02,51.14,3,6.96,6106,113.883746,123.613612,133.34181,139.895961,I,Above,Gable,0,5701,,47.57600062,0,0,,,,1,1,,0.03,nav,1,2008,2,, 30893,NJBF000061345,300-302 WALDON DRIVE,Ventnor City,NJ,39.3374799,-74.49457622,RES1,3001,,45,NE,1983,1983,3102,2,2,2242.970289,2242.970289,3505,NO,32.77,40.14,3,6.34,6106,113.492299,123.297402,133.006769,139.568651,I,Above,Gable,0,5701,,36.45417901,0,0,,,,1,1,,0.03,nav,1,1983,2,, 30894,NJBF000061311,6523-25 VENTNOR AVE,Ventnor City,NJ,39.33741984,-74.48435102,COM1,3001,643,NaN,ME,2006,2006,3401,2,4,2413.956619,2413.956619,3507,YES,29.37,37.08,1,2.13,6106,113.718872,123.480067,133.199624,139.766985,I,Above,Gable,0,NaN,,33.225929,0,0,,,,1,1,,0.03,nav,1,2006,2,, 30895,NJBF000061299,117 N ROSBOROUGH AVE,Ventnor City,NJ,39.33739835,-74.48950054,RES1,3001,,17,NE,1936,1936,3102,2,1,954.2584996,954.2584996,3505,NO,28.82,39.6,3,1.34,6106,113.605538,123.388582,133.10282,139.669676,I,Above,Flat,0,5701,,34.2062474,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 30896,NJBF000060528,6-8 N NEWARK AVE,Ventnor City,NJ,39.3361386,-74.48814695,RES1,3001,,NaN,NE,1962,1962,3102,2,1,1658.537546,1658.537546,3505,NO,39.95,48.8,3,4.73,6106,113.652695,123.42671,133.142137,139.715813,I,Above,Flat,0,5701,,44.37603091,0,0,,,,1,1,,0.03,nav,1,1962,2,, 30897,NJBF000060943,11 N BUFFALO AVE,Ventnor City,NJ,39.33679919,-74.48673936,RES1,3001,,17,NE,1932,1932,3102,2,1,1000.0517,1000.0517,3505,NO,41.09,47.32,3,2.53,6106,113.674693,123.444426,133.161389,139.732309,I,Above,Hip,0,5701,,44.20143904,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 30898,NJBF000060913,9 N BUFFALO AVE,Ventnor City,NJ,39.33673942,-74.48670218,RES1,3001,,17,NE,1932,1932,3102,2,1,961.8842391,961.8842391,3505,NO,25.17,34.25,3,-0.34,6106,113.676331,123.445753,133.162745,139.733978,I,Above,Gable,0,5701,,29.7123138,0,0,,,,1,1,,0.03,nav,1,1932,2,, 30899,NJBF000064887,1 N BATON ROUGE AVE,Ventnor City,NJ,39.34558328,-74.46754454,RES3A,3001,,17,NE,1959,1959,3301,2,1,1495.746281,1495.746281,3505,NO,46.74,56.97,3,8.79,6106,113.980215,123.690831,133.431099,139.919801,I,Above,Hip,0,5701,,51.85410441,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 30900,NJBF000061874,14 N NEWPORT AVE,Ventnor City,NJ,39.33840154,-74.48407875,COM1,3001,,17,ME,1928,1928,3401,2,1,1062.601791,1062.601791,3507,NO,20.95,29.36,1,-0.2,6106,113.711514,123.474014,133.193986,139.755895,I,Above,Hip,0,NaN,,25.15458124,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30901,NJBF000063760,108 N DORSET AVE,Ventnor City,NJ,39.3426325,-74.47936,COM1,3001,,NaN,ME,1920,1920,3401,1,1,1975.517915,1975.517915,3507,NO,19.74,27.37,1,1.26,6106,113.758849,123.511504,133.23705,139.770345,I,Above,Flat,0,NaN,,23.55464185,0,0,,,,1,1,,0.03,nav,1,1920,1,, 30902,NJBF000062875,112 N SACRAMENTO AVE,Ventnor City,NJ,39.34041082,-74.48279418,RES1,3001,,17,NE,1925,1925,3102,2,1,1293.499736,1293.499736,3505,NO,27.33,41.26,3,-0.38,6106,113.71274,123.474685,133.19624,139.746193,I,Above,Hip,0,5701,,34.2925995,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30903,NJBF000062715,110 N PRINCETON AVE,Ventnor City,NJ,39.34007971,-74.4832756,RES1,3001,,17,NE,1930,1930,3102,1,1,1435.544299,1435.544299,3505,NO,16.91,26.52,3,-0.5,6106,113.706554,123.469745,133.190747,139.742945,I,Above,Hip,0,5701,,21.71654133,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 30904,NJBF000063430,2 N OXFORD AVE,Ventnor City,NJ,39.34171381,-74.47607345,RES1,3001,,18,NE,1988,1988,3102,2,1,2255.759433,2255.759433,3505,NO,30.61,44.2,3,-2.33,6106,113.843512,123.580405,133.309767,139.841505,I,Above,Hip,0,5701,,37.40720957,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 30905,NJBF000059553,18 N WASHINGTON AVE,Ventnor City,NJ,39.33445115,-74.49258252,RES1,3001,,45,NE,1925,1925,3102,2,2,1584.829018,1584.829018,3505,NO,24.76,36.87,3,3.1,6106,113.5782,123.366686,133.077494,139.654177,I,Above,Hip,0,5701,,30.81970341,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30906,NJBF000064169,14 N VICTORIA AVE,Ventnor City,NJ,39.34377634,-74.47294156,RES1,3001,,17,NE,1910,1910,3102,2,1,1339.945286,1339.945286,3507,NO,29.97,38.23,1,-0.89,6106,113.885182,123.613806,133.347098,139.860418,I,Above,Hip,0,5701,,34.09726229,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 30907,NJBF000061475,24 N TROY AVE,Ventnor City,NJ,39.33771037,-74.48658785,RES1,3001,,17,NE,1930,1930,3102,2,1,4515.38463,4515.38463,3505,NO,32.47,41.62,3,-1.37,6106,113.665573,123.436981,133.154221,139.72048,I,Above,Hip,0,5701,,37.04624165,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 30908,NJBF000063967,14 S HILLSIDE AVE,Ventnor City,NJ,39.343224,-74.470044,RES1,3001,,NaN,NE,1941,0,3102,1,1,816.9882955,816.9882955,3505,NO,18.68,33.02,3,3.88,6110,113.956189,123.671792,133.408707,139.916486,I,Above,Flat,0,5701,,25.85222756,0,0,,,,1,1,,0.35,nav,1,1941,1,, 30909,NJBF000064883,410 N CORNWALL AVE,Ventnor City,NJ,39.34557483,-74.48434735,RES1,3001,,17,NE,1962,1962,3102,1,1,1676.290827,1676.290827,3505,NO,15.2,28.32,3,-2.92,6106,113.609868,123.389988,133.109854,139.633349,I,Above,Hip,0,5701,,21.75896223,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30910,NJBF000063053,125 N PRINCETON AVE,Ventnor City,NJ,39.34078889,-74.48340744,RES1,3001,,16,NE,1930,1930,3102,2,1,1011.474254,1011.474254,3505,NO,38.12,44.94,3,4.93,6106,113.694135,123.459564,133.18047,139.728922,I,Above,Hip,0,5701,,41.53298253,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30911,NJBF000063616,5215 ATLANTIC AVE,Ventnor City,NJ,39.34220724,-74.4706921,RES1,3001,739,NaN,NE,1920,1920,3102,1,1,3165.098034,3165.098034,3505,NO,16.77,22.75,3,-1.94,6106,113.955371,123.671326,133.407341,139.92204,I,Above,Flat,0,5701,,19.76063446,0,0,,,,1,1,,0.03,nav,1,1920,1,, 30912,NJBF000063701,5607 WINCHESTER AVE,Ventnor City,NJ,39.34243211,-74.47566036,RES1,3001,,17,NE,1940,1940,3102,2,1,2046.898038,2046.898038,3505,NO,32.27,41.47,3,-1.55,6106,113.843077,123.579896,133.309798,139.83681,I,Above,Hip,0,5701,,36.87019166,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30913,NJBF000063637,21 S VICTORIA AVE,Ventnor City,NJ,39.34226392,-74.47121876,RES1,3001,,17,NE,1925,1925,3102,2,1,1734.7723,1734.7723,3505,NO,33.84,39.02,3,8.92,6106,113.943032,123.661259,133.396614,139.912633,I,Above,Hip,0,5701,,36.42659396,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 30914,NJBF000063606,5 N OXFORD AVE,Ventnor City,NJ,39.3421693,-74.4759556,RES1,3001,,17,NE,1928,1928,3102,2,1,1715.141665,1715.141665,3505,NO,43.44,57.61,3,5.21,6106,113.840045,123.577492,133.307023,139.836097,I,Above,Hip,0,5701,,50.52464318,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30915,NJBF000064447,25 N WEYMOUTH AVE,Ventnor City,NJ,39.34451594,-74.47158458,RES1,3001,,45,NE,1920,1920,3102,2,2,1208.400842,1208.400842,3507,NO,34.36,45.64,1,-0.58,6106,113.905331,123.630018,133.365036,139.870956,I,Above,Flat,0,5701,,39.99812038,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30916,NJBF000062542,12 S DORSET AVE,Ventnor City,NJ,39.33967248,-74.47701014,RES1,3001,,18,NE,1924,1924,3102,2,1,2543.044785,2543.044785,3505,NO,31.19,38.88,3,3.55,6106,113.850167,123.586157,133.314221,139.858916,I,Above,Hip,0,5701,,35.03710696,0,1.2,,,,1,1,,0.03,nav,1,1924,2,, 30917,NJBF000062416,107 N NEWPORT AVE,Ventnor City,NJ,39.33940167,-74.48442683,RES1,3001,,28,NE,1925,1925,3102,2,1,1925.297544,1925.297544,3505,NO,37.09,49.98,3,3.39,6106,113.690294,123.45672,133.176419,139.733118,I,Above,Flat,0,5701,,43.53765711,0,0,,,,1,1,,0.03,nav,1,1925,2,, 30918,NJBF000062091,6303 VENTNOR AVE,Ventnor City,NJ,39.33878149,-74.48167694,COM1,3001,,NaN,ME,1930,1900,3401,2,1,4091.400313,4091.400313,3507,NO,39.65,52.7,1,1.64,6106,113.759349,123.512661,133.235298,139.792995,I,Above,Flat,0,NaN,,46.17600162,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30919,NJBF000063173,6313 MONMOUTH AVE,Ventnor City,NJ,39.34105626,-74.48406262,RES1,3001,,18,NE,2017,2017,3102,2,1,1059.058616,1059.058616,3505,NO,45.61,60.31,3,8.83,6106,113.67607,123.444903,133.165109,139.712632,I,Above,Gable,0,5701,,52.96145043,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 30920,NJBF000061344,6521 VENTNOR AVE,Ventnor City,NJ,39.33747839,-74.48424123,COM1,3001,,NaN,ME,1912,1912,3401,2,1,2445.986228,2445.986228,3507,NO,22.82,32.86,1,0.7,6106,113.720507,123.481383,133.201066,139.768063,I,Above,Flat,0,NaN,,27.84323723,0,0,,,,1,1,,0.03,nav,1,1912,2,, 30921,NJBF000063953,5307 VENTNOR AVE,Ventnor City,NJ,39.34318881,-74.47245056,RES1,3001,,17,NE,1928,1928,3102,2,1,2004.871029,2004.871029,3505,NO,20.72,28.07,3,-1.88,6106,113.903718,123.62904,133.362915,139.877877,I,Above,Gable,0,5701,,24.39553879,0,0,,,,1,1,,0.03,nav,1,1928,2,, 30922,NJBF000061560,112 S DERBY AVE,Ventnor City,NJ,39.33786101,-74.47687602,RES1,3001,,22,NE,1992,1992,3102,2,1,2954.675996,2954.675996,3505,NO,36.29,41.32,3,5.76,6106,113.877532,123.608559,133.336533,139.890556,I,Above,Flat,0,5701,,38.80249933,0,1.2,,,,1,1,,0.03,nav,1,1992,2,, 30923,NJBF000060529,109 N BALTIMORE AVE,Ventnor City,NJ,39.33614221,-74.49204804,RES1,3001,,17,NE,1940,1940,3102,2,1,961.2221905,961.2221905,3505,NO,27.55,34,3,6.37,6106,113.566573,123.357283,133.068871,139.639281,I,Above,Hip,0,5701,,30.77658302,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30924,NJBF000061155,111 S CAMBRIDGE AVE,Ventnor City,NJ,39.33715414,-74.47803,RES3C,3001,,NaN,E,1940,1940,3303,7,1,3212.784031,3212.784031,3507,NO,104.88,115.87,1,-0.78,6106,113.861728,123.595775,133.322298,139.882797,I,Above,Flat,0,NaN,,110.3767886,0,0,,,,1,1,,0.03,nav,1,1940,7,, 30925,NJBF000061604,102 S CORNWALL AVE,Ventnor City,NJ,39.33793091,-74.47811907,RES1,3001,,18,NE,1920,1920,3102,3,1,1955.826203,1955.826203,3505,NO,46.32,54.5,3,0.91,6106,113.84923,123.585585,133.312129,139.868616,I,Above,Hip,0,5701,,50.41220479,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 30926,NJBF000063731,,Ventnor City,NJ,39.34254101,-74.47719833,RES1,3001,,NaN,NE,1969,0,3102,2,1,1212.813363,1212.813363,3505,NO,32.67,43.7,3,-1.43,6106,113.807744,123.55118,133.279252,139.809042,I,Above,Gable,0,5701,,38.18342032,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30927,NJBF000058355,7307 ATLANTIC AVE,Ventnor City,NJ,39.33215472,-74.49137421,RES1,3001,,20,NE,2017,2017,3102,3,1,1847.241201,1847.241201,3505,NO,55.95,66.31,3,5.37,6110,113.636925,123.413901,133.125365,139.712102,I,Above,Flat,0,5701,,61.13340671,0,0,,,,1,1,,0.35,nav,1,2017,3,, 30928,NJBF000064628,4 N OAKLAND AVE,Ventnor City,NJ,39.344942,-74.46964083,RES1,3001,,16,NE,1920,1920,3102,2,2,1162.511944,1162.511944,3507,NO,28.32,42.88,1,2.25,6106,113.942513,123.660219,133.397733,139.895956,I,Above,Gable,0,5701,,35.60261006,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30929,NJBF000064659,14 N OAKLAND AVE,Ventnor City,NJ,39.34501585,-74.46974192,RES1,3001,,17,NE,1915,1915,3102,2,1,1623.31276,1623.31276,3507,NO,27.25,38.46,1,0.13,6106,113.939326,123.657598,133.394984,139.893147,I,Above,Hip,0,5701,,32.85447637,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 30930,NJBF000065175,302 N SURREY AVE,Ventnor City,NJ,39.34630862,-74.47778557,RES1,3001,,16,NE,1962,1962,3102,1,1,1248.65152,1248.65152,3505,NO,20.61,28.76,3,7.21,6106,113.745261,123.49928,133.226656,139.737564,I,Above,Gable,0,5701,,24.68349858,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30931,NJBF000062455,215 N NEWARK AVE,Ventnor City,NJ,39.33950104,-74.49089533,RES1,3001,,17,NE,1948,1948,3102,1,1,1077.931755,1077.931755,3505,NO,22.05,28.05,3,6.46,6106,113.546067,123.340367,133.053407,139.609353,I,Above,Flat,0,5701,,25.04718897,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30932,NJBF000064116,610 N BUFFALO AVE,Ventnor City,NJ,39.3436199,-74.49368577,RES1,3001,,17,NE,1979,1979,3102,2,1,2312.869184,2312.869184,3505,NO,33.62,45.13,3,1.28,6106,113.428856,123.244974,132.955291,139.489821,I,Above,Hip,0,5701,,39.37735886,0,0,,,,1,1,,0.03,nav,1,1979,2,, 30933,NJBF000061547,205 N LAFAYETTE AVE,Ventnor City,NJ,39.33783842,-74.49160018,RES1,3001,,17,NE,1965,1965,3102,2,1,2633.446212,2633.446212,3505,NO,31.49,41.29,3,-2.18,6106,113.553154,123.346329,133.05855,139.621848,I,Above,Gable,0,5701,,36.38846814,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 30934,NJBF000062989,5601 ATLANTIC AVE,Ventnor City,NJ,39.34064753,-74.47389894,RES1,3001,,18,NE,1909,1909,3102,3,1,2759.318066,2759.318066,3505,NO,47.79,53.4,3,5.24,6110,113.905569,123.631034,133.362922,139.89472,I,Above,Hip,0,5701,,50.59588883,0,1.2,,,,1,1,,0.35,nav,1,1909,3,, 30935,NJBF000066828,805 N BURGHLEY AVE,Ventnor City,NJ,39.35092101,-74.48723805,RES1,3001,,17,NE,1977,1977,3101,1,1,1894.028297,1894.028297,3505,NO,21.88,30.35,3,3.42,6106,113.476641,123.279659,132.995634,139.493044,I,Above,Hip,0,5701,,26.1127775,0,0,,,,1,1,,0.03,nav,1,1977,1,, 30936,NJBF000063038,304-306 N WISSAHICKON AVE,Ventnor City,NJ,39.34076436,-74.49184836,RES1,3001,,45,NE,1972,1972,3102,2,2,1704.054107,1704.054107,3505,NO,42.23,50.47,3,3.34,6106,113.507887,123.309368,133.021524,139.570847,I,Above,Gable,0,5701,,46.3477022,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30937,NJBF000059269,102 S NEWARK AVE,Ventnor City,NJ,39.33389655,-74.48631351,RES1,3001,,17,NE,1960,1960,3102,2,1,1810.548806,1810.548806,3505,NO,41.01,53.86,3,7.49,6110,113.724054,123.484347,133.201225,139.786692,I,Above,Hip,0,5701,,47.4393986,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 30938,NJBF000067621,4800 WELLINGTON AVE,Ventnor City,NJ,39.35399495,-74.47355919,COM1,3003,,NaN,ME,1970,1970,3401,1,1,18120.15991,18120.15991,3507,NO,17.43,31.17,1,-0.79,6106,113.74044,123.491278,133.222999,139.685893,I,Above,Flat,0,NaN,,24.29696081,0,0,,,,1,1,,0.03,nav,1,1970,1,, 30939,NJBF000061771,106 N TROY AVE,Ventnor City,NJ,39.33823002,-74.48688944,RES1,3001,,17,NE,1935,1935,3102,2,1,1652.299992,1652.299992,3505,NO,35.95,46.48,3,4.1,6106,113.651845,123.425839,133.142826,139.706386,I,Above,Hip,0,5701,,41.21516846,0,0,,,,1,1,,0.03,nav,1,1935,2,, 30940,NJBF000066613,601 N SURREY AVE,Ventnor City,NJ,39.35023035,-74.48045725,RES3A,3001,,17,NE,1978,1978,3301,2,1,1173.291282,1173.291282,3505,NO,38.79,45.41,3,6.37,6106,113.63566,123.408543,133.132365,139.626853,I,Above,Flat,0,5701,,42.10015244,0,0,,,,1,1,,0.03,nav,1,1978,2,, 30941,NJBF000066840,606 N VICTORIA AVE,Ventnor City,NJ,39.35097169,-74.48067217,RES3A,3001,,NaN,NE,1986,1986,3301,1,1,1053.346744,1053.346744,3505,NO,11.77,22.33,3,0.67,6106,113.621441,123.396589,133.120039,139.610938,I,Above,Flat,0,5701,,17.04911249,0,0,,,,1,1,,0.03,nav,1,1986,1,, 30942,NJBF000061718,126 N WISSAHICKON AVE,Ventnor City,NJ,39.33814111,-74.48902984,RES1,3001,,17,NE,1930,1930,3102,2,1,1683.057783,1683.057783,3505,NO,37.19,49.12,3,2.35,6106,113.605785,123.388696,133.103486,139.666977,I,Above,Flat,0,5701,,43.15527079,0,0,,,,1,1,,0.03,nav,1,1930,2,, 30943,NJBF000064898,,Ventnor City,NJ,39.34560767,-74.48609694,RES1,3001,,NaN,NE,1969,0,3102,2,1,1292.17831,1292.17831,3505,NO,34.85,44.72,3,8.82,6106,113.570707,123.358365,133.076316,139.600835,I,Above,Flat,0,5701,,39.78584095,0,0,,,,1,1,,0.03,nav,1,1969,2,, 30944,NJBF000062967,5603 ATLANTIC AVE,Ventnor City,NJ,39.34060782,-74.47412599,RES1,3001,,19,NE,1922,1922,3102,1,1,4362.49625,4362.49625,3505,NO,14.17,19.41,3,-1.47,6110,113.901109,123.627412,133.35902,139.891642,I,Above,Flat,0,5701,,16.79025525,0,1.1,,,,1,1,,0.35,nav,1,1922,1,, 30945,NJBF000063067,6401 MONMOUTH AVE,Ventnor City,NJ,39.34082966,-74.48450298,RES1,3001,,17,NE,1930,1930,3102,2,1,984.4969308,984.4969308,3505,NO,30.03,43.26,3,0.19,6106,113.669384,123.439552,133.159269,139.708312,I,Above,Gable,0,5701,,36.64427808,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 30946,NJBF000063024,24 N CORNWALL AVE,Ventnor City,NJ,39.34072193,-74.48035691,RES1,3001,,17,NE,1903,1903,3102,2,1,1845.485346,1845.485346,3505,NO,30.88,36.62,3,6.13,6106,113.762332,123.514762,133.239063,139.784315,I,Above,Hip,0,5701,,33.74932221,0,0,,,,1,1,,0.03,nav,1,1903,2,, 30947,NJBF000060867,18 N NEWARK AVE,Ventnor City,NJ,39.33667,-74.488534,RES1,3001,,39,NE,1940,1940,3102,1,1,1495.873669,1495.873669,3505,NO,24.78,30.51,3,7.31,6106,113.636862,123.413904,133.129018,139.699922,I,Above,Hip,0,5701,,27.64671521,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 30948,NJBF000063000,2 S DUDLEY AVE,Ventnor City,NJ,39.34067063,-74.47649428,RES1,3001,,17,NE,1920,1920,3102,2,1,3907.84156,3907.84156,3505,NO,34.81,47.52,3,4.63,6106,113.848145,123.584363,133.313138,139.851352,I,Above,Hip,0,5701,,41.16658908,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 30949,NJBF000066768,811 N CAMBRIDGE AVE,Ventnor City,NJ,39.35072465,-74.48884291,RES1,3001,,17,NE,1974,1974,3101,2,1,1845.482317,1845.482317,3505,YES,44.21,56.39,3,6.2,6106,113.443534,123.253124,132.9674,139.466554,I,Above,Flat,0,5701,,50.29997428,0,0,,,,1,1,,0.03,nav,1,1974,2,, 30950,NJBF000063021,21 N CORNWALL AVE,Ventnor City,NJ,39.340716,-74.479887,RES1,3001,,18,NE,1926,1926,3102,2,1,1168.042348,1168.042348,3505,NO,30.73,45.17,3,0.67,6106,113.772776,123.523224,133.248059,139.79262,I,Above,Flat,0,5701,,37.94806189,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 30951,NJBF000067708,,Ventnor City,NJ,39.35422822,-74.48340016,RES1,3001,,NaN,NE,1969,0,3103,5,1,2167.160369,2167.160369,3505,NO,87.27,94.01,3,-0.47,6106,113.519948,123.312228,133.031778,139.509021,I,Above,Hip,0,5701,,90.63604525,0,0,,,,1,1,,0.03,nav,1,1969,5,, 30952,NJBF000067761,,Ventnor City,NJ,39.35441927,-74.48344231,RES1,3001,,NaN,NE,1969,0,3103,5,1,1818.08501,1818.08501,3505,NO,61.22,71.11,3,-0.38,6106,113.516629,123.309397,133.028848,139.50515,I,Above,Hip,0,5701,,66.16535473,0,0,,,,1,1,,0.03,nav,1,1969,5,, 30953,NJBF000063085,132 N PRINCETON AVE,Ventnor City,NJ,39.34086215,-74.48388104,RES1,3001,,17,NE,1925,1925,3102,1,1,1227.364997,1227.364997,3505,NO,15.8,25.27,3,-2.87,6106,113.68269,123.450297,133.17069,139.719128,I,Above,Gable,0,5701,,20.53865025,0,0,,,,1,1,,0.03,nav,1,1925,1,, 30954,NJBF000064852,401 N BURGHLEY AVE,Ventnor City,NJ,39.3454819,-74.48288128,RES1,3001,,17,NE,1962,1962,3102,1,1,1603.886706,1603.886706,3505,NO,16.13,23.05,3,2.35,6106,113.643511,123.417209,133.138715,139.661345,I,Above,Gable,0,5701,,19.59002499,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30955,NJBF000066638,712 N DERBY AVE,Ventnor City,NJ,39.3503259,-74.48640981,RES1,3001,,17,NE,1970,1970,3101,1,1,1600.120932,1600.120932,3505,NO,21.32,27.85,3,5.27,6106,113.502608,123.300974,133.017975,139.517974,I,Above,Hip,0,5701,,24.58779493,0,0,,,,1,1,,0.03,nav,1,1970,1,, 30956,NJBF000062975,6417 MONMOUTH AVE,Ventnor City,NJ,39.34062176,-74.48499436,RES1,3001,,28,NE,1945,1945,3102,2,1,1916.558187,1916.558187,3505,NO,31.27,38.14,3,8.53,6106,113.661334,123.433094,133.152272,139.702717,I,Above,Flat,0,5701,,34.70197764,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 30957,NJBF000059281,4 N WASHINGTON AVE,Ventnor City,NJ,39.33393279,-74.49218092,RES1,3001,,17,NE,1953,1953,3102,2,1,1089.34592,1089.34592,3505,NO,38.25,46.85,3,0.17,6106,113.594278,123.37963,133.09072,139.669928,I,Above,Gable,0,5701,,42.5519146,0,0,,,,1,1,,0.03,nav,1,1953,2,, 30958,NJBF000064930,402 N DERBY AVE,Ventnor City,NJ,39.345706,-74.48270245,RES1,3001,,17,NE,1963,1963,3102,1,1,1208.646716,1208.646716,3505,NO,18.74,24.43,3,4.47,6106,113.644534,123.417947,133.139642,139.660884,I,Above,Hip,0,5701,,21.58460902,0,0,,,,1,1,,0.03,nav,1,1963,1,, 30959,NJBF000061712,129 N NEWARK AVE,Ventnor City,NJ,39.33813019,-74.48924602,RES1,3001,,16,NE,1940,1940,3102,1,1,1289.016967,1289.016967,3505,NO,13.82,25.36,3,2.81,6106,113.601165,123.384972,133.099545,139.662992,I,Above,Hip,0,5701,,19.59093586,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 30960,NJBF000062227,206 N WISSAHICKON AVE,Ventnor City,NJ,39.33903508,-74.49015215,RES1,3001,,17,NE,2003,2003,3102,2,1,1607.538635,1607.538635,3505,NO,23.56,35.04,3,-2.38,6106,113.568822,123.358776,133.072521,139.631117,I,Above,Hip,0,5701,,29.29765443,0,0,,,,1,1,,0.03,nav,1,2003,2,, 30961,NJBF000063355,14 S SUFFOLK AVE,Ventnor City,NJ,39.34148429,-74.47335263,RES1,3001,,17,NE,1950,1950,3102,2,1,1551.039926,1551.039926,3505,NO,39.43,46.65,3,4.37,6110,113.906445,123.631609,133.364246,139.890298,I,Above,Hip,0,5701,,43.04390713,0,1.2,,,,1,1,,0.35,nav,1,1950,2,, 30962,NJBF000064893,413 N CAMBRIDGE AVE,Ventnor City,NJ,39.34559227,-74.48471591,RES1,3001,,17,NE,1962,1962,3102,1,1,1373.444492,1373.444492,3505,NO,20.44,34.39,3,8.5,6106,113.601481,123.383208,133.102667,139.626362,I,Above,Hip,0,5701,,27.41787467,0,0,,,,1,1,,0.03,nav,1,1962,1,, 30963,NJBF000059241,25 S LAFAYETTE AVE,Ventnor City,NJ,39.33383457,-74.48838098,RES1,3001,,17,NE,1926,1926,3102,2,1,1916.226324,1916.226324,3505,NO,22.47,28.85,3,-1.56,6110,113.679388,123.44827,133.16304,139.747144,I,Above,Hip,0,5701,,25.65811198,0,0,,,,1,1,,0.35,nav,1,1926,2,, 30964,NJBF000063060,4 S OXFORD AVE,Ventnor City,NJ,39.34081456,-74.47535728,RES1,3001,,18,NE,1920,1920,3102,2,1,2084.5627,2084.5627,3505,NO,39.12,45.54,3,1.23,6106,113.871256,123.603111,133.333255,139.868003,I,Above,Gable,0,5701,,42.33125806,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 30965,NJBF000062301,6421 WINCHESTER AVE,Ventnor City,NJ,39.33917747,-74.48432645,RES1,3001,,17,NE,1940,1940,3102,2,1,1674.184211,1674.184211,3505,NO,28.01,34.21,3,2.53,6106,113.695565,123.461015,133.180802,139.738659,I,Above,Flat,0,5701,,31.10900602,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 30966,NJBF000064140,120 N SOMERSET AVE,Ventnor City,NJ,39.34368463,-74.47742305,RES1,3001,,17,NE,1940,1940,3102,1,1,915.0819358,915.0819358,3505,NO,23.27,35.44,3,7.51,6106,113.787658,123.534575,133.262417,139.786565,I,Above,Flat,0,5701,,29.3583564,0,0,,,,1,1,,0.03,nav,1,1940,1,, 30967,NJBF000064163,122 N SOMERSET AVE,Ventnor City,NJ,39.34375235,-74.47746604,RES1,3001,,17,NE,1935,1935,3102,2,1,1167.742383,1167.742383,3505,NO,36.65,47.53,3,-1.37,6106,113.785826,123.533069,133.260862,139.784736,I,Above,Flat,0,5701,,42.08893755,0,0,,,,1,1,,0.03,nav,1,1935,2,, 30968,NJBF000067216,716 N LITTLE ROCK AVE,Ventnor City,NJ,39.35260648,-74.48134665,RES3A,3001,,27,NE,1980,1980,3301,2,1,1609.446158,1609.446158,3505,NO,33.59,46.15,3,3.81,6106,113.585796,123.366673,133.089017,139.572289,I,Above,Hip,0,5701,,39.86859952,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30969,NJBF000061398,124 N ROSBOROUGH AVE,Ventnor City,NJ,39.33756835,-74.49012858,RES1,3001,,29,NE,1938,1938,3102,2,1,1504.815824,1504.815824,3505,NO,29.42,38.61,3,5.17,6106,113.589344,123.375511,133.089145,139.654797,I,Above,Hip,0,5701,,34.0182751,0,0,,,,1,1,,0.03,nav,1,1938,2,, 30970,NJBF000067268,717 N LITTLE ROCK AVE,Ventnor City,NJ,39.35282493,-74.48105587,RES3A,3001,,27,NE,1980,1980,3301,2,1,992.0510976,992.0510976,3505,NO,34.2,43.57,3,3.81,6106,113.589475,123.369499,133.092143,139.573906,I,Above,Flat,0,5701,,38.88010644,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30971,NJBF000067367,,Ventnor City,NJ,39.35323504,-74.47468462,COM1,3003,,NaN,ME,1969,0,3401,3,1,25943.2965,25943.2965,3507,NO,54.71,62.44,1,2.39,6106,113.72512,123.479307,133.209725,139.678785,I,Above,Flat,0,NaN,,58.57835222,0,0,,,,1,1,,0.03,nav,1,1969,3,, 30972,NJBF000061352,205 N MELBOURNE AVE,Ventnor City,NJ,39.33748795,-74.49222001,RES1,3001,,17,NE,1955,1955,3102,2,1,2873.718369,2873.718369,3505,NO,28.68,34.34,3,-0.98,6106,113.544253,123.339202,133.05079,139.615127,I,Above,Flat,0,5701,,31.51097395,0,0,,,,1,1,,0.03,nav,1,1955,2,, 30973,NJBF000064128,5803 MONMOUTH AVE,Ventnor City,NJ,39.3436365,-74.479263,RES1,3001,,16,NE,1955,1955,3102,1,1,876.4065819,876.4065819,3505,NO,14.29,23.29,3,2.88,6106,113.747702,123.502188,133.227868,139.75559,I,Above,Flat,0,5701,,18.79074135,0,0,,,,1,1,,0.03,nav,1,1955,1,, 30974,NJBF000067113,706 N LITTLE ROCK AVE,Ventnor City,NJ,39.35215087,-74.48097313,RES3A,3001,,27,NE,1980,1980,3301,2,1,1270.676779,1270.676779,3505,NO,30.41,44.52,3,1.18,6106,113.599822,123.378333,133.101213,139.586367,I,Above,Hip,0,5701,,37.46267224,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30975,NJBF000062215,224 N WYOMING AVE,Ventnor City,NJ,39.33901218,-74.49280492,RES1,3001,,17,NE,1948,1948,3102,1,1,2303.282376,2303.282376,3505,NO,20.84,29.5,3,8.09,6106,113.510482,123.311814,133.02297,139.57988,I,Above,Hip,0,5701,,25.16951375,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30976,NJBF000063845,111 N DORSET AVE,Ventnor City,NJ,39.3428755,-74.4789135,COM1,3001,738,NaN,ME,1920,1920,3401,2,1,1530.766218,1530.766218,3507,NO,26.87,34.68,1,0.03,6106,113.76548,123.516814,133.242885,139.77412,I,Above,Hip,0,NaN,,30.77398293,0,0,,,,1,1,,0.03,nav,1,1920,2,, 30977,NJBF000067791,,Ventnor City,NJ,39.35452446,-74.48290878,RES1,3001,,NaN,NE,1969,0,3103,5,1,1424.803293,1424.803293,3505,NO,89.52,95.91,3,-1.27,6106,113.527127,123.317801,133.037849,139.513046,I,Above,Hip,0,5701,,92.71529171,0,0,,,,1,1,,0.03,nav,1,1969,5,, 30978,NJBF000067914,,Ventnor City,NJ,39.355002,-74.48327521,RES1,3001,,NaN,NE,1969,0,3103,6,1,2120.329047,2120.329047,3507,NO,91.71,104.05,1,0.38,6106,113.513056,123.306043,133.025533,139.498665,I,Above,Gable,0,5701,,97.87902811,0,0,,,,1,1,,0.03,nav,1,1969,6,, 30979,NJBF000067112,709 N VICTORIA AVE,Ventnor City,NJ,39.35214484,-74.48126738,RES3A,3001,,27,NE,1980,1980,3301,2,1,891.5972822,891.5972822,3505,NO,34.46,48.42,3,-1.34,6106,113.593391,123.373132,133.095664,139.58123,I,Above,Gable,0,5701,,41.4374621,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30980,NJBF000061592,115 N WISSAHICKON AVE,Ventnor City,NJ,39.33791503,-74.48834737,RES1,3001,,17,NE,2008,2008,3102,2,1,1215.568325,1215.568325,3505,NO,23.5,31.77,3,0.21,6106,113.62395,123.403372,133.118829,139.683702,I,Above,Hip,0,5701,,27.63430271,0,0,,,,1,1,,0.03,nav,1,2008,2,, 30981,NJBF000067198,711 N LITTLE ROCK AVE,Ventnor City,NJ,39.35253515,-74.48082057,RES3A,3001,,27,NE,1980,1980,3301,2,1,979.4419454,979.4419454,3505,NO,20.3,28.14,3,-1.12,6106,113.598333,123.37687,133.099854,139.582812,I,Above,Gable,0,5701,,24.22146134,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30982,NJBF000060092,6925 VENTNOR AVE,Ventnor City,NJ,39.335385,-74.4885075,RES1,3001,,17,NE,1932,1932,3102,2,1,962.3119162,962.3119162,3505,NO,41.54,50.37,3,6.46,6106,113.655145,123.428714,133.143655,139.720675,I,Above,Flat,0,5701,,45.95899973,0,0,,,,1,1,,0.03,nav,1,1932,2,, 30983,NJBF000067120,715 N SURREY AVE,Ventnor City,NJ,39.35217233,-74.48203339,RES3A,3001,,27,NE,1980,1980,3301,2,1,916.099785,916.099785,3505,NO,25.09,36.76,3,0.03,6106,113.576094,123.359117,133.080742,139.567112,I,Above,Gable,0,5701,,30.92269411,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30984,NJBF000060336,14 N WYOMING AVE,Ventnor City,NJ,39.33580159,-74.48961968,RES1,3001,,17,NE,1924,1924,3102,2,1,1430.537094,1430.537094,3505,NO,36.49,44.25,3,6.4,6106,113.624844,123.404259,133.11816,139.692396,I,Above,Hip,0,5701,,40.37226474,0,1.2,,,,1,1,,0.03,nav,1,1924,2,, 30985,NJBF000062987,300-302 N WISSAHICKON AVE,Ventnor City,NJ,39.34064494,-74.4917052,RES1,3001,,45,NE,1972,1972,3102,2,2,1648.033447,1648.033447,3505,NO,44.25,56.82,3,8.5,6106,113.512658,123.313236,133.025528,139.575505,I,Above,Hip,0,5701,,50.53476281,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30986,NJBF000066387,601 N SOMERSET AVE,Ventnor City,NJ,39.34963097,-74.48168299,RES1,3001,,17,NE,1972,1972,3102,2,1,1824.76008,1824.76008,3507,NO,31.62,46.02,1,0.85,6106,113.616208,123.393139,133.115611,139.614851,I,Above,Gable,0,5701,,38.82270445,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30987,NJBF000062299,109 N NEW HAVEN AVE,Ventnor City,NJ,39.33917506,-74.4857365,RES1,3001,,17,NE,1948,1948,3102,1,1,1247.063418,1247.063418,3505,NO,17.39,31.63,3,4.02,6106,113.664448,123.435878,133.154162,139.712632,I,Above,Gable,0,5701,,24.51045935,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 30988,NJBF000065204,325 N OXFORD AVE,Ventnor City,NJ,39.34640232,-74.47987097,RES1,3001,,17,NE,1960,1960,3102,2,1,610.233857,610.233857,3505,NO,38.34,51.11,3,7.31,6106,113.698011,123.460939,133.185845,139.699719,I,Above,Gable,0,5701,,44.72368102,0,0,,,,1,1,,0.03,nav,1,1960,2,, 30989,NJBF000061013,119 N MELBOURNE AVE,Ventnor City,NJ,39.3369073,-74.49176172,RES1,3001,,17,NE,1928,1928,3102,2,1,1410.177761,1410.177761,3505,NO,26.92,40.95,3,2.04,6106,113.562349,123.353828,133.065791,139.63315,I,Above,Flat,0,5701,,33.9345271,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 30990,NJBF000064269,303 N CORNWALL AVE,Ventnor City,NJ,39.34405887,-74.4826017,RES1,3001,,NaN,NE,1958,1958,3102,1,1,1510.402667,1510.402667,3505,NO,9.24,18.55,3,-1.98,6106,113.668397,123.437854,133.159721,139.689695,I,Above,Hip,0,5701,,13.8970683,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30991,NJBF000064270,303 N CORNWALL AVE,Ventnor City,NJ,39.34406017,-74.48245969,RES1,3001,,NaN,NE,1958,1958,3102,1,1,522.9655653,522.9655653,3505,NO,13.35,27.35,3,0.06,6106,113.671522,123.44038,133.162407,139.692222,I,Above,Flat,0,5701,,20.35150459,0,0,,,,1,1,,0.03,nav,1,1958,1,, 30992,NJBF000062461,223 N ROSBOROUGH AVE,Ventnor City,NJ,39.3395141,-74.49175743,RES1,3001,,17,NE,1950,1950,3102,1,1,2256.708712,2256.708712,3505,NO,9.77,15.55,3,-1.32,6106,113.526829,123.324878,133.037074,139.592432,I,Above,Gable,0,5701,,12.65863764,0,0,,,,1,1,,0.03,nav,1,1950,1,, 30993,NJBF000059034,105 S PHILADELPHIA AVE,Ventnor City,NJ,39.33340644,-74.4869166,RES1,3001,,17,NE,1956,1956,3102,1,1,1784.887377,1784.887377,3505,NO,11.91,18.38,3,-2.97,6110,113.717593,123.479105,133.195257,139.782574,I,Above,Flat,0,5701,,15.14509175,0,0,,,,1,1,,0.35,nav,1,1956,1,, 30994,NJBF000067089,707 N VICTORIA AVE,Ventnor City,NJ,39.35204311,-74.48118785,RES3A,3001,,27,NE,1980,1980,3301,2,1,1177.069309,1177.069309,3505,NO,22.88,29.62,3,-1.07,6106,113.59643,123.375659,133.098305,139.584301,I,Above,Gable,0,5701,,26.24765247,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30995,NJBF000059064,7313 VENTNOR AVE,Ventnor City,NJ,39.33347639,-74.49246914,RES1,3001,,NaN,NE,1912,1912,3102,1,1,1927.413866,1927.413866,3505,NO,14.74,26.29,3,-1.17,6106,113.594306,123.379635,133.090361,139.670868,I,Above,Flat,0,5701,,20.51566733,0,0,,,,1,1,,0.03,nav,1,1912,1,, 30996,NJBF000067260,720 N LITTLE ROCK AVE,Ventnor City,NJ,39.35281284,-74.48149304,RES3A,3001,,27,NE,1980,1980,3301,2,1,976.0245917,976.0245917,3505,NO,29.62,36.16,3,2.3,6106,113.579954,123.361801,133.083928,139.56631,I,Above,Flat,0,5701,,32.89025947,0,0,,,,1,1,,0.03,nav,1,1980,2,, 30997,NJBF000066885,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35116311,-74.48293582,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,4674.929609,4674.929609,3505,NO,22.2,29.47,3,4.2,6106,113.568902,123.353964,133.074733,139.567385,I,Above,Flat,0,NaN,,25.83877821,0,0,,,,1,1,,0.03,nav,1,1972,1,, 30998,NJBF000066986,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35160321,-74.4822903,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,7262.688635,7262.688635,3505,NO,21.79,32.45,3,-0.44,6106,113.577614,123.360724,133.08216,139.571795,I,Above,Flat,0,NaN,,27.11923249,0,0,,,,1,1,,0.03,nav,1,1972,2,, 30999,NJBF000067044,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35180523,-74.48261101,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,4910.735751,4910.735751,3505,NO,29.44,37.2,3,3.94,6106,113.567944,123.352772,133.073794,139.562741,I,Above,Flat,0,NaN,,33.32241697,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31000,NJBF000067080,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35202248,-74.48328898,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,3939.508096,3939.508096,3505,NO,36.27,49.96,3,8.88,6106,113.550178,123.338265,133.058458,139.547005,I,Above,Gable,0,NaN,,43.11294955,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31001,NJBF000067016,SOMERSET & MARSHALL AVES,Ventnor City,NJ,39.35170791,-74.48337702,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,8045.108634,8045.108634,3505,NO,18.93,30.4,3,7.57,6106,113.55221,123.340118,133.060273,139.550545,I,Above,Flat,0,NaN,,24.66285762,0,0,,,,1,1,,0.03,nav,1,1972,1,, 31002,NJBF000061018,107 S SACRAMENTO AVE,Ventnor City,NJ,39.33692277,-74.47953867,RES1,3001,,17,NE,1925,1925,3102,2,1,1658.209604,1658.209604,3505,NO,36.81,42.53,3,-0.67,6106,113.831659,123.571401,133.296166,139.860973,I,Above,Hip,0,5701,,39.66976033,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31003,NJBF000060962,109 S SACRAMENTO AVE,Ventnor City,NJ,39.33682448,-74.47942701,RES1,3001,,17,NE,1927,1927,3102,2,1,2213.114783,2213.114783,3505,NO,32.19,38.56,3,5.46,6106,113.835472,123.574497,133.299372,139.864521,I,Above,Hip,0,5701,,35.37708188,0,0,,,,1,1,,0.03,nav,1,1927,2,, 31004,NJBF000062895,6427 MONMOUTH AVE,Ventnor City,NJ,39.34045145,-74.48534253,RES1,3001,,28,NE,1945,1945,3102,2,1,1764.281985,1764.281985,3505,NO,27.21,37.84,3,3.74,6106,113.655926,123.428762,133.147557,139.699088,I,Above,Flat,0,5701,,32.52474302,0,0,,,,1,1,,0.03,nav,1,1945,2,, 31005,NJBF000066597,602 N SURREY AVE,Ventnor City,NJ,39.3501983,-74.48090531,RES1,3001,,17,NE,1974,1974,3102,2,1,1113.201198,1113.201198,3507,NO,35.91,46.18,1,-0.41,6106,113.62616,123.400869,133.124168,139.619433,I,Above,Gable,0,5701,,41.04480677,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31006,NJBF000066654,709 N DORSET AVE,Ventnor City,NJ,39.35035742,-74.48475705,RES3C,3001,,NaN,ME,1965,1965,3301,2,1,6168.93859,6168.93859,3505,NO,35.04,44.31,3,2.05,6106,113.538849,123.330193,133.049031,139.547643,I,Above,Hip,0,NaN,,39.67504264,0,0,,,,1,1,,0.03,nav,1,1965,2,, 31007,NJBF000062819,6503 MONMOUTH AVE,Ventnor City,NJ,39.34029444,-74.48581187,RES1,3001,,45,NE,1964,1964,3102,2,2,2353.40479,2353.40479,3505,NO,35.45,48.05,3,7.04,6106,113.64768,123.422136,133.140423,139.692977,I,Above,Flat,0,5701,,41.75040474,0,0,,,,1,1,,0.03,nav,1,1964,2,, 31008,NJBF000062926,136 N PORTLAND AVE,Ventnor City,NJ,39.34051173,-74.48433703,RES1,3001,,28,NE,1930,1930,3102,2,1,1556.879715,1556.879715,3505,NO,34.19,45.53,3,-0.63,6106,113.677322,123.446032,133.165911,139.716562,I,Above,Flat,0,5701,,39.86040119,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31009,NJBF000059208,6904 ATLANTIC AVE,Ventnor City,NJ,39.33377671,-74.48695465,RES1,3001,,16,NE,1962,1962,3102,2,1,1548.374303,1548.374303,3505,NO,39.03,45.18,3,8.87,6110,113.711602,123.474283,133.190479,139.776077,I,Above,Hip,0,5701,,42.10576364,0,1.1,,,,1,1,,0.35,nav,1,1962,2,, 31010,NJBF000065931,608 N BURGHLEY AVE,Ventnor City,NJ,39.34848088,-74.48578819,RES1,3001,,17,NE,1981,1981,3101,2,1,1699.711243,1699.711243,3505,NO,25.62,38.46,3,1.1,6106,113.540127,123.332312,133.050299,139.559516,I,Above,Gable,0,5701,,32.03959596,0,1.2,,,,1,1,,0.03,nav,1,1981,2,, 31011,NJBF000063077,4 N DORSET AVE,Ventnor City,NJ,39.3408475,-74.4779105,RES1,3001,,18,NE,1915,1915,3102,2,1,1419.155667,1419.155667,3505,NO,25.66,37.88,3,-0.18,6106,113.814588,123.557097,133.284223,139.824519,I,Above,Hip,0,5701,,31.76953294,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 31012,NJBF000066546,607 N SOMERSET AVE,Ventnor City,NJ,39.35002729,-74.48204183,RES1,3001,,17,NE,1972,1972,3102,2,1,1326.535891,1326.535891,3507,NO,27.54,33.5,1,1.25,6106,113.60319,123.382382,133.104379,139.601971,I,Above,Hip,0,5701,,30.52208345,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31013,NJBF000064891,5504 CALVERT AVE,Ventnor City,NJ,39.34559065,-74.47823396,RES1,3001,,17,NE,1929,1929,3102,1,1,1063.217653,1063.217653,3505,NO,15.35,22.99,3,2.61,6106,113.744741,123.499133,133.226002,139.741518,I,Above,Gable,0,5701,,19.16944503,0,0,,,,1,1,,0.03,nav,1,1929,1,, 31014,NJBF000059075,7216 VENTNOR AVE,Ventnor City,NJ,39.3335005,-74.49144467,RES1,3001,,17,NE,1923,1923,3102,2,1,1477.404433,1477.404433,3505,NO,31.93,37.6,3,6.39,6106,113.61654,123.397557,133.109259,139.6911,I,Above,Hip,0,5701,,34.76463216,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 31015,NJBF000064631,5706 CALVERT AVE,Ventnor City,NJ,39.34495097,-74.47959424,RES1,3001,,17,NE,1940,1940,3102,1,1,1184.710322,1184.710322,3505,NO,24.63,38.26,3,6.51,6106,113.723101,123.481823,133.20711,139.72831,I,Above,Hip,0,5701,,31.44366985,0,0,,,,1,1,,0.03,nav,1,1940,1,, 31016,NJBF000063087,116 N HARVARD AVE,Ventnor City,NJ,39.34086399,-74.48241834,RES1,3001,,17,NE,1925,1925,3102,2,1,1452.322733,1452.322733,3505,NO,34.26,40.07,3,7.64,6106,113.71496,123.476388,133.198388,139.745488,I,Above,Gable,0,5701,,37.16124749,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31017,NJBF000066550,715 N CORNWALL AVE,Ventnor City,NJ,39.35003118,-74.48739706,RES1,3001,,17,NE,1975,1975,3101,1,1,2069.654922,2069.654922,3505,NO,17.53,28.37,3,-1.66,6106,113.484502,123.286563,133.002538,139.504637,I,Above,Hip,0,5701,,22.94809064,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 31018,NJBF000064886,5601 CALVERT AVE,Ventnor City,NJ,39.34558217,-74.47897422,RES1,3001,,17,NE,1971,1971,3102,1,1,1394.600344,1394.600344,3505,NO,17.82,31.25,3,6.88,6106,113.728524,123.485987,133.211983,139.728812,I,Above,Hip,0,5701,,24.5376548,0,0,,,,1,1,,0.03,nav,1,1971,1,, 31019,NJBF000067097,710 N VICTORIA AVE,Ventnor City,NJ,39.35208094,-74.48167387,RES3A,3001,,27,NE,1980,1980,3301,2,1,1069.505636,1069.505636,3505,NO,32.4,44.85,3,0.74,6106,113.585193,123.36654,133.088604,139.575014,I,Above,Gable,0,5701,,38.62460138,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31020,NJBF000064446,32 N WEYMOUTH AVE,Ventnor City,NJ,39.3445146,-74.47202592,RES1,3001,,17,NE,1902,1902,3102,2,1,1492.731671,1492.731671,3507,NO,27.45,40.6,1,2.57,6106,113.895641,123.622124,133.356586,139.863721,I,Above,Hip,0,5701,,34.02845227,0,0,,,,1,1,,0.03,nav,1,1902,2,, 31021,NJBF000060223,19 N MELBOURNE AVE,Ventnor City,NJ,39.33561062,-74.49074935,RES1,3001,,17,NE,1927,1927,3102,2,1,1356.21814,1356.21814,3505,NO,36.3,49.66,3,1.79,6106,113.602573,123.386311,133.099074,139.673127,I,Above,Flat,0,5701,,42.97989938,0,1.2,,,,1,1,,0.03,nav,1,1927,2,, 31022,NJBF000059043,100 S PHILADELPHIA AVE,Ventnor City,NJ,39.333427,-74.4874665,RES1,3001,,17,NE,1896,1896,3102,2,1,508.9833409,508.9833409,3505,NO,22.61,31.7,3,0.58,6110,113.705212,123.469105,133.184705,139.771452,I,Above,Gable,0,5701,,27.15324507,0,1.2,,,,1,1,,0.35,nav,1,1896,2,, 31023,NJBF000059104,100 S PHILADELPHIA AVE,Ventnor City,NJ,39.33355479,-74.48748026,RES1,3001,,17,NE,1896,1896,3102,2,1,1565.271609,1565.271609,3505,NO,35.33,45.95,3,6.68,6110,113.703124,123.467425,133.18304,139.76921,I,Above,Flat,0,5701,,40.64123332,0,1.2,,,,1,1,,0.35,nav,1,1896,2,, 31024,NJBF000061555,113 N WISSAHICKON AVE,Ventnor City,NJ,39.33784952,-74.48830451,RES1,3001,,17,NE,1925,1925,3102,2,1,1007.91724,1007.91724,3505,NO,44.84,52.57,3,8.93,6106,113.625765,123.404843,133.120336,139.685547,I,Above,Gable,0,5701,,48.70695622,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31025,NJBF000060973,20 S NEWPORT AVE,Ventnor City,NJ,39.33683961,-74.48285182,RES1,3001,,17,NE,1926,1926,3102,3,1,1664.548509,1664.548509,3505,NO,43.62,56.11,3,3.37,6106,113.759826,123.513231,133.234316,139.803913,I,Above,Flat,0,5701,,49.86373972,0,1.2,,,,1,1,,0.03,nav,1,1926,3,, 31026,NJBF000059058,108 S NEWARK AVE,Ventnor City,NJ,39.33347102,-74.48596527,RES1,3001,,17,NE,1968,1968,3102,2,1,1536.184992,1536.184992,3505,NO,41.48,49.45,3,4.55,6106,113.737649,123.495315,133.212458,139.800157,I,Above,Hip,0,5701,,45.46547383,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 31027,NJBF000060874,8 S NEW HAVEN AVE,Ventnor City,NJ,39.336687,-74.4842045,RES1,3001,,17,NE,1949,1949,3102,1,1,1209.316622,1209.316622,3505,NO,23.79,37.54,3,8.5,6106,113.732099,123.490815,133.21042,139.781674,I,Above,Flat,0,5701,,30.66293017,0,1.1,,,,1,1,,0.03,nav,1,1949,1,, 31028,NJBF000066553,603 N SUFFOLK AVE,Ventnor City,NJ,39.35004795,-74.48119426,RES1,3001,,17,NE,1965,1965,3102,2,1,1052.951884,1052.951884,3507,NO,33.43,45.05,1,2.73,6106,113.621685,123.397334,133.120316,139.616747,I,Above,Hip,0,5701,,39.24177688,0,0,,,,1,1,,0.03,nav,1,1965,2,, 31029,NJBF000067033,813 N DERBY AVE,Ventnor City,NJ,39.35176722,-74.48706502,RES1,3001,,17,NE,1974,1974,3101,2,1,1908.12074,1908.12074,3505,NO,35.58,47.62,3,4.11,6106,113.469707,123.273498,132.98948,139.482423,I,Above,Gable,0,5701,,41.60071129,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31030,NJBF000061386,21 N RICHARDS AVE,Ventnor City,NJ,39.33754482,-74.48661546,RES1,3001,,17,NE,1991,1991,3102,2,1,1903.665365,1903.665365,3505,NO,27.36,35.49,3,1.52,6106,113.667229,123.438335,133.155526,139.722637,I,Above,Hip,0,5701,,31.42435467,0,0,,,,1,1,,0.03,nav,1,1991,2,, 31031,NJBF000066543,6103 MARSHALL AVENUE,Ventnor City,NJ,39.35002314,-74.48826213,RES1,3001,,17,NE,1977,1977,3101,1,1,1551.365515,1551.365515,3505,NO,26.87,39.18,3,7.83,6106,113.465418,123.271195,132.986236,139.488775,I,Above,Flat,0,5701,,33.02506825,0,0,,,,1,1,,0.03,nav,1,1977,1,, 31032,NJBF000066695,605 N SURREY AVE,Ventnor City,NJ,39.3504905,-74.480678,RES1,3001,,17,NE,1975,1975,3102,2,1,1028.23259,1028.23259,3505,NO,29.91,43.78,3,-2.03,6106,113.627452,123.401744,133.125266,139.618695,I,Above,Gable,0,5701,,36.84358814,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31033,NJBF000062924,6425 MONMOUTH AVE,Ventnor City,NJ,39.34050357,-74.48523666,RES1,3001,,28,NE,1945,1945,3102,2,1,1309.257834,1309.257834,3505,NO,33.85,38.88,3,7.6,6106,113.657554,123.430066,133.148977,139.700175,I,Above,Flat,0,5701,,36.36507332,0,0,,,,1,1,,0.03,nav,1,1945,2,, 31034,NJBF000066043,607 N DERBY AVE,Ventnor City,NJ,39.34875419,-74.48461758,RES1,3001,,17,NE,1979,1979,3101,2,1,1806.656641,1806.656641,3505,NO,40.61,45.68,3,4.96,6106,113.562518,123.350234,133.069481,139.576378,I,Above,Gable,0,5701,,43.14522044,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, 31035,NJBF000062961,22 N CORNWALL AVE,Ventnor City,NJ,39.3405835,-74.4802325,RES1,3001,,18,NE,1992,1992,3102,1,1,1311.109329,1311.109329,3505,NO,13.62,20.59,3,0.81,6106,113.766937,123.518519,133.242951,139.788769,I,Above,Gable,0,5701,,17.10231446,0,0,,,,1,1,,0.03,nav,1,1992,1,, 31036,NJBF000066753,812 N CAMBRIDGE AVE,Ventnor City,NJ,39.35066831,-74.48935329,RES1,3001,,17,NE,1978,1978,3101,1,1,1904.441641,1904.441641,3505,NO,16.05,27.37,3,-0.04,6106,113.432943,123.244638,132.958381,139.457997,I,Above,Hip,0,5701,,21.70935857,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 31037,NJBF000062974,5804 VENTNOR AVE,Ventnor City,NJ,39.34062173,-74.47666845,RES1,3001,,18,NE,1920,1920,3102,2,1,2389.539713,2389.539713,3505,NO,35.2,44.93,3,5.41,6106,113.844968,123.581792,133.310357,139.849225,I,Above,Hip,0,5701,,40.06657418,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31038,NJBF000062903,5804 VENTNOR AVE,Ventnor City,NJ,39.340463,-74.4766235,RES1,3001,,18,NE,1920,1920,3102,2,1,592.1646476,592.1646476,3505,NO,32.82,45.4,3,4.73,6106,113.848064,123.584332,133.312933,139.852546,I,Above,Hip,0,5701,,39.11362709,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31039,NJBF000060250,6905 VENTNOR AVE,Ventnor City,NJ,39.33565181,-74.48799965,RES1,3001,,NaN,NE,1966,1966,3102,2,1,2079.09898,2079.09898,3505,NO,26.61,32.73,3,3.34,6106,113.662642,123.434757,133.150254,139.726351,I,Above,Gable,0,5701,,29.66972257,0,0,,,,1,1,,0.03,nav,1,1966,2,, 31040,NJBF000060327,109 S NEWPORT AVE,Ventnor City,NJ,39.33577862,-74.48151101,RES1,3001,,20,NE,2006,2006,3102,3,1,1950.68246,1950.68246,3505,NO,61.17,70.06,3,4.25,6106,113.803872,123.548927,133.271292,139.845452,I,Above,Hip,0,5701,,65.61389228,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 31041,NJBF000066589,609 N SOMERSET AVE,Ventnor City,NJ,39.3501593,-74.48214841,RES1,3001,,17,NE,1972,1972,3102,2,1,1489.422236,1489.422236,3507,NO,34.61,48.63,1,-0.15,6106,113.599156,123.379042,133.100895,139.597918,I,Above,Gable,0,5701,,41.62205884,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 31042,NJBF000062287,208 N WISSAHICKON AVE,Ventnor City,NJ,39.33915593,-74.4902668,RES1,3001,,17,NE,1950,1950,3102,1,1,1363.107036,1363.107036,3505,NO,11.35,23.17,3,-0.86,6106,113.564636,123.355383,133.069023,139.626972,I,Above,Gable,0,5701,,17.26167954,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 31043,NJBF000066713,612 N SUFFOLK AVE,Ventnor City,NJ,39.35055498,-74.4821155,RES1,3001,,17,NE,1972,1972,3102,2,1,1984.054269,1984.054269,3507,NO,33.01,42.86,1,1.67,6106,113.594804,123.375286,133.097112,139.592022,I,Above,Gable,0,5701,,37.93566127,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 31044,NJBF000059145,7307 VENTNOR AVE,Ventnor City,NJ,39.33364111,-74.49211843,RES1,3001,738,NaN,NE,1920,1920,3102,2,2,1152.138535,1152.138535,3505,NO,24.54,30.88,3,-1.51,6106,113.599739,123.384021,133.095112,139.675505,I,Above,Flat,0,5701,,27.71019665,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31045,NJBF000059188,7301 VENTNOR AVE,Ventnor City,NJ,39.33373538,-74.49193464,RES1,3001,,NaN,NE,1950,1950,3102,2,3,1757.961198,1757.961198,3505,NO,24.69,35.33,3,-1.51,6106,113.602462,123.386218,133.097502,139.677794,I,Above,Flat,0,5701,,30.01028098,0,0,,,,1,1,,0.03,nav,1,1950,2,, 31046,NJBF000058656,9 S FREDERICKSBURG,Ventnor City,NJ,39.33269152,-74.49216706,RES1,3001,,17,NE,1925,1925,3102,2,1,1609.023981,1609.023981,3505,NO,20.31,34.79,3,-1.4,6106,113.61193,123.393792,133.104631,139.688358,I,Above,Gable,0,5701,,27.55331246,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31047,NJBF000064466,12 N HILLSIDE AVE,Ventnor City,NJ,39.3445625,-74.471029,RES1,3001,,17,NE,1940,1940,3102,1,1,1463.057088,1463.057088,3507,NO,14.12,22.03,1,1.64,6106,113.916947,123.639472,133.375196,139.879322,I,Above,Gable,0,5701,,18.07096209,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 31048,NJBF000062010,212 N ROSBOROUGH AVE,Ventnor City,NJ,39.33863848,-74.49152592,RES1,3001,,17,NE,1950,1950,3102,1,1,1821.644983,1821.644983,3505,NO,23.27,30.16,3,8.07,6106,113.543859,123.338735,133.051099,139.610745,I,Above,Hip,0,5701,,26.71834973,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 31049,NJBF000060747,104 S PORTLAND AVE,Ventnor City,NJ,39.33648955,-74.48110958,RES1,3001,,16,NE,1925,1925,3102,2,1,1691.803429,1691.803429,3505,NO,32.66,38.38,3,-1,6106,113.802975,123.548179,133.271115,139.840801,I,Above,Flat,0,5701,,35.51950204,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31050,NJBF000062145,216 N ROSBOROUGH AVE,Ventnor City,NJ,39.33888444,-74.49176236,RES1,3001,,17,NE,1948,1948,3102,1,1,1427.025371,1427.025371,3505,NO,17.24,22.91,3,3.69,6106,113.535289,123.331798,133.04395,139.602272,I,Above,Hip,0,5701,,20.07440029,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 31051,NJBF000066688,803 N CORNWALL AVE,Ventnor City,NJ,39.35047399,-74.4877485,RES1,3001,,17,NE,1976,1976,3101,1,1,1723.554258,1723.554258,3505,NO,22.45,37.12,3,6.59,6106,113.471041,123.275438,132.990947,139.49093,I,Above,Flat,0,5701,,29.78510368,0,0,,,,1,1,,0.03,nav,1,1976,1,, 31052,NJBF000060254,22 S TROY AVE,Ventnor City,NJ,39.33566473,-74.4848145,RES1,3001,,17,NE,1930,1930,3102,2,1,1683.012176,1683.012176,3505,NO,33.95,40.8,3,1.35,6106,113.732689,123.491336,133.210125,139.787002,I,Above,Hip,0,5701,,37.37664691,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31053,NJBF000067219,713 N LITTLE ROCK AVE,Ventnor City,NJ,39.35262234,-74.48090745,RES3A,3001,,27,NE,1980,1980,3301,2,1,1102.599968,1102.599968,3505,NO,30.69,45.03,3,5.96,6106,113.595332,123.374381,133.097245,139.579865,I,Above,Gable,0,5701,,37.86387773,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31054,NJBF000065444,5402 BALFOUR AVE,Ventnor City,NJ,39.3471,-74.478809,RES1,3001,,17,NE,1960,1960,3102,1,1,1384.843215,1384.843215,3505,NO,19.33,31.44,3,5.34,6106,113.712392,123.472296,133.19841,139.706902,I,Above,Gable,0,5701,,25.38257471,0,0,,,,1,1,,0.03,nav,1,1960,1,, 31055,NJBF000066051,504 N SUFFOLK AVE,Ventnor City,NJ,39.34877068,-74.48064349,RES1,3001,,17,NE,1978,1978,3102,2,1,1622.095743,1622.095743,3507,NO,35.72,45.18,1,2.79,6106,113.650262,123.421165,133.144963,139.647382,I,Above,Gable,0,5701,,40.45133136,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 31056,NJBF000062312,127 N AVOLYN AVE,Ventnor City,NJ,39.33921042,-74.48648666,RES1,3001,,17,NE,1940,1940,3102,2,1,1034.060106,1034.060106,3505,NO,42.7,57.01,3,4.06,6106,113.647414,123.422121,133.139619,139.698059,I,Above,Hip,0,5701,,49.85807398,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31057,NJBF000061334,7040-7042 CALVERT AVE,Ventnor City,NJ,39.33746223,-74.49382239,RES1,3001,,45,NE,1964,1964,3102,2,2,1923.9479,1923.9479,3505,NO,21.39,34.84,3,-2.25,6106,113.509211,123.311006,133.021073,139.583888,I,Above,Hip,0,5701,,28.11023563,0,0,,,,1,1,,0.03,nav,1,1964,2,, 31058,NJBF000064373,,Ventnor City,NJ,39.3443275,-74.477185,RES1,3001,,NaN,NE,1969,0,3102,2,1,981.0479906,981.0479906,3505,NO,25.65,35.23,3,2.5,6106,113.784454,123.531781,133.259914,139.780184,I,Above,Hip,0,5701,,30.44183799,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31059,NJBF000059680,100 N MARTINDALE AVE,Ventnor City,NJ,39.33466734,-74.49349865,RES1,3001,,17,NE,1925,1925,3102,2,1,1181.178553,1181.178553,3505,NO,29.52,34.92,3,-1.39,6106,113.55499,123.347994,133.057982,139.632598,I,Above,Flat,0,5701,,32.21972392,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31060,NJBF000066312,600 N SOMERSET AVE,Ventnor City,NJ,39.34945464,-74.48207957,RES1,3001,,17,NE,1974,1974,3102,1,1,1612.305348,1612.305348,3507,NO,15.92,26.39,1,1.91,6106,113.609682,123.387959,133.109995,139.61064,I,Above,Hip,0,5701,,21.15727906,0,0,,,,1,1,,0.03,nav,1,1974,1,, 31061,NJBF000062937,5903 VENTNOR AVE,Ventnor City,NJ,39.34054396,-74.47790565,RES1,3001,,18,NE,1900,1900,3102,2,1,2848.107698,2848.107698,3505,YES,28.64,35.32,3,2.73,6106,113.818742,123.560521,133.287626,139.829551,I,Above,Hip,0,5701,,31.98313427,0,0,,,,1,1,,0.03,nav,1,1900,2,, 31062,NJBF000060237,7 N WYOMING AVE,Ventnor City,NJ,39.33563094,-74.48895878,RES1,3001,,17,NE,1927,1927,3102,2,1,1468.340005,1468.340005,3505,NO,23.52,35.4,3,-1.16,6106,113.641783,123.417927,133.132457,139.708001,I,Above,Hip,0,5701,,29.4601307,0,0,,,,1,1,,0.03,nav,1,1927,2,, 31063,NJBF000061254,14 N TROY AVE,Ventnor City,NJ,39.337315,-74.4861565,RES1,3001,,17,NE,1935,1935,3102,2,1,1586.103553,1586.103553,3505,NO,34.66,44.8,3,-0.83,6106,113.680474,123.449052,133.16669,139.735004,I,Above,Flat,0,5701,,39.72825722,0,0,,,,1,1,,0.03,nav,1,1935,2,, 31064,NJBF000061303,,Ventnor City,NJ,39.3374,-74.48621417,RES1,3001,,NaN,NE,1969,0,3102,2,1,1220.024209,1220.024209,3505,NO,21.34,26.74,3,-1.39,6106,113.678055,123.447091,133.164681,139.732554,I,Above,Hip,0,5701,,24.03846897,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31065,NJBF000066701,712 N DORSET AVE,Ventnor City,NJ,39.35051154,-74.48568827,RES1,3001,,17,NE,1975,1975,3101,1,1,1246.877589,1246.877589,3505,NO,18.5,27.58,3,-0.41,6106,113.516235,123.311847,133.029614,139.528151,I,Above,Flat,0,5701,,23.04146547,0,0,,,,1,1,,0.03,nav,1,1975,1,, 31066,NJBF000066036,510 N SOMERSET AVE,Ventnor City,NJ,39.3487365,-74.48149436,RES1,3001,,17,NE,1975,1975,3102,1,1,1272.536826,1272.536826,3507,NO,16.2,26.21,1,-0.48,6106,113.63188,123.406305,133.129114,139.632831,I,Above,Flat,0,5701,,21.20809963,0,0,,,,1,1,,0.03,nav,1,1975,1,, 31067,NJBF000066733,600 N VICTORIA AVE,Ventnor City,NJ,39.35060783,-74.48036641,RES3A,3001,,NaN,NE,1986,1986,3301,2,1,953.8239126,953.8239126,3505,NO,38.17,43.39,3,-0.37,6106,113.632847,123.406044,133.129916,139.622298,I,Above,Flat,0,5701,,40.78403752,0,0,,,,1,1,,0.03,nav,1,1986,2,, 31068,NJBF000066511,705 N DERBY AVE,Ventnor City,NJ,39.34994517,-74.4856135,RES1,3001,,17,NE,1980,1980,3101,2,1,1056.397671,1056.397671,3505,NO,43.01,55.34,3,8.75,6106,113.525156,123.319395,133.037347,139.538785,I,Above,Gable,0,5701,,49.17637346,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31069,NJBF000066031,610 N DERBY AVE,Ventnor City,NJ,39.34872778,-74.4851095,RES1,3001,,17,NE,1968,1968,3101,2,1,1384.338288,1384.338288,3505,NO,27.82,33.2,3,-0.77,6106,113.551979,123.341741,133.060444,139.567873,I,Above,Flat,0,5701,,30.51455717,0,0,,,,1,1,,0.03,nav,1,1968,2,, 31070,NJBF000062887,9 S DUDLEY AVE,Ventnor City,NJ,39.34044116,-74.47578198,RES1,3001,,18,NE,1929,1929,3102,2,1,1890.250085,1890.250085,3505,NO,44.82,52.93,3,8.53,6106,113.866897,123.59963,133.329229,139.866977,I,Above,Hip,0,5701,,48.87516446,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 31071,NJBF000064770,403 N CORNWALL AVE,Ventnor City,NJ,39.34528808,-74.48360105,RES1,3001,,17,NE,1957,1957,3102,2,1,1416.498553,1416.498553,3505,NO,31.84,40.2,3,2.44,6106,113.630135,123.406475,133.127185,139.651561,I,Above,Gable,0,5701,,36.0185494,0,0,,,,1,1,,0.03,nav,1,1957,2,, 31072,NJBF000066683,609 N SUFFOLK AVE,Ventnor City,NJ,39.35046405,-74.48153188,RES1,3001,,17,NE,1974,1974,3102,2,1,1105.777666,1105.777666,3507,NO,29.29,43.91,1,0.67,6106,113.60889,123.386736,133.109258,139.603936,I,Above,Flat,0,5701,,36.59833156,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31073,NJBF000066263,605 N DUDLEY AVE,Ventnor City,NJ,39.34932334,-74.48322256,RES1,3001,,17,NE,1974,1974,3102,1,1,1746.078006,1746.078006,3507,NO,17.38,26.62,1,1.74,6106,113.58608,123.368951,133.089693,139.592294,I,Above,Flat,0,5701,,21.9987143,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 31074,NJBF000066266,705 N CORNWALL AVE,Ventnor City,NJ,39.34933061,-74.48683293,RES1,3001,,17,NE,1965,1965,3101,1,1,1439.956487,1439.956487,3505,NO,13.33,24.83,3,-1.06,6106,113.506003,123.304315,133.021026,139.526454,I,Above,Hip,0,5701,,19.0787254,0,0,,,,1,1,,0.03,nav,1,1965,1,, 31075,NJBF000062150,211 N LAFAYETTE AVE,Ventnor City,NJ,39.3388895,-74.493011,RES1,3001,,18,NE,2001,2001,3102,2,1,1534.049571,1534.049571,3505,NO,34.31,41.03,3,4.66,6106,113.50759,123.309508,133.020459,139.577751,I,Above,Flat,0,5701,,37.67249939,0,0,,,,1,1,,0.03,nav,1,2001,2,, 31076,NJBF000062225,213 N LAFAYETTE AVE,Ventnor City,NJ,39.33903095,-74.49311372,RES1,3001,,17,NE,1965,1965,3102,2,1,1534.968922,1534.968922,3505,NO,26.34,38.96,3,4.86,6106,113.50339,123.306106,133.016967,139.573527,I,Above,Gable,0,5701,,32.6508598,0,0,,,,1,1,,0.03,nav,1,1965,2,, 31077,NJBF000066888,,Ventnor City,NJ,39.35117116,-74.4822361,RES1,3001,,NaN,NE,1969,0,3102,2,1,1254.846368,1254.846368,3507,NO,28.69,37.16,1,-0.07,6106,113.584299,123.366408,133.087987,139.579814,I,Above,Hip,0,5701,,32.92871916,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31078,NJBF000066941,,Ventnor City,NJ,39.35137,-74.481847,RES1,3001,,NaN,NE,1969,0,3102,2,1,1261.172956,1261.172956,3507,NO,33.69,41.99,1,0.73,6106,113.590379,123.3712,133.093198,139.583524,I,Above,Gable,0,5701,,37.83879698,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31079,NJBF000061443,304-306 WALDON DRIVE,Ventnor City,NJ,39.33763868,-74.49470812,RES1,3001,,NaN,NE,1975,1975,3102,2,1,1861.579871,1861.579871,3505,NO,27.58,35.57,3,-1.36,6106,113.487196,123.293281,133.00254,139.563596,I,Above,Gable,0,5701,,31.57702497,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31080,NJBF000066047,611 N BURGHLEY AVE,Ventnor City,NJ,39.34876093,-74.48555971,RES1,3001,,17,NE,1975,1975,3101,1,1,2117.369588,2117.369588,3505,NO,21.92,29.96,3,3.69,6106,113.541562,123.333317,133.051515,139.559106,I,Above,Flat,0,5701,,25.93898913,0,0,,,,1,1,,0.03,nav,1,1975,1,, 31081,NJBF000065835,431 N SUFFOLK AVE,Ventnor City,NJ,39.34822518,-74.47969404,RES1,3001,,17,NE,1985,1985,3102,2,1,1085.421551,1085.421551,3505,NO,29.64,41.51,3,6.33,6106,113.67828,123.444131,133.169104,139.673041,I,Above,Flat,0,5701,,35.57262991,0,0,,,,1,1,,0.03,nav,1,1985,2,, 31082,NJBF000064343,,Ventnor City,NJ,39.3442594,-74.48099022,RES1,3001,,NaN,NE,1969,0,3102,2,1,2133.158008,2133.158008,3505,NO,27.72,40.71,3,3.82,6106,113.701372,123.464465,133.188154,139.715104,I,Above,Gable,0,5701,,34.21555914,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31083,NJBF000066268,521 N SOMERSET AVE,Ventnor City,NJ,39.34933443,-74.48147883,RES1,3001,,17,NE,1958,1958,3102,1,1,1887.743663,1887.743663,3507,NO,15.34,22.83,1,2.74,6106,113.624533,123.40004,133.12279,139.62334,I,Above,Flat,0,5701,,19.08381831,0,0,,,,1,1,,0.03,nav,1,1958,1,, 31084,NJBF000066676,610 N SUFFOLK AVE,Ventnor City,NJ,39.35044673,-74.48198196,RES1,3001,,16,NE,1972,1972,3102,2,1,1111.755264,1111.755264,3507,NO,36.98,49.56,1,-0.54,6106,113.599149,123.378865,133.100865,139.596182,I,Above,Gable,0,5701,,43.26890335,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31085,NJBF000066673,613 N SOMERSET AVE,Ventnor City,NJ,39.35043258,-74.48238626,RES1,3001,,17,NE,1972,1972,3102,2,1,1040.843736,1040.843736,3507,NO,36.3,51.06,1,0.96,6106,113.590386,123.371786,133.093319,139.589181,I,Above,Flat,0,5701,,43.68254593,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 31086,NJBF000060144,6602 ATLANTIC AVE,Ventnor City,NJ,39.33547341,-74.48347423,RES1,3001,,17,NE,1925,1925,3102,3,1,1586.23205,1586.23205,3505,NO,57.18,66.07,3,0.94,6106,113.764846,123.517344,133.237522,139.815025,I,Above,Flat,0,5701,,61.6231597,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 31087,NJBF000060337,15 S RICHARDS AVE,Ventnor City,NJ,39.33580277,-74.48522279,RES1,3001,,16,NE,1938,1938,3102,2,1,1518.8198,1518.8198,3505,NO,19.88,29.48,3,-2.55,6106,113.721781,123.482514,133.200898,139.77708,I,Above,Gable,0,5701,,24.68247066,0,0,,,,1,1,,0.03,nav,1,1938,2,, 31088,NJBF000064816,412 N CAMBRIDGE AVE,Ventnor City,NJ,39.3453933,-74.48510034,RES1,3001,,17,NE,1968,1968,3102,1,1,1866.888044,1866.888044,3505,NO,13.44,25.65,3,1.56,6106,113.595596,123.378538,133.097588,139.62262,I,Above,Hip,0,5701,,19.54271957,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, 31089,NJBF000066179,,Ventnor City,NJ,39.34912804,-74.47957457,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1982.353358,1982.353358,3505,NO,17.98,30.36,3,3.24,6106,113.669281,123.436383,133.161399,139.660397,I,Above,Gable,0,5701,,24.17106588,0,0,,,,1,1,,0.03,nav,1,1969,1,, 31090,NJBF000065776,613 N HARVARD AVE,Ventnor City,NJ,39.34807053,-74.48757588,RES1,3001,,17,NE,1985,1985,3101,2,1,1965.692711,1965.692711,3505,NO,43.71,54.41,3,7.87,6106,113.505811,123.304867,133.020965,139.533319,I,Above,Gable,0,5701,,49.05695665,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 31091,NJBF000066563,614 N OXFORD AVE,Ventnor City,NJ,39.35008813,-74.48349793,RES1,3001,,17,NE,1970,1970,3102,2,1,997.5033588,997.5033588,3507,NO,24.7,30.83,1,1.41,6106,113.570178,123.355659,133.07597,139.574831,I,Above,Flat,0,5701,,27.76525107,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31092,NJBF000067012,705 N SURREY AVE,Ventnor City,NJ,39.35169617,-74.48164511,RES3A,3001,,27,NE,1980,1980,3301,2,1,842.9454033,842.9454033,3505,YES,38.82,52.42,3,4.42,6106,113.590712,123.371259,133.093433,139.581812,I,Above,Gable,0,5701,,45.61949332,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31093,NJBF000064342,17 S MARION AVE,Ventnor City,NJ,39.3442576,-74.46739638,RES1,3001,,17,NE,1922,1922,3102,2,1,1635.282396,1635.282396,3504,NO,27.99,39.33,-4,0,6110,114.000785,123.707974,133.448384,139.942839,I,Above,Hip,0,5701,,33.65674123,0,1.1,,,,1,1,,0.35,nav,1,1922,2,, 31094,NJBF000067018,702 N VICTORIA AVE,Ventnor City,NJ,39.35170985,-74.48137297,RES3A,3001,,27,NE,1980,1980,3301,2,1,1114.923452,1114.923452,3505,NO,39.43,48.86,3,0.58,6106,113.596555,123.375978,133.098469,139.586435,I,Above,Gable,0,5701,,44.14375018,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31095,NJBF000066380,702 N DERBY AVE,Ventnor City,NJ,39.349611,-74.48584512,RES1,3001,,17,NE,1977,1977,3101,1,1,1473.458031,1473.458031,3505,NO,20.76,27.21,3,3.55,6106,113.524302,123.318905,133.036657,139.540003,I,Above,Gable,0,5701,,23.98260652,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, 31096,NJBF000060347,110 N BALTIMORE AVE,Ventnor City,NJ,39.33582072,-74.49224073,RES1,3001,,45,NE,1930,1930,3102,2,2,1895.356354,1895.356354,3505,NO,32.71,37.98,3,-1.13,6106,113.566746,123.357438,133.068796,139.640356,I,Above,Gable,0,5701,,35.34337317,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31097,NJBF000059634,104 S RICHARDS AVE,Ventnor City,NJ,39.33458586,-74.48467252,RES1,3001,,20,NE,2017,2017,3102,3,1,2008.35652,2008.35652,3505,NO,32.89,44.31,3,-0.56,6106,113.750658,123.505868,133.224599,139.807133,I,Above,Gable,0,5701,,38.60106248,0,0,,,,1,1,,0.03,nav,1,2017,3,, 31098,NJBF000064580,19 S VASSAR SQUARE,Ventnor City,NJ,39.344833,-74.46620217,RES3B,3001,,NaN,ME,1920,1939,3301,1,1,1789.363989,1789.363989,3504,NO,13.73,20,-4,0,6106,114.019479,123.723127,133.465147,139.952975,I,Above,Flat,0,NaN,,16.86649463,0,0,,,,1,1,,0.03,nav,1,1920,1,, 31099,NJBF000058675,18 S WASHINGTON AVE,Ventnor City,NJ,39.33273,-74.491184,RES1,3001,,17,NE,1940,1940,3102,2,1,1086.796417,1086.796417,3505,NO,34.67,42.26,3,2.97,6106,113.633051,123.410825,133.122607,139.707635,I,Above,Hip,0,5701,,38.46392383,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31100,NJBF000061992,113 N TROY AVE,Ventnor City,NJ,39.33860086,-74.48671816,RES1,3001,,17,NE,1940,1940,3102,1,1,1481.877566,1481.877566,3505,NO,17.46,26.29,3,5.38,6106,113.650575,123.424765,133.141967,139.703605,I,Above,Flat,0,5701,,21.87491006,0,0,,,,1,1,,0.03,nav,1,1940,1,, 31101,NJBF000067126,5219 WELLINGTON AVE,Ventnor City,NJ,39.35219284,-74.480485,COM1,3003,,NaN,ME,1982,1982,3401,1,1,3112.718698,3112.718698,3507,NO,13.83,21.16,1,1.86,6106,113.610088,123.386618,133.110071,139.594352,I,Above,Flat,0,NaN,,17.49422256,0,0,,,,1,1,,0.03,nav,1,1982,1,, 31102,NJBF000062945,7 S DUDLEY AVE,Ventnor City,NJ,39.34055774,-74.47587233,RES1,3001,,18,NE,1910,1910,3102,3,1,2006.482968,2006.482968,3505,NO,49.89,61.68,3,7.03,6106,113.863351,123.596731,133.326234,139.863587,I,Above,Hip,0,5701,,55.78312406,0,1.2,,,,1,1,,0.03,nav,1,1910,3,, 31103,NJBF000066329,703 N BURGHLEY AVE,Ventnor City,NJ,39.34948433,-74.48610899,RES1,3001,,17,NE,1975,1975,3101,2,1,949.4531087,949.4531087,3505,NO,39.09,47.05,3,6.1,6106,113.520083,123.315578,133.033058,139.537246,I,Above,Flat,0,5701,,43.07184363,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31104,NJBF000066470,716 N CORNWALL AVE,Ventnor City,NJ,39.34983792,-74.48779026,RES1,3001,,17,NE,1968,1968,3101,2,1,1686.594302,1686.594302,3505,NO,34.59,45.44,3,3.47,6106,113.478263,123.281656,132.99724,139.500529,I,Above,Gable,0,5701,,40.01455883,0,0,,,,1,1,,0.03,nav,1,1968,2,, 31105,NJBF000065401,502 N DERBY AVE,Ventnor City,NJ,39.34696451,-74.48375271,RES1,3001,,17,NE,1960,1960,3101,2,1,3196.634515,3196.634515,3505,NO,45.74,53.86,3,7.16,6106,113.60485,123.385327,133.105748,139.621332,I,Above,Hip,0,5701,,49.80104114,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 31106,NJBF000065962,512 N OXFORD AVE,Ventnor City,NJ,39.34855989,-74.48224468,RES1,3001,,17,NE,1963,1963,3102,2,1,1845.174947,1845.174947,3507,NO,30.69,39.34,1,-0.7,6106,113.617549,123.394804,133.116767,139.622326,I,Above,Flat,0,5701,,35.01511049,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 31107,NJBF000064247,16 S OAKLAND AVE,Ventnor City,NJ,39.34399131,-74.46876815,RES1,3001,,17,NE,1920,1920,3102,2,2,1693.783364,1693.783364,3507,NO,31.13,36.91,1,-0.16,6106,113.974149,123.686277,133.424881,139.925008,I,Above,Gable,0,5701,,34.02389419,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31108,NJBF000062374,115 N NEW HAVEN AVE,Ventnor City,NJ,39.33932134,-74.48583472,RES1,3001,,17,NE,1928,1928,3102,2,1,1336.014798,1336.014798,3505,NO,34.32,45.78,3,1.93,6106,113.660308,123.432512,133.150704,139.708428,I,Above,Hip,0,5701,,40.05080821,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 31109,NJBF000062343,111 N NEW HAVEN AVE,Ventnor City,NJ,39.33925268,-74.48579383,RES1,3001,,17,NE,1936,1936,3102,2,1,1057.17543,1057.17543,3505,NO,27.74,37.7,3,-0.97,6106,113.662134,123.433997,133.152227,139.7103,I,Above,Hip,0,5701,,32.71921895,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 31110,NJBF000062868,114 S SURREY AVE,Ventnor City,NJ,39.34039399,-74.47112445,RES1,3001,,20,NE,1999,1999,3102,3,1,1867.017979,1867.017979,3505,NO,59.9,73.81,3,6.04,6106,113.969968,123.683497,133.418779,139.943595,I,Above,Hip,0,5701,,66.85840624,0,0,,,,1,1,,0.03,nav,1,1999,3,, 31111,NJBF000064216,4907 ATLANTIC AVE,Ventnor City,NJ,39.34391036,-74.46712583,RES1,3001,,17,NE,1909,1909,3102,3,1,1839.018609,1839.018609,3504,NO,56.81,66.62,-4,0,6106,114.011272,123.716622,133.457366,139.952549,I,Above,Hip,0,5701,,61.71547109,0,1.1,,,,1,1,,0.03,nav,1,1909,3,, 31112,NJBF000060773,207 N WASHINGTON AVE,Ventnor City,NJ,39.33652573,-74.49423827,RES1,3001,,17,NE,1970,1970,3102,2,1,1439.795464,1439.795464,3505,NO,37.6,46.67,3,3.28,6106,113.512912,123.314066,133.023641,139.589905,I,Above,Hip,0,5701,,42.13566664,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 31113,NJBF000062533,115 N BRYANT AVE,Ventnor City,NJ,39.33965846,-74.48537679,RES1,3001,,17,NE,1927,1927,3102,2,1,1432.787817,1432.787817,3505,NO,30.12,41.66,3,-2.38,6106,113.665865,123.436941,133.155646,139.711426,I,Above,Flat,0,5701,,35.89445392,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 31114,NJBF000060288,7 1/2 N WYOMING AVE,Ventnor City,NJ,39.335722,-74.488982,RES1,3001,,45,NE,1966,1966,3102,2,2,1906.913667,1906.913667,3505,NO,23.37,36.82,3,-0.36,6106,113.64002,123.416502,133.131024,139.70613,I,Above,Gable,0,5701,,30.09547451,0,0,,,,1,1,,0.03,nav,1,1966,2,, 31115,NJBF000060207,6629 ATLANTIC AVE,Ventnor City,NJ,39.33558365,-74.48431836,RES1,3001,,17,NE,1950,1950,3102,1,1,1834.183203,1834.183203,3505,NO,22.95,32.59,3,5.16,6106,113.74473,123.501072,133.220372,139.797588,I,Above,Hip,0,5701,,27.7693706,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 31116,NJBF000064227,5300 WINCHESTER AVE,Ventnor City,NJ,39.34393847,-74.47260249,RES1,3001,,17,NE,1954,1954,3102,1,1,1477.748752,1477.748752,3507,NO,14.59,27.43,1,2.27,6106,113.890536,123.618122,133.351843,139.863439,I,Above,Hip,0,5701,,21.01050062,0,1.2,,,,1,1,,0.03,nav,1,1954,1,, 31117,NJBF000066138,601 N DUDLEY AVE,Ventnor City,NJ,39.34901833,-74.48292803,RES1,3001,,17,NE,1974,1974,3102,1,1,2456.417916,2456.417916,3507,NO,16.74,28.35,1,0.93,6106,113.596533,123.377568,133.09869,139.602589,I,Above,Hip,0,5701,,22.54488215,0,0,,,,1,1,,0.03,nav,1,1974,1,, 31118,NJBF000066176,616 N DERBY AVE,Ventnor City,NJ,39.34912347,-74.48548491,RES1,3001,,17,NE,1968,1968,3101,2,1,1580.72532,1580.72532,3505,NO,21.93,33.56,3,-1.8,6106,113.538557,123.330689,133.048917,139.554557,I,Above,Gable,0,5701,,27.74685717,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 31119,NJBF000064260,314 N CAMBRIDGE AVE,Ventnor City,NJ,39.34403838,-74.48399584,RES1,3001,,17,NE,1960,1960,3102,1,1,2241.110903,2241.110903,3505,NO,17.88,27.79,3,6.91,6106,113.637863,123.413181,133.1335,139.664915,I,Above,Hip,0,5701,,22.8356857,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 31120,NJBF000064570,408 N HARVARD AVE,Ventnor City,NJ,39.3448237,-74.48547388,RES1,3001,,18,NE,1999,1999,3102,3,1,1846.351007,1846.351007,3505,NO,38.24,47.8,3,2.16,6106,113.594804,123.378124,133.096798,139.625097,I,Above,Flat,0,5701,,43.01671101,0,0,,,,1,1,,0.03,nav,1,1999,3,, 31121,NJBF000066244,708 N CORNWALL AVE,Ventnor City,NJ,39.3492895,-74.4873415,RES1,3001,,17,NE,1958,1958,3101,2,1,1087.469125,1087.469125,3505,NO,30.93,43.9,3,1.7,6106,113.495281,123.295698,133.011864,139.517781,I,Above,Hip,0,5701,,37.41469234,0,0,,,,1,1,,0.03,nav,1,1958,2,, 31122,NJBF000062103,100 N BRYANT AVE,Ventnor City,NJ,39.33879615,-74.48511881,RES1,3001,,17,NE,1900,1912,3102,1,1,2787.05663,2787.05663,3505,NO,16.19,24.7,3,4.44,6106,113.683224,123.4511,133.170003,139.730289,I,Above,Hip,0,5701,,20.44816341,0,0,,,,1,1,,0.03,nav,1,1900,1,, 31123,NJBF000064257,5701 MONMOUTH AVE,Ventnor City,NJ,39.34402602,-74.47851587,RES1,3001,,45,NE,1930,1930,3102,2,2,1191.728453,1191.728453,3505,NO,32.89,38.1,3,6.26,6106,113.759055,123.511272,133.237828,139.762188,I,Above,Hip,0,5701,,35.49770227,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31124,NJBF000064259,307 N CAMBRIDGE AVE,Ventnor City,NJ,39.3440365,-74.48345671,RES1,3001,,17,NE,1958,1958,3102,1,1,1275.617768,1275.617768,3505,NO,22.48,34.39,3,5.54,6106,113.649791,123.42282,133.143735,139.67468,I,Above,Flat,0,5701,,28.43656723,0,0,,,,1,1,,0.03,nav,1,1958,1,, 31125,NJBF000067197,720 N VICTORIA AVE,Ventnor City,NJ,39.35253283,-74.4820384,RES3A,3001,,27,NE,1980,1980,3301,2,1,892.6192248,892.6192248,3505,NO,43.57,51.9,3,7.46,6106,113.57142,123.355091,133.076635,139.561134,I,Above,Gable,0,5701,,47.73748219,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 31126,NJBF000066134,611 N DERBY AVE,Ventnor City,NJ,39.34900966,-74.48484269,RES1,3001,,17,NE,1973,1973,3101,2,1,1736.357331,1736.357331,3505,NO,40.66,50.75,3,8.07,6106,113.554235,123.343405,133.062364,139.568102,I,Above,Gable,0,5701,,45.70230544,0,0,,,,1,1,,0.03,nav,1,1973,2,, 31127,NJBF000065939,607 N BURGHLEY AVE,Ventnor City,NJ,39.34849743,-74.4852973,RES1,3001,,17,NE,1972,1972,3101,2,1,2015.316142,2015.316142,3505,NO,37.62,45.86,3,0.14,6106,113.550798,123.340913,133.05944,139.568224,I,Above,Hip,0,5701,,41.7394962,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 31128,NJBF000060172,5 N WYOMING AVE,Ventnor City,NJ,39.33552714,-74.4888996,RES1,3001,,17,NE,1930,1930,3102,2,1,1395.933746,1395.933746,3505,NO,40.25,47.77,3,2.51,6106,113.644519,123.420137,133.134709,139.710778,I,Above,Hip,0,5701,,44.0095667,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31129,NJBF000066206,703 N CORNWALL AVE,Ventnor City,NJ,39.349192,-74.486739,RES1,3001,,17,NE,1975,1975,3101,2,1,1068.413954,1068.413954,3505,NO,34.18,40.71,3,3.53,6106,113.509877,123.307518,133.024356,139.530453,I,Above,Gable,0,5701,,37.44712557,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31130,NJBF000060317,20 N LAFAYETTE AVE,Ventnor City,NJ,39.33576133,-74.49044573,RES1,3001,,17,NE,1930,1930,3102,2,1,1305.336368,1305.336368,3505,NO,44.02,50.12,3,7.79,6106,113.607187,123.390025,133.103106,139.676794,I,Above,Gable,0,5701,,47.07107127,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 31131,NJBF000062425,15 S DERBY AVE,Ventnor City,NJ,39.33943477,-74.47751853,RES1,3001,,18,NE,1915,1915,3102,2,1,2122.395713,2122.395713,3505,NO,41.74,56.23,3,7.39,6106,113.842144,123.579677,133.307118,139.854204,I,Above,Hip,0,5701,,48.98916918,0,1.2,,,,1,1,,0.03,nav,1,1915,2,, 31132,NJBF000065834,514 N DORSET AVE,Ventnor City,NJ,39.34822024,-74.48386775,RES1,3001,,17,NE,1970,1970,3101,1,1,2436.248564,2436.248564,3505,NO,20.43,32.87,3,2.73,6106,113.586022,123.3695,133.089658,139.598706,I,Above,Flat,0,5701,,26.65104673,0,0,,,,1,1,,0.03,nav,1,1970,1,, 31133,NJBF000065453,514 N CORNWALL AVE,Ventnor City,NJ,39.34713316,-74.48562351,RES1,3001,,17,NE,1965,1965,3101,1,1,1660.030619,1660.030619,3505,NO,18.04,28.49,3,6.65,6106,113.561246,123.350042,133.068374,139.584563,I,Above,Hip,0,5701,,23.26856765,0,0,,,,1,1,,0.03,nav,1,1965,1,, 31134,NJBF000062053,17 N NEWPORT AVE,Ventnor City,NJ,39.33871735,-74.48390383,RES1,3001,,27,NE,1900,1900,3102,2,1,591.0413005,591.0413005,3505,NO,33.78,42.66,3,4.7,6106,113.711103,123.473641,133.193836,139.753927,I,Above,Gable,0,5701,,38.2195207,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 31135,NJBF000065973,703 N HARVARD AVE,Ventnor City,NJ,39.34858516,-74.48798527,RES1,3001,,18,NE,1989,1989,3101,3,1,1861.340182,1861.340182,3505,NO,60.2,74.5,3,3.89,6106,113.490088,123.291917,133.007502,139.51736,I,Above,Hip,0,5701,,67.34995622,0,1.1,,,,1,1,,0.03,nav,1,1989,3,, 31136,NJBF000064281,21 S MARION AVE,Ventnor City,NJ,39.34408969,-74.46723512,RES1,3001,,17,NE,1905,1905,3102,2,1,1139.662828,1139.662828,3504,NO,26.02,33.27,-4,0,6110,114.00652,123.712699,133.45331,139.948019,I,Above,Gable,0,5701,,29.64776335,0,0,,,,1,1,,0.35,nav,1,1905,2,, 31137,NJBF000066190,702 N BURGHLEY AVE,Ventnor City,NJ,39.34915013,-74.48639005,RES1,3001,,17,NE,1968,1968,3101,2,1,1806.739792,1806.739792,3505,NO,31.8,37.66,3,-0.56,6106,113.518154,123.314216,133.031442,139.537551,I,Above,Gable,0,5701,,34.72823471,0,0,,,,1,1,,0.03,nav,1,1968,2,, 31138,NJBF000066112,500 N SURREY AVE,Ventnor City,NJ,39.34893532,-74.47993425,RES1,3001,,17,NE,1988,1988,3102,2,1,1441.968767,1441.968767,3507,NO,30.7,42.66,1,0.91,6106,113.663826,123.432065,133.156678,139.657226,I,Above,Flat,0,5701,,36.68069648,0,0,,,,1,1,,0.03,nav,1,1988,2,, 31139,NJBF000066129,614 N DERBY AVE,Ventnor City,NJ,39.34899437,-74.48534701,RES1,3001,,17,NE,1968,1968,3101,2,1,1797.477494,1797.477494,3505,NO,27.8,38.86,3,6.18,6106,113.543276,123.33457,133.05297,139.559185,I,Above,Gable,0,5701,,33.33049558,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 31140,NJBF000066435,715 N CAMBRIDGE AVE,Ventnor City,NJ,39.34974923,-74.4880169,RES1,3001,,17,NE,1966,1966,3101,1,1,1969.612651,1969.612651,3505,NO,19.2,24.84,3,0.52,6106,113.474372,123.278576,132.993931,139.497781,I,Above,Gable,0,5701,,22.0200302,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 31141,NJBF000064597,14 S VASSAR SQUARE,Ventnor City,NJ,39.34487241,-74.46668328,RES3B,3001,,17,ME,1930,1930,3301,2,1,1417.222719,1417.222719,3504,NO,25.14,35.88,-4,0,6106,114.008412,123.714066,133.455448,139.944697,I,Above,Hip,0,NaN,,30.50871612,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31142,NJBF000064553,16 S VASSAR SQUARE,Ventnor City,NJ,39.3447725,-74.466606,RES3B,3001,,17,ME,1930,1930,3301,2,1,1539.487615,1539.487615,3504,NO,22.92,32.82,-4,0,6106,114.011408,123.71654,133.45802,139.947477,I,Above,Hip,0,NaN,,27.87124018,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31143,NJBF000065763,608 N CORNWALL AVE,Ventnor City,NJ,39.3480265,-74.4863185,RES1,3001,,17,NE,1960,1960,3101,1,1,1263.393024,1263.393024,3505,NO,18.54,24.47,3,5.32,6106,113.534261,123.327823,133.04529,139.557224,I,Above,Flat,0,5701,,21.50554945,0,0,,,,1,1,,0.03,nav,1,1960,1,, 31144,NJBF000061089,101 N ROSBOROUGH AVE,Ventnor City,NJ,39.33703797,-74.4891778,RES1,3001,,17,NE,1985,1985,3102,2,1,1453.379652,1453.379652,3505,NO,36.21,48.41,3,-2.63,6106,113.617601,123.398341,133.112857,139.681628,I,Above,Hip,0,5701,,42.3109482,0,0,,,,1,1,,0.03,nav,1,1985,2,, 31145,NJBF000060412,6815 VENTNOR AVE,Ventnor City,NJ,39.3359274,-74.48747064,RES1,3001,,17,NE,1950,1950,3102,2,1,2060.850309,2060.850309,3505,NO,45.29,55.9,3,8.22,6106,113.67052,123.441106,133.157185,139.732231,I,Above,Gable,0,5701,,50.59079895,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 31146,NJBF000064035,5808 MONMOUTH AVE,Ventnor City,NJ,39.3433965,-74.4790935,COM1,3001,,17,ME,1920,1920,3401,3,1,938.1053352,938.1053352,3507,NO,51.55,61.26,1,-0.01,6106,113.754615,123.507861,133.233735,139.762472,I,Above,Flat,0,NaN,,56.40045017,0,0,,,,1,1,,0.03,nav,1,1920,3,, 31147,NJBF000064112,15 N SURREY AVE,Ventnor City,NJ,39.34360854,-74.47324443,RES1,3001,,17,NE,1940,1940,3102,2,1,1172.270927,1172.270927,3505,NO,30.91,38.83,3,8.99,6106,113.880732,123.610227,133.343137,139.8581,I,Above,Flat,0,5701,,34.86988301,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31148,NJBF000059758,10 S ROSBOROUGH AVE,Ventnor City,NJ,39.334801,-74.4879205,RES1,3001,,17,NE,1928,1928,3102,2,1,1389.509965,1389.509965,3505,NO,38.65,48.11,3,-0.26,6106,113.676132,123.445659,133.161084,139.741241,I,Above,Hip,0,5701,,43.37914589,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 31149,NJBF000065896,503 N SOMERSET AVE,Ventnor City,NJ,39.34837762,-74.48075003,RES1,3001,,17,NE,1972,1972,3102,1,1,994.4313448,994.4313448,3507,NO,19.92,32.21,1,1.46,6106,113.652962,123.423552,133.147268,139.65191,I,Above,Gable,0,5701,,26.06008538,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 31150,NJBF000062206,104 N BRYANT AVE,Ventnor City,NJ,39.3389915,-74.48531117,RES1,3001,,16,NE,1947,1947,3102,1,1,1545.106653,1545.106653,3505,NO,22.49,28.98,3,3.97,6106,113.676344,123.445514,133.164232,139.723546,I,Above,Gable,0,5701,,25.73808615,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 31151,NJBF000060685,7 N WISSAHICKON AVE,Ventnor City,NJ,39.33639493,-74.48715666,RES1,3001,,17,NE,1935,1935,3102,2,1,1645.138131,1645.138131,3505,NO,46.25,53.32,3,7.7,6106,113.671013,123.441481,133.157954,139.730807,I,Above,Hip,0,5701,,49.78325616,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 31152,NJBF000063540,,Ventnor City,NJ,39.34199729,-74.47827558,RES1,3001,,NaN,NE,1969,0,3102,2,1,2592.72217,2592.72217,3505,NO,24.9,33.68,3,0.61,6106,113.791203,123.53789,133.264667,139.799484,I,Above,Flat,0,5701,,29.29429907,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31153,NJBF000060156,119 N MARTINDALE AVE,Ventnor City,NJ,39.33549835,-74.49369553,RES1,3001,,17,NE,2013,2013,3102,2,1,676.8273784,676.8273784,3505,NO,42.8,52.15,3,7.91,6106,113.539102,123.335192,133.045131,139.61624,I,Above,Gable,0,5701,,47.47540848,0,1.1,,,,1,1,,0.03,nav,1,2013,2,, 31154,NJBF000065882,609 N CORNWALL AVE,Ventnor City,NJ,39.34834755,-74.48605189,RES1,3001,,17,NE,1960,1960,3101,1,1,1339.135249,1339.135249,3505,NO,22.82,32.94,3,6.77,6106,113.535998,123.329053,133.046768,139.556857,I,Above,Gable,0,5701,,27.87964003,0,0,,,,1,1,,0.03,nav,1,1960,1,, 31155,NJBF000059754,13 S ROSBOROUGH AVE,Ventnor City,NJ,39.33479515,-74.48741282,RES1,3001,,17,NE,1954,1954,3102,2,1,1271.977481,1271.977481,3505,NO,24.77,37.86,3,-1.33,6106,113.687411,123.454765,133.170703,139.751234,I,Above,Hip,0,5701,,31.31198586,0,0,,,,1,1,,0.03,nav,1,1954,2,, 31156,NJBF000064731,6 N AUSTIN AVE,Ventnor City,NJ,39.34518286,-74.46913292,RES1,3001,,47,NE,1950,1950,3102,2,2,1372.872069,1372.872069,3507,NO,33.02,40.69,1,1.8,6106,113.950534,123.666698,133.404877,139.900407,I,Above,Hip,0,5701,,36.8522819,0,0,,,,1,1,,0.03,nav,1,1950,2,, 31157,NJBF000065791,509 N DORSET AVE,Ventnor City,NJ,39.34811455,-74.48312643,RES1,3001,,17,NE,1975,1975,3102,2,1,1849.880657,1849.880657,3507,NO,23.62,29.09,1,1.53,6106,113.603803,123.383921,133.10493,139.613805,I,Above,Flat,0,5701,,26.35485803,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 31158,NJBF000064742,11 N NASHVILLE AVE,Ventnor City,NJ,39.34520759,-74.47016707,RES1,3001,,17,NE,1915,1915,3102,2,1,1384.251475,1384.251475,3507,NO,26.8,36.65,1,0.89,6106,113.927475,123.647875,133.384719,139.88319,I,Above,Hip,0,5701,,31.7241989,0,0,,,,1,1,,0.03,nav,1,1915,2,, 31159,NJBF000064705,9 N NASHVILLE AVE,Ventnor City,NJ,39.34512003,-74.47008529,RES1,3001,,17,NE,1910,1910,3102,2,1,1473.248569,1473.248569,3507,NO,29.43,36.85,1,1.7,6106,113.930426,123.650308,133.387255,139.885919,I,Above,Hip,0,5701,,33.1414551,0,0,,,,1,1,,0.03,nav,1,1910,2,, 31160,NJBF000066477,606 N SOMERSET AVE,Ventnor City,NJ,39.34985871,-74.48239645,RES1,3001,,17,NE,1974,1974,3102,2,1,1213.206143,1213.206143,3507,NO,34.77,49.18,1,0.74,6106,113.597507,123.377884,133.099496,139.598381,I,Above,Gable,0,5701,,41.97722944,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31161,NJBF000064059,202 N DORSET AVE,Ventnor City,NJ,39.34346362,-74.48004553,RES1,3001,,NaN,NE,1980,1980,3102,2,1,1187.92539,1187.92539,3505,NO,42.53,51.16,3,8.51,6106,113.732707,123.49009,133.214863,139.744754,I,Above,Hip,0,5701,,46.84541874,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31162,NJBF000063716,113 N DERBY AVE,Ventnor City,NJ,39.34249384,-74.47957295,RES1,3001,,47,NE,1962,1962,3102,2,2,3479.774549,3479.774549,3505,NO,25.12,39.81,3,2.24,6106,113.755995,123.509227,133.234522,139.768917,I,Above,Gable,0,5701,,32.4681753,0,0,,,,1,1,,0.03,nav,1,1962,2,, 31163,NJBF000065769,602 N BURGHLEY AVE,Ventnor City,NJ,39.34804106,-74.48548285,RES1,3001,,17,NE,1985,1985,3101,2,1,1848.535941,1848.535941,3505,NO,37.53,48.13,3,8.87,6106,113.552578,123.342591,133.060972,139.572287,I,Above,Gable,0,5701,,42.82553162,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 31164,NJBF000065800,410 N SURREY AVE,Ventnor City,NJ,39.34814029,-74.47926821,RES1,3001,,17,NE,1978,1978,3102,2,1,1476.267537,1476.267537,3505,NO,26.27,34.59,3,0.46,6106,113.68879,123.452689,133.178174,139.681906,I,Above,Flat,0,5701,,30.4324411,0,0,,,,1,1,,0.03,nav,1,1978,2,, 31165,NJBF000064598,206 N SUFFOLK AVE,Ventnor City,NJ,39.3448725,-74.4774965,RES1,3001,,17,NE,1929,1929,3102,1,1,959.4075719,959.4075719,3505,NO,14.15,20.69,3,-1.4,6106,113.770404,123.520203,133.247963,139.76594,I,Above,Gable,0,5701,,17.42244549,0,0,,,,1,1,,0.03,nav,1,1929,1,, 31166,NJBF000063894,5601 EDGEWATER AVE,Ventnor City,NJ,39.34301385,-74.47690075,RES1,3001,,17,NE,1940,1940,3102,1,1,1248.606011,1248.606011,3505,NO,19.01,24.3,3,4.63,6106,113.808027,123.551291,133.279735,139.806398,I,Above,Hip,0,5701,,21.65831593,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 31167,NJBF000065783,614 N CAMBRIDGE AVE,Ventnor City,NJ,39.34808368,-74.48723471,RES1,3001,,17,NE,1966,1966,3101,2,1,1169.26065,1169.26065,3505,NO,35.72,48.52,3,4.03,6106,113.513201,123.310815,133.027279,139.539409,I,Above,Gable,0,5701,,42.1219771,0,0,,,,1,1,,0.03,nav,1,1966,2,, 31168,NJBF000064058,8-10 S HILLSIDE AVE,Ventnor City,NJ,39.34345538,-74.47016153,RES1,3001,,17,NE,1925,1925,3102,2,1,2306.212803,2306.212803,3505,NO,38.38,52.63,3,8.25,6106,113.950555,123.667146,133.403925,139.910944,I,Above,Hip,0,5701,,45.50497267,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 31169,NJBF000064700,5 S BATON ROUGE AVE,Ventnor City,NJ,39.34511455,-74.46715507,RES3B,3001,,17,ME,1920,1920,3301,2,1,1568.464533,1568.464533,3504,NO,33.51,39.44,-4,0,6106,113.994878,123.70294,133.443708,139.933366,I,Above,Flat,0,NaN,,36.47734372,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31170,NJBF000064682,4925 VENTNOR AVE,Ventnor City,NJ,39.34506084,-74.4685676,RES3A,3001,20,NaN,NE,1905,1905,3301,3,1,2091.373911,2091.373911,3505,NO,52.14,58.72,3,0.44,6106,113.964543,123.678169,133.41708,139.911469,I,Above,Hip,0,5701,,55.42598828,0,0,,,,1,1,,0.03,nav,1,1905,3,, 31171,NJBF000064730,4925 VENTNOR AVE,Ventnor City,NJ,39.34518153,-74.4686513,RES3A,3001,20,NaN,NE,1905,1905,3301,3,1,821.9550474,821.9550474,3505,NO,39.74,53.08,3,0.41,6106,113.961141,123.675358,133.414164,139.908229,I,Above,Gable,0,5701,,46.41002443,0,0,,,,1,1,,0.03,nav,1,1905,3,, 31172,NJBF000064030,7 N SURREY AVE,Ventnor City,NJ,39.34338202,-74.47304845,RES1,3001,,17,NE,1928,1928,3102,2,1,1532.766459,1532.766459,3505,NO,38.12,46.66,3,8.38,6106,113.888036,123.616228,133.349371,139.864972,I,Above,Hip,0,5701,,42.39109555,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 31173,NJBF000063959,128 N DUDLEY AVE,Ventnor City,NJ,39.34320383,-74.47876692,COM1,3001,,16,ME,1940,1940,3401,1,1,656.5114852,656.5114852,3507,NO,19.21,30.93,1,2.23,6106,113.764367,123.515822,133.242073,139.771283,I,Above,Flat,0,NaN,,25.0674529,0,0,,,,1,1,,0.03,nav,1,1940,1,, 31174,NJBF000063366,,Ventnor City,NJ,39.34151601,-74.47003333,COM1,3001,,NaN,ME,1918,0,3401,3,1,2295.362204,2295.362204,3507,NO,56.2,68.04,1,1.55,6106,113.979009,123.690715,133.427499,139.943455,I,Above,Flat,0,NaN,,62.12097573,0,0,,,,1,1,,0.03,nav,1,1918,3,, 31175,NJBF000064048,102 N SUFFOLK AVE,Ventnor City,NJ,39.34343723,-74.47636196,RES1,3001,,17,NE,1961,1961,3102,2,1,1382.797597,1382.797597,3505,NO,27.41,36.18,3,3.86,6106,113.81432,123.556287,133.285389,139.808675,I,Above,Hip,0,5701,,31.79760704,0,1.1,,,,1,1,,0.03,nav,1,1961,2,, 31176,NJBF000064250,7 N WEYMOUTH AVE,Ventnor City,NJ,39.34399441,-74.47116459,RES1,3001,,17,NE,1920,1920,3102,2,1,1433.673654,1433.673654,3507,NO,37.01,48.33,1,0.69,6106,113.921416,123.643263,133.378794,139.886125,I,Above,Hip,0,5701,,42.66765489,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31177,NJBF000063976,7 N SUFFOLK AVE,Ventnor City,NJ,39.34324127,-74.47426518,RES1,3001,,17,NE,1999,1999,3102,2,1,1102.810666,1102.810666,3505,NO,35.7,44,3,2.74,6106,113.863103,123.595979,133.327615,139.847068,I,Above,Flat,0,5701,,39.85126816,0,0,,,,1,1,,0.03,nav,1,1999,2,, 31178,NJBF000063492,112 S AMHERST AVE,Ventnor City,NJ,39.34186919,-74.46863898,RES3B,3001,,17,E,1911,1911,3303,3,1,1987.247164,1987.247164,3504,NO,36.8,46.97,-4,0,6106,114.004947,123.711825,133.450428,139.960149,I,Above,Hip,0,NaN,,41.88728989,0,1.1,,,,1,1,,0.03,nav,1,1911,3,, 31179,NJBF000064578,10 N NASHVILLE AVE,Ventnor City,NJ,39.34483206,-74.47030333,RES1,3001,,17,NE,1917,1917,3102,2,1,1226.945037,1226.945037,3507,NO,28.29,36.59,1,1.9,6106,113.929395,123.649547,133.386207,139.886918,I,Above,Hip,0,5701,,32.44159984,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 31180,NJBF000064546,8 N NASHVILLE AVE,Ventnor City,NJ,39.34475776,-74.47025088,RES1,3001,,17,NE,1920,1920,3102,2,1,1609.053259,1609.053259,3507,NO,40.21,51.06,1,2.2,6106,113.931506,123.651289,133.388014,139.888936,I,Above,Hip,0,5701,,45.63663717,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31181,NJBF000064738,18 N NASHVILLE AVE,Ventnor City,NJ,39.34519649,-74.47060384,RES1,3001,,17,NE,1925,1925,3102,2,1,1406.046299,1406.046299,3507,NO,22.28,37.13,1,-0.78,6106,113.91802,123.640168,133.376451,139.876238,I,Above,Hip,0,5701,,29.70799946,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31182,NJBF000064723,216 N SUFFOLK AVE,Ventnor City,NJ,39.34516383,-74.47773013,RES1,3001,,17,NE,1925,1925,3102,1,1,1227.083271,1227.083271,3505,NO,14.02,19.87,3,1.8,6106,113.76145,123.512839,133.240317,139.757188,I,Above,Gable,0,5701,,16.94724973,0,0,,,,1,1,,0.03,nav,1,1925,1,, 31183,NJBF000065847,511 N DORSET AVE,Ventnor City,NJ,39.34826804,-74.48323567,RES1,3001,,17,NE,2001,2001,3102,2,1,1755.786609,1755.786609,3507,NO,35.37,42.9,1,0.6,6106,113.59939,123.380276,133.101143,139.609321,I,Above,Flat,0,5701,,39.13979668,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 31184,NJBF000060671,107 N MELBOURNE AVE,Ventnor City,NJ,39.33638183,-74.49132631,RES1,3001,,17,NE,1930,1930,3102,2,1,1097.238464,1097.238464,3505,NO,27.57,40.26,3,5.8,6106,113.579201,123.367441,133.079757,139.64986,I,Above,Gable,0,5701,,33.91699448,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31185,NJBF000065771,501 N OXFORD AVE,Ventnor City,NJ,39.34805452,-74.48128657,RES1,3001,,17,NE,1963,1963,3102,2,1,1629.215919,1629.215919,3507,NO,28.51,40.85,1,0.07,6106,113.64526,123.417479,133.140604,139.647666,I,Above,Hip,0,5701,,34.68190611,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 31186,NJBF000065519,515 N CORNWALL AVE,Ventnor City,NJ,39.34732219,-74.48522569,RES1,3001,,17,NE,1956,1956,3101,1,1,1308.460762,1308.460762,3505,NO,21.69,31.65,3,3.31,6106,113.567601,123.355078,133.073827,139.588742,I,Above,Gable,0,5701,,26.6735923,0,0,,,,1,1,,0.03,nav,1,1956,1,, 31187,NJBF000066337,508 N SURREY AVE,Ventnor City,NJ,39.34950675,-74.48038324,RES1,3001,,17,NE,1987,1987,3102,2,1,1683.205441,1683.205441,3507,NO,38.66,51.16,1,1.22,6106,113.646552,123.41777,133.141781,139.639962,I,Above,Hip,0,5701,,44.91152026,0,0,,,,1,1,,0.03,nav,1,1987,2,, 31188,NJBF000059871,20 N SWARTHMORE AVE,Ventnor City,NJ,39.33498855,-74.49226225,RES1,3001,,17,NE,1925,1925,3102,2,1,1327.299057,1327.299057,3505,NO,26.88,39.23,3,-0.83,6106,113.577806,123.366368,133.077574,139.65254,I,Above,Hip,0,5701,,33.0525436,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31189,NJBF000059664,35 N MARTINDALE AVE,Ventnor City,NJ,39.33463918,-74.49301971,RES1,3001,,17,NE,1910,1910,3102,2,2,2114.144247,2114.144247,3505,NO,30.17,42.89,3,-1.72,6106,113.565946,123.356817,133.067247,139.64262,I,Above,Hip,0,5701,,36.52910345,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 31190,NJBF000058937,7115 ATLANTIC AVE,Ventnor City,NJ,39.33320948,-74.48928888,RES1,3001,,18,NE,1926,1926,3102,2,1,2137.766328,2137.766328,3505,NO,25.4,40.17,3,3.14,6110,113.668099,123.43913,133.152863,139.738583,I,Above,Hip,0,5701,,32.78253876,0,1.1,,,,1,1,,0.35,nav,1,1926,2,, 31191,NJBF000059997,103 N WASHINGTON AVE,Ventnor City,NJ,39.33521713,-74.49273521,RES1,3001,,17,NE,1948,1948,3102,1,1,1130.320818,1130.320818,3505,NO,15.76,24.26,3,0.94,6106,113.564207,123.355412,133.066208,139.639666,I,Above,Gable,0,5701,,20.01164334,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 31192,NJBF000059674,6811 ATLANTIC AVE,Ventnor City,NJ,39.33466128,-74.48628985,RES1,3001,,19,NE,1950,1950,3102,2,1,2075.253693,2075.253693,3505,NO,20.37,30.87,3,-1.44,6110,113.714007,123.476246,133.193307,139.775086,I,Above,Hip,0,5701,,25.61873043,0,0,,,,1,1,,0.35,nav,1,1950,2,, 31193,NJBF000059824,20 S WISSAHICKON AVE,Ventnor City,NJ,39.33490308,-74.48632252,RES1,3001,,18,NE,1938,2018,3102,2,1,1400.012121,1400.012121,3505,NO,26.09,32.95,3,2.35,6110,113.709937,123.472959,133.190033,139.770605,I,Above,Gable,0,5701,,29.51835875,0,1.1,,,,1,1,,0.35,nav,1,1938,2,, 31194,NJBF000058729,107 S PITTSBURGH AVE,Ventnor City,NJ,39.33282579,-74.4879129,RES1,3001,,21,NE,1925,1925,3102,2,1,2899.153058,2899.153058,3505,NO,27.1,40.98,3,0.33,6110,113.70374,123.46788,133.182891,139.771743,I,Above,Flat,0,5701,,34.03856892,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 31195,NJBF000059906,107 N MARTINDALE AVE,Ventnor City,NJ,39.33505808,-74.49332976,RES1,3001,,17,NE,1930,1930,3102,1,1,1454.812767,1454.812767,3505,NO,16.82,22.9,3,5.31,6106,113.553284,123.346619,133.05683,139.630157,I,Above,Hip,0,5701,,19.86131198,0,0,,,,1,1,,0.03,nav,1,1930,1,, 31196,NJBF000058730,103 S MELBOURNE AVE,Ventnor City,NJ,39.33282834,-74.48863124,RES1,3001,,18,NE,1911,1911,3102,2,1,1530.880366,1530.880366,3505,NO,38.55,49.35,3,0.48,6110,113.687904,123.455093,133.169388,139.757409,I,Above,Hip,0,5701,,43.94909219,0,1.1,,,,1,1,,0.35,nav,1,1911,2,, 31197,NJBF000058753,11 S MARTINDALE AVE,Ventnor City,NJ,39.33287604,-74.49155729,RES1,3001,,17,NE,1895,1895,3102,2,1,1175.850661,1175.850661,3505,NO,39.55,53.42,3,4.9,6106,113.622791,123.402562,133.114021,139.697995,I,Above,Gable,0,5701,,46.48228318,0,1.1,,,,1,1,,0.03,nav,1,1895,2,, 31198,NJBF000058690,19B S WASHINGTON AVE,Ventnor City,NJ,39.33276454,-74.490777,RES1,3001,,19,NE,1986,1986,3102,3,1,1017.305505,1017.305505,3505,NO,34.48,42.28,3,1.65,6106,113.641526,123.417662,133.129844,139.715319,I,Above,Flat,0,5701,,38.37830504,0,0,,,,1,1,,0.03,nav,1,1986,3,, 31199,NJBF000059799,,Ventnor City,NJ,39.33487318,-74.49249896,RES1,3001,,NaN,NE,1969,0,3102,2,1,1796.91071,1796.91071,3505,NO,35.14,43.87,3,2.37,6106,113.574188,123.363455,133.074416,139.64955,I,Above,Gable,0,5701,,39.50395762,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31200,NJBF000059820,6801 ATLANTIC AVE,Ventnor City,NJ,39.33490133,-74.48566793,RES1,3001,,18,NE,1982,1982,3102,2,1,1196.466078,1196.466078,3505,NO,27.08,42.08,3,6.07,6110,113.724395,123.484641,133.202394,139.78318,I,Above,Flat,0,5701,,34.57860492,0,0,,,,1,1,,0.35,nav,1,1982,2,, 31201,NJBF000059816,11 S ROSBOROUGH AVE,Ventnor City,NJ,39.3348955,-74.48746363,RES1,3001,,45,NE,1940,1940,3102,2,2,1632.557106,1632.557106,3505,NO,25.54,38.09,3,-2.36,6106,113.684891,123.45273,133.168636,139.748657,I,Above,Hip,0,5701,,31.81815843,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31202,NJBF000059795,110 S AVOLYN AVE,Ventnor City,NJ,39.33486817,-74.48345109,RES1,3001,,17,NE,1925,1925,3102,3,1,822.4273447,822.4273447,3505,NO,47.08,57.03,3,0.3,6106,113.773676,123.524489,133.244574,139.825357,I,Above,Gable,0,5701,,52.05546394,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 31203,NJBF000059874,5 N MELBOURNE AVE,Ventnor City,NJ,39.33499453,-74.49025249,RES1,3001,,17,NE,1930,1930,3102,2,1,1068.063079,1068.063079,3505,NO,34.3,43.5,3,1.53,6106,113.622057,123.402032,133.115176,139.6924,I,Above,Hip,0,5701,,38.89814439,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31204,NJBF000059847,15 S NEWARK AVE,Ventnor City,NJ,39.33495946,-74.48666773,RES1,3001,,17,NE,1928,1928,3102,2,1,1336.091143,1336.091143,3505,NO,37.96,43.25,3,3.24,6106,113.701562,123.466193,133.182924,139.763074,I,Above,Hip,0,5701,,40.60526365,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 31205,NJBF000059786,13 N SWARTHMORE AVE,Ventnor City,NJ,39.33484725,-74.49172512,RES1,3001,,17,NE,1945,1945,3102,1,1,1549.372701,1549.372701,3505,NO,19.28,31.78,3,2.52,6106,113.591622,123.377501,133.089194,139.66539,I,Above,Hip,0,5701,,25.53080687,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 31206,NJBF000059919,109 N FREDERICKSBURG,Ventnor City,NJ,39.33508117,-74.49407996,RES1,3001,,17,NE,1965,1965,3102,1,1,2114.798831,2114.798831,3505,NO,22.08,34.52,3,7.63,6106,113.536415,123.333038,133.042555,139.614786,I,Above,Gable,0,5701,,28.30408542,0,0,,,,1,1,,0.03,nav,1,1965,1,, 31207,NJBF000059536,20 S ROSBOROUGH AVE,Ventnor City,NJ,39.33442483,-74.48765339,RES1,3001,,17,NE,1989,1989,3102,2,1,1530.493492,1530.493492,3505,NO,38.56,47.82,3,3.44,6110,113.687242,123.454626,133.170249,139.752342,I,Above,Gable,0,5701,,43.19117309,0,1.1,,,,1,1,,0.35,nav,1,1989,2,, 31208,NJBF000059502,22 S ROSBOROUGH AVE,Ventnor City,NJ,39.33436172,-74.48755871,RES1,3001,,17,NE,1915,1915,3102,3,1,1446.580237,1446.580237,3505,NO,55.07,60.46,3,0.48,6110,113.690186,123.457002,133.172707,139.755161,I,Above,Flat,0,5701,,57.76298211,0,0,,,,1,1,,0.35,nav,1,1915,3,, 31209,NJBF000059842,15 N SWARTHMORE AVE,Ventnor City,NJ,39.33495489,-74.4917964,RES1,3001,,17,NE,1925,1925,3102,2,1,1172.150287,1172.150287,3505,NO,35.57,42.55,3,-2.94,6106,113.588557,123.375031,133.086675,139.662345,I,Above,Hip,0,5701,,39.06179287,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31210,NJBF000059797,103 S RICHARDS AVE,Ventnor City,NJ,39.3348701,-74.4844492,RES1,3001,,17,NE,1923,1923,3102,2,1,1387.09562,1387.09562,3505,NO,24.69,36.14,3,2.69,6110,113.751673,123.506692,133.225716,139.80675,I,Above,Gable,0,5701,,30.41542719,0,1.1,,,,1,1,,0.35,nav,1,1923,2,, 31211,NJBF000059859,9 S ROSBOROUGH AVE,Ventnor City,NJ,39.33497466,-74.48753115,RES1,3001,,18,NE,1984,1984,3102,2,1,1272.6355,1272.6355,3505,NO,27.32,40.76,3,-2.04,6106,113.682323,123.450656,133.166509,139.746113,I,Above,Hip,0,5701,,34.0353435,0,0,,,,1,1,,0.03,nav,1,1984,2,, 31212,NJBF000059769,7101 VENTNOR AVE,Ventnor City,NJ,39.33481686,-74.48966459,RES1,3001,,17,NE,1930,1930,3102,2,1,1415.671115,1415.671115,3505,NO,34.74,45.34,3,-1.51,6106,113.637466,123.414459,133.128148,139.706733,I,Above,Flat,0,5701,,40.04387278,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31213,NJBF000059870,6 S ROSBOROUGH AVE,Ventnor City,NJ,39.33498289,-74.48806835,RES1,3001,,NaN,NE,1969,0,3102,2,2,1506.829717,1506.829717,3505,NO,29.25,43.76,3,7.99,6106,113.670376,123.441012,133.156323,139.735528,I,Above,Hip,0,5701,,36.50390176,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31214,NJBF000059590,1 N BALTIMORE AVE,Ventnor City,NJ,39.33450835,-74.49073526,RES1,3001,,17,NE,1930,1930,3102,2,1,1572.052503,1572.052503,3505,NO,27.33,40.29,3,5.05,6106,113.61816,123.39889,133.111476,139.690226,I,Above,Hip,0,5701,,33.8093436,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31215,NJBF000058789,7106 ATLANTIC AVE,Ventnor City,NJ,39.33294421,-74.48871149,RES1,3001,,19,NE,1940,1940,3102,3,1,1636.985426,1636.985426,3505,NO,33.47,39.04,3,1.23,6110,113.684524,123.452372,133.166615,139.754079,I,Above,Hip,0,5701,,36.25838602,0,1.1,,,,1,1,,0.35,nav,1,1940,3,, 31216,NJBF000059783,5 S WYOMING AVE,Ventnor City,NJ,39.33484235,-74.48833675,RES1,3001,,17,NE,1925,1925,3102,2,1,1074.241465,1074.241465,3505,NO,36.15,48.17,3,3.25,6106,113.666396,123.437801,133.152815,139.732468,I,Above,Hip,0,5701,,42.16051408,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31217,NJBF000058759,10 S MARTINDALE AVE,Ventnor City,NJ,39.33288244,-74.49198772,RES1,3001,,28,NE,1930,1930,3102,2,1,1206.852769,1206.852769,3505,NO,22.52,31.76,3,-0.47,6106,113.613212,123.394839,133.105891,139.68922,I,Above,Gable,0,5701,,27.13724852,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31218,NJBF000059635,24 N WASHINGTON AVE,Ventnor City,NJ,39.33459133,-74.4926979,RES1,3001,,29,NE,1925,1925,3102,2,1,1190.493499,1190.493499,3505,NO,23.64,31.28,3,-0.57,6106,113.573717,123.363075,133.0738,139.649787,I,Above,Flat,0,5701,,27.46137136,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31219,NJBF000059515,111 S RICHARDS AVE,Ventnor City,NJ,39.33438239,-74.48406724,RES1,3001,,20,NE,1985,1985,3102,2,1,2103.791969,2103.791969,3505,NO,26.53,39.48,3,-0.02,6106,113.766817,123.518933,133.238261,139.821831,I,Above,Flat,0,5701,,33.0037833,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 31220,NJBF000059866,112 S NEW HAVEN AVE,Ventnor City,NJ,39.33498145,-74.48278401,RES1,3001,,17,NE,1925,1925,3102,2,1,1539.071101,1539.071101,3505,NO,41.9,51.76,3,4.23,6106,113.786804,123.535114,133.255938,139.835733,I,Above,Hip,0,5701,,46.83068628,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 31221,NJBF000059772,17 S NEWARK AVE,Ventnor City,NJ,39.33482105,-74.48658149,RES1,3001,,16,NE,1930,1930,3102,1,1,2623.471708,2623.471708,3505,NO,16.97,24.52,3,-1.4,6110,113.705385,123.469281,133.186075,139.766939,I,Above,Hip,0,5701,,20.74324093,0,0,,,,1,1,,0.35,nav,1,1930,1,, 31222,NJBF000059831,14 S NEWARK AVE,Ventnor City,NJ,39.33492933,-74.48716221,RES1,3001,,17,NE,1910,1910,3102,2,1,1439.471923,1439.471923,3505,NO,34.56,44.91,3,8.12,6106,113.69109,123.457736,133.173955,139.753998,I,Above,Hip,0,5701,,39.73375977,0,0,,,,1,1,,0.03,nav,1,1910,2,, 31223,NJBF000059848,2 N LAFAYETTE AVE,Ventnor City,NJ,39.33496123,-74.48980632,RES1,3001,,17,NE,1934,1934,3102,2,1,1519.913804,1519.913804,3505,NO,36.85,50.45,3,1.82,6106,113.632363,123.410343,133.123919,139.701737,I,Above,Hip,0,5701,,43.65163152,0,0,,,,1,1,,0.03,nav,1,1934,2,, 31224,NJBF000059794,116 S NEW HAVEN AVE,Ventnor City,NJ,39.33486755,-74.48272905,RES1,3001,,20,NE,2009,2009,3102,3,1,1731.503042,1731.503042,3505,NO,60.55,75.49,3,4.93,6106,113.78957,123.537352,133.258212,139.838593,I,Above,Hip,0,5701,,68.01946942,0,0,,,,1,1,,0.03,nav,1,2009,3,, 31225,NJBF000059130,9 S SWARTHMORE AVE,Ventnor City,NJ,39.33361324,-74.49074467,RES1,3001,,17,NE,1910,1910,3102,2,1,1318.246895,1318.246895,3505,NO,40.73,52.79,3,6.42,6106,113.63039,123.408729,133.121128,139.703456,I,Above,Hip,0,5701,,46.75772503,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 31226,NJBF000058498,7301 ATLANTIC AVE,Ventnor City,NJ,39.3324229,-74.49090015,RES1,3001,,17,NE,1975,1975,3102,2,1,1866.814154,1866.814154,3505,NO,27.8,38.75,3,2.35,6106,113.643605,123.419312,133.131295,139.717814,I,Above,Hip,0,5701,,33.27439569,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 31227,NJBF000059322,7118 VENTNOR AVE,Ventnor City,NJ,39.33400633,-74.49038709,RES1,3001,,17,NE,1920,1920,3102,2,1,1388.846225,1388.846225,3505,NO,24.83,32.46,3,-2.86,6106,113.632808,123.410692,133.123519,139.704728,I,Above,Hip,0,5701,,28.64264048,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31228,NJBF000058962,100 S LAFAYETTE AVE,Ventnor City,NJ,39.33326661,-74.48800561,RES1,3001,,17,NE,1973,1973,3102,2,1,1900.530354,1900.530354,3505,NO,27.62,37.81,3,-2,6110,113.695547,123.461291,133.176312,139.763225,I,Above,Gable,0,5701,,32.71846395,0,1.1,,,,1,1,,0.35,nav,1,1973,2,, 31229,NJBF000058599,11 S FREDERICKSBURG,Ventnor City,NJ,39.3325921,-74.49209602,RES1,3001,,29,NE,1926,1926,3102,2,1,1636.685314,1636.685314,3505,NO,43.85,54.66,3,6.5,6106,113.614895,123.396175,133.107058,139.691234,I,Above,Gable,0,5701,,49.25873273,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 31230,NJBF000059556,102 S BUFFALO AVE,Ventnor City,NJ,39.33445317,-74.48529953,RES1,3001,,17,NE,1925,1925,3102,2,1,1541.719996,1541.719996,3505,NO,35.56,47.48,3,3.73,6106,113.738687,123.496188,133.214235,139.797377,I,Above,Hip,0,5701,,41.52012721,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31231,NJBF000059285,101 S ROSBOROUGH AVE,Ventnor City,NJ,39.3339385,-74.4866025,RES1,3001,,16,NE,1960,1960,3102,2,1,1810.017466,1810.017466,3505,NO,32.55,39.23,3,7.26,6110,113.717107,123.478735,133.195326,139.780416,I,Above,Hip,0,5701,,35.89145691,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 31232,NJBF000058483,102 S BALTIMORE AVE,Ventnor City,NJ,39.33240062,-74.48951583,RES1,3001,,18,NE,1925,1925,3102,3,1,1420.77094,1420.77094,3505,NO,40.15,50.16,3,3.33,6106,113.674386,123.444147,133.157467,139.745996,I,Above,Gable,0,5701,,45.15321627,0,0,,,,1,1,,0.03,nav,1,1925,3,, 31233,NJBF000058575,7215 ATLANTIC AVE,Ventnor City,NJ,39.3325429,-74.49054225,RES1,3001,,17,NE,1936,1936,3102,2,1,1433.118766,1433.118766,3505,NO,36.62,46.69,3,0.97,6110,113.649808,123.424326,133.136682,139.723286,I,Above,Hip,0,5701,,41.6577731,0,0,,,,1,1,,0.35,nav,1,1936,2,, 31234,NJBF000059338,20 S WYOMING AVE,Ventnor City,NJ,39.33404146,-74.48822102,RES1,3001,,17,NE,1935,1935,3102,2,1,1261.114019,1261.114019,3505,NO,32.71,41.45,3,-1.98,6106,113.680052,123.448813,133.163786,139.74714,I,Above,Flat,0,5701,,37.0801983,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 31235,NJBF000059565,6802 ATLANTIC AVE,Ventnor City,NJ,39.33447092,-74.4855635,RES1,3001,,17,NE,1925,1925,3102,2,1,1461.464281,1461.464281,3505,NO,29.62,35.23,3,-1.77,6110,113.732646,123.491306,133.209082,139.792066,I,Above,Hip,0,5701,,32.42464321,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 31236,NJBF000059513,107 S BUFFALO AVE,Ventnor City,NJ,39.33437644,-74.48477668,RES1,3001,,17,NE,1920,1920,3102,2,1,1676.343858,1676.343858,3505,NO,26.02,37.92,3,-2.83,6106,113.751268,123.506358,133.224936,139.808554,I,Above,Gable,0,5701,,31.96595744,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31237,NJBF000059183,5 N MARTINDALE AVE,Ventnor City,NJ,39.33372296,-74.49228136,RES1,3001,,17,NE,1908,1908,3102,2,1,714.0826621,714.0826621,3505,NO,24.47,32.62,3,3.21,6106,113.595002,123.380206,133.09116,139.671021,I,Above,Flat,0,5701,,28.54757986,0,1.1,,,,1,1,,0.03,nav,1,1908,2,, 31238,NJBF000058560,7200 ATLANTIC AVE,Ventnor City,NJ,39.33251322,-74.48958257,RES1,3001,,17,NE,1930,1930,3102,3,1,1381.981483,1381.981483,3505,NO,47.94,53.42,3,5.15,6106,113.671344,123.441702,133.154983,139.743009,I,Above,Flat,0,5701,,50.67923629,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 31239,NJBF000058872,13 S WASHINGTON AVE,Ventnor City,NJ,39.33309425,-74.49105684,RES1,3001,,17,NE,1900,1900,3102,2,1,1138.807884,1138.807884,3505,NO,47.61,59.35,3,8.63,6106,113.630758,123.409,133.120986,139.70487,I,Above,Hip,0,5701,,53.48325016,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 31240,NJBF000059325,15-17 N MARTINDALE AVE,Ventnor City,NJ,39.33401581,-74.49251943,RES1,3001,,45,NE,1908,1908,3102,2,2,1339.973967,1339.973967,3505,NO,38.86,43.9,3,4.66,6106,113.585669,123.372695,133.083482,139.661916,I,Above,Flat,0,5701,,41.37896907,0,1.1,,,,1,1,,0.03,nav,1,1908,2,, 31241,NJBF000058564,104 S MELBOURNE AVE,Ventnor City,NJ,39.33252642,-74.48887318,RES1,3001,,17,NE,1970,1970,3102,2,1,2366.643634,2366.643634,3505,NO,32.75,44.31,3,7.69,6110,113.686794,123.454174,133.168157,139.757058,I,Above,Flat,0,5701,,38.52768712,0,1.1,,,,1,1,,0.35,nav,1,1970,2,, 31242,NJBF000059151,105 S ROSBOROUGH AVE,Ventnor City,NJ,39.33366095,-74.4863793,RES1,3001,,18,NE,1962,1962,3102,2,1,1575.260899,1575.260899,3505,NO,43.77,51.07,3,7.29,6110,113.725896,123.485826,133.202586,139.789128,I,Above,Hip,0,5701,,47.41888013,0,1.1,,,,1,1,,0.35,nav,1,1962,2,, 31243,NJBF000059527,117 S TROY AVE,Ventnor City,NJ,39.33441271,-74.48332863,RES1,3001,,19,NE,2008,2008,3102,2,1,1334.253687,1334.253687,3505,NO,26.17,31.88,3,-1.55,6106,113.782635,123.531731,133.251851,139.835055,I,Above,Flat,0,5701,,29.0251666,0,0,,,,1,1,,0.03,nav,1,2008,2,, 31244,NJBF000059498,9 S LAFAYETTE AVE,Ventnor City,NJ,39.33435829,-74.48883807,RES1,3001,,17,NE,1928,1928,3102,2,1,1212.388535,1212.388535,3505,NO,30.76,43.95,3,0.32,6106,113.662058,123.434296,133.148717,139.730104,I,Above,Gable,0,5701,,37.35635765,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 31245,NJBF000058993,2 S WASHINGTON AVE,Ventnor City,NJ,39.33331734,-74.49165094,RES1,3001,,17,NE,1925,1925,3102,2,1,1107.590208,1107.590208,3505,NO,37.7,51.66,3,5.39,6106,113.614555,123.395948,133.107415,139.689656,I,Above,Hip,0,5701,,44.6769227,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31246,NJBF000058636,17 S MARTINDALE AVE,Ventnor City,NJ,39.33265125,-74.4913814,RES1,3001,,17,NE,1928,1928,3102,2,1,1174.769107,1174.769107,3505,NO,32.57,46.29,3,-0.03,6106,113.629818,123.408211,133.119787,139.704811,I,Above,Gable,0,5701,,39.42597388,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 31247,NJBF000058592,19 S MARTINDALE AVE,Ventnor City,NJ,39.33257785,-74.49132372,RES1,3001,,17,NE,1928,1928,3102,2,1,1172.086972,1172.086972,3505,NO,30.03,35.73,3,4.66,6106,113.632096,123.410043,133.121656,139.707019,I,Above,Hip,0,5701,,32.88175578,0,0,,,,1,1,,0.03,nav,1,1928,2,, 31248,NJBF000059138,106 S NEWARK AVE,Ventnor City,NJ,39.33362483,-74.48608688,RES1,3001,,18,NE,1965,1965,3102,2,1,1503.768211,1503.768211,3505,NO,38.15,52.83,3,3.78,6106,113.732825,123.491424,133.208476,139.795371,I,Above,Gable,0,5701,,45.48713651,0,0,,,,1,1,,0.03,nav,1,1965,2,, 31249,NJBF000059176,14 S MELBOURNE AVE,Ventnor City,NJ,39.33370169,-74.48967259,RES1,3001,,17,NE,1925,1925,3102,2,1,1171.665173,1171.665173,3505,NO,35.04,45.35,3,2.18,6106,113.652772,123.426786,133.140248,139.723529,I,Above,Hip,0,5701,,40.1964136,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31250,NJBF000059364,2 N SWARTHMORE AVE,Ventnor City,NJ,39.3341,-74.4915905,RES1,3001,,17,NE,1930,1930,3102,2,1,1332.034057,1332.034057,3505,NO,30.69,43.75,3,3.67,6106,113.604959,123.388242,133.099926,139.679271,I,Above,Hip,0,5701,,37.22066196,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31251,NJBF000059310,12 N MARTINDALE AVE,Ventnor City,NJ,39.33398564,-74.49296933,RES1,3001,,17,NE,1926,1926,3102,2,1,1080.539476,1080.539476,3505,NO,35.07,44.52,3,-2.36,6106,113.576165,123.365038,133.075396,139.653318,I,Above,Hip,0,5701,,39.79524959,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 31252,NJBF000059320,19 S LAFAYETTE AVE,Ventnor City,NJ,39.334001,-74.48853184,RES1,3001,,17,NE,1921,1921,3102,2,1,1755.942528,1755.942528,3505,NO,27.46,38.81,3,3.46,6110,113.673755,123.443729,133.158383,139.74162,I,Above,Flat,0,5701,,33.13141423,0,0,,,,1,1,,0.35,nav,1,1921,2,, 31253,NJBF000059564,112 S TROY AVE,Ventnor City,NJ,39.33446933,-74.48385895,RES1,3001,,20,NE,2003,2003,3102,2,1,1453.892999,1453.892999,3505,NO,37.58,45.65,3,5.11,6106,113.770195,123.521668,133.241235,139.824303,I,Above,Flat,0,5701,,41.61688801,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 31254,NJBF000058399,24 S MARTINDALE AVE,Ventnor City,NJ,39.33224977,-74.49151932,RES1,3001,,17,NE,1930,1930,3102,1,1,1602.177685,1602.177685,3505,NO,23.45,36.2,3,4.96,6106,113.632399,123.410259,133.121609,139.707809,I,Above,Hip,0,5701,,29.82303047,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 31255,NJBF000058494,106 S MELBOURNE AVE,Ventnor City,NJ,39.33241393,-74.48878066,RES1,3001,,19,NE,1930,1930,3102,2,1,1864.499329,1864.499329,3505,NO,44.04,57.28,3,5.78,6106,113.690385,123.457063,133.17111,139.760555,I,Above,Hip,0,5701,,50.66118279,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31256,NJBF000058642,20 S WASHINGTON AVE,Ventnor City,NJ,39.33265788,-74.49113218,RES1,3001,,17,NE,1942,1942,3102,2,1,1114.038876,1114.038876,3505,NO,33.54,43.61,3,4.16,6106,113.635204,123.412556,133.124371,139.709729,I,Above,Gable,0,5701,,38.57601665,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 31257,NJBF000058452,22 S MARTINDALE AVE,Ventnor City,NJ,39.33234632,-74.49157989,RES1,3001,,29,NE,1920,1920,3102,2,1,1502.417799,1502.417799,3505,NO,31.65,37.63,3,5.8,6106,113.629709,123.408099,133.119413,139.705198,I,Above,Flat,0,5701,,34.63959904,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31258,NJBF000058299,108 S BALTIMORE AVE,Ventnor City,NJ,39.33205959,-74.48922801,RES1,3001,,18,NE,1930,1930,3102,3,1,1776.993359,1776.993359,3505,NO,58.9,67.37,3,5.27,6106,113.6855,123.453087,133.166605,139.756762,I,Above,Gable,0,5701,,63.13786761,0,1.2,,,,1,1,,0.03,nav,1,1930,3,, 31259,NJBF000058443,103 S SWARTHMORE AVE,Ventnor City,NJ,39.33232613,-74.48967424,RES1,3001,,19,NE,1920,1920,3102,2,1,1148.602335,1148.602335,3505,NO,20.06,32.32,3,-2.07,6110,113.671958,123.442181,133.155327,139.743916,I,Above,Gable,0,5701,,26.19007589,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 31260,NJBF000060650,229 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33635202,-74.4952487,RES1,3001,,17,NE,1915,1915,3102,3,1,1159.867967,1159.867967,3505,NO,37.85,47.26,3,-1.16,6106,113.492984,123.298048,133.006673,139.572342,I,Above,Gable,0,5701,,42.55680027,0,0,,,,1,1,,0.03,nav,1,1915,3,, 31261,NJBF000057783,110 S MARTINDALE AVE,Ventnor City,NJ,39.33115496,-74.49071265,RES1,3001,,17,NE,1960,1960,3102,2,1,1666.178269,1666.178269,3505,NO,29.91,39.24,3,6.65,6106,113.665531,123.436867,133.148704,139.739653,I,Above,Hip,0,5701,,34.57554747,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31262,NJBF000058291,106 S SWARTHMORE AVE,Ventnor City,NJ,39.33204301,-74.48993196,RES1,3001,,18,NE,1925,1925,3102,2,1,1644.671901,1644.671901,3505,NO,43.45,55.34,3,8.84,6106,113.670243,123.44077,133.153595,139.742827,I,Above,Gable,0,5701,,49.39512175,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31263,NJBF000058364,106 S BALTIMORE AVE,Ventnor City,NJ,39.33217313,-74.4893191,RES1,3001,,18,NE,1930,1930,3102,2,1,1704.060448,1704.060448,3505,NO,19.56,33.44,3,-2.04,6106,113.681915,123.450204,133.16366,139.753287,I,Above,Gable,0,5701,,26.49955176,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31264,NJBF000058384,109 S BALTIMORE AVE,Ventnor City,NJ,39.33221858,-74.48887985,RES1,3001,,17,NE,1930,1930,3102,2,1,1206.747979,1206.747979,3505,NO,34.5,46.32,3,-2.7,6106,113.690934,123.457489,133.171389,139.761436,I,Above,Hip,0,5701,,40.40559834,0,0.1,,,,1,1,,0.03,nav,1,1930,2,, 31265,NJBF000058107,,Ventnor City,NJ,39.33172537,-74.48970149,RES1,3001,,NaN,NE,1970,0,3102,2,1,4172.934441,4172.934441,3505,NO,20.37,33.26,3,-2.65,6106,113.679787,123.448441,133.161409,139.752064,I,Above,Flat,0,5701,,26.81664466,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31266,NJBF000058366,7214 ATLANTIC AVE,Ventnor City,NJ,39.33217826,-74.49028977,RES1,3001,,NaN,NE,1920,1920,3102,2,1,1851.936155,1851.936155,3505,NO,39.13,45.41,3,6.19,6106,113.660469,123.432896,133.145407,139.733658,I,Above,Hip,0,5701,,42.26802558,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31267,NJBF000057866,108 S MARTINDALE AVE,Ventnor City,NJ,39.33128946,-74.49078812,RES1,3001,,18,NE,1922,1922,3102,2,1,1593.703432,1593.703432,3505,NO,29.7,43.32,3,-2.81,6106,113.661994,123.43403,133.145831,139.736253,I,Above,Hip,0,5701,,36.51141049,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 31268,NJBF000058217,7302 ATLANTIC AVE,Ventnor City,NJ,39.33191484,-74.49083007,RES1,3001,,17,NE,1935,1935,3102,2,1,1338.002572,1338.002572,3505,NO,39.62,53.58,3,8.5,6110,113.652271,123.426255,133.13818,139.726533,I,Above,Gable,0,5701,,46.60071199,0,1.1,,,,1,1,,0.35,nav,1,1935,2,, 31269,NJBF000058208,108 S SWARTHMORE AVE,Ventnor City,NJ,39.33189996,-74.48982328,RES1,3001,,19,NE,1930,1930,3102,3,1,2112.934955,2112.934955,3505,NO,54.14,63.95,3,6.5,6106,113.674647,123.44431,133.157205,139.747087,I,Above,Gable,0,5701,,59.04501778,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 31270,NJBF000058235,112 S BALTIMORE AVE,Ventnor City,NJ,39.33193968,-74.48912692,RES1,3001,,18,NE,1930,1930,3102,3,1,2047.367317,2047.367317,3505,NO,50.76,61.04,3,1.34,6106,113.689405,123.456227,133.169813,139.760538,I,Above,Hip,0,5701,,55.90064429,0,1.1,,,,1,1,,0.03,nav,1,1930,3,, 31271,NJBF000058350,104 S SWARTHMORE AVE,Ventnor City,NJ,39.33214955,-74.49003978,RES1,3001,,18,NE,1923,1923,3102,2,1,926.7682955,926.7682955,3505,NO,24.3,30.55,3,1.14,6110,113.666365,123.437651,133.150398,139.739103,I,Above,Flat,0,5701,,27.42945833,0,1.1,,,,1,1,,0.35,nav,1,1923,2,, 31272,NJBF000060813,237 N FREDERICKSBURG,Ventnor City,NJ,39.33657851,-74.49548916,RES1,3001,,18,NE,1900,1900,3102,2,1,1597.54833,1597.54833,3505,NO,25.57,35.04,3,-1.71,6106,113.484543,123.291246,132.99968,139.564124,I,Above,Gable,0,5701,,30.30479754,0,0,,,,1,1,,0.03,nav,1,1900,2,, 31273,NJBF000058187,111 S SWARTHMORE AVE,Ventnor City,NJ,39.33185741,-74.48931568,RES1,3001,,20,NE,1994,1994,3102,3,1,1020.725878,1020.725878,3505,NO,49.82,58.12,3,-1.59,6106,113.686409,123.4538,133.167179,139.757932,I,Above,Flat,0,5701,,53.96928161,0,1.1,,,,1,1,,0.03,nav,1,1994,3,, 31274,NJBF000058155,103 S MARTINDALE AVE,Ventnor City,NJ,39.33180629,-74.49074928,RES1,3001,,17,NE,1925,1925,3102,2,1,1517.61856,1517.61856,3505,NO,35.73,42.25,3,0.77,6106,113.655584,123.428917,133.140892,139.729727,I,Above,Hip,0,5701,,38.99154371,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31275,NJBF000058211,102 S WASHINGTON AVE,Ventnor City,NJ,39.33190478,-74.49055381,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1368.395789,1368.395789,3505,NO,31.59,42.88,3,7.9,6106,113.658487,123.43127,133.143457,139.732255,I,Above,Gable,0,5701,,37.23561516,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31276,NJBF000060581,225 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33623224,-74.49513738,RES1,3001,,17,NE,1915,1915,3102,2,1,1132.929821,1132.929821,3505,NO,37.53,48.67,3,-0.65,6106,113.497118,123.30138,133.010092,139.576387,I,Above,Hip,0,5701,,43.10042943,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 31277,NJBF000058082,105 S MARTINDALE AVE,Ventnor City,NJ,39.3316761,-74.49064565,RES1,3001,,17,NE,1920,1920,3102,3,1,1471.3114,1471.3114,3505,NO,56.78,62.05,3,1.67,6106,113.659677,123.432206,133.144246,139.733661,I,Above,Hip,0,5701,,59.41840764,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 31278,NJBF000058272,7311 ATLANTIC AVE,Ventnor City,NJ,39.33201278,-74.4916764,RES1,3001,,17,NE,1920,1920,3102,2,1,1757.786844,1757.786844,3505,NO,29.77,35.01,3,4.7,6106,113.632269,123.410132,133.121274,139.708023,I,Above,Hip,0,5701,,32.3919538,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31279,NJBF000059716,103 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33472517,-74.49379689,RES1,3001,,17,NE,1960,1960,3102,1,1,1887.002609,1887.002609,3505,NO,17.38,24.22,3,3.27,6106,113.547609,123.342051,133.051772,139.625756,I,Above,Hip,0,5701,,20.79862351,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 31280,NJBF000059351,15 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33407612,-74.49329052,RES1,3001,,17,NE,1949,1949,3102,2,1,1784.725661,1784.725661,3505,NO,26.39,38.62,3,2.81,6106,113.56781,123.35831,133.068384,139.645517,I,Above,Hip,0,5701,,32.50528619,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 31281,NJBF000058025,107 S MARTINDALE AVE,Ventnor City,NJ,39.3315705,-74.49055149,RES1,3001,,19,NE,2011,2011,3102,2,1,1423.925351,1423.925351,3505,NO,28.81,38.58,3,4.08,6110,113.663258,123.435083,133.147187,139.737089,I,Above,Hip,0,5701,,33.6940873,0,0,,,,1,1,,0.35,nav,1,2011,2,, 31282,NJBF000058356,27 S FREDERICKSBURG AVE,Ventnor City,NJ,39.33215682,-74.49170967,RES1,3001,,17,NE,1925,1925,3102,2,1,1551.501474,1551.501474,3505,NO,30.89,37.71,3,4.22,6106,113.629498,123.407911,133.119056,139.70528,I,Above,Gable,0,5701,,34.29738127,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31283,NJBF000060981,301 N FREDERICKSBURG,Ventnor City,NJ,39.33684973,-74.49561803,RES1,3001,,17,NE,1960,1960,3103,2,1,1999.327543,1999.327543,3505,NO,37.07,43.57,3,4.8,6106,113.47795,123.285925,132.994271,139.557458,I,Above,Gable,0,5701,,40.31956249,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 31284,NJBF000059640,101 N FREDERICKSBURG AVE,Ventnor City,NJ,39.3346005,-74.4937047,RES1,3001,,17,NE,1954,1954,3102,2,1,2208.079636,2208.079636,3505,NO,40.97,52.9,3,5.89,6106,113.551364,123.345074,133.054859,139.629442,I,Above,Hip,0,5701,,46.93277361,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, 31285,NJBF000059808,18 N SWARTHMORE AVE,Ventnor City,NJ,39.33488729,-74.4922174,RES1,3001,,17,NE,1925,1925,3102,2,1,1445.028045,1445.028045,3505,NO,23.86,36.14,3,-0.7,6106,113.580214,123.368309,133.079541,139.654972,I,Above,Hip,0,5701,,30.00220984,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31286,NJBF000064233,112 N SURREY AVE,Ventnor City,NJ,39.34395829,-74.47603813,RES1,3001,,17,NE,1930,1930,3102,1,1,501.1831449,501.1831449,3505,NO,17.82,29.13,3,-0.26,6106,113.814595,123.556364,133.285868,139.805711,I,Above,Gable,0,5701,,23.47538996,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 31287,NJBF000062419,12 N SACRAMENTO AVE,Ventnor City,NJ,39.33940515,-74.48204489,RES1,3001,29,NaN,NE,1922,1922,3102,2,1,3421.274158,3421.274158,3505,NO,28.31,38.53,3,5.21,6106,113.742806,123.499184,133.221481,139.776166,I,Above,Flat,0,5701,,33.42173508,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 31288,NJBF000059140,111 S NEWARK AVE,Ventnor City,NJ,39.33362731,-74.48561973,RES1,3001,,17,NE,1950,1950,3102,2,1,1653.28827,1653.28827,3505,NO,26.24,34.24,3,2.75,6110,113.743078,123.499712,133.217246,139.804386,I,Above,Flat,0,5701,,30.24444621,0,0,,,,1,1,,0.35,nav,1,1950,2,, 31289,NJBF000059323,6927 ATLANTIC AVE,Ventnor City,NJ,39.33400825,-74.48754344,RES1,3001,,19,NE,1950,1950,3102,2,1,1174.388141,1174.388141,3505,NO,43.74,54.27,3,8.25,6110,113.695446,123.461241,133.17689,139.760976,I,Above,Hip,0,5701,,49.00418786,0,1.1,,,,1,1,,0.35,nav,1,1950,2,, 31290,NJBF000058658,21 S WASHINGTON AVE,Ventnor City,NJ,39.3326928,-74.49072018,RES1,3001,,17,NE,1925,1925,3102,3,1,1692.412791,1692.412791,3505,NO,39.76,47.07,3,1.69,6106,113.643789,123.419482,133.131702,139.717517,I,Above,Hip,0,5701,,43.41664316,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 31291,NJBF000063708,,Ventnor City,NJ,39.34246335,-74.47729703,RES1,3001,,NaN,NE,1969,0,3102,2,1,1183.4577,1183.4577,3505,NO,39.71,52.99,3,8.97,6106,113.806596,123.550267,133.278219,139.808626,I,Above,Flat,0,5701,,46.35295444,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31292,NJBF000063921,613 KINGSLEY DRIVE,Ventnor City,NJ,39.34307773,-74.49444583,RES1,3001,,17,NE,1974,1974,3102,2,1,1818.279287,1818.279287,3505,NO,25.11,31.35,3,3.39,6106,113.419242,123.237446,132.947064,139.483726,I,Above,Gable,0,5701,,28.22922909,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31293,NJBF000065617,607 N HARVARD AVE,Ventnor City,NJ,39.34762274,-74.48720345,RES1,3001,,18,NE,1985,1985,3101,2,1,1717.082911,1717.082911,3505,NO,29.58,35.76,3,1.35,6106,113.519894,123.31645,133.03301,139.547527,I,Above,Flat,0,5701,,32.670435,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 31294,NJBF000065610,510 N DERBY AVE,Ventnor City,NJ,39.34760514,-74.48423299,RES1,3001,,17,NE,1970,1970,3101,1,1,1578.762439,1578.762439,3505,NO,14.65,26.17,3,4.04,6106,113.585909,123.36972,133.08954,139.602166,I,Above,Hip,0,5701,,20.40828396,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 31295,NJBF000065573,429 N OXFORD AVE,Ventnor City,NJ,39.34748854,-74.48089031,RES1,3001,,17,NE,1945,1945,3102,2,1,1866.630948,1866.630948,3505,NO,43.11,56.21,3,8.1,6106,113.661365,123.430785,133.154425,139.663967,I,Above,Hip,0,5701,,49.65934455,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 31296,NJBF000060444,204 N WASHINGTON AVE,Ventnor City,NJ,39.33598206,-74.49418194,RES1,3001,,17,NE,1950,1950,3102,2,1,922.398402,922.398402,3505,NO,46.98,58.68,3,8.56,6106,113.521669,123.321143,133.0307,139.599246,I,Above,Gable,0,5701,,52.83078842,0,0,,,,1,1,,0.03,nav,1,1950,2,, 31297,NJBF000065713,6005 FULTON AVE,Ventnor City,NJ,39.3478985,-74.48532,RES1,3001,,17,NE,1992,1992,3101,2,1,1417.889304,1417.889304,3505,NO,39.96,53.88,3,4.05,6106,113.558041,123.347074,133.065653,139.577602,I,Above,Flat,0,5701,,46.92101099,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, 31298,NJBF000063702,17 S VICTORIA AVE,Ventnor City,NJ,39.34243559,-74.47139757,RES1,3001,,17,NE,1920,1920,3102,2,1,1558.225336,1558.225336,3505,NO,27.16,35.34,3,1.42,6106,113.936822,123.656165,133.391309,139.907014,I,Above,Hip,0,5701,,31.24984996,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31299,NJBF000064068,16 S NASHVILLE AVE,Ventnor City,NJ,39.34348885,-74.46925826,RES1,3001,,17,NE,1905,1905,3102,3,1,1376.096358,1376.096358,3505,NO,32.98,46.05,3,-0.77,6106,113.969975,123.682982,133.420923,139.92499,I,Above,Gable,0,5701,,39.51893264,0,0,,,,1,1,,0.03,nav,1,1905,3,, 31300,NJBF000065647,605 N CAMBRIDGE AVE,Ventnor City,NJ,39.34769689,-74.48642455,RES1,3001,,17,NE,1968,1968,3101,2,1,1133.63385,1133.63385,3505,NO,43.73,54.71,3,7.34,6106,113.536172,123.329535,133.046927,139.560652,I,Above,Flat,0,5701,,49.22360686,0,0,,,,1,1,,0.03,nav,1,1968,2,, 31301,NJBF000062669,7 N CAMBRIDGE AVE,Ventnor City,NJ,39.33997121,-74.48050988,RES1,3001,,18,NE,1915,1915,3102,2,1,1380.037638,1380.037638,3505,NO,35.72,42.34,3,-2.79,6106,113.769034,123.520327,133.244392,139.793983,I,Above,Hip,0,5701,,39.03029493,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 31302,NJBF000065770,605 N CORNWALL AVE,Ventnor City,NJ,39.34804433,-74.48580997,RES1,3001,,17,NE,1964,1964,3101,1,1,1477.197451,1477.197451,3505,NO,18.98,28.83,3,-0.33,6106,113.545295,123.336714,133.054735,139.566259,I,Above,Hip,0,5701,,23.9080123,0,0,,,,1,1,,0.03,nav,1,1964,1,, 31303,NJBF000065628,509 N DERBY AVE,Ventnor City,NJ,39.347656,-74.4837325,RES1,3001,,17,NE,1958,1958,3101,1,1,1433.336254,1433.336254,3505,NO,15.19,25.36,3,1.58,6106,113.596315,123.3781,133.098474,139.610378,I,Above,Gable,0,5701,,20.27469157,0,0,,,,1,1,,0.03,nav,1,1958,1,, 31304,NJBF000065547,504 N DORSET AVE,Ventnor City,NJ,39.34743329,-74.4832062,RES1,3001,,17,NE,1977,1977,3101,1,1,1766.270974,1766.270974,3505,NO,20.87,34.61,3,8.74,6106,113.61087,123.38997,133.110962,139.623531,I,Above,Gable,0,5701,,27.737925,0,0,,,,1,1,,0.03,nav,1,1977,1,, 31305,NJBF000065543,412 N SOMERSET AVE,Ventnor City,NJ,39.34739699,-74.480442,RES1,3001,,17,NE,1966,1966,3102,1,1,1583.969265,1583.969265,3505,NO,12.13,20.62,3,-0.37,6106,113.672461,123.439811,133.16398,139.673394,I,Above,Hip,0,5701,,16.37385339,0,0,,,,1,1,,0.03,nav,1,1966,1,, 31306,NJBF000060343,7307 MONMOUTH AVE,Ventnor City,NJ,39.33580967,-74.49439304,RES1,3001,,17,NE,1950,1950,3102,1,1,586.1210114,586.1210114,3505,NO,25.95,36.47,3,7.32,6106,113.519391,123.319318,133.028656,139.597614,I,Above,Gable,0,5701,,31.20577744,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 31307,NJBF000062685,223 N NEWARK AVE,Ventnor City,NJ,39.34001126,-74.49140345,RES1,3001,,17,NE,1953,1953,3102,1,1,1174.237947,1174.237947,3505,NO,21.42,28.64,3,3.37,6106,113.527916,123.325655,133.038222,139.591424,I,Above,Gable,0,5701,,25.02888331,0,1.1,,,,1,1,,0.03,nav,1,1953,1,, 31308,NJBF000063713,5504 WINCHESTER AVE,Ventnor City,NJ,39.34247422,-74.47457486,RES1,3001,,17,NE,1942,1942,3102,1,1,1886.069033,1886.069033,3505,NO,9.99,21.99,3,-2.89,6106,113.866415,123.598853,133.330071,139.854257,I,Above,Hip,0,5701,,15.98946423,0,1.2,,,,1,1,,0.03,nav,1,1942,1,, 31309,NJBF000062762,20 N CAMBRIDGE AVE,Ventnor City,NJ,39.34016504,-74.48116995,RES1,3001,,17,NE,1900,1900,3102,2,2,2007.275154,2007.275154,3505,NO,20.84,29.2,3,-1.93,6106,113.751873,123.506397,133.229737,139.779183,I,Above,Hip,0,5701,,25.01980866,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 31310,NJBF000061241,121 N WYOMING AVE,Ventnor City,NJ,39.33729366,-74.49032674,RES1,3001,,17,NE,1930,1930,3102,2,1,847.8986412,847.8986412,3505,NO,26.26,36.28,3,-1.93,6106,113.588725,123.375041,133.088448,139.65525,I,Above,Gable,0,5701,,31.27154169,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31311,NJBF000063996,106 S BATON ROUGE AVE,Ventnor City,NJ,39.34330249,-74.46616742,RES3B,3001,,17,E,1929,1929,3303,3,1,2183.507758,2183.507758,3504,NO,54.73,63.56,-4,0,6106,114.040301,123.740477,133.482441,139.977147,I,Above,Hip,0,NaN,,59.14259236,0,1.1,,,,1,1,,0.03,nav,1,1929,3,, 31312,NJBF000060115,107 N WASHINGTON AVE,Ventnor City,NJ,39.33543208,-74.49292981,RES1,3001,,17,NE,1948,1948,3102,1,1,1675.141051,1675.141051,3505,NO,16.7,31.39,3,0.34,6106,113.556924,123.349541,133.060188,139.632535,I,Above,Hip,0,5701,,24.04503401,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 31313,NJBF000060175,17 N MELBOURNE AVE,Ventnor City,NJ,39.33553097,-74.49067703,RES1,3001,,17,NE,1930,1930,3102,2,1,1317.693471,1317.693471,3505,NO,37.28,52.04,3,4.14,6106,113.605267,123.388485,133.101305,139.675778,I,Above,Hip,0,5701,,44.65990359,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31314,NJBF000064075,,Ventnor City,NJ,39.3435071,-74.46559619,RES3B,3001,,NaN,E,1907,0,3303,4,1,2611.76652,2611.76652,3504,NO,76.17,87.21,-4,0,6106,114.050135,123.748485,133.491224,139.983011,I,Above,Flat,0,NaN,,81.69184483,0,0,,,,1,1,,0.03,nav,1,1907,4,, 31315,NJBF000064004,111 S BATON ROUGE AVE,Ventnor City,NJ,39.343314,-74.4656955,RES3B,3001,,17,E,1908,1908,3303,3,1,1337.015798,1337.015798,3504,NO,52.86,61.35,-4,0,6106,114.050498,123.748816,133.491408,139.98441,I,Above,Hip,0,NaN,,57.10487209,0,1.1,,,,1,1,,0.03,nav,1,1908,3,, 31316,NJBF000064043,109 S BATON ROUGE AVE,Ventnor City,NJ,39.34341223,-74.46580534,RES3B,3001,,18,E,1907,1907,3303,2,1,1809.207499,1809.207499,3504,NO,26.33,39.46,-4,0,6106,114.046797,123.745771,133.488225,139.981172,I,Above,Gable,0,NaN,,32.8980793,0,1.1,,,,1,1,,0.03,nav,1,1907,2,, 31317,NJBF000065153,14 N JACKSON AVE,Ventnor City,NJ,39.34627221,-74.46708191,RES3A,3001,,45,NE,1935,1935,3301,2,2,1648.72241,1648.72241,3505,NO,45.04,58.6,3,8.23,6106,113.981432,123.691629,133.432523,139.916505,I,Above,Hip,0,5701,,51.81842172,0,0,,,,1,1,,0.03,nav,1,1935,2,, 31318,NJBF000065936,603 N DERBY AVE,Ventnor City,NJ,39.34848576,-74.48443587,RES1,3001,,17,NE,1988,1988,3101,2,1,1349.127969,1349.127969,3505,NO,33.18,38.7,3,3.92,6106,113.570008,123.356427,133.075913,139.584066,I,Above,Flat,0,5701,,35.93954859,0,0,,,,1,1,,0.03,nav,1,1988,2,, 31319,NJBF000062123,6801 MONMOUTH AVE,Ventnor City,NJ,39.3388341,-74.48880585,RES1,3001,,47,NE,1920,1920,3102,2,2,2238.959601,2238.959601,3505,NO,27.6,40.2,3,-0.64,6106,113.601297,123.384979,133.100059,139.660198,I,Above,Flat,0,5701,,33.90167848,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31320,NJBF000062752,,Ventnor City,NJ,39.3401388,-74.48479679,RES1,3001,,NaN,NE,1900,0,3102,2,1,617.3966888,617.3966888,3505,NO,41.95,53.1,3,5.38,6106,113.672184,123.441956,133.161315,139.714249,I,Above,Flat,0,5701,,47.52663372,0,0,,,,1,1,,0.03,nav,1,1900,2,, 31321,NJBF000063733,29 S WEYMOUTH AVE,Ventnor City,NJ,39.34254615,-74.47002741,RES1,3001,,NaN,NE,1925,1906,3102,3,1,2213.925538,2213.925538,3505,NO,45.32,54.23,3,8.95,6110,113.965504,123.679526,133.416413,139.927414,I,Above,Hip,0,5701,,49.77469034,0,0,,,,1,1,,0.35,nav,1,1925,3,, 31322,NJBF000065532,5403 BALFOUR AVE,Ventnor City,NJ,39.34735756,-74.47896899,RES1,3001,,17,NE,1968,1968,3102,2,1,2053.259265,2053.259265,3505,NO,34.84,48.17,3,-0.67,6106,113.705512,123.466605,133.192511,139.699899,I,Above,Gable,0,5701,,41.50346355,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 31323,NJBF000060458,112 S PORTLAND AVE,Ventnor City,NJ,39.33600804,-74.48070613,RES1,3001,,18,NE,1945,1945,3102,3,1,1582.837754,1582.837754,3505,NO,49.83,56.82,3,1.26,6106,113.818457,123.560736,133.284033,139.855843,I,Above,Hip,0,5701,,53.32763718,0,0,,,,1,1,,0.03,nav,1,1945,3,, 31324,NJBF000061485,6904 MONMOUTH AVE,Ventnor City,NJ,39.33773199,-74.49029025,RES1,3001,,17,NE,1940,1940,3102,1,1,1120.909903,1120.909903,3505,NO,20.49,26.14,3,7.33,6106,113.583544,123.370819,133.084312,139.649081,I,Above,Hip,0,5701,,23.31240641,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 31325,NJBF000066439,711 N CORNWALL AVE,Ventnor City,NJ,39.3497545,-74.48719,RES1,3001,,17,NE,1965,1965,3101,1,1,1236.17763,1236.17763,3505,NO,11.24,21.07,3,-0.7,6106,113.492636,123.293287,133.009537,139.512958,I,Above,Flat,0,5701,,16.15565758,0,0,,,,1,1,,0.03,nav,1,1965,1,, 31326,NJBF000063710,104 N DUDLEY AVE,Ventnor City,NJ,39.34246983,-74.47824874,COM1,3001,,47,ME,2008,2008,3401,2,2,1161.672427,1161.672427,3507,NO,33.47,45.94,1,2.35,6106,113.785515,123.533164,133.259996,139.792218,I,Above,Gable,0,NaN,,39.70571957,0,1.1,,,,1,1,,0.03,nav,1,2008,2,, 31327,NJBF000063675,5205 ATLANTIC AVE,Ventnor City,NJ,39.34236137,-74.4702992,RES1,3001,,NaN,NE,1930,1930,3102,3,1,2265.066133,2265.066133,3505,NO,63.25,75.24,3,5.22,6110,113.961972,123.676679,133.413205,139.925945,I,Above,Flat,0,5701,,69.24211336,0,0,,,,1,1,,0.35,nav,1,1930,3,, 31328,NJBF000059745,113 S AVOLYN AVE,Ventnor City,NJ,39.33477823,-74.48288924,RES1,3001,,20,NE,1969,2018,3102,2,1,1391.879609,1391.879609,3505,NO,35.58,48.22,3,-1.4,6106,113.787288,123.535503,133.256172,139.837154,I,Above,Hip,0,5701,,41.90408542,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31329,NJBF000065738,414 N SUFFOLK AVE,Ventnor City,NJ,39.34795174,-74.48000354,RES1,3001,,17,NE,1972,1972,3102,2,1,2217.806103,2217.806103,3505,NO,25.3,34.07,3,-0.62,6106,113.674955,123.44157,133.166204,139.672045,I,Above,Flat,0,5701,,29.68266601,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31330,NJBF000066650,711 N DERBY AVE,Ventnor City,NJ,39.3503569,-74.48593895,RES1,3001,,17,NE,1965,1965,3101,1,1,1408.521687,1408.521687,3505,NO,23.28,30.01,3,5.99,6106,113.512653,123.309055,133.026572,139.526095,I,Above,Flat,0,5701,,26.64497375,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 31331,NJBF000065674,609 N HARVARD AVE,Ventnor City,NJ,39.34777598,-74.48732862,RES1,3001,,NaN,NE,1981,1981,3101,2,1,1806.371433,1806.371433,3505,NO,33.44,43.27,3,3.12,6106,113.515114,123.312519,133.028923,139.542701,I,Above,Gable,0,5701,,38.35667053,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, 31332,NJBF000065587,411 N SOMERSET AVE,Ventnor City,NJ,39.34753434,-74.4800243,RES1,3001,,17,NE,1960,1960,3102,1,1,1551.829822,1551.829822,3505,NO,12.88,20.42,3,1.29,6106,113.679923,123.445791,133.170438,139.678523,I,Above,Gable,0,5701,,16.65445037,0,0,,,,1,1,,0.03,nav,1,1960,1,, 31333,NJBF000065704,606 N CORNWALL AVE,Ventnor City,NJ,39.34786917,-74.48620052,RES1,3001,,17,NE,1968,1968,3101,1,1,1213.593298,1213.593298,3505,NO,13.66,26.47,3,3.09,6106,113.538902,123.331649,133.049263,139.561954,I,Above,Hip,0,5701,,20.0686657,0,0,,,,1,1,,0.03,nav,1,1968,1,, 31334,NJBF000061306,6504 VENTNOR AVE,Ventnor City,NJ,39.33740609,-74.48343186,COM1,3001,,NaN,ME,1928,1924,3401,3,3,1333.161625,1333.161625,3507,NO,57.81,65.09,1,0.34,6106,113.739324,123.496605,133.217146,139.784068,I,Above,Gable,0,NaN,,61.44684032,0,1.1,,,,1,1,,0.03,nav,1,1928,3,, 31335,NJBF000061433,202 N WYOMING AVE,Ventnor City,NJ,39.33762063,-74.49113893,RES1,3001,,20,NE,2017,2017,3102,2,1,1459.806977,1459.806977,3505,NO,34.55,46.34,3,-1,6106,113.56631,123.356949,133.069596,139.634264,I,Above,Gable,0,5701,,40.44439493,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, 31336,NJBF000060658,6505 ATLANTIC AVE,Ventnor City,NJ,39.33636359,-74.48283458,RES1,3001,,19,NE,2014,2014,3102,3,1,2047.959082,2047.959082,3505,NO,45.49,58.95,3,0.38,6110,113.766705,123.518823,133.239848,139.812055,I,Above,Hip,0,5701,,52.2220027,0,1.2,,,,1,1,,0.35,nav,1,2014,3,, 31337,NJBF000065539,512 N BURGHLEY AVE,Ventnor City,NJ,39.34738842,-74.48490096,RES1,3001,,17,NE,1972,1972,3101,2,1,1195.478197,1195.478197,3505,NO,36.56,47.67,3,0.32,6106,113.573939,123.360162,133.079262,139.593585,I,Above,Gable,0,5701,,42.11487067,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31338,NJBF000063660,5406 VENTNOR AVE,Ventnor City,NJ,39.34232908,-74.47317345,RES1,3001,,18,NE,1918,1918,3102,2,1,1968.429737,1968.429737,3505,NO,30.8,43.03,3,8.94,6106,113.899195,123.625547,133.358473,139.879751,I,Above,Gable,0,5701,,36.91489714,0,1.1,,,,1,1,,0.03,nav,1,1918,2,, 31339,NJBF000065726,611 N HARVARD AVE,Ventnor City,NJ,39.34793001,-74.48744528,RES1,3001,,17,NE,1983,1983,3101,2,1,1974.692173,1974.692173,3505,NO,29.87,44.58,3,8.68,6106,113.510544,123.308755,133.025014,139.538043,I,Above,Flat,0,5701,,37.22976493,0,0,,,,1,1,,0.03,nav,1,1983,2,, 31340,NJBF000060466,9 N ROSBOROUGH AVE,Ventnor City,NJ,39.33602241,-74.48836552,RES1,3001,,NaN,NE,1930,1930,3102,2,4,1538.288184,1538.288184,3505,NO,31.33,41.47,3,6.07,6106,113.649474,123.424117,133.139304,139.713416,I,Above,Hip,0,5701,,36.39713727,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31341,NJBF000060418,7 N ROSBOROUGH AVE,Ventnor City,NJ,39.33593232,-74.4883211,RES1,3001,,17,NE,1920,1920,3102,2,1,1851.370915,1851.370915,3505,NO,38.75,46.4,3,5.21,6106,113.651706,123.425921,133.14114,139.715708,I,Above,Hip,0,5701,,42.57179626,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31342,NJBF000065631,503 N DORSET AVE,Ventnor City,NJ,39.34765947,-74.48274046,RES1,3001,,17,NE,1990,1990,3102,2,1,2129.820942,2129.820942,3507,NO,29.78,42.79,1,-0.87,6106,113.618249,123.395825,133.117322,139.628205,I,Above,Hip,0,5701,,36.28561262,0,0,,,,1,1,,0.03,nav,1,1990,2,, 31343,NJBF000061231,,Ventnor City,NJ,39.33727528,-74.49202384,RES1,3001,,NaN,NE,1969,0,3102,2,1,2379.351781,2379.351781,3505,NO,38.38,51.05,3,4.34,6106,113.551506,123.345063,133.056817,139.622289,I,Above,Flat,0,5701,,44.71679412,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31344,NJBF000065569,511 N BURGHLEY AVE,Ventnor City,NJ,39.34748391,-74.48448008,RES1,3001,,17,NE,1952,1952,3101,1,1,1568.412249,1568.412249,3505,NO,23.14,33.93,3,7.54,6106,113.582012,123.366633,133.08619,139.599667,I,Above,Hip,0,5701,,28.53834618,0,0,,,,1,1,,0.03,nav,1,1952,1,, 31345,NJBF000061488,106 N BUFFALO AVE,Ventnor City,NJ,39.33773939,-74.48793555,RES1,3001,,17,NE,1922,1922,3102,2,1,960.5827919,960.5827919,3505,NO,30.96,45.45,3,1.73,6106,113.635426,123.412649,133.128505,139.694389,I,Above,Gable,0,5701,,38.20791802,0,0,,,,1,1,,0.03,nav,1,1922,2,, 31346,NJBF000064055,6 N VICTORIA AVE,Ventnor City,NJ,39.34345381,-74.47268925,RES1,3001,,17,NE,1940,1940,3102,2,1,1513.811205,1513.811205,3505,NO,33.07,47.16,3,0.65,6106,113.894988,123.62187,133.355462,139.869737,I,Above,Gable,0,5701,,40.11453652,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31347,NJBF000061419,110 N WISSAHICKON AVE,Ventnor City,NJ,39.33760499,-74.48857134,RES1,3001,,17,NE,1930,1930,3102,1,1,1381.000142,1381.000142,3505,NO,17.73,24.94,3,5.25,6106,113.623239,123.402833,133.118028,139.684351,I,Above,Hip,0,5701,,21.33575229,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 31348,NJBF000063545,5305 ATLANTIC AVE,Ventnor City,NJ,39.3420165,-74.4710855,RES1,3001,,NaN,NE,1950,1950,3102,1,1,2968.567769,2968.567769,3505,NO,16.31,24.53,3,-0.96,6110,113.94924,123.666363,133.401864,139.918696,I,Above,Hip,0,5701,,20.41699197,0,0,,,,1,1,,0.35,nav,1,1950,1,, 31349,NJBF000063920,4 N SURREY AVE,Ventnor City,NJ,39.34307751,-74.47331433,RES1,3001,,17,NE,1910,1910,3102,1,1,1688.098081,1688.098081,3505,NO,23.13,37.29,3,5.87,6106,113.88619,123.614799,133.347597,139.865448,I,Above,Hip,0,5701,,30.21264951,0,1.1,,,,1,1,,0.03,nav,1,1910,1,, 31350,NJBF000064727,6103 BALFOUR AVE,Ventnor City,NJ,39.34517266,-74.48352963,RES1,3001,,17,NE,1953,1953,3102,1,1,1167.607338,1167.607338,3505,NO,27.16,41.66,3,8.12,6106,113.633215,123.409009,133.129804,139.654728,I,Above,Gable,0,5701,,34.41270499,0,0,,,,1,1,,0.03,nav,1,1953,1,, 31351,NJBF000061200,7033-7035 VENTNOR GARDENS,Ventnor City,NJ,39.33722745,-74.49351791,RES1,3001,,45,NE,1970,1970,3102,2,2,2470.616282,2470.616282,3505,NO,23.88,36.82,3,0.43,6106,113.519159,123.319033,133.029361,139.59352,I,Above,Hip,0,5701,,30.3506797,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31352,NJBF000063707,100 S AMHERST AVE,Ventnor City,NJ,39.34245901,-74.46912445,RES1,3001,,17,NE,2014,1925,3102,3,2,1878.86435,1878.86435,3505,NO,53.75,61.24,3,-0.22,6110,113.986493,123.696665,133.4347,139.943246,I,Above,Hip,0,5701,,57.49497092,0,0,,,,1,1,,0.35,nav,1,2014,3,, 31353,NJBF000065313,513 N HARVARD AVE,Ventnor City,NJ,39.34670879,-74.48649549,RES1,3001,,17,NE,1970,1970,3101,2,1,1401.537234,1401.537234,3505,NO,34.45,39.9,3,0.16,6106,113.547483,123.339143,133.056569,139.575513,I,Above,Gable,0,5701,,37.17498949,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31354,NJBF000061506,6707 WINCHESTER AVE,Ventnor City,NJ,39.33775969,-74.48742389,RES1,3001,,NaN,NE,1950,0,3102,2,1,562.464184,562.464184,3505,NO,36.01,45.92,3,1.1,6106,113.646441,123.421534,133.137916,139.70382,I,Above,Flat,0,5701,,40.96180809,0,0,,,,1,1,,0.03,nav,1,1950,2,, 31355,NJBF000059701,6809 ATLANTIC AVE,Ventnor City,NJ,39.33470354,-74.48614038,RES1,3001,,19,NE,1920,1920,3102,3,1,2149.160333,2149.160333,3505,NO,55.29,62.71,3,-0.6,6110,113.716717,123.478436,133.195661,139.777288,I,Above,Hip,0,5701,,59.00011616,0,1.1,,,,1,1,,0.35,nav,1,1920,3,, 31356,NJBF000061226,223-225 N SWARTHMORE AVE,Ventnor City,NJ,39.3372691,-74.49418902,RES1,3001,,45,NE,1930,1930,3102,5,2,2178.79933,2178.79933,3505,NO,61.8,76.2,3,1.85,6106,113.503754,123.306636,133.016341,139.579565,I,Above,Hip,0,5701,,69.0029569,0,0,,,,1,1,,0.03,nav,1,1930,5,, 31357,NJBF000063521,211 N SACRAMENTO AVE,Ventnor City,NJ,39.34194241,-74.48359187,RES1,3001,,47,NE,1925,1925,3102,1,2,1414.599928,1414.599928,3505,NO,14.16,22.58,3,-1.65,6106,113.674623,123.443519,133.164274,139.706633,I,Above,Hip,0,5701,,18.36963994,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 31358,NJBF000063509,1 N OXFORD AVE,Ventnor City,NJ,39.34190073,-74.47569046,RES1,3001,,17,NE,1930,1930,3102,2,1,1973.685384,1973.685384,3505,NO,36.69,45.55,3,6.52,6106,113.849462,123.5852,133.315032,139.8449,I,Above,Hip,0,5701,,41.12229024,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 31359,NJBF000063634,5414 VENTNOR AVE,Ventnor City,NJ,39.34224807,-74.47337276,RES1,3001,,17,NE,1910,1910,3102,2,1,2079.505977,2079.505977,3505,NO,39.02,44.94,3,0.1,6106,113.895867,123.622856,133.355529,139.877759,I,Above,Flat,0,5701,,41.98164703,0,1.2,,,,1,1,,0.03,nav,1,1910,2,, 31360,NJBF000063565,6110 MONMOUTH AVE,Ventnor City,NJ,39.34206953,-74.48133364,RES1,3001,,17,NE,1925,1925,3102,2,1,702.2506408,702.2506408,3505,NO,32.32,37.52,3,0.46,6106,113.722773,123.482431,133.205703,139.744956,I,Above,Hip,0,5701,,34.91827147,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31361,NJBF000063489,,Ventnor City,NJ,39.34186555,-74.48423461,RES1,3001,,NaN,NE,1969,0,3102,2,1,1078.776426,1078.776426,3505,NO,46.42,61.13,3,8.92,6106,113.661433,123.43288,133.15293,139.696208,I,Above,Gable,0,5701,,53.77531882,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31362,NJBF000061193,,Ventnor City,NJ,39.33722093,-74.48177646,COM1,3001,,NaN,ME,1969,0,3401,3,1,9456.533222,9456.533222,3507,NO,35.36,45.63,1,0.1,6106,113.778338,123.528188,133.250508,139.816949,I,Above,Flat,0,NaN,,40.49326618,0,0,,,,1,1,,0.03,nav,1,1969,3,, 31363,NJBF000065327,108 N OXFORD AVE,Ventnor City,NJ,39.34675135,-74.48079949,RES1,3001,,17,NE,1986,1986,3102,2,1,2375.950233,2375.950233,3505,NO,38.95,46.46,3,5.4,6106,113.672962,123.440505,133.16431,139.677653,I,Above,Gable,0,5701,,42.70555632,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 31364,NJBF000062088,115 N AVOLYN AVE,Ventnor City,NJ,39.33877637,-74.48615469,RES1,3001,,17,NE,1940,1940,3102,1,1,1474.359495,1474.359495,3505,NO,12.93,24.15,3,-1.39,6106,113.660628,123.432855,133.150662,139.711331,I,Above,Hip,0,5701,,18.53667812,0,1.2,,,,1,1,,0.03,nav,1,1940,1,, 31365,NJBF000063607,,Ventnor City,NJ,39.34217225,-74.47904435,RES1,3001,,NaN,NE,1969,0,3102,2,1,951.0971531,951.0971531,3505,NO,35.11,41.47,3,1.45,6106,113.771941,123.522231,133.248125,139.783378,I,Above,Flat,0,5701,,38.29102828,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31366,NJBF000060379,6605 ATLANTIC AVE,Ventnor City,NJ,39.33588142,-74.48444566,RES1,3001,,NaN,NE,1930,1930,3102,1,1,2490.610799,2490.610799,3505,NO,22.71,29.33,3,8.16,6106,113.737831,123.495486,133.214703,139.790365,I,Above,Hip,0,5701,,26.01967481,0,0,,,,1,1,,0.03,nav,1,1930,1,, 31367,NJBF000061461,203 N LAFAYETTE AVE,Ventnor City,NJ,39.33768188,-74.49135156,RES1,3001,,17,NE,1962,1962,3102,1,1,604.1822808,604.1822808,3505,NO,15.68,25.79,3,-2.75,6106,113.560769,123.352479,133.064926,139.629142,I,Above,Gable,0,5701,,20.73727144,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 31368,NJBF000063706,6101 MONMOUTH AVE,Ventnor City,NJ,39.34244913,-74.48210218,RES3D,3001,,NaN,E,1965,1965,3305,8,1,1707.786388,1707.786388,3507,NO,146.46,154.53,1,-0.97,6106,113.700775,123.464531,133.186951,139.725077,I,Above,Flat,0,NaN,,150.4951896,0,0,,,,2,2,,0.03,nav,1,1965,8,, 31369,NJBF000060439,105 N BALTIMORE AVE,Ventnor City,NJ,39.33597635,-74.49187693,RES1,3001,,17,NE,1930,1930,3102,2,1,1418.476185,1418.476185,3505,NO,39.83,47.19,3,4.67,6106,113.572639,123.362177,133.073906,139.645211,I,Above,Hip,0,5701,,43.50918754,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31370,NJBF000060501,108 N MELBOURNE AVE,Ventnor City,NJ,39.33609131,-74.49175883,RES1,3001,,18,NE,2016,2016,3102,2,1,518.3843464,518.3843464,3505,NO,21.39,30.32,3,-2.85,6106,113.573656,123.362991,133.074849,139.645785,I,Above,Gable,0,5701,,25.85115536,0,1.2,,,,1,1,,0.03,nav,1,2016,2,, 31371,NJBF000060689,7200 MONMOUTH AVE,Ventnor City,NJ,39.33639948,-74.49270425,RES1,3001,,17,NE,1948,1948,3102,1,1,2234.549361,2234.549361,3505,NO,15.32,30.08,3,1.75,6106,113.548543,123.34275,133.053748,139.622344,I,Above,Hip,0,5701,,22.69832216,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 31372,NJBF000060257,111 S NEWPORT AVE,Ventnor City,NJ,39.33566949,-74.48142974,RES1,3001,,17,NE,1929,1929,3102,3,1,1779.63774,1779.63774,3505,NO,38.45,47.33,3,-0.84,6106,113.807162,123.551593,133.274027,139.848704,I,Above,Hip,0,5701,,42.88756254,0,1.1,,,,1,1,,0.03,nav,1,1929,3,, 31373,NJBF000060420,19 N LAFAYETTE AVE,Ventnor City,NJ,39.33593416,-74.49009751,RES1,3001,,17,NE,1936,1936,3102,2,1,1461.593471,1461.593471,3505,NO,23.54,31.87,3,2.38,6106,113.612478,123.394283,133.107732,139.680964,I,Above,Gable,0,5701,,27.70119009,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 31374,NJBF000063589,707 N BALTIMORE AVE,Ventnor City,NJ,39.34212091,-74.49726333,RES1,3001,,17,NE,1922,1922,3102,2,1,1386.574264,1386.574264,3505,NO,35.83,44.95,3,5.62,6106,113.36963,123.197943,132.904988,139.443691,I,Above,Hip,0,5701,,40.39150562,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 31375,NJBF000061258,106 N NEWARK AVE,Ventnor City,NJ,39.33733115,-74.48909881,RES1,3001,,18,NE,1920,1920,3102,1,1,1429.998417,1429.998417,3505,NO,25.2,37.36,3,7.39,6106,113.615331,123.396483,133.111115,139.678522,I,Above,Hip,0,5701,,31.2794533,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 31376,NJBF000063629,103 S FRANKFORT AVE,Ventnor City,NJ,39.34223796,-74.46921833,RES1,3001,,17,NE,2014,1923,3102,3,1,2049.689603,2049.689603,3505,NO,42.23,55.22,3,8.29,6106,113.987349,123.697402,133.435297,139.945192,I,Above,Gable,0,5701,,48.72657957,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 31377,NJBF000063601,109 S AMHERST AVE,Ventnor City,NJ,39.34215,-74.4683925,RES3B,3001,,19,E,1920,1920,3303,2,1,2193.063517,2193.063517,3504,NO,28.2,42,-4,0,6106,114.006652,123.713174,133.452123,139.95971,I,Above,Hip,0,NaN,,35.10374315,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31378,NJBF000063584,,Ventnor City,NJ,39.34211,-74.468108,RES3B,3001,,NaN,E,1920,0,3303,4,1,1458.683586,1458.683586,3504,NO,54.67,67.87,-4,0,6106,114.013416,123.718704,133.458016,139.964834,I,Above,Flat,0,NaN,,61.27068865,0,0,,,,1,1,,0.03,nav,1,1920,4,, 31379,NJBF000064480,219 N DORSET AVE,Ventnor City,NJ,39.34459618,-74.48030152,RES1,3001,,17,NE,1950,1950,3102,7,1,997.7308747,997.7308747,3505,NO,88.54,98.7,3,1.01,6106,113.712131,123.473061,133.197534,139.721709,I,Above,Flat,0,5701,,93.6205434,0,0,,,,1,1,,0.03,nav,1,1950,7,, 31380,NJBF000064032,606 N BUFFALO AVE,Ventnor City,NJ,39.34338356,-74.49344172,RES1,3001,,17,NE,1986,1986,3102,1,1,1545.638597,1545.638597,3505,NO,20.53,33.32,3,7.97,6106,113.437412,123.251933,132.962498,139.4983,I,Above,Gable,0,5701,,26.92549762,0,0,,,,1,1,,0.03,nav,1,1986,1,, 31381,NJBF000060036,6929 VENTNOR AVE,Ventnor City,NJ,39.3352856,-74.48872324,RES1,3001,738,NaN,NE,1950,1950,3102,3,3,1929.378543,1929.378543,3505,NO,40.76,50.78,3,6.76,6106,113.651749,123.425976,133.140684,139.717999,I,Above,Hip,0,5701,,45.76791672,0,1.1,,,,1,1,,0.03,nav,1,1950,3,, 31382,NJBF000059276,11-13 N MARTINDALE,Ventnor City,NJ,39.33391065,-74.49242892,RES1,3001,,NaN,NE,1908,0,3102,2,1,1639.429435,1639.429435,3505,NO,38.19,46.33,3,4.45,6106,113.589117,123.37547,133.086322,139.665275,I,Above,Flat,0,5701,,42.26240208,0,0,,,,1,1,,0.03,nav,1,1908,2,, 31383,NJBF000062118,130 N RICHARDS AVE,Ventnor City,NJ,39.33882185,-74.48809207,RES1,3001,,17,NE,1927,1927,3102,2,1,1102.667448,1102.667448,3505,NO,33.06,41.34,3,1.47,6106,113.617232,123.39783,133.113636,139.67402,I,Above,Hip,0,5701,,37.20171299,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 31384,NJBF000066492,713 N CORNWALL AVE,Ventnor City,NJ,39.34990044,-74.48731357,RES1,3001,,17,NE,1980,1980,3101,2,1,1353.01002,1353.01002,3505,NO,26.43,37.44,3,2.02,6106,113.488024,123.289482,133.005571,139.508306,I,Above,Hip,0,5701,,31.93772166,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31385,NJBF000060431,5 S BUFFALO AVE,Ventnor City,NJ,39.3359645,-74.486069,RES1,3001,,17,NE,1900,1900,3102,2,1,920.2739772,920.2739772,3505,NO,24.54,38.58,3,-1.03,6106,113.700908,123.465644,133.183171,139.758462,I,Above,Hip,0,5701,,31.55654843,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 31386,NJBF000063927,104 N SOMERSET AVE,Ventnor City,NJ,39.34309656,-74.47698867,RES1,3001,,16,NE,1940,1940,3102,1,1,1277.426797,1277.426797,3505,NO,18.77,27.3,3,0.97,6106,113.80499,123.548804,133.277146,139.80355,I,Above,Hip,0,5701,,23.03500959,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 31387,NJBF000063939,106 N SOMERSET AVE,Ventnor City,NJ,39.34315016,-74.47704033,RES1,3001,,16,NE,1940,1940,3102,1,1,1350.883,1350.883,3505,NO,12.64,18.25,3,-2.77,6106,113.803165,123.547309,133.275592,139.801819,I,Above,Flat,0,5701,,15.4448289,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 31388,NJBF000063605,4 S SURREY AVE,Ventnor City,NJ,39.34216355,-74.47256259,RES1,3001,,17,NE,1907,1907,3102,3,1,1698.263532,1698.263532,3505,NO,50.57,56.42,3,-0.58,6106,113.9148,123.638283,133.371951,139.892374,I,Above,Hip,0,5701,,53.49664084,0,1.2,,,,1,1,,0.03,nav,1,1907,3,, 31389,NJBF000065309,510 N CAMBRIDGE AVE,Ventnor City,NJ,39.34669684,-74.48613499,RES1,3001,,17,NE,1960,1960,3101,1,1,1129.319761,1129.319761,3505,NO,15.56,20.89,3,4.3,6106,113.555613,123.345705,133.063523,139.582328,I,Above,Hip,0,5701,,18.22440239,0,0,,,,1,1,,0.03,nav,1,1960,1,, 31390,NJBF000065375,507 N CORNWALL AVE,Ventnor City,NJ,39.34689224,-74.48489485,RES1,3001,,17,NE,1960,1960,3101,1,1,1439.637634,1439.637634,3505,NO,19.55,29.92,3,4.35,6106,113.580526,123.365717,133.084874,139.601813,I,Above,Hip,0,5701,,24.73464187,0,0,,,,1,1,,0.03,nav,1,1960,1,, 31391,NJBF000063609,1 N SOMERSET AVE,Ventnor City,NJ,39.34218486,-74.47461498,RES1,3001,,17,NE,1920,1920,3102,2,1,2307.350136,2307.350136,3505,NO,24.29,30.96,3,2.08,6106,113.869364,123.601314,133.332464,139.858245,I,Above,Hip,0,5701,,27.6252192,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31392,NJBF000064507,29 N WEYMOUTH AVE,Ventnor City,NJ,39.34465565,-74.47168891,RES1,3001,,45,NE,1920,1920,3102,2,2,1002.409599,1002.409599,3507,NO,37.3,48.39,1,1.36,6106,113.90121,123.626621,133.361512,139.86702,I,Above,Hip,0,5701,,42.84547813,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31393,NJBF000064524,29 N WEYMOUTH AVE,Ventnor City,NJ,39.34471117,-74.47157852,RES1,3001,,45,NE,1920,1920,3102,2,2,556.1246491,556.1246491,3507,NO,23.13,30.93,1,0.82,6106,113.90291,123.627991,133.363022,139.867952,I,Above,Hip,0,5701,,27.03258684,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31394,NJBF000063922,6302 CALVERT AVE,Ventnor City,NJ,39.34307828,-74.4834518,RES1,3001,,17,NE,1958,1958,3102,2,1,1619.435143,1619.435143,3505,NO,43.87,56.85,3,5.23,6106,113.662598,123.433481,133.154409,139.690511,I,Above,Gable,0,5701,,50.3595019,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 31395,NJBF000063583,,Ventnor City,NJ,39.342106,-74.4779505,RES1,3001,,NaN,NE,1969,0,3102,2,1,1024.953767,1024.953767,3505,NO,46.18,54.2,3,7.18,6106,113.796919,123.542501,133.269664,139.803277,I,Above,Hip,0,5701,,50.18900069,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31396,NJBF000064085,201 N DORSET AVE,Ventnor City,NJ,39.34353053,-74.47949932,RES1,3001,,17,NE,2003,2003,3102,2,2,1295.143377,1295.143377,3505,NO,26.8,33.01,3,2.79,6106,113.743894,123.499134,133.224539,139.753215,I,Above,Flat,0,5701,,29.90403309,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 31397,NJBF000064119,201 N DORSET AVE,Ventnor City,NJ,39.343625,-74.479395,RES1,3001,,17,NE,2003,2003,3102,2,2,510.8720032,510.8720032,3505,NO,31.92,42.58,3,6.14,6106,113.744948,123.499959,133.225486,139.753488,I,Above,Hip,0,5701,,37.24591723,0,1.1,,,,1,1,,0.03,nav,1,2003,2,, 31398,NJBF000059475,17 S WYOMING AVE,Ventnor City,NJ,39.33431756,-74.48786945,RES1,3001,,17,NE,1930,1930,3102,3,1,1373.243747,1373.243747,3505,NO,37.5,49.99,3,4.31,6106,113.683965,123.451979,133.167362,139.749777,I,Above,Hip,0,5701,,43.74487522,0,0,,,,1,1,,0.03,nav,1,1930,3,, 31399,NJBF000061288,6803 WINCHESTER AVE,Ventnor City,NJ,39.33738282,-74.4879485,RES1,3001,,17,NE,1935,1935,3102,2,1,1096.611524,1096.611524,3505,NO,30.23,41.48,3,-0.21,6106,113.640004,123.416378,133.132179,139.699838,I,Above,Hip,0,5701,,35.8578724,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 31400,NJBF000065753,423 N SUFFOLK AVE,Ventnor City,NJ,39.34800182,-74.47952114,RES1,3001,,17,NE,1950,1970,3102,2,1,1952.927697,1952.927697,3505,NO,29.58,36.4,3,6.78,6106,113.684983,123.44967,133.174868,139.679721,I,Above,Gable,0,5701,,32.99273195,0,0,,,,1,1,,0.03,nav,1,1950,2,, 31401,NJBF000065338,403 N OXFORD AVE,Ventnor City,NJ,39.34678198,-74.48030281,RES1,3001,,17,NE,1940,1940,3102,2,1,1857.423995,1857.423995,3505,NO,32.89,37.91,3,2.82,6106,113.68352,123.44904,133.173419,139.685904,I,Above,Gable,0,5701,,35.39958438,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31402,NJBF000065383,403 N OXFORD AVE,Ventnor City,NJ,39.34690334,-74.48030989,RES1,3001,,17,NE,1940,1940,3102,2,1,818.2681616,818.2681616,3505,NO,36.96,42.48,3,-0.41,6106,113.681792,123.447588,133.17195,139.683801,I,Above,Hip,0,5701,,39.7200161,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31403,NJBF000063556,,Ventnor City,NJ,39.3420448,-74.49548733,RES1,3001,,NaN,NE,1969,0,3102,2,1,3660.355853,3660.355853,3505,NO,31.55,38.42,3,1.38,6106,113.410025,123.230377,132.939056,139.479758,I,Above,Hip,0,5701,,34.9857737,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31404,NJBF000065149,20 N VASSAR SQUARE,Ventnor City,NJ,39.34626101,-74.46777816,RES3A,3001,,17,NE,1930,1930,3301,2,1,1284.018992,1284.018992,3505,NO,33.77,46.48,3,2.62,6106,113.966285,123.679251,133.419223,139.905435,I,Above,Gable,0,5701,,40.12823317,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31405,NJBF000065180,22 N VASSAR SQUARE,Ventnor City,NJ,39.34632222,-74.46784654,RES3A,3001,,17,NE,1934,1934,3301,1,1,1371.102561,1371.102561,3505,NO,17.57,25.67,3,6.91,6106,113.963978,123.677346,133.417229,139.903363,I,Above,Gable,0,5701,,21.62334577,0,0,,,,1,1,,0.03,nav,1,1934,1,, 31406,NJBF000062774,15 S DUDLEY AVE,Ventnor City,NJ,39.34020019,-74.47558163,RES1,3001,,18,NE,1896,1896,3102,3,1,2449.64983,2449.64983,3505,NO,39.23,44.58,3,1.17,6106,113.874524,123.605863,133.335675,139.874193,I,Above,Hip,0,5701,,41.90247987,0,1.2,,,,1,1,,0.03,nav,1,1896,3,, 31407,NJBF000064568,204 N SUFFOLK AVE,Ventnor City,NJ,39.34481732,-74.47744508,RES1,3001,,17,NE,1930,1930,3102,1,1,1074.506901,1074.506901,3505,NO,19.3,25.54,3,3.31,6106,113.772285,123.521748,133.249571,139.767746,I,Above,Gable,0,5701,,22.42017203,0,0,,,,1,1,,0.03,nav,1,1930,1,, 31408,NJBF000065518,415 N DUDLEY AVE,Ventnor City,NJ,39.34730396,-74.48161167,RES1,3001,,17,NE,1968,1968,3102,1,1,1103.356246,1103.356246,3505,NO,22.97,29.72,3,8.45,6106,113.647803,123.419895,133.142717,139.654175,I,Above,Flat,0,5701,,26.34512085,0,0,,,,1,1,,0.03,nav,1,1968,1,, 31409,NJBF000063580,20 S VICTORIA AVE,Ventnor City,NJ,39.34210187,-74.47160845,RES1,3001,,17,NE,1920,1920,3102,2,1,1499.984898,1499.984898,3505,NO,37.75,44.23,3,1.56,6106,113.936624,123.656068,133.390922,139.908895,I,Above,Hip,0,5701,,40.99076907,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31410,NJBF000062691,101 S OXFORD AVE,Ventnor City,NJ,39.34002026,-74.47412609,RES1,3001,,17,NE,1910,1910,3102,2,1,1455.948341,1455.948341,3505,NO,30.42,36.91,3,0.78,6110,113.90897,123.633887,133.365429,139.90105,I,Above,Hip,0,5701,,33.66295575,0,1.1,,,,1,1,,0.35,nav,1,1910,2,, 31411,NJBF000060459,114 N SWARTHMORE AVE,Ventnor City,NJ,39.33601133,-74.49311157,RES1,3001,,17,NE,1925,1925,3102,2,1,1377.076851,1377.076851,3505,NO,23.85,36.76,3,0.96,6106,113.544893,123.339833,133.050393,139.620147,I,Above,Flat,0,5701,,30.30495368,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31412,NJBF000060445,15 N WYOMING AVE,Ventnor City,NJ,39.33598255,-74.48924628,RES1,3001,,17,NE,1903,1903,3102,2,1,1371.143909,1371.143909,3505,NO,24.25,36.25,3,1.2,6106,113.6306,123.408893,133.123193,139.696893,I,Above,Hip,0,5701,,30.24891498,0,1.1,,,,1,1,,0.03,nav,1,1903,2,, 31413,NJBF000064506,36 N WEYMOUTH AVE,Ventnor City,NJ,39.34465386,-74.47216797,RES1,3001,,NaN,NE,1930,1930,3102,2,1,1953.38741,1953.38741,3507,NO,23.09,35.64,1,0.06,6106,113.890695,123.618056,133.352343,139.859164,I,Above,Flat,0,5701,,29.36483046,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31414,NJBF000064472,4803 ATLANTIC AVE,Ventnor City,NJ,39.34457537,-74.46577898,RES3B,3001,,NaN,ME,1930,1932,3301,3,3,2091.841715,2091.841715,3504,NO,50.32,60.22,-4,0,6106,114.032131,123.733538,133.476108,139.963688,I,Above,Flat,0,NaN,,55.27150451,0,0,,,,1,1,,0.03,nav,1,1930,3,, 31415,NJBF000062266,6410 WINCHESTER AVE,Ventnor City,NJ,39.33911418,-74.48361056,RES1,3001,,17,NE,1928,1928,3102,2,1,1609.237244,1609.237244,3505,NO,23.53,28.71,3,0.09,6106,113.712193,123.474466,133.195019,139.752747,I,Above,Flat,0,5701,,26.11704348,0,0,,,,1,1,,0.03,nav,1,1928,2,, 31416,NJBF000059464,6 N SWARTHMORE AVE,Ventnor City,NJ,39.33429657,-74.49175119,RES1,3001,,17,NE,1925,1925,3102,2,1,1521.320867,1521.320867,3505,NO,34.03,41.35,3,6.14,6106,113.59869,123.383194,133.094763,139.673129,I,Above,Gable,0,5701,,37.68690207,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31417,NJBF000063633,6809 FULTON AVE,Ventnor City,NJ,39.34224783,-74.49434677,RES1,3001,,17,NE,1984,1984,3102,2,1,2130.80102,2130.80102,3505,NO,31.06,39.22,3,5.53,6106,113.432561,123.248411,132.958155,139.498809,I,Above,Hip,0,5701,,35.13931798,0,1.2,,,,1,1,,0.03,nav,1,1984,2,, 31418,NJBF000063652,11 S SURREY AVE,Ventnor City,NJ,39.34230853,-74.47219536,RES1,3001,,17,NE,1911,1911,3102,2,1,978.5519867,978.5519867,3505,NO,27.32,35.87,3,-2.45,6106,113.920975,123.643282,133.377419,139.896071,I,Above,Hip,0,5701,,31.59747215,0,1.1,,,,1,1,,0.03,nav,1,1911,2,, 31419,NJBF000059451,25 N MARTINDALE AVE,Ventnor City,NJ,39.33427284,-74.49272042,RES1,3001,,17,NE,1925,2018,3102,2,1,1304.430238,1304.430238,3505,NO,27.2,33.8,3,1.68,6106,113.577656,123.366246,133.076892,139.654076,I,Above,Hip,0,5701,,30.49540286,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31420,NJBF000059411,23 N MARTINDALE AVE,Ventnor City,NJ,39.33419639,-74.49264592,RES1,3001,,17,NE,1940,1940,3102,2,1,1810.632497,1810.632497,3505,NO,24.56,34.8,3,1.64,6106,113.580361,123.368423,133.079124,139.656702,I,Above,Hip,0,5701,,29.67862277,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31421,NJBF000059450,24 S ROSBOROUGH AVE,Ventnor City,NJ,39.33427209,-74.48749571,RES1,3001,,17,NE,1920,1920,3102,2,1,1608.823829,1608.823829,3505,NO,35.22,45.5,3,4.76,6110,113.692821,123.459128,133.174879,139.757795,I,Above,Hip,0,5701,,40.35872065,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 31422,NJBF000064110,10 N VICTORIA AVE,Ventnor City,NJ,39.3436005,-74.47281817,RES1,3001,,NaN,NE,1936,1936,3102,2,1,1351.066141,1351.066141,3505,NO,41.18,46.63,3,2.35,6106,113.890214,123.617947,133.351385,139.865263,I,Above,Gable,0,5701,,43.90459564,0,0,,,,1,1,,0.03,nav,1,1936,2,, 31423,NJBF000059430,115 S RICHARDS AVE,Ventnor City,NJ,39.33423154,-74.48392527,RES1,3001,,20,NE,1989,1989,3102,3,1,2555.612073,2555.612073,3505,NO,59.6,66.92,3,3.19,6106,113.772015,123.523134,133.24258,139.826926,I,Above,Flat,0,5701,,63.25861502,0,0,,,,1,1,,0.03,nav,1,1989,3,, 31424,NJBF000063662,109 N DERBY AVE,Ventnor City,NJ,39.34233086,-74.47948423,RES1,3001,,17,NE,1960,1960,3102,2,1,1238.780398,1238.780398,3505,YES,30.09,44.77,3,6.56,6106,113.760123,123.512614,133.238006,139.773137,I,Above,Hip,0,5701,,37.42964189,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31425,NJBF000065289,25 N VASSAR SQUARE,Ventnor City,NJ,39.34663115,-74.46767663,RES3A,3001,,17,NE,1920,1920,3301,2,1,1242.149371,1242.149371,3505,NO,36.14,46.84,3,2.52,6106,113.963708,123.67703,133.417138,139.901274,I,Above,Hip,0,5701,,41.4902335,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31426,NJBF000064503,,Ventnor City,NJ,39.34464761,-74.48533017,RES1,3001,,NaN,NE,1969,0,3102,2,1,1595.20019,1595.20019,3505,NO,27.96,40.05,3,-2.89,6106,113.600309,123.382635,133.101473,139.630616,I,Above,Hip,0,5701,,34.00155183,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31427,NJBF000064441,,Ventnor City,NJ,39.34449656,-74.48521721,RES1,3001,,NaN,NE,1969,0,3102,2,1,1851.771122,1851.771122,3505,NO,31.25,44.48,3,-1.75,6106,113.6048,123.386317,133.105284,139.635156,I,Above,Gable,0,5701,,37.86357325,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31428,NJBF000064384,,Ventnor City,NJ,39.34435602,-74.48509083,RES1,3001,,NaN,NE,1969,0,3102,2,1,1486.706423,1486.706423,3505,NO,35.16,42.17,3,0.44,6106,113.609448,123.390121,133.10923,139.639769,I,Above,Gable,0,5701,,38.66639613,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31429,NJBF000064481,310 N BURGHLEY AVE,Ventnor City,NJ,39.34459827,-74.48271529,RES1,3001,,17,NE,1958,1958,3102,1,1,1522.84945,1522.84945,3505,NO,22.6,36.34,3,6.61,6106,113.658794,123.429901,133.151629,139.678824,I,Above,Hip,0,5701,,29.47313377,0,0,,,,1,1,,0.03,nav,1,1958,1,, 31430,NJBF000064102,14 S NASHVILLE AVE,Ventnor City,NJ,39.34357871,-74.46932561,RES1,3001,,17,NE,1925,1925,3102,2,1,1300.657403,1300.657403,3505,NO,27.36,32.75,3,5.04,6106,113.967298,123.680778,133.418637,139.922485,I,Above,Hip,0,5701,,30.05513675,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31431,NJBF000059376,16 N MARTINDALE AVE,Ventnor City,NJ,39.33413221,-74.49306539,RES1,3001,,17,NE,1926,1926,3102,2,1,1150.063196,1150.063196,3505,NO,24.29,35.86,3,1.37,6106,113.572013,123.361697,133.071993,139.649235,I,Above,Hip,0,5701,,30.07411546,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 31432,NJBF000065924,511 N DUDLEY AVE,Ventnor City,NJ,39.34844719,-74.48251346,RES1,3001,,17,NE,1964,1964,3102,2,1,1362.155625,1362.155625,3507,NO,37.35,42.4,1,2.04,6106,113.613077,123.391247,133.112917,139.619377,I,Above,Hip,0,5701,,39.87684226,0,0,,,,1,1,,0.03,nav,1,1964,2,, 31433,NJBF000063874,120 N DUDLEY AVE,Ventnor City,NJ,39.34296034,-74.47858789,COM1,3001,,17,ME,1940,1940,3401,2,1,1097.663912,1097.663912,3507,NO,32.87,46.06,1,0.63,6106,113.771545,123.521708,133.248161,139.778368,I,Above,Hip,0,NaN,,39.46163246,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31434,NJBF000062761,115 S SUFFOLK AVE,Ventnor City,NJ,39.34016496,-74.47169417,RES1,3001,,19,NE,1920,1920,3102,3,1,2543.658712,2543.658712,3505,NO,57.37,62.92,3,7.87,6106,113.960501,123.675811,133.410354,139.938074,I,Above,Hip,0,5701,,60.14392598,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 31435,NJBF000061825,,Ventnor City,NJ,39.33832118,-74.4759507,RES1,3001,,NaN,NE,1969,0,3102,2,1,3179.218046,3179.218046,3505,NO,20.28,28.81,3,-2.16,6106,113.891664,123.620001,133.349131,139.898406,I,Above,Hip,0,5701,,24.5459374,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31436,NJBF000061841,21 N NEW HAVEN AVE,Ventnor City,NJ,39.33835197,-74.48507029,COM1,3001,,17,ME,1926,1926,3401,2,1,1119.512249,1119.512249,3507,NO,28.7,41.08,1,0.01,6106,113.69033,123.456901,133.175809,139.738451,I,Above,Hip,0,NaN,,34.89203809,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 31437,NJBF000065226,401 N DUDLEY AVE,Ventnor City,NJ,39.3464506,-74.48087111,RES1,3001,,17,NE,1955,1955,3102,2,1,1747.958,1747.958,3505,NO,28.23,41.25,3,6.72,6106,113.675277,123.442509,133.16625,139.68129,I,Above,Flat,0,5701,,34.73854963,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 31438,NJBF000062543,110 S SOMERSET AVE,Ventnor City,NJ,39.33967326,-74.47345161,RES1,3001,,18,NE,1900,1900,3102,2,1,1878.375574,1878.375574,3505,NO,45.63,52.26,3,8.36,6106,113.92844,123.649767,133.382084,139.917544,I,Above,Hip,0,5701,,48.94683627,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 31439,NJBF000061856,10 S HARVARD AVE,Ventnor City,NJ,39.33837571,-74.48045999,RES1,3001,,17,NE,1929,1929,3102,2,1,2143.533581,2143.533581,3505,NO,29.29,36.32,3,2.79,6106,113.79165,123.538865,133.262811,139.821106,I,Above,Hip,0,5701,,32.80488021,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 31440,NJBF000061828,127 N WISSAHICKON AVE,Ventnor City,NJ,39.33832765,-74.48869232,RES1,3001,,17,NE,1954,1954,3102,2,1,1089.783579,1089.783579,3505,NO,38.65,49.17,3,1.08,6106,113.610701,123.392634,133.107785,139.670483,I,Above,Hip,0,5701,,43.90938722,0,0,,,,1,1,,0.03,nav,1,1954,2,, 31441,NJBF000059460,6907 ATLANTIC AVE,Ventnor City,NJ,39.33428891,-74.48705121,RES1,3001,,17,NE,1921,1921,3102,2,1,2081.599483,2081.599483,3505,NO,24.12,30.28,3,0.43,6110,113.702389,123.466856,133.183062,139.766213,I,Above,Flat,0,5701,,27.2039639,0,1.2,,,,1,1,,0.35,nav,1,1921,2,, 31442,NJBF000059397,102 S WISSAHICKON AV,Ventnor City,NJ,39.3341756,-74.48583395,RES1,3001,,17,NE,1925,1925,3102,2,1,1941.502829,1941.502829,3505,NO,39.99,47.41,3,3.73,6110,113.730759,123.489774,133.207207,139.791564,I,Above,Gable,0,5701,,43.70041763,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 31443,NJBF000063832,23 S WEYMOUTH AVE,Ventnor City,NJ,39.34283359,-74.47022299,RES1,3001,,17,NE,1925,1925,3102,2,3,1664.925664,1664.925664,3505,NO,40.37,48.18,3,5.39,6110,113.957395,123.672856,133.409516,139.919734,I,Above,Flat,0,5701,,44.27459894,0,0,,,,1,1,,0.35,nav,1,1925,2,, 31444,NJBF000063899,103 N OXFORD AVE,Ventnor City,NJ,39.34302406,-74.47727994,RES1,3001,,17,NE,1920,1920,3102,2,1,1261.32186,1261.32186,3505,NO,23.68,30.24,3,-0.7,6106,113.799541,123.5444,133.272394,139.799778,I,Above,Flat,0,5701,,26.95893204,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31445,NJBF000065199,315 N SOMERSET AVE,Ventnor City,NJ,39.34637708,-74.47906644,RES1,3001,,45,NE,1945,1945,3102,2,2,1689.717407,1689.717407,3505,NO,30.09,43.86,3,8.79,6106,113.716117,123.47562,133.201473,139.714221,I,Above,Flat,0,5701,,36.97378936,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 31446,NJBF000065245,407 N DORSET AVE,Ventnor City,NJ,39.34650576,-74.48178252,RES1,3001,,17,NE,1945,1945,3102,1,1,1575.3399,1575.3399,3505,NO,19.57,30.76,3,1.07,6106,113.654402,123.425592,133.14828,139.664198,I,Above,Hip,0,5701,,25.1674351,0,1.2,,,,1,1,,0.03,nav,1,1945,1,, 31447,NJBF000061772,109 S DERBY AVE,Ventnor City,NJ,39.33823031,-74.47648464,RES1,3001,,21,NE,2007,2007,3102,3,1,2506.585461,2506.585461,3505,NO,38.12,53.09,3,-0.8,6106,113.881145,123.611464,133.339953,139.891062,I,Above,Hip,0,5701,,45.60810755,0,0,,,,1,1,,0.03,nav,1,2007,3,, 31448,NJBF000063679,27 S LITTLE ROCK AVE,Ventnor City,NJ,39.342364,-74.4707645,RES1,3001,,17,NE,1930,1930,3102,2,1,1240.218331,1240.218331,3505,NO,22.09,27.82,3,0.11,6110,113.95169,123.668296,133.404232,139.91839,I,Above,Hip,0,5701,,24.95551893,0,0,,,,1,1,,0.35,nav,1,1930,2,, 31449,NJBF000063395,201 N SACRAMENTO AVE,Ventnor City,NJ,39.34159301,-74.48331105,RES1,3001,,47,NE,1925,1925,3102,1,2,1463.167349,1463.167349,3505,NO,21.69,33.15,3,6.12,6106,113.685489,123.45239,133.173442,139.717446,I,Above,Hip,0,5701,,27.41672474,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 31450,NJBF000063867,5404 WINCHESTER AVE,Ventnor City,NJ,39.34292839,-74.47364179,RES1,3001,,17,NE,1912,1912,3102,2,1,1566.556581,1566.556581,3505,NO,43.32,49.24,3,4.53,6106,113.880951,123.610572,133.342957,139.862432,I,Above,Hip,0,5701,,46.28149591,0,0,,,,1,1,,0.03,nav,1,1912,2,, 31451,NJBF000065196,324 N SOMERSET AVE,Ventnor City,NJ,39.34637066,-74.47960496,RES1,3001,,17,NE,1964,1964,3102,2,1,1848.377601,1848.377601,3505,NO,37,51.25,3,-0.45,6106,113.704291,123.466039,133.191259,139.704892,I,Above,Hip,0,5701,,44.12311029,0,0,,,,1,1,,0.03,nav,1,1964,2,, 31452,NJBF000065232,505 N CAMBRIDGE AVE,Ventnor City,NJ,39.3464618,-74.48541759,RES1,3001,,17,NE,1966,1966,3101,1,1,1630.290032,1630.290032,3505,NO,10.56,16.28,3,-2.1,6106,113.574557,123.361098,133.07972,139.59931,I,Above,Gable,0,5701,,13.42199457,0,1.1,,,,1,1,,0.03,nav,1,1966,1,, 31453,NJBF000061810,7 S SACRAMENTO AVE,Ventnor City,NJ,39.33828916,-74.48064651,RES1,3001,,17,NE,1930,1930,3102,2,1,1544.56327,1544.56327,3505,NO,33.05,42.94,3,8.26,6106,113.788708,123.536491,133.260216,139.819269,I,Above,Hip,0,5701,,37.99645527,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31454,NJBF000065208,304 N SURREY AVE,Ventnor City,NJ,39.34640933,-74.47790041,RES1,3001,,18,NE,2006,2006,3102,3,1,1960.425395,1960.425395,3505,NO,36.02,42.98,3,1.38,6106,113.741443,123.496142,133.223378,139.733963,I,Above,Hip,0,5701,,39.49881769,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, 31455,NJBF000061818,108 N TROY AVE,Ventnor City,NJ,39.33830935,-74.48694252,RES1,3001,,17,NE,1938,1938,3102,2,1,846.2408551,846.2408551,3505,NO,32.55,38.92,3,3.59,6106,113.649578,123.423999,133.140938,139.704088,I,Above,Hip,0,5701,,35.732408,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 31456,NJBF000065249,20 N JACKSON AVE,Ventnor City,NJ,39.346518,-74.4672665,RES3A,3001,,17,NE,1929,1929,3301,2,1,1510.708153,1510.708153,3505,NO,35.86,44.89,3,-2.42,6106,113.974201,123.685642,133.426295,139.909692,I,Above,Hip,0,5701,,40.37426733,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 31457,NJBF000059406,7112 VENTNOR AVE,Ventnor City,NJ,39.33419083,-74.49003982,RES1,3001,,17,NE,1920,1920,3102,2,1,1459.521602,1459.521602,3505,NO,39.8,46.62,3,3.9,6106,113.637884,123.414791,133.127993,139.708845,I,Above,Hip,0,5701,,43.20855522,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31458,NJBF000062477,11 S DERBY AVE,Ventnor City,NJ,39.33955547,-74.47759567,RES1,3001,,18,NE,1920,1920,3102,2,1,1552.324159,1552.324159,3505,NO,34.62,47.69,3,7.07,6106,113.838835,123.576976,133.304341,139.850948,I,Above,Hip,0,5701,,41.15314322,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31459,NJBF000065177,418 N BURGHLEY AVE,Ventnor City,NJ,39.34631214,-74.48410375,RES1,3001,,17,NE,1962,1962,3102,2,1,2398.159766,2398.159766,3505,NO,36.78,43.72,3,7.6,6106,113.605598,123.386226,133.106311,139.62568,I,Above,Flat,0,5701,,40.24885115,0,0,,,,1,1,,0.03,nav,1,1962,2,, 31460,NJBF000065254,309 N SUFFOLK AVE,Ventnor City,NJ,39.34653745,-74.4783315,RES1,3001,,17,NE,2001,2001,3102,2,1,1128.769261,1128.769261,3505,NO,32,39.96,3,-2.29,6106,113.730263,123.487023,133.213738,139.724405,I,Above,Hip,0,5701,,35.98328376,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, 31461,NJBF000063872,107 S AUSTIN AVE,Ventnor City,NJ,39.3429539,-74.4668713,RES3B,3001,,17,E,1920,1920,3303,3,1,2339.462298,2339.462298,3504,NO,48.83,57.98,-4,0,6106,114.029431,123.73165,133.472656,139.971378,I,Above,Flat,0,NaN,,53.40140216,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 31462,NJBF000063827,109 S AUSTIN AVE,Ventnor City,NJ,39.34279966,-74.46674531,RES3B,3001,,18,E,1920,1920,3303,3,1,2101.888127,2101.888127,3504,NO,54.11,62.91,-4,0,6106,114.034225,123.735595,133.476753,139.975742,I,Above,Flat,0,NaN,,58.50713862,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 31463,NJBF000059377,3 S MELBOURNE AVE,Ventnor City,NJ,39.33413234,-74.48954866,RES1,3001,,17,NE,1920,1920,3102,2,1,1436.804391,1436.804391,3505,NO,39.51,45.8,3,7.14,6106,113.649525,123.42418,133.137852,139.71949,I,Above,Flat,0,5701,,42.65535882,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31464,NJBF000066143,712 N HARVARD AVE,Ventnor City,NJ,39.34903968,-74.48888724,RES1,3001,,18,NE,1985,1985,3102,2,1,2414.69256,2414.69256,3505,NO,36.13,48.91,3,-2.02,6106,113.464204,123.270813,132.985363,139.493189,I,Above,Flat,0,5701,,42.52271993,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 31465,NJBF000063718,103 S AMHERST AVE,Ventnor City,NJ,39.34249653,-74.46869581,RES3B,3001,,17,E,1920,1920,3303,2,1,1277.346781,1277.346781,3504,NO,37.9,50.69,-4,0,6106,113.995392,123.703922,133.442511,139.949483,I,Above,Hip,0,NaN,,44.29501054,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31466,NJBF000065161,507 N HARVARD AVE,Ventnor City,NJ,39.3462913,-74.48615946,RES1,3001,,17,NE,1983,1983,3101,2,1,1734.156598,1734.156598,3505,NO,22.98,32.58,3,0.9,6106,113.560386,123.349741,133.067571,139.588526,I,Above,Gable,0,5701,,27.77695822,0,0,,,,1,1,,0.03,nav,1,1983,2,, 31467,NJBF000063844,5401 VENTNOR AVE,Ventnor City,NJ,39.34286933,-74.47318065,RES1,3001,,17,NE,1924,1924,3102,3,1,1995.202514,1995.202514,3505,NO,50.34,56.07,3,6.76,6106,113.891877,123.619475,133.352426,139.870986,I,Above,Hip,0,5701,,53.20648947,0,1.1,,,,1,1,,0.03,nav,1,1924,3,, 31468,NJBF000063388,437-439 BERKSHIRE DR,Ventnor City,NJ,39.34158165,-74.49352041,RES1,3001,,45,NE,1976,1976,3102,2,2,1736.533812,1736.533812,3505,NO,39.57,44.88,3,3.79,6106,113.45984,123.270522,132.981065,139.525442,I,Above,Gable,0,5701,,42.22697146,0,0,,,,1,1,,0.03,nav,1,1976,2,, 31469,NJBF000065159,408 N DORSET AVE,Ventnor City,NJ,39.34628719,-74.48242277,RES1,3001,,17,NE,1960,1960,3102,2,1,518.0625018,518.0625018,3505,NO,37.17,47.44,3,8.75,6106,113.643108,123.416551,133.138526,139.656359,I,Above,Gable,0,5701,,42.30335599,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 31470,NJBF000065198,408 N DORSET AVE,Ventnor City,NJ,39.3463751,-74.48234883,RES1,3001,,17,NE,1960,1960,3102,2,1,1686.064717,1686.064717,3505,NO,33.66,44.25,3,-1.36,6106,113.643596,123.416908,133.138961,139.656241,I,Above,Hip,0,5701,,38.95523294,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 31471,NJBF000065160,502 N CORNWALL AVE,Ventnor City,NJ,39.34628944,-74.48494559,RES1,3001,,17,NE,1964,1964,3101,2,1,1535.481931,1535.481931,3505,NO,41.44,54.36,3,3.34,6106,113.587266,123.371433,133.090588,139.610757,I,Above,Hip,0,5701,,47.89794767,0,0,,,,1,1,,0.03,nav,1,1964,2,, 31472,NJBF000062494,5805 ATLANTIC AVE,Ventnor City,NJ,39.33957446,-74.47625502,RES1,3001,,17,NE,1985,1985,3102,1,1,6408.055836,6408.055836,3505,NO,16.11,25.78,3,-0.09,6110,113.868104,123.600734,133.329675,139.87313,I,Above,Hip,0,5701,,20.94726309,0,0,,,,1,1,,0.35,nav,1,1985,1,, 31473,NJBF000063344,5403 ATLANTIC AVE,Ventnor City,NJ,39.34146193,-74.47226043,RES1,3001,,18,NE,1897,1897,3102,2,1,1761.314874,1761.314874,3505,NO,33.73,45.39,3,1.47,6110,113.930778,123.651419,133.385403,139.908461,I,Above,Hip,0,5701,,39.56077093,0,1.2,,,,1,1,,0.35,nav,1,1897,2,, 31474,NJBF000065131,407 N DERBY AVE,Ventnor City,NJ,39.34620787,-74.48260024,RES1,3001,,17,NE,1978,1978,3102,1,1,2264.472306,2264.472306,3505,NO,21.33,35.44,3,4.55,6106,113.640225,123.414254,133.136034,139.654484,I,Above,Gable,0,5701,,28.38809451,0,0,,,,1,1,,0.03,nav,1,1978,1,, 31475,NJBF000065148,323 N OXFORD AVE,Ventnor City,NJ,39.34626002,-74.47990392,RES1,3001,,17,NE,1948,1948,3102,1,1,1250.705122,1250.705122,3505,NO,15.58,22.25,3,0.94,6106,113.699133,123.461906,133.186782,139.701462,I,Above,Hip,0,5701,,18.91617079,0,0,,,,1,1,,0.03,nav,1,1948,1,, 31476,NJBF000063888,20 S HILLSIDE AVE,Ventnor City,NJ,39.34299687,-74.46976627,RES1,3001,,17,NE,1925,1925,3102,2,1,1640.056773,1640.056773,3505,NO,32.11,40.25,3,6.44,6110,113.965289,123.679262,133.416517,139.924533,I,Above,Hip,0,5701,,36.17976502,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 31477,NJBF000063862,22 S HILLSIDE AVE,Ventnor City,NJ,39.34291132,-74.46968111,RES1,3001,,17,NE,1925,1925,3102,2,1,1466.811127,1466.811127,3505,NO,21.6,31.31,3,-2.65,6106,113.968291,123.681728,133.419085,139.927249,I,Above,Hip,0,5701,,26.45309321,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31478,NJBF000062143,213 N ROSBOROUGH AVE,Ventnor City,NJ,39.33888353,-74.49119295,RES1,3001,,17,NE,1939,1939,3102,1,1,1384.222626,1384.222626,3505,NO,21.49,29.97,3,2.51,6106,113.547867,123.341924,133.054631,139.613348,I,Above,Hip,0,5701,,25.72814535,0,0,,,,1,1,,0.03,nav,1,1939,1,, 31479,NJBF000063288,11 S SOMERSET AVE,Ventnor City,NJ,39.34133429,-74.47392531,RES1,3001,,18,NE,1920,1920,3102,2,1,2197.368027,2197.368027,3505,NO,44.24,52.55,3,5.77,6106,113.895855,123.623021,133.354944,139.883314,I,Above,Hip,0,5701,,48.39678015,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31480,NJBF000063296,220 N PRINCETON AVE,Ventnor City,NJ,39.34135424,-74.48428477,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1724.28727,1724.28727,3505,NO,28.39,38.24,3,0.39,6106,113.667175,123.437646,133.157624,139.703698,I,Above,Flat,0,5701,,33.31742047,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31481,NJBF000063404,,Ventnor City,NJ,39.34161948,-74.48449018,RES1,3001,,NaN,NE,1960,0,3102,2,1,1416.303151,1416.303151,3505,NO,30.79,41.26,3,7.68,6106,113.6591,123.431058,133.150824,139.69561,I,Above,Gable,0,5701,,36.02757786,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31482,NJBF000065214,18 N JACKSON AVE,Ventnor City,NJ,39.34642607,-74.46721483,RES3A,3001,,17,NE,1935,1935,3301,2,1,1446.540968,1446.540968,3505,NO,30.66,39.84,3,6.92,6106,113.976514,123.687561,133.428281,139.911954,I,Above,Hip,0,5701,,35.25184016,0,0,,,,1,1,,0.03,nav,1,1935,2,, 31483,NJBF000063387,101 S VICTORIA AVE,Ventnor City,NJ,39.34157992,-74.47082236,COM1,3001,,NaN,ME,1940,1940,3401,4,1,6150.124036,6150.124036,3507,NO,65.4,71.85,1,0.41,6106,113.960823,123.675877,133.411671,139.929813,I,Above,Flat,0,NaN,,68.62574131,0,0,,,,1,1,,0.03,nav,1,1940,4,, 31484,NJBF000065143,403 N DORSET AVE,Ventnor City,NJ,39.3462569,-74.48161646,RES1,3001,,17,NE,1960,1960,3102,1,1,1147.405053,1147.405053,3505,NO,13.01,27.48,3,-1.79,6106,113.661341,123.431312,133.154209,139.67125,I,Above,Hip,0,5701,,20.2442676,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 31485,NJBF000063439,208 N SACRAMENTO AVE,Ventnor City,NJ,39.34173,-74.483834,RES1,3001,,47,NE,1925,1925,3102,1,2,1444.898372,1444.898372,3505,NO,11.63,23.52,3,0.37,6106,113.672108,123.44154,133.162024,139.705729,I,Above,Hip,0,5701,,17.57557387,0,0,,,,1,1,,0.03,nav,1,1925,1,, 31486,NJBF000063428,25 S SURREY AVE,Ventnor City,NJ,39.34170709,-74.47175085,RES1,3001,,NaN,NE,1922,1922,3102,2,1,2731.895441,2731.895441,3505,NO,39.16,47.05,3,4.31,6106,113.938717,123.657843,133.392484,139.912829,I,Above,Flat,0,5701,,43.10405936,0,0,,,,1,1,,0.03,nav,1,1922,2,, 31487,NJBF000060947,6 N RICHARDS AVE,Ventnor City,NJ,39.33680696,-74.48648972,RES1,3001,,17,NE,1935,1935,3102,2,1,1720.952513,1720.952513,3505,NO,34.77,49.49,3,-2.96,6106,113.680076,123.448771,133.165993,139.736911,I,Above,Hip,0,5701,,42.13016507,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 31488,NJBF000063255,,Ventnor City,NJ,39.34123638,-74.4744664,RES1,3001,,NaN,NE,1969,0,3102,2,1,2126.454665,2126.454665,3505,NO,26.31,33.15,3,1.58,6110,113.885254,123.614417,133.345674,139.875975,I,Above,Gable,0,5701,,29.72976767,0,0,,,,1,1,,0.35,nav,1,1969,2,, 31489,NJBF000063367,202 N SACRAMENTO AVE,Ventnor City,NJ,39.34151734,-74.48366338,RES1,3001,,47,NE,1925,1925,3102,1,2,1440.209254,1440.209254,3505,NO,18.07,24.37,3,3.79,6106,113.678732,123.446946,133.167609,139.712327,I,Above,Hip,0,5701,,21.22054187,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 31490,NJBF000060854,107 S PRINCETON AVE,Ventnor City,NJ,39.33664948,-74.48004939,RES1,3001,,17,NE,1920,1920,3102,3,1,2585.331177,2585.331177,3505,NO,59.29,72.93,3,4.99,6106,113.824165,123.56534,133.289485,139.856695,I,Above,Hip,0,5701,,66.10998581,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 31491,NJBF000060803,107 S PRINCETON AVE,Ventnor City,NJ,39.33656163,-74.47990719,RES1,3001,,17,NE,1920,1920,3102,3,1,944.996766,944.996766,3505,NO,36.89,44.08,3,2.42,6106,113.828478,123.568839,133.293128,139.86058,I,Above,Flat,0,5701,,40.4859432,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 31492,NJBF000065194,406 N DUDLEY AVE,Ventnor City,NJ,39.34636823,-74.48172447,RES1,3001,,17,NE,1980,1980,3102,2,1,924.3175049,924.3175049,3505,NO,34.17,45.65,3,1.49,6106,113.657505,123.428162,133.150928,139.667509,I,Above,Hip,0,5701,,39.91214727,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31493,NJBF000062850,128 N PORTLAND AVE,Ventnor City,NJ,39.34035747,-74.48422437,RES1,3001,,17,NE,1940,1940,3102,2,2,1806.295182,1806.295182,3505,NO,46.14,59.29,3,8.86,6106,113.681901,123.449764,133.169755,139.721169,I,Above,Gable,0,5701,,52.71285917,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31494,NJBF000060599,216 N WASHINGTON AVE,Ventnor City,NJ,39.33625743,-74.49470731,RES1,3001,,17,NE,1950,1950,3102,1,1,702.2629843,702.2629843,3505,NO,11.5,16.87,3,0.17,6106,113.50627,123.30874,133.017849,139.584611,I,Above,Gable,0,5701,,14.1819328,0,0,,,,1,1,,0.03,nav,1,1950,1,, 31495,NJBF000062780,11 N CAMBRIDGE AVE,Ventnor City,NJ,39.34020806,-74.48068159,RES1,3001,,18,NE,1924,1924,3102,2,1,1827.262019,1827.262019,3505,NO,32.36,41.03,3,2.71,6106,113.762057,123.514636,133.238528,139.787068,I,Above,Hip,0,5701,,36.69623737,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 31496,NJBF000064181,,Ventnor City,NJ,39.343797,-74.4761285,RES1,3001,,NaN,NE,1969,0,3102,2,1,1853.65484,1853.65484,3505,NO,41.62,52.43,3,8.74,6106,113.814709,123.556503,133.285894,139.806781,I,Above,Gable,0,5701,,47.02403211,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31497,NJBF000065106,306 N SUFFOLK AVE,Ventnor City,NJ,39.34615833,-74.47855707,RES1,3001,,18,NE,2016,2018,3102,2,1,1526.272249,1526.272249,3505,NO,28.34,42.42,3,3.4,6106,113.73021,123.487132,133.213597,139.726662,I,Above,Hip,0,5701,,35.38159039,0,0,,,,1,1,,0.03,nav,1,2016,2,, 31498,NJBF000065121,416 N BURGHLEY AVE,Ventnor City,NJ,39.34618243,-74.48396227,RES1,3001,,17,NE,1962,1962,3102,2,1,1298.910947,1298.910947,3505,NO,37.18,45.17,3,1.67,6106,113.610439,123.390193,133.110445,139.630381,I,Above,Hip,0,5701,,41.17211637,0,0,,,,1,1,,0.03,nav,1,1962,2,, 31499,NJBF000065213,4900 WINCHESTER AVE,Ventnor City,NJ,39.346426,-74.4686195,RES3A,3001,,45,NE,1960,1960,3301,2,2,1574.049824,1574.049824,3505,NO,38.12,48.15,3,6.77,6106,113.945641,123.662334,133.4012,139.889184,I,Above,Flat,0,5701,,43.13856435,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31500,NJBF000065158,26 N BATON ROUGE AVE,Ventnor City,NJ,39.34628353,-74.46855941,RES3A,3001,,28,NE,1928,1928,3301,2,1,1477.343751,1477.343751,3505,NO,32.12,43.1,3,1.03,6106,113.948824,123.664978,133.403924,139.892409,I,Above,Flat,0,5701,,37.60929615,0,0,,,,1,1,,0.03,nav,1,1928,2,, 31501,NJBF000065048,5800 BALFOUR AVE,Ventnor City,NJ,39.34599233,-74.48106194,RES1,3001,,17,NE,1960,1960,3102,2,1,1961.630467,1961.630467,3505,NO,31.05,38.76,3,5.26,6106,113.677045,123.44413,133.167678,139.685425,I,Above,Hip,0,5701,,34.9058782,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 31502,NJBF000063435,201 N HARVARD AVE,Ventnor City,NJ,39.3417265,-74.482638,RES1,3001,,17,NE,1925,1925,3102,2,2,1227.455244,1227.455244,3505,NO,31.6,46,3,7.13,6106,113.69856,123.462926,133.184726,139.727355,I,Above,Gable,0,5701,,38.80164884,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31503,NJBF000063290,16 S SUFFOLK AVE,Ventnor City,NJ,39.34133996,-74.4732531,RES1,3001,,18,NE,1912,1912,3102,2,1,3010.71402,3010.71402,3505,NO,29.09,40.32,3,3.82,6110,113.91056,123.634983,133.367729,139.894232,I,Above,Gable,0,5701,,34.70703625,0,1.1,,,,1,1,,0.35,nav,1,1912,2,, 31504,NJBF000065711,514 N DERBY AVE,Ventnor City,NJ,39.34788383,-74.48447047,RES1,3001,289,17,NE,1962,1962,3101,1,1,1472.829105,1472.829105,3505,NO,17.84,29.04,3,1.93,6106,113.577044,123.362421,133.081945,139.593301,I,Above,Gable,0,5701,,23.44046146,0,0,,,,1,1,,0.03,nav,1,1962,1,, 31505,NJBF000062035,115 N TROY AVE,Ventnor City,NJ,39.338679,-74.4867805,RES1,3001,,17,NE,1990,1990,3102,2,1,1306.106229,1306.106229,3505,NO,36.84,47.04,3,3.89,6106,113.648147,123.422794,133.139939,139.701173,I,Above,Flat,0,5701,,41.94089521,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 31506,NJBF000065189,4902 WINCHESTER AVE,Ventnor City,NJ,39.3463625,-74.4687495,RES3A,3001,,45,NE,1960,1960,3301,2,2,1527.913342,1527.913342,3505,NO,35.3,45.28,3,6.25,6106,113.943614,123.660699,133.399394,139.888076,I,Above,Gable,0,5701,,40.29240269,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31507,NJBF000061002,211-213 N SWARTHMORE AVE,Ventnor City,NJ,39.33688359,-74.49379277,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1509.423525,1509.423525,3505,NO,25.07,30.73,3,-0.72,6106,113.517805,123.317974,133.028007,139.593314,I,Above,Gable,0,5701,,27.90054292,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31508,NJBF000062448,111 N NEWPORT AVE,Ventnor City,NJ,39.33948662,-74.48449786,RES1,3001,,28,NE,1925,1925,3102,2,1,2540.17007,2540.17007,3505,NO,27.13,35.6,3,2.9,6106,113.687579,123.454512,133.174142,139.730423,I,Above,Flat,0,5701,,31.36339984,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31509,NJBF000063454,1 S SOMERSET AVE,Ventnor City,NJ,39.34178047,-74.4742636,RES1,3001,,18,NE,1912,1912,3102,2,1,3227.574113,3227.574113,3505,NO,46.03,57.68,3,8.74,6106,113.882466,123.612049,133.343596,139.870573,I,Above,Hip,0,5701,,51.85396918,0,1.2,,,,1,1,,0.03,nav,1,1912,2,, 31510,NJBF000063390,119 N CAMBRIDGE AVE,Ventnor City,NJ,39.34158427,-74.48182619,RES1,3001,,17,NE,1929,1929,3102,1,1,1369.804197,1369.804197,3505,NO,15.64,30,3,2.42,6106,113.718395,123.479006,133.201704,139.744212,I,Above,Hip,0,5701,,22.81870475,0,0,,,,1,1,,0.03,nav,1,1929,1,, 31511,NJBF000062057,120 N TROY AVE,Ventnor City,NJ,39.3387273,-74.48729032,RES1,3001,,17,NE,1948,1948,3102,2,1,1003.881419,1003.881419,3505,NO,42.06,50.24,3,5.89,6106,113.636234,123.413173,133.129794,139.690771,I,Above,Gable,0,5701,,46.15184217,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 31512,NJBF000062216,7100 BALFOUR AVE,Ventnor City,NJ,39.3390123,-74.49386222,RES1,3001,,17,NE,1970,1970,3102,2,1,2062.968141,2062.968141,3505,NO,35.9,46.58,3,-2.75,6106,113.487105,123.293012,133.003164,139.559128,I,Above,Gable,0,5701,,41.23674528,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 31513,NJBF000062592,,Ventnor City,NJ,39.33977606,-74.48684583,RES1,3001,,NaN,NE,1969,0,3102,2,1,1613.761717,1613.761717,3505,NO,41.84,49.11,3,3.2,6106,113.631828,123.409443,133.126609,139.682132,I,Above,Flat,0,5701,,45.47759752,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31514,NJBF000062561,,Ventnor City,NJ,39.33970934,-74.48701,RES1,3001,,NaN,NE,2000,0,3102,2,1,1975.551005,1975.551005,3505,NO,42.3,51.7,3,8.56,6106,113.629111,123.407263,133.124254,139.680141,I,Above,Flat,0,5701,,46.99952644,0,0,,,,1,1,,0.03,nav,1,2000,2,, 31515,NJBF000065111,501 N CAMBRIDGE AVE,Ventnor City,NJ,39.34616369,-74.48518315,RES1,3001,,17,NE,1977,1977,3101,2,1,1405.814943,1405.814943,3505,NO,24.27,31.39,3,3.27,6106,113.583654,123.368573,133.087478,139.608481,I,Above,Hip,0,5701,,27.83051661,0,0,,,,1,1,,0.03,nav,1,1977,2,, 31516,NJBF000066627,802 N CORNWALL AVE,Ventnor City,NJ,39.35028438,-74.48815061,RES1,3001,,17,NE,1977,1977,3101,1,1,1820.726583,1820.726583,3505,NO,17.03,31.72,3,0.37,6106,113.464534,123.270318,132.985428,139.486576,I,Above,Flat,0,5701,,24.37399043,0,0,,,,1,1,,0.03,nav,1,1977,1,, 31517,NJBF000062323,12 S DERBY AVE,Ventnor City,NJ,39.33922334,-74.47792666,RES1,3001,,19,NE,1985,1985,3102,2,1,2141.098333,2141.098333,3505,NO,30.19,44.02,3,-0.75,6106,113.836012,123.574729,133.301671,139.850764,I,Above,Flat,0,5701,,37.10519422,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 31518,NJBF000062048,114 N AVOLYN AVE,Ventnor City,NJ,39.33870931,-74.48652186,RES1,3001,,17,NE,1938,1938,3102,2,1,888.6144366,888.6144366,3505,NO,39.41,45.8,3,8.74,6106,113.653435,123.427058,133.144475,139.705539,I,Above,Flat,0,5701,,42.60607583,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 31519,NJBF000062521,1727 MONMOUTH AVE,Ventnor City,NJ,39.33962745,-74.48714879,RES1,3001,,47,NE,1990,1990,3102,2,2,1579.149406,1579.149406,3505,NO,22.45,34.76,3,-2.79,6106,113.627149,123.405695,133.122536,139.678859,I,Above,Gable,0,5701,,28.60454851,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 31520,NJBF000065167,5700 BALFOUR AVE,Ventnor City,NJ,39.34629409,-74.48046279,RES1,3001,,17,NE,1966,1966,3102,2,1,1757.742546,1757.742546,3505,NO,34.45,43.12,3,8.01,6106,113.68634,123.451531,133.175754,139.691067,I,Above,Hip,0,5701,,38.78743735,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 31521,NJBF000065057,415 N CORNWALL AVE,Ventnor City,NJ,39.34602902,-74.48418507,RES1,3001,,17,NE,1960,1960,3102,2,1,1605.111843,1605.111843,3505,NO,39.49,53.37,3,1.91,6106,113.607506,123.38789,133.107905,139.628848,I,Above,Flat,0,5701,,46.42887858,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 31522,NJBF000062039,26 S CORNWALL AVE,Ventnor City,NJ,39.33868755,-74.47873663,RES1,3001,,18,NE,1905,1905,3102,3,1,2036.408374,2036.408374,3505,NO,36.05,49.2,3,1.15,6106,113.825387,123.566174,133.292115,139.845737,I,Above,Hip,0,5701,,42.62407392,0,1.2,,,,1,1,,0.03,nav,1,1905,3,, 31523,NJBF000059232,3 S BALTIMORE AVE,Ventnor City,NJ,39.33382316,-74.49017512,RES1,3001,,17,NE,1958,1958,3102,1,1,1358.62799,1358.62799,3505,NO,17.12,29.85,3,2.06,6106,113.640026,123.416509,133.129505,139.711705,I,Above,Flat,0,5701,,23.48230723,0,0,,,,1,1,,0.03,nav,1,1958,1,, 31524,NJBF000060827,6622 VENTNOR AVE,Ventnor City,NJ,39.33660176,-74.48505119,COM1,3001,,43,ME,1928,1928,3401,2,2,1439.329964,1439.329964,3507,NO,25.18,36.01,1,-0.38,6106,113.714614,123.476686,133.195381,139.767338,I,Above,Flat,0,NaN,,30.59461415,0,0,,,,1,1,,0.03,nav,1,1928,2,, 31525,NJBF000063372,8 N DUDLEY AVE,Ventnor City,NJ,39.341536,-74.4772585,RES1,3001,,17,NE,1935,1935,3102,2,1,2480.764196,2480.764196,3505,NO,38.8,44.99,3,5.48,6106,113.819753,123.561153,133.289095,139.824373,I,Above,Hip,0,5701,,41.89441824,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 31526,NJBF000064168,204 N DUDLEY AVE,Ventnor City,NJ,39.34377233,-74.47933693,RES1,3001,,45,NE,1940,1940,3102,2,1,2070.868645,2070.868645,3505,NO,23.97,30.78,3,-0.04,6106,113.744287,123.499379,133.224975,139.752092,I,Above,Hip,0,5701,,27.37769656,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31527,NJBF000062046,2 S HARVARD AVE,Ventnor City,NJ,39.338707,-74.48071603,RES1,3001,,17,NE,1930,1930,3102,2,1,2017.809205,2017.809205,3505,NO,41.08,52.55,3,2.97,6106,113.781532,123.530631,133.254331,139.811175,I,Above,Hip,0,5701,,46.81179106,0,0.1,,,,1,1,,0.03,nav,1,1930,2,, 31528,NJBF000065699,415 N SOMERSET AVE,Ventnor City,NJ,39.34785364,-74.48026718,RES1,3001,,17,NE,1960,1960,3102,1,1,1706.671888,1706.671888,3505,NO,17.99,23.13,3,7.18,6106,113.67041,123.437936,133.16227,139.669011,I,Above,Hip,0,5701,,20.55952143,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 31529,NJBF000065052,17 N MARION AVE,Ventnor City,NJ,39.346009,-74.468627,RES3A,3001,,28,NE,1926,1926,3301,2,1,1153.124782,1153.124782,3505,NO,39.43,48.97,3,6.67,6106,113.950901,123.666759,133.405613,139.895628,I,Above,Flat,0,5701,,44.20010376,0,0,,,,1,1,,0.03,nav,1,1926,2,, 31530,NJBF000058885,22 S BALTIMORE AVE,Ventnor City,NJ,39.333119,-74.490062,RES1,3001,,17,NE,1906,1906,3102,2,1,1399.939294,1399.939294,3505,NO,33.34,46.9,3,4.71,6106,113.652328,123.4264,133.139354,139.724467,I,Above,Flat,0,5701,,40.11951861,0,1.2,,,,1,1,,0.03,nav,1,1906,2,, 31531,NJBF000063574,6108 MONMOUTH AVE,Ventnor City,NJ,39.34208821,-74.48124607,RES1,3001,,17,NE,1925,1925,3102,2,1,1005.487762,1005.487762,3505,NO,29.91,36.25,3,-2.27,6106,113.724476,123.483805,133.207176,139.746218,I,Above,Hip,0,5701,,33.07894791,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31532,NJBF000065216,509 N HARVARD AVE,Ventnor City,NJ,39.34643427,-74.48625372,RES1,3001,,17,NE,1984,1984,3101,2,1,2049.673363,2049.673363,3505,NO,35.15,45.83,3,6.53,6106,113.556413,123.346472,133.064186,139.584442,I,Above,Hip,0,5701,,40.49201436,0,0,,,,1,1,,0.03,nav,1,1984,2,, 31533,NJBF000063418,11 S SUFFOLK AVE,Ventnor City,NJ,39.34166022,-74.47292217,RES1,3001,,18,NE,1926,1926,3102,3,1,2038.745708,2038.745708,3505,NO,54.94,68.74,3,1.19,6106,113.913588,123.637391,133.370574,139.894538,I,Above,Hip,0,5701,,61.83771048,0,1.2,,,,1,1,,0.03,nav,1,1926,3,, 31534,NJBF000065912,615 N CAMBRIDGE AVE,Ventnor City,NJ,39.34842597,-74.48695828,RES1,3001,,17,NE,1965,1965,3101,2,1,1573.127413,1573.127413,3505,NO,33.11,38.22,3,2.6,6106,113.514912,123.312009,133.028724,139.538933,I,Above,Gable,0,5701,,35.66366118,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 31535,NJBF000063240,7 N DORSET AVE,Ventnor City,NJ,39.34120216,-74.47751608,RES1,3001,,17,NE,1988,1988,3102,1,1,2306.922186,2306.922186,3505,NO,20.17,27.86,3,5.77,6106,113.818542,123.560238,133.287853,139.82545,I,Above,Hip,0,5701,,24.01490876,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 31536,NJBF000063411,5115 BOARDWALK,Ventnor City,NJ,39.34164929,-74.46851665,RES3B,3001,,NaN,E,1986,0,3303,4,1,4666.543804,4666.543804,3504,NO,46.68,57.84,-4,0,6106,114.01054,123.716424,133.45516,139.965494,I,Above,Flat,0,NaN,,52.25942059,0,0,,,,1,1,,0.03,nav,1,1986,4,, 31537,NJBF000065026,,Ventnor City,NJ,39.34593794,-74.48288617,RES1,3001,,NaN,NE,1969,0,3102,2,1,1043.953174,1043.953174,3505,NO,27.33,39.17,3,4.58,6106,113.637429,123.412108,133.133582,139.653779,I,Above,Flat,0,5701,,33.25426248,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31538,NJBF000063204,17 S SOMERSET AVE,Ventnor City,NJ,39.34111636,-74.47373428,RES1,3001,,18,NE,1944,1944,3102,2,1,2065.222664,2065.222664,3505,NO,43.17,55.36,3,4.68,6106,113.90296,123.628837,133.360973,139.889938,I,Above,Gable,0,5701,,49.2644567,0,1.2,,,,1,1,,0.03,nav,1,1944,2,, 31539,NJBF000062381,6201 VENTNOR AVE,Ventnor City,NJ,39.33933616,-74.48044247,RES1,3001,,17,NE,1920,1920,3102,3,1,2139.028426,2139.028426,3505,NO,54.18,64.27,3,1.86,6106,113.77908,123.528562,133.252641,139.805619,I,Above,Hip,0,5701,,59.22930725,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 31540,NJBF000064981,,Ventnor City,NJ,39.3458386,-74.47733316,RES1,3001,,NaN,NE,1969,0,3102,2,1,818.6071778,818.6071778,3505,NO,41.36,52.8,3,5.17,6106,113.761385,123.512542,133.240479,139.75303,I,Above,Flat,0,5701,,47.08006151,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31541,NJBF000063406,132 N CAMBRIDGE AVE,Ventnor City,NJ,39.34162545,-74.48230272,RES1,3001,,28,NE,1923,1923,3102,3,1,1624.263557,1624.263557,3505,NO,43.48,49.92,3,-0.1,6106,113.707318,123.470035,133.192203,139.735031,I,Above,Flat,0,5701,,46.69890016,0,0,,,,1,1,,0.03,nav,1,1923,3,, 31542,NJBF000063186,5905 WINCHESTER AVE,Ventnor City,NJ,39.34109029,-74.47833042,RES1,3001,,18,NE,1980,1980,3102,2,1,2069.602005,2069.602005,3505,NO,42.42,55.5,3,7.4,6106,113.802099,123.546921,133.273577,139.813385,I,Above,Hip,0,5701,,48.96386801,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31543,NJBF000060397,13 S RICHARDS AVE,Ventnor City,NJ,39.33589833,-74.48526539,RES1,3001,,17,NE,1948,1948,3102,2,1,1416.62451,1416.62451,3505,NO,39.43,48.84,3,5.46,6106,113.71955,123.480708,133.199064,139.774751,I,Above,Hip,0,5701,,44.13797127,0,0,,,,1,1,,0.03,nav,1,1948,2,, 31544,NJBF000062016,6519 WINCHESTER AVE,Ventnor City,NJ,39.33865269,-74.48536655,RES1,3001,,17,NE,1928,1928,3102,1,1,1072.791164,1072.791164,3505,NO,9.58,21.19,3,-2.65,6106,113.67969,123.448266,133.166891,139.728026,I,Above,Hip,0,5701,,15.38499138,0,0,,,,1,1,,0.03,nav,1,1928,1,, 31545,NJBF000061640,6 N NEWPORT AVE,Ventnor City,NJ,39.33799937,-74.48398521,COM1,3001,,NaN,ME,1965,1965,3401,1,1,8774.677431,8774.677431,3507,NO,13.34,26.39,1,0.28,6106,113.719061,123.480162,133.200187,139.764227,I,Above,Flat,0,NaN,,19.86259664,0,0,,,,1,1,,0.03,nav,1,1965,1,, 31546,NJBF000063973,29 S NASHVILLE AVE,Ventnor City,NJ,39.34323706,-74.46857983,RES3B,3001,,17,E,1940,1940,3303,3,1,1814.623036,1814.623036,3504,NO,57.1,65.73,-4,0,6110,113.988185,123.697899,133.436698,139.939805,I,Above,Hip,0,NaN,,61.41869316,0,1.1,,,,1,1,,0.35,nav,1,1940,3,, 31547,NJBF000062197,221 N WYOMING AVE,Ventnor City,NJ,39.33897417,-74.49216036,RES1,3001,,17,NE,2014,2014,3102,3,1,1198.969872,1198.969872,3505,NO,48.48,59.95,3,8.72,6106,113.525263,123.323714,133.035487,139.593091,I,Above,Gable,0,5701,,54.21334927,0,0,,,,1,1,,0.03,nav,1,2014,3,, 31548,NJBF000063163,6409 SUNSET AVE,Ventnor City,NJ,39.3410245,-74.485188,RES1,3001,,NaN,NE,1970,1970,3102,1,1,2091.760192,2091.760192,3505,NO,19.32,27.56,3,2.88,6106,113.651637,123.425173,133.144163,139.69255,I,Above,Flat,0,5701,,23.43699262,0,0,,,,1,1,,0.03,nav,1,1970,1,, 31549,NJBF000063169,312-314 N WISSAHICKON AVE,Ventnor City,NJ,39.34104265,-74.49208407,RES1,3001,,45,NE,1972,1972,3102,2,2,1536.938439,1536.938439,3505,NO,37.17,49.26,3,3.25,6106,113.498899,123.302069,133.013999,139.561845,I,Above,Gable,0,5701,,43.21477147,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31550,NJBF000062009,209 N ROSBOROUGH AVE,Ventnor City,NJ,39.33863476,-74.4909439,RES1,3001,,17,NE,1960,1960,3102,1,1,1364.411001,1364.411001,3505,NO,17.48,23.31,3,1.76,6106,113.556763,123.349127,133.062059,139.62212,I,Above,Gable,0,5701,,20.39100189,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 31551,NJBF000063231,417-419 N LAFAYETTE AVE,Ventnor City,NJ,39.34117816,-74.49512206,RES1,3001,,45,NE,1970,1970,3102,2,2,2101.430159,2101.430159,3505,NO,35.54,41.18,3,-2.94,6106,113.429805,123.246501,132.955533,139.500529,I,Above,Gable,0,5701,,38.36039618,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31552,NJBF000062177,24 N PORTLAND AVE,Ventnor City,NJ,39.33892979,-74.48339352,RES1,3001,,17,NE,1890,1890,3102,2,3,1913.308897,1913.308897,3505,NO,40.14,50.47,3,6.88,6106,113.719469,123.480376,133.201146,139.759712,I,Above,Gable,0,5701,,45.30561894,0,0,,,,1,1,,0.03,nav,1,1890,2,, 31553,NJBF000062233,24 N PORTLAND AVE,Ventnor City,NJ,39.33905652,-74.48315624,RES1,3001,,17,NE,1890,1890,3102,2,3,1610.47025,1610.47025,3505,NO,28.74,35.86,3,0.67,6106,113.723001,123.483215,133.204256,139.761936,I,Above,Hip,0,5701,,32.30041138,0,0,,,,1,1,,0.03,nav,1,1890,2,, 31554,NJBF000065089,307 N SOMERSET AVE,Ventnor City,NJ,39.346107,-74.478904,RES1,3001,,17,NE,1930,1930,3102,2,1,1093.595302,1093.595302,3505,NO,30.73,41.01,3,-1.39,6106,113.723213,123.48148,133.207538,139.721456,I,Above,Gable,0,5701,,35.86586317,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31555,NJBF000060864,115 S SACRAMENTO AVE,Ventnor City,NJ,39.33666529,-74.47933121,RES1,3001,,20,NE,2007,2007,3102,3,1,1662.074219,1662.074219,3505,NO,47.13,52.26,3,3.05,6106,113.839751,123.577973,133.302929,139.868775,I,Above,Hip,0,5701,,49.69677404,0,0,,,,1,1,,0.03,nav,1,2007,3,, 31556,NJBF000060777,1 N BUFFALO AVE,Ventnor City,NJ,39.33653375,-74.48652229,RES1,3001,,17,NE,1920,1920,3102,2,2,1339.772313,1339.772313,3505,NO,33.03,45.76,3,2.84,6106,113.683111,123.45124,133.168389,139.740698,I,Above,Hip,0,5701,,39.39366676,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31557,NJBF000063401,202 N HARVARD AVE,Ventnor City,NJ,39.34161279,-74.48306337,RES1,3001,,17,NE,1979,1979,3102,1,1,1223.803195,1223.803195,3505,YES,19.48,32.1,3,8.91,6106,113.690698,123.456597,133.177922,139.72159,I,Above,Gable,0,5701,,25.78746398,0,0,,,,1,1,,0.03,nav,1,1979,1,, 31558,NJBF000065014,311 N OXFORD AVE,Ventnor City,NJ,39.34591038,-74.4796059,RES1,3001,,17,NE,1970,1970,3102,2,1,2460.792977,2460.792977,3505,NO,36.91,46.01,3,4.13,6106,113.710282,123.471079,133.19632,139.712412,I,Above,Flat,0,5701,,41.45630589,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 31559,NJBF000063437,106 S WEYMOUTH AVE,Ventnor City,NJ,39.34172852,-74.46994443,COM1,3001,,17,ME,1925,1925,3401,2,1,1842.109991,1842.109991,3507,NO,34.12,41.23,1,1.29,6106,113.978139,123.689972,133.426891,139.941546,I,Above,Flat,0,NaN,,37.6759782,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31560,NJBF000060787,6929 WINCHESTER AVE,Ventnor City,NJ,39.33654716,-74.48974626,RES1,3001,,17,NE,1925,1925,3102,2,1,1500.776404,1500.776404,3505,NO,28.8,36.88,3,1.24,6106,113.611805,123.393706,133.107592,139.678302,I,Above,Flat,0,5701,,32.83768646,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31561,NJBF000060720,17 N NEWARK AVE,Ventnor City,NJ,39.33644957,-74.4878903,RES1,3001,,17,NE,1920,1920,3102,2,1,1473.942977,1473.942977,3505,NO,40.9,48.83,3,8.92,6106,113.65409,123.427819,133.143552,139.715846,I,Above,Hip,0,5701,,44.86518672,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31562,NJBF000061966,104 S DORSET AVE,Ventnor City,NJ,39.33855765,-74.47637373,RES1,3001,,19,NE,1920,1920,3102,3,1,565.9564464,565.9564464,3505,NO,47.7,60.69,3,8.31,6106,113.879159,123.609824,133.338491,139.887595,I,Above,Hip,0,5701,,54.19843931,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 31563,NJBF000062040,104 S DORSET AVE,Ventnor City,NJ,39.33868835,-74.47619352,RES1,3001,,19,NE,1920,1920,3102,3,1,2331.001121,2331.001121,3505,NO,47.55,61.76,3,1.87,6106,113.881367,123.611604,133.340502,139.888473,I,Above,Hip,0,5701,,54.65929108,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 31564,NJBF000060716,111 S PRINCETON AVE,Ventnor City,NJ,39.33644046,-74.47986661,RES1,3001,,18,NE,1917,1917,3102,3,1,1694.275366,1694.275366,3505,NO,47.07,53.6,3,7.48,6106,113.831022,123.570906,133.295218,139.863278,I,Above,Hip,0,5701,,50.33386767,0,1.2,,,,1,1,,0.03,nav,1,1917,3,, 31565,NJBF000063161,5503 ATLANTIC AVE,Ventnor City,NJ,39.34102348,-74.47316074,RES1,3001,,18,NE,1920,1920,3102,3,1,2249.14551,2249.14551,3505,NO,41.12,51.94,3,-2.54,6110,113.916803,123.640115,133.372944,139.900788,I,Above,Hip,0,5701,,46.52620716,0,1.2,,,,1,1,,0.35,nav,1,1920,3,, 31566,NJBF000063859,5 S VICTORIA AVE,Ventnor City,NJ,39.34290518,-74.47172288,RES1,3001,,17,NE,1925,1925,3102,2,1,2164.875409,2164.875409,3505,NO,28.17,35.14,3,3.91,6106,113.923479,123.645197,133.379967,139.894299,I,Above,Hip,0,5701,,31.65791395,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31567,NJBF000063830,7 S VICTORIA AVE,Ventnor City,NJ,39.34280721,-74.47164547,RES1,3001,,17,NE,1915,1915,3102,2,1,2104.788849,2104.788849,3505,NO,28.03,37.11,3,-2.34,6106,113.926488,123.64767,133.38253,139.897124,I,Above,Hip,0,5701,,32.57288079,0,1.2,,,,1,1,,0.03,nav,1,1915,2,, 31568,NJBF000060758,108 S PRINCETON AVE,Ventnor City,NJ,39.33650095,-74.48038318,RES1,3001,,17,NE,1900,1900,3102,3,1,1987.172269,1987.172269,3505,NO,39.17,45.38,3,-0.5,6106,113.818832,123.561024,133.28477,139.853341,I,Above,Flat,0,5701,,42.2718462,0,1.1,,,,1,1,,0.03,nav,1,1900,3,, 31569,NJBF000063179,201 N PORTLAND AVE,Ventnor City,NJ,39.34107025,-74.48436027,RES1,3001,,17,NE,1932,1932,3102,2,1,890.1401806,890.1401806,3505,NO,36.79,51.31,3,2.57,6106,113.669323,123.439449,133.159333,139.706988,I,Above,Flat,0,5701,,44.0463103,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 31570,NJBF000065067,405 N DERBY AVE,Ventnor City,NJ,39.34605071,-74.48243982,RES1,3001,,17,NE,1975,1975,3102,2,1,2282.912795,2282.912795,3505,NO,27.5,37.36,3,2.07,6106,113.645814,123.41884,133.14081,139.659923,I,Above,Gable,0,5701,,32.42967157,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, 31571,NJBF000065056,14 N BATON ROUGE AVE,Ventnor City,NJ,39.34602817,-74.46833384,RES3A,3001,,28,NE,1926,1926,3301,2,1,1285.006373,1285.006373,3505,NO,29.07,44.02,3,7.19,6106,113.957093,123.671811,133.411049,139.900084,I,Above,Flat,0,5701,,36.54285755,0,0,,,,1,1,,0.03,nav,1,1926,2,, 31572,NJBF000065025,10 N BATON ROUGE AVE,Ventnor City,NJ,39.34593616,-74.46827139,RES3A,3001,,28,NE,1926,1926,3301,2,1,1417.814899,1417.814899,3505,NO,32.26,47.21,3,8.56,6106,113.959673,123.673946,133.413265,139.902548,I,Above,Flat,0,5701,,39.73918955,0,0,,,,1,1,,0.03,nav,1,1926,2,, 31573,NJBF000060852,103 S PORTLAND AVE,Ventnor City,NJ,39.33664683,-74.48077444,RES1,3001,,17,NE,1900,1900,3102,3,1,1309.486796,1309.486796,3505,NO,62.56,76.59,3,8.11,6106,113.808231,123.55243,133.275765,139.844111,I,Above,Hip,0,5701,,69.57559328,0,0,,,,1,1,,0.03,nav,1,1900,3,, 31574,NJBF000062339,222 N ROSBOROUGH AVE,Ventnor City,NJ,39.33925038,-74.49212069,RES1,3001,,17,NE,1940,1940,3102,1,1,1186.765673,1186.765673,3505,NO,18.07,23.16,3,2.4,6106,113.522368,123.321336,133.033164,139.58951,I,Above,Hip,0,5701,,20.61472039,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 31575,NJBF000060018,3 S ROSBOROUGH AVE,Ventnor City,NJ,39.3352467,-74.48775609,RES1,3001,,17,NE,1928,1928,3102,3,1,2159.964844,2159.964844,3505,NO,49.4,62.11,3,0.34,6106,113.673607,123.443617,133.159291,139.737465,I,Above,Hip,0,5701,,55.75636569,0,1.2,,,,1,1,,0.03,nav,1,1928,3,, 31576,NJBF000060879,122 N LAFAYETTE AVE,Ventnor City,NJ,39.336689,-74.4911985,RES1,3001,,45,NE,1938,1938,3102,2,2,1394.921018,1394.921018,3505,NO,28.95,40.86,3,4.3,6106,113.577801,123.366292,133.078773,139.64763,I,Above,Hip,0,5701,,34.90467817,0,1.2,,,,1,1,,0.03,nav,1,1938,2,, 31577,NJBF000060796,117 S SACRAMENTO AVE,Ventnor City,NJ,39.33655372,-74.47923431,RES1,3001,,20,NE,1950,1950,3102,3,1,1333.389974,1333.389974,3505,NO,41.08,51.78,3,2.29,6106,113.843399,123.580935,133.305981,139.872254,I,Above,Hip,0,5701,,46.43127393,0,0,,,,1,1,,0.03,nav,1,1950,3,, 31578,NJBF000063368,131 N HARVARD AVE,Ventnor City,NJ,39.34152349,-74.48252759,RES1,3001,,17,NE,1940,1940,3102,1,1,1341.835166,1341.835166,3505,NO,13.21,21.43,3,-2.08,6106,113.703713,123.467144,133.189057,139.732681,I,Above,Flat,0,5701,,17.32015443,0,0,,,,1,1,,0.03,nav,1,1940,1,, 31579,NJBF000060748,9 N WISSAHICKON AVE,Ventnor City,NJ,39.33649,-74.48721933,RES1,3001,,17,NE,1932,1932,3102,2,1,1486.140749,1486.140749,3505,NO,28.81,41.86,3,-0.63,6106,113.668342,123.439319,133.155743,139.728101,I,Above,Hip,0,5701,,35.33451391,0,0,,,,1,1,,0.03,nav,1,1932,2,, 31580,NJBF000066902,805 N DERBY AVE,Ventnor City,NJ,39.3512105,-74.48661392,RES1,3001,,17,NE,1975,1975,3101,2,1,1712.983586,1712.983586,3505,NO,31.61,46.45,3,5.43,6106,113.486783,123.287641,133.004243,139.499782,I,Above,Flat,0,5701,,39.02912446,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31581,NJBF000060413,202 N WASHINGTON AVE,Ventnor City,NJ,39.33592766,-74.49411009,RES1,3001,,17,NE,1950,1950,3102,2,1,802.7370701,802.7370701,3505,NO,40.25,48.4,3,3.37,6106,113.524006,123.323026,133.032643,139.601498,I,Above,Gable,0,5701,,44.32909379,0,0,,,,1,1,,0.03,nav,1,1950,2,, 31582,NJBF000060737,109 N MELBOURNE AVE,Ventnor City,NJ,39.33646693,-74.49138896,RES1,3001,,17,NE,1928,1928,3102,2,1,1290.492352,1290.492352,3505,NO,33.53,42.55,3,4.7,6106,113.57664,123.365372,133.077639,139.647305,I,Above,Gable,0,5701,,38.03724096,0,0,,,,1,1,,0.03,nav,1,1928,2,, 31583,NJBF000060778,105 S PORTLAND AVE,Ventnor City,NJ,39.336536,-74.480678,RES1,3001,,16,NE,1930,1930,3102,2,1,1688.505431,1688.505431,3505,NO,33.59,45.85,3,6.05,6106,113.811859,123.555374,133.278797,139.847621,I,Above,Hip,0,5701,,39.71914411,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31584,NJBF000060060,6927 VENTNOR AVE,Ventnor City,NJ,39.33533375,-74.48862876,RES1,3001,,17,NE,1940,1940,3102,2,1,1348.815347,1348.815347,3505,NO,36.55,46.22,3,0.38,6106,113.653159,123.427113,133.141923,139.719088,I,Above,Hip,0,5701,,41.38377662,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31585,NJBF000062498,130 N NEW HAVEN AVE,Ventnor City,NJ,39.33958784,-74.48650438,RES1,3001,,17,NE,1940,1940,3102,1,1,1194.379351,1194.379351,3505,NO,18.72,31.84,3,0.56,6106,113.641923,123.417624,133.135135,139.691595,I,Above,Gable,0,5701,,25.27947756,0,0,,,,1,1,,0.03,nav,1,1940,1,, 31586,NJBF000061667,7005-7007 VENTNOR GARDENS,Ventnor City,NJ,39.338039,-74.4921785,RES1,3001,,45,NE,1968,1968,3102,2,2,1782.725765,1782.725765,3505,NO,28.71,36.24,3,-2.42,6106,113.537631,123.333806,133.045489,139.607379,I,Above,Gable,0,5701,,32.47544985,0,0,,,,1,1,,0.03,nav,1,1968,2,, 31587,NJBF000062017,6510 WINCHESTER AVE,Ventnor City,NJ,39.33865411,-74.48466474,COM1,3001,,17,ME,1920,1920,3401,2,1,841.0376946,841.0376946,3507,NO,23.01,35.97,1,1.91,6106,113.695167,123.46077,133.180142,139.740997,I,Above,Flat,0,NaN,,29.48847944,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31588,NJBF000062033,6508 WINCHESTER AVE,Ventnor City,NJ,39.33867734,-74.48457052,COM1,3001,,17,ME,1940,1940,3401,1,1,1543.477159,1543.477159,3507,NO,14.7,29.5,1,0.54,6106,113.696929,123.462191,133.181665,139.742352,I,Above,Flat,0,NaN,,22.10122733,0,0,,,,1,1,,0.03,nav,1,1940,1,, 31589,NJBF000060782,6624 VENTNOR AVE,Ventnor City,NJ,39.33654101,-74.4851368,COM1,3001,,43,ME,1928,1928,3401,2,2,1729.756542,1729.756542,3507,NO,25.07,35.28,1,1.73,6106,113.713553,123.475832,133.194427,139.766721,I,Above,Flat,0,NaN,,30.17357532,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 31590,NJBF000063396,406 BERKSHIRE DRIVE,Ventnor City,NJ,39.34159424,-74.49446376,RES1,3001,,35,NE,1980,1980,3102,2,1,6554.605969,6554.605969,3505,NO,30.79,40.96,3,-2.4,6106,113.438767,123.253588,132.963234,139.50686,I,Above,Flat,0,5701,,35.87335873,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31591,NJBF000066900,802 N DORSET AVE,Ventnor City,NJ,39.3512058,-74.48625444,RES1,3001,,17,NE,1975,1975,3101,2,1,1832.804883,1832.804883,3505,NO,24.21,33.49,3,0.97,6106,113.49483,123.294133,133.011134,139.506464,I,Above,Flat,0,5701,,28.85177787,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 31592,NJBF000064029,,Ventnor City,NJ,39.343379,-74.465498,RES3B,3001,,NaN,E,1969,0,3303,3,1,1138.750335,1138.750335,3504,NO,42.21,50.21,-4,0,6106,114.053965,123.751642,133.494501,139.986517,I,Above,Hip,0,NaN,,46.20554253,0,0,,,,1,1,,0.03,nav,1,1969,3,, 31593,NJBF000063987,114 S VASSAR SQUARE,Ventnor City,NJ,39.3432815,-74.465424,RES3B,3001,,17,E,1920,1920,3303,2,1,1190.860329,1190.860329,3504,NO,31.68,39.76,-4,0,6106,114.056862,123.75403,133.49698,139.989168,I,Above,Gable,0,NaN,,35.72246597,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31594,NJBF000060394,111 S STRATFORD AVE,Ventnor City,NJ,39.33589687,-74.48089058,RES1,3001,,18,NE,1950,1950,3102,2,1,1970.299429,1970.299429,3505,NO,30.34,38.02,3,1.81,6106,113.815904,123.55867,133.281741,139.854437,I,Above,Hip,0,5701,,34.18372493,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 31595,NJBF000060408,114 N BALTIMORE AVE,Ventnor City,NJ,39.33592094,-74.49231739,RES1,3001,,18,NE,1930,2018,3102,2,1,1939.960035,1939.960035,3505,NO,36.09,47.17,3,7.59,6106,113.563687,123.35497,133.06627,139.637323,I,Above,Gable,0,5701,,41.62558228,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31596,NJBF000060755,14 N NEWARK AVE,Ventnor City,NJ,39.33649994,-74.48840315,RES1,3001,,18,NE,2008,2008,3102,1,1,1416.78132,1416.78132,3505,NO,10.5,22.01,3,-1.86,6106,113.642086,123.41813,133.133352,139.705147,I,Above,Hip,0,5701,,16.25533095,0,1.1,,,,1,1,,0.03,nav,1,2008,1,, 31597,NJBF000062207,6416 WINCHESTER AVE,Ventnor City,NJ,39.338996,-74.48394651,RES1,3001,,17,NE,1925,1925,3102,2,2,910.1006279,910.1006279,3505,NO,39.16,47.16,3,5.79,6106,113.706376,123.469781,133.189959,139.748562,I,Above,Gable,0,5701,,43.16211543,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31598,NJBF000067278,EAST DRIVE,Ventnor City,NJ,39.35288168,-74.48623682,RES3A,3001,,NaN,NE,1996,1996,3301,2,1,2221.77973,2221.77973,3502,NO,28.1,34.18,5,-0.49,6106,113.47396,123.276124,132.992766,139.479423,I,Above,Flat,0,5701,,31.13915626,0,0,,,,1,1,,0.03,nav,1,1996,2,, 31599,NJBF000067337,EAST DRIVE,Ventnor City,NJ,39.35313612,-74.48591712,RES3A,3001,,NaN,NE,1996,1996,3301,2,1,9042.80327,9042.80327,3502,NO,33.45,40.77,5,-4.32,6106,113.477855,123.279077,132.996016,139.481131,I,Above,Flat,0,5701,,37.10766543,0,0,,,,1,1,,0.03,nav,1,1996,2,, 31600,NJBF000060426,6802 VENTNOR AVE,Ventnor City,NJ,39.33594275,-74.48644625,RES1,3001,,27,NE,1929,1929,3102,2,1,1322.213225,1322.213225,3505,NO,26.59,38.82,3,4.67,6106,113.6929,123.459176,133.176309,139.751636,I,Above,Flat,0,5701,,32.70641403,0,0,,,,1,1,,0.03,nav,1,1929,2,, 31601,NJBF000060531,24-26 N WYOMING AVE,Ventnor City,NJ,39.33614547,-74.48989583,RES1,3001,,45,NE,1962,1962,3102,2,2,1594.264621,1594.264621,3505,NO,35,41.64,3,4.1,6106,113.614027,123.395521,133.109202,139.681647,I,Above,Hip,0,5701,,38.3168929,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 31602,NJBF000062219,114 N NEW HAVEN AVE,Ventnor City,NJ,39.33902,-74.48606,RES1,3001,,17,NE,1940,1940,3102,1,1,1472.13227,1472.13227,3505,NO,19.31,31.3,3,3.57,6106,113.659417,123.43184,133.14977,139.709137,I,Above,Hip,0,5701,,25.30231151,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 31603,NJBF000060049,6604 ATLANTIC AVE,Ventnor City,NJ,39.3353168,-74.48381129,RES1,3001,,17,NE,1925,1925,3102,2,1,1634.973661,1634.973661,3505,NO,31.27,39.73,3,0.33,6106,113.759569,123.513077,133.232865,139.81136,I,Above,Gable,0,5701,,35.50037205,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31604,NJBF000064970,3 N BATON ROUGE AVE,Ventnor City,NJ,39.34581752,-74.46772965,RES3A,3001,,17,NE,1930,1930,3301,2,1,695.8761227,695.8761227,3505,NO,31.6,38.4,3,8.09,6106,113.973094,123.684945,133.424975,139.913145,I,Above,Hip,0,5701,,35.000027,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31605,NJBF000062166,3 S CAMBRIDGE AVE,Ventnor City,NJ,39.33890806,-74.47958503,RES1,3001,,17,NE,1950,1950,3102,1,1,2481.163604,2481.163604,3505,NO,12.96,19.3,3,-0.59,6106,113.803738,123.548598,133.273599,139.827557,I,Above,Hip,0,5701,,16.1276431,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 31606,NJBF000064118,9 S HILLSIDE AVE,Ventnor City,NJ,39.34362466,-74.46973052,RES1,3001,,17,NE,1910,1910,3102,3,1,1794.214454,1794.214454,3505,NO,58.82,67.67,3,3.33,6106,113.957793,123.673012,133.410353,139.915233,I,Above,Gable,0,5701,,63.24484063,0,0,,,,1,1,,0.03,nav,1,1910,3,, 31607,NJBF000064150,7 S HILLSIDE AVE,Ventnor City,NJ,39.34371423,-74.46978924,RES1,3001,,17,NE,1920,1920,3102,2,1,1991.148422,1991.148422,3505,NO,28.82,38.5,3,1.39,6106,113.955348,123.670998,133.408269,139.912897,I,Above,Hip,0,5701,,33.66054592,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31608,NJBF000060373,103 N BALTIMORE AVE,Ventnor City,NJ,39.33587039,-74.4918356,RES1,3001,,17,NE,1930,1930,3102,2,1,1217.14773,1217.14773,3505,NO,33.31,39.94,3,2.68,6106,113.575008,123.364091,133.075843,139.647645,I,Above,Hip,0,5701,,36.62210453,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31609,NJBF000061900,111 N BUFFALO AVE,Ventnor City,NJ,39.33843598,-74.48804185,RES1,3001,,17,NE,1952,1952,3102,1,1,1313.115734,1313.115734,3505,NO,15.98,23.04,3,-2.86,6106,113.623585,123.40301,133.118832,139.68118,I,Above,Gable,0,5701,,19.50733096,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 31610,NJBF000066582,515 N VICTORIA AVE,Ventnor City,NJ,39.35013647,-74.47943758,RES3A,3001,,17,NE,1980,1980,3301,2,1,1974.745766,1974.745766,3505,NO,44.04,49.48,3,6.25,6106,113.659393,123.427822,133.152869,139.64637,I,Above,Hip,0,5701,,46.76246151,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 31611,NJBF000060041,6707 ATLANTIC AVE,Ventnor City,NJ,39.335301,-74.4848825,RES1,3001,,43,NE,1920,1920,3102,2,2,1489.521564,1489.521564,3505,NO,27.57,41.17,3,0.22,6106,113.736198,123.494178,133.21283,139.791628,I,Above,Flat,0,5701,,34.36646034,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31612,NJBF000065365,400 N SOMERSET AVE,Ventnor City,NJ,39.34685792,-74.48002308,RES1,3001,,17,NE,1960,1960,3102,2,1,1763.699708,1763.699708,3505,NO,34.19,47.27,3,-1.28,6106,113.688718,123.453218,133.177918,139.689591,I,Above,Gable,0,5701,,40.72969105,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31613,NJBF000066643,604 N SURREY AVE,Ventnor City,NJ,39.35033877,-74.48101445,RES1,3001,,17,NE,1974,1974,3102,2,1,1142.031403,1142.031403,3507,NO,25.31,37.03,1,-0.93,6106,113.621947,123.397377,133.120526,139.615195,I,Above,Hip,0,5701,,31.17078369,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31614,NJBF000065176,310 N SUFFOLK AVE,Ventnor City,NJ,39.34631033,-74.47867483,RES1,3001,,17,NE,1930,1930,3102,2,1,1167.083489,1167.083489,3505,NO,41.45,52.07,3,5.21,6106,113.725623,123.483353,133.209672,139.722129,I,Above,Gable,0,5701,,46.76262577,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31615,NJBF000063191,6403 SUNSET AVE,Ventnor City,NJ,39.34110184,-74.4850093,RES1,3001,,NaN,NE,1930,1930,3102,2,2,2003.120426,2003.120426,3505,NO,38.29,53.11,3,1.11,6106,113.654559,123.427514,133.1467,139.69458,I,Above,Flat,0,5701,,45.69745019,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31616,NJBF000062149,23 N NEWPORT AVE,Ventnor City,NJ,39.33888668,-74.48404428,RES1,3001,,17,NE,1925,1925,3102,2,1,1089.890195,1089.890195,3505,NO,24.01,35.55,3,0.02,6106,113.705712,123.46926,133.189322,139.748578,I,Above,Gable,0,5701,,29.78220868,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31617,NJBF000063312,19 N DORSET AVE,Ventnor City,NJ,39.341388,-74.477495,RES1,3001,,NaN,NE,1988,0,3102,1,1,1114.065731,1114.065731,3505,NO,17.8,24.2,3,2.7,6106,113.816525,123.558563,133.286217,139.822775,I,Above,Hip,0,5701,,20.99579391,0,1.1,,,,1,1,,0.03,nav,1,1988,1,, 31618,NJBF000066859,613 N SURREY AVE,Ventnor City,NJ,39.35105327,-74.48113517,RES3A,3001,,17,NE,1976,1976,3301,2,1,1065.509363,1065.509363,3505,NO,26.04,32.5,3,-0.85,6106,113.610167,123.387412,133.110302,139.601391,I,Above,Gable,0,5701,,29.26883924,0,0,,,,1,1,,0.03,nav,1,1976,2,, 31619,NJBF000063511,5 S SUFFOLK AVE,Ventnor City,NJ,39.34190715,-74.4730695,RES1,3001,,18,NE,1920,1920,3102,3,1,1825.004783,1825.004783,3505,NO,66.46,79.09,3,8.24,6110,113.907076,123.632045,133.365067,139.888196,I,Above,Hip,0,5701,,72.77788427,0,1.2,,,,1,1,,0.35,nav,1,1920,3,, 31620,NJBF000064047,5402 EDGEWATER AVE,Ventnor City,NJ,39.34343278,-74.47531436,RES1,3001,,17,NE,1967,1967,3102,1,1,1869.513713,1869.513713,3505,NO,16.14,29.42,3,0.71,6106,113.837466,123.57509,133.305455,139.826427,I,Above,Gable,0,5701,,22.77953513,0,0,,,,1,1,,0.03,nav,1,1967,1,, 31621,NJBF000064078,5400 EDGEWATER AVE,Ventnor City,NJ,39.34351109,-74.47515372,RES1,3001,,17,NE,1965,1965,3102,2,1,572.4663458,572.4663458,3505,NO,38.58,53.01,3,6.8,6106,113.839962,123.577098,133.30766,139.827854,I,Above,Flat,0,5701,,45.79185236,0,0,,,,1,1,,0.03,nav,1,1965,2,, 31622,NJBF000059454,8 S LAFAYETTE AVE,Ventnor City,NJ,39.33427733,-74.48924695,RES1,3001,,18,NE,1920,1920,3102,2,1,1295.410755,1295.410755,3505,NO,44.22,57.72,3,8.22,6106,113.654168,123.427928,133.141927,139.723265,I,Above,Hip,0,5701,,50.9676957,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31623,NJBF000059453,11 S LAFAYETTE AVE,Ventnor City,NJ,39.33427691,-74.48876128,RES1,3001,,17,NE,1900,1900,3102,2,1,1473.78584,1473.78584,3505,NO,30.78,43.75,3,7.52,6106,113.664878,123.436571,133.151052,139.732867,I,Above,Hip,0,5701,,37.26436629,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 31624,NJBF000065657,604 N CORNWALL AVE,Ventnor City,NJ,39.3477338,-74.48609167,RES1,3001,,17,NE,2012,2012,3101,1,1,1338.485525,1338.485525,3505,NO,16.95,23.96,3,1.7,6106,113.543068,123.335079,133.052829,139.566161,I,Above,Hip,0,5701,,20.45362947,0,0,,,,1,1,,0.03,nav,1,2012,1,, 31625,NJBF000065705,424 N SOMERSET AVE,Ventnor City,NJ,39.34787571,-74.48086616,RES1,3001,,17,NE,1964,1964,3102,2,1,1950.553925,1950.553925,3505,NO,27.62,39.82,3,-2.79,6106,113.656884,123.426974,133.150606,139.658063,I,Above,Gable,0,5701,,33.7184486,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, 31626,NJBF000062731,128 N NEWPORT AVE,Ventnor City,NJ,39.34010265,-74.48545614,RES1,3001,,16,NE,1928,1928,3102,1,1,984.7046895,984.7046895,3505,NO,23.38,31.67,3,7.47,6106,113.658116,123.430601,133.149254,139.702691,I,Above,Flat,0,5701,,27.52668409,0,0,,,,1,1,,0.03,nav,1,1928,1,, 31627,NJBF000061790,14 S CAMBRIDGE AVE,Ventnor City,NJ,39.33825894,-74.47963649,RES1,3001,,17,NE,1955,1955,3102,1,1,2041.364322,2041.364322,3505,NO,23.74,31.03,3,8.39,6106,113.811387,123.554869,133.279728,139.837341,I,Above,Hip,0,5701,,27.38370458,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, 31628,NJBF000060302,110 N SWARTHMORE AVE,Ventnor City,NJ,39.33574526,-74.49291813,RES1,3001,,17,NE,1948,1948,3102,1,1,1923.644735,1923.644735,3505,NO,16.33,22.19,3,-2.97,6106,113.552854,123.346254,133.056959,139.628044,I,Above,Hip,0,5701,,19.26229082,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 31629,NJBF000066469,6201 MARSHALL AVE,Ventnor City,NJ,39.3498326,-74.48867324,RES1,3001,,17,NE,1978,1978,3101,1,1,1899.67992,1899.67992,3505,NO,20.47,31.13,3,2.93,6106,113.458739,123.265936,132.980572,139.484247,I,Above,Gable,0,5701,,25.80133758,0,1.1,,,,1,1,,0.03,nav,1,1978,1,, 31630,NJBF000059486,6 S LAFAYETTE AVE,Ventnor City,NJ,39.33433896,-74.48933659,RES1,3001,,17,NE,1904,1904,3102,2,1,1572.669934,1572.669934,3505,NO,29.31,35.9,3,-1.29,6106,113.651324,123.425635,133.139557,139.720537,I,Above,Flat,0,5701,,32.60401927,0,1.1,,,,1,1,,0.03,nav,1,1904,2,, 31631,NJBF000059447,1 N SWARTHMORE AVE,Ventnor City,NJ,39.33425899,-74.49124584,RES1,3001,,17,NE,1920,1920,3102,2,1,1062.142732,1062.142732,3505,NO,32.36,42.66,3,0.5,6106,113.610353,123.392593,133.104639,139.68379,I,Above,Hip,0,5701,,37.51169206,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31632,NJBF000064482,7 N HILLSIDE AVE,Ventnor City,NJ,39.34459835,-74.47055986,RES1,3001,,17,NE,1926,1926,3102,1,2,1727.346297,1727.346297,3507,NO,14.07,22.11,1,2.94,6106,113.926804,123.647498,133.383822,139.886429,I,Above,Hip,0,5701,,18.09017976,0,1.1,,,,1,1,,0.03,nav,1,1926,1,, 31633,NJBF000060523,103 S NEWPORT AVE,Ventnor City,NJ,39.33613192,-74.48179285,RES1,3001,,19,NE,1985,1985,3102,3,1,1713.84911,1713.84911,3505,NO,52.31,59.35,3,2.75,6106,113.792829,123.539976,133.262097,139.834611,I,Above,Hip,0,5701,,55.82911984,0,1.1,,,,1,1,,0.03,nav,1,1985,3,, 31634,NJBF000063925,5415 WINCHESTER AVE,Ventnor City,NJ,39.34308688,-74.47413362,RES1,3001,,17,NE,1920,1920,3102,2,1,1545.040812,1545.040812,3505,NO,40.55,55.17,3,2.4,6106,113.86802,123.600016,133.331805,139.851723,I,Above,Flat,0,5701,,47.86208128,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31635,NJBF000061512,7017-7019 VENTNOR GD,Ventnor City,NJ,39.33777237,-74.49280056,RES1,3001,,45,NE,1970,1970,3102,2,2,1743.851603,1743.851603,3505,NO,28.41,39.03,3,-2.93,6106,113.52752,123.325702,133.036763,139.599281,I,Above,Gable,0,5701,,33.71748639,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31636,NJBF000060583,1 N WISSAHICKON AVE,Ventnor City,NJ,39.3362355,-74.486958,RES1,3001,,17,NE,1922,1922,3102,2,1,528.6398933,528.6398933,3505,NO,31.96,43.86,3,4.02,6106,113.677585,123.446795,133.163449,139.73716,I,Above,Hip,0,5701,,37.90893212,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 31637,NJBF000061748,103 S CORNWALL AVE,Ventnor City,NJ,39.3381845,-74.4774845,RES1,3001,,17,NE,1914,1914,3102,3,1,586.1010583,586.1010583,3505,NO,33.3,40.1,3,-1.54,6106,113.859761,123.594109,133.321424,139.875153,I,Above,Flat,0,5701,,36.70310405,0,1.2,,,,1,1,,0.03,nav,1,1914,3,, 31638,NJBF000065076,19 N AUSTIN AVE,Ventnor City,NJ,39.34607583,-74.4693899,RES1,3001,,17,NE,1990,1990,3102,2,1,939.810409,939.810409,3507,NO,35.75,47.52,1,2.75,6106,113.933257,123.652333,133.390193,139.882155,I,Above,Gable,0,5701,,41.63883478,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, 31639,NJBF000063384,118 N CORNWALL AVE,Ventnor City,NJ,39.341574,-74.4815945,RES1,3001,,17,NE,1930,1930,3102,2,1,1093.870396,1093.870396,3505,NO,34.44,43.07,3,5.61,6106,113.723649,123.48326,133.206218,139.7485,I,Above,Hip,0,5701,,38.75662615,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31640,NJBF000067400,,Ventnor City,NJ,39.35333234,-74.48548189,RES3A,3001,,NaN,NE,1969,0,3301,1,1,8016.81103,8016.81103,3502,NO,25.74,37.73,5,7.17,6106,113.485035,123.284722,133.002103,139.485873,I,Above,Flat,0,5701,,31.73934096,0,0,,,,1,1,,0.03,nav,1,1969,1,, 31641,NJBF000066590,606 N SUFFOLK AVE,Ventnor City,NJ,39.35016031,-74.48177428,RES1,3001,,17,NE,1971,1971,3102,2,1,1249.252835,1249.252835,3507,NO,28.09,40.74,1,1.81,6106,113.607419,123.385726,133.108013,139.604585,I,Above,Flat,0,5701,,34.4136177,0,0,,,,1,1,,0.03,nav,1,1971,2,, 31642,NJBF000065396,416 N OXFORD AVE,Ventnor City,NJ,39.3469453,-74.48089969,RES1,3001,,17,NE,1922,1922,3102,2,1,948.2579417,948.2579417,3505,NO,26.07,33,3,3.74,6106,113.668206,123.436571,133.160244,139.672691,I,Above,Gable,0,5701,,29.53516695,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 31643,NJBF000061568,118 N NEWARK AVE,Ventnor City,NJ,39.33787173,-74.48954574,RES1,3001,,17,NE,1943,1943,3102,2,1,1576.819384,1576.819384,3505,NO,29.9,37.4,3,-1.12,6106,113.598062,123.382503,133.096749,139.661299,I,Above,Hip,0,5701,,33.64901781,0,0,,,,1,1,,0.03,nav,1,1943,2,, 31644,NJBF000060839,112 S SACRAMENTO AVE,Ventnor City,NJ,39.33662404,-74.47976629,RES1,3001,,17,NE,1980,1980,3102,3,1,2222.143785,2222.143785,3505,NO,45.16,50.88,3,3.59,6106,113.830736,123.570667,133.295125,139.861989,I,Above,Flat,0,5701,,48.02146123,0,1.1,,,,1,1,,0.03,nav,1,1980,3,, 31645,NJBF000060999,106 S SACRAMENTO AVE,Ventnor City,NJ,39.33687883,-74.47994381,RES1,3001,,17,NE,1920,1920,3102,3,1,1536.097645,1536.097645,3505,NO,45.98,53.38,3,7.79,6106,113.823343,123.564663,133.288964,139.854722,I,Above,Hip,0,5701,,49.68110973,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 31646,NJBF000064894,6302 FREMONT AVE,Ventnor City,NJ,39.34559722,-74.485561,RES1,3001,,17,NE,1967,1967,3102,1,1,2176.895965,2176.895965,3505,NO,21.33,26.67,3,7.55,6106,113.582716,123.368059,133.086592,139.61085,I,Above,Hip,0,5701,,23.99944035,0,1.1,,,,1,1,,0.03,nav,1,1967,1,, 31647,NJBF000063213,5501 ATLANTIC AVE,Ventnor City,NJ,39.34113298,-74.47304445,RES1,3001,,18,NE,1948,1948,3102,2,1,2937.435909,2937.435909,3505,NO,30.97,38.79,3,-2.11,6110,113.917912,123.641,133.373983,139.900943,I,Above,Hip,0,5701,,34.87931483,0,1.2,,,,1,1,,0.35,nav,1,1948,2,, 31648,NJBF000060226,10 N WYOMING AVE,Ventnor City,NJ,39.33561525,-74.48949081,RES1,3001,,NaN,NE,1921,0,3102,2,1,2040.460064,2040.460064,3505,NO,25.11,34.68,3,0.31,6106,113.63027,123.408641,133.12264,139.697833,I,Above,Gable,0,5701,,29.89444391,0,0,,,,1,1,,0.03,nav,1,1921,2,, 31649,NJBF000063184,108 N CORNWALL AVE,Ventnor City,NJ,39.341082,-74.4811785,RES1,3001,,17,NE,1920,1920,3102,2,1,777.9732559,777.9732559,3505,NO,22.06,30.4,3,0.48,6106,113.739403,123.496122,133.21952,139.763957,I,Above,Hip,0,5701,,26.2275529,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31650,NJBF000063159,106 N CORNWALL AVE,Ventnor City,NJ,39.34101605,-74.48114474,RES1,3001,,17,NE,1925,1925,3102,2,1,1204.349191,1204.349191,3505,NO,20.44,26.83,3,-1.05,6106,113.741014,123.497441,133.220872,139.765625,I,Above,Flat,0,5701,,23.63932476,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31651,NJBF000065380,409 N DUDLEY AVE,Ventnor City,NJ,39.34690085,-74.48128547,RES1,3001,,17,NE,1965,1965,3102,2,1,1173.345728,1173.345728,3505,NO,38.51,47.39,3,6.99,6106,113.660268,123.430165,133.153397,139.666585,I,Above,Gable,0,5701,,42.95374792,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 31652,NJBF000062709,111 N PORTLAND AVE,Ventnor City,NJ,39.34006102,-74.48351432,RES1,3001,,17,NE,2016,1921,3102,1,1,1328.584866,1328.584866,3505,NO,25.81,36.51,3,7.94,6106,113.701557,123.465709,133.186449,139.738947,I,Above,Hip,0,5701,,31.15873548,0,1.1,,,,1,1,,0.03,nav,1,2016,1,, 31653,NJBF000064357,4825-4827 ATLANTIC AVE,Ventnor City,NJ,39.344296,-74.4663545,RES3B,3001,,NaN,ME,1960,1930,3301,2,1,2263.555434,2263.555434,3504,NO,26.05,39.07,-4,0,6110,114.023162,123.726261,133.468049,139.958859,I,Above,Flat,0,NaN,,32.56300053,0,0,,,,1,1,,0.35,nav,1,1960,2,, 31654,NJBF000065556,508 N DERBY AVE,Ventnor City,NJ,39.34746046,-74.48413022,RES1,3001,,17,NE,1960,1960,3101,1,1,1397.08287,1397.08287,3505,NO,17.33,25.53,3,-0.16,6106,113.590071,123.373153,133.093103,139.606406,I,Above,Flat,0,5701,,21.42928157,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 31655,NJBF000061942,,Ventnor City,NJ,39.33852208,-74.47492737,RES1,3001,,NaN,NE,1969,0,3102,2,1,5685.566209,5685.566209,3505,NO,30.49,45.39,3,-0.9,6106,113.911475,123.636083,133.366459,139.911945,I,Above,Flat,0,5701,,37.93960074,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31656,NJBF000060934,18 N WISSAHICKON AVE,Ventnor City,NJ,39.33678046,-74.48787301,RES1,3001,,18,NE,1940,1940,3102,3,1,1171.151981,1171.151981,3505,NO,37.17,47.68,3,-2.04,6106,113.649937,123.424445,133.140243,139.710922,I,Above,Gable,0,5701,,42.42210026,0,1.1,,,,1,1,,0.03,nav,1,1940,3,, 31657,NJBF000062430,6310 WINCHESTER AVE,Ventnor City,NJ,39.33944883,-74.48304443,RES1,3001,,45,NE,1950,1950,3102,2,2,846.4343939,846.4343939,3505,NO,34.02,39.18,3,0.48,6106,113.720177,123.48087,133.202072,139.757513,I,Above,Hip,0,5701,,36.59953555,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 31658,NJBF000062353,6104 VENTNOR AVE,Ventnor City,NJ,39.33927883,-74.47941295,RES1,3001,,18,NE,1922,1922,3102,2,1,1310.836149,1310.836149,3505,NO,33.81,39.14,3,2.4,6106,113.802525,123.547567,133.272806,139.824435,I,Above,Flat,0,5701,,36.4728376,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 31659,NJBF000062746,100 S SOMERSET AVE,Ventnor City,NJ,39.34012708,-74.47386185,RES1,3001,,17,NE,1990,1990,3102,2,1,1303.814615,1303.814615,3505,NO,27.07,34.33,3,5.33,6110,113.913345,123.637432,133.369307,139.903649,I,Above,Flat,0,5701,,30.70376377,0,1.2,,,,1,1,,0.35,nav,1,1990,2,, 31660,NJBF000062703,104 S SOMERSET AVE,Ventnor City,NJ,39.340048,-74.47375858,RES1,3001,,17,NE,1930,1930,3102,2,1,1900.608571,1900.608571,3505,NO,44.74,53.6,3,7.29,6106,113.916667,123.640144,133.372135,139.906588,I,Above,Flat,0,5701,,49.16972912,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 31661,NJBF000064566,5403 MONMOUTH AVE,Ventnor City,NJ,39.3448093,-74.47692787,RES1,3001,,17,NE,1959,1959,3102,2,1,1630.110497,1630.110497,3505,NO,29.74,36.91,3,-0.94,6106,113.783794,123.531091,133.259531,139.776739,I,Above,Hip,0,5701,,33.32186002,0,1.1,,,,1,1,,0.03,nav,1,1959,2,, 31662,NJBF000063933,111 S MARION AVE,Ventnor City,NJ,39.3431201,-74.46629342,RES3B,3001,,18,E,1910,1910,3303,3,1,2094.370208,2094.370208,3504,NO,55.18,67.53,-4,0,6106,114.03993,123.740205,133.481987,139.977956,I,Above,Flat,0,NaN,,61.35402759,0,0,,,,1,1,,0.03,nav,1,1910,3,, 31663,NJBF000064697,302 N DUDLEY AVE,Ventnor City,NJ,39.34510533,-74.48028485,RES1,3001,,17,NE,1957,1957,3102,1,1,834.9875622,834.9875622,3505,NO,22.54,31.67,3,5.65,6106,113.705822,123.467771,133.192252,139.713669,I,Above,Gable,0,5701,,27.10312585,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, 31664,NJBF000060927,7 S NEW HAVEN AVE,Ventnor City,NJ,39.33676909,-74.48367898,RES1,3001,,17,NE,1916,1916,3102,3,1,2189.281009,2189.281009,3505,NO,38.84,48.93,3,0.17,6106,113.742571,123.499278,133.219459,139.790011,I,Above,Flat,0,5701,,43.8880295,0,1.2,,,,1,1,,0.03,nav,1,1916,3,, 31665,NJBF000060649,12 S AVOLYN AVE,Ventnor City,NJ,39.33634951,-74.48456612,RES1,3001,,17,NE,1924,1924,3102,2,1,1006.492697,1006.492697,3505,NO,40.44,54.87,3,7.7,6106,113.728755,123.48813,133.207298,139.780486,I,Above,Hip,0,5701,,47.65716592,0,0,,,,1,1,,0.03,nav,1,1924,2,, 31666,NJBF000060595,14 S AVOLYN AVE,Ventnor City,NJ,39.33625442,-74.48447565,RES1,3001,,29,NE,1921,1921,3102,2,1,1748.24698,1748.24698,3505,NO,20.19,28.36,3,-0.88,6106,113.732054,123.490801,133.210049,139.783725,I,Above,Flat,0,5701,,24.27311794,0,0,,,,1,1,,0.03,nav,1,1921,2,, 31667,NJBF000060086,103 S AVOLYN AVE,Ventnor City,NJ,39.33537703,-74.4833855,RES1,3001,,17,NE,1925,1925,3102,2,1,1467.734761,1467.734761,3505,NO,23.64,35.58,3,-2.5,6106,113.768125,123.519998,133.240254,139.818235,I,Above,Gable,0,5701,,29.61016905,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31668,NJBF000062181,6803 VENTNOR GARDENS,Ventnor City,NJ,39.338943,-74.4903775,RES1,3001,,17,NE,1950,1950,3102,1,1,1230.698511,1230.698511,3505,NO,21.04,36.03,3,8.85,6106,113.565101,123.355793,133.069309,139.628233,I,Above,Gable,0,5701,,28.53473894,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 31669,NJBF000065825,503 N OXFORD AVE,Ventnor City,NJ,39.34819086,-74.48140654,RES1,3001,,17,NE,1963,1963,3102,1,1,1800.029429,1800.029429,3507,NO,15.12,26.81,1,0.08,6106,113.640849,123.413841,133.136813,139.643308,I,Above,Gable,0,5701,,20.96755159,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 31670,NJBF000058637,7209 ATLANTIC AVE,Ventnor City,NJ,39.33265316,-74.49036241,RES1,3001,,17,NE,1914,1914,3102,2,1,2140.662613,2140.662613,3505,NO,36.33,47.49,3,5.5,6110,113.652232,123.426291,133.138847,139.725304,I,Above,Hip,0,5701,,41.90653023,0,1.1,,,,1,1,,0.35,nav,1,1914,2,, 31671,NJBF000065058,506 N HARVARD AVE,Ventnor City,NJ,39.34603051,-74.48646252,RES1,3001,,18,NE,1980,1980,3102,3,1,1493.828355,1493.828355,3505,NO,53.38,60.56,3,-0.99,6106,113.557057,123.347173,133.064696,139.587184,I,Above,Flat,0,5701,,56.96635799,0,1.2,,,,1,1,,0.03,nav,1,1980,3,, 31672,NJBF000059303,1 N WASHINGTON AVE,Ventnor City,NJ,39.33397053,-74.49173176,RES1,3001,,45,NE,1920,1920,3102,2,2,1050.002611,1050.002611,3505,NO,36.67,43.03,3,1.18,6106,113.603647,123.387181,133.098706,139.678368,I,Above,Flat,0,5701,,39.85148253,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31673,NJBF000058873,10 S SWARTHMORE AVE,Ventnor City,NJ,39.33309472,-74.49080562,RES1,3001,,17,NE,1975,1975,3102,2,1,1393.150104,1393.150104,3505,NO,27.77,39.68,3,5.59,6106,113.636274,123.413448,133.125676,139.709898,I,Above,Gable,0,5701,,33.72629405,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31674,NJBF000064647,410 N HARVARD AVE,Ventnor City,NJ,39.34498793,-74.48560466,RES1,3001,,17,NE,1982,1982,3102,2,1,1854.436536,1854.436536,3505,NO,24.19,30.68,3,-0.21,6106,113.589745,123.373978,133.092501,139.620012,I,Above,Flat,0,5701,,27.43373777,0,0,,,,1,1,,0.03,nav,1,1982,2,, 31675,NJBF000064711,4921 VENTNOR AVE,Ventnor City,NJ,39.34513476,-74.46843578,RES3A,3001,,45,NE,1905,1905,3301,2,2,1560.847528,1560.847528,3505,NO,20.48,30.72,3,-1.31,6106,113.966478,123.67973,133.418815,139.912441,I,Above,Hip,0,5701,,25.59993635,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 31676,NJBF000066997,808 DORSET AVE,Ventnor City,NJ,39.35163678,-74.48659366,RES1,3001,,17,NE,1975,1975,3101,2,1,1637.688337,1637.688337,3505,NO,41.53,49.52,3,7.4,6106,113.481807,123.28334,132.999873,139.493196,I,Above,Flat,0,5701,,45.52270564,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31677,NJBF000062180,6 S CORNWALL AVE,Ventnor City,NJ,39.33893722,-74.47898505,RES1,3001,,18,NE,1962,1962,3102,1,1,3412.746171,3412.746171,3505,NO,15.81,29.13,3,0.96,6106,113.816564,123.558992,133.28468,139.837411,I,Above,Hip,0,5701,,22.47395643,0,0,,,,1,1,,0.03,nav,1,1962,1,, 31678,NJBF000059485,108 S RICHARDS AVE,Ventnor City,NJ,39.33433446,-74.48449089,RES1,3001,,18,NE,2006,2006,3102,2,1,1792.245846,1792.245846,3505,NO,36.42,45.48,3,3.5,6106,113.758146,123.511919,133.230788,139.814639,I,Above,Hip,0,5701,,40.94758648,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, 31679,NJBF000060889,100 N ROSBOROUGH AVE,Ventnor City,NJ,39.33670536,-74.48942476,RES1,3001,,17,NE,1935,1935,3102,2,1,1986.704495,1986.704495,3505,NO,29.68,40.69,3,5.44,6106,113.616719,123.397656,133.111883,139.68208,I,Above,Flat,0,5701,,35.18619948,0,1.2,,,,1,1,,0.03,nav,1,1935,2,, 31680,NJBF000062491,301-303 N LAFAYETTE AVE,Ventnor City,NJ,39.33957258,-74.49356501,RES1,3001,,45,NE,1970,1970,3102,2,2,2422.079617,2422.079617,3505,NO,22.04,36.39,3,-0.17,6106,113.486033,123.292049,133.002511,139.556205,I,Above,Gable,0,5701,,29.21549502,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31681,NJBF000058442,107 S BALTIMORE AVE,Ventnor City,NJ,39.33232299,-74.48897304,RES1,3001,,19,NE,1946,1946,3102,2,1,2196.528733,2196.528733,3505,NO,20.87,35.2,3,-1.77,6106,113.687432,123.454671,133.168505,139.758044,I,Above,Gable,0,5701,,28.03462547,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, 31682,NJBF000061321,,Ventnor City,NJ,39.33743884,-74.4957001,RES1,3001,,NaN,NE,1969,0,3103,6,1,2874.770518,2874.770518,3505,NO,72.28,81.16,3,3.53,6106,113.468017,123.277886,132.986217,139.546901,I,Above,Hip,0,5701,,76.71997254,0,0,,,,1,1,,0.03,nav,1,1969,6,, 31683,NJBF000063108,117 N SACRAMENTO AVE,Ventnor City,NJ,39.34090775,-74.48273273,RES1,3001,,17,NE,1925,1925,3102,2,1,1222.892431,1222.892431,3505,NO,21.89,29.12,3,-1.64,6106,113.707418,123.470279,133.191933,139.739116,I,Above,Gable,0,5701,,25.50312876,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31684,NJBF000063073,113 N SACRAMENTO AVE,Ventnor City,NJ,39.34084319,-74.48268805,RES1,3001,,17,NE,1925,1925,3102,2,1,1104.528138,1104.528138,3505,NO,41.04,51.45,3,6.19,6106,113.709282,123.4718,133.193501,139.740993,I,Above,Gable,0,5701,,46.24564373,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31685,NJBF000064701,2 S BATON ROUGE AVE,Ventnor City,NJ,39.34511474,-74.46761209,RES1,3001,,17,NE,1905,1905,3102,2,1,1371.536758,1371.536758,3504,NO,34.7,40.42,-4,0,6106,113.984841,123.694737,133.434902,139.926029,I,Above,Hip,0,5701,,37.55923777,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 31686,NJBF000060525,110 S PORTLAND AVE,Ventnor City,NJ,39.33613717,-74.4807888,RES1,3001,,17,NE,1917,1917,3102,2,1,1756.240882,1756.240882,3505,NO,20.97,34.81,3,-2.68,6106,113.814866,123.557824,133.281052,139.852263,I,Above,Hip,0,5701,,27.88790751,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 31687,NJBF000065020,13 N MARION AVE,Ventnor City,NJ,39.34592415,-74.46854553,RES3A,3001,,28,NE,1926,1926,3301,2,1,1365.453657,1365.453657,3505,NO,35.39,43.29,3,3.99,6106,113.953786,123.66914,133.408099,139.898279,I,Above,Flat,0,5701,,39.3444761,0,0,,,,1,1,,0.03,nav,1,1926,2,, 31688,NJBF000064947,,Ventnor City,NJ,39.34573556,-74.48622125,RES1,3001,,NaN,NE,1969,0,3102,2,1,2058.751979,2058.751979,3505,NO,27.37,37.47,3,6.32,6106,113.566282,123.354741,133.072549,139.596462,I,Above,Hip,0,5701,,32.41673184,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31689,NJBF000064995,,Ventnor City,NJ,39.34586562,-74.48634666,RES1,3001,,NaN,NE,1980,0,3102,2,1,2488.398154,2488.398154,3505,NO,27.39,41.59,3,0.82,6106,113.561788,123.35106,133.068722,139.592017,I,Above,Flat,0,5701,,34.49122921,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31690,NJBF000064774,400 N BURGHLEY AVE,Ventnor City,NJ,39.34529264,-74.48325513,RES1,3001,,17,NE,1978,1978,3102,1,1,1786.246003,1786.246003,3505,NO,15.98,22.04,3,-0.03,6106,113.63772,123.412603,133.133699,139.657718,I,Above,Hip,0,5701,,19.00897418,0,0,,,,1,1,,0.03,nav,1,1978,1,, 31691,NJBF000062912,123 N PORTLAND AVE,Ventnor City,NJ,39.34047279,-74.48386859,RES1,3001,,17,NE,1950,1950,3102,1,1,1235.923986,1235.923986,3505,NO,16.49,22.24,3,-2.1,6106,113.688179,123.454814,133.175198,139.725733,I,Above,Gable,0,5701,,19.36287308,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, 31692,NJBF000064202,210 N DUDLEY AVE,Ventnor City,NJ,39.3438827,-74.47935843,RES1,3001,,17,NE,1962,1962,3102,2,1,1233.859614,1233.859614,3505,NO,28,42.06,3,4.56,6106,113.74236,123.497783,133.223355,139.749909,I,Above,Hip,0,5701,,35.03002806,0,0,,,,1,1,,0.03,nav,1,1962,2,, 31693,NJBF000061249,118 N ROSBOROUGH AVE,Ventnor City,NJ,39.337307,-74.489925,RES1,3001,,45,NE,1930,1930,3102,2,2,1124.001797,1124.001797,3505,NO,23.91,33.2,3,-1.67,6106,113.597423,123.382049,133.095855,139.662877,I,Above,Hip,0,5701,,28.55760351,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31694,NJBF000061294,120 N ROSBOROUGH AVE,Ventnor City,NJ,39.33739038,-74.49001758,RES1,3001,,17,NE,1950,1950,3102,1,1,1336.102224,1336.102224,3505,NO,17.62,30.2,3,3.67,6106,113.594232,123.37947,133.093193,139.65976,I,Above,Hip,0,5701,,23.91123456,0,0,,,,1,1,,0.03,nav,1,1950,1,, 31695,NJBF000064721,316 N DORSET AVE,Ventnor City,NJ,39.34515939,-74.48154763,RES1,3001,,17,NE,1923,1923,3102,2,1,1094.116949,1094.116949,3505,NO,43.48,54.95,3,6.82,6106,113.677212,123.444591,133.16762,139.690455,I,Above,Hip,0,5701,,49.2179772,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 31696,NJBF000063594,134 N DERBY AVE,Ventnor City,NJ,39.34213205,-74.47976963,RES1,3001,,17,NE,1910,1910,3102,2,1,1712.119267,1712.119267,3505,NO,40.78,53.94,3,5.67,6106,113.75646,123.509695,133.234749,139.77142,I,Above,Flat,0,5701,,47.3597699,0,0,,,,1,1,,0.03,nav,1,1910,2,, 31697,NJBF000062689,6005 VENTNOR AVE,Ventnor City,NJ,39.34001708,-74.47899294,RES1,3001,,18,NE,1920,1920,3102,3,1,2221.876094,2221.876094,3505,NO,53.06,67.86,3,2.77,6106,113.801854,123.546914,133.272712,139.819567,I,Above,Hip,0,5701,,60.45995372,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 31698,NJBF000061964,105 S DERBY AVE,Ventnor City,NJ,39.33855617,-74.4767284,RES1,3001,,20,NE,1920,1920,3102,3,1,2016.438392,2016.438392,3505,NO,61.13,74.73,3,3.99,6106,113.871396,123.60352,133.331772,139.88175,I,Above,Flat,0,5701,,67.93055284,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 31699,NJBF000059700,15 S ROSBOROUGH AVE,Ventnor City,NJ,39.33470291,-74.48734528,RES1,3001,,17,NE,1928,1928,3102,2,1,1790.63649,1790.63649,3505,NO,30.57,44.35,3,2.07,6106,113.690181,123.457002,133.172992,139.754001,I,Above,Hip,0,5701,,37.46191871,0,0,,,,1,1,,0.03,nav,1,1928,2,, 31700,NJBF000062392,213 N NEWARK AVE,Ventnor City,NJ,39.33935122,-74.49077584,RES1,3001,,17,NE,1946,1946,3102,1,1,1632.560961,1632.560961,3505,NO,14.59,27.63,3,-0.41,6106,113.550735,123.344153,133.057302,139.614037,I,Above,Gable,0,5701,,21.10799677,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, 31701,NJBF000061384,7025-7027 VENTNOR GD,Ventnor City,NJ,39.33754426,-74.49320286,RES1,3001,,45,NE,1970,1970,3102,2,2,2066.817101,2066.817101,3505,NO,33.05,43.84,3,6.5,6106,113.521764,123.321096,133.031754,139.594875,I,Above,Gable,0,5701,,38.44763657,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31702,NJBF000061454,7100 VENTNOR GDNS PL,Ventnor City,NJ,39.33766254,-74.49204783,RES1,3001,,17,NE,1956,1956,3102,2,1,1283.501675,1283.501675,3505,NO,30.58,41.82,3,8.6,6106,113.545653,123.34031,133.052081,139.615789,I,Above,Hip,0,5701,,36.19895249,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, 31703,NJBF000058594,22 S WASHINGTON AVE,Ventnor City,NJ,39.33258657,-74.49106879,RES1,3001,,18,NE,1925,1925,3102,3,1,1363.598724,1363.598724,3505,NO,62.32,73.53,3,8.79,6106,113.637586,123.414471,133.12633,139.71203,I,Above,Flat,0,5701,,67.92335924,0,0,,,,1,1,,0.03,nav,1,1925,3,, 31704,NJBF000058305,7309 ATLANTIC AVE,Ventnor City,NJ,39.33206617,-74.491509,RES1,3001,,17,NE,1920,1920,3102,2,1,1523.890985,1523.890985,3505,NO,39.77,54.56,3,7.18,6110,113.635202,123.412502,133.123816,139.710646,I,Above,Hip,0,5701,,47.16591949,0,1.1,,,,1,1,,0.35,nav,1,1920,2,, 31705,NJBF000060995,15 N BUFFALO AVE,Ventnor City,NJ,39.33686957,-74.48679043,RES1,3001,,18,NE,1932,1932,3102,2,1,1008.860236,1008.860236,3505,NO,27.53,35.08,3,-2.56,6106,113.672596,123.442727,133.159648,139.730197,I,Above,Gable,0,5701,,31.30841983,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 31706,NJBF000063705,10 S VICTORIA AVE,Ventnor City,NJ,39.34244548,-74.47189634,RES1,3001,,17,NE,1925,1925,3102,1,4,1766.747777,1766.747777,3505,NO,10.76,23.5,3,-1.87,6106,113.925751,123.647145,133.381665,139.898781,I,Above,Hip,0,5701,,17.13073078,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 31707,NJBF000063676,14 S VICTORIA AVE,Ventnor City,NJ,39.34236141,-74.47182288,RES1,3001,,17,NE,1920,1920,3102,2,1,1687.743977,1687.743977,3505,NO,24.67,32.3,3,-1.63,6106,113.928468,123.649374,133.38398,139.901301,I,Above,Hip,0,5701,,28.4883143,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31708,NJBF000063995,301 N HARVARD AVE,Ventnor City,NJ,39.34330224,-74.48375481,RES1,3001,,17,NE,1963,1963,3102,2,1,2307.768457,2307.768457,3505,NO,27.36,36.4,3,6.05,6106,113.652931,123.425599,133.146192,139.681356,I,Above,Flat,0,5701,,31.87942617,0,0,,,,1,1,,0.03,nav,1,1963,2,, 31709,NJBF000059860,6704 ATLANTIC AVE,Ventnor City,NJ,39.33497566,-74.48453867,RES1,3001,,17,NE,1950,1950,3102,2,1,1648.98683,1648.98683,3505,NO,22.12,28.71,3,-1.88,6110,113.748229,123.503908,133.222858,139.803341,I,Above,Gable,0,5701,,25.41073616,0,1.1,,,,1,1,,0.35,nav,1,1950,2,, 31710,NJBF000067116,712 N VICTORIA AVE,Ventnor City,NJ,39.35216268,-74.48173794,RES3A,3001,,27,NE,1980,1980,3301,2,1,909.358493,909.358493,3505,NO,25.71,35.86,3,1.91,6106,113.582738,123.364499,133.086472,139.572533,I,Above,Flat,0,5701,,30.7825469,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31711,NJBF000067142,714 N VICTORIA AVE,Ventnor City,NJ,39.35227267,-74.48182761,RES3A,3001,,27,NE,1980,1980,3301,2,1,884.9056807,884.9056807,3505,NO,21.77,26.98,3,-2.7,6106,113.579355,123.361687,133.083532,139.569131,I,Above,Flat,0,5701,,24.37223725,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31712,NJBF000060089,24 S BUFFALO AVE,Ventnor City,NJ,39.33538347,-74.48603374,RES1,3001,,17,NE,1926,1926,3102,2,1,1298.849846,1298.849846,3505,NO,41,53.43,3,5.78,6106,113.709686,123.472751,133.190214,139.768474,I,Above,Gable,0,5701,,47.2160123,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 31713,NJBF000059436,1 S MELBOURNE AVE,Ventnor City,NJ,39.33423671,-74.48959476,RES1,3001,,18,NE,1988,1988,3102,2,1,1126.116165,1126.116165,3505,NO,38.07,45.05,3,3.4,6106,113.647053,123.422188,133.135836,139.716981,I,Above,Flat,0,5701,,41.55792576,0,1.1,,,,1,1,,0.03,nav,1,1988,2,, 31714,NJBF000066813,607 N VICTORIA AVE,Ventnor City,NJ,39.350872,-74.480073,RES3A,3001,,NaN,NE,1991,1991,3301,1,1,1808.452831,1808.452831,3505,NO,13.27,26.65,3,-1.16,6106,113.635963,123.40841,133.132589,139.623176,I,Above,Hip,0,5701,,19.9573818,0,0,,,,1,1,,0.03,nav,1,1991,1,, 31715,NJBF000064187,133 N OXFORD AVE,Ventnor City,NJ,39.34381258,-74.47790918,RES1,3001,,45,NE,1930,1930,3102,2,2,1876.613233,1876.613233,3505,NO,29.62,42.25,3,5.29,6106,113.775252,123.524472,133.251741,139.776137,I,Above,Flat,0,5701,,35.93762312,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31716,NJBF000066512,808 N HARVARD AVE,Ventnor City,NJ,39.34994792,-74.48960536,RES1,3001,,18,NE,2014,2014,3102,2,1,2233.916671,2233.916671,3505,NO,32.09,43.07,3,-2.43,6106,113.436579,123.24803,132.961653,139.46502,I,Above,Flat,0,5701,,37.57951284,0,1.1,,,,1,1,,0.03,nav,1,2014,2,, 31717,NJBF000060119,100 N BALTIMORE AVE,Ventnor City,NJ,39.33544263,-74.49192304,RES1,3001,,45,NE,1930,1930,3102,2,2,1309.515992,1309.515992,3505,NO,29.42,41.43,3,4.85,6106,113.578993,123.367316,133.07892,139.652425,I,Above,Flat,0,5701,,35.42373829,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31718,NJBF000063532,5601 VENTNOR AVE,Ventnor City,NJ,39.34196207,-74.47497289,RES1,3001,,17,NE,1877,1877,3102,3,1,2901.562747,2901.562747,3505,NO,65.1,75.47,3,7.23,6106,113.864441,123.597358,133.328059,139.855886,I,Above,Hip,0,5701,,70.28534956,0,1.2,,,,1,1,,0.03,nav,1,1877,3,, 31719,NJBF000064859,1 S VASSAR SQUARE,Ventnor City,NJ,39.34549293,-74.46673284,RES3B,3001,,17,ME,1900,1900,3301,3,1,1662.706957,1662.706957,3504,NO,50.5,57.88,-4,0,6106,113.999219,123.706392,133.447732,139.934251,I,Above,Hip,0,NaN,,54.1887781,0,0,,,,1,1,,0.03,nav,1,1900,3,, 31720,NJBF000064802,5 S VASSAR SQUARE,Ventnor City,NJ,39.3453693,-74.46663736,RES3B,3001,,17,ME,1920,1920,3301,2,1,1440.076455,1440.076455,3504,NO,26.3,35.36,-4,0,6106,114.002941,123.709468,133.450932,139.937717,I,Above,Hip,0,NaN,,30.83026737,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31721,NJBF000067221,722 N VICTORIA AVE,Ventnor City,NJ,39.3526435,-74.482124,RES3A,3001,,27,NE,1980,1980,3301,2,1,890.5022236,890.5022236,3505,NO,39.56,51.75,3,6.02,6106,113.568128,123.352351,133.07377,139.5578,I,Above,Gable,0,5701,,45.65444429,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31722,NJBF000065601,431 N OXFORD AVE,Ventnor City,NJ,39.34756735,-74.48096934,RES1,3001,,17,NE,1927,1927,3102,2,1,935.8375211,935.8375211,3505,NO,38.78,44.68,3,0.58,6106,113.658608,123.428517,133.152058,139.661291,I,Above,Hip,0,5701,,41.73156123,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 31723,NJBF000061375,129 N WYOMING AVE,Ventnor City,NJ,39.33752999,-74.49050589,RES1,3001,,17,NE,1930,1930,3102,2,1,999.6293508,999.6293508,3505,NO,26.11,32.2,3,1.22,6106,113.581538,123.369226,133.082483,139.648053,I,Above,Hip,0,5701,,29.15381139,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31724,NJBF000061182,,Ventnor City,NJ,39.33720423,-74.48095222,RES1,3001,,NaN,NE,1969,0,3102,2,1,1765.949869,1765.949869,3505,NO,26.81,37.08,3,2.57,6110,113.796721,123.543075,133.266303,139.831802,I,Above,Hip,0,5701,,31.94571749,0,0,,,,1,1,,0.35,nav,1,1969,2,, 31725,NJBF000061280,,Ventnor City,NJ,39.33736531,-74.4806182,RES1,3001,,NaN,NE,1969,0,3102,2,1,1864.89501,1864.89501,3505,NO,31.38,45.08,3,8.91,6106,113.801887,123.547248,133.270873,139.835001,I,Above,Hip,0,5701,,38.22764339,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31726,NJBF000061787,6409 VENTNOR AVE,Ventnor City,NJ,39.33825601,-74.48276003,COM1,3001,,NaN,ME,1930,1930,3401,2,4,8171.28633,8171.28633,3507,NO,36.06,46.78,1,0.56,6106,113.742583,123.499157,133.22054,139.782266,I,Above,Flat,0,NaN,,41.42240289,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31727,NJBF000065516,603 N HARVARD AVE,Ventnor City,NJ,39.34729969,-74.4869657,RES1,3001,,17,NE,1986,1986,3101,2,1,2069.88543,2069.88543,3505,NO,29.63,38.65,3,0.71,6106,113.529346,123.324233,133.041087,139.557177,I,Above,Flat,0,5701,,34.14177973,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 31728,NJBF000064640,300 N DUDLEY AVE,Ventnor City,NJ,39.34496496,-74.48024805,REL1,3001,,NaN,ME,1970,1970,3401,2,1,2763.788772,2763.788772,3507,NO,25.53,33.55,1,-0.11,6106,113.708476,123.469971,133.194499,139.716613,I,Above,Flat,0,NaN,,29.54412394,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31729,NJBF000061967,130 N BUFFALO AVE,Ventnor City,NJ,39.33855915,-74.48862678,RES1,3001,,17,NE,1922,1922,3102,2,1,1391.962079,1391.962079,3505,NO,36.88,51.19,3,0.25,6106,113.608991,123.391224,133.106461,139.668031,I,Above,Hip,0,5701,,44.03555508,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 31730,NJBF000062701,222 N WISSAHICKON AVE,Ventnor City,NJ,39.34004454,-74.49111071,RES1,3001,,17,NE,1950,1950,3102,1,1,1294.183444,1294.183444,3505,NO,18.61,30.74,3,0.64,6106,113.533915,123.330476,133.043331,139.59653,I,Above,Flat,0,5701,,24.67734768,0,0,,,,1,1,,0.03,nav,1,1950,1,, 31731,NJBF000060286,11 S BUFFALO AVE,Ventnor City,NJ,39.33572084,-74.4858796,RES1,3001,,17,NE,1938,1938,3102,2,1,1406.748907,1406.748907,3505,NO,34.67,45.43,3,-1.92,6106,113.708428,123.471727,133.18941,139.765978,I,Above,Hip,0,5701,,40.0522417,0,0,,,,1,1,,0.03,nav,1,1938,2,, 31732,NJBF000058799,105 S PITTSBURGH AVE,Ventnor City,NJ,39.3329566,-74.48802616,RES1,3001,,19,NE,2014,2014,3102,2,1,1426.422853,1426.422853,3505,NO,29.87,37.21,3,5.32,6110,113.699426,123.464404,133.179333,139.767522,I,Above,Hip,0,5701,,33.54077386,0,0,,,,1,1,,0.35,nav,1,2014,2,, 31733,NJBF000064645,403 N CAMBRIDGE AVE,Ventnor City,NJ,39.34497644,-74.48421073,RES1,3001,,17,NE,1965,1965,3102,1,1,1899.805693,1899.805693,3505,NO,8.06,16.99,3,-2.82,6106,113.620743,123.39901,133.119059,139.645635,I,Above,Hip,0,5701,,12.52887188,0,0,,,,1,1,,0.03,nav,1,1965,1,, 31734,NJBF000062759,135 N NEWPORT AVE,Ventnor City,NJ,39.34016269,-74.48507292,RES1,3001,,28,NE,1925,1925,3102,2,1,1435.649302,1435.649302,3505,NO,31.13,38.45,3,8.11,6106,113.665766,123.436767,133.155832,139.708778,I,Above,Flat,0,5701,,34.79265318,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31735,NJBF000064280,5123 VENTNOR AVE,Ventnor City,NJ,39.34408969,-74.4706709,RES1,3001,738,NaN,NE,1930,1922,3102,3,1,7122.185793,7122.185793,3507,NO,36.35,41.92,1,-0.49,6106,113.931021,123.651068,133.387231,139.892659,I,Above,Gable,0,5701,,39.13428062,0,0,,,,1,1,,0.03,nav,1,1930,3,, 31736,NJBF000066999,811 N DERBY AVE,Ventnor City,NJ,39.35164146,-74.48694107,RES1,3001,,17,NE,1968,1968,3101,1,1,1827.699664,1827.699664,3505,NO,16.7,23.97,3,4.78,6106,113.474059,123.277092,132.99324,139.486759,I,Above,Gable,0,5701,,20.3342159,0,0,,,,1,1,,0.03,nav,1,1968,1,, 31737,NJBF000061995,312 WINDSOR DRIVE,Ventnor City,NJ,39.33861631,-74.49453301,RES1,3001,,17,NE,1975,1975,3102,2,1,1428.005646,1428.005646,3505,NO,46.28,54.01,3,7.46,6106,113.477672,123.285493,132.994992,139.552036,I,Above,Hip,0,5701,,50.14274535,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 31738,NJBF000059748,16 N SWARTHMORE AVE,Ventnor City,NJ,39.33478864,-74.49212795,RES1,3001,,17,NE,1930,1930,3102,1,1,1567.713987,1567.713987,3505,NO,16.03,26.85,3,-2.41,6106,113.583538,123.370987,133.082287,139.658222,I,Above,Gable,0,5701,,21.43584823,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 31739,NJBF000061971,4 N PORTLAND AVE,Ventnor City,NJ,39.33856275,-74.48277825,RES1,3001,,17,NE,1915,1915,3102,3,3,2508.177472,2508.177472,3505,NO,58.03,68.08,3,0.2,6106,113.738024,123.495432,133.216833,139.776888,I,Above,Hip,0,5701,,63.05283434,0,1.2,,,,1,1,,0.03,nav,1,1915,3,, 31740,NJBF000064942,11 N AUSTIN AVE,Ventnor City,NJ,39.34572242,-74.46911175,RES1,3001,,17,NE,1930,1930,3102,2,1,1331.055474,1331.055474,3507,NO,24.26,30.28,1,-0.91,6106,113.943972,123.661187,133.399405,139.892264,I,Above,Hip,0,5701,,27.26668369,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31741,NJBF000059807,106 N MARTINDALE AVE,Ventnor City,NJ,39.33488607,-74.49366497,RES1,3001,,17,NE,1925,1925,3102,2,1,919.2668081,919.2668081,3505,NO,23.54,34.63,3,0.65,6106,113.548282,123.342593,133.052463,139.626012,I,Above,Hip,0,5701,,29.08236912,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31742,NJBF000064975,,Ventnor City,NJ,39.34582707,-74.47917884,RES1,3001,,NaN,NE,1969,0,3102,2,1,1813.728806,1813.728806,3505,NO,39.54,45.25,3,2.99,6106,113.720796,123.47963,133.205376,139.721235,I,Above,Gable,0,5701,,42.39766138,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31743,NJBF000066769,804 N BURGHLEY AVE,Ventnor City,NJ,39.35072593,-74.48764117,RES1,3001,,17,NE,1967,1967,3101,1,1,1836.415823,1836.415823,3505,NO,27.85,36.77,3,8.53,6106,113.470192,123.274591,132.990165,139.488795,I,Above,Gable,0,5701,,32.31420163,0,0,,,,1,1,,0.03,nav,1,1967,1,, 31744,NJBF000062571,129 N NEW HAVEN AVE,Ventnor City,NJ,39.33973896,-74.48620202,RES1,3001,,17,NE,1886,1886,3102,2,1,1414.800461,1414.800461,3505,NO,35.71,49.53,3,-0.06,6106,113.646553,123.421333,133.139172,139.694778,I,Above,Flat,0,5701,,42.61827908,0,0,,,,1,1,,0.03,nav,1,1886,2,, 31745,NJBF000063875,162 N DERBY AVE,Ventnor City,NJ,39.34296097,-74.48041086,RES1,3001,,NaN,NE,1910,1910,3102,2,1,1118.981348,1118.981348,3505,NO,37.74,52.02,3,3.79,6106,113.731308,123.489104,133.213449,139.746601,I,Above,Flat,0,5701,,44.88108626,0,0,,,,1,1,,0.03,nav,1,1910,2,, 31746,NJBF000059787,105 N FREDERICKSBURG,Ventnor City,NJ,39.33484798,-74.49389138,RES1,3001,,17,NE,1962,1962,3102,1,1,2348.951665,2348.951665,3505,NO,21.59,28.98,3,7.25,6106,113.543824,123.339004,133.048658,139.622043,I,Above,Hip,0,5701,,25.28197851,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 31747,NJBF000062844,6410 MONMOUTH AVE,Ventnor City,NJ,39.34033843,-74.4847997,RES1,3001,,17,NE,1922,1922,3102,2,1,1639.072081,1639.072081,3505,NO,45.22,53.34,3,8.78,6106,113.669438,123.439699,133.159068,139.710934,I,Above,Flat,0,5701,,49.2763328,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 31748,NJBF000063737,148 N DERBY AVE,Ventnor City,NJ,39.3425535,-74.480091,RES1,3001,,17,NE,1960,1960,3102,2,1,827.7031913,827.7031913,3505,NO,29.63,35.01,3,6.74,6106,113.74377,123.499307,133.224009,139.758889,I,Above,Flat,0,5701,,32.31861115,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31749,NJBF000060644,112 N LAFAYETTE AVE,Ventnor City,NJ,39.33633167,-74.49090293,RES1,3001,,17,NE,1920,1920,3102,1,1,1184.898809,1184.898809,3505,NO,13.09,19.45,3,-1.12,6106,113.589228,123.375522,133.088242,139.658967,I,Above,Hip,0,5701,,16.27171686,0,0,,,,1,1,,0.03,nav,1,1920,1,, 31750,NJBF000062355,210 N WISSAHICKON AVE,Ventnor City,NJ,39.33928146,-74.4903838,RES1,3001,,17,NE,1952,1952,3102,1,1,1306.862368,1306.862368,3505,NO,15.79,30.21,3,3.93,6106,113.560351,123.35191,133.065443,139.622725,I,Above,Flat,0,5701,,23.00197159,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, 31751,NJBF000061520,121 N NEWARK AVE,Ventnor City,NJ,39.33778482,-74.48897497,RES1,3001,,17,NE,1950,1950,3102,2,1,1051.999105,1051.999105,3505,NO,42.99,50.46,3,8.53,6106,113.611859,123.393636,133.108445,139.673706,I,Above,Hip,0,5701,,46.72454783,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 31752,NJBF000062610,6300 WINCHESTER AVE,Ventnor City,NJ,39.33980939,-74.48229182,RES1,3001,,NaN,NE,1950,0,3102,2,1,958.9631418,958.9631418,3505,NO,33.77,39.91,3,4.17,6106,113.731913,123.490305,133.212366,139.765102,I,Above,Hip,0,5701,,36.8399008,0,0,,,,1,1,,0.03,nav,1,1950,2,, 31753,NJBF000061896,115 N RICHARDS AVE,Ventnor City,NJ,39.3384307,-74.48729007,RES1,3001,,17,NE,1920,1920,3102,2,1,1273.040497,1273.040497,3505,NO,30.87,36.23,3,-0.46,6106,113.640258,123.416462,133.133054,139.695552,I,Above,Hip,0,5701,,33.547948,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31754,NJBF000062028,306 N LAFAYETTE AVE,Ventnor City,NJ,39.33867164,-74.49345513,RES1,3001,,17,NE,1975,1975,3102,2,1,1311.203344,1311.203344,3505,NO,39.28,46.61,3,4.84,6106,113.500747,123.304039,133.014553,139.572427,I,Above,Flat,0,5701,,42.94025191,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31755,NJBF000064644,205 N SUFFOLK AVE,Ventnor City,NJ,39.34497277,-74.47710328,RES1,3001,,17,NE,1955,1955,3102,2,1,1770.963158,1770.963158,3505,NO,37.03,42.08,3,-1.34,6106,113.777784,123.526158,133.254388,139.771074,I,Above,Flat,0,5701,,39.55433239,0,1.1,,,,1,1,,0.03,nav,1,1955,2,, 31756,NJBF000064669,337 N BURGHLEY AVE,Ventnor City,NJ,39.34503267,-74.48251802,RES1,3001,,17,NE,1958,1958,3102,1,1,1199.382874,1199.382874,3505,NO,15.09,29.08,3,3.5,6106,113.657428,123.428636,133.15057,139.675218,I,Above,Gable,0,5701,,22.08331743,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 31757,NJBF000064087,107 S BATON ROUGE AVE,Ventnor City,NJ,39.34353254,-74.46589019,RES3B,3001,,17,E,1898,1898,3303,3,1,1883.106091,1883.106091,3504,NO,34.2,42.83,-4,0,6106,114.043344,123.742924,133.485274,139.977972,I,Above,Hip,0,NaN,,38.51451258,0,1.1,,,,1,1,,0.03,nav,1,1898,3,, 31758,NJBF000063059,108 S SURREY AVE,Ventnor City,NJ,39.34081112,-74.47150954,RES1,3001,,20,NE,2016,2016,3102,3,1,2279.218947,2279.218947,3505,NO,32.28,44.18,3,-1.57,6106,113.955927,123.672002,133.406852,139.930859,I,Above,Gable,0,5701,,38.23059477,0,0,,,,1,1,,0.03,nav,1,2016,3,, 31759,NJBF000064226,212 N DORSET AVE,Ventnor City,NJ,39.34393805,-74.48038625,RES1,3001,,16,NE,1940,1940,3102,2,1,1439.850409,1439.850409,3505,NO,21.98,35.96,3,-1.12,6106,113.718942,123.478795,133.203179,139.731016,I,Above,Hip,0,5701,,28.97225982,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31760,NJBF000066009,708 N HARVARD AVE,Ventnor City,NJ,39.34867783,-74.48858738,RES1,3001,,18,NE,1987,1987,3102,3,1,1529.306769,1529.306769,3505,NO,51.54,65.92,3,6.16,6106,113.475535,123.280145,132.995072,139.504668,I,Above,Hip,0,5701,,58.73093997,0,1.1,,,,1,1,,0.03,nav,1,1987,3,, 31761,NJBF000061101,7301 CALVERT AVE,Ventnor City,NJ,39.33705088,-74.49530342,RES1,3001,,17,NE,1962,1962,3103,2,1,1901.975287,1901.975287,3505,NO,34.52,39.56,3,8.5,6106,113.482138,123.289274,132.997929,139.560707,I,Above,Gable,0,5701,,37.03827059,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, 31762,NJBF000064185,25 S OAKLAND AVE,Ventnor City,NJ,39.3438075,-74.46808171,RES1,3001,,17,NE,1949,1949,3102,2,1,1421.324984,1421.324984,3504,NO,28.31,35.87,-4,0,6106,113.991632,123.700596,133.44008,139.938887,I,Above,Hip,0,5701,,32.09063338,0,1.1,,,,1,1,,0.03,nav,1,1949,2,, 31763,NJBF000064717,412 N HARVARD AVE,Ventnor City,NJ,39.3451525,-74.48578526,RES1,3001,,18,NE,1982,1982,3102,2,1,3456.372833,3456.372833,3505,NO,33.06,41.92,3,0,6106,113.583604,123.368958,133.087276,139.614026,I,Above,Gable,0,5701,,37.48939092,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 31764,NJBF000059354,104 S WISSAHICKON AVE,Ventnor City,NJ,39.33407734,-74.48574875,RES1,3001,,17,NE,1912,1912,3102,2,1,1598.791114,1598.791114,3505,NO,35.32,45.1,3,-0.06,6110,113.734001,123.492392,133.209892,139.794772,I,Above,Hip,0,5701,,40.20899551,0,1.1,,,,1,1,,0.35,nav,1,1912,2,, 31765,NJBF000064027,5003 ATLANTIC AVE,Ventnor City,NJ,39.34337686,-74.46831505,RES3B,3001,,NaN,E,1925,1930,3303,4,1,3836.735738,3836.735738,3504,NO,56.88,69.41,-4,0,6106,113.992163,123.70112,133.440273,139.94186,I,Above,Gable,0,NaN,,63.14436624,0,0,,,,1,1,,0.03,nav,1,1925,4,, 31766,NJBF000062031,6805 MONMOUTH AVE,Ventnor City,NJ,39.33867456,-74.48911183,RES1,3001,,45,NE,1960,1960,3102,2,2,2213.002795,2213.002795,3505,NO,27.37,37.38,3,3.79,6106,113.596699,123.381297,133.096055,139.656877,I,Above,Gable,0,5701,,32.37762094,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31767,NJBF000060696,101 N LAFAYETTE AVE,Ventnor City,NJ,39.3364117,-74.49047874,RES1,3001,,17,NE,1925,1925,3102,1,1,1709.722443,1709.722443,3505,NO,10.22,18.37,3,-2.66,6106,113.597485,123.382171,133.095317,139.666059,I,Above,Hip,0,5701,,14.2952616,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 31768,NJBF000063126,412 ESSEX COURT,Ventnor City,NJ,39.34093807,-74.49424208,RES1,3001,,35,NE,1970,1970,3102,2,1,8016.189928,8016.189928,3505,NO,25.63,36.2,3,1.49,6106,113.452539,123.264825,132.974682,139.52153,I,Above,Flat,0,5701,,30.91109262,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31769,NJBF000061496,308-310 WALDON DRIVE,Ventnor City,NJ,39.33774654,-74.49486372,RES1,3001,,45,NE,1964,1964,3102,2,2,2681.40807,2681.40807,3505,NO,30.72,42.88,3,2.45,6106,113.482263,123.289302,132.998428,139.558845,I,Above,Hip,0,5701,,36.80071162,0,0,,,,1,1,,0.03,nav,1,1964,2,, 31770,NJBF000061883,9 S HARVARD AVE,Ventnor City,NJ,39.33841612,-74.48000841,RES1,3001,,17,NE,1925,1925,3102,2,1,1612.341152,1612.341152,3505,NO,32.45,40.76,3,1.72,6106,113.801067,123.546491,133.27095,139.828319,I,Above,Hip,0,5701,,36.60422532,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31771,NJBF000064445,217 N DORSET AVE,Ventnor City,NJ,39.34450802,-74.48021447,RES1,3001,,17,NE,1920,1920,3102,2,1,1301.873162,1301.873162,3505,NO,32.83,38.38,3,2.87,6106,113.715231,123.475602,133.200179,139.724697,I,Above,Flat,0,5701,,35.60824884,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31772,NJBF000062259,14 S DERBY AVE,Ventnor City,NJ,39.33909738,-74.47785751,RES1,3001,,17,NE,1948,1948,3102,1,1,3287.788499,3287.788499,3505,NO,10.27,22.22,3,-2.58,6106,113.839228,123.577354,133.30436,139.853989,I,Above,Flat,0,5701,,16.24203265,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 31773,NJBF000063717,5402 VENTNOR AVE,Ventnor City,NJ,39.34249596,-74.47284201,RES1,3001,,17,NE,1938,1938,3102,3,1,2386.346863,2386.346863,3505,NO,40.98,52.36,3,0.63,6106,113.904267,123.629641,133.362988,139.882517,I,Above,Flat,0,5701,,46.66923169,0,1.2,,,,1,1,,0.03,nav,1,1938,3,, 31774,NJBF000063661,5402 VENTNOR AVE,Ventnor City,NJ,39.34233016,-74.47276474,RES1,3001,,17,NE,1938,1938,3102,3,1,581.2298855,581.2298855,3505,NO,34.46,41.83,3,-0.11,6106,113.908158,123.632842,133.366273,139.886426,I,Above,Gable,0,5701,,38.14361143,0,1.2,,,,1,1,,0.03,nav,1,1938,3,, 31775,NJBF000063642,2 S SURREY AVE,Ventnor City,NJ,39.34228021,-74.47267508,RES1,3001,,17,NE,1930,1930,3102,2,1,1707.989996,1707.989996,3505,NO,29.47,35.53,3,3.62,6106,113.9108,123.635003,133.368541,139.888696,I,Above,Gable,0,5701,,32.49934259,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 31776,NJBF000062208,212 N NEWARK AVE,Ventnor City,NJ,39.33899671,-74.49101108,RES1,3001,,17,NE,1945,1945,3102,1,1,1669.902345,1669.902345,3505,NO,9.05,14.31,3,-2.02,6106,113.550352,123.343906,133.0568,139.615096,I,Above,Hip,0,5701,,11.68421162,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 31777,NJBF000065682,508 N DORSET AVE,Ventnor City,NJ,39.34780114,-74.48351571,RES1,3001,,17,NE,1972,1972,3101,1,1,1392.143907,1392.143907,3505,NO,25.58,35.9,3,6.61,6106,113.599237,123.380389,133.100993,139.61192,I,Above,Flat,0,5701,,30.73731594,0,0,,,,1,1,,0.03,nav,1,1972,1,, 31778,NJBF000064178,5319 WINCHESTER AVE,Ventnor City,NJ,39.34378882,-74.4733381,RES1,3001,,18,NE,2007,2007,3102,3,1,1362.50175,1362.50175,3507,NO,42.28,55.25,1,2.56,6106,113.876294,123.606569,133.33937,139.853659,I,Above,Flat,0,5701,,48.76458204,0,1.2,,,,1,1,,0.03,nav,1,2007,3,, 31779,NJBF000061072,217 N WASHINGTON AVE,Ventnor City,NJ,39.33701111,-74.49471411,RES1,3001,,17,NE,1953,1953,3102,2,1,1154.401309,1154.401309,3505,NO,38.69,47.6,3,0.09,6106,113.495706,123.300187,133.009379,139.573057,I,Above,Gable,0,5701,,43.14519617,0,0,,,,1,1,,0.03,nav,1,1953,2,, 31780,NJBF000059003,17 S BALTIMORE AVE,Ventnor City,NJ,39.33334488,-74.48981336,RES1,3001,,17,NE,1935,1935,3102,2,1,1236.609272,1236.609272,3505,NO,23.94,35.78,3,-3,6106,113.654661,123.428294,133.141542,139.726088,I,Above,Hip,0,5701,,29.86289286,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 31781,NJBF000064795,413 N HARVARD AVE,Ventnor City,NJ,39.34533679,-74.48537994,RES1,3001,,17,NE,1968,1968,3102,1,1,1243.726141,1243.726141,3505,NO,19.52,28.89,3,4.11,6106,113.590135,123.374154,133.092901,139.61842,I,Above,Gable,0,5701,,24.20760299,0,0,,,,1,1,,0.03,nav,1,1968,1,, 31782,NJBF000062672,125 N BRYANT AVE,Ventnor City,NJ,39.33997521,-74.48564649,RES1,3001,,17,NE,1942,1942,3102,1,1,1862.242393,1862.242393,3505,NO,24.08,32.65,3,7.97,6106,113.655646,123.428631,133.147074,139.701264,I,Above,Gable,0,5701,,28.36542721,0,1.1,,,,1,1,,0.03,nav,1,1942,1,, 31783,NJBF000064092,3 N VICTORIA AVE,Ventnor City,NJ,39.34355116,-74.47229312,RES1,3001,,NaN,NE,1902,0,3102,2,1,1606.768168,1606.768168,3505,NO,29.63,42.71,3,3.53,6106,113.902425,123.627901,133.361992,139.874699,I,Above,Flat,0,5701,,36.1677682,0,0,,,,1,1,,0.03,nav,1,1902,2,, 31784,NJBF000063806,22 S WEYMOUTH AVE,Ventnor City,NJ,39.34274899,-74.47060895,RES1,3001,,17,NE,1925,1925,3102,2,2,1332.965884,1332.965884,3505,NO,37.5,48.41,3,2.9,6106,113.950032,123.66687,133.403033,139.914842,I,Above,Hip,0,5701,,42.9582453,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31785,NJBF000059955,28 S BUFFALO AVE,Ventnor City,NJ,39.33514123,-74.48586158,RES1,3001,,17,NE,1926,1926,3102,2,1,1351.547302,1351.547302,3505,YES,36.47,49.13,3,7.91,6106,113.716811,123.478511,133.196108,139.775634,I,Above,Gable,0,5701,,42.79878267,0,0,,,,1,1,,0.03,nav,1,1926,2,, 31786,NJBF000062390,6409 WINCHESTER AVE,Ventnor City,NJ,39.33934994,-74.48394795,RES1,3001,,17,NE,1920,1920,3102,2,1,1059.546557,1059.546557,3505,NO,38.74,48.14,3,2.15,6106,113.701568,123.46584,133.18605,139.742733,I,Above,Hip,0,5701,,43.43940051,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31787,NJBF000062787,321-323 N LAFAYETTE AVE,Ventnor City,NJ,39.34022777,-74.49421691,RES1,3001,,NaN,NE,1970,1970,3102,2,1,2154.192737,2154.192737,3505,NO,40.99,48.55,3,7.03,6106,113.462707,123.273163,132.983032,139.533165,I,Above,Gable,0,5701,,44.76820026,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31788,NJBF000061870,6605 WINCHESTER AVE,Ventnor City,NJ,39.33839887,-74.4858615,RES1,3001,,17,NE,1938,1938,3102,1,1,1849.507938,1849.507938,3505,NO,24.92,38.97,3,7.4,6106,113.672237,123.44228,133.160358,139.722962,I,Above,Flat,0,5701,,31.94543416,0,1.1,,,,1,1,,0.03,nav,1,1938,1,, 31789,NJBF000064614,317 N CORNWALL AVE,Ventnor City,NJ,39.34490586,-74.48324612,RES1,3001,,17,NE,1958,1958,3102,1,1,2115.478605,2115.478605,3505,NO,19.02,31.25,3,-0.27,6106,113.643003,123.417022,133.138145,139.664228,I,Above,Hip,0,5701,,25.13355392,0,0,,,,1,1,,0.03,nav,1,1958,1,, 31790,NJBF000060126,6 N WYOMING AVE,Ventnor City,NJ,39.33544802,-74.48932002,RES1,3001,,17,NE,1940,1940,3102,2,1,1532.472099,1532.472099,3505,NO,26.91,35.51,3,4.97,6106,113.636347,123.413547,133.127688,139.703782,I,Above,Hip,0,5701,,31.20909123,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31791,NJBF000063746,5407 VENTNOR AVE,Ventnor City,NJ,39.34259033,-74.47365865,RES1,3001,,17,NE,1924,1924,3102,2,1,1740.738259,1740.738259,3505,NO,31.2,45.51,3,8.26,6106,113.885045,123.613978,133.346323,139.86757,I,Above,Flat,0,5701,,38.35317597,0,1.2,,,,1,1,,0.03,nav,1,1924,2,, 31792,NJBF000063700,,Ventnor City,NJ,39.34242886,-74.47737813,RES1,3001,,NaN,NE,1969,0,3102,2,1,1149.362459,1149.362459,3505,NO,39.7,44.72,3,6.29,6106,113.805261,123.549193,133.277046,139.8078,I,Above,Flat,0,5701,,42.21034535,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31793,NJBF000060185,107 N SWARTHMORE AVE,Ventnor City,NJ,39.33555243,-74.4922901,RES1,3001,,17,NE,1923,1923,3102,2,1,1143.196939,1143.196939,3505,NO,24.46,38.3,3,0.62,6106,113.569386,123.359574,133.070845,139.643472,I,Above,Gable,0,5701,,31.38227864,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, 31794,NJBF000064709,16 S JACKSON AVE,Ventnor City,NJ,39.34512818,-74.46614727,RES3B,3001,,17,ME,1905,1905,3301,2,1,1425.148957,1425.148957,3504,NO,24.32,34.51,-4,0,6106,114.016838,123.720896,133.463003,139.949286,I,Above,Hip,0,NaN,,29.41582416,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 31795,NJBF000065695,,Ventnor City,NJ,39.3478492,-74.48792847,RES1,3001,,NaN,NE,1969,0,3102,2,1,2143.508158,2143.508158,3505,NO,42.21,56.23,3,7.75,6106,113.500889,123.301019,133.016771,139.530421,I,Above,Hip,0,5701,,49.22272764,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31796,NJBF000063323,429 BERKSHIRE DRIVE,Ventnor City,NJ,39.34140288,-74.49380506,RES1,3001,,35,NE,1982,1982,3102,2,1,1194.293545,1194.293545,3505,NO,31.11,46.1,3,4.12,6106,113.455939,123.267436,132.977709,139.522727,I,Above,Hip,0,5701,,38.60591465,0,0,,,,1,1,,0.03,nav,1,1982,2,, 31797,NJBF000063334,431 BERKSHIRE DRIVE,Ventnor City,NJ,39.34143259,-74.49374691,RES1,3001,,35,NE,1982,1982,3102,2,1,1089.841511,1089.841511,3505,NO,31.74,38.74,3,-0.12,6106,113.456819,123.268135,132.978463,139.523382,I,Above,Gable,0,5701,,35.23686933,0,0,,,,1,1,,0.03,nav,1,1982,2,, 31798,NJBF000062061,,Ventnor City,NJ,39.33873379,-74.47505078,RES1,3001,,NaN,NE,1969,0,3102,2,1,2451.048955,2451.048955,3505,NO,36.65,51,3,0.25,6106,113.905891,123.631526,133.361786,139.906526,I,Above,Flat,0,5701,,43.82413938,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31799,NJBF000064309,,Ventnor City,NJ,39.34417753,-74.48498279,RES1,3001,,NaN,NE,1969,0,3102,2,1,1889.840616,1889.840616,3505,NO,27.06,41.14,3,-1.78,6106,113.614187,123.394011,133.113244,139.644659,I,Above,Gable,0,5701,,34.10019436,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31800,NJBF000066815,612 N SURREY AVE,Ventnor City,NJ,39.35088296,-74.48146729,RES1,3001,,17,NE,1974,1974,3102,2,1,1298.357926,1298.357926,3507,NO,29.33,42.2,1,0.54,6106,113.604985,123.383323,133.105851,139.598254,I,Above,Flat,0,5701,,35.76717241,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31801,NJBF000065488,503 N DERBY AVE,Ventnor City,NJ,39.34723659,-74.48340041,RES1,3001,,17,NE,1957,1957,3101,1,1,1636.394179,1636.394179,3505,NO,21.75,33.43,3,5.17,6106,113.609124,123.388652,133.109444,139.623247,I,Above,Hip,0,5701,,27.59361889,0,0,,,,1,1,,0.03,nav,1,1957,1,, 31802,NJBF000059203,15 S MELBOURNE AVE,Ventnor City,NJ,39.333771,-74.48916655,RES1,3001,,17,NE,1925,1925,3102,2,1,2859.036855,2859.036855,3505,NO,20.59,32.8,3,-2.22,6106,113.662961,123.43501,133.148985,139.73255,I,Above,Hip,0,5701,,26.69092093,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 31803,NJBF000065538,404 N SUFFOLK AVE,Ventnor City,NJ,39.34738532,-74.47957284,RES1,3001,,17,NE,1970,1970,3102,2,1,1547.454695,1547.454695,3505,NO,36.13,43.37,3,5.72,6106,113.691819,123.455496,133.180686,139.688884,I,Above,Gable,0,5701,,39.75203008,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 31804,NJBF000058877,107 S LAFAYETTE AVE,Ventnor City,NJ,39.33310465,-74.48739811,RES1,3001,,18,NE,2002,2002,3102,2,1,1312.848745,1312.848745,3505,NO,31.1,37.12,3,-2.61,6110,113.71119,123.473916,133.189511,139.777723,I,Above,Flat,0,5701,,34.10903797,0,0.1,,,,1,1,,0.35,nav,1,2002,2,, 31805,NJBF000061391,105 S CAMBRIDGE AVE,Ventnor City,NJ,39.33755402,-74.47853454,RES1,3001,,18,NE,1920,1920,3102,3,1,2125.956437,2125.956437,3505,NO,40.94,53.03,3,2.83,6106,113.845183,123.58233,133.308339,139.867743,I,Above,Flat,0,5701,,46.98689505,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 31806,NJBF000061500,103 S CAMBRIDGE AVE,Ventnor City,NJ,39.33775117,-74.4784676,RES1,3001,,16,NE,1927,1927,3102,1,1,1904.84387,1904.84387,3505,NO,18.83,27.33,3,3.79,6106,113.843987,123.581345,133.307462,139.865655,I,Above,Hip,0,5701,,23.0815015,0,0,,,,1,1,,0.03,nav,1,1927,1,, 31807,NJBF000066209,510 N SUFFOLK AVE,Ventnor City,NJ,39.3491967,-74.48100795,RES1,3001,,17,NE,1977,1977,3102,2,1,1530.890164,1530.890164,3507,NO,31.94,42.21,1,1.53,6106,113.636711,123.40997,133.133288,139.633952,I,Above,Gable,0,5701,,37.07407666,0,0,,,,1,1,,0.03,nav,1,1977,2,, 31808,NJBF000058054,102 S MARTINDALE AVE,Ventnor City,NJ,39.331634,-74.4910665,RES1,3001,,18,NE,1925,1925,3102,2,1,2031.357883,2031.357883,3505,NO,30.23,42.78,3,4.72,6106,113.651001,123.425201,133.136827,139.725735,I,Above,Hip,0,5701,,36.50489612,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31809,NJBF000062890,2 N DERBY AVE,Ventnor City,NJ,39.34044818,-74.47885475,RES1,3001,,18,NE,1900,1900,3102,2,1,1595.762443,1595.762443,3505,NO,36.32,41.51,3,7.83,6106,113.799115,123.544621,133.270617,139.814879,I,Above,Hip,0,5701,,38.91466524,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 31810,NJBF000064563,18 N HILLSIDE AVE,Ventnor City,NJ,39.34479233,-74.47123035,RES1,3001,,17,NE,1920,1925,3102,2,2,5729.862832,5729.862832,3507,NO,28.62,40.08,1,0.83,6106,113.909529,123.633362,133.368837,139.872393,I,Above,Hip,0,5701,,34.35246129,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31811,NJBF000064498,14 N HILLSIDE AVE,Ventnor City,NJ,39.34463879,-74.47109786,RES1,3001,,17,NE,1940,1940,3102,2,1,1609.157638,1609.157638,3507,NO,26.42,32.63,1,0.37,6106,113.914435,123.637403,133.373042,139.876986,I,Above,Hip,0,5701,,29.52530142,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31812,NJBF000065864,509 N DUDLEY AVE,Ventnor City,NJ,39.34829924,-74.48237567,RES1,3001,,17,NE,1963,1963,3102,1,1,2337.473579,2337.473579,3507,NO,16.7,22.91,1,0.62,6106,113.61802,123.39532,133.117164,139.624252,I,Above,Hip,0,5701,,19.80680448,0,0,,,,1,1,,0.03,nav,1,1963,1,, 31813,NJBF000059845,108 N MARTINDALE AVE,Ventnor City,NJ,39.3349563,-74.49372949,RES1,3001,,17,NE,1927,1927,3102,2,1,884.3970864,884.3970864,3505,NO,38.7,53.5,3,5.53,6106,113.545897,123.340672,133.050495,139.623686,I,Above,Hip,0,5701,,46.09841131,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 31814,NJBF000061974,110 N AVOLYN AVE,Ventnor City,NJ,39.33856982,-74.48641043,RES1,3001,,17,NE,1938,1938,3102,2,1,970.4067799,970.4067799,3505,NO,30.66,36.54,3,6.63,6106,113.657796,123.430598,133.148117,139.709899,I,Above,Flat,0,5701,,33.59872066,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 31815,NJBF000064107,101 N SUFFOLK AVE,Ventnor City,NJ,39.34359222,-74.47595937,RES1,3001,,17,NE,1960,1960,3102,1,1,1192.459486,1192.459486,3505,NO,21.46,34.44,3,4.82,6106,113.821157,123.561797,133.291388,139.812983,I,Above,Flat,0,5701,,27.94745767,0,0,,,,1,1,,0.03,nav,1,1960,1,, 31816,NJBF000065517,421 N OXFORD AVE,Ventnor City,NJ,39.34730265,-74.48073656,RES1,3001,,17,NE,1960,1960,3102,2,1,1472.166684,1472.166684,3505,NO,38.77,48.51,3,5.33,6106,113.66716,123.435562,133.159396,139.669718,I,Above,Hip,0,5701,,43.63920318,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 31817,NJBF000065506,421 N OXFORD AVE,Ventnor City,NJ,39.3472795,-74.4805725,RES1,3001,,17,NE,1960,1960,3102,2,1,556.2583763,556.2583763,3505,NO,28.46,41.42,3,1.89,6106,113.671118,123.438778,133.162806,139.673027,I,Above,Hip,0,5701,,34.93812357,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, 31818,NJBF000065478,511 N CORNWALL AVE,Ventnor City,NJ,39.34718549,-74.48511067,RES1,3001,,17,NE,1956,1956,3101,1,1,1174.67875,1174.67875,3505,NO,14.92,22.71,3,1.67,6106,113.571929,123.358638,133.077528,139.593081,I,Above,Hip,0,5701,,18.81739569,0,0,,,,1,1,,0.03,nav,1,1956,1,, 31819,NJBF000058917,108 S PHILADELPHIA AVE,Ventnor City,NJ,39.33317662,-74.48722802,RES1,3001,,20,NE,1930,1930,3102,2,1,1381.247917,1381.247917,3505,NO,28.85,41.13,3,1.01,6106,113.71393,123.476134,133.191918,139.779979,I,Above,Hip,0,5701,,34.9881501,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31820,NJBF000066927,,Ventnor City,NJ,39.35132154,-74.48043333,RES3A,3001,,NaN,NE,1986,0,3301,1,1,1723.324598,1723.324598,3505,NO,19.07,33.25,3,8.36,6106,113.622278,123.39705,133.120724,139.609469,I,Above,Gable,0,5701,,26.16017188,0,0,,,,1,1,,0.03,nav,1,1986,1,, 31821,NJBF000063125,129 N PRINCETON AVE,Ventnor City,NJ,39.3409355,-74.4835105,RES1,3001,,17,NE,1930,1930,3102,2,1,1198.946103,1198.946103,3505,NO,39.57,52.26,3,7.19,6106,113.68989,123.4561,133.176902,139.724643,I,Above,Gable,0,5701,,45.91519511,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31822,NJBF000061452,7021-7023 VENTNOR GD,Ventnor City,NJ,39.33765921,-74.49299235,RES1,3001,,45,NE,1974,1974,3102,2,2,2006.102442,2006.102442,3505,NO,40.69,46.69,3,5.55,6106,113.524849,123.323565,133.034434,139.597265,I,Above,Gable,0,5701,,43.68747435,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31823,NJBF000060423,20 S NEW HAVEN AVE,Ventnor City,NJ,39.335936,-74.483634,RES1,3001,,18,NE,1960,1960,3102,2,1,4236.14005,4236.14005,3505,NO,31.33,44.46,3,-2.87,6106,113.754966,123.509342,133.229433,139.804495,I,Above,Flat,0,5701,,37.89620969,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 31824,NJBF000066968,,Ventnor City,NJ,39.3514853,-74.48054633,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2302.817089,2302.817089,3505,NO,20.77,30.4,3,6.71,6106,113.617708,123.393247,133.116758,139.604808,I,Above,Hip,0,5701,,25.58556786,0,0,,,,1,1,,0.03,nav,1,1969,1,, 31825,NJBF000061106,9 N RICHARDS AVE,Ventnor City,NJ,39.33705989,-74.48623382,RES1,3001,,17,NE,1930,1930,3102,2,1,1112.269586,1112.269586,3505,NO,38.1,46.54,3,1.38,6106,113.68226,123.450516,133.168039,139.737676,I,Above,Hip,0,5701,,42.31836175,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31826,NJBF000060350,12 S RICHARDS AVE,Ventnor City,NJ,39.3358225,-74.4856475,RES1,3001,,16,NE,1930,1930,3102,2,1,1718.489337,1718.489337,3505,NO,31.92,42.89,3,6.69,6106,113.712175,123.474751,133.192694,139.768768,I,Above,Flat,0,5701,,37.40630379,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31827,NJBF000060301,18 S RICHARDS AVE,Ventnor City,NJ,39.3357385,-74.4856005,RES1,3001,,17,NE,2007,2007,3102,3,1,1203.660433,1203.660433,3505,NO,54.75,66.18,3,5.09,6106,113.714343,123.476506,133.194483,139.770994,I,Above,Flat,0,5701,,60.46461909,0,0,,,,1,1,,0.03,nav,1,2007,3,, 31828,NJBF000064073,121 N OXFORD AVE,Ventnor City,NJ,39.34350654,-74.47768927,RES1,3001,,17,NE,1940,1940,3102,2,1,1630.817102,1630.817102,3505,NO,29.32,36.57,3,7.76,6106,113.78414,123.531772,133.259296,139.784907,I,Above,Gable,0,5701,,32.94908627,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31829,NJBF000066480,803 N HARVARD AVE,Ventnor City,NJ,39.34986128,-74.48900942,RES1,3001,,17,NE,1977,1977,3101,1,1,1756.726749,1756.726749,3505,NO,22.78,29.23,3,4.24,6106,113.450924,123.259628,132.9739,139.477544,I,Above,Flat,0,5701,,26.00625333,0,0,,,,1,1,,0.03,nav,1,1977,1,, 31830,NJBF000063984,5410 EDGEWATER AVE,Ventnor City,NJ,39.34327403,-74.47565025,RES1,3001,,18,NE,2016,2016,3102,3,1,3004.911058,3004.911058,3505,NO,52.21,65.46,3,4.11,6106,113.832161,123.570821,133.300774,139.823348,I,Above,Flat,0,5701,,58.83244335,0,0,,,,1,1,,0.03,nav,1,2016,3,, 31831,NJBF000065113,28 N MARION AVE,Ventnor City,NJ,39.34616683,-74.469153,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1835.458472,1835.458472,3507,NO,32.41,42.34,1,1.55,6106,113.937285,123.655593,133.393762,139.884584,I,Above,Flat,0,5701,,37.37311552,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31832,NJBF000065068,26 N MARION AVE,Ventnor City,NJ,39.34605437,-74.4690888,RES1,3001,,17,NE,1900,1900,3102,2,1,998.6367507,998.6367507,3507,NO,30.03,43.3,1,0.73,6106,113.94016,123.657975,133.396226,139.887408,I,Above,Hip,0,5701,,36.66347632,0,0,,,,1,1,,0.03,nav,1,1900,2,, 31833,NJBF000064351,213 N DORSET AVE,Ventnor City,NJ,39.34427949,-74.48003334,RES1,3001,,17,NE,1963,1963,3102,2,2,972.0311105,972.0311105,3505,NO,23.16,28.58,3,2.14,6106,113.722241,123.481357,133.206145,139.731626,I,Above,Flat,0,5701,,25.86610668,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 31834,NJBF000060422,102 N MELBOURNE AVE,Ventnor City,NJ,39.33593547,-74.49147428,RES1,3001,,17,NE,1924,1924,3102,2,1,1111.772348,1111.772348,3505,NO,36.23,43.96,3,2.73,6106,113.5821,123.369801,133.081911,139.653818,I,Above,Hip,0,5701,,40.09313014,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 31835,NJBF000059399,111 S BUFFALO AVE,Ventnor City,NJ,39.33417612,-74.4846241,RES1,3001,,NaN,NE,1970,1925,3102,2,1,5422.369971,5422.369971,3505,NO,25.84,33.7,3,3.96,6106,113.757402,123.511313,133.230008,139.814674,I,Above,Flat,0,5701,,29.77334974,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31836,NJBF000063798,104 S OAKLAND AVE,Ventnor City,NJ,39.34272816,-74.46791091,RES3B,3001,,17,E,1910,1910,3303,3,1,1492.663963,1492.663963,3504,NO,54.89,64.07,-4,0,6106,114.009581,123.715468,133.455095,139.958385,I,Above,Hip,0,NaN,,59.47760303,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 31837,NJBF000065733,612 N CAMBRIDGE AVE,Ventnor City,NJ,39.347945,-74.48713713,RES1,3001,,17,NE,1963,1963,3101,2,1,1210.152721,1210.152721,3505,NO,28.12,37.72,3,-1.17,6106,113.517176,123.314092,133.030681,139.543487,I,Above,Gable,0,5701,,32.92036818,0,0,,,,1,1,,0.03,nav,1,1963,2,, 31838,NJBF000062506,115 N NEWPORT AVE,Ventnor City,NJ,39.33959685,-74.48458098,RES1,3001,,17,NE,1925,1925,3102,2,1,1652.644067,1652.644067,3505,NO,25.82,32.92,3,-1.66,6106,113.684261,123.451813,133.171363,139.727097,I,Above,Gable,0,5701,,29.37003813,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31839,NJBF000066544,604 N SUFFOLK AVE,Ventnor City,NJ,39.35002377,-74.48166185,RES1,3001,,17,NE,1972,1972,3102,2,1,1308.780691,1308.780691,3507,NO,39.57,48.45,1,1.9,6106,113.611638,123.389218,133.111656,139.608804,I,Above,Flat,0,5701,,44.01068703,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31840,NJBF000060472,3 S BUFFALO AVE,Ventnor City,NJ,39.33603585,-74.48613305,RES1,3001,,17,NE,1912,1912,3102,2,1,1093.176343,1093.176343,3505,NO,37.44,43.62,3,-0.34,6106,113.698522,123.463713,133.181186,139.756103,I,Above,Hip,0,5701,,40.53103758,0,0,,,,1,1,,0.03,nav,1,1912,2,, 31841,NJBF000064474,230 N DUDLEY AVE,Ventnor City,NJ,39.34457672,-74.47992146,RES1,3001,,NaN,NE,1962,0,3102,2,1,1566.998705,1566.998705,3505,NO,43.35,57.05,3,7.08,6106,113.720793,123.480083,133.204998,139.728708,I,Above,Hip,0,5701,,50.19947235,0,0,,,,1,1,,0.03,nav,1,1962,2,, 31842,NJBF000063678,108 S NASHVILLE AVE,Ventnor City,NJ,39.34236203,-74.46829882,RES3B,3001,,18,E,1980,1980,3303,2,1,1192.323261,1192.323261,3504,NO,29.95,42.42,-4,0,6106,114.005892,123.712519,133.451609,139.957898,I,Above,Flat,0,NaN,,36.18533376,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 31843,NJBF000066302,603 N OXFORD AVE,Ventnor City,NJ,39.34943913,-74.48244449,RES1,3001,,17,NE,1974,1974,3102,2,1,1599.886065,1599.886065,3507,NO,31.46,42.93,1,1.85,6106,113.601832,123.38162,133.103238,139.604387,I,Above,Flat,0,5701,,37.1993177,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 31844,NJBF000063535,5707 WINCHESTER AVE,Ventnor City,NJ,39.34197195,-74.4765753,RES1,3001,,18,NE,1930,1930,3102,2,1,1230.348927,1230.348927,3505,NO,29.61,43.44,3,-2.75,6106,113.829024,123.568586,133.297366,139.828863,I,Above,Flat,0,5701,,36.52290278,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31845,NJBF000063549,5705 WINCHESTER AVE,Ventnor City,NJ,39.34202094,-74.4764879,RES1,3001,,16,NE,1930,1930,3102,2,1,1635.545826,1635.545826,3505,NO,27.7,40.6,3,-2.45,6106,113.83029,123.569603,133.298489,139.829537,I,Above,Flat,0,5701,,34.1489111,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31846,NJBF000063598,105 S FRANKFORT AVE,Ventnor City,NJ,39.34214216,-74.46911474,RES1,3001,,NaN,NE,1923,1988,3102,2,1,1383.492674,1383.492674,3505,NO,37.3,49.55,3,4.62,6106,113.990881,123.700301,133.438318,139.948332,I,Above,Gable,0,5701,,43.42144394,0,0,,,,1,1,,0.03,nav,1,1923,2,, 31847,NJBF000064434,309 N CORNWALL AVE,Ventnor City,NJ,39.34448393,-74.48291674,RES1,3001,,17,NE,1958,1958,3102,1,1,2170.6543,2170.6543,3505,NO,17,28.8,3,3.77,6106,113.655831,123.427546,133.149051,139.677069,I,Above,Hip,0,5701,,22.89979957,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 31848,NJBF000063222,419 BERKSHIRE DR,Ventnor City,NJ,39.34116363,-74.49419854,RES1,3001,,45,NE,1970,1970,3102,2,2,1909.384537,1909.384537,3505,NO,24.86,37.06,3,0.31,6106,113.450438,123.263079,132.972978,139.518812,I,Above,Hip,0,5701,,30.95907235,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31849,NJBF000064381,1 N HILLSIDE AVE,Ventnor City,NJ,39.34434897,-74.47040054,RES1,3001,,17,NE,1940,1933,3102,3,2,1605.002661,1605.002661,3507,NO,39.51,49.09,1,1.26,6106,113.933562,123.653074,133.389592,139.892958,I,Above,Hip,0,5701,,44.29821291,0,0,,,,1,1,,0.03,nav,1,1940,3,, 31850,NJBF000061736,9 S SACRAMENTO AVE,Ventnor City,NJ,39.33817007,-74.48054593,RES1,3001,,17,NE,1930,1930,3102,2,1,1676.416161,1676.416161,3505,NO,34.02,47.86,3,0.28,6106,113.792546,123.539612,133.263434,139.822996,I,Above,Hip,0,5701,,40.94242308,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31851,NJBF000061077,112 S CAMBRIDGE AVE,Ventnor City,NJ,39.33702019,-74.47862233,RES1,3001,,20,NE,2014,2014,3102,3,1,1866.073559,1866.073559,3505,NO,36.48,44.49,3,2.16,6106,113.850522,123.586692,133.312514,139.87501,I,Above,Hip,0,5701,,40.48450128,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, 31852,NJBF000064210,17 N LITTLE ROCK AVE,Ventnor City,NJ,39.343897,-74.47205633,RES1,3001,,17,NE,1930,1930,3102,2,1,983.9397429,983.9397429,3507,NO,28.19,41.81,1,2.91,6106,113.90309,123.628356,133.362759,139.873077,I,Above,Flat,0,5701,,35.00455592,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31853,NJBF000062719,18 N CAMBRIDGE AVE,Ventnor City,NJ,39.34008309,-74.48109388,RES1,3001,,17,NE,1930,1930,3102,2,1,1537.101339,1537.101339,3505,NO,36.33,43.77,3,6.94,6106,113.754651,123.50866,133.232079,139.781874,I,Above,Hip,0,5701,,40.04857496,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31854,NJBF000065358,415 N DORSET AVE,Ventnor City,NJ,39.3468357,-74.48208799,RES1,3001,,17,NE,1948,1948,3102,1,1,1328.919087,1328.919087,3505,NO,16.8,28.5,3,1.41,6106,113.64336,123.416515,133.13883,139.653353,I,Above,Hip,0,5701,,22.64714745,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 31855,NJBF000063490,5214 ATLANTIC AVE,Ventnor City,NJ,39.34186695,-74.47025811,COM1,3001,,NaN,ME,1920,1920,3401,1,2,1853.268465,1853.268465,3507,NO,14.53,21.38,1,1.93,6110,113.969411,123.682832,133.419366,139.934358,I,Above,Flat,0,NaN,,17.95590307,0,0,,,,1,1,,0.35,nav,1,1920,1,, 31856,NJBF000065899,512 N DUDLEY AVE,Ventnor City,NJ,39.34839419,-74.48300577,RES1,3001,,17,NE,1963,1963,3102,1,1,1826.186702,1826.186702,3507,NO,19.89,30.44,1,1.11,6106,113.602852,123.383009,133.104122,139.611396,I,Above,Gable,0,5701,,25.1610799,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 31857,NJBF000065392,418 N OXFORD AVE,Ventnor City,NJ,39.34693366,-74.48106899,RES1,3001,,17,NE,1940,1940,3102,2,1,861.2287178,861.2287178,3505,NO,30.35,36.71,3,-0.59,6106,113.664614,123.433668,133.157146,139.669877,I,Above,Gable,0,5701,,33.52922783,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31858,NJBF000064667,314 N DERBY AVE,Ventnor City,NJ,39.34502938,-74.48217849,RES1,3001,,17,NE,1985,1985,3102,2,1,2223.462544,2223.462544,3505,NO,42.27,55.48,3,8.91,6106,113.664996,123.434757,133.157076,139.681364,I,Above,Gable,0,5701,,48.87602491,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 31859,NJBF000066077,516 N OXFORD AVE,Ventnor City,NJ,39.34885067,-74.48248753,RES1,3001,,17,NE,1963,1963,3102,1,1,1352.212938,1352.212938,3507,NO,14.45,23.79,1,1.21,6106,113.608421,123.387269,133.108917,139.613215,I,Above,Gable,0,5701,,19.11641232,0,0,,,,1,1,,0.03,nav,1,1963,1,, 31860,NJBF000064892,400 N DERBY AVE,Ventnor City,NJ,39.34559196,-74.48261331,RES1,3001,,17,NE,1962,1962,3102,1,1,1367.718626,1367.718626,3505,NO,20.41,28.61,3,2.76,6106,113.647995,123.420791,133.142593,139.664349,I,Above,Flat,0,5701,,24.51249489,0,0,,,,1,1,,0.03,nav,1,1962,1,, 31861,NJBF000063034,107 N HARVARD AVE,Ventnor City,NJ,39.34075018,-74.48189759,RES1,3001,,17,NE,1925,1925,3102,2,1,1080.747323,1080.747323,3505,NO,40.38,46.38,3,7.7,6106,113.727963,123.486932,133.209503,139.756648,I,Above,Hip,0,5701,,43.38161728,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31862,NJBF000063554,6813 FULTON AVE,Ventnor City,NJ,39.34203494,-74.49465461,RES1,3001,,17,NE,1975,1975,3102,2,1,1266.951907,1266.951907,3505,NO,40.77,51.92,3,4.54,6106,113.428598,123.245293,132.954751,139.496174,I,Above,Gable,0,5701,,46.34155272,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31863,NJBF000064089,5405 EDGEWATER AVE,Ventnor City,NJ,39.34354117,-74.47587405,RES1,3001,,47,NE,1980,1980,3102,2,3,574.3121586,574.3121586,3505,NO,32.21,41.24,3,5.82,6106,113.823703,123.563879,133.293571,139.815246,I,Above,Flat,0,5701,,36.72535618,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 31864,NJBF000064052,5405 EDGEWATER AVE,Ventnor City,NJ,39.34344969,-74.47596518,RES1,3001,,47,NE,1980,1980,3102,2,3,1419.308411,1419.308411,3505,NO,25.99,31.29,3,2.58,6106,113.822898,123.56325,133.292829,139.815183,I,Above,Hip,0,5701,,28.63932063,0,1.2,,,,1,1,,0.03,nav,1,1980,2,, 31865,NJBF000059127,7212 VENTNOR AVE,Ventnor City,NJ,39.33360727,-74.4912453,RES1,3001,,17,NE,1929,1929,3102,2,1,1226.930427,1226.930427,3505,NO,37.9,46.97,3,5.45,6106,113.619455,123.399912,133.111828,139.69353,I,Above,Hip,0,5701,,42.43718444,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 31866,NJBF000064824,24 N NASHVILLE AVE,Ventnor City,NJ,39.34542017,-74.47078275,RES1,3001,,17,NE,1920,1920,3102,2,2,1622.481322,1622.481322,3507,NO,30.61,44.11,1,-0.41,6106,113.91116,123.634509,133.370566,139.869752,I,Above,Hip,0,5701,,37.35614948,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31867,NJBF000065424,509 N CORNWALL AVE,Ventnor City,NJ,39.34703766,-74.48500879,RES1,3001,,17,NE,1956,1956,3101,1,1,1518.36845,1518.36845,3505,NO,11.92,21.43,3,-1.73,6106,113.5761,123.362075,133.081093,139.597347,I,Above,Flat,0,5701,,16.67334595,0,0,,,,1,1,,0.03,nav,1,1956,1,, 31868,NJBF000064431,207 N OXFORD AVE,Ventnor City,NJ,39.34447702,-74.47847165,RES1,3001,,18,NE,1969,2018,3102,2,1,1183.74046,1183.74046,3505,NO,35.53,41.4,3,2.52,6106,113.754091,123.507103,133.233711,139.755582,I,Above,Hip,0,5701,,38.46734435,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31869,NJBF000059109,13 S BALTIMORE AVE,Ventnor City,NJ,39.33356104,-74.48996704,RES1,3001,,17,NE,1935,1935,3102,2,1,1575.366656,1575.366656,3505,NO,46.8,59.29,3,8.88,6106,113.648258,123.423138,133.136283,139.719783,I,Above,Hip,0,5701,,53.04522259,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 31870,NJBF000059147,11 S BALTIMORE AVE,Ventnor City,NJ,39.33364947,-74.490033,RES1,3001,,17,NE,1935,1935,3102,2,1,1195.192838,1195.192838,3505,NO,29.67,44.1,3,-0.22,6106,113.645578,123.42098,133.134079,139.717148,I,Above,Hip,0,5701,,36.88507483,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 31871,NJBF000060628,105 N MELBOURNE AVE,Ventnor City,NJ,39.33629491,-74.49124905,RES1,3001,,17,NE,1928,1928,3102,2,1,1430.585333,1430.585333,3505,NO,40.88,51.26,3,3.17,6106,113.5821,123.369782,133.082161,139.652722,I,Above,Gable,0,5701,,46.06963441,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 31872,NJBF000063196,102 S SURREY AVE,Ventnor City,NJ,39.3411052,-74.47182941,RES1,3001,,17,NE,1989,1989,3102,2,1,2743.942648,2743.942648,3505,NO,29.45,41.55,3,7.51,6110,113.945001,123.66306,133.397544,139.921086,I,Above,Hip,0,5701,,35.49682255,0,1.2,,,,1,1,,0.35,nav,1,1989,2,, 31873,NJBF000063405,105 S LITTLE ROCK AVE,Ventnor City,NJ,39.34161992,-74.4701558,COM1,3001,,NaN,ME,1918,1918,3401,3,3,1642.806184,1642.806184,3507,NO,53.39,60.62,1,1.31,6106,113.974927,123.68737,133.424009,139.939862,I,Above,Flat,0,NaN,,57.00404551,0,0,,,,1,1,,0.03,nav,1,1918,3,, 31874,NJBF000067176,709 N LITTLE ROCK AVE,Ventnor City,NJ,39.3524405,-74.48073867,RES3A,3001,,27,NE,1980,1980,3301,2,1,1191.694475,1191.694475,3505,NO,43.33,50.05,3,4.91,6106,113.601335,123.379364,133.102464,139.585801,I,Above,Flat,0,5701,,46.68987702,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31875,NJBF000059297,22 S WYOMING AVE,Ventnor City,NJ,39.33395921,-74.48814971,RES1,3001,,18,NE,1935,1935,3102,2,1,1312.883549,1312.883549,3505,NO,22.76,29.49,3,-2.77,6106,113.682754,123.450992,133.166019,139.7498,I,Above,Gable,0,5701,,26.12616965,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 31876,NJBF000062836,119 N PORTLAND AVE,Ventnor City,NJ,39.34033296,-74.4837536,RES1,3001,,17,NE,1940,1940,3102,2,2,1240.509168,1240.509168,3505,NO,24.22,32.44,3,-0.27,6106,113.6926,123.458416,133.178915,139.730123,I,Above,Gable,0,5701,,28.32861584,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31877,NJBF000065322,509 N CAMBRIDGE AVE,Ventnor City,NJ,39.34673828,-74.48562111,RES1,3001,,18,NE,1962,1962,3101,1,1,1484.12864,1484.12864,3505,NO,17.01,31.06,3,2.39,6106,113.56646,123.354437,133.072811,139.59108,I,Above,Hip,0,5701,,24.03392459,0,0,,,,1,1,,0.03,nav,1,1962,1,, 31878,NJBF000063104,101 S SUFFOLK AVE,Ventnor City,NJ,39.3408994,-74.47230211,RES1,3001,,17,NE,1920,1920,3102,3,1,2486.919418,2486.919418,3505,NO,39.98,47.4,3,1.95,6110,113.937345,123.656855,133.39073,139.916704,I,Above,Gable,0,5701,,43.68949152,0,1.2,,,,1,1,,0.35,nav,1,1920,3,, 31879,NJBF000061879,302 N LAFAYETTE AVE,Ventnor City,NJ,39.33840647,-74.49322907,RES1,3001,,17,NE,1974,1974,3102,2,1,1301.630172,1301.630172,3505,NO,39.42,50.07,3,5.07,6106,113.509379,123.311022,133.021731,139.581011,I,Above,Gable,0,5701,,44.74121658,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31880,NJBF000065218,504 N CORNWALL AVE,Ventnor City,NJ,39.34643576,-74.48506249,RES1,3001,,17,NE,1958,1958,3101,1,1,1303.998901,1303.998901,3505,NO,16.27,30.6,3,2.97,6106,113.582777,123.367744,133.086759,139.606235,I,Above,Hip,0,5701,,23.43414166,0,0,,,,1,1,,0.03,nav,1,1958,1,, 31881,NJBF000060467,116 N BALTIMORE AVE,Ventnor City,NJ,39.3360225,-74.4923745,RES1,3001,,45,NE,1927,1927,3102,2,2,1564.596995,1564.596995,3505,NO,36.08,49.96,3,7.54,6106,113.561033,123.352828,133.064088,139.634651,I,Above,Flat,0,5701,,43.02292306,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 31882,NJBF000064596,404 N CAMBRIDGE AVE,Ventnor City,NJ,39.34487218,-74.48467305,RES1,3001,,17,NE,1979,1979,3102,1,1,3613.555976,3613.555976,3505,NO,18.77,28.65,3,4.64,6106,113.611892,123.391902,133.111447,139.638941,I,Above,Hip,0,5701,,23.70646007,0,0,,,,1,1,,0.03,nav,1,1979,1,, 31883,NJBF000058695,104 S PITTSBURGH AVE,Ventnor City,NJ,39.33277191,-74.48836031,RES1,3001,,21,NE,2016,2016,3102,2,1,1479.588593,1479.588593,3505,NO,44.25,51.4,3,8.62,6110,113.694652,123.460537,133.175089,139.763653,I,Above,Hip,0,5701,,47.82743011,0,0,,,,1,1,,0.35,nav,1,2016,2,, 31884,NJBF000064876,414 N CAMBRIDGE AVE,Ventnor City,NJ,39.34555418,-74.48522206,RES1,3001,,17,NE,1963,1963,3102,1,1,1396.926554,1396.926554,3505,NO,13.82,25.89,3,2.13,6106,113.590783,123.374587,133.093493,139.617756,I,Above,Hip,0,5701,,19.85457798,0,0,,,,1,1,,0.03,nav,1,1963,1,, 31885,NJBF000059294,7 S MELBOURNE AVE,Ventnor City,NJ,39.33395338,-74.48941052,RES1,3001,,17,NE,1920,1920,3102,2,1,863.4488572,863.4488572,3505,NO,37.46,44.94,3,6.09,6106,113.655054,123.428636,133.142408,139.724946,I,Above,Flat,0,5701,,41.20049255,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31886,NJBF000066805,900 N HARVARD AVE,Ventnor City,NJ,39.35084631,-74.49032015,RES1,3001,,18,NE,2001,2001,3102,3,1,2379.411717,2379.411717,3505,NO,51.38,63.57,3,5.26,6106,113.409196,123.225418,132.938099,139.43705,I,Above,Hip,0,5701,,57.47569737,0,1.1,,,,1,1,,0.03,nav,1,2001,3,, 31887,NJBF000064819,3 N AUSTIN AVE,Ventnor City,NJ,39.34539862,-74.46886239,RES1,3001,,17,NE,1930,1930,3102,2,1,1082.426296,1082.426296,3507,NO,27.16,38.54,1,-0.7,6106,113.953674,123.669201,133.407738,139.901404,I,Above,Hip,0,5701,,32.85170753,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31888,NJBF000062838,8 N CORNWALL AVE,Ventnor City,NJ,39.34033374,-74.48008034,RES1,3001,,17,NE,1930,1930,3102,2,1,2042.851418,2042.851418,3505,NO,44.71,49.76,3,8.09,6106,113.77364,123.523995,133.24858,139.795531,I,Above,Hip,0,5701,,47.23246715,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31889,NJBF000063002,330 HAMPSHIRE DRIVE,Ventnor City,NJ,39.34067407,-74.49295552,RES1,3001,,35,NE,1974,1974,3102,2,1,3646.732211,3646.732211,3505,NO,20.38,31.15,3,-2.69,6106,113.48458,123.290644,133.001723,139.550778,I,Above,Gable,0,5701,,25.76528172,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31890,NJBF000061017,22 N BUFFALO AVE,Ventnor City,NJ,39.33692213,-74.48731259,RES1,3001,,17,NE,1925,1925,3102,2,1,1285.99623,1285.99623,3505,NO,33.88,40.67,3,7.17,6106,113.660347,123.432835,133.149225,139.719389,I,Above,Gable,0,5701,,37.27383507,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31891,NJBF000065178,415 N BURGHLEY AVE,Ventnor City,NJ,39.34631408,-74.48355201,RES1,3001,,17,NE,1974,1974,3102,2,1,1861.764244,1861.764244,3505,NO,36.78,44.97,3,4.47,6106,113.617785,123.39607,133.116771,139.635627,I,Above,Hip,0,5701,,40.87749325,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31892,NJBF000062721,105 N PRINCETON AVE,Ventnor City,NJ,39.34008339,-74.48279175,RES1,3001,,28,NE,1925,1925,3102,2,1,742.854621,742.854621,3505,NO,28.71,36.85,3,4.33,6106,113.717194,123.478349,133.199882,139.751624,I,Above,Flat,0,5701,,32.78160764,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31893,NJBF000062695,103 N PRINCETON AVE,Ventnor City,NJ,39.34003218,-74.48275818,RES1,3001,,17,NE,1925,1925,3102,2,1,736.318311,736.318311,3505,NO,27.01,38.92,3,1.43,6106,113.71863,123.47952,133.201086,139.753075,I,Above,Hip,0,5701,,32.96464324,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31894,NJBF000066463,703 N DERBY AVE,Ventnor City,NJ,39.34981518,-74.48549585,RES1,3001,,17,NE,1980,1980,3101,2,1,1219.649502,1219.649502,3505,NO,19.38,27.1,3,-2.77,6106,113.529417,123.32291,133.041015,139.543045,I,Above,Gable,0,5701,,23.24358979,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31895,NJBF000065296,311 N SUFFOLK AVE,Ventnor City,NJ,39.3466514,-74.47844323,RES1,3001,,17,NE,1956,1956,3102,1,1,1886.782431,1886.782431,3505,NO,14.28,24.22,3,0.25,6106,113.726307,123.483768,133.210344,139.7206,I,Above,Flat,0,5701,,19.25484155,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 31896,NJBF000064267,233 N DERBY AVE,Ventnor City,NJ,39.34405748,-74.48081782,RES1,3001,,17,NE,1945,1945,3102,2,2,1713.772592,1713.772592,3505,NO,31,37.81,3,6.96,6106,113.707833,123.469762,133.19365,139.721455,I,Above,Gable,0,5701,,34.40322698,0,0,,,,1,1,,0.03,nav,1,1945,2,, 31897,NJBF000065412,314 N SURREY AVE,Ventnor City,NJ,39.34699,-74.4784765,RES1,3001,,17,NE,1962,1962,3102,2,1,519.9048427,519.9048427,3505,NO,40.09,45.97,3,7.14,6106,113.721174,123.479463,133.20598,139.714497,I,Above,Gable,0,5701,,43.02998011,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 31898,NJBF000061796,7000-7002 CALVERT AVE,Ventnor City,NJ,39.33826806,-74.49205722,RES1,3001,,45,NE,1975,1975,3102,2,2,2122.937127,2122.937127,3505,NO,27.63,38.54,3,0.18,6106,113.537174,123.333407,133.045226,139.606174,I,Above,Gable,0,5701,,33.08178601,0,0,,,,1,1,,0.03,nav,1,1975,2,, 31899,NJBF000061305,,Ventnor City,NJ,39.33740535,-74.49086956,RES1,3001,,NaN,NE,1969,0,3102,2,1,1130.238876,1130.238876,3505,NO,27.69,37.86,3,3.91,6106,113.575212,123.364142,133.077029,139.642906,I,Above,Flat,0,5701,,32.77547051,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31900,NJBF000060161,22 S BUFFALO AVE,Ventnor City,NJ,39.33550067,-74.4861201,RES1,3001,,17,NE,1927,1927,3102,2,1,1581.814417,1581.814417,3505,NO,47.05,60.22,3,8.97,6106,113.706166,123.469905,133.1873,139.764942,I,Above,Flat,0,5701,,53.6355525,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 31901,NJBF000064555,10 S BATON ROUGE AVE,Ventnor City,NJ,39.34477376,-74.46735272,RES1,3001,,17,NE,1930,1930,3102,2,1,1684.96068,1684.96068,3504,NO,33.64,43.01,-4,0,6106,113.99498,123.703109,133.443601,139.9355,I,Above,Hip,0,5701,,38.32553489,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31902,NJBF000058952,6 S WASHINGTON AVE,Ventnor City,NJ,39.33324299,-74.49159552,RES1,3001,,17,NE,1925,1925,3102,2,1,1192.476978,1192.476978,3505,NO,29.56,43.61,3,-0.46,6106,113.616801,123.397754,133.109258,139.691848,I,Above,Hip,0,5701,,36.58101267,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31903,NJBF000058906,8 S WASHINGTON AVE,Ventnor City,NJ,39.3331588,-74.49152544,RES1,3001,,17,NE,1925,1925,3102,3,1,1269.327398,1269.327398,3505,NO,55.14,69.69,3,3.18,6106,113.619539,123.399957,133.11151,139.694507,I,Above,Hip,0,5701,,62.41440409,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 31904,NJBF000061776,5 N NEWPORT AVE,Ventnor City,NJ,39.3382402,-74.48348155,RES1,3001,,47,NE,1925,1925,3102,2,2,1754.19842,1754.19842,3505,NO,34.81,45.46,3,3.88,6106,113.72688,123.486457,133.207054,139.769454,I,Above,Hip,0,5701,,40.13565097,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31905,NJBF000061701,102 N TROY AVE,Ventnor City,NJ,39.33810567,-74.48677132,RES1,3001,,17,NE,1927,1927,3102,2,1,714.2452898,714.2452898,3505,NO,31.29,36.81,3,4.59,6106,113.656138,123.42932,133.146415,139.71062,I,Above,Flat,0,5701,,34.05376237,0,0,,,,1,1,,0.03,nav,1,1927,2,, 31906,NJBF000061931,103-105 N AVOLYN AVE,Ventnor City,NJ,39.338504,-74.485925,RES1,3001,,NaN,NE,1960,1960,3102,2,1,1307.745733,1307.745733,3505,NO,35.67,41.73,3,1.35,6106,113.669398,123.439974,133.157995,139.720058,I,Above,Hip,0,5701,,38.703575,0,0,,,,1,1,,0.03,nav,1,1960,2,, 31907,NJBF000065723,515 N DERBY AVE,Ventnor City,NJ,39.34792768,-74.48398167,RES1,3001,,17,NE,1963,1963,3101,1,1,1589.211373,1589.211373,3505,NO,24.16,29.8,3,5.73,6106,113.587278,123.370664,133.090728,139.601423,I,Above,Hip,0,5701,,26.97976484,0,0,,,,1,1,,0.03,nav,1,1963,1,, 31908,NJBF000061137,219-221 N SWARTHMORE AVE,Ventnor City,NJ,39.33712331,-74.49406614,RES1,3001,,45,NE,1959,1959,3102,2,2,1528.309831,1528.309831,3505,NO,25.28,31.67,3,-0.77,6106,113.508482,123.310453,133.020257,139.58424,I,Above,Hip,0,5701,,28.47360418,0,0,,,,1,1,,0.03,nav,1,1959,2,, 31909,NJBF000064476,401 N HARVARD AVE,Ventnor City,NJ,39.34457732,-74.48479415,RES1,3001,,17,NE,1970,1970,3102,2,1,1870.970761,1870.970761,3505,NO,39.63,50.07,3,8.42,6106,113.613102,123.392989,133.112415,139.64157,I,Above,Gable,0,5701,,44.84959496,0,0,,,,1,1,,0.03,nav,1,1970,2,, 31910,NJBF000060486,107 N BALTIMORE AVE,Ventnor City,NJ,39.33605605,-74.49197173,RES1,3001,,17,NE,1930,1930,3102,2,1,994.3444692,994.3444692,3505,NO,40.09,53.57,3,8.69,6106,113.569437,123.359595,133.071244,139.642104,I,Above,Gable,0,5701,,46.83053116,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, 31911,NJBF000064548,333 N BURGHLEY AVE,Ventnor City,NJ,39.34476093,-74.48233223,RES1,3001,,17,NE,1958,1958,3102,1,1,1404.609246,1404.609246,3505,NO,15.86,21.73,3,-2.09,6106,113.665114,123.434952,133.157106,139.683008,I,Above,Gable,0,5701,,18.79737226,0,0,,,,1,1,,0.03,nav,1,1958,1,, 31912,NJBF000067150,713 N VICTORIA AVE,Ventnor City,NJ,39.3523345,-74.48141,RES3A,3001,,27,NE,1980,1980,3301,2,1,886.2899275,886.2899275,3505,NO,22.2,29.57,3,1.1,6106,113.587836,123.368509,133.090835,139.5756,I,Above,Gable,0,5701,,25.88315696,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31913,NJBF000065069,414 N BURGHLEY AVE,Ventnor City,NJ,39.34605483,-74.48385469,RES1,3001,,17,NE,1962,1962,3102,2,1,1496.867664,1496.867664,3505,NO,31.48,37.71,3,7.12,6106,113.614467,123.393501,133.113882,139.634398,I,Above,Gable,0,5701,,34.59301531,0,0,,,,1,1,,0.03,nav,1,1962,2,, 31914,NJBF000059917,7003 VENTNOR AVE,Ventnor City,NJ,39.33507512,-74.48912861,RES1,3001,,17,NE,1940,1940,3102,2,1,1607.422179,1607.422179,3505,NO,36.44,47.99,3,6.85,6106,113.645713,123.42111,133.135376,139.713316,I,Above,Hip,0,5701,,42.21637,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31915,NJBF000064161,223 N DERBY AVE,Ventnor City,NJ,39.34374327,-74.48058552,RES1,3001,,47,NE,1940,1940,3102,2,2,1631.379906,1631.379906,3505,NO,23.48,29.18,3,1.11,6106,113.7171,123.477365,133.201519,139.730695,I,Above,Hip,0,5701,,26.33199095,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31916,NJBF000058904,7306 VENTNOR AVE,Ventnor City,NJ,39.33315097,-74.49214189,RES1,3001,,NaN,NE,1920,1930,3102,2,3,1339.784257,1339.784257,3505,NO,26.97,40.76,3,-1.28,6106,113.606056,123.389087,133.100052,139.682203,I,Above,Flat,0,5701,,33.8619799,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31917,NJBF000058901,7308 VENTNOR AVE,Ventnor City,NJ,39.333148,-74.4922145,RES1,3001,738,NaN,NE,1920,1920,3102,2,2,741.4869193,741.4869193,3505,NO,37.78,43.7,3,5.2,6106,113.604489,123.387824,133.09872,139.680775,I,Above,Flat,0,5701,,40.74061477,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31918,NJBF000058889,7310 VENTNOR AVE,Ventnor City,NJ,39.3331255,-74.4922605,RES1,3001,,NaN,NE,1920,1920,3102,2,2,691.9349567,691.9349567,3505,NO,42.57,53.6,3,6.88,6106,113.603783,123.387254,133.098101,139.680169,I,Above,Flat,0,5701,,48.08587283,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31919,NJBF000060625,109 S PORTLAND AVE,Ventnor City,NJ,39.33629235,-74.48046085,RES1,3001,,19,NE,2015,2014,3102,3,1,1730.850203,1730.850203,3505,NO,47.26,54.1,3,3.19,6106,113.819968,123.561953,133.285574,139.85543,I,Above,Hip,0,5701,,50.68258567,0,0,,,,1,1,,0.03,nav,1,2015,3,, 31920,NJBF000060960,122 N MELBOURNE AVE,Ventnor City,NJ,39.3368206,-74.49220101,RES1,3001,,17,NE,1940,1940,3102,2,1,1400.079037,1400.079037,3505,NO,44.19,57.39,3,8.1,6106,113.553837,123.346981,133.058512,139.62582,I,Above,Gable,0,5701,,50.78807448,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31921,NJBF000066131,514 N SOMERSET AVE,Ventnor City,NJ,39.34900267,-74.48173674,RES1,3001,,17,NE,1963,1963,3102,1,1,1422.234605,1422.234605,3507,NO,13.57,20.44,1,-0.59,6106,113.62308,123.399044,133.121538,139.624153,I,Above,Hip,0,5701,,17.00387177,0,0,,,,1,1,,0.03,nav,1,1963,1,, 31922,NJBF000062603,5700 ATLANTIC AVE,Ventnor City,NJ,39.33979378,-74.47455397,RES1,3001,,17,NE,1918,1918,3102,2,1,1932.552762,1932.552762,3505,NO,31.54,39.06,3,3.72,6106,113.902582,123.628722,133.35972,139.897667,I,Above,Hip,0,5701,,35.3021485,0,1.2,,,,1,1,,0.03,nav,1,1918,2,, 31923,NJBF000063096,CANTERBURY COURT,Ventnor City,NJ,39.34088485,-74.49363204,RES1,3001,,NaN,NE,1969,0,3102,2,1,1699.836254,1699.836254,3505,NO,36.78,49.44,3,2.39,6106,113.466762,123.276269,132.986704,139.534277,I,Above,Gable,0,5701,,43.11222461,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31924,NJBF000063076,CANTERBURY COURT,Ventnor City,NJ,39.34084676,-74.49313376,RES1,3001,,NaN,NE,1969,0,3102,2,1,2584.005084,2584.005084,3505,NO,29.29,40.14,3,5.69,6106,113.478301,123.285554,132.996465,139.54458,I,Above,Gable,0,5701,,34.71446632,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31925,NJBF000063264,CANTERBURY COURT,Ventnor City,NJ,39.341265,-74.4935495,RES1,3001,,NaN,NE,1969,0,3102,2,1,2238.722798,2238.722798,3505,NO,31.15,43.24,3,0.63,6106,113.463447,123.273507,132.984023,139.529874,I,Above,Flat,0,5701,,37.19621066,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31926,NJBF000063268,425 BERKSHIRE DRIVE,Ventnor City,NJ,39.34128222,-74.49397196,RES1,3001,,35,NE,1982,1982,3102,2,1,3209.613528,3209.613528,3505,NO,29.75,36.48,3,8.67,6106,113.453872,123.265808,132.975922,139.521382,I,Above,Gable,0,5701,,33.11527125,0,0,,,,1,1,,0.03,nav,1,1982,2,, 31927,NJBF000062918,324 HAMPSHIRE DRIVE,Ventnor City,NJ,39.34049348,-74.49325885,RES1,3001,,35,NE,1974,1974,3102,2,1,3477.099139,3477.099139,3505,NO,31.21,45.53,3,-2.86,6106,113.480322,123.287262,132.998047,139.547734,I,Above,Gable,0,5701,,38.3727988,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31928,NJBF000059825,3 N MELBOURNE AVE,Ventnor City,NJ,39.33490747,-74.49018695,RES1,3001,,17,NE,1930,1930,3102,2,1,1108.243879,1108.243879,3505,NO,32.4,40.9,3,-2.96,6106,113.624709,123.404171,133.117364,139.695033,I,Above,Hip,0,5701,,36.6495426,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31929,NJBF000059834,3 N MELBOURNE AVE,Ventnor City,NJ,39.334938,-74.489995,RES1,3001,,17,NE,1930,1930,3102,2,1,509.897528,509.897528,3505,NO,33.49,43.17,3,-0.35,6106,113.628514,123.407239,133.120625,139.698356,I,Above,Hip,0,5701,,38.33073691,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 31930,NJBF000062084,308 N LAFAYETTE AVE,Ventnor City,NJ,39.33877531,-74.49359374,RES1,3001,,17,NE,1974,1974,3102,2,1,1514.682599,1514.682599,3505,NO,41.22,47.74,3,5.87,6106,113.496267,123.300419,133.010809,139.568089,I,Above,Flat,0,5701,,44.47762508,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31931,NJBF000062056,24 N NEWPORT AVE,Ventnor City,NJ,39.33871986,-74.48435118,COM1,3001,,17,ME,1922,1922,3401,2,1,1459.834469,1459.834469,3507,NO,33.44,40.08,1,-0.79,6106,113.701201,123.465637,133.185351,139.745692,I,Above,Hip,0,NaN,,36.76150024,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 31932,NJBF000064153,100 S BATON ROUGE AVE,Ventnor City,NJ,39.34372259,-74.4664944,RES3B,3001,,18,E,1905,1905,3303,3,2,2316.470317,2316.470317,3504,NO,31.72,40.11,-4,0,6106,114.027597,123.730007,133.471572,139.965486,I,Above,Hip,0,NaN,,35.91403064,0,1.1,,,,1,1,,0.03,nav,1,1905,3,, 31933,NJBF000062113,21 N NEWPORT AVE,Ventnor City,NJ,39.33881505,-74.48399196,RES1,3001,,17,NE,1940,1940,3102,2,1,990.7466012,990.7466012,3505,NO,31.25,40.67,3,8.66,6106,113.707834,123.470985,133.191096,139.750711,I,Above,Gable,0,5701,,35.96294506,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31934,NJBF000065761,417 N SOMERSET AVE,Ventnor City,NJ,39.34802194,-74.48042839,RES1,3001,,17,NE,1970,1970,3102,1,1,2786.178472,2786.178472,3505,NO,15.76,26.78,3,1.32,6106,113.664679,123.433214,133.157343,139.663423,I,Above,Hip,0,5701,,21.26861593,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 31935,NJBF000063577,104 S FRANKFORT AVE,Ventnor City,NJ,39.34209599,-74.46956767,RES1,3001,,NaN,NE,1930,1930,3102,2,1,1207.974512,1207.974512,3505,NO,29.05,41.01,3,-0.83,6106,113.981539,123.692685,133.430119,139.941819,I,Above,Gable,0,5701,,35.02873353,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31936,NJBF000064619,213 N SOMERSET AVE,Ventnor City,NJ,39.34492443,-74.47786008,RES1,3001,,17,NE,1929,1929,3102,1,1,1999.508467,1999.508467,3505,NO,23.37,32.91,3,5.55,6106,113.761727,123.513146,133.240473,139.75886,I,Above,Gable,0,5701,,28.13611678,0,0,,,,1,1,,0.03,nav,1,1929,1,, 31937,NJBF000061408,1 N NEW HAVEN AVE,Ventnor City,NJ,39.33758658,-74.4844352,COM1,3001,,45,ME,1940,1940,3401,2,2,2063.877329,2063.877329,3507,NO,29.42,38.87,1,-0.49,6106,113.714744,123.476715,133.196205,139.762702,I,Above,Hip,0,NaN,,34.14240542,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31938,NJBF000061207,15 N RICHARDS AVE,Ventnor City,NJ,39.3372353,-74.48634276,RES1,3001,,20,NE,1920,1920,3102,2,1,1487.107615,1487.107615,3505,NO,36.38,46.53,3,6.81,6106,113.677463,123.446628,133.164062,139.732788,I,Above,Hip,0,5701,,41.45572064,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31939,NJBF000061151,11 N RICHARDS AVE,Ventnor City,NJ,39.33714383,-74.48627402,RES1,3001,,16,NE,1930,1930,3102,1,1,1579.357824,1579.357824,3505,NO,21.27,36.15,3,5.53,6106,113.680229,123.448869,133.166362,139.735563,I,Above,Hip,0,5701,,28.71215018,0,0,,,,1,1,,0.03,nav,1,1930,1,, 31940,NJBF000062334,120 N NEW HAVEN AVE,Ventnor City,NJ,39.339242,-74.486227,RES1,3001,,17,NE,1942,1942,3102,2,1,1269.840014,1269.840014,3505,NO,31.67,43.47,3,8.39,6106,113.652722,123.4264,133.144174,139.702404,I,Above,Hip,0,5701,,37.57103322,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 31941,NJBF000065865,604 N DERBY AVE,Ventnor City,NJ,39.34830002,-74.48476732,RES1,3001,,17,NE,1990,1990,3101,1,1,1605.113173,1605.113173,3505,NO,23.7,29.6,3,4.89,6106,113.565083,123.352548,133.07169,139.581098,I,Above,Flat,0,5701,,26.6493245,0,1.1,,,,1,1,,0.03,nav,1,1990,1,, 31942,NJBF000064573,35 N WEYMOUTH AVE,Ventnor City,NJ,39.34482751,-74.47179688,RES1,3001,,29,NE,1920,1920,3102,2,1,1765.606982,1765.606982,3507,NO,39.98,50.22,1,1.31,6106,113.896582,123.622802,133.35756,139.862503,I,Above,Flat,0,5701,,45.10108349,0,0,,,,1,1,,0.03,nav,1,1920,2,, 31943,NJBF000066562,516 N VICTORIA AVE,Ventnor City,NJ,39.35008149,-74.47997622,RES3A,3001,,45,NE,1986,1986,3301,2,2,2558.681826,2558.681826,3505,NO,28.16,41.8,3,-0.45,6106,113.648201,123.418785,133.1432,139.637787,I,Above,Flat,0,5701,,34.98158407,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, 31944,NJBF000063269,122 N CAMBRIDGE AVE,Ventnor City,NJ,39.3412847,-74.48202724,RES1,3001,,17,NE,1920,1920,3102,2,1,1393.909405,1393.909405,3505,NO,35.49,45.04,3,-2.51,6106,113.717954,123.478718,133.201177,139.745549,I,Above,Hip,0,5701,,40.26470847,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31945,NJBF000063244,15 S SOMERSET AVE,Ventnor City,NJ,39.341215,-74.4738315,RES1,3001,,18,NE,1965,1965,3102,2,1,1543.680549,1543.680549,3505,NO,29.75,43.05,3,7.3,6106,113.899485,123.625994,133.35802,139.886747,I,Above,Hip,0,5701,,36.39855468,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, 31946,NJBF000062829,25 N CAMBRIDGE AVE,Ventnor City,NJ,39.34031641,-74.48075535,RES1,3001,,NaN,NE,1969,0,3102,1,1,729.6729474,729.6729474,3505,NO,18.73,28.18,3,3.64,6106,113.758998,123.512139,133.235958,139.784009,I,Above,Hip,0,5701,,23.45408519,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 31947,NJBF000066462,611 N DUDLEY AVE,Ventnor City,NJ,39.34981089,-74.48359422,RES1,3001,,17,NE,1974,1974,3102,2,1,1668.256751,1668.256751,3507,NO,28.34,33.75,1,1.26,6106,113.571601,123.356972,133.077218,139.577627,I,Above,Gable,0,5701,,31.04691993,0,0,,,,1,1,,0.03,nav,1,1974,2,, 31948,NJBF000065830,607 N CORNWALL AVE,Ventnor City,NJ,39.34820101,-74.48592575,RES1,3001,,17,NE,1964,1964,3101,2,1,1808.623839,1808.623839,3505,NO,40.77,49.02,3,2.89,6106,113.540692,123.332918,133.050791,139.561568,I,Above,Hip,0,5701,,44.89387894,0,0,,,,1,1,,0.03,nav,1,1964,2,, 31949,NJBF000063301,134 N HARVARD AVE,Ventnor City,NJ,39.34136295,-74.48284298,RES1,3001,,17,NE,1925,1925,3102,1,1,1567.205251,1567.205251,3505,NO,24.11,29.13,3,6.18,6106,113.698898,123.463287,133.184844,139.729658,I,Above,Flat,0,5701,,26.62052785,0,0,,,,1,1,,0.03,nav,1,1925,1,, 31950,NJBF000063866,5107 ATLANTIC AVE,Ventnor City,NJ,39.34292244,-74.4692134,RES1,3001,,17,NE,1930,1930,3102,3,1,1126.641959,1126.641959,3505,NO,50.84,63.11,3,1.82,6110,113.978428,123.689998,133.427956,139.934589,I,Above,Gable,0,5701,,56.97579857,0,1.2,,,,1,1,,0.35,nav,1,1930,3,, 31951,NJBF000065308,310 N SURREY AVE,Ventnor City,NJ,39.3466962,-74.47824837,RES1,3001,,17,NE,2016,2016,3102,2,1,591.9010259,591.9010259,3505,NO,26.29,36.08,3,3.37,6106,113.730028,123.486767,133.213572,139.723254,I,Above,Hip,0,5701,,31.18648922,0,0,,,,1,1,,0.03,nav,1,2016,2,, 31952,NJBF000063097,,Ventnor City,NJ,39.34088947,-74.47713663,RES1,3001,,NaN,NE,1969,0,3102,2,1,2123.480858,2123.480858,3505,NO,19.95,28.87,3,-1.21,6106,113.83107,123.570464,133.298499,139.836976,I,Above,Flat,0,5701,,24.41122074,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31953,NJBF000065495,510 N BURGHLEY AVE,Ventnor City,NJ,39.34724986,-74.48478843,RES1,3001,,16,NE,1972,1972,3101,2,1,1241.207938,1241.207938,3505,NO,33.63,45.97,3,1.26,6106,113.578234,123.363697,133.082937,139.5979,I,Above,Hip,0,5701,,39.79985776,0,0,,,,1,1,,0.03,nav,1,1972,2,, 31954,NJBF000065799,506 N OXFORD AVE,Ventnor City,NJ,39.34813778,-74.4819245,RES1,3001,,17,NE,1965,1965,3102,2,1,1433.636469,1433.636469,3507,NO,24.93,34.23,1,1.16,6106,113.630077,123.405153,133.127533,139.634947,I,Above,Hip,0,5701,,29.58181343,0,0,,,,1,1,,0.03,nav,1,1965,2,, 31955,NJBF000062327,105 N BRYANT AVE,Ventnor City,NJ,39.33923227,-74.48504989,RES1,3001,,17,NE,1925,1925,3102,2,1,1262.728731,1262.728731,3505,NO,20.06,32.08,3,-1.79,6106,113.678842,123.447495,133.166512,139.724436,I,Above,Flat,0,5701,,26.07071704,0,0,,,,1,1,,0.03,nav,1,1925,2,, 31956,NJBF000064713,8 S VASSAR SQUARE,Ventnor City,NJ,39.34514204,-74.46689351,RES3B,3001,,18,ME,1950,1950,3301,2,1,1338.677912,1338.677912,3504,NO,21.58,28.58,-4,0,6106,114.000257,123.707331,133.448445,139.937129,I,Above,Gable,0,NaN,,25.07952518,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 31957,NJBF000059942,2 S ROSBOROUGH AVE,Ventnor City,NJ,39.33512657,-74.48819292,RES1,3001,,17,NE,1928,1928,3102,2,1,1387.852337,1387.852337,3505,NO,23.08,36.04,3,1.24,6106,113.66563,123.437181,133.152392,139.730837,I,Above,Hip,0,5701,,29.56072872,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 31958,NJBF000063170,5801 VENTNOR AVE,Ventnor City,NJ,39.34104413,-74.4767982,RES1,3001,,19,NE,1900,1900,3102,2,1,2152.986003,2152.986003,3505,NO,28.93,38.45,3,5.22,6106,113.836469,123.574817,133.303265,139.840179,I,Above,Hip,0,5701,,33.68926737,0,1.2,,,,1,1,,0.03,nav,1,1900,2,, 31959,NJBF000059568,24 S NEWARK AVE,Ventnor City,NJ,39.33447657,-74.48679628,RES1,3001,,17,NE,1984,1984,3102,2,1,1478.775406,1478.775406,3505,NO,31.05,44.45,3,-1.39,6110,113.705404,123.469294,133.185799,139.768216,I,Above,Gable,0,5701,,37.75105911,0,0,,,,1,1,,0.35,nav,1,1984,2,, 31960,NJBF000060047,105 N WASHINGTON AVE,Ventnor City,NJ,39.33531424,-74.49282456,RES1,3001,,17,NE,1948,1948,3102,2,1,1475.566423,1475.566423,3505,NO,22.98,36.97,3,-2,6106,113.560876,123.352727,133.063454,139.636409,I,Above,Hip,0,5701,,29.976991,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 31961,NJBF000067043,704 N VICTORIA AVE,Ventnor City,NJ,39.3518005,-74.4814305,RES3A,3001,,27,NE,1980,1980,3301,2,1,912.6565294,912.6565294,3505,NO,30.42,45.21,3,1.14,6106,113.594117,123.373947,133.096352,139.583917,I,Above,Gable,0,5701,,37.81553362,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31962,NJBF000065697,502 N OXFORD AVE,Ventnor City,NJ,39.34785025,-74.48171862,RES1,3001,,17,NE,1965,1965,3102,2,1,1422.984776,1422.984776,3507,NO,38.83,50.78,1,1.72,6106,113.638359,123.411995,133.134642,139.643333,I,Above,Gable,0,5701,,44.8047838,0,0,,,,1,1,,0.03,nav,1,1965,2,, 31963,NJBF000060533,4 S RICHARDS AVE,Ventnor City,NJ,39.33614655,-74.48590815,RES1,3001,,45,NE,1930,1930,3102,2,2,1207.409082,1207.409082,3505,NO,28.31,37.04,3,6.01,6106,113.701958,123.466484,133.184209,139.758584,I,Above,Hip,0,5701,,32.67701778,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31964,NJBF000064177,308 N CAMBRIDGE AVE,Ventnor City,NJ,39.34378798,-74.48378726,RES1,3001,,17,NE,1960,1960,3102,1,1,1587.137944,1587.137944,3505,NO,18.2,23.82,3,5.23,6106,113.645788,123.419669,133.140223,139.672802,I,Above,Hip,0,5701,,21.00671338,0,0,,,,1,1,,0.03,nav,1,1960,1,, 31965,NJBF000062391,5901 ATLANTIC AVE,Ventnor City,NJ,39.33935013,-74.4767642,RES1,3001,,18,NE,1920,1920,3102,3,1,5359.809118,5359.809118,3505,NO,55.73,64.67,3,7.09,6110,113.859909,123.594108,133.322422,139.868269,I,Above,Gable,0,5701,,60.19974775,0,1.2,,,,1,1,,0.35,nav,1,1920,3,, 31966,NJBF000061219,104 S HARVARD AVE,Ventnor City,NJ,39.33725296,-74.47953071,RES1,3001,,17,NE,1925,1925,3102,2,1,1329.510214,1329.510214,3505,NO,31.93,40.5,3,1.62,6106,113.827346,123.567886,133.292715,139.855686,I,Above,Gable,0,5701,,36.21605534,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31967,NJBF000065643,,Ventnor City,NJ,39.34768944,-74.4877831,RES1,3001,,NaN,NE,1969,0,3102,2,1,1993.556564,1993.556564,3505,NO,36.64,47.34,3,0.41,6106,113.506182,123.305366,133.021295,139.535719,I,Above,Hip,0,5701,,41.98590929,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31968,NJBF000065586,,Ventnor City,NJ,39.34753356,-74.48766633,RES1,3001,,NaN,NE,1969,0,3102,2,1,1956.187744,1956.187744,3505,NO,29.07,40.53,3,6.29,6106,113.51079,123.309159,133.025233,139.540416,I,Above,Hip,0,5701,,34.80089186,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31969,NJBF000060513,11 N ROSBOROUGH AVE,Ventnor City,NJ,39.3361155,-74.4884485,RES1,3001,,17,NE,1935,1935,3102,2,1,1254.959612,1254.959612,3505,NO,41.27,50.9,3,3.48,6106,113.646364,123.421603,133.136721,139.710339,I,Above,Hip,0,5701,,46.08489177,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 31970,NJBF000064734,15 N OAKLAND AVE,Ventnor City,NJ,39.34518803,-74.46940858,RES1,3001,,17,NE,1900,1900,3102,2,1,1129.655953,1129.655953,3507,NO,37.05,43.94,1,1.64,6106,113.944402,123.661692,133.399513,139.895848,I,Above,Gable,0,5701,,40.49636564,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 31971,NJBF000064686,11 N OAKLAND AVE,Ventnor City,NJ,39.3450823,-74.46933865,RES1,3001,,17,NE,1920,1920,3102,2,1,1451.775281,1451.775281,3507,NO,27.93,37.02,1,0.12,6106,113.947324,123.664106,133.402015,139.898654,I,Above,Hip,0,5701,,32.47644051,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31972,NJBF000065661,422 N SOMERSET AVE,Ventnor City,NJ,39.34775131,-74.48072506,RES1,3001,,17,NE,1964,1964,3102,1,1,2015.079489,2015.079489,3505,NO,24.06,38.22,3,8.06,6106,113.661619,123.430867,133.154675,139.662603,I,Above,Hip,0,5701,,31.13864011,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, 31973,NJBF000060619,227 N FREDERICKSBURG,Ventnor City,NJ,39.33628762,-74.49519965,RES1,3001,,17,NE,1915,1915,3102,2,1,982.6992849,982.6992849,3505,NO,33.7,42.54,3,5.58,6106,113.494952,123.299635,133.008296,139.574285,I,Above,Gable,0,5701,,38.1168896,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 31974,NJBF000062833,101 N SACRAMENTO AVE,Ventnor City,NJ,39.34032803,-74.48228879,RES1,3001,,17,NE,1940,1940,3102,2,1,1266.061407,1266.061407,3505,NO,25.41,37.72,3,0.43,6106,113.724999,123.484617,133.206723,139.756615,I,Above,Hip,0,5701,,31.56675095,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 31975,NJBF000060663,17 N ROSBOROUGH AVE,Ventnor City,NJ,39.336367,-74.488675,RES1,3001,,17,NE,1940,1940,3102,1,1,1737.951092,1737.951092,3505,NO,12.7,24.33,3,1.8,6106,113.637913,123.414771,133.1297,139.701979,I,Above,Flat,0,5701,,18.51617603,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 31976,NJBF000063233,409-411 BERKSHIRE DR,Ventnor City,NJ,39.34118914,-74.4947164,RES1,3001,,45,NE,1968,1968,3102,2,2,1611.654201,1611.654201,3505,NO,32.09,40.76,3,3.73,6106,113.438649,123.253602,132.963014,139.50831,I,Above,Gable,0,5701,,36.42470237,0,0,,,,1,1,,0.03,nav,1,1968,2,, 31977,NJBF000060612,18 N ROSBOROUGH AVE,Ventnor City,NJ,39.33627584,-74.48912785,RES1,3001,,45,NE,1920,1920,3102,2,2,1885.465849,1885.465849,3505,NO,37.49,43.81,3,6.8,6106,113.629169,123.407724,133.122186,139.694604,I,Above,Hip,0,5701,,40.65031689,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31978,NJBF000065098,23 N MARION AVE,Ventnor City,NJ,39.34614127,-74.46873267,RES3A,3001,,28,NE,1926,1926,3301,2,1,2772.442893,2772.442893,3505,NO,34.43,43.08,3,-0.3,6106,113.946856,123.663415,133.402132,139.89183,I,Above,Flat,0,5701,,38.75365496,0,0,,,,1,1,,0.03,nav,1,1926,2,, 31979,NJBF000065031,12 N VASSAR SQUARE,Ventnor City,NJ,39.34595261,-74.46753703,RES3A,3001,,17,NE,1930,1930,3301,2,1,1555.366734,1555.366734,3505,NO,33.57,45.64,3,7.23,6106,113.975579,123.686937,133.427224,139.914149,I,Above,Hip,0,5701,,39.604699,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31980,NJBF000064540,11 N HILLSIDE AVE,Ventnor City,NJ,39.34474035,-74.47069054,RES1,3001,,17,NE,1918,1918,3102,2,1,1537.991181,1537.991181,3507,NO,32.49,39.42,1,1.69,6106,113.922065,123.643595,133.379756,139.882041,I,Above,Hip,0,5701,,35.95469605,0,1.1,,,,1,1,,0.03,nav,1,1918,2,, 31981,NJBF000063210,108 1/2 N CORNWALL AVE,Ventnor City,NJ,39.341125,-74.481222,RES1,3001,,16,NE,1930,1930,3102,2,1,612.2408872,612.2408872,3505,NO,37.83,43.35,3,7.67,6106,113.737857,123.494862,133.218213,139.762472,I,Above,Hip,0,5701,,40.59155515,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31982,NJBF000063779,129 N DERBY AVE,Ventnor City,NJ,39.34268099,-74.47975517,RES1,3001,,16,NE,1940,1940,3102,2,1,2239.607931,2239.607931,3505,NO,35.1,40.42,3,5.36,6106,113.749498,123.503914,133.229006,139.762679,I,Above,Gable,0,5701,,37.75961164,0,0,,,,1,1,,0.03,nav,1,1940,2,, 31983,NJBF000063747,127 N DERBY AVE,Ventnor City,NJ,39.34259084,-74.47966587,RES1,3001,,17,NE,1970,1970,3102,1,1,846.1414905,846.1414905,3505,NO,18.02,26.96,3,6.34,6106,113.752656,123.506496,133.231688,139.765706,I,Above,Hip,0,5701,,22.49242446,0,0,,,,1,1,,0.03,nav,1,1970,1,, 31984,NJBF000059525,29 N MARTINDALE AVE,Ventnor City,NJ,39.33440956,-74.49284465,RES1,3001,,17,NE,1925,1925,3102,2,1,1082.745309,1082.745309,3505,NO,27.82,33.36,3,5.74,6106,113.572992,123.36249,133.073044,139.649535,I,Above,Gable,0,5701,,30.59410913,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 31985,NJBF000067194,714 N LITTLE ROCK AVE,Ventnor City,NJ,39.35251266,-74.48126662,RES3A,3001,,27,NE,1980,1980,3301,2,1,935.671239,935.671239,3505,YES,24.48,36.97,3,1.8,6106,113.588741,123.369119,133.091578,139.575231,I,Above,Flat,0,5701,,30.72642683,0,0,,,,1,1,,0.03,nav,1,1980,2,, 31986,NJBF000061927,117 N RICHARDS AVE,Ventnor City,NJ,39.33849428,-74.48735584,RES1,3001,,17,NE,1929,1929,3102,2,1,1046.072661,1046.072661,3505,NO,40.25,53.52,3,4.9,6106,113.637944,123.414586,133.131117,139.693284,I,Above,Gable,0,5701,,46.88715342,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 31987,NJBF000064913,25 N OAKLAND AVE,Ventnor City,NJ,39.34565049,-74.46979963,RES1,3001,,17,NE,1920,1920,3102,2,1,1233.002666,1233.002666,3507,NO,34.78,42.08,1,-0.27,6106,113.929783,123.649629,133.386953,139.882192,I,Above,Hip,0,5701,,38.43144558,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 31988,NJBF000060561,4 N WISSAHICKON AVE,Ventnor City,NJ,39.33618913,-74.4874227,RES1,3001,,20,NE,1920,1920,3102,2,1,1442.07015,1442.07015,3505,NO,33.52,44.66,3,6.96,6106,113.667976,123.43904,133.15521,139.728989,I,Above,Hip,0,5701,,39.09060583,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 31989,NJBF000063321,5405 ATLANTIC AVE,Ventnor City,NJ,39.34140258,-74.47242792,RES1,3001,,18,NE,1927,1927,3102,2,1,3012.116676,3012.116676,3505,NO,45.26,54.51,3,7.23,6110,113.927868,123.64906,133.38283,139.90667,I,Above,Hip,0,5701,,49.88219498,0,1.2,,,,1,1,,0.35,nav,1,1927,2,, 31990,NJBF000065779,517 N DERBY AVE,Ventnor City,NJ,39.34807768,-74.48407405,RES1,3001,,17,NE,1963,1963,3101,1,1,1432.814558,1432.814558,3505,NO,18.69,25.93,3,1.63,6106,113.583299,123.367373,133.087317,139.597303,I,Above,Gable,0,5701,,22.30999243,0,0,,,,1,1,,0.03,nav,1,1963,1,, 31991,NJBF000065171,5801 BALFOUR AVE,Ventnor City,NJ,39.34630259,-74.48133806,RES1,3001,,17,NE,1970,1970,3102,2,1,2620.158097,2620.158097,3505,NO,31.62,42.96,3,2.44,6106,113.666886,123.435779,133.158992,139.675437,I,Above,Gable,0,5701,,37.28981445,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, 31992,NJBF000062663,,Ventnor City,NJ,39.3399421,-74.48631511,RES1,3001,,NaN,NE,1969,0,3102,2,1,2290.370759,2290.370759,3505,NO,33.26,39.85,3,4.51,6106,113.641316,123.417068,133.134802,139.689363,I,Above,Flat,0,5701,,36.55635847,0,0,,,,1,1,,0.03,nav,1,1969,2,, 31993,NJBF000066159,502 N VICTORIA AVE,Ventnor City,NJ,39.34908103,-74.47920147,RES3A,3001,,NaN,NE,1976,1976,3301,2,1,2848.076754,2848.076754,3505,NO,32.78,40.02,3,-1.34,6106,113.67815,123.443596,133.169061,139.667732,I,Above,Hip,0,5701,,36.39822755,0,0,,,,1,1,,0.03,nav,1,1976,2,, 31994,NJBF000065727,506 N DUDLEY AVE,Ventnor City,NJ,39.34793242,-74.48259822,RES1,3001,,17,NE,1989,1989,3102,2,1,1878.348766,1878.348766,3507,NO,27.77,40.22,1,1.3,6106,113.617854,123.395371,133.117002,139.626282,I,Above,Hip,0,5701,,33.99496462,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, 31995,NJBF000064467,8 S MARION AVE,Ventnor City,NJ,39.34456421,-74.46807988,RES1,3001,,17,NE,1902,1902,3102,3,1,1800.584219,1800.584219,3504,NO,55.26,64.02,-4,0,6106,113.981758,123.692356,133.431885,139.92711,I,Above,Gable,0,5701,,59.63917302,0,0,,,,1,1,,0.03,nav,1,1902,3,, 31996,NJBF000065023,7 N BATON ROUGE AVE,Ventnor City,NJ,39.34592888,-74.46782056,RES3A,3001,,17,NE,1930,1930,3301,2,1,1002.290745,1002.290745,3505,NO,35.26,48.69,3,8.84,6106,113.969652,123.6821,133.422012,139.909938,I,Above,Gable,0,5701,,41.97918138,0,0,,,,1,1,,0.03,nav,1,1930,2,, 31997,NJBF000066502,,Ventnor City,NJ,39.34991143,-74.48021816,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1823.458721,1823.458721,3505,NO,14.67,24.33,3,2.78,6106,113.645025,123.416309,133.14046,139.636286,I,Above,Flat,0,5701,,19.50174926,0,0,,,,1,1,,0.03,nav,1,1969,1,, 31998,NJBF000066403,,Ventnor City,NJ,39.34967973,-74.48002792,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2043.409494,2043.409494,3505,NO,16.8,22.24,3,2.15,6106,113.652184,123.422236,133.146644,139.643411,I,Above,Gable,0,5701,,19.51718441,0,0,,,,1,1,,0.03,nav,1,1969,1,, 31999,NJBF000062303,6408 WINCHESTER AVE,Ventnor City,NJ,39.339183,-74.483514,RES1,3001,,17,NE,1925,1925,3102,2,1,1365.422401,1365.422401,3505,NO,38.69,47.32,3,1.82,6106,113.7134,123.475432,133.196097,139.753376,I,Above,Flat,0,5701,,43.00695674,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32000,NJBF000059470,114 S TROY AVE,Ventnor City,NJ,39.33430945,-74.48374905,RES1,3001,,17,NE,1900,1900,3102,3,1,3268.695249,3268.695249,3505,NO,63.65,71.65,3,5.85,6106,113.774826,123.52541,133.24506,139.828959,I,Above,Hip,0,5701,,67.64809275,0,0,,,,1,1,,0.03,nav,1,1900,3,, 32001,NJBF000064310,16 S MARION AVE,Ventnor City,NJ,39.34418051,-74.46780183,RES1,3001,,17,NE,1950,1950,3102,1,1,1909.608818,1909.608818,3504,NO,12.4,17.49,-4,0,6106,113.992877,123.70153,133.441403,139.937543,I,Above,Hip,0,5701,,14.94478804,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 32002,NJBF000060364,17 N LAFAYETTE AVE,Ventnor City,NJ,39.33584789,-74.49002106,RES1,3001,,17,NE,1940,1940,3102,2,1,1335.76526,1335.76526,3505,NO,38.48,53.41,3,8.84,6106,113.615363,123.396612,133.110125,139.683811,I,Above,Gable,0,5701,,45.94618928,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32003,NJBF000063506,207 N HARVARD AVE,Ventnor City,NJ,39.34189395,-74.48281545,RES1,3001,,16,NE,2016,1954,3102,2,1,2592.251609,2592.251609,3505,NO,27.7,35.28,3,-0.88,6106,113.692423,123.457922,133.179532,139.721433,I,Above,Flat,0,5701,,31.48938198,0,0,,,,1,1,,0.03,nav,1,2016,2,, 32004,NJBF000063105,409-411 N LAFAYETTE AVE,Ventnor City,NJ,39.3409016,-74.49488499,RES1,3001,,45,NE,1970,1970,3102,2,2,1992.677264,1992.677264,3505,NO,33.19,46.31,3,6.13,6106,113.438786,123.253785,132.963038,139.509504,I,Above,Gable,0,5701,,39.74844583,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32005,NJBF000066890,813 N CORNWALL AVE,Ventnor City,NJ,39.35117555,-74.48830211,RES1,3001,,17,NE,1976,1976,3101,1,1,2016.532073,2016.532073,3505,NO,10.91,24.03,3,-0.73,6106,113.449782,123.257852,132.972614,139.469237,I,Above,Flat,0,5701,,17.46929154,0,0,,,,1,1,,0.03,nav,1,1976,1,, 32006,NJBF000064986,322 N OXFORD AVE,Ventnor City,NJ,39.34584361,-74.48008309,RES1,3001,,17,NE,1990,1990,3102,1,1,1727.84285,1727.84285,3505,NO,12.57,21.74,3,-0.61,6106,113.700609,123.463268,133.187956,139.705123,I,Above,Gable,0,5701,,17.15545204,0,0,,,,1,1,,0.03,nav,1,1990,1,, 32007,NJBF000058908,3 S MARTINDALE AVE,Ventnor City,NJ,39.33316034,-74.49177525,RES1,3001,,17,NE,1928,1928,3102,2,1,1170.27225,1170.27225,3505,NO,36.46,45.99,3,4.25,6106,113.614016,123.395505,133.10682,139.689462,I,Above,Hip,0,5701,,41.22199722,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 32008,NJBF000058948,1 S MARTINDALE AVE,Ventnor City,NJ,39.33322806,-74.49184034,RES1,3001,,17,NE,1928,1928,3102,2,1,1117.382255,1117.382255,3505,NO,25.17,35.44,3,-2.95,6106,113.611634,123.393588,133.104856,139.687159,I,Above,Hip,0,5701,,30.30473172,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 32009,NJBF000062949,6419 MONMOUTH AVE,Ventnor City,NJ,39.34055915,-74.48512931,RES1,3001,,28,NE,1945,1945,3102,2,1,1613.943112,1613.943112,3505,NO,37.67,48.02,3,-0.42,6106,113.6592,123.431383,133.150413,139.701265,I,Above,Flat,0,5701,,42.84323209,0,0,,,,1,1,,0.03,nav,1,1945,2,, 32010,NJBF000062515,217 N NEWARK AVE,Ventnor City,NJ,39.33961133,-74.49102533,RES1,3001,,17,NE,1948,1948,3102,1,1,1275.490704,1275.490704,3505,NO,11.89,23.83,3,-1.73,6106,113.541699,123.33683,133.049748,139.605091,I,Above,Gable,0,5701,,17.86109727,0,0,,,,1,1,,0.03,nav,1,1948,1,, 32011,NJBF000059611,6800 ATLANTIC AVE,Ventnor City,NJ,39.33454618,-74.48539477,RES1,3001,,17,NE,1958,1958,3102,2,1,1876.137872,1876.137872,3505,NO,40.85,50.6,3,3.03,6110,113.73531,123.49346,133.211426,139.794076,I,Above,Hip,0,5701,,45.72745471,0,1.1,,,,1,1,,0.35,nav,1,1958,2,, 32012,NJBF000062653,116 N PORTLAND AVE,Ventnor City,NJ,39.33992268,-74.48385183,RES1,3001,,17,NE,1930,1930,3102,2,1,1559.048805,1559.048805,3505,NO,41.69,51.47,3,8.51,6106,113.695955,123.461206,133.181568,139.735074,I,Above,Flat,0,5701,,46.57917179,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32013,NJBF000062641,103 S OXFORD AVE,Ventnor City,NJ,39.33990487,-74.47405553,RES1,3001,,17,NE,1911,1911,3102,3,1,1518.315829,1518.315829,3505,NO,53.89,61.29,3,-1.38,6106,113.912049,123.636406,133.368019,139.90403,I,Above,Hip,0,5701,,57.58720611,0,1.2,,,,1,1,,0.03,nav,1,1911,3,, 32014,NJBF000064529,222 N OXFORD AVE,Ventnor City,NJ,39.34471637,-74.47916932,RES1,3001,,17,NE,1940,1940,3102,1,1,1723.118935,1723.118935,3505,NO,18.61,31.84,3,-0.62,6106,113.735568,123.492007,133.217795,139.739572,I,Above,Hip,0,5701,,25.22780505,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 32015,NJBF000065778,512 N DORSET AVE,Ventnor City,NJ,39.34807764,-74.48376785,RES1,3001,,17,NE,1958,1958,3101,1,1,1873.675093,1873.675093,3505,NO,16.27,25.1,3,-1.13,6106,113.590073,123.372845,133.093133,139.602837,I,Above,Gable,0,5701,,20.68437309,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 32016,NJBF000060028,16 N MELBOURNE AVE,Ventnor City,NJ,39.335271,-74.490948,RES1,3001,,17,NE,1940,1940,3102,2,1,1050.700872,1050.700872,3505,NO,31.94,39.65,3,5.52,6106,113.602885,123.386572,133.099086,139.674398,I,Above,Hip,0,5701,,35.79416522,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32017,NJBF000063359,5604 VENTNOR AVE,Ventnor City,NJ,39.34150248,-74.47484039,RES1,3001,,18,NE,1946,1946,3102,2,1,2215.137919,2215.137919,3505,NO,31.37,36.89,3,-1.42,6106,113.873482,123.604798,133.335625,139.865508,I,Above,Flat,0,5701,,34.13132159,0,1.1,,,,1,1,,0.03,nav,1,1946,2,, 32018,NJBF000066293,604 N OXFORD AVE,Ventnor City,NJ,39.34939621,-74.48292931,RES1,3001,,17,NE,1965,1965,3102,2,1,1382.166822,1382.166822,3507,NO,24.69,32.47,1,2.12,6106,113.59165,123.373412,133.09448,139.596388,I,Above,Flat,0,5701,,28.5805088,0,0,,,,1,1,,0.03,nav,1,1965,2,, 32019,NJBF000062585,118 N NEWPORT AVE,Ventnor City,NJ,39.339763,-74.485169,RES1,3001,,17,NE,1929,1929,3102,2,1,1254.780595,1254.780595,3505,NO,24.8,31.26,3,-0.12,6106,113.66904,123.439487,133.158421,139.713553,I,Above,Flat,0,5701,,28.02678033,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 32020,NJBF000061050,12 N RICHARDS AVE,Ventnor City,NJ,39.3369679,-74.48661456,RES1,3001,,17,NE,1925,1925,3102,2,1,1577.101262,1577.101262,3505,NO,37.48,50.26,3,4.05,6106,113.675115,123.444753,133.161869,139.731945,I,Above,Hip,0,5701,,43.86633415,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32021,NJBF000060845,10 N BUFFALO AVE,Ventnor City,NJ,39.33663999,-74.48706704,RES1,3001,,17,NE,1940,1940,3102,2,1,985.0670234,985.0670234,3505,NO,29.7,35.41,3,-1.13,6106,113.669637,123.440355,133.156957,139.728608,I,Above,Hip,0,5701,,32.5551345,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32022,NJBF000065977,515 N DUDLEY AVE,Ventnor City,NJ,39.34859186,-74.48262175,RES1,3001,,17,NE,1963,1963,3102,1,1,1514.170296,1514.170296,3507,NO,13.19,25.31,1,0.4,6106,113.608794,123.387709,133.109236,139.61505,I,Above,Hip,0,5701,,19.24810267,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 32023,NJBF000062985,401-403 N LAFAYETTE AVE,Ventnor City,NJ,39.34064442,-74.49462137,RES1,3001,,45,NE,1970,1970,3102,2,2,1760.36009,1760.36009,3505,NO,23.2,35.64,3,2.16,6106,113.448124,123.26135,132.970847,139.518725,I,Above,Gable,0,5701,,29.41875823,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32024,NJBF000060081,7 S NEWARK AVE,Ventnor City,NJ,39.335361,-74.486986,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1534.645817,1534.645817,3505,NO,23.97,36.63,3,0.49,6106,113.689008,123.456049,133.172528,139.750565,I,Above,Hip,0,5701,,30.29840989,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32025,NJBF000061125,108 N ROSBOROUGH AVE,Ventnor City,NJ,39.33710511,-74.4898011,RES1,3001,,17,NE,1930,1930,3102,1,1,1408.683048,1408.683048,3505,NO,17.83,24.28,3,4.47,6106,113.60293,123.386507,133.100411,139.668469,I,Above,Hip,0,5701,,21.05266047,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32026,NJBF000061098,106 N ROSBOROUGH AVE,Ventnor City,NJ,39.33704965,-74.48971259,RES1,3001,,45,NE,1929,1929,3102,2,3,1281.667561,1281.667561,3505,NO,38.83,45.11,3,5.07,6106,113.605627,123.388686,133.102671,139.671047,I,Above,Hip,0,5701,,41.96740641,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 32027,NJBF000059463,6808 ATLANTIC AVE,Ventnor City,NJ,39.33429617,-74.48591157,RES1,3001,,17,NE,1915,1915,3102,2,1,1503.086234,1503.086234,3505,NO,39.82,48.6,3,5.05,6110,113.72738,123.487046,133.204424,139.788158,I,Above,Gable,0,5701,,44.2114637,0,1.1,,,,1,1,,0.35,nav,1,1915,2,, 32028,NJBF000061056,6804 WINCHESTER AVE,Ventnor City,NJ,39.33697825,-74.48804831,RES1,3001,,17,NE,1940,1940,3102,2,1,2729.078546,2729.078546,3505,NO,23.39,31.69,3,2.35,6106,113.643362,123.419125,133.134772,139.704402,I,Above,Hip,0,5701,,27.53937945,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32029,NJBF000063542,107 S FRANKFORT AVE,Ventnor City,NJ,39.34200862,-74.46903265,RES1,3001,,17,NE,1900,1900,3102,3,1,2006.346098,2006.346098,3505,NO,64.9,72.52,3,7.97,6106,113.994441,123.703228,133.441338,139.95171,I,Above,Hip,0,5701,,68.71193593,0,1.1,,,,1,1,,0.03,nav,1,1900,3,, 32030,NJBF000062567,3 N CAMBRIDGE AVE,Ventnor City,NJ,39.33973123,-74.48033367,RES1,3001,,18,NE,1915,1915,3102,2,1,1154.356863,1154.356863,3505,NO,22.29,28.05,3,1.21,6106,113.776141,123.526123,133.250364,139.80101,I,Above,Hip,0,5701,,25.16763893,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 32031,NJBF000059270,16 S LAFAYETTE AVE,Ventnor City,NJ,39.33390266,-74.48898112,RES1,3001,,17,NE,1926,1926,3102,2,1,1619.451933,1619.451933,3505,NO,36.46,49.11,3,1.84,6106,113.665224,123.43684,133.151027,139.734235,I,Above,Gable,0,5701,,42.78124894,0,0.1,,,,1,1,,0.03,nav,1,1926,2,, 32032,NJBF000064412,312 N CORNWALL AVE,Ventnor City,NJ,39.34442835,-74.48345587,RES1,3001,,17,NE,1958,1958,3102,1,1,1493.863967,1493.863967,3505,NO,22.42,33.22,3,7.82,6106,113.644654,123.418532,133.139437,139.668283,I,Above,Gable,0,5701,,27.82142872,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32033,NJBF000062148,4 S CAMBRIDGE AVE,Ventnor City,NJ,39.33888645,-74.48011019,RES1,3001,,17,NE,1927,1927,3102,2,1,1423.418434,1423.418434,3505,NO,31.15,38.7,3,7.64,6106,113.792467,123.539468,133.263871,139.818815,I,Above,Gable,0,5701,,34.92599068,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 32034,NJBF000060675,110 S PRINCETON AVE,Ventnor City,NJ,39.33638576,-74.48028635,RES1,3001,,17,NE,1925,1925,3102,3,1,1925.743663,1925.743663,3505,NO,31.13,40.95,3,-1.75,6106,113.822537,123.564031,133.287864,139.856922,I,Above,Flat,0,5701,,36.03859735,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 32035,NJBF000066284,701 N BURGHLEY AVE,Ventnor City,NJ,39.34936194,-74.48597214,RES1,3001,,17,NE,1963,1963,3101,2,1,1807.67006,1807.67006,3505,NO,29.6,42.51,3,-2.02,6106,113.524689,123.319363,133.037015,139.541748,I,Above,Gable,0,5701,,36.05670866,0,0,,,,1,1,,0.03,nav,1,1963,2,, 32036,NJBF000060500,,Ventnor City,NJ,39.336091,-74.4949855,RES1,3001,,NaN,NE,1969,0,3102,2,1,1764.934864,1764.934864,3505,NO,26.19,34.62,3,4.41,6106,113.502427,123.305658,133.01449,139.581548,I,Above,Gable,0,5701,,30.40379435,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32037,NJBF000061831,6103 ATLANTIC AVE,Ventnor City,NJ,39.3383381,-74.47867516,RES1,3001,,18,NE,1920,1920,3102,2,1,2619.634029,2619.634029,3505,NO,23.85,36.16,3,-0.53,6110,113.831482,123.571153,133.297118,139.852528,I,Above,Hip,0,5701,,30.00655298,0,1.2,,,,1,1,,0.35,nav,1,1920,2,, 32038,NJBF000064920,22 N AUSTIN AVE,Ventnor City,NJ,39.34566793,-74.46950462,RES1,3001,,17,NE,1920,1920,3102,2,1,1088.760356,1088.760356,3507,NO,36.33,42.61,1,-0.68,6106,113.936035,123.654725,133.392431,139.886719,I,Above,Hip,0,5701,,39.4707314,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32039,NJBF000064833,5113 WINCHESTER AVE,Ventnor City,NJ,39.34544336,-74.47133772,RES1,3001,,17,NE,1920,1920,3102,3,1,917.8477173,917.8477173,3507,NO,35.89,49.42,1,-0.55,6106,113.898649,123.624304,133.359653,139.860267,I,Above,Hip,0,5701,,42.65244306,0,0,,,,1,1,,0.03,nav,1,1920,3,, 32040,NJBF000063238,120 N CAMBRIDGE AVE,Ventnor City,NJ,39.34120066,-74.48196293,RES1,3001,,17,NE,1925,1925,3102,1,1,1279.279438,1279.279438,3505,NO,22.88,33.56,3,7.8,6106,113.720489,123.480789,133.203314,139.748072,I,Above,Hip,0,5701,,28.21759603,0,0,,,,1,1,,0.03,nav,1,1925,1,, 32041,NJBF000062660,125 N NEWPORT AVE,Ventnor City,NJ,39.33993885,-74.48464622,RES1,3001,,17,NE,1960,1960,3102,2,1,2389.662124,2389.662124,3505,NO,33.64,45.73,3,1.1,6106,113.678212,123.446864,133.166372,139.720299,I,Above,Flat,0,5701,,39.68729209,0,0,,,,1,1,,0.03,nav,1,1960,2,, 32042,NJBF000061220,106 S CAMBRIDGE AVE,Ventnor City,NJ,39.33725514,-74.47909708,RES1,3001,,17,NE,1930,1930,3102,2,2,746.5965682,746.5965682,3505,NO,44.46,53.09,3,5.63,6106,113.836873,123.57561,133.30093,139.863085,I,Above,Flat,0,5701,,48.77433819,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32043,NJBF000062694,17 S DUDLEY AVE,Ventnor City,NJ,39.34003097,-74.4754211,RES1,3001,,17,NE,1958,1958,3102,2,1,2415.883601,2415.883601,3505,NO,42.22,54.72,3,3.42,6110,113.88033,123.610605,133.34059,139.879586,I,Above,Hip,0,5701,,48.46866811,0,0.1,,,,1,1,,0.35,nav,1,1958,2,, 32044,NJBF000066325,514 N SUFFOLK AVE,Ventnor City,NJ,39.34947326,-74.48121243,RES1,3001,,17,NE,1975,1975,3102,2,1,1217.588312,1217.588312,3507,NO,26.86,41.34,1,-0.25,6106,113.628654,123.403299,133.126342,139.625819,I,Above,Hip,0,5701,,34.09919027,0,0,,,,1,1,,0.03,nav,1,1975,2,, 32045,NJBF000059423,106 S BUFFALO AVE,Ventnor City,NJ,39.33421617,-74.48512614,RES1,3001,,16,NE,1935,1935,3102,2,1,1288.515521,1288.515521,3505,NO,29.71,36.41,3,5.31,6106,113.745796,123.50193,133.220108,139.804492,I,Above,Gable,0,5701,,33.06078318,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 32046,NJBF000064376,126 N SURREY AVE,Ventnor City,NJ,39.34432907,-74.47621359,RES1,3001,,17,NE,1958,1958,3102,1,1,936.1850915,936.1850915,3505,NO,14.04,25.64,3,1.22,6106,113.805837,123.549141,133.278438,139.796708,I,Above,Gable,0,5701,,19.83882893,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 32047,NJBF000060604,8 N WISSAHICKON AVE,Ventnor City,NJ,39.33626745,-74.48746424,RES1,3001,,17,NE,1940,1940,3102,1,1,1256.38898,1256.38898,3505,NO,10.12,24.55,3,-0.82,6106,113.666,123.437441,133.153581,139.726958,I,Above,Hip,0,5701,,17.33294699,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 32048,NJBF000065470,400 N SUFFOLK AVE,Ventnor City,NJ,39.34716708,-74.47939661,RES1,3001,,17,NE,1970,1970,3102,1,1,1562.80613,1562.80613,3505,NO,20.18,30.32,3,1.34,6106,113.698535,123.461035,133.186449,139.69553,I,Above,Flat,0,5701,,25.25190316,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 32049,NJBF000063040,108 N CAMBRIDGE AVE,Ventnor City,NJ,39.34077527,-74.48163404,RES1,3001,,17,NE,1929,1929,3102,1,1,1569.280982,1569.280982,3505,NO,25.56,39.99,3,7.45,6106,113.733453,123.49137,133.214237,139.76093,I,Above,Hip,0,5701,,32.7754317,0,1.1,,,,1,1,,0.03,nav,1,1929,1,, 32050,NJBF000064113,6 S HILLSIDE AVE,Ventnor City,NJ,39.34361609,-74.47025903,RES1,3001,,17,NE,1925,1925,3102,2,1,1802.203545,1802.203545,3505,NO,23.54,34.78,3,-0.75,6106,113.946305,123.663644,133.400309,139.906836,I,Above,Hip,0,5701,,29.15929846,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32051,NJBF000066858,902 N HARVARD AVE,Ventnor City,NJ,39.35104865,-74.4904813,RES1,3001,,18,NE,2002,2002,3102,2,1,2523.083025,2523.083025,3505,NO,36.24,47.44,3,6.95,6106,113.403027,123.220319,132.932785,139.430736,I,Above,Hip,0,5701,,41.84299428,0,0,,,,1,1,,0.03,nav,1,2002,2,, 32052,NJBF000062925,106 N HARVARD AVE,Ventnor City,NJ,39.34050486,-74.48212943,RES1,3001,,17,NE,1925,1925,3102,2,1,901.3726176,901.3726176,3505,NO,42.32,47.73,3,6.66,6106,113.726152,123.485516,133.207813,139.756561,I,Above,Hip,0,5701,,45.02148852,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32053,NJBF000060463,104 N MELBOURNE AVE,Ventnor City,NJ,39.33601717,-74.49153748,RES1,3001,,17,NE,1924,1924,3102,2,1,838.9557569,838.9557569,3505,NO,29.72,39.3,3,4.25,6106,113.579577,123.367765,133.079826,139.651313,I,Above,Hip,0,5701,,34.51005238,0,1.1,,,,1,1,,0.03,nav,1,1924,2,, 32054,NJBF000062349,216 N NEWARK AVE,Ventnor City,NJ,39.33926892,-74.49124389,RES1,3001,,17,NE,2017,2017,3102,2,1,1590.427745,1590.427745,3505,NO,24.49,30.23,3,0.41,6106,113.541502,123.336734,133.049417,139.60627,I,Above,Gable,0,5701,,27.35672391,0,0,,,,1,1,,0.03,nav,1,2017,2,, 32055,NJBF000063350,401-403 BERKSHIRE DR,Ventnor City,NJ,39.34147337,-74.49493244,RES1,3001,,45,NE,1972,1972,3102,2,2,1805.813696,1805.813696,3505,NO,26.63,39.11,3,-1.91,6106,113.430031,123.246604,132.955811,139.499618,I,Above,Gable,0,5701,,32.86975918,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32056,NJBF000060570,5 S RICHARDS AVE,Ventnor City,NJ,39.33620611,-74.48555966,RES1,3001,,17,NE,1948,1948,3102,2,1,1067.832475,1067.832475,3505,NO,38.78,44.53,3,2.8,6106,113.70882,123.472025,133.190123,139.764208,I,Above,Hip,0,5701,,41.65288727,0,0,,,,1,1,,0.03,nav,1,1948,2,, 32057,NJBF000060760,131 N BALTIMORE AVE,Ventnor City,NJ,39.33650395,-74.49233345,RES1,3001,,17,NE,1920,1920,3102,1,1,866.0428638,866.0428638,3505,NO,14.69,29.54,3,4.13,6106,113.555288,123.348173,133.059538,139.628087,I,Above,Gable,0,5701,,22.11812919,0,0,,,,1,1,,0.03,nav,1,1920,1,, 32058,NJBF000065172,503 N CAMBRIDGE AVE,Ventnor City,NJ,39.34630315,-74.48528784,RES1,3001,,17,NE,1960,1960,3101,1,1,1276.305072,1276.305072,3505,NO,20.17,34.07,3,1.35,6106,113.579513,123.365168,133.083947,139.604288,I,Above,Hip,0,5701,,27.11682441,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 32059,NJBF000065873,605 N BURGHLEY AVE,Ventnor City,NJ,39.34832807,-74.48518516,RES1,3001,,17,NE,1973,1973,3101,2,1,1869.382395,1869.382395,3505,NO,34.61,41.01,3,-1.52,6106,113.555463,123.344769,133.063442,139.573031,I,Above,Gable,0,5701,,37.80884221,0,1.2,,,,1,1,,0.03,nav,1,1973,2,, 32060,NJBF000065119,417 N CORNWALL AVE,Ventnor City,NJ,39.34618025,-74.48429917,RES1,3001,,17,NE,1962,1962,3102,2,1,1547.943096,1547.943096,3505,NO,29.77,44.25,3,-2.52,6106,113.603009,123.384192,133.10407,139.624307,I,Above,Hip,0,5701,,37.01324137,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 32061,NJBF000062235,122 N AVOLYN AVE,Ventnor City,NJ,39.33905995,-74.48679608,RES1,3001,,17,NE,1940,1940,3102,2,1,1109.812628,1109.812628,3505,NO,31.29,38.04,3,-2.8,6106,113.642624,123.418278,133.135442,139.694695,I,Above,Hip,0,5701,,34.66327587,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32062,NJBF000064453,5000 VENTNOR AVE,Ventnor City,NJ,39.34452059,-74.46862912,RES1,3001,,NaN,NE,1920,1920,3102,1,1,1680.227794,1680.227794,3504,NO,13.78,24.52,-4,0,6106,113.970259,123.682976,133.421786,139.918948,I,Above,Gable,0,5701,,19.15094298,0,0,,,,1,1,,0.03,nav,1,1920,1,, 32063,NJBF000064395,11 S OAKLAND AVE,Ventnor City,NJ,39.34438149,-74.46851535,RES1,3001,,NaN,NE,1920,1922,3102,3,1,2606.636482,2606.636482,3504,NO,39.91,47.59,-4,0,6106,113.974596,123.686551,133.425504,139.922975,I,Above,Flat,0,5701,,43.75173156,0,0,,,,1,1,,0.03,nav,1,1920,3,, 32064,NJBF000064103,107 N SOMERSET AVE,Ventnor City,NJ,39.34357958,-74.47684874,RES1,3001,,17,NE,1945,1945,3102,1,1,1339.126916,1339.126916,3505,NO,22.01,30.5,3,3.29,6106,113.801698,123.546,133.274523,139.798076,I,Above,Hip,0,5701,,26.25204384,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 32065,NJBF000059216,6 N MARTINDALE AVE,Ventnor City,NJ,39.33378493,-74.49277411,RES1,3001,,17,NE,1926,1926,3102,2,1,928.605807,928.605807,3505,NO,32.74,43.89,3,6.66,6106,113.583269,123.370754,133.081256,139.660197,I,Above,Gable,0,5701,,38.31412288,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 32066,NJBF000062415,230 N WYOMING AVE,Ventnor City,NJ,39.33940004,-74.49318286,RES1,3001,,17,NE,1940,1940,3102,1,1,2678.504536,2678.504536,3505,NO,21.92,35.07,3,5.78,6106,113.496838,123.300771,133.011587,139.5664,I,Above,Gable,0,5701,,28.49304496,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 32067,NJBF000064263,109 N SURREY AVE,Ventnor City,NJ,39.34404261,-74.47542564,RES1,3001,,15,NE,1940,1940,3102,2,1,2261.093902,2261.093902,3507,NO,27.82,39.86,1,0.39,6106,113.826965,123.566388,133.296634,139.814676,I,Above,Hip,0,5701,,33.8387133,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32068,NJBF000064910,4811 VENTNOR AVE,Ventnor City,NJ,39.34564358,-74.46744532,RES3A,3001,,17,NE,1925,1925,3301,3,1,1627.785215,1627.785215,3505,NO,48.56,55.45,3,2.9,6106,113.981618,123.69196,133.432362,139.920459,I,Above,Gable,0,5701,,52.00330855,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 32069,NJBF000061928,6518 WINCHESTER AVE,Ventnor City,NJ,39.3384955,-74.484937,COM1,3001,,17,ME,1928,1928,3401,2,1,1036.234058,1036.234058,3507,NO,23.32,33.12,1,0.48,6106,113.691309,123.457674,133.176739,139.73856,I,Above,Hip,0,NaN,,28.21676554,0,0,,,,1,1,,0.03,nav,1,1928,2,, 32070,NJBF000064505,308 N DERBY AVE,Ventnor City,NJ,39.34465246,-74.48185568,RES1,3001,,17,NE,1990,1990,3102,2,1,1152.985455,1152.985455,3505,NO,42.38,54.03,3,6.53,6106,113.677067,123.44466,133.167355,139.693291,I,Above,Flat,0,5701,,48.20713793,0,0,,,,1,1,,0.03,nav,1,1990,2,, 32071,NJBF000066425,801 N HARVARD AVE,Ventnor City,NJ,39.3497159,-74.48891505,RES1,3001,,17,NE,1977,1977,3101,1,1,1588.230474,1588.230474,3505,NO,16.87,23.97,3,6.2,6106,113.454874,123.262897,132.977296,139.481655,I,Above,Flat,0,5701,,20.42280019,0,0,,,,1,1,,0.03,nav,1,1977,1,, 32072,NJBF000062403,221 N ROSBOROUGH AVE,Ventnor City,NJ,39.33937698,-74.49167579,RES1,3001,,17,NE,1958,1958,3102,1,1,1474.393639,1474.393639,3505,NO,12.12,22.47,3,1.36,6106,113.530482,123.327843,133.040111,139.596171,I,Above,Hip,0,5701,,17.29673728,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, 32073,NJBF000065239,327 N OXFORD AVE,Ventnor City,NJ,39.346487,-74.480069,RES1,3001,,18,NE,1958,1958,3102,2,1,1065.775418,1065.775418,3505,NO,25.43,39.31,3,2.35,6106,113.69253,123.456463,133.181134,139.694849,I,Above,Hip,0,5701,,32.3702131,0,0,,,,1,1,,0.03,nav,1,1958,2,, 32074,NJBF000064571,139 N SURREY AVE,Ventnor City,NJ,39.344824,-74.476072,RES1,3001,,NaN,NE,2006,2006,3102,2,1,1201.964621,1201.964621,3507,NO,21.45,26.66,1,-0.68,6106,113.802472,123.546252,133.275723,139.791089,I,Above,Hip,0,5701,,24.05597614,0,0,,,,1,1,,0.03,nav,1,2006,2,, 32075,NJBF000064034,122 N OXFORD AVE,Ventnor City,NJ,39.3433875,-74.4780605,RES1,3001,,17,NE,1966,1966,3102,2,1,978.6788563,978.6788563,3505,NO,30.68,37.74,3,-1.19,6106,113.777543,123.526454,133.253538,139.780492,I,Above,Flat,0,5701,,34.20904336,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, 32076,NJBF000060330,100 N MELBOURNE AVE,Ventnor City,NJ,39.3357835,-74.491333,RES1,3001,,17,NE,1922,1922,3102,2,1,1141.132327,1141.132327,3505,NO,29.8,42.88,3,0.45,6106,113.587311,123.374006,133.086229,139.658939,I,Above,Flat,0,5701,,36.34314064,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 32077,NJBF000061343,6801 WINCHESTER AVE,Ventnor City,NJ,39.33747576,-74.48775277,RES1,3001,,17,NE,1930,1930,3102,2,1,1724.125381,1724.125381,3505,NO,40.42,46.47,3,4.75,6106,113.643058,123.418834,133.134845,139.702102,I,Above,Hip,0,5701,,43.44759353,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32078,NJBF000066923,610 N VICTORIA AVE,Ventnor City,NJ,39.35130717,-74.48092702,RES3A,3001,,NaN,NE,1986,1986,3301,1,1,1680.323819,1680.323819,3505,NO,10.53,17.36,3,-1.54,6106,113.61154,123.388364,133.111456,139.600946,I,Above,Flat,0,5701,,13.94873241,0,0,,,,1,1,,0.03,nav,1,1986,1,, 32079,NJBF000064752,1 S BATON ROUGE AVE,Ventnor City,NJ,39.34523383,-74.46727275,RES3B,3001,,17,ME,1925,1925,3301,2,1,3240.084872,3240.084872,3504,NO,33.78,41.55,-4,0,6106,113.990735,123.699523,133.440139,139.92962,I,Above,Hip,0,NaN,,37.66576917,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32080,NJBF000060079,13 N MELBOURNE AVE,Ventnor City,NJ,39.33535891,-74.49050997,RES1,3001,,17,NE,1930,1930,3102,1,1,1697.132358,1697.132358,3505,NO,15.33,30.29,3,3.5,6106,113.611329,123.393377,133.106331,139.68172,I,Above,Hip,0,5701,,22.80716377,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32081,NJBF000061354,119 N ROSBOROUGH AVE,Ventnor City,NJ,39.33749424,-74.489562,RES1,3001,,17,NE,1922,1922,3102,1,1,1477.683031,1477.683031,3505,NO,9.16,15.89,3,-1.72,6106,113.602877,123.386427,133.100615,139.666975,I,Above,Gable,0,5701,,12.52421952,0,1.1,,,,1,1,,0.03,nav,1,1922,1,, 32082,NJBF000060732,2 S TROY AVE,Ventnor City,NJ,39.33646334,-74.48544784,RES1,3001,,17,NE,1948,1948,3102,2,1,1270.654659,1270.654659,3505,NO,33.61,42.36,3,-2.92,6106,113.707765,123.47116,133.189416,139.762154,I,Above,Hip,0,5701,,37.98239981,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 32083,NJBF000062837,5701 ATLANTIC AVE,Ventnor City,NJ,39.3403335,-74.4750055,RES1,3001,,18,NE,1897,1897,3102,3,1,629.8586808,629.8586808,3505,NO,61.76,73.18,3,8.59,6110,113.885443,123.614716,133.345234,139.881597,I,Above,Hip,0,5701,,67.46953563,0,1.2,,,,1,1,,0.35,nav,1,1897,3,, 32084,NJBF000059441,105 S WISSAHICKON AVE,Ventnor City,NJ,39.33424283,-74.48541127,RES1,3001,,17,NE,1900,1900,3102,2,1,1407.651395,1407.651395,3505,NO,22.51,29.98,3,-2.25,6110,113.739147,123.496555,133.214442,139.798616,I,Above,Gable,0,5701,,26.24644401,0,1.1,,,,1,1,,0.35,nav,1,1900,2,, 32085,NJBF000059495,103 S WISSAHICKON AV,Ventnor City,NJ,39.33435382,-74.48548599,RES1,3001,,17,NE,1945,1945,3102,1,1,1429.63594,1429.63594,3505,NO,22.52,27.75,3,8.78,6110,113.73596,123.493982,133.211814,139.795409,I,Above,Hip,0,5701,,25.13524594,0,1.1,,,,1,1,,0.35,nav,1,1945,1,, 32086,NJBF000062927,4 N DERBY AVE,Ventnor City,NJ,39.34051462,-74.47896064,RES1,3001,,17,NE,1965,1965,3102,2,1,2070.285331,2070.285331,3505,NO,44.33,50.33,3,8.43,6106,113.795882,123.541987,133.267867,139.811956,I,Above,Hip,0,5701,,47.33033397,0,0,,,,1,1,,0.03,nav,1,1965,2,, 32087,NJBF000063371,128 N CAMBRIDGE AVE,Ventnor City,NJ,39.34153538,-74.48226602,RES1,3001,,17,NE,1929,1929,3102,2,1,1109.52988,1109.52988,3505,NO,34.44,41.33,3,-0.35,6106,113.709337,123.47169,133.193894,139.737172,I,Above,Hip,0,5701,,37.8826467,0,0,,,,1,1,,0.03,nav,1,1929,2,, 32088,NJBF000058779,14 S SWARTHMORE AVE,Ventnor City,NJ,39.33293021,-74.49066481,RES1,3001,,17,NE,1950,1950,3102,2,1,1244.248405,1244.248405,3505,NO,45.25,54.15,3,6.49,6106,113.641686,123.417803,133.13013,139.715155,I,Above,Flat,0,5701,,49.6978025,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32089,NJBF000062630,304-306 HAMPSHIRE DR,Ventnor City,NJ,39.33987434,-74.49337608,RES1,3001,,45,NE,1972,1972,3102,2,2,1780.508954,1780.508954,3505,NO,42.04,48.5,3,8.89,6106,113.486125,123.292063,133.002717,139.555188,I,Above,Hip,0,5701,,45.27039194,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32090,NJBF000063715,7 S SURREY AVE,Ventnor City,NJ,39.34248336,-74.47234076,RES1,3001,,17,NE,1910,1910,3102,3,1,1622.184878,1622.184878,3505,NO,33.94,46.8,3,-0.88,6106,113.915461,123.638757,133.372725,139.890922,I,Above,Hip,0,5701,,40.36887157,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, 32091,NJBF000063685,9 S SURREY AVE,Ventnor City,NJ,39.34239094,-74.47228,RES1,3001,,17,NE,1908,1908,3102,3,1,1447.037192,1447.037192,3505,NO,44.74,58.1,3,-0.67,6106,113.91802,123.640859,133.374896,139.893382,I,Above,Hip,0,5701,,51.42287672,0,1.1,,,,1,1,,0.03,nav,1,1908,3,, 32092,NJBF000064745,339 N BURGHLEY AVE,Ventnor City,NJ,39.34521528,-74.48262236,RES1,3001,,17,NE,1958,1958,3102,1,1,1827.132929,1827.132929,3505,NO,18.29,29.54,3,-0.25,6106,113.652739,123.424775,133.146585,139.67037,I,Above,Gable,0,5701,,23.91382287,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32093,NJBF000065278,328 N SOMERSET AVE,Ventnor City,NJ,39.34660633,-74.47984071,RES1,3001,,17,NE,1962,1962,3102,1,1,1673.23126,1673.23126,3505,NO,24.75,30.91,3,6.97,6106,113.696017,123.459238,133.184168,139.69691,I,Above,Hip,0,5701,,27.82811352,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 32094,NJBF000061417,321 N FREDERICKSBURG,Ventnor City,NJ,39.3376025,-74.496347,RES1,3001,,18,NE,1962,1962,3103,3,1,1479.374257,1479.374257,3505,NO,50,56.3,3,6.34,6106,113.451455,123.264558,132.972319,139.531502,I,Above,Gable,0,5701,,53.14676062,0,0,,,,1,1,,0.03,nav,1,1962,3,, 32095,NJBF000061349,313 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33748402,-74.49627805,RES1,3001,,17,NE,1967,1967,3103,2,1,1848.909008,1848.909008,3505,NO,42.26,53.2,3,8.89,6106,113.454619,123.267114,132.974926,139.534683,I,Above,Hip,0,5701,,47.72783432,0,0,,,,1,1,,0.03,nav,1,1967,2,, 32096,NJBF000065529,509 N BURGHLEY AVE,Ventnor City,NJ,39.34735036,-74.484375,RES1,3001,,17,NE,1960,1960,3101,1,1,1604.258717,1604.258717,3505,NO,19.83,27.58,3,4.15,6106,113.586077,123.369981,133.089669,139.603766,I,Above,Hip,0,5701,,23.70317272,0,0,,,,1,1,,0.03,nav,1,1960,1,, 32097,NJBF000059128,,Ventnor City,NJ,39.33360901,-74.48910711,RES1,3001,,NaN,NE,1925,0,3102,2,1,1219.8737,1219.8737,3505,NO,26.68,39.56,3,-2.11,6106,113.666536,123.437889,133.151889,139.736193,I,Above,Hip,0,5701,,33.11811645,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32098,NJBF000059021,109 S ROSBOROUGH AVE,Ventnor City,NJ,39.33338434,-74.48614434,RES1,3001,,17,NE,1958,1958,3102,2,1,1709.392099,1709.392099,3505,NO,29.59,40.98,3,-0.14,6110,113.734917,123.493102,133.21004,139.798036,I,Above,Hip,0,5701,,35.28442923,0,1.1,,,,1,1,,0.35,nav,1,1958,2,, 32099,NJBF000063946,104 S MARION AVE,Ventnor City,NJ,39.34316875,-74.46678391,RES3B,3001,,17,E,1990,1990,3303,2,1,1844.69728,1844.69728,3504,NO,22.06,29.7,-4,0,6106,114.028511,123.730859,133.471998,139.969439,I,Above,Gable,0,NaN,,25.88283593,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 32100,NJBF000060239,7115 WINCHESTER AVE,Ventnor City,NJ,39.33563276,-74.49166338,RES1,3001,,17,NE,1928,1928,3102,2,1,1507.276599,1507.276599,3505,NO,33.9,43,3,2.17,6106,113.582102,123.369814,133.081697,139.654695,I,Above,Flat,0,5701,,38.44899656,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 32101,NJBF000063632,416-418 N WISSAHICKON AVE,Ventnor City,NJ,39.34224696,-74.49324985,RES1,3001,,45,NE,1979,1979,3102,2,2,1949.518325,1949.518325,3505,NO,39.36,47.65,3,7.86,6106,113.456881,123.267951,132.978744,139.520127,I,Above,Gable,0,5701,,43.50337874,0,0,,,,1,1,,0.03,nav,1,1979,2,, 32102,NJBF000065263,323 N SOMERSET AVE,Ventnor City,NJ,39.34656245,-74.47925432,RES1,3001,,17,NE,1940,1940,3102,1,1,1724.777833,1724.777833,3505,NO,22.4,28.81,3,6.86,6106,113.709556,123.470226,133.195848,139.707915,I,Above,Hip,0,5701,,25.60651864,0,0,,,,1,1,,0.03,nav,1,1940,1,, 32103,NJBF000060437,4 N NEWARK AVE,Ventnor City,NJ,39.33597442,-74.48803997,RES1,3001,,17,NE,1940,1940,3102,2,1,1807.387011,1807.387011,3505,NO,32.21,40.03,3,2.56,6106,113.657325,123.430454,133.145963,139.720493,I,Above,Flat,0,5701,,36.1207467,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32104,NJBF000061941,11 N NEWPORT AVE,Ventnor City,NJ,39.33852108,-74.48369683,RES1,3001,,17,NE,1900,1900,3102,2,1,1183.367846,1183.367846,3505,NO,36.04,47.55,3,6.07,6106,113.718326,123.479507,133.199903,139.760922,I,Above,Flat,0,5701,,41.79581713,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 32105,NJBF000064565,215 N OXFORD AVE,Ventnor City,NJ,39.34479724,-74.47869542,RES1,3001,,17,NE,1950,1950,3102,2,1,1559.778662,1559.778662,3505,NO,38.64,45.72,3,3.31,6106,113.744967,123.499598,133.225941,139.746489,I,Above,Hip,0,5701,,42.18252672,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 32106,NJBF000065798,611 N CAMBRIDGE AVE,Ventnor City,NJ,39.3481354,-74.48676348,RES1,3001,,17,NE,1968,1968,3101,2,1,1643.172244,1643.172244,3505,NO,31.58,38.21,3,6.11,6106,113.523001,123.318687,133.035655,139.547278,I,Above,Gable,0,5701,,34.89210067,0,0,,,,1,1,,0.03,nav,1,1968,2,, 32107,NJBF000064569,5005 VENTNOR AVE,Ventnor City,NJ,39.34482006,-74.46913917,RES1,3001,20,NaN,NE,1920,1920,3102,2,1,2171.931298,2171.931298,3507,NO,25.19,34.46,1,0.4,6106,113.955142,123.670558,133.408718,139.906018,I,Above,Flat,0,5701,,29.82826707,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32108,NJBF000064593,5003 VENTNOR AVE,Ventnor City,NJ,39.34486451,-74.4690038,RES1,3001,283,NaN,NE,1900,1900,3102,3,1,1488.034745,1488.034745,3507,NO,54.03,65.64,1,1.46,6106,113.957521,123.672488,133.410824,139.907496,I,Above,Hip,0,5701,,59.83518508,0,0,,,,1,1,,0.03,nav,1,1900,3,, 32109,NJBF000065044,4801 VENTNOR AVE,Ventnor City,NJ,39.34598636,-74.46681181,RES3A,3001,,NaN,NE,1920,1920,3301,1,1,4248.976183,4248.976183,3505,NO,17.94,27.06,3,-1.14,6106,113.991074,123.699596,133.440844,139.925311,I,Above,Flat,0,5701,,22.5007503,0,0,,,,1,1,,0.03,nav,1,1920,1,, 32110,NJBF000064809,10 S JACKSON AVE,Ventnor City,NJ,39.34538515,-74.46637664,RES3B,3001,,17,ME,1925,1925,3301,2,1,1488.634809,1488.634809,3504,NO,36.42,42.88,-4,0,6106,114.008441,123.713962,133.455772,139.941629,I,Above,Hip,0,NaN,,39.65071269,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32111,NJBF000062620,309-311 N LAFAYETTE AVE,Ventnor City,NJ,39.33982042,-74.4938227,RES1,3001,,45,NE,1972,1972,3102,2,2,1893.344151,1893.344151,3505,NO,43.66,53.19,3,7.46,6106,113.476967,123.284711,132.994939,139.54728,I,Above,Gable,0,5701,,48.42364412,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32112,NJBF000063974,103 S AUSTIN AVE,Ventnor City,NJ,39.34323874,-74.4670863,RES3B,3001,,17,E,1910,1910,3303,2,1,1757.506855,1757.506855,3504,NO,33.19,43.42,-4,0,6106,114.020962,123.724676,133.465423,139.963572,I,Above,Hip,0,NaN,,38.3036592,0,1.2,,,,1,1,,0.03,nav,1,1910,2,, 32113,NJBF000064130,5704-5706 MONMOUTH AVE,Ventnor City,NJ,39.3436589,-74.47848339,RES1,3001,,45,NE,1976,1976,3102,2,2,1500.733071,1500.733071,3505,NO,28.48,40.44,3,-0.49,6106,113.764621,123.515897,133.242488,139.768755,I,Above,Hip,0,5701,,34.4614168,0,0,,,,1,1,,0.03,nav,1,1976,2,, 32114,NJBF000059717,4 S WYOMING AVE,Ventnor City,NJ,39.33472726,-74.48878655,RES1,3001,,17,NE,1957,1957,3102,2,1,1340.943833,1340.943833,3505,NO,34.8,41.49,3,0.42,6106,113.658068,123.43108,133.145623,139.725421,I,Above,Gable,0,5701,,38.14636115,0,0,,,,1,1,,0.03,nav,1,1957,2,, 32115,NJBF000066481,712 N BURGHLEY AVE,Ventnor City,NJ,39.34986338,-74.48694322,RES1,3001,,17,NE,1965,1965,3101,2,1,1811.608993,1811.608993,3505,NO,29.62,43.15,3,8.11,6106,113.496726,123.296518,133.013018,139.515743,I,Above,Hip,0,5701,,36.38580706,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 32116,NJBF000062462,6 N CAMBRIDGE AVE,Ventnor City,NJ,39.33951569,-74.4806569,RES1,3001,,17,NE,1905,1905,3102,2,1,1651.145295,1651.145295,3505,NO,27.15,39.06,3,-0.84,6106,113.771915,123.522733,133.246589,139.798892,I,Above,Hip,0,5701,,33.10551054,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 32117,NJBF000060713,,Ventnor City,NJ,39.33643607,-74.48463393,RES1,3001,,NaN,NE,1969,0,3102,2,1,1261.135374,1261.135374,3505,NO,35.97,48.63,3,-2.74,6106,113.726079,123.485962,133.205072,139.777818,I,Above,Hip,0,5701,,42.30006445,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32118,NJBF000060764,,Ventnor City,NJ,39.33651335,-74.48469667,RES1,3001,,NaN,NE,1928,0,3102,2,1,900.6008637,900.6008637,3505,NO,29.55,40.26,3,2.37,6106,113.723636,123.483983,133.203038,139.775391,I,Above,Flat,0,5701,,34.90385524,0,0,,,,1,1,,0.03,nav,1,1928,2,, 32119,NJBF000062072,108 N NEW HAVEN AVE,Ventnor City,NJ,39.33875087,-74.48582941,RES1,3001,,17,NE,1930,1930,3102,2,1,1061.822065,1061.822065,3505,NO,45.7,53.58,3,8.69,6106,113.668163,123.438943,133.15709,139.717829,I,Above,Hip,0,5701,,49.640753,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32120,NJBF000065572,501 N DORSET AVE,Ventnor City,NJ,39.34748615,-74.48258115,RES1,3001,,17,NE,1963,1963,3102,1,1,2571.758544,2571.758544,3507,NO,16.32,25.95,1,-0.2,6106,113.62401,123.400566,133.122262,139.633888,I,Above,Hip,0,5701,,21.13527664,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, 32121,NJBF000058701,7 S FREDERICKSBURG AVE,Ventnor City,NJ,39.33277726,-74.49226209,RES1,3001,,17,NE,1940,1940,3102,2,1,1232.748195,1232.748195,3505,NO,25.4,32.97,3,3.71,6106,113.608646,123.391151,133.10192,139.685212,I,Above,Gable,0,5701,,29.1832042,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32122,NJBF000063427,400 N WISSAHICKON AVE,Ventnor City,NJ,39.34170547,-74.49276786,RES1,3001,,17,NE,1979,1979,3102,2,1,2341.348918,2341.348918,3505,NO,44.02,52.8,3,6.15,6106,113.474839,123.282544,132.993811,139.53808,I,Above,Flat,0,5701,,48.41279122,0,0,,,,1,1,,0.03,nav,1,1979,2,, 32123,NJBF000064736,4919 VENTNOR AVE,Ventnor City,NJ,39.3451919,-74.46832415,RES3A,3001,,17,NE,1905,1905,3301,2,1,1551.6073,1551.6073,3505,NO,42.42,48.61,3,3.71,6106,113.968196,123.681117,133.42035,139.913356,I,Above,Flat,0,5701,,45.51734975,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 32124,NJBF000064762,4921 VENTNOR AVE,Ventnor City,NJ,39.34527851,-74.46847333,RES3A,3001,,45,NE,1905,1905,3301,2,2,553.9646437,553.9646437,3505,NO,30.63,37.34,3,-0.17,6106,113.963787,123.677493,133.416534,139.909585,I,Above,Gable,0,5701,,33.98639029,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, 32125,NJBF000064100,5400 EDGEWATER AVE,Ventnor City,NJ,39.34357486,-74.47501132,RES1,3001,,17,NE,1965,1965,3102,2,1,1584.569107,1584.569107,3505,NO,36.32,48.66,3,4.1,6106,113.842269,123.578955,133.309694,139.829219,I,Above,Flat,0,5701,,42.4892287,0,0,,,,1,1,,0.03,nav,1,1965,2,, 32126,NJBF000061229,309 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33727134,-74.49608441,RES1,3001,,17,NE,1967,1967,3103,2,1,1310.763202,1310.763202,3505,NO,35.35,45.87,3,5.79,6106,113.461843,123.27294,132.980908,139.541783,I,Above,Hip,0,5701,,40.61327882,0,0,,,,1,1,,0.03,nav,1,1967,2,, 32127,NJBF000064786,12 S JACKSON AVE,Ventnor City,NJ,39.34531783,-74.46630142,RES3B,3001,,17,ME,1925,1925,3301,2,1,932.1605899,932.1605899,3504,NO,28.88,41.72,-4,0,6106,114.010982,123.716058,133.457967,139.943883,I,Above,Gable,0,NaN,,35.30046462,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32128,NJBF000063500,212 N SACRAMENTO AVE,Ventnor City,NJ,39.34188123,-74.4840137,RES1,3001,,17,NE,1970,1970,3102,2,1,1928.782476,1928.782476,3505,NO,19.82,31.53,3,-1.34,6106,113.666115,123.436659,133.15695,139.699982,I,Above,Gable,0,5701,,25.67742924,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 32129,NJBF000064763,406 N CORNWALL AVE,Ventnor City,NJ,39.34528022,-74.48411864,RES1,3001,,16,NE,1962,1962,3102,1,1,1789.539029,1789.539029,3505,NO,21.42,31.51,3,3.81,6106,113.618783,123.397307,133.117443,139.64232,I,Above,Hip,0,5701,,26.46506313,0,0,,,,1,1,,0.03,nav,1,1962,1,, 32130,NJBF000062973,107 N SACRAMENTO AVE,Ventnor City,NJ,39.34062033,-74.48248791,RES1,3001,,17,NE,2014,1925,3102,1,1,1362.51231,1362.51231,3505,NO,19.34,29.79,3,3.5,6106,113.716687,123.477836,133.199743,139.748248,I,Above,Gable,0,5701,,24.56250463,0,1.1,,,,1,1,,0.03,nav,1,2014,1,, 32131,NJBF000063190,115 N HARVARD AVE,Ventnor City,NJ,39.34110084,-74.48216786,RES1,3001,,17,NE,1920,1920,3102,1,1,1491.043268,1491.043268,3505,NO,24.89,38.39,3,6.49,6106,113.717303,123.478233,133.200525,139.74606,I,Above,Hip,0,5701,,31.6430396,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, 32132,NJBF000063919,118 N DORSET AVE,Ventnor City,NJ,39.3430749,-74.47975281,RES1,3001,,NaN,NE,1980,1980,3102,2,1,2399.141388,2399.141388,3505,NO,18.33,25.05,3,-2.81,6106,113.74432,123.499611,133.224715,139.756255,I,Above,Flat,0,5701,,21.6913241,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32133,NJBF000061821,11 S HARVARD AVE,Ventnor City,NJ,39.33831542,-74.47991045,RES1,3001,,17,NE,1945,1945,3102,2,1,1381.458666,1381.458666,3505,NO,36.93,51.67,3,3.9,6106,113.804593,123.549358,133.273915,139.831681,I,Above,Hip,0,5701,,44.30324345,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 32134,NJBF000065818,610 N CORNWALL AVE,Ventnor City,NJ,39.34818195,-74.48646619,RES1,3001,,17,NE,1965,1965,3101,1,1,1988.437016,1988.437016,3505,NO,16.28,26.23,3,0.29,6106,113.528974,123.323477,133.040762,139.551972,I,Above,Hip,0,5701,,21.2544773,0,0,,,,1,1,,0.03,nav,1,1965,1,, 32135,NJBF000062501,6105 VENTNOR AVE,Ventnor City,NJ,39.33959232,-74.47991199,RES1,3001,,18,NE,1932,1932,3102,2,1,2341.062842,2341.062842,3505,NO,27.86,40.65,3,-1.08,6106,113.787314,123.535195,133.259901,139.81065,I,Above,Flat,0,5701,,34.25468938,0,1.2,,,,1,1,,0.03,nav,1,1932,2,, 32136,NJBF000061495,114 N NEWARK AVE,Ventnor City,NJ,39.33774498,-74.48939668,RES1,3001,,17,NE,1943,1943,3102,2,1,1032.224891,1032.224891,3505,NO,19.32,30.25,3,-2.46,6106,113.603088,123.386569,133.10095,139.666195,I,Above,Flat,0,5701,,24.78649022,0,0,,,,1,1,,0.03,nav,1,1943,2,, 32137,NJBF000062497,4 S DERBY AVE,Ventnor City,NJ,39.33958746,-74.47817039,RES1,3001,,18,NE,1920,1920,3102,2,1,1963.400293,1963.400293,3505,NO,43.27,51.46,3,4.81,6106,113.825763,123.566367,133.293069,139.840691,I,Above,Gable,0,5701,,47.36912317,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 32138,NJBF000059415,20 N MARTINDALE AVE,Ventnor City,NJ,39.33420722,-74.49311577,RES1,3001,,17,NE,1926,1926,3102,2,1,1034.596614,1034.596614,3505,NO,32.94,38.98,3,-2.4,6106,113.569843,123.35995,133.070213,139.647103,I,Above,Hip,0,5701,,35.95887354,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 32139,NJBF000064222,137 N OXFORD AVE,Ventnor City,NJ,39.34392657,-74.47801038,RES1,3001,,NaN,NE,1970,1970,3102,2,4,3277.52026,3277.52026,3505,NO,37.69,50.34,3,0.96,6106,113.771522,123.521412,133.248564,139.772539,I,Above,Hip,0,5701,,44.01138474,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32140,NJBF000064668,18 S JACKSON AVE,Ventnor City,NJ,39.34503043,-74.46607406,RES3B,3001,,17,ME,1907,1907,3301,2,1,1623.581419,1623.581419,3504,NO,33.17,41.29,-4,0,6106,114.019718,123.723276,133.465476,139.951967,I,Above,Gable,0,NaN,,37.22819632,0,1.1,,,,1,1,,0.03,nav,1,1907,2,, 32141,NJBF000063158,131 N PRINCETON AVE,Ventnor City,NJ,39.34101054,-74.48356637,RES1,3001,,17,NE,1930,1930,3102,1,1,1480.541133,1480.541133,3505,NO,14.38,22.43,3,2.73,6106,113.687648,123.454271,133.175016,139.722396,I,Above,Gable,0,5701,,18.4035313,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32142,NJBF000059761,100 S RICHARDS AVE,Ventnor City,NJ,39.33480678,-74.48488193,RES1,3001,,17,NE,1929,1929,3102,3,1,2252.425104,2252.425104,3505,NO,48.17,55.04,3,-0.35,6110,113.743005,123.499683,133.218239,139.799616,I,Above,Hip,0,5701,,51.60342607,0,1.1,,,,1,1,,0.35,nav,1,1929,3,, 32143,NJBF000065267,23 N VASSAR SQUARE,Ventnor City,NJ,39.34657185,-74.46758454,RES3A,3001,,45,NE,1910,1910,3301,2,2,1352.202007,1352.202007,3505,NO,33.71,40.32,3,-0.11,6106,113.966493,123.679325,133.419555,139.903688,I,Above,Flat,0,5701,,37.01808388,0,0,,,,1,1,,0.03,nav,1,1910,2,, 32144,NJBF000064776,4917 VENTNOR AVE,Ventnor City,NJ,39.34529772,-74.46810355,RES3A,3001,,45,NE,1907,1907,3301,2,2,1584.43143,1584.43143,3505,NO,30.08,40.58,3,7.34,6106,113.971647,123.683908,133.423432,139.915246,I,Above,Hip,0,5701,,35.32897009,0,1.1,,,,1,1,,0.03,nav,1,1907,2,, 32145,NJBF000064083,11 N SURREY AVE,Ventnor City,NJ,39.34352353,-74.47316153,RES1,3001,,17,NE,1910,1910,3102,3,1,1321.56481,1321.56481,3505,NO,66.16,75.96,3,8.78,6106,113.883656,123.612629,133.345636,139.860817,I,Above,Gable,0,5701,,71.05960136,0,1.2,,,,1,1,,0.03,nav,1,1910,3,, 32146,NJBF000062426,6407 WINCHESTER AVE,Ventnor City,NJ,39.33943528,-74.4838225,RES1,3001,,17,NE,1900,1900,3102,3,1,1619.531888,1619.531888,3505,NO,61.66,68.11,3,4.83,6106,113.703178,123.467128,133.187481,139.743616,I,Above,Gable,0,5701,,64.88499007,0,1.1,,,,1,1,,0.03,nav,1,1900,3,, 32147,NJBF000061004,110 S HARVARD AVE,Ventnor City,NJ,39.33688776,-74.47922835,RES1,3001,,18,NE,1910,1910,3102,2,1,1952.346957,1952.346957,3505,NO,41.31,55.04,3,8.97,6106,113.838981,123.577339,133.30245,139.866873,I,Above,Hip,0,5701,,48.17430166,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 32148,NJBF000064302,308 N CORNWALL AVE,Ventnor City,NJ,39.34415228,-74.48319945,RES1,3001,,17,NE,1958,1958,3102,1,1,1512.614784,1512.614784,3505,NO,11.96,19.26,3,1.4,6106,113.653976,123.426163,133.147361,139.677444,I,Above,Hip,0,5701,,15.61033512,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32149,NJBF000060711,119 S SACRAMENTO AVE,Ventnor City,NJ,39.33643552,-74.47913414,RES1,3001,,20,NE,2007,2007,3102,3,1,2044.711392,2044.711392,3505,NO,42.71,48.26,3,8.99,6106,113.847209,123.584028,133.309166,139.875894,I,Above,Hip,0,5701,,45.4859413,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, 32150,NJBF000065415,512 N CORNWALL AVE,Ventnor City,NJ,39.34700222,-74.48551775,RES1,3001,,17,NE,1965,1965,3101,1,1,1877.046212,1877.046212,3505,NO,14.97,21.09,3,-2.03,6106,113.565299,123.353376,133.071837,139.588645,I,Above,Hip,0,5701,,18.02765405,0,0,,,,1,1,,0.03,nav,1,1965,1,, 32151,NJBF000063320,5703 VENTNOR AVE,Ventnor City,NJ,39.34140012,-74.47616637,RES1,3001,,17,NE,1989,1989,3102,2,1,2254.848444,2254.848444,3505,NO,23.62,33.9,3,-0.56,6106,113.845643,123.582198,133.311425,139.845033,I,Above,Gable,0,5701,,28.7608449,0,1.2,,,,1,1,,0.03,nav,1,1989,2,, 32152,NJBF000065378,,Ventnor City,NJ,39.34689884,-74.4791868,RES1,3001,,NaN,NE,1969,0,3102,2,1,1528.404224,1528.404224,3505,NO,39.66,44.83,3,7.22,6106,113.706654,123.467731,133.193411,139.703582,I,Above,Gable,0,5701,,42.24508791,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32153,NJBF000062692,5906 VENTNOR AVE,Ventnor City,NJ,39.34002184,-74.47797661,RES1,3001,,17,NE,1900,1900,3102,2,1,2112.182233,2112.182233,3505,NO,31.7,46.25,3,-3,6106,113.824172,123.565012,133.291985,139.836867,I,Above,Hip,0,5701,,38.97444892,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 32154,NJBF000063291,108 S LITTLE ROCK AVE,Ventnor City,NJ,39.3413447,-74.47041521,COM1,3001,,NaN,ME,1890,1890,3401,3,1,1734.165896,1734.165896,3507,NO,49.94,63.79,1,1.72,6106,113.972887,123.685748,133.422031,139.940025,I,Above,Hip,0,NaN,,56.86765949,0,0,,,,1,1,,0.03,nav,1,1890,3,, 32155,NJBF000066195,603 N DUDLEY AVE,Ventnor City,NJ,39.34915519,-74.4830944,RES1,3001,,17,NE,1974,1974,3102,2,1,1326.561755,1326.561755,3507,NO,25.95,40.08,1,2.54,6106,113.591096,123.373098,133.094012,139.597363,I,Above,Flat,0,5701,,33.01320075,0,0,,,,1,1,,0.03,nav,1,1974,2,, 32156,NJBF000064166,10 S NASHVILLE AVE,Ventnor City,NJ,39.34376065,-74.46945832,RES1,3001,,17,NE,1925,1925,3102,2,1,1254.607692,1254.607692,3507,NO,22.27,31.62,1,0.45,6106,113.962006,123.676419,133.414118,139.917501,I,Above,Hip,0,5701,,26.94482053,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32157,NJBF000061706,121 N WISSAHICKON AVE,Ventnor City,NJ,39.33811402,-74.48852705,RES1,3001,,17,NE,1922,1922,3102,2,1,1032.428329,1032.428329,3505,NO,39.42,48.04,3,3.22,6106,113.617261,123.397953,133.113249,139.677069,I,Above,Flat,0,5701,,43.72952831,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 32158,NJBF000060480,109 S STRATFORD AVE,Ventnor City,NJ,39.33604551,-74.48098798,RES1,3001,,20,NE,1995,1995,3102,2,1,1475.131635,1475.131635,3505,NO,33.52,40.57,3,6.32,6106,113.81173,123.555285,133.278277,139.850275,I,Above,Hip,0,5701,,37.04509838,0,1.1,,,,1,1,,0.03,nav,1,1995,2,, 32159,NJBF000065090,3 N VASSAR SQUARE,Ventnor City,NJ,39.34610845,-74.46722722,RES3A,3001,,18,NE,2004,2004,3301,2,1,896.6640907,896.6640907,3505,NO,43.4,49.98,3,6.75,6106,113.980375,123.690813,133.431513,139.916727,I,Above,Gable,0,5701,,46.69017731,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 32160,NJBF000065215,314 N SUFFOLK AVE,Ventnor City,NJ,39.3464325,-74.478767,RES1,3001,,17,NE,1930,1930,3102,2,1,894.809351,894.809351,3505,NO,33.75,41.39,3,8.32,6106,113.722003,123.480369,133.206572,139.718536,I,Above,Flat,0,5701,,37.57201172,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32161,NJBF000063714,4 N SOMERSET AVE,Ventnor City,NJ,39.34247969,-74.47540485,RES1,3001,,17,NE,1940,1940,3102,2,1,2618.502086,2618.502086,3505,NO,27.4,35.94,3,5.12,6106,113.848058,123.583932,133.314144,139.840309,I,Above,Hip,0,5701,,31.66821057,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 32162,NJBF000064656,402 N CORNWALL AVE,Ventnor City,NJ,39.3450075,-74.483911,RES1,3001,,17,NE,1958,1958,3102,2,1,1205.768347,1205.768347,3505,NO,32.55,46.58,3,-2.68,6106,113.626957,123.404017,133.124396,139.650547,I,Above,Flat,0,5701,,39.56506366,0,0,,,,1,1,,0.03,nav,1,1958,2,, 32163,NJBF000058719,13 S MARTINDALE AVE,Ventnor City,NJ,39.33280357,-74.49150717,RES1,3001,,17,NE,1928,1928,3102,2,1,1505.130594,1505.130594,3505,NO,29.78,38.44,3,5.49,6106,113.6249,123.404257,133.115748,139.70005,I,Above,Gable,0,5701,,34.1075485,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 32164,NJBF000064973,404 N DERBY AVE,Ventnor City,NJ,39.345822,-74.482793,RES1,3001,,17,NE,1962,1962,3102,1,1,981.7433225,981.7433225,3505,NO,11.84,17.91,3,-1.04,6106,113.641003,123.415045,133.136631,139.65735,I,Above,Flat,0,5701,,14.87792122,0,0,,,,1,1,,0.03,nav,1,1962,1,, 32165,NJBF000065694,607 N CAMBRIDGE AVE,Ventnor City,NJ,39.34784485,-74.48651875,RES1,3001,,17,NE,1968,1968,3101,2,1,1711.773244,1711.773244,3505,NO,36.91,47.56,3,6.07,6106,113.532168,123.32623,133.043502,139.556505,I,Above,Gable,0,5701,,42.23763542,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 32166,NJBF000064931,218 N SURREY AVE,Ventnor City,NJ,39.34570667,-74.47731358,RES1,3001,,17,NE,1930,1930,3102,1,1,972.0126612,972.0126612,3505,NO,19.09,31.23,3,3.94,6106,113.763528,123.51433,133.242293,139.755506,I,Above,Flat,0,5701,,25.1597145,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32167,NJBF000059373,7207 VENTNOR AVE,Ventnor City,NJ,39.33411923,-74.4911708,RES1,3001,,17,NE,1922,1922,3102,2,1,1775.150993,1775.150993,3505,NO,39.75,50.56,3,0.8,6106,113.613954,123.395493,133.107584,139.687386,I,Above,Hip,0,5701,,45.15073476,0,0,,,,1,1,,0.03,nav,1,1922,2,, 32168,NJBF000066715,601 N VICTORIA AVE,Ventnor City,NJ,39.3505615,-74.479823,RES3A,3001,,NaN,NE,1991,1991,3301,2,1,1951.723272,1951.723272,3505,NO,25.61,33.87,3,4.6,6106,113.645455,123.416284,133.140809,139.63266,I,Above,Hip,0,5701,,29.74204334,0,0,,,,1,1,,0.03,nav,1,1991,2,, 32169,NJBF000065814,604 N BURGHLEY AVE,Ventnor City,NJ,39.34817749,-74.48559124,RES1,3001,,17,NE,1988,1988,3101,2,1,1821.65458,1821.65458,3505,NO,32.61,39.1,3,2.05,6106,113.548424,123.339169,133.057413,139.56809,I,Above,Hip,0,5701,,35.85336476,0,1.2,,,,1,1,,0.03,nav,1,1988,2,, 32170,NJBF000061322,108 N NEWARK AVE,Ventnor City,NJ,39.33744134,-74.48913754,RES1,3001,,17,NE,1925,1925,3102,2,1,1327.439009,1327.439009,3505,NO,33.47,42.86,3,5.21,6106,113.612964,123.394564,133.10917,139.676024,I,Above,Hip,0,5701,,38.16640539,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32171,NJBF000066328,,Ventnor City,NJ,39.34947809,-74.48922524,RES1,3001,,NaN,NE,1969,0,3102,2,1,4528.095845,4528.095845,3505,NO,25.67,34.18,3,2.88,6106,113.451058,123.259971,132.974085,139.479759,I,Above,Hip,0,5701,,29.92654904,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32172,NJBF000064271,214 N DUDLEY AVE,Ventnor City,NJ,39.34406544,-74.47948608,RES1,3001,,17,NE,1945,1945,3102,2,1,1179.412884,1179.412884,3505,NO,33.8,46.21,3,-1.69,6106,113.737135,123.493492,133.218916,139.744698,I,Above,Gable,0,5701,,40.00701001,0,0,,,,1,1,,0.03,nav,1,1945,2,, 32173,NJBF000066258,615 N DERBY AVE,Ventnor City,NJ,39.34931501,-74.48505107,RES1,3001,,17,NE,1972,1972,3101,2,1,2086.560085,2086.560085,3505,NO,38.21,52.61,3,7.97,6106,113.545701,123.336344,133.055025,139.55933,I,Above,Gable,0,5701,,45.40717847,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 32174,NJBF000062827,6414 MONMOUTH AVE,Ventnor City,NJ,39.34031207,-74.48489571,RES1,3001,,28,NE,1925,1925,3102,2,1,1863.000858,1863.000858,3505,NO,30.69,44.92,3,4.05,6106,113.667668,123.438274,133.157539,139.709596,I,Above,Flat,0,5701,,37.8038992,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32175,NJBF000063560,5701 WINCHESTER AVE,Ventnor City,NJ,39.34205765,-74.4763375,RES1,3001,,18,NE,2004,2004,3102,2,1,3582.900038,3582.900038,3505,NO,22.93,36.14,3,-0.27,6106,113.833125,123.571897,133.300966,139.831484,I,Above,Flat,0,5701,,29.53525114,0,0,,,,1,1,,0.03,nav,1,2004,2,, 32176,NJBF000066024,704 N CAMBRIDGE AVE,Ventnor City,NJ,39.34871056,-74.4877296,RES1,3001,,17,NE,1967,1967,3101,1,1,1268.994556,1268.994556,3505,NO,12.28,21.51,3,-2.57,6106,113.494113,123.295089,133.010928,139.520026,I,Above,Flat,0,5701,,16.89813885,0,0,,,,1,1,,0.03,nav,1,1967,1,, 32177,NJBF000066070,706 N CAMBRIDGE AVE,Ventnor City,NJ,39.34883595,-74.48785273,RES1,3001,,17,NE,1975,1975,3101,1,1,1623.023425,1623.023425,3505,NO,17.02,28.24,3,6.48,6106,113.489771,123.29152,133.007207,139.51571,I,Above,Flat,0,5701,,22.62946661,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 32178,NJBF000063981,212 N DERBY AVE,Ventnor City,NJ,39.34326449,-74.48062784,RES1,3001,,16,NE,1907,1907,3102,2,1,1147.766161,1147.766161,3505,NO,26.88,33.01,3,3.09,6106,113.722505,123.481888,133.20599,139.737813,I,Above,Hip,0,5701,,29.94772455,0,0,,,,1,1,,0.03,nav,1,1907,2,, 32179,NJBF000060294,6500 ATLANTIC AVE,Ventnor City,NJ,39.33573235,-74.48253753,EDU1,3001,,NaN,E,1964,1964,3401,3,1,27432.87053,27432.87053,3507,NO,37.41,47.48,1,2.67,6106,113.781904,123.531142,133.252378,139.827836,I,Above,Hip,0,NaN,,42.44731078,0,0,,,,1,1,,0.03,nav,1,1964,3,, 32180,NJBF000066273,506 N SURREY AVE,Ventnor City,NJ,39.34934898,-74.48026471,RES1,3001,,17,NE,1986,1986,3102,2,1,1810.349918,1810.349918,3507,NO,36.37,43.57,1,0.5,6106,113.651189,123.42161,133.145781,139.644627,I,Above,Hip,0,5701,,39.97033857,0,0,,,,1,1,,0.03,nav,1,1986,2,, 32181,NJBF000063479,8 S SUFFOLK AVE,Ventnor City,NJ,39.34183338,-74.47358461,RES1,3001,,18,NE,1912,1912,3102,2,1,1591.662435,1591.662435,3505,NO,20.27,34.82,3,-1.08,6106,113.896705,123.62362,133.356002,139.880914,I,Above,Hip,0,5701,,27.54438675,0,1.1,,,,1,1,,0.03,nav,1,1912,2,, 32182,NJBF000060626,2 N BUFFALO AVE,Ventnor City,NJ,39.33629339,-74.48681482,RES1,3001,,17,NE,1935,1935,3102,2,1,3002.795652,3002.795652,3505,NO,36.62,48.53,3,2.89,6106,113.679956,123.448707,133.165516,139.738982,I,Above,Hip,0,5701,,42.57462631,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 32183,NJBF000064390,19 N WEYMOUTH AVE,Ventnor City,NJ,39.34436823,-74.4714659,RES1,3001,,17,NE,1920,1920,3102,2,1,1370.007422,1370.007422,3507,NO,32.94,44.14,1,2.44,6106,113.909889,123.633772,133.368936,139.875262,I,Above,Hip,0,5701,,38.54121652,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, 32184,NJBF000064857,233 N SURREY AVE,Ventnor City,NJ,39.34548867,-74.47666209,RES1,3001,,17,NE,1908,1908,3102,2,1,3111.227091,3111.227091,3507,NO,26.42,39.14,1,0.72,6106,113.780758,123.528394,133.257146,139.770234,I,Above,Gable,0,5701,,32.77996303,0,1.2,,,,1,1,,0.03,nav,1,1908,2,, 32185,NJBF000064805,229 N SURREY AVE,Ventnor City,NJ,39.34537393,-74.47654828,RES1,3001,,17,NE,1982,1982,3102,3,1,2026.639076,2026.639076,3507,NO,50.46,65.02,1,-0.89,6106,113.784776,123.531697,133.260588,139.774051,I,Above,Flat,0,5701,,57.73710784,0,1.2,,,,1,1,,0.03,nav,1,1982,3,, 32186,NJBF000060053,118 N MARTINDALE AVE,Ventnor City,NJ,39.33532198,-74.49402616,RES1,3001,,17,NE,1927,1927,3102,2,1,985.7033745,985.7033745,3505,NO,22.57,30.71,3,0.95,6106,113.53426,123.331299,133.040905,139.612272,I,Above,Hip,0,5701,,26.6380813,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 32187,NJBF000059047,10 S BALTIMORE AVE,Ventnor City,NJ,39.33343747,-74.49031717,RES1,3001,,17,NE,1910,1910,3102,3,1,1512.997208,1512.997208,3505,NO,63.44,76.75,3,7.35,6106,113.642274,123.418306,133.131083,139.71464,I,Above,Flat,0,5701,,70.09247058,0,0,,,,1,1,,0.03,nav,1,1910,3,, 32188,NJBF000062435,2 N CAMBRIDGE AVE,Ventnor City,NJ,39.33945566,-74.48057215,RES1,3001,,17,NE,1920,1920,3102,2,1,1701.206704,1701.206704,3505,NO,33.22,42.53,3,1.2,6106,113.774597,123.524914,133.248859,139.801369,I,Above,Hip,0,5701,,37.87268532,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 32189,NJBF000061401,6517 VENTNOR AVE,Ventnor City,NJ,39.33757337,-74.48404772,COM1,3001,,NaN,ME,1912,1912,3401,2,2,1203.371011,1203.371011,3507,NO,36.4,46.3,1,2.91,6106,113.723468,123.483769,133.203671,139.770057,I,Above,Flat,0,NaN,,41.34935566,0,0,,,,1,1,,0.03,nav,1,1912,2,, 32190,NJBF000061682,20 N NEW HAVEN AVE,Ventnor City,NJ,39.33806482,-74.48554746,COM1,3001,,NaN,ME,1960,1960,3401,2,1,5785.998036,5785.998036,3507,NO,26.55,33.2,1,2.59,6106,113.683707,123.451586,133.169956,139.734263,I,Above,Hip,0,NaN,,29.8739761,0,0,,,,1,1,,0.03,nav,1,1960,2,, 32191,NJBF000061529,6601 VENTNOR AVE,Ventnor City,NJ,39.33779743,-74.4858109,COM1,3001,,NaN,ME,1932,1932,3401,2,1,12513.45857,12513.45857,3507,NO,32.59,45.56,1,2.87,6106,113.681531,123.449858,133.167919,139.733688,I,Above,Flat,0,NaN,,39.07646359,0,0,,,,1,1,,0.03,nav,1,1932,2,, 32192,NJBF000065135,311 N SOMERSET AVE,Ventnor City,NJ,39.34623564,-74.47900498,RES1,3001,,45,NE,1930,1930,3102,2,2,1205.54034,1205.54034,3505,NO,23.32,29.43,3,1.35,6106,113.719301,123.478258,133.20419,139.717588,I,Above,Flat,0,5701,,26.37590353,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32193,NJBF000062822,111 N PRINCETON AVE,Ventnor City,NJ,39.34030194,-74.4830167,RES1,3001,,17,NE,1900,1900,3102,2,1,886.1839898,886.1839898,3505,NO,28.81,36.11,3,2.12,6106,113.709284,123.471911,133.193213,139.743971,I,Above,Gable,0,5701,,32.46465376,0,0,,,,1,1,,0.03,nav,1,1900,2,, 32194,NJBF000063573,208 N CAMBRIDGE AVE,Ventnor City,NJ,39.34208573,-74.48269476,RES1,3001,,17,NE,2016,1925,3102,1,1,1443.593719,1443.593719,3505,NO,15.27,30.21,3,4.4,6106,113.692513,123.457945,133.179694,139.720432,I,Above,Gable,0,5701,,22.74082308,0,0,,,,1,1,,0.03,nav,1,2016,1,, 32195,NJBF000063547,206 N CAMBRIDGE AVE,Ventnor City,NJ,39.34201904,-74.48262892,RES1,3001,,17,NE,1925,1925,3102,2,1,1424.591923,1424.591923,3505,NO,35.69,43.81,3,0.04,6106,113.694863,123.459863,133.181684,139.722717,I,Above,Hip,0,5701,,39.74535038,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32196,NJBF000064120,,Ventnor City,NJ,39.34362546,-74.4804935,RES1,3001,,NaN,NE,1969,0,3102,2,1,1733.818818,1733.818818,3505,NO,30.05,44.46,3,5.43,6106,113.720712,123.480327,133.204587,139.734267,I,Above,Hip,0,5701,,37.25493375,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32197,NJBF000064084,,Ventnor City,NJ,39.34352442,-74.48043326,RES1,3001,,NaN,NE,1940,0,3102,2,1,1210.832111,1210.832111,3505,NO,36.18,48.56,3,1.4,6106,113.723371,123.482511,133.20684,139.736979,I,Above,Hip,0,5701,,42.37433475,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32198,NJBF000067699,,Ventnor City,NJ,39.3542092,-74.48412143,RES1,3001,,NaN,NE,1969,0,3103,5,1,2742.61803,2742.61803,3507,NO,73.07,79.35,1,-0.8,6106,113.504206,123.299524,133.018241,139.496299,I,Above,Hip,0,5701,,76.21158755,0,0,,,,1,1,,0.03,nav,1,1969,5,, 32199,NJBF000067087,,Ventnor City,NJ,39.35203495,-74.48864018,RES1,3001,,NaN,NE,1969,0,3103,6,1,2425.720946,2425.720946,3505,NO,107.34,121.61,3,3.98,6106,113.431353,123.242414,132.956614,139.448976,I,Above,Gable,0,5701,,114.4758365,0,0,,,,1,1,,0.03,nav,1,1969,6,, 32200,NJBF000067094,,Ventnor City,NJ,39.35206593,-74.48807325,RES1,3001,,NaN,NE,1969,0,3103,4,1,1643.491367,1643.491367,3505,NO,49,62.34,3,5.18,6106,113.443545,123.252209,132.967017,139.458964,I,Above,Flat,0,5701,,55.6691085,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32201,NJBF000067022,,Ventnor City,NJ,39.35172098,-74.48842517,RES1,3001,,NaN,NE,1969,0,3103,4,1,1715.218939,1715.218939,3505,NO,83.75,92.16,3,7.15,6106,113.440114,123.249691,132.964197,139.458076,I,Above,Flat,0,5701,,87.95601159,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32202,NJBF000067052,,Ventnor City,NJ,39.35186673,-74.4888691,RES1,3001,,NaN,NE,1969,0,3103,4,1,1715.221981,1715.221981,3505,NO,44.4,52.35,3,-2.38,6106,113.428402,123.240159,132.954152,139.447466,I,Above,Hip,0,5701,,48.37269872,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32203,NJBF000064070,5200-04 VENTNOR AVE,Ventnor City,NJ,39.34349401,-74.4707277,COM1,3001,,NaN,ME,1950,1950,3401,2,3,7842.100909,7842.100909,3507,NO,25.05,38.21,1,1.66,6106,113.937598,123.656573,133.392634,139.901156,I,Above,Hip,0,NaN,,31.62752547,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32204,NJBF000060042,5 N LAFAYETTE AVE,Ventnor City,NJ,39.33530734,-74.48959637,RES1,3001,,17,NE,1945,1945,3102,2,1,1167.767725,1167.767725,3505,NO,35.02,45.22,3,5.18,6106,113.632208,123.410212,133.124056,139.700544,I,Above,Gable,0,5701,,40.12323974,0,0,,,,1,1,,0.03,nav,1,1945,2,, 32205,NJBF000065402,411 N OXFORD AVE,Ventnor City,NJ,39.34696717,-74.48044154,RES1,3001,,17,NE,1979,1979,3102,2,1,1854.07731,1854.07731,3505,NO,29.99,38.73,3,7.14,6106,113.678043,123.444524,133.168728,139.680426,I,Above,Hip,0,5701,,34.35670701,0,0,,,,1,1,,0.03,nav,1,1979,2,, 32206,NJBF000060084,104 N SWARTHMORE AVE,Ventnor City,NJ,39.33537112,-74.492596,RES1,3001,,17,NE,1948,1948,3102,1,1,1514.346448,1514.346448,3505,NO,16.09,27.36,3,-1.6,6106,113.56514,123.356159,133.067111,139.640117,I,Above,Hip,0,5701,,21.72690604,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 32207,NJBF000066961,810 N DERBY AVE,Ventnor City,NJ,39.35145731,-74.48734297,RES1,3001,,17,NE,1975,1975,3101,2,1,2231.405128,2231.405128,3505,NO,37.14,49.8,3,3.64,6106,113.467481,123.271918,132.987663,139.482365,I,Above,Hip,0,5701,,43.47341255,0,0,,,,1,1,,0.03,nav,1,1975,2,, 32208,NJBF000060515,101 N MELBOURNE AVE,Ventnor City,NJ,39.33612191,-74.4911195,RES1,3001,,17,NE,1945,1945,3102,2,1,1475.346515,1475.346515,3505,NO,22.98,37.71,3,-1.35,6106,113.587354,123.374025,133.086505,139.657955,I,Above,Hip,0,5701,,30.34538833,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 32209,NJBF000064610,239 N DUDLEY AVE,Ventnor City,NJ,39.3448962,-74.47971459,RES1,3001,,17,NE,1952,1952,3102,2,1,1267.557157,1267.557157,3505,NO,40.8,54.58,3,8.71,6106,113.721151,123.480263,133.20541,139.727093,I,Above,Hip,0,5701,,47.687567,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 32210,NJBF000062187,9 N PORTLAND AVE,Ventnor City,NJ,39.3389529,-74.48259966,RES1,3001,,17,NE,1950,1950,3102,2,1,948.5205349,948.5205349,3505,NO,26.79,36.2,3,2.85,6106,113.736671,123.494286,133.215925,139.773672,I,Above,Flat,0,5701,,31.49399076,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, 32211,NJBF000064929,221 N SUFFOLK AVE,Ventnor City,NJ,39.34570555,-74.47771821,RES1,3001,,17,NE,1958,1958,3102,1,1,1343.055293,1343.055293,3505,NO,15.11,25.66,3,2.16,6106,113.754626,123.507108,133.234588,139.748562,I,Above,Flat,0,5701,,20.38112833,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32212,NJBF000064934,2 N VASSAR SQUARE,Ventnor City,NJ,39.34571135,-74.46733276,RES3A,3001,,17,NE,1958,1958,3301,2,1,3547.284789,3547.284789,3505,NO,21.7,36.01,3,0.08,6106,113.983206,123.69324,133.433791,139.921217,I,Above,Hip,0,5701,,28.85612516,0,1.2,,,,1,1,,0.03,nav,1,1958,2,, 32213,NJBF000064899,314 N OXFORD AVE,Ventnor City,NJ,39.34560769,-74.47983534,RES1,3001,,17,NE,1930,1930,3102,2,1,896.6717737,896.6717737,3505,NO,30.68,39.66,3,7.5,6106,113.709172,123.470296,133.195283,139.713339,I,Above,Gable,0,5701,,35.17172298,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32214,NJBF000064834,405 N CORNWALL AVE,Ventnor City,NJ,39.3454466,-74.48370161,RES1,3001,,17,NE,1962,1962,3102,2,1,1609.499521,1609.499521,3505,NO,43.79,49.34,3,5.59,6106,113.625814,123.402921,133.12351,139.647129,I,Above,Hip,0,5701,,46.56663901,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, 32215,NJBF000064914,5500 CALVERT AVE,Ventnor City,NJ,39.3456555,-74.478068,RES1,3001,,45,NE,1929,1929,3102,2,2,1161.779164,1161.779164,3505,NO,33.04,47.26,3,8.86,6106,113.747569,123.501402,133.228466,139.743347,I,Above,Gable,0,5701,,40.14752423,0,0,,,,1,1,,0.03,nav,1,1929,2,, 32216,NJBF000064906,4800 VENTNOR AVE,Ventnor City,NJ,39.34562802,-74.46649885,RES3B,3001,,NaN,ME,1928,1928,3301,3,1,1695.702289,1695.702289,3504,NO,38.33,49.36,-4,0,6106,114.0026,123.709121,133.450777,139.935904,I,Above,Flat,0,NaN,,43.84695958,0,0,,,,1,1,,0.03,nav,1,1928,3,, 32217,NJBF000064545,220 N SOMERSET AVE,Ventnor City,NJ,39.34475292,-74.47830535,RES1,3001,,17,NE,1985,1985,3102,2,1,1075.640133,1075.640133,3505,NO,27.96,39.22,3,-2.21,6106,113.754151,123.50706,133.233862,139.753965,I,Above,Gable,0,5701,,33.5886004,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 32218,NJBF000064560,224 N OXFORD AVE,Ventnor City,NJ,39.34478654,-74.47918097,RES1,3001,,17,NE,1940,1940,3102,1,1,1221.69128,1221.69128,3505,NO,19.67,30.62,3,2.67,6106,113.734371,123.491013,133.216785,139.738202,I,Above,Hip,0,5701,,25.14233819,0,0,,,,1,1,,0.03,nav,1,1940,1,, 32219,NJBF000059641,3 N BALTIMORE AVE,Ventnor City,NJ,39.3346015,-74.4907915,RES1,3001,,17,NE,1935,1935,3102,1,1,1407.951706,1407.951706,3505,NO,15.78,22.84,3,-1.9,6106,113.615612,123.396836,133.109384,139.687685,I,Above,Gable,0,5701,,19.3080327,0,1.1,,,,1,1,,0.03,nav,1,1935,1,, 32220,NJBF000064419,212 N OXFORD AVE,Ventnor City,NJ,39.34443865,-74.47889314,RES1,3001,,17,NE,1929,1929,3102,1,1,1215.153111,1215.153111,3505,NO,13.58,25.54,3,2.96,6106,113.7453,123.499989,133.226102,139.748902,I,Above,Hip,0,5701,,19.56486602,0,0,,,,1,1,,0.03,nav,1,1929,1,, 32221,NJBF000064396,226 N DUDLEY AVE,Ventnor City,NJ,39.34438533,-74.47975843,RES1,3001,,45,NE,1930,1930,3102,2,2,2796.30632,2796.30632,3505,NO,35.28,47.84,3,7.78,6106,113.726917,123.485109,133.210215,139.734706,I,Above,Gable,0,5701,,41.55555512,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32222,NJBF000059612,22 S NEWARK AVE,Ventnor City,NJ,39.334547,-74.48687434,RES1,3001,,45,NE,1946,1946,3102,2,2,1817.721327,1817.721327,3505,NO,32.78,42.34,3,4.61,6110,113.702717,123.467125,133.183564,139.765601,I,Above,Gable,0,5701,,37.55761312,0,0,,,,1,1,,0.35,nav,1,1946,2,, 32223,NJBF000059603,12S LAFAYETTE AVE,Ventnor City,NJ,39.33453333,-74.48896731,RES1,3001,,17,NE,1927,1927,3102,2,1,1793.729086,1793.729086,3505,NO,30.3,40.03,3,4.29,6106,113.656788,123.430046,133.144373,139.72487,I,Above,Hip,0,5701,,35.16407698,0,0,,,,1,1,,0.03,nav,1,1927,2,, 32224,NJBF000064337,4800 ATLANTIC AVE,Ventnor City,NJ,39.34424246,-74.46544778,RES1,3001,,17,NE,1930,1930,3102,2,1,1450.092196,1450.092196,3504,NO,21.15,34.07,-4,0,6106,114.043748,123.743115,133.486107,139.974062,I,Above,Gable,0,5701,,27.61294422,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32225,NJBF000064284,4901 ATLANTIC AVE,Ventnor City,NJ,39.34410072,-74.46678379,RES1,3001,,17,NE,1910,1910,3102,2,1,1847.050683,1847.050683,3504,NO,37.92,45.42,-4,0,6106,114.016277,123.720673,133.461879,139.955035,I,Above,Hip,0,5701,,41.67339085,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 32226,NJBF000064218,312 N CAMBRIDGE AVE,Ventnor City,NJ,39.34391838,-74.48386993,RES1,3001,,17,NE,1960,1960,3102,1,1,1438.454276,1438.454276,3505,NO,16.28,25.65,3,5.47,6106,113.642234,123.416754,133.137214,139.669166,I,Above,Flat,0,5701,,20.96836362,0,0,,,,1,1,,0.03,nav,1,1960,1,, 32227,NJBF000064331,5607 MONMOUTH AVE,Ventnor City,NJ,39.34422043,-74.47811365,RES1,3001,,17,NE,1940,1940,3102,1,1,854.4091176,854.4091176,3505,NO,12.74,20.01,3,0.8,6106,113.76537,123.516332,133.243362,139.765964,I,Above,Hip,0,5701,,16.37059708,0,0,,,,1,1,,0.03,nav,1,1940,1,, 32228,NJBF000064129,103 N SUFFOLK AVE,Ventnor City,NJ,39.343646,-74.476017,RES1,3001,,17,NE,1960,1960,3102,1,1,1106.199315,1106.199315,3505,NO,19.66,31.32,3,7.05,6106,113.819167,123.560166,133.289688,139.811126,I,Above,Hip,0,5701,,25.48793919,0,0,,,,1,1,,0.03,nav,1,1960,1,, 32229,NJBF000064200,18 S OAKLAND AVE,Ventnor City,NJ,39.34387295,-74.46870316,RES1,3001,,47,NE,1955,1955,3102,2,2,1799.415098,1799.415098,3504,NO,23.51,32.13,-4,0,6106,113.977125,123.688734,133.427415,139.9279,I,Above,Gable,0,5701,,27.81986204,0,0,,,,1,1,,0.03,nav,1,1955,2,, 32230,NJBF000064157,5700-5702 MONMOUTH AVE,Ventnor City,NJ,39.34373016,-74.47831711,RES1,3001,,45,NE,1976,1976,3102,2,2,1296.841028,1296.841028,3505,NO,29.15,41.17,3,-0.52,6106,113.767347,123.518086,133.244873,139.770462,I,Above,Flat,0,5701,,35.16109139,0,0,,,,1,1,,0.03,nav,1,1976,2,, 32231,NJBF000063966,201 N DERBY AVE,Ventnor City,NJ,39.34322216,-74.48018495,RES1,3001,,NaN,NE,1958,1958,3102,1,1,1372.709592,1372.709592,3505,NO,19.9,28.15,3,4.39,6106,113.73284,123.490269,133.214879,139.746286,I,Above,Flat,0,5701,,24.02422271,0,1.2,,,,1,1,,0.03,nav,1,1958,1,, 32232,NJBF000064192,108 N SUFFOLK AVE,Ventnor City,NJ,39.34383093,-74.47670383,RES1,3001,,17,NE,1956,1956,3102,1,1,1875.066054,1875.066054,3505,NO,19.13,27.83,3,7.77,6106,113.801587,123.545838,133.274539,139.796464,I,Above,Hip,0,5701,,23.48350672,0,1.1,,,,1,1,,0.03,nav,1,1956,1,, 32233,NJBF000063787,5405 VENTNOR AVE,Ventnor City,NJ,39.34269549,-74.47346666,RES1,3001,,17,NE,1919,1919,3102,2,1,2203.96685,2203.96685,3505,NO,29.51,41.97,3,2.15,6106,113.887882,123.616263,133.348851,139.869057,I,Above,Hip,0,5701,,35.7405665,0,1.2,,,,1,1,,0.03,nav,1,1919,2,, 32234,NJBF000063612,453-455 BERKSHIRE DR,Ventnor City,NJ,39.3421923,-74.49368086,RES1,3001,,45,NE,1970,1970,3102,2,2,1866.770189,1866.770189,3505,NO,28.71,39.67,3,6.24,6106,113.44807,123.260887,132.971268,139.512643,I,Above,Flat,0,5701,,34.18877472,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32235,NJBF000063663,5611 WINCHESTER AVE,Ventnor City,NJ,39.34233225,-74.47582662,RES1,3001,,18,NE,1910,1910,3102,2,1,2388.234246,2388.234246,3505,NO,30.07,42.66,3,-0.87,6106,113.840724,123.578007,133.307703,139.835625,I,Above,Hip,0,5701,,36.3657999,0,0,,,,1,1,,0.03,nav,1,1910,2,, 32236,NJBF000063470,7004 FULTON AVE,Ventnor City,NJ,39.34180935,-74.49429738,RES1,3001,,35,NE,1980,1980,3102,2,1,2095.493939,2095.493939,3505,NO,43.05,53.44,3,4.56,6106,113.439571,123.254173,132.963974,139.506724,I,Above,Gable,0,5701,,48.24516258,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32237,NJBF000063497,7000 FULTON AVE,Ventnor City,NJ,39.34187794,-74.49417561,RES1,3001,,35,NE,1980,1980,3102,2,1,1208.715021,1208.715021,3505,NO,31,37.36,3,-0.66,6106,113.441324,123.25556,132.965475,139.507992,I,Above,Hip,0,5701,,34.18282118,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32238,NJBF000063110,308-310 N WISSAHICKON AV,Ventnor City,NJ,39.34090967,-74.4919571,RES1,3001,,45,NE,1972,1972,3102,2,2,1563.001816,1563.001816,3505,NO,34.12,48.29,3,5.77,6106,113.503504,123.305807,133.017858,139.566417,I,Above,Gable,0,5701,,41.20016319,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32239,NJBF000067095,713 N SURREY AVE,Ventnor City,NJ,39.35206617,-74.48194359,RES3A,3001,,27,NE,1980,1980,3301,2,1,902.3039794,902.3039794,3505,YES,35.41,44.32,3,-0.51,6106,113.579405,123.361868,133.083618,139.570433,I,Above,Gable,0,5701,,39.86657908,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32240,NJBF000064594,304 N DORSET AVE,Ventnor City,NJ,39.34486455,-74.48113134,RES1,3001,,NaN,NE,1969,0,3102,1,1,1202.732445,1202.732445,3505,NO,17.86,28.41,3,-0.57,6106,113.690285,123.455279,133.178794,139.702672,I,Above,Hip,0,5701,,23.13185321,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 32241,NJBF000064252,4 S NASHVILLE AVE,Ventnor City,NJ,39.34401279,-74.46967636,RES1,3001,,17,NE,1925,1925,3102,2,1,1775.769389,1775.769389,3507,NO,26.51,31.55,1,-0.55,6106,113.953906,123.669752,133.407184,139.91002,I,Above,Gable,0,5701,,29.03184427,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32242,NJBF000066455,700 N DORSET AVE,Ventnor City,NJ,39.34978755,-74.48515443,RES1,3001,,17,NE,1977,1977,3101,1,1,1896.126948,1896.126948,3505,NO,9.66,21.13,3,-1.9,6106,113.537342,123.329321,133.047812,139.549722,I,Above,Gable,0,5701,,15.39782253,0,0,,,,1,1,,0.03,nav,1,1977,1,, 32243,NJBF000065960,5800 FULTON AVE,Ventnor City,NJ,39.34854865,-74.4831426,RES1,3001,,17,NE,1981,1981,3102,1,1,2836.611275,2836.611275,3507,NO,13.06,20.91,1,1.29,6106,113.597819,123.37886,133.099798,139.606396,I,Above,Hip,0,5701,,16.98282805,0,0,,,,1,1,,0.03,nav,1,1981,1,, 32244,NJBF000065553,417 N DUDLEY AVE,Ventnor City,NJ,39.3474512,-74.48170214,RES1,3001,,17,NE,1994,1994,3102,2,1,1939.181697,1939.181697,3505,NO,35.35,44.1,3,-2.55,6106,113.643905,123.416673,133.139378,139.650166,I,Above,Flat,0,5701,,39.7262258,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 32245,NJBF000062071,117 N TROY AVE,Ventnor City,NJ,39.33874838,-74.48685813,RES1,3001,,17,NE,1912,1912,3102,2,1,1018.162965,1018.162965,3505,NO,28.05,33.62,3,-0.36,6106,113.645488,123.420637,133.137708,139.698586,I,Above,Flat,0,5701,,30.83485583,0,0,,,,1,1,,0.03,nav,1,1912,2,, 32246,NJBF000061558,7024-7026 CALVERT AVE,Ventnor City,NJ,39.33785638,-74.4931345,RES1,3001,,45,NE,1970,1970,3102,2,2,1974.420954,1974.420954,3505,NO,30.71,37.5,3,2.01,6106,113.519009,123.318843,133.029596,139.591415,I,Above,Gable,0,5701,,34.10136482,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32247,NJBF000061545,204 N WYOMING AVE,Ventnor City,NJ,39.3378302,-74.49127572,RES1,3001,,17,NE,1960,1960,3102,2,1,2071.411467,2071.411467,3505,NO,36.04,44.84,3,5.39,6106,113.560422,123.352182,133.064718,139.628313,I,Above,Hip,0,5701,,40.43917547,0,0,,,,1,1,,0.03,nav,1,1960,2,, 32248,NJBF000061522,114 N WISSAHICKON AVE,Ventnor City,NJ,39.33778775,-74.4887425,RES1,3001,,17,NE,1930,1930,3102,1,1,1985.086221,1985.086221,3505,NO,16.91,31.67,3,4.83,6106,113.616941,123.397734,133.112776,139.678126,I,Above,Hip,0,5701,,24.29338724,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32249,NJBF000060620,7005 WINCHESTER AVE,Ventnor City,NJ,39.3362885,-74.490263,RES1,3001,,17,NE,1930,1930,3102,2,1,1197.564556,1197.564556,3505,NO,30.29,42.6,3,0.12,6106,113.603945,123.387386,133.100726,139.67221,I,Above,Hip,0,5701,,36.44532227,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32250,NJBF000062628,6601 MONMOUTH AVE,Ventnor City,NJ,39.33986278,-74.48666162,RES1,3001,,NaN,NE,1990,1990,3102,2,1,3361.555737,3361.555737,3505,NO,18.45,28.21,3,-2.61,6106,113.634717,123.411758,133.129123,139.684165,I,Above,Flat,0,5701,,23.33123486,0,0,,,,1,1,,0.03,nav,1,1990,2,, 32251,NJBF000062413,105 S DUDLEY AVE,Ventnor City,NJ,39.3393995,-74.4746365,RES1,3001,,17,NE,1929,1929,3102,2,1,530.5760204,530.5760204,3505,NO,25.43,39.3,3,-1.07,6106,113.906055,123.631592,133.36244,139.902637,I,Above,Gable,0,5701,,32.36576393,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, 32252,NJBF000062331,,Ventnor City,NJ,39.33923667,-74.48789853,RES1,3001,,NaN,NE,1928,0,3102,2,1,3732.409166,3732.409166,3505,NO,30.64,38.05,3,5.61,6106,113.615862,123.396659,133.112696,139.670999,I,Above,Flat,0,5701,,34.34200119,0,0,,,,1,1,,0.03,nav,1,1928,2,, 32253,NJBF000062242,11 N PORTLAND AVE,Ventnor City,NJ,39.33907589,-74.48267473,RES1,3001,,47,NE,1950,1950,3102,2,2,1807.159123,1807.159123,3505,NO,31.05,43.17,3,-0.45,6106,113.733354,123.491585,133.213155,139.770299,I,Above,Hip,0,5701,,37.11173047,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32254,NJBF000062358,112 N BRYANT AVE,Ventnor City,NJ,39.33928282,-74.48552637,RES1,3001,,17,NE,1924,1924,3102,2,1,1234.091208,1234.091208,3505,NO,34.86,44.08,3,-0.73,6106,113.667644,123.438442,133.156958,139.71479,I,Above,Hip,0,5701,,39.46896711,0,0,,,,1,1,,0.03,nav,1,1924,2,, 32255,NJBF000061939,110 N RICHARDS AVE,Ventnor City,NJ,39.33851827,-74.48785401,RES1,3001,,17,NE,1947,1947,3102,1,1,1347.819235,1347.819235,3505,NO,21.58,33.21,3,4.18,6106,113.626621,123.405448,133.121469,139.683441,I,Above,Hip,0,5701,,27.39624017,0,1.1,,,,1,1,,0.03,nav,1,1947,1,, 32256,NJBF000063982,19 S HILLSIDE AVE,Ventnor City,NJ,39.34326725,-74.46944707,RES1,3001,,17,NE,1925,1925,3102,2,1,1780.118209,1780.118209,3505,NO,40.58,54.02,3,3.12,6110,113.968743,123.682024,133.419707,139.92543,I,Above,Flat,0,5701,,47.29790213,0,0,,,,1,1,,0.35,nav,1,1925,2,, 32257,NJBF000060924,208 N SWARTHMORE AVE,Ventnor City,NJ,39.336765,-74.49419903,RES1,3001,,17,NE,1974,1974,3102,1,1,1855.212236,1855.212236,3505,NO,20.22,29.51,3,5.56,6106,113.510476,123.312088,133.021728,139.587053,I,Above,Hip,0,5701,,24.86451889,0,1.1,,,,1,1,,0.03,nav,1,1974,1,, 32258,NJBF000060835,206 N SWARTHMORE AVE,Ventnor City,NJ,39.3366176,-74.49405964,RES1,3001,,17,NE,1968,1968,3102,2,1,1577.723216,1577.723216,3505,NO,28.26,41.85,3,0.86,6106,113.515574,123.316201,133.025953,139.592055,I,Above,Gable,0,5701,,35.05542854,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, 32259,NJBF000066545,714 N BURGHLEY AVE,Ventnor City,NJ,39.35002593,-74.48703666,RES1,3001,,17,NE,1975,1975,3101,2,1,1031.424383,1031.424383,3505,NO,28.83,35.72,3,-1.3,6106,113.49255,123.293052,133.00942,139.511352,I,Above,Gable,0,5701,,32.27818048,0,0,,,,1,1,,0.03,nav,1,1975,2,, 32260,NJBF000062184,123 N TROY AVE,Ventnor City,NJ,39.33894885,-74.48702336,RES1,3001,,17,NE,1942,1942,3102,1,1,1078.242155,1078.242155,3505,NO,15.33,28.52,3,3.45,6106,113.639116,123.415465,133.132383,139.69222,I,Above,Hip,0,5701,,21.92713017,0,0,,,,1,1,,0.03,nav,1,1942,1,, 32261,NJBF000059695,7006 VENTNOR AVE,Ventnor City,NJ,39.3346985,-74.488985,RES1,3001,,17,NE,1954,1954,3102,3,1,1221.19857,1221.19857,3505,NO,45.38,51.26,3,-1.77,6106,113.654092,123.427871,133.142211,139.721958,I,Above,Hip,0,5701,,48.32113416,0,0,,,,1,1,,0.03,nav,1,1954,3,, 32262,NJBF000061458,104 N BUFFALO AVE,Ventnor City,NJ,39.337677,-74.487881,RES1,3001,,17,NE,1922,1922,3102,2,1,876.9990824,876.9990824,3505,NO,35.29,49.02,3,-1.38,6106,113.637487,123.414318,133.130223,139.696434,I,Above,Gable,0,5701,,42.15222682,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 32263,NJBF000062638,19 N SACRAMENTO AVE,Ventnor City,NJ,39.33989734,-74.48193088,RES1,3001,,17,NE,1940,1940,3102,2,1,1529.805814,1529.805814,3505,NO,31.27,43.3,3,5.14,6106,113.738692,123.495775,133.218243,139.770098,I,Above,Gable,0,5701,,37.28413777,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32264,NJBF000062619,17 N SACRAMENTO AVE,Ventnor City,NJ,39.33981905,-74.48185739,RES1,3001,,17,NE,1930,1930,3102,1,1,1662.27437,1662.27437,3505,NO,18.82,27.57,3,6.43,6106,113.741374,123.497958,133.220502,139.7727,I,Above,Hip,0,5701,,23.19374741,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32265,NJBF000062674,21 N SACRAMENTO AVE,Ventnor City,NJ,39.33998431,-74.4819701,RES1,3001,,17,NE,1930,1930,3102,2,1,1937.277745,1937.277745,3505,NO,32.98,46.66,3,-3,6106,113.736661,123.494116,133.216549,139.767971,I,Above,Flat,0,5701,,39.82104637,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32266,NJBF000060662,20 N ROSBOROUGH AVE,Ventnor City,NJ,39.33636618,-74.48919151,RES1,3001,,45,NE,1940,1940,3102,2,2,1841.331305,1841.331305,3505,NO,30.21,42.43,3,-1.84,6106,113.626519,123.405582,133.119993,139.691944,I,Above,Hip,0,5701,,36.32075125,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32267,NJBF000060708,24 N ROSBOROUGH AVE,Ventnor City,NJ,39.33642924,-74.48927905,RES1,3001,,17,NE,1910,1910,3102,2,1,1584.36507,1584.36507,3505,NO,34.93,43.9,3,3.32,6106,113.623734,123.403331,133.117665,139.68926,I,Above,Hip,0,5701,,39.41517515,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 32268,NJBF000061675,7016-7018 CALVERT AVE,Ventnor City,NJ,39.33804937,-74.49280513,RES1,3001,,NaN,NE,1970,1970,3102,2,1,1861.062399,1861.062399,3505,NO,26.4,40.18,3,1.6,6106,113.523637,123.322542,133.033625,139.594903,I,Above,Flat,0,5701,,33.28583048,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32269,NJBF000060837,104 N WYOMING AVE,Ventnor City,NJ,39.33661839,-74.49033453,RES1,3001,,17,NE,1930,1930,3102,1,1,1033.777067,1033.777067,3505,NO,18.95,29.42,3,4.18,6106,113.597829,123.382435,133.09575,139.665674,I,Above,Hip,0,5701,,24.18431181,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32270,NJBF000064957,5509 CALVERT AVE,Ventnor City,NJ,39.34577372,-74.47859004,RES1,3001,,17,NE,1940,1940,3102,1,1,932.1507006,932.1507006,3505,NO,22.58,28.91,3,7.71,6106,113.734492,123.490753,133.217195,139.732357,I,Above,Hip,0,5701,,25.74323677,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 32271,NJBF000062454,226 N ROSBOROUGH AVE,Ventnor City,NJ,39.33950078,-74.49236242,RES1,3001,,17,NE,1950,1950,3102,1,1,1528.473828,1528.473828,3505,NO,23.45,32.27,3,6.09,6106,113.513625,123.314255,133.025864,139.580858,I,Above,Flat,0,5701,,27.85820245,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 32272,NJBF000066896,615 N SURREY AVE,Ventnor City,NJ,39.35119387,-74.48122293,RES3A,3001,,17,NE,1975,1975,3301,2,1,1296.607246,1296.607246,3505,NO,23.37,35.31,3,-1.67,6106,113.606426,123.384296,133.107058,139.597525,I,Above,Gable,0,5701,,29.33671571,0,0,,,,1,1,,0.03,nav,1,1975,2,, 32273,NJBF000064933,415 N CAMBRIDGE AVE,Ventnor City,NJ,39.34570991,-74.48483839,RES1,3001,,17,NE,1964,1964,3102,1,1,1382.596014,1382.596014,3505,NO,15.84,22.49,3,0.11,6106,113.597234,123.37973,133.099047,139.622207,I,Above,Hip,0,5701,,19.16606284,0,0,,,,1,1,,0.03,nav,1,1964,1,, 32274,NJBF000059202,104 S NEWARK AVE,Ventnor City,NJ,39.33376641,-74.48617951,RES1,3001,,17,NE,1965,1965,3102,2,1,1606.985395,1606.985395,3505,NO,28.51,35.66,3,5.44,6110,113.728821,123.488194,133.205182,139.791351,I,Above,Hip,0,5701,,32.0836693,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 32275,NJBF000063044,6007 WINCHESTER AVE,Ventnor City,NJ,39.34078096,-74.47969192,RES1,3001,,17,NE,1940,1940,3102,2,1,1483.018012,1483.018012,3505,NO,43.26,54.8,3,7.34,6106,113.776206,123.52599,133.251053,139.794945,I,Above,Flat,0,5701,,49.02862726,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32276,NJBF000060065,8-10 S WISSAHICKON,Ventnor City,NJ,39.33533783,-74.48671105,RES1,3001,,45,NE,1925,1925,3102,2,2,2537.380913,2537.380913,3505,NO,30.4,39.34,3,-2.26,6106,113.695386,123.461201,133.177957,139.756225,I,Above,Flat,0,5701,,34.87233691,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32277,NJBF000063058,6403 MONMOUTH AVE,Ventnor City,NJ,39.34080443,-74.48462181,RES1,3001,,17,NE,1910,1910,3102,2,1,1179.480029,1179.480029,3505,NO,21.93,28.8,3,0.07,6106,113.667105,123.437716,133.157304,139.706561,I,Above,Gable,0,5701,,25.36258705,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 32278,NJBF000063054,103 S SUFFOLK AVE,Ventnor City,NJ,39.340792,-74.4722075,RES1,3001,,17,NE,1926,1926,3102,3,2,2593.789108,2593.789108,3505,NO,47.17,52.83,3,8.96,6106,113.940859,123.659732,133.393713,139.919933,I,Above,Hip,0,5701,,49.99898168,0,1.2,,,,1,1,,0.03,nav,1,1926,3,, 32279,NJBF000064156,131 N OXFORD AVE,Ventnor City,NJ,39.34372896,-74.47785489,RES1,3001,,16,NE,1930,1930,3102,1,1,1540.228222,1540.228222,3505,NO,16.91,22.96,3,-1.34,6106,113.77755,123.526362,133.253693,139.778436,I,Above,Gable,0,5701,,19.93754795,0,0,,,,1,1,,0.03,nav,1,1930,1,, 32280,NJBF000064679,10 S VASSAR SQUARE,Ventnor City,NJ,39.34505448,-74.46682124,RES3B,3001,,17,ME,1928,1928,3301,2,1,1805.560549,1805.560549,3504,NO,33.15,39,-4,0,6106,114.003007,123.709602,133.450809,139.939665,I,Above,Gable,0,NaN,,36.07447849,0,0,,,,1,1,,0.03,nav,1,1928,2,, 32281,NJBF000063111,16 S SOMERSET AVE,Ventnor City,NJ,39.34091118,-74.47414505,RES1,3001,,18,NE,1925,1925,3102,3,1,2083.36345,2083.36345,3505,NO,56.53,64.64,3,-0.15,6106,113.896649,123.623737,133.355353,139.886476,I,Above,Hip,0,5701,,60.58446516,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, 32282,NJBF000067167,715 N VICTORIA AVE,Ventnor City,NJ,39.35241001,-74.48148166,RES3A,3001,,27,NE,1980,1980,3301,2,1,937.2666263,937.2666263,3505,NO,33.23,42.17,3,4.22,6106,113.585282,123.366391,133.088616,139.573076,I,Above,Gable,0,5701,,37.69708544,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32283,NJBF000061799,6904 VENTNOR GDNS PL,Ventnor City,NJ,39.33826963,-74.49074695,RES1,3001,,17,NE,1952,1952,3102,2,1,1720.449147,1720.449147,3505,NO,23.63,33.88,3,-0.35,6106,113.566096,123.356695,133.06979,139.631711,I,Above,Hip,0,5701,,28.75627717,0,0,,,,1,1,,0.03,nav,1,1952,2,, 32284,NJBF000061400,121 N ROSBOROUGH AVE,Ventnor City,NJ,39.33757258,-74.48963172,RES1,3001,,45,NE,1950,1950,3102,2,2,1452.640713,1452.640713,3505,NO,35.94,43.51,3,6.84,6106,113.60025,123.384301,133.098429,139.664369,I,Above,Hip,0,5701,,39.72513061,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32285,NJBF000062940,102 N CAMBRIDGE AVE,Ventnor City,NJ,39.34055352,-74.48144164,RES1,3001,,17,NE,1930,1930,3102,1,1,1849.246856,1849.246856,3505,NO,12.12,17.47,3,-2.01,6106,113.740652,123.497241,133.220307,139.767971,I,Above,Flat,0,5701,,14.79688735,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32286,NJBF000067154,716 N VICTORIA AVE,Ventnor City,NJ,39.3523505,-74.48189017,RES3A,3001,,27,NE,1980,1980,3301,2,1,863.2739845,863.2739845,3505,NO,31.1,43.67,3,4.83,6106,113.576996,123.359726,133.081482,139.56675,I,Above,Flat,0,5701,,37.38868129,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32287,NJBF000059082,107 S ROSBOROUGH AVE,Ventnor City,NJ,39.33351096,-74.48627179,RES1,3001,,18,NE,1962,1962,3102,2,1,2091.099047,2091.099047,3505,NO,29.84,39.83,3,6.53,6110,113.730335,123.489406,133.206242,139.793557,I,Above,Hip,0,5701,,34.83101271,0,1.2,,,,1,1,,0.35,nav,1,1962,2,, 32288,NJBF000067155,808 MARSHALL CT,Ventnor City,NJ,39.35235102,-74.48577473,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,15719.96525,15719.96525,3505,NO,38.04,46.68,3,0.11,6106,113.490916,123.290186,133.007473,139.496534,I,Above,Flat,0,NaN,,42.36264675,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32289,NJBF000066988,808 MARSHALL CT,Ventnor City,NJ,39.35161109,-74.48588044,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,8792.860169,8792.860169,3505,NO,17.37,26.99,3,-0.91,6106,113.497971,123.296393,133.013726,139.506695,I,Above,Flat,0,NaN,,22.18173242,0,0,,,,1,1,,0.03,nav,1,1972,1,, 32290,NJBF000067032,808 MARSHALL CT,Ventnor City,NJ,39.35176627,-74.48544193,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,9579.222281,9579.222281,3505,NO,17.76,32.49,3,2.66,6106,113.505713,123.302534,133.020325,139.512159,I,Above,Flat,0,NaN,,25.12303995,0,0,,,,1,1,,0.03,nav,1,1972,1,, 32291,NJBF000067074,808 MARSHALL CT,Ventnor City,NJ,39.35197256,-74.48458998,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,7436.062849,7436.062849,3505,NO,10.85,20.9,3,0.09,6106,113.521973,123.315515,133.034226,139.524278,I,Above,Flat,0,NaN,,15.87553862,0,0,,,,1,1,,0.03,nav,1,1972,1,, 32292,NJBF000067024,808 MARSHALL CT,Ventnor City,NJ,39.35172898,-74.48490199,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,4908.043369,4908.043369,3505,NO,33.2,44.32,3,-2.89,6106,113.518153,123.312598,133.031007,139.522595,I,Above,Flat,0,NaN,,38.75771008,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32293,NJBF000067110,808 MARSHALL CT,Ventnor City,NJ,39.35214102,-74.48421421,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,7052.936264,7052.936264,3505,NO,27.97,33.43,3,-0.25,6106,113.528177,123.32041,133.039513,139.528352,I,Above,Flat,0,NaN,,30.70159928,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32294,NJBF000067164,808 MARSHALL CT,Ventnor City,NJ,39.35240173,-74.48388231,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,9850.542886,9850.542886,3505,NO,18.67,29.79,3,7.93,6106,113.532232,123.323503,133.042931,139.530099,I,Above,Flat,0,NaN,,24.23108085,0,0,,,,1,1,,0.03,nav,1,1972,1,, 32295,NJBF000067280,808 MARSHALL CT,Ventnor City,NJ,39.35288486,-74.48315038,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,7582.809935,7582.809935,3505,NO,20.11,25.39,3,5.4,6106,113.542352,123.331339,133.051506,139.535426,I,Above,Flat,0,NaN,,22.75017585,0,0,,,,1,1,,0.03,nav,1,1972,1,, 32296,NJBF000067171,808 MARSHALL CT,Ventnor City,NJ,39.3524338,-74.48454197,RES3C,3001,,NaN,ME,1972,1972,3301,2,1,7257.03251,7257.03251,3505,NO,30.64,44.76,3,6.75,6106,113.517201,123.311341,133.030006,139.517623,I,Above,Flat,0,NaN,,37.69773052,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32297,NJBF000067327,808 MARSHALL CT,Ventnor City,NJ,39.35309349,-74.48450329,RES3C,3001,,NaN,ME,1972,1972,3301,1,1,8593.862537,8593.862537,3505,NO,13.61,20.62,3,-2.34,6106,113.50975,123.304849,133.023405,139.507576,I,Above,Flat,0,NaN,,17.11559781,0,0,,,,1,1,,0.03,nav,1,1972,1,, 32298,NJBF000067293,719 N LITTLE ROCK AVE,Ventnor City,NJ,39.35292733,-74.48113239,RES3A,3001,,27,NE,1980,1980,3301,2,1,1065.934981,1065.934981,3505,NO,31.59,42.51,3,-2.22,6106,113.586508,123.367026,133.089558,139.57089,I,Above,Gable,0,5701,,37.04650697,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32299,NJBF000063071,103 N CAMBRIDGE AVE,Ventnor City,NJ,39.34084032,-74.48122743,RES1,3001,,17,NE,1930,1930,3102,1,1,1531.998852,1531.998852,3505,NO,22.32,33.21,3,8.8,6106,113.741562,123.49792,133.221247,139.767071,I,Above,Hip,0,5701,,27.76898185,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32300,NJBF000063018,6115 WINCHESTER AVE,Ventnor City,NJ,39.34071104,-74.48112012,RES1,3001,,17,NE,1935,1935,3102,2,1,2101.036617,2101.036617,3505,NO,30.63,36.71,3,5.15,6106,113.74565,123.501256,133.224695,139.771083,I,Above,Hip,0,5701,,33.67481694,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 32301,NJBF000059051,7103 ATLANTIC AVE,Ventnor City,NJ,39.33344896,-74.48870455,RES1,3001,,17,NE,1930,1930,3102,2,1,1315.988634,1315.988634,3505,NO,35.57,40.96,3,0.59,6110,113.677619,123.446826,133.16119,139.7466,I,Above,Flat,0,5701,,38.26410206,0,0,,,,1,1,,0.35,nav,1,1930,2,, 32302,NJBF000062835,5401 BOARDWALK,Ventnor City,NJ,39.34033285,-74.47126125,RES1,3001,,19,NE,1999,1999,3102,3,1,2428.853835,2428.853835,3505,NO,50.2,62.71,3,-0.49,6106,113.967772,123.681715,133.416818,139.942363,I,Above,Hip,0,5701,,56.45826049,0,1.2,,,,1,1,,0.03,nav,1,1999,3,, 32303,NJBF000067056,5301 WELLINGTON AVE,Ventnor City,NJ,39.35189956,-74.48096722,COM1,3003,59,NaN,ME,1972,1972,3401,1,1,2866.092726,2866.092726,3507,NO,12.06,24.57,1,-0.94,6106,113.603131,123.381178,133.104113,139.590565,I,Above,Gable,0,NaN,,18.31543274,0,0,,,,1,1,,0.03,nav,1,1972,1,, 32304,NJBF000060232,109 N SWARTHMORE AVE,Ventnor City,NJ,39.33562216,-74.49235012,RES1,3001,,17,NE,1925,1925,3102,2,1,807.3895667,807.3895667,3505,NO,21.94,29.17,3,-0.22,6106,113.567093,123.357725,133.068949,139.641216,I,Above,Hip,0,5701,,25.55309205,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32305,NJBF000066523,612 N OXFORD AVE,Ventnor City,NJ,39.3499725,-74.4833605,RES1,3001,,17,NE,1970,1970,3102,2,1,1023.603258,1023.603258,3507,NO,31.8,46.31,1,-0.15,6106,113.574697,123.359379,133.079865,139.579197,I,Above,Gable,0,5701,,39.05501356,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32306,NJBF000059657,107 S RICHARDS AVE,Ventnor City,NJ,39.33462902,-74.48424189,RES1,3001,,17,NE,1925,1925,3102,2,1,2107.394186,2107.394186,3505,NO,19.93,29.39,3,-1.7,6106,113.759555,123.513064,133.232258,139.814542,I,Above,Hip,0,5701,,24.66021749,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32307,NJBF000066981,,Ventnor City,NJ,39.35157307,-74.48951286,RES1,3001,,NaN,NE,1969,0,3103,5,1,2215.281918,2215.281918,3505,NO,59.57,65.59,3,5.43,6106,113.417842,123.23187,132.945241,139.440283,I,Above,Hip,0,5701,,62.58254978,0,0,,,,1,1,,0.03,nav,1,1969,5,, 32308,NJBF000066978,,Ventnor City,NJ,39.3515425,-74.489166,RES1,3001,,NaN,NE,1969,0,3103,6,1,2082.38097,2082.38097,3505,NO,78.47,90.98,3,2.77,6106,113.425929,123.238397,132.952146,139.447227,I,Above,Hip,0,5701,,84.72663569,0,0,,,,1,1,,0.03,nav,1,1969,6,, 32309,NJBF000066687,606 N SURREY AVE,Ventnor City,NJ,39.35047099,-74.48113981,RES1,3001,,17,NE,1975,1975,3102,2,1,1164.066549,1164.066549,3507,NO,29.28,44.07,1,2.02,6106,113.617474,123.393678,133.116659,139.610801,I,Above,Gable,0,5701,,36.67626426,0,0,,,,1,1,,0.03,nav,1,1975,2,, 32310,NJBF000060638,202 N SWARTHMORE AVE,Ventnor City,NJ,39.33631303,-74.4937631,RES1,3001,,17,NE,1974,1974,3102,1,1,1526.522379,1526.522379,3505,NO,11.54,17.9,3,-2.78,6106,113.526345,123.324887,133.034878,139.602601,I,Above,Gable,0,5701,,14.72200261,0,0,,,,1,1,,0.03,nav,1,1974,1,, 32311,NJBF000060559,200 N SWARTHMORE AVE,Ventnor City,NJ,39.33618877,-74.49364985,RES1,3001,,17,NE,2007,2007,3102,2,1,1189.068709,1189.068709,3505,NO,44.95,58.04,3,6.69,6106,113.530553,123.328282,133.038362,139.606732,I,Above,Flat,0,5701,,51.49449345,0,0,,,,1,1,,0.03,nav,1,2007,2,, 32312,NJBF000066296,714 N CAMBRIDGE AVE,Ventnor City,NJ,39.34941189,-74.48830886,RES1,3001,,17,NE,1969,1969,3101,2,1,1704.725686,1704.725686,3505,NO,32.04,42.72,3,3.37,6106,113.47223,123.277055,132.992157,139.497866,I,Above,Gable,0,5701,,37.37912363,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, 32313,NJBF000066750,705-709 N DUDLEY AVE,Ventnor City,NJ,39.35066034,-74.48411993,RES3C,3001,,NaN,ME,1965,1965,3301,1,1,6276.061817,6276.061817,3505,NO,23.12,37.48,3,3.8,6106,113.549089,123.338274,133.057778,139.554243,I,Above,Hip,0,NaN,,30.30089589,0,0,,,,1,1,,0.03,nav,1,1965,1,, 32314,NJBF000066916,705-709 N DUDLEY AVE,Ventnor City,NJ,39.35129009,-74.48462431,RES3C,3001,,NaN,ME,1965,1965,3301,2,1,6373.073254,6373.073254,3505,NO,37.93,51.12,3,1.53,6106,113.529893,123.322369,133.041182,139.534815,I,Above,Hip,0,NaN,,44.52646402,0,0,,,,1,1,,0.03,nav,1,1965,2,, 32315,NJBF000062282,103 N BRYANT AVE,Ventnor City,NJ,39.33914483,-74.48497339,RES1,3001,,17,NE,1953,1953,3102,2,1,1335.808701,1335.808701,3505,NO,27.25,35.15,3,4.55,6106,113.681719,123.449832,133.168924,139.727281,I,Above,Gable,0,5701,,31.19992617,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, 32316,NJBF000066790,716 N DORSET AVE,Ventnor City,NJ,39.3507904,-74.48588423,RES1,3001,,17,NE,1960,1960,3101,2,1,998.3057978,998.3057978,3505,NO,21.79,35.81,3,-0.71,6106,113.508338,123.3053,133.022796,139.520028,I,Above,Flat,0,5701,,28.79539404,0,0,,,,1,1,,0.03,nav,1,1960,2,, 32317,NJBF000067139,717 N SURREY AVE,Ventnor City,NJ,39.352251,-74.48209183,RES3A,3001,,27,NE,1980,1980,3301,2,1,890.315715,890.315715,3505,NO,36.82,50.2,3,-1.83,6106,113.573788,123.357199,133.078738,139.564767,I,Above,Gable,0,5701,,43.51027889,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32318,NJBF000066310,700 N DERBY AVE,Ventnor City,NJ,39.34945438,-74.48576023,RES1,3001,,17,NE,1977,1977,3101,2,1,1902.925011,1902.925011,3505,NO,37.08,48.33,3,1.05,6106,113.528204,123.322145,133.040016,139.544123,I,Above,Flat,0,5701,,42.70386296,0,0,,,,1,1,,0.03,nav,1,1977,2,, 32319,NJBF000066509,601 N SUFFOLK AVE,Ventnor City,NJ,39.3499325,-74.48107409,RES1,3001,,17,NE,1965,1965,3102,1,1,1835.566452,1835.566452,3507,NO,13.26,26.55,1,0.31,6106,113.625811,123.40074,133.123879,139.620758,I,Above,Hip,0,5701,,19.90320222,0,0,,,,1,1,,0.03,nav,1,1965,1,, 32320,NJBF000060652,7003 WINCHESTER AVE,Ventnor City,NJ,39.33635816,-74.49018849,RES1,3001,,45,NE,1950,1950,3102,2,2,1249.129748,1249.129748,3505,NO,40.64,48.52,3,4.66,6106,113.60465,123.38795,133.101374,139.672607,I,Above,Hip,0,5701,,44.57927492,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32321,NJBF000067215,719 N VICTORIA AVE,Ventnor City,NJ,39.352601,-74.481623,RES3A,3001,,27,NE,1980,1980,3301,2,1,948.8874101,948.8874101,3505,NO,37.44,47.43,3,3.89,6106,113.57975,123.361783,133.083801,139.567445,I,Above,Hip,0,5701,,42.43795353,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32322,NJBF000066221,509 N SUFFOLK AVE,Ventnor City,NJ,39.349223,-74.480527,RES1,3001,,16,NE,1975,1975,3102,2,1,1070.061063,1070.061063,3507,NO,33.53,40.09,1,0.79,6106,113.647014,123.418297,133.142176,139.642052,I,Above,Flat,0,5701,,36.80863533,0,0,,,,1,1,,0.03,nav,1,1975,2,, 32323,NJBF000059781,2 S WYOMING AVE,Ventnor City,NJ,39.33483484,-74.4888256,RES1,3001,,18,NE,1928,1928,3102,3,1,1292.063095,1292.063095,3505,NO,52.73,66.62,3,-1.18,6106,113.655714,123.42918,133.143704,139.722984,I,Above,Hip,0,5701,,59.67692317,0,0,,,,1,1,,0.03,nav,1,1928,3,, 32324,NJBF000065483,507 N BURGHLEY AVE,Ventnor City,NJ,39.34720657,-74.48426714,RES1,3001,,17,NE,1965,1965,3101,1,1,1476.55212,1476.55212,3505,NO,13.31,21.87,3,-0.73,6106,113.590327,123.373481,133.093305,139.608066,I,Above,Hip,0,5701,,17.58831728,0,0,,,,1,1,,0.03,nav,1,1965,1,, 32325,NJBF000062968,6102 WINCHESTER AVE,Ventnor City,NJ,39.34061212,-74.48052445,RES1,3001,,18,NE,1903,1903,3102,2,1,2032.489887,2032.489887,3505,NO,26.81,40.45,3,-0.76,6106,113.760122,123.512994,133.237098,139.783197,I,Above,Hip,0,5701,,33.63147318,0,1.2,,,,1,1,,0.03,nav,1,1903,2,, 32326,NJBF000064586,226 N OXFORD AVE,Ventnor City,NJ,39.34484765,-74.47921287,RES1,3001,,17,NE,1940,1940,3102,1,1,1195.415839,1195.415839,3505,NO,13.25,24.55,3,-1.53,6106,113.732864,123.48977,133.215504,139.736647,I,Above,Hip,0,5701,,18.89661964,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, 32327,NJBF000066531,613 N DUDLEY AVE,Ventnor City,NJ,39.34999373,-74.48370881,RES1,3001,,NaN,NE,1969,0,3102,2,1,1489.365235,1489.365235,3507,NO,30.93,38.59,1,1.05,6106,113.566709,123.352912,133.072998,139.57256,I,Above,Gable,0,5701,,34.76016547,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32328,NJBF000065413,317 N SUFFOLK AVE,Ventnor City,NJ,39.34699028,-74.47873523,RES1,3001,,17,NE,1960,1960,3102,1,1,1297.657837,1297.657837,3505,NO,15.82,28.83,3,-2.53,6106,113.715454,123.474826,133.201035,139.709987,I,Above,Hip,0,5701,,22.32318358,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 32329,NJBF000066081,702 N CORNWALL AVE,Ventnor City,NJ,39.3488575,-74.487018,RES1,3001,,17,NE,1958,1958,3101,1,1,1624.66914,1624.66914,3505,NO,15.86,24.47,3,4.72,6106,113.507999,123.306196,133.022782,139.530773,I,Above,Flat,0,5701,,20.16542148,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32330,NJBF000066242,713 N HARVARD AVE,Ventnor City,NJ,39.34928233,-74.48855692,RES1,3001,,17,NE,1986,1986,3101,2,1,1932.135545,1932.135545,3505,NO,29.18,38.14,3,5.24,6106,113.468403,123.274051,132.98891,139.495382,I,Above,Hip,0,5701,,33.66252284,0,1.1,,,,1,1,,0.03,nav,1,1986,2,, 32331,NJBF000064266,214 N DORSET AVE,Ventnor City,NJ,39.3440547,-74.48047872,RES1,3001,,16,NE,1940,1940,3102,2,1,1600.260176,1600.260176,3505,NO,36.3,46.12,3,-2.04,6106,113.715345,123.475845,133.200121,139.727462,I,Above,Gable,0,5701,,41.21304141,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32332,NJBF000065957,507 N SOMERSET AVE,Ventnor City,NJ,39.34853288,-74.48082527,RES1,3001,,NaN,NE,1955,0,3102,2,1,2041.529381,2041.529381,3507,NO,35.51,50.15,1,1.67,6106,113.649305,123.420512,133.144124,139.648048,I,Above,Flat,0,5701,,42.83151249,0,0,,,,1,1,,0.03,nav,1,1955,2,, 32333,NJBF000065940,614 N CORNWALL AVE,Ventnor City,NJ,39.34849849,-74.48670746,RES1,3001,,17,NE,1972,1972,3101,2,1,1707.640741,1707.640741,3505,NO,30.29,36.5,3,6.19,6106,113.519544,123.315703,133.032681,139.542378,I,Above,Gable,0,5701,,33.39550255,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 32334,NJBF000066153,508 N SUFFOLK AVE,Ventnor City,NJ,39.34906716,-74.48088512,RES1,3001,,17,NE,1978,1978,3102,1,1,1419.664203,1419.664203,3507,NO,15.86,27.35,1,1.27,6106,113.641102,123.413594,133.137072,139.638258,I,Above,Hip,0,5701,,21.60695613,0,0,,,,1,1,,0.03,nav,1,1978,1,, 32335,NJBF000060997,5 S NEW HAVEN AVE,Ventnor City,NJ,39.33687512,-74.48383452,RES1,3001,,17,NE,1920,1920,3102,3,1,1808.451941,1808.451941,3505,NO,40.64,49.54,3,-0.82,6106,113.737685,123.495319,133.215349,139.785411,I,Above,Hip,0,5701,,45.08970802,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, 32336,NJBF000061038,3 S NEW HAVEN AVE,Ventnor City,NJ,39.33694988,-74.48390647,RES1,3001,,17,NE,1902,1902,3102,1,1,1831.621818,1831.621818,3505,NO,16.2,23.5,3,2.94,6106,113.735095,123.49322,133.213186,139.782877,I,Above,Hip,0,5701,,19.85395127,0,0,,,,1,1,,0.03,nav,1,1902,1,, 32337,NJBF000062482,104 S OXFORD AVE,Ventnor City,NJ,39.3395635,-74.474635,RES1,3001,,17,NE,1929,1929,3102,3,1,503.6918003,503.6918003,3505,NO,30.88,38.61,3,-2.84,6106,113.903898,123.62982,133.360691,139.900042,I,Above,Hip,0,5701,,34.74684021,0,0,,,,1,1,,0.03,nav,1,1929,3,, 32338,NJBF000060280,12 N WYOMING AVE,Ventnor City,NJ,39.33570861,-74.48952804,RES1,3001,,17,NE,1921,1921,3102,2,1,1555.338206,1555.338206,3505,NO,35.61,40.81,3,5.98,6106,113.628156,123.406934,133.120911,139.695646,I,Above,Hip,0,5701,,38.21092117,0,1.1,,,,1,1,,0.03,nav,1,1921,2,, 32339,NJBF000066149,602 N DUDLEY AVE,Ventnor City,NJ,39.34905238,-74.4835103,RES1,3001,,17,NE,1972,1972,3102,1,1,1599.692843,1599.692843,3507,NO,18.33,32.89,1,0.1,6106,113.583212,123.366784,133.087239,139.591556,I,Above,Flat,0,5701,,25.61172228,0,1.1,,,,1,1,,0.03,nav,1,1972,1,, 32340,NJBF000064590,11 S BATON ROUGE AVE,Ventnor City,NJ,39.34486401,-74.46696716,RES3B,3001,,17,ME,1920,1920,3301,2,1,1367.268415,1367.268415,3504,NO,32.92,45.29,-4,0,6106,114.002281,123.709055,133.450061,139.940281,I,Above,Hip,0,NaN,,39.10444006,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32341,NJBF000064554,13 S BATON ROUGE AVE,Ventnor City,NJ,39.34477286,-74.46687064,RES3B,3001,,17,ME,1937,1937,3301,2,1,1764.167478,1764.167478,3504,NO,24.13,35.22,-4,0,6106,114.005577,123.711772,133.4529,139.943229,I,Above,Hip,0,NaN,,29.67617665,0,0,,,,1,1,,0.03,nav,1,1937,2,, 32342,NJBF000066478,609 N OXFORD AVE,Ventnor City,NJ,39.34985896,-74.48275757,RES1,3001,,17,NE,1971,1971,3102,2,1,2013.680869,2013.680869,3507,NO,24.63,32.27,1,-0.01,6106,113.589495,123.371405,133.0926,139.59189,I,Above,Flat,0,5701,,28.44742775,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 32343,NJBF000065386,516 N CAMBRIDGE AVE,Ventnor City,NJ,39.34691847,-74.48635729,RES1,3001,,NaN,NE,1977,0,3101,1,1,4317.25134,4317.25134,3505,NO,15.13,21.27,3,2.82,6106,113.547814,123.33931,133.056865,139.574635,I,Above,Flat,0,5701,,18.20168095,0,0,,,,1,1,,0.03,nav,1,1977,1,, 32344,NJBF000065423,411 N DUDLEY AVE,Ventnor City,NJ,39.3470161,-74.48136343,RES1,3001,,17,NE,1958,1958,3102,1,1,1247.958404,1247.958404,3505,NO,21.98,32.28,3,3.32,6106,113.657049,123.427508,133.150641,139.663318,I,Above,Gable,0,5701,,27.13448906,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32345,NJBF000066082,515 N SOMERSET AVE,Ventnor City,NJ,39.348859,-74.481118,RES1,3001,,17,NE,1975,1975,3102,2,1,1084.685302,1084.685302,3507,NO,21.77,33.29,1,0.44,6106,113.638625,123.411699,133.134931,139.637522,I,Above,Flat,0,5701,,27.52814754,0,0,,,,1,1,,0.03,nav,1,1975,2,, 32346,NJBF000066095,703 N CAMBRIDGE AVE,Ventnor City,NJ,39.34889275,-74.48736943,RES1,3001,,17,NE,1965,1965,3101,1,1,1821.738917,1821.738917,3505,NO,25.29,38.81,3,8.92,6106,113.499766,123.299541,133.015741,139.523728,I,Above,Gable,0,5701,,32.04868127,0,1.1,,,,1,1,,0.03,nav,1,1965,1,, 32347,NJBF000066124,708 N CAMBRIDGE AVE,Ventnor City,NJ,39.34898673,-74.48796861,RES1,3001,,17,NE,1975,1975,3101,1,1,1589.130301,1589.130301,3505,NO,22.32,31.7,3,3.84,6106,113.485249,123.287791,133.003329,139.511099,I,Above,Flat,0,5701,,27.0068086,0,0,,,,1,1,,0.03,nav,1,1975,1,, 32348,NJBF000060125,15 N MELBOURNE AVE,Ventnor City,NJ,39.33544737,-74.49056946,RES1,3001,,17,NE,1930,1930,3102,1,1,1900.721723,1900.721723,3505,NO,16.51,23.43,3,4.9,6106,113.608811,123.391344,133.104256,139.679202,I,Above,Hip,0,5701,,19.9729264,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, 32349,NJBF000065764,505 N DUDLEY AVE,Ventnor City,NJ,39.34803139,-74.4821536,RES1,3001,,17,NE,1963,1963,3102,2,1,1673.093726,1673.093726,3507,NO,22.97,35.24,1,0.65,6106,113.626395,123.402229,133.124357,139.632609,I,Above,Flat,0,5701,,29.10402337,0,0,,,,1,1,,0.03,nav,1,1963,2,, 32350,NJBF000060195,21 S RICHARDS AVE,Ventnor City,NJ,39.3355682,-74.48500601,RES1,3001,,16,NE,1940,1940,3102,1,1,1467.163259,1467.163259,3505,NO,21.82,33.24,3,4.02,6106,113.729792,123.488996,133.207566,139.78497,I,Above,Hip,0,5701,,27.52705035,0,0,,,,1,1,,0.03,nav,1,1940,1,, 32351,NJBF000067701,801 N LITTLE ROCK AVE,Ventnor City,NJ,39.35421599,-74.48211011,RES3A,3001,,28,NE,1999,1999,3301,2,1,2759.821015,2759.821015,3505,NO,32.7,42.57,3,-0.56,6106,113.548675,123.335467,133.056538,139.532414,I,Above,Flat,0,5701,,37.63674664,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 32352,NJBF000067425,801 N LITTLE ROCK AVE,Ventnor City,NJ,39.35343954,-74.48147599,RES3A,3001,,28,NE,1999,1999,3301,2,1,2890.848581,2890.848581,3505,NO,31.71,38.26,3,0.15,6106,113.572441,123.355275,133.077283,139.556397,I,Above,Flat,0,5701,,34.9858705,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, 32353,NJBF000059723,118 S NEW HAVEN AVE,Ventnor City,NJ,39.33473693,-74.48262055,RES1,3001,,16,NE,1965,1965,3102,2,1,2114.187349,2114.187349,3505,NO,27.32,34.12,3,6.12,6106,113.793752,123.540735,133.261684,139.842713,I,Above,Hip,0,5701,,30.71647802,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, 32354,NJBF000065810,,Ventnor City,NJ,39.34817068,-74.48020001,RES1,3001,,NaN,NE,1969,0,3102,2,1,2474.155207,2474.155207,3505,NO,30.94,39.33,3,6.61,6106,113.667793,123.435664,133.160046,139.665013,I,Above,Hip,0,5701,,35.13723822,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32355,NJBF000065370,511 N CAMBRIDGE AVE,Ventnor City,NJ,39.3468819,-74.48575858,RES1,3001,,17,NE,1964,1964,3101,1,1,1414.964615,1414.964615,3505,NO,20.61,26.39,3,1.55,6106,113.561526,123.350388,133.068598,139.586198,I,Above,Hip,0,5701,,23.49956828,0,0,,,,1,1,,0.03,nav,1,1964,1,, 32356,NJBF000058999,106 S PHILADELPHIA AVE,Ventnor City,NJ,39.33332875,-74.48732604,RES1,3001,,17,NE,1928,1928,3102,2,2,2822.86037,2822.86037,3505,NO,40.01,50.73,3,5.95,6106,113.709658,123.472691,133.188411,139.775716,I,Above,Hip,0,5701,,45.37080281,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, 32357,NJBF000065836,510 N DUDLEY AVE,Ventnor City,NJ,39.34822675,-74.48284581,RES1,3001,,17,NE,1980,1980,3102,2,1,2047.924451,2047.924451,3507,NO,36.67,46.48,1,-0.98,6106,113.608551,123.387701,133.109016,139.617004,I,Above,Hip,0,5701,,41.57255309,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 32358,NJBF000063534,106 S FRANKFORT AVE,Ventnor City,NJ,39.34196633,-74.46943956,RES1,3001,,17,NE,1910,1910,3102,2,1,1907.875223,1907.875223,3505,NO,36.32,48.77,3,8.05,6106,113.986071,123.696405,133.43399,139.945893,I,Above,Flat,0,5701,,42.54073144,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, 32359,NJBF000065774,6003 FULTON AVE,Ventnor City,NJ,39.3480625,-74.48493,RES1,3001,,17,NE,1974,1974,3101,2,1,1654.04334,1654.04334,3505,NO,28.54,39.99,3,2.13,6106,113.564553,123.352245,133.071236,139.582027,I,Above,Flat,0,5701,,34.26679362,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 32360,NJBF000066226,714 N HARVARD AVE,Ventnor City,NJ,39.34923319,-74.48904301,RES1,3001,,18,NE,1983,1983,3102,3,1,2130.541939,2130.541939,3505,NO,45.18,53.68,3,3.33,6106,113.458253,123.265909,132.98026,139.48714,I,Above,Flat,0,5701,,49.42968386,0,1.2,,,,1,1,,0.03,nav,1,1983,3,, 32361,NJBF000063965,6214 CALVERT AVE,Ventnor City,NJ,39.343221,-74.483105,RES1,3001,,19,NE,2017,2017,3102,3,1,1106.202699,1106.202699,3505,NO,56.84,69.43,3,4.98,6106,113.668369,123.438101,133.159414,139.694419,I,Above,Flat,0,5701,,63.13795535,0,0,,,,1,1,,0.03,nav,1,2017,3,, 32362,NJBF000064050,105 N SOMERSET AVE,Ventnor City,NJ,39.34343966,-74.47672842,RES1,3001,,17,NE,1945,1945,3102,1,1,1642.354104,1642.354104,3505,NO,17.98,28.78,3,-0.89,6106,113.806213,123.549704,133.278368,139.802412,I,Above,Gable,0,5701,,23.37567038,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, 32363,NJBF000059673,20 S NEWARK AVE,Ventnor City,NJ,39.33465753,-74.48694019,RES1,3001,,17,NE,1928,1928,3102,3,1,2118.678361,2118.678361,3505,NO,59.44,65.13,3,4.53,6106,113.699728,123.464711,133.181105,139.762573,I,Above,Hip,0,5701,,62.28815145,0,0,,,,1,1,,0.03,nav,1,1928,3,, 32364,NJBF000063503,,Ventnor City,NJ,39.34188417,-74.47173057,RES1,3001,,NaN,NE,1969,0,3102,2,1,814.2619639,814.2619639,3505,NO,28.41,36.82,3,-2.4,6106,113.936809,123.656258,133.390939,139.910352,I,Above,Flat,0,5701,,32.61478044,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32365,NJBF000064715,404 N CORNWALL AVE,Ventnor City,NJ,39.34514598,-74.48404517,RES1,3001,,17,NE,1962,1962,3102,1,1,1589.740273,1589.740273,3505,NO,25.59,30.88,3,8.74,6106,113.62218,123.400104,133.120328,139.645858,I,Above,Hip,0,5701,,28.23661298,0,0,,,,1,1,,0.03,nav,1,1962,1,, 32366,NJBF000065777,508 N DUDLEY AVE,Ventnor City,NJ,39.34807596,-74.48275476,RES1,3001,,17,NE,1982,1982,3102,1,1,2039.340365,2039.340365,3507,NO,16.51,26.97,1,-0.15,6106,113.612517,123.390984,133.11242,139.621109,I,Above,Flat,0,5701,,21.74115845,0,1.1,,,,1,1,,0.03,nav,1,1982,1,, 32367,NJBF000058801,1 S FREDERICKSBURG,Ventnor City,NJ,39.332961,-74.4923695,RES1,3001,,28,NE,1920,1920,3102,2,1,2180.889745,2180.889745,3505,NO,24.26,31.91,3,-1.12,6106,113.603712,123.387187,133.097896,139.680389,I,Above,Flat,0,5701,,28.08065702,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32368,NJBF000059724,,Ventnor City,NJ,39.33473746,-74.49138074,RES1,3001,,NaN,NE,1925,0,3102,2,1,1742.12293,1742.12293,3505,NO,38.07,48.82,3,7.97,6106,113.600736,123.384845,133.09685,139.673905,I,Above,Hip,0,5701,,43.44404824,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32369,NJBF000059293,8 S MELBOURNE AVE,Ventnor City,NJ,39.33395338,-74.48992583,RES1,3001,,17,NE,1900,1900,3102,2,2,1580.451139,1580.451139,3505,NO,23.63,33.74,3,-1.59,6106,113.643705,123.41948,133.132746,139.714709,I,Above,Hip,0,5701,,28.68710973,0,0,,,,1,1,,0.03,nav,1,1900,2,, 32370,NJBF000059302,105 S NEWARK AVE,Ventnor City,NJ,39.33396976,-74.48589932,RES1,3001,,17,NE,1925,1925,3102,3,1,1741.573181,1741.573181,3505,NO,47.1,57.39,3,-0.29,6110,113.73218,123.490917,133.208238,139.793575,I,Above,Gable,0,5701,,52.24760372,0,1.1,,,,1,1,,0.35,nav,1,1925,3,, 32371,NJBF000067060,706 N VICTORIA AVE,Ventnor City,NJ,39.35190851,-74.48151766,RES3A,3001,,27,NE,1980,1980,3301,2,1,901.6907193,901.6907193,3505,NO,26.31,35.51,3,-1.38,6106,113.590823,123.37121,133.093492,139.580604,I,Above,Gable,0,5701,,30.90905684,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32372,NJBF000059998,3 N LAFAYETTE AVE,Ventnor City,NJ,39.33521788,-74.48952941,RES1,3001,,17,NE,1935,1935,3102,2,1,1143.361488,1143.361488,3505,NO,24.47,31.79,3,-2.06,6106,113.634915,123.412398,133.126292,139.703238,I,Above,Gable,0,5701,,28.13064359,0,0,,,,1,1,,0.03,nav,1,1935,2,, 32373,NJBF000059970,9 N MELBOURNE AVE,Ventnor City,NJ,39.33517286,-74.49039687,RES1,3001,,17,NE,1930,1930,3102,2,1,1142.996647,1142.996647,3505,NO,30.53,37.22,3,6.44,6106,113.616395,123.397464,133.110498,139.686806,I,Above,Hip,0,5701,,33.87801681,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32374,NJBF000059935,10 S NEWARK AVE,Ventnor City,NJ,39.33510887,-74.48728951,RES1,3001,,17,NE,1928,1928,3102,2,1,1518.677043,1518.677043,3505,NO,22.23,30.9,3,-2.95,6106,113.685784,123.45345,133.169572,139.748679,I,Above,Hip,0,5701,,26.56605867,0,0,,,,1,1,,0.03,nav,1,1928,2,, 32375,NJBF000060000,106 N WASHINGTON AVE,Ventnor City,NJ,39.33522143,-74.49323128,RES1,3001,,17,NE,1948,1948,3102,1,1,1812.762697,1812.762697,3505,NO,25.45,37.75,3,6.01,6106,113.553207,123.346553,133.056884,139.629696,I,Above,Hip,0,5701,,31.60082919,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 32376,NJBF000059990,102 S AVOLYN AVE,Ventnor City,NJ,39.33520658,-74.48373376,RES1,3001,,17,NE,1922,1922,3102,2,1,1212.992452,1212.992452,3505,NO,36.89,44.89,3,3.3,6106,113.762777,123.515673,133.235523,139.814583,I,Above,Gable,0,5701,,40.88645083,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, 32377,NJBF000059940,109 N MARTINDALE AVE,Ventnor City,NJ,39.33512351,-74.49340266,RES1,3001,,17,NE,1927,1927,3102,2,1,760.2618656,760.2618656,3505,NO,26.69,36.21,3,5.53,6106,113.550757,123.344583,133.054737,139.627709,I,Above,Hip,0,5701,,31.45088369,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 32378,NJBF000060023,2 N WYOMING AVE,Ventnor City,NJ,39.33525793,-74.48919084,RES1,3001,,17,NE,1925,1925,3102,2,1,1903.063465,1903.063465,3505,NO,31.9,44.29,3,3.84,6106,113.641816,123.417963,133.1322,139.709262,I,Above,Hip,0,5701,,38.09776367,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32379,NJBF000059936,103 S TROY AVE,Ventnor City,NJ,39.33510995,-74.48393141,RES1,3001,,17,NE,1925,1925,3102,2,1,1095.400002,1095.400002,3505,NO,23.43,34.68,3,1.28,6106,113.759774,123.513244,133.232865,139.812515,I,Above,Gable,0,5701,,29.05705084,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32380,NJBF000060024,105 S AVOLYN AVE,Ventnor City,NJ,39.3352585,-74.4832865,RES1,3001,,19,NE,1925,1925,3102,2,1,1278.04774,1278.04774,3505,NO,34.47,43.45,3,4.42,6106,113.771906,123.523058,133.243395,139.82197,I,Above,Gable,0,5701,,38.96237507,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32381,NJBF000059975,114 N MARTINDALE AVE,Ventnor City,NJ,39.33517886,-74.49390455,RES1,3001,,17,NE,1927,1927,3102,2,1,865.4414205,865.4414205,3505,NO,40.6,52.92,3,3.46,6106,113.538915,123.335049,133.044744,139.616833,I,Above,Hip,0,5701,,46.76108762,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, 32382,NJBF000059552,4 N BALTIMORE AVE,Ventnor City,NJ,39.3344505,-74.49114021,RES1,3001,,17,NE,1925,1925,3102,2,1,1183.339703,1183.339703,3505,NO,28.32,36.45,3,-0.52,6106,113.610021,123.392329,133.104513,139.68302,I,Above,Hip,0,5701,,32.38612245,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32383,NJBF000059591,109 S RICHARDS AVE,Ventnor City,NJ,39.3345136,-74.48417013,RES1,3001,,20,NE,1925,1925,3102,2,1,1705.705743,1705.705743,3505,NO,29.54,40.39,3,2.58,6106,113.762727,123.515628,133.234874,139.817759,I,Above,Gable,0,5701,,34.96631378,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32384,NJBF000059141,102 S ROSBOROUGH AVE,Ventnor City,NJ,39.33363727,-74.48683866,RES1,3001,,17,NE,1960,1960,3102,2,1,2014.972684,2014.972684,3505,NO,38.08,46.84,3,4.61,6110,113.716101,123.477911,133.194194,139.780523,I,Above,Hip,0,5701,,42.45981948,0,1.1,,,,1,1,,0.35,nav,1,1960,2,, 32385,NJBF000059246,7223-25-27 VENTNOR,Ventnor City,NJ,39.33384876,-74.49164156,RES1,3001,,NaN,NE,1905,1930,3102,3,1,3224.215489,3224.215489,3505,NO,49.85,64.29,3,2.7,6106,113.607331,123.390147,133.101733,139.681983,I,Above,Flat,0,5701,,57.06946131,0,0,,,,1,1,,0.03,nav,1,1905,3,, 32386,NJBF000058506,105 S BALTIMORE AVE,Ventnor City,NJ,39.33243216,-74.48906887,RES1,3001,,17,NE,1963,1963,3102,2,1,1709.88044,1709.88044,3505,NO,25.32,36.13,3,-0.79,6106,113.683794,123.451743,133.16551,139.754515,I,Above,Hip,0,5701,,30.72630907,0,1.1,,,,1,1,,0.03,nav,1,1963,2,, 32387,NJBF000058563,15 S FREDERICKSBURG AVE,Ventnor City,NJ,39.3325215,-74.492038,RES1,3001,,29,NE,1926,1926,3102,2,1,794.2400857,794.2400857,3505,NO,33.62,48.01,3,3.42,6106,113.617168,123.398002,133.108923,139.693428,I,Above,Gable,0,5701,,40.81670736,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 32388,NJBF000059592,20 N WASHINGTON AVE,Ventnor City,NJ,39.33451421,-74.49264686,RES1,3001,,17,NE,1925,1925,3102,2,1,1085.172722,1085.172722,3505,NO,28.24,36.81,3,2.87,6106,113.575912,123.364844,133.075602,139.651956,I,Above,Flat,0,5701,,32.52199981,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32389,NJBF000061037,17 N BUFFALO AVE,Ventnor City,NJ,39.3369455,-74.4868385,RES1,3001,,17,NE,1935,1935,3102,2,1,913.8819835,913.8819835,3505,NO,28.69,34.17,3,5.9,6106,113.670488,123.44102,133.1579,139.728059,I,Above,Flat,0,5701,,31.42974236,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 32390,NJBF000066534,805 N HARVARD AVE,Ventnor City,NJ,39.34999785,-74.48912613,RES1,3001,,17,NE,1975,1975,3101,1,1,1861.101967,1861.101967,3505,NO,11.32,18.9,3,-0.75,6106,113.446568,123.256036,132.970157,139.473135,I,Above,Flat,0,5701,,15.10912833,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, 32391,NJBF000062915,114 N SACRAMENTO AVE,Ventnor City,NJ,39.34047977,-74.48285621,RES1,3001,,17,NE,1925,1925,3102,2,1,1018.701988,1018.701988,3505,NO,39.55,53.05,3,7.63,6106,113.710445,123.472815,133.194307,139.743943,I,Above,Hip,0,5701,,46.30232976,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32392,NJBF000064097,5401 WINCHESTER AVE,Ventnor City,NJ,39.34356669,-74.47362554,RES1,3001,,18,NE,1940,1940,3102,2,1,1729.627061,1729.627061,3505,NO,43.45,50,3,8.18,6106,113.872876,123.603846,133.336281,139.852446,I,Above,Flat,0,5701,,46.72509141,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32393,NJBF000063983,11 S WEYMOUTH AVE,Ventnor City,NJ,39.343274,-74.47056256,RES1,3001,,NaN,NE,1950,2014,3102,2,1,1945.690392,1945.690392,3505,NO,28.88,34.32,3,1.28,6106,113.944122,123.661941,133.398198,139.907307,I,Above,Flat,0,5701,,31.60118981,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32394,NJBF000062325,131 N TROY AVE,Ventnor City,NJ,39.33922633,-74.48724356,RES1,3001,,17,NE,1940,1940,3102,2,1,956.0265496,956.0265496,3505,NO,30.29,38.6,3,-1.38,6106,113.63048,123.408452,133.125164,139.683567,I,Above,Flat,0,5701,,34.44300035,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32395,NJBF000061767,120 N BUFFALO AVE,Ventnor City,NJ,39.33821744,-74.48832648,RES1,3001,,17,NE,1922,1922,3102,2,1,1121.678813,1121.678813,3505,NO,24.55,30.61,3,1.27,6106,113.620296,123.400387,133.115897,139.67927,I,Above,Gable,0,5701,,27.58376715,0,0,,,,1,1,,0.03,nav,1,1922,2,, 32396,NJBF000060295,108 N BALTIMORE AVE,Ventnor City,NJ,39.33573456,-74.49218077,RES1,3001,,28,NE,1930,1930,3102,2,1,836.5339983,836.5339983,3505,NO,43.03,49.98,3,4.75,6106,113.56926,123.359466,133.070868,139.642858,I,Above,Gable,0,5701,,46.50610167,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32397,NJBF000060265,106 N BALTIMORE AVE,Ventnor City,NJ,39.33568204,-74.49214914,RES1,3001,,28,NE,1930,1930,3102,2,2,992.2299543,992.2299543,3505,NO,30.27,39.41,3,2.21,6106,113.570699,123.360627,133.072052,139.6443,I,Above,Gable,0,5701,,34.84044675,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32398,NJBF000063885,5503 WINCHESTER AVE,Ventnor City,NJ,39.34299142,-74.4745928,RES1,3001,,17,NE,1985,1985,3102,2,1,1184.995426,1184.995426,3505,NO,28.58,36.46,3,-2.34,6106,113.859181,123.592852,133.324075,139.845629,I,Above,Flat,0,5701,,32.51816635,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 32399,NJBF000063035,122 N SACRAMENTO AVE,Ventnor City,NJ,39.34075216,-74.48308764,RES1,3001,,17,NE,1925,1925,3102,2,1,1547.756343,1547.756343,3505,NO,36.15,45.21,3,6.37,6106,113.701673,123.465666,133.18692,139.735292,I,Above,Flat,0,5701,,40.68013283,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32400,NJBF000062805,108 N SACRAMENTO AVE,Ventnor City,NJ,39.3402663,-74.48269475,RES1,3001,,17,NE,1930,1930,3102,2,1,1290.206476,1290.206476,3505,NO,40.69,53.02,3,3.86,6106,113.716873,123.478056,133.199709,139.750358,I,Above,Hip,0,5701,,46.85459176,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32401,NJBF000060152,14 N LAFAYETTE AVE,Ventnor City,NJ,39.33549134,-74.49023488,RES1,3001,,17,NE,1929,1929,3102,2,1,1245.694672,1245.694672,3505,NO,26.09,37.25,3,-1.37,6106,113.615571,123.396792,133.110038,139.685118,I,Above,Hip,0,5701,,31.67166524,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, 32402,NJBF000061536,108 N BUFFALO AVE,Ventnor City,NJ,39.33780695,-74.48799202,RES1,3001,,17,NE,1922,1922,3102,2,1,1014.356408,1014.356408,3505,NO,38.15,50.03,3,-0.12,6106,113.633262,123.410895,133.126701,139.692228,I,Above,Gable,0,5701,,44.08908239,0,0,,,,1,1,,0.03,nav,1,1922,2,, 32403,NJBF000064525,316 N CORNWALL AVE,Ventnor City,NJ,39.34471368,-74.48365705,RES1,3001,,17,NE,1958,1958,3102,1,1,1411.875623,1411.875623,3505,NO,21.76,29.36,3,6.02,6106,113.636442,123.411792,133.132465,139.659962,I,Above,Hip,0,5701,,25.55521135,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32404,NJBF000061147,6802 WINCHESTER AVE,Ventnor City,NJ,39.33714138,-74.48772128,RES1,3001,,17,NE,1932,1932,3102,2,1,1810.040445,1810.040445,3505,NO,42.1,53.78,3,8.58,6106,113.648346,123.423132,133.139134,139.708076,I,Above,Hip,0,5701,,47.93985805,0,1.1,,,,1,1,,0.03,nav,1,1932,2,, 32405,NJBF000062842,6501 MONMOUTH AVE,Ventnor City,NJ,39.340337,-74.4856365,RES1,3001,,17,NE,1965,1965,3102,2,1,1371.482517,1371.482517,3505,NO,26.46,38.37,3,2.23,6106,113.650988,123.424799,133.143275,139.695536,I,Above,Flat,0,5701,,32.41475194,0,0,,,,1,1,,0.03,nav,1,1965,2,, 32406,NJBF000066255,,Ventnor City,NJ,39.34931109,-74.47876898,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1199.722774,1199.722774,3505,NO,41.17,53.92,3,7.39,6106,113.684743,123.44882,133.174775,139.671552,I,Above,Gable,0,5701,,47.54469049,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32407,NJBF000066237,,Ventnor City,NJ,39.34926003,-74.47870364,RES3A,3001,,NaN,NE,1969,0,3301,1,1,1356.774353,1356.774353,3505,NO,18.43,31.11,3,3.72,6106,113.686834,123.450542,133.176581,139.67352,I,Above,Flat,0,5701,,24.77079145,0,0,,,,1,1,,0.03,nav,1,1969,1,, 32408,NJBF000066875,,Ventnor City,NJ,39.35111331,-74.48970337,RES1,3001,,NaN,NE,1969,0,3103,6,1,1651.55051,1651.55051,3505,NO,107.53,117.3,3,0.24,6106,113.419486,123.233512,132.946786,139.44423,I,Above,Hip,0,5701,,112.4140475,0,0,,,,1,1,,0.03,nav,1,1969,6,, 32409,NJBF000066994,,Ventnor City,NJ,39.35162185,-74.49019451,RES1,3001,,NaN,NE,1969,0,3103,5,1,1320.63592,1320.63592,3505,NO,87.63,95.55,3,-2.54,6106,113.402073,123.219151,132.931786,139.426766,I,Above,Hip,0,5701,,91.59067801,0,0,,,,1,1,,0.03,nav,1,1969,5,, 32410,NJBF000062045,6307 VENTNOR AVE,Ventnor City,NJ,39.33870675,-74.4821075,COM1,3001,,NaN,ME,1960,1960,3401,1,1,8860.55291,8860.55291,3507,NO,14.22,22.3,1,1.89,6106,113.75087,123.505807,133.227961,139.786555,I,Above,Flat,0,NaN,,18.25520712,0,0,,,,1,1,,0.03,nav,1,1960,1,, 32411,NJBF000065203,506 N CAMBRIDGE AVE,Ventnor City,NJ,39.34639984,-74.48590471,RES1,3001,,16,NE,1965,1965,3101,1,1,1594.85868,1594.85868,3505,NO,14.49,24.83,3,0.6,6106,113.564585,123.353079,133.071175,139.591406,I,Above,Hip,0,5701,,19.66169773,0,0,,,,1,1,,0.03,nav,1,1965,1,, 32412,NJBF000066735,608 N SURREY AVE,Ventnor City,NJ,39.35061385,-74.48123673,RES1,3001,,17,NE,1975,1975,3102,2,1,1100.883605,1100.883605,3507,NO,34.54,47.49,1,2.96,6106,113.613503,123.390379,133.113223,139.606741,I,Above,Flat,0,5701,,41.01606238,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 32413,NJBF000060497,17 S TROY AVE,Ventnor City,NJ,39.33608611,-74.48454945,RES1,3001,,16,NE,1930,1930,3101,1,1,1100.542179,1100.542179,3505,NO,16.02,25.76,3,-1.36,6106,113.732749,123.49137,133.210512,139.785106,I,Above,Flat,0,5701,,20.8909134,0,0,,,,1,1,,0.03,nav,1,1930,1,, 32414,NJBF000063330,5606 VENTNOR AVE,Ventnor City,NJ,39.34143004,-74.47500604,RES1,3001,,17,NE,1922,1922,3102,2,1,2620.704962,2620.704962,3505,NO,33.69,47.06,3,0.96,6106,113.870786,123.60262,133.333241,139.863914,I,Above,Hip,0,5701,,40.37842938,0,1.2,,,,1,1,,0.03,nav,1,1922,2,, 32415,NJBF000067472,801 N SURREY AVE,Ventnor City,NJ,39.35359308,-74.48318634,RES3A,3001,,28,NE,1980,1980,3301,2,1,2484.678638,2484.678638,3505,NO,39.61,49.82,3,7.98,6106,113.532648,123.322977,133.042936,139.523231,I,Above,Hip,0,5701,,44.71358867,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 32416,NJBF000067310,801 N SURREY AVE,Ventnor City,NJ,39.35302256,-74.48271279,RES3A,3001,,28,NE,1980,1980,3301,2,1,1971.995543,1971.995543,3505,NO,28.41,40.35,3,-0.32,6106,113.550294,123.33766,133.058305,139.541037,I,Above,Flat,0,5701,,34.37971377,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 32417,NJBF000067546,801 N SURREY AVE,Ventnor City,NJ,39.35379,-74.4833305,RES3A,3001,,28,NE,1980,1980,3301,2,1,2480.029742,2480.029742,3505,NO,24.27,37.03,3,3.12,6106,113.526985,123.318252,133.037995,139.517423,I,Above,Flat,0,5701,,30.64665037,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 32418,NJBF000067295,801 N SURREY AVE,Ventnor City,NJ,39.352944,-74.4823665,RES3A,3001,,28,NE,1980,1980,3301,2,1,2461.023358,2461.023358,3505,NO,45.39,51.82,3,7.4,6106,113.558974,123.344735,133.065805,139.548555,I,Above,Flat,0,5701,,48.60213911,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 32419,NJBF000059192,20 S LAFAYETTE AVE,Ventnor City,NJ,39.33374208,-74.48882364,RES1,3001,,17,NE,1947,1947,3102,2,1,1275.080264,1275.080264,3505,NO,44.04,58.32,3,6.41,6110,113.670921,123.441433,133.155741,139.739795,I,Above,Gable,0,5701,,51.1841888,0,1.1,,,,1,1,,0.35,nav,1,1947,2,, 32420,NJBF000065462,420 N OXFORD AVE,Ventnor City,NJ,39.34715556,-74.48112385,RES1,3001,,17,NE,1954,1954,3102,2,1,1739.233332,1739.233332,3505,NO,29.08,37.66,3,1.98,6106,113.660513,123.430249,133.153646,139.665268,I,Above,Hip,0,5701,,33.37316377,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, 32421,NJBF000063260,119 N HARVARD AVE,Ventnor City,NJ,39.34125128,-74.48228601,RES1,3001,,17,NE,1925,1925,3102,2,1,896.9855084,896.9855084,3505,NO,38.52,51.53,3,0.62,6106,113.712692,123.474469,133.196638,139.741485,I,Above,Flat,0,5701,,45.02522456,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32422,NJBF000066510,514 N VICTORIA AVE,Ventnor City,NJ,39.34993867,-74.47984402,RES3A,3001,,17,NE,1980,1980,3301,2,1,1290.04219,1290.04219,3505,NO,25.78,34.84,3,0.49,6106,113.652936,123.422701,133.147292,139.642432,I,Above,Flat,0,5701,,30.30681938,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32423,NJBF000061761,17 N NEW HAVEN AVE,Ventnor City,NJ,39.33820771,-74.48489399,COM1,3001,,NaN,ME,1920,1926,3401,1,1,1356.373709,1356.373709,3507,NO,20.34,29.44,1,1.43,6106,113.69617,123.461637,133.180715,139.744064,I,Above,Flat,0,NaN,,24.89025945,0,0,,,,1,1,,0.03,nav,1,1920,1,, 32424,NJBF000063614,614 KINGSLEY DRIVE,Ventnor City,NJ,39.3421955,-74.495069,RES1,3001,,17,NE,1976,1976,3102,2,1,1987.183378,1987.183378,3505,NO,34.24,46.78,3,4.64,6106,113.417259,123.236139,132.945204,139.485552,I,Above,Gable,0,5701,,40.51003095,0,0,,,,1,1,,0.03,nav,1,1976,2,, 32425,NJBF000060209,6907 VENTNOR AVE,Ventnor City,NJ,39.33558446,-74.48809165,RES1,3001,,17,NE,1900,1900,3102,2,1,1831.812733,1831.812733,3505,NO,29.41,34.49,3,0.23,6106,113.66155,123.433878,133.149271,139.725635,I,Above,Hip,0,5701,,31.95232596,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 32426,NJBF000063516,8 S SURREY AVE,Ventnor City,NJ,39.34192088,-74.47241461,RES1,3001,,17,NE,1898,1898,3102,2,1,1857.200997,1857.200997,3505,NO,36.56,43.8,3,-1.59,6106,113.921277,123.643602,133.377434,139.898653,I,Above,Hip,0,5701,,40.1797934,0,1.1,,,,1,1,,0.03,nav,1,1898,2,, 32427,NJBF000062295,112 S OXFORD AVE,Ventnor City,NJ,39.33916881,-74.47396593,RES3C,3001,,NaN,E,1940,1940,3303,3,1,6524.068906,6524.068906,3507,NO,54.68,61.78,1,2.8,6106,113.923901,123.646127,133.377753,139.917234,I,Above,Flat,0,NaN,,58.23202641,0,0,,,,1,1,,0.03,nav,1,1940,3,, 32428,NJBF000060094,6703B ATLANTIC AVE,Ventnor City,NJ,39.335394,-74.484668,RES1,3001,,NaN,NE,1952,1952,3102,2,2,1564.505381,1564.505381,3505,NO,30.26,38.17,3,-0.4,6110,113.739632,123.496954,133.215848,139.794139,I,Above,Flat,0,5701,,34.21533154,0,0,,,,1,1,,0.35,nav,1,1952,2,, 32429,NJBF000061022,,Ventnor City,NJ,39.33692769,-74.47880914,RES1,3001,,NaN,NE,1969,0,3102,2,1,1232.176686,1232.176686,3505,NO,44.33,50.42,3,8.75,6106,113.847658,123.584373,133.309967,139.873348,I,Above,Gable,0,5701,,47.37890975,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32430,NJBF000062192,2 N SACRAMENTO AVE,Ventnor City,NJ,39.33896408,-74.48159471,RES1,3001,,17,NE,1940,1940,3102,2,1,1065.948003,1065.948003,3505,NO,30.6,43.24,3,2.66,6106,113.758683,123.512097,133.234846,139.791436,I,Above,Hip,0,5701,,36.91745131,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32431,NJBF000062218,4 N SACRAMENTO AVE,Ventnor City,NJ,39.33901986,-74.48172131,RES1,3001,,17,NE,1940,1940,3102,2,1,2309.100243,2309.100243,3505,NO,44.47,50.93,3,7.27,6106,113.755148,123.509229,133.231844,139.788276,I,Above,Hip,0,5701,,47.6982362,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32432,NJBF000062067,6305 VENTNOR AVE,Ventnor City,NJ,39.338742,-74.4818765,COM1,3001,,NaN,ME,1940,1930,3401,2,1,3244.648211,3244.648211,3507,NO,29.09,39.98,1,0.15,6106,113.755489,123.509542,133.231954,139.790098,I,Above,Flat,0,NaN,,34.53729322,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32433,NJBF000059943,1 N LAFAYETTE AVE,Ventnor City,NJ,39.33512694,-74.48947274,RES1,3001,,17,NE,1936,1936,3102,2,1,1137.231301,1137.231301,3505,NO,27.01,33.47,3,-0.2,6106,113.637409,123.41441,133.128344,139.705746,I,Above,Gable,0,5701,,30.23871198,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, 32434,NJBF000059736,7103 VENTNOR AVE,Ventnor City,NJ,39.33476543,-74.48976299,RES1,3001,,17,NE,1918,1918,3102,2,1,1595.427131,1595.427131,3505,NO,30.05,40.57,3,1.99,6106,113.636026,123.413298,133.126881,139.705594,I,Above,Hip,0,5701,,35.30924305,0,1.1,,,,1,1,,0.03,nav,1,1918,2,, 32435,NJBF000061523,125 N ROSBOROUGH AVE,Ventnor City,NJ,39.33778783,-74.4898065,RES1,3001,,17,NE,1960,1960,3102,2,1,798.6531842,798.6531842,3505,NO,27.93,40.41,3,2.73,6106,113.593445,123.378792,133.092769,139.657576,I,Above,Hip,0,5701,,34.17284087,0,0,,,,1,1,,0.03,nav,1,1960,2,, 32436,NJBF000061588,6902 MONMOUTH AVE,Ventnor City,NJ,39.33790546,-74.48986535,RES1,3001,,17,NE,1940,1940,3102,2,1,1751.152695,1751.152695,3505,NO,34.38,41.95,3,0.94,6106,113.590565,123.376457,133.090389,139.6546,I,Above,Hip,0,5701,,38.16572581,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32437,NJBF000064101,6114 CALVERT AVE,Ventnor City,NJ,39.34357653,-74.48244801,RES1,3001,,17,NE,2003,2003,3102,1,1,909.3192639,909.3192639,3505,NO,20.25,33.45,3,8.42,6106,113.67817,123.445915,133.167959,139.700366,I,Above,Flat,0,5701,,26.84883037,0,0,,,,1,1,,0.03,nav,1,2003,1,, 32438,NJBF000065248,410 N DORSET AVE,Ventnor City,NJ,39.34651561,-74.48252966,RES1,3001,,17,NE,1960,1960,3102,1,1,3705.648734,3705.648734,3505,NO,26.06,32.45,3,7.05,6106,113.637754,123.412123,133.13396,139.650691,I,Above,Hip,0,5701,,29.25332048,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 32439,NJBF000064020,17 S HILLSIDE AVE,Ventnor City,NJ,39.34335062,-74.46953954,RES1,3001,,17,NE,1925,1925,3102,2,1,1550.37889,1550.37889,3505,NO,29.33,37.54,3,5.52,6110,113.965593,123.679437,133.417006,139.922616,I,Above,Hip,0,5701,,33.43527335,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 32440,NJBF000064049,15 S HILLSIDE AVE,Ventnor City,NJ,39.34343749,-74.46960895,RES1,3001,,17,NE,1900,1900,3102,2,1,1546.511744,1546.511744,3505,NO,42.66,57.58,3,7.36,6106,113.962946,123.677258,133.414744,139.920154,I,Above,Hip,0,5701,,50.12239219,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 32441,NJBF000065241,405 N DORSET AVE,Ventnor City,NJ,39.34649133,-74.48145539,RES1,3001,,17,NE,1948,1948,3102,1,1,1242.258599,1242.258599,3505,NO,18.48,32.42,3,3.38,6106,113.661848,123.431623,133.154689,139.67028,I,Above,Gable,0,5701,,25.44969092,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 32442,NJBF000063910,17 S WEYMOUTH AVE,Ventnor City,NJ,39.34305069,-74.47042283,RES1,3001,,17,NE,1925,1925,3102,2,2,1579.522809,1579.522809,3505,NO,31.27,40.1,3,-0.02,6106,113.950137,123.666893,133.403314,139.913088,I,Above,Hip,0,5701,,35.68404511,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32443,NJBF000060534,18 S NEW HAVEN AVE,Ventnor City,NJ,39.33614833,-74.48373331,RES1,3001,,17,NE,1938,1938,3102,2,1,1496.095111,1496.095111,3505,NO,34.07,40.89,3,4.65,6106,113.749879,123.505219,133.225241,139.7992,I,Above,Hip,0,5701,,37.48110966,0,1.1,,,,1,1,,0.03,nav,1,1938,2,, 32444,NJBF000058773,106 S LAFAYETTE AVE,Ventnor City,NJ,39.33291113,-74.48772545,RES1,3001,,NaN,NE,1986,1986,3102,2,1,1719.964784,1719.964784,3505,NO,26.28,33.71,3,5.24,6110,113.706694,123.470271,133.185491,139.774195,I,Above,Flat,0,5701,,29.99430917,0,0.1,,,,1,1,,0.35,nav,1,1986,2,, 32445,NJBF000063166,413-415 N LAFAYETTE AVE,Ventnor City,NJ,39.34102951,-74.49498283,RES1,3001,,45,NE,1970,1970,3102,2,2,1579.682138,1579.682138,3505,NO,18.47,25.14,3,-2.99,6106,113.434884,123.250619,132.95978,139.505576,I,Above,Hip,0,5701,,21.80532253,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32446,NJBF000060741,204 N SWARTHMORE AVE,Ventnor City,NJ,39.33647481,-74.49391782,RES1,3001,,17,NE,1964,1964,3102,2,1,1235.528358,1235.528358,3505,NO,34.92,44.3,3,7.71,6106,113.520684,123.320322,133.030189,139.597055,I,Above,Flat,0,5701,,39.61311906,0,0,,,,1,1,,0.03,nav,1,1964,2,, 32447,NJBF000065001,411 N CORNWALL AVE,Ventnor City,NJ,39.34588145,-74.48407682,RES1,3001,,17,NE,1958,1958,3102,2,1,1536.678394,1536.678394,3505,NO,30.03,36.43,3,1.4,6106,113.611832,123.391447,133.111593,139.633231,I,Above,Gable,0,5701,,33.22823006,0,0,,,,1,1,,0.03,nav,1,1958,2,, 32448,NJBF000061839,7 N NEWPORT AVE,Ventnor City,NJ,39.338349,-74.48358281,RES1,3001,,17,NE,1925,1925,3102,2,1,1235.129818,1235.129818,3505,NO,28.46,42.86,3,-2.67,6106,113.723173,123.483447,133.203948,139.765825,I,Above,Hip,0,5701,,35.66398701,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32449,NJBF000060370,6603 ATLANTIC AVE,Ventnor City,NJ,39.33586395,-74.48379762,RES1,3001,,17,NE,1950,1950,3102,1,1,1566.202157,1566.202157,3505,NO,17.89,31.87,3,3.91,6110,113.752341,123.50722,133.227123,139.802654,I,Above,Gable,0,5701,,24.88042443,0,1.1,,,,1,1,,0.35,nav,1,1950,1,, 32450,NJBF000063131,204 N PORTLAND AVE,Ventnor City,NJ,39.34095299,-74.48467209,RES1,3001,,NaN,NE,1945,1945,3102,2,1,1646.26673,1646.26673,3505,NO,25.97,34.02,3,1.72,6106,113.664001,123.435176,133.154717,139.703202,I,Above,Flat,0,5701,,29.99624766,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, 32451,NJBF000060576,203 N WASHINGTON AVE,Ventnor City,NJ,39.3362168,-74.49394389,RES1,3001,,17,NE,1974,1974,3102,2,1,1506.749896,1506.749896,3505,NO,36.81,44.4,3,8.08,6106,113.523674,123.322744,133.032554,139.600448,I,Above,Flat,0,5701,,40.60559767,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 32452,NJBF000066857,811 N CORNWALL AVE,Ventnor City,NJ,39.35103424,-74.48819345,RES1,3001,,17,NE,1976,1976,3101,1,1,1929.769932,1929.769932,3505,NO,18.48,24.87,3,3.68,6106,113.454012,123.261354,132.976265,139.47357,I,Above,Flat,0,5701,,21.67430413,0,0,,,,1,1,,0.03,nav,1,1976,1,, 32453,NJBF000066847,614 N SURREY AVE,Ventnor City,NJ,39.3509978,-74.48163011,RES1,3001,,17,NE,1974,1974,3102,2,1,1769.975363,1769.975363,3507,NO,36.62,50.36,1,-0.23,6106,113.599913,123.379148,133.101466,139.59347,I,Above,Hip,0,5701,,43.49158985,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, 32454,NJBF000060503,14 N ROSBOROUGH AVE,Ventnor City,NJ,39.33609249,-74.48898115,RES1,3001,,17,NE,1950,1950,3102,1,1,1807.137463,1807.137463,3505,NO,23,30.52,3,6.41,6106,113.634945,123.412392,133.126973,139.700355,I,Above,Gable,0,5701,,26.75627848,0,0,,,,1,1,,0.03,nav,1,1950,1,, 32455,NJBF000061769,131 N NEWARK AVE,Ventnor City,NJ,39.33822528,-74.48931232,RES1,3001,,17,NE,1930,1930,3102,1,1,1380.634552,1380.634552,3505,NO,13.98,19.41,3,-0.8,6106,113.598411,123.38274,133.097256,139.660208,I,Above,Flat,0,5701,,16.69384034,0,0,,,,1,1,,0.03,nav,1,1930,1,, 32456,NJBF000066624,517-519 N VICTORIA AVE,Ventnor City,NJ,39.3502747,-74.4795577,RES3A,3001,,45,NE,1978,1978,3301,1,2,2046.369841,2046.369841,3505,NO,21.7,27.3,3,3.98,6106,113.654964,123.424154,133.149038,139.641993,I,Above,Gable,0,5701,,24.5014817,0,0,,,,1,1,,0.03,nav,1,1978,1,, 32457,NJBF000064147,7 N VICTORIA AVE,Ventnor City,NJ,39.34371049,-74.47241984,RES1,3001,,17,NE,1935,1935,3102,1,1,1453.246957,1453.246957,3505,NO,17.66,26.02,3,4.13,6106,113.897538,123.623883,133.357822,139.870077,I,Above,Hip,0,5701,,21.83967205,0,0,,,,1,1,,0.03,nav,1,1935,1,, 32458,NJBF000064459,5507 MONMOUTH AVE,Ventnor City,NJ,39.34453519,-74.47748481,RES1,3001,,17,NE,1927,1927,3102,1,1,941.072753,941.072753,3505,NO,13.72,20.85,3,-0.64,6106,113.775104,123.524128,133.251904,139.771652,I,Above,Gable,0,5701,,17.28703388,0,0,,,,1,1,,0.03,nav,1,1927,1,, 32459,NJBF000064438,5509 MONMOUTH AVE,Ventnor City,NJ,39.34449,-74.477561,RES1,3001,,17,NE,1927,1927,3102,1,1,876.9152671,876.9152671,3505,NO,25.95,33.67,3,6.7,6106,113.774019,123.523262,133.250948,139.77108,I,Above,Flat,0,5701,,29.80996487,0,0,,,,1,1,,0.03,nav,1,1927,1,, 32460,NJBF000063227,316-318 N WISSAHICKON AVE,Ventnor City,NJ,39.34117252,-74.49221011,RES1,3001,,45,NE,1972,1972,3102,2,2,1624.633247,1624.633247,3505,NO,23.34,33.68,3,-0.22,6106,113.494357,123.298383,133.010191,139.55734,I,Above,Hip,0,5701,,28.50657318,0,0,,,,1,1,,0.03,nav,1,1972,2,, 32461,NJBF000066990,SE OXFORD & MARSHALL AVES,Ventnor City,NJ,39.35161578,-74.48401391,RES3C,3001,,NaN,ME,1965,1965,3301,1,1,5930.853983,5930.853983,3505,NO,17.22,24.74,3,6.17,6106,113.539266,123.329722,133.049164,139.540544,I,Above,Hip,0,NaN,,20.97881089,0,0,,,,1,1,,0.03,nav,1,1965,1,, 32462,NJBF000066928,SE OXFORD & MARSHALL AVES,Ventnor City,NJ,39.35132908,-74.48377279,RES3C,3001,,NaN,ME,1965,1965,3301,1,1,6282.958634,6282.958634,3505,NO,19.5,31.48,3,8.22,6106,113.548252,123.33717,133.056945,139.549588,I,Above,Gable,0,NaN,,25.48582177,0,0,,,,1,1,,0.03,nav,1,1965,1,, 32463,NJBF000066552,701 N DORSET AVE,Ventnor City,NJ,39.35004168,-74.48467367,RES1,3001,,17,NE,1950,1950,3102,2,1,2012.386999,2012.386999,3507,NO,40.08,50.28,1,1.83,6106,113.54472,123.335125,133.054111,139.554299,I,Above,Hip,0,5701,,45.1829992,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 32464,NJBF000064630,5001 VENTNOR AVE,Ventnor City,NJ,39.34494879,-74.46891272,RES1,3001,,NaN,NE,1900,1920,3102,2,4,2695.751505,2695.751505,3507,NO,34.16,49.05,1,2.76,6106,113.958424,123.673203,133.41166,139.907649,I,Above,Hip,0,5701,,41.60363852,0,0,,,,1,1,,0.03,nav,1,1900,2,, 32465,NJBF000066279,506 N VICTORIA AVE,Ventnor City,NJ,39.3493535,-74.479428,RES3A,3001,,17,NE,1985,1985,3301,2,1,3053.536199,3053.536199,3505,NO,33.19,39.9,3,5.59,6106,113.669641,123.436556,133.161719,139.659311,I,Above,Hip,0,5701,,36.54634546,0,1.1,,,,1,1,,0.03,nav,1,1985,2,, 32466,NJBF000059691,14 N SWARTHMORE AVE,Ventnor City,NJ,39.33469321,-74.4920666,RES1,3001,,17,NE,1930,1930,3102,2,1,1281.610025,1281.610025,3505,NO,30.37,38.23,3,5.77,6106,113.586217,123.373146,133.084486,139.660882,I,Above,Hip,0,5701,,34.2985427,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32467,NJBF000066091,604 N DORSET AVE,Ventnor City,NJ,39.34888518,-74.484404,RES1,3001,,18,NE,2001,2001,3101,1,1,2707.139029,2707.139029,3505,NO,20.15,30.81,3,7.24,6106,113.565568,123.352625,133.072094,139.578119,I,Above,Hip,0,5701,,25.47862796,0,0,,,,1,1,,0.03,nav,1,2001,1,, 32468,NJBF000065649,413 N SOMERSET AVE,Ventnor City,NJ,39.34770852,-74.48017131,RES1,3001,,17,NE,1966,1966,3102,1,1,1256.354331,1256.354331,3505,NO,14.25,19.61,3,-2.94,6106,113.674408,123.441242,133.165702,139.673074,I,Above,Hip,0,5701,,16.93165073,0,0,,,,1,1,,0.03,nav,1,1966,1,, 32469,NJBF000062134,111 S DUDLEY AVE,Ventnor City,NJ,39.33885778,-74.47427923,RES3C,3001,,NaN,E,1965,1965,3303,3,1,11401.74212,11401.74212,3507,NO,34.15,39.36,1,1.25,6106,113.921199,123.64396,133.375163,139.917113,I,Above,Flat,0,NaN,,36.75758362,0,0,,,,1,1,,0.03,nav,1,1965,3,, 32470,NJBF000062257,6711 MONMOUTH AVE,Ventnor City,NJ,39.33909661,-74.48818521,RES1,3001,,19,NE,2015,2015,3102,3,1,1185.278311,1185.278311,3505,NO,50.3,58.17,3,-0.15,6106,113.611443,123.393118,133.108852,139.667823,I,Above,Hip,0,5701,,54.23310823,0,1.1,,,,1,1,,0.03,nav,1,2015,3,, 32471,NJBF000062289,220 N ROSBOROUGH AVE,Ventnor City,NJ,39.33915749,-74.49200386,RES1,3001,,17,NE,1950,1950,3102,1,1,1160.232473,1160.232473,3505,NO,15.17,24.89,3,1.34,6106,113.526221,123.324453,133.036389,139.593256,I,Above,Gable,0,5701,,20.03345006,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 32472,NJBF000065312,27 N VASSAR SQUARE,Ventnor City,NJ,39.34670701,-74.46772966,RES3A,3001,,17,NE,1935,1935,3301,2,1,1476.828721,1476.828721,3505,NO,43.06,53.51,3,8.64,6106,113.961559,123.675249,133.415288,139.899224,I,Above,Hip,0,5701,,48.28314434,0,0,,,,1,1,,0.03,nav,1,1935,2,, 32473,NJBF000062277,108 N BRYANT AVE,Ventnor City,NJ,39.33913687,-74.48541465,RES1,3001,,17,NE,1924,1924,3102,2,1,1335.906527,1335.906527,3505,NO,35.47,41.65,3,0.82,6106,113.672071,123.44204,133.160661,139.719233,I,Above,Hip,0,5701,,38.56247998,0,0,,,,1,1,,0.03,nav,1,1924,2,, 32474,NJBF000065333,28 N JACKSON AVE,Ventnor City,NJ,39.34675816,-74.46747161,RES3A,3001,,17,NE,1928,1928,3301,2,1,1335.053375,1335.053375,3505,NO,27.74,34.53,3,3.04,6106,113.966567,123.679327,133.419707,139.902606,I,Above,Hip,0,5701,,31.13782828,0,0,,,,1,1,,0.03,nav,1,1928,2,, 32475,NJBF000065302,26 N JACKSON AVE,Ventnor City,NJ,39.34667766,-74.46740744,RES3A,3001,,17,NE,1935,1935,3301,2,1,1416.413691,1416.413691,3505,NO,37.67,45.17,3,2.65,6106,113.969031,123.681366,133.421832,139.90491,I,Above,Hip,0,5701,,41.42258209,0,0,,,,1,1,,0.03,nav,1,1935,2,, 32476,NJBF000062245,107 N NEW HAVEN AVE,Ventnor City,NJ,39.33907746,-74.48564392,RES1,3001,,17,NE,1950,1950,3102,1,1,1790.322105,1790.322105,3505,NO,17.09,26.1,3,6.02,6106,113.667828,123.438623,133.156996,139.71596,I,Above,Hip,0,5701,,21.59813061,0,0,,,,1,1,,0.03,nav,1,1950,1,, 32477,NJBF000064522,400 N CAMBRIDGE AVE,Ventnor City,NJ,39.34469575,-74.48453525,RES1,3001,,17,NE,1975,1975,3102,2,1,1671.934719,1671.934719,3505,NO,38.54,44.68,3,0.66,6106,113.617263,123.396305,133.116009,139.644337,I,Above,Flat,0,5701,,41.61360477,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, 32478,NJBF000064992,4805 VENTNOR AVE,Ventnor City,NJ,39.34585812,-74.46707223,RES3A,3001,,NaN,NE,1920,1920,3301,1,1,3848.44153,3848.44153,3505,NO,20.03,30.17,3,3.01,6106,113.987027,123.696323,133.437223,139.923124,I,Above,Flat,0,5701,,25.10223128,0,0,,,,1,1,,0.03,nav,1,1920,1,, 32479,NJBF000064879,4802 VENTNOR AVE,Ventnor City,NJ,39.34557005,-74.46662018,RES3B,3001,29,NaN,ME,1928,1928,3301,3,1,1480.194877,1480.194877,3504,NO,49.33,56.22,-4,0,6106,114.000698,123.707581,133.449074,139.934866,I,Above,Flat,0,NaN,,52.7777781,0,0,,,,1,1,,0.03,nav,1,1928,3,, 32480,NJBF000064872,312 N OXFORD AVE,Ventnor City,NJ,39.34554594,-74.47978213,RES1,3001,,17,NE,1930,1930,3102,2,1,875.815435,875.815435,3505,NO,28.26,40.66,3,4.48,6106,113.711153,123.471925,133.196976,139.715282,I,Above,Gable,0,5701,,34.45939691,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32481,NJBF000064382,105-107 N LITTLE ROCK AVE,Ventnor City,NJ,39.34435164,-74.47240548,RES1,3001,,17,NE,1982,1982,3102,3,1,1958.689751,1958.689751,3507,NO,36.46,46.57,1,0.04,6106,113.889437,123.617116,133.351097,139.860076,I,Above,Flat,0,5701,,41.5157033,0,1.2,,,,1,1,,0.03,nav,1,1982,3,, 32482,NJBF000064641,12 S VASSAR SQUARE,Ventnor City,NJ,39.34496513,-74.46674743,RES3B,3001,,17,ME,1930,1930,3301,2,1,1678.16722,1678.16722,3504,NO,27.08,33.81,-4,0,6106,114.005793,123.711902,133.453203,139.942231,I,Above,Hip,0,NaN,,30.44409283,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32483,NJBF000064450,216 N OXFORD AVE,Ventnor City,NJ,39.34451736,-74.47898898,RES1,3001,,17,NE,1978,1978,3102,1,1,1509.879174,1509.879174,3505,NO,21.44,34.83,3,5.45,6106,113.742156,123.497414,133.223415,139.745959,I,Above,Hip,0,5701,,28.13365429,0,0,,,,1,1,,0.03,nav,1,1978,1,, 32484,NJBF000064634,1 S MARION AVE,Ventnor City,NJ,39.34495749,-74.46794894,RES1,3001,,17,NE,1920,1920,3102,3,1,1542.55246,1542.55246,3504,NO,44.71,58.08,-4,0,6106,113.979501,123.690414,133.43013,139.923077,I,Above,Gable,0,5701,,51.39339816,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 32485,NJBF000064605,3 S MARION AVE,Ventnor City,NJ,39.34488601,-74.46789288,RES1,3001,,17,NE,1925,1925,3102,2,1,1602.048516,1602.048516,3504,NO,34.67,47.01,-4,0,6106,113.981658,123.692194,133.431981,139.925086,I,Above,Gable,0,5701,,40.84102873,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32486,NJBF000064657,4 S BATON ROUGE AVE,Ventnor City,NJ,39.34501203,-74.46758831,RES1,3001,,17,NE,1905,1905,3102,2,1,2180.269243,2180.269243,3504,NO,24.41,33.24,-4,0,6106,113.986712,123.696292,133.436485,139.928022,I,Above,Gable,0,5701,,28.82227049,0,0,,,,1,1,,0.03,nav,1,1905,2,, 32487,NJBF000064439,215 N DUDLEY AVE,Ventnor City,NJ,39.34449307,-74.47936906,RES1,3001,,17,NE,1948,1948,3102,1,1,1538.624264,1538.624264,3505,NO,19.37,31.34,3,3.04,6106,113.734084,123.49088,133.216437,139.739734,I,Above,Hip,0,5701,,25.35877577,0,0,,,,1,1,,0.03,nav,1,1948,1,, 32488,NJBF000064615,,Ventnor City,NJ,39.34490617,-74.47670857,RES1,3001,,NaN,NE,1960,0,3102,2,1,1961.027795,1961.027795,3505,NO,30.2,44.13,3,0.59,6106,113.787352,123.533947,133.26265,139.778905,I,Above,Hip,0,5701,,37.16529836,0,0,,,,1,1,,0.03,nav,1,1960,2,, 32489,NJBF000064646,202 N SURREY AVE,Ventnor City,NJ,39.34498386,-74.47677024,RES1,3001,,45,NE,1980,1980,3102,2,2,1680.545716,1680.545716,3505,NO,31.6,39.18,3,1.39,6106,113.784984,123.531999,133.260628,139.776595,I,Above,Hip,0,5701,,35.39000423,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32490,NJBF000064495,5503 MONMOUTH AVE,Ventnor City,NJ,39.34462848,-74.47736939,RES1,3001,,17,NE,1929,1929,3102,1,1,1365.628851,1365.628851,3505,NO,15.16,23.06,3,2.99,6106,113.776442,123.525183,133.253097,139.772129,I,Above,Hip,0,5701,,19.10970689,0,1.1,,,,1,1,,0.03,nav,1,1929,1,, 32491,NJBF000064452,,Ventnor City,NJ,39.34451984,-74.46713443,RES1,3001,,NaN,NE,1930,0,3102,2,1,1473.878335,1473.878335,3504,NO,38.83,44.1,-4,0,6106,114.003109,123.709814,133.450582,139.942955,I,Above,Hip,0,5701,,41.46898292,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32492,NJBF000064477,32A N WEYMOUTH AVE,Ventnor City,NJ,39.34457848,-74.47210001,RES1,3001,,16,NE,1980,1980,3102,2,1,946.2748877,946.2748877,3507,NO,33.38,39.72,1,-0.09,6106,113.893187,123.620107,133.354478,139.861498,I,Above,Flat,0,5701,,36.5482976,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32493,NJBF000064664,217 N SOMERSET AVE,Ventnor City,NJ,39.34502698,-74.47801785,RES1,3001,,17,NE,1929,1929,3102,2,1,947.148202,947.148202,3505,NO,30.54,39.39,3,0.47,6106,113.75689,123.509188,133.236326,139.754454,I,Above,Gable,0,5701,,34.96708754,0,0,,,,1,1,,0.03,nav,1,1929,2,, 32494,NJBF000064621,208 N SUFFOLK AVE,Ventnor City,NJ,39.344929,-74.477544,RES1,3001,,17,NE,1929,1929,3102,1,1,936.0201182,936.0201182,3505,NO,25.21,30.75,3,6.1,6106,113.768633,123.518747,133.24645,139.764219,I,Above,Flat,0,5701,,27.98129451,0,0,,,,1,1,,0.03,nav,1,1929,1,, 32495,NJBF000064448,5 N HILLSIDE AVE,Ventnor City,NJ,39.34451596,-74.47051742,RES1,3001,,17,NE,1928,1928,3102,1,1,1524.295832,1524.295832,3507,NO,20.02,30.89,1,1.2,6106,113.928824,123.649166,133.385542,139.888428,I,Above,Hip,0,5701,,25.45296733,0,0,,,,1,1,,0.03,nav,1,1928,1,, 32496,NJBF000064369,,Ventnor City,NJ,39.34432079,-74.48161605,RES1,3001,,NaN,NE,1969,0,3102,2,1,2699.696135,2699.696135,3505,NO,32.12,43.94,3,8.54,6106,113.686728,123.452592,133.175567,139.702991,I,Above,Gable,0,5701,,38.0316099,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32497,NJBF000064487,218 N OXFORD AVE,Ventnor City,NJ,39.34460774,-74.47904468,RES1,3001,,17,NE,1950,1950,3102,1,1,1446.278481,1446.278481,3505,NO,21.88,36.43,3,4.83,6106,113.739724,123.495412,133.221347,139.743497,I,Above,Hip,0,5701,,29.15392789,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 32498,NJBF000064409,18 S BATON ROUGE AVE,Ventnor City,NJ,39.34441965,-74.46705916,RES1,3001,,17,NE,1925,1925,3102,2,1,1457.306766,1457.306766,3504,NO,26.15,35.66,-4,0,6106,114.006064,123.712252,133.453114,139.945706,I,Above,Hip,0,5701,,30.90208994,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32499,NJBF000064429,5905 CALVERT AVE,Ventnor City,NJ,39.34446048,-74.48122316,RES1,3001,,45,NE,1952,1952,3102,2,2,1947.096988,1947.096988,3505,NO,24.9,31.06,3,3.28,6106,113.693579,123.458088,133.181508,139.707684,I,Above,Flat,0,5701,,27.97959016,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, 32500,NJBF000064307,19 S MARION AVE,Ventnor City,NJ,39.344172,-74.46732039,RES1,3001,,17,NE,1920,1920,3102,2,1,1489.025718,1489.025718,3504,NO,24.27,36.97,-4,0,6110,114.00358,123.710278,133.450782,139.945389,I,Above,Hip,0,5701,,30.62070296,0,0,,,,1,1,,0.35,nav,1,1920,2,, 32501,NJBF000059678,26 N WASHINGTON AVE,Ventnor City,NJ,39.33466571,-74.4927624,RES1,3001,,NaN,NE,1925,1925,3102,2,1,1119.162982,1119.162982,3505,NO,35.67,41.31,3,-2.14,6106,113.571262,123.361098,133.071776,139.647386,I,Above,Gable,0,5701,,38.49265088,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32502,NJBF000064151,4911 ATLANTIC AVE,Ventnor City,NJ,39.343717,-74.4675165,RES3B,3001,,17,E,1902,1902,3303,3,1,1384.183435,1384.183435,3504,NO,34.26,43.55,-4,0,6106,114.00522,123.711716,133.451933,139.949312,I,Above,Hip,0,NaN,,38.90389234,0,1.1,,,,1,1,,0.03,nav,1,1902,3,, 32503,NJBF000064198,126 N SOMERSET AVE,Ventnor City,NJ,39.34387025,-74.47754978,RES1,3001,,17,NE,1935,1935,3102,2,1,1042.539423,1042.539423,3505,NO,39.48,49.48,3,2.96,6106,113.782419,123.530269,133.257964,139.781373,I,Above,Gable,0,5701,,44.4805015,0,0,,,,1,1,,0.03,nav,1,1935,2,, 32504,NJBF000064155,302 N CORNWALL AVE,Ventnor City,NJ,39.34372521,-74.48288035,RES1,3001,,17,NE,1958,1958,3102,1,1,1221.656895,1221.656895,3505,NO,13.88,22.12,3,2.51,6106,113.666667,123.436566,133.158126,139.69019,I,Above,Hip,0,5701,,17.99990661,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32505,NJBF000064220,128 N SOMERSET AVE,Ventnor City,NJ,39.34392363,-74.47762072,RES1,3001,,16,NE,1935,1935,3102,1,1,1427.280416,1427.280416,3505,NO,16.36,30.29,3,4.43,6106,113.780141,123.528406,133.256017,139.779275,I,Above,Flat,0,5701,,23.32314196,0,0,,,,1,1,,0.03,nav,1,1935,1,, 32506,NJBF000064114,101 S MARION AVE,Ventnor City,NJ,39.34361807,-74.46666598,RES3B,3001,,17,E,1920,1920,3303,3,1,2277.939978,2277.939978,3504,NO,34.47,41.25,-4,0,6106,114.0252,123.728068,133.469398,139.964379,I,Above,Gable,0,NaN,,37.85980248,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, 32507,NJBF000064000,5501 EDGEWATER AVE,Ventnor City,NJ,39.34331045,-74.4763231,RES1,3001,,17,NE,1970,1970,3102,2,1,1905.096417,1905.096417,3505,NO,29.83,38.42,3,0.54,6106,113.816856,123.55838,133.287525,139.811398,I,Above,Hip,0,5701,,34.1226577,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, 32508,NJBF000064018,139-141 N DORSET AVE,Ventnor City,NJ,39.34334583,-74.47928968,COM1,3001,,NaN,ME,1957,1957,3401,2,1,1851.903369,1851.903369,3507,NO,22.77,32.45,1,-0.43,6106,113.750951,123.504907,133.230552,139.759884,I,Above,Flat,0,NaN,,27.60761232,0,0,,,,1,1,,0.03,nav,1,1957,2,, 32509,NJBF000063990,139-141 N DORSET AVE,Ventnor City,NJ,39.34328594,-74.47924135,COM1,3001,,NaN,ME,1940,1957,3401,3,1,1700.308545,1700.308545,3507,NO,55.35,64.33,1,1.34,6106,113.752825,123.506443,133.232144,139.761719,I,Above,Flat,0,NaN,,59.84006487,0,0,,,,1,1,,0.03,nav,1,1940,3,, 32510,NJBF000063986,5007 ATLANTIC AVE,Ventnor City,NJ,39.34327721,-74.46844915,RES3B,3001,,17,E,1925,1925,3303,3,1,2051.8759,2051.8759,3504,NO,37.03,44.07,-4,0,6110,113.990536,123.699811,133.438782,139.941276,I,Above,Hip,0,NaN,,40.54575588,0,1.1,,,,1,1,,0.35,nav,1,1925,3,, 32511,NJBF000063989,115 N OXFORD AVE,Ventnor City,NJ,39.34328418,-74.4774902,RES1,3001,,17,NE,1970,1970,3102,1,1,1991.577237,1991.577237,3505,NO,16.84,22.69,3,5.31,6106,113.791473,123.537784,133.265538,139.791952,I,Above,Gable,0,5701,,19.76540627,0,1.1,,,,1,1,,0.03,nav,1,1970,1,, 32512,NJBF000063812,25 S WEYMOUTH AVE,Ventnor City,NJ,39.34275742,-74.47016479,RES1,3001,,NaN,NE,1925,1920,3102,2,3,1225.531058,1225.531058,3505,NO,41.94,54.75,3,7.97,6110,113.959686,123.67474,133.411468,139.921879,I,Above,Hip,0,5701,,48.34536048,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, 32513,NJBF000063809,604 KINGSLEY DRIVE,Ventnor City,NJ,39.34275084,-74.4941814,RES1,3001,,17,NE,1976,1976,3102,2,1,2463.162886,2463.162886,3505,NO,34.46,41.89,3,7.17,6106,113.429494,123.245788,132.955673,139.494063,I,Above,Hip,0,5701,,38.17771522,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, 32514,NJBF000063818,,Ventnor City,NJ,39.34278064,-74.47656719,RES1,3001,,NaN,NE,1969,0,3102,2,1,1407.221969,1407.221969,3505,NO,42.36,52.98,3,7.45,6106,113.818472,123.559829,133.288662,139.815855,I,Above,Flat,0,5701,,47.6664836,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32515,NJBF000063873,5105 ATLANTIC AVE,Ventnor City,NJ,39.342956,-74.4691085,RES1,3001,,45,NE,1960,1960,3102,2,2,1673.828685,1673.828685,3505,NO,40.64,55.16,3,3.47,6110,113.980265,123.69149,133.429585,139.935724,I,Above,Gable,0,5701,,47.90167484,0,0,,,,1,1,,0.35,nav,1,1960,2,, 32516,NJBF000063784,,Ventnor City,NJ,39.34269282,-74.4803083,RES1,3001,,NaN,NE,1940,0,3102,2,1,1662.712779,1662.712779,3505,NO,36.5,47.69,3,4.14,6106,113.737136,123.493897,133.218354,139.752807,I,Above,Hip,0,5701,,42.09562283,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32517,NJBF000063533,607 N LAFAYETTE AVE,Ventnor City,NJ,39.3419625,-74.4958655,RES1,3001,,17,NE,1974,1974,3102,2,1,1659.236697,1659.236697,3505,NO,29.95,37.91,3,-0.57,6106,113.402751,123.224563,132.932893,139.473641,I,Above,Gable,0,5701,,33.93310469,0,0,,,,1,1,,0.03,nav,1,1974,2,, 32518,NJBF000063671,3 N SOMERSET AVE,Ventnor City,NJ,39.34235144,-74.47476395,RES1,3001,,17,NE,1900,1900,3102,2,1,2799.626616,2799.626616,3505,NO,29.98,41.9,3,8.19,6106,113.863883,123.596822,133.327802,139.853094,I,Above,Hip,0,5701,,35.94199284,0,1.1,,,,1,1,,0.03,nav,1,1900,2,, 32519,NJBF000063631,5505 VENTNOR AVE,Ventnor City,NJ,39.34224641,-74.47443033,RES1,3001,,17,NE,1982,1982,3102,2,1,1871.862614,1871.862614,3505,NO,28.74,43.27,3,3.87,6106,113.872628,123.603955,133.335334,139.860334,I,Above,Gable,0,5701,,36.00560205,0,1.1,,,,1,1,,0.03,nav,1,1982,2,, 32520,NJBF000063587,6104A MONMOUTH AVE,Ventnor City,NJ,39.34211855,-74.48081584,RES1,3001,,17,NE,1970,1970,3102,2,1,1923.515676,1923.515676,3505,NO,28.71,37.01,3,2.16,6106,113.733553,123.491146,133.215005,139.7533,I,Above,Hip,0,5701,,32.85532187,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32521,NJBF000063579,5602 WINCHESTER AVE,Ventnor City,NJ,39.34209942,-74.47529645,RES1,3001,,17,NE,1930,1930,3102,2,1,2439.958439,2439.958439,3505,NO,27.19,34.43,3,3.93,6106,113.85551,123.590072,133.320392,139.848289,I,Above,Hip,0,5701,,30.8099767,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32522,NJBF000063541,123 N CORNWALL AVE,Ventnor City,NJ,39.34200068,-74.48149393,RES1,3001,,17,NE,1980,1980,3102,2,1,2385.227009,2385.227009,3505,NO,44.65,54.18,3,5.74,6106,113.720161,123.480334,133.203423,139.743255,I,Above,Flat,0,5701,,49.41860452,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 32523,NJBF000062938,125 N PORTLAND AVE,Ventnor City,NJ,39.34054589,-74.48393772,RES1,3001,,17,NE,1940,1940,3102,2,1,995.4629727,995.4629727,3505,NO,37.88,48.51,3,5.72,6106,113.685674,123.452775,133.173088,139.72328,I,Above,Flat,0,5701,,43.19553676,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32524,NJBF000063468,207 N SACRAMENTO AVE,Ventnor City,NJ,39.34180569,-74.4834798,RES1,3001,,47,NE,1925,1925,3102,1,2,1410.84365,1410.84365,3505,NO,22.96,33.8,3,8.46,6106,113.678912,123.44702,133.167894,139.710893,I,Above,Hip,0,5701,,28.38119799,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 32525,NJBF000063459,7 S SUFFOLK AVE,Ventnor City,NJ,39.34178619,-74.47301006,RES1,3001,,18,NE,1926,1926,3102,2,1,1913.59161,1913.59161,3505,NO,30.1,43.43,3,2.37,6110,113.90998,123.634431,133.367516,139.891091,I,Above,Flat,0,5701,,36.76456311,0,1.2,,,,1,1,,0.35,nav,1,1926,2,, 32526,NJBF000063398,5702 WINCHESTER AVE,Ventnor City,NJ,39.34160294,-74.4763127,RES1,3001,,17,NE,1988,1988,3102,2,1,2510.530773,2510.530773,3505,YES,42.93,50.81,3,5.87,6106,113.839702,123.577334,133.306401,139.839271,I,Above,Gable,0,5701,,46.86905562,0,0,,,,1,1,,0.03,nav,1,1988,2,, 32527,NJBF000063463,5605 VENTNOR AVE,Ventnor City,NJ,39.34179738,-74.47531938,RES1,3001,,17,NE,1920,1920,3102,2,1,2215.127756,2215.127756,3505,NO,34.11,43.53,3,-1.7,6106,113.859014,123.592982,133.323253,139.852783,I,Above,Gable,0,5701,,38.82143379,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32528,NJBF000063116,118 N HARVARD AVE,Ventnor City,NJ,39.340921,-74.48249,RES1,3001,,17,NE,1925,1925,3102,1,1,1485.691314,1485.691314,3505,NO,24.67,35.3,3,8.57,6106,113.712607,123.474473,133.196397,139.743261,I,Above,Flat,0,5701,,29.98515931,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 32529,NJBF000063153,,Ventnor City,NJ,39.34099839,-74.47040511,COM1,3001,,NaN,ME,1969,0,3401,3,1,2486.086791,2486.086791,3507,NO,54.83,63.52,1,-0.76,6106,113.977719,123.689737,133.425994,139.945616,I,Above,Flat,0,NaN,,59.17117167,0,0,,,,1,1,,0.03,nav,1,1969,3,, 32530,NJBF000063103,5300 BOARDWALK,Ventnor City,NJ,39.34089828,-74.47013251,COM1,3001,,NaN,ME,1950,1960,3401,2,1,7706.781105,7706.781105,3507,NO,39.11,49.84,1,1.56,6106,113.985024,123.695707,133.432296,139.951514,I,Above,Flat,0,NaN,,44.4709837,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32531,NJBF000063246,205 N PORTLAND AVE,Ventnor City,NJ,39.34121952,-74.48445315,RES1,3001,,NaN,NE,1969,0,3102,2,1,1415.281288,1415.281288,3505,NO,23.09,29.03,3,-1.45,6106,113.665259,123.43613,133.15592,139.70283,I,Above,Flat,0,5701,,26.06396051,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32532,NJBF000062769,107 N PRINCETON AVE,Ventnor City,NJ,39.34018706,-74.48287106,RES1,3001,,17,NE,1928,1928,3102,2,1,1192.813231,1192.813231,3505,NO,32.54,38.88,3,-2.05,6106,113.714052,123.475789,133.197242,139.748492,I,Above,Hip,0,5701,,35.71123255,0,0,,,,1,1,,0.03,nav,1,1928,2,, 32533,NJBF000063128,5505 ATLANTIC AVE,Ventnor City,NJ,39.340944,-74.4733775,RES1,3001,,18,NE,1919,1919,3102,1,1,2111.024576,2111.024576,3505,NO,18.19,26.53,3,7.29,6110,113.913105,123.637118,133.369674,139.898524,I,Above,Flat,0,5701,,22.36286948,0,1.2,,,,1,1,,0.35,nav,1,1919,1,, 32534,NJBF000063005,105 S SUFFOLK AVE,Ventnor City,NJ,39.34068047,-74.47211156,RES1,3001,,17,NE,1913,1913,3102,3,1,2050.719552,2050.719552,3505,NO,56.98,67.61,3,2.73,6106,113.94444,123.662665,133.396751,139.923237,I,Above,Hip,0,5701,,62.29772801,0,1.1,,,,1,1,,0.03,nav,1,1913,3,, 32535,NJBF000062880,109 S SUFFOLK AVE,Ventnor City,NJ,39.3404279,-74.47191506,RES1,3001,,17,NE,1904,1904,3102,3,1,2300.867248,2300.867248,3505,NO,30.94,44.95,3,-2.48,6106,113.952132,123.668962,133.403263,139.930387,I,Above,Hip,0,5701,,37.94774556,0,1.1,,,,1,1,,0.03,nav,1,1904,3,, 32536,NJBF000063151,6411 SUNSET AVE,Ventnor City,NJ,39.34098785,-74.48528303,RES1,3001,,NaN,NE,1970,1970,3102,2,1,1070.488303,1070.488303,3505,NO,36.26,46.73,3,-2.14,6106,113.650035,123.423888,133.142774,139.691407,I,Above,Flat,0,5701,,41.49208215,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32537,NJBF000063144,119 N SACRAMENTO AVE,Ventnor City,NJ,39.34097488,-74.48279857,RES1,3001,,17,NE,1950,1950,3102,2,1,1449.6396,1449.6396,3505,NO,29.03,43.4,3,2.71,6106,113.705063,123.46836,133.189945,139.736828,I,Above,Gable,0,5701,,36.21365181,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32538,NJBF000062708,309 HAMPSHIRE DRIVE,Ventnor City,NJ,39.34005841,-74.49302101,RES1,3001,,35,NE,1974,1974,3102,2,1,6691.944139,6691.944139,3505,NO,23.92,30.36,3,-2.87,6106,113.491483,123.296333,133.007333,139.559231,I,Above,Hip,0,5701,,27.13857528,0,0,,,,1,1,,0.03,nav,1,1974,2,, 32539,NJBF000062713,129 N NEWPORT AVE,Ventnor City,NJ,39.34007536,-74.48500629,RES1,3001,,17,NE,1925,1925,3102,2,1,1511.414202,1511.414202,3505,NO,35.76,50.21,3,0.32,6106,113.668431,123.438937,133.158068,139.711453,I,Above,Flat,0,5701,,42.98531363,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32540,NJBF000062584,,Ventnor City,NJ,39.33976244,-74.4830821,RES1,3001,,NaN,NE,1970,0,3102,2,1,1385.189509,1385.189509,3505,NO,35.49,47.45,3,3.75,6106,113.715117,123.476727,133.197915,139.751679,I,Above,Hip,0,5701,,41.46767213,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32541,NJBF000062739,105 1/2 N PRINCETON,Ventnor City,NJ,39.34011842,-74.48283009,RES1,3001,,28,NE,1925,1925,3102,2,1,800.0825171,800.0825171,3505,NO,20.55,35.28,3,-2.61,6106,113.715885,123.477284,133.198777,139.750365,I,Above,Flat,0,5701,,27.91540784,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32542,NJBF000062723,6208 WINCHESTER AVE,Ventnor City,NJ,39.34008769,-74.48164087,RES1,3001,,17,NE,1920,1920,3102,2,1,1321.472706,1321.472706,3505,NO,39.38,44.62,3,8.47,6106,113.74252,123.498839,133.221646,139.772111,I,Above,Flat,0,5701,,41.99731715,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, 32543,NJBF000062676,219 N WISSAHICKON AVE,Ventnor City,NJ,39.33998562,-74.49048389,RES1,3001,,17,NE,1954,1954,3102,1,1,1863.782406,1863.782406,3505,NO,15.98,22.97,3,-1.81,6106,113.54858,123.342296,133.055769,139.609563,I,Above,Hip,0,5701,,19.47413273,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, 32544,NJBF000062513,231 N WYOMING AVE,Ventnor City,NJ,39.33960584,-74.4927887,RES1,3001,,17,NE,1950,1950,3102,1,1,1060.526389,1060.526389,3505,NO,17.8,28.07,3,7.1,6106,113.502753,123.305489,133.016692,139.570873,I,Above,Flat,0,5701,,22.93787923,0,0,,,,1,1,,0.03,nav,1,1950,1,, 32545,NJBF000066054,5401 FREMONT AVE,Ventnor City,NJ,39.34877962,-74.47981207,RES1,3001,,18,NE,1989,1989,3102,2,1,1803.206001,1803.206001,3507,NO,24.01,31.09,1,2.42,6106,113.668517,123.435945,133.16072,139.661905,I,Above,Hip,0,5701,,27.54976086,0,0,,,,1,1,,0.03,nav,1,1989,2,, 32546,NJBF000067241,718 N LITTLE ROCK AVE,Ventnor City,NJ,39.3527124,-74.48141503,RES3A,3001,,27,NE,1980,1980,3301,2,1,1195.854854,1195.854854,3505,NO,39.16,49.94,3,4.59,6106,113.582954,123.364299,133.08654,139.569349,I,Above,Hip,0,5701,,44.55025566,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32547,NJBF000064584,211 N SOMERSET AVE,Ventnor City,NJ,39.34484329,-74.47788682,RES1,3001,,17,NE,1927,1927,3102,1,1,996.0329454,996.0329454,3505,NO,19.8,31.19,3,6.53,6106,113.762193,123.513552,133.240848,139.759715,I,Above,Gable,0,5701,,25.49218741,0,0,,,,1,1,,0.03,nav,1,1927,1,, 32548,NJBF000066027,705 N HARVARD AVE,Ventnor City,NJ,39.34871503,-74.48810858,RES1,3001,,17,NE,1975,1975,3101,1,1,1719.013089,1719.013089,3505,NO,20.92,26,3,2.95,6106,113.485657,123.288275,133.003707,139.512941,I,Above,Hip,0,5701,,23.45979893,0,0,,,,1,1,,0.03,nav,1,1975,1,, 32549,NJBF000059488,24 N MARTINDALE AVE,Ventnor City,NJ,39.33434326,-74.49323455,RES1,3001,,17,NE,1926,1926,3102,2,1,1141.565048,1141.565048,3505,NO,23.06,34.8,3,1.71,6106,113.565324,123.356313,133.066489,139.642701,I,Above,Hip,0,5701,,28.92590034,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, 32550,NJBF000059499,2 N BALTIMORE AVE,Ventnor City,NJ,39.3343585,-74.4910595,RES1,3001,,45,NE,1925,1925,3102,2,2,1616.55424,1616.55424,3505,NO,30.28,36.36,3,-0.12,6106,113.613064,123.39478,133.107024,139.686,I,Above,Hip,0,5701,,33.32067007,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32551,NJBF000059471,5 N WASHINGTON AVE,Ventnor City,NJ,39.3343125,-74.492048,RES1,3001,,17,NE,1925,1925,3102,2,1,1721.419534,1721.419534,3505,NO,33.45,48.3,3,-0.12,6106,113.591919,123.377737,133.089026,139.666948,I,Above,Hip,0,5701,,40.87259707,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32552,NJBF000061812,305 WINDSOR DRIVE,Ventnor City,NJ,39.33829546,-74.49365495,RES1,3001,,17,NE,1980,1980,3102,2,1,2210.968481,2210.968481,3505,NO,37.72,44.48,3,4.01,6106,113.501479,123.304683,133.014981,139.57434,I,Above,Gable,0,5701,,41.09709507,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32553,NJBF000061984,13 N NEWPORT AVE,Ventnor City,NJ,39.33859363,-74.48375452,RES1,3001,,17,NE,1925,1925,3102,2,1,1823.909676,1823.909676,3505,NO,37.78,43.82,3,0.75,6106,113.716057,123.477663,133.198005,139.758666,I,Above,Flat,0,5701,,40.79988928,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, 32554,NJBF000060488,9 S RICHARDS AVE,Ventnor City,NJ,39.33605738,-74.48539267,RES1,3001,,17,NE,1953,1953,3102,1,1,1560.218676,1560.218676,3505,NO,15.47,21.57,3,3.73,6106,113.714546,123.476658,133.194907,139.769766,I,Above,Hip,0,5701,,18.52017608,0,0,,,,1,1,,0.03,nav,1,1953,1,, 32555,NJBF000059171,6906 ATLANTIC AVE,Ventnor City,NJ,39.33369649,-74.48712464,RES1,3001,,17,NE,1962,1962,3102,2,1,1676.877129,1676.877129,3505,NO,27.45,39.97,3,0.2,6110,113.708983,123.472164,133.188169,139.774006,I,Above,Hip,0,5701,,33.70639402,0,1.1,,,,1,1,,0.35,nav,1,1962,2,, 32556,NJBF000060687,6503 ATLANTIC AVE,Ventnor City,NJ,39.336397,-74.48267619,RES1,3001,,18,NE,1990,1990,3102,3,1,2061.086986,2061.086986,3505,NO,37.72,48.68,3,0.38,6110,113.769757,123.52129,133.242494,139.81439,I,Above,Flat,0,5701,,43.20216111,0,0,,,,1,1,,0.35,nav,1,1990,3,, 32557,NJBF000062175,119 N AVOLYN AVE,Ventnor City,NJ,39.33892611,-74.48624999,RES1,3001,,17,NE,1938,1938,3102,1,1,1533.271118,1533.271118,3505,NO,20.15,29.63,3,4.22,6106,113.656496,123.429497,133.147218,139.707114,I,Above,Hip,0,5701,,24.89320023,0,0,,,,1,1,,0.03,nav,1,1938,1,, 32558,NJBF000062144,5900 ATLANTIC AVE,Ventnor City,NJ,39.33888435,-74.47639808,RES1,3001,,18,NE,1927,1927,3102,2,1,2103.668519,2103.668519,3505,NO,31.39,36.44,3,0.26,6110,113.874237,123.605794,133.334478,139.881922,I,Above,Hip,0,5701,,33.91826693,0,1.2,,,,1,1,,0.35,nav,1,1927,2,, 32559,NJBF000062131,313 WINDSOR DRIVE,Ventnor City,NJ,39.33884787,-74.49413481,RES1,3001,,17,NE,1980,1980,3102,1,1,2093.099605,2093.099605,3505,NO,19.01,32.6,3,4.54,6106,113.483304,123.289984,132.99987,139.5563,I,Above,Gable,0,5701,,25.8054593,0,0,,,,1,1,,0.03,nav,1,1980,1,, 32560,NJBF000062172,102 N BRYANT AVE,Ventnor City,NJ,39.3389185,-74.4852385,RES1,3001,,17,NE,1942,1942,3102,1,1,1550.935111,1550.935111,3505,NO,22.84,35.59,3,7.32,6106,113.678944,123.447625,133.166413,139.726092,I,Above,Gable,0,5701,,29.21416483,0,1.1,,,,1,1,,0.03,nav,1,1942,1,, 32561,NJBF000065315,508 N CORNWALL AVE,Ventnor City,NJ,39.34671677,-74.48526082,RES1,3001,,17,NE,1960,1960,3101,1,1,1544.232254,1544.232254,3505,NO,14.43,23.12,3,-1.67,6106,113.574704,123.361099,133.079871,139.598004,I,Above,Hip,0,5701,,18.77671954,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, 32562,NJBF000063923,105 N OXFORD AVE,Ventnor City,NJ,39.34308591,-74.47733305,RES1,3001,,18,NE,2014,2014,3102,2,1,1195.608624,1195.608624,3505,NO,19.65,34.5,3,-2.32,6106,113.797552,123.54277,133.270704,139.797863,I,Above,Hip,0,5701,,27.07676171,0,0,,,,1,1,,0.03,nav,1,2014,2,, 32563,NJBF000058495,21 S FREDERICKSBURG,Ventnor City,NJ,39.33241835,-74.49194334,RES1,3001,,45,NE,1937,1937,3102,2,2,1770.650443,1770.650443,3505,NO,34.06,41.04,3,1.8,6106,113.620705,123.400844,133.111831,139.696829,I,Above,Hip,0,5701,,37.55256841,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, 32564,NJBF000061888,9 N NEWPORT AVE,Ventnor City,NJ,39.33842378,-74.48365723,RES1,3001,,47,NE,1940,1940,3102,2,1,1414.257962,1414.257962,3505,NO,29.23,38.66,3,5.84,6106,113.720523,123.481296,133.201725,139.763244,I,Above,Flat,0,5701,,33.94380015,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32565,NJBF000061583,312-314 WALDON DRIVE,Ventnor City,NJ,39.33790327,-74.49495673,RES1,3001,,45,NE,1967,1967,3102,2,2,1955.21478,1955.21478,3505,NO,20.45,35.13,3,-2.96,6106,113.478065,123.285908,132.994961,139.554609,I,Above,Gable,0,5701,,27.78935416,0,0,,,,1,1,,0.03,nav,1,1967,2,, 32566,NJBF000061723,203 N WYOMING AVE,Ventnor City,NJ,39.33815032,-74.49099417,RES1,3001,,17,NE,1947,1947,3102,2,1,1709.836067,1709.836067,3505,NO,26.76,34.16,3,2.72,6106,113.562277,123.353636,133.066477,139.628793,I,Above,Hip,0,5701,,30.45783104,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 32567,NJBF000061697,203 N WYOMING AVE,Ventnor City,NJ,39.33809946,-74.49082639,RES1,3001,,17,NE,1947,1947,3102,2,1,1136.098708,1136.098708,3505,NO,22.24,29.31,3,-0.14,6106,113.566686,123.357193,133.070195,139.632868,I,Above,Flat,0,5701,,25.77594945,0,1.2,,,,1,1,,0.03,nav,1,1947,2,, 32568,NJBF000061602,,Ventnor City,NJ,39.33792712,-74.483275,COM1,3001,,NaN,ME,1969,0,3401,2,1,2511.384287,2511.384287,3507,NO,29.84,40.61,1,2.53,6106,113.735695,123.493621,133.214403,139.778361,I,Above,Hip,0,NaN,,35.22539604,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32569,NJBF000061865,107 S DERBY AVE,Ventnor City,NJ,39.3383944,-74.47660554,RES1,3001,,20,NE,1915,1915,3102,2,1,3800.388359,3800.388359,3505,NO,41.38,51.41,3,3.74,6106,113.876268,123.60749,133.335861,139.886402,I,Above,Flat,0,5701,,46.39659026,0,1.2,,,,1,1,,0.03,nav,1,1915,2,, 32570,NJBF000061876,107 S DERBY AVE,Ventnor City,NJ,39.338404,-74.4763895,RES1,3001,,20,NE,1915,1915,3102,2,1,737.7241662,737.7241662,3505,NO,40.8,52.01,3,3.65,6106,113.880907,123.611257,133.339884,139.889837,I,Above,Hip,0,5701,,46.40442042,0,1.2,,,,1,1,,0.03,nav,1,1915,2,, 32571,NJBF000061610,6911 MONMOUTH AVE,Ventnor City,NJ,39.33793937,-74.49047709,RES1,3001,,17,NE,1930,1930,3102,1,1,1391.609813,1391.609813,3505,NO,14.42,22.31,3,-0.11,6106,113.576582,123.365186,133.078515,139.642181,I,Above,Hip,0,5701,,18.36195548,0,0,,,,1,1,,0.03,nav,1,1930,1,, 32572,NJBF000061621,7020-7022 CALVERT AVE,Ventnor City,NJ,39.33795956,-74.49299051,RES1,3001,,45,NE,1970,1970,3102,2,2,1561.776232,1561.776232,3505,NO,30.66,45.34,3,3.93,6106,113.520744,123.320226,133.031124,139.592622,I,Above,Gable,0,5701,,38.00092334,0,0,,,,1,1,,0.03,nav,1,1970,2,, 32573,NJBF000065244,512 N HARVARD AVE,Ventnor City,NJ,39.34650317,-74.48685776,RES1,3001,,17,NE,1989,1989,3102,2,1,2125.178434,2125.178434,3505,NO,27.1,38.5,3,-2.49,6106,113.542134,123.334925,133.051981,139.572188,I,Above,Flat,0,5701,,32.80423927,0,0,,,,1,1,,0.03,nav,1,1989,2,, 32574,NJBF000061366,108 N WISSAHICKON AVE,Ventnor City,NJ,39.33751601,-74.48850256,RES1,3001,,17,NE,1945,1945,3102,1,1,1899.634779,1899.634779,3505,NO,19.41,25.66,3,3.54,6106,113.625957,123.405034,133.120288,139.687078,I,Above,Hip,0,5701,,22.53815484,0,0,,,,1,1,,0.03,nav,1,1945,1,, 32575,NJBF000061297,106 N WISSAHICKON AVE,Ventnor City,NJ,39.3373965,-74.4884025,RES1,3001,,17,NE,1927,1927,3102,1,1,1384.606021,1384.606021,3505,NO,19.17,33.01,3,5.23,6106,113.629805,123.40815,133.123491,139.690914,I,Above,Hip,0,5701,,26.09347621,0,1.1,,,,1,1,,0.03,nav,1,1927,1,, 32576,NJBF000061397,,Ventnor City,NJ,39.33756685,-74.49516238,RES1,3001,,NaN,NE,1969,0,3102,2,1,1705.230566,1705.230566,3505,NO,36.96,45.64,3,1.35,6106,113.478149,123.286016,132.994851,139.55567,I,Above,Hip,0,5701,,41.29979961,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32577,NJBF000061563,103 N BUFFALO AVE,Ventnor City,NJ,39.337864,-74.487571,RES1,3001,,17,NE,2008,2008,3102,3,1,2072.484799,2072.484799,3505,NO,52.13,64.78,3,6.28,6106,113.641778,123.417759,133.134002,139.699348,I,Above,Hip,0,5701,,58.45364108,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, 32578,NJBF000060602,6 S TROY AVE,Ventnor City,NJ,39.33626323,-74.48530961,RES1,3001,,16,NE,1940,1940,3102,1,1,3901.227704,3901.227704,3505,NO,16.38,29.29,3,1.17,6106,113.713549,123.475844,133.194213,139.76799,I,Above,Hip,0,5701,,22.83613048,0,0,,,,1,1,,0.03,nav,1,1940,1,, 32579,NJBF000060597,120 N BALTIMORE AVE,Ventnor City,NJ,39.33625505,-74.49259194,RES1,3001,,17,NE,1948,1948,3102,1,1,2092.154206,2092.154206,3505,NO,22.87,30.13,3,5.63,6106,113.553003,123.346349,133.057435,139.626767,I,Above,Hip,0,5701,,26.49896528,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, 32580,NJBF000061351,101 S HARVARD AVE,Ventnor City,NJ,39.33748647,-74.47926435,RES1,3001,,19,NE,1917,1917,3102,2,1,3242.439209,3242.439209,3505,NO,24.19,29.77,3,-1.11,6110,113.830058,123.57007,133.295238,139.856438,I,Above,Hip,0,5701,,26.97810088,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32581,NJBF000063088,109 S SURREY AVE,Ventnor City,NJ,39.34086423,-74.47104107,COM1,3001,,NaN,ME,1900,1900,3401,2,1,2411.317935,2411.317935,3507,NO,26.26,36.83,1,1.27,6106,113.965528,123.679818,133.41526,139.937549,I,Above,Flat,0,NaN,,31.54477101,0,0,,,,1,1,,0.03,nav,1,1900,2,, 32582,NJBF000064609,335 N BURGHLEY AVE,Ventnor City,NJ,39.34489196,-74.48240767,RES1,3001,,17,NE,1958,1958,3102,1,1,1205.884645,1205.884645,3505,NO,21.11,27.52,3,7.34,6106,113.661712,123.432153,133.154217,139.6795,I,Above,Flat,0,5701,,24.31312421,0,0,,,,1,1,,0.03,nav,1,1958,1,, 32583,NJBF000059617,7117 VENTNOR AVE,Ventnor City,NJ,39.33455236,-74.4904251,REL1,3001,,NaN,ME,1926,1926,3401,1,1,5322.254499,5322.254499,3507,NO,13.03,25.16,1,2.11,6106,113.624384,123.403909,133.116804,139.695722,I,Above,Hip,0,NaN,,19.09479308,0,0,,,,1,1,,0.03,nav,1,1926,1,, 32584,NJBF000062158,1 S HARVARD AVE,Ventnor City,NJ,39.33889706,-74.48036656,RES1,3001,,17,NE,1940,1940,3102,2,1,1643.078162,1643.078162,3505,NO,36.2,41.47,3,1.04,6106,113.786656,123.534758,133.258873,139.814154,I,Above,Hip,0,5701,,38.83505672,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 32585,NJBF000064322,117 N SUFFOLK AVE,Ventnor City,NJ,39.34419809,-74.47646819,RES1,3001,,17,NE,1950,1950,3102,1,1,1722.620145,1722.620145,3505,NO,19.13,31.25,3,3.37,6106,113.80196,123.546032,133.275022,139.794517,I,Above,Hip,0,5701,,25.18957607,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 32586,NJBF000063496,209 N SACRAMENTO AVE,Ventnor City,NJ,39.34187441,-74.48353323,RES1,3001,,47,NE,1925,1925,3102,1,2,1528.418107,1528.418107,3505,NO,19.74,31.31,3,5.05,6106,113.676833,123.445323,133.166141,139.708818,I,Above,Hip,0,5701,,25.52404771,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, 32587,NJBF000063083,127 N PRINCETON AVE,Ventnor City,NJ,39.34086,-74.48346517,RES1,3001,,17,NE,1930,1930,3102,2,1,961.7337695,961.7337695,3505,NO,40.21,49.68,3,8.58,6106,113.691902,123.457743,133.17859,139.726706,I,Above,Hip,0,5701,,44.94447341,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32588,NJBF000063098,111 N HARVARD AVE,Ventnor City,NJ,39.34089046,-74.48200091,RES1,3001,,17,NE,1915,1915,3102,1,1,1509.792352,1509.792352,3505,NO,8.74,13.88,3,-2.14,6106,113.723814,123.483546,133.206011,139.75251,I,Above,Hip,0,5701,,11.31005014,0,0,,,,1,1,,0.03,nav,1,1915,1,, 32589,NJBF000062981,6 N DERBY AVE,Ventnor City,NJ,39.34063999,-74.47901734,RES1,3001,,18,NE,1915,1915,3102,2,1,1707.774018,1707.774018,3505,NO,29.67,42.64,3,-0.77,6106,113.792973,123.539607,133.265433,139.808943,I,Above,Hip,0,5701,,36.15621235,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, 32590,NJBF000062704,126 N NEWPORT AVE,Ventnor City,NJ,39.34005155,-74.48540973,RES1,3001,,17,NE,1928,1928,3102,1,1,937.1685245,937.1685245,3505,NO,13.66,27.32,3,-2.08,6106,113.65982,123.431986,133.150685,139.704375,I,Above,Flat,0,5701,,20.49152496,0,0,,,,1,1,,0.03,nav,1,1928,1,, 32591,NJBF000062562,119 N NEWPORT AVE,Ventnor City,NJ,39.33971646,-74.48467153,RES1,3001,,28,NE,1925,1925,3102,2,1,1227.092033,1227.092033,3505,NO,34.92,40.55,3,5.06,6106,113.680646,123.448871,133.168333,139.723475,I,Above,Flat,0,5701,,37.73763043,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32592,NJBF000062449,211 N WISSAHICKON AVE,Ventnor City,NJ,39.33948757,-74.49000622,RES1,3001,,17,NE,1962,1962,3102,1,1,1536.65979,1536.65979,3505,NO,19.64,25.59,3,6.01,6106,113.565897,123.35634,133.070262,139.626711,I,Above,Gable,0,5701,,22.61418298,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, 32593,NJBF000060891,222 N WASHINGTON AVE,Ventnor City,NJ,39.336706,-74.494943,RES1,3001,,17,NE,1950,1950,3102,2,1,1121.338655,1121.338655,3505,NO,34.29,40.06,3,2.19,6106,113.494853,123.299527,133.008473,139.573117,I,Above,Hip,0,5701,,37.17348571,0,0,,,,1,1,,0.03,nav,1,1950,2,, 32594,NJBF000062168,129 N RICHARDS AVE,Ventnor City,NJ,39.33891125,-74.48770023,RES1,3001,,17,NE,1903,1903,3102,2,1,1051.517853,1051.517853,3505,NO,35.73,48.68,3,-0.84,6106,113.624681,123.403825,133.12004,139.680034,I,Above,Gable,0,5701,,42.20354042,0,1.1,,,,1,1,,0.03,nav,1,1903,2,, 32595,NJBF000062147,112 N NEW HAVEN AVE,Ventnor City,NJ,39.33888531,-74.48595066,RES1,3001,,17,NE,1942,1942,3102,2,1,1440.252402,1440.252402,3505,NO,31.64,42.99,3,3.78,6106,113.663653,123.435281,133.153313,139.71337,I,Above,Hip,0,5701,,37.31548835,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, 32596,NJBF000061784,103 N TROY AVE,Ventnor City,NJ,39.33825402,-74.48643966,RES1,3001,,17,NE,1940,1940,3102,2,2,1433.933643,1433.933643,3505,NO,36.4,42.86,3,4.1,6106,113.661429,123.433573,133.151029,139.714462,I,Above,Hip,0,5701,,39.63365262,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32597,NJBF000061804,111 N RICHARDS AVE,Ventnor City,NJ,39.3382828,-74.48718681,RES1,3001,,17,NE,1920,1920,3102,2,1,1027.948365,1027.948365,3505,NO,24.02,32.28,3,0.06,6106,113.644545,123.419941,133.136625,139.699892,I,Above,Hip,0,5701,,28.15098098,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32598,NJBF000061507,,Ventnor City,NJ,39.33776053,-74.48065282,RES1,3001,,NaN,NE,1969,0,3102,2,1,2024.22666,2024.22666,3505,NO,22.64,37.36,3,-0.49,6106,113.795735,123.542234,133.265879,139.827862,I,Above,Hip,0,5701,,30.00298568,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32599,NJBF000061463,,Ventnor City,NJ,39.33768592,-74.48080298,RES1,3001,,NaN,NE,1969,0,3102,2,1,2017.497274,2017.497274,3505,NO,32.32,46.68,3,2.7,6106,113.793449,123.540389,133.263855,139.826471,I,Above,Hip,0,5701,,39.50056897,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32600,NJBF000061432,,Ventnor City,NJ,39.33761994,-74.48095289,RES1,3001,,NaN,NE,1969,0,3102,2,1,2040.551016,2040.551016,3505,NO,40,48.71,3,4.6,6106,113.791042,123.538444,133.261734,139.824925,I,Above,Hip,0,5701,,44.357136,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32601,NJBF000061554,,Ventnor City,NJ,39.33784743,-74.48093,RES1,3001,,NaN,NE,1969,0,3102,2,1,1615.2441,1615.2441,3505,NO,26.35,36.01,3,1.81,6106,113.788466,123.536338,133.259686,139.821587,I,Above,Hip,0,5701,,31.18119819,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32602,NJBF000061513,,Ventnor City,NJ,39.33777275,-74.48108013,RES1,3001,,NaN,NE,1969,0,3102,2,1,1650.62082,1650.62082,3505,NO,36.41,46.26,3,6.34,6106,113.786166,123.534482,133.257653,139.820168,I,Above,Hip,0,5701,,41.33923593,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32603,NJBF000061473,,Ventnor City,NJ,39.33770432,-74.48122746,RES1,3001,,NaN,NE,1969,0,3102,2,1,1933.984853,1933.984853,3505,NO,31.4,39.87,3,6.49,6106,113.783864,123.532624,133.255622,139.818714,I,Above,Hip,0,5701,,35.63272376,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32604,NJBF000061440,,Ventnor City,NJ,39.3376303,-74.48137813,RES1,3001,,NaN,NE,1969,0,3102,2,1,2064.347432,2064.347432,3505,NO,40.67,53.02,3,3.51,6106,113.781543,123.530751,133.25357,139.817266,I,Above,Hip,0,5701,,46.84530724,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32605,NJBF000061774,,Ventnor City,NJ,39.33823294,-74.48103017,RES1,3001,,NaN,NE,1969,0,3102,2,1,2607.372678,2607.372678,3505,NO,36.42,45,3,4.97,6106,113.781028,123.530277,133.253566,139.813467,I,Above,Gable,0,5701,,40.70632278,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32606,NJBF000061607,,Ventnor City,NJ,39.33793754,-74.48162633,RES1,3001,,NaN,NE,1969,0,3102,2,1,2271.948945,2271.948945,3505,NO,28.35,36.52,3,5.95,6106,113.771895,123.522912,133.2455,139.807793,I,Above,Hip,0,5701,,32.43962202,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32607,NJBF000061647,,Ventnor City,NJ,39.33800436,-74.49560266,RES1,3001,,NaN,NE,1969,0,3102,2,1,2322.778813,2322.778813,3505,NO,41.06,49.22,3,3.17,6106,113.462394,123.2733,132.981768,139.540225,I,Above,Flat,0,5701,,45.14040113,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32608,NJBF000058852,5 S MARTINDALE AVE,Ventnor City,NJ,39.333057,-74.49172072,RES1,3001,,17,NE,1928,1928,3102,2,1,1481.180004,1481.180004,3505,NO,19.35,28.45,3,-2.22,6106,113.616646,123.397619,133.108963,139.692054,I,Above,Hip,0,5701,,23.90045328,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, 32609,NJBF000061274,123 N WYOMING AVE,Ventnor City,NJ,39.33735475,-74.49037177,RES1,3001,,17,NE,1930,1930,3102,2,1,816.8401722,816.8401722,3505,NO,25.51,32.83,3,-0.85,6106,113.586895,123.37356,133.08693,139.653415,I,Above,Gable,0,5701,,29.16560262,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32610,NJBF000061308,125 N WYOMING AVE,Ventnor City,NJ,39.33741012,-74.49042117,RES1,3001,,17,NE,1930,1930,3102,2,1,863.5047763,863.5047763,3505,NO,38.11,45.21,3,0.36,6106,113.585059,123.372075,133.085403,139.651596,I,Above,Gable,0,5701,,41.65894325,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, 32611,NJBF000061157,10 N TROY AVE,Ventnor City,NJ,39.33715801,-74.48602416,RES1,3001,,17,NE,1935,1935,3102,2,1,1386.995399,1386.995399,3505,NO,27.45,40.9,3,2.95,6106,113.685552,123.453167,133.170923,139.740053,I,Above,Gable,0,5701,,34.1775077,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, 32612,NJBF000061090,14 N RICHARDS AVE,Ventnor City,NJ,39.33704188,-74.48666807,RES1,3001,,17,NE,1925,1925,3102,2,1,1328.079663,1328.079663,3505,NO,21.17,27.1,3,-1.35,6106,113.672933,123.442986,133.160057,139.729747,I,Above,Hip,0,5701,,24.13236325,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, 32613,NJBF000061156,103 S SACRAMENTO AVE,Ventnor City,NJ,39.3371555,-74.47972662,RES1,3001,,17,NE,1912,1912,3102,2,1,1428.093305,1428.093305,3505,NO,39.66,51.4,3,3.04,6106,113.82435,123.565463,133.290055,139.853908,I,Above,Flat,0,5701,,45.53101258,0,1.1,,,,1,1,,0.03,nav,1,1912,2,, 32614,NJBF000061086,6901 WINCHESTER AVE,Ventnor City,NJ,39.337031,-74.488783,RES1,3001,,17,NE,1948,1948,3102,2,1,1105.262592,1105.262592,3505,NO,38.99,47.89,3,0.89,6106,113.626416,123.40545,133.120361,139.689387,I,Above,Flat,0,5701,,43.43941002,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 32615,NJBF000063498,448 BERKSHIRE DRIVE,Ventnor City,NJ,39.34187934,-74.49394118,RES1,3001,,35,NE,1980,1980,3102,2,1,7136.107288,7136.107288,3505,NO,42.66,53.44,3,5.08,6106,113.446517,123.259732,132.96987,139.512551,I,Above,Gable,0,5701,,48.05086838,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32616,NJBF000061195,30 N BUFFALO AVE,Ventnor City,NJ,39.33722512,-74.48755446,RES1,3001,,17,NE,1940,1940,3102,2,1,1687.198932,1687.198932,3505,NO,22.05,28.73,3,-1.21,6106,113.650882,123.425171,133.141354,139.709928,I,Above,Gable,0,5701,,25.39189895,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, 32617,NJBF000060190,15 S BUFFALO AVE,Ventnor City,NJ,39.33555699,-74.48575395,RES1,3001,,17,NE,1948,1948,3102,2,1,1247.17877,1247.17877,3505,NO,21.02,27.52,3,-2.82,6106,113.713461,123.475798,133.193583,139.771009,I,Above,Hip,0,5701,,24.26799939,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, 32618,NJBF000065485,5400 BALFOUR AVE,Ventnor City,NJ,39.34723006,-74.47854132,RES1,3001,,17,NE,1958,1958,3102,2,1,1199.040627,1199.040627,3505,NO,34.12,40.09,3,5.77,6106,113.716624,123.47567,133.202094,139.709452,I,Above,Hip,0,5701,,37.10791369,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 32619,NJBF000061557,5 N NEW HAVEN AVE,Ventnor City,NJ,39.33785498,-74.48458685,COM1,3001,,NaN,ME,1920,1970,3401,2,1,2251.812564,2251.812564,3507,NO,38.04,46.47,1,1.82,6106,113.707742,123.471029,133.190391,139.755512,I,Above,Flat,0,NaN,,42.25646305,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32620,NJBF000064839,,Ventnor City,NJ,39.34546042,-74.48598458,RES1,3001,,NaN,NE,1969,0,3102,2,1,1618.107271,1618.107271,3505,NO,26.35,40.88,3,-0.68,6106,113.575129,123.361994,133.080077,139.605314,I,Above,Hip,0,5701,,33.61782025,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32621,NJBF000062775,106 N SACRAMENTO AVE,Ventnor City,NJ,39.34020638,-74.48261324,RES1,3001,,17,NE,1925,1925,3102,2,1,968.4802459,968.4802459,3505,NO,35.12,49.68,3,6.45,6106,113.719489,123.480183,133.201922,139.752817,I,Above,Hip,0,5701,,42.39762232,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32622,NJBF000060271,111 N WASHINGTON AVE,Ventnor City,NJ,39.33569269,-74.49312342,RES1,3001,,17,NE,1950,1950,3102,1,1,1352.611519,1352.611519,3505,NO,11.3,22.88,3,-2.65,6106,113.549049,123.343193,133.053697,139.624745,I,Above,Hip,0,5701,,17.08838252,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, 32623,NJBF000061448,7032-7034 CALVERT AVE,Ventnor City,NJ,39.33765249,-74.4934802,RES1,3001,,45,NE,1964,1964,3102,2,2,1799.214064,1799.214064,3505,NO,34.35,44.7,3,0.99,6106,113.51416,123.314966,133.025373,139.587734,I,Above,Gable,0,5701,,39.52579341,0,0,,,,1,1,,0.03,nav,1,1964,2,, 32624,NJBF000065672,435 N OXFORD AVE,Ventnor City,NJ,39.34777545,-74.48108739,RES1,3001,,17,NE,1962,1962,3102,2,1,1157.681245,1157.681245,3505,NO,24.32,38.57,3,1.91,6106,113.653305,123.424125,133.147511,139.655797,I,Above,Gable,0,5701,,31.44392221,0,0,,,,1,1,,0.03,nav,1,1962,2,, 32625,NJBF000063377,,Ventnor City,NJ,39.34154174,-74.49916778,REL1,3001,,NaN,ME,1991,0,3401,1,1,31346.08831,31346.08831,3507,NO,17.68,27.27,1,2.77,6106,113.335208,123.170517,132.875886,139.415014,I,Above,Flat,0,NaN,,22.47499543,0,0,,,,1,1,,0.03,nav,1,1991,1,, 32626,NJBF000067892,,Ventnor City,NJ,39.35491604,-74.48350435,RES1,3001,,NaN,NE,1969,0,3103,5,1,2844.867733,2844.867733,3507,NO,84.42,91.92,1,0.54,6106,113.509052,123.302877,133.022122,139.495933,I,Above,Hip,0,5701,,88.16829954,0,0,,,,1,1,,0.03,nav,1,1969,5,, 32627,NJBF000065099,,Ventnor City,NJ,39.34614141,-74.46993499,RES1,3001,,NaN,NE,1926,0,3102,2,1,1182.370413,1182.370413,3507,NO,38.14,48.33,1,0.25,6106,113.920428,123.641843,133.378997,139.872222,I,Above,Gable,0,5701,,43.23446626,0,0,,,,1,1,,0.03,nav,1,1926,2,, 32628,NJBF000064991,,Ventnor City,NJ,39.34585762,-74.47053843,RES1,3001,,NaN,NE,1926,0,3102,2,1,1259.263458,1259.263458,3507,NO,27.1,37.44,1,1.8,6106,113.910844,123.634116,133.370491,139.866822,I,Above,Flat,0,5701,,32.26781737,0,0,,,,1,1,,0.03,nav,1,1926,2,, 32629,NJBF000067073,,Ventnor City,NJ,39.3519585,-74.49009824,RES1,3001,,NaN,NE,1969,0,3103,5,1,2264.084619,2264.084619,3505,NO,70.72,83.76,3,5.59,6106,113.399943,123.217196,132.929851,139.423095,I,Above,Hip,0,5701,,77.23767007,0,0,,,,1,1,,0.03,nav,1,1969,5,, 32630,NJBF000067098,,Ventnor City,NJ,39.35208603,-74.48943392,RES1,3001,,NaN,NE,1969,0,3103,6,1,4165.14277,4165.14277,3505,NO,65.24,76.99,3,0.3,6106,113.413077,123.227668,132.941,139.433401,I,Above,Flat,0,5701,,71.11242416,0,0,,,,1,1,,0.03,nav,1,1969,6,, 32631,NJBF000067123,,Ventnor City,NJ,39.35217779,-74.48912807,RES1,3001,,NaN,NE,1969,0,3103,4,1,1613.776792,1613.776792,3505,NO,53.85,59.51,3,-1.95,6106,113.418705,123.23213,132.945768,139.437592,I,Above,Gable,0,5701,,56.67732335,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32632,NJBF000064748,,Ventnor City,NJ,39.34522017,-74.4718979,RES1,3001,,NaN,NE,1909,0,3102,2,1,1966.999578,1966.999578,3507,NO,37.42,45.94,1,1.65,6106,113.889236,123.616701,133.351338,139.854589,I,Above,Flat,0,5701,,41.6813951,0,0,,,,1,1,,0.03,nav,1,1909,2,, 32633,NJBF000067736,,Ventnor City,NJ,39.35431786,-74.48321521,RES1,3001,,NaN,NE,1969,0,3103,6,1,2273.638279,2273.638279,3505,NO,91.71,98.28,3,0.43,6106,113.522921,123.314562,133.034305,139.51089,I,Above,Gable,0,5701,,94.998935,0,0,,,,1,1,,0.03,nav,1,1969,6,, 32634,NJBF000063447,,Ventnor City,NJ,39.341761,-74.479055,RES1,3001,,NaN,NE,2000,0,3102,2,1,2212.450691,2212.450691,3505,NO,30.76,44.4,3,5.13,6106,113.777167,123.526564,133.252424,139.789919,I,Above,Flat,0,5701,,37.57877415,0,0,,,,1,1,,0.03,nav,1,2000,2,, 32635,NJBF000065118,,Ventnor City,NJ,39.3461765,-74.4698475,RES1,3001,,NaN,NE,1926,0,3102,2,1,1447.798542,1447.798542,3507,NO,30.99,42.39,1,2.92,6106,113.921886,123.643022,133.380288,139.873092,I,Above,Gable,0,5701,,36.6925319,0,0,,,,1,1,,0.03,nav,1,1926,2,, 32636,NJBF000063627,,Ventnor City,NJ,39.34223523,-74.47992602,RES1,3001,,NaN,NE,1943,0,3102,2,1,1906.523188,1906.523188,3505,NO,30.52,41.57,3,8.42,6106,113.751648,123.505772,133.230651,139.767008,I,Above,Flat,0,5701,,36.04379164,0,0,,,,1,1,,0.03,nav,1,1943,2,, 32637,NJBF000067570,,Ventnor City,NJ,39.35385283,-74.48447511,RES3A,3001,,NaN,NE,1969,0,3301,2,1,8400.258886,8400.258886,3502,NO,27.26,41.9,5,-4.11,6106,113.500818,123.297065,133.015465,139.495688,I,Above,Flat,0,5701,,34.58211433,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32638,NJBF000064972,,Ventnor City,NJ,39.34582002,-74.4706193,RES1,3001,,NaN,NE,1926,0,3102,2,1,1450.683657,1450.683657,3507,NO,35.87,43.4,1,1.22,6106,113.909557,123.633078,133.369349,139.866096,I,Above,Hip,0,5701,,39.63275208,0,0,,,,1,1,,0.03,nav,1,1926,2,, 32639,NJBF000067574,,Ventnor City,NJ,39.35385901,-74.4849438,RES3A,3001,,NaN,NE,1969,0,3301,1,1,8976.541747,8976.541747,3502,NO,28.56,39.17,5,10.54,6106,113.490345,123.288604,133.006464,139.487073,I,Above,Flat,0,5701,,33.86369517,0,0,,,,1,1,,0.03,nav,1,1969,1,, 32640,NJBF000067510,,Ventnor City,NJ,39.35369046,-74.48531092,RES3A,3001,,NaN,NE,1969,0,3301,2,1,8482.045921,8482.045921,3502,NO,30.18,39.05,5,5.99,6106,113.484328,123.283878,133.001363,139.48315,I,Above,Flat,0,5701,,34.61807749,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32641,NJBF000067076,,Ventnor City,NJ,39.3519841,-74.49042822,RES1,3001,,NaN,NE,1969,0,3103,5,1,4321.272084,4321.272084,3505,NO,92.57,98.7,3,2.3,6102,113.392295,123.211028,132.923327,139.416524,I,Above,Hip,0,5701,,95.63145768,0,0,,,,1,1,,0.03,nav,1,1969,5,, 32642,NJBF000067140,,Ventnor City,NJ,39.35226045,-74.4887106,RES1,3001,,NaN,NE,1969,0,3103,5,1,4388.494086,4388.494086,3505,NO,68.95,76.33,3,-0.14,6106,113.426923,123.238685,132.952753,139.443994,I,Above,Hip,0,5701,,72.63699823,0,0,,,,1,1,,0.03,nav,1,1969,5,, 32643,NJBF000067159,,Ventnor City,NJ,39.35239317,-74.48844751,RES1,3001,,NaN,NE,1969,0,3103,4,1,2241.57198,2241.57198,3505,NO,52.26,59.1,3,-2.37,6106,113.431077,123.241932,132.956252,139.446698,I,Above,Hip,0,5701,,55.6785553,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32644,NJBF000067362,,Ventnor City,NJ,39.35321794,-74.48636877,RES3A,3001,,NaN,NE,1969,0,3301,2,1,7327.237509,7327.237509,3502,NO,33.42,46.54,5,-1.3,6106,113.466796,123.270096,132.986506,139.471525,I,Above,Flat,0,5701,,39.98110523,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32645,NJBF000064766,,Ventnor City,NJ,39.34528449,-74.47180535,RES1,3001,,NaN,NE,1909,0,3102,2,1,3325.5066,3325.5066,3507,NO,36.5,45.96,1,0.12,6106,113.890447,123.617669,133.352424,139.855103,I,Above,Hip,0,5701,,41.23232997,0,0,,,,1,1,,0.03,nav,1,1909,2,, 32646,NJBF000063446,,Ventnor City,NJ,39.3417585,-74.47873,RES1,3001,,NaN,NE,1907,0,3102,2,1,1418.732019,1418.732019,3505,NO,33.54,48.54,3,6.66,6106,113.784374,123.532407,133.258642,139.795581,I,Above,Flat,0,5701,,41.04089308,0,0,,,,1,1,,0.03,nav,1,1907,2,, 32647,NJBF000064499,23 S VASSAR SQUARE,Ventnor City,NJ,39.34464135,-74.46604402,RES3B,3001,,NaN,ME,1908,1910,3301,2,1,1873.329694,1873.329694,3504,NO,36.11,42.94,-4,0,6106,114.025454,123.72806,133.47028,139.958458,I,Above,Flat,0,NaN,,39.52448909,0,0,,,,1,1,,0.03,nav,1,1908,2,, 32648,NJBF000064582,,Ventnor City,NJ,39.34484135,-74.47228448,RES1,3001,,NaN,NE,1978,0,3102,2,1,2272.006662,2272.006662,3507,NO,28,41.51,1,0.83,6106,113.885694,123.61393,133.348074,139.854264,I,Above,Flat,0,5701,,34.75448753,0,0,,,,1,1,,0.03,nav,1,1978,2,, 32649,NJBF000065511,511 N CORNWALL AVE,Ventnor City,NJ,39.34728659,-74.48504162,RES1,3001,,17,NE,1956,1956,3101,1,1,569.939524,569.939524,3505,NO,15.61,25.59,3,4.45,6106,113.57213,123.358751,133.077706,139.59267,I,Above,Gable,0,5701,,20.60055053,0,0,,,,1,1,,0.03,nav,1,1956,1,, 32650,NJBF000066955,,Ventnor City,NJ,39.35144388,-74.49024239,RES1,3001,,NaN,NE,1969,0,3103,6,1,2318.356573,2318.356573,3505,NO,124,135.56,3,7.98,6106,113.403296,123.220261,132.932888,139.428783,I,Above,Flat,0,5701,,129.7795155,0,0,,,,1,1,,0.03,nav,1,1969,6,, 32651,NJBF000067014,,Ventnor City,NJ,39.35170031,-74.48958083,RES1,3001,,NaN,NE,1969,0,3103,6,1,787.0537226,787.0537226,3505,NO,119.31,125.83,3,7.71,6106,113.414716,123.229265,132.942533,139.436949,I,Above,Flat,0,5701,,122.5672464,0,0,,,,1,1,,0.03,nav,1,1969,6,, 32652,NJBF000067048,,Ventnor City,NJ,39.35182554,-74.48970666,RES1,3001,,NaN,NE,1969,0,3103,4,1,2534.677544,2534.677544,3505,NO,67.46,80.16,3,-2.72,6106,113.410316,123.225636,132.938739,139.432551,I,Above,Gable,0,5701,,73.80724117,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32653,NJBF000067742,,Ventnor City,NJ,39.35434862,-74.48400125,RES1,3001,,NaN,NE,1969,0,3103,4,1,2171.193348,2171.193348,3507,NO,78.65,90.4,1,1.1,6106,113.505114,123.300148,133.018967,139.496189,I,Above,Hip,0,5701,,84.52706191,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32654,NJBF000067822,,Ventnor City,NJ,39.35464128,-74.48376264,RES1,3001,,NaN,NE,1969,0,3103,4,1,2656.262709,2656.262709,3507,NO,73.77,83.49,1,2.7,6106,113.506742,123.301231,133.020249,139.495735,I,Above,Gable,0,5701,,78.62896328,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32655,NJBF000067855,,Ventnor City,NJ,39.35479044,-74.48364517,RES1,3001,,NaN,NE,1969,0,3103,5,1,3042.81744,3042.81744,3507,NO,81.93,92.18,1,-0.38,6106,113.507498,123.301723,133.020837,139.495439,I,Above,Hip,0,5701,,87.05428178,0,0,,,,1,1,,0.03,nav,1,1969,5,, 32656,NJBF000067879,,Ventnor City,NJ,39.35486414,-74.48261748,RES1,3001,,NaN,NE,1969,0,3103,4,1,3024.8217,3024.8217,3505,NO,61.1,73.75,3,-1.98,6106,113.529354,123.319332,133.039635,139.51276,I,Above,Hip,0,5701,,67.42236466,0,0,,,,1,1,,0.03,nav,1,1969,4,, 32657,NJBF000060931,105 S PRINCETON AVE,Ventnor City,NJ,39.33679017,-74.4801464,RES1,3001,,18,NE,1925,1925,3102,3,1,1553.547342,1553.547342,3505,NO,44.97,57,3,-1.63,6106,113.820108,123.562046,133.286106,139.852693,I,Above,Hip,0,5701,,50.98397209,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, 32658,NJBF000060996,,Ventnor City,NJ,39.33687571,-74.48024204,RES1,3001,,NaN,NE,1969,0,3102,2,1,1578.556422,1578.556422,3505,NO,19.11,32.03,3,-2.66,6106,113.816823,123.559379,133.283346,139.849611,I,Above,Gable,0,5701,,25.57324137,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32659,NJBF000061516,104 S CORNWALL AVE,Ventnor City,NJ,39.33779383,-74.47804049,RES1,3001,,19,NE,2012,2012,3102,3,1,3059.041619,3059.041619,3505,NO,46.43,59.16,3,4.95,6106,113.852825,123.588511,133.315126,139.872185,I,Above,Hip,0,5701,,52.79503928,0,0,,,,1,1,,0.03,nav,1,2012,3,, 32660,NJBF000063472,,Ventnor City,NJ,39.34182356,-74.47861038,RES1,3001,,NaN,NE,1907,0,3102,2,1,646.350199,646.350199,3505,NO,39.92,54.71,3,7.3,6106,113.786141,123.533824,133.260203,139.796569,I,Above,Flat,0,5701,,47.31714067,0,0,,,,1,1,,0.03,nav,1,1907,2,, 32661,NJBF000063816,5000 BOARDWALK,Ventnor City,NJ,39.34289445,-74.4674323,RES3E,3003,,NaN,E,1960,1960,3305,6,1,28106.08167,28106.08167,3507,NO,71.4,85.23,1,-0.77,6106,114.017909,123.722243,133.462508,139.963418,I,Above,Flat,0,NaN,,78.31354559,0,0,,,,2,2,,0.03,nav,1,1960,6,, 32662,NJBF000064056,4800 BOARDWALK,Ventnor City,NJ,39.34359415,-74.46507653,RES3E,3003,,NaN,E,1963,1963,3305,8,1,16973.97777,16973.97777,3507,NO,110.67,119.43,1,0.54,6106,114.060376,123.756851,133.500291,139.989854,I,Above,Flat,0,NaN,,115.0548287,0,0,,,,2,2,,0.03,nav,1,1963,8,, 32663,NJBF000064391,2 S OAKLAND AVE,Ventnor City,NJ,39.34437011,-74.46900336,RES1,3001,20,NaN,NE,1929,1929,3102,3,1,2720.643222,2720.643222,3507,NO,44.6,51.09,1,2.85,6106,113.964018,123.677917,133.416235,139.915283,I,Above,Flat,0,5701,,47.84768084,0,0,,,,1,1,,0.03,nav,1,1929,3,, 32664,NJBF000064519,5007 VENTNOR AVE,Ventnor City,NJ,39.34468703,-74.46942805,RES1,3001,,NaN,NE,1920,1920,3102,2,1,2345.225123,2345.225123,3507,NO,22.35,36.25,1,-0.87,6106,113.950529,123.666827,133.404608,139.903429,I,Above,Hip,0,5701,,29.2963175,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32665,NJBF000064211,236 N DERBY AVE,Ventnor City,NJ,39.34381621,-74.48119604,RES3F,3003,,NaN,E,1972,1972,3305,6,1,9722.028557,9722.028557,3507,NO,114.33,125.93,1,1.42,6106,113.702666,123.465657,133.189115,139.718727,I,Above,Flat,0,NaN,,120.1302209,0,0,,,,2,2,,0.03,nav,1,1972,6,, 32666,NJBF000063969,137 N DORSET AVE,Ventnor City,NJ,39.343233,-74.4791955,COM1,3001,,NaN,ME,1940,1940,3401,2,1,2378.659204,2378.659204,3507,NO,29.67,38.02,1,0.42,6106,113.754519,123.507831,133.233583,139.763369,I,Above,Flat,0,NaN,,33.841542,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, 32667,NJBF000062264,6211 VENTNOR AVE,Ventnor City,NJ,39.33912736,-74.48086296,RES1,3001,,NaN,NE,1930,1930,3102,2,1,2378.826347,2378.826347,3505,NO,30.02,43.51,3,-1.36,6106,113.772619,123.523358,133.246942,139.801678,I,Above,Hip,0,5701,,36.76565809,0,0,,,,1,1,,0.03,nav,1,1930,2,, 32668,NJBF000065246,316 N SUFFOLK AVE,Ventnor City,NJ,39.34647758,-74.47885302,RES1,3001,,17,NE,2016,2016,3102,2,1,1279.132395,1279.132395,3505,NO,36.79,42.56,3,4.47,6106,113.719505,123.478325,133.204424,139.716287,I,Above,Gable,0,5701,,39.67588538,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, 32669,NJBF000065266,,Ventnor City,NJ,39.34669894,-74.47888487,RES1,3001,,NaN,NE,1969,0,3102,2,1,1389.950413,1389.950413,3505,NO,36.35,44.35,3,0.87,6106,113.715923,123.475329,133.201379,139.712121,I,Above,Flat,0,5701,,40.34843511,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32670,NJBF000065456,N SURREY AVE,Ventnor City,NJ,39.3471326,-74.47784186,COM8,3001,,NaN,ME,2000,2000,3401,1,1,1683.371252,1683.371252,3507,NO,11.73,25.66,1,-0.38,6106,113.733316,123.48925,133.216515,139.723173,I,Above,Gable,0,NaN,,18.69516707,0,0,,,,1,1,,0.03,nav,1,2000,1,, 32671,NJBF000081164,11 ESTELLE AVENUE,Weymouth,NJ,39.41783591,-74.82523931,RES1,3001,,16,NE,1982,1982,3102,2,1,1601.989409,1601.989409,3504,NO,26.32,32.71,-4,0,6112,108.478353,117.906671,127.578843,131.686804,I,Above,Flat,0,5701,,29.5177291,0,0,,,,1,1,,0.35,nav,1,1982,2,, 32672,NJBF000082450,1700 SOUTH RIVER,Weymouth,NJ,39.43158496,-74.73617666,RES1,3001,,NaN,NE,1969,0,3102,2,1,569.6067704,569.6067704,3507,NO,32.52,40.66,1,1.09,6106,109.026219,118.703537,128.393391,133.191024,I,Above,Hip,0,5701,,36.58792225,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32673,NJBF000082944,1311 MATHEWS AVENUE,Weymouth,NJ,39.4352427,-74.73520868,RES1,3001,,17,NE,2003,2003,3102,2,1,2153.547816,2153.547816,3507,NO,25.76,35.12,1,2.91,6110,109.020958,118.68588,128.372354,133.156124,I,Above,Gable,0,5701,,30.44338309,0,1.1,,,,1,1,,0.35,nav,1,2003,2,, 32674,NJBF000082848,1403 LORETTO AVENUE,Weymouth,NJ,39.43424981,-74.73448304,RES1,3001,,45,NE,1918,1918,3102,2,4,2135.724349,2135.724349,3507,NO,35.67,45.06,1,-0.68,6106,109.029767,118.701677,128.388846,133.185118,I,Above,Gable,0,5701,,40.36276861,0,0,,,,1,1,,0.03,nav,1,1918,2,, 32675,NJBF000082887,1403 LORETTO AVENUE,Weymouth,NJ,39.43459223,-74.73455944,RES1,3001,,45,NE,1918,1918,3102,2,4,1819.662662,1819.662662,3507,NO,28.26,36.17,1,2.3,6106,109.028047,118.698174,128.385061,133.178565,I,Above,Hip,0,5701,,32.2117304,0,0,,,,1,1,,0.03,nav,1,1918,2,, 32676,NJBF000083440,6090 DANENHAUER LANE,Weymouth,NJ,39.44440882,-74.73491564,COM2,3001,738,NaN,ME,1985,1985,3401,2,1,13504.92916,13504.92916,3507,NO,28.7,41.69,1,-0.56,6110,108.99459,118.617802,128.297018,133.026774,I,Above,Hip,0,NaN,,35.19553531,0,0,,,,1,1,,1,nav,1,1985,2,, 32677,NJBF000083517,DANENHAUER LANE,Weymouth,NJ,39.44634668,-74.72456058,RES1,3001,,NaN,NE,1969,0,3102,2,1,953.4680949,953.4680949,3507,NO,25.9,36.84,1,1.22,6106,109.071636,118.719497,128.392768,133.202145,I,Above,Gable,0,5701,,31.3703654,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32678,NJBF000083047,,Weymouth,NJ,39.43617687,-74.7336097,RES1,3001,,NaN,NE,1969,0,3102,2,1,2801.562279,2801.562279,3507,NO,24.16,31.49,1,2.81,6106,109.030039,118.696451,128.381727,133.173887,I,Above,Hip,0,5701,,27.82365897,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32679,NJBF000083088,2 DARLINGTON AVENUE,Weymouth,NJ,39.43657921,-74.73406194,RES1,3001,,15,NE,1917,1917,3102,1,1,2576.682426,2576.682426,3507,NO,14.24,24.49,1,1.83,6110,109.02529,118.688281,128.373333,133.159029,I,Above,Flat,0,5701,,19.36071863,0,0,,,,1,1,,0.35,nav,1,1917,1,, 32680,NJBF000082910,,Weymouth,NJ,39.43480486,-74.73436376,RES1,3001,,NaN,NE,1969,0,3102,2,1,1198.444671,1198.444671,3507,NO,25.67,34.11,1,0.86,6106,109.028813,118.698694,128.385349,133.179269,I,Above,Hip,0,5701,,29.88908831,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32681,NJBF000082567,1317 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43105247,-74.71981599,RES1,3001,,16,NE,1976,1976,3102,2,1,5251.487825,5251.487825,3507,NO,40.86,51.45,1,2.8,6106,109.15258,118.892889,128.578877,133.523829,I,Above,Gable,0,5701,,46.15867874,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 32682,NJBF000082675,,Weymouth,NJ,39.43230432,-74.72466442,RES1,3001,,NaN,NE,1996,0,3102,2,1,2138.158812,2138.158812,3507,NO,34.38,47.91,1,0.7,6110,109.111082,118.82751,128.513848,133.408582,I,Above,Gable,0,5701,,41.1435555,0,0,,,,1,1,,0.35,nav,1,1996,2,, 32683,NJBF000082734,1215 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43298879,-74.7248211,RES1,3001,,16,NE,1965,1965,3102,2,1,1073.490622,1073.490622,3507,NO,36.58,50.06,1,2.39,6110,109.107701,118.820415,128.506083,133.395272,I,Above,Gable,0,5701,,43.32110251,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 32684,NJBF000082878,1407 BOULEVARD ROUTE 50,Weymouth,NJ,39.4345032,-74.73599468,RES1,3001,,16,NE,1917,1917,3102,2,1,906.1013018,906.1013018,3507,NO,30.48,45.07,1,0.98,6106,109.017503,118.682893,128.370171,133.151541,I,Above,Flat,0,5701,,37.77468451,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32685,NJBF000082517,1309 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4305762,-74.72116463,RES1,3001,,16,NE,1962,1962,3102,2,1,1509.07813,1509.07813,3507,NO,40.89,49,1,1.93,6106,109.143597,118.880998,128.568042,133.504014,I,Above,Gable,0,5701,,44.94406624,0,0,,,,1,1,,0.03,nav,1,1962,2,, 32686,NJBF000082644,,Weymouth,NJ,39.43190091,-74.73490032,RES1,3001,,NaN,NE,1985,0,3102,2,1,2537.405441,2537.405441,3507,NO,27.33,36.33,1,0.85,6106,109.034657,118.715271,128.404621,133.211588,I,Above,Gable,0,5701,,31.83206382,0,0,,,,1,1,,0.03,nav,1,1985,2,, 32687,NJBF000082743,,Weymouth,NJ,39.43306547,-74.73319492,RES1,3001,,NaN,NE,1980,0,3102,2,1,3167.38827,3167.38827,3507,NO,21.57,32.44,1,-0.12,6106,109.043489,118.725251,128.413194,133.228088,I,Above,Gable,0,5701,,27.00101123,0,0,,,,1,1,,0.03,nav,1,1980,2,, 32688,NJBF000082788,1209 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43360991,-74.7244639,RES1,3001,,15,NE,1968,1968,3102,2,1,2317.972334,2317.972334,3507,NO,23.86,30.83,1,1.8,6106,109.10852,118.819683,128.504577,133.393135,I,Above,Gable,0,5701,,27.34635868,0,0,,,,1,1,,0.03,nav,1,1968,2,, 32689,NJBF000082618,,Weymouth,NJ,39.43163155,-74.73526996,RES1,3001,,NaN,NE,1987,0,3102,2,1,1851.788148,1851.788148,3507,NO,39.52,48.65,1,1.75,6106,109.032827,118.713244,128.402903,133.20825,I,Above,Gable,0,5701,,44.0821421,0,0,,,,1,1,,0.03,nav,1,1987,2,, 32690,NJBF000083405,902 BOULEVARD ROUTE 50,Weymouth,NJ,39.44360293,-74.73608784,COM2,3001,739,NaN,ME,1969,0,3401,3,1,2934.007899,2934.007899,3507,NO,35.34,42.26,1,1.29,6110,108.987853,118.611049,128.291237,133.015621,I,Above,Flat,0,NaN,,38.80215231,0,0,,,,1,1,,1,nav,1,1969,3,, 32691,NJBF000082895,1405 BOULEVARD ROUTE 50,Weymouth,NJ,39.43466423,-74.73569867,RES1,3001,,16,NE,1917,1917,3102,1,1,571.8312437,571.8312437,3507,NO,17.22,22.97,1,1.64,6106,109.019192,118.68493,128.372008,133.155004,I,Above,Hip,0,5701,,20.09588238,0,0,,,,1,1,,0.03,nav,1,1917,1,, 32692,NJBF000082894,1405 BOULEVARD ROUTE 50,Weymouth,NJ,39.43465749,-74.73598043,RES1,3001,,16,NE,1917,1917,3102,1,1,1344.254835,1344.254835,3507,NO,20.37,27.65,1,2.45,6106,109.017096,118.681863,128.369007,133.149564,I,Above,Gable,0,5701,,24.00912906,0,0,,,,1,1,,0.03,nav,1,1917,1,, 32693,NJBF000082408,1325 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4296757,-74.71954594,RES1,3001,,18,NE,1978,2000,3102,2,1,2891.010071,2891.010071,3507,NO,23.36,35.71,1,-0.91,6106,109.158984,118.906635,128.594146,133.549759,I,Above,Gable,0,5701,,29.53483227,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, 32694,NJBF000082870,1411 MATHEWS AVENUE,Weymouth,NJ,39.4344205,-74.73498799,RES1,3001,,16,NE,1917,1917,3102,2,1,1618.092624,1618.092624,3507,NO,34.44,42.84,1,1.51,6110,109.025377,118.694725,128.381857,133.172622,I,Above,Gable,0,5701,,38.63958498,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32695,NJBF000082843,1411 MATHEWS AVENUE,Weymouth,NJ,39.43419099,-74.73501099,RES1,3001,,16,NE,1917,1917,3102,2,1,980.9410168,980.9410168,3507,NO,32.48,42.24,1,-0.5,6110,109.025977,118.696255,128.383592,133.175564,I,Above,Gable,0,5701,,37.36059451,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32696,NJBF000082613,1524-1526 GRACE AVENUE,Weymouth,NJ,39.43158496,-74.73617666,RES1,3001,,43,NE,1925,1925,3102,2,2,1180.546998,1180.546998,3507,NO,24.15,36.94,1,-0.63,6106,109.026219,118.703537,128.393391,133.191024,I,Above,Hip,0,5701,,30.5428548,0,0,,,,1,1,,0.03,nav,1,1925,2,, 32697,NJBF000082905,1404 LORETTO AVENUE,Weymouth,NJ,39.43474594,-74.73493156,RES1,3001,,16,NE,1917,1917,3102,2,1,1227.102433,1227.102433,3507,NO,24.55,32.04,1,2.51,6110,109.024711,118.692824,128.379661,133.168928,I,Above,Hip,0,5701,,28.29598768,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32698,NJBF000082747,1501 MATHEWS AVENUE,Weymouth,NJ,39.43312749,-74.7354045,RES1,3001,,16,NE,1917,1917,3102,2,1,790.8540795,790.8540795,3507,NO,34.64,47.55,1,1.09,6106,109.02663,118.700136,128.388486,133.183499,I,Above,Gable,0,5701,,41.09670003,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 32699,NJBF000082687,,Weymouth,NJ,39.43241957,-74.73416455,RES1,3001,,NaN,NE,1985,0,3102,2,1,1929.325935,1929.325935,3507,NO,38.91,44.02,1,1.85,6106,109.038377,118.719429,128.408167,133.218446,I,Above,Gable,0,5701,,41.46572826,0,0,,,,1,1,,0.03,nav,1,1985,2,, 32700,NJBF000082965,1309A-1309B MATHEWS AVE,Weymouth,NJ,39.43550493,-74.73523215,RES1,3001,,45,NE,1917,1917,3102,2,2,1703.869555,1703.869555,3507,NO,34,48.98,1,2.72,6110,109.019914,118.683589,128.369845,133.151803,I,Above,Gable,0,5701,,41.49089021,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32701,NJBF000082782,1417 MATHEWS AVENUE,Weymouth,NJ,39.4335305,-74.73536268,RES1,3001,,17,NE,1917,1917,3102,2,1,1232.156734,1232.156734,3507,NO,25.02,37.97,1,0.92,6106,109.025563,118.697465,128.385453,133.178362,I,Above,Gable,0,5701,,31.49582648,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 32702,NJBF000082515,1313 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43056266,-74.72062851,RES1,3001,,17,NE,1964,1964,3102,2,1,879.1924657,879.1924657,3507,NO,29.2,41.36,1,1.1,6106,109.14779,118.887277,128.574142,133.514901,I,Above,Gable,0,5701,,35.27996062,0,0,,,,1,1,,0.03,nav,1,1964,2,, 32703,NJBF000082632,1225 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43179829,-74.72436086,RES1,3001,,17,NE,2001,2001,3102,2,1,1000.993832,1000.993832,3507,NO,37.08,51.66,1,1.71,6110,109.115031,118.834886,128.521666,133.422138,I,Above,Hip,0,5701,,44.37291654,0,0,,,,1,1,,0.35,nav,1,2001,2,, 32704,NJBF000082622,1225 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43166683,-74.72391344,RES1,3001,,17,NE,2001,2001,3102,2,1,2976.619994,2976.619994,3507,NO,28.74,35.52,1,1.26,6106,109.118902,118.841021,128.527795,133.433003,I,Above,Hip,0,5701,,32.13236729,0,0,,,,1,1,,0.03,nav,1,2001,2,, 32705,NJBF000083129,1 FRANCIS AVENUE,Weymouth,NJ,39.4417645,-74.7319745,RES3A,3001,,15,NE,1986,1960,3301,2,1,2074.628888,2074.628888,3507,NO,34.88,47.57,1,2.22,6110,109.025347,118.671303,128.351444,133.123624,I,Above,Flat,0,5701,,41.22154999,0,1.1,,,,1,1,,0.35,nav,1,1986,2,, 32706,NJBF000082841,1205 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43417276,-74.7244362,RES1,3001,,16,NE,2004,2004,3102,2,1,3015.299721,3015.299721,3507,NO,36.31,51.13,1,1.13,6110,109.106994,118.815642,128.499942,133.385319,I,Above,Gable,0,5701,,43.72425453,0,1.1,,,,1,1,,0.03,nav,1,2004,2,, 32707,NJBF000082825,1415 BOULEVARD ROUTE 50,Weymouth,NJ,39.43395439,-74.73603327,RES1,3001,,16,NE,1917,1917,3102,2,1,1061.64625,1061.64625,3507,NO,31.67,40.05,1,0,6106,109.019081,118.686736,128.374491,133.158893,I,Above,Gable,0,5701,,35.86248956,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32708,NJBF000082800,1412 LORETTO AVENUE,Weymouth,NJ,39.43366688,-74.73502753,RES1,3001,,17,NE,1917,1917,3102,2,1,1067.153164,1067.153164,3507,NO,39.7,53.5,1,2.63,6106,109.027622,118.700136,128.387935,133.182968,I,Above,Gable,0,5701,,46.59990642,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 32709,NJBF000083007,1125 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43585185,-74.72411815,RES1,3001,,16,NE,2005,2005,3102,2,1,2721.902364,2721.902364,3507,NO,34.36,45.82,1,0.74,6110,109.104372,118.806265,128.488732,133.366674,I,Above,Gable,0,5701,,40.08821181,0,1.1,,,,1,1,,0.03,nav,1,2005,2,, 32710,NJBF000082781,1412 LORETTO AVENUE,Weymouth,NJ,39.43351278,-74.73499723,RES1,3001,,17,NE,1917,1917,3102,2,1,922.0616749,922.0616749,3507,NO,30.37,38.17,1,2.72,6106,109.028379,118.701676,128.389605,133.185854,I,Above,Gable,0,5701,,34.26748999,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 32711,NJBF000082535,1303 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43070229,-74.72218269,RES1,3001,,17,NE,1994,1994,3102,2,1,3027.741192,3027.741192,3507,NO,27.72,39.76,1,-1,6106,109.135328,118.868314,128.555572,133.481837,I,Above,Gable,0,5701,,33.74061208,0,1.1,,,,1,1,,0.03,nav,1,1994,2,, 32712,NJBF000082505,1305 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43051722,-74.72156637,RES1,3001,,15,NE,1940,1940,3102,2,1,782.2981581,782.2981581,3507,NO,39.22,52.38,1,1.55,6106,109.140683,118.876837,128.564092,133.496896,I,Above,Gable,0,5701,,45.79866496,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32713,NJBF000082987,1307-1315 MADDEN AVENUE,Weymouth,NJ,39.43573699,-74.73363799,RES1,3001,,16,NE,1950,1950,3102,2,1,862.8311706,862.8311706,3507,YES,34.56,49.44,1,-0.22,6110,109.031257,118.699556,128.385221,133.179835,I,Above,Flat,0,5701,,41.99907414,0,0,,,,1,1,,0.35,nav,1,1950,2,, 32714,NJBF000083494,901 MORRIS LANE,Weymouth,NJ,39.4457995,-74.7246955,RES1,3001,,16,NE,1895,1895,3102,2,1,976.4525827,976.4525827,3507,NO,23.62,36.63,1,2.03,6106,109.071976,118.72225,128.396021,133.207615,I,Above,Gable,0,5701,,30.12373534,0,0,,,,1,1,,0.03,nav,1,1895,2,, 32715,NJBF000083492,901 MORRIS LANE,Weymouth,NJ,39.44573403,-74.72435635,RES1,3001,,16,NE,1895,1895,3102,2,1,3033.630817,3033.630817,3507,NO,23.17,28.91,1,-0.22,6106,109.074891,118.726632,128.400281,133.215278,I,Above,Gable,0,5701,,26.03779448,0,0,,,,1,1,,0.03,nav,1,1895,2,, 32716,NJBF000082526,1319 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43064178,-74.71947211,RES1,3001,,16,NE,1972,1972,3102,2,1,1607.901924,1607.901924,3507,NO,24.42,35.12,1,0.15,6106,109.15653,118.900034,128.58637,133.536815,I,Above,Gable,0,5701,,29.76642747,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 32717,NJBF000082487,1319 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43032258,-74.7193731,RES1,3001,,16,NE,1972,1972,3102,2,1,2799.378593,2799.378593,3507,NO,25.08,30.13,1,0.06,6106,109.158294,118.903642,128.590318,133.543554,I,Above,Flat,0,5701,,27.60390404,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, 32718,NJBF000083012,,Weymouth,NJ,39.43589549,-74.7336595,RES1,3001,,NaN,NE,1969,0,3102,2,1,986.1642196,986.1642196,3507,NO,24.3,34.59,1,1.66,6110,109.030575,118.698083,128.383616,133.177066,I,Above,Gable,0,5701,,29.44744643,0,0,,,,1,1,,0.35,nav,1,1969,2,, 32719,NJBF000082770,1211 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4333745,-74.7244755,RES1,3001,,15,NE,1958,1958,3102,2,1,1275.558117,1275.558117,3507,NO,24.81,37.27,1,2.54,6106,109.10917,118.821385,128.50653,133.396426,I,Above,Gable,0,5701,,31.03698701,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, 32720,NJBF000082772,1211 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43337893,-74.72472873,RES1,3001,,15,NE,1958,1958,3102,2,1,591.4429094,591.4429094,3507,NO,31.25,37.22,1,2.92,6110,109.107188,118.818445,128.503674,133.391302,I,Above,Gable,0,5701,,34.23506189,0,1.1,,,,1,1,,0.35,nav,1,1958,2,, 32721,NJBF000083244,1011 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.44020876,-74.72365734,RES1,3001,,15,NE,1957,1957,3102,1,1,3230.271039,3230.271039,3507,NO,15.71,21.28,1,0.72,6110,109.09541,118.777705,128.45577,133.311082,I,Above,Flat,0,5701,,18.49414586,0,1.1,,,,1,1,,0.35,nav,1,1957,1,, 32722,NJBF000083067,1303A-1303B BLVD RT 50,Weymouth,NJ,39.4363054,-74.73566375,RES1,3001,,45,NE,1977,1977,3102,2,2,1256.530359,1256.530359,3507,NO,31.37,39.89,1,1.28,6110,109.013997,118.672568,128.358255,133.13148,I,Above,Gable,0,5701,,35.63009924,0,0,,,,1,1,,0.35,nav,1,1977,2,, 32723,NJBF000083278,1005 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4408579,-74.72408135,RES1,3001,,16,NE,1966,1966,3102,2,1,1591.975024,1591.975024,3507,NO,30.33,42.77,1,0.84,6110,109.090222,118.767801,128.445469,133.293041,I,Above,Gable,0,5701,,36.54688914,0,0,,,,1,1,,0.03,nav,1,1966,2,, 32724,NJBF000082815,1407 LORETTO AVENUE,Weymouth,NJ,39.43386775,-74.73450558,RES1,3001,,16,NE,1952,1952,3102,2,1,737.8199203,737.8199203,3507,NO,35.31,41.83,1,0.45,6110,109.030878,118.704387,128.391898,133.190307,I,Above,Gable,0,5701,,38.57250057,0,0,,,,1,1,,0.35,nav,1,1952,2,, 32725,NJBF000083134,1111 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43787311,-74.72344477,RES1,3001,,16,NE,1987,1987,3102,2,1,3805.2136,3805.2136,3507,NO,37.89,44.81,1,1.17,6110,109.103724,118.798288,128.478477,133.349997,I,Above,Gable,0,5701,,41.34835361,0,1.1,,,,1,1,,0.35,nav,1,1987,2,, 32726,NJBF000082801,1419 BOULEVARD ROUTE 50,Weymouth,NJ,39.43367498,-74.7360409,RES1,3001,,16,NE,1917,1917,3102,2,1,1502.173511,1502.173511,3507,NO,33.77,44.29,1,0.47,6106,109.019973,118.688815,128.376812,133.162853,I,Above,Hip,0,5701,,39.02934849,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32727,NJBF000082708,,Weymouth,NJ,39.43263826,-74.73382972,RES1,3001,,NaN,NE,1980,0,3102,2,1,2861.369603,2861.369603,3507,NO,38.07,46.9,1,2.38,6110,109.040151,118.721473,128.409944,133.221846,I,Above,Gable,0,5701,,42.48523754,0,0,,,,1,1,,0.35,nav,1,1980,2,, 32728,NJBF000082918,1401 BOULEVARD ROUTE 50,Weymouth,NJ,39.43490182,-74.73593986,RES1,3001,,17,NE,1917,1917,3102,2,1,1212.848149,1212.848149,3507,NO,27.88,42.51,1,1.92,6106,109.016573,118.680404,128.367331,133.146738,I,Above,Gable,0,5701,,35.19883329,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32729,NJBF000082888,1201 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43459435,-74.72430304,RES1,3001,,16,NE,1971,1971,3102,2,1,3480.443806,3480.443806,3507,NO,32.42,39.06,1,-0.46,6106,109.106736,118.813901,128.497717,133.381702,I,Above,Hip,0,5701,,35.74212837,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, 32730,NJBF000082814,,Weymouth,NJ,39.43385177,-74.73499759,RES1,3001,,NaN,NE,1940,0,3102,2,1,1454.596574,1454.596574,3507,NO,25.43,34.1,1,2.23,6106,109.027221,118.699033,128.386663,133.180828,I,Above,Gable,0,5701,,29.76306408,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32731,NJBF000083083,6 DARLINGTON AVENUE,Weymouth,NJ,39.43648951,-74.73320542,RES1,3001,,17,NE,1962,1962,3102,2,1,1051.005933,1051.005933,3507,NO,29.61,35.82,1,0.59,6110,109.032121,118.698546,128.383443,133.177258,I,Above,Hip,0,5701,,32.71565237,0,0,,,,1,1,,0.35,nav,1,1962,2,, 32732,NJBF000083121,1113 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43752044,-74.72325083,RES1,3001,,16,NE,1987,1987,3102,2,1,1135.392433,1135.392433,3507,NO,27.93,38.47,1,2.17,6110,109.106277,118.803253,128.483703,133.359096,I,Above,Gable,0,5701,,33.19970443,0,0,,,,1,1,,0.35,nav,1,1987,2,, 32733,NJBF000083355,940 GRANT AVENUE,Weymouth,NJ,39.44296854,-74.73238619,RES3A,3001,,35,NE,1989,1988,3301,1,1,6075.087,6075.087,3507,NO,18.63,31.58,1,2.74,6110,109.018589,118.657305,128.336662,133.097745,I,Above,Gable,0,5701,,25.10193381,0,0,,,,1,1,,0.35,nav,1,1989,1,, 32734,NJBF000082808,1413-1415 MATHEWS AVENUE,Weymouth,NJ,39.4337778,-74.73523587,RES1,3001,,15,NE,1985,1985,3102,2,1,960.6865665,960.6865665,3507,NO,26.54,37.89,1,-0.38,6106,109.025678,118.696959,128.384705,133.177221,I,Above,Flat,0,5701,,32.21587208,0,0,,,,1,1,,0.03,nav,1,1985,2,, 32735,NJBF000082657,1223 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43212849,-74.7244225,RES1,3001,,17,NE,2014,2014,3102,2,2,650.5529981,650.5529981,3507,NO,26.32,36.09,1,-0.06,6110,109.1135,118.831624,128.518071,133.415994,I,Above,Hip,0,5701,,31.2072136,0,0,,,,1,1,,0.35,nav,1,2014,2,, 32736,NJBF000083030,1123 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43603779,-74.72400714,RES1,3001,,15,NE,1950,1950,3102,2,1,1642.751337,1642.751337,3507,NO,38.17,49.53,1,1.08,6110,109.104686,118.806092,128.488329,133.366114,I,Above,Gable,0,5701,,43.85033424,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, 32737,NJBF000083025,1123 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43601075,-74.72420543,RES1,3001,,15,NE,1950,1950,3102,2,1,651.0803072,651.0803072,3507,NO,38.8,49.39,1,-0.16,6110,109.103215,118.804036,128.486379,133.362583,I,Above,Gable,0,5701,,44.09274399,0,1.1,,,,1,1,,0.35,nav,1,1950,2,, 32738,NJBF000083187,1101 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43914123,-74.72319092,RES1,3001,,16,NE,1960,1960,3102,2,1,1878.232795,1878.232795,3507,NO,27.6,37.69,1,0.12,6106,109.102118,118.79135,128.470204,133.336193,I,Above,Gable,0,5701,,32.64347808,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, 32739,NJBF000082816,1207 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43386826,-74.72461098,RES1,3001,,16,NE,1971,1971,3102,2,1,3376.002049,3376.002049,3507,NO,31.41,39.11,1,0.19,6106,109.106578,118.816006,128.500684,133.386376,I,Above,Gable,0,5701,,35.26245518,0,0,,,,1,1,,0.03,nav,1,1971,2,, 32740,NJBF000082701,1503 MATHEWS AVENUE,Weymouth,NJ,39.43256216,-74.73477489,RES1,3001,,16,NE,1981,1981,3102,2,1,4185.509554,4185.509554,3507,NO,35.2,47.15,1,-0.95,6106,109.033305,118.711531,128.400261,133.20429,I,Above,Gable,0,5701,,41.17432735,0,0,,,,1,1,,0.03,nav,1,1981,2,, 32741,NJBF000083115,1201 BOULEVARD ROUTE 50,Weymouth,NJ,39.4372241,-74.73559643,RES1,3001,999,NaN,NE,1969,0,3102,1,1,6652.176566,6652.176566,3507,NO,15.38,21.5,1,-0.76,6110,109.011511,118.66618,128.351093,133.119264,I,Above,Gable,0,5701,,18.44340559,0,0,,,,1,1,,1,nav,1,1969,1,, 32742,NJBF000083024,,Weymouth,NJ,39.436002,-74.73336649,RES1,3001,,NaN,NE,1969,0,3102,2,1,974.5369818,974.5369818,3507,NO,32.52,40.35,1,0.1,6106,109.032468,118.700537,128.3859,133.18129,I,Above,Gable,0,5701,,36.43700185,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32743,NJBF000083106,1117 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43722513,-74.72319047,RES1,3001,,16,NE,1994,1994,3102,2,1,2521.442605,2521.442605,3507,NO,27.45,33.31,1,-0.62,6110,109.107615,118.806242,128.486957,133.364694,I,Above,Hip,0,5701,,30.38222165,0,0,,,,1,1,,0.35,nav,1,1994,2,, 32744,NJBF000083452,903 MORRIS LANE,Weymouth,NJ,39.44490046,-74.72446693,RES1,3001,,17,NE,1990,1990,3102,2,1,3852.823938,3852.823938,3507,NO,37.99,47.79,1,1.28,6106,109.07618,118.731878,128.406256,133.225444,I,Above,Hip,0,5701,,42.89023108,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, 32745,NJBF000082739,1500 CLEMENT STREET,Weymouth,NJ,39.43303638,-74.7349428,RES1,3001,,16,NE,1980,1980,3102,2,1,2034.487207,2034.487207,3507,YES,39.31,53.75,1,2.49,6106,109.030414,118.705981,128.394321,133.193967,I,Above,Gable,0,5701,,46.52929169,0,1.1,,,,1,1,,0.03,nav,1,1980,2,, 32746,NJBF000082714,1502 MATHEWS AVENUE,Weymouth,NJ,39.43268905,-74.73565003,RES1,3001,999,17,NE,1920,1920,3102,2,1,2098.027928,2098.027928,3507,NO,26.81,40.88,1,-0.6,6106,109.026301,118.700814,128.389598,133.185129,I,Above,Hip,0,5701,,33.84774062,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32747,NJBF000082844,,Weymouth,NJ,39.43419968,-74.73595197,RES1,3001,,NaN,NE,1969,0,3102,2,1,3569.498765,3569.498765,3507,NO,25.39,30.64,1,2.39,6106,109.018853,118.685725,128.373252,133.156861,I,Above,Hip,0,5701,,28.01252171,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32748,NJBF000082511,1311 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43053893,-74.72102755,RES1,3001,,16,NE,1993,1993,3102,2,1,1164.722845,1164.722845,3507,NO,31.18,36.49,1,1.38,6106,109.144775,118.882862,128.5699,133.507299,I,Above,Gable,0,5701,,33.83650202,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 32749,NJBF000083044,1305A-1305B MATHEWS AVE,Weymouth,NJ,39.43615782,-74.73518193,RES1,3001,,45,NE,1917,1917,3102,2,2,1724.881611,1724.881611,3507,NO,27.73,37.98,1,1.97,6110,109.018139,118.679071,128.364764,133.143152,I,Above,Gable,0,5701,,32.85488552,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32750,NJBF000082531,1301 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43067595,-74.72254473,RES1,3001,,17,NE,1987,1987,3102,2,1,2330.412673,2330.412673,3507,NO,33.43,48.28,1,0.9,6106,109.132618,118.864358,128.551769,133.475009,I,Above,Gable,0,5701,,40.85497436,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, 32751,NJBF000082378,2000 RIVER FRONT,Weymouth,NJ,39.42938624,-74.71968283,RES1,3001,,NaN,NE,1969,0,3102,2,1,2055.017311,2055.017311,3507,NO,32.95,40.2,1,-0.32,6106,109.158843,118.907288,128.595198,133.551352,I,Above,Hip,0,5701,,36.57903164,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32752,NJBF000082761,1213 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43322292,-74.72460246,RES1,3001,,16,NE,1991,1991,3102,2,1,2283.533031,2283.533031,3507,NO,29.17,40.03,1,-0.09,6110,109.108659,118.821104,128.506451,133.396146,I,Above,Gable,0,5701,,34.59972321,0,1.2,,,,1,1,,0.35,nav,1,1991,2,, 32753,NJBF000083031,1305 BOULEVARD ROUTE 50,Weymouth,NJ,39.43603933,-74.73571267,RES1,3001,999,NaN,NE,1969,0,3102,1,1,1958.020704,1958.020704,3507,NO,15.82,29.68,1,2.42,6110,109.014502,118.67409,128.36001,133.134438,I,Above,Flat,0,5701,,22.75004031,0,1.1,,,,1,1,,0.35,nav,1,1969,1,, 32754,NJBF000083116,1115 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43722513,-74.72319047,RES1,3001,,16,NE,1987,1987,3102,2,1,4033.402997,4033.402997,3507,NO,29.24,35.87,1,1.75,6106,109.107615,118.806242,128.486957,133.364694,I,Above,Hip,0,5701,,32.55702536,0,0,,,,1,1,,0.03,nav,1,1987,2,, 32755,NJBF000079528,1422 15TH AVENUE,Weymouth,NJ,39.41783591,-74.82523931,RES1,3001,,16,NE,1982,1976,3102,2,1,1923.063991,1923.063991,3504,NO,23.49,38.01,-4,0,6112,108.478353,117.906671,127.578843,131.686804,I,Above,Flat,0,5701,,30.74937871,0,0,,,,1,1,,0.35,nav,1,1982,2,, 32756,NJBF000083549,6028 DANENHAUER LANE,Weymouth,NJ,39.44709189,-74.72472775,RES1,3001,,17,NE,1955,1955,3102,2,1,3315.421529,3315.421529,3507,NO,31.91,45.95,1,-0.57,6106,109.068357,118.711763,128.384544,133.187813,I,Above,Gable,0,5701,,38.93118739,0,0,,,,1,1,,0.03,nav,1,1955,2,, 32757,NJBF000082947,1313 LORETTO AVENUE,Weymouth,NJ,39.43529386,-74.73447772,RES1,3001,,16,NE,1917,1917,3102,2,1,1557.702857,1557.702857,3507,NO,33.08,41.06,1,1.39,6110,109.026328,118.693625,128.379883,133.169796,I,Above,Gable,0,5701,,37.0720083,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32758,NJBF000082935,1 LAFAYETTE AVENUE,Weymouth,NJ,39.4351531,-74.73491405,RES1,3001,,27,NE,1956,1956,3102,2,2,1718.839031,1718.839031,3507,NO,29.95,42.16,1,-0.46,6110,109.023491,118.689863,128.376345,133.163274,I,Above,Gable,0,5701,,36.0549466,0,0,,,,1,1,,0.35,nav,1,1956,2,, 32759,NJBF000083533,6034 DANENHAUER LANE,Weymouth,NJ,39.44672697,-74.72469668,RES1,3001,,16,NE,1985,1985,3102,1,1,992.1798679,992.1798679,3507,NO,18.59,29.03,1,2.47,6106,109.069549,118.714972,128.388018,133.19383,I,Above,Gable,0,5701,,23.80730525,0,0,,,,1,1,,0.03,nav,1,1985,1,, 32760,NJBF000082726,1405 GRACE AVENUE,Weymouth,NJ,39.43289335,-74.73346632,RES1,3001,,16,NE,1984,1984,3102,1,1,1604.239656,1604.239656,3507,NO,16.75,28.15,1,0.83,6106,109.042026,118.723558,128.411718,133.225273,I,Above,Gable,0,5701,,22.44798053,0,1.1,,,,1,1,,0.03,nav,1,1984,1,, 32761,NJBF000083335,926 GRANT AVENUE,Weymouth,NJ,39.44248714,-74.73222377,RES3A,3001,,35,NE,1987,1987,3301,2,1,4885.77962,4885.77962,3507,NO,32.13,44.93,1,-0.92,6110,109.021269,118.662877,128.342545,133.108047,I,Above,Gable,0,5701,,38.52703739,0,0,,,,1,1,,0.35,nav,1,1987,2,, 32762,NJBF000082723,,Weymouth,NJ,39.43283624,-74.72457548,RES1,3001,,NaN,NE,1965,0,3102,2,1,2541.643943,2541.643943,3507,NO,29.88,36.83,1,2.97,6106,109.110084,118.824408,128.510153,133.402439,I,Above,Gable,0,5701,,33.35238478,0,0,,,,1,1,,0.03,nav,1,1965,2,, 32763,NJBF000083306,902-920 GRANT STREET,Weymouth,NJ,39.4417645,-74.7319745,RES3A,3001,,NaN,NE,1986,1986,3301,1,1,4489.052883,4489.052883,3507,NO,10.91,16.49,1,-0.67,6110,109.025347,118.671303,128.351444,133.123624,I,Above,Flat,0,5701,,13.7000532,0,0,,,,1,1,,0.35,nav,1,1986,1,, 32764,NJBF000083022,1307 MATHEWS AVENUE,Weymouth,NJ,39.43599419,-74.73519061,RES1,3001,,16,NE,1917,1917,3102,2,1,850.3320529,850.3320529,3507,NO,40.14,46.29,1,2.24,6110,109.018609,118.680245,128.366078,133.145395,I,Above,Gable,0,5701,,43.21536456,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32765,NJBF000083438,900 RIVER FRONT,Weymouth,NJ,39.44436359,-74.72503672,RES1,3001,,NaN,NE,1969,0,3102,2,1,2126.153363,2126.153363,3507,NO,20.86,27.1,1,-0.94,6106,109.073008,118.729551,128.40465,133.222118,I,Above,Gable,0,5701,,23.97997314,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32766,NJBF000083200,1021 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4394295,-74.723351,RES1,3001,,14,NE,1946,1946,3102,2,1,550.4061228,550.4061228,3507,NO,36.12,41.62,1,-0.84,6110,109.100031,118.787269,128.465922,133.328723,I,Above,Gable,0,5701,,38.86615849,0,0,,,,1,1,,0.35,nav,1,1946,2,, 32767,NJBF000082945,1309 BOULEVARD ROUTE 50,Weymouth,NJ,39.43524743,-74.73587634,RES1,3001,,NaN,NE,1969,0,3102,1,1,3478.499316,3478.499316,3507,NO,18.11,25.69,1,2.16,6106,109.015899,118.678434,128.365055,133.142909,I,Above,Gable,0,5701,,21.89746323,0,1.1,,,,1,1,,0.03,nav,1,1969,1,, 32768,NJBF000083169,1103 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43885033,-74.72334952,RES1,3001,,16,NE,1989,1989,3102,2,1,1823.350073,1823.350073,3507,NO,36.03,47.66,1,2.65,6110,109.101679,118.791788,128.470992,133.337362,I,Above,Gable,0,5701,,41.84066993,0,0,,,,1,1,,0.35,nav,1,1989,2,, 32769,NJBF000083020,1300 BOULEVARD ROUTE 50,Weymouth,NJ,39.435966,-74.7364315,RES1,3001,,16,NE,1968,1968,3102,1,1,2110.528062,2110.528062,3507,NO,13.99,26.46,1,-0.79,6106,109.009307,118.666685,128.352831,133.121363,I,Above,Hip,0,5701,,20.22297758,0,0,,,,1,1,,0.03,nav,1,1968,1,, 32770,NJBF000083094,1119 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43668024,-74.72323675,RES1,3001,,16,NE,1985,1985,3102,2,1,1694.678855,1694.678855,3507,NO,34.18,46.78,1,0.66,6110,109.108835,118.809932,128.49121,133.371865,I,Above,Flat,0,5701,,40.48217701,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, 32771,NJBF000082846,1411 MATHEWS AVENUE,Weymouth,NJ,39.43422073,-74.73530727,RES1,3001,,16,NE,1917,1917,3102,2,1,1235.694487,1235.694487,3507,NO,33.03,42.09,1,2.06,6106,109.023643,118.692729,128.380104,133.169278,I,Above,Gable,0,5701,,37.55981054,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32772,NJBF000083293,1001 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.44133608,-74.72446149,RES1,3001,,16,NE,1980,1980,3102,2,1,2695.618696,2695.618696,3507,NO,28.73,42.02,1,0.2,6110,109.085865,118.759734,128.437148,133.278418,I,Above,Hip,0,5701,,35.3756969,0,1.1,,,,1,1,,0.35,nav,1,1980,2,, 32773,NJBF000082585,,Weymouth,NJ,39.43122732,-74.73590076,RES1,3001,,NaN,NE,1969,0,3102,2,1,1114.91954,1114.91954,3507,NO,37.52,46.67,1,0.82,6106,109.029543,118.70938,128.399509,133.201764,I,Above,Gable,0,5701,,42.09382706,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32774,NJBF000082604,,Weymouth,NJ,39.43144199,-74.73553686,RES1,3001,,NaN,NE,1985,0,3102,2,1,2394.478398,2394.478398,3507,NO,26.13,35.7,1,1.24,6106,109.031499,118.711752,128.401628,133.205781,I,Above,Hip,0,5701,,30.91621727,0,0,,,,1,1,,0.03,nav,1,1985,2,, 32775,NJBF000083118,1200 BOULEVARD ROUTE 50,Weymouth,NJ,39.43735725,-74.7363375,RES1,3001,999,NaN,NE,1969,0,3102,1,1,2126.428254,2126.428254,3507,NO,15.03,28.05,1,1.48,6106,109.005434,118.656903,128.341893,133.102688,I,Above,Flat,0,5701,,21.53965052,0,0,,,,1,1,,0.03,nav,1,1969,1,, 32776,NJBF000082970,1312 LORETTO AVENUE,Weymouth,NJ,39.43556937,-74.73487424,RES1,3001,,16,NE,1917,1917,3102,2,1,1704.627042,1704.627042,3507,NO,24.77,30.04,1,1.26,6110,109.022416,118.687076,128.373193,133.157921,I,Above,Gable,0,5701,,27.40473846,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32777,NJBF000082969,1311 LORETTO AVENUE,Weymouth,NJ,39.43555577,-74.73445483,RES1,3001,,16,NE,1917,1917,3102,2,1,961.1182941,961.1182941,3507,NO,35.04,46.61,1,0.53,6110,109.025638,118.691846,128.377872,133.166381,I,Above,Gable,0,5701,,40.8234973,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32778,NJBF000082542,1305 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4307447,-74.72174931,RES1,3001,,15,NE,1940,1940,3102,2,1,2128.939949,2128.939949,3507,NO,23.77,32.29,1,-0.4,6106,109.138544,118.87297,128.560029,133.489848,I,Above,Gable,0,5701,,28.032995,0,0,,,,1,1,,0.03,nav,1,1940,2,, 32779,NJBF000082812,1417 BOULEVARD ROUTE 50,Weymouth,NJ,39.43382449,-74.7360405,RES1,3001,,15,NE,1917,1917,3102,2,1,1733.211475,1733.211475,3507,NO,36.24,43.49,1,-0.14,6106,109.019464,118.687657,128.375526,133.160654,I,Above,Gable,0,5701,,39.86775013,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32780,NJBF000083468,901 MORRIS LANE,Weymouth,NJ,39.44527645,-74.7246934,RES1,3001,,16,NE,1895,1895,3102,2,1,4013.194203,4013.194203,3507,NO,36.44,46.18,1,2.67,6106,109.073363,118.726359,128.400546,133.215404,I,Above,Gable,0,5701,,41.31119616,0,0,,,,1,1,,0.03,nav,1,1895,2,, 32781,NJBF000082902,1401 MADDEN AVENUE,Weymouth,NJ,39.43472899,-74.73367549,RES1,3001,,16,NE,1987,1987,3102,2,1,1364.518326,1364.518326,3507,NO,28.4,42.61,1,0.29,6106,109.034289,118.706971,128.393529,133.193999,I,Above,Gable,0,5701,,35.50391309,0,0,,,,1,1,,0.03,nav,1,1987,2,, 32782,NJBF000082907,1403 BOULEVARD ROUTE 50,Weymouth,NJ,39.43477135,-74.73596935,RES1,3001,,16,NE,1917,1917,3102,2,1,1158.011464,1158.011464,3507,NO,35.85,41.18,1,0.76,6106,109.016795,118.6811,128.368144,133.148099,I,Above,Gable,0,5701,,38.5152012,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32783,NJBF000082912,1402 LORETTO AVENUE,Weymouth,NJ,39.43485269,-74.73489909,RES1,3001,,16,NE,1917,1917,3102,2,1,921.7834192,921.7834192,3507,NO,29.23,38.33,1,-0.28,6110,109.024603,118.69236,128.379098,133.167999,I,Above,Hip,0,5701,,33.77988596,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32784,NJBF000083286,1003 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.44108942,-74.72432786,RES1,3001,,17,NE,1974,1974,3102,2,1,4207.720808,4207.720808,3507,NO,35.7,50.25,1,0.57,6110,109.087611,118.763177,128.440751,133.284718,I,Above,Hip,0,5701,,42.97211674,0,0,,,,1,1,,0.35,nav,1,1974,2,, 32785,NJBF000083540,DANENHAUER LANE,Weymouth,NJ,39.4468685,-74.7250345,RES1,3001,,NaN,NE,1969,0,3102,2,1,831.8406257,831.8406257,3507,NO,32.99,38.32,1,-0.93,6106,109.066438,118.710003,128.383113,133.185052,I,Above,Hip,0,5701,,35.65614257,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32786,NJBF000082830,1407 LORETTO AVENUE,Weymouth,NJ,39.43397451,-74.73458817,RES1,3001,,16,NE,1952,1952,3102,2,1,1824.979523,1824.979523,3507,NO,39.56,49.1,1,2.21,6110,109.029898,118.702643,128.390077,133.187107,I,Above,Gable,0,5701,,44.32850557,0,0,,,,1,1,,0.35,nav,1,1952,2,, 32787,NJBF000082797,1419 BOULEVARD ROUTE 50,Weymouth,NJ,39.43363475,-74.73578927,RES1,3001,,16,NE,1917,1917,3102,2,1,682.2224271,682.2224271,3507,NO,36.76,50.15,1,-0.83,6106,109.022004,118.691924,128.379905,133.168417,I,Above,Flat,0,5701,,43.45595063,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32788,NJBF000082784,1421 BOULEVARD ROUTE 50,Weymouth,NJ,39.43354506,-74.73596762,RES1,3001,,16,NE,1917,1917,3102,2,1,2227.551998,2227.551998,3507,NO,22.18,28.87,1,-0.36,6106,109.020967,118.690635,128.37873,133.166213,I,Above,Hip,0,5701,,25.52150015,0,0,,,,1,1,,0.03,nav,1,1917,2,, 32789,NJBF000082530,1315 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43067073,-74.72037561,RES1,3001,,16,NE,1956,1956,3102,2,1,2375.678348,2375.678348,3507,NO,24.71,38.8,1,1.3,6106,109.149414,118.889362,128.576008,133.518339,I,Above,Gable,0,5701,,31.75595393,0,0,,,,1,1,,0.03,nav,1,1956,2,, 32790,NJBF000082845,,Weymouth,NJ,39.43420475,-74.73571712,RES1,3001,,NaN,NE,1969,0,3102,2,1,529.870183,529.870183,3507,NO,37,43.95,1,1.78,6106,109.020606,118.688296,128.375771,133.161423,I,Above,Flat,0,5701,,40.47852708,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32791,NJBF000083032,1305 LORETTO AVENUE,Weymouth,NJ,39.43606937,-74.73434345,RES1,3001,,17,NE,2003,2003,3102,2,1,2455.265822,2455.265822,3507,NO,38.9,47.24,1,1.91,6110,109.024807,118.689109,128.374668,133.161016,I,Above,Gable,0,5701,,43.07021082,0,0,,,,1,1,,0.35,nav,1,2003,2,, 32792,NJBF000083110,1201 MADDEN AVENUE,Weymouth,NJ,39.43707293,-74.73333374,RES1,3001,,NaN,NE,1969,0,3102,1,1,4520.007483,4520.007483,3507,NO,14.82,21.43,1,2.73,6110,109.029265,118.692573,128.377007,133.166099,I,Above,Hip,0,5701,,18.12296026,0,0,,,,1,1,,1,nav,1,1969,1,, 32793,NJBF000082556,1231 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43094005,-74.72347594,RES1,3001,,16,NE,1986,1986,3102,2,1,1966.300217,1966.300217,3507,NO,36.4,45.4,1,-0.64,6106,109.124598,118.851644,128.539071,133.452527,I,Above,Gable,0,5701,,40.90036914,0,0,,,,1,1,,0.03,nav,1,1986,2,, 32794,NJBF000082823,,Weymouth,NJ,39.43393524,-74.73529943,RES1,3001,,NaN,NE,1969,0,3102,2,1,1814.229031,1814.229031,3507,NO,27.56,41.43,1,-0.78,6106,109.024671,118.695039,128.382661,133.173659,I,Above,Gable,0,5701,,34.49451969,0,0,,,,1,1,,0.03,nav,1,1969,2,, 32795,NJBF000083086,4 DARLINGTON AVENUE,Weymouth,NJ,39.43654203,-74.73355274,RES1,3001,,16,NE,1994,1994,3102,2,1,1474.644277,1474.644277,3507,NO,38.28,47.37,1,0.75,6110,109.029294,118.694252,128.379199,133.16962,I,Above,Gable,0,5701,,42.82886703,0,0,,,,1,1,,0.35,nav,1,1994,2,, 32796,NJBF000082997,1309 LORETTO AVENUE,Weymouth,NJ,39.43579598,-74.73443837,RES1,3001,,27,NE,1917,1917,3102,2,2,1358.841876,1358.841876,3507,NO,30.11,42.15,1,2.62,6110,109.024979,118.690171,128.375987,133.163172,I,Above,Gable,0,5701,,36.12995236,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32797,NJBF000083210,,Weymouth,NJ,39.4396589,-74.72315847,RES1,3001,,NaN,NE,1965,0,3102,2,1,2428.567866,2428.567866,3507,NO,39.53,44.8,1,1.49,6106,109.100923,118.787702,128.466051,133.32915,I,Above,Gable,0,5701,,42.16452228,0,0,,,,1,1,,0.03,nav,1,1965,2,, 32798,NJBF000083216,1017 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43970225,-74.7235264,RES1,3001,,16,NE,1965,1965,3102,2,1,941.3181795,941.3181795,3507,NO,26.47,37.29,1,0.42,6110,109.097874,118.783148,128.461626,133.321211,I,Above,Gable,0,5701,,31.88068156,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, 32799,NJBF000082577,1229 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4311756,-74.72359429,RES1,3001,,15,NE,1980,1980,3102,1,1,2695.593556,2695.593556,3507,NO,13.26,23.32,1,0.9,6106,109.122931,118.848469,128.535674,133.446664,I,Above,Flat,0,5701,,18.29152287,0,0,,,,1,1,,0.03,nav,1,1980,1,, 32800,NJBF000082436,1323 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4298915,-74.71927415,RES1,3001,,17,NE,2014,2014,3102,2,1,2900.100379,2900.100379,3507,NO,38.84,49.44,1,0.08,6106,109.160417,118.908123,128.595275,133.551982,I,Above,Gable,0,5701,,44.14262841,0,0,,,,1,1,,0.03,nav,1,2014,2,, 32801,NJBF000082447,1323 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43004252,-74.71977317,RES1,3001,,17,NE,2014,2014,3102,2,1,551.4495589,551.4495589,3507,NO,30.51,35.67,1,0.4,6106,109.156066,118.901177,128.588336,133.539747,I,Above,Gable,0,5701,,33.09177738,0,0,,,,1,1,,0.03,nav,1,2014,2,, 32802,NJBF000083095,1301 BOULEVARD ROUTE 50,Weymouth,NJ,39.43668836,-74.73574575,RES1,3001,,16,NE,1920,1920,3102,2,1,1573.714671,1573.714671,3507,NO,39.15,50.66,1,0.74,6110,109.012118,118.668679,128.354069,133.124214,I,Above,Hip,0,5701,,44.90774138,0,0,,,,1,1,,0.35,nav,1,1920,2,, 32803,NJBF000082650,1223 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43202773,-74.72406206,RES1,3001,,17,NE,2014,2014,3102,2,2,1226.871762,1226.871762,3507,NO,27.86,39.86,1,2.83,6106,109.116603,118.836524,128.522957,133.424665,I,Above,Gable,0,5701,,33.85801881,0,0,,,,1,1,,0.03,nav,1,2014,2,, 32804,NJBF000083062,1121 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43629022,-74.72368254,RES1,3001,,16,NE,1960,1960,3102,2,1,1934.925715,1934.925715,3507,NO,40.74,51.14,1,1.76,6110,109.106478,118.807847,128.4897,133.368804,I,Above,Gable,0,5701,,45.93602617,0,0,,,,1,1,,0.03,nav,1,1960,2,, 32805,NJBF000082771,1409-1411 LORETTO AVENUE,Weymouth,NJ,39.4333755,-74.73463649,RES1,3001,,45,NE,1917,1917,3102,2,2,1753.713649,1753.713649,3507,NO,29.27,36.44,1,1.8,6110,109.031568,118.706767,128.394742,133.195023,I,Above,Gable,0,5701,,32.85686315,0,0,,,,1,1,,0.35,nav,1,1917,2,, 32806,NJBF000083232,1013 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43997655,-74.72335926,RES1,3001,,16,NE,1976,1976,3102,2,1,2941.454717,2941.454717,3507,NO,37.39,49.92,1,-0.62,6106,109.098432,118.782924,128.461068,133.320438,I,Above,Gable,0,5701,,43.65688876,0,1.2,,,,1,1,,0.03,nav,1,1976,2,, 32807,NJBF000082942,1129 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43523034,-74.72443059,RES1,3001,,17,NE,2004,2004,3102,1,1,6451.072076,6451.072076,3507,NO,16.25,25.56,1,-0.09,6110,109.103801,118.807508,128.490725,133.369703,I,Above,Gable,0,5701,,20.90362099,0,1.1,,,,1,1,,0.35,nav,1,2004,1,, 32808,NJBF000082962,1309 MADDEN AVENUE,Weymouth,NJ,39.4354848,-74.73370066,RES1,3001,,16,NE,1961,1961,3102,2,1,1350.051577,1350.051577,3507,NO,34.72,41.92,1,0.26,6110,109.031602,118.70081,128.38671,133.182314,I,Above,Gable,0,5701,,38.31645515,0,0,,,,1,1,,0.35,nav,1,1961,2,, 32809,NJBF000083273,1007 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4406645,-74.723983,RES1,3001,,15,NE,1957,1957,3102,2,1,1313.084236,1313.084236,3507,YES,34.02,43.41,1,2.12,6110,109.091543,118.770432,128.448231,133.297863,I,Above,Hip,0,5701,,38.71365492,0,0,,,,1,1,,0.35,nav,1,1957,2,, 32810,NJBF000082984,1127 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.4357175,-74.72430749,RES1,3001,,16,NE,1957,1957,3102,2,1,691.561952,691.561952,3507,NO,31.64,44.54,1,0.81,6110,109.103296,118.805142,128.487819,133.364912,I,Above,Gable,0,5701,,38.08956005,0,0,,,,1,1,,0.35,nav,1,1957,2,, 32811,NJBF000082966,1127 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43551443,-74.72412934,RES1,3001,,16,NE,1957,1957,3102,2,1,4017.49673,4017.49673,3507,NO,39.39,47.52,1,1.18,6106,109.105301,118.80876,128.491572,133.371481,I,Above,Gable,0,5701,,43.45493332,0,0,,,,1,1,,0.03,nav,1,1957,2,, 32812,NJBF000082677,1502 MATHEWS AVENUE,Weymouth,NJ,39.432312,-74.735812,RES1,3001,999,17,NE,1920,1920,3102,2,1,643.5505018,643.5505018,3507,NO,38.42,50.87,1,0.38,6106,109.026397,118.701943,128.391089,133.187497,I,Above,Gable,0,5701,,44.64566216,0,0,,,,1,1,,0.03,nav,1,1920,2,, 32813,NJBF000082516,1311 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43056821,-74.72083125,RES1,3001,,16,NE,1993,1993,3102,2,1,1907.145023,1907.145023,3507,NO,31.34,39.14,1,0.24,6106,109.146209,118.884909,128.571842,133.510797,I,Above,Gable,0,5701,,35.24138416,0,1.1,,,,1,1,,0.03,nav,1,1993,2,, 32814,NJBF000082922,1131 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43497277,-74.72464709,RES1,3001,,15,NE,1960,1960,3102,2,1,507.7437595,507.7437595,3507,NO,33.55,38.96,1,1.17,6110,109.102899,118.807032,128.490591,133.369233,I,Above,Gable,0,5701,,36.25754183,0,0,,,,1,1,,0.35,nav,1,1960,2,, 32815,NJBF000082914,1131 WEST RIVERSIDE DRIVE,Weymouth,NJ,39.43487335,-74.72431547,RES1,3001,,15,NE,1960,1960,3102,2,1,1538.215256,1538.215256,3507,NO,33.32,44.61,1,2.36,6110,109.105791,118.811601,128.495137,133.377316,I,Above,Gable,0,5701,,38.96487277,0,0,,,,1,1,,0.03,nav,1,1960,2,, 32816,NJBF000082667,,Weymouth,NJ,39.43221923,-74.73446571,RES1,3001,,NaN,NE,1985,0,3102,2,1,1992.134924,1992.134924,3507,NO,39.54,53.95,1,0.99,6106,109.036808,118.717634,128.406615,133.215467,I,Above,Gable,0,5701,,46.74490439,0,0,,,,1,1,,0.03,nav,1,1985,2,, 32817,NJBF000082730,1502 CLEMENT STREET,Weymouth,NJ,39.43292626,-74.73468799,RES1,3001,,15,NE,1917,1917,3102,2,1,1059.291746,1059.291746,3507,NO,25.32,35.21,1,2.42,6106,109.032709,118.709674,128.39806,133.200631,I,Above,Gable,0,5701,,30.26665222,0,1.1,,,,1,1,,0.03,nav,1,1917,2,, 32818,NJBF000074898,1518 11TH AVENUE,Weymouth,NJ,39.38810985,-74.85010585,RES1,3001,,16,NE,1978,1978,3101,1,1,2736.469145,2736.469145,3507,NO,13.08,20.67,1,2.07,6112,108.49185,117.912881,127.557935,131.63224,I,Above,Hip,0,5701,,16.87460231,0,1.1,,,,1,1,,0.35,nav,1,1978,1,, 32819,NJBF000076176,,Weymouth,NJ,39.39248143,-74.84100689,RES1,3001,,NaN,NE,1969,0,3101,1,1,1454.026249,1454.026249,3507,NO,16.94,23.46,1,1.4,6112,108.522953,117.962325,127.615343,131.740591,I,Above,Hip,0,5701,,20.20282966,0,0,,,,1,1,,0.35,nav,1,1969,1,, 32820,NJBF000076479,,Weymouth,NJ,39.39357128,-74.83927441,RES1,3001,,NaN,NE,1969,0,3101,1,1,1457.896394,1457.896394,3507,NO,12.17,20.79,1,0.94,6109,108.527335,117.969698,127.624358,131.757794,I,Above,Hip,0,5701,,16.48232762,0,0,,,,1,1,,0.03,nav,1,1969,1,, 32821,NJBF000076529,,Weymouth,NJ,39.39379756,-74.83957358,RES1,3001,,NaN,NE,1969,0,3101,1,1,926.6984348,926.6984348,3507,NO,13.99,26.85,1,0.26,6109,108.523982,117.965013,127.619646,131.749161,I,Above,Hip,0,5701,,20.42037914,0,0,,,,1,1,,0.03,nav,1,1969,1,, 32822,NJBF000076692,1412 11TH AVENUE,Weymouth,NJ,39.39439648,-74.83840421,RES1,3001,,16,NE,1976,1976,3101,2,1,1656.616932,1656.616932,3507,NO,22.61,36.57,1,-0.9,6112,108.527824,117.971134,127.626776,131.762654,I,Above,Gable,0,5701,,29.59266007,0,1.1,,,,1,1,,0.35,nav,1,1976,2,, 32823,NJBF000078987,1009 11TH AVENUE,Weymouth,NJ,39.41658874,-74.79469126,RES1,3001,,16,NE,1969,1978,3101,1,1,2373.899379,2373.899379,3507,NO,12.1,19.25,1,-0.99,6112,108.68539,118.211885,127.897025,132.27378,I,Above,Gable,0,5701,,15.67206288,0,0,,,,1,1,,0.35,nav,1,1969,1,, 32824,NJBF000079280,1005 11TH AVENUE,Weymouth,NJ,39.41658874,-74.79469126,RES1,3001,,15,NE,1969,1960,3101,1,1,964.5006674,964.5006674,3507,NO,18.72,30.5,1,1.12,6109,108.68539,118.211885,127.897025,132.27378,I,Above,Gable,0,5701,,24.61165142,0,0,,,,1,1,,0.03,nav,1,1969,1,, 32825,NJBF000081229,11 ESTELLE AVENUE,Weymouth,NJ,39.41816984,-74.82548794,RES1,3001,,16,NE,1982,1982,3102,2,1,1748.707177,1748.707177,3504,NO,22.06,32.79,-4,0,6112,108.474982,117.901669,127.573829,131.677718,I,Above,Gable,0,5701,,27.42512786,0,0,,,,1,1,,0.35,nav,1,1982,2,, 32826,NJBF000083385,,Weymouth,NJ,39.44328675,-74.7352096,COM2,3001,,NaN,ME,1969,0,3401,3,1,3933.518898,3933.518898,3507,NO,43.9,53.07,1,2.17,6110,108.995618,118.623278,128.303398,133.037516,I,Above,Flat,0,NaN,,48.48569208,0,0,,,,1,1,,1,nav,1,1969,3,, 32827,NJBF000083499,901 MORRIS LANE,Weymouth,NJ,39.44593122,-74.72455657,RES1,3001,,16,NE,1895,1895,3102,2,1,606.8009555,606.8009555,3507,NO,30.13,44.19,1,0.42,6106,109.072749,118.722795,128.396391,133.208387,I,Above,Gable,0,5701,,37.16243265,0,0,,,,1,1,,0.03,nav,1,1895,2,, 32828,NJBF000092612,,Winslow,NJ,39.6221943,-74.84545236,RES1,3001,,NaN,NE,1952,0,3102,2,1,680.4819485,680.4819485,3505,NO,27.17,39.68,3,4.83,6109,107.66428,116.161565,125.962441,129.082162,I,Above,Gable,0,5701,,33.426213,0,0,,,,1,1,,0.03,nav,1,1952,2,, diff --git a/docs/_downloads/269c83111fe9f62b0e4dec71705f33d4/WindMMUHRulesets.py b/docs/_downloads/269c83111fe9f62b0e4dec71705f33d4/WindMMUHRulesets.py deleted file mode 100644 index 4eae5fc0a..000000000 --- a/docs/_downloads/269c83111fe9f62b0e4dec71705f33d4/WindMMUHRulesets.py +++ /dev/null @@ -1,195 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def MMUH_config(BIM): - """ - Rules to identify a HAZUS MMUH configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Secondary Water Resistance (SWR) - # Minimum drainage recommendations are in place in NJ (See below). - # However, SWR indicates a code-plus practice. - SWR = False # Default - if BIM['roof_shape'] == 'flt': - SWR = True - elif BIM['roof_shape'] in ['hip', 'gab']: - SWR = random.random() < 0.6 - - # Roof cover & Roof quality - # Roof cover and quality do not apply to gable and hip roofs - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'nav' - roof_quality = 'nav' - # NJ Building Code Section 1507 (in particular 1507.10 and 1507.12) address - # Built Up Roofs and Single Ply Membranes. However, the NJ Building Code - # only addresses installation and material standards of different roof - # covers, but not in what circumstance each must be used. - # SPMs started being used in the 1960s, but different types continued to be - # developed through the 1980s. Today, single ply membrane roofing is the - # most popular flat roof option. BURs have been used for over 100 years, - # and although they are still used today, they are used less than SPMs. - # Since there is no available ruleset to be taken from the NJ Building - # Code, the ruleset is based off this information. - # We assume that all flat roofs built before 1975 are BURs and all roofs - # built after 1975 are SPMs. - # Nothing in NJ Building Code or in the Hazus manual specifies what - # constitutes “good” and “poor” roof conditions, so ruleset is dependant - # on the age of the roof and average lifespan of BUR and SPM roofs. - # We assume that the average lifespan of a BUR roof is 30 years and the - # average lifespan of a SPM is 35 years. Therefore, BURs installed before - # 1990 are in poor condition, and SPMs installed before 1985 are in poor - # condition. - else: - if year >= 1975: - roof_cover = 'spm' - if BIM['year_built'] >= (datetime.datetime.now().year - 35): - roof_quality = 'god' - else: - roof_quality = 'por' - else: - # year < 1975 - roof_cover = 'bur' - if BIM['year_built'] >= (datetime.datetime.now().year - 30): - roof_quality = 'god' - else: - roof_quality = 'por' - - # Roof Deck Attachment (RDA) - # IRC 2009-2015: - # Requires 8d nails (with spacing 6”/12”) for sheathing thicknesses between - # ⅜”-1”, see Table 2304.10, Line 31. Fastener selection is contingent on - # thickness of sheathing in building codes. - # Wind Speed Considerations taken from Table 2304.6.1, Maximum Nominal - # Design Wind Speed, Vasd, Permitted For Wood Structural Panel Wall - # Sheathing Used to Resist Wind Pressures. Typical wall stud spacing is 16 - # inches, according to table 2304.6.3(4). NJ code defines this with respect - # to exposures B and C only. These are mapped to HAZUS categories based on - # roughness length in the ruleset herein. - # The base rule was then extended to the exposures closest to suburban and - # light suburban, even though these are not considered by the code. - if BIM['terrain'] >= 35: # suburban or light trees - if BIM['V_ult'] > 130.0: - RDA = '8s' # 8d @ 6"/6" 'D' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - else: # light suburban or open - if BIM['V_ult'] > 110.0: - RDA = '8s' # 8d @ 6"/6" 'D' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - - # Roof-Wall Connection (RWC) - if BIM['V_ult'] > 110.0: - RWC = 'strap' # Strap - else: - RWC = 'tnail' # Toe-nail - - # Shutters - # IRC 2000-2015: - # R301.2.1.2 in NJ IRC 2015 says protection of openings required for - # buildings located in WBD regions, mentions impact-rated protection for - # glazing, impact-resistance for garage door glazed openings, and finally - # states that wood structural panels with a thickness > 7/16" and a - # span <8' can be used, as long as they are precut, attached to the framing - # surrounding the opening, and the attachments are resistant to corrosion - # and are able to resist component and cladding loads; - # Earlier IRC editions provide similar rules. - if year >= 2000: - shutters = BIM['WBD'] - # BOCA 1996 and earlier: - # Shutters were not required by code until the 2000 IBC. Before 2000, the - # percentage of commercial buildings that have shutters is assumed to be - # 46%. This value is based on a study on preparedness of small businesses - # for hurricane disasters, which says that in Sarasota County, 46% of - # business owners had taken action to wind-proof or flood-proof their - # facilities. In addition to that, 46% of business owners reported boarding - # up their businesses before Hurricane Katrina. In addition, compliance - # rates based on the Homeowners Survey data hover between 43 and 50 percent. - else: - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - # Masonry Reinforcing (MR) - # R606.6.4.1.2 Metal Reinforcement states that walls other than interior - # non-load-bearing walls shall be anchored at vertical intervals of not - # more than 8 inches with joint reinforcement of not less than 9 gage. - # Therefore this ruleset assumes that all exterior or load-bearing masonry - # walls will have reinforcement. Since our considerations deal with wind - # speed, I made the assumption that only exterior walls are being taken - # into consideration. - MR = True - - stories = min(BIM['stories'], 3) - bldg_config = f"MMUH" \ - f"{int(stories)}_" \ - f"{BIM['roof_shape']}_" \ - f"{int(SWR)}_" \ - f"{roof_cover}_" \ - f"{roof_quality}_" \ - f"{RDA}_" \ - f"{RWC}_" \ - f"{int(shutters)}_" \ - f"{int(MR)}_" \ - f"{int(BIM['terrain'])}" - return bldg_config diff --git a/docs/_downloads/297385842c9317747121a56f6a5466e7/WindMetaVarRulesets.py b/docs/_downloads/297385842c9317747121a56f6a5466e7/WindMetaVarRulesets.py deleted file mode 100644 index 6ff388e76..000000000 --- a/docs/_downloads/297385842c9317747121a56f6a5466e7/WindMetaVarRulesets.py +++ /dev/null @@ -1,302 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def parse_BIM(BIM_in): - """ - Parses the information provided in the BIM model. - - The parameters below list the expected inputs - - Parameters - ---------- - stories: str - Number of stories - yearBuilt: str - Year of construction. - roofType: {'hip', 'hipped', 'gabled', 'gable', 'flat'} - One of the listed roof shapes that best describes the building. - occupancy: str - Occupancy type. - buildingDescription: str - MODIV code that provides additional details about the building - structType: {'Stucco', 'Frame', 'Stone', 'Brick'} - One of the listed structure types that best describes the building. - V_design: string - Ultimate Design Wind Speed was introduced in the 2012 IBC. Officially - called “Ultimate Design Wind Speed (Vult); equivalent to the design - wind speeds taken from hazard maps in ASCE 7 or ATC's API. Unit is - assumed to be mph. - area: float - Plan area in ft2. - z0: string - Roughness length that characterizes the surroundings. - - Returns - ------- - BIM: dictionary - Parsed building characteristics. - """ - - # maps roof type to the internal representation - ap_RoofType = { - 'hip' : 'hip', - 'hipped': 'hip', - 'Hip' : 'hip', - 'gabled': 'gab', - 'gable' : 'gab', - 'Gable' : 'gab', - 'flat' : 'flt', - 'Flat' : 'flt' - } - # maps roof system to the internal representation - ap_RoofSyste = { - 'Wood': 'trs', - 'OWSJ': 'ows', - 'N/A': 'trs' - } - roof_system = BIM_in.get('RoofSystem','Wood') - try: - if np.isnan(roof_system): - roof_system = 'Wood' - except: - pass - # maps number of units to the internal representation - ap_NoUnits = { - 'Single': 'sgl', - 'Multiple': 'mlt', - 'Multi': 'mlt', - 'nav': 'nav' - } - # maps for split level - ap_SplitLevel = { - 'NO': 0, - 'YES': 1 - } - # maps for design level (Marginal Engineered is mapped to Engineered as default) - ap_DesignLevel = { - 'E': 'E', - 'NE': 'NE', - 'PE': 'PE', - 'ME': 'E' - } - design_level = BIM_in.get('DesignLevel','E') - try: - if np.isnan(design_level): - design_level = 'E' - except: - pass - - foundation = BIM_in.get('FoundationType') - if np.isnan(foundation): - foundation = 3501 - - nunits = BIM_in.get('NumberOfUnits',1) - if np.isnan(nunits): - nunits = 1 - - # Average January Temp. - ap_ajt = { - 'Above': 'above', - 'Below': 'below' - } - - # Year built - alname_yearbuilt = ['yearBuilt', 'YearBuiltMODIV', 'YearBuilt'] - try: - yearbuilt = BIM_in['YearBuiltNJDEP'] - except: - for i in alname_yearbuilt: - if i in BIM_in.keys(): - yearbuilt = BIM_in[i] - break - print('yearbuilt = ', yearbuilt) - - # Number of Stories - alname_nstories = ['stories', 'NumberofStories0', 'NumberOfStories'] - try: - nstories = BIM_in['NumberofStories1'] - except: - for i in alname_nstories: - if i in BIM_in.keys(): - nstories = BIM_in[i] - break - - # Plan Area - alname_area = ['area', 'PlanArea1', 'PlanArea'] - try: - area = BIM_in['PlanArea0'] - except: - for i in alname_area: - if i in BIM_in.keys(): - area = BIM_in[i] - break - - # if getting RES3 only (without subclass) then converting it to default RES3A - oc = BIM_in.get('occupancy','RES1') - if oc == 'RES3': - oc = 'RES3A' - - # maps for flood zone - ap_FloodZone = { - # Coastal areas with a 1% or greater chance of flooding and an - # additional hazard associated with storm waves. - 6101: 'VE', - 6102: 'VE', - 6103: 'AE', - 6104: 'AE', - 6105: 'AO', - 6106: 'AE', - 6107: 'AH', - 6108: 'AO', - 6109: 'A', - 6110: 'X', - 6111: 'X', - 6112: 'X', - 6113: 'OW', - 6114: 'D', - 6115: 'NA', - 6119: 'NA' - } - if type(BIM_in['FloodZone']) == int: - # NJDEP code for flood zone (conversion to the FEMA designations) - floodzone_fema = ap_FloodZone[BIM_in['FloodZone']] - else: - # standard input should follow the FEMA flood zone designations - floodzone_fema = BIM_in['FloodZone'] - - # first, pull in the provided data - BIM = dict( - occupancy_class=str(oc), - bldg_type=BIM_in['BuildingType'], - year_built=int(yearbuilt), - # double check with Tracey for format - (NumberStories0 is 4-digit code) - # (NumberStories1 is image-processed story number) - stories=int(nstories), - area=float(area), - flood_zone=floodzone_fema, - V_ult=float(BIM_in['DesignWindSpeed']), - avg_jan_temp=ap_ajt[BIM_in.get('AverageJanuaryTemperature','Below')], - roof_shape=ap_RoofType[BIM_in['RoofShape']], - roof_slope=float(BIM_in.get('RoofSlope',0.25)), # default 0.25 - sheathing_t=float(BIM_in.get('SheathingThick',1.0)), # default 1.0 - roof_system=str(ap_RoofSyste[roof_system]), # only valid for masonry structures - garage_tag=float(BIM_in.get('Garage',-1.0)), - lulc=BIM_in.get('LULC',-1), - z0 = float(BIM_in.get('RoughnessLength',-1)), # if the z0 is already in the input file - Terrain = BIM_in.get('Terrain',-1), - mean_roof_height=float(BIM_in.get('MeanRoofHeight',15.0)), # default 15 - design_level=str(ap_DesignLevel[design_level]), # default engineered - no_units=int(nunits), - window_area=float(BIM_in.get('WindowArea',0.20)), - first_floor_ht1=float(BIM_in.get('FirstFloorHeight',10.0)), - split_level=bool(ap_SplitLevel[BIM_in.get('SplitLevel',0)]), # dfault: no - fdtn_type=int(foundation), # default: pile - city=BIM_in.get('City','NA'), - wind_zone=str(BIM_in.get('WindZone', 'I')) - ) - - # add inferred, generic meta-variables - - # Hurricane-Prone Region (HRP) - # Areas vulnerable to hurricane, defined as the U.S. Atlantic Ocean and - # Gulf of Mexico coasts where the ultimate design wind speed, V_ult is - # greater than a pre-defined limit. - if BIM['year_built'] >= 2016: - # The limit is 115 mph in IRC 2015 - HPR = BIM['V_ult'] > 115.0 - else: - # The limit is 90 mph in IRC 2009 and earlier versions - HPR = BIM['V_ult'] > 90.0 - - # Wind Borne Debris - # Areas within hurricane-prone regions are affected by debris if one of - # the following two conditions holds: - # (1) Within 1 mile (1.61 km) of the coastal mean high water line where - # the ultimate design wind speed is greater than flood_lim. - # (2) In areas where the ultimate design wind speed is greater than - # general_lim - # The flood_lim and general_lim limits depend on the year of construction - if BIM['year_built'] >= 2016: - # In IRC 2015: - flood_lim = 130.0 # mph - general_lim = 140.0 # mph - else: - # In IRC 2009 and earlier versions - flood_lim = 110.0 # mph - general_lim = 120.0 # mph - # Areas within hurricane-prone regions located in accordance with - # one of the following: - # (1) Within 1 mile (1.61 km) of the coastal mean high water line - # where the ultimate design wind speed is 130 mph (58m/s) or greater. - # (2) In areas where the ultimate design wind speed is 140 mph (63.5m/s) - # or greater. (Definitions: Chapter 2, 2015 NJ Residential Code) - if not HPR: - WBD = False - else: - WBD = ((((BIM['flood_zone'] >= 6101) and (BIM['flood_zone'] <= 6109)) and - BIM['V_ult'] >= flood_lim) or (BIM['V_ult'] >= general_lim)) - - - BIM.update(dict( - # Nominal Design Wind Speed - # Former term was “Basic Wind Speed”; it is now the “Nominal Design - # Wind Speed (V_asd). Unit: mph." - V_asd = np.sqrt(0.6 * BIM['V_ult']), - - # Flood Risk - # Properties in the High Water Zone (within 1 mile of the coast) are at - # risk of flooding and other wind-borne debris action. - flood_risk=True, # TODO: need high water zone for this and move it to inputs! - - HPR=HPR, - WBD=WBD, - )) - - return BIM - diff --git a/docs/_downloads/2a28d89a8a8ed6a89c8bb3a80e01d199/AtlanticCountyInventory.csv b/docs/_downloads/2a28d89a8a8ed6a89c8bb3a80e01d199/AtlanticCountyInventory.csv deleted file mode 100644 index 3f2345ed7..000000000 --- a/docs/_downloads/2a28d89a8a8ed6a89c8bb3a80e01d199/AtlanticCountyInventory.csv +++ /dev/null @@ -1,100698 +0,0 @@ -BldgID,Longitude,Latitude,Address,City,BldgClass,YearBuilt,NumberofStories1,OccupancyClass,BuildingType -0101_1.01_1.01,-74.51503446,39.39359318,368 UPLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_1.01,-74.6881434,39.65375331,368 UPLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_1.02,-74.5177535,39.3932035,135 TENTH AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_1.01_1.02,-74.71374499,39.64733006,135 TENTH AVE,ABSECON CITY,17,1988,1,RES1,3004 -0101_1.01_1.03,-74.51888718,39.39071507,358 UPLAND AVE,ABSECON CITY,17,1986,1,REL1,3004 -0101_1.01_1.03,-74.70968469,39.65440102,358 UPLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_1.04,-74.5250585,39.3937085,360 UPLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_1.04,-74.77548678,39.64267177,360 UPLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_1.05,-74.52764883,39.39361624,362 UPLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_1.05,-74.78028217,39.64101694,362 UPLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_1.06,-74.52233086,39.39333521,364 UPLAND AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_1.01_1.06,-74.77804867,39.63992094,364 UPLAND AVE,ABSECON CITY,17,1985,1,GOV1,3004 -0101_1.01_1.07,-74.52807498,39.39314233,366 UPLAND AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_1.01_1.07,-74.78615217,39.643841,366 UPLAND AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_1.01_10,-74.52800859,39.38599874,1110 SPRING LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_1.01_10,-74.88923019,39.50375159,1110 SPRING LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_1.01_11,-74.51772233,39.40059992,1112 SPRING LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_1.01_11,-74.918497,39.487918,1112 SPRING LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_1.01_12,-74.5172961,39.40053271,1114 SPRING LANE,ABSECON CITY,17,1976,1,RES1,3001 -0101_1.01_12,-74.9354975,39.4887385,1114 SPRING LANE,ABSECON CITY,17,1976,1,RES1,3001 -0101_1.01_13,-74.5147125,39.39899,1101 SPRING LANE,ABSECON CITY,17,1968,1,GOV1,3004 -0101_1.01_13,-74.92811427,39.48833544,1101 SPRING LANE,ABSECON CITY,17,1968,1,RES1,3001 -0101_1.01_14,-74.519451,39.397522,1103 SPRING LANE,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_14,-74.93442238,39.49584976,1103 SPRING LANE,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_15,-74.5183,39.3948585,1105 SPRING LANE,ABSECON CITY,17,1973,1,RES3A,3001 -0101_1.01_15,-74.93967,39.501525,1105 SPRING LANE,ABSECON CITY,17,1973,1,RES1,3001 -0101_1.01_16,-74.5277345,39.4013845,1107 SPRING LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_1.01_16,-74.90333849,39.50495034,1107 SPRING LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_1.01_17,-74.52074335,39.39902594,1109 SPRING LANE,ABSECON CITY,17,1973,1,GOV1,3004 -0101_1.01_17,-74.913056,39.510618,1109 SPRING LANE,ABSECON CITY,17,1973,1,RES1,3001 -0101_1.01_18,-74.5309655,39.398919,1111 SPRING LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_1.01_18,-74.9245365,39.510431,1111 SPRING LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_1.01_19,-74.52719857,39.39823654,1113 SPRING LANE,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_19,-74.92673377,39.50823997,1113 SPRING LANE,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_2.01,-74.531211,39.3902545,1100 PLYMOUTH LANDING RD,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_2.01,-74.79152636,39.64354329,1100 PLYMOUTH LANDING RD,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_2.02,-74.5209253,39.38970893,1102 PLYMOUTH LANDING RD,ABSECON CITY,17,1994,1,RES1,3001 -0101_1.01_2.02,-74.79195782,39.64242519,1102 PLYMOUTH LANDING RD,ABSECON CITY,17,1994,1,RES1,3001 -0101_1.01_2.03,-74.52356599,39.38559084,1104 PLYMOUTH LANDING RD,ABSECON CITY,17,1981,1,RES1,3001 -0101_1.01_2.03,-74.79365933,39.6420845,1104 PLYMOUTH LANDING RD,ABSECON CITY,17,1981,1,RES1,3001 -0101_1.01_2.04,-74.51530358,39.40220261,1106 PLYMOUTH LANDING RD,ABSECON CITY,17,1993,1,RES1,3001 -0101_1.01_2.04,-74.7853345,39.64078717,1106 PLYMOUTH LANDING RD,ABSECON CITY,17,1993,1,RES1,3001 -0101_1.01_2.05,-74.515183,39.402166,1108 PLYMOUTH LANDING RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.01_2.05,-74.77946003,39.65537853,1108 PLYMOUTH LANDING RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.01_2.06,-74.51256348,39.40014734,1110 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,GOV1,3004 -0101_1.01_2.06,-74.78071036,39.65287505,1110 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.07,-74.52005752,39.39859916,1112 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.07,-74.79082982,39.65521117,1112 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.08,-74.51682319,39.39718954,1114 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.08,-74.7648395,39.664353,1114 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.09,-74.51426456,39.39588344,1116 PLYMOUTH LANDING RD,ABSECON CITY,17,1985,1,RES1,3001 -0101_1.01_2.09,-74.78097783,39.67208864,1116 PLYMOUTH LANDING RD,ABSECON CITY,17,1985,1,RES1,3001 -0101_1.01_2.10,-74.517537,39.395637,1118 PLYMOUTH LANDING RD,ABSECON CITY,17,2005,1,RES1,3001 -0101_1.01_2.10,-74.7927571,39.66602363,1118 PLYMOUTH LANDING RD,ABSECON CITY,17,2005,1,RES1,3001 -0101_1.01_2.11,-74.52120912,39.39750483,1120 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.11,-74.7879365,39.676428,1120 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.12,-74.52671426,39.39725296,1122 PLYMOUTH LANDING RD,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_2.12,-74.7952845,39.6432645,1122 PLYMOUTH LANDING RD,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_2.13,-74.52438672,39.39723208,1124 PLYMOUTH LANDING RD,ABSECON CITY,17,1993,1,RES1,3001 -0101_1.01_2.13,-74.79969685,39.64139043,1124 PLYMOUTH LANDING RD,ABSECON CITY,17,1993,1,RES1,3001 -0101_1.01_2.14,-74.52408578,39.39663089,1126 PLYMOUTH LANDING RD,ABSECON CITY,17,1984,1,RES1,3001 -0101_1.01_2.14,-74.79798988,39.64113963,1126 PLYMOUTH LANDING RD,ABSECON CITY,17,1984,1,RES1,3001 -0101_1.01_2.15,-74.52074225,39.39620167,1128 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.15,-74.80375799,39.64105151,1128 PLYMOUTH LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_2.16,-74.52455186,39.39574252,1130 PLYMOUTH LANDING RD,ABSECON CITY,17,1977,1,RES1,3001 -0101_1.01_2.16,-74.813407,39.644786,1130 PLYMOUTH LANDING RD,ABSECON CITY,17,1977,1,GOV1,3004 -0101_1.01_2.17,-74.48188299,39.43525562,1132 PLYMOUTH LANDING RD,ABSECON CITY,17,1970,1,RES1,3001 -0101_1.01_2.17,-74.82673914,39.64117748,1132 PLYMOUTH LANDING RD,ABSECON CITY,17,1970,1,RES1,3001 -0101_1.01_20,-74.52139942,39.39784466,1115 SPRING LANE,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_20,-74.91207987,39.5151873,1115 SPRING LANE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_1.01_21.08,-74.52063458,39.39705734,1116 LAVENDER LANE,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.01_21.08,-74.92192531,39.51978643,1116 LAVENDER LANE,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.01_21.10,-74.524454,39.3953045,1112 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_21.10,-74.92628318,39.52610124,1112 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_21.11,-74.52221682,39.39499099,1110 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_21.11,-74.9261749,39.5255091,1110 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_21.12,-74.5236455,39.394595,1108 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_21.12,-74.9237305,39.522984,1108 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_21.13,-74.50924826,39.40438848,1106 LAVENDER LANE,ABSECON CITY,17,1991,1,GOV1,3004 -0101_1.01_21.13,-74.42852607,39.36596741,1106 LAVENDER LANE,ABSECON CITY,17,1991,1,GOV1,3004 -0101_1.01_21.14,-74.50384137,39.41608561,1104 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_21.14,-74.43066358,39.36563515,1104 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_21.15,-74.49909032,39.41596546,1102 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_21.15,-74.43204107,39.36498062,1102 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_21.16,-74.50141,39.413263,1100 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_21.16,-74.425536,39.3649415,1100 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_22.08,-74.51158049,39.40634884,1118 LAVENDER LANE,ABSECON CITY,17,1991,1,GOV1,3004 -0101_1.01_22.08,-74.43716142,39.36794526,1118 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.09,-74.51617262,39.40560039,1120 LAVENDER LANE,ABSECON CITY,17,1991,1,GOV1,3004 -0101_1.01_22.09,-74.43925574,39.36651078,1120 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.10,-74.51101784,39.40503866,1122 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.10,-74.44110919,39.36603244,1122 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.11,-74.51492917,39.40265001,1124 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_22.11,-74.43647115,39.36469867,1124 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_22.12,-74.52876365,39.40527918,1126 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.12,-74.53105586,39.30728555,1126 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.13,-74.5123435,39.416705,1128 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.13,-74.52396842,39.31677533,1128 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.14,-74.516729,39.4112775,1130 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.14,-74.52054079,39.31626384,1130 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.01_22.15,-74.5233325,39.41864633,1132 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_22.15,-74.52743718,39.31276218,1132 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_4.01,-74.4860755,39.4348155,1100 DEL MAR COURT,ABSECON CITY,17,1992,1,RES1,3001 -0101_1.01_4.01,-74.83205094,39.64412666,1100 DEL MAR COURT,ABSECON CITY,17,1992,1,RES1,3001 -0101_1.01_4.02,-74.486795,39.4338375,1102 DEL MAR COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_1.01_4.02,-74.81767,39.652817,1102 DEL MAR COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_1.01_4.03,-74.507145,39.40869,1104 DEL MAR COURT,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_4.03,-74.80324218,39.65666334,1104 DEL MAR COURT,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_4.04,-74.50460918,39.40855903,1106 DEL MAR COURT,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_4.04,-74.42477623,39.3566035,1106 DEL MAR COURT,ABSECON CITY,17,1986,1,RES1,3001 -0101_1.01_4.05,-74.50446913,39.40813725,1108 DEL MAR COURT,ABSECON CITY,17,1989,1,COM1,3004 -0101_1.01_4.05,-74.44311017,39.35552,1108 DEL MAR COURT,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.01_4.06,-74.5041615,39.4065215,1110 DEL MAR COURT,ABSECON CITY,17,1988,1,RES1,3001 -0101_1.01_4.06,-74.42702061,39.36734968,1110 DEL MAR COURT,ABSECON CITY,17,1988,1,RES1,3001 -0101_1.01_4.07,-74.508953,39.4059525,1112 DEL MAR COURT,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.01_4.07,-74.42676582,39.36642203,1112 DEL MAR COURT,ABSECON CITY,17,1990,1,RES1,3004 -0101_1.01_4.08,-74.44961833,39.37316686,1114 DEL MAR COURT,ABSECON CITY,17,1989,1,COM1,3002 -0101_1.01_4.08,-74.81192053,39.6325997,1114 DEL MAR COURT,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.01_4.09,-74.452978,39.3729605,1115 DEL MAR COURT,ABSECON CITY,17,1995,1,RES1,3001 -0101_1.01_4.09,-74.81661216,39.63236152,1115 DEL MAR COURT,ABSECON CITY,17,1995,1,RES1,3001 -0101_1.01_4.10,-74.452677,39.372668,1113 DEL MAR COURT,ABSECON CITY,17,1988,1,RES1,3001 -0101_1.01_4.10,-74.8145705,39.6317515,1113 DEL MAR COURT,ABSECON CITY,17,1988,1,RES1,3001 -0101_1.01_4.11,-74.45337864,39.37105667,1111 DEL MAR COURT,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.01_4.11,-74.8278085,39.639074,1111 DEL MAR COURT,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.01_4.12,-74.4514095,39.370517,1109 DEL MAR COURT,ABSECON CITY,17,2000,1,RES1,3001 -0101_1.01_4.12,-74.84799883,39.61578351,1109 DEL MAR COURT,ABSECON CITY,17,2000,1,RES1,3001 -0101_1.01_4.13,-74.45775487,39.37399519,1107 DEL MAR COURT,ABSECON CITY,17,1992,1,RES1,3001 -0101_1.01_4.13,-74.85301024,39.61760338,1107 DEL MAR COURT,ABSECON CITY,17,1992,1,RES1,3001 -0101_1.01_4.14,-74.45676385,39.37360267,1105 DEL MAR COURT,ABSECON CITY,17,1992,1,GOV1,3004 -0101_1.01_4.14,-74.85957368,39.61589143,1105 DEL MAR COURT,ABSECON CITY,17,1992,1,RES1,3001 -0101_1.01_4.15,-74.51886155,39.38922586,1103 DEL MAR COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_1.01_4.15,-74.88355889,39.46823772,1103 DEL MAR COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_1.01_4.16,-74.5183325,39.387625,1101 DEL MAR COURT,ABSECON CITY,17,1994,1,IND1,3004 -0101_1.01_4.16,-74.91570375,39.46752072,1101 DEL MAR COURT,ABSECON CITY,17,1994,1,RES1,3001 -0101_1.01_5,-74.51056121,39.38591916,1100 SPRING LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_1.01_5,-74.88690036,39.47902469,1100 SPRING LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_1.01_6,-74.52870231,39.39119001,1102 SPRING LANE,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_6,-74.92053294,39.47781875,1102 SPRING LANE,ABSECON CITY,17,1972,1,RES1,3001 -0101_1.01_7,-74.52397,39.3878885,1104 SPRING LANE,ABSECON CITY,17,1962,1,RES1,3001 -0101_1.01_7,-74.92172624,39.47699084,1104 SPRING LANE,ABSECON CITY,17,1962,1,RES1,3001 -0101_1.01_8,-74.52590796,39.38611521,1106 SPRING LANE,ABSECON CITY,17,1969,1,RES1,3001 -0101_1.01_8,-74.91401532,39.48033269,1106 SPRING LANE,ABSECON CITY,17,1969,1,RES1,3001 -0101_1.01_9,-74.52276485,39.38604475,1108 SPRING LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_1.01_9,-74.90368983,39.49097703,1108 SPRING LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_1.02_10,-74.496671,39.4328515,1123 PLYMOUTH LANDING RD,ABSECON CITY,17,1979,1,RES3A,3004 -0101_1.02_10,-74.496618,39.333068,1123 PLYMOUTH LANDING RD,ABSECON CITY,17,1979,1,RES1,3001 -0101_1.02_11,-74.4944535,39.4308465,1121 PLYMOUTH LANDING RD,ABSECON CITY,17,1983,1,RES1,3001 -0101_1.02_11,-74.4982895,39.332926,1121 PLYMOUTH LANDING RD,ABSECON CITY,17,1983,1,RES3B,3001 -0101_1.02_12,-74.5016615,39.4317905,1119 PLYMOUTH LANDING RD,ABSECON CITY,17,1980,1,GOV1,3004 -0101_1.02_12,-74.49241353,39.33241267,1119 PLYMOUTH LANDING RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_1.02_13,-74.50874706,39.43074915,1117 PLYMOUTH LANDING RD,ABSECON CITY,17,1995,1,GOV1,3004 -0101_1.02_13,-74.4970389,39.33147784,1117 PLYMOUTH LANDING RD,ABSECON CITY,17,1995,1,RES3A,3001 -0101_1.02_14,-74.5050085,39.43076,1115 PLYMOUTH LANDING RD,ABSECON CITY,17,1988,1,RES1,3001 -0101_1.02_14,-74.49570121,39.32922825,1115 PLYMOUTH LANDING RD,ABSECON CITY,17,1988,1,RES1,3001 -0101_1.02_2,-74.48903396,39.42294269,1111 PLYMOUTH LANDING RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.02_2,-74.52863155,39.31161466,1111 PLYMOUTH LANDING RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.02_3,-74.49205438,39.42174667,1109 PLYMOUTH LANDING RD,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.02_3,-74.5282955,39.3093115,1109 PLYMOUTH LANDING RD,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.02_4,-74.489395,39.421427,1107 PLYMOUTH LANDING RD,ABSECON CITY,17,1985,1,RES1,3001 -0101_1.02_4,-74.52992481,39.30928437,1107 PLYMOUTH LANDING RD,ABSECON CITY,17,1985,1,GOV1,3004 -0101_1.02_5,-74.4885371,39.43585075,1105 PLYMOUTH LANDING RD,ABSECON CITY,17,1982,1,RES1,3001 -0101_1.02_5,-74.50348517,39.3253,1105 PLYMOUTH LANDING RD,ABSECON CITY,17,1982,1,RES1,3001 -0101_1.02_6,-74.490283,39.4349495,1103 PLYMOUTH LANDING RD,ABSECON CITY,17,1979,1,RES1,3001 -0101_1.02_6,-74.50417705,39.32428866,1103 PLYMOUTH LANDING RD,ABSECON CITY,17,1979,1,RES1,3001 -0101_1.02_7,-74.49697709,39.43444725,1101 PLYMOUTH LANDING RD,ABSECON CITY,17,1977,1,RES1,3001 -0101_1.02_7,-74.50586901,39.32414106,1101 PLYMOUTH LANDING RD,ABSECON CITY,17,1977,1,RES1,3001 -0101_1.02_8,-74.4881375,39.4334775,1127 PLYMOUTH LANDING RD,ABSECON CITY,17,1978,1,RES1,3001 -0101_1.02_8,-74.48916493,39.33374258,1127 PLYMOUTH LANDING RD,ABSECON CITY,17,1978,1,RES1,3001 -0101_1.02_9,-74.4937225,39.433021,1125 PLYMOUTH LANDING RD,ABSECON CITY,17,1979,1,RES1,3001 -0101_1.02_9,-74.49120516,39.33328901,1125 PLYMOUTH LANDING RD,ABSECON CITY,17,1979,1,RES3A,3001 -0101_1.03_21.01,-74.5028995,39.4298615,1101 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_21.01,-74.49534982,39.32851055,1101 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_21.02,-74.50303295,39.42928567,1103 LAVENDER LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_1.03_21.02,-74.50812833,39.33231804,1103 LAVENDER LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_1.03_21.03,-74.503997,39.4289475,1105 LAVENDER LANE,ABSECON CITY,17,1989,1,GOV1,3004 -0101_1.03_21.03,-74.50268682,39.33184957,1105 LAVENDER LANE,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.03_21.04,-74.51450543,39.43066971,1107 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_21.04,-74.5024985,39.3306485,1107 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_21.05,-74.51280757,39.4299517,1109 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_21.05,-74.50211324,39.33058482,1109 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_21.06,-74.45468,39.4680995,1111 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_21.06,-74.50385983,39.33035551,1111 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_21.07,-74.4719337,39.45561635,1113 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.03_21.07,-74.49848833,39.32976151,1113 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.03_22.01,-74.48171092,39.45625623,1127 LAVENDER LANE,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.03_22.01,-74.50356757,39.32920066,1127 LAVENDER LANE,ABSECON CITY,17,1989,1,RES1,3001 -0101_1.03_22.02,-74.48809802,39.43763372,1125 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.03_22.02,-74.50884242,39.3288748,1125 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.03_22.03,-74.49159849,39.44866673,1123 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.03_22.03,-74.50692757,39.32870867,1123 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.03_22.04,-74.496931,39.448649,1121 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_22.04,-74.5074505,39.32869,1121 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_22.05,-74.49213278,39.44858745,1119 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_22.05,-74.503654,39.3283815,1119 LAVENDER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_1.03_22.06,-74.49423355,39.44755621,1117 LAVENDER LANE,ABSECON CITY,17,1991,1,RES3A,3001 -0101_1.03_22.06,-74.50575309,39.32797165,1117 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.03_22.07,-74.50730818,39.44636193,1115 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_1.03_22.07,-74.50811489,39.32651821,1115 LAVENDER LANE,ABSECON CITY,17,1991,1,RES1,3001 -0101_100_1,-74.764311,39.351505,602 HADDON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_100_1,-74.36520894,39.4170213,602 HADDON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_100_2,-74.79685798,39.31356177,914 BLENHEIM AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_100_2,-74.3606215,39.4160135,914 BLENHEIM AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_100_3,-74.8180075,39.366155,912 BLENHEIM AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_100_3,-74.36232117,39.41186949,912 BLENHEIM AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_100_4,-74.81743032,39.36282254,910 BLENHEIM AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_100_4,-74.3620685,39.4117165,910 BLENHEIM AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_100_5,-74.53675185,39.37288653,908 BLENHEIM AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_100_5,-74.35922385,39.41144797,908 BLENHEIM AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_100_6,-74.549809,39.3767385,902 BLENHEIM AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_100_6,-74.37488455,39.41722072,902 BLENHEIM AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_100_7.01,-74.53058178,39.30927608,907 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_100_7.01,-74.715324,39.440278,907 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3002 -0101_100_7.02,-74.50602963,39.32392566,905 CHELSEA ROAD,ABSECON CITY,17,1977,1,RES1,3001 -0101_100_7.02,-74.71384,39.439443,905 CHELSEA ROAD,ABSECON CITY,17,1977,1,RES3A,3001 -0101_100_7.03,-74.491383,39.3329785,903 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_100_7.03,-74.7151055,39.4367545,903 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3002 -0101_101_1,-74.496905,39.3325615,602 HIGHLAND BLVD,ABSECON CITY,17,1963,1,RES1,3002 -0101_101_1,-74.7244095,39.451911,602 HIGHLAND BLVD,ABSECON CITY,17,1963,1,RES1,3001 -0101_103_1,-74.50107302,39.32662822,515 HADDON AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_103_1,-74.752163,39.4539195,515 HADDON AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_103_10,-74.51891017,39.31826898,932 TRAYMORE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_103_10,-74.810391,39.468736,932 TRAYMORE AVE,ABSECON CITY,17,1963,1,RES1,3004 -0101_103_11,-74.52140208,39.32267717,928 TRAYMORE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_103_11,-74.85569013,39.44064004,928 TRAYMORE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_103_12,-74.50952594,39.33250483,924 TRAYMORE AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_103_12,-74.877546,39.4515665,924 TRAYMORE AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_103_14,-74.51107288,39.33215374,910 TRAYMORE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_103_14,-74.88198818,39.44677246,910 TRAYMORE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_103_15,-74.51016457,39.33217571,906 TRAYMORE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_103_15,-74.87572939,39.45659818,906 TRAYMORE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_103_16,-74.5183015,39.3219695,900 TRAYMORE AVE,ABSECON CITY,17,1961,1,GOV1,3004 -0101_103_16,-74.752436,39.4984725,900 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES3A,3001 -0101_103_2,-74.5036869,39.32614768,915 BLENHEIM AVE,ABSECON CITY,17,1974,1,COM3,3004 -0101_103_2,-74.7519564,39.45363168,915 BLENHEIM AVE,ABSECON CITY,17,1974,1,RES3A,3001 -0101_103_3,-74.50407843,39.3260317,913 BLENHEIM AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_103_3,-74.7892665,39.4602755,913 BLENHEIM AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_103_4.01,-74.51901017,39.32446574,911 BLENHEIM AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_103_4.01,-74.70882852,39.47369575,911 BLENHEIM AVE,ABSECON CITY,17,1973,1,RES3B,3001 -0101_103_5,-74.51159089,39.32425693,907 BLENHEIM AVE,ABSECON CITY,17,1969,1,COM3,3004 -0101_103_5,-74.711698,39.472277,907 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_103_6,-74.5176315,39.324196,905 BLENHEIM AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_103_6,-74.7138245,39.4702315,905 BLENHEIM AVE,ABSECON CITY,17,1970,1,RES3A,3001 -0101_103_7,-74.5094755,39.3239965,903 BLENHEIM AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_103_7,-74.76368744,39.48406517,903 BLENHEIM AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_103_8,-74.51547466,39.32100002,960 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_103_8,-74.835228,39.4452545,960 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_103_9,-74.51629667,39.31956149,952 TRAYMORE AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_103_9,-74.80416825,39.46313964,952 TRAYMORE AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_104_1,-74.50085595,39.33009233,1011 BLENHEIM AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_104_1,-74.75413563,39.44865582,1011 BLENHEIM AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_104_10,-74.50745532,39.32679403,1014 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_104_10,-74.75295982,39.45419891,1014 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_104_2,-74.50319,39.329992,1009 BLENHEIM AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_104_2,-74.75594585,39.44838978,1009 BLENHEIM AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_104_5,-74.50198989,39.32958584,1005 BLENHEIM AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_104_5,-74.768112,39.45231333,1005 BLENHEIM AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_104_7,-74.5023395,39.328735,502 MORTON AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_104_7,-74.78036164,39.44384898,502 MORTON AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_104_9,-74.50715333,39.32745102,1028 BREAKERS AVE,ABSECON CITY,17,1963,1,RES1,3004 -0101_104_9,-74.7927005,39.442266,1028 BREAKERS AVE,ABSECON CITY,17,1963,1,RES3A,3001 -0101_105_1,-74.48977558,39.33244079,1111 BLENHEIM AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_105_1,-74.72877563,39.45027969,1111 BLENHEIM AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_105_10,-74.499857,39.3305715,1104 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_105_10,-74.754999,39.4526145,1104 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_105_11,-74.50204491,39.33049884,1102 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_105_11,-74.753696,39.451553,1102 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_105_12,-74.50806911,39.33037665,1100 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_105_12,-74.758454,39.4494005,1100 BREAKERS AVE,ABSECON CITY,17,1959,1,RES3A,3001 -0101_105_2,-74.4930745,39.332346,1109 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES3A,3001 -0101_105_2,-74.74397646,39.4526112,1109 BLENHEIM AVE,ABSECON CITY,17,1958,1,COM1,3004 -0101_105_3,-74.49194916,39.33189492,1107 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_105_3,-74.74379671,39.45126641,1107 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_105_4,-74.4967475,39.3287215,1105 BLENHEIM AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_105_4,-74.75013984,39.449161,1105 BLENHEIM AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_105_5,-74.49662645,39.32858532,1103 BLENHEIM AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_105_5,-74.74908652,39.44706718,1103 BLENHEIM AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_105_6,-74.499443,39.334149,1101 BLENHEIM AVE,ABSECON CITY,17,1959,1,RES3A,3001 -0101_105_6,-74.7482405,39.4454295,1101 BLENHEIM AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_105_7,-74.49873115,39.33369502,1110 BREAKERS AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_105_7,-74.72748563,39.45782233,1110 BREAKERS AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_105_8,-74.50864866,39.33201997,1108 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_105_8,-74.7268575,39.456881,1108 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_105_9,-74.509164,39.331075,1106 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3004 -0101_105_9,-74.7502595,39.453225,1106 BREAKERS AVE,ABSECON CITY,17,1959,1,RES1,3004 -0101_107_1,-74.51200389,39.32859117,1111 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_1,-74.83341396,39.47837919,1111 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_10,-74.4634905,39.3463725,401 MORTON AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_10,-74.882029,39.4969765,401 MORTON AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_2,-74.50977629,39.32791029,1109 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_2,-74.82958889,39.47792796,1109 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_3,-74.51037134,39.32786149,1107 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_3,-74.8273895,39.485872,1107 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_4,-74.5134365,39.327775,1105 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_4,-74.82472855,39.47960218,1105 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_5,-74.51023675,39.32674161,1103 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_5,-74.806509,39.488961,1103 BREAKERS AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_107_6,-74.4617815,39.3505065,403 MORTON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_107_6,-74.85439456,39.4811879,403 MORTON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_107_7,-74.457375,39.349306,1110 SHELBURNE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_107_7,-74.86314614,39.48634777,1110 SHELBURNE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_107_8,-74.462623,39.3492725,1108 SHELBURNE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_107_8,-74.8803237,39.48447442,1108 SHELBURNE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_107_9,-74.461672,39.348592,1106 SHELBURNE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_107_9,-74.87082374,39.49041979,1106 SHELBURNE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_109_1,-74.45955714,39.34591506,400 MORTON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_109_1,-74.55853537,39.50905057,400 MORTON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_109_2,-74.471694,39.3421905,1004 SHELBURNE AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_109_2,-74.5658055,39.5065245,1004 SHELBURNE AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_109_3,-74.470038,39.341519,1002 SHELBURNE AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_109_3,-74.53821669,39.53371804,1002 SHELBURNE AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_109_5,-74.4735755,39.3398195,401 HADDON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_109_5,-74.5418034,39.53145083,401 HADDON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_109_6,-74.48536,39.3404495,1005 TRAYMORE AVE,ABSECON CITY,17,2001,1,RES1,3001 -0101_109_6,-74.56540102,39.53245874,1005 TRAYMORE AVE,ABSECON CITY,17,2001,1,RES3A,3001 -0101_109_8,-74.48469947,39.33973132,403 HADDON AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_109_8,-74.59334057,39.51046185,403 HADDON AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_11_1,-74.45648268,39.49604765,174 HOBART AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_11_1,-74.467732,39.346698,174 HOBART AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_11_10,-74.50909138,39.47975175,138 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_11_10,-74.484886,39.3469015,138 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_11_11,-74.5240645,39.474311,136 HOBART AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_11_11,-74.48329343,39.34643122,136 HOBART AVE,ABSECON CITY,17,1984,1,COM1,3004 -0101_11_12,-74.52640775,39.47205724,134 HOBART AVE,ABSECON CITY,17,1955,1,RES3A,3001 -0101_11_12,-74.44830989,39.35681567,134 HOBART AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_11_13,-74.509926,39.483809,130 HOBART AVE,ABSECON CITY,17,1951,2,RES1,3001 -0101_11_13,-74.4499105,39.35364934,130 HOBART AVE,ABSECON CITY,17,1951,2,GOV1,3004 -0101_11_14,-74.49645922,39.49530644,120 HOBART AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_11_14,-74.46436368,39.35890996,120 HOBART AVE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_11_15,-74.5079785,39.4936125,118 HOBART AVE,ABSECON CITY,17,1920,1,COM1,3004 -0101_11_15,-74.464891,39.358144,118 HOBART AVE,ABSECON CITY,17,1920,1,AGR1,3001 -0101_11_16,-74.5052845,39.492349,116 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_11_16,-74.4624705,39.35728,116 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_11_17,-74.5060985,39.491967,163 WEBB RD,ABSECON CITY,17,1969,1,RES1,3001 -0101_11_17,-74.46231369,39.35719444,163 WEBB RD,ABSECON CITY,17,1969,1,RES1,3001 -0101_11_18,-74.49625476,39.49937166,161 WEBB RD,ABSECON CITY,17,1987,1,RES1,3001 -0101_11_18,-74.46209315,39.35640892,161 WEBB RD,ABSECON CITY,17,1987,1,RES1,3001 -0101_11_19,-74.49683721,39.49840339,159 WEBB RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_11_19,-74.46187384,39.35604531,159 WEBB RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_11_2,-74.46648835,39.49335037,172 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_11_2,-74.46586448,39.34590832,172 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_11_20,-74.48933165,39.49808034,157 WEBB RD,ABSECON CITY,17,1975,1,RES1,3001 -0101_11_20,-74.46275007,39.35467379,157 WEBB RD,ABSECON CITY,17,1975,1,AGR1,3001 -0101_11_21,-74.49803179,39.49771811,155 WEBB RD,ABSECON CITY,17,1959,1,RES1,3001 -0101_11_21,-74.462543,39.353976,155 WEBB RD,ABSECON CITY,17,1959,1,RES1,3001 -0101_11_22,-74.49009332,39.49613145,153 WEBB RD,ABSECON CITY,17,1981,1,RES1,3001 -0101_11_22,-74.45557017,39.353562,153 WEBB RD,ABSECON CITY,17,1981,1,RES1,3001 -0101_11_23,-74.50278423,39.50309582,151 WEBB RD,ABSECON CITY,17,1981,1,RES1,3001 -0101_11_23,-74.49099833,39.34048603,151 WEBB RD,ABSECON CITY,17,1981,1,RES1,3001 -0101_11_26,-74.44052357,39.51610739,801 BAYVIEW DR,ABSECON CITY,17,1920,1,RES1,3001 -0101_11_26,-74.49470379,39.33829476,801 BAYVIEW DR,ABSECON CITY,17,1920,1,RES1,3001 -0101_11_27,-74.470073,39.506907,805 BAYVIEW DR,ABSECON CITY,17,1952,1,RES1,3001 -0101_11_27,-74.495029,39.3373295,805 BAYVIEW DR,ABSECON CITY,17,1952,1,RES1,3001 -0101_11_28,-74.4974915,39.520588,244 BAYVIEW DR,ABSECON CITY,17,1965,1,RES1,3001 -0101_11_28,-74.48915868,39.33703799,244 BAYVIEW DR,ABSECON CITY,17,1965,1,RES1,3001 -0101_11_29,-74.49105599,39.51854281,246 BAYVIEW DR,ABSECON CITY,17,1962,1,COM1,3004 -0101_11_29,-74.4904705,39.3368895,246 BAYVIEW DR,ABSECON CITY,17,1962,1,RES1,3001 -0101_11_3,-74.47539316,39.49336924,168 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_11_3,-74.47056416,39.34460016,168 HOBART AVE,ABSECON CITY,17,1954,1,GOV1,3004 -0101_11_31,-74.48816351,39.51525481,147 WEBB RD,ABSECON CITY,17,1975,1,GOV1,3004 -0101_11_31,-74.4888675,39.336629,147 WEBB RD,ABSECON CITY,17,1975,1,RES1,3001 -0101_11_32,-74.50231004,39.5208942,145 WEBB RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_11_32,-74.49605733,39.33617704,145 WEBB RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_11_33,-74.49009088,39.52494125,143 WEBB RD,ABSECON CITY,17,1968,1,GOV1,3004 -0101_11_33,-74.4973441,39.33608733,143 WEBB RD,ABSECON CITY,17,1968,1,GOV1,3004 -0101_11_34,-74.50108112,39.52261515,248 BAYVIEW DR,ABSECON CITY,17,1969,1,RES1,3001 -0101_11_34,-74.49606933,39.33553204,248 BAYVIEW DR,ABSECON CITY,17,1969,1,RES1,3001 -0101_11_35,-74.467691,39.5431455,252 BAYVIEW DR,ABSECON CITY,17,1963,1,RES1,3001 -0101_11_35,-74.49259367,39.33536414,252 BAYVIEW DR,ABSECON CITY,17,1963,1,RES1,3001 -0101_11_36,-74.53188547,39.30804278,141 WEBB RD,ABSECON CITY,17,1972,1,RES1,3001 -0101_11_36,-74.49747484,39.33471599,141 WEBB RD,ABSECON CITY,17,1972,1,RES1,3001 -0101_11_37,-74.533332,39.306772,139 WEBB RD,ABSECON CITY,17,1970,1,RES1,3001 -0101_11_37,-74.49301607,39.33462482,139 WEBB RD,ABSECON CITY,17,1970,1,RES1,3001 -0101_11_38,-74.53635789,39.30566387,137 WEBB RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_11_38,-74.49112716,39.3344505,137 WEBB RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_11_39.01,-74.53616765,39.30441754,222 BAYVIEW DR,ABSECON CITY,17,2002,1,RES1,3001 -0101_11_39.01,-74.50300518,39.34184144,222 BAYVIEW DR,ABSECON CITY,17,2002,1,RES1,3001 -0101_11_4,-74.467263,39.491823,166 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_11_4,-74.46998972,39.34393078,166 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_11_40,-74.5741885,39.333463,135 WEBB RD,ABSECON CITY,17,1965,1,RES1,3001 -0101_11_40,-74.50486166,39.34082295,135 WEBB RD,ABSECON CITY,17,1965,1,RES1,3001 -0101_11_41,-74.58898486,39.31460127,202 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_11_41,-74.50525434,39.34039355,202 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_11_42,-74.5885365,39.314222,133 WEBB RD,ABSECON CITY,17,1975,1,RES1,3001 -0101_11_42,-74.5038585,39.339776,133 WEBB RD,ABSECON CITY,17,1975,1,RES1,3001 -0101_11_43,-74.59085741,39.31250566,131 WEBB RD,ABSECON CITY,17,1971,1,RES1,3001 -0101_11_43,-74.50911884,39.33867654,131 WEBB RD,ABSECON CITY,17,1971,1,RES1,3001 -0101_11_44,-74.588569,39.3120195,200 BAYVIEW DR,ABSECON CITY,17,1948,1,COM1,3004 -0101_11_44,-74.5039,39.338674,200 BAYVIEW DR,ABSECON CITY,17,1948,1,COM1,3004 -0101_11_45.01,-74.6023445,39.3078305,196 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_11_45.01,-74.4984395,39.338478,196 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_11_45.02,-74.60291102,39.31684882,107 HILLSIDE AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_11_45.02,-74.50918383,39.3367225,107 HILLSIDE AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_11_46,-74.60277874,39.31585958,105 HILLSIDE AVE,ABSECON CITY,17,2005,1,GOV1,3004 -0101_11_46,-74.506795,39.33671,105 HILLSIDE AVE,ABSECON CITY,17,2005,1,RES1,3001 -0101_11_47,-74.58439065,39.32552998,192 BAYVIEW DR,ABSECON CITY,17,1960,1,RES1,3001 -0101_11_47,-74.50907809,39.33611706,192 BAYVIEW DR,ABSECON CITY,17,1960,1,GOV1,3004 -0101_11_48,-74.59092414,39.32547783,188 BAYVIEW DR,ABSECON CITY,17,1930,1,RES1,3001 -0101_11_48,-74.501678,39.3357885,188 BAYVIEW DR,ABSECON CITY,17,1930,1,RES1,3001 -0101_11_49,-74.59059997,39.32478768,201 DAVIS AVE,ABSECON CITY,17,1980,1,GOV1,3004 -0101_11_49,-74.49838894,39.33486418,201 DAVIS AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_11_5,-74.47103416,39.49025709,160 HOBART AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_11_5,-74.48027591,39.34786421,160 HOBART AVE,ABSECON CITY,17,1962,1,COM1,3004 -0101_11_7,-74.48411824,39.49619596,154 HOBART AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_11_7,-74.48690412,39.34768203,154 HOBART AVE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_11_8,-74.5056425,39.4722715,152 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_11_8,-74.47887099,39.34761983,152 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_11_9,-74.49972987,39.47205541,142 HOBART AVE,ABSECON CITY,17,1949,1,GOV1,3004 -0101_11_9,-74.48629798,39.34757983,142 HOBART AVE,ABSECON CITY,17,1949,1,RES1,3001 -0101_110_1,-74.47818,39.3395875,956 SHELBURNE AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_110_1,-74.57797471,39.53008553,956 SHELBURNE AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_110_10,-74.48548832,39.33566217,923 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_10,-74.62501659,39.50625133,923 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_11,-74.48584534,39.33513899,919 TRAYMORE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_110_11,-74.65084136,39.51310455,919 TRAYMORE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_110_13,-74.46648502,39.34697217,911 TRAYMORE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_110_13,-74.656418,39.5178305,911 TRAYMORE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_110_14,-74.4672795,39.3465045,905 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_14,-74.62848446,39.52828382,905 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_15,-74.4679295,39.34607,901 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_15,-74.63570445,39.52921316,901 TRAYMORE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_2,-74.48405688,39.33888484,920 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_2,-74.60959584,39.5284631,920 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_3,-74.477321,39.338467,914 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_3,-74.54451465,39.55063793,914 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_110_5,-74.48094373,39.33784414,908 SHELBURNE AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_110_5,-74.5554503,39.5475353,908 SHELBURNE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_110_6,-74.48111267,39.33754297,900 SHELBURNE AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_110_6,-74.58129333,39.53842797,900 SHELBURNE AVE,ABSECON CITY,17,1953,1,GOV1,3004 -0101_110_7,-74.48301548,39.33629383,404 HADDON AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_110_7,-74.619484,39.5095745,404 HADDON AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_111_1,-74.46754283,39.34558107,819 TRAYMORE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_111_1,-74.63284066,39.52841019,819 TRAYMORE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_111_3,-74.472419,39.343714,403 HIGHLAND BLVD,ABSECON CITY,17,1960,1,RES1,3001 -0101_111_3,-74.64072385,39.52776753,403 HIGHLAND BLVD,ABSECON CITY,17,1960,1,RES1,3001 -0101_111_4,-74.483142,39.3502745,820 SHELBURNE AVE,ABSECON CITY,17,1959,1,RES3A,3001 -0101_111_4,-74.640954,39.526761,820 SHELBURNE AVE,ABSECON CITY,17,1959,1,RES3A,3001 -0101_111_5,-74.4861905,39.347876,810 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_111_5,-74.63542833,39.52297249,810 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_111_6,-74.484134,39.3474695,800 SHELBURNE AVE,ABSECON CITY,17,1985,1,COM4,3004 -0101_111_6,-74.64062598,39.53669583,800 SHELBURNE AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_112_1,-74.384672,39.392656,817 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES3B,3001 -0101_112_1,-74.633869,39.6266565,817 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_112_10,-74.391063,39.3907675,808 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3002 -0101_112_10,-74.68930603,39.63626953,808 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_112_11,-74.38990998,39.38905484,804 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_112_11,-74.702929,39.639203,804 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_112_12,-74.395081,39.388068,800 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_112_12,-74.7915035,39.5184785,800 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_112_2,-74.38480683,39.39169099,815 SHELBURNE AVE,ABSECON CITY,17,1961,1,GOV1,3004 -0101_112_2,-74.6369505,39.6229025,815 SHELBURNE AVE,ABSECON CITY,17,1961,1,GOV1,3004 -0101_112_3,-74.38654097,39.39102984,811 SHELBURNE AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_112_3,-74.64835779,39.62604443,811 SHELBURNE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_112_4,-74.38878073,39.39297813,805 SHELBURNE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_112_4,-74.64293956,39.62517381,805 SHELBURNE AVE,ABSECON CITY,17,1958,1,GOV1,3004 -0101_112_5,-74.38992884,39.39296463,303 HIGHLAND BLVD,ABSECON CITY,17,1967,1,RES1,3004 -0101_112_5,-74.66087802,39.63718241,303 HIGHLAND BLVD,ABSECON CITY,17,1967,1,RES1,3001 -0101_112_7,-74.391114,39.391747,848 MARLBOROUGH AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_112_7,-74.664926,39.6192745,848 MARLBOROUGH AVE,ABSECON CITY,17,1928,1,GOV1,3004 -0101_112_8,-74.39088943,39.39155785,844 MARLBOROUGH AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_112_8,-74.6639333,39.63322903,844 MARLBOROUGH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_112_9,-74.39088141,39.3911606,816 MARLBOROUGH AVE,ABSECON CITY,17,1959,1,RES1,3004 -0101_112_9,-74.69304279,39.63875391,816 MARLBOROUGH AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_113_10,-74.4879745,39.348584,960 MARLBOROUGH AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_113_10,-74.6885245,39.5855115,960 MARLBOROUGH AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_113_12,-74.50984793,39.33790771,952 MARLBOROUGH AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_113_12,-74.70014317,39.58740553,952 MARLBOROUGH AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_113_13,-74.51015917,39.33784647,948 MARLBOROUGH AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_113_13,-74.70409873,39.5931904,948 MARLBOROUGH AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_113_14,-74.511946,39.337088,940 MARLBOROUGH AVE,ABSECON CITY,17,1926,1,GOV1,3004 -0101_113_14,-74.6337001,39.61326284,940 MARLBOROUGH AVE,ABSECON CITY,17,1926,1,GOV1,3004 -0101_113_15,-74.37372666,39.40076651,912 MARLBOROUGH AVE,ABSECON CITY,17,1983,1,RES1,3001 -0101_113_15,-74.622004,39.62243,912 MARLBOROUGH AVE,ABSECON CITY,17,1983,1,GOV1,3004 -0101_113_17,-74.37562331,39.39968233,908 MARLBOROUGH AVE,ABSECON CITY,17,1990,1,RES1,3001 -0101_113_17,-74.62756022,39.61760632,908 MARLBOROUGH AVE,ABSECON CITY,17,1990,1,RES1,3001 -0101_113_18,-74.37531777,39.39881774,904 MARLBOROUGH AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_113_18,-74.63790178,39.622404,904 MARLBOROUGH AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_113_19,-74.38105795,39.39335234,902 MARLBOROUGH AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_113_19,-74.624271,39.623704,902 MARLBOROUGH AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_113_2,-74.49671541,39.33471333,929 SHELBURNE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_113_2,-74.64653171,39.54845453,929 SHELBURNE AVE,ABSECON CITY,17,1961,1,GOV1,3004 -0101_113_3,-74.49274364,39.33466053,925 SHELBURNE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_113_3,-74.64812732,39.55786289,925 SHELBURNE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_113_4,-74.50749747,39.34076249,921 SHELBURNE AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_113_4,-74.65882448,39.55726718,921 SHELBURNE AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_113_5,-74.50643081,39.33603003,917 SHELBURNE AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_113_5,-74.672474,39.555525,917 SHELBURNE AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_113_7,-74.50439683,39.33583154,911 SHELBURNE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_113_7,-74.68074911,39.55712662,911 SHELBURNE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_113_8,-74.50078359,39.33505616,905 SHELBURNE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_113_8,-74.700721,39.569445,905 SHELBURNE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_113_9,-74.5004664,39.33442033,901 SHELBURNE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_113_9,-74.64949403,39.59613484,901 SHELBURNE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_114_1,-74.45455677,39.35272033,1019 SHELBURNE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_114_1,-74.64508079,39.53630872,1019 SHELBURNE AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_114_10,-74.4958065,39.3350045,1008 MARLBOROUGH AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_114_10,-74.6215805,39.552389,1008 MARLBOROUGH AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_114_2,-74.48165217,39.35291746,1017 SHELBURNE AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_114_2,-74.6452154,39.53384063,1017 SHELBURNE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_114_3,-74.48092837,39.35263668,1013 SHELBURNE AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_114_3,-74.64498855,39.52955384,1013 SHELBURNE AVE,ABSECON CITY,17,1970,1,REL1,3004 -0101_114_4.01,-74.4677765,39.3599265,1001 SHELBURNE AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_114_4.01,-74.68106205,39.51303517,1001 SHELBURNE AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_114_4.02,-74.497627,39.3367045,1003 SHELBURNE AVE,ABSECON CITY,17,1989,1,GOV1,3004 -0101_114_4.02,-74.69089435,39.5080778,1003 SHELBURNE AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_114_6,-74.490431,39.3357525,1026 MARLBOROUGH AVE,ABSECON CITY,17,1957,1,GOV1,3004 -0101_114_6,-74.69466214,39.50593437,1026 MARLBOROUGH AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_114_7,-74.49417917,39.33575298,1016 MARLBOROUGH AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_114_7,-74.66608966,39.52272848,1016 MARLBOROUGH AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_115_1,-74.4849545,39.3441995,1111 SHELBURNE AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_115_1,-74.63911594,39.53142416,1111 SHELBURNE AVE,ABSECON CITY,17,1967,1,GOV1,3004 -0101_115_2,-74.452587,39.3568775,1109 SHELBURNE,ABSECON CITY,17,1967,1,RES1,3001 -0101_115_2,-74.63737612,39.53072045,1109 SHELBURNE,ABSECON CITY,17,1967,1,RES3A,3004 -0101_115_3,-74.46479065,39.35799657,1103 SHELBURNE AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_115_3,-74.65051433,39.52859751,1103 SHELBURNE AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_115_4,-74.46465367,39.3578935,1104 MARLBOROUGH AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_115_4,-74.64400883,39.52780145,1104 MARLBOROUGH AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_115_5,-74.46275867,39.3577661,1102 MARLBOROUGH AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_115_5,-74.64356608,39.52745135,1102 MARLBOROUGH AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_115_6.01,-74.46334,39.356943,1100 MARLBOROUGH AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_115_6.01,-74.64271989,39.52571536,1100 MARLBOROUGH AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_115_6.02,-74.459348,39.354548,1101 SHELBURNE AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_115_6.02,-74.651385,39.524332,1101 SHELBURNE AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_115_6.03,-74.459964,39.3542685,1100-A MARLBOROUGH AVE,ABSECON CITY,17,1982,1,GOV1,3004 -0101_115_6.03,-74.65063117,39.52293402,1100-A MARLBOROUGH AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_117_1,-74.3960295,39.3862425,1105 MARLBOROUGH AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_117_1,-74.78448473,39.52775344,1105 MARLBOROUGH AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_117_2,-74.386847,39.395154,1103 MARLBOROUGH AVE,ABSECON CITY,17,1969,1,GOV1,3004 -0101_117_2,-74.73598531,39.55088958,1103 MARLBOROUGH AVE,ABSECON CITY,17,1969,1,GOV1,3004 -0101_117_3,-74.38713436,39.39468707,203 MORTON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_117_3,-74.80647417,39.52431481,203 MORTON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_117_4,-74.380446,39.3938785,1106 SEASIDE AVE,ABSECON CITY,17,1968,1,GOV1,3004 -0101_117_4,-74.82101372,39.52566447,1106 SEASIDE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_117_5,-74.39275399,39.39500533,1104 SEASIDE AVE,ABSECON CITY,17,1973,1,GOV1,3004 -0101_117_5,-74.8369205,39.5308295,1104 SEASIDE AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_117_6,-74.403018,39.384652,201 MORTON AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_117_6,-74.85962758,39.53532429,201 MORTON AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_118_1,-74.4022025,39.3846045,1025 MARLBOROUGH AVE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_118_1,-74.82434714,39.5399517,1025 MARLBOROUGH AVE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_118_2,-74.404331,39.384065,1021 MARLBOROUGH AVE,ABSECON CITY,17,1967,1,COM1,3004 -0101_118_2,-74.8495135,39.552794,1021 MARLBOROUGH AVE,ABSECON CITY,17,1967,1,GOV1,3004 -0101_118_4,-74.40672128,39.37734426,1007 MARLBOROUGH AVE,ABSECON CITY,17,1972,1,COM3,3004 -0101_118_4,-74.8791107,39.54254393,1007 MARLBOROUGH AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_118_5,-74.43043635,39.37384848,1001 MARLBOROUGH AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_118_5,-74.882555,39.540953,1001 MARLBOROUGH AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_118_6,-74.428132,39.373578,1034 SEASIDE AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_118_6,-74.84604157,39.55574715,1034 SEASIDE AVE,ABSECON CITY,17,1959,1,GOV1,3004 -0101_118_7,-74.430684,39.3729605,1032 SEASIDE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_118_7,-74.8566735,39.5588045,1032 SEASIDE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_118_8,-74.42413568,39.37017566,1020 SEASIDE AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_118_8,-74.8605805,39.5663965,1020 SEASIDE AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_118_9.01,-74.43898997,39.37173673,1008 SEASIDE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_118_9.01,-74.85656417,39.56625451,1008 SEASIDE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_118_9.03,-74.4387165,39.3702175,1004 SEASIDE AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_118_9.03,-74.86030816,39.56470754,1004 SEASIDE AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_119_10,-74.40156231,39.38757148,956 SEASIDE AVE,ABSECON CITY,17,1929,1,GOV1,3004 -0101_119_10,-74.75053832,39.63539655,956 SEASIDE AVE,ABSECON CITY,17,1929,1,RES1,3001 -0101_119_11,-74.3632835,39.4106415,952 SEASIDE AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_119_11,-74.76315734,39.61030645,952 SEASIDE AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_119_12,-74.36356264,39.40996314,922 SEASIDE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_119_12,-74.77040656,39.60788413,922 SEASIDE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_119_13,-74.36472258,39.40746838,918 SEASIDE AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_119_13,-74.77588271,39.60714261,918 SEASIDE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_119_15,-74.36465815,39.4068239,910 SEASIDE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_119_15,-74.78616832,39.6097133,910 SEASIDE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_119_16,-74.3717445,39.410528,900 SEASIDE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_119_16,-74.78413858,39.60840728,900 SEASIDE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_119_2,-74.43482354,39.36945518,927 MARLBOROUGH AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_119_2,-74.87065484,39.56592717,927 MARLBOROUGH AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_119_3,-74.43893714,39.36907602,915 MARLBOROUGH AVE,ABSECON CITY,17,1983,1,RES1,3001 -0101_119_3,-74.719079,39.578148,915 MARLBOROUGH AVE,ABSECON CITY,17,1983,1,GOV1,3004 -0101_119_4,-74.43872779,39.3690217,913 MARLBOROUGH AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_119_4,-74.728566,39.5901685,913 MARLBOROUGH AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_119_5,-74.44128956,39.36875338,911 MARLBOROUGH AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_119_5,-74.727024,39.5900275,911 MARLBOROUGH AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_119_7,-74.43953901,39.36829684,909 MARLBOROUGH AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_119_7,-74.7763615,39.597921,909 MARLBOROUGH AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_119_8,-74.40511149,39.3900622,903 MARLBOROUGH AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_119_8,-74.707145,39.6339605,903 MARLBOROUGH AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_119_9,-74.40193215,39.38837925,901 MARLBOROUGH AVE,ABSECON CITY,17,1991,1,RES1,3001 -0101_119_9,-74.74797489,39.63580717,901 MARLBOROUGH AVE,ABSECON CITY,17,1991,1,RES1,3001 -0101_12_1,-74.5897255,39.3238015,140 BAYVIEW DR,ABSECON CITY,17,1950,1,GOV1,3004 -0101_12_1,-74.49953258,39.33455316,140 BAYVIEW DR,ABSECON CITY,17,1950,1,GOV1,3004 -0101_12_10,-74.59521164,39.33051274,220 DAVIS AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_10,-74.37708808,39.40129105,220 DAVIS AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_2,-74.59501734,39.31810267,144 BAYVIEW DR,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_2,-74.49974154,39.33444367,144 BAYVIEW DR,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_3,-74.59259406,39.31756932,HAMMELL LANE,ABSECON CITY,16,1983,1,RES1,3001 -0101_12_3,-74.4892005,39.34948,HAMMELL LANE,ABSECON CITY,16,1983,1,RES1,3001 -0101_12_4,-74.58220492,39.33292719,150 BAYVIEW DR,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_4,-74.51040716,39.34013797,150 BAYVIEW DR,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_5,-74.583336,39.330542,158 BAYVIEW DR,ABSECON CITY,17,1930,1,RES1,3001 -0101_12_5,-74.50996417,39.33893,158 BAYVIEW DR,ABSECON CITY,17,1930,1,RES1,3002 -0101_12_6,-74.590814,39.333761,160 BAYVIEW DR,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_6,-74.37046839,39.40219034,160 BAYVIEW DR,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_8,-74.3603805,39.41389,1 HAMMELL LANE,ABSECON CITY,17,1956,1,RES1,3001 -0101_12_8,-74.904435,39.504767,1 HAMMELL LANE,ABSECON CITY,17,1956,1,RES1,3001 -0101_120_1,-74.37395112,39.40989651,827 MARLBOROUGH AVE,ABSECON CITY,17,1969,1,GOV1,3004 -0101_120_1,-74.783203,39.620725,827 MARLBOROUGH AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_120_10,-74.367814,39.403463,810 SEASIDE AVE,ABSECON CITY,17,1968,1,COM1,3004 -0101_120_10,-74.777725,39.625156,810 SEASIDE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_120_11,-74.36739233,39.403026,802 SEASIDE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_120_11,-74.79359336,39.6357529,802 SEASIDE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_120_12,-74.3707795,39.402517,800 SEASIDE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_120_12,-74.78394228,39.63429185,800 SEASIDE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_120_2,-74.3724715,39.408039,825 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_120_2,-74.76594883,39.624083,825 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_120_3,-74.3725405,39.40751717,817 MARLBOROUGH AVE,ABSECON CITY,16,1965,1,RES1,3001 -0101_120_3,-74.7607365,39.639338,817 MARLBOROUGH AVE,ABSECON CITY,16,1965,1,GOV1,3004 -0101_120_4,-74.37342491,39.40726481,805 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_120_4,-74.76075149,39.63865883,805 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_120_5,-74.36780574,39.40666982,803 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_120_5,-74.77050972,39.63774455,803 MARLBOROUGH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_120_6,-74.3683375,39.4066,801 MARLBOROUGH AVE,ABSECON CITY,16,2010,1,RES1,3001 -0101_120_6,-74.7644396,39.63670934,801 MARLBOROUGH AVE,ABSECON CITY,16,2010,1,RES1,3001 -0101_120_7,-74.36955378,39.40647758,200 ST CHARLES,ABSECON CITY,17,1960,1,RES1,3001 -0101_120_7,-74.77131409,39.63286451,200 ST CHARLES,ABSECON CITY,17,1960,1,RES1,3001 -0101_120_8,-74.37194974,39.40517093,818 SEASIDE AVE,ABSECON CITY,17,1963,1,RES1,3002 -0101_120_8,-74.7804688,39.62675802,818 SEASIDE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_120_9,-74.37440532,39.40450117,814 SEASIDE AVE,ABSECON CITY,17,1965,1,RES1,3004 -0101_120_9,-74.77681217,39.62620792,814 SEASIDE AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_121_1,-74.374379,39.4119985,819 SEASIDE AVE,ABSECON CITY,17,1974,1,RES1,3004 -0101_121_1,-74.79494752,39.63437264,819 SEASIDE AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_121_2,-74.3685985,39.411634,817 SEASIDE AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_121_2,-74.796903,39.6338645,817 SEASIDE AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_121_3,-74.37467381,39.41134596,815 SEASIDE AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_121_3,-74.8000275,39.633496,815 SEASIDE AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_121_4,-74.37077293,39.41079674,811 SEASIDE AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_121_4,-74.8005775,39.633355,811 SEASIDE AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_121_5,-74.362807,39.419316,805 SEASIDE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_121_5,-74.79861779,39.63151548,805 SEASIDE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_121_6,-74.45002473,39.37539592,801 SEASIDE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_121_6,-74.8070745,39.6348365,801 SEASIDE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_122_1,-74.375605,39.4174385,933 SEASIDE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_122_1,-74.8812865,39.601513,933 SEASIDE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_122_2,-74.37297423,39.41443591,927 SEASIDE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_122_2,-74.8011745,39.6389005,927 SEASIDE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_122_3,-74.37396631,39.41433098,923 SEASIDE AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_122_3,-74.79554817,39.63802398,923 SEASIDE AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_122_4,-74.37044955,39.41418519,919 SEASIDE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_122_4,-74.80021004,39.63562871,919 SEASIDE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_122_7,-74.37453822,39.41331794,907 SEASIDE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_122_7,-74.80548095,39.63447696,907 SEASIDE AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_122_8,-74.36838036,39.41273321,901 SEASIDE AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_122_8,-74.80160196,39.63450517,901 SEASIDE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_123_1,-74.35615394,39.41337946,1033 SEASIDE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_123_1,-74.879402,39.5966045,1033 SEASIDE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_123_2,-74.36397,39.413314,1023 SEASIDE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_123_2,-74.88076776,39.5934523,1023 SEASIDE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_123_3,-74.36465452,39.41184336,1017 SEASIDE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_123_3,-74.88001376,39.59105705,1017 SEASIDE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_123_4,-74.3621525,39.4123395,1015 SEASIDE AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_123_4,-74.8744245,39.588946,1015 SEASIDE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_123_5,-74.35967914,39.41127757,1005 SEASIDE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_123_5,-74.87914283,39.60390633,1005 SEASIDE AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_124_1,-74.3637205,39.415607,1105 SEASIDE AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_124_1,-74.793142,39.633953,1105 SEASIDE AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_124_2,-74.3617417,39.4135487,1103 SEASIDE AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_124_2,-74.79638603,39.60022816,1103 SEASIDE AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_124_3,-74.35686884,39.41351497,1101 SEASIDE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_124_3,-74.8385427,39.59646818,1101 SEASIDE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_124_4,-74.35884984,39.41459947,40 RITZ DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_124_4,-74.7880735,39.6319525,40 RITZ DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_129_2,-74.4510415,39.374592,809 NEW JERSEY AVE,ABSECON CITY,17,1870,1,RES1,3001 -0101_129_2,-74.80596913,39.63330496,809 NEW JERSEY AVE,ABSECON CITY,17,1870,1,RES1,3001 -0101_129_3,-74.4464385,39.3740595,805 NEW JERSEY AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_129_3,-74.81563389,39.63264252,805 NEW JERSEY AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_129_4,-74.6224475,39.423895,801 NEW JERSEY AVE,ABSECON CITY,17,1984,1,COM7,3004 -0101_129_4,-74.48888267,39.49521059,801 NEW JERSEY AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_13_1,-74.5864955,39.328032,187 BAYVIEW DR,ABSECON CITY,17,1945,1,RES1,3001 -0101_13_1,-74.37528066,39.4000012,187 BAYVIEW DR,ABSECON CITY,17,1945,1,RES1,3001 -0101_13_10,-74.60306396,39.31849918,233 BAYVIEW DRIVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_10,-74.38975486,39.39161305,233 BAYVIEW DRIVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_11,-74.600711,39.3177415,133 DAVIS AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_13_11,-74.3964915,39.38941492,133 DAVIS AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_13_12,-74.50033094,39.50195672,235 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_12,-74.4565725,39.3483645,235 BAYVIEW DR,ABSECON CITY,17,1958,1,GOV1,3004 -0101_13_13,-74.61156068,39.32218634,129 DAVIS AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_13_13,-74.3897113,39.38939187,129 DAVIS AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_13_15,-74.6144935,39.32040517,125 DAVIS AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_13_15,-74.39705284,39.38911314,125 DAVIS AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_13_16,-74.61725033,39.32026945,245 BAYVIEW DR,ABSECON CITY,17,1955,1,RES1,3001 -0101_13_16,-74.38974821,39.38863731,245 BAYVIEW DR,ABSECON CITY,17,1955,1,RES1,3001 -0101_13_17,-74.6038445,39.3323595,123 DAVIS AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_13_17,-74.393782,39.388544,123 DAVIS AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_13_18,-74.5037975,39.5023705,253 BAYVIEW DR,ABSECON CITY,17,1959,1,COM1,3004 -0101_13_18,-74.456856,39.349012,253 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_13_19,-74.6004995,39.329729,119 DAVIS AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_19,-74.39649167,39.38615025,119 DAVIS AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_2,-74.60423666,39.32457555,191 BAYVIEW DR,ABSECON CITY,17,1965,1,RES1,3001 -0101_13_2,-74.37685084,39.39735608,191 BAYVIEW DR,ABSECON CITY,17,1965,1,RES1,3001 -0101_13_21,-74.599204,39.329001,257 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_21,-74.3788055,39.397718,257 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_22,-74.60534692,39.32734699,800 BAYVIEW DR,ABSECON CITY,17,1928,1,GOV1,3004 -0101_13_22,-74.37756389,39.39760136,800 BAYVIEW DR,ABSECON CITY,17,1928,1,RES1,3001 -0101_13_23,-74.60413618,39.32724548,100 HOBART AVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_13_23,-74.37818385,39.39754298,100 HOBART AVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_13_4,-74.6063905,39.323791,193 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_4,-74.38491717,39.39251899,193 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_5,-74.60562908,39.32207674,137 DAVIS AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_13_5,-74.38820783,39.391456,137 DAVIS AVE,ABSECON CITY,17,1952,1,COM1,3004 -0101_13_6,-74.60582488,39.32000184,195 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_13_6,-74.3940265,39.3918225,195 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_131_1.02,-74.51780496,39.41173511,711 IROQUOIS AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_131_1.02,-74.97189719,39.51738105,711 IROQUOIS AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_131_1.03,-74.5177575,39.4108995,709 IROQUOIS AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_131_1.03,-74.68883874,39.65521589,709 IROQUOIS AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_131_1.05,-74.5014965,39.4245275,817 NEW YORK AVE,ABSECON CITY,17,1998,1,RES1,3001 -0101_131_1.05,-74.6861185,39.6536645,817 NEW YORK AVE,ABSECON CITY,17,1998,1,RES1,3001 -0101_131_1.07,-74.50600857,39.42404035,821 NEW YORK AVE,ABSECON CITY,17,2001,1,RES1,3001 -0101_131_1.07,-74.72396571,39.64974296,821 NEW YORK AVE,ABSECON CITY,17,2001,1,RES1,3001 -0101_131_4.12,-74.49982132,39.42388651,800 KATIE COURT,ABSECON CITY,17,2003,1,RES1,3001 -0101_131_4.12,-74.7409035,39.6407205,800 KATIE COURT,ABSECON CITY,17,2003,1,RES1,3001 -0101_132_1,-74.49291566,39.43594523,807 NEW YORK AVE,ABSECON CITY,17,1991,1,RES1,3001 -0101_132_1,-74.74868568,39.65873855,807 NEW YORK AVE,ABSECON CITY,17,1991,1,RES1,3001 -0101_132_11,-74.5018405,39.430979,802 CHELSEA RD,ABSECON CITY,17,1976,1,RES1,3001 -0101_132_11,-74.7712245,39.658958,802 CHELSEA RD,ABSECON CITY,17,1976,1,GOV1,3004 -0101_132_14,-74.50546366,39.43007503,701 AMBASSADOR DR,ABSECON CITY,17,1980,1,RES1,3001 -0101_132_14,-74.779698,39.671109,701 AMBASSADOR DR,ABSECON CITY,17,1980,1,RES1,3001 -0101_132_16,-74.50232783,39.42988846,703 AMBASSADOR DRIVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_132_16,-74.788222,39.666667,703 AMBASSADOR DRIVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_132_18,-74.52716765,39.43027235,707 AMBASSADOR DRIVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_132_18,-74.7325275,39.6885425,707 AMBASSADOR DRIVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_132_19,-74.435927,39.4920645,709 AMBASSADOR DRIVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_132_19,-74.7930465,39.6754855,709 AMBASSADOR DRIVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_132_2,-74.4919205,39.43572,710 IROQUOIS AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_132_2,-74.7669505,39.6461975,710 IROQUOIS AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_132_20,-74.48240104,39.43791269,805 NEW YORK AVE,ABSECON CITY,17,1990,1,RES1,3001 -0101_132_20,-74.80060533,39.64432875,805 NEW YORK AVE,ABSECON CITY,17,1990,1,GOV1,3004 -0101_132_5,-74.4910909,39.43520675,708 IROQUOIS AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_132_5,-74.79202761,39.64786468,708 IROQUOIS AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_132_6,-74.50363721,39.43428219,706 IROQUOIS AVE,ABSECON CITY,17,1982,1,GOV1,3004 -0101_132_6,-74.79009355,39.64384237,706 IROQUOIS AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_132_9,-74.50513051,39.43187717,700 IROQUOIS AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_132_9,-74.78047351,39.6534349,700 IROQUOIS AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_133_1,-74.45400606,39.46850319,803 NEW YORK AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_133_1,-74.80046961,39.64386388,803 NEW YORK AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_133_10,-74.48696053,39.46896243,705 ELBERON AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_133_10,-74.82540898,39.64781427,705 ELBERON AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_133_11,-74.48683248,39.46550666,707 ELBERON AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_133_11,-74.8202505,39.647105,707 ELBERON AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_133_12,-74.48888641,39.43905983,709 ELBERON AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_133_12,-74.82015549,39.65415993,709 ELBERON AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_133_13,-74.50788808,39.44437526,801 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_133_13,-74.80079067,39.65881751,801 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_133_2,-74.4628865,39.4689125,708 AMBASSADOR DR,ABSECON CITY,17,1930,1,RES1,3001 -0101_133_2,-74.80294967,39.64379701,708 AMBASSADOR DR,ABSECON CITY,17,1930,1,RES1,3001 -0101_133_4,-74.45620882,39.46292549,706 AMBASSADOR DRIVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_133_4,-74.80341934,39.64255498,706 AMBASSADOR DRIVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_133_6,-74.45988025,39.46178972,704 AMBASSADOR DRIVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_133_6,-74.80314417,39.64222749,704 AMBASSADOR DRIVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_133_7,-74.46633117,39.45686982,702 AMBASSADOR DRIVE,ABSECON CITY,17,1969,1,IND2,3002 -0101_133_7,-74.8122595,39.641978,702 AMBASSADOR DRIVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_133_8,-74.48046807,39.45548034,701 ELBERON AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_133_8,-74.808792,39.6496515,701 ELBERON AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_133_9,-74.48627998,39.46992509,703 ELBERON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_133_9,-74.80685213,39.64862264,703 ELBERON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_134_1,-74.5075255,39.4383435,712 ELBERON AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_134_1,-74.80182981,39.665072,712 ELBERON AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_134_10,-74.51889752,39.44598666,210 WOODCREST AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_134_10,-74.50512771,39.32493766,210 WOODCREST AVE,ABSECON CITY,17,1968,1,GOV1,3004 -0101_134_11,-74.52529478,39.45107913,208 WOODCREST COURT,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_11,-74.50422084,39.3249281,208 WOODCREST COURT,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_12,-74.4958235,39.4688035,709 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_12,-74.50507303,39.33245917,709 NEW YORK AVE,ABSECON CITY,17,1966,1,GOV1,3004 -0101_134_13,-74.50659166,39.45984503,707 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_134_13,-74.49803987,39.3282258,707 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_134_14,-74.49115717,39.45330309,705 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_134_14,-74.49533239,39.32940783,705 NEW YORK AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_134_15,-74.49820881,39.45334055,703 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_15,-74.49668592,39.33037837,703 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_16,-74.49615765,39.45883333,204 WOODCREST AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_134_16,-74.4892815,39.3318465,204 WOODCREST AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_134_17,-74.490893,39.4567115,202 WOODCREST AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_17,-74.49794487,39.33078189,202 WOODCREST AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_18,-74.5277689,39.44783066,206 WOODCREST COURT,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_18,-74.50906497,39.32433055,206 WOODCREST COURT,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_2,-74.48908521,39.44743562,710 ELBERON AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_134_2,-74.41408366,39.36558636,710 ELBERON AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_134_3,-74.50655147,39.44858966,708 ELBERON AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_134_3,-74.42733879,39.35893066,708 ELBERON AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_134_4,-74.50139694,39.44634066,706 ELBERON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_134_4,-74.522361,39.3172865,706 ELBERON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_134_5,-74.5111775,39.442384,704 ELBERON AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_134_5,-74.52602243,39.31570565,704 ELBERON AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_134_6,-74.5118405,39.440878,708 CHELSEA ROAD,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_6,-74.52677115,39.31327095,708 CHELSEA ROAD,ABSECON CITY,17,1966,1,RES1,3001 -0101_134_7,-74.51494414,39.44058295,706 CHELSEA RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_134_7,-74.5261905,39.3119745,706 CHELSEA RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_134_8,-74.51046823,39.43701364,704 CHELSEA RD,ABSECON CITY,17,1967,1,RES1,3001 -0101_134_8,-74.52607632,39.31149323,704 CHELSEA RD,ABSECON CITY,17,1967,1,RES1,3001 -0101_134_9,-74.52210422,39.44072355,700 CHELSEA ROAD,ABSECON CITY,17,1970,1,GOV1,3004 -0101_134_9,-74.527178,39.311469,700 CHELSEA ROAD,ABSECON CITY,17,1970,1,RES1,3001 -0101_135_1,-74.50163152,39.46864164,203 WOODCREST AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_1,-74.506267,39.3314885,203 WOODCREST AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_10,-74.444985,39.4855285,611 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_10,-74.50190674,39.32949667,611 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_11,-74.46605589,39.47720272,612 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_11,-74.502021,39.32929,612 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_12,-74.48354018,39.47716851,609 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_12,-74.49843603,39.32897066,609 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_13,-74.47484001,39.48500825,610 CHELSEA RD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_13,-74.50288061,39.32879615,610 CHELSEA RD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_14,-74.476118,39.4849805,607 NEW YORK AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_135_14,-74.5027375,39.32768,607 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_15,-74.47445208,39.48358908,605 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_135_15,-74.50154166,39.32667444,605 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_135_16,-74.484412,39.47906533,603 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_16,-74.50433483,39.32640785,603 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_17,-74.48691196,39.47885678,302 MILL RD,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_17,-74.51122852,39.32485425,302 MILL RD,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_18,-74.45421014,39.49322394,602 CHELSEA RD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_18,-74.520112,39.3221525,602 CHELSEA RD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_19,-74.45199851,39.49098925,604 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_19,-74.51136887,39.32190946,604 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_2,-74.5041815,39.463762,201 WOODCREST AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_2,-74.5043215,39.331175,201 WOODCREST AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_20,-74.46399518,39.49531158,606 CHELSEA ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_135_20,-74.52342133,39.32115954,606 CHELSEA ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_135_21,-74.45870924,39.4945945,608 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_21,-74.521543,39.321022,608 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_3,-74.51375786,39.46032556,205 WOODCREST AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_135_3,-74.500567,39.3308005,205 WOODCREST AVE,ABSECON CITY,17,1962,1,RES3A,3001 -0101_135_4,-74.51163,39.45334211,617 NEW YORK AVE,ABSECON CITY,17,1964,1,RES3A,3001 -0101_135_4,-74.503406,39.3307505,617 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_5,-74.5279625,39.459786,207 WOODCREST AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_5,-74.5068875,39.3306795,207 WOODCREST AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_6,-74.52750552,39.45600531,615 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_6,-74.50126743,39.33053584,615 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_7,-74.52641254,39.45354582,209 WOODCREST AVE,ABSECON CITY,17,1964,1,RES3A,3001 -0101_135_7,-74.50444949,39.33027852,209 WOODCREST AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_8,-74.52260453,39.46808763,613 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_8,-74.50131426,39.33024317,613 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_135_9,-74.527137,39.4663015,614 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_135_9,-74.50130689,39.32973095,614 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_136_1,-74.46449421,39.49385594,117 WOODCREST AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_136_1,-74.52338647,39.31999633,117 WOODCREST AVE,ABSECON CITY,17,1962,1,RES1,3004 -0101_136_10,-74.4683525,39.4884815,617 YARMOUTH AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_136_10,-74.5138545,39.3258275,617 YARMOUTH AVE,ABSECON CITY,17,1959,1,GOV1,3004 -0101_136_11,-74.47238644,39.48831466,610 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_136_11,-74.456831,39.349906,610 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_136_12,-74.47104214,39.48743513,615 YARMOUTH AVE,ABSECON CITY,17,1958,1,GOV1,3004 -0101_136_12,-74.46412148,39.34898116,615 YARMOUTH AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_136_13,-74.48603137,39.49464572,608 NEW YORK AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_136_13,-74.46530597,39.34890432,608 NEW YORK AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_136_14,-74.46629652,39.50338166,613 YARMOUTH AVE,ABSECON CITY,17,1960,1,RES2,3005 -0101_136_14,-74.459005,39.348887,613 YARMOUTH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_136_15,-74.48721167,39.49851055,606 NEW YORK AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_136_15,-74.4627576,39.34694217,606 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_136_16,-74.49121291,39.47182559,607 YARMOUTH AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_136_16,-74.46817317,39.34274445,607 YARMOUTH AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_136_17,-74.50288138,39.47285028,604 NEW YORK AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_136_17,-74.471763,39.3422795,604 NEW YORK AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_136_18,-74.5042815,39.479947,218 MILL RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_136_18,-74.47411573,39.34158009,218 MILL RD,ABSECON CITY,17,1955,1,GOV1,3004 -0101_136_19,-74.52590806,39.47252734,220 MILL RD,ABSECON CITY,17,1964,1,RES1,3001 -0101_136_19,-74.4736675,39.339931,220 MILL RD,ABSECON CITY,17,1964,1,IND2,3002 -0101_136_2,-74.45479571,39.49314419,625 YARMOUTH AVE,ABSECON CITY,17,1962,1,RES3A,3001 -0101_136_2,-74.52305483,39.31834203,625 YARMOUTH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_136_3,-74.45637832,39.49003975,618 NEW YORK AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_136_3,-74.52581376,39.31747777,618 NEW YORK AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_136_4,-74.45390019,39.50218191,623 YARMOUTH AVE,ABSECON CITY,17,1964,2,RES1,3001 -0101_136_4,-74.509952,39.331296,623 YARMOUTH AVE,ABSECON CITY,17,1964,2,RES1,3001 -0101_136_5,-74.4506595,39.500418,616 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_136_5,-74.51094667,39.33003198,616 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_136_6,-74.45006764,39.49876622,621 YARMOUTH AVE,ABSECON CITY,17,1958,1,EDU1,3004 -0101_136_6,-74.5147825,39.329562,621 YARMOUTH AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_136_7,-74.46708834,39.49306073,614 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_136_7,-74.51605868,39.3281872,614 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_136_8,-74.46744617,39.49013624,619 YARMOUTH AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_136_8,-74.5114705,39.3280485,619 YARMOUTH AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_136_9,-74.47440276,39.48843356,612 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_136_9,-74.516249,39.327664,612 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_137_1,-74.493874,39.4939375,622 YARMOUTH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_137_1,-74.48112832,39.34071654,622 YARMOUTH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_137_10,-74.5091915,39.512465,613 SEMINOLE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_10,-74.4672025,39.3433775,613 SEMINOLE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_11,-74.50902667,39.50935099,612 YARMOUTH AVE,ABSECON CITY,17,1960,1,REL1,3004 -0101_137_11,-74.4691905,39.3434005,612 YARMOUTH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_137_12,-74.502965,39.5182135,611 SEMINOLE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_12,-74.47174983,39.34306508,611 SEMINOLE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_13,-74.501805,39.5169765,610 YARMOUTH AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_13,-74.471229,39.3429335,610 YARMOUTH AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_14,-74.52928741,39.51090514,609 SEMINOLE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_137_14,-74.48554317,39.35036895,609 SEMINOLE AVE,ABSECON CITY,17,1958,1,IND2,3002 -0101_137_15,-74.4946295,39.5279615,608 YARMOUTH AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_137_15,-74.47954861,39.34951229,608 YARMOUTH AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_137_16,-74.4997055,39.525481,200 MILL RD,ABSECON CITY,17,1958,1,RES1,3001 -0101_137_16,-74.48028727,39.34936035,200 MILL RD,ABSECON CITY,17,1958,1,RES1,3001 -0101_137_17,-74.49893147,39.52146618,210 MILL RD,ABSECON CITY,17,1958,1,RES1,3001 -0101_137_17,-74.48699868,39.34885897,210 MILL RD,ABSECON CITY,17,1958,1,RES1,3001 -0101_137_2,-74.49428562,39.49138228,621 SEMINOLE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_137_2,-74.48164683,39.3400889,621 SEMINOLE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_137_3,-74.50595804,39.49235069,620 YARMOUTH AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_137_3,-74.48167666,39.33877342,620 YARMOUTH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_137_4,-74.490409,39.4983985,619 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_137_4,-74.4768765,39.338667,619 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_137_5,-74.49609953,39.49825493,618 YARMOUTH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_137_5,-74.4772739,39.33760932,618 YARMOUTH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_137_6,-74.50422885,39.50323813,617 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_137_6,-74.48034392,39.33644832,617 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_137_7,-74.50988165,39.48850452,616 YARMOUTH AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_7,-74.486325,39.335777,616 YARMOUTH AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_8,-74.46483754,39.53645427,615 SEMINOLE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_8,-74.468028,39.3465565,615 SEMINOLE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_137_9,-74.46420294,39.53592179,614 YARMOUTH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_137_9,-74.4676135,39.346022,614 YARMOUTH AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_138_1,-74.70440926,39.63850044,307 ALAMEDA AVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_138_1,-74.57490139,39.4203288,307 ALAMEDA AVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_138_10,-74.79961562,39.53792503,414 OSAGE LANE,ABSECON CITY,17,1930,1,RES1,3001 -0101_138_10,-74.580441,39.43,414 OSAGE LANE,ABSECON CITY,17,1930,1,RES1,3001 -0101_138_11,-74.7977065,39.534692,OSAGE LANE,ABSECON CITY,,0,1,RES1,3001 -0101_138_11,-74.5816095,39.4298805,OSAGE LANE,ABSECON CITY,,0,1,RES1,3001 -0101_138_12,-74.84531478,39.53596212,418 OSAGE LANE,ABSECON CITY,17,1952,1,RES1,3001 -0101_138_12,-74.5970485,39.4358605,418 OSAGE LANE,ABSECON CITY,17,1952,1,RES1,3001 -0101_138_13,-74.80135648,39.54500538,422 OSAGE LANE,ABSECON CITY,17,1950,1,RES1,3001 -0101_138_13,-74.59538935,39.43290626,422 OSAGE LANE,ABSECON CITY,17,1950,1,RES1,3001 -0101_138_15,-74.80998607,39.55180695,300 ALAMEDA AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_138_15,-74.5920195,39.429441,300 ALAMEDA AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_138_2,-74.69943479,39.63398397,235 MILL ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_138_2,-74.5566695,39.4340915,235 MILL ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_138_3,-74.78006138,39.51941441,225 MILL ROAD,ABSECON CITY,17,1972,1,RES1,3001 -0101_138_3,-74.57486383,39.42960628,225 MILL ROAD,ABSECON CITY,17,1972,1,RES1,3001 -0101_138_4,-74.71778681,39.56264145,217 MILL ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_138_4,-74.59565214,39.40629556,217 MILL ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_138_5,-74.7172375,39.5693315,215 MILL ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_138_5,-74.58022519,39.41355758,215 MILL ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_138_6,-74.74671734,39.56639103,289 SEMINOLE AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_138_6,-74.59110496,39.41091143,289 SEMINOLE AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_138_7,-74.81547529,39.52017445,301 SEMINOLE AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_138_7,-74.5756595,39.4231345,301 SEMINOLE AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_138_8,-74.805316,39.5261195,410 OSAGE LANE,ABSECON CITY,17,1950,1,RES1,3001 -0101_138_8,-74.5829495,39.421349,410 OSAGE LANE,ABSECON CITY,17,1950,1,RES1,3001 -0101_138_9,-74.8103765,39.5235825,412 OSAGE LANE,ABSECON CITY,17,1949,1,RES1,3001 -0101_138_9,-74.575253,39.4202205,412 OSAGE LANE,ABSECON CITY,17,1949,1,RES1,3001 -0101_139_1,-74.849434,39.5409615,425 OSAGE LANE,ABSECON CITY,17,1981,1,RES1,3001 -0101_139_1,-74.5950935,39.428849,425 OSAGE LANE,ABSECON CITY,17,1981,1,RES1,3001 -0101_139_10,-74.75854329,39.61142018,209 SEMINOLE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_139_10,-74.6275945,39.3932825,209 SEMINOLE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_139_11,-74.76138975,39.60828465,214 ALAMEDA AVE,ABSECON CITY,17,1926,1,RES3B,3001 -0101_139_11,-74.62304519,39.39319302,214 ALAMEDA AVE,ABSECON CITY,17,1926,1,REL1,3004 -0101_139_12,-74.786685,39.6100485,228 ALAMEDA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_139_12,-74.63006463,39.3918312,228 ALAMEDA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_139_2,-74.848825,39.5588215,423 OSAGE LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_139_2,-74.59451421,39.42884058,423 OSAGE LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_139_3,-74.85122,39.560976,415 OSAGE LANE,ABSECON CITY,17,1957,1,RES1,3001 -0101_139_3,-74.61719798,39.43200509,415 OSAGE LANE,ABSECON CITY,17,1957,1,RES1,3002 -0101_139_4,-74.86976954,39.56256633,411 OSAGE LANE,ABSECON CITY,17,1950,1,RES1,3001 -0101_139_4,-74.61886032,39.43003947,411 OSAGE LANE,ABSECON CITY,17,1950,1,COM1,3004 -0101_139_5,-74.86383812,39.56908964,223 SEMINOLE AVE,ABSECON CITY,17,1955,1,RES1,3004 -0101_139_5,-74.62584572,39.38350133,223 SEMINOLE AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_139_6,-74.86180145,39.56408835,221 SEMINOLE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_139_6,-74.6257975,39.383241,221 SEMINOLE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_139_7,-74.7228535,39.575866,219 SEMINOLE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_139_7,-74.62494032,39.38019784,219 SEMINOLE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_139_8,-74.71058807,39.58084635,215 SEMINOLE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_139_8,-74.6351859,39.38478632,215 SEMINOLE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_139_9,-74.78033256,39.58754183,211 SEMINOLE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_139_9,-74.63573126,39.38440871,211 SEMINOLE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_14_1,-74.60956058,39.32985327,723 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_14_1,-74.3861875,39.396694,723 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_14_10,-74.57213597,39.33605931,43 DAVIS AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_14_10,-74.40625778,39.37751459,43 DAVIS AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_14_11,-74.56567013,39.35115548,42 AMY LANE,ABSECON CITY,17,1905,1,RES1,3001 -0101_14_11,-74.423813,39.3745075,42 AMY LANE,ABSECON CITY,17,1905,1,RES1,3001 -0101_14_12.01,-74.567881,39.350362,48 AMY LANE,ABSECON CITY,17,1928,1,RES1,3001 -0101_14_12.01,-74.42331661,39.37445769,48 AMY LANE,ABSECON CITY,17,1928,1,RES1,3001 -0101_14_2,-74.61092802,39.32821466,727 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_14_2,-74.38686133,39.39568,727 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_14_3,-74.6096147,39.32671197,735 BAYVIEW DR,ABSECON CITY,17,1959,1,RES1,3001 -0101_14_3,-74.39429883,39.39380166,735 BAYVIEW DR,ABSECON CITY,17,1959,1,GOV1,3004 -0101_14_4,-74.57061001,39.34201709,739 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_14_4,-74.409855,39.3828995,739 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_14_5,-74.57166537,39.34130713,745 BAYVIEW DR,ABSECON CITY,17,1955,1,RES1,3001 -0101_14_5,-74.406771,39.382725,745 BAYVIEW DR,ABSECON CITY,17,1955,1,RES1,3001 -0101_14_6,-74.57186998,39.34026414,749 BAYVIEW DR,ABSECON CITY,17,1930,1,RES1,3001 -0101_14_6,-74.4074465,39.38263,749 BAYVIEW DR,ABSECON CITY,17,1930,1,RES1,3001 -0101_14_7,-74.57040985,39.33890541,99 HOBART AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_14_7,-74.4062965,39.3824945,99 HOBART AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_14_8,-74.57108811,39.33705029,97 HOBART AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_14_8,-74.40910247,39.38183469,97 HOBART AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_14_9,-74.57091446,39.33644519,41 DAVIS AVE,ABSECON CITY,17,1856,1,RES1,3001 -0101_14_9,-74.4062875,39.381401,41 DAVIS AVE,ABSECON CITY,17,1856,1,RES1,3001 -0101_140_1,-74.600318,39.31743,241 ALAMEDA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_140_1,-74.5056175,39.3387675,241 ALAMEDA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_140_10,-74.63193,39.606619,201 ALAMEDA AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_140_10,-74.57281027,39.41492354,201 ALAMEDA AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_140_12,-74.626265,39.619882,480 DELAWARE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_140_12,-74.57360485,39.41404092,480 DELAWARE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_140_13,-74.63103701,39.61987783,202 TWELFTH ST,ABSECON CITY,17,1974,1,RES1,3001 -0101_140_13,-74.55400567,39.4275595,202 TWELFTH ST,ABSECON CITY,17,1974,1,RES1,3001 -0101_140_14,-74.6979955,39.6215715,206 TWELFTH ST,ABSECON CITY,17,1980,1,RES1,3001 -0101_140_14,-74.5729095,39.4273625,206 TWELFTH ST,ABSECON CITY,17,1980,1,RES1,3001 -0101_140_2,-74.614025,39.32392067,225 ALAMEDA AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_140_2,-74.5023285,39.337059,225 ALAMEDA AVE,ABSECON CITY,17,1947,1,GOV1,3004 -0101_140_3,-74.61444732,39.31895828,223 ALAMEDA AVE,ABSECON CITY,17,1945,1,RES1,3001 -0101_140_3,-74.50335914,39.33475043,223 ALAMEDA AVE,ABSECON CITY,17,1945,1,RES1,3001 -0101_140_4,-74.6071015,39.3326235,219 ALAMEDA AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_140_4,-74.488248,39.348266,219 ALAMEDA AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_140_5,-74.6010805,39.3303965,217 ALAMEDA AVE,ABSECON CITY,16,2013,1,RES1,3001 -0101_140_5,-74.50979461,39.3387537,217 ALAMEDA AVE,ABSECON CITY,16,2013,1,RES1,3001 -0101_140_6,-74.60732828,39.32887254,215 ALAMEDA AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_140_6,-74.50928322,39.33530974,215 ALAMEDA AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_140_7,-74.68946867,39.59907691,211 ALAMEDA AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_140_7,-74.56067489,39.41347819,211 ALAMEDA AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_140_8,-74.62973794,39.61384591,209 ALAMEDA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_140_8,-74.55964828,39.41349243,209 ALAMEDA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_140_9,-74.62938948,39.60871618,207 ALAMEDA AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_140_9,-74.5681145,39.415238,207 ALAMEDA AVE,ABSECON CITY,17,1954,1,COM1,3004 -0101_141_1,-74.60260067,39.318309,415 MILL ROAD,ABSECON CITY,17,1991,1,RES1,3001 -0101_141_1,-74.507862,39.3390725,415 MILL ROAD,ABSECON CITY,17,1991,1,RES1,3001 -0101_141_10,-74.58904268,39.33307451,207 TWELFTH ST,ABSECON CITY,17,1972,1,COM4,3004 -0101_141_10,-74.48953267,39.3378732,207 TWELFTH ST,ABSECON CITY,17,1972,1,RES1,3001 -0101_141_11,-74.58492759,39.32589433,209 TWELFTH ST,ABSECON CITY,17,1972,1,RES1,3001 -0101_141_11,-74.4972395,39.3379035,209 TWELFTH ST,ABSECON CITY,17,1972,1,RES1,3001 -0101_141_12,-74.585723,39.3283255,211 TWELFTH ST,ABSECON CITY,17,1978,1,RES1,3001 -0101_141_12,-74.490655,39.337916,211 TWELFTH ST,ABSECON CITY,17,1978,1,RES1,3001 -0101_141_14,-74.5766401,39.33377341,401 MILL RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_141_14,-74.49447717,39.33802896,401 MILL RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_141_15,-74.59035086,39.31855368,403 MILL RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_141_15,-74.492808,39.340274,403 MILL RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_141_16,-74.5921825,39.320913,405 MILL RD,ABSECON CITY,17,1978,1,RES1,3001 -0101_141_16,-74.48452615,39.35310379,405 MILL RD,ABSECON CITY,17,1978,1,RES1,3001 -0101_141_17,-74.5942605,39.3210055,3 CORDELIA LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_141_17,-74.48521595,39.35363463,3 CORDELIA LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_141_18,-74.5926848,39.32146633,14 CORDELIA LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_141_18,-74.461789,39.3535625,14 CORDELIA LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_141_19,-74.5935795,39.323614,7 CORDELIA LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_141_19,-74.46379267,39.35429161,7 CORDELIA LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_141_2,-74.60239296,39.31955819,522 DELAWARE AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_141_2,-74.5061225,39.3396025,522 DELAWARE AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_141_21,-74.593426,39.32501,409 MILL RD,ABSECON CITY,17,1984,1,RES1,3001 -0101_141_21,-74.46095148,39.35706165,409 MILL RD,ABSECON CITY,17,1984,1,RES1,3001 -0101_141_22,-74.59218017,39.3244426,411 MILL ROAD,ABSECON CITY,17,1979,1,RES1,3001 -0101_141_22,-74.46118833,39.35583401,411 MILL ROAD,ABSECON CITY,17,1979,1,RES1,3001 -0101_141_3,-74.60791334,39.31978748,520 DELAWARE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_141_3,-74.501801,39.3426615,520 DELAWARE AVE,ABSECON CITY,17,1968,1,GOV1,3004 -0101_141_4,-74.60436409,39.32377515,518 DELAWARE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_141_4,-74.50425138,39.3426294,518 DELAWARE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_141_5,-74.6065405,39.324176,516 DELAWARE AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_141_5,-74.4953405,39.3344235,516 DELAWARE AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_141_6,-74.60092062,39.32444676,508 DELAWARE AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_141_6,-74.49740908,39.33515466,508 DELAWARE AVE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_141_7,-74.6057425,39.3249715,500 DELAWARE AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_141_7,-74.49190602,39.33543585,500 DELAWARE AVE,ABSECON CITY,17,1948,1,GOV1,3004 -0101_141_8,-74.588058,39.325899,203 TWELFTH ST,ABSECON CITY,17,1968,1,RES1,3001 -0101_141_8,-74.492476,39.337003,203 TWELFTH ST,ABSECON CITY,17,1968,1,RES1,3001 -0101_141_9,-74.586756,39.3271685,205 TWELFTH ST,ABSECON CITY,17,1964,1,RES1,3001 -0101_141_9,-74.48827718,39.33723198,205 TWELFTH ST,ABSECON CITY,17,1964,1,RES1,3001 -0101_142_1.01,-74.4909953,39.53470057,604 AMBASSADOR DRIVE,ABSECON CITY,17,1981,1,RES1,3001 -0101_142_1.01,-74.48340167,39.34767195,604 AMBASSADOR DRIVE,ABSECON CITY,17,1981,1,RES1,3001 -0101_142_10,-74.59151766,39.31389067,611 CHELSEA ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_142_10,-74.44420176,39.35448075,611 CHELSEA ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_142_11,-74.596081,39.3128135,609 CHELSEA ROAD,ABSECON CITY,17,1964,1,COM4,3004 -0101_142_11,-74.451444,39.353736,609 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_142_12,-74.60391167,39.31632372,607 CHELSEA ROAD,ABSECON CITY,17,1967,1,RES1,3001 -0101_142_12,-74.45358917,39.35241199,607 CHELSEA ROAD,ABSECON CITY,17,1967,1,RES1,3001 -0101_142_13,-74.59873726,39.31529436,605 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_142_13,-74.46344536,39.35851648,605 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_142_14,-74.61279796,39.31565219,603 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_142_14,-74.462929,39.358053,603 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_142_15,-74.582923,39.325318,402 MILL ROAD,ABSECON CITY,17,1966,1,RES1,3001 -0101_142_15,-74.46525642,39.35779433,402 MILL ROAD,ABSECON CITY,17,1966,1,RES1,3001 -0101_142_16,-74.58577233,39.32517695,404 MILL ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_142_16,-74.46265777,39.35737266,404 MILL ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_142_17,-74.60593777,39.53873189,600 NEW JERSEY AVE,ABSECON CITY,17,1956,1,COM1,3004 -0101_142_17,-74.56519097,39.37184591,600 NEW JERSEY AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_142_2,-74.48818663,39.53184902,700 BLENHEIM AVE,ABSECON CITY,17,1981,1,RES1,3001 -0101_142_2,-74.48150416,39.3471742,700 BLENHEIM AVE,ABSECON CITY,17,1981,1,RES1,3001 -0101_142_5,-74.51922366,39.53418199,709 CHELSEA RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_142_5,-74.47907982,39.34680102,709 CHELSEA RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_142_6,-74.517333,39.5301995,707 CHELSEA ROAD,ABSECON CITY,17,1969,1,RES1,3004 -0101_142_6,-74.48554733,39.3456055,707 CHELSEA ROAD,ABSECON CITY,17,1969,1,RES1,3001 -0101_142_7,-74.46263859,39.55195874,705 CHELSEA ROAD,ABSECON CITY,17,1967,1,RES1,3001 -0101_142_7,-74.4845185,39.3447125,705 CHELSEA ROAD,ABSECON CITY,17,1967,1,RES1,3001 -0101_142_8,-74.5308995,39.5405255,703 CHELSEA ROAD,ABSECON CITY,17,1969,1,RES1,3001 -0101_142_8,-74.4481605,39.356587,703 CHELSEA ROAD,ABSECON CITY,17,1969,1,RES1,3001 -0101_142_9.01,-74.535047,39.305279,701 CHELSEA RD,ABSECON CITY,17,1969,1,RES1,3001 -0101_142_9.01,-74.4522655,39.3564,701 CHELSEA RD,ABSECON CITY,17,1969,1,RES1,3001 -0101_142_9.02,-74.59300578,39.31536184,613 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_142_9.02,-74.45115045,39.3561833,613 CHELSEA ROAD,ABSECON CITY,17,1964,1,RES1,3001 -0101_143_1,-74.62140605,39.42205081,825 CHELSEA ROAD,ABSECON CITY,17,1984,1,RES1,3001 -0101_143_1,-74.49260162,39.49462353,825 CHELSEA ROAD,ABSECON CITY,17,1984,1,RES1,3001 -0101_143_10,-74.6212675,39.4314655,718 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_10,-74.46012134,39.52928848,718 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_11,-74.63889093,39.43420742,815 CHELSEA ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_143_11,-74.4640605,39.5347735,815 CHELSEA ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_143_12,-74.63112121,39.4315721,716 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_12,-74.48377637,39.52501726,716 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_13,-74.637877,39.4308905,813 CHELSEA ROAD,ABSECON CITY,17,1984,1,RES1,3001 -0101_143_13,-74.52929591,39.51186432,813 CHELSEA ROAD,ABSECON CITY,17,1984,1,RES1,3001 -0101_143_14,-74.63465879,39.42849743,714 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_14,-74.498291,39.523263,714 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_15,-74.6438985,39.433001,811 CHELSEA RD,ABSECON CITY,17,1978,1,RES1,3001 -0101_143_15,-74.4987251,39.52890667,811 CHELSEA RD,ABSECON CITY,17,1978,1,RES1,3001 -0101_143_16,-74.70585623,39.42519304,712 BLENHEIM AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_143_16,-74.4997783,39.52620415,712 BLENHEIM AVE,ABSECON CITY,17,1963,1,RES3A,3001 -0101_143_17,-74.55762361,39.44264208,809 CHELSEA ROAD,ABSECON CITY,17,1976,1,RES3B,3001 -0101_143_17,-74.52461332,39.52354954,809 CHELSEA ROAD,ABSECON CITY,17,1976,1,RES1,3001 -0101_143_18,-74.569753,39.4409785,710 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_18,-74.5370875,39.3133625,710 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_19,-74.568573,39.4460155,807 CHELSEA ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_143_19,-74.57507202,39.33362058,807 CHELSEA ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_143_2,-74.625784,39.4198255,726 BLENHEIM AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_143_2,-74.498236,39.491981,726 BLENHEIM AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_143_20,-74.5384915,39.4597885,708 BLENHEIM AVE,ABSECON CITY,17,1969,1,COM1,3004 -0101_143_20,-74.5795715,39.3126655,708 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_21,-74.54382821,39.46064896,805 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_143_21,-74.58021343,39.31138181,805 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_143_22,-74.542671,39.460376,706 BLENHEIM AVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_143_22,-74.5793295,39.3112645,706 BLENHEIM AVE,ABSECON CITY,17,1976,1,COM1,3004 -0101_143_23,-74.53742127,39.46629543,803 CHELSEA RD,ABSECON CITY,17,1978,1,RES1,3001 -0101_143_23,-74.580246,39.3110565,803 CHELSEA RD,ABSECON CITY,17,1978,1,RES1,3001 -0101_143_24,-74.54977401,39.46704484,702 BLENHEIM AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_143_24,-74.57940709,39.31094683,702 BLENHEIM AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_143_25,-74.54909969,39.46557926,603 AMBASSADOR DR,ABSECON CITY,17,1985,1,RES1,3001 -0101_143_25,-74.59429138,39.3128824,603 AMBASSADOR DR,ABSECON CITY,17,1985,1,RES1,3001 -0101_143_3,-74.6312775,39.4224865,823 CHELSEA ROAD,ABSECON CITY,17,1982,1,RES1,3001 -0101_143_3,-74.507084,39.4929765,823 CHELSEA ROAD,ABSECON CITY,17,1982,1,RES1,3001 -0101_143_4,-74.630491,39.4216425,724 BLENHEIM AVE,ABSECON CITY,17,1969,1,GOV1,3004 -0101_143_4,-74.49818782,39.49924208,724 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_5,-74.61960419,39.43544999,821 CHELSEA ROAD,ABSECON CITY,17,1982,1,RES1,3001 -0101_143_5,-74.510769,39.490547,821 CHELSEA ROAD,ABSECON CITY,17,1982,1,RES1,3001 -0101_143_6,-74.62797011,39.43476895,722 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES3A,3001 -0101_143_6,-74.51082131,39.48978029,722 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES3A,3001 -0101_143_7,-74.62394257,39.4336835,819 CHELSEA RD,ABSECON CITY,17,1979,1,RES1,3001 -0101_143_7,-74.5259605,39.4929535,819 CHELSEA RD,ABSECON CITY,17,1979,1,RES1,3001 -0101_143_8,-74.62091534,39.43196354,720 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_143_8,-74.52797745,39.49982271,720 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_1,-74.5507595,39.464877,504 HIGHLAND BLVD,ABSECON CITY,17,1975,1,RES3A,3001 -0101_144_1,-74.59523346,39.3104316,504 HIGHLAND BLVD,ABSECON CITY,17,1975,1,RES1,3001 -0101_144_10,-74.4497995,39.372644,715 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_10,-74.85393117,39.61995649,715 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_11,-74.4462345,39.3714195,724 BREAKERS AVE,ABSECON CITY,17,1969,1,COM1,3004 -0101_144_11,-74.88431809,39.46344277,724 BREAKERS AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_12,-74.45158915,39.37124859,713 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES3A,3001 -0101_144_12,-74.88387676,39.46258838,713 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_13,-74.45636872,39.37349189,722 BREAKERS AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_13,-74.8849364,39.46236995,722 BREAKERS AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_14,-74.52700449,39.38174117,711 BLENHEIM AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_144_14,-74.8870415,39.471425,711 BLENHEIM AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_144_15,-74.51795637,39.3899822,720 BREAKERS AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_144_15,-74.8894459,39.47922621,720 BREAKERS AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_144_17,-74.51768968,39.38807751,718 BREAKERS AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_144_17,-74.906097,39.479762,718 BREAKERS AVE,ABSECON CITY,17,1967,1,GOV1,3004 -0101_144_18,-74.51585264,39.38777033,707 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_18,-74.9187485,39.481666,707 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_19,-74.52256503,39.39256132,716 BREAKERS AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_144_19,-74.891508,39.4996515,716 BREAKERS AVE,ABSECON CITY,17,1967,1,RES3A,3001 -0101_144_2,-74.54983985,39.46410252,502 HIGHLAND BLVD,ABSECON CITY,17,1965,1,RES3A,3001 -0101_144_2,-74.60621747,39.30784115,502 HIGHLAND BLVD,ABSECON CITY,17,1965,1,RES1,3001 -0101_144_20,-74.52537033,39.39202833,705 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_20,-74.89823107,39.50318964,705 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_21,-74.53079516,39.38700113,714 BREAKERS AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_144_21,-74.94687816,39.49473325,714 BREAKERS AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_144_22,-74.52987099,39.38664484,703 BLENHEIM AVE,ABSECON CITY,17,1969,1,IND2,3002 -0101_144_22,-74.944388,39.4889915,703 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_23,-74.526763,39.38547417,712 BREAKERS AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_144_23,-74.934214,39.5039165,712 BREAKERS AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_144_24,-74.518532,39.4001115,503 AMBASSADOR DRIVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_144_24,-74.946337,39.5039795,503 AMBASSADOR DRIVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_144_25,-74.5103025,39.39973,710 BREAKERS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_144_25,-74.883991,39.50558,710 BREAKERS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_144_3,-74.548026,39.462932,723 BLENHEIM AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_144_3,-74.60191904,39.31650436,723 BLENHEIM AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_144_4,-74.5554455,39.4660395,730 BREAKERS AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_144_4,-74.60582129,39.31645246,730 BREAKERS AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_144_5,-74.5779705,39.4477595,721 BLENHEIM AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_144_5,-74.59722277,39.31433736,721 BLENHEIM AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_144_6,-74.60803847,39.44091106,719 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_6,-74.599274,39.3111395,719 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_7,-74.60767811,39.43913831,728 BREAKERS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_144_7,-74.61312064,39.31640924,728 BREAKERS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_144_8,-74.448231,39.3733945,717 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3004 -0101_144_8,-74.82963048,39.63778067,717 BLENHEIM AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_144_9,-74.4485075,39.373206,726 BREAKERS AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_144_9,-74.85415832,39.60932358,726 BREAKERS AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_145_1,-74.515496,39.398517,402 HIGHLAND BLVD,ABSECON CITY,17,1990,1,RES1,3002 -0101_145_1,-74.925104,39.509831,402 HIGHLAND BLVD,ABSECON CITY,17,1990,1,RES1,3001 -0101_145_10,-74.48474192,39.4308232,716 SHELBURNE AVE,ABSECON CITY,17,1916,1,RES1,3001 -0101_145_10,-74.92962357,39.51710814,716 SHELBURNE AVE,ABSECON CITY,17,1916,1,RES1,3001 -0101_145_11,-74.48135661,39.43030576,717 BREAKERS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_145_11,-74.94383876,39.51840147,717 BREAKERS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_145_12,-74.5056035,39.410431,712 SHELBURNE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_145_12,-74.9399295,39.517968,712 SHELBURNE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_145_13,-74.50860631,39.4084379,713 BREAKERS AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_145_13,-74.941584,39.5156365,713 BREAKERS AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_145_14,-74.507141,39.4075615,710 SHELBURNE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_145_14,-74.95081055,39.51988926,710 SHELBURNE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_145_15,-74.5090065,39.406033,707 BREAKERS AVE,ABSECON CITY,17,1964,1,RES3A,3001 -0101_145_15,-74.9641625,39.512664,707 BREAKERS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_145_16,-74.5073751,39.40299997,704 SHELBURNE AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_145_16,-74.9627865,39.512631,704 SHELBURNE AVE,ABSECON CITY,17,1970,1,RES3A,3001 -0101_145_17,-74.491679,39.419162,703 BREAKERS AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_145_17,-74.93228958,39.52687017,703 BREAKERS AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_145_18,-74.50203106,39.41877329,700 SHELBURNE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_145_18,-74.94006187,39.52631517,700 SHELBURNE AVE,ABSECON CITY,17,1964,1,RES3B,3001 -0101_145_3,-74.53106,39.399413,733 BREAKERS AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_145_3,-74.9259515,39.50622467,733 BREAKERS AVE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_145_4,-74.52511216,39.39744428,740 SHELBURNE AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_145_4,-74.92426958,39.50543114,740 SHELBURNE AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_145_5,-74.52597657,39.39584661,731 BREAKERS AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_145_5,-74.92557097,39.52528587,731 BREAKERS AVE,ABSECON CITY,17,1968,1,RES3A,3001 -0101_145_6,-74.526307,39.3945975,730 SHELBURNE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_145_6,-74.9146815,39.532576,730 SHELBURNE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_145_7,-74.524448,39.3943485,723 BREAKERS AVE,ABSECON CITY,17,1972,1,RES3A,3001 -0101_145_7,-74.9198675,39.531976,723 BREAKERS AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_145_8,-74.47923433,39.43345944,722 SHELBURNE AVE,ABSECON CITY,17,1962,1,COM1,3004 -0101_145_8,-74.9278335,39.5194185,722 SHELBURNE AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_145_9,-74.48407239,39.43283818,721 BREAKERS AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_145_9,-74.92819034,39.5184299,721 BREAKERS AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_146_1,-74.50443967,39.41624017,204 HIGHLAND BLVD,ABSECON CITY,17,1957,1,RES1,3001 -0101_146_1,-74.93983541,39.52606609,204 HIGHLAND BLVD,ABSECON CITY,17,1957,1,RES1,3001 -0101_146_10,-74.51667568,39.40232656,602 MARLBOROUGH AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_146_10,-74.920111,39.550873,602 MARLBOROUGH AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_146_11,-74.52164882,39.40699593,703 SHELBURNE AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_146_11,-74.8861555,39.559388,703 SHELBURNE AVE,ABSECON CITY,17,1966,1,RES1,3002 -0101_146_12,-74.51615485,39.41625883,600 MARLBOROUGH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_146_12,-74.95337598,39.5394866,600 MARLBOROUGH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_146_2,-74.49892508,39.41620932,200 HIGHLAND BLVD,ABSECON CITY,17,1956,1,RES1,3001 -0101_146_2,-74.9407603,39.52211406,200 HIGHLAND BLVD,ABSECON CITY,17,1956,1,RES1,3001 -0101_146_3.01,-74.51408,39.40568,715 SHELBURNE AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_146_3.01,-74.94124835,39.52144164,715 SHELBURNE AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_146_3.02,-74.51456066,39.40431906,713 SHELBURNE AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_146_3.02,-74.92909793,39.52971681,713 SHELBURNE AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_146_5,-74.51925911,39.40419712,726 MARLBOROUGH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_146_5,-74.93876,39.5300685,726 MARLBOROUGH AVE,ABSECON CITY,17,1962,1,RES1,3002 -0101_146_7,-74.5180865,39.4036735,724 MARLBOROUGH AVE,ABSECON CITY,17,1929,1,RES1,3001 -0101_146_7,-74.96974456,39.52777012,724 MARLBOROUGH AVE,ABSECON CITY,17,1929,1,RES1,3001 -0101_146_8,-74.51061105,39.40325183,711 SHELBURNE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_146_8,-74.950128,39.535768,711 SHELBURNE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_146_9,-74.5182695,39.402923,707 SHELBURNE AVE,ABSECON CITY,17,1969,1,RES3A,3001 -0101_146_9,-74.89736775,39.53888665,707 SHELBURNE AVE,ABSECON CITY,17,1969,1,RES1,3002 -0101_147_1,-74.7779193,39.62245104,288 SEMINOLE AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_147_1,-74.627871,39.390372,288 SEMINOLE AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_147_10,-74.5696755,39.347011,269 N NEW RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_10,-74.38270274,39.39305277,269 N NEW RD,ABSECON CITY,17,1955,1,GOV1,3004 -0101_147_11,-74.57439053,39.34657458,272 SEMINOLE AVE,ABSECON CITY,17,1950,1,RES3A,3001 -0101_147_11,-74.38450654,39.39255954,272 SEMINOLE AVE,ABSECON CITY,17,1950,1,RES3A,3001 -0101_147_12,-74.55317563,39.36554158,251 N NEW RD,ABSECON CITY,17,1953,1,RES1,3001 -0101_147_12,-74.3867405,39.391252,251 N NEW RD,ABSECON CITY,17,1953,1,RES3A,3001 -0101_147_13,-74.549573,39.362679,266 SEMINOLE AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_147_13,-74.38850204,39.39339969,266 SEMINOLE AVE,ABSECON CITY,17,1928,1,RES3A,3001 -0101_147_14,-74.55827543,39.35918048,249 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_147_14,-74.39103037,39.39261264,249 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_147_15,-74.55623052,39.35837732,258 SEMINOLE AVE,ABSECON CITY,17,1949,1,RES1,3001 -0101_147_15,-74.39864617,39.39008925,258 SEMINOLE AVE,ABSECON CITY,17,1949,1,RES1,3001 -0101_147_16,-74.5562925,39.357143,252 SEMINOLE AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_147_16,-74.38876315,39.38970061,252 SEMINOLE AVE,ABSECON CITY,17,1950,1,RES1,3002 -0101_147_17,-74.5536385,39.3561245,243 N NEW RD,ABSECON CITY,17,1928,1,RES1,3001 -0101_147_17,-74.39114315,39.38949604,243 N NEW RD,ABSECON CITY,17,1928,1,RES1,3001 -0101_147_18,-74.56914416,39.35751051,220 SEMINOLE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_147_18,-74.39804856,39.38571447,220 SEMINOLE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_147_19,-74.57449541,39.35713872,241 N NEW RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_147_19,-74.38532584,39.39757605,241 N NEW RD,ABSECON CITY,17,1900,1,COM1,3004 -0101_147_2,-74.77648499,39.62151468,291 N NEW ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_2,-74.63522167,39.391018,291 N NEW ROAD,ABSECON CITY,17,1955,1,COM1,3004 -0101_147_20,-74.5720325,39.356091,218 SEMINOLE AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_147_20,-74.38313,39.396254,218 SEMINOLE AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_147_21,-74.56639833,39.351786,237 N NEW RD,ABSECON CITY,17,1970,1,RES1,3002 -0101_147_21,-74.38085903,39.39422006,237 N NEW RD,ABSECON CITY,17,1970,1,RES1,3001 -0101_147_22,-74.557006,39.3672865,SEMINOLE AVE,ABSECON CITY,,0,1,RES1,3001 -0101_147_22,-74.3933935,39.394961,SEMINOLE AVE,ABSECON CITY,,0,1,RES1,3001 -0101_147_23,-74.55871003,39.36723184,233 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_147_23,-74.41383391,39.36905334,233 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_147_24,-74.55660517,39.36675651,210 SEMINOLE AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_147_24,-74.41894037,39.368944,210 SEMINOLE AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_147_25,-74.5537875,39.366682,231 N NEW RD,ABSECON CITY,17,1947,1,RES1,3001 -0101_147_25,-74.412597,39.3686425,231 N NEW RD,ABSECON CITY,17,1947,1,RES1,3001 -0101_147_27,-74.56166623,39.36611614,204 SEMINOLE AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_147_27,-74.40862171,39.38169384,204 SEMINOLE AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_147_28,-74.55995182,39.3652326,203 N NEW RD,ABSECON CITY,17,1954,1,RES1,3001 -0101_147_28,-74.40742041,39.38057724,203 N NEW RD,ABSECON CITY,17,1954,1,RES1,3001 -0101_147_29,-74.5580012,39.3647587,408 DELAWARE AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_147_29,-74.42373323,39.37437764,408 DELAWARE AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_147_3,-74.77564033,39.62777511,287 N NEW RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_3,-74.6347645,39.388616,287 N NEW RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_30,-74.55547129,39.36465854,201 N NEW RD,ABSECON CITY,17,1946,1,RES1,3001 -0101_147_30,-74.42959322,39.37202118,201 N NEW RD,ABSECON CITY,17,1946,1,RES1,3001 -0101_147_4,-74.77528332,39.62654524,285 N NEW RD,ABSECON CITY,17,1963,1,RES1,3001 -0101_147_4,-74.63805,39.399498,285 N NEW RD,ABSECON CITY,17,1963,1,RES1,3001 -0101_147_5,-74.60153415,39.3259348,284 SEMINOLE AVE,ABSECON CITY,17,1952,1,RES3A,3001 -0101_147_5,-74.50954061,39.33499081,284 SEMINOLE AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_147_6,-74.57140435,39.34045888,281 N NEW RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_6,-74.3696495,39.401795,281 N NEW RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_7,-74.5742805,39.3397545,278 SEMINOLE AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_7,-74.3756604,39.40095071,278 SEMINOLE AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_8,-74.57353436,39.33751916,271 N NEW RD,ABSECON CITY,17,1955,1,RES1,3002 -0101_147_8,-74.37257333,39.40075651,271 N NEW RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_147_9,-74.57297901,39.34996399,276 SEMINOLE AVE,ABSECON CITY,17,1989,1,RES1,3002 -0101_147_9,-74.38766017,39.39319745,276 SEMINOLE AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_148_1,-74.56132685,39.36443218,280 N NEW RD,ABSECON CITY,17,1960,1,RES1,3001 -0101_148_1,-74.42400398,39.37000033,280 N NEW RD,ABSECON CITY,17,1960,1,RES1,3001 -0101_148_10,-74.59534467,39.33977015,243 W WYOMING AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_148_10,-74.403719,39.386524,243 W WYOMING AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_148_11,-74.5800729,39.34442315,237 W WYOMING AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_148_11,-74.3661265,39.410116,237 W WYOMING AVE,ABSECON CITY,17,1920,1,RES1,3002 -0101_148_12,-74.57980336,39.34313502,224 N NEW RD,ABSECON CITY,17,1935,1,RES1,3001 -0101_148_12,-74.362305,39.409957,224 N NEW RD,ABSECON CITY,17,1935,1,RES1,3001 -0101_148_13,-74.58720433,39.34964279,229 W WYOMING AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_148_13,-74.363295,39.4092495,229 W WYOMING AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_148_14,-74.5950654,39.34806463,225 W WYOMING AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_148_14,-74.364514,39.4060895,225 W WYOMING AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_148_15,-74.59109215,39.34769608,217 W WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_148_15,-74.36568867,39.40546921,217 W WYOMING AVE,ABSECON CITY,17,1930,1,COM1,3004 -0101_148_16,-74.59534,39.3464805,206 N NEW RD,ABSECON CITY,17,1948,1,COM1,3004 -0101_148_16,-74.368769,39.410565,206 N NEW RD,ABSECON CITY,17,1948,1,RES1,3001 -0101_148_18,-74.59347166,39.34512085,213 W WYOMING AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_148_18,-74.36908884,39.40806949,213 W WYOMING AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_148_19,-74.59767817,39.34125044,332 DELAWARE AVE,ABSECON CITY,17,1900,1,COM4,3004 -0101_148_19,-74.36814266,39.40634301,332 DELAWARE AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_148_2,-74.56203605,39.36020126,254 N NEW RD,ABSECON CITY,17,1955,2,RES1,3001 -0101_148_2,-74.44212672,39.37220099,254 N NEW RD,ABSECON CITY,17,1955,2,RES1,3001 -0101_148_20,-74.6121735,39.3419515,316 DELAWARE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_148_20,-74.3679935,39.406152,316 DELAWARE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_148_21,-74.61446205,39.33898409,312 DELAWARE AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_148_21,-74.36999017,39.40466799,312 DELAWARE AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_148_22,-74.6041375,39.3488925,308 DELAWARE AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_148_22,-74.3741658,39.40463836,308 DELAWARE AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_148_23,-74.600772,39.3481025,304 DELAWARE AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_148_23,-74.36698366,39.40333551,304 DELAWARE AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_148_3,-74.56952208,39.36491921,248 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_148_3,-74.44232253,39.37187218,248 N NEW RD,ABSECON CITY,17,1950,1,AGR1,3001 -0101_148_4,-74.56772489,39.36461368,246 N NEW RD,ABSECON CITY,17,1950,1,AGR1,3001 -0101_148_4,-74.43818311,39.37082868,246 N NEW RD,ABSECON CITY,17,1950,1,GOV1,3004 -0101_148_5,-74.56458305,39.36076739,267 W WYOMING AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_148_5,-74.4432455,39.3708215,267 W WYOMING AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_148_6,-74.57992839,39.34223225,255 W WYOMING AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_148_6,-74.4430035,39.370466,255 W WYOMING AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_148_7,-74.5755585,39.340649,244 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_148_7,-74.40092697,39.39097036,244 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_148_8,-74.57964808,39.34046091,251 W WYOMING AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_148_8,-74.40002857,39.38798338,251 W WYOMING AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_148_9,-74.57852429,39.33795234,240 N NEW RD,ABSECON CITY,17,1910,1,RES1,3001 -0101_148_9,-74.4006437,39.38670208,240 N NEW RD,ABSECON CITY,17,1910,1,RES1,3001 -0101_149_1,-74.60210216,39.34728402,253 HURON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_149_1,-74.37048668,39.40268364,253 HURON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_149_10,-74.59829851,39.36387375,212 W WYOMING AVE,ABSECON CITY,17,1925,1,COM1,3004 -0101_149_10,-74.3668405,39.416755,212 W WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_149_11,-74.5992395,39.36056,211 HURON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_149_11,-74.3740265,39.415903,211 HURON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_149_12,-74.6097465,39.3649925,222 DELAWARE AVE,ABSECON CITY,17,1927,1,IND1,3002 -0101_149_12,-74.37208133,39.41434517,222 DELAWARE AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_149_13,-74.61635872,39.36268096,212 DELAWARE AVE,ABSECON CITY,17,1922,1,RES1,3001 -0101_149_13,-74.37655701,39.41299066,212 DELAWARE AVE,ABSECON CITY,17,1922,1,COM1,3004 -0101_149_15,-74.622557,39.3135835,200 DELAWARE AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_149_15,-74.3741789,39.4123568,200 DELAWARE AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_149_2,-74.610255,39.348836,240 W WYOMING AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_149_2,-74.3632375,39.418587,240 W WYOMING AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_149_3,-74.585331,39.3639945,230 W WYOMING AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_149_3,-74.3610655,39.4173425,230 W WYOMING AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_149_4,-74.5807135,39.3635335,228 W WYOMING AVE,ABSECON CITY,17,1923,1,COM1,3004 -0101_149_4,-74.36443,39.415662,228 W WYOMING AVE,ABSECON CITY,17,1923,1,RES1,3001 -0101_149_5.02,-74.58526344,39.36099461,231 HURON AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_149_5.02,-74.35833433,39.41412501,231 HURON AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_149_6,-74.59554631,39.36002499,218 W WYOMING AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_149_6,-74.3590185,39.4123135,218 W WYOMING AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_149_7,-74.59906825,39.36825988,225 HURON AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_149_7,-74.3630795,39.4117335,225 HURON AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_149_8,-74.6009235,39.3678985,216 W WYOMING AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_149_8,-74.37648344,39.41730277,216 W WYOMING AVE,ABSECON CITY,17,1952,1,GOV1,3004 -0101_149_9,-74.6020976,39.36642972,219 HURON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_149_9,-74.37701498,39.41724172,219 HURON AVE,ABSECON CITY,17,1958,1,RES3A,3001 -0101_15_10,-74.61344138,39.3502522,39 DAVIS AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_15_10,-74.37780442,39.40332081,39 DAVIS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_15_2,-74.58038999,39.33627232,600 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_15_2,-74.3581485,39.4126885,600 BAYVIEW DR,ABSECON CITY,17,1958,1,GOV1,3004 -0101_15_3,-74.59681989,39.34275371,612 BAYVIEW DR,ABSECON CITY,17,1930,1,RES1,3001 -0101_15_3,-74.36121955,39.41104484,612 BAYVIEW DR,ABSECON CITY,17,1930,1,GOV1,3004 -0101_15_4,-74.59504133,39.34269597,601 N SHORE RD,ABSECON CITY,17,1960,1,RES1,3001 -0101_15_4,-74.3666005,39.417157,601 N SHORE RD,ABSECON CITY,17,1960,1,RES1,3002 -0101_15_5,-74.59408971,39.34211126,603 N SHORE RD,ABSECON CITY,17,1963,1,REL1,3004 -0101_15_5,-74.37034029,39.41592315,603 N SHORE RD,ABSECON CITY,17,1963,1,AGR1,3001 -0101_15_6,-74.58925674,39.33737553,37 DAVIS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_15_6,-74.3747605,39.415348,37 DAVIS AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_15_7,-74.58729018,39.33559555,616 BAYVIEW DR,ABSECON CITY,17,1911,1,RES1,3001 -0101_15_7,-74.3684667,39.41243503,616 BAYVIEW DR,ABSECON CITY,17,1911,1,COM4,3004 -0101_15_8,-74.594536,39.343873,618 BAYVIEW DR,ABSECON CITY,17,1928,1,GOV1,3004 -0101_15_8,-74.371666,39.410906,618 BAYVIEW DR,ABSECON CITY,17,1928,1,RES1,3001 -0101_15_9,-74.61174891,39.34036035,628 BAYVIEW DR,ABSECON CITY,17,1920,1,RES1,3001 -0101_15_9,-74.36828076,39.41080489,628 BAYVIEW DR,ABSECON CITY,17,1920,1,RES1,3001 -0101_151_1,-74.6402525,39.322577,126 N NEW RD,ABSECON CITY,17,1955,1,COM1,3004 -0101_151_1,-74.38029094,39.4169408,126 N NEW RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_151_10,-74.62775741,39.36522902,110 MOHAWK LANE,ABSECON CITY,17,1952,1,RES1,3001 -0101_151_10,-74.53069316,39.37582049,110 MOHAWK LANE,ABSECON CITY,17,1952,1,RES1,3001 -0101_151_11,-74.61925465,39.36438488,116 N NEW RD,ABSECON CITY,17,1948,1,COM4,3004 -0101_151_11,-74.5241865,39.3840075,116 N NEW RD,ABSECON CITY,17,1948,1,IND2,3002 -0101_151_14,-74.63625261,39.36805767,100 MOHAWK LANE,ABSECON CITY,17,1962,1,RES1,3002 -0101_151_14,-74.52618916,39.38235454,100 MOHAWK LANE,ABSECON CITY,17,1962,1,RES1,3001 -0101_151_2,-74.64291121,39.33382942,130 MOHAWK LANE,ABSECON CITY,17,1950,1,COM1,3004 -0101_151_2,-74.37350717,39.42054692,130 MOHAWK LANE,ABSECON CITY,17,1950,1,RES1,3001 -0101_151_3,-74.638434,39.3388365,124 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_151_3,-74.37524529,39.41986089,124 N NEW RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_151_4,-74.63455078,39.34915316,126 MOHAWK LANE,ABSECON CITY,17,1953,1,RES1,3001 -0101_151_4,-74.44562718,39.37482612,126 MOHAWK LANE,ABSECON CITY,17,1953,1,RES1,3001 -0101_151_6,-74.641804,39.341106,122 N NEW RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_151_6,-74.4463615,39.373209,122 N NEW RD,ABSECON CITY,17,1930,1,GOV1,3004 -0101_151_7,-74.6451085,39.3370415,120 N NEW RD,ABSECON CITY,17,1948,1,GOV1,3004 -0101_151_7,-74.448985,39.3721765,120 N NEW RD,ABSECON CITY,17,1948,1,GOV1,3004 -0101_151_8,-74.65956941,39.34733282,116 MOHAWK LANE,ABSECON CITY,17,1950,1,RES1,3004 -0101_151_8,-74.454848,39.3747245,116 MOHAWK LANE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_151_9,-74.625352,39.357033,118 N NEW RD,ABSECON CITY,17,1948,1,RES1,3001 -0101_151_9,-74.50817325,39.38487915,118 N NEW RD,ABSECON CITY,17,1948,1,RES1,3001 -0101_152_1,-74.63478711,39.36777138,313 DELAWARE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_152_1,-74.50739933,39.3859265,313 DELAWARE AVE,ABSECON CITY,17,1925,1,RES1,3004 -0101_152_2,-74.63390749,39.36777668,125 W WYOMING AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_152_2,-74.50891073,39.40000322,125 W WYOMING AVE,ABSECON CITY,17,1928,1,COM1,3004 -0101_152_3,-74.63418196,39.36714855,121 MOHAWK LANE,ABSECON CITY,17,1958,1,RES1,3001 -0101_152_3,-74.51786222,39.38845659,121 MOHAWK LANE,ABSECON CITY,17,1958,1,RES1,3001 -0101_152_4,-74.63501453,39.36565975,117 W WYOMING AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_152_4,-74.51964136,39.38709903,117 W WYOMING AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_152_5,-74.63233067,39.36399105,117 MOHAWK LANE,ABSECON CITY,17,1965,1,RES1,3001 -0101_152_5,-74.5117775,39.385383,117 MOHAWK LANE,ABSECON CITY,17,1965,1,IND2,3002 -0101_152_6,-74.63518183,39.36308049,113 W WYOMING AVE,ABSECON CITY,17,1931,1,RES1,3001 -0101_152_6,-74.52484003,39.39362732,113 W WYOMING AVE,ABSECON CITY,17,1931,1,RES1,3001 -0101_152_8,-74.65028411,39.35729229,310 W CHURCH ST,ABSECON CITY,17,1957,1,RES1,3001 -0101_152_8,-74.524026,39.393493,310 W CHURCH ST,ABSECON CITY,17,1957,1,RES1,3001 -0101_152_9,-74.650699,39.35347,300 W CHURCH ST,ABSECON CITY,17,1930,1,RES1,3001 -0101_152_9,-74.5202855,39.3887515,300 W CHURCH ST,ABSECON CITY,17,1930,1,GOV1,3004 -0101_153_1,-74.65433976,39.36762953,126 W WYOMING AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_153_1,-74.52693395,39.38870751,126 W WYOMING AVE,ABSECON CITY,17,1958,1,GOV1,3004 -0101_153_10,-74.77324525,39.316775,222 W CHURCH ST,ABSECON CITY,17,1952,1,RES1,3001 -0101_153_10,-74.52730818,39.40212406,222 W CHURCH ST,ABSECON CITY,17,1952,1,RES1,3001 -0101_153_11,-74.7830625,39.31520098,216 W CHURCH ST,ABSECON CITY,17,1960,1,GOV1,3004 -0101_153_11,-74.5277375,39.401883,216 W CHURCH ST,ABSECON CITY,17,1960,1,GOV1,3004 -0101_153_2,-74.66932715,39.35800357,211 DELAWARE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_153_2,-74.5304775,39.387801,211 DELAWARE AVE,ABSECON CITY,17,1925,1,GOV1,3004 -0101_153_3,-74.68417973,39.35698131,120 W WYOMING AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_153_3,-74.5230825,39.3865745,120 W WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_153_4,-74.66338114,39.36319607,115 LENAPE LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_153_4,-74.53106287,39.38537165,115 LENAPE LANE,ABSECON CITY,17,1954,1,GOV1,3004 -0101_153_5,-74.68818353,39.35924187,116 W WYOMING AVE,ABSECON CITY,17,1910,1,GOV1,3004 -0101_153_5,-74.518057,39.402087,116 W WYOMING AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_153_8,-74.693345,39.3539645,112 W WYOMING AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_153_8,-74.51453,39.3987175,112 W WYOMING AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_153_9,-74.7580854,39.30580369,111 LENAPE LANE,ABSECON CITY,17,1952,1,RES1,3001 -0101_153_9,-74.51547218,39.39688104,111 LENAPE LANE,ABSECON CITY,17,1952,1,GOV1,3004 -0101_154_1,-74.7870835,39.3113765,203 DELAWARE AVE,ABSECON CITY,17,1920,1,RES1,3004 -0101_154_1,-74.52103782,39.40161381,203 DELAWARE AVE,ABSECON CITY,17,1920,1,GOV1,3004 -0101_154_2,-74.80153433,39.36744053,120 LENAPE LANE,ABSECON CITY,17,1995,1,GOV1,3004 -0101_154_2,-74.52797119,39.40031711,120 LENAPE LANE,ABSECON CITY,17,1995,1,RES1,3001 -0101_154_4,-74.540258,39.3749275,116 LENAPE LANE,ABSECON CITY,17,1940,1,RES1,3001 -0101_154_4,-74.53014422,39.39935569,116 LENAPE LANE,ABSECON CITY,17,1940,1,GOV1,3004 -0101_154_7,-74.54191167,39.372765,111 HURON AVE,ABSECON CITY,17,1952,1,RES3A,3001 -0101_154_7,-74.52288565,39.39886194,111 HURON AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_154_8,-74.53738341,39.37136316,210 W CHURCH ST,ABSECON CITY,17,1948,1,RES1,3001 -0101_154_8,-74.5220035,39.396276,210 W CHURCH ST,ABSECON CITY,17,1948,1,GOV1,3004 -0101_154_9,-74.548606,39.376769,200 W CHURCH ST,ABSECON CITY,17,1948,1,GOV1,3004 -0101_154_9,-74.529654,39.3957185,200 W CHURCH ST,ABSECON CITY,17,1948,1,RES1,3001 -0101_155_1,-74.54991091,39.37684172,290 HURON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_155_1,-74.5247599,39.41262164,290 HURON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_155_10,-74.540476,39.392578,246 HURON AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_155_10,-74.50064979,39.43493202,246 HURON AVE,ABSECON CITY,17,1953,1,GOV1,3004 -0101_155_11,-74.53933069,39.39052261,405 PITNEY ROAD,ABSECON CITY,17,1920,1,GOV1,3004 -0101_155_11,-74.501883,39.434044,405 PITNEY ROAD,ABSECON CITY,17,1920,1,GOV1,3004 -0101_155_12,-74.54275957,39.39265516,401 PITNEY RD,ABSECON CITY,16,1920,1,RES1,3001 -0101_155_12,-74.50691217,39.43216299,401 PITNEY RD,ABSECON CITY,16,1920,1,GOV1,3004 -0101_155_13,-74.54332955,39.38778584,399 PITNEY RD,ABSECON CITY,17,1984,1,RES1,3001 -0101_155_13,-74.5305055,39.4251335,399 PITNEY RD,ABSECON CITY,17,1984,1,RES1,3001 -0101_155_14,-74.55049666,39.38655471,234 HURON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_155_14,-74.52186617,39.42493241,234 HURON AVE,ABSECON CITY,17,1958,1,GOV1,3004 -0101_155_15,-74.53263832,39.39915738,397 PITNEY ROAD,ABSECON CITY,17,1929,1,RES1,3001 -0101_155_15,-74.51796439,39.43486438,397 PITNEY ROAD,ABSECON CITY,17,1929,1,GOV1,3004 -0101_155_16,-74.54160833,39.3975125,224 HURON AVE,ABSECON CITY,17,1949,1,GOV1,3004 -0101_155_16,-74.51536422,39.43307383,224 HURON AVE,ABSECON CITY,17,1949,1,RES1,3001 -0101_155_17,-74.5386975,39.3967235,303 PITNEY ROAD,ABSECON CITY,17,1939,1,RES1,3001 -0101_155_17,-74.51448528,39.43168668,303 PITNEY ROAD,ABSECON CITY,17,1939,1,GOV1,3004 -0101_155_18,-74.54907491,39.3957484,220 HURON AVE,ABSECON CITY,17,1934,1,RES1,3004 -0101_155_18,-74.511978,39.430845,220 HURON AVE,ABSECON CITY,17,1934,1,RES1,3001 -0101_155_19,-74.56257672,39.38835568,212 HURON AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_155_19,-74.5277485,39.429767,212 HURON AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_155_2,-74.54234674,39.37678163,286 HURON AVE,ABSECON CITY,17,1960,1,COM1,3004 -0101_155_2,-74.49721168,39.4248101,286 HURON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_155_20,-74.5568635,39.397782,208 HURON AVE,ABSECON CITY,17,1930,2,COM4,3004 -0101_155_20,-74.52457371,39.42899908,208 HURON AVE,ABSECON CITY,17,1930,2,RES1,3001 -0101_155_21,-74.5574574,39.3967159,204 HURON AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_155_21,-74.44104708,39.48972937,204 HURON AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_155_22,-74.5777045,39.38314117,231 PITNEY ROAD,ABSECON CITY,17,1930,1,GOV1,3004 -0101_155_22,-74.4699655,39.44367,231 PITNEY ROAD,ABSECON CITY,17,1930,1,GOV1,3004 -0101_155_23,-74.5967105,39.3802145,12 OAK DRIVE,ABSECON CITY,17,1949,1,RES1,3001 -0101_155_23,-74.47375684,39.43906153,12 OAK DRIVE,ABSECON CITY,17,1949,1,RES1,3001 -0101_155_24,-74.5945445,39.380088,229 PITNEY ROAD,ABSECON CITY,17,1983,1,RES1,3001 -0101_155_24,-74.46140818,39.46528754,229 PITNEY ROAD,ABSECON CITY,17,1983,1,RES1,3001 -0101_155_25,-74.5933965,39.378598,171 PITNEY ROAD,ABSECON CITY,17,1950,2,GOV1,3004 -0101_155_25,-74.46297315,39.4642283,171 PITNEY ROAD,ABSECON CITY,17,1950,2,RES1,3001 -0101_155_26,-74.58893235,39.37717962,132 HURON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_155_26,-74.506649,39.4437975,132 HURON AVE,ABSECON CITY,17,1925,1,GOV1,3004 -0101_155_27,-74.59771703,39.37271225,16 OAK DR,ABSECON CITY,17,1958,2,RES1,3001 -0101_155_27,-74.50573318,39.44333515,16 OAK DR,ABSECON CITY,17,1958,2,RES1,3001 -0101_155_29,-74.60775437,39.37193371,124 HURON AVE,ABSECON CITY,17,1929,1,RES1,3001 -0101_155_29,-74.50420759,39.43687486,124 HURON AVE,ABSECON CITY,17,1929,1,RES1,3001 -0101_155_3,-74.55556357,39.37104664,284 HURON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_155_3,-74.49158522,39.42199083,284 HURON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_155_30,-74.60018781,39.37061885,14 OAK DRIVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_155_30,-74.50883791,39.43628565,14 OAK DRIVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_155_31,-74.60333673,39.3686009,116 HURON AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_155_31,-74.49540024,39.44687255,116 HURON AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_155_32,-74.61768839,39.37376198,10 OAK DRIVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_155_32,-74.49958385,39.45224046,10 OAK DRIVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_155_33,-74.589067,39.3856495,8 OAK DRIVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_155_33,-74.501649,39.451654,8 OAK DRIVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_155_34,-74.60406361,39.32602179,1 OAK DR,ABSECON CITY,17,1920,1,RES1,3001 -0101_155_34,-74.462115,39.359166,1 OAK DR,ABSECON CITY,17,1920,1,GOV1,3004 -0101_155_35,-74.6104645,39.3265165,129 PITNEY ROAD,ABSECON CITY,17,1910,1,RES1,3001 -0101_155_35,-74.46459666,39.35779451,129 PITNEY ROAD,ABSECON CITY,17,1910,1,RES1,3001 -0101_155_36,-74.574523,39.3424595,125 PITNEY RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_155_36,-74.46378149,39.35728383,125 PITNEY RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_155_37,-74.57461263,39.34170833,108 HURON AVE,ABSECON CITY,17,1930,1,RES1,3002 -0101_155_37,-74.461308,39.357215,108 HURON AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_155_38,-74.57159948,39.33897632,140 W CHURCH ST,ABSECON CITY,43,1925,2,RES1,3001 -0101_155_38,-74.4649255,39.3571915,140 W CHURCH ST,ABSECON CITY,43,1925,2,RES1,3001 -0101_155_39,-74.57059,39.3445135,134 W CHURCH ST,ABSECON CITY,17,1925,1,GOV1,3004 -0101_155_39,-74.46371151,39.35511067,134 W CHURCH ST,ABSECON CITY,17,1925,1,RES1,3001 -0101_155_4,-74.563588,39.369042,282 HURON AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_155_4,-74.49273136,39.41966593,282 HURON AVE,ABSECON CITY,17,1953,1,GOV1,3004 -0101_155_40,-74.54823239,39.36665523,130 W CHURCH ST,ABSECON CITY,17,1925,2,RES1,3001 -0101_155_40,-74.45548217,39.35348849,130 W CHURCH ST,ABSECON CITY,17,1925,2,RES1,3001 -0101_155_41,-74.55529168,39.35837103,126 W CHURCH ST,ABSECON CITY,17,1920,2,RES1,3001 -0101_155_41,-74.4665025,39.3578985,126 W CHURCH ST,ABSECON CITY,17,1920,2,RES1,3001 -0101_155_43,-74.56456385,39.35901001,118 W CHURCH ST,ABSECON CITY,17,1938,1,GOV1,3004 -0101_155_43,-74.4667965,39.3566695,118 W CHURCH ST,ABSECON CITY,17,1938,1,RES1,3001 -0101_155_45,-74.5703744,39.35840487,114 W CHURCH ST,ABSECON CITY,17,1938,1,RES1,3001 -0101_155_45,-74.48359598,39.35413716,114 W CHURCH ST,ABSECON CITY,17,1938,1,GOV1,3004 -0101_155_46,-74.56486853,39.35753433,110 W CHURCH ST,ABSECON CITY,17,1991,1,RES1,3001 -0101_155_46,-74.48200984,39.35344258,110 W CHURCH ST,ABSECON CITY,17,1991,1,GOV1,3004 -0101_155_5,-74.573347,39.371138,272 HURON AVE,ABSECON CITY,17,1926,1,GOV1,3004 -0101_155_5,-74.50239915,39.42591665,272 HURON AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_155_6.01,-74.57013677,39.3704676,501 PITNEY ROAD,ABSECON CITY,17,1917,1,RES1,3001 -0101_155_6.01,-74.50184766,39.42481603,501 PITNEY ROAD,ABSECON CITY,17,1917,1,RES1,3004 -0101_155_6.02,-74.56911029,39.37071937,503 PITNEY ROAD,ABSECON CITY,17,1987,1,COM1,3004 -0101_155_6.02,-74.49829604,39.42494256,503 PITNEY ROAD,ABSECON CITY,17,1987,1,GOV1,3004 -0101_155_7,-74.56479177,39.36907159,411 PITNEY ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_155_7,-74.49502414,39.43483809,411 PITNEY ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_155_8,-74.5537964,39.38047778,409 PITNEY ROAD,ABSECON CITY,17,1920,1,COM1,3004 -0101_155_8,-74.4940028,39.43130835,409 PITNEY ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_155_9,-74.57320411,39.37724587,256 HURON AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_155_9,-74.4959685,39.4307535,256 HURON AVE,ABSECON CITY,17,1964,1,RES1,3004 -0101_157_1,-74.54822427,39.47730795,247 N SHORE ROAD,ABSECON CITY,17,1908,1,RES1,3001 -0101_157_1,-74.59541283,39.3176165,247 N SHORE ROAD,ABSECON CITY,17,1908,1,RES1,3001 -0101_157_10,-74.5553415,39.472789,131 W FAUNCE LANDING RD,ABSECON CITY,17,1925,1,RES1,3001 -0101_157_10,-74.60494389,39.32449183,131 W FAUNCE LANDING RD,ABSECON CITY,17,1925,1,RES1,3001 -0101_157_11,-74.56573329,39.47981671,139 W FAUNCE LANDING RD,ABSECON CITY,17,1956,1,GOV1,3004 -0101_157_11,-74.6012975,39.3218625,139 W FAUNCE LANDING RD,ABSECON CITY,17,1956,1,RES1,3001 -0101_157_12,-74.534669,39.4907905,143 W FAUNCE LANDING RD,ABSECON CITY,17,1925,1,RES1,3001 -0101_157_12,-74.606025,39.319636,143 W FAUNCE LANDING RD,ABSECON CITY,17,1925,1,RES1,3001 -0101_157_13,-74.5360495,39.489303,147 W FAUNCE LANDING RD,ABSECON CITY,45,1920,2,RES1,3001 -0101_157_13,-74.6057175,39.317979,147 W FAUNCE LANDING RD,ABSECON CITY,45,1920,2,RES1,3004 -0101_157_14,-74.53633059,39.48905999,226 PITNEY ROAD,ABSECON CITY,17,1948,1,GOV1,3004 -0101_157_14,-74.61352084,39.32494348,226 PITNEY ROAD,ABSECON CITY,17,1948,1,RES1,3001 -0101_157_15,-74.535101,39.5018985,220 PITNEY ROAD,ABSECON CITY,45,1920,2,RES1,3001 -0101_157_15,-74.61016735,39.32375054,220 PITNEY ROAD,ABSECON CITY,45,1920,2,RES1,3001 -0101_157_16,-74.53754027,39.50141799,180 PITNEY ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_157_16,-74.6124345,39.3235895,180 PITNEY ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_157_17,-74.560859,39.4873,168 PITNEY ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_157_17,-74.613719,39.3222035,168 PITNEY ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_157_18,-74.5565025,39.5029535,156 PITNEY ROAD,ABSECON CITY,17,1955,1,GOV1,3004 -0101_157_18,-74.60816764,39.32180905,156 PITNEY ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_157_19,-74.580385,39.473932,144 PITNEY ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_157_19,-74.59915554,39.33014266,144 PITNEY ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_157_2,-74.55004838,39.47565122,117 W FAUNCE LANDING RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_157_2,-74.57911283,39.33228203,117 W FAUNCE LANDING RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_157_20,-74.58172956,39.47352622,132 PITNEY ROAD,ABSECON CITY,17,1958,1,RES1,3001 -0101_157_20,-74.6056045,39.3285395,132 PITNEY ROAD,ABSECON CITY,17,1958,1,GOV1,3004 -0101_157_21,-74.57803817,39.4813885,120 PITNEY ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_157_21,-74.61033711,39.32770828,120 PITNEY ROAD,ABSECON CITY,17,1952,1,GOV1,3004 -0101_157_23,-74.604643,39.4868355,127 N SHORE ROAD,ABSECON CITY,17,1890,1,RES1,3001 -0101_157_23,-74.61144067,39.32609518,127 N SHORE ROAD,ABSECON CITY,17,1890,1,RES1,3001 -0101_157_24,-74.60311711,39.48372772,121 N SHORE ROAD,ABSECON CITY,17,1948,1,RES1,3001 -0101_157_24,-74.57391322,39.34263647,121 N SHORE ROAD,ABSECON CITY,17,1948,1,RES1,3001 -0101_157_25,-74.548519,39.380425,111 N SHORE RD,ABSECON CITY,17,1890,1,RES1,3001 -0101_157_25,-74.5127755,39.411125,111 N SHORE RD,ABSECON CITY,17,1890,1,RES1,3001 -0101_157_26,-74.5522825,39.3771775,103 N SHORE ROAD,ABSECON CITY,45,1880,3,RES1,3001 -0101_157_26,-74.52047924,39.41865784,103 N SHORE ROAD,ABSECON CITY,45,1880,3,RES1,3001 -0101_157_3,-74.5500121,39.47642954,115 W FAUNCE LANDING RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_157_3,-74.579827,39.3329005,115 W FAUNCE LANDING RD,ABSECON CITY,17,1968,1,RES1,3001 -0101_157_4,-74.54532523,39.47403004,233 N SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_157_4,-74.582602,39.331331,233 N SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_157_5,-74.55225934,39.47182168,229 N SHORE ROAD,ABSECON CITY,17,1923,1,RES1,3001 -0101_157_5,-74.5824255,39.33125,229 N SHORE ROAD,ABSECON CITY,17,1923,1,RES1,3001 -0101_157_6,-74.555945,39.4769065,119 W FAUNCE LANDING RD,ABSECON CITY,17,1925,1,RES1,3001 -0101_157_6,-74.58974494,39.32994907,119 W FAUNCE LANDING RD,ABSECON CITY,17,1925,1,RES1,3001 -0101_157_7,-74.5551057,39.47599728,137 N SHORE ROAD,ABSECON CITY,17,1948,1,RES1,3001 -0101_157_7,-74.587423,39.3282085,137 N SHORE ROAD,ABSECON CITY,17,1948,1,GOV1,3004 -0101_157_8,-74.5539925,39.4736605,133 N SHORE RD,ABSECON CITY,17,1896,1,RES1,3001 -0101_157_8,-74.58915188,39.32804308,133 N SHORE RD,ABSECON CITY,17,1896,1,RES1,3001 -0101_157_9,-74.557624,39.476313,127 W FAUNCE LANDING RD,ABSECON CITY,16,1925,1,RES1,3001 -0101_157_9,-74.58873217,39.32947897,127 W FAUNCE LANDING RD,ABSECON CITY,16,1925,1,GOV1,3004 -0101_158_1.01,-74.5418585,39.381345,29 N SHORE RD,ABSECON CITY,18,1900,1,RES1,3001 -0101_158_1.01,-74.44809845,39.3737022,29 N SHORE RD,ABSECON CITY,18,1900,1,RES1,3001 -0101_158_2,-74.53381924,39.47048746,12-14 STATION AVE,ABSECON CITY,,0,1,GOV1,3004 -0101_158_2,-74.59365777,39.31801887,12-14 STATION AVE,ABSECON CITY,,0,1,RES1,3001 -0101_16_1.01,-74.8846975,39.593608,615 N SHORE RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_16_1.01,-74.552657,39.46437,615 N SHORE RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_16_2,-74.706515,39.6431745,35 AMY LANE,ABSECON CITY,17,1950,1,RES1,3001 -0101_16_2,-74.5530735,39.464288,35 AMY LANE,ABSECON CITY,17,1950,1,RES1,3001 -0101_16_3,-74.6878625,39.653906,33 AMY LANE,ABSECON CITY,15,1989,1,RES1,3001 -0101_16_3,-74.58172796,39.44695427,33 AMY LANE,ABSECON CITY,15,1989,1,RES1,3001 -0101_16_4.01,-74.7170985,39.641649,625 N SHORE RD,ABSECON CITY,17,1935,1,RES1,3001 -0101_16_4.01,-74.6014965,39.43631,625 N SHORE RD,ABSECON CITY,17,1935,1,GOV1,3004 -0101_16_5,-74.77621433,39.6461805,629 N SHORE RD,ABSECON CITY,17,1976,1,RES1,3001 -0101_16_5,-74.60851106,39.43999432,629 N SHORE RD,ABSECON CITY,17,1976,1,RES1,3001 -0101_160_1.01,-74.5441885,39.374418,57 N SHORE ROAD,ABSECON CITY,17,1799,1,RES1,3001 -0101_160_1.01,-74.36965764,39.41315841,57 N SHORE ROAD,ABSECON CITY,17,1799,1,RES1,3001 -0101_160_1.02,-74.54369693,39.37197899,11 W CHURCH ST,ABSECON CITY,17,1997,1,RES1,3001 -0101_160_1.02,-74.374977,39.4127105,11 W CHURCH ST,ABSECON CITY,17,1997,1,RES1,3001 -0101_160_14,-74.53731779,39.38374949,51 N SHORE RD,ABSECON CITY,,0,1,RES1,3001 -0101_160_14,-74.37849706,39.41339509,51 N SHORE RD,ABSECON CITY,,0,1,RES1,3001 -0101_160_15,-74.53267171,39.38313502,49 N SHORE ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_160_15,-74.453595,39.375433,49 N SHORE ROAD,ABSECON CITY,17,1955,1,EDU1,3004 -0101_160_18,-74.53157383,39.38212749,114 CHERRY COURT,ABSECON CITY,17,1930,1,RES1,3001 -0101_160_18,-74.4504805,39.374365,114 CHERRY COURT,ABSECON CITY,17,1930,1,RES1,3001 -0101_160_2,-74.54954645,39.37150984,17 W CHURCH ST,ABSECON CITY,45,1890,3,RES1,3001 -0101_160_2,-74.374016,39.4126305,17 W CHURCH ST,ABSECON CITY,45,1890,3,RES1,3001 -0101_160_20,-74.53481739,39.38138613,21 STATION AVE,ABSECON CITY,45,1900,4,GOV1,3004 -0101_160_20,-74.44563371,39.37423857,21 STATION AVE,ABSECON CITY,45,1900,4,RES1,3001 -0101_160_21,-74.5341245,39.381396,17 STATION AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_160_21,-74.453726,39.3737425,17 STATION AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_160_3.01,-74.54934849,39.37011534,42 MECHANIC ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_160_3.01,-74.37366,39.412516,42 MECHANIC ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_160_3.03,-74.52853845,39.3801019,44 MECHANIC ST,ABSECON CITY,17,2007,1,RES1,3001 -0101_160_3.03,-74.68700212,39.65409535,44 MECHANIC ST,ABSECON CITY,17,2007,1,RES1,3001 -0101_160_4,-74.5499115,39.369909,36 MECHANIC ST,ABSECON CITY,43,1910,4,RES1,3001 -0101_160_4,-74.369338,39.411341,36 MECHANIC ST,ABSECON CITY,43,1910,4,RES1,3001 -0101_160_7,-74.53901016,39.38464934,28 MECHANIC ST,ABSECON CITY,17,1928,1,RES1,3001 -0101_160_7,-74.38190133,39.41521571,28 MECHANIC ST,ABSECON CITY,17,1928,1,COM8,3004 -0101_160_8,-74.53236797,39.38408117,154 NEW JERSEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_160_8,-74.37886831,39.4141794,154 NEW JERSEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_161_10,-74.552513,39.37455395,41 MECHANIC ST,ABSECON CITY,17,1956,1,RES1,3001 -0101_161_10,-74.3709755,39.415233,41 MECHANIC ST,ABSECON CITY,17,1956,1,RES1,3001 -0101_161_2,-74.5448395,39.384035,101 W CHURCH ST,ABSECON CITY,17,1890,1,RES1,3001 -0101_161_2,-74.5138125,39.413273,101 W CHURCH ST,ABSECON CITY,17,1890,1,RES1,3001 -0101_161_3,-74.5462675,39.38062,49 W CHURCH ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_161_3,-74.51602483,39.41141093,49 W CHURCH ST,ABSECON CITY,17,1920,1,GOV1,3004 -0101_161_4,-74.6006595,39.4375035,45 W CHURCH ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_161_4,-74.613747,39.31223,45 W CHURCH ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_161_5,-74.61823167,39.43861258,37 W CHURCH ST,ABSECON CITY,17,1952,1,RES1,3001 -0101_161_5,-74.58589441,39.32474932,37 W CHURCH ST,ABSECON CITY,17,1952,1,GOV1,3004 -0101_161_6,-74.61793934,39.43707718,21 MECHANIC ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_161_6,-74.59325817,39.32234853,21 MECHANIC ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_161_7,-74.616723,39.44890067,27 MECHANIC ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_161_7,-74.58919246,39.32092417,27 MECHANIC ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_161_8,-74.5393105,39.47559,33 MECHANIC ST,ABSECON CITY,17,1926,1,RES1,3001 -0101_161_8,-74.58938561,39.31969521,33 MECHANIC ST,ABSECON CITY,17,1926,1,RES1,3001 -0101_161_9,-74.5514366,39.37523684,37 MECHANIC ST,ABSECON CITY,17,1926,1,RES1,3001 -0101_161_9,-74.36896321,39.41615436,37 MECHANIC ST,ABSECON CITY,17,1926,1,RES1,3001 -0101_162_1.02,-74.53795855,39.37888631,207 W CHURCH ST,ABSECON CITY,17,1964,1,RES1,3001 -0101_162_1.02,-74.509467,39.4048865,207 W CHURCH ST,ABSECON CITY,17,1964,1,RES1,3001 -0101_162_2,-74.53464816,39.37827254,27 SCHOOL ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_162_2,-74.5210275,39.4044315,27 SCHOOL ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_162_3,-74.546054,39.384794,23 SCHOOL ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_162_3,-74.53050884,39.40337223,23 SCHOOL ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_162_4,-74.55110044,39.38452181,19 SCHOOL ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_162_4,-74.51526499,39.41430335,19 SCHOOL ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_163_1,-74.54967199,39.37636667,331 W CHURCH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_163_1,-74.52771384,39.39450068,331 W CHURCH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_163_12,-74.5330725,39.3819945,310 NEW JERSEY AVE,ABSECON CITY,16,1960,1,RES1,3001 -0101_163_12,-74.501993,39.4126645,310 NEW JERSEY AVE,ABSECON CITY,16,1960,1,RES1,3001 -0101_163_13,-74.540161,39.381702,308 NEW JERSEY AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_163_13,-74.50405359,39.41247311,308 NEW JERSEY AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_163_14,-74.532608,39.38163533,300 NEW JERSEY AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_163_14,-74.51878398,39.41026317,300 NEW JERSEY AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_163_2,-74.5425547,39.3739735,329 W CHURCH ST,ABSECON CITY,17,1929,1,RES1,3001 -0101_163_2,-74.52615802,39.39393689,329 W CHURCH ST,ABSECON CITY,17,1929,1,RES1,3001 -0101_163_3,-74.54666844,39.37403131,325 W CHURCH ST,ABSECON CITY,17,1926,1,RES2,3005 -0101_163_3,-74.48398593,39.4306247,325 W CHURCH ST,ABSECON CITY,17,1926,1,RES1,3001 -0101_163_4,-74.55194092,39.37282432,321 W CHURCH ST,ABSECON CITY,17,1924,1,RES1,3001 -0101_163_4,-74.50040284,39.40977,321 W CHURCH ST,ABSECON CITY,17,1924,1,RES1,3001 -0101_163_5,-74.545467,39.3713945,317 W CHURCH ST,ABSECON CITY,17,1921,1,RES1,3001 -0101_163_5,-74.506455,39.4060605,317 W CHURCH ST,ABSECON CITY,17,1921,1,GOV1,3004 -0101_163_6,-74.5445805,39.371244,313 W CHURCH ST,ABSECON CITY,17,1930,1,RES1,3001 -0101_163_6,-74.50894409,39.40505666,313 W CHURCH ST,ABSECON CITY,17,1930,1,RES1,3001 -0101_163_7,-74.53384692,39.38395486,309 W CHURCH ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_163_7,-74.50827784,39.40477542,309 W CHURCH ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_163_8,-74.53283296,39.38373813,301 W CHURCH ST,ABSECON CITY,17,1958,1,RES1,3001 -0101_163_8,-74.5017525,39.417362,301 W CHURCH ST,ABSECON CITY,17,1958,1,RES1,3001 -0101_163_9,-74.5401853,39.38311393,25 W WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_163_9,-74.50506225,39.41452213,25 W WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_164_12,-74.65414718,39.40571852,121 E FAUNCE LANDING RD,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_12,-74.585102,39.3314125,121 E FAUNCE LANDING RD,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_15,-74.62475906,39.4191783,72 NATALIE TERRACE,ABSECON CITY,17,1959,1,RES1,3001 -0101_164_15,-74.582197,39.331732,72 NATALIE TERRACE,ABSECON CITY,17,1959,1,RES1,3001 -0101_164_17,-74.62893365,39.40748203,70 NATALIE TERRACE,ABSECON CITY,17,1920,1,RES1,3001 -0101_164_17,-74.59330583,39.32168847,70 NATALIE TERRACE,ABSECON CITY,17,1920,1,RES1,3001 -0101_164_18,-74.6829968,39.38444054,66 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_18,-74.5947745,39.3219605,66 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_20,-74.67429567,39.3725405,54 NATALIE TERRACE,ABSECON CITY,17,1944,1,RES1,3001 -0101_164_20,-74.58671518,39.32324004,54 NATALIE TERRACE,ABSECON CITY,17,1944,1,RES1,3001 -0101_164_21,-74.67312935,39.37202205,50 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_21,-74.59382879,39.32333248,50 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_22,-74.6627464,39.40123264,46 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_22,-74.5841445,39.324892,46 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3002 -0101_164_23,-74.65399486,39.40154786,38 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_23,-74.614047,39.3160895,38 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_24,-74.6621795,39.40181,34 NATALIE TERRACE,ABSECON CITY,17,1929,1,RES1,3001 -0101_164_24,-74.60005206,39.30959682,34 NATALIE TERRACE,ABSECON CITY,17,1929,1,GOV1,3004 -0101_164_25,-74.6453895,39.394466,32 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_25,-74.6021371,39.31177124,32 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_26,-74.647721,39.397254,30 NATALIE TERRACE,ABSECON CITY,17,1958,1,RES1,3001 -0101_164_26,-74.60324569,39.31339359,30 NATALIE TERRACE,ABSECON CITY,17,1958,1,RES1,3001 -0101_164_27,-74.6441135,39.3990615,22 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_27,-74.60404194,39.31404851,22 NATALIE TERRACE,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_28,-74.639044,39.4000195,18 NATALIE TERRACE,ABSECON CITY,16,1920,1,RES1,3001 -0101_164_28,-74.60070518,39.31462602,18 NATALIE TERRACE,ABSECON CITY,16,1920,1,RES1,3001 -0101_164_29.01,-74.62251945,39.39414314,224 N SHORE ROAD,ABSECON CITY,17,1915,1,RES1,3001 -0101_164_29.01,-74.598042,39.315247,224 N SHORE ROAD,ABSECON CITY,17,1915,1,GOV1,3004 -0101_164_3,-74.6213225,39.42486,155 E FAUNCE LANDING RD,ABSECON CITY,17,1984,1,RES1,3001 -0101_164_3,-74.59171492,39.33399689,155 E FAUNCE LANDING RD,ABSECON CITY,17,1984,1,GOV1,3004 -0101_164_30,-74.635876,39.3890885,228 N SHORE ROAD,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_30,-74.6165,39.3080845,228 N SHORE ROAD,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_31,-74.63103143,39.39089046,230 N SHORE ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_164_31,-74.59642542,39.31049535,230 N SHORE ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_164_32,-74.63067097,39.39101082,246 N SHORE ROAD,ABSECON CITY,17,1927,1,RES1,3002 -0101_164_32,-74.5957635,39.315455,246 N SHORE ROAD,ABSECON CITY,17,1927,1,RES1,3001 -0101_164_33,-74.626974,39.3861555,9 E FAUNCE LANDING RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_164_33,-74.5801265,39.312385,9 E FAUNCE LANDING RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_164_34,-74.62292026,39.38696208,15 E FAUNCE LANDING RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_164_34,-74.536381,39.3047825,15 E FAUNCE LANDING RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_164_35,-74.62806,39.390312,19 E FAUNCE LANDING RD,ABSECON CITY,17,1985,1,RES1,3001 -0101_164_35,-74.536589,39.30489433,19 E FAUNCE LANDING RD,ABSECON CITY,17,1985,1,RES1,3001 -0101_164_36,-74.63010275,39.39199454,27 E FAUNCE LANDING RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_164_36,-74.50713786,39.52979541,27 E FAUNCE LANDING RD,ABSECON CITY,17,1930,1,GOV1,3004 -0101_164_37,-74.65059173,39.36842562,35 E FAUNCE LANDING RD,ABSECON CITY,17,1929,1,RES1,3001 -0101_164_37,-74.52863271,39.5108085,35 E FAUNCE LANDING RD,ABSECON CITY,17,1929,1,RES1,3001 -0101_164_38,-74.64411733,39.36894303,39 E FAUNCE LANDING RD,ABSECON CITY,17,1958,1,RES1,3001 -0101_164_38,-74.51230594,39.5064013,39 E FAUNCE LANDING RD,ABSECON CITY,17,1958,1,RES1,3001 -0101_164_40,-74.6414515,39.372171,47 E FAUNCE LANDING RD,ABSECON CITY,17,1929,1,RES1,3001 -0101_164_40,-74.50009708,39.51955873,47 E FAUNCE LANDING RD,ABSECON CITY,17,1929,1,RES1,3001 -0101_164_41,-74.63885945,39.38073525,55 E FAUNCE LANDING RD,ABSECON CITY,17,1929,1,RES1,3001 -0101_164_41,-74.49087478,39.51534947,55 E FAUNCE LANDING RD,ABSECON CITY,17,1929,1,RES1,3001 -0101_164_42,-74.62205942,39.38206109,59 E FAUNCE LANDING RD,ABSECON CITY,17,1940,1,RES1,3001 -0101_164_42,-74.49753762,39.51819622,59 E FAUNCE LANDING RD,ABSECON CITY,17,1940,1,RES1,3001 -0101_164_43,-74.62509257,39.38413438,63 E FAUNCE LANDING RD,ABSECON CITY,17,1910,1,IND1,3004 -0101_164_43,-74.46084808,39.52413773,63 E FAUNCE LANDING RD,ABSECON CITY,17,1910,1,RES1,3001 -0101_164_8.01,-74.66114994,39.40360832,141 E FAUNCE LANDING RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_164_8.01,-74.5853425,39.327655,141 E FAUNCE LANDING RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_165_1,-74.60564006,39.41089139,200 N SHORE ROAD,ABSECON CITY,17,1928,1,COM1,3004 -0101_165_1,-74.46924819,39.4996221,200 N SHORE ROAD,ABSECON CITY,17,1928,1,COM1,3004 -0101_165_10,-74.606112,39.4202375,59 NATALIE TERRACE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_165_10,-74.50753142,39.49332327,59 NATALIE TERRACE,ABSECON CITY,17,1955,1,RES1,3001 -0101_165_12,-74.61673579,39.42332809,51 NATALIE TERRACE,ABSECON CITY,17,1950,1,RES1,3001 -0101_165_12,-74.49714634,39.50012794,51 NATALIE TERRACE,ABSECON CITY,17,1950,1,RES1,3001 -0101_165_13,-74.6120945,39.4227685,43 NATALIE TERRACE,ABSECON CITY,17,1928,1,RES1,3001 -0101_165_13,-74.4964825,39.499631,43 NATALIE TERRACE,ABSECON CITY,17,1928,1,RES1,3001 -0101_165_14,-74.611969,39.4222185,35 NATALIE TERRACE,ABSECON CITY,17,1968,1,RES1,3001 -0101_165_14,-74.504137,39.5033665,35 NATALIE TERRACE,ABSECON CITY,17,1968,1,RES1,3001 -0101_165_15,-74.61212153,39.42184231,33 NATALIE TERRACE,ABSECON CITY,16,1955,1,RES1,3001 -0101_165_15,-74.502293,39.5009555,33 NATALIE TERRACE,ABSECON CITY,16,1955,1,RES1,3001 -0101_165_16,-74.6011365,39.43619,21 NATALIE TERRACE,ABSECON CITY,17,1965,1,COM7,3004 -0101_165_16,-74.502815,39.500856,21 NATALIE TERRACE,ABSECON CITY,17,1965,1,RES1,3001 -0101_165_17,-74.60232813,39.43273315,15 NATALIE TERRACE,ABSECON CITY,17,1968,1,RES1,3001 -0101_165_17,-74.50006266,39.49729873,15 NATALIE TERRACE,ABSECON CITY,17,1968,1,RES1,3001 -0101_165_18,-74.61726869,39.43128454,216 N SHORE ROAD,ABSECON CITY,17,1925,1,COM1,3004 -0101_165_18,-74.48671887,39.51996881,216 N SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_165_2,-74.58890489,39.42289682,2 BERKLEY AVE,ABSECON CITY,17,1925,1,COM1,3004 -0101_165_2,-74.50326962,39.47284278,2 BERKLEY AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_165_3,-74.58310327,39.43234193,8 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_165_3,-74.5059234,39.47133019,8 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_165_4,-74.57610251,39.43012634,10 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_165_4,-74.50481317,39.47976284,10 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_165_5,-74.59137,39.432062,14 BERKLEY AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_165_5,-74.51459633,39.4865977,14 BERKLEY AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_165_6,-74.59578698,39.42906815,22 BERKLEY AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_165_6,-74.51318674,39.48546285,22 BERKLEY AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_165_7,-74.59424372,39.42874291,55 NATALIE TERRACE,ABSECON CITY,17,1926,1,RES1,3001 -0101_165_7,-74.489242,39.495328,55 NATALIE TERRACE,ABSECON CITY,17,1926,1,RES1,3001 -0101_165_8,-74.60184704,39.42060997,30 BERKLEY AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_165_8,-74.4919465,39.494791,30 BERKLEY AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_165_9,-74.6058285,39.4203295,200 EUCLID DRIVE,ABSECON CITY,17,1947,1,RES3A,3001 -0101_165_9,-74.4897305,39.4925225,200 EUCLID DRIVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_166_1,-74.55161438,39.42707031,194 N SHORE ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_166_1,-74.4533777,39.48978719,194 N SHORE ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_166_11,-74.57439308,39.42889361,212 TREMONT AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_166_11,-74.45507984,39.48825792,212 TREMONT AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_166_16,-74.5807804,39.41020419,100 EUCLID DRIVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_166_16,-74.45381612,39.50118669,100 EUCLID DRIVE,ABSECON CITY,17,1959,1,RES2,3005 -0101_166_17,-74.5856145,39.4093125,37 BERKLEY AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_166_17,-74.45585568,39.49703026,37 BERKLEY AVE,ABSECON CITY,17,1954,1,GOV1,3004 -0101_166_18,-74.5819795,39.4142725,31 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_166_18,-74.4648005,39.496954,31 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_166_19,-74.57524922,39.41163685,23 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_166_19,-74.46380202,39.49626089,23 BERKLEY AVE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_166_2,-74.55228968,39.42633748,2 TREMONT AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_166_2,-74.464609,39.495526,2 TREMONT AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_166_20,-74.58881407,39.41587331,15 BERKLEY AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_166_20,-74.47182585,39.49219428,15 BERKLEY AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_166_21,-74.59163906,39.41446225,11 BERKLEY AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_166_21,-74.47366186,39.49040873,11 BERKLEY AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_166_22,-74.596382,39.411301,5 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_166_22,-74.4683395,39.490132,5 BERKLEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_166_24,-74.6041455,39.4172605,198 N SHORE ROAD,ABSECON CITY,17,1914,1,RES1,3001 -0101_166_24,-74.46945,39.488893,198 N SHORE ROAD,ABSECON CITY,17,1914,1,GOV1,3004 -0101_166_5,-74.55063792,39.42155926,208 TREMONT AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_166_5,-74.46187997,39.49106335,208 TREMONT AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_166_8,-74.55357093,39.42697669,210 TREMONT AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_166_8,-74.45740052,39.48865854,210 TREMONT AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_167_1,-74.606991,39.393148,102 N SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_167_1,-74.50732833,39.44937584,102 N SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_167_10,-74.536534,39.4044695,105 VASSAR SQUARE,ABSECON CITY,17,1967,1,RES1,3001 -0101_167_10,-74.49147106,39.45825661,105 VASSAR SQUARE,ABSECON CITY,17,1967,1,RES1,3001 -0101_167_11,-74.53196703,39.40401037,211 TREMONT AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_167_11,-74.4894625,39.4563845,211 TREMONT AVE,ABSECON CITY,17,1960,1,EDU1,3004 -0101_167_13,-74.54115714,39.41657468,205 TREMONT AVE,ABSECON CITY,17,1980,1,COM7,3004 -0101_167_13,-74.49100618,39.45416114,205 TREMONT AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_167_14.01,-74.53479711,39.41616005,116 N SHORE RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_167_14.01,-74.50732464,39.46155706,116 N SHORE RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_167_14.02,-74.5355445,39.4127435,1 TREMONT AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_167_14.02,-74.4929185,39.4665355,1 TREMONT AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_167_14.03,-74.539407,39.411703,203 TREMONT AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_167_14.03,-74.50911407,39.4651836,203 TREMONT AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_167_2,-74.6058734,39.39208489,114 N SHORE RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_167_2,-74.498569,39.447171,114 N SHORE RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_167_3,-74.606653,39.38982767,3 EARLVIEW TERRACE,ABSECON CITY,17,1920,2,RES1,3001 -0101_167_3,-74.50558818,39.44489756,3 EARLVIEW TERRACE,ABSECON CITY,17,1920,2,GOV1,3004 -0101_167_4,-74.613781,39.3914415,22 E CHURCH ST,ABSECON CITY,17,1987,1,GOV1,3004 -0101_167_4,-74.5121445,39.4401395,22 E CHURCH ST,ABSECON CITY,17,1987,1,RES1,3001 -0101_167_5,-74.60882835,39.39380287,24 E CHURCH ST,ABSECON CITY,45,1930,4,RES1,3001 -0101_167_5,-74.51056316,39.43947898,24 E CHURCH ST,ABSECON CITY,45,1930,4,RES1,3001 -0101_167_6.01,-74.54066267,39.41051747,28 E CHURCH ST,ABSECON CITY,16,1988,1,RES1,3001 -0101_167_6.01,-74.51295182,39.43902756,28 E CHURCH ST,ABSECON CITY,16,1988,1,RES1,3001 -0101_167_6.02,-74.54094399,39.40938783,32 E CHURCH ST,ABSECON CITY,16,1988,1,RES1,3001 -0101_167_6.02,-74.52160691,39.44381015,32 E CHURCH ST,ABSECON CITY,16,1988,1,GOV1,3004 -0101_167_7,-74.53396585,39.40486928,44 E CHURCH ST,ABSECON CITY,17,1930,1,RES1,3001 -0101_167_7,-74.52037091,39.4416397,44 E CHURCH ST,ABSECON CITY,17,1930,1,RES1,3001 -0101_167_9,-74.53322695,39.40459126,103 VASSAR SQUARE,ABSECON CITY,17,1959,1,RES1,3001 -0101_167_9,-74.5203275,39.44534533,103 VASSAR SQUARE,ABSECON CITY,17,1959,1,RES1,3001 -0101_168_1,-74.5374915,39.4112945,102 E CHURCH ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_168_1,-74.51897446,39.46149604,102 E CHURCH ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_168_2,-74.56230224,39.41058394,104 VASSAR SQUARE,ABSECON CITY,17,1960,1,RES1,3001 -0101_168_2,-74.51779344,39.46070019,104 VASSAR SQUARE,ABSECON CITY,17,1960,1,RES1,3001 -0101_168_4,-74.56349434,39.41765443,108 VASSAR SQUARE,ABSECON CITY,17,1968,1,RES1,3001 -0101_168_4,-74.51007894,39.45502584,108 VASSAR SQUARE,ABSECON CITY,17,1968,1,GOV1,3004 -0101_168_6,-74.55831465,39.41331168,104 E CHURCH ST,ABSECON CITY,17,1927,1,RES1,3001 -0101_168_6,-74.529644,39.457479,104 E CHURCH ST,ABSECON CITY,17,1927,1,RES1,3001 -0101_168_9,-74.57401483,39.41887908,215 TREMONT AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_168_9,-74.52178812,39.45642895,215 TREMONT AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_169_1,-74.56613143,39.41891982,202 E CHURCH ST,ABSECON CITY,17,1950,1,RES1,3001 -0101_169_1,-74.519068,39.469484,202 E CHURCH ST,ABSECON CITY,17,1950,1,RES1,3001 -0101_169_2,-74.569194,39.4184095,2 EUCLID DRIVE,ABSECON CITY,17,2015,1,RES1,3001 -0101_169_2,-74.46187,39.47197267,2 EUCLID DRIVE,ABSECON CITY,17,2015,1,RES1,3001 -0101_169_3,-74.56477692,39.41440376,6 EUCLID DRIVE,ABSECON CITY,16,2016,1,RES1,3001 -0101_169_3,-74.47299268,39.48427018,6 EUCLID DRIVE,ABSECON CITY,16,2016,1,RES1,3001 -0101_169_5,-74.5711505,39.4127305,10 EUCLID DRIVE,ABSECON CITY,17,2005,1,RES1,3001 -0101_169_5,-74.47148006,39.48425818,10 EUCLID DRIVE,ABSECON CITY,17,2005,1,RES1,3001 -0101_169_6,-74.57065864,39.4111437,14 EUCLID DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_169_6,-74.45185408,39.49142444,14 EUCLID DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_17_1,-74.56485904,39.3677858,25 HOBART AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_17_1,-74.36818074,39.40263033,25 HOBART AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_17_11,-74.57862373,39.33757061,3 BAYVIEW DR,ABSECON CITY,17,1952,1,RES1,3001 -0101_17_11,-74.35845016,39.41282503,3 BAYVIEW DR,ABSECON CITY,17,1952,1,RES1,3001 -0101_17_13,-74.58150818,39.33827565,2 AMY LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_17_13,-74.35896096,39.41365484,2 AMY LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_17_14,-74.5785465,39.339662,12 AMY LANE,ABSECON CITY,17,1900,1,RES1,3001 -0101_17_14,-74.3608915,39.414106,12 AMY LANE,ABSECON CITY,17,1900,1,RES1,3001 -0101_17_4,-74.56453842,39.36741388,19 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_17_4,-74.363577,39.4185285,19 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_17_6,-74.56580254,39.36724679,11 HOBART AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_17_6,-74.3660557,39.41695396,11 HOBART AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_17_7,-74.56992482,39.36332916,17 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_17_7,-74.35574966,39.41460553,17 BAYVIEW DR,ABSECON CITY,17,1958,1,RES1,3001 -0101_17_9,-74.57761796,39.34016098,15 BAYVIEW DR,ABSECON CITY,17,1960,1,RES1,3001 -0101_17_9,-74.36026286,39.41458696,15 BAYVIEW DR,ABSECON CITY,17,1960,1,RES1,3001 -0101_170_10,-74.57752833,39.33736249,11 E CHURCH STREET,ABSECON CITY,17,1890,1,RES1,3001 -0101_170_10,-74.37672834,39.40084867,11 E CHURCH STREET,ABSECON CITY,17,1890,1,RES1,3001 -0101_170_11,-74.5767162,39.33679226,58 N SHORE ROAD,ABSECON CITY,17,1860,1,RES1,3001 -0101_170_11,-74.37316432,39.40018506,58 N SHORE ROAD,ABSECON CITY,17,1860,1,RES1,3001 -0101_170_12,-74.58833593,39.33696926,52 N SHORE ROAD,ABSECON CITY,17,1924,1,COM3,3004 -0101_170_12,-74.3761935,39.3965585,52 N SHORE ROAD,ABSECON CITY,17,1924,1,RES1,3001 -0101_170_13,-74.57028,39.366941,40 N SHORE RD,ABSECON CITY,16,1770,1,RES1,3001 -0101_170_13,-74.50488067,39.34000254,40 N SHORE RD,ABSECON CITY,16,1770,1,RES1,3001 -0101_170_14,-74.57268764,39.36694682,12 CREEK RD,ABSECON CITY,17,1957,1,RES1,3001 -0101_170_14,-74.4910495,39.3343465,12 CREEK RD,ABSECON CITY,17,1957,1,RES1,3001 -0101_170_16,-74.55946997,39.36452869,10 CREEK RD,ABSECON CITY,17,1964,1,RES1,3001 -0101_170_16,-74.4975665,39.33451,10 CREEK RD,ABSECON CITY,17,1964,1,RES1,3001 -0101_170_17,-74.5622837,39.36482516,8 CREEK RD,ABSECON CITY,17,1961,1,RES1,3001 -0101_170_17,-74.488154,39.335749,8 CREEK RD,ABSECON CITY,17,1961,1,RES1,3001 -0101_170_18,-74.56271596,39.36559618,6 CREEK RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_170_18,-74.49005035,39.33639342,6 CREEK RD,ABSECON CITY,17,1950,1,RES1,3001 -0101_170_19,-74.56570467,39.35297451,4 CREEK ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_170_19,-74.489094,39.3373245,4 CREEK ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_170_2,-74.5739365,39.3668255,107 E CHURCH ST,ABSECON CITY,17,1954,1,RES1,3001 -0101_170_2,-74.50357284,39.33863055,107 E CHURCH ST,ABSECON CITY,17,1954,1,RES1,3001 -0101_170_20,-74.5733125,39.356423,2 CREEK RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_170_20,-74.49386744,39.33787501,2 CREEK RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_170_21,-74.57163309,39.35688641,22 N SHORE ROAD,ABSECON CITY,18,1950,1,RES1,3001 -0101_170_21,-74.48836,39.3382875,22 N SHORE ROAD,ABSECON CITY,18,1950,1,RES1,3001 -0101_170_3,-74.56551957,39.36583655,43 E CHURCH STREET,ABSECON CITY,17,1952,1,RES1,3001 -0101_170_3,-74.50236062,39.33796434,43 E CHURCH STREET,ABSECON CITY,17,1952,1,RES1,3001 -0101_170_4,-74.56490692,39.36529128,23 E CHURCH STREET,ABSECON CITY,17,1958,1,RES1,3001 -0101_170_4,-74.50560164,39.33594135,23 E CHURCH STREET,ABSECON CITY,17,1958,1,RES1,3001 -0101_170_5,-74.56553766,39.36464299,21 E CHURCH STREET,ABSECON CITY,17,1948,1,RES1,3001 -0101_170_5,-74.50548,39.3357785,21 E CHURCH STREET,ABSECON CITY,17,1948,1,RES1,3001 -0101_170_6,-74.56501984,39.36134335,19 E CHURCH ST,ABSECON CITY,17,1958,1,RES1,3001 -0101_170_6,-74.48859232,39.35083977,19 E CHURCH ST,ABSECON CITY,17,1958,1,RES1,3001 -0101_170_7,-74.5784,39.34103,17 E CHURCH ST,ABSECON CITY,17,1957,1,RES1,3001 -0101_170_7,-74.49347167,39.34297945,17 E CHURCH ST,ABSECON CITY,17,1957,1,RES1,3001 -0101_170_8,-74.57907702,39.33896622,15 E CHURCH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_170_8,-74.51293201,39.33764883,15 E CHURCH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_170_9,-74.58320286,39.33803242,13 E CHURCH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_170_9,-74.37120432,39.40104953,13 E CHURCH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_171.01_1,-74.62645047,39.42397269,407 REED ROAD,ABSECON CITY,17,1961,1,RES1,3001 -0101_171.01_1,-74.59362587,39.33368941,407 REED ROAD,ABSECON CITY,17,1961,1,RES1,3001 -0101_171.01_10,-74.60797996,39.43992668,101 PARK CIRCLE,ABSECON CITY,17,1975,1,RES1,3001 -0101_171.01_10,-74.5691805,39.3504455,101 PARK CIRCLE,ABSECON CITY,17,1975,1,RES1,3001 -0101_171.01_2.01,-74.62808781,39.4212284,401 REED ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_171.01_2.01,-74.5898333,39.33304191,401 REED ROAD,ABSECON CITY,17,1960,1,GOV1,3004 -0101_171.01_3.02,-74.62411603,39.42047851,301 REED ROAD,ABSECON CITY,17,1977,1,RES1,3001 -0101_171.01_3.02,-74.58647206,39.33130231,301 REED ROAD,ABSECON CITY,17,1977,1,RES1,3001 -0101_171.01_3.03,-74.6334537,39.42423103,303 REED ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_171.01_3.03,-74.59144554,39.3292918,303 REED ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_171.01_3.04,-74.62003691,39.43527046,305 REED ROAD,ABSECON CITY,17,1974,1,RES1,3001 -0101_171.01_3.04,-74.59024,39.3276075,305 REED ROAD,ABSECON CITY,17,1974,1,RES1,3001 -0101_171.01_3.05,-74.63672048,39.43031817,103 BIRCH CIRCLE,ABSECON CITY,17,1979,1,RES1,3001 -0101_171.01_3.05,-74.60280901,39.32527566,103 BIRCH CIRCLE,ABSECON CITY,17,1979,1,RES1,3001 -0101_171.01_3.06,-74.6463825,39.4335855,105 BIRCH CIRCLE,ABSECON CITY,17,1970,1,RES1,3001 -0101_171.01_3.06,-74.60356364,39.32521417,105 BIRCH CIRCLE,ABSECON CITY,17,1970,1,RES1,3001 -0101_171.01_3.07,-74.64776669,39.43306704,108 BIRCH CIRCLE,ABSECON CITY,17,1975,1,RES1,3001 -0101_171.01_3.07,-74.60648166,39.32305152,108 BIRCH CIRCLE,ABSECON CITY,17,1975,1,RES1,3001 -0101_171.01_3.08,-74.64631258,39.4315048,106 BIRCH CIRCLE,ABSECON CITY,17,1976,1,GOV1,3004 -0101_171.01_3.08,-74.60368968,39.31866705,106 BIRCH CIRCLE,ABSECON CITY,17,1976,1,RES1,3001 -0101_171.01_3.09,-74.6431213,39.43014191,104 BIRCH CIRCLE,ABSECON CITY,17,1976,1,RES1,3001 -0101_171.01_3.09,-74.59866632,39.31769641,104 BIRCH CIRCLE,ABSECON CITY,17,1976,1,COM1,3004 -0101_171.01_3.10,-74.65592083,39.433253,102 BIRCH CIRCLE,ABSECON CITY,17,1974,1,GOV1,3004 -0101_171.01_3.10,-74.60029988,39.31756077,102 BIRCH CIRCLE,ABSECON CITY,17,1974,1,RES1,3001 -0101_171.01_3.11,-74.706029,39.416609,102 WOODS ROAD,ABSECON CITY,17,1979,1,GOV1,3004 -0101_171.01_3.11,-74.61263462,39.32463485,102 WOODS ROAD,ABSECON CITY,17,1979,1,RES1,3001 -0101_171.01_3.12,-74.69986,39.424851,104 WOODS ROAD,ABSECON CITY,17,1973,1,RES1,3001 -0101_171.01_3.12,-74.614668,39.322353,104 WOODS ROAD,ABSECON CITY,17,1973,1,RES1,3001 -0101_171.01_3.13,-74.705843,39.4209515,106 WOODS RD,ABSECON CITY,17,1979,1,GOV1,3004 -0101_171.01_3.13,-74.61197948,39.32207517,106 WOODS RD,ABSECON CITY,17,1979,1,RES1,3001 -0101_171.01_3.14,-74.70681403,39.42998454,108 WOODS RD,ABSECON CITY,17,1977,1,RES1,3001 -0101_171.01_3.14,-74.6106602,39.32072433,108 WOODS RD,ABSECON CITY,17,1977,1,RES1,3001 -0101_171.01_3.15,-74.53870088,39.46164122,2 HILLSIDE CIRCLE,ABSECON CITY,17,1976,1,RES1,3001 -0101_171.01_3.15,-74.6100875,39.3198845,2 HILLSIDE CIRCLE,ABSECON CITY,17,1976,1,GOV1,3004 -0101_171.01_3.16,-74.538936,39.4583855,4 HILLSIDE CIRCLE,ABSECON CITY,17,1978,1,RES1,3001 -0101_171.01_3.16,-74.61767862,39.31951869,4 HILLSIDE CIRCLE,ABSECON CITY,17,1978,1,RES1,3001 -0101_171.01_3.17,-74.535926,39.455211,6 HILLSIDE CIRCLE,ABSECON CITY,17,1992,1,RES1,3001 -0101_171.01_3.17,-74.60833621,39.31793714,6 HILLSIDE CIRCLE,ABSECON CITY,17,1992,1,RES1,3001 -0101_171.01_3.18,-74.54034294,39.46994322,8 HILLSIDE CIRCLE,ABSECON CITY,17,1976,1,RES1,3001 -0101_171.01_3.18,-74.6051615,39.333085,8 HILLSIDE CIRCLE,ABSECON CITY,17,1976,1,RES1,3001 -0101_171.01_3.19,-74.539023,39.4685535,1 HILLSIDE CIRCLE,ABSECON CITY,17,1981,1,RES1,3001 -0101_171.01_3.19,-74.59769973,39.33101165,1 HILLSIDE CIRCLE,ABSECON CITY,17,1981,1,RES1,3001 -0101_171.01_3.34,-74.5490866,39.46975678,118 WOODS RD,ABSECON CITY,17,1994,1,RES1,3001 -0101_171.01_3.34,-74.59916967,39.33074951,118 WOODS RD,ABSECON CITY,17,1994,1,RES1,3001 -0101_171.01_3.36,-74.5518365,39.4692715,122 WOODS RD,ABSECON CITY,17,1970,1,RES1,3001 -0101_171.01_3.36,-74.59780106,39.32956019,122 WOODS RD,ABSECON CITY,17,1970,1,RES1,3001 -0101_171.01_5,-74.55425585,39.45752802,1 PARK CIRCLE,ABSECON CITY,17,1965,1,RES1,3001 -0101_171.01_5,-74.60763435,39.32939631,1 PARK CIRCLE,ABSECON CITY,17,1965,1,RES1,3001 -0101_171.01_6,-74.5539585,39.46757,102 PARK CIRCLE,ABSECON CITY,17,1974,1,RES1,3001 -0101_171.01_6,-74.60201181,39.32813112,102 PARK CIRCLE,ABSECON CITY,17,1974,1,RES1,3001 -0101_171.01_7,-74.55645841,39.46637372,104 PARK CIRCLE,ABSECON CITY,17,1965,1,RES1,3001 -0101_171.01_7,-74.6039175,39.3275815,104 PARK CIRCLE,ABSECON CITY,17,1965,1,RES1,3001 -0101_171.01_8,-74.58263702,39.44643375,106 PARK CIRCLE,ABSECON CITY,17,1963,1,RES1,3001 -0101_171.01_8,-74.5723795,39.342691,106 PARK CIRCLE,ABSECON CITY,17,1963,1,RES1,3001 -0101_171.01_9,-74.60114552,39.44320432,108 PARK CIRCLE,ABSECON CITY,17,1971,1,GOV1,3004 -0101_171.01_9,-74.57180299,39.33814523,108 PARK CIRCLE,ABSECON CITY,17,1971,1,RES1,3001 -0101_171.02_3.21,-74.53178489,39.47020225,109 WOODS ROAD,ABSECON CITY,17,1987,1,RES1,3001 -0101_171.02_3.21,-74.56581998,39.34421509,109 WOODS ROAD,ABSECON CITY,17,1987,1,GOV1,3004 -0101_171.02_3.22,-74.57915162,39.45558554,107 WOODS ROAD,ABSECON CITY,17,1977,1,RES1,3001 -0101_171.02_3.22,-74.56745044,39.34501318,107 WOODS ROAD,ABSECON CITY,17,1977,1,RES1,3001 -0101_171.02_3.23,-74.5856984,39.45600087,105 WOODS ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_171.02_3.23,-74.574824,39.3468225,105 WOODS ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_171.02_3.25,-74.6189255,39.4386025,101 WOODS ROAD,ABSECON CITY,17,1976,1,RES1,3001 -0101_171.02_3.25,-74.5665348,39.34692445,101 WOODS ROAD,ABSECON CITY,17,1976,1,RES1,3001 -0101_171.02_3.26,-74.547799,39.476676,111 WOODS RD,ABSECON CITY,17,1987,1,RES1,3001 -0101_171.02_3.26,-74.54635377,39.36824027,111 WOODS RD,ABSECON CITY,17,1987,1,RES1,3001 -0101_171.02_3.27,-74.548861,39.476591,113 WOODS RD,ABSECON CITY,17,1985,1,GOV1,3004 -0101_171.02_3.27,-74.5522615,39.3664315,113 WOODS RD,ABSECON CITY,17,1985,1,RES1,3001 -0101_171.02_3.28,-74.5525735,39.4749185,115 WOODS ROAD,ABSECON CITY,17,1993,1,RES1,3001 -0101_171.02_3.28,-74.5494515,39.359902,115 WOODS ROAD,ABSECON CITY,17,1993,1,RES1,3001 -0101_171.02_3.29,-74.5475468,39.47149235,117 WOODS RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_171.02_3.29,-74.559819,39.358144,117 WOODS RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_171.02_3.30,-74.55368638,39.47723052,119 WOODS RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_171.02_3.30,-74.55590499,39.35707518,119 WOODS RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_171.02_3.31,-74.56259231,39.47634954,121 WOODS RD,ABSECON CITY,17,1985,1,RES1,3001 -0101_171.02_3.31,-74.55392912,39.35708673,121 WOODS RD,ABSECON CITY,17,1985,1,RES1,3001 -0101_171.02_3.32,-74.55374575,39.47441423,123 WOODS RD,ABSECON CITY,17,1988,1,RES1,3001 -0101_171.02_3.32,-74.56057504,39.35333531,123 WOODS RD,ABSECON CITY,17,1988,1,GOV1,3004 -0101_171.02_4.01,-74.555885,39.472765,211 REED RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_171.02_4.01,-74.5647225,39.354979,211 REED RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_171.02_4.02,-74.56572748,39.47115482,209 REED RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_171.02_4.02,-74.565054,39.353899,209 REED RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_171.02_4.03,-74.56015887,39.47916883,215 REED RD,ABSECON CITY,17,1920,1,COM3,3004 -0101_171.02_4.03,-74.57284564,39.3521413,215 REED RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_172_2,-74.569578,39.489812,230 ABSECON BLVD,ABSECON CITY,,0,1,RES3B,3001 -0101_172_2,-74.56796262,39.35188971,230 ABSECON BLVD,ABSECON CITY,,0,1,RES1,3001 -0101_174_1,-74.58481486,39.48585443,108 REED RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_174_1,-74.574589,39.35166,108 REED RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_174_2,-74.60327871,39.48560015,110 REED RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_174_2,-74.56665179,39.35140108,110 REED RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_174_3,-74.61118959,39.48671799,100 PARK AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_174_3,-74.55904489,39.36707682,100 PARK AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_174_4,-74.6070105,39.4898435,102 PARK AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_174_4,-74.55973922,39.36590302,102 PARK AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_174_5,-74.6068575,39.5024815,104 LAUREL CIRCLE,ABSECON CITY,17,1979,1,RES1,3001 -0101_174_5,-74.55690276,39.36562296,104 LAUREL CIRCLE,ABSECON CITY,17,1979,1,RES1,3001 -0101_174_6,-74.6040615,39.502275,106 LAUREL CIRCLE,ABSECON CITY,17,1993,1,RES1,3001 -0101_174_6,-74.55821816,39.36543967,106 LAUREL CIRCLE,ABSECON CITY,17,1993,1,RES1,3001 -0101_174_7,-74.60151033,39.50149497,108 LAUREL CIRCLE,ABSECON CITY,17,1977,1,RES1,3001 -0101_174_7,-74.55795575,39.36439246,108 LAUREL CIRCLE,ABSECON CITY,17,1977,1,RES1,3001 -0101_174_8,-74.60291433,39.5008425,110 LAUREL CIRCLE,ABSECON CITY,17,1979,1,GOV1,3004 -0101_174_8,-74.55907478,39.36386044,110 LAUREL CIRCLE,ABSECON CITY,17,1979,1,RES1,3001 -0101_175_1,-74.60004009,39.49705713,202 REED RD,ABSECON CITY,17,1960,1,RES1,3001 -0101_175_1,-74.56369568,39.36173278,202 REED RD,ABSECON CITY,17,1960,1,COM1,3004 -0101_175_2,-74.63229882,39.44038117,201 BRIAR CLIFF PLACE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_175_2,-74.55322999,39.36049733,201 BRIAR CLIFF PLACE,ABSECON CITY,17,1970,1,RES1,3001 -0101_175_3,-74.630804,39.4390755,203 BRIAR CLIFF PLACE,ABSECON CITY,17,1984,1,RES1,3001 -0101_175_3,-74.56059362,39.36007537,203 BRIAR CLIFF PLACE,ABSECON CITY,17,1984,1,RES1,3001 -0101_176_1,-74.63050004,39.4388272,200 BRIAR CLIFF PLACE,ABSECON CITY,17,1964,1,RES3A,3001 -0101_176_1,-74.55737836,39.36003857,200 BRIAR CLIFF PLACE,ABSECON CITY,17,1964,1,RES1,3001 -0101_176_2,-74.63080565,39.43861903,201 WYNNEWOOD DRIVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_176_2,-74.57493917,39.36418973,201 WYNNEWOOD DRIVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_176_3,-74.63735148,39.44501637,204 BRIAR CLIFF PLACE,ABSECON CITY,17,1957,1,RES1,3001 -0101_176_3,-74.56527974,39.36405315,204 BRIAR CLIFF PLACE,ABSECON CITY,17,1957,1,RES1,3001 -0101_176_4,-74.62606404,39.46098918,203 WYNNEWOOD DRIVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_176_4,-74.57099844,39.36369663,203 WYNNEWOOD DRIVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_176_5,-74.69386117,39.44121301,206 BRIAR CLIFF PLACE,ABSECON CITY,17,1971,1,RES1,3001 -0101_176_5,-74.57059533,39.3621085,206 BRIAR CLIFF PLACE,ABSECON CITY,17,1971,1,RES1,3001 -0101_176_6,-74.69456784,39.44905297,205 WYNNEWOOD DRIVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_176_6,-74.56522088,39.36183939,205 WYNNEWOOD DRIVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_176_7.01,-74.60223826,39.48297947,207 WYNNEWOOD DRIVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_176_7.01,-74.573638,39.335191,207 WYNNEWOOD DRIVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_177_5.01,-74.60896887,39.48694585,107 WYNNEWOOD DRIVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_177_5.01,-74.562172,39.3469305,107 WYNNEWOOD DRIVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_177_5.02,-74.61350007,39.48612755,200 PARK AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_177_5.02,-74.56414344,39.34648568,200 PARK AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_177_5.03,-74.60929729,39.48531658,103 WYNNEWOOD DRIVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_177_5.03,-74.574518,39.34867,103 WYNNEWOOD DRIVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_177_5.04,-74.6099745,39.4851875,105 WYNNEWOOD DRIVE,ABSECON CITY,17,1994,1,RES1,3001 -0101_177_5.04,-74.5751145,39.348153,105 WYNNEWOOD DRIVE,ABSECON CITY,17,1994,1,RES1,3001 -0101_178_10,-74.6206113,39.43755198,104 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_178_10,-74.555772,39.3577475,104 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_178_11,-74.6214715,39.437367,106 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_178_11,-74.56304843,39.35705854,106 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_178_3,-74.60951692,39.48316817,102 WYNNEWOOD DRIVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_178_3,-74.569559,39.3472925,102 WYNNEWOOD DRIVE,ABSECON CITY,17,1975,1,RES3B,3001 -0101_178_4,-74.61482074,39.48736336,101 CYNWYD DRIVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_178_4,-74.56924254,39.34437364,101 CYNWYD DRIVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_178_5,-74.607696,39.502155,104 WYNNEWOOD DRIVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_178_5,-74.57225308,39.34289182,104 WYNNEWOOD DRIVE,ABSECON CITY,17,1956,1,RES1,3004 -0101_178_6,-74.6054015,39.500589,103 CYNWYD DRIVE,ABSECON CITY,17,1962,1,RES3B,3001 -0101_178_6,-74.552307,39.3667335,103 CYNWYD DRIVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_178_7,-74.61118101,39.50386066,106 WYNNEWOOD DR,ABSECON CITY,17,1964,1,RES1,3001 -0101_178_7,-74.551625,39.36408033,106 WYNNEWOOD DR,ABSECON CITY,17,1964,1,RES1,3001 -0101_178_8,-74.62466467,39.44345854,105 CYNWYD DRIVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_178_8,-74.55237064,39.36165366,105 CYNWYD DRIVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_178_9,-74.62909291,39.43870469,102 CYNWYD DRIVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_178_9,-74.56144261,39.3577982,102 CYNWYD DRIVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_179_1,-74.62165866,39.43722846,202 WYNNEWOOD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_179_1,-74.57332036,39.35976214,202 WYNNEWOOD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_179_2,-74.6302859,39.43876569,201 CYNWYD DRIVE,ABSECON CITY,17,2005,1,RES1,3001 -0101_179_2,-74.570668,39.359607,201 CYNWYD DRIVE,ABSECON CITY,17,2005,1,RES1,3001 -0101_179_3,-74.6331775,39.4379675,204 WYNNEWOOD DRIVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_179_3,-74.56591715,39.35952032,204 WYNNEWOOD DRIVE,ABSECON CITY,17,1961,1,COM1,3004 -0101_179_5,-74.63035393,39.43796005,206 WYNNEWOOD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_179_5,-74.565011,39.35735667,206 WYNNEWOOD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_179_6,-74.62642016,39.44507912,205 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_179_6,-74.56746318,39.35441602,205 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_179_7,-74.63858919,39.44567506,208 WYNNEWOOD DR,ABSECON CITY,17,1964,1,RES1,3001 -0101_179_7,-74.566576,39.3521045,208 WYNNEWOOD DR,ABSECON CITY,17,1964,1,RES3B,3001 -0101_179_8,-74.64401345,39.43655545,207 CYNWYD DR,ABSECON CITY,17,1972,1,RES1,3001 -0101_179_8,-74.5637945,39.367819,207 CYNWYD DR,ABSECON CITY,17,1972,1,RES3A,3001 -0101_18_1.01,-74.57101317,39.351738,24 HOBART AVE,ABSECON CITY,17,1941,1,RES1,3001 -0101_18_1.01,-74.37257848,39.40620451,24 HOBART AVE,ABSECON CITY,17,1941,1,RES3A,3001 -0101_18_1.02,-74.555859,39.363605,120 DAVIS AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_18_1.02,-74.37408728,39.40477728,120 DAVIS AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_18_10,-74.55259164,39.36593122,130 DAVIS AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_18_10,-74.40096404,39.39047456,130 DAVIS AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_18_11,-74.57365182,39.34458697,123 BAYVIEW DRIVE,ABSECON CITY,17,1951,1,RES3A,3001 -0101_18_11,-74.39939519,39.3905883,123 BAYVIEW DRIVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_18_12,-74.56885154,39.34632146,134 DAVIS AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_18_12,-74.43644717,39.36831944,134 DAVIS AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_18_13,-74.56463425,39.34674077,133 BAYVIEW DRIVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_18_13,-74.4419655,39.3717805,133 BAYVIEW DRIVE,ABSECON CITY,17,1938,1,GOV1,3004 -0101_18_14,-74.5708105,39.3470875,138 DAVIS AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_18_14,-74.42406832,39.37009902,138 DAVIS AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_18_15,-74.57073082,39.34797824,145 BAYVIEW DRIVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_18_15,-74.42896923,39.37348516,145 BAYVIEW DRIVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_18_17,-74.57492688,39.35031766,155 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_18_17,-74.42310716,39.37411101,155 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES3A,3001 -0101_18_2,-74.5671835,39.354747,20 HOBART AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_18_2,-74.37265301,39.40743517,20 HOBART AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_18_3,-74.57510574,39.35515164,16 HOBART AVE,ABSECON CITY,17,1929,1,RES1,3001 -0101_18_3,-74.367999,39.4081295,16 HOBART AVE,ABSECON CITY,17,1929,1,RES3A,3001 -0101_18_4,-74.566666,39.358557,12 HOBART AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_18_4,-74.36929333,39.41023495,12 HOBART AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_18_5,-74.56328515,39.35504699,101 BAYVIEW DRIVE,ABSECON CITY,17,1938,1,RES3A,3001 -0101_18_5,-74.36431899,39.40767316,101 BAYVIEW DRIVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_18_6.01,-74.56407985,39.35970975,122 DAVIS AVE,ABSECON CITY,16,1955,1,RES1,3001 -0101_18_6.01,-74.36342066,39.40897134,122 DAVIS AVE,ABSECON CITY,16,1955,1,RES1,3001 -0101_18_7,-74.549633,39.3603255,105 BAYVIEW DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_18_7,-74.3589225,39.4106555,105 BAYVIEW DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_18_8,-74.55056184,39.36094177,126 DAVIS AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_18_8,-74.400421,39.3893635,126 DAVIS AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_18_9,-74.55004098,39.36116895,111 BAYVIEW DRIVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_18_9,-74.4000485,39.3900225,111 BAYVIEW DRIVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_180_1,-74.693253,39.448255,204 FOREST HILL DR,ABSECON CITY,17,1965,1,GOV1,3004 -0101_180_1,-74.56478852,39.36000882,204 FOREST HILL DR,ABSECON CITY,17,1965,1,RES1,3001 -0101_180_2,-74.67224446,39.45600048,303 FOREST HILL DRIVE,ABSECON CITY,17,1970,1,RES3A,3001 -0101_180_2,-74.57848288,39.33751322,303 FOREST HILL DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_180_3,-74.64518035,39.47199096,304 REED RD,ABSECON CITY,17,1966,1,RES1,3001 -0101_180_3,-74.58007397,39.33714612,304 REED RD,ABSECON CITY,17,1966,1,RES3A,3001 -0101_180_4,-74.62753,39.487172,303 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_180_4,-74.57577594,39.33486412,303 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_180_5,-74.70112388,39.48300688,306 REED RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_180_5,-74.58110471,39.33466136,306 REED RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_180_6,-74.68459174,39.49626476,305 CYNWYD DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_180_6,-74.59516087,39.33569656,305 CYNWYD DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_180_7,-74.70301278,39.49547897,308 REED RD,ABSECON CITY,17,1972,1,RES1,3001 -0101_180_7,-74.57974666,39.34471961,308 REED RD,ABSECON CITY,17,1972,1,RES1,3001 -0101_180_8,-74.7016375,39.5011225,307 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_180_8,-74.594307,39.3504505,307 CYNWYD DRIVE,ABSECON CITY,17,1963,1,COM1,3004 -0101_181_1,-74.71725054,39.38942074,402 REED RD,ABSECON CITY,17,1987,1,RES1,3001 -0101_181_1,-74.59221135,39.34729344,402 REED RD,ABSECON CITY,17,1987,1,RES1,3001 -0101_181_2,-74.7155335,39.3862735,406 REED RD,ABSECON CITY,17,1965,1,RES1,3001 -0101_181_2,-74.59345664,39.34574092,406 REED RD,ABSECON CITY,17,1965,1,RES1,3001 -0101_181_3,-74.7533525,39.4014215,410 REED RD,ABSECON CITY,17,1976,1,RES1,3001 -0101_181_3,-74.5940754,39.34571969,410 REED RD,ABSECON CITY,17,1976,1,RES1,3001 -0101_181_4,-74.7128845,39.4055715,203 CEDAR HILL DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_181_4,-74.61253734,39.34163048,203 CEDAR HILL DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_181_5,-74.7108824,39.43042303,401 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_181_5,-74.61889582,39.33918937,401 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_181_6,-74.7138427,39.42935003,403 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_181_6,-74.59782447,39.34461566,403 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_181_7,-74.73910321,39.42989769,405 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_181_7,-74.60854233,39.34920133,405 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_181_8,-74.78914101,39.41881834,407 CYNWYD DRIVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_181_8,-74.6112262,39.34586965,407 CYNWYD DRIVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_182_1,-74.7272495,39.4603605,402 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_182_1,-74.637284,39.3659285,402 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_182_2,-74.71088239,39.46677533,404 CYNWYD DRIVE,ABSECON CITY,17,1960,1,RES1,3002 -0101_182_2,-74.63379628,39.36469902,404 CYNWYD DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_182_3,-74.71201997,39.46644566,406 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_182_3,-74.63479332,39.36455358,406 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_182_4,-74.7288928,39.46396586,408 CYNWYD DR,ABSECON CITY,17,1963,1,RES1,3001 -0101_182_4,-74.63502164,39.36401621,408 CYNWYD DR,ABSECON CITY,17,1963,1,RES1,3001 -0101_182_5,-74.7339075,39.460705,401 BURNING TREE BLVD,ABSECON CITY,17,1970,1,RES1,3001 -0101_182_5,-74.63093198,39.36274408,401 BURNING TREE BLVD,ABSECON CITY,17,1970,1,RES1,3001 -0101_182_6,-74.730722,39.455416,403 BURNING TREE BLVD,ABSECON CITY,17,1976,1,RES1,3001 -0101_182_6,-74.63845882,39.36225735,403 BURNING TREE BLVD,ABSECON CITY,17,1976,1,RES1,3001 -0101_182_7,-74.732461,39.454907,407 BURNING TREE BLVD,ABSECON CITY,17,1976,1,RES1,3001 -0101_182_7,-74.6530165,39.358454,407 BURNING TREE BLVD,ABSECON CITY,17,1976,1,RES1,3002 -0101_182_8,-74.7343476,39.46178134,111 CEDAR HILL DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_182_8,-74.65275384,39.35235121,111 CEDAR HILL DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_183_1,-74.72690983,39.45272494,302 CYNWYD DRIVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_183_1,-74.64109353,39.33956693,302 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_183_3,-74.727228,39.450808,304 CYNWYD DRIVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_183_3,-74.62918,39.3497155,304 CYNWYD DRIVE,ABSECON CITY,17,1963,1,RES3A,3001 -0101_183_4,-74.72493981,39.44735341,303 BURNING TREE BLVD,ABSECON CITY,17,1976,1,RES3A,3001 -0101_183_4,-74.647128,39.3454095,303 BURNING TREE BLVD,ABSECON CITY,17,1976,1,RES1,3001 -0101_183_5,-74.72468094,39.44672833,306 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_183_5,-74.624622,39.356944,306 CYNWYD DRIVE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_183_6,-74.73530183,39.45191895,305 BURNING TREE BLVD,ABSECON CITY,17,1985,1,RES1,3001 -0101_183_6,-74.62518288,39.35174667,305 BURNING TREE BLVD,ABSECON CITY,17,1985,1,RES3A,3001 -0101_183_7,-74.7365675,39.4480265,308 CYNWYD DRIVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_183_7,-74.63401327,39.35863904,308 CYNWYD DRIVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_183_8,-74.745989,39.445536,399 BURNING TREE BLVD,ABSECON CITY,17,1974,1,RES1,3001 -0101_183_8,-74.63861214,39.36713375,399 BURNING TREE BLVD,ABSECON CITY,17,1974,1,RES1,3001 -0101_184_1,-74.83562246,39.40611591,202 CYNWYD DRIVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_184_1,-74.60286619,39.36684644,202 CYNWYD DRIVE,ABSECON CITY,17,1974,1,RES1,3002 -0101_184_2,-74.83093767,39.41578351,204 CYNWYD DRIVE,ABSECON CITY,17,1964,1,RES1,3002 -0101_184_2,-74.602016,39.365888,204 CYNWYD DRIVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_184_3,-74.8489435,39.4044405,206 CYNWYD DRIVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_184_3,-74.61830898,39.36806951,206 CYNWYD DRIVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_184_4,-74.8398775,39.4183705,208 CYNWYD DRIVE,ABSECON CITY,17,1942,1,COM1,3004 -0101_184_4,-74.61583965,39.36412849,208 CYNWYD DRIVE,ABSECON CITY,17,1942,1,RES1,3001 -0101_184_5,-74.7160765,39.452457,205 BURNING TREE BLVD,ABSECON CITY,17,1986,1,RES3A,3001 -0101_184_5,-74.63569513,39.30733307,205 BURNING TREE BLVD,ABSECON CITY,17,1986,1,RES1,3001 -0101_184_7,-74.7158467,39.44946703,203 BURNING TREE BLVD,ABSECON CITY,17,1987,1,RES1,3001 -0101_184_7,-74.64973823,39.32870315,203 BURNING TREE BLVD,ABSECON CITY,17,1987,1,RES1,3001 -0101_184_8,-74.7128875,39.4475245,201 BURNING TREE BLVD,ABSECON CITY,17,1981,1,RES1,3001 -0101_184_8,-74.62567687,39.33809037,201 BURNING TREE BLVD,ABSECON CITY,17,1981,1,RES1,3001 -0101_19_1.01,-74.78606858,39.64644513,705 N SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_19_1.01,-74.53934387,39.47307473,705 N SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_19_1.02,-74.79109823,39.64263164,2 BAYVIEW DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_1.02,-74.54470142,39.47584894,2 BAYVIEW DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_10,-74.50389484,39.50360353,743 N SHORE RD,ABSECON CITY,17,1850,1,RES1,3001 -0101_19_10,-74.46454987,39.34911883,743 N SHORE RD,ABSECON CITY,17,1850,1,RES1,3001 -0101_19_12,-74.80285582,39.64186275,4 LANTERN LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_12,-74.5759645,39.476819,4 LANTERN LANE,ABSECON CITY,17,1960,1,RES3A,3001 -0101_19_13,-74.79525817,39.64109401,2 LANTERN LANE,ABSECON CITY,17,1960,1,RES3B,3001 -0101_19_13,-74.583572,39.4857985,2 LANTERN LANE,ABSECON CITY,17,1960,1,RES3A,3001 -0101_19_14,-74.8086345,39.641143,18 BAYVIEW DRIVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_19_14,-74.614454,39.475525,18 BAYVIEW DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_15,-74.81687143,39.65275049,100 BAYVIEW DRIVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_19_15,-74.60242316,39.48352284,100 BAYVIEW DRIVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_19_16.01,-74.82396204,39.64468767,106 BAYVIEW DRIVE,ABSECON CITY,17,1988,2,RES1,3001 -0101_19_16.01,-74.6130757,39.48608035,106 BAYVIEW DRIVE,ABSECON CITY,17,1988,2,RES1,3001 -0101_19_16.02,-74.81872294,39.64055946,110 BAYVIEW DRIVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_19_16.02,-74.60994845,39.49035284,110 BAYVIEW DRIVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_19_19,-74.826771,39.6501525,118 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_19_19,-74.62719883,39.43826299,118 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_19_2,-74.7795955,39.6563905,8 BAYVIEW DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_2,-74.54661316,39.47284267,8 BAYVIEW DRIVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_20,-74.81880167,39.64988817,122 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES3A,3001 -0101_19_20,-74.61967254,39.4372833,122 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_19_21,-74.81371483,39.66265999,130 BAYVIEW DRIVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_19_21,-74.62670963,39.44681309,130 BAYVIEW DRIVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_19_22,-74.79920427,39.67103218,138 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_19_22,-74.64077992,39.46044265,138 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES3B,3002 -0101_19_3,-74.781695,39.65405833,711 N SHORE ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_3,-74.557772,39.474095,711 N SHORE ROAD,ABSECON CITY,17,1960,1,RES1,3002 -0101_19_4,-74.7725055,39.660721,3 LANTERN LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_4,-74.56782174,39.47638535,3 LANTERN LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_5,-74.78320008,39.66433687,721 N SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_19_5,-74.56591504,39.47560094,721 N SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3002 -0101_19_6,-74.78274667,39.65803027,5 LANTERN LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_6,-74.56547668,39.4749217,5 LANTERN LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_7,-74.78507483,39.66149245,725 N SHORE ROAD,ABSECON CITY,17,1914,1,RES1,3001 -0101_19_7,-74.564309,39.4747295,725 N SHORE ROAD,ABSECON CITY,17,1914,1,RES1,3001 -0101_19_8,-74.78643961,39.676181,729 N SHORE ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_8,-74.56627705,39.47087425,729 N SHORE ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_19_9,-74.80012,39.6441595,735 N SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_19_9,-74.54661078,39.49876399,735 N SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_190_1,-74.75960562,39.44459592,707 WHITE HORSE PIKE,ABSECON CITY,,0,1,RES1,3001 -0101_190_1,-74.65237915,39.35199584,707 WHITE HORSE PIKE,ABSECON CITY,,0,1,RES1,3001 -0101_190_2.02,-74.76079371,39.44635974,101 MORTON AVE,ABSECON CITY,,0,1,RES1,3001 -0101_190_2.02,-74.65693785,39.3665164,101 MORTON AVE,ABSECON CITY,,0,1,RES1,3001 -0101_192_1.01,-74.752647,39.4538695,404 STEWART LANE,ABSECON CITY,17,1800,1,RES1,3001 -0101_192_1.01,-74.681302,39.3538715,404 STEWART LANE,ABSECON CITY,17,1800,1,RES1,3001 -0101_192_1.02,-74.75700218,39.45347772,400 STEWART LANE,ABSECON CITY,17,1982,1,RES1,3001 -0101_192_1.02,-74.75908102,39.30585834,400 STEWART LANE,ABSECON CITY,17,1982,1,RES1,3002 -0101_192_1.03,-74.786946,39.458148,402 STEWART LANE,ABSECON CITY,17,1983,1,RES1,3001 -0101_192_1.03,-74.766168,39.3077725,402 STEWART LANE,ABSECON CITY,17,1983,1,RES1,3002 -0101_192_10,-74.712873,39.4742015,910 NAVAJO AVE,ABSECON CITY,17,1973,1,GOV1,3004 -0101_192_10,-74.76741568,39.34821445,910 NAVAJO AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_192_13,-74.7083645,39.4741155,147 S MILL RD,ABSECON CITY,17,1960,1,RES1,3001 -0101_192_13,-74.80629031,39.31260347,147 S MILL RD,ABSECON CITY,17,1960,1,RES1,3001 -0101_192_14,-74.714095,39.4708645,133 S MILL ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_192_14,-74.81265238,39.35265299,133 S MILL ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_192_21.02,-74.52755065,39.52576658,303 S MILL ROAD,ABSECON CITY,16,2010,1,RES1,3001 -0101_192_21.02,-74.477976,39.340024,303 S MILL ROAD,ABSECON CITY,16,2010,1,REL1,3004 -0101_193_1.02,-74.437214,39.518224,114 MINNETONKA AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_193_1.02,-74.4841175,39.341703,114 MINNETONKA AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_193_1.03,-74.5277665,39.4996695,112 MINNETONKA AVE,ABSECON CITY,17,1975,1,COM1,3004 -0101_193_1.03,-74.47373225,39.34111511,112 MINNETONKA AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_193_1.04,-74.53052088,39.49329022,110 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_193_1.04,-74.470328,39.341228,110 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_193_1.05,-74.510173,39.490936,108 MINNETONKA AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_193_1.05,-74.4564885,39.3482345,108 MINNETONKA AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_193_1.06,-74.48511525,39.52206302,106 MINNETONKA AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_193_1.06,-74.4783505,39.3411075,106 MINNETONKA AVE,ABSECON CITY,17,1980,1,AGR1,3001 -0101_193_1.07,-74.72006314,39.47981569,925 NAVAJO AVE,ABSECON CITY,16,2008,1,RES1,3001 -0101_193_1.07,-74.5368605,39.3742245,925 NAVAJO AVE,ABSECON CITY,16,2008,1,RES1,3001 -0101_193_1.08,-74.50104654,39.51869031,927 NAVAJO AVE,ABSECON CITY,16,2009,1,RES1,3001 -0101_193_1.08,-74.481208,39.3410985,927 NAVAJO AVE,ABSECON CITY,16,2009,1,RES1,3001 -0101_193_1.09,-74.49099734,39.52345251,929 NAVAJO AVE,ABSECON CITY,17,2007,1,RES1,3001 -0101_193_1.09,-74.4786885,39.34085,929 NAVAJO AVE,ABSECON CITY,17,2007,1,COM1,3004 -0101_193_1.10,-74.48952861,39.52217277,931 NAVAJO AVE,ABSECON CITY,17,2007,1,RES1,3001 -0101_193_1.10,-74.48355584,39.34043433,931 NAVAJO AVE,ABSECON CITY,17,2007,1,RES1,3001 -0101_193_1.11,-74.49852857,39.5230157,933 NAVAJO AVE,ABSECON CITY,16,2009,1,RES1,3001 -0101_193_1.11,-74.485652,39.340337,933 NAVAJO AVE,ABSECON CITY,16,2009,1,COM4,3004 -0101_193_1.12,-74.5083095,39.5318935,935 NAVAJO AVE,ABSECON CITY,16,2009,1,RES1,3001 -0101_193_1.12,-74.478971,39.3403265,935 NAVAJO AVE,ABSECON CITY,16,2009,1,RES1,3001 -0101_193_10,-74.88252031,39.46343309,104 MINNETONKA AVE,ABSECON CITY,17,1930,3,RES1,3001 -0101_193_10,-74.54593894,39.37170785,104 MINNETONKA AVE,ABSECON CITY,17,1930,3,RES1,3001 -0101_193_11,-74.86431039,39.45792005,102 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_193_11,-74.54611418,39.37182641,102 MINNETONKA AVE,ABSECON CITY,17,1972,1,COM8,3002 -0101_193_12,-74.84051118,39.44409125,100 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_193_12,-74.55184911,39.37213083,100 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_193_3,-74.77917864,39.5005587,919 NAVAJO AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_193_3,-74.54211182,39.37262611,919 NAVAJO AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_193_4,-74.795082,39.4553685,917 NAVAJO AVE,ABSECON CITY,17,1930,1,RES1,3004 -0101_193_4,-74.54049183,39.37231128,917 NAVAJO AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_193_7,-74.79947343,39.46447968,909 NAVAJO AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_193_7,-74.5509765,39.3762295,909 NAVAJO AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_193_8,-74.8145163,39.46928844,905 NAVAJO AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_193_8,-74.545967,39.372234,905 NAVAJO AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_194_1.02,-74.83704392,39.48521119,115 MINNETONKA AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_194_1.02,-74.53206285,39.38488992,115 MINNETONKA AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_194_1.03,-74.80744908,39.50086173,113 MINNETONKA AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_194_1.03,-74.536702,39.3842915,113 MINNETONKA AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_194_1.04,-74.83633,39.4902515,111 MINNETONKA AVE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_194_1.04,-74.54179119,39.3837178,111 MINNETONKA AVE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_194_1.05,-74.87425458,39.485624,109 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_194_1.05,-74.53477545,39.38376185,109 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_194_1.06,-74.86756554,39.49270582,107 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_194_1.06,-74.54036664,39.38242391,107 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES3A,3001 -0101_194_2,-74.8670575,39.4919905,105 MINNETONKA AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_194_2,-74.542037,39.3819105,105 MINNETONKA AVE,ABSECON CITY,17,1920,1,GOV1,3004 -0101_194_4.01,-74.86895903,39.49606182,101 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_194_4.01,-74.537349,39.3800055,101 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3002 -0101_194_4.02,-74.8827995,39.497274,103 MINNETONKA AVE,ABSECON CITY,17,1972,1,RES1,3002 -0101_194_4.02,-74.532923,39.3792605,103 MINNETONKA AVE,ABSECON CITY,17,1972,1,AGR1,3001 -0101_196_1,-74.539012,39.50504333,101 HIGHLAND BLVD,ABSECON CITY,17,1958,1,RES1,3001 -0101_196_1,-74.53767585,39.37874345,101 HIGHLAND BLVD,ABSECON CITY,17,1958,1,RES1,3001 -0101_196_2,-74.54605466,39.50885147,704 SEASIDE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_196_2,-74.53411201,39.37791633,704 SEASIDE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_196_3,-74.55571974,39.51705579,700 SEASIDE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_196_3,-74.54187535,39.37749054,700 SEASIDE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_197_1.01,-74.5404995,39.5321805,611 MARLBOROUGH AVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_197_1.01,-74.55212095,39.38494013,611 MARLBOROUGH AVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_197_1.02,-74.57634308,39.51200381,104 HIGHLAND BLVD,ABSECON CITY,17,1925,1,RES1,3001 -0101_197_1.02,-74.55267745,39.38458484,104 HIGHLAND BLVD,ABSECON CITY,17,1925,1,RES1,3001 -0101_197_2,-74.61011718,39.50604848,612 SEASIDE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_197_2,-74.55027704,39.38044328,612 SEASIDE AVE,ABSECON CITY,17,1957,1,IND1,3002 -0101_197_3,-74.539571,39.539388,203 AMBASSADOR DRIVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_197_3,-74.55016732,39.37890594,203 AMBASSADOR DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_197_4,-74.5793405,39.53087167,600 SEASIDE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_197_4,-74.552773,39.3794565,600 SEASIDE AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_197_5,-74.61712025,39.5238573,607 MARLBOROUGH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_197_5,-74.54538216,39.37937237,607 MARLBOROUGH AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_198_1,-74.560133,39.538488,715 SEASIDE AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_198_1,-74.55605513,39.37239896,715 SEASIDE AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_198_2,-74.57447186,39.54191344,713 SEASIDE AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_198_2,-74.571698,39.3729835,713 SEASIDE AVE,ABSECON CITY,17,1974,1,GOV1,3004 -0101_198_3,-74.54295623,39.55720033,701 SEASIDE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_198_3,-74.57293677,39.37216679,701 SEASIDE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_199_1,-74.55888098,39.54493926,100 HIGHLAND BLVD,ABSECON CITY,17,1968,1,RES1,3001 -0101_199_1,-74.5484906,39.37683936,100 HIGHLAND BLVD,ABSECON CITY,17,1968,1,RES1,3001 -0101_2.01_14.01,-74.5855845,39.4044005,104 TENTH AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_2.01_14.01,-74.500775,39.443334,104 TENTH AVE,ABSECON CITY,17,1980,1,GOV1,3004 -0101_2.01_14.02,-74.585766,39.404191,908 ELM AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_2.01_14.02,-74.5059435,39.4368805,908 ELM AVE,ABSECON CITY,17,1989,1,GOV1,3004 -0101_2.01_2,-74.79529751,39.60414607,1003 SPRING LANE,ABSECON CITY,17,2000,1,RES1,3001 -0101_2.01_2,-74.629507,39.414479,1003 SPRING LANE,ABSECON CITY,17,2000,1,GOV1,3004 -0101_2.01_3,-74.80289804,39.60315315,1005 SPRING LANE,ABSECON CITY,17,1998,1,GOV1,3004 -0101_2.01_3,-74.62616114,39.4131323,1005 SPRING LANE,ABSECON CITY,17,1998,1,RES1,3001 -0101_2.01_5,-74.571697,39.428098,1009 SPRING LANE,ABSECON CITY,17,1998,1,RES1,3001 -0101_2.01_5,-74.489594,39.437957,1009 SPRING LANE,ABSECON CITY,17,1998,1,GOV1,3004 -0101_2.01_8,-74.57704658,39.4085134,106 TENTH AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_2.01_8,-74.4904525,39.4377415,106 TENTH AVE,ABSECON CITY,17,1988,1,GOV1,3004 -0101_2.01_9,-74.5779175,39.406896,910 ELM AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_2.01_9,-74.50664144,39.44431631,910 ELM AVE,ABSECON CITY,17,1974,1,GOV1,3004 -0101_2_1.01,-74.50861154,39.44598022,138 TENTH AVE,ABSECON CITY,17,1993,1,RES1,3001 -0101_2_1.01,-74.5039025,39.3263875,138 TENTH AVE,ABSECON CITY,17,1993,1,GOV1,3004 -0101_2_1.02,-74.50069784,39.44591253,134 TENTH AVE,ABSECON CITY,17,1993,1,GOV1,3004 -0101_2_1.02,-74.5079586,39.32598868,134 TENTH AVE,ABSECON CITY,17,1993,1,GOV1,3004 -0101_2_13.05,-74.4906935,39.496478,236A UPLAND AVE,ABSECON CITY,17,2009,1,RES1,3001 -0101_2_13.05,-74.4643125,39.3493635,236A UPLAND AVE,ABSECON CITY,17,2009,1,RES1,3001 -0101_2_2.01,-74.51972171,39.44220817,210 UPLAND AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_2_2.01,-74.51621328,39.32363618,210 UPLAND AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_2_2.02,-74.561465,39.4166455,214 UPLAND AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_2_2.02,-74.47522633,39.442932,214 UPLAND AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_2_2.03,-74.511592,39.441154,218 UPLAND AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_2_2.03,-74.51471586,39.32153447,218 UPLAND AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_2_2.04,-74.5160735,39.440306,216 UPLAND AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_2_2.04,-74.5179975,39.320817,216 UPLAND AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_2_2.05,-74.51188017,39.4389895,220 UPLAND AVE,ABSECON CITY,17,1978,1,RES3A,3001 -0101_2_2.05,-74.5199445,39.3197365,220 UPLAND AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_2_2.06,-74.5736835,39.4095415,208 UPLAND AVE,ABSECON CITY,17,1997,1,RES1,3001 -0101_2_2.06,-74.4380225,39.49221,208 UPLAND AVE,ABSECON CITY,17,1997,1,RES1,3001 -0101_2_2.07,-74.57440543,39.40939136,212 UPLAND AVE,ABSECON CITY,17,2000,1,RES1,3002 -0101_2_2.07,-74.43730151,39.49134083,212 UPLAND AVE,ABSECON CITY,17,2000,1,RES1,3001 -0101_2_5.01,-74.56329689,39.41350169,120 TENTH AVE,ABSECON CITY,17,1926,2,RES1,3001 -0101_2_5.01,-74.479392,39.442417,120 TENTH AVE,ABSECON CITY,17,1926,2,COM3,3004 -0101_2_5.02,-74.572226,39.4180565,118 TENTH AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_2_5.02,-74.48242171,39.44029455,118 TENTH AVE,ABSECON CITY,17,1984,1,RES1,3002 -0101_2_6.01,-74.56765242,39.41687838,1001 CARALENA COURT,ABSECON CITY,17,1991,1,RES3A,3001 -0101_2_6.01,-74.4863585,39.439401,1001 CARALENA COURT,ABSECON CITY,17,1991,1,RES1,3001 -0101_2_6.02,-74.564758,39.415446,1003 CARALENA COURT,ABSECON CITY,17,1991,1,RES1,3001 -0101_2_6.02,-74.486893,39.438944,1003 CARALENA COURT,ABSECON CITY,17,1991,1,AGR1,3001 -0101_2_6.03,-74.57054209,39.41368691,1005 CARALENA COURT,ABSECON CITY,17,1991,1,RES1,3001 -0101_2_6.03,-74.48172453,39.43825785,1005 CARALENA COURT,ABSECON CITY,17,1991,1,RES1,3001 -0101_2_6.04,-74.56465032,39.41337348,1007 CARALENA COURT,ABSECON CITY,17,1994,1,RES1,3001 -0101_2_6.04,-74.47152367,39.44649331,1007 CARALENA COURT,ABSECON CITY,17,1994,1,RES1,3001 -0101_2_6.05,-74.778499,39.6244695,1009 CARALENA COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_2_6.05,-74.6429293,39.39336431,1009 CARALENA COURT,ABSECON CITY,17,1993,1,AGR1,3001 -0101_2_6.06,-74.79084147,39.63903317,1010 CARALENA COURT,ABSECON CITY,17,1994,1,RES1,3001 -0101_2_6.06,-74.6833547,39.38009021,1010 CARALENA COURT,ABSECON CITY,17,1994,1,GOV1,3004 -0101_2_6.07,-74.78731985,39.63654898,1008 CARALENA COURT,ABSECON CITY,17,1993,1,GOV1,3004 -0101_2_6.07,-74.6798778,39.38832367,1008 CARALENA COURT,ABSECON CITY,17,1993,1,IND1,3002 -0101_2_6.08,-74.7870455,39.636364,1006 CARALENA COURT,ABSECON CITY,17,1992,1,GOV1,3004 -0101_2_6.08,-74.666141,39.394342,1006 CARALENA COURT,ABSECON CITY,17,1992,1,RES1,3001 -0101_2_6.09,-74.7853295,39.6352225,1004 CARALENA COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_2_6.09,-74.62661353,39.40681241,1004 CARALENA COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_2_6.10,-74.78894496,39.63509321,1002 CARALENA COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_2_6.10,-74.62820581,39.40655998,1002 CARALENA COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_2_6.11,-74.79281135,39.63424583,1000 CARALENA COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_2_6.11,-74.633185,39.4102425,1000 CARALENA COURT,ABSECON CITY,17,1993,1,RES1,3001 -0101_2_7.04,-74.789065,39.634175,1006 SPRING LANE,ABSECON CITY,17,1998,1,RES1,3001 -0101_2_7.04,-74.626812,39.4163005,1006 SPRING LANE,ABSECON CITY,17,1998,1,RES1,3001 -0101_20_1,-74.60893661,39.34973267,626 N SHORE RD,ABSECON CITY,,1979,1,RES1,3001 -0101_20_1,-74.38286187,39.41614362,626 N SHORE RD,ABSECON CITY,,1979,1,RES1,3002 -0101_20_10,-74.93742366,39.53976601,10 KESLER AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_20_10,-74.55143671,39.46643512,10 KESLER AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_20_11,-74.953567,39.5399775,700 N SHORE ROAD,ABSECON CITY,17,1951,1,RES1,3001 -0101_20_11,-74.54788605,39.46609878,700 N SHORE ROAD,ABSECON CITY,17,1951,1,RES1,3001 -0101_20_12,-74.885375,39.596921,704 N SHORE ROAD,ABSECON CITY,17,1955,1,GOV1,3004 -0101_20_12,-74.54710922,39.46469079,704 N SHORE ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_20_15,-74.88574497,39.59429947,706 N SHORE RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_20_15,-74.55146473,39.46463711,706 N SHORE RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_20_2.01,-74.61294274,39.3471014,628 N SHORE RD,ABSECON CITY,,0,1,RES1,3001 -0101_20_2.01,-74.38184642,39.4160243,628 N SHORE RD,ABSECON CITY,,0,1,RES1,3001 -0101_20_2.02,-74.57852993,39.35356156,630 N SHORE RD,ABSECON CITY,17,1980,1,GOV1,3004 -0101_20_2.02,-74.38064882,39.41587308,630 N SHORE RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_20_3.01,-74.57783656,39.35220449,632 N SHORE RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_20_3.01,-74.3786675,39.4145975,632 N SHORE RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_20_4.02,-74.57943849,39.3519534,644 N SHORE RD,ABSECON CITY,17,1820,1,RES1,3001 -0101_20_4.02,-74.3792235,39.413984,644 N SHORE RD,ABSECON CITY,17,1820,1,GOV1,3004 -0101_20_4.04,-74.580929,39.364166,8 SOOY LANE,ABSECON CITY,17,1990,1,GOV1,3004 -0101_20_4.04,-74.36848782,39.42220503,8 SOOY LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_20_5,-74.57898156,39.3607542,14 SOOY LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_20_5,-74.44725081,39.37490392,14 SOOY LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_20_6,-74.94971351,39.53426083,26 KESLER AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_20_6,-74.5369795,39.4680315,26 KESLER AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_20_7,-74.94930096,39.53415533,24 KESLER AVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_20_7,-74.5415995,39.467053,24 KESLER AVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_20_8,-74.90199115,39.5466121,22 KESLER AVE,ABSECON CITY,17,1952,1,GOV1,3004 -0101_20_8,-74.54895568,39.46776316,22 KESLER AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_20_9,-74.918688,39.566641,14 KESLER AVE,ABSECON CITY,17,1968,1,COM1,3004 -0101_20_9,-74.55310258,39.46646166,14 KESLER AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_200_10,-74.63717013,39.52736356,121 TWELFTH ST,ABSECON CITY,17,1964,1,RES1,3001 -0101_200_10,-74.538831,39.391297,121 TWELFTH ST,ABSECON CITY,17,1964,1,RES1,3001 -0101_200_16,-74.44252006,39.35390768,522 NEW JERSEY AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_200_16,-74.65081665,39.46815937,522 NEW JERSEY AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_200_21,-74.42406803,39.36269611,502 NEW JERSEY AVE,ABSECON CITY,,0,1,RES1,3001 -0101_200_21,-74.6825965,39.4405805,502 NEW JERSEY AVE,ABSECON CITY,,0,1,RES1,3001 -0101_200_4,-74.6176303,39.56215938,529 DELAWARE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_200_4,-74.55584737,39.38484847,529 DELAWARE AVE,ABSECON CITY,17,1964,1,COM1,3004 -0101_200_7,-74.619862,39.508319,515 DELAWARE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_200_7,-74.55636298,39.38196868,515 DELAWARE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_200_8,-74.6283735,39.507495,511 DELAWARE AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_200_8,-74.540068,39.3919055,511 DELAWARE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_200_9,-74.6358655,39.528562,123 TWELFTH ST,ABSECON CITY,17,1930,1,GOV1,3004 -0101_200_9,-74.540194,39.3916955,123 TWELFTH ST,ABSECON CITY,17,1930,1,GOV1,3004 -0101_201_10,-74.52506131,39.31352193,121 ALAMEDA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_201_10,-74.70229034,39.47758897,121 ALAMEDA AVE,ABSECON CITY,17,1925,1,COM3,3004 -0101_201_11,-74.5060265,39.325292,109 ALAMEDA AVE,ABSECON CITY,17,1910,2,RES1,3001 -0101_201_11,-74.69629762,39.4772566,109 ALAMEDA AVE,ABSECON CITY,17,1910,2,COM1,3004 -0101_201_12,-74.50482815,39.32461653,105 ALAMEDA AVE,ABSECON CITY,17,1910,1,GOV1,3004 -0101_201_12,-74.7006728,39.48608296,105 ALAMEDA AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_201_13,-74.5070735,39.323423,402 W CHURCH ST,ABSECON CITY,17,1900,1,RES1,3001 -0101_201_13,-74.681283,39.497887,402 W CHURCH ST,ABSECON CITY,17,1900,1,RES1,3001 -0101_201_2,-74.439063,39.3676635,124 TWELFTH ST,ABSECON CITY,17,1949,1,GOV1,3004 -0101_201_2,-74.66364955,39.4469807,124 TWELFTH ST,ABSECON CITY,17,1949,1,RES1,3001 -0101_201_3,-74.43963155,39.36617187,120 TWELFTH ST,ABSECON CITY,17,1994,1,RES1,3001 -0101_201_3,-74.6833595,39.4448765,120 TWELFTH ST,ABSECON CITY,17,1994,1,RES1,3001 -0101_201_6,-74.52063133,39.31711655,415 DELAWARE AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_201_6,-74.7003514,39.44067359,415 DELAWARE AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_201_8,-74.52127447,39.31692084,129 ALAMEDA AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_201_8,-74.6305895,39.4837195,129 ALAMEDA AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_201_9,-74.52461357,39.31578686,125 ALAMEDA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_201_9,-74.6415085,39.471878,125 ALAMEDA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_202_3,-74.49429014,39.33423816,426 NEW JERSEY AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_202_3,-74.6810535,39.4967985,426 NEW JERSEY AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_202_4,-74.49631271,39.33400947,410 NEW JERSEY AVE,ABSECON CITY,,0,1,RES1,3001 -0101_202_4,-74.713212,39.3846625,410 NEW JERSEY AVE,ABSECON CITY,,0,1,GOV1,3004 -0101_202_5,-74.4894445,39.3340245,400 NEW JERSEY AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_202_5,-74.71649303,39.40757501,400 NEW JERSEY AVE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_204_10,-74.49783524,39.33277984,135 MICHIGAN AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_204_10,-74.72430292,39.43487959,135 MICHIGAN AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_204_2,-74.49098233,39.33336951,555 NEW JERSEY AVE,ABSECON CITY,,0,1,GOV1,3004 -0101_204_2,-74.712457,39.415607,555 NEW JERSEY AVE,ABSECON CITY,,0,1,RES1,3001 -0101_204_5,-74.49390767,39.33277445,529 NEW JERSEY AVE,ABSECON CITY,,0,1,GOV1,3004 -0101_204_5,-74.7120411,39.43104771,529 NEW JERSEY AVE,ABSECON CITY,,0,1,RES3A,3001 -0101_208_1,-74.49775967,39.33266349,111 MIAMI AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_208_1,-74.73491547,39.43475439,111 MIAMI AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_208_10,-74.49580271,39.33209895,824 OHIO AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_208_10,-74.73561485,39.43007771,824 OHIO AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_208_11,-74.50854617,39.33144046,820 OHIO AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_208_11,-74.83152584,39.40049613,820 OHIO AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_208_12,-74.498945,39.3313685,818 OHIO AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_208_12,-74.84980267,39.37338633,818 OHIO AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_208_13,-74.49860752,39.33102234,814 OHIO AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_208_13,-74.81030135,39.40242948,814 OHIO AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_208_14,-74.5072635,39.330527,810 OHIO AVE,ABSECON CITY,17,1900,1,GOV1,3004 -0101_208_14,-74.82955343,39.4058315,810 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_208_15,-74.5027495,39.330371,802 OHIO AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_208_15,-74.835325,39.426844,802 OHIO AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_208_2,-74.49072866,39.33180851,144 S MILL ROAD,ABSECON CITY,17,1963,1,GOV1,3004 -0101_208_2,-74.758695,39.4320815,144 S MILL ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_208_3,-74.49329398,39.33047165,146 S MILL ROAD,ABSECON CITY,17,1900,1,RES1,3001 -0101_208_3,-74.7573565,39.431752,146 S MILL ROAD,ABSECON CITY,17,1900,1,RES1,3001 -0101_208_4,-74.49588462,39.32915316,148 S MILL RD,ABSECON CITY,17,1963,1,COM4,3004 -0101_208_4,-74.80661492,39.37486632,148 S MILL RD,ABSECON CITY,17,1963,1,RES1,3001 -0101_208_5,-74.505433,39.3327515,150 S MILL ROAD,ABSECON CITY,17,1963,1,GOV1,3004 -0101_208_5,-74.8348735,39.3747155,150 S MILL ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_208_6,-74.50332142,39.33236484,828 OHIO AVE,ABSECON CITY,17,1977,1,GOV1,3004 -0101_208_6,-74.835752,39.3744455,828 OHIO AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_208_7,-74.50770248,39.33188016,109 MIAMI AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_208_7,-74.8195425,39.3926225,109 MIAMI AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_208_8,-74.5004195,39.331807,107 MIAMI AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_208_8,-74.82174037,39.38887339,107 MIAMI AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_208_9,-74.503556,39.3317525,105 MIAMI AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_208_9,-74.834319,39.4016835,105 MIAMI AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_209_2,-74.50182408,39.32940916,106 MIAMI AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_209_2,-74.71681898,39.45202468,106 MIAMI AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_209_3,-74.50729945,39.32916937,104 MIAMI AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_209_3,-74.7319615,39.441773,104 MIAMI AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_209_4,-74.5017275,39.328965,742 OHIO AVE,ABSECON CITY,,0,1,GOV1,3004 -0101_209_4,-74.73527677,39.44125962,742 OHIO AVE,ABSECON CITY,,0,1,RES1,3001 -0101_209_5,-74.50747924,39.32879762,738 OHIO AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_209_5,-74.73611163,39.4514493,738 OHIO AVE,ABSECON CITY,17,1959,1,GOV1,3004 -0101_209_6,-74.50012995,39.32840582,726 OHIO AVE,ABSECON CITY,17,1925,1,GOV1,3004 -0101_209_6,-74.7373485,39.449407,726 OHIO AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_209_8,-74.50144358,39.32823217,712 OHIO AVE,ABSECON CITY,17,1930,1,RES1,3004 -0101_209_8,-74.74734173,39.45051063,712 OHIO AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_209_9,-74.50209018,39.3281244,702 OHIO AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_209_9,-74.7480701,39.4468938,702 OHIO AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_21_1,-74.59328678,39.36811559,20 SOOY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_21_1,-74.44848545,39.37458319,20 SOOY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_21_10,-74.64380297,39.3254399,11 KESLER AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_21_10,-74.524876,39.383882,11 KESLER AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_21_11,-74.6304016,39.35015529,1 KESLER AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_21_11,-74.52783933,39.38343521,1 KESLER AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_21_12.01,-74.635399,39.350181,708 N SHORE ROAD,ABSECON CITY,17,1920,1,GOV1,3004 -0101_21_12.01,-74.52156965,39.38265595,708 N SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_21_13,-74.63633294,39.34439403,7 W CURRAN DRIVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_21_13,-74.527474,39.381953,7 W CURRAN DRIVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_21_14,-74.63873543,39.3434701,720 N SHORE ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_21_14,-74.5283295,39.381772,720 N SHORE ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_21_15,-74.62701136,39.35306331,724 N SHORE ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_21_15,-74.51780683,39.39248249,724 N SHORE ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_21_16,-74.6302355,39.3550815,9 W CURRAN DR,ABSECON CITY,17,1967,1,RES1,3001 -0101_21_16,-74.510733,39.39144,9 W CURRAN DR,ABSECON CITY,17,1967,1,GOV1,3004 -0101_21_17,-74.62701678,39.36224375,748 N SHORE RD,ABSECON CITY,17,1977,1,RES1,3001 -0101_21_17,-74.51927334,39.3911935,748 N SHORE RD,ABSECON CITY,17,1977,1,RES1,3001 -0101_21_19,-74.63574183,39.36169177,26 N CURRAN DRIVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_21_19,-74.51749062,39.39054181,26 N CURRAN DRIVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_21_2,-74.58711856,39.36441738,22 SOOY LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_21_2,-74.44571191,39.37381429,22 SOOY LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_21_20,-74.63270168,39.36158311,22 N CURRAN DR,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_20,-74.51797169,39.38828933,22 N CURRAN DR,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_21,-74.6339075,39.3599385,20 N CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_21,-74.51581302,39.38622162,20 N CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_22,-74.6516815,39.356015,18 N CURRAN DRIVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_21_22,-74.51524442,39.38563694,18 N CURRAN DRIVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_21_23,-74.65166971,39.35333081,16 N CURRAN DRIVE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_21_23,-74.512833,39.385366,16 N CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_24,-74.65538297,39.35838532,14 N CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_24,-74.52282951,39.39050391,14 N CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_25,-74.65361255,39.35589338,12 N CURRAN DRIVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_21_25,-74.53003434,39.3899284,12 N CURRAN DRIVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_21_26,-74.65412405,39.35436165,10 E CURRAN DRIVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_21_26,-74.52937618,39.38971158,10 E CURRAN DRIVE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_21_27,-74.64452153,39.3656724,8 E CURRAN DRIVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_21_27,-74.52262368,39.38913807,8 E CURRAN DRIVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_21_28,-74.67667362,39.350018,6 E CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_28,-74.52235368,39.38848454,6 E CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_21_29,-74.66888077,39.35300538,705 FOURTH ST,ABSECON CITY,17,1953,1,RES1,3004 -0101_21_29,-74.51826782,39.40080893,705 FOURTH ST,ABSECON CITY,17,1953,1,GOV1,3004 -0101_21_3,-74.5980525,39.3654335,638 SOOY LANE,ABSECON CITY,17,1958,1,GOV1,3004 -0101_21_3,-74.4540275,39.3730405,638 SOOY LANE,ABSECON CITY,17,1958,1,RES1,3001 -0101_21_30,-74.68337738,39.35668196,4 E CURRAN DR,ABSECON CITY,17,1963,1,RES1,3001 -0101_21_30,-74.51587144,39.40067368,4 E CURRAN DR,ABSECON CITY,17,1963,1,RES1,3001 -0101_21_31,-74.68500768,39.35661857,504 SOOY LANE,ABSECON CITY,17,1939,1,RES1,3001 -0101_21_31,-74.51656101,39.39472562,504 SOOY LANE,ABSECON CITY,17,1939,1,RES1,3001 -0101_21_32,-74.674782,39.3537945,506 SOOY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_21_32,-74.51458461,39.39426232,506 SOOY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_21_4,-74.61647536,39.36164923,39 KESLER AVE,ABSECON CITY,17,1953,1,GOV1,3004 -0101_21_4,-74.44826673,39.37277622,39 KESLER AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_21_5,-74.62433419,39.31440065,3 W CURRAN DRIVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_21_5,-74.450676,39.37233,3 W CURRAN DRIVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_21_6,-74.63133269,39.31603506,37 KESLER AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_21_6,-74.44423137,39.37158016,37 KESLER AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_21_8,-74.6383835,39.3241455,25 KESLER AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_21_8,-74.5075485,39.3842385,25 KESLER AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_21_9,-74.63348479,39.31810289,15 KESLER AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_21_9,-74.525705,39.385102,15 KESLER AVE,ABSECON CITY,17,1948,1,COM1,3004 -0101_210_2.01,-74.50229288,39.32802083,646 OHIO AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_210_2.01,-74.7469275,39.446746,646 OHIO AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_210_2.02,-74.508958,39.327958,648 OHIO AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_210_2.02,-74.74754517,39.44602238,648 OHIO AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_210_2.03,-74.50602309,39.32717831,640 OHIO AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_210_2.03,-74.7267065,39.4583535,640 OHIO AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_210_4,-74.50053381,39.32716544,622 OHIO AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_210_4,-74.72353637,39.4562413,622 OHIO AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_210_6,-74.501925,39.3270325,614 OHIO AVE,ABSECON CITY,16,1910,1,RES1,3001 -0101_210_6,-74.72717216,39.45505199,614 OHIO AVE,ABSECON CITY,16,1910,1,RES1,3001 -0101_210_7,-74.5076943,39.32699177,612 OHIO AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_210_7,-74.72868017,39.4533987,612 OHIO AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_213_3,-74.54042984,39.38041547,175 NEW JERSEY AVE,ABSECON CITY,17,1895,1,RES1,3001 -0101_213_3,-74.443482,39.372831,175 NEW JERSEY AVE,ABSECON CITY,17,1895,1,RES1,3001 -0101_213_4,-74.53276732,39.37811416,170 WHITE HORSE PIKE,ABSECON CITY,,0,1,RES1,3001 -0101_213_4,-74.52017833,39.3834179,170 WHITE HORSE PIKE,ABSECON CITY,,0,1,RES1,3001 -0101_213_5,-74.54923123,39.38278072,159 NEW JERSEY AVE,ABSECON CITY,16,1910,1,GOV1,3004 -0101_213_5,-74.52150104,39.38447632,159 NEW JERSEY AVE,ABSECON CITY,16,1910,1,RES1,3001 -0101_214_7,-74.5438235,39.377778,227 WHITE HORSE PIKE,ABSECON CITY,17,1925,1,RES1,3001 -0101_214_7,-74.509258,39.3996935,227 WHITE HORSE PIKE,ABSECON CITY,17,1925,1,RES1,3001 -0101_214_8,-74.55507,39.3749105,225 WHITE HORSE PIKE,ABSECON CITY,,0,1,RES1,3004 -0101_214_8,-74.5175695,39.393595,225 WHITE HORSE PIKE,ABSECON CITY,,0,1,RES1,3001 -0101_216_1,-74.502786,39.5025725,320 OHIO AVE,ABSECON CITY,,0,1,RES1,3001 -0101_216_1,-74.45865083,39.34909486,320 OHIO AVE,ABSECON CITY,,0,1,RES1,3001 -0101_216_3,-74.509507,39.3256205,316 OHIO AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_216_3,-74.73430826,39.46103748,316 OHIO AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_216_4,-74.51588465,39.32327843,310 OHIO AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_216_4,-74.75439428,39.45273257,310 OHIO AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_216_5,-74.50953168,39.32307805,308 OHIO AVE,ABSECON CITY,17,1915,1,GOV1,3004 -0101_216_5,-74.75399085,39.44572085,308 OHIO AVE,ABSECON CITY,17,1915,1,RES1,3001 -0101_216_7,-74.5201465,39.322967,226 OHIO AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_216_7,-74.76211775,39.44519665,226 OHIO AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_216_8,-74.517188,39.32211388,218 OHIO AVE,ABSECON CITY,17,1888,1,RES1,3001 -0101_216_8,-74.7122375,39.4717825,218 OHIO AVE,ABSECON CITY,17,1888,1,RES1,3001 -0101_217_1,-74.512963,39.321736,200 SHOWELLTON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_217_1,-74.71277777,39.50246669,200 SHOWELLTON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_217_10,-74.5141497,39.32887061,244 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_10,-74.87638,39.460843,244 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3004 -0101_217_12,-74.5104605,39.328583,248 SHOWELLTON AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_217_12,-74.80565434,39.47120192,248 SHOWELLTON AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_217_13,-74.512517,39.328038,161 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_217_13,-74.83466045,39.47179553,161 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_217_14,-74.51390362,39.32726316,151 OHIO AVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_217_14,-74.8379065,39.479277,151 OHIO AVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_217_14.01,-74.5144065,39.3268695,149 OHIO AVE,ABSECON CITY,17,1922,1,RES1,3001 -0101_217_14.01,-74.83714782,39.47901699,149 OHIO AVE,ABSECON CITY,17,1922,1,RES1,3001 -0101_217_15,-74.5140265,39.325839,143 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_217_15,-74.82234876,39.49174394,143 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_217_16,-74.460983,39.349522,139 OHIO AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_217_16,-74.83011872,39.49025143,139 OHIO AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_217_17,-74.45744967,39.3493895,135 OHIO AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_217_17,-74.850536,39.4725855,135 OHIO AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_217_18,-74.46381664,39.34935867,121 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_217_18,-74.839524,39.4903445,121 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_217_19,-74.462292,39.3493245,113 OHIO AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_19,-74.544298,39.5079495,113 OHIO AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_20.01,-74.4555062,39.34848396,105 OHIO AVE,ABSECON CITY,,0,1,RES1,3001 -0101_217_20.01,-74.5438675,39.505728,105 OHIO AVE,ABSECON CITY,,0,1,RES1,3001 -0101_217_20.02,-74.46212765,39.34867316,203 STATION AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_217_20.02,-74.56786095,39.53099109,203 STATION AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_217_3,-74.51628195,39.32138168,210 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_3,-74.81385205,39.43788186,210 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_4,-74.5142675,39.3209645,216 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_4,-74.81251371,39.43687546,216 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_5,-74.52260694,39.32214333,222 SHOWELLTON AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_217_5,-74.80215267,39.467732,222 SHOWELLTON AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_217_6,-74.52357788,39.31893859,224 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_6,-74.852915,39.4405765,224 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_7,-74.522779,39.317721,230 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_7,-74.85150219,39.43824198,230 SHOWELLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_217_8,-74.51136705,39.33048367,232 SHOWELLTON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_217_8,-74.85660921,39.45209296,232 SHOWELLTON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_217_9,-74.51013399,39.32920833,238 SHOWELLTON AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_217_9,-74.86645819,39.43640368,238 SHOWELLTON AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_22_1,-74.67285476,39.36563053,11 W CURRAN DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_22_1,-74.5156215,39.3942435,11 W CURRAN DRIVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_22_2,-74.6939075,39.35365,13 N CURRAN DRIVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_22_2,-74.53021232,39.3982799,13 N CURRAN DRIVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_22_3,-74.69413516,39.35354747,15 N CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_22_3,-74.52775076,39.39778015,15 N CURRAN DRIVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_22_4,-74.70078103,39.36505735,17 N CURRAN DRIVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_22_4,-74.524437,39.3968035,17 N CURRAN DRIVE,ABSECON CITY,17,1973,1,GOV1,3004 -0101_22_5,-74.7628975,39.3083355,19 W CURRAN DRIVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_22_5,-74.52109951,39.39633983,19 W CURRAN DRIVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_221_1,-74.46407933,39.34677801,56 IOWA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_221_1,-74.582854,39.51226055,56 IOWA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_221_11,-74.483994,39.3396335,333 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_221_11,-74.62113079,39.52678426,333 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_221_13,-74.480595,39.3392505,325 S SHORE ROAD,ABSECON CITY,17,1860,1,RES1,3001 -0101_221_13,-74.64019164,39.52917765,325 S SHORE ROAD,ABSECON CITY,17,1860,1,RES1,3001 -0101_221_14,-74.47959688,39.33890683,31 W ILLINOIS AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_221_14,-74.63850866,39.52359503,31 W ILLINOIS AVE,ABSECON CITY,17,1960,1,COM1,3004 -0101_221_15,-74.47906629,39.33819099,27 W ILLINOIS AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_221_15,-74.6387785,39.5233925,27 W ILLINOIS AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_221_16,-74.481176,39.335645,19 W ILLINOIS AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_221_16,-74.64004583,39.53476947,19 W ILLINOIS AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_221_17,-74.48551114,39.33531267,15 W ILLINOIS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_221_17,-74.63133469,39.53403453,15 W ILLINOIS AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_221_18,-74.48646109,39.33507517,315 S SHORE ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_221_18,-74.640545,39.5329415,315 S SHORE ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_221_19,-74.4663515,39.347166,305 S SHORE ROAD,ABSECON CITY,17,1926,1,IND2,3002 -0101_221_19,-74.6464365,39.5293985,305 S SHORE ROAD,ABSECON CITY,17,1926,1,RES1,3001 -0101_221_2,-74.46261169,39.34499365,48 IOWA AVE,ABSECON CITY,17,1915,1,RES1,3001 -0101_221_2,-74.59562153,39.50895617,48 IOWA AVE,ABSECON CITY,17,1915,1,RES1,3001 -0101_221_3,-74.4642656,39.34455507,44 IOWA AVE,ABSECON CITY,17,1910,1,RES1,3004 -0101_221_3,-74.61688021,39.50801882,44 IOWA AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_221_4,-74.4724955,39.3427015,40 IOWA AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_221_4,-74.61559473,39.50717766,40 IOWA AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_221_5,-74.47775567,39.34134353,38 IOWA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_221_5,-74.61440833,39.50638797,38 IOWA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_221_6,-74.47702746,39.34132667,36 IOWA AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_221_6,-74.60254583,39.53252833,36 IOWA AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_221_7,-74.48332602,39.34109696,24 IOWA AVE,ABSECON CITY,17,1915,1,RES1,3001 -0101_221_7,-74.62699858,39.50426114,24 IOWA AVE,ABSECON CITY,17,1915,1,RES1,3004 -0101_221_8,-74.4850025,39.3406105,16 IOWA AVE,ABSECON CITY,,0,1,RES1,3001 -0101_221_8,-74.64063249,39.51762284,16 IOWA AVE,ABSECON CITY,,0,1,RES1,3001 -0101_221_9,-74.48350984,39.34006749,16 IOWA AVE,ABSECON CITY,17,1915,1,RES1,3001 -0101_221_9,-74.62660737,39.52789707,16 IOWA AVE,ABSECON CITY,17,1915,1,IND2,3002 -0101_222_1,-74.467779,39.346784,54 W BOLTON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_222_1,-74.64327688,39.52885213,54 W BOLTON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_222_10,-74.48065167,39.34657099,26 W BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_222_10,-74.6611905,39.5246325,26 W BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_222_11,-74.44475266,39.35874941,16 W BOLTON AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_222_11,-74.657311,39.524657,16 W BOLTON AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_222_12,-74.447616,39.358303,421 S SHORE ROAD,ABSECON CITY,17,1856,1,RES1,3001 -0101_222_12,-74.65437351,39.52367667,421 S SHORE ROAD,ABSECON CITY,17,1856,1,RES3A,3001 -0101_222_13,-74.45380508,39.35290217,55 IOWA AVE,ABSECON CITY,17,1959,2,GOV1,3004 -0101_222_13,-74.64164456,39.53529684,55 IOWA AVE,ABSECON CITY,17,1959,2,RES1,3001 -0101_222_14,-74.4630803,39.3559571,53 IOWA AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_222_14,-74.64155132,39.53432391,53 IOWA AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_222_16,-74.46143182,39.35557488,43 IOWA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_222_16,-74.64547935,39.53363354,43 IOWA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_222_17,-74.4550535,39.3533795,39 IOWA AVE,ABSECON CITY,47,1951,2,RES1,3001 -0101_222_17,-74.65877856,39.53606665,39 IOWA AVE,ABSECON CITY,47,1951,2,RES1,3001 -0101_222_18,-74.4635825,39.3521375,29 IOWA AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_222_18,-74.65280545,39.53463439,29 IOWA AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_222_19,-74.4564505,39.3518515,25 W IOWA AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_222_19,-74.6542374,39.53374364,25 W IOWA AVE,ABSECON CITY,17,1961,1,GOV1,3004 -0101_222_2,-74.4687655,39.346177,52 W BOLTON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_222_2,-74.64159158,39.52859107,52 W BOLTON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_222_20,-74.46601,39.358043,21 IOWA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_222_20,-74.6546315,39.532415,21 IOWA AVE,ABSECON CITY,17,1930,1,COM1,3004 -0101_222_21,-74.482626,39.35420583,19 IOWA AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_222_21,-74.66850162,39.51505307,19 IOWA AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_222_3,-74.47193042,39.34376183,50 W BOLTON AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_222_3,-74.65170423,39.52558906,50 W BOLTON AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_222_4,-74.48613344,39.35105437,48 W BOLTON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_222_4,-74.64125578,39.52550191,48 W BOLTON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_222_5,-74.48526225,39.34995507,46 W BOLTON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_222_5,-74.64939904,39.52520832,46 W BOLTON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_222_6,-74.484085,39.348089,42 W BOLTON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_222_6,-74.64937346,39.52430229,42 W BOLTON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_222_7,-74.482333,39.3475595,44 W BOLTON AVE,ABSECON CITY,17,1960,2,RES1,3001 -0101_222_7,-74.651284,39.5242535,44 W BOLTON AVE,ABSECON CITY,17,1960,2,RES1,3001 -0101_222_8,-74.4812985,39.346914,34 W BOLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_222_8,-74.6462745,39.522139,34 W BOLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_222_9,-74.4851595,39.346579,32 W BOLTON AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_222_9,-74.65445749,39.52614217,32 W BOLTON AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_223_1,-74.46853135,39.36361336,426 S SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_223_1,-74.69101814,39.50827021,426 S SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_223_10,-74.49201833,39.33614102,423 FRANKLIN BLVD,ABSECON CITY,17,1940,1,RES1,3001 -0101_223_10,-74.692353,39.5728495,423 FRANKLIN BLVD,ABSECON CITY,17,1940,1,GOV1,3004 -0101_223_11,-74.497627,39.335652,410 S SHORE ROAD,ABSECON CITY,17,1890,1,RES1,3001 -0101_223_11,-74.6955861,39.58958536,410 S SHORE ROAD,ABSECON CITY,17,1890,1,RES3A,3001 -0101_223_12,-74.4888295,39.3507205,419 FRANKLIN BLVD,ABSECON CITY,17,1960,1,RES1,3001 -0101_223_12,-74.71797263,39.57161434,419 FRANKLIN BLVD,ABSECON CITY,17,1960,1,RES1,3001 -0101_223_13.01,-74.50284,39.337592,402 S SHORE ROAD,ABSECON CITY,17,1920,1,REL1,3004 -0101_223_13.01,-74.623024,39.606649,402 S SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_223_15,-74.499689,39.335997,338 S SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_223_15,-74.63907199,39.62217134,338 S SHORE ROAD,ABSECON CITY,17,1920,1,GOV1,3004 -0101_223_16,-74.48899991,39.34986502,330 S SHORE ROAD,ABSECON CITY,17,1990,1,GOV1,3004 -0101_223_16,-74.71032017,39.56631899,330 S SHORE ROAD,ABSECON CITY,17,1990,1,RES1,3001 -0101_223_17,-74.50871586,39.3356897,324 S SHORE ROAD,ABSECON CITY,17,1862,1,RES1,3001 -0101_223_17,-74.65389196,39.62507096,324 S SHORE ROAD,ABSECON CITY,17,1862,1,RES1,3001 -0101_223_18,-74.50038759,39.33512447,19 E ILLINOIS AVE,ABSECON CITY,17,1850,1,RES1,3001 -0101_223_18,-74.6872475,39.6372515,19 E ILLINOIS AVE,ABSECON CITY,17,1850,1,RES1,3001 -0101_223_2,-74.49397892,39.34242198,418 S SHORE ROAD,ABSECON CITY,17,1860,1,RES1,3001 -0101_223_2,-74.6453505,39.548898,418 S SHORE ROAD,ABSECON CITY,17,1860,1,RES1,3001 -0101_223_20,-74.50503217,39.33484747,312 S SHORE ROAD,ABSECON CITY,17,1927,1,RES1,3001 -0101_223_20,-74.79202624,39.53390969,312 S SHORE ROAD,ABSECON CITY,17,1927,1,RES1,3001 -0101_223_21,-74.50607796,39.33459728,304 S SHORE ROAD,ABSECON CITY,17,1830,1,RES1,3001 -0101_223_21,-74.79022779,39.53230764,304 S SHORE ROAD,ABSECON CITY,17,1830,1,RES1,3001 -0101_223_3,-74.48830616,39.33904022,24 E BOLTON AVE,ABSECON CITY,17,1924,1,GOV1,3004 -0101_223_3,-74.66102633,39.55040119,24 E BOLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_223_4,-74.48812197,39.33854298,28 E BOLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_223_4,-74.6820436,39.55236213,28 E BOLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_223_5,-74.48900565,39.33814902,32 E BOLTON AVE,ABSECON CITY,17,1924,1,GOV1,3004 -0101_223_5,-74.67704263,39.56029847,32 E BOLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_223_6,-74.48838634,39.33797449,36 E BOLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_223_6,-74.665129,39.568493,36 E BOLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_223_8,-74.490356,39.337347,40 E BOLTON AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_223_8,-74.701248,39.5715545,40 E BOLTON AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_223_9,-74.49821681,39.33663855,42 E BOLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_223_9,-74.59688393,39.58685926,42 E BOLTON AVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_227.02_4,-74.8342179,39.37571178,302 BURNING TREE BLVD,ABSECON CITY,17,1993,1,RES1,3001 -0101_227.02_4,-74.59601173,39.36051785,302 BURNING TREE BLVD,ABSECON CITY,17,1993,1,RES1,3001 -0101_227.02_5,-74.837284,39.389015,304 BURNING TREE BLVD,ABSECON CITY,17,1999,1,COM4,3004 -0101_227.02_5,-74.60476427,39.36812908,304 BURNING TREE BLVD,ABSECON CITY,17,1999,1,RES1,3001 -0101_23.01_1,-74.59561152,39.38308417,601 SOOY LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_23.01_1,-74.4688355,39.4530075,601 SOOY LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_23.01_2,-74.5908985,39.3792845,603 SOOY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_23.01_2,-74.46341344,39.45556416,603 SOOY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_23.01_3,-74.59523524,39.37857204,605 SOOY LANE,ABSECON CITY,17,1979,1,RES1,3001 -0101_23.01_3,-74.46034355,39.45378934,605 SOOY LANE,ABSECON CITY,17,1979,1,RES1,3001 -0101_23.01_4,-74.5918705,39.3774265,609 LAZY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_23.01_4,-74.459207,39.45327747,609 LAZY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_23.01_5,-74.5905249,39.37719695,14 BAYBERRY LANE,ABSECON CITY,17,1983,1,RES1,3001 -0101_23.01_5,-74.464071,39.469024,14 BAYBERRY LANE,ABSECON CITY,17,1983,1,RES1,3001 -0101_23.01_6,-74.59881806,39.3722722,12 BAYBERRY LANE,ABSECON CITY,17,1970,1,RES1,3001 -0101_23.01_6,-74.46808636,39.45810983,12 BAYBERRY LANE,ABSECON CITY,17,1970,1,RES1,3001 -0101_23.02_1,-74.58556932,39.37234796,602 FOURTH ST,ABSECON CITY,17,1970,1,RES1,3001 -0101_23.02_1,-74.51384695,39.4303606,602 FOURTH ST,ABSECON CITY,17,1970,1,RES1,3001 -0101_23.02_2,-74.5901745,39.3764345,13 BAYBERRY LANE,ABSECON CITY,17,1981,1,RES1,3001 -0101_23.02_2,-74.440854,39.487136,13 BAYBERRY LANE,ABSECON CITY,17,1981,1,RES1,3001 -0101_23.02_3,-74.58990924,39.36881189,612 HAY ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_23.02_3,-74.479417,39.4427845,612 HAY ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_230_1,-74.509802,39.34051717,400 & 408 S MILL RD,ABSECON CITY,17,1940,3,RES1,3001 -0101_230_1,-74.7822445,39.542587,400 & 408 S MILL RD,ABSECON CITY,17,1940,3,RES1,3001 -0101_231_1.02,-74.50978282,39.33902902,308 S MILL ROAD,ABSECON CITY,17,1927,1,RES1,3001 -0101_231_1.02,-74.79406662,39.53828163,308 S MILL ROAD,ABSECON CITY,17,1927,1,RES1,3001 -0101_231_1.03,-74.5101565,39.336918,306 S MILL ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_231_1.03,-74.8149325,39.5190675,306 S MILL ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_231_11,-74.38602266,39.39277001,703 OHIO AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_231_11,-74.80826932,39.52728099,703 OHIO AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_231_5,-74.50973356,39.3351437,715 OHIO AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_231_5,-74.837365,39.508756,715 OHIO AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_231_6,-74.37065747,39.40027316,711 OHIO AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_231_6,-74.82036003,39.5201706,711 OHIO AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_231_8,-74.3836845,39.3934345,707 OHIO AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_231_8,-74.80572825,39.52723351,707 OHIO AVE,ABSECON CITY,17,1970,1,COM4,3004 -0101_232_12,-74.3878875,39.390447,625 OHIO AVE,ABSECON CITY,17,1900,2,RES1,3001 -0101_232_12,-74.80781482,39.53422247,625 OHIO AVE,ABSECON CITY,17,1900,2,RES1,3001 -0101_232_14.01,-74.39046648,39.39340056,629 OHIO AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_232_14.01,-74.8382695,39.524892,629 OHIO AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_232_14.02,-74.39483483,39.38937617,627 OHIO AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_232_14.02,-74.81719317,39.53712699,627 OHIO AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_232_15,-74.3971205,39.388474,615 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_232_15,-74.82997624,39.53892548,615 OHIO AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_232_16.01,-74.379662,39.400354,611 OHIO AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_232_16.01,-74.82683563,39.56924746,611 OHIO AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_232_18,-74.38435558,39.39953428,315 KEEFER AVE,ABSECON CITY,15,1920,1,RES1,3001 -0101_232_18,-74.84517065,39.54344103,315 KEEFER AVE,ABSECON CITY,15,1920,1,RES1,3001 -0101_232_22,-74.38368934,39.39940916,316 KEEFER AVE,ABSECON CITY,17,2000,1,EDU1,3004 -0101_232_22,-74.85940673,39.54341182,316 KEEFER AVE,ABSECON CITY,17,2000,1,RES1,3001 -0101_232_23,-74.38320887,39.39887976,313 S NEW ROAD,ABSECON CITY,17,2003,1,RES1,3001 -0101_232_23,-74.855925,39.55258,313 S NEW ROAD,ABSECON CITY,17,2003,1,RES1,3001 -0101_232_25,-74.3821715,39.3975095,321 S NEW RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_232_25,-74.87571136,39.56676906,321 S NEW RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_232_26,-74.4204807,39.37113444,327 S NEW RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_232_26,-74.873416,39.565111,327 S NEW RD,ABSECON CITY,17,1920,1,REL1,3004 -0101_233_1,-74.41361132,39.37044652,507 OHIO AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_233_1,-74.710243,39.5729325,507 OHIO AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_234_1,-74.40575815,39.38049521,403 OHIO AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_234_1,-74.7218275,39.5744955,403 OHIO AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_234_2,-74.40601909,39.37847622,401 OHIO AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_234_2,-74.71959898,39.57315733,401 OHIO AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_236_4,-74.40806128,39.37815564,217 S NEW RD,ABSECON CITY,17,1960,1,RES1,3001 -0101_236_4,-74.75032483,39.603941,217 S NEW RD,ABSECON CITY,17,1960,1,RES1,3001 -0101_237_11,-74.42218581,39.37045156,223 MARLIN ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_11,-74.7782785,39.63444766,223 MARLIN ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_13,-74.44229151,39.37251695,227 MARLIN ROAD,ABSECON CITY,43,1920,2,RES1,3001 -0101_237_13,-74.78701802,39.63877666,227 MARLIN ROAD,ABSECON CITY,43,1920,2,COM3,3004 -0101_237_15,-74.44051433,39.37176076,229 MARLIN RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_15,-74.78871632,39.63495915,229 MARLIN RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_16,-74.44030282,39.37036951,300 S NEW ROAD,ABSECON CITY,17,1989,1,RES1,3001 -0101_237_16,-74.78743748,39.63474969,300 S NEW ROAD,ABSECON CITY,17,1989,1,RES1,3001 -0101_237_17,-74.44308825,39.3698311,237 MARLIN ROAD,ABSECON CITY,17,1920,1,COM1,3004 -0101_237_17,-74.79164802,39.63357801,237 MARLIN ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_19,-74.43671512,39.36933934,239 MARLIN RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_19,-74.79036272,39.63356209,239 MARLIN RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_2,-74.4072875,39.3771215,411 OHIO AVE,ABSECON CITY,17,1940,1,RES3A,3001 -0101_237_2,-74.77423984,39.597274,411 OHIO AVE,ABSECON CITY,17,1940,1,RES3A,3001 -0101_237_20,-74.434519,39.368562,243 MARLIN RD,ABSECON CITY,17,1961,1,RES1,3001 -0101_237_20,-74.82774265,39.58520441,243 MARLIN RD,ABSECON CITY,17,1961,1,RES1,3001 -0101_237_22,-74.44068866,39.36861901,251 MARLIN RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_237_22,-74.87616983,39.57400999,251 MARLIN RD,ABSECON CITY,17,1980,1,RES1,3001 -0101_237_23,-74.40633,39.393236,253 MARLIN ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_237_23,-74.85221266,39.60432398,253 MARLIN ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_237_25,-74.40041813,39.39169719,257 MARLIN RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_237_25,-74.86286307,39.59656513,257 MARLIN RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_237_26,-74.4021385,39.390353,260 MARLIN ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_237_26,-74.86843274,39.59436494,260 MARLIN ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_237_27,-74.3994955,39.3885105,257 SHOWELLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_237_27,-74.871624,39.5941425,257 SHOWELLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_237_28,-74.40021718,39.39414862,252 MARLIN RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_237_28,-74.87981216,39.59577499,252 MARLIN RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_237_29,-74.36198757,39.40971966,248 MARLIN ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_237_29,-74.880099,39.5952135,248 MARLIN ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_237_3,-74.4227735,39.3764045,405 OHIO AVE,ABSECON CITY,17,1918,1,RES1,3001 -0101_237_3,-74.73956855,39.63949833,405 OHIO AVE,ABSECON CITY,17,1918,1,RES1,3001 -0101_237_30.01,-74.36607961,39.40891136,244 MARLIN ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_237_30.01,-74.8771035,39.5942185,244 MARLIN ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_237_30.02,-74.366232,39.4061765,242 MARLIN ROAD,ABSECON CITY,16,1960,1,RES1,3001 -0101_237_30.02,-74.8826725,39.5926845,242 MARLIN ROAD,ABSECON CITY,16,1960,1,RES1,3001 -0101_237_30.04,-74.36775584,39.40901171,228 MARLIN ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_237_30.04,-74.87634781,39.59259732,228 MARLIN ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_237_30.05,-74.36715216,39.40594401,226 MARLIN ROAD,ABSECON CITY,17,1991,1,RES1,3001 -0101_237_30.05,-74.872403,39.592405,226 MARLIN ROAD,ABSECON CITY,17,1991,1,RES1,3001 -0101_237_30.07,-74.37286733,39.404806,222 MARLIN ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_30.07,-74.86936105,39.60356181,222 MARLIN ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_30.08,-74.371405,39.4037555,216 MARLIN ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_237_30.08,-74.865941,39.602049,216 MARLIN ROAD,ABSECON CITY,17,1930,1,GOV1,3004 -0101_237_30.09,-74.3691555,39.4024665,212 MARLIN RD,ABSECON CITY,17,1928,1,RES1,3001 -0101_237_30.09,-74.87936,39.603981,212 MARLIN RD,ABSECON CITY,17,1928,1,RES1,3001 -0101_237_30.10,-74.357648,39.415147,215 OHIO AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_237_30.10,-74.8104225,39.619756,215 OHIO AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_237_31,-74.36448521,39.41497685,249 SHOWELLTON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_31,-74.80553,39.6310395,249 SHOWELLTON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_32.01,-74.36572619,39.41443654,239 SHOWELLTON AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_237_32.01,-74.7970765,39.630249,239 SHOWELLTON AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_237_32.02,-74.36295663,39.41206142,229 SHOWELLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_237_32.02,-74.80249216,39.62894047,229 SHOWELLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_237_33,-74.373318,39.4183495,225 SHOWELLTON AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_237_33,-74.80497434,39.62808497,225 SHOWELLTON AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_237_34,-74.36678326,39.41616405,221 SHOWELLTON AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_237_34,-74.80245877,39.63880868,221 SHOWELLTON AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_237_35,-74.3733845,39.4152525,217 SHOWELLTON AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_237_35,-74.79736366,39.63794797,217 SHOWELLTON AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_237_36,-74.37277125,39.4125372,205 OHIO AVE,ABSECON CITY,17,1925,1,GOV1,3004 -0101_237_36,-74.79506504,39.63626412,205 OHIO AVE,ABSECON CITY,17,1925,1,GOV1,3004 -0101_237_5,-74.42305634,39.37402649,209 MARLIN ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_5,-74.76956261,39.61384506,209 MARLIN ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_7,-74.42818301,39.37258934,213 MARLIN RD,ABSECON CITY,17,1920,1,GOV1,3004 -0101_237_7,-74.79173012,39.61574241,213 MARLIN RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_237_9,-74.4251515,39.370528,217 MARLIN ROAD,ABSECON CITY,17,1920,1,GOV1,3004 -0101_237_9,-74.75534604,39.63488019,217 MARLIN ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_238_4,-74.37528418,39.41240454,111 HOLLY ROAD,ABSECON CITY,,0,1,RES1,3001 -0101_238_4,-74.80282912,39.63485726,111 HOLLY ROAD,ABSECON CITY,,0,1,RES1,3001 -0101_238_5.01,-74.379441,39.418961,115 HOLLY ROAD,ABSECON CITY,17,1944,2,GOV1,3004 -0101_238_5.01,-74.7983703,39.6344218,115 HOLLY ROAD,ABSECON CITY,17,1944,2,RES3A,3001 -0101_238_5.02,-74.38185773,39.41793365,123 HOLLY ROAD,ABSECON CITY,17,1972,1,RES1,3001 -0101_238_5.02,-74.79912483,39.634284,123 HOLLY ROAD,ABSECON CITY,17,1972,1,RES1,3001 -0101_238_5.03,-74.379613,39.4166535,119 HOLLY ROAD,ABSECON CITY,16,1930,1,RES1,3001 -0101_238_5.03,-74.80049033,39.6334935,119 HOLLY ROAD,ABSECON CITY,16,1930,1,RES1,3001 -0101_238_6,-74.36597721,39.42231009,127 HOLLY ROAD,ABSECON CITY,13,1920,1,RES1,3001 -0101_238_6,-74.80494783,39.63256691,127 HOLLY ROAD,ABSECON CITY,13,1920,1,RES1,3001 -0101_238_7,-74.36405686,39.41933032,131 HOLLY ROAD,ABSECON CITY,,0,1,GOV1,3004 -0101_238_7,-74.80044753,39.63253416,131 HOLLY ROAD,ABSECON CITY,,0,1,RES1,3001 -0101_238_8,-74.3668895,39.42098976,133 HOLLY ROAD,ABSECON CITY,17,1990,1,RES1,3001 -0101_238_8,-74.79541266,39.63227557,133 HOLLY ROAD,ABSECON CITY,17,1990,1,GOV1,3004 -0101_24.01_14.12,-74.53736783,39.38737249,511 LAZY LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_24.01_14.12,-74.492483,39.4325015,511 LAZY LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_24.01_14.13,-74.544689,39.389974,509 LAZY LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_24.01_14.13,-74.49719966,39.43159741,509 LAZY LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_24.01_14.14,-74.54751066,39.38943453,507 LAZY LANE,ABSECON CITY,17,1983,1,GOV1,3004 -0101_24.01_14.14,-74.49612016,39.43113256,507 LAZY LANE,ABSECON CITY,17,1983,1,RES1,3001 -0101_24.01_14.15,-74.54535616,39.38742147,505 LAZY LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_24.01_14.15,-74.49470106,39.42898467,505 LAZY LANE,ABSECON CITY,17,1985,1,RES1,3004 -0101_24.01_14.16,-74.5319095,39.4004385,503 LAZY LANE,ABSECON CITY,18,1980,1,RES1,3001 -0101_24.01_14.16,-74.4986525,39.4345175,503 LAZY LANE,ABSECON CITY,18,1980,1,RES1,3001 -0101_24.01_14.17,-74.5380645,39.398998,501 LAZY LANE,ABSECON CITY,18,1984,1,RES1,3001 -0101_24.01_14.17,-74.50804645,39.43439266,501 LAZY LANE,ABSECON CITY,18,1984,1,RES1,3004 -0101_24.01_14.18,-74.5510445,39.4013585,564 FOURTH ST,ABSECON CITY,18,1986,1,RES1,3001 -0101_24.01_14.18,-74.50083534,39.43423218,564 FOURTH ST,ABSECON CITY,18,1986,1,RES1,3001 -0101_24.01_14.19,-74.54505449,39.39652284,566 FOURTH ST,ABSECON CITY,17,1986,1,RES1,3001 -0101_24.01_14.19,-74.49983755,39.4316161,566 FOURTH ST,ABSECON CITY,17,1986,1,RES1,3001 -0101_24.01_14.20,-74.56197583,39.39062262,601 HAY ROAD,ABSECON CITY,18,1987,1,RES1,3001 -0101_24.01_14.20,-74.50365374,39.43083909,601 HAY ROAD,ABSECON CITY,18,1987,1,RES1,3001 -0101_24.01_14.21,-74.55808365,39.39894461,603 HAY ROAD,ABSECON CITY,17,1987,1,RES1,3001 -0101_24.01_14.21,-74.5007813,39.43077445,603 HAY ROAD,ABSECON CITY,17,1987,1,RES1,3001 -0101_24.01_14.22,-74.55813076,39.39757108,605 HAY ROAD,ABSECON CITY,17,1984,1,RES1,3001 -0101_24.01_14.22,-74.51523213,39.43249781,605 HAY ROAD,ABSECON CITY,17,1984,1,RES1,3001 -0101_24_11.01,-74.53508616,39.37811049,500 FOURTH ST,ABSECON CITY,17,1950,1,RES1,3001 -0101_24_11.01,-74.5040785,39.4174385,500 FOURTH ST,ABSECON CITY,17,1950,1,RES1,3001 -0101_24_11.02,-74.5419455,39.3781845,540 FOURTH ST,ABSECON CITY,17,1985,1,RES1,3001 -0101_24_11.02,-74.5036565,39.40719067,540 FOURTH ST,ABSECON CITY,17,1985,1,RES1,3001 -0101_24_11.03,-74.53943401,39.38113755,550 FOURTH ST,ABSECON CITY,17,1978,1,RES1,3001 -0101_24_11.03,-74.50770583,39.40796299,550 FOURTH ST,ABSECON CITY,17,1978,1,RES1,3001 -0101_24_11.06,-74.537359,39.38171,554 FOURTH ST,ABSECON CITY,17,2000,1,RES1,3001 -0101_24_11.06,-74.5037988,39.40820711,554 FOURTH ST,ABSECON CITY,17,2000,1,RES1,3001 -0101_24_12,-74.5510115,39.3789985,622 HAY ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_24_12,-74.499061,39.415235,622 HAY ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_24_13.01,-74.54966113,39.37790256,608 LAZY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_24_13.01,-74.5054215,39.4150565,608 LAZY LANE,ABSECON CITY,17,1980,1,GOV1,3004 -0101_24_13.02,-74.54363136,39.37766188,604 LAZY LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_24_13.02,-74.5022275,39.414177,604 LAZY LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_24_13.03,-74.55560232,39.37414726,602 LAZY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_24_13.03,-74.50071009,39.41323583,602 LAZY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_24_13.04,-74.56044003,39.3713542,618 HAY ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_24_13.04,-74.499273,39.4121425,618 HAY ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_24_14.02,-74.56097493,39.37089016,502 LAZY LANE,ABSECON CITY,17,1986,1,REL1,3004 -0101_24_14.02,-74.519874,39.4101365,502 LAZY LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_24_14.04,-74.55578419,39.36849221,506 LAZY LANE,ABSECON CITY,18,1986,1,RES1,3001 -0101_24_14.04,-74.518458,39.407595,506 LAZY LANE,ABSECON CITY,18,1986,1,RES1,3001 -0101_24_14.05,-74.56742675,39.37251466,508 LAZY LANE,ABSECON CITY,18,1981,1,RES1,3001 -0101_24_14.05,-74.5137519,39.40442916,508 LAZY LANE,ABSECON CITY,18,1981,1,COM1,3004 -0101_24_14.06,-74.574474,39.3720505,510 LAZY LANE,ABSECON CITY,18,1980,1,RES1,3001 -0101_24_14.06,-74.5166845,39.417386,510 LAZY LANE,ABSECON CITY,18,1980,1,RES1,3001 -0101_24_14.07,-74.57470303,39.37184682,512 LAZY LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_24_14.07,-74.48838784,39.4220161,512 LAZY LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_24_14.08,-74.56767698,39.37182767,514 LAZY LANE,ABSECON CITY,18,1987,1,RES1,3001 -0101_24_14.08,-74.50562481,39.42466394,514 LAZY LANE,ABSECON CITY,18,1987,1,RES1,3001 -0101_24_14.09,-74.56518429,39.37137951,516 LAZY LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_24_14.09,-74.49807991,39.43601885,516 LAZY LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_24_14.10,-74.55556033,39.38417834,518 LAZY LANE,ABSECON CITY,18,1989,1,RES1,3001 -0101_24_14.10,-74.49379677,39.43535906,518 LAZY LANE,ABSECON CITY,18,1989,1,COM1,3004 -0101_24_14.24,-74.56196018,39.37097448,615 HAY ROAD,ABSECON CITY,18,1990,1,COM1,3004 -0101_24_14.24,-74.5031755,39.4114705,615 HAY ROAD,ABSECON CITY,18,1990,1,RES1,3001 -0101_24_3,-74.76111167,39.34730724,118 KESLER LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_24_3,-74.52728108,39.39522681,118 KESLER LANE,ABSECON CITY,17,1974,1,RES1,3001 -0101_24_6,-74.54237926,39.37027034,1 HOWLETT LANE,ABSECON CITY,17,1964,1,RES1,3001 -0101_24_6,-74.50272281,39.40828547,1 HOWLETT LANE,ABSECON CITY,17,1964,1,RES1,3001 -0101_24_7.02,-74.79666774,39.36764937,600 SOOY LANE,ABSECON CITY,17,1982,1,RES1,3001 -0101_24_7.02,-74.486604,39.435038,600 SOOY LANE,ABSECON CITY,17,1982,1,RES1,3002 -0101_24_7.03,-74.54466102,39.37629954,602 SOOY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_24_7.03,-74.48515102,39.43117809,602 SOOY LANE,ABSECON CITY,17,1980,1,RES1,3001 -0101_24_7.07,-74.543044,39.3738635,608 SOOY LANE,ABSECON CITY,17,2004,1,RES1,3001 -0101_24_7.07,-74.50438518,39.41060554,608 SOOY LANE,ABSECON CITY,17,2004,1,RES1,3001 -0101_24_7.08,-74.54756934,39.37331098,610 SOOY LANE,ABSECON CITY,17,2007,1,RES1,3001 -0101_24_7.08,-74.50516319,39.41048108,610 SOOY LANE,ABSECON CITY,17,2007,1,RES1,3001 -0101_24_7.09,-74.55236832,39.37159396,612 SOOY LANE,ABSECON CITY,17,2006,1,RES1,3001 -0101_24_7.09,-74.50041871,39.40867332,612 SOOY LANE,ABSECON CITY,17,2006,1,RES1,3001 -0101_24_9.03,-74.55222024,39.38242198,610 LAZY LANE,ABSECON CITY,17,1972,1,RES1,3001 -0101_24_9.03,-74.498588,39.41622,610 LAZY LANE,ABSECON CITY,17,1972,1,RES3A,3001 -0101_24_9.04,-74.5467345,39.379452,621 SOOY LANE,ABSECON CITY,18,1989,1,RES3A,3001 -0101_24_9.04,-74.49969116,39.41601683,621 SOOY LANE,ABSECON CITY,18,1989,1,RES1,3001 -0101_25.01_10,-74.80341383,39.37801851,408 BURNING TREE BLVD,ABSECON CITY,17,1994,1,RES1,3001 -0101_25.01_10,-74.5907006,39.3643874,408 BURNING TREE BLVD,ABSECON CITY,17,1994,1,RES1,3001 -0101_25.01_11,-74.81768309,39.37621824,410 BURNING TREE BLVD,ABSECON CITY,18,1991,1,RES1,3001 -0101_25.01_11,-74.59574136,39.36246264,410 BURNING TREE BLVD,ABSECON CITY,18,1991,1,RES1,3001 -0101_25.01_7,-74.75838734,39.42952823,402 BURNING TREE BLVD,ABSECON CITY,18,1989,1,IND1,3004 -0101_25.01_7,-74.59020632,39.36586342,402 BURNING TREE BLVD,ABSECON CITY,18,1989,1,RES1,3001 -0101_25.01_8,-74.7584495,39.429234,404 BURNING TREE BLVD,ABSECON CITY,18,2016,1,RES1,3001 -0101_25.01_8,-74.592147,39.365202,404 BURNING TREE BLVD,ABSECON CITY,18,2016,1,COM1,3004 -0101_25_3,-74.7587595,39.4335685,112 CEDAR HILL DRIVE,ABSECON CITY,17,1995,1,RES1,3001 -0101_25_3,-74.58483635,39.35731367,112 CEDAR HILL DRIVE,ABSECON CITY,17,1995,1,RES1,3001 -0101_25_4,-74.756246,39.4327835,110 CEDAR HILL,ABSECON CITY,17,1962,1,RES1,3001 -0101_25_4,-74.57591308,39.35179832,110 CEDAR HILL,ABSECON CITY,17,1962,1,RES1,3001 -0101_25_5,-74.75605789,39.43146991,501 BURNING TREE BLVD,ABSECON CITY,18,1992,1,RES1,3001 -0101_25_5,-74.59131983,39.35514083,501 BURNING TREE BLVD,ABSECON CITY,18,1992,1,RES1,3001 -0101_25_6,-74.75954377,39.42976046,500 BURNING TREE BLVD,ABSECON CITY,18,1994,1,RES1,3001 -0101_25_6,-74.578656,39.360629,500 BURNING TREE BLVD,ABSECON CITY,18,1994,1,COM1,3004 -0101_258.01_1.100,-74.7955305,39.674428,49 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.100,-74.8144165,39.3878195,49 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,COM1,3004 -0101_258.01_1.101,-74.41559313,39.36802426,47 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,COM1,3004 -0101_258.01_1.101,-74.81559573,39.39999932,47 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.102,-74.44224032,39.35800099,45 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.102,-74.8272199,39.39963401,45 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,GOV1,3004 -0101_258.01_1.103,-74.4422595,39.3555955,43 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,COM1,3004 -0101_258.01_1.103,-74.84917278,39.39293687,43 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.104,-74.43707545,39.35406274,41 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.104,-74.8436465,39.391412,41 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.105,-74.440455,39.365898,39 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.105,-74.85103662,39.39174725,39 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.106,-74.436725,39.3650965,37 ABLES RUN DR,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.106,-74.849336,39.398082,37 ABLES RUN DR,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.107,-74.43499528,39.3633333,35 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.107,-74.797329,39.417547,35 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.108,-74.4337815,39.3621045,33 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.108,-74.83215063,39.42460233,33 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.109,-74.52439657,39.31611217,31 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.109,-74.714743,39.437355,31 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.110,-74.52324855,39.31600567,29 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258.01_1.110,-74.72759963,39.45109176,29 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.111,-74.527618,39.312623,27 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.111,-74.736254,39.450127,27 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.112,-74.52612148,39.31164883,25 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.112,-74.736458,39.449427,25 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.113,-74.50761507,39.32497614,23 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.113,-74.736219,39.4493225,23 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.114,-74.4907899,39.33371283,21 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.114,-74.7342425,39.448237,21 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.115,-74.497076,39.333218,19 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.115,-74.74880569,39.45289345,19 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.116,-74.49683536,39.33248334,17 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.116,-74.74566282,39.44675882,17 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.117,-74.49828862,39.32945517,15 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.117,-74.7480355,39.44643,15 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.118,-74.4988985,39.3338745,13 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.118,-74.72728027,39.45546174,13 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.119,-74.49914859,39.33304334,11 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.119,-74.72650919,39.45450903,11 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.120,-74.50510706,39.33255436,9 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.120,-74.72820007,39.45388383,9 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258.01_1.121,-74.502418,39.332275,7 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.121,-74.712573,39.4671515,7 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.122,-74.50914907,39.33210418,5 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.122,-74.7136895,39.4668955,5 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.123,-74.50461684,39.33203749,3 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.123,-74.71256106,39.46669284,3 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.124,-74.49968506,39.33157217,1 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.124,-74.71406408,39.46525523,1 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.125,-74.50392016,39.33156752,DELRAY LANE-REAR,ABSECON CITY,,0,1,RES1,3001 -0101_258.01_1.125,-74.7330185,39.46144,DELRAY LANE-REAR,ABSECON CITY,,0,1,RES1,3001 -0101_258.01_1.82,-74.79018268,39.64264601,1 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.82,-74.689513,39.5038725,1 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.83,-74.79007033,39.64153498,3 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.83,-74.69184971,39.50079491,3 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.84,-74.7770955,39.6555445,5 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.84,-74.68922535,39.49627504,5 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.85,-74.7761005,39.6643775,7 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.85,-74.716812,39.380617,7 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.86,-74.78221721,39.65893232,9 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.86,-74.7200935,39.3915545,9 DELRAY LANE,ABSECON CITY,37,2006,1,COM1,3004 -0101_258.01_1.87,-74.78068437,39.66878712,11 DELRAY LANE,ABSECON CITY,37,2006,1,COM1,3004 -0101_258.01_1.87,-74.7163735,39.394418,11 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.88,-74.787296,39.6778315,13 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.88,-74.747892,39.3976865,13 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.89,-74.80428227,39.64192344,15 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.89,-74.7473681,39.39469904,15 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.90,-74.801483,39.641813,17 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.90,-74.76762549,39.38545239,17 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.91,-74.81603682,39.64222029,19 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.91,-74.71535546,39.4154842,19 DELRAY LANE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258.01_1.92,-74.81424917,39.64056463,21 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.92,-74.71295422,39.42014821,21 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.93,-74.81088654,39.64052116,23 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.93,-74.7551145,39.433333,23 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.94,-74.79495184,39.64863803,25 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.94,-74.75731955,39.43269474,25 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.95,-74.81678666,39.65518368,27 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.95,-74.7541925,39.4298185,27 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.96,-74.81535617,39.65369476,29 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.96,-74.75926216,39.42973364,29 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.97,-74.8128245,39.649604,31 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.97,-74.80773299,39.37542129,31 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.98,-74.80742793,39.64878258,33 DELRAY LANE,ABSECON CITY,37,2005,1,RES1,3001 -0101_258.01_1.98,-74.80933153,39.37843127,33 DELRAY LANE,ABSECON CITY,37,2005,1,RES1,3001 -0101_258.01_1.99,-74.7959445,39.6615723,35 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.01_1.99,-74.832405,39.3843995,35 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.131,-74.50398616,39.33082601,2 DELRAY LANE,ABSECON CITY,,2006,1,RES1,3001 -0101_258.02_1.131,-74.75378177,39.44839305,2 DELRAY LANE,ABSECON CITY,,2006,1,RES1,3001 -0101_258.02_1.69,-74.50716662,39.33134141,28 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.69,-74.7618315,39.44433017,28 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.70,-74.50663742,39.33045784,26 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.70,-74.755543,39.44814,26 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3002 -0101_258.02_1.71,-74.50025384,39.33037749,24 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.71,-74.75679626,39.44797179,24 DELRAY LANE,ABSECON CITY,37,2006,1,COM1,3004 -0101_258.02_1.72,-74.50438766,39.32955402,22 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.72,-74.75925463,39.44599149,22 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3002 -0101_258.02_1.73,-74.50706856,39.32933117,20 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3002 -0101_258.02_1.73,-74.76005,39.445454,20 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.74,-74.5050787,39.32915895,18 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3004 -0101_258.02_1.74,-74.75821963,39.44525062,18 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.75,-74.50411122,39.32892759,16 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.75,-74.76187878,39.44480056,16 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.76,-74.50858709,39.32660667,14 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.76,-74.75228818,39.45372558,14 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3004 -0101_258.02_1.77,-74.50837009,39.32637816,12 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.77,-74.7530635,39.4532845,12 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.78,-74.5042055,39.326214,10 DELRAY LANE,ABSECON CITY,37,2006,1,REL1,3004 -0101_258.02_1.78,-74.719679,39.4813775,10 DELRAY LANE,ABSECON CITY,37,2006,1,COM1,3004 -0101_258.02_1.79,-74.51101335,39.32558998,8 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.79,-74.73351899,39.49261317,8 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.80,-74.50979345,39.32299033,6 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.80,-74.808254,39.4590685,6 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.81,-74.52000192,39.32204665,4 DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258.02_1.81,-74.80639219,39.46609503,4 DELRAY LANE,ABSECON CITY,37,2006,1,GOV1,3004 -0101_258_1.03,-74.80571267,39.62887099,40 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.03,-74.6282615,39.427724,40 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.04,-74.81383751,39.62618233,42 W DELRAY LANE,ABSECON CITY,37,2006,1,RES3A,3002 -0101_258_1.04,-74.6349895,39.4290135,42 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.05,-74.79808834,39.63421547,44 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.05,-74.64834,39.4330035,44 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.06,-74.79738917,39.63281051,46 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.06,-74.69570242,39.41909284,46 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.07,-74.79576006,39.6311103,48 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3002 -0101_258_1.07,-74.69152541,39.41938931,48 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.08,-74.81014964,39.63756126,50 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.08,-74.53511595,39.45163634,50 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.09,-74.81384552,39.63734633,52 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.09,-74.53534325,39.45969148,52 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.10,-74.80869815,39.63671554,54 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.10,-74.5441465,39.4580405,54 W DELRAY LANE,ABSECON CITY,37,2006,1,COM1,3002 -0101_258_1.11,-74.80912464,39.63495522,56 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.11,-74.5397925,39.469851,56 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.12,-74.81979484,39.63098447,58 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.12,-74.537639,39.46975,58 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.126,-74.77684539,39.64342089,30 W DELRAY LANE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258_1.126,-74.68170262,39.50341637,30 W DELRAY LANE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258_1.127,-74.776149,39.6431035,32 W DELRAY LANE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258_1.127,-74.68480319,39.5016027,32 W DELRAY LANE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258_1.128,-74.7797845,39.64224,34 W DELRAY LANE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258_1.128,-74.68887671,39.4944912,34 W DELRAY LANE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258_1.129,-74.79201615,39.64597696,36 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.129,-74.68958716,39.49403654,36 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.13,-74.81766659,39.6258704,60 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.13,-74.5386045,39.4682915,60 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.130,-74.792404,39.643298,38 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.130,-74.699379,39.493528,38 W DELRAY LANE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.132,-74.7754142,39.64452348,ABLES RUN DRIVE-REAR,ABSECON CITY,,0,1,RES1,3001 -0101_258_1.132,-74.66964246,39.49946444,ABLES RUN DRIVE-REAR,ABSECON CITY,,0,1,RES1,3004 -0101_258_1.14,-74.81740303,39.62540139,62 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.14,-74.5498975,39.4665865,62 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.16,-74.36431774,39.41333404,66 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.16,-74.92482506,39.5092875,66 W DELRAY LANE,ABSECON CITY,37,2007,1,RES3A,3001 -0101_258_1.17,-74.822725,39.6376245,68 W DELRAY LANE,ABSECON CITY,37,2006,1,COM1,3004 -0101_258_1.17,-74.57702294,39.44754648,68 W DELRAY LANE,ABSECON CITY,37,2006,1,RES3B,3001 -0101_258_1.18,-74.82021653,39.63217716,70 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.18,-74.6074815,39.43906,70 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.19,-74.8469882,39.60871164,72 W DELRAY LANE,ABSECON CITY,37,2007,1,RES3A,3001 -0101_258_1.19,-74.61807154,39.43850502,72 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.20,-74.9152985,39.472822,74 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.20,-74.6155225,39.459766,74 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.21,-74.91275647,39.48140471,76 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.21,-74.61657814,39.45385015,76 W DELRAY LANE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.23,-74.90997743,39.49376793,2 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.23,-74.553055,39.478564,2 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.24,-74.909332,39.493658,4 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.24,-74.55248875,39.47772925,4 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.25,-74.90500966,39.49237151,6 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.25,-74.55321841,39.47683921,6 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.26,-74.96175244,39.49892324,8 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.26,-74.54719495,39.47474432,8 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.27,-74.961408,39.498294,10 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.27,-74.54510646,39.47457774,10 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.28,-74.90679953,39.50553988,12 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.28,-74.55137824,39.47109446,12 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.29,-74.926477,39.5104205,14 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.29,-74.55672058,39.47804478,14 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.30,-74.92675234,39.50867149,16 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.30,-74.558857,39.473903,16 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.31,-74.92413723,39.50832802,18 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.31,-74.55716264,39.47383129,18 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.32,-74.92591616,39.507566,20 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.32,-74.5592245,39.4724405,20 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.34,-74.91244546,39.52809685,22 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3002 -0101_258_1.34,-74.55607837,39.47187982,22 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.35,-74.91894848,39.53102362,24 ABLES RUN DR,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.35,-74.57212089,39.47686009,24 ABLES RUN DR,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.36,-74.9277995,39.5095165,26 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.36,-74.56695425,39.47632354,26 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.37,-74.9292125,39.508164,28 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.37,-74.5661845,39.47578809,28 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3004 -0101_258_1.38,-74.92870057,39.50778892,30 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.38,-74.557064,39.478804,30 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.39,-74.93555437,39.50599565,32 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES3A,3001 -0101_258_1.39,-74.57503283,39.48454799,32 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.40,-74.942124,39.511062,34 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.40,-74.595758,39.474086,34 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.41,-74.93934868,39.52098767,36 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.41,-74.58190315,39.48353123,36 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.42,-74.93911513,39.51961798,38 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.42,-74.61028053,39.47694581,38 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.43,-74.95712,39.5115775,40 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.43,-74.60278566,39.48443764,40 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.44,-74.9493555,39.519184,42 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.44,-74.60220671,39.48140046,42 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.45,-74.9487415,39.5183605,44 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES3A,3001 -0101_258_1.45,-74.58530298,39.48828466,44 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,AGR1,3001 -0101_258_1.46,-74.963862,39.512958,46 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.46,-74.59805628,39.49513758,46 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.47,-74.9690495,39.5127995,48 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.47,-74.61006395,39.49092771,48 ABLES RUN DRIVE,ABSECON CITY,37,2007,1,RES1,3001 -0101_258_1.48,-74.937722,39.5257915,50 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.48,-74.6111615,39.4887825,50 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.49,-74.93658617,39.523858,52 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.49,-74.60019998,39.49625409,52 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.50,-74.93395268,39.52308643,54 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.50,-74.629022,39.440142,54 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.51,-74.93870743,39.5244458,56 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.51,-74.6205162,39.43721113,56 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.52,-74.9442405,39.5244245,58 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,AGR1,3001 -0101_258_1.52,-74.63186,39.4534505,58 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.53,-74.93921118,39.52105247,60 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,COM4,3004 -0101_258_1.53,-74.63400571,39.46745296,60 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.54,-74.9375665,39.530772,62 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3002 -0101_258_1.54,-74.64890067,39.46879617,62 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES3A,3001 -0101_258_1.55,-74.93292865,39.5294967,64 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.55,-74.681816,39.4504135,64 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3002 -0101_258_1.56,-74.942843,39.5296825,66 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,GOV1,3004 -0101_258_1.56,-74.7026215,39.4434835,66 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.57,-74.9498585,39.52368,68 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.57,-74.69606496,39.44104187,68 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,GOV1,3004 -0101_258_1.58,-74.886668,39.558004,70 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,GOV1,3004 -0101_258_1.58,-74.69023168,39.44683903,70 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,AGR1,3001 -0101_258_1.59,-74.88858481,39.56721648,72 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,GOV1,3004 -0101_258_1.59,-74.6689425,39.456354,72 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,GOV1,3004 -0101_258_1.60,-74.9213985,39.5613805,74 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.60,-74.66661764,39.46350223,74 ABLES RUN DRIVE,ABSECON CITY,37,2006,1,RES1,3001 -0101_258_1.62,-74.972103,39.50828,76 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.62,-74.706111,39.4670425,76 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.63,-74.97179827,39.50606425,78 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.63,-74.63504704,39.48719666,78 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.64,-74.8848415,39.585994,80 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.64,-74.63403265,39.50364008,80 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.65,-74.88612323,39.59696856,82 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.65,-74.68058,39.486596,82 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.66,-74.71142974,39.64014409,84 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,REL1,3004 -0101_258_1.66,-74.69100418,39.48090763,84 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,COM1,3004 -0101_258_1.67,-74.7427645,39.643582,86 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.67,-74.690081,39.480447,86 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.68,-74.767545,39.645588,88 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_258_1.68,-74.6840925,39.490439,88 ABLES RUN DRIVE,ABSECON CITY,37,2008,1,RES1,3001 -0101_259_4,-74.450091,39.374235,133 PLEASANT AVE,ABSECON CITY,,0,1,RES1,3002 -0101_259_4,-74.80772114,39.63674105,133 PLEASANT AVE,ABSECON CITY,,0,1,RES1,3001 -0101_261_1,-74.449941,39.3738485,121 PLEASANT AVE,ABSECON CITY,,0,1,RES1,3001 -0101_261_1,-74.81228186,39.63627482,121 PLEASANT AVE,ABSECON CITY,,0,1,RES1,3001 -0101_262_3.02,-74.6453565,39.450742,107 SUMMIT AV (JOSEPH LA),ABSECON CITY,17,1954,1,GOV1,3004 -0101_262_3.02,-74.5578295,39.367777,107 SUMMIT AV (JOSEPH LA),ABSECON CITY,17,1954,1,RES1,3001 -0101_262_9,-74.8250605,39.6188555,515 S MILL ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_262_9,-74.6209348,39.4308899,515 S MILL ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_264_10,-74.52403764,39.32145942,504 S MILL ROAD,ABSECON CITY,17,1940,1,RES1,3001 -0101_264_10,-74.8551265,39.4852445,504 S MILL ROAD,ABSECON CITY,17,1940,1,RES1,3001 -0101_264_15,-74.522563,39.319478,102 HOLLY ROAD,ABSECON CITY,17,1980,1,GOV1,3004 -0101_264_15,-74.56393723,39.51465844,102 HOLLY ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_264_17,-74.52508656,39.31853252,108 HOLLY ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_264_17,-74.53312553,39.52161966,108 HOLLY ROAD,ABSECON CITY,17,1952,1,RES1,3004 -0101_264_19,-74.52481335,39.31731454,116 HOLLY ROAD,ABSECON CITY,17,1955,1,GOV1,3004 -0101_264_19,-74.59238415,39.50684896,116 HOLLY ROAD,ABSECON CITY,17,1955,1,RES1,3001 -0101_264_20,-74.510121,39.3335545,120 HOLLY RD,ABSECON CITY,16,1949,1,RES1,3001 -0101_264_20,-74.59195541,39.50610886,120 HOLLY RD,ABSECON CITY,16,1949,1,RES1,3001 -0101_264_21,-74.51291984,39.33151249,122 HOLLY ROAD,ABSECON CITY,17,1963,1,GOV1,3004 -0101_264_21,-74.576408,39.530677,122 HOLLY ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_264_22,-74.50966401,39.32912034,126 HOLLY ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_264_22,-74.61540527,39.52210524,126 HOLLY ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_264_5,-74.50930288,39.32188052,514 S MILL ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_264_5,-74.86435673,39.43997935,514 S MILL ROAD,ABSECON CITY,17,1930,1,RES1,3002 -0101_264_6,-74.51979234,39.32186549,512 S MILL ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_264_6,-74.8384584,39.47967523,512 S MILL ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_264_7,-74.5200785,39.321323,510 S MILL ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_264_7,-74.83332079,39.48907287,510 S MILL ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_264_8,-74.51837916,39.3207497,508 S MILL ROAD,ABSECON CITY,16,1930,1,RES1,3001 -0101_264_8,-74.85483984,39.48606874,508 S MILL ROAD,ABSECON CITY,16,1930,1,RES1,3001 -0101_268_2,-74.36273886,39.41158717,710 W CALIFORNIA AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_268_2,-74.90339718,39.53491902,710 W CALIFORNIA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_269_4,-74.5103735,39.3289025,108 HICKORY ST,ABSECON CITY,17,1930,1,RES1,3001 -0101_269_4,-74.5460042,39.54669916,108 HICKORY ST,ABSECON CITY,17,1930,1,RES1,3001 -0101_283_1,-74.36183763,39.41107856,602 W CALIFORNIA AVE,ABSECON CITY,17,2006,1,RES1,3001 -0101_283_1,-74.9114622,39.53543898,602 W CALIFORNIA AVE,ABSECON CITY,17,2006,1,RES1,3001 -0101_283_2,-74.37007656,39.41902471,42 W CALIFORNIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_283_2,-74.93710166,39.51995773,42 W CALIFORNIA AVE,ABSECON CITY,17,1930,1,COM4,3004 -0101_283_4,-74.5151375,39.3276385,104 ELM ST,ABSECON CITY,17,2007,1,COM1,3004 -0101_283_4,-74.6161515,39.556313,104 ELM ST,ABSECON CITY,17,2007,1,RES1,3001 -0101_283_6,-74.5108885,39.3274135,106 ELM ST,ABSECON CITY,17,1960,1,COM8,3004 -0101_283_6,-74.6359465,39.50908,106 ELM ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_283_8,-74.51433828,39.32721664,108 ELM STREET,ABSECON CITY,17,2003,1,RES1,3001 -0101_283_8,-74.62279672,39.52021531,108 ELM STREET,ABSECON CITY,17,2003,1,RES1,3002 -0101_289_1_C022D,-74.51402376,39.32682641,22D OYSTER BAY RD,ABSECON CITY,35,1992,1,RES1,3001 -0101_289_1_C022D,-74.64810265,39.51979305,22D OYSTER BAY RD,ABSECON CITY,35,1992,1,RES3A,3001 -0101_289_10,-74.51453175,39.46079355,432 W CALIFORNIA AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_289_10,-74.52468302,39.31355834,432 W CALIFORNIA AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_289_4.01,-74.461119,39.3504675,169 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_4.01,-74.64525704,39.51662033,169 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_4.02,-74.45752832,39.34890135,167 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_4.02,-74.6532145,39.5205325,167 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_4.03,-74.46022384,39.34675849,165 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_4.03,-74.66169399,39.51721467,165 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_4.04,-74.46344683,39.34599702,163 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_4.04,-74.63608371,39.525009,163 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_4.05,-74.46443932,39.34540376,161 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_4.05,-74.6376255,39.5235265,161 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_4.06,-74.46210955,39.34503018,159 MARIN DRIVE,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_4.06,-74.64063643,39.52336716,159 MARIN DRIVE,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.01,-74.4740823,39.34242608,100 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.01,-74.64021008,39.53653934,100 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.02,-74.4725676,39.34216683,102 MARIN DR,ABSECON CITY,33,1981,1,COM3,3004 -0101_289_5.02,-74.6402586,39.53277365,102 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.03,-74.47190718,39.34195299,104 MARIN DR,ABSECON CITY,33,1981,1,AGR1,3001 -0101_289_5.03,-74.64065732,39.53172721,104 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.04,-74.474858,39.3408925,106 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.04,-74.6451475,39.528877,106 MARIN DR,ABSECON CITY,33,1981,1,RES1,3002 -0101_289_5.05,-74.4830185,39.342135,108 MARIN DR,ABSECON CITY,33,1981,1,COM1,3004 -0101_289_5.05,-74.642025,39.5282405,108 MARIN DR,ABSECON CITY,33,1981,1,AGR1,3001 -0101_289_5.06,-74.48225818,39.34154333,110 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.06,-74.64668534,39.52489711,110 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.07,-74.4841535,39.34101,112 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.07,-74.650298,39.5244625,112 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.08,-74.4851385,39.340548,114 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.08,-74.65792934,39.52351482,114 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.09,-74.4794147,39.33926822,116 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.09,-74.644806,39.5348355,116 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.10,-74.486584,39.336967,118 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.10,-74.648258,39.5334595,118 MARIN DR,ABSECON CITY,33,1981,1,GOV1,3004 -0101_289_5.11,-74.481014,39.3360345,120 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.11,-74.64734642,39.53263165,120 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.12,-74.4850335,39.3359995,122 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.12,-74.65125403,39.53196705,122 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.13,-74.48397929,39.33521706,124 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.13,-74.64956633,39.531829,124 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.14,-74.46992,39.3461365,126 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.14,-74.64314722,39.52955865,126 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.15,-74.467821,39.345923,128 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.15,-74.6435514,39.52954165,128 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.16,-74.46792007,39.34492672,130 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.16,-74.63655403,39.53944009,130 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.17,-74.46782053,39.34480133,132 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.17,-74.65047744,39.53890335,132 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.18,-74.466607,39.34478,134 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.18,-74.64604457,39.55022234,134 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.19,-74.48058085,39.35036421,136 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.19,-74.647612,39.548684,136 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.20,-74.4838565,39.34950317,138 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.20,-74.68547048,39.55425734,138 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.21,-74.47917833,39.34800854,140 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.21,-74.66735374,39.56146786,140 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.22,-74.47899483,39.34749955,142 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.22,-74.683575,39.556857,142 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.23,-74.4784575,39.3458665,144 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.23,-74.674459,39.5552095,144 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.24,-74.4839159,39.34463,146 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.24,-74.67637595,39.55494455,146 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.25,-74.48390503,39.34351472,148 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.25,-74.706461,39.568387,148 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.26,-74.45154812,39.35717169,150 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.26,-74.6189963,39.62181003,150 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.27,-74.4495175,39.354978,152 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.27,-74.6614755,39.583387,152 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.28,-74.45265172,39.35457612,154 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.28,-74.69586284,39.5915802,154 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.29,-74.4498605,39.354629,156 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.29,-74.69685634,39.59335409,156 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.30,-74.4513558,39.35430346,158 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.30,-74.630383,39.61384,158 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.31,-74.4516115,39.353467,160 MARIN DR,ABSECON CITY,37,1988,1,GOV1,3004 -0101_289_5.31,-74.63275938,39.61315487,160 MARIN DR,ABSECON CITY,37,1988,1,RES1,3001 -0101_289_5.32,-74.4639845,39.3590355,162 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.32,-74.62586969,39.61742748,162 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.33,-74.46418432,39.35868952,164 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.33,-74.64177852,39.62530367,164 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.34,-74.4628635,39.3586675,166 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.34,-74.64481552,39.62494567,166 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.35,-74.46509413,39.35840057,168 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.35,-74.64313638,39.62475587,168 MARIN DR,ABSECON CITY,33,1988,1,RES1,3004 -0101_289_5.36,-74.46312442,39.3581952,170 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.36,-74.65668884,39.6242739,170 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.37,-74.378361,39.418986,157 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.37,-74.94257145,39.52498831,157 MARIN DR,ABSECON CITY,33,1988,1,RES3A,3001 -0101_289_5.38,-74.37648883,39.41354453,155 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.38,-74.931979,39.5249565,155 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.39,-74.37364,39.414599,153 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.39,-74.95431339,39.51683974,153 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.40,-74.37216301,39.41475976,151 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.40,-74.94781808,39.51664377,151 MARIN DR,ABSECON CITY,33,1988,1,GOV1,3004 -0101_289_5.41,-74.373132,39.414924,149 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.41,-74.9450825,39.518585,149 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.42,-74.3742295,39.41589,147 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.42,-74.92685405,39.51534515,147 MARIN DR,ABSECON CITY,33,1988,1,RES1,3001 -0101_289_5.43,-74.37308388,39.41383538,123 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.43,-74.96968517,39.51843198,123 MARIN DR,ABSECON CITY,33,1981,1,GOV1,3004 -0101_289_5.44,-74.36723517,39.41142976,121 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.44,-74.9424296,39.52915298,121 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.45,-74.37765243,39.40317062,119 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.45,-74.94736326,39.52728415,119 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.46,-74.38205946,39.41724871,117 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.46,-74.93945069,39.52257696,117 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.47,-74.495876,39.3330717,115 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.47,-74.7106095,39.413394,115 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.48,-74.5153925,39.328154,113 MARIN DR,ABSECON CITY,33,1981,1,GOV1,3004 -0101_289_5.48,-74.58629888,39.54139563,113 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.49,-74.461887,39.357661,111 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.49,-74.68178272,39.63573343,111 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.50,-74.4593535,39.3558195,109 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.50,-74.69201719,39.63644166,109 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.51,-74.45980548,39.35410583,107 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.51,-74.70115429,39.63679098,107 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.52,-74.4628175,39.3530425,105 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.52,-74.782329,39.505021,105 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.53,-74.46198476,39.35227616,103 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.53,-74.79277567,39.533835,103 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.54,-74.48588814,39.3531341,101 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_5.54,-74.7902835,39.5327745,101 MARIN DR,ABSECON CITY,33,1981,1,RES1,3001 -0101_289_6,-74.48163943,39.35260818,444 W CALIFORNIA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_289_6,-74.8189673,39.52898565,444 W CALIFORNIA AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_289_7,-74.49545261,39.34202352,442 W CALIFORNIA AVE,ABSECON CITY,17,1987,1,RES3B,3001 -0101_289_7,-74.81714393,39.52336928,442 W CALIFORNIA AVE,ABSECON CITY,17,1987,1,GOV1,3004 -0101_289_8,-74.50003002,39.43513507,440 W CALIFORNIA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_289_8,-74.887127,39.5989175,440 W CALIFORNIA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_289_9,-74.50162821,39.46490562,436 W CALIFORNIA AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_289_9,-74.52378233,39.31622853,436 W CALIFORNIA AVE,ABSECON CITY,17,1935,1,GOV1,3004 -0101_29.01_3,-74.60480192,39.37117827,1011 MORTON AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_29.01_3,-74.48126067,39.45694787,1011 MORTON AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_29.02_10.01,-74.484858,39.52633849,153 CRESTVIEW AVE,ABSECON CITY,17,1983,1,RES1,3001 -0101_29.02_10.01,-74.523228,39.320941,153 CRESTVIEW AVE,ABSECON CITY,17,1983,1,RES1,3001 -0101_29.02_10.02,-74.48639422,39.5217135,151 CRESTVIEW AVE,ABSECON CITY,17,1968,1,GOV1,3004 -0101_29.02_10.02,-74.523899,39.319983,151 CRESTVIEW AVE,ABSECON CITY,17,1968,1,COM3,3004 -0101_29.02_11.01,-74.48651572,39.53405841,149 CRESTVIEW AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_29.02_11.01,-74.52407518,39.31856781,149 CRESTVIEW AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_29.02_11.02,-74.49398858,39.52143697,147 CRESTVIEW AVE,ABSECON CITY,17,1994,1,RES1,3001 -0101_29.02_11.02,-74.52371919,39.31788228,147 CRESTVIEW AVE,ABSECON CITY,17,1994,1,RES1,3001 -0101_29.02_12,-74.51746175,39.53433033,145 CRESTVIEW AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_29.02_12,-74.5096606,39.3337625,145 CRESTVIEW AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_29.02_13,-74.46455161,39.54703649,143 CRESTVIEW AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_29.02_13,-74.51408148,39.32653233,143 CRESTVIEW AVE,ABSECON CITY,17,1974,1,GOV1,3004 -0101_29.02_15,-74.4701125,39.5404515,141 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_29.02_15,-74.5094267,39.32647833,141 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_29.02_16,-74.473124,39.5388395,139 CRESTVIEW AVE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_29.02_16,-74.51611055,39.32620232,139 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_29.02_17,-74.53344461,39.30628814,137 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_29.02_17,-74.461236,39.350411,137 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_29.02_18,-74.534676,39.30611934,135 CRESTVIEW AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_29.02_18,-74.45919868,39.35020747,135 CRESTVIEW AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_29.02_3,-74.4971114,39.498774,1010 MORTON AVE,ABSECON CITY,18,1988,1,RES1,3001 -0101_29.02_3,-74.51901283,39.32294316,1010 MORTON AVE,ABSECON CITY,18,1988,1,RES1,3001 -0101_29.02_4,-74.48866382,39.49674371,167 CRESTVIEW AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_29.02_4,-74.51873036,39.32217146,167 CRESTVIEW AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_29.02_5,-74.49944948,39.50159105,165 CRESTVIEW AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_29.02_5,-74.515107,39.3213685,165 CRESTVIEW AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_29.02_6,-74.51412,39.503042,163 CRESTVIEW AVE,ABSECON CITY,17,1983,1,GOV1,3004 -0101_29.02_6,-74.51570098,39.32091916,163 CRESTVIEW AVE,ABSECON CITY,17,1983,1,EDU1,3004 -0101_29.02_7,-74.46846337,39.50559413,161 CRESTVIEW AVE,ABSECON CITY,17,1968,1,GOV1,3004 -0101_29.02_7,-74.518417,39.3195375,161 CRESTVIEW AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_29.02_8,-74.4862535,39.526751,159 CRESTVIEW AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_29.02_8,-74.521287,39.32256,159 CRESTVIEW AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_290_1_C1A,-74.38113409,39.41423795,720 S NEW RD UNIT 1A,ABSECON CITY,33,1972,1,RES1,3001 -0101_290_1_C1A,-74.950314,39.53408583,720 S NEW RD UNIT 1A,ABSECON CITY,33,1972,1,RES1,3001 -0101_290_10,-74.50654878,39.34058089,120 MEADOWVIEW AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_290_10,-74.72217322,39.57353067,120 MEADOWVIEW AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_290_11,-74.508948,39.33757517,129 MEADOWVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_290_11,-74.72329404,39.58867608,129 MEADOWVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_290_12,-74.50333167,39.33754696,127 MEADOWVIEW AVE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_290_12,-74.72630594,39.58758116,127 MEADOWVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_290_13,-74.498635,39.3370515,125 MEADOWVIEW AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_290_13,-74.72258193,39.58734414,125 MEADOWVIEW AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_290_14,-74.4995645,39.336649,123 MEADOWVIEW AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_290_14,-74.73032448,39.58786235,123 MEADOWVIEW AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_290_15,-74.50308613,39.3363773,121 MEADOWVIEW AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_290_15,-74.72612231,39.59001532,121 MEADOWVIEW AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_290_16,-74.50583481,39.33460185,119 MEADOWVIEW AVE,ABSECON CITY,17,1961,1,GOV1,3004 -0101_290_16,-74.74309835,39.59051003,119 MEADOWVIEW AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_290_17,-74.499377,39.334363,117 MEADOWVIEW AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_290_17,-74.749272,39.603146,117 MEADOWVIEW AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_290_18,-74.4893413,39.35067452,115 MEADOWVIEW AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_290_18,-74.75094807,39.60189758,115 MEADOWVIEW AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_290_19,-74.488069,39.3491205,113 MEADOWVIEW AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_290_19,-74.77164321,39.60443188,113 MEADOWVIEW AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_290_20,-74.49442813,39.34307066,111 MEADOWVIEW AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_290_20,-74.77639694,39.6026484,111 MEADOWVIEW AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_290_21,-74.509706,39.338366,109 MEADOWVIEW AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_290_21,-74.7222578,39.63866176,109 MEADOWVIEW AVE,ABSECON CITY,17,1969,1,GOV1,3004 -0101_290_22,-74.3701735,39.401867,107 MEADOWVIEW AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_290_22,-74.74047145,39.63946516,107 MEADOWVIEW AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_290_23,-74.37713719,39.39588798,105 MEADOWVIEW AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_290_23,-74.74402775,39.6364933,105 MEADOWVIEW AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_290_24,-74.387226,39.391654,103 MEADOWVIEW AVE,ABSECON CITY,17,1961,1,GOV1,3004 -0101_290_24,-74.7766545,39.6070785,103 MEADOWVIEW AVE,ABSECON CITY,17,1961,1,RES1,3001 -0101_290_25,-74.38791449,39.39089667,101 MEADOWVIEW AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_290_25,-74.77445884,39.61871322,101 MEADOWVIEW AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_290_3,-74.49516683,39.34171326,506 S NEW RD,ABSECON CITY,17,1965,1,RES1,3001 -0101_290_3,-74.82929054,39.52931178,506 S NEW RD,ABSECON CITY,17,1965,1,RES1,3001 -0101_290_4,-74.489878,39.33937,100 MEADOWVIEW AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_290_4,-74.8177805,39.5375985,100 MEADOWVIEW AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_290_5,-74.49377583,39.33842552,102 MEADOWVIEW AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_290_5,-74.84315872,39.53616541,102 MEADOWVIEW AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_290_6.01,-74.4923665,39.33795984,104 MEADOWVIEW AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_290_6.01,-74.80295622,39.546053,104 MEADOWVIEW AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_290_6.02,-74.4959705,39.3371545,106 MEADOWVIEW AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_290_6.02,-74.80797111,39.55450918,106 MEADOWVIEW AVE,ABSECON CITY,17,1985,1,COM4,3004 -0101_290_7,-74.48983437,39.33671884,108 MEADOWVIEW AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_290_7,-74.82533722,39.54389095,108 MEADOWVIEW AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_290_8,-74.4881155,39.336724,110 MEADOWVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_290_8,-74.81921494,39.56471832,110 MEADOWVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_290_9.01,-74.4908939,39.33633134,112 MEADOWVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_290_9.01,-74.88145025,39.5404739,112 MEADOWVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_290_9.02,-74.49409666,39.33592002,114 MEADOWVIEW AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_290_9.02,-74.8657955,39.5653435,114 MEADOWVIEW AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_290_9.03,-74.4877435,39.335761,116 MEADOWVIEW AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_290_9.03,-74.71072302,39.57228789,116 MEADOWVIEW AVE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_290_9.04,-74.49706463,39.33503937,118 MEADOWVIEW AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_290_9.04,-74.720761,39.5776545,118 MEADOWVIEW AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_291_1,-74.3893155,39.39347,55 W BOLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_1,-74.77593183,39.6166515,55 W BOLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_10,-74.38325857,39.39850643,509 S SHORE ROAD,ABSECON CITY,17,1910,1,RES1,3001 -0101_291_10,-74.78885287,39.63206832,509 S SHORE ROAD,ABSECON CITY,17,1910,1,RES1,3001 -0101_291_11.02,-74.37814541,39.39688782,15 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_11.02,-74.79112876,39.63108659,15 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_12,-74.37764705,39.39571617,18 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_12,-74.8496915,39.5892485,18 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_13,-74.38623141,39.39464142,16 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_13,-74.8409225,39.599919,16 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_14,-74.397244,39.394848,14 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_14,-74.867767,39.5940885,14 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_15,-74.41701014,39.36903276,12 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_15,-74.8684015,39.59375,12 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_16,-74.41845207,39.36879667,10 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_16,-74.8692265,39.593304,10 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_17,-74.401127,39.3834945,8 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_17,-74.87718191,39.59720166,8 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_18,-74.40406769,39.3817558,6 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_18,-74.879372,39.594074,6 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_19,-74.4078105,39.37991,4 W LEE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_291_19,-74.8713985,39.6040335,4 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_2,-74.39120023,39.3926953,51 W BOLTON AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_291_2,-74.77121794,39.62910617,51 W BOLTON AVE,ABSECON CITY,17,1926,1,RES1,3001 -0101_291_20,-74.40830294,39.37860581,2 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_20,-74.86923665,39.60193654,2 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_21,-74.4221285,39.3716115,20 SHORT ST,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_21,-74.86404667,39.60106841,20 SHORT ST,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_22,-74.42831832,39.37080002,17 SHORT ST,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_22,-74.868315,39.5985955,17 SHORT ST,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_23,-74.42491204,39.3683928,13 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_23,-74.86658317,39.5976215,13 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_24,-74.4432757,39.37132943,11 W COLORADO AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_291_24,-74.8724747,39.60274954,11 W COLORADO AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_291_25,-74.437757,39.3702915,9 W COLORADO AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_291_25,-74.88207431,39.60208179,9 W COLORADO AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_291_26,-74.40797828,39.39245986,7 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_26,-74.881569,39.5999305,7 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_27,-74.40483939,39.38926863,5 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_27,-74.87403498,39.59763587,5 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_28,-74.400254,39.386564,3 W COLORADO AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_291_28,-74.79638067,39.61900368,3 W COLORADO AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_291_29,-74.39969625,39.3941794,1 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_29,-74.806873,39.62179,1 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_291_3,-74.38913934,39.39085197,47 W BOLTON AVE,ABSECON CITY,17,1925,1,GOV1,3004 -0101_291_3,-74.76783561,39.63301223,47 W BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_31.01,-74.3631635,39.4091555,28 W SUMMIT AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_291_31.01,-74.81171359,39.61691864,28 W SUMMIT AVE,ABSECON CITY,17,1948,1,RES1,3001 -0101_291_31.02,-74.36533193,39.40814583,30 SUMMIT AVE,ABSECON CITY,18,2013,1,RES1,3001 -0101_291_31.02,-74.799322,39.6267955,30 SUMMIT AVE,ABSECON CITY,18,2013,1,RES1,3001 -0101_291_32,-74.370765,39.4102445,22 W SUMMIT AVE,ABSECON CITY,17,1954,2,RES1,3001 -0101_291_32,-74.80501638,39.62516014,22 W SUMMIT AVE,ABSECON CITY,17,1954,2,RES1,3001 -0101_291_33,-74.36794884,39.40856549,20 W SUMMIT AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_33,-74.8046935,39.624592,20 W SUMMIT AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_34,-74.367077,39.4058515,18 W SUMMIT AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_291_34,-74.80747054,39.62999416,18 W SUMMIT AVE,ABSECON CITY,17,1910,1,RES1,3001 -0101_291_35,-74.36967724,39.40499384,553 S SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_291_35,-74.80708832,39.6296004,553 S SHORE ROAD,ABSECON CITY,17,1930,1,RES2,3005 -0101_291_37,-74.37094448,39.40390362,39 SUMMIT AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_291_37,-74.81142702,39.62733068,39 SUMMIT AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_291_38,-74.37523,39.4035445,37 SUMMIT AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_291_38,-74.81511016,39.62717599,37 SUMMIT AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_291_39,-74.36643314,39.4165887,35 SUMMIT AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_291_39,-74.797023,39.6374845,35 SUMMIT AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_291_4,-74.391469,39.390756,39 W BOLTON AVE,ABSECON CITY,17,1925,1,GOV1,3004 -0101_291_4,-74.7805985,39.624839,39 W BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_40,-74.36641322,39.41614976,33 SUMMIT AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_40,-74.804414,39.6363565,33 SUMMIT AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_291_41,-74.355657,39.414524,29 SUMMIT AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_291_41,-74.8024615,39.632271,29 SUMMIT AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_291_42,-74.36629756,39.41201715,25 SUMMIT AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_42,-74.8051905,39.631319,25 SUMMIT AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_43,-74.36261485,39.41199446,19 SUMMIT AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_43,-74.805398,39.631096,19 SUMMIT AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_44,-74.376401,39.4188935,15 SUMMIT AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_44,-74.80980837,39.63930764,15 SUMMIT AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_45,-74.37528589,39.41214645,605 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_45,-74.8084655,39.639165,605 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_46.03,-74.3740915,39.411878,611 S SHORE ROAD,ABSECON CITY,17,1900,1,RES1,3001 -0101_291_46.03,-74.81592101,39.63436416,611 S SHORE ROAD,ABSECON CITY,17,1900,1,GOV1,3004 -0101_291_46.04,-74.380719,39.4188255,10 W NEVADA AVE,ABSECON CITY,16,1970,1,RES1,3001 -0101_291_46.04,-74.8133795,39.6325885,10 W NEVADA AVE,ABSECON CITY,16,1970,1,RES1,3001 -0101_291_47,-74.38118215,39.41565925,44 W NEVADA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_47,-74.80650174,39.63118601,44 W NEVADA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_291_48,-74.379957,39.4150005,40 W NEVADA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_48,-74.8266145,39.6269245,40 W NEVADA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_49,-74.3813955,39.414801,36 W NEVADA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_49,-74.82504496,39.62576803,36 W NEVADA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_291_5,-74.3889125,39.390234,35 W BOLTON AVE,ABSECON CITY,17,1912,1,COM1,3004 -0101_291_5,-74.779175,39.6247195,35 W BOLTON AVE,ABSECON CITY,17,1912,1,RES1,3004 -0101_291_50,-74.37807506,39.41327551,32 W NEVADA AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_291_50,-74.83046065,39.62321895,32 W NEVADA AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_291_51,-74.36721646,39.41972392,24 W NEVADA AVE,ABSECON CITY,17,1923,1,GOV1,3004 -0101_291_51,-74.826958,39.6371365,24 W NEVADA AVE,ABSECON CITY,17,1923,1,RES1,3001 -0101_291_52,-74.44989113,39.37419731,22 W NEVADA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_52,-74.8486925,39.611755,22 W NEVADA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_53,-74.4495935,39.37350767,16 W NEVADA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_53,-74.85695445,39.6207262,16 W NEVADA AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_6,-74.39557665,39.38985566,31 W BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_6,-74.79200745,39.62728785,31 W BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_291_7,-74.3970325,39.386399,29 W BOLTON AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_291_7,-74.77921625,39.63500281,29 W BOLTON AVE,ABSECON CITY,17,1954,1,GOV1,3004 -0101_291_8,-74.37915457,39.40108017,15 W BOLTON AVE,ABSECON CITY,17,1890,1,RES1,3001 -0101_291_8,-74.791354,39.635424,15 W BOLTON AVE,ABSECON CITY,17,1890,1,RES1,3001 -0101_291_9,-74.37841833,39.40101486,503 S SHORE ROAD,ABSECON CITY,17,1915,1,RES1,3001 -0101_291_9,-74.791916,39.633605,503 S SHORE ROAD,ABSECON CITY,17,1915,1,RES1,3001 -0101_292_1,-74.4481843,39.37312596,15 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_1,-74.8439936,39.62370511,15 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_10,-74.5204325,39.384068,6 W COLORADO AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_292_10,-74.93070856,39.49015053,6 W COLORADO AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_292_11,-74.51641051,39.39267166,5 W LEE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_292_11,-74.8831385,39.506595,5 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_12,-74.51672368,39.38998972,539 S SHORE ROAD,ABSECON CITY,17,1900,4,RES1,3001 -0101_292_12,-74.905432,39.5057655,539 S SHORE ROAD,ABSECON CITY,17,1900,4,GOV1,3004 -0101_292_13,-74.51992271,39.38906385,3 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_13,-74.92544012,39.51109822,3 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_14,-74.52753609,39.39199684,1 W LEE AVE,ABSECON CITY,17,1956,1,RES2,3005 -0101_292_14,-74.926106,39.509231,1 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_2,-74.44680768,39.37280303,14 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_292_2,-74.896775,39.473584,14 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_292_3,-74.448783,39.372118,13 W LEE AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_292_3,-74.9127395,39.481097,13 W LEE AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_292_4,-74.45143963,39.37169881,12 W COLORADO AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_292_4,-74.925906,39.4803375,12 W COLORADO AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_292_5,-74.4560485,39.371925,11 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_5,-74.884404,39.4935175,11 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_6,-74.49301275,39.37730144,10 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_292_6,-74.88734995,39.49820315,10 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_292_7,-74.5090168,39.38473504,9 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_7,-74.920333,39.491479,9 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_8,-74.5005904,39.38320877,8 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_292_8,-74.920396,39.4900485,8 W COLORADO AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_292_9,-74.51070178,39.3850122,7 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_292_9,-74.9318085,39.48255,7 W LEE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_293_12,-74.5146135,39.3989365,52 OREGON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_293_12,-74.94382931,39.51814316,52 OREGON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_293_13,-74.5125325,39.3984805,48 OREGON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_293_13,-74.94694936,39.51597124,48 OREGON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_293_15,-74.516275,39.3940815,40 OREGON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_293_15,-74.95833769,39.51186856,40 OREGON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_293_16,-74.51610651,39.39403083,32 OREGON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_293_16,-74.9341335,39.5272425,32 OREGON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_293_17,-74.52205843,39.39904442,26 OREGON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_293_17,-74.932792,39.5262255,26 OREGON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_293_18,-74.53112365,39.39860697,22 OREGON AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_293_18,-74.93768482,39.52425871,22 OREGON AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_293_19,-74.5251775,39.394083,16 OREGON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_293_19,-74.93688073,39.52301027,16 OREGON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_293_2,-74.529458,39.3910595,45 W NEVADA AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_293_2,-74.91821885,39.51751526,45 W NEVADA AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_293_20,-74.36577234,39.42244499,719 S SHORE ROAD,ABSECON CITY,17,1900,1,RES1,3001 -0101_293_20,-74.88418267,39.56065302,719 S SHORE ROAD,ABSECON CITY,17,1900,1,RES1,3001 -0101_293_21,-74.3702825,39.420127,723 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_293_21,-74.94234638,39.54569653,723 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_293_22,-74.50253309,39.41054878,51 OREGON AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_293_22,-74.94688907,39.52617771,51 OREGON AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_293_23,-74.50838667,39.40803784,39 OREGON AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_293_23,-74.94027239,39.5250352,39 OREGON AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_293_24,-74.50118022,39.41917163,37 OREGON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_293_24,-74.94396704,39.52505821,37 OREGON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_293_25,-74.50483475,39.41625598,35 OREGON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_293_25,-74.94320312,39.52276135,35 OREGON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_293_26.01,-74.50736836,39.41149085,33 OREGON AVE,ABSECON CITY,17,1950,1,RES1,3004 -0101_293_26.01,-74.94321,39.522085,33 OREGON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_293_26.02,-74.50254235,39.41146769,31 OREGON AVE,ABSECON CITY,17,1930,1,RES3A,3001 -0101_293_26.02,-74.94412391,39.53066807,31 OREGON AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_293_27,-74.51912281,39.41039596,27 OREGON AVE,ABSECON CITY,17,1990,1,RES1,3001 -0101_293_27,-74.95128835,39.52702967,27 OREGON AVE,ABSECON CITY,17,1990,1,GOV1,3004 -0101_293_28,-74.51109,39.4095355,23 OREGON AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_293_28,-74.96140281,39.52911195,23 OREGON AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_293_29,-74.51819964,39.40931352,19 OREGON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_293_29,-74.9508305,39.5328895,19 OREGON AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_293_3,-74.526663,39.388733,39 W NEVADA AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_293_3,-74.92523066,39.52492675,39 W NEVADA AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_293_30,-74.51100407,39.40882633,13 OREGON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_293_30,-74.95016192,39.53090943,13 OREGON AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_293_31,-74.44888669,39.37271762,727 S SHORE RD,ABSECON CITY,17,1915,1,RES1,3001 -0101_293_31,-74.93563217,39.54695349,727 S SHORE RD,ABSECON CITY,17,1915,1,RES1,3001 -0101_293_32,-74.4527255,39.372536,729 S SHORE ROAD,ABSECON CITY,17,1966,1,RES1,3001 -0101_293_32,-74.93646696,39.54646685,729 S SHORE ROAD,ABSECON CITY,17,1966,1,GOV1,3004 -0101_293_33,-74.494188,39.380566,44 W CALIFORNIA AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_293_33,-74.98065,39.5182845,44 W CALIFORNIA AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_293_33.01,-74.52261645,39.40265135,40 W CALIFORNIA AVE,ABSECON CITY,17,1997,1,RES1,3001 -0101_293_33.01,-74.88481743,39.54116065,40 W CALIFORNIA AVE,ABSECON CITY,17,1997,1,COM1,3004 -0101_293_34,-74.51192394,39.41308168,28 W CALIFORNIA AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_293_34,-74.89016043,39.54083102,28 W CALIFORNIA AVE,ABSECON CITY,17,1938,1,RES1,3001 -0101_293_35,-74.5146315,39.4108745,22 W CALIFORNIA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_293_35,-74.92512982,39.54354468,22 W CALIFORNIA AVE,ABSECON CITY,17,1928,1,RES1,3004 -0101_293_4,-74.531128,39.388455,31 W NEVADA AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_293_4,-74.9372625,39.5115695,31 W NEVADA AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_293_5,-74.525742,39.3877555,27 W NEVADA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_293_5,-74.9283385,39.509318,27 W NEVADA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_293_6,-74.52323468,39.38733194,25 W NEVADA AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_293_6,-74.9406805,39.512159,25 W NEVADA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_293_7,-74.5268065,39.3859475,19 W NEVADA AVE,ABSECON CITY,17,1923,1,RES1,3001 -0101_293_7,-74.93288442,39.52098789,19 W NEVADA AVE,ABSECON CITY,17,1923,1,GOV1,3004 -0101_293_8,-74.51340152,39.40008866,17 W NEVADA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_293_8,-74.93001643,39.51853614,17 W NEVADA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_293_9,-74.37970559,39.41535367,701 S SHORE ROAD,ABSECON CITY,17,1968,1,RES1,3001 -0101_293_9,-74.94952625,39.52124307,701 S SHORE ROAD,ABSECON CITY,17,1968,1,RES1,3001 -0101_294_10,-74.50048196,39.43312921,23 E BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_10,-74.8843225,39.5982525,23 E BOLTON AVE,ABSECON CITY,17,1925,1,COM4,3004 -0101_294_11,-74.47075747,39.4594136,26 E LEE AVE,ABSECON CITY,17,1920,2,COM1,3004 -0101_294_11,-74.7756535,39.6664995,26 E LEE AVE,ABSECON CITY,17,1920,2,RES1,3001 -0101_294_12,-74.47628669,39.45701708,27 E BOLTON AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_294_12,-74.78142304,39.67509826,27 E BOLTON AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_294_13,-74.488764,39.4369965,30 E LEE AVE,ABSECON CITY,43,1935,2,RES1,3001 -0101_294_13,-74.7867125,39.675991,30 E LEE AVE,ABSECON CITY,43,1935,2,RES1,3001 -0101_294_14,-74.502536,39.4300465,34 E LEE AVE,ABSECON CITY,17,1920,1,COM1,3004 -0101_294_14,-74.886349,39.59805,34 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_294_15.01,-74.50338088,39.42905891,35 E BOLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_294_15.01,-74.88282983,39.59771051,35 E BOLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_294_15.02,-74.52623438,39.41943252,41 E BOLTON AVE,ABSECON CITY,17,1950,1,GOV1,3004 -0101_294_15.02,-74.692346,39.6516695,41 E BOLTON AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_294_16,-74.43905692,39.49034141,36 E LEE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_16,-74.71561008,39.64005157,36 E LEE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_17,-74.4795485,39.442105,501 FRANKLIN BLVD,ABSECON CITY,17,1950,1,RES1,3001 -0101_294_17,-74.7393985,39.6507795,501 FRANKLIN BLVD,ABSECON CITY,17,1950,1,RES1,3001 -0101_294_18.01,-74.481429,39.441147,515 FRANKLIN BLVD,ABSECON CITY,17,1957,1,RES1,3001 -0101_294_18.01,-74.76137185,39.6405073,515 FRANKLIN BLVD,ABSECON CITY,17,1957,1,GOV1,3004 -0101_294_18.03,-74.4745938,39.44985014,523 FRANKLIN BLVD,ABSECON CITY,17,1930,1,RES1,3001 -0101_294_18.03,-74.75116312,39.65229816,523 FRANKLIN BLVD,ABSECON CITY,17,1930,1,RES1,3001 -0101_294_2,-74.47433259,39.44657185,506 S SHORE RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_294_2,-74.757314,39.6516735,506 S SHORE RD,ABSECON CITY,17,1920,1,RES1,3001 -0101_294_3,-74.47322855,39.44627331,512 S SHORE RD,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_3,-74.77381002,39.64678033,512 S SHORE RD,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_4,-74.4991935,39.424916,516 S SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_4,-74.88522644,39.59617188,516 S SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_5,-74.490695,39.434049,522 S SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_5,-74.88758858,39.5949945,522 S SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_6,-74.47166616,39.44619277,15 E BOLTON AVE,ABSECON CITY,17,1900,1,GOV1,3004 -0101_294_6,-74.781414,39.643177,15 E BOLTON AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_294_7,-74.48110014,39.44473721,18 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_294_7,-74.7772585,39.6430415,18 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_294_8,-74.4551745,39.4680075,19 E BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_8,-74.7874698,39.64511621,19 E BOLTON AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_9,-74.49175961,39.42793031,22 E LEE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_294_9,-74.88742597,39.59892705,22 E LEE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_295_1,-74.489063,39.4366485,1 E LEE AVE,ABSECON CITY,16,1955,1,RES1,3001 -0101_295_1,-74.80238707,39.64219453,1 E LEE AVE,ABSECON CITY,16,1955,1,RES1,3001 -0101_295_10,-74.4976645,39.445181,41 E LEE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_295_10,-74.81849272,39.64386895,41 E LEE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_295_11,-74.5068865,39.4530805,43 E LEE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_295_11,-74.81977322,39.65251128,43 E LEE AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_295_12,-74.4991865,39.4479985,543 S FRANKLIN BLVD,ABSECON CITY,17,1949,1,RES1,3001 -0101_295_12,-74.418462,39.36776033,543 S FRANKLIN BLVD,ABSECON CITY,17,1949,1,RES1,3001 -0101_295_2,-74.49988,39.4429005,530 S SHORE ROAD,ABSECON CITY,17,1920,1,GOV1,3004 -0101_295_2,-74.80880232,39.64790033,530 S SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_295_3,-74.49966878,39.44084531,534 S SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_295_3,-74.81020383,39.64692333,534 S SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_295_4,-74.4990155,39.439716,17 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_295_4,-74.81261131,39.64415544,17 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_295_5,-74.50447263,39.43818388,21 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_295_5,-74.80833198,39.64205675,21 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_295_6,-74.50720027,39.43771868,25 E LEE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_295_6,-74.80807605,39.64121066,25 E LEE AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_295_7,-74.503967,39.4362785,29 E LEE AVE,ABSECON CITY,17,1940,1,GOV1,3004 -0101_295_7,-74.7965735,39.655753,29 E LEE AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_295_8,-74.49621527,39.45260447,33 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_295_8,-74.8116455,39.651914,33 E LEE AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_295_9,-74.49627373,39.4486131,37 E LEE AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_295_9,-74.81225824,39.65162616,37 E LEE AVE,ABSECON CITY,17,1935,1,GOV1,3004 -0101_296_1,-74.50846334,39.44534402,604 S SHORE ROAD,ABSECON CITY,17,1850,1,RES1,3001 -0101_296_1,-74.41777834,39.36662048,604 S SHORE ROAD,ABSECON CITY,17,1850,1,RES1,3001 -0101_296_10,-74.51815601,39.45165725,621 EIGHTH ST,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_10,-74.43079405,39.36254608,621 EIGHTH ST,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_11,-74.52899318,39.44568256,623 EIGHTH ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_296_11,-74.42974754,39.36109013,623 EIGHTH ST,ABSECON CITY,17,1960,1,GOV1,3004 -0101_296_12,-74.49459298,39.46413155,631 EIGHTH ST,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_12,-74.431274,39.361137,631 EIGHTH ST,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_13,-74.49986917,39.468756,635 EIGHTH ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_296_13,-74.4405785,39.3677205,635 EIGHTH ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_296_14,-74.50140984,39.46511903,639 EIGHTH ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_296_14,-74.43948451,39.36629017,639 EIGHTH ST,ABSECON CITY,17,1960,1,RES1,3001 -0101_296_15,-74.52293653,39.45573707,643 EIGHTH ST,ABSECON CITY,17,1935,1,RES1,3001 -0101_296_15,-74.52882815,39.31027884,643 EIGHTH ST,ABSECON CITY,17,1935,1,RES1,3004 -0101_296_16,-74.522774,39.4546635,651 EIGHTH ST,ABSECON CITY,17,1935,1,RES1,3001 -0101_296_16,-74.48874594,39.33427007,651 EIGHTH ST,ABSECON CITY,17,1935,1,COM1,3004 -0101_296_17,-74.51954568,39.38372232,8 E NEVADA AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_296_17,-74.88547935,39.59352467,8 E NEVADA AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_296_18,-74.51576534,39.46796871,31 E COLORADO AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_296_18,-74.49362011,39.33392066,31 E COLORADO AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_296_19,-74.51516308,39.46223534,616 EIGHTH ST,ABSECON CITY,17,1964,1,RES1,3001 -0101_296_19,-74.48956428,39.33250766,616 EIGHTH ST,ABSECON CITY,17,1964,1,RES1,3001 -0101_296_2,-74.51091824,39.44220867,610 S SHORE ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_296_2,-74.4155935,39.365969,610 S SHORE ROAD,ABSECON CITY,17,1956,1,COM4,3004 -0101_296_20,-74.52830912,39.46705992,618 EIGHTH ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_296_20,-74.496387,39.331901,618 EIGHTH ST,ABSECON CITY,17,1920,1,RES1,3002 -0101_296_22,-74.45094497,39.47824284,626 EIGHTH ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_296_22,-74.49294432,39.33182803,626 EIGHTH ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_296_23,-74.44378062,39.48560036,634 EIGHTH ST,ABSECON CITY,17,1983,1,RES1,3001 -0101_296_23,-74.4958475,39.331226,634 EIGHTH ST,ABSECON CITY,17,1983,1,RES1,3001 -0101_296_25,-74.4485005,39.480322,638 EIGHTH ST,ABSECON CITY,17,1935,1,RES1,3001 -0101_296_25,-74.49515602,39.33128477,638 EIGHTH ST,ABSECON CITY,17,1935,1,RES1,3001 -0101_296_26,-74.4779725,39.4784955,642 EIGHTH ST,ABSECON CITY,17,1910,1,RES1,3001 -0101_296_26,-74.49483,39.3299575,642 EIGHTH ST,ABSECON CITY,17,1910,1,RES1,3001 -0101_296_27,-74.47176354,39.4846543,646 EIGHTH ST,ABSECON CITY,17,1910,1,RES1,3001 -0101_296_27,-74.49662,39.32982,646 EIGHTH ST,ABSECON CITY,17,1910,1,RES1,3001 -0101_296_28,-74.45203138,39.49555755,EIGHTH ST,ABSECON CITY,,0,1,RES1,3001 -0101_296_28,-74.498449,39.3338565,EIGHTH ST,ABSECON CITY,,0,1,RES1,3001 -0101_296_29,-74.52691279,39.38413042,654 EIGHTH ST,ABSECON CITY,17,1910,1,RES1,3001 -0101_296_29,-74.88628013,39.60016257,654 EIGHTH ST,ABSECON CITY,17,1910,1,RES1,3001 -0101_296_3,-74.49012825,39.49848006,614 S SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_3,-74.51256453,39.32727167,614 S SHORE ROAD,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_30,-74.44435167,39.48998903,601 FRANKLIN BLVD,ABSECON CITY,17,1955,1,RES1,3001 -0101_296_30,-74.4995495,39.333781,601 FRANKLIN BLVD,ABSECON CITY,17,1955,1,RES1,3001 -0101_296_31,-74.44671976,39.48904104,615 FRANKLIN BLVD,ABSECON CITY,17,1950,1,RES1,3001 -0101_296_31,-74.50060167,39.33305548,615 FRANKLIN BLVD,ABSECON CITY,17,1950,1,RES1,3001 -0101_296_32,-74.463394,39.4944605,629 FRANKLIN BLVD,ABSECON CITY,17,1920,1,RES1,3001 -0101_296_32,-74.50072211,39.33270066,629 FRANKLIN BLVD,ABSECON CITY,17,1920,1,RES1,3001 -0101_296_33,-74.4628965,39.4944035,633 FRANKLIN BLVD,ABSECON CITY,17,1964,1,RES1,3001 -0101_296_33,-74.5008085,39.3310165,633 FRANKLIN BLVD,ABSECON CITY,17,1964,1,RES1,3001 -0101_296_34,-74.46205981,39.49142354,635 FRANKLIN BLVD,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_34,-74.49910193,39.33077417,635 FRANKLIN BLVD,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_35,-74.4544725,39.491151,639 FRANKLIN BLVD,ABSECON CITY,17,1965,1,RES1,3001 -0101_296_35,-74.503273,39.330701,639 FRANKLIN BLVD,ABSECON CITY,17,1965,1,RES1,3001 -0101_296_36,-74.526001,39.3826915,643 FRANKLIN BLVD,ABSECON CITY,17,1964,1,RES1,3001 -0101_296_36,-74.88698034,39.59761296,643 FRANKLIN BLVD,ABSECON CITY,17,1964,1,RES1,3001 -0101_296_4,-74.510657,39.4414425,620 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_296_4,-74.44228633,39.35814008,620 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_296_5,-74.51293557,39.43817458,624 S SHORE ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_296_5,-74.42256503,39.36729318,624 S SHORE ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_296_6.01,-74.51486654,39.43752028,628 S SHORE ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_296_6.01,-74.43228582,39.36716352,628 S SHORE ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_296_6.02,-74.523007,39.4435355,632 S SHORE ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_296_6.02,-74.4221555,39.367044,632 S SHORE ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_296_7,-74.52190228,39.44321264,642 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_296_7,-74.428761,39.3650925,642 S SHORE ROAD,ABSECON CITY,17,1950,1,RES1,3001 -0101_296_8,-74.51979514,39.38382765,646 S SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_296_8,-74.88339183,39.59442201,646 S SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_296_9,-74.52180641,39.4420726,25 E COLORADO AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_296_9,-74.42752617,39.3650849,25 E COLORADO AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_297_1.01,-74.45501692,39.48900098,420 FRANKLIN BLVD,ABSECON CITY,17,1980,1,COM7,3004 -0101_297_1.01,-74.49897702,39.33061532,420 FRANKLIN BLVD,ABSECON CITY,17,1980,1,RES1,3001 -0101_297_1.02,-74.45364537,39.50337831,430 FRANKLIN BLVD,ABSECON CITY,17,1987,1,RES1,3001 -0101_297_1.02,-74.504412,39.3304405,430 FRANKLIN BLVD,ABSECON CITY,17,1987,1,RES1,3001 -0101_297_10,-74.47363615,39.4887758,544 FRANKLIN BLVD,ABSECON CITY,17,1952,1,RES1,3001 -0101_297_10,-74.516291,39.3204465,544 FRANKLIN BLVD,ABSECON CITY,17,1952,1,RES1,3001 -0101_297_11,-74.46540235,39.50027559,100 E COLORADO AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_297_11,-74.51632117,39.31888747,100 E COLORADO AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_297_12,-74.48756341,39.47816977,600 FRANKLIN BLVD,ABSECON CITY,17,1956,1,RES1,3001 -0101_297_12,-74.51957085,39.31793301,600 FRANKLIN BLVD,ABSECON CITY,17,1956,1,RES1,3001 -0101_297_14,-74.49418751,39.47656402,610 FRANKLIN BLVD,ABSECON CITY,17,1928,1,GOV1,3004 -0101_297_14,-74.52119867,39.32278879,610 FRANKLIN BLVD,ABSECON CITY,17,1928,1,RES1,3001 -0101_297_15,-74.49331333,39.47143272,101 E COLORADO AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_297_15,-74.52074746,39.32115382,101 E COLORADO AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_297_16,-74.5045685,39.472304,618 FRANKLIN BLVD,ABSECON CITY,17,1920,1,RES1,3001 -0101_297_16,-74.52261836,39.32087808,618 FRANKLIN BLVD,ABSECON CITY,17,1920,1,RES1,3001 -0101_297_17,-74.52648218,39.47330521,622 FRANKLIN BLVD,ABSECON CITY,17,1925,1,RES1,3001 -0101_297_17,-74.524848,39.319373,622 FRANKLIN BLVD,ABSECON CITY,17,1925,1,RES1,3001 -0101_297_19,-74.5259885,39.4703365,628 FRANKLIN BLVD,ABSECON CITY,17,1930,1,RES1,3001 -0101_297_19,-74.50965278,39.33197583,628 FRANKLIN BLVD,ABSECON CITY,17,1930,1,RES1,3001 -0101_297_2,-74.4518104,39.49797223,512 FRANKLIN BLVD,ABSECON CITY,17,1920,1,RES1,3001 -0101_297_2,-74.50439267,39.32919696,512 FRANKLIN BLVD,ABSECON CITY,17,1920,1,RES1,3001 -0101_297_20,-74.51069173,39.48094104,636 FRANKLIN BLVD,ABSECON CITY,17,1930,1,RES1,3001 -0101_297_20,-74.5158605,39.3303225,636 FRANKLIN BLVD,ABSECON CITY,17,1930,1,RES1,3001 -0101_297_21.01,-74.5017155,39.4889205,638 FRANKLIN BLVD,ABSECON CITY,17,1979,1,RES1,3001 -0101_297_21.01,-74.51018602,39.32962796,638 FRANKLIN BLVD,ABSECON CITY,17,1979,1,RES1,3001 -0101_297_21.02,-74.489364,39.4985135,650 FRANKLIN BLVD,ABSECON CITY,17,1925,1,RES1,3001 -0101_297_21.02,-74.5106676,39.32878585,650 FRANKLIN BLVD,ABSECON CITY,17,1925,1,RES1,3001 -0101_297_3,-74.4556915,39.5033635,514 FRANKLIN BLVD,ABSECON CITY,17,1965,1,RES1,3001 -0101_297_3,-74.50349044,39.32913283,514 FRANKLIN BLVD,ABSECON CITY,17,1965,1,GOV1,3004 -0101_297_4,-74.46307917,39.50188302,526 FRANKLIN BLVD,ABSECON CITY,17,1935,3,RES1,3001 -0101_297_4,-74.50705076,39.32886796,526 FRANKLIN BLVD,ABSECON CITY,17,1935,3,RES1,3001 -0101_297_5,-74.45563803,39.50011734,534 FRANKLIN BLVD,ABSECON CITY,17,1950,2,RES1,3001 -0101_297_5,-74.50296517,39.32889,534 FRANKLIN BLVD,ABSECON CITY,17,1950,2,RES1,3001 -0101_297_6,-74.471831,39.4936035,536 FRANKLIN BLVD,ABSECON CITY,17,1964,1,RES1,3001 -0101_297_6,-74.500964,39.3282155,536 FRANKLIN BLVD,ABSECON CITY,17,1964,1,RES1,3001 -0101_297_7,-74.46814307,39.49334954,538 FRANKLIN BLVD,ABSECON CITY,17,1956,1,RES1,3001 -0101_297_7,-74.5003205,39.32724,538 FRANKLIN BLVD,ABSECON CITY,17,1956,1,RES1,3001 -0101_297_8,-74.47389282,39.49320102,540 FRANKLIN BLVD,ABSECON CITY,17,1956,1,RES1,3001 -0101_297_8,-74.51851862,39.32191613,540 FRANKLIN BLVD,ABSECON CITY,17,1956,1,RES1,3001 -0101_297_9,-74.47217937,39.48959982,542 FRANKLIN BLVD,ABSECON CITY,17,1940,1,GOV1,3004 -0101_297_9,-74.51995487,39.32126868,542 FRANKLIN BLVD,ABSECON CITY,17,1940,1,RES1,3001 -0101_3_1.02,-74.594572,39.4075715,164 CRESTVIEW AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_3_1.02,-74.5051705,39.4366995,164 CRESTVIEW AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_3_1.03,-74.59095977,39.40757347,160 CRESTVIEW AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_3_1.03,-74.50649367,39.43666768,160 CRESTVIEW AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_3_10,-74.59731429,39.41918367,140 CRESTVIEW AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_3_10,-74.51459534,39.44635147,140 CRESTVIEW AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_3_12,-74.60861353,39.41868301,140A CRESTVIEW AVE,ABSECON CITY,17,1935,1,GOV1,3004 -0101_3_12,-74.52718656,39.45293807,140A CRESTVIEW AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_3_13,-74.5767915,39.426191,138E CRESTVIEW AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_3_13,-74.531021,39.450345,138E CRESTVIEW AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_3_14,-74.58990663,39.42448767,138D CRESTVIEW AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_3_14,-74.4941835,39.458707,138D CRESTVIEW AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_3_15,-74.5831024,39.4321292,138C CRESTVIEW AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_3_15,-74.49888335,39.45562331,138C CRESTVIEW AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_3_16,-74.57530928,39.43020619,138B CRESTVIEW AVE,ABSECON CITY,16,1940,1,RES1,3001 -0101_3_16,-74.49952199,39.45346736,138B CRESTVIEW AVE,ABSECON CITY,16,1940,1,GOV1,3004 -0101_3_17.01,-74.58963052,39.43418213,138A CRESTVIEW AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_3_17.01,-74.48908122,39.4660097,138A CRESTVIEW AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_3_17.02,-74.593051,39.432228,136 CRESTVIEW AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_3_17.02,-74.49258797,39.46201938,136 CRESTVIEW AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_3_18,-74.58864053,39.42881083,134E CRESTVIEW AVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_3_18,-74.50113005,39.46836916,134E CRESTVIEW AVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_3_19,-74.5870911,39.42820774,134D CRESTVIEW AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_3_19,-74.51572393,39.46083416,134D CRESTVIEW AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_3_2,-74.591218,39.403081,158 CRESTVIEW AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_3_2,-74.4938105,39.4489865,158 CRESTVIEW AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_3_20.01,-74.61186031,39.42136048,134C CRESTVIEW AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_3_20.01,-74.5124115,39.45390767,134C CRESTVIEW AVE,ABSECON CITY,17,1988,1,RES3A,3001 -0101_3_20.02,-74.61368625,39.42046182,134B CRESTVIEW AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_3_20.02,-74.52424366,39.45848147,134B CRESTVIEW AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_3_20.03,-74.60186551,39.43477094,134A CRESTVIEW AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_3_20.03,-74.52797322,39.45830031,134A CRESTVIEW AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_3_21,-74.6005605,39.433668,134 CRESTVIEW AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_3_21,-74.5196825,39.46328699,134 CRESTVIEW AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_3_22,-74.59828838,39.4314753,132 CRESTVIEW AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_3_22,-74.51227771,39.46290704,132 CRESTVIEW AVE,ABSECON CITY,17,1947,1,RES1,3001 -0101_3_24,-74.5133425,39.437,130 CRESTVIEW AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_3_24,-74.52169644,39.32300166,130 CRESTVIEW AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_3_26.01,-74.515387,39.45233133,907 ELM AVE,ABSECON CITY,17,1985,1,GOV1,3004 -0101_3_26.01,-74.5214795,39.320432,907 ELM AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_3_3,-74.58982,39.414964,156 CRESTVIEW AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_3_3,-74.49387963,39.44860718,156 CRESTVIEW AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_3_4,-74.58732616,39.4124038,154 CRESTVIEW AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_3_4,-74.494134,39.4480085,154 CRESTVIEW AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_3_5,-74.60551111,39.41043983,152 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_3_5,-74.50886483,39.44704501,152 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_3_6,-74.60125176,39.41036171,150 CRESTVIEW AVE,ABSECON CITY,17,1977,1,RES3A,3001 -0101_3_6,-74.508377,39.4467055,150 CRESTVIEW AVE,ABSECON CITY,17,1977,1,RES3A,3001 -0101_3_7,-74.6039965,39.40953,148 CRESTVIEW AVE,ABSECON CITY,17,1977,1,RES3A,3001 -0101_3_7,-74.5142765,39.4415985,148 CRESTVIEW AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_3_8,-74.604622,39.408753,146 CRESTVIEW AVE,ABSECON CITY,17,1996,1,COM3,3004 -0101_3_8,-74.52945306,39.44445515,146 CRESTVIEW AVE,ABSECON CITY,17,1996,1,RES1,3001 -0101_3_9,-74.60556319,39.40691457,144 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_3_9,-74.52431688,39.44247918,144 CRESTVIEW AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_33_1,-74.5972235,39.4112005,909 HIGHLAND BLVD,ABSECON CITY,17,1988,1,RES1,3001 -0101_33_1,-74.4573514,39.47337612,909 HIGHLAND BLVD,ABSECON CITY,17,1988,1,RES1,3001 -0101_34_1,-74.582158,39.405219,6 RITZ DR,ABSECON CITY,17,1979,1,RES1,3001 -0101_34_1,-74.49564016,39.46603067,6 RITZ DR,ABSECON CITY,17,1979,1,RES1,3001 -0101_34_2,-74.59052643,39.40861126,4 ARC COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_34_2,-74.50398596,39.4639194,4 ARC COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_34_3,-74.594785,39.406052,3 ARC COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_34_3,-74.508378,39.4628885,3 ARC COURT,ABSECON CITY,17,1975,1,GOV1,3004 -0101_34_4,-74.575483,39.41571224,1 ARC COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_34_4,-74.51954417,39.46162292,1 ARC COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_34_5,-74.60331,39.4104794,900 MORTON AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_34_5,-74.52302063,39.45722887,900 MORTON AVE,ABSECON CITY,17,1975,1,GOV1,3004 -0101_34_6,-74.59820063,39.40891826,902 MORTON AVE,ABSECON CITY,17,1975,1,RES1,3004 -0101_34_6,-74.51154092,39.46915537,902 MORTON AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_34_7,-74.60057662,39.41878981,904 MORTON AVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_34_7,-74.51371434,39.46885601,904 MORTON AVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_34_8,-74.58759485,39.41249918,2 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_34_8,-74.510289,39.4607605,2 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_1,-74.61093983,39.37524149,19 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_1,-74.4842885,39.456424,19 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_10,-74.60920652,39.39070814,7 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_10,-74.50468946,39.44601506,7 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_11,-74.6132565,39.399334,5 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_11,-74.51346261,39.44104929,5 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_12,-74.53634924,39.41247386,7 STRAND COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_12,-74.51117181,39.43788304,7 STRAND COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_13,-74.55363967,39.4078091,5 STRAND COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_13,-74.5108225,39.4367135,5 STRAND COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_14,-74.57215408,39.41919304,3 STRAND COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_14,-74.52061463,39.44266964,3 STRAND COURT,ABSECON CITY,17,1975,1,GOV1,3004 -0101_35_15,-74.5688575,39.416783,1 STRAND COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_15,-74.51169485,39.44773297,1 STRAND COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_16,-74.564698,39.416638,3 RITZ DRIVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_16,-74.51009146,39.44698484,3 RITZ DRIVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_17,-74.565452,39.415408,1 RITZ DR,ABSECON CITY,17,1977,1,RES3A,3001 -0101_35_17,-74.52949117,39.4495225,1 RITZ DR,ABSECON CITY,17,1977,1,RES1,3001 -0101_35_2,-74.5973125,39.383182,17 RITZ DR,ABSECON CITY,17,1974,1,RES1,3001 -0101_35_2,-74.487647,39.441019,17 RITZ DR,ABSECON CITY,17,1974,1,RES1,3001 -0101_35_3,-74.5896645,39.3912275,15 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_3,-74.487573,39.4366075,15 RITZ DR,ABSECON CITY,17,1975,1,COM1,3002 -0101_35_4,-74.60598001,39.3924847,13 RITZ DR,ABSECON CITY,17,1975,1,RES1,3002 -0101_35_4,-74.49211719,39.45071135,13 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_5,-74.60061395,39.39044337,5 CLARIDGE COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_5,-74.48990331,39.4485501,5 CLARIDGE COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_6,-74.6024875,39.38929399,3 CLARIDGE CT,ABSECON CITY,17,1976,1,RES1,3001 -0101_35_6,-74.5022745,39.4521185,3 CLARIDGE CT,ABSECON CITY,17,1976,1,RES1,3001 -0101_35_7,-74.60130734,39.38562655,1 CLARIDGE COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_7,-74.5003285,39.4517125,1 CLARIDGE COURT,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_8,-74.61528168,39.39330051,11 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_8,-74.50506706,39.44872069,11 RITZ DR,ABSECON CITY,17,1975,1,RES1,3001 -0101_35_9,-74.60899355,39.39151431,9 RITZ DR,ABSECON CITY,17,1974,1,RES3A,3001 -0101_35_9,-74.50916919,39.44674144,9 RITZ DR,ABSECON CITY,17,1974,1,RES1,3001 -0101_36_1,-74.5725308,39.41519433,1108 NEW YORK AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_36_1,-74.52177567,39.44817303,1108 NEW YORK AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_36_2,-74.5744035,39.411074,1106 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_36_2,-74.4946595,39.4557615,1106 NEW YORK AVE,ABSECON CITY,17,1967,1,GOV1,3004 -0101_36_3,-74.55561367,39.4264345,1104 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_36_3,-74.5082855,39.461028,1104 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_36_4,-74.56360012,39.42267863,1102 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_36_4,-74.50923157,39.45672726,1102 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_36_5,-74.57431683,39.42825651,1100 NEW YORK AVE,ABSECON CITY,16,1968,1,RES1,3001 -0101_36_5,-74.496373,39.469472,1100 NEW YORK AVE,ABSECON CITY,16,1968,1,RES1,3001 -0101_37_1.01,-74.60970666,39.41782831,901 MORTON AVE,ABSECON CITY,17,1994,1,RES1,3001 -0101_37_1.01,-74.47836101,39.47851922,901 MORTON AVE,ABSECON CITY,17,1994,1,RES1,3001 -0101_37_1.02,-74.86127246,39.56456134,1002 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_37_1.02,-74.5790505,39.418555,1002 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_37_1.03,-74.83929129,39.52368808,903 HIGHLAND BLVD,ABSECON CITY,17,1990,1,RES1,3001 -0101_37_1.03,-74.5771335,39.408344,903 HIGHLAND BLVD,ABSECON CITY,17,1990,1,RES1,3001 -0101_37_2,-74.79726563,39.53986772,1008 NEW YORK AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_37_2,-74.58220187,39.4028337,1008 NEW YORK AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_37_3,-74.86476841,39.5608641,1006 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_37_3,-74.59544763,39.4104003,1006 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_37_4,-74.8616405,39.564248,1010 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_37_4,-74.58750433,39.41337268,1010 NEW YORK AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_38_1,-74.79634403,39.63038016,902 HIGHLAND BLVD,ABSECON CITY,17,1990,1,RES1,3001 -0101_38_1,-74.62519355,39.38269522,902 HIGHLAND BLVD,ABSECON CITY,17,1990,1,RES1,3001 -0101_38_2,-74.5027335,39.487322,900 HIGHLAND BLVD,ABSECON CITY,17,1989,1,RES3A,3001 -0101_38_2,-74.5188335,39.322957,900 HIGHLAND BLVD,ABSECON CITY,17,1989,1,GOV1,3004 -0101_4_1,-74.51165666,39.44992253,911 ELM AVE,ABSECON CITY,17,1997,1,RES1,3001 -0101_4_1,-74.52193139,39.31793498,911 ELM AVE,ABSECON CITY,17,1997,1,RES3A,3001 -0101_4_10,-74.516227,39.4449565,901 ELM AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_4_10,-74.512521,39.330146,901 ELM AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_4_11,-74.5309415,39.4455525,643 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_4_11,-74.509304,39.329702,643 WOODLAND AVE,ABSECON CITY,17,1971,1,GOV1,3004 -0101_4_11.01,-74.50888089,39.45972063,643A WOODLAND AVE,ABSECON CITY,17,2010,1,RES1,3001 -0101_4_11.01,-74.50952988,39.32952835,643A WOODLAND AVE,ABSECON CITY,17,2010,1,RES1,3001 -0101_4_12,-74.49989239,39.45728401,641 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_12,-74.51028416,39.32878101,641 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_13,-74.50758167,39.45702544,639 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_13,-74.51291794,39.32844782,639 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_14,-74.50724093,39.46664434,637 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_14,-74.5159056,39.32839273,637 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_15,-74.50044039,39.46409774,635 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_4_15,-74.51044135,39.32753397,635 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_4_16,-74.51944277,39.45761403,633 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_4_16,-74.50994866,39.32739802,633 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_4_17,-74.5159339,39.45723187,631 WOODLAND AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_4_17,-74.5147985,39.3268045,631 WOODLAND AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_4_18,-74.52290477,39.45793697,629 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_4_18,-74.51469319,39.32669014,629 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_4_19,-74.51157297,39.46610371,627 WOODLAND AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_4_19,-74.4573965,39.351142,627 WOODLAND AVE,ABSECON CITY,17,1974,1,RES3A,3001 -0101_4_20,-74.5200465,39.4628725,625 WOODLAND AVE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_4_20,-74.4601035,39.3501345,625 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_21,-74.52583429,39.46326466,623 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_21,-74.45976482,39.34971703,623 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_22,-74.46039,39.476368,621 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_22,-74.4619355,39.3495545,621 WOODLAND AVE,ABSECON CITY,17,1972,1,GOV1,3004 -0101_4_23,-74.458063,39.480002,619 WOODLAND AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_4_23,-74.46185982,39.34945102,619 WOODLAND AVE,ABSECON CITY,17,1979,1,RES3B,3001 -0101_4_24,-74.46611732,39.47365714,617 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_24,-74.4612035,39.34907,617 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_25,-74.48441532,39.47399941,615 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_25,-74.456782,39.347948,615 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_26,-74.48564099,39.47297868,613 WOODLAND AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_4_26,-74.4609725,39.347683,613 WOODLAND AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_4_27,-74.46655751,39.48062265,611 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_27,-74.48368375,39.34125684,611 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_28,-74.4524215,39.4948175,609 WOODLAND AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_4_28,-74.48036488,39.34072033,609 WOODLAND AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_4_29,-74.4516485,39.4927595,607 WOODLAND AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_4_29,-74.479002,39.3400155,607 WOODLAND AVE,ABSECON CITY,17,1969,1,RES1,3001 -0101_4_30,-74.44413021,39.48910682,605 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_30,-74.48203212,39.33917817,605 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_31,-74.45235207,39.48886772,603 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_4_31,-74.48411317,39.338958,603 WOODLAND AVE,ABSECON CITY,17,1972,1,RES3A,3001 -0101_4_32,-74.4639375,39.4954485,991 PITNEY ROAD,ABSECON CITY,17,1982,1,RES1,3001 -0101_4_32,-74.47915644,39.33644932,991 PITNEY ROAD,ABSECON CITY,17,1982,1,RES1,3001 -0101_4_33,-74.46454512,39.49112703,601 WOODLAND AVE,ABSECON CITY,17,1958,1,RES3A,3001 -0101_4_33,-74.4830735,39.33534,601 WOODLAND AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_42_1,-74.871999,39.6041705,802 HIGHLAND BLVD,ABSECON CITY,17,1963,1,RES1,3002 -0101_42_1,-74.62529711,39.38339278,802 HIGHLAND BLVD,ABSECON CITY,17,1963,1,RES1,3001 -0101_42_2.01,-74.867091,39.600963,901 NEW YORK AVE,ABSECON CITY,17,1999,1,RES1,3001 -0101_42_2.01,-74.62554709,39.38523473,901 NEW YORK AVE,ABSECON CITY,17,1999,1,RES1,3001 -0101_44_1,-74.777333,39.619678,1010 PLAZA PLACE,ABSECON CITY,17,1986,1,RES1,3001 -0101_44_1,-74.591008,39.4288225,1010 PLAZA PLACE,ABSECON CITY,17,1986,1,RES1,3001 -0101_44_2.02,-74.791566,39.638876,1007 NEW YORK AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_44_2.02,-74.59913157,39.4345708,1007 NEW YORK AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_44_2.03,-74.7741753,39.63134999,1009 NEW YORK AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_44_2.03,-74.6167542,39.42095331,1009 NEW YORK AVE,ABSECON CITY,17,1977,1,RES1,3002 -0101_44_2.04,-74.78917698,39.63840084,1005 NEW YORK AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_44_2.04,-74.5985223,39.42832345,1005 NEW YORK AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_44_6,-74.76542004,39.62579603,1004 PLAZA PLACE,ABSECON CITY,17,1977,1,RES1,3001 -0101_44_6,-74.6110035,39.425091,1004 PLAZA PLACE,ABSECON CITY,17,1977,1,COM7,3004 -0101_44_7.02,-74.77126505,39.63574566,1002 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_44_7.02,-74.61229849,39.42188219,1002 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_44_9,-74.7895065,39.6374435,1001 NEW YORK AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_44_9,-74.61703194,39.43224119,1001 NEW YORK AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_45_1,-74.71733891,39.57997307,1110 PLAZA PLACE,ABSECON CITY,17,1965,1,RES1,3001 -0101_45_1,-74.5869532,39.41320602,1110 PLAZA PLACE,ABSECON CITY,17,1965,1,RES1,3001 -0101_45_10,-74.76643904,39.61444535,1103 NEW YORK AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_45_10,-74.59582919,39.43350382,1103 NEW YORK AVE,ABSECON CITY,17,1964,1,GOV1,3004 -0101_45_11,-74.7783015,39.612623,1101 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_45_11,-74.58819562,39.43084722,1101 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_45_2,-74.72213992,39.58777564,1108 PLAZA PLACE,ABSECON CITY,17,1965,1,RES1,3001 -0101_45_2,-74.5978355,39.41048167,1108 PLAZA PLACE,ABSECON CITY,17,1965,1,RES1,3001 -0101_45_3,-74.7282515,39.5877045,1106 PLAZA PLACE,ABSECON CITY,17,1965,1,RES1,3001 -0101_45_3,-74.6026195,39.408475,1106 PLAZA PLACE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_45_4,-74.7482865,39.593791,1104 PLAZA PLACE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_45_4,-74.575495,39.423014,1104 PLAZA PLACE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_45_5,-74.745253,39.590849,1102 PLAZA PLACE,ABSECON CITY,17,1964,1,RES1,3001 -0101_45_5,-74.57557992,39.41953132,1102 PLAZA PLACE,ABSECON CITY,17,1964,1,RES1,3001 -0101_45_6,-74.75245469,39.59690284,1100 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3002 -0101_45_6,-74.58999451,39.42240883,1100 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_45_7,-74.78446364,39.60935517,1109 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_45_7,-74.5967663,39.42934413,1109 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_45_8,-74.75668496,39.60564534,1107 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_45_8,-74.57544389,39.42861968,1107 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_45_9,-74.77962354,39.60281019,1105 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3002 -0101_45_9,-74.59028571,39.43376991,1105 NEW YORK AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_49_1,-74.7916512,39.63461252,1110 CHELSEA ROAD,ABSECON CITY,17,1963,1,COM1,3004 -0101_49_1,-74.6181085,39.429727,1110 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_10,-74.58287,39.343459,1105 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_10,-74.38465845,39.39370434,1105 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3002 -0101_49_11,-74.5908545,39.3511845,1103 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_11,-74.3871184,39.39216434,1103 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_12,-74.59638984,39.35109339,1101 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_12,-74.3874855,39.3908995,1101 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3002 -0101_49_2,-74.87290891,39.57495026,1108 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_2,-74.61252098,39.42840923,1108 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_3,-74.851068,39.5934015,1106 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_3,-74.623217,39.3754535,1106 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_4,-74.8677905,39.601981,1104 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_4,-74.63903561,39.370712,1104 CHELSEA ROAD,ABSECON CITY,17,1963,1,GOV1,3004 -0101_49_5,-74.52099647,39.39411867,1102 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_5,-74.90619,39.5369235,1102 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_6,-74.48305092,39.43223818,1100 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_6,-74.92763381,39.50998437,1100 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_7,-74.4840235,39.429339,1111 PLAZA PLACE,ABSECON CITY,17,1967,1,RES1,3001 -0101_49_7,-74.944902,39.5091125,1111 PLAZA PLACE,ABSECON CITY,17,1967,1,COM1,3004 -0101_49_8,-74.5037865,39.410449,1109 PLAZA PLACE,ABSECON CITY,17,1967,1,RES1,3001 -0101_49_8,-74.93479332,39.51978132,1109 PLAZA PLACE,ABSECON CITY,17,1967,1,RES1,3001 -0101_49_9,-74.50704582,39.40968047,1107 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_49_9,-74.94021778,39.51706041,1107 PLAZA PLACE,ABSECON CITY,17,1963,1,RES1,3001 -0101_5_1.01,-74.45563864,39.50055765,850 ELM AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_5_1.01,-74.48612446,39.33470481,850 ELM AVE,ABSECON CITY,17,1979,1,GOV1,3004 -0101_5_1.02,-74.454436,39.4993425,642 WOODLAND AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_5_1.02,-74.4832285,39.334608,642 WOODLAND AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_5_1.03,-74.45550217,39.498375,640 WOODLAND AVE,ABSECON CITY,17,1974,1,RES1,3004 -0101_5_1.03,-74.48688466,39.33432026,640 WOODLAND AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_5_10,-74.455948,39.4892262,622 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_5_10,-74.494817,39.3308855,622 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3004 -0101_5_11,-74.45670326,39.4887369,620 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_5_11,-74.4978965,39.3291665,620 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_5_12,-74.45267186,39.50258626,618 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_5_12,-74.49789533,39.32834,618 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_5_13,-74.45290185,39.49567775,616 WOODLAND AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_5_13,-74.50011084,39.33407749,616 WOODLAND AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_5_14,-74.44848423,39.49560005,614 WOODLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_5_14,-74.504497,39.332216,614 WOODLAND AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_5_15,-74.47572055,39.49358764,612 WOODLAND AVE,ABSECON CITY,17,1978,1,RES1,3004 -0101_5_15,-74.50372464,39.33138818,612 WOODLAND AVE,ABSECON CITY,17,1978,1,RES1,3001 -0101_5_16,-74.47011487,39.49338369,610 WOODLAND AVE,ABSECON CITY,17,1984,1,RES1,3002 -0101_5_16,-74.5052245,39.3312595,610 WOODLAND AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_5_18,-74.47643451,39.49378459,602 WOODLAND AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_5_18,-74.500355,39.330562,602 WOODLAND AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_5_19.01,-74.46576388,39.4971422,600 WOODLAND AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_5_19.01,-74.50429277,39.32996767,600 WOODLAND AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_5_19.02,-74.50647682,39.47856094,1015 PITNEY ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_5_19.02,-74.50302483,39.32980652,1015 PITNEY ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_5_2,-74.4742605,39.4809555,638 WOODLAND AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_5_2,-74.48905815,39.33398952,638 WOODLAND AVE,ABSECON CITY,17,1975,1,RES1,3001 -0101_5_22,-74.5309648,39.47444064,1019 PITNEY RD,ABSECON CITY,17,1935,1,RES1,3001 -0101_5_22,-74.5016705,39.329762,1019 PITNEY RD,ABSECON CITY,17,1935,1,RES1,3001 -0101_5_3,-74.4746085,39.48060296,636 WOODLAND AVE,ABSECON CITY,16,1978,1,RES1,3001 -0101_5_3,-74.49227565,39.33371214,636 WOODLAND AVE,ABSECON CITY,16,1978,1,RES1,3001 -0101_5_4,-74.4521995,39.4927415,634 WOODLAND AVE,ABSECON CITY,17,1970,1,RES1,3002 -0101_5_4,-74.48798607,39.33327828,634 WOODLAND AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_5_5,-74.44995843,39.49030527,632 WOODLAND AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_5_5,-74.49562093,39.33242283,632 WOODLAND AVE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_5_6,-74.46205535,39.49461495,630 WOODLAND AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_5_6,-74.4918705,39.3323205,630 WOODLAND AVE,ABSECON CITY,17,1972,1,RES3A,3001 -0101_5_7,-74.464291,39.4940265,628 WOODLAND AVE,ABSECON CITY,17,1973,1,RES3A,3001 -0101_5_7,-74.49305963,39.33196516,628 WOODLAND AVE,ABSECON CITY,17,1973,1,RES1,3001 -0101_5_8,-74.45509645,39.49166767,626 WOODLAND AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_5_8,-74.4900795,39.3319355,626 WOODLAND AVE,ABSECON CITY,17,1971,1,RES3B,3004 -0101_5_9,-74.45602244,39.49110173,624 WOODLAND AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_5_9,-74.49220537,39.33124682,624 WOODLAND AVE,ABSECON CITY,17,1970,1,RES3A,3001 -0101_50_1,-74.59551553,39.34935412,1008 CHELSEA RD,ABSECON CITY,17,1984,1,RES3A,3001 -0101_50_1,-74.38839265,39.39034454,1008 CHELSEA RD,ABSECON CITY,17,1984,1,RES1,3001 -0101_50_2.01,-74.5842035,39.357763,1007 PLAZA PLACE,ABSECON CITY,17,1984,1,RES1,3001 -0101_50_2.01,-74.37744698,39.3979341,1007 PLAZA PLACE,ABSECON CITY,17,1984,1,RES1,3001 -0101_50_2.02,-74.584228,39.3581575,1005 PLAZA PLACE,ABSECON CITY,17,1979,1,GOV1,3004 -0101_50_2.02,-74.37811996,39.40068862,1005 PLAZA PLACE,ABSECON CITY,17,1979,1,GOV1,3004 -0101_50_2.03,-74.60942484,39.3433554,1003 PLAZA PLACE,ABSECON CITY,17,1978,1,EDU1,3004 -0101_50_2.03,-74.39669895,39.38808029,1003 PLAZA PLACE,ABSECON CITY,17,1978,1,RES1,3001 -0101_50_2.04,-74.60347683,39.34459301,1000 CHELSEA ROAD,ABSECON CITY,17,1979,1,RES1,3001 -0101_50_2.04,-74.391034,39.3897145,1000 CHELSEA ROAD,ABSECON CITY,17,1979,1,RES3B,3001 -0101_50_2.05,-74.59678228,39.34514682,1006 CHELSEA ROAD,ABSECON CITY,17,1979,1,RES1,3001 -0101_50_2.05,-74.38756231,39.39024977,1006 CHELSEA ROAD,ABSECON CITY,17,1979,1,RES1,3001 -0101_50_2.07,-74.57675455,39.35694451,1009 PLAZA PLACE,ABSECON CITY,17,1979,1,RES1,3001 -0101_50_2.07,-74.3784125,39.397285,1009 PLAZA PLACE,ABSECON CITY,17,1979,1,RES1,3001 -0101_50_2.08,-74.5936376,39.3431179,1004 CHELSEA ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_50_2.08,-74.3965892,39.39012142,1004 CHELSEA ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_50_3,-74.59810134,39.34170106,1002 CHELSEA ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_50_3,-74.38969862,39.38976347,1002 CHELSEA ROAD,ABSECON CITY,17,1980,1,RES1,3001 -0101_50_4,-74.6093877,39.34797196,1001 PLAZA PLACE,ABSECON CITY,17,1980,1,RES1,3001 -0101_50_4,-74.39773631,39.38862328,1001 PLAZA PLACE,ABSECON CITY,17,1980,1,RES1,3002 -0101_51_1.01,-74.581389,39.3565975,704 HADDON AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_51_1.01,-74.394823,39.394963,704 HADDON AVE,ABSECON CITY,17,1970,1,RES3A,3001 -0101_51_1.02,-74.5978843,39.35958284,908 CHELSEA ROAD,ABSECON CITY,17,1987,1,RES1,3001 -0101_51_1.02,-74.41390882,39.37111103,908 CHELSEA ROAD,ABSECON CITY,17,1987,1,RES1,3001 -0101_51_1.03,-74.60387467,39.35668817,906 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_51_1.03,-74.40505392,39.38043571,906 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_51_3,-74.59811819,39.35899186,703 HIGHLAND BLVD,ABSECON CITY,16,1960,1,RES1,3001 -0101_51_3,-74.40045747,39.38359168,703 HIGHLAND BLVD,ABSECON CITY,16,1960,1,RES1,3001 -0101_51_4,-74.59878292,39.3552337,902 CHELSEA ROAD,ABSECON CITY,17,1986,1,RES1,3001 -0101_51_4,-74.4114945,39.383457,902 CHELSEA ROAD,ABSECON CITY,17,1986,1,RES1,3001 -0101_52_1,-74.61701203,39.35949319,702 HIGHLAND BLVD,ABSECON CITY,17,1980,1,RES1,3001 -0101_52_1,-74.4234645,39.376045,702 HIGHLAND BLVD,ABSECON CITY,17,1980,1,RES1,3001 -0101_52_2.01,-74.6134935,39.351366,839 PLAZA PLACE,ABSECON CITY,17,1987,1,RES1,3001 -0101_52_2.01,-74.42894597,39.37486364,839 PLAZA PLACE,ABSECON CITY,17,1987,1,RES1,3001 -0101_52_4,-74.5981575,39.3682505,880 CHELSEA ROAD,ABSECON CITY,17,1977,1,RES1,3001 -0101_52_4,-74.4292485,39.3741,880 CHELSEA ROAD,ABSECON CITY,17,1977,1,RES1,3001 -0101_53_1.01,-74.59997,39.3603145,828 CHELSEA ROAD,ABSECON CITY,17,1986,1,RES1,3001 -0101_53_1.01,-74.43059522,39.37241966,828 CHELSEA ROAD,ABSECON CITY,17,1986,1,RES1,3001 -0101_53_1.02,-74.6109332,39.36732942,826 CHELSEA ROAD,ABSECON CITY,17,1986,1,RES1,3001 -0101_53_1.02,-74.423366,39.3720985,826 CHELSEA ROAD,ABSECON CITY,17,1986,1,RES1,3001 -0101_53_1.03,-74.62253352,39.33774964,824 CHELSEA ROAD,ABSECON CITY,17,1988,1,AGR1,3001 -0101_53_1.03,-74.4220175,39.3712945,824 CHELSEA ROAD,ABSECON CITY,17,1988,1,RES1,3004 -0101_6_2,-74.529902,39.47352,1039 PITNEY RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_6_2,-74.50426384,39.32905755,1039 PITNEY RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_68_1,-74.591479,39.4298765,812 NEW YORK AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_68_1,-74.46730451,39.49371902,812 NEW YORK AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_68_2.01,-74.59229347,39.4279693,816 NEW YORK AVE,ABSECON CITY,17,1992,1,GOV1,3004 -0101_68_2.01,-74.46630493,39.49323109,816 NEW YORK AVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_68_2.02,-74.6079595,39.419488,814 NEW YORK AVE,ABSECON CITY,17,1994,1,RES1,3002 -0101_68_2.02,-74.47302317,39.4908775,814 NEW YORK AVE,ABSECON CITY,17,1994,1,RES1,3001 -0101_69_1.01,-74.59155561,39.43389362,806 NEW YORK AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_69_1.01,-74.45224182,39.50287828,806 NEW YORK AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_69_1.02,-74.59380869,39.43265555,808 NEW YORK AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_69_1.02,-74.46422002,39.49753684,808 NEW YORK AVE,ABSECON CITY,17,1986,1,GOV1,3004 -0101_69_1.03,-74.5882822,39.43238642,810 NEW YORK AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_69_1.03,-74.4658125,39.4943485,810 NEW YORK AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_70_2,-74.57526715,39.42831095,804 NEW YORK AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_70_2,-74.45433144,39.48816084,804 NEW YORK AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_70_7,-74.59364,39.4347815,802 NEW YORK AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_70_7,-74.45697759,39.48990528,802 NEW YORK AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_71_1,-74.562791,39.3721545,710 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_71_1,-74.51879082,39.39018198,710 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_71_10,-74.57184831,39.36851307,114 WOODCREST AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_71_10,-74.52744366,39.38656061,114 WOODCREST AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_71_11,-74.5541695,39.384294,112 WOODCREST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_71_11,-74.52576198,39.38553417,112 WOODCREST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_71_12,-74.55667163,39.3786042,110 WOODCREST AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_71_12,-74.51672501,39.40162816,110 WOODCREST AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_71_13,-74.5534815,39.377716,108 WOODCREST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_71_13,-74.51420783,39.40143499,108 WOODCREST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_71_14,-74.54131385,39.39052797,106 WOODCREST AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_71_14,-74.514339,39.40127,106 WOODCREST AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_71_15,-74.53936013,39.38790832,104 WOODCREST AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_71_15,-74.5160045,39.400724,104 WOODCREST AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_71_16,-74.5334455,39.3876755,102 WOODCREST AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_71_16,-74.51271767,39.39858859,102 WOODCREST AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_71_17,-74.53809731,39.38740647,100 WOODCREST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_71_17,-74.515768,39.396539,100 WOODCREST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_71_3,-74.559505,39.3717275,708 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_71_3,-74.51932005,39.38843332,708 NEW YORK AVE,ABSECON CITY,17,1966,1,GOV1,3004 -0101_71_4,-74.55636399,39.37082967,706 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_71_4,-74.51808771,39.38805569,706 NEW YORK AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_71_6,-74.55415478,39.36946766,704 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_71_6,-74.5175452,39.3866118,704 NEW YORK AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_71_8,-74.56556539,39.3730338,702 NEW YORK AVE,ABSECON CITY,17,1966,1,GOV1,3004 -0101_71_8,-74.51972256,39.38602157,702 NEW YORK AVE,ABSECON CITY,17,1966,1,GOV1,3004 -0101_71_9,-74.56526114,39.36967957,116 WOODCREST AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_71_9,-74.52788114,39.38814828,116 WOODCREST AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_72_7,-74.57974489,39.42426585,133 CRESTVIEW AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_72_7,-74.4840068,39.47661344,133 CRESTVIEW AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_72_8.01,-74.58837578,39.42559011,131A CRESTVIEW AVE,ABSECON CITY,17,1990,1,GOV1,3004 -0101_72_8.01,-74.46991186,39.48287078,131A CRESTVIEW AVE,ABSECON CITY,17,1990,1,RES1,3001 -0101_72_8.02,-74.58890116,39.42495011,131 CRESTVIEW AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_72_8.02,-74.48527484,39.47897398,131 CRESTVIEW AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_72_9,-74.59460962,39.42114553,129 CRESTVIEW AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_72_9,-74.45353581,39.48991882,129 CRESTVIEW AVE,ABSECON CITY,17,1940,1,GOV1,3004 -0101_73_2,-74.610255,39.4246595,344 CONNECTICUT AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_73_2,-74.47328188,39.49078122,344 CONNECTICUT AVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_73_3,-74.61724735,39.421943,342 CONNECTICUT AVE,ABSECON CITY,17,1971,1,GOV1,3004 -0101_73_3,-74.46714567,39.489828,342 CONNECTICUT AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_74_1,-74.603153,39.432803,268 CONNECTICUT AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_74_1,-74.50574548,39.47554477,268 CONNECTICUT AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_75_1,-74.5995996,39.42983931,348 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_75_1,-74.504157,39.478983,348 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_75_10,-74.63518801,39.38365542,803 OAKHURST AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_75_10,-74.49803135,39.4972557,803 OAKHURST AVE,ABSECON CITY,17,1959,1,RES1,3004 -0101_75_11,-74.632319,39.3829815,345 CONNECTICUT AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_75_11,-74.489873,39.495573,345 CONNECTICUT AVE,ABSECON CITY,17,1957,1,RES1,3002 -0101_75_2,-74.60977065,39.43367593,806 PITNEY ROAD,ABSECON CITY,17,1976,1,RES1,3001 -0101_75_2,-74.520547,39.47123033,806 PITNEY ROAD,ABSECON CITY,17,1976,1,RES1,3001 -0101_75_3,-74.6169995,39.432864,808 PITNEY RD,ABSECON CITY,17,1955,1,RES1,3004 -0101_75_3,-74.51243399,39.48609196,808 PITNEY RD,ABSECON CITY,17,1955,1,RES1,3001 -0101_75_5,-74.621322,39.3707495,349 CONNECTICUT AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_75_5,-74.51224237,39.48377381,349 CONNECTICUT AVE,ABSECON CITY,17,1955,1,RES1,3002 -0101_75_6,-74.6232499,39.36978133,344 HOBART AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_75_6,-74.51136789,39.48350928,344 HOBART AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_75_7,-74.6242455,39.3836995,340 HOBART AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_75_7,-74.51051867,39.48174297,340 HOBART AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_75_8,-74.62193345,39.38347432,801 OAKHURST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_75_8,-74.49466911,39.49476419,801 OAKHURST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_75_9,-74.62364741,39.38195042,347 CONNECTICUT AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_75_9,-74.50776593,39.49327829,347 CONNECTICUT AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_76_1,-74.624117,39.393935,710 PITNEY ROAD,ABSECON CITY,17,1985,1,RES1,3004 -0101_76_1,-74.53433492,39.31453982,710 PITNEY ROAD,ABSECON CITY,17,1985,1,RES1,3001 -0101_76_2.01,-74.638259,39.402154,712 PITNEY RD,ABSECON CITY,17,1989,1,RES1,3001 -0101_76_2.01,-74.5348625,39.3142335,712 PITNEY RD,ABSECON CITY,17,1989,1,GOV1,3004 -0101_76_2.02,-74.6390825,39.401767,310 COOLIDGE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_76_2.02,-74.53527217,39.31354086,310 COOLIDGE AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_76_3,-74.63843225,39.39928226,306 COOLIDGE AVE,ABSECON CITY,16,1930,1,RES1,3001 -0101_76_3,-74.5797253,39.31117697,306 COOLIDGE AVE,ABSECON CITY,16,1930,1,RES1,3001 -0101_76_4,-74.64730434,39.39707095,300 COOLIDGE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_76_4,-74.59588425,39.31506336,300 COOLIDGE AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_76_5,-74.67125017,39.37482849,349 HOBART AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_76_5,-74.5933081,39.31314764,349 HOBART AVE,ABSECON CITY,17,1957,1,IND2,3002 -0101_76_6,-74.6826895,39.392396,345 HOBART AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_76_6,-74.59122873,39.31228171,345 HOBART AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_76_7,-74.682395,39.3909655,343 HOBART AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_76_7,-74.60370851,39.31671832,343 HOBART AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_76_8,-74.63395605,39.40828291,711 OAKHURST AVE,ABSECON CITY,17,1957,1,AGR1,3001 -0101_76_8,-74.606032,39.316478,711 OAKHURST AVE,ABSECON CITY,17,1957,1,RES1,3001 -0101_77_1,-74.65076634,39.52283247,258 COOLIDGE AVE,ABSECON CITY,17,1956,1,COM4,3004 -0101_77_1,-74.58894422,39.3789701,258 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_10,-74.66635295,39.53960384,250 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_10,-74.5977958,39.37866267,250 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_11,-74.68621086,39.54945235,248 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_11,-74.61136875,39.38403616,248 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_12,-74.66839889,39.56107047,246 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_12,-74.61646834,39.38013398,246 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_13,-74.68480952,39.55720682,244 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_13,-74.5874975,39.401571,244 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_14,-74.67481548,39.56931591,242 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_14,-74.6043178,39.39143646,242 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_15,-74.552421,39.592933,240 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_15,-74.60466894,39.3903077,240 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_16,-74.61664284,39.62208348,210 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_16,-74.6118135,39.3877865,210 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_17,-74.63179851,39.59752692,206 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_17,-74.60835922,39.38726416,206 COOLIDGE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_77_18,-74.66185768,39.59003047,200 COOLIDGE AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_77_18,-74.53781524,39.40439844,200 COOLIDGE AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_77_19,-74.6514778,39.59748441,105 AUSTIN AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_77_19,-74.56272274,39.40961704,105 AUSTIN AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_2,-74.65256966,39.52898503,256 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_2,-74.59385472,39.37765254,256 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_20,-74.7034601,39.58519616,169 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_20,-74.56108352,39.40881734,169 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_21,-74.69481753,39.59064508,201 HOBART AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_77_21,-74.56534339,39.40562359,201 HOBART AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_77_3,-74.653209,39.526198,708 OAKHURST AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_77_3,-74.60395073,39.3730371,708 OAKHURST AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_77_4,-74.646187,39.532004,712 OAKHURST AVE,ABSECON CITY,17,1928,1,GOV1,3004 -0101_77_4,-74.6000642,39.37239542,712 OAKHURST AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_77_5,-74.649769,39.5315895,714 OAKHURST AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_77_5,-74.601467,39.3706935,714 OAKHURST AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_6,-74.68198766,39.51469797,215 HOBART AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_77_6,-74.604383,39.3693125,215 HOBART AVE,ABSECON CITY,17,1959,1,GOV1,3004 -0101_77_7.03,-74.54884,39.468244,211 HOBART AVE,ABSECON CITY,17,2002,1,RES1,3001 -0101_77_7.03,-74.61055582,39.31821649,211 HOBART AVE,ABSECON CITY,17,2002,1,RES1,3001 -0101_77_8,-74.6308625,39.5401435,254 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_8,-74.60501565,39.38274196,254 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_9,-74.6563225,39.553234,252 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_77_9,-74.60118779,39.3804389,252 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_1,-74.5563815,39.4706415,104 AUSTIN AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_1,-74.568519,39.351898,104 AUSTIN AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_10,-74.56883485,39.49883508,116 COOLIDGE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_78_10,-74.5679185,39.3667045,116 COOLIDGE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_78_11.01,-74.60554347,39.48712219,102 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_11.01,-74.574562,39.366585,102 COOLIDGE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_78_11.02,-74.60916735,39.49042095,740 BAYVIEW DRIVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_11.02,-74.56786082,39.36509582,740 BAYVIEW DRIVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_12.01,-74.6419765,39.4617735,110 AUSTIN AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_78_12.01,-74.58223894,39.34318599,110 AUSTIN AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_78_13,-74.650529,39.455384,155 HOBART AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_78_13,-74.58349458,39.34462252,155 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_14,-74.63677067,39.468547,151 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_14,-74.5763738,39.35029697,151 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_15,-74.6281907,39.46150077,139 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_15,-74.5886905,39.3350485,139 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_16,-74.64561086,39.44848693,137 HOBART AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_78_16,-74.59614132,39.34265691,137 HOBART AVE,ABSECON CITY,17,1988,1,GOV1,3004 -0101_78_17,-74.63127579,39.4455023,135 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_17,-74.57979787,39.33650317,135 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_18,-74.62112848,39.43734716,131 HOBART AVE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_78_18,-74.57670068,39.33936633,131 HOBART AVE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_78_19,-74.6193066,39.43849423,105 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_19,-74.571389,39.362928,105 HOBART AVE,ABSECON CITY,17,1956,1,RES3A,3001 -0101_78_2,-74.57062707,39.47838235,160 COOLIDGE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_78_2,-74.56738996,39.35172535,160 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES3A,3001 -0101_78_20,-74.61304016,39.48914904,101 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3002 -0101_78_20,-74.57432646,39.36361601,101 HOBART AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_21,-74.61245717,39.48969083,748 BAYVIEW DRIVE,ABSECON CITY,17,1956,1,IND2,3002 -0101_78_21,-74.5672605,39.3640055,748 BAYVIEW DRIVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_3.01,-74.565472,39.474474,156 COOLIDGE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_78_3.01,-74.573918,39.3514305,156 COOLIDGE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_78_4,-74.57098642,39.47971489,154 COOLIDGE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_78_4,-74.56365209,39.36674304,154 COOLIDGE AVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_78_5,-74.566343,39.478695,150 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_5,-74.57164318,39.36794999,150 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_78_6,-74.53133255,39.49862491,144 COOLIDGE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_78_6,-74.56640902,39.36773632,144 COOLIDGE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_78_8.01,-74.6257435,39.437347,132 COOLIDGE AVE,ABSECON CITY,17,1921,1,RES1,3001 -0101_78_8.01,-74.581775,39.3409525,132 COOLIDGE AVE,ABSECON CITY,17,1921,1,RES1,3001 -0101_78_8.02,-74.627252,39.4375705,121 HOBART AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_78_8.02,-74.56711666,39.36137367,121 HOBART AVE,ABSECON CITY,17,1982,1,GOV1,3004 -0101_78_8.03,-74.62971811,39.43768783,115 HOBART AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_78_8.03,-74.570805,39.362825,115 HOBART AVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_78_9,-74.55398676,39.50122864,120 COOLIDGE AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_78_9,-74.5697955,39.366767,120 COOLIDGE AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_79_1,-74.684115,39.440567,632 AUSTIN AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_1,-74.5870705,39.3465545,632 AUSTIN AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_10,-74.68663415,39.4774973,143 COOLIDGE AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_79_10,-74.5850845,39.3573305,143 COOLIDGE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_79_11,-74.700091,39.48577,144 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_11,-74.57528159,39.35497249,144 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_12,-74.6697793,39.49365084,137 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_12,-74.5765516,39.3549422,137 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_13,-74.681788,39.4875375,142 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_13,-74.57623858,39.3548402,142 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_14,-74.68137914,39.50005738,133 COOLIDGE AVE,ABSECON CITY,17,1954,1,EDU1,3004 -0101_79_14,-74.5849165,39.3524885,133 COOLIDGE AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_79_15,-74.68152295,39.49920644,140 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_15,-74.586254,39.3591875,140 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_16,-74.776517,39.3838775,129 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_16,-74.57940965,39.36083398,129 COOLIDGE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_17,-74.71262422,39.37757506,138 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_17,-74.59169563,39.35611776,138 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_18,-74.759078,39.431076,125 COOLIDGE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_18,-74.60045,39.3678885,125 COOLIDGE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_19,-74.7165025,39.4014645,136 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_19,-74.5905325,39.353438,136 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_2,-74.6808595,39.4465545,161 COOLIDGE AVE,ABSECON CITY,17,1946,1,GOV1,3004 -0101_79_2,-74.58769115,39.34645266,161 COOLIDGE AVE,ABSECON CITY,17,1946,1,RES1,3001 -0101_79_20,-74.7546545,39.431553,121 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_20,-74.6055598,39.35316755,121 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_21,-74.781422,39.383234,112 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_21,-74.58238512,39.36019571,112 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_22.01,-74.75566696,39.43083399,101 COOLIDGE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_79_22.01,-74.598114,39.3659675,101 COOLIDGE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_79_23,-74.714372,39.4181945,110 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3004 -0101_79_23,-74.5951075,39.362258,110 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_25,-74.74389123,39.42591458,10 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_79_25,-74.59666631,39.36062101,10 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_79_3,-74.6821775,39.44499,170 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_3,-74.59394251,39.34619717,170 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_4,-74.70688244,39.44070448,159 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_4,-74.59390189,39.34328563,159 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_5,-74.6909785,39.449512,160 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_5,-74.60695233,39.34068139,160 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_79_6,-74.70463543,39.44557371,157 COOLIDGE AVE,ABSECON CITY,17,1930,1,REL1,3004 -0101_79_6,-74.61061262,39.34273897,157 COOLIDGE AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_79_7,-74.664148,39.460306,154 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3004 -0101_79_7,-74.6102725,39.340378,154 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_8,-74.66387453,39.45455499,149 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_8,-74.59757826,39.34503818,149 COOLIDGE AVE,ABSECON CITY,17,1956,1,COM1,3004 -0101_79_9,-74.6453795,39.4715615,152 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_79_9,-74.58524699,39.35835975,152 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_8_2,-74.49218749,39.4944203,1012 PITNEY RD,ABSECON CITY,17,1952,1,GOV1,3004 -0101_8_2,-74.503507,39.328381,1012 PITNEY RD,ABSECON CITY,17,1952,1,RES1,3001 -0101_8_3,-74.49061213,39.4918223,1006 PITNEY RD,ABSECON CITY,17,1946,1,GOV1,3004 -0101_8_3,-74.50745869,39.32776554,1006 PITNEY RD,ABSECON CITY,17,1946,1,RES1,3001 -0101_8_4_C0B25,-74.53021342,39.38205569,25 E WOODLAND AVE,ABSECON CITY,35,2001,1,RES1,3001 -0101_8_4_C0B25,-74.69941289,39.6440683,25 E WOODLAND AVE,ABSECON CITY,35,2001,1,RES1,3001 -0101_80_1,-74.55000078,39.46612345,274 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES3A,3001 -0101_80_1,-74.60917733,39.3180085,274 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_10,-74.590359,39.4595445,245 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_10,-74.57473202,39.35071404,245 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_11,-74.53670575,39.47221092,244 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_11,-74.5665695,39.347566,244 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_80_12,-74.5331655,39.471321,239 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_12,-74.5736105,39.346836,239 COOLIDGE AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_80_13,-74.53219224,39.47121743,240 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_13,-74.5678059,39.3458845,240 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_14,-74.55102722,39.47484207,235 COOLIDGE AVE,ABSECON CITY,17,1970,1,COM8,3004 -0101_80_14,-74.57361043,39.34515417,235 COOLIDGE AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_80_15,-74.546396,39.473659,222 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3004 -0101_80_15,-74.54795064,39.36788194,222 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_16,-74.54715691,39.47291272,233 COOLIDGE AVE,ABSECON CITY,16,1965,1,RES1,3001 -0101_80_16,-74.552873,39.3677235,233 COOLIDGE AVE,ABSECON CITY,16,1965,1,GOV1,3004 -0101_80_17,-74.54596784,39.47108189,220 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_17,-74.54833133,39.36758501,220 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_80_18,-74.55400093,39.47778425,231 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_18,-74.55066979,39.36215321,231 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_19,-74.55788688,39.47775673,206 PENNSYLVANIA AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_80_19,-74.55081648,39.36061067,206 PENNSYLVANIA AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_80_20,-74.55568994,39.47756972,229 COOLIDGE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_80_20,-74.5510895,39.3602355,229 COOLIDGE AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_80_21,-74.5592105,39.476955,200 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_21,-74.5623355,39.358268,200 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_22,-74.555145,39.475863,205 COOLIDGE AVE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_80_22,-74.55614754,39.3571201,205 COOLIDGE AVE,ABSECON CITY,17,1955,1,RES1,3001 -0101_80_23,-74.55729267,39.47123406,201 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_23,-74.56700765,39.35496644,201 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_3,-74.54872131,39.46271523,259 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_3,-74.60957057,39.31767396,259 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_4,-74.55377971,39.47009308,257 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_4,-74.60517667,39.3304358,257 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_5,-74.5634755,39.4700845,264 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_80_5,-74.6026025,39.3298035,264 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_80_6.02,-74.55711642,39.47000171,251 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_6.02,-74.60771712,39.32754289,251 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_7,-74.579463,39.4463465,252 PENNSYLVANIA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_80_7,-74.5673385,39.3417765,252 PENNSYLVANIA AVE,ABSECON CITY,17,1928,1,GOV1,3004 -0101_80_8,-74.60274883,39.44318689,249 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_8,-74.5720195,39.3392725,249 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_80_9,-74.61110244,39.44015018,250 PENNSYLVANIA AVE,ABSECON CITY,17,1958,1,GOV1,3004 -0101_80_9,-74.57367214,39.33632231,250 PENNSYLVANIA AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_81_1.01,-74.70625174,39.42598844,700 PITNEY ROAD,ABSECON CITY,17,1957,1,RES1,3001 -0101_81_1.01,-74.60460119,39.32176773,700 PITNEY ROAD,ABSECON CITY,17,1957,1,RES1,3001 -0101_81_1.02,-74.69918643,39.43269128,330 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_81_1.02,-74.60616976,39.3194614,330 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_81_10,-74.53852042,39.46188372,308 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_81_10,-74.61426481,39.31986643,308 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_81_12,-74.55074008,39.46933727,633 OAKHURST AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_81_12,-74.61156618,39.31829065,633 OAKHURST AVE,ABSECON CITY,17,1930,1,RES3B,3001 -0101_81_13,-74.63923894,39.52561035,635 OAKHURST AVE,ABSECON CITY,16,1967,1,RES1,3001 -0101_81_13,-74.5407077,39.38617822,635 OAKHURST AVE,ABSECON CITY,16,1967,1,RES1,3001 -0101_81_14,-74.6338671,39.52426608,311 COOLIDGE AVE,ABSECON CITY,17,1981,1,RES1,3001 -0101_81_14,-74.54616385,39.38664905,311 COOLIDGE AVE,ABSECON CITY,17,1981,1,RES1,3001 -0101_81_5,-74.705576,39.431478,319 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_81_5,-74.598331,39.319216,319 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_81_6,-74.5377505,39.460749,320 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_81_6,-74.61064,39.3254365,320 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_81_7,-74.54204623,39.45907783,317 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_81_7,-74.61087251,39.32282067,317 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_81_8,-74.53163736,39.45495883,314 PENNSYLVANIA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_81_8,-74.61021606,39.32043984,314 PENNSYLVANIA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_81_9,-74.54120793,39.46644122,315 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_81_9,-74.60897295,39.32007724,315 COOLIDGE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_1,-74.62649394,39.41802169,100 MILL RD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_1,-74.6023695,39.316257,100 MILL RD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_10,-74.62920989,39.42171075,101 WOODCREST AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_10,-74.59034832,39.32141048,101 WOODCREST AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_11,-74.62964095,39.4196742,102 MILL ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_11,-74.58907934,39.3210459,102 MILL ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_12,-74.63169063,39.4270044,608 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_12,-74.58819062,39.31894034,608 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_13,-74.63428593,39.43411395,610 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_13,-74.58162714,39.33270681,610 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_14,-74.6311225,39.4312765,612 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_14,-74.57763487,39.33204155,612 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_15,-74.6386752,39.42918606,614 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_15,-74.58314615,39.32779049,614 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_16,-74.63047205,39.42806081,616 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_16,-74.58928244,39.33317655,616 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_17,-74.64441689,39.43563622,618 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_17,-74.58670391,39.32761897,618 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_18,-74.64628717,39.43416799,620 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_18,-74.60745937,39.32342237,620 SEMINOLE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_19,-74.646629,39.4329525,103 WOODCREST AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_19,-74.60263703,39.32278669,103 WOODCREST AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_2,-74.62848853,39.41693281,605 PITNEY ROAD,ABSECON CITY,17,1935,1,GOV1,3004 -0101_82_2,-74.59774164,39.31485497,605 PITNEY ROAD,ABSECON CITY,17,1935,1,RES1,3001 -0101_82_3,-74.62569658,39.4162929,607 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_3,-74.6057525,39.3109915,607 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_4,-74.62786709,39.41281931,609 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_4,-74.61315631,39.3161885,609 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_5,-74.62697281,39.41194698,611 PITNEY ROAD,ABSECON CITY,17,1956,1,GOV1,3004 -0101_82_5,-74.6178848,39.31339995,611 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_6,-74.6391345,39.416438,613 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_6,-74.592124,39.3256525,613 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3002 -0101_82_7,-74.63306142,39.41431829,615 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_7,-74.5864725,39.3245435,615 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_8,-74.63502167,39.4114893,617 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_8,-74.59299217,39.32151601,617 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_9,-74.622547,39.4231025,619 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_82_9,-74.59377879,39.32141089,619 PITNEY ROAD,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_10,-74.6357485,39.529591,320 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_10,-74.5846035,39.3751675,320 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_11,-74.649643,39.528996,313 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_11,-74.58533957,39.37513475,313 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_12,-74.64923948,39.52807544,318 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_12,-74.5889199,39.37633016,318 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_13,-74.6494605,39.5267355,311 PENNSYLVANIA AVE,ABSECON CITY,17,1930,2,RES1,3001 -0101_83_13,-74.592056,39.371741,311 PENNSYLVANIA AVE,ABSECON CITY,17,1930,2,RES2,3005 -0101_83_15,-74.6500395,39.524772,305 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_83_15,-74.59027402,39.37083141,305 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_16,-74.6509343,39.52454432,256 E WYOMING AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_83_16,-74.586826,39.370232,256 E WYOMING AVE,ABSECON CITY,17,1940,1,RES1,3001 -0101_83_17,-74.64410916,39.52417506,301 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_17,-74.59304433,39.3810175,301 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_2,-74.63895067,39.524085,604 PITNEY ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_2,-74.53220734,39.40193141,604 PITNEY ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_4,-74.63912989,39.53711276,612 PITNEY ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_4,-74.5336925,39.4002885,612 PITNEY ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_83_5,-74.6397695,39.5340745,616 PITNEY ROAD,ABSECON CITY,17,1910,1,RES1,3001 -0101_83_5,-74.54093518,39.39582628,616 PITNEY ROAD,ABSECON CITY,17,1910,1,RES1,3001 -0101_83_6,-74.63641596,39.53319066,319 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_6,-74.55504866,39.39092935,319 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_7,-74.63767134,39.53257151,324 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_7,-74.553595,39.3886165,324 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_8,-74.63527911,39.53071836,315 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_8,-74.55707287,39.39793232,315 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_9,-74.6382495,39.529943,322 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_83_9,-74.55484052,39.39570638,322 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_1,-74.75781196,39.43038323,252 E WYOMING AVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_84_1,-74.60194606,39.36308974,252 E WYOMING AVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_84_11,-74.80631122,39.37935496,236 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_11,-74.61569944,39.36018168,236 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_12,-74.75780073,39.44942796,253 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,COM4,3004 -0101_84_12,-74.755059,39.3590195,253 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_13,-74.8288605,39.38298903,224 E WYOMING AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_84_13,-74.63370692,39.31933719,224 E WYOMING AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_84_14,-74.75350877,39.44874205,249 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_14,-74.53945599,39.37116167,249 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_16,-74.76192782,39.44559618,243 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_84_16,-74.54716383,39.37662399,243 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_17,-74.83093615,39.3902422,216 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_17,-74.649046,39.3283635,216 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_18,-74.753956,39.45417283,237 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_18,-74.5522,39.374921,237 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_84_19,-74.829696,39.38678,210 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_19,-74.6201485,39.338642,210 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_21,-74.821928,39.3974965,204 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_21,-74.6306975,39.350651,204 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_23,-74.82869005,39.39784368,194 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_23,-74.63281309,39.35025483,194 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_24,-74.70791007,39.47505273,211 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_24,-74.54900392,39.37480989,211 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_25,-74.840028,39.373552,192 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_25,-74.64377137,39.33896839,192 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_26,-74.71347806,39.47196824,205 PENNSYLVANIA AVE,ABSECON CITY,17,1914,2,RES1,3001 -0101_84_26,-74.54323772,39.37450738,205 PENNSYLVANIA AVE,ABSECON CITY,17,1914,2,RES1,3001 -0101_84_27,-74.84011594,39.38063864,184 E WYOMING AVE,ABSECON CITY,17,1928,2,RES1,3001 -0101_84_27,-74.65497652,39.3461698,184 E WYOMING AVE,ABSECON CITY,17,1928,2,GOV1,3004 -0101_84_28,-74.712302,39.4710335,201 PENNSYLVANIA AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_84_28,-74.55124917,39.37449975,201 PENNSYLVANIA AVE,ABSECON CITY,17,1982,1,RES1,3001 -0101_84_29,-74.85011923,39.38811543,180 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_29,-74.6280445,39.3568345,180 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_30,-74.72107442,39.48171507,173 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_30,-74.55156948,39.37388031,173 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_31,-74.82268004,39.41260622,178 E WYOMING AVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_84_31,-74.6275875,39.35287,178 E WYOMING AVE,ABSECON CITY,17,1951,1,RES1,3001 -0101_84_32,-74.71968668,39.4810444,169 PENNSYLVANIA AVE,ABSECON CITY,17,1928,1,RES1,3001 -0101_84_32,-74.54527553,39.37203866,169 PENNSYLVANIA AVE,ABSECON CITY,17,1928,1,RES1,3002 -0101_84_33,-74.83610071,39.42944195,166 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_33,-74.6344509,39.35898568,166 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_36,-74.80319507,39.44160478,165 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_36,-74.5507204,39.37023909,165 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_37,-74.71435897,39.43970684,160 E WYOMING AVE,ABSECON CITY,17,1930,3,RES1,3001 -0101_84_37,-74.63799309,39.36795562,160 E WYOMING AVE,ABSECON CITY,17,1930,3,RES1,3001 -0101_84_38,-74.81951,39.4438005,153 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_38,-74.55247436,39.36963679,153 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_39,-74.7356695,39.4382335,156 E WYOMING AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_84_39,-74.63721784,39.36297017,156 E WYOMING AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_84_4,-74.7567315,39.4529115,265 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_84_4,-74.78246914,39.31335469,265 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_40,-74.80076,39.457897,151 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_40,-74.5384845,39.383671,151 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_41,-74.73483,39.4524765,152 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_41,-74.63452457,39.36185249,152 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_42,-74.79560767,39.46270605,149 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_42,-74.533899,39.3834075,149 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_43,-74.74991454,39.45280481,136 E WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_84_43,-74.6338445,39.361578,136 E WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_84_44,-74.81223817,39.46730057,141 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_44,-74.53959698,39.38318757,141 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_45,-74.74912265,39.45249626,134 E WYOMING AVE,ABSECON CITY,17,1956,1,GOV1,3004 -0101_84_45,-74.65086273,39.35394023,134 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_46,-74.8559061,39.44087005,139 PENNSYLVANIA AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_84_46,-74.5332965,39.382667,139 PENNSYLVANIA AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_84_47,-74.749705,39.447425,120 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_47,-74.67646428,39.34888513,120 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_48.01,-74.7328718,39.46308653,135 PENNSYLVANIA AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_84_48.01,-74.768806,39.316035,135 PENNSYLVANIA AVE,ABSECON CITY,17,1950,1,EDU1,3004 -0101_84_49,-74.750105,39.447216,116 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_49,-74.68370286,39.3579219,116 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_5,-74.7624665,39.431174,248 E WYOMING AVE,ABSECON CITY,17,1939,1,RES1,3001 -0101_84_5,-74.60060411,39.36059971,248 E WYOMING AVE,ABSECON CITY,17,1939,1,RES1,3001 -0101_84_51,-74.711383,39.4658785,112 E WYOMING AVE,ABSECON CITY,17,1930,1,COM1,3004 -0101_84_51,-74.673096,39.3660335,112 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_52,-74.714412,39.464533,104 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_52,-74.69710251,39.35583816,104 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_53,-74.7373049,39.45348873,605 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_53,-74.75126393,39.29937329,605 BAYVIEW DRIVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_54,-74.73749403,39.46759818,613 BAYVIEW DRIVE,ABSECON CITY,17,1929,1,RES1,3001 -0101_84_54,-74.7657049,39.30806236,613 BAYVIEW DRIVE,ABSECON CITY,17,1929,1,RES1,3001 -0101_84_55,-74.73103901,39.46382317,617 BAYVIEW DRIVE,ABSECON CITY,17,1930,2,RES1,3001 -0101_84_55,-74.7640895,39.3073415,617 BAYVIEW DRIVE,ABSECON CITY,17,1930,2,RES1,3001 -0101_84_6,-74.75507586,39.45246627,261 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_6,-74.785604,39.3178675,261 PENNSYLVANIA AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_84_7,-74.81578639,39.371168,244 E WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_84_7,-74.603605,39.360508,244 E WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_84_8,-74.7518405,39.450981,257 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_8,-74.70940241,39.35964528,257 PENNSYLVANIA AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_9,-74.80376634,39.38001333,240 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_84_9,-74.61050642,39.36817178,240 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_1,-74.8409865,39.4526045,337 E WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_85_1,-74.5390795,39.3810485,337 E WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_85_10,-74.84852888,39.48280977,257 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_10,-74.5482765,39.376991,257 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_11,-74.8748375,39.48437,253 E WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_85_11,-74.555433,39.372234,253 E WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_85_12,-74.8509237,39.48756654,245 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_12,-74.56044095,39.37185908,245 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3004 -0101_85_13,-74.8675525,39.497818,243 E WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_85_13,-74.56583168,39.37117131,243 E WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_85_14,-74.867086,39.4964455,241 E WYOMING AVE,ABSECON CITY,17,1949,1,RES1,3001 -0101_85_14,-74.57459177,39.36962245,241 E WYOMING AVE,ABSECON CITY,17,1949,1,RES1,3001 -0101_85_15,-74.882199,39.497041,239 E WYOMING AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_85_15,-74.56733461,39.36896047,239 E WYOMING AVE,ABSECON CITY,17,1974,1,GOV1,3004 -0101_85_16,-74.54916809,39.50475539,237 E WYOMING AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_85_16,-74.54085016,39.39231947,237 E WYOMING AVE,ABSECON CITY,17,1960,1,IND1,3002 -0101_85_17,-74.55166635,39.52234093,221 E WYOMING AVE,ABSECON CITY,17,1930,1,GOV1,3004 -0101_85_17,-74.54083682,39.39150045,221 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_18,-74.53221095,39.5321335,215 E WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_85_18,-74.5328455,39.38907,215 E WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_85_19,-74.5645235,39.5290065,209 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_85_19,-74.53257944,39.3872652,209 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_85_2,-74.86128926,39.44886947,335 E WYOMING AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_85_2,-74.53321303,39.3806737,335 E WYOMING AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_85_20,-74.59429,39.5175115,205 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_85_20,-74.5448607,39.39290543,205 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_85_3,-74.8788385,39.4509955,333 E WYOMING AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_85_3,-74.5362435,39.3792945,333 E WYOMING AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_85_4,-74.847509,39.4645965,331 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_4,-74.533978,39.377836,331 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_5,-74.8355335,39.47229,323 E WYOMING AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_85_5,-74.53248684,39.37692997,323 E WYOMING AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_85_6,-74.8385415,39.481108,319 E WYOMING AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_85_6,-74.54808569,39.38176618,319 E WYOMING AVE,ABSECON CITY,17,1950,1,RES1,3001 -0101_85_7,-74.8081989,39.49535451,315 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_7,-74.54811517,39.37877051,315 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_8,-74.80785452,39.49089778,311 E WYOMING AVE,ABSECON CITY,16,1940,1,RES1,3001 -0101_85_8,-74.54656477,39.37784905,311 E WYOMING AVE,ABSECON CITY,16,1940,1,RES1,3001 -0101_85_9,-74.819109,39.4949145,301 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_85_9,-74.552673,39.3774305,301 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_86_1,-74.57997705,39.53685419,320 PINE ST,ABSECON CITY,17,1952,1,RES1,3001 -0101_86_1,-74.55088545,39.39215815,320 PINE ST,ABSECON CITY,17,1952,1,RES1,3001 -0101_86_10,-74.64063475,39.52427981,304 PINE ST,ABSECON CITY,17,1957,1,RES1,3001 -0101_86_10,-74.55667043,39.39796492,304 PINE ST,ABSECON CITY,17,1957,1,RES1,3001 -0101_86_11,-74.62156239,39.52963157,300 PINE ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_86_11,-74.58889932,39.3727025,300 PINE ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_86_12.02,-74.63691226,39.53599591,311 OAK LANE,ABSECON CITY,17,2000,1,RES1,3001 -0101_86_12.02,-74.58929911,39.37227981,311 OAK LANE,ABSECON CITY,17,2000,1,RES1,3001 -0101_86_14,-74.64042805,39.53545096,305 OAK LANE,ABSECON CITY,17,1970,1,RES1,3001 -0101_86_14,-74.59681727,39.38300031,305 OAK LANE,ABSECON CITY,17,1970,1,REL1,3003 -0101_86_15,-74.63714695,39.53183784,303 OAK LANE,ABSECON CITY,17,1989,1,COM1,3004 -0101_86_15,-74.59655706,39.37985879,303 OAK LANE,ABSECON CITY,17,1989,1,RES1,3001 -0101_86_16,-74.64011,39.530557,511 SYCAMORE AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_86_16,-74.59104122,39.37876604,511 SYCAMORE AVE,ABSECON CITY,17,1960,1,GOV1,3004 -0101_86_2,-74.59735383,39.52393749,508 PITNEY ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_86_2,-74.54269157,39.39134934,508 PITNEY ROAD,ABSECON CITY,17,1952,1,RES1,3001 -0101_86_3,-74.61622373,39.53773071,510 PITNEY ROAD,ABSECON CITY,17,1953,1,GOV1,3004 -0101_86_3,-74.542964,39.389317,510 PITNEY ROAD,ABSECON CITY,17,1953,1,RES1,3001 -0101_86_4,-74.573019,39.5558365,318 PINE ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_86_4,-74.53814792,39.3963553,318 PINE ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_86_5,-74.63637141,39.50969964,316 PINE ST,ABSECON CITY,17,1950,1,RES1,3001 -0101_86_5,-74.5445268,39.39703072,316 PINE ST,ABSECON CITY,17,1950,1,RES1,3001 -0101_86_6,-74.63481872,39.51539369,314 PINE ST,ABSECON CITY,17,1949,1,COM1,3004 -0101_86_6,-74.55435737,39.39184448,314 PINE ST,ABSECON CITY,17,1949,1,RES1,3001 -0101_86_7,-74.6266485,39.5294485,312 PINE ST,ABSECON CITY,17,1959,1,RES1,3001 -0101_86_7,-74.55322839,39.3887194,312 PINE ST,ABSECON CITY,17,1959,1,RES1,3001 -0101_86_8,-74.62957747,39.5243758,310 PINE ST,ABSECON CITY,17,1954,1,RES1,3001 -0101_86_8,-74.56747127,39.38853442,310 PINE ST,ABSECON CITY,17,1954,1,RES1,3001 -0101_86_9,-74.63923556,39.52638965,308 PINE ST,ABSECON CITY,17,1954,1,RES1,3001 -0101_86_9,-74.56989272,39.38671064,308 PINE ST,ABSECON CITY,17,1954,1,RES1,3001 -0101_87_1,-74.5998695,39.3138655,500 SYCAMORE AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_87_1,-74.4699595,39.341732,500 SYCAMORE AVE,ABSECON CITY,17,1952,1,RES1,3001 -0101_87_10.01,-74.58521883,39.32247762,52 SHADY LANE,ABSECON CITY,17,1930,2,RES1,3001 -0101_87_10.01,-74.48247046,39.33885405,52 SHADY LANE,ABSECON CITY,17,1930,2,RES1,3001 -0101_87_11,-74.59318167,39.32418708,48 SHADY LANE,ABSECON CITY,17,1935,1,RES1,3001 -0101_87_11,-74.4848565,39.3357505,48 SHADY LANE,ABSECON CITY,17,1935,1,RES1,3001 -0101_87_12,-74.59512231,39.31768166,44 SHADY LANE,ABSECON CITY,17,1910,1,RES1,3001 -0101_87_12,-74.4857185,39.335032,44 SHADY LANE,ABSECON CITY,17,1910,1,RES1,3001 -0101_87_13,-74.58601162,39.33190999,40 SHADY LANE,ABSECON CITY,17,1935,1,RES1,3001 -0101_87_13,-74.48264657,39.33480842,40 SHADY LANE,ABSECON CITY,17,1935,1,RES1,3001 -0101_87_14,-74.58304611,39.33041918,36 SHADY LANE,ABSECON CITY,17,1928,1,RES1,3001 -0101_87_14,-74.484133,39.3348515,36 SHADY LANE,ABSECON CITY,17,1928,1,RES1,3001 -0101_87_15,-74.5839125,39.3286705,411 LILLIAN ST,ABSECON CITY,17,1935,1,RES1,3001 -0101_87_15,-74.46733628,39.34571623,411 LILLIAN ST,ABSECON CITY,17,1935,1,RES1,3001 -0101_87_16,-74.589372,39.3291505,415 LILLIAN ST,ABSECON CITY,17,1935,1,RES1,3001 -0101_87_16,-74.47019801,39.34425684,415 LILLIAN ST,ABSECON CITY,17,1935,1,RES1,3001 -0101_87_17,-74.5924936,39.32888235,417 LILLIAN ST,ABSECON CITY,17,1940,1,RES1,3001 -0101_87_17,-74.472106,39.343985,417 LILLIAN ST,ABSECON CITY,17,1940,1,RES1,3001 -0101_87_2,-74.59838111,39.31375182,512 SYCAMORE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_87_2,-74.47455985,39.33980532,512 SYCAMORE AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_87_3,-74.607699,39.311071,520 SYCAMORE AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_87_3,-74.48267575,39.34175867,520 SYCAMORE AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_87_4.01,-74.61489283,39.3172961,209 OAK LANE,ABSECON CITY,17,1983,1,RES1,3001 -0101_87_4.01,-74.4823125,39.340703,209 OAK LANE,ABSECON CITY,17,1983,1,RES1,3001 -0101_87_4.02,-74.611855,39.316401,207 OAK LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_87_4.02,-74.47687563,39.34050477,207 OAK LANE,ABSECON CITY,17,1985,1,RES1,3001 -0101_87_5,-74.60960934,39.31609351,205 OAK LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_87_5,-74.4819865,39.3402725,205 OAK LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_87_6,-74.58549164,39.3254372,203 OAK LANE,ABSECON CITY,17,1986,1,GOV1,3004 -0101_87_6,-74.48330862,39.34016916,203 OAK LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_87_8,-74.5851435,39.3252295,64 SHADY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_87_8,-74.4839685,39.33983,64 SHADY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_87_9,-74.58446585,39.32451051,60 SHADY LANE,ABSECON CITY,17,1939,1,RES1,3001 -0101_87_9,-74.48229239,39.33981081,60 SHADY LANE,ABSECON CITY,17,1939,1,RES1,3001 -0101_88_1,-74.59278508,39.32753655,32 SHADY LANE,ABSECON CITY,17,1935,1,RES1,3001 -0101_88_1,-74.46701161,39.34344747,32 SHADY LANE,ABSECON CITY,17,1935,1,RES1,3001 -0101_88_2,-74.590118,39.326543,416 LILLIAN ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_88_2,-74.48680134,39.34974754,416 LILLIAN ST,ABSECON CITY,17,1920,1,RES1,3001 -0101_88_3,-74.5916365,39.3263505,411 RICHMOND CIRCLE,ABSECON CITY,17,1966,1,RES1,3001 -0101_88_3,-74.4794025,39.348287,411 RICHMOND CIRCLE,ABSECON CITY,17,1966,1,RES1,3001 -0101_88_4,-74.60331259,39.32479206,415 RICHMOND CIRCLE,ABSECON CITY,17,1907,1,RES1,3001 -0101_88_4,-74.4832455,39.3482805,415 RICHMOND CIRCLE,ABSECON CITY,17,1907,1,RES1,3001 -0101_88_5,-74.607512,39.3245865,409 RICHMOND CIRCLE,ABSECON CITY,17,1925,1,RES1,3001 -0101_88_5,-74.48721317,39.34808294,409 RICHMOND CIRCLE,ABSECON CITY,17,1925,1,RES1,3001 -0101_88_6,-74.60398084,39.32352749,28 SHADY LANE,ABSECON CITY,17,1930,1,RES3A,3001 -0101_88_6,-74.47935489,39.34772534,28 SHADY LANE,ABSECON CITY,17,1930,1,RES1,3001 -0101_89_1,-74.60799112,39.32326132,189 E WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_89_1,-74.48128271,39.34737055,189 E WYOMING AVE,ABSECON CITY,17,1925,1,RES1,3001 -0101_89_11,-74.80398468,39.62895842,141 E WYOMING AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_89_11,-74.62080498,39.38149404,141 E WYOMING AVE,ABSECON CITY,17,1927,1,RES1,3001 -0101_89_12,-74.8116785,39.6292885,137 E WYOMING AVE,ABSECON CITY,17,1941,1,RES1,3001 -0101_89_12,-74.62997227,39.38061384,137 E WYOMING AVE,ABSECON CITY,17,1941,1,RES1,3001 -0101_89_13,-74.8157248,39.62514181,117 E WYOMING AVE,ABSECON CITY,17,1933,1,RES1,3001 -0101_89_13,-74.6399165,39.3828195,117 E WYOMING AVE,ABSECON CITY,17,1933,1,RES1,3001 -0101_89_14,-74.8055112,39.63938436,115 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_89_14,-74.63710265,39.38220351,115 E WYOMING AVE,ABSECON CITY,17,1956,1,RES1,3001 -0101_89_15,-74.799863,39.63546,105 E WYOMING AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_89_15,-74.6452326,39.37278721,105 E WYOMING AVE,ABSECON CITY,17,1920,1,RES1,3001 -0101_89_16,-74.80121188,39.63485136,533 N SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_89_16,-74.65250995,39.37180334,533 N SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_89_17,-74.80136769,39.63377869,104 LINDEN PLACE,ABSECON CITY,17,1964,1,RES1,3001 -0101_89_17,-74.6525955,39.370439,104 LINDEN PLACE,ABSECON CITY,17,1964,1,RES1,3001 -0101_89_18,-74.7952597,39.63356626,108 LINDEN PLACE,ABSECON CITY,17,1962,1,RES1,3001 -0101_89_18,-74.6449345,39.3784835,108 LINDEN PLACE,ABSECON CITY,17,1962,1,RES1,3001 -0101_89_19,-74.80166818,39.63354271,417 RICHMOND CIRCLE,ABSECON CITY,17,1890,1,RES1,3001 -0101_89_19,-74.62700957,39.39343274,417 RICHMOND CIRCLE,ABSECON CITY,17,1890,1,RES1,3001 -0101_89_2,-74.6050816,39.32192668,181 E WYOMING AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_89_2,-74.48341891,39.34655615,181 E WYOMING AVE,ABSECON CITY,17,1900,1,RES1,3001 -0101_89_20.01,-74.79743922,39.63236017,7 STONE CIRCLE,ABSECON CITY,17,1933,1,RES1,3001 -0101_89_20.01,-74.6265795,39.3928865,7 STONE CIRCLE,ABSECON CITY,17,1933,1,RES1,3001 -0101_89_20.02,-74.803135,39.632217,418 RICHMOND CIRCLE,ABSECON CITY,17,1984,1,RES1,3001 -0101_89_20.02,-74.6387315,39.4017665,418 RICHMOND CIRCLE,ABSECON CITY,17,1984,1,RES1,3001 -0101_89_21,-74.80889234,39.63953317,419 RICHMOND CIRCLE,ABSECON CITY,17,1928,1,RES1,3001 -0101_89_21,-74.6388165,39.400364,419 RICHMOND CIRCLE,ABSECON CITY,17,1928,1,RES1,3001 -0101_89_22,-74.8081066,39.63699513,6 STONE CIRCLE,ABSECON CITY,17,1930,1,RES1,3001 -0101_89_22,-74.637974,39.399833,6 STONE CIRCLE,ABSECON CITY,17,1930,1,RES1,3001 -0101_89_23,-74.815407,39.635572,5 STONE CIRCLE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_23,-74.6451425,39.391231,5 STONE CIRCLE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_24,-74.81284557,39.6355257,4 STONE CIRCLE,ABSECON CITY,17,1925,1,RES1,3001 -0101_89_24,-74.64471474,39.39108078,4 STONE CIRCLE,ABSECON CITY,17,1925,1,RES1,3001 -0101_89_25,-74.807517,39.635264,3 STONE CIRCLE,ABSECON CITY,17,1925,1,RES1,3001 -0101_89_25,-74.656115,39.4019885,3 STONE CIRCLE,ABSECON CITY,17,1925,1,RES1,3001 -0101_89_26,-74.81136343,39.63519666,410 RICHMOND CIRCLE,ABSECON CITY,17,1954,1,RES1,3001 -0101_89_26,-74.67033005,39.37556016,410 RICHMOND CIRCLE,ABSECON CITY,17,1954,1,RES1,3001 -0101_89_27.01,-74.81192219,39.63387518,22 SHADY LANE,ABSECON CITY,16,1952,1,RES1,3001 -0101_89_27.01,-74.67176665,39.37841342,22 SHADY LANE,ABSECON CITY,16,1952,1,GOV1,3004 -0101_89_28.01,-74.81688533,39.63320199,405 N SHORE RD,ABSECON CITY,17,1945,1,RES1,3001 -0101_89_28.01,-74.669045,39.3854305,405 N SHORE RD,ABSECON CITY,17,1945,1,RES1,3001 -0101_89_28.02,-74.80881287,39.63255416,409 N SHORE RD,ABSECON CITY,17,1980,1,GOV1,3004 -0101_89_28.02,-74.6832345,39.3935555,409 N SHORE RD,ABSECON CITY,17,1980,1,RES1,3004 -0101_89_29.01,-74.82695295,39.62667615,411 N SHORE RD,ABSECON CITY,17,1992,1,RES1,3001 -0101_89_29.01,-74.67647667,39.38835198,411 N SHORE RD,ABSECON CITY,17,1992,1,RES1,3001 -0101_89_29.02,-74.82485527,39.62590973,415 N SHORE ROAD,ABSECON CITY,17,1982,1,RES1,3001 -0101_89_29.02,-74.66517016,39.39682095,415 N SHORE ROAD,ABSECON CITY,17,1982,1,RES1,3001 -0101_89_3,-74.61285067,39.32553802,173 E WYOMING AVE,ABSECON CITY,17,1931,1,RES1,3001 -0101_89_3,-74.48173068,39.34638245,173 E WYOMING AVE,ABSECON CITY,17,1931,1,GOV1,3004 -0101_89_30.01,-74.5329665,39.3866755,1 STONE CIRCLE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_30.01,-74.51492,39.3950855,1 STONE CIRCLE,ABSECON CITY,17,1935,1,EDU1,3004 -0101_89_30.02,-74.5334135,39.386391,425 N SHORE ROAD,ABSECON CITY,17,1900,1,RES1,3001 -0101_89_30.02,-74.517071,39.39432,425 N SHORE ROAD,ABSECON CITY,17,1900,1,RES1,3001 -0101_89_30.03,-74.544394,39.3917305,2 STONE CIRCLE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_30.03,-74.52259515,39.39758233,2 STONE CIRCLE,ABSECON CITY,17,1935,1,COM1,3004 -0101_89_31,-74.54884319,39.38877249,435 N SHORE ROAD,ABSECON CITY,17,1900,1,GOV1,3004 -0101_89_31,-74.5291765,39.3966355,435 N SHORE ROAD,ABSECON CITY,17,1900,1,RES1,3001 -0101_89_32,-74.54323284,39.38533948,441 N SHORE RD,ABSECON CITY,17,1890,1,RES3A,3001 -0101_89_32,-74.52574105,39.39660185,441 N SHORE RD,ABSECON CITY,17,1890,1,GOV1,3004 -0101_89_33,-74.5461215,39.399347,107 CHEROKEE LANE,ABSECON CITY,17,1971,1,RES1,3001 -0101_89_33,-74.52137865,39.39605213,107 CHEROKEE LANE,ABSECON CITY,17,1971,1,RES1,3001 -0101_89_34,-74.54763898,39.39508881,105 CHEROKEE LANE,ABSECON CITY,17,1970,1,RES1,3001 -0101_89_34,-74.52612068,39.39609202,105 CHEROKEE LANE,ABSECON CITY,17,1970,1,RES1,3001 -0101_89_35,-74.561611,39.3894,103 CHEROKEE LANE,ABSECON CITY,17,1971,1,RES1,3001 -0101_89_35,-74.520701,39.3958255,103 CHEROKEE LANE,ABSECON CITY,17,1971,1,RES1,3004 -0101_89_36,-74.5579905,39.39811666,101 CHEROKEE LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_89_36,-74.48528983,39.43094995,101 CHEROKEE LANE,ABSECON CITY,17,1960,1,RES1,3001 -0101_89_37,-74.55871061,39.39746675,106 CHEROKEE LANE,ABSECON CITY,17,1967,1,RES1,3001 -0101_89_37,-74.5055645,39.4097905,106 CHEROKEE LANE,ABSECON CITY,17,1967,1,RES1,3001 -0101_89_38,-74.55738872,39.39724186,104 CHEROKEE LANE,ABSECON CITY,17,1971,1,GOV1,3004 -0101_89_38,-74.50083906,39.40882783,104 CHEROKEE LANE,ABSECON CITY,17,1971,1,RES1,3001 -0101_89_39,-74.580965,39.371284,102 CHEROKEE LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_89_39,-74.49393752,39.4159886,102 CHEROKEE LANE,ABSECON CITY,17,1975,1,REL1,3004 -0101_89_4,-74.612251,39.324046,169 E WYOMING AVE,ABSECON CITY,17,1930,1,RES3A,3001 -0101_89_4,-74.48293093,39.34450168,169 E WYOMING AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_89_40,-74.589325,39.376567,501 N SHORE ROAD,ABSECON CITY,17,1928,1,RES1,3001 -0101_89_40,-74.50746358,39.41918429,501 N SHORE ROAD,ABSECON CITY,17,1928,1,RES1,3001 -0101_89_41,-74.59585256,39.37362697,505 N SHORE ROAD,ABSECON CITY,17,1949,1,RES1,3001 -0101_89_41,-74.50482095,39.41580267,505 N SHORE ROAD,ABSECON CITY,17,1949,1,RES1,3001 -0101_89_42,-74.58765029,39.37229964,507 N SHORE ROAD,ABSECON CITY,17,1965,1,RES3A,3001 -0101_89_42,-74.512878,39.4061585,507 N SHORE ROAD,ABSECON CITY,17,1965,1,RES1,3001 -0101_89_45.01,-74.58965274,39.37226112,161 E WYOMING AVE,ABSECON CITY,17,1991,1,RES1,3001 -0101_89_45.01,-74.52075634,39.40674417,161 E WYOMING AVE,ABSECON CITY,17,1991,1,RES1,3001 -0101_89_45.02,-74.59148,39.382355,159 E WYOMING AVE,ABSECON CITY,17,2002,1,RES1,3001 -0101_89_45.02,-74.52787922,39.40330734,159 E WYOMING AVE,ABSECON CITY,17,2002,1,GOV1,3004 -0101_89_5,-74.61033676,39.31808178,165 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_5,-74.4469355,39.3589645,165 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_6,-74.60376066,39.33179099,157 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3004 -0101_89_6,-74.4524195,39.357445,157 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_7,-74.60053252,39.32784033,151 E WYOMING AVE,ABSECON CITY,17,1945,1,RES1,3001 -0101_89_7,-74.452454,39.3528965,151 E WYOMING AVE,ABSECON CITY,17,1945,1,RES1,3001 -0101_89_8,-74.60392348,39.32714238,149 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_8,-74.45387,39.352677,149 E WYOMING AVE,ABSECON CITY,17,1935,1,RES1,3001 -0101_89_9,-74.80433615,39.62944746,145 E WYOMING AVE,ABSECON CITY,17,1933,1,GOV1,3004 -0101_89_9,-74.62134355,39.38252651,145 E WYOMING AVE,ABSECON CITY,17,1933,1,RES1,3001 -0101_9.01_1,-74.6373055,39.38241,212 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_9.01_1,-74.50304724,39.50235153,212 HOBART AVE,ABSECON CITY,17,1954,1,RES3B,3001 -0101_9.01_10,-74.63021822,39.39049922,202 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_9.01_10,-74.5011243,39.52691535,202 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_9.01_11,-74.6378965,39.390272,200 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_9.01_11,-74.50149236,39.52558021,200 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_9.01_2,-74.64332383,39.38354749,808 OAKHURST AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_9.01_2,-74.49985187,39.50111167,808 OAKHURST AVE,ABSECON CITY,17,1930,1,RES1,3001 -0101_9.01_3,-74.64133719,39.37828297,810 OAKHURST AVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_9.01_3,-74.50283673,39.50071353,810 OAKHURST AVE,ABSECON CITY,17,1976,1,RES1,3001 -0101_9.01_5,-74.6229715,39.3933395,263 CONNECTICUT AVE,ABSECON CITY,17,2008,1,RES1,3001 -0101_9.01_5,-74.499065,39.4990215,263 CONNECTICUT AVE,ABSECON CITY,17,2008,1,RES1,3001 -0101_9.01_6,-74.630717,39.3922995,210 HOBART AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_9.01_6,-74.49974709,39.49831287,210 HOBART AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_9.01_7,-74.630311,39.391143,208 HOBART AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_9.01_7,-74.48936775,39.51548128,208 HOBART AVE,ABSECON CITY,17,1953,1,RES1,3001 -0101_9.01_8,-74.63057419,39.39008042,206 HOBART AVE,ABSECON CITY,17,1954,1,RES1,3001 -0101_9.01_8,-74.495765,39.5387425,206 HOBART AVE,ABSECON CITY,17,1954,1,RES3B,3001 -0101_9.01_9,-74.63157893,39.39078227,204 HOBART AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_9.01_9,-74.50798791,39.51835434,204 HOBART AVE,ABSECON CITY,17,1959,1,RES1,3001 -0101_9.02_3.02,-74.359512,39.41564297,7 STONEYBROOK DR,ABSECON CITY,,0,1,RES1,3001 -0101_9.02_3.02,-74.9541245,39.4977535,7 STONEYBROOK DR,ABSECON CITY,,0,1,RES1,3001 -0101_9.02_5,-74.5051524,39.49356128,986 PITNEY ROAD,ABSECON CITY,17,1949,1,RES1,3001 -0101_9.02_5,-74.51353017,39.32548598,986 PITNEY ROAD,ABSECON CITY,17,1949,1,RES1,3001 -0101_9.02_7.01,-74.5075675,39.492583,106 HILLSIDE AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_9.02_7.01,-74.511725,39.32501462,106 HILLSIDE AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_9.02_7.02,-74.50846262,39.48936805,104 HILLSIDE AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_9.02_7.02,-74.51782887,39.32468984,104 HILLSIDE AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_9.02_7.03,-74.50284264,39.4886267,102 HILLSIDE AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_9.02_7.03,-74.5153945,39.3230945,102 HILLSIDE AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_9.02_7.04,-74.45481,39.4973455,205 DAVIS AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_9.02_7.04,-74.46592333,39.34727952,205 DAVIS AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_9.02_7.05,-74.357815,39.4143215,211 DAVIS AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_9.02_7.05,-74.88345695,39.50541746,211 DAVIS AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_90_1,-74.6475715,39.5280195,400 PITNEY ROAD,ABSECON CITY,17,1935,1,RES1,3001 -0101_90_1,-74.59399978,39.37711446,400 PITNEY ROAD,ABSECON CITY,17,1935,1,RES1,3001 -0101_90_10,-74.64793968,39.52986535,308 SPRUCE STREET,ABSECON CITY,17,1958,1,RES1,3004 -0101_90_10,-74.6014795,39.37856,308 SPRUCE STREET,ABSECON CITY,17,1958,1,RES1,3001 -0101_90_11,-74.6680115,39.516616,306 SPRUCE STREET,ABSECON CITY,17,1955,1,RES1,3001 -0101_90_11,-74.602856,39.390835,306 SPRUCE STREET,ABSECON CITY,17,1955,1,RES1,3001 -0101_90_12,-74.62334168,39.54339303,304 SPRUCE ST,ABSECON CITY,17,1957,1,COM1,3004 -0101_90_12,-74.6008255,39.3859865,304 SPRUCE ST,ABSECON CITY,17,1957,1,RES1,3002 -0101_90_14,-74.6230685,39.540251,319 PINE STREET,ABSECON CITY,17,1954,1,RES1,3001 -0101_90_14,-74.60881893,39.3919016,319 PINE STREET,ABSECON CITY,17,1954,1,RES1,3001 -0101_90_15,-74.65095833,39.5448465,317 PINE ST,ABSECON CITY,17,1954,1,RES1,3001 -0101_90_15,-74.60819008,39.39173822,317 PINE ST,ABSECON CITY,17,1954,1,RES3B,3001 -0101_90_16,-74.6491175,39.541297,315 PINE STREET,ABSECON CITY,17,1954,1,RES1,3001 -0101_90_16,-74.61550277,39.39148104,315 PINE STREET,ABSECON CITY,17,1954,1,RES1,3001 -0101_90_17,-74.647539,39.549742,313 PINE STREET,ABSECON CITY,17,1955,1,RES1,3001 -0101_90_17,-74.60994133,39.39037182,313 PINE STREET,ABSECON CITY,17,1955,1,GOV1,3004 -0101_90_18,-74.7069,39.57165,311 PINE ST,ABSECON CITY,17,1957,1,RES1,3001 -0101_90_18,-74.61233556,39.3992723,311 PINE ST,ABSECON CITY,17,1957,1,IND1,3002 -0101_90_19,-74.70544612,39.57083942,307 PINE ST,ABSECON CITY,17,1954,1,RES1,3001 -0101_90_19,-74.53622948,39.41059783,307 PINE ST,ABSECON CITY,17,1954,1,GOV1,3004 -0101_90_2,-74.64337978,39.5270842,404 PITNEY ROAD,ABSECON CITY,16,1930,1,RES1,3001 -0101_90_2,-74.60507281,39.37003734,404 PITNEY ROAD,ABSECON CITY,16,1930,1,RES1,3001 -0101_90_20,-74.61872835,39.62059294,305 PINE STREET,ABSECON CITY,17,1954,1,RES1,3001 -0101_90_20,-74.55877514,39.40365029,305 PINE STREET,ABSECON CITY,17,1954,1,RES1,3001 -0101_90_21,-74.702848,39.5764385,301 PINE ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_90_21,-74.5737545,39.40931845,301 PINE ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_90_3,-74.641402,39.5261125,414 PITNEY ROAD,ABSECON CITY,17,1929,1,RES1,3001 -0101_90_3,-74.60284639,39.36878645,414 PITNEY ROAD,ABSECON CITY,17,1929,1,RES1,3001 -0101_90_4,-74.64806597,39.52525884,500 PITNEY RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_90_4,-74.5981,39.3685055,500 PITNEY RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_90_5,-74.65341665,39.52345347,320 SPRUCE ST,ABSECON CITY,17,1991,1,RES1,3001 -0101_90_5,-74.61694022,39.37654869,320 SPRUCE ST,ABSECON CITY,17,1991,1,RES1,3001 -0101_90_6,-74.6435168,39.53517643,316 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_90_6,-74.603443,39.384728,316 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_90_7,-74.64224041,39.53303015,314 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_90_7,-74.60104043,39.3814878,314 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_90_8,-74.64552685,39.53264996,312 SPRUCE ST,ABSECON CITY,17,1953,1,RES1,3001 -0101_90_8,-74.600737,39.380483,312 SPRUCE ST,ABSECON CITY,17,1953,1,RES3A,3001 -0101_90_9,-74.64628488,39.53124866,310 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_90_9,-74.59725471,39.37961654,310 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_1,-74.70307825,39.57434336,300 PITNEY ROAD,ABSECON CITY,17,1953,1,RES1,3001 -0101_91_1,-74.56227534,39.41646355,300 PITNEY ROAD,ABSECON CITY,17,1953,1,RES1,3001 -0101_91_10,-74.71027385,39.57166046,130 W FAUNCE LANDING RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_91_10,-74.55357765,39.43616159,130 W FAUNCE LANDING RD,ABSECON CITY,17,1930,1,RES1,3001 -0101_91_11,-74.84056624,39.52686593,126 W FAUNCE LANDING RD,ABSECON CITY,17,1956,1,RES1,3001 -0101_91_11,-74.57259731,39.42980569,126 W FAUNCE LANDING RD,ABSECON CITY,17,1956,1,RES1,3001 -0101_91_13,-74.53437747,39.30462693,319 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_13,-74.45654699,39.34950369,319 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_14,-74.5373395,39.313288,317 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_14,-74.464806,39.3488295,317 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_15,-74.58071909,39.31315039,315 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_15,-74.46246967,39.348432,315 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_16,-74.5930515,39.315862,313 SPRUCE STREET,ABSECON CITY,17,1957,1,RES3A,3001 -0101_91_16,-74.464949,39.3472625,313 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_17,-74.60664914,39.30780463,311 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_17,-74.4639965,39.3460285,311 SPRUCE STREET,ABSECON CITY,17,1957,1,RES3A,3001 -0101_91_18,-74.607234,39.316712,309 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_18,-74.4730445,39.3424325,309 SPRUCE STREET,ABSECON CITY,17,1957,1,RES1,3001 -0101_91_19,-74.6029565,39.3150495,305 SPRUCE STREET,ABSECON CITY,17,1954,1,RES1,3001 -0101_91_19,-74.47212784,39.3422265,305 SPRUCE STREET,ABSECON CITY,17,1954,1,RES3A,3001 -0101_91_2,-74.6934035,39.5837325,312 PITNEY RD,ABSECON CITY,45,1947,3,RES1,3001 -0101_91_2,-74.56014791,39.41529965,312 PITNEY RD,ABSECON CITY,45,1947,3,RES1,3001 -0101_91_3,-74.70086281,39.58670729,314 PITNEY ROAD,ABSECON CITY,17,1954,1,COM4,3004 -0101_91_3,-74.5615115,39.410837,314 PITNEY ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_91_4,-74.69442383,39.59059999,316 PITNEY ROAD,ABSECON CITY,17,1954,1,GOV1,3004 -0101_91_4,-74.56636765,39.41788047,316 PITNEY ROAD,ABSECON CITY,17,1954,1,RES1,3001 -0101_91_5,-74.625778,39.6094785,318 PITNEY ROAD,ABSECON CITY,17,1963,1,COM1,3004 -0101_91_5,-74.57354805,39.41421794,318 PITNEY ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_91_6,-74.627267,39.6172605,140 W FAUNCE LANDING RD,ABSECON CITY,17,1953,1,RES1,3001 -0101_91_6,-74.56782192,39.4123023,140 W FAUNCE LANDING RD,ABSECON CITY,17,1953,1,RES1,3001 -0101_91_7,-74.631835,39.6197855,138 W FAUNCE LANDING RD,ABSECON CITY,17,1954,1,RES1,3001 -0101_91_7,-74.55141137,39.42175232,138 W FAUNCE LANDING RD,ABSECON CITY,17,1954,1,RES1,3001 -0101_91_8,-74.67734512,39.60929553,136 W FAUNCE LANDING RD,ABSECON CITY,17,1954,1,RES1,3001 -0101_91_8,-74.56175817,39.42720083,136 W FAUNCE LANDING RD,ABSECON CITY,17,1954,1,RES1,3001 -0101_91_9,-74.78791165,39.52963644,134 W FAUNCE LANDING RD,ABSECON CITY,17,1954,1,RES1,3001 -0101_91_9,-74.57451616,39.42616632,134 W FAUNCE LANDING RD,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_1,-74.59995922,39.3699242,301 N SHORE ROAD,ABSECON CITY,17,1885,1,RES1,3001 -0101_92_1,-74.50943516,39.41920679,301 N SHORE ROAD,ABSECON CITY,17,1885,1,RES1,3001 -0101_92_10,-74.60771084,39.3896197,29 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_10,-74.4938665,39.4329065,29 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_11,-74.60839037,39.39177219,23 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_11,-74.4894404,39.43223649,23 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_12,-74.6090306,39.38702051,21 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_12,-74.500039,39.431325,21 SHADY LANE,ABSECON CITY,17,1954,1,RES3A,3001 -0101_92_13,-74.54766584,39.40409297,17 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_13,-74.5017725,39.4299155,17 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_14,-74.53840314,39.41156342,15 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3001 -0101_92_14,-74.50475706,39.42907667,15 SHADY LANE,ABSECON CITY,17,1954,1,RES1,3002 -0101_92_15,-74.5638295,39.40924,11 SHADY LANE,ABSECON CITY,17,1956,1,RES1,3001 -0101_92_15,-74.4388068,39.49290242,11 SHADY LANE,ABSECON CITY,17,1956,1,RES1,3001 -0101_92_16,-74.82531382,39.62561851,9 SHADY LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_92_16,-74.62983417,39.40972598,9 SHADY LANE,ABSECON CITY,17,1975,1,RES1,3001 -0101_92_17,-74.83032773,39.62426665,5 SHADY LANE,ABSECON CITY,17,1973,1,RES1,3002 -0101_92_17,-74.6259975,39.41733,5 SHADY LANE,ABSECON CITY,17,1973,1,RES1,3001 -0101_92_18,-74.817384,39.6329555,1 SHADY LANE,ABSECON CITY,17,1957,1,RES1,3001 -0101_92_18,-74.62936515,39.41518217,1 SHADY LANE,ABSECON CITY,17,1957,1,RES1,3001 -0101_92_19,-74.85014191,39.60722523,357 N SHORE ROAD,ABSECON CITY,17,1968,1,RES1,3001 -0101_92_19,-74.63317902,39.41619654,357 N SHORE ROAD,ABSECON CITY,17,1968,1,RES1,3001 -0101_92_2,-74.5972895,39.368747,333 N SHORE ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_92_2,-74.513112,39.417811,333 N SHORE ROAD,ABSECON CITY,17,1960,1,RES1,3001 -0101_92_20,-74.85147476,39.60601009,355 N SHORE ROAD,ABSECON CITY,17,1969,1,RES1,3001 -0101_92_20,-74.65405907,39.40675223,355 N SHORE ROAD,ABSECON CITY,17,1969,1,RES1,3002 -0101_92_21,-74.8894012,39.45829653,353 N SHORE RD,ABSECON CITY,17,1970,1,RES1,3001 -0101_92_21,-74.65446753,39.40348931,353 N SHORE RD,ABSECON CITY,17,1970,1,RES1,3002 -0101_92_3.01,-74.61583058,39.3722595,347 N SHORE ROAD,ABSECON CITY,17,1953,1,RES1,3001 -0101_92_3.01,-74.51289351,39.41453132,347 N SHORE ROAD,ABSECON CITY,17,1953,1,RES1,3001 -0101_92_3.02,-74.612838,39.370058,345 N SHORE ROAD,ABSECON CITY,17,2009,1,RES1,3001 -0101_92_3.02,-74.53066926,39.41824255,345 N SHORE ROAD,ABSECON CITY,17,2009,1,RES1,3001 -0101_92_4,-74.61141058,39.36962322,351 N SHORE RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_92_4,-74.4898315,39.426539,351 N SHORE RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_92_5.02,-74.61341416,39.36871619,45 SHADY LANE,ABSECON CITY,17,1957,1,RES1,3001 -0101_92_5.02,-74.496795,39.424505,45 SHADY LANE,ABSECON CITY,17,1957,1,RES1,3001 -0101_92_6,-74.60489377,39.38431004,37 SHADY LANE,ABSECON CITY,17,1958,1,RES1,3001 -0101_92_6,-74.4907805,39.4198545,37 SHADY LANE,ABSECON CITY,17,1958,1,RES1,3001 -0101_92_7,-74.6012919,39.3829287,35 SHADY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_92_7,-74.49956884,39.41949501,35 SHADY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_92_8,-74.61912929,39.379095,33 SHADY LANE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_92_8,-74.489375,39.434288,33 SHADY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_92_9,-74.6020517,39.39097727,31 SHADY LANE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_92_9,-74.49603314,39.43332196,31 SHADY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_93.01_16.01,-74.893437,39.528844,13 CORDOVA DRIVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_93.01_16.01,-74.68766,39.4165035,13 CORDOVA DRIVE,ABSECON CITY,17,1980,1,RES1,3001 -0101_93.01_16.02,-74.923611,39.512347,15 CORDOVA DR,ABSECON CITY,17,1980,1,RES1,3001 -0101_93.01_16.02,-74.64391453,39.43480582,15 CORDOVA DR,ABSECON CITY,17,1980,1,RES1,3001 -0101_93.01_16.03,-74.8543395,39.6012675,4 JULIANNA DRIVE,ABSECON CITY,17,1997,1,RES3A,3001 -0101_93.01_16.03,-74.66004553,39.40369686,4 JULIANNA DRIVE,ABSECON CITY,17,1997,1,RES3A,3001 -0101_93.01_16.05,-74.87959901,39.59510061,8 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93.01_16.05,-74.661831,39.402894,8 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93.01_16.06,-74.875864,39.5939593,10 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93.01_16.06,-74.64443382,39.41127538,10 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93.01_16.07,-74.88142542,39.59201097,12 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93.01_16.07,-74.65728195,39.41705769,12 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93.01_16.08,-74.86911866,39.59879196,14 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93.01_16.08,-74.620743,39.424089,14 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93.01_22,-74.8319225,39.599754,7 CORDOVA DRIVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_93.01_22,-74.6233221,39.4117973,7 CORDOVA DRIVE,ABSECON CITY,17,1972,1,RES1,3001 -0101_93.01_23,-74.90767711,39.52824113,9 CORDOVA DR,ABSECON CITY,17,1960,1,RES1,3001 -0101_93.01_23,-74.687755,39.413615,9 CORDOVA DR,ABSECON CITY,17,1960,1,RES3A,3001 -0101_93.01_24,-74.90444566,39.534131,11 CORDOVA DRIVE,ABSECON CITY,17,1968,1,RES1,3001 -0101_93.01_24,-74.69024219,39.41632906,11 CORDOVA DRIVE,ABSECON CITY,17,1968,1,RES1,3002 -0101_93_1.01,-74.88215721,39.60245708,302 N SHORE RD,ABSECON CITY,17,1900,1,RES3A,3001 -0101_93_1.01,-74.62824731,39.42392793,302 N SHORE RD,ABSECON CITY,17,1900,1,RES1,3001 -0101_93_1.02,-74.87249314,39.59930637,304 N SHORE ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_93_1.02,-74.6221665,39.4238745,304 N SHORE ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_93_10,-74.5546215,39.4272805,122 E FAUNCE LANDING RD,ABSECON CITY,17,1941,1,RES1,3001 -0101_93_10,-74.4517375,39.4641355,122 E FAUNCE LANDING RD,ABSECON CITY,17,1941,1,RES1,3002 -0101_93_11.01,-74.554936,39.4271385,124 E FAUNCE LANDING RD,ABSECON CITY,17,1973,1,RES1,3001 -0101_93_11.01,-74.4514395,39.463915,124 E FAUNCE LANDING RD,ABSECON CITY,17,1973,1,RES3A,3001 -0101_93_11.02,-74.57198706,39.42898811,126 E FAUNCE LANDING RD,ABSECON CITY,17,1975,1,RES1,3001 -0101_93_11.02,-74.46383399,39.46534728,126 E FAUNCE LANDING RD,ABSECON CITY,17,1975,1,RES3A,3001 -0101_93_12.01,-74.5727675,39.428668,160 E FAUNCE LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_93_12.01,-74.486383,39.4590345,160 E FAUNCE LANDING RD,ABSECON CITY,17,1986,1,RES1,3001 -0101_93_12.10,-74.5730795,39.428574,6 RUTH COURT,ABSECON CITY,17,2002,1,RES1,3001 -0101_93_12.10,-74.48786267,39.44325141,6 RUTH COURT,ABSECON CITY,17,2002,1,RES1,3001 -0101_93_13.01,-74.927167,39.509553,118 LISBON AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_93_13.01,-74.700642,39.425504,118 LISBON AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_93_13.02,-74.929338,39.50843,116 LISBON AVE,ABSECON CITY,17,1984,1,RES1,3004 -0101_93_13.02,-74.699599,39.423697,116 LISBON AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_93_13.03,-74.94828192,39.51138615,114 LISBON AVE,ABSECON CITY,17,1987,1,GOV1,3004 -0101_93_13.03,-74.69851211,39.4325188,114 LISBON AVE,ABSECON CITY,17,1987,1,RES1,3001 -0101_93_13.04,-74.948564,39.5111525,112 LISBON AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_93_13.04,-74.53364685,39.45127207,112 LISBON AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_93_13.05,-74.942835,39.5044515,110 LISBON AVE,ABSECON CITY,17,1986,1,RES1,3004 -0101_93_13.05,-74.538899,39.4585575,110 LISBON AVE,ABSECON CITY,17,1986,1,RES1,3001 -0101_93_13.06,-74.934271,39.5200265,108 LISBON AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_93_13.06,-74.54233633,39.4598634,108 LISBON AVE,ABSECON CITY,17,1984,1,RES1,3001 -0101_93_14,-74.9261205,39.525419,200 E FAUNCE LANDING RD,ABSECON CITY,17,1935,1,RES1,3001 -0101_93_14,-74.692134,39.4114945,200 E FAUNCE LANDING RD,ABSECON CITY,17,1935,1,RES1,3001 -0101_93_16.09,-74.936449,39.5212035,4 ANDREA LANE,ABSECON CITY,17,1997,1,RES1,3001 -0101_93_16.09,-74.55936883,39.47810812,4 ANDREA LANE,ABSECON CITY,17,1997,1,RES1,3001 -0101_93_16.10,-74.9351295,39.522603,6 ANDREA LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_93_16.10,-74.56381719,39.47839645,6 ANDREA LANE,ABSECON CITY,17,1990,1,GOV1,3004 -0101_93_16.11,-74.93249859,39.52236796,8 ANDREA LANE,ABSECON CITY,17,1989,1,RES1,3001 -0101_93_16.11,-74.5527885,39.4721255,8 ANDREA LANE,ABSECON CITY,17,1989,1,RES1,3004 -0101_93_16.12,-74.9353535,39.5233735,10 ANDREA LANE,ABSECON CITY,17,1997,1,RES1,3001 -0101_93_16.12,-74.5483355,39.4745055,10 ANDREA LANE,ABSECON CITY,17,1997,1,RES1,3001 -0101_93_16.13,-74.936098,39.5234135,12 ANDREA LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_93_16.13,-74.548586,39.4759925,12 ANDREA LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_93_16.15,-74.93707792,39.52618979,11 ANDREA LANE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93_16.15,-74.5355415,39.471145,11 ANDREA LANE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93_16.16,-74.9694045,39.5191085,9 ANDREA LANE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93_16.16,-74.53823362,39.47158477,9 ANDREA LANE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93_16.17,-74.96387071,39.51990798,7 ANDREA LANE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93_16.17,-74.54128263,39.47610528,7 ANDREA LANE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93_16.19,-74.950049,39.5136155,15 JULIANNA DRIVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_93_16.19,-74.6021165,39.437235,15 JULIANNA DRIVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_93_16.20,-74.95207083,39.51733816,11 JULIANNA DRIVE,ABSECON CITY,17,1989,1,RES1,3002 -0101_93_16.20,-74.59905286,39.43781187,11 JULIANNA DRIVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_93_16.21,-74.949121,39.5175885,9 JULIANNA DRIVE,ABSECON CITY,17,1989,1,RES1,3002 -0101_93_16.21,-74.55513206,39.46694365,9 JULIANNA DRIVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_93_16.22,-74.94014529,39.51735686,7 JULIANNA DRIVE,ABSECON CITY,17,1992,1,COM1,3004 -0101_93_16.22,-74.55604427,39.47002213,7 JULIANNA DRIVE,ABSECON CITY,17,1992,1,RES1,3001 -0101_93_16.23,-74.94101051,39.51920568,5 JULIANNA DRIVE,ABSECON CITY,17,1993,1,RES1,3001 -0101_93_16.23,-74.5519317,39.46722477,5 JULIANNA DRIVE,ABSECON CITY,17,1993,1,RES1,3001 -0101_93_16.24,-74.92862908,39.51882735,3 JULIANNA DRIVE,ABSECON CITY,17,1989,1,GOV1,3004 -0101_93_16.24,-74.5386495,39.463923,3 JULIANNA DRIVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_93_16.25,-74.93270879,39.51950544,106 LISBON AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_93_16.25,-74.532509,39.4684845,106 LISBON AVE,ABSECON CITY,17,1988,1,RES1,3001 -0101_93_17,-74.59861544,39.42897869,430 N SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_93_17,-74.44642272,39.48204189,430 N SHORE ROAD,ABSECON CITY,17,1920,1,RES1,3001 -0101_93_18,-74.60479356,39.4295473,450 N SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_93_18,-74.52615917,39.46599503,450 N SHORE ROAD,ABSECON CITY,17,1930,1,RES1,3001 -0101_93_19,-74.94079671,39.5253543,468 N SHORE ROAD,ABSECON CITY,17,1947,1,RES1,3001 -0101_93_19,-74.55394852,39.47392833,468 N SHORE ROAD,ABSECON CITY,17,1947,1,GOV1,3004 -0101_93_2,-74.80783,39.6136875,24 E FAUNCE LANDING RD,ABSECON CITY,17,1900,1,GOV1,3004 -0101_93_2,-74.63190349,39.42343432,24 E FAUNCE LANDING RD,ABSECON CITY,17,1900,1,GOV1,3004 -0101_93_20,-74.9473805,39.526761,470 N SHORE ROAD,ABSECON CITY,17,1957,1,RES1,3001 -0101_93_20,-74.5535575,39.4776605,470 N SHORE ROAD,ABSECON CITY,17,1957,1,GOV1,3004 -0101_93_21,-74.948233,39.526441,2 ANDREA LANE,ABSECON CITY,17,1978,1,COM1,3004 -0101_93_21,-74.563985,39.4753515,2 ANDREA LANE,ABSECON CITY,17,1978,1,GOV1,3004 -0101_93_3,-74.79796362,39.62237421,26 E FAUNCE LANDING RD,ABSECON CITY,17,1967,1,RES3A,3001 -0101_93_3,-74.6324705,39.421248,26 E FAUNCE LANDING RD,ABSECON CITY,17,1967,1,COM10,3003 -0101_93_4,-74.79875045,39.62071934,30 E FAUNCE LANDING RD,ABSECON CITY,17,1966,1,COM1,3004 -0101_93_4,-74.6303795,39.420686,30 E FAUNCE LANDING RD,ABSECON CITY,17,1966,1,RES1,3001 -0101_93_7,-74.80694712,39.62259677,100 E FAUNCE LANDING RD,ABSECON CITY,17,1915,2,RES3A,3001 -0101_93_7,-74.62358786,39.43190063,100 E FAUNCE LANDING RD,ABSECON CITY,17,1915,2,RES1,3001 -0101_93_8,-74.552424,39.427073,104 E FAUNCE LANDING RD,ABSECON CITY,17,1895,1,RES1,3001 -0101_93_8,-74.48240131,39.44480549,104 E FAUNCE LANDING RD,ABSECON CITY,17,1895,1,RES1,3001 -0101_94_1,-74.88384156,39.46239079,16 LISBON AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_94_1,-74.65939441,39.41701028,16 LISBON AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_94_11,-74.90805816,39.49425846,2 LISBON AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_94_11,-74.63962911,39.43394816,2 LISBON AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_94_12,-74.963239,39.503514,6 LISBON AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_94_12,-74.63620391,39.43188208,6 LISBON AVE,ABSECON CITY,17,1964,1,RES1,3001 -0101_94_13,-74.886727,39.5061395,10 LISBON AVE,ABSECON CITY,17,1974,1,RES1,3001 -0101_94_13,-74.6413165,39.421632,10 LISBON AVE,ABSECON CITY,17,1974,1,RES3A,3001 -0101_94_14,-74.904033,39.505213,12 LISBON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_94_14,-74.64679655,39.4202388,12 LISBON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_94_15,-74.9137355,39.511224,14 LISBON AVE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_94_15,-74.6425992,39.43500048,14 LISBON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_94_2,-74.88529543,39.47150633,14 CORDOVA DR,ABSECON CITY,17,1964,1,RES1,3001 -0101_94_2,-74.63167582,39.42279264,14 CORDOVA DR,ABSECON CITY,17,1964,1,RES1,3001 -0101_94_3,-74.9042705,39.472002,12 CORDOVA DRIVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_94_3,-74.63036931,39.42182093,12 CORDOVA DRIVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_94_4,-74.92442574,39.47508152,8 CORDOVA DRIVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_94_4,-74.6331125,39.4210525,8 CORDOVA DRIVE,ABSECON CITY,17,1924,1,RES1,3001 -0101_94_5,-74.90648698,39.48699555,4 CORDOVA DR,ABSECON CITY,17,1978,1,RES1,3001 -0101_94_5,-74.62682077,39.43618817,4 CORDOVA DR,ABSECON CITY,17,1978,1,RES1,3001 -0101_94_6,-74.92589976,39.48062935,524 N SHORE RD,ABSECON CITY,43,1910,4,RES1,3001 -0101_94_6,-74.61999249,39.43049745,524 N SHORE RD,ABSECON CITY,43,1910,4,RES1,3001 -0101_94_7,-74.8894435,39.4982255,526 N SHORE ROAD,ABSECON CITY,17,1915,1,RES1,3001 -0101_94_7,-74.63814665,39.4352088,526 N SHORE ROAD,ABSECON CITY,17,1915,1,RES1,3001 -0101_94_8,-74.88299541,39.49735195,536 N SHORE ROAD,ABSECON CITY,17,1880,1,RES1,3001 -0101_94_8,-74.636414,39.4347015,536 N SHORE ROAD,ABSECON CITY,17,1880,1,GOV1,3004 -0101_95_1,-74.95383835,39.52112004,17 LISBON AVE,ABSECON CITY,17,1963,1,RES3A,3001 -0101_95_1,-74.5439185,39.502439,17 LISBON AVE,ABSECON CITY,17,1963,1,COM4,3004 -0101_95_10,-74.97404832,39.51423546,12 CORTEZ AVE,ABSECON CITY,17,1966,1,RES3A,3001 -0101_95_10,-74.630158,39.4400315,12 CORTEZ AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_95_11,-74.887391,39.574252,10 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_95_11,-74.63357214,39.43978606,10 CORTEZ AVE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_95_12,-74.8842202,39.59612638,8 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_95_12,-74.63181,39.445663,8 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_95_2,-74.9644855,39.528681,15 LISBON AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_95_2,-74.55715158,39.4923867,15 LISBON AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_95_3,-74.9568015,39.530174,13 LISBON AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_95_3,-74.60966184,39.49073848,13 LISBON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_95_4,-74.89090277,39.55805261,11 LISBON AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_95_4,-74.61563278,39.48724674,11 LISBON AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_95_5,-74.88589217,39.55760452,9 LISBON AVE,ABSECON CITY,17,1966,1,GOV1,3004 -0101_95_5,-74.6146654,39.48724463,9 LISBON AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_95_6,-74.935176,39.5466865,7 LISBON AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_95_6,-74.60612659,39.50150264,7 LISBON AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_95_7,-74.9747365,39.5098055,18 CORTEZ AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_95_7,-74.6039915,39.50146,18 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_95_8,-74.9746902,39.50758762,16 CORTEZ AVE,ABSECON CITY,17,1967,1,GOV1,3004 -0101_95_8,-74.62659032,39.44010377,16 CORTEZ AVE,ABSECON CITY,17,1967,1,RES1,3001 -0101_95_9,-74.97684832,39.51455288,14 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_95_9,-74.62097844,39.43748859,14 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_96.01_14.18,-74.78069197,39.6726683,104 WEILER LANE EAST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.01_14.18,-74.75400995,39.40098402,104 WEILER LANE EAST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.01_14.19,-74.79361548,39.67500784,105 CREEK COURT,ABSECON CITY,17,1987,1,RES1,3001 -0101_96.01_14.19,-74.71111247,39.41591353,105 CREEK COURT,ABSECON CITY,17,1987,1,COM1,3004 -0101_96.01_14.21,-74.79771265,39.64474655,101 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.01_14.21,-74.7106115,39.413873,101 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.01_14.22,-74.80150061,39.64143636,589 FOURTH ST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.01_14.22,-74.71032225,39.42998075,589 FOURTH ST,ABSECON CITY,17,1984,1,RES1,3004 -0101_96.01_14.23,-74.80514789,39.64107165,591 FOURTH ST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.01_14.23,-74.72409223,39.43552573,591 FOURTH ST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.02_14.13,-74.8131592,39.64253234,104 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.02_14.13,-74.733353,39.4360105,104 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.02_14.14,-74.81278424,39.65050231,652 WEILER LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_96.02_14.14,-74.74847034,39.43607252,652 WEILER LANE,ABSECON CITY,17,1986,1,RES1,3001 -0101_96.02_14.15,-74.81826261,39.64369687,102 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.02_14.15,-74.75738554,39.43369856,102 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.02_14.16,-74.817402,39.6555005,100 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.02_14.16,-74.75851966,39.43322769,100 CREEK COURT,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96.02_14.17,-74.81760222,39.65449292,603 FOURTH ST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.02_14.17,-74.75861095,39.43126121,603 FOURTH ST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96.02_27.01,-74.44192478,39.35923886,650 WEILER LANE,ABSECON CITY,17,1990,1,RES1,3001 -0101_96.02_27.01,-74.8024025,39.371311,650 WEILER LANE,ABSECON CITY,17,1990,1,GOV1,3004 -0101_96.02_27.02,-74.43169618,39.36553489,648 WEILER LANE,ABSECON CITY,17,1981,1,RES1,3001 -0101_96.02_27.02,-74.83404531,39.37480679,648 WEILER LANE,ABSECON CITY,17,1981,1,RES1,3001 -0101_96.02_28,-74.42825196,39.36025482,640 WEILER LANE,ABSECON CITY,17,1995,1,RES1,3001 -0101_96.02_28,-74.83330288,39.37453528,640 WEILER LANE,ABSECON CITY,17,1995,1,GOV1,3004 -0101_96.02_29.01,-74.43264009,39.3678475,632 WEILER LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_96.02_29.01,-74.82624583,39.38375315,632 WEILER LANE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_96.02_30,-74.43707,39.3678015,636 WEILER LANE,ABSECON CITY,17,1966,1,RES1,3001 -0101_96.02_30,-74.8144738,39.39762014,636 WEILER LANE,ABSECON CITY,17,1966,1,RES1,3001 -0101_96.02_31,-74.43712477,39.36563987,503 SOOY LANE,ABSECON CITY,17,1963,1,RES1,3001 -0101_96.02_31,-74.81887964,39.38708637,503 SOOY LANE,ABSECON CITY,17,1963,1,RES1,3001 -0101_96.02_32,-74.43467796,39.3651973,607 FOURTH ST,ABSECON CITY,17,1955,1,RES1,3002 -0101_96.02_32,-74.82339067,39.39741599,607 FOURTH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_96.02_34,-74.43262268,39.36501344,615 FOURTH ST,ABSECON CITY,17,1949,1,RES1,3001 -0101_96.02_34,-74.84179913,39.37555675,615 FOURTH ST,ABSECON CITY,17,1949,1,RES3B,3001 -0101_96.02_35,-74.51943341,39.31678295,619 FOURTH ST,ABSECON CITY,17,1950,1,RES1,3001 -0101_96.02_35,-74.82712643,39.40530003,619 FOURTH ST,ABSECON CITY,17,1950,1,RES1,3001 -0101_96.02_36,-74.51997807,39.31677417,625 FOURTH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_96.02_36,-74.83399411,39.40678879,625 FOURTH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_96.02_37,-74.52052266,39.31646546,629 FOURTH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_96.02_37,-74.845947,39.405425,629 FOURTH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_96.02_38,-74.5238945,39.3158745,633 FOURTH ST,ABSECON CITY,17,1955,1,RES1,3004 -0101_96.02_38,-74.85375414,39.42435861,633 FOURTH ST,ABSECON CITY,17,1955,1,RES1,3001 -0101_96_1.01,-74.619839,39.369766,121 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.01,-74.45669607,39.47929884,121 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3002 -0101_96_1.02,-74.622594,39.383401,119 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.02,-74.46667079,39.47814656,119 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.03,-74.61949017,39.38127887,117 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.03,-74.47129913,39.48686468,117 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.04,-74.62537189,39.37677462,115 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.04,-74.4686525,39.48582813,115 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.05,-74.63586565,39.38260942,15 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.05,-74.4757591,39.48552034,15 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.06,-74.6373525,39.382106,13 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.06,-74.474274,39.4823185,13 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.07,-74.637178,39.3818675,11 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.07,-74.4732305,39.481293,11 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.08,-74.64615883,39.37329689,9 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.08,-74.451058,39.4953615,9 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.09,-74.65518776,39.36856426,7 MALAGA COVE,ABSECON CITY,17,2002,1,RES1,3001 -0101_96_1.09,-74.44452855,39.4935795,7 MALAGA COVE,ABSECON CITY,17,2002,1,RES1,3001 -0101_96_1.10,-74.64213865,39.37849964,5 MALAGA COVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.10,-74.44920834,39.49190315,5 MALAGA COVE,ABSECON CITY,17,1985,1,RES3A,3001 -0101_96_1.11,-74.62413423,39.3931284,111 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.11,-74.45370111,39.4889894,111 LISBON AVE,ABSECON CITY,17,1985,1,COM4,3002 -0101_96_1.12,-74.627189,39.39244,109 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.12,-74.45209628,39.48887644,109 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.13,-74.63109905,39.3922042,107 LISBON AVE,ABSECON CITY,17,1985,1,REL1,3004 -0101_96_1.13,-74.45923,39.49509233,107 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.14,-74.6351655,39.3900765,105 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_1.14,-74.46366276,39.49453193,105 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_10,-74.6401469,39.41084287,5 CORTEZ AVE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_96_10,-74.5125465,39.475433,5 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_96_11,-74.6447495,39.4107245,5 LISBON AVE,ABSECON CITY,17,1960,1,RES3A,3002 -0101_96_11,-74.52398081,39.47199781,5 LISBON AVE,ABSECON CITY,17,1960,1,RES1,3001 -0101_96_12.01,-74.941974,39.52171,3 LISBON AVE,ABSECON CITY,17,1965,1,RES3A,3001 -0101_96_12.01,-74.56972472,39.47720381,3 LISBON AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_96_12.02,-74.9575415,39.5281395,624 N SHORE RD,ABSECON CITY,17,1965,1,RES1,3001 -0101_96_12.02,-74.56585997,39.47712882,624 N SHORE RD,ABSECON CITY,17,1965,1,RES1,3001 -0101_96_13.01,-74.88444082,39.59503518,501 FOURTH ST,ABSECON CITY,17,1990,1,RES1,3001 -0101_96_13.01,-74.662335,39.446336,501 FOURTH ST,ABSECON CITY,17,1990,1,COM3,3004 -0101_96_13.02,-74.88598135,39.59443942,507 FOURTH ST,ABSECON CITY,17,2007,1,GOV1,3004 -0101_96_13.02,-74.62729057,39.4634887,507 FOURTH ST,ABSECON CITY,17,2007,1,RES1,3001 -0101_96_13.05,-74.8832795,39.5942465,519 FOURTH ST,ABSECON CITY,17,2007,1,RES1,3001 -0101_96_13.05,-74.64061254,39.46250891,519 FOURTH ST,ABSECON CITY,17,2007,1,RES1,3001 -0101_96_13.07,-74.88324818,39.60190816,527 FOURTH STREET,ABSECON CITY,17,2006,1,RES1,3001 -0101_96_13.07,-74.64411236,39.46149752,527 FOURTH STREET,ABSECON CITY,17,2006,1,GOV1,3004 -0101_96_14.01,-74.88804355,39.59859665,587 FOURTH ST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.01,-74.647471,39.46101,587 FOURTH ST,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.02,-74.68904878,39.65424547,103 WEILER LANE EAST,ABSECON CITY,17,1987,1,RES1,3001 -0101_96_14.02,-74.65525062,39.45612568,103 WEILER LANE EAST,ABSECON CITY,17,1987,1,RES1,3001 -0101_96_14.03,-74.71219619,39.64718353,105 WEILER LANE EAST,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.03,-74.680812,39.443199,105 WEILER LANE EAST,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.04,-74.72139933,39.6462227,107 WEILER LANE EAST,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.04,-74.68234339,39.44051168,107 WEILER LANE EAST,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.05,-74.7333195,39.651746,109 WEILER LANE EAST,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.05,-74.69109916,39.44993883,109 WEILER LANE EAST,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.06,-74.76695713,39.64594728,663 WEILER LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.06,-74.69205488,39.4480403,663 WEILER LANE,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.07,-74.77055573,39.64983053,201 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3004 -0101_96_14.07,-74.68965715,39.44699473,201 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.08,-74.790965,39.647115,203 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.08,-74.68051114,39.45993919,203 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.09,-74.7865523,39.646839,204 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.09,-74.6659555,39.4628865,204 CREEK COURT,ABSECON CITY,17,1984,1,EDU1,3004 -0101_96_14.10,-74.79113135,39.64331594,202 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.10,-74.640571,39.4747115,202 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.11,-74.78949898,39.64161484,200 CREEK COURT,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.11,-74.647694,39.470628,200 CREEK COURT,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_14.12,-74.7889965,39.6413135,657 WEILER LANE,ABSECON CITY,17,1984,1,GOV1,3004 -0101_96_14.12,-74.627926,39.4884585,657 WEILER LANE,ABSECON CITY,17,1984,1,RES1,3001 -0101_96_16,-74.7924705,39.6404355,13 SOOY LANE,ABSECON CITY,17,1981,1,RES1,3001 -0101_96_16,-74.68089957,39.49985223,13 SOOY LANE,ABSECON CITY,17,1981,1,GOV1,3004 -0101_96_18,-74.75488944,39.66053684,17 SOOY LANE,ABSECON CITY,17,1842,1,RES1,3001 -0101_96_18,-74.6855515,39.4948095,17 SOOY LANE,ABSECON CITY,17,1842,1,RES1,3001 -0101_96_19,-74.75723883,39.65881498,21 SOOY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_96_19,-74.68571685,39.50259905,21 SOOY LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_96_2.01,-74.631687,39.387262,101 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_2.01,-74.45458962,39.49019826,101 LISBON AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_2.02,-74.64625964,39.39514219,27 CORTEZ AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_2.02,-74.4502125,39.4963425,27 CORTEZ AVE,ABSECON CITY,17,1985,1,RES1,3001 -0101_96_20.01,-74.765318,39.6689995,653 WEILER LANE,ABSECON CITY,17,1979,1,RES1,3001 -0101_96_20.01,-74.68750767,39.49812796,653 WEILER LANE,ABSECON CITY,17,1979,1,RES1,3001 -0101_96_20.02,-74.78019843,39.66023918,655 WEILER LANE,ABSECON CITY,17,1988,1,RES1,3001 -0101_96_20.02,-74.70498687,39.4991792,655 WEILER LANE,ABSECON CITY,17,1988,1,RES1,3001 -0101_96_22,-74.7861555,39.661152,649 WEILER LANE,ABSECON CITY,17,1965,1,RES1,3001 -0101_96_22,-74.716848,39.376034,649 WEILER LANE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_96_23,-74.7868284,39.66105157,645 WEILER LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_96_23,-74.71750042,39.39048378,645 WEILER LANE,ABSECON CITY,17,1955,1,RES3A,3001 -0101_96_24,-74.78601934,39.66060752,633 WEILER LANE,ABSECON CITY,17,1950,1,COM1,3004 -0101_96_24,-74.71995185,39.39097134,633 WEILER LANE,ABSECON CITY,17,1950,1,COM1,3004 -0101_96_26,-74.78643646,39.66022434,637 WEILER LANE,ABSECON CITY,17,1955,1,RES1,3001 -0101_96_26,-74.7158745,39.393975,637 WEILER LANE,ABSECON CITY,17,1955,1,GOV1,3004 -0101_96_3,-74.68033113,39.37782038,19 CORTEZ AVE,ABSECON CITY,17,1966,1,RES1,3001 -0101_96_3,-74.47204814,39.49265649,19 CORTEZ AVE,ABSECON CITY,17,1966,1,GOV1,3004 -0101_96_4,-74.6692995,39.386508,17 CORTEZ AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_96_4,-74.46820536,39.49163719,17 CORTEZ AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_96_5,-74.62853998,39.40664136,15 CORTEZ AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_96_5,-74.46775744,39.48968834,15 CORTEZ AVE,ABSECON CITY,17,1965,1,COM3,3004 -0101_96_6,-74.62968713,39.41207759,13 CORTEZ AVE,ABSECON CITY,17,1965,1,GOV1,3004 -0101_96_6,-74.4658215,39.496536,13 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_96_7,-74.63221202,39.41617254,11 CORTEZ AVE,ABSECON CITY,17,1970,1,RES1,3001 -0101_96_7,-74.4854216,39.49783467,11 CORTEZ AVE,ABSECON CITY,17,1970,1,GOV1,3004 -0101_96_8,-74.63149121,39.41559942,9 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_96_8,-74.5050675,39.482596,9 CORTEZ AVE,ABSECON CITY,17,1965,1,RES1,3001 -0101_96_9,-74.6368252,39.41340906,5 SOOY LANE,ABSECON CITY,17,1900,1,RES1,3001 -0101_96_9,-74.5085505,39.479192,5 SOOY LANE,ABSECON CITY,17,1900,1,GOV1,3004 -0101_96_9.03,-74.657063,39.402683,9 SOOY LANE,ABSECON CITY,17,2002,1,RES1,3001 -0101_96_9.03,-74.5255251,39.4710792,9 SOOY LANE,ABSECON CITY,17,2002,1,RES1,3001 -0101_96_9.04,-74.619194,39.424835,11 SOOY LANE,ABSECON CITY,17,2003,1,RES1,3001 -0101_96_9.04,-74.51223274,39.48492393,11 SOOY LANE,ABSECON CITY,17,2003,1,RES1,3001 -0101_98_1,-74.6381452,39.33980874,1111 CHELSEA RD,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_1,-74.435285,39.3726115,1111 CHELSEA RD,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_10,-74.62838763,39.35467382,1104 BLENHEIM AVE,ABSECON CITY,17,1958,1,GOV1,3004 -0101_98_10,-74.39972296,39.38765961,1104 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_98_11,-74.625063,39.3540445,1102 BLENHEIM AVE,ABSECON CITY,17,1958,1,GOV1,3004 -0101_98_11,-74.40193982,39.38656274,1102 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_98_12,-74.626797,39.3523945,1100 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_98_12,-74.400785,39.3852995,1100 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_98_2,-74.63219952,39.35058755,1109 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_98_2,-74.44027733,39.37185826,1109 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_98_3,-74.632537,39.3500785,1107 CHELSEA ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_3,-74.441923,39.370495,1107 CHELSEA ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_4,-74.6496655,39.341828,1105 CHELSEA ROAD,ABSECON CITY,17,1962,1,GOV1,3004 -0101_98_4,-74.44230519,39.36937894,1105 CHELSEA ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_5,-74.649777,39.339587,1103 CHELSEA ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_5,-74.43473263,39.36932777,1103 CHELSEA ROAD,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_6,-74.65209058,39.3493179,1101 CHELSEA ROAD,ABSECON CITY,17,1963,1,RES1,3001 -0101_98_6,-74.44093682,39.36904701,1101 CHELSEA ROAD,ABSECON CITY,17,1963,1,GOV1,3004 -0101_98_7,-74.6467175,39.3436895,1110 BLENHEIM AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_7,-74.40571,39.3935165,1110 BLENHEIM AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_98_8,-74.62985,39.3579675,1108 BLENHEIM AVE,ABSECON CITY,17,1963,1,GOV1,3004 -0101_98_8,-74.409165,39.3919405,1108 BLENHEIM AVE,ABSECON CITY,17,1963,1,RES1,3001 -0101_98_9,-74.62316696,39.35719646,1106 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_98_9,-74.4025185,39.3900545,1106 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_99_1.01,-74.63245367,39.35787795,1003 CHELSEA ROAD,ABSECON CITY,17,1977,1,GOV1,3004 -0101_99_1.01,-74.3657382,39.40607334,1003 CHELSEA ROAD,ABSECON CITY,17,1977,1,RES1,3001 -0101_99_1.02,-74.6282675,39.360149,600 HADDON AVE,ABSECON CITY,17,1962,1,RES1,3001 -0101_99_1.02,-74.368929,39.4078895,600 HADDON AVE,ABSECON CITY,17,1962,1,GOV1,3004 -0101_99_1.03,-74.636952,39.367391,1005 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_99_1.03,-74.3705665,39.40721567,1005 CHELSEA ROAD,ABSECON CITY,17,1978,1,GOV1,3004 -0101_99_1.04,-74.63023984,39.36637877,1007 CHELSEA ROAD,ABSECON CITY,17,1981,1,RES1,3001 -0101_99_1.04,-74.36928662,39.4070143,1007 CHELSEA ROAD,ABSECON CITY,17,1981,1,GOV1,3004 -0101_99_1.05,-74.6316505,39.3662835,1009 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_99_1.05,-74.3710215,39.406483,1009 CHELSEA ROAD,ABSECON CITY,17,1978,1,RES1,3001 -0101_99_2,-74.65661947,39.36780493,1020 BLENHEIM AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_99_2,-74.373052,39.406186,1020 BLENHEIM AVE,ABSECON CITY,17,1989,1,RES1,3001 -0101_99_3,-74.70015196,39.35265766,1016 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_99_3,-74.36780134,39.40545114,1016 BLENHEIM AVE,ABSECON CITY,17,1958,1,RES1,3001 -0101_99_4,-74.69189486,39.36061565,1006 BLENHEIM AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_99_4,-74.37377427,39.40228441,1006 BLENHEIM AVE,ABSECON CITY,17,1979,1,RES1,3001 -0101_99_5,-74.780868,39.306115,1004 BLENHEIM AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_99_5,-74.36204682,39.41900125,1004 BLENHEIM AVE,ABSECON CITY,17,1977,1,RES1,3001 -0101_99_6,-74.78037872,39.31585413,601 HADDON AVE,ABSECON CITY,17,1971,1,RES1,3001 -0101_99_6,-74.3654505,39.417494,601 HADDON AVE,ABSECON CITY,17,1971,1,RES1,3001 -0102_1_110,-74.79876248,39.37430416,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_110,-74.61210188,39.34534813,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_111,-74.80645261,39.37956516,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_111,-74.58547759,39.35516428,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_116,-74.81672148,39.40549337,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_116,-74.580374,39.360892,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_117,-74.80975564,39.40295033,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_117,-74.58426936,39.36075965,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_118,-74.8244998,39.41147736,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_118,-74.59448165,39.36074626,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_119,-74.75046453,39.45268032,NEW YORK AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_119,-74.59938682,39.35850407,NEW YORK AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_12,-74.512303,39.533853,BARTRAM AVE (CS),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_12,-74.51432916,39.32868002,BARTRAM AVE (CS),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_125,-74.83658072,39.48345391,1400 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_125,-74.67015585,39.35212699,1400 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_131,-74.870751,39.4892675,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_131,-74.689167,39.3575795,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_132,-74.86674401,39.49724195,SOUTH CAROLINA AVE STREET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_132,-74.757122,39.3066025,SOUTH CAROLINA AVE STREET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_133,-74.88163069,39.49662204,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3003 -0102_1_133,-74.7562625,39.30890183,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_14,-74.473294,39.5388745,COLUMBIA AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_14,-74.5115605,39.3277405,COLUMBIA AVE STREET END,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_146,-74.50826468,39.32728649,1000 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_146,-74.64489511,39.51225886,1000 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_148,-74.71215217,39.46917951,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_148,-74.642008,39.3608025,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_152,-74.58593034,39.32329043,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_152,-74.45771165,39.34885125,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_161,-74.60283811,39.34950271,600 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_161,-74.399045,39.3889115,600 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_164,-74.58658466,39.35278108,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_164,-74.38314596,39.39555683,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_178,-74.63267765,39.35918481,SEASIDE AVE STREET END,ATLANTIC CITY CITY,,0,1,EDU1,3004 -0102_1_178,-74.36823306,39.40716286,SEASIDE AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_190,-74.827542,39.498706,ATLANTIC AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_190,-74.54370502,39.37911716,ATLANTIC AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_207,-74.907684,39.478474,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_207,-74.60174308,39.48001573,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_29,-74.56784158,39.34995482,ROOSEVELT PL STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_29,-74.46316653,39.35167068,ROOSEVELT PL STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_30,-74.548764,39.362973,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_30,-74.49339033,39.33738099,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_32,-74.57047881,39.35626684,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_32,-74.4904965,39.3358195,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_39,-74.632476,39.426498,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_39,-74.592079,39.315529,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_44,-74.61921442,39.43072032,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_44,-74.600142,39.3164095,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_46,-74.63280565,39.43210243,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_46,-74.60387458,39.3140028,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_52,-74.63410677,39.42895045,STENTON PLACE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_52,-74.58446949,39.32407084,STENTON PLACE STREET END,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_63,-74.53407212,39.46638277,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_63,-74.5832225,39.3313585,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_77,-74.927516,39.509251,GEORGIA AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_77,-74.62082471,39.43421745,GEORGIA AVE STREET END,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_1_78,-74.61963185,39.43814701,BOARDWALK (KENNEDY PLAZA),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_78,-74.55648934,39.36745978,BOARDWALK (KENNEDY PLAZA),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_79,-74.62104922,39.43710759,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_79,-74.5563135,39.367361,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_80,-74.6198015,39.462321,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_80,-74.56067416,39.36141483,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_81,-74.6765365,39.4851725,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_81,-74.57270633,39.36280279,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_82,-74.70690008,39.48073074,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_82,-74.5788375,39.341816,PUBLIC BEACH,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_1_83,-74.682266,39.4933155,MISSISSIPPI AVE ST END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_83,-74.57961815,39.33997846,MISSISSIPPI AVE ST END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_88,-74.68142746,39.49708692,CHRISTOPHER COLMUBUS BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_88,-74.5766365,39.33849,CHRISTOPHER COLMUBUS BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_93,-74.68847617,39.49529554,1 ATLANTIC OCEAN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_93,-74.58338558,39.33846525,1 ATLANTIC OCEAN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_97,-74.68583838,39.49936634,MICHIGAN AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_1_97,-74.58142679,39.3356382,MICHIGAN AVE STREET END,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_10_1,-74.58882764,39.32580887,4330 ATLANTIC AVE,ATLANTIC CITY CITY,18,1929,1,RES1,3001 -0102_10_1,-74.479715,39.348238,4330 ATLANTIC AVE,ATLANTIC CITY CITY,18,1929,1,RES1,3001 -0102_10_2,-74.58704983,39.32801743,100 S DELANCY PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_10_2,-74.48289868,39.35040749,100 S DELANCY PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_10_3,-74.58138032,39.33108099,106 S DELANCY PL,ATLANTIC CITY CITY,18,1930,1,RES1,3001 -0102_10_3,-74.48493417,39.33459599,106 S DELANCY PL,ATLANTIC CITY CITY,18,1930,1,GOV1,3004 -0102_10_4,-74.58641355,39.32048117,122 S DELANCY PL,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_10_4,-74.48688319,39.33731358,122 S DELANCY PL,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_10_5,-74.58691133,39.32374048,128 S DELANCY PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_10_5,-74.46216584,39.34735649,128 S DELANCY PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_10_6,-74.5993165,39.316829,130 S DELANCY PL,ATLANTIC CITY CITY,18,1930,1,RES1,3001 -0102_10_6,-74.4574374,39.34865312,130 S DELANCY PL,ATLANTIC CITY CITY,18,1930,1,RES1,3001 -0102_101_1,-74.7679885,39.662437,451 N MAINE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_101_1,-74.842673,39.4091195,451 N MAINE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_103_6,-74.81277814,39.64507245,800 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_103_6,-74.71080618,39.46630342,800 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_1,-74.81025348,39.64586033,700 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_1,-74.71352188,39.46846277,700 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_11,-74.76439318,39.63510291,332 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_11,-74.66021115,39.40353549,332 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_2,-74.80143089,39.63956072,510 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_104_2,-74.71148833,39.46976999,510 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_3,-74.9448684,39.4960396,502 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_3,-74.6005125,39.497389,502 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_4,-74.8882362,39.50343306,500 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_104_4,-74.57538208,39.49919266,500 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_5,-74.91416468,39.48047385,438 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_5,-74.58810185,39.48776794,438 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_6,-74.8081365,39.633966,434 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_6,-74.567942,39.477571,434 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_7,-74.81382051,39.63812867,432 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_7,-74.5567035,39.4739645,432 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_8,-74.80521097,39.63108966,428 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_8,-74.557695,39.4761515,428 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_9,-74.79647583,39.63941599,428 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_104_9,-74.60991508,39.44103632,428 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_105_1,-74.78354663,39.6515581,400 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_105_1,-74.81857621,39.42854444,400 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_106_1,-74.69527278,39.63054161,330 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_106_1,-74.581797,39.42328233,330 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_106_2,-74.70416928,39.5905316,326 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_106_2,-74.57582024,39.4189108,326 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_106_3,-74.661558,39.5443975,318 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_106_3,-74.57405339,39.41842481,318 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_107_1,-74.696912,39.5111235,2 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_1,-74.5628245,39.4143245,2 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_2,-74.64459889,39.52999483,4 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_2,-74.6022323,39.38558814,4 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_3,-74.6476465,39.5215085,6 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_3,-74.61291225,39.38349603,6 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_4,-74.6409169,39.53588764,8 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_4,-74.5932845,39.377662,8 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_5,-74.64083716,39.52578651,25 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_5,-74.59066117,39.37138648,25 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_6,-74.63808704,39.53561437,27 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_6,-74.59339,39.377434,27 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_7,-74.64273118,39.53437556,29 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_7,-74.61855654,39.38048916,29 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_8,-74.64341983,39.5299645,31 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_107_8,-74.60724231,39.38547453,31 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_1,-74.604533,39.589905,31 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_1,-74.551691,39.421015,31 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_2,-74.641669,39.623315,29 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_2,-74.5999335,39.4189395,29 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_3,-74.707554,39.5699615,27 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_3,-74.5970895,39.434933,27 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_4,-74.80436482,39.54529701,25 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_4,-74.597976,39.431215,25 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_108_5,-74.718211,39.578078,8 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_5,-74.6221095,39.383044,8 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_108_6,-74.82535223,39.53790075,6 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_108_6,-74.61380817,39.42291183,6 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_7,-74.698017,39.6380525,4 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_7,-74.5882608,39.42579768,4 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_8,-74.65008567,39.62631505,2 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_108_8,-74.602455,39.4092155,2 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_1,-74.68176435,39.50704476,34 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_1,-74.57485365,39.41065075,34 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_10,-74.76778916,39.63519003,17 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_10,-74.6251879,39.41281869,17 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_11,-74.786916,39.636463,15 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_11,-74.621891,39.42346,15 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_12,-74.8603865,39.5946675,13 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_12,-74.6199115,39.432147,13 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_14,-74.78854993,39.63645417,11 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_14,-74.6289715,39.4250295,11 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_109_15,-74.77500963,39.6211459,9 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_15,-74.63930047,39.41069141,9 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_109_16,-74.778668,39.60231371,7 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_16,-74.637655,39.4003955,7 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_17,-74.7150005,39.57689,5 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_17,-74.62091532,39.37135191,5 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_18,-74.84296239,39.5363658,3 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_18,-74.5997655,39.435209,3 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_19,-74.70727267,39.56989,1 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_19,-74.5903766,39.42981946,1 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_2,-74.680974,39.5558355,32 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_2,-74.56559526,39.4181279,32 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_20,-74.82638884,39.53063165,30 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_20,-74.6129833,39.42037948,30 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_21,-74.861371,39.5662255,28 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_21,-74.62577816,39.37362508,28 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_22,-74.79218639,39.59150413,26 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_22,-74.64112236,39.37372858,26 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_23,-74.78626108,39.61323435,24 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_23,-74.68313333,39.3834203,24 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_24,-74.7733295,39.6240225,22 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_24,-74.659914,39.4169085,22 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_25,-74.88040371,39.59530383,20 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_25,-74.6441395,39.4321925,20 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_26,-74.79843,39.6154705,19 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_26,-74.538637,39.4701055,19 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_27,-74.796478,39.6304715,17 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_109_27,-74.53916615,39.46184226,17 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_28,-74.812304,39.6303815,15 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_28,-74.60131933,39.4429649,15 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_29,-74.8021067,39.63826184,13 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_29,-74.5318785,39.47066,13 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_3,-74.66852013,39.58241506,30 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_3,-74.596094,39.4078905,30 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_31,-74.80986146,39.62919534,11 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_31,-74.60433001,39.43917766,11 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_32,-74.8079185,39.6182845,9 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_32,-74.5354165,39.4701035,9 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_33,-74.86538909,39.60248453,7 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_33,-74.69219466,39.41260769,7 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,COM1,3004 -0102_109_34,-74.87256631,39.59634147,5 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,COM1,3004 -0102_109_34,-74.64465684,39.43534617,5 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_35,-74.77676153,39.62686733,3 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_35,-74.65629003,39.41829918,3 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_36,-74.77325859,39.61028499,1 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_36,-74.68051139,39.3842938,1 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_37,-74.7719215,39.632893,34 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_37,-74.6611785,39.402955,34 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_38,-74.85164396,39.59933866,32 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_38,-74.63477775,39.42939205,32 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_39,-74.87944,39.5909845,30 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_39,-74.69142006,39.41270722,30 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_4,-74.6552715,39.626219,28 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_4,-74.60074619,39.41631559,28 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_109_40,-74.79779483,39.6200685,28 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_40,-74.53903189,39.45940522,28 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES3A,3001 -0102_109_41,-74.80962234,39.63090501,26 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_41,-74.58093461,39.44377871,26 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_42,-74.8050245,39.6343065,24 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_42,-74.546556,39.4730025,24 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_109_43,-74.809144,39.6363775,23 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_109_43,-74.55570215,39.47331876,23 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_44,-74.80844802,39.63560633,21 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_44,-74.56546157,39.47833768,21 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_45,-74.8270055,39.62467,19 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_45,-74.57232668,39.47999849,19 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_46,-74.82425566,39.63875247,17 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_46,-74.57114232,39.47927298,17 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_47,-74.86398115,39.60661719,15 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_47,-74.57902006,39.47498733,15 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_48,-74.90356861,39.47250159,13 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_48,-74.6158975,39.47734,13 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_49,-74.886502,39.463351,11 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_49,-74.5908045,39.482055,11 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_5,-74.7930955,39.5440325,26 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_5,-74.5877905,39.4286905,26 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES2,3005 -0102_109_50,-74.82102358,39.62674812,9 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_50,-74.5690665,39.4772815,9 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_51,-74.81145885,39.63855194,7 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES4,3001 -0102_109_51,-74.557995,39.4749335,7 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_52,-74.80043595,39.63373766,5 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_109_52,-74.56285531,39.47680105,5 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_53,-74.80724485,39.62327695,3 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_53,-74.60849172,39.44115014,3 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,COM1,3004 -0102_109_54,-74.79691302,39.62278038,1 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_54,-74.55357122,39.46488609,1 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_6,-74.82693522,39.57071806,24 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_6,-74.5981403,39.43070345,24 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_7,-74.7249205,39.5898425,23 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_7,-74.63746361,39.38224103,23 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_8,-74.746806,39.6365515,21 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_8,-74.643051,39.4011265,21 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_9,-74.793804,39.6110755,19 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_109_9,-74.68793792,39.38173167,19 CLIPPER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_11_1,-74.49113233,39.335033,101 S DELANCY PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_11_1,-74.77504534,39.63651655,101 S DELANCY PL,ATLANTIC CITY CITY,18,1925,1,REL1,3004 -0102_11_10,-74.587043,39.3273175,108 S RALEIGH AVE,ATLANTIC CITY CITY,18,1929,1,RES1,3001 -0102_11_10,-74.487175,39.349756,108 S RALEIGH AVE,ATLANTIC CITY CITY,18,1929,1,RES1,3001 -0102_11_11,-74.491362,39.3353015,106 S RALEIGH AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_11_11,-74.78170837,39.63699262,106 S RALEIGH AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_11_12,-74.491449,39.334842,102 S RALEIGH AVE,ATLANTIC CITY CITY,47,1920,3,EDU1,3004 -0102_11_12,-74.7825315,39.634711,102 S RALEIGH AVE,ATLANTIC CITY CITY,47,1920,3,RES1,3001 -0102_11_13,-74.4957465,39.3344255,4300 ATLANTIC AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_11_13,-74.7804945,39.6346795,4300 ATLANTIC AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_11_2,-74.60298367,39.32512454,111 S DELANCY PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_11_2,-74.48557582,39.34818304,111 S DELANCY PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_11_3,-74.592246,39.3282575,121 S DELANCY PL,ATLANTIC CITY CITY,21,1918,1,REL1,3004 -0102_11_3,-74.4861465,39.3506475,121 S DELANCY PL,ATLANTIC CITY CITY,21,1918,1,GOV1,3004 -0102_11_4,-74.57868365,39.33214428,131 S DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_11_4,-74.48112482,39.33616952,131 S DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_11_5,-74.6112285,39.3152625,135 S DELANCY PL,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_11_5,-74.45558161,39.34780968,135 S DELANCY PL,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_11_6,-74.590065,39.3234985,116 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_11_6,-74.47391483,39.34065306,116 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_11_7,-74.5863685,39.3218795,114 S RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_11_7,-74.47806355,39.33780114,114 S RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_11_8,-74.58074906,39.33124213,112 S RALEIGH AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_11_8,-74.48432701,39.33475137,112 S RALEIGH AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_11_9,-74.58437495,39.3288322,110 S RALEIGH AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_11_9,-74.47016267,39.34345715,110 S RALEIGH AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_110_1,-74.75904217,39.6127027,23 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_110_1,-74.658341,39.40028667,23 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_110_2,-74.86221779,39.58614788,16 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,COM3,3004 -0102_110_2,-74.6208883,39.42307643,16 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_110_3,-74.8794834,39.59612029,14 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_110_3,-74.645652,39.434475,14 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_110_4,-74.76212716,39.63882399,21 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_110_4,-74.62531431,39.41570127,21 BARKENTINE CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_111_1,-74.804611,39.5556945,13 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_111_1,-74.60135818,39.43097013,13 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,COM1,3004 -0102_111_2,-74.85810149,39.56393983,11 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_111_2,-74.62349326,39.37553962,11 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_111_3,-74.71968645,39.57684316,9 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_111_3,-74.6361805,39.3849325,9 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_112_1,-74.875793,39.592061,31 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_1,-74.66529409,39.4177604,31 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_2,-74.880385,39.5989005,29 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES3A,3001 -0102_112_2,-74.70509956,39.4251521,29 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_3,-74.79865634,39.62632703,27 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_3,-74.5576905,39.467675,27 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_4,-74.7975955,39.637745,25 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_4,-74.54623529,39.47430345,25 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_5,-74.80146285,39.63235346,8 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_5,-74.556511,39.476559,8 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_6,-74.81192703,39.62695618,6 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_6,-74.6001695,39.4366505,6 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,COM4,3004 -0102_112_7,-74.8040587,39.63027054,4 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_7,-74.54915878,39.46261176,4 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_8,-74.87361917,39.60372301,2 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_112_8,-74.66639519,39.41963588,2 SCHOONER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_1,-74.64488915,39.53472595,34 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_1,-74.6092815,39.381069,34 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_10,-74.77357059,39.67102892,16 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,COM4,3004 -0102_113_10,-74.74844574,39.45203529,16 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,REL1,3004 -0102_113_11,-74.78038542,39.67043488,14 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_11,-74.74567082,39.44550335,14 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_12,-74.79621357,39.63956965,12 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_12,-74.7262505,39.4532515,12 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_14,-74.63955825,39.52532572,1 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_14,-74.59028356,39.3705469,1 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_15,-74.650141,39.5262045,3 WINDJAMMER CT,ATLANTIC CITY CITY,39,1990,1,RES1,3001 -0102_113_15,-74.60359069,39.36994969,3 WINDJAMMER CT,ATLANTIC CITY CITY,39,1990,1,RES1,3001 -0102_113_16,-74.64726434,39.53172202,5 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_16,-74.6047395,39.38824117,5 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_17,-74.68264934,39.50778252,7 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_17,-74.562762,39.4099165,7 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_18,-74.64342486,39.53870224,9 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_18,-74.5596145,39.4127095,9 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_113_19,-74.69254961,39.55973534,11 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_19,-74.55182,39.4273485,11 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_2,-74.63949558,39.52345485,32 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_2,-74.5937525,39.3780535,32 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_20,-74.63629191,39.62229021,2 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_20,-74.58921482,39.41507747,2 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_21,-74.66692898,39.56880033,4 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_21,-74.567876,39.417235,4 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_22,-74.6853717,39.51698852,6 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_22,-74.5599115,39.413834,6 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_23,-74.64280897,39.52989534,8 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_23,-74.53998327,39.41328306,8 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_24,-74.64574514,39.53179993,10 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_24,-74.60793907,39.3928832,10 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_25,-74.6376155,39.5310285,12 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_25,-74.59261,39.3768165,12 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_26,-74.64771397,39.52501403,14 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_26,-74.60272389,39.36959871,14 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_27,-74.648537,39.533225,16 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_27,-74.60652462,39.3930087,16 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_28,-74.64859106,39.53094959,18 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_28,-74.6071725,39.3858935,18 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_29,-74.85317953,39.55975933,201 MELROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_113_29,-74.61542866,39.4294385,201 MELROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_113_3,-74.63147137,39.52731257,30 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_3,-74.5862325,39.375085,30 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_30,-74.7000765,39.6382375,10 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_30,-74.58464546,39.42278729,10 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES3A,3001 -0102_113_31,-74.68096471,39.60973147,12 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_31,-74.61709764,39.41898831,12 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_32,-74.636965,39.621194,14 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_32,-74.5955085,39.4125685,14 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_33,-74.6188905,39.623004,16 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_33,-74.57076111,39.4281631,16 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_34,-74.65628184,39.55828891,7 CARAVEL COURT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_34,-74.57370182,39.41833651,7 CARAVEL COURT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_35,-74.61555916,39.62184682,5 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_35,-74.55234242,39.42076332,5 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_36,-74.65529,39.6284585,3 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_36,-74.6078098,39.41721684,3 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_37,-74.71136983,39.56521099,1 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_37,-74.59098131,39.42955752,1 CARAVEL CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_38,-74.81183221,39.52742991,7 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_38,-74.59191413,39.42774592,7 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_39,-74.8540895,39.5604555,5 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_39,-74.61897865,39.43505757,5 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_4,-74.7966851,39.64122571,28 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_4,-74.74708281,39.44536563,28 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_40,-74.72496773,39.5873368,3 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_40,-74.63562213,39.38366053,3 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_41,-74.78589246,39.61177166,1 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_41,-74.6849267,39.38330684,1 GALLEON CT,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_113_42,-74.77869325,39.63052497,2 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_113_42,-74.6621445,39.4026025,2 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_43,-74.77456957,39.61121032,4 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_43,-74.67274162,39.37901185,4 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_44,-74.7076475,39.581404,6 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_44,-74.6368275,39.3846965,6 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_45,-74.82509629,39.57035942,8 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_113_45,-74.599037,39.429074,8 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_46,-74.716113,39.6388555,7 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_46,-74.63731,39.399294,7 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_47,-74.78590581,39.61619128,5 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_113_47,-74.6234925,39.4190045,5 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_48,-74.79210858,39.63482826,3 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_48,-74.6228475,39.423149,3 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_49,-74.87646265,39.59408229,1 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_49,-74.64719893,39.43057468,1 SLOOP CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_5,-74.78042105,39.67248769,26 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_5,-74.73627158,39.44716102,26 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_6,-74.77085405,39.67024375,24 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_6,-74.726331,39.4509145,24 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_7,-74.76958042,39.67091477,22 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_7,-74.71485704,39.44319246,22 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_113_8,-74.76361281,39.66979548,20 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_113_8,-74.72668428,39.44743187,20 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_113_9,-74.7760205,39.660314,18 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,GOV1,3004 -0102_113_9,-74.73625,39.4482545,18 WINDJAMMER CT,ATLANTIC CITY CITY,35,1990,1,RES1,3001 -0102_114_2,-74.57497485,39.42931545,323 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_114_2,-74.504076,39.4283935,323 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_115_1,-74.57108676,39.42776188,227 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_115_1,-74.5252945,39.420677,227 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_115_2,-74.5775415,39.410449,222 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_115_2,-74.5254012,39.42014755,222 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_116_1,-74.50875569,39.48787118,139 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_116_1,-74.51392215,39.3240678,139 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_116_11,-74.49528569,39.49408247,130 HOUSTON AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_116_11,-74.50833447,39.32673533,130 HOUSTON AVE,ATLANTIC CITY CITY,17,2003,1,GOV1,3004 -0102_116_14.01,-74.5099645,39.4867005,127 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_116_14.01,-74.50060634,39.32981948,127 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_116_14.02,-74.50969,39.4703185,119 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2004,1,RES3A,3001 -0102_116_14.02,-74.5087455,39.3301065,119 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_116_14.04,-74.51312991,39.4859528,124 HOUSTON AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_116_14.04,-74.499012,39.3284715,124 HOUSTON AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_116_14.05,-74.62974644,39.36392239,122 HOUSTON AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_116_14.05,-74.36681502,39.40850718,122 HOUSTON AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_116_18.01,-74.62723606,39.35520549,118 HOUSTON AVE,ATLANTIC CITY CITY,37,1991,1,RES1,3001 -0102_116_18.01,-74.36879048,39.40902433,118 HOUSTON AVE,ATLANTIC CITY CITY,37,1991,1,RES1,3001 -0102_116_18.02,-74.5973024,39.3607363,116 HOUSTON AVE,ATLANTIC CITY CITY,37,1991,1,RES1,3001 -0102_116_18.02,-74.41074417,39.39120848,116 HOUSTON AVE,ATLANTIC CITY CITY,37,1991,1,RES1,3001 -0102_116_18.03,-74.81728157,39.63728919,115 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1991,1,RES1,3001 -0102_116_18.03,-74.671409,39.3827705,115 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1991,1,RES1,3001 -0102_116_18.04,-74.51088029,39.47848231,117 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1991,1,RES1,3001 -0102_116_18.04,-74.50537617,39.33024497,117 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1991,1,RES1,3001 -0102_116_2,-74.50018164,39.487679,426 MADISON AVE,ATLANTIC CITY CITY,15,1900,1,RES1,3001 -0102_116_2,-74.51231426,39.32388283,426 MADISON AVE,ATLANTIC CITY CITY,15,1900,1,RES1,3001 -0102_116_20.01,-74.807019,39.6325625,111 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_116_20.01,-74.65476967,39.39675333,111 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_116_20.02,-74.59268902,39.36482388,109 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_116_20.02,-74.377983,39.3969425,109 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_116_22,-74.60139259,39.36681826,108 HOUSTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_116_22,-74.4416355,39.3714545,108 HOUSTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_116_22.01,-74.59554048,39.35804684,427 GRAMMERCY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_116_22.01,-74.37808746,39.40186667,427 GRAMMERCY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_116_22.02,-74.58740583,39.35187147,425 GRAMMERCY AVE,ATLANTIC CITY CITY,37,2006,1,RES1,3001 -0102_116_22.02,-74.3864255,39.397717,425 GRAMMERCY AVE,ATLANTIC CITY CITY,37,2006,1,RES1,3001 -0102_116_24,-74.59959306,39.35836278,104 HOUSTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_116_24,-74.40661909,39.37834487,104 HOUSTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_116_25,-74.590577,39.3636835,102 HOUSTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_116_25,-74.3881335,39.394633,102 HOUSTON AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_116_26,-74.58115942,39.36701842,415 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_116_26,-74.38746659,39.39686722,415 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_116_29,-74.584763,39.354672,423 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_116_29,-74.39470768,39.38653684,423 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_116_3,-74.49694851,39.49942803,424 MADISON AVE,ATLANTIC CITY CITY,15,1900,1,RES1,3001 -0102_116_3,-74.51201884,39.32260949,424 MADISON AVE,ATLANTIC CITY CITY,15,1900,1,RES1,3001 -0102_116_4,-74.55274017,39.3850905,422 MADISON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_116_4,-74.5311855,39.375635,422 MADISON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_116_46,-74.5130685,39.4853115,129 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_116_46,-74.502805,39.327965,129 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_116_49.01,-74.500752,39.4945705,137 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_116_49.01,-74.51321517,39.32514098,137 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_116_49.02,-74.5133445,39.484968,133 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_116_49.02,-74.5073695,39.3276715,133 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_116_5,-74.546087,39.379386,420 MADISON AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_116_5,-74.5306035,39.382265,420 MADISON AVE,ATLANTIC CITY CITY,,1900,1,RES1,3004 -0102_116_6,-74.55700838,39.37492484,418 MADISON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_116_6,-74.5104955,39.3860425,418 MADISON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_116_7.02,-74.4943655,39.4938895,136 HOUSTON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_116_7.02,-74.50189546,39.32606083,136 HOUSTON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_117_1,-74.571144,39.3704165,416 MADISON AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_117_1,-74.52191269,39.38944873,416 MADISON AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_117_10,-74.54010961,39.39001371,136 N RHODE ISLAND AVE,ATLANTIC CITY CITY,27,2005,1,RES1,3001 -0102_117_10,-74.52039198,39.38747364,136 N RHODE ISLAND AVE,ATLANTIC CITY CITY,27,2005,1,RES1,3001 -0102_117_11,-74.56053532,39.37389295,132 N RHODE ISLAND AVE,ATLANTIC CITY CITY,27,2005,1,RES1,3001 -0102_117_11,-74.5143275,39.3854205,132 N RHODE ISLAND AVE,ATLANTIC CITY CITY,27,2005,1,RES3A,3001 -0102_117_16.01,-74.62616,39.36154,119 HOUSTON AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_117_16.01,-74.3691315,39.4083105,119 HOUSTON AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_117_16.02,-74.61986982,39.36793296,115 HOUSTON AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_117_16.02,-74.36837756,39.40868417,115 HOUSTON AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_117_16.03,-74.64549468,39.32631164,111 HOUSTON AVE,ATLANTIC CITY CITY,17,2005,1,RES3A,3001 -0102_117_16.03,-74.36147367,39.40941332,111 HOUSTON AVE,ATLANTIC CITY CITY,17,2005,1,COM1,3004 -0102_117_16.04,-74.60172031,39.36385855,107 HOUSTON AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_117_16.04,-74.44272919,39.37049172,107 HOUSTON AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_117_16.05,-74.6138495,39.3514,407 GRAMMERCY PL,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_117_16.05,-74.4221963,39.37423906,407 GRAMMERCY PL,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_117_16.06,-74.60685621,39.36097194,403 GRAMMERCY AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3004 -0102_117_16.06,-74.40102108,39.38821113,403 GRAMMERCY AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3004 -0102_117_16.07,-74.63384447,39.31737815,401 GRAMMERCY AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_117_16.07,-74.36110793,39.4104772,401 GRAMMERCY AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3004 -0102_117_16.08,-74.63322064,39.36242624,110 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_117_16.08,-74.36743058,39.40516097,110 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,2006,1,GOV1,3004 -0102_117_2,-74.540623,39.3905625,414 MADISON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_117_2,-74.52188511,39.3878823,414 MADISON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_117_28,-74.59699052,39.36146471,101 HOUSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_117_28,-74.40922498,39.38275593,101 HOUSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_117_3,-74.53505557,39.39818004,410 MADISON AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_117_3,-74.52542867,39.3859073,410 MADISON AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_117_37.01,-74.5316555,39.3830595,131 HOUSTON AVE,ATLANTIC CITY CITY,17,2006,1,RES3A,3001 -0102_117_37.01,-74.4520545,39.375028,131 HOUSTON AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_117_37.02,-74.544257,39.3753585,127 HOUSTON AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_117_37.02,-74.37708746,39.41324948,127 HOUSTON AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_117_4.04,-74.5415525,39.3816375,128 N RHODE ISLAND AVE,ATLANTIC CITY CITY,28,2000,2,GOV1,3004 -0102_117_4.04,-74.44729091,39.37428743,128 N RHODE ISLAND AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_117_4.05,-74.54467653,39.37210576,124 N RHODE ISLAND AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_117_4.05,-74.38155544,39.41857127,124 N RHODE ISLAND AVE,ATLANTIC CITY CITY,28,2000,2,RES3A,3001 -0102_117_4.06,-74.83251617,39.3640425,120 N RHODE ISLAND AVE,ATLANTIC CITY CITY,28,2000,2,GOV1,3004 -0102_117_4.06,-74.37407977,39.41689013,120 N RHODE ISLAND AVE,ATLANTIC CITY CITY,28,2000,2,GOV1,3004 -0102_117_4.07,-74.6736585,39.3601415,118 N RHODE ISLAND AVE,ATLANTIC CITY CITY,28,2000,2,RES3A,3001 -0102_117_4.07,-74.36152789,39.4124815,118 N RHODE ISLAND AVE,ATLANTIC CITY CITY,28,2000,2,RES1,3001 -0102_117_4.08,-74.64637738,39.3536377,123 HOUSTON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_117_4.08,-74.35726897,39.41533052,123 HOUSTON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_117_4.12,-74.62271549,39.36308855,106 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_117_4.12,-74.3688535,39.4083305,106 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_117_5.01,-74.56224032,39.39053762,406 MADISON AVE,ATLANTIC CITY CITY,37,1900,1,GOV1,3004 -0102_117_5.01,-74.51853643,39.40095768,406 MADISON AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_117_5.02,-74.55726517,39.39834919,404 MADISON AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_117_5.02,-74.51907382,39.39855483,404 MADISON AVE,ATLANTIC CITY CITY,37,1900,1,RES3A,3001 -0102_117_5.03,-74.58755327,39.37129207,402 MADISON AVE,ATLANTIC CITY CITY,37,2006,1,RES1,3001 -0102_117_5.03,-74.51464184,39.39458174,402 MADISON AVE,ATLANTIC CITY CITY,37,2006,1,RES1,3001 -0102_117_5.04,-74.5817825,39.377568,400 MADISON AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_117_5.04,-74.52297463,39.40062174,400 MADISON AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_118_1,-74.60845291,39.38398622,318 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_118_1,-74.50915529,39.40456014,318 MADISON AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_118_19,-74.5916245,39.3702455,317 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_118_19,-74.52762768,39.40222906,317 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_118_20,-74.5915958,39.37624441,319 BEACH AVE,ATLANTIC CITY CITY,17,1920,2,RES1,3001 -0102_118_20,-74.51801996,39.39795345,319 BEACH AVE,ATLANTIC CITY CITY,17,1920,2,RES1,3001 -0102_118_4,-74.615981,39.381227,314 MADISON AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_118_4,-74.507027,39.419066,314 MADISON AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_118_5.01,-74.60871536,39.39395211,126 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_118_5.01,-74.5144305,39.4128045,126 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,COM1,3004 -0102_118_5.02,-74.61214952,39.38881831,124 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_118_5.02,-74.5228295,39.4023335,124 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_118_5.03,-74.60821921,39.39237637,122 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_118_5.03,-74.49844204,39.41171382,122 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_118_5.04,-74.60781547,39.39201262,120 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_118_5.04,-74.50169582,39.4175667,120 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_118_5.05,-74.6086955,39.372493,118 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,GOV1,3004 -0102_118_5.05,-74.50007336,39.40959861,118 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,COM4,3004 -0102_118_5.06,-74.601023,39.3707245,116 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_118_5.06,-74.4862493,39.43582243,116 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,REL1,3004 -0102_118_5.07,-74.61158258,39.38958818,304 MADISON AVE,ATLANTIC CITY CITY,28,1900,2,RES1,3001 -0102_118_5.07,-74.5157845,39.40275,304 MADISON AVE,ATLANTIC CITY CITY,28,1900,2,RES1,3001 -0102_118_5.08,-74.60831037,39.39219663,306 MADISON AVE,ATLANTIC CITY CITY,28,1900,1,RES1,3001 -0102_118_5.08,-74.50359318,39.41140652,306 MADISON AVE,ATLANTIC CITY CITY,28,1900,1,RES1,3001 -0102_118_5.09,-74.60508441,39.3878519,308 MADISON AVE,ATLANTIC CITY CITY,28,1999,2,RES1,3001 -0102_118_5.09,-74.50351576,39.41455442,308 MADISON AVE,ATLANTIC CITY CITY,28,1999,2,RES1,3001 -0102_118_5.11,-74.5995555,39.3696625,309 BEACH AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_118_5.11,-74.47873378,39.43164432,309 BEACH AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_118_5.12,-74.602723,39.3698755,311 BEACH AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3004 -0102_118_5.12,-74.48540488,39.43508456,311 BEACH AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_118_5.13,-74.59228981,39.37819642,313 BEACH AVE,ATLANTIC CITY CITY,28,1998,2,RES3A,3001 -0102_118_5.13,-74.526786,39.3940005,313 BEACH AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_118_5.14,-74.59598327,39.38344262,315 BEACH AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_118_5.14,-74.52912582,39.39821892,315 BEACH AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_119_1,-74.542978,39.374345,322 BEACH AVE,ATLANTIC CITY CITY,45,1991,2,GOV1,3004 -0102_119_1,-74.37665856,39.41314032,322 BEACH AVE,ATLANTIC CITY CITY,45,1991,2,RES3A,3001 -0102_119_19,-74.53793294,39.37208953,307 GRAMMERCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_119_19,-74.37454477,39.41655756,307 GRAMMERCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_119_2,-74.54326889,39.37413333,318 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_119_2,-74.36899177,39.41130494,318 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_119_20,-74.79664542,39.36615801,309 GRAMMERCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_119_20,-74.372876,39.418336,309 GRAMMERCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_119_22,-74.687832,39.3589165,311 GRAMMERCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_119_22,-74.361596,39.41167783,311 GRAMMERCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_119_23,-74.65949864,39.35834378,313 GRAMMERCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_119_23,-74.35689225,39.41487688,313 GRAMMERCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_119_24,-74.6349505,39.3622055,315 GRAMMERCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_119_24,-74.366026,39.4179375,315 GRAMMERCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_119_25,-74.6319795,39.364063,317 GRAMMERCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_119_25,-74.366708,39.405985,317 GRAMMERCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_119_28,-74.6342735,39.3478315,101 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_119_28,-74.36354215,39.40906404,101 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_119_3.01,-74.55175393,39.38562524,110 N VERMONT AVE,ATLANTIC CITY CITY,29,1998,2,RES1,3001 -0102_119_3.01,-74.53058028,39.38649861,110 N VERMONT AVE,ATLANTIC CITY CITY,29,1998,2,RES1,3001 -0102_119_3.02,-74.57026116,39.37425952,108 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_119_3.02,-74.5225215,39.390297,108 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,COM1,3004 -0102_119_3.03,-74.541055,39.3808395,106 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_119_3.03,-74.44759499,39.37361355,106 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_119_3.04,-74.55091219,39.37071494,104 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES3A,3001 -0102_119_3.04,-74.378662,39.417459,104 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_119_3.05,-74.55171985,39.37612846,102 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,EDU1,3004 -0102_119_3.05,-74.37339849,39.41397867,102 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES3A,3001 -0102_119_3.06,-74.77705778,39.30317233,100 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES3A,3001 -0102_119_3.06,-74.361435,39.4113865,100 N VERMONT AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_119_3.07,-74.5441185,39.37881317,308 BEACH AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_119_3.07,-74.51989627,39.39328435,308 BEACH AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_119_3.08,-74.531857,39.3801025,310 BEACH AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_119_3.08,-74.50698872,39.38491474,310 BEACH AVE,ATLANTIC CITY CITY,27,1998,2,COM10,3003 -0102_119_3.09,-74.5401235,39.383745,314 BEACH AVE,ATLANTIC CITY CITY,27,1998,2,RES3B,3001 -0102_119_3.09,-74.44665315,39.37518149,314 BEACH AVE,ATLANTIC CITY CITY,27,1998,2,COM1,3004 -0102_119_3.10,-74.55010432,39.36888346,316 BEACH AVE,ATLANTIC CITY CITY,27,1999,2,RES1,3001 -0102_119_3.10,-74.362829,39.419942,316 BEACH AVE,ATLANTIC CITY CITY,27,1999,2,RES3A,3002 -0102_119_32,-74.82514477,39.36422784,113 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,1991,1,RES1,3001 -0102_119_32,-74.37534622,39.4178519,113 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,1991,1,RES1,3001 -0102_119_4,-74.56861523,39.37394633,306 BEACH AVE,ATLANTIC CITY CITY,45,1919,2,RES1,3001 -0102_119_4,-74.53109217,39.38975251,306 BEACH AVE,ATLANTIC CITY CITY,45,1919,2,RES1,3001 -0102_12_1,-74.60637657,39.32501873,101 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_12_1,-74.48632878,39.346943,101 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_120_1.01,-74.5608615,39.416161,133 N VERMONT AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_120_1.01,-74.494709,39.432673,133 N VERMONT AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3002 -0102_120_1.02,-74.5746345,39.41192003,236 MADISON AVE,ATLANTIC CITY CITY,39,1900,1,RES3A,3001 -0102_120_1.02,-74.49411174,39.43078933,236 MADISON AVE,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_120_1.03,-74.55236582,39.42752252,234 MADISON AVE,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_120_1.03,-74.4902796,39.4290998,234 MADISON AVE,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_120_1.04,-74.5534905,39.425795,232 MADISON AVE,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_120_1.04,-74.4970975,39.428627,232 MADISON AVE,ATLANTIC CITY CITY,39,1900,1,RES3A,3001 -0102_120_1.05,-74.54073,39.411436,129 N VERMONT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_120_1.05,-74.518309,39.4115765,129 N VERMONT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_120_1.06,-74.562062,39.4091155,131 N VERMONT AVE,ATLANTIC CITY CITY,35,2001,1,RES1,3001 -0102_120_1.06,-74.49107081,39.42158696,131 N VERMONT AVE,ATLANTIC CITY CITY,35,2001,1,COM1,3004 -0102_120_10,-74.60927,39.38459,116 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_10,-74.50553024,39.40547117,116 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_11,-74.59547762,39.37816111,115 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_11,-74.5253355,39.393823,115 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES3B,3001 -0102_120_12,-74.598053,39.381719,117 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,COM1,3004 -0102_120_12,-74.50336999,39.40872417,117 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_13,-74.60591828,39.39105397,125 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_13,-74.502069,39.417404,125 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES3A,3001 -0102_120_14,-74.61328716,39.39021717,127 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES3A,3001 -0102_120_14,-74.51360784,39.40584194,127 N VERMONT AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_4,-74.5726765,39.4274355,226-230 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_120_4,-74.50343821,39.43448303,226-230 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_120_5,-74.56091917,39.41573449,130 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_5,-74.496211,39.4321855,130 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_6,-74.56361853,39.40402037,128 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_6,-74.490586,39.4194455,128 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_7,-74.60922468,39.38666855,126 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3004 -0102_120_7,-74.511957,39.4173875,126 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_8,-74.61007309,39.39129677,124 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_8,-74.51053017,39.40722459,124 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_9,-74.60170917,39.39058401,118 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_120_9,-74.50137336,39.4169583,118 FOLSOM AVE,ATLANTIC CITY CITY,28,1998,2,RES1,3004 -0102_121.01_1,-74.57510547,39.42960732,204 MADISON AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.01_1,-74.50155963,39.43157122,204 MADISON AVE,ATLANTIC CITY CITY,27,1998,2,RES3B,3001 -0102_121.01_2,-74.57362393,39.42937111,202 MADISON AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.01_2,-74.50317819,39.43081058,202 MADISON AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.01_3,-74.57197381,39.42931991,200 MADISON AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.01_3,-74.50320317,39.43007499,200 MADISON AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.01_4,-74.57343752,39.42967391,128 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.01_4,-74.5037735,39.431688,128 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1998,1,RES3A,3001 -0102_121.01_5,-74.57490046,39.42770237,126 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1998,1,RES3A,3001 -0102_121.01_5,-74.49514172,39.42810065,126 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.01_6,-74.55543547,39.4040073,124 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3002 -0102_121.01_6,-74.49195509,39.43415849,124 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.01_7,-74.51576309,39.52567031,201 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_121.01_7,-74.51509943,39.32987083,201 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_121.01_8,-74.50212393,39.5337308,203 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_121.01_8,-74.5221855,39.3182145,203 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3002 -0102_121.01_9,-74.50101,39.5218425,205 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_121.01_9,-74.52288191,39.31862767,205 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_121.02_1,-74.57213361,39.36897217,216 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_121.02_1,-74.5299925,39.3893495,216 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_121.02_10,-74.5112855,39.490531,201 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_10,-74.515906,39.3219335,201 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_11,-74.4992929,39.50149546,203 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3002 -0102_121.02_11,-74.514984,39.322387,203 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_12,-74.489711,39.498528,205 GRAMMERCY PL,ATLANTIC CITY CITY,27,1997,2,RES1,3001 -0102_121.02_12,-74.5197316,39.32242881,205 GRAMMERCY PL,ATLANTIC CITY CITY,27,1997,2,RES1,3002 -0102_121.02_13,-74.5441695,39.399557,207 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_13,-74.519529,39.4013475,207 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_14,-74.53957969,39.38636621,209 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_14,-74.5283465,39.3873375,209 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3002 -0102_121.02_15,-74.554766,39.381824,211 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_15,-74.52957699,39.38919617,211 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_16,-74.56005428,39.37264998,213 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_16,-74.52383419,39.39063472,213 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_17,-74.5478455,39.3809515,215 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_17,-74.5275985,39.384897,215 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_18,-74.534256,39.3819135,217 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_18,-74.449733,39.3743845,217 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_19,-74.53979341,39.3840007,219 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_19,-74.366825,39.420575,219 GRAMMERCY PL,ATLANTIC CITY CITY,28,1997,2,RES1,3001 -0102_121.02_2,-74.53363331,39.38752151,214 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES3A,3001 -0102_121.02_2,-74.526838,39.3873455,214 DYLAN DR,ATLANTIC CITY CITY,28,1998,2,RES1,3001 -0102_121.02_3,-74.5584185,39.398515,212 DYLAN DR,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.02_3,-74.51462017,39.39967304,212 DYLAN DR,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.02_4,-74.59338599,39.37622679,210 DYLAN DR,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.02_4,-74.5201681,39.39693893,210 DYLAN DR,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.02_5,-74.49971817,39.50016942,208 DYLAN DR,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.02_5,-74.51396362,39.32204039,208 DYLAN DR,ATLANTIC CITY CITY,27,1998,2,COM4,3004 -0102_121.02_6,-74.529954,39.499712,206 DYLAN DR,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.02_6,-74.51304,39.321794,206 DYLAN DR,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.02_7,-74.5307735,39.498398,204 DYLAN DR,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.02_7,-74.5129125,39.321638,204 DYLAN DR,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.02_8,-74.485719,39.524992,202 DYLAN DR,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.02_8,-74.52353689,39.32125739,202 DYLAN DR,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_121.02_9,-74.49810156,39.52791534,200 DYLAN DR,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_121.02_9,-74.52109766,39.31870801,200 DYLAN DR,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_122_1,-74.8067165,39.6279605,47 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_122_1,-74.6390255,39.3805485,47 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_122_10,-74.79499191,39.62816515,38 N TAYLOR AVENUE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_122_10,-74.63645493,39.38214143,38 N TAYLOR AVENUE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_122_2,-74.80826312,39.63075057,45 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_122_2,-74.63673357,39.38170235,45 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,AGR1,3001 -0102_122_24,-74.56995089,39.35530119,401 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_122_24,-74.49883133,39.3358768,401 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_122_3,-74.80454854,39.62720333,43 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,15,1930,1,RES1,3001 -0102_122_3,-74.63892813,39.38173467,43 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,15,1930,1,RES1,3001 -0102_122_42,-74.81388937,39.6152141,33 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_122_42,-74.62211257,39.37923881,33 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_122_43,-74.83862743,39.60635736,35 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_122_43,-74.6365645,39.38479866,35 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_122_44,-74.80331606,39.62954465,37 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_122_44,-74.6355486,39.38355083,37 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_122_46,-74.80446535,39.62851746,N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_122_46,-74.63421169,39.38275159,N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_122_6,-74.80736474,39.6252977,422 GRAMMERCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_122_6,-74.64414981,39.37363002,422 GRAMMERCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_123_11,-74.61423553,39.34026968,22 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_123_11,-74.39165866,39.39266602,22 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_123_4,-74.57634427,39.35613192,408 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_123_4,-74.39032397,39.39032616,408 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,REL1,3004 -0102_123_8,-74.59816484,39.34626433,38 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_123_8,-74.3933265,39.39195883,38 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_3,-74.59133783,39.351775,33 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_124_3,-74.382923,39.3971205,33 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_124_31,-74.58467779,39.35952593,17 IRVING AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_124_31,-74.39186394,39.39041135,17 IRVING AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_124_36,-74.598424,39.3641205,32 N VERMONT AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3002 -0102_124_36,-74.4407695,39.371144,32 N VERMONT AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_124_37,-74.59953776,39.36787157,29 N IRVING AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_124_37,-74.442758,39.3732195,29 N IRVING AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_124_38,-74.650899,39.343667,308 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_124_38,-74.36703613,39.4099993,308 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_41,-74.60810616,39.36353667,34 N VERMONT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_41,-74.43520809,39.36828344,34 N VERMONT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_44,-74.58642449,39.35806103,24 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_44,-74.38157433,39.40072998,24 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_46,-74.6123295,39.3381765,8 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_124_46,-74.39466011,39.39233883,8 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_47,-74.587089,39.348285,6 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_47,-74.39784586,39.39280341,6 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_124_48,-74.58185682,39.34589047,4 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_48,-74.3894845,39.3931435,4 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_51,-74.58410554,39.33745149,307 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_51,-74.386925,39.392969,307 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_53,-74.56541253,39.36155532,311 ATLANTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_124_53,-74.37729067,39.400948,311 ATLANTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_124_54,-74.57248395,39.36764234,313 ATLANTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_54,-74.50996594,39.33587333,313 ATLANTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_58,-74.554566,39.361308,321 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_58,-74.51093206,39.33606271,321 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_60,-74.556098,39.3617835,323 ATLANTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_60,-74.51123494,39.33818183,323 ATLANTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_62,-74.55877374,39.36460192,325 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_62,-74.50063055,39.33460333,325 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_124_65,-74.57980324,39.33455402,11 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_124_65,-74.3858525,39.390399,11 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_124_66,-74.58255662,39.34608913,13 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_124_66,-74.38720084,39.38993148,13 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_124_67,-74.59504879,39.35073901,15 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_124_67,-74.3941255,39.3929135,15 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_124_75,-74.60471766,39.34334177,25 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_124_75,-74.389578,39.390639,25 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_76,-74.57605364,39.35554917,27 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_124_76,-74.3901005,39.3899895,27 N RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_124_77,-74.57813689,39.35169474,29 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_77,-74.39670717,39.38609271,29 N RHODE ISLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_124_78,-74.590353,39.3568845,31 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_78,-74.37966471,39.39790132,31 N RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_79,-74.578615,39.336052,301 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_124_79,-74.387473,39.3913355,301 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_125_1,-74.8125985,39.354236,210 GRAMMERCY PL,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_125_1,-74.362116,39.4112425,210 GRAMMERCY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_125_15,-74.7973176,39.63920004,201 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_125_15,-74.64522912,39.37754977,201 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_125_22,-74.59823527,39.33881657,225 ATLANTIC AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_125_22,-74.38846339,39.39264194,225 ATLANTIC AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_125_3.01,-74.54825617,39.38262971,26 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,GOV1,3004 -0102_125_3.01,-74.52362786,39.38523618,26 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,GOV1,3004 -0102_125_3.02,-74.5464315,39.36907,24 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.02,-74.36583995,39.42157483,24 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,GOV1,3004 -0102_125_3.03,-74.54801845,39.37674034,22 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.03,-74.3697005,39.4156315,22 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.04,-74.6428885,39.361928,20 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.04,-74.35924115,39.41477043,20 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,GOV1,3004 -0102_125_3.05,-74.8124855,39.6326855,18 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.05,-74.65252135,39.39855303,18 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,GOV1,3004 -0102_125_3.06,-74.812902,39.632883,16 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.06,-74.64368817,39.40131481,16 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.07,-74.81581913,39.63330131,14 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.07,-74.64498416,39.39129606,14 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.08,-74.8098525,39.6359445,12 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.08,-74.6378564,39.39070042,12 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.09,-74.805301,39.631916,10 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.09,-74.6335085,39.391575,10 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.10,-74.798701,39.6335005,8 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.10,-74.63316748,39.39345675,8 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_125_3.11,-74.80326722,39.63440334,6 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_125_3.11,-74.62570563,39.38546853,6 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_125_32,-74.63023889,39.36429479,27 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_125_32,-74.36836362,39.40779416,27 N VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_14,-74.499049,39.4719065,7 LAWN PL,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_126_14,-74.5042105,39.332778,7 LAWN PL,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_126_15,-74.50070724,39.48707584,5 LAWN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_15,-74.50422039,39.3307124,5 LAWN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_28,-74.508811,39.4724655,24 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_126_28,-74.49983496,39.3328611,24 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_3,-74.568195,39.367444,214 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_3,-74.48840039,39.35171669,214 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_31,-74.49257829,39.47461464,201 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_31,-74.499044,39.3332265,201 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_4,-74.56628202,39.36093016,212 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_126_4,-74.37679959,39.39673955,212 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_43,-74.48386721,39.49571184,212 GRAFTON TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_43,-74.50458625,39.33320032,212 GRAFTON TERR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_126_53,-74.498567,39.4726245,211 GRAFTON TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_53,-74.50905417,39.33296926,211 GRAFTON TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_126_59,-74.56775796,39.35650065,109 VERMONT TERR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_126_59,-74.50797069,39.33921562,109 VERMONT TERR,ATLANTIC CITY CITY,17,1900,1,IND2,3002 -0102_126_63,-74.55341658,39.36287884,10 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_126_63,-74.4877235,39.348717,10 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_126_64,-74.5536875,39.3614335,9 BELLE HAVEN CT,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_126_64,-74.51121033,39.33645004,9 BELLE HAVEN CT,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_126_65,-74.56901353,39.35389006,12 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_126_65,-74.5067915,39.3355965,12 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_126_66,-74.56343043,39.36249326,11 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_126_66,-74.50257537,39.34327595,11 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_126_67,-74.56468315,39.35579146,14 BELLE HAVEN CT,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_126_67,-74.5083975,39.3364475,14 BELLE HAVEN CT,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_126_68,-74.573914,39.352424,15 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_126_68,-74.50361949,39.33500766,15 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_126_69,-74.5751016,39.35644681,16 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_126_69,-74.50843706,39.33909173,16 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_126_70,-74.565168,39.355643,17 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1924,1,GOV1,3004 -0102_126_70,-74.49903766,39.33608452,17 BELLE HAVEN CT,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_127_5,-74.5607255,39.3657175,300 ATLANTIC AVE,ATLANTIC CITY CITY,,1984,1,RES1,3001 -0102_127_5,-74.503228,39.33461617,300 ATLANTIC AVE,ATLANTIC CITY CITY,,1984,1,RES1,3001 -0102_127_6,-74.47283476,39.4873376,21 LIGHTHOUSE LANE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_127_6,-74.50545313,39.33393915,21 LIGHTHOUSE LANE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_127_7,-74.55068346,39.36106091,301 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_127_7,-74.4932375,39.33971,301 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_128_13,-74.51025604,39.3277791,33 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_128_13,-74.81974478,39.49451806,33 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_128_19,-74.51026634,39.32837299,36 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_128_19,-74.80366905,39.49796259,36 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_128_29,-74.453088,39.488365,16 S RHODE ISLAND AVE #D,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_128_29,-74.49123183,39.33426134,16 S RHODE ISLAND AVE #D,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_128_30,-74.4526785,39.497845,16 S RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1925,4,RES3A,3001 -0102_128_30,-74.49706325,39.33271292,16 S RHODE ISLAND AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_128_31,-74.462587,39.4937095,16 S RHODE ISLAND AVE #C,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_128_31,-74.4975265,39.3339885,16 S RHODE ISLAND AVE #C,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_128_33,-74.44920729,39.49799672,16 S RHODE ISLAND AVE #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_128_33,-74.493275,39.333519,16 S RHODE ISLAND AVE #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_128_36,-74.450252,39.4960975,13 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_128_36,-74.49576956,39.33260368,13 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_128_39,-74.56472565,39.35769229,410 ATLANTIC AVE RR #A,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_128_39,-74.48965859,39.33540016,410 ATLANTIC AVE RR #A,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_128_40,-74.474353,39.4913335,408 ATLANTIC AVE RR #A,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_128_40,-74.49342161,39.33150569,408 ATLANTIC AVE RR #A,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_128_42,-74.4502375,39.4959755,11 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_128_42,-74.49822933,39.332399,11 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_128_43,-74.45253933,39.49563298,9 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_128_43,-74.4953455,39.332104,9 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_128_44,-74.4545557,39.50252481,7 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_128_44,-74.49280729,39.33169416,7 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_128_45,-74.47462101,39.49335775,5 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1910,1,GOV1,3004 -0102_128_45,-74.49269653,39.33150218,5 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1910,1,GOV1,3004 -0102_128_46,-74.469805,39.490887,3 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1910,1,GOV1,3004 -0102_128_46,-74.49684036,39.32883716,3 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_128_47,-74.48355941,39.49531216,1 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_128_47,-74.49888187,39.33353452,1 S METROPOLITAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_128_48,-74.55177349,39.36786532,416 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_128_48,-74.461259,39.3515085,416 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_128_49,-74.5460404,39.36383357,414 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_128_49,-74.4867905,39.3518945,414 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_128_50,-74.56977994,39.35937262,412 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_128_50,-74.49198566,39.33912143,412 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_128_51,-74.5660965,39.357288,400 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_128_51,-74.49692105,39.33462167,400 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_129_4,-74.46152116,39.35080601,412 WISTAR PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_129_4,-74.832118,39.488478,412 WISTAR PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_130_1,-74.51324367,39.32850597,508 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_130_1,-74.828357,39.474113,508 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_130_10,-74.3631035,39.411351,18 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_130_10,-74.88278444,39.59402187,18 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_130_18,-74.574033,39.4217735,30 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_130_18,-74.50198739,39.44393625,30 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_130_40,-74.4737042,39.48274883,516 WISTAR PL,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_130_40,-74.50558024,39.32543555,516 WISTAR PL,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_130_41,-74.36045617,39.41291099,25 S CONGRESS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_130_41,-74.88237067,39.59665383,25 S CONGRESS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_1,-74.52254252,39.31762334,538 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_1,-74.82153706,39.47367243,538 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_19,-74.4734885,39.4837,28 S CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_131_19,-74.52923415,39.30939605,28 S CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_131_25,-74.47453963,39.48521231,36 S CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_131_25,-74.5276485,39.3131005,36 S CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_131_26,-74.47374357,39.48643176,31 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_26,-74.5259045,39.313451,31 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_28,-74.44534182,39.48490986,40 S CONGRESS AVE,ATLANTIC CITY CITY,35,1910,1,RES1,3001 -0102_131_28,-74.5243075,39.3159835,40 S CONGRESS AVE,ATLANTIC CITY CITY,35,1910,1,RES1,3001 -0102_131_29,-74.45700665,39.47376631,42 S CONGRESS AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_131_29,-74.52392316,39.31637028,42 S CONGRESS AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_131_3,-74.51092267,39.33138048,530 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_3,-74.8280415,39.477942,530 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_30,-74.46178985,39.47409922,44 S CONGRESS AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_131_30,-74.5209235,39.3166725,44 S CONGRESS AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_131_37,-74.52612289,39.46345476,521 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_37,-74.5209565,39.316894,521 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_131_4,-74.516133,39.330598,526 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_4,-74.83222111,39.47720873,526 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_7,-74.52092757,39.31985834,534 ATLANTIC AVE RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_131_7,-74.882579,39.4511945,534 ATLANTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_8,-74.44540324,39.49361609,17 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_131_8,-74.50393298,39.32404413,17 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_134_1,-74.5906675,39.327845,800 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_134_1,-74.4867645,39.347532,800 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_135_1,-74.5109955,39.4618395,918 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_135_1,-74.48678716,39.33327377,918 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_135_2,-74.5272197,39.46426033,900 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_135_2,-74.53106804,39.30846466,900 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_135_3,-74.51369151,39.46324533,39 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_135_3,-74.437462,39.364627,39 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_1,-74.59018113,39.32811904,1016 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_136_1,-74.48546961,39.3480452,1016 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_11,-74.49910615,39.46973834,20 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,IND2,3004 -0102_136_11,-74.42296535,39.36595091,20 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_12,-74.50015719,39.45454682,22 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_12,-74.42405461,39.36607118,22 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_14,-74.4894755,39.458095,26 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_136_14,-74.42529168,39.36606345,26 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_18,-74.49531656,39.44125902,1001 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_18,-74.81011648,39.65097265,1001 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_19,-74.4732615,39.4476265,1003 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_136_19,-74.8071385,39.6404885,1003 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_2,-74.52449,39.4533585,1008 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_2,-74.435349,39.3671245,1008 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_21,-74.43597624,39.4898787,1009 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_21,-74.81514207,39.64112533,1009 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_23,-74.46218833,39.45487903,37 S GORDONS ALLEY,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_136_23,-74.81500267,39.6562875,37 S GORDONS ALLEY,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_136_25,-74.4887045,39.4406755,35 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_25,-74.80768595,39.64946115,35 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_26,-74.49898108,39.44244683,33 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_26,-74.82008929,39.64382447,33 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_27,-74.50652296,39.44966416,31 S GORDONS ALLEY,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_136_27,-74.83324598,39.64261617,31 S GORDONS ALLEY,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_136_28,-74.50132067,39.44901817,29 S GORDONS ALLEY,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_136_28,-74.82060708,39.6555607,29 S GORDONS ALLEY,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_136_29,-74.5177535,39.4444635,27 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_29,-74.7975656,39.66230462,27 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_30,-74.51993102,39.44203616,25 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_30,-74.79882333,39.66049331,25 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_31,-74.518258,39.44554,23 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_31,-74.420088,39.367816,23 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_32,-74.5170585,39.4450655,21 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_32,-74.4428565,39.357527,21 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_33,-74.52855444,39.44947016,19 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_33,-74.42516096,39.36641082,19 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_136_34,-74.5018685,39.4647005,15 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_34,-74.43084791,39.36590805,15 S GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_5,-74.51181181,39.46681315,1000 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES2,3005 -0102_136_5,-74.43338,39.3656225,1000 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_7,-74.52288321,39.45643077,12 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_7,-74.44090614,39.36726517,12 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_8,-74.52200307,39.46155672,14 S VIRGINIA AVE,ATLANTIC CITY CITY,45,1950,2,RES1,3001 -0102_136_8,-74.437637,39.3679245,14 S VIRGINIA AVE,ATLANTIC CITY CITY,45,1950,2,RES1,3001 -0102_136_9,-74.51087964,39.46018932,16 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_136_9,-74.433954,39.368208,16 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_1,-74.5902065,39.333485,1030 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_137_1,-74.48699645,39.3510322,1030 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_10,-74.42946832,39.49320649,1015 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_10,-74.81624566,39.64179155,1015 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_2,-74.57745735,39.33241947,5 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_2,-74.4696135,39.343439,5 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_3,-74.587252,39.3327965,1024 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_3,-74.48165434,39.35061146,1024 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_4,-74.58664751,39.32882333,1018 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_4,-74.48239682,39.35044322,1018 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_5,-74.59167819,39.33358571,9 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_5,-74.466785,39.3431725,9 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_6,-74.579351,39.333832,15 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_6,-74.46855421,39.34371615,15 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_7,-74.59049502,39.31764633,29 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_137_7,-74.46814686,39.34390683,29 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_1,-74.50954803,39.43441571,1102 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_1,-74.8081202,39.64217633,1102 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_10,-74.58642132,39.32120296,26 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_10,-74.48606813,39.33723765,26 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_12,-74.618389,39.3102285,34 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_138_12,-74.47686449,39.33760207,34 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_138_13,-74.59642859,39.30907424,1101 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_13,-74.482793,39.3404135,1101 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_14,-74.597065,39.309823,1109 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_14,-74.48245433,39.341443,1109 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_2,-74.44070386,39.48705178,1100 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_2,-74.81130718,39.64198994,1100 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_3,-74.58802369,39.318726,12 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_3,-74.46899735,39.34437061,12 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_5,-74.588512,39.32008118,18 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_5,-74.46847983,39.34619051,18 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_7,-74.506577,39.4237375,21 S MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_7,-74.79000865,39.64993138,21 S MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_8,-74.5901535,39.320218,22 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_8,-74.48563467,39.33581899,22 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_9,-74.5920675,39.32119,24 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_138_9,-74.48702656,39.33714435,24 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_12,-74.5030385,39.436,11 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_12,-74.78375326,39.67279077,11 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_15,-74.49775995,39.43009323,14 S MANSION AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_139_15,-74.79192362,39.65697162,14 S MANSION AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_139_16,-74.49424509,39.43310648,16 S MANSION AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_139_16,-74.767872,39.662396,16 S MANSION AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_139_19,-74.50551635,39.42984547,21 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_19,-74.77709914,39.63965181,21 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_139_20,-74.49764167,39.43159725,25 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_20,-74.88449289,39.59376026,25 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_21,-74.5027835,39.434922,40 S MANSION AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_139_21,-74.71242333,39.64704484,40 S MANSION AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_139_22,-74.489025,39.427798,42 S MANSION AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_139_22,-74.68680651,39.65398327,42 S MANSION AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_139_24,-74.48738,39.4335185,27 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_24,-74.88599314,39.58269525,27 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_25,-74.526935,39.4112355,33 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_25,-74.88403319,39.56496071,33 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_26,-74.521969,39.40416467,37 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_26,-74.90685613,39.53823021,37 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_27,-74.51932649,39.40246584,1125 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_27,-74.90423079,39.53869805,1125 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_28,-74.5199265,39.4053905,1129 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_28,-74.94026281,39.52133907,1129 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_3,-74.49891271,39.43333869,1126 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_3,-74.7843905,39.67433,1126 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_4,-74.50788915,39.43137853,1124 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_4,-74.79893,39.644098,1124 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_139_7,-74.498578,39.430151,1114 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_7,-74.804479,39.6420035,1114 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_8,-74.499618,39.4293225,1112 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_139_8,-74.814138,39.6453995,1112 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_14_1,-74.50543952,39.33502584,4020 ATLANTIC AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_14_1,-74.86261047,39.58756216,4020 ATLANTIC AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_14_2,-74.507806,39.3382295,114 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_14_2,-74.80231186,39.60370665,114 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_14_3,-74.50720502,39.33840117,116 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1907,1,RES1,3001 -0102_14_3,-74.78888077,39.63288839,116 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1907,1,RES1,3001 -0102_14_4,-74.50467524,39.34221997,128 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1928,1,GOV1,3004 -0102_14_4,-74.79083361,39.63394866,128 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1928,1,RES1,3001 -0102_140_1,-74.49417423,39.43194443,1218 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_1,-74.78398319,39.66419656,1218 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_10,-74.52986733,39.40363566,26 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_10,-74.88331548,39.56314108,26 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_15,-74.51397467,39.40588507,31 S CHALFONTE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_140_15,-74.94148281,39.52439308,31 S CHALFONTE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_140_17,-74.67068084,39.49418247,1207 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_17,-74.59468468,39.34568317,1207 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_2,-74.50271591,39.43514254,1210 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_2,-74.7805575,39.6725775,1210 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_3,-74.50178874,39.43452962,1208 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_3,-74.79296883,39.669184,1208 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_4,-74.50885484,39.43434653,1200 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_140_4,-74.7897445,39.6767625,1200 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_5,-74.5019475,39.4316485,14 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_5,-74.716294,39.641213,14 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_6,-74.48989,39.431731,18 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_6,-74.8866475,39.5957915,18 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_7,-74.50034927,39.42466815,17 S CHALFONTE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_7,-74.93667727,39.53893107,17 S CHALFONTE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_8,-74.499193,39.419776,22 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_8,-74.934523,39.548217,22 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_9,-74.514455,39.416503,24 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_140_9,-74.88437789,39.55872038,24 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_141_1,-74.50484784,39.43099447,1238 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_1,-74.7428635,39.643252,1238 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_13,-74.68669334,39.47810452,29 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,1916,2,RES1,3001 -0102_141_13,-74.57687556,39.34285892,29 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,1916,2,RES1,3001 -0102_141_2,-74.50395426,39.42940905,1232 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_2,-74.78856146,39.64409802,1232 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_3,-74.4971535,39.4340855,7 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_3,-74.88787168,39.57875858,7 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_4,-74.5239745,39.424068,1226 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_4,-74.78724792,39.6438565,1226 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_5,-74.50487367,39.42441329,1222 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_5,-74.78625968,39.65344454,1222 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_7,-74.5020595,39.4192675,11 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_7,-74.9714785,39.5154432,11 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_8,-74.6831984,39.49741711,1211 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_8,-74.5937175,39.34413812,1211 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_141_9,-74.6783609,39.48211475,1217 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_141_9,-74.593899,39.342332,1217 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_142_1,-74.51419251,39.40340233,14 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_142_1,-74.94634579,39.53718889,14 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_142_2,-74.6887195,39.4978295,18 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_142_2,-74.5943705,39.3440695,18 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_142_3,-74.6836225,39.4994145,24 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_142_3,-74.5962105,39.344751,24 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_143_1,-74.40624253,39.39261667,1339 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_143_1,-74.86650715,39.56472934,1339 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_143_2,-74.8099756,39.62827582,1329 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_143_2,-74.65053854,39.3998661,1329 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_143_3,-74.8007935,39.6391015,1307 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_143_3,-74.6739195,39.38246212,1307 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_144_1,-74.534962,39.305727,9 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_1,-74.45751557,39.34978181,9 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_2,-74.40185729,39.38568654,11 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_2,-74.7183875,39.6356045,11 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_3,-74.400061,39.3869885,13 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_3,-74.7097715,39.6347255,13 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_144_4,-74.40127252,39.38790583,15 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_4,-74.79342692,39.60292115,15 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_5,-74.4048295,39.3909845,21 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_5,-74.72680469,39.59285891,21 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_7,-74.67476421,39.48471798,1317 MEMORIAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_7,-74.57600634,39.33649101,1317 MEMORIAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_8,-74.8112023,39.62551202,1321 MEMORIAL AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_144_8,-74.65023541,39.39691601,1321 MEMORIAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_9,-74.40211312,39.39221676,29 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_144_9,-74.7242335,39.5771925,29 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_1,-74.57976862,39.31086177,1336 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_1,-74.45730144,39.34815659,1336 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_2,-74.5918705,39.3158385,1334 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_2,-74.4645515,39.347338,1334 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_3,-74.59468018,39.31392921,1332 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_145_3,-74.4631165,39.3466985,1332 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_4,-74.59598639,39.31379034,1328 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_4,-74.47226539,39.34146294,1328 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_5,-74.5880785,39.312012,1326 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_5,-74.47231851,39.33946884,1326 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_6,-74.5959345,39.31063,1324 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_6,-74.48084566,39.34220801,1324 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_7,-74.59921297,39.31565193,1314 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_7,-74.48445056,39.33940729,1314 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_8,-74.6014385,39.313426,1312 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_8,-74.4767539,39.33934754,1312 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_145_9,-74.4889585,39.428232,1300 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_145_9,-74.882912,39.5980925,1300 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_1,-74.8636145,39.6007315,1 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_1,-74.63272877,39.38413124,1 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_10,-74.79668694,39.62500068,1406 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_10,-74.64985936,39.40081974,1406 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_11,-74.5791865,39.312603,1400 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_11,-74.46262717,39.34866549,1400 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_2,-74.8674395,39.597253,1434 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_2,-74.64643315,39.37611593,1434 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_3,-74.873392,39.6038445,1432 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_3,-74.6208965,39.385681,1432 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_4,-74.8784924,39.60321761,1430 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_4,-74.6312225,39.391293,1430 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_146_5,-74.88221209,39.59953288,1424 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_5,-74.63470334,39.39036126,1424 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_6,-74.81186787,39.60743004,1420 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_6,-74.637558,39.400609,1420 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_7,-74.80780481,39.62090894,1414 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_7,-74.6375405,39.400061,1414 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_8,-74.81743495,39.61196417,1410 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_146_8,-74.637876,39.399516,1410 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_9,-74.80547,39.6268935,1408 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_146_9,-74.64607947,39.39015667,1408 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_147_1,-74.408594,39.3922035,17 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_1,-74.725168,39.575079,17 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_10,-74.433785,39.369738,1401 MEMORIAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_10,-74.8662229,39.57031981,1401 MEMORIAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_3,-74.4016465,39.3920975,20 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_3,-74.7156055,39.5814055,20 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_4,-74.40305588,39.39111954,14 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_4,-74.75056006,39.60103534,14 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_8,-74.43319318,39.36929799,28 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_8,-74.8654125,39.565006,28 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_9,-74.4416595,39.3699125,32 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_147_9,-74.85682454,39.5563235,32 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_148_1,-74.516559,39.404195,1429 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_148_1,-74.97328475,39.51256696,1429 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_148_2,-74.4372245,39.3701425,1401 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_148_2,-74.84346734,39.55712948,1401 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_149_1,-74.52997328,39.39927912,31 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,REL1,3003 -0102_149_1,-74.94895645,39.50597333,31 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_149_10,-74.509273,39.4051825,1510 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_149_10,-74.93981866,39.52706195,1510 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_149_11,-74.49385266,39.41784488,1508 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_11,-74.94612331,39.52581352,1508 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_12,-74.4998285,39.4187685,1506 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_12,-74.943208,39.5251075,1506 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES4,3001 -0102_149_13,-74.50149585,39.41863106,1504 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_13,-74.9290622,39.52995765,1504 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_14,-74.50132941,39.41239819,1501 PACIFIC AVE,ATLANTIC CITY CITY,,1970,1,RES1,3001 -0102_149_14,-74.88524721,39.55785582,1501 PACIFIC AVE,ATLANTIC CITY CITY,,1970,1,RES1,3001 -0102_149_2,-74.51510133,39.39870227,37 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_149_2,-74.9470943,39.5092072,37 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_149_23,-74.51791899,39.39997767,1537 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_149_23,-74.94519239,39.51182679,1537 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_149_4,-74.522264,39.39682,1520 BELFIELD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_149_4,-74.95493001,39.51587568,1520 BELFIELD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_149_6,-74.52205069,39.39598434,1518 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,REL1,3004 -0102_149_6,-74.9500845,39.513114,1518 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_7,-74.48095304,39.4331433,1516 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_7,-74.93546853,39.52883168,1516 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_8,-74.50668115,39.40998342,1514 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_8,-74.93507154,39.52427268,1514 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_9,-74.503437,39.409575,1512 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_149_9,-74.94805405,39.52867326,1512 BELFIELD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_15_1,-74.48911053,39.35039725,4010 ATLANTIC AVE,ATLANTIC CITY CITY,18,1930,1,RES1,3001 -0102_15_1,-74.86469315,39.59593179,4010 ATLANTIC AVE,ATLANTIC CITY CITY,18,1930,1,COM4,3004 -0102_15_11,-74.602511,39.3180215,136 S DOVER AVE,ATLANTIC CITY CITY,18,1999,1,RES1,3001 -0102_15_11,-74.48370682,39.34432707,136 S DOVER AVE,ATLANTIC CITY CITY,18,1999,1,RES1,3001 -0102_15_12,-74.6113375,39.3231795,128 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_15_12,-74.4543095,39.3557395,128 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_15_13,-74.61044267,39.3205673,122 S DOVER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_15_13,-74.45169238,39.35353882,122 S DOVER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_15_14,-74.59966501,39.33138185,112 S DOVER AVE,ATLANTIC CITY CITY,18,1920,1,GOV1,3004 -0102_15_14,-74.4613995,39.356741,112 S DOVER AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_15_15,-74.6053995,39.3260515,108 S DOVER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_15_15,-74.4613795,39.353017,108 S DOVER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_15_16,-74.4885555,39.348674,102 S DOVER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_15_16,-74.86818948,39.59339781,102 S DOVER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_15_2,-74.48796691,39.35075797,109 S RIDGEWAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_15_2,-74.85402059,39.59140884,109 S RIDGEWAY AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_15_3,-74.5006545,39.336442,111 S RIDGEWAY AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_15_3,-74.859135,39.587124,111 S RIDGEWAY AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_15_4,-74.50640388,39.33724439,123 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_15_4,-74.833018,39.5926795,123 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_15_5,-74.61034247,39.32388833,129 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_15_5,-74.45189318,39.35666299,129 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_15_7,-74.60136104,39.32122431,141 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_15_7,-74.48164118,39.34672446,141 S RIDGEWAY AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_150_1,-74.503594,39.4165585,1519 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_150_1,-74.9616637,39.52841104,1519 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_150_10,-74.50501005,39.40955847,24 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_150_10,-74.9462305,39.517092,24 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_150_11,-74.5053705,39.4252445,30 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_150_11,-74.7394055,39.6509075,30 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_150_2,-74.50115782,39.41361649,1517 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_150_2,-74.915801,39.549874,1517 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_150_3,-74.50331171,39.41356338,1515 BELFIELD AVE,ATLANTIC CITY CITY,47,1900,3,RES1,3001 -0102_150_3,-74.885271,39.5606595,1515 BELFIELD AVE,ATLANTIC CITY CITY,47,1900,3,RES1,3001 -0102_150_4,-74.51683987,39.40954879,1513 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_150_4,-74.890511,39.5576985,1513 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_150_5,-74.51285223,39.40548317,1511 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_150_5,-74.942096,39.545869,1511 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_150_6,-74.51162036,39.4045594,1509 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_150_6,-74.97522436,39.51192271,1509 BELFIELD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_150_8,-74.5308075,39.403121,1505 BELFIELD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_150_8,-74.88543933,39.59481059,1505 BELFIELD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_150_9,-74.4983636,39.42579331,1503 BELFIELD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_150_9,-74.88539321,39.60081675,1503 BELFIELD AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_151_1,-74.51084949,39.40773017,1546 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_1,-74.94113441,39.5261559,1546 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_10,-74.8750501,39.59251873,1508 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_10,-74.628117,39.3689425,1508 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_11,-74.86763982,39.60109799,1500 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_11,-74.62588874,39.38380827,1500 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_12,-74.78796136,39.63796565,2 SHERMAN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_12,-74.60143596,39.43377618,2 SHERMAN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_13,-74.79098919,39.63346102,2 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_13,-74.6022985,39.4302495,2 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_151_14,-74.78148139,39.63429881,6 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_14,-74.598203,39.434884,6 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_15,-74.51915567,39.407883,10 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_15,-74.94205401,39.52664567,10 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_151_16,-74.5035192,39.42482269,12 ARMORY PL RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_16,-74.79395557,39.64030417,12 ARMORY PL RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_151_19,-74.5011065,39.4174025,23 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_19,-74.9533066,39.52913253,23 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_2,-74.77707914,39.62463367,1544 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_2,-74.60659716,39.42077099,1544 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_20,-74.50405116,39.42503007,19 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_20,-74.79301201,39.64778719,19 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_21,-74.5040675,39.414816,17 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_21,-74.95014402,39.51463789,17 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_23,-74.5068275,39.404676,13 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_23,-74.954277,39.5116275,13 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_24,-74.50593447,39.41091591,9 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_24,-74.941598,39.5285325,9 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_3,-74.79016283,39.6376375,1536 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_3,-74.5974337,39.43124072,1536 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_4,-74.78609039,39.63607884,1534 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_4,-74.59854793,39.43090821,1534 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_5,-74.78993178,39.63455642,1532 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_5,-74.60051169,39.43076154,1532 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_6,-74.78986868,39.63197656,1530 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_6,-74.61543163,39.43005188,1530 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_7,-74.87922885,39.59538595,1518 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_151_7,-74.6164245,39.4295045,1518 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_151_9,-74.88017068,39.59310948,1512 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_151_9,-74.6171791,39.42934249,1512 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_1,-74.44236346,39.37107357,13 S MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_1,-74.84137834,39.56213704,13 S MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_2,-74.50705961,39.41096469,1608 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_2,-74.96701629,39.52056765,1608 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_3,-74.51578316,39.40934313,1600 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_3,-74.9394205,39.527207,1600 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_5,-74.52896463,39.39480828,24 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_5,-74.93565188,39.52935579,24 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_6,-74.52805983,39.39856592,26 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_6,-74.949575,39.518773,26 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_7,-74.52421713,39.40000773,1609 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_152_7,-74.950612,39.5085055,1609 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_1,-74.42272473,39.37658201,1638 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_1,-74.8294125,39.541094,1638 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_2,-74.4314395,39.3741185,1634 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_2,-74.80965372,39.56300394,1634 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_3,-74.42140892,39.37187744,1626 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_3,-74.82476784,39.57098071,1626 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_4,-74.4287165,39.371095,1624 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_4,-74.85642783,39.55282529,1624 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_5,-74.42163767,39.37066142,1622 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_155_5,-74.8716075,39.5385375,1622 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_1,-74.52361905,39.38430925,1740 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_1,-74.90541,39.4723705,1740 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_10,-74.52734977,39.38604047,1708 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_10,-74.9158875,39.513422,1708 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_156_11,-74.52494668,39.38575506,1706 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_11,-74.8961575,39.526595,1706 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_13,-74.516995,39.400741,1704 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_13,-74.92095531,39.53169612,1704 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_156_16,-74.51840142,39.40057267,1700 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_16,-74.9472235,39.512137,1700 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_17,-74.527789,39.382063,8 S DR MARTIN LUTHER RR 3,ATLANTIC CITY CITY,,0,1,RES2,3005 -0102_156_17,-74.88882084,39.50320601,8 S DR MARTIN LUTHER RR 3,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_18,-74.51760372,39.39286167,8 S DR MARTIN LUTHER RR 2,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_18,-74.9092987,39.4944881,8 S DR MARTIN LUTHER RR 2,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_19,-74.51428835,39.38716568,8 S DR MARTIN LUTHER RR 1,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_19,-74.914177,39.495842,8 S DR MARTIN LUTHER RR 1,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_2,-74.52620845,39.38389856,1732 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_2,-74.91763426,39.47140695,1732 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_20,-74.41106555,39.38371692,8 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_20,-74.82445159,39.54182941,8 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_21,-74.40799774,39.38036204,10 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_21,-74.7969285,39.5380805,10 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_22,-74.41385067,39.37081257,14 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_22,-74.84616116,39.53575321,14 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_23,-74.4137124,39.37103469,18 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_23,-74.8210295,39.53113,18 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_28,-74.39262049,39.39492567,1701 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_28,-74.81537783,39.53080927,1701 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_29,-74.3930612,39.39501384,1713 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_29,-74.80623095,39.52866329,1713 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_3,-74.50894518,39.40064653,1728 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_3,-74.900287,39.5030905,1728 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_31,-74.381778,39.39498317,1715 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_31,-74.78216588,39.54365613,1715 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_33,-74.37364748,39.40459166,1719 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_33,-74.8762485,39.59469,1719 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_156_34,-74.36638411,39.40635465,1721 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_34,-74.78016493,39.62547428,1721 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_36,-74.35924,39.4158485,1723 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_156_36,-74.88216894,39.60039032,1723 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_4,-74.51834443,39.39095568,1724 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_156_4,-74.92458281,39.48831924,1724 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_40,-74.370554,39.4143845,25 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_156_40,-74.80512605,39.63422834,25 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_156_42,-74.4480853,39.37392044,11 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_42,-74.903589,39.4720805,11 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_5,-74.5299445,39.3920435,1722 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_5,-74.926759,39.4811185,1722 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_6,-74.52109291,39.39105642,1720 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_6,-74.9269845,39.4884365,1720 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_7,-74.53010102,39.38938832,1718 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_7,-74.92519696,39.50792624,1718 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_8,-74.52520654,39.38903919,1714 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_8,-74.92429389,39.50465631,1714 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_156_9,-74.52817522,39.38640137,1710 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_156_9,-74.924583,39.513649,1710 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_1,-74.36804697,39.410795,1838 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_1,-74.80856785,39.63386555,1838 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_10,-74.37853974,39.41854958,14 S INDIANA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_10,-74.81730789,39.63061474,14 S INDIANA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_11,-74.37037727,39.41104645,14 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_157_11,-74.81655,39.6354845,14 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_157_12,-74.36646618,39.41311321,16 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_12,-74.81423259,39.63832586,16 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_13,-74.35661417,39.41443149,16 S INDIANA AVE RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_157_13,-74.8064685,39.6219185,16 S INDIANA AVE RR,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_157_14,-74.3769529,39.40310285,20 S INDIANA AVE RR,ATLANTIC CITY CITY,,0,1,IND2,3004 -0102_157_14,-74.882096,39.591941,20 S INDIANA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_15,-74.376752,39.4165285,20 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_15,-74.80519466,39.6351313,20 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_157_16,-74.3608325,39.4171505,26 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_16,-74.86603808,39.60115651,26 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_17,-74.3680405,39.4032055,30 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_17,-74.88022318,39.59332965,30 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_18,-74.3678309,39.40794933,34 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_18,-74.7764335,39.6249915,34 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_19,-74.36391975,39.40860734,1801 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_19,-74.764232,39.63757,1801 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_2,-74.38154209,39.41808168,1832 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_2,-74.836751,39.6268975,1832 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_20,-74.3654625,39.408374,1807 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_20,-74.78026693,39.6273449,1807 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_157_3,-74.3811385,39.4167925,1830 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_157_3,-74.82989352,39.62360292,1830 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_34,-74.36391258,39.41533147,15 S OHIO AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_157_34,-74.80172731,39.605916,15 S OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_35,-74.35885126,39.41230543,11 S OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_35,-74.80608866,39.63051548,11 S OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_36,-74.36038,39.4127535,9 S OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_36,-74.80069816,39.62705199,9 S OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_37,-74.3733995,39.4180895,7 S OHIO AVENUE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_37,-74.80219686,39.63912705,7 S OHIO AVENUE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_38,-74.37691984,39.41382152,7 S OHIO AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_38,-74.805519,39.632687,7 S OHIO AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_39,-74.37291573,39.41378934,1824 ATLANTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_39,-74.80146645,39.63148685,1824 ATLANTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_4,-74.3675735,39.4215785,1826 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_157_4,-74.84944303,39.6122177,1826 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_5,-74.367377,39.4209865,1824 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_5,-74.8594568,39.6152219,1824 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_6,-74.52608122,39.38522736,1822 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_6,-74.88926589,39.47909063,1822 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_157_8,-74.530453,39.384618,1800 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_8,-74.89589291,39.48303367,1800 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_9,-74.38246487,39.41660675,12 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_157_9,-74.82108196,39.63605632,12 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_158_1,-74.52959456,39.52266442,1930 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_158_1,-74.46022618,39.35051795,1930 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_158_2,-74.53620505,39.30578084,1928 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_158_2,-74.45889652,39.34978534,1928 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_16_1,-74.5682975,39.3430715,3920 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_16_1,-74.49439,39.3384845,3920 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_16_10,-74.60989617,39.32074251,3901 BOARDWALK,ATLANTIC CITY CITY,18,2002,1,RES1,3001 -0102_16_10,-74.44829,39.355003,3901 BOARDWALK,ATLANTIC CITY CITY,18,2002,1,RES1,3001 -0102_16_12,-74.60183184,39.33096397,122 JOHN A SEEDORF LN,ATLANTIC CITY CITY,18,2006,1,GOV1,3004 -0102_16_12,-74.46324648,39.35482433,122 JOHN A SEEDORF LN,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_16_13,-74.57176303,39.34262165,120 JOHN A SEEDORF LN,ATLANTIC CITY CITY,18,2006,1,RES3A,3001 -0102_16_13,-74.45530344,39.35262208,120 JOHN A SEEDORF LN,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_16_14,-74.57383562,39.33763469,118 JOHN A SEEDORF LN,ATLANTIC CITY CITY,20,2008,1,RES1,3001 -0102_16_14,-74.45656543,39.352073,118 JOHN A SEEDORF LN,ATLANTIC CITY CITY,20,2008,1,RES1,3001 -0102_16_2,-74.5750615,39.3486735,103 S DOVER AVE,ATLANTIC CITY CITY,45,1998,2,RES1,3001 -0102_16_2,-74.481682,39.3536275,103 S DOVER AVE,ATLANTIC CITY CITY,45,1998,2,RES1,3001 -0102_16_3,-74.57329886,39.33793531,105 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_16_3,-74.45617046,39.35240437,105 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_16_4,-74.6055155,39.3271905,107 S DOVER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_16_4,-74.46141951,39.35382663,107 S DOVER AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_16_5,-74.6128235,39.3203725,109 S DOVER AVE,ATLANTIC CITY CITY,18,1920,1,RES3A,3001 -0102_16_5,-74.46265642,39.35682233,109 S DOVER AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_16_7,-74.61185665,39.32348321,117 S DOVER AVE,ATLANTIC CITY CITY,18,1996,1,RES1,3001 -0102_16_7,-74.45007615,39.35584983,117 S DOVER AVE,ATLANTIC CITY CITY,18,1996,1,RES1,3001 -0102_16_8,-74.60997234,39.32482748,3909 BOARDWALK,ATLANTIC CITY CITY,19,1999,1,RES1,3001 -0102_16_8,-74.450932,39.3570485,3909 BOARDWALK,ATLANTIC CITY CITY,19,1999,1,RES1,3001 -0102_160_2,-74.362833,39.4094035,2022 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_160_2,-74.760773,39.6310505,2022 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_160_4,-74.36355967,39.4094455,2020 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_160_4,-74.774556,39.615523,2020 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_161_8,-74.3617085,39.409474,27 S CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_161_8,-74.77998548,39.60870542,27 S CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_161_9,-74.413077,39.390222,31 S CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_161_9,-74.757943,39.61210583,31 S CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_162_1,-74.49097417,39.53305462,2202 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_162_1,-74.458755,39.351007,2202 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_162_3,-74.50714233,39.52690111,2201 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_162_3,-74.51681004,39.32617785,2201 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_1,-74.36044157,39.4104181,2338 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_163_1,-74.77668854,39.6252752,2338 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_10,-74.36819267,39.40474346,2304 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_10,-74.86958302,39.59379066,2304 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_11,-74.41103244,39.39051233,2300 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_11,-74.7408445,39.639197,2300 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_12,-74.49677035,39.52935054,10 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_12,-74.5142635,39.326239,10 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_13,-74.48742432,39.52013706,14 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_13,-74.512309,39.3275735,14 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_14,-74.50885615,39.50954268,18 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_14,-74.51114083,39.32867351,18 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_16,-74.48580309,39.52247975,36 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_16,-74.50953614,39.32881001,36 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_17,-74.499675,39.4984465,38 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_17,-74.51118239,39.32971306,38 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_18,-74.5020345,39.5033315,40 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_18,-74.5115855,39.332672,40 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_19,-74.49900165,39.49998015,2302 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_19,-74.50969505,39.32986135,2302 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_2,-74.36426554,39.40854068,2332 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_2,-74.7776235,39.6249715,2332 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_22,-74.50553292,39.49307577,2308 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_22,-74.52305062,39.31876365,2308 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_23,-74.3861266,39.39565412,2310 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_23,-74.79019898,39.59605366,2310 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_24,-74.37976415,39.39927304,2312 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_24,-74.7545305,39.5969375,2312 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_25,-74.3831,39.4005,2314 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_25,-74.761994,39.588562,2314 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_26,-74.39220845,39.38692717,2316 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_26,-74.7277065,39.5901455,2316 LEOPOLD TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_27,-74.59638387,39.42963647,5 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_27,-74.45448852,39.47693591,5 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_28,-74.6053466,39.4229748,4 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_28,-74.4608805,39.4727615,4 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_29,-74.52375296,39.47181811,3 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_29,-74.51891063,39.3192219,3 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_3,-74.36743474,39.41029293,2330 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_3,-74.77654591,39.63785233,2330 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_33,-74.48795152,39.49327807,18 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_33,-74.519121,39.317969,18 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_35,-74.53088513,39.47072524,28 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_35,-74.51899932,39.31838836,28 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_36,-74.52367124,39.47543375,8 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_36,-74.519077,39.322549,8 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_37,-74.50765515,39.48112092,7 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_37,-74.50936266,39.32291851,7 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_38,-74.594889,39.4259275,6 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_38,-74.50943214,39.45622954,6 LINCOLN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_39,-74.47114,39.492288,2309 PACIFIC AVE RR #A,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_163_39,-74.510308,39.3238575,2309 PACIFIC AVE RR #A,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_163_4,-74.36749142,39.40982444,2328 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_4,-74.79259802,39.63943383,2328 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_40,-74.4727945,39.4888745,2309 PACIFIC AVE RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_163_40,-74.51950428,39.32372605,2309 PACIFIC AVE RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_163_41,-74.468151,39.488509,2309 PACIFIC AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_163_41,-74.51439683,39.32374317,2309 PACIFIC AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_163_42,-74.52316572,39.47409853,2301 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_42,-74.51682478,39.31960868,2301 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_163_43,-74.45500998,39.49935515,2303 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_43,-74.51274727,39.32468288,2303 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_44,-74.44845054,39.49609418,2307 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_44,-74.5014035,39.327849,2307 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_45,-74.489179,39.335253,2309 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_45,-74.70545136,39.5845346,2309 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM10,3003 -0102_163_47,-74.45490038,39.49893495,2311 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES4,3001 -0102_163_47,-74.51670733,39.32466309,2311 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_48,-74.48963834,39.33480857,2315 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_48,-74.696235,39.5928745,2315 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_49,-74.45528196,39.50061924,2317 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_49,-74.50750011,39.32644933,2317 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_5,-74.367999,39.408669,2320 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_5,-74.79089271,39.6348156,2320 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_50,-74.50203067,39.33841198,2319 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_50,-74.70694663,39.6383089,2319 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_51,-74.4993205,39.335082,27 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_51,-74.70778997,39.56161284,27 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_52,-74.51068949,39.33628967,27 BARATTA TERR #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_52,-74.80362394,39.55645669,27 BARATTA TERR #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_53,-74.38884483,39.391095,27 BARATTA TERR #B,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_53,-74.72025967,39.57812849,27 BARATTA TERR #B,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_163_54,-74.595178,39.414959,27 BARATTA TERR #C,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_54,-74.5156665,39.438095,27 BARATTA TERR #C,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_55,-74.5873376,39.42299385,25 BARATTA TERR #C,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_55,-74.5208805,39.4608205,25 BARATTA TERR #C,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_56,-74.585848,39.424495,25 BARATTA TERR #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_56,-74.50580831,39.46818695,25 BARATTA TERR #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_57,-74.59914529,39.41259941,25 BARATTA TERR #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_57,-74.495029,39.455841,25 BARATTA TERR #A,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_163_58,-74.37362854,39.39934986,25 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_58,-74.82703268,39.56204256,25 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_6,-74.3699295,39.4079445,2318 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_6,-74.800769,39.5960375,2318 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_63,-74.59199725,39.42803407,4 GEORGIA TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_63,-74.46258667,39.47313449,4 GEORGIA TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_64,-74.60121473,39.43500839,6 GEORGIA TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_64,-74.47442446,39.48534071,6 GEORGIA TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_66,-74.39217416,39.38880002,3 GEORGIA TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_66,-74.7131803,39.58360097,3 GEORGIA TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_68,-74.59500745,39.41996768,19 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_68,-74.52257675,39.45620742,19 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_69,-74.38056512,39.39504253,17 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_69,-74.79456641,39.60436864,17 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_7,-74.39985734,39.38534604,2318 ATLANTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_7,-74.774929,39.625638,2318 ATLANTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_70,-74.42732417,39.36889673,15 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_163_70,-74.7942325,39.6217025,15 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_71,-74.4418895,39.36865,13 S GEORGIA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_71,-74.78854,39.6146475,13 S GEORGIA AVE RR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_8,-74.36738763,39.40674914,2316 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_8,-74.81515148,39.60426667,2316 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_163_9,-74.3729095,39.4066215,2310 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_163_9,-74.8642395,39.596813,2310 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_1,-74.39611397,39.38746266,2428 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_164_1,-74.72471363,39.58713003,2428 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_10,-74.506386,39.3355245,11 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_10,-74.79179254,39.52377324,11 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_11,-74.49737967,39.334623,13 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_11,-74.63072398,39.61895426,13 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_12,-74.49074,39.338272,15 S FLORIDA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_164_12,-74.65794934,39.53822292,15 S FLORIDA AVE,ATLANTIC CITY CITY,45,1920,3,RES3A,3001 -0102_164_13,-74.37179876,39.40164285,2431 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_164_13,-74.81018594,39.56172718,2431 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES3A,3002 -0102_164_14,-74.3736585,39.3982585,2429 TRENWITH TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_14,-74.83721367,39.56337285,2429 TRENWITH TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_15,-74.39101167,39.39218203,2427 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES3A,3001 -0102_164_15,-74.88231232,39.56695673,2427 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_16,-74.58439998,39.41745916,2425 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_16,-74.5031346,39.44747136,2425 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES3B,3001 -0102_164_17,-74.58531218,39.41519666,2423 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_17,-74.4992849,39.44711723,2423 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_18,-74.5895341,39.41551685,2421 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_18,-74.51014118,39.43913156,2421 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_19,-74.604514,39.4089765,2419 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_19,-74.5305655,39.448987,2419 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_20,-74.60015041,39.41820463,2417 TRENWITH TERR,ATLANTIC CITY CITY,33,1956,1,RES1,3001 -0102_164_20,-74.52691597,39.44602484,2417 TRENWITH TERR,ATLANTIC CITY CITY,33,1956,1,RES1,3001 -0102_164_21,-74.5983585,39.411268,2415 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_21,-74.507239,39.45481,2415 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_23,-74.40018882,39.38513669,2416 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_23,-74.70718724,39.63374815,2416 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_24,-74.404171,39.382817,2414 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_24,-74.750631,39.636501,2414 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_25,-74.40479483,39.38155422,2412 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_25,-74.7471865,39.6349965,2412 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_26,-74.42219739,39.37449983,2410 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_26,-74.7663285,39.611589,2410 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_28,-74.4225445,39.3708575,2408 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_28,-74.78687797,39.61236261,2408 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_29,-74.44212105,39.36838652,2406 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_29,-74.772591,39.6283585,2406 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_3,-74.39664417,39.38679768,2422 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_164_3,-74.74728052,39.59288933,2422 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_30,-74.399784,39.3893745,2404 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_30,-74.76447525,39.63359819,2404 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_164_38,-74.49450667,39.33439449,22 S GEORGIA AVE RR #4,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_164_38,-74.6365845,39.623776,22 S GEORGIA AVE RR #4,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_39,-74.509168,39.3381745,22 S GEORGIA AVE RR #3,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_164_39,-74.70110345,39.6372945,22 S GEORGIA AVE RR #3,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_4,-74.38746198,39.3957067,2420 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_4,-74.77863242,39.60338359,2420 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_40,-74.4997985,39.3348155,22 S GEORGIA AVE RR #2,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_40,-74.80824031,39.52734318,22 S GEORGIA AVE RR #2,ATLANTIC CITY CITY,33,1900,1,REL1,3004 -0102_164_41,-74.48843767,39.34953299,22 S GEORGIA AVE RR #1,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_41,-74.8202925,39.5317045,22 S GEORGIA AVE RR #1,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_42,-74.60015023,39.40714384,22 S GEORGIA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_164_42,-74.52858283,39.44879199,22 S GEORGIA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_164_44,-74.384187,39.3932965,24 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,IND2,3002 -0102_164_44,-74.864411,39.568115,24 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_45,-74.5023502,39.34254323,2403 ALIANTRO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_45,-74.66160329,39.6370596,2403 ALIANTRO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_46,-74.48788484,39.33643899,2405 ALIANTRO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_46,-74.665438,39.560874,2405 ALIANTRO TERR,ATLANTIC CITY CITY,33,1900,1,RES3B,3001 -0102_164_47,-74.4935,39.3415585,2407 ALIANTRO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_47,-74.649039,39.5446635,2407 ALIANTRO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_48,-74.46203267,39.35383695,2409 ALIANTRO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_48,-74.68827066,39.51145567,2409 ALIANTRO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_49,-74.460312,39.3547335,26 S GEORGIA AVE REAR,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_164_49,-74.65219726,39.53003209,26 S GEORGIA AVE REAR,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_164_5,-74.58406033,39.43273982,2422 ATLANTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_5,-74.52503972,39.46268524,2422 ATLANTIC AVE RR,ATLANTIC CITY CITY,,0,1,AGR1,3004 -0102_164_50,-74.5051724,39.33552214,26 S GEORGIA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_164_50,-74.79183463,39.52788568,26 S GEORGIA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_164_51,-74.48870932,39.33464035,26 S GEORGIA AVE 1/2,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_164_51,-74.63255299,39.6201257,26 S GEORGIA AVE 1/2,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_164_52,-74.48364667,39.346458,26 S GEORGIA AVE 1/2 REAR,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_164_52,-74.6492835,39.534624,26 S GEORGIA AVE 1/2 REAR,ATLANTIC CITY CITY,27,1925,2,COM4,3004 -0102_164_53,-74.489528,39.3384575,28 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_53,-74.65854325,39.5417737,28 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_58,-74.47889082,39.33828708,36 S GEORGIA AVE,ATLANTIC CITY CITY,45,1920,3,RES3A,3002 -0102_164_58,-74.6118985,39.5131775,36 S GEORGIA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3004 -0102_164_59,-74.46412269,39.34719428,38 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_164_59,-74.538244,39.5335215,38 S GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_61,-74.513637,39.330323,2401 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_61,-74.83127689,39.48770929,2401 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_164_62,-74.52208701,39.31808417,2403 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_62,-74.8351685,39.483051,2403 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_63,-74.52112551,39.31931738,2405 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_164_63,-74.88041485,39.45097138,2405 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_65,-74.483377,39.3416595,2409 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_65,-74.598667,39.51216,2409 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_66,-74.51023649,39.32998183,2415 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_66,-74.88174986,39.4822793,2415 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_67,-74.52178634,39.32027749,2417 PACIFIC AVE RR,ATLANTIC CITY CITY,27,1900,2,RES1,3002 -0102_164_67,-74.83151471,39.44276246,2417 PACIFIC AVE RR,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_164_68,-74.52438724,39.32048327,2417 PACIFIC AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_164_68,-74.7787007,39.49905485,2417 PACIFIC AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_164_69,-74.5038694,39.32973543,41 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_69,-74.74853,39.446242,41 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_7,-74.5867795,39.4156035,5 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_164_7,-74.51021982,39.44014861,5 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_164_70,-74.5006795,39.3281975,39 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_164_70,-74.71322321,39.46824038,39 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_164_71,-74.5014745,39.326154,35 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,AGR1,3001 -0102_164_71,-74.736774,39.461712,35 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_164_72,-74.51529235,39.32470637,33 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_72,-74.754859,39.452106,33 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_73,-74.517062,39.3219355,2427 PACIFIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_73,-74.7912295,39.4479665,2427 PACIFIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_74,-74.51971626,39.31807435,2423 PACIFIC AVE RR A,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_164_74,-74.7723715,39.453618,2423 PACIFIC AVE RR A,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_164_77,-74.510277,39.3326135,27 S FLORIDA AVE #B,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_164_77,-74.835413,39.4876945,27 S FLORIDA AVE #B,ATLANTIC CITY CITY,17,1900,1,COM1,3002 -0102_164_78,-74.51085817,39.32700999,29 S FLORIDA AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_78,-74.86227017,39.49519434,29 S FLORIDA AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_79,-74.465119,39.34848,29 S FLORIDA AVE RR #B,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_164_79,-74.5618125,39.514208,29 S FLORIDA AVE RR #B,ATLANTIC CITY CITY,33,1930,1,GOV1,3004 -0102_164_8,-74.39031634,39.39331449,7 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_164_8,-74.86522249,39.56514433,7 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_164_80,-74.48180666,39.339735,29 S FLORIDA AVE RR #A,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_164_80,-74.616048,39.509572,29 S FLORIDA AVE RR #A,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_164_81,-74.46649933,39.3473665,27 S FLORIDA AVE RR #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_164_81,-74.6404685,39.524517,27 S FLORIDA AVE RR #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_164_82,-74.46496545,39.34426516,27 S FLORIDA AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_82,-74.55733791,39.52520067,27 S FLORIDA AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_164_83,-74.4731675,39.3435265,27 S FLORIDA AVE RR #A,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_164_83,-74.645183,39.5293875,27 S FLORIDA AVE RR #A,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_164_84,-74.482619,39.347946,25 S FLORIDA AVE RR,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_164_84,-74.6569885,39.5288205,25 S FLORIDA AVE RR,ATLANTIC CITY CITY,27,1930,2,GOV1,3004 -0102_164_85,-74.48727005,39.33600217,25 S FLORIDA AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_164_85,-74.57170894,39.54675866,25 S FLORIDA AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_164_86,-74.4842765,39.3364965,23 S FLORIDA AVE,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_164_86,-74.61825066,39.53179682,23 S FLORIDA AVE,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_164_87,-74.46974715,39.34409002,21 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_87,-74.63826598,39.53217818,21 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_164_88,-74.4820755,39.349464,19 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_88,-74.64224708,39.52453384,19 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_164_89,-74.486996,39.3478125,17 S FLORIDA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_164_89,-74.654056,39.521082,17 S FLORIDA AVE,ATLANTIC CITY CITY,45,1920,3,GOV1,3004 -0102_164_9,-74.48862929,39.34943826,9 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_9,-74.84126257,39.52986581,9 S FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_90,-74.453023,39.3533145,2430 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_90,-74.6530196,39.53477717,2430 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_91,-74.46193853,39.35966085,2428 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_91,-74.652618,39.5313295,2428 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_92,-74.463274,39.353906,2426 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_92,-74.65519513,39.52966612,2426 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES3B,3001 -0102_164_93,-74.48272568,39.35140916,2424 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,GOV1,3004 -0102_164_93,-74.68926646,39.51951557,2424 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_94,-74.48671149,39.35135333,2422 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_164_94,-74.631183,39.540686,2422 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_95,-74.49324322,39.336584,2420 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_95,-74.66993718,39.54397606,2420 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,REL1,3004 -0102_164_96,-74.4972505,39.33638,2418 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_96,-74.6043615,39.6178595,2418 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_164_97,-74.49652911,39.33497915,2416 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_164_97,-74.69574249,39.59255599,2416 TRENWITH TERR,ATLANTIC CITY CITY,33,1910,1,AGR1,3001 -0102_164_98,-74.50870123,39.34097796,2414 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_164_98,-74.661616,39.63374297,2414 TRENWITH TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_165_1,-74.390875,39.392099,2514 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_165_1,-74.71418917,39.57918978,2514 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_165_2,-74.58697037,39.41658854,2512 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_165_2,-74.51703563,39.44338754,2512 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_165_3,-74.58814986,39.41267068,2510 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_165_3,-74.5247625,39.4530115,2510 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_165_4,-74.60149359,39.41531578,2508 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_165_4,-74.52599761,39.44480211,2508 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_165_5,-74.60303806,39.41116007,2506 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_165_5,-74.49227896,39.46960474,2506 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_165_6,-74.58539869,39.42399808,2504 ATLANTIC AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_165_6,-74.51620658,39.46021299,2504 ATLANTIC AVE,ATLANTIC CITY CITY,,1920,1,GOV1,3004 -0102_165_7,-74.59497,39.4232145,2500 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_165_7,-74.5130415,39.454262,2500 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_1,-74.4654645,39.358115,15 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_166_1,-74.69817321,39.51222016,15 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,2,AGR1,3001 -0102_166_10,-74.4901986,39.33654058,8 S FLORIDA AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_166_10,-74.6807125,39.5504925,8 S FLORIDA AVE,ATLANTIC CITY CITY,33,1925,1,COM4,3004 -0102_166_11,-74.4837845,39.353028,10 S FLORIDA AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_11,-74.69929507,39.50996903,10 S FLORIDA AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_12,-74.4793935,39.34786488,10 S FLORIDA AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_12,-74.65261503,39.52353683,10 S FLORIDA AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_13,-74.47294518,39.34377353,12 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_13,-74.64085901,39.53021667,12 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_14,-74.48273184,39.33657399,14 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_14,-74.5827615,39.530116,14 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_15,-74.456487,39.35001,16 S FLORIDA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_166_15,-74.86841541,39.49691276,16 S FLORIDA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_166_16,-74.51194844,39.33008499,18 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_166_16,-74.8528475,39.4854425,18 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_166_17,-74.52269379,39.31871627,24 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_17,-74.86800541,39.46082464,24 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_18,-74.52062502,39.32128417,26 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_166_18,-74.72355338,39.4912978,26 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_19,-74.51939634,39.31880098,28 S FLORIDA AVE,ATLANTIC CITY CITY,14,1950,1,RES1,3001 -0102_166_19,-74.75118619,39.45382898,28 S FLORIDA AVE,ATLANTIC CITY CITY,14,1950,1,RES1,3001 -0102_166_2,-74.4510165,39.355341,17 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_166_2,-74.65170355,39.53219113,17 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_166_20,-74.51288152,39.32395567,30 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_166_20,-74.79389632,39.44312249,30 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_21,-74.503292,39.326881,32 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_166_21,-74.7349675,39.4653375,32 S FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_166_22,-74.50335968,39.32697547,34 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_22,-74.7347485,39.460138,34 S FLORIDA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_166_23,-74.50801835,39.32836154,36 S FLORIDA AVE (ALLEY),ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_166_23,-74.72847144,39.45363917,36 S FLORIDA AVE (ALLEY),ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_166_24,-74.50165203,39.32854785,2501 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_24,-74.7289211,39.45372926,2501 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_166_25,-74.50161518,39.33147077,2505 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_25,-74.7481005,39.4517445,2505 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_26,-74.49057642,39.33066665,2511 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_26,-74.72357795,39.45142818,2511 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_27,-74.48818146,39.33319968,2513 PACIFIC AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_166_27,-74.726445,39.4525835,2513 PACIFIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_166_28,-74.504729,39.33156,59 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_166_28,-74.733431,39.439058,59 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_166_29,-74.5087,39.3276955,55 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_29,-74.71410505,39.46791218,55 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_3,-74.48528301,39.34850115,19 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_166_3,-74.641923,39.5240335,19 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_166_30,-74.508295,39.327635,53 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_30,-74.71542134,39.46544852,53 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_31,-74.51248844,39.32408737,43 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_166_31,-74.76712,39.45299956,43 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_166_33,-74.52390191,39.31968683,37 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_33,-74.8344695,39.4482365,37 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_166_34,-74.5214874,39.3182443,33 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_166_34,-74.83601782,39.47798544,33 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_166_35,-74.52493697,39.31745365,31 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_166_35,-74.82555463,39.49128469,31 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_166_36,-74.51177065,39.32606503,29 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_166_36,-74.8736845,39.492894,29 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3002 -0102_166_37,-74.4635705,39.3466065,27 S BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_166_37,-74.54342871,39.53327883,27 S BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_166_38,-74.48282468,39.33854891,25 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_166_38,-74.609615,39.5148105,25 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_166_39,-74.46732204,39.34417485,23 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_166_39,-74.6385005,39.534619,23 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_166_40,-74.4709285,39.34321783,21 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_166_40,-74.65122647,39.52797804,21 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_166_6,-74.4965145,39.3371075,2504 CAMAROTA TER,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_166_6,-74.65018248,39.56800192,2504 CAMAROTA TER,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_166_7,-74.4889127,39.33599814,2502 CAMAROTA TER,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_166_7,-74.65733,39.5929505,2502 CAMAROTA TER,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_166_8,-74.4880265,39.35013445,4 S FLORIDA AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_166_8,-74.81657207,39.52165771,4 S FLORIDA AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_166_9,-74.5074231,39.34039886,6 S FLORIDA AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_166_9,-74.67776443,39.60885284,6 S FLORIDA AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_167_1,-74.452238,39.492502,1 S TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_167_1,-74.5001445,39.3309565,1 S TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_167_10,-74.4603725,39.4766095,20 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_167_10,-74.48991286,39.3328761,20 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_167_13,-74.50259971,39.32694933,26 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_167_13,-74.7323685,39.4600895,26 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_167_14,-74.50293004,39.32791335,28 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_167_14,-74.713486,39.468051,28 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_167_15,-74.5013255,39.3286735,30 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_167_15,-74.72852593,39.45780865,30 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_167_16,-74.50156989,39.33181612,32 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_167_16,-74.735566,39.439924,32 S BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_167_17,-74.49743704,39.3283886,34 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_167_17,-74.71877386,39.44748302,34 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_167_18,-74.48994308,39.33356217,36 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_167_18,-74.72890318,39.45292155,36 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_167_19,-74.49761718,39.33377233,38 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_167_19,-74.71555764,39.45034681,38 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_2,-74.44570375,39.49294459,3 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_167_2,-74.50329562,39.33177156,3 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_167_20,-74.48836282,39.33382951,2515 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_167_20,-74.72333451,39.43886516,2515 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_21,-74.50754662,39.32260866,2517 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_167_21,-74.800456,39.4328645,2517 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_22,-74.50686094,39.32376783,2519 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_167_22,-74.8401355,39.386012,2519 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_23,-74.4946315,39.333994,2521 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_167_23,-74.7183515,39.442862,2521 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_24,-74.50520367,39.3244035,2525 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_24,-74.85457179,39.36950704,2525 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_167_25,-74.5206315,39.44599,25 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_167_25,-74.44193415,39.36789125,25 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_26,-74.48841907,39.33259117,23 S TEXAS AVE RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_167_26,-74.72796893,39.45182081,23 S TEXAS AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_27,-74.49863963,39.46489611,23 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_27,-74.43646819,39.36783243,23 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_167_3,-74.44487415,39.48926004,6 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_167_3,-74.50594293,39.33003835,6 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_167_30,-74.51614441,39.45947606,17 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_30,-74.52280069,39.31472147,17 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_32,-74.51541173,39.45586381,13 S TEXAS AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_167_32,-74.50726716,39.32363302,13 S TEXAS AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_167_33,-74.53018206,39.45683829,11 S TEXAS AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_167_33,-74.49552298,39.33323768,11 S TEXAS AVE,ATLANTIC CITY CITY,33,1910,1,GOV1,3004 -0102_167_34,-74.45383309,39.48471328,9 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_167_34,-74.49735558,39.33111141,9 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_167_35,-74.459768,39.481314,7 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_167_35,-74.49530527,39.32875216,7 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_167_36,-74.47500342,39.4810239,5 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_167_36,-74.5042599,39.33197334,5 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_167_4,-74.44819322,39.49059698,8 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_167_4,-74.50823302,39.33057834,8 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_167_8,-74.473013,39.482653,16 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_167_8,-74.50774973,39.3340119,16 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_168_1,-74.45222356,39.48845477,2524 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_168_1,-74.5086415,39.3280075,2524 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_168_2,-74.4643645,39.492969,2518 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_168_2,-74.50193583,39.32793951,2518 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_168_3,-74.48792641,39.34959608,2516 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_168_3,-74.7951212,39.53725875,2516 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_169_1,-74.51874404,39.45959487,22 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_169_1,-74.4346955,39.3668815,22 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_169_10,-74.52205472,39.44278658,35 S SPRAY AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_169_10,-74.8171,39.6542545,35 S SPRAY AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_169_2,-74.5247055,39.4522245,26 S TEXAS AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_169_2,-74.423464,39.366738,26 S TEXAS AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_169_4,-74.50945961,39.44653064,2601 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_169_4,-74.80601114,39.66484157,2601 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_169_5,-74.51809134,39.45074016,2607 PACIFIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_169_5,-74.799188,39.660624,2607 PACIFIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_169_6,-74.512087,39.450827,2609 PACIFIC AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_169_6,-74.81784673,39.65377304,2609 PACIFIC AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_169_8,-74.79957471,39.66833263,2619 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_169_8,-74.67998246,39.50332733,2619 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_169_9,-74.423141,39.366345,37 SPRAY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_169_9,-74.6856883,39.49754841,37 SPRAY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_17_1,-74.55415535,39.35718951,3850 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_17_1,-74.490828,39.3362335,3850 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_17_2,-74.57292284,39.34479793,3851 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_17_2,-74.48704916,39.35177227,3851 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_17_4,-74.491002,39.338994,110 S LINCOLN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_17_4,-74.775773,39.61312,110 S LINCOLN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_17_5,-74.49416,39.3372685,108 S LINCOLN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_17_5,-74.777151,39.60755834,108 S LINCOLN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_17_6,-74.48851779,39.33666267,106 LINCOLN PL,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_17_6,-74.76208375,39.6290197,106 LINCOLN PL,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_170_1,-74.52523559,39.31646775,2616 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_1,-74.75411672,39.4313568,2616 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_10,-74.51280811,39.45946155,12 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_170_10,-74.52781887,39.31110788,12 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_11,-74.51341432,39.32428771,2605 MONTEREY AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_170_11,-74.7135115,39.4709455,2605 MONTEREY AVE,ATLANTIC CITY CITY,45,1910,4,GOV1,3004 -0102_170_12,-74.5111015,39.325345,2607 MONTEREY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_170_12,-74.70794934,39.47282247,2607 MONTEREY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_170_13,-74.49841497,39.32807383,2609 MONTEREY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_170_13,-74.7767685,39.444553,2609 MONTEREY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_170_14,-74.51892057,39.32043584,21 S SPRAY AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_170_14,-74.76417115,39.4898189,21 S SPRAY AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_170_15,-74.52393243,39.32170921,7 S SPRAY AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_170_15,-74.83922627,39.44066721,7 S SPRAY AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_170_16,-74.52042884,39.32076448,5 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_170_16,-74.858453,39.4381835,5 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_170_2,-74.52793406,39.31284868,2610 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_2,-74.7583145,39.4302345,2610 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_3,-74.5295383,39.30962482,2606 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_3,-74.82442877,39.3762653,2606 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_4,-74.50400683,39.324711,2600 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_170_4,-74.82412803,39.37908619,2600 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_6,-74.4745341,39.48444983,4 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_170_6,-74.497569,39.328493,4 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_170_7,-74.4448175,39.48428,6 S TEXAS AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_170_7,-74.49699967,39.32876749,6 S TEXAS AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_170_8,-74.51949807,39.46694921,8 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_8,-74.49495532,39.33308989,8 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_9,-74.51174739,39.45611829,10 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_170_9,-74.50881785,39.32394197,10 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_171_1,-74.522246,39.320762,2652 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_171_1,-74.85358,39.445779,2652 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_171_10,-74.4893915,39.3339515,21 S CALIFORNIA AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_171_10,-74.744853,39.445447,21 S CALIFORNIA AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_171_11,-74.4939175,39.3337625,19 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_171_11,-74.725671,39.4590415,19 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_171_12,-74.50450315,39.33277303,17 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1940,3,RES1,3001 -0102_171_12,-74.73455029,39.46049453,17 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1940,3,RES1,3001 -0102_171_13,-74.498666,39.330763,11 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_171_13,-74.75005055,39.4533917,11 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_171_14,-74.50382486,39.32863534,9 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_171_14,-74.76253452,39.44559845,9 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_171_15,-74.50208383,39.32596402,7 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_171_15,-74.712135,39.4738945,7 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1921,2,GOV1,3004 -0102_171_2,-74.52621808,39.31642708,2628 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_171_2,-74.7545535,39.4320455,2628 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_171_3,-74.521943,39.322373,10 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_171_3,-74.82963818,39.45086993,10 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_171_4,-74.51398175,39.32149213,14 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_171_4,-74.71992847,39.48128617,14 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_171_6,-74.501368,39.332218,2611 MONTEREY AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_171_6,-74.73036933,39.45759066,2611 MONTEREY AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_171_7,-74.50199421,39.33281647,2615 MONTEREY AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_171_7,-74.717504,39.461987,2615 MONTEREY AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_171_8,-74.49329779,39.33261412,2617 MONTEREY AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_171_8,-74.7237215,39.4558445,2617 MONTEREY AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_171_9,-74.4910355,39.333091,2619 MONTEREY AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_171_9,-74.72397232,39.45591798,2619 MONTEREY AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_172_1,-74.52460672,39.31261719,23 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_1,-74.735664,39.448129,23 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_10,-74.81855576,39.64123447,2629 PACIFIC AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_172_10,-74.68353785,39.44236488,2629 PACIFIC AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_172_12,-74.822456,39.641965,2639 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_12,-74.6841442,39.44264092,2639 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_13,-74.79687,39.6531615,2643 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_13,-74.63335796,39.4661998,2643 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_15,-74.80125097,39.65770517,29 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_15,-74.67533566,39.49058504,29 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_16,-74.42956614,39.36476634,27 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_16,-74.71486732,39.41525851,27 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_17,-74.4341735,39.3620595,25 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_17,-74.7559495,39.4321535,25 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_2,-74.50302416,39.32536102,2618 MONTEREY AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_172_2,-74.74783409,39.45219509,2618 MONTEREY AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_172_3,-74.50312599,39.32457283,2616 MONTEREY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_172_3,-74.74983322,39.4506447,2616 MONTEREY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_172_4,-74.508139,39.32417561,2614 MONTEREY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_4,-74.7464065,39.446062,2614 MONTEREY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_172_5,-74.52391386,39.31728096,26 S SPRAY AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_172_5,-74.75704195,39.43205427,26 S SPRAY AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_172_6,-74.43475601,39.36318264,28 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_172_6,-74.7598845,39.432566,28 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_172_7,-74.42261367,39.36551849,30 S SPRAY AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_172_7,-74.77681421,39.3837752,30 S SPRAY AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_172_8,-74.4420035,39.3552445,32 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_172_8,-74.6959355,39.4987745,32 S SPRAY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_172_9,-74.81845783,39.65183963,2627 PACIFIC AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_172_9,-74.62374957,39.49168634,2627 PACIFIC AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_173_1,-74.8151675,39.656414,33 S IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_1,-74.64251527,39.46237227,33 S IOWA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_173_13,-74.80002915,39.65594236,2701 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_13,-74.62134808,39.46419094,2701 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_14,-74.808454,39.640295,2703 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_14,-74.62331298,39.45926316,2703 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_15,-74.8072365,39.642441,2705 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_173_15,-74.64809995,39.45122455,2705 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_16,-74.81104596,39.64178684,2707 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_16,-74.62558502,39.4616226,2707 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_19,-74.80357452,39.64042466,2741 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_19,-74.630976,39.445143,2741 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_2,-74.83180783,39.64524742,2719 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_2,-74.6889865,39.4486205,2719 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_21,-74.80786494,39.64197466,37 S IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_21,-74.6617635,39.4471345,37 S IOWA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_173_5,-74.8185255,39.6566925,26 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_5,-74.6792945,39.4987945,26 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_173_7,-74.44289236,39.35768083,2708 MONTEREY AVE,ATLANTIC CITY CITY,35,1900,2,RES1,3001 -0102_173_7,-74.6943115,39.495189,2708 MONTEREY AVE,ATLANTIC CITY CITY,35,1900,2,RES1,3001 -0102_173_8,-74.435334,39.36366017,22 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_173_8,-74.79306103,39.41570945,22 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_173_9,-74.42486195,39.36555913,24 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_173_9,-74.75017544,39.39150766,24 S CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_174_1,-74.49260841,39.33270215,2722 ATLANTIC AVE,ATLANTIC CITY CITY,,1938,1,RES1,3001 -0102_174_1,-74.7274185,39.4558765,2722 ATLANTIC AVE,ATLANTIC CITY CITY,,1938,1,GOV1,3004 -0102_174_2,-74.5080045,39.3339595,2718 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_2,-74.7152089,39.46497467,2718 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_174_3,-74.5074864,39.33080734,2714 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_3,-74.738555,39.453454,2714 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_4,-74.50623325,39.33033283,2712 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_4,-74.75433572,39.44691621,2712 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_5,-74.5022499,39.32903484,2710 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_5,-74.75216688,39.44663805,2710 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_6,-74.5042725,39.3262985,2708 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_6,-74.78965389,39.46016718,2708 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_7,-74.5173825,39.3206975,2700 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_174_7,-74.73292007,39.47255478,2700 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_174_8,-74.495081,39.333196,14 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_174_8,-74.722971,39.458073,14 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_175_1,-74.52342585,39.3145658,2806 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_175_1,-74.7357715,39.4529785,2806 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_175_14,-74.4363815,39.3676965,3 S STENTON PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_175_14,-74.7243505,39.4317975,3 S STENTON PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_175_2,-74.52832584,39.31136448,2800 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_175_2,-74.73551168,39.44765676,2800 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_175_3,-74.50984105,39.43660464,2801 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_175_3,-74.8182805,39.6548445,2801 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_176_1,-74.52254169,39.44306384,2834 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_176_1,-74.8188125,39.654787,2834 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_176_15,-74.51247483,39.4387961,1 S BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_176_15,-74.81929083,39.64420298,1 S BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_177_1,-74.5192041,39.44020483,2901 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_177_1,-74.815496,39.654311,2901 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_177_2,-74.686465,39.6534115,AIR RIGHTS PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_177_2,-74.54798591,39.47407024,AIR RIGHTS PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_178_1,-74.79982309,39.64706133,2922 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_178_1,-74.62162238,39.4367156,2922 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_178_2,-74.80298922,39.64460185,2906 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_178_2,-74.63630583,39.44340651,2906 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_178_3,-74.80110808,39.64227066,2904 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_178_3,-74.6317815,39.446376,2904 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_178_4,-74.80045625,39.64083911,2900 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_178_4,-74.63217698,39.44577235,2900 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_1,-74.78309653,39.65200407,3 S CHELSEA AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_179_1,-74.60726355,39.49200656,3 S CHELSEA AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_179_10,-74.88685257,39.59505785,17 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_10,-74.58965688,39.46133936,17 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_11,-74.69234128,39.6521828,15 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_11,-74.54588207,39.47379277,15 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_12,-74.7909179,39.64566346,9 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_12,-74.55515793,39.47149385,9 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_13,-74.79055939,39.64354336,5 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_13,-74.5582365,39.489885,5 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_2,-74.7725745,39.6618695,4 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_2,-74.62834373,39.44002354,4 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_3,-74.79488139,39.64173908,8 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_3,-74.581726,39.4729055,8 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_4,-74.78719736,39.64706095,12 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_4,-74.55817,39.4766115,12 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_5,-74.7245095,39.651174,14 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_5,-74.5463445,39.473824,14 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_6,-74.68784602,39.65486363,3001 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_6,-74.54878922,39.47514657,3001 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_7,-74.88773467,39.5958405,3003 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_7,-74.58377816,39.44126605,3003 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_8,-74.972726,39.516444,3005 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_8,-74.581901,39.443053,3005 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_9,-74.9803535,39.512413,3029 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_179_9,-74.5497475,39.4645185,3029 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_180_1,-74.78958,39.656475,3030 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_180_1,-74.62733019,39.43953197,3030 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_180_2,-74.786901,39.665951,3004 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_180_2,-74.62260832,39.43913749,3004 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_180_4,-74.78287557,39.67460301,3000 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_180_4,-74.6270815,39.437484,3000 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_181_1,-74.734984,39.642227,3 S MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_181_1,-74.5575425,39.47672,3 S MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_181_2,-74.79418658,39.64465189,6 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_181_2,-74.57005877,39.47849217,6 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_181_3,-74.9287905,39.5606935,14 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_181_3,-74.538475,39.4620485,14 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_181_4,-74.954769,39.540273,3101 PACIFIC AVE,ATLANTIC CITY CITY,,1955,1,RES1,3001 -0102_181_4,-74.53858034,39.46410433,3101 PACIFIC AVE,ATLANTIC CITY CITY,,1955,1,RES1,3001 -0102_181_5,-74.88465538,39.56439471,15 S MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_181_5,-74.5377715,39.4691375,15 S MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_181_6,-74.970895,39.5116025,9 S MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_181_6,-74.55552613,39.46741278,9 S MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_1,-74.79251281,39.64420238,3124 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_1,-74.56603638,39.47070318,3124 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_2,-74.78683756,39.64356129,3120 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_2,-74.56471924,39.47052952,3120 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_3,-74.78492022,39.64250513,3116 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_3,-74.5772635,39.477794,3116 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_4,-74.78672149,39.63966883,3112-14 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_4,-74.60265835,39.4840528,3112-14 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_5,-74.76869483,39.6648585,3108 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_5,-74.61577446,39.48735734,3108 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_182_6,-74.77032835,39.66358764,3100 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_182_6,-74.60634552,39.50168016,3100 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_183_19,-74.5127435,39.440581,41 S SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_183_19,-74.8150185,39.6557805,41 S SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_183_9,-74.9508905,39.542925,8 S MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_183_9,-74.53811688,39.46603523,8 S MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_184_13,-74.51513525,39.44419753,29 S BOSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_184_13,-74.80793474,39.64242476,29 S BOSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_184_2,-74.88333385,39.55983693,3308 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_184_2,-74.6999663,39.42354865,3308 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_185_1,-74.93810724,39.5237705,3430 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_185_1,-74.68304242,39.41393676,3430 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_185_2,-74.92115682,39.54275904,3428 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_185_2,-74.68824708,39.41332691,3428 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_185_3,-74.91440441,39.55261176,3426 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_185_3,-74.69342644,39.42031381,3426 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_185_4,-74.92029722,39.55138495,3400 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_185_4,-74.70600846,39.42382732,3400 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_1,-74.93898081,39.51598531,3542 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_1,-74.6471285,39.4342245,3542 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_13,-74.953169,39.514385,3501 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_13,-74.6467865,39.4312045,3501 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_15,-74.93882925,39.51702107,3529 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_15,-74.63058577,39.43117223,3529 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_16,-74.946345,39.519038,3531 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_16,-74.63911162,39.4356297,3531 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_2,-74.9489665,39.5207495,3540 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_2,-74.64760529,39.43221995,3540 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_3,-74.95878685,39.51990174,3536 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_186_3,-74.6443015,39.431846,3536 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_5,-74.946385,39.5246805,3532 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_186_5,-74.6803555,39.4140375,3532 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_187_1,-74.92961963,39.51619488,3611 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_187_1,-74.6247548,39.43567331,3611 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_187_3,-74.940924,39.5201315,3604 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_187_3,-74.62759153,39.43408535,3604 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_187_4,-74.9486875,39.518769,2 S HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_187_4,-74.64037781,39.43403919,2 S HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_187_5,-74.9314185,39.5152295,3601 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_187_5,-74.626218,39.435669,3601 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_188_1,-74.51402028,39.44278769,3501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_188_1,-74.8010175,39.651812,3501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_189_1,-74.4849435,39.4364935,10 S ALBANY AVE,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_189_1,-74.78426204,39.66124929,10 S ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_19_3,-74.56382328,39.35739019,3801 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_19_3,-74.49192298,39.33644161,3801 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_1,-74.37990148,39.41423818,3822 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_1,-74.805984,39.638506,3822 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_11,-74.50933546,39.40805519,3800 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_11,-74.953045,39.517895,3800 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_12,-74.48082148,39.43140581,12 S TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_12,-74.93480413,39.52036435,12 S TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_2,-74.45434248,39.37234015,3818 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_2,-74.8276115,39.6256165,3818 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_3,-74.5019895,39.3818905,3816 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_3,-74.8582584,39.61647331,3816 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_4,-74.52953697,39.38274019,3814 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_4,-74.8586295,39.6242025,3814 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_5,-74.52536321,39.39347205,3812 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_5,-74.91241794,39.48026293,3812 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_6,-74.52730267,39.389208,3810 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_6,-74.9325862,39.5030848,3810 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_7,-74.5227165,39.3886395,3808 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_7,-74.91545162,39.50844472,3808 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_8,-74.5253495,39.387061,3806 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_8,-74.90581247,39.52835111,3806 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_9,-74.51039796,39.40131068,3804 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_190_9,-74.91631951,39.53398966,3804 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_191_1,-74.451218,39.373031,15 TRENTON TERR,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_191_1,-74.81372646,39.63231484,15 TRENTON TERR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_191_10,-74.92031,39.5150485,27 TRENTON TERR,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_191_10,-74.63413094,39.42276769,27 TRENTON TERR,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_191_11,-74.3639639,39.40984163,21 TRENTON TERR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_191_11,-74.77107847,39.63737416,21 TRENTON TERR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_191_12,-74.35785604,39.41284484,19 TRENTON TERR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_191_12,-74.8701716,39.60216182,19 TRENTON TERR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_191_13,-74.3746085,39.412918,17 TRENTON TERR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_191_13,-74.79745231,39.63712283,17 TRENTON TERR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_191_2,-74.5280975,39.3822115,16 S TRENTON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_191_2,-74.891362,39.4639415,16 S TRENTON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_191_4,-74.37611135,39.41248632,24 S TRENTON AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_191_4,-74.7982135,39.6336075,24 S TRENTON AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_191_6,-74.36582592,39.41784327,38 S TRENTON AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_191_6,-74.84097018,39.59904596,38 S TRENTON AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_191_7,-74.442181,39.3685075,44 S TRENTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_191_7,-74.72079955,39.573676,44 S TRENTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_191_8,-74.91086,39.514266,50 S TRENTON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_191_8,-74.6306377,39.42428014,50 S TRENTON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_191_9,-74.953746,39.497969,29 TRENTON TERR,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_191_9,-74.6281969,39.42244251,29 TRENTON TERR,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_192_1,-74.642708,39.472908,3835 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_192_1,-74.5799997,39.33772022,3835 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_192_2,-74.8106265,39.4342305,3829 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_192_2,-74.5793305,39.340136,3829 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_192_3.01,-74.71784918,39.44951598,3825 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_192_3.01,-74.5817865,39.3392055,3825 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_192_3.02,-74.73503907,39.43643525,3821 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_192_3.02,-74.5754028,39.33674168,3821 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_192_3.03,-74.8170219,39.63888075,3813 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES3A,3001 -0102_192_3.03,-74.63039836,39.39758003,3813 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_192_4,-74.8554235,39.624238,3807 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_192_4,-74.63791214,39.40953416,3807 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_192_5,-74.90170852,39.48719683,3805 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_192_5,-74.63563841,39.41170469,3805 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_192_6,-74.94263037,39.4892631,3801 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_192_6,-74.65877898,39.4165353,3801 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_193_1,-74.36465695,39.40893833,17 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_1,-74.77623965,39.62753799,17 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_10,-74.907661,39.474268,42 TRENTON TERR,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_193_10,-74.626352,39.412418,42 TRENTON TERR,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_193_12,-74.734799,39.440387,43 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_193_12,-74.5859983,39.33707298,43 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_193_13,-74.8059171,39.63140939,41 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_13,-74.628966,39.386306,41 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_14,-74.8186065,39.6315555,39 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_14,-74.64267937,39.40223449,39 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_15,-74.8891225,39.4726375,37 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_15,-74.6287617,39.41888811,37 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_16,-74.90228476,39.50061489,35 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3004 -0102_193_16,-74.64438874,39.41007586,35 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_193_18,-74.92629136,39.50765401,29 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_18,-74.625091,39.4211885,29 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_19,-74.42261467,39.3733395,21 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_19,-74.84547735,39.56026603,21 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_2,-74.36976059,39.41918419,14 TRENTON TERR,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_193_2,-74.8080225,39.6179505,14 TRENTON TERR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_4,-74.4010705,39.3874245,18 TRENTON TERR,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_193_4,-74.7209083,39.63348105,18 TRENTON TERR,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_193_5,-74.3635585,39.4189475,20 TRENTON TERR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_5,-74.79205726,39.63554889,20 TRENTON TERR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_193_6,-74.9259515,39.506932,22 TRENTON TERR,ATLANTIC CITY CITY,45,1915,2,RES3B,3001 -0102_193_6,-74.6277035,39.420528,22 TRENTON TERR,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_193_7,-74.941365,39.497313,36 TRENTON TERR,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_193_7,-74.62193778,39.42415183,36 TRENTON TERR,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_193_8,-74.9367235,39.488322,38 TRENTON TERR,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_193_8,-74.6536375,39.4187195,38 TRENTON TERR,ATLANTIC CITY CITY,45,1924,2,RES3A,3001 -0102_193_9,-74.9373365,39.482353,40 TRENTON TERR,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_193_9,-74.6438625,39.402404,40 TRENTON TERR,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_194_1,-74.37304983,39.40768299,3906 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_194_1,-74.77841616,39.63349332,3906 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_194_10,-74.7146235,39.438978,42 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,3,COM1,3004 -0102_194_10,-74.58288246,39.33966852,42 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_194_11,-74.81508014,39.4121083,44 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_194_11,-74.57149618,39.36117564,44 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_194_12,-74.63168603,39.48458516,48 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_194_12,-74.57600522,39.33818066,48 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_194_13,-74.66696357,39.46301124,54 S HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_194_13,-74.57860271,39.34095084,54 S HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_194_14,-74.69390129,39.44657942,3901 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_194_14,-74.57291626,39.36083629,3901 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_194_15,-74.6901297,39.44936449,63 S ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_194_15,-74.56597403,39.36390171,63 S ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_194_16,-74.69418074,39.44744908,59 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_16,-74.569495,39.3618385,59 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_17,-74.6659665,39.4564455,55 S ELBERON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_194_17,-74.57619386,39.34230677,55 S ELBERON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_194_18,-74.66958232,39.45568393,53 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_18,-74.58155431,39.34128397,53 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_19,-74.64208253,39.47396515,41 S ELBERON AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_194_19,-74.57636714,39.33767296,41 S ELBERON AVE,ATLANTIC CITY CITY,17,1915,1,GOV1,3004 -0102_194_2,-74.3740055,39.418296,3900 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_194_2,-74.81493438,39.61575587,3900 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_194_20,-74.82857471,39.40914365,33 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_194_20,-74.58013899,39.34071525,33 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3004 -0102_194_21,-74.72906151,39.45300811,31 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_194_21,-74.57715033,39.33491008,31 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_194_22,-74.8441965,39.623845,23 S ELBERON AVE,ATLANTIC CITY CITY,47,1900,3,RES1,3001 -0102_194_22,-74.643833,39.401657,23 S ELBERON AVE,ATLANTIC CITY CITY,47,1900,3,RES1,3001 -0102_194_23,-74.9235425,39.49757,21 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_194_23,-74.6442084,39.40281769,21 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_194_24,-74.76751016,39.61130148,19 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_194_24,-74.58841545,39.42470401,19 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_194_25,-74.928048,39.5092525,15 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_25,-74.63069548,39.42002061,15 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_26,-74.75235008,39.63615815,7 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_26,-74.59040082,39.42822002,7 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_27,-74.35918594,39.41383921,5 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_27,-74.88116359,39.58745658,5 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_28,-74.66650766,39.46247049,50 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_194_28,-74.5835405,39.340873,50 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_194_3,-74.372431,39.4035885,8 S HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_194_3,-74.841441,39.585139,8 S HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_194_4,-74.401686,39.390634,10 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_4,-74.793885,39.603837,10 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_5,-74.363266,39.418968,18 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_5,-74.79225972,39.63636255,18 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_6,-74.92419726,39.51096578,22 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_6,-74.6297985,39.421911,22 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_7,-74.93087983,39.48199791,28 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_7,-74.65435076,39.41899438,28 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_194_8,-74.89561833,39.48177106,32 S HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_194_8,-74.62985254,39.41527739,32 S HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_194_9,-74.8288125,39.624484,40 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_194_9,-74.63363322,39.39995128,40 S HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_195_1,-74.93305448,39.49603223,3920 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_195_1,-74.62329,39.4252225,3920 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_195_10,-74.60377734,39.37340172,46 S ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_195_10,-74.49680902,39.42853767,46 S ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_195_11,-74.69312284,39.44934219,48 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_195_11,-74.56688686,39.36343111,48 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_195_12,-74.68533584,39.44465566,54 S ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_195_12,-74.573908,39.36533142,54 S ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_195_14,-74.4756885,39.341908,3923 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_195_14,-74.8623465,39.4879385,3923 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_195_15,-74.47934064,39.35000252,55 S DOVER AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_195_15,-74.622114,39.510634,55 S DOVER AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_195_16,-74.58852287,39.37072682,45 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_195_16,-74.53111528,39.41102314,45 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_195_17,-74.6072632,39.37576553,41 S DOVER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_195_17,-74.49277016,39.43106456,41 S DOVER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_195_18,-74.59210143,39.39235615,35 S DOVER AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_195_18,-74.44299794,39.49313719,35 S DOVER AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_195_19,-74.4601205,39.35286,31 S DOVER AVE,ATLANTIC CITY CITY,45,1914,2,RES1,3001 -0102_195_19,-74.648352,39.5233855,31 S DOVER AVE,ATLANTIC CITY CITY,45,1914,2,RES1,3001 -0102_195_2,-74.94714075,39.50965658,2 S ELBERON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_195_2,-74.63160446,39.41933212,2 S ELBERON AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_195_20,-74.49055118,39.33649099,27 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_195_20,-74.66957609,39.51327265,27 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_195_21,-74.50647245,39.33539633,19 S DOVER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_195_21,-74.6032011,39.59201297,19 S DOVER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_195_22,-74.390275,39.388259,17 S DOVER AVE,ATLANTIC CITY CITY,47,1928,2,RES1,3001 -0102_195_22,-74.697232,39.6389315,17 S DOVER AVE,ATLANTIC CITY CITY,47,1928,2,RES1,3001 -0102_195_23,-74.80965972,39.56103304,11 S DOVER AVE,ATLANTIC CITY CITY,47,1900,2,COM1,3004 -0102_195_23,-74.5706745,39.4134385,11 S DOVER AVE,ATLANTIC CITY CITY,47,1900,2,RES1,3001 -0102_195_24,-74.85829534,39.56409651,9 S DOVER AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_195_24,-74.57473563,39.42799239,9 S DOVER AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_195_3,-74.90155361,39.50533154,8 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_195_3,-74.62891102,39.42235867,8 S ELBERON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_195_4,-74.716266,39.5817245,12 S ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_195_4,-74.60294477,39.41627355,12 S ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_195_5,-74.4191645,39.3688075,20 S ELBERON AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_195_5,-74.782164,39.5429045,20 S ELBERON AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_195_6,-74.487842,39.3484495,28 S ELBERON AVE,ATLANTIC CITY CITY,45,1925,3,GOV1,3004 -0102_195_6,-74.62574124,39.6081123,28 S ELBERON AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_195_7,-74.491337,39.3368505,32 S ELBERON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_195_7,-74.65230265,39.53268796,32 S ELBERON AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_195_8,-74.459647,39.35537,36 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_195_8,-74.64594368,39.52815241,36 S ELBERON AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_195_9,-74.61549523,39.38373862,40 S ELBERON AVE,ATLANTIC CITY CITY,45,1932,2,RES1,3001 -0102_195_9,-74.5155637,39.43359268,40 S ELBERON AVE,ATLANTIC CITY CITY,45,1932,2,RES1,3001 -0102_196_1,-74.6185755,39.380058,4024 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_1,-74.515647,39.4321835,4024 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_10,-74.51025865,39.33793353,4008 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_10,-74.6592185,39.6086875,4008 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_11,-74.3861915,39.392945,4006 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_11,-74.66173075,39.63451064,4006 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_12,-74.3903208,39.38935331,4004 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_12,-74.68987867,39.63719379,4004 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_13,-74.6781255,39.44685,4002 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_13,-74.5695385,39.3673565,4002 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_2,-74.60463503,39.37588158,3 S ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_196_2,-74.4905655,39.432374,3 S ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_196_3,-74.46212516,39.35927851,4022 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_196_3,-74.63877166,39.52877934,4022 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_4,-74.4566105,39.351431,4020 VENTNOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_196_4,-74.64661395,39.52240921,4020 VENTNOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_196_5,-74.4810005,39.352725,4018 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_5,-74.64611552,39.53141771,4018 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,IND1,3002 -0102_196_6,-74.4881515,39.33908067,4016 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_6,-74.64226585,39.53030144,4016 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_7,-74.4952635,39.335784,4014 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_7,-74.62060618,39.55298798,4014 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_8,-74.494069,39.3357925,4012 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_8,-74.6447026,39.55224232,4012 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_9,-74.4994065,39.3351695,4010 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_196_9,-74.6172735,39.600497,4010 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_197_1,-74.60920526,39.39222962,17 S PARKER AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_197_1,-74.47442217,39.44361353,17 S PARKER AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_197_11,-74.47661849,39.33993633,48 S DOVER AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_197_11,-74.604702,39.5195955,48 S DOVER AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_197_12,-74.574219,39.426305,4009 VAN RANSELEER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_197_12,-74.48810867,39.44077701,4009 VAN RANSELEER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_197_13,-74.5720625,39.426343,4011 VAN RENSELEER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_197_13,-74.48724587,39.46844984,4011 VAN RENSELEER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_197_14,-74.5669365,39.4188445,4015 VAN RENSELEER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_197_14,-74.44278927,39.48928141,4015 VAN RENSELEER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_197_15,-74.54076261,39.41233221,4017 VAN RENSELEER AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_197_15,-74.5049525,39.4321955,4017 VAN RENSELEER AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_197_16,-74.48551522,39.33806344,41 S PARKER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_197_16,-74.611774,39.513403,41 S PARKER AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_197_17,-74.485968,39.3358885,37 S PARKER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_197_17,-74.58943378,39.5327627,37 S PARKER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_197_18,-74.480207,39.350396,35 S PARKER AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_197_18,-74.5946045,39.5715315,35 S PARKER AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_197_19,-74.4855579,39.34598233,25 S PARKER AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_197_19,-74.6507415,39.520976,25 S PARKER AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_197_2,-74.48252166,39.35370707,22 S DOVER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3002 -0102_197_2,-74.65705214,39.52427705,22 S DOVER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_197_20,-74.59215355,39.36948953,23 S PARKER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_197_20,-74.49985526,39.4269047,23 S PARKER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_197_21,-74.66056448,39.45681368,21 S PARKER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_197_21,-74.56727881,39.36810275,21 S PARKER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_197_3,-74.46344318,39.35714696,24 S DOVER AVE,ATLANTIC CITY CITY,45,1925,3,COM1,3004 -0102_197_3,-74.63601188,39.52840458,24 S DOVER AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_197_4,-74.6101665,39.377096,28 S DOVER AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_197_4,-74.5174171,39.42986125,28 S DOVER AVE,ATLANTIC CITY CITY,45,1915,2,IND2,3002 -0102_197_5,-74.59901024,39.38179104,30 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_197_5,-74.50138063,39.43191528,30 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_197_6,-74.58919733,39.376774,32 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_197_6,-74.491187,39.4342425,32 S DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_197_7,-74.5581395,39.397973,34 S DOVER AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_197_7,-74.521153,39.402504,34 S DOVER AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_197_8,-74.53510787,39.39713402,36 S DOVER AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_197_8,-74.500704,39.412072,36 S DOVER AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_197_9,-74.48465607,39.34663175,42 S DOVER AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_197_9,-74.62250565,39.51307905,42 S DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_198_1,-74.52438082,39.31940003,4025 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_198_1,-74.7951065,39.4612195,4025 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_198_2,-74.6621085,39.4474095,4021 ATLANTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_198_2,-74.56001735,39.36197031,4021 ATLANTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_198_3,-74.60536264,39.38321231,4017 ATLANTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_198_3,-74.50985871,39.41470369,4017 ATLANTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_198_4,-74.60637003,39.38559132,4011 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_198_4,-74.50142728,39.41944294,4011 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES3A,3001 -0102_198_5,-74.5659909,39.40958636,4001 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_198_5,-74.52402211,39.42867167,4001 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_199_1,-74.584976,39.3755685,17 S ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_199_1,-74.51534848,39.41650718,17 S ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_199_10,-74.51304609,39.33029438,45 S ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_199_10,-74.83376832,39.47771457,45 S ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_199_11,-74.61846647,39.37141535,43 S ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_199_11,-74.513428,39.402359,43 S ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_199_2,-74.60785857,39.37594924,16 S PARKER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_199_2,-74.48838973,39.43382367,16 S PARKER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_199_3,-74.59689884,39.37107086,21 S ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_199_3,-74.51390679,39.41491863,21 S ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_199_4,-74.53867935,39.39636034,35 S ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_199_4,-74.511436,39.4076205,35 S ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_199_5,-74.54731584,39.40471398,4019 VAN RENSELEER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_199_5,-74.49589,39.4295105,4019 VAN RENSELEER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_199_6,-74.611272,39.390128,4021 VAN RENSELEER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_199_6,-74.50835894,39.41933474,4021 VAN RENSELEER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_199_7,-74.64743966,39.45822451,4023 VAN RENSELEER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_199_7,-74.56040753,39.36001422,4023 VAN RENSELEER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_199_8,-74.6363565,39.4621335,4025 VAN RENSELEER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_199_8,-74.5581055,39.361183,4025 VAN RENSELEER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_199_9,-74.66174285,39.44673449,4027 VAN RENSELEER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_199_9,-74.55348107,39.36184635,4027 VAN RENSELEER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_2_1,-74.377211,39.4021095,4712 ATLANTIC AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_2_1,-74.8810225,39.5901845,4712 ATLANTIC AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_2_2,-74.48780182,39.35163102,110 S NEWTON AVE,ATLANTIC CITY CITY,18,1925,1,RES3A,3001 -0102_2_2,-74.873803,39.593139,110 S NEWTON AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_20_1,-74.49195934,39.33604599,3701 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_20_1,-74.7895145,39.6253265,3701 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_200_1,-74.5893885,39.3772125,4100 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_200_1,-74.4944826,39.43476429,4100 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_200_10,-74.50951684,39.32210499,43 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_200_10,-74.75302093,39.44575702,43 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_200_11,-74.513422,39.3253705,47 S WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_200_11,-74.7307,39.455229,47 S WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_200_12,-74.50543931,39.33236233,51 S WINDSOR AVE,ATLANTIC CITY CITY,45,1902,2,RES1,3001 -0102_200_12,-74.74614868,39.44510398,51 S WINDSOR AVE,ATLANTIC CITY CITY,45,1902,2,RES1,3001 -0102_200_13,-74.8075315,39.6328085,53 S WINDSOR AVE,ATLANTIC CITY CITY,45,1909,3,RES1,3001 -0102_200_13,-74.6196445,39.3905,53 S WINDSOR AVE,ATLANTIC CITY CITY,45,1909,3,GOV1,3004 -0102_200_14,-74.8030325,39.632134,4103 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_200_14,-74.6196925,39.3714605,4103 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_200_15,-74.80697127,39.63314558,4101 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_200_15,-74.65223184,39.37213739,4101 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_200_2,-74.55883084,39.39862967,7 S WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_200_2,-74.53067585,39.40443872,7 S WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_200_3,-74.48525173,39.34672637,15 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_200_3,-74.63537925,39.50683854,15 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_200_4,-74.47639569,39.33889264,19 S WINDSOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_200_4,-74.61882266,39.51592804,19 S WINDSOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_200_5,-74.6158795,39.3945155,29 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_200_5,-74.488195,39.433952,29 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_200_6,-74.60074119,39.38006363,31 S WINDSOR AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_200_6,-74.51791665,39.41255118,31 S WINDSOR AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_200_7,-74.60995266,39.37281931,35 S WINDSOR AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_200_7,-74.514227,39.403893,35 S WINDSOR AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_200_8,-74.51179442,39.32933771,37 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_200_8,-74.82823834,39.47452795,37 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_200_9,-74.521504,39.3173955,41 S WINDSOR AVE,ATLANTIC CITY CITY,45,1904,2,RES1,3001 -0102_200_9,-74.8615395,39.450217,41 S WINDSOR AVE,ATLANTIC CITY CITY,45,1904,2,RES1,3001 -0102_201_1,-74.46080514,39.34816916,4116 VENTNOR AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_201_1,-74.86865727,39.49174159,4116 VENTNOR AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_201_10,-74.506992,39.3292365,42 S WINDSOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_10,-74.7151195,39.468244,42 S WINDSOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_11,-74.490563,39.333768,44 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_201_11,-74.7191145,39.451371,44 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_201_12,-74.81652141,39.63524228,46 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_201_12,-74.6308425,39.3801415,46 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3002 -0102_201_13,-74.797348,39.6334845,48 S WINDSOR AVE,ATLANTIC CITY CITY,45,1915,4,RES1,3001 -0102_201_13,-74.6260365,39.372683,48 S WINDSOR AVE,ATLANTIC CITY CITY,45,1915,4,RES1,3001 -0102_201_14,-74.7957145,39.6374955,50 S WINDSOR AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_201_14,-74.5986765,39.4288325,50 S WINDSOR AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_201_15,-74.86567182,39.60200584,52 S WINDSOR AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_201_15,-74.59441737,39.42562642,52 S WINDSOR AVE,ATLANTIC CITY CITY,27,1920,2,RES3A,3001 -0102_201_16,-74.382438,39.3956005,4115 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_16,-74.7398925,39.5598795,4115 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_17,-74.38459804,39.39858266,4117 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_17,-74.706724,39.6339925,4117 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_18,-74.39142514,39.38784906,4119 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_18,-74.69562293,39.6343338,4119 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_19,-74.39055485,39.38948196,4121 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_19,-74.67672283,39.60989651,4121 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_2,-74.4662051,39.34698023,2 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_201_2,-74.53660603,39.55050652,2 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_201_20,-74.38154985,39.39735455,4127 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_20,-74.79280217,39.51899665,4127 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_21,-74.82251048,39.6177298,47 S RICHMOND AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_201_21,-74.5879365,39.433259,47 S RICHMOND AVE,ATLANTIC CITY CITY,45,1900,3,RES3B,3001 -0102_201_22,-74.80860608,39.63902384,41 S RICHMOND AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_201_22,-74.6384355,39.3826295,41 S RICHMOND AVE,ATLANTIC CITY CITY,45,1900,4,COM1,3004 -0102_201_23,-74.48914292,39.33256283,37 S RICHMOND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_201_23,-74.734748,39.4379985,37 S RICHMOND AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_201_24,-74.49980188,39.32666362,31 S RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_201_24,-74.7150585,39.464313,31 S RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_201_25,-74.5188062,39.32030868,25 S RICHMOND AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_201_25,-74.7640825,39.4835715,25 S RICHMOND AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3002 -0102_201_26,-74.51395233,39.32593002,19 S RICHMOND AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_201_26,-74.8324465,39.4786705,19 S RICHMOND AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_201_27,-74.61068598,39.39152568,11 S RICHMOND AVE,ATLANTIC CITY CITY,45,1923,3,RES1,3001 -0102_201_27,-74.50857442,39.41939404,11 S RICHMOND AVE,ATLANTIC CITY CITY,45,1923,3,RES1,3001 -0102_201_28,-74.56247068,39.4084165,9 S RICHMOND AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_201_28,-74.51493278,39.43158942,9 S RICHMOND AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_201_3,-74.48544663,39.33973766,8 S WINDSOR AVE,ATLANTIC CITY CITY,17,1901,1,RES1,3001 -0102_201_3,-74.6024845,39.518213,8 S WINDSOR AVE,ATLANTIC CITY CITY,17,1901,1,RES1,3002 -0102_201_4,-74.56622782,39.41729638,16 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES3B,3001 -0102_201_4,-74.45885178,39.45308428,16 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_201_5,-74.61107708,39.38914881,24 S WINDSOR AVE,ATLANTIC CITY CITY,45,1923,2,RES1,3001 -0102_201_5,-74.491014,39.435881,24 S WINDSOR AVE,ATLANTIC CITY CITY,45,1923,2,RES1,3001 -0102_201_6,-74.46299766,39.3483435,26 S WINDSOR AVE,ATLANTIC CITY CITY,45,1890,2,RES1,3001 -0102_201_6,-74.8690005,39.494197,26 S WINDSOR AVE,ATLANTIC CITY CITY,45,1890,2,RES1,3002 -0102_201_7,-74.52168283,39.31902368,38 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_201_7,-74.8548463,39.45057301,38 S WINDSOR AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_201_8,-74.51155904,39.32281182,S WINDSOR AVE (ALLEY),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_8,-74.73104527,39.46417484,S WINDSOR AVE (ALLEY),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_201_9,-74.513634,39.325249,40 S WINDSOR AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_201_9,-74.7496035,39.453216,40 S WINDSOR AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_202_1,-74.57656019,39.40035161,4200 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_202_1,-74.49334048,39.42748619,4200 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES3A,3004 -0102_202_10,-74.63054952,39.44012335,53 S LACLEDE PL,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_202_10,-74.5567388,39.36343797,53 S LACLEDE PL,ATLANTIC CITY CITY,45,1940,2,RES3B,3001 -0102_202_11,-74.6300205,39.4390725,4201 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,COM1,3004 -0102_202_11,-74.5707365,39.3513125,4201 ATLANTIC AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_202_2,-74.4621145,39.3502365,7 S LACLEDE PL,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_202_2,-74.85801192,39.4747297,7 S LACLEDE PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_202_3,-74.52071044,39.32295941,15 S LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_202_3,-74.82037337,39.44333592,15 S LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_202_4,-74.51313404,39.32553917,21 S LACLEDE PL,ATLANTIC CITY CITY,18,1920,1,RES1,3002 -0102_202_4,-74.73559996,39.46011534,21 S LACLEDE PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_202_5,-74.49228811,39.33192467,25 S LACLEDE PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_202_5,-74.73731764,39.44958721,25 S LACLEDE PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_202_6,-74.81514817,39.6362255,31 S LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_202_6,-74.636913,39.3826045,31 S LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_202_7,-74.80326812,39.63784313,34 S RICHMOND AVE,ATLANTIC CITY CITY,45,1903,2,RES1,3001 -0102_202_7,-74.60092221,39.43480013,34 S RICHMOND AVE,ATLANTIC CITY CITY,45,1903,2,RES1,3001 -0102_202_9,-74.3936814,39.3904224,47 S LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_202_9,-74.66111823,39.63435108,47 S LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_203_1,-74.50217832,39.32878723,1 S RALEIGH AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_203_1,-74.71325116,39.46660148,1 S RALEIGH AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_203_10,-74.81418108,39.41069071,4205 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_10,-74.57035973,39.36203445,4205 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_203_11,-74.825008,39.3954205,4209 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_11,-74.56841277,39.3681508,4209 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_12,-74.82863304,39.38514608,4213 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_12,-74.562331,39.361634,4213 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_13,-74.83843008,39.3754261,4217 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_13,-74.5576875,39.367006,4217 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_14,-74.844342,39.391046,55 S RALEIGH AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_203_14,-74.56960634,39.36274462,55 S RALEIGH AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_203_15,-74.601847,39.501808,47 S RALEIGH AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_203_15,-74.56543224,39.35533979,47 S RALEIGH AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_203_18,-74.64172864,39.44917394,33 S RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_203_18,-74.55892591,39.36207468,33 S RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_203_19,-74.38435501,39.39740133,31 S RALEIGH AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_203_19,-74.77847717,39.51382736,31 S RALEIGH AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_203_2,-74.518354,39.3210585,4212 VENTNOR AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_203_2,-74.75339191,39.445477,4212 VENTNOR AVE,ATLANTIC CITY CITY,45,1910,2,RES3A,3001 -0102_203_20,-74.797454,39.620764,19 S RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_203_20,-74.5758035,39.4292095,19 S RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_203_21,-74.808096,39.6393735,15 S RALEIGH AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_203_21,-74.619923,39.3771875,15 S RALEIGH AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_203_22,-74.49404032,39.33269562,3 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_22,-74.72823007,39.45113131,3 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_203_3,-74.50163416,39.32756301,8 S LACLEDE PL,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_203_3,-74.71184158,39.46488686,8 S LACLEDE PL,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_203_4,-74.491107,39.3322585,14 S LACLEDE PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_203_4,-74.735633,39.436317,14 S LACLEDE PL,ATLANTIC CITY CITY,18,1900,1,RES3A,3001 -0102_203_5,-74.80606783,39.62846249,26 S LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_203_5,-74.5919092,39.43020369,26 S LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_203_6,-74.37763894,39.39691957,34 S LACLEDE PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_203_6,-74.70738,39.5651265,34 S LACLEDE PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_203_7,-74.62665169,39.43644293,46 S LACLEDE PL,ATLANTIC CITY CITY,18,1900,1,RES3A,3001 -0102_203_7,-74.55825535,39.36379155,46 S LACLEDE PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_203_8,-74.6253465,39.4410335,48 S LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_203_8,-74.56580284,39.35189194,48 S LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_203_9,-74.60160651,39.49916117,54 S LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_203_9,-74.56999668,39.35378455,54 S LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_204_1,-74.87689286,39.5912247,1 S DELANCY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_204_1,-74.58839446,39.42644744,1 S DELANCY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_204_10,-74.75724106,39.43337723,4301 ATLANTIC AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3004 -0102_204_10,-74.55600334,39.35875238,4301 ATLANTIC AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_204_11,-74.7434822,39.41460537,4303 ATLANTIC AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_204_11,-74.55298549,39.36260282,4303 ATLANTIC AVE,ATLANTIC CITY CITY,18,1925,1,COM3,3004 -0102_204_15,-74.75438964,39.43195066,47 S DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_204_15,-74.56913159,39.35618332,47 S DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_204_16,-74.833367,39.3724985,41 S DELANCY PL,ATLANTIC CITY CITY,47,1900,2,RES1,3001 -0102_204_16,-74.55446,39.361852,41 S DELANCY PL,ATLANTIC CITY CITY,47,1900,2,RES1,3001 -0102_204_17,-74.8443697,39.37392448,37 S DELANCY PL,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_204_17,-74.56459214,39.36519954,37 S DELANCY PL,ATLANTIC CITY CITY,45,1900,3,COM1,3004 -0102_204_18,-74.611776,39.4862095,31 S DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_204_18,-74.56464429,39.3594593,31 S DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_204_19,-74.48858242,39.33676232,25 S DELANCY PL,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_204_19,-74.68177257,39.56416495,25 S DELANCY PL,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_204_2,-74.79972851,39.63372217,2 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_204_2,-74.62452986,39.37585849,2 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_204_20,-74.48881449,39.35111778,19 S DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_204_20,-74.60533207,39.61808951,19 S DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_204_21,-74.624219,39.4526335,15 S DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_204_21,-74.55639463,39.36269795,15 S DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_204_22,-74.3904525,39.3894085,7 S DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_204_22,-74.66551612,39.62029862,7 S DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_204_3,-74.38038734,39.39995048,14 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,AGR1,3001 -0102_204_3,-74.68565334,39.63267852,14 S RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_204_4,-74.6316935,39.445856,20 S RALEIGH AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_204_4,-74.55581969,39.36247302,20 S RALEIGH AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_204_5,-74.62761358,39.4372907,26 S RALEIGH AVE,ATLANTIC CITY CITY,17,1892,1,RES1,3001 -0102_204_5,-74.56191694,39.36402866,26 S RALEIGH AVE,ATLANTIC CITY CITY,17,1892,1,RES1,3001 -0102_204_6,-74.60836,39.502007,32 S RALEIGH AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_204_6,-74.56554766,39.35365,32 S RALEIGH AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_204_7,-74.60680353,39.48992219,38 S RALEIGH AVE,ATLANTIC CITY CITY,45,1929,2,RES1,3001 -0102_204_7,-74.56610204,39.35658432,38 S RALEIGH AVE,ATLANTIC CITY CITY,45,1929,2,RES1,3001 -0102_204_8,-74.8444715,39.372435,44 S RALEIGH AVE,ATLANTIC CITY CITY,18,1920,1,GOV1,3004 -0102_204_8,-74.57469851,39.36470338,44 S RALEIGH AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_204_9,-74.75910773,39.43074953,52 S RALEIGH AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_204_9,-74.55870803,39.36805943,52 S RALEIGH AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_205_1,-74.388907,39.392665,2 S DELANCY PL,ATLANTIC CITY CITY,17,1925,1,GOV1,3004 -0102_205_1,-74.70503006,39.58832168,2 S DELANCY PL,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_205_10,-74.93930883,39.5268306,54 S DELANCY PL,ATLANTIC CITY CITY,17,1930,1,GOV1,3004 -0102_205_10,-74.68744932,39.4397454,54 S DELANCY PL,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_205_11,-74.938901,39.511971,60 S DELANCY PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_205_11,-74.60676505,39.49219445,60 S DELANCY PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_205_2,-74.50877192,39.33542556,8 S DELANCY PL,ATLANTIC CITY CITY,17,1916,1,GOV1,3004 -0102_205_2,-74.60647663,39.58898767,8 S DELANCY PL,ATLANTIC CITY CITY,17,1916,1,RES1,3001 -0102_205_3,-74.49240022,39.33860884,16 S DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_205_3,-74.6639645,39.5616295,16 S DELANCY PL,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_205_4,-74.78504636,39.63549544,18 S DELANCY PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_205_4,-74.58305094,39.41750922,18 S DELANCY PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_205_5,-74.77176843,39.63606669,24 S DELANCY PL,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_205_5,-74.57321071,39.42622585,24 S DELANCY PL,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_205_6,-74.52991345,39.30876109,38 S DELANCY PL,ATLANTIC CITY CITY,47,1925,3,RES1,3001 -0102_205_6,-74.82856033,39.40890169,38 S DELANCY PL,ATLANTIC CITY CITY,47,1925,3,IND1,3002 -0102_205_8,-74.8052865,39.641015,42 S DELANCY PL,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_205_8,-74.82988178,39.37670606,42 S DELANCY PL,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_205_9,-74.7323019,39.64158775,48 S DELANCY PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_205_9,-74.72087058,39.39152618,48 S DELANCY PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_206_1,-74.48974266,39.33873394,1 S BARTRAM AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_206_1,-74.68806873,39.55182051,1 S BARTRAM AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_206_2,-74.49310603,39.33420486,21 S BARTRAM AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_206_2,-74.71887915,39.44294434,21 S BARTRAM AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_206_3,-74.43253558,39.36524398,25 S BARTRAM AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_206_3,-74.85304882,39.39246591,25 S BARTRAM AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_206_4,-74.80865565,39.65014652,31 S BARTRAM AVE,ATLANTIC CITY CITY,45,1913,2,RES1,3001 -0102_206_4,-74.82147696,39.38978771,31 S BARTRAM AVE,ATLANTIC CITY CITY,45,1913,2,RES1,3001 -0102_206_5,-74.79331058,39.64141335,37 S BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_206_5,-74.71090795,39.41984351,37 S BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,IND2,3002 -0102_206_6,-74.88704027,39.55848911,41 S BARTRAM AVE,ATLANTIC CITY CITY,45,1900,2,AGR1,3001 -0102_206_6,-74.64547034,39.47075123,41 S BARTRAM AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_206_7,-74.927446,39.515043,47 S BARTRAM AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_206_7,-74.6336095,39.461223,47 S BARTRAM AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_206_8,-74.90472855,39.49265249,53 S BARTRAM AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_206_8,-74.57246009,39.47909436,53 S BARTRAM AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_206_9,-74.88306935,39.45899525,4401 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_206_9,-74.54705778,39.47104493,4401 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_207_1,-74.52040483,39.317096,1 S KINGSTON AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_207_1,-74.83198222,39.42726897,1 S KINGSTON AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_207_10,-74.80237334,39.63903049,54 S BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_207_10,-74.55439963,39.4676681,54 S BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_207_11,-74.71675962,39.38072876,4403 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_207_11,-74.54884883,39.36715449,4403 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_207_12,-74.687026,39.4985895,4425 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_207_12,-74.55284911,39.36734548,4425 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_207_13,-74.70407616,39.49060448,4433 ATLANTIC AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_207_13,-74.5470395,39.36818,4433 ATLANTIC AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_207_14,-74.6901435,39.491832,4437 ATLANTIC AVE,ATLANTIC CITY CITY,45,1930,4,GOV1,3004 -0102_207_14,-74.54983707,39.35888415,4437 ATLANTIC AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_207_15,-74.8806275,39.6049915,55 S KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_207_15,-74.53335055,39.45251776,55 S KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_207_16,-74.79657207,39.63928535,47 S KINGSTON AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_207_16,-74.548614,39.463188,47 S KINGSTON AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_207_17,-74.851854,39.606934,45 S KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_207_17,-74.54682621,39.47438453,45 S KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_207_18,-74.90980109,39.48139892,37 S KINGSTON AVE,ATLANTIC CITY CITY,45,1900,3,AGR1,3001 -0102_207_18,-74.56479589,39.47718832,37 S KINGSTON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_207_19,-74.92710813,39.50718942,31 S KINGSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_207_19,-74.5999715,39.49500853,31 S KINGSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_207_2,-74.772913,39.6231255,4400 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_207_2,-74.5687425,39.413839,4400 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,AGR1,3004 -0102_207_20,-74.93635398,39.52220683,25 S KINGSTON AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_207_20,-74.68153981,39.44621203,25 S KINGSTON AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_207_21,-74.72413221,39.65112232,19 S KINGSTON AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_207_21,-74.72043767,39.39173663,19 S KINGSTON AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_207_22,-74.80299602,39.64235517,15 S KINGSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_207_22,-74.805822,39.376213,15 S KINGSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_207_23,-74.81871,39.649057,9 S KINGSTON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_207_23,-74.83458132,39.40043006,9 S KINGSTON AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_207_3,-74.520855,39.3148125,2 S BARTRAM AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_207_3,-74.84933395,39.40449682,2 S BARTRAM AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_207_4,-74.80966955,39.64283366,6 S BARTRAM AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_207_4,-74.8180875,39.382082,6 S BARTRAM AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_207_5,-74.7945035,39.6430495,8 S BARTRAM AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_207_5,-74.743493,39.4118025,8 S BARTRAM AVE,ATLANTIC CITY CITY,18,1920,1,GOV1,3004 -0102_207_6,-74.9439219,39.52377332,10 S BARTRAM AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_207_6,-74.7018934,39.4462782,10 S BARTRAM AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_207_7,-74.93024465,39.51979652,40 S BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_207_7,-74.63713856,39.44490482,40 S BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_207_8,-74.9121195,39.481061,42 S BARTRAM AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_207_8,-74.56744594,39.47508466,42 S BARTRAM AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_207_9,-74.85023267,39.60601305,46 S BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_207_9,-74.548373,39.4725035,46 S BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_208_1,-74.79164873,39.67692205,4500 VENTNOR AVE,ATLANTIC CITY CITY,18,1930,1,RES1,3001 -0102_208_1,-74.75788827,39.43171914,4500 VENTNOR AVE,ATLANTIC CITY CITY,18,1930,1,RES1,3001 -0102_208_11,-74.78638836,39.60925905,4501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_208_11,-74.63097545,39.42202269,4501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_208_1101,-74.5508255,39.378854,4501 ATLANTIC A1,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1101,-74.48585995,39.33839501,4501 ATLANTIC A1,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1102,-74.59051071,39.31840041,4501 ATLANTIC A2,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1102,-74.47859787,39.34398994,4501 ATLANTIC A2,ATLANTIC CITY CITY,39,1900,1,COM1,3004 -0102_208_1103,-74.59092082,39.31860997,4501 ATLANTIC A3,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1103,-74.47954563,39.34411584,4501 ATLANTIC A3,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1104,-74.59132596,39.32031968,4501 ATLANTIC A4,ATLANTIC CITY CITY,39,1900,1,COM3,3004 -0102_208_1104,-74.47993677,39.34414914,4501 ATLANTIC A4,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1105,-74.5892055,39.321964,4501 ATLANTIC A5,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1105,-74.48065694,39.34382535,4501 ATLANTIC A5,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1106,-74.58293982,39.32481096,4501 ATLANTIC A6,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1106,-74.47775441,39.34404928,4501 ATLANTIC A6,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1107,-74.58392946,39.32479181,4501 ATLANTIC A7,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1107,-74.4786275,39.34467854,4501 ATLANTIC A7,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1108,-74.58578051,39.32572666,4501 ATLANTIC B1,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1108,-74.48084834,39.34529769,4501 ATLANTIC B1,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1109,-74.61201703,39.31522443,4501 ATLANTIC B2,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1109,-74.47778957,39.34472367,4501 ATLANTIC B2,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1110,-74.6137768,39.31610826,4501 ATLANTIC B3,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1110,-74.48160407,39.34544667,4501 ATLANTIC B3,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1111,-74.6067595,39.3135935,4501 ATLANTIC B4,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1111,-74.48051843,39.34530773,4501 ATLANTIC B4,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1112,-74.60763566,39.31409349,4501 ATLANTIC B5,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1112,-74.47965585,39.34527229,4501 ATLANTIC B5,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1113,-74.60578083,39.31544665,4501 ATLANTIC B6,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1113,-74.4780419,39.34426286,4501 ATLANTIC B6,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1114,-74.60334865,39.31604634,4501 ATLANTIC C1,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1114,-74.47907264,39.34417884,4501 ATLANTIC C1,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1115,-74.59867817,39.31656005,4501 ATLANTIC C2,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1115,-74.4763853,39.34515356,4501 ATLANTIC C2,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1116,-74.60318,39.3169485,4501 ATLANTIC C3,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1116,-74.47626092,39.34511503,4501 ATLANTIC C3,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1117,-74.60170183,39.3083228,4501 ATLANTIC C5,ATLANTIC CITY CITY,39,1900,1,GOV1,3004 -0102_208_1117,-74.47706208,39.34384619,4501 ATLANTIC C5,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1118,-74.59523331,39.31231279,4501 ATLANTIC C4,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1118,-74.47946499,39.34461118,4501 ATLANTIC C4,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1119,-74.59521582,39.31524729,4501 ATLANTIC C6,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_1119,-74.47807202,39.34507545,4501 ATLANTIC C6,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_208_12,-74.76490136,39.61484403,4503 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_208_12,-74.626193,39.424482,4503 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_208_2,-74.79182135,39.64633239,3 S ABERDEEN PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_208_2,-74.7117385,39.3938345,3 S ABERDEEN PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_208_3,-74.94784,39.5319145,11 S ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_208_3,-74.6701485,39.4638755,11 S ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_208_4,-74.9462695,39.5201595,17 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_208_4,-74.63304016,39.45819165,17 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_208_5,-74.94938826,39.50042556,23 S ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_208_5,-74.60728047,39.47797567,23 S ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_208_6,-74.88507201,39.48384567,27 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_208_6,-74.55610521,39.47363103,27 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_208_7,-74.85482797,39.61029033,35 S ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_208_7,-74.54759528,39.47731979,35 S ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_208_8,-74.86846389,39.59188242,43 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_208_8,-74.64641962,39.43431965,43 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_208_9,-74.83179671,39.59246495,47 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_208_9,-74.63105874,39.43141278,47 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_1,-74.92554959,39.52029366,5 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_1,-74.60168693,39.48150675,5 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_10,-74.486663,39.333136,4505 ATLANTIC AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_10,-74.86128095,39.43578949,4505 ATLANTIC AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_11,-74.42414611,39.36620668,4511 ATLANTIC AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_11,-74.8290515,39.406198,4511 ATLANTIC AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_12,-74.52672054,39.31488181,41 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_12,-74.732366,39.4429765,41 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_13,-74.74530774,39.63456882,39 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1904,1,RES1,3001 -0102_209_13,-74.62947881,39.42520793,39 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1904,1,RES1,3001 -0102_209_14,-74.79427949,39.63043615,33 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_14,-74.62727607,39.43482001,33 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,COM3,3004 -0102_209_15,-74.86696208,39.59455958,27 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_15,-74.6530075,39.4196495,27 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_16,-74.8085995,39.617663,19 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_209_16,-74.55061329,39.46540976,19 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1910,1,GOV1,3004 -0102_209_17,-74.8837085,39.463435,15 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_17,-74.55254129,39.48689759,15 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_2,-74.95929167,39.51324695,4502 VENTNOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_209_2,-74.683104,39.4441775,4502 VENTNOR AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_209_3,-74.94341,39.5110125,4 S ABERDEEN PL,ATLANTIC CITY CITY,18,1918,1,RES1,3001 -0102_209_3,-74.62494008,39.44356683,4 S ABERDEEN PL,ATLANTIC CITY CITY,18,1918,1,RES1,3001 -0102_209_4,-74.92523227,39.47545449,18 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_4,-74.5571545,39.472179,18 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_5,-74.80398548,39.63344723,24 S ABERDEEN PL,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_209_5,-74.6073131,39.43943426,24 S ABERDEEN PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_209_6,-74.8727475,39.602798,30 S ABERDEEN PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_209_6,-74.5312945,39.447143,30 S ABERDEEN PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_209_7,-74.77913122,39.63370546,38 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_7,-74.62181131,39.43472187,38 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_209_8,-74.7718555,39.6145255,44 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_8,-74.6275025,39.419971,44 S ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_209_9,-74.87917018,39.57181708,50 S ABERDEEN PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_209_9,-74.6323702,39.41410253,50 S ABERDEEN PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_21_1,-74.6218502,39.42016707,3601 BOARDWALK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_21_1,-74.58078925,39.31295005,3601 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_210_1,-74.87437584,39.60034449,1 S PLAZA PL,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_210_1,-74.54210502,39.45891624,1 S PLAZA PL,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_210_10,-74.57383242,39.34358065,49 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_10,-74.45925785,39.35240148,49 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_11,-74.42742147,39.36690776,43 S PLAZA PL,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_210_11,-74.8148395,39.4040135,43 S PLAZA PL,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_210_12,-74.52433617,39.31685554,35 S PLAZA PL,ATLANTIC CITY CITY,18,1905,1,GOV1,3004 -0102_210_12,-74.71703393,39.43877633,35 S PLAZA PL,ATLANTIC CITY CITY,18,1905,1,RES1,3001 -0102_210_13,-74.75073266,39.59524603,25 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_13,-74.6469075,39.4179545,25 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_14,-74.7624865,39.6334815,3 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_14,-74.632816,39.4204735,3 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_2,-74.8092445,39.634257,2 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_210_2,-74.53189411,39.47149878,2 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_210_3,-74.87882964,39.59112513,16 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_210_3,-74.69596244,39.41945428,16 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_210_4,-74.77471694,39.62574283,24 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_4,-74.63203044,39.41948279,24 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_210_5,-74.707387,39.582394,32 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_5,-74.63809557,39.41249195,32 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_210_6,-74.52443222,39.31529773,38 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1915,1,GOV1,3004 -0102_210_6,-74.7214855,39.445146,38 S TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1915,1,RES1,3001 -0102_210_7,-74.434973,39.3669115,44 S TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_210_7,-74.833975,39.4258575,44 S TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_210_8,-74.4425355,39.3577615,50 S TALLAHASSEE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_210_8,-74.84795537,39.37186522,50 S TALLAHASSEE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_210_9,-74.83434004,39.64111644,4601 ATLANTIC AVE,ATLANTIC CITY CITY,20,1925,1,RES1,3001 -0102_210_9,-74.83134931,39.39267353,4601 ATLANTIC AVE,ATLANTIC CITY CITY,20,1925,1,RES1,3001 -0102_211_1,-74.76593899,39.63607367,2 S PLAZA PL,ATLANTIC CITY CITY,18,1920,1,RES1,3004 -0102_211_1,-74.6326027,39.42097858,2 S PLAZA PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_211_2,-74.74897516,39.60344502,10 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_211_2,-74.65996952,39.41880163,10 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_211_3,-74.85869934,39.54371245,16 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_211_3,-74.63194698,39.4154138,16 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_211_4,-74.4363295,39.36449,30 S PLAZA PL,ATLANTIC CITY CITY,18,1906,1,RES1,3001 -0102_211_4,-74.83984362,39.41242269,30 S PLAZA PL,ATLANTIC CITY CITY,18,1906,1,RES1,3001 -0102_211_5,-74.819429,39.6546705,38 S PLAZA PL,ATLANTIC CITY CITY,18,1905,1,GOV1,3004 -0102_211_5,-74.83409283,39.38537502,38 S PLAZA PL,ATLANTIC CITY CITY,18,1905,1,RES1,3001 -0102_212_10,-74.68426349,39.44280933,4701 ATLANTIC AVE,ATLANTIC CITY CITY,45,1893,4,RES1,3004 -0102_212_10,-74.6082345,39.3211135,4701 ATLANTIC AVE,ATLANTIC CITY CITY,45,1893,4,RES1,3001 -0102_212_11,-74.6410275,39.463499,4703 ATLANTIC AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_212_11,-74.61303101,39.32128967,4703 ATLANTIC AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_212_12,-74.68280822,39.45065248,4705 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_212_12,-74.6071475,39.331006,4705 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_212_13,-74.63863918,39.46076865,4707 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_212_13,-74.611371,39.322895,4707 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_212_14,-74.625527,39.4639805,4709 ATLANTIC AVE,ATLANTIC CITY CITY,18,1880,1,RES1,3001 -0102_212_14,-74.61247407,39.32142672,4709 ATLANTIC AVE,ATLANTIC CITY CITY,18,1880,1,RES1,3001 -0102_212_15,-74.6317675,39.4385545,4711 ATLANTIC AVE,ATLANTIC CITY CITY,18,1900,1,COM3,3004 -0102_212_15,-74.60193449,39.31808508,4711 ATLANTIC AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_212_16,-74.637834,39.4452015,53 S JACKSON AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_212_16,-74.613332,39.324556,53 S JACKSON AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_212_17,-74.632108,39.458434,51 S JACKSON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_212_17,-74.6138125,39.3217955,51 S JACKSON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_212_2,-74.69061974,39.44872594,35 S JACKSON AVE,ATLANTIC CITY CITY,17,1921,1,RES1,3001 -0102_212_2,-74.60126899,39.33025067,35 S JACKSON AVE,ATLANTIC CITY CITY,17,1921,1,RES1,3001 -0102_212_3,-74.692588,39.448484,4712 THERESA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_212_3,-74.60083833,39.32899808,4712 THERESA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_212_4,-74.68263739,39.45945013,4710 THERESA PL,ATLANTIC CITY CITY,45,1917,2,RES1,3001 -0102_212_4,-74.60751059,39.32743932,4710 THERESA PL,ATLANTIC CITY CITY,45,1917,2,RES1,3001 -0102_212_8,-74.6755115,39.484576,38 S MONTGOMERY AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_212_8,-74.57342938,39.34553069,38 S MONTGOMERY AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_212_9,-74.6295665,39.492224,46 S MONTGOMERY AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_212_9,-74.57298901,39.34808316,46 S MONTGOMERY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_213_1,-74.8152915,39.6571895,4716 VENTNOR AVE,ATLANTIC CITY CITY,18,1906,1,RES1,3001 -0102_213_1,-74.81854096,39.39579514,4716 VENTNOR AVE,ATLANTIC CITY CITY,18,1906,1,RES1,3001 -0102_213_10,-74.82566455,39.64045727,28 S MONTGOMERY AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_213_10,-74.83539264,39.38443318,28 S MONTGOMERY AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_213_12,-74.819502,39.6415985,4701 THERESA PL,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_213_12,-74.83558234,39.37153033,4701 THERESA PL,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_213_13,-74.57108046,39.34436564,4703 THERESA PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_213_13,-74.45561267,39.3530985,4703 THERESA PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_213_14,-74.5668232,39.34514262,4705 THERESA PL,ATLANTIC CITY CITY,45,1923,2,RES1,3001 -0102_213_14,-74.4585215,39.353596,4705 THERESA PL,ATLANTIC CITY CITY,45,1923,2,RES1,3001 -0102_213_16,-74.5736495,39.3488135,4709 THERESA PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_213_16,-74.46526103,39.35402803,4709 THERESA PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_213_17,-74.68505646,39.49999589,4711 THERESA PL,ATLANTIC CITY CITY,18,1915,1,RES1,3001 -0102_213_17,-74.57479557,39.34309167,4711 THERESA PL,ATLANTIC CITY CITY,18,1915,1,RES1,3001 -0102_213_19,-74.66749937,39.46291053,27 S JACKSON AVE,ATLANTIC CITY CITY,18,1924,1,RES4,3001 -0102_213_19,-74.61194054,39.3266702,27 S JACKSON AVE,ATLANTIC CITY CITY,18,1924,1,RES1,3001 -0102_213_2,-74.42433082,39.36647952,4714 VENTNOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_213_2,-74.8226871,39.40803168,4714 VENTNOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_213_20,-74.655298,39.487218,21 S JACKSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_213_20,-74.573126,39.346233,21 S JACKSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_213_23,-74.8288755,39.6499555,15 S JACKSON AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_213_23,-74.82085871,39.39796111,15 S JACKSON AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_213_3,-74.43556209,39.36817669,4712 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_213_3,-74.8007296,39.43414432,4712 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_213_4,-74.439405,39.3651855,4710 VENTNOR AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_213_4,-74.84308652,39.40869152,4710 VENTNOR AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_213_5,-74.52151818,39.31585318,4708 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_213_5,-74.72467875,39.44580111,4708 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_213_6,-74.82544129,39.57048697,4704 VENTNOR AVE,ATLANTIC CITY CITY,45,1965,2,RES1,3001 -0102_213_6,-74.63161845,39.4182552,4704 VENTNOR AVE,ATLANTIC CITY CITY,45,1965,2,RES1,3001 -0102_213_7,-74.86385313,39.56705374,2 S MONTGOMERY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_213_7,-74.63255695,39.41461119,2 S MONTGOMERY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_213_8,-74.43421354,39.36610955,12 S MONTGOMERY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_213_8,-74.84209485,39.40957031,12 S MONTGOMERY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_213_9,-74.4124185,39.366305,24 S MONTGOMERY AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_213_9,-74.8442265,39.3730655,24 S MONTGOMERY AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_214_1,-74.55845692,39.46738098,49 N JACKSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_214_1,-74.50027443,39.49995175,49 N JACKSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_214_10,-74.62434384,39.43427699,22 N NEWTON AVE,ATLANTIC CITY CITY,17,1911,1,RES1,3001 -0102_214_10,-74.47181855,39.48887318,22 N NEWTON AVE,ATLANTIC CITY CITY,17,1911,1,RES1,3001 -0102_214_11,-74.78576969,39.63141025,2 N NEWTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_214_11,-74.62814209,39.43403297,2 N NEWTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_214_12,-74.784386,39.6103325,4715 VENTNOR AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_214_12,-74.62660033,39.41964899,4715 VENTNOR AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_214_13,-74.724478,39.5895245,4717 VENTNOR AVE,ATLANTIC CITY CITY,18,1919,1,GOV1,3004 -0102_214_13,-74.6363546,39.41144193,4717 VENTNOR AVE,ATLANTIC CITY CITY,18,1919,1,RES1,3001 -0102_214_14,-74.62770548,39.41948718,1 N JACKSON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_214_14,-74.45900736,39.4972097,1 N JACKSON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_214_15,-74.631664,39.4217665,25 N JACKSON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_214_15,-74.46916452,39.49266623,25 N JACKSON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_214_16,-74.631726,39.428312,27 N JACKSON AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_214_16,-74.47182017,39.488335,27 N JACKSON AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_214_17,-74.64751946,39.43454121,29 N JACKSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_214_17,-74.48608941,39.49870493,29 N JACKSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_214_18,-74.64469738,39.43301178,31 N JACKSON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_214_18,-74.48851174,39.47419078,31 N JACKSON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_214_19,-74.6476885,39.4320655,43 N JACKSON AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_214_19,-74.530471,39.4717225,43 N JACKSON AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_214_2,-74.60749018,39.44020943,42 N NEWTON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_214_2,-74.49955588,39.497628,42 N NEWTON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_214_20,-74.69476136,39.41999367,45 N JACKSON AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_214_20,-74.50964568,39.48449716,45 N JACKSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_214_21,-74.7056043,39.42274841,47 N JACKSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_214_21,-74.49561887,39.49260882,47 N JACKSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_214_3,-74.53845974,39.46463324,40 N NEWTON AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_214_3,-74.499333,39.492885,40 N NEWTON AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_214_4,-74.538269,39.4671825,38 N NEWTON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_214_4,-74.5074525,39.4944895,38 N NEWTON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_214_5,-74.70526672,39.42626165,36 N NEWTON AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_214_5,-74.48734516,39.49330622,36 N NEWTON AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_214_6,-74.64635631,39.43073696,34 N NEWTON AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_214_6,-74.53102812,39.4702637,34 N NEWTON AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_214_7,-74.6441735,39.4323945,32 N NEWTON AVE,ATLANTIC CITY CITY,17,1911,1,RES1,3001 -0102_214_7,-74.4964505,39.4702755,32 N NEWTON AVE,ATLANTIC CITY CITY,17,1911,1,RES1,3001 -0102_214_8,-74.643279,39.433915,30 N NEWTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_214_8,-74.4886755,39.4783795,30 N NEWTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_214_9,-74.63537505,39.42773009,28 N NEWTON AVE,ATLANTIC CITY CITY,17,1911,1,RES1,3001 -0102_214_9,-74.48402244,39.49475123,28 N NEWTON AVE,ATLANTIC CITY CITY,17,1911,1,RES1,3001 -0102_215_1,-74.601195,39.436982,39 N NEWTON AVE,ATLANTIC CITY CITY,45,1924,3,RES1,3001 -0102_215_1,-74.530465,39.4991905,39 N NEWTON AVE,ATLANTIC CITY CITY,45,1924,3,GOV1,3004 -0102_215_10,-74.9519505,39.5165575,30 N MONTGOMERY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_215_10,-74.64791916,39.46024441,30 N MONTGOMERY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_215_11,-74.927188,39.5195665,28 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_215_11,-74.62394855,39.46113054,28 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_215_12,-74.92132667,39.53399046,26 N MONTGOMERY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_215_12,-74.59317749,39.48887167,26 N MONTGOMERY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_215_13,-74.9084914,39.49552027,24 N MONTGOMERY AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_215_13,-74.57119923,39.47877781,24 N MONTGOMERY AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_215_14,-74.89721074,39.47351601,22 N MONTGOMERY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_215_14,-74.554793,39.4771275,22 N MONTGOMERY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_215_15,-74.811681,39.6348625,18 N MONTGOMERY AVE,ATLANTIC CITY CITY,17,1917,1,RES1,3001 -0102_215_15,-74.60033419,39.43671757,18 N MONTGOMERY AVE,ATLANTIC CITY CITY,17,1917,1,RES1,3001 -0102_215_16,-74.79556538,39.60944048,14 N MONTGOMERY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_215_16,-74.53829385,39.46279633,14 N MONTGOMERY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_215_17,-74.8807325,39.5928435,2 N MONTGOMERY AVE,ATLANTIC CITY CITY,18,1922,1,RES1,3001 -0102_215_17,-74.684348,39.41655,2 N MONTGOMERY AVE,ATLANTIC CITY CITY,18,1922,1,RES1,3001 -0102_215_18,-74.8733345,39.5960885,4703 VENTNOR AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_215_18,-74.646191,39.4310265,4703 VENTNOR AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_215_19,-74.84071109,39.59983868,4709 VENTNOR AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_215_19,-74.6343995,39.431172,4709 VENTNOR AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_215_2,-74.6002003,39.43625484,46 N MONTGOMERY AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_215_2,-74.484923,39.5226475,46 N MONTGOMERY AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_215_20,-74.79806404,39.60822784,3 N NEWTON AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_215_20,-74.537939,39.462314,3 N NEWTON AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_215_21,-74.80767013,39.63437645,21 N NEWTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_215_21,-74.53866038,39.47212072,21 N NEWTON AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_215_22,-74.89431076,39.47312626,25 N NEWTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_215_22,-74.5638205,39.477061,25 N NEWTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_215_23,-74.93511553,39.4967969,27 N NEWTON AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_215_23,-74.57435772,39.49982581,27 N NEWTON AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_215_24,-74.94855649,39.52047929,29 N NEWTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_215_24,-74.63773549,39.46018234,29 N NEWTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_215_25,-74.944061,39.52414,33 N NEWTON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_215_25,-74.70401138,39.44445971,33 N NEWTON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_215_26,-74.55360621,39.46452311,35 N NEWTON AVE,ATLANTIC CITY CITY,17,2008,1,RES1,3001 -0102_215_26,-74.49908545,39.4983974,35 N NEWTON AVE,ATLANTIC CITY CITY,17,2008,1,RES1,3001 -0102_215_27,-74.60727703,39.43900999,37 N NEWTON AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_215_27,-74.511701,39.4888185,37 N NEWTON AVE,ATLANTIC CITY CITY,27,1920,2,COM1,3004 -0102_215_3,-74.44225661,39.35746005,44 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_215_3,-74.84349997,39.39111408,44 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_215_4,-74.82718756,39.64300884,42 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_215_4,-74.829699,39.38740384,42 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_215_5,-74.80078506,39.6400234,40 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_215_5,-74.83305608,39.37252867,40 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_215_6,-74.77688502,39.66620215,38 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_215_6,-74.714163,39.4294905,38 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_215_7,-74.7859577,39.64397618,36 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_215_7,-74.71683634,39.40447382,36 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_215_8,-74.6885655,39.6541155,34 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_215_8,-74.68318116,39.49618549,34 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_215_9,-74.94865467,39.53241735,32 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_215_9,-74.67218584,39.45646889,32 N MONTGOMERY AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_216_1,-74.87612839,39.59507571,18 N PLAZA PL,ATLANTIC CITY CITY,18,1900,1,COM1,3004 -0102_216_1,-74.6031555,39.407313,18 N PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_216_2,-74.78121465,39.63668155,16 N PLAZA PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_216_2,-74.58489884,39.40601539,16 N PLAZA PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_216_3,-74.77238353,39.62704761,14 N PLAZA PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_216_3,-74.53984367,39.4126763,14 N PLAZA PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_216_4,-74.44113244,39.36638682,12 N PLAZA PL,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_216_4,-74.8521893,39.3929054,12 N PLAZA PL,ATLANTIC CITY CITY,17,1915,1,COM4,3004 -0102_216_5,-74.7983335,39.641185,10 N PLAZA PL,ATLANTIC CITY CITY,17,1916,1,RES1,3002 -0102_216_5,-74.8243995,39.371219,10 N PLAZA PL,ATLANTIC CITY CITY,17,1916,1,RES1,3001 -0102_216_6,-74.72255817,39.63982894,8 N PLAZA PL,ATLANTIC CITY CITY,17,1924,1,RES1,3001 -0102_216_6,-74.69479,39.4974825,8 N PLAZA PL,ATLANTIC CITY CITY,17,1924,1,RES1,3001 -0102_216_7,-74.96247559,39.51193936,6 N PLAZA PL,ATLANTIC CITY CITY,18,1953,1,RES1,3001 -0102_216_7,-74.63251151,39.45330834,6 N PLAZA PL,ATLANTIC CITY CITY,18,1953,1,COM1,3004 -0102_216_8,-74.89523128,39.51206349,4 N PLAZA PL,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_216_8,-74.60563502,39.48187174,4 N PLAZA PL,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_216_9,-74.88961461,39.45455914,2 N PLAZA PL,ATLANTIC CITY CITY,18,1919,1,COM1,3004 -0102_216_9,-74.5476571,39.47094928,2 N PLAZA PL,ATLANTIC CITY CITY,18,1919,1,RES3A,3001 -0102_217_1,-74.391956,39.3909685,19 N PLAZA PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_217_1,-74.628852,39.6088775,19 N PLAZA PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_217_10,-74.72106693,39.64454981,2 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1915,1,RES1,3001 -0102_217_10,-74.69121688,39.48749804,2 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1915,1,RES3A,3001 -0102_217_11,-74.93437534,39.52124353,4605 VENTNOR AVE,ATLANTIC CITY CITY,18,1927,1,RES3A,3001 -0102_217_11,-74.6802731,39.44521343,4605 VENTNOR AVE,ATLANTIC CITY CITY,18,1927,1,RES1,3001 -0102_217_12,-74.9460605,39.5095785,1 N PLAZA PL,ATLANTIC CITY CITY,45,1921,2,IND1,3002 -0102_217_12,-74.62310956,39.43943125,1 N PLAZA PL,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_217_13,-74.89068115,39.55749449,3 N PLAZA PL,ATLANTIC CITY CITY,18,1914,1,RES1,3001 -0102_217_13,-74.68409797,39.50325925,3 N PLAZA PL,ATLANTIC CITY CITY,18,1914,1,RES1,3001 -0102_217_14,-74.80390498,39.64360148,5 N PLAZA PL,ATLANTIC CITY CITY,19,1900,1,RES1,3001 -0102_217_14,-74.7586465,39.4313905,5 N PLAZA PL,ATLANTIC CITY CITY,19,1900,1,RES1,3001 -0102_217_15,-74.8117415,39.662762,7 N PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_15,-74.83597822,39.3949389,7 N PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_16,-74.50622551,39.3235019,9 N PLAZA PL,ATLANTIC CITY CITY,18,1915,1,COM1,3004 -0102_217_16,-74.8416645,39.4028325,9 N PLAZA PL,ATLANTIC CITY CITY,18,1915,1,RES1,3001 -0102_217_17,-74.77565036,39.62711388,11 N PLAZA PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_217_17,-74.57145535,39.42789002,11 N PLAZA PL,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_217_18,-74.795022,39.6047545,15 N PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_18,-74.60525193,39.40835482,15 N PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_19,-74.499092,39.335651,17 N PLAZA PL,ATLANTIC CITY CITY,17,1916,1,RES1,3001 -0102_217_19,-74.6075343,39.59421504,17 N PLAZA PL,ATLANTIC CITY CITY,17,1916,1,RES1,3001 -0102_217_2,-74.54903327,39.47423843,4600 WINCHESTER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_2,-74.48989284,39.52280253,4600 WINCHESTER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_3,-74.392946,39.392092,54 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_3,-74.70591433,39.58383983,54 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_4,-74.49946551,39.33771374,14 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_4,-74.6018065,39.5965575,14 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_217_5,-74.79028351,39.63176533,12 N TALLAHASSEE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_217_5,-74.58774873,39.41623206,12 N TALLAHASSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_217_6,-74.79198278,39.63033128,10 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_217_6,-74.5763325,39.4099295,10 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_217_7,-74.494999,39.3342495,8 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_7,-74.71171356,39.43806635,8 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_8,-74.44213137,39.35821432,6 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_8,-74.84223024,39.38486584,6 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_9,-74.799419,39.6435805,4 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_217_9,-74.75436183,39.43073268,4 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_218_1,-74.566409,39.480016,65 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_218_1,-74.59177074,39.31168368,65 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_218_10,-74.752704,39.6359565,16 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_10,-74.57020467,39.41370766,16 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_11,-74.48610283,39.33421551,4505 VENTNOR AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_218_11,-74.8139325,39.406708,4505 VENTNOR AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_218_12,-74.833907,39.642033,4507 VENTNOR AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_218_12,-74.83215898,39.38632066,4507 VENTNOR AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_218_13,-74.81203437,39.65035858,4509 VENTNOR AVE,ATLANTIC CITY CITY,47,1900,2,RES1,3001 -0102_218_13,-74.8165865,39.3904875,4509 VENTNOR AVE,ATLANTIC CITY CITY,47,1900,2,RES1,3001 -0102_218_14,-74.78309461,39.65571167,4511 VENTNOR AVE,ATLANTIC CITY CITY,18,1912,1,RES1,3004 -0102_218_14,-74.71013704,39.43052398,4511 VENTNOR AVE,ATLANTIC CITY CITY,18,1912,1,RES1,3001 -0102_218_15,-74.436995,39.3538545,15 N TALLAHASSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_218_15,-74.84879287,39.38742986,15 N TALLAHASSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_218_16,-74.5247695,39.315673,19 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_218_16,-74.84488414,39.4084959,19 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_218_17,-74.765627,39.6366165,25 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_17,-74.5697505,39.413207,25 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_18,-74.78659484,39.63602751,29 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_18,-74.58266691,39.41771322,29 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_19,-74.8820625,39.5935435,31 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_19,-74.61114176,39.40225085,31 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_2,-74.5795404,39.48015501,54 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_2,-74.59910377,39.31345964,54 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_20,-74.50500484,39.34012305,35 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_20,-74.5817595,39.5724695,35 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_21,-74.50978916,39.33594345,39 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1916,1,RES1,3001 -0102_218_21,-74.65627588,39.59050085,39 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1916,1,RES1,3001 -0102_218_22,-74.539105,39.4713485,43 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_218_22,-74.48997768,39.51774987,43 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_218_23,-74.5482805,39.47286,47 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_218_23,-74.48919269,39.52256049,47 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_218_24,-74.56390918,39.47635761,49 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_218_24,-74.459761,39.5463945,49 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_218_3,-74.56665868,39.47930146,52 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_3,-74.60281382,39.31681141,52 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_4,-74.55478831,39.47062735,50 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_4,-74.53382204,39.30657892,50 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_5,-74.551029,39.4703285,46 N ABERDEEN PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_218_5,-74.529119,39.523504,46 N ABERDEEN PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_218_6,-74.39167717,39.39176376,40 N ABERDEEN PL,ATLANTIC CITY CITY,17,1905,1,RES1,3001 -0102_218_6,-74.70690967,39.58325098,40 N ABERDEEN PL,ATLANTIC CITY CITY,17,1905,1,RES1,3001 -0102_218_7,-74.50386866,39.33530694,36 N ABERDEEN PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_218_7,-74.6097853,39.59590659,36 N ABERDEEN PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_218_8,-74.4981905,39.3373575,30 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_8,-74.66971245,39.56016055,30 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_9,-74.79089629,39.63188689,20 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_218_9,-74.58897068,39.41662056,20 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_219_1,-74.606536,39.4914425,65 N ABERDEEN PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_219_1,-74.58984842,39.32197082,65 N ABERDEEN PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_219_10,-74.8757923,39.59309371,15 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_219_10,-74.60583781,39.41382943,15 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_219_11,-74.790074,39.6352125,11 N ABERDEEN PL,ATLANTIC CITY CITY,45,1904,2,RES1,3001 -0102_219_11,-74.58504353,39.41588233,11 N ABERDEEN PL,ATLANTIC CITY CITY,45,1904,2,GOV1,3004 -0102_219_12,-74.76296194,39.63444073,4501 VENTNOR AVE,ATLANTIC CITY CITY,18,2002,1,RES1,3001 -0102_219_12,-74.57485782,39.42219702,4501 VENTNOR AVE,ATLANTIC CITY CITY,18,2002,1,RES1,3001 -0102_219_2,-74.60247669,39.48207736,55 N ABERDEEN PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_219_2,-74.6176875,39.312185,55 N ABERDEEN PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_219_3,-74.60709428,39.48670053,53 N ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_219_3,-74.604276,39.3105745,53 N ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_219_4,-74.5648287,39.47896868,45 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_219_4,-74.5980837,39.31655455,45 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_219_5,-74.56800988,39.47813969,43 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_219_5,-74.59387184,39.31258893,43 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_219_6,-74.54326014,39.47969833,37 N ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_219_6,-74.51958838,39.53362107,37 N ABERDEEN PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_219_7,-74.5327145,39.4707375,31 N ABERDEEN PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_219_7,-74.49660597,39.52630534,31 N ABERDEEN PL,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_219_8,-74.51092383,39.33804737,27 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_219_8,-74.6508925,39.573379,27 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_219_9,-74.4919675,39.33459,25 N ABERDEEN PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_219_9,-74.6875235,39.5714425,25 N ABERDEEN PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_22_1,-74.62673509,39.43417881,103 S HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_22_1,-74.59409749,39.31271767,103 S HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_22_2,-74.62852612,39.43199517,3536 PACIFIC AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_22_2,-74.60310935,39.30850196,3536 PACIFIC AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_22_5,-74.4505352,39.35385069,3506 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_22_5,-74.72747312,39.57664565,3506 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_22_6,-74.45294498,39.3532054,3504 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_22_6,-74.7270552,39.58860503,3504 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_22_7,-74.46091006,39.35825338,3500 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_22_7,-74.726708,39.587851,3500 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_220_1,-74.601519,39.5007,4436 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_1,-74.57853796,39.33237215,4436 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_10,-74.80861225,39.61246054,22 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3004 -0102_220_10,-74.5833039,39.43110583,22 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_11,-74.38032198,39.40174377,6 N BARTRAM AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_220_11,-74.6949425,39.633882,6 N BARTRAM AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_220_12,-74.5349305,39.470844,4 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,COM3,3004 -0102_220_12,-74.51097455,39.5045693,4 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_13,-74.3880179,39.39050653,4403 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_220_13,-74.66592974,39.58461148,4403 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_220_14,-74.49948859,39.33498433,4405 VENTNOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_220_14,-74.60752881,39.61908932,4405 VENTNOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_220_15,-74.491365,39.3347485,4407 VENTNOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_15,-74.69216651,39.55940432,4407 VENTNOR AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_220_16,-74.881988,39.5929045,4409 VENTNOR AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_220_16,-74.597967,39.412191,4409 VENTNOR AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_220_17,-74.50281826,39.3432328,3 N KINGSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_220_17,-74.60853411,39.61807363,3 N KINGSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_220_18,-74.53744922,39.47277105,5 N KINGSTON AVE,ATLANTIC CITY CITY,45,1914,2,RES1,3001 -0102_220_18,-74.48909072,39.5198832,5 N KINGSTON AVE,ATLANTIC CITY CITY,45,1914,2,RES1,3001 -0102_220_19,-74.54677572,39.47454006,23 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_19,-74.48993001,39.52353866,23 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_2,-74.602579,39.4986615,4432 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_2,-74.5853765,39.3282035,4432 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_20,-74.55564908,39.47548378,29 N KINGSTON AVE,ATLANTIC CITY CITY,17,1920,1,EDU1,3004 -0102_220_20,-74.53171601,39.30697693,29 N KINGSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_21,-74.568364,39.480536,33 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_220_21,-74.59354233,39.31255597,33 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_22,-74.5358645,39.5025202,39 N KINGSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_22,-74.6070675,39.316189,39 N KINGSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_23,-74.60293394,39.48329998,45 N KINGSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_23,-74.60917248,39.31550736,45 N KINGSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_24,-74.60874616,39.47879344,51 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_24,-74.5917495,39.3246235,51 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_3,-74.629683,39.4403885,62 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_3,-74.60616466,39.32162853,62 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,COM3,3004 -0102_220_4,-74.6014385,39.4984275,56 N BARTRAM AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_220_4,-74.59168077,39.32690116,56 N BARTRAM AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_220_5,-74.60494087,39.50067755,50 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_5,-74.59271642,39.31983371,50 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_6,-74.600438,39.50085917,44 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_6,-74.58695982,39.32057646,44 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_7,-74.60984989,39.48707869,38 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_7,-74.61863787,39.31187559,38 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_220_8,-74.5811995,39.474322,32 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_8,-74.60229032,39.31521044,32 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_220_9,-74.5643422,39.47984653,28 N BARTRAM AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_220_9,-74.601739,39.3172465,28 N BARTRAM AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_221_1,-74.61963741,39.43922814,63 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_221_1,-74.59743556,39.31997116,63 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_221_10,-74.797494,39.638427,3 N BARTRAM AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_221_10,-74.5870145,39.429587,3 N BARTRAM AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_221_11,-74.87407458,39.59123565,4401 VENTNOR AVE,ATLANTIC CITY CITY,,1940,1,RES1,3001 -0102_221_11,-74.57776459,39.42404434,4401 VENTNOR AVE,ATLANTIC CITY CITY,,1940,1,RES1,3001 -0102_221_12,-74.39824583,39.38806605,1 N BARTRAM AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_221_12,-74.68906193,39.63915262,1 N BARTRAM AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_221_2,-74.48245738,39.34053883,57 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_221_2,-74.54536123,39.52421331,57 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_221_3,-74.53779011,39.4123133,51 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_221_3,-74.52758636,39.42103615,51 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_221_4,-74.592121,39.39796,45 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_221_4,-74.4896615,39.421096,45 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_221_5,-74.51148326,39.32708517,39 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_221_5,-74.835435,39.4854125,39 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_221_6,-74.5187345,39.3209975,33 N BARTRAM AVE,ATLANTIC CITY CITY,17,1912,1,RES1,3001 -0102_221_6,-74.78542971,39.43811295,33 N BARTRAM AVE,ATLANTIC CITY CITY,17,1912,1,RES1,3001 -0102_221_7,-74.4996565,39.328379,29 N BARTRAM AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_221_7,-74.71343319,39.46520357,29 N BARTRAM AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_221_8,-74.49036998,39.33400266,23 N BARTRAM AVE,ATLANTIC CITY CITY,17,1912,1,GOV1,3004 -0102_221_8,-74.7275735,39.4513915,23 N BARTRAM AVE,ATLANTIC CITY CITY,17,1912,1,RES1,3001 -0102_221_9,-74.801907,39.632566,5 N BARTRAM AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_221_9,-74.6191895,39.372446,5 N BARTRAM AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_222_1,-74.682086,39.3877145,64 N DELANCY PL,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_222_1,-74.52868527,39.46659463,64 N DELANCY PL,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_222_10,-74.50928698,39.33224233,32 N DELANCY PL,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_222_10,-74.83622562,39.47793931,32 N DELANCY PL,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_222_11,-74.520098,39.3182235,28 N DELANCY PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_222_11,-74.770706,39.4900455,28 N DELANCY PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_222_12,-74.51509312,39.32449515,24 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_222_12,-74.73583206,39.46437197,24 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_222_13,-74.50563641,39.32937502,20 N DELANCY PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_222_13,-74.711644,39.469624,20 N DELANCY PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_222_14,-74.49592156,39.33402323,4 N DELANCY PL,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_222_14,-74.72444977,39.44132714,4 N DELANCY PL,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_222_15,-74.6826405,39.391322,2 N DELANCY PL,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_222_15,-74.52212496,39.46828656,2 N DELANCY PL,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_222_16,-74.8046745,39.6361375,4333 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_222_16,-74.6151946,39.42995432,4333 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_222_2,-74.56413416,39.38767027,62 N DELANCY PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_222_2,-74.517912,39.403659,62 N DELANCY PL,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_222_3,-74.449964,39.3548005,56 N DELANCY PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_222_3,-74.6267265,39.5268545,56 N DELANCY PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_222_4,-74.48090017,39.335908,54 N DELANCY PL,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_222_4,-74.577874,39.521467,54 N DELANCY PL,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_222_5,-74.47386262,39.34012877,50 N DELANCY PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_222_5,-74.550328,39.5194905,50 N DELANCY PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_222_6,-74.56682395,39.40974625,46 N DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_222_6,-74.51120313,39.43148695,46 N DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_222_7,-74.534172,39.407553,38 N DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_222_7,-74.49396041,39.43149773,38 N DELANCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_222_8,-74.59828877,39.38015903,36 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_222_8,-74.51246473,39.41341823,36 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_222_9,-74.51104955,39.32856567,34 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_222_9,-74.8379525,39.4862045,34 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_223_1,-74.63462308,39.40846462,65 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_223_1,-74.473312,39.48154084,65 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_10,-74.48699163,39.33475016,26 N RALEIGH AVE,ATLANTIC CITY CITY,45,1980,3,RES1,3001 -0102_223_10,-74.61494909,39.53647736,26 N RALEIGH AVE,ATLANTIC CITY CITY,45,1980,3,RES1,3001 -0102_223_11,-74.483488,39.3418,24 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_11,-74.55579516,39.50911184,24 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_12,-74.54010278,39.41413208,22 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_12,-74.50288526,39.43322643,22 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_223_13,-74.51163735,39.3287991,4301 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_13,-74.83278145,39.4869603,4301 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_14,-74.52430952,39.31844234,4303 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_14,-74.8623932,39.43805428,4303 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_15,-74.5054155,39.3276065,4307 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_15,-74.714771,39.4649215,4307 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_16,-74.50109739,39.32870782,4309 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_16,-74.71150263,39.46574783,4309 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_223_17,-74.5091015,39.3300275,4311 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_17,-74.719522,39.4536155,4311 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_18,-74.5010245,39.3308185,4313 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_18,-74.7229935,39.4586585,4313 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_19,-74.500297,39.3342755,4315 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_19,-74.7509705,39.451995,4315 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_223_2,-74.627439,39.416342,66 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_223_2,-74.45255643,39.49045722,66 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_223_20,-74.519744,39.322179,9 N DELANCY PL,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_223_20,-74.759638,39.4485475,9 N DELANCY PL,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_223_21,-74.51112531,39.33252599,17 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_21,-74.865829,39.449913,17 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_22,-74.46382585,39.34874935,21 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_22,-74.88217527,39.48460005,21 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_23,-74.60002775,39.38754409,25 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_23,-74.5078395,39.4194585,25 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_223_24,-74.54157958,39.41469368,29 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_24,-74.501274,39.434531,29 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_223_25,-74.56502104,39.41608382,31 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_223_25,-74.48178676,39.44340793,31 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_26,-74.57302483,39.426314,33 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_26,-74.48838141,39.44140319,33 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_27,-74.4856535,39.335476,37 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_27,-74.60957535,39.52566254,37 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_28,-74.53492806,39.39835352,45 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_223_28,-74.4986495,39.4165035,45 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_223_29,-74.59307347,39.3700751,51 N DELANCY PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_223_29,-74.4884377,39.42312176,51 N DELANCY PL,ATLANTIC CITY CITY,45,1920,3,GOV1,3004 -0102_223_3,-74.62918381,39.41905692,62 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_223_3,-74.47186814,39.48150509,62 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_223_30,-74.6638165,39.400094,57 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_30,-74.45372328,39.48704499,57 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_31,-74.689092,39.3924135,61 N DELANCY PL,ATLANTIC CITY CITY,45,1909,2,RES1,3001 -0102_223_31,-74.44821546,39.48202584,61 N DELANCY PL,ATLANTIC CITY CITY,45,1909,2,RES1,3001 -0102_223_4,-74.622757,39.405005,58 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_223_4,-74.47439194,39.48623586,58 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_223_5,-74.5979469,39.38442827,52 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_5,-74.49857857,39.4349329,52 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_223_6,-74.58697331,39.37926521,48 N RALEIGH AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_223_6,-74.49286424,39.43501988,48 N RALEIGH AVE,ATLANTIC CITY CITY,27,1920,2,REL1,3004 -0102_223_7,-74.5813725,39.370715,44 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_223_7,-74.5191825,39.415902,44 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_223_8,-74.53850566,39.39659186,40 N RALEIGH AVE,ATLANTIC CITY CITY,27,1925,2,GOV1,3004 -0102_223_8,-74.49949687,39.41162417,40 N RALEIGH AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_223_9,-74.47856707,39.34617423,36 N RALEIGH AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_223_9,-74.633556,39.51834233,36 N RALEIGH AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_1,-74.3914425,39.3950915,65 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_224_1,-74.70985185,39.57169895,65 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_224_10,-74.48303402,39.35341584,44 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_10,-74.6483275,39.537579,44 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_11,-74.45918293,39.35560958,42 N LACLEDE PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_11,-74.638981,39.5265605,42 N LACLEDE PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_12,-74.44935232,39.35290782,40 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_12,-74.64083666,39.52933098,40 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_13,-74.61652906,39.38479658,36 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_13,-74.5262515,39.4203925,36 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_14,-74.61473556,39.37040106,34 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_14,-74.4958115,39.428335,34 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_224_15,-74.592989,39.3769065,30 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_15,-74.49781202,39.43461156,30 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_16,-74.59683233,39.38369503,28 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_224_16,-74.5049475,39.424271,28 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_224_17,-74.55448833,39.39348893,26 N LACLEDE PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_224_17,-74.51242618,39.40467017,26 N LACLEDE PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_224_18,-74.4472175,39.355899,22 N LACLEDE PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_18,-74.65889017,39.51954621,22 N LACLEDE PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_19,-74.48163791,39.35100614,14 N LACLEDE PL,ATLANTIC CITY CITY,45,1922,3,RES1,3001 -0102_224_19,-74.56465461,39.54064497,14 N LACLEDE PL,ATLANTIC CITY CITY,45,1922,3,RES1,3001 -0102_224_2,-74.4025805,39.38086283,4228 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_2,-74.810042,39.5533475,4228 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_20,-74.4851245,39.3401985,12 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_224_20,-74.60557199,39.50592817,12 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_224_21,-74.56491784,39.41541598,4209 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_224_21,-74.4690128,39.45652681,4209 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_22,-74.55950544,39.41439633,4211 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_22,-74.437135,39.492649,4211 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_224_23,-74.53457995,39.41608221,4215 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_23,-74.50219977,39.43529546,4215 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_24,-74.539398,39.4118725,4219-23 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_24,-74.51487158,39.4325602,4219-23 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_25,-74.45991559,39.35013867,4227 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_25,-74.87907229,39.47671592,4227 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_26,-74.533194,39.403755,3 N RALEIGH AVE,ATLANTIC CITY CITY,45,1925,4,RES3B,3001 -0102_224_26,-74.4949497,39.42951656,3 N RALEIGH AVE,ATLANTIC CITY CITY,45,1925,4,EDU1,3004 -0102_224_27,-74.57398381,39.41569726,17 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_224_27,-74.47200608,39.44563922,17 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_224_28,-74.47729515,39.34156352,19 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_28,-74.56686,39.5052965,19 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_224_29,-74.4656594,39.34690383,21 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_224_29,-74.56419986,39.5432429,21 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_224_3,-74.72158463,39.57641193,64 N LACLEDE PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_3,-74.59959591,39.4185267,64 N LACLEDE PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_30,-74.54495535,39.40008561,23 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_224_30,-74.5186055,39.4051485,23 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_224_31,-74.5932267,39.3761941,25 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_224_31,-74.51175362,39.41531027,25 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_224_32,-74.59565656,39.37916746,27 N RALEIGH AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_224_32,-74.4914265,39.434827,27 N RALEIGH AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_224_33,-74.600532,39.373666,29 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_224_33,-74.497028,39.4305735,29 N RALEIGH AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_224_34,-74.6010785,39.379586,31 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_224_34,-74.5229371,39.42126117,31 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_224_35,-74.45474545,39.35418475,39 N RALEIGH AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_35,-74.6414525,39.524716,39 N RALEIGH AVE,ATLANTIC CITY CITY,27,1925,2,RES3B,3001 -0102_224_36,-74.4635035,39.356357,49 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_36,-74.636878,39.5283085,49 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_38,-74.492458,39.3408125,51 N RALEIGH AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_224_38,-74.64273453,39.53075383,51 N RALEIGH AVE,ATLANTIC CITY CITY,27,1920,2,RES3A,3001 -0102_224_39,-74.48884267,39.33589636,53 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_39,-74.63086334,39.54092253,53 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_4,-74.852161,39.54077539,62 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,COM4,3004 -0102_224_4,-74.534831,39.42792,62 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3004 -0102_224_40,-74.50246552,39.33835159,57 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_224_40,-74.60308996,39.59357869,57 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_41,-74.38585985,39.39317616,59 N RALEIGH AVE,ATLANTIC CITY CITY,27,1925,2,RES3A,3001 -0102_224_41,-74.6202235,39.6232725,59 N RALEIGH AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_42,-74.3955044,39.38812897,63 N RALEIGH AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_224_42,-74.703897,39.6381865,63 N RALEIGH AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_224_5,-74.40779226,39.37771729,60 N LACLEDE PL,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_224_5,-74.85771938,39.55304534,60 N LACLEDE PL,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_224_6,-74.38603167,39.39657204,56 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_6,-74.79445115,39.53663063,56 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_7,-74.3763235,39.401198,54 N LACLEDE PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_7,-74.647876,39.621775,54 N LACLEDE PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_224_8,-74.5069795,39.3402055,50 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_8,-74.68754042,39.55588386,50 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_224_9,-74.49629697,39.33643465,46 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_224_9,-74.68715293,39.51199154,46 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_225_1,-74.64871822,39.40295929,65 N LACLEDE PL,ATLANTIC CITY CITY,45,1919,2,RES1,3001 -0102_225_1,-74.4529745,39.5034875,65 N LACLEDE PL,ATLANTIC CITY CITY,45,1919,2,RES1,3001 -0102_225_10,-74.4635985,39.3586985,27 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,REL1,3004 -0102_225_10,-74.63965908,39.52866532,27 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_225_11,-74.59939219,39.38031284,21 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_225_11,-74.5002965,39.4299065,21 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,3,GOV1,3004 -0102_225_12,-74.59713392,39.38332697,15 N LACLEDE PLACE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_225_12,-74.49960602,39.42005031,15 N LACLEDE PLACE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_225_13,-74.54961786,39.38537231,4201 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_225_13,-74.5019495,39.4170445,4201 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_225_2,-74.63052831,39.41792041,57 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_225_2,-74.45989035,39.49497692,57 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_225_3,-74.62922,39.416279,55 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_225_3,-74.45073124,39.48966554,55 N LACLEDE PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_225_4,-74.762684,39.6042435,53 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_225_4,-74.58482514,39.42366202,53 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_225_5,-74.81226437,39.56099536,47 N LACLEDE PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_225_5,-74.568015,39.412011,47 N LACLEDE PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_225_6,-74.40524803,39.38194743,45 N LACLEDE PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_225_6,-74.82705522,39.5337429,45 N LACLEDE PL,ATLANTIC CITY CITY,45,1925,2,RES1,3002 -0102_225_7,-74.39289818,39.39162817,43 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_225_7,-74.6862403,39.63102639,43 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_225_8,-74.5055455,39.341107,37 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_225_8,-74.64584478,39.55050868,37 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_225_9,-74.49166719,39.33937321,31 N LACLEDE PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_225_9,-74.65095729,39.53031926,31 N LACLEDE PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_226_1,-74.651746,39.411399,4115 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_226_1,-74.45331156,39.49860769,4115 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_227_1,-74.62658568,39.42296352,4104 WINCHESTER AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_227_1,-74.45154,39.4959135,4104 WINCHESTER AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_227_10,-74.62752,39.412629,28 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_227_10,-74.44890641,39.48867724,28 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1920,1,RES3A,3001 -0102_227_11,-74.879558,39.542745,22 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_227_11,-74.57319357,39.4265021,22 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_227_12,-74.3814145,39.3961825,16 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_227_12,-74.790428,39.5333315,16 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_227_13,-74.5036545,39.334456,4101 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_227_13,-74.6162257,39.62200502,4101 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_227_14,-74.3837725,39.392385,15 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_227_14,-74.67698583,39.60961283,15 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_227_15,-74.8171985,39.53846,21 N WINDSOR AVE,ATLANTIC CITY CITY,17,1911,1,RES1,3001 -0102_227_15,-74.56408854,39.41465612,21 N WINDSOR AVE,ATLANTIC CITY CITY,17,1911,1,RES1,3002 -0102_227_16,-74.72892246,39.58985584,27 N WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_227_16,-74.60700722,39.41243266,27 N WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_227_17,-74.63593276,39.41079379,33 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_227_17,-74.46259156,39.49136919,33 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_227_18,-74.42276966,39.37221741,39 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_227_18,-74.85439184,39.56018897,39 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_227_19,-74.36787888,39.40229784,45 N WINDSOR AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_227_19,-74.87156938,39.57403584,45 N WINDSOR AVE,ATLANTIC CITY CITY,45,1920,2,RES3A,3001 -0102_227_2,-74.6223927,39.42262404,4100 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES3A,3001 -0102_227_2,-74.45576842,39.50116603,4100 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_227_20,-74.660485,39.4178855,51 N WINDSOR AVE,ATLANTIC CITY CITY,45,1920,2,RES3A,3001 -0102_227_20,-74.45353271,39.49713866,51 N WINDSOR AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_227_21,-74.62206082,39.42485069,57 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_227_21,-74.4528945,39.4960455,57 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_227_3,-74.62858946,39.42463819,58 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_227_3,-74.45205191,39.49595106,58 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_227_4,-74.450369,39.3737425,54 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_227_4,-74.80991133,39.63746652,54 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_227_5,-74.3687888,39.41563456,50 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_227_5,-74.80516672,39.62405213,50 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1925,1,RES3A,3001 -0102_227_6,-74.355919,39.413757,46 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_227_6,-74.8801361,39.59096636,46 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_227_7,-74.36905849,39.40558941,42 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_227_7,-74.78581128,39.63625175,42 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_227_8,-74.40314678,39.39181139,38 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_227_8,-74.76155607,39.60419956,38 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_227_9,-74.369518,39.4053275,34 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_227_9,-74.78979477,39.63758769,34 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_228_1,-74.82669228,39.57129997,4025 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_228_1,-74.55279825,39.42768301,4025 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_10,-74.35915698,39.41436834,4007 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_10,-74.84469466,39.58599449,4007 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_11,-74.43263156,39.36950214,4005 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_228_11,-74.8427635,39.570214,4005 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_12,-74.3656166,39.40677368,4001 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_12,-74.77418015,39.62712727,4001 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_2,-74.8807905,39.544368,4023 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_2,-74.55247516,39.42828159,4023 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_3,-74.72006548,39.57709483,4021 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_228_3,-74.57032965,39.42777542,4021 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_4,-74.74854162,39.6075026,4019 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_4,-74.5829865,39.421511,4019 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_228_5,-74.765781,39.610105,4017 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_5,-74.594109,39.4211255,4017 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_6,-74.78535285,39.61094739,4015 VENTNOR AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_228_6,-74.58373238,39.43265223,4015 VENTNOR AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_228_7,-74.78055747,39.62150613,4013 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_7,-74.5843,39.42876,4013 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_228_8,-74.78783283,39.617771,4011 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_228_8,-74.59221782,39.42855846,4011 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_9,-74.37074155,39.40774835,4009 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_228_9,-74.77894232,39.62426434,4009 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_229_1,-74.435885,39.491313,64 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_1,-74.79309467,39.64214214,64 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_10,-74.531018,39.414742,4020 WINCHESTER AVE,ATLANTIC CITY CITY,17,1925,1,RES3A,3001 -0102_229_10,-74.93959267,39.53142391,4020 WINCHESTER AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_229_11,-74.5093265,39.412146,27 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_229_11,-74.94114582,39.52265554,27 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_229_2,-74.50293289,39.42975663,62 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_2,-74.73961071,39.65044209,62 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_3,-74.48898087,39.42800475,60 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_3,-74.6994745,39.643942,60 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_4,-74.4952365,39.4310635,58 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_4,-74.88400217,39.56086606,58 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_5,-74.49613338,39.42708175,56 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_5,-74.950731,39.522546,56 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_56,-74.36951065,39.41792477,4023 ANDOVER GDNS,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_229_56,-74.82995715,39.61163555,4023 ANDOVER GDNS,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_229_57,-74.361295,39.41014,4022 ANDOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_57,-74.77834614,39.6209696,4022 ANDOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_58,-74.3714315,39.4069345,2 N PARKER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_229_58,-74.77648652,39.62341769,2 N PARKER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_229_59,-74.63531383,39.41808833,19 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_229_59,-74.46090623,39.49535868,19 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_229_6,-74.51329417,39.41093751,54 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_6,-74.93816548,39.52168432,54 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_229_60,-74.6331456,39.4164655,4038 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_60,-74.46180033,39.49262448,4038 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3002 -0102_229_61,-74.65186434,39.40806918,4036 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_61,-74.45501689,39.48850062,4036 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_62,-74.358898,39.4155575,4030 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_62,-74.7889435,39.632698,4030 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_63,-74.44178405,39.36978369,4028 ANDOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_63,-74.85128384,39.55930497,4028 ANDOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_64,-74.3997165,39.3854635,4024 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_64,-74.7644005,39.6133605,4024 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_65,-74.35978181,39.41390782,4025 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_65,-74.882056,39.594863,4025 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_66,-74.36270875,39.41906185,4029 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_229_66,-74.84440817,39.60247999,4029 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_229_67,-74.37090254,39.41020569,4031 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_67,-74.7774325,39.639062,4031 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_229_68,-74.4105335,39.3906915,4037 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1935,2,RES3A,3001 -0102_229_68,-74.76273058,39.60985844,4037 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_229_69,-74.44167933,39.36859004,4039 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1935,2,RES1,3002 -0102_229_69,-74.717366,39.5765685,4039 ANN DOVER GDNS,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_229_7,-74.4897505,39.430522,4014 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_229_7,-74.95700787,39.53858647,4014 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_229_8,-74.497302,39.4262145,4016 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_229_8,-74.949512,39.535553,4016 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_229_9,-74.49677605,39.4269859,4018 WINCHESTER AVE,ATLANTIC CITY CITY,33,1923,1,RES1,3001 -0102_229_9,-74.96568787,39.52880396,4018 WINCHESTER AVE,ATLANTIC CITY CITY,33,1923,1,GOV1,3004 -0102_23_1,-74.6612969,39.40239904,3501 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_23_1,-74.53380654,39.30507284,3501 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_230_1,-74.511293,39.406611,46 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_230_1,-74.951209,39.5152415,46 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_230_10,-74.37778868,39.41852858,22 N DOVER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_230_10,-74.81432238,39.63926183,22 N DOVER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_230_11,-74.366505,39.4168735,18 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_230_11,-74.79910743,39.62664015,18 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_230_12,-74.3597515,39.411367,16 N DOVER AVE,ATLANTIC CITY CITY,17,1925,1,GOV1,3004 -0102_230_12,-74.86409163,39.60053978,16 N DOVER AVE,ATLANTIC CITY CITY,17,1925,1,GOV1,3004 -0102_230_14,-74.40091043,39.39411175,1 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_14,-74.77896783,39.60691814,1 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_15,-74.36926116,39.40506802,3 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_15,-74.78558672,39.63444479,3 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_16,-74.35961083,39.41576701,5 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_16,-74.851704,39.604831,5 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_17,-74.36346341,39.41156833,7 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_230_17,-74.86871068,39.60185903,7 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_18,-74.37346368,39.41737814,9 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_18,-74.8033775,39.6307215,9 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_19,-74.37298831,39.41420772,11 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_19,-74.80627864,39.62928904,11 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_2,-74.50418454,39.41467754,44 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_230_2,-74.966099,39.5120565,44 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_230_20,-74.3798995,39.417541,13 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_20,-74.8111015,39.6389205,13 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_21,-74.45244726,39.37312384,15 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_21,-74.80821833,39.63574549,15 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_22,-74.453784,39.3729405,17 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_22,-74.825397,39.6283915,17 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_23,-74.5265395,39.384519,19 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_23,-74.86177522,39.61799681,19 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_230_24,-74.5162635,39.393497,21 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_230_24,-74.90072275,39.48065355,21 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_230_25,-74.5266318,39.38914331,23 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_25,-74.9315595,39.498145,23 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_26,-74.52412988,39.38793519,25 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_26,-74.91557369,39.50826202,25 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_27,-74.51378553,39.40204071,27 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_230_27,-74.919986,39.521508,27 N PARKER AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_230_28,-74.49788582,39.41201993,29 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_230_28,-74.9473425,39.517389,29 N PARKER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_230_3,-74.50326573,39.41801695,42 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_230_3,-74.938974,39.516162,42 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_230_4,-74.5195475,39.3965585,38 N DOVER AVE,ATLANTIC CITY CITY,45,1933,2,RES1,3001 -0102_230_4,-74.946063,39.509174,38 N DOVER AVE,ATLANTIC CITY CITY,45,1933,2,RES1,3001 -0102_230_5,-74.53006535,39.38759318,36 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_230_5,-74.92611297,39.50989952,36 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_230_6,-74.5266995,39.3900325,32 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_230_6,-74.88312833,39.50226718,32 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_230_7,-74.52481297,39.38282468,30 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_230_7,-74.86105435,39.61647312,30 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_230_8,-74.448619,39.3717475,26 N DOVER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_230_8,-74.81881593,39.63678415,26 N DOVER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_230_9,-74.445478,39.37316,24 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_230_9,-74.80854075,39.63715705,24 N DOVER AVE,ATLANTIC CITY CITY,27,1925,2,COM3,3004 -0102_231_1,-74.48348206,39.4304769,3901 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_231_1,-74.9310954,39.51743881,3901 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_231_2,-74.52908366,39.38725762,3905 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_231_2,-74.9260765,39.509029,3905 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_231_3,-74.52113007,39.39365832,3907 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_231_3,-74.9079055,39.48137,3907 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_231_5,-74.443467,39.3704215,3911 VENTNOR AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_231_5,-74.8221275,39.6361975,3911 VENTNOR AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_231_6,-74.37703214,39.41394928,3939 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_231_6,-74.80089265,39.63772707,3939 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_232_1,-74.51030394,39.43534266,47 N DOVER AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_232_1,-74.7532315,39.6521005,47 N DOVER AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_232_10,-74.53040733,39.38911041,29 N DOVER AVE,ATLANTIC CITY CITY,45,1900,3,AGR1,3001 -0102_232_10,-74.95824,39.498255,29 N DOVER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_232_11,-74.5218905,39.393139,27 N DOVER AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_232_11,-74.91675695,39.48230525,27 N DOVER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_232_2,-74.49226567,39.4312529,45 N DOVER AVE,ATLANTIC CITY CITY,47,1909,2,RES1,3001 -0102_232_2,-74.91540776,39.54989056,45 N DOVER AVE,ATLANTIC CITY CITY,47,1909,2,RES1,3001 -0102_232_3,-74.4936322,39.42745853,43 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_232_3,-74.954995,39.527947,43 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_232_4,-74.51690385,39.40281992,41 N DOVER AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_232_4,-74.93963117,39.5292395,41 N DOVER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_232_5,-74.510415,39.405672,39 N DOVER AVE,ATLANTIC CITY CITY,45,1909,2,RES1,3001 -0102_232_5,-74.949174,39.512627,39 N DOVER AVE,ATLANTIC CITY CITY,45,1909,2,RES1,3001 -0102_232_6,-74.498582,39.411358,37 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_232_6,-74.95306995,39.52079703,37 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_232_7,-74.49985284,39.41691509,35 N DOVER AVE,ATLANTIC CITY CITY,45,1917,3,RES1,3001 -0102_232_7,-74.95891,39.5113585,35 N DOVER AVE,ATLANTIC CITY CITY,45,1917,3,AGR1,3001 -0102_232_8,-74.504745,39.40939,33 N DOVER AVE,ATLANTIC CITY CITY,45,1909,2,RES1,3001 -0102_232_8,-74.947176,39.517632,33 N DOVER AVE,ATLANTIC CITY CITY,45,1909,2,GOV1,3004 -0102_232_9,-74.52270581,39.38617094,31 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_232_9,-74.92581642,39.52553227,31 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_233_1,-74.49584663,39.44629856,30 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_233_1,-74.80613472,39.64463931,30 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_233_2,-74.50456567,39.44325701,28 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_233_2,-74.80486817,39.64436301,28 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_233_3,-74.46954979,39.45516612,26 N HARRISBURG AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_233_3,-74.786971,39.665188,26 N HARRISBURG AVE,ATLANTIC CITY CITY,18,1900,1,AGR1,3001 -0102_233_4,-74.50123635,39.42837722,24 N HARRISBURG AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_233_4,-74.7628205,39.640097,24 N HARRISBURG AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_233_5.01,-74.4947615,39.4323205,22 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_233_5.01,-74.95032184,39.53100117,22 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_233_5.02,-74.51697106,39.40325585,20 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2003,1,GOV1,3004 -0102_233_5.02,-74.93450582,39.52444852,20 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_233_6.01,-74.518613,39.4034975,18 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_233_6.01,-74.935416,39.525694,18 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_233_6.02,-74.50456,39.414793,3903 SUSSEX AVE,ATLANTIC CITY CITY,16,2009,1,RES1,3001 -0102_233_6.02,-74.966948,39.5120725,3903 SUSSEX AVE,ATLANTIC CITY CITY,16,2009,1,RES1,3001 -0102_234_1,-74.61858609,39.43334621,60 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_234_1,-74.49710022,39.45402204,60 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_234_10,-74.4823465,39.443536,53 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,EDU1,3004 -0102_234_10,-74.78370377,39.65557165,53 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_234_11,-74.47594446,39.4587504,55 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_234_11,-74.79032885,39.66804842,55 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_234_12,-74.4896715,39.442831,57 N DOVER AVE,ATLANTIC CITY CITY,45,1919,2,RES1,3001 -0102_234_12,-74.8042875,39.647178,57 N DOVER AVE,ATLANTIC CITY CITY,45,1919,2,GOV1,3004 -0102_234_13,-74.503438,39.4421155,59 N DOVER AVE,ATLANTIC CITY CITY,45,1919,2,RES1,3001 -0102_234_13,-74.80218852,39.64371033,59 N DOVER AVE,ATLANTIC CITY CITY,45,1919,2,GOV1,3004 -0102_234_14,-74.5858285,39.406151,61 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_234_14,-74.51081115,39.43529958,61 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_234_2,-74.59251,39.4251305,54 N HARRISBURG AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_234_2,-74.5178535,39.451848,54 N HARRISBURG AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_234_3,-74.5999065,39.41301,3906 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_234_3,-74.50687527,39.44457687,3906 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_234_4,-74.6013342,39.40968257,3908 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,GOV1,3004 -0102_234_4,-74.46236312,39.46457428,3908 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_234_5,-74.5988255,39.4103985,3910 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,GOV1,3004 -0102_234_5,-74.47397018,39.4464481,3910 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,GOV1,3004 -0102_234_6,-74.5834505,39.418487,3912 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_234_6,-74.4847683,39.43879567,3912 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_234_7,-74.50525951,39.44495881,3914 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_234_7,-74.81114799,39.6433228,3914 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_234_8,-74.50585864,39.44536965,3916 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_234_8,-74.81384,39.644561,3916 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,GOV1,3004 -0102_234_9,-74.441467,39.492467,51 N DOVER AVE,ATLANTIC CITY CITY,45,1919,2,RES1,3001 -0102_234_9,-74.7922335,39.643423,51 N DOVER AVE,ATLANTIC CITY CITY,45,1919,2,RES1,3001 -0102_235_10,-74.61319831,39.42271846,109 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_235_10,-74.49083491,39.4580756,109 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_235_11,-74.59850477,39.43063499,111 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_235_11,-74.494472,39.4578445,111 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_235_13,-74.61612069,39.39706156,3916 PHYLLIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_235_13,-74.47354019,39.44598007,3916 PHYLLIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_235_14,-74.53601384,39.40706183,3914 PHYLLIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_235_14,-74.45470841,39.46021719,3914 PHYLLIS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_235_3,-74.551076,39.402399,3913 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_235_3,-74.46685925,39.45722367,3913 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_235_4,-74.61263806,39.42350633,3915 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_235_4,-74.52223405,39.44590584,3915 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_235_5,-74.58864358,39.43036005,3917 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_235_5,-74.52238406,39.44976207,3917 WINCHESTER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_235_6,-74.60667141,39.41062849,101 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_235_6,-74.4730945,39.44774,101 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_235_7,-74.60026574,39.40966537,103 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,IND2,3002 -0102_235_7,-74.4578739,39.46194433,103 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_235_8,-74.5765175,39.4196975,105 N DOVER AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_235_8,-74.495595,39.447539,105 N DOVER AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_235_9,-74.605552,39.4208195,107 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_235_9,-74.52274354,39.44657935,107 N DOVER AVE,ATLANTIC CITY CITY,27,1900,2,EDU1,3004 -0102_236_1,-74.6377175,39.400069,110 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_236_1,-74.51851815,39.46565445,110 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_10,-74.5734315,39.4282485,54 N TRENTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_236_10,-74.514352,39.4371625,54 N TRENTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_236_11,-74.5689555,39.413598,50 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_236_11,-74.515751,39.4437695,50 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_236_12,-74.56444933,39.41709882,40 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_12,-74.48927695,39.4393461,40 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_13,-74.53502051,39.41624964,38 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_236_13,-74.48555151,39.45632833,38 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_236_14,-74.53821494,39.40719634,34 N TRENTON AVE,ATLANTIC CITY CITY,18,1949,1,GOV1,3004 -0102_236_14,-74.4725935,39.445637,34 N TRENTON AVE,ATLANTIC CITY CITY,18,1949,1,RES1,3001 -0102_236_15,-74.57901217,39.430934,30 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_15,-74.51835519,39.45176904,30 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_16,-74.599937,39.4101665,26 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_236_16,-74.461116,39.454257,26 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_236_17,-74.51145826,39.44448305,20 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_236_17,-74.80951501,39.64271193,20 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_236_19,-74.4835085,39.4386945,3801 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_19,-74.78565607,39.64949828,3801 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_2,-74.637043,39.3852485,110 N TRENTON AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_2,-74.4970665,39.469969,110 N TRENTON AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_20,-74.502919,39.432176,3805 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_236_20,-74.72545864,39.64155124,3805 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_236_21,-74.5076595,39.435069,3807 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_21,-74.69146266,39.65132277,3807 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_22,-74.494428,39.4304585,3811 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_236_22,-74.88478847,39.59418088,3811 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_23,-74.48341,39.4379085,3817 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_23,-74.7820595,39.66189,3817 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_24,-74.50606852,39.43734328,31 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1998,1,GOV1,3004 -0102_236_24,-74.80070455,39.64296862,31 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_236_27,-74.57619062,39.41986617,37 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1998,1,GOV1,3004 -0102_236_27,-74.506649,39.438302,37 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_236_28,-74.6146459,39.4301464,51 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_236_28,-74.49923511,39.45952088,51 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_236_29,-74.5511277,39.40279888,61 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_29,-74.46114048,39.46228292,61 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_3,-74.5931701,39.43111386,108 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_3,-74.51905915,39.46662604,108 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_30,-74.57096594,39.41467657,63 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_30,-74.5042337,39.45277614,63 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_236_31,-74.5739149,39.42164282,69 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_31,-74.51481,39.441972,69 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_32,-74.59088936,39.40330633,103 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_32,-74.52125364,39.44321455,103 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_35,-74.51557674,39.43198903,137 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_35,-74.7683789,39.65334512,137 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_236_4,-74.59236097,39.42464592,106 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_236_4,-74.52209817,39.45661477,106 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_236_5,-74.59813533,39.41284547,100 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_5,-74.51119404,39.45646316,100 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_6,-74.6038615,39.4083465,62 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_236_6,-74.49830949,39.46656484,62 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_236_7,-74.60440806,39.4091808,60 N TRENTON AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_236_7,-74.4927685,39.4687295,60 N TRENTON AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_236_8,-74.5965995,39.411397,58 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_236_8,-74.52295834,39.44631096,58 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_236_9,-74.5755495,39.406189,56 N TRENTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_236_9,-74.52646357,39.44317634,56 N TRENTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_237_1,-74.60977789,39.3896062,3701 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_237_1,-74.47132138,39.45219491,3701 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_237_2,-74.5999125,39.4258865,3709 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_237_2,-74.529905,39.4486935,3709 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_237_5,-74.589229,39.4070565,3 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_237_5,-74.48242486,39.44125215,3 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,RES3B,3001 -0102_237_6,-74.4917775,39.4369525,3727 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_237_6,-74.80192514,39.64523695,3727 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_1,-74.59701716,39.41109769,49 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_1,-74.50628884,39.46041652,49 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_3,-74.559446,39.4342395,37 N TRENTON AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_3,-74.5136615,39.437373,37 N TRENTON AVE RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_238_4,-74.569135,39.414059,37 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_4,-74.5091495,39.4447005,37 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_5,-74.570312,39.4048545,33 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_5,-74.4898825,39.4415925,33 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_6,-74.55399516,39.40432427,25 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_6,-74.48503556,39.45332288,25 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_238_8,-74.59006715,39.43324321,19 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_238_8,-74.530159,39.4506465,19 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_239_1,-74.59949164,39.41166963,36 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_239_1,-74.51504305,39.45455932,36 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_239_2,-74.58658,39.4126175,30 N ALBANY AVE,ATLANTIC CITY CITY,,1980,1,COM3,3004 -0102_239_2,-74.52554925,39.44929718,30 N ALBANY AVE,ATLANTIC CITY CITY,,1980,1,RES1,3001 -0102_239_4,-74.5713385,39.4142915,26 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_239_4,-74.505797,39.446226,26 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_239_5,-74.567503,39.407345,24 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_239_5,-74.48864635,39.44409657,24 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,REL1,3003 -0102_24_1,-74.62753836,39.43436833,121 WILSON AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_24_1,-74.5949065,39.31281,121 WILSON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_24_10,-74.62985971,39.43298447,132 S PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_24_10,-74.597137,39.31235,132 S PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_24_2,-74.62370305,39.42013631,123 WILSON AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_24_2,-74.5797245,39.311359,123 WILSON AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_24_3,-74.62199761,39.4245662,125 WILSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_24_3,-74.53349964,39.31389973,125 WILSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_24_4,-74.648893,39.4036025,127 WILSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_24_4,-74.5255075,39.54222,127 WILSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_24_5,-74.6282495,39.4128855,129 WILSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_24_5,-74.48341613,39.53807357,129 WILSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_24_6,-74.553409,39.363389,131 WILSON AVE,ATLANTIC CITY CITY,45,1928,2,RES1,3001 -0102_24_6,-74.50525484,39.34008006,131 WILSON AVE,ATLANTIC CITY CITY,45,1928,2,RES1,3001 -0102_24_7,-74.55451645,39.36533086,133 WILSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_24_7,-74.49368688,39.33460383,133 WILSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_24_8,-74.56617986,39.35358429,135 WILSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_24_8,-74.49359261,39.33480416,135 WILSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_24_9,-74.5602777,39.36526962,3501 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_24_9,-74.48764,39.3344275,3501 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_240_1,-74.6153178,39.42959164,44 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_240_1,-74.4993775,39.459282,44 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_240_3,-74.59116496,39.42601772,3712 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_240_3,-74.52124232,39.45740434,3712 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_240_4,-74.58304862,39.42000945,3714 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_240_4,-74.52497355,39.45903034,3714 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3004 -0102_240_5,-74.60207198,39.41061297,55 N TRENTON AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_240_5,-74.49134,39.4701085,55 N TRENTON AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_240_6,-74.61434719,39.41042241,59 N TRENTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_240_6,-74.50982043,39.4587315,59 N TRENTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_240_7,-74.60960467,39.41850851,65 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_240_7,-74.528097,39.459056,65 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_241_1,-74.64018232,39.38950544,100 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_241_1,-74.51835959,39.46826654,100 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_241_10,-74.63133999,39.38141133,3718 SUNSET AVE,ATLANTIC CITY CITY,27,1924,2,COM1,3004 -0102_241_10,-74.50752547,39.46261267,3718 SUNSET AVE,ATLANTIC CITY CITY,27,1924,2,RES1,3001 -0102_241_11,-74.63092204,39.38045115,3716 SUNSET AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_241_11,-74.52320565,39.46159387,3716 SUNSET AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_241_12,-74.64692752,39.37764017,3714 SUNSET AVE,ATLANTIC CITY CITY,27,1924,2,RES1,3001 -0102_241_12,-74.52088401,39.45718333,3714 SUNSET AVE,ATLANTIC CITY CITY,27,1924,2,RES1,3001 -0102_241_2,-74.62312357,39.39304459,3713 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_241_2,-74.52913038,39.45709115,3713 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_241_3,-74.623674,39.3788985,3715 WINCHESTER AVE,ATLANTIC CITY CITY,17,1924,1,RES1,3001 -0102_241_3,-74.50070676,39.4558938,3715 WINCHESTER AVE,ATLANTIC CITY CITY,17,1924,1,RES1,3001 -0102_241_4,-74.6221185,39.38026,3717 WINCHESTER AVE,ATLANTIC CITY CITY,27,1924,2,RES1,3001 -0102_241_4,-74.4989735,39.4584615,3717 WINCHESTER AVE,ATLANTIC CITY CITY,27,1924,2,RES1,3001 -0102_241_5,-74.57822147,39.43001913,3719 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_241_5,-74.530365,39.455073,3719 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_241_6,-74.59404371,39.42097682,3721 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_241_6,-74.52218995,39.45515735,3721 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_241_7,-74.589056,39.42468,101 N TRENTON AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_241_7,-74.526164,39.45642233,101 N TRENTON AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_241_8,-74.61986445,39.37913089,107 N TRENTON AVE,ATLANTIC CITY CITY,17,1924,1,GOV1,3004 -0102_241_8,-74.50231233,39.45784051,107 N TRENTON AVE,ATLANTIC CITY CITY,17,1924,1,RES1,3001 -0102_241_9,-74.63557361,39.3842349,3720 SUNSET AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_241_9,-74.49707785,39.46942725,3720 SUNSET AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_242_1,-74.65568154,39.39578803,3705 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_242_1,-74.51715577,39.46165922,3705 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_242_5,-74.639221,39.400011,3713 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_242_5,-74.51951148,39.4650175,3713 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_243_10,-74.8151785,39.400352,101 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_243_10,-74.5459602,39.39952027,101 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_243_11,-74.63436286,39.53295737,103 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_243_11,-74.5413855,39.391551,103 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_243_13,-74.685851,39.5092765,107 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_243_13,-74.5938445,39.37048,107 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_243_17,-74.56626122,39.34930413,151 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_243_17,-74.46099804,39.35497768,151 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_243_1801,-74.54391266,39.37834348,151 N ANNAPOLIS #1,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1801,-74.48620047,39.33973511,151 N ANNAPOLIS #1,ATLANTIC CITY CITY,39,1973,1,COM3,3004 -0102_243_1802,-74.58104556,39.31105392,151 N ANNAPOLIS #2,ATLANTIC CITY CITY,39,1973,1,GOV1,3004 -0102_243_1802,-74.48150394,39.3453336,151 N ANNAPOLIS #2,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1803,-74.5343845,39.31400433,151 N ANNAPOLIS #3,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1803,-74.47673019,39.3445315,151 N ANNAPOLIS #3,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1804,-74.52926934,39.54387297,151 N ANNAPOLIS #4,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1804,-74.47654172,39.34431913,151 N ANNAPOLIS #4,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1805,-74.467862,39.5405755,151 N ANNAPOLIS #5,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1805,-74.47837852,39.34485366,151 N ANNAPOLIS #5,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1806,-74.51330592,39.53642285,151 N ANNAPOLIS #6,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1806,-74.47753469,39.34379648,151 N ANNAPOLIS #6,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1807,-74.50167912,39.53336578,151 N ANNAPOLIS #7,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_243_1807,-74.47999957,39.34340472,151 N ANNAPOLIS #7,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_243_1808,-74.49260225,39.53329382,151 N ANNAPOLIS #8,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1808,-74.47981359,39.34401938,151 N ANNAPOLIS #8,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1809,-74.49191835,39.52110878,151 N ANNAPOLIS #9,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1809,-74.47644703,39.34524702,151 N ANNAPOLIS #9,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1810,-74.49661581,39.52333194,151 N ANNAPOLIS #10,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1810,-74.47767063,39.34407393,151 N ANNAPOLIS #10,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1811,-74.49485029,39.52772411,151 N ANNAPOLIS #11,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1811,-74.47730693,39.3435027,151 N ANNAPOLIS #11,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1812,-74.49655619,39.5137663,151 N ANNAPOLIS #12,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1812,-74.47895627,39.34508733,151 N ANNAPOLIS #12,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1813,-74.43855944,39.51737115,151 N ANNAPOLIS #A,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1813,-74.47817828,39.34347777,151 N ANNAPOLIS #A,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1814,-74.49855696,39.49909181,151 N ANNAPOLIS #B,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_243_1814,-74.47821437,39.34355255,151 N ANNAPOLIS #B,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_243_1815,-74.500259,39.487406,151 N ANNAPOLIS #C,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1815,-74.47725995,39.34464856,151 N ANNAPOLIS #C,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1816,-74.50367896,39.48839481,151 N ANNAPOLIS #D,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_1816,-74.4790915,39.34466262,151 N ANNAPOLIS #D,ATLANTIC CITY CITY,39,1973,1,RES1,3001 -0102_243_6,-74.61239649,39.32423467,4001 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_243_6,-74.4824175,39.344912,4001 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_243_7,-74.603981,39.319296,4015 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_243_7,-74.48241369,39.34614896,4015 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_243_8,-74.64647,39.5498045,4017 WINCHESTER AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_243_8,-74.58852794,39.37890122,4017 WINCHESTER AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_243_9,-74.655284,39.529099,4029 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_243_9,-74.54847335,39.38668118,4029 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_244_1,-74.607491,39.325835,115 N WINDSOR AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_244_1,-74.44775239,39.35763575,115 N WINDSOR AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_244_10,-74.69732717,39.50538801,109 N WINDSOR AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_244_10,-74.58416378,39.37975176,109 N WINDSOR AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_244_2,-74.61387733,39.32333801,113 N WINDSOR AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_244_2,-74.4828115,39.3447635,113 N WINDSOR AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_244_3,-74.6121435,39.3244895,111 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_244_3,-74.48608018,39.34561064,111 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_244_4,-74.67107053,39.56212541,108 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_244_4,-74.592607,39.3776715,108 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_244_5,-74.68653238,39.51164042,107 N WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_244_5,-74.585733,39.3736235,107 N WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_244_6,-74.65475248,39.52442966,104 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_244_6,-74.53612148,39.39834868,104 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_244_7,-74.63904099,39.53347867,4101 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_244_7,-74.55652731,39.38417468,4101 WINCHESTER AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_244_8,-74.82237261,39.37804769,4103 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_244_8,-74.54144481,39.39487705,4103 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_244_9,-74.6418915,39.528907,105 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_244_9,-74.5487105,39.39243,105 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_245_1,-74.65179,39.533189,137 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_1,-74.5597345,39.397446,137 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_10,-74.75956283,39.43067661,110 N WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_10,-74.54125,39.389964,110 N WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_11,-74.54570878,39.38581358,4121 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_245_11,-74.49806368,39.41090049,4121 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_245_12,-74.5510125,39.389305,4127 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_12,-74.50656673,39.40495886,4127 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_13,-74.546549,39.376799,4129 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_13,-74.48008365,39.43040556,4129 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_14,-74.548763,39.380145,4133 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_14,-74.526449,39.395486,4133 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_15,-74.54128942,39.38333815,4135 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_245_15,-74.51178531,39.39900879,4135 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3002 -0102_245_16,-74.55482529,39.37045293,111 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_16,-74.48511314,39.43043676,111 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_17,-74.547092,39.387588,113 N RICHMOND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_245_17,-74.49437867,39.41839609,113 N RICHMOND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_245_18,-74.7346175,39.433382,117 N RICHMOND AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_245_18,-74.56149065,39.37233431,117 N RICHMOND AVE,ATLANTIC CITY CITY,17,1922,1,GOV1,3004 -0102_245_19,-74.75869023,39.43179897,119 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_19,-74.5711615,39.369602,119 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_245_20,-74.75337718,39.43056224,121 N RICHMOND AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_245_20,-74.53627233,39.387267,121 N RICHMOND AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_245_21,-74.8075205,39.3760665,123 N RICHMOND AVE,ATLANTIC CITY CITY,28,2018,1,RES1,3001 -0102_245_21,-74.5323435,39.4011,123 N RICHMOND AVE,ATLANTIC CITY CITY,28,2018,1,RES1,3001 -0102_245_22,-74.81595709,39.38118328,125 N RICHMOND AVE,ATLANTIC CITY CITY,27,2018,1,RES1,3001 -0102_245_22,-74.53684756,39.39782669,125 N RICHMOND AVE,ATLANTIC CITY CITY,27,2018,1,RES1,3001 -0102_245_23,-74.63866323,39.5333878,129 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_23,-74.54223407,39.39251764,129 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_24,-74.6488245,39.5289455,131 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_24,-74.5321915,39.386454,131 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_25,-74.64818922,39.52243412,133 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_25,-74.5484457,39.3871506,133 N RICHMOND AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_245_26,-74.6434175,39.5367305,135 N RICHMOND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_245_26,-74.55827918,39.39884771,135 N RICHMOND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_245_3,-74.676913,39.5578195,136 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_245_3,-74.594039,39.376978,136 N WINDSOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_245_4,-74.66581369,39.54437333,132 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_245_4,-74.59400628,39.37887594,132 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_245_5,-74.65597379,39.53414653,128 N WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_5,-74.55427715,39.39473531,128 N WINDSOR AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_245_6,-74.65350444,39.52287136,124 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,RES3A,3001 -0102_245_6,-74.5645995,39.390733,124 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_245_7,-74.6416625,39.5291085,120 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,GOV1,3002 -0102_245_7,-74.53730518,39.39146657,120 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,COM1,3004 -0102_245_8,-74.81586116,39.3903144,118 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_245_8,-74.5506755,39.401668,118 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3002 -0102_245_9,-74.75864624,39.43054204,114 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_245_9,-74.5346965,39.386122,114 N WINDSOR AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_246_1,-74.650597,39.533134,121 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_246_1,-74.55828262,39.39710608,121 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_246_10,-74.53306376,39.37583659,103 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_246_10,-74.51929302,39.39307272,103 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_246_11,-74.64264093,39.36598972,101 N LACLEDE PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_246_11,-74.44432023,39.37458754,101 N LACLEDE PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_246_2,-74.651505,39.5258255,119 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_246_2,-74.54546287,39.38834056,119 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_246_3,-74.81866736,39.38540759,117 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_246_3,-74.54613664,39.39637552,117 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_246_4,-74.75693791,39.42936672,115 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_246_4,-74.5521235,39.3853465,115 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,COM1,3004 -0102_246_5,-74.755875,39.431503,113 N LACLEDE PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_246_5,-74.53463583,39.39205968,113 N LACLEDE PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_246_6,-74.5450385,39.3863525,111 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3004 -0102_246_6,-74.49078318,39.41809451,111 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_246_7,-74.546397,39.379238,109 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_246_7,-74.48669708,39.43603464,109 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_246_8,-74.55003166,39.36845131,107 N LACLEDE PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_246_8,-74.52654532,39.38581992,107 N LACLEDE PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_246_9,-74.5472835,39.373535,105 N LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_246_9,-74.510211,39.3857135,105 N LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_247_1,-74.70813056,39.43157133,123 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES2,3005 -0102_247_1,-74.56112471,39.37372386,123 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_247_10,-74.62174801,39.41409482,104 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_247_10,-74.519162,39.5337175,104 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_247_11,-74.66356265,39.4003785,102 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_247_11,-74.497467,39.5244915,102 N LACLEDE PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_247_12,-74.66987652,39.38464929,100 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_247_12,-74.46068634,39.52314473,100 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_247_13,-74.6379495,39.4023895,4221 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_247_13,-74.48816064,39.53548406,4221 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_247_14,-74.67294266,39.3830145,4223 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_247_14,-74.48587999,39.53714853,4223 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_247_15,-74.62711283,39.41569834,101 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_247_15,-74.51544927,39.52769252,101 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_247_16,-74.78613313,39.60784618,103 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_247_16,-74.54339715,39.41027189,103 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_247_17,-74.6527245,39.358842,105 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,COM1,3004 -0102_247_17,-74.365433,39.4217545,105 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_247_18,-74.771363,39.3099155,107 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_247_18,-74.45212996,39.37369736,107 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_247_19,-74.76434659,39.35020271,109 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_247_19,-74.50728964,39.38425643,109 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_247_2,-74.7537915,39.4298105,140 N LACLEDE PL,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_247_2,-74.5450855,39.388599,140 N LACLEDE PL,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_247_20,-74.53756197,39.37384456,111 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_247_20,-74.5134455,39.387436,111 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_247_21,-74.54934053,39.37226677,113 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_247_21,-74.526166,39.3935075,113 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,COM1,3004 -0102_247_22,-74.5486175,39.369945,115 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_247_22,-74.52371262,39.38629781,115 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_247_23,-74.53247807,39.38304389,117 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_247_23,-74.51517767,39.39584574,117 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_247_24,-74.55029313,39.38130356,119 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_247_24,-74.52047734,39.39654194,119 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_247_25,-74.54966845,39.39309349,121 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_247_25,-74.5035155,39.406019,121 N RALEIGH AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_247_3,-74.758996,39.4330185,136 N LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_247_3,-74.57445158,39.37076232,136 N LACLEDE PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_247_4,-74.53813824,39.39010304,130 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_247_4,-74.50669553,39.40738565,130 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_247_5,-74.54316407,39.38260283,126 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_247_5,-74.514557,39.3956175,126 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_247_6,-74.55120681,39.37139197,122 N LACLEDE PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_247_6,-74.52546799,39.39322767,122 N LACLEDE PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_247_7,-74.538506,39.373937,118 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_247_7,-74.51927148,39.39017128,118 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_247_8,-74.786247,39.3093585,108 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_247_8,-74.45444976,39.37393418,108 N LACLEDE PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_247_9,-74.78924067,39.61919878,106 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_247_9,-74.5491565,39.404586,106 N LACLEDE PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_248_1,-74.68988997,39.35878983,117 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_248_1,-74.453865,39.3743635,117 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_248_10,-74.6296062,39.39134691,4307 WINCHESTER AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_248_10,-74.49553268,39.49358097,4307 WINCHESTER AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_248_11,-74.6300082,39.39168547,4309 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_248_11,-74.52539477,39.47133491,4309 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_248_12,-74.65449145,39.36958499,4311 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_248_12,-74.50422271,39.47975751,4311 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_248_13,-74.64384234,39.36999227,4315 WINCHESTER AVE,ATLANTIC CITY CITY,27,1920,2,COM1,3004 -0102_248_13,-74.48958066,39.47613295,4315 WINCHESTER AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_248_14,-74.63530969,39.38383969,4317 WINCHESTER AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_248_14,-74.48719282,39.49425823,4317 WINCHESTER AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_248_15,-74.6425865,39.369738,101 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_248_15,-74.50822934,39.48368533,101 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_248_16,-74.63683155,39.40134431,103 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_248_16,-74.491328,39.497754,103 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_248_17,-74.6627945,39.400816,105 N DELANCY PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_248_17,-74.512952,39.5038585,105 N DELANCY PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_248_18,-74.68549446,39.38295977,107 N DELANCY PL,ATLANTIC CITY CITY,45,1920,3,REL1,3004 -0102_248_18,-74.4906175,39.5201235,107 N DELANCY PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_248_19,-74.62708055,39.41841837,111 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_248_19,-74.51531497,39.52879272,111 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_248_2,-74.54812684,39.37550547,124 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_248_2,-74.515188,39.3863565,124 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_248_20,-74.76883837,39.60907864,113 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_248_20,-74.60341552,39.39310332,113 N DELANCY PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_248_21,-74.78515652,39.61560897,115 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_248_21,-74.55262386,39.40396275,115 N DELANCY PL,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_248_3,-74.68872612,39.381834,118 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_248_3,-74.50687373,39.51659412,118 N RALEIGH AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_248_4,-74.67373075,39.37631594,116 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_248_4,-74.48690823,39.52031185,116 N RALEIGH AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_248_5,-74.65815183,39.3972196,114 N RALEIGH AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_248_5,-74.48593923,39.52049137,114 N RALEIGH AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_248_6,-74.65583327,39.40108141,112 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_248_6,-74.50024588,39.49776721,112 N RALEIGH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_248_7,-74.6624595,39.4015335,110 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_248_7,-74.4887475,39.4965895,110 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_248_8,-74.62821265,39.3911467,4301 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_248_8,-74.5075395,39.4939285,4301 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_248_9,-74.63245096,39.3913993,4305 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_248_9,-74.506418,39.493031,4305 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_249_10,-74.539786,39.471852,103 N COLUMBIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_249_10,-74.5741405,39.36808123,103 N COLUMBIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_249_11,-74.54810972,39.47538057,105 N COLUMBIA AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_249_11,-74.573838,39.362916,105 N COLUMBIA AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3004 -0102_249_12,-74.54559726,39.47276947,107 N COLUMBIA AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_249_12,-74.59308983,39.3504845,107 N COLUMBIA AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_249_3,-74.57319792,39.47802444,108 N DELANCY PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_249_3,-74.59493259,39.34965362,108 N DELANCY PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_249_4,-74.5461,39.4748175,106 N DELANCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_249_4,-74.5911357,39.33509416,106 N DELANCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_249_5,-74.55028344,39.47576705,104 N DELANCY PL,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_249_5,-74.56631038,39.36639054,104 N DELANCY PL,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_249_6,-74.64204828,39.37453853,102 N DELANCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_249_6,-74.46596143,39.49841412,102 N DELANCY PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_249_7,-74.62211893,39.37995356,4331 WINCHESTER AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_249_7,-74.46934398,39.48851938,4331 WINCHESTER AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_249_8,-74.59164595,39.45587381,4333 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_249_8,-74.55649232,39.36603094,4333 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_249_9,-74.53713211,39.47496591,101 N COLUMBIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_249_9,-74.55658945,39.36234479,101 N COLUMBIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_25_1,-74.6288475,39.429527,3401 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_25_1,-74.60193581,39.31581997,3401 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_25_2,-74.45657,39.35225483,AIR RIGHTS PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3004 -0102_25_2,-74.7799305,39.6030555,AIR RIGHTS PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM10,3003 -0102_25_3,-74.63849752,39.43531169,3309 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_25_3,-74.60814739,39.31435639,3309 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_250_1,-74.61036629,39.32266658,4131 SUNSET AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_250_1,-74.48367055,39.34473468,4131 SUNSET AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_250_2,-74.610571,39.3189385,4129 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_250_2,-74.48466933,39.34378023,4129 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_250_3,-74.61048312,39.32809288,4123 SUNSET AVE,ATLANTIC CITY CITY,16,2008,1,RES1,3001 -0102_250_3,-74.45036726,39.35652025,4123 SUNSET AVE,ATLANTIC CITY CITY,16,2008,1,GOV1,3004 -0102_250_4,-74.56895342,39.34093377,4121 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_250_4,-74.44410815,39.3565317,4121 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_250_5,-74.57413922,39.34031686,4119 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_250_5,-74.45115705,39.35557565,4119 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_250_6,-74.57236077,39.33575498,4117 SUNSET AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_250_6,-74.45203519,39.35415648,4117 SUNSET AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_250_7,-74.56367563,39.34746511,4105 SUNSET AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_250_7,-74.46190158,39.35651367,4105 SUNSET AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_251_1,-74.62552967,39.38471578,NE KINGSTON & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_1,-74.47556933,39.4934335,NE KINGSTON & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_10,-74.64281535,39.52758055,NE RALEIGH & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_251_10,-74.5427085,39.3904265,NE RALEIGH & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_11,-74.6651555,39.52977,NW SUNSET & LA CLEDE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_11,-74.59701971,39.37995303,NW SUNSET & LA CLEDE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_12,-74.60755417,39.32038758,NW RICHMOND & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_12,-74.48561056,39.3467448,NW RICHMOND & SUNSET,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_251_2,-74.5690325,39.476204,NE COLUMBIA & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_2,-74.6131705,39.337908,NE COLUMBIA & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_3,-74.802469,39.3651325,NW SUNSET&DELANCEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_3,-74.52044734,39.38224239,NW SUNSET&DELANCEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_4,-74.53983058,39.37154411,NE DELANCEY & SUNSET,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_251_4,-74.51785967,39.386734,NE DELANCEY & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_5,-74.54578633,39.3705795,SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_5,-74.52939,39.388739,SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_251_6,-74.550102,39.3769065,NW RALEIGH & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_6,-74.48118923,39.43053974,NW RALEIGH & SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_7,-74.56125275,39.37021112,NW SUNSET & RALEIGH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_7,-74.50602064,39.40993615,NW SUNSET & RALEIGH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_8,-74.73466834,39.43293897,OFF SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_8,-74.5591185,39.371011,OFF SUNSET,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_9,-74.75440595,39.4322792,NE SUNSET & RALEIGH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_251_9,-74.57311098,39.37062818,NE SUNSET & RALEIGH,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_252_1,-74.56509866,39.47675424,135 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES3B,3001 -0102_252_1,-74.612735,39.34110663,135 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_252_2,-74.5477115,39.475159,129 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_2,-74.57944302,39.33741207,129 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_3,-74.5335545,39.4705145,123 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_3,-74.57187531,39.36718919,123 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_4,-74.61677186,39.46105358,117 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_252_4,-74.56408117,39.36500759,117 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_252_5,-74.61018445,39.44137135,113 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_5,-74.55822441,39.36798065,113 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_6,-74.58192066,39.44470138,4403 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_6,-74.56560438,39.35450287,4403 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_7,-74.55552183,39.46510814,4409 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_252_7,-74.5694635,39.356835,4409 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_1,-74.6289365,39.369545,125 N KINGSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_253_1,-74.46298427,39.49221557,125 N KINGSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_253_10,-74.62865959,39.43638036,4437 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_10,-74.81524013,39.36460422,4437 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_11,-74.649996,39.3571145,113 N KINGSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_253_11,-74.374841,39.41142,113 N KINGSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_253_12,-74.65069868,39.35542305,117 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_12,-74.3781325,39.40314,117 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_13,-74.600202,39.4251155,119 N KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_253_13,-74.44747948,39.48631071,119 N KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_253_14,-74.60588454,39.42118231,121 N KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3004 -0102_253_14,-74.44842619,39.47952002,121 N KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_253_15,-74.60074107,39.4341148,123 N KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_253_15,-74.44877691,39.49229429,123 N KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_253_2,-74.64009395,39.36829901,132 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_253_2,-74.45279941,39.49744803,132 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_253_3,-74.638661,39.3707235,126 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_253_3,-74.45455476,39.49144898,126 N BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_253_4,-74.6184845,39.4298825,122 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_4,-74.4517605,39.4870915,122 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_5,-74.60158055,39.42275981,116 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_5,-74.44808953,39.47999584,116 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_6,-74.6047075,39.425961,112 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_6,-74.45942436,39.47760054,112 N BARTRAM AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_7,-74.65182667,39.35553701,4421 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_7,-74.374521,39.410956,4421 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_8,-74.633488,39.3614885,4427 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_253_8,-74.37295628,39.41493305,4427 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_253_9,-74.62686136,39.43651205,4431 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_253_9,-74.5405786,39.37630634,4431 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_10,-74.62907882,39.43896903,116 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_254_10,-74.8016945,39.313922,116 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_12,-74.6048625,39.4913785,112 N ABERDEEN PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_254_12,-74.7630315,39.3504025,112 N ABERDEEN PL,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_254_13,-74.5872945,39.4935415,4505 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_254_13,-74.765033,39.3073845,4505 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_254_14,-74.49226538,39.3390926,4507 WINCHESTER AVE,ATLANTIC CITY CITY,17,1903,1,RES1,3001 -0102_254_14,-74.637499,39.5641615,4507 WINCHESTER AVE,ATLANTIC CITY CITY,17,1903,1,RES1,3001 -0102_254_15,-74.4954651,39.34153016,4509 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_15,-74.64734193,39.54848085,4509 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_16,-74.47712918,39.36781478,4511 WINCHESTER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_254_16,-74.64632009,39.54945386,4511 WINCHESTER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_254_17,-74.49122833,39.33926964,113 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_17,-74.6598745,39.5507153,113 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_18,-74.586487,39.4931935,115 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_18,-74.75597063,39.34707584,115 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_4,-74.6355445,39.360795,120 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_4,-74.367378,39.413919,120 N ABERDEEN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_6,-74.601762,39.4354285,121 N ABERDEEN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_254_6,-74.485829,39.47796,121 N ABERDEEN PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_254_7,-74.6204045,39.4381085,113 N ABERDEEN PL,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_254_7,-74.81466808,39.36603467,113 N ABERDEEN PL,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_254_8,-74.6040065,39.5005315,100 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,COM4,3004 -0102_254_8,-74.8049565,39.3146845,100 N KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_254_9,-74.608306,39.4892665,4503 WINCHESTER AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_254_9,-74.75862727,39.35970843,4503 WINCHESTER AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_255_1,-74.48757635,39.33876198,110 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_255_1,-74.6513315,39.5668475,110 N TALLAHASSEE AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_255_2,-74.48257283,39.35284358,108 N TALLAHASSEE AV,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_255_2,-74.6479415,39.5540775,108 N TALLAHASSEE AV,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_255_3,-74.44479667,39.36070746,106 N TALLAHASSEE AV,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_255_3,-74.690913,39.5182015,106 N TALLAHASSEE AV,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_255_4,-74.46138301,39.35141793,104 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_255_4,-74.68275149,39.50906983,104 N TALLAHASSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_255_5.02,-74.459024,39.351588,NE WINCHESTER & MONTGOMER,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_255_5.02,-74.6798785,39.511969,NE WINCHESTER & MONTGOMER,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_1,-74.81640446,39.39963372,NE WINCHESTER&JACKSN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_1,-74.59488042,39.36653303,NE WINCHESTER&JACKSN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_10,-74.46204828,39.35478666,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_256_10,-74.65562717,39.53492151,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_11,-74.461343,39.3537065,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_11,-74.6569395,39.5348545,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_12,-74.46154133,39.35310394,NW WINCHSTR&MONTGMRY,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_256_12,-74.653569,39.5306905,NW WINCHSTR&MONTGMRY,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_256_2,-74.822093,39.3970775,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_256_2,-74.60059159,39.3591649,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_3,-74.84810232,39.38789054,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_3,-74.59916554,39.35859184,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_4,-74.84471837,39.4006969,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_4,-74.6008945,39.3667485,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_5,-74.811239,39.4082365,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_5,-74.60373279,39.36551512,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_6,-74.44966072,39.35617866,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_6,-74.64957582,39.53791678,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_7,-74.4504268,39.35451388,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_7,-74.648109,39.5337865,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_8,-74.45405203,39.35390734,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_256_8,-74.64832383,39.53216449,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_256_9,-74.45383436,39.35256734,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_256_9,-74.651897,39.5321335,WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_257_10,-74.57523737,39.42205396,10 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_257_10,-74.607095,39.3237335,10 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_257_11,-74.60129581,39.41630843,8 N ST DAVIDS PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_257_11,-74.59045712,39.33407014,8 N ST DAVIDS PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_257_12,-74.58872356,39.4153761,6 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_257_12,-74.59022597,39.32252585,6 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_257_13,-74.5698725,39.4277375,4 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_257_13,-74.607983,39.314755,4 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_257_14,-74.574697,39.426101,2 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_257_14,-74.579213,39.31227378,2 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_257_15,-74.55403619,39.42597048,3607 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_257_15,-74.57424782,39.33377843,3607 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_257_18,-74.5548725,39.425951,21 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_257_18,-74.5790029,39.31343766,21 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_257_19,-74.573414,39.4291035,23 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_257_19,-74.5920799,39.31238806,23 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_257_2,-74.62634651,39.37438417,3636 WINCHESTER AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_257_2,-74.57488346,39.34178061,3636 WINCHESTER AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_257_20,-74.57693467,39.40871495,25 N ALBANY AVE,ATLANTIC CITY CITY,,1940,1,RES1,3001 -0102_257_20,-74.60004395,39.31437654,25 N ALBANY AVE,ATLANTIC CITY CITY,,1940,1,RES1,3001 -0102_257_21,-74.583019,39.417681,27 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_257_21,-74.60339156,39.31391182,27 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_257_22,-74.59948334,39.41032773,29 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_257_22,-74.5915038,39.32187633,29 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_257_23,-74.6020275,39.415411,31 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_257_23,-74.588498,39.3316805,31 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_257_24,-74.591742,39.421926,37 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_257_24,-74.6134655,39.322567,37 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_257_25,-74.59286791,39.4280896,55 N ALBANY AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_257_25,-74.60895624,39.31784876,55 N ALBANY AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_257_26,-74.599509,39.4346845,57 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_257_26,-74.603179,39.3274605,57 N ALBANY AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_257_3,-74.6401735,39.380027,3634 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_257_3,-74.54949956,39.35913232,3634 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_257_4,-74.64511701,39.36908099,3632 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_257_4,-74.5480205,39.36131,3632 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_257_5,-74.62351154,39.39263569,3630 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_257_5,-74.56088966,39.35728942,3630 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_257_6,-74.6237405,39.385811,3628 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_257_6,-74.567308,39.355497,3628 WINCHESTER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_257_7,-74.63697506,39.37142746,16 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_257_7,-74.56851131,39.35060348,16 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_257_8,-74.59858114,39.42913326,14 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_257_8,-74.60953277,39.32617738,14 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_257_9,-74.61058702,39.42466683,12 N ST DAVIDS PL,ATLANTIC CITY CITY,47,1900,4,RES1,3001 -0102_257_9,-74.60365926,39.32750381,12 N ST DAVIDS PL,ATLANTIC CITY CITY,47,1900,4,RES3B,3001 -0102_258_1,-74.6746525,39.387905,19 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_258_1,-74.56210323,39.3615444,19 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1900,2,IND2,3002 -0102_258_10,-74.6056041,39.42172082,36 N HARTFORD AVE,ATLANTIC CITY CITY,45,1915,3,GOV1,3004 -0102_258_10,-74.5987855,39.33044,36 N HARTFORD AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_258_11,-74.579392,39.429841,34 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_258_11,-74.6135525,39.32143,34 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_258_12,-74.59493051,39.42734665,30 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_12,-74.59834369,39.31751963,30 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_13,-74.61171067,39.41379107,28 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_13,-74.60651903,39.32459891,28 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_14,-74.59800268,39.41300005,26 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_14,-74.58875568,39.3277804,26 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_15,-74.59765466,39.41694428,22 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_258_15,-74.58498229,39.33089112,22 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_258_16,-74.60017855,39.41005565,20 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_16,-74.58747118,39.31817117,20 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_17,-74.5867405,39.41356,18 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_17,-74.589793,39.322083,18 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_258_18,-74.59551475,39.41545018,3601 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_258_18,-74.59328004,39.32270032,3601 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_258_19,-74.60224632,39.4102292,3 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_258_19,-74.59181151,39.31994983,3 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_258_2,-74.65208453,39.41335357,60 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_258_2,-74.57402787,39.36444855,60 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_258_20,-74.61911111,39.40360623,5 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_258_20,-74.585411,39.331043,5 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_258_21,-74.609191,39.418576,7 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_258_21,-74.59225579,39.32720275,7 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_258_22,-74.6002085,39.434319,9-11 N ST DAVID PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_258_22,-74.6074505,39.326843,9-11 N ST DAVID PL,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_258_23,-74.63841688,39.38143997,13 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_258_23,-74.56892523,39.34795976,13 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_258_3,-74.63101756,39.41692428,54 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_258_3,-74.5674945,39.3661885,54 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_258_4,-74.66953883,39.36847693,52 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_258_4,-74.56039836,39.36637303,52 N HARTFORD AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_258_5,-74.653794,39.397024,50 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_258_5,-74.57076011,39.35192083,50 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_258_6,-74.6377015,39.4015615,46 N HARTFORD AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_258_6,-74.57131,39.352953,46 N HARTFORD AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_258_7,-74.652509,39.3697355,44 N HARTFORD AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_258_7,-74.54933304,39.36069552,44 N HARTFORD AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_258_8,-74.6374252,39.37121305,42 N HARTFORD AVE,ATLANTIC CITY CITY,17,1915,1,GOV1,3004 -0102_258_8,-74.57414553,39.34852828,42 N HARTFORD AVE,ATLANTIC CITY CITY,17,1915,1,RES3A,3001 -0102_258_9,-74.6020659,39.43254804,38 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES3B,3001 -0102_258_9,-74.61070632,39.32736873,38 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES3B,3001 -0102_259_1,-74.64846969,39.43274604,17 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_259_1,-74.58586404,39.35823325,17 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_259_11,-74.6794025,39.377494,4 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_11,-74.560076,39.3641525,4 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_12,-74.64339349,39.39817268,2 N PROVIDENCE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_259_12,-74.5712555,39.3520285,2 N PROVIDENCE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_259_13,-74.634862,39.3846565,3501 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_13,-74.574494,39.348236,3501 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_15,-74.5934645,39.4338775,3507 VENTNOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_259_15,-74.61129894,39.3211441,3507 VENTNOR AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_259_16,-74.5828305,39.432198,3509 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_16,-74.61329806,39.32245734,3509 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_17,-74.582921,39.421178,3515 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_17,-74.606128,39.323365,3515 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_18,-74.60221638,39.43302553,1 N HARTFORD AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_18,-74.607139,39.3262305,1 N HARTFORD AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_19,-74.59048921,39.43131487,1 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_19,-74.617147,39.319399,1 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_20,-74.63037724,39.38031511,3 N HARTFORD AVE,ATLANTIC CITY CITY,45,1935,4,RES1,3001 -0102_259_20,-74.56913131,39.34372446,3 N HARTFORD AVE,ATLANTIC CITY CITY,45,1935,4,RES1,3001 -0102_259_21,-74.6285747,39.39088397,5 N HARTFORD AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_259_21,-74.56676311,39.3558932,5 N HARTFORD AVE,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_259_22,-74.67107525,39.37042208,7 N HARTFORD AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_259_22,-74.57017082,39.35175399,7 N HARTFORD AVE,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_259_23,-74.625833,39.417578,9 N HARTFORD AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_259_23,-74.572231,39.368051,9 N HARTFORD AVE,ATLANTIC CITY CITY,17,1900,1,RES3B,3001 -0102_259_24,-74.63156844,39.42194669,13 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_24,-74.5801041,39.33957133,13 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_25,-74.6293135,39.4292405,15 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_25,-74.61164489,39.34144613,15 N HARTFORD AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_3,-74.53428036,39.45103677,3504 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_259_3,-74.5879705,39.351936,3504 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_259_4,-74.54131046,39.45932254,3502 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,2,RES1,3002 -0102_259_4,-74.57943895,39.36217245,3502 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,2,RES1,3001 -0102_259_5,-74.54136971,39.46749404,3500 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_259_5,-74.599488,39.367313,3500 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_259_6,-74.64141961,39.4342742,14 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_6,-74.5854166,39.35900118,14 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_7,-74.63594564,39.43081839,12 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_7,-74.60919877,39.34773208,12 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_8,-74.62231076,39.43509358,10 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_259_8,-74.5963915,39.3423115,10 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_259_9,-74.62785318,39.42467263,8 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_259_9,-74.56475919,39.36250717,8 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_26_1,-74.466792,39.3576215,3301 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_26_1,-74.77627624,39.59791698,3301 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_260_1,-74.54166822,39.47401803,3424 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_1,-74.63029291,39.35354654,3424 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_10,-74.5838825,39.486083,36 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_10,-74.66680456,39.35803481,36 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_12,-74.54953668,39.47662229,34 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_12,-74.63372833,39.36715721,34 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_13,-74.60636591,39.43936631,32 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_13,-74.62290401,39.35812701,32 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_14,-74.55600611,39.46550086,30 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_14,-74.64146798,39.33896946,30 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_15,-74.56108746,39.46952972,28 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_15,-74.63203523,39.34768515,28 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_16,-74.54965156,39.46506429,26 N BOSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES3A,3001 -0102_260_16,-74.6459668,39.32918457,26 N BOSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_260_17,-74.54046,39.4695425,24 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_17,-74.61503668,39.35758525,24 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_18,-74.5382305,39.4588485,22 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_260_18,-74.58885977,39.36733165,22 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_19,-74.53232808,39.44773968,20 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_19,-74.58334904,39.36369063,20 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_2,-74.53927888,39.47173772,3420 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,2,COM1,3004 -0102_260_2,-74.62920758,39.3664333,3420 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_260_20,-74.6825486,39.41603431,18 N BOSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_260_20,-74.57831983,39.35142175,18 N BOSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_260_21,-74.667133,39.4189925,16 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_260_21,-74.58073672,39.35552645,16 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_22,-74.63420365,39.42999802,14 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_22,-74.57552645,39.35962971,14 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_23,-74.63701457,39.43579829,12 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_23,-74.6135765,39.337924,12 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_24,-74.62754021,39.43423402,10 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_24,-74.57776122,39.34348466,10 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_25,-74.6210025,39.4228675,8 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_25,-74.57838966,39.34061721,8 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_29,-74.6237525,39.425214,3407 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_29,-74.56720923,39.36358011,3407 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_260_3,-74.5462555,39.47417,3416 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_3,-74.6317305,39.3606685,3416 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_31,-74.627646,39.417204,3417 VENTNOR AVE,ATLANTIC CITY CITY,45,1950,4,RES1,3001 -0102_260_31,-74.56928204,39.36791079,3417 VENTNOR AVE,ATLANTIC CITY CITY,45,1950,4,RES1,3001 -0102_260_33,-74.67065028,39.39176617,3419 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_33,-74.56300921,39.36188934,3419 VENTNOR AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_34,-74.6509705,39.4128875,1 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1920,2,RES3B,3001 -0102_260_34,-74.57492396,39.36360708,1 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_260_35,-74.632113,39.42085,3 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_260_35,-74.58513634,39.33630518,3 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_260_36,-74.63124142,39.43115171,5 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1918,4,RES1,3001 -0102_260_36,-74.5981927,39.3441702,5 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1918,4,RES3B,3001 -0102_260_37,-74.6565485,39.43329,7 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1913,2,RES1,3001 -0102_260_37,-74.58211853,39.35743351,7 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1913,2,RES1,3001 -0102_260_38,-74.70642574,39.42081693,15 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_38,-74.59054862,39.35565082,15 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_260_39,-74.54136028,39.45538999,17 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_39,-74.59432803,39.36362923,17 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_4,-74.5546115,39.47576,3412 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_260_4,-74.6497595,39.3542785,3412 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_260_40,-74.55066872,39.46353657,19 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1908,2,RES1,3001 -0102_260_40,-74.62380208,39.33837875,19 N PROVIDENCE AVE,ATLANTIC CITY CITY,45,1908,2,RES1,3001 -0102_260_41,-74.55058333,39.46574579,21 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_41,-74.635936,39.3079115,21 N PROVIDENCE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_4101,-74.5560885,39.3753401,21 N PROVIDENCE #1,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_260_4101,-74.48605845,39.33901615,21 N PROVIDENCE #1,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_260_4102,-74.63210569,39.41569093,21 N PROVIDENCE #2,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_260_4102,-74.51579945,39.31812781,21 N PROVIDENCE #2,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_260_4103,-74.63264816,39.41668223,21 N PROVIDENCE #3,ATLANTIC CITY CITY,33,1920,1,RES3B,3001 -0102_260_4103,-74.51507949,39.31873295,21 N PROVIDENCE #3,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_260_43,-74.5535915,39.4569945,N PROVIDENCE AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_43,-74.63523774,39.35044161,N PROVIDENCE AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_260_5,-74.58151414,39.47409945,3408 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_5,-74.6686985,39.35919189,3408 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_6,-74.58252436,39.47887024,3404 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_260_6,-74.67956383,39.35216939,3404 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_260_7,-74.60344491,39.48474525,3402 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_260_7,-74.684349,39.361375,3402 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,AGR1,3001 -0102_260_8,-74.80512261,39.37955452,40 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_260_8,-74.60961698,39.34684582,40 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_261_1,-74.81950311,39.38044068,37 N BOSTON AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_261_1,-74.5893511,39.35582794,37 N BOSTON AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_261_10,-74.63300555,39.4585612,12 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_261_10,-74.56275001,39.36305683,12 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_261_11,-74.47941146,39.3461208,10 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_261_11,-74.65156296,39.52152716,10 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_261_12,-74.48580033,39.34627403,8 N SOVEREIGN AVE,ATLANTIC CITY CITY,14,1910,3,RES1,3001 -0102_261_12,-74.64099634,39.52966548,8 N SOVEREIGN AVE,ATLANTIC CITY CITY,14,1910,3,RES1,3001 -0102_261_17,-74.4690545,39.343227,7 N BOSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_261_17,-74.65259784,39.51395996,7 N BOSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_261_18,-74.4813151,39.35020333,9 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_261_18,-74.6408455,39.5314805,9 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_261_19,-74.5487285,39.466782,11 N BOSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_261_19,-74.61218004,39.36747977,11 N BOSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_261_2,-74.81363766,39.38753829,28 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_261_2,-74.57527571,39.36575828,28 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_261_20,-74.5569015,39.466433,15 N BOSTON AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_261_20,-74.63732893,39.34390576,15 N BOSTON AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_261_21,-74.6188205,39.438708,17 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_261_21,-74.62681069,39.35405505,17 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_261_22,-74.54790489,39.47618872,19 N BOSTON AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_261_22,-74.63087336,39.36236818,19 N BOSTON AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_261_25,-74.547838,39.4722935,23 N BOSTON AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_261_25,-74.64127474,39.35944593,23 N BOSTON AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_261_26,-74.5567181,39.47125628,25 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_261_26,-74.6440255,39.361344,25 N BOSTON AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_261_27,-74.58558189,39.49374357,27 N BOSTON AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_261_27,-74.7573335,39.306393,27 N BOSTON AVE,ATLANTIC CITY CITY,27,1900,2,EDU1,3004 -0102_261_28,-74.799696,39.371205,29 N BOSTON AVE,ATLANTIC CITY CITY,27,1905,2,RES1,3001 -0102_261_28,-74.59899801,39.34336623,29 N BOSTON AVE,ATLANTIC CITY CITY,27,1905,2,RES1,3001 -0102_261_29,-74.8084535,39.374042,31 N BOSTON AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_261_29,-74.60527988,39.34281503,31 N BOSTON AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_261_3,-74.8193746,39.37885173,26 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_261_3,-74.575554,39.365905,26 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1920,2,AGR1,3001 -0102_261_30,-74.79722788,39.3786099,33 N BOSTON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_261_30,-74.577115,39.3529955,33 N BOSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_261_31,-74.81527863,39.37876946,35 N BOSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_261_31,-74.57822795,39.35267168,35 N BOSTON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_261_4,-74.82757881,39.38255202,24 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_261_4,-74.58858889,39.35844962,24 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_261_5,-74.694718,39.495452,22 N SOVEREIGN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_261_5,-74.56737817,39.36134956,22 N SOVEREIGN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_261_6,-74.64625007,39.47086341,20 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_261_6,-74.5682565,39.3635595,20 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_261_7,-74.66424919,39.46197393,18 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_261_7,-74.5704027,39.36652759,18 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_261_8,-74.69435552,39.44785622,16 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1910,2,AGR1,3001 -0102_261_8,-74.55572271,39.36029856,16 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1910,2,COM7,3004 -0102_261_9,-74.6822475,39.444049,14 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_261_9,-74.55830016,39.36238926,14 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_262_1,-74.633286,39.414522,3317 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_1,-74.56759913,39.36502776,3317 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_10,-74.5794135,39.3399785,3303 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_10,-74.39574259,39.38850323,3303 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,IND1,3002 -0102_262_11,-74.57552083,39.339892,3301 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_262_11,-74.39666768,39.38826378,3301 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_2,-74.5662545,39.4738035,3313 VENTNOR TERR,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_262_2,-74.60735976,39.3457599,3313 VENTNOR TERR,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_262_3,-74.57480156,39.48198115,3311 VENTNOR TERR,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_262_3,-74.59792782,39.343879,3311 VENTNOR TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_262_4,-74.580201,39.3422955,3309 VENTNOR TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_262_4,-74.38416167,39.39220301,3309 VENTNOR TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3004 -0102_262_6,-74.62249091,39.4186375,3313 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_6,-74.55550661,39.36139659,3313 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_7,-74.63216296,39.41595387,3309 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_7,-74.57328371,39.36552942,3309 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_262_8,-74.58047609,39.34171329,3307 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_8,-74.39613607,39.39251048,3307 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_9,-74.58086781,39.34098148,3305 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_262_9,-74.38991663,39.38952197,3305 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_1,-74.7612335,39.430457,31 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_263_1,-74.594073,39.34375667,31 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_10,-74.67103,39.4618285,10 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_263_10,-74.56565818,39.36649352,10 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_263_11,-74.54734553,39.37689966,8 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_11,-74.51779109,39.44390368,8 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_12,-74.64297465,39.53171697,6 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_263_12,-74.6030558,39.43327734,6 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_263_13,-74.6432785,39.53216,4 N MONTPELIER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_263_13,-74.60705905,39.42059568,4 N MONTPELIER AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_263_15,-74.64649683,39.53440048,3201 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_263_15,-74.5872429,39.4285638,3201 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_16,-74.65031,39.5344295,3203 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_16,-74.58940933,39.42892104,3203 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_17,-74.64392084,39.53496252,3205 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_17,-74.59088519,39.42923048,3205 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_18,-74.64493415,39.53571954,3207 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_18,-74.59057001,39.42941074,3207 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_19,-74.652124,39.5231455,3211 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_263_19,-74.595579,39.434128,3211 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_2,-74.55530411,39.39113407,26 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_2,-74.4519415,39.501418,26 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_20,-74.65050183,39.52305648,3215 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_20,-74.579536,39.4298415,3215 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_21,-74.58565686,39.33693985,1 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_21,-74.39658443,39.38754649,1 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_22,-74.4669865,39.343094,5 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_22,-74.62534662,39.52794509,5 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_263_23,-74.4789795,39.346189,7 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_23,-74.64201316,39.52377836,7 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_263_24,-74.48026918,39.34610897,9 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_24,-74.6528399,39.52240664,9 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_25,-74.6454515,39.4698425,11 N SOVEREIGN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_263_25,-74.55662313,39.36278432,11 N SOVEREIGN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_263_26,-74.68342664,39.4402873,13 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_263_26,-74.5610035,39.361914,13 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_263_27,-74.688845,39.446902,15 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_27,-74.5741345,39.367784,15 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,4,RES3A,3001 -0102_263_28,-74.63412933,39.471339,17 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_28,-74.57356572,39.36447715,17 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_29,-74.68162116,39.49833398,19 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_29,-74.5711275,39.3616505,19 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_3,-74.531321,39.4010965,24 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_3,-74.46858478,39.48150718,24 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_263_30,-74.7118035,39.3725205,21 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_30,-74.57367163,39.35986102,21 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_31,-74.70727714,39.41807567,23 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_263_31,-74.58990584,39.33679283,23 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_263_32,-74.7247205,39.433383,25 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_263_32,-74.58282269,39.34462348,25 N SOVEREIGN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_263_33,-74.735384,39.4331405,27 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_33,-74.57847072,39.34343095,27 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_263_34,-74.75863815,39.4328166,29 N SOVEREIGN AVE,ATLANTIC CITY CITY,17,1908,1,GOV1,3004 -0102_263_34,-74.59321913,39.34772179,29 N SOVEREIGN AVE,ATLANTIC CITY CITY,17,1908,1,RES1,3001 -0102_263_4,-74.7571055,39.4324365,22 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_4,-74.5902029,39.34675316,22 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_5,-74.7546393,39.43350178,20 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_5,-74.58993453,39.35044002,20 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_6,-74.7192915,39.429907,18 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_263_6,-74.57961919,39.34396685,18 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_263_7,-74.7113095,39.419829,16 N MONTPELIER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_263_7,-74.59165873,39.33567485,16 N MONTPELIER AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_263_8,-74.716675,39.400464,14 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_263_8,-74.57701062,39.33949567,14 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_263_9,-74.68112616,39.493673,12 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1908,3,RES1,3001 -0102_263_9,-74.5658125,39.362608,12 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1908,3,RES1,3001 -0102_264_1,-74.618364,39.3742845,3114 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_1,-74.50221442,39.47591335,3114 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_264_10,-74.53898598,39.38578016,16 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_264_10,-74.52549038,39.46551724,16 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_11,-74.541111,39.388711,10 N CHELSEA AVE,ATLANTIC CITY CITY,17,1910,1,GOV1,3004 -0102_264_11,-74.50341231,39.46777329,10 N CHELSEA AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_264_12,-74.535019,39.3910675,8 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_12,-74.50855162,39.46120836,8 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_264_13,-74.5723645,39.369164,6 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_13,-74.52712128,39.44842833,6 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_14,-74.56574272,39.37048796,4 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_264_14,-74.529758,39.4520095,4 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_264_15,-74.5592635,39.3715525,2 N CHELSEA AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_264_15,-74.51213655,39.43761978,2 N CHELSEA AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_264_16,-74.55251753,39.37737066,1 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_16,-74.5091135,39.445798,1 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_17,-74.56129505,39.37288534,3 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1890,2,GOV1,3004 -0102_264_17,-74.510216,39.437905,3 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1890,2,RES1,3001 -0102_264_18,-74.56160788,39.36869738,5 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_264_18,-74.509861,39.450074,5 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_264_19,-74.55527271,39.3784617,7 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_264_19,-74.49446614,39.45700362,7 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_264_2,-74.60865588,39.37738369,3108 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_264_2,-74.5073045,39.493324,3108 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_264_20,-74.54169881,39.3891502,11 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_264_20,-74.4948415,39.4691535,11 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_264_21,-74.53142032,39.38858052,13 N MONTPELIER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_264_21,-74.50200405,39.46761165,13 N MONTPELIER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_264_22,-74.53188051,39.38596383,15 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_264_22,-74.515016,39.4648515,15 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_264_23,-74.532474,39.3991185,17 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_264_23,-74.473377,39.48118983,17 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1910,3,GOV1,3004 -0102_264_3,-74.55293784,39.40362447,30 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_264_3,-74.4604228,39.51172014,30 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_4,-74.60601612,39.38383874,28 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_4,-74.51759341,39.47254864,28 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_264_5,-74.60116808,39.37286873,24 N CHELSEA AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3003 -0102_264_5,-74.4917855,39.473326,24 N CHELSEA AVE,ATLANTIC CITY CITY,17,1910,1,GOV1,3004 -0102_264_7,-74.59716717,39.38402746,22 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_264_7,-74.46440043,39.49582825,22 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_264_8,-74.5533145,39.39110585,20 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_264_8,-74.4557834,39.49169374,20 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_264_9,-74.53625383,39.39739149,18 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_264_9,-74.45280027,39.49050088,18 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_265_1,-74.647763,39.5322505,3123 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_265_1,-74.6017625,39.422016,3123 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_265_3,-74.65148,39.531761,3115 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_265_3,-74.5995235,39.435683,3115 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_265_4,-74.65134,39.5315575,3109 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_265_4,-74.608114,39.4319775,3109 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_265_5,-74.55377034,39.37443783,3101 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_265_5,-74.5132672,39.44371776,3101 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_266_1,-74.56619143,39.36955298,3015 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_266_1,-74.527641,39.449688,3015 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_266_2,-74.5414435,39.3908685,3005 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_266_2,-74.49053776,39.46939197,3005 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_266_3,-74.53386784,39.38891067,3001 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_266_3,-74.496605,39.4690245,3001 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_267_1,-74.5708205,39.4136605,31 N CHELSEA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_267_1,-74.5223335,39.5413,31 N CHELSEA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_267_10,-74.5987017,39.37202789,18 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_267_10,-74.49801199,39.47148494,18 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_267_11,-74.59376671,39.37976107,16 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_267_11,-74.46585548,39.49599837,16 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_267_12,-74.55670562,39.39747467,14 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_267_12,-74.4632835,39.4999355,14 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_267_13,-74.558049,39.3928175,12 N MORRIS AVE,ATLANTIC CITY CITY,17,2017,1,RES1,3001 -0102_267_13,-74.45991118,39.49418355,12 N MORRIS AVE,ATLANTIC CITY CITY,17,2017,1,RES1,3001 -0102_267_14,-74.53923794,39.38561515,10 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_267_14,-74.45577057,39.47473872,10 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_267_15,-74.53395431,39.38669729,8 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_267_15,-74.52096633,39.45534201,8 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_267_17,-74.533055,39.3870655,7 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_267_17,-74.5029875,39.4665745,7 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_267_18,-74.55179765,39.39018802,9 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_267_18,-74.4572195,39.4746915,9 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_267_19,-74.55756988,39.39748059,15 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_267_19,-74.44807833,39.49619835,15 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_267_2,-74.5726675,39.412904,3012 ARCTIC AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_267_2,-74.53393214,39.30556406,3012 ARCTIC AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_267_20,-74.59706613,39.38083272,17 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_267_20,-74.4725095,39.49075417,17 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_267_21,-74.5986407,39.3732779,19 N CHELSEA AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_267_21,-74.4944205,39.4773225,19 N CHELSEA AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_267_22,-74.6183143,39.37375267,21 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_267_22,-74.503643,39.47287,21 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_267_23,-74.59187538,39.39755113,23 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_267_23,-74.48934985,39.49866453,23 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_267_24,-74.5538905,39.402267,25 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,GOV1,3004 -0102_267_24,-74.4863415,39.5314955,25 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_267_25,-74.561807,39.414942,27 N CHELSEA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_267_25,-74.4907326,39.52608027,27 N CHELSEA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_267_3,-74.5545761,39.42610967,32 N MORRIS AVE,ATLANTIC CITY CITY,45,1950,2,RES1,3001 -0102_267_3,-74.53611544,39.31401749,32 N MORRIS AVE,ATLANTIC CITY CITY,45,1950,2,RES1,3001 -0102_267_4,-74.5719515,39.413022,30 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_267_4,-74.53426934,39.30641625,30 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_267_5,-74.56050072,39.41386888,28 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_267_5,-74.50505828,39.52749196,28 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_267_6,-74.5641775,39.4162975,26 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_267_6,-74.52536657,39.50722503,26 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_267_7,-74.55756752,39.40673782,15 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_267_7,-74.48670488,39.53651108,15 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_267_8,-74.592913,39.394879,22 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_267_8,-74.4971786,39.49752167,22 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_267_9,-74.61689959,39.37238026,20 N MORRIS AVE,ATLANTIC CITY CITY,45,1905,2,GOV1,3004 -0102_267_9,-74.509505,39.475023,20 N MORRIS AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_268_1,-74.61581486,39.36349106,30 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_1,-74.43246344,39.36996325,30 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_10,-74.6030255,39.3457575,4 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_10,-74.41410221,39.37120108,4 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_11,-74.59594076,39.34406506,2 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_268_11,-74.39226654,39.39409076,2 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1910,4,GOV1,3004 -0102_268_12,-74.5925803,39.35124736,7 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_12,-74.3812894,39.39568921,7 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_13,-74.59008314,39.34809531,9 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_268_13,-74.38751392,39.39405835,9 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_268_14,-74.59641492,39.34603235,11 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_268_14,-74.398301,39.3948805,11 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_268_15,-74.60077366,39.37925933,15 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_268_15,-74.4951705,39.4900875,15 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_268_16,-74.60454519,39.38878775,17 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_268_16,-74.53102396,39.49764541,17 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_268_17,-74.567671,39.406022,19 N MORRIS AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_268_17,-74.5062265,39.517072,19 N MORRIS AVE,ATLANTIC CITY CITY,17,1930,1,GOV1,3004 -0102_268_18,-74.559117,39.41497,21 N MORRIS AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_268_18,-74.4974325,39.526429,21 N MORRIS AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_268_19,-74.558974,39.414234,23 N MORRIS AVE,ATLANTIC CITY CITY,45,1923,3,RES1,3001 -0102_268_19,-74.48933432,39.52413885,23 N MORRIS AVE,ATLANTIC CITY CITY,45,1923,3,RES1,3001 -0102_268_20,-74.5678455,39.4133655,25 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_268_20,-74.53514257,39.30655835,25 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_268_21,-74.545603,39.4353875,27 N MORRIS AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_268_21,-74.53568313,39.30401224,27 N MORRIS AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_268_3,-74.58356953,39.36263721,24 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_3,-74.4084605,39.379771,24 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_6,-74.585188,39.3577045,18 N BRIGHTON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_268_6,-74.40306754,39.38126179,18 N BRIGHTON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_268_8,-74.61250099,39.35048948,14 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_268_8,-74.41825188,39.36926117,14 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_268_9,-74.60009203,39.34412832,6 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_268_9,-74.418443,39.3694955,6 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_1,-74.5317625,39.38591716,2935 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_1,-74.51637389,39.46209485,2935 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_2,-74.5496555,39.3862905,2925 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_2,-74.48428363,39.47793667,2925 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_269_3,-74.7573205,39.429894,2919 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_3,-74.60748534,39.34693194,2919 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_4,-74.75868323,39.42969853,2915 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_4,-74.59942284,39.34417278,2915 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_5,-74.596009,39.340526,2903 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_5,-74.39686723,39.38675075,2903 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_6,-74.58974052,39.34990963,2901 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_269_6,-74.38402375,39.39410817,2901 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_27_1,-74.48237966,39.35351041,3212 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_27_1,-74.74324358,39.63269414,3212 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_27_2,-74.48181008,39.35188717,3200 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_27_2,-74.7675475,39.606141,3200 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,IND2,3002 -0102_27_5,-74.458988,39.354556,108 S MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_27_5,-74.72782915,39.58741145,108 S MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_27_6,-74.4603145,39.3538965,3211 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_27_6,-74.79107942,39.59675458,3211 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_1,-74.63156337,39.31670209,33 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_1,-74.40782706,39.39252768,33 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_10,-74.61557991,39.36367028,28 N STENTON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_270_10,-74.4369955,39.370231,28 N STENTON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_270_11,-74.5615245,39.526518,26 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_270_11,-74.5726425,39.4291195,26 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_270_12,-74.8728905,39.49626,24 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_12,-74.5723415,39.427576,24 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_13,-74.534217,39.377532,22 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_270_13,-74.5040305,39.4444815,22 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_270_14,-74.5315595,39.37992783,20 N STENTON PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_270_14,-74.49020717,39.44108284,20 N STENTON PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_270_15,-74.53996515,39.38390363,18 N STENTON PL,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_270_15,-74.4645,39.467205,18 N STENTON PL,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_270_16,-74.54453922,39.37282464,12 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_270_16,-74.41468736,39.50369839,12 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_270_17,-74.534048,39.376413,2815 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_17,-74.49947754,39.43264864,2815 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_2,-74.643485,39.3251255,2836 ARCTIC AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_270_2,-74.4003925,39.390892,2836 ARCTIC AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_270_22,-74.75945755,39.36333407,2825 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_22,-74.50225006,39.43476076,2825 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_24,-74.786798,39.3131385,2829 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_24,-74.48817883,39.42888424,2829 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_25,-74.61464901,39.34861875,1 N BRIGHTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_270_25,-74.40143833,39.38487451,1 N BRIGHTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_270_26,-74.61027409,39.34719589,3 N BRIGHTON AVE,ATLANTIC CITY CITY,17,1910,1,RES2,3005 -0102_270_26,-74.4006955,39.38292,3 N BRIGHTON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_270_27,-74.58168711,39.35843424,5 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_27,-74.40559593,39.38208932,5 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_28,-74.584021,39.35736,7 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_28,-74.40530914,39.3812569,7 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_29,-74.587707,39.3553495,9 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_29,-74.40882078,39.38032255,9 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_3,-74.6204543,39.33836357,2834 ARCTIC AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_270_3,-74.36658633,39.408372,2834 ARCTIC AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_270_30,-74.57951118,39.36246702,17 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_30,-74.42329251,39.37620684,17 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_31,-74.59271328,39.36668979,19 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_31,-74.42464068,39.37162843,19 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_32,-74.60244341,39.36554623,21 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_270_32,-74.429388,39.371519,21 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_270_33,-74.61201021,39.36719882,23 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_33,-74.44285252,39.37252385,23 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_270_4,-74.640526,39.5295895,2832 ARCTIC AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_270_4,-74.59165756,39.42401564,2832 ARCTIC AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_270_5,-74.6357776,39.34112558,2830 ARCTIC AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_270_5,-74.37155568,39.40580512,2830 ARCTIC AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_270_6,-74.58154789,39.47352461,42 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_270_6,-74.58400572,39.36741247,42 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_270_7,-74.53270227,39.49781698,40 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_7,-74.59856415,39.34292861,40 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_270_8,-74.61971008,39.33912618,38 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_270_8,-74.3656609,39.40919147,38 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_270_9,-74.622979,39.3141,30 N STENTON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_270_9,-74.4341305,39.369756,30 N STENTON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_271_1,-74.625299,39.4397355,43 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_1,-74.640134,39.340358,43 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_10,-74.54780033,39.5451255,24 N IOWA AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_271_10,-74.58222154,39.41355481,24 N IOWA AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_271_11,-74.58798156,39.52116735,22 N IOWA AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_271_11,-74.5782574,39.41807739,22 N IOWA AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_271_12,-74.57474091,39.53019449,20 N IOWA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_271_12,-74.5702905,39.428602,20 N IOWA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_271_13,-74.54277567,39.5324505,18 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_271_13,-74.57461407,39.4198868,18 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_271_14,-74.55168505,39.38463734,16 N IOWA AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_271_14,-74.49004603,39.44484677,16 N IOWA AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_271_15,-74.53362562,39.37815737,12 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_15,-74.49733253,39.44009566,12 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_16,-74.55007604,39.36928631,10 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_16,-74.48610194,39.43975104,10 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_17,-74.55110682,39.37179698,8 N IOWA AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_271_17,-74.4394875,39.4874095,8 N IOWA AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_271_18,-74.54995649,39.37324433,2801 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_18,-74.52628286,39.42928647,2801 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_19,-74.54377317,39.37580601,2803 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_19,-74.527935,39.4238426,2803 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_2,-74.63327079,39.45425857,42 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_2,-74.65504569,39.34783518,42 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_20,-74.547475,39.37608995,2805 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_20,-74.51883111,39.42521692,2805 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_21,-74.8123521,39.3680461,2809 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_21,-74.5077285,39.4341875,2809 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_22,-74.5398745,39.3744365,3 N STENTON PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_271_22,-74.50020663,39.42878755,3 N STENTON PL,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_271_23,-74.550136,39.374232,9 N STENTON PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_271_23,-74.509956,39.4357025,9 N STENTON PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_271_24,-74.5438675,39.37183,11 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_24,-74.42639088,39.49298876,11 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_25,-74.54817138,39.37073983,15 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_271_25,-74.4868815,39.4402995,15 N STENTON PL,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_271_26,-74.536795,39.3817835,17 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_26,-74.4850895,39.461254,17 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_27,-74.549638,39.385128,19 N STENTON PL,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_271_27,-74.50716054,39.43865034,19 N STENTON PL,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_271_28,-74.55217937,39.52882988,21 N STENTON PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_271_28,-74.5746595,39.426692,21 N STENTON PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_271_29,-74.5747495,39.53389,23 N STENTON PL #B,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_271_29,-74.57130887,39.42896008,23 N STENTON PL #B,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_271_30,-74.59878,39.51912,23 N STENTON PL #A,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_271_30,-74.59488254,39.40320933,23 N STENTON PL #A,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_271_31,-74.60048962,39.5222691,25 N STENTON PL,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_271_31,-74.57900288,39.41394008,25 N STENTON PL,ATLANTIC CITY CITY,45,1910,3,GOV1,3004 -0102_271_32,-74.55574182,39.55023082,27 N STENTON PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_32,-74.59048371,39.41472605,27 N STENTON PL,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_271_33,-74.6618665,39.5183805,29 N STENTON PL,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_271_33,-74.613093,39.4100115,29 N STENTON PL,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_271_34,-74.6389535,39.52352,31 N STENTON PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_34,-74.5758958,39.41938953,31 N STENTON PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_35,-74.5342795,39.497627,37 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_35,-74.60889727,39.34359997,37 N STENTON PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_36,-74.57520029,39.47873871,39 N STENTON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_271_36,-74.58472568,39.3603271,39 N STENTON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_271_37,-74.60667315,39.49240928,41 N STENTON PL,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_271_37,-74.60512526,39.36492454,41 N STENTON PL,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_271_4,-74.60646221,39.48723624,38 N IOWA AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_271_4,-74.62797941,39.31585673,38 N IOWA AVE,ATLANTIC CITY CITY,45,1910,4,GOV1,3004 -0102_271_5,-74.605042,39.477456,36 N IOWA AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_271_5,-74.597088,39.3621995,36 N IOWA AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_271_6,-74.54521379,39.49910704,34 N IOWA AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_271_6,-74.587366,39.355981,34 N IOWA AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_271_7,-74.62042643,39.52629687,30 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_7,-74.58531286,39.42250351,30 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_271_8,-74.6612682,39.5173871,28 N IOWA AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_271_8,-74.57917768,39.42419255,28 N IOWA AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_271_9,-74.63362,39.504087,26 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_271_9,-74.60474588,39.40742478,26 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_272_1,-74.75584885,39.42986843,43 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_272_1,-74.5523655,39.3730585,43 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_272_2,-74.63093005,39.48112767,39 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_272_2,-74.6663525,39.3622865,39 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_272_3,-74.8087435,39.37948,2722 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_272_3,-74.55022197,39.37174367,2722 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_272_4,-74.8151215,39.411818,2720 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_272_4,-74.53861965,39.38248716,2720 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_272_5,-74.84243281,39.41696304,2718 ARCTIC AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_272_5,-74.5447285,39.3844645,2718 ARCTIC AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_272_7,-74.72664936,39.45266384,2716 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_272_7,-74.55134168,39.38325448,2716 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_272_8,-74.74837904,39.44544729,2714 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_272_8,-74.5717055,39.3737135,2714 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_272_9,-74.70780575,39.42176247,27 WINE ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_272_9,-74.55150632,39.3766165,27 WINE ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_273_1,-74.75354008,39.45109835,2710 ARCTIC AVE #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_273_1,-74.53861873,39.38720688,2710 ARCTIC AVE #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_273_10,-74.757454,39.4323965,36 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_10,-74.55292278,39.37445375,36 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_273_11,-74.7139025,39.41722,34 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_273_11,-74.539673,39.376214,34 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_273_12,-74.67783814,39.48720605,32 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_273_12,-74.7529765,39.299192,32 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_273_13,-74.70626289,39.44531902,30 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_273_13,-74.63509451,39.36270083,30 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_273_14,-74.64576325,39.46723478,24 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_14,-74.63111164,39.35321896,24 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_15,-74.66677306,39.46019926,2715 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_15,-74.63540873,39.36081893,2715 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_18,-74.54762545,39.54846782,10 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_18,-74.5896217,39.41534205,10 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_19,-74.5846375,39.5360165,2701 ATLANTIC AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_273_19,-74.5796442,39.41596073,2701 ATLANTIC AVE,ATLANTIC CITY CITY,,1900,1,GOV1,3004 -0102_273_2,-74.82232094,39.60570825,2710 ARCTIC AVE #A,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_273_2,-74.636378,39.4274345,2710 ARCTIC AVE #A,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_273_20,-74.58760966,39.52111097,2707 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_20,-74.57738434,39.41652796,2707 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_24,-74.5371775,39.381554,2725 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_24,-74.47996267,39.45498953,2725 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_3,-74.80700113,39.6282175,2708 ARCTIC AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_273_3,-74.62659913,39.43587772,2708 ARCTIC AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_273_34,-74.58435891,39.48628814,27 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3004 -0102_273_34,-74.58135047,39.36098751,27 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3002 -0102_273_35,-74.605555,39.4767405,29 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_273_35,-74.6004185,39.3673995,29 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_273_36,-74.606006,39.491643,31 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_273_36,-74.6129845,39.3673255,31 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_273_37,-74.605383,39.501594,33 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_273_37,-74.62207644,39.3134962,33 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_273_39,-74.6276435,39.4376985,32 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_39,-74.63751296,39.34293683,32 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_4,-74.800106,39.6342795,2706 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_4,-74.62232135,39.43352799,2706 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_40,-74.60066135,39.50146632,30 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_40,-74.63107132,39.31601369,30 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_273_41,-74.60554265,39.49054269,28 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_41,-74.63623566,39.30768355,28 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_42,-74.60342647,39.48456373,26 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_42,-74.597336,39.36553825,26 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_43,-74.577102,39.482792,24 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_43,-74.57917066,39.36035054,24 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_44,-74.55228727,39.50299404,22 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_44,-74.59091934,39.35698895,22 BOWLER TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_47,-74.64308816,39.43668377,40 WINE ST,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_273_47,-74.65053903,39.350369,40 WINE ST,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_273_48,-74.62157269,39.46285878,38 WINE ST,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_273_48,-74.6243945,39.3529755,38 WINE ST,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_273_5,-74.74697963,39.44717595,2706 ARCTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_5,-74.55481683,39.37141768,2706 ARCTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_52,-74.62400651,39.45201495,29 MARSHALL AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_273_52,-74.64227034,39.34069292,29 MARSHALL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_273_53,-74.62414775,39.46491308,31 MARSHALL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_273_53,-74.62579311,39.35393738,31 MARSHALL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_273_54,-74.69129017,39.4433197,33 MARSHALL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_273_54,-74.62596027,39.3604726,33 MARSHALL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_273_55,-74.6747655,39.48236,35 MARSHALL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_273_55,-74.75353287,39.29928976,35 MARSHALL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_273_56,-74.71158047,39.42044254,37 MARSHALL AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_273_56,-74.548293,39.376115,37 MARSHALL AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_273_57,-74.81342782,39.40100816,39 MARSHALL AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_273_57,-74.54050018,39.38470647,39 MARSHALL AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_273_6,-74.79808117,39.63202201,2702 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_6,-74.620436,39.432984,2702 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_7,-74.80618868,39.63542069,2700 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_7,-74.63227862,39.4333602,2700 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_273_8,-74.846005,39.42465,40 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_8,-74.5483075,39.383851,40 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_9,-74.819798,39.3683775,38 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_273_9,-74.54566366,39.37094648,38 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_274_1,-74.6215788,39.43422834,33 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_1,-74.59671471,39.31402957,33 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_10,-74.4941935,39.34022,2606 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_274_10,-74.83012967,39.60155602,2606 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_274_11,-74.487688,39.3389025,2604 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_274_11,-74.84958938,39.59805999,2604 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_274_15,-74.48003929,39.34909536,44 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_15,-74.857379,39.5440265,44 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_2,-74.621838,39.4321835,2638 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_2,-74.59412352,39.31320566,2638 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_274_21,-74.71789965,39.46029617,20 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_21,-74.56889421,39.37124418,20 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_274_22,-74.74907615,39.45106177,18 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_22,-74.5581067,39.37176897,18 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_23,-74.806604,39.379215,10 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_23,-74.5476392,39.37106075,10 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_24,-74.7798795,39.383616,8 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_24,-74.53271153,39.37660633,8 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_25,-74.6906732,39.44623895,8 N TEXAS AVE RR,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_274_25,-74.63448335,39.36315878,8 N TEXAS AVE RR,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_274_26,-74.6279835,39.485941,6 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_26,-74.67551826,39.35684938,6 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_27,-74.6512335,39.454673,4 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_27,-74.63942175,39.35973905,4 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_28,-74.6269705,39.4395885,2601 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_28,-74.63798399,39.33917355,2601 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_274_3,-74.63657891,39.43330499,2636 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_274_3,-74.60149822,39.31715763,2636 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_30,-74.60428382,39.5002337,2605 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_30,-74.63371349,39.31748692,2605 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_31,-74.68427819,39.44170457,4 CHURCH ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_31,-74.62540146,39.36295235,4 CHURCH ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_33,-74.676929,39.4982705,11 CHURCH ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_274_33,-74.7662685,39.3499905,11 CHURCH ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_274_34,-74.709891,39.4349715,13 CHURCH ST,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_34,-74.5481365,39.3760465,13 CHURCH ST,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_4,-74.46301916,39.34979551,2634 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_274_4,-74.6457525,39.531402,2634 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_43,-74.48594983,39.34021155,2651 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_43,-74.70813252,39.56715839,2651 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_5,-74.47983602,39.34878767,2616 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_5,-74.86453867,39.56641851,2616 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_6,-74.48107182,39.34600752,2614 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_6,-74.7438875,39.5889085,2614 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_274_8,-74.48349831,39.34307835,2610 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_8,-74.77509855,39.62052832,2610 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_274_9,-74.4574545,39.352477,2608 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_274_9,-74.79214492,39.63502922,2608 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_275_1,-74.5842675,39.4463735,2524 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_275_1,-74.60078483,39.31975341,2524 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_275_10,-74.50766767,39.33624746,2516 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_275_10,-74.80208458,39.63763065,2516 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_275_12,-74.54848856,39.46367628,44 N BELLEVUE AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_275_12,-74.5795731,39.33018939,44 N BELLEVUE AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_275_14,-74.48020129,39.34706097,40 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_14,-74.87605819,39.56705216,40 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_15,-74.471056,39.3451895,38 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_15,-74.8828025,39.5367075,38 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_16,-74.47917631,39.34013706,36 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_275_16,-74.80473414,39.53625232,36 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_17,-74.4744335,39.3422485,34 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_275_17,-74.64045915,39.62152383,34 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_275_18,-74.46291383,39.347138,32 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_275_18,-74.66723792,39.56034736,32 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_19,-74.45807767,39.349165,30 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_19,-74.69492881,39.51669826,30 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_20,-74.45787607,39.35108817,28 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_20,-74.64580587,39.53172857,28 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_275_21,-74.63296855,39.43353366,26 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_275_21,-74.60255262,39.30862477,26 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_275_22,-74.59180593,39.34931433,24 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_275_22,-74.530508,39.387323,24 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_275_23,-74.61433068,39.3747045,22 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_275_23,-74.50968185,39.40656618,22 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_275_25,-74.57887233,39.38159443,18 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_275_25,-74.508545,39.4044795,18 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_275_26,-74.593056,39.3706505,16 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_275_26,-74.5042555,39.4071475,16 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_275_27,-74.72386569,39.45718903,2517 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_275_27,-74.5658979,39.36951663,2517 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_275_28,-74.72807434,39.44023854,9 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_275_28,-74.552038,39.38377,9 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_275_29,-74.717391,39.4547895,11 N TEXAS AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_275_29,-74.5733977,39.3698891,11 N TEXAS AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_275_3,-74.46825467,39.34476983,35 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_275_3,-74.82499393,39.56716471,35 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_275_31,-74.75804488,39.44589919,15 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_275_31,-74.53883,39.386999,15 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_275_32,-74.797357,39.637202,17 N TEXAS AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_275_32,-74.62619206,39.43508156,17 N TEXAS AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_275_33,-74.80859303,39.63569594,19 N TEXAS AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_275_33,-74.6385215,39.434158,19 N TEXAS AVE,ATLANTIC CITY CITY,45,1930,3,GOV1,3004 -0102_275_35,-74.62564827,39.43452747,23 N TEXAS AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_275_35,-74.5960205,39.3161985,23 N TEXAS AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_275_36,-74.62772963,39.43336445,25 N TEXAS AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_275_36,-74.59519984,39.31339844,25 N TEXAS AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_275_37,-74.45878569,39.34858134,27 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_275_37,-74.67004283,39.5433819,27 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_275_38,-74.46870205,39.34249368,29 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_275_38,-74.69332,39.5928255,29 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_275_39,-74.48418117,39.341777,31 N TEXAS AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_275_39,-74.69647968,39.61948402,31 N TEXAS AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_275_4,-74.45233902,39.35646485,2522 ARCTIC AVE RR #B,ATLANTIC CITY CITY,27,1900,2,RES6,3001 -0102_275_4,-74.79325098,39.61681591,2522 ARCTIC AVE RR #B,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_275_41,-74.48218335,39.33760034,33 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_275_41,-74.82120102,39.53757918,33 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_275_5,-74.4832005,39.3536005,2522 ARCTIC AVE RR #A,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_275_5,-74.79494203,39.60015455,2522 ARCTIC AVE RR #A,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_275_6,-74.816979,39.6333515,2522 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_275_6,-74.6483054,39.43198169,2522 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_275_7,-74.90307716,39.49152907,2520 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_275_7,-74.541352,39.4574805,2520 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_275_8,-74.68939108,39.41756784,2520 ARCTIC AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_275_8,-74.5853124,39.32562816,2520 ARCTIC AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_275_9,-74.90818155,39.49316647,2518 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_275_9,-74.539495,39.46898,2518 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_276_1,-74.5915745,39.3713375,2507 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_276_1,-74.50038502,39.40814684,2507 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_276_2,-74.58895496,39.37017696,2501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_276_2,-74.50376984,39.4070441,2501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_277_1,-74.63062629,39.34888083,22 N FLORIDA AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_277_1,-74.50905646,39.40368377,22 N FLORIDA AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_277_10,-74.60279744,39.36853778,21 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_277_10,-74.51803515,39.40716598,21 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_277_11,-74.59293783,39.34411418,23 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_277_11,-74.52240291,39.38731568,23 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_277_12,-74.5974358,39.34268518,25 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_277_12,-74.52661086,39.38676287,25 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_277_13,-74.606148,39.350318,27 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_13,-74.52704952,39.38558466,27 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,GOV1,3004 -0102_277_14,-74.59412846,39.35852899,29 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,GOV1,3004 -0102_277_14,-74.51520781,39.40095119,29 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_15,-74.57579718,39.36704672,31 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_15,-74.51717429,39.39498633,31 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_16,-74.57827481,39.36633939,33 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_16,-74.516009,39.3939665,33 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_17,-74.60039418,39.36683642,35 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_277_17,-74.4850675,39.432875,35 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_277_2,-74.6392325,39.338303,20 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_277_2,-74.50407358,39.40916106,20 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_277_3,-74.5995255,39.3675915,16 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_277_3,-74.48500233,39.4349385,16 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_277_4,-74.61074755,39.33928657,14 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_277_4,-74.52816392,39.38586467,14 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_277_6,-74.5983255,39.373634,10 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_277_6,-74.51723414,39.40808497,10 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES4,3001 -0102_277_7,-74.5859755,39.380037,8 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_277_7,-74.49983814,39.41606576,8 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_277_8,-74.59522867,39.38329996,13 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_8,-74.50377718,39.41452352,13 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_9,-74.59386541,39.37941223,19 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_277_9,-74.51759111,39.41017933,19 N BELLEVUE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_278_1,-74.393036,39.387539,2512 ARCTIC AVE,ATLANTIC CITY CITY,49,1950,3,RES1,3001 -0102_278_1,-74.89082586,39.48165797,2512 ARCTIC AVE,ATLANTIC CITY CITY,49,1950,3,COM1,3004 -0102_278_11,-74.66956482,39.35531944,32 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_278_11,-74.49333655,39.42074199,32 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_278_12,-74.6315685,39.3622765,30 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_278_12,-74.5233655,39.4172775,30 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_278_13,-74.6242244,39.36260113,28 N FLORIDA AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_278_13,-74.52102933,39.40634683,28 N FLORIDA AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_278_14,-74.624411,39.352461,26 N FLORIDA AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_278_14,-74.51033649,39.40750684,26 N FLORIDA AVE,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_278_15,-74.6382615,39.33667142,37 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_278_15,-74.50191533,39.40889998,37 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_278_16,-74.63398534,39.350567,39 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_278_16,-74.50489211,39.40700533,39 N BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_278_19,-74.6871588,39.35609519,45 N BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_278_19,-74.5076685,39.4192475,45 N BELLEVUE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_278_2,-74.40888557,39.38147799,2510 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_278_2,-74.92867483,39.48189649,2510 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_278_21,-74.75408519,39.30154848,49 N BELLEVUE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_278_21,-74.4906515,39.4306895,49 N BELLEVUE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_278_3,-74.42300401,39.37173884,2508 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_278_3,-74.91962958,39.51376771,2508 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_278_4,-74.40094015,39.39130871,2506 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_278_4,-74.9383485,39.5205315,2506 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,3,RES3A,3001 -0102_278_5,-74.36503282,39.40649207,2504 ARCTIC AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_278_5,-74.95665405,39.51235276,2504 ARCTIC AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_278_6,-74.37136854,39.40736718,2502 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_278_6,-74.95274826,39.51887226,2502 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_278_7,-74.37360465,39.40429542,2500 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,IND1,3004 -0102_278_7,-74.94048257,39.52305467,2500 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_278_8,-74.40544821,39.38013734,38 N FLORIDA AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_278_8,-74.88974369,39.51046056,38 N FLORIDA AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_278_9,-74.37502544,39.39849635,36 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_278_9,-74.80602665,39.63182856,36 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_279_10,-74.88715284,39.59769502,2408 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_279_10,-74.60420244,39.49981615,2408 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_279_11,-74.79421714,39.64268726,2406 ARCTIC AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_279_11,-74.69348706,39.44224219,2406 ARCTIC AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_279_13,-74.79446622,39.67361457,2402 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_13,-74.676411,39.496534,2402 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_14,-74.79987541,39.64146678,2400 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_279_14,-74.76729,39.385411,2400 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_279_18,-74.36935525,39.40266233,2406 AUBURN TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_18,-74.9678935,39.52635,2406 AUBURN TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_19,-74.35739587,39.41298486,2402 AUBURN TERR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_19,-74.72326849,39.64773978,2402 AUBURN TERR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_2,-74.93394204,39.52014381,2420 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_279_2,-74.53695489,39.47387413,2420 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_279_20,-74.37432279,39.41245284,2400 AUBURN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_20,-74.78791749,39.64131333,2400 AUBURN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_22,-74.95472569,39.51225031,36 N GEORGIA AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_279_22,-74.5553255,39.4750505,36 N GEORGIA AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_279_23,-74.926858,39.510136,30 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_279_23,-74.60093336,39.44217002,30 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_279_24,-74.362209,39.415829,30 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_24,-74.88778116,39.5630932,30 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_25,-74.3689185,39.404715,30 N GEORGIA AVE RR #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_25,-74.944458,39.523266,30 N GEORGIA AVE RR #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_26,-74.37028081,39.41386198,28 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_279_26,-74.7906096,39.64645097,28 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_279_27,-74.3632255,39.4153085,26 N GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_27,-74.94524053,39.54088468,26 N GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_28,-74.4030475,39.386741,26 N GEORGIA AVE RR #1,ATLANTIC CITY CITY,17,1920,1,RES3A,3001 -0102_279_28,-74.9447275,39.518562,26 N GEORGIA AVE RR #1,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_279_29,-74.428012,39.3712265,26 N GEORGIA AVE RR #2,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_29,-74.9045828,39.53667854,26 N GEORGIA AVE RR #2,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_3,-74.94170469,39.51728169,2418 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_3,-74.5545065,39.4782835,2418 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_30,-74.4218715,39.37227,26 N GEORGIA AVE RR #3,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_279_30,-74.9256455,39.5083335,26 N GEORGIA AVE RR #3,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_31,-74.3777765,39.3958545,26 N GEORGIA AVE RR #4,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_279_31,-74.91156855,39.49743545,26 N GEORGIA AVE RR #4,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_279_32,-74.37900581,39.39966732,26 N GEORGIA AVE RR #5,ATLANTIC CITY CITY,33,1920,1,COM1,3004 -0102_279_32,-74.92441619,39.47519425,26 N GEORGIA AVE RR #5,ATLANTIC CITY CITY,33,1920,1,RES3A,3001 -0102_279_33,-74.9244015,39.504114,24 N GEORGIA AVE 1/3,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_279_33,-74.54835019,39.46412668,24 N GEORGIA AVE 1/3,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_34,-74.39206505,39.38749188,24 N GEORGIA AVE RR,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_279_34,-74.8843115,39.4778945,24 N GEORGIA AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_279_35,-74.44138,39.371954,24 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_35,-74.92924417,39.51897427,24 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_36,-74.3796674,39.39740134,22 N GEORGIA AVE,ATLANTIC CITY CITY,45,1935,2,RES1,3001 -0102_279_36,-74.915882,39.488557,22 N GEORGIA AVE,ATLANTIC CITY CITY,45,1935,2,RES1,3001 -0102_279_37,-74.91929153,39.52002917,22 N GEORGIA AVE RR,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_279_37,-74.5563475,39.466778,22 N GEORGIA AVE RR,ATLANTIC CITY CITY,45,1910,4,RES3A,3004 -0102_279_38,-74.37569916,39.399296,18 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_279_38,-74.810752,39.633612,18 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_279_39,-74.6970195,39.35665567,16 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_279_39,-74.4924704,39.43452293,16 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_279_41,-74.6215,39.365487,16 N GEORGIA AVE RR #C,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_279_41,-74.51841148,39.40276317,16 N GEORGIA AVE RR #C,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_279_42,-74.62865137,39.35248656,16 N GEORGIA AVE RR #D,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_279_42,-74.5017695,39.411173,16 N GEORGIA AVE RR #D,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_279_43,-74.63943821,39.34414385,14 N GEORGIA AVE RR #D,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_279_43,-74.50674281,39.40248435,14 N GEORGIA AVE RR #D,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_279_44,-74.63364021,39.35867947,14 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_44,-74.5150105,39.4030285,14 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_45,-74.63435926,39.36042855,14 N GEORGIA AVE,ATLANTIC CITY CITY,,1900,2,RES1,3001 -0102_279_45,-74.49457592,39.42601335,14 N GEORGIA AVE,ATLANTIC CITY CITY,,1900,2,RES1,3001 -0102_279_46,-74.6323545,39.3662365,12 N GEORGIA AVE,ATLANTIC CITY CITY,,1900,3,RES1,3001 -0102_279_46,-74.52084656,39.41838105,12 N GEORGIA AVE,ATLANTIC CITY CITY,,1900,3,RES1,3001 -0102_279_47,-74.63309104,39.35042984,2401 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_47,-74.50767168,39.40597702,2401 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_279_48,-74.63160343,39.35121285,2405 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_48,-74.50284825,39.40814633,2405 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_279_49,-74.598454,39.3622055,2409 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_49,-74.50923253,39.41061218,2409 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_279_53,-74.6082127,39.34834748,2419 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_53,-74.5165909,39.40156969,2419 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_54,-74.594737,39.365908,2421 ATLANTIC AVE RR #A,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_54,-74.5206155,39.396157,2421 ATLANTIC AVE RR #A,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_279_55,-74.60554516,39.36547504,2421 ATLANTIC AVE RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_55,-74.48336792,39.43174369,2421 ATLANTIC AVE RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_56,-74.610393,39.3651415,2421 ATLANTIC AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_279_56,-74.49997268,39.41003402,2421 ATLANTIC AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_279_57,-74.59360647,39.3655902,2425 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_57,-74.52580015,39.39376817,2425 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_58,-74.5917235,39.380175,2435 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_279_58,-74.5030335,39.41164,2435 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_59,-74.59627238,39.34365652,7 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_59,-74.52309581,39.38722912,7 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_60,-74.60663315,39.34956139,9 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_60,-74.52506768,39.38529307,9 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_61,-74.59373591,39.35784319,9 N FLORIDA AVE RR,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_279_61,-74.51360048,39.40021434,9 N FLORIDA AVE RR,ATLANTIC CITY CITY,45,1900,3,COM1,3004 -0102_279_63,-74.6340935,39.36466998,17 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_279_63,-74.5240165,39.4174935,17 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_279_64,-74.64718144,39.35235631,21 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_64,-74.49313576,39.42174229,21 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_66,-74.635829,39.3620785,23 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_66,-74.5247605,39.4120335,23 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,COM3,3004 -0102_279_67,-74.78348836,39.31333281,23 N FLORIDA AVE RR,ATLANTIC CITY CITY,16,1900,1,RES4,3002 -0102_279_67,-74.4925455,39.430508,23 N FLORIDA AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_279_68,-74.908835,39.5150875,25 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_279_68,-74.56045395,39.45805181,25 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_69,-74.3964045,39.388353,27 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_69,-74.8887565,39.456746,27 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES3B,3001 -0102_279_7,-74.94056008,39.5217352,2412 ARCTIC AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_279_7,-74.57113953,39.47521721,2412 ARCTIC AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_279_70,-74.50950453,39.33610523,29 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_70,-74.81168,39.63708667,29 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_71,-74.3850295,39.39785567,29 N FLORIDA AVE RR #B,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_279_71,-74.8895705,39.4988005,29 N FLORIDA AVE RR #B,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_279_72,-74.40814909,39.37829543,29 N FLORIDA AVE RR #A,ATLANTIC CITY CITY,27,1920,2,RES1,3002 -0102_279_72,-74.925482,39.510325,29 N FLORIDA AVE RR #A,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_279_74,-74.38374815,39.39892034,31 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_74,-74.91873476,39.48151845,31 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_279_75,-74.38223802,39.39434817,33 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_75,-74.928468,39.482269,33 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_76,-74.42199882,39.36929533,35 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_76,-74.9088545,39.5378055,35 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_279_8,-74.93454891,39.51780453,2409 AUBURN TERR,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_279_8,-74.53984063,39.47315628,2409 AUBURN TERR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_9,-74.95379467,39.538853,2410 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_279_9,-74.576824,39.4814415,2410 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_28_1,-74.55903092,39.44386392,3101 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_28_1,-74.590778,39.3200695,3101 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_1,-74.41823884,39.36746849,2326 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_280_1,-74.8400415,39.379496,2326 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_280_14,-74.46160343,39.49194431,2306 ARCTIC AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_280_14,-74.50000567,39.33298298,2306 ARCTIC AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_280_17,-74.45239342,39.50039744,2304 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_17,-74.50477958,39.33166316,2304 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_18,-74.4986405,39.333612,2300 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_18,-74.79780158,39.46329728,2300 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_19,-74.7925035,39.313729,36 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,1920,1,RES3A,3001 -0102_280_19,-74.492041,39.4290205,36 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_280_2,-74.43086998,39.36527515,2324 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_2,-74.72475878,39.45226695,2324 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_280_20,-74.47351132,39.48642561,34 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_280_20,-74.49817134,39.3336055,34 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_280_21,-74.529219,39.4590235,32 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_280_21,-74.52213127,39.31405863,32 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_280_22,-74.4917075,39.3330585,30 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3002 -0102_280_22,-74.75139243,39.44626148,30 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1920,2,RES3A,3001 -0102_280_24,-74.442002,39.3681255,20 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_280_24,-74.74858268,39.45011843,20 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_26,-74.82089425,39.64693949,10 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_26,-74.75612523,39.4298174,10 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_27,-74.8045985,39.6441265,16 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_27,-74.71822257,39.38630175,16 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_28,-74.4047365,39.3939465,2314 RUFFU TERR,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_280_28,-74.947467,39.5166025,2314 RUFFU TERR,ATLANTIC CITY CITY,17,1920,1,RES1,3004 -0102_280_29,-74.36642004,39.40506474,2312 RUFFU TERR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_280_29,-74.9538185,39.5121615,2312 RUFFU TERR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_280_3,-74.52320528,39.31653204,2322 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_3,-74.7243735,39.4543265,2322 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_30,-74.37015784,39.40728355,2310 RUFFU TERR,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_280_30,-74.95057725,39.51821595,2310 RUFFU TERR,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_280_31,-74.3722944,39.40539034,2308 RUFFU TERR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_280_31,-74.94437844,39.5269058,2308 RUFFU TERR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_280_33,-74.37202825,39.41407394,6 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_33,-74.7778495,39.6427095,6 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES3A,3002 -0102_280_34,-74.3715185,39.4049185,4 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_34,-74.9405723,39.52553756,4 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_35,-74.37437247,39.41047766,2 N MISSISSIPPI AVE RR,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_280_35,-74.969315,39.5063265,2 N MISSISSIPPI AVE RR,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_280_36,-74.410227,39.39080867,2 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_36,-74.947439,39.518703,2 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_39,-74.40532549,39.37962417,2301 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_39,-74.9129895,39.5107455,2301 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_4,-74.508731,39.3238225,2320 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_280_4,-74.7555065,39.4525835,2320 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_40,-74.39043983,39.38989999,2305 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_40,-74.85815178,39.61713996,2305 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_41,-74.38957953,39.39338034,2307 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_41,-74.82765393,39.63656435,2307 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_280_42,-74.37851844,39.39794083,2307 ATLANTIC #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_42,-74.91832924,39.48047808,2307 ATLANTIC #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_43,-74.39101661,39.39164767,2309 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_43,-74.85568025,39.61818824,2309 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_280_44,-74.49919464,39.33545418,2311 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_44,-74.8024436,39.63726119,2311 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_45,-74.40492148,39.37957031,2315 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_45,-74.92409,39.511614,2315 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_46,-74.389609,39.3902795,2319 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_46,-74.85515335,39.61771882,2319 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_47,-74.67495815,39.35824787,2321 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_280_47,-74.50212684,39.42307453,2321 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_280_48,-74.650801,39.3559215,2323 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_48,-74.494569,39.425398,2323 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_49,-74.6326165,39.3587945,2325 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_49,-74.51924619,39.40727209,2325 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_50,-74.65058046,39.34544789,2327 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_50,-74.49887556,39.41732588,2327 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_280_51,-74.64065075,39.36221939,7 N GEORGIA AVE,ATLANTIC CITY CITY,17,1915,1,COM1,3004 -0102_280_51,-74.52760954,39.41181563,7 N GEORGIA AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_280_53,-74.95475119,39.51685052,21 N GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_53,-74.55607129,39.47376547,21 N GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_55,-74.950077,39.5167285,29 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_280_55,-74.5654961,39.4773633,29 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1910,1,REL1,3004 -0102_280_56,-74.94689292,39.52730473,29 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_280_56,-74.568712,39.4764775,29 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1910,1,GOV1,3004 -0102_280_57,-74.939933,39.515809,29 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_280_57,-74.56185465,39.4758339,29 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_280_59,-74.88606317,39.55865955,31 N GEORGIA AVE RR #A,ATLANTIC CITY CITY,17,1912,1,COM1,3004 -0102_280_59,-74.56835367,39.50119488,31 N GEORGIA AVE RR #A,ATLANTIC CITY CITY,17,1912,1,RES1,3001 -0102_280_6,-74.52260366,39.45544346,2314 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_6,-74.50805515,39.32406752,2314 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_280_60,-74.8867435,39.5944155,31 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_280_60,-74.607809,39.503148,31 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_280_62,-74.79226286,39.64450185,35 N GEORGIA AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_280_62,-74.65196059,39.45637706,35 N GEORGIA AVE,ATLANTIC CITY CITY,45,1930,2,GOV1,3004 -0102_280_8,-74.47451982,39.48295579,2312 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_280_8,-74.49188914,39.33330067,2312 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_281_1,-74.51356684,39.32344849,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_1,-74.57872438,39.53274964,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_11,-74.59205556,39.37668929,2221 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_11,-74.5053195,39.4084335,2221 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_281_12,-74.52019372,39.31969922,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_12,-74.64903601,39.52528071,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_6,-74.78183825,39.67342323,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_6,-74.6696965,39.4995745,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_7,-74.927898,39.5093495,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_7,-74.59996999,39.4365951,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_8,-74.36944262,39.41614661,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_8,-74.7728745,39.646716,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_9,-74.58474967,39.37617,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_281_9,-74.50801115,39.40843548,30 N CHRISTOPHER COLUMBUS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_283_1,-74.4889245,39.3387435,49 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_283_1,-74.8810005,39.594515,49 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,AGR1,3001 -0102_283_10,-74.51567428,39.32067308,9 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_283_10,-74.64225005,39.51799234,9 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_284_1,-74.49032111,39.33842762,2001 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_284_1,-74.8774875,39.5917785,2001 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_287_12,-74.55829029,39.39682674,1825 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_287_12,-74.50383685,39.41008067,1825 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_287_2,-74.55256477,39.47848795,1810 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_287_2,-74.6098695,39.3221385,1810 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_287_28,-74.4953855,39.3358955,29 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_287_28,-74.8812175,39.5892645,29 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_287_3,-74.54957562,39.47625469,1801 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_287_3,-74.61139877,39.32171991,1801 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_289_14,-74.36795463,39.41220009,1705-1717 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_14,-74.76955265,39.66207298,1705-1717 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_32,-74.55831879,39.39699797,1729 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_32,-74.50066007,39.41045931,1729 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_33,-74.5570306,39.39854714,1731 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_33,-74.4818701,39.430628,1731 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_34,-74.5545075,39.401077,1733 ATLANTIC AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_289_34,-74.4803475,39.43202833,1733 ATLANTIC AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_289_35,-74.5549875,39.391816,1735 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_35,-74.523412,39.3938845,1735 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_36,-74.55263384,39.39621456,1737 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_36,-74.526452,39.3943845,1737 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_9,-74.50876149,39.33871551,1714 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_289_9,-74.80371136,39.63092908,1714 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_1,-74.560925,39.4449645,3004 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_1,-74.59692406,39.3194797,3004 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_2,-74.57011946,39.45166668,3000 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_29_2,-74.58009434,39.33264341,3000 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_4,-74.53508876,39.44998033,106 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_4,-74.59059344,39.32528017,106 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_5,-74.63602573,39.43111657,110 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_5,-74.61466983,39.31608972,110 S MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_6,-74.6563655,39.4334655,115 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_29_6,-74.5853695,39.3240155,115 S CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_1,-74.50168876,39.38359408,61 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_1,-74.8099756,39.64252937,61 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_290_2,-74.50265411,39.33854827,19 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_2,-74.8058165,39.6296425,19 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_290_3,-74.54905778,39.47602217,15 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_3,-74.61035733,39.31930305,15 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_4,-74.58203481,39.34609073,16 N MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_4,-74.528956,39.388597,16 N MT VERNON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_290_5,-74.5766846,39.33901966,1625 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_290_5,-74.51149001,39.38589366,1625 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_6,-74.568936,39.363381,1633 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_290_6,-74.530612,39.384803,1633 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_7,-74.57142873,39.36750502,1637 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_7,-74.49417839,39.37800053,1637 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_8,-74.56224663,39.36072282,1639 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_8,-74.4937385,39.3803455,1639 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_290_9,-74.561935,39.3610365,1641 ATLANTIC AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_290_9,-74.44998942,39.3811483,1641 ATLANTIC AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_291_18,-74.58148817,39.33478155,1601 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_291_18,-74.5137305,39.3854595,1601 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_291_20,-74.581314,39.3411795,1613 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_291_20,-74.52686613,39.38303583,1613 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_291_21,-74.569008,39.361367,1615 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_291_21,-74.5233315,39.383254,1615 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_291_22,-74.56988609,39.36426567,1617 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_291_22,-74.52740551,39.38483183,1617 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_291_6,-74.5205755,39.383581,1600 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_291_6,-74.81281743,39.65110839,1600 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_291_7,-74.522387,39.38424467,38 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_291_7,-74.81551018,39.64015185,38 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_292_1,-74.49298245,39.40037555,1501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_292_1,-74.42015696,39.36746544,1501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_293_3,-74.81140728,39.51846711,1400 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_293_3,-74.54775749,39.40217515,1400 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_293_4,-74.7185915,39.5675605,1401 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_293_4,-74.53567,39.3969945,1401 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_294_1,-74.5275405,39.3824365,1401 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_294_1,-74.816958,39.6561335,1401 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_295_1,-74.81801251,39.52479733,1301 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_295_1,-74.559962,39.3976125,1301 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_295_2,-74.51978403,39.3892782,20 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_295_2,-74.42805332,39.36723502,20 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_295_3,-74.57343871,39.35299833,1301 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_295_3,-74.446201,39.3813745,1301 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_295_4,-74.48814063,39.39023383,1333 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_295_4,-74.79508614,39.67501109,1333 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_297_1,-74.860574,39.5528625,25 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_297_1,-74.58737975,39.37152188,25 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_297_2,-74.86298922,39.56506907,1201 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_297_2,-74.59180135,39.37829319,1201 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_298_1,-74.51179917,39.39856164,1124 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_298_1,-74.44003856,39.36503286,1124 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_298_6,-74.8078553,39.55379895,1125 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,AGR1,3001 -0102_298_6,-74.584084,39.376322,1125 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_299_1,-74.51982496,39.39712117,38 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_299_1,-74.4336725,39.3647645,38 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_299_2,-74.517159,39.400061,30 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_299_2,-74.4350945,39.3664165,30 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_299_4,-74.851023,39.5609935,39 N MANSION AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_299_4,-74.5957505,39.3813215,39 N MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_299_5,-74.8601505,39.5659445,24 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_299_5,-74.59212741,39.37862466,24 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_299_6,-74.8562715,39.5616375,1101 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_299_6,-74.57946093,39.37705016,1101 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,AGR1,3001 -0102_3_1,-74.3949095,39.392802,4708 ATLANTIC AVE,ATLANTIC CITY CITY,18,1912,1,GOV1,3004 -0102_3_1,-74.8098055,39.6113365,4708 ATLANTIC AVE,ATLANTIC CITY CITY,18,1912,1,GOV1,3004 -0102_3_10,-74.5118805,39.3382025,121 S NEWTON AVE,ATLANTIC CITY CITY,18,1990,1,RES1,3001 -0102_3_10,-74.87040592,39.59272715,121 S NEWTON AVE,ATLANTIC CITY CITY,18,1990,1,RES1,3001 -0102_3_12,-74.372169,39.401493,115 S NEWTON AVE,ATLANTIC CITY CITY,18,1910,1,GOV1,3004 -0102_3_12,-74.866011,39.602548,115 S NEWTON AVE,ATLANTIC CITY CITY,18,1910,1,RES1,3001 -0102_3_2,-74.39449834,39.38997786,4700 ATLANTIC AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_3_2,-74.82045003,39.61574383,4700 ATLANTIC AVE,ATLANTIC CITY CITY,18,1925,1,GOV1,3004 -0102_3_3,-74.37416373,39.40059938,104 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1920,1,IND1,3002 -0102_3_3,-74.8685025,39.602172,104 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1920,1,GOV1,3004 -0102_3_4,-74.35510084,39.41408698,106 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1988,1,RES1,3001 -0102_3_4,-74.881925,39.591249,106 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1988,1,RES1,3001 -0102_3_5,-74.50945234,39.33809149,124 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_3_5,-74.8731896,39.59531239,124 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_30_1,-74.54008558,39.46870327,2901 BOARDWALK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_30_1,-74.5799135,39.33181,2901 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_30_2,-74.58121278,39.44725504,2821 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_30_2,-74.606002,39.3229475,2821 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_1,-74.5159,39.407515,1000 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_1,-74.5037255,39.328858,1000 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_300_12,-74.60605907,39.32594249,1013 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_300_12,-74.37569596,39.41392117,1013 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_300_13,-74.6021735,39.329647,1031 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_13,-74.37017232,39.41452006,1031 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_14,-74.6010445,39.3271165,13 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_300_14,-74.37255895,39.41430608,13 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_15,-74.8616045,39.5525375,15 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_15,-74.57763831,39.38363713,15 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_300_17,-74.60998539,39.32870879,16 N GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_17,-74.36863678,39.41150195,16 N GORDONS ALLEY,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_300_18,-74.51549541,39.40054143,19 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_18,-74.4387425,39.367773,19 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_19,-74.50998784,39.399602,21 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_19,-74.4391415,39.366331,21 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_2.01,-74.561594,39.359622,1005 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_300_2.01,-74.4532388,39.37362746,1005 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_300_2.02,-74.56716922,39.34116324,16 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,IND1,3002 -0102_300_2.02,-74.37512146,39.41077929,16 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_1,-74.505861,39.4252055,928 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_1,-74.51814343,39.31963584,928 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_11,-74.48632973,39.49891247,46 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_301_11,-74.502182,39.3261,46 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_301_13,-74.5066055,39.432313,44 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_301_13,-74.5153545,39.329761,44 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_301_14,-74.50241427,39.43275686,42 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_301_14,-74.5100975,39.330082,42 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_301_16,-74.4937615,39.431262,40 N MARYLAND AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_16,-74.52047117,39.3199265,40 N MARYLAND AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_17,-74.50790041,39.41925639,38 N MARYLAND AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_301_17,-74.5167485,39.3186485,38 N MARYLAND AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_19,-74.513657,39.404667,904 WESTCOAT PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_19,-74.505659,39.3284285,904 WESTCOAT PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_2,-74.50413096,39.43613044,924 ARCTIC AVE,ATLANTIC CITY CITY,45,1951,4,RES1,3001 -0102_301_2,-74.52255394,39.31858715,924 ARCTIC AVE,ATLANTIC CITY CITY,45,1951,4,RES1,3001 -0102_301_20,-74.50030495,39.42576522,902 WESTCOAT PL,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_301_20,-74.51434534,39.31983804,902 WESTCOAT PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_21,-74.50028929,39.42632051,36 N MARYLAND AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_301_21,-74.51662116,39.31998513,36 N MARYLAND AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_301_22,-74.49376552,39.42759132,34 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_22,-74.5202015,39.321769,34 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_23,-74.50469868,39.40822437,32 BORN TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_301_23,-74.5031705,39.333426,32 BORN TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_301_24,-74.51192192,39.40235435,32 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_301_24,-74.50118169,39.32761997,32 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,IND1,3002 -0102_301_25,-74.48646773,39.4351043,30 BORN TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_25,-74.49762346,39.32861467,30 BORN TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_26,-74.50297063,39.41301231,30 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,3,COM1,3004 -0102_301_26,-74.50389966,39.33074251,30 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_301_27,-74.5208315,39.3967175,28 BORN TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_27,-74.49279918,39.33014462,28 BORN TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_28,-74.5090775,39.419035,28 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_301_28,-74.50827682,39.33120902,28 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_301_29,-74.5222775,39.398056,26 BORN TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_29,-74.4878069,39.33304741,26 BORN TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_3,-74.46901813,39.49218692,916 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_3,-74.50625699,39.33001083,916 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_30,-74.48325948,39.42833274,26 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_301_30,-74.4965064,39.32843574,26 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_301_55,-74.56845623,39.35963536,901 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_55,-74.45061633,39.37066676,901 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_301_56,-74.56378457,39.35347033,903 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_56,-74.4441665,39.3708085,903 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_57,-74.56392359,39.35422323,905 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_57,-74.4464742,39.37092006,905 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_58,-74.5595655,39.358052,907 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_58,-74.45348819,39.37309522,907 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_59,-74.55003434,39.36797864,909 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_59,-74.4482525,39.3743175,909 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_60,-74.55125911,39.36813731,911 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_60,-74.3734485,39.420052,911 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_61,-74.57117282,39.34812444,915 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_61,-74.37985647,39.4161707,915 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_62,-74.5566806,39.35774238,917 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_62,-74.452236,39.370992,917 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_63,-74.53922925,39.35291217,919 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_63,-74.3788175,39.41396,919 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_64,-74.57236913,39.3487732,925 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_64,-74.3818815,39.4174425,925 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_66,-74.57267152,39.33555594,929 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_66,-74.38311791,39.41770808,929 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_7,-74.47280922,39.49005861,904 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_7,-74.50347055,39.32818436,904 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_72,-74.5712535,39.35342,19 N VIRGINIA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_72,-74.45459465,39.37319999,19 N VIRGINIA AVE RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_301_73,-74.5663905,39.3569325,19 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_73,-74.457854,39.373827,19 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_76,-74.52620518,39.39662751,27 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_76,-74.49578974,39.32935033,27 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_77,-74.50343865,39.41897609,31 N VIRGINIA AVE,ATLANTIC CITY CITY,,1930,1,RES1,3001 -0102_301_77,-74.5077365,39.331591,31 N VIRGINIA AVE,ATLANTIC CITY CITY,,1930,1,GOV1,3004 -0102_301_78,-74.50637894,39.41019882,33 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_78,-74.49849258,39.33421966,33 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_301_80,-74.50161476,39.41643122,37 N VIRGINIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_301_80,-74.50494716,39.33096153,37 N VIRGINIA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_301_81,-74.51726223,39.40232803,39 N VIRGINIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_301_81,-74.50805065,39.32799242,39 N VIRGINIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_301_82,-74.51429586,39.41213517,41 N VIRGINIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_301_82,-74.51226981,39.32501438,41 N VIRGINIA AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_301_83,-74.49496261,39.42679158,43 N VIRGINIA AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_301_83,-74.51686525,39.32163909,43 N VIRGINIA AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_301_9,-74.48530082,39.49697966,902 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_301_9,-74.51406767,39.32570548,902 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_302_1,-74.63737865,39.52724574,815 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_302_1,-74.56953841,39.36964119,815 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_302_3,-74.51400318,39.41378601,10 N DELAWARE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_302_3,-74.50918934,39.32663849,10 N DELAWARE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_302_6,-74.509225,39.406347,805 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_302_6,-74.50188934,39.33275349,805 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_303_1,-74.49997,39.430034,18 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_303_1,-74.4577745,39.350954,18 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_303_47,-74.81096844,39.56382064,701 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_303_47,-74.55526641,39.42244232,701 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_1,-74.4640275,39.4626575,23 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_1,-74.470173,39.342757,23 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_12,-74.4411245,39.4932325,32 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_304_12,-74.46316035,39.34854548,32 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_304_13,-74.51253091,39.43591138,30 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1915,2,GOV1,3004 -0102_304_13,-74.45955,39.3496735,30 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_304_2,-74.49820479,39.44203564,620 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_304_2,-74.47483652,39.34019362,620 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_23,-74.52984135,39.49252194,18 N CONNECTICUT AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_23,-74.5156935,39.319262,18 N CONNECTICUT AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_26,-74.4966045,39.499746,13 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_26,-74.52004249,39.32040216,13 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_28,-74.83007777,39.56823072,617 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_28,-74.574623,39.420727,617 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_29,-74.822497,39.569436,621 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_29,-74.57372736,39.42629251,621 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_30,-74.861025,39.535659,629 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_30,-74.56966002,39.41139101,629 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_36,-74.83999098,39.54147052,19 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_304_36,-74.58897332,39.40904095,19 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_304_6,-74.50682181,39.44843024,44 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_304_6,-74.46658494,39.34348933,44 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,REL1,3004 -0102_304_7,-74.49472881,39.44105621,42 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_304_7,-74.48473434,39.34073106,42 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_305_1,-74.52844237,39.45127538,43 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_305_1,-74.446531,39.357304,43 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_305_10,-74.46421214,39.45656889,28 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_305_10,-74.46300317,39.34657744,28 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_305_11,-74.484886,39.43667,26 N CONGRESS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_305_11,-74.4601605,39.347796,26 N CONGRESS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_305_18,-74.5031135,39.5178835,525 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_305_18,-74.51693807,39.31745717,525 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_19,-74.85698012,39.55323648,535 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_305_19,-74.58935181,39.41587244,535 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_305_20,-74.84478586,39.54281176,5 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_20,-74.57488144,39.42917135,5 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_22,-74.85627435,39.56081096,7 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_22,-74.60512476,39.41065866,7 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_24,-74.53001442,39.51087262,15 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_305_24,-74.52185533,39.32262052,15 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_305_27,-74.522817,39.4196245,25 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_305_27,-74.4641005,39.349715,25 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_305_28,-74.5171625,39.43037596,27 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_28,-74.4641345,39.3485805,27 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_3.01,-74.5263275,39.4472635,514 GRAMMERCY PL,ATLANTIC CITY CITY,16,2003,1,RES1,3001 -0102_305_3.01,-74.4499895,39.3556485,514 GRAMMERCY PL,ATLANTIC CITY CITY,16,2003,1,COM5,3004 -0102_305_30,-74.46017,39.4663505,31 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_305_30,-74.4613085,39.3462535,31 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_305_31,-74.4903955,39.4415735,33 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_31,-74.47632088,39.3416225,33 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_305_33,-74.50695543,39.44794565,37 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_305_33,-74.47348998,39.34301683,37 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_305_34,-74.51349319,39.44362603,39 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_305_34,-74.48009333,39.35088604,39 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_305_7,-74.4973155,39.446897,34 N CONGRESS AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_305_7,-74.482998,39.3352355,34 N CONGRESS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_305_8,-74.489562,39.4366715,32 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_305_8,-74.48417494,39.34030239,32 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_305_9,-74.46958406,39.45684142,30 N CONGRESS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_305_9,-74.470734,39.3413645,30 N CONGRESS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_306_20,-74.715629,39.5807355,501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_20,-74.580751,39.4234185,501 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_21,-74.71134317,39.5736775,505 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_306_21,-74.58244986,39.42371502,505 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_22,-74.715437,39.5802685,507 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_22,-74.60984,39.416196,507 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_23,-74.8734885,39.5654285,509 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_23,-74.603668,39.4114805,509 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_24,-74.8636555,39.567696,511 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_24,-74.60362595,39.40914429,511 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_306_25,-74.72735085,39.58857995,515 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_306_25,-74.58869994,39.42722504,515 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_306_28,-74.4992575,39.4425745,31 N CONGRESS AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_306_28,-74.48321285,39.34001534,31 N CONGRESS AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_306_6,-74.492099,39.46052,48 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_306_6,-74.450879,39.3543255,48 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_307_11,-74.5876535,39.429588,108 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_307_11,-74.51434592,39.46198321,108 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_307_13,-74.76590239,39.61160463,100 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_307_13,-74.58331515,39.40217682,100 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_307_14,-74.5077875,39.4578415,507 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_307_14,-74.46500702,39.35822696,507 GRAMMERCY PL,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_307_18,-74.64815798,39.45729919,113 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_307_18,-74.53557745,39.38384834,113 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_307_21,-74.66860549,39.46111082,119 N CONGRESS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_307_21,-74.5350165,39.378537,119 N CONGRESS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_307_25,-74.624435,39.4887525,127 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_307_25,-74.54395488,39.38352097,127 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_307_27,-74.6807425,39.481849,131 N CONGRESS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_307_27,-74.54791333,39.3816765,131 N CONGRESS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_307_28,-74.699163,39.5017555,131 N CONGRESS AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_307_28,-74.549271,39.3784785,131 N CONGRESS AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_307_3,-74.7204847,39.39117893,124 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_307_3,-74.55809027,39.37603088,124 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_307_4,-74.68044713,39.48782243,122 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_307_4,-74.54959789,39.38107252,122 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_307_5,-74.62739664,39.50400326,120 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_307_5,-74.552674,39.3829305,120 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_1,-74.70499283,39.490269,133 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_1,-74.54968684,39.37976161,133 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_10,-74.67959822,39.45444695,122 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_308_10,-74.53301925,39.37827446,122 N CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_308_11,-74.68501377,39.44370058,120 N CONGRESS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_308_11,-74.5344875,39.380213,120 N CONGRESS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_308_13,-74.64659427,39.45953325,117 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_13,-74.54973493,39.3691867,117 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_19,-74.507984,39.460773,517 GRAMMERCY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_19,-74.46458407,39.35853218,517 GRAMMERCY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_2,-74.70268184,39.49775449,526 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_2,-74.55811117,39.37644325,526 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_20,-74.49985284,39.46101551,519 GRAMMERCY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_20,-74.46185476,39.35885217,519 GRAMMERCY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_28,-74.66810026,39.4490514,125 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_28,-74.5330564,39.37936156,125 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_3,-74.7801555,39.3832985,522 MADISON AVE,ATLANTIC CITY CITY,,1900,1,GOV1,3004 -0102_308_3,-74.56404367,39.37483695,522 MADISON AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_308_4,-74.84494682,39.52664102,518 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_4,-74.5615184,39.41116119,518 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_5,-74.84111012,39.5347906,516 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_5,-74.56954182,39.41739208,516 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_6,-74.85095025,39.53689757,514 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_6,-74.568392,39.4170875,514 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_7,-74.7019998,39.48492914,129 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_7,-74.5489125,39.381563,129 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_308_8,-74.665765,39.463311,126 N CONGRESS AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_308_8,-74.5512545,39.3847405,126 N CONGRESS AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_309_1,-74.50860144,39.45729966,600 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_1,-74.46172933,39.35567154,600 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_13,-74.50474235,39.44858115,627 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_309_13,-74.4691855,39.3452935,627 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_309_14,-74.4955555,39.4481775,629 ARCTIC AVE,ATLANTIC CITY CITY,16,2007,1,RES1,3001 -0102_309_14,-74.48092865,39.33625435,629 ARCTIC AVE,ATLANTIC CITY CITY,16,2007,1,GOV1,3004 -0102_309_16,-74.5023725,39.4365485,633 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_16,-74.4836675,39.3384225,633 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_18,-74.5128768,39.44007255,105 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_18,-74.479863,39.34995067,105 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_19,-74.51662267,39.44555552,107 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_19,-74.4825005,39.3477845,107 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_20,-74.52387797,39.45265516,109 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_309_20,-74.45204768,39.35752837,109 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_309_21,-74.52583456,39.44950585,111 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_309_21,-74.4520345,39.3568545,111 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_309_4,-74.5213915,39.4470355,605 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_4,-74.45215297,39.35466327,605 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_309_8,-74.51048234,39.45254602,617 ARCTIC AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_309_8,-74.4810765,39.3481625,617 ARCTIC AVE,ATLANTIC CITY CITY,17,1910,1,COM1,3004 -0102_309_9,-74.5182153,39.44237467,619 ARCTIC AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_309_9,-74.4809195,39.3507785,619 ARCTIC AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_31_1,-74.45039909,39.35547668,101 S IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_31_1,-74.867322,39.571063,101 S IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_31_2,-74.55342583,39.46983289,2721 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_31_2,-74.5904555,39.327241,2721 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_310_10,-74.495837,39.4492095,711 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_310_10,-74.48014939,39.33710684,711 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_310_8,-74.46950748,39.44557397,703 ARCTIC AVE,ATLANTIC CITY CITY,16,2015,1,RES1,3001 -0102_310_8,-74.46074683,39.34701101,703 ARCTIC AVE,ATLANTIC CITY CITY,16,2015,1,RES1,3001 -0102_310_9,-74.47527964,39.44390444,705 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_310_9,-74.458922,39.3481025,705 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_311_32,-74.7501885,39.604088,137 N CLINTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_311_32,-74.59844784,39.38455029,137 N CLINTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_311_5,-74.79294516,39.60323098,812 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_311_5,-74.6119475,39.3845905,812 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_311_6,-74.71631088,39.63828725,802 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_311_6,-74.60828045,39.37805019,802 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_311_7.01,-74.63942981,39.53543043,100 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,1,RES1,3001 -0102_311_7.01,-74.556665,39.384606,100 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,1,RES1,3001 -0102_311_7.02,-74.5223535,39.4708125,102 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.02,-74.51918671,39.3235085,102 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.03,-74.638337,39.367147,104 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3004 -0102_311_7.03,-74.3685402,39.41776459,104 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.04,-74.636183,39.3634525,106 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.04,-74.373849,39.41662,106 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.05,-74.62267764,39.45878225,108 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_311_7.05,-74.53941714,39.37251256,108 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_311_7.06,-74.62830841,39.46344411,110 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_311_7.06,-74.54663616,39.37166254,110 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,39,1900,1,RES1,3001 -0102_311_7.08,-74.7501428,39.60237741,114 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.08,-74.59978977,39.37926004,114 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,GOV1,3004 -0102_311_7.09,-74.76313063,39.60186634,115 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.09,-74.60062013,39.3786302,115 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.11,-74.49908273,39.42894756,111 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.11,-74.45560083,39.35012801,111 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.13,-74.5001335,39.4310825,107 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.13,-74.46083735,39.35112184,107 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.14,-74.50663,39.431223,105 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,27,2004,2,RES1,3001 -0102_311_7.14,-74.4588964,39.35118184,105 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,27,2004,2,RES1,3001 -0102_311_7.15,-74.48548988,39.51819947,103 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.15,-74.51659117,39.31765949,103 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.16,-74.631366,39.3645205,101 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_7.16,-74.37505722,39.4171999,101 CHESAPEAKE BAY CT,ATLANTIC CITY CITY,28,2004,2,RES1,3001 -0102_311_9,-74.505446,39.438859,124 N DELAWARE AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_311_9,-74.4838645,39.3399165,124 N DELAWARE AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_312_1,-74.742794,39.5897325,129 N MARYLAND AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_312_1,-74.5991695,39.369531,129 N MARYLAND AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_312_2,-74.72701934,39.58628253,127 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_312_2,-74.59762629,39.37244935,127 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_312_5,-74.634774,39.46894,123 N MARYLAND AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_312_5,-74.54949753,39.37017982,123 N MARYLAND AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_312_6,-74.62047121,39.46405176,121 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_312_6,-74.55026747,39.37428884,121 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_312_9,-74.63649305,39.36342117,117 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_312_9,-74.36981676,39.41602556,117 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_313.01_1,-74.52258,39.4741975,119 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_1,-74.5158895,39.3242145,119 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_2,-74.63931415,39.52725946,117 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_2,-74.57252334,39.37575154,117 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_3,-74.632574,39.3918175,115 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_3,-74.49449,39.4952665,115 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_4,-74.628138,39.3922705,113 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_4,-74.53122246,39.47024675,113 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_5,-74.63877532,39.38064805,111 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_5,-74.50421232,39.47519311,111 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_6,-74.63760009,39.38160605,109 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_6,-74.4704485,39.4907135,109 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,GOV1,3004 -0102_313.01_7,-74.62247686,39.37925063,107 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_7,-74.4488645,39.4987605,107 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_8,-74.62298749,39.38313891,105 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_8,-74.45623398,39.48964184,105 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_313.01_9,-74.61456118,39.42824243,103 N VIRGINIA AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_313.01_9,-74.45130826,39.48952296,103 N VIRGINIA AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_313_17.01,-74.508383,39.487434,116 N MARYLAND AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_313_17.01,-74.5168065,39.3210095,116 N MARYLAND AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_313_17.02,-74.50807199,39.49186822,114 N MARYLAND AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_313_17.02,-74.51286317,39.32225616,114 N MARYLAND AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_313_17.03,-74.5128935,39.4851755,112 N MARYLAND AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_313_17.03,-74.5160355,39.3234635,112 N MARYLAND AVE,ATLANTIC CITY CITY,27,2001,2,COM1,3004 -0102_313_17.04,-74.51981416,39.47186753,110 N MARYLAND AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_313_17.04,-74.512467,39.3248765,110 N MARYLAND AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_313_23.01,-74.64036484,39.52633753,901 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_313_23.01,-74.5703215,39.3692455,901 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_313_4,-74.74703898,39.59144334,908 BALTIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_313_4,-74.6078486,39.37128275,908 BALTIC AVE,ATLANTIC CITY CITY,45,1900,4,COM1,3004 -0102_313_7,-74.7269025,39.5879925,132 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_313_7,-74.59002779,39.37712197,132 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_314_1.01,-74.4835245,39.510341,130 N VIRGINIA AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_314_1.01,-74.519108,39.3185105,130 N VIRGINIA AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_314_1.02,-74.49542287,39.4950218,128 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.02,-74.5187885,39.3222815,128 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.03,-74.52564497,39.47361226,126 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.03,-74.51546672,39.32365565,126 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.04,-74.63224249,39.5227398,124 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.04,-74.57223712,39.36848995,124 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.05,-74.64031784,39.52883252,122 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.05,-74.560199,39.369857,122 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,GOV1,3004 -0102_314_1.06,-74.636451,39.3925415,120 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.06,-74.51194405,39.48229645,120 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.07,-74.64708706,39.37789085,118 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.07,-74.52679562,39.47151615,118 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.08,-74.637638,39.381158,116 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.08,-74.46865355,39.49016129,116 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.09,-74.6402225,39.383264,114 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.09,-74.45092307,39.49583275,114 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,COM1,3004 -0102_314_1.10,-74.62283125,39.37926606,112 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.10,-74.45177174,39.50160287,112 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.11,-74.62244531,39.37521398,110 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.11,-74.462476,39.4922915,110 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.12,-74.49759115,39.47205122,108 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.12,-74.510902,39.325107,108 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.13,-74.46870017,39.49065183,106 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_1.13,-74.50018639,39.32905533,106 N VIRGINIA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_314_17,-74.4978095,39.4336605,1003 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_314_17,-74.52174318,39.31993596,1003 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_314_18,-74.5090147,39.43603153,1009 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_314_18,-74.52029,39.3175885,1009 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_314_19,-74.4883786,39.42863698,1011 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_314_19,-74.5234505,39.319226,1011 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_315_14,-74.52381259,39.41806856,1013 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_14,-74.518545,39.3220415,1013 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_16,-74.52004405,39.41877074,1017 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_16,-74.50415331,39.32672917,1017 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_17,-74.51050117,39.40757551,1019 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_17,-74.5009378,39.32849789,1019 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_18,-74.4990925,39.4123885,1021 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_315_18,-74.506795,39.3300445,1021 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_315_19,-74.51272203,39.40761984,1025 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_19,-74.5091575,39.3294915,1025 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_24,-74.47369489,39.49325998,117 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_315_24,-74.5027895,39.3300745,117 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_315_25,-74.62856246,39.36886466,123 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_315_25,-74.46074628,39.49132001,123 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_315_26,-74.62827539,39.38171534,125 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_315_26,-74.4534644,39.50297694,125 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,27,1900,2,REL1,3004 -0102_315_6,-74.6282735,39.391288,133 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_6,-74.51197039,39.48432874,133 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_315_7,-74.64043117,39.38033966,129 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,1900,2,RES1,3001 -0102_315_7,-74.50810481,39.48216549,129 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,1900,2,GOV1,3004 -0102_316_10,-74.6434439,39.33522934,136 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_10,-74.36242733,39.41740049,136 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_12,-74.63664584,39.34456151,134 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_12,-74.3615545,39.41775,134 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_316_14,-74.6348735,39.347689,132 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_14,-74.36215434,39.41789098,132 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_16,-74.631159,39.349213,130 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_16,-74.363058,39.418589,130 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_21,-74.49146854,39.42258519,108 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_21,-74.51359016,39.3209261,108 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_23,-74.527406,39.3975445,1101 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_23,-74.494429,39.332723,1101 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_24,-74.52747804,39.39839082,1103 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_24,-74.49308311,39.33383565,1103 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_25,-74.52727381,39.3992019,1105 ARCTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_25,-74.50640115,39.32367622,1105 ARCTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_26,-74.59842143,39.33077166,1107 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_26,-74.37712516,39.41471391,1107 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_27,-74.60721593,39.33154967,1109 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_316_27,-74.36994036,39.41497027,1109 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_316_28,-74.6118015,39.321034,1111 ARCTIC AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_316_28,-74.3599655,39.4110655,1111 ARCTIC AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_316_29,-74.60937408,39.32245967,1115 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_316_29,-74.360662,39.4119505,1115 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_316_30,-74.530132,39.3997585,1117 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_30,-74.50237991,39.32551831,1117 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_31,-74.5158185,39.3956355,1119 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_316_31,-74.5257945,39.31351,1119 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_316_5,-74.65821738,39.34665395,1110 BALTIC AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_316_5,-74.363051,39.414897,1110 BALTIC AVE,ATLANTIC CITY CITY,33,1920,1,COM1,3004 -0102_316_6,-74.6295568,39.35691647,1108 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_6,-74.3607125,39.413629,1108 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_316_7,-74.6394705,39.3671885,142 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_316_7,-74.35904283,39.41159048,142 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_316_8,-74.62698863,39.36552123,140 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_8,-74.3612334,39.41157464,140 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_9,-74.633887,39.3581165,138 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_316_9,-74.3595485,39.4122285,138 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_317_1,-74.63130173,39.35000557,133 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_317_1,-74.3723915,39.4044395,133 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_317_23,-74.51843153,39.39605142,1123 ARCTIC AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_317_23,-74.52181726,39.31702517,1123 ARCTIC AVE,ATLANTIC CITY CITY,,1950,1,COM1,3004 -0102_318_1,-74.50389434,39.43484953,1201 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_318_1,-74.51026668,39.33071896,1201 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_319_1,-74.524025,39.396867,1300 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_319_1,-74.49263508,39.33176944,1300 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_1,-74.95364764,39.5164286,2710 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_1,-74.67122884,39.4135598,2710 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_10,-74.55136721,39.47529685,109 S BELMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_10,-74.6085415,39.323637,109 S BELMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_11,-74.556349,39.470993,107 S BELMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_11,-74.57479761,39.33835882,107 S BELMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_2,-74.962209,39.5126475,2704 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_2,-74.54189778,39.45975843,2704 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_3,-74.582219,39.4791365,2700 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_3,-74.5514465,39.35926,2700 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_4,-74.89926507,39.52690556,102 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_4,-74.62674606,39.4214238,102 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_5,-74.55373484,39.47690673,116 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_5,-74.61772214,39.32044725,116 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_32_6,-74.61584703,39.44153701,118 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_6,-74.60107132,39.32083593,118 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_32_7,-74.55095716,39.46626982,120 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_7,-74.59163566,39.32841649,120 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_8,-74.54771167,39.46661929,2701 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_8,-74.59417162,39.33329128,2701 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_9,-74.60580984,39.4380553,111 S BELMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_32_9,-74.60550183,39.32193151,111 S BELMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_320_13,-74.80062165,39.53924424,114 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_320_13,-74.58447288,39.37653667,114 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_320_2,-74.602711,39.3196515,136 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_320_2,-74.36272112,39.41223117,136 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_320_4,-74.60742968,39.32054405,132 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_320_4,-74.35897454,39.41320434,132 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_320_5,-74.60157113,39.32091023,130 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_320_5,-74.359228,39.4134645,130 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_320_6,-74.72343168,39.57772867,128 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_320_6,-74.59591112,39.37823313,128 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1910,3,GOV1,3004 -0102_321_15,-74.80482649,39.64265115,114 CENTRE ST,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_321_15,-74.75742023,39.43335588,114 CENTRE ST,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_321_19,-74.841095,39.530011,110 REV DR ISAAC S COLE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_321_19,-74.55575319,39.39757128,110 REV DR ISAAC S COLE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_321_24,-74.7968481,39.64248049,131 BAY ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_321_24,-74.75542964,39.43325605,131 BAY ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_321_26,-74.795331,39.6421225,135 BAY ST,ATLANTIC CITY CITY,,1900,2,GOV1,3004 -0102_321_26,-74.758043,39.432621,135 BAY ST,ATLANTIC CITY CITY,,1900,2,RES1,3001 -0102_321_29,-74.80776074,39.52834408,1413 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_321_29,-74.55065544,39.39390639,1413 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_322_15,-74.6066806,39.32169573,124 BAY ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_322_15,-74.48574816,39.34688495,124 BAY ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_322_16,-74.60492284,39.32268447,122 BAY ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_322_16,-74.4840495,39.346942,122 BAY ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_322_24,-74.8126135,39.5250255,101 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_322_24,-74.5577465,39.397732,101 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_322_3,-74.5873695,39.325993,1424 BALTIC AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_322_3,-74.365583,39.416444,1424 BALTIC AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_322_4,-74.58822,39.325985,1422 BALTIC AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_322_4,-74.361976,39.41544,1422 BALTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_322_5,-74.6061525,39.322165,1420 BALTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_322_5,-74.3648445,39.4149965,1420 BALTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_323_1,-74.82538954,39.57004519,1535 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_323_1,-74.59154531,39.37161341,1535 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_324_1,-74.51842821,39.38990234,1525 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_324_1,-74.42537819,39.35925496,1525 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_326_1,-74.52014517,39.40160206,135 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_326_1,-74.436185,39.36793,135 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_326_6,-74.52941018,39.38177702,1617 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_326_6,-74.819298,39.656572,1617 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_327_1,-74.52007233,39.38799999,1700 BALTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_327_1,-74.4321895,39.365359,1700 BALTIC AVE,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_327_11,-74.5283123,39.38389447,1705 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_327_11,-74.815863,39.6544485,1705 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_328_1,-74.59301707,39.4025273,117 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_328_1,-74.49981821,39.452053,117 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_328_11,-74.381768,39.414563,107 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_328_11,-74.77480033,39.67027317,107 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_328_12,-74.4529071,39.3750333,109 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_328_12,-74.791246,39.678195,109 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_328_13,-74.57494615,39.41976948,111 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_328_13,-74.49939828,39.43811193,111 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_328_6,-74.52399192,39.38505419,1711 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_328_6,-74.80669639,39.6402529,1711 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_328_7,-74.4463472,39.37101004,1713 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_328_7,-74.78650458,39.67613241,1713 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_328_8,-74.3652245,39.421223,1717 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_328_8,-74.78200679,39.6655167,1717 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_329_1,-74.585359,39.402761,138 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_329_1,-74.4884139,39.45241995,138 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_329_11,-74.52122197,39.38287225,1810 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_329_11,-74.81406432,39.64806897,1810 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_329_4,-74.5750765,39.4280085,126 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_329_4,-74.49078939,39.45279573,126 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_330_1,-74.50335634,39.33813154,113 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_330_1,-74.80142701,39.62711612,113 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_330_12,-74.366589,39.4225015,112 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_330_12,-74.79296666,39.66606735,112 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_330_13,-74.38112613,39.41866868,110 N INDIANA AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_330_13,-74.77591019,39.65723851,110 N INDIANA AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_330_18,-74.5062215,39.3367835,1805 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_330_18,-74.80769801,39.62921817,1805 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_330_23,-74.499158,39.337192,1815 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_330_23,-74.80219051,39.62644617,1815 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_330_27,-74.5053875,39.3402105,1825 ARCTIC AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_330_27,-74.79555654,39.61929816,1825 ARCTIC AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_330_28,-74.488408,39.3343045,1827 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_330_28,-74.79560417,39.60907603,1827 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_330_30,-74.49213068,39.33571298,105 N OHIO AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_330_30,-74.87394086,39.60310422,105 N OHIO AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_330_31,-74.4879885,39.334878,107 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_330_31,-74.88100611,39.59862637,107 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_330_32,-74.49280616,39.3347325,109 N OHIO AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_330_32,-74.79588512,39.6091395,109 N OHIO AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_330_33,-74.5051265,39.3390865,111 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_330_33,-74.81091904,39.61748934,111 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_331_1,-74.44868553,39.37089921,1924 BALTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_331_1,-74.8002195,39.6412235,1924 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_333_1,-74.503854,39.338926,122 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_333_1,-74.83316806,39.61255064,122 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_1,-74.48758683,39.3369685,2200 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_1,-74.8801715,39.59147,2200 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_23,-74.51245983,39.32774201,2231 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_23,-74.65797144,39.52416785,2231 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_24,-74.51805522,39.31954317,2243 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_24,-74.650434,39.5252315,2243 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_29,-74.49257668,39.33625796,ATLANTIC CITY EXPRESSWAY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_29,-74.87575506,39.59147773,ATLANTIC CITY EXPRESSWAY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_336_30,-74.59764486,39.43620201,ATLANTIC CITY EXPRESSWAY,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_336_30,-74.61207376,39.32499243,ATLANTIC CITY EXPRESSWAY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_10,-74.5894355,39.3213035,3 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_10,-74.3633251,39.4088485,3 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_11,-74.61212133,39.31599951,5 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_11,-74.41117382,39.39044303,5 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_12,-74.60404716,39.31459798,7 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_12,-74.40030336,39.38834706,7 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_13,-74.48474904,39.52384492,8 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_13,-74.4186785,39.368638,8 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_14,-74.53334465,39.30758309,6 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_14,-74.430137,39.3750585,6 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_15,-74.5192866,39.32049573,4 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_15,-74.6369644,39.52930815,4 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_16,-74.515356,39.3199625,2 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_16,-74.64079016,39.53500198,2 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_17,-74.51760313,39.31907215,120 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_17,-74.6501207,39.52344671,120 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_18,-74.51362867,39.32046978,116 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_337_18,-74.63942234,39.53720347,116 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_337_19,-74.51859256,39.32209785,2 SIRACUSA TERR,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_337_19,-74.6270715,39.507217,2 SIRACUSA TERR,ATLANTIC CITY CITY,45,1915,3,GOV1,3004 -0102_337_2,-74.80509182,39.55483991,2304 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_2,-74.5639435,39.410274,2304 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_20,-74.49859863,39.4995898,4 SIRACUSA TERR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_20,-74.38617049,39.39685533,4 SIRACUSA TERR,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_337_21,-74.5068065,39.4922245,6 SIRACUSA TERR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_21,-74.391568,39.391662,6 SIRACUSA TERR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_23,-74.4952885,39.4716975,2313 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_337_23,-74.38590555,39.39361379,2313 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_337_24,-74.51903943,39.32185689,114 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_337_24,-74.6321365,39.5041555,114 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_25,-74.52003204,39.32300118,112 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1938,2,RES1,3001 -0102_337_25,-74.617958,39.5241955,112 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1938,2,RES1,3001 -0102_337_27,-74.512667,39.3237255,110 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_27,-74.580311,39.537007,110 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_28,-74.50332088,39.3265917,108 N MISSISSIPPI AVE,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_337_28,-74.58192533,39.5120485,108 N MISSISSIPPI AVE,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_337_29,-74.50626166,39.32846803,106 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_29,-74.867417,39.495703,106 N MISSISSIPPI AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_30,-74.50917996,39.3291483,2301 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_337_30,-74.86535865,39.49437576,2301 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_31,-74.5086465,39.3286285,2303 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_31,-74.86926055,39.49605782,2303 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_32,-74.51648386,39.32403796,2305 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_32,-74.5999335,39.5050935,2305 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_337_34,-74.50277787,39.32684311,2309 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_34,-74.53442091,39.52513082,2309 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_35,-74.505566,39.328763,2311 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_337_35,-74.8691125,39.4935895,2311 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,IND2,3004 -0102_337_37,-74.49971533,39.3309045,2317 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_37,-74.861194,39.4809355,2317 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_38,-74.5565017,39.47208129,2317 ARCTIC AVE RR #A,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_337_38,-74.60225765,39.32939324,2317 ARCTIC AVE RR #A,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_337_39,-74.54546126,39.50126029,2317 ARCTIC AVE RR #B,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_337_39,-74.56699681,39.34160171,2317 ARCTIC AVE RR #B,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_4,-74.49161899,39.33845568,2300 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_4,-74.8807645,39.593253,2300 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_337_40,-74.5579384,39.47757422,2319 ARCTIC AVE RR #B,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_337_40,-74.604906,39.3294665,2319 ARCTIC AVE RR #B,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_337_42,-74.500335,39.3311605,2319 ARCTIC AVE RR #A,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_337_42,-74.83329571,39.48769911,2319 ARCTIC AVE RR #A,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_337_43,-74.50399983,39.333574,2319 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_43,-74.86078716,39.44581821,2319 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_44,-74.50016191,39.33146905,2321 ARCTIC AVE,ATLANTIC CITY CITY,45,1890,2,RES1,3001 -0102_337_44,-74.82931957,39.48380967,2321 ARCTIC AVE,ATLANTIC CITY CITY,45,1890,2,RES1,3001 -0102_337_45,-74.49984235,39.33407398,2323 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_45,-74.81208797,39.45555718,2323 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_46,-74.47079309,39.49329869,2325 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_46,-74.5046125,39.330613,2325 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_47,-74.45205435,39.50274584,2327 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_47,-74.50650524,39.33171417,2327 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_48,-74.50554166,39.33340051,105 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_337_48,-74.86509369,39.45066386,105 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_337_5,-74.46133469,39.35113533,128 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_5,-74.643012,39.534109,128 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_54,-74.57889527,39.47516434,2322 SIRACUSA TERR,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_337_54,-74.56970785,39.34130426,2322 SIRACUSA TERR,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_337_55,-74.60204463,39.47398674,2320 SIRACUSA TERR,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_337_55,-74.55511019,39.35831702,2320 SIRACUSA TERR,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_337_57,-74.75450067,39.45257958,2316 SIRACUSA TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_57,-74.755862,39.2999485,2316 SIRACUSA TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_6,-74.51478047,39.32647733,126 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_6,-74.6448251,39.53421935,126 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_337_60,-74.495885,39.4949175,7 SIRACUSA TERR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_60,-74.38824333,39.39207447,7 SIRACUSA TERR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_61,-74.46363261,39.53181368,6 BLAKE ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_61,-74.40699585,39.37665946,6 BLAKE ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_62,-74.60210834,39.31084855,5 BLAKE ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_62,-74.40146235,39.38802198,5 BLAKE ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_337_7,-74.51562402,39.32735967,124 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_337_7,-74.6446185,39.534403,124 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_337_8,-74.51823306,39.31777167,122 N MISSISSIPPI AVE,ATLANTIC CITY CITY,47,1910,3,RES1,3001 -0102_337_8,-74.65177652,39.52222717,122 N MISSISSIPPI AVE,ATLANTIC CITY CITY,47,1910,3,RES1,3001 -0102_337_9,-74.5917757,39.33292892,1 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_337_9,-74.37099174,39.40452283,1 ITALY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_338_12,-74.484589,39.524332,121 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_338_12,-74.41409491,39.36944255,121 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_338_13,-74.51257406,39.49040515,119 N GEORGIA AVE RR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_338_13,-74.38412328,39.39646195,119 N GEORGIA AVE RR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_338_14,-74.5055085,39.49236,117 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_338_14,-74.391523,39.39255502,117 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_338_15,-74.49259635,39.4764428,115 N GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_338_15,-74.37679178,39.40096749,115 N GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_338_16,-74.48710823,39.49585032,117 N GEORGIA AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_338_16,-74.5014096,39.33546284,117 N GEORGIA AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_338_17,-74.514352,39.486244,119 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_338_17,-74.38524053,39.39316117,119 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_338_18,-74.49073343,39.49609123,121 N GEORGIA AVE,ATLANTIC CITY CITY,17,2009,1,RES1,3001 -0102_338_18,-74.38676803,39.39740234,121 N GEORGIA AVE,ATLANTIC CITY CITY,17,2009,1,RES1,3001 -0102_338_19,-74.46053615,39.52960555,123 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_338_19,-74.413402,39.36943,123 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_338_2,-74.78725023,39.6779858,2324 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_338_2,-74.72445,39.4336105,2324 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_338_20,-74.59218121,39.31647461,125 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,COM1,3004 -0102_338_20,-74.43782128,39.36891688,125 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_338_21,-74.59962292,39.3171692,127 N GEORGIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_338_21,-74.40695247,39.39296782,127 N GEORGIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_338_23,-74.61506033,39.30923899,129 N GEORGIA AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_338_23,-74.36378265,39.40928204,129 N GEORGIA AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_338_24,-74.58564984,39.33073242,131 N GEORGIA AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_338_24,-74.36715517,39.4084565,131 N GEORGIA AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_338_27,-74.7910855,39.678353,133 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_338_27,-74.708821,39.435653,133 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_338_28,-74.78089755,39.67280267,133 N GEORGIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_338_28,-74.717206,39.390667,133 N GEORGIA AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_338_3,-74.83292983,39.52403503,2318 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_338_3,-74.54673826,39.40266243,2318 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_338_5,-74.78305227,39.67448945,129 N GEORGIA AVE RR,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_338_5,-74.7433025,39.4138135,129 N GEORGIA AVE RR,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_338_6,-74.58315193,39.33086634,127 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_338_6,-74.3680945,39.4088005,127 N GEORGIA AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_338_8,-74.61413447,39.31064431,125 N GEORGIA AVE RR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_338_8,-74.36140763,39.41024085,125 N GEORGIA AVE RR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_338_9,-74.60538789,39.3079958,123 N GEORGIA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_338_9,-74.43951906,39.3687457,123 N GEORGIA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_1,-74.502154,39.327337,2430 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_1,-74.56496291,39.5152067,2430 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_10,-74.4966583,39.4771743,10 LIBERTY TERR,ATLANTIC CITY CITY,33,1906,1,RES1,3001 -0102_339_10,-74.509361,39.3359519,10 LIBERTY TERR,ATLANTIC CITY CITY,33,1906,1,RES1,3001 -0102_339_11,-74.7570325,39.448893,12 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_11,-74.75905716,39.30465501,12 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_13,-74.71162534,39.46562603,122 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_339_13,-74.65725767,39.363406,122 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_339_14,-74.5707925,39.480124,120 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_14,-74.6056315,39.3280235,120 N GEORGIA AVE RR #B,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_339_15,-74.713226,39.4651345,120 N GEORGIA AVE RR #A,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_15,-74.670403,39.366252,120 N GEORGIA AVE RR #A,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_339_16,-74.48530743,39.4952737,122 N GEORGIA AVE RR #A,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_16,-74.501551,39.33563,122 N GEORGIA AVE RR #A,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_17,-74.49596661,39.47257859,11 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_17,-74.377416,39.400412,11 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_18,-74.50560525,39.49460198,9 LIBERTY TERR,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_339_18,-74.39094409,39.39308264,9 LIBERTY TERR,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_339_19,-74.4902445,39.497925,7 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_19,-74.37940666,39.40085645,7 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_2,-74.5096995,39.5292145,2414 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_339_2,-74.42995311,39.37556327,2414 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_20,-74.4373745,39.519239,5 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_339_20,-74.38421353,39.39611427,5 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_21,-74.4845665,39.5376685,3 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_21,-74.40102975,39.38446633,3 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_339_22,-74.532706,39.3064665,1 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_22,-74.42231992,39.37487145,1 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_339_23,-74.61777697,39.31087385,2406 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_23,-74.36603721,39.41046513,2406 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_24,-74.57921841,39.33157128,2404 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_24,-74.365888,39.408621,2404 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_25,-74.5866447,39.33099203,2402 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_25,-74.36305281,39.41709185,2402 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_27,-74.789819,39.668265,2400 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_339_27,-74.71470569,39.40763782,2400 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_28,-74.58976288,39.32857989,136 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_339_28,-74.3606865,39.4170605,136 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_29,-74.59189532,39.32140598,134 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_29,-74.36224528,39.40886469,134 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_30,-74.61141122,39.31671898,132 N GEORGIA AVENUE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_30,-74.4001685,39.385681,132 N GEORGIA AVENUE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_31,-74.57959401,39.31250258,130 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_31,-74.4425322,39.37022093,130 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_32,-74.50702036,39.52754771,128 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_32,-74.40880908,39.37934047,128 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_339_33,-74.48490415,39.51962674,126 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_339_33,-74.39781825,39.39488255,126 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_34,-74.49674157,39.49784835,124 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_339_34,-74.38037956,39.39812236,124 N GEORGIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_35,-74.49693248,39.49453328,122 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_339_35,-74.38885344,39.39367534,122 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_339_36,-74.49573441,39.47680524,120 N GEORGIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_36,-74.37030857,39.4012511,120 N GEORGIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_37,-74.75301916,39.45258539,118 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_339_37,-74.6901415,39.361689,118 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_339_38,-74.50274267,39.32956201,2401-2439 FORMICA'S WAY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_38,-74.86733005,39.49443932,2401-2439 FORMICA'S WAY,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_339_4,-74.57713002,39.31329075,2410 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_339_4,-74.44219155,39.37236669,2410 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_339_41,-74.50804281,39.33137168,112 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_339_41,-74.82978402,39.49254069,112 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_339_43,-74.45459483,39.49732075,108 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_339_43,-74.50172466,39.33068701,108 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_44,-74.45384879,39.48839957,106 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_339_44,-74.499367,39.333579,106 N GEORGIA AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_339_45,-74.4517825,39.4952395,2401 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_45,-74.4898065,39.3329015,2401 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_47,-74.490269,39.3330215,2407 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_47,-74.75856459,39.44623433,2407 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_49,-74.52884383,39.30942051,2409 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_49,-74.726495,39.4534975,2409 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_5,-74.60302703,39.31552635,2408 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_339_5,-74.40301588,39.39081127,2408 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_50,-74.485722,39.334078,2411 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_50,-74.72461332,39.45600697,2411 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_51,-74.441412,39.353704,2413 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_51,-74.8307655,39.4070515,2413 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_54,-74.4956504,39.32800187,2417 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_339_54,-74.79973511,39.43695272,2417 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_55,-74.49757811,39.33213603,2419 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_339_55,-74.762612,39.445919,2419 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_339_56,-74.82981952,39.64317034,2421 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_339_56,-74.82895634,39.3919861,2421 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_339_58,-74.79340201,39.67037317,2423 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_58,-74.62163677,39.4924593,2423 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_339_59,-74.81762748,39.64136541,2423 ARCTIC AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_339_59,-74.812397,39.4006695,2423 ARCTIC AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_339_6,-74.52988503,39.49793174,2 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_6,-74.38544311,39.39612641,2 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_60,-74.7658135,39.6504515,2425 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_60,-74.631973,39.440245,2425 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_61,-74.97914357,39.51263198,2427 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_61,-74.6018745,39.488618,2427 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_62,-74.94856603,39.54364527,2429 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_62,-74.584671,39.4870255,2429 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_63,-74.76673066,39.6653717,103 N FLORIDA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_339_63,-74.66312519,39.45404521,103 N FLORIDA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_339_64,-74.73073517,39.687138,105 N FLORIDA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_339_64,-74.68210473,39.49524271,105 N FLORIDA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_339_65,-74.79933596,39.65408719,107 N FLORIDA AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_339_65,-74.758477,39.43291367,107 N FLORIDA AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_339_66,-74.431702,39.3624175,109 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_66,-74.7502265,39.453106,109 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_339_67,-74.4907115,39.3336115,111 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_67,-74.75657528,39.44830004,111 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_339_7,-74.5092435,39.503717,4 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_7,-74.37891798,39.39708784,4 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_72,-74.4996025,39.331011,121 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_72,-74.855544,39.480167,121 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_339_73,-74.503494,39.332542,123 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_339_73,-74.84462804,39.45436919,123 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_339_8,-74.4958368,39.49835911,6 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_339_8,-74.398187,39.38857,6 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,RES3B,3001 -0102_339_9,-74.52323845,39.47145572,8 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_339_9,-74.38495444,39.39350384,8 LIBERTY TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_34_1,-74.666576,39.4619615,2626 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_34_1,-74.56839163,39.36446183,2626 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_2,-74.5013885,39.457976,2620 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_2,-74.73578735,39.71946315,2620 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_4,-74.582156,39.4734295,106 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_4,-74.56747271,39.34301577,106 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_5,-74.946995,39.518252,108 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_5,-74.63707376,39.43492993,108 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_6,-74.57445783,39.48035451,109 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_6,-74.57009019,39.34531387,109 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_7,-74.9333305,39.480794,107 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_7,-74.64811395,39.4027672,107 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_34_8,-74.94980733,39.51932824,105 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_8,-74.64700593,39.4317137,105 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_9,-74.624957,39.436398,103 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_34_9,-74.55908498,39.36457297,103 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3002 -0102_340_1,-74.785614,39.6611045,2523 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_340_1,-74.63520648,39.48691384,2523 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_340_10,-74.927985,39.53327,2501 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_340_10,-74.56673358,39.47946019,2501 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_340_11,-74.94920275,39.51612742,2503 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_340_11,-74.566305,39.476951,2503 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_340_12,-74.946853,39.5197705,2505 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_340_12,-74.54731863,39.47238528,2505 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_340_13,-74.962501,39.504434,2507 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_340_13,-74.55476182,39.47461617,2507 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_340_14,-74.9462895,39.5192845,2509 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_340_14,-74.55170671,39.47185718,2509 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_340_15,-74.92907433,39.50829073,2511 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_340_15,-74.61105582,39.43936798,2511 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_340_16,-74.78460572,39.64240284,2507 ARCTIC AVE RR,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_340_16,-74.69336178,39.44079516,2507 ARCTIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_340_3,-74.80098784,39.64465048,2506 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_340_3,-74.7171675,39.393202,2506 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_340_4,-74.79744742,39.64073465,2504 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_340_4,-74.71114647,39.43494114,2504 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_340_5,-74.42568631,39.36657584,114 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_340_5,-74.71959813,39.45230984,114 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_340_6,-74.836909,39.6428065,112 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_340_6,-74.83048761,39.38861453,112 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_340_7,-74.80148217,39.64048133,108 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_340_7,-74.71583258,39.40963045,108 N FLORIDA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_340_8,-74.779884,39.669589,106 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_340_8,-74.619278,39.49503217,106 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_340_9,-74.7202555,39.639654,104 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_340_9,-74.62847381,39.43767534,104 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,2,REL1,3004 -0102_341_1,-74.4569945,39.4895825,2526 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_1,-74.50165847,39.3318894,2526 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_10,-74.51892097,39.46961464,7 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_341_10,-74.488517,39.334003,7 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_11,-74.52226478,39.45598751,9 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_11,-74.52669579,39.31136941,9 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_12,-74.50362531,39.33099019,2512 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_341_12,-74.8619045,39.4870215,2512 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_13,-74.5085166,39.32980968,2508 FAIRMOUNT AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_341_13,-74.88015106,39.48335105,2508 FAIRMOUNT AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_341_14,-74.55333378,39.47184541,2506 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_14,-74.6018536,39.32924705,2506 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_341_15,-74.564766,39.471614,2504 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_341_15,-74.60225697,39.32868967,2504 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_341_16,-74.5643945,39.4792845,2502 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_341_16,-74.60133253,39.32675732,2502 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_17,-74.72056545,39.4657562,144 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_341_17,-74.6887425,39.3590635,144 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_341_18,-74.599858,39.47411,142 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_18,-74.56712953,39.35043348,142 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_19,-74.5692721,39.47958286,140 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_19,-74.60561515,39.32769705,140 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_20,-74.5582155,39.4764315,138 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_20,-74.59940063,39.32946686,138 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_21,-74.54586027,39.47185935,136 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_21,-74.6007615,39.3312285,136 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,EDU1,3004 -0102_341_22,-74.50071628,39.33095917,134 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_22,-74.8622405,39.4862175,134 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_23,-74.50419978,39.33154607,132 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_23,-74.83097262,39.47690482,132 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_24,-74.4712355,39.4932895,122 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_24,-74.50375758,39.33025067,122 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_25,-74.4599575,39.4802955,120 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_341_25,-74.49611455,39.33378166,120 N FLORIDA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_341_26,-74.49096834,39.33153398,118 N FLORIDA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_26,-74.734993,39.475724,118 N FLORIDA AVE,ATLANTIC CITY CITY,27,1900,2,COM4,3004 -0102_341_27,-74.50839765,39.32288223,116 N FLORIDA AVE,ATLANTIC CITY CITY,27,1900,2,AGR1,3001 -0102_341_27,-74.75445968,39.45181048,116 N FLORIDA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_28,-74.506379,39.325278,2501 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_341_28,-74.7109745,39.466196,2501 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_29,-74.440499,39.36787917,2503 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_29,-74.74701972,39.44836982,2503 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_30,-74.44151975,39.35271413,2505 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_30,-74.84367538,39.40736897,2505 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_31,-74.42111819,39.36801547,2507 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_31,-74.84667454,39.37368524,2507 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_32,-74.83070037,39.64416885,2509 CENTENNIAL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_341_32,-74.8236545,39.38905,2509 CENTENNIAL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_341_34,-74.815466,39.641864,2513 CENTENNIAL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_341_34,-74.7357755,39.433644,2513 CENTENNIAL AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_341_35,-74.46891083,39.48990856,2517 CENTENNIAL AVE,ATLANTIC CITY CITY,17,1910,1,GOV1,3004 -0102_341_35,-74.5090505,39.339134,2517 CENTENNIAL AVE,ATLANTIC CITY CITY,17,1910,1,GOV1,3004 -0102_341_36,-74.47378833,39.49208099,2519 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_341_36,-74.50707,39.340563,2519 CENTENNIAL AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_341_37,-74.791795,39.643151,2521 CENTENNIAL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_341_37,-74.681499,39.4434815,2521 CENTENNIAL AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_341_38,-74.88674075,39.59847254,119 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_341_38,-74.60779635,39.50178696,119 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_341_39,-74.79302264,39.64161006,121 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_341_39,-74.693524,39.4493485,121 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_341_41,-74.80548386,39.64472393,2514 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_41,-74.691932,39.4997225,2514 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_42,-74.80195204,39.64182987,2512 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_42,-74.7622945,39.3867555,2512 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_43,-74.802009,39.649446,2510 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_43,-74.75982675,39.43218287,2510 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_44,-74.46919199,39.48805588,2508 TINDARO TERR,ATLANTIC CITY CITY,33,1920,1,RES1,3002 -0102_341_44,-74.50814805,39.33731659,2508 TINDARO TERR,ATLANTIC CITY CITY,33,1920,1,AGR1,3001 -0102_341_45,-74.5028315,39.325118,2506 TINDARO CT,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_341_45,-74.71264097,39.46498816,2506 TINDARO CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_46,-74.4694775,39.48786833,2504 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_46,-74.50730983,39.33587606,2504 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_47,-74.48912367,39.33194099,2502 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_47,-74.71175561,39.47094971,2502 TINDARO TERR,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_341_5,-74.55039432,39.47531623,2516 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,2017,1,RES1,3001 -0102_341_5,-74.61260356,39.31915722,2516 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,2017,1,RES1,3001 -0102_341_51,-74.4282415,39.3675135,2505 TINDARO TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_341_51,-74.841354,39.4277055,2505 TINDARO TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_341_52,-74.44173587,39.35757984,2507 TINDARO TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_341_52,-74.84835908,39.40074316,2507 TINDARO TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_341_54,-74.8162615,39.6541115,125 N TEXAS AVE #B,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_341_54,-74.7613545,39.4315895,125 N TEXAS AVE #B,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_341_55,-74.8087035,39.662359,125 N TEXAS AVE #A,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_55,-74.84035081,39.37439786,125 N TEXAS AVE #A,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_56,-74.44321534,39.3575076,127 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_341_56,-74.82001,39.409685,127 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_341_6,-74.5471625,39.474911,2514 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_6,-74.60558976,39.33192831,2514 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_7,-74.4636605,39.4938955,1 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,2017,1,RES1,3001 -0102_341_7,-74.5028265,39.3331515,1 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,2017,1,GOV1,3004 -0102_341_8,-74.45231189,39.490403,3 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_8,-74.4947065,39.330726,3 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_9,-74.450879,39.4915625,5 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_341_9,-74.4961445,39.3325495,5 FAIRMOUNT TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_342_10,-74.37324367,39.41391157,120 N TEXAS AVE RR #A,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_10,-74.79279216,39.64176553,120 N TEXAS AVE RR #A,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_12,-74.4759761,39.48404106,120 N TEXAS AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_12,-74.487785,39.336681,120 N TEXAS AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_13,-74.47467696,39.48664366,120 N TEXAS AVE RR #D,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_13,-74.49461083,39.3369355,120 N TEXAS AVE RR #D,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_14,-74.3628835,39.4148975,116 N TEXAS AVE RR,ATLANTIC CITY CITY,16,2015,1,COM1,3004 -0102_342_14,-74.973537,39.5124095,116 N TEXAS AVE RR,ATLANTIC CITY CITY,16,2015,1,RES1,3001 -0102_342_15,-74.9254015,39.525009,116 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_342_15,-74.55640586,39.4665707,116 N TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_342_17,-74.3625955,39.413107,114 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_342_17,-74.68836318,39.65504751,114 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,COM3,3004 -0102_342_18,-74.373035,39.4030015,114 N TEXAS AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_342_18,-74.9679295,39.5288645,114 N TEXAS AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_342_19,-74.37117583,39.407204,114 N TEXAS AVE RR #A,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_342_19,-74.93110532,39.52847659,114 N TEXAS AVE RR #A,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_342_2,-74.51362951,39.46976267,2600 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_2,-74.50558809,39.32383066,2600 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_20,-74.364533,39.406881,114 N TEXAS AVE RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_20,-74.94847241,39.51491475,114 N TEXAS AVE RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_21,-74.51637908,39.468655,114 N TEXAS AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_21,-74.467099,39.356472,114 N TEXAS AVE RR #C,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_22,-74.5309405,39.459451,114 N TEXAS AVE RR #D,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_22,-74.44399125,39.36711921,114 N TEXAS AVE RR #D,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_3,-74.77078501,39.66374916,126 N TEXAS AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_3,-74.68943675,39.44744152,126 N TEXAS AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_30,-74.5082053,39.33499052,2601 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_342_30,-74.80625467,39.63939047,2601 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_342_31,-74.90988773,39.48839826,2603 ARCTIC AVE,ATLANTIC CITY CITY,,1950,1,GOV1,3004 -0102_342_31,-74.53910892,39.46815291,2603 ARCTIC AVE,ATLANTIC CITY CITY,,1950,1,GOV1,3004 -0102_342_32,-74.900767,39.4874505,2605 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_342_32,-74.53253115,39.46964966,2605 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_342_33,-74.39715105,39.38757968,2607 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_342_33,-74.89210237,39.47620116,2607 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_342_34,-74.39789446,39.39320979,2609 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_342_34,-74.83714683,39.63238001,2609 ARCTIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_342_37,-74.50530637,39.33510885,2611 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_37,-74.7964514,39.63462031,2611 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_38,-74.55373296,39.46819671,2613 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_38,-74.59276582,39.32600527,2613 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_39,-74.91191476,39.50779185,2615 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_342_39,-74.5406175,39.4665455,2615 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_342_4,-74.97996334,39.51340604,124 N TEXAS AVE #A,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_342_4,-74.60237916,39.48331383,124 N TEXAS AVE #A,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_342_40,-74.85428731,39.61730655,2617 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_40,-74.68538,39.414254,2617 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_41,-74.60142455,39.43647781,2619 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_342_41,-74.60923953,39.32545833,2619 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_42,-74.57988371,39.44591942,2621 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_342_42,-74.598644,39.317434,2621 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_43,-74.5558405,39.466208,2623 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_43,-74.6063248,39.3226397,2623 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_44,-74.54850083,39.46335484,2625 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_44,-74.58389736,39.32968462,2625 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_45,-74.551659,39.4638225,2631 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_342_45,-74.57806708,39.33207302,2631 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_46,-74.53869164,39.4699068,2635 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_342_46,-74.5912425,39.318726,2635 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_47,-74.492314,39.3401925,2637 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_342_47,-74.88211109,39.58540735,2637 ARCTIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_49,-74.7024,39.42257026,2641 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_49,-74.58473942,39.32477618,2641 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_5,-74.46315925,39.49772818,124 N TEXAS AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_5,-74.50534695,39.34120313,124 N TEXAS AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_50,-74.55280782,39.46767272,105 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_50,-74.58011881,39.33331779,105 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_51,-74.53365111,39.38156639,105 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_51,-74.52286767,39.39228956,105 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_52,-74.543005,39.3825185,105 N CALIFORNIA RR #A,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_52,-74.51548438,39.40183516,105 N CALIFORNIA RR #A,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_53,-74.5627983,39.3716731,107 N CALIFORNIA RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_53,-74.51492369,39.39937983,107 N CALIFORNIA RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_342_54,-74.5370229,39.37875336,107 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_54,-74.52588381,39.38742924,107 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_55,-74.56082126,39.45961644,107 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,2018,1,RES1,3001 -0102_342_55,-74.59308011,39.32717985,107 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,2018,1,GOV1,3004 -0102_342_56,-74.536543,39.3794605,639 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_342_56,-74.530894,39.3907835,639 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_57,-74.55542633,39.37543363,109 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_342_57,-74.5152535,39.400627,109 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_58,-74.5383165,39.3916745,109 N CALIFORNIA RR #A,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_342_58,-74.522247,39.4002345,109 N CALIFORNIA RR #A,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_342_59,-74.51570341,39.45454119,111 N CALIFORNIA RR #A,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_342_59,-74.4592185,39.3532845,111 N CALIFORNIA RR #A,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_60,-74.57175445,39.38522966,111 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_60,-74.5190425,39.39433,111 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_61,-74.54674565,39.38108606,111 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_342_61,-74.519361,39.401746,111 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_62,-74.5540431,39.37915876,113 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_62,-74.52010198,39.39596168,113 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_342_63,-74.5430905,39.3857595,113 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_342_63,-74.52557502,39.39800465,113 N CALIFORNIA RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_64,-74.52823758,39.46633693,113 N CALIFORNIA RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_64,-74.48324723,39.35431193,113 N CALIFORNIA RR #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_65,-74.5434435,39.38549,115 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_342_65,-74.525518,39.3953065,115 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_342_66,-74.5204855,39.455557,117 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_342_66,-74.451457,39.365155,117 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_342_67,-74.461313,39.4707315,119 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_342_67,-74.48670421,39.35175711,119 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_342_68,-74.45099991,39.47936784,121 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_342_68,-74.49401934,39.33873398,121 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_342_69,-74.46095852,39.49882484,123 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_69,-74.49796646,39.33442067,123 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_342_8,-74.92906055,39.50780443,120 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_342_8,-74.61802666,39.43869202,120 N TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_342_9,-74.37265183,39.4124245,120 N TEXAS AVE RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_342_9,-74.78505471,39.64115463,120 N TEXAS AVE RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_343_1,-74.47077283,39.48412378,2722 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_343_1,-74.48956585,39.33684397,2722 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_343_11,-74.45252512,39.5011682,196 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_343_11,-74.49753017,39.334788,196 N CALIFORNIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_343_12,-74.45500433,39.48862267,194 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_12,-74.49168166,39.3351345,194 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_15,-74.40456198,39.39401282,122 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_15,-74.939594,39.5174865,122 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_343_16,-74.568246,39.441209,5 VICTORIA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_16,-74.59250041,39.3249703,5 VICTORIA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_17,-74.58215041,39.44795077,116 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_17,-74.60403415,39.32225754,116 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_343_19,-74.46412434,39.3528445,4 VICTORIA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_19,-74.787203,39.6386175,4 VICTORIA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_2,-74.47484116,39.48316653,2720 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_343_2,-74.493506,39.3355945,2720 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_343_20,-74.47830256,39.34316276,3 VICTORIA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_20,-74.78503323,39.60891481,3 VICTORIA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_21,-74.47998497,39.34640282,2 VICTORIA PL,ATLANTIC CITY CITY,27,1890,2,RES1,3001 -0102_343_21,-74.714858,39.582947,2 VICTORIA PL,ATLANTIC CITY CITY,27,1890,2,RES1,3001 -0102_343_22,-74.48728238,39.35099191,1 VICTORIA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_22,-74.83430075,39.57075825,1 VICTORIA PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_23,-74.6421365,39.432938,112 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_23,-74.60609384,39.31541052,112 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_24,-74.48441898,39.34408983,110 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1890,1,RES1,3001 -0102_343_24,-74.7510321,39.60680617,110 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1890,1,RES1,3001 -0102_343_25,-74.471397,39.3450235,2701 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_25,-74.7984275,39.5406285,2701 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_26,-74.479805,39.3381525,2703 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_343_26,-74.814521,39.533433,2703 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_343_27,-74.475749,39.3392155,2705 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_343_27,-74.6595265,39.632428,2705 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_343_28,-74.47162241,39.34270982,2707 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_343_28,-74.60402433,39.600921,2707 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_343_29,-74.473932,39.341337,2709 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_343_29,-74.6610525,39.6346345,2709 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_30,-74.4619515,39.3464505,2711 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_343_30,-74.7021385,39.5660715,2711 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_343_31,-74.45712266,39.3492935,2713 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_343_31,-74.68844262,39.51831062,2713 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_343_32,-74.46185263,39.34765169,2715 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_32,-74.68301391,39.55302486,2715 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_34,-74.48368617,39.33489199,103 MAXWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_34,-74.843939,39.5324185,103 MAXWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_343_35,-74.47546677,39.34202062,105 MAXWELL AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_343_35,-74.65611381,39.62700597,105 MAXWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_36,-74.48308378,39.33976757,107 MAXWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_36,-74.81515717,39.53552865,107 MAXWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_343_37,-74.48479078,39.34503035,115 MAXWELL AVE,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_343_37,-74.78062428,39.58707938,115 MAXWELL AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_343_38,-74.45948118,39.35882235,117 MAXWELL AVE,ATLANTIC CITY CITY,34,1900,1,GOV1,3004 -0102_343_38,-74.7730765,39.628344,117 MAXWELL AVE,ATLANTIC CITY CITY,34,1900,1,RES1,3001 -0102_343_39,-74.66896,39.4147905,119 MAXWELL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_343_39,-74.601821,39.3121795,119 MAXWELL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_343_4,-74.4735497,39.48315296,2718 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_343_4,-74.49108344,39.33543769,2718 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_343_41,-74.45595443,39.47886315,127 MAXWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_41,-74.487971,39.337803,127 MAXWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_343_5,-74.45248271,39.48849895,2716 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_343_5,-74.49597834,39.33540871,2716 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_343_6,-74.446069,39.4882425,2714 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_343_6,-74.4975885,39.335319,2714 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_343_8,-74.47443689,39.49375726,198 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_343_8,-74.50620745,39.34096358,198 N CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_1,-74.4440515,39.486319,161 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_344_1,-74.49177442,39.33950114,161 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_344_10,-74.4494684,39.3537741,131 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_10,-74.7635333,39.62885103,131 N IOWA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_344_11,-74.4841725,39.346046,129 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_344_11,-74.724111,39.587992,129 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_344_12,-74.48410842,39.33660133,125 N IOWA AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_344_12,-74.82088801,39.53538168,125 N IOWA AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_344_14,-74.4643805,39.349449,119 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_344_14,-74.66711708,39.5160681,119 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_344_15,-74.64015015,39.43384404,115 N IOWA AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_344_15,-74.5943605,39.3118105,115 N IOWA AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_344_16,-74.81989593,39.63519884,102 MAXWELL AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_344_16,-74.646233,39.43317,102 MAXWELL AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_344_17,-74.81239448,39.63922739,2721 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_17,-74.6198,39.43194361,2721 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_18,-74.80487319,39.63388042,2723 ARCTIC AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_344_18,-74.62816384,39.43326028,2723 ARCTIC AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_344_19,-74.80017517,39.6366931,2725 ARCTIC AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_344_19,-74.62763883,39.43389177,2725 ARCTIC AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_344_2,-74.4668845,39.473104,2724 FAIRMOUNT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_344_2,-74.4952479,39.33766064,2724 FAIRMOUNT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3004 -0102_344_20,-74.8101905,39.628351,2727 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_20,-74.62623572,39.43596429,2727 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_21,-74.7535575,39.4540485,101 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_21,-74.5515891,39.39161985,101 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_22,-74.80260843,39.63183535,109 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_344_22,-74.62876665,39.43287244,109 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_344_3,-74.52637797,39.46365639,159 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_344_3,-74.48262516,39.35181251,159 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_344_4,-74.5398275,39.38556838,155 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_4,-74.52455333,39.3988015,155 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_5,-74.5326525,39.4002925,130 MAXWELL AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_344_5,-74.52452048,39.39492767,130 MAXWELL AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_344_6,-74.54136407,39.39202868,151 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_344_6,-74.530176,39.401987,151 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_344_7,-74.546039,39.3776135,147 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_7,-74.51088478,39.40078133,147 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_8,-74.81879284,39.63300798,139 N IOWA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_344_8,-74.69264734,39.41890801,139 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_344_9,-74.64611362,39.43144376,135 N IOWA AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_344_9,-74.59840745,39.31276724,135 N IOWA AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_345_1,-74.51630726,39.45855808,115 N BRIGHTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_1,-74.4619135,39.3536985,115 N BRIGHTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_10,-74.55090807,39.36909479,2816 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_10,-74.51857031,39.39021645,2816 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_11,-74.54005106,39.38493819,2814 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_345_11,-74.51680366,39.388481,2814 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_345_12,-74.551014,39.374902,2815 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_12,-74.4551695,39.373362,2815 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_13,-74.54356822,39.37212231,2811 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_345_13,-74.51101901,39.38517666,2811 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_14,-74.5330005,39.3838985,2812 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_14,-74.51093569,39.38530661,2812 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_15,-74.532403,39.382969,2810 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_345_15,-74.52701615,39.39338425,2810 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_345_16,-74.47747812,39.34327531,2809 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_16,-74.77425547,39.61231916,2809 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_17,-74.583689,39.445968,2808 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_345_17,-74.6065455,39.3182445,2808 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_345_18,-74.449269,39.3552005,2807 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_18,-74.7609881,39.63049932,2807 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_19,-74.64125212,39.42222073,2805 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_19,-74.60679642,39.31598465,2805 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_2,-74.54252041,39.37583665,117 N BRIGHTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_2,-74.44522747,39.37468619,117 N BRIGHTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_20,-74.88935088,39.46736535,2806 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_345_20,-74.704587,39.4315925,2806 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_21,-74.5557095,39.370308,132 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_21,-74.51851397,39.39780465,132 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_22,-74.55679228,39.46702788,128 N IOWA AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_345_22,-74.60427131,39.32512631,128 N IOWA AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_345_23,-74.54228353,39.45807332,126 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_23,-74.594534,39.3217855,126 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_24,-74.70185721,39.42277477,124 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_24,-74.5843795,39.3250125,124 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_26,-74.46211745,39.35767414,2800 CARLTON AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_345_26,-74.79175021,39.62701043,2800 CARLTON AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_345_3,-74.55059921,39.37462099,2836 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_3,-74.4765555,39.37065,2836 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_34,-74.81135199,39.63246273,2819 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_34,-74.6352381,39.43062216,2819 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_35,-74.8177471,39.62405872,2817 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_35,-74.6336,39.4284785,2817 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_36,-74.63520101,39.43245979,2815 DENNY ST,ATLANTIC CITY CITY,27,1908,2,RES1,3001 -0102_345_36,-74.60785067,39.31672172,2815 DENNY ST,ATLANTIC CITY CITY,27,1908,2,RES1,3001 -0102_345_37,-74.46268668,39.34967945,2813 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_37,-74.645371,39.53024522,2813 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_38,-74.45699116,39.34913901,2811 DENNY ST,ATLANTIC CITY CITY,27,1908,2,RES1,3001 -0102_345_38,-74.6318605,39.5403995,2811 DENNY ST,ATLANTIC CITY CITY,27,1908,2,RES1,3001 -0102_345_39,-74.46115433,39.34744901,2809 DENNY ST,ATLANTIC CITY CITY,27,1908,2,RES1,3001 -0102_345_39,-74.67975703,39.55171366,2809 DENNY ST,ATLANTIC CITY CITY,27,1908,2,RES1,3001 -0102_345_4,-74.5447535,39.374063,2834 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_4,-74.50842058,39.38453652,2834 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_41,-74.469129,39.3424605,2807 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_41,-74.695233,39.59232112,2807 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_42,-74.4798935,39.3407205,2805 DENNY ST,ATLANTIC CITY CITY,27,1908,2,RES1,3001 -0102_345_42,-74.69107502,39.6337143,2805 DENNY ST,ATLANTIC CITY CITY,27,1908,2,RES1,3001 -0102_345_43,-74.47773359,39.33811033,122 N IOWA AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_345_43,-74.8128655,39.5297375,122 N IOWA AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_345_44,-74.47138683,39.3424485,120 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_345_44,-74.62122092,39.60620776,120 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_345_45,-74.463937,39.347706,118 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_345_45,-74.67271898,39.55487467,118 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_345_46,-74.63466831,39.43022046,116 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_345_46,-74.59896167,39.31616929,116 N IOWA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_345_47,-74.7283406,39.45075969,2820 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_47,-74.5502845,39.381078,2820 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_48,-74.723955,39.4601905,2818 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_48,-74.57495534,39.36957149,2818 DENNY ST,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_345_5,-74.55257872,39.37090759,2832 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_345_5,-74.5299385,39.3848305,2832 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_345_50,-74.7283595,39.4562015,2814 DENNY ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_345_50,-74.56596131,39.36904938,2814 DENNY ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_345_51,-74.73547593,39.45343577,2812 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_51,-74.54007881,39.39147647,2812 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_52,-74.83206758,39.61316834,2810 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_52,-74.63100487,39.42303238,2810 DENNY ST,ATLANTIC CITY CITY,27,1900,2,COM3,3004 -0102_345_53,-74.80246135,39.62836082,2808 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_53,-74.6317995,39.4204075,2808 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_54,-74.805023,39.637603,2806 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_54,-74.6263625,39.4354615,2806 DENNY ST,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_345_55,-74.8110855,39.632532,112 N IOWA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_345_55,-74.6306362,39.43104552,112 N IOWA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_345_56,-74.7960965,39.6335575,110 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_345_56,-74.6218707,39.43320357,110 N IOWA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_345_57,-74.8024104,39.63013111,108 N IOWA AVE #B,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_345_57,-74.63231969,39.42253161,108 N IOWA AVE #B,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_345_58,-74.715163,39.4656595,108 N IOWA AVE #A,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_58,-74.5689535,39.368303,108 N IOWA AVE #A,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_345_59,-74.7476321,39.44526962,106 N IOWA AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_345_59,-74.5648255,39.3722515,106 N IOWA AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_345_60,-74.717659,39.4509015,104 N IOWA AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_345_60,-74.55308632,39.3834589,104 N IOWA AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_345_61,-74.83429926,39.3733542,102 N IOWA AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_345_61,-74.5506045,39.36902567,102 N IOWA AVE,ATLANTIC CITY CITY,27,1922,2,RES1,3001 -0102_345_62,-74.70752188,39.43010423,2801 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_345_62,-74.54867666,39.37503117,2801 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_345_63,-74.73319346,39.44887755,2803 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_345_63,-74.5540933,39.37344462,2803 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_345_65,-74.84318232,39.40862405,2817 ARCTIC AVE,ATLANTIC CITY CITY,47,1900,4,RES1,3001 -0102_345_65,-74.53424033,39.37799198,2817 ARCTIC AVE,ATLANTIC CITY CITY,47,1900,4,RES1,3001 -0102_345_66,-74.78694159,39.42114777,2819 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_66,-74.54718972,39.37261019,2819 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_69,-74.711904,39.3691355,2825 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_345_69,-74.85678822,39.36604168,2825 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_345_7,-74.54656265,39.37570554,2821 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES3B,3001 -0102_345_7,-74.4542055,39.3727595,2821 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_345_70,-74.71658432,39.41272876,2829 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_70,-74.54058888,39.37446163,2829 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_71,-74.70045934,39.48984748,2831 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_71,-74.81084729,39.36738134,2831 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_72,-74.6240745,39.491171,2833 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_345_72,-74.68666315,39.35658332,2833 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_345_73,-74.6641845,39.455421,2835 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_73,-74.65241182,39.35745253,2835 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_345_74,-74.6903885,39.4476945,2837 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_345_74,-74.64085546,39.36654024,2837 ARCTIC AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_345_75,-74.84984029,39.37523977,101 N BRIGHTON AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_345_75,-74.53789259,39.38335036,101 N BRIGHTON AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_345_76,-74.74987432,39.44639819,103 N BRIGTON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_345_76,-74.56411149,39.37064507,103 N BRIGTON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_345_77,-74.48752145,39.46937764,105 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1927,3,COM4,3004 -0102_345_77,-74.46161,39.355533,105 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1927,3,RES1,3001 -0102_345_78,-74.4873333,39.46508963,107 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_345_78,-74.4621065,39.354853,107 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_345_79,-74.5087259,39.46211038,109 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,4,GOV1,3004 -0102_345_79,-74.45970578,39.35400017,109 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_345_8,-74.551307,39.375664,2819 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_345_8,-74.44367682,39.37265532,2819 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_9,-74.54828823,39.3753753,2817 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_345_9,-74.4473635,39.372549,2817 CARLTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_1,-74.7124935,39.4717815,129 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_1,-74.61364054,39.39913781,129 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_10,-74.87102533,39.453301,2920 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES2,3005 -0102_346_10,-74.56055143,39.4146777,2920 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_11,-74.86366852,39.49037358,2918 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_11,-74.569553,39.4276225,2918 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_13,-74.941117,39.5279165,2908 FAIRMOUNT AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_13,-74.53992273,39.47269456,2908 FAIRMOUNT AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_14,-74.774765,39.6136385,2916 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_14,-74.58259106,39.4319104,2916 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_15,-74.77164617,39.63744069,2914 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_15,-74.59016022,39.43350248,2914 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_16,-74.77754218,39.63319751,2912 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_16,-74.60038574,39.41968104,2912 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_17,-74.7901805,39.636643,2910 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_17,-74.5990605,39.431723,2910 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_18,-74.82203444,39.60550668,2908 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_18,-74.6160775,39.4318485,2908 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_2,-74.94894312,39.51540775,127 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_2,-74.53701173,39.4678266,127 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_20,-74.365225,39.4080455,126 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_20,-74.66245422,39.58343434,126 N BRIGHTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_21,-74.878252,39.598851,124 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_21,-74.63726811,39.36893744,124 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_22,-74.86209851,39.58789959,122 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3002 -0102_346_22,-74.6176435,39.431443,122 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_346_23,-74.77543176,39.63165011,120 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_346_23,-74.59804843,39.41927223,120 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_346_24,-74.5554,39.46821,118 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_24,-74.56421339,39.35718667,118 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_25,-74.5504362,39.46451329,116 N BRIGHTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_25,-74.56799529,39.35824176,116 N BRIGHTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_26,-74.7137965,39.4728455,114 N BRIGHTON AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_26,-74.59894437,39.40149118,114 N BRIGHTON AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_27,-74.919847,39.5202585,114 N BRIGHTON AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_27,-74.7065163,39.41630354,114 N BRIGHTON AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_29,-74.5521985,39.4658035,112 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_346_29,-74.55080961,39.36004658,112 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_346_3,-74.92831089,39.50831407,125 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_346_3,-74.70017389,39.42514566,125 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_30,-74.54827871,39.46632879,110 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_346_30,-74.5517495,39.36119633,110 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_346_31,-74.539179,39.4679515,2905 ARCTIC AVE RR,ATLANTIC CITY CITY,15,1900,1,RES1,3001 -0102_346_31,-74.570783,39.343431,2905 ARCTIC AVE RR,ATLANTIC CITY CITY,15,1900,1,RES1,3001 -0102_346_32,-74.5492454,39.46911571,108 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_346_32,-74.550304,39.363857,108 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_346_33,-74.53355888,39.46684581,2901 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_346_33,-74.55181376,39.36418533,2901 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_346_34,-74.53894322,39.46889908,2903 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_346_34,-74.5697155,39.3446385,2903 ARCTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_346_35,-74.53654522,39.45491903,2905 ARCTIC AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_346_35,-74.57022967,39.34812551,2905 ARCTIC AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_346_36,-74.53986178,39.46966041,2907 ARCTIC AVE,ATLANTIC CITY CITY,17,1924,1,RES1,3001 -0102_346_36,-74.56848842,39.34711267,2907 ARCTIC AVE,ATLANTIC CITY CITY,17,1924,1,RES1,3001 -0102_346_37,-74.53729978,39.45622088,2909 ARCTIC AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_346_37,-74.57385004,39.34888582,2909 ARCTIC AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_346_38,-74.575272,39.428889,2913 ARCTIC AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_346_38,-74.42332683,39.36049467,2913 ARCTIC AVE,ATLANTIC CITY CITY,45,1925,4,RES3A,3001 -0102_346_39,-74.598981,39.4295615,101 N MORRIS AVE #B,ATLANTIC CITY CITY,45,1913,2,RES1,3001 -0102_346_39,-74.42446227,39.3674095,101 N MORRIS AVE #B,ATLANTIC CITY CITY,45,1913,2,RES1,3001 -0102_346_4,-74.930962,39.4897865,123 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_4,-74.634487,39.4305615,123 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_40,-74.80289459,39.63617442,101 N MORRIS AVE #A,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_346_40,-74.67315295,39.37561755,101 N MORRIS AVE #A,ATLANTIC CITY CITY,45,1900,3,COM1,3004 -0102_346_41,-74.45939035,39.45252843,103 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_346_41,-74.79500123,39.64566287,103 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_346_42,-74.48943823,39.44572078,105 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_346_42,-74.81567776,39.6413976,105 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_346_43,-74.51751614,39.45212855,107 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_43,-74.8124915,39.6579615,107 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_44,-74.504062,39.468742,111 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_44,-74.519682,39.3155375,111 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_45,-74.942312,39.4959915,2920 FAIRMOUNT AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_45,-74.63831047,39.43043983,2920 FAIRMOUNT AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_346_5,-74.90254481,39.48652314,121 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_5,-74.62275074,39.4218586,121 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_346_6,-74.88870499,39.45842345,119 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_6,-74.65817882,39.40333255,119 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_346_7,-74.85971507,39.61942766,117 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_346_7,-74.63103626,39.41367652,117 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_346_8,-74.84601481,39.60795305,115 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_346_8,-74.624599,39.4117865,115 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_347_1,-74.51632946,39.43906969,121 N CHELSEA AVE,ATLANTIC CITY CITY,45,1950,3,RES1,3001 -0102_347_1,-74.797927,39.654038,121 N CHELSEA AVE,ATLANTIC CITY CITY,45,1950,3,RES1,3001 -0102_347_10,-74.85779271,39.61729666,126 N MORRIS AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_347_10,-74.646251,39.4091255,126 N MORRIS AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_347_11,-74.85396046,39.60903468,124 N MORRIS AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_347_11,-74.63314944,39.41593979,124 N MORRIS AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_347_12,-74.8120415,39.636295,122 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_347_12,-74.62718003,39.40785332,122 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_347_13,-74.4925485,39.468214,120 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_347_13,-74.4855945,39.3336315,120 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,REL1,3004 -0102_347_14,-74.52631277,39.44783842,118 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_347_14,-74.4249225,39.36651,118 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_347_15,-74.51126715,39.43900495,116 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_347_15,-74.815688,39.655427,116 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_347_16,-74.51149546,39.42996719,3011 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,COM1,3004 -0102_347_16,-74.738585,39.7043995,3011 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_17,-74.414151,39.50380884,3009 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_17,-74.8015655,39.6474425,3009 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_18,-74.4781678,39.44235694,3007 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_18,-74.7965595,39.642261,3007 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_19,-74.48048839,39.44849176,3005 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_19,-74.8005785,39.64220317,3005 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_2,-74.5217265,39.4430755,3024 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_2,-74.8223255,39.6539835,3024 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_20,-74.4881875,39.4437905,3003 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_20,-74.80838127,39.64293836,3003 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,COM4,3004 -0102_347_21,-74.50786315,39.43719396,140 N MORRIS AVE,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_21,-74.810863,39.641647,140 N MORRIS AVE,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_23,-74.5147055,39.4321345,110 N MORRIS AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_347_23,-74.78344392,39.66483225,110 N MORRIS AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_347_24,-74.80193437,39.63936032,108 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,COM7,3004 -0102_347_24,-74.62738616,39.39210797,108 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_347_25,-74.40334238,39.38555148,106 N MORRIS AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_347_25,-74.68101599,39.56898083,106 N MORRIS AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_347_26,-74.602365,39.434114,104 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_347_26,-74.42494936,39.36736256,104 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_347_28,-74.58342795,39.42127861,3001 ARCTIC AVE,ATLANTIC CITY CITY,45,1915,4,RES1,3001 -0102_347_28,-74.43032759,39.36671845,3001 ARCTIC AVE,ATLANTIC CITY CITY,45,1915,4,RES1,3001 -0102_347_29,-74.5743903,39.44728511,3005 ARCTIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_347_29,-74.57175502,39.34990013,3005 ARCTIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_347_3,-74.5272765,39.45130668,3022 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_3,-74.42162562,39.36736769,3022 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_30,-74.66556932,39.42085693,3007 ARCTIC AVE,ATLANTIC CITY CITY,17,1901,1,RES1,3001 -0102_347_30,-74.57202342,39.33559229,3007 ARCTIC AVE,ATLANTIC CITY CITY,17,1901,1,RES1,3001 -0102_347_31,-74.63568185,39.42792952,101 N CHELSEA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_347_31,-74.60761,39.3300535,101 N CHELSEA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_347_32,-74.64265442,39.43437906,103 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,3,GOV1,3004 -0102_347_32,-74.57340503,39.34242161,103 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_347_33,-74.67940378,39.41368344,105 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_347_33,-74.57159887,39.33758716,105 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_347_34,-74.55413352,39.43650619,107 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_34,-74.5624601,39.34680721,107 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_35,-74.5408758,39.4593854,109 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_347_35,-74.56586816,39.3497376,109 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_347_36,-74.60594007,39.41223502,111 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_347_36,-74.43025317,39.36714056,111 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_347_37,-74.582167,39.431789,113 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_37,-74.4252942,39.36074491,113 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_38,-74.5959565,39.429496,115 N CHELSEA AVE,ATLANTIC CITY CITY,45,1950,3,RES1,3001 -0102_347_38,-74.42092355,39.35797516,115 N CHELSEA AVE,ATLANTIC CITY CITY,45,1950,3,RES1,3001 -0102_347_39,-74.40004612,39.38728852,117 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_347_39,-74.656892,39.5512655,117 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_347_4,-74.49744928,39.45406297,3020 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_4,-74.424177,39.363019,3020 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_347_41,-74.36310677,39.40995671,139 N CHELSEA AVE,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_41,-74.615573,39.5984355,139 N CHELSEA AVE,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_42,-74.81135834,39.61766151,3021 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_42,-74.6241085,39.3786065,3021 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,GOV1,3004 -0102_347_43,-74.8095305,39.630047,3019 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,GOV1,3004 -0102_347_43,-74.654967,39.369482,3019 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_44,-74.79772484,39.63761853,3017 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_44,-74.6336815,39.3880615,3017 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_45,-74.80425957,39.63219562,3015 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_45,-74.6751017,39.38135445,3015 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_46,-74.80420249,39.63130233,3013 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_46,-74.6823678,39.37935052,3013 LANDMARK COURT,ATLANTIC CITY CITY,33,1987,1,RES1,3001 -0102_347_47,-74.4983475,39.4416965,119 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_347_47,-74.81025556,39.64176915,119 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,3,GOV1,3004 -0102_347_5,-74.51016664,39.45461225,3016 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_347_5,-74.525614,39.3153375,3016 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_347_6,-74.809487,39.6366565,3014 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_347_6,-74.6835925,39.3976855,3014 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_347_7,-74.80594907,39.63407623,3012 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_347_7,-74.63564551,39.40873414,3012 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_347_8,-74.8503175,39.61355073,3010 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_347_8,-74.63633011,39.41840629,3010 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_347_9,-74.88724264,39.47729127,128 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_347_9,-74.66028113,39.41714658,128 N MORRIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_348_1,-74.40217,39.391505,3118 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_348_1,-74.6815705,39.5130635,3118 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1920,4,GOV1,3004 -0102_348_10,-74.40378732,39.38530113,114 N CHELSEA AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_348_10,-74.6971165,39.562831,114 N CHELSEA AVE,ATLANTIC CITY CITY,45,1910,4,GOV1,3004 -0102_348_11,-74.59978069,39.43415357,142 N CHELSEA AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_348_11,-74.42583595,39.36731866,142 N CHELSEA AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_348_12,-74.5893733,39.43371408,138 N CHELSEA AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_348_12,-74.4229564,39.35983853,138 N CHELSEA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_348_13,-74.60982,39.4180425,112 N CHELSEA AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_348_13,-74.43067904,39.36656549,112 N CHELSEA AVE,ATLANTIC CITY CITY,17,1950,1,GOV1,3004 -0102_348_14,-74.6913481,39.42018817,110 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_348_14,-74.56038581,39.34833094,110 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_348_15,-74.667001,39.4057425,108 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_348_15,-74.57070457,39.34086517,108 N CHELSEA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_348_16,-74.64123027,39.43469733,106 N CHELSEA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_348_16,-74.5980565,39.329878,106 N CHELSEA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_348_17,-74.63015348,39.42995216,104 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_348_17,-74.60108452,39.33174545,104 N CHELSEA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_348_18,-74.63421136,39.43467343,102 N CHELSEA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_348_18,-74.61410234,39.31852447,102 N CHELSEA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_348_19,-74.6266375,39.4350465,100 N CHELSEA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_19,-74.60969584,39.32062146,100 N CHELSEA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_2,-74.4017338,39.38534753,3114 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_348_2,-74.6031365,39.5926435,3114 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_348_20,-74.62780204,39.42175481,101 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_348_20,-74.61178476,39.32327568,101 N MONTPELIER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_348_21,-74.62848968,39.41945708,103 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_21,-74.614266,39.3225595,103 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_22,-74.63747174,39.4357488,105 N MONTPELIER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_348_22,-74.614282,39.3205855,105 N MONTPELIER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_348_23,-74.63985658,39.43359305,107 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_23,-74.60343149,39.33356067,107 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_24,-74.63688826,39.43024602,109 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_348_24,-74.60478433,39.33196048,109 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_348_25,-74.6462025,39.4348075,111 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1928,2,RES1,3001 -0102_348_25,-74.606664,39.329758,111 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1928,2,GOV1,3004 -0102_348_26,-74.6480485,39.433565,115 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_26,-74.5676558,39.34109752,115 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_27,-74.6693247,39.41485459,117 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_348_27,-74.57250261,39.33840352,117 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_348_28,-74.570658,39.44278,119 N MONTPELIER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_348_28,-74.5729335,39.3510745,119 N MONTPELIER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_348_29,-74.60523669,39.41320558,121 N MONTPELIER AVE #B,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_348_29,-74.43060822,39.36699594,121 N MONTPELIER AVE #B,ATLANTIC CITY CITY,17,2006,1,COM1,3004 -0102_348_3,-74.80773423,39.61898211,3112 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_348_3,-74.62361386,39.37970626,3112 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_348_30,-74.592163,39.421562,121 N MONTPELIER AVE #A,ATLANTIC CITY CITY,45,1915,3,RES3A,3001 -0102_348_30,-74.43000426,39.36683908,121 N MONTPELIER AVE #A,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_348_31,-74.592402,39.4318605,123 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1910,2,RES3A,3001 -0102_348_31,-74.41979888,39.35863611,123 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_348_4,-74.79690829,39.62347131,3110 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_348_4,-74.63875483,39.381499,3110 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_348_5,-74.804678,39.637699,3108 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_348_5,-74.63049368,39.39107942,3108 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_348_6,-74.7985355,39.635083,3106 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_348_6,-74.672707,39.3798925,3106 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_348_7,-74.80403797,39.63117023,3104 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_348_7,-74.66741131,39.39346156,3104 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_348_8,-74.52744453,39.4308774,3102 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_348_8,-74.78628117,39.67626101,3102 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_348_9,-74.48260957,39.45595957,3100 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_348_9,-74.80317316,39.64155317,3100 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_349_1,-74.58805173,39.43210218,3223 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_349_1,-74.42216338,39.35893202,3223 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_1,-74.54840959,39.47231779,111 S CALIFORNIA AVE,ATLANTIC CITY CITY,,1960,1,RES1,3001 -0102_35_1,-74.61800946,39.32080619,111 S CALIFORNIA AVE,ATLANTIC CITY CITY,,1960,1,RES1,3001 -0102_35_10,-74.9488175,39.508355,109 ALBION PL,ATLANTIC CITY CITY,45,1915,3,RES1,3001 -0102_35_10,-74.6322775,39.429815,109 ALBION PL,ATLANTIC CITY CITY,45,1915,3,COM1,3004 -0102_35_11,-74.59201184,39.48967097,107 ALBION PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_35_11,-74.5631685,39.3592785,107 ALBION PL,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_35_12,-74.6633394,39.45501589,105 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_12,-74.567815,39.3659615,105 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_13,-74.51024852,39.45751151,103 ALBION PL,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_35_13,-74.44134484,39.36720967,103 ALBION PL,ATLANTIC CITY CITY,45,1900,3,COM1,3004 -0102_35_14,-74.47266725,39.48342311,2618 PACIFIC AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_35_14,-74.50926794,39.32242433,2618 PACIFIC AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3002 -0102_35_15,-74.46120367,39.34859663,2616 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_15,-74.66751359,39.54345194,2616 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_16,-74.46146796,39.34784216,2614 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_16,-74.7043995,39.5916825,2614 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_17,-74.46118984,39.34681108,2612 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_17,-74.64883061,39.6270057,2612 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_35_18,-74.47284532,39.34249606,2610 PACIFIC AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_35_18,-74.655321,39.6297,2610 PACIFIC AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_35_19,-74.48141093,39.33740131,2608 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_19,-74.782695,39.5428305,2608 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_2,-74.60053013,39.43635731,119 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_2,-74.60516366,39.32127903,119 S CALIFORNIA AVE,ATLANTIC CITY CITY,,0,1,RES3B,3002 -0102_35_20,-74.47873163,39.33713629,2600 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_20,-74.796206,39.523991,2600 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_24,-74.50817909,39.46172811,10 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,COM1,3004 -0102_35_24,-74.4416967,39.36772859,10 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_35_25,-74.515876,39.4538015,8 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,COM7,3004 -0102_35_25,-74.43473882,39.36656102,8 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,COM1,3004 -0102_35_26,-74.5213155,39.4610085,6 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_35_26,-74.485951,39.333471,6 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,COM1,3004 -0102_35_27,-74.52974919,39.45466783,4 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_35_27,-74.52106612,39.31703266,4 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,RES1,3004 -0102_35_28,-74.51934,39.464799,2 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,RES1,3004 -0102_35_28,-74.52346678,39.31517984,2 TEXAS CT,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_35_29,-74.46504784,39.34792949,100 S TEXAS AVE #A,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_35_29,-74.63641916,39.59619854,100 S TEXAS AVE #A,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_35_3,-74.53830777,39.46517495,2635 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_3,-74.58450699,39.33112833,2635 BOARDWALK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_35_30,-74.48520251,39.47844644,100 S TEXAS AVE #B,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_35_30,-74.52877676,39.31144297,100 S TEXAS AVE #B,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_35_31,-74.5185795,39.448978,102 S TEXAS AVE #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_35_31,-74.80794698,39.63968234,102 S TEXAS AVE #B,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_35_32,-74.527529,39.448575,102 S TEXAS AVE #A,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_35_32,-74.81535377,39.6541878,102 S TEXAS AVE #A,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_35_33,-74.523749,39.45507,102 S TEXAS AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_35_33,-74.523568,39.3172815,102 S TEXAS AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_35_34,-74.6885868,39.4807696,104 S TEXAS AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_35_34,-74.57533784,39.34241651,104 S TEXAS AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_35_35,-74.62630053,39.43627455,106 S TEXAS AVE #A,ATLANTIC CITY CITY,27,1910,2,RES3A,3001 -0102_35_35,-74.5626315,39.3634435,106 S TEXAS AVE #A,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_35_36,-74.61412752,39.48628932,106 S TEXAS AVE #B,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_35_36,-74.549542,39.36365,106 S TEXAS AVE #B,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_35_37,-74.63233115,39.48258554,106 S TEXAS AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_35_37,-74.57367952,39.36387489,106 S TEXAS AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_35_39,-74.60796688,39.50190591,110 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_35_39,-74.57336024,39.35212162,110 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_35_4,-74.60912322,39.44049251,2629 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_4,-74.60594339,39.31933541,2629 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_40,-74.9484165,39.5246255,112 S TEXAS AVE,ATLANTIC CITY CITY,45,1951,2,RES1,3001 -0102_35_40,-74.544244,39.461011,112 S TEXAS AVE,ATLANTIC CITY CITY,45,1951,2,RES1,3001 -0102_35_41,-74.9648185,39.512214,114 S TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_35_41,-74.63247468,39.42958203,114 S TEXAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_35_42,-74.925899,39.510494,116 S TEXAS AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_35_42,-74.62887139,39.42530488,116 S TEXAS AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_35_43,-74.8901065,39.471999,118 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_43,-74.63329976,39.40802931,118 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_5,-74.547679,39.477159,2625 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_5,-74.59717848,39.31752268,2625 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES4,3004 -0102_35_6,-74.55378564,39.47677279,2617 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_6,-74.61076984,39.31994501,2617 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_7,-74.5563805,39.4708585,2601 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_7,-74.57461645,39.33545238,2601 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_8,-74.56505683,39.47276949,115 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_8,-74.57293,39.345317,115 ALBION PL,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_35_9,-74.91893775,39.48872725,111 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_35_9,-74.62746031,39.41882244,111 ALBION PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_1,-74.5762685,39.4167855,3330 HARTFORD CT,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_350_1,-74.43046772,39.35897987,3330 HARTFORD CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_10,-74.5672365,39.425319,3409 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_350_10,-74.43236739,39.35494105,3409 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_350_11,-74.573033,39.4259935,3411 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_350_11,-74.43244054,39.35489236,3411 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_350_12,-74.572158,39.427641,3415 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_350_12,-74.43247086,39.35492282,3415 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_350_13,-74.5660735,39.418475,3501 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_350_13,-74.43364674,39.3572775,3501 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_350_14,-74.5632455,39.417236,3503 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_350_14,-74.43322743,39.35613487,3503 WINCHESTER AVE,ATLANTIC CITY CITY,17,1920,1,RES3A,3001 -0102_350_15,-74.53737707,39.41290763,3505 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES3B,3001 -0102_350_15,-74.43572606,39.35786902,3505 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_350_16,-74.613691,39.3870422,3507 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_350_16,-74.43434695,39.35596816,3507 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES3A,3001 -0102_350_17,-74.607512,39.387068,3509 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_17,-74.43562629,39.3561911,3509 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_18,-74.5901283,39.39138366,3511 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_350_18,-74.42919267,39.38415195,3511 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_350_2,-74.59725212,39.4059833,3330 PROVIDENCE CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_2,-74.42985213,39.35815741,3330 PROVIDENCE CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_20,-74.6017795,39.383327,3513 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_350_20,-74.42607596,39.38524454,3513 WINCHESTER AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_350_3,-74.6051065,39.415259,3330 SOVEREIGN CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_3,-74.43092016,39.36687067,3330 SOVEREIGN CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_4,-74.58717317,39.41146367,101 N BOSTON AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_4,-74.43000058,39.35840747,101 N BOSTON AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_5,-74.594112,39.4120995,3301 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_5,-74.4304054,39.35870847,3301 ARCTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_6,-74.58459443,39.40570113,3401 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_6,-74.43170506,39.35513458,3401 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_350_7,-74.57615179,39.41027643,3403 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_350_7,-74.43168964,39.35509356,3403 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_350_8,-74.57437124,39.42972232,3405 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_350_8,-74.43162012,39.35513567,3405 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_350_9,-74.5736795,39.420637,3407 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_350_9,-74.43156159,39.35514628,3407 WINCHESTER AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_351_1,-74.55794055,39.4134819,128 N HARTFORD AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_351_1,-74.4324663,39.35671113,128 N HARTFORD AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_351_10,-74.62651823,39.41828039,110 N HARTFORD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_351_10,-74.5892225,39.3293415,110 N HARTFORD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_351_11,-74.6641405,39.4004555,3601 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_351_11,-74.57956028,39.33167324,3601 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_351_12,-74.67821799,39.38455651,3603 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_351_12,-74.57935668,39.33190802,3603 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_351_13,-74.65480022,39.39734395,3605 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_351_13,-74.592852,39.3219135,3605 WINCHESTER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_351_14,-74.6372815,39.399843,3615 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_351_14,-74.591226,39.3251485,3615 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_351_15,-74.672863,39.3707975,101 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_351_15,-74.5886325,39.319529,101 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_351_17,-74.63156057,39.40975426,105 ST DAVID PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_351_17,-74.58959467,39.33015342,105 ST DAVID PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_351_18,-74.6244796,39.41301582,107 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_351_18,-74.58641444,39.32631991,107 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_351_2,-74.5375995,39.406834,126 N HARTFORD AVE,ATLANTIC CITY CITY,28,1925,2,RES1,3001 -0102_351_2,-74.43480655,39.35692675,126 N HARTFORD AVE,ATLANTIC CITY CITY,28,1925,2,RES1,3001 -0102_351_20,-74.62159975,39.42386405,111 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_351_20,-74.6034329,39.31903219,111 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_351_21,-74.6132692,39.3683663,115 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_351_21,-74.43643653,39.3766379,115 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_351_22,-74.60104845,39.37887428,117 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_351_22,-74.42808854,39.38476756,117 N ST DAVIDS PL,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_351_23,-74.60177221,39.3892439,119 N ST DAVIDS PL,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_351_23,-74.43614548,39.35594488,119 N ST DAVIDS PL,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_351_3,-74.6152585,39.391016,124 N HARTFORD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_351_3,-74.4383169,39.35686534,124 N HARTFORD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_351_4,-74.60466336,39.391004,122 N HARTFORD AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_351_4,-74.42983237,39.38366097,122 N HARTFORD AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_351_5,-74.61442754,39.38044531,120 N HARTFORD AVE,ATLANTIC CITY CITY,33,1925,1,COM1,3004 -0102_351_5,-74.43079552,39.38518936,120 N HARTFORD AVE,ATLANTIC CITY CITY,33,1925,1,RES3A,3001 -0102_351_6,-74.59775884,39.38362,118 N HARTFORD AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_351_6,-74.42646586,39.38455393,118 N HARTFORD AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_351_7,-74.629676,39.4221255,116 N HARTFORD AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_351_7,-74.614207,39.324322,116 N HARTFORD AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_351_8,-74.64608419,39.40617313,114 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_351_8,-74.60174559,39.31969382,114 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_351_9,-74.63156361,39.41462112,112 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_351_9,-74.606927,39.3233315,112 N HARTFORD AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_352_1.01,-74.60195918,39.38972906,RIPARIAN GRANT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_352_1.01,-74.42967482,39.38479576,RIPARIAN GRANT,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_352_10,-74.5936055,39.5329175,3623 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_352_10,-74.63987385,39.36616019,3623 WINCHESTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_352_11,-74.5968885,39.523087,3625 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_352_11,-74.62985729,39.36098177,3625 WINCHESTER AVE,ATLANTIC CITY CITY,45,1900,4,COM1,3004 -0102_352_2,-74.62655572,39.41558482,116 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1920,2,RES1,3002 -0102_352_2,-74.593363,39.328874,116 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_352_3,-74.68288523,39.3968721,114 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_352_3,-74.59387925,39.33383683,114 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_352_4,-74.67397261,39.37704946,112 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_352_4,-74.58252394,39.33254864,112 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_352_5,-74.657619,39.3986745,110 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_352_5,-74.5882631,39.32202372,110 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1920,2,RES3A,3001 -0102_352_6,-74.6374615,39.3993035,108 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_352_6,-74.59349116,39.323949,108 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_352_7,-74.65524473,39.51885581,106 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1930,2,RES3A,3001 -0102_352_7,-74.64380305,39.36556678,106 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1930,2,RES3A,3001 -0102_352_8,-74.63384855,39.51060708,104 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_352_8,-74.64289271,39.35737996,104 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_352_9,-74.58041417,39.54315504,102 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_352_9,-74.63778573,39.36417871,102 N ST DAVIDS PL,ATLANTIC CITY CITY,27,1930,2,COM1,3004 -0102_354_1,-74.49009634,39.33373699,371 N RALEIGH AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_354_1,-74.628551,39.4930925,371 N RALEIGH AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_354_10,-74.41407413,39.3647433,4303 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_354_10,-74.62357442,39.45999552,4303 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_354_11,-74.41712062,39.36806772,4305 STEWART AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_354_11,-74.66240013,39.44320819,4305 STEWART AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3004 -0102_354_12,-74.80200887,39.65769008,345 N RALEIGH AVE,ATLANTIC CITY CITY,17,2015,2,RES1,3001 -0102_354_12,-74.6311705,39.445582,345 N RALEIGH AVE,ATLANTIC CITY CITY,17,2015,2,RES1,3001 -0102_354_13,-74.43304032,39.36604102,359 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_354_13,-74.66336718,39.44578884,359 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_354_2,-74.49695961,39.33230516,4318 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_354_2,-74.70215198,39.48559083,4318 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_354_8,-74.43839,39.365189,330 N RICHMOND AVE,ATLANTIC CITY CITY,17,1935,1,RES1,3001 -0102_354_8,-74.70286259,39.44734013,330 N RICHMOND AVE,ATLANTIC CITY CITY,17,1935,1,RES1,3001 -0102_354_9,-74.42474311,39.36623518,324 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_354_9,-74.6625117,39.45532307,324 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_355_1,-74.81368478,39.65093971,335 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_1,-74.6233235,39.438923,335 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_11,-74.81171599,39.6446862,301 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_11,-74.6049875,39.502926,301 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_12,-74.80683155,39.64032673,311 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_12,-74.60304132,39.50075683,311 N RALEIGH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_355_13,-74.799391,39.6542605,315 N RALEIGH AVE,ATLANTIC CITY CITY,17,1986,1,RES1,3001 -0102_355_13,-74.62765283,39.43952677,315 N RALEIGH AVE,ATLANTIC CITY CITY,17,1986,1,RES1,3001 -0102_355_2,-74.81945,39.6435285,4316 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_2,-74.63963345,39.43642772,4316 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_3,-74.83036324,39.64730917,4306 STEWART AVE,ATLANTIC CITY CITY,17,1928,1,RES1,3001 -0102_355_3,-74.62215851,39.45084388,4306 STEWART AVE,ATLANTIC CITY CITY,17,1928,1,RES1,3001 -0102_355_5,-74.82166783,39.6454795,304 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_5,-74.6195025,39.438691,304 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_355_9,-74.8084485,39.6412505,4309 SOUTH BLVD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_355_9,-74.60391292,39.50089334,4309 SOUTH BLVD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_358_1,-74.63172952,39.53004416,309 N RICHMOND AVE,ATLANTIC CITY CITY,17,1950,1,COM1,3004 -0102_358_1,-74.53169634,39.41364451,309 N RICHMOND AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_358_10,-74.63956611,39.52934321,4205 SOUTH BLVD,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_358_10,-74.53752314,39.40479624,4205 SOUTH BLVD,ATLANTIC CITY CITY,17,1954,1,RES1,3002 -0102_358_11,-74.6547865,39.5173545,4213 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_358_11,-74.60831854,39.39660641,4213 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_358_12,-74.66192716,39.51868604,4215 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_358_12,-74.60255281,39.39759798,4215 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,RES3A,3001 -0102_358_13,-74.623719,39.5129975,4217 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_358_13,-74.60881796,39.39307061,4217 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_358_14,-74.5652723,39.51143198,4219 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_358_14,-74.63597969,39.34374357,4219 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_358_15,-74.54066197,39.51912934,4221 SOUTH BLVD,ATLANTIC CITY CITY,27,1927,2,RES1,3001 -0102_358_15,-74.647226,39.3268845,4221 SOUTH BLVD,ATLANTIC CITY CITY,27,1927,2,RES1,3001 -0102_358_16,-74.8823705,39.497108,4223 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_358_16,-74.647548,39.3272945,4223 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_358_17,-74.619887,39.5315735,303 N RICHMOND AVE,ATLANTIC CITY CITY,17,2001,1,RES3A,3001 -0102_358_17,-74.5368065,39.403659,303 N RICHMOND AVE,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_358_18,-74.6405985,39.5324145,305 N RICHMOND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_358_18,-74.5439885,39.4094525,305 N RICHMOND AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_358_2,-74.640228,39.5298305,4208 STEWART AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_358_2,-74.57392136,39.40915975,4208 STEWART AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_358_3,-74.65174502,39.5260678,4204 STEWART AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_358_3,-74.559511,39.415969,4204 STEWART AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_358_5,-74.64802338,39.52257735,4202 STEWART AVE,ATLANTIC CITY CITY,16,2015,1,COM3,3004 -0102_358_5,-74.5638745,39.4155125,4202 STEWART AVE,ATLANTIC CITY CITY,16,2015,1,RES1,3001 -0102_358_6,-74.64180565,39.53481145,310 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1954,2,RES3A,3001 -0102_358_6,-74.56549,39.415658,310 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1954,2,RES1,3001 -0102_358_7,-74.64937084,39.52333147,308 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_358_7,-74.563037,39.4159545,308 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_358_8,-74.63768557,39.53095384,304 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES3B,3001 -0102_358_8,-74.5324351,39.41357023,304 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_358_9,-74.63662466,39.53352648,302 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1948,1,RES1,3001 -0102_358_9,-74.54064059,39.40254997,302 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1948,1,RES1,3001 -0102_359_1,-74.55858338,39.39871319,371 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_359_1,-74.42845944,39.38026083,371 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_359_10,-74.64734746,39.53165016,4203 STEWART AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_359_10,-74.55451613,39.43497482,4203 STEWART AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_359_11,-74.64753032,39.53193217,4205 STEWART AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_359_11,-74.574738,39.427411,4205 STEWART AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_359_12,-74.648206,39.531828,194207 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_359_12,-74.574336,39.421036,194207 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_359_13,-74.65153119,39.53229895,345 N RICHMOND AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_359_13,-74.564472,39.413418,345 N RICHMOND AVE,ATLANTIC CITY CITY,17,1957,1,GOV1,3004 -0102_359_14,-74.642544,39.5311405,347 N RICHMOND AVE,ATLANTIC CITY CITY,17,1981,1,RES1,3001 -0102_359_14,-74.57459711,39.42916763,347 N RICHMOND AVE,ATLANTIC CITY CITY,17,1981,1,RES1,3001 -0102_359_15,-74.53734106,39.39460655,361 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_359_15,-74.42696367,39.37072422,361 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_359_2,-74.62135817,39.55088161,4214 PORTER AVE,ATLANTIC CITY CITY,45,1955,2,RES1,3001 -0102_359_2,-74.59117932,39.41015043,4214 PORTER AVE,ATLANTIC CITY CITY,45,1955,2,RES1,3001 -0102_359_3,-74.63266279,39.55254636,4202 PORTER AVE,ATLANTIC CITY CITY,17,1939,1,RES1,3001 -0102_359_3,-74.58662555,39.41676081,4202 PORTER AVE,ATLANTIC CITY CITY,17,1939,1,RES1,3001 -0102_359_4,-74.64730546,39.55370237,340 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_359_4,-74.60154637,39.41044154,340 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_359_5,-74.69001885,39.50778904,336 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1927,1,RES1,3001 -0102_359_5,-74.584014,39.40563867,336 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1927,1,RES1,3001 -0102_359_6,-74.66450937,39.51523884,334 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_359_6,-74.5755801,39.40761339,334 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_359_7,-74.64788608,39.53050285,332 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_359_7,-74.57659597,39.40889123,332 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_359_9,-74.64409442,39.53101188,330 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_359_9,-74.57094778,39.42783098,330 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_36_1,-74.47264964,39.34336803,101 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_1,-74.80588705,39.54757718,101 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_10,-74.49486606,39.46014526,119 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_10,-74.82221003,39.64638421,119 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_36_11,-74.52694447,39.45027052,121 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_11,-74.8109825,39.6558315,121 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_12,-74.6351455,39.462974,123 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_36_12,-74.55603569,39.36119062,123 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_36_13,-74.6942825,39.4495805,125 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_13,-74.57438973,39.36593797,125 S TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_15,-74.96752271,39.51298693,129 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_15,-74.5321515,39.4499075,129 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_16,-74.9534025,39.512363,131 S TEXAS AVE,ATLANTIC CITY CITY,33,1908,1,RES1,3001 -0102_36_16,-74.631854,39.430521,131 S TEXAS AVE,ATLANTIC CITY CITY,33,1908,1,RES1,3001 -0102_36_17,-74.92451923,39.50964062,133 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_17,-74.6222925,39.4248395,133 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_18,-74.88888067,39.48352193,135 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_18,-74.638749,39.402378,135 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_19,-74.888259,39.478164,137 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_19,-74.637064,39.4099445,137 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_2,-74.46933735,39.34546582,103 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_2,-74.8025165,39.5388925,103 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_20,-74.818023,39.633361,139 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_20,-74.70004,39.3713825,139 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_21,-74.55366507,39.47049728,141 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_21,-74.571186,39.3504975,141 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_22,-74.55546668,39.47185678,143 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_22,-74.57051918,39.34276225,143 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_23,-74.55380648,39.47415383,145 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_23,-74.61055345,39.32854184,145 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_25,-74.54705323,39.47525153,147 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_25,-74.61012497,39.32089293,147 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_27,-74.55467545,39.46654372,2529 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_27,-74.5937408,39.32597166,2529 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_28,-74.61003094,39.4386829,2523 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_36_28,-74.5987005,39.318999,2523 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_36_29,-74.55676445,39.4754452,1 CHARLES CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_29,-74.6061145,39.328269,1 CHARLES CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_3,-74.48317312,39.33513506,105 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_3,-74.79812,39.545208,105 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_30,-74.55754935,39.4723022,5 CHARLES CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_30,-74.612107,39.3271025,5 CHARLES CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_31,-74.8913285,39.4618485,6 CHARLES CT,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_36_31,-74.62907695,39.40937437,6 CHARLES CT,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_36_32,-74.88517795,39.46984008,4 CHARLES CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_32,-74.6656845,39.3975605,4 CHARLES CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_33,-74.58177804,39.47395338,2 CHARLES CT,ATLANTIC CITY CITY,33,1920,1,RES3A,3001 -0102_36_33,-74.57028456,39.34437464,2 CHARLES CT,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_36_35,-74.935428,39.481295,1 STANLEY CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_35,-74.636642,39.410968,1 STANLEY CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_36,-74.9324015,39.4956575,3 STANLEY CT,ATLANTIC CITY CITY,33,1920,1,AGR1,3004 -0102_36_36,-74.6626795,39.4051345,3 STANLEY CT,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_36_37,-74.92526435,39.51627419,5 STANLEY CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_37,-74.62110103,39.42265032,5 STANLEY CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_38,-74.94437643,39.52232481,6 STANLEY CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_38,-74.539611,39.468639,6 STANLEY CT,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_39,-74.939161,39.5269025,4 STANLEY CT,ATLANTIC CITY CITY,33,1920,1,RES3A,3001 -0102_36_39,-74.53691078,39.45798695,4 STANLEY CT,ATLANTIC CITY CITY,33,1920,1,AGR1,3001 -0102_36_4,-74.4861235,39.335223,107 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_4,-74.8552115,39.535511,107 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_40,-74.96805412,39.5127686,2 STANLEY CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_40,-74.53843572,39.46036908,2 STANLEY CT,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_42,-74.6060755,39.49179,127 S TEXAS AVE RR #B,ATLANTIC CITY CITY,,1900,1,GOV1,3004 -0102_36_42,-74.55487423,39.3574685,127 S TEXAS AVE RR #B,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_36_43,-74.66246282,39.44434585,127 S TEXAS AVE RR #A,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_36_43,-74.563653,39.362144,127 S TEXAS AVE RR #A,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_36_44,-74.50912116,39.46160436,1 CHELSEA TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_44,-74.818891,39.6493595,1 CHELSEA TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_45,-74.511264,39.45574676,2 CHELSEA TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_45,-74.4415831,39.36700269,2 CHELSEA TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_46,-74.51199396,39.45361966,3 CHELSEA TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_46,-74.43255714,39.36608027,3 CHELSEA TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_47,-74.44375536,39.4861358,1 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_47,-74.52448155,39.31252216,1 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_36_48,-74.47289831,39.48659439,3 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_48,-74.50411466,39.32514851,3 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_49,-74.46181801,39.34831652,5 OCEANIC TERR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_36_49,-74.61488651,39.59962283,5 OCEANIC TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_5,-74.48108932,39.33777403,109 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_5,-74.69847878,39.63525446,109 S TEXAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_50,-74.48305293,39.33891156,2 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_50,-74.66097595,39.6314003,2 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_51,-74.48692717,39.3373905,4 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_51,-74.79451371,39.53906765,4 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_52,-74.484416,39.3357645,6 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_52,-74.81510815,39.53099219,6 OCEANIC TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_56,-74.4789965,39.347787,2518 PACIFIC AVE,ATLANTIC CITY CITY,45,1913,2,RES1,3001 -0102_36_56,-74.8535745,39.551176,2518 PACIFIC AVE,ATLANTIC CITY CITY,45,1913,2,GOV1,3004 -0102_36_57,-74.4865644,39.34687384,2516 PACIFIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_57,-74.8641135,39.5438455,2516 PACIFIC AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_36_58,-74.48372801,39.3458911,2514 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_36_58,-74.878782,39.5450865,2514 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_36_6,-74.46210009,39.34726244,111 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_6,-74.622134,39.6256285,111 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_60,-74.4867638,39.34812659,102 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_60,-74.85889354,39.55470973,102 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_61,-74.4870195,39.350029,104 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_61,-74.8281895,39.56708264,104 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_62,-74.46689805,39.34332517,106 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_62,-74.81065764,39.55820997,106 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_63,-74.46650167,39.3452085,108 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1912,3,REL1,3004 -0102_36_63,-74.8088135,39.538011,108 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1912,3,RES1,3001 -0102_36_64,-74.467889,39.345985,112 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_64,-74.8007537,39.5397219,112 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_65,-74.48711066,39.33449727,114 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_36_65,-74.79643133,39.5415815,114 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_36_7,-74.473262,39.4832015,113 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_7,-74.49270937,39.33426996,113 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_70,-74.51973129,39.46432833,126 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_36_70,-74.52609265,39.31448339,126 S BELLEVUE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_36_71,-74.52552251,39.45733846,128 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_71,-74.51981647,39.31571282,128 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_36_72,-74.4960195,39.4694975,132 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_36_72,-74.42559006,39.366497,132 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_73,-74.5282955,39.4467945,134 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_73,-74.81665123,39.6533094,134 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_74,-74.52790896,39.45086969,136 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_74,-74.79747927,39.65143917,136 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_75,-74.69222414,39.44971972,138 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_36_75,-74.56356453,39.35990322,138 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_76,-74.6399025,39.460992,140 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_36_76,-74.563209,39.361993,140 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_36_77,-74.6027595,39.5028075,142 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_36_77,-74.57074402,39.35229081,142 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_8,-74.51513322,39.46583732,115 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_8,-74.52612654,39.31560434,115 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_80,-74.95111419,39.52062855,148 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_80,-74.64264467,39.43584233,148 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_81,-74.94061184,39.52076527,150 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_81,-74.62159025,39.43372368,150 S BELLEVUE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_82,-74.912453,39.5118455,152 S BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_82,-74.66172104,39.40305415,152 S BELLEVUE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_36_83,-74.919784,39.48726,154 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_83,-74.63371406,39.41604058,154 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_84,-74.91587472,39.46704974,158 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_36_84,-74.63077666,39.41009199,158 S BELLEVUE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_36_85,-74.55738358,39.47554329,2517 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_85,-74.611272,39.3193805,2517 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_36_9,-74.502873,39.4644905,117 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_36_9,-74.431599,39.362279,117 S TEXAS AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_360_1,-74.64208487,39.55150468,369 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_360_1,-74.604589,39.4077425,369 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_360_10,-74.651901,39.52983009,4113 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_360_10,-74.58520481,39.40772846,4113 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_360_11,-74.64512847,39.54557264,353 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_360_11,-74.58863419,39.4125665,353 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_360_12,-74.646726,39.552329,355 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1950,1,GOV1,3004 -0102_360_12,-74.59921129,39.40961592,355 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_360_2,-74.65312608,39.55528364,4108 PORTER AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_360_2,-74.602816,39.406735,4108 PORTER AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_360_3,-74.68185699,39.56940033,4100 PORTER AVE,ATLANTIC CITY CITY,16,1957,1,RES1,3001 -0102_360_3,-74.60093105,39.41590921,4100 PORTER AVE,ATLANTIC CITY CITY,16,1957,1,RES1,3001 -0102_360_4,-74.705644,39.5706335,338 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_360_4,-74.604847,39.411301,338 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_360_5,-74.68459486,39.54947003,360 N DOVER AVE,ATLANTIC CITY CITY,17,1990,1,RES1,3001 -0102_360_5,-74.60083233,39.418854,360 N DOVER AVE,ATLANTIC CITY CITY,17,1990,1,GOV1,3004 -0102_360_6,-74.61861741,39.37243668,352 N DOVER AVE,ATLANTIC CITY CITY,17,1953,1,RES1,3001 -0102_360_6,-74.43530329,39.37749459,352 N DOVER AVE,ATLANTIC CITY CITY,17,1953,1,RES1,3001 -0102_360_7,-74.589488,39.378202,328 N DOVER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_360_7,-74.42795152,39.38087936,328 N DOVER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_360_8,-74.58173575,39.3718154,4109 STEWART AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_360_8,-74.42740641,39.37976033,4109 STEWART AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_360_9,-74.68276197,39.51991766,4111 STEWART AVE,ATLANTIC CITY CITY,17,1946,1,RES1,3001 -0102_360_9,-74.58417442,39.40746521,4111 STEWART AVE,ATLANTIC CITY CITY,17,1946,1,RES1,3004 -0102_361_1,-74.54312117,39.39242,4120 STEWART AVE,ATLANTIC CITY CITY,17,2017,1,GOV1,3004 -0102_361_1,-74.42336911,39.37045835,4120 STEWART AVE,ATLANTIC CITY CITY,17,2017,1,GOV1,3004 -0102_361_10,-74.526868,39.3131755,4109 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_361_10,-74.6654405,39.4617525,4109 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_361_11,-74.52063499,39.31546667,4111 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_361_11,-74.6718605,39.45459,4111 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_361_12,-74.434527,39.36166783,4113 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,1,RES1,3004 -0102_361_12,-74.66458363,39.45507611,4113 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,1,RES1,3001 -0102_361_13,-74.43498848,39.36401137,4115 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_361_13,-74.672856,39.458417,4115 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_361_15,-74.43531723,39.36677284,4117 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_361_15,-74.65009901,39.46911467,4117 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_361_17,-74.43873418,39.36735194,4119 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,GOV1,3004 -0102_361_17,-74.65349163,39.45542303,4119 SOUTH BLVD,ATLANTIC CITY CITY,27,1928,2,GOV1,3004 -0102_361_2,-74.55752955,39.38557673,4106 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_361_2,-74.42856209,39.37927258,4106 STEWART AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_361_20,-74.4419095,39.3568035,4123 SOUTH BLVD,ATLANTIC CITY CITY,17,2017,1,RES1,3001 -0102_361_20,-74.6362295,39.4616335,4123 SOUTH BLVD,ATLANTIC CITY CITY,17,2017,1,RES1,3001 -0102_361_22,-74.53800576,39.39199581,301 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_361_22,-74.44328171,39.36874356,301 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_361_3,-74.5506305,39.3881965,320 N DOVER AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_361_3,-74.42286866,39.37064209,320 N DOVER AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_361_4,-74.5384241,39.39097201,288 N DOVER AVE,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_361_4,-74.42573611,39.36990875,288 N DOVER AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_361_6,-74.5035545,39.325414,4101 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_361_6,-74.623365,39.48093617,4101 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_361_7,-74.49029,39.333109,4103 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_361_7,-74.67213884,39.48265431,4103 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_361_8,-74.48747717,39.3332145,4105 SOUTH BLVD,ATLANTIC CITY CITY,27,1926,2,RES1,3001 -0102_361_8,-74.65345561,39.48838086,4105 SOUTH BLVD,ATLANTIC CITY CITY,27,1926,2,RES1,3001 -0102_361_9,-74.48817677,39.33372611,4107 SOUTH BLVD,ATLANTIC CITY CITY,27,1927,2,RES1,3001 -0102_361_9,-74.63723209,39.48373036,4107 SOUTH BLVD,ATLANTIC CITY CITY,27,1927,2,GOV1,3004 -0102_362_1,-74.55190967,39.426939,365 N DOVER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_362_1,-74.43244373,39.35498198,365 N DOVER AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_362_10,-74.535067,39.3858125,4025 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_362_10,-74.42356412,39.37020481,4025 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_362_3,-74.575095,39.4103705,357 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_362_3,-74.43212507,39.35612139,357 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_362_4,-74.60854704,39.39247981,347 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_362_4,-74.43585137,39.35567713,347 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_362_5,-74.60372906,39.3842608,331 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_362_5,-74.42791275,39.38431896,331 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_362_6,-74.59997355,39.36880981,333 N DOVER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_362_6,-74.4337961,39.3789477,333 N DOVER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_362_7,-74.59061775,39.37193591,327 N DOVER AVE,ATLANTIC CITY CITY,18,1953,1,RES1,3001 -0102_362_7,-74.42715486,39.38044526,327 N DOVER AVE,ATLANTIC CITY CITY,18,1953,1,RES1,3001 -0102_362_8,-74.55898485,39.39825462,315 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_362_8,-74.42837095,39.37999474,315 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_362_9,-74.53883032,39.39928639,311 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_362_9,-74.42305473,39.37095015,311 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_363_1,-74.60127741,39.43044943,358 N ELBERON AVE RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_363_1,-74.57385104,39.33415439,358 N ELBERON AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_363_2,-74.648963,39.38469771,358 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_363_2,-74.5836341,39.32565181,358 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_363_3,-74.59944131,39.43585397,350 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_363_3,-74.52231566,39.52920385,350 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_363_4,-74.56847315,39.41166994,340 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_363_4,-74.43197894,39.35768046,340 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_363_5,-74.5415995,39.4175145,336 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_363_5,-74.43691199,39.35735852,336 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_363_6,-74.602039,39.3823229,330 N ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES2,3005 -0102_363_6,-74.42685629,39.38500909,330 N ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_363_7,-74.6007005,39.37066333,322 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_363_7,-74.43525699,39.37860856,322 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_363_8,-74.58394388,39.37565618,312 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_363_8,-74.42786899,39.37966207,312 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_363_9,-74.56475473,39.41299295,4001 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_363_9,-74.46822756,39.48478418,4001 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_364_1,-74.714894,39.4668085,327 N ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_364_1,-74.598217,39.34348176,327 N ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_364_10,-74.625634,39.381884,326 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_364_10,-74.59235093,39.31211646,326 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_364_11,-74.61827511,39.42078861,324 HARRISBURG AVE,ATLANTIC CITY CITY,17,1973,1,RES1,3001 -0102_364_11,-74.49518341,39.53118635,324 HARRISBURG AVE,ATLANTIC CITY CITY,17,1973,1,RES1,3001 -0102_364_12,-74.584753,39.4321615,320 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1995,1,RES1,3001 -0102_364_12,-74.485046,39.5234845,320 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1995,1,RES1,3001 -0102_364_13,-74.5841114,39.42033479,318 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_364_13,-74.5133795,39.486261,318 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_364_14,-74.5991065,39.409811,316 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_364_14,-74.4883085,39.4793895,316 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_364_15,-74.606455,39.4105585,314 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_364_15,-74.5026495,39.474785,314 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_364_16,-74.5856075,39.414267,3901 SOUTH BLVD,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_364_16,-74.4665933,39.48924436,3901 SOUTH BLVD,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_364_17,-74.58732315,39.40853038,3909 SOUTH BLVD,ATLANTIC CITY CITY,45,1929,3,RES1,3001 -0102_364_17,-74.4549205,39.5017945,3909 SOUTH BLVD,ATLANTIC CITY CITY,45,1929,3,RES1,3001 -0102_364_18,-74.575684,39.4074515,3911 SOUTH BLVD,ATLANTIC CITY CITY,45,1929,2,RES1,3001 -0102_364_18,-74.45753975,39.49090595,3911 SOUTH BLVD,ATLANTIC CITY CITY,45,1929,2,RES1,3001 -0102_364_19,-74.571573,39.428455,3913 SOUTH BLVD,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_364_19,-74.4625772,39.49253485,3913 SOUTH BLVD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_364_20,-74.57178979,39.42722395,3915 SOUTH BLVD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_364_20,-74.45924946,39.49439019,3915 SOUTH BLVD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_364_21,-74.575435,39.419106,303 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_364_21,-74.460664,39.495589,303 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,COM8,3004 -0102_364_23,-74.59627661,39.41848886,307 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_364_23,-74.49662158,39.47261078,307 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_364_24,-74.602049,39.4094215,311 N ELBERON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_364_24,-74.50908065,39.48707152,311 N ELBERON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_364_25,-74.591709,39.4273585,319 N ELBERON AVE,ATLANTIC CITY CITY,16,1940,1,RES1,3001 -0102_364_25,-74.507684,39.494545,319 N ELBERON AVE,ATLANTIC CITY CITY,16,1940,1,RES1,3001 -0102_364_26,-74.59208121,39.43192096,321 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_364_26,-74.5106103,39.5041562,321 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_364_27,-74.61648009,39.43537143,323 N ELBERON AVE,ATLANTIC CITY CITY,,0,1,COM7,3004 -0102_364_27,-74.59655366,39.31679255,323 N ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_364_28,-74.6317775,39.391193,325 N ELBERON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_364_28,-74.58520424,39.32293068,325 N ELBERON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_364_3,-74.73935427,39.47157219,3910 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_364_3,-74.57699819,39.36588837,3910 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_364_4,-74.8740685,39.4440435,3908 PORTER AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_364_4,-74.59509828,39.36586638,3908 PORTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_364_5,-74.84717795,39.46209479,3906 PORTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_364_5,-74.59683464,39.36283147,3906 PORTER AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_364_6,-74.85457161,39.48586283,354 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_364_6,-74.6107185,39.3588985,354 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_364_7,-74.7961035,39.442714,352 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_364_7,-74.582108,39.3627265,352 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_364_8,-74.71358626,39.46701717,350 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_364_8,-74.6004165,39.347691,350 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_364_9,-74.74403074,39.44791487,338 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_364_9,-74.5969385,39.3412325,338 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_365_1,-74.86970282,39.49235862,351 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_365_1,-74.6365525,39.3089055,351 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_365_10,-74.74524239,39.44663969,328 N TRENTON AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_365_10,-74.58660164,39.33588381,328 N TRENTON AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_365_11,-74.6294355,39.39274,322 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_11,-74.5846145,39.323147,322 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_12,-74.6446374,39.3741932,320 N TRENTON AVE,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_365_12,-74.59584616,39.31134255,320 N TRENTON AVE,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_365_13,-74.6025825,39.4314355,318 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_365_13,-74.53308769,39.31422206,318 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_365_14,-74.59695474,39.42971541,3801 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_14,-74.493466,39.5329195,3801 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_15,-74.58981204,39.42757223,3815 SOUTH BLVD,ATLANTIC CITY CITY,45,1912,2,COM1,3004 -0102_365_15,-74.4922787,39.49208045,3815 SOUTH BLVD,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_365_17,-74.60472843,39.40662277,3821 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_17,-74.531096,39.4710375,3821 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_18,-74.598914,39.410198,3827 SOUTH BLVD,ATLANTIC CITY CITY,17,1912,1,RES1,3001 -0102_365_18,-74.5065805,39.471556,3827 SOUTH BLVD,ATLANTIC CITY CITY,17,1912,1,RES1,3001 -0102_365_19,-74.5837335,39.4319495,305 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1937,1,RES1,3001 -0102_365_19,-74.4666525,39.534281,305 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1937,1,COM4,3004 -0102_365_2,-74.87153252,39.49079931,370 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_365_2,-74.640681,39.3229795,370 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_365_20,-74.58132381,39.43002154,315 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_365_20,-74.498544,39.5196515,315 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_365_21,-74.6000475,39.43547,317 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_365_21,-74.53143691,39.30817936,317 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_365_22,-74.64212566,39.37382196,319 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_365_22,-74.5991815,39.313377,319 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_365_23,-74.63749883,39.3904619,321 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_365_23,-74.5906385,39.32575933,321 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_365_24,-74.72232184,39.46097922,325 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1928,2,RES1,3001 -0102_365_24,-74.5945996,39.35086617,325 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1928,2,RES1,3001 -0102_365_25,-74.75101203,39.45106282,327 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_365_25,-74.57705118,39.35483002,327 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_365_3,-74.86581781,39.49492642,360 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_365_3,-74.63558846,39.30757243,360 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_365_4,-74.87649066,39.47649529,350 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_4,-74.600808,39.3654865,350 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_5,-74.8551715,39.4803355,346 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_5,-74.60256676,39.36608858,346 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_6,-74.865083,39.457406,344 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_365_6,-74.59748017,39.35918769,344 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_365_7,-74.80488231,39.46621444,340 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_7,-74.58689923,39.36663695,340 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_8,-74.756703,39.445098,336 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_8,-74.59187075,39.35534998,336 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_365_9,-74.71434369,39.46830126,332 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_365_9,-74.597601,39.341872,332 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_366_1,-74.8645215,39.4900365,3712 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_1,-74.63283332,39.31834477,3712 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_10,-74.84677368,39.46496301,327 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_10,-74.59545411,39.36580432,327 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_2,-74.87476333,39.5000556,330 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_2,-74.6352285,39.3182485,330 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_3,-74.83729981,39.49539177,310 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_3,-74.5993235,39.354485,310 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_4,-74.78067688,39.50125231,302 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_4,-74.57540152,39.36329286,302 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_5,-74.72674689,39.45715262,300 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,IND2,3002 -0102_366_5,-74.5927175,39.347509,300 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_366_6,-74.646218,39.37703,309 N TRENTON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_366_6,-74.5847705,39.3242165,309 N TRENTON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_366_7,-74.632841,39.401995,313 N TRENTON AVE,ATLANTIC CITY CITY,17,1921,1,RES1,3001 -0102_366_7,-74.59078276,39.32536028,313 N TRENTON AVE,ATLANTIC CITY CITY,17,1921,1,GOV1,3004 -0102_366_8,-74.72562631,39.45656217,317 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_366_8,-74.59482727,39.34672848,317 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_366_9,-74.75399655,39.45257332,321 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_366_9,-74.584796,39.358531,321 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_367_1,-74.5251795,39.31396,4016 SOUTH BLVD,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_367_1,-74.6689192,39.46312053,4016 SOUTH BLVD,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_367_10,-74.55432483,39.42584,3904 SOUTH BLVD,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_367_10,-74.45194174,39.48804655,3904 SOUTH BLVD,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_367_11,-74.57680201,39.41782583,3816 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11,-74.4724865,39.492026,3816 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.01,-74.58323278,39.40314335,3816 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.01,-74.4504555,39.4957535,3816 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.02,-74.47280207,39.48907329,3816 SOUTH BLVD BD1,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.02,-74.47940348,39.34502475,3816 SOUTH BLVD BD1,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.03,-74.47303736,39.48790808,3816 SOUTH BLVD BD2,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.03,-74.47956933,39.34367892,3816 SOUTH BLVD BD2,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.04,-74.46586535,39.49569075,3816 SOUTH BLVD BD3,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.04,-74.47693843,39.34371616,3816 SOUTH BLVD BD3,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.05,-74.49217655,39.47183622,3816 SOUTH BLVD BD4,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_367_11.05,-74.48002936,39.34472361,3816 SOUTH BLVD BD4,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.06,-74.5130875,39.486406,3816 SOUTH BLVD BD5,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.06,-74.47775486,39.34466305,3816 SOUTH BLVD BD5,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.07,-74.51231526,39.48473707,3816 SOUTH BLVD BD6,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.07,-74.4759641,39.34463986,3816 SOUTH BLVD BD6,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.08,-74.5130095,39.472482,3818 SOUTH BLVD BD7,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.08,-74.47823393,39.34465921,3818 SOUTH BLVD BD7,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.09,-74.50933778,39.47087358,3816 SOUTH BLVD BD8,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.09,-74.47770417,39.34459777,3816 SOUTH BLVD BD8,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.10,-74.493267,39.492643,3816 SOUTH BLVD BD9,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.10,-74.47767315,39.34482455,3816 SOUTH BLVD BD9,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.11,-74.5052745,39.4927265,3816 SOUTH BLVD BD10,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.11,-74.47783719,39.3447874,3816 SOUTH BLVD BD10,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_367_11.12,-74.505113,39.4808325,3816 SOUTH BLVD BD11,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_11.12,-74.47967359,39.34378986,3816 SOUTH BLVD BD11,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_2,-74.5738435,39.408273,4012 SOUTH BLVD,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_367_2,-74.45979513,39.47246609,4012 SOUTH BLVD,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_367_20,-74.57924222,39.41283739,3812 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_367_20,-74.47104451,39.48779333,3812 SOUTH BLVD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_367_21,-74.6068835,39.410708,3810 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_21,-74.504769,39.474962,3810 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_22,-74.59830907,39.41025529,3726 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_22,-74.50731998,39.4723393,3726 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_22.01,-74.57532236,39.41230009,3726 SOUTH BLVD RIPARIAN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_22.01,-74.48509132,39.49802225,3726 SOUTH BLVD RIPARIAN,ATLANTIC CITY CITY,,0,1,COM1,3002 -0102_367_23,-74.60009191,39.40887924,3724 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_367_23,-74.50476772,39.48301523,3724 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_367_24,-74.59982101,39.41622858,3722 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_367_24,-74.51383732,39.48627006,3722 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_367_25,-74.58890415,39.42766772,3716 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_367_25,-74.495161,39.4921925,3716 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_367_26,-74.5826915,39.43157,3714 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_367_26,-74.49679894,39.51852739,3714 SOUTH BLVD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_367_27,-74.59817715,39.43555915,210 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_27,-74.53090144,39.54096774,210 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_4,-74.56254465,39.41513453,4004 SOUTH BLVD,ATLANTIC CITY CITY,17,1928,1,RES1,3001 -0102_367_4,-74.45198929,39.48474259,4004 SOUTH BLVD,ATLANTIC CITY CITY,17,1928,1,RES1,3001 -0102_367_5,-74.56011545,39.4132837,3930 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,IND3,3004 -0102_367_5,-74.486509,39.4783585,3930 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_6,-74.56545068,39.41744176,3920 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_6,-74.47844016,39.47807144,3920 SOUTH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_367_7,-74.56699307,39.41372326,3914 SOUTH BLVD,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_367_7,-74.4770365,39.4778725,3914 SOUTH BLVD,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_367_8,-74.57455898,39.4123523,3912 SOUTH BLVD,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_367_8,-74.4732825,39.480684,3912 SOUTH BLVD,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_367_9,-74.55448167,39.42656499,3910 SOUTH BLVD,ATLANTIC CITY CITY,35,1900,1,RES1,3002 -0102_367_9,-74.44435856,39.49410099,3910 SOUTH BLVD,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_368_1,-74.53205982,39.40228645,3615 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_368_1,-74.43486913,39.35569709,3615 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_368_2,-74.57297973,39.41502395,3601 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_368_2,-74.43276218,39.357623,3601 SUNSET AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_369_1,-74.5756725,39.411004,3501 SUNSET AVE,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_369_1,-74.4302005,39.35902998,3501 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_37_28,-74.44691918,39.35726423,2510 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_37_28,-74.85652,39.5614115,2510 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_370_1,-74.600654,39.415801,3401 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_370_1,-74.43121405,39.36735834,3401 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_370_2,-74.94042361,39.48566961,3301 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_370_2,-74.62973821,39.41948259,3301 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_371_1,-74.62396057,39.38247454,3201 SUNSET AVE (PIERS),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_371_1,-74.4253995,39.36875304,3201 SUNSET AVE (PIERS),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_1,-74.8437815,39.4815835,227 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_372_1,-74.55427367,39.42624699,227 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_10,-74.81949014,39.62283695,214 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_10,-74.62730077,39.41682308,214 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_12,-74.501579,39.447176,204 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_372_12,-74.8112465,39.6402425,204 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_372_13,-74.4787655,39.4430835,202 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_372_13,-74.79807235,39.64266846,202 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_372_14,-74.80544235,39.63812755,3201 FAIRMOUNT AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_14,-74.61986586,39.38832824,3201 FAIRMOUNT AVE #B,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_372_15,-74.79634187,39.63730884,3201 FAIRMOUNT AVE #A,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_372_15,-74.64210451,39.39364578,3201 FAIRMOUNT AVE #A,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_372_16,-74.8078795,39.6304995,3203 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_372_16,-74.65367205,39.37029434,3203 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_372_18,-74.4009945,39.385894,3207 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_18,-74.66371814,39.5562707,3207 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_19,-74.51102482,39.43844795,203 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_19,-74.815378,39.65477967,203 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_2,-74.36732892,39.41656011,238 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1890,2,RES1,3001 -0102_372_2,-74.81319236,39.5337048,238 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1890,2,RES1,3001 -0102_372_20,-74.80675231,39.63922075,225 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_20,-74.67319236,39.38893097,225 N SOVEREIGN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_372_4,-74.75960332,39.61138027,226 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_4,-74.58446146,39.43230178,226 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_5,-74.93214078,39.52648827,224 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_5,-74.55464578,39.46904539,224 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_6,-74.9636515,39.5057015,222 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,GOV1,3004 -0102_372_6,-74.531647,39.469891,222 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_7,-74.93907625,39.48338134,220 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_7,-74.63371473,39.43187258,220 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_8,-74.90219979,39.47231424,218 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_8,-74.621882,39.423868,218 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_372_9,-74.863372,39.619949,216 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_372_9,-74.6503035,39.405316,216 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_373_1,-74.81044873,39.53782738,3101 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_373_1,-74.55195091,39.40668383,3101 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_374_1,-74.64617683,39.5495583,241 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_1,-74.5530925,39.381272,241 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_10,-74.6493298,39.52830044,224 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_10,-74.66320991,39.36413956,224 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_11,-74.36853799,39.41376323,222 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_11,-74.87243278,39.52736836,222 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_12,-74.37058006,39.4154597,220 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_12,-74.835647,39.5349765,220 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_13,-74.86999,39.6016475,218 N CHELSEA AVE RR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_13,-74.62264019,39.37485195,218 N CHELSEA AVE RR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_14,-74.36278783,39.41596047,218 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_14,-74.66136762,39.63264637,218 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_15,-74.36726385,39.40914605,216 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_374_15,-74.70179443,39.57821135,216 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_16,-74.75607916,39.44705571,214 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_16,-74.75435252,39.30120734,214 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_17,-74.83224633,39.59207467,212 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_17,-74.59994032,39.42920545,212 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,GOV1,3004 -0102_374_18,-74.75982497,39.63951667,210 N CHELSEA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_374_18,-74.59711872,39.43571256,210 N CHELSEA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_374_19,-74.822585,39.493877,208 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_19,-74.56785886,39.41171048,208 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_2,-74.68229208,39.55245916,3112 SUNSET AVE,ATLANTIC CITY CITY,45,1904,2,RES1,3001 -0102_374_2,-74.56914591,39.37585564,3112 SUNSET AVE,ATLANTIC CITY CITY,45,1904,2,RES1,3001 -0102_374_20,-74.71113549,39.47287853,204 N CHELSEA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_374_20,-74.6010196,39.38655626,204 N CHELSEA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_374_21,-74.95801712,39.49700525,202 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_374_21,-74.658773,39.433294,202 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_374_22,-74.88922662,39.46075085,3101 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_22,-74.6506416,39.40315256,3101 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_23,-74.81222,39.6322995,3103 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_23,-74.626838,39.417552,3103 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_24,-74.81235,39.6358345,3105 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_24,-74.63535382,39.41013548,3105 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_25,-74.51545145,39.46160284,3107 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_25,-74.524499,39.315667,3107 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_26,-74.48859245,39.46140285,3109 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1905,2,RES1,3001 -0102_374_26,-74.42982332,39.36355151,3109 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1905,2,RES1,3001 -0102_374_27,-74.52407631,39.44528895,3111 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_27,-74.42719207,39.36624855,3111 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_28,-74.530201,39.452486,3115 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_28,-74.8179925,39.6566715,3115 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_29,-74.52553476,39.44339871,3117 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_29,-74.81759443,39.65543429,3117 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_3,-74.78105664,39.50516182,3110 SUNSET AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_3,-74.5502095,39.3901995,3110 SUNSET AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_30,-74.5197824,39.43925129,3119 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_30,-74.81623402,39.63968567,3119 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_31,-74.51219662,39.44389907,3121 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_374_31,-74.81518536,39.63987194,3121 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_374_32,-74.49932499,39.46368546,203 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3002 -0102_374_32,-74.52176153,39.31663667,203 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_33,-74.8100045,39.6336485,205 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_33,-74.628106,39.4176825,205 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_34,-74.85404222,39.61776139,207 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_34,-74.636354,39.411917,207 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_35,-74.88794301,39.47540517,209 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_35,-74.6230675,39.425235,209 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_36,-74.90813311,39.47912076,211 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_36,-74.6263065,39.4212705,211 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_37,-74.9343635,39.5126905,213 N MONTPELIER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_374_37,-74.56383476,39.44838941,213 N MONTPELIER AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_374_38,-74.950462,39.5146835,215 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_38,-74.538748,39.4676765,215 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_39,-74.882745,39.4634535,217 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_39,-74.56254805,39.41429393,217 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_4,-74.650454,39.595821,3108 SUNSET AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_374_4,-74.6131173,39.41257896,3108 SUNSET AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_374_40,-74.7229425,39.5870165,219 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_40,-74.59037415,39.42553216,219 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_41,-74.78900052,39.63708797,221 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_41,-74.60139938,39.43572119,221 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_42,-74.79229355,39.6373662,223 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_42,-74.597759,39.4360905,223 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_43,-74.87074775,39.60298569,225 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_43,-74.61511035,39.42847236,225 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_44,-74.366469,39.41042765,223 N MONTPELIER AVE RR,ATLANTIC CITY CITY,16,1900,2,RES1,3001 -0102_374_44,-74.66188686,39.60388701,223 N MONTPELIER AVE RR,ATLANTIC CITY CITY,16,1900,2,RES1,3001 -0102_374_45,-74.370346,39.4063065,227 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_45,-74.62246057,39.62611692,227 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_46,-74.3601495,39.411219,229 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_46,-74.73009815,39.56574068,229 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_47,-74.38161592,39.41701127,233 N MONTPELIER AVE,ATLANTIC CITY CITY,35,1900,2,RES1,3001 -0102_374_47,-74.844311,39.559439,233 N MONTPELIER AVE,ATLANTIC CITY CITY,35,1900,2,RES1,3001 -0102_374_48,-74.63586164,39.52420512,235 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_48,-74.67678307,39.35698478,235 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_49,-74.6486975,39.52118233,237 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_49,-74.76458062,39.35067381,237 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_5,-74.64428009,39.62350633,3106 SUNSET AVE,ATLANTIC CITY CITY,45,1923,2,RES1,3001 -0102_374_5,-74.591432,39.428093,3106 SUNSET AVE,ATLANTIC CITY CITY,45,1923,2,RES3B,3001 -0102_374_50,-74.65242531,39.53018191,239 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_374_50,-74.5471675,39.3703835,239 N MONTPELIER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_374_7,-74.7825405,39.5426155,234 N CHELSEA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_374_7,-74.59775262,39.43502797,234 N CHELSEA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_374_8,-74.6349395,39.551977,228 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_374_8,-74.55251409,39.38474116,228 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES3C,3004 -0102_374_9,-74.6415585,39.5303295,226 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_374_9,-74.81964016,39.36415068,226 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375.01_1,-74.81090344,39.53200016,3003 SUNSET AVE (PIERS),ATLANTIC CITY CITY,,0,1,EDU1,3004 -0102_375.01_1,-74.55158978,39.4031486,3003 SUNSET AVE (PIERS),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375.01_2,-74.7074423,39.56969561,3001 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375.01_2,-74.5314065,39.4093155,3001 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_1,-74.811881,39.5617415,235 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_1,-74.62966783,39.40891371,235 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_10,-74.6938615,39.637832,226 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_10,-74.60163035,39.42054586,226 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_11,-74.6242085,39.606243,224 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_11,-74.58804505,39.43051696,224 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_12,-74.6155955,39.5975855,222 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_12,-74.60172146,39.4111838,222 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_375_13,-74.693113,39.554334,220 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_13,-74.5414345,39.39176,220 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_14,-74.6464605,39.550157,218 N MORRIS #B (ALLEY),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_14,-74.55113589,39.38141408,218 N MORRIS #B (ALLEY),ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_375_15,-74.64637145,39.55299834,218 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_15,-74.55113558,39.38377123,218 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_16,-74.68106943,39.51429515,216 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_16,-74.54088565,39.38215197,216 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_17,-74.64593798,39.52987141,214 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_17,-74.544951,39.370912,214 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_18,-74.64767697,39.53071116,212 N MORRIS AVE,ATLANTIC CITY CITY,33,1890,1,RES1,3001 -0102_375_18,-74.811646,39.366244,212 N MORRIS AVE,ATLANTIC CITY CITY,33,1890,1,RES1,3001 -0102_375_19,-74.64400172,39.5255897,210 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_19,-74.701543,39.3640725,210 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_375_21,-74.6419875,39.530907,3009 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_21,-74.810307,39.3672435,3009 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_22,-74.641941,39.524558,3011 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_22,-74.7557295,39.3005505,3011 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_375_23,-74.6422665,39.52803,3013 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_23,-74.69181857,39.3540547,3013 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_24,-74.63777951,39.52263404,3015 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_24,-74.672856,39.366585,3015 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_375_25,-74.87733534,39.59605346,3016 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_25,-74.61585095,39.42978266,3016 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_26,-74.86513024,39.59792773,3014 HOWARD AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_375_26,-74.64101667,39.37469048,3014 HOWARD AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_375_27,-74.75866683,39.44679508,3012 HOWARD AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_375_27,-74.76127309,39.34795821,3012 HOWARD AVE,ATLANTIC CITY CITY,16,1900,1,COM4,3004 -0102_375_28,-74.36415717,39.40843699,3010 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_375_28,-74.6076005,39.617454,3010 HOWARD AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_3,-74.7899155,39.5205815,231 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_3,-74.61820266,39.42491742,231 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_30,-74.35854815,39.41492764,208 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_30,-74.70030756,39.6303048,208 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_31,-74.37180297,39.40729266,206 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_375_31,-74.6926075,39.5895545,206 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_375_32,-74.3652325,39.405523,204 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_375_32,-74.62674384,39.60215446,204 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_375_33,-74.75287417,39.44747226,202 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_375_33,-74.7554505,39.3024615,202 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_375_34,-74.80663289,39.60087961,3001 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_34,-74.59795131,39.42935195,3001 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_35,-74.76332,39.633829,3005 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_35,-74.59266631,39.4322148,3005 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_36,-74.77526633,39.61167317,3007 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_36,-74.57576906,39.42960561,3007 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_37,-74.7315169,39.58945214,3009 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_37,-74.596181,39.420782,3009 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_38,-74.83424423,39.48728647,3011 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_38,-74.550159,39.4213535,3011 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_39,-74.83183913,39.4543002,3013 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_39,-74.56077859,39.41658367,3013 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_4,-74.81178698,39.64586366,3010 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_4,-74.75908746,39.43092792,3010 SUNSET AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_375_40,-74.83633654,39.44859121,3015 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_40,-74.554476,39.4187355,3015 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_41,-74.93726826,39.52448118,3017 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_41,-74.58207479,39.44185403,3017 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_375_42,-74.809313,39.497944,3019 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_42,-74.569936,39.4118465,3019 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,COM3,3004 -0102_375_43,-74.71140774,39.50151838,3021 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_43,-74.54746666,39.40339757,3021 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_44,-74.95335131,39.51276083,3023 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_44,-74.53832727,39.46261295,3023 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_45,-74.94962953,39.51709742,3025 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_45,-74.5382705,39.4696295,3025 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_46,-74.9485955,39.5198635,201 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_375_46,-74.569793,39.449581,201 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_375_47,-74.7927335,39.63486,203 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_375_47,-74.59926788,39.42955069,203 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_375_48,-74.87005965,39.59955279,205 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,GOV1,3004 -0102_375_48,-74.6215282,39.36898588,205 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_49,-74.3673743,39.41042073,207 N CHELSEA AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_375_49,-74.6908619,39.57383214,207 N CHELSEA AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_375_5,-74.80683803,39.62161038,3008 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_5,-74.628116,39.420173,3008 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_50,-74.37038552,39.40457787,209 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_50,-74.621773,39.6251015,209 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_51,-74.36656041,39.41859145,211 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_51,-74.81083285,39.5193713,211 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_52,-74.369759,39.413894,213 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_52,-74.858607,39.53653173,213 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_53,-74.38311609,39.41695847,215 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_53,-74.71546063,39.57862968,215 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_54,-74.65396848,39.52706533,217 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_54,-74.765195,39.3503155,217 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_55,-74.667953,39.509745,219 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_55,-74.54889333,39.37024149,219 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_375_56,-74.63020317,39.53943101,221 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_56,-74.54041476,39.37718317,221 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_57,-74.680796,39.5687795,223 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_57,-74.5421945,39.3915545,223 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_58,-74.6832315,39.572005,225 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_375_58,-74.54093368,39.39049409,225 N CHELSEA AVE,ATLANTIC CITY CITY,45,1905,2,COM3,3004 -0102_375_59,-74.693541,39.59026,227 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,COM4,3004 -0102_375_59,-74.590439,39.432893,227 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_6,-74.81286337,39.64207435,3006 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_6,-74.75598437,39.42914478,3006 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_60,-74.69086134,39.62976318,229 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_60,-74.60720471,39.42221716,229 N CHELSEA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_375_8,-74.6542688,39.59306731,228 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_375_8,-74.60915558,39.37992264,228 N MORRIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_375_9,-74.77670884,39.51371401,226 N MORRIS AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_375_9,-74.5428955,39.3856385,226 N MORRIS AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_376_1,-74.8122015,39.5238365,2923 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_376_1,-74.5320455,39.4045025,2923 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_376_10,-74.662044,39.5903565,2901 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_376_10,-74.60634901,39.39341693,2901 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_376_2,-74.78972198,39.53213183,2921 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_376_2,-74.60807847,39.3939463,2921 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_376_3,-74.7928405,39.5339185,2919 SUNSET AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_376_3,-74.60706427,39.39631763,2919 SUNSET AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_376_4,-74.70566078,39.63418737,2917 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_376_4,-74.60290023,39.39767142,2917 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_376_5,-74.70666144,39.63438914,2915 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_376_5,-74.60823031,39.38565051,2915 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_376_6,-74.62965857,39.61906915,2911 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_376_6,-74.60974304,39.3912427,2911 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_376_7,-74.69853919,39.59215242,2909 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES3A,3001 -0102_376_7,-74.60490622,39.38962475,2909 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_376_9,-74.69489516,39.58934948,2905 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_376_9,-74.6054875,39.3911135,2905 SUNSET AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_377_1,-74.8126945,39.6497475,229 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_1,-74.82471888,39.37412402,229 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_10,-74.80257876,39.54234619,2902 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_10,-74.68283429,39.37807352,2902 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_11,-74.81552291,39.53328879,2900 SUNSET AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_377_11,-74.6765955,39.3786235,2900 SUNSET AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_377_13,-74.6246415,39.3811385,212 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_377_13,-74.42492031,39.3689439,212 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_14,-74.62312634,39.38223601,210 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_14,-74.42513878,39.36885941,210 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_15,-74.6223245,39.3832395,208 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_15,-74.42584153,39.36868372,208 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_16,-74.6409838,39.37508882,206 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_16,-74.42428668,39.36800101,206 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_17,-74.64102587,39.3754854,204 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_17,-74.4245211,39.3678902,204 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_18,-74.61492482,39.42840146,202 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_18,-74.42478492,39.36779967,202 N BRIGHTON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_19,-74.7799915,39.5199595,2901 JACKSON TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_19,-74.54683053,39.38936784,2901 JACKSON TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_20,-74.67438624,39.63483416,2903 JACKSON TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_20,-74.543508,39.3921805,2903 JACKSON TERR,ATLANTIC CITY CITY,33,1900,1,IND1,3004 -0102_377_21,-74.65325227,39.62444824,2905 JACKSON TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_21,-74.55133312,39.3927442,2905 JACKSON TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_22,-74.6790515,39.552264,2907 JACKSON TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_22,-74.57494901,39.37159183,2907 JACKSON TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_23,-74.65772785,39.55148122,2909 JACKSON TERR,ATLANTIC CITY CITY,33,1910,1,GOV1,3004 -0102_377_23,-74.557267,39.373769,2909 JACKSON TERR,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_24,-74.660709,39.554232,2911 JACKSON TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_24,-74.56411559,39.37591634,2911 JACKSON TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_25,-74.64548563,39.54878343,2913 JACKSON TERR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_25,-74.54732493,39.37779685,2913 JACKSON TERR,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_377_26,-74.6160523,39.42887133,2901 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_26,-74.42399819,39.36757443,2901 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_27,-74.61911606,39.4332277,2903 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_27,-74.42422407,39.36750193,2903 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_28,-74.45237531,39.37571498,2905 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_377_28,-74.72254385,39.58193554,2905 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_377_29,-74.37747033,39.41606801,2907 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_377_29,-74.7288435,39.587565,2907 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_377_3,-74.80159,39.651288,2916 SUNSET AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_3,-74.81651914,39.37858722,2916 SUNSET AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_30,-74.3776115,39.416941,2909 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_377_30,-74.72694134,39.57656202,2909 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_377_31,-74.378883,39.4185825,2911 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_377_31,-74.8801675,39.545642,2911 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_377_32,-74.37639691,39.41291924,2913 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_32,-74.84145481,39.54064268,2913 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_33,-74.37717913,39.41402245,2915 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_33,-74.84218008,39.52386332,2915 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_34,-74.36665848,39.41526384,2917 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_377_34,-74.843687,39.524788,2917 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_377_35,-74.3585695,39.4119475,2919 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_35,-74.7114875,39.5653645,2919 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_36,-74.36796188,39.40310428,2921 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_36,-74.65817253,39.62924037,2921 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_37,-74.36983003,39.40783467,2923 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_37,-74.70205683,39.58660603,2923 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_38,-74.66000833,39.5155905,203 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_38,-74.65613443,39.36054344,203 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_39,-74.64049149,39.52191733,205 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_39,-74.67050296,39.36561821,205 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_377_4,-74.81234216,39.64146038,2914 SUNSET AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_4,-74.75417168,39.42903564,2914 SUNSET AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_40,-74.65126773,39.53351887,207 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_377_40,-74.7999901,39.3660677,207 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_377_41,-74.67468783,39.51002549,209 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_41,-74.53479366,39.38462147,209 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_377_42,-74.6337585,39.553234,211 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_377_42,-74.54359394,39.38524562,211 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_377_43,-74.63053105,39.61951984,215 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_377_43,-74.54205968,39.38944359,215 N MORRIS AVE,ATLANTIC CITY CITY,45,1900,2,COM8,3004 -0102_377_44,-74.62743703,39.60903882,217 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_44,-74.58769117,39.43260243,217 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_45,-74.66990591,39.61956308,219 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_45,-74.60631557,39.42471885,219 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_46,-74.705615,39.6366365,221 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_377_46,-74.6068745,39.420417,221 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_47,-74.733925,39.5498215,223 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_47,-74.59807768,39.4357744,223 N MORRIS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_377_48,-74.81582218,39.52503957,225 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_48,-74.67879865,39.38169755,225 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_49,-74.81584287,39.640078,227 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_49,-74.80031064,39.375741,227 N MORRIS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_5,-74.81090156,39.64315316,2912 SUNSET AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_5,-74.7618765,39.4296335,2912 SUNSET AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_377_6,-74.813312,39.645387,2910 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_6,-74.75725583,39.4297675,2910 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_7,-74.79599035,39.64185502,2908 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES3A,3001 -0102_377_7,-74.75774872,39.43199788,2908 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_8,-74.8068,39.558845,2906 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_377_8,-74.62202706,39.4138392,2906 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3002 -0102_377_9,-74.82464328,39.54484055,2904 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3002 -0102_377_9,-74.6797585,39.3862665,2904 SUNSET AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_378_1,-74.53616693,39.37333916,204 N IOWA AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_378_1,-74.50306345,39.41006568,204 N IOWA AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_378_10,-74.6852355,39.360073,2819 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_378_10,-74.51700832,39.39585996,2819 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_378_11,-74.66920468,39.35138854,2831 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_378_11,-74.51611586,39.40080187,2831 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_378_12,-74.67016178,39.34965289,2833 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1905,2,RES1,3001 -0102_378_12,-74.5197015,39.40142,2833 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1905,2,RES1,3001 -0102_378_13,-74.643106,39.3600985,2835 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_378_13,-74.529155,39.386766,2835 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_378_14,-74.64506957,39.36012827,2837 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_378_14,-74.52753013,39.38708061,2837 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_378_15,-74.66598352,39.36159382,201 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1905,2,COM1,3004 -0102_378_15,-74.51118124,39.40046417,201 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1905,2,RES3A,3001 -0102_378_3,-74.54209975,39.37616879,200 N IOWA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_378_3,-74.4837785,39.4332705,200 N IOWA AVE,ATLANTIC CITY CITY,45,1905,2,RES3A,3001 -0102_378_4,-74.53645719,39.37451987,2807 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_378_4,-74.50346194,39.41067966,2807 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_378_5,-74.54149593,39.37668217,2809 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_378_5,-74.5243245,39.3944605,2809 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_378_6,-74.820369,39.3670405,2811 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_378_6,-74.52461842,39.39532468,2811 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_378_7,-74.808475,39.3119465,2813 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1905,1,RES1,3001 -0102_378_7,-74.52616266,39.39556926,2813 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1905,1,RES1,3001 -0102_378_8,-74.77109433,39.3206823,2815 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1905,1,RES1,3001 -0102_378_8,-74.528012,39.398926,2815 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1905,1,RES1,3002 -0102_378_9,-74.75502989,39.30168232,2817 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_378_9,-74.518568,39.3939345,2817 FAIRMOUNT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_379_1,-74.6214295,39.3799045,209 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_379_1,-74.425363,39.36811528,209 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_379_2,-74.6251668,39.37790938,211 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_379_2,-74.42175579,39.36040366,211 N BRIGHTON AVE,ATLANTIC CITY CITY,45,1990,2,RES1,3001 -0102_379_4,-74.64557732,39.38025593,2831 FENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_379_4,-74.42207145,39.36135571,2831 FENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_379_6,-74.5453495,39.3752985,2827 FENTON PL,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_379_6,-74.5051325,39.4127495,2827 FENTON PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_379_7,-74.5499825,39.373978,206 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_379_7,-74.499588,39.411497,206 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_38_1,-74.7117484,39.40082203,2430 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_38_1,-74.5765315,39.3492585,2430 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_38_2,-74.491682,39.4593665,2401 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_38_2,-74.83443706,39.64286365,2401 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_38_3,-74.743183,39.4339905,2301 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_38_3,-74.59092549,39.34872667,2301 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_380_10,-74.54202,39.3814455,204 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_380_10,-74.50465768,39.42477251,204 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_380_11,-74.5347275,39.38153,202 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_11,-74.5074347,39.4248119,202 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_12,-74.53448423,39.3823568,2701 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_380_12,-74.50729493,39.42729393,2701 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_380_13,-74.53225009,39.38354186,2703 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_380_13,-74.4964575,39.424592,2703 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_380_14,-74.53823996,39.38365634,2705 FAIRMOUNT AVE,ATLANTIC CITY CITY,,1930,2,RES1,3001 -0102_380_14,-74.49636082,39.42644665,2705 FAIRMOUNT AVE,ATLANTIC CITY CITY,,1930,2,RES1,3001 -0102_380_17,-74.53756141,39.38521736,2713 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_380_17,-74.51168873,39.40337938,2713 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_380_18,-74.54618328,39.36849779,2715 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_380_18,-74.51318362,39.40453413,2715 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_380_19,-74.54835825,39.37032689,2717 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_380_19,-74.51221866,39.40795592,2717 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_380_20,-74.54834988,39.37262158,2719 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3004 -0102_380_20,-74.5153465,39.409103,2719 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_380_21,-74.5500759,39.37333764,2721 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_380_21,-74.5172175,39.4106865,2721 FAIRMOUNT AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_380_22,-74.7130985,39.4703445,211 N IOWA AVE RR (BAY),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_380_22,-74.5438105,39.3981995,211 N IOWA AVE RR (BAY),ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_380_23,-74.54905654,39.37699536,211 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_380_23,-74.49696,39.4321425,211 N IOWA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_380_26,-74.53923735,39.38504903,209 N IOWA AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_380_26,-74.511011,39.418418,209 N IOWA AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_380_27,-74.5473435,39.3748605,207 N IOWA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_380_27,-74.50472988,39.41262739,207 N IOWA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_380_28,-74.551996,39.37614,205 N IOWA AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_380_28,-74.500597,39.4135575,205 N IOWA AVE,ATLANTIC CITY CITY,45,1921,2,RES1,3001 -0102_380_29,-74.539441,39.372875,203 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_380_29,-74.5036098,39.41771096,203 N IOWA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_380_4,-74.78646268,39.45891106,220 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_4,-74.5471985,39.3888035,220 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3002 -0102_380_5,-74.5628645,39.398644,218 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_5,-74.4619846,39.45475066,218 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_6,-74.53790289,39.38550616,216 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_6,-74.43894833,39.48899776,216 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_7,-74.55324336,39.37977655,214 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_7,-74.5165955,39.4329855,214 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_380_9,-74.54797834,39.38060742,206 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3002 -0102_380_9,-74.4943375,39.4343265,206 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_10,-74.61833051,39.45883967,228 N TEXAS AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_381_10,-74.60685666,39.32275303,228 N TEXAS AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_381_11,-74.55354006,39.46670611,226 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_11,-74.5913545,39.32742333,226 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_12,-74.53864422,39.46808208,224 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_12,-74.58764084,39.33298392,224 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_13,-74.692044,39.420484,222 N TEXAS AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_381_13,-74.575735,39.334268,222 N TEXAS AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_381_14,-74.63046,39.4288615,220 N TEXAS AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_381_14,-74.59350468,39.32180551,220 N TEXAS AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_381_15,-74.631577,39.4313565,218 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_15,-74.591452,39.324799,218 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_381_16,-74.61949268,39.43556449,216 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES3B,3001 -0102_381_16,-74.59781031,39.31077768,216 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_17,-74.62266752,39.41982294,214 N TEXAS AVE,ATLANTIC CITY CITY,27,1910,2,RES3B,3001 -0102_381_17,-74.60400375,39.31353516,214 N TEXAS AVE,ATLANTIC CITY CITY,27,1910,2,COM10,3003 -0102_381_18,-74.6562799,39.40344259,212 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,COM3,3004 -0102_381_18,-74.59478603,39.31359733,212 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_381_19,-74.651199,39.410042,210 N TEXAS AVE,ATLANTIC CITY CITY,,1910,2,RES1,3001 -0102_381_19,-74.5944445,39.3165035,210 N TEXAS AVE,ATLANTIC CITY CITY,,1910,2,RES1,3001 -0102_381_2,-74.6152935,39.4870215,239 N ARIZONA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_2,-74.5648934,39.3479891,239 N ARIZONA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_20,-74.6233575,39.4119175,208 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_20,-74.53330646,39.31394534,208 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_21,-74.62540324,39.41870838,206 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_381_21,-74.41291061,39.36532206,206 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_22,-74.6525085,39.3973645,204 N TEXAS AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_381_22,-74.41413538,39.3663336,204 N TEXAS AVE,ATLANTIC CITY CITY,27,1910,2,AGR1,3001 -0102_381_23,-74.6359225,39.39496333,200 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_23,-74.41871905,39.36053139,200 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_381_25,-74.63292866,39.39084002,2603 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_25,-74.42079294,39.36157042,2603 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_26,-74.64582392,39.37905948,2605 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_26,-74.42028574,39.36099371,2605 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_381_27,-74.56470282,39.38945651,2607 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_27,-74.486516,39.442379,2607 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_28,-74.54645368,39.39870403,2609 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_381_28,-74.48590188,39.44351939,2609 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_29,-74.549143,39.38809,2611 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_381_29,-74.486903,39.4442095,2611 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_381_3,-74.61997867,39.4382454,240 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_3,-74.55532747,39.35762688,240 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_30,-74.6303175,39.3885485,201 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_30,-74.41839673,39.3598634,201 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_31,-74.6396095,39.4005865,203 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_31,-74.41789846,39.36218267,203 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_32,-74.6447395,39.3952235,205 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_32,-74.41618019,39.36220565,205 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_33,-74.6808255,39.38873,207 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_33,-74.41262373,39.36984092,207 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_34,-74.6280327,39.41651317,209 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_34,-74.531698,39.308468,209 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_35,-74.6383544,39.41208946,211 N ARIZONA AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_381_35,-74.58661047,39.31695424,211 N ARIZONA AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_381_36,-74.65256432,39.40943839,213 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_36,-74.597128,39.314642,213 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_37,-74.62554173,39.42310789,215 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3002 -0102_381_37,-74.602686,39.31679,215 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3002 -0102_381_38,-74.6355785,39.419751,217 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_38,-74.60171375,39.31092509,217 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_39,-74.6343388,39.43477117,219 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_39,-74.58538997,39.32350475,219 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_40,-74.63262817,39.43037124,221 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_40,-74.59401441,39.32418167,221 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_41,-74.6458027,39.43412595,223 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_41,-74.5908935,39.3199705,223 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_42,-74.5567793,39.43686782,225 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_42,-74.5796335,39.3339635,225 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_43,-74.5403405,39.4677035,227 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_43,-74.58740575,39.33209394,227 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_44,-74.61516396,39.43998771,229 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_44,-74.605076,39.325617,229 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_45,-74.5389305,39.4721635,231 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_45,-74.605086,39.322524,231 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_46,-74.552957,39.477692,233 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,COM3,3004 -0102_381_46,-74.612995,39.3243375,233 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_47,-74.5473855,39.4740225,235 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_47,-74.609082,39.322046,235 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_48,-74.63402418,39.51175901,234 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_48,-74.6059845,39.3897625,234 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_49,-74.59677784,39.54287001,232 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_49,-74.60188577,39.39027603,232 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_5,-74.55597526,39.47015233,238 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_5,-74.60240067,39.32759804,238 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_50,-74.57631882,39.54286278,230 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_50,-74.60401431,39.39041498,230 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_51,-74.56944365,39.54612841,228 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_51,-74.60961245,39.37858628,228 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_52,-74.59685478,39.50632718,226 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_52,-74.60161813,39.37943657,226 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_53,-74.56881272,39.52975467,224 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_381_53,-74.614285,39.371549,224 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_381_54,-74.56374307,39.51782167,222 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_54,-74.588926,39.3781465,222 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_55,-74.86874998,39.49488968,220 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_55,-74.59659967,39.38409095,220 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_56,-74.84294256,39.4805923,218 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_56,-74.59109228,39.3726002,218 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_57,-74.875253,39.4455265,216 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_57,-74.58593601,39.37266833,216 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,COM3,3004 -0102_381_58,-74.80717916,39.44246124,214 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_58,-74.5570705,39.3972835,214 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_59,-74.661567,39.4020915,212 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_59,-74.4147797,39.36237553,212 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_6,-74.558568,39.4726775,236 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_6,-74.604252,39.328433,236 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_60,-74.6390185,39.399468,210 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_60,-74.41774919,39.36042577,210 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_61,-74.6373395,39.4015595,208 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_381_61,-74.4193225,39.3629446,208 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_62,-74.6306035,39.3904065,206 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,AGR1,3001 -0102_381_62,-74.41952443,39.36021992,206 N ARIZONA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_63,-74.56276674,39.40216741,204 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_63,-74.4795725,39.4466025,204 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_64,-74.54841363,39.39259305,202 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,AGR1,3001 -0102_381_64,-74.4596115,39.45288,202 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_381_65,-74.5352025,39.391019,200 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_65,-74.4428435,39.4855065,200 N ARIZONA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_66,-74.56870006,39.37306059,2613 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_66,-74.51123835,39.43500754,2613 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_381_67,-74.56974183,39.37344594,2615 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_381_67,-74.499574,39.43247,2615 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_68,-74.56238187,39.36972155,2617 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_68,-74.4933727,39.430757,2617 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_69,-74.5567425,39.374781,2619 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_69,-74.49138827,39.43139229,2619 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_381_7,-74.55521715,39.47767768,234 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_7,-74.61352,39.3187675,234 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_70,-74.54299117,39.37853571,2621 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_70,-74.49606527,39.43294504,2621 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_381_71,-74.544036,39.379353,2643 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_71,-74.49152133,39.43420817,2643 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_72,-74.55296851,39.38327534,2645 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_72,-74.49024558,39.43475575,2645 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_73,-74.53209,39.3808035,2647 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_381_73,-74.49791809,39.43504244,2647 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,COM7,3004 -0102_381_74,-74.57003536,39.3751171,201 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_381_74,-74.48861224,39.4302937,201 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_381_75,-74.54097933,39.3928585,203 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_381_75,-74.51101376,39.42979838,203 N CALIFORNIA AVE,ATLANTIC CITY CITY,45,1905,2,RES3A,3001 -0102_381_76,-74.5338035,39.386247,205 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_76,-74.4337405,39.492843,205 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_77,-74.564093,39.3899145,207 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_77,-74.4790315,39.4430555,207 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_78,-74.55793647,39.39792936,209 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_381_78,-74.45416637,39.46993903,209 N CALIFORNIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_381_8,-74.5528105,39.4764385,232 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_8,-74.608481,39.3221065,232 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_80,-74.71393616,39.47801849,213 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_80,-74.533406,39.3994545,213 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_81,-74.72159619,39.48210167,215 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_81,-74.55778989,39.39098844,215 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_82,-74.77467727,39.49346537,217 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_82,-74.5588965,39.3976815,217 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_83,-74.86406365,39.43970389,219 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_83,-74.5571675,39.396398,219 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_84,-74.8747045,39.458885,221 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_84,-74.57714477,39.36848915,221 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_85,-74.86336889,39.48654315,223 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_85,-74.59019996,39.37222381,223 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_86,-74.8748925,39.4840555,225 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_86,-74.5893673,39.3711145,225 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_87,-74.8726095,39.4931445,227 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_87,-74.587989,39.3787095,227 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_88,-74.57482783,39.53607073,229 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES3B,3001 -0102_381_88,-74.59069003,39.37764751,229 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_381_89,-74.5868185,39.511112,231 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_89,-74.613387,39.369071,231 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,COM3,3004 -0102_381_9,-74.538574,39.4703045,230 N TEXAS AVE,ATLANTIC CITY CITY,45,1910,2,RES3A,3001 -0102_381_9,-74.60436918,39.31768202,230 N TEXAS AVE,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_381_90,-74.54609398,39.54655642,233 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_381_90,-74.61502269,39.38298811,233 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_381_91,-74.57029007,39.55297305,235 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_381_91,-74.58111645,39.40173816,235 N CALIFORNIA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_1,-74.62175789,39.46393153,259 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_383_1,-74.56718351,39.35717083,259 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_383_10,-74.534467,39.4974155,244 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_10,-74.57232122,39.33542109,244 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_11,-74.54003166,39.50094979,242 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_11,-74.57193343,39.33861718,242 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_12,-74.5684985,39.479033,240 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_12,-74.56788689,39.34036193,240 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_13,-74.56757067,39.476231,238 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_13,-74.57157482,39.34228431,238 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_14,-74.57091087,39.47857921,236 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_14,-74.6086605,39.3298345,236 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_15,-74.55607217,39.47208728,234 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_15,-74.60634826,39.32804667,234 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_16,-74.56412,39.477445,232 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_383_16,-74.59828687,39.33034815,232 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_17,-74.54722008,39.47273979,230 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_17,-74.61583414,39.32180628,230 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_18,-74.55266988,39.47694372,228 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_18,-74.60964046,39.32297941,228 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_19,-74.48013309,39.33949383,226 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_19,-74.87839902,39.49735776,226 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_2,-74.689575,39.448863,260 N NEVADA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_383_2,-74.55509,39.36342266,260 N NEVADA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_383_20,-74.48582153,39.34028135,224 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_383_20,-74.87788704,39.50057114,224 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_21,-74.483923,39.3414955,222 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_21,-74.876541,39.4915125,222 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_24,-74.63402334,39.43258774,217 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_383_24,-74.591756,39.3249375,217 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,COM3,3004 -0102_383_25,-74.63139762,39.43016768,219 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,GOV1,3004 -0102_383_25,-74.5869405,39.3228095,219 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_26,-74.65672365,39.43292275,221 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_26,-74.5882995,39.3193445,221 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_27,-74.54485011,39.4607486,223 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_27,-74.5797725,39.332084,223 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_28,-74.55540178,39.46796188,225 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_383_28,-74.590803,39.332034,225 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_29,-74.6091275,39.4399155,227 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES3B,3001 -0102_383_29,-74.60326767,39.32555753,227 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,GOV1,3004 -0102_383_30,-74.5375705,39.4719635,229 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_30,-74.59970147,39.32078168,229 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_31,-74.54327782,39.47647434,231 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_31,-74.61388886,39.32230299,231 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_32,-74.54757622,39.47131206,233 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_32,-74.61314,39.321809,233 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_33,-74.554457,39.4762925,235 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_33,-74.60730002,39.32855282,235 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_34,-74.563975,39.4711825,237 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_383_34,-74.60708984,39.32765701,237 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_383_35,-74.5657745,39.477803,239 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_35,-74.608866,39.3292995,239 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,GOV1,3004 -0102_383_36,-74.56797555,39.47546334,241 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,IND1,3002 -0102_383_36,-74.56835214,39.34054855,241 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_37,-74.53548977,39.48980307,243 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_383_37,-74.57255963,39.34023815,243 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_38,-74.53128276,39.4981996,245 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_38,-74.57430098,39.33579674,245 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_39,-74.58130506,39.47373457,247 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3004 -0102_383_39,-74.57391744,39.34985521,247 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_383_4,-74.62769834,39.46394769,256 N NEVADA AVE,ATLANTIC CITY CITY,27,2016,1,RES1,3001 -0102_383_4,-74.56495944,39.3583497,256 N NEVADA AVE,ATLANTIC CITY CITY,27,2016,1,GOV1,3004 -0102_383_40,-74.60212207,39.48260292,249 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_40,-74.57253732,39.34813504,249 N TEXAS AVE,ATLANTIC CITY CITY,27,1923,2,GOV1,3004 -0102_383_41,-74.6100025,39.48374633,251 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_41,-74.55203452,39.36798134,251 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_42,-74.5922885,39.489142,253 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_383_42,-74.55261,39.3618085,253 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_43,-74.60713016,39.49995559,255 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_383_43,-74.5571345,39.359142,255 N TEXAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_383_44,-74.6288724,39.43736067,257 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_44,-74.556879,39.35740317,257 N TEXAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_5,-74.64155266,39.44891497,254 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_5,-74.564146,39.3539335,254 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,GOV1,3004 -0102_383_6,-74.5842175,39.501719,252 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_6,-74.55160653,39.36111816,252 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_7,-74.58740179,39.49479216,250 N NEVADA AVE,ATLANTIC CITY CITY,27,2016,2,RES1,3001 -0102_383_7,-74.549319,39.363173,250 N NEVADA AVE,ATLANTIC CITY CITY,27,2016,2,RES1,3001 -0102_383_8,-74.61290513,39.48658231,248 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_383_8,-74.54014445,39.35519859,248 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3004 -0102_383_9,-74.61488943,39.47742935,246 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_383_9,-74.56565496,39.34891515,246 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_1,-74.70615971,39.44560962,265 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_1,-74.566777,39.368081,265 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_10,-74.62205442,39.46366311,253 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_10,-74.56668594,39.35538439,253 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_384_11,-74.62427293,39.36406646,251 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,GOV1,3004 -0102_384_11,-74.44796634,39.37327389,251 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_12,-74.62733646,39.35264231,249 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_12,-74.4529892,39.37356955,249 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_14,-74.6285395,39.358999,247 N NEVADA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_384_14,-74.44695485,39.37520058,247 N NEVADA AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_384_16,-74.6564185,39.346484,245 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_16,-74.38198817,39.41471549,245 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_18,-74.638336,39.342839,243 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_18,-74.37431512,39.41467928,243 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_19,-74.62839503,39.35519382,243 N NEVADA AVE RR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_19,-74.45165915,39.3748078,243 N NEVADA AVE RR,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_2,-74.68950733,39.44815719,263 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_384_2,-74.55633933,39.36056065,263 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_20,-74.63349142,39.34684588,241 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,GOV1,3004 -0102_384_20,-74.36955,39.4153055,241 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_22,-74.65525918,39.34895464,239 N NEVADA AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_384_22,-74.37206399,39.41131213,239 N NEVADA AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_384_23,-74.64179,39.342139,237 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_23,-74.37009407,39.41439776,237 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_24,-74.63883838,39.34405871,235 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_384_24,-74.37357442,39.41526661,235 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_384_25,-74.59643677,39.36154913,233 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_25,-74.358026,39.4126375,233 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_27,-74.63104,39.317022,231 N NEVADA AVE,ATLANTIC CITY CITY,28,1900,2,RES1,3001 -0102_384_27,-74.37291158,39.41852777,231 N NEVADA AVE,ATLANTIC CITY CITY,28,1900,2,RES1,3001 -0102_384_28,-74.47180535,39.34528301,229 N NEVADA AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_384_28,-74.6233275,39.514223,229 N NEVADA AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_384_30,-74.46550515,39.34849802,227 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_30,-74.57539136,39.53966979,227 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_33,-74.46865534,39.3451885,220 N FLORIDA AVE,ATLANTIC CITY CITY,16,1906,1,RES1,3001 -0102_384_33,-74.641004,39.520697,220 N FLORIDA AVE,ATLANTIC CITY CITY,16,1906,1,RES1,3001 -0102_384_34,-74.48313109,39.33448618,218 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_34,-74.578481,39.528756,218 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_35,-74.4815269,39.33611933,216 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_384_35,-74.58668573,39.51127156,216 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_384_36,-74.478193,39.337478,214 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_36,-74.56710768,39.51154693,214 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_37,-74.47980252,39.33912434,212 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_37,-74.87288606,39.49695733,212 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_38,-74.48336353,39.34024029,210 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_38,-74.873072,39.500282,210 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_39,-74.48136293,39.34127733,208 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_39,-74.86742923,39.49838448,208 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_4,-74.69410658,39.4486657,261 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_4,-74.56091727,39.36147654,261 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_40,-74.48106666,39.34173238,206 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_384_40,-74.87311692,39.49323919,206 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_41,-74.4754905,39.339337,204 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_41,-74.86583766,39.48978449,204 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_42,-74.4750195,39.340134,202 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_384_42,-74.870502,39.4926165,202 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_43,-74.46815754,39.34182441,200 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_43,-74.859624,39.4872625,200 N FLORIDA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_54,-74.47497792,39.34196532,2507 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_54,-74.85087571,39.49049042,2507 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_55,-74.46921958,39.34224467,2509 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_55,-74.8807015,39.4830015,2509 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_56,-74.46357217,39.34616649,2511 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_56,-74.843071,39.4815565,2511 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_57,-74.4610855,39.350727,2513 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_57,-74.8342285,39.4875145,2513 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_58,-74.5958156,39.36162149,2515 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_58,-74.3602605,39.413722,2515 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_59,-74.594052,39.3660005,2517 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_59,-74.36103938,39.41402088,2517 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_6,-74.68037678,39.44559559,259 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_6,-74.57113484,39.35153667,259 N NEVADA AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_384_60,-74.5892038,39.35188989,2519 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_60,-74.36217133,39.41504177,2519 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_61,-74.58827892,39.35257679,2521 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_384_61,-74.36404225,39.41601156,2521 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_62,-74.58866725,39.35794934,2523 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_62,-74.36561545,39.41657825,2523 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_384_63,-74.57796948,39.35192817,2525 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,2017,1,RES1,3001 -0102_384_63,-74.36643382,39.41760787,2525 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,2017,1,RES1,3001 -0102_384_64,-74.57562606,39.3550677,2527 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_64,-74.363175,39.4176955,2527 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_65,-74.5854195,39.35579661,2529 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_65,-74.37245781,39.40603931,2529 FAIRMOUNT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_384_66,-74.58610062,39.3585998,2531 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_384_66,-74.37192,39.406289,2531 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_384_8,-74.680614,39.4438385,257 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,AGR1,3001 -0102_384_8,-74.5733595,39.3519135,257 N NEVADA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_384_9,-74.6810855,39.4440355,255 N NEVADA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_384_9,-74.5679395,39.3549825,255 N NEVADA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_385_1,-74.6187935,39.364401,205 N FLORIDA AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_385_1,-74.3585275,39.412282,205 N FLORIDA AVE,ATLANTIC CITY CITY,17,1925,1,GOV1,3004 -0102_385_2,-74.47046033,39.34558001,203 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_385_2,-74.62228442,39.51189036,203 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_385_3,-74.485878,39.336143,201 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_385_3,-74.59600943,39.50437699,201 N FLORIDA AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_385_4,-74.480912,39.338646,2431 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_385_4,-74.5458995,39.5097655,2431 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_386_2,-74.6317165,39.3644845,2445 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_386_2,-74.510395,39.385475,2445 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_386_4,-74.63140792,39.36177961,2425 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_386_4,-74.52631938,39.39058718,2425 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_386_5,-74.64865259,39.35233894,2401 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_386_5,-74.5229265,39.387221,2401 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_387_1,-74.6650305,39.461454,304 TURNPIKE RD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_387_1,-74.5692641,39.36690918,304 TURNPIKE RD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_387_2,-74.6509475,39.353258,300 N GEORGIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_387_2,-74.52211753,39.39030432,300 N GEORGIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_387_5,-74.62463375,39.36120665,300 TURNPIKE RD,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_387_5,-74.53114035,39.38437843,300 TURNPIKE RD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_387_7,-74.62845128,39.3609611,2444 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,IND2,3002 -0102_387_7,-74.51997433,39.39090944,2444 SUNSET AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_387_8,-74.6376725,39.3658955,2442 SUNSET AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_387_8,-74.512893,39.3886905,2442 SUNSET AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_387_9,-74.63993,39.364238,2424 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_387_9,-74.52031575,39.39071681,2424 SUNSET AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_10,-74.6355403,39.34204615,2411 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_388_10,-74.37621559,39.41667224,2411 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_11,-74.64513368,39.32708628,2413 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_11,-74.37516619,39.41786707,2413 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_12,-74.644362,39.3333295,2415 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_12,-74.37432427,39.41826159,2415 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_13,-74.63121608,39.34780914,2419 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_388_13,-74.37489532,39.41530765,2419 FAIRMOUNT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_388_15,-74.630869,39.3171195,2425 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_15,-74.362263,39.410845,2425 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_2,-74.62921664,39.36270026,2406 ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_2,-74.4941575,39.379351,2406 ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_5,-74.64389615,39.336488,2401 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_5,-74.3720265,39.4116965,2401 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_388_9,-74.636919,39.3419755,2409 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_388_9,-74.36922505,39.41548181,2409 FAIRMOUNT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_1,-74.7563975,39.429852,104 COLUMBIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_1,-74.605057,39.3426,104 COLUMBIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_2,-74.7710199,39.42722715,2234 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_2,-74.59422505,39.34479093,2234 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_3,-74.74478608,39.41208617,139 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_3,-74.5861463,39.34925517,139 S MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_4,-74.69843536,39.48806212,2235 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_4,-74.57860715,39.33595417,2235 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_5,-74.47069603,39.48923116,AIR RIGHTS COLUMBIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_5,-74.4803014,39.34336894,AIR RIGHTS COLUMBIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_6,-74.67216316,39.49916503,AIR RIGHTS MISSISSIPPI AV,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_6,-74.58211579,39.3390432,AIR RIGHTS MISSISSIPPI AV,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_7,-74.76151975,39.42960263,AIR RIGHTS PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_39_7,-74.60204867,39.34669949,AIR RIGHTS PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_391_1,-74.528186,39.3841685,2 CONVENTION BOULEVARD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_391_1,-74.81522566,39.65489299,2 CONVENTION BOULEVARD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_396_1,-74.60759398,39.3492268,301 N OHIO AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_396_1,-74.36798108,39.40687162,301 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_396_6,-74.603571,39.3497765,267 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_396_6,-74.365111,39.407925,267 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_396_7,-74.6152691,39.33918809,1801 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_396_7,-74.36634907,39.40871467,1801 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_398_1,-74.673093,39.4971255,263 N INDIANA AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_398_1,-74.58278869,39.33873097,263 N INDIANA AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_399_4,-74.60610802,39.34044252,1741 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_399_4,-74.36218901,39.40931667,1741 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_4_1,-74.39884558,39.38624219,101 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1919,1,RES1,3001 -0102_4_1,-74.80002567,39.63506902,101 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1919,1,RES1,3001 -0102_4_10,-74.38902513,39.38933504,113 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1919,1,RES1,3001 -0102_4_10,-74.80023983,39.62546849,113 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1919,1,RES1,3001 -0102_4_2,-74.38623543,39.39722455,4600 ATLANTIC AVE,ATLANTIC CITY CITY,20,1920,1,RES1,3001 -0102_4_2,-74.81593351,39.63949333,4600 ATLANTIC AVE,ATLANTIC CITY CITY,20,1920,1,RES1,3001 -0102_4_3,-74.39115283,39.38856048,114 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_4_3,-74.79746735,39.63618175,114 S PLAZA PL,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_4_4,-74.3918005,39.3927415,118 S PLAZA PL,ATLANTIC CITY CITY,18,1925,1,GOV1,3004 -0102_4_4,-74.82134564,39.62004135,118 S PLAZA PL,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_4_8,-74.3850395,39.393592,125 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1926,1,RES1,3001 -0102_4_8,-74.815636,39.614067,125 S MONTGOMERY AVE,ATLANTIC CITY CITY,18,1926,1,RES1,3001 -0102_40_10,-74.71026946,39.42911689,127 COLUMBIA PL,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_40_10,-74.57661766,39.34355481,127 COLUMBIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_40_34,-74.55689556,39.37226059,AIR RIGHTS COLUMBIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_40_34,-74.48650282,39.33958399,AIR RIGHTS COLUMBIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_40_6,-74.718988,39.3904905,2201 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_40_6,-74.57588322,39.35069403,2201 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_400_1,-74.72474673,39.45781101,200 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_400_1,-74.63372517,39.347015,200 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_401_1,-74.7331125,39.4617445,249 N KENTUCKY AVE RR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_401_1,-74.63784122,39.36456982,249 N KENTUCKY AVE RR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_401_10,-74.8593485,39.4461585,1520 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_10,-74.77393664,39.31714017,1520 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_12,-74.76183426,39.4462963,24 BROOKLYN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_401_12,-74.64209018,39.36217745,24 BROOKLYN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_401_13,-74.73369181,39.45411018,7 THOMPSON ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_401_13,-74.63419323,39.35767775,7 THOMPSON ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_401_14,-74.758247,39.448584,20 BROOKLYN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_14,-74.637599,39.3623595,20 BROOKLYN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_16,-74.73623019,39.46626197,18 BROOKLYN AVE,ATLANTIC CITY CITY,33,1900,1,COM3,3004 -0102_401_16,-74.62739672,39.36364992,18 BROOKLYN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_17,-74.7315295,39.4547825,3 THOMPSON ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_401_17,-74.6250485,39.3534875,3 THOMPSON ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_401_18,-74.75022558,39.45332331,17 BROOKLYN AVENUE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_401_18,-74.629888,39.366401,17 BROOKLYN AVENUE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_2,-74.75372629,39.44741904,1536 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_401_2,-74.63043723,39.36188373,1536 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_20,-74.72975502,39.45466977,16 BROOKLYN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_20,-74.63297528,39.35873429,16 BROOKLYN AVE,ATLANTIC CITY CITY,33,1900,1,IND2,3002 -0102_401_23,-74.7341915,39.4387575,1525 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_23,-74.63913409,39.33913365,1525 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_26,-74.72123959,39.44938004,1531 C MORRIS CAIN PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_401_26,-74.6382245,39.323674,1531 C MORRIS CAIN PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_401_27,-74.728541,39.4522015,1533 C MORRIS CAIN PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_401_27,-74.59789642,39.36189267,1533 C MORRIS CAIN PL,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_401_29,-74.70712028,39.447954,1537 C MORRIS CAIN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_401_29,-74.6017845,39.365449,1537 C MORRIS CAIN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_401_3,-74.753362,39.446497,1534 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_3,-74.6527655,39.3541665,1534 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_33,-74.720143,39.4479025,239 N KENTUCKY AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_401_33,-74.6354515,39.34277567,239 N KENTUCKY AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_401_34,-74.71281299,39.46916267,241 N KENTUCKY AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_401_34,-74.6373045,39.3448985,241 N KENTUCKY AVE,ATLANTIC CITY CITY,27,1900,2,RES3B,3001 -0102_401_4,-74.75578149,39.44530416,1532 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_401_4,-74.6619745,39.3608475,1532 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_401_5,-74.7590715,39.4449,1530 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,REL1,3004 -0102_401_5,-74.66969069,39.35967001,1530 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_401_6,-74.75689332,39.45364793,1528 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_6,-74.66695818,39.35716118,1528 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_7,-74.794612,39.4610515,1526 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_7,-74.67869965,39.35156948,1526 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_8,-74.835435,39.449616,1524 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_8,-74.7617575,39.3087845,1524 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_9,-74.8273436,39.46678026,1522 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_401_9,-74.75717587,39.30385565,1522 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_13,-74.72716095,39.45179371,1508 C MORRIS CAIN,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_402_13,-74.6307205,39.3158925,1508 C MORRIS CAIN,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_402_14,-74.71288739,39.46752439,226 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_14,-74.63680584,39.34371344,226 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_19,-74.83073386,39.41545694,214 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_19,-74.617962,39.3594905,214 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_20,-74.82449286,39.41530424,212 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_20,-74.576525,39.3668065,212 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_21,-74.7951975,39.4121165,210 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_21,-74.588253,39.3532565,210 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_23,-74.5883834,39.34746214,206 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_402_23,-74.400432,39.387477,206 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_402_24,-74.59390128,39.34959396,204 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_24,-74.40351351,39.39040224,204 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_3,-74.75606127,39.43281411,1534 C MORRIS CAIN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_402_3,-74.60837166,39.34303748,1534 C MORRIS CAIN PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_402_30,-74.58442739,39.34453885,1519 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_30,-74.4383605,39.3697135,1519 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_32,-74.5764485,39.3345445,1521 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_32,-74.44172909,39.37359807,1521 BALTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_402_33,-74.58866134,39.3372251,1523 BALTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_402_33,-74.44264674,39.37303077,1523 BALTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_402_34,-74.578763,39.350107,205 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_34,-74.4367975,39.370005,205 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_402_37,-74.59412267,39.3480925,1519 HODSON ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_37,-74.401292,39.389141,1519 HODSON ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_38,-74.58636219,39.34983309,1521 HODSON ST,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_402_38,-74.40770973,39.39265794,1521 HODSON ST,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_402_4,-74.75779422,39.43132639,1532 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_4,-74.5795634,39.35941769,1532 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_5,-74.8096755,39.382183,1530 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_5,-74.58720154,39.35928946,1530 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_6,-74.852559,39.3684145,1528 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_6,-74.5928722,39.35856405,1528 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_7,-74.8126475,39.41298,1526 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_402_7,-74.589357,39.3522255,1526 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_402_8,-74.82687584,39.41576067,1524 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_8,-74.59189808,39.35149859,1524 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_402_9,-74.83636562,39.41625263,1522 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,2017,1,RES1,3001 -0102_402_9,-74.57554853,39.36358997,1522 C MORRIS CAIN PL,ATLANTIC CITY CITY,33,2017,1,RES1,3001 -0102_403_1,-74.83792229,39.49145704,250 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_403_1,-74.5476265,39.369713,250 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_404_1,-74.54723109,39.5174711,233 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_404_1,-74.5338405,39.382266,233 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_404_2,-74.94498168,39.52465759,1416 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_404_2,-74.6020775,39.501589,1416 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_404_3.01,-74.75938144,39.6302483,214 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.01,-74.64390687,39.39986637,214 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.02,-74.9469765,39.5267315,212 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.02,-74.61859814,39.48751045,212 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.03,-74.56006747,39.51580134,210 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.03,-74.53701465,39.38189454,210 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3002 -0102_404_3.04,-74.82871701,39.48986739,208 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.04,-74.54990495,39.36882619,208 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.05,-74.808249,39.492232,206 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.05,-74.82060182,39.36634779,206 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.06,-74.7960525,39.4658965,204 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.06,-74.7566555,39.3046085,204 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.07,-74.757445,39.4494555,202 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.07,-74.63693433,39.36376378,202 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.08,-74.73247856,39.46082831,200 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_404_3.08,-74.654634,39.344832,200 N TENNESSEE AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_405_1,-74.80177534,39.60329702,1330 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_405_1,-74.63073897,39.41865068,1330 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_405_10,-74.56762646,39.51816458,210 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_405_10,-74.628174,39.35736605,210 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_405_13,-74.5698919,39.50733072,1305 BALTIC AVE,ATLANTIC CITY CITY,,0,1,COM5,3004 -0102_405_13,-74.62814157,39.35960972,1305 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_405_16,-74.93014183,39.52838497,1325 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_405_16,-74.61163895,39.48912185,1325 BALTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_405_3,-74.77316731,39.63701112,1305 NEW GRETNA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_405_3,-74.6325365,39.40788,1305 NEW GRETNA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_405_6,-74.91672699,39.54047433,218 N SOUTH CAROLINA AVE.,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_405_6,-74.62642915,39.44346535,218 N SOUTH CAROLINA AVE.,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_405_7,-74.58065474,39.34200939,216 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,16,2012,1,RES1,3001 -0102_405_7,-74.42317466,39.3716762,216 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,16,2012,1,RES1,3001 -0102_405_8,-74.61409659,39.50852339,214 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_405_8,-74.63170729,39.35569002,214 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_405_9,-74.56188397,39.52575267,1313 BALTIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_405_9,-74.62786144,39.35304017,1313 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_406_10,-74.883106,39.5618845,213 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_406_10,-74.626108,39.438969,213 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_406_6,-74.563451,39.514894,203 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_406_6,-74.623103,39.357497,203 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_406_7,-74.56013592,39.53528438,205 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_406_7,-74.63311641,39.3596071,205 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_407_1,-74.86735391,39.60101561,1209 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_407_1,-74.59847324,39.43493084,1209 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_408_1,-74.87997904,39.59824484,1108 CITY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_408_1,-74.61753059,39.43021275,1108 CITY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_408_14,-74.8832935,39.5934315,1106 COMMODORE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_408_14,-74.63935195,39.43626085,1106 COMMODORE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_408_2,-74.82827431,39.52740501,214 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_408_2,-74.563112,39.414318,214 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_408_24,-74.974555,39.510954,1105 BALTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_408_24,-74.63762785,39.44465074,1105 BALTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_408_25,-74.86157678,39.59580296,1107 BALTIC AVE,ATLANTIC CITY CITY,45,1900,2,COM8,3004 -0102_408_25,-74.63122114,39.41512264,1107 BALTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_408_26,-74.58561266,39.33560948,1109 BALTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_408_26,-74.4233405,39.3696035,1109 BALTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_408_28,-74.5829355,39.3370665,1115 BALTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_408_28,-74.42485883,39.37072384,1115 BALTIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_408_29,-74.58010514,39.33884936,1117 BALTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_408_29,-74.42793468,39.37109693,1117 BALTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_408_30,-74.78927643,39.63387524,1119 BALTIC AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_408_30,-74.62697,39.4151095,1119 BALTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_41_1,-74.88191888,39.45829378,2101 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_41_1,-74.642272,39.362559,2101 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_41_10,-74.51793799,39.45018527,AIR RIGHTS PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_41_10,-74.8163325,39.6404357,AIR RIGHTS PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_41_11,-74.73614638,39.43158136,AIR RIGHTS ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_41_11,-74.58029151,39.34280862,AIR RIGHTS ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_413_1,-74.5277165,39.3904595,225 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_413_1,-74.7864366,39.63212489,225 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_415_1,-74.55811434,39.3625895,822 LEXINGTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_415_1,-74.50397811,39.33904796,822 LEXINGTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_415_17,-74.5659568,39.5073768,811 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_415_17,-74.6558585,39.3474845,811 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_415_19,-74.51875995,39.44304337,821 BALTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_415_19,-74.80940813,39.65066508,821 BALTIC AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_415_9,-74.57446273,39.36398666,807 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_415_9,-74.37448605,39.39790517,807 BALTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_416_4,-74.8801945,39.592306,230 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_416_4,-74.64612878,39.41185648,230 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_416_5,-74.88143437,39.59446417,226 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_416_5,-74.65307996,39.4047339,226 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_417_10,-74.59919117,39.31364351,216 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_417_10,-74.48639144,39.33753882,216 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_417_11,-74.60186604,39.30753664,214 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_417_11,-74.48216841,39.33782884,214 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_417_12,-74.6007941,39.30760182,210 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_417_12,-74.48575718,39.33776923,210 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_417_4,-74.597883,39.3129605,704 LEXINGTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_417_4,-74.48671481,39.33710683,704 LEXINGTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_417_7,-74.61311316,39.31555522,222 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_417_7,-74.4858575,39.3357165,222 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_417_8,-74.60080534,39.30971931,220 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_417_8,-74.479505,39.336277,220 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_417_9,-74.597945,39.310486,218 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_417_9,-74.48364201,39.33664335,218 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_42_1,-74.8743765,39.490654,2000 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_42_1,-74.697238,39.3556045,2000 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_42_4.01,-74.75759105,39.43334223,139 S ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_42_4.01,-74.59294583,39.3436405,139 S ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_42_6,-74.86644912,39.45159287,AIR RIGHTS MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_42_6,-74.65297845,39.35561391,AIR RIGHTS MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_42_7,-74.8115855,39.3718695,AIR RIGHTS MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_42_7,-74.58267395,39.35703168,AIR RIGHTS MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_423_1,-74.51484636,39.41414436,514 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_423_1,-74.92932,39.517672,514 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_423_2,-74.4912815,39.421826,512 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_423_2,-74.9448696,39.51937775,512 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_423_3,-74.50865015,39.43374866,240 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_423_3,-74.942392,39.52266,240 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_423_6.02,-74.7986769,39.6202361,226 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_423_6.02,-74.61999209,39.42163694,226 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_423_9,-74.8751917,39.60290354,222 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,16,2011,1,RES1,3001 -0102_423_9,-74.62353684,39.42431998,222 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,16,2011,1,RES1,3001 -0102_424_1,-74.88070467,39.59097852,505 MADISON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_424_1,-74.6197615,39.427553,505 MADISON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_425_10.02,-74.595023,39.30999492,506 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_425_10.02,-74.47725288,39.33911361,506 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_425_14,-74.59545497,39.31064058,334 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_425_14,-74.4828906,39.33952368,334 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_425_2,-74.534725,39.31431067,522 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_425_2,-74.51467348,39.32636383,522 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_425_3,-74.59174805,39.31701333,520 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_425_3,-74.456454,39.349422,520 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_425_4,-74.58704115,39.31649259,518 ADRIATIC AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_425_4,-74.46245073,39.34655233,518 ADRIATIC AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_425_5,-74.58678783,39.3161185,516 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_425_5,-74.46931486,39.34235527,516 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_425_6,-74.592786,39.312787,514 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_425_6,-74.47463595,39.33957032,514 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_425_7,-74.5961615,39.3124835,512 ADRIATIC AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_425_7,-74.47795577,39.34273191,512 ADRIATIC AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_426_10,-74.48968336,39.52372169,523 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_10,-74.5109325,39.3341025,523 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_426_11,-74.49868519,39.52354487,521 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_426_11,-74.50965621,39.3310536,521 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_12,-74.49857994,39.5231173,519 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_12,-74.51518813,39.33000291,519 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_13,-74.50077329,39.53341415,517 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_13,-74.50942098,39.32981933,517 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,COM3,3004 -0102_426_14.01,-74.58786514,39.31447914,332 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3004 -0102_426_14.01,-74.473979,39.3397795,332 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_426_14.02,-74.59676692,39.30807706,330 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_426_14.02,-74.45671083,39.35128534,330 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1998,2,RES1,3001 -0102_426_16,-74.472693,39.5388445,501 DREXEL AVE,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_426_16,-74.51308315,39.32835996,501 DREXEL AVE,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_426_19,-74.529156,39.4998725,529 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_426_19,-74.52224933,39.32266252,529 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_426_22,-74.49978937,39.49926821,535 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_426_22,-74.512,39.323285,535 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_426_23,-74.50126002,39.48716415,537 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_426_23,-74.51549213,39.32442354,537 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_426_26,-74.56495953,39.35591664,337 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_26,-74.3798867,39.40060633,337 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_28,-74.557363,39.3622135,339 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_28,-74.3856605,39.397343,339 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_29,-74.57954818,39.34259532,341 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_29,-74.40921,39.3799465,341 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_30,-74.50230528,39.50355236,343 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_426_30,-74.51361,39.324225,343 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_31,-74.52916532,39.493319,345 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_426_31,-74.51859694,39.32097983,345 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_427_10,-74.5581875,39.3579115,514 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_427_10,-74.39706703,39.39089241,514 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_11,-74.55521282,39.35673348,512 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_11,-74.3989264,39.38708899,512 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_12,-74.57236807,39.35370627,510 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_12,-74.3795145,39.3997315,510 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_13,-74.56473258,39.36643947,508 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_13,-74.39707036,39.39397409,508 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_427_14,-74.43787884,39.51932132,316 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_427_14,-74.52074334,39.32142348,316 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_427_15,-74.4991444,39.49824519,314 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_427_15,-74.51767247,39.32327833,314 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_427_16,-74.5696735,39.364135,312 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_427_16,-74.40912776,39.38212533,312 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_427_17,-74.553841,39.3574285,310 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_427_17,-74.39205846,39.39056584,310 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_427_18,-74.573743,39.3366835,509 GRAFF LANE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_427_18,-74.50939,39.339758,509 GRAFF LANE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_427_2,-74.6075625,39.3217715,530 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_2,-74.49277782,39.33804573,530 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_22,-74.605252,39.3235555,519 GRAFF LANE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_427_22,-74.45715438,39.35202333,519 GRAFF LANE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_427_3,-74.6111165,39.3252975,528 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_3,-74.48830967,39.3359155,528 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_4,-74.61179405,39.32283067,526 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_4,-74.5046705,39.3403055,526 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_5,-74.6005375,39.3285065,524 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_5,-74.4995515,39.3372195,524 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_6,-74.61217921,39.32605703,522 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_6,-74.500121,39.3343485,522 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_7,-74.57195291,39.34953399,520 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_7,-74.374493,39.3996375,520 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_8,-74.56459177,39.34433593,518 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_8,-74.394378,39.3924545,518 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_427_9,-74.54904726,39.36105016,516 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_427_9,-74.39311984,39.39129047,516 DREXEL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_428_10,-74.50075667,39.441348,517 MELROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_428_10,-74.7928175,39.665819,517 MELROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_428_11,-74.49278007,39.44870572,515 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_11,-74.78294191,39.67455406,515 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_12,-74.498328,39.4485565,513 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_12,-74.80316785,39.64309082,513 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_14,-74.6089315,39.325744,509 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_14,-74.4934985,39.33655683,509 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_15,-74.610118,39.32499,507 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_15,-74.491312,39.3357765,507 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_16,-74.601697,39.33261767,505 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_16,-74.50164183,39.33746952,505 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_17,-74.568237,39.350097,300 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_428_17,-74.51099399,39.33754333,300 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_428_3,-74.5113655,39.4283855,531 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_3,-74.8845275,39.598946,531 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_4,-74.48343862,39.44161351,529 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,REL1,3004 -0102_428_4,-74.69121292,39.65102327,529 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_5,-74.48318693,39.43767633,527 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_5,-74.7432158,39.64103718,527 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_6,-74.47047358,39.44656423,525 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_6,-74.752694,39.660795,525 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_428_7,-74.4613215,39.454386,523 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_7,-74.78102499,39.66094927,523 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_428_9,-74.501054,39.4430225,519 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_428_9,-74.7809105,39.672043,519 MELROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_429_1.01,-74.7936515,39.6472005,625 MEDITERRANEAN AVE,ATLANTIC CITY CITY,39,1991,1,RES1,3001 -0102_429_1.01,-74.679285,39.4453455,625 MEDITERRANEAN AVE,ATLANTIC CITY CITY,39,1991,1,RES1,3001 -0102_429_1.02,-74.78428473,39.64362218,623 MEDITERRANEAN AVE,ATLANTIC CITY CITY,39,1991,1,RES1,3001 -0102_429_1.02,-74.69070274,39.44763943,623 MEDITERRANEAN AVE,ATLANTIC CITY CITY,39,1991,1,RES1,3001 -0102_429_1.03,-74.79143033,39.64285299,621 MEDITERRANEAN AVE,ATLANTIC CITY CITY,39,1991,1,RES1,3001 -0102_429_1.03,-74.66774492,39.45614687,621 MEDITERRANEAN AVE,ATLANTIC CITY CITY,39,1991,1,RES1,3001 -0102_429_1.04,-74.78474054,39.63968834,619 MEDITERRANEAN AVE,ATLANTIC CITY CITY,39,1991,1,GOV1,3004 -0102_429_1.04,-74.70643877,39.47858704,619 MEDITERRANEAN AVE,ATLANTIC CITY CITY,39,1991,1,RES1,3001 -0102_429_7,-74.511641,39.4175955,609 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_429_7,-74.89878558,39.51368066,609 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_429_8,-74.50023627,39.42603989,308 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_429_8,-74.951213,39.5115445,308 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_429_9,-74.5183366,39.41235721,302 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_429_9,-74.9330825,39.51263255,302 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_43_1,-74.659152,39.5163315,1900 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_43_1,-74.54680866,39.37822202,1900 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_43_13,-74.85523766,39.48505067,AIR RIGHTS POP LLOYD BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_43_13,-74.67026095,39.36504322,AIR RIGHTS POP LLOYD BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_430_11,-74.497702,39.428772,614 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_430_11,-74.93713707,39.52236323,614 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_12,-74.51743624,39.42952431,612 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_12,-74.88364931,39.58428543,612 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_13,-74.4396605,39.487207,610 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_13,-74.687498,39.65327,610 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_15,-74.60726759,39.32511282,322 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_430_15,-74.45967617,39.353935,322 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_430_19,-74.49970377,39.42810684,314 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_19,-74.88740386,39.56201266,314 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_2,-74.52229508,39.40601779,636 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_430_2,-74.9395757,39.49708325,636 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_430_20,-74.49092379,39.43140987,312 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_20,-74.9355125,39.525023,312 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_21,-74.48856722,39.43303005,310 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_21,-74.960665,39.5126755,310 N CONNECTICUT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_3,-74.51875025,39.41639466,632 DREXEL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_430_3,-74.91957314,39.51484705,632 DREXEL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_430_4,-74.4956648,39.42734747,628 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_430_4,-74.940998,39.5209775,628 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_430_5,-74.50126487,39.42677056,626 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_430_5,-74.94779321,39.51698456,626 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_430_7,-74.503794,39.424567,622 DREXEL AVE,ATLANTIC CITY CITY,33,1910,1,GOV1,3004 -0102_430_7,-74.9502015,39.5183145,622 DREXEL AVE,ATLANTIC CITY CITY,33,1910,1,COM1,3004 -0102_430_8,-74.49586423,39.43380545,620 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_8,-74.9542115,39.515839,620 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_430_9,-74.49176724,39.43157113,618 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_430_9,-74.93432067,39.52531791,618 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_12,-74.487822,39.5270845,358 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_12,-74.52529855,39.31789846,358 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_13,-74.4964255,39.527439,356 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_13,-74.52373261,39.31880435,356 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_431_14,-74.49930122,39.4979479,354 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_431_14,-74.51249412,39.32175855,354 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1928,2,RES1,3001 -0102_431_15,-74.49504959,39.4941587,352 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_431_15,-74.5027938,39.32592836,352 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_431_16,-74.57388955,39.36734881,350 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_16,-74.3866165,39.393804,350 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_431_17,-74.55714202,39.35700842,348 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_17,-74.3930745,39.38911,348 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_18,-74.55107226,39.35908225,346 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_18,-74.391432,39.3915735,346 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_19,-74.57040619,39.35086509,344 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_19,-74.51025206,39.33831565,344 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_431_2,-74.56831383,39.35393215,630 ADRIATIC AVE,ATLANTIC CITY CITY,33,1923,1,RES1,3001 -0102_431_2,-74.38003217,39.40026899,630 ADRIATIC AVE,ATLANTIC CITY CITY,33,1923,1,RES1,3001 -0102_431_21,-74.56782803,39.3482489,611 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_21,-74.39139532,39.39374431,611 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_431_22,-74.57203411,39.33982272,613 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_22,-74.48871684,39.35097489,613 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_23,-74.6021615,39.3259255,615 DREXEL AVE,ATLANTIC CITY CITY,33,1923,1,RES1,3001 -0102_431_23,-74.50045884,39.33470148,615 DREXEL AVE,ATLANTIC CITY CITY,33,1923,1,RES1,3001 -0102_431_24,-74.6010815,39.3278005,617 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_24,-74.50623866,39.33712954,617 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_25,-74.60872247,39.32161766,619 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_431_25,-74.5036395,39.338403,619 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_26,-74.61130018,39.32572241,621 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_26,-74.49470967,39.33644899,621 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_27,-74.6059755,39.321764,623 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_431_27,-74.49553298,39.33728414,623 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_28,-74.50751977,39.4465354,625 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_28,-74.80988618,39.64328994,625 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_29,-74.50091555,39.45236265,627 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_29,-74.79944478,39.64702814,627 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_431_3,-74.57120633,39.3514225,628 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_431_3,-74.38154594,39.39879912,628 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_431_30,-74.49013801,39.44036354,629 DREXEL AVE,ATLANTIC CITY CITY,45,1910,2,RES3A,3001 -0102_431_30,-74.78518695,39.66156382,629 DREXEL AVE,ATLANTIC CITY CITY,45,1910,2,RES3A,3001 -0102_431_31,-74.46091668,39.46351702,341 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_431_31,-74.78420743,39.66424387,341 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_431_32,-74.6065345,39.3224955,347 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_32,-74.46694437,39.35780958,347 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_431_33,-74.6002605,39.3221005,349 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_33,-74.48173568,39.35180104,349 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_35,-74.61185945,39.32029766,353 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1923,1,RES1,3001 -0102_431_35,-74.50691354,39.33762017,353 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1923,1,RES1,3001 -0102_431_36,-74.60312884,39.32625793,355 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_36,-74.5076835,39.336553,355 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_37,-74.57312508,39.34915231,357 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_37,-74.38626335,39.39187046,357 N NEW JERSEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_4,-74.566718,39.364205,626 ADRIATIC AVE,ATLANTIC CITY CITY,33,1923,1,RES1,3001 -0102_431_4,-74.400432,39.3825225,626 ADRIATIC AVE,ATLANTIC CITY CITY,33,1923,1,RES3A,3001 -0102_431_5,-74.5655565,39.360702,624 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_5,-74.40647133,39.38129505,624 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_431_6,-74.5050605,39.492791,622 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_6,-74.516937,39.3245875,622 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_7,-74.50399877,39.50246477,620 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_7,-74.511292,39.323333,620 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_8,-74.52592228,39.49271808,618 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_8,-74.51495814,39.32042904,618 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_431_9,-74.48510944,39.51946603,604 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_431_9,-74.52319796,39.32011283,604 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_432_1,-74.51537489,39.47365311,311 N DELAWARE AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_432_1,-74.507105,39.327973,311 N DELAWARE AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_432_2,-74.51366875,39.47521057,309 N DELAWARE AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_432_2,-74.50871135,39.32811046,309 N DELAWARE AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_432_3,-74.50414795,39.47917805,307 N DELAWARE AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_432_3,-74.50004766,39.32831406,307 N DELAWARE AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_432_4,-74.50505713,39.47293384,305 N DELAWARE AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_432_4,-74.5061711,39.32942816,305 N DELAWARE AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_432_7,-74.452602,39.374347,727 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_432_7,-74.74908393,39.60391207,727 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_433_10,-74.7923885,39.6400315,710 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_433_10,-74.62347453,39.48063384,710 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_2,-74.58465067,39.32416403,726 DREXEL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_433_2,-74.4838345,39.3344715,726 DREXEL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_433_20,-74.522701,39.384903,709 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_20,-74.757424,39.6343285,709 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_433_21,-74.49979803,39.38224733,711 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_21,-74.79397216,39.62114602,711 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_22,-74.49398191,39.37832204,713 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_22,-74.794822,39.6211415,713 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_433_23,-74.457756,39.3736495,715 HARRIS PL,ATLANTIC CITY CITY,33,1925,1,RES3A,3001 -0102_433_23,-74.78472296,39.60777604,715 HARRIS PL,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_433_24,-74.450426,39.3706525,717 HARRIS PL,ATLANTIC CITY CITY,33,1925,1,RES3A,3001 -0102_433_24,-74.78380525,39.60626316,717 HARRIS PL,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_433_25,-74.4463925,39.3726985,719 HARRIS PL,ATLANTIC CITY CITY,33,1925,1,RES3B,3001 -0102_433_25,-74.76589194,39.60996409,719 HARRIS PL,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_433_26,-74.450317,39.372795,721 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_26,-74.707875,39.638823,721 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_27,-74.44655181,39.37326044,723 HARRIS PL,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_433_27,-74.7763945,39.598291,723 HARRIS PL,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_433_28,-74.44697821,39.37338956,725 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_433_28,-74.78138413,39.59993636,725 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_29,-74.51608437,39.4807696,727 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_29,-74.50586392,39.32701342,727 HARRIS PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_433_3,-74.58586259,39.32280733,724 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_3,-74.4655622,39.34856613,724 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_4,-74.51396174,39.38516084,722 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_4,-74.76231882,39.62898467,722 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_5,-74.5262352,39.38435829,720 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_5,-74.76539473,39.63284709,720 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_6,-74.766863,39.646184,718 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_6,-74.65289646,39.45765962,718 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_7,-74.78185557,39.64236516,716 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_7,-74.68160792,39.44551527,716 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_433_8,-74.7934905,39.646614,714 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,RES3A,3001 -0102_433_8,-74.6802475,39.445018,714 DREXEL AVE,ATLANTIC CITY CITY,33,1925,1,RES3A,3001 -0102_433_9,-74.78587911,39.64317904,712 DREXEL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_433_9,-74.66894099,39.46108296,712 DREXEL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3002 -0102_434_1,-74.50051895,39.41975991,728 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_1,-74.95407262,39.51741126,728 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_10,-74.50711164,39.42544444,701 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_10,-74.9502188,39.50506763,701 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_18,-74.5126185,39.4033205,719 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_434_18,-74.93211706,39.49605149,719 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_434_19,-74.52676748,39.38407267,721 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_434_19,-74.78039828,39.62637042,721 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_434_2,-74.504835,39.432769,724 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_2,-74.95039,39.5316135,724 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3002 -0102_434_21,-74.593456,39.327923,722 PEARL PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_434_21,-74.45888433,39.35411173,722 PEARL PL,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_434_22,-74.58348363,39.32781169,723 DREXEL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_434_22,-74.48554106,39.34777711,723 DREXEL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_434_23,-74.58307484,39.33124611,725 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_434_23,-74.4813005,39.3480675,725 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_434_24,-74.59358416,39.32845999,724 PEARL PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_434_24,-74.46156633,39.35454804,724 PEARL PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_434_25,-74.59048568,39.33364751,728 PEARL PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_434_25,-74.479924,39.3462795,728 PEARL PL,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_434_26,-74.57680715,39.33337799,729 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_434_26,-74.48710213,39.34901078,729 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_434_27,-74.59262083,39.32034778,731 DREXEL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_434_27,-74.47610638,39.34304614,731 DREXEL AVE,ATLANTIC CITY CITY,45,1925,2,RES3A,3001 -0102_434_3,-74.44026823,39.4899693,722 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_3,-74.68746185,39.65455058,722 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_434_30,-74.591002,39.324987,733 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_434_30,-74.46876063,39.34398877,733 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_434_4,-74.4909645,39.4363765,716 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_4,-74.78878356,39.65858229,716 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_5,-74.60483644,39.32048031,700 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_434_5,-74.49154689,39.33711433,700 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_434_6,-74.48947082,39.44508758,348 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_6,-74.78781783,39.67653686,348 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_7,-74.486882,39.4368445,344 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_7,-74.79431956,39.64429859,344 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_434_9,-74.50008447,39.42972018,342 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_434_9,-74.88754866,39.54120022,342 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_435_1,-74.49340637,39.47470573,822 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_435_1,-74.50392323,39.33392522,822 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_435_10,-74.76246466,39.63964369,344 N DELAWARE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_435_10,-74.6840745,39.4424575,344 N DELAWARE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3002 -0102_435_11,-74.51970433,39.38416855,342 N DELAWARE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3004 -0102_435_11,-74.772724,39.628257,342 N DELAWARE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_435_12,-74.4957505,39.380453,801 DREXEL AVE,ATLANTIC CITY CITY,45,1977,2,RES1,3001 -0102_435_12,-74.77882532,39.62047022,801 DREXEL AVE,ATLANTIC CITY CITY,45,1977,2,RES1,3001 -0102_435_2,-74.4949665,39.4741545,814 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_435_2,-74.4993965,39.333312,814 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_435_3,-74.50407858,39.47860493,812 ADRIATIC AVE,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_435_3,-74.50235016,39.32991751,812 ADRIATIC AVE,ATLANTIC CITY CITY,27,1930,2,RES1,3001 -0102_435_5,-74.50749645,39.47508584,800 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_435_5,-74.50659509,39.32984332,800 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_435_6,-74.4918485,39.472563,352 N DELAWARE AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_435_6,-74.499438,39.33286,352 N DELAWARE AVE,ATLANTIC CITY CITY,33,1900,1,IND2,3002 -0102_435_7,-74.47170696,39.48774953,350 N DELAWARE AVE,ATLANTIC CITY CITY,33,1900,1,RES3B,3001 -0102_435_7,-74.49167533,39.3314975,350 N DELAWARE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_435_8,-74.79322726,39.65009188,348 N DELAWARE AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_435_8,-74.68792953,39.50045121,348 N DELAWARE AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_435_9,-74.79278595,39.64270616,346 N DELAWARE AVE,ATLANTIC CITY CITY,17,1935,1,COM4,3004 -0102_435_9,-74.6399941,39.47111855,346 N DELAWARE AVE,ATLANTIC CITY CITY,17,1935,1,RES1,3001 -0102_436_1,-74.4501025,39.373669,301 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_436_1,-74.76966466,39.59115495,301 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_44_1,-74.8641005,39.606183,112 PARK PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_44_1,-74.61933915,39.43574851,112 PARK PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_44_2,-74.585146,39.535109,116 PARK PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_44_2,-74.5472245,39.373981,116 PARK PL,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_44_3,-74.59165036,39.51749512,120 PARK PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_44_3,-74.5414885,39.375149,120 PARK PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_44_6,-74.6250885,39.5057955,AIR RIGHTS PARK PLACE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_44_6,-74.5395052,39.38032934,AIR RIGHTS PARK PLACE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_440_1,-74.5249865,39.3861415,913 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_440_1,-74.871755,39.591925,913 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_441_1,-74.57091773,39.36757141,1044 DREXEL AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_441_1,-74.50041417,39.33618697,1044 DREXEL AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_441_2,-74.57055484,39.36618543,1042 DREXEL AVE,ATLANTIC CITY CITY,33,1920,1,RES3A,3001 -0102_441_2,-74.49325879,39.34284551,1042 DREXEL AVE,ATLANTIC CITY CITY,33,1920,1,COM4,3004 -0102_441_3,-74.56437318,39.36557986,1040 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_441_3,-74.37232734,39.40185787,1040 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_441_4,-74.57043083,39.36444899,1038 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_441_4,-74.37297167,39.40047717,1038 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_441_5,-74.57033731,39.36396696,1036 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_441_5,-74.38614619,39.39348366,1036 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_441_7,-74.525631,39.3872265,1010 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_441_7,-74.8493555,39.5981165,1010 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_441_8,-74.558613,39.362229,317 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_441_8,-74.50538328,39.33893667,317 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_442_1,-74.52526112,39.38661235,335 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_442_1,-74.86565066,39.5968161,335 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_443.01_1.01,-74.605865,39.3840575,351 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_443.01_1.01,-74.52491213,39.44490856,351 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_443.01_1.02,-74.60474,39.384925,349 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,1,RES1,3001 -0102_443.01_1.02,-74.5264885,39.45141,349 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,1,RES1,3001 -0102_443.01_1.03,-74.6115005,39.36993477,347 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_443.01_1.03,-74.51153524,39.43677482,347 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_443.01_1.04,-74.599448,39.36898,345 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,GOV1,3004 -0102_443.01_1.04,-74.51358059,39.43758607,345 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,AGR1,3001 -0102_443.01_1.05,-74.59378,39.3779205,343 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3002 -0102_443.01_1.05,-74.5026415,39.44898,343 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_443.01_1.06,-74.59631262,39.38323223,341 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_443.01_1.06,-74.50563183,39.4381995,341 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_443.01_1.07,-74.59041693,39.37612174,339 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_443.01_1.07,-74.49000651,39.4386955,339 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,COM1,3004 -0102_443.01_1.08,-74.59222977,39.37672473,337 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,COM1,3004 -0102_443.01_1.08,-74.49682733,39.444491,337 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_443_1.01,-74.605705,39.3835115,1120 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,RES1,3001 -0102_443_1.01,-74.48756095,39.4589036,1120 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,RES1,3001 -0102_443_1.02,-74.59835404,39.37885183,1118 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,RES1,3001 -0102_443_1.02,-74.50573092,39.46058117,1118 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,RES1,3001 -0102_443_1.03,-74.6088665,39.377008,1116 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,RES1,3001 -0102_443_1.03,-74.503045,39.455938,1116 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,GOV1,3004 -0102_443_1.04,-74.58513894,39.40110201,1114 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_443_1.04,-74.50811667,39.45450499,1114 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_443_1.05,-74.60744273,39.39323315,1112 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,RES1,3001 -0102_443_1.05,-74.50002025,39.46828668,1112 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,GOV1,3004 -0102_443_1.06,-74.60733386,39.39129476,1110 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,RES1,3001 -0102_443_1.06,-74.5211699,39.45376686,1110 ADRIATIC AVE,ATLANTIC CITY CITY,39,2002,1,RES1,3001 -0102_443_12,-74.60122294,39.38738564,1106 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_443_12,-74.52355267,39.46995695,1106 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_443_13,-74.617891,39.390362,1104 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_443_13,-74.52704827,39.4676487,1104 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_14,-74.57426124,39.40986078,362 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_14,-74.45409654,39.47720089,362 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_15,-74.55198216,39.40384785,360 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,GOV1,3004 -0102_443_15,-74.52669373,39.46661682,360 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,GOV1,3004 -0102_443_16,-74.5340712,39.40795255,358 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_16,-74.5277478,39.46737894,358 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_17,-74.60973812,39.391959,356 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_17,-74.52168628,39.4688312,356 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_443_18,-74.60811076,39.39255548,354 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_443_18,-74.52982942,39.4575463,354 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_443_19,-74.58169405,39.40076798,352 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_19,-74.50116297,39.45354005,352 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_21,-74.5281355,39.3879905,348 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,RES6,3001 -0102_443_21,-74.86296965,39.57248556,348 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_443_22,-74.5233645,39.388432,346 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_22,-74.83790408,39.59361133,346 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_443_23,-74.519138,39.387897,344 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_443_23,-74.79032872,39.63584862,344 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_443_24,-74.56885409,39.36069479,342 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,COM4,3004 -0102_443_24,-74.38787217,39.39229211,342 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_25,-74.56492682,39.36219517,340 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_25,-74.3836675,39.392456,340 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_26,-74.56928084,39.36266302,338 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,AGR1,3001 -0102_443_26,-74.38576961,39.39249735,338 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_443_28,-74.60767219,39.37630753,1115 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_28,-74.518963,39.4428975,1115 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_29,-74.592745,39.3778305,1117 DREXEL AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_443_29,-74.50822393,39.44791987,1117 DREXEL AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_443_30,-74.59237766,39.37841496,1119 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_30,-74.49329323,39.45303555,1119 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_443_31,-74.59220966,39.37848563,1121 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_443_31,-74.50694908,39.43755312,1121 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,IND1,3004 -0102_444_1,-74.59038838,39.37265105,1133 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_444_1,-74.491249,39.437899,1133 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_444_2,-74.58970691,39.37193953,1131 DREXEL AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_444_2,-74.50134135,39.44315666,1131 DREXEL AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_444_3,-74.58944497,39.37015366,1129 DREXEL AVE,ATLANTIC CITY CITY,33,1924,1,COM1,3004 -0102_444_3,-74.50393283,39.44302405,1129 DREXEL AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3004 -0102_448_1.01,-74.6993935,39.63809996,329 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,GOV1,3004 -0102_448_1.01,-74.6569385,39.4007935,329 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.02,-74.693661,39.6370465,325 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.02,-74.66188818,39.40206322,325 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.03,-74.67733145,39.6160983,321 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.03,-74.6489493,39.39746298,321 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,COM3,3004 -0102_448_1.04,-74.5037815,39.32717,317 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES3A,3001 -0102_448_1.04,-74.73568726,39.43466898,317 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.05,-74.50793195,39.32785633,313 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.05,-74.723892,39.4316855,313 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.06,-74.5062605,39.330126,309 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.06,-74.71597217,39.40241877,309 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.07,-74.50523359,39.3321264,305 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.07,-74.70978284,39.37004332,305 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.08,-74.692524,39.65203,301 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_448_1.08,-74.546317,39.5019885,301 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_449_23,-74.750869,39.4722375,1211 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_449_23,-74.54792207,39.37450098,1211 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_449_24,-74.72706265,39.48618739,1213 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_449_24,-74.54250133,39.37479051,1213 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_449_25,-74.713261,39.4718955,1215 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_449_25,-74.54274877,39.37487959,1215 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_449_26,-74.71362759,39.47281121,1217 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_449_26,-74.5395551,39.37412918,1217 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_449_27,-74.71179407,39.47445375,1219 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_449_27,-74.766046,39.349398,1219 MEDITERRANEAN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_449_28,-74.8797135,39.599263,1221 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_449_28,-74.599352,39.432262,1221 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_449_29,-74.867783,39.5974155,1223 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_449_29,-74.60342872,39.43259264,1223 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_449_30,-74.87318571,39.59139804,1225 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3004 -0102_449_30,-74.60013105,39.43531879,1225 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1910,1,RES3A,3001 -0102_45_1,-74.8406555,39.4894525,1811 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_45_1,-74.68536765,39.35813917,1811 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_45_3,-74.88009364,39.45026918,1901 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_45_3,-74.65313415,39.35357154,1901 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_450_1,-74.9749345,39.5104495,1226 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_450_1,-74.57003434,39.47741703,1226 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_450_2,-74.9739325,39.50709385,1224 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_450_2,-74.56885542,39.47871665,1224 DREXEL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_450_3,-74.79489327,39.64683326,1222 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_450_3,-74.58238396,39.47899363,1222 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_450_4,-74.78486294,39.64140859,1220 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_450_4,-74.601369,39.480636,1220 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_450_5,-74.49436246,39.33210183,1218 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_450_5,-74.6973192,39.48912348,1218 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_450_6,-74.4925135,39.330751,1216 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_450_6,-74.68957653,39.49974588,1216 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_450_7,-74.5090028,39.33092685,1214 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_450_7,-74.716332,39.3962835,1214 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_450_8,-74.50019592,39.33027297,1212 DREXEL AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_450_8,-74.71288928,39.40599836,1212 DREXEL AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_451_11,-74.51155142,39.45025679,1225 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_451_11,-74.80708424,39.65040923,1225 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_451_2,-74.71069266,39.56553998,1226 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_451_2,-74.65264201,39.40066847,1226 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_451_3,-74.8053685,39.521867,1224 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_451_3,-74.672162,39.3733145,1224 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_451_4,-74.5563415,39.3976565,1222 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_451_4,-74.4640569,39.46411748,1222 ADRIATIC AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_451_5,-74.592876,39.372318,1214 ADRIATIC AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_451_5,-74.49036048,39.43641322,1214 ADRIATIC AVE,ATLANTIC CITY CITY,18,1900,1,GOV1,3004 -0102_452_11,-74.6630705,39.6236735,364 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1906,1,RES1,3001 -0102_452_11,-74.6374725,39.399846,364 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1906,1,RES3A,3001 -0102_452_12,-74.6414625,39.6239675,362 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_12,-74.6312493,39.40011811,362 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_13,-74.693302,39.5897235,360 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_13,-74.6380675,39.402148,360 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_452_14,-74.6539825,39.592236,358 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_14,-74.630501,39.391547,358 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_15,-74.5064705,39.3286865,356 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_452_15,-74.70869,39.4293045,356 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_16,-74.50632508,39.32905917,354 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_16,-74.71499295,39.43075024,354 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_17,-74.50921395,39.33053151,352 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_17,-74.77846769,39.38377229,352 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_18,-74.49511573,39.32912302,350 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_18,-74.70151334,39.49860548,350 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_19,-74.48957961,39.3321959,348 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_19,-74.70098458,39.49059555,348 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_2,-74.69981866,39.5859477,1312 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_452_2,-74.640892,39.38791,1312 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_452_20,-74.88282825,39.59688636,346 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_20,-74.545584,39.50297007,346 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_21,-74.94140251,39.53888563,344 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_21,-74.55889443,39.47375474,344 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_22,-74.9176255,39.562518,342 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1910,1,IND2,3004 -0102_452_22,-74.555771,39.47727,342 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_452_23,-74.964125,39.529229,340 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_23,-74.54671766,39.47235367,340 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_24,-74.883757,39.561102,1303 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_24,-74.5462405,39.4722555,1303 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_26,-74.935896,39.5315295,1307 DREXEL AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_452_26,-74.549016,39.4758385,1307 DREXEL AVE,ATLANTIC CITY CITY,33,1910,1,COM1,3004 -0102_452_27,-74.64530285,39.53106948,1309 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_27,-74.599826,39.431315,1309 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_28,-74.80825579,39.62129471,1311 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_28,-74.62317661,39.38007554,1311 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_29,-74.79815648,39.62222974,1313 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_29,-74.6258023,39.38404283,1313 DREXEL AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_3,-74.70131556,39.58520807,1310 ADRIATIC AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_452_3,-74.63627533,39.3860245,1310 ADRIATIC AVE,ATLANTIC CITY CITY,,1900,1,RES1,3001 -0102_452_30,-74.60512574,39.48301688,1315 DREXEL AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_452_30,-74.55856722,39.3576312,1315 DREXEL AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_452_32,-74.8909605,39.5579575,345 N OCEAN AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_452_32,-74.56216,39.478444,345 N OCEAN AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_452_33,-74.92225744,39.56572971,347 N OCEAN AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_452_33,-74.55381142,39.47661421,347 N OCEAN AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_452_34,-74.9005555,39.5853955,349 N OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_34,-74.5357612,39.48955057,349 N OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_35,-74.78894434,39.64444195,351 N OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_35,-74.6065415,39.478344,351 N OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_36,-74.49061326,39.33168512,353 N OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_36,-74.6895205,39.5017105,353 N OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_37,-74.660257,39.578256,355 N OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_452_37,-74.62746781,39.38702198,355 N OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_452_4,-74.6371795,39.6227885,1308 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_452_4,-74.6378355,39.400388,1308 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_455_1,-74.943489,39.52406,334 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_455_1,-74.5484175,39.476649,334 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_455_2,-74.8557735,39.4396125,332 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_455_2,-74.55192028,39.37392464,332 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_455_3,-74.79811537,39.45747367,330 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_455_3,-74.549867,39.37406,330 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_455_5,-74.87616429,39.59861786,326 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_455_5,-74.60022358,39.43146851,326 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_455_6,-74.87243088,39.59343314,324 N TENNESSEE AVE,ATLANTIC CITY CITY,14,1910,1,RES1,3001 -0102_455_6,-74.60131149,39.43585919,324 N TENNESSEE AVE,ATLANTIC CITY CITY,14,1910,1,RES1,3001 -0102_455_7,-74.84809201,39.58922483,322 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_455_7,-74.6069475,39.4217395,322 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_456_1,-74.79611574,39.4424764,1410 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_456_1,-74.5465805,39.3743905,1410 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_456_10,-74.60372844,39.59223719,1411 DREXEL AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_456_10,-74.63958689,39.38269673,1411 DREXEL AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_456_4,-74.4504805,39.375668,324 CENTER ST,ATLANTIC CITY CITY,17,2008,1,GOV1,3004 -0102_456_4,-74.74797767,39.592697,324 CENTER ST,ATLANTIC CITY CITY,17,2008,1,GOV1,3004 -0102_456_9,-74.816809,39.523146,1409 DREXEL AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_456_9,-74.554981,39.4035945,1409 DREXEL AVE,ATLANTIC CITY CITY,17,2007,1,GOV1,3004 -0102_457_1,-74.63149115,39.54046037,327 N NEW YORK AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_457_1,-74.62374854,39.38226236,327 N NEW YORK AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_457_10,-74.62905287,39.54443055,1423 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_457_10,-74.61707709,39.43000928,1423 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_457_2,-74.687893,39.555996,329 N NEW YORK AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_457_2,-74.64055617,39.38310443,329 N NEW YORK AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_457_3,-74.61574,39.6009245,331 N NEW YORK AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_457_3,-74.63895903,39.38238734,331 N NEW YORK AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_457_4,-74.617132,39.6205655,333 N NEW YORK AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_457_4,-74.626226,39.393456,333 N NEW YORK AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_457_5,-74.61828219,39.62022356,1420 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_457_5,-74.6281405,39.391004,1420 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_457_6,-74.66863397,39.54017684,323 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_457_6,-74.63569888,39.38376297,323 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_457_7,-74.6327773,39.54304368,321 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_457_7,-74.63664073,39.37022467,321 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_457_8,-74.63234467,39.54584603,1419 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_457_8,-74.6405635,39.372509,1419 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_457_9,-74.628728,39.539366,1421 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_457_9,-74.62507224,39.37251759,1421 DREXEL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_458_1,-74.692217,39.633153,300 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_458_1,-74.53430819,39.41484164,300 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_459_1,-74.948975,39.5150125,1560 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_459_1,-74.60967506,39.48685474,1560 DREXEL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_459_10,-74.932527,39.5259195,1511 MEDITERRANEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_10,-74.61180165,39.4886234,1511 MEDITERRANEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_11,-74.53381414,39.52836355,1519 MEDITERRANEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_11,-74.54210199,39.37977551,1519 MEDITERRANEAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_459_12,-74.87576619,39.49277705,1529 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1965,1,RES1,3001 -0102_459_12,-74.53606936,39.38485305,1529 MEDITERRANEAN AVE,ATLANTIC CITY CITY,33,1965,1,RES1,3001 -0102_459_13,-74.80623458,39.49973309,301 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_459_13,-74.55042383,39.373091,301 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_459_14,-74.86600036,39.49457523,311 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_14,-74.54969994,39.36831336,311 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_3,-74.94942877,39.52373889,1530 DREXEL AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_459_3,-74.6016455,39.498898,1530 DREXEL AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_459_4,-74.940698,39.545335,1520 DREXEL AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_459_4,-74.628258,39.438395,1520 DREXEL AVE,ATLANTIC CITY CITY,17,1965,1,GOV1,3004 -0102_459_5,-74.7662645,39.6234725,1512 DREXEL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_5,-74.6488475,39.398052,1512 DREXEL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_6,-74.76478792,39.63609491,324 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_6,-74.67515262,39.3786077,324 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_459_7,-74.76491241,39.62963537,316 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_7,-74.65181533,39.39847517,316 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_8,-74.939468,39.5226565,310 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_8,-74.60552934,39.50110152,310 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_459_9,-74.58774056,39.50541872,300 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_459_9,-74.5506621,39.38088804,300 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_46_1,-74.49624379,39.44819337,1804 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_46_1,-74.80680456,39.64272584,1804 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_46_2,-74.7346015,39.4390995,1800 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_46_2,-74.6508015,39.3401665,1800 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_46_3,-74.92055231,39.47052236,106 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_46_3,-74.63912037,39.42866721,106 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_46_4,-74.60176968,39.43311009,120 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_46_4,-74.47597882,39.48526899,120 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_460_1,-74.81602327,39.53430263,1510 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_460_1,-74.56432681,39.40798802,1510 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_461_1,-74.79213766,39.639273,324-348 KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_461_1,-74.62519511,39.41679067,324-348 KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_461_2,-74.57270239,39.51350553,300-322 KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_461_2,-74.5325135,39.381109,300-322 KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_462_1,-74.80524924,39.52029408,1626 WABASH AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_462_1,-74.55529587,39.40376906,1626 WABASH AVE,ATLANTIC CITY CITY,16,1900,1,COM10,3004 -0102_462_10,-74.88085,39.596102,1625 ADRIATIC AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_462_10,-74.6359697,39.41181104,1625 ADRIATIC AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_462_2,-74.81072131,39.53621745,1618 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_462_2,-74.5647834,39.41050143,1618 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_462_3,-74.81715584,39.53537777,1612 WABASH AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_462_3,-74.56268475,39.41354528,1612 WABASH AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_462_4,-74.87701438,39.59441697,424 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1962,1,GOV1,3004 -0102_462_4,-74.60692946,39.42113366,424 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_462_5,-74.808799,39.531758,416 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_462_5,-74.558833,39.41513217,416 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_462_6,-74.70368668,39.63374001,410 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_462_6,-74.555817,39.4048595,410 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1965,1,GOV1,3004 -0102_462_7,-74.7427595,39.643158,400 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_462_7,-74.64962819,39.45898492,400 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_462_8,-74.740138,39.6407655,1611 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_462_8,-74.65131685,39.45589321,1611 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_462_9,-74.8837954,39.59287326,1617 ADRIATIC AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_462_9,-74.64689545,39.46097438,1617 ADRIATIC AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_463_1,-74.69512126,39.50833401,425 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_1,-74.6122405,39.43517433,425 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_10,-74.7821258,39.63295697,407 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_463_10,-74.6390935,39.402367,407 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_463_11,-74.77981845,39.62470074,405 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_463_11,-74.62886951,39.40372216,405 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_463_12,-74.76595443,39.63536209,403 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_463_12,-74.67845208,39.38684184,403 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_463_13,-74.75249518,39.63507402,401 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_463_13,-74.64657482,39.39651286,401 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_463_2,-74.67992365,39.51152685,423 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_2,-74.59819134,39.42894872,423 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_3,-74.47065706,39.48878184,421 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_3,-74.4975075,39.331546,421 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_4,-74.46476275,39.49624941,419 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_4,-74.497583,39.331624,419 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_5,-74.86708708,39.59399539,417 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_5,-74.63204886,39.41443582,417 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_463_6,-74.8430025,39.5860805,415 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1915,2,GOV1,3004 -0102_463_6,-74.63993071,39.41700318,415 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_463_7,-74.787389,39.63207,413 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_463_7,-74.6225669,39.41279618,413 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_463_8,-74.78736916,39.63412428,411 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_463_8,-74.62515183,39.41515479,411 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_463_9,-74.79028793,39.63537509,409 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_463_9,-74.62551726,39.41527469,409 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_464_10,-74.51885467,39.4621993,1711 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_464_10,-74.4385105,39.3661895,1711 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_464_11,-74.51651902,39.46276716,1713 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_464_11,-74.4340835,39.3669775,1713 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_464_2,-74.4651985,39.493618,1708 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_464_2,-74.49052636,39.33368184,1708 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_464_3,-74.45468026,39.49687169,1706 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3003 -0102_464_3,-74.49501198,39.33257629,1706 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_464_5,-74.45881999,39.49437244,424 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_464_5,-74.49369012,39.33400068,424 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_464_6,-74.47480592,39.48207091,414 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_464_6,-74.52297534,39.31377461,414 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_464_7,-74.52423368,39.46221261,1707 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_464_7,-74.43729717,39.36523007,1707 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_464_9,-74.52607134,39.46634848,1709 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_464_9,-74.43852516,39.36608967,1709 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_465_1,-74.48919759,39.45667918,348 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_465_1,-74.82199653,39.65228109,348 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_465_2,-74.863622,39.437905,340 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1960,1,GOV1,3004 -0102_465_2,-74.8060465,39.318143,340 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_465_3,-74.7525655,39.47445,332 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1964,1,GOV1,3004 -0102_465_3,-74.6921515,39.3615585,332 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_465_4,-74.73751536,39.4620499,328 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_465_4,-74.6225665,39.359909,328 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_465_5,-74.72438363,39.45734125,318 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_465_5,-74.63243761,39.34674509,318 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_465_6,-74.7138975,39.442016,310 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_465_6,-74.598189,39.366497,310 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_465_7,-74.7570762,39.42949433,300 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_465_7,-74.57551001,39.35711083,300 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_466_10,-74.67892295,39.48506993,303 N INDIANA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_466_10,-74.5756153,39.34220652,303 N INDIANA AVE,ATLANTIC CITY CITY,27,2006,2,COM1,3004 -0102_466_12,-74.75868916,39.4331704,311 N INDIANA AVE,ATLANTIC CITY CITY,45,2001,2,RES1,3001 -0102_466_12,-74.609101,39.343069,311 N INDIANA AVE,ATLANTIC CITY CITY,45,2001,2,RES1,3001 -0102_466_16,-74.52088847,39.39587818,321 N INDIANA AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_466_16,-74.80705163,39.63867556,321 N INDIANA AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_466_17,-74.48718672,39.43492534,323 N INDIANA AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_466_17,-74.851206,39.613789,323 N INDIANA AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_466_18,-74.50599847,39.40819582,325 N INDIANA AVE,ATLANTIC CITY CITY,45,1935,2,RES1,3001 -0102_466_18,-74.92170928,39.47345021,325 N INDIANA AVE,ATLANTIC CITY CITY,45,1935,2,RES1,3001 -0102_466_8,-74.72198265,39.44724701,326 ROBINSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_466_8,-74.63978599,39.34022985,326 ROBINSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_466_9,-74.66843033,39.46258546,301 N INDIANA AVE,ATLANTIC CITY CITY,27,2006,2,GOV1,3004 -0102_466_9,-74.56922888,39.36521618,301 N INDIANA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_467_1,-74.44892118,39.49551293,419 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_467_1,-74.52859787,39.31057781,419 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_467_10,-74.47532266,39.48342419,414 ROBINSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_467_10,-74.5263535,39.314608,414 ROBINSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_467_11,-74.47559366,39.48455724,412 ROBINSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_467_11,-74.52064916,39.31603894,412 ROBINSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_467_12,-74.45955042,39.47142415,410 ROBINSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_467_12,-74.43385167,39.36397035,410 ROBINSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_467_16,-74.527204,39.455851,1717 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_467_16,-74.43883307,39.36747018,1717 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_467_17,-74.49010121,39.46497105,407 N INDIANA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_467_17,-74.422566,39.3668785,407 N INDIANA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_467_2,-74.446157,39.493325,1724 HUMMOCK AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_467_2,-74.5071215,39.32511,1724 HUMMOCK AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_467_3,-74.4512565,39.492741,1722 HUMMOCK AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_467_3,-74.50342733,39.32495216,1722 HUMMOCK AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_467_9,-74.479532,39.478627,416 ROBINSON AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_467_9,-74.52744734,39.31083997,416 ROBINSON AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_468_1,-74.473095,39.4860275,420 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_468_1,-74.4850988,39.33421832,420 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_468_2,-74.453283,39.470639,418 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_468_2,-74.43273318,39.36497072,418 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_468_4,-74.52296747,39.46060135,414 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_468_4,-74.42497906,39.36613569,414 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_468_5,-74.50891964,39.45592221,410 N INDIANA AVE,ATLANTIC CITY CITY,45,1920,2,RES2,3005 -0102_468_5,-74.41909901,39.3660797,410 N INDIANA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_468_6,-74.49278863,39.45351276,408 N INDIANA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_468_6,-74.81419422,39.65659321,408 N INDIANA AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_468_7.01,-74.5184705,39.4453555,400 N INDIANA AVE,ATLANTIC CITY CITY,45,1880,3,RES1,3001 -0102_468_7.01,-74.82359092,39.64440542,400 N INDIANA AVE,ATLANTIC CITY CITY,45,1880,3,RES1,3001 -0102_468_7.03,-74.5104035,39.40403,407 HOBART AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_468_7.03,-74.9476754,39.49017825,407 HOBART AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_469_1.01,-74.5112425,39.4015795,335 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.01,-74.79926436,39.62820436,335 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.02,-74.51922149,39.40169911,333 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3002 -0102_469_1.02,-74.879233,39.5974645,333 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.03,-74.526328,39.3860965,331 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.03,-74.87285589,39.5954011,331 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.04,-74.50873166,39.44552397,329 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.04,-74.79629017,39.65059449,329 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.05,-74.73586894,39.43122834,327 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.05,-74.61055913,39.34760694,327 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.06,-74.71288394,39.42873046,325 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.06,-74.612527,39.3408565,325 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.07,-74.7172235,39.3808795,323 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.07,-74.58872734,39.34959245,323 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.08,-74.68510319,39.49430637,321 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.08,-74.58019403,39.34479567,321 N OHIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.09,-74.84445851,39.40778384,1818 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_469_1.09,-74.6100815,39.3530655,1818 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_469_1.11,-74.7922225,39.4160365,318 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.11,-74.6115638,39.34632716,318 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.12,-74.736573,39.4331115,316 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.12,-74.60407021,39.35060006,316 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.13,-74.7169675,39.3978875,314 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.13,-74.5930515,39.34871674,314 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,COM4,3004 -0102_469_1.14,-74.69032226,39.49900291,312 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.14,-74.591402,39.3497715,312 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.15,-74.68256783,39.49894849,310 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.15,-74.5766715,39.3373535,310 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.16,-74.62566457,39.4902171,308 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.16,-74.56835915,39.36046692,308 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.17,-74.6344041,39.48228209,306 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.17,-74.565543,39.364161,306 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.18,-74.67998,39.459941,304 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_1.18,-74.57359304,39.36676021,304 N INDIANA AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_469_11,-74.53110267,39.38554203,320 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3004 -0102_469_11,-74.87284672,39.599724,320 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_469_2,-74.51925134,39.39999047,1814 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_469_2,-74.799987,39.6272615,1814 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_469_3,-74.51747564,39.39704434,1812 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_469_3,-74.80625051,39.62780484,1812 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_469_4,-74.515292,39.3947985,1810 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_469_4,-74.81607454,39.62265667,1810 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_469_5,-74.5250575,39.3959285,330 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_469_5,-74.80686066,39.63876901,330 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_469_6,-74.52762433,39.39606165,328 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_469_6,-74.79637066,39.63278813,328 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_469_7,-74.516238,39.394494,326 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_469_7,-74.8003141,39.63779135,326 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_469_8,-74.51855985,39.39972243,324 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_469_8,-74.799772,39.6270975,324 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_47_1,-74.74472387,39.44487801,1746 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_1,-74.6387245,39.363865,1746 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_13,-74.5383965,39.53638,135 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_47_13,-74.7569265,39.342324,135 S INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_14,-74.5816205,39.5341025,148 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_47_14,-74.547932,39.373187,148 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_15,-74.81727451,39.39384091,1733 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_15,-74.595066,39.358204,1733 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_47_16,-74.840114,39.374718,1731 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_16,-74.58745231,39.35353389,1731 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_17,-74.7262651,39.44020584,1723 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_17,-74.59846119,39.35940357,1723 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_47_18,-74.74995368,39.45119955,1701 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_18,-74.5985385,39.361725,1701 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_2,-74.51249583,39.32713436,1734 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_2,-74.64546933,39.52955268,1734 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_3,-74.51429547,39.32675683,1726 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_3,-74.69308105,39.51010216,1726 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_4,-74.46236833,39.35054536,1720 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_4,-74.63200458,39.55310835,1720 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_47_5,-74.46280165,39.34962478,1712 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_5,-74.64590406,39.53811816,1712 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_6,-74.464168,39.34919,1710 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_6,-74.6459955,39.5506165,1710 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_7,-74.45804179,39.34869156,1706 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_7,-74.64863906,39.54858068,1706 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_9,-74.51509861,39.32606187,114 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_47_9,-74.62450688,39.54918331,114 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_470_2,-74.5104745,39.459134,1816 HUMMOCK AVE,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_470_2,-74.42483382,39.36637202,1816 HUMMOCK AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_470_3,-74.52696937,39.45953299,1810 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_470_3,-74.434493,39.368137,1810 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_470_4,-74.5293416,39.44892486,414 HOBART AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_470_4,-74.81962579,39.65466761,414 HOBART AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_470_5.01,-74.52241245,39.3947078,1819 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,2003,1,RES3A,3001 -0102_470_5.01,-74.819108,39.6360455,1819 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_470_5.02,-74.50046642,39.41476087,1815 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_470_5.02,-74.884474,39.496755,1815 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_470_5.03,-74.51832733,39.409798,1811 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_470_5.03,-74.9343165,39.4824005,1811 BISHOP RICHARD ALLEN,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_471_1,-74.49607808,39.45329527,423 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_471_1,-74.42033882,39.36809374,423 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_471_11,-74.5183155,39.393841,403 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_471_11,-74.79803947,39.63470984,403 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_471_12,-74.524733,39.398464,405 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_471_12,-74.802937,39.6331515,405 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_471_13,-74.5244455,39.39603,407 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_471_13,-74.795877,39.63174733,407 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_471_14,-74.52647199,39.39483767,409 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_471_14,-74.80750792,39.63372516,409 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_471_4,-74.51751533,39.40735307,417 N OHIO AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_471_4,-74.93099775,39.48233346,417 N OHIO AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_471_6,-74.50098621,39.41596905,413 N OHIO AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_471_6,-74.89277533,39.50020242,413 N OHIO AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_471_7,-74.50919206,39.40706041,411 N OHIO AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_471_7,-74.90405542,39.48720203,411 N OHIO AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_471_8,-74.484471,39.4333245,404 TRINITY AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_471_8,-74.88378466,39.48402845,404 TRINITY AVE,ATLANTIC CITY CITY,45,1910,4,RES1,3001 -0102_472_17,-74.78635946,39.67622111,CONVENTION BOULEVARD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_472_17,-74.6075635,39.489632,CONVENTION BOULEVARD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_472_2,-74.67036902,39.54437616,1 CONVENTION BOULEVARD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_472_2,-74.44025594,39.35602568,1 CONVENTION BOULEVARD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_473_1,-74.78871981,39.67551582,ATLANTIC CITY EXPRESSWAY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_473_1,-74.613086,39.4886275,ATLANTIC CITY EXPRESSWAY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_476_14,-74.57029088,39.37610213,2011 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_476_14,-74.44529649,39.36109663,2011 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_476_19,-74.68758407,39.63674043,912 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_476_19,-74.5507695,39.4064125,912 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_476_20,-74.50080368,39.32652827,2121 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_476_20,-74.44493652,39.35420929,2121 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_477_3,-74.78453365,39.66463646,1012 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_477_3,-74.6090405,39.478778,1012 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_477_4,-74.79329301,39.64934716,1008 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_477_4,-74.6093755,39.4842775,1008 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_477_5,-74.57401477,39.37677488,1006 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1915,1,RES1,3001 -0102_477_5,-74.44048961,39.3638563,1006 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1915,1,RES1,3001 -0102_477_6,-74.57504617,39.36831752,1004 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_477_6,-74.43869891,39.36192631,1004 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_477_7,-74.57206382,39.37192044,1002 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_477_7,-74.43864652,39.36223152,1002 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_478_1,-74.87166,39.574129,2104 GRANT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_478_1,-74.60478754,39.42340323,2104 GRANT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_478_10,-74.77901354,39.6338868,812 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_10,-74.583465,39.4214705,812 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_11,-74.78820297,39.61117105,810 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,REL1,3004 -0102_478_11,-74.60436908,39.41137766,810 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_12,-74.77943965,39.60902155,808 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_12,-74.599568,39.4167895,808 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_13,-74.76717534,39.60788599,806 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_13,-74.610787,39.4029705,806 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_16,-74.79183666,39.60451553,803 FISHER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_16,-74.6025095,39.4102485,803 FISHER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_17,-74.78518735,39.5985451,805 FISHER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_17,-74.600641,39.409459,805 FISHER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_18,-74.76330699,39.6102066,807 FISHER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_18,-74.6040385,39.4088265,807 FISHER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_2,-74.62380938,39.62531766,2102 GRANT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_478_2,-74.60147961,39.38549588,2102 GRANT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_478_20,-74.78519965,39.61246285,811 FISHER AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_20,-74.60695,39.411859,811 FISHER AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_21,-74.77150299,39.63261835,813 FISHER AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_21,-74.60958932,39.41687399,813 FISHER AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_22,-74.79196332,39.63886633,815 FISHER AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_22,-74.58819365,39.42603416,815 FISHER AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_3,-74.652,39.6253225,826 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_478_3,-74.55052729,39.40766169,826 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_478_4,-74.62231386,39.62403927,824 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_4,-74.61583,39.3915915,824 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_478_5,-74.69630121,39.58917072,822 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_5,-74.58459895,39.40188502,822 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_6,-74.86502545,39.57471816,820 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_6,-74.5889985,39.4327005,820 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_478_7,-74.84430466,39.58727828,818 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_7,-74.59602299,39.43307583,818 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_8,-74.80090092,39.60474145,816 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1926,1,RES1,3001 -0102_478_8,-74.58271892,39.43185324,816 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1926,1,RES1,3001 -0102_478_9,-74.7868075,39.6361705,814 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_478_9,-74.58340374,39.43226008,814 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_48_10,-74.50917,39.4463735,131 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_48_10,-74.81134385,39.64136104,131 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_12,-74.55839764,39.54825305,147 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_12,-74.539042,39.382296,147 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_13,-74.5931053,39.51643713,151 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_13,-74.54541171,39.37660381,151 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_14,-74.61558067,39.50878151,168 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_14,-74.54516556,39.37544284,168 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_15,-74.75765671,39.44686431,1635 BOARDWALK RR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_48_15,-74.63991655,39.3433987,1635 BOARDWALK RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_16,-74.81732281,39.40842196,1649 BOARDWALK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_48_16,-74.594026,39.364615,1649 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_17,-74.72223831,39.44274476,1641 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES4,3001 -0102_48_17,-74.59650859,39.36036116,1641 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_18,-74.734549,39.4402945,1639 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_18,-74.59893761,39.35868561,1639 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_19,-74.74829195,39.45194968,1637 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_19,-74.61456057,39.35133617,1637 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_20,-74.7225785,39.458945,1635 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_20,-74.61756753,39.36047337,1635 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_48_21,-74.72158141,39.45758071,1633 BOARDWALK RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_21,-74.63936883,39.32242764,1633 BOARDWALK RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_22,-74.7530935,39.4540155,1627 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_48_22,-74.62970997,39.35433042,1627 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_23,-74.80936701,39.45967783,1625 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_23,-74.6351805,39.3660605,1625 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_24,-74.85542664,39.43944441,1621 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_24,-74.63461179,39.35990082,1621 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_25,-74.80963195,39.45931017,1615 BOARDWALK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_48_25,-74.6358735,39.3659975,1615 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_26,-74.83735316,39.48310832,190 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_26,-74.6847165,39.3566325,190 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_27,-74.7872925,39.459282,1601 BOARDWALK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_48_27,-74.6294111,39.35227114,1601 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_28,-74.74744928,39.44525627,1607 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_28,-74.61194375,39.36640791,1607 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_29,-74.72381631,39.48384977,1611 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_29,-74.6313928,39.35614847,1611 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_30,-74.7130165,39.4668215,1613 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_48_30,-74.636789,39.341099,1613 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_31,-74.826453,39.38611309,1631 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_31,-74.59645224,39.35931143,1631 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_48_32,-74.82177597,39.37075522,1633 BOARDWALK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_48_32,-74.580914,39.354832,1633 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_9,-74.72787081,39.45858197,125 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_48_9,-74.6445774,39.36668131,125 S DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_480_1,-74.82272252,39.57375068,703 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_480_1,-74.44366948,39.35497455,703 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_480_2,-74.8663225,39.5583565,701 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_480_2,-74.44234525,39.35424726,701 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_481_1,-74.6919446,39.63760556,615 N ARKANSAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_481_1,-74.43715485,39.35465218,615 N ARKANSAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_481_3,-74.70501814,39.58045605,607 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_481_3,-74.43954903,39.3572037,607 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_482_1,-74.66591378,39.5840994,2021 CASPIAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_482_1,-74.44066737,39.35555271,2021 CASPIAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_482_2,-74.63415969,39.61034846,2017 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_482_2,-74.43907906,39.35618423,2017 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_482_3,-74.62066705,39.62358384,2015 CASPIAN AVE,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_482_3,-74.43887009,39.35604087,2015 CASPIAN AVE,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_482_5,-74.63311275,39.62622097,2009 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_482_5,-74.43784645,39.35573088,2009 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_483_1,-74.6448845,39.5325335,2028 BLAINE AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_483_1,-74.5426188,39.38545719,2028 BLAINE AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_483_2,-74.675185,39.5103585,2022 BLAINE AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_483_2,-74.53831643,39.39966496,2022 BLAINE AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_483_3,-74.63063129,39.55379505,2016 BLAINE AVE,ATLANTIC CITY CITY,15,1950,1,GOV1,3004 -0102_483_3,-74.55778183,39.39646041,2016 BLAINE AVE,ATLANTIC CITY CITY,15,1950,1,RES1,3001 -0102_484_1,-74.76366009,39.61013014,2021 BLAINE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_484_1,-74.44324625,39.35426779,2021 BLAINE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_484_3,-74.67004826,39.56054982,2015 BLAINE AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_484_3,-74.59348374,39.38088624,2015 BLAINE AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_484_4,-74.69965135,39.56566246,2013 BLAINE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_484_4,-74.59320126,39.37740274,2013 BLAINE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_484_5,-74.61736108,39.61888509,2011 BLAINE AVE,ATLANTIC CITY CITY,17,1902,1,GOV1,3004 -0102_484_5,-74.60393523,39.3727436,2011 BLAINE AVE,ATLANTIC CITY CITY,17,1902,1,COM1,3004 -0102_484_6,-74.649254,39.5767945,2009 BLAINE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_484_6,-74.6025813,39.37246982,2009 BLAINE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_485_2,-74.882257,39.5961485,2020 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_485_2,-74.44287345,39.35525556,2020 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_485_4,-74.880538,39.5904945,2018 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_485_4,-74.44312986,39.35520953,2018 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_485_6,-74.53743308,39.37298909,2014 MAGELLAN AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_485_6,-74.40687959,39.39233774,2014 MAGELLAN AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_486_1,-74.5376295,39.384064,714 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_486_1,-74.43729638,39.36112184,714 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_486_2,-74.54334157,39.37508785,712 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_486_2,-74.40746845,39.39205204,712 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_486_3,-74.538838,39.37368,710 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_486_3,-74.4067178,39.3924196,710 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_486_5,-74.6890105,39.5728115,704 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_486_5,-74.6012885,39.383738,704 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_486_6,-74.6941685,39.574255,702 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_486_6,-74.61286205,39.3740168,702 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_487_2,-74.648629,39.541181,612 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_487_2,-74.56536834,39.40119995,612 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_487_4,-74.64894197,39.53132186,608 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_487_4,-74.53232152,39.40061292,608 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_487_5,-74.64330913,39.53278797,606 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_487_5,-74.54547042,39.38660035,606 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_487_6,-74.6624165,39.52387,604 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_487_6,-74.5456465,39.387112,604 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_487_7,-74.649576,39.52508,602 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_487_7,-74.5449115,39.387446,602 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_487_8,-74.64985767,39.52604467,600 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_487_8,-74.5515765,39.389886,600 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_488_1,-74.6281065,39.5562305,511 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_1,-74.44064661,39.35607545,511 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_10,-74.6749105,39.55371774,506 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_488_10,-74.44031788,39.35610958,506 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_488_18,-74.69514077,39.50661307,1926 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_18,-74.44097134,39.35565178,1926 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_2,-74.70399185,39.56745196,2009 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_488_2,-74.44003368,39.35573109,2009 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_21,-74.649033,39.534437,1953 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_21,-74.44148224,39.35616549,1953 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_24,-74.6674755,39.5685795,1908 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_24,-74.44076534,39.35584086,1908 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_25,-74.65266273,39.53418119,1931 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_488_25,-74.44115152,39.35573502,1931 BACHARACH BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_488_5,-74.6238495,39.6037015,516 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_488_5,-74.44081768,39.35516114,516 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_488_6,-74.61608167,39.61999885,514 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_488_6,-74.44093191,39.3553583,514 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_488_7,-74.69254543,39.559242,512 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1925,1,GOV1,3004 -0102_488_7,-74.44042711,39.35551203,512 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_488_8,-74.6920735,39.560445,510 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_488_8,-74.44068372,39.35571807,510 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_488_9,-74.67899266,39.55843253,508 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_488_9,-74.44055508,39.35589502,508 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1925,2,RES3A,3001 -0102_489_3,-74.70120225,39.58452927,513 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_489_3,-74.43982468,39.35709592,513 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_489_4,-74.62607937,39.60283438,511 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_489_4,-74.44083082,39.35551271,511 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_489_6,-74.61620911,39.60081144,507 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_489_6,-74.44097235,39.35539849,507 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_49_1,-74.6089155,39.314629,1610 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_49_1,-74.45836214,39.35060302,1610 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_49_12,-74.634298,39.5288775,133 S MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_49_12,-74.55364147,39.37052433,133 S MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_49_19,-74.50949091,39.32793689,AIR RIGHTS MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_49_19,-74.64639817,39.531724,AIR RIGHTS MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_49_20,-74.841722,39.631944,AIR RIGHTS MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_49_20,-74.62694243,39.4355224,AIR RIGHTS MT VERNON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_49_3,-74.58903505,39.33104166,1600 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_49_3,-74.4741575,39.340016,1600 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_490_1,-74.58039666,39.59836113,625 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_490_1,-74.60589627,39.37609598,625 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_490_2,-74.6632205,39.547409,619 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_490_2,-74.5954415,39.3828525,619 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1950,1,RES3B,3001 -0102_490_3,-74.66212692,39.54546318,611 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_490_3,-74.583323,39.376493,611 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_490_4,-74.66699652,39.52870633,603 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_490_4,-74.5369415,39.397638,603 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_490_5,-74.6506761,39.53378785,601 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_490_5,-74.550197,39.3871045,601 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_491_2,-74.53232154,39.38037082,719 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_491_2,-74.49490092,39.37963616,719 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_491_3,-74.53598441,39.38048038,717 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_491_3,-74.49504915,39.37943501,717 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_491_4,-74.5313145,39.383513,715 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_491_4,-74.49563569,39.37992208,715 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_491_5,-74.53833132,39.38519016,713 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_491_5,-74.43711387,39.36081142,713 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_491_6,-74.54702545,39.37383184,711 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_491_6,-74.40802427,39.39255835,711 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_491_7,-74.53965872,39.37132119,709 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_491_7,-74.40732342,39.39212099,709 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_491_8,-74.5417575,39.37291333,707 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_491_8,-74.40718013,39.39220822,707 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_492_1,-74.53209735,39.37876414,1932 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES3A,3001 -0102_492_1,-74.49481098,39.37999951,1932 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_10,-74.70807533,39.5808315,1914 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_492_10,-74.59163276,39.40797584,1914 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_492_2,-74.5341675,39.3785245,1930 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_2,-74.49455374,39.37990387,1930 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_3,-74.53358165,39.37713897,1928 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_3,-74.4939236,39.38053697,1928 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_4,-74.55066153,39.38150266,1926 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_4,-74.49450649,39.37880917,1926 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_5,-74.54837318,39.38133793,1924 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_5,-74.49465954,39.37858722,1924 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_7,-74.54906885,39.37752196,1920 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_7,-74.45499625,39.37991099,1920 MAGELLAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_492_8,-74.5623065,39.3714415,1918 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_492_8,-74.45515571,39.37956731,1918 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_492_9,-74.5560912,39.37050172,1916 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_492_9,-74.44513761,39.36101034,1916 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_493_1,-74.54572584,39.37494152,1931 BLAINE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_493_1,-74.40764142,39.39200711,1931 BLAINE AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_493_2,-74.5489875,39.372593,1929 BLAINE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_493_2,-74.40857852,39.39160616,1929 BLAINE AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_493_3,-74.5476407,39.37239719,1927 BLAINE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_493_3,-74.40870671,39.39151404,1927 BLAINE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_493_4,-74.5313425,39.384078,1925 BLAINE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_493_4,-74.43646352,39.36102253,1925 BLAINE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_493_5,-74.5390675,39.3836215,1923 BLAINE AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_493_5,-74.43680484,39.36135019,1923 BLAINE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_493_6,-74.540433,39.380935,1921 BLAINE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_493_6,-74.4957862,39.37972134,1921 BLAINE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_493_7,-74.53398681,39.37888066,1909 BLAINE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_493_7,-74.49542426,39.38024657,1909 BLAINE AVE,ATLANTIC CITY CITY,45,1920,2,RES3A,3001 -0102_494_1,-74.620031,39.60210867,1930 BLAINE AVE,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_494_1,-74.6005715,39.3710275,1930 BLAINE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_494_2,-74.694972,39.5877105,1922 BLAINE AVE,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_494_2,-74.59951105,39.37931528,1922 BLAINE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_494_3,-74.6959755,39.5833935,1916 BLAINE AVE,ATLANTIC CITY CITY,16,1950,1,RES3A,3001 -0102_494_3,-74.60982853,39.38304764,1916 BLAINE AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_495_1,-74.6457555,39.5511505,1925 CASPIAN AVE,ATLANTIC CITY CITY,17,1999,1,GOV1,3004 -0102_495_1,-74.589656,39.376252,1925 CASPIAN AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_495_3,-74.65181214,39.55667682,1921 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_495_3,-74.58836361,39.37232165,1921 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_496_1,-74.64887154,39.62655353,1918 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_496_1,-74.4376167,39.35508982,1918 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_496_2.01,-74.78180822,39.53014572,1914 CASPIAN AVE,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_496_2.01,-74.4384539,39.35489271,1914 CASPIAN AVE,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_496_2.02,-74.7940475,39.5374015,1912 CASPIAN AVE,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_496_2.02,-74.43972813,39.3545253,1912 CASPIAN AVE,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_496_3,-74.79124349,39.53248883,1910 CASPIAN AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_496_3,-74.44243029,39.35382085,1910 CASPIAN AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3002 -0102_497_2,-74.656822,39.5758815,1917 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_497_2,-74.4408516,39.35522931,1917 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_497_5,-74.70389069,39.57906656,1911 HUMMOCK AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_497_5,-74.43987233,39.3570538,1911 HUMMOCK AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_497_6,-74.69331072,39.59103434,1909 HUMMOCK AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_497_6,-74.43939745,39.35727436,1909 HUMMOCK AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_498_1,-74.6149785,39.5969005,1900 HUMMOCK AVE,ATLANTIC CITY CITY,17,1994,1,RES1,3001 -0102_498_1,-74.43994989,39.35557345,1900 HUMMOCK AVE,ATLANTIC CITY CITY,17,1994,1,RES1,3001 -0102_498_2,-74.66825486,39.55986855,410 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_498_2,-74.44023818,39.35595064,410 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_498_3,-74.653354,39.55713336,408 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_498_3,-74.44095332,39.35596373,408 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_498_5,-74.696904,39.5136165,404 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_498_5,-74.44057846,39.35599626,404 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_498_6,-74.65215533,39.53024431,402 N OHIO AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_498_6,-74.44124934,39.35581964,402 N OHIO AVE,ATLANTIC CITY CITY,45,1900,3,IND2,3004 -0102_498_7,-74.6475355,39.530807,400 N OHIO AVE,ATLANTIC CITY CITY,45,1900,3,RES3A,3001 -0102_498_7,-74.4410994,39.3556733,400 N OHIO AVE,ATLANTIC CITY CITY,45,1900,3,RES3B,3001 -0102_499_8,-74.62732097,39.61757865,500 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_499_8,-74.43901691,39.35597741,500 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_5_1,-74.386946,39.3942965,101 S PLAZA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_5_1,-74.81214853,39.6335408,101 S PLAZA PL,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_50_10,-74.5515795,39.545228,167 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_10,-74.5454225,39.370508,167 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_50_12,-74.566786,39.5051255,185 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_12,-74.776355,39.3051975,185 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_13,-74.55488824,39.53265837,195 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_13,-74.75471326,39.3523039,195 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_50_14,-74.72411338,39.4558463,1543 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_14,-74.63704283,39.341646,1543 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_15,-74.729435,39.4549325,1541 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_15,-74.63712667,39.34102255,1541 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_16,-74.7846325,39.4378285,1539 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_16,-74.66099563,39.34749935,1539 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_17,-74.71100399,39.47258786,1537 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_17,-74.633496,39.3577795,1537 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_18,-74.77244133,39.49142451,1535 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_18,-74.63525786,39.36780942,1535 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_19,-74.86748331,39.44444054,1529 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_50_19,-74.65108428,39.35776352,1529 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_2,-74.7164245,39.4136625,123 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_2,-74.6096115,39.348178,123 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_50_20,-74.82666972,39.47328836,1527 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_20,-74.6609335,39.3658085,1527 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_50_22,-74.896567,39.480444,150 WESTMINSTER AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_50_22,-74.6384795,39.430092,150 WESTMINSTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_23,-74.92605547,39.48298892,148 WESTMINSTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_50_23,-74.642722,39.4352535,148 WESTMINSTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_50_26,-74.74863584,39.45249519,142 WESTMINSTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_26,-74.631763,39.3664575,142 WESTMINSTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_28,-74.86322464,39.48989183,1523 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_28,-74.68631418,39.35760252,1523 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_29,-74.605921,39.5048335,1517 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_29,-74.54736396,39.37615516,1517 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_31,-74.5539275,39.541898,1515 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_31,-74.54042933,39.3831455,1515 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_4,-74.689419,39.497356,127 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_4,-74.61489,39.3399795,127 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_5,-74.72784755,39.46060081,129 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_5,-74.636298,39.362539,129 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_50_9,-74.66019491,39.51753035,161 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_50_9,-74.535966,39.379125,161 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_500_1,-74.694378,39.5814895,1904 BLAINE AVE,ATLANTIC CITY CITY,27,1900,2,RES3B,3001 -0102_500_1,-74.610874,39.378226,1904 BLAINE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_500_10,-74.78135,39.626339,608 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_500_10,-74.4425135,39.35455573,608 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_500_11,-74.75107068,39.63642522,606 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_500_11,-74.44305056,39.3543639,606 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_500_12,-74.78568508,39.60878511,604 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_500_12,-74.44315797,39.35455505,604 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_500_13,-74.777673,39.6059095,602 N OHIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_500_13,-74.44326819,39.35482914,602 N OHIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_500_14,-74.75015729,39.60279642,600 N OHIO AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_500_14,-74.44336188,39.35422032,600 N OHIO AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_500_2,-74.87861874,39.59944649,1902 BLAINE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_500_2,-74.44394705,39.35649157,1902 BLAINE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_500_4,-74.80883165,39.61325225,620 N OHIO AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_500_4,-74.44343414,39.35807486,620 N OHIO AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_500_5,-74.86649258,39.59861293,618 N OHIO AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_500_5,-74.44321352,39.35517216,618 N OHIO AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3002 -0102_500_7,-74.836801,39.5959235,614 N OHIO AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_500_7,-74.44342838,39.35507426,614 N OHIO AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_500_8,-74.81237545,39.60391666,612 N OHIO AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_500_8,-74.44351244,39.35504343,612 N OHIO AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_500_9,-74.77920743,39.62355333,610 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_500_9,-74.44252863,39.35471203,610 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_501_1,-74.729591,39.5873615,1904 MAGELLAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_501_1,-74.5808902,39.41328007,1904 MAGELLAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_501_11,-74.5495585,39.383819,706 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_501_11,-74.49435258,39.37915031,706 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_501_13,-74.7967475,39.6384365,700 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_501_13,-74.4444843,39.35761018,700 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_501_2,-74.7940104,39.57563629,1902 MAGELLAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_501_2,-74.59016224,39.41690889,1902 MAGELLAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_501_3,-74.77722139,39.6051229,720 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_501_3,-74.6011405,39.410564,720 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_501_4,-74.79259817,39.59104917,718 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_501_4,-74.58883,39.415171,718 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_501_5,-74.72814064,39.59046966,716 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_501_5,-74.575548,39.4121495,716 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_501_6,-74.543112,39.377304,714 N OHIO AVE RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_501_6,-74.45505314,39.37942794,714 N OHIO AVE RR,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_501_7,-74.72695186,39.58742213,714 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_501_7,-74.5952265,39.4069365,714 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_501_8,-74.54975395,39.38021786,712 N OHIO AVE RR,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_501_8,-74.45590978,39.38009966,712 N OHIO AVE RR,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_501_9,-74.55695461,39.37118855,712 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_501_9,-74.45526035,39.37968748,712 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_502_1,-74.778978,39.6248495,521 N OHIO AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_502_1,-74.44238785,39.35460944,521 N OHIO AVE,ATLANTIC CITY CITY,45,1925,4,RES1,3001 -0102_502_11,-74.7814235,39.5114625,503 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_502_11,-74.43658171,39.35483512,503 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_502_2,-74.78715033,39.61763567,519 N OHIO AVE,ATLANTIC CITY CITY,45,1920,2,COM3,3004 -0102_502_2,-74.4431106,39.35448196,519 N OHIO AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_502_3,-74.78206474,39.60676343,517 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_502_3,-74.44335043,39.354807,517 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_502_4,-74.72465,39.582675,513 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_502_4,-74.44263063,39.35331904,513 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_502_5,-74.86242356,39.56493628,511 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_502_5,-74.44206828,39.35310454,511 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_502_6,-74.80813191,39.5535725,509 N OHIO AVE,ATLANTIC CITY CITY,17,1910,1,REL1,3004 -0102_502_6,-74.44265977,39.35413291,509 N OHIO AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_502_7,-74.8223293,39.53557359,507 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_502_7,-74.44228586,39.3538475,507 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_503_1,-74.46411718,39.35887611,615 N OHIO AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_503_1,-74.82335155,39.44429518,615 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_504_1,-74.46205006,39.35661118,1820 LINCOLN AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_504_1,-74.8402485,39.4443975,1820 LINCOLN AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_504_14,-74.8121675,39.628675,607 TRINITY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_504_14,-74.44496914,39.35763103,607 TRINITY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_504_2,-74.46077847,39.35174558,1818 LINCOLN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_504_2,-74.85424625,39.46026702,1818 LINCOLN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_504_3,-74.48210294,39.35259862,1816 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_504_3,-74.82656697,39.47481497,1816 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_504_4,-74.494542,39.3425555,1814 LINCOLN AVE,ATLANTIC CITY CITY,33,1902,1,AGR1,3001 -0102_504_4,-74.829581,39.488861,1814 LINCOLN AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_504_5,-74.49150452,39.33952455,1812 LINCOLN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_504_5,-74.8301245,39.488767,1812 LINCOLN AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_504_6,-74.464883,39.3583365,616 HOBART AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_504_6,-74.80039118,39.45804455,616 HOBART AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_505_1,-74.7904595,39.6387535,1830 REV JJ WALTERS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_505_1,-74.44383568,39.35493586,1830 REV JJ WALTERS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_505_2,-74.83114067,39.57187349,1828 REV JJ WALTERS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_505_2,-74.44359018,39.35501003,1828 REV JJ WALTERS,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_505_3,-74.875416,39.597015,1816 REV JJ WALTERS,ATLANTIC CITY CITY,17,1984,1,RES1,3001 -0102_505_3,-74.44364259,39.35533403,1816 REV JJ WALTERS,ATLANTIC CITY CITY,17,1984,1,RES1,3001 -0102_505_4,-74.880223,39.5937445,1812 REV JJ WALTERS,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_505_4,-74.44296742,39.35532473,1812 REV JJ WALTERS,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_507_1,-74.79101443,39.53352085,1817 HUMMOCK AVE,ATLANTIC CITY CITY,45,1902,2,GOV1,3004 -0102_507_1,-74.43932865,39.35378962,1817 HUMMOCK AVE,ATLANTIC CITY CITY,45,1902,2,COM1,3004 -0102_507_2,-74.8216105,39.5327055,1817 HUMMOCK AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_507_2,-74.44225669,39.35393824,1817 HUMMOCK AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_507_3,-74.80874415,39.55386448,1815 HUMMOCK AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_507_3,-74.44233517,39.35407933,1815 HUMMOCK AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_507_4,-74.87898355,39.56098234,1813 HUMMOCK AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_507_4,-74.44149697,39.35300824,1813 HUMMOCK AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_507_5,-74.86327,39.568139,1809 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_507_5,-74.4418341,39.3528992,1809 HUMMOCK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_508_10,-74.76280526,39.60978755,504 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_508_10,-74.44342504,39.35477782,504 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_508_11,-74.72278185,39.58831055,502 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_508_11,-74.44227043,39.35278316,502 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_508_12,-74.71505766,39.57739248,500 N INDIANA AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_508_12,-74.4420359,39.35288596,500 N INDIANA AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_508_2,-74.80589336,39.62805655,524 N INDIANA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_508_2,-74.44401856,39.3579909,524 N INDIANA AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_508_3,-74.831822,39.609463,522 N INDIANA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_508_3,-74.44363411,39.3582634,522 N INDIANA AVE,ATLANTIC CITY CITY,45,1920,3,GOV1,3004 -0102_508_4,-74.81978256,39.61202019,520 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_508_4,-74.44354963,39.35800435,520 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_508_5,-74.8681745,39.598008,516 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_508_5,-74.44327729,39.3551281,516 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_508_6,-74.84402738,39.60349381,514 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_508_6,-74.44360345,39.35527064,514 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_508_7,-74.78743168,39.63842529,512 N INDIANA AVE,ATLANTIC CITY CITY,45,1880,4,RES1,3001 -0102_508_7,-74.44379593,39.3548715,512 N INDIANA AVE,ATLANTIC CITY CITY,45,1880,4,RES1,3001 -0102_508_8,-74.77920614,39.62683897,508 N INDIANA AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_508_8,-74.4429553,39.35439241,508 N INDIANA AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_508_9,-74.7856495,39.612741,506 N INDIANA AVE,ATLANTIC CITY CITY,17,1880,1,AGR1,3001 -0102_508_9,-74.44321113,39.35461321,506 N INDIANA AVE,ATLANTIC CITY CITY,17,1880,1,RES1,3001 -0102_509_1,-74.632536,39.3648795,622 N INDIANA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_509_1,-74.39977499,39.39481221,622 N INDIANA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_509_2,-74.50166143,39.33248863,620 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_509_2,-74.44599113,39.35635237,620 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_509_3,-74.4948264,39.32964733,616 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,COM3,3004 -0102_509_3,-74.44617989,39.35657909,616 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_509_4,-74.46165358,39.35786267,614 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_509_4,-74.812076,39.4675365,614 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_509_5,-74.44968919,39.35434175,612 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_509_5,-74.7111235,39.4735415,612 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_509_6,-74.44795512,39.35541653,610 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_509_6,-74.77870472,39.44507797,610 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_509_7,-74.4853115,39.345708,608 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_509_7,-74.75627954,39.44533942,608 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_509_8,-74.480805,39.3467665,606 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_509_8,-74.75296595,39.44636718,606 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_509_9,-74.48090633,39.3475035,604 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_509_9,-74.7548965,39.4472285,604 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_51_10,-74.59240524,39.31904325,109 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_10,-74.46141765,39.34705953,109 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_51_12,-74.59997781,39.33068196,1512 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_12,-74.44920081,39.35633584,1512 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,AGR1,3001 -0102_51_13,-74.51587417,39.33069561,1510 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_13,-74.64893474,39.53289255,1510 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_16,-74.511618,39.3297805,1500 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_16,-74.64922042,39.53264766,1500 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_51_17,-74.614828,39.3249745,114 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_17,-74.481999,39.3504605,114 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_18,-74.603155,39.322862,118 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_18,-74.46533965,39.34772069,118 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_3,-74.58698144,39.33230287,105 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_3,-74.4678961,39.34240669,105 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_36,-74.90110605,39.48792266,153 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_36,-74.6922185,39.4202475,153 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_39,-74.8349,39.6298475,159 WESTMINSTER AVE,ATLANTIC CITY CITY,,0,1,COM4,3004 -0102_51_39,-74.63360703,39.41995132,159 WESTMINSTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_4,-74.60971652,39.31573879,107 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_4,-74.461291,39.351067,107 S KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_51_40,-74.60170667,39.43046304,161 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_51_40,-74.4731937,39.48511753,161 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_41,-74.6252245,39.5289015,163 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_41,-74.55397255,39.37405505,163 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_51_44,-74.60087,39.52564,171 WESTMINSTER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_51_44,-74.55248918,39.37133897,171 WESTMINSTER AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_51_6,-74.6146545,39.325124,1516 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_6,-74.4712126,39.3431893,1516 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_9,-74.6040205,39.310525,107 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_51_9,-74.511719,39.3263875,107 WESTMINISTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_510_1,-74.65047066,39.35366354,623 N INDIANA AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_510_1,-74.40056094,39.39473114,623 N INDIANA AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_510_11,-74.4585915,39.354026,607 N INDIANA AVE,ATLANTIC CITY CITY,45,1918,3,GOV1,3004 -0102_510_11,-74.87925572,39.44213947,607 N INDIANA AVE,ATLANTIC CITY CITY,45,1918,3,RES1,3001 -0102_510_12,-74.487915,39.33318,609 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_510_12,-74.44607371,39.35663225,609 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_510_14,-74.50621237,39.3340661,611 N INDIANA AVE,ATLANTIC CITY CITY,17,1918,1,RES1,3001 -0102_510_14,-74.44648191,39.35650152,611 N INDIANA AVE,ATLANTIC CITY CITY,17,1918,1,RES1,3001 -0102_510_17,-74.63116042,39.36362927,615 N INDIANA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_510_17,-74.40020387,39.39471575,615 N INDIANA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_510_4,-74.68920474,39.35909331,1724 LINCOLN AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_510_4,-74.40177049,39.39390472,1724 LINCOLN AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_510_7,-74.6262695,39.3624541,1713 REV JJ WALTERS,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_510_7,-74.39196762,39.3950616,1713 REV JJ WALTERS,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_510_8,-74.46007036,39.35439744,1717 REV JJ WALTERS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_510_8,-74.85522667,39.4414055,1717 REV JJ WALTERS,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_510_9,-74.45046675,39.35338588,603 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_510_9,-74.779224,39.5001105,603 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_511_1,-74.63153137,39.34682639,525 N INDIANA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_511_1,-74.38672585,39.39648928,525 N INDIANA AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_511_2,-74.63311751,39.34954839,521 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_511_2,-74.37778785,39.40200106,521 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_511_6,-74.640803,39.3390855,519 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_511_6,-74.37758341,39.3988206,519 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_511_7,-74.63945306,39.34000042,517 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_511_7,-74.37737795,39.39857669,517 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_511_8,-74.60074116,39.36006169,511 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_511_8,-74.4031088,39.3921649,511 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_512_2,-74.6284101,39.3560882,1712 REV JJ WALTERS,ATLANTIC CITY CITY,17,2008,1,RES1,3001 -0102_512_2,-74.38728991,39.39710167,1712 REV JJ WALTERS,ATLANTIC CITY CITY,17,2008,1,RES1,3001 -0102_512_3,-74.63065468,39.3475071,512 ROBINSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_512_3,-74.38584116,39.39749017,512 ROBINSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_512_5,-74.63222898,39.35124729,511 MORGAN TERR,ATLANTIC CITY CITY,16,2012,1,RES1,3001 -0102_512_5,-74.3775793,39.40252696,511 MORGAN TERR,ATLANTIC CITY CITY,16,2012,1,GOV1,3004 -0102_513_10,-74.57571562,39.35668593,1717 HUMMOCK AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_513_10,-74.39222079,39.38938418,1717 HUMMOCK AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_513_11,-74.6037745,39.343537,1719 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_11,-74.39256493,39.39405325,1719 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_12,-74.5984715,39.345267,1721 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_12,-74.38903892,39.39029299,1721 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_13,-74.61470983,39.33788527,1723 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_513_13,-74.39241274,39.39230179,1723 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_513_14,-74.5814166,39.34619236,501 N INDIANA AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_513_14,-74.39210958,39.39216212,501 N INDIANA AVE #B,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_513_15,-74.5919575,39.3430505,501 N INDIANA AVE #A,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_513_15,-74.39222894,39.3921145,501 N INDIANA AVE #A,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_513_16,-74.59814108,39.33900616,503 N INDIANA AVE,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_513_16,-74.39238005,39.39218589,503 N INDIANA AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_513_2,-74.57898533,39.35283777,1722 LOGAN AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_513_2,-74.39571978,39.39168925,1722 LOGAN AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_513_3,-74.59707115,39.35931062,1720 LOGAN AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_513_3,-74.39772699,39.3906357,1720 LOGAN AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_513_5,-74.5887725,39.365056,1716 LOGAN AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_513_5,-74.39996461,39.38861221,1716 LOGAN AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_513_6,-74.606231,39.3603805,1714 LOGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_6,-74.40343873,39.39217787,1714 LOGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_7,-74.61820073,39.36314858,1712 LOGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_7,-74.40306952,39.39196688,1712 LOGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_8,-74.5778375,39.353701,1713 HUMMOCK AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_513_8,-74.39402855,39.38824327,1713 HUMMOCK AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_513_9,-74.57803117,39.35432093,1715 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_513_9,-74.3919862,39.38958357,1715 HUMMOCK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_514_1,-74.6343665,39.3585745,532 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_514_1,-74.38718936,39.39701376,532 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_514_10,-74.58644267,39.35747968,1711 HUMMOCK AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_514_10,-74.39970248,39.38796349,1711 HUMMOCK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_514_12,-74.625859,39.3297955,505 ROBINSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_514_12,-74.37748316,39.39870083,505 ROBINSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_514_13,-74.62756166,39.34887604,507 ROBINSON AVE,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_514_13,-74.37753154,39.40300011,507 ROBINSON AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_514_14,-74.63410505,39.34962166,509 ROBINSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_514_14,-74.37764047,39.40185385,509 ROBINSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_514_15,-74.63237652,39.34881634,511 ROBINSON AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_514_15,-74.3804794,39.40128367,511 ROBINSON AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_514_2,-74.62453996,39.35668416,522 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1968,1,RES1,3001 -0102_514_2,-74.38664771,39.39656095,522 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1968,1,RES1,3001 -0102_514_8,-74.59658098,39.36370991,1707 HUMMOCK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_514_8,-74.40035376,39.38875045,1707 HUMMOCK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_514_9,-74.581823,39.3679025,1709 HUMMOCK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_514_9,-74.39995697,39.38848719,1709 HUMMOCK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_515_1,-74.76420928,39.3067686,636 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_515_1,-74.40307038,39.39445113,636 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_515_2,-74.66898047,39.35983112,626 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_515_2,-74.40161549,39.39474522,626 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_515_3,-74.6562885,39.3680275,620 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_515_3,-74.40073499,39.39474173,620 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_515_4,-74.63480183,39.36424048,610 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_515_4,-74.40002602,39.39474105,610 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_515_5,-74.6408386,39.36579032,600 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_515_5,-74.39919995,39.39485579,600 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_516_1,-74.632495,39.523409,659 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_516_1,-74.53701274,39.39050359,659 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_516_2,-74.641053,39.5312945,658 GREEN ST,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_516_2,-74.5398355,39.3892945,658 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_516_3,-74.53842322,39.3746605,650 GREEN ST,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_516_3,-74.40378593,39.39342273,650 GREEN ST,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_516_4,-74.7823395,39.3146255,644 GREEN ST,ATLANTIC CITY CITY,16,1962,1,GOV1,3004 -0102_516_4,-74.4039371,39.39433764,644 GREEN ST,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_516_5,-74.76238184,39.30914074,638 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_516_5,-74.40323708,39.39439621,638 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_516_6,-74.7649051,39.31143588,637 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_516_6,-74.40324162,39.39454363,637 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_516_7,-74.77506557,39.31713078,645 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1962,1,GOV1,3004 -0102_516_7,-74.40340205,39.39435069,645 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_516_8,-74.54162215,39.37465396,651 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_516_8,-74.40332253,39.3935655,651 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_517_1,-74.688594,39.3589015,625 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_517_1,-74.402903,39.39447798,625 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_517_2,-74.70162958,39.36531967,624 GREEN ST,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_517_2,-74.40293055,39.39459361,624 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_517_3,-74.67684721,39.35607813,616 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_517_3,-74.40136523,39.39474635,616 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_517_4,-74.66292209,39.36493284,610 GREEN ST,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_517_4,-74.40091032,39.39472751,610 GREEN ST,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_517_5,-74.50798349,39.33218516,600 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_517_5,-74.4460583,39.35622505,600 GREEN ST,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_517_6,-74.63698737,39.3655343,601 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_517_6,-74.39945336,39.39485028,601 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_517_7,-74.63128236,39.36269371,611 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_517_7,-74.40035386,39.3947486,611 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_517_8,-74.66452029,39.35951374,615 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_517_8,-74.40109407,39.39471297,615 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_518_1,-74.62048288,39.36634731,529 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_1,-74.39018302,39.39509703,529 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_10,-74.80148942,39.63514863,509 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_10,-74.44455594,39.35761681,509 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_11,-74.8016275,39.637814,507 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_11,-74.44442525,39.35765332,507 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_12,-74.8003425,39.638947,505 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_12,-74.4447409,39.35769173,505 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_13,-74.811074,39.62531,503 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_13,-74.44502959,39.35760491,503 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_2,-74.633567,39.3581455,527 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_2,-74.3899858,39.39513293,527 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES3A,3002 -0102_518_3,-74.48261389,39.34407795,525 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_3,-74.78604778,39.44419202,525 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_518_4,-74.48102404,39.34654868,523 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_4,-74.75337533,39.44610854,523 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_5,-74.48113735,39.34717323,521 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_5,-74.75240534,39.4464308,521 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_6,-74.48682234,39.34933333,519 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,REL1,3004 -0102_518_6,-74.7354233,39.46678617,519 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_7,-74.8133565,39.636902,517 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_7,-74.44473302,39.3575152,517 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3004 -0102_518_8,-74.79713276,39.63147568,513 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_8,-74.44466715,39.35753939,513 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_518_9,-74.80078243,39.63348593,511 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,2008,1,RES1,3001 -0102_518_9,-74.444604,39.35756256,511 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,33,2008,1,RES1,3001 -0102_519_1,-74.49509604,39.3426991,1626 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_519_1,-74.8244525,39.4843745,1626 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_519_10,-74.48194068,39.34774996,1625 WABASH AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_519_10,-74.7527915,39.45138,1625 WABASH AVE,ATLANTIC CITY CITY,17,1960,1,GOV1,3004 -0102_519_2,-74.49420753,39.33303885,1618 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_519_2,-74.44613346,39.35660401,1618 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_519_3,-74.50018275,39.33320465,1612 CASPIAN AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_519_3,-74.4463228,39.35641953,1612 CASPIAN AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_519_4,-74.50341417,39.332454,524 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_519_4,-74.44591877,39.35637976,524 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_519_5,-74.49552283,39.32900472,516 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_519_5,-74.44623817,39.35656103,516 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_519_6,-74.445706,39.360193,510 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_519_6,-74.875391,39.45998017,510 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_519_7,-74.4503915,39.354424,500 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_519_7,-74.71091925,39.47410457,500 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_519_8,-74.4625504,39.35901419,1611 WABASH AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_519_8,-74.79782162,39.44122132,1611 WABASH AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_519_9,-74.4806445,39.346089,1617 WABASH AVE,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_519_9,-74.7601695,39.4457645,1617 WABASH AVE,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_52_1,-74.51485045,39.32831221,1416 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_1,-74.6500695,39.5326295,1416 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_10,-74.7963665,39.6350345,159 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_10,-74.68084535,39.38912006,159 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_19,-74.85910332,39.61947302,209 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_19,-74.63552605,39.41995981,209 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_2,-74.52161093,39.32238633,117 S NEW YORK AVE,ATLANTIC CITY CITY,45,1930,2,GOV1,3004 -0102_52_2,-74.6440135,39.533219,117 S NEW YORK AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_52_20,-74.60829088,39.51500118,247 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_20,-74.55050933,39.37445564,247 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_21,-74.876515,39.500314,1435 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_52_21,-74.75773664,39.30538241,1435 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_22,-74.847767,39.482748,1433 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_22,-74.67918051,39.35166869,1433 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_24,-74.57511482,39.53208334,1427 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_24,-74.76489373,39.36287105,1427 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_25,-74.5990095,39.5190165,168 S ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_25,-74.54941292,39.37500861,168 S ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_26,-74.62284494,39.50579809,164 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_26,-74.536576,39.381681,164 ST JAMES PL,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_52_27,-74.626518,39.50517,162 ST JAMES PL,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_52_27,-74.53800209,39.38029534,162 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_3,-74.60847938,39.3230328,121 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_3,-74.47944467,39.34936899,121 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_30,-74.74713013,39.44549904,142 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_30,-74.63217082,39.36493693,142 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_4,-74.581031,39.3307185,137 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_4,-74.47047301,39.34250263,137 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_6,-74.60316352,39.31615666,151 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_52_6,-74.5099525,39.3290125,151 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_52_7,-74.53581299,39.30412249,153 S NEW YORK AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_52_7,-74.5108345,39.333565,153 S NEW YORK AVE,ATLANTIC CITY CITY,,1920,1,GOV1,3004 -0102_52_8,-74.71235145,39.46716428,155 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_8,-74.6597055,39.3646915,155 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_9,-74.80499844,39.6334853,157 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_52_9,-74.6263215,39.416995,157 S NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_520_1,-74.51953033,39.32246637,1614 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_520_1,-74.44364135,39.35235338,1614 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_520_10,-74.5020135,39.327126,615 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_520_10,-74.44471161,39.35464578,615 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_520_2,-74.5138765,39.3212225,626 N KENTUCKY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_520_2,-74.44482379,39.3526969,626 N KENTUCKY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_520_3,-74.51274798,39.32213633,624 N KENTUCKY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_520_3,-74.44387112,39.35273708,624 N KENTUCKY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_520_4,-74.517606,39.323179,622 N KENTUCKY AVE,ATLANTIC CITY CITY,33,1935,1,RES1,3001 -0102_520_4,-74.44287282,39.35256502,622 N KENTUCKY AVE,ATLANTIC CITY CITY,33,1935,1,RES1,3001 -0102_520_5,-74.51032434,39.32356349,616 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_520_5,-74.44456171,39.35377346,616 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_520_6,-74.507282,39.3275475,610 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_520_6,-74.44540789,39.35485091,610 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_520_7,-74.5068905,39.3291615,600 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_520_7,-74.44404007,39.35452579,600 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_520_8,-74.501363,39.330625,601 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_520_8,-74.44625943,39.35620305,601 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_520_9,-74.50662794,39.32888032,611 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_520_9,-74.44507807,39.35495372,611 GREEN ST,ATLANTIC CITY CITY,16,1900,1,COM1,3004 -0102_521_1,-74.646287,39.5288885,1614 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_521_1,-74.53161232,39.38586741,1614 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_521_2,-74.64777541,39.5282653,660 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_521_2,-74.55249755,39.39030618,660 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_521_3,-74.93077833,39.51216605,654 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_521_3,-74.5653086,39.47706769,654 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_521_4,-74.92484948,39.50907493,644 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_521_4,-74.55073279,39.47389437,644 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_521_5,-74.93923601,39.49605894,638 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_521_5,-74.55677577,39.46683094,638 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_521_6,-74.810684,39.312747,637 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_521_6,-74.40391911,39.39421719,637 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_521_7,-74.6322385,39.524994,645 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_521_7,-74.5350815,39.3912095,645 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_521_8,-74.63849987,39.53129233,653 GREEN ST,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_521_8,-74.53750082,39.38794145,653 GREEN ST,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_522_1,-74.402505,39.3875605,1401 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_522_1,-74.45035793,39.35801176,1401 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_522_2,-74.3892005,39.3923705,601 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_522_2,-74.4481837,39.35567552,601 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_522_3,-74.3786789,39.40126434,603 N NEW YORK AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_522_3,-74.44931881,39.35654625,603 N NEW YORK AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_522_5,-74.41797187,39.36884623,649 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_522_5,-74.44989135,39.35712412,649 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_522_6,-74.42268981,39.37137303,659 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_522_6,-74.44918959,39.35738624,659 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_522_7,-74.42564578,39.3706159,1424 MAGELLAN AVE,ATLANTIC CITY CITY,16,1940,1,RES1,3001 -0102_522_7,-74.44998033,39.3579838,1424 MAGELLAN AVE,ATLANTIC CITY CITY,16,1940,1,RES1,3001 -0102_522_8,-74.44315264,39.37304878,1420 MAGELLAN AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_522_8,-74.45007609,39.35801677,1420 MAGELLAN AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_523_1,-74.41127047,39.38312664,658 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_1,-74.44957537,39.35722669,658 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_2,-74.3946735,39.3949695,650 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_2,-74.45019166,39.35767723,650 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_3,-74.38874983,39.39101397,644 N NEW YORK AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_523_3,-74.4487054,39.35618946,644 N NEW YORK AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_523_4,-74.5471699,39.36130576,638 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_4,-74.36225275,39.41202726,638 N NEW YORK AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_5,-74.94765,39.50914017,641 HOWARD AVENUE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_5,-74.5642945,39.4791335,641 HOWARD AVENUE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_6,-74.50020066,39.33443701,645 HOWARD ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_6,-74.44886912,39.35764595,645 HOWARD ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_523_7,-74.390665,39.3891505,649 HOWARD ST,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_523_7,-74.44923643,39.35701394,649 HOWARD ST,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_523_8,-74.3958854,39.39396124,659 HOWARD ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_523_8,-74.45005163,39.35749507,659 HOWARD ST,ATLANTIC CITY CITY,16,1900,1,RES1,3004 -0102_524_1,-74.3917465,39.39034317,658 HOWARD ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_524_1,-74.44899434,39.3570612,658 HOWARD ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_524_2,-74.93938113,39.51518871,650 HOWARD ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_524_2,-74.581868,39.475709,650 HOWARD ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_524_3,-74.9469145,39.509715,644 HOWARD ST,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_524_3,-74.57333495,39.4796063,644 HOWARD ST,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_524_5,-74.92644633,39.50835,1541 SEWELL AVE,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_524_5,-74.5635652,39.47794195,1541 SEWELL AVE,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_524_6,-74.92740609,39.50766558,645 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_524_6,-74.56790944,39.47591166,645 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_524_7,-74.939881,39.516417,625 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_524_7,-74.53561955,39.48967237,625 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_524_8,-74.35466155,39.41470616,659 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_524_8,-74.44905994,39.35777211,659 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_525_1,-74.9295592,39.50821611,1500-1540 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_525_1,-74.565171,39.476053,1500-1540 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_525_2,-74.51262065,39.32270564,601-659 KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_525_2,-74.44424323,39.35335467,601-659 KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_525_3,-74.59762848,39.32972035,1500-1538 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_525_3,-74.37110693,39.42145664,1500-1538 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_526_1,-74.390606,39.3942355,1401 CASPIAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_526_1,-74.45012906,39.35758518,1401 CASPIAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_526_12,-74.56837873,39.3414236,513 N NEW YORK AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_526_12,-74.37585373,39.39732787,513 N NEW YORK AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_526_25,-74.610807,39.326205,511 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_25,-74.37177979,39.42114123,511 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_27,-74.57209809,39.34274696,515 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_27,-74.37849815,39.40228738,515 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_28,-74.56941215,39.33840857,517 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_28,-74.3751815,39.39868688,517 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_29,-74.57377317,39.3371745,519 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_29,-74.3673449,39.40634698,519 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_30,-74.5695355,39.3494265,521 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_30,-74.36742706,39.40642486,521 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_32,-74.56904972,39.34770688,523 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_526_32,-74.36726058,39.40638104,523 N NEW YORK AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_33,-74.56812,39.3432895,525 N NEW YORK AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_526_33,-74.36733785,39.40664164,525 N NEW YORK AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_526_34,-74.55145502,39.36679843,527 N NEW YORK AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_526_34,-74.36643798,39.4068713,527 N NEW YORK AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_526_37,-74.55608233,39.35741984,1426 SEWELL AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_526_37,-74.36239889,39.41210797,1426 SEWELL AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_526_39,-74.3917605,39.391172,1418 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_526_39,-74.4485547,39.35551878,1418 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_526_6,-74.60809895,39.32622566,1441 CASPIAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_6,-74.37159791,39.42120225,1441 CASPIAN AVE,ATLANTIC CITY CITY,33,1900,1,COM4,3004 -0102_526_7,-74.60633781,39.32637283,1443 CASPIAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_7,-74.37143324,39.42127883,1443 CASPIAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_8,-74.6058989,39.32815323,1445 CASPIAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_526_8,-74.3712597,39.4213961,1445 CASPIAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_527_1,-74.92646072,39.50921955,411 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_527_1,-74.54951778,39.47416693,411 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,COM1,3002 -0102_53_1,-74.63294397,39.41915918,1408 PACIFIC AVE,ATLANTIC CITY CITY,,1927,1,GOV1,3004 -0102_53_1,-74.501655,39.5270195,1408 PACIFIC AVE,ATLANTIC CITY CITY,,1927,1,GOV1,3004 -0102_53_10,-74.70925679,39.3854401,144 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_10,-74.59847969,39.34607995,144 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_11,-74.74925208,39.45309164,145 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_11,-74.63234221,39.35737474,145 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_12,-74.50371896,39.44797384,147 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_12,-74.80809309,39.64165418,147 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_13,-74.92446976,39.47450348,149 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_13,-74.63258218,39.42947096,149 ST JAMES PL,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_53_14,-74.747635,39.4524735,1401 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_14,-74.6346795,39.365667,1401 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_15,-74.82378184,39.62909598,156 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_15,-74.63396428,39.42202534,156 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_17,-74.7569616,39.43017024,142 S TENNESSEE AVE,ATLANTIC CITY CITY,,1901,1,RES1,3001 -0102_53_17,-74.590578,39.356646,142 S TENNESSEE AVE,ATLANTIC CITY CITY,,1901,1,RES1,3001 -0102_53_18,-74.53467065,39.30496991,140 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_18,-74.5239334,39.31891245,140 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_21,-74.59370967,39.32856023,132 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_21,-74.48353072,39.34092733,132 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_22,-74.6078825,39.3220995,130 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_22,-74.46862167,39.34599849,130 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_23,-74.6150095,39.321292,124 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_23,-74.477805,39.3458345,124 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_53_24,-74.57310919,39.33601589,120 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_53_24,-74.46421592,39.35803132,120 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_53_25,-74.57336185,39.34778252,118 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_25,-74.45683575,39.35245659,118 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_26,-74.63533146,39.4266987,114 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_26,-74.53509426,39.3040462,114 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_6,-74.5887025,39.3223525,127 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_6,-74.4612405,39.347546,127 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_7,-74.799468,39.6340285,133 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_7,-74.631317,39.408226,133 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_8,-74.79472443,39.41660631,135 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_53_8,-74.5755245,39.3537775,135 ST JAMES PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_534_18,-74.38963844,39.39377734,1321 ADRIATIC AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_534_18,-74.64009418,39.53222856,1321 ADRIATIC AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_534_19,-74.37942667,39.39892482,401 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_534_19,-74.63632595,39.52311785,401 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_534_2,-74.92779256,39.5072868,1314 CASPIAN AVE,ATLANTIC CITY CITY,17,1939,1,RES1,3001 -0102_534_2,-74.56563264,39.47377486,1314 CASPIAN AVE,ATLANTIC CITY CITY,17,1939,1,RES1,3001 -0102_534_20,-74.38364617,39.39878747,405 N TENNESSEE AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_534_20,-74.6333115,39.5366405,405 N TENNESSEE AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_534_21,-74.3802365,39.3952135,407 N TENNESSEE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_534_21,-74.63630559,39.53649966,407 N TENNESSEE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_534_22,-74.395642,39.394885,409 N TENNESSEE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_534_22,-74.63733115,39.53289146,409 N TENNESSEE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_534_23,-74.50882061,39.32921216,411 N TENNESSEE AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_534_23,-74.44407853,39.35457781,411 N TENNESSEE AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_534_24,-74.50041819,39.32877248,415 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_534_24,-74.44486137,39.35498999,415 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_534_26,-74.51823037,39.32447844,421 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,IND2,3002 -0102_534_26,-74.44483485,39.35400509,421 N TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_534_28,-74.5182345,39.3202005,427 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_534_28,-74.44553989,39.35269321,427 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_534_29,-74.51935976,39.31971186,429 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_534_29,-74.44524352,39.35209327,429 N TENNESSEE AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_534_3,-74.929256,39.5076375,450 N OCEAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_534_3,-74.56571653,39.47427817,450 N OCEAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_534_30,-74.517274,39.319226,431 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_30,-74.44641684,39.35203735,431 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_31,-74.520508,39.322757,433 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_31,-74.44607684,39.35377376,433 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_32,-74.908524,39.4880935,435 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_534_32,-74.54211033,39.45678749,435 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_534_33,-74.920886,39.488699,437 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_33,-74.53624798,39.45617426,437 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_34,-74.9329925,39.490469,339 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_34,-74.55573832,39.46896084,339 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_35,-74.95045314,39.49105633,441 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_35,-74.61845092,39.46268511,441 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_36,-74.95787698,39.49821278,443 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_36,-74.53695222,39.47269555,443 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_37,-74.925138,39.510369,445 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_37,-74.549045,39.4762485,445 N TENNESSEE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_534_38,-74.9256395,39.5255985,447 N TENNESSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_534_38,-74.55648,39.474878,447 N TENNESSEE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_534_4,-74.92897198,39.51233484,448 N OCEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_534_4,-74.568223,39.4772965,448 N OCEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_534_5,-74.925839,39.506016,444 N OCEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_534_5,-74.5565845,39.476045,444 N OCEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_534_6,-74.9253155,39.510587,422 N OCEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_534_6,-74.54945079,39.47695847,422 N OCEAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_534_8,-74.9369725,39.4816405,418 N OCEAN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_534_8,-74.55491495,39.47010805,418 N OCEAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_534_9,-74.89861884,39.50248774,416 N OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_534_9,-74.54124419,39.45835511,416 N OCEAN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_535_1,-74.38337815,39.3921234,420 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_535_1,-74.44762458,39.35452878,420 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_536_1.01,-74.40387249,39.38091959,441 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_536_1.01,-74.44981184,39.35712965,441 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_536_1.02,-74.38194879,39.39512781,435 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_536_1.02,-74.45026025,39.3577751,435 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES3A,3001 -0102_536_1.03,-74.3991875,39.38662,433 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,2007,2,RES1,3001 -0102_536_1.03,-74.44956484,39.35678212,433 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,45,2007,2,RES1,3004 -0102_536_1.04,-74.387873,39.3912105,431 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_536_1.04,-74.44751341,39.35460672,431 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_536_1.05,-74.954392,39.51654,429 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.05,-74.6053135,39.487004,429 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.06,-74.941301,39.515745,825 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_536_1.06,-74.5580406,39.48805043,825 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_536_1.07,-74.92824575,39.5070475,421 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_536_1.07,-74.574249,39.4802175,421 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_536_1.08,-74.4346265,39.3715065,419 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_536_1.08,-74.6547921,39.53350712,419 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_536_1.09,-74.41076451,39.38275942,415 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_536_1.09,-74.6443438,39.53009525,415 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_536_1.10,-74.40567493,39.37938578,411 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.10,-74.64789384,39.53213853,411 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.11,-74.405114,39.379444,409 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.11,-74.64710029,39.53302987,409 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.12,-74.40709721,39.3802454,407 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.12,-74.649977,39.5340125,407 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.13,-74.40582745,39.38096033,405 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.13,-74.637963,39.5307055,405 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,27,2007,2,RES1,3001 -0102_536_1.14,-74.41525072,39.36841764,401 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_536_1.14,-74.64013127,39.53125604,401 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_537_1.01,-74.42847332,39.37072601,440 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_537_1.01,-74.44989093,39.35797693,440 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_537_1.02,-74.4220325,39.3717825,434 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_537_1.02,-74.44944809,39.35727645,434 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,27,2006,2,RES1,3001 -0102_537_1.03,-74.4077139,39.37860031,432 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_537_1.03,-74.44970724,39.35717465,432 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_537_1.04,-74.42122469,39.37227665,430 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_537_1.04,-74.44997823,39.35739484,430 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_537_1.05,-74.38473833,39.39931249,428 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_537_1.05,-74.45019595,39.35662685,428 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2007,1,COM1,3004 -0102_537_1.06,-74.3916285,39.3879975,424 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_537_1.06,-74.44941071,39.35694438,424 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_538_1,-74.44076405,39.36866607,401 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_538_1,-74.45026339,39.35800588,401 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_538_10,-74.38942183,39.39358701,1105 ADRIATIC AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_538_10,-74.44738993,39.35462359,1105 ADRIATIC AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_538_11,-74.37673517,39.40040298,1107 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_538_11,-74.44774812,39.35450725,1107 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_538_12,-74.37465154,39.40178396,1109 ADRIATIC AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_538_12,-74.44787165,39.35445257,1109 ADRIATIC AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_538_13,-74.51207576,39.33763623,1111 ADRIATIC AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_538_13,-74.44896302,39.35784845,1111 ADRIATIC AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_538_14,-74.60788968,39.33014967,1113 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_538_14,-74.37095115,39.42153699,1113 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_538_15,-74.438787,39.368823,1115 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_538_15,-74.65522122,39.5334771,1115 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_538_16,-74.37661915,39.40199952,1117 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_538_16,-74.44798846,39.35440716,1117 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_538_17,-74.5989705,39.3302915,1119 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_538_17,-74.37026679,39.42185513,1119 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_538_3,-74.44235,39.368718,430 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_538_3,-74.450171,39.35799866,430 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_538_8,-74.38210766,39.39931244,1101 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_538_8,-74.44998778,39.35669199,1101 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,COM3,3004 -0102_538_9,-74.390248,39.3910835,1103 ADRIATIC AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_538_9,-74.44910222,39.35680144,1103 ADRIATIC AVE,ATLANTIC CITY CITY,27,1923,2,RES1,3001 -0102_539_1,-74.4243664,39.3716048,401 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_539_1,-74.44931997,39.35733106,401 N PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_1,-74.57601928,39.33835996,1330 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_1,-74.37730528,39.39607432,1330 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_10,-74.57338451,39.36335652,127 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_10,-74.36982993,39.40199525,127 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_12,-74.55583964,39.36317912,131 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_12,-74.50447748,39.34096583,131 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_54_13,-74.5742935,39.356625,133 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_13,-74.4969225,39.335707,133 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_15,-74.61000755,39.32029934,147 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_15,-74.4843212,39.34509512,147 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_16,-74.6064765,39.3190745,155 S TENNESSEE AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_54_16,-74.46989237,39.34379432,155 S TENNESSEE AVE,ATLANTIC CITY CITY,,1920,1,GOV1,3004 -0102_54_17,-74.60348715,39.3246504,159 S TENNESSEE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_54_17,-74.483262,39.335256,159 S TENNESSEE AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_54_18,-74.60193266,39.32557952,161 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_18,-74.48330648,39.33614782,161 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_54_19,-74.58754121,39.32507638,167 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_19,-74.46474935,39.34867555,167 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_2,-74.57909135,39.33461368,1328 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_2,-74.38625455,39.39246167,1328 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_20,-74.60767996,39.31496416,171 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_20,-74.513626,39.328392,171 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_21,-74.5967295,39.31026967,175 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_21,-74.512514,39.32967855,175 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_54_22,-74.49059702,39.52528926,181 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_22,-74.52360603,39.32137154,181 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_23,-74.79813863,39.63795391,187 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_23,-74.687194,39.3811228,187 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_24,-74.79014178,39.38180828,193 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_24,-74.61140035,39.34924494,193 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_25,-74.74453056,39.40123861,195 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_25,-74.61497674,39.35086267,195 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_26,-74.711829,39.469456,209 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_26,-74.64529517,39.36490766,209 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_29,-74.51727807,39.45105635,223 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_29,-74.80758197,39.64130822,223 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_3,-74.5924885,39.334553,1326 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_3,-74.38385076,39.39188682,1326 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_30,-74.88381097,39.49204882,229 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_30,-74.70494135,39.41857664,229 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_34,-74.7031112,39.49957833,160 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_34,-74.605609,39.350256,160 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_35,-74.716453,39.386157,158 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_35,-74.6063004,39.34675283,158 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_36,-74.79686805,39.63695584,154 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_36,-74.68259238,39.3927954,154 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_37,-74.48958469,39.53463798,150 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_37,-74.52085073,39.32128904,150 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_38,-74.59777783,39.31710049,142 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_38,-74.5098085,39.329232,142 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_39,-74.586311,39.3234835,140 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_54_39,-74.459553,39.348358,140 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_54_46,-74.606543,39.3312285,132 S OCEAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_54_46,-74.45017695,39.35636032,132 S OCEAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_54_47,-74.5735145,39.3502665,130 S OCEAN AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_54_47,-74.461375,39.354519,130 S OCEAN AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_54_48,-74.56999467,39.34423002,128 S OCEAN AVE,ATLANTIC CITY CITY,45,1905,3,GOV1,3004 -0102_54_48,-74.492781,39.3400265,128 S OCEAN AVE,ATLANTIC CITY CITY,45,1905,3,RES1,3001 -0102_54_49,-74.5513025,39.359837,126 S OCEAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_54_49,-74.49279683,39.33900543,126 S OCEAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_54_5,-74.63104043,39.41587729,109 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_5,-74.5016468,39.52197812,109 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_50,-74.562612,39.3558085,124 S OCEAN AVE,ATLANTIC CITY CITY,45,1905,2,RES1,3001 -0102_54_50,-74.492729,39.3368885,124 S OCEAN AVE,ATLANTIC CITY CITY,45,1905,2,GOV1,3004 -0102_54_51,-74.57081311,39.35600431,122 S OCEAN AVE,ATLANTIC CITY CITY,45,1901,3,GOV1,3004 -0102_54_51,-74.49022211,39.33548766,122 S OCEAN AVE,ATLANTIC CITY CITY,45,1901,3,GOV1,3004 -0102_54_52,-74.554152,39.3606065,120 S OCEAN AVE,ATLANTIC CITY CITY,45,1901,3,RES1,3001 -0102_54_52,-74.505057,39.3407145,120 S OCEAN AVE,ATLANTIC CITY CITY,45,1901,3,RES1,3001 -0102_54_53,-74.56741067,39.36539633,118 S OCEAN AVE,ATLANTIC CITY CITY,37,1900,1,COM3,3004 -0102_54_53,-74.50609467,39.33702848,118 S OCEAN AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_54_57,-74.64314295,39.39249884,112 S OCEAN AVE,ATLANTIC CITY CITY,33,1901,1,RES1,3001 -0102_54_57,-74.48655768,39.5279951,112 S OCEAN AVE,ATLANTIC CITY CITY,33,1901,1,RES1,3001 -0102_54_58,-74.68195932,39.37551108,110 S OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_54_58,-74.50153572,39.52032539,110 S OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_54_6,-74.62656154,39.4152934,113 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_6,-74.4957682,39.52812947,113 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_60,-74.6245505,39.4125715,106 S OCEAN AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_54_60,-74.49145218,39.52173537,106 S OCEAN AVE,ATLANTIC CITY CITY,37,1900,1,RES1,3001 -0102_54_61,-74.65180319,39.40855961,104 S OCEAN AVE,ATLANTIC CITY CITY,37,1925,1,RES1,3001 -0102_54_61,-74.495456,39.53767,104 S OCEAN AVE,ATLANTIC CITY CITY,37,1925,1,RES1,3001 -0102_54_62,-74.6612725,39.40348,102 S OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_54_62,-74.51967851,39.53382616,102 S OCEAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_54_63,-74.58794815,39.35044838,1318 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_63,-74.3979715,39.3934275,1318 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_64,-74.58190561,39.34643906,1322-1324 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_64,-74.38760513,39.39096535,1322-1324 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_9,-74.63914125,39.3992562,121 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_54_9,-74.4639055,39.5357405,121 S TENNESSEE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_540_1,-74.365943,39.4163795,925 CASPIAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_540_1,-74.45057655,39.35687576,925 CASPIAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_541_1,-74.8006905,39.545163,401 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_541_1,-74.570825,39.4127715,401 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_541_16,-74.63087893,39.61970384,438 N MARYLAND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_541_16,-74.606997,39.399193,438 N MARYLAND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_541_17,-74.69301016,39.59061749,436 N MARYLAND AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_541_17,-74.6025745,39.3907265,436 N MARYLAND AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_541_20,-74.35749911,39.4149344,434 N MARYLAND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_541_20,-74.45238473,39.35622823,434 N MARYLAND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_541_6,-74.80877425,39.55551495,450 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_541_6,-74.5577085,39.4234205,450 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_541_7,-74.80611672,39.53513803,448 N MARYLAND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_541_7,-74.569631,39.413534,448 N MARYLAND AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_541_8,-74.79377701,39.53590233,446 N MARYLAND AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_541_8,-74.57313886,39.41460604,446 N MARYLAND AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_541_9,-74.78516722,39.50458591,444 N MARYLAND AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_541_9,-74.57464166,39.40859667,444 N MARYLAND AVE,ATLANTIC CITY CITY,27,1910,2,RES1,3001 -0102_542_1,-74.38777616,39.39038467,425 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_542_1,-74.63287718,39.51191574,425 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_542_3,-74.387965,39.3929105,412 DELTA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_542_3,-74.58917181,39.53971855,412 DELTA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_542_4,-74.6093131,39.31757472,410 DELTA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_542_4,-74.37045511,39.4217893,410 DELTA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_542_5,-74.6111145,39.32355233,408 DELTA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_542_5,-74.37062305,39.42170701,408 DELTA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_542_6,-74.614873,39.3238155,406 DELTA AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_542_6,-74.37079143,39.42164342,406 DELTA AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_542_8,-74.52560632,39.42217262,400 DELTA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_542_8,-74.76731929,39.66546129,400 DELTA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_543_1,-74.79451597,39.52794661,808 WABASH AVE,ATLANTIC CITY CITY,17,1994,1,RES1,3001 -0102_543_1,-74.55961664,39.41512333,808 WABASH AVE,ATLANTIC CITY CITY,17,1994,1,COM1,3004 -0102_543_10,-74.62512273,39.62108382,415 DELTA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_543_10,-74.6101865,39.3911035,415 DELTA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_543_2,-74.8120936,39.52221482,806 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_543_2,-74.56988302,39.41399069,806 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_543_3,-74.822667,39.568005,420 N DELAWARE AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_543_3,-74.57449733,39.42645783,420 N DELAWARE AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_543_6,-74.36204079,39.41817938,400 N DELAWARE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_543_6,-74.45027602,39.35713315,400 N DELAWARE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_543_7,-74.371592,39.4039225,813 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_543_7,-74.45053784,39.35752647,813 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_543_9,-74.3620905,39.415708,413 DELTA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_543_9,-74.45029291,39.35692665,413 DELTA AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_544_13,-74.3822045,39.400224,809 WABASH AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_544_13,-74.63897409,39.52823034,809 WABASH AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_544_2,-74.36987633,39.41479809,455 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_544_2,-74.44826183,39.35366012,455 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_544_3,-74.36942858,39.41499619,449 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_544_3,-74.44784618,39.35323741,449 N MARYLAND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_544_5,-74.365272,39.413284,441 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_544_5,-74.45227034,39.35629467,441 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_544_8,-74.38622634,39.39032698,821 WABASH AVENUE,ATLANTIC CITY CITY,14,1900,1,COM1,3004 -0102_544_8,-74.62326736,39.51369105,821 WABASH AVENUE,ATLANTIC CITY CITY,14,1900,1,RES1,3001 -0102_544_9,-74.3917425,39.3889795,819 WABASH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_544_9,-74.63533766,39.51458868,819 WABASH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_545_1,-74.4460415,39.3813755,451 N DELAWARE AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_545_1,-74.45234799,39.35061068,451 N DELAWARE AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_545_11,-74.45410424,39.3738479,709 WABASH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_545_11,-74.44829103,39.35138002,709 WABASH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_545_12,-74.45630283,39.37273984,711 WABASH AVE,ATLANTIC CITY CITY,45,1910,2,COM1,3004 -0102_545_12,-74.45196009,39.35085074,711 WABASH AVE,ATLANTIC CITY CITY,45,1910,2,IND2,3002 -0102_545_13,-74.4458112,39.37304054,713 WABASH AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_545_13,-74.45033872,39.35052155,713 WABASH AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_545_14,-74.45274147,39.37345419,717 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_545_14,-74.44889822,39.35129077,717 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_545_16,-74.379572,39.4185775,735 WABASH AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_545_16,-74.44954093,39.35300966,735 WABASH AVE,ATLANTIC CITY CITY,17,1955,1,RES3A,3001 -0102_545_17,-74.3751431,39.41361721,743 WABASH AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_545_17,-74.4480424,39.35362945,743 WABASH AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_545_18,-74.37450418,39.41249904,447 N DELAWARE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_545_18,-74.44947294,39.3532485,447 N DELAWARE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_545_2,-74.52124153,39.39072889,730 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_545_2,-74.45167792,39.35014213,730 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_545_3,-74.51687318,39.39650659,720 CASPIAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_545_3,-74.50796243,39.3289252,720 CASPIAN AVE,ATLANTIC CITY CITY,17,1959,1,RES3A,3001 -0102_545_4,-74.515215,39.395202,712 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_545_4,-74.50817054,39.32910591,712 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_545_5,-74.50878931,39.40821467,450 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_545_5,-74.51341337,39.32874448,450 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_545_6,-74.53010889,39.39904168,448 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_545_6,-74.50588314,39.32582517,448 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_545_7,-74.52387079,39.39272701,446 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_545_7,-74.45156076,39.34997386,446 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_545_8,-74.52816768,39.38174111,444 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_545_8,-74.45139409,39.35010635,444 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_545_9,-74.52772233,39.38494176,442 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_545_9,-74.45278829,39.35088395,442 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_546_1,-74.37702129,39.4191756,419 N DELAWARE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_546_1,-74.44849728,39.35415768,419 N DELAWARE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_546_10,-74.5231475,39.419049,711 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_546_10,-74.93054909,39.53350619,711 ADRIATIC AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_546_12,-74.51645926,39.410927,721 ADRIATIC AVE,ATLANTIC CITY CITY,17,1933,1,RES1,3001 -0102_546_12,-74.94596967,39.52691899,721 ADRIATIC AVE,ATLANTIC CITY CITY,17,1933,1,RES1,3001 -0102_546_13,-74.514772,39.4109305,723 ADRIATIC AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_546_13,-74.9379955,39.528916,723 ADRIATIC AVE,ATLANTIC CITY CITY,17,2002,1,GOV1,3004 -0102_546_14,-74.51690476,39.41136835,725 ADRIATIC AVE,ATLANTIC CITY CITY,17,2002,1,GOV1,3004 -0102_546_14,-74.94707,39.529149,725 ADRIATIC AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_546_15,-74.51827396,39.41702569,401 N DELAWARE AVE,ATLANTIC CITY CITY,45,1929,2,RES3A,3001 -0102_546_15,-74.9649485,39.5188125,401 N DELAWARE AVE,ATLANTIC CITY CITY,45,1929,2,RES1,3001 -0102_546_17,-74.87135502,39.53935738,403 N DELAWARE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_546_17,-74.57178492,39.41963257,403 N DELAWARE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_546_2,-74.4951766,39.4262278,718 WABASH AVE,ATLANTIC CITY CITY,15,2009,1,COM1,3004 -0102_546_2,-74.95979682,39.52897664,718 WABASH AVE,ATLANTIC CITY CITY,15,2009,1,RES1,3001 -0102_546_3,-74.49184394,39.42214325,716 WABASH AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_546_3,-74.8835935,39.564308,716 WABASH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_546_4,-74.49634757,39.43290082,714 WABASH AVE,ATLANTIC CITY CITY,45,1933,2,RES1,3001 -0102_546_4,-74.94660525,39.53860314,714 WABASH AVE,ATLANTIC CITY CITY,45,1933,2,RES1,3001 -0102_546_5,-74.49568156,39.43264327,712 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_546_5,-74.9746405,39.507809,712 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_546_6,-74.4942694,39.43124768,706 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_546_6,-74.88724344,39.59719416,706 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_546_7,-74.37480149,39.41296321,700 WABASH AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_546_7,-74.44925588,39.35325746,700 WABASH AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_546_8,-74.49782738,39.42331866,701 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_546_8,-74.88997136,39.55748194,701 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_546_9,-74.52365046,39.41736917,709 ADRIATIC AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_546_9,-74.94537895,39.53255613,709 ADRIATIC AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_547_1.03,-74.52676218,39.40868011,632 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_547_1.03,-74.51855724,39.3188559,632 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_547_1.04,-74.5187348,39.41099162,630 CASPIAN AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_547_1.04,-74.51431288,39.31919894,630 CASPIAN AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_547_1.05,-74.4910365,39.4268555,628 CASPIAN AVE,ATLANTIC CITY CITY,17,2006,1,GOV1,3004 -0102_547_1.05,-74.51438203,39.31916168,628 CASPIAN AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_547_10,-74.4879259,39.43161824,446 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_547_10,-74.51585845,39.32060954,446 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_547_11,-74.48799673,39.42185925,440 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_11,-74.51444784,39.319121,440 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_13,-74.5118582,39.4091216,436 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_547_13,-74.51584722,39.32213951,436 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_547_14,-74.52175473,39.40705717,615 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_14,-74.51843871,39.31871738,615 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_15,-74.5162405,39.4045515,617 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_15,-74.51727875,39.32138262,617 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_16,-74.506069,39.4052605,619 WABASH AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_547_16,-74.51603206,39.32604838,619 WABASH AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_547_17,-74.52860127,39.39443233,635 WABASH AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_547_17,-74.50514887,39.3239813,635 WABASH AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_547_18,-74.52258713,39.38813753,437 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_547_18,-74.45737871,39.34696481,437 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_547_19,-74.5178215,39.40063766,439 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3002 -0102_547_19,-74.508051,39.32900903,439 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_547_2,-74.50485124,39.42535715,624 CASPIAN AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_547_2,-74.51427332,39.3189417,624 CASPIAN AVE,ATLANTIC CITY CITY,45,1930,3,RES3A,3001 -0102_547_20,-74.52180075,39.39660348,441 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_547_20,-74.50692114,39.32523315,441 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_547_21,-74.52332032,39.39447592,443 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1930,2,RES3A,3001 -0102_547_21,-74.50521984,39.3241658,443 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_547_3,-74.4901545,39.434228,622 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_3,-74.51407448,39.3190611,622 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_4,-74.50262105,39.4357685,620 CASPIAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_547_4,-74.51942246,39.32423226,620 CASPIAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_547_5,-74.511287,39.4286365,618 CASPIAN AVE,ATLANTIC CITY CITY,17,1930,1,RES3A,3001 -0102_547_5,-74.51828813,39.32397196,618 CASPIAN AVE,ATLANTIC CITY CITY,17,1930,1,GOV1,3004 -0102_547_6,-74.4801565,39.440211,614 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_547_6,-74.52694114,39.31100193,614 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_547_7,-74.5121335,39.4430085,460 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_547_7,-74.53606374,39.3058858,460 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_8,-74.48589297,39.46502256,450 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1900,1,COM3,3004 -0102_547_8,-74.52914083,39.30870935,450 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_547_9,-74.479891,39.4426095,448 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_547_9,-74.52395618,39.31289676,448 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_548_1,-74.37099333,39.41151837,630 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_1,-74.44959829,39.35315809,630 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_10,-74.51221544,39.40208918,424 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_548_10,-74.5061802,39.32840255,424 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,GOV1,3004 -0102_548_11,-74.52601904,39.38428181,414 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_548_11,-74.45292418,39.35035052,414 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_548_12,-74.4485825,39.37267,408 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES3B,3001 -0102_548_12,-74.44942364,39.35043394,408 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_14,-74.37491531,39.41997111,406 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_548_14,-74.44743563,39.35196548,406 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_548_15,-74.373672,39.4122055,402 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_548_15,-74.44940277,39.35309517,402 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1925,1,RES3B,3001 -0102_548_16,-74.3821685,39.414865,601 ADRIATIC AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_548_16,-74.44694523,39.3517898,601 ADRIATIC AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_548_17,-74.49968077,39.42898493,603 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_17,-74.783133,39.6421795,603 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_18,-74.50410415,39.42901205,605 ADRIATIC AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_548_18,-74.68587383,39.65282952,605 ADRIATIC AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_548_19,-74.50799296,39.42920685,607 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_19,-74.68272483,39.65034384,607 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_2,-74.38027256,39.41441265,628 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_548_2,-74.44672351,39.35135533,628 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_20,-74.50538779,39.43271236,609 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3004 -0102_548_20,-74.88367671,39.59511198,609 ADRIATIC AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_548_21,-74.48820071,39.43587946,611 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_548_21,-74.88626892,39.56341819,611 ADRIATIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_548_3,-74.368162,39.421516,626 WABASH AVE,ATLANTIC CITY CITY,17,1930,1,RES3A,3001 -0102_548_3,-74.44751789,39.3515621,626 WABASH AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_548_4,-74.44840473,39.37344588,622 WABASH AVE,ATLANTIC CITY CITY,17,1925,1,GOV1,3004 -0102_548_4,-74.45077386,39.3503536,622 WABASH AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_548_6,-74.52721165,39.38513677,620 WABASH AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_548_6,-74.45260268,39.35095912,620 WABASH AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_548_7,-74.525375,39.3827205,618 WABASH AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_548_7,-74.45310586,39.35059953,618 WABASH AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_548_8,-74.5218625,39.3927205,604 WABASH AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_548_8,-74.45161654,39.35005822,604 WABASH AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3004 -0102_548_9,-74.5311665,39.3992855,426 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_548_9,-74.50578537,39.32587048,426 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_549_1,-74.5167005,39.3967675,461 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_1,-74.89568384,39.48314537,461 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_10,-74.499809,39.4246595,519 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_10,-74.51420554,39.31898404,519 WABASH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_11,-74.4960825,39.430353,437 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_549_11,-74.51928721,39.32433328,437 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_549_13,-74.48837982,39.43959735,441 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_13,-74.53129886,39.30883588,441 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_14,-74.5125595,39.436471,443 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_14,-74.45396291,39.34852079,443 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_15,-74.5207705,39.3894015,457 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_549_15,-74.81728493,39.62446332,457 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_549_2,-74.5260935,39.398222,502 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_549_2,-74.905025,39.4863295,502 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_549_3,-74.48358646,39.43271218,500 CASPIAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_549_3,-74.88378131,39.50480695,500 CASPIAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_549_4,-74.5002875,39.4132535,500 CASPIAN AVE #A,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_4,-74.948504,39.514365,500 CASPIAN AVE #A,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_549_5,-74.52264904,39.39821133,442 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_549_5,-74.92302971,39.48414912,442 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_549_8,-74.47480179,39.45790095,420 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_549_8,-74.5291012,39.3092733,420 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3002 -0102_55_1,-74.88712866,39.47181642,1325 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_55_1,-74.62723712,39.43303851,1325 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_550_1,-74.5083725,39.405336,427 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_550_1,-74.51354017,39.32881892,427 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_550_10,-74.52559453,39.40070264,509 ADRIATIC AVE,ATLANTIC CITY CITY,45,1923,2,RES1,3001 -0102_550_10,-74.50911205,39.32855452,509 ADRIATIC AVE,ATLANTIC CITY CITY,45,1923,2,RES1,3001 -0102_550_11,-74.45395082,39.37222924,401 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_550_11,-74.45216209,39.35144262,401 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_550_13,-74.5174415,39.386746,403 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_550_13,-74.45150931,39.34989407,403 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3002 -0102_550_14,-74.51858978,39.40145638,411 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_550_14,-74.50631435,39.32750964,411 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_550_15,-74.5248005,39.3983535,415 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_550_15,-74.50649519,39.32551763,415 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_550_17,-74.52355,39.3957595,421 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_550_17,-74.50665056,39.32494119,421 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_550_18,-74.52458567,39.39386024,423 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_550_18,-74.50582801,39.32371711,423 N CONNECTICUT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3004 -0102_550_2,-74.5041965,39.415543,427 N CONNECTICUT AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3002 -0102_550_2,-74.5150764,39.32199377,427 N CONNECTICUT AVE RR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_550_3,-74.5229845,39.4023785,512 WABASH AVENUE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_550_3,-74.51824497,39.31851842,512 WABASH AVENUE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_550_4,-74.5040082,39.42729203,500 WABASH AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_550_4,-74.51451602,39.31908199,500 WABASH AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_550_5,-74.50142,39.414541,408 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_550_5,-74.51588324,39.32252416,408 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_550_6,-74.5250295,39.3947425,406 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_550_6,-74.50652665,39.32483473,406 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_550_8,-74.5016438,39.4278113,400 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_550_8,-74.79429135,39.6422572,400 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_550_9,-74.52607732,39.39780538,507 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_550_9,-74.50664043,39.32554524,507 ADRIATIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_551_1,-74.47084557,39.49364968,435 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_1,-74.44599578,39.3586853,435 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_4,-74.51762169,39.40350453,425 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_4,-74.95936824,39.51909804,425 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_5,-74.50522853,39.40720033,423 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_5,-74.897177,39.512447,423 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_7,-74.52354458,39.42712092,415 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_7,-74.78864071,39.63969286,415 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_551_8,-74.518289,39.424883,409 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_8,-74.7917535,39.6408465,409 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_9,-74.51834785,39.42528285,405 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_551_9,-74.784402,39.641014,405 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_552_1.02,-74.50656044,39.4054944,560 N DELAWARE AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_552_1.02,-74.92408224,39.51001714,560 N DELAWARE AVE,ATLANTIC CITY CITY,17,1999,1,COM4,3004 -0102_552_12,-74.52038183,39.40416422,528 N DELAWARE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_552_12,-74.51831852,39.31863023,528 N DELAWARE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_552_2,-74.495238,39.4474969,548 N DELAWARE AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_552_2,-74.53190748,39.30840435,548 N DELAWARE AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_552_25,-74.5195715,39.3841045,500 N DELAWARE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_552_25,-74.45247975,39.35056451,500 N DELAWARE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_552_5,-74.48715101,39.43980383,542 N DELAWARE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_552_5,-74.52755471,39.31092659,542 N DELAWARE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_552_6,-74.47143861,39.44335476,540 N DELAWARE AVE,ATLANTIC CITY CITY,18,2007,1,GOV1,3004 -0102_552_6,-74.51840884,39.32381566,540 N DELAWARE AVE,ATLANTIC CITY CITY,18,2007,1,RES1,3001 -0102_553_1,-74.498808,39.41146,559 N DELAWARE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_553_1,-74.96511075,39.51219659,559 N DELAWARE AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_553_10,-74.4751719,39.48385862,714 MAGELLAN AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_553_10,-74.44655427,39.35899016,714 MAGELLAN AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_553_11,-74.447239,39.488785,712 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_553_11,-74.44645582,39.35883996,712 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_553_12,-74.47163478,39.48791143,560 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_553_12,-74.44627859,39.35917282,560 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_553_13,-74.44826416,39.49404411,528 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_553_13,-74.44649588,39.35889755,528 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_553_15,-74.51070387,39.45538989,540 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_553_15,-74.44046523,39.36017175,540 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_553_17,-74.4954895,39.453188,711 SEWELL AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_553_17,-74.45334978,39.34908782,711 SEWELL AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_553_18,-74.5107215,39.40359584,719 SEWELL AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_553_18,-74.96124794,39.50458763,719 SEWELL AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_553_19,-74.5016885,39.418691,727 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_553_19,-74.927021,39.5186645,727 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_553_2,-74.52500514,39.44710288,734 MAGELLAN AVE,ATLANTIC CITY CITY,27,1925,2,GOV1,3004 -0102_553_2,-74.45460412,39.34893814,734 MAGELLAN AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_553_20,-74.525778,39.3938375,735 SEWELL AVE,ATLANTIC CITY CITY,16,2011,1,RES1,3001 -0102_553_20,-74.8945855,39.500175,735 SEWELL AVE,ATLANTIC CITY CITY,16,2011,1,GOV1,3004 -0102_553_21,-74.52436283,39.39283471,745 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_553_21,-74.8254695,39.6271325,745 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_553_22,-74.51862749,39.39708317,545 N DELAWARE AVE,ATLANTIC CITY CITY,16,1958,1,GOV1,3004 -0102_553_22,-74.89000267,39.48196746,545 N DELAWARE AVE,ATLANTIC CITY CITY,16,1958,1,RES1,3001 -0102_553_23,-74.5015985,39.416613,553 N DELAWARE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_553_23,-74.9296265,39.516365,553 N DELAWARE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_553_3,-74.49128631,39.46208484,732 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_553_3,-74.45470421,39.35053154,732 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_553_4,-74.51401527,39.45572203,728 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_553_4,-74.44014512,39.35953025,728 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_553_5,-74.52387376,39.45542249,726 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_553_5,-74.44715135,39.35823149,726 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_553_6,-74.46200797,39.47225085,724 MAGELLAN AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_553_6,-74.44668351,39.35857457,724 MAGELLAN AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_553_7,-74.46092,39.4720715,722 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_553_7,-74.44687756,39.35884486,722 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_1,-74.4923755,39.435095,740 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_554_1,-74.51413958,39.31902106,740 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_554_10,-74.51191295,39.43802794,712 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_10,-74.45713604,39.34729406,712 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_11,-74.52754417,39.392555,710 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_11,-74.81715051,39.62572363,710 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,IND2,3004 -0102_554_12,-74.512083,39.3983145,512 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_554_12,-74.821164,39.637368,512 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1925,2,RES3A,3001 -0102_554_14,-74.513296,39.4392505,510 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_554_14,-74.46402531,39.34382205,510 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_554_15,-74.49873848,39.44921867,508 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3002 -0102_554_15,-74.53137278,39.30757908,508 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1925,2,COM3,3004 -0102_554_16,-74.46255813,39.4687659,506 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_554_16,-74.52858976,39.30913398,506 N NEW JERSEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_554_17,-74.50364454,39.42914134,504 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_554_17,-74.51879582,39.32402999,504 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_554_18,-74.4916265,39.4320395,500 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_554_18,-74.51742129,39.31941747,500 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_554_2,-74.5255405,39.429675,734 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_2,-74.51815736,39.32384466,734 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_20,-74.50344985,39.43023759,701 CASPIAN AVE,ATLANTIC CITY CITY,17,1955,1,RES3A,3001 -0102_554_20,-74.51875422,39.32440544,701 CASPIAN AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_554_22,-74.50125039,39.41838368,727 CASPIAN AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_554_22,-74.51086411,39.32071052,727 CASPIAN AVE,ATLANTIC CITY CITY,16,1955,1,AGR1,3001 -0102_554_24,-74.521182,39.4086655,733 CASPIAN AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_554_24,-74.51866997,39.31894867,733 CASPIAN AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_554_26,-74.50509461,39.40875432,507 N DELAWARE AVE,ATLANTIC CITY CITY,45,1955,2,GOV1,3004 -0102_554_26,-74.50725687,39.32328997,507 N DELAWARE AVE,ATLANTIC CITY CITY,45,1955,2,RES1,3001 -0102_554_3,-74.485145,39.4422265,732 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_3,-74.52604451,39.3133469,732 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_554_4,-74.45537766,39.46953499,730 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_554_4,-74.52870625,39.30904487,730 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_5,-74.4864255,39.458906,728 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_554_5,-74.52960404,39.30841264,728 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_6,-74.48791731,39.43933795,722 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_6,-74.53131256,39.30868135,722 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_7,-74.49448234,39.4521301,720 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_7,-74.53117995,39.30857864,720 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_8,-74.50728251,39.44559723,716 SEWELL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_554_8,-74.53591785,39.30599611,716 SEWELL AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_554_9,-74.50948448,39.43962021,714 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_554_9,-74.53770664,39.30399279,714 SEWELL AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_555_1,-74.5057865,39.405688,644 SEWELL AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_555_1,-74.92146808,39.51217571,644 SEWELL AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_555_10,-74.500083,39.418787,502 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_555_10,-74.9175915,39.52304233,502 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_555_11,-74.5167825,39.3942755,500 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1930,3,RES1,3001 -0102_555_11,-74.90309226,39.48065145,500 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1930,3,RES3A,3001 -0102_555_12,-74.50830278,39.40566895,615 CASPIAN AVE,ATLANTIC CITY CITY,16,1908,1,RES1,3001 -0102_555_12,-74.91122218,39.51132652,615 CASPIAN AVE,ATLANTIC CITY CITY,16,1908,1,RES1,3001 -0102_555_13,-74.52168967,39.39680001,617 CASPIAN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_555_13,-74.9010855,39.5034615,617 CASPIAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_555_14,-74.516455,39.3966865,619 CASPIAN AVE,ATLANTIC CITY CITY,17,1929,1,COM1,3004 -0102_555_14,-74.90162437,39.48074127,619 CASPIAN AVE,ATLANTIC CITY CITY,17,1929,1,RES1,3001 -0102_555_15,-74.52699879,39.38599876,623 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_555_15,-74.83586067,39.62598401,623 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_555_16,-74.50640612,39.44759564,645 CASPIAN AVE,ATLANTIC CITY CITY,16,1952,1,GOV1,3004 -0102_555_16,-74.53282704,39.30693745,645 CASPIAN AVE,ATLANTIC CITY CITY,16,1952,1,RES1,3001 -0102_555_17,-74.5143855,39.4018485,515 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_555_17,-74.82908608,39.62446762,515 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_555_2,-74.50115638,39.4142032,634 SEWELL AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_555_2,-74.9472765,39.5190865,634 SEWELL AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3002 -0102_555_3,-74.48838157,39.45823898,626 SEWELL AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_555_3,-74.45416552,39.34866539,626 SEWELL AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_555_4,-74.50792755,39.45669366,618 SEWELL AVE,ATLANTIC CITY CITY,17,1930,1,GOV1,3004 -0102_555_4,-74.45411366,39.34944654,618 SEWELL AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_555_5,-74.52858371,39.45939306,614 SEWELL AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_555_5,-74.4470428,39.35827373,614 SEWELL AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_555_6,-74.485592,39.4713995,518 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_555_6,-74.44660408,39.35906841,518 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_555_7,-74.51748766,39.45835761,516 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_555_7,-74.43944109,39.35848625,516 N CONNECTICUT AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_555_8,-74.506329,39.4590395,514 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_555_8,-74.45362874,39.34950362,514 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_555_9,-74.500879,39.412622,512 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_555_9,-74.95557205,39.51230476,512 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_556_1,-74.577652,39.3502995,626 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_1,-74.3866263,39.39281876,626 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_12,-74.53035867,39.53088018,550 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_12,-74.44572499,39.35950103,550 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_13,-74.519495,39.5332385,544 N CONNECTICUT AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_556_13,-74.44566666,39.35942011,544 N CONNECTICUT AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_556_19,-74.49741,39.4985695,607 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_556_19,-74.44570658,39.35898994,607 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_556_20,-74.50466846,39.4942053,609 SEWELL AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_556_20,-74.44605138,39.35946681,609 SEWELL AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_556_21,-74.50790366,39.47328524,611 SEWELL AVE,ATLANTIC CITY CITY,17,1909,1,RES1,3001 -0102_556_21,-74.44644672,39.3594046,611 SEWELL AVE,ATLANTIC CITY CITY,17,1909,1,RES1,3001 -0102_556_22,-74.48703073,39.4959863,613 SEWELL AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_556_22,-74.44634838,39.35924086,613 SEWELL AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_556_23,-74.46811253,39.49351523,615 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_23,-74.4460611,39.35884656,615 SEWELL AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_556_24,-74.46097276,39.49566998,617 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_556_24,-74.44620274,39.35861648,617 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_556_25,-74.45750791,39.49227124,621 SEWELL AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_556_25,-74.4463474,39.35872169,621 SEWELL AVE,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_556_26,-74.48729639,39.47812026,623 SEWELL AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_556_26,-74.44670933,39.3592157,623 SEWELL AVE,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_556_27,-74.44775535,39.48532953,627 SEWELL AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_556_27,-74.44688878,39.35890111,627 SEWELL AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_556_28,-74.45507376,39.48913305,527 N NEW JERSEY AVE,ATLANTIC CITY CITY,18,2012,1,RES1,3001 -0102_556_28,-74.44636491,39.35862216,527 N NEW JERSEY AVE,ATLANTIC CITY CITY,18,2012,1,GOV1,3004 -0102_556_29,-74.5025825,39.4728035,531 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_556_29,-74.4465043,39.35948406,531 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_556_3,-74.5723709,39.3668175,618 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_3,-74.38452385,39.39574998,618 N CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_30,-74.50028379,39.48812393,535 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1909,1,RES1,3001 -0102_556_30,-74.44589047,39.35922331,535 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1909,1,RES3A,3001 -0102_556_32,-74.53077748,39.51181167,537 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_556_32,-74.44556214,39.3592531,537 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_556_33,-74.469193,39.541173,539 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_33,-74.44577738,39.35958503,539 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_556_34,-74.53714469,39.30430475,541 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_556_34,-74.44525319,39.35943237,541 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_556_35,-74.594129,39.316586,543 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1916,1,RES1,3001 -0102_556_35,-74.44541486,39.35968185,543 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1916,1,RES1,3001 -0102_556_36,-74.55328,39.3571755,547 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,2015,1,RES1,3001 -0102_556_36,-74.36187775,39.41008545,547 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,2015,1,RES1,3001 -0102_556_37,-74.56962131,39.35634947,549 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_556_37,-74.3553194,39.41527417,549 N NEW JERSEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_556_38,-74.57198155,39.35591716,551 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_556_38,-74.35520588,39.41557643,551 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_556_5,-74.56234016,39.35988525,606 N CONNECTICUT AVE,ATLANTIC CITY CITY,20,2008,1,RES1,3001 -0102_556_5,-74.36543807,39.40701389,606 N CONNECTICUT AVE,ATLANTIC CITY CITY,20,2008,1,RES1,3001 -0102_557_1.01,-74.46968091,39.44311822,610 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_557_1.01,-74.78069669,39.66763036,610 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_557_1.02,-74.52616017,39.42878328,608 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2000,1,COM8,3004 -0102_557_1.02,-74.77397507,39.66133515,608 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_557_1.03,-74.5902835,39.3369725,604 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2000,1,GOV1,3004 -0102_557_1.03,-74.38506838,39.39284892,604 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_557_1.04,-74.56541383,39.36112149,605 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_557_1.04,-74.38437639,39.39331366,605 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_557_1.05,-74.58213251,39.33752714,609 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,2000,1,GOV1,3004 -0102_557_1.05,-74.38486352,39.3934358,609 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,2000,1,GOV1,3004 -0102_557_1.06,-74.607275,39.3076175,611 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_557_1.06,-74.44513158,39.35969493,611 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_558_1,-74.56779699,39.3552735,518 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_558_1,-74.35506974,39.41547249,518 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_558_10,-74.4968903,39.5257479,537 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_558_10,-74.44560071,39.35934162,537 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_558_12,-74.5801495,39.3122185,547 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_558_12,-74.44536353,39.35960392,547 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_13,-74.59632666,39.31089501,549 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_13,-74.44507581,39.35961433,549 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_14,-74.55536176,39.35546359,551 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_558_14,-74.36169257,39.40993285,551 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_15,-74.57307702,39.35743622,553 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_15,-74.35543841,39.41537362,553 N CONNECTICUT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_2,-74.55664917,39.36771103,514 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_2,-74.36594002,39.42304127,514 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_3,-74.5535696,39.36248658,512 MAGELLAN AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_558_3,-74.36594383,39.41130834,512 MAGELLAN AVE,ATLANTIC CITY CITY,45,1930,2,GOV1,3004 -0102_558_4,-74.57223654,39.36717109,740 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_558_4,-74.36639449,39.40759728,740 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_558_7,-74.52575712,39.54237385,538 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_7,-74.44588332,39.35973631,538 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_558_8,-74.5944455,39.3138,513 SEWELL AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_558_8,-74.44567941,39.36007854,513 SEWELL AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_558_9,-74.53407597,39.31293015,515 SEWELL AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_558_9,-74.44527734,39.35951892,515 SEWELL AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_559_1,-74.5081845,39.480668,521 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_559_1,-74.44616061,39.35962729,521 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_559_10,-74.49576333,39.47032258,510 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_559_10,-74.44638638,39.35932486,510 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1935,2,RES1,3001 -0102_559_11,-74.4670275,39.4922765,508 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1900,1,RES1,3001 -0102_559_11,-74.44622242,39.3590888,508 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,27,1900,1,GOV1,3004 -0102_559_12,-74.45790896,39.488666,506 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_559_12,-74.44631204,39.35852592,506 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_559_16,-74.48690488,39.47671122,509 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_559_16,-74.44665721,39.35914099,509 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_559_17,-74.45218446,39.47942967,511 CASPIAN AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_559_17,-74.44678992,39.35937492,511 CASPIAN AVE,ATLANTIC CITY CITY,45,1925,2,GOV1,3004 -0102_559_18,-74.52607966,39.44708104,501 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_559_18,-74.45435773,39.34920592,501 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_559_19,-74.50823545,39.45647959,503 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_559_19,-74.45373961,39.34883877,503 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_559_2,-74.5083705,39.4941545,508 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_559_2,-74.44599705,39.35938585,508 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_559_20,-74.513079,39.46924108,505 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_559_20,-74.44668905,39.35842058,505 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_559_21,-74.45790568,39.48070629,507 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_559_21,-74.44675871,39.35929323,507 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_559_22,-74.4589915,39.4950815,509 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,GOV1,3004 -0102_559_22,-74.4464115,39.35878025,509 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_559_23,-74.4714355,39.4932745,519 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_559_23,-74.44612896,39.35892243,519 N CONNECTICUT AVE,ATLANTIC CITY CITY,17,1925,1,GOV1,3004 -0102_559_3,-74.49686266,39.49994655,506 SEWELL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_559_3,-74.44583446,39.35914469,506 SEWELL AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_559_4,-74.50918052,39.51202404,520 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_559_4,-74.44551719,39.35917093,520 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_559_5,-74.50080972,39.50077462,518 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_559_5,-74.44542564,39.3589655,518 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_559_6,-74.50331839,39.50279714,516 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_559_6,-74.44562627,39.35883637,516 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_559_7,-74.50340126,39.48920554,514 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_559_7,-74.44594569,39.35930437,514 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_559_9,-74.50670159,39.48054907,512 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_559_9,-74.44610556,39.35954582,512 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_56_1,-74.51790699,39.32356533,1316 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_1,-74.63125095,39.53074779,1316 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_12,-74.56973405,39.34860625,135 S OCEAN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_56_12,-74.45999721,39.35385513,135 S OCEAN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_56_13,-74.57341611,39.33519582,135 S OCEAN AVE RR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_56_13,-74.459842,39.3555895,135 S OCEAN AVE RR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_56_16,-74.5923015,39.329881,141 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_16,-74.48156098,39.34198562,141 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_17,-74.60310674,39.31376564,143 S OCEAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_56_17,-74.51583745,39.32757733,143 S OCEAN AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_56_18,-74.597744,39.3157075,151 S OCEAN AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_56_18,-74.51014614,39.32868444,151 S OCEAN AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_56_19,-74.5800755,39.312701,145 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_19,-74.5114325,39.331949,145 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_28,-74.7342195,39.448711,175 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_28,-74.62560228,39.3589739,175 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_56_3,-74.5790685,39.3446935,107 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_3,-74.38703467,39.39093658,107 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_34,-74.6144025,39.4311315,1301 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_34,-74.47216256,39.4823849,1301 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_38,-74.56006085,39.35789813,124 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_38,-74.4905355,39.3375965,124 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_56_55,-74.57694867,39.33457566,108 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_55,-74.384461,39.3919925,108 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_56,-74.6335175,39.422908,108 S SOUTH CAROLINA RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_56_56,-74.53423319,39.31411846,108 S SOUTH CAROLINA RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_58,-74.51867664,39.32278449,104 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_58,-74.645388,39.528625,104 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_59,-74.51414918,39.32165267,102 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_56_59,-74.649519,39.5226505,102 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_60,-74.51749067,39.32173746,1308 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_60,-74.6511447,39.52468119,1308 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_61,-74.5174995,39.3215745,1300 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_61,-74.652648,39.5253135,1300 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_7,-74.644434,39.3917105,127 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_7,-74.48541646,39.52353741,127 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_8,-74.5705865,39.364042,131 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_8,-74.50544958,39.33694266,131 S OCEAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_56_9,-74.565678,39.3554715,131 S OCEAN AVE RR,ATLANTIC CITY CITY,45,1935,2,RES1,3001 -0102_56_9,-74.492496,39.335258,131 S OCEAN AVE RR,ATLANTIC CITY CITY,45,1935,2,RES1,3001 -0102_560_1,-74.7352965,39.4644605,827 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_560_1,-74.6154222,39.38224226,827 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_560_11,-74.4642365,39.535809,525 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_560_11,-74.44546821,39.35908806,525 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_560_12,-74.496787,39.498957,521 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_560_12,-74.44578056,39.35906201,521 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_560_2.01,-74.49272481,39.44951558,821 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_560_2.01,-74.8146571,39.64766828,821 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_560_2.02,-74.4642205,39.455569,819 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1918,1,RES1,3001 -0102_560_2.02,-74.805125,39.6449755,819 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1918,1,RES1,3001 -0102_560_2.03,-74.48642647,39.44381776,801 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_560_2.03,-74.79446727,39.6649643,801 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_560_2.04,-74.4360865,39.490756,743 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_560_2.04,-74.7764532,39.65702784,743 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_560_2.05,-74.58942161,39.33528632,741 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_560_2.05,-74.38637597,39.39270692,741 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_560_2.06,-74.57535051,39.34199033,739 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_560_2.06,-74.38404077,39.3931136,739 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2002,1,GOV1,3004 -0102_560_2.07,-74.5713724,39.36259938,555 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_560_2.07,-74.38298515,39.39495188,555 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_560_2.08,-74.56535807,39.36789323,541 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_560_2.08,-74.36603705,39.40779504,541 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_560_2.09,-74.5709665,39.352415,539 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_560_2.09,-74.35494593,39.41537267,539 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2003,1,GOV1,3004 -0102_560_2.10,-74.565338,39.358422,537 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2004,1,GOV1,3004 -0102_560_2.10,-74.355539,39.41545907,537 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2004,1,GOV1,3004 -0102_560_7,-74.59280352,39.31585475,535 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_560_7,-74.44547833,39.35976377,535 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_560_9,-74.4959925,39.5385865,531 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,18,2009,1,RES1,3001 -0102_560_9,-74.44581638,39.35966804,531 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,18,2009,1,RES1,3001 -0102_563_1,-74.59473687,39.31261886,600 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_563_1,-74.4450291,39.35952605,600 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_563_2,-74.56501449,39.35866538,610 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,COM8,3004 -0102_563_2,-74.35719331,39.41322583,610 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_564_1,-74.47458533,39.44365728,701 N DELAWARE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_564_1,-74.783555,39.672975,701 N DELAWARE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_564_2,-74.57008119,39.36134014,614 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_564_2,-74.38457361,39.39349396,614 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_565_5,-74.436669,39.4896015,628 CARSON AVE,ATLANTIC CITY CITY,45,1981,2,RES1,3001 -0102_565_5,-74.78648251,39.65812583,628 CARSON AVE,ATLANTIC CITY CITY,45,1981,2,RES1,3001 -0102_565_6.01,-74.576172,39.3501865,630 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_565_6.01,-74.38682385,39.39090846,630 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_565_6.02,-74.58038777,39.33974021,632 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_565_6.02,-74.38472337,39.39328419,632 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_565_7,-74.56967025,39.36698675,557 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_565_7,-74.37390109,39.4035943,557 N NEW JERSEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_565_8,-74.5625465,39.364991,555 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_565_8,-74.36512633,39.42322634,555 N NEW JERSEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_566_10,-74.59914333,39.31715549,477 CARSON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_566_10,-74.44518969,39.35977541,477 CARSON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_566_12,-74.60682302,39.31642896,431 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_12,-74.44524215,39.35986037,431 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_13,-74.60256148,39.31535618,427 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_13,-74.4454761,39.36018807,427 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_14,-74.6036771,39.31437335,425 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_14,-74.44475383,39.3597183,425 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_15,-74.60294273,39.31236453,423 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_15,-74.44481163,39.35980228,423 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_16,-74.600795,39.3104105,421 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_566_16,-74.44485759,39.35988513,421 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_17,-74.61198164,39.31696296,419 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_17,-74.44492451,39.35996352,419 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_22,-74.58673336,39.32138125,413 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_22,-74.44503019,39.36013172,413 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_29,-74.60010983,39.31535042,416 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_29,-74.44542548,39.36010086,416 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_32,-74.7099855,39.4734565,422 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_32,-74.60230294,39.38895751,422 CARSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_566_33,-74.71047814,39.47491822,430 CARSON AVE,ATLANTIC CITY CITY,45,1940,3,RES1,3001 -0102_566_33,-74.60610469,39.38994011,430 CARSON AVE,ATLANTIC CITY CITY,45,1940,3,RES1,3001 -0102_566_35.01,-74.75691021,39.44627446,839 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_566_35.01,-74.60191183,39.39114092,839 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_566_35.02,-74.75796359,39.4481602,837 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_566_35.02,-74.60527914,39.39120272,837 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_566_36,-74.75271545,39.44924534,835 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,18,2003,1,RES1,3001 -0102_566_36,-74.61499979,39.37756518,835 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,18,2003,1,RES1,3001 -0102_566_38,-74.75469858,39.45305343,829 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_566_38,-74.6173755,39.3808965,829 N MASSACHUSETTS AVE,ATLANTIC CITY CITY,17,2005,1,RES1,3001 -0102_566_4,-74.482115,39.440833,513 BARRETT AVE,ATLANTIC CITY CITY,29,2002,2,RES1,3001 -0102_566_4,-74.78307115,39.67339054,513 BARRETT AVE,ATLANTIC CITY CITY,29,2002,2,RES1,3001 -0102_566_5,-74.47529101,39.44754804,509 BARRETT AVE,ATLANTIC CITY CITY,29,2003,2,RES1,3001 -0102_566_5,-74.80145283,39.6455825,509 BARRETT AVE,ATLANTIC CITY CITY,29,2003,2,GOV1,3004 -0102_566_6,-74.48972166,39.44453957,507 BARRETT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_566_6,-74.8005109,39.64234757,507 BARRETT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_566_7,-74.4916932,39.43719613,505 BARRETT AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_566_7,-74.804313,39.6421435,505 BARRETT AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_567_3,-74.583575,39.3310495,600 HURON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_567_3,-74.44531796,39.36054751,600 HURON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_567_8,-74.58371531,39.33074746,900 BEACH THOROFARE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_567_8,-74.44229599,39.3676683,900 BEACH THOROFARE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_567_9,-74.58199977,39.33177817,AIR RIGHTS HURON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_567_9,-74.44514384,39.36029755,AIR RIGHTS HURON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_57_1,-74.51673387,39.32016495,1212 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_57_1,-74.645456,39.534261,1212 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_24,-74.518955,39.321489,1210 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_57_24,-74.64231899,39.53523267,1210 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_6,-74.56044855,39.35829903,143 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_6,-74.4900491,39.33847164,143 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_7,-74.56799351,39.34204483,145 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_7,-74.46246333,39.35954107,145 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_8,-74.60977732,39.32470587,147 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_8,-74.48655882,39.35004557,147 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_9,-74.56208832,39.36781426,149 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_57_9,-74.49031141,39.33507633,149 S SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_571_1,-74.58436022,39.32816317,ATL.BRIG.BLVD& HURON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_571_1,-74.44217544,39.36778997,ATL.BRIG.BLVD& HURON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_574_1,-74.588346,39.332498,MARINA,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_574_1,-74.45187856,39.37183451,MARINA,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_575_1,-74.587112,39.3330315,1725 HARRAH'S BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_575_1,-74.4517046,39.37178641,1725 HARRAH'S BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_575_4,-74.59342466,39.33346893,SKYBRIDGE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_575_4,-74.44213368,39.3675559,SKYBRIDGE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_576_1.03,-74.58174308,39.33122172,1 BORGATA WAY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_576_1.03,-74.44525841,39.36046102,1 BORGATA WAY,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_576_1.05,-74.52585156,39.41060434,HURON AVE REAR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_576_1.05,-74.954358,39.5184445,HURON AVE REAR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_576_1.07,-74.5249599,39.40877585,HURON AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_576_1.07,-74.94910539,39.5155838,HURON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_1,-74.51408635,39.31939563,100 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,1982,0,RES1,3001 -0102_58_1,-74.64561855,39.53404434,100 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,1982,0,RES1,3001 -0102_58_11,-74.60163252,39.32076769,157 S CHALFONTE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_11,-74.46910733,39.34572401,157 S CHALFONTE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_2,-74.596747,39.355146,110 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_2,-74.38159517,39.39639568,110 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_3,-74.61502303,39.34932325,118 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_3,-74.38101466,39.40065714,118 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_4,-74.59797846,39.33855412,124 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_4,-74.390627,39.3899975,124 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_58_6,-74.70541,39.378098,136 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_58_6,-74.49693323,39.52811402,136 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_582_1,-74.5370235,39.304504,SE ABSECON BLVD & HURON,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_582_1,-74.44519899,39.35935045,SE ABSECON BLVD & HURON,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_583_3,-74.60416486,39.31796534,1077 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_583_3,-74.41971699,39.36948375,1077 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_1,-74.57730516,39.33399533,1160 BRIGANTINE BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_1,-74.4450763,39.36021529,1160 BRIGANTINE BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_2,-74.7537125,39.454509,818 N MARYLAND AVE #K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_2,-74.60690705,39.39077607,818 N MARYLAND AVE #K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_21,-74.36797366,39.41322101,655 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_21,-74.44916808,39.35336205,655 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_3,-74.57401853,39.35909581,732 N MARYLAND AVE #A,ATLANTIC CITY CITY,,1968,1,RES1,3001 -0102_589_3,-74.35878195,39.41505807,732 N MARYLAND AVE #A,ATLANTIC CITY CITY,,1968,1,RES1,3001 -0102_589_4,-74.5920565,39.32478,1140 BRIGANTINE BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_4,-74.44497833,39.36004704,1140 BRIGANTINE BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_5,-74.7575785,39.4481905,1062 BRIGANTINE BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_5,-74.60790972,39.39321894,1062 BRIGANTINE BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_6,-74.467219,39.4926585,814 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_589_6,-74.44617111,39.35900619,814 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_59_1,-74.59049928,39.32895224,1201 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_59_1,-74.47810684,39.3411786,1201 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_59_2,-74.918703,39.480746,1243 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_59_2,-74.64285121,39.43383356,1243 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_59_3,-74.90079151,39.50275416,1241 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_59_3,-74.5647935,39.4469765,1241 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_590_1,-74.52344,39.387378,700 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_590_1,-74.50798584,39.33086276,700 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_591_1,-74.80215642,39.5456272,1000 SEWELL AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_591_1,-74.5668455,39.413253,1000 SEWELL AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_591_10,-74.69692282,39.63356509,1023 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3004 -0102_591_10,-74.5433495,39.4105335,1023 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_591_11,-74.6875765,39.630881,1029 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_591_11,-74.5344375,39.40656,1029 CASPIAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_591_12,-74.62146595,39.60671905,1037 CASPIAN AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_591_12,-74.60557395,39.39057016,1037 CASPIAN AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_591_2,-74.7080538,39.58177532,1030 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_591_2,-74.58192648,39.40248505,1030 SEWELL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_591_3,-74.3744119,39.41587512,1004 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_591_3,-74.44771222,39.35315638,1004 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_591_6,-74.3661105,39.413105,618 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_591_6,-74.44833578,39.35425116,618 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_591_7,-74.71881484,39.57413901,610 N VIRGINIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_591_7,-74.582489,39.404837,610 N VIRGINIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_591_8,-74.77879528,39.51556577,1001 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_591_8,-74.559629,39.4157935,1001 CASPIAN AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_591_9,-74.7157667,39.5711714,1017 CASPIAN AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_591_9,-74.571865,39.4141085,1017 CASPIAN AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_592_1,-74.513593,39.40527,924-941 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_592_1,-74.515997,39.32216076,924-941 SEWELL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_593_1,-74.45004346,39.37072877,601-621 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_593_1,-74.45231063,39.35134165,601-621 N VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_594_5,-74.50082242,39.42589823,555 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_594_5,-74.51433987,39.31890344,555 N MARYLAND AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_594_7,-74.51648084,39.40304241,501 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_594_7,-74.51918298,39.32151341,501 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_594_9,-74.37330153,39.41282667,461 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_594_9,-74.44902031,39.35343852,461 N MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_595_1,-74.3739322,39.40535748,501 N TENNESSEE AVE,ATLANTIC CITY CITY,,1950,1,GOV1,3004 -0102_595_1,-74.45074724,39.35780978,501 N TENNESSEE AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_596_1,-74.37281699,39.40281183,501 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,1950,1,RES3A,3001 -0102_596_1,-74.45033914,39.35720861,501 N SOUTH CAROLINA AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_597_1,-74.37083234,39.40433649,602 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_597_1,-74.45066132,39.35732405,602 N NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_6_1,-74.421992,39.3724675,100 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_6_1,-74.85982177,39.6133382,100 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_1,-74.79856556,39.63341871,1104 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_1,-74.6319019,39.41473468,1104 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_10,-74.5961364,39.35022232,136 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_10,-74.3887005,39.392408,136 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_11,-74.62789679,39.43509362,138 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_11,-74.57931038,39.31142924,138 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_12,-74.6242085,39.4246025,152 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_12,-74.47925,39.5395585,152 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_13,-74.62663087,39.41367824,158 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_13,-74.49070971,39.52320055,158 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_14,-74.63563081,39.38556251,1121 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_14,-74.50638622,39.49230137,1121 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_15,-74.7174315,39.389133,1109 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_15,-74.60239046,39.34952467,1109 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_16,-74.7362455,39.4474695,AIR RIGHTS NORTH CAROLINA,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_16,-74.62874668,39.35418751,AIR RIGHTS NORTH CAROLINA,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_17,-74.5724875,39.359619,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_17,-74.48937933,39.33614,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_18,-74.606902,39.318389,155 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_18,-74.4722375,39.3434685,155 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_60_19,-74.60942775,39.32440598,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_19,-74.482696,39.3497225,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_2,-74.79936209,39.63262634,1102 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_2,-74.639123,39.412315,1102 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_20,-74.6016886,39.3176728,153 S NORTH CAROLINA RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_20,-74.47256959,39.34330467,153 S NORTH CAROLINA RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_21,-74.61118966,39.32023798,153 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_60_21,-74.45117444,39.35660718,153 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_22,-74.573183,39.342733,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_22,-74.45267584,39.35286512,MANSION AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_60_23,-74.54835301,39.36019308,151 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_23,-74.49188923,39.3399147,151 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_24,-74.56259067,39.35876553,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_24,-74.49151151,39.33863288,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_25,-74.5561205,39.366636,147 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_25,-74.49328861,39.3344333,147 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_26,-74.56300352,39.36056132,147 S NORTH CAROLINA RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_26,-74.503648,39.33923,147 S NORTH CAROLINA RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_27,-74.56614272,39.36273976,158 S PENNSYLVANIA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_27,-74.3753825,39.4019385,158 S PENNSYLVANIA AVE RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_60_28,-74.5788545,39.3412835,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_28,-74.37380306,39.39960827,MANSION AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_29,-74.6382405,39.400038,152 S PENNSYLVANIA AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_29,-74.44173335,39.5159093,152 S PENNSYLVANIA AVE RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_60_3,-74.80915739,39.63877163,1100 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_3,-74.64060843,39.41106178,1100 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_30,-74.5815294,39.34168151,145 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_30,-74.37191083,39.40175851,145 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_35,-74.57671736,39.35420199,121 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_35,-74.3814955,39.398529,121 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_36,-74.58613358,39.36704806,115 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_36,-74.384548,39.394219,115 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_37,-74.59501481,39.36538702,109 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_37,-74.41330169,39.36928293,109 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_38,-74.6142985,39.3676315,101 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_38,-74.42382181,39.37175763,101 S NORTH CAROLINA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_39.01,-74.58366801,39.3315757,1137 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_39.01,-74.46078508,39.34559516,1137 BOARDWALK,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_60_39.02,-74.58728006,39.32004064,1139 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_39.02,-74.4624885,39.3470775,1139 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_4,-74.63381567,39.3192405,104 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_4,-74.428852,39.368402,104 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_5,-74.59995035,39.36632821,110 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_5,-74.42267067,39.3722639,110 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_6,-74.59575827,39.3662555,114 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_6,-74.41441182,39.37096001,114 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_7,-74.5847695,39.3583325,118 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_7,-74.37810622,39.39990708,118 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_8,-74.600628,39.3471805,120 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_8,-74.3986305,39.3882585,120 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_60_9,-74.61089862,39.34034924,134 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_60_9,-74.39043267,39.388991,134 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_601_1,-74.60526214,39.31858893,800 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_601_1,-74.42019973,39.37020871,800 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_602_1,-74.37381371,39.41734586,837 N NEW YORK AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_602_1,-74.44883388,39.35405285,837 N NEW YORK AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_602_2,-74.367228,39.406564,1413 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_602_2,-74.4509139,39.35775007,1413 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_602_5,-74.37036236,39.41026495,1421 MAGELLAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_602_5,-74.45113565,39.35772009,1421 MAGELLAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_602_6,-74.4009985,39.386071,1423 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_602_6,-74.45045247,39.35801978,1423 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_602_7,-74.58964747,39.33143867,705 N NEW YORK AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_602_7,-74.44708633,39.37303282,705 N NEW YORK AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_602_8,-74.3707005,39.4049175,705 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_602_8,-74.45077785,39.3572673,705 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_603_1,-74.36933617,39.40715798,710 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_603_1,-74.45099944,39.35770641,710 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,EDU1,3004 -0102_604_1,-74.59270389,39.32900289,821 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_604_1,-74.41800616,39.36459119,821 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_604_10,-74.59399533,39.33208546,801 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_604_10,-74.45169003,39.37200435,801 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_604_3,-74.600528,39.321654,820 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_604_3,-74.41777468,39.36528733,820 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_604_7,-74.59591929,39.33087712,800 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_604_7,-74.44215315,39.37086858,800 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_605_1,-74.605734,39.3201575,901-919 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_605_1,-74.41863085,39.36554128,901-919 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_606_1,-74.382523,39.4168825,1425 MCKINLEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_606_1,-74.44992207,39.35267216,1425 MCKINLEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_606_2,-74.60074543,39.31847828,1401 MCKINLEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_606_2,-74.41995539,39.36984854,1401 MCKINLEY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_607_1,-74.61940584,39.53647591,729 GREEN ST,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_607_1,-74.44139138,39.3550277,729 GREEN ST,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_607_10,-74.85354015,39.48418564,709 GREEN ST,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_607_10,-74.44210319,39.35619469,709 GREEN ST,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_607_11,-74.8619435,39.486935,711 GREEN ST,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_607_11,-74.44232852,39.35610334,711 GREEN ST,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_607_12,-74.545017,39.50812,713 GREEN ST,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_607_12,-74.44337969,39.35664573,713 GREEN ST,ATLANTIC CITY CITY,33,1920,1,REL1,3004 -0102_607_13,-74.56762629,39.51083805,715 GREEN ST,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_607_13,-74.44163083,39.35576805,715 GREEN ST,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_607_14,-74.54517825,39.52376432,717 GREEN ST,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_607_14,-74.4415733,39.35565176,717 GREEN ST,ATLANTIC CITY CITY,33,1910,1,RES3A,3001 -0102_607_15,-74.59223032,39.51867009,719 GREEN ST,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_607_15,-74.44189817,39.35555515,719 GREEN ST,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_607_16,-74.55067043,39.54146184,721 GREEN ST,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_607_16,-74.44152073,39.35543254,721 GREEN ST,ATLANTIC CITY CITY,33,1900,1,RES3B,3001 -0102_607_17,-74.56113694,39.54566079,723 GREEN ST,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_607_17,-74.44144318,39.35538382,723 GREEN ST,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_607_18,-74.54822456,39.57012304,725 GREEN ST,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_607_18,-74.44132254,39.35533717,725 GREEN ST,ATLANTIC CITY CITY,33,1920,1,RES3A,3001 -0102_607_19,-74.64094932,39.52763295,727 GREEN ST,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_607_19,-74.44190722,39.35505514,727 GREEN ST,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_607_3,-74.63876058,39.53517265,724 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_607_3,-74.44064805,39.35674767,724 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_607_4,-74.63961565,39.52429397,716 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_607_4,-74.44154122,39.35494583,716 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_607_5,-74.60473716,39.52874302,710 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1961,1,GOV1,3004 -0102_607_5,-74.44152609,39.35560735,710 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1961,1,GOV1,3004 -0102_607_6,-74.86165601,39.48422198,700 N KENTUCKY AVE,ATLANTIC CITY CITY,17,2012,1,RES1,3001 -0102_607_6,-74.44272455,39.3556952,700 N KENTUCKY AVE,ATLANTIC CITY CITY,17,2012,1,RES1,3001 -0102_607_7,-74.8332635,39.4700015,1605 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_607_7,-74.44203327,39.35576397,1605 MAGELLAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_607_8,-74.85717472,39.43755463,705 GREEN ST,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_607_8,-74.44207091,39.35582665,705 GREEN ST,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_607_9,-74.834049,39.4846235,707 GREEN ST,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_607_9,-74.44215073,39.35595118,707 GREEN ST,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_608_1,-74.40779213,39.39192646,1614 MCKINLEY AVE,ATLANTIC CITY CITY,16,1963,1,RES1,3001 -0102_608_1,-74.41613529,39.37421205,1614 MCKINLEY AVE,ATLANTIC CITY CITY,16,1963,1,RES1,3001 -0102_608_2,-74.372866,39.4035065,1600 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_608_2,-74.41654947,39.37483003,1600 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_608_3,-74.4361305,39.369618,816 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_608_3,-74.41969637,39.37449727,816 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_608_4,-74.64338898,39.52807614,808 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_608_4,-74.44106169,39.35614251,808 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_608_5,-74.639518,39.530996,800 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_608_5,-74.4412896,39.35629692,800 N KENTUCKY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_608_6,-74.6382735,39.531119,1615 READING AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_608_6,-74.44118081,39.35646986,1615 READING AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_608_7,-74.63665519,39.53060488,813 GREEN ST,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_608_7,-74.44137104,39.35651102,813 GREEN ST,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_608_8,-74.3917212,39.39413085,817 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_608_8,-74.42089562,39.37465011,817 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_609_1,-74.448455,39.374014,919 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_609_1,-74.7957775,39.6392755,919 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_609_10,-74.36705452,39.41559554,1607 MCKINLEY AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_609_10,-74.880624,39.604335,1607 MCKINLEY AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_609_11,-74.72217416,39.57486201,1609 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_609_11,-74.42330921,39.36356679,1609 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_609_12,-74.36796487,39.40241983,901 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_609_12,-74.41663979,39.37496556,901 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_609_2,-74.44951981,39.37175698,1620 MARMORA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_609_2,-74.8003645,39.6313715,1620 MARMORA AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_609_3,-74.75132957,39.60231581,1618 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_609_3,-74.4233047,39.36378108,1618 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_609_4,-74.7622702,39.62944602,1616 MARMORA AVE,ATLANTIC CITY CITY,45,1960,2,RES1,3001 -0102_609_4,-74.42294381,39.36372395,1616 MARMORA AVE,ATLANTIC CITY CITY,45,1960,2,RES1,3001 -0102_609_5,-74.8803635,39.5984835,1608 MARMORA AVE,ATLANTIC CITY CITY,17,1997,1,GOV1,3004 -0102_609_5,-74.42262582,39.36471446,1608 MARMORA AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_609_7,-74.45254918,39.37296662,1601 MCKINLEY AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_609_7,-74.79532982,39.63254241,1601 MCKINLEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_609_8,-74.4494626,39.3740718,1603 MCKINLEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_609_8,-74.80762584,39.62762146,1603 MCKINLEY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_609_9,-74.3780085,39.4190715,1605 MCKINLEY AVE,ATLANTIC CITY CITY,16,1954,1,RES1,3001 -0102_609_9,-74.82588344,39.61336775,1605 MCKINLEY AVE,ATLANTIC CITY CITY,16,1954,1,RES1,3001 -0102_61.01_1,-74.5428565,39.376523,600 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61.01_1,-74.3702075,39.4192745,600 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_61_1,-74.80835212,39.63295363,1022 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_1,-74.62379231,39.41994892,1022 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_10,-74.5064535,39.3267055,912 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_10,-74.63924283,39.5279532,912 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_15,-74.50890427,39.32593031,120 S MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_15,-74.63550684,39.52186917,120 S MARYLAND AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_61_16,-74.5130275,39.3254265,120 S MARYLAND AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_16,-74.63859109,39.53354328,120 S MARYLAND AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_17,-74.797196,39.631903,1003 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_17,-74.63935004,39.41179267,1003 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_18,-74.50846643,39.32685179,130 S MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_18,-74.6409585,39.5292135,130 S MARYLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_19,-74.8101625,39.6353815,901 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_19,-74.6294545,39.422557,901 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_2,-74.8151575,39.6358175,105 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_2,-74.6533655,39.4078845,105 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_20,-74.5778863,39.36735811,1001 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_20,-74.37892002,39.39511163,1001 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_21,-74.65304955,39.40578566,1001 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_21,-74.5003845,39.536861,1001 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_22,-74.63251516,39.35181444,801 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_22,-74.368181,39.405121,801 BOARDWALK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_61_23,-74.62357527,39.36251929,810 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_23,-74.37263382,39.40507151,810 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_24,-74.6304895,39.3637305,804 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_24,-74.36667145,39.40441996,804 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_25,-74.64494438,39.35865045,800 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,AGR1,3001 -0102_61_25,-74.3659109,39.41574223,800 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_26,-74.646623,39.328883,804 PACIFIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_26,-74.40892468,39.39205168,804 PACIFIC AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_29,-74.50031816,39.32688692,AIR RIGHTS BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_29,-74.62825356,39.52850034,AIR RIGHTS BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_3,-74.63465112,39.31851752,107 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_3,-74.436828,39.371503,107 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_30,-74.76185316,39.43060444,AIR RIGHTS PENNSYLVANIA,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_30,-74.59588867,39.35755158,AIR RIGHTS PENNSYLVANIA,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_32,-74.61723874,39.36606342,AIR RIGHTS VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_32,-74.423934,39.3709455,AIR RIGHTS VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_61_33,-74.814224,39.6323545,PRESBYTERIAN AVE VACATED,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_61_33,-74.63119011,39.42266569,PRESBYTERIAN AVE VACATED,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_4,-74.59842236,39.36079366,109 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_4,-74.42246433,39.37195444,109 S PENNSYLVANIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_5,-74.6258555,39.31413306,1000 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_5,-74.42513963,39.36992038,1000 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_6,-74.63383,39.3177615,1020 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_6,-74.40239858,39.39371218,1020 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_7,-74.59690836,39.36361506,1001 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_7,-74.40861789,39.37906732,1001 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_8,-74.8110305,39.63557417,129 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_61_8,-74.62120363,39.42453125,129 S VIRGINIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_610_1,-74.64011,39.5299475,817 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_610_1,-74.44150538,39.35646137,817 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_610_2,-74.6470285,39.524035,1612 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_610_2,-74.44139339,39.35602992,1612 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_610_5,-74.636521,39.53141,810 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_610_5,-74.44098005,39.35662593,810 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_610_6,-74.64005642,39.53291536,1633 READING AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_610_6,-74.44076385,39.35674221,1633 READING AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_610_7,-74.62747644,39.52971785,803 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_610_7,-74.44119417,39.35512031,803 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_610_8,-74.6329766,39.53170729,811 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_610_8,-74.44084827,39.35669452,811 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_611_1,-74.54749534,39.50636647,725 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_611_1,-74.4424531,39.35579967,725 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_611_2,-74.6053385,39.52826057,724 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_611_2,-74.44149946,39.35553321,724 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_611_3,-74.8680885,39.494428,716 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_611_3,-74.44331149,39.35659766,716 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_611_4,-74.84130933,39.45266429,710 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_611_4,-74.44208623,39.35587319,710 GREEN ST,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_611_5,-74.83639208,39.44720272,700 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_611_5,-74.44193575,39.35563324,700 GREEN ST,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_611_6,-74.73924796,39.47178508,701 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_611_6,-74.44179652,39.35607038,701 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_611_7,-74.7950915,39.4651465,711 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_611_7,-74.4419673,39.35570211,711 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_611_8,-74.8384355,39.4771445,715 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_611_8,-74.44211299,39.35591549,715 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_612_1,-74.832368,39.443737,736 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_612_1,-74.4419473,39.35599194,736 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,COM1,3004 -0102_612_2,-74.71282266,39.47327134,726 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_612_2,-74.4417566,39.35594828,726 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_612_3,-74.79107876,39.46089595,720 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_612_3,-74.44172861,39.35586589,720 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_612_4,-74.756648,39.453999,710 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_612_4,-74.44172461,39.35579923,710 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_612_5,-74.75551216,39.45423309,700 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_612_5,-74.44510992,39.35703862,700 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1962,1,RES1,3001 -0102_613_1,-74.488482,39.3375185,834 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_613_1,-74.41907559,39.3722014,834 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_613_2,-74.82143827,39.56836679,826 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_613_2,-74.42448682,39.36251192,826 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_613_3,-74.61846505,39.53795102,818 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_613_3,-74.44190042,39.3551271,818 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_613_4,-74.5483865,39.5262,810 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_613_4,-74.44161016,39.35570631,810 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_613_5,-74.85153341,39.47282377,800 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_613_5,-74.4418814,39.35625821,800 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_614_1,-74.365963,39.4166685,920 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_614_1,-74.4178837,39.3716554,920 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_614_2,-74.417122,39.3687105,900 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_614_2,-74.41674879,39.37492356,900 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_615_2,-74.37673564,39.39913064,1721 MCKINLEY AVE,ATLANTIC CITY CITY,45,1954,2,RES1,3001 -0102_615_2,-74.4177251,39.37204777,1721 MCKINLEY AVE,ATLANTIC CITY CITY,45,1954,2,RES1,3001 -0102_615_3,-74.5047435,39.33952717,1723 MCKINLEY AVE,ATLANTIC CITY CITY,17,1981,1,RES1,3001 -0102_615_3,-74.4162339,39.37274264,1723 MCKINLEY AVE,ATLANTIC CITY CITY,17,1981,1,RES1,3001 -0102_615_4,-74.8269832,39.57027455,901 N INDIANA AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_615_4,-74.42357738,39.36183377,901 N INDIANA AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_615_5,-74.84290772,39.55928381,903 N INDIANA AVE,ATLANTIC CITY CITY,35,1920,1,RES3A,3001 -0102_615_5,-74.42459765,39.36319157,903 N INDIANA AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_615_6,-74.45122533,39.355642,905 N INDIANA AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_615_6,-74.41649436,39.37520815,905 N INDIANA AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_615_7,-74.46520104,39.35698668,907 N INDIANA AVE,ATLANTIC CITY CITY,35,1900,1,GOV1,3004 -0102_615_7,-74.41614771,39.37517918,907 N INDIANA AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_615_8,-74.491452,39.340391,909 N INDIANA AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_615_8,-74.41924468,39.3746397,909 N INDIANA AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_615_9,-74.49110516,39.33659401,911 N INDIANA AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_615_9,-74.41757173,39.37266199,911 N INDIANA AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_616_1,-74.782443,39.543851,1740 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_616_1,-74.42556716,39.3622871,1740 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_616_10,-74.42803583,39.3680755,1739 GRANT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_616_10,-74.44566423,39.35656824,1739 GRANT AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_616_11,-74.82186122,39.64131657,801 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_616_11,-74.44664143,39.35676646,801 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_616_12,-74.41381515,39.3651672,803 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_616_12,-74.44563286,39.35680474,803 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_616_13,-74.442741,39.3536805,805 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_13,-74.44579893,39.3567348,805 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_14,-74.44063723,39.36687441,807 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_616_14,-74.44552013,39.35634318,807 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_16,-74.6437225,39.526816,810 ARIFF AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_16,-74.43560173,39.36173716,810 ARIFF AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_17,-74.52258551,39.31426817,809 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_17,-74.44527359,39.35632798,809 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_18,-74.50660082,39.32355695,811 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_616_18,-74.44602359,39.3564781,811 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_616_19,-74.6529585,39.5227905,812 ARIFF AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_19,-74.43484895,39.36233096,812 ARIFF AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_2,-74.8424075,39.562858,1720 MCKINLEY AVE,ATLANTIC CITY CITY,17,1992,1,RES1,3001 -0102_616_2,-74.42463768,39.36276203,1720 MCKINLEY AVE,ATLANTIC CITY CITY,17,1992,1,RES3A,3001 -0102_616_20,-74.64440618,39.53042134,813 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_616_20,-74.43135635,39.36050826,813 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_616_21,-74.62986005,39.53973181,815 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_616_21,-74.43101549,39.35972491,815 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_616_22,-74.6208457,39.55304125,817 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_22,-74.43116389,39.3605743,817 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_616_23,-74.65177149,39.57474496,823 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_616_23,-74.42718814,39.36210884,823 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_616_3,-74.7814425,39.508846,820 ROBINSON AVE,ATLANTIC CITY CITY,17,1961,1,EDU1,3004 -0102_616_3,-74.42589765,39.36161952,820 ROBINSON AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_616_5,-74.64693844,39.54973959,812 ROBINSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_616_5,-74.43075635,39.35939486,812 ROBINSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_616_7,-74.64213733,39.525851,1731 GRANT AVE,ATLANTIC CITY CITY,16,2010,1,RES1,3001 -0102_616_7,-74.43531547,39.36252178,1731 GRANT AVE,ATLANTIC CITY CITY,16,2010,1,RES1,3001 -0102_616_9,-74.52116754,39.31678719,1737 GRANT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_616_9,-74.44550614,39.35667889,1737 GRANT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_617_1,-74.81649635,39.64194086,729 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_617_1,-74.4464511,39.35683712,729 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_617_12,-74.76094662,39.44604098,1731 LINCOLN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_617_12,-74.44437695,39.35732206,1731 LINCOLN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_617_13,-74.75250716,39.45106302,1739 LINCOLN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_617_13,-74.44381453,39.35670198,1739 LINCOLN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_617_14,-74.75710293,39.4493625,705 N INDIANA AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_617_14,-74.44432738,39.35736862,705 N INDIANA AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_617_15,-74.514506,39.3233115,707 N INDIANA AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_617_15,-74.77170288,39.42558255,707 N INDIANA AVE,ATLANTIC CITY CITY,17,1925,1,RES3A,3001 -0102_617_17,-74.51929812,39.32130825,711 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_617_17,-74.76021345,39.4323727,711 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_617_18,-74.514371,39.390936,721 N INDIANA AVE,ATLANTIC CITY CITY,17,1998,1,RES3A,3001 -0102_617_18,-74.777423,39.6261105,721 N INDIANA AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_617_19,-74.748489,39.7071035,723 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_617_19,-74.44591811,39.35705662,723 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_617_2,-74.81992767,39.64792652,1734 GRANT AVE,ATLANTIC CITY CITY,17,1950,1,RES3A,3001 -0102_617_2,-74.44658099,39.3567952,1734 GRANT AVE,ATLANTIC CITY CITY,17,1950,1,RES3A,3001 -0102_617_20,-74.78736875,39.67623818,725 N INDIANA AVE,ATLANTIC CITY CITY,33,1925,1,RES3A,3001 -0102_617_20,-74.44608716,39.35700567,725 N INDIANA AVE,ATLANTIC CITY CITY,33,1925,1,COM1,3004 -0102_617_21,-74.7959838,39.64510642,727 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_617_21,-74.44628648,39.35696931,727 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_617_3,-74.7099991,39.47189035,1720 GRANT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_617_3,-74.44174938,39.35600869,1720 GRANT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3002 -0102_617_4,-74.787391,39.6761615,715 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_617_4,-74.44614675,39.35698382,715 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_617_5,-74.51674446,39.38864523,711 N INDIANA AVE #B,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_617_5,-74.79188743,39.63059772,711 N INDIANA AVE #B,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_617_7,-74.5229782,39.38355938,709 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_617_7,-74.77572284,39.62635349,709 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_617_8,-74.7867415,39.438985,712 ROBINSON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_617_8,-74.44482592,39.3569998,712 ROBINSON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_617_9,-74.78541279,39.44438518,1713 LINCOLN AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3002 -0102_617_9,-74.44442925,39.35730161,1713 LINCOLN AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_618_1,-74.78631566,39.67754987,732 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_618_1,-74.44600891,39.35707873,732 N INDIANA AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_618_10,-74.585443,39.525498,702 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_618_10,-74.43661733,39.36659196,702 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_618_11.01,-74.75516028,39.43361576,701 HOBART AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_618_11.01,-74.44288777,39.35703993,701 HOBART AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_618_11.02,-74.56769037,39.51131913,700 N INDIANA AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_618_11.02,-74.4367333,39.36651311,700 N INDIANA AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_618_3,-74.51179766,39.32307402,726 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_618_3,-74.7550395,39.4346925,726 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_618_4,-74.64038378,39.53637369,724 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_618_4,-74.43557778,39.36165878,724 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_618_5,-74.63670165,39.52857287,722 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_618_5,-74.43547958,39.3614897,722 N INDIANA AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_618_6,-74.65076,39.513893,720 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_618_6,-74.43555796,39.36648371,720 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_618_7,-74.56277,39.5461475,718 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES3A,3001 -0102_618_7,-74.43627055,39.36596965,718 N INDIANA AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3002 -0102_619_1,-74.65574352,39.54215234,1800 MCKINLEY AVE,ATLANTIC CITY CITY,15,1950,1,RES1,3001 -0102_619_1,-74.42993917,39.35993752,1800 MCKINLEY AVE,ATLANTIC CITY CITY,15,1950,1,RES1,3001 -0102_619_2,-74.6437025,39.531098,824 N INDIANA AVE,ATLANTIC CITY CITY,15,1900,1,RES1,3001 -0102_619_2,-74.43156695,39.36041873,824 N INDIANA AVE,ATLANTIC CITY CITY,15,1900,1,RES3A,3001 -0102_619_3,-74.6430775,39.526291,812 N INDIANA AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_619_3,-74.43544683,39.36202592,812 N INDIANA AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_619_4,-74.427462,39.3679975,806 N INDIANA AVE,ATLANTIC CITY CITY,16,1900,1,COM7,3004 -0102_619_4,-74.44558441,39.35645642,806 N INDIANA AVE,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_619_5,-74.8291115,39.6480265,800 N INDIANA AVE,ATLANTIC CITY CITY,17,1930,1,RES3A,3001 -0102_619_5,-74.44552032,39.3567925,800 N INDIANA AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_62_1,-74.6328225,39.349262,500 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_62_1,-74.40078686,39.38808796,500 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_620_1,-74.50435748,39.34029333,914 N INDIANA AVE,ATLANTIC CITY CITY,27,1953,2,RES1,3001 -0102_620_1,-74.41749883,39.37456145,914 N INDIANA AVE,ATLANTIC CITY CITY,27,1953,2,RES1,3001 -0102_620_2,-74.49088914,39.33694416,912 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_620_2,-74.41640029,39.37390855,912 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3004 -0102_620_3,-74.4581255,39.352087,910 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3004 -0102_620_3,-74.41620932,39.37532267,910 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_620_4,-74.85385028,39.56063647,908 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_620_4,-74.42444246,39.36243211,908 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_620_5,-74.81879566,39.54391467,906 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_620_5,-74.424155,39.36199489,906 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_620_6,-74.8128295,39.519478,904 N INDIANA AVE,ATLANTIC CITY CITY,27,1953,2,RES1,3001 -0102_620_6,-74.42544069,39.36197212,904 N INDIANA AVE,ATLANTIC CITY CITY,27,1953,2,RES3A,3001 -0102_620_7,-74.750397,39.5688225,902 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_620_7,-74.42561994,39.36277339,902 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_620_8,-74.66880479,39.62037831,900 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_620_8,-74.42521231,39.36214193,900 N INDIANA AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_621_1,-74.463169,39.357428,1812 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_621_1,-74.41602946,39.37505908,1812 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_622_1,-74.61679925,39.62006725,1827 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_622_1,-74.42805683,39.36264414,1827 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_622_2,-74.63073238,39.60114253,1825 MCKINLEY AVE,ATLANTIC CITY CITY,35,1900,1,GOV1,3004 -0102_622_2,-74.42730299,39.36135381,1825 MCKINLEY AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_622_3,-74.69531946,39.58891727,1823 MCKINLEY AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_622_3,-74.427603,39.36193988,1823 MCKINLEY AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_622_4,-74.66165761,39.63667082,1821 MCKINLEY AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_622_4,-74.42675767,39.36104224,1821 MCKINLEY AVE,ATLANTIC CITY CITY,35,1900,1,RES1,3001 -0102_622_5,-74.77827456,39.51418413,1819 MCKINLEY AVE,ATLANTIC CITY CITY,35,1925,1,RES1,3001 -0102_622_5,-74.42539103,39.36190301,1819 MCKINLEY AVE,ATLANTIC CITY CITY,35,1925,1,RES1,3001 -0102_623_2,-74.52802852,39.30955296,1812 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_623_2,-74.44535407,39.35652497,1812 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_623_3,-74.5018535,39.3257725,1810 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_623_3,-74.44596718,39.35650086,1810 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3002 -0102_623_4,-74.490031,39.333639,1808 MCKINLEY AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3002 -0102_623_4,-74.44590422,39.35652353,1808 MCKINLEY AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_623_5,-74.64358434,39.53361503,1804 MCKINLEY AVE,ATLANTIC CITY CITY,17,1990,1,RES1,3001 -0102_623_5,-74.4330081,39.36043569,1804 MCKINLEY AVE,ATLANTIC CITY CITY,17,1990,1,RES1,3001 -0102_624_1,-74.807765,39.641902,1829 GRANT AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_624_1,-74.4465193,39.35681904,1829 GRANT AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_624_2,-74.8185947,39.65239983,1809 GRANT AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_624_2,-74.44668194,39.35671513,1809 GRANT AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_625_1,-74.509577,39.3227835,1826 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_625_1,-74.7572795,39.43241,1826 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_625_10,-74.7156795,39.4142125,1809 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_625_10,-74.44237453,39.35686844,1809 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_625_11,-74.68309568,39.49507024,1811 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,COM1,3004 -0102_625_11,-74.44266826,39.35731973,1811 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_625_12,-74.65109863,39.48532744,1813 LINCOLN AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_625_12,-74.44298817,39.35778087,1813 LINCOLN AVE,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_625_13,-74.66552465,39.46317016,1815 LINCOLN AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_625_13,-74.44314528,39.35783788,1815 LINCOLN AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_625_14,-74.6906575,39.44917,1817 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_625_14,-74.44341756,39.35770831,1817 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_625_15,-74.64727127,39.46005768,1819 LINCOLN AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_625_15,-74.44171911,39.35837714,1819 LINCOLN AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_625_16,-74.482482,39.3540085,1821 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_625_16,-74.44790795,39.35659713,1821 LINCOLN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_625_4.01,-74.5993425,39.549682,714 HOBART AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_625_4.01,-74.43629913,39.36602736,714 HOBART AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_625_4.02,-74.5435535,39.5425405,712 HOBART AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_625_4.02,-74.43706534,39.366614,712 HOBART AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3004 -0102_625_8,-74.75446017,39.43098124,704 HOBART AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_625_8,-74.44221146,39.35670977,704 HOBART AVE,ATLANTIC CITY CITY,,0,1,IND1,3002 -0102_626_1,-74.511707,39.435912,725 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_626_1,-74.78661244,39.64942716,725 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_626_10,-74.53616808,39.54229891,711 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,COM4,3004 -0102_626_10,-74.43575633,39.36704347,711 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_626_11,-74.53552456,39.53579184,709 N OHIO AVE #A,ATLANTIC CITY CITY,17,2004,1,RES3A,3004 -0102_626_11,-74.43706547,39.36630756,709 N OHIO AVE #A,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_626_12,-74.677731,39.4944745,709 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,AGR1,3001 -0102_626_12,-74.44263815,39.35723993,709 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_626_13,-74.45950212,39.35437867,707 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_626_13,-74.44772356,39.35697699,707 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_626_14,-74.4777886,39.34302867,705 N OHIO AVE,ATLANTIC CITY CITY,33,1956,1,RES1,3002 -0102_626_14,-74.44711974,39.35671461,705 N OHIO AVE,ATLANTIC CITY CITY,33,1956,1,RES3A,3001 -0102_626_15,-74.480578,39.3472935,703 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_626_15,-74.44762279,39.35596261,703 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_626_16,-74.500937,39.3344155,701 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_626_16,-74.58257416,39.53455898,701 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_626_3,-74.63977564,39.52415066,1834 GRANT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_626_3,-74.43556126,39.36158979,1834 GRANT AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_626_4,-74.72433458,39.44574528,723 N OHIO AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_626_4,-74.63017825,39.34833219,723 N OHIO AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_626_5,-74.7194883,39.45065733,721 N OHIO AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_626_5,-74.6409815,39.341712,721 N OHIO AVE,ATLANTIC CITY CITY,35,1920,1,RES1,3001 -0102_626_6,-74.822644,39.4123085,719 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_626_6,-74.5973425,39.365125,719 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_627_1,-74.7146654,39.46541068,921 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_627_1,-74.44367474,39.35644559,921 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_627_2,-74.7452675,39.4461785,919 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_627_2,-74.44339606,39.35743896,919 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_627_3,-74.71532055,39.45086981,917 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,COM8,3004 -0102_627_3,-74.44366998,39.35732295,917 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_627_4,-74.8269975,39.40616,903 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_627_4,-74.4434879,39.35683835,903 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_627_5,-74.822504,39.3950045,901 N OHIO AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_627_5,-74.44331515,39.35723308,901 N OHIO AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_628_10,-74.64513065,39.54937636,1009 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_10,-74.43117027,39.36020614,1009 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_11,-74.64296533,39.54405849,1007 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_628_11,-74.43124802,39.36054074,1007 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_628_12,-74.6704235,39.512095,1001 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_628_12,-74.43070869,39.36064072,1001 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_628_2,-74.74932217,39.56811402,1027 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_2,-74.42542281,39.36224593,1027 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_3,-74.79098281,39.51857878,1025 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_628_3,-74.42541822,39.36194151,1025 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_628_4,-74.697183,39.6343455,1023 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_4,-74.42552908,39.36152702,1023 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_5,-74.619371,39.6213125,1021 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_628_5,-74.42739769,39.36157229,1021 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_6,-74.63321502,39.59577898,1019 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_6,-74.42693364,39.36136395,1019 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_7,-74.61601931,39.62129168,1017 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_7,-74.42845117,39.36349251,1017 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_628_8,-74.67524845,39.56780484,1015 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_628_8,-74.42773031,39.36279621,1015 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_628_9,-74.6791505,39.5575865,1011 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_628_9,-74.42784476,39.36274599,1011 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_629_1,-74.69074382,39.58475065,1902 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_629_1,-74.42612174,39.36129318,1902 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_629_3,-74.6561458,39.5424949,1016 N OHIO AVE,ATLANTIC CITY CITY,17,1904,1,RES1,3001 -0102_629_3,-74.43023325,39.35975202,1016 N OHIO AVE,ATLANTIC CITY CITY,17,1904,1,RES1,3001 -0102_629_4,-74.63375404,39.54029366,1014 N OHIO AVE,ATLANTIC CITY CITY,17,1904,1,RES1,3001 -0102_629_4,-74.43147038,39.36046078,1014 N OHIO AVE,ATLANTIC CITY CITY,17,1904,1,RES1,3001 -0102_629_5,-74.66482809,39.52810085,1008 N OHIO AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_629_5,-74.42991274,39.35972471,1008 N OHIO AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_629_6,-74.64344209,39.53372211,1006 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_629_6,-74.4351535,39.36271992,1006 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES3B,3001 -0102_629_7,-74.497229,39.333384,1004 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_629_7,-74.44599718,39.35665047,1004 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_63_1,-74.501859,39.3278305,526 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_1,-74.58142001,39.52696233,526 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_10,-74.65906467,39.3657082,519 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_10,-74.375114,39.417479,519 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_11,-74.66986824,39.36767294,517 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_11,-74.36779766,39.41415002,517 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_12,-74.66960511,39.36023426,515 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_63_12,-74.37597036,39.41408935,515 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_63_3,-74.50441216,39.33126002,S CONNECTICUT AVE RR,ATLANTIC CITY CITY,,0,1,AGR1,3001 -0102_63_3,-74.8669055,39.491659,S CONNECTICUT AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_4,-74.67570363,39.36073131,117 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_4,-74.369106,39.413716,117 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_5,-74.651567,39.355345,121 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_5,-74.366104,39.412364,121 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_6,-74.65011104,39.35792472,123 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_6,-74.36203347,39.41558315,123 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_7,-74.8131205,39.3776275,125 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_7,-74.5757165,39.3680155,125 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_63_8,-74.7618425,39.4301685,127 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_8,-74.58702645,39.35518581,127 S CONNECTICUT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_9,-74.63080882,39.36368616,521 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_63_9,-74.37011274,39.403023,521 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_630_10,-74.51037096,39.42864985,900 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_630_10,-74.76322574,39.66918563,900 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_630_2,-74.73339697,39.43804614,918 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_630_2,-74.44357583,39.35743179,918 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_630_3,-74.864789,39.434842,916 N OHIO AVE,ATLANTIC CITY CITY,29,1915,2,RES1,3001 -0102_630_3,-74.44329867,39.3576035,916 N OHIO AVE,ATLANTIC CITY CITY,29,1915,2,RES1,3001 -0102_630_4,-74.8370415,39.41442,914 N OHIO AVE,ATLANTIC CITY CITY,29,1902,2,GOV1,3004 -0102_630_4,-74.4435781,39.35691839,914 N OHIO AVE,ATLANTIC CITY CITY,29,1902,2,RES1,3001 -0102_630_6,-74.8322064,39.39715625,910 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_630_6,-74.44340613,39.35671631,910 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_630_7,-74.81864818,39.39667498,908 N OHIO AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_630_7,-74.44320835,39.35705512,908 N OHIO AVE,ATLANTIC CITY CITY,33,1902,1,GOV1,3004 -0102_630_8,-74.824496,39.376837,906 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_630_8,-74.44308523,39.35684727,906 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_631_1,-74.73354,39.46008,818 N OHIO AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_631_1,-74.61013172,39.37358987,818 N OHIO AVE,ATLANTIC CITY CITY,45,1930,4,GOV1,3004 -0102_631_4,-74.757849,39.432654,810 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_631_4,-74.44278065,39.35687475,810 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_631_5,-74.69429067,39.48302967,808 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_631_5,-74.44273503,39.3573949,808 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_632_1,-74.6682555,39.5811985,1919 MAGELLAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_632_1,-74.6104895,39.3852055,1919 MAGELLAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_632_2,-74.462638,39.357613,1911 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_632_2,-74.44795128,39.35688294,1911 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_632_3,-74.63982609,39.46243234,1909 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_632_3,-74.44175923,39.35820327,1909 MAGELLAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_633_2,-74.75548845,39.43258076,1918 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_633_2,-74.44283157,39.3569594,1918 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_633_3,-74.7063425,39.571346,1910 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_633_3,-74.59832953,39.37243878,1910 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_633_4,-74.6027295,39.5966315,1908 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_633_4,-74.60528836,39.38395933,1908 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_633_5,-74.8371458,39.40016998,1906 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_633_5,-74.5571725,39.398136,1906 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_634_1,-74.8014096,39.43540319,1919 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_634_1,-74.63835699,39.31993866,1919 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_634_2,-74.51130318,39.4331103,1913 GRANT AVE,ATLANTIC CITY CITY,17,1963,1,GOV1,3004 -0102_634_2,-74.75760236,39.6644722,1913 GRANT AVE,ATLANTIC CITY CITY,17,1963,1,GOV1,3004 -0102_634_3,-74.52705,39.429041,1911 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_634_3,-74.78337783,39.664186,1911 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_634_4,-74.81049077,39.37919515,1909 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_634_4,-74.44306039,39.35678769,1909 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_635_1,-74.8251815,39.3957875,1932 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_635_1,-74.44327604,39.35714991,1932 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_635_2,-74.8338785,39.401236,1928 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_635_2,-74.44336322,39.35725809,1928 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_635_3,-74.796825,39.4119305,1924 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_635_3,-74.44343551,39.35677649,1924 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_635_4,-74.829919,39.406811,1922 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_635_4,-74.44345257,39.35691036,1922 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_635_5,-74.80913783,39.42821638,1918 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_635_5,-74.4436786,39.35711691,1918 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_635_6,-74.85142431,39.43411705,1914 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_635_6,-74.44377353,39.35722018,1914 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_636_1,-74.74630694,39.44512647,1931 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_636_1,-74.44368328,39.35760178,1931 MCKINLEY AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_636_2,-74.727749,39.4612645,1917 MCKINLEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_636_2,-74.4437456,39.35757209,1917 MCKINLEY AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_636_3,-74.7269173,39.45850395,1915 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_636_3,-74.4438283,39.35751557,1915 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_636_4,-74.7255521,39.45383432,1913 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_636_4,-74.44361059,39.35639503,1913 MCKINLEY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_636_5,-74.754073,39.4517345,1911 MCKINLEY AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_636_5,-74.44377979,39.35666348,1911 MCKINLEY AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_637_1,-74.64704246,39.53127166,1924 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_637_1,-74.43350537,39.36170276,1924 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_637_2,-74.6629745,39.548965,1910 MARMORA AVE,ATLANTIC CITY CITY,17,1967,1,RES1,3001 -0102_637_2,-74.430236,39.36021947,1910 MARMORA AVE,ATLANTIC CITY CITY,17,1967,1,RES1,3001 -0102_638_10,-74.81624839,39.42937927,1001 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_638_10,-74.4436063,39.35696563,1001 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_638_4,-74.72467647,39.45800408,1013 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1997,1,RES1,3001 -0102_638_4,-74.44392372,39.35744651,1013 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1997,1,RES1,3001 -0102_638_5,-74.735818,39.4495345,1011 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1926,1,GOV1,3004 -0102_638_5,-74.44346372,39.35743247,1011 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1926,1,RES1,3002 -0102_638_6,-74.7341597,39.44956654,1009 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_638_6,-74.44350245,39.35733399,1009 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_638_7,-74.726811,39.45019,1007 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_638_7,-74.44361152,39.35737694,1007 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_638_8,-74.7073765,39.4417305,1005 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_638_8,-74.4437078,39.35730883,1005 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_638_9,-74.84155767,39.42769948,1003 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_638_9,-74.44373731,39.35716616,1003 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_639_1,-74.830893,39.3768175,917 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_639_1,-74.44316471,39.35697061,917 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_639_2,-74.81539667,39.381508,915 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_639_2,-74.44287402,39.3564467,915 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_639_4,-74.73690041,39.46577975,907 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_639_4,-74.59905632,39.37967277,907 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_639_5,-74.714394,39.4695435,905 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_639_5,-74.612306,39.3751125,905 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_639_6,-74.74918607,39.43646083,901 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_639_6,-74.59606791,39.37999273,901 N MICHIGAN AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_640_1,-74.4609315,39.356444,1930 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_640_1,-74.447837,39.35692891,1930 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_640_10,-74.69910533,39.559718,813 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_640_10,-74.60481775,39.37170742,813 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_11,-74.6781085,39.55782925,811 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_11,-74.59072207,39.37721776,811 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_640_12,-74.55454541,39.47363773,809 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_12,-74.44156801,39.3573796,809 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_13,-74.546841,39.47191,807 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1915,2,GOV1,3004 -0102_640_13,-74.44124966,39.35754997,807 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1915,2,GOV1,3004 -0102_640_14,-74.54533144,39.47614971,801 N MICHIGAN AVE,ATLANTIC CITY CITY,15,2009,1,GOV1,3004 -0102_640_14,-74.44054717,39.35734749,801 N MICHIGAN AVE,ATLANTIC CITY CITY,15,2009,1,RES1,3001 -0102_640_2,-74.48272533,39.35303276,1928 GRANT AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_640_2,-74.44785407,39.3565244,1928 GRANT AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_640_3,-74.65302966,39.45594391,1926 GRANT AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_640_3,-74.44179997,39.35835554,1926 GRANT AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_640_4,-74.70610535,39.44576551,1924 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_640_4,-74.4433487,39.35773541,1924 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_640_5,-74.63439406,39.47058765,1922 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_640_5,-74.44297288,39.35788598,1922 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_640_6,-74.44847,39.3552105,821 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_6,-74.44703269,39.35655029,821 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_7,-74.48255092,39.34653219,819 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_7,-74.44751455,39.35600496,819 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_9,-74.65762168,39.60298444,815 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_640_9,-74.60446745,39.38359221,815 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_641_1,-74.6882805,39.557621,2010 GRANT AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_641_1,-74.59812954,39.37189697,2010 GRANT AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_641_10,-74.550181,39.4628405,808 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_641_10,-74.43974044,39.3576641,808 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_641_11,-74.55241494,39.46915472,2005 MAGELLAN AVE,ATLANTIC CITY CITY,16,2005,1,RES1,3001 -0102_641_11,-74.43966353,39.35769823,2005 MAGELLAN AVE,ATLANTIC CITY CITY,16,2005,1,GOV1,3004 -0102_641_2,-74.6163594,39.60349615,2008 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_641_2,-74.601753,39.3704745,2008 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES4,3001 -0102_641_3,-74.61850299,39.60118266,2006 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_641_3,-74.609869,39.369765,2006 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_641_4,-74.4998015,39.336857,2004 GRANT AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_641_4,-74.616617,39.509056,2004 GRANT AVE,ATLANTIC CITY CITY,33,1902,1,GOV1,3004 -0102_641_5,-74.50976566,39.33947852,2002 GRANT AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_641_5,-74.57375709,39.55279411,2002 GRANT AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_641_6,-74.48718898,39.34762288,2000 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_641_6,-74.44709755,39.35627903,2000 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_641_7,-74.67719463,39.55818194,816 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_641_7,-74.59124351,39.37821479,816 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_641_8,-74.545607,39.4750445,812 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1994,1,RES1,3001 -0102_641_8,-74.44047435,39.35740264,812 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1994,1,RES1,3001 -0102_641_9,-74.60679968,39.43929866,810 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_641_9,-74.43987486,39.35765747,810 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_642_1,-74.7292751,39.45474864,2010 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_1,-74.597919,39.380429,2010 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,GOV1,3004 -0102_642_10,-74.84015467,39.37632091,908 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_10,-74.58018135,39.37603525,908 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_11,-74.6094931,39.59357976,906 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_11,-74.5990887,39.3829944,906 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_642_13,-74.7596245,39.4309945,902 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_13,-74.44240114,39.35666498,902 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_16,-74.67826871,39.486801,2005 GRANT AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_642_16,-74.44292602,39.3577489,2005 GRANT AVE,ATLANTIC CITY CITY,17,1915,1,GOV1,3004 -0102_642_18,-74.67013216,39.45657877,2009 GRANT AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_642_18,-74.44327514,39.35773998,2009 GRANT AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_642_19,-74.6789763,39.44591964,2011 GRANT AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_642_19,-74.44193603,39.3582926,2011 GRANT AVE,ATLANTIC CITY CITY,27,1915,2,RES1,3001 -0102_642_2,-74.83728222,39.40467196,2008 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_2,-74.59834809,39.36539022,2008 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_21,-74.70905646,39.4315602,901 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_21,-74.4427207,39.35711858,901 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_22,-74.758716,39.431939,903 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_22,-74.44269173,39.35677544,903 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_23,-74.75557528,39.43065377,905 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_23,-74.44278747,39.35648155,905 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_642_24,-74.60991266,39.58687938,907 KEENER AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_24,-74.617014,39.372118,907 KEENER AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_25,-74.83200416,39.40213701,909 KEENER AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_25,-74.55806194,39.38777733,909 KEENER AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_26,-74.718934,39.4514815,911 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,REL1,3004 -0102_642_26,-74.5892109,39.37598716,911 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_27,-74.724638,39.460909,913 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_27,-74.58886429,39.3773227,913 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_642_3,-74.83538416,39.4129534,2006 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_3,-74.6020367,39.3633038,2006 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_4,-74.842595,39.409272,2004 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_4,-74.6457655,39.329139,2004 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_5,-74.728427,39.4506115,2002 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_5,-74.6351145,39.349518,2002 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_6,-74.524077,39.420929,2000 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_6,-74.78295573,39.65076227,2000 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_7,-74.73019859,39.45533638,914 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_642_7,-74.59968707,39.38265801,914 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_642_8,-74.71218917,39.46979801,912 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1915,1,COM3,3004 -0102_642_8,-74.59813,39.3740555,912 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_642_9,-74.7369155,39.449717,910 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_642_9,-74.5913325,39.3799385,910 N MICHIGAN AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_1,-74.82033433,39.3998364,2022 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_1,-74.56252377,39.39087581,2022 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_10,-74.73595228,39.43355723,908 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_10,-74.44296298,39.35714682,908 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_11,-74.68110016,39.48660597,906 KEENER AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_643_11,-74.44278417,39.35746704,906 KEENER AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_643_12,-74.66498599,39.4547285,904 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_12,-74.44322289,39.35779284,904 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_643_13,-74.48456933,39.35243987,902 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_13,-74.44779118,39.35665027,902 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_14,-74.45303348,39.35266715,2013 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_14,-74.44724151,39.35655801,2013 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_643_15,-74.4825295,39.345049,2015 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_15,-74.44725842,39.35524835,2015 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_16,-74.478858,39.346051,2017 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_16,-74.44732106,39.35531742,2017 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_17,-74.48063005,39.34761578,2019 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,IND2,3002 -0102_643_17,-74.44772128,39.35587068,2019 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_18,-74.3768615,39.4005645,2021 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_18,-74.5484325,39.569788,2021 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_19,-74.5007355,39.33469417,2023 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_19,-74.59728352,39.52056333,2023 GRANT AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_2,-74.838588,39.3986345,2020 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_2,-74.58381812,39.37662757,2020 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_20,-74.452159,39.357052,901 EMERSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_20,-74.44705402,39.35662582,901 EMERSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_21,-74.46556355,39.35824217,903 EMERSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_21,-74.44760278,39.3570248,903 EMERSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_22,-74.68187,39.4465435,905 EMERSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_22,-74.44201201,39.35827105,905 EMERSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_23,-74.66566183,39.46189951,907 EMERSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_23,-74.44306254,39.3578571,907 EMERSON AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_3,-74.82878717,39.40946679,2018 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_643_3,-74.5825765,39.3700285,2018 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_643_4,-74.71876494,39.44872884,2016 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_643_4,-74.59097031,39.37572986,2016 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_643_5,-74.7483465,39.446147,2014 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_5,-74.58730233,39.37939233,2014 MCKINLEY AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_6,-74.72556481,39.45839491,2012 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_643_6,-74.60719419,39.37649854,2012 MCKINLEY AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_643_7,-74.65196016,39.57315101,914 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_7,-74.60079399,39.38145348,914 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_8,-74.6991525,39.5595415,912 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_8,-74.60028894,39.37302022,912 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_9,-74.75736382,39.43111568,910 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_643_9,-74.44244838,39.35691351,910 KEENER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_644_1,-74.61005563,39.4415609,2026 GRANT AVE,ATLANTIC CITY CITY,29,2002,2,RES1,3001 -0102_644_1,-74.43994953,39.35760052,2026 GRANT AVE,ATLANTIC CITY CITY,29,2002,2,RES1,3001 -0102_644_2,-74.5350145,39.471179,2024 GRANT AVE,ATLANTIC CITY CITY,29,2002,2,RES1,3001 -0102_644_2,-74.44004153,39.35756773,2024 GRANT AVE,ATLANTIC CITY CITY,29,2002,2,RES1,3001 -0102_644_3,-74.54967939,39.47764473,2022 GRANT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_644_3,-74.44067054,39.35730439,2022 GRANT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_644_4,-74.546116,39.4729825,2020 GRANT AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_644_4,-74.44136503,39.35757111,2020 GRANT AVE,ATLANTIC CITY CITY,45,1910,2,COM8,3004 -0102_644_5,-74.55326556,39.47468131,2016 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_644_5,-74.44164599,39.35750555,2016 GRANT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_645_1,-74.899048,39.5266345,2021 MAGELLAN AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_645_1,-74.44553171,39.35749997,2021 MAGELLAN AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_645_2,-74.94442984,39.50387946,2021 MAGELLAN AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_645_2,-74.44534676,39.35785343,2021 MAGELLAN AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_645_4,-74.934263,39.5209075,2013 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_645_4,-74.44568909,39.35771799,2013 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_645_5,-74.93222397,39.51910416,2011 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_645_5,-74.44573938,39.35778001,2011 MAGELLAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_645_6,-74.5468495,39.4697205,2009 MAGELLAN AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_645_6,-74.44017085,39.35777358,2009 MAGELLAN AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_646_1,-74.59696117,39.43660142,817 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_646_1,-74.4397855,39.35765285,817 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_646_2,-74.53899463,39.46253527,815 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_646_2,-74.44005523,39.35782053,815 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_646_3,-74.90377919,39.52974597,811 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_646_3,-74.44564261,39.35763484,811 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1915,1,RES1,3001 -0102_646_4,-74.89762,39.5268265,809 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_646_4,-74.44545526,39.35770702,809 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_646_5,-74.92175625,39.50851403,807 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_646_5,-74.44527684,39.35778149,807 N ARKANSAS AVE,ATLANTIC CITY CITY,33,1902,1,RES1,3001 -0102_646_6,-74.9338415,39.5034465,805 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1890,1,RES1,3001 -0102_646_6,-74.44501698,39.3579935,805 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1890,1,RES1,3001 -0102_648_12,-74.895357,39.4806345,1105 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_648_12,-74.44477792,39.35793415,1105 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_648_13,-74.88566,39.483292,1101 BEACH AVE,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_648_13,-74.44486093,39.35790344,1101 BEACH AVE,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_649_2,-74.41977019,39.36833243,1142 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_2,-74.4175271,39.37212791,1142 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_3,-74.38673339,39.39024235,1134 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_3,-74.41553134,39.37428053,1134 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_4,-74.93191,39.4895255,1126 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_4,-74.44474711,39.35809997,1126 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_5,-74.9188775,39.4997875,1116 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,COM5,3004 -0102_649_5,-74.44515667,39.35765742,1116 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_6,-74.91577958,39.48773105,1112 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_6,-74.44471551,39.35803696,1112 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_649_7,-74.89477352,39.50040566,1100 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES3A,3004 -0102_649_7,-74.44467551,39.35798238,1100 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_65_1,-74.50213988,39.32781584,506 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_65_1,-74.54680219,39.54599873,506 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_65_19,-74.50881867,39.330186,116 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,2,COM1,3002 -0102_65_19,-74.54983295,39.52670545,116 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_65_2,-74.50895307,39.32986316,111 S CONGRESS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_65_2,-74.56029304,39.53543753,111 S CONGRESS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_65_23,-74.50092004,39.32936885,104 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1930,4,GOV1,3004 -0102_65_23,-74.5921025,39.5058175,104 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1930,4,RES1,3001 -0102_65_24,-74.506761,39.3280245,102 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_65_24,-74.58601392,39.51608638,102 S MASSACHUSETTS AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_65_25,-74.50322317,39.32776244,504 PACIFIC AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_65_25,-74.576074,39.539612,504 PACIFIC AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_65_3,-74.50188805,39.33032916,115 S CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_65_3,-74.5685535,39.5103615,115 S CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_65_4,-74.5004865,39.33046,117 S CONGRESS AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_65_4,-74.5554333,39.50993171,117 S CONGRESS AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_65_5,-74.49956666,39.33044251,119 S CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_65_5,-74.88228307,39.49707431,119 S CONGRESS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_65_9,-74.50373443,39.33227033,127 S CONGRESS AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_65_9,-74.86886368,39.49456367,127 S CONGRESS AVE,ATLANTIC CITY CITY,,1920,1,RES1,3001 -0102_650_1,-74.381376,39.418151,2018 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_1,-74.80271174,39.62916913,2018 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_10,-74.494791,39.3413355,1104 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1967,1,RES1,3001 -0102_650_10,-74.41605429,39.37409203,1104 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1967,1,RES1,3001 -0102_650_11,-74.91273715,39.49992881,1105 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_11,-74.4450989,39.35787436,1105 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_12,-74.936073,39.481126,1109 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_12,-74.44531878,39.35758996,1109 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_650_13,-74.5002185,39.336547,1117 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_13,-74.41831484,39.37365466,1117 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_14,-74.37869585,39.40181209,1125 EMERSON PL,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_650_14,-74.41632122,39.37492188,1125 EMERSON PL,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_650_15,-74.43792665,39.37052776,1135 EMERSON PL,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_650_15,-74.41902635,39.37403374,1135 EMERSON PL,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_650_16,-74.36982595,39.40263769,1145 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_16,-74.41646761,39.37470482,1145 EMERSON PL,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_650_17,-74.37431232,39.41275059,1153 EMERSON PL,ATLANTIC CITY CITY,17,1963,1,GOV1,3004 -0102_650_17,-74.8045669,39.60717115,1153 EMERSON PL,ATLANTIC CITY CITY,17,1963,1,GOV1,3004 -0102_650_2,-74.4466269,39.37347003,2016 ERIE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_650_2,-74.8001775,39.6334025,2016 ERIE AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_650_4,-74.7758895,39.605695,1160 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_4,-74.42365458,39.36361851,1160 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_5,-74.37796564,39.40295977,1142 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_650_5,-74.81291334,39.61610795,1142 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_650_6,-74.36620118,39.41397096,1134 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_6,-74.41868329,39.37432305,1134 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_7,-74.40410034,39.39334328,1128 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_7,-74.41790869,39.37446159,1128 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_8,-74.38181347,39.39552089,1120 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_8,-74.41582489,39.37418712,1120 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_650_9,-74.50422816,39.33506794,1112 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_650_9,-74.41766895,39.37280877,1112 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_651_1,-74.8003335,39.614961,1942 ERIE AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_651_1,-74.42283007,39.36458782,1942 ERIE AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_651_10,-74.50280329,39.34287048,1105 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_10,-74.41816332,39.37555411,1105 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_12,-74.38675201,39.39447484,1113 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_12,-74.41590329,39.37430455,1113 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_13,-74.40363043,39.39075624,1121 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_651_13,-74.4157172,39.37454726,1121 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_651_14,-74.36157284,39.41306027,1129 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_14,-74.41893959,39.37336674,1129 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_15,-74.36886248,39.41482688,1141 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_651_15,-74.795874,39.6103095,1141 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_651_16,-74.38123315,39.41721819,1145 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_651_16,-74.80553184,39.62622403,1145 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_651_17,-74.510092,39.3859695,1149 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1959,2,RES1,3001 -0102_651_17,-74.81511593,39.63220865,1149 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1959,2,GOV1,3004 -0102_651_19,-74.78775826,39.61799509,1155 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_651_19,-74.42287497,39.36343758,1155 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_651_2,-74.81274065,39.62979858,1158 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_2,-74.42288431,39.36554146,1158 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_3,-74.88263916,39.59208258,1150 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_3,-74.42220137,39.36474797,1150 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_4,-74.75346152,39.59768806,1142 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_4,-74.42322143,39.36378175,1142 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_651_5,-74.38191076,39.41549237,1134 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_5,-74.79882598,39.62489084,1134 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_651_6,-74.37578155,39.41646257,1126 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_6,-74.87697421,39.59209459,1126 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_7,-74.3642888,39.40707187,1118 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_7,-74.41872935,39.37231088,1118 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_8,-74.40356276,39.38507674,1110 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_8,-74.41593246,39.37413763,1110 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_9,-74.397106,39.389361,1935 ONTARIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_651_9,-74.41674519,39.37304564,1935 ONTARIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_652_1,-74.8102767,39.55954954,1059 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_652_1,-74.42449066,39.36215003,1059 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_652_2,-74.45229317,39.35296191,1058 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_652_2,-74.41660269,39.37515605,1058 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_652_3,-74.829575,39.537735,1048 MONROE AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_652_3,-74.42555916,39.36245842,1048 MONROE AVE,ATLANTIC CITY CITY,17,1958,1,COM4,3004 -0102_652_4,-74.63526816,39.62625456,1040 MONROE AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_652_4,-74.42689268,39.36227954,1040 MONROE AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_652_5,-74.67673717,39.5676812,1041 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_652_5,-74.42731711,39.36286233,1041 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_652_6,-74.7829585,39.532051,1049 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_652_6,-74.42537728,39.36218248,1049 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_653_1,-74.498512,39.3369795,1059 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_653_1,-74.4187228,39.37357277,1059 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_653_10,-74.86748868,39.56101936,1044 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_10,-74.42441817,39.36336612,1044 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_11,-74.82187496,39.56931006,1042 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_11,-74.42379912,39.36219584,1042 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_12,-74.79871675,39.54336141,1040 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_12,-74.4251484,39.3616337,1040 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_13,-74.8525115,39.5367725,1038 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_13,-74.42514931,39.36207443,1038 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_14,-74.757044,39.5661165,1036 N OHIO AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_653_14,-74.42628576,39.3624748,1036 N OHIO AVE,ATLANTIC CITY CITY,45,1924,2,RES1,3001 -0102_653_15,-74.82046475,39.52818895,1041 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_653_15,-74.42512416,39.36200031,1041 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_653_16,-74.45377737,39.3530387,1049 MONROE AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_653_16,-74.41640578,39.37507007,1049 MONROE AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_653_2,-74.38705133,39.39104582,1060 N OHIO AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_653_2,-74.41607306,39.3745579,1060 N OHIO AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_653_3,-74.510214,39.3392185,1058 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,GOV1,3004 -0102_653_3,-74.42028294,39.37469574,1058 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3002 -0102_653_4,-74.50621746,39.33562265,1056 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_653_4,-74.41739647,39.37353643,1056 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_653_5,-74.50474377,39.34068765,1054 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_5,-74.41991974,39.37501925,1054 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_6,-74.48917915,39.33636166,1052 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_653_6,-74.41780615,39.37301267,1052 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3002 -0102_653_7,-74.48917941,39.33803183,1050 N OHIO AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_653_7,-74.41825712,39.37243318,1050 N OHIO AVE,ATLANTIC CITY CITY,33,1924,1,RES1,3001 -0102_653_8,-74.49414045,39.34231983,1048 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_653_8,-74.41550718,39.37566479,1048 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_653_9,-74.44911536,39.35439498,1046 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_653_9,-74.41651278,39.37502657,1046 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_10,-74.40216875,39.39068595,1106 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_10,-74.41886113,39.37510112,1106 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_11,-74.42356922,39.37919612,1104 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_11,-74.41869665,39.37485898,1104 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_12,-74.43873144,39.37133999,1102 N OHIO AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_654_12,-74.41693874,39.37296829,1102 N OHIO AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_654_13,-74.4008925,39.382776,1100 N OHIO AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_654_13,-74.42007798,39.37679522,1100 N OHIO AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_654_15,-74.407243,39.3823275,1909 ONTARIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_15,-74.42058113,39.37626167,1909 ONTARIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_16,-74.36466115,39.40927055,1909 ONTARIO AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_16,-74.41696722,39.37232854,1909 ONTARIO AVE RR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_17,-74.404523,39.3811015,1105 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_17,-74.42047222,39.37602538,1105 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_18,-74.36803638,39.40961724,1113 MONROE AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_654_18,-74.41624079,39.37416455,1113 MONROE AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_654_19,-74.3697947,39.41589286,1121 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_19,-74.86548571,39.59752516,1121 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_2,-74.91593859,39.51025352,1152 N OHIO AVE,ATLANTIC CITY CITY,17,1953,1,RES1,3001 -0102_654_2,-74.4238203,39.3733857,1152 N OHIO AVE,ATLANTIC CITY CITY,17,1953,1,RES1,3001 -0102_654_20,-74.4452195,39.3736975,1129 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_20,-74.79752984,39.63879346,1129 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_21,-74.779817,39.6137345,1137 MONROE AVE,ATLANTIC CITY CITY,17,1969,1,RES1,3004 -0102_654_21,-74.42395337,39.36351832,1137 MONROE AVE,ATLANTIC CITY CITY,17,1969,1,RES1,3001 -0102_654_22,-74.8736791,39.60194489,1145 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_22,-74.42243643,39.36471734,1145 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_3,-74.8276537,39.61284005,1140 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_3,-74.42305642,39.3645294,1140 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_4,-74.77493789,39.62685966,1130 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_654_4,-74.42235986,39.36270087,1130 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_5,-74.3804231,39.41771097,1128 N OHIO AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_654_5,-74.8002115,39.627412,1128 N OHIO AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_654_6,-74.72981117,39.58765,1124 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_6,-74.42346591,39.36368959,1124 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_654_7,-74.3635285,39.4156245,1112 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_7,-74.41633111,39.37430609,1112 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_8,-74.37017233,39.4042945,1110 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_8,-74.41666845,39.37256353,1110 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_9,-74.36296283,39.408949,1108 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_654_9,-74.41816941,39.37193672,1108 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_1,-74.93386562,39.52612946,1161 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_1,-74.4237428,39.37342154,1161 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_10,-74.519455,39.388502,1809 ONTARIO AVE,ATLANTIC CITY CITY,17,1968,1,RES1,3001 -0102_655_10,-74.813104,39.6357175,1809 ONTARIO AVE,ATLANTIC CITY CITY,17,1968,1,RES1,3001 -0102_655_12,-74.45418553,39.37367631,1829 ONTARIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_12,-74.8018375,39.6382585,1829 ONTARIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_14,-74.37244984,39.40934458,1101 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_655_14,-74.4156329,39.37440699,1101 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_655_15,-74.3597655,39.415271,1103 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_655_15,-74.4164218,39.37441561,1103 N OHIO AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_655_16,-74.8656485,39.568909,1105 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_16,-74.42445184,39.36247386,1105 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_17,-74.3744168,39.41684269,1107 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_17,-74.8789155,39.5930915,1107 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_18,-74.37108485,39.41548379,1109 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_18,-74.877455,39.603981,1109 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_19,-74.37292704,39.4107728,1111 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_19,-74.79837782,39.62130643,1111 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_2,-74.70867885,39.63959129,1822 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,IND2,3002 -0102_655_2,-74.42313443,39.37329714,1822 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_20,-74.379619,39.4189905,1113 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_20,-74.80355149,39.63010533,1113 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_21,-74.51463099,39.38498333,1115 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_21,-74.814469,39.635888,1115 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_655_22,-74.80774014,39.61277254,1133 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_22,-74.42270676,39.36464647,1133 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_23,-74.813526,39.626445,1137 N OHIO AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_655_23,-74.42293527,39.36552061,1137 N OHIO AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_655_24,-74.84875161,39.61019932,1145 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_24,-74.42534058,39.37114633,1145 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_25,-74.9256535,39.5074215,1151 N OHIO AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_655_25,-74.42287597,39.37303003,1151 N OHIO AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_655_3,-74.8953745,39.53749,1146 JEFFERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_3,-74.42406678,39.37331219,1146 JEFFERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_4,-74.89508678,39.47927226,1138 JEFFERSON PL,ATLANTIC CITY CITY,17,1968,1,GOV1,3004 -0102_655_4,-74.42363083,39.37299266,1138 JEFFERSON PL,ATLANTIC CITY CITY,17,1968,1,RES3A,3001 -0102_655_5,-74.79904155,39.63489416,1132 JEFFERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_5,-74.42855441,39.36902068,1132 JEFFERSON PL,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_655_7,-74.7989105,39.597738,1124 JEFFERSON PL,ATLANTIC CITY CITY,17,1968,1,RES1,3001 -0102_655_7,-74.42303932,39.36347704,1124 JEFFERSON PL,ATLANTIC CITY CITY,17,1968,1,RES1,3001 -0102_655_8,-74.788593,39.6389915,1118 JEFFERSON PL,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_655_8,-74.42271064,39.36314053,1118 JEFFERSON PL,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_656_1,-74.40183336,39.38280607,1063 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_656_1,-74.41718945,39.37293217,1063 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_656_10,-74.3963099,39.38781872,1823 MARMORA AVE,ATLANTIC CITY CITY,16,2011,1,RES1,3001 -0102_656_10,-74.41710377,39.37496165,1823 MARMORA AVE,ATLANTIC CITY CITY,16,2011,1,RES1,3001 -0102_656_11,-74.3899675,39.3936085,1825 MARMORA AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_656_11,-74.41661851,39.37423189,1825 MARMORA AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_656_13,-74.48941365,39.33729416,1045 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_656_13,-74.41616851,39.37404451,1045 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_656_14,-74.48859817,39.3362715,1047 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_14,-74.41703286,39.37485365,1047 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_15,-74.5031325,39.3386785,1049 N OHIO AVE,ATLANTIC CITY CITY,33,1929,1,RES1,3001 -0102_656_15,-74.41738617,39.37285485,1049 N OHIO AVE,ATLANTIC CITY CITY,33,1929,1,RES1,3001 -0102_656_16,-74.50115868,39.3351776,1051 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_656_16,-74.41797854,39.37201507,1051 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_17,-74.51033375,39.33807955,1053 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_17,-74.41878256,39.37547657,1053 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_18,-74.39786223,39.39299639,1055 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_18,-74.41857681,39.37269695,1055 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_19,-74.39695133,39.38609461,1057 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_19,-74.41623799,39.37480486,1057 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_2.01,-74.40651148,39.37791067,1818 ONTARIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_656_2.01,-74.42107866,39.37528826,1818 ONTARIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_656_2.02,-74.4386345,39.369368,1816 ONTARIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_656_2.02,-74.41788887,39.37514466,1816 ONTARIO AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_656_2.03,-74.5005125,39.334803,1829 MARMORA AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_656_2.03,-74.41792652,39.37332258,1829 MARMORA AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_656_2.04,-74.370276,39.401982,1827 MARMORA AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_656_2.04,-74.41715745,39.37195551,1827 MARMORA AVE,ATLANTIC CITY CITY,27,2001,2,RES1,3001 -0102_656_20,-74.37793047,39.39972974,1059 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_20,-74.41622461,39.37434658,1059 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_21,-74.420652,39.3705725,1061 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_21,-74.41695879,39.37474456,1061 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_656_3,-74.401809,39.3855145,1810 ONTARIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_656_3,-74.41735943,39.37228528,1810 ONTARIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_656_8,-74.4305585,39.368721,1801 MARMORA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_656_8,-74.42006509,39.37540096,1801 MARMORA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_657_1,-74.8085975,39.6478775,1142 N INDIANA AVE,ATLANTIC CITY CITY,17,1951,1,RES1,3001 -0102_657_1,-74.42546081,39.37321503,1142 N INDIANA AVE,ATLANTIC CITY CITY,17,1951,1,GOV1,3004 -0102_657_10,-74.80926651,39.58869817,1803 ONTARIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_657_10,-74.42277599,39.36323933,1803 ONTARIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_657_4,-74.77835511,39.64047714,1140 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_657_4,-74.42552502,39.37289239,1140 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_657_5,-74.9520215,39.5285125,1138 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_657_5,-74.4236758,39.37347054,1138 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_657_6,-74.91132296,39.52546137,1136 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_657_6,-74.42349166,39.37276111,1136 N INDIANA AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_657_7,-74.88339262,39.49764621,1126 N INDIANA AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_657_7,-74.4247899,39.3734916,1126 N INDIANA AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_657_8,-74.804682,39.6339435,1122 N INDIANA AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_657_8,-74.42828907,39.36914217,1122 N INDIANA AVE,ATLANTIC CITY CITY,16,1900,1,IND2,3002 -0102_657_9.01,-74.80368923,39.63053752,1106 N INDIANA AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_657_9.01,-74.42288109,39.36531782,1106 N INDIANA AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_657_9.02,-74.792705,39.6057865,1105 JEFFERSON PL,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_657_9.02,-74.42304218,39.36243877,1105 JEFFERSON PL,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_658_1,-74.46350883,39.34783634,1700 HURON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_658_1,-74.44638552,39.35522813,1700 HURON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_658_2,-74.819051,39.653189,1700 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_658_2,-74.42518598,39.37408297,1700 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_658_3,-74.9409485,39.5234935,1700 MARMORA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_658_3,-74.42504681,39.37292753,1700 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_659_1,-74.49606473,39.47488703,1600 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_659_1,-74.44379345,39.35903314,1600 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_660_1,-74.89091673,39.47580394,1200 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_660_1,-74.44491491,39.3578787,1200 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_660_2,-74.51198822,39.33049171,1012-1066 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_660_2,-74.4149634,39.37082419,1012-1066 N KENTUCKY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_660_3,-74.80869481,39.63112617,1008 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_660_3,-74.44528438,39.35731848,1008 N KENTUCKY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_660_4,-74.8083626,39.63909863,1601 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_660_4,-74.42860068,39.36899748,1601 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_660_5,-74.81053077,39.63573318,1613 MARMORA AVE,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_660_5,-74.42840301,39.36908199,1613 MARMORA AVE,ATLANTIC CITY CITY,17,1966,1,COM1,3004 -0102_660_7,-74.80426983,39.62552649,1617 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_660_7,-74.42286115,39.365272,1617 MARMORA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_660_8,-74.82611448,39.61368727,1001 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_660_8,-74.42296618,39.36455342,1001 N DR MARTIN LUTHER K,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_661_1,-74.8840192,39.46301317,1501 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_661_1,-74.44499521,39.35785004,1501 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_662_1,-74.88480597,39.46385018,1001 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_662_1,-74.44506944,39.35781545,1001 N NEW YORK AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_662_2,-74.84389386,39.6236344,1419 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_662_2,-74.44512433,39.35779108,1419 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_662_3,-74.8619375,39.6180505,1417 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_662_3,-74.44546104,39.357267,1417 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_662_4,-74.81778584,39.63281548,1415 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_662_4,-74.44536346,39.35728956,1415 MARMORA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_663_1,-74.50571738,39.41266545,1260 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_1,-74.41959479,39.37265956,1260 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_2,-74.5235304,39.39035969,1256 N INDIANA AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_663_2,-74.41654567,39.37412368,1256 N INDIANA AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_663_4,-74.48360429,39.34982176,1236 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_4,-74.41564643,39.37177743,1236 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,IND1,3002 -0102_663_5,-74.4622395,39.3467905,1230 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_5,-74.41515159,39.37075611,1230 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,REL1,3004 -0102_663_6,-74.51976859,39.31952217,1222 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_6,-74.41601812,39.36995699,1222 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_7,-74.505498,39.3282455,1216 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_7,-74.41646697,39.37023195,1216 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_8,-74.79360577,39.60366669,1210 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_8,-74.63438406,39.39089771,1210 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_663_9,-74.86058245,39.54242934,1200 N INDIANA AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_663_9,-74.62058612,39.37464681,1200 N INDIANA AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_664_1,-74.35812337,39.41184787,1263 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_664_1,-74.41837836,39.37178613,1263 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_664_10,-74.83134101,39.64364195,1823 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_10,-74.42495262,39.37375871,1823 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_11,-74.800364,39.6448255,1201 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_11,-74.42497856,39.37340601,1201 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_13,-74.49244105,39.33428558,1215 N OHIO AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_664_13,-74.42348284,39.37497419,1215 N OHIO AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_664_16,-74.72761905,39.58726234,1227 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_664_16,-74.65083738,39.37130539,1227 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_17,-74.52031186,39.32188047,1247 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_664_17,-74.41681329,39.3693385,1247 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_18,-74.51239067,39.33152996,1249 N OHIO AVE,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_664_18,-74.41489192,39.37066432,1249 N OHIO AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_664_19,-74.5133375,39.330018,1251 N OHIO AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_664_19,-74.41480328,39.37020989,1251 N OHIO AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_664_20,-74.46076383,39.34714,1253 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,GOV1,3004 -0102_664_20,-74.4158565,39.37036357,1253 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_664_21,-74.47977648,39.34218692,1255 N OHIO AVE,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_664_21,-74.41566155,39.37012176,1255 N OHIO AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_664_22,-74.4805475,39.3381745,1257 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_664_22,-74.41482921,39.37056907,1257 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_664_23,-74.46946309,39.34326516,1259 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_664_23,-74.41626294,39.37189792,1259 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_664_24,-74.48310745,39.34402994,1261 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_664_24,-74.42054039,39.37433093,1261 N OHIO AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_664_3,-74.37083031,39.41496305,1254 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_3,-74.41654041,39.37319711,1254 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_4,-74.48356916,39.34013701,1246 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_4,-74.41500746,39.36957079,1246 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_5,-74.51084857,39.3342927,1238 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_5,-74.41461221,39.36994926,1238 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_664_6,-74.50350634,39.32623399,1228 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_664_6,-74.4170561,39.36973676,1228 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_664_7,-74.7762645,39.598566,1222 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_664_7,-74.632155,39.3911275,1222 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_664_8,-74.85195667,39.5507925,1216 PENROSE AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_664_8,-74.62907,39.36957,1216 PENROSE AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_664_9,-74.52495495,39.31666483,1208 PENROSE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_664_9,-74.42541931,39.37275853,1208 PENROSE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_665_1,-74.52394402,39.31927017,1261 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_1,-74.41443295,39.37003769,1261 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_10,-74.78340883,39.67279263,1221 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_665_10,-74.42477848,39.37225195,1221 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_11,-74.419085,39.366558,1229 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_11,-74.42293508,39.37310109,1229 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_12,-74.49039917,39.33351106,1237 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_12,-74.4235973,39.37491405,1237 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_13,-74.77648257,39.5916298,1245 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_13,-74.6338945,39.3914775,1245 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_14,-74.50890466,39.32693671,1253 MONROE AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_665_14,-74.41633559,39.3694718,1253 MONROE AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_665_2,-74.45971291,39.34855633,1258 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_2,-74.4147983,39.36988762,1258 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_665_3,-74.51375743,39.3203703,1250 N OHIO AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_665_3,-74.41612688,39.37012425,1250 N OHIO AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_665_4,-74.76454048,39.61054919,1236 N OHIO AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_665_4,-74.6310855,39.389471,1236 N OHIO AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_665_5,-74.504483,39.3242705,1228 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_5,-74.42285358,39.37425319,1228 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_6,-74.818097,39.640963,1216 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_665_6,-74.42455995,39.3731397,1216 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_7,-74.88949046,39.56628491,1200 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_7,-74.4241593,39.37257653,1200 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_665_8,-74.949117,39.5139945,1205 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_665_8,-74.4250037,39.3725786,1205 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_665_9,-74.69061452,39.6549089,1213 MONROE AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_665_9,-74.4243138,39.37343054,1213 MONROE AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_666_1,-74.79030486,39.61959654,1255 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_1,-74.638851,39.401516,1255 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_666_10,-74.93378258,39.49674468,1205 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_10,-74.423037,39.37324625,1205 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_11,-74.9525365,39.5113375,1213 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_666_11,-74.42463343,39.37229643,1213 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_666_12,-74.953899,39.5338085,1223 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_666_12,-74.42580838,39.3727176,1223 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_666_13,-74.71976826,39.64035143,1229 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_666_13,-74.42491881,39.37299853,1229 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_666_14,-74.792828,39.646278,1233 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_666_14,-74.4255238,39.37444837,1233 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_666_15,-74.82550253,39.64635266,1237 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1956,2,RES3A,3001 -0102_666_15,-74.42505181,39.37256053,1237 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1956,2,RES1,3001 -0102_666_16,-74.42859183,39.36574957,1241 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_666_16,-74.42433499,39.37283368,1241 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_666_17,-74.52504642,39.31486425,1245 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1957,2,RES1,3001 -0102_666_17,-74.42491265,39.3726247,1245 N MICHIGAN AVE,ATLANTIC CITY CITY,27,1957,2,COM1,3004 -0102_666_2,-74.50031233,39.33165854,1258 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_2,-74.41651921,39.36914629,1258 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_3,-74.74681928,39.59170415,1250 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_3,-74.629234,39.392754,1250 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_4,-74.50896401,39.32347867,1242 MONROE AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_666_4,-74.42235192,39.37395144,1242 MONROE AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_666_5,-74.79869162,39.66023856,1234 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_5,-74.42335145,39.37286011,1234 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_6,-74.78340594,39.66448233,1226 MONROE AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_666_6,-74.42350297,39.37350936,1226 MONROE AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_666_7,-74.96037965,39.5296625,1218 MONROE AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_666_7,-74.42466871,39.37271418,1218 MONROE AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_666_8,-74.96819294,39.50575369,1210 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_8,-74.42501109,39.37216977,1210 MONROE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_666_9,-74.92392534,39.50935466,1200 MONROE AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_666_9,-74.42352091,39.37316712,1200 MONROE AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_667_1,-74.79741392,39.64283091,1238 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_667_1,-74.42533217,39.37325849,1238 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_667_10,-74.92645685,39.50818654,2028 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_10,-74.42464308,39.37394462,2028 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_11,-74.96764714,39.52097518,2018 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_11,-74.42424221,39.3727057,2018 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_2,-74.94129935,39.52527268,1226 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_667_2,-74.42474921,39.37412984,1226 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_667_3,-74.913998,39.4895895,1200 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_667_3,-74.4247778,39.3726527,1200 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_4,-74.85399123,39.61639974,2009 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_4,-74.42539319,39.37109607,2009 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_5,-74.794995,39.63834029,2017 ERIE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_667_5,-74.42294998,39.36538223,2017 ERIE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_667_6,-74.86578767,39.59698328,2027 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_6,-74.42289309,39.36293167,2027 ERIE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_7,-74.78130864,39.60208189,2037 ERIE AVE,ATLANTIC CITY CITY,16,1961,1,RES1,3001 -0102_667_7,-74.42313256,39.36383174,2037 ERIE AVE,ATLANTIC CITY CITY,16,1961,1,RES1,3001 -0102_667_8,-74.82814248,39.62229147,2046 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_667_8,-74.42324564,39.36519983,2046 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_667_9,-74.81101901,39.63445533,2036 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_667_9,-74.42835625,39.36910122,2036 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_669_1,-74.72430131,39.64431854,2100 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_669_1,-74.42522048,39.37331197,2100 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_669_10,-74.77946671,39.58739356,2130 E RIVERSIDE DR,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_669_10,-74.42339408,39.36374626,2130 E RIVERSIDE DR,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_669_3,-74.93971722,39.52660066,2104 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1993,1,RES1,3001 -0102_669_3,-74.42453438,39.37374022,2104 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1993,1,RES1,3001 -0102_669_4,-74.91928958,39.52023564,2108 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_669_4,-74.42397668,39.37335019,2108 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_669_5,-74.8852855,39.4838105,2112 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1900,2,REL1,3004 -0102_669_5,-74.42147518,39.37266133,2112 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_669_6,-74.799526,39.634786,2116 E RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_669_6,-74.42817448,39.36916542,2116 E RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_670_1,-74.79889066,39.66859598,2040 E RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,COM10,3003 -0102_670_1,-74.4231093,39.37290937,2040 E RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_670_11,-74.6456865,39.3782625,1914 E RIVERSIDE DR,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_670_11,-74.43984918,39.35790047,1914 E RIVERSIDE DR,ATLANTIC CITY CITY,16,1920,1,REL1,3002 -0102_670_12,-74.46259073,39.46682172,1910 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_670_12,-74.41548671,39.36446923,1910 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_670_13,-74.51543699,39.32745833,1906 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_670_13,-74.44639941,39.35558053,1906 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_670_2,-74.80623,39.552629,2030 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_670_2,-74.61311118,39.42821403,2030 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_670_4,-74.5079415,39.328227,2024 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_670_4,-74.41624624,39.36987943,2024 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_670_5,-74.5245055,39.319833,2020 E RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_670_5,-74.41664224,39.36940081,2020 E RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_670_6,-74.48676833,39.3344735,2002 E RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_670_6,-74.41535895,39.36965275,2002 E RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_670_7,-74.45039785,39.37317806,1928 E RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_670_7,-74.41580892,39.3746786,1928 E RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_670_8,-74.5070875,39.4071755,1920 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_670_8,-74.42001233,39.37428973,1920 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_672_2,-74.52025877,39.39684782,1310 N OHIO AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3002 -0102_672_2,-74.41596987,39.37490163,1310 N OHIO AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_672_3,-74.3815345,39.4176915,1300 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_672_3,-74.41922136,39.37383272,1300 N OHIO AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_672_4,-74.51396752,39.39905632,1915 HURON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_672_4,-74.41658029,39.37466255,1915 HURON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_673_1,-74.67839883,39.38543348,1824 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_673_1,-74.44038532,39.35874215,1824 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_673_10,-74.46085574,39.45359963,1325 N OHIO AVE,ATLANTIC CITY CITY,17,1960,1,RES3A,3001 -0102_673_10,-74.41656171,39.36447426,1325 N OHIO AVE,ATLANTIC CITY CITY,17,1960,1,RES3B,3001 -0102_673_11,-74.6327575,39.3917735,1331 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_673_11,-74.43999517,39.35803641,1331 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_12,-74.65804501,39.39810467,1832 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_673_12,-74.44023764,39.35824015,1832 HORACE BRYANT JR DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_2,-74.6803045,39.3807875,1336 PENROSE AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_673_2,-74.44033688,39.35852236,1336 PENROSE AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_673_3,-74.64178534,39.38760412,1328 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_3,-74.44013758,39.35811551,1328 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_4,-74.63003326,39.39055389,1322 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_4,-74.43989659,39.35795973,1322 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_5,-74.479119,39.443805,1306 PENROSE AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_673_5,-74.41588592,39.36487599,1306 PENROSE AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3004 -0102_673_6,-74.49240927,39.43548011,1300 PENROSE AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_673_6,-74.41246776,39.36786375,1300 PENROSE AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_673_7,-74.51324,39.402579,1835 HURON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_673_7,-74.42146994,39.36714939,1835 HURON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_673_8,-74.5053695,39.4080735,1305 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_8,-74.41702739,39.3733216,1305 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_9,-74.4936555,39.435343,1311 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_673_9,-74.41346091,39.36734354,1311 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3002 -0102_674_3,-74.68482685,39.37908748,1330 N INDIANA AVE,ATLANTIC CITY CITY,16,1996,1,RES1,3001 -0102_674_3,-74.44031511,39.35861673,1330 N INDIANA AVE,ATLANTIC CITY CITY,16,1996,1,RES1,3001 -0102_674_4,-74.51735433,39.44527148,1322 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_674_4,-74.41696561,39.36385899,1322 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_674_5,-74.46259886,39.34675284,1308 N INDIANA AVE,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_674_5,-74.44612398,39.35527515,1308 N INDIANA AVE,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_674_6,-74.47111459,39.4463439,1300 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_674_6,-74.41571333,39.36437536,1300 N INDIANA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_675_1,-74.68365512,39.37783011,1801 HORACE BRYANT DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_675_1,-74.44034924,39.35868482,1801 HORACE BRYANT DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_676_1,-74.47528788,39.49252095,1830 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_676_1,-74.4105202,39.36562487,1830 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_676_2,-74.51503606,39.47177878,1826 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_676_2,-74.44412869,39.35892236,1826 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_676_3,-74.45427063,39.52178464,1822 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_676_3,-74.4433556,39.35835587,1822 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1922,1,RES1,3001 -0102_676_4,-74.5911819,39.31197435,1820 E RIVERSIDE DR,ATLANTIC CITY CITY,14,1900,1,RES1,3001 -0102_676_4,-74.45790907,39.35444922,1820 E RIVERSIDE DR,ATLANTIC CITY CITY,14,1900,1,RES1,3001 -0102_676_5,-74.58935688,39.32379767,1818 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_676_5,-74.46078657,39.35601416,1818 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_676_6,-74.6363985,39.409753,1816 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_676_6,-74.44042914,39.3587801,1816 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1922,2,RES1,3001 -0102_676_7,-74.81472378,39.63342958,1812 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1922,2,RES1,3002 -0102_676_7,-74.44505012,39.3574126,1812 E RIVERSIDE DR,ATLANTIC CITY CITY,45,1922,2,RES1,3002 -0102_676_8,-74.81238565,39.6324972,1808 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_676_8,-74.44514984,39.35742829,1808 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_677_1,-74.55617569,39.3642162,1458 ABSECON BLVD,ATLANTIC CITY CITY,16,1978,1,RES1,3001 -0102_677_1,-74.45835696,39.35236973,1458 ABSECON BLVD,ATLANTIC CITY CITY,16,1978,1,RES1,3001 -0102_677_11,-74.62547859,39.38036574,1417 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_677_11,-74.44488565,39.35907341,1417 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_677_12,-74.56646004,39.35444632,1431 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_677_12,-74.45620398,39.35166644,1431 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_677_2,-74.55767903,39.36610912,1450 ABSECON BLVD,ATLANTIC CITY CITY,17,1972,1,RES1,3001 -0102_677_2,-74.45661495,39.35083143,1450 ABSECON BLVD,ATLANTIC CITY CITY,17,1972,1,RES1,3001 -0102_677_3,-74.57324735,39.35366212,1440 ABSECON BLVD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_677_3,-74.45612737,39.35182956,1440 ABSECON BLVD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_677_5,-74.55218744,39.36047485,1415 PENROSE AVE,ATLANTIC CITY CITY,,0,1,EDU1,3004 -0102_677_5,-74.45671642,39.35212391,1415 PENROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_677_6,-74.56655918,39.34411824,1411 PENROSE AVE,ATLANTIC CITY CITY,17,1925,1,RES3A,3001 -0102_677_6,-74.45556384,39.35137256,1411 PENROSE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_677_8,-74.56771362,39.34953967,1400 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_677_8,-74.45666568,39.35267386,1400 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_678_1,-74.59024015,39.35050168,1800 GRAMMERCY AVE,ATLANTIC CITY CITY,45,2006,2,GOV1,3004 -0102_678_1,-74.42608427,39.3597684,1800 GRAMMERCY AVE,ATLANTIC CITY CITY,45,2006,2,RES1,3001 -0102_678_10,-74.56737159,39.36489722,1505 PENROSE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_678_10,-74.4278894,39.36102942,1505 PENROSE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_678_14,-74.5673295,39.367863,1511 PENROSE AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_678_14,-74.4576268,39.3514458,1511 PENROSE AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_678_15,-74.57200674,39.36783411,1513 PENROSE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_678_15,-74.45689281,39.35072943,1513 PENROSE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_678_16,-74.57239866,39.36414923,1515 PENROSE AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_678_16,-74.42761886,39.3610259,1515 PENROSE AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_678_17,-74.567891,39.3612205,1517 PENROSE AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_678_17,-74.42790179,39.36141429,1517 PENROSE AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_678_18,-74.5825685,39.339938,1519 PENROSE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_678_18,-74.42886515,39.36147549,1519 PENROSE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_678_19,-74.5837398,39.33834866,1521 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_678_19,-74.42787782,39.35974635,1521 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_678_20,-74.64117042,39.36902926,1523 PENROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_678_20,-74.43982912,39.35785852,1523 PENROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_678_8,-74.5824955,39.341666,1509 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_678_8,-74.4283665,39.36162858,1509 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES2,3005 -0102_678_9,-74.56867766,39.36235117,1507 PENROSE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_678_9,-74.4276756,39.36107951,1507 PENROSE AVE,ATLANTIC CITY CITY,17,1925,1,COM3,3004 -0102_679_1,-74.57026837,39.36823848,1538 PENROSE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_679_1,-74.4576513,39.35157924,1538 PENROSE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_679_11,-74.61867193,39.4299489,1500 PENROSE AVE,ATLANTIC CITY CITY,17,1923,1,RES1,3001 -0102_679_11,-74.44390113,39.36039665,1500 PENROSE AVE,ATLANTIC CITY CITY,17,1923,1,RES3A,3001 -0102_679_13,-74.6010098,39.43462144,1501 N OHIO AVE,ATLANTIC CITY CITY,16,1948,1,RES1,3001 -0102_679_13,-74.44473486,39.3591771,1501 N OHIO AVE,ATLANTIC CITY CITY,16,1948,1,RES1,3001 -0102_679_14,-74.5998178,39.43212846,1505 N OHIO AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_679_14,-74.44480813,39.35912802,1505 N OHIO AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_679_16,-74.59979497,39.429466,1507 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_679_16,-74.4433182,39.36073526,1507 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_679_18,-74.61904219,39.43291895,1515 N OHIO AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_679_18,-74.44327547,39.36068251,1515 N OHIO AVE,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_679_2,-74.55877539,39.36387903,1536 PENROSE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_679_2,-74.45774568,39.35170717,1536 PENROSE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_679_22,-74.62554767,39.38116316,1521 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,COM3,3004 -0102_679_22,-74.44349953,39.36049638,1521 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_679_25,-74.5656992,39.35493103,1529 N OHIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_679_25,-74.45562666,39.35170601,1529 N OHIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_679_3,-74.63792252,39.38332218,1534 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_679_3,-74.43978999,39.35780574,1534 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_679_4,-74.62477972,39.37936014,1532 PENROSE AVE,ATLANTIC CITY CITY,17,1926,1,RES1,3001 -0102_679_4,-74.44047113,39.35821595,1532 PENROSE AVE,ATLANTIC CITY CITY,17,1926,1,RES1,3001 -0102_679_5,-74.56091994,39.36603773,1530 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_679_5,-74.45838129,39.35135006,1530 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_679_6,-74.57167517,39.35229179,1528 PENROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_679_6,-74.45610775,39.35155883,1528 PENROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_679_9,-74.628807,39.381183,1502 PENROSE AVE,ATLANTIC CITY CITY,16,1992,1,RES1,3001 -0102_679_9,-74.44378033,39.36024795,1502 PENROSE AVE,ATLANTIC CITY CITY,16,1992,1,RES1,3001 -0102_680_11,-74.53661963,39.30541846,1403 N OHIO AVE,ATLANTIC CITY CITY,17,1925,1,COM1,3004 -0102_680_11,-74.44316626,39.35817516,1403 N OHIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_680_12,-74.5796185,39.3120095,1405 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_12,-74.44604424,39.36003875,1405 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_13,-74.59339411,39.31194317,1407 N OHIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_680_13,-74.4578305,39.35429656,1407 N OHIO AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_680_14,-74.593641,39.320182,1409 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_14,-74.46060244,39.35605484,1409 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_15,-74.58872011,39.33262241,1413 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_15,-74.45579758,39.35330817,1413 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_680_16,-74.61349381,39.42768434,1415 N OHIO AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_680_16,-74.4446513,39.35923213,1415 N OHIO AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_680_19,-74.6009543,39.43557344,1838 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,EDU1,3004 -0102_680_19,-74.44470053,39.3592013,1838 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_680_3,-74.602453,39.43246784,1430 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_680_3,-74.44477269,39.3591579,1430 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_5,-74.60304884,39.33094214,1420 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_5,-74.45509502,39.35209708,1420 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_680_6,-74.6114055,39.32038,1416 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_6,-74.45550742,39.35265269,1416 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_7,-74.58078734,39.33252101,1404 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_7,-74.45425852,39.35379087,1404 PENROSE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_680_9,-74.50276373,39.50115553,1835 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1954,1,COM7,3004 -0102_680_9,-74.44397732,39.35846794,1835 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_681_1,-74.52759586,39.52751054,1432 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,AGR1,3001 -0102_681_1,-74.44324347,39.35825868,1432 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_681_10,-74.47076963,39.48707696,1400 N OHIO AVE,ATLANTIC CITY CITY,17,1923,1,RES1,3001 -0102_681_10,-74.41259306,39.36486914,1400 N OHIO AVE,ATLANTIC CITY CITY,17,1923,1,RES1,3001 -0102_681_11,-74.4872585,39.3387225,1401 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_681_11,-74.44671216,39.35609676,1401 MADISON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_681_12,-74.4851835,39.336158,1405 MADISON AVE,ATLANTIC CITY CITY,17,1930,1,REL1,3004 -0102_681_12,-74.44690857,39.35630065,1405 MADISON AVE,ATLANTIC CITY CITY,17,1930,1,COM4,3004 -0102_681_13,-74.49298492,39.46211207,1407 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_681_13,-74.41713383,39.36355046,1407 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_681_14,-74.47596761,39.48602577,1435 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_681_14,-74.41112946,39.36508875,1435 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_681_15,-74.4670405,39.4926625,1425 MADISON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_681_15,-74.41110881,39.36607435,1425 MADISON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_681_16,-74.46673987,39.49616441,1463 MADISON AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_681_16,-74.44392678,39.35898674,1463 MADISON AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_681_3,-74.50323061,39.50187829,1428 N OHIO AVE,ATLANTIC CITY CITY,17,1929,1,RES1,3001 -0102_681_3,-74.44411556,39.35841827,1428 N OHIO AVE,ATLANTIC CITY CITY,17,1929,1,RES1,3001 -0102_681_5,-74.49324225,39.49542109,1422 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_681_5,-74.4444031,39.35896353,1422 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_681_6,-74.47045779,39.49030214,1418 N OHIO AVE,ATLANTIC CITY CITY,45,2017,2,RES1,3001 -0102_681_6,-74.44373926,39.35888224,1418 N OHIO AVE,ATLANTIC CITY CITY,45,2017,2,RES1,3001 -0102_681_7,-74.45261953,39.50329876,1416 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_681_7,-74.41076708,39.36622512,1416 N OHIO AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_681_8,-74.463648,39.4928645,1402 N OHIO AVE #A,ATLANTIC CITY CITY,14,1900,1,RES1,3001 -0102_681_8,-74.41058177,39.36603673,1402 N OHIO AVE #A,ATLANTIC CITY CITY,14,1900,1,RES1,3001 -0102_681_9,-74.45059393,39.49249129,1402 N OHIO AVE,ATLANTIC CITY CITY,14,1900,1,RES1,3001 -0102_681_9,-74.41167635,39.36555868,1402 N OHIO AVE,ATLANTIC CITY CITY,14,1900,1,RES1,3001 -0102_682_1,-74.609267,39.327626,1562 OHIO AVE,ATLANTIC CITY CITY,17,1994,1,GOV1,3004 -0102_682_1,-74.45504892,39.35227961,1562 OHIO AVE,ATLANTIC CITY CITY,17,1994,1,RES1,3001 -0102_682_10,-74.59319923,39.32484228,1901 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_10,-74.46072013,39.35592857,1901 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_11,-74.49659493,39.49794665,1915 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_11,-74.44428833,39.35831231,1915 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_12,-74.49988583,39.499397,1505 MADISON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_682_12,-74.44424899,39.3584658,1505 MADISON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_682_13,-74.43704118,39.51934049,1507 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_13,-74.44373068,39.35839957,1507 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_14,-74.53620957,39.31314011,1509 MADISON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_682_14,-74.44330231,39.35808469,1509 MADISON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_682_15,-74.5979115,39.315573,1511 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_15,-74.46044481,39.35559543,1511 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_18,-74.59516,39.3225945,1517 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_682_18,-74.46085243,39.3561002,1517 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_19,-74.59158312,39.31891545,1521 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_682_19,-74.46044528,39.3558582,1521 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,GOV1,3004 -0102_682_20,-74.58786199,39.33260567,1523 MADISON AVE,ATLANTIC CITY CITY,29,1918,2,GOV1,3004 -0102_682_20,-74.45586539,39.35339299,1523 MADISON AVE,ATLANTIC CITY CITY,29,1918,2,RES1,3001 -0102_682_21,-74.58778333,39.32711043,1525 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_682_21,-74.45432675,39.35243404,1525 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_22,-74.60340195,39.32136918,1527 MADISON AVE,ATLANTIC CITY CITY,17,1906,1,GOV1,3004 -0102_682_22,-74.45414609,39.35212991,1527 MADISON AVE,ATLANTIC CITY CITY,17,1906,1,RES1,3001 -0102_682_23,-74.60170482,39.32058389,1529 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_23,-74.45538901,39.35282307,1529 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_682_24,-74.61358905,39.32058516,1531 MADISON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_682_24,-74.45545992,39.35254532,1531 MADISON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_682_6,-74.60554294,39.42383076,1520 N OHIO AVE,ATLANTIC CITY CITY,16,1994,1,RES1,3001 -0102_682_6,-74.44460427,39.3592505,1520 N OHIO AVE,ATLANTIC CITY CITY,16,1994,1,RES1,3001 -0102_682_7,-74.58866558,39.42822113,1514 N OHIO AVE,ATLANTIC CITY CITY,17,1995,1,GOV1,3004 -0102_682_7,-74.44454817,39.35924136,1514 N OHIO AVE,ATLANTIC CITY CITY,17,1995,1,GOV1,3004 -0102_682_8,-74.5830875,39.33057,1508 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_682_8,-74.45573427,39.35322963,1508 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_683_1,-74.52850048,39.51113136,1532 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_683_1,-74.44328261,39.35831677,1532 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_683_10,-74.46248422,39.49101924,1516 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_683_10,-74.41106467,39.36585255,1516 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_13,-74.48636907,39.47873323,1512 MADISON AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_683_13,-74.41190895,39.36564905,1512 MADISON AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_683_14,-74.4512166,39.4780213,1500 MADISON AVE,ATLANTIC CITY CITY,17,1988,1,RES1,3001 -0102_683_14,-74.41139035,39.36426928,1500 MADISON AVE,ATLANTIC CITY CITY,17,1988,1,RES1,3001 -0102_683_16,-74.46507532,39.34618252,1501 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_16,-74.44617186,39.35507992,1501 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_18,-74.51931317,39.44946101,1507 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1931,2,GOV1,3004 -0102_683_18,-74.41697129,39.36348695,1507 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1931,2,RES1,3001 -0102_683_19,-74.5278485,39.456104,1511 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_19,-74.41101746,39.3649041,1511 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_2,-74.49906533,39.49734355,1530 MADISON AVE,ATLANTIC CITY CITY,39,1935,1,GOV1,3004 -0102_683_2,-74.4439973,39.35831931,1530 MADISON AVE,ATLANTIC CITY CITY,39,1935,1,RES3A,3001 -0102_683_20,-74.4571835,39.481042,1521 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_683_20,-74.41253125,39.36476915,1521 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_683_21,-74.46326362,39.49259773,1523 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1918,1,RES1,3001 -0102_683_21,-74.4112114,39.36578154,1523 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1918,1,RES1,3001 -0102_683_22,-74.45984374,39.49248841,1525 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_22,-74.41101946,39.36610867,1525 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_24,-74.470921,39.487939,1531 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_24,-74.44381055,39.35893814,1531 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_683_3,-74.48861419,39.49691076,1528 MADISON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_683_3,-74.44419246,39.35838454,1528 MADISON AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_683_4,-74.506739,39.493691,1526 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_683_4,-74.44438543,39.35852757,1526 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_683_5,-74.520037,39.471616,1524 MADISON AVE,ATLANTIC CITY CITY,29,1920,2,RES1,3001 -0102_683_5,-74.44432711,39.35899419,1524 MADISON AVE,ATLANTIC CITY CITY,29,1920,2,RES1,3001 -0102_683_6,-74.50649296,39.47352626,1522 MADISON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_683_6,-74.44405462,39.35910748,1522 MADISON AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_684_1,-74.51651912,39.44302828,1432 MADISON AVE,ATLANTIC CITY CITY,29,1920,2,RES3B,3001 -0102_684_1,-74.4177293,39.36405345,1432 MADISON AVE,ATLANTIC CITY CITY,29,1920,2,RES1,3001 -0102_684_10,-74.5063035,39.4442035,1412 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_10,-74.41719752,39.3642048,1412 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_11,-74.4721665,39.456643,1410 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_684_11,-74.41569254,39.36433409,1410 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_12,-74.51348016,39.42972384,1406 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_684_12,-74.41437629,39.36670748,1406 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_13,-74.51435042,39.43554168,1404 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_13,-74.41493506,39.36662693,1404 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_16,-74.5110195,39.4064995,1403 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_16,-74.41873753,39.36816392,1403 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_17,-74.53032275,39.41802096,1405 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_17,-74.42134006,39.36698603,1405 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_684_19,-74.5053143,39.42536898,1411 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1956,1,GOV1,3004 -0102_684_19,-74.41320797,39.3672262,1411 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1956,1,GOV1,3004 -0102_684_2,-74.49219311,39.44958625,1430 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_684_2,-74.41703681,39.36371162,1430 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_684_20,-74.5016435,39.4326565,1413 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_20,-74.41333425,39.36755194,1413 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_21,-74.52426,39.4194435,1415 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_21,-74.41268678,39.3680925,1415 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_684_22,-74.5113461,39.42917735,1417 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_22,-74.41168629,39.36651599,1417 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_23,-74.488473,39.4406085,1421 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1940,2,RES3A,3001 -0102_684_23,-74.41773375,39.36367927,1421 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1940,2,RES1,3001 -0102_684_25,-74.50691962,39.43848414,1425 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_684_25,-74.41730107,39.36409117,1425 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_684_26,-74.51370835,39.32803847,1427 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_684_26,-74.44659641,39.35552177,1427 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_3,-74.47812213,39.33755881,1428 MADISON AVE,ATLANTIC CITY CITY,29,1915,2,GOV1,3004 -0102_684_3,-74.44682523,39.35622724,1428 MADISON AVE,ATLANTIC CITY CITY,29,1915,2,GOV1,3004 -0102_684_4,-74.46432332,39.34593903,1426 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_684_4,-74.44628552,39.35502309,1426 MADISON AVE,ATLANTIC CITY CITY,29,1900,2,RES1,3001 -0102_684_5,-74.46195781,39.34706117,1424 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_684_5,-74.44617819,39.35530773,1424 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_7,-74.51157935,39.32715797,1420 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_7,-74.44629946,39.35545616,1420 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_684_8,-74.52231208,39.31822715,1418 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_8,-74.44727162,39.35357927,1418 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_684_9,-74.49101173,39.45037191,1416 MADISON AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_684_9,-74.41720361,39.3638285,1416 MADISON AVE,ATLANTIC CITY CITY,16,1920,1,GOV1,3004 -0102_685_11,-74.50939517,39.32744049,1401 EMERSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_685_11,-74.41569943,39.37058062,1401 EMERSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_685_12,-74.46177987,39.34956271,1403 EMERSON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_685_12,-74.41515655,39.37006016,1403 EMERSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_685_13,-74.48301885,39.34060662,1405 EMERSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_685_13,-74.41456516,39.36974709,1405 EMERSON AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_685_14,-74.48411611,39.34488767,1411 EMERSON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_685_14,-74.42088432,39.3761251,1411 EMERSON AVE,ATLANTIC CITY CITY,17,1930,1,RES3A,3001 -0102_685_15,-74.44356983,39.3592651,1417 EMERSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_685_15,-74.42077439,39.37546711,1417 EMERSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_685_16,-74.37501311,39.4119027,1417 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_685_16,-74.41634572,39.37475463,1417 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_685_17,-74.520194,39.389157,1421 EMERSON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_685_17,-74.41788348,39.37265649,1421 EMERSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_685_18,-74.5941765,39.4222705,1427 EMERSON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_685_18,-74.44318192,39.35982767,1427 EMERSON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_685_19,-74.5915845,39.4212765,1463 EMERSON AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_685_19,-74.4443605,39.35934526,1463 EMERSON AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_685_2,-74.58946224,39.43254987,1424 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_685_2,-74.44441784,39.35929111,1424 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_685_4,-74.509827,39.4006565,1416 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_685_4,-74.41665935,39.37478824,1416 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_685_6,-74.52865,39.3828755,1408 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_685_6,-74.41938559,39.37523364,1408 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_685_8,-74.3674875,39.4131465,1402 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_685_8,-74.41923747,39.3724925,1402 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_686_1,-74.5022589,39.44698944,2000 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_686_1,-74.4175883,39.36397745,2000 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_686_13,-74.4601445,39.453664,1523 EMERSON AVE,ATLANTIC CITY CITY,17,1930,1,RES3A,3001 -0102_686_13,-74.41630292,39.36446252,1523 EMERSON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_686_14,-74.48948765,39.4442713,1525 EMERSON AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_686_14,-74.41558091,39.36461419,1525 EMERSON AVE,ATLANTIC CITY CITY,17,1997,1,GOV1,3004 -0102_686_16,-74.523807,39.31959,1529 EMERSON AVE,ATLANTIC CITY CITY,17,1910,1,COM3,3004 -0102_686_16,-74.44575618,39.35474091,1529 EMERSON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_686_17,-74.50963826,39.32811063,2010 GRAMMERCY AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_686_17,-74.44653521,39.35583252,2010 GRAMMERCY AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_686_2,-74.46575564,39.34815627,1526 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_686_2,-74.44682508,39.35587561,1526 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_686_3,-74.45755368,39.34776348,1542 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_686_3,-74.44627015,39.35536339,1542 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_686_4,-74.5209688,39.31744583,1534 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_686_4,-74.44762988,39.35390467,1534 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_686_6,-74.48502984,39.46279096,1512 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_686_6,-74.41565788,39.36468213,1512 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_686_8,-74.59089,39.4309545,2015 MORNINGSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_686_8,-74.44449134,39.3592827,2015 MORNINGSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_687_1,-74.48795792,39.42356167,1532 EMERSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_687_1,-74.41222321,39.36825052,1532 EMERSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_687_11,-74.45614635,39.34958983,2045 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1954,1,GOV1,3004 -0102_687_11,-74.41552497,39.36991624,2045 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_687_12,-74.47946841,39.34030133,1507 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1984,1,RES1,3001 -0102_687_12,-74.41498103,39.3698008,1507 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1984,1,RES1,3001 -0102_687_13,-74.4721025,39.3445755,1511 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_687_13,-74.41736946,39.37104546,1511 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_687_16,-74.37230425,39.41561626,1517 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1967,1,RES1,3001 -0102_687_16,-74.41717536,39.37408119,1517 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1967,1,RES1,3001 -0102_687_19,-74.50760018,39.38491254,1523 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_687_19,-74.41807571,39.37257248,1523 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_687_2,-74.529628,39.403568,1528 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_687_2,-74.42091829,39.3672158,1528 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_687_20,-74.5262735,39.3828045,1525 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_687_20,-74.41599729,39.37443905,1525 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_687_21,-74.5308795,39.3874345,1527 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_687_21,-74.41688691,39.37463695,1527 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_687_22,-74.53077883,39.3984684,1563 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_687_22,-74.41769878,39.37377262,1563 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_687_3,-74.50872439,39.40590352,1524 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_687_3,-74.41845165,39.37235764,1524 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_687_4,-74.525018,39.3980375,1520 EMERSON AVE,ATLANTIC CITY CITY,17,1954,1,GOV1,3004 -0102_687_4,-74.42017956,39.37714229,1520 EMERSON AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_687_5,-74.531222,39.3863695,1514 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_687_5,-74.41629817,39.37445823,1514 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_687_7,-74.44559177,39.37175782,1512 EMERSON AVE,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_687_7,-74.41965983,39.37376384,1512 EMERSON AVE,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_687_8,-74.3671685,39.413169,1500 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_687_8,-74.41647592,39.37264403,1500 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_1,-74.48576384,39.335985,1432 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_1,-74.41478945,39.36965963,1432 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_10,-74.50625867,39.33245496,1408 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_688_10,-74.4159335,39.36921546,1408 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_688_11,-74.49602933,39.33328652,1400 EMERSON AVE,ATLANTIC CITY CITY,17,1973,1,RES1,3001 -0102_688_11,-74.41672765,39.36985785,1400 EMERSON AVE,ATLANTIC CITY CITY,17,1973,1,RES1,3001 -0102_688_13,-74.50736413,39.32280491,1401 N ARKANSAS AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_688_13,-74.42340186,39.37499244,1401 N ARKANSAS AVE,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_688_14,-74.8534635,39.5603645,1405 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1935,1,RES1,3001 -0102_688_14,-74.6293619,39.37932681,1405 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1935,1,RES1,3001 -0102_688_15,-74.72355304,39.58757779,1409 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1935,1,RES1,3001 -0102_688_15,-74.64813808,39.37646318,1409 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1935,1,RES1,3001 -0102_688_17,-74.494164,39.33264,1415 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_17,-74.41655619,39.36973563,1415 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_688_18,-74.5023364,39.33218685,1421 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_18,-74.41559692,39.36932994,1421 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_21,-74.51993995,39.31746588,1431 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_688_21,-74.41570871,39.36950006,1431 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1999,1,RES1,3001 -0102_688_3,-74.46136847,39.35096231,1428 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_3,-74.41542224,39.37045404,1428 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_6,-74.52108342,39.31953484,1418 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_6,-74.41459246,39.37028733,1418 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_8,-74.5132655,39.3220405,1414 EMERSON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_688_8,-74.41659544,39.36925544,1414 EMERSON AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_688_9,-74.500154,39.32690467,1410 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_688_9,-74.41686729,39.36954901,1410 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_1,-74.71635058,39.57939514,1428 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_1,-74.63774909,39.38176107,1428 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_12,-74.77413442,39.66743065,1410 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_689_12,-74.42497534,39.37443722,1410 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_689_13,-74.78888616,39.64322349,2101 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_13,-74.42358047,39.37347636,2101 E RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_14,-74.95536011,39.53766931,1401 BEACH AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_689_14,-74.42524648,39.37288996,1401 BEACH AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_689_16,-74.60558243,39.41264226,1407 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_16,-74.4440916,39.35947201,1407 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_17,-74.6122848,39.41283805,1411 BEACH AVE,ATLANTIC CITY CITY,17,1988,1,RES1,3001 -0102_689_17,-74.44374905,39.35954791,1411 BEACH AVE,ATLANTIC CITY CITY,17,1988,1,RES1,3001 -0102_689_2,-74.81961829,39.53095007,1424 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_689_2,-74.6020765,39.4324255,1424 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_689_20,-74.586469,39.4247495,1417 BEACH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_689_20,-74.4439682,39.35978759,1417 BEACH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_689_21,-74.80727035,39.65313123,1421 BEACH AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_689_21,-74.42418723,39.373273,1421 BEACH AVE,ATLANTIC CITY CITY,17,1915,1,RES1,3001 -0102_689_22,-74.4324655,39.3650635,2112 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_22,-74.42565294,39.37249564,2112 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_689_3,-74.52399111,39.31564196,1422 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1988,1,RES1,3001 -0102_689_3,-74.42341265,39.37359016,1422 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1988,1,RES1,3001 -0102_689_5,-74.43783249,39.36503765,1420 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1926,3,RES1,3001 -0102_689_5,-74.42454193,39.37275792,1420 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1926,3,RES1,3001 -0102_689_6,-74.43238027,39.36582786,1416 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_689_6,-74.42561769,39.37300773,1416 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_689_9,-74.79924151,39.65044217,1412 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_689_9,-74.42522744,39.3725353,1412 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_690_1,-74.48193616,39.33989951,1532 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_690_1,-74.41529058,39.3702607,1532 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_690_10,-74.50832589,39.32437871,1501 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_690_10,-74.42292615,39.37416355,1501 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_690_11,-74.86040644,39.56613185,1503 BEACH AVE,ATLANTIC CITY CITY,17,1986,1,RES1,3001 -0102_690_11,-74.6202095,39.3791315,1503 BEACH AVE,ATLANTIC CITY CITY,17,1986,1,RES1,3001 -0102_690_14,-74.72514765,39.58999565,1521 BEACH AVE,ATLANTIC CITY CITY,17,1972,1,RES1,3001 -0102_690_14,-74.6514385,39.369487,1521 BEACH AVE,ATLANTIC CITY CITY,17,1972,1,RES1,3001 -0102_690_16,-74.7937725,39.6220365,1531 BEACH AVE,ATLANTIC CITY CITY,27,1960,2,GOV1,3004 -0102_690_16,-74.6379305,39.401796,1531 BEACH AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_690_18,-74.49230068,39.33305599,1533 BEACH AVE,ATLANTIC CITY CITY,27,1900,1,RES1,3001 -0102_690_18,-74.41664201,39.36969705,1533 BEACH AVE,ATLANTIC CITY CITY,27,1900,1,RES1,3001 -0102_690_19,-74.49216,39.331775,1539 BEACH AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_690_19,-74.4162519,39.36909081,1539 BEACH AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_690_2.01,-74.4782365,39.341155,1530 N ARKANSAS AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_690_2.01,-74.41434569,39.36983544,1530 N ARKANSAS AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_690_2.02,-74.51268842,39.32702318,1528 N ARKANSAS AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_690_2.02,-74.41516553,39.36973667,1528 N ARKANSAS AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_690_20,-74.50048483,39.32887701,1543 BEACH AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_690_20,-74.41614202,39.36954888,1543 BEACH AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_690_22,-74.51960818,39.32113496,1555 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_690_22,-74.41618857,39.36914216,1555 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_690_23,-74.51854006,39.31826368,2114 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_690_23,-74.41624954,39.37029465,2114 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_690_4,-74.521477,39.319673,1520 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1956,1,RES1,3001 -0102_690_4,-74.41582653,39.36967069,1520 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1956,1,IND2,3002 -0102_690_5,-74.51381272,39.32023976,1516 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1948,1,RES1,3001 -0102_690_5,-74.41644362,39.36980744,1516 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1948,1,RES1,3001 -0102_690_6,-74.51647777,39.32391818,1510 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1986,1,RES1,3001 -0102_690_6,-74.41655155,39.36893034,1510 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1986,1,RES1,3001 -0102_690_8,-74.50059699,39.33258633,1508 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1876,3,RES1,3001 -0102_690_8,-74.41610706,39.36916962,1508 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1876,3,RES1,3001 -0102_690_9,-74.79411914,39.61743545,1500 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_690_9,-74.638494,39.3994895,1500 N ARKANSAS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_691_1,-74.8659755,39.565178,1526 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_691_1,-74.63583313,39.38394852,1526 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_691_10,-74.60160343,39.40973765,1509 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_691_10,-74.44412615,39.35949984,1509 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_691_12,-74.61268461,39.4153453,1513 N MISSOURI AVE,ATLANTIC CITY CITY,17,1984,1,RES1,3001 -0102_691_12,-74.44405102,39.35939861,1513 N MISSOURI AVE,ATLANTIC CITY CITY,17,1984,1,RES1,3001 -0102_691_13,-74.578654,39.424827,1515 N MISSOURI AVE,ATLANTIC CITY CITY,17,1951,1,GOV1,3004 -0102_691_13,-74.4437579,39.35962998,1515 N MISSOURI AVE,ATLANTIC CITY CITY,17,1951,1,IND2,3002 -0102_691_15,-74.815814,39.65633,1535 N MISSOURI AVE,ATLANTIC CITY CITY,17,1984,1,RES1,3001 -0102_691_15,-74.42436623,39.37352576,1535 N MISSOURI AVE,ATLANTIC CITY CITY,17,1984,1,RES1,3001 -0102_691_16,-74.826906,39.6494465,1555 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_691_16,-74.42482064,39.37418338,1555 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_691_17,-74.43850566,39.36537266,1565 N MISSOURI AVE,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_691_17,-74.42489336,39.3743067,1565 N MISSOURI AVE,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_691_2,-74.4911355,39.3341115,1542 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_691_2,-74.42332013,39.37502513,1542 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_691_3,-74.42306361,39.36816848,1530 BEACH AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_691_3,-74.42385145,39.37305137,1530 BEACH AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_691_4,-74.81730734,39.64041953,1522 BEACH AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_691_4,-74.42432681,39.37245703,1522 BEACH AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_691_5,-74.8090065,39.642384,1520 BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_691_5,-74.42569537,39.37314636,1520 BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_691_7,-74.58644435,39.42385353,1518 BEACH AVE,ATLANTIC CITY CITY,17,1972,1,RES1,3001 -0102_691_7,-74.44338953,39.35979664,1518 BEACH AVE,ATLANTIC CITY CITY,17,1972,1,RES1,3001 -0102_691_8,-74.59084119,39.4252854,1500 BEACH AVE,ATLANTIC CITY CITY,17,1945,1,RES1,3001 -0102_691_8,-74.44387945,39.3597095,1500 BEACH AVE,ATLANTIC CITY CITY,17,1945,1,RES1,3001 -0102_691_9,-74.59871196,39.41060419,1501 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_691_9,-74.44414515,39.35953558,1501 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_692_1,-74.59949143,39.41119663,2116 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_692_1,-74.44407484,39.35943479,2116 MORNINGSIDE DR,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_692_10,-74.57247271,39.42621151,1401 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_692_10,-74.61690352,39.30915049,1401 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_692_12,-74.584328,39.4102425,1411 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_692_12,-74.44414369,39.359578,1411 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_692_15,-74.58361071,39.40413229,1417 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1995,1,RES1,3001 -0102_692_15,-74.44418579,39.35960218,1417 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1995,1,RES1,3001 -0102_692_19,-74.58851196,39.41577353,1431 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_692_19,-74.44428549,39.359738,1431 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_692_6,-74.591532,39.414286,1434 BEACH AVE,ATLANTIC CITY CITY,17,1979,1,RES1,3001 -0102_692_6,-74.44423149,39.35981919,1434 BEACH AVE,ATLANTIC CITY CITY,17,1979,1,RES1,3001 -0102_692_7,-74.59619465,39.41873982,1414 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_692_7,-74.44427587,39.35969913,1414 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_692_9,-74.921828,39.4776915,1400 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_692_9,-74.42333737,39.37325813,1400 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_693_11,-74.80696836,39.63152245,2224 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1971,1,RES1,3001 -0102_693_11,-74.42440366,39.36690959,2224 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1971,1,REL1,3004 -0102_693_4,-74.95077331,39.53671083,1548 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_693_4,-74.42471526,39.37337677,1548 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_693_5,-74.95294135,39.52908613,1505 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_693_5,-74.42386333,39.37282696,1505 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_693_6,-74.58053731,39.41204497,1501 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_693_6,-74.44421177,39.35968212,1501 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_693_7,-74.5932458,39.40670599,1503 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_693_7,-74.44422636,39.35962971,1503 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_693_8,-74.922305,39.4815165,1509 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_693_8,-74.42398106,39.37298294,1509 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_694_10,-74.56831842,39.41167909,1462 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_694_10,-74.59633466,39.31123,1462 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_694_11,-74.56254531,39.41932837,1464 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_694_11,-74.61697178,39.30915464,1464 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_694_13,-74.5742982,39.42609182,1500 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_694_13,-74.6153346,39.30961057,1500 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_694_14,-74.55589571,39.43598421,1510 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_694_14,-74.61677915,39.30825256,1510 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_694_18,-74.551642,39.4043755,1544 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_694_18,-74.59674653,39.31153694,1544 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_694_19,-74.881942,39.5916635,1552 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_694_19,-74.4223329,39.36479143,1552 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_694_20,-74.83240769,39.57942138,1564 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_694_20,-74.42266982,39.36255327,1564 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_694_21,-74.79114305,39.63483979,1568 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_694_21,-74.42284583,39.36338932,1568 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_694_22,-74.77714238,39.6226309,1576 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_694_22,-74.42314103,39.36327095,1576 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_694_23,-74.77545273,39.6309404,1580 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_694_23,-74.42347573,39.36311523,1580 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_694_24,-74.7759915,39.6062075,1600 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_694_24,-74.42380248,39.36355493,1600 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_694_3,-74.60585148,39.38961233,1406 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_694_3,-74.59428813,39.31069788,1406 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_694_4,-74.60128259,39.38624255,1414 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES2,3005 -0102_694_4,-74.59424603,39.31074012,1414 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_694_5,-74.55282383,39.40461899,1430 W RIVERSIDE DR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_694_5,-74.59419986,39.31077571,1430 W RIVERSIDE DR,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_694_6,-74.57435979,39.41064998,1436 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_694_6,-74.59646251,39.31135197,1436 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_694_8,-74.57416693,39.41919631,1440 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_694_8,-74.5968,39.31129426,1440 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_694_9,-74.57276533,39.41323157,1458 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_694_9,-74.59641803,39.31125846,1458 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_695_1,-74.37218656,39.41504932,1700 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_695_1,-74.8795525,39.597961,1700 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_695_10,-74.5396645,39.389763,1622 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_695_10,-74.4216015,39.37117802,1622 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_695_11,-74.5417398,39.38736188,1614 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_695_11,-74.42166418,39.3712746,1614 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_695_12,-74.74944696,39.63695658,1610 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_695_12,-74.42385395,39.36340117,1610 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_695_2,-74.56273,39.3714575,1670 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_695_2,-74.42210309,39.37080753,1670 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2001,1,RES1,3001 -0102_695_3,-74.5610215,39.3704185,1664 W RIVERSIDE DR,ATLANTIC CITY CITY,45,1960,4,RES1,3001 -0102_695_3,-74.42217069,39.37078077,1664 W RIVERSIDE DR,ATLANTIC CITY CITY,45,1960,4,RES1,3001 -0102_695_4,-74.56698043,39.37376479,1658 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_695_4,-74.42223345,39.37076076,1658 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_695_6,-74.5685575,39.3735365,1652 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_695_6,-74.42200559,39.37084802,1652 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_695_7,-74.56623877,39.37209979,1648 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_695_7,-74.42188399,39.3708923,1648 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_695_8,-74.53664147,39.39257119,1630 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_695_8,-74.42178429,39.37093442,1630 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_695_9,-74.539627,39.391741,1628 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_695_9,-74.42153873,39.37107733,1628 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_696_1,-74.5393115,39.3866605,2316 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_696_1,-74.42237408,39.37156316,2316 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_696_2,-74.55726512,39.39883366,2300 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_696_2,-74.92587179,39.47486859,2300 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_696_3,-74.5589985,39.3990495,1645 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_696_3,-74.92585143,39.47499252,1645 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_696_4,-74.55093899,39.38607619,1639 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_696_4,-74.85484442,39.61607408,1639 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_696_5,-74.5489535,39.3882185,1631 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_696_5,-74.42246057,39.37152959,1631 W RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_697_1,-74.58931137,39.37140921,2236 KUEHNLE AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_697_1,-74.92589774,39.47449397,2236 KUEHNLE AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_697_10,-74.80337145,39.63644684,1605 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_697_10,-74.42343157,39.36533659,1605 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_697_11,-74.55715029,39.39738159,1611 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,2016,1,COM1,3004 -0102_697_11,-74.92587881,39.47474208,1611 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,2016,1,RES1,3001 -0102_697_2,-74.5891172,39.37899798,2230 KUEHNLE AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_697_2,-74.90403282,39.47186116,2230 KUEHNLE AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_697_3,-74.578015,39.3828425,1619 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_697_3,-74.92528915,39.47454842,1619 N MISSISSIPPI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_697_4,-74.57700186,39.38425236,1615 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,1983,1,RES1,3001 -0102_697_4,-74.92590975,39.47437441,1615 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,1983,1,RES1,3001 -0102_697_8,-74.580432,39.375568,1602 COLUMBIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_697_8,-74.92588763,39.47461997,1602 COLUMBIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_697_9,-74.86171686,39.61893034,2233 GRAMMERCY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_697_9,-74.42522857,39.37115258,2233 GRAMMERCY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_698_10,-74.95000821,39.53289266,1607 COLUMBIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_698_10,-74.42298085,39.37317373,1607 COLUMBIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_698_14,-74.5917497,39.37842553,1619 COLUMBIA AVE,ATLANTIC CITY CITY,17,1979,1,RES1,3001 -0102_698_14,-74.90193623,39.47131503,1619 COLUMBIA AVE,ATLANTIC CITY CITY,17,1979,1,RES1,3001 -0102_698_3,-74.59833799,39.36911434,1646 N MISSOURI AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_698_3,-74.90143264,39.47133194,1646 N MISSOURI AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_698_7.01,-74.591696,39.378556,1609 N COLUMBIA AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_698_7.01,-74.90180298,39.47130932,1609 N COLUMBIA AVE,ATLANTIC CITY CITY,17,1980,1,RES1,3001 -0102_698_7.02,-74.58796722,39.37802749,1610 N MISSOURI AVE,ATLANTIC CITY CITY,17,1997,1,COM4,3004 -0102_698_7.02,-74.9020994,39.4712241,1610 N MISSOURI AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_698_8,-74.789043,39.675258,2201 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_698_8,-74.42375715,39.37263385,2201 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_698_9,-74.9592328,39.53369938,2215 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_698_9,-74.42427872,39.37277208,2215 GRAMMERCY AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_699_1,-74.605306,39.3848385,2114 KUEHNLE AVE,ATLANTIC CITY CITY,17,1952,1,RES1,3001 -0102_699_1,-74.57736993,39.34577592,2114 KUEHNLE AVE,ATLANTIC CITY CITY,17,1952,1,RES1,3001 -0102_699_12,-74.513358,39.32398,1610 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_699_12,-74.41710451,39.36998501,1610 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_699_13,-74.50367366,39.33375101,1608 BEACH AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_699_13,-74.41603372,39.36921245,1608 BEACH AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_699_14,-74.49537482,39.33247919,1606 BEACH AVE,ATLANTIC CITY CITY,45,1935,2,RES1,3001 -0102_699_14,-74.41685379,39.37006601,1606 BEACH AVE,ATLANTIC CITY CITY,45,1935,2,IND1,3002 -0102_699_16,-74.78523633,39.60907732,1602 BEACH AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_699_16,-74.632187,39.3891725,1602 BEACH AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_699_17,-74.50706227,39.32539476,1601 N MISSOURI AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_699_17,-74.42262867,39.37391868,1601 N MISSOURI AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_699_2,-74.60233021,39.39168631,2130 KUEHNLE AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_699_2,-74.58381749,39.34277113,2130 KUEHNLE AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_699_23,-74.6168949,39.37348522,1635 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_699_23,-74.57797161,39.34631769,1635 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_699_5,-74.5908925,39.4008775,1650 BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_699_5,-74.57655356,39.34568443,1650 BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_699_6,-74.60900568,39.37747816,1648 BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_699_6,-74.57722971,39.34629101,1648 BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_699_7,-74.6181095,39.3790445,1646 BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_699_7,-74.57719429,39.34528725,1646 BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_699_8,-74.60798918,39.38013401,1644 N BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_699_8,-74.57701051,39.34568556,1644 N BEACH AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_699_9,-74.5147205,39.3195855,1630 BEACH AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_699_9,-74.41648357,39.36941945,1630 BEACH AVE,ATLANTIC CITY CITY,17,1962,1,COM3,3004 -0102_7_1,-74.36443034,39.40907638,101 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_1,-74.90560141,39.48075923,101 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_10,-74.3940705,39.3859005,4503 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_10,-74.795839,39.6343905,4503 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_11,-74.3916075,39.3889045,4505 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_7_11,-74.81179952,39.63004539,4505 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_12,-74.38572634,39.39682701,137 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_12,-74.807338,39.639271,137 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_13,-74.37861576,39.39628901,129 S BERKLEY SQ,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_7_13,-74.81206284,39.63600233,129 S BERKLEY SQ,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_7_14,-74.38381584,39.39404167,123 S BERKLEY SQ,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_7_14,-74.808835,39.6334875,123 S BERKLEY SQ,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_7_15,-74.41754794,39.36923019,119 S BERKLEY SQ,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_7_15,-74.80709012,39.63248643,119 S BERKLEY SQ,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_7_16,-74.42411218,39.37167991,115 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_16,-74.85526553,39.60975831,115 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_17,-74.400953,39.387564,107 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_17,-74.8831325,39.463436,107 S BERKLEY SQ,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_2,-74.37060992,39.40602683,102 S KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_7_2,-74.9031155,39.5027725,102 S KINGSTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_7_3,-74.37325855,39.4096853,106 S KINGSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_3,-74.9260045,39.483132,106 S KINGSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_4,-74.40360662,39.38627737,114 S KINGSTON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_7_4,-74.89526723,39.47229025,114 S KINGSTON AVE,ATLANTIC CITY CITY,45,1915,2,RES3A,3001 -0102_7_5,-74.43148752,39.36896403,118 S KINGSTON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_7_5,-74.86113331,39.61771116,118 S KINGSTON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_7_6,-74.4070685,39.382948,122 S KINGSTON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_7_6,-74.81935588,39.63517181,122 S KINGSTON AVE,ATLANTIC CITY CITY,45,1915,2,RES2,3005 -0102_7_7,-74.39604676,39.39487062,130 S KINGSTON AVE,ATLANTIC CITY CITY,20,2017,1,RES1,3001 -0102_7_7,-74.814293,39.633325,130 S KINGSTON AVE,ATLANTIC CITY CITY,20,2017,1,RES1,3001 -0102_7_8,-74.3819675,39.39565333,132 S KINGSTON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_7_8,-74.80999302,39.63524466,132 S KINGSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_7_9.01,-74.384179,39.3981775,4501 BDWK 4501A,ATLANTIC CITY CITY,29,1995,2,RES1,3001 -0102_7_9.01,-74.7995046,39.63280443,4501 BDWK 4501A,ATLANTIC CITY CITY,29,1995,2,RES1,3001 -0102_7_9.02,-74.3817205,39.398721,4501 BDWK 4501B,ATLANTIC CITY CITY,29,1995,2,RES1,3001 -0102_7_9.02,-74.798161,39.6331855,4501 BDWK 4501B,ATLANTIC CITY CITY,29,1995,2,RES1,3001 -0102_70_3,-74.8297795,39.410357,134 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_70_3,-74.64757862,39.32912114,134 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_70_7,-74.7179895,39.4414585,107 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_70_7,-74.6553135,39.3460545,107 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_70_8,-74.72100067,39.45167331,113 S METROPOLITAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_70_8,-74.6250223,39.3647847,113 S METROPOLITAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_700_1,-74.53056152,39.39955882,2116 KUEHNLE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_700_1,-74.4185282,39.37308282,2116 KUEHNLE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_700_10,-74.4613985,39.3506425,1601 BEACH AVE,ATLANTIC CITY CITY,16,1965,1,RES1,3001 -0102_700_10,-74.41522999,39.36948285,1601 BEACH AVE,ATLANTIC CITY CITY,16,1965,1,RES1,3001 -0102_700_11,-74.475494,39.341708,1605 BEACH AVE,ATLANTIC CITY CITY,17,1930,1,RES1,3001 -0102_700_11,-74.41471972,39.37042943,1605 BEACH AVE,ATLANTIC CITY CITY,17,1930,1,RES3A,3001 -0102_700_12,-74.48604072,39.33596134,1609 BEACH AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_700_12,-74.4149649,39.37046561,1609 BEACH AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_700_13,-74.46826234,39.34287447,1615 BEACH AVE,ATLANTIC CITY CITY,16,1984,1,RES1,3001 -0102_700_13,-74.41532847,39.37121232,1615 BEACH AVE,ATLANTIC CITY CITY,16,1984,1,RES1,3001 -0102_700_15,-74.3670775,39.4187725,1625 BEACH AVE,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_700_15,-74.41938887,39.37334748,1625 BEACH AVE,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_700_16,-74.4479475,39.370899,1631 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_700_16,-74.41668701,39.37434012,1631 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_700_17,-74.52459119,39.38417691,1655 BEACH AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_700_17,-74.4194084,39.37487952,1655 BEACH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_700_18,-74.52715735,39.38983526,1653 BEACH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_700_18,-74.41647251,39.37401701,1653 BEACH AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_700_2,-74.4947637,39.42712611,2100 KUEHNLE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_700_2,-74.41241106,39.36818489,2100 KUEHNLE AVE,ATLANTIC CITY CITY,17,1955,1,RES2,3005 -0102_700_3,-74.53042307,39.40386816,1648 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_700_3,-74.42078002,39.36722058,1648 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_700_4,-74.48455162,39.43416579,1640 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_700_4,-74.42062602,39.37560738,1640 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_700_5,-74.5159608,39.39508345,1632 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_700_5,-74.41601511,39.37426058,1632 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_700_6,-74.52770783,39.38998545,1626 N ARKANSAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_700_6,-74.41703769,39.37251513,1626 N ARKANSAS AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_700_7,-74.52386435,39.38442217,1624 N ARKANSAS AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_700_7,-74.41559601,39.37365423,1624 N ARKANSAS AVE,ATLANTIC CITY CITY,27,1960,2,RES1,3001 -0102_700_8,-74.45428831,39.37450447,1614 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_700_8,-74.41828901,39.3750685,1614 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_700_9,-74.44964319,39.35610138,1600 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_700_9,-74.41682503,39.37505512,1600 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_701_10,-74.79403394,39.64629766,2235 KUEHNLE AVE,ATLANTIC CITY CITY,17,1918,1,RES1,3001 -0102_701_10,-74.42596409,39.37294807,2235 KUEHNLE AVE,ATLANTIC CITY CITY,17,1918,1,RES1,3001 -0102_701_11,-74.7689978,39.6735753,2233 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_701_11,-74.42413062,39.37248155,2233 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_701_12,-74.589723,39.377738,2223 KUEHNLE AVE,ATLANTIC CITY CITY,45,1970,2,GOV1,3004 -0102_701_12,-74.90223983,39.47122807,2223 KUEHNLE AVE,ATLANTIC CITY CITY,45,1970,2,RES1,3001 -0102_701_14,-74.61084227,39.37675696,2211 KUEHNLE AVE,ATLANTIC CITY CITY,17,1929,1,RES1,3001 -0102_701_14,-74.5780578,39.34580513,2211 KUEHNLE AVE,ATLANTIC CITY CITY,17,1929,1,RES4,3001 -0102_701_16,-74.6138548,39.3723974,2151 KUEHNLE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_701_16,-74.57773868,39.34582979,2151 KUEHNLE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_701_17,-74.586001,39.3854065,2143 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_701_17,-74.57607205,39.34563633,2143 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_701_18,-74.60249845,39.39006376,2141 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_701_18,-74.59435048,39.31066607,2141 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,COM3,3004 -0102_701_21,-74.509197,39.4056905,2117 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_701_21,-74.41817069,39.37435669,2117 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_701_22,-74.482488,39.4400925,2101 KUEHNLE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_701_22,-74.41574944,39.36441454,2101 KUEHNLE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_701_7,-74.923263,39.480967,2305 KUEHNLE AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_701_7,-74.42473149,39.37305408,2305 KUEHNLE AVE,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_701_8,-74.92350937,39.52318824,2303 KUEHNLE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_701_8,-74.4228313,39.37295503,2303 KUEHNLE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_702_1,-74.86625696,39.59250502,2322 MURRAY AVE,ATLANTIC CITY CITY,16,1980,1,RES1,3001 -0102_702_1,-74.42207065,39.3648625,2322 MURRAY AVE,ATLANTIC CITY CITY,16,1980,1,GOV1,3004 -0102_702_10,-74.8066905,39.5206565,2222 MURRAY AVE,ATLANTIC CITY CITY,16,1965,1,RES1,3001 -0102_702_10,-74.60704783,39.43430162,2222 MURRAY AVE,ATLANTIC CITY CITY,16,1965,1,RES1,3001 -0102_702_11,-74.7513695,39.60355179,2218 MURRAY AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_702_11,-74.62581421,39.39232959,2218 MURRAY AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_702_12,-74.5136335,39.320248,2208 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_702_12,-74.41668146,39.37014439,2208 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_702_14,-74.45079967,39.35600488,2140 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_702_14,-74.4167065,39.37511631,2140 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_702_15,-74.51164158,39.38557281,2132 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_702_15,-74.41681582,39.3745292,2132 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_702_16,-74.49928186,39.4120093,2124 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_702_16,-74.41832464,39.36865438,2124 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,IND1,3002 -0102_702_17,-74.5086395,39.434788,2116 MURRAY AVE,ATLANTIC CITY CITY,16,1956,1,RES1,3001 -0102_702_17,-74.41325561,39.36742399,2116 MURRAY AVE,ATLANTIC CITY CITY,16,1956,1,RES1,3001 -0102_702_3,-74.80718215,39.63937696,2316 MURRAY AVE,ATLANTIC CITY CITY,17,1983,1,RES1,3001 -0102_702_3,-74.42848459,39.36905805,2316 MURRAY AVE,ATLANTIC CITY CITY,17,1983,1,RES3A,3001 -0102_702_4,-74.95069716,39.49139299,2312 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_702_4,-74.42420346,39.37264104,2312 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_702_5,-74.94697759,39.51210506,2306 MURRAY AVE,ATLANTIC CITY CITY,16,1951,1,RES3B,3001 -0102_702_5,-74.42474039,39.37405722,2306 MURRAY AVE,ATLANTIC CITY CITY,16,1951,1,RES1,3001 -0102_702_6,-74.93878377,39.51906915,2242 MURRAY AVE,ATLANTIC CITY CITY,17,1981,1,RES1,3001 -0102_702_6,-74.42456201,39.37384502,2242 MURRAY AVE,ATLANTIC CITY CITY,17,1981,1,RES1,3001 -0102_702_9,-74.44149834,39.36622044,2228 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_702_9,-74.42366838,39.37313385,2228 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_703_2,-74.54029167,39.38081901,1940 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_703_2,-74.42116114,39.37039166,1940 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_704_1,-74.8859545,39.59561817,2304 SHELDON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_704_1,-74.4244603,39.37368104,2304 SHELDON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_705_1,-74.5367185,39.3831655,2304 HAMILTON AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_705_1,-74.42117796,39.37055369,2304 HAMILTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_705_2,-74.5373385,39.384303,2305 SHELDON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_705_2,-74.42124845,39.37066313,2305 SHELDON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_706_1,-74.52010083,39.32385204,1801 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_706_1,-74.41602127,39.36963545,1801 N MISSISSIPPI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_706_2,-74.36752402,39.4224298,1800 N MISSOURI AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_706_2,-74.41784889,39.37398509,1800 N MISSOURI AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_707_1,-74.55071533,39.37925248,2140 HAMILTON AVE,ATLANTIC CITY CITY,16,1966,1,RES1,3001 -0102_707_1,-74.41994923,39.37086481,2140 HAMILTON AVE,ATLANTIC CITY CITY,16,1966,1,RES1,3001 -0102_707_10,-74.5009565,39.412961,1823 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_10,-74.4191271,39.37296401,1823 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_707_2,-74.54907252,39.37823132,2130 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_2,-74.41988409,39.37088301,2130 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_3,-74.50997397,39.43611366,1834 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_3,-74.41354171,39.36746801,1834 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_4,-74.49795885,39.43010173,1824 BEACH AVE,ATLANTIC CITY CITY,17,1955,1,RES3A,3001 -0102_707_4,-74.41366513,39.36767211,1824 BEACH AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_707_5,-74.4922455,39.427398,1814 BEACH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_707_5,-74.4212502,39.36701359,1814 BEACH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_707_6,-74.50232215,39.41528399,2131 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_6,-74.41696203,39.37376351,2131 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_7,-74.51415779,39.38573634,2141 MURRAY AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_707_7,-74.41615868,39.37446842,2141 MURRAY AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_707_8,-74.5199395,39.3958925,1815 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_8,-74.41628555,39.37238209,1815 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_9,-74.50060947,39.40918655,1817 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_707_9,-74.42054282,39.37575542,1817 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_1,-74.504735,39.4529865,2114 HAMILTON AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_708_1,-74.4178293,39.36394545,2114 HAMILTON AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_708_10,-74.48319932,39.34089451,1835 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_10,-74.44670753,39.35572017,1835 BEACH AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_2,-74.4525485,39.491309,2104 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_2,-74.41088087,39.36616474,2104 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_3,-74.51782766,39.46434354,1834 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_708_3,-74.41169029,39.3634416,1834 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_708_4,-74.501669,39.466064,1824 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_708_4,-74.41210808,39.3648499,1824 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_708_5,-74.5038113,39.4529966,1814 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1966,1,COM1,3004 -0102_708_5,-74.4174943,39.36371195,1814 N ARKANSAS AVE,ATLANTIC CITY CITY,16,1966,1,RES1,3001 -0102_708_6,-74.48266023,39.34205643,2105 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_6,-74.44666766,39.35562621,2105 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_7,-74.489924,39.4382335,2117 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_7,-74.41759447,39.36360193,2117 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_708_8,-74.52172787,39.31857393,1815 BEACH AVE,ATLANTIC CITY CITY,17,1966,1,RES3A,3001 -0102_708_8,-74.44558354,39.35414437,1815 BEACH AVE,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_708_9,-74.4622392,39.34989562,1825 BEACH AVE,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_708_9,-74.44641489,39.35528938,1825 BEACH AVE,ATLANTIC CITY CITY,17,1966,1,RES1,3001 -0102_709_1,-74.59367432,39.31711548,1926 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_709_1,-74.45792472,39.35467334,1926 N ARKANSAS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_709_2,-74.47043199,39.49090116,2105 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_709_2,-74.44399059,39.35867175,2105 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_709_3,-74.52622848,39.45325167,2115 HAMILTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_709_3,-74.41146059,39.36435049,2115 HAMILTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_71_10,-74.63399126,39.35682504,222 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_71_10,-74.367475,39.406305,222 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_71_2,-74.81391924,39.36714295,204 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_71_2,-74.38302982,39.41681407,204 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_71_44,-74.6245225,39.351415,227 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_71_44,-74.37360725,39.41019439,227 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_71_49,-74.79857972,39.38000983,217 S METROPOLITAN AVE,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_71_49,-74.59131333,39.35484211,217 S METROPOLITAN AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_71_52,-74.83663717,39.38423645,211 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_71_52,-74.57576933,39.36392026,211 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_71_54,-74.65208574,39.35571491,207 S METROPOLITAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_71_54,-74.3615705,39.4128635,207 S METROPOLITAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_71_56,-74.66284672,39.35927314,203 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_71_56,-74.36149534,39.41080702,203 S METROPOLITAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_71_59,-74.763705,39.3070625,404 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_71_59,-74.36888327,39.41089946,404 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_710_1,-74.49056343,39.46035696,1922 BEACH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_710_1,-74.41713229,39.36397845,1922 BEACH AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_711_1,-74.48891339,39.43392788,1917 N COLUMBIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_711_1,-74.41348831,39.36774384,1917 N COLUMBIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_711_2,-74.54663,39.38087891,1914 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_711_2,-74.42000992,39.37083953,1914 N MISSOURI AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_711_3,-74.53410056,39.37699331,2205 HAMILTON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_711_3,-74.42013603,39.37079348,2205 HAMILTON AVE,ATLANTIC CITY CITY,17,1955,1,RES3A,3001 -0102_711_4,-74.533336,39.3784545,2215 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_711_4,-74.42020589,39.37078637,2215 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_711_5,-74.37770312,39.40272855,1915 COLUMBIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_711_5,-74.41642929,39.37487856,1915 COLUMBIA AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_712_1,-74.4840205,39.334394,1900 N COLUMBIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_712_1,-74.41598301,39.3711583,1900 N COLUMBIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_713_1,-74.8658455,39.559524,1905 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_713_1,-74.6361705,39.38524726,1905 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_714_10,-74.5394145,39.4693865,2100 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_714_10,-74.41480556,39.36447596,2100 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2007,1,RES1,3001 -0102_714_14,-74.53372255,39.37676615,2140 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_714_14,-74.423699,39.3705728,2140 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_714_15,-74.54768351,39.37438867,2193 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1995,1,RES1,3001 -0102_714_15,-74.42312522,39.37038239,2193 W RIVERSIDE DR,ATLANTIC CITY CITY,17,1995,1,RES1,3001 -0102_714_16,-74.54564434,39.37319203,2189 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1994,1,RES1,3001 -0102_714_16,-74.42335938,39.37028718,2189 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1994,1,RES1,3001 -0102_714_17,-74.5483545,39.3729,2125 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_714_17,-74.42344056,39.3702505,2125 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_714_2,-74.49486208,39.32913068,2002 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_714_2,-74.41584895,39.3692544,2002 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_714_22,-74.54368314,39.37033255,2119 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_714_22,-74.42155199,39.37027727,2119 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_714_24,-74.55247325,39.36943953,2115 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_714_24,-74.4214871,39.37040873,2115 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_714_9,-74.5426125,39.4586,2070 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_714_9,-74.41517661,39.36480605,2070 W RIVERSIDE DR,ATLANTIC CITY CITY,17,2006,1,RES1,3001 -0102_715_1,-74.52095,39.395063,2005 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_715_1,-74.41995842,39.37645241,2005 W RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_716_1,-74.4634515,39.34649,2006 BEACH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_716_1,-74.44601381,39.35516628,2006 BEACH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_717_1,-74.70721916,39.35696099,2207 SENATE AVE,ATLANTIC CITY CITY,17,1900,1,RES3B,3001 -0102_717_1,-74.42342132,39.37067272,2207 SENATE AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_717_2,-74.82764173,39.31572234,2205 SENATE AVE,ATLANTIC CITY CITY,17,1971,1,RES3A,3001 -0102_717_2,-74.42356283,39.37061062,2205 SENATE AVE,ATLANTIC CITY CITY,17,1971,1,COM1,3004 -0102_718_1.01,-74.53891412,39.37592042,2121 N MISSOURI AVE,ATLANTIC CITY CITY,29,2001,2,RES1,3001 -0102_718_1.01,-74.42293788,39.37075768,2121 N MISSOURI AVE,ATLANTIC CITY CITY,29,2001,2,RES1,3001 -0102_718_1.02,-74.53649081,39.3739651,2125 N MISSOURI AVE,ATLANTIC CITY CITY,29,2001,2,RES1,3001 -0102_718_1.02,-74.42386452,39.37048777,2125 N MISSOURI AVE,ATLANTIC CITY CITY,29,2001,2,RES1,3001 -0102_718_2,-74.54879561,39.37386712,2130 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_718_2,-74.42324579,39.37033399,2130 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_719_3,-74.59800442,39.31673819,2101 SHERIDAN AVE,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_719_3,-74.46037927,39.35550903,2101 SHERIDAN AVE,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_72_2,-74.7513669,39.45358962,130 S VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_72_2,-74.54440391,39.37361553,130 S VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_72_3,-74.711264,39.4386835,311 ORIENTAL AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_72_3,-74.63314536,39.35782018,311 ORIENTAL AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_72_4,-74.8380381,39.41139916,313 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_72_4,-74.63469377,39.34360383,313 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_72_5,-74.83231805,39.41453117,315 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_72_5,-74.64953635,39.32873925,315 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_72_6,-74.83530068,39.38895597,165 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_72_6,-74.60041607,39.36065818,165 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_72_7,-74.736262,39.449759,145 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_72_7,-74.6545635,39.3565015,145 S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_72_9,-74.72258096,39.45852019,336 PACIFIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_72_9,-74.7710165,39.3139105,336 PACIFIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_720_11,-74.63140355,39.43360284,2013 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_720_11,-74.44356154,39.36812542,2013 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_720_13,-74.6357425,39.4352395,2015 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_720_13,-74.44112037,39.35808196,2015 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_720_16,-74.558564,39.3580955,2039 N RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_720_16,-74.45677148,39.35218372,2039 N RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_720_17,-74.57014618,39.34706502,2043 N RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_720_17,-74.45547783,39.35150399,2043 N RIVERSIDE DR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_720_3,-74.60319271,39.34523066,1817 MURRAY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_720_3,-74.42622467,39.3599586,1817 MURRAY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_720_6,-74.541188,39.45976,1901 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_720_6,-74.42149904,39.35873927,1901 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_720_7,-74.68607972,39.41566101,1905 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_720_7,-74.4221214,39.35970652,1905 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_720_8,-74.6708375,39.4138425,1937 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1960,1,RES1,3004 -0102_720_8,-74.43141579,39.3634827,1937 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_721_1,-74.620956,39.4252405,1914 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_721_1,-74.44101147,39.35868098,1914 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_721_2,-74.94892,39.516666,1906 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_721_2,-74.44735459,39.35781647,1906 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_721_3,-74.61330183,39.323995,2031 HAMILTON AVE,ATLANTIC CITY CITY,16,1965,1,RES1,3001 -0102_721_3,-74.45550184,39.35276909,2031 HAMILTON AVE,ATLANTIC CITY CITY,16,1965,1,RES3A,3001 -0102_721_4,-74.60209285,39.31471239,2041 HAMILTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_721_4,-74.46051456,39.35567811,2041 HAMILTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_721_5,-74.59088937,39.31920417,1907 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_721_5,-74.4605218,39.35595414,1907 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_721_6,-74.59121053,39.33048815,1911 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_721_6,-74.45439369,39.35252835,1911 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_721_7,-74.949621,39.5181345,2038 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_721_7,-74.4472183,39.35779455,2038 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_721_8,-74.6295941,39.42754422,2022 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_721_8,-74.4408582,39.35872602,2022 N RIVERSIDE DR,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_722_1,-74.59571782,39.31757347,2030 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_1,-74.46036858,39.35576139,2030 HAMILTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_10,-74.44341789,39.51568015,2040 HAMILTON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3002 -0102_722_10,-74.44336911,39.35843759,2040 HAMILTON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_722_2,-74.61687621,39.31224767,1834 EMERSON AVE,ATLANTIC CITY CITY,17,2002,1,RES3A,3001 -0102_722_2,-74.46058352,39.35576094,1834 EMERSON AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3002 -0102_722_3,-74.59204307,39.31662182,1824 EMERSON AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_722_3,-74.45811869,39.35426806,1824 EMERSON AVE,ATLANTIC CITY CITY,17,1950,1,GOV1,3004 -0102_722_4,-74.4399385,39.516278,1814 EMERSON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_722_4,-74.44343786,39.35849515,1814 EMERSON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_722_5,-74.508877,39.4891075,2031 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_5,-74.44448846,39.35822609,2031 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_6,-74.4627145,39.492503,2041 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_6,-74.4112746,39.3659709,2041 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_7,-74.47615193,39.48986661,1815 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_7,-74.44392222,39.35885506,1815 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_8,-74.4969675,39.472674,1825 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_722_8,-74.44386915,39.35915039,1825 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_722_9,-74.499402,39.4874125,1835 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_722_9,-74.44452696,39.35833314,1835 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_723_1,-74.63287681,39.42036646,1830 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_723_1,-74.4408764,39.35825123,1830 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_723_10,-74.622378,39.4252415,2014 HAMILTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_723_10,-74.44120329,39.35855636,2014 HAMILTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_723_2,-74.62894004,39.41957581,1822 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_723_2,-74.44146674,39.35847156,1822 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_723_3,-74.62147108,39.42413997,1818 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_723_3,-74.4413339,39.35855809,1818 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_723_4,-74.61110916,39.32806454,1814 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_723_4,-74.45505077,39.3520415,1814 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_723_5,-74.60646857,39.33195085,2001 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_723_5,-74.45525812,39.35230327,2001 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_723_6,-74.6002642,39.32369388,2003 MURRAY AVE,ATLANTIC CITY CITY,16,1984,1,RES1,3001 -0102_723_6,-74.45425413,39.35234223,2003 MURRAY AVE,ATLANTIC CITY CITY,16,1984,1,RES1,3001 -0102_723_7,-74.967879,39.5120105,1815 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3004 -0102_723_7,-74.44715564,39.35789164,1815 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_723_8,-74.6604685,39.4032535,1825 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_723_8,-74.44077299,39.3587622,1825 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_723_9,-74.6221435,39.4252535,1835 EMERSON AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_723_9,-74.44092217,39.35870269,1835 EMERSON AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_724_1,-74.6328727,39.41939206,1910 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_724_1,-74.44077509,39.35821117,1910 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_724_2,-74.63241381,39.42030594,1900 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1971,1,RES3A,3001 -0102_724_2,-74.44075808,39.35829398,1900 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1971,1,RES1,3001 -0102_724_3,-74.624279,39.423128,1901 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_724_3,-74.44139726,39.35851139,1901 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_724_4,-74.63687062,39.42706132,1907 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_724_4,-74.44138069,39.35835286,1907 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_724_5,-74.633886,39.4231895,1911 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_724_5,-74.44091406,39.35830871,1911 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_1,-74.6482747,39.43313154,1830 MADISON AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_726_1,-74.43437781,39.36017734,1830 MADISON AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_726_10,-74.62786535,39.43304496,1819 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_10,-74.44117909,39.35812612,1819 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_11,-74.63670015,39.43486079,1823 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_11,-74.44747631,39.37670148,1823 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_12,-74.63990272,39.43423591,1827 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_726_12,-74.44374476,39.36805179,1827 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_726_2,-74.63528423,39.43074845,1826 MADISON AVE,ATLANTIC CITY CITY,17,1971,1,RES1,3001 -0102_726_2,-74.43364737,39.36023258,1826 MADISON AVE,ATLANTIC CITY CITY,17,1971,1,RES1,3001 -0102_726_3,-74.6352146,39.43302723,1822 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_3,-74.44374978,39.36820054,1822 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_4,-74.5604315,39.3621085,1818 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_4,-74.45783435,39.35180244,1818 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_726_5,-74.55613045,39.36602168,1814 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_5,-74.45905015,39.35135282,1814 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_726_6,-74.55880947,39.36794567,1931 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_726_6,-74.45612112,39.35137322,1931 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,COM1,3004 -0102_726_7,-74.55279075,39.36668304,1941 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_726_7,-74.45607978,39.35125557,1941 MURRAY AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_726_8,-74.5668565,39.358611,1811 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1971,1,RES1,3001 -0102_726_8,-74.45577539,39.35187969,1811 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1971,1,RES1,3001 -0102_726_9,-74.62655809,39.43359273,1815 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_726_9,-74.44121576,39.35818617,1815 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_727_1,-74.6942918,39.4183337,1831 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_727_1,-74.42291602,39.36067249,1831 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_727_2,-74.59569144,39.34441438,1824 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_727_2,-74.42613816,39.35985411,1824 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,IND1,3002 -0102_727_3,-74.57817188,39.34291412,1816 N OHIO AVE,ATLANTIC CITY CITY,17,1969,1,RES1,3001 -0102_727_3,-74.42608303,39.35942529,1816 N OHIO AVE,ATLANTIC CITY CITY,17,1969,1,RES1,3001 -0102_727_4,-74.577923,39.3471645,1808 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_727_4,-74.42601843,39.35933852,1808 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_727_5,-74.58372397,39.3349843,1800 N OHIO AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_727_5,-74.4257547,39.35916543,1800 N OHIO AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_727_6,-74.5693835,39.362377,1801 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_727_6,-74.42784331,39.36127565,1801 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_727_7,-74.57706984,39.33866342,1809 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_727_7,-74.42901575,39.36137174,1809 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_727_8,-74.57971756,39.33706822,1817 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_727_8,-74.42671814,39.35914458,1817 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_727_9,-74.585011,39.3360505,1825 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_727_9,-74.42660761,39.35898488,1825 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_728_1,-74.4622655,39.494219,2028 MURRAY AVE,ATLANTIC CITY CITY,15,2008,1,RES1,3001 -0102_728_1,-74.41097733,39.36588674,2028 MURRAY AVE,ATLANTIC CITY CITY,15,2008,1,RES1,3001 -0102_728_6,-74.61447234,39.32269853,2002 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_728_6,-74.45558961,39.35273895,2002 MURRAY AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_728_7,-74.600976,39.331881,1946 MURRAY AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_728_7,-74.45516926,39.35218557,1946 MURRAY AVE,ATLANTIC CITY CITY,16,1955,1,RES1,3001 -0102_729_10,-74.60924657,39.32706294,1923 KUEHNLE AVE,ATLANTIC CITY CITY,18,1925,1,GOV1,3004 -0102_729_10,-74.45646134,39.35271496,1923 KUEHNLE AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_729_16,-74.76533841,39.30081484,1907 KUEHNLE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_729_16,-74.42341923,39.37111272,1907 KUEHNLE AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_729_17,-74.945492,39.517962,1905 KUEHNLE AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_729_17,-74.44578499,39.35784387,1905 KUEHNLE AVE,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_729_18,-74.94075305,39.51528774,1901 KUEHNLE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_729_18,-74.44511196,39.35818967,1901 KUEHNLE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_729_2,-74.4798375,39.4791,2031 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_729_2,-74.41195744,39.36573831,2031 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,COM3,3004 -0102_729_3,-74.4719615,39.491899,2021 KUEHNLE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_729_3,-74.41066075,39.36557991,2021 KUEHNLE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_729_4,-74.49718232,39.4914958,2019 KUEHNLE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_729_4,-74.44447092,39.35893996,2019 KUEHNLE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_729_8,-74.58789754,39.3224998,2007 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_729_8,-74.4606795,39.35615318,2007 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_729_9,-74.606832,39.3331245,1927 KUEHNLE AVE,ATLANTIC CITY CITY,17,1993,1,RES1,3001 -0102_729_9,-74.45535493,39.35241792,1927 KUEHNLE AVE,ATLANTIC CITY CITY,17,1993,1,RES1,3001 -0102_73_22,-74.63914627,39.34463143,329 HYGEIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_73_22,-74.40074734,39.38556048,329 HYGEIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_73_23,-74.63575036,39.33657825,S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_73_23,-74.4012175,39.3883605,S RHODE ISLAND AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_73_28,-74.647389,39.3279835,335 HYGEIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_73_28,-74.40502376,39.38907581,335 HYGEIA PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_730_1,-74.51230833,39.33088552,2040 KUEHNLE AVE,ATLANTIC CITY CITY,17,2016,1,RES1,3001 -0102_730_1,-74.44737361,39.35400588,2040 KUEHNLE AVE,ATLANTIC CITY CITY,17,2016,1,RES1,3001 -0102_730_10,-74.514495,39.431471,1600 EMERSON AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_730_10,-74.41465533,39.36650337,1600 EMERSON AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_730_11,-74.5021485,39.4120545,1601 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_730_11,-74.41791694,39.36967194,1601 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_730_13,-74.48922856,39.42063583,1615 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_730_13,-74.41133398,39.36804044,1615 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_730_14,-74.500915,39.4314215,1625 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_730_14,-74.41262145,39.36794441,1625 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_730_15,-74.51184892,39.43542952,1635 N ARKANSAS AVE,ATLANTIC CITY CITY,17,2015,1,RES1,3001 -0102_730_15,-74.41411188,39.36688436,1635 N ARKANSAS AVE,ATLANTIC CITY CITY,17,2015,1,RES1,3001 -0102_730_16,-74.46974494,39.46032491,1643 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_730_16,-74.41570299,39.36475961,1643 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_730_17,-74.48819869,39.43628819,1655 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_730_17,-74.41687111,39.363597,1655 N ARKANSAS AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_730_2,-74.505494,39.4483995,2020 KUEHNLE AVE,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_730_2,-74.4176613,39.36382745,2020 KUEHNLE AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_730_4,-74.47870916,39.33777751,1624 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_730_4,-74.44678702,39.35616717,1624 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_730_7,-74.514152,39.3270145,1620 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_730_7,-74.44644913,39.35540511,1620 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_730_8,-74.52176899,39.31830517,1614 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_730_8,-74.44690364,39.35322578,1614 EMERSON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_730_9,-74.486359,39.457656,1612 EMERSON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_730_9,-74.4159486,39.36468107,1612 EMERSON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_731_1,-74.57037708,39.48036768,2012 KUEHNLE AVE,ATLANTIC CITY CITY,17,2010,1,RES1,3001 -0102_731_1,-74.44204784,39.35706461,2012 KUEHNLE AVE,ATLANTIC CITY CITY,17,2010,1,RES1,3001 -0102_731_10,-74.569632,39.4803395,1620 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_731_10,-74.4411899,39.35715933,1620 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_731_11,-74.47810651,39.47889804,1612 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_731_11,-74.41164065,39.36580921,1612 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_731_12,-74.527046,39.465186,1600 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_731_12,-74.41162269,39.36460147,1600 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_731_13,-74.46009784,39.34616349,1601 EMERSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_731_13,-74.44609391,39.35512481,1601 EMERSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_731_14,-74.48034033,39.3397315,1603 EMERSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_731_14,-74.44675087,39.3557786,1603 EMERSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_731_15,-74.4978705,39.4462865,1605 EMERSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_731_15,-74.41705935,39.36412764,1605 EMERSON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_731_16,-74.52158716,39.46022397,1609 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_731_16,-74.41124349,39.36481193,1609 EMERSON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_731_17,-74.5646705,39.4745125,1619 EMERSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_731_17,-74.44138811,39.35772888,1619 EMERSON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_731_18,-74.56446903,39.47202125,1621 EMERSON AVE,ATLANTIC CITY CITY,45,1969,2,RES1,3001 -0102_731_18,-74.44140128,39.35780209,1621 EMERSON AVE,ATLANTIC CITY CITY,45,1969,2,RES1,3001 -0102_731_19,-74.565949,39.4713665,1623 EMERSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_731_19,-74.44202699,39.35695369,1623 EMERSON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_731_2,-74.58387736,39.48494397,2010 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_731_2,-74.44186317,39.35712547,2010 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_731_20,-74.56962584,39.47925952,1625 EMERSON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_731_20,-74.44107256,39.35718135,1625 EMERSON AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_731_3,-74.60870566,39.50193698,2000 KUEHNLE AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_731_3,-74.44173097,39.35777512,2000 KUEHNLE AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_731_4,-74.60647446,39.50178734,1650 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_731_4,-74.44177712,39.35775424,1650 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_731_5,-74.59050004,39.48936816,1640 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_731_5,-74.44173008,39.35712632,1640 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_731_7,-74.58211516,39.47420065,1628 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_731_7,-74.4409319,39.3571822,1628 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1959,1,GOV1,3004 -0102_732_11,-74.63259617,39.44051633,1610 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_11,-74.44197732,39.35764877,1610 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_732_12,-74.5842995,39.3310395,1606 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_12,-74.45414292,39.35383492,1606 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_13,-74.58675187,39.32505117,1600 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_13,-74.4606532,39.35584706,1600 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_14,-74.49408161,39.50312305,1601 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_732_14,-74.44431402,39.35836345,1601 N MICHIGAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_732_15,-74.5355985,39.313343,1607 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_15,-74.44325692,39.35814743,1607 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_16,-74.6194545,39.4388045,1625 N MICHIGAN AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_732_16,-74.44166874,39.3577914,1625 N MICHIGAN AVE,ATLANTIC CITY CITY,17,2004,1,RES1,3001 -0102_732_17,-74.621255,39.436725,1635 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1995,1,RES1,3001 -0102_732_17,-74.44183496,39.3577399,1635 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1995,1,GOV1,3004 -0102_732_19,-74.63291365,39.44060582,1641 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1960,2,RES1,3001 -0102_732_19,-74.44188755,39.35771459,1641 N MICHIGAN AVE,ATLANTIC CITY CITY,45,1960,2,GOV1,3004 -0102_732_2,-74.5083795,39.3409645,1914 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_2,-74.54462861,39.53105345,1914 KUEHNLE AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_732_21,-74.63113701,39.44046533,1647 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_21,-74.44192269,39.35813561,1647 N MICHIGAN AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_732_5,-74.64475,39.4468545,1624 MADISON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_732_5,-74.44169925,39.35821923,1624 MADISON AVE,ATLANTIC CITY CITY,16,1900,1,COM1,3004 -0102_732_6,-74.646958,39.448904,1622 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_6,-74.44174574,39.35806035,1622 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_732_8,-74.630909,39.4494405,1618 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_8,-74.4418308,39.3580143,1618 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_732_9,-74.64023805,39.43637286,1614 MADISON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_732_9,-74.44200438,39.35811066,1614 MADISON AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_733_1,-74.68832,39.358871,1649 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_1,-74.42399666,39.37135312,1649 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_10,-74.495602,39.334375,1607 MADISON AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_733_10,-74.53704309,39.53541149,1607 MADISON AVE,ATLANTIC CITY CITY,17,2002,1,RES1,3001 -0102_733_12,-74.5044905,39.3404185,1609 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_12,-74.5528345,39.530846,1609 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_13,-74.50257303,39.3390192,1615 MADISON AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_733_13,-74.57469459,39.52378516,1615 MADISON AVE,ATLANTIC CITY CITY,17,1970,1,RES1,3001 -0102_733_14,-74.5016925,39.33806,1617 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_14,-74.56563545,39.52963879,1617 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_15,-74.50532421,39.33685883,1619 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_733_15,-74.6188215,39.5091065,1619 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_16,-74.81662817,39.63480702,1625 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_16,-74.44497113,39.35742628,1625 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_2,-74.7870995,39.3125545,1656 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_733_2,-74.42322796,39.37074913,1656 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_733_3,-74.7573225,39.3001945,1650 N OHIO AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_733_3,-74.42334867,39.37121836,1650 N OHIO AVE,ATLANTIC CITY CITY,17,1958,1,RES1,3001 -0102_733_4,-74.7030325,39.366812,1620 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_4,-74.42382101,39.37137094,1620 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_5,-74.68773,39.359143,1616 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_733_5,-74.4228904,39.37015081,1616 N OHIO AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_6,-74.80962357,39.63508434,1614 N OHIO AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_733_6,-74.44490344,39.35744438,1614 N OHIO AVE,ATLANTIC CITY CITY,,0,1,AGR1,3001 -0102_733_7,-74.5062555,39.3377345,1612 N OHIO AVE,ATLANTIC CITY CITY,16,1967,1,RES1,3001 -0102_733_7,-74.61070896,39.51094415,1612 N OHIO AVE,ATLANTIC CITY CITY,16,1967,1,RES1,3001 -0102_733_8,-74.57123849,39.34857771,1600 N OHIO AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_733_8,-74.45679687,39.35261532,1600 N OHIO AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_733_9,-74.49105361,39.33496065,1603 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_733_9,-74.5448915,39.524373,1603 MADISON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_735_1,-74.59801597,39.34231454,1601 PENROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_735_1,-74.42618129,39.35991986,1601 PENROSE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_736_1,-74.955583,39.5115175,1849 KUEHNLE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_736_1,-74.44498839,39.3583096,1849 KUEHNLE AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_736_2,-74.955475,39.511258,1845 KUEHNLE AVE,ATLANTIC CITY CITY,16,1925,1,GOV1,3004 -0102_736_2,-74.44708523,39.35776929,1845 KUEHNLE AVE,ATLANTIC CITY CITY,16,1925,1,GOV1,3004 -0102_737_1,-74.61216131,39.34979874,1826 MURRAY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_737_1,-74.42625423,39.3600192,1826 MURRAY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_74_1,-74.81185882,39.40668645,200 S VERMONT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_74_1,-74.61033274,39.36490577,200 S VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_74_2,-74.82025833,39.38620701,204 S VERMONT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_74_2,-74.59157718,39.36003588,204 S VERMONT AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_74_20,-74.62772872,39.3578554,240 S VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_74_20,-74.366058,39.406538,240 S VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_74_21,-74.63366264,39.34314256,242 S VERMONT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_74_21,-74.41228018,39.39051798,242 S VERMONT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_74_27,-74.6227475,39.359648,233 S VICTORIA AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_74_27,-74.36414555,39.40882766,233 S VICTORIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_74_35,-74.63859184,39.36307146,217 S VICTORIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_74_35,-74.373124,39.4025525,217 S VICTORIA AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_741_1,-74.80858805,39.63602065,1701 ABSECON BLVD RR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_741_1,-74.44480994,39.35746515,1701 ABSECON BLVD RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_741_12,-74.69296165,39.57783666,1653 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,COM3,3004 -0102_741_12,-74.58846113,39.40173772,1653 N RIVERSIDE DR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_741_2,-74.61337532,39.34872159,1701 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_741_2,-74.42638227,39.36018156,1701 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_75_15,-74.726401,39.4500735,223 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_75_15,-74.63621937,39.36599738,223 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_759_2,-74.55371071,39.50502182,701 N ANNAPOLIS AVE (BAY),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_759_2,-74.43677933,39.36671496,701 N ANNAPOLIS AVE (BAY),ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_76_10,-74.540729,39.374571,220 S SEASIDE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_76_10,-74.36775392,39.42194933,220 S SEASIDE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_76_11,-74.80470111,39.31369876,222 S SEASIDE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_76_11,-74.3807255,39.4170485,222 S SEASIDE AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_76_30,-74.80487037,39.40593705,205 S VERMONT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_76_30,-74.60958877,39.36719804,205 S VERMONT AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_76_7,-74.54691732,39.37645717,214 S SEASIDE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_76_7,-74.4488635,39.374714,214 S SEASIDE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_761_1,-74.57306191,39.37674164,700 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_761_1,-74.48536499,39.33864884,700 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_762_1,-74.869834,39.4432905,673 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_762_1,-74.43663283,39.36614696,673 N TRENTON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_762_10,-74.71081066,39.47135298,641 TRENTON AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_762_10,-74.43685469,39.36668759,641 TRENTON AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_762_11,-74.75514459,39.44641375,629 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_762_11,-74.43645111,39.36683973,629 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_762_12,-74.79463575,39.46218465,722 AUGUSTINE RD,ATLANTIC CITY CITY,15,1925,1,GOV1,3004 -0102_762_12,-74.43658883,39.36571295,722 AUGUSTINE RD,ATLANTIC CITY CITY,15,1925,1,RES1,3001 -0102_762_13,-74.75565825,39.44636487,720 AUGUSTINE RD,ATLANTIC CITY CITY,15,1925,1,RES1,3001 -0102_762_13,-74.43651342,39.36693498,720 AUGUSTINE RD,ATLANTIC CITY CITY,15,1925,1,RES1,3001 -0102_762_15,-74.7553155,39.4519615,706 AUGUSTINE RD,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_762_15,-74.43704619,39.36686559,706 AUGUSTINE RD,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_762_16,-74.734938,39.460805,619 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_762_16,-74.43732616,39.36682134,619 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_762_19,-74.7244835,39.4591555,613 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_762_19,-74.43635561,39.3660682,613 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_762_2,-74.86363267,39.449498,3718 WEST END AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_762_2,-74.43676288,39.36619114,3718 WEST END AVE,ATLANTIC CITY CITY,17,1950,1,GOV1,3004 -0102_762_20,-74.74624173,39.44652549,609 N TRENTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3004 -0102_762_20,-74.43429316,39.37000526,609 N TRENTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_762_22,-74.7275635,39.4498405,601 N TRENTON AVE,ATLANTIC CITY CITY,45,1995,2,RES1,3001 -0102_762_22,-74.43530633,39.370875,601 N TRENTON AVE,ATLANTIC CITY CITY,45,1995,2,GOV1,3004 -0102_762_4,-74.85764005,39.44626127,657 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_762_4,-74.43599719,39.3662117,657 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_762_5,-74.80446,39.4626615,655 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_762_5,-74.43679944,39.36648113,655 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_762_6,-74.8287765,39.46464,732 AUGUSTINE RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_762_6,-74.43615936,39.36639731,732 AUGUSTINE RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_762_8,-74.78040276,39.49626454,730 AUGUSTINE RD,ATLANTIC CITY CITY,17,1900,1,RES1,3004 -0102_762_8,-74.43667283,39.36654696,730 AUGUSTINE RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_762_9,-74.7401155,39.49163,643 N TRENTON AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_762_9,-74.4358882,39.36695414,643 N TRENTON AVE,ATLANTIC CITY CITY,17,1997,1,RES1,3001 -0102_763_1,-74.85300117,39.44210642,672 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_763_1,-74.43694737,39.36644019,672 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_763_10,-74.73107273,39.45709942,632 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_763_10,-74.43738792,39.36690489,632 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_763_11,-74.725093,39.4593485,713 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_11,-74.43606527,39.36722291,713 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_12,-74.71408381,39.46654498,628 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_763_12,-74.43701222,39.36712568,628 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_763_13,-74.750383,39.450574,711 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_763_13,-74.43442647,39.37103606,711 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_15,-74.68355166,39.55435653,709 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_15,-74.5936935,39.3687685,709 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_16,-74.734851,39.4407165,618 N TRENTON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_763_16,-74.43403084,39.37043992,618 N TRENTON AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_763_17,-74.6467895,39.5503965,612 N TRENTON AVE,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_763_17,-74.558748,39.3989385,612 N TRENTON AVE,ATLANTIC CITY CITY,16,1930,1,GOV1,3004 -0102_763_19,-74.63598429,39.52242031,703 WISTERIA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_763_19,-74.54162316,39.39187345,703 WISTERIA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_763_20,-74.65135165,39.52481304,606 N TRENTON AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_763_20,-74.538196,39.3867495,606 N TRENTON AVE,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_763_21,-74.65230796,39.51253433,3809 CROSSAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_763_21,-74.56804392,39.36890906,3809 CROSSAN AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_763_4,-74.7657595,39.487136,660 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_763_4,-74.43576615,39.36582516,660 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_763_6,-74.75151184,39.45339587,721 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_6,-74.43587695,39.36604149,721 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_7,-74.73645689,39.46501668,717 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_7,-74.43743401,39.3669946,717 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_763_8,-74.75827606,39.44821577,636 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_763_8,-74.43640866,39.36679345,636 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_763_9,-74.7122735,39.4676195,715 WISTERIA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_763_9,-74.43655166,39.3670679,715 WISTERIA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_764_12,-74.72799523,39.44945154,712 WISTERIA RD,ATLANTIC CITY CITY,17,1916,1,RES1,3001 -0102_764_12,-74.43507855,39.37072056,712 WISTERIA RD,ATLANTIC CITY CITY,17,1916,1,GOV1,3004 -0102_764_13,-74.6492845,39.530954,711 N HARRISBURG AVE #B,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_764_13,-74.55173625,39.39055412,711 N HARRISBURG AVE #B,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_764_15,-74.54532969,39.54261817,707 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2012,1,RES1,3001 -0102_764_15,-74.56070283,39.37149677,707 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2012,1,RES1,3001 -0102_764_16,-74.631589,39.521721,708 WISTERIA RD,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_764_16,-74.539553,39.390952,708 WISTERIA RD,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_764_17,-74.67161804,39.36427021,705 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1935,1,RES1,3001 -0102_764_17,-74.42277956,39.37002585,705 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1935,1,RES1,3001 -0102_764_18,-74.6456175,39.367641,703 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_764_18,-74.42517058,39.36545866,703 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_764_19,-74.47103315,39.34456852,701 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1921,1,RES1,3001 -0102_764_19,-74.7152765,39.465548,701 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1921,1,RES1,3001 -0102_764_2,-74.71063867,39.47292884,725 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_764_2,-74.43685054,39.36605266,725 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_764_3,-74.7413655,39.4917635,723 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_764_3,-74.43632393,39.36667607,723 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_764_5,-74.7527905,39.449695,721 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_764_5,-74.43708469,39.36635184,721 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_764_7,-74.73429613,39.46546056,719 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_764_7,-74.4372844,39.36672834,719 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1920,1,GOV1,3004 -0102_764_9,-74.71319667,39.46946951,730 WISTERIA ROAD,ATLANTIC CITY CITY,18,2007,1,RES1,3001 -0102_764_9,-74.43636985,39.3661263,730 WISTERIA ROAD,ATLANTIC CITY CITY,18,2007,1,RES1,3002 -0102_765_1,-74.48901652,39.33513634,3900 WEST END AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_1,-74.56132259,39.50479716,3900 WEST END AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_10,-74.63540007,39.52387068,715 WARRENA RD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_10,-74.5554605,39.378906,715 WARRENA RD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_11,-74.64186223,39.52568932,732 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_11,-74.54081416,39.38944383,732 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_13,-74.544469,39.5657635,730 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_765_13,-74.56598217,39.37149274,730 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_765_15,-74.64925869,39.35788006,709 WARRENA RD,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_765_15,-74.42509537,39.36577661,709 WARRENA RD,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_765_17,-74.63663498,39.36248206,708 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1918,1,RES1,3004 -0102_765_17,-74.42628896,39.36621284,708 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1918,1,COM3,3004 -0102_765_18,-74.63307936,39.36618908,704 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_765_18,-74.42640669,39.35992691,704 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_765_19,-74.6137965,39.5084915,3909 CROSSAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_765_19,-74.55138409,39.37706248,3909 CROSSAN AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_765_2,-74.48972,39.335972,733 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_765_2,-74.87755638,39.48984835,733 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_765_20,-74.59088994,39.3658212,700 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_765_20,-74.42661568,39.36060924,700 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_765_3,-74.489709,39.3354895,724 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_3,-74.54942111,39.51647848,724 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_4,-74.4912555,39.336768,731 WARRENA RD,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_765_4,-74.8610205,39.4862365,731 WARRENA RD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_5,-74.49209884,39.33622599,726 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_5,-74.83891587,39.4963459,726 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_765_6,-74.496162,39.337378,756 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3002 -0102_765_6,-74.85218162,39.48406732,756 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_765_7,-74.75016881,39.45240942,721 WARRENA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_765_7,-74.43415712,39.37063148,721 WARRENA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_765_9,-74.6628845,39.5391095,734 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_765_9,-74.55327264,39.38942263,734 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1925,3,GOV1,3004 -0102_766_1,-74.48802094,39.33561889,3924 WEST END AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_766_1,-74.868999,39.5027455,3924 WEST END AVE,ATLANTIC CITY CITY,,0,1,RES2,3005 -0102_766_10,-74.63758315,39.52539046,635 N ELBERON AVE,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_766_10,-74.57418176,39.36831455,635 N ELBERON AVE,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_766_12,-74.47005869,39.34604383,631 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_766_12,-74.72609832,39.45392248,631 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_766_13,-74.66355525,39.35859833,625 N ELBERON AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_766_13,-74.42498906,39.36550952,625 N ELBERON AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_766_15,-74.6311495,39.3650625,607 N ELBERON AVE,ATLANTIC CITY CITY,18,1962,1,GOV1,3004 -0102_766_15,-74.4244107,39.36076182,607 N ELBERON AVE,ATLANTIC CITY CITY,18,1962,1,RES1,3001 -0102_766_17,-74.5837555,39.3573705,704 WARRENA RD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_766_17,-74.42642446,39.36024334,704 WARRENA RD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_766_18,-74.81872867,39.38569097,605 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_766_18,-74.43973235,39.36954183,605 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_766_19,-74.8079325,39.42969,702 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_766_19,-74.43378232,39.3702685,702 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_766_2,-74.482956,39.351173,663 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_766_2,-74.44705616,39.35621199,663 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_766_20,-74.84262245,39.39065533,3911 CROSSAN AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_766_20,-74.43875447,39.36822437,3911 CROSSAN AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_766_4,-74.7226605,39.460324,661 N ELBERON AVE,ATLANTIC CITY CITY,17,1945,1,RES1,3001 -0102_766_4,-74.43564984,39.3700048,661 N ELBERON AVE,ATLANTIC CITY CITY,17,1945,1,RES1,3001 -0102_766_5,-74.7116705,39.4674825,730 WARRENA RD,ATLANTIC CITY CITY,17,1989,1,RES1,3001 -0102_766_5,-74.43688291,39.36694502,730 WARRENA RD,ATLANTIC CITY CITY,17,1989,1,RES1,3001 -0102_766_6,-74.71076081,39.43921917,659 N ELBERON AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_766_6,-74.43441883,39.36997,659 N ELBERON AVE,ATLANTIC CITY CITY,17,1998,1,RES1,3001 -0102_766_8,-74.62161438,39.54028379,645 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_766_8,-74.53348967,39.40053827,645 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_766_9,-74.643784,39.53,720 WARRENA RD,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_766_9,-74.54413206,39.38720885,720 WARRENA RD,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_767_1,-74.71426442,39.46902471,4004 WEST END AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_767_1,-74.4366676,39.36723775,4004 WEST END AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_767_10,-74.60398735,39.50847662,624 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_767_10,-74.55290283,39.38033063,624 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_767_11,-74.81382788,39.37140419,4001 CROSSAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_767_11,-74.44064158,39.36926808,4001 CROSSAN AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_767_3,-74.64745463,39.54635788,760 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_767_3,-74.54077,39.3982,760 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES4,3001 -0102_767_4,-74.64870837,39.52985782,720 N ELBERON AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_767_4,-74.54722317,39.38555153,720 N ELBERON AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_767_5,-74.5446855,39.540356,646 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_767_5,-74.56590316,39.37356878,646 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_767_8,-74.63433023,39.36411672,632 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_767_8,-74.42649171,39.36621102,632 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_767_9,-74.5996896,39.35888118,628 N ELBERON AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_767_9,-74.42664959,39.36028426,628 N ELBERON AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_768_1,-74.6381665,39.5469465,673 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_768_1,-74.53173677,39.40035984,673 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_768_11,-74.6306705,39.364632,643 N DOVER AVE,ATLANTIC CITY CITY,17,2016,1,RES1,3001 -0102_768_11,-74.4304194,39.36742801,643 N DOVER AVE,ATLANTIC CITY CITY,17,2016,1,RES1,3001 -0102_768_13,-74.64535683,39.32734153,639 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_768_13,-74.42653749,39.36012638,639 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_768_14,-74.71553857,39.44117509,637 N DOVER AVE,ATLANTIC CITY CITY,17,1988,1,RES1,3004 -0102_768_14,-74.43455645,39.37121154,637 N DOVER AVE,ATLANTIC CITY CITY,17,1988,1,RES1,3001 -0102_768_15,-74.82152516,39.383993,635 N DOVER AVE.,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_768_15,-74.43962399,39.36940666,635 N DOVER AVE.,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_768_16,-74.71516645,39.43340388,633 N DOVER AVE,ATLANTIC CITY CITY,17,1988,1,COM3,3004 -0102_768_16,-74.44007978,39.36778621,633 N DOVER AVE,ATLANTIC CITY CITY,17,1988,1,RES1,3001 -0102_768_17,-74.6803635,39.497737,4023 CROSSAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_768_17,-74.43951137,39.36753161,4023 CROSSAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_768_2,-74.7233565,39.4399715,672 BELLA TERR,ATLANTIC CITY CITY,17,1996,1,RES3A,3001 -0102_768_2,-74.4348398,39.37014634,672 BELLA TERR,ATLANTIC CITY CITY,17,1996,1,RES1,3001 -0102_768_4,-74.63075684,39.53770925,659 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_768_4,-74.5419175,39.3896985,659 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_768_8,-74.64904315,39.35488505,655 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_768_8,-74.42503772,39.36568157,655 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_768_9,-74.6771825,39.353682,652 BELLA TERR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_768_9,-74.42305896,39.36991333,652 BELLA TERR,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_769_1,-74.54931,39.5692255,672 N DOVER AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_769_1,-74.569458,39.371743,672 N DOVER AVE,ATLANTIC CITY CITY,16,1920,1,RES1,3001 -0102_769_10,-74.60670619,39.48726736,604 N DOVER AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_769_10,-74.44109401,39.36847989,604 N DOVER AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_769_11,-74.55048388,39.47475982,600 N DOVER AVE,ATLANTIC CITY CITY,17,1952,1,RES1,3001 -0102_769_11,-74.43604028,39.36496825,600 N DOVER AVE,ATLANTIC CITY CITY,17,1952,1,COM1,3004 -0102_769_12,-74.59633359,39.45741952,703 CAROLYN TERR,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_769_12,-74.59262772,39.31413356,703 CAROLYN TERR,ATLANTIC CITY CITY,16,1910,1,RES1,3001 -0102_769_2,-74.6580785,39.36162,662 N DOVER AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_769_2,-74.42506341,39.36548973,662 N DOVER AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_769_21,-74.46658267,39.34439249,4100 WEST END AVE,ATLANTIC CITY CITY,17,1969,1,GOV1,3004 -0102_769_21,-74.714801,39.4653055,4100 WEST END AVE,ATLANTIC CITY CITY,17,1969,1,RES1,3001 -0102_769_4,-74.6384295,39.365096,654 N DOVER AVE,ATLANTIC CITY CITY,45,1975,4,GOV1,3004 -0102_769_4,-74.42469542,39.36115029,654 N DOVER AVE,ATLANTIC CITY CITY,45,1975,4,RES1,3001 -0102_769_5,-74.58893856,39.35521744,646 N DOVER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_769_5,-74.42649823,39.36037876,646 N DOVER AVE,ATLANTIC CITY CITY,45,1900,4,RES1,3001 -0102_769_6,-74.83672553,39.38821568,638 N DOVER AVE,ATLANTIC CITY CITY,18,1965,1,RES1,3001 -0102_769_6,-74.43988267,39.36979382,638 N DOVER AVE,ATLANTIC CITY CITY,18,1965,1,RES1,3001 -0102_769_7,-74.7160019,39.40906869,630 N DOVER AVE #B,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_769_7,-74.44002128,39.36767088,630 N DOVER AVE #B,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_769_9,-74.6909409,39.44914826,634 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_769_9,-74.43786672,39.3683303,634 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_77_1,-74.60778712,39.50501265,200 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_77_1,-74.532829,39.388707,200 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_77_13,-74.753367,39.4543785,138 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,45,1920,4,RES1,3001 -0102_77_13,-74.5414325,39.3745125,138 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,45,1920,4,GOV1,3004 -0102_77_14,-74.75762133,39.445216,140 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_77_14,-74.8253274,39.36562654,140 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_77_17,-74.71184579,39.46757126,203 ORIENTAL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_77_17,-74.76374967,39.35034733,203 ORIENTAL AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_77_18,-74.724417,39.4584815,205 ORIENTAL AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3004 -0102_77_18,-74.77555975,39.31681973,205 ORIENTAL AVE,ATLANTIC CITY CITY,45,1910,3,COM4,3004 -0102_77_19,-74.749004,39.446201,207 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_77_19,-74.75393828,39.30059778,207 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_77_20,-74.74682751,39.45152617,209 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_77_20,-74.7579195,39.300239,209 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_77_21,-74.7497865,39.4522,211 ORIENTAL AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_77_21,-74.696896,39.3556245,211 ORIENTAL AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_77_22,-74.7369245,39.448755,215 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_77_22,-74.66402496,39.34621234,215 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,3,GOV1,3004 -0102_77_23,-74.736219,39.4495965,217 ORIENTAL AVE,ATLANTIC CITY CITY,33,1910,1,RES1,3001 -0102_77_23,-74.66218412,39.36100426,217 ORIENTAL AVE,ATLANTIC CITY CITY,33,1910,1,GOV1,3004 -0102_77_24,-74.735696,39.438039,219 ORIENTAL AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_77_24,-74.65426495,39.35821264,219 ORIENTAL AVE,ATLANTIC CITY CITY,17,1910,1,RES1,3001 -0102_77_25,-74.74599498,39.44506719,133 S SEASIDE AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_77_25,-74.76604435,39.30735805,133 S SEASIDE AVE,ATLANTIC CITY CITY,45,1910,3,RES1,3001 -0102_77_27,-74.72715829,39.46178983,129 S SEASIDE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_77_27,-74.801321,39.367414,129 S SEASIDE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_77_35,-74.845346,39.4632365,117 S SEASIDE AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_77_35,-74.55311844,39.38455877,117 S SEASIDE AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_77_36,-74.816115,39.470875,115 S SEASIDE AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_77_36,-74.5511495,39.381131,115 S SEASIDE AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_77_40,-74.59491562,39.50513251,212 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_77_40,-74.57364569,39.37188396,212 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_770_1,-74.651856,39.353651,670 CAROLYN TERR,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_770_1,-74.42533083,39.36560684,670 CAROLYN TERR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_770_10,-74.548792,39.462262,4019 CROSSAN AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_770_10,-74.5231282,39.31297954,4019 CROSSAN AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_770_11,-74.537871,39.4669145,4025 CROSSAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_770_11,-74.5226185,39.31504896,4025 CROSSAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_770_15,-74.63101606,39.36458174,4126 WEST END AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_770_15,-74.42281745,39.36728995,4126 WEST END AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_770_2,-74.63828635,39.34486211,661 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_770_2,-74.42645412,39.35998694,661 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_770_4,-74.82622711,39.40492754,653 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_770_4,-74.43495188,39.37052976,653 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES3B,3001 -0102_770_5,-74.7604325,39.4308685,647 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_770_5,-74.44042129,39.36905667,647 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_770_6,-74.70580944,39.47834766,639 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_770_6,-74.43992324,39.36819093,639 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_770_7,-74.60231792,39.50215586,631 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1928,1,RES1,3001 -0102_770_7,-74.44101135,39.36850181,631 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1928,1,RES1,3001 -0102_770_8,-74.6092385,39.4847735,621 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_770_8,-74.44291175,39.36692569,621 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_770_9,-74.54040707,39.47191026,619 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_770_9,-74.59997576,39.3092514,619 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_771_1,-74.5765719,39.36623314,4200 WEST END AVE,ATLANTIC CITY CITY,,0,1,RES1,3004 -0102_771_1,-74.42670157,39.36057441,4200 WEST END AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_771_2,-74.62753224,39.4886213,4300 WEST END AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_771_2,-74.43838783,39.36830198,4300 WEST END AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_772_1,-74.6902435,39.449979,600 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_772_1,-74.43831341,39.3681883,600 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_773_1,-74.55320573,39.47484456,600 SOUTH DRIVE,ATLANTIC CITY CITY,45,1952,4,RES1,3001 -0102_773_1,-74.59913151,39.31097746,600 SOUTH DRIVE,ATLANTIC CITY CITY,45,1952,4,RES1,3001 -0102_773_10,-74.601839,39.436666,4300 NORTH DRIVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_773_10,-74.58391847,39.35190833,4300 NORTH DRIVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_773_3,-74.5363002,39.45573101,500 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_773_3,-74.52419389,39.32000555,500 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_773_6,-74.45703477,39.34980191,4301 FILBERT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_773_6,-74.84899985,39.3925659,4301 FILBERT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_773_8,-74.589726,39.4260495,501 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_773_8,-74.48929903,39.33606361,501 N RALEIGH AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_774_1,-74.973486,39.5094505,571 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_774_1,-74.4470157,39.35791385,571 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_774_2,-74.78788864,39.64045009,569 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_774_2,-74.44630789,39.35721083,569 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_774_3,-74.5376645,39.461089,4101 FILBERT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_774_3,-74.52407208,39.31986436,4101 FILBERT AVE,ATLANTIC CITY CITY,,0,1,RES1,3002 -0102_775_15,-74.621914,39.4252505,511 N DOVER AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_775_15,-74.51968715,39.31779847,511 N DOVER AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_775_16,-74.60587618,39.41578611,3901 FILBERT AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_775_16,-74.49111493,39.34060176,3901 FILBERT AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_775_17,-74.64376,39.434741,529 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_775_17,-74.51884833,39.31739893,529 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_775_19,-74.77917116,39.67011649,567 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_775_19,-74.44574965,39.35710604,567 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_775_2,-74.6171995,39.438966,4016 CROSSAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_775_2,-74.58402883,39.35202429,4016 CROSSAN AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_775_8,-74.942889,39.525422,545 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_775_8,-74.4464213,39.35817784,545 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_776_10,-74.61914729,39.43369996,509 HARBOR RD,ATLANTIC CITY CITY,16,1929,1,RES1,3001 -0102_776_10,-74.51869563,39.31752552,509 HARBOR RD,ATLANTIC CITY CITY,16,1929,1,RES1,3001 -0102_776_12,-74.63693058,39.43166472,514 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_776_12,-74.51849173,39.31729857,514 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_776_13,-74.6216165,39.423459,503 HARBOR RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_776_13,-74.5191283,39.31725035,503 HARBOR RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_776_14,-74.6319965,39.413992,500 N ELBERON AVE,ATLANTIC CITY CITY,17,1962,1,RES1,3001 -0102_776_14,-74.52047741,39.31938626,500 N ELBERON AVE,ATLANTIC CITY CITY,17,1962,1,GOV1,3004 -0102_776_15,-74.59659529,39.42021942,3947 FILBERT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_776_15,-74.49011515,39.33705407,3947 FILBERT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_776_2,-74.54562328,39.47235237,566 N ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_776_2,-74.43633752,39.36525146,566 N ELBERON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_776_3,-74.554152,39.466827,556 N ELBERON AVE,ATLANTIC CITY CITY,17,2015,1,RES1,3001 -0102_776_3,-74.52711151,39.31348892,556 N ELBERON AVE,ATLANTIC CITY CITY,17,2015,1,RES1,3001 -0102_776_4,-74.78366454,39.65350565,548 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_776_4,-74.44589457,39.35734408,548 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_776_5,-74.97212447,39.51613966,544 N ELBERON AVE,ATLANTIC CITY CITY,17,1955,1,RES3A,3001 -0102_776_5,-74.44680227,39.35779127,544 N ELBERON AVE,ATLANTIC CITY CITY,17,1955,1,GOV1,3004 -0102_776_7,-74.93462033,39.52153082,540 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_776_7,-74.44651777,39.35805948,540 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_776_8,-74.9493265,39.5150285,536 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_776_8,-74.44723072,39.35764389,536 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_777_1,-74.68216297,39.46169928,3910 CROSSAN AVE,ATLANTIC CITY CITY,16,2004,1,COM7,3004 -0102_777_1,-74.43817967,39.3680051,3910 CROSSAN AVE,ATLANTIC CITY CITY,16,2004,1,RES1,3001 -0102_777_10,-74.91397554,39.53804584,509 N ELBERON AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_777_10,-74.44686231,39.35797599,509 N ELBERON AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_777_11,-74.9341646,39.5241478,507 N ELBERON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_777_11,-74.44651647,39.35798702,507 N ELBERON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_777_12,-74.95118682,39.51610982,503 N ELBERON AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_777_12,-74.44728351,39.35770408,503 N ELBERON AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_777_13,-74.6332785,39.430269,501 N ELBERON AVE,ATLANTIC CITY CITY,45,1961,4,RES1,3001 -0102_777_13,-74.51883547,39.31715599,501 N ELBERON AVE,ATLANTIC CITY CITY,45,1961,4,RES1,3001 -0102_777_14,-74.63207056,39.42931556,3915 FILBERT AVE,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_777_14,-74.51899637,39.31730213,3915 FILBERT AVE,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_777_2,-74.62435366,39.46054632,595 N ELBERON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_777_2,-74.44112032,39.36994316,595 N ELBERON AVE,ATLANTIC CITY CITY,17,1925,1,RES1,3001 -0102_777_4,-74.56372195,39.50215185,557 N ELBERON AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_777_4,-74.4399764,39.36607904,557 N ELBERON AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_777_5,-74.61842284,39.4384523,547 N ELBERON AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_777_5,-74.59130098,39.31488457,547 N ELBERON AVE,ATLANTIC CITY CITY,17,1956,1,RES1,3001 -0102_777_7,-74.53828035,39.46534288,537 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_777_7,-74.52200352,39.31448953,537 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_777_8,-74.7011095,39.6456785,533 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_777_8,-74.44612757,39.35721785,533 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_778_1,-74.68992455,39.49422884,3906 CROSSAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_778_1,-74.43935939,39.36759527,3906 CROSSAN AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_778_10,-74.94312791,39.52658829,510 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_778_10,-74.44636609,39.35811953,510 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_778_16,-74.55739841,39.47731373,546 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_778_16,-74.43628234,39.3651969,546 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_778_17,-74.58030845,39.47442256,553 WARRENA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_778_17,-74.44023068,39.36625538,553 WARRENA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_778_18,-74.682474,39.443646,559 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_778_18,-74.44389907,39.37052936,559 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_778_2,-74.76152846,39.43077465,570 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_778_2,-74.44020191,39.36923942,570 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1963,1,RES1,3001 -0102_778_3,-74.634981,39.5007805,560 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1977,2,RES1,3001 -0102_778_3,-74.43792283,39.36808697,560 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1977,2,RES1,3001 -0102_778_4,-74.61077078,39.490988,550 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1977,2,GOV1,3004 -0102_778_4,-74.44092584,39.36852998,550 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1977,2,GOV1,3004 -0102_778_5,-74.539375,39.472611,540 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1961,1,GOV1,3004 -0102_778_5,-74.59374802,39.31468552,540 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_778_7,-74.5409285,39.4675945,530 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_778_7,-74.5247812,39.32004804,530 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_778_8,-74.79326043,39.65071262,526 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_778_8,-74.44581883,39.35726678,526 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_778_9,-74.88713661,39.59532531,512 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_778_9,-74.44617034,39.35727289,512 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_1,-74.5849935,39.3544085,651 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_1,-74.42648514,39.3603262,651 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_10,-74.67812267,39.44631985,630 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_10,-74.43742645,39.36833191,630 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_11,-74.60610981,39.49247808,624 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_11,-74.44285091,39.36694736,624 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_13,-74.557154,39.476774,622 WISTERIA RD #B,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_779_13,-74.43625501,39.36512037,622 WISTERIA RD #B,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_779_16,-74.53452023,39.46307512,616 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_16,-74.52531221,39.31459392,616 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_17,-74.78895491,39.65946541,614 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_17,-74.44567567,39.35717089,614 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_2,-74.59587989,39.36135639,646 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_2,-74.42680327,39.36053596,646 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_20,-74.8841885,39.5967355,3849 FILBERT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_779_20,-74.44621723,39.357341,3849 FILBERT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_779_21,-74.9737125,39.510007,3851 FILBERT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_21,-74.44696554,39.35793678,3851 FILBERT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_23,-74.7865202,39.64271926,513 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_23,-74.446427,39.35716053,513 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_779_24,-74.787421,39.6651145,515 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_779_24,-74.44584377,39.35710335,515 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_25,-74.54943972,39.46833257,618 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_25,-74.52512129,39.31456353,618 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_26,-74.6059145,39.43908317,527 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_26,-74.58397831,39.35170433,527 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_27,-74.54850989,39.47631672,629 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_27,-74.59916035,39.31070255,629 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_28,-74.61140011,39.48670581,625 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_28,-74.44029467,39.36636515,625 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_29,-74.658541,39.447808,628 WISTERIA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_29,-74.44135667,39.36974404,628 WISTERIA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_3,-74.57846485,39.36663803,644 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_3,-74.42660234,39.36045817,644 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_779_30,-74.59791253,39.49820266,631 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_779_30,-74.44147034,39.36956859,631 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_779_31,-74.6810356,39.44328882,633 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_779_31,-74.44399638,39.37050618,633 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_779_32,-74.66939539,39.46271369,635 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_32,-74.43838918,39.36835297,635 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_33,-74.69766249,39.48097583,737 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_33,-74.43986713,39.36812035,737 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_34,-74.71714164,39.39391507,639 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_34,-74.43937869,39.36747034,639 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_779_35,-74.81406583,39.3714395,643 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2012,1,RES1,3001 -0102_779_35,-74.44020332,39.36963183,643 N HARRISBURG AVE,ATLANTIC CITY CITY,17,2012,1,RES1,3001 -0102_779_36,-74.8158685,39.411628,645 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_36,-74.43476733,39.370899,645 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_37,-74.58472791,39.53333445,649 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_37,-74.54929586,39.37689195,649 N HARRISBURG AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_4,-74.57632785,39.53062246,642 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_4,-74.56343744,39.37244698,642 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_5,-74.84424397,39.42741852,640 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,AGR1,3001 -0102_779_5,-74.43429858,39.37084467,640 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_6,-74.8138607,39.37716397,638 WISTERIA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_6,-74.43958406,39.36935894,638 WISTERIA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_779_7,-74.7128625,39.405825,636 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_7,-74.44112815,39.36755309,636 WISTERIA RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_779_8,-74.68102361,39.49891183,634 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_8,-74.4398982,39.36815512,634 WISTERIA RD,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_779_9,-74.64879466,39.47097848,632 WISTERIA RD,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_779_9,-74.43835775,39.36825829,632 WISTERIA RD,ATLANTIC CITY CITY,45,1930,2,RES1,3001 -0102_78_20,-74.85265284,39.36880749,211 S SEASIDE AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_78_20,-74.61034771,39.36735723,211 S SEASIDE AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_78_4,-74.7143045,39.4489275,208 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_78_4,-74.63262765,39.35232827,208 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_78_6,-74.832387,39.4117075,212 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_78_6,-74.6406425,39.34074,212 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,45,1900,3,RES1,3001 -0102_780_1,-74.636289,39.365564,3808 CROSSAN AVE,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_780_1,-74.42541262,39.36101181,3808 CROSSAN AVE,ATLANTIC CITY CITY,16,1930,1,RES1,3001 -0102_780_10,-74.7548145,39.4322425,550 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_780_10,-74.44110191,39.36751035,550 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_780_11,-74.71731542,39.39159633,546 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,2,GOV1,3004 -0102_780_11,-74.43983815,39.36807984,546 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_780_12,-74.67760764,39.48274106,542 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_780_12,-74.43825361,39.36813083,542 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_780_13,-74.6702748,39.45771569,540 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_780_13,-74.43770283,39.36821048,540 N TRENTON AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_780_14,-74.68137285,39.44665075,536 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_14,-74.43680134,39.36833971,536 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_15,-74.61967735,39.43706399,534 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_15,-74.44139043,39.36954256,534 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_16,-74.60719822,39.48977859,530 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_16,-74.44263803,39.36687089,530 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_17,-74.5809715,39.474029,526 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_780_17,-74.44011508,39.36614583,526 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_780_18,-74.5662055,39.4810435,524 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_18,-74.43997296,39.36597506,524 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_19,-74.5385705,39.472473,520 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,3,RES1,3001 -0102_780_19,-74.60037117,39.30911714,520 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,3,RES1,3001 -0102_780_2,-74.6381395,39.3603565,574 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_2,-74.42563616,39.36607287,574 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_20,-74.61888194,39.43643071,518 N TRENTON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_780_20,-74.59189578,39.31450399,518 N TRENTON AVE,ATLANTIC CITY CITY,45,1925,2,RES1,3001 -0102_780_21,-74.5561105,39.469719,514 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3004 -0102_780_21,-74.5269182,39.31407199,514 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_22,-74.5517475,39.469858,3801 FILBERT,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_780_22,-74.52373049,39.3143675,3801 FILBERT,ATLANTIC CITY CITY,17,1940,1,RES1,3001 -0102_780_3,-74.633448,39.364772,572 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_3,-74.42425876,39.36054863,572 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_4,-74.62822897,39.34823484,568 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_4,-74.42648583,39.36004468,568 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_5,-74.59105453,39.36558982,566 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_780_5,-74.42676259,39.36055634,566 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_6,-74.5757045,39.3562175,562 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_6,-74.42646003,39.36028043,562 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_7,-74.60495533,39.506473,558 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_7,-74.54449867,39.37724696,558 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_8,-74.81077949,39.40796033,556 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES3A,3004 -0102_780_8,-74.43394871,39.3701681,556 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_780_9,-74.79539529,39.38024712,552 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_780_9,-74.43968567,39.36949349,552 N TRENTON AVE,ATLANTIC CITY CITY,27,1925,2,RES1,3001 -0102_781_1,-74.6467055,39.549956,650 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_1,-74.58932151,39.37168855,650 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_10,-74.8319285,39.3913385,541 N TRENTON AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_781_10,-74.43995938,39.36922856,541 N TRENTON AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_781_11,-74.80264812,39.43096434,543 N TRENTON AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_781_11,-74.43466283,39.36991183,543 N TRENTON AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_781_12,-74.594872,39.360269,547 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_12,-74.4267476,39.36042395,547 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_13,-74.67751778,39.35468646,565 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_13,-74.423142,39.37004386,565 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_2,-74.64856164,39.52823845,648 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_2,-74.531988,39.3896875,648 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_4,-74.54114817,39.54966901,522 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_4,-74.570157,39.373109,522 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES3B,3001 -0102_781_6,-74.63121599,39.31691908,500 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_6,-74.42659144,39.36019702,500 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_781_8,-74.71102224,39.43102182,537 N TRENTON AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_781_8,-74.44005597,39.3677215,537 N TRENTON AVE,ATLANTIC CITY CITY,27,1920,2,COM1,3002 -0102_781_9,-74.7568905,39.430048,539 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_781_9,-74.43981244,39.36964496,539 N TRENTON AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_782_1,-74.5913405,39.375754,444 N RICHMOND AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_782_1,-74.48592772,39.33977863,444 N RICHMOND AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_782_3,-74.62312987,39.41868567,400 N RICHMOND AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_782_3,-74.44050749,39.35889048,400 N RICHMOND AVE,ATLANTIC CITY CITY,17,1920,1,GOV1,3004 -0102_783_1,-74.48150039,39.35241883,473 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_783_1,-74.44764897,39.35670648,473 N RICHMOND AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_783_11,-74.631109,39.4192115,401 N RICHMOND AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_783_11,-74.44062049,39.35882606,401 N RICHMOND AVE,ATLANTIC CITY CITY,17,1959,1,RES1,3001 -0102_783_12,-74.63285418,39.4175045,411 N RICHMOND AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_783_12,-74.44054453,39.35858753,411 N RICHMOND AVE,ATLANTIC CITY CITY,16,1900,1,GOV1,3004 -0102_783_15,-74.4662775,39.3449345,445 N RICHMOND AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_783_15,-74.4469251,39.35600161,445 N RICHMOND AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_783_16,-74.47087008,39.34303685,447 N RICHMOND AVE,ATLANTIC CITY CITY,17,1992,1,RES1,3001 -0102_783_16,-74.44700952,39.35615342,447 N RICHMOND AVE,ATLANTIC CITY CITY,17,1992,1,RES1,3001 -0102_783_17,-74.59250217,39.37120334,465 N RICHMOND AVE,ATLANTIC CITY CITY,45,1968,2,RES1,3001 -0102_783_17,-74.48617575,39.33916363,465 N RICHMOND AVE,ATLANTIC CITY CITY,45,1968,2,COM1,3004 -0102_783_3,-74.548032,39.3884635,454 WINDSOR RD,ATLANTIC CITY CITY,17,1976,1,RES1,3001 -0102_783_3,-74.48547696,39.33877199,454 WINDSOR RD,ATLANTIC CITY CITY,17,1976,1,COM1,3004 -0102_784_1,-74.488068,39.3388175,4212 FILBERT AVE,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_784_1,-74.44736063,39.35705388,4212 FILBERT AVE,ATLANTIC CITY CITY,17,1964,1,RES1,3001 -0102_784_10,-74.64428196,39.4092237,415 WINDSOR RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_784_10,-74.44063355,39.35855579,415 WINDSOR RD,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_784_15,-74.46649083,39.34423775,445 WINDSOR RD,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_784_15,-74.44696954,39.35609312,445 WINDSOR RD,ATLANTIC CITY CITY,17,1985,1,RES1,3001 -0102_784_2,-74.491248,39.337826,472 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_784_2,-74.44806976,39.35746938,472 N ANNAPOLIS AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_784_3,-74.5143815,39.3277495,458 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_784_3,-74.81016666,39.3730365,458 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_784_4,-74.55373863,39.39061964,444 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_784_4,-74.48573475,39.33956432,444 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_784_5,-74.539811,39.38683367,424 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_784_5,-74.48648511,39.33920657,424 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_784_6,-74.55324716,39.37792236,418 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_784_6,-74.48530961,39.33898765,418 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1957,1,RES1,3001 -0102_784_8,-74.63199499,39.41855368,4205 PORTER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_784_8,-74.44069553,39.35881429,4205 PORTER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_785_1,-74.49997558,39.33740353,477 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_785_1,-74.44819795,39.35781066,477 N ANNAPOLIS AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_785_11,-74.65518404,39.40364073,4121 PORTER AVE,ATLANTIC CITY CITY,45,1956,2,RES1,3001 -0102_785_11,-74.44072338,39.35853394,4121 PORTER AVE,ATLANTIC CITY CITY,45,1956,2,RES1,3001 -0102_785_13,-74.5537115,39.380132,403 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_785_13,-74.48615314,39.33877252,403 N ANNAPOLIS AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_785_14,-74.5353365,39.3921635,405 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_785_14,-74.48511725,39.3387923,405 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_785_15,-74.53980814,39.38622644,407 N ANNAPOLIS AVE,ATLANTIC CITY CITY,18,1957,1,RES1,3001 -0102_785_15,-74.48573494,39.33917121,407 N ANNAPOLIS AVE,ATLANTIC CITY CITY,18,1957,1,RES3A,3001 -0102_785_16,-74.53437233,39.40016394,429 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1955,1,RES3A,3001 -0102_785_16,-74.48572159,39.33859587,429 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_785_17,-74.523957,39.318221,443 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_785_17,-74.799974,39.3743705,443 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_785_18,-74.48896762,39.33571715,465 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_785_18,-74.44868544,39.35721055,465 N ANNAPOLIS AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_785_3,-74.46299126,39.35021593,4108 FILBERT AVE,ATLANTIC CITY CITY,17,1953,1,RES1,3001 -0102_785_3,-74.836556,39.389479,4108 FILBERT AVE,ATLANTIC CITY CITY,17,1953,1,RES1,3001 -0102_785_5,-74.49622163,39.33677467,463 N ANNAPOLIS AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_785_5,-74.44813713,39.35742999,463 N ANNAPOLIS AVE,ATLANTIC CITY CITY,18,1900,1,RES1,3001 -0102_785_6,-74.494692,39.3407695,448 RIDGEWAY RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_785_6,-74.44727027,39.35690781,448 RIDGEWAY RD,ATLANTIC CITY CITY,16,1900,1,RES3A,3001 -0102_786_1,-74.48321242,39.34148033,4008 FILBERT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_1,-74.805512,39.4324755,4008 FILBERT AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_10,-74.53606425,39.38533131,416 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_10,-74.48654395,39.33926515,416 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_12,-74.5333535,39.388873,402 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_12,-74.48583317,39.33931749,402 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_13,-74.5408162,39.39166062,400 N DOVER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_786_13,-74.48579228,39.33924883,400 N DOVER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_786_2,-74.466693,39.3463585,474 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_2,-74.745546,39.4449695,474 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_3,-74.459146,39.3483455,464 N DOVER AVE,ATLANTIC CITY CITY,17,1960,1,RES3A,3001 -0102_786_3,-74.81100035,39.41224493,464 N DOVER AVE,ATLANTIC CITY CITY,17,1960,1,RES1,3001 -0102_786_4,-74.50836467,39.337904,458 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_4,-74.44761113,39.35742011,458 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_6,-74.48814215,39.33612852,448 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,GOV1,3004 -0102_786_6,-74.4483028,39.35735874,448 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_786_7,-74.5113669,39.32849292,432 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_7,-74.81121843,39.37408842,432 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_8,-74.5224215,39.3198115,428 N DOVER AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_786_8,-74.76117073,39.42957314,428 N DOVER AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_786_9,-74.543835,39.399207,424 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_786_9,-74.48579404,39.33961289,424 N DOVER AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_787_10,-74.522869,39.3188805,406 N HARBOR RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_787_10,-74.79980883,39.37613272,406 N HARBOR RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_787_11,-74.51979433,39.31789001,404 HARBOR RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_787_11,-74.75834,39.431864,404 HARBOR RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_787_12,-74.554171,39.3913815,402 HARBOR RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_787_12,-74.48600935,39.3395166,402 HARBOR RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_787_13,-74.55109494,39.39090666,403 N DOVER AVE,ATLANTIC CITY CITY,17,1946,1,RES1,3001 -0102_787_13,-74.4852199,39.33872706,403 N DOVER AVE,ATLANTIC CITY CITY,17,1946,1,RES1,3001 -0102_787_16,-74.51624855,39.33100158,421 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_787_16,-74.81064727,39.37479061,421 N DOVER AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_787_18,-74.49769198,39.33834812,437 N DOVER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_787_18,-74.44741973,39.35714818,437 N DOVER AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_787_19,-74.48148546,39.33800039,461 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_787_19,-74.73220932,39.4425042,461 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_787_2,-74.53675269,39.40649967,470 HARBOR AVE,ATLANTIC CITY CITY,17,1983,1,RES1,3001 -0102_787_2,-74.48599092,39.33985136,470 HARBOR AVE,ATLANTIC CITY CITY,17,1983,1,RES1,3001 -0102_787_3,-74.61123514,39.37546971,464 HARBOR RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_787_3,-74.48671959,39.33948479,464 HARBOR RD,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_787_4,-74.4780099,39.33935083,426 HARBOR RD,ATLANTIC CITY CITY,17,1900,1,RES1,3002 -0102_787_4,-74.718651,39.448636,426 HARBOR RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_787_5,-74.50092534,39.334927,447 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES3A,3001 -0102_787_5,-74.44876399,39.35755768,447 N DOVER AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_787_6,-74.4916715,39.336188,414 HARBOR RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_787_6,-74.44822292,39.35739376,414 HARBOR RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_787_7,-74.49335903,39.34193967,410 HARBOR RD,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_787_7,-74.44743207,39.35679128,410 HARBOR RD,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_787_8,-74.51634309,39.32750609,408 HARBOR RD,ATLANTIC CITY CITY,16,1925,1,RES1,3001 -0102_787_8,-74.82729204,39.37504304,408 HARBOR RD,ATLANTIC CITY CITY,16,1925,1,RES3A,3001 -0102_788_1,-74.5517095,39.419902,4000 FILBERT AVE,ATLANTIC CITY CITY,17,1955,1,COM1,3004 -0102_788_1,-74.4867166,39.33859701,4000 FILBERT AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_788_13.01,-74.51968733,39.32002051,402 N ELBERON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_788_13.01,-74.76002205,39.43216422,402 N ELBERON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_788_3,-74.5907975,39.3996725,460 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES3B,3001 -0102_788_3,-74.48574643,39.33867952,460 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_788_4,-74.602287,39.3721975,430 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES3A,3001 -0102_788_4,-74.48587161,39.33880907,430 N ELBERON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_788_5,-74.46402184,39.34864724,422 N ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_788_5,-74.8410405,39.4019765,422 N ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_788_7,-74.490928,39.3347815,418 N ELBERON AVE,ATLANTIC CITY CITY,17,2015,1,RES1,3001 -0102_788_7,-74.44844024,39.35707082,418 N ELBERON AVE,ATLANTIC CITY CITY,17,2015,1,RES1,3001 -0102_788_8,-74.487519,39.338693,416 N ELBERON AVE,ATLANTIC CITY CITY,17,1952,1,RES1,3001 -0102_788_8,-74.44738651,39.35710006,416 N ELBERON AVE,ATLANTIC CITY CITY,17,1952,1,RES1,3001 -0102_789_1,-74.60577218,39.40836402,473 N ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES3A,3001 -0102_789_1,-74.48647445,39.33861964,473 N ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_789_10,-74.49315315,39.33481552,404 WARRENA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_789_10,-74.44858358,39.3570619,404 WARRENA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_789_11,-74.49783016,39.33787551,402 WARRENA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_789_11,-74.44744389,39.35719667,402 WARRENA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_789_12,-74.4931274,39.3408352,3917 PORTER AVE,ATLANTIC CITY CITY,16,1995,1,RES1,3001 -0102_789_12,-74.44722953,39.35684908,3917 PORTER AVE,ATLANTIC CITY CITY,16,1995,1,RES1,3001 -0102_789_13,-74.4940235,39.3419705,401 N ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_789_13,-74.44755732,39.35673874,401 N ELBERON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_789_15,-74.50322753,39.33651666,409 N ELBERON AVE,ATLANTIC CITY CITY,18,1900,1,RES3A,3001 -0102_789_15,-74.44829483,39.35778699,409 N ELBERON AVE,ATLANTIC CITY CITY,18,1900,1,COM1,3004 -0102_789_2,-74.597898,39.4119875,3904 FILBERT AVE,ATLANTIC CITY CITY,17,1948,1,RES1,3001 -0102_789_2,-74.48799395,39.33657862,3904 FILBERT AVE,ATLANTIC CITY CITY,17,1948,1,RES1,3001 -0102_789_3,-74.57563908,39.418618,467 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_789_3,-74.48711699,39.33908104,467 N ELBERON AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_789_4,-74.5701435,39.4130185,457 N ELBERON AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_789_4,-74.48685657,39.33874452,457 N ELBERON AVE,ATLANTIC CITY CITY,16,1950,1,RES1,3001 -0102_789_5,-74.60876983,39.38756657,455 N ELBERON AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_789_5,-74.48628448,39.33930849,455 N ELBERON AVE,ATLANTIC CITY CITY,17,1954,1,RES1,3001 -0102_789_7,-74.4842765,39.336016,412 WARRENA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_789_7,-74.74889446,39.45205068,412 WARRENA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_789_8,-74.47519004,39.34187767,410 WARRENA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_789_8,-74.8271125,39.417592,410 WARRENA RD,ATLANTIC CITY CITY,27,1920,2,RES3A,3001 -0102_789_9,-74.5048685,39.3347295,406 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,COM1,3004 -0102_789_9,-74.44887885,39.35750699,406 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_79_14,-74.6062265,39.5054195,107 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_79_14,-74.57418721,39.37122053,107 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_79_15,-74.60308785,39.51785315,116 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_79_15,-74.537755,39.3879,116 PACIFIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_790_1,-74.58798488,39.43176576,3910 FILBERT AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_790_1,-74.49374537,39.34142876,3910 FILBERT AVE,ATLANTIC CITY CITY,17,1955,1,RES1,3001 -0102_790_10,-74.5745005,39.4151605,440 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_10,-74.48666007,39.33985894,440 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_11,-74.5631025,39.416955,438 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_11,-74.48700845,39.33970549,438 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_12,-74.53144236,39.40911775,436 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,COM1,3002 -0102_790_12,-74.48660225,39.33936817,436 N HARRISBURG AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_790_13,-74.59085468,39.39957601,434 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_13,-74.48532595,39.33872915,434 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_14,-74.61470488,39.3837534,432 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,COM1,3004 -0102_790_14,-74.48604983,39.33867907,432 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_15,-74.61612824,39.37177469,430 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_15,-74.48546379,39.33920664,430 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_16,-74.60315007,39.37012019,428 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_16,-74.48608322,39.33963445,428 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_17,-74.59038484,39.36938703,426 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3004 -0102_790_17,-74.48611311,39.33908866,426 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_18,-74.48725952,39.33688494,424 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_18,-74.72953982,39.45281296,424 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_19,-74.48213406,39.33936033,422 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_19,-74.85290687,39.42426184,422 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_2,-74.6261745,39.425476,3900 FILBERT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_790_2,-74.52027494,39.31845182,3900 FILBERT AVE,ATLANTIC CITY CITY,16,1900,1,RES1,3001 -0102_790_20,-74.47501751,39.34144417,420 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_20,-74.80434475,39.43266292,420 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_21,-74.46038464,39.34808718,418 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_21,-74.8202955,39.4070905,418 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_22,-74.51221983,39.32749987,416 N HARRISBURG AVE,ATLANTIC CITY CITY,33,1920,1,GOV1,3004 -0102_790_22,-74.8284095,39.383962,416 N HARRISBURG AVE,ATLANTIC CITY CITY,33,1920,1,RES1,3001 -0102_790_23,-74.49864017,39.3360305,414 N HARRISBURG AVE #B,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_790_23,-74.44869366,39.35771606,414 N HARRISBURG AVE #B,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_790_24,-74.4994855,39.3402735,414 N HARRISBURG AVE #A,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_790_24,-74.44796133,39.35727892,414 N HARRISBURG AVE #A,ATLANTIC CITY CITY,,0,1,COM1,3002 -0102_790_25,-74.49529533,39.33518792,400 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1950,1,RES3A,3001 -0102_790_25,-74.44860071,39.35726147,400 N HARRISBURG AVE,ATLANTIC CITY CITY,17,1950,1,RES1,3001 -0102_790_27,-74.50353536,39.34154543,409 WARRENA RD,ATLANTIC CITY CITY,45,1960,3,RES1,3001 -0102_790_27,-74.44832353,39.35714294,409 WARRENA RD,ATLANTIC CITY CITY,45,1960,3,RES1,3001 -0102_790_3,-74.58722183,39.42323349,454 N HARRISBURG AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_790_3,-74.48951833,39.33631218,454 N HARRISBURG AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_790_31,-74.57514098,39.41104511,455 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_790_31,-74.4865203,39.33870546,455 WARRENA RD,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_790_4,-74.59968987,39.40921713,452 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_4,-74.48674007,39.33897845,452 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_5,-74.5969065,39.4173885,450 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_5,-74.4866571,39.33853186,450 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_6,-74.596311,39.4076745,448 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_6,-74.48707825,39.33902435,448 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_7,-74.5744462,39.4284143,446 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_7,-74.48701192,39.33932149,446 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_8,-74.56867461,39.41077344,444 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_8,-74.48677895,39.33867514,444 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_790_9,-74.57205723,39.41301249,442 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_790_9,-74.4870218,39.338945,442 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_10,-74.60199554,39.4101362,442 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_10,-74.48661206,39.33845433,442 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_11,-74.58616169,39.41577855,440 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_11,-74.48692083,39.33919851,440 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_12,-74.5760673,39.40781296,438 WISTERIA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_12,-74.48649933,39.33831398,438 WISTERIA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_13,-74.57432007,39.42041873,436 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_13,-74.48630696,39.33818421,436 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_14,-74.567999,39.412596,434 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_14,-74.48679453,39.33905609,434 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_15,-74.570044,39.4132065,432 WISTERIA RD,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_15,-74.4864381,39.33825016,432 WISTERIA RD,ATLANTIC CITY CITY,45,1920,2,COM1,3004 -0102_791_16,-74.55337519,39.40725706,430 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_16,-74.48728522,39.33953105,430 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_17,-74.6089845,39.3889505,428 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_17,-74.48641608,39.33944334,428 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_18,-74.58342558,39.40150281,426 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_18,-74.48551473,39.3388888,426 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_19,-74.60051535,39.3833093,424 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_19,-74.48584573,39.33969794,424 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_2,-74.56890683,39.44631562,3818 FILBERT AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_791_2,-74.52147374,39.31916677,3818 FILBERT AVE,ATLANTIC CITY CITY,17,1961,1,RES1,3001 -0102_791_20,-74.61694257,39.3747078,422 WISTERIA RD,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_20,-74.48566477,39.33947851,422 WISTERIA RD,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_22,-74.47764474,39.33799116,418 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_22,-74.73557748,39.43722924,418 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_23,-74.47995852,39.34022602,416 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_23,-74.84971516,39.4113905,416 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_791_24,-74.46050238,39.34597783,3821 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_791_24,-74.82601,39.4069475,3821 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_791_27,-74.46869417,39.34608749,417 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_27,-74.7169855,39.453955,417 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_28,-74.59028178,39.368898,419 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_28,-74.48563886,39.33850388,419 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_29,-74.61404825,39.37183511,421 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_29,-74.48642863,39.33913979,421 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,COM1,3004 -0102_791_30,-74.60718179,39.38179816,423 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_30,-74.48645375,39.33951601,423 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_31,-74.61016635,39.37805443,425 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_31,-74.48598575,39.33857117,425 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_32,-74.6091115,39.3913755,427 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_32,-74.48557719,39.33937003,427 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_33,-74.5330495,39.4041915,429 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_33,-74.48714724,39.33962361,429 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1920,2,GOV1,3004 -0102_791_34,-74.56883309,39.41798039,431 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_34,-74.4860909,39.34012799,431 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,GOV1,3004 -0102_791_35,-74.567559,39.413063,433 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_35,-74.48724201,39.33922248,433 N HARRISBURG AVE,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_36,-74.56619412,39.4125834,435 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_791_36,-74.48640887,39.33856596,435 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_791_37,-74.5563585,39.43455334,437 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_37,-74.48656968,39.33877704,437 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_38,-74.57036985,39.42802601,439 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_38,-74.48629032,39.33841294,439 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_39,-74.57862876,39.41829097,441 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_791_39,-74.48696384,39.33888646,441 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_791_4,-74.629348,39.425169,454 WISTERIA RD,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_4,-74.52020316,39.31832131,454 WISTERIA RD,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_40,-74.5972495,39.41033,443 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_40,-74.48655495,39.33838364,443 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_41,-74.60325585,39.4085842,445 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_41,-74.48634175,39.33850658,445 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_42,-74.59789166,39.41804271,447 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_42,-74.48686895,39.33912665,447 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_791_43,-74.58838468,39.42759595,449 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_791_43,-74.48691979,39.33567824,449 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_44,-74.5821545,39.4320585,451 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_44,-74.49099492,39.33732809,451 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_45,-74.58280491,39.43100173,453 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_791_45,-74.4908783,39.33739728,453 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_791_46,-74.5875915,39.4294245,455 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,IND2,3004 -0102_791_46,-74.49440107,39.34174574,455 N HARRISBURG AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_5,-74.658486,39.4034935,452 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,AGR1,3001 -0102_791_5,-74.52034213,39.31925141,452 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES3A,3001 -0102_791_6,-74.59530469,39.43475359,450 WISTERIA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_6,-74.49380352,39.34139905,450 WISTERIA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_7,-74.58525394,39.43305066,448 WISTERIA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_791_7,-74.49004102,39.336988,448 WISTERIA RD,ATLANTIC CITY CITY,45,1900,2,RES1,3004 -0102_791_8,-74.576792,39.420127,446 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_8,-74.48712322,39.33558114,446 WISTERIA RD,ATLANTIC CITY CITY,27,1900,2,RES1,3001 -0102_791_9,-74.607404,39.4068725,444 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_791_9,-74.48696683,39.33926499,444 WISTERIA RD,ATLANTIC CITY CITY,27,1920,2,RES1,3001 -0102_792_1,-74.9490875,39.5136715,3804 FILBERT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_792_1,-74.44702415,39.35753192,3804 FILBERT AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_792_2,-74.5680245,39.4462085,460 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_792_2,-74.52159242,39.31929912,460 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_792_3,-74.626202,39.422942,440 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_792_3,-74.51868395,39.31721291,440 N TRENTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_792_4,-74.60059211,39.40897895,436 N TRENTON AVE,ATLANTIC CITY CITY,17,1965,1,RES1,3001 -0102_792_4,-74.48669474,39.33889044,436 N TRENTON AVE,ATLANTIC CITY CITY,17,1965,1,GOV1,3004 -0102_792_5,-74.57480717,39.4275626,420 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,GOV1,3004 -0102_792_5,-74.48689702,39.33881496,420 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_792_6,-74.5345475,39.4064145,410 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,IND1,3002 -0102_792_6,-74.48636079,39.33906413,410 N TRENTON AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_792_7,-74.6173205,39.374945,3801 PORTER AVE,ATLANTIC CITY CITY,45,1968,4,RES1,3001 -0102_792_7,-74.48536376,39.33905901,3801 PORTER AVE,ATLANTIC CITY CITY,45,1968,4,RES1,3001 -0102_793_1,-74.53933092,39.46734122,470 N ALBANY AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_793_1,-74.52251077,39.31499316,470 N ALBANY AVE,ATLANTIC CITY CITY,,1950,1,RES1,3001 -0102_793_10,-74.5815795,39.400633,3719 PORTER AVE,ATLANTIC CITY CITY,,0,1,COM5,3004 -0102_793_10,-74.48556158,39.33896356,3719 PORTER AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_793_2,-74.734175,39.64222,452 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES3A,3004 -0102_793_2,-74.44648207,39.35722331,452 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_793_4,-74.63351745,39.42990029,400 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,COM1,3004 -0102_793_4,-74.51857258,39.31743599,400 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_793_5,-74.5736805,39.4160125,3709 PORTER AVE,ATLANTIC CITY CITY,33,1900,1,AGR1,3001 -0102_793_5,-74.48744918,39.3394377,3709 PORTER AVE,ATLANTIC CITY CITY,33,1900,1,RES3A,3001 -0102_793_6,-74.55961514,39.41419426,3711 PORTER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_793_6,-74.48684427,39.33977221,3711 PORTER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_793_7,-74.53156628,39.41530012,3713 PORTER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_793_7,-74.48631355,39.33993826,3713 PORTER AVE,ATLANTIC CITY CITY,33,1925,1,RES1,3001 -0102_793_8,-74.61020157,39.39066466,3715 PORTER AVE,ATLANTIC CITY CITY,33,1927,1,RES1,3001 -0102_793_8,-74.48589216,39.33939337,3715 PORTER AVE,ATLANTIC CITY CITY,33,1927,1,RES1,3001 -0102_793_9,-74.60737579,39.38654341,3717 PORTER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_793_9,-74.48595865,39.33945133,3717 PORTER AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_794_1,-74.82941417,39.47611895,601 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_794_1,-74.43562825,39.36656706,601 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_795_40,-74.54482346,39.50796952,1601 ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_795_40,-74.43610541,39.36643819,1601 ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_795_46,-74.55696858,39.51072731,1635 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_795_46,-74.43565106,39.36667963,1635 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_799_16,-74.503202,39.3267955,MEADOW TRACK,ATLANTIC CITY CITY,17,1993,1,RES1,3001 -0102_799_16,-74.78860993,39.41906319,MEADOW TRACK,ATLANTIC CITY CITY,17,1993,1,RES1,3001 -0102_799_25,-74.50663325,39.32690232,2100 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_799_25,-74.7349745,39.4344325,2100 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_8_1,-74.36553194,39.41763669,101 S KINGSTON AVE,ATLANTIC CITY CITY,18,1911,1,RES1,3001 -0102_8_1,-74.9306905,39.488553,101 S KINGSTON AVE,ATLANTIC CITY CITY,18,1911,1,RES1,3001 -0102_8_11,-74.413377,39.370541,137 S KINGSTON AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_8_11,-74.81167234,39.63285847,137 S KINGSTON AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_8_12,-74.403837,39.37992583,133 S KINGSTON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_8_12,-74.85811118,39.61363847,133 S KINGSTON AVE,ATLANTIC CITY CITY,45,1915,2,RES1,3001 -0102_8_13,-74.44323,39.373538,129 S KINGSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_8_13,-74.84130161,39.63538438,129 S KINGSTON AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_8_14,-74.4020615,39.393788,121 S KINGSTON AVE,ATLANTIC CITY CITY,45,1949,2,RES1,3001 -0102_8_14,-74.89754946,39.48501685,121 S KINGSTON AVE,ATLANTIC CITY CITY,45,1949,2,RES1,3001 -0102_8_15,-74.3690231,39.40732431,119 S KINGSTON AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_8_15,-74.91864852,39.48201577,119 S KINGSTON AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_8_16,-74.36864014,39.40559668,115 S KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_8_16,-74.9180195,39.49290681,115 S KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_8_17,-74.37064081,39.40413285,107 S KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_8_17,-74.92800644,39.48097103,107 S KINGSTON AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_8_2,-74.3596495,39.416213,102 S BARTRAM AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_8_2,-74.932291,39.4956065,102 S BARTRAM AVE,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_8_3,-74.36513808,39.41681722,108 S BARTRAM AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_8_3,-74.927653,39.5034485,108 S BARTRAM AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_8_4,-74.368796,39.4033255,112 S BARTRAM AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_8_4,-74.93827812,39.48263571,112 S BARTRAM AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_8_5,-74.37392893,39.40518621,118 S BARTRAM AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_8_5,-74.91817626,39.49240278,118 S BARTRAM AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_8_6,-74.368655,39.40696317,122 S BARTRAM AVE,ATLANTIC CITY CITY,45,1910,2,GOV1,3004 -0102_8_6,-74.8895945,39.503439,122 S BARTRAM AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_8_7,-74.36271797,39.40928716,128 S BARTRAM AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_8_7,-74.9033785,39.4799545,128 S BARTRAM AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_8_8,-74.40353903,39.3874713,134 S BARTRAM AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_8_8,-74.84461335,39.63381137,134 S BARTRAM AVE,ATLANTIC CITY CITY,45,1912,2,RES1,3001 -0102_8_9,-74.53820944,39.31312621,140 S BARTRAM AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_8_9,-74.51033839,39.32745234,140 S BARTRAM AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_80_11,-74.809531,39.447267,119 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_80_11,-74.540131,39.380719,119 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_80_12,-74.72560984,39.48446089,121 ORIENTAL AVE,ATLANTIC CITY CITY,45,1928,2,RES1,3001 -0102_80_12,-74.53326751,39.38339008,121 ORIENTAL AVE,ATLANTIC CITY CITY,45,1928,2,RES1,3001 -0102_80_13,-74.71115628,39.4710364,123 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_80_13,-74.55296885,39.36842977,123 ORIENTAL AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_80_14,-74.712223,39.465827,123 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,33,1930,1,RES1,3001 -0102_80_14,-74.80916556,39.31276868,123 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,33,1930,1,GOV1,3004 -0102_80_15,-74.75924552,39.44625208,121 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_80_15,-74.7972735,39.36382948,121 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_80_16,-74.786672,39.43925,119 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_80_16,-74.82038069,39.36453446,119 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_80_17,-74.79424383,39.45744437,117 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_80_17,-74.54642687,39.37077513,117 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,33,1900,1,RES1,3001 -0102_80_18,-74.742641,39.4941295,115 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_80_18,-74.54063396,39.38195832,115 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_80_19,-74.8486025,39.4410685,113 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,45,1920,3,RES1,3001 -0102_80_19,-74.534387,39.378096,113 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,45,1920,3,GOV1,3004 -0102_80_22,-74.8812425,39.4738015,130 DEWEY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_80_22,-74.550191,39.3777885,130 DEWEY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_80_23,-74.8600165,39.4880375,128 DEWEY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_80_23,-74.5549485,39.3711065,128 DEWEY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_80_24,-74.562682,39.505685,126 DEWEY PL,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_80_24,-74.553342,39.371011,126 DEWEY PL,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_80_26,-74.5750505,39.5141135,122 DEWEY PL,ATLANTIC CITY CITY,45,1920,2,REL1,3004 -0102_80_26,-74.57375375,39.37659873,122 DEWEY PL,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_80_28,-74.56632864,39.53175393,118 DEWEY PL,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_80_28,-74.5660555,39.3759795,118 DEWEY PL,ATLANTIC CITY CITY,45,1920,2,GOV1,3004 -0102_80_29,-74.5902055,39.507163,116 DEWEY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_80_29,-74.571184,39.37234233,116 DEWEY PL,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_80_8,-74.879577,39.4759,111 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_80_8,-74.54782628,39.37914567,111 ORIENTAL AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_81_1,-74.5010196,39.33333332,99 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_81_1,-74.84042183,39.49589678,99 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_81_2,-74.500038,39.333976,101 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_81_2,-74.87676316,39.47884524,101 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_81_3,-74.7349745,39.438853,103 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_81_3,-74.6357105,39.363038,103 BOARDWALK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_81_5,-74.7491215,39.448922,116 ORIENTAL AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_81_5,-74.751772,39.2984175,116 ORIENTAL AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_81_6,-74.7282112,39.45983356,112 ORIENTAL AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_81_6,-74.76728225,39.30043623,112 ORIENTAL AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_81_7,-74.71245916,39.46612297,110 ORIENTAL AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_81_7,-74.79507947,39.31278073,110 ORIENTAL AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_82_1,-74.606554,39.51303,17 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_82_1,-74.53193142,39.38747719,17 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_826_4,-74.4797325,39.34933,MEADOW TRACK,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_826_4,-74.73408641,39.45420319,MEADOW TRACK,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_83_1,-74.5405875,39.539632,132 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_83_1,-74.53629722,39.39534739,132 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_83_18,-74.57953478,39.53315647,5 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_83_18,-74.531575,39.4020585,5 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_83_2,-74.59840454,39.52364384,1 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,47,1900,4,GOV1,3004 -0102_83_2,-74.5381095,39.40191,1 S NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,47,1900,4,RES1,3001 -0102_83_5,-74.56372976,39.55330644,124 ATLANTIC AVE,ATLANTIC CITY CITY,45,1900,2,RES1,3001 -0102_83_5,-74.56702999,39.38764092,124 ATLANTIC AVE,ATLANTIC CITY CITY,45,1900,2,GOV1,3004 -0102_83_6,-74.87867659,39.46271616,120 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_83_6,-74.55200797,39.37173324,120 ATLANTIC AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_830_4,-74.87012967,39.49336808,1125 ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_830_4,-74.43648112,39.36688829,1125 ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_830_5,-74.8820175,39.471144,1095 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_830_5,-74.43544949,39.36629854,1095 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_830_6,-74.8324825,39.48790278,1075 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_830_6,-74.43619616,39.36572937,1075 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_831_5,-74.8816555,39.484892,1100 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_831_5,-74.43713608,39.36639434,1100 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_831_6,-74.80863375,39.49647561,ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_831_6,-74.43637496,39.36560066,ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_833_4,-74.86734953,39.49039031,1630 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_833_4,-74.43687784,39.3664643,1630 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_833_5,-74.52303283,39.31962104,1600 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_833_5,-74.44583194,39.35465475,1600 N ALBANY AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_84_10,-74.61858879,39.53172585,30 S MAINE AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_84_10,-74.53197143,39.40180135,30 S MAINE AVE,ATLANTIC CITY CITY,45,1925,3,RES1,3001 -0102_84_13,-74.5439755,39.5426255,24 S MAINE AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_84_13,-74.55736692,39.38663127,24 S MAINE AVE RR,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_84_6,-74.85473,39.4600055,22 S MAINE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_84_6,-74.55285439,39.37328256,22 S MAINE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_84_9,-74.54709999,39.54403832,26 S MAINE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_84_9,-74.5456225,39.4003125,26 S MAINE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_840_1,-74.51051964,39.32475768,1801 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_840_1,-74.78790178,39.41884884,1801 ABSECON BLVD,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_85_1.01,-74.83681263,39.48873879,35 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES3A,3001 -0102_85_1.01,-74.54914321,39.38079474,35 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.02,-74.83316455,39.48311582,33 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.02,-74.53756584,39.37911308,33 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.03,-74.828151,39.4767035,31 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.03,-74.5384215,39.3814565,31 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.04,-74.83372882,39.47700898,29 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.04,-74.53835957,39.38152535,29 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.05,-74.82791745,39.47819693,27 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.05,-74.53369095,39.38465366,27 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.06,-74.814063,39.4702035,25 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.06,-74.55061367,39.37114758,25 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.07,-74.49727724,39.32846766,23 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.07,-74.87816566,39.47567068,23 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.08,-74.49745643,39.32869583,21 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.08,-74.88098897,39.47774969,21 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.09,-74.49419168,39.33011153,19 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,29,2003,2,RES1,3001 -0102_85_1.09,-74.84367858,39.48101932,19 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,29,2003,2,RES1,3001 -0102_85_1.10,-74.492625,39.3308595,17 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.10,-74.824671,39.499046,17 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.11,-74.4933455,39.3314295,15 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.11,-74.82788763,39.48841274,15 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.12,-74.49658514,39.33215066,13 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2002,2,RES1,3001 -0102_85_1.12,-74.818497,39.4949415,13 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2002,2,GOV1,3004 -0102_85_1.13,-74.493813,39.3329435,11 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,GOV1,3004 -0102_85_1.13,-74.832563,39.4829265,11 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.14,-74.49050283,39.333349,9 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.14,-74.8265635,39.4851315,9 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.15,-74.496523,39.333413,7 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.15,-74.8263025,39.475034,7 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.16,-74.49625095,39.33414365,5 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.16,-74.875466,39.445735,5 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.17,-74.50331412,39.32480527,3 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.17,-74.8446445,39.4450585,3 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.18,-74.52706813,39.31228215,1 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_85_1.18,-74.80780692,39.4424272,1 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_86_1,-74.87335291,39.49931458,60 N MAINE AVE,ATLANTIC CITY CITY,,0,1,GOV1,3004 -0102_86_1,-74.5619665,39.370592,60 N MAINE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_89_1,-74.486174,39.3337685,197 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_1,-74.71371367,39.471128,197 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,COM3,3004 -0102_89_10,-74.8287715,39.641545,171 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_10,-74.7369635,39.4650725,171 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_2,-74.43625966,39.36438468,195 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_2,-74.76965554,39.45995863,195 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_3,-74.43274116,39.365352,193 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_3,-74.78249709,39.44504423,193 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_4,-74.43765043,39.36724917,191 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_4,-74.75250944,39.44614828,191 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_5,-74.43539796,39.36792182,187 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_5,-74.754119,39.446699,187 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_6,-74.43433148,39.35844923,185 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_6,-74.7556245,39.448421,185 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_7,-74.4137509,39.36429421,183 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_7,-74.75394965,39.44905422,183 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_8,-74.414234,39.3645245,181 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_8,-74.7514335,39.450434,181 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_9,-74.41432098,39.36510932,173 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_89_9,-74.7363905,39.464186,173 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_9_1,-74.3597545,39.41585,101 S BARTRAM AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_9_1,-74.94970347,39.49256634,101 S BARTRAM AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_9_2,-74.58191816,39.33319873,109 S BARTRAM AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_9_2,-74.482852,39.3363665,109 S BARTRAM AVE,ATLANTIC CITY CITY,45,1920,2,RES1,3001 -0102_9_3,-74.58994517,39.32340357,111 S BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_9_3,-74.48304633,39.339452,111 S BARTRAM AVE,ATLANTIC CITY CITY,17,1920,1,RES1,3001 -0102_9_4,-74.61744672,39.31276327,117 S BARTRAM AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_9_4,-74.463884,39.34762,117 S BARTRAM AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_9_5,-74.61424569,39.31671026,123 S BARTRAM AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_9_5,-74.46194915,39.34843852,123 S BARTRAM AVE,ATLANTIC CITY CITY,18,1920,1,RES1,3001 -0102_9_6,-74.60568731,39.30795866,125 S BARTRAM AVE,ATLANTIC CITY CITY,45,1903,3,RES1,3001 -0102_9_6,-74.45922034,39.34907831,125 S BARTRAM AVE,ATLANTIC CITY CITY,45,1903,3,RES1,3001 -0102_9_7,-74.5925385,39.312764,133 S BARTRAM AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_9_7,-74.46275907,39.35056833,133 S BARTRAM AVE,ATLANTIC CITY CITY,18,1925,1,RES1,3001 -0102_9_8,-74.581072,39.3116545,139 S BARTRAM AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_9_8,-74.51129465,39.32591552,139 S BARTRAM AVE,ATLANTIC CITY CITY,45,1910,2,RES1,3001 -0102_90.01_1,-74.61080934,39.50419646,136 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_90.01_1,-74.57460083,39.37248146,136 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_90.01_2,-74.56017134,39.5383117,126 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_90.01_2,-74.5695555,39.3711145,126 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_90.01_3,-74.57734995,39.53902326,116 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_90.01_3,-74.56860583,39.37091855,116 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_90.01_4,-74.62821033,39.51982703,106 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_90.01_4,-74.542061,39.3913855,106 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_90.02_1,-74.8337045,39.6426165,151 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_1,-74.738071,39.4689425,151 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_10,-74.8227177,39.49623199,103 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_10,-74.55005047,39.37880934,103 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_2,-74.81832538,39.64110775,149 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_2,-74.73296821,39.4544039,149 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_3,-74.797382,39.6550035,141 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_3,-74.73426574,39.45955791,141 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_4,-74.80892366,39.63997103,137 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_4,-74.722276,39.4626565,137 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_5,-74.81325933,39.64055146,109 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_5,-74.7147394,39.46598588,109 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_6,-74.55660437,39.53351256,125 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_6,-74.56728503,39.37277615,125 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,GOV1,3004 -0102_90.02_7,-74.56908358,39.52910964,119 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_7,-74.564541,39.37342546,119 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_8,-74.87701073,39.47789806,115 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_8,-74.56065465,39.37247099,115 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_9,-74.85835067,39.48677957,105 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90.02_9,-74.56027719,39.37318625,105 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2000,2,RES1,3001 -0102_90_2,-74.62814917,39.50620322,140 N MAINE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_90_2,-74.57000232,39.36941489,140 N MAINE AVE,ATLANTIC CITY CITY,17,1900,1,RES1,3001 -0102_91.01_1,-74.44144936,39.36801258,135 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91.01_1,-74.75306574,39.44704665,135 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91.01_2,-74.632292,39.5177795,125 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91.01_2,-74.540666,39.390472,125 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91.01_3,-74.65566217,39.5166445,115 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91.01_3,-74.53482055,39.38964073,115 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91.01_4,-74.659677,39.516288,105 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91.01_4,-74.53218604,39.38884079,105 SUNRISE AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91_1,-74.5217066,39.31692884,136 MADISON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91_1,-74.73920969,39.4707229,136 MADISON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91_2,-74.522606,39.3163465,126 MADISON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91_2,-74.768552,39.4876995,126 MADISON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91_3,-74.52361472,39.31424681,116 MADISON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91_3,-74.79624223,39.44155852,116 MADISON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91_4,-74.64346165,39.51592354,106 MADISON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_91_4,-74.5577734,39.39715041,106 MADISON AVE,ATLANTIC CITY CITY,17,2000,1,RES1,3001 -0102_92_1,-74.62677317,39.5277345,198 N MAINE AVE,ATLANTIC CITY CITY,18,2000,1,RES1,3001 -0102_92_1,-74.5858705,39.37513,198 N MAINE AVE,ATLANTIC CITY CITY,18,2000,1,RES1,3001 -0102_92_2,-74.6223295,39.5205595,190 N MAINE AVE,ATLANTIC CITY CITY,45,2006,2,RES1,3001 -0102_92_2,-74.55906058,39.39736109,190 N MAINE AVE,ATLANTIC CITY CITY,45,2006,2,RES1,3001 -0102_92_3,-74.6101125,39.5584595,180 N MAINE AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_92_3,-74.5576555,39.4004575,180 N MAINE AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_92_4,-74.62898584,39.52465003,170 N MAINE AVE,ATLANTIC CITY CITY,18,2005,1,RES1,3001 -0102_92_4,-74.53278752,39.38776568,170 N MAINE AVE,ATLANTIC CITY CITY,18,2005,1,RES1,3001 -0102_97_2,-74.9595785,39.4979775,351 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_97_2,-74.61382184,39.49905901,351 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,,0,1,RES1,3001 -0102_98.01_1,-74.92882789,39.52052681,419 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_1,-74.645948,39.4611875,419 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,GOV1,3004 -0102_98.01_10,-74.90876,39.4930895,401 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_10,-74.60379017,39.50160051,401 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,GOV1,3004 -0102_98.01_2,-74.9478665,39.509773,417 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_2,-74.63440089,39.46394025,417 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_3,-74.917352,39.523068,415 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_3,-74.63058872,39.44587608,415 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,GOV1,3004 -0102_98.01_4,-74.9238615,39.506972,413 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_4,-74.62293754,39.44610262,413 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_5,-74.92655412,39.50785111,411 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_5,-74.63067549,39.43890374,411 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_6,-74.916046,39.5105755,409 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_6,-74.619835,39.438368,409 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_7,-74.911742,39.512099,407 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3004 -0102_98.01_7,-74.62935018,39.43837605,407 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_8,-74.931913,39.4887315,405 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,IND2,3002 -0102_98.01_8,-74.60288933,39.49875601,405 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_9,-74.9055755,39.49292,403 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.01_9,-74.6044315,39.4992645,403 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_1,-74.88601951,39.60034667,439 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_1,-74.75867932,39.42946164,439 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_10,-74.9458675,39.5174365,421 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_10,-74.6385485,39.48176539,421 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_2,-74.8846254,39.59433411,437 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_2,-74.75383974,39.43039547,437 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_3,-74.92121,39.565189,435 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3002 -0102_98.02_3,-74.72442906,39.43524052,435 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_4,-74.89144278,39.55768506,433 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_4,-74.71514527,39.41377201,433 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_5,-74.933577,39.5320895,431 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_5,-74.6879135,39.4976935,431 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_6,-74.94227809,39.52213468,429 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_6,-74.6921565,39.488363,429 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,GOV1,3004 -0102_98.02_7,-74.93620176,39.52382364,427 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_7,-74.6714255,39.4946015,427 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_8,-74.9374005,39.5267885,425 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_8,-74.68738896,39.4786726,425 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_9,-74.948308,39.5170085,423 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.02_9,-74.64219616,39.50358554,423 N NEW HAMPSHIRE AVE,ATLANTIC CITY CITY,27,2003,2,RES1,3001 -0102_98.03_1,-74.69160084,39.65156261,108 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.03_1,-74.82278843,39.37490828,108 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.03_2,-74.74880566,39.6586545,106 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.03_2,-74.8171785,39.398186,106 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,GOV1,3004 -0102_98.03_3,-74.76742667,39.64532324,104 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.03_3,-74.84453238,39.37277008,104 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.03_4,-74.77768889,39.64410242,102 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.03_4,-74.811112,39.4114355,102 CASPIAN AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.04_1,-74.941498,39.5217485,107 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.04_1,-74.6964735,39.490473,107 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.04_2,-74.9580315,39.5289775,105 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.04_2,-74.71316432,39.40732152,105 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.04_3,-74.909003,39.5658295,103 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.04_3,-74.7098689,39.43475775,103 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.04_4,-74.983265,39.513918,101 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.04_4,-74.75507826,39.43263013,101 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.05_1,-74.9414185,39.519861,108 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.05_1,-74.66359498,39.44402476,108 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.05_2,-74.94734425,39.5181331,106 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.05_2,-74.66518173,39.45392999,106 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.05_3,-74.94392417,39.51703466,104 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.05_3,-74.6229805,39.491074,104 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.05_4,-74.93890399,39.51679174,102 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.05_4,-74.67756645,39.48606766,102 LIBERTY AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.06_1,-74.9266185,39.5101335,107 ADRIATIC AVE,ATLANTIC CITY CITY,17,2003,1,COM1,3004 -0102_98.06_1,-74.6358974,39.44443168,107 ADRIATIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.06_2,-74.9263735,39.507097,105 ADRIATIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.06_2,-74.622772,39.446543,105 ADRIATIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.06_3,-74.91795337,39.516465,103 ADRIATIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.06_3,-74.63217814,39.45230571,103 ADRIATIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.06_4,-74.92888464,39.50762007,101 ADRIATIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.06_4,-74.64589072,39.44792199,101 ADRIATIC AVE,ATLANTIC CITY CITY,17,2003,1,RES1,3001 -0102_98.07_1,-74.93975269,39.52272397,408 N MAINE AVE,ATLANTIC CITY CITY,18,2007,1,RES1,3001 -0102_98.07_1,-74.68155822,39.50238333,408 N MAINE AVE,ATLANTIC CITY CITY,18,2007,1,IND2,3004 -0102_98.07_2,-74.964061,39.5121935,406 N MAINE AVE,ATLANTIC CITY CITY,18,2007,1,RES1,3001 -0102_98.07_2,-74.6903945,39.480839,406 N MAINE AVE,ATLANTIC CITY CITY,18,2007,1,RES1,3001 -0102_98.07_3,-74.9481565,39.5185,404 N MAINE AVE,ATLANTIC CITY CITY,18,2006,1,RES1,3001 -0102_98.07_3,-74.68275086,39.44404326,404 N MAINE AVE,ATLANTIC CITY CITY,18,2006,1,COM1,3004 -0102_98.07_4,-74.92763239,39.50746938,402 N MAINE AVE,ATLANTIC CITY CITY,45,2006,3,RES1,3001 -0102_98.07_4,-74.62583868,39.45791502,402 N MAINE AVE,ATLANTIC CITY CITY,45,2006,3,RES1,3001 -0102_98.08_1,-74.7914865,39.6423915,416 N MAINE AVE,ATLANTIC CITY CITY,20,2006,1,RES1,3001 -0102_98.08_1,-74.8334015,39.411282,416 N MAINE AVE,ATLANTIC CITY CITY,20,2006,1,RES1,3001 -0102_98.08_2,-74.79128216,39.64247953,414 N MAINE AVE,ATLANTIC CITY CITY,20,2006,1,RES1,3004 -0102_98.08_2,-74.82951233,39.40688701,414 N MAINE AVE,ATLANTIC CITY CITY,20,2006,1,RES1,3001 -0102_98.08_3,-74.72834702,39.64332002,412 N MAINE AVE,ATLANTIC CITY CITY,20,2006,1,RES1,3001 -0102_98.08_3,-74.83759516,39.37803956,412 N MAINE AVE,ATLANTIC CITY CITY,20,2006,1,RES1,3001 -0102_98.08_4,-74.88600288,39.59612927,410 N MAINE AVE,ATLANTIC CITY CITY,20,2006,1,RES1,3001 -0102_98.08_4,-74.7610745,39.43133217,410 N MAINE AVE,ATLANTIC CITY CITY,20,2006,1,RES1,3001 -0103_1002_1,-74.59387292,39.32197267,1204 OCEAN AVE,BRIGANTINE CITY,21,2011,1,RES1,3001 -0103_1002_2,-74.64199,39.5339885,1200 OCEAN AVE,BRIGANTINE CITY,19,1988,1,RES1,3004 -0103_102_10,-74.52443706,39.38786785,214 13TH STREET NO,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_102_10,-74.47777157,39.34522022,214 13TH STREET NO,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_102_11,-74.49579712,39.43334498,1219 E BRIGANTINE AVE,BRIGANTINE CITY,,1945,1,RES1,3001 -0103_102_12,-74.529498,39.3947745,1213 E BRIGANTINE AVE,BRIGANTINE CITY,19,2000,1,RES1,3001 -0103_102_13,-74.49465832,39.39111253,1207 E BRIGANTINE AVE,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_102_15,-74.5255925,39.4000155,213 12TH STREET NO,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_102_16,-74.52031811,39.40615781,211 12TH STREET NO,BRIGANTINE CITY,15,1945,1,RES1,3001 -0103_102_18,-74.522968,39.3959335,207 12TH STREET NO,BRIGANTINE CITY,19,2015,1,RES1,3001 -0103_102_18,-74.47891735,39.34393425,207 12TH STREET NO,BRIGANTINE CITY,19,2015,1,RES1,3001 -0103_102_19,-74.6224075,39.4241755,205 12TH STREET NO,BRIGANTINE CITY,29,1950,2,RES1,3001 -0103_102_20,-74.56948076,39.34920305,203 12TH STREET NO,BRIGANTINE CITY,29,1950,2,RES1,3001 -0103_102_21,-74.50945286,39.43226741,201 12TH STREET NO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_102_22,-74.51585644,39.44543647,1200 E BEACH AVE,BRIGANTINE CITY,16,1950,1,COM1,3002 -0103_102_23,-74.58899,39.4217305,1202 E BEACH AVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_102_3,-74.61208868,39.42603002,200 13TH STREET NO,BRIGANTINE CITY,18,2014,1,RES3A,3001 -0103_102_4,-74.60538476,39.41472162,202 13TH STREET NO,BRIGANTINE CITY,43,1956,2,RES1,3001 -0103_102_5,-74.52155,39.448907,204 13TH STREET NO,BRIGANTINE CITY,15,1945,1,RES1,3001 -0103_102_6,-74.48692569,39.45496422,206 13TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_102_7,-74.55745276,39.3580264,208 13TH STREET NO,BRIGANTINE CITY,17,1990,1,COM1,3004 -0103_102_8,-74.62881303,39.41986032,210 13TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_102_9,-74.70313925,39.3693941,212 13TH STREET NO,BRIGANTINE CITY,43,1969,2,RES1,3001 -0103_103_4,-74.768089,39.32981,1201 E BEACH AVE,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_103_6,-74.8435025,39.3896785,107 12TH STREET NO,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_104_10,-74.778006,39.3053105,214 14TH STREET NO,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_104_11,-74.85660564,39.55690156,216 14TH STREET NO,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_104_13,-74.586864,39.4126875,220 14TH STREET NO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_104_14,-74.5196445,39.4485275,1321 E BRIGANTINE AVE,BRIGANTINE CITY,19,2002,1,RES1,3001 -0103_104_15,-74.5274395,39.4300345,1313 E BRIGANTINE AVE,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_104_18,-74.5691973,39.3681859,219 13TH STREET NO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_104_19,-74.49199592,39.43668072,217 13TH STREET NO,BRIGANTINE CITY,20,2009,1,AGR1,3001 -0103_104_2,-74.68790605,39.63546679,1306 E BEACH AVE,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_104_20,-74.51749373,39.45750239,215 13TH STREET NO,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_104_21,-74.59178553,39.43440319,213 13TH STREET NO,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_104_22,-74.81156179,39.52680604,211 13TH STREET NO,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_104_23,-74.65252523,39.35787722,209 13TH STREET NO,BRIGANTINE CITY,20,2009,1,RES2,3005 -0103_104_24,-74.44809587,39.48353396,207 13TH STREET NO,BRIGANTINE CITY,43,1949,2,RES1,3001 -0103_104_26,-74.7695265,39.61399983,203 13TH STREET NO,BRIGANTINE CITY,43,1948,2,RES1,3001 -0103_104_26,-74.44116767,39.35965206,203 13TH STREET NO,BRIGANTINE CITY,43,1948,2,RES1,3001 -0103_104_27,-74.4932655,39.536657,201 13TH STREET NO,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_104_28,-74.71454126,39.46758307,1300 E BEACH AVE,BRIGANTINE CITY,19,2013,1,GOV1,3004 -0103_104_3,-74.825241,39.417844,200 14TH STREET NO,BRIGANTINE CITY,43,1958,2,RES1,3001 -0103_104_5,-74.73120519,39.4612667,204 14TH STREET NO,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_104_9,-74.45576314,39.47997887,212 14TH STREET NO,BRIGANTINE CITY,19,2003,1,RES1,3001 -0103_105_3,-74.72396882,39.45270774,1307 E BEACH AVE,BRIGANTINE CITY,45,1956,2,RES1,3001 -0103_105_8,-74.73612685,39.46067844,101 13TH STREET NO,BRIGANTINE CITY,,1964,1,RES1,3001 -0103_106_10,-74.44901147,39.49446068,1405 E BRIGANTINE AVE,BRIGANTINE CITY,19,2003,1,RES1,3001 -0103_106_11,-74.77181538,39.3386372,1401 E BRIGANTINE AVE,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_106_12,-74.72539358,39.58890936,239 14TH STREET NO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_106_12,-74.43634489,39.36153908,239 14TH STREET NO,BRIGANTINE CITY,18,2004,1,RES1,3002 -0103_106_13,-74.50795097,39.47160689,237 14TH STREET NO,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_106_15,-74.62280242,39.43251763,227 14TH STREET NO,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_106_20.01,-74.85151081,39.59924965,201 14TH STREET NO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_106_5,-74.63560903,39.52365172,210 15TH STREET NO,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_106_6,-74.81690585,39.39091025,214 15TH STREET NO,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_106_7,-74.714394,39.4685925,216 15TH STREET NO,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_106_8,-74.493841,39.5325755,218 15TH STREET NO,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_106_9.01,-74.47219949,39.49201918,1415 E BRIGANTINE AVE,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_106_9.02,-74.75688878,39.63517254,1413 E BRIGANTINE AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_106_9.02,-74.44081897,39.35928246,1413 E BRIGANTINE AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_1101_1,-74.80893149,39.62906717,1013 OCEAN AVE,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_1101_10,-74.81519383,39.64089747,319 11TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1101_11,-74.61009822,39.47439467,317 11TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1101_12,-74.62349998,39.46084675,313 11TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_1101_13,-74.4151336,39.36760522,1018 W BRIGANTINE AVE,BRIGANTINE CITY,,1950,1,RES1,3001 -0103_1101_16,-74.68015495,39.48109834,312 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1101_17,-74.68049345,39.44402219,318 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1101_18,-74.59951215,39.48831797,324 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1101_19,-74.8135982,39.65018406,330 10TH STREET SO,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_1101_2,-74.81160035,39.63598421,353 11TH STREET SO,BRIGANTINE CITY,49,1958,2,RES1,3001 -0103_1101_20,-74.7648515,39.6645005,336 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1101_21,-74.6898004,39.65103428,338 10TH STREET SO,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_1101_22,-74.9401279,39.52334705,340 10TH STREET SO,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_1101_23,-74.96798318,39.5050693,344 10TH STREET SO,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_1101_24,-74.912787,39.534348,348 10TH STREET SO,BRIGANTINE CITY,15,1958,1,RES1,3001 -0103_1101_25,-74.93961962,39.49740497,1001 OCEAN AVE,BRIGANTINE CITY,17,1968,1,RES1,3001 -0103_1101_26,-74.88533433,39.47230802,1007 OCEAN AVE,BRIGANTINE CITY,21,2004,1,RES1,3001 -0103_1101_3,-74.88992169,39.49919855,349 11TH STREET SO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_1101_4,-74.92595246,39.50720633,345 11TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1101_5,-74.920291,39.5318295,341 11TH STREET SO,BRIGANTINE CITY,16,1928,1,RES1,3001 -0103_1101_6,-74.95321097,39.51376948,335 11TH STREET SO,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_1101_7,-74.9460115,39.53355,333 11TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_1101_8,-74.71746,39.6400995,329 11TH STREET SO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_1101_9,-74.77420052,39.65992659,325 11TH STREET SO,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_1102_10,-74.54205443,39.56712432,215 11TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1102_11,-74.5147929,39.32764334,211 11TH STREET SO,BRIGANTINE CITY,15,1961,1,RES1,3001 -0103_1102_12,-74.48489798,39.34111466,201 11TH STREET SO,BRIGANTINE CITY,16,1941,1,RES1,3001 -0103_1102_13,-74.46734616,39.34478101,1012 W BEACH AVE,BRIGANTINE CITY,15,1957,1,RES1,3001 -0103_1102_14,-74.67213037,39.37678427,1006 W BEACH AVE,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1102_15,-74.63173818,39.4190621,1000 W BEACH AVE,BRIGANTINE CITY,15,1961,1,RES1,3001 -0103_1102_16,-74.48326985,39.34008698,210 10TH STREET SO,BRIGANTINE CITY,17,2010,1,RES1,3001 -0103_1102_17,-74.464526,39.348452,214 10TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_1102_18,-74.66269225,39.51679608,218 10TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_1102_19,-74.532464,39.3764395,222 10TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1102_19,-74.48379927,39.34040107,222 10TH STREET SO,BRIGANTINE CITY,15,1954,1,COM7,3004 -0103_1102_2,-74.422497,39.3724505,251 11TH STREET SO,BRIGANTINE CITY,17,2005,1,RES1,3001 -0103_1102_20,-74.6647615,39.3607975,226 10TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_1102_20,-74.48404044,39.3406897,226 10TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_1102_21,-74.6280505,39.3753175,230 10TH STREET SO,BRIGANTINE CITY,16,2003,1,RES1,3001 -0103_1102_21,-74.49610182,39.33034279,230 10TH STREET SO,BRIGANTINE CITY,16,2003,1,RES1,3001 -0103_1102_22,-74.6028439,39.43523866,234 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1102_22,-74.50068478,39.33725382,234 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1102_23,-74.523362,39.3202435,240 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1102_24,-74.37684915,39.41728182,246 10TH STREET SO,BRIGANTINE CITY,17,2005,1,RES1,3001 -0103_1102_25,-74.37325484,39.40563305,250 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1102_26,-74.41258532,39.39039703,1001 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1102_27,-74.4303985,39.368456,1007 W BRIGANTINE AVE,BRIGANTINE CITY,45,1942,4,RES1,3001 -0103_1102_3,-74.363019,39.410422,247 11TH STREET SO,BRIGANTINE CITY,16,1944,1,RES1,3001 -0103_1102_4,-74.3565815,39.413263,243 11TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1102_5,-74.52098283,39.32176951,235 11TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1102_6,-74.52526404,39.31909126,231 11TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_1102_7,-74.60281634,39.4314978,227 11TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_1102_7,-74.496515,39.33206443,227 11TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_1102_8,-74.62464,39.382381,223 11TH STREET SO,BRIGANTINE CITY,45,1956,2,RES1,3001 -0103_1102_8,-74.50174255,39.33394592,223 11TH STREET SO,BRIGANTINE CITY,45,1956,2,RES1,3001 -0103_1102_9,-74.75398733,39.29973917,219 11TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1102_9,-74.48407997,39.34073432,219 11TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1103_10,-74.76044,39.640068,309 12TH STREET SO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_1103_11,-74.818616,39.6511675,1112-8 W BRIGANTINE AVE,BRIGANTINE CITY,,1970,1,RES1,3001 -0103_1103_14,-74.8230818,39.64650583,300 11TH STREET SO,BRIGANTINE CITY,16,1936,1,RES1,3001 -0103_1103_15,-74.80425212,39.64516062,312 11TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1103_16,-74.71064841,39.63973398,316 11TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1103_17,-74.95141025,39.53744232,320 11TH STREET SO,BRIGANTINE CITY,18,2007,1,RES3A,3001 -0103_1103_18,-74.93471483,39.51738252,328 11TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1103_19,-74.8833305,39.505652,332 11TH STREET SO,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_1103_2,-74.85193026,39.59984995,353 12TH STREET SO,BRIGANTINE CITY,,0,1,RES1,3002 -0103_1103_20,-74.883459,39.459174,336 11TH STREET SO,BRIGANTINE CITY,20,2013,1,RES1,3001 -0103_1103_21,-74.80520635,39.63778354,340 11TH STREET SO,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_1103_22,-74.8032145,39.6300185,348 11TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1103_23,-74.76346103,39.63014365,1101 OCEAN AVE,BRIGANTINE CITY,19,2011,1,RES1,3001 -0103_1103_24,-74.46179882,39.45461086,1107 OCEAN AVE,BRIGANTINE CITY,20,2003,1,RES1,3001 -0103_1103_24,-74.47848485,39.34455567,1107 OCEAN AVE,BRIGANTINE CITY,20,2003,1,RES1,3001 -0103_1103_3,-74.873045,39.603364,343 12TH STREET SO,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_1103_4,-74.80443,39.637512,337 12TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1103_5,-74.81823333,39.63227549,333 12TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1103_6,-74.94367,39.5039155,327 12TH STREET SO,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_1103_7,-74.91324932,39.53331245,323 12TH STREET SO,BRIGANTINE CITY,19,2008,1,GOV1,3004 -0103_1103_8,-74.963424,39.5126935,317 12TH STREET SO,BRIGANTINE CITY,16,1938,1,RES1,3001 -0103_1103_9,-74.918093,39.5645895,313 12TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1104_1,-74.43596995,39.36468482,1119 W BRIGANTINE AVE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_1104_10,-74.61218,39.4222635,211 12TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1104_10,-74.49916625,39.3415379,211 12TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1104_11,-74.57438003,39.36452682,1118 W BEACH AVE,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_1104_12,-74.75408416,39.30078692,1112 W BEACH AVE,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_1104_12,-74.48400625,39.34063943,1112 W BEACH AVE,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_1104_13,-74.53243597,39.54181009,1106 W BEACH AVE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_1104_14,-74.66118021,39.51754043,200 11TH STREET SO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_1104_15,-74.60021855,39.43042882,214 11TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1104_15,-74.49542913,39.33068202,214 11TH STREET SO,BRIGANTINE CITY,15,1954,1,GOV1,3004 -0103_1104_16,-74.52292928,39.32115718,222 11TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_1104_17,-74.360451,39.410935,226 11TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1104_18,-74.36908137,39.40442284,230 11TH STREET SO,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_1104_19,-74.36532811,39.40761866,234 11TH STREET SO,BRIGANTINE CITY,15,1958,1,RES1,3001 -0103_1104_2,-74.496813,39.3305945,251 12TH STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_1104_20,-74.43570249,39.37143583,238 11TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1104_21,-74.40626236,39.38080609,242 11TH STREET SO,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_1104_22,-74.37989082,39.39944023,246 11TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1104_23,-74.5173257,39.32271384,250 11TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1104_24,-74.50073998,39.33200033,1101 W BRIGANTINE AVE,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_1104_25,-74.4913485,39.332135,1107 W BRIGANTINE AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_1104_26,-74.493942,39.3342875,1113 W BRIGANTINE AVE,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_1104_3,-74.51540052,39.32021912,247 12TH STREET SO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_1104_4,-74.4133925,39.368362,239 12TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1104_5,-74.40275505,39.38876467,231 12TH STREET SO,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_1104_6,-74.37193305,39.41027547,227 12TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1104_7,-74.35588058,39.41511165,223 12TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1104_8,-74.51794835,39.31854248,219 12TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_1104_9,-74.5233235,39.3210505,215 12TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1105_1,-74.69780135,39.6376687,1219 OCEAN AVE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1105_10,-74.94820275,39.50487397,1218 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1105_11,-74.948956,39.5160045,1212 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1105_12,-74.938886,39.5228055,1206 W BRIGANTINE AVE,BRIGANTINE CITY,,1950,1,RES1,3001 -0103_1105_13,-74.8841874,39.60059693,1200 W BRIGANTINE AVE,BRIGANTINE CITY,,1955,1,RES1,3001 -0103_1105_14,-74.9041825,39.5355825,312 12TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_1105_15,-74.94851581,39.49473536,316 12TH STREET SO,BRIGANTINE CITY,18,2015,1,GOV1,3004 -0103_1105_16,-74.84548835,39.60883219,320 12TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1105_17,-74.8006674,39.63587093,326 12TH STREET SO,BRIGANTINE CITY,16,1945,1,GOV1,3004 -0103_1105_18,-74.8822225,39.597339,330 12TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1105_19,-74.78916279,39.63456694,336 12TH STREET SO,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_1105_2,-74.74957067,39.60422751,349 13TH STREET SO,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_1105_20,-74.49106829,39.45279671,340 12TH STREET SO,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_1105_20,-74.47926424,39.34490576,340 12TH STREET SO,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_1105_21,-74.41438809,39.50388912,344 12TH STREET SO,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_1105_21,-74.47821822,39.34524644,344 12TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1105_22,-74.50318911,39.42673327,348 12TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1105_22,-74.47749058,39.34544645,348 12TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1105_23.01,-74.61306618,39.42914965,350 12TH STREET SO,BRIGANTINE CITY,18,1991,1,RES1,3001 -0103_1105_23.02,-74.80922979,39.55280168,1201 OCEAN AVE,BRIGANTINE CITY,18,1990,1,RES1,3001 -0103_1105_24,-74.83697778,39.5414895,1213 OCEAN AVE,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_1105_3,-74.629804,39.3898305,343 13TH STREET SO,BRIGANTINE CITY,17,1994,1,GOV1,3004 -0103_1105_4,-74.517617,39.4308295,339 13TH STREET SO,BRIGANTINE CITY,20,2009,1,RES1,3001 -0103_1105_4,-74.47758859,39.34498472,339 13TH STREET SO,BRIGANTINE CITY,20,2009,1,RES1,3001 -0103_1105_5,-74.50536498,39.45155752,333 13TH STREET SO,BRIGANTINE CITY,16,2002,1,RES1,3001 -0103_1105_5,-74.48175725,39.34560588,333 13TH STREET SO,BRIGANTINE CITY,16,2002,1,RES1,3001 -0103_1105_6,-74.84806434,39.60109386,329 13TH STREET SO,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_1105_9,-74.88760997,39.47360972,313 13TH STREET SO,BRIGANTINE CITY,15,1950,1,GOV1,3004 -0103_1106_1,-74.81396884,39.64527796,1219 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1106_10,-74.3813485,39.3998045,223 13TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1106_11,-74.42056397,39.36855919,219 13TH STREET SO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1106_12,-74.423769,39.3744405,215 13TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1106_15,-74.52556084,39.3182197,200 12TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_1106_16,-74.52005999,39.31761633,204 12TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1106_17,-74.3580035,39.4113575,210 12TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1106_18,-74.364935,39.4071625,216 12TH STREET SO,BRIGANTINE CITY,16,1951,1,GOV1,3004 -0103_1106_19,-74.43588515,39.371905,222 12TH STREET SO,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_1106_20,-74.39184313,39.39448653,228 12TH STREET SO,BRIGANTINE CITY,18,2007,1,GOV1,3004 -0103_1106_21,-74.51946558,39.32009947,234 12TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1106_22,-74.505423,39.3314795,240 12TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1106_23,-74.4901205,39.333189,244 12TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1106_24,-74.48497372,39.33408194,248 12TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1106_25,-74.42731686,39.35768433,252 12TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1106_26,-74.63223937,39.48544416,1201 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,GOV1,3004 -0103_1106_27,-74.65089997,39.45869656,1207 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1106_28,-74.82140644,39.64175242,1213 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1106_3,-74.64765069,39.45760801,251 13TH STREET SO,BRIGANTINE CITY,16,1945,1,RES1,3001 -0103_1106_4,-74.676421,39.4852465,247 13TH STREET SO,BRIGANTINE CITY,18,1954,1,RES1,3001 -0103_1106_5,-74.44229082,39.35909204,243 13TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1106_6,-74.526085,39.316792,239 13TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1106_7,-74.4971635,39.333288,235 13TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1106_8,-74.49749283,39.32956301,231 13TH STREET SO,BRIGANTINE CITY,15,1959,1,RES1,3001 -0103_1106_9,-74.5032322,39.32589086,227 13TH STREET SO,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_1201_1,-74.5013185,39.4564195,149 6TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_1201_10,-74.70407763,39.42040208,113 6TH STREET SO,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_1201_11,-74.51245266,39.44386389,109 6TH STREET SO,BRIGANTINE CITY,47,1970,2,RES1,3001 -0103_1201_12,-74.73484934,39.43255953,105 6TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1201_14,-74.60938361,39.44118203,100 5TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1201_15,-74.53777273,39.4673166,104 5TH STREET SO,BRIGANTINE CITY,13,1984,2,RES1,3001 -0103_1201_16,-74.75645172,39.43020989,108 5TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1201_17,-74.7469385,39.388903,112 5TH STREET SO,BRIGANTINE CITY,15,1950,1,GOV1,3004 -0103_1201_2,-74.44547139,39.48440071,145 6TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_1201_21,-74.5844895,39.327947,128 5TH STREET SO,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_1201_22,-74.58669477,39.31620716,132 5TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1201_23,-74.490336,39.515614,136 5TH STREET SO,BRIGANTINE CITY,43,1951,2,RES1,3001 -0103_1201_24,-74.5237775,39.473387,140 5TH STREET SO,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_1201_25,-74.45026733,39.49621812,144 5TH STREET SO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_1201_26,-74.47388584,39.48519052,148 5TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1201_3,-74.45909,39.495211,141 6TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1201_4,-74.47441669,39.48755949,137 6TH STREET SO,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_1201_5,-74.50521625,39.49426552,133 6TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1201_6,-74.506315,39.528615,129 6TH STREET SO,BRIGANTINE CITY,47,1988,2,RES1,3001 -0103_1201_7,-74.6003672,39.31521905,125 6TH STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_1201_8,-74.6095905,39.322563,121 6TH STREET SO,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_1201_9,-74.63794048,39.43029017,117 6TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1202_1.01,-74.5782665,39.34153,601 BAYSHORE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1202_4,-74.5493495,39.466014,617 BAYSHORE AVE,BRIGANTINE CITY,16,1925,1,RES1,3001 -0103_1203_10,-74.4868925,39.525502,605 GEORGIA PLACE,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1203_11,-74.469445,39.50635,607 GEORGIA PLACE,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_1203_2,-74.608127,39.3064115,111 SHERIDAN SQUARE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_1203_3,-74.63052777,39.43389547,618 BAYSHORE AVE,BRIGANTINE CITY,43,1979,2,RES1,3001 -0103_1203_5,-74.50321766,39.43715957,606 BAYSHORE AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_1203_6,-74.50858364,39.44725595,100 6TH STREET SO,BRIGANTINE CITY,43,1955,2,RES3A,3001 -0103_1203_7,-74.60918904,39.32051582,108 6TH STREET SO,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_1203_8,-74.61737581,39.31378098,112 6TH STREET SO,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_1203_9,-74.53485905,39.30678907,601 GEORGIA PLACE,BRIGANTINE CITY,17,1967,1,RES1,3001 -0103_1204_1,-74.491765,39.432253,163 SHERIDAN SQUARE,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_1204_10,-74.48691728,39.45981199,607 W BEACH AVE,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1204_11,-74.4777537,39.43974871,613 W BEACH AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1204_2,-74.50587385,39.43842154,159 SHERIDAN SQUARE,BRIGANTINE CITY,45,1960,4,RES1,3001 -0103_1204_5,-74.528857,39.464369,606 GEORGIA PLACE,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1204_6,-74.45198634,39.4954127,600 GEORGIA PLACE,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1204_8,-74.5302865,39.44512,142 6TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1204_9,-74.50345686,39.44861831,601 W BEACH AVE,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_1206_1,-74.5164175,39.4457865,717 GEORGIA PLACE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1206_10,-74.59057616,39.32109399,100 SHERIDAN SQUARE,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_1206_11,-74.496913,39.52553,106 SHERIDAN SQUARE,BRIGANTINE CITY,43,1954,3,RES1,3001 -0103_1206_12,-74.514726,39.48679,110 SHERIDAN SQUARE,BRIGANTINE CITY,47,1984,3,RES1,3001 -0103_1206_15,-74.50702059,39.4613711,709 GEORGIA PLACE,BRIGANTINE CITY,15,1957,1,RES1,3001 -0103_1206_2,-74.5066015,39.461729,131 8TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_1206_5,-74.5013005,39.4897555,117 8TH STREET SO,BRIGANTINE CITY,43,1956,2,RES1,3001 -0103_1206_6,-74.51876077,39.52824609,113 8TH STREET SO,BRIGANTINE CITY,16,1948,1,GOV1,3004 -0103_1206_7,-74.604192,39.322099,718 BAYSHORE AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1206_8,-74.58720435,39.32593128,712 BAYSHORE AVE,BRIGANTINE CITY,45,1954,2,COM1,3004 -0103_1206_9,-74.59325069,39.32386626,706 BAYSHORE AVE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1207_1,-74.521573,39.3993035,163 8TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1207_10,-74.63184204,39.59984574,713 W BEACH AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1207_2,-74.525218,39.3949335,159 8TH STREET SO,BRIGANTINE CITY,43,1968,2,RES1,3001 -0103_1207_3,-74.512048,39.4063545,155 8TH STREET SO,BRIGANTINE CITY,15,1959,1,RES1,3001 -0103_1207_5,-74.4648225,39.4558075,700 GEORGIA PLACE,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1207_6,-74.507385,39.435307,154 SHERIDAN SQUARE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1207_7,-74.49459947,39.42642555,158 SHERIDAN SQUARE,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_1207_8,-74.51368449,39.40909417,162 SHERIDAN SQUARE,BRIGANTINE CITY,49,2000,2,RES1,3001 -0103_1207_9,-74.52192632,39.39510341,707 W BEACH AVE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1301_1,-74.49887644,39.49727765,919 BAYSHORE AVE,BRIGANTINE CITY,,1949,1,RES3B,3001 -0103_1301_2,-74.5942465,39.3169835,913 BAYSHORE AVE,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_1301_3,-74.58405449,39.33127834,907 BAYSHORE AVE,BRIGANTINE CITY,43,1969,2,RES1,3001 -0103_1301_5.01,-74.72460301,39.43386559,819 BAYSHORE AVE,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_1301_7,-74.75073934,39.39093752,801 BAYSHORE AVE,BRIGANTINE CITY,17,2009,1,RES1,3001 -0103_1302_1,-74.38255366,39.41530351,179 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1302_10,-74.5137145,39.442586,135 9TH STREET SO,BRIGANTINE CITY,16,1959,1,GOV1,3004 -0103_1302_11,-74.50249416,39.46702104,131 9TH STREET SO,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_1302_12,-74.47848309,39.47894481,123 9TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1302_13,-74.4911425,39.47453492,119 9TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1302_14,-74.469428,39.5050855,115 9TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1302_15,-74.60152453,39.31138906,812 BAYSHORE AVE,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_1302_16,-74.60863205,39.31462468,806 BAYSHORE AVE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_1302_17,-74.5862105,39.331652,800 BAYSHORE AVE,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_1302_18,-74.4940495,39.494283,112 8TH STREET SO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_1302_19,-74.4636075,39.4962725,116 8TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1302_2,-74.53091542,39.38424237,175 9TH STREET SO,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_1302_20,-74.4539675,39.4918505,120 8TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1302_21,-74.52755242,39.46380389,124 8TH STREET SO,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_1302_22,-74.495663,39.4648155,128 8TH STREET SO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1302_23,-74.5284975,39.445388,132 8TH STREET SO,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_1302_24,-74.5076915,39.436532,140 8TH STREET SO,BRIGANTINE CITY,18,2015,1,RES1,3001 -0103_1302_26,-74.50287207,39.41563007,156 8TH STREET SO,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_1302_27,-74.5221285,39.3986785,160 8TH STREET SO,BRIGANTINE CITY,15,1961,1,RES1,3001 -0103_1302_28,-74.68641535,39.55103654,164 8TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1302_29,-74.525624,39.393299,166 8TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1302_3,-74.59804958,39.43519389,171 9TH STREET SO,BRIGANTINE CITY,17,1959,1,RES1,3001 -0103_1302_30,-74.51924765,39.38586559,168 8TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1302_31,-74.49259734,39.37996591,807 W BEACH AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1302_32,-74.39530537,39.38913111,183 9TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1302_4.01,-74.67360716,39.56182986,163 9TH STREET SO,BRIGANTINE CITY,16,1925,1,GOV1,3004 -0103_1302_4.02,-74.523226,39.3986135,159 9TH STREET SO,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_1302_5,-74.50908416,39.40475075,155 9TH STREET SO,BRIGANTINE CITY,16,2018,1,RES1,3001 -0103_1302_7,-74.49836603,39.42353882,147 9TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1302_8,-74.44314354,39.48568683,143 9TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1302_9,-74.48778962,39.44419367,139 9TH STREET SO,BRIGANTINE CITY,16,2014,1,RES1,3001 -0103_1303_1,-74.631605,39.4458325,179 10TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1303_10,-74.5045412,39.41066082,133 10TH STREET SO,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_1303_11,-74.48924082,39.41970841,127 10TH STREET SO,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_1303_12,-74.50728565,39.42874927,121 10TH STREET SO,BRIGANTINE CITY,16,1946,1,GOV1,3004 -0103_1303_14,-74.52449705,39.44750112,111 10TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1303_15,-74.51871146,39.46426184,918 BAYSHORE AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1303_16,-74.45412064,39.49328395,912 BAYSHORE AVE,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_1303_17,-74.4507685,39.4958025,906 BAYSHORE AVE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1303_18,-74.5117652,39.48489955,900 BAYSHORE AVE,BRIGANTINE CITY,17,1952,1,RES1,3001 -0103_1303_19,-74.45502098,39.4815253,112 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1303_2,-74.49314752,39.34309467,175 10TH STREET SO,BRIGANTINE CITY,16,1937,1,RES1,3001 -0103_1303_20,-74.48829384,39.46846913,118 9TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1303_21.02,-74.5067855,39.438989,126 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1303_22,-74.43426866,39.49132746,130 9TH STREET SO,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_1303_23,-74.4951595,39.4326495,134 9TH STREET SO,BRIGANTINE CITY,18,2014,1,RES1,3001 -0103_1303_24,-74.51831034,39.4146025,138 9TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1303_25,-74.51225333,39.40704595,146 9TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1303_26,-74.5966475,39.5860815,150 9TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1303_27,-74.515635,39.4005775,154 9TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1303_28,-74.5990088,39.43364008,158 9TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1303_29,-74.53055844,39.38467436,164 9TH STREET SO,BRIGANTINE CITY,17,2011,1,RES3A,3001 -0103_1303_3,-74.44908534,39.35614749,171 10TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1303_30,-74.37278461,39.41369595,170 9TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1303_31,-74.49695326,39.33605167,174 9TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1303_32,-74.48346831,39.35440562,178 9TH STREET SO,BRIGANTINE CITY,17,2015,1,RES1,3004 -0103_1303_33,-74.37131662,39.40115331,182 9TH STREET SO,BRIGANTINE CITY,16,1950,1,RES3A,3001 -0103_1303_4,-74.49356363,39.34017126,167 10TH STREET SO,BRIGANTINE CITY,16,1940,1,RES3B,3001 -0103_1303_5,-74.38458901,39.39246117,163 10TH STREET SO,BRIGANTINE CITY,16,1960,1,RES3A,3001 -0103_1303_6,-74.38281663,39.41777466,159 10TH STREET SO,BRIGANTINE CITY,17,1946,1,RES1,3001 -0103_1303_7,-74.51510217,39.38810609,153 10TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_1303_8,-74.51251416,39.40220605,147 10TH STREET SO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_1303_9,-74.69514728,39.58996878,139 10TH STREET SO,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_1304_2.01,-74.4818904,39.43548471,1033 BAYSHORE AVE,BRIGANTINE CITY,18,1997,1,RES1,3001 -0103_1304_2.02,-74.496351,39.4276135,1031 BAYSHORE AVE,BRIGANTINE CITY,18,1997,1,RES3A,3001 -0103_1304_3,-74.474846,39.482216,1001 BAYSHORE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1402_1.01,-74.6897765,39.363247,403 16TH STREET SO,BRIGANTINE CITY,18,1991,1,RES1,3001 -0103_1402_2.01,-74.55287516,39.37287183,401 16TH STREET SO,BRIGANTINE CITY,18,1992,1,GOV1,3004 -0103_1402_2.02,-74.547257,39.37927,1504 OCEAN AVE,BRIGANTINE CITY,18,1992,1,RES1,3001 -0103_1403_1,-74.78076064,39.31654246,1600 OCEAN AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1404_1,-74.51275783,39.43037867,405 18TH STREET SO,BRIGANTINE CITY,20,2013,1,RES1,3001 -0103_1404_2,-74.462448,39.45518,403 18TH STREET SO,BRIGANTINE CITY,21,2017,1,RES1,3001 -0103_1404_3,-74.713647,39.37553,401 18TH STREET SO,BRIGANTINE CITY,20,2016,1,RES1,3001 -0103_1404_4,-74.57719801,39.36686974,1704 OCEAN AVE,BRIGANTINE CITY,19,1999,1,RES1,3001 -0103_1404_4,-74.47794893,39.34210219,1704 OCEAN AVE,BRIGANTINE CITY,19,1999,1,RES1,3001 -0103_1404_6,-74.593954,39.3655425,400 17TH STREET SO,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_1404_6,-74.47657372,39.34196813,400 17TH STREET SO,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_1404_7,-74.7549705,39.430902,402 17TH STREET SO,BRIGANTINE CITY,19,1995,1,GOV1,3004 -0103_1405_2,-74.50294045,39.42428484,1804 OCEAN AVE,BRIGANTINE CITY,21,2007,1,RES1,3001 -0103_1405_3,-74.47532545,39.44472451,1800 OCEAN AVE,BRIGANTINE CITY,18,1986,1,RES1,3001 -0103_1405_4,-74.6844505,39.441124,400 18TH STREET SO,BRIGANTINE CITY,21,2008,1,RES1,3001 -0103_1405_5,-74.62984349,39.43990508,402 18TH STREET SO,BRIGANTINE CITY,20,1980,1,RES1,3001 -0103_1406_1.01,-74.61195621,39.3666719,405 20TH STREET SO,BRIGANTINE CITY,20,2011,1,RES1,3001 -0103_1406_1.02,-74.55537,39.358826,403 20TH STREET SO,BRIGANTINE CITY,20,2013,1,RES1,3001 -0103_1406_1.02,-74.47928811,39.34334202,403 20TH STREET SO,BRIGANTINE CITY,20,2013,1,RES1,3001 -0103_1406_2,-74.59894897,39.34258665,1904 OCEAN AVE,BRIGANTINE CITY,20,2018,1,RES1,3001 -0103_1406_2,-74.48030673,39.34268901,1904 OCEAN AVE,BRIGANTINE CITY,20,2018,1,RES1,3001 -0103_1406_4,-74.5658635,39.4789185,1900 OCEAN AVE,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1406_5,-74.59867608,39.34393135,402 19TH STREET SO,BRIGANTINE CITY,20,1997,1,RES1,3001 -0103_1406_5,-74.48023667,39.34264459,402 19TH STREET SO,BRIGANTINE CITY,20,1997,1,RES1,3001 -0103_1501_1,-74.517636,39.4031305,1319 OCEAN AVE,BRIGANTINE CITY,15,1954,1,RES1,3002 -0103_1501_1,-74.47798784,39.34547978,1319 OCEAN AVE,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1501_12,-74.79558677,39.63514855,1312 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1501_13,-74.81228005,39.63516534,1306 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1501_15,-74.8793725,39.5981145,312 13TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1501_16,-74.7799127,39.63114943,318 13TH STREET SO,BRIGANTINE CITY,16,1952,1,GOV1,3004 -0103_1501_17,-74.49066142,39.43756671,324 13TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1501_17,-74.47639903,39.34456236,324 13TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1501_18,-74.50836643,39.43398265,328 13TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3002 -0103_1501_18,-74.47791063,39.3443607,328 13TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1501_19,-74.64459198,39.3734488,332 13TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_1501_2,-74.68468734,39.51015553,349 14TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1501_20,-74.74661016,39.5913567,336 13TH STREET SO,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_1501_21,-74.81258917,39.56191834,340 13TH STREET SO,BRIGANTINE CITY,15,1959,1,RES1,3001 -0103_1501_22,-74.6966685,39.6351995,344 13TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1501_23,-74.604535,39.594268,350 13TH STREET SO,BRIGANTINE CITY,17,1945,1,RES1,3002 -0103_1501_24,-74.64897407,39.52464634,1301 OCEAN AVE,BRIGANTINE CITY,16,1930,1,RES1,3001 -0103_1501_25,-74.59026118,39.33038359,1307 OCEAN AVE,BRIGANTINE CITY,17,1945,1,RES1,3001 -0103_1501_26,-74.591568,39.3304785,1313 OCEAN AVE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_1501_3,-74.64823976,39.56987043,345 14TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1501_4,-74.696269,39.5898095,341 14TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1501_5,-74.715029,39.57067,337 14TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_1501_6,-74.72191386,39.57705545,333 14TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1501_7,-74.62144442,39.37920097,329 14TH STREET SO,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_1501_8,-74.50906504,39.43009899,325 14TH STREET SO,BRIGANTINE CITY,16,1970,1,RES1,3002 -0103_1501_8,-74.47964877,39.34414669,325 14TH STREET SO,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_1501_9,-74.471849,39.4455475,317 14TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_1501_9,-74.48152904,39.34487284,317 14TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_1502_1,-74.7177385,39.640126,1307-17 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1502_10,-74.51464881,39.32407205,214 13TH STREET SO,BRIGANTINE CITY,16,1950,1,COM5,3004 -0103_1502_11,-74.49417969,39.32977347,222 13TH STREET SO,BRIGANTINE CITY,17,2009,1,RES1,3001 -0103_1502_12,-74.52237155,39.31608317,226 13TH STREET SO,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_1502_13,-74.4415555,39.3580525,230 13TH STREET SO,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_1502_14,-74.6721835,39.49504,234 13TH STREET SO,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_1502_15,-74.694892,39.4474395,238 13TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1502_16,-74.6269864,39.43905076,242 13TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_1502_18,-74.79058733,39.64293498,1301 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES3B,3001 -0103_1502_2,-74.7080635,39.639766,251 14TH STREET SO,BRIGANTINE CITY,16,1964,1,RES3B,3001 -0103_1502_3,-74.780488,39.672533,247 14TH STREET SO,BRIGANTINE CITY,16,1955,1,RES3A,3001 -0103_1502_4,-74.604417,39.48675183,239 14TH STREET SO,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_1502_7,-74.49345105,39.33189691,215 14TH STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1502_8,-74.4248405,39.3751055,1312 W BEACH AVE,BRIGANTINE CITY,,0,1,RES3A,3001 -0103_1502_9,-74.4029855,39.3864815,1300 W BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_1503_1,-74.80948269,39.46781133,1419 OCEAN AVE,BRIGANTINE CITY,17,1946,1,RES1,3001 -0103_1503_11,-74.794488,39.598972,316 14TH STREET SO,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_1503_12,-74.72264797,39.58121084,320 14TH STREET SO,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_1503_14,-74.66004678,39.63782755,328 14TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_1503_15,-74.69981318,39.55997031,332 14TH STREET SO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_1503_16,-74.6498545,39.5450945,336 14TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1503_17,-74.58827568,39.32707877,340 14TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1503_18,-74.5925368,39.32228618,344 14TH STREET SO,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_1503_19,-74.6310505,39.4291355,348 14TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1503_2,-74.59164501,39.51769766,349 15TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_1503_20,-74.64075893,39.53666916,1401 OCEAN AVE,BRIGANTINE CITY,20,2005,1,RES1,3001 -0103_1503_21,-74.5482175,39.52608,1407 OCEAN AVE,BRIGANTINE CITY,43,1945,2,RES1,3001 -0103_1503_22,-74.836114,39.493892,1413 OCEAN AVE,BRIGANTINE CITY,15,1958,1,RES1,3001 -0103_1503_3,-74.63972634,39.53591153,345 15TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1503_4,-74.68805507,39.41224148,341 15TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1503_5,-74.57796938,39.33081839,337 15TH STREET SO,BRIGANTINE CITY,19,2005,1,RES1,3001 -0103_1503_6,-74.64673443,39.54837715,329 15TH STREET SO,BRIGANTINE CITY,18,2005,1,COM1,3004 -0103_1503_7,-74.653681,39.598799,325 15TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1503_8,-74.839605,39.523932,305 15TH STREET SO,BRIGANTINE CITY,19,2011,1,RES1,3001 -0103_1504_1,-74.95284771,39.51276725,1417 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,COM1,3004 -0103_1504_2,-74.502094,39.3302145,201 15TH STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1505_1.01,-74.724877,39.4605095,1505 OCEAN AVE,BRIGANTINE CITY,19,1998,1,RES1,3001 -0103_1505_1.02,-74.45345819,39.35011293,321 16TH STREET SO,BRIGANTINE CITY,19,2005,1,RES1,3001 -0103_1505_10.01,-74.70053852,39.58686467,300 15TH STREET SO,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_1505_10.02,-74.69299506,39.51447735,304 15TH STREET SO,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_1505_11,-74.5902501,39.33275081,306 15TH STREET SO,BRIGANTINE CITY,20,2005,1,RES3A,3001 -0103_1505_12,-74.63758216,39.43559635,310 15TH STREET SO,BRIGANTINE CITY,16,1954,1,RES3B,3001 -0103_1505_13.01,-74.87818092,39.47772371,314 15TH STREET SO,BRIGANTINE CITY,15,1937,1,RES1,3001 -0103_1505_14,-74.75876295,39.44498387,318 15TH STREET SO,BRIGANTINE CITY,18,2001,1,COM1,3004 -0103_1505_15,-74.4831025,39.335025,1501 OCEAN AVE,BRIGANTINE CITY,16,1953,1,RES3B,3001 -0103_1505_2,-74.47040262,39.34435267,317 16TH STREET SO,BRIGANTINE CITY,18,1980,1,RES1,3001 -0103_1505_3,-74.82269805,39.4583414,313 16TH STREET SO,BRIGANTINE CITY,20,2009,1,RES3B,3001 -0103_1505_4,-74.65262779,39.50570853,309 16TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1505_5,-74.50296682,39.41088398,305 16TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_1505_5,-74.48131936,39.34506999,305 16TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_1505_6,-74.58625,39.332612,303 16TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1505_7,-74.64300034,39.52579751,301 16TH STREET SO,BRIGANTINE CITY,17,1910,1,RES1,3001 -0103_1505_8,-74.70183871,39.63391657,1504 W BRIGANTINE AVE,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_1506_1,-74.479332,39.441992,1507 W BRIGANTINE AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1506_1,-74.48209517,39.34448169,1507 W BRIGANTINE AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1506_2,-74.76210249,39.63352728,215 16TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1506_3,-74.80776434,39.62875997,209 16TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1506_4,-74.85803305,39.62291169,205 16TH STREET SO,BRIGANTINE CITY,16,1945,1,RES1,3001 -0103_1506_5,-74.910607,39.535842,201-03 16TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1506_6,-74.94772847,39.52124798,1504 REVERE BLVD,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1506_8,-74.95632125,39.51147806,1501 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_1601_10,-74.63760038,39.52274563,304 16TH STREET SO,BRIGANTINE CITY,16,1929,1,RES1,3001 -0103_1601_11,-74.86009283,39.47444311,306 16TH STREET SO,BRIGANTINE CITY,17,1997,1,RES3B,3002 -0103_1601_12,-74.75534632,39.45434661,308 16TH STREET SO,BRIGANTINE CITY,18,2009,1,RES3B,3001 -0103_1601_13,-74.47846502,39.3470597,310 16TH STREET SO,BRIGANTINE CITY,16,1952,1,RES3A,3001 -0103_1601_14,-74.47836241,39.33980462,314 16TH STREET SO,BRIGANTINE CITY,20,2007,1,RES1,3002 -0103_1601_15,-74.71256434,39.46469717,318 16TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1601_16.01,-74.8348545,39.407059,322 16TH STREET SO,BRIGANTINE CITY,18,1994,1,RES3A,3001 -0103_1601_16.02,-74.63118337,39.43306579,1601 OCEAN AVE,BRIGANTINE CITY,16,1951,1,RES1,3002 -0103_1601_17,-74.55544734,39.37452112,1605 OCEAN AVE,BRIGANTINE CITY,17,1995,1,RES1,3001 -0103_1601_2,-74.8265325,39.415413,317 17TH STREET SO,BRIGANTINE CITY,16,1962,1,RES3A,3001 -0103_1601_3,-74.7332825,39.4595935,313 17TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1601_4,-74.48111483,39.33648459,309 17TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1601_5,-74.71417543,39.47185272,305 17TH STREET SO,BRIGANTINE CITY,16,1954,1,RES3A,3001 -0103_1601_6,-74.53239984,39.52811652,301 17TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1601_7,-74.58767956,39.32041382,1604 W BRIGANTINE AVE,BRIGANTINE CITY,17,1942,1,RES1,3001 -0103_1601_8,-74.670434,39.512923,1600 W BRIGANTINE AVE,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_1601_9,-74.51496502,39.4157965,300 16TH STREET SO,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_1601_9,-74.47902088,39.34521746,300 16TH STREET SO,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_1602_1,-74.81401422,39.5601211,1605 W BRIGANTINE AVE,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_1602_10,-74.84277366,39.58591255,206 16TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1602_11,-74.46266363,39.46451519,210 16TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1602_11,-74.47741239,39.34456686,210 16TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1602_12,-74.4933499,39.43101437,212 16TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1602_12,-74.480185,39.34554545,212 16TH STREET SO,BRIGANTINE CITY,16,1954,1,GOV1,3004 -0103_1602_13,-74.73928985,39.59295534,1601 W BRIGANTINE AVE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1602_2,-74.6264205,39.393451,211 17TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1602_3,-74.50086372,39.43400513,209 17TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1602_3,-74.4795245,39.34474299,209 17TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1602_4,-74.771735,39.6191815,205 17TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3002 -0103_1602_5,-74.80033249,39.6307841,201 17TH STREET SO,BRIGANTINE CITY,16,1930,1,RES1,3001 -0103_1602_6,-74.806458,39.6346285,1604 REVERE BLVD,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1602_7,-74.92383,39.507198,1600 REVERE BLVD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1602_8,-74.814128,39.6366865,200 16TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_1602_9,-74.808396,39.630823,204 16TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3002 -0103_1603_1,-74.65023401,39.34253767,1705 OCEAN AVE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1603_10,-74.8077925,39.4624615,1704 W BRIGANTINE AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1603_11,-74.5827712,39.5237034,1700 W BRIGANTINE AVE,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_1603_12,-74.71052346,39.47056916,300 17TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1603_13,-74.4693295,39.343077,302 17TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1603_14,-74.47205055,39.34213935,304 17TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1603_15,-74.71527306,39.46369971,306 17TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3002 -0103_1603_16,-74.71293115,39.43696646,308 17TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1603_17,-74.63266633,39.4307895,310 17TH STREET SO,BRIGANTINE CITY,16,1958,1,GOV1,3004 -0103_1603_18,-74.53732856,39.37937332,312 17TH STREET SO,BRIGANTINE CITY,16,1960,1,COM10,3003 -0103_1603_19,-74.550043,39.3755875,314 17TH STREET SO,BRIGANTINE CITY,16,1955,1,COM10,3003 -0103_1603_2,-74.629377,39.3660015,315 18TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1603_20,-74.65599461,39.36024884,1701 OCEAN AVE,BRIGANTINE CITY,16,1934,1,RES1,3001 -0103_1603_3,-74.759687,39.3451775,313 18TH STREET SO,BRIGANTINE CITY,16,1957,1,RES3A,3001 -0103_1603_4,-74.53965447,39.38472466,311 18TH STREET SO,BRIGANTINE CITY,17,1957,1,RES1,3001 -0103_1603_5,-74.6247871,39.43362926,309 18TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1603_6,-74.83365517,39.40750047,307 18TH STREET SO,BRIGANTINE CITY,19,2009,1,AGR1,3001 -0103_1603_7,-74.72701031,39.46000741,305 18TH STREET SO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1603_8,-74.45829164,39.35050752,303 18TH STREET SO,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_1603_9,-74.467214,39.3464185,301 18TH STREET SO,BRIGANTINE CITY,15,1970,1,RES1,3001 -0103_1604_1,-74.5876835,39.3196165,1705 W BRIGANTINE AVE,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1604_10,-74.488852,39.432063,204 17TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_1604_10,-74.48081388,39.34566732,204 17TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_1604_11,-74.76334029,39.61041907,208 17TH STREET SO,BRIGANTINE CITY,16,1924,1,RES1,3001 -0103_1604_12,-74.68606854,39.63198729,212 17TH STREET SO,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_1604_13,-74.66204041,39.54379882,1701 W BRIGANTINE AVE,BRIGANTINE CITY,18,1962,1,RES1,3001 -0103_1604_2,-74.64797258,39.53888671,213 18TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1604_3,-74.68255358,39.60905329,209 18TH STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3004 -0103_1604_4,-74.71149733,39.568086,207 18TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_1604_5,-74.72651091,39.59030273,205 18TH STREET SO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_1604_6,-74.48842503,39.42109683,201 18TH STREET SO,BRIGANTINE CITY,17,1956,1,GOV1,3004 -0103_1604_6,-74.48194912,39.34476852,201 18TH STREET SO,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_1604_7,-74.49288205,39.44909628,1704 REVERE BLVD,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_1604_7,-74.47882826,39.34492395,1704 REVERE BLVD,BRIGANTINE CITY,17,1958,1,GOV1,3004 -0103_1604_8,-74.87928983,39.59442098,1700 REVERE BLVD,BRIGANTINE CITY,18,1945,1,GOV1,3004 -0103_1604_9,-74.462054,39.466183,200 17TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1604_9,-74.47811815,39.34451992,200 17TH STREET SO,BRIGANTINE CITY,16,1958,1,GOV1,3004 -0103_1605_1,-74.7578285,39.430246,1805 OCEAN AVE,BRIGANTINE CITY,19,2003,1,RES1,3001 -0103_1605_11,-74.63864721,39.4353796,304 18TH STREET SO,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_1605_12,-74.53310664,39.38280638,308 18TH STREET SO,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_1605_13,-74.765349,39.350588,312 18TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1605_14,-74.63668298,39.36744443,314 18TH STREET SO,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_1605_15,-74.6403305,39.341142,318 18TH STREET SO,BRIGANTINE CITY,19,1998,1,RES1,3001 -0103_1605_16,-74.639354,39.3389615,1801 OCEAN AVE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1605_16,-74.47711856,39.33824173,1801 OCEAN AVE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1605_2,-74.6330155,39.3188145,321 19TH STREET SO,BRIGANTINE CITY,20,2006,1,RES1,3001 -0103_1605_2,-74.47631543,39.33832665,321 19TH STREET SO,BRIGANTINE CITY,20,2006,1,RES1,3001 -0103_1605_3,-74.63058937,39.36424526,317 19TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_1605_3,-74.48174244,39.34091617,317 19TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_1605_4,-74.64239168,39.34719915,313 19TH STREET SO,BRIGANTINE CITY,17,1957,1,RES1,3001 -0103_1605_5,-74.69559698,39.36188406,309 19TH STREET SO,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_1605_6,-74.55122717,39.37364068,307 19TH STREET SO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_1605_7.01,-74.546371,39.385017,305 19TH STREET SO,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_1605_7.02,-74.630354,39.432694,303 19TH STREET SO,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_1605_8.01,-74.83585387,39.41631047,301 19TH STREET SO,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_1605_8.02,-74.73175147,39.46112624,1804 W BRIGANTINE AVE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_1605_9,-74.4789388,39.33737917,1800 W BRIGANTINE AVE,BRIGANTINE CITY,16,1930,1,RES1,3001 -0103_1605_9.01,-74.73235356,39.46099596,300 18TH STREET SO,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_1606_1,-74.834933,39.485295,1805 W BRIGANTINE AVE,BRIGANTINE CITY,16,1955,1,GOV1,3004 -0103_1606_10,-74.6560498,39.6229533,204 18TH STREET SO,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_1606_11,-74.66278,39.5471285,206 18TH STREET SO,BRIGANTINE CITY,16,1930,1,RES1,3001 -0103_1606_12,-74.58859562,39.32876431,208 18TH STREET SO,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_1606_13,-74.705131,39.4285225,212 18TH STREET SO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_1606_2,-74.608738,39.5224715,213 19TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1606_3,-74.50620617,39.411457,209 19TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1606_3,-74.47724235,39.34526124,209 19TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1606_4,-74.642368,39.5279555,205 19TH STREET SO,BRIGANTINE CITY,16,1965,1,GOV1,3004 -0103_1606_5,-74.632677,39.55499,203 19TH STREET SO,BRIGANTINE CITY,16,1978,1,GOV1,3004 -0103_1606_6,-74.69272129,39.59043933,201 19TH STREET SO,BRIGANTINE CITY,17,2017,1,GOV1,3004 -0103_1606_7,-74.71661517,39.57461154,1804 REVERE BLVD,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1606_8,-74.628206,39.3925935,1800 REVERE BLVD,BRIGANTINE CITY,16,1926,1,RES1,3001 -0103_1606_9,-74.8533435,39.558978,200 18TH STREET SO,BRIGANTINE CITY,16,1930,1,RES1,3001 -0103_1701_1,-74.6252753,39.38313259,1313 BAYSHORE AVE,BRIGANTINE CITY,19,2005,1,GOV1,3004 -0103_1701_1,-74.4999778,39.33339842,1313 BAYSHORE AVE,BRIGANTINE CITY,19,2005,1,RES1,3001 -0103_1701_2,-74.577823,39.53866,1301 BAYSHORE AVE,BRIGANTINE CITY,17,2001,1,GOV1,3004 -0103_1701_3,-74.46257154,39.34854365,1229 BAYSHORE AVE,BRIGANTINE CITY,18,2014,1,RES1,3001 -0103_1701_4,-74.47886408,39.33954567,1223 BAYSHORE AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1701_5,-74.62666294,39.41184228,1217 BAYSHORE AVE,BRIGANTINE CITY,17,1946,1,RES1,3001 -0103_1701_6,-74.46941285,39.34366248,1205 BAYSHORE AVE,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1701_7,-74.626206,39.4377615,1201 BAYSHORE AVE,BRIGANTINE CITY,17,1966,1,RES1,3001 -0103_1702_1,-74.3636235,39.4110005,1306 BAYSHORE AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1702_2,-74.60963084,39.32512952,1300 BAYSHORE AVE,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1703_1,-74.61418,39.428084,103 13TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1703_1,-74.49563012,39.3303531,103 13TH STREET SO,BRIGANTINE CITY,16,1958,1,IND2,3002 -0103_1703_2,-74.57882683,39.54173474,101 13TH STREET SO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_1703_3,-74.45645497,39.35043553,1214 BAYSHORE AVE,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_1703_4,-74.4740705,39.339897,1208 BAYSHORE AVE,BRIGANTINE CITY,27,1930,2,RES1,3001 -0103_1703_5,-74.477032,39.338139,1206 BAYSHORE AVE,BRIGANTINE CITY,27,1927,2,RES1,3001 -0103_1703_6,-74.62487187,39.41270969,1200 BAYSHORE AVE,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1703_7,-74.62695829,39.52858455,1201 W BEACH AVE,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1703_8.01,-74.76691918,39.34941257,1207 W BEACH AVE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1703_8.01,-74.48396212,39.34060239,1207 W BEACH AVE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1703_8.02,-74.51093567,39.32913395,1213 W BEACH AVE,BRIGANTINE CITY,16,1997,1,RES1,3001 -0103_1704_1,-74.459468,39.348267,1111 W BEACH AVE,BRIGANTINE CITY,15,1948,1,COM1,3004 -0103_1704_10,-74.5976515,39.49725,124 11TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_1704_11,-74.60287777,39.48308866,128 11TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_1704_12,-74.4808305,39.3525275,132 11TH STREET SO,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_1704_13,-74.47801626,39.34332267,136 11TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1704_14,-74.63506602,39.42086931,140 11TH STREET SO,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_1704_15,-74.63001324,39.42418711,144 11TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1704_16,-74.62799,39.414786,1101 W BEACH AVE,BRIGANTINE CITY,16,1950,1,COM1,3004 -0103_1704_17,-74.63183779,39.39363268,1107 W BEACH AVE,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_1704_2,-74.4665645,39.346557,117 12TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_1704_3,-74.65364981,39.39586045,113 12TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_1704_4,-74.6516455,39.411726,109 12TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1704_5,-74.4794519,39.35015005,105 12TH STREET SO,BRIGANTINE CITY,16,1947,1,GOV1,3004 -0103_1704_6,-74.564771,39.4727125,1118 BAYSHORE AVE,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_1704_7,-74.5068315,39.33536317,1112 BAYSHORE AVE,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_1704_8,-74.4832895,39.3550005,1106 BAYSHORE AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_1704_9,-74.3746655,39.4158685,100 11TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_1705_1,-74.63288708,39.42400284,1019 W BEACH AVE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_1705_10,-74.5262541,39.38478432,115 11TH STREET SO,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_1705_12,-74.5117115,39.399517,101 11TH STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_1705_13,-74.69723919,39.59391444,1018 BAYSHORE AVE,BRIGANTINE CITY,17,1968,1,RES1,3001 -0103_1705_14,-74.504546,39.429052,1006 BAYSHORE AVE,BRIGANTINE CITY,21,2015,1,RES1,3001 -0103_1705_15,-74.4979635,39.449223,1000 BAYSHORE AVE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1705_16,-74.51219043,39.40619749,116 10TH STREET SO,BRIGANTINE CITY,15,1946,1,RES1,3001 -0103_1705_17,-74.5232135,39.396327,122 10TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_1705_18,-74.53016083,39.40106749,128 10TH STREET SO,BRIGANTINE CITY,17,1946,1,RES1,3001 -0103_1705_2,-74.461631,39.3524785,151 11TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1705_20,-74.4447505,39.373338,140 10TH STREET SO,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_1705_21,-74.37398372,39.41729395,148 10TH STREET SO,BRIGANTINE CITY,17,2010,1,GOV1,3004 -0103_1705_22,-74.49122771,39.34013021,154 10TH STREET SO,BRIGANTINE CITY,17,2006,1,GOV1,3004 -0103_1705_23,-74.38720834,39.39344952,160 10TH STREET SO,BRIGANTINE CITY,18,2007,1,GOV1,3004 -0103_1705_24,-74.50103883,39.33571304,168 10TH STREET SO,BRIGANTINE CITY,16,2017,1,RES1,3001 -0103_1705_25,-74.60217067,39.47584549,1001 W BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_1705_26,-74.45449534,39.352613,1007 W BEACH AVE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1705_27,-74.478288,39.3464375,1013 W BEACH AVE,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_1705_3,-74.60293696,39.47451435,147 11TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1705_4,-74.6064625,39.489543,143 11TH STREET SO,BRIGANTINE CITY,15,1959,1,RES1,3001 -0103_1705_5,-74.51103568,39.33672248,135 11TH STREET SO,BRIGANTINE CITY,16,1922,1,RES1,3001 -0103_1705_6,-74.4830761,39.35516003,131 11TH STREET SO,BRIGANTINE CITY,19,2016,1,GOV1,3004 -0103_1705_7,-74.494832,39.337738,127 11TH STREET SO,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_1705_8,-74.39482054,39.38641134,123 11TH STREET SO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_1705_9,-74.38169968,39.41801097,119 11TH STREET SO,BRIGANTINE CITY,16,1957,1,GOV1,3004 -0103_1801_2,-74.58044809,39.34240393,405 21ST STREET SO,BRIGANTINE CITY,17,1960,1,GOV1,3004 -0103_1801_4,-74.57116142,39.33887141,2002 OCEAN AVE,BRIGANTINE CITY,17,1947,1,GOV1,3004 -0103_1801_4,-74.47986375,39.34566989,2002 OCEAN AVE,BRIGANTINE CITY,17,1947,1,COM4,3004 -0103_1801_5,-74.5654755,39.358922,2000 OCEAN AVE,BRIGANTINE CITY,17,1927,1,RES1,3001 -0103_1801_5,-74.47891193,39.34287169,2000 OCEAN AVE,BRIGANTINE CITY,17,1927,1,RES1,3001 -0103_1801_7,-74.5888395,39.337155,402 20TH STREET SO,BRIGANTINE CITY,20,2003,1,IND1,3002 -0103_1801_8,-74.55767283,39.36766047,406 20TH STREET SO,BRIGANTINE CITY,21,1981,1,RES1,3001 -0103_1802_1.01,-74.60879676,39.32617509,403 22ND STREET SO,BRIGANTINE CITY,17,1926,1,RES1,3001 -0103_1802_1.02,-74.58913973,39.3288205,405 22ND STREET SO,BRIGANTINE CITY,20,2012,1,RES1,3001 -0103_1802_2,-74.55461463,39.35691045,2104 OCEAN AVE,BRIGANTINE CITY,18,1970,1,RES1,3001 -0103_1802_3,-74.573327,39.36267,2100 OCEAN AVE,BRIGANTINE CITY,19,1959,1,GOV1,3004 -0103_1802_4.01,-74.55420865,39.35798592,402 21ST STREET SO,BRIGANTINE CITY,18,1950,1,RES1,3001 -0103_1802_4.02,-74.60340312,39.33022434,404 21ST STREET SO,BRIGANTINE CITY,19,1998,1,RES1,3001 -0103_1803_3.01,-74.60933791,39.31458033,401 23RD STREET SO,BRIGANTINE CITY,19,1991,1,RES1,3001 -0103_1803_3.02,-74.58459233,39.32585749,2206 OCEAN AVE,BRIGANTINE CITY,19,1996,1,GOV1,3004 -0103_1803_5,-74.5831131,39.32543483,400 22ND STREET SO,BRIGANTINE CITY,16,1956,1,GOV1,3004 -0103_1803_6,-74.588958,39.313588,404 22ND STREET SO,BRIGANTINE CITY,17,1955,1,GOV1,3004 -0103_1804_1,-74.4955995,39.4725405,405 24TH STREET SO,BRIGANTINE CITY,20,2001,1,RES1,3001 -0103_1804_2,-74.5105165,39.4901205,2304 OCEAN AVE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_1804_3,-74.59700596,39.3119966,2300 OCEAN AVE,BRIGANTINE CITY,20,2004,1,RES1,3001 -0103_1804_4,-74.493546,39.4957585,402 23RD STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_1804_5,-74.505769,39.49306,404 23RD STREET SO,BRIGANTINE CITY,21,2003,1,RES1,3001 -0103_1804_6,-74.45371933,39.50164482,406 23RD STREET SO,BRIGANTINE CITY,21,2004,1,RES1,3001 -0103_1805_1,-74.52238074,39.45171574,405 25TH STREET SO,BRIGANTINE CITY,21,2005,1,RES1,3001 -0103_1805_2,-74.4618105,39.49199,2402 OCEAN AVE,BRIGANTINE CITY,19,1926,1,RES1,3001 -0103_1806_2,-74.50725384,39.43819303,2506 OCEAN AVE,BRIGANTINE CITY,20,2009,1,GOV1,3004 -0103_1806_5,-74.49558588,39.45186138,400 25TH STREET SO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1901_1,-74.50580753,39.42442182,1905 OCEAN AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1901_10,-74.53384931,39.37935477,302 19TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1901_11,-74.769096,39.32235,304 19TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1901_12,-74.64998584,39.35406197,306 19TH STREET SO,BRIGANTINE CITY,19,2011,1,RES1,3001 -0103_1901_13,-74.63615235,39.33697683,308 19TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1901_14,-74.6410252,39.35796387,312 19TH STREET SO,BRIGANTINE CITY,16,1923,1,RES1,3001 -0103_1901_14,-74.48084467,39.33930578,312 19TH STREET SO,BRIGANTINE CITY,16,1923,1,RES1,3001 -0103_1901_15,-74.5756195,39.359336,316 19TH STREET SO,BRIGANTINE CITY,17,2011,1,GOV1,3004 -0103_1901_15,-74.47914732,39.34236864,316 19TH STREET SO,BRIGANTINE CITY,17,2011,1,RES1,3001 -0103_1901_16,-74.6354785,39.50138616,320 19TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_1901_17,-74.501136,39.4293245,1901 OCEAN AVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_1901_2,-74.47076966,39.44330631,319 20TH STREET SO,BRIGANTINE CITY,18,1993,1,GOV1,3004 -0103_1901_3,-74.57761283,39.35283483,315 20TH STREET SO,BRIGANTINE CITY,16,1953,1,GOV1,3004 -0103_1901_3,-74.47904278,39.34216844,315 20TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1901_4,-74.636862,39.3077665,311 20TH STREET SO,BRIGANTINE CITY,19,2011,1,RES1,3001 -0103_1901_4,-74.47637216,39.33855381,311 20TH STREET SO,BRIGANTINE CITY,19,2011,1,GOV1,3004 -0103_1901_5,-74.6364375,39.3413655,307 20TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1901_6,-74.62628521,39.35960437,305 20TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_1901_7,-74.65555036,39.35935109,301 20TH STREET SO,BRIGANTINE CITY,17,1956,1,REL1,3004 -0103_1901_8,-74.54134041,39.37770766,1904 W BRIGANTINE AVE,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1901_9,-74.81706858,39.36924184,300 19TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1902_1,-74.4588335,39.3479385,1905 W BRIGANTINE AVE,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_1902_10,-74.4824324,39.33914032,1903 W BRIGANTINE AVE,BRIGANTINE CITY,16,1928,1,RES1,3001 -0103_1902_4,-74.5870365,39.326105,1904 REVERE BLVD,BRIGANTINE CITY,17,1955,1,RES1,3001 -0103_1902_5,-74.6858645,39.5712785,1900 REVERE BLVD,BRIGANTINE CITY,16,1954,1,COM3,3004 -0103_1902_6,-74.587813,39.3299935,202 19TH STREET SO,BRIGANTINE CITY,17,1927,1,RES1,3001 -0103_1902_7,-74.63108396,39.52407167,206 19TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1902_8,-74.828576,39.486376,210 19TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1902_9,-74.4814075,39.348616,214 19TH STREET SO,BRIGANTINE CITY,19,2009,1,RES3A,3001 -0103_1903_1,-74.57542676,39.34294536,2005 OCEAN AVE,BRIGANTINE CITY,19,1976,1,RES1,3001 -0103_1903_1,-74.48024116,39.34329241,2005 OCEAN AVE,BRIGANTINE CITY,19,1976,1,RES1,3001 -0103_1903_12.01,-74.4879855,39.4403975,312 20TH STREET SO,BRIGANTINE CITY,19,1987,1,RES1,3001 -0103_1903_12.02,-74.49915473,39.42925706,314 20TH STREET SO,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_1903_13.01,-74.5079985,39.424708,320 20TH STREET SO,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_1903_13.02,-74.62897366,39.43822384,324 20TH STREET SO,BRIGANTINE CITY,19,1987,1,RES1,3001 -0103_1903_14,-74.56044745,39.50080766,2001 OCEAN AVE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1903_2,-74.60754361,39.43965775,323 21ST STREET SO,BRIGANTINE CITY,16,1936,1,GOV1,3004 -0103_1903_3,-74.61375815,39.48668576,319 21ST STREET SO,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_1903_4,-74.67927,39.4448245,315 21ST STREET SO,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_1903_8,-74.704067,39.352552,2000 W BRIGANTINE AVE,BRIGANTINE CITY,18,1957,1,RES1,3001 -0103_1903_9,-74.63427076,39.34897393,300 20TH STREET SO,BRIGANTINE CITY,18,2001,1,GOV1,3004 -0103_1904_1,-74.54280448,39.38508317,2005 W BRIGANTINE AVE,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_1904_10,-74.44799374,39.35749511,204 20TH STREET SO,BRIGANTINE CITY,17,1956,1,GOV1,3004 -0103_1904_11,-74.48183609,39.34100318,208 20TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_1904_12,-74.72285256,39.45876581,212 20TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1904_2,-74.824576,39.3804355,215 21ST STREET SO,BRIGANTINE CITY,18,2014,1,RES1,3001 -0103_1904_3,-74.72576768,39.45794063,211 21ST STREET SO,BRIGANTINE CITY,17,1969,1,IND1,3004 -0103_1904_4,-74.47773259,39.34062718,205 21ST STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1904_5,-74.45131,39.3567815,201 21ST STREET SO,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_1904_6,-74.8190475,39.4722985,2006 REVERE BLVD,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_1904_7,-74.86398931,39.49560346,2004 REVERE BLVD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1904_8,-74.63313648,39.43359734,2000 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1904_9,-74.83660594,39.48781629,200 20TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1905_1,-74.58365586,39.36016568,2105 OCEAN AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1905_11.01,-74.6464741,39.34310904,2100 W BRIGANTINE AVE,BRIGANTINE CITY,17,1957,1,RES1,3001 -0103_1905_11.01,-74.48089225,39.33910808,2100 W BRIGANTINE AVE,BRIGANTINE CITY,17,1957,1,RES1,3001 -0103_1905_11.02,-74.58331644,39.35168085,300 21ST STREET SO,BRIGANTINE CITY,17,1989,1,GOV1,3004 -0103_1905_11.02,-74.47786539,39.34212083,300 21ST STREET SO,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_1905_12,-74.71951892,39.43063156,302 21ST STREET SO,BRIGANTINE CITY,16,1941,1,RES1,3001 -0103_1905_13,-74.48218296,39.44063996,304 21ST STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_1905_14,-74.7063135,39.445157,308 21ST STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_1905_15,-74.61030725,39.4725033,312 21ST STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_1905_16,-74.56522119,39.47692196,314 21ST STREET SO,BRIGANTINE CITY,16,1930,1,RES1,3001 -0103_1905_17,-74.5535065,39.4695245,316 21ST STREET SO,BRIGANTINE CITY,20,2005,1,RES1,3001 -0103_1905_18,-74.57619957,39.34023823,320 21ST STREET SO,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_1905_18,-74.47854234,39.34290059,320 21ST STREET SO,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_1905_19,-74.5505925,39.3655965,2101 OCEAN AVE,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_1905_19,-74.47837194,39.34549903,2101 OCEAN AVE,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_1905_2,-74.6082793,39.3263662,323 22ND STREET SO,BRIGANTINE CITY,20,2006,1,RES1,3001 -0103_1905_2,-74.47710299,39.34545775,323 22ND STREET SO,BRIGANTINE CITY,20,2006,1,RES1,3001 -0103_1905_3,-74.56628629,39.35231213,319 22ND STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1905_3,-74.47841412,39.34268045,319 22ND STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_1905_4,-74.587356,39.337289,317 22ND STREET SO,BRIGANTINE CITY,20,2006,1,RES1,3001 -0103_1905_4,-74.47992743,39.3433307,317 22ND STREET SO,BRIGANTINE CITY,20,2006,1,RES1,3001 -0103_1905_5,-74.6468545,39.4308845,315 22ND STREET SO,BRIGANTINE CITY,15,1961,1,RES1,3001 -0103_1905_6,-74.55354,39.469388,313 22ND STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1905_7,-74.60651855,39.48273025,309 22ND STREET SO,BRIGANTINE CITY,17,1968,1,RES1,3001 -0103_1905_8,-74.5052295,39.426106,305 22ND STREET SO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_1905_9,-74.47021206,39.44596276,301-03 22ND STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_1906_1,-74.62125966,39.36191545,2105 W BRIGANTINE AVE,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_1906_10,-74.75054986,39.44668186,204 21ST STREET SO,BRIGANTINE CITY,17,1956,1,GOV1,3004 -0103_1906_11,-74.6353925,39.4313155,208 21ST STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_1906_12,-74.5513295,39.3688835,212 21ST STREET SO,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_1906_13,-74.7921564,39.31363919,2101 W BRIGANTINE AVE,BRIGANTINE CITY,17,1948,1,RES1,3001 -0103_1906_2,-74.66060682,39.34772247,2107 W BRIGANTINE AVE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_1906_3,-74.821356,39.3674365,211 22ND STREET SO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_1906_4,-74.550447,39.379078,207 22ND STREET SO,BRIGANTINE CITY,15,1926,1,GOV1,3004 -0103_1906_5,-74.84449369,39.38355944,203 22ND STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_1906_6,-74.7456515,39.4458225,201 22ND STREET SO,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_1906_7,-74.46304129,39.34732917,2104 REVERE BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_1906_8,-74.480965,39.3470215,2100 REVERE BLVD,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_1906_9,-74.4624805,39.350717,200 21ST STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2001_1,-74.9367775,39.52617,1813 BAYSHORE AVE,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2001_2,-74.7671535,39.646838,15 19TH STREET SO,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2001_3,-74.81204877,39.64373756,13 19TH STREET SO,BRIGANTINE CITY,15,1926,1,RES1,3001 -0103_2001_4,-74.62744762,39.4390047,1 19TH STREET SO,BRIGANTINE CITY,17,1962,1,RES1,3001 -0103_2001_5,-74.68660644,39.49973266,2 18TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2001_6,-74.60819814,39.48248507,12 18TH STREET SO,BRIGANTINE CITY,17,1952,1,RES1,3001 -0103_2001_7,-74.80791134,39.64771098,20 18TH STREET SO,BRIGANTINE CITY,15,1927,1,RES1,3001 -0103_2001_8,-74.94670008,39.54416868,1801 BAYSHORE AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2002_1,-74.764689,39.6636465,1713 BAYSHORE AVE,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_2002_10,-74.519372,39.3208805,2 17TH STREET SO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_2002_12,-74.49172116,39.33338251,12 17TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2002_15,-74.6713135,39.453841,20 17TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3002 -0103_2002_17,-74.601425,39.4808235,24 17TH STREET SO,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_2002_18,-74.79509507,39.65316675,1701 BAYSHORE AVE,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_2002_3,-74.81098272,39.64106932,23 18TH STREET SO,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_2002_6,-74.66865003,39.45411824,11 18TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2002_8,-74.428391,39.3682375,1 18TH STREET SO,BRIGANTINE CITY,17,1988,1,GOV1,3004 -0103_2003_1,-74.60033993,39.49668035,1619 BAYSHORE AVE,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_2003_3,-74.66326976,39.46031747,31 17TH STREET SO,BRIGANTINE CITY,16,1925,1,RES1,3001 -0103_2003_4,-74.48984137,39.33385534,19 17TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2003_8,-74.52569666,39.31146097,2 16TH STREET SO,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_2004_5,-74.40190396,39.38939363,1419 BAYSHORE AVE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_2004_6,-74.36297725,39.40853312,1413 BAYSHORE AVE,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_2004_7,-74.36962011,39.40247416,1401 BAYSHORE AVE,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_2005_1,-74.48279607,39.43756535,1805 REVERE BLVD,BRIGANTINE CITY,15,1956,1,GOV1,3004 -0103_2005_1,-74.48119543,39.34499521,1805 REVERE BLVD,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2005_2,-74.7963755,39.598667,101 19TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2005_3,-74.7965205,39.6323255,1804 BAYSHORE AVE,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_2005_5,-74.87423914,39.59053142,100 18TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2005_6,-74.79094145,39.63620969,1801 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2006_1,-74.79960859,39.63468805,1705 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2006_2,-74.91246279,39.51420716,1704 BAYSHORE AVE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_2006_3,-74.95103193,39.51145489,1700 BAYSHORE AVE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_2006_4,-74.93654563,39.48132325,1701 REVERE BLVD,BRIGANTINE CITY,16,1962,1,GOV1,3004 -0103_2007_1,-74.9417711,39.5152917,1605 REVERE BLVD,BRIGANTINE CITY,15,1956,1,GOV1,3004 -0103_2007_2,-74.88620528,39.59621703,1604 BAYSHORE AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2007_3,-74.80239834,39.64067551,1600 BAYSHORE AVE,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_201_10,-74.60089634,39.32991447,1106 E BEACH AVE,BRIGANTINE CITY,16,1945,1,RES1,3001 -0103_201_12,-74.50364781,39.43469672,202 12TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_201_13,-74.49374137,39.41901179,204 12TH STREET NO,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_201_16,-74.65223029,39.45591611,210 12TH STREET NO,BRIGANTINE CITY,45,1960,1,RES1,3001 -0103_201_2,-74.75558775,39.30266103,213 11TH STREET NO,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_201_4,-74.6256785,39.4629535,207 11TH STREET NO,BRIGANTINE CITY,43,1951,2,GOV1,3004 -0103_201_5,-74.36683706,39.42320918,203 11TH STREET NO,BRIGANTINE CITY,45,1955,2,RES1,3001 -0103_201_6,-74.528886,39.3954085,201 11TH STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_201_7,-74.49433419,39.4345128,1100 E BEACH AVE,BRIGANTINE CITY,19,2010,1,RES1,3001 -0103_201_8,-74.524664,39.3866715,1102 E BEACH AVE,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_201_8,-74.48062143,39.34542572,1102 E BEACH AVE,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_201_9,-74.63042509,39.41501484,1104 E BEACH AVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_202_1.02,-74.52446031,39.42993496,1103 E BEACH AVE,BRIGANTINE CITY,45,1950,2,GOV1,3004 -0103_202_10,-74.827078,39.394154,1102 E EVANS BLVD,BRIGANTINE CITY,17,2007,1,RES1,3001 -0103_202_12,-74.67632685,39.55744403,1106 E EVANS BLVD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_202_13,-74.7608335,39.430352,100 12TH STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_202_14,-74.75376768,39.45290454,102 12TH STREET NO,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_202_15,-74.58011353,39.31253192,104 12TH STREET NO,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_202_16,-74.78366544,39.60883821,106 12TH STREET NO,BRIGANTINE CITY,15,1925,1,RES1,3001 -0103_202_16,-74.44096068,39.35955119,106 12TH STREET NO,BRIGANTINE CITY,15,1925,1,RES1,3001 -0103_202_17,-74.46426462,39.49312778,108 12TH STREET NO,BRIGANTINE CITY,47,1986,2,RES1,3001 -0103_202_18,-74.546157,39.3745485,110 12TH STREET NO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_202_2,-74.51843951,39.44592267,115 11TH STREET NO,BRIGANTINE CITY,47,2010,2,RES1,3001 -0103_202_20,-74.6130802,39.42586625,114 12TH STREET NO,BRIGANTINE CITY,43,1970,2,RES1,3001 -0103_202_3,-74.58321499,39.42245117,113 11TH STREET NO,BRIGANTINE CITY,45,1979,2,GOV1,3004 -0103_202_5,-74.7142005,39.5793575,109 11TH STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_202_5,-74.39571321,39.38549892,109 11TH STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_202_7,-74.46619345,39.50016311,105 11TH STREET NO,BRIGANTINE CITY,45,1958,3,RES1,3001 -0103_202_9,-74.6333965,39.4203705,1100 E EVANS BLVD,BRIGANTINE CITY,17,2006,1,RES1,3001 -0103_203_1,-74.845114,39.560777,1001 E BRIGANTINE AVE,BRIGANTINE CITY,15,1938,1,RES1,3001 -0103_203_10,-74.51911961,39.38399601,1006 E BEACH AVE,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_203_11,-74.3818908,39.41614755,200 11TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_203_12,-74.37174816,39.40993142,202 11TH STREET NO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_203_13,-74.77540903,39.3435947,204 11TH STREET NO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_203_14,-74.439551,39.3686335,206 11TH STREET NO,BRIGANTINE CITY,19,2012,1,RES1,3001 -0103_203_17,-74.76676784,39.61232151,1007 E BRIGANTINE AVE,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_203_2.01,-74.8342969,39.59257418,229 10TH STREET NO,BRIGANTINE CITY,47,1968,4,RES1,3001 -0103_203_3.01,-74.919781,39.497774,223 10TH STREET NO,BRIGANTINE CITY,47,1968,4,RES1,3001 -0103_203_4,-74.945786,39.5096355,211 10TH STREET NO,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_203_6,-74.3608205,39.409987,203 10TH STREET NO,BRIGANTINE CITY,45,1954,2,RES1,3001 -0103_203_7,-74.56947316,39.36920744,1000 E BEACH AVE,BRIGANTINE CITY,17,1947,1,RES1,3001 -0103_203_8,-74.3725487,39.41181504,1002 E BEACH AVE,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_203_9,-74.7023565,39.446474,1004 E BEACH AVE,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_204_1,-74.5277695,39.393694,1001 E BEACH AVE,BRIGANTINE CITY,19,2012,1,RES1,3001 -0103_204_11,-74.45342101,39.49762239,1004 E EVANS BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_204_13,-74.79579268,39.36504297,100 11TH STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_204_14,-74.86500837,39.56526457,102 11TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_204_14,-74.39505602,39.38588371,102 11TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_204_15,-74.5955475,39.4283445,104 11TH STREET NO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_204_16,-74.52645117,39.46915919,106 11TH STREET NO,BRIGANTINE CITY,15,1958,1,RES1,3001 -0103_204_17,-74.51854804,39.44322216,108 11TH STREET NO,BRIGANTINE CITY,43,1982,2,RES1,3001 -0103_204_18,-74.5915905,39.4284475,110 11TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_204_18,-74.49417407,39.34187411,110 11TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_204_19,-74.6107142,39.32032802,112 11TH STREET NO,BRIGANTINE CITY,47,1978,2,RES1,3001 -0103_204_2,-74.516748,39.402069,115 10TH STREET NO,BRIGANTINE CITY,47,1959,2,RES1,3001 -0103_204_2,-74.4792335,39.3454579,115 10TH STREET NO,BRIGANTINE CITY,47,1959,2,GOV1,3004 -0103_204_20,-74.62983174,39.41792438,114 11TH STREET NO,BRIGANTINE CITY,43,1975,2,RES1,3001 -0103_204_21,-74.52253157,39.38770019,1007 E BEACH AVE,BRIGANTINE CITY,43,1978,2,GOV1,3004 -0103_204_21,-74.47898964,39.34398337,1007 E BEACH AVE,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_204_22,-74.49633367,39.4341375,1005 E BEACH AVE,BRIGANTINE CITY,43,1931,2,RES1,3001 -0103_204_3,-74.62581866,39.41613025,111 10TH STREET NO,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_204_4,-74.60973907,39.32124476,109 10TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_204_5,-74.59395991,39.4288261,107 10TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_204_5,-74.4936494,39.34146904,107 10TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_204_6,-74.49831314,39.44929022,105 10TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_204_7,-74.5239075,39.4538845,103 10TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_204_8,-74.59334096,39.4328448,101 10TH STREET NO,BRIGANTINE CITY,43,1972,2,RES1,3001 -0103_205_1,-74.5501575,39.525954,909 E BRIGANTINE AVE,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_205_2,-74.86096929,39.47955557,905 E BRIGANTINE AVE,BRIGANTINE CITY,47,1955,4,GOV1,3004 -0103_205_4,-74.57451285,39.54397196,230 QUAY BLVD,BRIGANTINE CITY,45,1975,2,RES1,3002 -0103_206_1.01,-74.85084435,39.55865004,237 QUAY BLVD,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_206_1.02,-74.86268169,39.56369673,233 QUAY BLVD,BRIGANTINE CITY,43,1945,3,RES1,3001 -0103_206_10,-74.94167609,39.49626436,202 10TH STREET NO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_206_11,-74.807665,39.6308985,204 10TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_206_12,-74.8402595,39.5979145,208 10TH STREET NO,BRIGANTINE CITY,15,1950,1,GOV1,3004 -0103_206_2,-74.71203817,39.57319752,229 QUAY BLVD,BRIGANTINE CITY,15,1949,1,GOV1,3004 -0103_206_5,-74.7906175,39.6318005,203 9TH STREET NO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_206_6,-74.80865125,39.61146721,900 E BEACH AVE,BRIGANTINE CITY,15,1953,1,GOV1,3004 -0103_206_7,-74.890343,39.500212,902 E BEACH AVE,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_206_8,-74.91561826,39.52549472,904 E BEACH AVE,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_206_9,-74.956976,39.5291265,906 E BEACH AVE,BRIGANTINE CITY,43,1989,2,RES1,3001 -0103_207_1,-74.42287862,39.37375867,901 E BEACH AVE,BRIGANTINE CITY,43,1950,2,COM3,3004 -0103_207_10,-74.60229892,39.3277783,900 E EVANS BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_207_11,-74.61429338,39.42371414,902 E EVANS BLVD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_207_11,-74.50001047,39.34157366,902 E EVANS BLVD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_207_12,-74.51918722,39.44269475,904 E EVANS BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_207_13,-74.59870234,39.40942891,906 E EVANS BLVD,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_207_14,-74.56978616,39.35564082,100 10TH STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_207_15,-74.62203552,39.41978952,102 10TH STREET NO,BRIGANTINE CITY,43,1965,2,RES1,3001 -0103_207_17,-74.49780869,39.42502355,108 10TH STREET NO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_207_18,-74.5179985,39.39582,110 10TH STREET NO,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_207_2,-74.5419455,39.3931015,115 9TH STREET NO,BRIGANTINE CITY,43,1986,2,RES1,3001 -0103_207_20,-74.6696502,39.46282854,114 10TH STREET NO,BRIGANTINE CITY,15,1945,1,RES1,3001 -0103_207_23,-74.76521795,39.30836489,903 E BEACH AVE,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_207_3,-74.38075932,39.41755046,113 9TH STREET NO,BRIGANTINE CITY,43,1973,2,RES1,3001 -0103_207_4,-74.6921035,39.448478,111 9TH STREET NO,BRIGANTINE CITY,43,1973,2,RES1,3001 -0103_207_5,-74.44778578,39.37300238,109 9TH STREET NO,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_207_6,-74.51495945,39.39791786,107 9TH STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_207_7,-74.51938981,39.40374266,105 9TH STREET NO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_207_8,-74.52106268,39.39081452,103 9TH STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_207_8,-74.47746447,39.34374856,103 9TH STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_207_9,-74.48256938,39.43492862,101 9TH STREET NO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_207_9,-74.47691318,39.34410659,101 9TH STREET NO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_2101_1,-74.57228396,39.35013628,2205 OCEAN AVE,BRIGANTINE CITY,16,1954,1,RES1,3002 -0103_2101_10,-74.60297345,39.48496077,301 23RD STREET SO,BRIGANTINE CITY,20,2011,1,RES1,3001 -0103_2101_11,-74.48866638,39.42851532,2204 W BRIGANTINE AVE,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2101_12,-74.46320915,39.45547706,2200 W BRIGANTINE AVE,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_2101_13,-74.69009026,39.44914606,302 22ND STREET SO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_2101_14.01,-74.5753695,39.48428,304 22ND STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2101_14.02,-74.55507229,39.47613147,306 22ND STREET SO,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_2101_15,-74.67871468,39.41353587,310 22ND STREET SO,BRIGANTINE CITY,20,2008,1,GOV1,3004 -0103_2101_16,-74.56687783,39.36594649,312 22ND STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2101_16,-74.47851299,39.34239185,312 22ND STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2101_17,-74.56414483,39.35530144,314 22ND STREET SO,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_2101_17,-74.47876535,39.34320002,314 22ND STREET SO,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_2101_18,-74.648712,39.32633,318 22ND STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_2101_19,-74.59048209,39.35744186,320 22ND STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2101_2,-74.56385624,39.36264789,323 23RD STREET SO,BRIGANTINE CITY,16,1932,2,RES1,3001 -0103_2101_20,-74.57215584,39.36503934,2201 OCEAN AVE,BRIGANTINE CITY,18,1982,1,RES1,3001 -0103_2101_3,-74.56810382,39.36434547,321 23RD STREET SO,BRIGANTINE CITY,16,1945,1,RES1,3001 -0103_2101_4,-74.58981355,39.33727963,319 23RD STREET SO,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_2101_5,-74.586536,39.354095,317 23RD STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2101_6,-74.599005,39.3549105,315 23RD STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2101_7,-74.5741995,39.35772,311 23RD STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2101_7,-74.47842335,39.34228063,311 23RD STREET SO,BRIGANTINE CITY,16,1950,1,RES2,3005 -0103_2101_8,-74.56562109,39.36028322,309 23RD STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2101_8,-74.47910643,39.34306573,309 23RD STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2101_9,-74.70675742,39.42313316,305 23RD STREET SO,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_2102_1,-74.60550643,39.36527881,2205 W BRIGANTINE AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2102_1,-74.4750492,39.33872995,2205 W BRIGANTINE AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2102_10,-74.5511615,39.3730925,204 22ND STREET SO,BRIGANTINE CITY,18,2011,1,RES1,3001 -0103_2102_11,-74.6370765,39.3598355,208 22ND STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2102_12,-74.64041315,39.33782154,212 22ND STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2102_13,-74.65648598,39.34576384,2201 W BRIGANTINE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_2102_13,-74.48072459,39.33915598,2201 W BRIGANTINE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_2102_2,-74.58930374,39.35364499,2207 W BRIGANTINE AVE,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_2102_2,-74.47805706,39.34206698,2207 W BRIGANTINE AVE,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_2102_3,-74.63037739,39.36335376,211 23RD STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_2102_3,-74.48204944,39.34096117,211 23RD STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_2102_5,-74.6761078,39.34415678,205 23RD STREET SO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_2102_6,-74.54592825,39.36939615,201 23RD STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2102_7,-74.63871626,39.43418288,2204 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2102_8,-74.720528,39.450062,2200 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2102_9,-74.62371791,39.4337242,200 22ND STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2103_1,-74.589887,39.3212,2305 OCEAN AVE,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_2103_10,-74.554428,39.3632085,301 24TH STREET SO,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_2103_10,-74.47892272,39.3433244,301 24TH STREET SO,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_2103_11,-74.55101485,39.46380859,2304 W BRIGANTINE AVE,BRIGANTINE CITY,20,2014,1,RES1,3001 -0103_2103_12,-74.5811785,39.4727895,2300 W BRIGANTINE AVE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2103_13,-74.5376695,39.4695345,300 23RD STREET SO,BRIGANTINE CITY,17,1926,1,RES1,3001 -0103_2103_14,-74.564166,39.365855,302 23RD STREET SO,BRIGANTINE CITY,17,1930,1,RES1,3001 -0103_2103_14,-74.47848447,39.34275717,302 23RD STREET SO,BRIGANTINE CITY,17,1930,1,RES1,3001 -0103_2103_15,-74.57359776,39.34833838,304 23RD STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3004 -0103_2103_15,-74.47649425,39.34466474,304 23RD STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_2103_16,-74.63485207,39.31824368,306 23RD STREET SO,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_2103_17,-74.57847431,39.34588471,310 23RD STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2103_18,-74.5541015,39.3616615,314 23RD STREET SO,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_2103_19,-74.55703109,39.35948569,318 23RD STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2103_2,-74.60855399,39.32071134,323 24TH STREET SO,BRIGANTINE CITY,16,1945,1,RES1,3001 -0103_2103_20,-74.60351647,39.33164604,322 23RD STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2103_21,-74.60562249,39.32263146,2301 OCEAN AVE,BRIGANTINE CITY,19,1988,1,RES1,3001 -0103_2103_4,-74.55751316,39.35722162,315 24TH STREET SO,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_2103_5,-74.56315508,39.36062881,311 24TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2103_6,-74.59458641,39.35031388,309 24TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2103_7,-74.581194,39.3665755,307 24TH STREET SO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_2103_8,-74.6352265,39.317731,305 24TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2103_9,-74.54059029,39.35504506,303 24TH STREET SO,BRIGANTINE CITY,15,1955,1,GOV1,3004 -0103_2103_9,-74.4820741,39.34488619,303 24TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2104_1,-74.441648,39.488434,2305 W BRIGANTINE AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2104_10,-74.65249253,39.34120215,204 23RD STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2104_11,-74.63980982,39.36501153,208 23RD STREET SO,BRIGANTINE CITY,16,1937,1,RES1,3001 -0103_2104_11,-74.48199935,39.34088664,208 23RD STREET SO,BRIGANTINE CITY,16,1937,1,RES1,3001 -0103_2104_12,-74.75417727,39.43011503,212 23RD STREET SO,BRIGANTINE CITY,18,2015,1,RES1,3001 -0103_2104_13,-74.70247543,39.49705928,2301 W BRIGANTINE AVE,BRIGANTINE CITY,16,1986,1,GOV1,3004 -0103_2104_14,-74.6667655,39.4626705,2303 W BRIGANTINE AVE,BRIGANTINE CITY,16,1940,1,COM1,3004 -0103_2104_2,-74.502589,39.431336,2307 W BRIGANTINE AVE,BRIGANTINE CITY,17,1950,1,COM4,3004 -0103_2104_3,-74.48739826,39.44251491,213 24TH STREET SO,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_2104_4,-74.7823938,39.42068817,209 24TH STREET SO,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_2104_5,-74.633924,39.31767,205 24TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2104_5,-74.4757384,39.33812736,205 24TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2104_6,-74.6356047,39.36119021,201 24TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2104_6,-74.48360954,39.34144241,201 24TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2104_7,-74.63333311,39.36150614,2304 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2104_8,-74.80535901,39.36350865,2300 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2104_9,-74.63058736,39.35307204,200 23RD STREET SO,BRIGANTINE CITY,15,1954,1,GOV1,3004 -0103_2105_2,-74.50615,39.4926605,2501 OCEAN AVE,BRIGANTINE CITY,18,1969,1,RES1,3001 -0103_2105_3,-74.46130714,39.49146784,2507 OCEAN AVE,BRIGANTINE CITY,17,1920,1,RES1,3001 -0103_2105_4,-74.56359311,39.36535686,2500 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2105_4,-74.47882052,39.34325533,2500 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2106_1,-74.54578071,39.47419507,2405 W BRIGANTINE AVE,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2106_10,-74.5987365,39.3587705,200 24TH STREET SO,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_2106_10,-74.47427765,39.33885394,200 24TH STREET SO,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_2106_11,-74.7591705,39.4316795,204 24TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2106_12,-74.49241769,39.44318627,208 24TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2106_13,-74.50336884,39.42993596,210 24TH STREET SO,BRIGANTINE CITY,17,1925,1,RES1,3001 -0103_2106_14,-74.63027766,39.44062083,214 24TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2106_15,-74.570741,39.479545,2401 W BRIGANTINE AVE,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_2106_2,-74.6075705,39.5020745,211 25TH STREET SO,BRIGANTINE CITY,17,1930,1,RES1,3001 -0103_2106_3.02,-74.68296076,39.44361804,207 25TH STREET SO,BRIGANTINE CITY,17,1927,1,RES1,3001 -0103_2106_4,-74.47105937,39.44561772,203 25TH STREET SO,BRIGANTINE CITY,17,1928,1,RES1,3001 -0103_2106_5,-74.6428505,39.479422,201 25TH STREET SO,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_2106_6,-74.7521355,39.418634,2408 REVERE BLVD,BRIGANTINE CITY,17,2000,1,RES1,3001 -0103_2106_7,-74.57793356,39.3529557,2406 REVERE BLVD,BRIGANTINE CITY,16,1956,1,GOV1,3004 -0103_2106_7,-74.47908658,39.34228561,2406 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2106_8,-74.63431573,39.34735694,2404 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2106_8,-74.47802844,39.33715028,2404 REVERE BLVD,BRIGANTINE CITY,16,1956,1,GOV1,3004 -0103_2106_9,-74.63796364,39.36274131,2400 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2106_9,-74.48366182,39.34151351,2400 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2201_1,-74.628022,39.556181,2319 BAYSHORE AVE,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_2201_3,-74.71184811,39.56540814,2301 BAYSHORE AVE,BRIGANTINE CITY,18,1962,1,RES1,3001 -0103_2201_5,-74.78649975,39.60448398,2225 BAYSHORE AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2201_7,-74.490459,39.427851,2213 BAYSHORE AVE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_2201_7,-74.47998243,39.34531172,2213 BAYSHORE AVE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_2201_8,-74.76594796,39.63715612,2201 BAYSHORE AVE,BRIGANTINE CITY,16,1936,1,RES1,3001 -0103_2202_1,-74.86485049,39.59692034,2119 BAYSHORE AVE,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_2202_4,-74.87317486,39.59664823,2107 BAYSHORE AVE,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_2202_5,-74.79949,39.6386665,2105 BAYSHORE AVE,BRIGANTINE CITY,16,1952,1,RES1,3002 -0103_2202_6,-74.874631,39.6033275,2019 BAYSHORE AVE,BRIGANTINE CITY,20,2017,1,RES1,3001 -0103_2202_8,-74.79884334,39.63530199,2013 BAYSHORE AVE,BRIGANTINE CITY,17,1985,1,GOV1,3004 -0103_2202_9,-74.920844,39.4896805,2001 BAYSHORE AVE,BRIGANTINE CITY,21,2012,1,RES1,3001 -0103_2204_2,-74.88650864,39.5018483,1919 BAYSHORE AVE,BRIGANTINE CITY,18,1933,1,RES1,3001 -0103_2205_1,-74.71710345,39.46309563,2205 REVERE BLVD,BRIGANTINE CITY,16,1951,1,GOV1,3004 -0103_2205_10,-74.7866365,39.5407095,2200 BAYSHORE AVE,BRIGANTINE CITY,18,2014,1,RES1,3001 -0103_2205_11,-74.6945555,39.5879215,102 22ND STREET SO,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_2205_12,-74.6542235,39.5236,104 22ND STREET SO,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_2205_13,-74.58581487,39.32722558,106 22ND STREET SO,BRIGANTINE CITY,17,1951,1,RES1,3001 -0103_2205_14,-74.6340315,39.4303605,108 22ND STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2205_15,-74.61684331,39.50695945,110 22ND STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2205_16,-74.8273275,39.485688,112 22ND STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2205_17,-74.44763942,39.35641665,114 22ND STREET SO,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_2205_18,-74.478829,39.3388025,2201 REVERE BLVD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_2205_2,-74.48020086,39.34043484,115 23RD STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2205_3,-74.47988271,39.34950943,113 23RD STREET SO,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_2205_4,-74.79717679,39.4413733,111 23RD STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2205_5,-74.5329775,39.5122035,109 23RD STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2205_6,-74.638249,39.531464,107 23RD STREET SO,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_2205_7,-74.51499297,39.41199293,105 23RD STREET SO,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_2205_7,-74.47721083,39.34556685,105 23RD STREET SO,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_2205_8,-74.61413952,39.32558966,103 23RD STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2205_9,-74.63659555,39.62351821,2204 BAYSHORE AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2205_9.01,-74.65494862,39.55704835,101 23RD STREET SO,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_2206_1,-74.8519025,39.465185,2105 REVERE BLVD,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2206_10,-74.86647666,39.55941297,100 21ST STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2206_11,-74.70396026,39.59123852,104 21ST STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2206_12,-74.65188267,39.52266644,108 21ST STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2206_13,-74.513598,39.403857,110 21ST STREET SO,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_2206_13,-74.47781313,39.34528286,110 21ST STREET SO,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_2206_14,-74.63713743,39.43341214,112 21ST STREET SO,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_2206_15,-74.6569255,39.5184355,2101 REVERE BLVD,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2206_2,-74.64923866,39.51279549,111 22ND STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2206_3,-74.64211823,39.43326528,109 22ND STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2206_5,-74.67367858,39.51420174,105 22ND STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2206_6,-74.60472822,39.61787452,103 22ND STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2206_7,-74.71433416,39.56256785,101 22ND STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2206_8,-74.776907,39.605551,2104 BAYSHORE AVE,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2206_9,-74.62959516,39.38993747,2100 BAYSHORE AVE,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_2207_1,-74.58344838,39.32845356,2005 REVERE BLVD,BRIGANTINE CITY,17,1953,1,RES1,3001 -0103_2207_11,-74.6452345,39.54903,2001 REVERE BLVD,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_2207_2,-74.599894,39.320458,111 21ST STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2207_3,-74.65881107,39.55250135,109 21ST STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2207_4,-74.69182337,39.57262341,107 21ST STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2207_6,-74.62767641,39.39047319,101 21ST STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2207_7,-74.483777,39.441628,2004 BAYSHORE AVE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_2207_7,-74.47633459,39.34442771,2004 BAYSHORE AVE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_2207_8.01,-74.496396,39.447641,2000 BAYSHORE AVE,BRIGANTINE CITY,17,2010,1,RES1,3001 -0103_2207_8.01,-74.47866267,39.34519399,2000 BAYSHORE AVE,BRIGANTINE CITY,17,2010,1,RES1,3001 -0103_2207_8.02,-74.48771984,39.43378297,100 20TH STREET SO,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_2207_8.02,-74.48103022,39.34472538,100 20TH STREET SO,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_2207_9,-74.62235066,39.3838203,102 20TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2208_1,-74.71779398,39.56850734,1905 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2208_10,-74.7758785,39.6011805,1901 REVERE BLVD,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_2208_2,-74.71686394,39.58041685,107 20TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2208_3,-74.79215728,39.60268737,105 20TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2208_4,-74.51399849,39.43159954,103 20TH STREET SO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_2208_4,-74.47878548,39.34432604,103 20TH STREET SO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_2208_5,-74.78282219,39.61942953,101 20TH STREET SO,BRIGANTINE CITY,16,1956,1,COM3,3004 -0103_2208_5.01,-74.87078909,39.59300585,1904 BAYSHORE AVE,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_2208_6,-74.80299406,39.62932034,1900 BAYSHORE AVE,BRIGANTINE CITY,16,1948,1,RES1,3002 -0103_2208_7,-74.83360766,39.59935904,100 19TH STREET SO,BRIGANTINE CITY,18,2004,1,COM1,3004 -0103_2208_8,-74.48702957,39.43714347,102 19TH STREET SO,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_2208_8,-74.48175616,39.34449682,102 19TH STREET SO,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_2208_9,-74.4973145,39.435237,104 19TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2208_9,-74.47815307,39.34562062,104 19TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2301_2,-74.50735284,39.33703955,401 27TH STREET SO,BRIGANTINE CITY,21,2008,1,RES1,3001 -0103_2301_3,-74.381263,39.3945845,2604 OCEAN AVE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2301_4,-74.36606961,39.40720367,2600 OCEAN AVE,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_2301_5,-74.37752145,39.39559183,400 26TH STREET SO,BRIGANTINE CITY,17,1955,1,RES1,3001 -0103_2302_2,-74.483296,39.3397845,2704 OCEAN AVE,BRIGANTINE CITY,19,2001,1,RES1,3001 -0103_2302_3,-74.49126263,39.33988762,2700 OCEAN AVE,BRIGANTINE CITY,20,2014,1,RES1,3001 -0103_2302_4,-74.47518284,39.33843157,400 27TH STREET SO,BRIGANTINE CITY,20,2000,1,RES1,3001 -0103_2302_5,-74.59032689,39.4160987,404 27TH STREET SO,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_2303_2,-74.9603605,39.512548,407 29TH STREET SO,BRIGANTINE CITY,21,2018,1,RES1,3001 -0103_2303_3,-74.784092,39.655033,401 29TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2303_4,-74.81898724,39.65245419,2804 OCEAN AVE,BRIGANTINE CITY,18,1953,1,RES1,3001 -0103_2303_5,-74.59978163,39.32965636,2800 OCEAN AVE,BRIGANTINE CITY,18,1958,1,RES1,3001 -0103_2303_5,-74.47787324,39.34533145,2800 OCEAN AVE,BRIGANTINE CITY,18,1958,1,RES1,3001 -0103_2303_6,-74.82460032,39.65289445,400 28TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2303_7.01,-74.78156832,39.65975297,402 28TH STREET SO,BRIGANTINE CITY,20,1989,1,RES1,3001 -0103_2304_2.01,-74.60628931,39.37214742,405 30TH STREET SO,BRIGANTINE CITY,20,1989,1,RES1,3001 -0103_2304_2.02,-74.9076445,39.488085,401 30TH STREET SO,BRIGANTINE CITY,19,1958,1,RES1,3001 -0103_2304_3,-74.5218855,39.318431,2906 OCEAN AVE,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2304_4,-74.9503815,39.519842,2904 OCEAN AVE,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_2304_6,-74.95864692,39.5199255,400 29TH STREET SO,BRIGANTINE CITY,20,1990,1,RES1,3001 -0103_2304_7.01,-74.92054772,39.50743256,404 29TH STREET SO,BRIGANTINE CITY,19,1994,1,RES1,3001 -0103_2304_7.02,-74.59910854,39.37883821,408 29TH STREET SO,BRIGANTINE CITY,20,2008,1,GOV1,3004 -0103_2305_1,-74.597703,39.3099,419 31ST STREET SO,BRIGANTINE CITY,18,1985,1,GOV1,3004 -0103_2305_2,-74.81287758,39.63119466,411 31ST STREET SO,BRIGANTINE CITY,17,1945,1,RES1,3001 -0103_2305_3,-74.5764145,39.41519,3010 OCEAN AVE,BRIGANTINE CITY,21,2008,1,GOV1,3004 -0103_2305_4,-74.5107645,39.409211,3004 OCEAN AVE,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_2305_5,-74.82583266,39.63878603,3000 OCEAN AVE,BRIGANTINE CITY,18,1950,1,RES1,3001 -0103_2305_6,-74.6601646,39.36225295,400 30TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_2305_6,-74.48368667,39.3402765,400 30TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_2305_7,-74.583748,39.417698,402 30TH STREET SO,BRIGANTINE CITY,18,1959,1,RES1,3001 -0103_2305_8,-74.54559059,39.43514873,404 30TH STREET SO,BRIGANTINE CITY,21,1988,1,RES1,3001 -0103_2305_9,-74.62708319,39.43318735,408 30TH STREET SO,BRIGANTINE CITY,20,2015,1,RES1,3001 -0103_2306_1,-74.61648734,39.50812383,405 32ND STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2306_2,-74.64414147,39.52864016,403 32ND STREET SO,BRIGANTINE CITY,18,1988,1,RES1,3001 -0103_2306_3,-74.67414847,39.55412437,401 32ND STREET SO,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_2306_4,-74.76907356,39.60732538,3118 OCEAN AVE,BRIGANTINE CITY,18,1989,1,RES1,3001 -0103_2306_5,-74.8766495,39.591159,3112 OCEAN AVE,BRIGANTINE CITY,20,2009,1,RES1,3001 -0103_2306_7,-74.871519,39.5918955,402 31ST STREET SO,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_2306_8,-74.6242455,39.610105,406 31ST STREET SO,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2401_1,-74.50721016,39.44814847,2605 OCEAN AVE,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_2401_10.02,-74.60731096,39.32471284,300 26TH STREET SO,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_2401_11,-74.587367,39.322214,302 26TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2401_12,-74.595295,39.311382,304 26TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2401_13,-74.50162061,39.52246339,312 26TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2401_14,-74.49989734,39.49269193,314 26TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2401_15,-74.4972305,39.4720615,316 26TH STREET SO,BRIGANTINE CITY,17,1955,1,RES1,3001 -0103_2401_16,-74.518318,39.463988,320 26TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2401_2,-74.51909461,39.44639099,321 27TH STREET SO,BRIGANTINE CITY,16,1934,1,RES1,3001 -0103_2401_3,-74.52139614,39.45675855,319 27TH STREET SO,BRIGANTINE CITY,19,2014,1,RES1,3001 -0103_2401_4,-74.467579,39.484355,315 27TH STREET SO,BRIGANTINE CITY,16,1966,1,RES3A,3001 -0103_2401_5,-74.512913,39.4860435,313 27TH STREET SO,BRIGANTINE CITY,18,1934,1,RES1,3001 -0103_2401_6.01,-74.49761896,39.49829971,309 27TH STREET SO,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_2401_7.01,-74.51445754,39.53666466,305 27TH STREET SO,BRIGANTINE CITY,16,1929,1,RES1,3001 -0103_2401_8,-74.59978095,39.3169869,301 27TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2401_9,-74.58794034,39.33033017,2604 W BRIGANTINE AVE,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2402_1,-74.593012,39.360003,2505 W BRIGANTINE AVE,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_2402_10,-74.6022735,39.481571,204 25TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2402_11,-74.5564175,39.4724875,208 25TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2402_12,-74.64327525,39.43568126,212 25TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2402_13,-74.56660409,39.35301792,2501 W BRIGANTINE AVE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_2402_13,-74.47860849,39.34266621,2501 W BRIGANTINE AVE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_2402_14,-74.5517482,39.36543897,2503 W BRIGANTINE AVE,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_2402_14,-74.47915733,39.34322445,2503 W BRIGANTINE AVE,BRIGANTINE CITY,17,1954,1,GOV1,3004 -0103_2402_2,-74.5748717,39.34990804,213 26TH STREET SO,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2402_2,-74.48005662,39.34543911,213 26TH STREET SO,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2402_3,-74.56750264,39.3633438,209 26TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2402_3,-74.47879556,39.34273209,209 26TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2402_4,-74.65877698,39.43310084,205 26TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2402_5,-74.56915269,39.47498204,201 26TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2402_6,-74.60817385,39.50279404,2506 REVERE BLVD,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_2402_7,-74.6358305,39.453014,2504 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2402_8,-74.52492675,39.42903955,2500 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2402_9,-74.68431322,39.44438596,202 25TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_2403_1.01,-74.552162,39.365877,2607 W BRIGANTINE AVE,BRIGANTINE CITY,17,1925,1,RES1,3001 -0103_2403_1.02,-74.556352,39.355997,215 27TH STREET SO,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_2403_10,-74.60391206,39.3539902,208 26TH STREET SO,BRIGANTINE CITY,15,1959,1,RES1,3001 -0103_2403_11,-74.58667318,39.33668802,212 26TH STREET SO,BRIGANTINE CITY,18,1956,1,RES1,3001 -0103_2403_12,-74.56960111,39.36625919,2601 W BRIGANTINE AVE,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_2403_2,-74.571593,39.364368,213 27TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2403_3,-74.57592762,39.35722932,209 27TH STREET SO,BRIGANTINE CITY,18,2011,1,RES1,3001 -0103_2403_4,-74.61408776,39.35190195,205 27TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2403_5,-74.54806345,39.36779566,201 27TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2403_5,-74.48057193,39.34495271,201 27TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2403_6,-74.57956609,39.3348357,2604 REVERE BLVD,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_2403_6,-74.47831033,39.34255952,2604 REVERE BLVD,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_2403_7,-74.60539118,39.43650478,2600 REVERE BLVD,BRIGANTINE CITY,18,1956,1,GOV1,3004 -0103_2403_8,-74.58166682,39.34344207,200 26TH STREET SO,BRIGANTINE CITY,16,2018,1,RES1,3001 -0103_2403_8,-74.4803014,39.34336894,200 26TH STREET SO,BRIGANTINE CITY,16,2018,1,RES1,3001 -0103_2403_9,-74.56401289,39.35707999,204 26TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2403_9,-74.47858632,39.34295654,204 26TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2404_1,-74.6137084,39.3200168,2707 W BRIGANTINE AVE,BRIGANTINE CITY,20,1927,1,RES1,3001 -0103_2404_10,-74.56721136,39.34865516,212 27TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2404_11,-74.60510534,39.331647,2701 W BRIGANTINE AVE,BRIGANTINE CITY,18,1974,1,RES1,3001 -0103_2404_2,-74.572166,39.3425345,209 28TH STREET SO,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_2404_3,-74.56433603,39.34725147,205 28TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2404_4,-74.56137294,39.36250819,203 28TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2404_5,-74.5792505,39.3439815,2704 REVERE BLVD,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_2404_6,-74.61131243,39.32679437,2700 REVERE BLVD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_2404_6,-74.47832609,39.34536926,2700 REVERE BLVD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_2404_7,-74.59186899,39.34994017,200 27TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2404_8,-74.59300931,39.34277236,204 27TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2404_9,-74.572962,39.35133,208 27TH STREET SO,BRIGANTINE CITY,17,1959,1,RES1,3001 -0103_2405_1,-74.3971325,39.3906565,2705 OCEAN AVE,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_2405_10,-74.59591836,39.31305568,2700 W BRIGANTINE AVE,BRIGANTINE CITY,16,1955,1,COM4,3004 -0103_2405_11,-74.4893692,39.49720604,300 27TH STREET SO,BRIGANTINE CITY,15,1954,1,COM9,3004 -0103_2405_12.01,-74.50084997,39.47538426,304 27TH STREET SO,BRIGANTINE CITY,15,1983,1,RES1,3001 -0103_2405_12.02,-74.46317934,39.49272151,308 27TH STREET SO,BRIGANTINE CITY,16,1926,1,RES1,3001 -0103_2405_13,-74.530859,39.455008,310 27TH STREET SO,BRIGANTINE CITY,16,1922,1,RES1,3001 -0103_2405_15,-74.50243081,39.44230496,318 27TH STREET SO,BRIGANTINE CITY,16,1926,1,RES1,3001 -0103_2405_16,-74.4285945,39.3686295,2701 OCEAN AVE,BRIGANTINE CITY,20,2009,1,RES1,3001 -0103_2405_16.01,-74.4628005,39.464135,322 27TH STREET SO,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_2405_3,-74.4909505,39.4428595,317 28TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2405_4,-74.4958285,39.448807,313 28TH STREET SO,BRIGANTINE CITY,16,1920,1,GOV1,3004 -0103_2405_5,-74.51486082,39.44109441,311 28TH STREET SO,BRIGANTINE CITY,17,1954,1,GOV1,3004 -0103_2405_6,-74.50985196,39.4615062,307 28TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2405_7,-74.48675927,39.47799443,305 28TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2405_8,-74.48510732,39.49699605,303 28TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2405_9.01,-74.502407,39.50372,301 28TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2501_1,-74.473505,39.3411785,2805 OCEAN AVE,BRIGANTINE CITY,18,1930,1,RES1,3001 -0103_2501_10,-74.5227835,39.4481665,2806 W BRIGANTINE AVE,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_2501_11,-74.52502638,39.45631433,2804 W BRIGANTINE AVE,BRIGANTINE CITY,15,2018,1,RES1,3001 -0103_2501_12,-74.46751351,39.49321882,2800 W BRIGANTINE AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2501_13,-74.51900805,39.46494305,300 28TH STREET SO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_2501_14,-74.48795768,39.46230919,302 28TH STREET SO,BRIGANTINE CITY,17,1927,1,RES1,3001 -0103_2501_16,-74.5052265,39.446455,306 28TH STREET SO,BRIGANTINE CITY,16,1928,1,RES1,3001 -0103_2501_17,-74.48812396,39.43898596,308 28TH STREET SO,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_2501_18,-74.49946281,39.43495922,310 28TH STREET SO,BRIGANTINE CITY,19,2014,1,RES1,3001 -0103_2501_19,-74.4073495,39.382475,314 28TH STREET SO,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_2501_2,-74.60608948,39.42368965,2807 OCEAN AVE,BRIGANTINE CITY,17,1926,1,RES1,3001 -0103_2501_20,-74.3835635,39.3966,318 28TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_2501_21,-74.49427669,39.34317781,320 28TH STREET SO,BRIGANTINE CITY,20,2014,1,RES1,3001 -0103_2501_22,-74.462191,39.35554767,2801 OCEAN AVE,BRIGANTINE CITY,19,2006,1,RES1,3001 -0103_2501_23,-74.45097184,39.35525349,2803 OCEAN AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2501_3,-74.45081,39.3550755,319 29TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2501_4,-74.49407717,39.33447249,317 29TH STREET SO,BRIGANTINE CITY,20,2015,1,RES1,3001 -0103_2501_5,-74.38114739,39.40079938,313 29TH STREET SO,BRIGANTINE CITY,20,2018,1,RES1,3004 -0103_2501_6.01,-74.4137885,39.3700235,311 29TH STREET SO,BRIGANTINE CITY,19,1987,1,COM5,3004 -0103_2501_7.01,-74.44076,39.370153,307 29TH STREET SO,BRIGANTINE CITY,16,1927,1,RES1,3001 -0103_2501_8.01,-74.46950456,39.45889269,305 29TH STREET SO,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_2501_9,-74.50537832,39.44594377,301 29TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_2502_1,-74.49105892,39.49800726,2805 W BRIGANTINE AVE,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2502_10,-74.58903855,39.32015215,208 28TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2502_11,-74.60711783,39.31712174,212 28TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2502_12,-74.5882215,39.31470922,2801 W BRIGANTINE AVE,BRIGANTINE CITY,19,1956,1,RES1,3001 -0103_2502_2,-74.525151,39.5063645,213 29TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2502_3,-74.5969855,39.311834,209 29TH STREET SO,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_2502_4,-74.590531,39.3234615,205 29TH STREET SO,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2502_5,-74.60544083,39.3233815,201 29TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2502_6,-74.57140687,39.33856516,2804 REVERE BLVD,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_2502_7,-74.56653383,39.35676145,2800 REVERE BLVD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2502_8,-74.574382,39.337848,200 28TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2502_9,-74.60717163,39.31783923,204 28TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2503_1,-74.82028617,39.64748401,2905 OCEAN AVE,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_2503_10,-74.40044254,39.38665181,300 29TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2503_11,-74.3849405,39.395643,304 29TH STREET SO,BRIGANTINE CITY,16,1958,1,RES4,3001 -0103_2503_12,-74.490123,39.35065,308 29TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_2503_13,-74.4476595,39.355072,312 29TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2503_14,-74.62317276,39.41848361,316 29TH STREET SO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_2503_15,-74.58850481,39.41472846,318 29TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2503_16,-74.6162721,39.32233344,2901 OCEAN AVE,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_2503_16,-74.48188924,39.34534733,2901 OCEAN AVE,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_2503_2,-74.58352641,39.33064167,319 30TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_2503_2,-74.47935739,39.34397916,319 30TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_2503_3,-74.6251635,39.3924625,315 30TH STREET SO,BRIGANTINE CITY,15,1936,1,RES1,3001 -0103_2503_4,-74.6000285,39.4336455,313 30TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2503_5,-74.4789815,39.3473725,311 30TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2503_6,-74.5046842,39.33853555,307 30TH STREET SO,BRIGANTINE CITY,17,1955,1,RES1,3001 -0103_2503_7,-74.38519548,39.39744066,303 30TH STREET SO,BRIGANTINE CITY,18,2005,1,GOV1,3004 -0103_2503_8.01,-74.4173241,39.36893284,301 30TH STREET SO,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_2503_8.02,-74.507402,39.43493633,2904 W BRIGANTINE AVE,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_2504_1,-74.51125323,39.45495635,2905 W BRIGANTINE AVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_2504_10,-74.440046,39.515856,206 29TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2504_12,-74.4604155,39.4992135,2901 W BRIGANTINE AVE,BRIGANTINE CITY,16,1954,1,RES3B,3001 -0103_2504_2,-74.47511906,39.48692381,213 30TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2504_3,-74.5059269,39.47808933,209 30TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2504_4,-74.4885533,39.49822023,205 30TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2504_5,-74.528662,39.527619,201 30TH STREET SO,BRIGANTINE CITY,15,1929,1,RES1,3001 -0103_2504_6,-74.59815439,39.31636516,2904 REVERE BLVD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_2504_7,-74.59568483,39.31816516,2900 REVERE BLVD,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2504_8,-74.60001018,39.31347552,202 29TH STREET SO,BRIGANTINE CITY,17,1932,1,COM1,3004 -0103_2504_9,-74.53531659,39.30487714,204 29TH STREET SO,BRIGANTINE CITY,17,1931,1,RES1,3001 -0103_2505_1,-74.509684,39.330672,3005 OCEAN AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2505_10,-74.67523398,39.39018266,313 31ST STREET SO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_2505_11,-74.49086527,39.33886333,3004 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2505_12,-74.371342,39.4005725,3002 W BRIGANTINE AVE,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2505_13,-74.38014345,39.39914131,3000 W BRIGANTINE AVE,BRIGANTINE CITY,18,1962,1,RES1,3001 -0103_2505_14,-74.4619285,39.3589455,300 30TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2505_15,-74.4719715,39.3449875,302 30TH STREET SO,BRIGANTINE CITY,15,1957,1,RES1,3001 -0103_2505_17,-74.6389755,39.399806,308 30TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_2505_18,-74.60444112,39.3249614,312 30TH STREET SO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_2505_18,-74.47867792,39.34396089,312 30TH STREET SO,BRIGANTINE CITY,16,1964,1,RES3B,3001 -0103_2505_19,-74.79734117,39.65291002,316 30TH STREET SO,BRIGANTINE CITY,16,1927,1,RES1,3001 -0103_2505_2,-74.9265847,39.53369292,3015 OCEAN AVE,BRIGANTINE CITY,19,2004,1,RES3A,3001 -0103_2505_21,-74.794075,39.6405715,320 30TH STREET SO,BRIGANTINE CITY,17,2009,1,RES1,3001 -0103_2505_22,-74.90308516,39.538806,3001 OCEAN AVE,BRIGANTINE CITY,21,2017,1,RES1,3001 -0103_2505_3,-74.9389115,39.522238,351 31ST STREET SO,BRIGANTINE CITY,19,2010,1,RES1,3001 -0103_2505_4,-74.7717583,39.66214833,341 31ST STREET SO,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_2505_5,-74.811962,39.6534615,337 31ST STREET SO,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_2505_6,-74.432854,39.366116,333 31ST STREET SO,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_2505_7,-74.61199555,39.32243432,325 31ST STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2505_7,-74.4798592,39.34516598,325 31ST STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2505_8,-74.6382125,39.401521,321 31ST STREET SO,BRIGANTINE CITY,17,1955,1,RES3B,3001 -0103_2505_9,-74.60506014,39.40674475,317 31ST STREET SO,BRIGANTINE CITY,16,1947,1,RES3A,3001 -0103_2506_1,-74.48982615,39.46116747,3005-11 ATL-BRIGANTINE BL,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2506_2,-74.46549268,39.47674398,211 31ST STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2506_3,-74.489633,39.4794085,3004 REVERE BLVD,BRIGANTINE CITY,,0,1,RES3A,3001 -0103_2506_4,-74.500504,39.500264,3000 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2506_5.01,-74.49515037,39.49466129,200 30TH STREET SO,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_2506_6.01,-74.453505,39.5003845,202 30TH STREET SO,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_2506_7.01,-74.457617,39.474216,204 30TH STREET SO,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_2506_8,-74.50796451,39.46205148,208 30TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_2601_1,-74.68346956,39.49528135,1 28TH STREET SO,BRIGANTINE CITY,,1945,1,RES1,3001 -0103_2601_2,-74.7173102,39.39295365,2713 BAYSHORE AVE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_2601_3,-74.81481858,39.3719069,2707 BAYSHORE AVE,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_2601_4,-74.59781558,39.36153089,2703 BAYSHORE AVE,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_2601_4,-74.47594913,39.33831733,2703 BAYSHORE AVE,BRIGANTINE CITY,17,1958,1,RES3A,3001 -0103_2601_5,-74.63397586,39.36572579,2701 BAYSHORE AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2601_5,-74.4821663,39.34109701,2701 BAYSHORE AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2601_6,-74.63722295,39.36188726,2605 BAYSHORE AVE,BRIGANTINE CITY,18,1948,1,RES3B,3001 -0103_2601_6,-74.48276908,39.34129833,2605 BAYSHORE AVE,BRIGANTINE CITY,18,1948,1,RES1,3001 -0103_2602_10,-74.58131316,39.3317298,2401 BAYSHORE AVE,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_2602_2,-74.82124683,39.38520553,2513 BAYSHORE AVE,BRIGANTINE CITY,18,2001,1,GOV1,3004 -0103_2602_3,-74.71485678,39.46932191,2501 BAYSHORE AVE,BRIGANTINE CITY,21,2005,1,RES1,3001 -0103_2602_4,-74.4615805,39.350889,2443 BAYSHORE AVE,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_2602_5,-74.48286233,39.33684651,2429 BAYSHORE AVE,BRIGANTINE CITY,17,1946,1,COM1,3004 -0103_2602_6,-74.7557765,39.453669,2425 BAYSHORE AVE,BRIGANTINE CITY,19,2015,1,COM1,3004 -0103_2602_7,-74.82420668,39.48919021,2419 BAYSHORE AVE,BRIGANTINE CITY,18,1960,1,RES1,3001 -0103_2602_8,-74.539209,39.5355995,2413 BAYSHORE AVE,BRIGANTINE CITY,21,2008,1,RES1,3001 -0103_2603_1,-74.54976949,39.49019016,2605 REVERE BLVD,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_2603_10,-74.694723,39.4839765,106 26TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_2603_11,-74.43328236,39.48627406,108 26TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_2603_12,-74.6916761,39.44989973,2601 REVERE BLVD,BRIGANTINE CITY,19,2006,1,RES1,3001 -0103_2603_2,-74.639298,39.448534,109 27TH STREET SO,BRIGANTINE CITY,17,1928,1,RES1,3001 -0103_2603_3,-74.50564,39.4299525,105 27TH STREET SO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_2603_4,-74.69536644,39.47615477,101 27TH STREET SO,BRIGANTINE CITY,19,2006,1,RES1,3001 -0103_2603_5,-74.59369696,39.36364971,2604 BAYSHORE AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2603_5,-74.47663382,39.34189699,2604 BAYSHORE AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2603_6,-74.640439,39.361466,2600 BAYSHORE AVE,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_2603_6,-74.48271019,39.34121835,2600 BAYSHORE AVE,BRIGANTINE CITY,17,2015,1,RES3A,3001 -0103_2603_7,-74.6300635,39.3652255,100 26TH STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_2603_7,-74.48168848,39.34084217,100 26TH STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_2603_8,-74.59919385,39.36634327,102 26TH STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_2603_8,-74.47492579,39.33851824,102 26TH STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_2603_9,-74.78216901,39.42051084,104 26TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_2604_1,-74.63126905,39.48154465,2505 REVERE BLVD,BRIGANTINE CITY,18,2011,1,RES1,3001 -0103_2604_10,-74.6593915,39.3472045,104 25TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2604_11,-74.6498585,39.3592245,106 25TH STREET SO,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_2604_11,-74.4826562,39.34115672,106 25TH STREET SO,BRIGANTINE CITY,17,1999,1,RES3A,3001 -0103_2604_12,-74.63196534,39.34971201,112 25TH STREET SO,BRIGANTINE CITY,17,1920,1,RES1,3001 -0103_2604_12,-74.47761939,39.33723983,112 25TH STREET SO,BRIGANTINE CITY,17,1920,1,RES1,3001 -0103_2604_13,-74.78893245,39.41948013,2501 REVERE BLVD,BRIGANTINE CITY,18,2005,1,RES3A,3001 -0103_2604_2,-74.75919873,39.43001026,111 26TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_2604_3,-74.63548263,39.31781418,107 26TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2604_3,-74.47638793,39.33840015,107 26TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2604_4,-74.63745765,39.36461189,105 26TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_2604_4,-74.48163247,39.34077144,105 26TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_2604_5,-74.63087706,39.34904563,103 26TH STREET SO,BRIGANTINE CITY,16,1951,1,REL1,3004 -0103_2604_6,-74.7574975,39.305282,2504 BAYSHORE AVE,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_2604_8,-74.545629,39.3757905,100 25TH STREET SO,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_2604_9,-74.6761482,39.34871636,102 25TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2605_1,-74.63822501,39.34060333,2407 REVERE BLVD,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2605_10,-74.79530902,39.46547021,2400 BAYSHORE AVE,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_2605_11,-74.4648865,39.3441063,100 24TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2605_12,-74.745469,39.4457985,104 24TH STREET SO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_2605_13,-74.80217152,39.37901768,106 24TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2605_14,-74.6195786,39.43396545,108 24TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2605_15,-74.53563347,39.38075734,112 24TH STREET SO,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_2605_17,-74.6391985,39.3655285,2405 REVERE BLVD,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2605_2,-74.630319,39.3646635,2409 REVERE BLVD,BRIGANTINE CITY,17,1956,1,RES3A,3001 -0103_2605_2,-74.48222181,39.34116701,2409 REVERE BLVD,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2605_3,-74.62911726,39.36453487,113 25TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2605_5,-74.548825,39.3796755,105 25TH STREET SO,BRIGANTINE CITY,18,1956,1,RES1,3001 -0103_2605_6,-74.820743,39.3895315,101 25TH STREET SO,BRIGANTINE CITY,17,2007,1,RES1,3001 -0103_2605_7,-74.7365395,39.447737,2408 BAYSHORE AVE,BRIGANTINE CITY,17,2004,1,COM1,3004 -0103_2605_8,-74.7326905,39.454492,2406 BAYSHORE AVE,BRIGANTINE CITY,16,1958,1,RES3A,3001 -0103_2605_9,-74.4721385,39.3433325,2404 BAYSHORE AVE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_2606_1,-74.543268,39.3836565,2305 REVERE BLVD,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2606_10,-74.63862481,39.52953225,100 23RD STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2606_11,-74.8431425,39.4813945,104 23RD STREET SO,BRIGANTINE CITY,16,1966,1,COM1,3004 -0103_2606_12,-74.759401,39.448162,108 23RD STREET SO,BRIGANTINE CITY,14,1955,1,RES3A,3001 -0103_2606_13,-74.4719015,39.3452235,110 23RD STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2606_14,-74.461996,39.3485205,114 23RD STREET SO,BRIGANTINE CITY,15,1956,1,RES3A,3001 -0103_2606_15,-74.71428243,39.46994325,116 23RD STREET SO,BRIGANTINE CITY,17,2018,1,RES1,3001 -0103_2606_16,-74.7149833,39.44808869,118 23RD STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2606_17,-74.8187118,39.37815469,2301 REVERE BLVD,BRIGANTINE CITY,17,1956,1,RES3A,3001 -0103_2606_2.01,-74.81987904,39.37630923,115 24TH STREET SO,BRIGANTINE CITY,17,1998,1,COM1,3004 -0103_2606_2.02,-74.7435315,39.452541,113 24TH STREET SO,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_2606_3,-74.71351,39.465545,111 24TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2606_4,-74.47827967,39.339668,107 24TH STREET SO,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_2606_5,-74.48052217,39.34598399,105 24TH STREET SO,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_2606_6,-74.86538563,39.44039523,103 24TH STREET SO,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_2606_7,-74.64107906,39.52872634,101 24TH STREET SO,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_2606_8,-74.63149697,39.43161918,2304 BAYSHORE AVE,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2606_9,-74.6077095,39.321309,2300 BAYSHORE AVE,BRIGANTINE CITY,17,1957,1,RES1,3001 -0103_2701_1,-74.60262953,39.32490766,3119 BAYSHORE AVE,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_2701_2,-74.60867933,39.32503365,3111 BAYSHORE AVE,BRIGANTINE CITY,21,2004,1,RES1,3001 -0103_2701_3,-74.60687339,39.32787554,3107 BAYSHORE AVENUE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_2701_4,-74.5688474,39.35032668,3101 BAYSHORE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2701_9,-74.604587,39.3495015,3001 BAYSHORE AVE,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_2702_1,-74.57145767,39.33932534,2919 BAYSHORE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_2702_1,-74.47943595,39.34566302,2919 BAYSHORE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_2702_2,-74.56446594,39.35648688,2913 BAYSHORE AVE,BRIGANTINE CITY,,1958,1,RES1,3001 -0103_2702_2,-74.47861762,39.34302904,2913 BAYSHORE AVE,BRIGANTINE CITY,,1958,1,RES1,3001 -0103_2702_3,-74.56488349,39.36236858,2907 BAYSHORE AVE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_2702_3,-74.47848842,39.34284431,2907 BAYSHORE AVE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_2702_4,-74.6451221,39.4315973,2901 BAYSHORE AVE,BRIGANTINE CITY,18,1989,1,RES1,3001 -0103_2702_5,-74.60809862,39.43922427,2825 BAYSHORE AVE,BRIGANTINE CITY,18,2000,1,RES3B,3001 -0103_2702_6,-74.6076065,39.4891695,2819 BAYSHORE AVE,BRIGANTINE CITY,19,2008,1,RES3A,3001 -0103_2702_7,-74.64938916,39.45494432,2813 BAYSHORE AVE,BRIGANTINE CITY,19,2002,1,RES3A,3001 -0103_2702_8,-74.49297241,39.42891999,2807 BAYSHORE AVE,BRIGANTINE CITY,17,1966,1,COM1,3004 -0103_2702_9,-74.50341906,39.43071295,2801 BAYSHORE AVE,BRIGANTINE CITY,19,2014,1,RES1,3001 -0103_2703_1,-74.46346864,39.54651219,3005-11 REVERE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2703_2,-74.59292554,39.32475381,121 31ST STREET SO,BRIGANTINE CITY,,0,1,RES1,3002 -0103_2703_4,-74.55477955,39.35839383,3000 BAYSHORE AVE,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2703_5,-74.60927904,39.31855334,100 30TH STREET SO,BRIGANTINE CITY,15,1920,1,RES1,3001 -0103_2703_6,-74.60675182,39.32470201,102 30TH STREET SO,BRIGANTINE CITY,17,1952,1,RES1,3001 -0103_2703_7,-74.5909025,39.322394,104 30TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2703_8,-74.6018307,39.31106457,3001 REVERE BLVD,BRIGANTINE CITY,15,1954,1,RES3A,3001 -0103_2704_1,-74.60104448,39.32275708,2905 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3002 -0103_2704_10,-74.56883654,39.34248998,2903 REVERE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2704_2,-74.56872585,39.34071873,107 30TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2704_3,-74.5505111,39.36204546,105 30TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2704_4,-74.57075364,39.35453012,103 30TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2704_5,-74.5872465,39.3373205,2904 BAYSHORE AVE,BRIGANTINE CITY,16,1957,1,RES1,3002 -0103_2704_7,-74.58392326,39.34184356,100 29TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2704_8,-74.55509092,39.35536369,104 29TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2704_9,-74.56500445,39.35029414,2901 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2705_1,-74.56254244,39.36036018,2805 REVERE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2705_10,-74.60724708,39.32671884,106 28TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2705_10,-74.47814326,39.34540822,106 28TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2705_11,-74.58850736,39.34981075,2801 REVERE BLVD,BRIGANTINE CITY,18,1956,1,RES3A,3001 -0103_2705_2,-74.5918965,39.3509755,107 29TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2705_3,-74.59318423,39.36692542,105 29TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2705_4,-74.56909684,39.340092,103 29TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2705_4,-74.47829051,39.34553724,103 29TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_2705_5,-74.5823276,39.34566084,2804 BAYSHORE AVE,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_2705_5,-74.48018338,39.34321836,2804 BAYSHORE AVE,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_2705_6,-74.57055428,39.44193254,2802 BAYSHORE AVE,BRIGANTINE CITY,16,1925,1,COM1,3004 -0103_2705_7,-74.5514035,39.470954,2800 BAYSHORE AVE,BRIGANTINE CITY,17,1994,1,RES1,3002 -0103_2705_8,-74.571441,39.3624555,102 28TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2705_8,-74.47902356,39.34298392,102 28TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2705_9,-74.55557856,39.35702846,104 28TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2705_9,-74.47824717,39.34246602,104 28TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3002 -0103_2706_1,-74.551497,39.3623455,2705 REVERE BLVD,BRIGANTINE CITY,16,1925,1,RES1,3002 -0103_2706_1,-74.47923978,39.34328214,2705 REVERE BLVD,BRIGANTINE CITY,16,1925,1,RES1,3001 -0103_2706_10,-74.64237109,39.43473714,2703 REVERE BLVD,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_2706_2,-74.5675917,39.36736699,109 28TH STREET SO,BRIGANTINE CITY,16,1926,1,RES1,3001 -0103_2706_2,-74.47869552,39.34306988,109 28TH STREET SO,BRIGANTINE CITY,16,1926,1,RES1,3001 -0103_2706_3,-74.55246977,39.46442334,107 28TH STREET SO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_2706_4,-74.53199076,39.49817476,101 28TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_2706_6,-74.46327058,39.45500984,2700 BAYSHORE AVE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2706_7,-74.69440439,39.44727049,100 27TH STREET SO,BRIGANTINE CITY,16,1956,1,COM1,3004 -0103_2706_8,-74.59325,39.490209,104 27TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_2706_9,-74.535763,39.473593,108 27TH STREET SO,BRIGANTINE CITY,17,1968,1,RES1,3001 -0103_2801_1,-74.57560222,39.41031388,3113 OCEAN AVE,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_2801_11,-74.60960516,39.31830099,3112 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,GOV1,3004 -0103_2801_11,-74.47824427,39.3453162,3112 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,GOV1,3004 -0103_2801_12,-74.59947906,39.4099037,3106 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2801_13,-74.61706824,39.43119954,3100 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2801_14,-74.605283,39.3178695,312 31ST STREET SO,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_2801_14,-74.4773465,39.34423687,312 31ST STREET SO,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_2801_15,-74.44225141,39.3575384,316 31ST STREET SO,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_2801_16,-74.78938907,39.65826041,324 31ST STREET SO,BRIGANTINE CITY,16,1955,1,REL1,3004 -0103_2801_17,-74.7836355,39.65061,328 31ST STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2801_18,-74.76096799,39.63962631,332 31ST STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2801_19,-74.93838497,39.52454532,336 31ST STREET SO,BRIGANTINE CITY,15,1955,1,COM3,3004 -0103_2801_2,-74.50362134,39.4090015,3119 OCEAN AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2801_2,-74.47838367,39.34432478,3119 OCEAN AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2801_20,-74.513974,39.3267755,340 31ST STREET SO,BRIGANTINE CITY,15,1955,1,RES3A,3001 -0103_2801_21,-74.96714789,39.50561839,344 31ST STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2801_22,-74.92414056,39.51051815,348 31ST STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2801_23,-74.61610845,39.3825402,352 31ST STREET SO,BRIGANTINE CITY,19,2014,1,RES3A,3004 -0103_2801_24,-74.59787451,39.3732466,3101 OCEAN AVE,BRIGANTINE CITY,16,1955,1,RES1,3004 -0103_2801_3,-74.51180233,39.4068475,353 32ND STREET SO,BRIGANTINE CITY,18,1960,1,RES1,3001 -0103_2801_4,-74.61801075,39.37382522,347 32ND STREET SO,BRIGANTINE CITY,16,1964,1,RES1,3004 -0103_2801_5,-74.90472646,39.48146572,341 32ND STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2801_7,-74.9582595,39.5358165,325 32ND STREET SO,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_2801_8,-74.788982,39.64189517,321 32ND STREET SO,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_2801_9,-74.78375216,39.66171199,317 32ND STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2802_1,-74.65483326,39.62666795,3213 OCEAN AVE,BRIGANTINE CITY,43,1956,2,RES1,3004 -0103_2802_10,-74.60055206,39.37935969,321 33RD STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2802_11,-74.928748,39.489463,317 33RD STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2802_12,-74.93672653,39.52048218,313 33RD STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2802_13,-74.761987,39.6407895,3218 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2802_14,-74.783818,39.664602,3206 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2802_15,-74.795801,39.639929,3200 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2802_16,-74.94556954,39.52391364,312 32ND STREET SO,BRIGANTINE CITY,15,1959,1,GOV1,3004 -0103_2802_17,-74.95938649,39.51866479,316 32ND STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2802_18,-74.5252411,39.31806947,320 32ND STREET SO,BRIGANTINE CITY,16,1955,1,GOV1,3004 -0103_2802_19,-74.912441,39.53432,324 32ND STREET SO,BRIGANTINE CITY,16,1955,1,GOV1,3004 -0103_2802_2,-74.68177597,39.55617784,3219 OCEAN AVE,BRIGANTINE CITY,20,2010,1,RES1,3001 -0103_2802_20,-74.85287718,39.61709599,328 32ND STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2802_22,-74.50025335,39.41660723,340 32ND STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_2802_22,-74.47791933,39.34539176,340 32ND STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_2802_23,-74.574396,39.421467,344 32ND STREET SO,BRIGANTINE CITY,16,1955,1,GOV1,3004 -0103_2802_24,-74.81819939,39.62361282,348 32ND STREET SO,BRIGANTINE CITY,16,1955,1,GOV1,3004 -0103_2802_25,-74.81643856,39.62455418,352 32ND STREET SO,BRIGANTINE CITY,15,1947,1,RES1,3001 -0103_2802_26,-74.58557592,39.32462568,3201 OCEAN AVE,BRIGANTINE CITY,17,1958,2,RES1,3001 -0103_2802_27,-74.878089,39.593839,3207 OCEAN AVE,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_2802_3,-74.79093451,39.63463173,353 33RD STREET SO,BRIGANTINE CITY,16,1924,1,RES1,3001 -0103_2802_4,-74.59051086,39.53211119,349 33RD STREET SO,BRIGANTINE CITY,18,2017,1,RES3B,3001 -0103_2802_5,-74.63538884,39.42347838,347 33RD STREET SO,BRIGANTINE CITY,16,1955,1,REL1,3004 -0103_2802_6,-74.808231,39.6394745,341 33RD STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_2802_7,-74.5740326,39.42665382,337 33RD STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2802_8,-74.5795075,39.412306,333 33RD STREET SO,BRIGANTINE CITY,17,1955,1,RES1,3001 -0103_2802_9,-74.51404433,39.40502047,329 33RD STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2803_1,-74.71050471,39.50239381,3315 OCEAN AVE,BRIGANTINE CITY,16,1950,2,RES1,3001 -0103_2803_10,-74.60776815,39.31460697,325 34TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_2803_11,-74.62452356,39.43317922,321 34TH STREET SO,BRIGANTINE CITY,15,1929,1,RES1,3001 -0103_2803_12,-74.81003384,39.63413997,317 34TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_2803_15,-74.603294,39.3709685,3312 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2803_17,-74.4980675,39.423146,312 33RD STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2803_18,-74.5034554,39.41221268,316 33RD STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2803_18,-74.47970293,39.34542922,316 33RD STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2803_19,-74.5755215,39.407793,320 33RD STREET SO,BRIGANTINE CITY,18,2014,1,RES1,3001 -0103_2803_20,-74.50622494,39.40901469,324 33RD STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2803_20,-74.477024,39.34424643,324 33RD STREET SO,BRIGANTINE CITY,15,1954,1,GOV1,3004 -0103_2803_21,-74.80181868,39.63636966,328 33RD STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_2803_22,-74.58791892,39.32441611,332 33RD STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2803_23,-74.80858524,39.6148122,336 33RD STREET SO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_2803_24,-74.65265986,39.62444695,344 33RD STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_2803_25,-74.65994795,39.54197168,350 33RD STREET SO,BRIGANTINE CITY,19,2008,1,GOV1,3004 -0103_2803_26,-74.63907437,39.53082056,352 33RD STREET SO,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_2803_27,-74.5474395,39.527172,3303 OCEAN AVE,BRIGANTINE CITY,18,2018,1,RES1,3001 -0103_2803_3,-74.826528,39.4889962,353 34TH STREET SO,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_2803_6,-74.64591035,39.53165754,341 34TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2803_7,-74.70446783,39.56251999,337 34TH STREET SO,BRIGANTINE CITY,15,1960,2,GOV1,3004 -0103_2803_8,-74.66842086,39.62111201,333 34TH STREET SO,BRIGANTINE CITY,16,1954,2,RES1,3001 -0103_2803_9,-74.87132928,39.59675395,331 34TH STREET SO,BRIGANTINE CITY,43,2010,2,RES1,3001 -0103_2804_10,-74.53368816,39.52132953,325 35TH STREET SO,BRIGANTINE CITY,43,1963,2,RES1,3001 -0103_2804_11,-74.651619,39.506612,321 35TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_2804_12,-74.6534765,39.535854,317 35TH STREET SO,BRIGANTINE CITY,45,1956,2,RES1,3001 -0103_2804_14,-74.82797311,39.60646109,301 35TH STREET SO,BRIGANTINE CITY,45,1952,2,RES1,3001 -0103_2804_15,-74.5886825,39.3246875,3416 W BRIGANTINE AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_2804_16,-74.815171,39.638976,3406 W BRIGANTINE AVE,BRIGANTINE CITY,43,1956,2,RES1,3001 -0103_2804_17,-74.57435552,39.42578267,3400 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2804_18,-74.79851534,39.62812931,312 34TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3004 -0103_2804_19,-74.77629666,39.62444823,316 34TH STREET SO,BRIGANTINE CITY,43,1952,2,COM3,3004 -0103_2804_20,-74.64937247,39.62624342,320 34TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_2804_21,-74.68057933,39.56311294,324 34TH STREET SO,BRIGANTINE CITY,15,1947,1,GOV1,3004 -0103_2804_22,-74.65125716,39.52759747,328 34TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_2804_23,-74.54614017,39.540609,332 34TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_2804_24,-74.539376,39.517351,336 34TH STREET SO,BRIGANTINE CITY,18,2006,1,RES1,3004 -0103_2804_27,-74.51159874,39.32525567,348 34TH STREET SO,BRIGANTINE CITY,43,1947,2,COM1,3004 -0103_2804_28,-74.7147525,39.4695465,352 34TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_2804_7,-74.518488,39.320025,337 35TH STREET SO,BRIGANTINE CITY,15,1952,1,IND1,3002 -0103_2804_9,-74.8593755,39.4931185,329 35TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_2805_11,-74.72415279,39.45674416,323 36TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_2805_12,-74.51335,39.3257675,317 36TH STREET SO,BRIGANTINE CITY,45,1956,2,RES1,3001 -0103_2805_13,-74.51000452,39.32711781,315 36TH STREET SO,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_2805_16,-74.6417825,39.5301405,3506 W BRIGANTINE AVE,BRIGANTINE CITY,45,1952,3,RES1,3001 -0103_2805_17,-74.70688109,39.57648622,300 35TH STREET SO,BRIGANTINE CITY,15,1946,1,GOV1,3004 -0103_2805_18,-74.56094892,39.50653815,312 35TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_2805_19,-74.8629315,39.4861645,316 35TH STREET SO,BRIGANTINE CITY,43,1952,2,GOV1,3004 -0103_2805_2,-74.61365429,39.32319019,3519 OCEAN AVE,BRIGANTINE CITY,47,1950,2,GOV1,3004 -0103_2805_21,-74.73132962,39.4602077,328 35TH STREET SO,BRIGANTINE CITY,43,1940,2,GOV1,3004 -0103_2805_23,-74.8272125,39.567235,336 35TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_2805_24,-74.79310034,39.54357304,340 35TH STREET SO,BRIGANTINE CITY,18,2016,1,GOV1,3004 -0103_2805_25,-74.6182,39.43721,344 35TH STREET SO,BRIGANTINE CITY,16,1954,1,GOV1,3004 -0103_2805_26,-74.83450535,39.39685346,348 35TH STREET SO,BRIGANTINE CITY,18,2004,1,GOV1,3004 -0103_2805_27,-74.54347706,39.38236684,352 35TH STREET SO,BRIGANTINE CITY,43,1951,2,GOV1,3004 -0103_2805_28,-74.54403748,39.37568417,356 35TH STREET SO,BRIGANTINE CITY,16,1958,1,GOV1,3004 -0103_2805_29,-74.53678393,39.37335766,3501 OCEAN AVE,BRIGANTINE CITY,20,2009,1,RES1,3001 -0103_2805_3,-74.7662995,39.3483345,355 36TH STREET SO,BRIGANTINE CITY,28,1950,2,RES1,3001 -0103_2805_4,-74.513749,39.4153615,353 36TH STREET SO,BRIGANTINE CITY,28,1950,1,RES1,3001 -0103_2805_6,-74.5693,39.3729455,341 36TH STREET SO,BRIGANTINE CITY,27,1956,2,RES1,3001 -0103_2805_7,-74.54687577,39.47005747,337 36TH STREET SO,BRIGANTINE CITY,27,1956,2,RES1,3001 -0103_2805_8,-74.7877785,39.527281,333 36TH STREET SO,BRIGANTINE CITY,15,1946,1,RES1,3001 -0103_2805_9,-74.82496893,39.54626985,329 36TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_2901_1,-74.4636045,39.4985725,3119 REVERE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2901_2,-74.5141197,39.47170038,115 32ND STREET SO,BRIGANTINE CITY,,0,1,RES3A,3001 -0103_2901_4,-74.5290975,39.531729,3118 BAYSHORE AVE,BRIGANTINE CITY,,2001,1,RES1,3002 -0103_2901_5,-74.5834045,39.3255515,100 31ST STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2901_7,-74.48526773,39.5204414,108 31ST STREET SO,BRIGANTINE CITY,47,1978,4,COM3,3004 -0103_2901_8,-74.49782258,39.49777763,112 31ST STREET SO,BRIGANTINE CITY,47,1978,4,RES1,3001 -0103_2901_9,-74.50901411,39.49336527,3101 REVERE BLVD,BRIGANTINE CITY,,0,1,GOV1,3004 -0103_2902_1,-74.5146265,39.442303,3119 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2902_2,-74.524406,39.446652,3106 REVERE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2902_3,-74.52895287,39.45545616,3100 REVERE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2902_4,-74.51533783,39.4468643,3101 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2902_5,-74.49661115,39.44641328,3107 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,1960,1,RES1,3001 -0103_2903_1,-74.4638675,39.358303,3116 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2903_3,-74.378204,39.396988,3100 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,GOV1,3004 -0103_2904_3,-74.5944772,39.31324471,3201 BAYSHORE AVE,BRIGANTINE CITY,,0,1,GOV1,3004 -0103_2905_1,-74.514333,39.440707,3213 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,2011,1,RES1,3001 -0103_2906_1,-74.60992785,39.31938805,3213 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,GOV1,3004 -0103_2906_1,-74.47722331,39.3451144,3213 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2906_10,-74.502533,39.337636,214 32ND STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2906_11,-74.47830135,39.34594257,3201 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2906_2,-74.57804087,39.33343092,3219 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,GOV1,3004 -0103_2906_2,-74.48195654,39.34431325,3219 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2906_3,-74.5805505,39.429741,241 33RD STREET SO,BRIGANTINE CITY,45,1950,1,RES1,3001 -0103_2906_4,-74.45751735,39.34947033,231 33RD STREET SO,BRIGANTINE CITY,43,1952,3,RES1,3001 -0103_2906_5,-74.4867735,39.336867,227 33RD STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_2906_6.02,-74.487344,39.338486,219 33RD STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2906_7,-74.391912,39.392825,3212-18 ATL-BRIGANTINE BL,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2906_8,-74.39342542,39.39151041,3210 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2906_9,-74.393217,39.3913755,3200 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2908_1,-74.97118513,39.51181525,3313 W BRIGANTINE AVE,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_2908_11,-74.48496283,39.33951451,225 34TH STREET SO,BRIGANTINE CITY,14,1952,1,RES1,3001 -0103_2908_12,-74.465295,39.3585885,217 34TH STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2908_13,-74.37570805,39.39854888,3312 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2908_14,-74.3829495,39.392903,3300 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,1981,1,RES1,3001 -0103_2908_15,-74.4819065,39.3523585,210 33RD STREET SO,BRIGANTINE CITY,45,1930,4,RES1,3001 -0103_2908_17,-74.48234022,39.33960288,218 33RD STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2908_18,-74.59324797,39.43133331,226 33RD STREET SO,BRIGANTINE CITY,,1958,1,GOV1,3004 -0103_2908_19,-74.62874477,39.39246154,230 33RD STREET SO,BRIGANTINE CITY,45,1952,2,RES1,3001 -0103_2908_20,-74.61457404,39.32340634,234 33RD STREET SO,BRIGANTINE CITY,17,1935,1,RES1,3001 -0103_2908_20,-74.47804793,39.34529272,234 33RD STREET SO,BRIGANTINE CITY,17,1935,1,RES1,3001 -0103_2908_21,-74.43335656,39.3673147,240 33RD STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_2908_22,-74.81883483,39.6419995,242 33RD STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_2908_23,-74.78340233,39.67831951,246 33RD STREET SO,BRIGANTINE CITY,15,1950,2,RES1,3001 -0103_2908_3,-74.79256401,39.63958917,257 34TH STREET SO,BRIGANTINE CITY,27,1950,2,RES1,3001 -0103_2908_4,-74.7755395,39.6574555,253 34TH STREET SO,BRIGANTINE CITY,27,1950,2,RES1,3001 -0103_2908_5,-74.81530223,39.65400246,249 34TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_2908_6,-74.7369796,39.72008486,245 34TH STREET SO,BRIGANTINE CITY,43,1950,2,GOV1,3004 -0103_2908_7,-74.6050475,39.320561,241 34TH STREET SO,BRIGANTINE CITY,14,1950,1,RES1,3001 -0103_2908_7,-74.47874211,39.34426104,241 34TH STREET SO,BRIGANTINE CITY,14,1950,1,RES1,3001 -0103_2908_8,-74.59832878,39.33111446,237 34TH STREET SO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_2908_8,-74.47738663,39.34532625,237 34TH STREET SO,BRIGANTINE CITY,15,1953,1,RES3A,3001 -0103_2908_9,-74.6386225,39.399269,233 34TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_2910_1,-74.41811145,39.36908712,ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3001_1,-74.52662769,39.47069509,3613 OCEAN AVE,BRIGANTINE CITY,47,1940,2,RES1,3001 -0103_3001_10,-74.8212999,39.40257685,315 37TH STREET SO,BRIGANTINE CITY,45,1954,2,COM1,3004 -0103_3001_11,-74.7169585,39.448617,311 37TH STREET SO,BRIGANTINE CITY,14,1954,1,RES1,3001 -0103_3001_12,-74.826223,39.5695685,301 37TH STREET SO,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_3001_13,-74.707765,39.6385135,3612 W BRIGANTINE AVE,BRIGANTINE CITY,16,1964,1,GOV1,3004 -0103_3001_14,-74.756403,39.4532115,3606 W BRIGANTINE AVE,BRIGANTINE CITY,16,1957,1,GOV1,3004 -0103_3001_15,-74.52441119,39.31973883,300 36TH STREET SO,BRIGANTINE CITY,43,1954,2,GOV1,3004 -0103_3001_18,-74.5419335,39.4595905,324 36TH STREET SO,BRIGANTINE CITY,47,1960,2,COM1,3004 -0103_3001_2,-74.5230055,39.527607,347 37TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_3001_20,-74.5474745,39.3704065,334 36TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3001_21,-74.501275,39.419345,338 36TH STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_3001_22,-74.827118,39.366743,342 36TH STREET SO,BRIGANTINE CITY,43,1958,3,RES1,3001 -0103_3001_23,-74.60874685,39.32348807,348 36TH STREET SO,BRIGANTINE CITY,45,1954,2,GOV1,3004 -0103_3001_24,-74.585931,39.3220755,352 36TH STREET SO,BRIGANTINE CITY,16,1954,1,GOV1,3004 -0103_3001_26,-74.615713,39.429955,3601 OCEAN AVE,BRIGANTINE CITY,17,1966,1,COM1,3004 -0103_3001_3.01,-74.5652855,39.3585395,344 36TH STREET SO,BRIGANTINE CITY,43,1984,2,GOV1,3004 -0103_3001_3.02,-74.5868925,39.320099,343 37TH STREET SO,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_3001_4,-74.60562073,39.3306961,339 37TH STREET SO,BRIGANTINE CITY,43,1954,1,RES1,3001 -0103_3001_5,-74.63133655,39.35986039,335 37TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_3001_6,-74.5354771,39.37335163,331 37TH STREET SO,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_3001_7,-74.4934065,39.4349965,327 37TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3001_8,-74.54326466,39.37380997,323 37TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3001_9,-74.5598095,39.372483,319 37TH STREET SO,BRIGANTINE CITY,47,1985,2,RES1,3001 -0103_3002_1,-74.70745225,39.42628031,3713 OCEAN AVE,BRIGANTINE CITY,17,1952,1,RES1,3001 -0103_3002_10,-74.60057961,39.31799633,315 38TH STREET SO,BRIGANTINE CITY,43,1956,2,COM5,3004 -0103_3002_11,-74.6456142,39.36797177,311 38TH STREET SO,BRIGANTINE CITY,47,1956,4,RES1,3001 -0103_3002_13,-74.53605566,39.37758248,3706 W BRIGANTINE AVE,BRIGANTINE CITY,43,1958,2,RES1,3001 -0103_3002_15,-74.54022459,39.3716758,310 37TH STREET SO,BRIGANTINE CITY,43,1954,2,RES3A,3001 -0103_3002_16,-74.520976,39.41858283,314 37TH STREET SO,BRIGANTINE CITY,15,1948,1,GOV1,3004 -0103_3002_17,-74.7563105,39.358319,318 37TH STREET SO,BRIGANTINE CITY,16,1952,2,RES1,3001 -0103_3002_18,-74.552429,39.3605895,326 37TH STREET SO,BRIGANTINE CITY,47,1960,4,RES1,3002 -0103_3002_19,-74.5911935,39.325636,330 37TH ST SO,BRIGANTINE CITY,47,1984,2,RES1,3001 -0103_3002_2,-74.64849754,39.45625348,3719 OCEAN AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3002_20,-74.4876535,39.524791,334 37TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_3002_21,-74.48963079,39.49374366,338 37TH STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_3002_22,-74.59931518,39.43421205,342 37TH STREET SO,BRIGANTINE CITY,20,2004,1,GOV1,3004 -0103_3002_23,-74.455217,39.4920445,346 37TH STREET SO,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_3002_24,-74.64303849,39.43216512,350 37TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3002_25,-74.49000288,39.45998857,3701 OCEAN AVE,BRIGANTINE CITY,21,2015,1,RES1,3001 -0103_3002_26,-74.53538708,39.39764687,3707 OCEAN AVE,BRIGANTINE CITY,43,1950,2,GOV1,3004 -0103_3002_4,-74.495701,39.460707,343 38TH STREET SO,BRIGANTINE CITY,18,2015,1,RES1,3001 -0103_3002_5,-74.66580529,39.41806944,339 38TH STREET SO,BRIGANTINE CITY,47,1952,2,RES1,3001 -0103_3002_6,-74.45273269,39.4871555,335 38TH STREET SO,BRIGANTINE CITY,20,2005,1,GOV1,3004 -0103_3002_9,-74.58634051,39.32562533,319 38TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3004 -0103_3003_1,-74.5089855,39.427517,3813 OCEAN AVE,BRIGANTINE CITY,20,2004,1,GOV1,3004 -0103_3003_10,-74.5338995,39.3895575,323 39TH STREET SO,BRIGANTINE CITY,17,1928,1,GOV1,3004 -0103_3003_12,-74.49837478,39.45696685,315 39TH STREET SO,BRIGANTINE CITY,47,1950,2,RES1,3001 -0103_3003_13,-74.5903706,39.37919859,311 39TH STREET SO,BRIGANTINE CITY,43,1954,2,GOV1,3004 -0103_3003_15,-74.465703,39.4877205,3812 W BRIGANTINE AVE,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_3003_16,-74.4605287,39.54674153,3806 W BRIGANTINE AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_3003_17,-74.59019552,39.33116816,3800 W BRIGANTINE AVE,BRIGANTINE CITY,45,1958,4,RES1,3001 -0103_3003_18,-74.4971745,39.501722,310 38TH STREET SO,BRIGANTINE CITY,19,2006,1,RES1,3001 -0103_3003_2,-74.499443,39.410317,3819 OCEAN AVE,BRIGANTINE CITY,43,1950,2,GOV1,3004 -0103_3003_20,-74.46089473,39.48960503,318 38TH STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_3003_23,-74.5856235,39.375559,330 38TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_3003_24,-74.52341695,39.45789375,336 38TH STREET SO,BRIGANTINE CITY,17,1952,1,GOV1,3004 -0103_3003_25,-74.7357925,39.432311,338 38TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_3003_26,-74.67129334,39.46191469,342 38TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_3003_3,-74.56038491,39.36166668,351 39TH STREET SO,BRIGANTINE CITY,45,1954,3,GOV1,3004 -0103_3003_4,-74.57543367,39.35655946,347 39TH STREET SO,BRIGANTINE CITY,17,2000,1,GOV1,3004 -0103_3003_6,-74.36756061,39.40320516,339 39TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_3003_6,-74.47847008,39.34447323,339 39TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_3003_7,-74.379853,39.417417,335 39TH STREET SO,BRIGANTINE CITY,43,1948,2,GOV1,3004 -0103_3003_7,-74.48028328,39.34510155,335 39TH STREET SO,BRIGANTINE CITY,43,1948,2,RES1,3001 -0103_3003_8,-74.6314335,39.4813985,331 39TH STREET SO,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_3003_9,-74.79047942,39.41814133,327 39TH STREET SO,BRIGANTINE CITY,14,1952,1,GOV1,3004 -0103_3004_10,-74.60861053,39.36471202,315 40TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3004_11,-74.364092,39.418346,311 40TH STREET SO,BRIGANTINE CITY,45,1954,2,RES1,3001 -0103_3004_11,-74.48217692,39.3450256,311 40TH STREET SO,BRIGANTINE CITY,45,1954,2,GOV1,3004 -0103_3004_12,-74.54644857,39.37557075,301 40TH STREET SO,BRIGANTINE CITY,45,1954,2,RES1,3001 -0103_3004_12,-74.48528147,39.34098402,301 40TH STREET SO,BRIGANTINE CITY,45,1954,2,RES1,3001 -0103_3004_13,-74.71693291,39.38157277,3912 W BRIGANTINE AVE,BRIGANTINE CITY,43,1954,2,RES1,3004 -0103_3004_14,-74.545249,39.3890165,3906 W BRIGANTINE AVE,BRIGANTINE CITY,16,1952,1,GOV1,3004 -0103_3004_15,-74.520882,39.446684,3900 W BRIGANTINE AVE,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_3004_16,-74.75512072,39.43302738,310 39TH STREET SO,BRIGANTINE CITY,14,1952,1,GOV1,3004 -0103_3004_17,-74.630848,39.4809595,314 39TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3004_18,-74.378866,39.414916,320 39TH STREET SO,BRIGANTINE CITY,15,1946,1,RES1,3001 -0103_3004_18,-74.47933536,39.34376853,320 39TH STREET SO,BRIGANTINE CITY,15,1946,1,RES1,3001 -0103_3004_19,-74.36304262,39.4152768,322 39TH STREET SO,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_3004_19,-74.48003177,39.3442757,322 39TH STREET SO,BRIGANTINE CITY,16,1940,1,GOV1,3004 -0103_3004_20,-74.64979569,39.32894694,326 39TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_3004_21,-74.58715775,39.3530821,332 39TH STREET SO,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_3004_22,-74.56594717,39.36214911,336 39TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3004_23,-74.490773,39.4342875,338 39TH STREET SO,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_3004_24,-74.50953278,39.40667465,342 39TH STREET SO,BRIGANTINE CITY,45,1952,2,RES1,3001 -0103_3004_3,-74.361966,39.4119475,343 40TH STREET SO,BRIGANTINE CITY,16,1940,1,RES1,3001 -0103_3004_4,-74.52482058,39.38442631,339 40TH STREET SO,BRIGANTINE CITY,16,1941,1,GOV1,3004 -0103_3004_5,-74.52829806,39.39995769,335 40TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3004_6,-74.51172356,39.40718531,331 40TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_3004_7,-74.498166,39.4345935,329 40TH STREET SO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_3004_8,-74.560043,39.3598855,323 40TH STREET SO,BRIGANTINE CITY,16,1954,1,GOV1,3004 -0103_3004_9,-74.59139602,39.35657516,319 40TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3005_10,-74.56382,39.4091045,335 41ST STREET SO,BRIGANTINE CITY,43,1964,2,GOV1,3004 -0103_3005_13,-74.40044154,39.38970416,323 41ST STREET SO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_3005_14,-74.38032931,39.41708858,319 41ST STREET SO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_3005_15,-74.51200168,39.40216703,315 41ST STREET S0,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_3005_17,-74.49419425,39.43275874,4010 W BRIGANTINE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_3005_18,-74.59081233,39.33616499,4006 W BRIGANTINE AVE,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_3005_20,-74.53098542,39.4045248,314 40TH STREET SO,BRIGANTINE CITY,43,1935,2,RES1,3001 -0103_3005_21,-74.52160266,39.39762949,318 40TH STREET SO,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_3005_23,-74.36888785,39.41414923,326 40TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_3005_24,-74.42326916,39.3724429,330 40TH STREET SO,BRIGANTINE CITY,19,2011,1,RES1,3001 -0103_3005_25,-74.38342679,39.39915171,334 40TH STREET SO,BRIGANTINE CITY,45,1954,2,RES1,3001 -0103_3005_26,-74.48902,39.34922883,338 40TH STREET SO,BRIGANTINE CITY,45,1997,2,RES1,3001 -0103_3005_27,-74.6606778,39.35839159,342 40TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_3005_29,-74.5180689,39.40043518,4007 OCEAN AVE,BRIGANTINE CITY,21,2004,1,RES1,3001 -0103_3005_7,-74.62966079,39.36180988,4013 OCEAN AVE,BRIGANTINE CITY,47,1981,2,GOV1,3004 -0103_3005_8,-74.50255294,39.40997868,343 41ST STREET SO,BRIGANTINE CITY,43,1964,2,GOV1,3004 -0103_3005_9,-74.59780634,39.37822991,339 41ST STREET SO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_3006_1,-74.42113687,39.37202824,343 42ND STREET SO,BRIGANTINE CITY,47,1977,2,GOV1,3004 -0103_3006_10,-74.50967806,39.33673415,4118 W BRIGANTINE AVE,BRIGANTINE CITY,47,2009,2,RES1,3001 -0103_3006_11,-74.3662665,39.409563,4106 W BRIGANTINE AVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3006_13,-74.48744517,39.34793393,314 41ST STREET SO,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3006_14,-74.6318555,39.3635365,318 41ST STREET SO,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3006_15,-74.60876523,39.38081189,322 41ST STREET SO,BRIGANTINE CITY,45,1977,2,RES1,3001 -0103_3006_16,-74.50307903,39.4189438,326 41ST STREET SO,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3006_17,-74.51016745,39.40077846,330 41ST STREET SO,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3006_18,-74.635947,39.30845833,334 41ST STREET SO,BRIGANTINE CITY,47,1977,2,RES1,3001 -0103_3006_19,-74.44414356,39.35540169,338 41ST STREET SO,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3006_2,-74.46605754,39.34561306,339 42ND STREET SO,BRIGANTINE CITY,15,1977,1,RES1,3001 -0103_3006_20,-74.5310415,39.3838715,342 41ST STREET SO,BRIGANTINE CITY,43,1977,2,COM4,3004 -0103_3006_3,-74.4463155,39.371692,335 42ND STREET SO,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3006_4,-74.45139289,39.35773832,331 42ND STREET SO,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3006_6,-74.52650615,39.38627766,323 42ND STREET SO,BRIGANTINE CITY,43,1979,2,RES1,3001 -0103_3006_7,-74.520633,39.397752,319 42ND STREET SO,BRIGANTINE CITY,47,1977,2,RES1,3001 -0103_3006_8,-74.59842975,39.38046054,315 42ND STREET SO,BRIGANTINE CITY,47,1977,2,RES1,3001 -0103_301_1,-74.675888,39.4527555,800 E BRIGANTINE AVE,BRIGANTINE CITY,20,2013,1,RES1,3001 -0103_302_1,-74.54837394,39.40494515,801 E BRIGANTINE AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_302_10,-74.637959,39.5218135,224 QUAY BLVD,BRIGANTINE CITY,19,2006,1,RES1,3001 -0103_302_12,-74.87841423,39.46268966,218 9TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_302_13,-74.76150403,39.44494633,222 9TH STREET NO,BRIGANTINE CITY,43,1948,2,RES1,3001 -0103_302_2,-74.66754824,39.35912294,235 8TH STREET NO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_302_3,-74.58337832,39.40288109,229 8TH STREET NO,BRIGANTINE CITY,19,2005,1,RES1,3001 -0103_302_4,-74.7531459,39.44558564,223 8TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_302_6,-74.644095,39.530765,200 QUAY BLVD,BRIGANTINE CITY,43,1952,2,GOV1,3004 -0103_302_7,-74.6397635,39.5327375,208 QUAY BLVD,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_302_9,-74.64092449,39.53312442,220 QUAY BLVD,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_304_1,-74.77490977,39.60717724,801 E BEACH AVE,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_304_10,-74.52768551,39.38675766,100 9TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_304_12,-74.63592671,39.46257484,104 9TH STREET NO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_304_13,-74.37280313,39.41806574,106 9TH STREET NO,BRIGANTINE CITY,14,1950,1,RES1,3001 -0103_304_14,-74.54899763,39.37975237,108 9TH STREET NO,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_304_15,-74.362124,39.4103425,110 9TH STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_304_16,-74.9473115,39.527893,112 9TH STREET NO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_304_19,-74.792871,39.6338675,803 E BEACH AVE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_304_2,-74.9377885,39.4823735,115 8TH STREET NO,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_304_3,-74.94828716,39.52430902,111 8TH STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_304_4,-74.56418091,39.37287094,107 8TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_304_5,-74.36714215,39.41905374,103 8TH STREET NO,BRIGANTINE CITY,45,1976,2,RES1,3001 -0103_304_7,-74.52605632,39.38339091,800 E EVANS BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_304_8,-74.50230715,39.42691051,802 E EVANS BLVD,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_304_9,-74.523511,39.3888915,806 E EVANS BLVD,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_304_9,-74.47743809,39.34473369,806 E EVANS BLVD,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_306_1,-74.61276733,39.43697297,701 E BRIGANTINE AVE,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_306_10,-74.71063437,39.47374243,702 E BEACH AVE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_306_12,-74.58992053,39.50620424,706 E BEACH AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_306_13,-74.71097146,39.50301416,200 8TH STREET NO,BRIGANTINE CITY,43,1947,2,GOV1,3004 -0103_306_17,-74.61557097,39.37812962,210 8TH STREET NO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_306_18,-74.811839,39.411885,212 8TH STREET NO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_306_2,-74.6453368,39.44883899,213 7TH STREET NO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_306_3,-74.62369834,39.49046603,211 7TH STREET NO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_306_4,-74.81512,39.3988285,209 7TH STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_306_6,-74.5584405,39.4140775,205 7TH STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_306_7,-74.648568,39.356317,203 7TH STREET NO,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_306_8,-74.666277,39.358684,201 7TH STREET NO,BRIGANTINE CITY,19,2005,1,RES1,3001 -0103_307_1,-74.6261435,39.5435635,713 E BEACH AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_307_2,-74.69956546,39.50661171,707 E BEACH AVE,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_307_3,-74.6368064,39.52941415,701 E BEACH AVE,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_308_1,-74.761509,39.636848,121 QUAY BLVD,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_308_10,-74.87071015,39.5992468,602 E EVANS BLVD,BRIGANTINE CITY,16,2014,1,RES1,3001 -0103_308_11,-74.949387,39.500025,604 E EVANS BLVD,BRIGANTINE CITY,15,1959,1,RES1,3001 -0103_308_12,-74.9582135,39.5191405,606 E EVANS BLVD,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_308_13,-74.941671,39.517142,100 HEALD RD,BRIGANTINE CITY,45,1972,2,RES1,3001 -0103_308_14,-74.92725162,39.51845771,102 HEALD RD,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_308_15,-74.93011967,39.51887049,104 HEALD RD,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_308_17,-74.9138645,39.4811715,108 8TH STREET NO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_308_18,-74.87625844,39.60365552,110 8TH STREET NO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_308_2,-74.78054783,39.62733442,113 QUAY BLVD,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_308_5,-74.8398511,39.5972999,107 QUAY BLVD,BRIGANTINE CITY,43,1974,2,RES1,3001 -0103_308_7,-74.87745719,39.59503601,103 QUAY BLVD,BRIGANTINE CITY,43,1968,2,RES1,3001 -0103_308_9,-74.77919708,39.62066483,600 E EVANS BLVD,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_3101_10,-74.81056752,39.65114413,229 35TH STREET SO,BRIGANTINE CITY,45,1952,2,RES1,3001 -0103_3101_11,-74.43094931,39.36601779,227 35TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_3101_12.01,-74.60867348,39.32367867,223 35TH STREET SO,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_3101_12.01,-74.47768859,39.34509827,223 35TH STREET SO,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_3101_13,-74.60218747,39.40866483,215 35TH STREET SO,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_3101_14,-74.6757056,39.37363369,211 35TH STREET SO,BRIGANTINE CITY,15,1947,1,RES1,3001 -0103_3101_15,-74.45166323,39.3564156,3418 BAYSHORE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3101_18,-74.45641167,39.34990199,210 34TH STREET SO,BRIGANTINE CITY,43,1962,2,RES1,3001 -0103_3101_19,-74.58694588,39.42203032,216 34TH STREET SO,BRIGANTINE CITY,17,2010,1,RES1,3001 -0103_3101_2,-74.83019885,39.62307081,267 35TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3101_20,-74.63386161,39.3931711,220 34TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3101_21,-74.600212,39.317684,226 34TH STREET SO,BRIGANTINE CITY,17,2015,1,GOV1,3004 -0103_3101_21,-74.48011777,39.34438823,226 34TH STREET SO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_3101_23,-74.80625433,39.64401399,234 34TH STREET SO,BRIGANTINE CITY,45,1952,2,RES1,3001 -0103_3101_24,-74.7711837,39.66293204,240 34TH STREET SO,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_3101_25,-74.77651162,39.64392944,244 34TH STREET SO,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_3101_26,-74.94092372,39.52677968,250 34TH STREET SO,BRIGANTINE CITY,16,1947,1,COM1,3004 -0103_3101_27,-74.5139865,39.3278215,256 34TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3101_28,-74.93286551,39.50849226,3401 W BRIGANTINE AVE,BRIGANTINE CITY,45,1950,3,RES1,3001 -0103_3101_29,-74.92522171,39.48828952,3407 W BRIGANTINE AVE,BRIGANTINE CITY,45,1952,3,RES1,3001 -0103_3101_3,-74.60199232,39.37846598,263 35TH STREET SO,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_3101_4,-74.92494174,39.50469117,259 35TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3101_5,-74.94925685,39.52084078,255 35TH STREET SO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_3101_7,-74.936285,39.531831,245 35TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3101_9,-74.7920924,39.66467757,235 35TH STREET SO,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_3102_10,-74.50945,39.3285295,231 36TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3102_12,-74.89441401,39.5422048,223 36TH STREET SO,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_3102_13,-74.7803975,39.65421,219 36TH STREET SO,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_3102_14,-74.79215645,39.66605166,215 36TH STREET SO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_3102_15,-74.81927779,39.65396503,211 36TH STREET SO,BRIGANTINE CITY,,1947,1,RES1,3001 -0103_3102_16,-74.61472822,39.32525481,3512 BAYSHORE AVE,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_3102_16,-74.4797459,39.34548766,3512 BAYSHORE AVE,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_3102_17,-74.58750372,39.42281914,3500 BAYSHORE AVE,BRIGANTINE CITY,14,1947,1,RES1,3001 -0103_3102_18,-74.62774212,39.39313082,206 35TH STREET SO,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_3102_19,-74.60512748,39.32005868,210 35TH STREET SO,BRIGANTINE CITY,35,1947,1,RES1,3001 -0103_3102_19,-74.47798086,39.34431433,210 35TH STREET SO,BRIGANTINE CITY,35,1947,1,RES1,3001 -0103_3102_2,-74.87670857,39.59743184,3519 W BRIGANTINE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_3102_20,-74.79797202,39.66303483,214 35TH STREET SO,BRIGANTINE CITY,47,1984,2,RES1,3001 -0103_3102_21,-74.79766892,39.65115265,218 35TH STREET SO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_3102_23,-74.78978274,39.64301834,226 35TH STREET SO,BRIGANTINE CITY,18,2015,1,GOV1,3004 -0103_3102_25,-74.45865479,39.34992588,238 35TH STREET SO,BRIGANTINE CITY,14,1947,1,RES1,3001 -0103_3102_26,-74.92726678,39.50821232,242 35TH STREET SO,BRIGANTINE CITY,29,1947,2,RES1,3003 -0103_3102_27,-74.93801017,39.48178869,246 35TH STREET SO,BRIGANTINE CITY,29,1947,2,RES1,3001 -0103_3102_28,-74.59971648,39.37998489,250 35TH STREET SO,BRIGANTINE CITY,14,1947,1,RES1,3001 -0103_3102_29,-74.49089779,39.42065149,254 35TH STREET SO,BRIGANTINE CITY,14,1948,1,RES1,3001 -0103_3102_3,-74.80145456,39.63657143,263 36TH STREET SO,BRIGANTINE CITY,45,1964,2,COM8,3004 -0103_3102_30,-74.50215694,39.41449474,262 35TH STREET SO,BRIGANTINE CITY,14,1947,1,RES1,3001 -0103_3102_30,-74.47852317,39.34505174,262 35TH STREET SO,BRIGANTINE CITY,14,1947,1,RES1,3001 -0103_3102_5,-74.57234592,39.4278151,255 36TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3102_6,-74.51360071,39.40314245,249 36TH STREET SO,BRIGANTINE CITY,45,1950,2,RES1,3001 -0103_3102_7,-74.61874396,39.37135129,243 36TH STREET SO,BRIGANTINE CITY,45,1952,3,RES1,3001 -0103_3102_8,-74.85334066,39.61568767,239 36TH STREET SO,BRIGANTINE CITY,43,1964,2,RES1,3001 -0103_3102_9,-74.91703455,39.53377134,235 36TH STREET SO,BRIGANTINE CITY,43,1947,2,RES1,3001 -0103_3103_1,-74.488248,39.3381505,3648 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3103_11,-74.49846584,39.33542152,3600 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3103_23,-74.63529958,39.38876779,3605 BAYSHORE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3103_23.01,-74.5956645,39.4339625,3607 BAYSHORE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3103_3,-74.49000034,39.335841,3628-40 ATL-BRIGANTINE BL,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3103_8,-74.49900102,39.33798305,3620 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3104_1,-74.50108316,39.44346649,3645 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3104_4,-74.49080163,39.43742476,3633 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_3104_5,-74.50329446,39.43627623,3625 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_311_10,-74.53752126,39.40805707,604 E BEACH AVE,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_311_11,-74.63162447,39.36409352,606 E BEACH AVE,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_311_12,-74.84512099,39.42654033,200 7TH STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_311_13,-74.760455,39.431639,202 7TH STREET NO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_311_14,-74.67835699,39.44718684,204 7TH STREET NO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_311_15,-74.60352179,39.50035619,206 7TH STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_311_16,-74.5561155,39.476148,208 7TH STREET NO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_311_17,-74.63576404,39.38451687,210 7TH STREET NO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_311_3,-74.58072893,39.42365479,211 6TH STREET NO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_311_4,-74.6402285,39.3826735,209 6TH STREET NO,BRIGANTINE CITY,47,1955,2,RES1,3001 -0103_311_5,-74.5995745,39.4337,207 6TH STREET NO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_311_6,-74.548443,39.4741395,205 6TH STREET NO,BRIGANTINE CITY,15,1959,1,COM1,3004 -0103_311_7,-74.55312105,39.50191814,203 6TH STREET NO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_311_8,-74.65762202,39.44881595,201 6TH STREET NO,BRIGANTINE CITY,43,1951,2,RES1,3001 -0103_311_9,-74.83816885,39.41607096,600 E BEACH AVE,BRIGANTINE CITY,15,1951,1,GOV1,3004 -0103_312_1,-74.653312,39.352158,601 E BEACH AVE,BRIGANTINE CITY,16,1945,1,RES1,3001 -0103_312_10,-74.6964275,39.5940955,106 QUAY BLVD,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_312_12,-74.57438638,39.5288565,102 7TH STREET NO,BRIGANTINE CITY,47,1990,2,RES1,3001 -0103_312_14,-74.716315,39.479138,607 E BEACH AVE,BRIGANTINE CITY,19,2008,1,GOV1,3004 -0103_312_15,-74.59690721,39.40791805,605 E BEACH AVE,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_312_16,-74.6667715,39.357496,603 E BEACH AVE,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_312_2,-74.5889115,39.4156415,109 6TH STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_312_3,-74.712864,39.472515,107 6TH STREET NO,BRIGANTINE CITY,47,1981,2,RES1,3001 -0103_312_4,-74.83272717,39.48248684,105 6TH STREET NO,BRIGANTINE CITY,47,1983,2,RES1,3001 -0103_312_5,-74.5628769,39.52474438,103 6TH STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_312_6,-74.6474495,39.5230385,101 6TH STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_312_7,-74.82051462,39.53541371,100 QUAY BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_312_8,-74.82366217,39.52803883,102 QUAY BLVD,BRIGANTINE CITY,43,1953,2,COM1,3004 -0103_312_9,-74.65798196,39.62844483,104 QUAY BLVD,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_3201_1,-74.8608215,39.445266,3619 W BRIGANTINE AVE,BRIGANTINE CITY,43,1962,2,RES1,3001 -0103_3201_10,-74.79674,39.63240066,237 37TH STREET SO,BRIGANTINE CITY,29,1949,2,RES1,3001 -0103_3201_11,-74.554336,39.4270115,233 37TH STREET SO,BRIGANTINE CITY,45,1961,2,RES1,3001 -0103_3201_12,-74.57725258,39.41735551,229 37TH STREET SO,BRIGANTINE CITY,17,2013,1,RES1,3001 -0103_3201_13,-74.5017725,39.411696,225 37TH STREET SO,BRIGANTINE CITY,28,1937,2,GOV1,3004 -0103_3201_13,-74.48178493,39.34519671,225 37TH STREET SO,BRIGANTINE CITY,28,1937,2,RES1,3001 -0103_3201_14,-74.49605143,39.4267869,221 37TH STREET SO,BRIGANTINE CITY,28,1937,2,RES1,3001 -0103_3201_15,-74.6002985,39.3805485,217 37TH STREET SO,BRIGANTINE CITY,43,1948,2,RES1,3001 -0103_3201_16,-74.8939255,39.471773,213 37TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_3201_17,-74.88861651,39.50548833,209 37TH STREET SO,BRIGANTINE CITY,14,1946,1,RES1,3001 -0103_3201_18,-74.51158324,39.32813898,3618 BAYSHORE AVE,BRIGANTINE CITY,43,1958,2,RES1,3001 -0103_3201_19,-74.95048093,39.51613175,3612 BAYSHORE AVE,BRIGANTINE CITY,45,1955,2,RES1,3001 -0103_3201_2,-74.548244,39.505609,269 37TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_3201_20,-74.78481572,39.64432267,3606 BAYSHORE AVE,BRIGANTINE CITY,43,1953,3,RES1,3001 -0103_3201_22,-74.97917874,39.51176009,210 36TH STREET SO,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_3201_23,-74.9361245,39.5228215,214 36TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3201_26.01,-74.84364865,39.62255055,226 36TH STREET SO,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_3201_26.02,-74.60338969,39.36887885,230 36TH STREET SO,BRIGANTINE CITY,29,1933,2,COM1,3004 -0103_3201_3,-74.57136755,39.5291464,267 37TH STREET SO,BRIGANTINE CITY,29,1925,2,RES1,3001 -0103_3201_30,-74.57388,39.4267125,244 36TH STREET SO,BRIGANTINE CITY,47,1997,2,RES1,3001 -0103_3201_32,-74.6169505,39.3126415,252 36TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_3201_33,-74.8445295,39.6029,256 36TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3201_34,-74.6362065,39.6241515,260 36TH STREET SO,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_3201_35,-74.624361,39.5441345,264 36TH STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_3201_36,-74.6238545,39.514611,3601 W BRIGANTINE AVE,BRIGANTINE CITY,15,1940,1,RES1,3001 -0103_3201_4,-74.62134152,39.51017249,265 37TH STREET SO,BRIGANTINE CITY,29,1925,2,RES1,3001 -0103_3201_5,-74.66058417,39.53681247,261 37TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_3201_6,-74.69086795,39.59754919,255 37TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_3201_7,-74.75557922,39.63529246,251 37TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_3201_8,-74.61905652,39.52480567,245 37TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_3201_9,-74.62390754,39.41976783,241 37TH STREET SO,BRIGANTINE CITY,29,1949,2,RES1,3001 -0103_3202_1,-74.82597936,39.54584382,3713 W BRIGANTINE AVE,BRIGANTINE CITY,16,1950,1,RES1,3004 -0103_3202_10,-74.641518,39.527129,239 38TH STREET SO,BRIGANTINE CITY,16,1955,1,GOV1,3004 -0103_3202_12,-74.654806,39.6257085,227 38TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_3202_13,-74.86125952,39.59567411,221 38TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3202_14,-74.61648464,39.31073989,215 38TH STREET SO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_3202_15,-74.802131,39.6378225,209 38TH STREET SO,BRIGANTINE CITY,15,1985,1,RES1,3001 -0103_3202_16,-74.50008168,39.41439202,203 38TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_3202_17,-74.5891545,39.41625,3712 BAYSHORE AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3202_18,-74.59850921,39.371502,3700 BAYSHORE AVE,BRIGANTINE CITY,15,1965,1,RES1,3001 -0103_3202_19,-74.51545683,39.41080518,202 37TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3202_2,-74.7160285,39.448575,271-273 38TH STREET SO,BRIGANTINE CITY,43,1947,2,RES1,3001 -0103_3202_20,-74.50393801,39.40745916,206 37TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_3202_20,-74.47968212,39.34429283,206 37TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_3202_21,-74.57371898,39.4264587,214 37TH STREET SO,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_3202_22,-74.81407448,39.63583367,220 37TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_3202_23,-74.63151423,39.42095339,224 37TH STREET SO,BRIGANTINE CITY,17,1954,2,RES1,3001 -0103_3202_24,-74.7966175,39.6306085,228 37TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3202_25,-74.77424295,39.61608034,232 37TH STREET SO,BRIGANTINE CITY,15,1940,1,RES1,3001 -0103_3202_27,-74.6439605,39.5288585,246 37TH STREET SO,BRIGANTINE CITY,15,1943,1,RES1,3001 -0103_3202_28,-74.572977,39.543195,250 37TH STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_3202_29,-74.556917,39.5084605,254 37TH STREET SO,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_3202_3,-74.7396515,39.5931265,269 38TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_3202_31,-74.511471,39.32859,266 37TH STREET SO,BRIGANTINE CITY,17,1949,1,RES1,3001 -0103_3202_32,-74.78781945,39.46049758,3701 W BRIGANTINE AVE,BRIGANTINE CITY,43,1957,2,RES1,3001 -0103_3202_33,-74.75049441,39.44581103,3707 W BRIGANTINE AVE,BRIGANTINE CITY,47,1950,2,RES1,3001 -0103_3202_4,-74.748493,39.4454705,265 38TH STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_3202_5,-74.71351667,39.47363206,261 38TH STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_3202_6,-74.51438071,39.32119382,257 38TH STREET SO,BRIGANTINE CITY,43,1945,2,RES1,3001 -0103_3202_7,-74.85808235,39.44628827,255 38TH STREET SO,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_3202_8,-74.868701,39.48918633,251 38TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3203_1,-74.61362159,39.32166183,3813 W BRIGANTINE AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_3203_10,-74.70722711,39.47388024,239 39TH STREET SO,BRIGANTINE CITY,43,1949,2,RES1,3001 -0103_3203_11,-74.52364947,39.31976883,233 39TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3203_12,-74.825803,39.474772,227 39TH STREET SO,BRIGANTINE CITY,45,1975,2,RES1,3001 -0103_3203_13,-74.53415581,39.52098568,221 39TH STREET SO,BRIGANTINE CITY,43,1949,2,RES1,3001 -0103_3203_14,-74.54130806,39.55943031,215 39TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_3203_15,-74.65088675,39.53286064,209 39TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3203_16,-74.59728942,39.58686627,203 39TH STREET SO,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_3203_19,-74.880774,39.593048,202 38TH STREET SO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_3203_2,-74.64847364,39.3572902,283 39TH STREET SO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_3203_20,-74.69148406,39.63739529,208 38TH STREET SO,BRIGANTINE CITY,14,1953,1,RES1,3001 -0103_3203_21,-74.6927845,39.5608975,214 38TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3203_22,-74.64169248,39.52584034,220 38TH STREET SO,BRIGANTINE CITY,14,1949,1,RES1,3001 -0103_3203_23,-74.61589716,39.50699599,226 38TH STREET SO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_3203_24,-74.55291085,39.50427394,232 38TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3203_25,-74.87054036,39.45608606,238 38TH STREET SO,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_3203_26,-74.51995943,39.31946371,244 38TH STREET SO,BRIGANTINE CITY,43,1949,2,RES1,3001 -0103_3203_28,-74.71797733,39.44712224,254 38TH STREET SO,BRIGANTINE CITY,43,1978,3,RES1,3001 -0103_3203_32,-74.560915,39.375225,272 38TH STREET SO,BRIGANTINE CITY,43,1974,2,RES1,3004 -0103_3203_33,-74.54392998,39.37237743,278 38TH STREET SO,BRIGANTINE CITY,43,1938,2,RES1,3001 -0103_3203_34,-74.50877908,39.41942045,3801 W BRIGANTINE AVE,BRIGANTINE CITY,47,1955,3,RES1,3001 -0103_3203_5,-74.79810554,39.36872136,267 39TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3203_6,-74.59260593,39.4490438,263 39TH STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3203_7,-74.7095506,39.57152286,257 39TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3203_8,-74.861462,39.5644,251 39TH STREET SO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_3203_9,-74.746877,39.4468825,245 39TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_3301_1,-74.724236,39.455975,411 33RD STREET SO,BRIGANTINE CITY,47,1978,2,REL1,3004 -0103_3301_3,-74.82151297,39.46489642,403 33RD STREET SO,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_3301_4,-74.88027383,39.49541729,3212 OCEAN AVE,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_3301_5,-74.64476661,39.53046636,3200 OCEAN AVE,BRIGANTINE CITY,49,2015,2,RES1,3001 -0103_3301_6,-74.55431938,39.53045676,402 32ND STREET SO,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_3301_7,-74.8710075,39.492579,406 32ND STREET SO,BRIGANTINE CITY,43,1968,2,RES1,3001 -0103_3301_8,-74.77874586,39.4980248,410 32ND STREET SO,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_3302_1,-74.55136004,39.37378883,411 34TH STREET SO,BRIGANTINE CITY,20,2011,1,RES1,3001 -0103_3306_2,-74.3731565,39.4173635,3700 OCEAN AVE,BRIGANTINE CITY,49,2001,2,RES1,3001 -0103_3306_2,-74.47710171,39.34496899,3700 OCEAN AVE,BRIGANTINE CITY,49,2001,2,RES1,3001 -0103_3401_10,-74.47973712,39.33715867,4217 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1964,2,RES1,3001 -0103_3401_11,-74.47794892,39.34323233,4213 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1962,3,RES1,3001 -0103_3401_12,-74.46259707,39.35883417,4209 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1948,1,GOV1,3004 -0103_3401_13,-74.46603805,39.35732137,4205 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_3401_14,-74.48842217,39.33610799,4201 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_3401_2,-74.423783,39.366609,4249 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_3401_3,-74.5998305,39.320073,4245 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_3401_3,-74.47983843,39.34450071,4245 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_3401_4,-74.61442099,39.31917964,4241 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2005,1,COM1,3004 -0103_3401_4,-74.47688844,39.34516689,4241 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2005,1,GOV1,3004 -0103_3401_6,-74.58848134,39.41276983,4233 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3401_8,-74.63853478,39.4096344,4225 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_3401_9,-74.479475,39.3408205,4221 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,45,1955,2,RES1,3001 -0103_3402_1,-74.49691444,39.3369172,4177 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_3402_10,-74.42036446,39.37118382,4141 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_3402_12,-74.420303,39.3710305,4133 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1956,1,RES1,3001 -0103_3402_13,-74.41358298,39.36972108,4129 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_3402_14,-74.41718222,39.36930063,4125 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_3402_15,-74.418802,39.3690065,4121 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3402_16,-74.39968884,39.38428125,4117 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1972,4,RES1,3001 -0103_3402_2,-74.50331849,39.33922166,4173 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,2018,1,RES1,3001 -0103_3402_3,-74.50200091,39.33580967,4169 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,45,1954,2,RES1,3001 -0103_3402_9,-74.38702867,39.39437647,4145 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_3404_12,-74.60239565,39.4211386,4116 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_3404_13,-74.609947,39.422117,4112 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,2004,1,RES1,3001 -0103_3404_14,-74.61854321,39.43315593,4108 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,2002,1,RES1,3001 -0103_3404_15,-74.61678438,39.4296627,4104 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,2003,1,RES1,3001 -0103_3404_2,-74.6824241,39.37607799,4156 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,2003,1,RES1,3001 -0103_3404_5,-74.61055733,39.41592043,4144 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,47,1983,3,RES1,3001 -0103_3404_6,-74.583931,39.432344,4140 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_3502.01_1.01,-74.55777698,39.47839813,309 DOLPHIN DR,BRIGANTINE CITY,19,1997,1,RES3A,3001 -0103_3502.01_1.02,-74.83465884,39.63244547,307 DOLPHIN DR,BRIGANTINE CITY,19,1997,1,GOV1,3004 -0103_3502.01_1.03,-74.80868556,39.62838065,305 DOLPHIN DR,BRIGANTINE CITY,19,1997,1,RES1,3001 -0103_3502.01_1.04,-74.55664678,39.47584543,300 DOLPHIN DRIVE,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_3502.01_1.05,-74.79300044,39.63325469,302 DOLPHIN DRIVE,BRIGANTINE CITY,17,2001,1,EDU1,3004 -0103_3502.01_1.06,-74.76093034,39.63116433,304 DOLPHIN DRIVE,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_3502.01_1.06,-74.44064041,39.35918715,304 DOLPHIN DRIVE,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_3502.01_1.07,-74.63709177,39.42980085,306 DOLPHIN DRIVE,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_3502.01_1.08,-74.87593392,39.57282485,308 RAINBOW DRIVE,BRIGANTINE CITY,18,2002,1,GOV1,3004 -0103_3502.01_1.09,-74.5473065,39.4701455,310 RAINBOW DRIVE,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_3502.01_1.10,-74.80771965,39.62983748,4512 W BRIGANTINE AVE,BRIGANTINE CITY,16,2004,1,RES1,3001 -0103_3502_7,-74.50299649,39.33148233,314 44TH STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_3502_9,-74.79302784,39.66426051,322 44TH STREET SO,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_3503_10,-74.5693405,39.4763725,311 44TH STREET SO,BRIGANTINE CITY,47,1978,2,RES1,3001 -0103_3503_5,-74.5097105,39.3278145,310 43RD STREET SO,BRIGANTINE CITY,19,2011,1,RES1,3001 -0103_3503_5.01,-74.51934,39.319969,314 43RD STREET SO,BRIGANTINE CITY,47,1974,2,RES1,3001 -0103_3503_8,-74.50252667,39.33096699,319 44TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3503_9,-74.64051563,39.37981862,315 44TH STREET SO,BRIGANTINE CITY,17,2017,1,RES1,3004 -0103_3503_9,-74.50789926,39.32500705,315 44TH STREET SO,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_3504_11,-74.64625257,39.45129079,331 43RD STREET SO,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_3504_3,-74.451266,39.3561265,310 42ND STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_3504_4,-74.5310745,39.3760925,314 42ND STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_3504_5,-74.47062235,39.34467647,318 42ND STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_3504_7,-74.51627842,39.32403333,326 42ND STREET SO,BRIGANTINE CITY,43,1950,3,RES1,3001 -0103_3504_9,-74.65562176,39.39478417,339 43RD STREET SO,BRIGANTINE CITY,16,1956,1,GOV1,3004 -0103_3504_9,-74.51763345,39.32520942,339 43RD STREET SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_3601_1,-74.45311983,39.47728801,3913 W BRIGANTINE AVE,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_3601_10,-74.52168017,39.40406011,261 40TH STREET SO,BRIGANTINE CITY,43,1945,1,RES1,3001 -0103_3601_11,-74.49647411,39.43256732,257 40TH STREET SO,BRIGANTINE CITY,43,1947,2,RES1,3001 -0103_3601_12,-74.5398585,39.3828695,253 40TH STREET SO,BRIGANTINE CITY,45,1950,2,RES1,3001 -0103_3601_13,-74.55860715,39.37127355,249 40TH STREET SO,BRIGANTINE CITY,43,1969,2,RES1,3001 -0103_3601_14,-74.81746059,39.40369829,245 40TH STREET SO,BRIGANTINE CITY,43,1950,2,RES3A,3001 -0103_3601_15,-74.5584075,39.4756585,241 40TH STREET SO,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_3601_16,-74.799938,39.5302815,237 40TH STREET SO,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_3601_17,-74.71132196,39.57802268,233 40TH STREET SO,BRIGANTINE CITY,16,1941,1,RES1,3001 -0103_3601_18,-74.7249127,39.45756504,227 40TH STREET SO,BRIGANTINE CITY,15,1929,1,RES1,3001 -0103_3601_19,-74.513885,39.3267355,223 40TH STREET SO,BRIGANTINE CITY,43,1947,3,RES1,3001 -0103_3601_2,-74.51782303,39.46785484,3919 W BRIGANTINE AVE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_3601_23,-74.54539933,39.52456386,206 39TH STREET SO,BRIGANTINE CITY,47,1955,2,RES1,3001 -0103_3601_24,-74.54532483,39.50838285,210 39TH STREET SO,BRIGANTINE CITY,43,1955,3,RES1,3001 -0103_3601_25,-74.80672029,39.48946207,214 39TH STREET SO,BRIGANTINE CITY,43,1970,2,GOV1,3004 -0103_3601_27,-74.5126605,39.32420433,222 39TH STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_3601_28,-74.71463653,39.46504884,226 39TH STREET SO,BRIGANTINE CITY,16,1923,1,RES1,3001 -0103_3601_29,-74.72359268,39.45711407,228 39TH STREET SO,BRIGANTINE CITY,16,1923,1,RES1,3001 -0103_3601_30,-74.7628995,39.6097335,230 39TH STREET SO,BRIGANTINE CITY,45,1962,2,RES1,3001 -0103_3601_31,-74.7191345,39.5723455,234 39TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3601_32,-74.81927714,39.52527418,238 39TH STREET SO,BRIGANTINE CITY,14,1950,1,RES1,3001 -0103_3601_33,-74.5578545,39.47551,242 39TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3601_34,-74.8271785,39.4113355,246 39TH STREET SO,BRIGANTINE CITY,17,2010,1,RES1,3001 -0103_3601_35,-74.5607615,39.370302,250 39TH STREET SO,BRIGANTINE CITY,14,1960,1,RES1,3001 -0103_3601_36,-74.5379785,39.382046,254 39TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3601_37,-74.497869,39.4324145,258 39TH STREET SO,BRIGANTINE CITY,14,1950,1,RES1,3001 -0103_3601_38,-74.51443082,39.41138946,262 39TH STREET SO,BRIGANTINE CITY,43,1935,2,RES1,3001 -0103_3601_39,-74.763549,39.3080765,266 39TH STREET SO,BRIGANTINE CITY,16,1953,1,GOV1,3004 -0103_3601_4,-74.4883995,39.478337,285 40TH STREET SO,BRIGANTINE CITY,43,1953,1,RES1,3001 -0103_3601_40,-74.57296516,39.33779431,270 39TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_3601_41,-74.60469116,39.32220303,274 39TH STREET SO,BRIGANTINE CITY,45,1960,2,RES1,3001 -0103_3601_44,-74.636051,39.382062,3901 W BRIGANTINE AVE,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3601_5,-74.48806255,39.51958871,281 40TH STREET SO,BRIGANTINE CITY,17,1952,1,RES1,3001 -0103_3601_6,-74.602789,39.31309,277 40TH STREET SO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_3601_7,-74.60195312,39.32475022,273 40TH STREET SO,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_3601_8,-74.6125965,39.32635683,269 40TH STREET SO,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_3601_9,-74.64227327,39.36043983,265 40TH STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_3602_10,-74.53066556,39.51151749,266 40TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3602_11,-74.584366,39.323064,262 40TH STREET SO,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_3602_12,-74.60369694,39.31803081,258 40TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3602_13,-74.5528085,39.362477,254 40TH STREET SO,BRIGANTINE CITY,16,1952,2,RES1,3001 -0103_3602_15,-74.536513,39.3724275,242 40TH STREET SO,BRIGANTINE CITY,19,2008,1,GOV1,3004 -0103_3602_16,-74.5373023,39.37751409,238 40TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3602_17,-74.757897,39.429642,234 40TH STREET SO,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_3602_18,-74.537486,39.4618245,230 40TH STREET SO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_3602_19,-74.72181136,39.44459679,226 40TH STREET SO,BRIGANTINE CITY,15,1956,1,GOV1,3004 -0103_3602_2,-74.44882776,39.37121654,4013 W BRIGANTINE AVE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_3602_2,-74.47772855,39.34516004,4013 W BRIGANTINE AVE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_3602_20,-74.807237,39.5524295,222 40TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_3602_21,-74.7120335,39.584253,218 40TH STREET SO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_3602_22,-74.7501866,39.4504978,214 40TH STREET SO,BRIGANTINE CITY,18,2004,1,COM1,3004 -0103_3602_23,-74.75138411,39.45124132,210 40TH STREET SO,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_3602_24,-74.8396795,39.439349,4000 BAYSHORE AVE,BRIGANTINE CITY,47,1984,3,RES1,3001 -0103_3602_25,-74.51158961,39.32214183,4006 BAYSHORE AVE,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_3602_3,-74.68465048,39.50036534,4007 W BRIGANTINE AVE,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_3602_4,-74.51850229,39.4574733,4001 W BRIGANTINE AVE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_3602_5.02,-74.4892025,39.4608005,286 40TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_3602_6,-74.6429092,39.43242157,282 40TH STREET SO,BRIGANTINE CITY,17,2008,1,RES1,3001 -0103_3602_7,-74.444108,39.494907,278 40TH STREET SO,BRIGANTINE CITY,16,1950,1,COM7,3004 -0103_3602_8,-74.61815695,39.42449567,274 40TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3602_9,-74.51269025,39.4860899,270 40TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_3701_1,-74.484096,39.336264,3840 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,1950,1,RES1,3001 -0103_3701_3,-74.47087614,39.34497052,3838 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3701_6,-74.46604307,39.34316768,3820 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3701_8,-74.48108776,39.34994629,3810 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3702_1,-74.4621605,39.3577415,3728 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,1985,1,GOV1,3004 -0103_3702_4,-74.4593025,39.354224,3700 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3703_10,-74.53971265,39.51410557,6 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_11,-74.87988433,39.48355396,4 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_12,-74.806454,39.4891315,2 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_14,-74.71286636,39.46542636,4201 BAYSHORE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3703_2,-74.79735038,39.62216617,21 MARC LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_3703_3,-74.87723139,39.59393451,20 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_4,-74.85353414,39.59133207,18 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_5,-74.78443216,39.60803303,16 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_6,-74.684609,39.5576015,14 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_7,-74.619643,39.509677,12 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_8,-74.60648792,39.50493186,10 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3703_9,-74.565756,39.5079055,8 MARC LANE,BRIGANTINE CITY,33,1984,1,RES1,3001 -0103_3704_1,-74.5976255,39.409613,111 38TH STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3704_2,-74.61353666,39.41188631,115 38TH STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3705_1,-74.48887158,39.43023403,3849 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1930,1,COM1,3004 -0103_3705_11,-74.52481128,39.42854597,3805 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3705_13,-74.47225778,39.44467707,3801 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1952,1,RES1,3001 -0103_3705_14,-74.46762934,39.45784801,3737 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_3705_15,-74.484995,39.439382,3733 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_3705_16,-74.4813385,39.437152,3729 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_3705_17,-74.47435812,39.44720486,3725 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1965,1,RES1,3001 -0103_3705_18,-74.45971858,39.45342234,3721 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_3705_19,-74.45024311,39.4650158,3717 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,47,1925,3,RES1,3001 -0103_3705_2,-74.503217,39.435443,3845 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,2019,1,RES1,3001 -0103_3705_4,-74.50345075,39.43222117,3837 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_3705_5,-74.499348,39.4309035,3833 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,1953,1,RES1,3001 -0103_3705_7,-74.5160555,39.432607,3825 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1944,1,IND1,3004 -0103_3705_9,-74.51478144,39.43235029,3813-17 ATL-BRIGANTINE BL,BRIGANTINE CITY,45,1970,4,RES1,3001 -0103_3801_1,-74.40229028,39.38127604,4029 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,47,1974,2,RES1,3001 -0103_3801_10,-74.40467453,39.38564489,3939 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_3801_11,-74.363608,39.410728,3935 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,47,1956,2,RES1,3004 -0103_3801_12,-74.3644179,39.41049226,3931 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1958,2,RES1,3001 -0103_3801_13,-74.36413033,39.4097885,3925 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_3801_15,-74.366287,39.406268,3915 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,20,2012,1,RES1,3001 -0103_3801_16,-74.37387467,39.40941402,3911 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_3801_17,-74.37274603,39.40729967,3907 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1949,1,RES1,3001 -0103_3801_2,-74.42290314,39.37661792,4027 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1956,2,RES1,3001 -0103_3801_3,-74.42178064,39.37307726,4025 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_3801_7,-74.4279025,39.3709545,4005 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1950,1,RES3A,3001 -0103_3801_8,-74.42952491,39.37758734,4001 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,1952,1,RES3A,3001 -0103_3801_9,-74.40131582,39.38689284,3943 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,47,1997,2,RES3A,3001 -0103_3802_1,-74.46490489,39.3470092,4000-12 ATL-BRIGANTINE BL,BRIGANTINE CITY,,0,1,RES3A,3001 -0103_3803_1,-74.48430533,39.34134301,3932-44 ATL-BRIGANTINE BL,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3803_9,-74.48394506,39.33897534,3900 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,1986,1,RES1,3001 -0103_3804_1,-74.64963077,39.39693943,4200 HARBOR BEACH BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3804_3,-74.84098332,39.47810936,4326 HARBOR BEACH BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3804_4,-74.71479545,39.57614269,4330 HARBOR BEACH BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3901_10,-74.4837975,39.34446,144 44TH STREET SO,BRIGANTINE CITY,43,1968,2,RES1,3001 -0103_3901_11,-74.613795,39.363162,142 44TH STREET SO,BRIGANTINE CITY,47,1968,2,RES1,3001 -0103_3901_12,-74.51415981,39.39875238,140 44TH STREET SO,BRIGANTINE CITY,47,1969,2,RES1,3001 -0103_3901_14,-74.61891457,39.38005657,136 44TH STREET SO,BRIGANTINE CITY,43,1970,2,RES1,3001 -0103_3901_21,-74.65088167,39.45686227,120 44TH STREET SO,BRIGANTINE CITY,47,1979,3,RES1,3001 -0103_3901_6,-74.455959,39.3534785,4301 W BRIGANTINE AVE,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_3902_1,-74.5132526,39.32702167,126 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_10,-74.37632517,39.3992205,108 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_11,-74.37602628,39.39707835,106 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_12,-74.39022473,39.39163253,104 45TH STREET SO,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_3902_13,-74.38450783,39.39744452,102 45TH STREET SO,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_3902_14,-74.50184273,39.33563915,100 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_15,-74.36598,39.4165365,4414 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_16,-74.50398245,39.41681436,4412 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_17,-74.5885855,39.35153419,4410 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_18,-74.45334673,39.3722273,4408 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_18,-74.47949775,39.34352673,4408 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_19,-74.541489,39.3895415,4406 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_3902_2,-74.85050162,39.43150955,124 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_20,-74.59144245,39.3770027,4404 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_3902_21,-74.50727133,39.49436899,4402 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_3902_22,-74.60453613,39.32684708,4400 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_3902_23,-74.60537043,39.33181067,101 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_24,-74.5295615,39.499812,103 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_25,-74.529524,39.4559,105 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_26,-74.55520903,39.39415314,107 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_27,-74.7692045,39.383838,109 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_28,-74.36945093,39.4130403,111 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_28,-74.48154606,39.34515561,111 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_29,-74.63863991,39.34296047,3 44TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_3,-74.519006,39.3224505,122 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_30,-74.51604039,39.41259525,5 44TH COVE,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_3902_31,-74.5122505,39.3985065,6 44TH COVE,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_3902_32,-74.51456044,39.39844011,8 44TH COVE,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_3902_33,-74.50331477,39.45416981,113 44TH STREET SO,BRIGANTINE CITY,18,2006,1,GOV1,3004 -0103_3902_34,-74.52087023,39.39836615,115 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_35,-74.5230985,39.384543,117 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_36,-74.4229675,39.37475461,119 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_37,-74.3859395,39.3932665,121 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_3902_38,-74.64790565,39.35183283,123 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_39,-74.524914,39.4458535,125 44TH STREET SO,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_3902_4,-74.48647852,39.34671317,120 45TH STREET SO,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_3902_40,-74.51713152,39.39595532,127 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_41,-74.61473278,39.36363328,129 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_42,-74.52307845,39.38829854,131 44TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_43,-74.48303438,39.34676374,135 44TH STREET SO,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_3902_44,-74.4033935,39.383385,139 44TH STREET SO,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_3902_46,-74.82306442,39.37986281,4401 W BRIGANTINE AVE,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_3902_47,-74.5094996,39.33084066,4407 W BRIGANTINE AVE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_3902_48,-74.62289088,39.45945917,4419 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_3902_6,-74.627534,39.357068,116 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_7,-74.50571451,39.40513083,114 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_3902_8,-74.60107982,39.38573553,112 45TH STREET SO,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_3902_9,-74.50569919,39.33450287,110 45TH STREET SO,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_4001_1,-74.5971723,39.36266302,4516 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_4001_10,-74.64007925,39.32971847,103 45TH STREET SO,BRIGANTINE CITY,15,1968,1,RES3A,3001 -0103_4001_11,-74.64156532,39.32404955,105 45TH STREET SO,BRIGANTINE CITY,15,1968,1,RES3A,3001 -0103_4001_12,-74.634042,39.3175575,107 45TH STREET SO,BRIGANTINE CITY,15,1963,1,RES1,3001 -0103_4001_13,-74.4851058,39.35213196,109 45TH STREET SO,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_4001_14,-74.449463,39.3548945,111 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_15,-74.52956833,39.38468395,113 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES3B,3001 -0103_4001_16,-74.472344,39.342488,3 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_17,-74.5198535,39.3182345,5 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_18,-74.47400102,39.33914718,7 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_19,-74.47697018,39.34120346,9 45TH COVE,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_4001_2,-74.73254044,39.64178224,4514 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_20,-74.52049821,39.32087377,11 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_21,-74.5619065,39.4863655,12 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_22,-74.6192455,39.38787351,14 45TH COVE,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_4001_22,-74.51158608,39.32339049,14 45TH COVE,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_4001_23,-74.63996909,39.39029058,16 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_23,-74.51521579,39.32406748,16 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_24,-74.58162607,39.47442424,18 45TH COVE,BRIGANTINE CITY,14,1968,1,RES1,3001 -0103_4001_25,-74.5178925,39.3233855,20 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_26,-74.79234016,39.6336278,22 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_26,-74.44167257,39.35877603,22 45TH COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_27,-74.51182639,39.32512685,119 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_4001_28,-74.51068416,39.3262725,121 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_29,-74.5346469,39.49099508,128 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_3,-74.77498284,39.65730753,4512 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_30,-74.503552,39.3268875,126 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_31,-74.4904475,39.3336035,124 HUDSON DR,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_4001_32,-74.4174915,39.36193,122 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_33,-74.80073748,39.64203984,120 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_34,-74.50126442,39.32618251,13 HUDSON COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_35,-74.82634927,39.64016204,11 HUDSON COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_36,-74.418522,39.3563655,9 HUDSON COVE,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_4001_37,-74.507421,39.33158533,8 HUDSON COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_38,-74.767279,39.6467335,6 HUDSON COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_39,-74.37194911,39.40678616,4 HUDSON COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_39,-74.48185412,39.34464867,4 HUDSON COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_4,-74.81754,39.643291,4510 HARBOR BEACH BLVD,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_4001_40,-74.367916,39.410225,110 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_40,-74.47805893,39.3433837,110 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_41,-74.5932478,39.36284886,108 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_42,-74.5761479,39.35920492,106 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_43,-74.6159855,39.3496175,104 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_5,-74.5013135,39.328028,4508 HARBOR BEACH BLVD,BRIGANTINE CITY,18,2011,1,RES1,3001 -0103_4001_6,-74.6235958,39.46353696,4506 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3002 -0103_4001_7,-74.8046005,39.431521,4504 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_4001_8,-74.484275,39.340949,4502 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4001_9,-74.63696093,39.30784695,4500 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_4002_1,-74.8017285,39.637723,4600 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_10,-74.372958,39.41266,119 HUDSON DR,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_4002_11,-74.8864965,39.5984655,121 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_12,-74.615247,39.508191,123 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_13,-74.787311,39.678119,125 HUDSON DR,BRIGANTINE CITY,17,1968,1,RES3B,3004 -0103_4002_14,-74.50091213,39.33291829,127 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_4002_15,-74.52422015,39.31432146,129 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_16,-74.619382,39.388035,125 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_16,-74.51682744,39.33089717,125 45TH STREET SO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_17,-74.52232576,39.31660795,4501 W BRIGANTINE AVE,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_4002_18,-74.5034585,39.3316375,4503 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_19,-74.79348054,39.63966291,4505 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_2,-74.5668715,39.475188,103 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_20,-74.567394,39.5109935,4507 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_21,-74.37169478,39.40400567,4509 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_21,-74.47785851,39.34492065,4509 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_22,-74.37500995,39.41790427,4511 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_23,-74.4415855,39.3723385,4513 W BRIGANTINE AVE,BRIGANTINE CITY,16,2003,1,RES1,3001 -0103_4002_23,-74.48049193,39.34362166,4513 W BRIGANTINE AVE,BRIGANTINE CITY,16,2003,1,COM1,3002 -0103_4002_24,-74.9521475,39.513176,4515 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_25,-74.80253604,39.63918928,4517 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_26,-74.8793635,39.5987785,4519 W BRIGANTINE AVE,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_4002_27,-74.75824552,39.48041034,4521 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_28,-74.63166798,39.43123315,4523 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_4002_29,-74.77668823,39.61993612,4525 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_3,-74.874565,39.597236,105 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_30,-74.7118015,39.6376755,4527 W BRIGANTINE AVE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_4002_31,-74.7741095,39.5952795,4529 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_32,-74.76231183,39.61127068,4531 W BRIGANTINE AVE,BRIGANTINE CITY,16,1968,1,COM1,3004 -0103_4002_33,-74.7762925,39.62729554,4533 W BRIGANTINE AVE,BRIGANTINE CITY,17,1968,1,RES3B,3001 -0103_4002_34,-74.78675553,39.63482115,4602 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1988,1,RES3B,3001 -0103_4002_4,-74.878812,39.591708,107 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_5,-74.55410123,39.47540658,109 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_4002_6,-74.8033525,39.626761,111 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_4002_7,-74.8114415,39.6319535,113 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_4002_8,-74.96941482,39.51311505,115 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_9,-74.4109135,39.391145,117 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_4002_9,-74.4780088,39.34392277,117 HUDSON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_402_10,-74.61897815,39.4374115,504 E BEACH AVE,BRIGANTINE CITY,47,1953,2,RES1,3001 -0103_402_11,-74.54133,39.501666,506 E BEACH AVE,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_402_12,-74.6414875,39.372445,204 6TH STREET NO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_402_13,-74.59169281,39.42106396,208 6TH STREET NO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_402_14,-74.57152783,39.4291645,214 6TH STREET NO,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_402_15,-74.5318695,39.40450717,220 6TH STREET NO,BRIGANTINE CITY,18,1958,1,RES1,3001 -0103_402_16,-74.41311518,39.37067048,226 6TH STREET NO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_402_2,-74.54480217,39.38872701,225 5TH STREET NO,BRIGANTINE CITY,43,1940,2,RES1,3001 -0103_402_3,-74.592417,39.3775685,221 5TH STREET NO,BRIGANTINE CITY,47,1955,2,RES1,3001 -0103_402_4,-74.51032359,39.33682806,217 5TH STREET NO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_402_5,-74.384263,39.398769,213 5TH STREET NO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_402_7,-74.57812558,39.41847711,201 5TH STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_402_8,-74.5953815,39.4346015,500 E BEACH AVE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_402_9,-74.62340084,39.38603272,502 E BEACH AVE,BRIGANTINE CITY,43,1986,2,RES1,3002 -0103_404_1,-74.55178,39.369466,221 4TH STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_404_10,-74.48914796,39.35153433,200 5TH STREET NO,BRIGANTINE CITY,45,1985,2,RES1,3001 -0103_404_11,-74.601072,39.372583,204 5TH STREET NO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_404_12,-74.54741806,39.38779706,208 5TH STREET NO,BRIGANTINE CITY,43,1970,2,RES1,3001 -0103_404_13,-74.65046274,39.34222502,214 5TH STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_404_14,-74.58763833,39.35454255,220 5TH STREET NO,BRIGANTINE CITY,45,1973,2,GOV1,3004 -0103_404_2,-74.546488,39.3796885,215 4TH STREET NO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_404_5,-74.53995151,39.38872883,201 4TH STREET NO,BRIGANTINE CITY,43,1940,3,RES1,3001 -0103_404_6,-74.60300065,39.37290446,400 E BEACH AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_404_7,-74.3750245,39.3972955,402 E BEACH AVE,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_404_8,-74.42072188,39.37189773,404 E BEACH AVE,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_404_9,-74.60139658,39.3974318,406 E BEACH AVE,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_406_10,-74.5760601,39.35680316,304 E BEACH AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_406_11,-74.64456889,39.33309546,306 E BEACH AVE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_406_13,-74.54139169,39.38153786,208 4TH STREET NO,BRIGANTINE CITY,15,1926,1,RES1,3001 -0103_406_15,-74.620255,39.6080525,216 4TH STREET NO,BRIGANTINE CITY,43,1948,2,RES3A,3001 -0103_406_17,-74.670793,39.3716735,224 4TH STREET NO,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_406_18,-74.55051838,39.37404264,228 4TH STREET NO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_406_19,-74.765103,39.3439235,319 E BRIGANTINE AVE,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_406_2,-74.62746571,39.35677672,227 3RD STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_406_20,-74.6348835,39.3649885,315 E BRIGANTINE AVE,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_406_21,-74.63299978,39.34823577,307 E BRIGANTINE AVE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_406_3,-74.75966813,39.30373246,223 3RD STREET NO,BRIGANTINE CITY,15,1951,1,RES1,3002 -0103_406_6,-74.62964293,39.43247497,207 3RD STREET NO,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_406_7,-74.54415346,39.38362285,201 3RD STREET NO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_406_7,-74.48552482,39.33927898,201 3RD STREET NO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_406_8,-74.53226962,39.37837309,300 E BEACH AVE,BRIGANTINE CITY,49,1952,3,RES1,3001 -0103_406_9,-74.55154655,39.37800116,302 E BEACH AVE,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_4100_1,-74.47595238,39.44372059,4632 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES3B,3004 -0103_4100_10,-74.6398067,39.53078256,4614 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3004 -0103_4100_11,-74.6457175,39.527686,4612 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_12,-74.92445008,39.47473524,4610 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_12,-74.44257179,39.35959135,4610 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_13,-74.63535313,39.53394997,4 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3004 -0103_4100_14,-74.5457415,39.5471955,6 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3004 -0103_4100_15,-74.57554449,39.51382825,8 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_16,-74.87360674,39.48369678,10 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES3A,3001 -0103_4100_17,-74.8153605,39.4715395,12 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_18,-74.81039309,39.45623633,14 BEACON LANE,BRIGANTINE CITY,37,1978,1,GOV1,3004 -0103_4100_19,-74.75594999,39.45335817,16 BEACON LANE,BRIGANTINE CITY,37,1978,1,COM10,3003 -0103_4100_2,-74.48945378,39.44263908,4630 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_20,-74.738778,39.4534975,18 BEACON LANE,BRIGANTINE CITY,37,1978,1,COM1,3004 -0103_4100_21,-74.728831,39.4499715,20 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_22,-74.458073,39.464799,22 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_23,-74.50416044,39.4332381,24 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_24,-74.84246914,39.39166583,26 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_25,-74.81261573,39.38571871,28 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_26,-74.79006127,39.41992345,30 BEACON LANE,BRIGANTINE CITY,37,1978,1,AGR1,3001 -0103_4100_27,-74.73524824,39.43163336,32 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_28,-74.71979531,39.39140315,34 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_29,-74.9510395,39.512131,36 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_3,-74.5081615,39.4456325,4628 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_30,-74.35939613,39.41096923,38 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_31,-74.36230367,39.41827017,35 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_32,-74.35602466,39.41427652,33 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_33,-74.94603312,39.49941074,31 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_34,-74.92785856,39.50776627,29 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_35,-74.97035433,39.50483564,27 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_36,-74.68184981,39.49303616,25 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_37,-74.734441,39.4355625,23 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_38,-74.75686826,39.43207563,21 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_39,-74.81052756,39.39893817,19 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_4,-74.75810923,39.44904196,4626 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_40,-74.80361954,39.43298131,17 BRAMBLE DRIVE,BRIGANTINE CITY,33,1978,1,RES3A,3001 -0103_4100_41,-74.50172111,39.43048485,15 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_42,-74.44256769,39.49250485,13 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,GOV1,3004 -0103_4100_43,-74.48514837,39.45660444,11 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_44,-74.5004595,39.44319515,9 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_45,-74.72789513,39.45471071,7 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_46,-74.76065978,39.44860533,5 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_47,-74.78031,39.5000525,3 BRAMBLE DRIVE,BRIGANTINE CITY,33,1978,1,RES1,3001 -0103_4100_5,-74.83234089,39.44596862,4624 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_6,-74.826777,39.4896075,4622 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,GOV1,3004 -0103_4100_7,-74.86594405,39.49032083,4620 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,GOV1,3004 -0103_4100_8,-74.54658575,39.54863061,4618 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4100_9,-74.65298009,39.51765235,4616 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_1,-74.62159299,39.43472932,1 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_10,-74.64778864,39.53061746,19 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_11,-74.63941014,39.5304919,21 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_12,-74.62169698,39.52224784,23 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_13,-74.63120164,39.50464444,25 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_14,-74.5425375,39.550408,27 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_15,-74.54698,39.526279,29 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_16,-74.868593,39.4628525,31 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_17,-74.75698508,39.44672804,33 BEACON LANE,BRIGANTINE CITY,37,1978,1,COM1,3004 -0103_4101_18,-74.71460041,39.46610031,35 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_19,-74.50516734,39.44359301,37 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_2,-74.6265085,39.424874,3 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_20,-74.482355,39.4529825,39 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_21,-74.526691,39.41978383,41 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_22,-74.84311706,39.40349499,43 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_23,-74.83388168,39.39887299,45 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_3,-74.66350265,39.58533255,5 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_4,-74.70459609,39.56899828,7 BEACON LANE,BRIGANTINE CITY,37,1978,1,GOV1,3004 -0103_4101_5,-74.683873,39.5481645,9 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_6,-74.70023431,39.50632104,11 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_7,-74.6034095,39.4095085,13 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_8,-74.94822364,39.49019369,15 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_8,-74.44330594,39.35942603,15 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4101_9,-74.58944642,39.41570219,17 BEACON LANE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4201_1,-74.6356675,39.3847415,2 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_10,-74.5978525,39.3689065,24 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,GOV1,3004 -0103_4201_11,-74.590521,39.380425,26 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_14,-74.4735705,39.4900085,36 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_15,-74.4611625,39.4902815,38 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_16,-74.45182284,39.49477231,40 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,GOV1,3004 -0103_4201_17,-74.92007308,39.49368376,42 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_18,-74.92308656,39.48464556,44 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_2,-74.5591555,39.472762,4 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_5,-74.550846,39.4023015,14 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_6,-74.60609495,39.39033154,16 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_7,-74.60116114,39.39129837,18 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_8,-74.60067001,39.3909456,20 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_9,-74.6280448,39.41900243,22 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4201_9,-74.5181445,39.32542277,22 SURFSIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4202_1,-74.6268647,39.43428027,4810 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_10,-74.5995309,39.43182868,4813 ROSS DRIVE SOUTH,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_11,-74.56514057,39.47475815,4815 ROSS DRIVE SOUTH,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_12,-74.60934345,39.37680327,25 SURFSIDE RD,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_13,-74.5344011,39.40882233,23 SURFSIDE RD,BRIGANTINE CITY,37,1983,1,RES1,3001 -0103_4202_14,-74.62631683,39.41770737,21 SURFSIDE RD,BRIGANTINE CITY,37,1983,1,RES1,3002 -0103_4202_14,-74.51762163,39.32573252,21 SURFSIDE RD,BRIGANTINE CITY,37,1983,1,RES1,3001 -0103_4202_15,-74.5411336,39.41415123,19 SURFSIDE RD,BRIGANTINE CITY,37,1983,1,RES1,3001 -0103_4202_16,-74.61794671,39.43066904,17 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_17,-74.62531317,39.39289043,15 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_18,-74.55410291,39.39009802,13 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_19,-74.5910175,39.3769355,11 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_2,-74.622464,39.4206315,6 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_20,-74.53018457,39.30836148,9 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_21,-74.6157315,39.3738345,7 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_22,-74.52314455,39.31480017,5 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_23,-74.49596852,39.33287367,3 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_24,-74.63198884,39.40770669,1 SURFSIDE RD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_25,-74.62365818,39.42099242,4818 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_26,-74.379761,39.397487,4816 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_26,-74.47831553,39.34372637,4816 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_27,-74.40974918,39.38176415,4814 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_27,-74.47830377,39.34474913,4814 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4202_28,-74.62709169,39.41959713,4812 HARBOR BEACH BLVD,BRIGANTINE CITY,37,1978,1,GOV1,3004 -0103_4202_3,-74.68658708,39.3813991,8 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_4,-74.49690434,39.3322125,10 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_5,-74.52497203,39.31280384,12 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_6,-74.63654857,39.38541927,14 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_7,-74.5922242,39.37717609,16 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4202_8,-74.56384413,39.39126047,18 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,GOV1,3004 -0103_4202_9,-74.65079434,39.37075765,20 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,GOV1,3004 -0103_4203_1,-74.557789,39.3982855,4822 ROSS DRIVE SOUTH,BRIGANTINE CITY,37,1986,1,GOV1,3004 -0103_4203_2,-74.55745109,39.39732588,4820 ROSS DRIVE SOUTH,BRIGANTINE CITY,37,1986,1,GOV1,3004 -0103_4203_3,-74.59069607,39.37056575,4818 ROSS DRIVE SOUTH,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4203_4,-74.59242395,39.37950275,4816 ROSS DRIVE SOUTH,BRIGANTINE CITY,37,1986,1,GOV1,3004 -0103_4203_5,-74.60123657,39.37030723,4814 ROSS DRIVE SOUTH,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4203_6,-74.60046667,39.39089979,4812 ROSS DRIVE SOUTH,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4203_7,-74.500835,39.4099,28 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4203_7,-74.47764579,39.34444556,28 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4203_8,-74.62340895,39.4179147,30 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4203_8,-74.51787505,39.32562845,30 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3002 -0103_4203_9,-74.60393179,39.38563014,32 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4204_1,-74.5485575,39.4693045,1 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_10,-74.6373285,39.400955,19 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4204_11,-74.49127,39.333389,21 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4204_12,-74.43436177,39.36247371,23 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4204_13,-74.6024865,39.3727955,25 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4204_14,-74.58416955,39.3762022,27 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,COM1,3004 -0103_4204_15,-74.541827,39.3913065,29 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4204_16,-74.62323283,39.38331402,31 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4204_17,-74.56457168,39.47957996,33 ROSS DRIVE EAST,BRIGANTINE CITY,37,1986,1,RES1,3001 -0103_4204_2,-74.69657073,39.42081099,3 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_3,-74.64426808,39.42724619,5 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_4,-74.6348043,39.43500187,7 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_5,-74.626843,39.4339425,9 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_6,-74.63409252,39.42379382,11 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_7,-74.40483653,39.3821808,13 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_7,-74.47917939,39.34478275,13 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_8,-74.39814357,39.38739561,15 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4204_8,-74.47785331,39.34372516,15 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,GOV1,3004 -0103_4204_9,-74.6564215,39.415643,17 ROSS DRIVE EAST,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_1,-74.75633995,39.42918522,2 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_10,-74.6937195,39.4493835,20 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_11,-74.6847865,39.4433095,22 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_12,-74.6192795,39.437096,24 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_13,-74.6233785,39.439583,26 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_14,-74.61784533,39.43717687,28 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_2,-74.7453665,39.421621,4 BRAMBLE DRIVE,BRIGANTINE CITY,33,1978,1,RES1,3001 -0103_4205_3,-74.68325166,39.49310753,6 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_4,-74.955667,39.5199775,8 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_5,-74.9469665,39.5118535,10 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_6,-74.36640746,39.41176815,12 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,IND2,3002 -0103_4205_7,-74.36258886,39.41594171,14 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_8,-74.9434725,39.4999585,16 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4205_9,-74.672559,39.4557495,18 BRAMBLE DRIVE,BRIGANTINE CITY,37,1978,1,RES1,3001 -0103_4301_1,-74.47409565,39.48688734,5000 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1975,2,GOV1,3004 -0103_4301_10,-74.6016023,39.43521844,18 SEASIDE RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_11,-74.5035805,39.4669685,5002 HARBOR BEACH BLVD,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_4301_12,-74.52303333,39.447507,1 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_13,-74.50430924,39.44462069,3 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4301_14,-74.498978,39.4292655,5 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4301_15,-74.48782686,39.42289904,7 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_16,-74.50318975,39.4152885,9 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_17,-74.530615,39.39993717,11 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_18,-74.556278,39.475717,13 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_19,-74.60599772,39.4356309,15 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_2,-74.51177381,39.45437879,2 SEASIDE RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_20,-74.53745618,39.40397524,5100 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_21,-74.590737,39.3764745,5102 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_22,-74.53948317,39.39299852,5104 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_4301_23,-74.52488584,39.3929849,5106 OCEAN DRIVE SOUTH,BRIGANTINE CITY,19,1975,1,RES1,3001 -0103_4301_3,-74.49052693,39.45327516,4 SEASIDE RD,BRIGANTINE CITY,35,1978,1,GOV1,3004 -0103_4301_4,-74.50195518,39.44193302,6 SEASIDE RD,BRIGANTINE CITY,43,1975,2,RES1,3001 -0103_4301_5,-74.48685255,39.44264279,8 SEASIDE RD,BRIGANTINE CITY,15,1976,1,RES1,3001 -0103_4301_6,-74.49099214,39.42254081,10 SEASIDE RD,BRIGANTINE CITY,43,1975,2,RES1,3001 -0103_4301_7,-74.50954017,39.40574201,12 SEASIDE RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4301_9,-74.59835,39.3700915,16 SEASIDE RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4302_1,-74.493204,39.38161,5108 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4302_2,-74.36878267,39.41403549,5110 OCEAN DRIVE SOUTH,BRIGANTINE CITY,19,1990,1,RES1,3001 -0103_4302_3,-74.3636915,39.4160245,5112 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4302_4,-74.3673375,39.408632,5114 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4302_5,-74.362885,39.407527,5116 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4302_6,-74.42157283,39.37181801,5118 OCEAN DRIVE SOUTH,BRIGANTINE CITY,19,1975,1,RES1,3001 -0103_4302_7,-74.3836185,39.3971265,5120 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3002 -0103_4303_20,-74.5607,39.415434,1 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,GOV1,3004 -0103_4303_23,-74.61443605,39.38132708,11 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES3B,3001 -0103_4303_24,-74.60920659,39.3763488,13 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_25,-74.59317572,39.37807304,15 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_28,-74.55950116,39.39723212,25 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_29,-74.558234,39.398138,27 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES3A,3001 -0103_4303_32,-74.56599404,39.4773555,37 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_33,-74.46742978,39.47402946,39 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,GOV1,3004 -0103_4303_34,-74.4589565,39.472258,41 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_37,-74.52335999,39.44412817,51 COQUILLE BEACH DR,BRIGANTINE CITY,37,1984,1,RES1,3001 -0103_4303_38,-74.49104075,39.43663062,53 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_39,-74.48681032,39.46918295,55 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_42,-74.490571,39.433017,50 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_43,-74.490455,39.4280785,48 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_44,-74.50023192,39.42938921,46 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_47,-74.5228445,39.444488,36 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_52,-74.9348795,39.4887005,18 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_61,-74.47112037,39.48278155,17 SEASIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_62,-74.52829735,39.45692995,19 SEASIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_63,-74.5056577,39.45842774,21 SEASIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_64,-74.524703,39.4469035,23 SEASIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_67,-74.48699961,39.43649522,33 SEASIDE RD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_4303_68,-74.48971001,39.41984483,35 SEASIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_71,-74.52692367,39.3958376,45 SEASIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_72,-74.52430733,39.39712192,47 SEASIDE RD,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_79,-74.51326463,39.45977656,62 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_82,-74.47382522,39.48125225,72 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_83,-74.569176,39.478445,74 COQUILLE BEACH DR,BRIGANTINE CITY,37,1982,1,RES1,3001 -0103_4303_84,-74.55150641,39.40623833,76 COQUILLE BEACH DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_4401_1,-74.5521145,39.4272135,48 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4401_2,-74.57099334,39.42931882,46 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4401_3,-74.604336,39.408107,44 OCEAN DRIVE WEST,BRIGANTINE CITY,19,1999,1,RES1,3001 -0103_4401_4,-74.5946845,39.4262595,42 OCEAN DRIVE WEST,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_4401_5,-74.60505166,39.39263512,40 OCEAN DRIVE WEST,BRIGANTINE CITY,20,2006,1,RES1,3001 -0103_4401_6,-74.60486102,39.38613629,38 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_4401_7,-74.3888625,39.391556,36 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4401_8,-74.381005,39.39590161,34 OCEAN DRIVE WEST,BRIGANTINE CITY,20,2004,1,RES1,3001 -0103_4402_1,-74.51020206,39.33565843,5214 OCEAN DRIVE SOUTH,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_4402_10,-74.50888633,39.33928751,6 SUNSET COURT,BRIGANTINE CITY,17,1975,1,GOV1,3004 -0103_4402_11,-74.5029925,39.3380975,56 OCEAN DRIVE WEST,BRIGANTINE CITY,20,1975,1,RES1,3001 -0103_4402_12,-74.4997605,39.336342,54 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4402_13,-74.51065311,39.33900315,52 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4402_14,-74.559533,39.4114025,50 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,AGR1,3004 -0103_4402_2,-74.48746217,39.34902996,5216 OCEAN DRIVE SOUTH,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_4402_3,-74.501966,39.3366605,5218 OCEAN DRIVE SOUTH,BRIGANTINE CITY,17,1975,1,RES6,3001 -0103_4402_4,-74.504329,39.3390925,5220 OCEAN DRIVE SOUTH,BRIGANTINE CITY,18,1975,1,RES1,3001 -0103_4402_5,-74.502989,39.339427,1 SUNSET COURT,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4402_6,-74.49294514,39.33454515,2 SUNSET COURT,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4402_7,-74.494528,39.3347095,3 SUNSET COURT,BRIGANTINE CITY,21,2009,1,RES1,3001 -0103_4402_8,-74.487518,39.334972,4 SUNSET COURT,BRIGANTINE CITY,20,1988,1,GOV1,3004 -0103_4402_9,-74.50484799,39.33967333,5 SUNSET COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4403_1,-74.3728405,39.40032,5200 OCEAN DRIVE SOUTH,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4403_2,-74.6033516,39.38616867,5202 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4403_3,-74.5938683,39.43445531,5204 OCEAN DRIVE SOUTH,BRIGANTINE CITY,18,1975,1,RES1,3001 -0103_4403_4,-74.57704947,39.42105274,5206 OCEAN DRIVE SOUTH,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4403_5,-74.5809086,39.4121578,5208 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4403_6,-74.57082363,39.42736361,5210 OCEAN DRIVE SOUTH,BRIGANTINE CITY,17,1975,1,GOV1,3004 -0103_4403_7,-74.5688705,39.4131505,5212 OCEAN DRIVE SOUTH,BRIGANTINE CITY,18,1981,1,GOV1,3004 -0103_4501_1,-74.37291523,39.40914442,29 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_10,-74.36773283,39.41138567,5208 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_11,-74.3806005,39.4166485,5206 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_12,-74.45188801,39.37534304,5204 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_13,-74.4465825,39.372693,5202 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_14,-74.52727233,39.38391744,5200 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_15,-74.36258957,39.41233393,5201 SEA SPRAY RD,BRIGANTINE CITY,17,1975,1,RES3B,3001 -0103_4501_16,-74.356592,39.4137095,5203 SEA SPRAY RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_4501_17,-74.372703,39.4033195,5205 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_18,-74.36966229,39.40430404,5207 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4501_19,-74.3668675,39.4069025,5209 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4501_2,-74.363149,39.4178155,27 OCEAN DRIVE WEST,BRIGANTINE CITY,18,1975,1,RES1,3001 -0103_4501_20,-74.3687495,39.40826,5211 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_21,-74.37142438,39.40747868,5213 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_22,-74.370081,39.4067355,5215 SEA SPRAY RD,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4501_23,-74.37490316,39.40380765,5217 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_24,-74.363081,39.413254,5219 SEA SPRAY RD,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_4501_3,-74.36987536,39.41629232,25 OCEAN DRIVE WEST,BRIGANTINE CITY,21,2005,1,GOV1,3004 -0103_4501_4,-74.4530598,39.37389946,23 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_5,-74.52434884,39.38409974,5218 WATERVIEW DR,BRIGANTINE CITY,18,1975,1,RES1,3001 -0103_4501_6,-74.5138595,39.385003,5216 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3002 -0103_4501_7,-74.44560556,39.37358131,5214 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4501_8,-74.37945032,39.41438544,5212 WATERVIEW DR,BRIGANTINE CITY,18,1975,1,RES1,3001 -0103_4501_9,-74.372035,39.4110045,5210 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_1,-74.60544069,39.39273853,5207 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_10,-74.550869,39.42166,47 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_11,-74.59510758,39.41043222,45 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_12,-74.61023409,39.41703255,43 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_14,-74.60504687,39.38997235,39 OCEAN DRIVE WEST,BRIGANTINE CITY,17,1977,1,RES1,3001 -0103_4502_15,-74.60928731,39.39207043,37 OCEAN DRIVE WEST,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4502_16,-74.3918423,39.39090431,35 OCEAN DRIVE WEST,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_4502_17,-74.38186573,39.39836669,33 OCEAN DRIVE WEST,BRIGANTINE CITY,20,2008,1,RES1,3001 -0103_4502_18,-74.40927979,39.3800879,31 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_19,-74.40937853,39.38025467,5218 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4502_2,-74.582044,39.4318505,5209 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1974,1,GOV1,3004 -0103_4502_20,-74.3817515,39.3942835,5216 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4502_21,-74.38048004,39.39543855,5214 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_22,-74.38587963,39.39431756,5212 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_23,-74.41311683,39.3693641,5210 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_24,-74.40751289,39.38278731,5208 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_25,-74.4069654,39.37907378,5206 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_26,-74.44319293,39.37117981,5204 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_27,-74.36206295,39.40821084,5202 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_28,-74.3680655,39.409493,5200 SEA SPRAY RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_29,-74.43216006,39.36850374,5201 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_3,-74.5837435,39.421647,5211 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_30,-74.41958032,39.37000351,5203 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_4502_31,-74.39656678,39.38640108,5205 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_32,-74.38346547,39.40020567,12 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_33,-74.39816806,39.38664573,11 HARBOUR COURT,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_4502_34,-74.39902877,39.38839747,10 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_35,-74.390422,39.392712,9 HARBOUR COURT,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_4502_36,-74.3704995,39.401462,8 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_37,-74.61487608,39.39121931,7 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_38,-74.37396816,39.399078,6 HARBOUR COURT,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4502_39,-74.6137474,39.42071898,5 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_4,-74.58668927,39.41598348,5213 OCEAN DRIVE SOUTH,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4502_40,-74.5864465,39.4155315,4 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_41,-74.58236333,39.42269745,3 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_42,-74.5843885,39.432806,2 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_43,-74.58437453,39.43222374,1 HARBOUR COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_6,-74.56882232,39.41223021,5217 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1977,1,GOV1,3004 -0103_4502_7,-74.5694245,39.4140455,5219 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4502_8,-74.5708182,39.41482904,51 OCEAN DRIVE WEST,BRIGANTINE CITY,20,2016,1,RES1,3001 -0103_4502_9,-74.57084879,39.41345801,49 OCEAN DRIVE WEST,BRIGANTINE CITY,18,1975,1,RES1,3001 -0103_4503_1,-74.44448382,39.37107595,13 SANDY LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_10,-74.5157195,39.3957315,5112 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_4503_11,-74.50519754,39.40961022,5110 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_4503_12,-74.51395284,39.4054169,5108 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1975,2,GOV1,3004 -0103_4503_13,-74.4923775,39.427188,5106 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_4503_14,-74.50237766,39.43605647,5104 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_15,-74.48626686,39.45300273,5102 HARBOR BEACH BLVD,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_4503_16,-74.50259518,39.44224621,5100 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4503_17,-74.4980685,39.432021,2 OCEAN DRIVE EAST,BRIGANTINE CITY,43,1975,2,RES1,3001 -0103_4503_18,-74.526245,39.403467,4 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_19,-74.52196997,39.39395469,6 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_2,-74.5182325,39.388591,11 SANDY LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_20,-74.59922135,39.38230303,8 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_21,-74.5520675,39.4708915,10 OCEAN DRIVE EAST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_22,-74.58720925,39.40357015,5101 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_23,-74.568658,39.4122445,5103 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_4503_24,-74.5971048,39.37827564,5105 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_25,-74.56742311,39.41957046,10 SURF LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_26,-74.60443922,39.43617649,9 SURF LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_27,-74.5553307,39.47686864,8 SURF LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_28,-74.49089991,39.41893747,7 SURF LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_29,-74.52605236,39.40967633,6 SURF LANE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_4503_3,-74.51610667,39.40042959,9 SANDY LANE,BRIGANTINE CITY,43,1975,2,RES1,3001 -0103_4503_30,-74.61864381,39.37439194,5 SURF LANE,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4503_31,-74.57295258,39.42927032,4 SURF LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_32,-74.571925,39.413557,3 SURF LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_33,-74.59701285,39.38098772,2 SURF LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_34,-74.57677545,39.3685752,1 SURF LANE,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4503_35,-74.56371032,39.37227383,5107 OCEAN DRIVE SOUTH,BRIGANTINE CITY,17,1978,1,RES1,3001 -0103_4503_36,-74.52533169,39.39355153,5109 OCEAN DRIVE SOUTH,BRIGANTINE CITY,18,1980,1,RES1,3001 -0103_4503_37,-74.52527153,39.38247614,5111 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_38,-74.380549,39.4165225,5113 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_39,-74.36242235,39.41300118,5115 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_4503_4,-74.55480712,39.38971234,7 SANDY LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_40,-74.36915232,39.40498302,5117 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_41,-74.366977,39.4103705,5119 OCEAN DRIVE SOUTH,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_42,-74.370841,39.402647,12 SEA SPRAY COURT,BRIGANTINE CITY,16,1973,1,GOV1,3004 -0103_4503_43,-74.37263877,39.41734162,11 SEA SPRAY COURT,BRIGANTINE CITY,16,1973,1,RES1,3002 -0103_4503_44,-74.44820478,39.37498079,10 SEA SPRAY COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_45,-74.51443816,39.38529782,9 SEA SPRAY COURT,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_4503_46,-74.54791,39.385998,8 SEA SPRAY COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_47,-74.58676617,39.37158151,7 SEA SPRAY COURT,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4503_48,-74.5643755,39.416664,6 SEA SPRAY COURT,BRIGANTINE CITY,15,1975,1,RES1,3001 -0103_4503_49,-74.545471,39.4730455,5 SEA SPRAY COURT,BRIGANTINE CITY,16,1973,1,GOV1,3004 -0103_4503_5,-74.5910945,39.369404,5 SANDY LANE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_4503_50,-74.57917952,39.41863566,4 SEA SPRAY COURT,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4503_51,-74.59545171,39.38024454,3 SEA SPRAY COURT,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4503_52,-74.5473155,39.3883305,2 SEA SPRAY COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_53,-74.52553036,39.39281037,1 SEA SPRAY COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_6,-74.5724555,39.412958,3 SANDY LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_7,-74.59329275,39.40235338,1 SANDY LANE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4503_8,-74.5511683,39.47226239,5116 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1975,2,RES1,3001 -0103_4503_9,-74.6091295,39.375626,5114 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4601_1,-74.431505,39.3801595,32 OCEAN DRIVE WEST,BRIGANTINE CITY,21,2010,1,GOV1,3004 -0103_4601_2,-74.367562,39.408909,30 OCEAN DRIVE WEST,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_4601_3,-74.36097552,39.41684534,28 OCEAN DRIVE WEST,BRIGANTINE CITY,20,2005,1,RES1,3001 -0103_4601_4,-74.37690672,39.41621995,26 OCEAN DRIVE WEST,BRIGANTINE CITY,17,2018,1,RES1,3001 -0103_4601_5,-74.49285983,39.37996621,24 OCEAN DRIVE WEST,BRIGANTINE CITY,18,1975,1,RES1,3001 -0103_4601_6,-74.514693,39.388024,22 OCEAN DRIVE WEST,BRIGANTINE CITY,21,2007,1,GOV1,3004 -0103_4601_7,-74.517519,39.400204,20 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4601_8,-74.5852615,39.376339,18 OCEAN DRIVE WEST,BRIGANTINE CITY,18,1975,1,RES1,3001 -0103_4602_1,-74.5744865,39.4260045,16 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4602_2,-74.58862569,39.41624256,14 OCEAN DRIVE WEST,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_4602_3,-74.55537278,39.47652597,12 OCEAN DRIVE WEST,BRIGANTINE CITY,15,1975,1,RES1,3001 -0103_4602_4,-74.530529,39.401198,10 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4602_5,-74.51819284,39.4055255,8 OCEAN DRIVE WEST,BRIGANTINE CITY,20,2016,1,RES1,3001 -0103_4602_6,-74.49325,39.4350305,6 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4602_7,-74.46091119,39.46661724,4 OCEAN DRIVE WEST,BRIGANTINE CITY,18,1988,1,RES1,3001 -0103_4602_8,-74.52288835,39.44363846,2 OCEAN DRIVE WEST,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_4603_1,-74.52437153,39.39231565,21 OCEAN DRIVE WEST,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_4603_10,-74.60830819,39.37726254,11 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_11,-74.500256,39.409052,9 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_12,-74.5289445,39.4023855,7 OCEAN DRIVE WEST,BRIGANTINE CITY,20,2006,1,RES1,3001 -0103_4603_13,-74.51429353,39.41173382,4 LAGOON COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_14,-74.46142,39.465999,3 LAGOON COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_15,-74.50074065,39.46713706,2 LAGOON COURT,BRIGANTINE CITY,16,1975,1,COM1,3004 -0103_4603_16,-74.500682,39.461495,1 LAGOON COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_17,-74.4885489,39.44018869,5 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_18,-74.52017505,39.45117961,3 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_4603_19,-74.50998686,39.45958755,1 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_2,-74.532939,39.4004,19 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_20,-74.52136684,39.46541569,5234 LAGOON BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_21,-74.47991018,39.47869335,5232 LAGOON BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_22,-74.90985918,39.49433873,5230 LAGOON BLVD,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_4603_23,-74.937447,39.496297,5228 LAGOON BLVD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_4603_24,-74.520361,39.4629985,5226 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_25,-74.48982449,39.47002584,5224 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,COM3,3004 -0103_4603_26,-74.49675487,39.45129373,5222 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_27,-74.47979638,39.4432227,5220 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_28,-74.51370294,39.41149068,5218 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_4603_29,-74.502931,39.408021,5216 HARBOR BEACH BLVD,BRIGANTINE CITY,15,1975,1,RES1,3001 -0103_4603_3,-74.59145257,39.36941505,17 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_4603_30,-74.60476483,39.384053,5214 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_31,-74.605223,39.433849,5212 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_32,-74.57649438,39.40770274,5210 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_33,-74.57230228,39.41145655,5208 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_34,-74.56125362,39.41561729,5206 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_35,-74.60922157,39.38587634,5204 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1975,2,RES1,3001 -0103_4603_36,-74.597977,39.4021215,5202 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_37,-74.56319275,39.41474055,5200 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_4603_38,-74.55141186,39.40106165,5201 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_39,-74.5543715,39.384171,5203 WATERVIEW DR,BRIGANTINE CITY,16,2002,1,RES1,3001 -0103_4603_4,-74.56523202,39.41363785,15 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_4603_40,-74.554072,39.3690735,5205 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_41,-74.56001426,39.373569,5207 WATERVIEW DR,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_4603_42,-74.56551249,39.37127447,5209 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_43,-74.53871835,39.39239144,5211 WATERVIEW DR,BRIGANTINE CITY,45,1975,2,RES1,3001 -0103_4603_44,-74.55363,39.3942895,5213 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_45,-74.61618319,39.39411708,5215 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_46,-74.54475297,39.40530583,5217 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_47,-74.5935595,39.376272,5219 WATERVIEW DR,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_5,-74.57392023,39.41152706,4 BAY COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_6,-74.537754,39.472362,3 BAY COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_7,-74.50047819,39.41334305,2 BAY COURT,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4603_8,-74.4825135,39.431849,1 BAY COURT,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_4603_9,-74.61802639,39.46237582,13 OCEAN DRIVE WEST,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4604_1,-74.52045913,39.46952595,5101 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_10,-74.49976581,39.41042996,5201 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_4604_11,-74.50615917,39.40976837,5203 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1986,1,GOV1,3004 -0103_4604_12,-74.50892,39.406542,5205 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_13,-74.50034098,39.41624818,5207 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_14,-74.514603,39.411455,5209 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_15,-74.4264955,39.491446,5211 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_16,-74.500652,39.438082,5213 HARBOR BEACH BLVD,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_4604_17,-74.499596,39.460913,5215 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_18,-74.52383865,39.45467946,5217 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_19,-74.564647,39.476745,5219 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4604_2,-74.50027006,39.46742433,5103 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_20,-74.44625207,39.49458787,5221 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_21,-74.59316057,39.3797604,5223 HARBOR BEACH BLVD,BRIGANTINE CITY,19,2011,1,GOV1,3004 -0103_4604_23,-74.5575645,39.3968675,4 ONTARIO DRIVE,BRIGANTINE CITY,43,1987,2,RES1,3001 -0103_4604_24,-74.47077447,39.49369866,6 ONTARIO DRIVE,BRIGANTINE CITY,43,1987,2,GOV1,3004 -0103_4604_25,-74.895988,39.5020515,8 ONTARIO DRIVE,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4604_28,-74.51406984,39.44056158,14 ONTARIO DRIVE,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4604_29,-74.4737285,39.446409,5118 ONTARIO DRIVE,BRIGANTINE CITY,43,1985,2,GOV1,3004 -0103_4604_3,-74.48947501,39.45725041,5105 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4604_33,-74.51130045,39.45310266,5110 ONTARIO DRIVE,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4604_36,-74.44418727,39.48494718,5104 ONTARIO DRIVE,BRIGANTINE CITY,43,1989,2,RES1,3001 -0103_4604_4,-74.5137255,39.4387035,5107 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_4604_5,-74.48812396,39.4382157,5109 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4604_6,-74.51471008,39.43186176,5111 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_4604_7,-74.501582,39.423979,5113 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4604_8,-74.51453309,39.41563293,5115 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_4604_9,-74.49734339,39.41277414,5117 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_4605_12,-74.53791174,39.39096758,704 LAGOON BLVD,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_4605_13,-74.5964985,39.380136,702 LAGOON BLVD,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4605_14,-74.52264666,39.3170691,700 LAGOON BLVD,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4605_15,-74.62564202,39.39362517,2 MANITOBA AVE,BRIGANTINE CITY,43,1986,2,RES1,3001 -0103_4605_16,-74.56481768,39.47990048,4 MANITOBA AVE,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_4605_19,-74.59178655,39.36983763,10 MANITOBA AVE,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_4605_23,-74.501821,39.4102595,3 TIFFANY PLACE,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_4605_23,-74.48074678,39.3443678,3 TIFFANY PLACE,BRIGANTINE CITY,43,1984,2,GOV1,3004 -0103_4605_3,-74.4932855,39.4693025,13 ONTARIO DRIVE,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4700_1,-74.91053434,39.48852423,17 MANITOBA AVE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_4700_10,-74.65774684,39.3977651,634 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_100,-74.78983468,39.63660381,90 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_101,-74.78106174,39.62707567,92 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3004 -0103_4700_101,-74.44112382,39.35930022,92 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_102,-74.7698085,39.6320885,94 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_102,-74.44074526,39.35915993,94 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_103,-74.63779471,39.42931273,96 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,GOV1,3004 -0103_4700_104,-74.62815034,39.43230503,98 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_106,-74.45630763,39.3730959,52 SHIPMASTER DR,BRIGANTINE CITY,16,1976,1,GOV1,3004 -0103_4700_107,-74.3775101,39.40175916,50 SHIPMASTER DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_4700_108,-74.49095317,39.33642199,48 SHIPMASTER DR,BRIGANTINE CITY,16,1970,1,GOV1,3004 -0103_4700_109,-74.52059399,39.44648341,46 SHIPMASTER DR,BRIGANTINE CITY,43,1970,2,RES1,3001 -0103_4700_11,-74.62358261,39.41860564,632 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_110,-74.51056167,39.43845594,44 SHIPMASTER DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_4700_111,-74.46360107,39.35801032,42 SHIPMASTER DR,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_4700_112,-74.44982828,39.37357062,40 SHIPMASTER DR,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_4700_113,-74.4082895,39.382441,38 SHIPMASTER DR,BRIGANTINE CITY,16,1970,1,COM1,3004 -0103_4700_114,-74.500852,39.328403,36 SHIPMASTER DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_4700_115,-74.8372175,39.5918845,34 SHIPMASTER DR,BRIGANTINE CITY,43,1970,2,GOV1,3004 -0103_4700_115,-74.44168439,39.35895643,34 SHIPMASTER DR,BRIGANTINE CITY,43,1970,2,COM1,3004 -0103_4700_116,-74.513124,39.321841,32 SHIPMASTER DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_4700_117,-74.60122579,39.48011904,30 SHIPMASTER DR,BRIGANTINE CITY,16,1976,1,COM1,3004 -0103_4700_119,-74.81866935,39.65396428,40 LIGHTHOUSE DR,BRIGANTINE CITY,43,1981,2,RES1,3001 -0103_4700_12,-74.62895821,39.4210169,630 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_121,-74.61094923,39.50655131,36 LIGHTHOUSE DR,BRIGANTINE CITY,43,1986,2,RES1,3001 -0103_4700_122,-74.37208014,39.40392044,34 LIGHTHOUSE DR,BRIGANTINE CITY,43,1981,2,RES1,3001 -0103_4700_122,-74.48058396,39.34373947,34 LIGHTHOUSE DR,BRIGANTINE CITY,43,1981,2,RES1,3001 -0103_4700_123,-74.5827925,39.357589,32 LIGHTHOUSE DR,BRIGANTINE CITY,43,1981,2,RES1,3001 -0103_4700_124,-74.96684873,39.51283896,30 LIGHTHOUSE DR,BRIGANTINE CITY,43,1986,2,RES1,3001 -0103_4700_126,-74.8286785,39.601362,26 LIGHTHOUSE DR,BRIGANTINE CITY,43,1986,2,RES1,3001 -0103_4700_127,-74.76238159,39.63587491,24 LIGHTHOUSE DR,BRIGANTINE CITY,43,1981,2,RES1,3001 -0103_4700_129,-74.69218698,39.63678141,20 LIGHTHOUSE DR,BRIGANTINE CITY,43,1986,2,RES1,3001 -0103_4700_13,-74.37816115,39.40120102,628 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_13,-74.47858847,39.34576994,628 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_130,-74.6030807,39.59456404,18 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_4700_131,-74.93253322,39.4970135,16 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_4700_131,-74.44331068,39.35891303,16 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_4700_132,-74.63809783,39.53064001,14 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,RES3A,3001 -0103_4700_133,-74.869451,39.4917095,12 LIGHTHOUSE DR,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4700_134,-74.73334828,39.46135765,10 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,GOV1,3004 -0103_4700_135,-74.525927,39.429796,8 LIGHTHOUSE DR,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4700_136,-74.8239297,39.38205395,6 LIGHTHOUSE DR,BRIGANTINE CITY,43,1986,2,RES1,3001 -0103_4700_137,-74.69202,39.486435,4 LIGHTHOUSE DR,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4700_139,-74.66571467,39.462765,4701 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4700_14,-74.40620176,39.38065116,626 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,COM1,3004 -0103_4700_14,-74.47806643,39.34565172,626 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_141,-74.37855184,39.39740434,1 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_142,-74.50241677,39.33625027,3 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,GOV1,3004 -0103_4700_143,-74.5654053,39.41491217,5 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_144,-74.60739,39.388647,7 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_145,-74.6188375,39.37314,9 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_146,-74.49831579,39.41308891,11 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_147,-74.5154395,39.3941985,13 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_148,-74.51984968,39.40196009,15 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_149,-74.63886773,39.34247736,17 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,GOV1,3004 -0103_4700_15,-74.624709,39.4326785,624 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_150,-74.4592795,39.3544665,19 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_151,-74.530777,39.390197,21 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_152,-74.51973033,39.38374547,23 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_153,-74.37435957,39.41973667,25 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_154,-74.48131183,39.33639001,27 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_155,-74.4647005,39.3464185,29 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_156,-74.51449,39.3199635,31 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_157,-74.51574462,39.32461763,33 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_158,-74.7153351,39.43908178,35 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_159,-74.812557,39.3849485,37 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_16,-74.63896449,39.43553927,622 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_160,-74.45843382,39.35069486,39 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_161,-74.52116981,39.31881572,41 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_162,-74.60711418,39.50296037,43 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,GOV1,3004 -0103_4700_163,-74.66260708,39.40137982,45 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_163,-74.51737258,39.32542417,45 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_164,-74.569219,39.354282,47 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_165,-74.4961855,39.33224673,49 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,GOV1,3004 -0103_4700_166,-74.50073943,39.32611554,51 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_167,-74.50270066,39.33298333,53 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_168,-74.50573267,39.33181698,55 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_169,-74.81475183,39.64530804,57 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_17,-74.63747869,39.42963184,620 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_170,-74.77349973,39.66109491,59 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_171,-74.7920815,39.643928,61 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,COM1,3004 -0103_4700_172,-74.60673713,39.50675639,63 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_173,-74.81766676,39.47057614,65 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_174,-74.97182827,39.51734175,67 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_175,-74.371016,39.4058055,69 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_175,-74.47684717,39.34357579,69 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_176,-74.374983,39.4122715,71 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_177,-74.37451454,39.40964017,73 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_177,-74.47607042,39.34482022,73 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_178,-74.59466449,39.36221224,75 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_178.01,-74.58198418,39.35687851,77 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_179,-74.36312166,39.41055506,79 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_179,-74.47869385,39.34479346,79 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_18,-74.69254069,39.41364992,618 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_180,-74.432835,39.369823,81 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_180,-74.47666051,39.34548489,81 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_181,-74.890394,39.5577935,83 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_182,-74.90509326,39.53866861,85 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_183,-74.95494524,39.52851859,87 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_184,-74.94082517,39.52873613,89 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_185,-74.936795,39.5247645,91 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_186,-74.9642565,39.519297,93 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_187,-74.55693122,39.47725358,95 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_188,-74.538475,39.4707735,97 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_189,-74.8464235,39.606505,99 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_19,-74.5646375,39.446712,616 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,COM4,3004 -0103_4700_190,-74.812968,39.6369415,101 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_191,-74.80713885,39.63810396,103 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_192,-74.79808454,39.63142058,105 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_193,-74.806884,39.6287595,107 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_194,-74.80188667,39.62219028,109 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_195,-74.53471322,39.49059854,111 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4700_20,-74.55640652,39.46857332,614 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_21,-74.525084,39.314035,612 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_22,-74.50586859,39.32510633,610 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_24,-74.49156,39.332344,606 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_25,-74.5991777,39.43635145,604 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_26,-74.60889011,39.4394393,602 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_27,-74.605983,39.487213,600 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_28,-74.66818567,39.455576,15 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES3A,3001 -0103_4700_29,-74.372435,39.404245,13 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_30,-74.35629588,39.41452164,11 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,REL1,3004 -0103_4700_31,-74.3658595,39.4123505,9 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_32,-74.9175225,39.517092,7 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_33,-74.9273828,39.51900682,5 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_34,-74.6384645,39.4704135,3 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_35,-74.76243632,39.4301327,1 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_36,-74.51948301,39.42448958,2 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_37,-74.85308866,39.39133268,4 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_38,-74.82916098,39.39909883,6 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,COM1,3004 -0103_4700_39,-74.803611,39.378193,8 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_4,-74.60420421,39.38485754,11 MANITOBA AVE,BRIGANTINE CITY,43,1989,2,RES1,3001 -0103_4700_40,-74.761688,39.4302315,10 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_41,-74.73317683,39.43306736,12 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_42,-74.6787652,39.47897213,14 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3004 -0103_4700_43,-74.9643195,39.512223,16 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_44,-74.9423983,39.51111428,18 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_45,-74.9267429,39.53408937,20 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_46,-74.923782,39.516759,22 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_47,-74.9189,39.5162825,24 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_48,-74.92823535,39.51965996,26 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_49,-74.96643911,39.51195144,28 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_5,-74.62515233,39.41326501,9 MANITOBA AVE,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_4700_5,-74.5212169,39.32355238,9 MANITOBA AVE,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_4700_50,-74.63263555,39.48682666,30 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_51,-74.69165089,39.50115415,32 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_52,-74.77858434,39.37821365,34 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_53,-74.73379077,39.43264263,36 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_54,-74.75502496,39.42986429,38 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_55,-74.78739928,39.42149435,40 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_56,-74.818039,39.3784505,42 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_57,-74.845134,39.372849,44 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_58,-74.72756568,39.45268801,46 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_59,-74.44282346,39.49021694,48 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_60,-74.488049,39.4400095,50 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_61,-74.50671211,39.44687206,52 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_62,-74.49987414,39.44241434,3 DELMAR COURT,BRIGANTINE CITY,33,1980,1,COM1,3004 -0103_4700_63,-74.50398863,39.44246634,5 DELMAR COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_64,-74.7271075,39.4501975,7 DELMAR COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_65,-74.72993189,39.45488467,9 DELMAR COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_66,-74.7573815,39.445115,11 DELMAR COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_67,-74.839421,39.443988,13 DELMAR COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_68,-74.88053,39.473451,15 DELMAR COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_69,-74.6532095,39.5236405,17 DELMAR COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_70,-74.5877175,39.4134525,54 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_71,-74.9333065,39.5034335,56 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_71,-74.44276331,39.35914069,56 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_72,-74.59883411,39.41300319,58 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_73,-74.633595,39.5404305,60 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_74,-74.676683,39.572294,62 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_75,-74.63132355,39.42134181,64 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_76,-74.654928,39.62891,66 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_77,-74.7966315,39.537468,68 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_78,-74.82908285,39.54028158,70 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_79,-74.86631065,39.56488654,72 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,GOV1,3004 -0103_4700_8,-74.5079771,39.32304485,638 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_80,-74.72719697,39.58759417,3 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_81,-74.79146607,39.59609369,5 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_82,-74.77310643,39.6293227,7 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_82,-74.44080807,39.35911356,7 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_83,-74.901049,39.479797,9 CASA COURT,BRIGANTINE CITY,33,1980,1,GOV1,3004 -0103_4700_84,-74.9484953,39.53355716,11 CASA COURT,BRIGANTINE CITY,33,1960,1,RES2,3005 -0103_4700_85,-74.44313919,39.37066194,13 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_85,-74.47654671,39.34537015,13 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_86,-74.88644054,39.55916829,15 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_87,-74.94938967,39.53395299,17 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_88,-74.93062802,39.52132237,19 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_89,-74.535721,39.473219,21 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_9,-74.4953295,39.331175,636 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4700_90,-74.8092335,39.639398,23 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_91,-74.80334621,39.63725233,25 CASA COURT,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_92,-74.801758,39.6238105,74 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_93,-74.8086895,39.610688,76 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_94,-74.56952363,39.48949344,78 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_95,-74.572482,39.47859916,80 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_96,-74.55611172,39.4763765,82 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_97,-74.87777509,39.59423461,84 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_98,-74.8397645,39.59926323,86 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4700_99,-74.79453673,39.63364004,88 DELMAR DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4701_1,-74.37126134,39.403571,2 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_10,-74.48771414,39.33260129,610 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_11,-74.50468833,39.3248575,612 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_12,-74.52740366,39.31136653,614 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_13,-74.59184084,39.45279832,616 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_14,-74.551575,39.464235,618 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,GOV1,3004 -0103_4701_15,-74.5437145,39.456874,620 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_16,-74.56835308,39.43724437,622 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_17,-74.64279437,39.43554791,624 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_18,-74.63454754,39.43432306,626 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,GOV1,3004 -0103_4701_19,-74.629514,39.4293845,628 LAGOON BLVD,BRIGANTINE CITY,33,1985,1,GOV1,3004 -0103_4701_2,-74.68951215,39.44829931,4 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_20,-74.62617297,39.43494192,630 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_21,-74.683714,39.390894,3 MANITOBA AVE,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4701_3,-74.663683,39.4462525,6 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_4,-74.64064243,39.46662785,8 ALBERTA DRIVE,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_5,-74.62577468,39.43642327,600 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_6,-74.62034625,39.4378425,602 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_7,-74.6070425,39.4844585,604 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4701_8,-74.60834525,39.43973237,606 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,GOV1,3004 -0103_4701_9,-74.60238553,39.44371255,608 LAGOON BLVD,BRIGANTINE CITY,33,1987,1,RES1,3001 -0103_4702_1,-74.8034015,39.545097,500 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_10,-74.57888097,39.53673483,517 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_11,-74.833371,39.47033258,519 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_12,-74.712718,39.471302,521 CASA DRIVE,BRIGANTINE CITY,33,1980,1,IND6,3002 -0103_4702_13,-74.75559697,39.44690978,523 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_14,-74.74781264,39.45118168,525 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_15,-74.496071,39.44016465,527 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_16,-74.477771,39.440254,529 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_17,-74.50501169,39.42820152,531 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_18,-74.79050587,39.44496397,526 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_19,-74.8238755,39.468226,524 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,COM4,3004 -0103_4702_20,-74.830159,39.4875795,522 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_21,-74.57274053,39.53601717,520 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_22,-74.57330266,39.55508202,518 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_23,-74.6347695,39.526801,516 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_24,-74.636287,39.529769,514 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_25,-74.676722,39.5160655,512 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_26,-74.942726,39.490582,510 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_26,-74.44294802,39.35914475,510 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES3A,3001 -0103_4702_27,-74.6127185,39.4118135,508 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_28,-74.6457625,39.5499955,506 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_29,-74.6888555,39.557171,504 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_3,-74.70046952,39.58521211,503 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_30,-74.63113895,39.60716485,502 LAGOON BLVD,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_4,-74.68669934,39.51312753,505 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_5,-74.60101044,39.4103177,507 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_6,-74.932861,39.489534,509 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_6,-74.44285838,39.35931882,509 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_7,-74.6744025,39.514836,511 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_8,-74.64287998,39.52888951,513 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4702_9,-74.63614299,39.53565799,515 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_1,-74.71652772,39.57854082,500 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_10,-74.67807178,39.51697769,518 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_11,-74.63723546,39.53338467,520 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_12,-74.57753115,39.53867718,522 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_13,-74.5995055,39.5114655,524 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_14,-74.83100986,39.49157077,526 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_15,-74.7115935,39.47039,528 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_2,-74.82131018,39.53774345,502 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_3,-74.67065415,39.61434357,504 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_4,-74.634817,39.4203125,506 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_5,-74.626605,39.4216615,508 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_6,-74.60974972,39.59431741,510 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_7,-74.67615072,39.56819153,512 CASA DRIVE,BRIGANTINE CITY,33,1980,1,RES1,3001 -0103_4703_8,-74.58747068,39.4323231,514 CASA DRIVE,BRIGANTINE CITY,33,1980,1,GOV1,3004 -0103_4703_9,-74.587173,39.413285,516 CASA DRIVE,BRIGANTINE CITY,33,1980,1,REL1,3004 -0103_4704_10,-74.46761064,39.34511767,417 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4704_11,-74.4652065,39.34811459,419 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_12,-74.51610151,39.32352637,421 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_13,-74.501128,39.3278495,423 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_14,-74.83064975,39.42397965,425 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_15,-74.81927994,39.39128942,427 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_16,-74.79031356,39.63374979,429 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_16,-74.44157015,39.35878828,429 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_17,-74.52588581,39.31732081,431 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,GOV1,3004 -0103_4704_18,-74.5178255,39.3225725,433 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_19,-74.60883474,39.4895768,435 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_2,-74.52983068,39.3981161,401 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4704_20,-74.51180631,39.3245054,437 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_21,-74.6369335,39.3815185,439 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_21,-74.50447339,39.32848514,439 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_22,-74.50474952,39.32879784,441 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_23,-74.48886158,39.33252969,443 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_24,-74.50363333,39.3295905,445 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_25,-74.79712201,39.65104223,447 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_26,-74.77237782,39.66256132,449 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_27,-74.77951142,39.62401383,451 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,IND2,3002 -0103_4704_27,-74.4414309,39.35887467,451 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,COM1,3004 -0103_4704_28,-74.57649,39.5118495,453 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_29,-74.79563944,39.46444567,455 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_3,-74.51904582,39.40162298,403 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4704_30,-74.97556824,39.51179954,457 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_31,-74.37319833,39.40451852,459 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_31,-74.47621202,39.34432528,459 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_32,-74.3824125,39.4164685,461 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,COM1,3004 -0103_4704_33,-74.58743498,39.35573662,463 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_34,-74.42186169,39.36864598,465 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_34,-74.48043169,39.34352062,465 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_35,-74.882974,39.554497,467 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_36,-74.93331792,39.52240421,469 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4704_4,-74.66289217,39.347451,405 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4704_5,-74.61315366,39.36784386,407 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4704_6,-74.46075898,39.35505083,409 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4704_7,-74.48299086,39.34389168,411 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4704_8,-74.50678835,39.38546028,413 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4704_9,-74.44948932,39.37489192,415 SEAHORSE RD,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4705_1,-74.519803,39.389588,400 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_10,-74.523491,39.3225425,418 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES3A,3001 -0103_4705_11,-74.6025115,39.5012155,420 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_12,-74.58142691,39.48816236,422 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_13,-74.67158619,39.37473595,424 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_13,-74.51737263,39.32521585,424 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_14,-74.64313263,39.37430322,426 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_14,-74.51114527,39.32471199,426 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_15,-74.5048031,39.32796166,428 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_16,-74.49737368,39.32858998,430 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_17,-74.49431008,39.33253467,432 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_18,-74.505061,39.327815,434 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,GOV1,3004 -0103_4705_19,-74.498669,39.334142,436 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_2,-74.47957888,39.35028582,402 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,COM1,3004 -0103_4705_20,-74.781989,39.6572,438 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_21,-74.790733,39.64366,440 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_22,-74.61807613,39.50733657,442 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_23,-74.83832165,39.48990972,444 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_24,-74.68588194,39.65296234,446 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_25,-74.36975327,39.40439018,448 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_25,-74.47916774,39.34471258,448 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES3A,3001 -0103_4705_26,-74.3620893,39.41926203,450 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_27,-74.366983,39.4171725,452 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_28,-74.5952205,39.3596425,454 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_29,-74.40202468,39.39460885,456 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_29,-74.47848182,39.3436551,456 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,REL1,3004 -0103_4705_3,-74.4760695,39.34172,404 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_31,-74.58153785,39.52686796,433 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_32,-74.779787,39.65501,431 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_33,-74.80356543,39.64118729,429 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_34,-74.5008195,39.331607,427 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_35,-74.522776,39.317,425 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_36,-74.50444002,39.33268316,423 ALBACORE LANE,BRIGANTINE CITY,35,2002,1,RES1,3001 -0103_4705_37,-74.6239239,39.38148937,421 ALBACORE LANE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4705_37,-74.50458088,39.32843533,421 ALBACORE LANE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4705_38,-74.63601458,39.38725425,419 ALBACORE LANE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4705_38,-74.51500176,39.32394619,419 ALBACORE LANE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4705_39,-74.58006305,39.47975947,417 ALBACORE LANE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4705_4,-74.413732,39.370854,406 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_40,-74.62218146,39.45902055,415 ALBACORE LANE,BRIGANTINE CITY,35,2002,1,RES1,3001 -0103_4705_41,-74.5193105,39.318721,413 ALBACORE LANE,BRIGANTINE CITY,35,2002,1,RES3A,3001 -0103_4705_42,-74.51126108,39.33037767,411 ALBACORE LANE,BRIGANTINE CITY,35,2002,1,RES1,3001 -0103_4705_43,-74.79702883,39.38059031,409 ALBACORE LANE,BRIGANTINE CITY,35,2002,1,RES1,3004 -0103_4705_44,-74.82165734,39.39664349,407 ALBACORE LANE,BRIGANTINE CITY,35,2002,1,RES1,3001 -0103_4705_45,-74.518749,39.4511305,405 ALBACORE LANE,BRIGANTINE CITY,35,2002,1,RES1,3001 -0103_4705_46,-74.51657648,39.32425633,403 ALBACORE LANE,BRIGANTINE CITY,35,2002,1,RES1,3001 -0103_4705_5,-74.51263583,39.3234357,408 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_6,-74.50176767,39.3273715,410 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_7,-74.8472885,39.4056605,412 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4705_8,-74.82034967,39.37613201,414 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES3A,3001 -0103_4705_9,-74.78974984,39.62310546,416 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,COM1,3004 -0103_4705_9,-74.44149985,39.35882106,416 SEAHORSE RD,BRIGANTINE CITY,35,1987,1,RES3A,3001 -0103_4706_1,-74.51867625,39.31987933,400 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES3A,3004 -0103_4706_10,-74.5406055,39.507269,70 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_11,-74.60496028,39.50679759,68 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_12,-74.60403684,39.51496702,66 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_13,-74.7931695,39.6406125,64 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_14,-74.77493082,39.67691448,62 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES3A,3001 -0103_4706_15,-74.49283868,39.33077146,60 SAILFISH DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4706_16,-74.4960015,39.328766,58 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_17,-74.50243134,39.32920349,56 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_18,-74.4430499,39.35727533,54 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_19,-74.50634336,39.32327957,52 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_2,-74.62310132,39.44588644,402 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES3A,3001 -0103_4706_20,-74.50558314,39.33403655,50 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_3,-74.606216,39.4906585,404 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES3A,3001 -0103_4706_4,-74.508971,39.3264185,406 ALBACORE LANE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_4706_5,-74.6135615,39.4760115,408 ALBACORE LANE,BRIGANTINE CITY,16,2004,1,RES1,3001 -0103_4706_6,-74.88632538,39.59410718,78 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_7,-74.72743882,39.64141698,76 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_8,-74.858709,39.4563965,74 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4706_9,-74.8621025,39.488307,72 SAILFISH DRIVE,BRIGANTINE CITY,35,2001,1,RES1,3001 -0103_4901_1,-74.88790897,39.56782784,10 SHIPMASTER DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_4901_10,-74.84350799,39.53760139,4619 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3002 -0103_4901_11,-74.6231847,39.41997409,4621 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_12,-74.85976784,39.56513153,1 SCHOONER COVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_13,-74.78767061,39.63827876,2 SCHOONER COVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_14,-74.547815,39.4704155,3 SCHOONER COVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_15,-74.79682294,39.63426123,4 SCHOONER COVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_16,-74.56488734,39.47172645,5 SCHOONER COVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_17,-74.747779,39.5920265,6 SCHOONER COVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_18,-74.798202,39.5332485,7 SCHOONER COVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_2,-74.5773515,39.3538555,4603 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_20,-74.657682,39.5503695,9 SCHOONER COVE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_21,-74.92310607,39.49778176,4623 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_21,-74.44298673,39.35956752,4623 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3002 -0103_4901_22,-74.6566175,39.521381,4625 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_23,-74.59016915,39.5175964,4627 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_24,-74.647207,39.5327165,17 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_4901_25,-74.5981665,39.409719,19 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_4901_27,-74.6639448,39.63515694,23 LIGHTHOUSE DR,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_4901_28,-74.86414305,39.56800545,25 LIGHTHOUSE DR,BRIGANTINE CITY,43,1981,2,RES1,3001 -0103_4901_29,-74.748627,39.63503517,27 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,GOV1,3004 -0103_4901_3,-74.96497489,39.52980023,4605 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES3A,3001 -0103_4901_30,-74.71342239,39.47289351,29 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,RES3A,3001 -0103_4901_31,-74.58345815,39.47450201,31 LIGHTHOUSE DR,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_4901_32,-74.54793126,39.47425093,33 LIGHTHOUSE DR,BRIGANTINE CITY,43,1986,2,COM1,3004 -0103_4901_35,-74.88561783,39.56010392,2 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_4901_38,-74.53221328,39.47199455,5 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1987,2,COM1,3002 -0103_4901_40,-74.5657675,39.478773,7 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1987,2,RES1,3001 -0103_4901_41,-74.9489515,39.5162745,8 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1987,2,RES1,3001 -0103_4901_42,-74.5970228,39.35984531,9 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1987,2,RES1,3001 -0103_4901_43,-74.3741875,39.415302,10 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_4901_46,-74.73222072,39.65208592,13 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_4901_47,-74.5426465,39.53076383,14 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1984,2,RES1,3001 -0103_4901_48,-74.77607142,39.62457784,15 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4901_48,-74.44136584,39.35890154,15 LIGHTHOUSE COVE,BRIGANTINE CITY,43,1985,2,RES1,3001 -0103_4901_51,-74.50574452,39.32878934,41 LIGHTHOUSE DR,BRIGANTINE CITY,43,1986,2,RES1,3001 -0103_4901_52,-74.49773517,39.332356,28 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,COM1,3004 -0103_4901_53,-74.82918034,39.64953847,26 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_4901_54,-74.5081,39.334245,24 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_4901_55,-74.4929845,39.331353,22 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_4901_56,-74.79126839,39.65501667,20 SHIPMASTER DR,BRIGANTINE CITY,43,1971,2,RES1,3001 -0103_4901_57,-74.78028032,39.62583015,18 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_4901_57,-74.44116663,39.35922421,18 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_4901_58,-74.60215991,39.50870208,16 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_4901_59,-74.83949545,39.4826327,14 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_4901_6,-74.87069774,39.59386097,4611 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_60,-74.714091,39.646815,12 SHIPMASTER DR,BRIGANTINE CITY,43,1971,2,RES1,3001 -0103_4901_7,-74.63572436,39.43483085,4613 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_8,-74.754325,39.5980425,4615 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4901_9,-74.84832556,39.55846834,4617 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3002 -0103_4902_11,-74.825692,39.5683755,4614 SCHOONER RD,BRIGANTINE CITY,43,1979,2,RES1,3001 -0103_4902_12,-74.74981045,39.60432569,4612 SCHOONER RD,BRIGANTINE CITY,43,1979,2,RES1,3001 -0103_4902_13,-74.63783642,39.43339477,4610 SCHOONER RD,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_4902_14,-74.8706218,39.59189947,4608 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4902_16,-74.5475225,39.473494,4604 SCHOONER RD,BRIGANTINE CITY,43,1979,2,RES1,3001 -0103_4902_17,-74.42330619,39.37879647,4602 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4902_17,-74.47948451,39.34406165,4602 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES3A,3001 -0103_4902_18,-74.36706483,39.42322064,4 SHIPMASTER DR,BRIGANTINE CITY,16,1971,1,COM3,3004 -0103_4902_19,-74.3651325,39.4229125,4601 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1970,1,RES3A,3001 -0103_4902_2,-74.48661796,39.46335125,4632 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES3A,3001 -0103_4902_20,-74.403645,39.390984,4603 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1976,2,RES3B,3001 -0103_4902_20,-74.47731201,39.3457029,4603 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1976,2,RES3A,3001 -0103_4902_22,-74.79968366,39.61529498,4607 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1976,2,RES3A,3001 -0103_4902_23,-74.7923115,39.6337955,4609 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_4902_24,-74.7902405,39.612121,4611 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_4902_25,-74.87029116,39.56627204,4613 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_4902_26,-74.7035875,39.6331175,4615 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1971,2,RES1,3001 -0103_4902_27,-74.62846794,39.41809769,4617 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1970,2,RES1,3001 -0103_4902_28,-74.5848015,39.432664,4619 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1970,2,RES1,3001 -0103_4902_32,-74.71980131,39.46563339,4627 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_4902_33,-74.44035442,39.48673691,4629 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_4902_35,-74.71687566,39.38971748,4633 HARBOR BEACH BLVD,BRIGANTINE CITY,43,1976,2,RES1,3001 -0103_4902_4,-74.8517377,39.48371663,4628 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_4902_5,-74.63445388,39.5191386,4626 SCHOONER RD,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_4902_6,-74.6786585,39.512353,4624 SCHOONER RD,BRIGANTINE CITY,43,1978,2,RES1,3001 -0103_4902_8,-74.6678305,39.542581,4620 SCHOONER RD,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_5001_3,-74.6247705,39.418972,4032 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_5001_4,-74.5992335,39.32828,4028 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_5001_4,-74.47682935,39.34505002,4028 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_501_1,-74.60206242,39.36615528,203 E BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_501_2,-74.57625306,39.35309939,201 E BEACH AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_501_3,-74.5385505,39.392827,208 E EVANS BLVD,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_502_11,-74.63592505,39.43522858,203 2ND STREET NO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_502_12,-74.69533106,39.63435208,201 2ND STREET NO,BRIGANTINE CITY,15,1952,1,RES3A,3001 -0103_502_13,-74.7752968,39.50497193,204 E BEACH AVE,BRIGANTINE CITY,45,1955,2,COM1,3004 -0103_502_14,-74.549285,39.3821135,206 E BEACH AVE,BRIGANTINE CITY,43,1945,2,RES3B,3001 -0103_502_14,-74.48582785,39.33874701,206 E BEACH AVE,BRIGANTINE CITY,43,1945,2,RES1,3001 -0103_502_15,-74.628516,39.420331,200 3RD STREET NO,BRIGANTINE CITY,43,1959,2,RES1,3001 -0103_502_16,-74.6388025,39.412672,204 3RD STREET NO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_502_17,-74.63999,39.3905485,208 3RD STREET NO,BRIGANTINE CITY,19,1954,1,RES1,3001 -0103_502_18,-74.55269635,39.37530046,212 3RD STREET NO,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_502_19,-74.754447,39.29999,216 3RD STREET NO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_502_2,-74.58066636,39.3363602,221 2ND STREET NO,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_502_20,-74.62844162,39.35845423,220 3RD STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_502_3,-74.5889435,39.349353,219 2ND STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_502_4,-74.58427243,39.35598497,217 2ND STREET NO,BRIGANTINE CITY,16,2016,1,RES1,3002 -0103_502_5,-74.60425966,39.36445268,215 2ND STREET NO,BRIGANTINE CITY,43,1974,2,RES1,3001 -0103_502_7,-74.64234625,39.35721838,211 2ND STREET NO,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_502_8,-74.8311937,39.36218346,209 2ND STREET NO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_502_9,-74.62434843,39.39354831,207 2ND STREET NO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_503_10,-74.63604283,39.34920088,203 ROOSEVELT BLVD SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_503_11,-74.627426,39.3594325,201 ROOSEVELT BLVD SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_503_12,-74.54945472,39.37298659,100 E BEACH AVE,BRIGANTINE CITY,16,1925,1,RES1,3001 -0103_503_13,-74.681493,39.387194,102 E BEACH AVE,BRIGANTINE CITY,16,1959,1,RES1,3002 -0103_503_14,-74.62066437,39.42449922,104 E BEACH AVE,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_503_15,-74.54683066,39.37589152,200 2ND STREET NO,BRIGANTINE CITY,15,1953,1,GOV1,3004 -0103_503_16,-74.64791966,39.35288454,202 2ND STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_503_17,-74.65478795,39.34487518,204 2ND STREET NO,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_503_18,-74.63303534,39.3181306,206 2ND STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_503_19,-74.58212,39.36179042,208 2ND STREET NO,BRIGANTINE CITY,43,1951,2,RES1,3001 -0103_503_2,-74.601469,39.3272655,219 ROOSEVELT BLVD SO,BRIGANTINE CITY,20,2013,1,RES1,3001 -0103_503_20,-74.59629072,39.34538404,210 2ND STREET NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_503_21,-74.59311258,39.34132901,212 2ND STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3002 -0103_503_22,-74.5964405,39.3507455,214 2ND STREET NO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_503_23,-74.58203982,39.34062698,216 2ND STREET NO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_503_24,-74.56395268,39.36576802,218 2ND STREET NO,BRIGANTINE CITY,17,1993,2,RES1,3001 -0103_503_3,-74.5636275,39.3576805,217 ROOSEVELT BLVD SO,BRIGANTINE CITY,17,2011,1,RES1,3001 -0103_503_4,-74.56348934,39.36122549,215 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1955,1,COM1,3004 -0103_503_5,-74.5706115,39.3614845,213 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_503_7,-74.581744,39.3453885,209 ROOSEVELT BLVD SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_503_8,-74.61157921,39.33907484,207 ROOSEVELT BLVD SO,BRIGANTINE CITY,15,1972,1,RES1,3001 -0103_503_9,-74.59779817,39.35628611,205 ROOSEVELT BLVD SO,BRIGANTINE CITY,15,1955,1,COM10,3003 -0103_504_1,-74.625382,39.3388355,100 W BEACH AVE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_504_2,-74.59472902,39.36406372,200 ROOSEVELT BLVD SO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_504_3,-74.60251015,39.35391693,104 W BEACH AVE,BRIGANTINE CITY,19,2013,1,RES1,3001 -0103_505_11,-74.66999497,39.41640819,103 W BRIGANTINE AVE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_505_12,-74.5544535,39.3607155,205 VERNON PLACE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_505_13,-74.5600851,39.35901536,207 VERNON PLACE,BRIGANTINE CITY,43,1959,2,RES4,3004 -0103_505_14,-74.60439208,39.33172134,209 VERNON PLACE,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_505_15,-74.6021145,39.44413987,211 VERNON PLACE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_505_16,-74.5388445,39.4607055,213 VERNON PLACE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_505_17,-74.75621076,39.43253366,215 VERNON PLACE,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_505_19,-74.67441316,39.4124113,219 VERNON PLACE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_505_2,-74.58148643,39.34572595,206 ROOSEVELT BLVD SO,BRIGANTINE CITY,14,1950,1,RES1,3001 -0103_505_20,-74.61783918,39.32026206,105 W BRIGANTINE AVE,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_505_21,-74.60239564,39.32502551,107 W BRIGANTINE AVE,BRIGANTINE CITY,45,1940,2,RES1,3001 -0103_505_3,-74.56953651,39.3602731,208 ROOSEVELT BLVD SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_505_5,-74.57294932,39.34852897,212 ROOSEVELT BLVD SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_505_6,-74.53947385,39.38258854,214 ROOSEVELT BLVD SO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_505_6,-74.48594911,39.33888146,214 ROOSEVELT BLVD SO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_505_7,-74.58040173,39.44258854,216 ROOSEVELT BLVD SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_505_8,-74.80737729,39.36839912,218 ROOSEVELT BLVD SO,BRIGANTINE CITY,20,2007,1,RES1,3001 -0103_505_9,-74.75192895,39.41869284,220 ROOSEVELT BLVD SO,BRIGANTINE CITY,17,2005,1,GOV1,3004 -0103_506_1,-74.56146584,39.36125791,200-06 E BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_508_1,-74.50223,39.526882,102 W BRIGANTINE AVE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_508_2,-74.49701808,39.49762935,104 W BRIGANTINE AVE,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_508_4,-74.494556,39.471652,108 W BRIGANTINE AVE,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_509_1,-74.59019354,39.35150169,101 W BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_509_2,-74.58596013,39.35783354,101 2ND STREET SO,BRIGANTINE CITY,16,1955,1,GOV1,3004 -0103_5101_1,-74.69829994,39.48724185,4407 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_10,-74.83556743,39.38946482,4505 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_11,-74.59725093,39.49836214,4507 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_12,-74.50388717,39.32673099,4509 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,COM1,3004 -0103_5101_13,-74.4314635,39.3678865,4511 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_14,-74.80086418,39.64518233,4513 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_15,-74.42866,39.3601625,3 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_16,-74.44094546,39.36609432,5 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_17,-74.50096339,39.32989066,7 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_18,-74.4936405,39.330328,9 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_19,-74.49791735,39.33117533,11 SHIPMASTER DRIVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_2,-74.62351591,39.31404109,4409 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_20,-74.4996475,39.3301825,13 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_21,-74.5061375,39.3298875,4518 PRIVATEER RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5101_22,-74.50232089,39.32962376,4516 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3002 -0103_5101_23,-74.6515465,39.374158,4514 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_23,-74.51108908,39.3246145,4514 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_24,-74.605876,39.4913365,4512 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_25,-74.5223355,39.3208505,4510 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_26,-74.82642267,39.4114825,4508 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_27,-74.52272359,39.32014466,4506 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_28,-74.449728,39.3718155,4504 PRIVATEER RD,BRIGANTINE CITY,17,1968,1,REL1,3004 -0103_5101_29,-74.46280048,39.35332716,4502 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_3,-74.4891495,39.4334075,4411 HARBOR BEACH BLVD,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_5101_30,-74.524736,39.398198,4500 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_31,-74.53922492,39.40971532,4420 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_32,-74.3918845,39.388149,4418 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_33,-74.37221029,39.4110294,4416 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5101_34,-74.50750499,39.41876503,4414 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_35,-74.55852817,39.36506119,4412 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_36,-74.630322,39.3480015,4410 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_37,-74.6903785,39.4785195,4408 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_4,-74.518702,39.390345,4413 HARBOR BEACH BLVD,BRIGANTINE CITY,17,1968,1,GOV1,3004 -0103_5101_5,-74.38346937,39.39866492,4415 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_6,-74.60319305,39.38588783,4417 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_7,-74.51892612,39.40111832,4419 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_5101_8,-74.5175185,39.3881765,4501 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5101_9,-74.4066935,39.3831,4503 HARBOR BEACH BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_1,-74.68894639,39.44833211,4407 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_10,-74.5165315,39.393187,4505 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_11,-74.460026,39.3465065,4507 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5102_12,-74.49858688,39.32908252,4509 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5102_13,-74.8149983,39.40581093,4511 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_14,-74.84138467,39.39799048,4513 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_15,-74.41762218,39.36934748,4506 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_16,-74.44663852,39.37061008,4504 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5102_17,-74.6131485,39.3675595,4502 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_18,-74.52811267,39.395294,4500 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_19,-74.54984018,39.40238953,4420 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5102_2,-74.64302713,39.34275309,4409 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_20,-74.39656612,39.38788932,4418 WHALERMAN RD,BRIGANTINE CITY,17,2006,1,GOV1,3004 -0103_5102_21,-74.36736085,39.41073409,4416 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_22,-74.49749453,39.41176165,4414 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5102_23,-74.56600571,39.35505296,4412 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_24,-74.63125594,39.34840216,4410 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5102_25,-74.65408612,39.45556779,4408 WHALERMAN RD,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_5102_3,-74.56737029,39.36103489,4411 PRIVATEER RD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_5102_4,-74.50421706,39.41685917,4413 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_5,-74.53023198,39.38451534,4415 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_6,-74.38115984,39.39832648,4417 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_7,-74.496683,39.3373455,4419 PRIVATEER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5102_8,-74.522233,39.406657,4501 PRIVATEER RD,BRIGANTINE CITY,17,2009,1,RES1,3001 -0103_5102_9,-74.63902464,39.32228431,4503 PRIVATEER RD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_5103_1,-74.61005,39.385005,37 SHIPMASTER DR,BRIGANTINE CITY,43,1968,2,COM1,3004 -0103_5103_10,-74.57026225,39.41349788,4 EXPLORER COVE,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5103_11,-74.4041375,39.3796315,12 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_12,-74.36307877,39.40959129,10 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_13,-74.365981,39.40645,8 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_5103_14,-74.37717281,39.41910813,6 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_15,-74.37575967,39.41711617,4 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_16,-74.37350157,39.41667373,2 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_17,-74.3680115,39.411989,4417 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_18,-74.50282216,39.33699179,4419 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_19,-74.50621,39.3399535,3 WHALERMAN COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_2,-74.54080437,39.4155998,18 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_20,-74.4905145,39.334731,5 WHALERMAN COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_21,-74.52507594,39.39986445,7 WHALERMAN COVE,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5103_22,-74.515266,39.3878365,8 WHALERMAN COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_23,-74.44929214,39.37227948,10 WHALERMAN COVE,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5103_24,-74.443473,39.371615,4505 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_25,-74.50598502,39.32975649,4507 WHALERMAN RD,BRIGANTINE CITY,16,1970,1,GOV1,3004 -0103_5103_26,-74.509577,39.330951,4509 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_27,-74.6080775,39.4892015,4511 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_28,-74.62268,39.3778215,4513 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_28,-74.50429466,39.32819535,4513 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_29,-74.440124,39.365398,4515 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5103_3,-74.50107707,39.33608569,16 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_30,-74.49998084,39.33201905,21 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_31,-74.62048552,39.38006522,23 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_31,-74.50411171,39.32795753,23 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_32,-74.629293,39.439087,5 SHIPMASTER COVE,BRIGANTINE CITY,16,1968,1,EDU1,3004 -0103_5103_33,-74.51015139,39.32568818,7 SHIPMASTER COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_34,-74.46777235,39.34586698,6 SHIPMASTER COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_35,-74.51409797,39.32018315,4 SHIPMASTER COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_36,-74.5152445,39.3286645,25 SHIPMASTER DR,BRIGANTINE CITY,43,1968,2,RES1,3001 -0103_5103_37,-74.50208116,39.32721651,27 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_38,-74.46850518,39.34259747,29 SHIPMASTER DR,BRIGANTINE CITY,43,1968,2,RES1,3001 -0103_5103_39,-74.44732577,39.37347304,31 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_4,-74.389227,39.3912415,14 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_40,-74.45181879,39.35361703,33 SHIPMASTER DR,BRIGANTINE CITY,16,1970,1,RES1,3004 -0103_5103_41,-74.52509233,39.3857754,35 SHIPMASTER DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_5,-74.51251299,39.44966217,5 EXPLORER COVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5103_6,-74.63838017,39.36793108,7 EXPLORER COVE,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_5103_7,-74.45272274,39.35352966,9 EXPLORER COVE,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5103_8,-74.462343,39.353697,8 EXPLORER COVE,BRIGANTINE CITY,16,1968,1,REL1,3004 -0103_5103_9,-74.60154802,39.38224927,6 EXPLORER COVE,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_5104_1,-74.5847495,39.357922,4411 WHALERMAN RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_5104_10,-74.50456405,39.41693105,19 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_11,-74.51594097,39.39439785,21 EXPLORER RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5104_12,-74.5198945,39.3930335,23 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_13,-74.37060785,39.4053849,25 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_15,-74.48956799,39.455467,22 LAGOON BLVD,BRIGANTINE CITY,18,1997,1,RES1,3001 -0103_5104_16,-74.5774635,39.3382785,20 LAGOON BLVD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_5104_17,-74.57845117,39.3608915,18 LAGOON BLVD,BRIGANTINE CITY,17,1983,1,RES1,3001 -0103_5104_18,-74.63805246,39.34163272,16 LAGOON BLVD,BRIGANTINE CITY,17,1985,1,GOV1,3004 -0103_5104_19,-74.371349,39.4036535,14 LAGOON BLVD,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_5104_19,-74.48081626,39.34405368,14 LAGOON BLVD,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_5104_2,-74.61901905,39.35126234,3 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_20,-74.3588175,39.411601,12 LAGOON BLVD,BRIGANTINE CITY,16,1976,1,GOV1,3004 -0103_5104_20,-74.48038468,39.34393425,12 LAGOON BLVD,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_5104_21,-74.38037615,39.41892683,10 LAGOON BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_21,-74.47935686,39.3438789,10 LAGOON BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_22,-74.4450715,39.37292,8 LAGOON BLVD,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_5104_22,-74.47939343,39.3436212,8 LAGOON BLVD,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_5104_23,-74.4566255,39.3740205,6 LAGOON BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_23,-74.47749492,39.34486871,6 LAGOON BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_24,-74.5360665,39.3761695,4 LAGOON BLVD,BRIGANTINE CITY,18,1994,1,RES1,3001 -0103_5104_24,-74.48462025,39.3408006,4 LAGOON BLVD,BRIGANTINE CITY,18,1994,1,RES1,3001 -0103_5104_25,-74.54308536,39.37305655,2 LAGOON BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_25,-74.48454455,39.33902283,2 LAGOON BLVD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5104_26,-74.54915017,39.37213652,4407 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_26,-74.48536781,39.339992,4407 WHALERMAN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_3,-74.59942643,39.34034338,5 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_4,-74.596413,39.3432215,7 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3004 -0103_5104_5,-74.57813918,39.33739802,9 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_6,-74.57569706,39.33960832,11 EXPLORER RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_5104_7,-74.5675055,39.357567,13 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_8,-74.48943988,39.4314312,15 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5104_9,-74.495513,39.426652,17 EXPLORER RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5201_1,-74.647599,39.5323935,21 ATLANTIS COVE,BRIGANTINE CITY,17,1986,1,GOV1,3004 -0103_5201_10,-74.48313223,39.53733911,3 ATLANTIS COVE,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_5201_11,-74.45388934,39.50327856,99 LAGOON BLVD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5201_12,-74.6131575,39.420574,97 LAGOON BLVD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5201_13,-74.6030175,39.4310675,95 LAGOON BLVD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5201_14,-74.61267839,39.4289852,93 LAGOON BLVD,BRIGANTINE CITY,17,1986,1,GOV1,3004 -0103_5201_15,-74.62344108,39.38059823,91 LAGOON BLVD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5201_16,-74.61988554,39.38022587,89 LAGOON BLVD,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_5201_17,-74.61916881,39.37866528,87 LAGOON BLVD,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_5201_18,-74.637853,39.3815005,85 LAGOON BLVD,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_5201_19,-74.4725515,39.492712,83 LAGOON BLVD,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_5201_2,-74.86998706,39.49193165,19 ATLANTIS COVE,BRIGANTINE CITY,17,1993,1,GOV1,3004 -0103_5201_20,-74.4688265,39.488788,81 LAGOON BLVD,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_5201_21,-74.48775434,39.47598548,79 LAGOON BLVD,BRIGANTINE CITY,17,1989,1,GOV1,3004 -0103_5201_22,-74.5054005,39.475095,77 LAGOON BLVD,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_5201_23,-74.51756628,39.47304397,4347 HARBOR BEACH BLVD,BRIGANTINE CITY,16,2017,1,RES1,3001 -0103_5201_4,-74.763546,39.6100665,15 ATLANTIS COVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5201_5,-74.788714,39.5514965,13 ATLANTIS COVE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_5201_6,-74.84947976,39.37351358,11 ATLANTIS COVE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5201_7,-74.54759201,39.3742722,9 ATLANTIS COVE,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_5201_9,-74.60170831,39.32509532,5 ATLANTIS COVE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_5202_1,-74.64256887,39.52669906,22 ATLANTIS COVE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_5202_10,-74.63976714,39.38070167,4 ATLANTIS COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_11,-74.47112966,39.48661025,101 LAGOON BLVD,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_5202_12,-74.49554725,39.46908507,105 LAGOON BLVD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5202_13,-74.52038006,39.46375734,3 BEACH COVE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_5202_14,-74.62653687,39.37622426,5 BEACH COVE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_5202_15,-74.595303,39.3124395,7 BEACH COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_16,-74.55253662,39.36224929,9 BEACH COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_17,-74.5056955,39.4255935,11 BEACH COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_18,-74.5556875,39.372688,13 BEACH COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_19,-74.686096,39.632762,15 BEACH COVE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_5202_20,-74.7947985,39.6038605,17 BEACH COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_21,-74.5204655,39.3211365,19 BEACH COVE,BRIGANTINE CITY,16,1976,1,GOV1,3004 -0103_5202_22,-74.61994914,39.52599905,21 BEACH COVE,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_5202_23,-74.6345075,39.528016,23 BEACH COVE,BRIGANTINE CITY,17,1982,1,RES1,3001 -0103_5202_3,-74.760721,39.4450745,18 ATLANTIS COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_4,-74.71911268,39.57648919,16 ATLANTIS COVE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_5202_5,-74.55382146,39.47830048,14 ATLANTIS COVE,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_5202_6,-74.54591616,39.37723847,12 ATLANTIS COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_7,-74.499812,39.427469,10 ATLANTIS COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_8,-74.56701592,39.34476529,8 ATLANTIS COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5202_9,-74.6043185,39.3082455,6 ATLANTIS COVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_5203_1,-74.65825153,39.50997909,24 BEACH COVE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_5203_10,-74.492553,39.495191,6 BEACH COVE,BRIGANTINE CITY,19,2005,1,GOV1,3004 -0103_5203_11,-74.524011,39.4629215,4 BEACH COVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_5203_12,-74.51196921,39.44965896,2 BEACH COVE,BRIGANTINE CITY,16,1977,1,GOV1,3004 -0103_5203_13,-74.75959,39.432716,201 LAGOON BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_5203_14,-74.5490677,39.37413881,203 LAGOON BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_5203_14,-74.48464044,39.33898465,203 LAGOON BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_5203_16,-74.70620315,39.48139305,101 SHIPMASTER DRIVE,BRIGANTINE CITY,18,1988,1,RES1,3004 -0103_5203_17,-74.54520208,39.38823536,103 SHIPMASTER DRIVE,BRIGANTINE CITY,18,1988,1,RES1,3001 -0103_5203_18,-74.6481195,39.433439,105 SHIPMASTER DRIVE,BRIGANTINE CITY,18,1989,1,RES1,3001 -0103_5203_19,-74.62153775,39.38205589,107 SHIPMASTER DRIVE,BRIGANTINE CITY,18,1988,1,GOV1,3004 -0103_5203_2,-74.63663583,39.50543819,22 BEACH COVE,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_5203_20,-74.59395421,39.31268186,109 SHIPMASTER DRIVE,BRIGANTINE CITY,18,1990,1,RES1,3001 -0103_5203_21,-74.57018183,39.34982394,111 SHIPMASTER DRIVE,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_5203_22,-74.494939,39.426155,113 SHIPMASTER DRIVE,BRIGANTINE CITY,19,1989,1,RES1,3001 -0103_5203_23,-74.55207204,39.37696634,115 SHIPMASTER DRIVE,BRIGANTINE CITY,18,1992,1,RES1,3001 -0103_5203_25,-74.72177284,39.58090593,119 SHIPMASTER DRIVE,BRIGANTINE CITY,18,1993,1,RES1,3001 -0103_5203_26,-74.7116395,39.471831,121 SHIPMASTER DRIVE,BRIGANTINE CITY,18,1994,1,RES1,3001 -0103_5203_27,-74.821422,39.4936215,123 SHIPMASTER DRIVE,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_5203_28,-74.64664233,39.53160101,125 SHIPMASTER DRIVE,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_5203_29,-74.6499701,39.52634434,127 SHIPMASTER DRIVE,BRIGANTINE CITY,20,1991,1,GOV1,3004 -0103_5203_3,-74.51456109,39.32139676,20 BEACH COVE,BRIGANTINE CITY,19,2018,1,RES1,3001 -0103_5203_4,-74.76672031,39.60543746,18 BEACH COVE,BRIGANTINE CITY,16,1976,1,GOV1,3004 -0103_5203_5,-74.69684011,39.63555528,16 BEACH COVE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_5203_6,-74.55701561,39.37013845,14 BEACH COVE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_5203_7,-74.49004385,39.43366326,12 BEACH COVE,BRIGANTINE CITY,,1976,1,RES1,3001 -0103_5203_8,-74.63535956,39.3640088,10 BEACH COVE,BRIGANTINE CITY,18,1976,1,RES1,3001 -0103_5301_1,-74.493874,39.3385745,1 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_10,-74.36791817,39.4059115,348 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_11,-74.40967297,39.39172382,346 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_12,-74.409387,39.381782,344 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_13,-74.39112026,39.3889578,342 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES3A,3001 -0103_5301_14,-74.50642767,39.33433766,340 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_15,-74.507071,39.337223,338 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_16,-74.6372855,39.363715,336 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_17,-74.5522308,39.40328795,334 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_18,-74.6386795,39.3635895,332 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_19,-74.48951435,39.33521282,330 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_2,-74.63634563,39.33974438,3 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_20,-74.49923116,39.3349925,328 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5301_21,-74.3895815,39.39323,326 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_22,-74.40679722,39.38110545,324 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_23,-74.44301745,39.37093192,322 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5301_24,-74.37158184,39.4099421,320 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_25,-74.382514,39.4170395,318 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5301_26,-74.5248675,39.388078,316 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_27,-74.52833563,39.39493682,314 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_28,-74.519445,39.4107005,312 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_29,-74.53050882,39.41836959,310 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_3,-74.51089701,39.43772147,5 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_30,-74.48738841,39.4550512,308 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5301_31,-74.58062433,39.34089411,306 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_32,-74.602874,39.346927,304 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_33,-74.57860141,39.36116548,302 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_34,-74.6002845,39.3597295,300 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_4,-74.51660433,39.3945885,7 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_5,-74.51582443,39.4369355,9 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_6,-74.60217156,39.38873756,11 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_7,-74.61071652,39.38992782,13 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_8,-74.50647074,39.33637817,15 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5301_9,-74.39062267,39.39190451,17 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_1,-74.3671515,39.4193145,331 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_10,-74.62892331,39.35799974,313 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_11,-74.36565411,39.41775987,311 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_11,-74.4799199,39.34457293,311 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_12,-74.3686805,39.413933,309 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_12,-74.4779076,39.34380878,309 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_13,-74.55013314,39.37611144,307 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_13,-74.48518644,39.34102067,307 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_14,-74.68663397,39.48028491,305 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_15,-74.76153614,39.38622291,303 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_16,-74.75919812,39.43182065,301 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_17,-74.48064682,39.43290618,336 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_18,-74.52370654,39.40599482,334 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,GOV1,3004 -0103_5302_19,-74.49860683,39.42448836,332 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_2,-74.520713,39.391311,329 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_20,-74.50842739,39.46236095,330 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_21,-74.59433994,39.34596915,328 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_22,-74.60047349,39.35848174,326 ARBEGAST DRIVE,BRIGANTINE CITY,37,1998,1,RES1,3001 -0103_5302_23,-74.6210115,39.362762,324 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_24,-74.3569575,39.4130105,322 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_24,-74.47768769,39.34350274,322 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_25,-74.3828125,39.4159905,320 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_25,-74.4769263,39.34480551,320 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5302_26,-74.62034684,39.48836688,318 ARBEGAST DRIVE,BRIGANTINE CITY,35,1998,1,GOV1,3004 -0103_5302_27,-74.71375907,39.43139424,316 ARBEGAST DRIVE,BRIGANTINE CITY,35,2000,1,RES1,3001 -0103_5302_28,-74.52024563,39.45940702,314 ARBEGAST DRIVE,BRIGANTINE CITY,35,2000,1,RES1,3001 -0103_5302_29,-74.53738267,39.38775859,312 ARBEGAST DRIVE,BRIGANTINE CITY,35,2000,1,RES1,3001 -0103_5302_3,-74.515874,39.3964575,327 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_30,-74.58460757,39.37571634,310 ARBEGAST DRIVE,BRIGANTINE CITY,35,2000,1,RES1,3002 -0103_5302_31,-74.52453516,39.4512862,308 ARBEGAST DRIVE,BRIGANTINE CITY,35,2000,1,RES1,3001 -0103_5302_32,-74.51959016,39.45633701,306 ARBEGAST DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5302_33,-74.51054466,39.46545786,304 ARBEGAST DRIVE,BRIGANTINE CITY,35,1987,1,COM2,3004 -0103_5302_34,-74.4565361,39.4703788,302 ARBEGAST DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5302_35,-74.643352,39.4294525,300 ARBEGAST DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5302_4,-74.50138766,39.41817637,325 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_5,-74.52714818,39.41257643,323 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_6,-74.5040615,39.43555967,321 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5302_7,-74.55832852,39.36680813,319 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_8,-74.591571,39.350879,317 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5302_9,-74.59242065,39.36502394,315 SEASHELL LANE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_10,-74.52770648,39.38249018,6 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_11,-74.4829195,39.344896,8 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_12,-74.46017135,39.35376598,10 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_13,-74.6192225,39.3391405,12 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_14,-74.63404783,39.35239373,14 GULL COVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5303_15,-74.51897657,39.3999498,16 GULL COVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5303_16,-74.50370385,39.41503221,18 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_17,-74.60006039,39.38060887,20 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_18,-74.60719119,39.38692557,22 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_19,-74.56035286,39.41361882,24 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_2,-74.5171305,39.323279,413 LAGOON BLVD,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_20,-74.50544206,39.33635267,26 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_21,-74.376638,39.4015325,28 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_22,-74.37984056,39.40131818,30 GULL COVE,BRIGANTINE CITY,35,1984,1,COM3,3004 -0103_5303_23,-74.40666888,39.38027552,32 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_24,-74.40094538,39.38865672,34 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_25,-74.3703162,39.41477893,36 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_26,-74.52151617,39.38817011,38 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_3,-74.52280183,39.32053051,411 LAGOON BLVD,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_4,-74.51138513,39.32600715,409 LAGOON BLVD,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_5,-74.84750932,39.40139537,407 LAGOON BLVD,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5303_6,-74.50752,39.328369,405 LAGOON BLVD,BRIGANTINE CITY,35,1997,1,RES1,3001 -0103_5303_7,-74.51100192,39.32361614,403 LAGOON BLVD,BRIGANTINE CITY,35,1997,1,GOV1,3004 -0103_5303_8,-74.4714265,39.340256,401 LAGOON BLVD,BRIGANTINE CITY,35,1997,1,RES1,3001 -0103_5303_9,-74.4501653,39.37452142,4 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_1,-74.5936675,39.3232055,301 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_10,-74.59190519,39.43103999,319 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_11,-74.45408888,39.5024461,321 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5304_12,-74.70232279,39.4198127,323 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_13,-74.49141258,39.45722012,325 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_14,-74.57556357,39.38177786,327 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5304_15,-74.53763453,39.38575634,329 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_16,-74.5172932,39.46084975,331 ARBEGAST DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5304_17,-74.7144205,39.4153365,333 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_18,-74.64320683,39.466515,335 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_19,-74.36595072,39.42198454,337 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_19,-74.47744351,39.34481354,337 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_2,-74.61453919,39.31678736,303 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_20,-74.36286468,39.41214381,339 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_20,-74.4802129,39.34450423,339 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_21,-74.63184672,39.36538746,341 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,COM1,3004 -0103_5304_22,-74.5942531,39.36505775,343 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_23,-74.59878183,39.34311806,345 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_24,-74.56312518,39.36106656,347 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES3A,3001 -0103_5304_25,-74.4901745,39.469377,349 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_26,-74.50554902,39.42482248,351 ARBEGAST DRIVE,BRIGANTINE CITY,37,1984,1,RES1,3001 -0103_5304_27,-74.5011955,39.4172575,353 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_28,-74.51653517,39.39638158,355 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_29,-74.52185598,39.38887317,357 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_3,-74.59510546,39.31223035,305 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_30,-74.4449975,39.3741995,359 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_31,-74.3666615,39.408043,361 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_32,-74.52839633,39.39433566,364 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_33,-74.51507077,39.40366315,362 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_34,-74.49360415,39.43493324,360 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_35,-74.57519094,39.3569671,358 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_36,-74.57780719,39.33610432,356 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_37,-74.57771427,39.36590535,354 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_38,-74.59976089,39.35820543,352 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_39,-74.6493655,39.457653,350 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_4,-74.59574516,39.31659284,307 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_40,-74.373534,39.4159675,348 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_40,-74.48024648,39.34496117,348 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_41,-74.47854298,39.3710305,346 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_41,-74.48004396,39.34345982,346 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_42,-74.66377645,39.44764394,344 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_43,-74.71621883,39.40215947,342 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_44,-74.76088134,39.43110058,340 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_45,-74.54171436,39.38535406,338 GULL COVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5304_46,-74.59689483,39.38232891,336 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_47,-74.50590734,39.45857665,334 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_48,-74.5311545,39.4699295,332 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_49,-74.4718843,39.4833802,330 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3002 -0103_5304_5,-74.5031845,39.528658,309 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5304_50,-74.59345454,39.43184419,328 GULL COVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5304_51,-74.4699154,39.48952784,326 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_52,-74.465888,39.536236,324 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_53,-74.489762,39.524875,322 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_54,-74.59178815,39.32031607,320 GULL COVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5304_55,-74.61440634,39.32415896,318 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_56,-74.61100034,39.31972974,316 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_57,-74.6068167,39.32650865,314 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_58,-74.60836128,39.32693211,312 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_59,-74.56683408,39.34903239,310 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_6,-74.49129792,39.52367897,311 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_60,-74.55152736,39.35998794,308 GULL COVE,BRIGANTINE CITY,35,1984,1,GOV1,3004 -0103_5304_61,-74.56334368,39.35807773,306 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_62,-74.6334845,39.3620125,304 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_63,-74.6505175,39.3569005,302 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_64,-74.76080348,39.33936279,300 GULL COVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_7,-74.51022291,39.51045769,313 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5304_8,-74.489813,39.4948975,315 ARBEGAST DRIVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5304_9,-74.638394,39.3833355,317 ARBEGAST DRIVE,BRIGANTINE CITY,35,1984,1,RES1,3001 -0103_5305_1,-74.8321305,39.427413,301 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_10,-74.546532,39.473166,319 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_11,-74.55304833,39.46870533,321 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_12,-74.5509614,39.47302608,323 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_13,-74.81132233,39.40862305,325 GULL COVE,BRIGANTINE CITY,35,1997,1,RES1,3001 -0103_5305_14,-74.53930815,39.38435047,327 GULL COVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5305_15,-74.53883314,39.3725586,329 GULL COVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5305_16,-74.50582543,39.42596218,331 GULL COVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5305_17,-74.76259369,39.36489798,333 GULL COVE,BRIGANTINE CITY,35,1998,1,RES1,3001 -0103_5305_18,-74.637281,39.360553,335 GULL COVE,BRIGANTINE CITY,35,1999,1,RES1,3001 -0103_5305_19,-74.584185,39.330509,337 GULL COVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5305_2,-74.55112487,39.47205723,303 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_20,-74.4902185,39.5227755,339 GULL COVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5305_21,-74.484805,39.525267,341 GULL COVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5305_22,-74.62233052,39.37882491,343 GULL COVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5305_23,-74.45500852,39.50276259,345 GULL COVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5305_24,-74.47199977,39.4838131,347 GULL COVE,BRIGANTINE CITY,35,1987,1,RES1,3001 -0103_5305_3,-74.84625573,39.396121,305 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_4,-74.81907086,39.39075147,307 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_5,-74.83343722,39.37482746,309 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_6,-74.834413,39.379327,311 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_7,-74.54949941,39.47678821,313 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_8,-74.78847834,39.54754154,315 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5305_9,-74.71816904,39.56232235,317 GULL COVE,BRIGANTINE CITY,35,1991,1,RES1,3001 -0103_5401_1,-74.3847795,39.396583,567 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,COM4,3004 -0103_5401_1,-74.47975686,39.34438154,567 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_10,-74.524791,39.3137675,549 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_11,-74.492944,39.3339855,547 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_12,-74.48930018,39.33217798,545 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_13,-74.61077407,39.47377814,543 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_14,-74.6235565,39.439293,541 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_15,-74.62018021,39.43716495,539 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_16,-74.6620755,39.445937,537 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3002 -0103_5401_17,-74.67828201,39.44667787,535 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3002 -0103_5401_18,-74.70643605,39.44486493,533 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_19,-74.36763503,39.40648288,531 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_2,-74.405589,39.3789175,565 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,COM1,3004 -0103_5401_2,-74.47771663,39.34570178,565 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_20,-74.363188,39.415607,529 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_21,-74.35981435,39.41335767,527 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_22,-74.92667963,39.50684892,525 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3002 -0103_5401_23,-74.947849,39.518741,523 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_24,-74.6835726,39.49642474,521 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3002 -0103_5401_25,-74.755943,39.4331975,519 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_26,-74.8087835,39.375098,517 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_27,-74.8312435,39.390987,515 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_28,-74.8243545,39.4071645,513 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,COM1,3004 -0103_5401_29,-74.50110085,39.43017921,511 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,GOV1,3004 -0103_5401_3,-74.62621726,39.43581816,563 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_30,-74.46172369,39.46901247,509 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,COM1,3004 -0103_5401_31,-74.47721867,39.45628454,507 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_32,-74.72704001,39.45781881,505 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_33,-74.7106655,39.472287,503 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_34,-74.5436455,39.542142,501 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_35,-74.56082448,39.54295612,25 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_36,-74.63153366,39.53280748,23 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_37,-74.64943159,39.53082235,21 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_38,-74.9146455,39.488683,19 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_38,-74.44306816,39.35953438,19 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_39,-74.58737599,39.43295433,17 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_4,-74.6234015,39.432328,561 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_40,-74.6299855,39.411099,15 DELMAR LANE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_5401_41,-74.62713391,39.41710266,13 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_42,-74.631755,39.421583,11 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_43,-74.62101486,39.43469829,9 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_44,-74.6713025,39.6177325,7 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_45,-74.71277968,39.56938024,5 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_46,-74.8004175,39.53887533,3 DELMAR LANE,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_5,-74.63378877,39.4343789,559 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_6,-74.66624008,39.42012805,557 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_7,-74.5645115,39.4450045,555 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_8,-74.55370722,39.46872504,553 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5401_9,-74.58430715,39.44596053,551 LAGOON BLVD,BRIGANTINE CITY,37,1985,1,RES1,3001 -0103_5501_1,-74.58932645,39.37586266,2 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5501_10,-74.62437608,39.41049286,20 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5501_10,-74.51804582,39.32553606,20 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5501_11,-74.6671805,39.393639,22 HORIZON LANE,BRIGANTINE CITY,37,2000,1,GOV1,3004 -0103_5501_11,-74.51714238,39.32546992,22 HORIZON LANE,BRIGANTINE CITY,37,2000,1,COM3,3004 -0103_5501_12,-74.63188132,39.40984448,24 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5501_12,-74.51828868,39.32534876,24 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5501_13,-74.63320781,39.41863841,26 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_13,-74.51596437,39.31828429,26 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_14,-74.48643,39.433675,28 HORIZON LANE,BRIGANTINE CITY,37,1987,1,GOV1,3004 -0103_5501_14,-74.47680356,39.34397139,28 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_15,-74.562602,39.4065425,30 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_16,-74.55753478,39.47884987,32 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_17,-74.5812095,39.4729465,34 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_18,-74.54152719,39.39139359,36 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_19,-74.59168346,39.37659376,38 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_2,-74.5427595,39.3908475,4 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5501_20,-74.59737,39.3713875,40 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_21,-74.50807521,39.3231448,42 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_22,-74.64823654,39.40178231,44 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_23,-74.64447429,39.40906746,46 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_24,-74.3777525,39.4006685,48 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_24,-74.48112977,39.34486076,48 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_25,-74.4280985,39.370331,50 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_25,-74.47971302,39.34489242,50 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_26,-74.62254048,39.43257353,52 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_27,-74.63496109,39.43425413,54 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_28,-74.700712,39.423578,56 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_29,-74.548495,39.4696215,58 HORIZON LANE,BRIGANTINE CITY,37,1987,1,RES1,3001 -0103_5501_3,-74.6239493,39.38009397,6 HORIZON LANE,BRIGANTINE CITY,37,2000,1,GOV1,3004 -0103_5501_4,-74.53152044,39.49171807,8 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5501_5,-74.562323,39.4120595,10 HORIZON LANE,BRIGANTINE CITY,37,2000,1,COM1,3004 -0103_5501_6,-74.56730607,39.40588365,12 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5501_7,-74.54194222,39.41632141,14 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5501_8,-74.50543766,39.41059249,16 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5501_8,-74.48073779,39.3439475,16 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5501_9,-74.6603725,39.365981,18 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5501_9,-74.48375204,39.34032912,18 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5502_1,-74.54116743,39.46664822,31 HORIZON LANE,BRIGANTINE CITY,37,1998,1,RES1,3001 -0103_5502_10,-74.62779769,39.4170045,1 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5502_11,-74.49299167,39.3327685,3 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5502_12,-74.52226433,39.31395257,5 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5502_13,-74.4406005,39.3660735,7 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5502_14,-74.60476473,39.37091993,9 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5502_15,-74.588142,39.3712515,11 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5502_16,-74.5432705,39.390838,13 HORIZON LANE,BRIGANTINE CITY,37,2001,1,RES1,3001 -0103_5502_17,-74.52844541,39.30923614,15 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_18,-74.638907,39.4011615,17 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_19,-74.66593833,39.39840337,19 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_2,-74.57026807,39.45174209,29 HORIZON LANE,BRIGANTINE CITY,37,1998,1,RES1,3001 -0103_5502_20,-74.6214745,39.4252675,21 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_21,-74.38549859,39.39666386,23 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_21,-74.47811208,39.34421663,23 HORIZON LANE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_3,-74.67069208,39.41413019,27 HORIZON LANE,BRIGANTINE CITY,37,1998,1,RES1,3001 -0103_5502_4,-74.63393131,39.43053984,25 HORIZON LANE,BRIGANTINE CITY,37,1998,1,RES1,3001 -0103_5502_5,-74.62877401,39.43178704,10 HARBOR BEACH COVE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_6,-74.6322785,39.419501,8 HARBOR BEACH COVE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_7,-74.40476201,39.38063127,6 HARBOR BEACH COVE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_7,-74.47983377,39.34560391,6 HARBOR BEACH COVE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_8,-74.402412,39.3824385,4 HARBOR BEACH COVE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_8,-74.47889157,39.34443486,4 HARBOR BEACH COVE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_9,-74.3817095,39.4001395,2 HARBOR BEACH COVE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5502_9,-74.47670225,39.34382713,2 HARBOR BEACH COVE,BRIGANTINE CITY,37,2000,1,RES1,3001 -0103_5503_1,-74.56979504,39.47665625,1 BRIGHTON DRIVE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5503_2,-74.4472705,39.4871295,2 BRIGHTON DRIVE,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_5503_3,-74.5962665,39.3809245,3 BRIGHTON DRIVE,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_5503_4,-74.60081094,39.38365333,4 BRIGHTON DRIVE,BRIGANTINE CITY,18,1988,1,RES1,3001 -0103_5503_5,-74.55474811,39.39449355,5 BRIGHTON DRIVE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5503_6,-74.45511169,39.50139103,6 BRIGHTON DRIVE,BRIGANTINE CITY,18,1988,1,RES1,3001 -0103_5504_1,-74.62790054,39.4150782,1 OCKENLANDER DRIVE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_5504_1,-74.51954215,39.32462151,1 OCKENLANDER DRIVE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_5504_2,-74.609212,39.377111,2 OCKENLANDER DRIVE,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_5504_3,-74.58443056,39.37718171,3 OCKENLANDER DRIVE,BRIGANTINE CITY,18,1996,1,RES1,3001 -0103_5504_4,-74.588807,39.3686945,4 OCKENLANDER DRIVE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5504_5,-74.60242688,39.39024374,5 OCKENLANDER DRIVE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_5504_6,-74.562023,39.41455,6 OCKENLANDER DRIVE,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_5504_7,-74.6198998,39.37871024,7 OCKENLANDER DRIVE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_5601_1,-74.49579897,39.33576964,4821 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_5601_2,-74.44548247,39.37200619,4817 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_5601_2,-74.48029995,39.34459238,4817 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_5601_3,-74.684632,39.443152,4813 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_5601_4,-74.75527731,39.43454255,4809 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,1946,1,RES1,3001 -0103_5601_5,-74.53036305,39.45816571,4805 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_5602_1,-74.46358734,39.47312804,4733 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1930,1,RES1,3001 -0103_5602_3,-74.463857,39.4971595,4725 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5602_4,-74.470972,39.48909,4721 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,15,1945,1,RES1,3001 -0103_5602_5,-74.5013535,39.5067715,4717 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,47,1981,2,RES1,3001 -0103_5602_6,-74.58875579,39.31463963,4713 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_5602_7,-74.5910605,39.3190385,4705 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_5602_9,-74.5570288,39.35867504,4701 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_5603_3,-74.5321885,39.380245,4625 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1939,1,RES1,3001 -0103_5603_4,-74.55681044,39.36905716,4621 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_5603_5,-74.82631515,39.40498402,4617 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_5603_6,-74.5541135,39.477247,4615 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1947,1,RES1,3001 -0103_5605_17,-74.766934,39.3346535,4608 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,19,2001,1,RES1,3001 -0103_5605_19,-74.491879,39.4329355,4600 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,47,1987,2,RES1,3001 -0103_5605_9,-74.51307254,39.46577016,4700 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,47,1989,2,RES1,3004 -0103_5701_2,-74.51990801,39.32028267,4529 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_5701_3,-74.83800834,39.4454985,4525 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_5701_5,-74.53935426,39.53327444,4513 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,1952,1,RES1,3001 -0103_5701_8,-74.603109,39.5951895,4501 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,45,1977,2,RES1,3001 -0103_5702_2,-74.82221531,39.62025266,4429 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,45,1960,2,RES1,3001 -0103_5702_3,-74.58632826,39.32496777,4425 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_5702_4,-74.8063295,39.6258604,4421 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,19,2015,1,RES1,3001 -0103_5702_5,-74.8070205,39.639031,4417 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1956,2,RES1,3001 -0103_5702_6,-74.573813,39.4273965,4413 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_5702_7,-74.571622,39.4278265,4401 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_5703_1,-74.59760603,39.3830542,4329 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,1956,1,RES1,3001 -0103_5703_3,-74.92608679,39.51048037,4321 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_5703_4,-74.939893,39.516219,4317 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,45,1954,2,RES1,3001 -0103_5703_5,-74.5152995,39.327025,4313 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,2013,1,RES1,3001 -0103_5703_6,-74.96177975,39.51875839,4309 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,19,2003,1,RES1,3001 -0103_5703_8,-74.77784791,39.64319888,4301 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,45,1987,2,RES1,3001 -0103_5704_10,-74.7098213,39.47176118,4436 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_5704_11,-74.83423405,39.48286182,4432 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,1987,1,RES1,3001 -0103_5704_15,-74.643361,39.534442,4416 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_5704_18,-74.77071666,39.61464402,4404 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,1997,1,RES1,3001 -0103_5704_3,-74.6090435,39.4409415,4524 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_5704_6,-74.72593568,39.59056063,4512 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,45,1983,2,RES1,3001 -0103_5704_7,-74.74660194,39.4456845,4508 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2003,1,GOV1,3004 -0103_5704_8,-74.75160769,39.453194,4504 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_5704_9,-74.5167295,39.3231715,4500 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,1997,1,RES1,3001 -0103_5705_1,-74.61938997,39.43592084,4328 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,19,2003,1,RES1,3001 -0103_5705_2,-74.80522523,39.6341124,4324 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,2005,1,RES3A,3001 -0103_5705_4,-74.57181263,39.42940991,4316 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_5705_5,-74.50620711,39.40656633,4312 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,1999,1,GOV1,3004 -0103_5705_5,-74.47878866,39.34532489,4312 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,18,1999,1,GOV1,3004 -0103_5705_6,-74.53057232,39.40298243,4308 ATL-BRIGANTINE BLVD,BRIGANTINE CITY,17,1982,1,RES1,3001 -0103_5801_1,-74.45235282,39.35610007,1512 E SHORE DR,BRIGANTINE CITY,17,1989,1,GOV1,3004 -0103_5801_1,-74.47549142,39.34413071,1512 E SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5801_10,-74.51515936,39.44165355,1408 E SHORE DR,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_5801_10,-74.47852005,39.34341313,1408 E SHORE DR,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_5801_11,-74.50957629,39.44070858,1406 E SHORE DR,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5801_11,-74.47725227,39.34410888,1406 E SHORE DR,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5801_12,-74.5222745,39.4432825,1404 E SHORE DR,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_5801_12,-74.48110873,39.34451602,1404 E SHORE DR,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_5801_13,-74.39580262,39.38946827,1402 E SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5801_13,-74.48047715,39.34405091,1402 E SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5801_14,-74.38774134,39.393753,1400 E SHORE DR,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5801_14,-74.47978056,39.34554216,1400 E SHORE DR,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5801_15,-74.3872095,39.3936935,1 TRAVERS PLACE,BRIGANTINE CITY,17,1984,1,GOV1,3004 -0103_5801_15,-74.47755943,39.34448621,1 TRAVERS PLACE,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_5801_16,-74.37373358,39.40006611,3 TRAVERS PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5801_16,-74.47670699,39.34490239,3 TRAVERS PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5801_17,-74.37428577,39.40189513,5 TRAVERS PLACE,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_5801_17,-74.47801627,39.3450232,5 TRAVERS PLACE,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_5801_18,-74.50996233,39.33865654,7 TRAVERS PLACE,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_5801_18,-74.47904311,39.34460395,7 TRAVERS PLACE,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_5801_19,-74.50771482,39.33529708,9 TRAVERS PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5801_19,-74.47761914,39.34391984,9 TRAVERS PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5801_2,-74.46445582,39.35838805,1510 E SHORE DR,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5801_2,-74.47587442,39.34312138,1510 E SHORE DR,BRIGANTINE CITY,17,1985,1,GOV1,3004 -0103_5801_20,-74.49884075,39.33691967,11 TRAVERS PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5801_20,-74.48127898,39.34389343,11 TRAVERS PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5801_21.01,-74.488421,39.338354,13 TRAVERS PLACE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5801_21.01,-74.47530306,39.3438295,13 TRAVERS PLACE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5801_21.02,-74.459626,39.3530635,15 TRAVERS PLACE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5801_21.02,-74.47588873,39.34396597,15 TRAVERS PLACE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5801_22,-74.44431182,39.35178202,17 TRAVERS PLACE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5801_22,-74.47624692,39.34390571,17 TRAVERS PLACE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5801_23,-74.48235016,39.34364719,19 TRAVERS PLACE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5801_23,-74.47537317,39.34394261,19 TRAVERS PLACE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5801_25,-74.469536,39.343847,25 TRAVERS PLACE,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_5801_25,-74.47515214,39.34350729,25 TRAVERS PLACE,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_5801_3,-74.466458,39.3564175,1508 E SHORE DR,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_5801_3,-74.47653309,39.34320012,1508 E SHORE DR,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_5801_4,-74.4918765,39.3374385,1506 E SHORE DR,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_5801_4,-74.47547603,39.34336187,1506 E SHORE DR,BRIGANTINE CITY,18,2000,1,GOV1,3004 -0103_5801_5,-74.49946973,39.336526,1504 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_5801_5,-74.47788525,39.34483951,1504 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_5801_6,-74.49897655,39.33473517,1502 E SHORE DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_5801_6,-74.47754821,39.34386646,1502 E SHORE DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_5801_7,-74.51050721,39.33724559,1418 E SHORE DR,BRIGANTINE CITY,17,1969,1,RES1,3001 -0103_5801_7,-74.47754242,39.34492522,1418 E SHORE DR,BRIGANTINE CITY,17,1969,1,RES1,3001 -0103_5801_8,-74.372404,39.398582,1414 E SHORE DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_5801_8,-74.47898741,39.34451357,1414 E SHORE DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_5801_9,-74.39406634,39.38786946,1412 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_5801_9,-74.4792113,39.34484386,1412 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_5802_1,-74.4817255,39.336337,231 HAGEN RD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5802_1,-74.47500974,39.34357106,231 HAGEN RD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5802_10,-74.4933353,39.33850938,1304 E SHORE DR,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_5802_10,-74.47564979,39.34362904,1304 E SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_5802_11,-74.44679409,39.35527569,1302 E SHORE DR,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_5802_11,-74.47648319,39.34356068,1302 E SHORE DR,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_5802_13,-74.48168991,39.34964385,1 HUTCHISON PLACE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_5802_13,-74.47636038,39.34343343,1 HUTCHISON PLACE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_5802_14,-74.47332693,39.34280041,3 HUTCHISON PLACE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_5802_14,-74.47531278,39.34342898,3 HUTCHISON PLACE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_5802_15,-74.46858772,39.34543883,5 HUTCHISON PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5802_15,-74.47564867,39.34327023,5 HUTCHISON PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5802_16,-74.48393982,39.33460052,7 HUTCHISON PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5802_16,-74.47542407,39.34403882,7 HUTCHISON PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5802_17.01,-74.48626538,39.33748235,9 HUTCHISON PLACE,BRIGANTINE CITY,16,1987,1,RES1,3001 -0103_5802_17.01,-74.47632153,39.34330665,9 HUTCHISON PLACE,BRIGANTINE CITY,16,1987,1,RES1,3001 -0103_5802_17.02,-74.47640481,39.34128166,11 HUTCHISON PLACE,BRIGANTINE CITY,17,1989,1,IND1,3004 -0103_5802_17.02,-74.47356742,39.3433277,11 HUTCHISON PLACE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5802_18,-74.4791,39.341789,13 HUTCHISON PLACE,BRIGANTINE CITY,17,1983,1,RES1,3001 -0103_5802_18,-74.47390458,39.3432389,13 HUTCHISON PLACE,BRIGANTINE CITY,17,1983,1,REL1,3004 -0103_5802_19,-74.46446782,39.34775385,225 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5802_19,-74.47013093,39.34089446,225 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5802_2,-74.48339632,39.33452653,14 TRAVERS PLACE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5802_2,-74.4759636,39.34344589,14 TRAVERS PLACE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5802_20,-74.47221883,39.34078851,227 HAGEN RD,BRIGANTINE CITY,17,1995,1,RES1,3001 -0103_5802_20,-74.47408591,39.34318781,227 HAGEN RD,BRIGANTINE CITY,17,1995,1,RES3A,3004 -0103_5802_21,-74.48219467,39.34147999,229 HAGEN RD,BRIGANTINE CITY,17,1989,1,RES3A,3001 -0103_5802_21,-74.47346327,39.34336631,229 HAGEN RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5802_3,-74.4668835,39.34404933,12 TRAVERS PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5802_3,-74.47595779,39.34358842,12 TRAVERS PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5802_4,-74.4837165,39.350004,10 TRAVERS PLACE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_5802_4,-74.47612692,39.34379321,10 TRAVERS PLACE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_5802_5,-74.48007467,39.34650498,8 TRAVERS PLACE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5802_5,-74.47521498,39.34377723,8 TRAVERS PLACE,BRIGANTINE CITY,17,1989,1,RES3A,3001 -0103_5802_6,-74.48483018,39.34572495,6 TRAVERS PLACE,BRIGANTINE CITY,17,1992,1,COM1,3004 -0103_5802_6,-74.47580179,39.34380584,6 TRAVERS PLACE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5802_7,-74.451261,39.353057,4 TRAVERS PLACE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5802_7,-74.47607172,39.34368496,4 TRAVERS PLACE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5802_8,-74.46121983,39.35710253,2 TRAVERS PLACE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_5802_8,-74.47601676,39.3440668,2 TRAVERS PLACE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_5802_9,-74.50792389,39.33772717,1306 E SHORE DR,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_5802_9,-74.4761308,39.34419003,1306 E SHORE DR,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_5803_1.01,-74.52073644,39.44489536,1423 E SHORE DR,BRIGANTINE CITY,,1986,1,RES1,3001 -0103_5803_1.01,-74.48010154,39.34357597,1423 E SHORE DR,BRIGANTINE CITY,,1986,1,IND2,3002 -0103_5803_1.02,-74.52286021,39.44999296,1425 E SHORE DR,BRIGANTINE CITY,20,2009,1,RES1,3001 -0103_5803_1.02,-74.48026091,39.34566568,1425 E SHORE DR,BRIGANTINE CITY,20,2009,1,RES1,3004 -0103_5803_1.03,-74.51245106,39.44809366,1427 E SHORE DR,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_5803_1.03,-74.47951084,39.34575435,1427 E SHORE DR,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_5803_10,-74.49596089,39.45412823,1405 E SHORE DR,BRIGANTINE CITY,,1960,1,RES1,3001 -0103_5803_10,-74.47845642,39.34496055,1405 E SHORE DR,BRIGANTINE CITY,,1960,1,RES1,3001 -0103_5803_11,-74.52239717,39.45250849,1403 E SHORE DR,BRIGANTINE CITY,20,2012,1,RES1,3001 -0103_5803_11,-74.47905993,39.34573449,1403 E SHORE DR,BRIGANTINE CITY,20,2012,1,RES1,3001 -0103_5803_13,-74.386828,39.392368,1311 E SHORE DR,BRIGANTINE CITY,16,1948,1,RES3B,3001 -0103_5803_13,-74.47748323,39.3445314,1311 E SHORE DR,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_5803_14,-74.37277614,39.39975619,1309 E SHORE DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_5803_14,-74.47936749,39.34448928,1309 E SHORE DR,BRIGANTINE CITY,16,1960,1,GOV1,3004 -0103_5803_15,-74.51183757,39.33784797,1307 E SHORE DR,BRIGANTINE CITY,,1958,2,GOV1,3004 -0103_5803_15,-74.48161448,39.34431699,1307 E SHORE DR,BRIGANTINE CITY,,1958,2,RES1,3001 -0103_5803_16,-74.50145339,39.33614787,1305 E SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5803_16,-74.47928811,39.34334202,1305 E SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_5803_18,-74.44752469,39.35568067,1301 E SHORE DR,BRIGANTINE CITY,45,1987,2,RES1,3001 -0103_5803_18,-74.47658457,39.34369932,1301 E SHORE DR,BRIGANTINE CITY,45,1987,2,RES1,3001 -0103_5803_19,-74.48049832,39.34964352,1229 E SHORE DR,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_5803_19,-74.47603656,39.3439545,1229 E SHORE DR,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_5803_20,-74.46892245,39.34585238,1227 E SHORE DR,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_5803_20,-74.47587247,39.34353738,1227 E SHORE DR,BRIGANTINE CITY,16,1957,1,RES3A,3001 -0103_5803_21,-74.48599734,39.33716099,1225 E SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_5803_21,-74.47601542,39.3436422,1225 E SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_5803_3,-74.50863587,39.45956138,1419 E SHORE DR,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5803_3,-74.4781601,39.34519141,1419 E SHORE DR,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5803_4,-74.50864382,39.45493066,1417 E SHORE DR,BRIGANTINE CITY,20,2012,1,RES1,3001 -0103_5803_4,-74.47866717,39.34490673,1417 E SHORE DR,BRIGANTINE CITY,20,2012,1,RES1,3001 -0103_5803_7,-74.49240744,39.46938671,1411 E SHORE DR,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_5803_7,-74.47846227,39.3454753,1411 E SHORE DR,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_5803_8,-74.497791,39.4693945,1409 E SHORE DR,BRIGANTINE CITY,18,1992,1,RES1,3001 -0103_5803_8,-74.47667851,39.34442542,1409 E SHORE DR,BRIGANTINE CITY,18,1992,1,RES1,3001 -0103_5803_9,-74.50847096,39.45623502,1407 E SHORE DR,BRIGANTINE CITY,17,1907,1,RES1,3001 -0103_5803_9,-74.47852775,39.34485461,1407 E SHORE DR,BRIGANTINE CITY,17,1907,1,RES1,3001 -0103_5901_1,-74.4814225,39.3401985,1516 E SHORE DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_5901_1,-74.47365992,39.3432842,1516 E SHORE DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_5901_10.01,-74.50710473,39.33034632,228 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_10.01,-74.4717953,39.34482373,228 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_11.01,-74.50493697,39.33265263,226 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5901_11.01,-74.47114504,39.34470918,226 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5901_12.01,-74.49209854,39.33112751,224 HAGEN RD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5901_12.01,-74.47009837,39.34430714,224 HAGEN RD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_5901_13.01,-74.493187,39.332154,222 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_13.01,-74.47067478,39.34526257,222 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_14.01,-74.48711541,39.33369833,220 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5901_14.01,-74.46851375,39.34437771,220 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5901_15.01,-74.43544788,39.36460817,218 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES3A,3001 -0103_5901_15.01,-74.46736317,39.34276263,218 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5901_16.01,-74.82855372,39.64774418,216 HAGEN RD,BRIGANTINE CITY,17,2012,1,RES1,3001 -0103_5901_16.01,-74.46589167,39.34840745,216 HAGEN RD,BRIGANTINE CITY,17,2012,1,RES1,3001 -0103_5901_17.01,-74.80866924,39.64166183,214 HAGEN RD,BRIGANTINE CITY,17,1993,1,GOV1,3004 -0103_5901_17.01,-74.46159979,39.34546507,214 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_18.01,-74.7858345,39.653687,212 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES3A,3001 -0103_5901_18.01,-74.45867826,39.35514972,212 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5901_19.01,-74.52069066,39.46360052,210 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_19.01,-74.47992743,39.3433307,210 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_2,-74.47450329,39.34043939,246 HAGEN RD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5901_2,-74.47374796,39.34324156,246 HAGEN RD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_5901_20.01,-74.88641585,39.59476353,208 HAGEN RD,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_5901_20.01,-74.46146747,39.35762882,208 HAGEN RD,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_5901_21.01,-74.948113,39.527198,206 HAGEN RD,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_5901_21.01,-74.45063933,39.35535668,206 HAGEN RD,BRIGANTINE CITY,17,1994,1,GOV1,3004 -0103_5901_22.01,-74.913443,39.533016,204 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES3B,3001 -0103_5901_22.01,-74.44238848,39.35846983,204 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_23.01,-74.625481,39.543303,202 HAGEN RD,BRIGANTINE CITY,17,1995,1,RES1,3001 -0103_5901_24.01,-74.56841152,39.35515947,200 HAGEN RD,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_5901_3,-74.47649065,39.34201642,244 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5901_3,-74.47379786,39.34347291,244 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_5901_4.01,-74.46287286,39.34895434,242 HAGEN RD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_5901_4.01,-74.4700884,39.34188585,242 HAGEN RD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_5901_6.01,-74.51201686,39.33115493,236 HAGEN RD,BRIGANTINE CITY,17,1994,1,COM3,3004 -0103_5901_6.01,-74.47047823,39.34311943,236 HAGEN RD,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_5901_7.01,-74.5195375,39.317601,234 HAGEN RD,BRIGANTINE CITY,17,1993,1,GOV1,3004 -0103_5901_7.01,-74.47260091,39.34393468,234 HAGEN RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_5901_8.01,-74.50236718,39.32630597,232 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5901_8.01,-74.47161315,39.34459897,232 HAGEN RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_5901_9.01,-74.49995,39.3287475,230 HAGEN RD,BRIGANTINE CITY,17,1994,1,GOV1,3004 -0103_5901_9.01,-74.471163,39.34399062,230 HAGEN RD,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_6001_1,-74.66554556,39.51681507,201 HAGEN RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6001_10,-74.505753,39.3285085,219 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_10,-74.47139618,39.34429596,219 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_11,-74.51670089,39.31777785,221 HAGEN RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6001_11,-74.47158651,39.34377365,221 HAGEN RD,BRIGANTINE CITY,17,1989,1,RES3A,3001 -0103_6001_12,-74.51504725,39.32889317,223 HAGEN RD,BRIGANTINE CITY,17,1982,1,RES1,3001 -0103_6001_12,-74.47087855,39.34251609,223 HAGEN RD,BRIGANTINE CITY,17,1982,1,RES1,3001 -0103_6001_13,-74.51549947,39.32634315,16 HUTCHISON PLACE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6001_13,-74.47101341,39.3426497,16 HUTCHISON PLACE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6001_14,-74.51668014,39.32584856,14 HUTCHISON PLACE,BRIGANTINE CITY,17,1980,1,RES3A,3001 -0103_6001_14,-74.47115243,39.34279311,14 HUTCHISON PLACE,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_6001_15,-74.51578744,39.32583742,12 HUTCHISON PLACE,BRIGANTINE CITY,17,1984,1,RES1,3002 -0103_6001_15,-74.47108391,39.34201269,12 HUTCHISON PLACE,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_6001_16,-74.46068009,39.34914167,10 HUTCHISON PLACE,BRIGANTINE CITY,17,1987,1,COM1,3004 -0103_6001_16,-74.47023508,39.34172018,10 HUTCHISON PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6001_17,-74.46380908,39.34864431,8 HUTCHISON PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_17,-74.47038853,39.34181474,8 HUTCHISON PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_18,-74.46903259,39.34234768,6 HUTCHISON PLACE,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_6001_18,-74.47082077,39.3415761,6 HUTCHISON PLACE,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_6001_19,-74.47317548,39.34101933,4 HUTCHISON PLACE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6001_19,-74.47413204,39.34308308,4 HUTCHISON PLACE,BRIGANTINE CITY,17,1986,1,GOV1,3004 -0103_6001_2,-74.93594314,39.51930436,203 HAGEN RD,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_6001_2,-74.44261833,39.35840994,203 HAGEN RD,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_6001_21,-74.48424886,39.3395625,1228 E SHORE DR,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_6001_21,-74.47646661,39.3441943,1228 E SHORE DR,BRIGANTINE CITY,17,2001,1,RES1,3002 -0103_6001_22,-74.474149,39.3409125,1226 E SHORE DR,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_6001_22,-74.4742636,39.34323747,1226 E SHORE DR,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_6001_23,-74.463902,39.3483235,1224 E SHORE DR,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_6001_23,-74.47025652,39.34186315,1224 E SHORE DR,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_6001_24,-74.45590917,39.35010399,1222 E SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6001_24,-74.47096053,39.34207725,1222 E SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6001_25,-74.5117235,39.3259555,1220 E SHORE DR,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_6001_25,-74.47057225,39.34265615,1220 E SHORE DR,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_6001_26,-74.5107545,39.3269305,1218 E SHORE DR,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_6001_26,-74.47105145,39.34273686,1218 E SHORE DR,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_6001_27,-74.52272,39.317949,1216 E SHORE DR,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_27,-74.47042124,39.3430469,1216 E SHORE DR,BRIGANTINE CITY,17,1988,1,RES3A,3001 -0103_6001_28,-74.52419716,39.32087145,1214 E SHORE DR,BRIGANTINE CITY,17,2005,1,RES1,3001 -0103_6001_28,-74.47252527,39.34388482,1214 E SHORE DR,BRIGANTINE CITY,17,2005,1,RES1,3001 -0103_6001_29,-74.51560685,39.32351056,1212 E SHORE DR,BRIGANTINE CITY,17,1987,1,RES3A,3001 -0103_6001_29,-74.47230494,39.34483668,1212 E SHORE DR,BRIGANTINE CITY,17,1987,1,RES3A,3001 -0103_6001_3,-74.79313403,39.64652131,205 HAGEN RD,BRIGANTINE CITY,17,1989,1,GOV1,3004 -0103_6001_3,-74.46157756,39.35753233,205 HAGEN RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6001_30,-74.50903325,39.32806067,1210 E SHORE DR,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_6001_30,-74.47131741,39.34422371,1210 E SHORE DR,BRIGANTINE CITY,17,1998,1,GOV1,3004 -0103_6001_32,-74.49945417,39.33026249,1208 E SHORE DR,BRIGANTINE CITY,16,1958,1,RES3B,3001 -0103_6001_32,-74.47157694,39.34470739,1208 E SHORE DR,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_6001_33,-74.499584,39.33148,1206 E SHORE DR,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_6001_33,-74.47117564,39.34420523,1206 E SHORE DR,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_6001_34,-74.505837,39.3336955,1204 E SHORE DR,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_6001_34,-74.47109292,39.34463181,1204 E SHORE DR,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_6001_35,-74.49378319,39.33049818,1202 E SHORE DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6001_35,-74.47057575,39.344085,1202 E SHORE DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6001_36,-74.491225,39.3315555,1200 E SHORE DR,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_6001_36,-74.47016457,39.3446317,1200 E SHORE DR,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_6001_37,-74.52622299,39.31399017,1104 FOWNES AVE,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_6001_37,-74.47042941,39.34495672,1104 FOWNES AVE,BRIGANTINE CITY,17,2003,1,RES1,3002 -0103_6001_38,-74.43925976,39.36480063,1102 FOWNES AVE,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_6001_38,-74.4665851,39.34260664,1102 FOWNES AVE,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_6001_39,-74.79588585,39.67459103,1100 FOWNES AVE,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_6001_39,-74.46570961,39.34644402,1100 FOWNES AVE,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_6001_4,-74.4536865,39.4873735,207 HAGEN RD,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_6001_4,-74.48136626,39.34517484,207 HAGEN RD,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_6001_40,-74.80614343,39.63973035,1008 FOWNES AVE,BRIGANTINE CITY,17,1970,1,RES1,3002 -0103_6001_40,-74.46143275,39.34526375,1008 FOWNES AVE,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_6001_41,-74.803616,39.6418705,1006 FOWNES AVE,BRIGANTINE CITY,17,2005,1,RES1,3001 -0103_6001_41,-74.46332192,39.34935877,1006 FOWNES AVE,BRIGANTINE CITY,17,2005,1,RES1,3001 -0103_6001_42,-74.4632355,39.474908,1004 FOWNES AVE,BRIGANTINE CITY,17,1978,1,RES1,3001 -0103_6001_42,-74.4786927,39.34420438,1004 FOWNES AVE,BRIGANTINE CITY,17,1978,1,RES1,3001 -0103_6001_43,-74.687655,39.653406,1002 FOWNES AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6001_43,-74.46193124,39.35770933,1002 FOWNES AVE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6001_44,-74.95122776,39.51564444,1000 FOWNES AVE,BRIGANTINE CITY,17,1992,1,GOV1,3004 -0103_6001_44,-74.43232075,39.36417451,1000 FOWNES AVE,BRIGANTINE CITY,17,1992,1,RES3A,3001 -0103_6001_45,-74.9260645,39.508422,908 FOWNES AVE,BRIGANTINE CITY,17,1977,1,RES3B,3001 -0103_6001_45,-74.44233358,39.35847891,908 FOWNES AVE,BRIGANTINE CITY,17,1977,1,RES1,3001 -0103_6001_46,-74.64491747,39.52985531,906 FOWNES AVE,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6001_47,-74.54879316,39.36138197,904 FOWNES AVE,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_6001_48,-74.58759,39.319061,902 FOWNES AVE,BRIGANTINE CITY,17,1981,1,RES1,3002 -0103_6001_5,-74.812176,39.6395575,209 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_5,-74.46225161,39.34515128,209 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_50,-74.87753195,39.47913265,810 FOWNES AVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6001_51,-74.46383937,39.53333395,808 FOWNES AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_6001_52,-74.57751502,39.35053283,806 FOWNES AVE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6001_53,-74.534751,39.471213,804 FOWNES AVE,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6001_54,-74.51694306,39.39520266,802 FOWNES AVE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_6001_55,-74.36701918,39.42158447,800 FOWNES AVE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_6001_56,-74.37375087,39.41028569,702-04 E SHORE DR,BRIGANTINE CITY,17,1972,1,RES1,3001 -0103_6001_57,-74.486592,39.3339375,703 SHERIDAN BLVD,BRIGANTINE CITY,17,1969,1,RES1,3001 -0103_6001_58,-74.5197935,39.3173315,705 SHERIDAN BLVD,BRIGANTINE CITY,17,1971,1,RES1,3001 -0103_6001_59,-74.48693016,39.33829716,707 SHERIDAN BLVD,BRIGANTINE CITY,17,1972,1,RES1,3004 -0103_6001_6,-74.44095393,39.36736995,211 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_6,-74.46511206,39.34345105,211 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_60,-74.4308155,39.3690785,711 SHERIDAN BLVD,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_6001_61.01,-74.36474079,39.41020045,713 SHERIDAN BLVD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_6001_61.02,-74.3742985,39.4202745,715 SHERIDAN BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6001_62,-74.52033233,39.39805847,717 SHERIDAN BLVD,BRIGANTINE CITY,16,1985,1,RES1,3002 -0103_6001_63,-74.5030317,39.41666503,719 SHERIDAN BLVD,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_6001_64,-74.59068867,39.348153,721 SHERIDAN BLVD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6001_65.01,-74.52729245,39.49994465,723 SHERIDAN BLVD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6001_65.02,-74.880121,39.4526535,725 SHERIDAN BLVD,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_6001_7,-74.50780689,39.32282684,213 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_7,-74.47078116,39.3454164,213 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_8,-74.4931315,39.33061,215 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_8,-74.47069499,39.3440142,215 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_9,-74.50685933,39.33102121,217 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6001_9,-74.47146431,39.34436445,217 HAGEN RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6002_1,-74.50789642,39.44825147,722 SHERIDAN BLVD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6002_1,-74.48140132,39.34473173,722 SHERIDAN BLVD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6002_10.01,-74.46610785,39.35638364,3 MACDERMOTT PLACE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_6002_10.02,-74.81705172,39.65463239,5 MACDERMOTT PLACE,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_6002_11,-74.51445415,39.32564081,7 MACDERMOTT PLACE,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6002_12,-74.48312016,39.340456,9 MACDERMOTT PLACE,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_6002_13,-74.4950905,39.341166,11 MACDERMOTT PLACE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_6002_14,-74.39817906,39.38956692,13 MACDERMOTT PLACE,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_6002_15,-74.49731984,39.47488226,15 MACDERMOTT PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6002_16,-74.38201756,39.41642792,17 MACDERMOTT PLACE,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_6002_17.01,-74.54427719,39.4584439,724 SHERIDAN BLVD,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6002_17.02,-74.5370815,39.4676285,726 SHERIDAN BLVD,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6002_2,-74.375309,39.416739,720 SHERIDAN BLVD,BRIGANTINE CITY,16,1983,1,RES1,3002 -0103_6002_3,-74.474039,39.4913155,718 SHERIDAN BLVD,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_6002_4.01,-74.48158318,39.33948249,712 SHERIDAN BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6002_4.03,-74.390916,39.392523,716 SHERIDAN BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6002_5,-74.51799674,39.31766383,710 SHERIDAN BLVD,BRIGANTINE CITY,17,1990,1,RES1,3002 -0103_6002_6.01,-74.79386407,39.65159278,706 SHERIDAN BLVD,BRIGANTINE CITY,18,2000,1,COM7,3004 -0103_6002_6.02,-74.52697685,39.31309655,708 SHERIDAN BLVD,BRIGANTINE CITY,16,1986,1,RES1,3001 -0103_6002_7,-74.795503,39.611281,704 SHERIDAN BLVD,BRIGANTINE CITY,18,2000,1,REL1,3004 -0103_6002_7,-74.44212899,39.35954637,704 SHERIDAN BLVD,BRIGANTINE CITY,18,2000,1,COM1,3004 -0103_6002_8.01,-74.94395641,39.51170841,700 SHERIDAN BLVD,BRIGANTINE CITY,17,1997,1,GOV1,3004 -0103_6002_8.02,-74.54291418,39.37871303,702 SHERIDAN BLVD,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_6002_9,-74.53908809,39.39319835,1 MACDERMOTT PLACE,BRIGANTINE CITY,17,1990,1,COM1,3004 -0103_6003_1,-74.79175227,39.44211769,606 SHERIDAN BLVD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_6003_10,-74.93096014,39.51902797,15 MACDONALD PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6003_11,-74.5520386,39.36921581,17 MACDONALD PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6003_12,-74.881607,39.5982585,19 MACDONALD PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6003_12,-74.44177748,39.35961067,19 MACDONALD PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6003_13,-74.78145415,39.65686256,21 MACDONALD PLACE,BRIGANTINE CITY,16,1984,1,RES3A,3001 -0103_6003_14,-74.50855015,39.32206867,23 MACDONALD PLACE,BRIGANTINE CITY,17,1999,1,GOV1,3004 -0103_6003_15,-74.5151939,39.32806634,25 MACDONALD PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6003_16,-74.486571,39.334824,27 MACDONALD PLACE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6003_17,-74.50923054,39.33785034,29 MACDONALD PLACE,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6003_18,-74.47551734,39.48077946,31 MACDONALD PLACE,BRIGANTINE CITY,15,1980,1,RES1,3001 -0103_6003_19,-74.3641455,39.4133215,33 MACDONALD PLACE,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_6003_2,-74.77780794,39.62312321,604 SHERIDAN BLVD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_6003_20,-74.53776211,39.4536273,804 SHERIDAN BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6003_21,-74.5525738,39.46657643,802 SHERIDAN BLVD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6003_22,-74.55566373,39.46922358,800 SHERIDAN BLVD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_6003_23,-74.4473925,39.3713965,28 MACDERMOTT PLACE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_6003_24,-74.370944,39.40441,26 MACDERMOTT PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6003_25,-74.47471221,39.48304611,24 MACDERMOTT PLACE,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6003_26,-74.5071855,39.338152,22 MACDERMOTT PLACE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6003_27,-74.466981,39.3467235,20 MACDERMOTT PLACE,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6003_28,-74.51266199,39.32735951,18 MACDERMOTT PLACE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_6003_29,-74.4883355,39.3324705,16 MACDERMOTT PLACE,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_6003_3,-74.82818794,39.53293632,602 SHERIDAN BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6003_30,-74.80387509,39.64623992,14 MACDERMOTT PLACE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_6003_31,-74.80093146,39.61402865,12 MACDERMOTT PLACE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_6003_31,-74.44202923,39.35950436,12 MACDERMOTT PLACE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_6003_32,-74.5340795,39.3827675,10 MACDERMOTT PLACE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_6003_33,-74.94046554,39.51952339,8 MACDERMOTT PLACE,BRIGANTINE CITY,16,1980,1,GOV1,3004 -0103_6003_34.01,-74.8114865,39.633024,6 MACDERMOTT PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6003_34.02,-74.866637,39.600609,4 MACDERMOTT PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6003_34.03,-74.7117475,39.4734895,2 MACDERMOTT PLACE,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_6003_4,-74.632837,39.5301875,600 SHERIDAN BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6003_5.01,-74.77947815,39.59556678,1 MACDONALD PLACE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_6003_5.02,-74.84118519,39.56071732,3 MACDONALD PLACE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_6003_6.01,-74.79375088,39.59990203,5 MACDONALD PLACE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6003_6.02,-74.7893675,39.631468,7 MACDONALD PLACE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6003_7,-74.736919,39.449985,9 MACDONALD PLACE,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6003_8,-74.83566324,39.45025889,11 MACDONALD PLACE,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6003_9,-74.80932662,39.63695712,13 MACDONALD PLACE,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_601_1,-74.45325403,39.4981067,111 W BRIGANTINE AVE,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_601_10,-74.56795412,39.34691653,203 2ND STREET SO,BRIGANTINE CITY,47,1955,2,COM1,3004 -0103_601_11,-74.57524768,39.34102753,108 W BEACH AVE,BRIGANTINE CITY,15,1953,1,RES3A,3001 -0103_601_13,-74.55430721,39.36707032,202 VERNON PLACE,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_601_14,-74.612447,39.326784,204 VERNON PLACE,BRIGANTINE CITY,15,1958,1,RES1,3001 -0103_601_15,-74.5439145,39.370125,206 VERNON PLACE,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_601_15,-74.48545459,39.34009881,206 VERNON PLACE,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_601_16,-74.5319275,39.4685925,208 VERNON PLACE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_601_17,-74.7585865,39.4336245,210 VERNON PLACE,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_601_18,-74.5043215,39.4482945,212 VERNON PLACE,BRIGANTINE CITY,43,1952,2,RES1,3002 -0103_601_19,-74.63278896,39.42880849,214 VERNON PLACE,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_601_2,-74.508518,39.493947,219 2ND STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_601_20,-74.57606903,39.33210531,216 VERNON PLACE,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_601_21,-74.5103452,39.53362428,218 VERNON PLACE,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_601_22,-74.50433426,39.47290482,109 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_601_3,-74.4683645,39.5412355,217 2ND STREET SO,BRIGANTINE CITY,19,2006,1,RES1,3001 -0103_601_4,-74.61332761,39.32195782,215 2ND STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_601_5,-74.6638495,39.4074325,213 2ND STREET SO,BRIGANTINE CITY,15,1942,1,RES1,3001 -0103_601_6,-74.52212728,39.44339409,211 2ND STREET SO,BRIGANTINE CITY,43,1956,2,RES1,3001 -0103_601_7,-74.7600782,39.43175388,209 2ND STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_601_8,-74.55052589,39.46414421,207 2ND STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_601_9,-74.54197512,39.38285684,205 2ND STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_601_9,-74.48564493,39.33997137,205 2ND STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_602_11,-74.69446196,39.41977368,201 3RD STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_602_12,-74.51702096,39.44454216,206 W BEACH AVE,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_602_13,-74.784662,39.4177205,204 W BEACH AVE,BRIGANTINE CITY,17,1997,1,GOV1,3004 -0103_602_14,-74.53169397,39.44972961,202 W BEACH AVE,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_602_15,-74.61034293,39.43820462,200 2ND STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_602_16,-74.6881665,39.4957405,202 2ND STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_602_17,-74.50265767,39.45095301,204 2ND STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_602_18,-74.6434975,39.4304305,206 2ND STREET SO,BRIGANTINE CITY,43,1953,2,GOV1,3004 -0103_602_19,-74.604607,39.3188435,208 2ND STREET SO,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_602_20,-74.5960751,39.31505538,210 2ND STREET SO,BRIGANTINE CITY,43,1955,2,GOV1,3004 -0103_602_21,-74.50372512,39.50303107,212 2ND STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_602_22,-74.49534768,39.47022707,214 2ND STREET SO,BRIGANTINE CITY,18,2018,1,RES1,3001 -0103_602_23,-74.44893732,39.4950864,218 2ND STREET SO,BRIGANTINE CITY,19,2011,1,GOV1,3004 -0103_602_24,-74.51202092,39.46380416,220 2ND STREET SO,BRIGANTINE CITY,20,2005,1,RES1,3001 -0103_602_25,-74.499663,39.455081,201 W BRIGANTINE AVE,BRIGANTINE CITY,43,1950,3,RES1,3001 -0103_602_26,-74.5269115,39.44728633,203 W BRIGANTINE AVE,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_602_27,-74.48645391,39.45916916,205 W BRIGANTINE AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_602_4,-74.45419178,39.48906217,229 3RD STREET SO,BRIGANTINE CITY,43,1948,3,RES1,3001 -0103_602_5,-74.46634554,39.48883774,225 3RD STREET SO,BRIGANTINE CITY,14,1951,1,RES1,3001 -0103_602_6,-74.49291408,39.49415358,221 3RD STREET SO,BRIGANTINE CITY,43,1972,1,RES1,3001 -0103_602_8,-74.606593,39.3163165,213 3RD STREET SO,BRIGANTINE CITY,19,2005,1,RES1,3001 -0103_602_9,-74.6064975,39.3218545,209 3RD STREET SO,BRIGANTINE CITY,43,1953,2,RES1,3001 -0103_603_12,-74.59773526,39.31625591,201 4TH STREET SO,BRIGANTINE CITY,47,1951,2,AGR1,3001 -0103_603_13,-74.63442736,39.43420645,200 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3001 -0103_603_14,-74.6106615,39.3217665,202 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3001 -0103_603_15,-74.598045,39.320274,204 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3001 -0103_603_16,-74.58781162,39.32464396,206 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3001 -0103_603_17,-74.61231918,39.31688649,208 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3001 -0103_603_18,-74.595108,39.310527,210 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3001 -0103_603_19,-74.46531101,39.54348224,212 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3001 -0103_603_20,-74.49544325,39.52360256,214 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3001 -0103_603_21,-74.45891293,39.51199971,216 3RD STREET SO,BRIGANTINE CITY,33,1930,1,RES1,3004 -0103_603_22,-74.49546331,39.49845611,218 3RD STREET SO,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_603_24,-74.46420072,39.4938232,226 3RD STREET SO,BRIGANTINE CITY,17,1890,1,RES1,3001 -0103_603_25,-74.4508705,39.479827,228 3RD STREET SO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_603_26,-74.5040665,39.467695,230 3RD STREET SO,BRIGANTINE CITY,15,1945,1,RES1,3001 -0103_603_27,-74.52753448,39.44473251,238 3RD STREET S0,BRIGANTINE CITY,17,1930,1,RES1,3001 -0103_603_28,-74.51094073,39.44256001,242 3RD STREET SO,BRIGANTINE CITY,20,2013,1,RES1,3001 -0103_603_29.01,-74.48546835,39.46511783,246 3RD STREET SO,BRIGANTINE CITY,20,2010,1,RES1,3001 -0103_603_29.02,-74.51150793,39.43520916,250 3RD STREET SO,BRIGANTINE CITY,17,1997,1,GOV1,3004 -0103_603_3,-74.4814925,39.4384745,239 4TH STREET SO,BRIGANTINE CITY,43,1951,2,GOV1,3004 -0103_603_30,-74.506012,39.423889,254 3RD STREET SO,BRIGANTINE CITY,16,1950,1,GOV1,3004 -0103_603_32,-74.47759231,39.43322598,307 W BRIGANTINE AVE,BRIGANTINE CITY,19,2009,1,GOV1,3004 -0103_603_4,-74.5041265,39.43819733,235 4TH STREET SO,BRIGANTINE CITY,16,1945,1,RES1,3001 -0103_603_5,-74.51556731,39.43960442,231 4TH STREET SO,BRIGANTINE CITY,43,1956,2,RES1,3002 -0103_603_6,-74.49059883,39.45797151,227 4TH STREET SO,BRIGANTINE CITY,15,1945,1,RES1,3001 -0103_603_7,-74.50429717,39.463672,223 4TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_603_9,-74.45263577,39.49848443,215 4TH STREET SO,BRIGANTINE CITY,18,2006,1,AGR1,3001 -0103_6101_1,-74.52839794,39.40101932,800 E SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6101_2,-74.55256672,39.47061009,801 FOWNES AVE,BRIGANTINE CITY,17,1989,1,RES1,3004 -0103_6101_3,-74.58702282,39.35005634,803 FOWNES AVE,BRIGANTINE CITY,17,1987,1,RES3A,3001 -0103_6101_4,-74.49669848,39.51815136,805 FOWNES AVE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_6101_5,-74.4890685,39.5180815,806 E SHORE DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6101_6,-74.59068449,39.348925,804 E SHORE DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6101_7,-74.48596434,39.43542905,802 E SHORE DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6102_1,-74.510311,39.532708,900 E SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6102_10,-74.6615545,39.5439435,906 E SHORE DR,BRIGANTINE CITY,17,1982,1,RES1,3001 -0103_6102_11,-74.57436892,39.35746353,904 E SHORE DR,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6102_12,-74.60464818,39.32043559,902 E SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6102_2,-74.6035865,39.3212395,1 DUNLAP PLACE,BRIGANTINE CITY,17,1999,1,RES3A,3001 -0103_6102_3,-74.60721867,39.32140849,3 DUNLAP PLACE,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6102_5,-74.60170328,39.32326828,903 FOWNES AVE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_6102_6,-74.56972363,39.35953279,905 FOWNES AVE,BRIGANTINE CITY,17,1986,1,GOV1,3004 -0103_6102_7,-74.63481485,39.55328853,907 FOWNES AVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6102_8,-74.638819,39.5487555,4 SPALDING PLACE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6102_9,-74.6323605,39.54722117,2 SPALDING PLACE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6103_1,-74.96599494,39.52019629,1000 E SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6103_1,-74.57841163,39.31386206,1000 E SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6103_10,-74.80207559,39.64700014,1006 E SHORE DR,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_6103_10,-74.46047816,39.34985203,1006 E SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6103_11,-74.5237895,39.4588325,1004 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6103_11,-74.48027728,39.34382678,1004 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6103_12,-74.88820816,39.57394909,1002 E SHORE DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6103_12,-74.46223201,39.35807684,1002 E SHORE DR,BRIGANTINE CITY,16,1970,1,GOV1,3004 -0103_6103_2,-74.971348,39.5060155,1 SPALDING PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6103_2,-74.46144784,39.35751837,1 SPALDING PLACE,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_6103_3,-74.97367538,39.5074892,3 SPALDING PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6103_3,-74.46196656,39.35775253,3 SPALDING PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6103_4,-74.9571805,39.5118195,1001 FOWNES AVE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_6103_4,-74.43213777,39.36435948,1001 FOWNES AVE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_6103_5,-74.954941,39.537975,1003 FOWNES AVE,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_6103_5,-74.45601219,39.35112716,1003 FOWNES AVE,BRIGANTINE CITY,18,2013,1,GOV1,3004 -0103_6103_6,-74.52832104,39.45968219,1005 FOWNES AVE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_6103_6,-74.48062875,39.34426487,1005 FOWNES AVE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_6103_7,-74.77704441,39.65776036,1007 FOWNES AVE,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6103_7,-74.4588859,39.35535237,1007 FOWNES AVE,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6103_8,-74.78663317,39.66608202,4 ROYAL PLACE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6103_8,-74.46130939,39.35421332,4 ROYAL PLACE,BRIGANTINE CITY,17,1989,1,GOV1,3004 -0103_6103_9,-74.780278,39.675304,2 ROYAL PLACE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_6103_9,-74.46103958,39.35411296,2 ROYAL PLACE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_6104_1,-74.43518949,39.36141433,1102 E SHORE DR,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6104_1,-74.46858405,39.34238973,1102 E SHORE DR,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6104_2,-74.81943957,39.64457158,1101 FOWNES AVE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_6104_2,-74.46579597,39.34826436,1101 FOWNES AVE,BRIGANTINE CITY,17,1992,1,RES3A,3001 -0103_6104_3,-74.4411293,39.36767234,1100 E SHORE DR,BRIGANTINE CITY,17,1986,1,RES3A,3001 -0103_6104_3,-74.4653559,39.34412422,1100 E SHORE DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6105_1.01,-74.6506065,39.567759,1 12TH STREET NO,BRIGANTINE CITY,17,1985,2,RES1,3001 -0103_6105_11,-74.52518852,39.31726033,1105 E SHORE DR,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_6105_11,-74.46891113,39.34494502,1105 E SHORE DR,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_6105_12,-74.50855284,39.32269599,1107 E SHORE DR,BRIGANTINE CITY,19,2011,1,RES1,3001 -0103_6105_12,-74.4702493,39.34475398,1107 E SHORE DR,BRIGANTINE CITY,19,2011,1,RES1,3001 -0103_6105_13,-74.494243,39.331642,1109 E SHORE DR,BRIGANTINE CITY,45,1983,2,RES1,3001 -0103_6105_13,-74.47001432,39.34435639,1109 E SHORE DR,BRIGANTINE CITY,45,1983,2,RES1,3001 -0103_6105_2.01,-74.94317761,39.51837746,1001 E SHORE DR,BRIGANTINE CITY,17,2018,1,GOV1,3004 -0103_6105_2.01,-74.44278971,39.35832916,1001 E SHORE DR,BRIGANTINE CITY,17,2018,1,RES1,3001 -0103_6105_8,-74.4260055,39.356629,1013 E SHORE DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6105_8,-74.46560593,39.34594741,1013 E SHORE DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6202_10,-74.54364844,39.45658722,7 11TH STREET NO,BRIGANTINE CITY,16,1974,1,GOV1,3004 -0103_6202_11,-74.501577,39.4152315,5 11TH STREET NO,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_6202_12,-74.589039,39.348422,3 11TH STREET NO,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_6202_13,-74.48919636,39.49767544,1 11TH STREET NO,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6202_14,-74.87219119,39.48953052,901 E SHORE DR,BRIGANTINE CITY,16,1960,1,RES1,3004 -0103_6202_15,-74.53490998,39.31372533,903 E SHORE DR,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_16,-74.60341168,39.31789658,905 E SHORE DR,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_6202_19,-74.54722843,39.50690527,4 12TH STREET NO,BRIGANTINE CITY,,1962,1,GOV1,3004 -0103_6202_2,-74.48072606,39.33958761,23 11TH STREET NO,BRIGANTINE CITY,17,1992,1,GOV1,3004 -0103_6202_20,-74.8105145,39.456387,6 12TH STREET NO,BRIGANTINE CITY,16,1957,1,GOV1,3004 -0103_6202_21,-74.506795,39.4926345,8 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_22,-74.577746,39.338455,10 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_23,-74.5067785,39.4055975,12 12TH STREET NO,BRIGANTINE CITY,17,2007,1,RES1,3001 -0103_6202_24,-74.5070435,39.4457875,14 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_24,-74.47868539,39.34575268,14 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_25,-74.5227627,39.39216307,16 12TH STREET NO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_6202_26,-74.36625548,39.42214832,18 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_27,-74.36958998,39.40302583,20 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_28,-74.47421473,39.49346751,22 12TH STREET NO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_6202_29,-74.37760985,39.40063835,24 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_3,-74.478913,39.3461225,21 11TH STREET NO,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6202_30,-74.50300082,39.34233138,26 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6202_31,-74.46897516,39.34301893,1107 JENKINS PKWY,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_6202_33,-74.52097273,39.31777875,1103 JENKINS PKWY,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_6202_4,-74.50675185,39.3362982,19 11TH STREET NO,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6202_5,-74.42972386,39.37444597,17 11TH STREET NO,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6202_6,-74.46839569,39.48975292,15 11TH STREET NO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6202_8,-74.4474775,39.3737515,11 11TH STREET NO,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_6202_9,-74.51302,39.402218,9 11TH STREET NO,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6203_1,-74.79370321,39.52611108,39 11TH STREET NO,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_6203_10,-74.78742473,39.6409181,1102 JENKINS PKWY,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_6203_11,-74.50906793,39.32359035,1106 JENKINS PKWY,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6203_12,-74.7674965,39.6461665,30 12TH STREET NO,BRIGANTINE CITY,15,1957,1,GOV1,3004 -0103_6203_13,-74.875088,39.5929045,32 12TH STREET NO,BRIGANTINE CITY,16,1957,1,GOV1,3004 -0103_6203_13,-74.44163067,39.35916745,32 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6203_14,-74.5317495,39.382652,34 12TH STREET NO,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6203_15,-74.931422,39.48488,38 12TH STREET NO,BRIGANTINE CITY,,1957,1,RES1,3001 -0103_6203_16,-74.80364089,39.63378391,40 12TH STREET NO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_6203_17,-74.77942599,39.50151416,42 12TH STREET NO,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_6203_18,-74.73534577,39.44052598,44 12TH STREET NO,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6203_19,-74.77604783,39.6189255,46 12TH STREET NO,BRIGANTINE CITY,,1957,1,COM3,3004 -0103_6203_20,-74.7405465,39.5898365,1103 E EVANS BLVD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6203_3,-74.7351865,39.448868,35 11TH STREET NO,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6203_4,-74.8724926,39.58922092,33 11TH STREET NO,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6203_5,-74.8102675,39.6350515,31 11TH STREET NO,BRIGANTINE CITY,16,2018,1,RES1,3001 -0103_6203_6,-74.92734261,39.51606487,29 11TH STREET NO,BRIGANTINE CITY,17,1985,1,GOV1,3004 -0103_6203_7,-74.55038732,39.37440448,27 11TH STREET NO,BRIGANTINE CITY,17,1996,1,GOV1,3004 -0103_6203_8,-74.5405665,39.390322,25 11TH STREET NO,BRIGANTINE CITY,45,1959,2,GOV1,3004 -0103_6203_9,-74.80569551,39.63694941,1100 JENKINS PKWY,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_6203_9,-74.44208235,39.35977,1100 JENKINS PKWY,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_6204_1,-74.5191095,39.400051,801 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6204_2,-74.60789413,39.46277553,803 E SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6204_3,-74.57328349,39.36798167,805 E SHORE DR,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_6204_4,-74.51972852,39.39221467,2 11TH STREET NO,BRIGANTINE CITY,15,1970,1,RES1,3001 -0103_6205_1,-74.48791372,39.33827933,705 E SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6205_10,-74.5120865,39.3267285,22 11TH STREET NO,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_6205_11,-74.5029395,39.329716,24 11TH STREET NO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6205_12,-74.42590632,39.36041651,26 11TH STREET NO,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6205_13,-74.79267757,39.65058017,1007 JENKINS PARKWAY,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_6205_2,-74.38348811,39.39805784,2 KIRBY PLACE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6205_3,-74.38461147,39.39641996,4 KIRBY PLACE,BRIGANTINE CITY,17,1991,1,GOV1,3004 -0103_6205_4,-74.3805656,39.39439785,6 KIRBY PLACE,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_6205_5,-74.41421,39.3711355,8 KIRBY PLACE,BRIGANTINE CITY,16,1979,1,GOV1,3004 -0103_6205_6,-74.414019,39.371065,10 KIRBY PLACE,BRIGANTINE CITY,16,1958,1,GOV1,3004 -0103_6205_7.01,-74.40596691,39.38192533,12 KIRBY PLACE,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_6205_7.02,-74.40319039,39.38138796,14 11TH STREET NO,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_6205_8.01,-74.49948033,39.335239,16 11TH STREET NO,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6205_8.02,-74.45320393,39.3564612,18 11TH STREET NO,BRIGANTINE CITY,17,2000,1,RES1,3001 -0103_6205_9,-74.47965793,39.33899682,20 11TH STREET NO,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6206_1,-74.46275258,39.35920333,1006 JENKINS PARKWAY,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_6206_10,-74.70740396,39.43381933,1005 E EVANS BLVD,BRIGANTINE CITY,16,1972,1,REL1,3004 -0103_6206_11,-74.72352079,39.45888197,1003 E EVANS BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6206_13,-74.50570991,39.47852322,909 E EVANS BLVD,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_6206_14,-74.47061812,39.48308972,907 E EVANS BLVD,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6206_15,-74.7544671,39.30039043,905 E EVANS BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6206_16,-74.79995418,39.53819294,903 E EVANS BLVD,BRIGANTINE CITY,17,2012,1,RES1,3001 -0103_6206_17,-74.596956,39.4351965,901 E EVANS BLVD,BRIGANTINE CITY,16,1956,1,GOV1,3004 -0103_6206_18,-74.50402375,39.45819407,809 E EVANS BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6206_19,-74.4599375,39.453535,807 E EVANS BLVD,BRIGANTINE CITY,16,1973,1,GOV1,3004 -0103_6206_2,-74.80910297,39.63139604,28 11TH STREET NO,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_6206_20,-74.56973739,39.34378355,805 E EVANS BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6206_21,-74.65230957,39.41904972,803 E EVANS BLVD,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_6206_22,-74.521824,39.397362,801 E EVANS BLVD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6206_22,-74.47919162,39.34425662,801 E EVANS BLVD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6206_23,-74.500297,39.43171533,707 E EVANS BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6206_24,-74.50702169,39.40568303,705 E EVANS BLVD,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_6206_25,-74.5263405,39.389475,703 E EVANS BLVD,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_6206_26,-74.692885,39.4828645,701 E EVANS BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6206_27,-74.697934,39.4976695,57 HEALD RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6206_28,-74.70740679,39.36986538,55 HEALD RD,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_6206_29,-74.7165106,39.40075542,53 HEALD RD,BRIGANTINE CITY,16,1977,1,GOV1,3004 -0103_6206_3,-74.8769135,39.589093,30 11TH STREET NO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6206_30,-74.70945451,39.43612016,51 HEALD RD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6206_31,-74.4509755,39.37355,49 HEALD RD,BRIGANTINE CITY,17,2000,1,GOV1,3004 -0103_6206_32,-74.4469985,39.371278,47 HEALD RD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6206_33,-74.51985623,39.38329809,45 HEALD RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6206_34,-74.51919826,39.38705486,43 HEALD RD,BRIGANTINE CITY,17,1995,1,RES1,3001 -0103_6206_35,-74.527891,39.388558,41 HEALD RD,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_6206_36,-74.522749,39.3881965,37 HEALD RD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6206_37,-74.5276785,39.3875445,35 HEALD RD,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_6206_38,-74.5146255,39.40021938,33 HEALD RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6206_39,-74.51714283,39.39943844,31 HEALD RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6206_4,-74.75008662,39.45075983,32 11TH STREET NO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6206_40,-74.5169165,39.396847,29 HEALD RD,BRIGANTINE CITY,16,1970,1,GOV1,3004 -0103_6206_41,-74.5229895,39.397742,27 HEALD RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6206_42,-74.52118318,39.39515958,25 HEALD RD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_6206_44,-74.50844583,39.4049529,501 SHERIDAN PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6206_6,-74.77806843,39.59707188,36 11TH STREET NO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6206_7,-74.6917465,39.637704,38 11TH STREET NO,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6206_8,-74.6403255,39.524687,40 11TH STREET NO,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_6206_9,-74.83798833,39.407864,1007 E EVANS BLVD,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_6301_1,-74.62875049,39.50705533,601 SHERIDAN BLVD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_6301_10,-74.841529,39.5992,39 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6301_11,-74.79565834,39.59977403,37 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1988,1,GOV1,3004 -0103_6301_12,-74.793397,39.633851,35 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_6301_13,-74.78578211,39.63553313,33 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1981,1,RES1,3004 -0103_6301_14,-74.77755717,39.6238025,31 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6301_15,-74.7911885,39.6152805,29 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6301_16,-74.8043175,39.517837,27 KIRKWOOD CIRCLE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_6301_17,-74.6363225,39.527124,25 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6301_18,-74.83740769,39.38788107,23 KIRKWOOD CIRCLE,BRIGANTINE CITY,18,1984,1,RES1,3001 -0103_6301_19,-74.637834,39.5228915,21 KIRKWOOD CIRCLE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_6301_2,-74.782148,39.5338495,603 SHERIDAN BLVD,BRIGANTINE CITY,16,1975,1,GOV1,3004 -0103_6301_20,-74.63974044,39.53028145,19 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6301_21,-74.64329196,39.52620434,17 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6301_22.01,-74.65586,39.5254145,15 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6301_22.02,-74.66883233,39.51441883,13 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6301_23,-74.674359,39.5711845,11 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6301_24,-74.7015585,39.5752865,9 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_6301_25,-74.66383383,39.59190141,7 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6301_26,-74.67454945,39.61405016,5 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6301_27,-74.69014464,39.63873309,3 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6301_28,-74.69077815,39.63320616,1 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_6301_3,-74.78647112,39.59766231,605 SHERIDAN BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6301_4,-74.73032196,39.45303618,607 SHERIDAN BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6301_5,-74.73020141,39.43988831,49 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_6301_6,-74.8763831,39.59320715,47 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6301_7,-74.8807447,39.59560284,45 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_6301_8,-74.87459954,39.5962688,43 KIRKWOOD CIRCLE,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_6301_9,-74.87025426,39.5924726,41 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6302_45,-74.7912582,39.61160083,503 SHERIDAN PLACE,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6302_45,-74.44120468,39.35953544,503 SHERIDAN PLACE,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6302_46,-74.748981,39.4502285,505 SHERIDAN PLACE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_6302_47,-74.74834962,39.4514697,2 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_6302_48,-74.6056603,39.31562558,4 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1988,1,GOV1,3004 -0103_6302_49,-74.6164205,39.3085295,6 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6302_50,-74.595834,39.310937,8 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6302_51,-74.53112538,39.52445611,10 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1987,1,RES1,3001 -0103_6302_52,-74.5118253,39.52778888,12 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_6302_53,-74.48732862,39.52226841,14 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6302_54,-74.491417,39.522623,16 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1984,1,GOV1,3004 -0103_6302_55,-74.49880194,39.49953556,18 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6302_56,-74.49781137,39.50045067,20 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6302_57,-74.49462,39.493865,22 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6302_58,-74.78738213,39.61633086,24 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_6302_58,-74.44081598,39.35939956,24 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1985,1,GOV1,3004 -0103_6302_59,-74.77859526,39.62158025,26 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1996,1,GOV1,3004 -0103_6302_59,-74.44126845,39.3594208,26 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_6302_60,-74.5073716,39.48884268,28 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_6302_61,-74.52110359,39.52805221,30 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_6302_62,-74.72375795,39.45630919,32 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_6302_63,-74.75390103,39.4306743,34 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6302_64,-74.81904075,39.4284143,36 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_6302_65,-74.6197555,39.6209945,38 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_6302_66,-74.779842,39.6127745,40 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_6302_67,-74.7543935,39.451981,42 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_6302_68,-74.8022685,39.6389805,44 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,2000,1,RES1,3001 -0103_6302_69,-74.8894499,39.45734434,46 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_6302_70,-74.93647503,39.49709076,48 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_6302_71,-74.90588963,39.53527731,50 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_6302_73,-74.93893625,39.51659891,54 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,2000,1,RES1,3001 -0103_6302_74,-74.93236346,39.52542181,56 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_6302_75,-74.94159583,39.52249501,58 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6302_76,-74.94253935,39.52961968,60 KIRKWOOD CIRCLE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_6302_77,-74.95647987,39.5280873,62 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1972,1,RES2,3005 -0103_6302_78,-74.8908245,39.5574125,64 KIRKWOOD CIRCLE,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6302_80,-74.462757,39.3539875,701 E SHORE DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_6401_1,-74.761345,39.638871,601 E EVANS BLVD,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_6401_10,-74.81489256,39.36476744,28 HEALD RD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6401_11,-74.76518,39.301115,30 HEALD RD,BRIGANTINE CITY,16,1967,1,GOV1,3004 -0103_6401_12,-74.7665025,39.307121,32 HEALD RD,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_6401_13,-74.75609063,39.30208016,34 HEALD RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6401_14,-74.36238266,39.41019798,36 HEALD RD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_6401_15,-74.4007398,39.39414713,38 HEALD RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6401_17,-74.40221238,39.39017449,42 HEALD RD,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_6401_18,-74.40969945,39.39106632,44 HEALD RD,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_6401_19,-74.441736,39.370254,46 HEALD RD,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_6401_2,-74.8952865,39.536106,303 SHERIDAN PLACE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_6401_20,-74.4262995,39.370958,48 HEALD RD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6401_21,-74.43090166,39.37590728,50 HEALD RD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6401_22,-74.40631189,39.37917828,607 E EVANS BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6401_23,-74.9259705,39.5199795,605 E EVANS BLVD,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_6401_24,-74.80013481,39.63933487,603 E EVANS BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6401_5,-74.43687035,39.37012935,405 SHERIDAN PLACE,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_6401_6,-74.53422315,39.38049054,407 SHERIDAN PLACE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6401_7,-74.54982365,39.37126661,22 HEALD RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6401_8,-74.55307179,39.37503831,24 HEALD RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6401_9,-74.5445775,39.3752845,26 HEALD RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6501_1,-74.55401511,39.49816392,501 E BEACH AVE,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_6501_10,-74.75562418,39.44580406,500 E EVANS BLVD,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_6501_11,-74.83566072,39.48653954,502 E EVANS BLVD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6501_12,-74.54291,39.529075,504 E EVANS BLVD,BRIGANTINE CITY,16,1967,1,GOV1,3004 -0103_6501_13,-74.64719425,39.53352718,506 E EVANS BLVD,BRIGANTINE CITY,16,1980,1,GOV1,3004 -0103_6501_14,-74.61686155,39.61933014,508 E EVANS BLVD,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_6501_15,-74.8509863,39.53787365,510 E EVANS BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6501_16,-74.6307735,39.531344,100 6TH STREET NO,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_6501_17,-74.87083899,39.48787418,102 6TH STREET NO,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_6501_18,-74.85639,39.454727,104 6TH STREET NO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6501_19,-74.75476835,39.44932395,106 6TH STREET NO,BRIGANTINE CITY,43,1956,2,RES1,3002 -0103_6501_2,-74.78596254,39.38168167,115 HAMILTON PLACE,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_6501_20,-74.5840405,39.403191,108 6TH STREET NO,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_6501_21,-74.671921,39.347953,110 6TH STREET NO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_6501_22,-74.63764613,39.36720524,112 6TH STREET NO,BRIGANTINE CITY,19,2017,1,RES1,3001 -0103_6501_23,-74.538138,39.4076425,114 6TH STREET NO,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_6501_24,-74.84432982,39.40953604,507 E BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6501_25,-74.71613315,39.41481098,505 E BEACH AVE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_6501_3,-74.83292133,39.42501863,113 HAMILTON PLACE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6501_4,-74.60578122,39.39189323,111 HAMILTON PLACE,BRIGANTINE CITY,43,1962,2,RES1,3001 -0103_6501_5,-74.5683105,39.4136455,109 HAMILTON PLACE,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_6501_6,-74.65241887,39.36801636,107 HAMILTON PLACE,BRIGANTINE CITY,43,1977,2,RES1,3001 -0103_6501_7,-74.574269,39.4268095,105 HAMILTON PLACE,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_6501_8,-74.7140255,39.470065,103 HAMILTON PLACE,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_6501_9,-74.70952185,39.50017971,101 HAMILTON PLACE,BRIGANTINE CITY,43,1970,2,RES1,3001 -0103_6502_10,-74.82367367,39.37350438,402 E EVANS BLVD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_6502_11,-74.6305355,39.3624175,404 E EVANS BLVD,BRIGANTINE CITY,17,1967,1,RES1,3001 -0103_6502_12,-74.5641985,39.4134225,100 HAMILTON PLACE,BRIGANTINE CITY,43,1962,2,RES1,3001 -0103_6502_13,-74.72322231,39.45872048,102 HAMILTON PLACE,BRIGANTINE CITY,43,1969,2,GOV1,3004 -0103_6502_14,-74.829319,39.4145945,104 HAMILTON PLACE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6502_15,-74.7556865,39.4312525,106 HAMILTON PLACE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6502_16,-74.67760164,39.44727685,108 HAMILTON PLACE,BRIGANTINE CITY,15,1967,1,RES1,3001 -0103_6502_17,-74.576057,39.4926975,110 HAMILTON PLACE,BRIGANTINE CITY,16,1935,1,RES1,3001 -0103_6502_18,-74.55230806,39.47161277,112 HAMILTON PLACE,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_6502_19,-74.65079656,39.39943948,407 E BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6502_2,-74.60104845,39.42362969,113 PUTNAM PLACE,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6502_20,-74.61092992,39.4218452,405 E BEACH AVE,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6502_3,-74.637915,39.4011815,111 PUTNAM PLACE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_6502_4,-74.642397,39.38470117,109 PUTNAM PLACE,BRIGANTINE CITY,43,1966,2,RES1,3001 -0103_6502_5,-74.55391843,39.47207373,107 PUTNAM PLACE,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_6502_6,-74.58997283,39.49034556,105 PUTNAM PLACE,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_6502_7,-74.63463414,39.45408924,103 PUTNAM PLACE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6502_8,-74.6698845,39.4636185,101 PUTNAM PLACE,BRIGANTINE CITY,43,1975,2,GOV1,3004 -0103_6502_9,-74.6328765,39.4643985,400 E EVANS BLVD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_6503_1,-74.5360985,39.3913675,301 E BEACH AVE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_6503_10,-74.56819848,39.41199579,102 PUTNAM PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6503_11,-74.610821,39.3912695,104 PUTNAM PLACE,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_6503_12,-74.3778925,39.395483,307 E BEACH AVE,BRIGANTINE CITY,45,1985,3,RES1,3001 -0103_6503_13,-74.50400558,39.33441916,305 E BEACH AVE,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_6503_14,-74.59009274,39.3756661,303 E BEACH AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_6503_3,-74.38910287,39.39128956,15 LAFAYETTE PLACE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_6503_5,-74.38632016,39.39681447,300 E EVANS BLVD,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_6503_6,-74.5528645,39.4030555,302 E EVANS BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6503_7,-74.60044668,39.4121181,304 E EVANS BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6503_8,-74.630859,39.391419,306 E EVANS BLVD,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6503_9,-74.5974344,39.41129317,100 PUTNAM PLACE,BRIGANTINE CITY,16,1967,1,RES1,3004 -0103_6602_1,-74.54925378,39.36900711,25 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1965,1,COM1,3004 -0103_6602_10,-74.36741595,39.40872533,18 HEALD RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6602_11,-74.3671005,39.4088945,20 HEALD RD,BRIGANTINE CITY,19,2001,1,RES1,3001 -0103_6602_12,-74.3655595,39.4055475,406 SHERIDAN PLACE,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_6602_13,-74.40079273,39.38642491,404 SHERIDAN PLACE,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_6602_14,-74.9470265,39.519724,402 SHERIDAN PLACE,BRIGANTINE CITY,16,1968,1,RES1,3002 -0103_6602_15,-74.88495821,39.4628766,21 QUAY BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6602_16,-74.95145065,39.51955107,19 QUAY BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_6602_17,-74.9547575,39.5178915,17 QUAY BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6602_18,-74.9525045,39.5127175,15 QUAY BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6602_19,-74.9336175,39.525188,13 QUAY BLVD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_6602_2,-74.36824434,39.40876252,2 HEALD RD,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_6602_20,-74.92955438,39.52178328,11 QUAY BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6602_21,-74.95448316,39.52776167,9 QUAY BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_6602_22,-74.4106365,39.382139,7 QUAY BLVD,BRIGANTINE CITY,17,2018,1,RES1,3001 -0103_6602_23,-74.40732659,39.38109577,5 QUAY BLVD,BRIGANTINE CITY,16,1968,1,COM1,3004 -0103_6602_24,-74.93406281,39.52474352,3 QUAY BLVD,BRIGANTINE CITY,16,1970,1,COM1,3004 -0103_6602_25,-74.95131918,39.51450077,1 QUAY BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6602_26,-74.938734,39.5042425,21 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6602_27,-74.438547,39.3692465,23 ROOSEVELT BLVD NO,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_6602_3,-74.35952803,39.41281784,4 HEALD RD,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_6602_4,-74.36848343,39.4142062,6 HEALD RD,BRIGANTINE CITY,16,1968,1,COM1,3004 -0103_6602_5,-74.37698666,39.41659223,8 HEALD RD,BRIGANTINE CITY,15,1968,1,RES1,3001 -0103_6602_6,-74.35762985,39.41364304,10 HEALD RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6602_7,-74.368304,39.402752,12 HEALD RD,BRIGANTINE CITY,15,1972,1,RES1,3001 -0103_6602_8,-74.369188,39.403249,14 HEALD RD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6602_9,-74.3706595,39.4073535,16 HEALD RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_1,-74.657395,39.536088,13 QUAY CIRCLE,BRIGANTINE CITY,17,1965,1,RES1,3001 -0103_6603_10,-74.72836507,39.58970465,14 QUAY BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_6603_11,-74.818088,39.5632865,304 SHERIDAN PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_12,-74.69331217,39.56109549,302 SHERIDAN PLACE,BRIGANTINE CITY,16,1970,1,GOV1,3004 -0103_6603_13,-74.6215836,39.51299086,300 SHERIDAN PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_14,-74.57931812,39.57468298,11 HAMILTON PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_15,-74.62089283,39.60033788,9 HAMILTON PLACE,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_6603_16,-74.62540329,39.61081769,7 HAMILTON PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_17,-74.63228658,39.61170789,5 HAMILTON PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_18,-74.80818335,39.51921304,3 HAMILTON PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_19,-74.82421211,39.53725572,1 HAMILTON PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_2,-74.817514,39.532776,15 QUAY CIRCLE,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_6603_3,-74.8617915,39.554377,17 QUAY CIRCLE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_6603_4,-74.7667825,39.6146495,19 QUAY CIRCLE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_5,-74.76831462,39.61526849,2 QUAY BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_6,-74.77951599,39.60321616,4 QUAY BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_7,-74.7899125,39.5958435,8 QUAY BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6603_8,-74.762568,39.6023295,10 QUAY BLVD,BRIGANTINE CITY,16,1973,1,COM1,3004 -0103_6603_9,-74.7279185,39.589127,12 QUAY BLVD,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_6701_1,-74.5913035,39.3474585,407 BAYSHORE AVE,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_6701_10,-74.55577517,39.37365104,207 BAYSHORE AVE,BRIGANTINE CITY,16,1972,1,RES1,3004 -0103_6701_11,-74.6217412,39.31337333,205 BAYSHORE AVE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6701_12,-74.543591,39.390494,203 BAYSHORE AVE,BRIGANTINE CITY,45,1973,2,RES1,3001 -0103_6701_13,-74.499322,39.3378115,201 BAYSHORE AVE,BRIGANTINE CITY,16,2018,1,RES1,3001 -0103_6701_14,-74.60965839,39.39141298,306 LAFAYETTE PLACE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6701_15,-74.60683366,39.39114555,304 LAFAYETTE PLACE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_6701_16,-74.60915955,39.37390065,302 LAFAYETTE PLACE,BRIGANTINE CITY,16,1958,1,GOV1,3004 -0103_6701_17,-74.60160184,39.36901799,300 LAFAYETTE PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6701_18,-74.601552,39.3724425,14 GIRARD PLACE,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_6701_19,-74.53164648,39.38954768,16 GIRARD PLACE,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_6701_2,-74.58432232,39.34295147,405 BAYSHORE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6701_20,-74.6029495,39.35534821,18 GIRARD PLACE,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_6701_21,-74.55290013,39.37813864,20 GIRARD PLACE,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_6701_22,-74.4910555,39.380793,22 GIRARD PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6701_22,-74.47909193,39.3433927,22 GIRARD PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6701_24,-74.628229,39.386177,28 GIRARD PLACE,BRIGANTINE CITY,15,1962,1,RES1,3001 -0103_6701_25,-74.6687,39.3558975,30 GIRARD PLACE,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_6701_26,-74.6418586,39.34838275,32 GIRARD PLACE,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6701_27,-74.59923189,39.36102922,34 GIRARD PLACE,BRIGANTINE CITY,18,2018,1,RES1,3001 -0103_6701_28,-74.591322,39.3652485,401 W EVANS BLVD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6701_3,-74.57608516,39.3533765,403 BAYSHORE AVE,BRIGANTINE CITY,16,1963,1,GOV1,3004 -0103_6701_30,-74.57699179,39.34320261,405 W EVANS BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6701_4,-74.64497642,39.33377053,401 BAYSHORE AVE,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_6701_5,-74.62751558,39.35969343,309 BAYSHORE AVE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6701_6,-74.76555468,39.35110968,307 BAYSHORE AVE,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_6701_7.02,-74.64403334,39.4120285,303 BAYSHORE AVE,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_6701_8,-74.70125831,39.6342216,301 BAYSHORE AVE,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_6701_9,-74.54169767,39.38124251,209 BAYSHORE AVE,BRIGANTINE CITY,19,2005,1,RES1,3001 -0103_6702_1,-74.6086175,39.4398175,207 W BEACH AVE,BRIGANTINE CITY,15,1970,1,RES1,3001 -0103_6702_10,-74.598448,39.338392,200 W EVANS BLVD,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_6702_11,-74.5817891,39.33667682,100 2ND STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_6702_12,-74.5781345,39.3501545,102 2ND STREET SO,BRIGANTINE CITY,16,2017,1,RES1,3001 -0103_6702_13,-74.57132494,39.36309718,104 2ND STREET SO,BRIGANTINE CITY,19,2018,1,COM1,3004 -0103_6702_15,-74.55831988,39.35841668,203 W BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6702_16,-74.53313,39.382491,205 W BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6702_16,-74.48523694,39.33891465,205 W BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6702_2,-74.57322755,39.34738832,109 3RD STREET SO,BRIGANTINE CITY,17,1949,1,RES1,3001 -0103_6702_3,-74.56751388,39.35219417,107 3RD STREET SO,BRIGANTINE CITY,16,1955,1,GOV2,3004 -0103_6702_4,-74.56584338,39.3647615,105 3RD STREET SO,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_6702_5,-74.5918874,39.33503016,103 3RD STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_6702_6,-74.58349545,39.33990267,101 3RD STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6702_7,-74.61272716,39.34687892,206 W EVANS BLVD,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_6702_8,-74.60694,39.349446,204 W EVANS BLVD,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6702_9,-74.61185622,39.33921083,202 W EVANS BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6703_1,-74.48993416,39.452457,307 W BEACH AVE,BRIGANTINE CITY,43,1960,3,RES1,3001 -0103_6703_10,-74.579819,39.336023,101 4TH STREET SO,BRIGANTINE CITY,17,2005,1,RES1,3001 -0103_6703_11,-74.601917,39.3485765,306 W EVANS BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6703_12,-74.5825325,39.3462875,304 W EVANS BLVD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6703_13,-74.59004029,39.3496796,302 W EVANS BLVD,BRIGANTINE CITY,17,2013,1,RES1,3001 -0103_6703_14,-74.5945975,39.3488835,300 W EVANS BLVD,BRIGANTINE CITY,17,1973,1,RES1,3001 -0103_6703_16,-74.5814375,39.3427725,102 3RD STREET SO,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_6703_17,-74.5560095,39.3604475,104 3RD STREET SO,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_6703_18,-74.5607555,39.3574015,106 3RD STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_6703_19,-74.56712456,39.35115107,108 3RD STREET SO,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_6703_2,-74.788777,39.4191875,117 4TH STREET SO,BRIGANTINE CITY,43,1951,2,RES1,3001 -0103_6703_20,-74.61849474,39.32007723,110 3RD STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_6703_21,-74.6096225,39.4413575,112 3RD STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_6703_22,-74.55189271,39.46905564,114 3RD STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_6703_23,-74.75662856,39.43018573,301 W BEACH AVE,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_6703_3,-74.75615805,39.42917226,115 4TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6703_4,-74.5511495,39.4633945,113 4TH STREET SO,BRIGANTINE CITY,17,2008,1,RES1,3001 -0103_6703_5,-74.6189895,39.438138,111 4TH STREET SO,BRIGANTINE CITY,43,1960,2,RES1,3001 -0103_6703_6,-74.60394058,39.33100034,109 4TH STREET SO,BRIGANTINE CITY,15,1951,1,RES1,3001 -0103_6703_7,-74.53852715,39.35334572,107 4TH STREET SO,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_6703_8,-74.56769432,39.35298347,105 4TH STREET SO,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_6703_9,-74.5584075,39.3599215,103 4TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6704_1,-74.49212714,39.52096069,419 W BEACH AVE,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_6704_10,-74.53226866,39.38453157,109 5TH STREET SO,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_6704_10,-74.48540818,39.34004771,109 5TH STREET SO,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_6704_11,-74.57078121,39.34124318,418 W EVANS BLVD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6704_12,-74.560554,39.357541,412 W EVANS BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6704_13,-74.5571095,39.362525,406 W EVANS BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6704_14,-74.58261333,39.34271591,400 W EVANS BLVD,BRIGANTINE CITY,16,1955,1,RES1,3004 -0103_6704_15,-74.55314411,39.36219362,108 4TH STREET SO,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_6704_16,-74.60272669,39.33074093,112 4TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6704_17,-74.534447,39.3848565,116 4TH STREET SO,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_6704_17,-74.4855699,39.33987712,116 4TH STREET SO,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_6704_18,-74.55657445,39.46977723,120 4TH STREET SO,BRIGANTINE CITY,43,1988,2,RES1,3001 -0103_6704_19,-74.70314853,39.41960982,124 4TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6704_2,-74.6173725,39.3132075,141 5TH STREET SO,BRIGANTINE CITY,43,1951,2,RES1,3001 -0103_6704_20,-74.7605725,39.432036,130 4TH STREET SO,BRIGANTINE CITY,43,1980,2,RES1,3001 -0103_6704_21,-74.511059,39.452855,132 4TH STREET SO,BRIGANTINE CITY,45,1950,2,COM1,3004 -0103_6704_22,-74.491101,39.4486415,136 4TH STREET SO,BRIGANTINE CITY,45,1984,2,RES1,3001 -0103_6704_24,-74.588973,39.32750584,401 W BEACH AVE,BRIGANTINE CITY,16,1900,1,RES1,3001 -0103_6704_25,-74.61145505,39.31619671,407 W BEACH AVE,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_6704_26,-74.53395345,39.3049463,413 W BEACH AVE,BRIGANTINE CITY,45,1995,2,RES1,3001 -0103_6704_3,-74.61625661,39.32049582,137 5TH STREET SO,BRIGANTINE CITY,43,1951,2,RES1,3001 -0103_6704_4,-74.66655581,39.41763697,133 5TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_6704_5,-74.49869544,39.44846694,129 5TH STREET SO,BRIGANTINE CITY,45,1957,2,RES1,3001 -0103_6704_6,-74.689253,39.49803,125 5TH STREET SO,BRIGANTINE CITY,43,1955,2,RES3A,3001 -0103_6704_7,-74.75575576,39.43103362,121 5TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_6704_8,-74.54103171,39.45885811,117 5TH STREET SO,BRIGANTINE CITY,15,1951,1,COM1,3004 -0103_6704_9,-74.5780265,39.447961,113 5TH STREET SO,BRIGANTINE CITY,43,1982,2,RES1,3001 -0103_6705_1,-74.5495447,39.3678041,518 BAYSHORE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_6705_12,-74.637519,39.401561,400 W SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_6705_19.01,-74.58078419,39.36381499,406 W SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6801_10,-74.578688,39.4050925,9 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6801_2,-74.71378109,39.46455833,2 HAMILTON PLACE,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_6801_3,-74.72315897,39.45387697,4 HAMILTON PLACE,BRIGANTINE CITY,17,2017,1,COM7,3004 -0103_6801_4,-74.72554319,39.45724759,206 SHERIDAN PLACE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_6801_5,-74.65400065,39.36680303,204 SHERIDAN PLACE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_6801_6,-74.5356895,39.416474,202 SHERIDAN PLACE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_6801_7,-74.83469767,39.40075237,200 SHERIDAN PLACE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_6801_8,-74.724515,39.4612565,1 PUTNAM PLACE,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_6801_9,-74.64581053,39.35830305,5 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6802_1,-74.553195,39.470739,PUTNAM PLACE,BRIGANTINE CITY,,0,1,COM4,3004 -0103_6804_1,-74.63322871,39.36110238,12 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1967,1,COM7,3004 -0103_6804_2,-74.72836824,39.45209765,10 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6804_4,-74.53148965,39.49930372,2 FRANKLIN PLACE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_6804_5,-74.61269009,39.42152017,201 LAFAYETTE PLACE,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_6804_6,-74.635087,39.38397,203 LAFAYETTE PLACE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6804_7,-74.63020404,39.37938023,205 LAFAYETTE PLACE,BRIGANTINE CITY,16,1964,1,GOV1,3004 -0103_6804_8,-74.59259946,39.45684567,3 GIRARD PLACE,BRIGANTINE CITY,16,1962,1,COM1,3004 -0103_6804_9,-74.69064452,39.48623006,1 GIRARD PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6805_1,-74.85704825,39.45189261,14 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6805_10,-74.67840467,39.50334199,111 BAYSHORE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6805_11,-74.7469805,39.446613,109 BAYSHORE AVE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6805_12,-74.65116518,39.35565822,107 BAYSHORE AVE,BRIGANTINE CITY,17,2016,1,GOV1,3004 -0103_6805_13,-74.5534115,39.4278345,105 BAYSHORE AVE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6805_14,-74.636263,39.528731,18 QUAY CIRCLE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_6805_3,-74.7483638,39.44650153,6 GIRARD PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6805_4,-74.80550494,39.37111054,8 GIRARD PLACE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6805_6,-74.6294105,39.381458,301 LAFAYETTE PLACE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6805_7,-74.62961534,39.37862576,305 LAFAYETTE PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6805_8,-74.654681,39.3687425,307 LAFAYETTE PLACE,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_6805_9,-74.604552,39.500879,113 BAYSHORE AVE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6806_1,-74.3913245,39.3914675,200 LAFAYETTE PLACE,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6806_10,-74.763953,39.3513185,305 W EVANS BLVD,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_6806_11,-74.53490166,39.37302156,307 W EVANS BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6806_12,-74.68319599,39.37705425,17 GIRARD PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6806_13,-74.66963766,39.61384158,13 GIRARD PLACE,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_6806_14,-74.5408872,39.37701781,11 GIRARD PLACE,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_6806_15,-74.56907209,39.36843017,9 GIRARD PLACE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_6806_16,-74.638727,39.3395955,7 GIRARD PLACE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_6806_17,-74.54423234,39.4013099,5 GIRARD PLACE,BRIGANTINE CITY,16,1967,1,GOV1,3004 -0103_6806_19,-74.38175199,39.39762917,202 LAFAYETTE PLACE,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6806_2,-74.542545,39.3927725,4 FRANKLIN PLACE,BRIGANTINE CITY,15,1972,1,RES1,3001 -0103_6806_3,-74.60988,39.36524,6 FRANKLIN PLACE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6806_4,-74.55572683,39.37467801,8 FRANKLIN PLACE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6806_5,-74.54965167,39.36871064,10 FRANKLIN PLACE,BRIGANTINE CITY,16,1973,1,GOV1,3004 -0103_6806_6,-74.68712171,39.63099456,12 FRANKLIN PLACE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6806_8,-74.549766,39.37357,301 W EVANS BLVD,BRIGANTINE CITY,17,1952,1,RES1,3001 -0103_6807_1,-74.50572067,39.33630997,100 LAFAYETTE PLACE,BRIGANTINE CITY,16,1961,1,GOV1,3004 -0103_6807_10,-74.6819215,39.3899925,11 FRANKLIN PLACE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6807_11,-74.65761694,39.62820381,9 FRANKLIN PLACE,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_6807_12,-74.53731922,39.37893311,7 FRANKLIN PLACE,BRIGANTINE CITY,16,1960,1,RES1,3004 -0103_6807_13,-74.53960555,39.39366218,5 FRANKLIN PLACE,BRIGANTINE CITY,15,1959,1,RES1,3001 -0103_6807_14,-74.62195771,39.35944814,3 FRANKLIN PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6807_15,-74.37594198,39.39826333,106 LAFAYETTE PLACE,BRIGANTINE CITY,18,2014,1,RES1,3001 -0103_6807_16,-74.50966569,39.34120033,104 LAFAYETTE PLACE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6807_2,-74.5417645,39.3862445,2 SHERIDAN PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6807_3,-74.5910115,39.351731,4 SHERIDAN PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6807_4,-74.53357304,39.37862765,6 SHERIDAN PLACE,BRIGANTINE CITY,16,2017,1,RES1,3001 -0103_6807_5,-74.63020131,39.61940195,8 SHERIDAN PLACE,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_6807_6,-74.67784054,39.38471076,10 SHERIDAN PLACE,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_6807_7,-74.762344,39.349935,201 W EVANS BLVD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6807_8,-74.818965,39.361409,205 W EVANS BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6807_9,-74.55074947,39.37608406,207 W EVANS BLVD,BRIGANTINE CITY,15,1958,1,RES1,3001 -0103_6808_1,-74.63327046,39.31860296,1 SHERIDAN PLACE,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_6808_2,-74.55171069,39.38429334,102 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6808_3,-74.54783831,39.38032922,104 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6808_3,-74.48622545,39.33923815,104 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6808_4,-74.61923936,39.43017724,106 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1959,1,GOV1,3004 -0103_6808_5,-74.64033549,39.39071603,101 W EVANS BLVD,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_6808_6,-74.63921081,39.40150052,103 W EVANS BLVD,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_6808_7,-74.6694025,39.380683,5 SHERIDAN PLACE,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_6808_8,-74.5338971,39.38221636,3 SHERIDAN PLACE,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_6808_8,-74.48624844,39.33892226,3 SHERIDAN PLACE,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_6809_1,-74.584143,39.381498,101 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1962,1,RES3A,3001 -0103_6809_2,-74.55846786,39.39785182,2 LAFAYETTE PLACE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6809_3,-74.5334035,39.3971295,205 E EVANS BLVD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_6809_4,-74.6182055,39.359967,203 E EVANS BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6809_5,-74.54789363,39.37721036,201 E EVANS BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6809_6,-74.55537317,39.3716415,107 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6809_7,-74.61298783,39.36038852,105 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6809_8,-74.533771,39.388022,103 ROOSEVELT BLVD SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6901_1,-74.7908915,39.631683,100 BAYSHORE AVE,BRIGANTINE CITY,,1900,1,RES1,3001 -0103_6901_10,-74.53438202,39.50178683,401 LAFAYETTE BLVD,BRIGANTINE CITY,18,2011,1,RES1,3001 -0103_6901_100,-74.36924056,39.40256328,114 LINCOLN DR,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_6901_101,-74.81928909,39.36150681,112 LINCOLN DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6901_103,-74.95994038,39.52015335,110 LINCOLN DR,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_6901_104,-74.92460037,39.50889693,108 LINCOLN DR,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6901_105,-74.88850231,39.49828045,106 LINCOLN DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6901_106,-74.8299555,39.622931,104 LINCOLN DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6901_107,-74.80862731,39.63738418,102 LINCOLN DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6901_108,-74.845889,39.6061075,100 LINCOLN DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6901_109,-74.9131265,39.511241,24 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6901_11,-74.58261481,39.47403257,403 LAFAYETTE BLVD,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_6901_110,-74.81539709,39.63241311,ROOSEVELT BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_6901_12,-74.60162313,39.48132521,405 LAFAYETTE BLVD,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_6901_13,-74.60098015,39.50023415,407 LAFAYETTE BLVD,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_6901_17,-74.6817435,39.4439875,413 LAFAYETTE BLVD,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6901_18,-74.69644512,39.44218167,415 LAFAYETTE BLVD,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6901_19,-74.69013524,39.44958244,417 LAFAYETTE BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6901_2,-74.6311595,39.597701,104 BAYSHORE AVE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6901_20,-74.62745249,39.49163182,419 LAFAYETTE BLVD,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6901_21,-74.66943387,39.49753067,421 LAFAYETTE BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_6901_22,-74.73551646,39.43144319,423 LAFAYETTE BLVD,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6901_23,-74.76023681,39.43042748,425 LAFAYETTE BLVD,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_6901_24,-74.82460348,39.40083033,427 LAFAYETTE BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6901_25,-74.84131372,39.3733337,429 LAFAYETTE BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_6901_26,-74.71648183,39.440699,431 LAFAYETTE BLVD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_6901_27,-74.750835,39.4529135,433 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6901_28,-74.6075125,39.39194,435 LAFAYETTE BLVD,BRIGANTINE CITY,17,2018,1,RES1,3001 -0103_6901_29,-74.55988044,39.41474632,437 LAFAYETTE BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6901_3,-74.63829615,39.52141296,106 BAYSHORE AVE,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6901_30,-74.5742025,39.4154785,439 LAFAYETTE BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6901_32,-74.6453555,39.365271,445 LAFAYETTE BLVD,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6901_35,-74.6702395,39.544262,507 CAVERLY DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6901_36,-74.826901,39.5619315,509 CAVERLY DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_6901_37,-74.72726247,39.57687267,513 CAVERLY DR,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_6901_38,-74.77648623,39.62124713,515 CAVERLY DR,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6901_39,-74.77632854,39.62646824,517 CAVERLY DR,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6901_4,-74.82999871,39.49794036,108 BAYSHORE AVE,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6901_40,-74.87398631,39.59521417,519 CAVERLY DR,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_6901_41,-74.80545517,39.62843655,521 CAVERLY DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6901_42,-74.8572452,39.61631344,523 CAVERLY DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6901_44,-74.94854574,39.50886325,527 CAVERLY DR,BRIGANTINE CITY,17,1983,1,RES1,3001 -0103_6901_45,-74.93262866,39.52673035,529 CAVERLY DR,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6901_46,-74.41002696,39.39160064,531 CAVERLY DR,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6901_47,-74.7651455,39.306916,533 CAVERLY DR,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6901_48,-74.57088066,39.37421222,535 CAVERLY DR,BRIGANTINE CITY,16,1981,1,IND2,3002 -0103_6901_49,-74.35738636,39.41441005,537 CAVERLY DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6901_5,-74.7300925,39.457857,110 BAYSHORE AVE,BRIGANTINE CITY,16,1968,1,RES1,3004 -0103_6901_50,-74.6494205,39.448151,539 CAVERLY DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6901_51,-74.68457655,39.49846416,541 CAVERLY DR,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_6901_52,-74.51994627,39.38740514,543 CAVERLY DR,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6901_53,-74.52092945,39.39950036,545 CAVERLY DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6901_54,-74.53112447,39.40320091,547 CAVERLY DR,BRIGANTINE CITY,15,1980,1,RES1,3001 -0103_6901_55,-74.51688274,39.38832634,549 CAVERLY DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6901_55,-74.47823239,39.34558687,549 CAVERLY DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6901_56,-74.52900053,39.39587382,551 CAVERLY DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6901_56,-74.47827379,39.34415398,551 CAVERLY DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6901_57,-74.62202189,39.4229527,553 CAVERLY DR,BRIGANTINE CITY,16,1979,1,COM1,3004 -0103_6901_58,-74.55152952,39.36626057,555 CAVERLY DR,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6901_59,-74.485844,39.464098,557 CAVERLY DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6901_6,-74.68872054,39.35670564,112 BAYSHORE AVE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6901_60,-74.49891713,39.45458092,559 CAVERLY DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_6901_61,-74.841469,39.5349095,1402 SHERIDAN BLVD,BRIGANTINE CITY,16,2014,1,RES1,3001 -0103_6901_62,-74.75525283,39.63558667,1400 SHERIDAN BLVD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_6901_62,-74.44091432,39.3592843,1400 SHERIDAN BLVD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_6901_63,-74.68442969,39.35981508,47 CUMMINGS PLACE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6901_64,-74.79455629,39.53688808,45 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES3A,3001 -0103_6901_65,-74.5290235,39.465664,43 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6901_66,-74.4891839,39.44084068,41 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6901_67,-74.57168989,39.35499877,39 CUMMINGS PLACE,BRIGANTINE CITY,16,1977,1,COM1,3004 -0103_6901_68,-74.61016144,39.32433484,37 CUMMINGS PLACE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_6901_69,-74.6267275,39.4178522,35 CUMMINGS PLACE,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6901_7,-74.56456963,39.41583182,114 BAYSHORE AVE,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_6901_70,-74.52590756,39.40100932,33 CUMMINGS PLACE,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6901_70,-74.47892272,39.3433244,33 CUMMINGS PLACE,BRIGANTINE CITY,16,1978,1,RES4,3001 -0103_6901_71,-74.52147867,39.42504806,31 CUMMINGS PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_6901_72,-74.5127505,39.403886,29 CUMMINGS PLACE,BRIGANTINE CITY,16,1987,1,RES1,3001 -0103_6901_73,-74.5165895,39.396721,27 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6901_74,-74.5192815,39.390367,25 CUMMINGS PLACE,BRIGANTINE CITY,16,1973,1,COM1,3004 -0103_6901_75,-74.670596,39.4939995,23 CUMMINGS PLACE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6901_76,-74.67175467,39.483192,21 CUMMINGS PLACE,BRIGANTINE CITY,16,1978,1,GOV1,3004 -0103_6901_77,-74.5167625,39.3992075,17 CUMMINGS PLACE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_6901_78,-74.5098156,39.43458686,15 CUMMINGS PLACE,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_6901_79,-74.68051245,39.38788275,13 CUMMINGS PLACE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_6901_8,-74.86109089,39.43417819,116 BAYSHORE AVE,BRIGANTINE CITY,16,1965,1,GOV1,3004 -0103_6901_80,-74.57478383,39.3473067,11 CUMMINGS PLACE,BRIGANTINE CITY,16,1976,1,GOV1,3004 -0103_6901_81,-74.50012,39.442562,9 CUMMINGS PLACE,BRIGANTINE CITY,17,2017,1,RES3A,3001 -0103_6901_82,-74.5928208,39.42181822,7 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6901_83,-74.8652615,39.5604375,5 CUMMINGS PLACE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_6901_83,-74.37058829,39.4209234,5 CUMMINGS PLACE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_6901_84,-74.46010497,39.48069822,3 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6901_85,-74.51346956,39.4851292,1 CUMMINGS PLACE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_6901_86,-74.78260289,39.44452321,1202 SHERIDAN BLVD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_6901_88,-74.85171168,39.39758996,142 LINCOLN DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6901_89,-74.75135057,39.44884685,140 LINCOLN DR,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6901_9,-74.67071785,39.46321403,118 BAYSHORE AVE,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_6901_90,-74.52448983,39.50483674,138 LINCOLN DR,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_6901_91,-74.47065812,39.49417085,136 LINCOLN DR,BRIGANTINE CITY,17,1974,1,RES1,3001 -0103_6901_92,-74.754586,39.3479445,134 LINCOLN DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6901_93,-74.79794766,39.52135917,132 LINCOLN DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6901_95,-74.57395907,39.35127082,126 LINCOLN DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6901_96,-74.6826055,39.391426,124 LINCOLN DR,BRIGANTINE CITY,17,1973,1,RES1,3001 -0103_6901_97,-74.5030075,39.384066,122 LINCOLN DR,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_6901_97,-74.48098865,39.34425561,122 LINCOLN DR,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_6901_98,-74.52983924,39.38287164,118 LINCOLN DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6901_99,-74.66310984,39.44463577,116 LINCOLN DR,BRIGANTINE CITY,17,2016,1,RES3A,3001 -0103_6902_1,-74.64600828,39.48346469,446 LAFAYETTE BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6902_10,-74.59792837,39.43541602,428 LAFAYETTE BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_6902_11,-74.62826156,39.39026122,426 LAFAYETTE BLVD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_6902_12,-74.63934421,39.38102702,424 LAFAYETTE BLVD,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_6902_13,-74.638884,39.383259,422 LAFAYETTE BLVD,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_6902_14,-74.61922367,39.38457351,420 LAFAYETTE BLVD,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_6902_15,-74.5940275,39.4340635,418 LAFAYETTE BLVD,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_6902_16,-74.5914474,39.42317776,416 LAFAYETTE BLVD,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_6902_17,-74.59979434,39.41082423,414 LAFAYETTE BLVD,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6902_18,-74.604532,39.4073575,412 LAFAYETTE BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6902_2,-74.65273542,39.45651046,444 LAFAYETTE BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_6902_20,-74.58716017,39.4156325,410 LAFAYETTE BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_6902_21,-74.57548287,39.4092909,408 LAFAYETTE BLVD,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6902_22,-74.56252482,39.42306375,406 LAFAYETTE BLVD,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_6902_23,-74.5691375,39.4138025,404 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_6902_24,-74.55972818,39.41468848,402 LAFAYETTE BLVD,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_6902_25,-74.5625435,39.4085905,400 LAFAYETTE BLVD,BRIGANTINE CITY,16,1965,1,RES3A,3001 -0103_6902_26,-74.49846689,39.33584734,401 W SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6902_27,-74.3732585,39.4007805,403 W SHORE DR,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_6902_28,-74.375347,39.3968915,405 W SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_6902_29,-74.38703433,39.3925349,407 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_6902_3,-74.60245253,39.49985416,442 LAFAYETTE BLVD,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_6902_30,-74.3990655,39.389903,409 W SHORE DR,BRIGANTINE CITY,16,1976,1,RES3A,3001 -0103_6902_31,-74.38196084,39.39991456,411 W SHORE DR,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_6902_32,-74.3800155,39.3955725,413 W SHORE DR,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_6902_33,-74.39094886,39.39515767,415 W SHORE DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_6902_34,-74.5979423,39.37142014,417 W SHORE DR,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_6902_35,-74.61812024,39.37673451,419 W SHORE DR,BRIGANTINE CITY,16,2015,1,COM1,3004 -0103_6902_36,-74.60033029,39.37943155,421 W SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6902_37,-74.606963,39.390998,423 W SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_6902_38,-74.61022211,39.39568966,425 RISLEY RD,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_6902_39,-74.5445135,39.411763,427 RISLEY RD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_6902_4,-74.6023945,39.4819015,440 LAFAYETTE BLVD,BRIGANTINE CITY,16,1983,1,GOV1,3004 -0103_6902_40,-74.56151661,39.41253824,429 RISLEY RD,BRIGANTINE CITY,15,1984,1,RES1,3001 -0103_6902_41,-74.569921,39.413196,431 RISLEY RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_6902_42,-74.581373,39.4112865,433 RISLEY RD,BRIGANTINE CITY,16,1981,1,GOV1,3004 -0103_6902_43,-74.60598069,39.40849054,435 RISLEY RD,BRIGANTINE CITY,15,1982,1,RES1,3001 -0103_6902_44,-74.5836925,39.4195895,437 RISLEY RD,BRIGANTINE CITY,15,1982,1,GOV1,3004 -0103_6902_45,-74.61932952,39.36860374,439 RISLEY RD,BRIGANTINE CITY,15,1982,1,RES1,3001 -0103_6902_46,-74.63558117,39.38222291,441 RISLEY RD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_6902_47,-74.6303525,39.3896795,443 RISLEY RD,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_6902_48,-74.59870419,39.43411062,445 RISLEY RD,BRIGANTINE CITY,15,1982,1,RES1,3001 -0103_6902_49,-74.6438745,39.382725,447 RISLEY RD,BRIGANTINE CITY,15,1984,1,RES1,3001 -0103_6902_5,-74.55342886,39.47143721,438 LAFAYETTE BLVD,BRIGANTINE CITY,16,1983,1,RES1,3002 -0103_6902_6,-74.556002,39.476605,436 LAFAYETTE BLVD,BRIGANTINE CITY,18,2018,1,RES1,3001 -0103_6902_7,-74.54979339,39.47734873,434 LAFAYETTE BLVD,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_6902_8,-74.63859269,39.38168192,432 LAFAYETTE BLVD,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_6902_9,-74.62246127,39.38027433,430 LAFAYETTE BLVD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_7001_1,-74.67556191,39.48278472,520 RISLEY RD,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7001_10,-74.59072332,39.41481245,502 RISLEY RD,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_7001_11,-74.57412392,39.42614519,500 RISLEY RD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7001_12,-74.382641,39.3925665,501 HACKNEY PLACE,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7001_14,-74.60931102,39.38432973,507 HACKNEY PLACE,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7001_15,-74.57061,39.4124415,509 HACKNEY PLACE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7001_16,-74.60289863,39.4089148,513 HACKNEY PLACE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7001_17,-74.5905065,39.4344035,515 HACKNEY PLACE,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_7001_18,-74.5489455,39.474597,517 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7001_2,-74.625731,39.4370495,518 RISLEY RD,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_7001_3,-74.613073,39.4764955,516 RISLEY RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7001_4,-74.55700071,39.47275063,514 RISLEY RD,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_7001_6,-74.61404366,39.42849542,510 RISLEY RD,BRIGANTINE CITY,16,1980,1,RES3A,3001 -0103_7001_7,-74.62962885,39.39085667,508 RISLEY RD,BRIGANTINE CITY,16,1978,1,RES3A,3001 -0103_7001_8,-74.62108778,39.3801916,506 RISLEY RD,BRIGANTINE CITY,16,1980,1,RES3A,3001 -0103_7001_9,-74.5923982,39.42318459,504 RISLEY RD,BRIGANTINE CITY,16,1981,1,RES3A,3001 -0103_7002_1,-74.6092935,39.38649,448 RISLEY RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7002_10.01,-74.55679916,39.39716192,430 RISLEY RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7002_10.02,-74.54615249,39.38636166,427 W SHORE DR,BRIGANTINE CITY,16,1947,1,RES1,3001 -0103_7002_11,-74.59342404,39.36420066,429 W SHORE DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7002_12,-74.61884822,39.36260091,431 HACKNEY PLACE,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_7002_13,-74.64934206,39.32830509,433 HACKNEY PLACE,BRIGANTINE CITY,16,1973,1,RES1,3002 -0103_7002_14,-74.62594896,39.35217726,435 HACKNEY PLACE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7002_15,-74.5340185,39.387149,437 HACKNEY PLACE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7002_16,-74.54048766,39.39604065,439 HACKNEY PLACE,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_7002_17,-74.59115096,39.37186722,441 HACKNEY PLACE,BRIGANTINE CITY,15,1966,1,RES1,3001 -0103_7002_18,-74.50738993,39.34007734,443 HACKNEY PLACE,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_7002_2,-74.61296825,39.37629099,146 RISLEY RD,BRIGANTINE CITY,15,1984,1,RES3A,3001 -0103_7002_3,-74.40559396,39.38177997,444 RISLEY RD,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_7002_4,-74.381586,39.397538,442 RISLEY RD,BRIGANTINE CITY,16,1984,1,GOV1,3004 -0103_7002_5,-74.38929948,39.39187933,440 RISLEY RD,BRIGANTINE CITY,16,1984,1,COM1,3004 -0103_7002_6,-74.37310657,39.40062563,438 RISLEY RD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7002_7,-74.502298,39.3364775,436 RISLEY RD,BRIGANTINE CITY,16,1985,1,RES3A,3001 -0103_7002_8,-74.504806,39.340451,434 RISLEY RD,BRIGANTINE CITY,17,1985,1,RES3A,3001 -0103_7002_9,-74.588154,39.378818,432 RISLEY RD,BRIGANTINE CITY,17,1988,1,COM1,3004 -0103_7003_1,-74.58474495,39.37560332,510 HACKNEY PLACE,BRIGANTINE CITY,17,1970,1,RES3A,3001 -0103_7003_10,-74.53877,39.3794065,436 HACKNEY PLACE,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_7003_10,-74.48564237,39.33907361,436 HACKNEY PLACE,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_7003_11,-74.64844163,39.62787263,434 HACKNEY PLACE,BRIGANTINE CITY,15,1966,1,RES1,3001 -0103_7003_12,-74.6398685,39.395364,451 W SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7003_13,-74.64532742,39.37908682,453 W SHORE DR,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7003_14,-74.652986,39.3947295,455 W SHORE DR,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7003_15,-74.63161671,39.41586782,457 W SHORE DR,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_7003_16,-74.62580697,39.42524668,459 W SHORE DR,BRIGANTINE CITY,16,2015,1,RES1,3001 -0103_7003_17,-74.62084271,39.43268322,461 W SHORE DR,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_7003_18,-74.6224185,39.607631,463 W SHORE DR,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_7003_19,-74.535696,39.378945,465 W SHORE DR,BRIGANTINE CITY,15,1971,1,RES1,3001 -0103_7003_19,-74.4854131,39.33913303,465 W SHORE DR,BRIGANTINE CITY,15,1971,1,RES1,3001 -0103_7003_2,-74.6576295,39.347043,506 HACKNEY PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7003_20,-74.54565256,39.38308317,467 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7003_3,-74.60501826,39.3610671,504 HACKNEY PLACE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7003_4,-74.58192966,39.36555264,502 HACKNEY PLACE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_7003_5,-74.56480598,39.37141632,500 HACKNEY PLACE,BRIGANTINE CITY,18,1962,1,RES1,3001 -0103_7003_6,-74.54543991,39.37768074,446 HACKNEY PLACE,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7003_8,-74.53152489,39.38109385,440 HACKNEY PLACE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_7003_9,-74.54663083,39.3802135,438 HACKNEY PLACE,BRIGANTINE CITY,17,2013,1,RES3A,3001 -0103_7003_9,-74.48592345,39.33850014,438 HACKNEY PLACE,BRIGANTINE CITY,17,2013,1,RES1,3001 -0103_7004_1,-74.5755825,39.3693265,490 W SHORE DR,BRIGANTINE CITY,,1945,2,RES1,3001 -0103_7004_14,-74.61616153,39.36497369,464 W SHORE DR,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_7004_15,-74.59625976,39.36318637,458 W SHORE DR,BRIGANTINE CITY,19,1965,1,RES1,3001 -0103_7004_18,-74.59989425,39.36705259,456 W SHORE DR,BRIGANTINE CITY,18,1968,1,RES1,3001 -0103_7004_2,-74.64151405,39.33202183,486 W SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7004_22,-74.65166012,39.34646268,448 W SHORE DR,BRIGANTINE CITY,,1972,2,RES1,3001 -0103_7004_25,-74.55295664,39.37549936,440 W SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7004_27,-74.6296633,39.41015745,438 W SHORE DR,BRIGANTINE CITY,,0,1,RES1,3004 -0103_7004_28,-74.62428056,39.42357431,434 W SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7004_35,-74.55441874,39.37561396,422 W SHORE DR,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_7004_36,-74.5709915,39.372541,420 W SHORE DR,BRIGANTINE CITY,19,2017,1,RES3A,3001 -0103_7004_37,-74.55393229,39.38382139,418 W SHORE DR,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7004_38,-74.5878585,39.3521375,416 W SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7004_39,-74.58467408,39.36373929,414 W SHORE DR,BRIGANTINE CITY,15,1945,1,RES1,3001 -0103_7004_6,-74.69842117,39.63383279,480 W SHORE DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7004_7.01,-74.62249531,39.42180647,476 W SHORE DR,BRIGANTINE CITY,16,1955,2,RES1,3001 -0103_7004_9,-74.55020757,39.37485184,470 W SHORE DR,BRIGANTINE CITY,16,1947,4,RES3A,3001 -0103_702_10,-74.4589825,39.453195,219 5TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_702_11,-74.5060265,39.44825,215 5TH STREET SO,BRIGANTINE CITY,16,1951,1,RES1,3001 -0103_702_12,-74.50405469,39.45741122,201 5TH STREET SO,BRIGANTINE CITY,45,1962,4,RES1,3001 -0103_702_13,-74.4756355,39.48564,412 W BEACH AVE,BRIGANTINE CITY,45,1981,3,RES1,3001 -0103_702_14,-74.48578463,39.49598425,200 4TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3002 -0103_702_16,-74.51058523,39.45990776,210 4TH STREET SO,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_702_17,-74.4988965,39.4596625,214 4TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_702_18,-74.514728,39.4473885,218 4TH STREET SO,BRIGANTINE CITY,17,1951,1,RES1,3001 -0103_702_19,-74.50912317,39.43644505,222 4TH STREET SO,BRIGANTINE CITY,45,1985,2,RES1,3001 -0103_702_2,-74.519757,39.386966,251 5TH STREET SO,BRIGANTINE CITY,17,1955,1,RES1,3002 -0103_702_20.01,-74.485943,39.4382765,226 4TH STREET SO,BRIGANTINE CITY,19,2015,1,RES1,3001 -0103_702_20.02,-74.4957845,39.4307415,230 4TH STREET SO,BRIGANTINE CITY,19,2007,1,RES1,3001 -0103_702_21,-74.49192155,39.41989874,234 4TH STREET SO,BRIGANTINE CITY,18,2006,1,RES1,3001 -0103_702_22,-74.51075003,39.40639482,238 4TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_702_23,-74.482924,39.43550889,242 4TH STREET SO,BRIGANTINE CITY,18,2014,1,COM1,3004 -0103_702_24,-74.7015245,39.5780795,246 4TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_702_25,-74.5166755,39.3972955,250 4TH STREET SO,BRIGANTINE CITY,20,2017,1,RES1,3001 -0103_702_4,-74.5243455,39.3991015,243 5TH STREET SO,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_702_6,-74.48477395,39.43457585,235 5TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_702_7,-74.521122,39.4060945,231 5TH STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_702_8,-74.49996584,39.42625501,227 5TH STREET SO,BRIGANTINE CITY,16,1949,1,RES1,3002 -0103_702_9,-74.50383131,39.43153995,223 5TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_703_4,-74.4818824,39.34877445,512 W BRIGANTINE AVE,BRIGANTINE CITY,43,1960,2,RES1,3002 -0103_704_1,-74.6204,39.437004,519 W BRIGANTINE AVE,BRIGANTINE CITY,43,1955,3,RES1,3001 -0103_704_10,-74.68652,39.5567755,223 6TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_704_11,-74.52455501,39.39763166,219 6TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_704_12,-74.50144423,39.41218331,215 6TH STREET SO,BRIGANTINE CITY,16,1957,1,RES3A,3001 -0103_704_13,-74.518207,39.411737,211 6TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3004 -0103_704_14,-74.4950025,39.4305915,207 6TH STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_704_15,-74.46411317,39.46304144,201 6TH STREET SO,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_704_16,-74.49326823,39.44548012,506 W BEACH AVE,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_704_17,-74.51897042,39.44924464,500 W BEACH AVE,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_704_18,-74.500296,39.4290635,210 5TH STREET SO,BRIGANTINE CITY,15,1949,1,RES3A,3001 -0103_704_2,-74.38457634,39.39361476,255 6TH STREET SO,BRIGANTINE CITY,43,1957,2,RES3A,3001 -0103_704_21,-74.52772,39.39886017,226 5TH STREET SO,BRIGANTINE CITY,16,1951,1,GOV1,3004 -0103_704_22,-74.691988,39.554546,230 5TH STREET SO,BRIGANTINE CITY,15,1951,1,COM10,3003 -0103_704_23,-74.61586467,39.42879042,234 5TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_704_24,-74.51086055,39.3854227,238 5TH STREET SO,BRIGANTINE CITY,43,1966,2,RES1,3001 -0103_704_26,-74.37583637,39.41598151,248 5TH STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_704_27,-74.50409373,39.34201842,254 5TH STREET SO,BRIGANTINE CITY,43,1948,2,RES1,3001 -0103_704_29,-74.46309982,39.3543682,501 W BRIGANTINE AVE,BRIGANTINE CITY,43,1955,2,COM1,3004 -0103_704_31,-74.50652492,39.33447777,513 W BRIGANTINE AVE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_704_4,-74.4878545,39.3367685,247 6TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_704_5,-74.39449522,39.38617862,243 6TH STREET SO,BRIGANTINE CITY,45,1957,2,RES1,3001 -0103_704_6,-74.36736877,39.42083005,239 6TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_704_7,-74.52881919,39.38294593,235 6TH STREET SO,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_704_8,-74.599684,39.434328,231 6TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3002 -0103_704_9,-74.50975432,39.40099152,227 6TH STREET SO,BRIGANTINE CITY,16,1953,1,AGR1,3001 -0103_706_1,-74.4849112,39.34806533,255 7TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_706_10,-74.51368827,39.3868789,215 7TH STREET SO,BRIGANTINE CITY,16,1950,1,AGR1,3001 -0103_706_12,-74.6052805,39.5940445,201 7TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_706_14,-74.506323,39.409623,606 W BEACH AVE,BRIGANTINE CITY,45,1983,2,RES3A,3001 -0103_706_15,-74.5276525,39.4031765,200 6TH STREET SO,BRIGANTINE CITY,45,1980,2,RES1,3001 -0103_706_16,-74.60925237,39.59451817,210 6TH STREET SO,BRIGANTINE CITY,43,1957,2,RES1,3001 -0103_706_17,-74.51828566,39.39998125,214 6TH STREET SO,BRIGANTINE CITY,45,1980,2,RES1,3001 -0103_706_18,-74.6137255,39.4307925,218 6TH STREET SO,BRIGANTINE CITY,15,1960,1,RES3A,3001 -0103_706_19,-74.51698657,39.38919442,222 6TH STREET SO,BRIGANTINE CITY,43,1955,2,RES1,3001 -0103_706_2,-74.56597065,39.47510176,251 7TH STREET SO,BRIGANTINE CITY,16,1957,2,GOV1,3004 -0103_706_20,-74.4474525,39.375318,226 6TH STREET SO,BRIGANTINE CITY,17,1959,1,RES1,3001 -0103_706_21,-74.37609524,39.41707042,230 6TH STREET SO,BRIGANTINE CITY,15,1930,1,RES1,3001 -0103_706_22,-74.49073632,39.33560652,234 6TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_706_23,-74.470115,39.365579,238 6TH STREET SO,BRIGANTINE CITY,45,1950,2,RES1,3001 -0103_706_25,-74.63091493,39.44524507,250 6TH STREET SO,BRIGANTINE CITY,43,1951,2,RES1,3001 -0103_706_26,-74.58740005,39.50340366,254 6TH STREET SO,BRIGANTINE CITY,16,1958,1,AGR1,3001 -0103_706_27,-74.56497031,39.47579655,607 W BRIGANTINE AVE,BRIGANTINE CITY,16,1958,1,COM1,3004 -0103_706_28,-74.462686,39.353187,613 W BRIGANTINE AVE,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_706_3,-74.6078075,39.489608,247 7TH STREET SO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_706_4,-74.50492631,39.3405832,243 7TH STREET SO,BRIGANTINE CITY,17,2004,1,RES1,3002 -0103_706_5,-74.50996266,39.33760861,239 7TH STREET SO,BRIGANTINE CITY,47,1990,2,GOV1,3004 -0103_706_6,-74.46222417,39.3578165,233 7TH STREET SO,BRIGANTINE CITY,16,1946,2,RES1,3001 -0103_706_8,-74.39263867,39.38910901,223 7TH STREET SO,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_706_9,-74.36498368,39.42081748,219 7TH STREET SO,BRIGANTINE CITY,43,1949,2,RES1,3001 -0103_7101_1,-74.50834153,39.45265516,1404 SHERIDAN BLVD,BRIGANTINE CITY,16,1959,1,RES1,3001 -0103_7101_10,-74.37208333,39.40511505,532 CAVERLY DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7101_11,-74.54435049,39.37268499,530 CAVERLY DR,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_7101_12,-74.39985881,39.38693444,528 CAVERLY DR,BRIGANTINE CITY,15,1985,1,RES1,3001 -0103_7101_13,-74.9396065,39.5241005,526 CAVERLY DR,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_7101_14,-74.930645,39.5192005,524 CAVERLY DR,BRIGANTINE CITY,17,1991,1,GOV1,3004 -0103_7101_15,-74.9491745,39.5002355,522 CAVERLY DR,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7101_16,-74.83467513,39.62690188,520 CAVERLY DR,BRIGANTINE CITY,16,1980,1,GOV1,3004 -0103_7101_17,-74.878234,39.5947495,518 CAVERLY DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7101_18,-74.77948636,39.63133454,516 CAVERLY DR,BRIGANTINE CITY,17,1988,1,GOV1,3004 -0103_7101_19,-74.778195,39.622247,514 CAVERLY DR,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7101_2,-74.6084875,39.3264975,548 CAVERLY DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7101_20,-74.7779205,39.5879085,512 CAVERLY DR,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_7101_21,-74.85529297,39.56164534,510 CAVERLY DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7101_22,-74.843624,39.542715,508 CAVERLY DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7101_23,-74.80420223,39.55680175,506 CAVERLY DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7101_24,-74.79339169,39.53656897,504 CAVERLY DR,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_7101_25,-74.66819766,39.55895498,500 CAVERLY DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7101_26,-74.76108163,39.44628456,501 LAFAYETTE BLVD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_7101_29,-74.8817085,39.4744085,509 LAFAYETTE BLVD,BRIGANTINE CITY,17,2005,1,RES1,3001 -0103_7101_30,-74.54779552,39.54557614,511 LAFAYETTE BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7101_31,-74.63918062,39.52998992,513 LAFAYETTE BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7101_32,-74.62010177,39.55475646,515 LAFAYETTE BLVD,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7101_33,-74.69046536,39.63001022,517 LAFAYETTE BLVD,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_7101_34,-74.8125975,39.561759,519 LAFAYETTE BLVD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7101_35,-74.842452,39.538191,521 LAFAYETTE BLVD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7101_36,-74.83902434,39.57061653,523 LAFAYETTE BLVD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7101_37,-74.7605495,39.608716,525 LAFAYETTE BLVD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_7101_38,-74.78524237,39.61818089,527 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7101_39,-74.8659235,39.597176,529 LAFAYETTE BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7101_4,-74.5120605,39.397915,544 CAVERLY DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7101_4,-74.47886781,39.34388359,544 CAVERLY DR,BRIGANTINE CITY,17,1987,1,REL1,3004 -0103_7101_40,-74.7956535,39.6393715,531 LAFAYETTE BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7101_41,-74.89793399,39.51397371,533 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7101_42,-74.937908,39.50409167,535 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7101_43,-74.9511195,39.521164,537 LAFAYETTE BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7101_44,-74.6897225,39.3536255,539 LAFAYETTE BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7101_45,-74.56684671,39.36952485,541 LAFAYETTE BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_7101_46,-74.36986601,39.41333017,543 LAFAYETTE BLVD,BRIGANTINE CITY,16,1960,1,GOV1,3004 -0103_7101_47,-74.679147,39.446303,545 LAFAYETTE BLVD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7101_48,-74.44847681,39.37203897,547 LAFAYETTE BLVD,BRIGANTINE CITY,16,1973,1,GOV1,3004 -0103_7101_49,-74.5181297,39.39415841,849 LAFAYETTE BLVD,BRIGANTINE CITY,16,1973,1,GOV1,3004 -0103_7101_5,-74.48955587,39.42855284,542 CAVERLY DR,BRIGANTINE CITY,16,1995,1,GOV1,3004 -0103_7101_50,-74.493127,39.435388,551 LAFAYETTE BLVD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7101_51,-74.51595018,39.39881898,553 LAFAYETTE BLVD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7101_51,-74.48088843,39.34577472,553 LAFAYETTE BLVD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7101_52,-74.63138982,39.4138029,555 LAFAYETTE BLVD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7101_53,-74.56395598,39.35965968,557 LAFAYETTE BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7101_6,-74.50211847,39.40978568,540 CAVERLY DR,BRIGANTINE CITY,17,1988,1,GOV1,3004 -0103_7101_7,-74.5227115,39.3907275,538 CAVERLY DR,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_7101_8,-74.68526365,39.49289808,536 CAVERLY DR,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_7101_9,-74.37757759,39.41380436,534 CAVERLY DR,BRIGANTINE CITY,16,1980,1,RES1,3002 -0103_7102_1,-74.828523,39.5297105,530 LAFAYETTE BLVD,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_7102_10,-74.65984624,39.36547299,512 LAFAYETTE BLVD,BRIGANTINE CITY,16,1985,1,RES3A,3001 -0103_7102_11,-74.64273784,39.36567012,510 LAFAYETTE BLVD,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_7102_12,-74.5656775,39.412878,508 LAFAYETTE BLVD,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7102_13,-74.54781218,39.40391933,506 LAFAYETTE BLVD,BRIGANTINE CITY,16,1980,1,RES3A,3001 -0103_7102_14,-74.743063,39.452697,504 LAFAYETTE BLVD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7102_15,-74.85127331,39.42550957,502 LAFAYETTE BLVD,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_7102_16,-74.81517783,39.39902001,500 LAFAYETTE BLVD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7102_17,-74.56373769,39.47107257,501 RISLEY RD,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_7102_18,-74.60915335,39.48979,503 RISLEY RD,BRIGANTINE CITY,16,1983,1,GOV1,3004 -0103_7102_19,-74.6264225,39.4591695,505 RISLEY RD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7102_2,-74.66945983,39.51335801,528 LAFAYETTE BLVD,BRIGANTINE CITY,16,1984,1,COM4,3004 -0103_7102_20,-74.69137772,39.4499179,507 RISLEY RD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7102_21,-74.70717667,39.42254562,509 RISLEY RD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7102_22,-74.821381,39.3986175,511 RISLEY RD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7102_23,-74.721214,39.442729,513 RISLEY RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7102_24,-74.60090063,39.38674853,515 RISLEY RD,BRIGANTINE CITY,16,1983,1,RES1,3001 -0103_7102_26,-74.67105905,39.34588293,521 RISLEY RD,BRIGANTINE CITY,16,1972,1,AGR1,3001 -0103_7102_27,-74.5594175,39.43411,523 RISLEY RD,BRIGANTINE CITY,16,1963,1,RES1,3004 -0103_7102_28,-74.71419675,39.46576743,525 RISLEY RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7102_29,-74.61965705,39.50860884,527 W SHORE DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_7102_3,-74.63846583,39.5280055,526 LAFAYETTE BLVD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7102_4,-74.53750799,39.52595833,524 LAFAYETTE BLVD,BRIGANTINE CITY,16,1980,1,RES3A,3001 -0103_7102_5,-74.8239125,39.4992055,522 LAFAYETTE BLVD,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_7102_6,-74.82742827,39.46340288,520 LAFAYETTE BLVD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_7102_7,-74.7604985,39.444522,518 LAFAYETTE BLVD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7102_8,-74.72729291,39.45827319,516 LAFAYETTE BLVD,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_7103_1,-74.601206,39.369904,500 W SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7103_10,-74.6666312,39.35854212,518 W SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7103_11,-74.735429,39.4600045,520 W SHORE DR,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_7103_12,-74.8662375,39.449954,522 W SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7103_13,-74.638199,39.530555,524 W SHORE DR,BRIGANTINE CITY,19,2008,1,COM10,3003 -0103_7103_14,-74.6243615,39.623472,528 W SHORE DR,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7103_15,-74.840592,39.5615915,530 W SHORE DR,BRIGANTINE CITY,19,2009,1,RES3A,3001 -0103_7103_16,-74.791378,39.619603,532 W SHORE DR,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_7103_17,-74.80578798,39.62903417,534 W SHORE DR,BRIGANTINE CITY,16,1970,1,RES1,3004 -0103_7103_18,-74.88771095,39.50575469,536 W SHORE DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7103_19,-74.92907112,39.51584922,538 W SHORE DR,BRIGANTINE CITY,18,2014,1,IND2,3004 -0103_7103_2,-74.57059164,39.41504101,502 W SHORE DR,BRIGANTINE CITY,18,2009,1,AGR1,3001 -0103_7103_20,-74.43628615,39.37337434,540 W SHORE DR,BRIGANTINE CITY,17,1973,1,RES1,3001 -0103_7103_21,-74.764383,39.3101675,542 W SHORE DR,BRIGANTINE CITY,20,2017,1,RES1,3001 -0103_7103_22,-74.53781147,39.3827162,546 W SHORE DR,BRIGANTINE CITY,19,2004,1,RES1,3001 -0103_7103_23,-74.53394162,39.37992757,548 W SHORE DR,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_7103_24,-74.5345898,39.37963694,550 W SHORE DR,BRIGANTINE CITY,20,2010,1,GOV1,3004 -0103_7103_25,-74.54819252,39.36869867,554 W SHORE DR,BRIGANTINE CITY,21,2008,1,RES1,3001 -0103_7103_26,-74.55202049,39.38294833,556 W SHORE DR,BRIGANTINE CITY,17,1973,1,RES1,3001 -0103_7103_27,-74.55495456,39.38232075,558 W SHORE DR,BRIGANTINE CITY,,1963,1,RES1,3001 -0103_7103_28,-74.3733703,39.40989196,560 W SHORE DR,BRIGANTINE CITY,19,2014,1,RES1,3001 -0103_7103_3,-74.5891547,39.42609797,504 W SHORE DR,BRIGANTINE CITY,19,2014,1,RES1,3001 -0103_7103_4,-74.61298918,39.42132459,506 W SHORE DR,BRIGANTINE CITY,19,2003,1,RES1,3001 -0103_7103_5,-74.5541715,39.477119,508 W SHORE DR,BRIGANTINE CITY,17,1991,1,GOV1,3004 -0103_7103_6,-74.610081,39.5023405,510 W SHORE DR,BRIGANTINE CITY,21,2015,1,RES1,3001 -0103_7103_7,-74.71512821,39.43032052,512 W SHORE DR,BRIGANTINE CITY,20,2012,1,RES1,3001 -0103_7103_8,-74.735185,39.450089,514 W SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7103_9,-74.6356437,39.35924842,516 W SHORE DR,BRIGANTINE CITY,20,2012,1,RES1,3001 -0103_7201_1,-74.8329345,39.4140975,701 STERLING PLACE,BRIGANTINE CITY,16,1955,1,GOV1,3004 -0103_7201_10,-74.56180223,39.36979748,714 LAFAYETTE BLVD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7201_11,-74.96123901,39.5119708,710 LAFAYETTE BLVD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7201_12,-74.70924019,39.4743277,708 LAFAYETTE BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7201_13,-74.83937,39.586146,706 LAFAYETTE BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7201_14,-74.75712029,39.60525272,704 LAFAYETTE BLVD,BRIGANTINE CITY,16,1971,1,RES1,3004 -0103_7201_15,-74.68935566,39.58455998,702 LAFAYETTE BLVD,BRIGANTINE CITY,15,1972,1,GOV1,3004 -0103_7201_16,-74.73301362,39.43807675,700 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7201_2,-74.68652434,39.55550347,705 STERLING PLACE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_7201_3,-74.85589732,39.55605833,707 STERLING PLACE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_7201_4,-74.7854305,39.632913,709 STERLING PLACE,BRIGANTINE CITY,16,1974,1,GOV1,3004 -0103_7201_5,-74.79007721,39.44208821,711 STERLING PLACE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7201_6,-74.815458,39.6384285,713 STERLING PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7201_7,-74.9705595,39.506716,715 STERLING PLACE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_7201_8,-74.567997,39.373548,717 STERLING PLACE,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_7201_9,-74.804727,39.6305345,716 LAFAYETTE BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7201_9,-74.4419178,39.35964128,716 LAFAYETTE BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7202_1.01,-74.6018375,39.420151,1499 SHERIDAN BLVD,BRIGANTINE CITY,17,1990,1,GOV1,3004 -0103_7202_1.02,-74.7158375,39.5791695,600 LAFAYETTE BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7202_1.02,-74.48210062,39.34244531,600 LAFAYETTE BLVD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7202_3,-74.53138283,39.3763025,601 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7202_3,-74.48385735,39.34047072,601 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7202_4,-74.47477095,39.48418625,603 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_7202_5,-74.76942941,39.61512666,605 BOBBY JONES RD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_7202_5,-74.44142146,39.35935839,605 BOBBY JONES RD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_7202_7,-74.505204,39.491947,606 LAFAYETTE BLVD,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_7202_8,-74.452723,39.498689,604 LAFAYETTE BLVD,BRIGANTINE CITY,16,1974,1,GOV1,3004 -0103_7203_1,-74.74917848,39.45091368,700 STERLING PLACE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7203_10,-74.751981,39.4518405,712 STERLING PLACE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7203_11,-74.786013,39.63875733,710 STERLING PLACE,BRIGANTINE CITY,16,1983,1,GOV1,3004 -0103_7203_12,-74.8555465,39.5614415,708 STERLING PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7203_13,-74.5791888,39.57410206,706 STERLING PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7203_14,-74.71112285,39.43775902,704 STERLING PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7203_4,-74.82044589,39.53429707,707 BOBBY JONES RD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7203_5,-74.77256608,39.62312841,709 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_7203_6,-74.73324684,39.46011831,711 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7203_7,-74.79712319,39.62330281,713 BOBBY JONES RD,BRIGANTINE CITY,16,1960,1,GOV1,3004 -0103_7203_8,-74.914146,39.5007205,716 STERLING PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7203_9,-74.79881082,39.63678546,714 STERLING PLACE,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_7204_1,-74.51020166,39.46171148,701 W SHORE DR,BRIGANTINE CITY,16,1957,1,GOV1,3004 -0103_7204_10,-74.734591,39.4394915,723 W SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7204_11,-74.7953008,39.53046512,725 W SHORE DR,BRIGANTINE CITY,15,1965,1,GOV1,3004 -0103_7204_12,-74.78256124,39.57884853,204 MARSDEN PLACE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_7204_13,-74.710832,39.6341795,202 MARSDEN PLACE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7204_14,-74.79041013,39.63338123,200 MARSDEN PLACE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_7204_15,-74.61816719,39.60000037,720 BOBBY JONES RD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_7204_16,-74.71557784,39.45184904,718 BOBBY JONES RD,BRIGANTINE CITY,17,2017,1,IND2,3004 -0103_7204_17,-74.80077255,39.37468259,716 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,COM1,3004 -0103_7204_18,-74.755787,39.448785,714 BOBBY JONES RD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7204_19,-74.6026145,39.3161365,712 BOBBY JONES RD,BRIGANTINE CITY,15,1965,1,RES1,3001 -0103_7204_2,-74.588643,39.433332,705 W SHORE DR,BRIGANTINE CITY,16,2015,1,GOV1,3004 -0103_7204_20,-74.485225,39.519652,710 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7204_21,-74.78111658,39.60963735,708 BOBBY JONES RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7204_21,-74.4411644,39.35946466,708 BOBBY JONES RD,BRIGANTINE CITY,16,1970,1,GOV1,3004 -0103_7204_22,-74.47334573,39.4883394,706 BOBBY JONES RD,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7204_23,-74.4729505,39.4819515,704 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7204_24,-74.535004,39.3736395,702 BOBBY JONES RD,BRIGANTINE CITY,16,1957,1,RES1,3004 -0103_7204_25,-74.645233,39.364596,700 BOBBY JONES RD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7204_3,-74.82828368,39.56977485,707 W SHORE DR,BRIGANTINE CITY,16,1959,1,GOV1,3004 -0103_7204_4,-74.6846265,39.3554945,709 W SHORE DR,BRIGANTINE CITY,15,1963,1,RES1,3001 -0103_7204_5,-74.5511975,39.3763325,711 W SHORE DR,BRIGANTINE CITY,15,1963,1,RES1,3001 -0103_7204_6,-74.48332433,39.4796607,713 W SHORE DR,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7204_7,-74.47495479,39.48737104,715 W SHORE DR,BRIGANTINE CITY,15,1962,1,RES3A,3001 -0103_7204_8,-74.49963128,39.49860996,717 W SHORE DR,BRIGANTINE CITY,18,2003,1,GOV1,3004 -0103_7204_9,-74.7928383,39.44206514,719 W SHORE DR,BRIGANTINE CITY,16,1954,1,GOV1,3004 -0103_7205_10.01,-74.59327094,39.42844811,608 BOBBY JONES RD,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_7205_10.02,-74.58675782,39.42353442,606 BOBBY JONES RD,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_7205_11,-74.51463486,39.45931754,604 BOBBY JONES RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7205_12,-74.522152,39.4389825,602 BOBBY JONES RD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7205_13,-74.607477,39.421901,600 BOBBY JONES RD,BRIGANTINE CITY,17,1967,1,RES1,3001 -0103_7205_13,-74.49429584,39.34180552,600 BOBBY JONES RD,BRIGANTINE CITY,17,1967,1,RES1,3001 -0103_7205_2,-74.52266277,39.38216356,1505 SHERIDAN BLVD,BRIGANTINE CITY,15,1972,1,GOV1,3004 -0103_7205_2,-74.47959267,39.34494718,1505 SHERIDAN BLVD,BRIGANTINE CITY,15,1972,1,RES1,3001 -0103_7205_3,-74.50990292,39.40458962,1507 SHERIDAN BLVD,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7205_4,-74.52379268,39.39908153,601 W SHORE DR,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7205_4,-74.47717535,39.34398173,601 W SHORE DR,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7205_6,-74.66141153,39.40332564,603 W SHORE DR,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_7205_7,-74.60859096,39.31933866,605 W SHORE DR,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_7205_8,-74.55669467,39.35687282,607 W SHORE DR,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_7205_9,-74.47180646,39.44390816,609 W SHORE DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7206_1,-74.51659819,39.38657304,553 W SHORE DR,BRIGANTINE CITY,16,1966,1,COM4,3004 -0103_7206_1,-74.47926143,39.3436327,553 W SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7206_2,-74.5129375,39.3982755,555 W SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7206_3,-74.5292974,39.38684119,559 W SHORE DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_7206_4,-74.529078,39.389031,561 W SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7206_4,-74.47863823,39.34356948,561 W SHORE DR,BRIGANTINE CITY,16,1961,1,GOV1,3004 -0103_7206_5,-74.65622583,39.39514048,1502 SHERIDAN BLVD,BRIGANTINE CITY,16,1973,1,GOV1,3004 -0103_7206_6,-74.6334695,39.4103485,1500 SHERIDAN BLVD,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_7206_7,-74.67629381,39.37650953,556 LAFAYETTE BLVD,BRIGANTINE CITY,15,1973,1,RES1,3001 -0103_7208_1,-74.3725395,39.4121155,600 W SHORE DR,BRIGANTINE CITY,17,1973,1,RES1,3001 -0103_7208_2,-74.62403387,39.46298536,602 W SHORE DR,BRIGANTINE CITY,19,2015,1,GOV1,3004 -0103_7208_3,-74.63573241,39.48354437,604 W SHORE DR,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_7208_5,-74.52635451,39.38444333,608 W SHORE DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7208_7,-74.50045016,39.41156876,610 W SHORE DR,BRIGANTINE CITY,16,1956,1,GOV1,3004 -0103_7208_8,-74.49437033,39.4339508,612 W SHORE DR,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_7301_1,-74.567834,39.367652,816 LAFAYETTE BLVD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7301_10,-74.43963816,39.36781333,803 STERLING PLACE,BRIGANTINE CITY,17,2018,1,RES1,3001 -0103_7301_11,-74.5078155,39.3281275,805 STERLING PLACE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_7301_12,-74.462695,39.3487375,807 STERLING PLACE,BRIGANTINE CITY,16,1977,1,RES3A,3001 -0103_7301_13,-74.48253672,39.35000665,809 STERLING PLACE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7301_14,-74.50920799,39.33628114,811 STERLING PLACE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7301_15,-74.4684556,39.49153085,813 STERLING PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7301_16,-74.37450823,39.41725194,815 STERLING PLACE,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7301_17,-74.5016945,39.409353,835 BOBBY JONES RD,BRIGANTINE CITY,15,1950,1,GOV1,3004 -0103_7301_2,-74.52502133,39.392566,814 LAFAYETTE BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7301_3,-74.37054789,39.41106923,812 LAFAYETTE BLVD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7301_4,-74.46731417,39.491243,810 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7301_5,-74.390222,39.393206,808 LAFAYETTE BLVD,BRIGANTINE CITY,16,2016,1,GOV1,3004 -0103_7301_6,-74.48184319,39.35227984,806 LAFAYETTE BLVD,BRIGANTINE CITY,15,1972,1,RES1,3001 -0103_7301_7,-74.48331996,39.34072707,804 LAFAYETTE BLVD,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_7301_8,-74.5121175,39.3236715,800 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7301_9,-74.77573442,39.64788533,801 STERLING PLACE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7302_1,-74.520823,39.3836745,812 STERLING PLACE,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_7302_10,-74.5548485,39.36939788,107 MARSDEN PLACE,BRIGANTINE CITY,16,1967,1,GOV1,3004 -0103_7302_11,-74.8516555,39.6122875,801 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,GOV1,3004 -0103_7302_11,-74.44243652,39.35936098,801 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,COM3,3004 -0103_7302_12,-74.81164757,39.64564335,803 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7302_13,-74.491177,39.3323785,805 BOBBY JONES RD,BRIGANTINE CITY,16,2016,1,GOV1,3004 -0103_7302_14,-74.522079,39.3205745,807 BOBBY JONES RD,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_7302_15,-74.483838,39.336884,809 BOBBY JONES RD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7302_16,-74.503799,39.339401,811 BOBBY JONES RD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7302_17,-74.44722138,39.48837997,813 BOBBY JONES RD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7302_2,-74.45501624,39.49644787,810 STERLING PLACE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7302_3,-74.384099,39.393213,808 STERLING PLACE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7302_4,-74.48146832,39.34650701,806 STERLING PLACE,BRIGANTINE CITY,16,1973,1,GOV1,3004 -0103_7302_5,-74.4628365,39.35002,804 STERLING PLACE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7302_6.01,-74.4988625,39.329031,802 STERLING PLACE,BRIGANTINE CITY,17,1995,1,RES1,3001 -0103_7302_6.02,-74.81241435,39.64305109,800 STERLING PLACE,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_7302_7,-74.88416635,39.56570166,101 MARSDEN PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7302_8,-74.81320953,39.63213666,103 MARSDEN PLACE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7302_8,-74.44148106,39.36014228,103 MARSDEN PLACE,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7302_9,-74.5382975,39.390611,105 MARSDEN PLACE,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_7303_1,-74.7094395,39.4714955,801 W SHORE DR,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7303_10,-74.50459001,39.33506817,819 W SHORE DR,BRIGANTINE CITY,18,2017,1,GOV1,3004 -0103_7303_11,-74.4545645,39.501661,821 W SHORE DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7303_12,-74.37603498,39.41327167,823 W SHORE DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7303_13,-74.51909678,39.38717766,825 W SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7303_14,-74.55137833,39.46668121,827 W SHORE DR,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_7303_15,-74.56256892,39.36251331,829 W SHORE DR,BRIGANTINE CITY,17,1973,1,RES1,3001 -0103_7303_16,-74.4961255,39.4949315,831 W SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7303_17,-74.504672,39.51636,833 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7303_18,-74.8084495,39.4894405,835 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7303_19,-74.55977035,39.52627803,837 W SHORE DR,BRIGANTINE CITY,17,1972,1,RES1,3001 -0103_7303_2,-74.807736,39.6348275,803 W SHORE DR,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7303_20,-74.60904237,39.52262685,839 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7303_21,-74.592086,39.3164005,841 W SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7303_22,-74.58523399,39.32394384,843 W SHORE DR,BRIGANTINE CITY,15,1972,1,RES1,3001 -0103_7303_23,-74.57807945,39.33424127,845 W SHORE DR,BRIGANTINE CITY,18,2011,1,RES1,3001 -0103_7303_24,-74.60183733,39.3276681,847 W SHORE DR,BRIGANTINE CITY,16,1964,1,COM1,3004 -0103_7303_25,-74.5678855,39.343831,849 W SHORE DR,BRIGANTINE CITY,16,1978,1,GOV1,3004 -0103_7303_26,-74.569811,39.357104,904 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7303_27,-74.53353281,39.30580041,902 LAFAYETTE BLVD,BRIGANTINE CITY,16,1965,1,EDU1,3004 -0103_7303_28,-74.86686153,39.49220195,900 LAFAYETTE BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7303_29,-74.87443077,39.49134855,840 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7303_3,-74.944653,39.526058,805 W SHORE DR,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_7303_30,-74.83278021,39.49885995,838 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7303_31,-74.5063435,39.527485,836 BOBBY JONES RD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7303_32,-74.46896569,39.51033982,834 BOBBY JONES RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7303_33,-74.49407398,39.49084778,832 BOBBY JONES RD,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_7303_34,-74.58767919,39.33471945,830 BOBBY JONES RD,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_7303_35,-74.55506057,39.46955279,826 BOBBY JONES RD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7303_36,-74.52869262,39.38672231,824 BOBBY JONES RD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7303_37,-74.35594265,39.41476755,820 BOBBY JONES RD,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_7303_38,-74.39011085,39.39314196,818 BOBBY JONES RD,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_7303_39,-74.48316652,39.34582067,814 BOBBY JONES RD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7303_4,-74.57430225,39.37260745,807 W SHORE DR,BRIGANTINE CITY,18,2012,1,GOV1,3004 -0103_7303_40,-74.500467,39.328477,812 BOBBY JONES RD,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7303_41,-74.82337642,39.65378385,808-10 BOBBY JONES RD,BRIGANTINE CITY,17,1971,1,GOV1,3004 -0103_7303_43,-74.8679785,39.6018115,806 BOBBY JONES RD,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7303_43,-74.44194532,39.35930372,806 BOBBY JONES RD,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7303_44,-74.5334815,39.384197,804 BOBBY JONES RD,BRIGANTINE CITY,17,1975,1,RES1,3001 -0103_7303_45,-74.912563,39.510694,802 BOBBY JONES RD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7303_46,-74.8030815,39.6351575,800 BOBBY JONES RD,BRIGANTINE CITY,16,1963,1,RES1,3001 -0103_7303_5,-74.801308,39.6347175,809 W SHORE DR,BRIGANTINE CITY,18,2010,1,RES1,3001 -0103_7303_5,-74.44200252,39.35989353,809 W SHORE DR,BRIGANTINE CITY,18,2010,1,RES1,3001 -0103_7303_6,-74.80231103,39.64356466,811 W SHORE DR,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_7303_7,-74.50554673,39.33128334,813 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7303_8,-74.52353133,39.317646,815 W SHORE DR,BRIGANTINE CITY,18,2018,1,RES1,3001 -0103_7303_9,-74.48327637,39.33558171,817 W SHORE DR,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_7304_1,-74.7151965,39.63846,800 W SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7304_10,-74.443427,39.356191,820 W SHORE DR,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_7304_11,-74.39462767,39.38922933,822 W SHORE DR,BRIGANTINE CITY,19,2016,1,RES1,3001 -0103_7304_12,-74.37024791,39.41072023,824 W SHORE DR,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_7304_13,-74.49324133,39.3801077,826 W SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7304_14,-74.50751249,39.44476659,828 W SHORE DR,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_7304_14,-74.47760574,39.34340785,828 W SHORE DR,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_7304_15,-74.58557784,39.33967146,830 W SHORE DR,BRIGANTINE CITY,20,2010,1,RES1,3001 -0103_7304_16,-74.53001178,39.51200783,832 W SHORE DR,BRIGANTINE CITY,17,1964,1,RES1,3001 -0103_7304_17,-74.85779028,39.48233111,834 W SHORE DR,BRIGANTINE CITY,18,1985,1,GOV1,3004 -0103_7304_19,-74.5990665,39.3128155,838 W SHORE DR,BRIGANTINE CITY,17,1994,1,GOV1,3004 -0103_7304_2.01,-74.733997,39.437241,802 W SHORE DR,BRIGANTINE CITY,21,2017,1,RES1,3001 -0103_7304_2.02,-74.86463661,39.6000468,804 W SHORE DR,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_7304_21,-74.58454239,39.33204795,842 W SHORE DR,BRIGANTINE CITY,17,1995,1,RES1,3001 -0103_7304_22,-74.56525283,39.34434014,844 W SHORE DR,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_7304_23,-74.562763,39.357453,846 W SHORE DR,BRIGANTINE CITY,17,2002,1,GOV1,3004 -0103_7304_24,-74.64409442,39.53135322,848 W SHORE DR,BRIGANTINE CITY,17,2003,1,RES1,3001 -0103_7304_25,-74.96132624,39.49890562,850 W SHORE DR,BRIGANTINE CITY,21,2018,1,RES1,3001 -0103_7304_25,-74.44219347,39.35856302,850 W SHORE DR,BRIGANTINE CITY,21,2018,1,RES1,3001 -0103_7304_26,-74.927951,39.5198335,852 W SHORE DR,BRIGANTINE CITY,,1957,1,RES1,3001 -0103_7304_26,-74.44271257,39.35861178,852 W SHORE DR,BRIGANTINE CITY,,1957,1,RES1,3001 -0103_7304_27,-74.93684493,39.51952292,856 W SHORE DR,BRIGANTINE CITY,19,2014,1,RES1,3001 -0103_7304_27,-74.44276836,39.3585033,856 W SHORE DR,BRIGANTINE CITY,19,2014,1,RES1,3001 -0103_7304_28,-74.94272401,39.52394117,858 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7304_28,-74.45070538,39.35545252,858 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7304_29,-74.929552,39.5328395,860 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7304_29,-74.45098187,39.35571284,860 W SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7304_3,-74.89481466,39.47308625,806 W SHORE DR,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7304_30.01,-74.4520815,39.4903885,862 W SHORE DR,BRIGANTINE CITY,15,1960,1,REL1,3004 -0103_7304_30.01,-74.48201576,39.34551774,862 W SHORE DR,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_7304_31,-74.92888922,39.56086499,866 W SHORE DR,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_7304_31,-74.46162689,39.35758885,866 W SHORE DR,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_7304_4,-74.46043907,39.35419135,808 W SHORE DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7304_5,-74.8814405,39.5932415,810 W SHORE DR,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_7304_5,-74.44156022,39.35917816,810 W SHORE DR,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_7304_6,-74.8841645,39.5940705,812 W SHORE DR,BRIGANTINE CITY,17,2001,1,RES1,3001 -0103_7304_7,-74.81902013,39.64977921,814 W SHORE DR,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7304_8,-74.508808,39.328186,816 W SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7304_9,-74.45687684,39.3495955,818 W SHORE DR,BRIGANTINE CITY,21,2017,1,RES1,3001 -0103_7305_1,-74.6368485,39.5366235,732 W SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7305_10,-74.4432168,39.48848429,708 W SHORE DR,BRIGANTINE CITY,,1956,1,RES1,3001 -0103_7305_11,-74.573207,39.34863,706 W SHORE DR,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7305_12,-74.62575,39.4209715,704 W SHORE DR,BRIGANTINE CITY,18,2010,1,RES1,3001 -0103_7305_13,-74.6318417,39.41885991,702 W SHORE DR,BRIGANTINE CITY,18,1960,1,RES1,3001 -0103_7305_2,-74.84844128,39.3937798,730 W SHORE DR,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_7305_3,-74.757763,39.44537,728 W SHORE DR,BRIGANTINE CITY,20,2016,1,RES1,3001 -0103_7305_4,-74.53241577,39.30672415,726 W SHORE DR,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_7305_5,-74.78431389,39.59208162,724 W SHORE DR,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_7305_5,-74.44150662,39.3594511,724 W SHORE DR,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_7305_6,-74.45973145,39.48343758,720 W SHORE DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_7305_7,-74.8568525,39.5610525,716 W SHORE DR,BRIGANTINE CITY,20,2009,1,RES1,3001 -0103_7305_8,-74.58854218,39.41188901,714 W SHORE DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_7402_1,-74.7820403,39.65134419,900 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7402_1,-74.46029621,39.35734023,900 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7402_10,-74.47369216,39.48110251,920 N SHORE DR,BRIGANTINE CITY,16,1997,1,RES1,3001 -0103_7402_10,-74.47737975,39.34362309,920 N SHORE DR,BRIGANTINE CITY,16,1997,1,RES1,3001 -0103_7402_11,-74.4727253,39.48169847,922 N SHORE DR,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_7402_11,-74.47976117,39.34390376,922 N SHORE DR,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_7402_12,-74.47132266,39.4822635,924 N SHORE DR,BRIGANTINE CITY,16,1972,1,COM3,3004 -0103_7402_12,-74.47782619,39.34399023,924 N SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7402_13,-74.49432123,39.46466161,926 N SHORE DR,BRIGANTINE CITY,17,1994,2,RES1,3001 -0103_7402_13,-74.47993553,39.34571236,926 N SHORE DR,BRIGANTINE CITY,17,1994,2,RES1,3001 -0103_7402_14,-74.44767171,39.49141016,928 N SHORE DR,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_7402_14,-74.4805967,39.34415305,928 N SHORE DR,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_7402_15,-74.45164159,39.5023326,930 N SHORE DR,BRIGANTINE CITY,19,2015,1,RES1,3001 -0103_7402_15,-74.47702059,39.34530165,930 N SHORE DR,BRIGANTINE CITY,19,2015,1,RES1,3001 -0103_7402_16,-74.788176,39.6762085,932 N SHORE DR,BRIGANTINE CITY,17,1955,1,GOV1,3004 -0103_7402_16,-74.46002071,39.34929016,932 N SHORE DR,BRIGANTINE CITY,17,1955,1,RES1,3001 -0103_7402_17,-74.79787648,39.64013983,934 N SHORE DR,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7402_17,-74.46324297,39.3494527,934 N SHORE DR,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7402_18,-74.80676759,39.64364734,936 N SHORE DR,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_7402_18,-74.46299848,39.3477766,936 N SHORE DR,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_7402_2,-74.7839575,39.654873,902 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7402_2,-74.46071354,39.35771214,902 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7402_4,-74.51317873,39.46078081,906 N SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7402_4,-74.48127463,39.34457184,906 N SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7402_5,-74.47755338,39.47835919,908 N SHORE DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_7402_5,-74.47734293,39.3435662,908 N SHORE DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_7402_6,-74.47445146,39.48276969,910 N SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7402_6,-74.47776288,39.3435986,910 N SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7402_7.01,-74.46769578,39.48178554,912 N SHORE DR,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7402_7.01,-74.48219241,39.34462348,912 N SHORE DR,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7402_8,-74.4837615,39.4780235,916 N SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7402_8,-74.477642,39.34503898,916 N SHORE DR,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7402_9,-74.51205586,39.46587665,918 N SHORE DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7402_9,-74.47792582,39.34500245,918 N SHORE DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7501_1.01,-74.940143,39.517608,700 SARAZEN RD,BRIGANTINE CITY,17,1996,1,COM1,3004 -0103_7501_1.02,-74.94652936,39.51907187,702 SARAZEN RD,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_7501_10,-74.45909987,39.3547116,18 COLLETTE CIRCLE,BRIGANTINE CITY,16,1951,1,RES1,3002 -0103_7501_11,-74.54054119,39.39104204,20 COLLETTE CIRCLE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7501_12,-74.92073435,39.47549925,22 COLLETTE CIRCLE,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7501_12,-74.44282334,39.35961551,22 COLLETTE CIRCLE,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7501_13,-74.52538032,39.31630353,24 COLLETTE CIRCLE,BRIGANTINE CITY,17,1996,1,COM1,3004 -0103_7501_14,-74.515092,39.3262815,26 COLLETTE CIRCLE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7501_15,-74.46926866,39.34348502,28 COLLETTE CIRCLE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7501_16,-74.48900503,39.33692435,902 SARAZEN RD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7501_17,-74.375157,39.39988,904 SARAZEN RD,BRIGANTINE CITY,16,1968,1,RES2,3005 -0103_7501_18,-74.42250849,39.37319169,906 SARAZEN RD,BRIGANTINE CITY,16,1968,1,RES1,3004 -0103_7501_19,-74.45257801,39.49601419,908 SARAZEN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7501_2,-74.926445,39.510153,2 COLLETTE CIRCLE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7501_20,-74.44031584,39.36878333,910 SARAZEN RD,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_7501_21,-74.3617435,39.4129585,912 SARAZEN RD,BRIGANTINE CITY,18,2009,1,RES1,3001 -0103_7501_22,-74.36489838,39.42210725,914 SARAZEN RD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7501_23,-74.51476626,39.39355486,916 SARAZEN RD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7501_24,-74.52004684,39.39498564,918 SARAZEN RD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7501_25,-74.50609335,39.44551954,920 SARAZEN RD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7501_25,-74.48186426,39.34418722,920 SARAZEN RD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7501_26,-74.534487,39.4712195,922 SARAZEN RD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7501_27,-74.55914503,39.36290866,924 SARAZEN RD,BRIGANTINE CITY,17,1968,1,RES1,3001 -0103_7501_28,-74.60095238,39.34251482,926 SARAZEN RD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7501_29,-74.49779248,39.49134868,819 LAFAYETTE BLVD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_7501_3,-74.9166035,39.480387,4 COLLETTE CIRCLE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7501_30,-74.5611165,39.4692035,817 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7501_31,-74.521859,39.388642,815 LAFAYETTE BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7501_32,-74.38072236,39.41531618,813 LAFAYETTE BLVD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7501_33,-74.4091635,39.391312,811 LAFAYETTE BLVD,BRIGANTINE CITY,15,1970,1,RES1,3001 -0103_7501_34,-74.4843905,39.47742,809 LAFAYETTE BLVD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_7501_35,-74.5014995,39.3370425,807 LAFAYETTE BLVD,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_7501_37,-74.471823,39.342369,803 LAFAYETTE BLVD,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_7501_38,-74.51137942,39.32506733,801 LAFAYETTE BLVD,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7501_4,-74.84577612,39.60687553,6 COLLETTE CIRCLE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7501_40,-74.7839565,39.6516875,715 LAFAYETTE BLVD,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_7501_41,-74.5692545,39.370446,713 LAFAYETTE BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7501_42,-74.88919269,39.54393939,711 LAFAYETTE BLVD,BRIGANTINE CITY,17,1967,1,RES1,3001 -0103_7501_43,-74.8896595,39.474689,709 LAFAYETTE BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7501_44,-74.86373724,39.59928124,705 LAFAYETTE BLVD,BRIGANTINE CITY,17,1967,1,RES1,3001 -0103_7501_45,-74.7816405,39.6377125,703 LAFAYETTE BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7501_46,-74.86362915,39.55735346,701 LAFAYETTE BLVD,BRIGANTINE CITY,16,1965,1,GOV1,3004 -0103_7501_48,-74.82789724,39.38682177,611 LAFAYETTE BLVD,BRIGANTINE CITY,16,1966,1,IND2,3002 -0103_7501_49,-74.73060721,39.45896609,609 LAFAYETTE BLVD,BRIGANTINE CITY,17,1973,1,RES1,3001 -0103_7501_5,-74.8222115,39.6372995,8 COLLETTE CIRCLE,BRIGANTINE CITY,17,2004,1,RES1,3002 -0103_7501_51,-74.77674937,39.61935035,607 LAFAYETTE BLVD,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7501_51,-74.4409126,39.35946875,607 LAFAYETTE BLVD,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7501_52,-74.45046557,39.49362449,605 LAFAYETTE BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7501_53,-74.8072325,39.36479,603 LAFAYETTE BLVD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7501_54,-74.87018667,39.56552799,601 LAFAYETTE BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7501_54,-74.39306347,39.39012593,601 LAFAYETTE BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7501_55,-74.55255586,39.37647954,1425 SHERIDAN BLVD,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7501_57,-74.49862508,39.50093928,1421 SHERIDAN BLVD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7501_58,-74.6009297,39.31654316,1419 SHERIDAN BLVD,BRIGANTINE CITY,16,1966,1,EDU1,3004 -0103_7501_59,-74.72293767,39.45559151,4417 SHERIDAN BLVD,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_7501_60,-74.6207315,39.4333635,1415 SHERIDAN BLVD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7501_61,-74.80488624,39.37161282,1413 SHERIDAN BLVD,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_7501_62,-74.82132058,39.40279984,1411 SHERIDAN BLVD,BRIGANTINE CITY,17,1963,1,RES1,3001 -0103_7501_63,-74.85128135,39.41153381,1409 SHERIDAN BLVD,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_7501_64,-74.54904874,39.55424734,1407 SHERIDAN BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_7501_65,-74.63961184,39.53197303,1405 SHERIDAN BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7501_66,-74.647027,39.5501965,1403 SHERIDAN BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7501_67,-74.602703,39.593082,1401 SHERIDAN BLVD,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_7501_7,-74.798447,39.6328465,12 COLLETTE CIRCLE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7501_8,-74.8355275,39.6261595,14 COLLETTE CIRCLE,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_7501_9,-74.94741052,39.51197647,16 COLLETTE CIRCLE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7601_1,-74.72254864,39.63820255,1310 SHERIDAN BLVD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7601_1,-74.44143829,39.35973703,1310 SHERIDAN BLVD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7601_2,-74.509595,39.479897,1308 SHERIDAN BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7601_3,-74.7135625,39.638738,1306 SHERIDAN BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7601_3,-74.44165556,39.35968899,1306 SHERIDAN BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7601_4,-74.8207662,39.56857597,42 CUMMINGS PLACE,BRIGANTINE CITY,16,1984,1,IND1,3004 -0103_7601_5,-74.5912157,39.42748397,36 CUMMINGS PLACE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7602_1,-74.579168,39.312766,1300 SHERIDAN BLVD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7602_10,-74.57238329,39.3557139,18 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,EDU1,3004 -0103_7602_11,-74.6029095,39.40724,5 BRADY PLACE,BRIGANTINE CITY,17,1972,1,RES1,3001 -0103_7602_12,-74.66772575,39.3580014,1 BRADY PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7602_13,-74.77641584,39.61980151,1304 SHERIDAN BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7602_13,-74.44140759,39.35960181,1304 SHERIDAN BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7602_14,-74.49952533,39.48789701,1302 SHERIDAN BLVD,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7602_2,-74.46722904,39.49228426,2 CUMMINGS PLACE,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7602_3,-74.7551575,39.3611705,4 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7602_4,-74.79600049,39.52419518,6 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7602_5,-74.52728615,39.45964845,8 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7602_6,-74.482669,39.4436455,10 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7602_7,-74.615022,39.322598,12 CUMMINGS PLACE,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7602_8,-74.62175372,39.42035976,14 CUMMINGS PLACE,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_7602_9,-74.56091531,39.36026369,16 CUMMINGS PLACE,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_7701_1,-74.51453292,39.32067597,803 SARAZEN RD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7701_10,-74.46967588,39.34402533,1314 OUIMET RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7701_11,-74.47305066,39.34338251,1312 OUIMET RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7701_12,-74.48299107,39.34795778,1310 OUIMET RD,BRIGANTINE CITY,15,1950,1,RES1,3002 -0103_7701_13,-74.44837434,39.35607495,1308 OUIMET RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7701_14,-74.48745858,39.33895267,1306 OUIMET RD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_7701_15,-74.489785,39.337103,1304 OUIMET RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7701_16,-74.50214771,39.34231365,1302 OUIMET RD,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_7701_17,-74.5017065,39.3354835,1300 OUIMET RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7701_18,-74.383106,39.3923505,24 VARDON RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7701_19,-74.48590754,39.34603068,22 VARDON RD,BRIGANTINE CITY,18,2002,1,RES1,3001 -0103_7701_2,-74.52142891,39.32090883,1330 OUIMET RD,BRIGANTINE CITY,17,1981,1,RES1,3004 -0103_7701_21,-74.51435061,39.32603532,1301 RAY AVE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7701_22,-74.51003312,39.33237719,1303 RAY AVE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7701_23,-74.52134749,39.32294066,1305 RAY AVE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7701_24,-74.5162665,39.322401,1307 RAY AVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7701_25,-74.50760563,39.32654882,1309 RAY AVE,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_7701_26,-74.50675152,39.32856117,1311 RAY AVE,BRIGANTINE CITY,17,1999,1,COM3,3004 -0103_7701_27,-74.50549,39.33036616,1313 RAY AVE,BRIGANTINE CITY,17,1998,1,GOV1,3004 -0103_7701_28,-74.504716,39.3312365,1315 RAY AVE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7701_29,-74.4964875,39.333712,1317 RAY AVE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_7701_3,-74.51004566,39.32749115,1328 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7701_30,-74.52561113,39.31336375,1319 RAY AVE,BRIGANTINE CITY,17,1985,1,GOV1,3004 -0103_7701_31,-74.440278,39.365617,1321 RAY AVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7701_32,-74.44187463,39.35370454,1323 RAY AVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7701_33,-74.81184999,39.64481717,1325 RAY AVE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7701_34,-74.81252839,39.64485081,1327 RAY AVE,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7701_35,-74.80332444,39.64588385,801 SARAZEN RD,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_7701_4,-74.46071789,39.35097384,1326 OUIMET RD,BRIGANTINE CITY,15,1984,1,RES1,3001 -0103_7701_5,-74.4615325,39.3502015,1324 OUIMET RD,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_7701_6,-74.484168,39.3412325,1322 OUIMET RD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_7701_7,-74.48117168,39.34016233,1320 OUIMET RD,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_7701_8,-74.4806555,39.338623,1318 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7701_9,-74.48005583,39.336997,1316 OUIMET RD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7702_1,-74.54919834,39.3700549,703 SARAZEN RD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_7702_10,-74.80200313,39.63614152,1302 RAY AVE,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7702_10,-74.4421637,39.35987363,1302 RAY AVE,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7702_11,-74.816957,39.633133,1300 RAY AVE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7702_11,-74.44264961,39.35927653,1300 RAY AVE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7702_12,-74.882909,39.598294,16 VARDON RD,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_7702_13,-74.87776929,39.59483793,14 VARDON RD,BRIGANTINE CITY,16,1985,1,RES1,3004 -0103_7702_13,-74.44145836,39.35904072,14 VARDON RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7702_14,-74.46300231,39.35658957,12 VARDON RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7702_15,-74.88688776,39.47852218,10 VARDON RD,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7702_16,-74.94632872,39.53257577,1301 DUNCAN PLACE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7702_17,-74.94940687,39.51606203,1303 DUNCAN PLACE,BRIGANTINE CITY,16,1988,1,RES1,3001 -0103_7702_18,-74.9319975,39.52000933,1305 DUNCAN PLACE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7702_2,-74.5323895,39.3789305,1318 RAY AVE,BRIGANTINE CITY,18,2005,1,RES1,3001 -0103_7702_20,-74.889271,39.4719605,1309 DUNCAN PLACE,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_7702_21,-74.8370245,39.6393135,1311 DUNCAN PLACE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7702_22,-74.82541775,39.62855691,1313 DUNCAN PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7702_23,-74.81205399,39.63674943,1315 DUNCAN PLACE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7702_24,-74.80502864,39.63481847,701 SARAZEN RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7702_3,-74.5546585,39.369244,1316 RAY AVE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7702_4,-74.5644605,39.3725075,1314 RAY AVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7702_5,-74.57398071,39.36900861,1312 RAY AVE,BRIGANTINE CITY,17,1986,1,GOV1,3004 -0103_7702_6,-74.88207658,39.59608881,1310 RAY AVE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7702_6,-74.44142244,39.35914121,1310 RAY AVE,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7702_7,-74.874373,39.5919105,1308 RAY AVE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_7702_7,-74.44146798,39.35924023,1308 RAY AVE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_7702_8,-74.87263416,39.59951244,1306 RAY AVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7702_8,-74.44205157,39.35943714,1306 RAY AVE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7702_9,-74.80830389,39.62965297,1304 RAY AVE,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_7702_9,-74.44190412,39.35972825,1304 RAY AVE,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_7703_1,-74.7475975,39.59343,603 SARAZEN RD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7703_10,-74.66468398,39.62326294,4 VARDON RD,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_7703_11,-74.730952,39.452641,1301 SHERIDAN BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7703_12,-74.68404504,39.54797315,1303 SHERIDAN BLVD,BRIGANTINE CITY,17,1978,1,RES1,3001 -0103_7703_13,-74.64949616,39.52388098,1305 SHERIDAN BLVD,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_7703_14,-74.63155993,39.53054016,1307 SHERIDAN BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7703_15,-74.64679438,39.51774341,1309 SHERIDAN BLVD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_7703_16,-74.56030127,39.54340406,1311 SHERIDAN BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7703_17,-74.715662,39.4482065,1313 SHERIDAN BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7703_18,-74.63149068,39.51702002,1315 SHERIDAN BLVD,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_7703_2,-74.78953864,39.595574,1310 DUNCAN PLACE,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7703_3,-74.77693407,39.60378378,1308 DUNCAN PLACE,BRIGANTINE CITY,17,1995,1,RES1,3001 -0103_7703_4,-74.74541571,39.63622822,1306 DUNCAN PLACE,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7703_5,-74.76466502,39.63545297,1304 DUNCAN PLACE,BRIGANTINE CITY,17,1985,1,GOV1,3004 -0103_7703_6,-74.78777842,39.63482646,1302 DUNCAN PLACE,BRIGANTINE CITY,17,2000,1,RES1,3001 -0103_7703_7,-74.8507575,39.5931775,1300 DUNCAN PLACE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_7703_8,-74.718325,39.449524,8 VARDON RD,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_7703_9,-74.7865949,39.59274457,6 VARDON RD,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_7801_1.01,-74.82579786,39.47453143,1313 VARDON RD,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7801_1.02,-74.88257297,39.4440398,1315 VARDON RD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7801_10,-74.58350313,39.53500436,1301 VARDON RD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_7801_11,-74.553519,39.5257705,1303 VARDON RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7801_12,-74.5531905,39.5267615,1305 VARDON RD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7801_13,-74.8696435,39.490274,1307 VARDON RD,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_7801_14,-74.85010333,39.48321005,1309 VARDON RD,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_7801_15,-74.86050558,39.47843608,1311 VARDON RD,BRIGANTINE CITY,16,1975,1,RES1,3001 -0103_7801_2,-74.60158477,39.31451564,1314 VARDON CIRCLE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7801_3,-74.5992835,39.3125005,1312 VARDON CIRCLE,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_7801_4,-74.585051,39.3221815,1310 VARDON CIRCLE,BRIGANTINE CITY,15,1960,1,RES1,3001 -0103_7801_5,-74.59192987,39.32367941,1308 VARDON CIRCLE,BRIGANTINE CITY,17,1993,1,RES1,3001 -0103_7801_6,-74.5826905,39.333439,1306 VARDON CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7801_7,-74.61131948,39.32484285,1304 VARDON CIRCLE,BRIGANTINE CITY,17,1987,1,GOV1,3004 -0103_7801_8,-74.57362191,39.33548362,1302 VARDON CIRCLE,BRIGANTINE CITY,15,2018,1,RES1,3001 -0103_7801_9,-74.57352303,39.35062882,1300 VARDON CIRCLE,BRIGANTINE CITY,17,1998,1,GOV1,3004 -0103_7802_1.01,-74.4963331,39.47755506,903 SARAZEN RD,BRIGANTINE CITY,19,1997,1,RES1,3001 -0103_7802_1.02,-74.51977369,39.47519947,1342 VARDON RD,BRIGANTINE CITY,16,1990,1,RES1,3001 -0103_7802_10,-74.48913151,39.37756289,1324 VARDON RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_7802_11,-74.52857304,39.38140081,1322 VARDON RD,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_7802_12,-74.518257,39.3901755,1320 VARDON RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7802_13,-74.523619,39.3880845,1318 VARDON RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7802_14,-74.51394,39.3999255,1316 VARDON RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7802_15,-74.52750949,39.39928917,1314 VARDON RD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7802_16,-74.52250202,39.39449182,1312 VARDON RD,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_7802_17,-74.50805028,39.44650741,1310 VARDON RD,BRIGANTINE CITY,16,1989,1,RES1,3001 -0103_7802_17,-74.47819139,39.34418835,1310 VARDON RD,BRIGANTINE CITY,16,1989,1,RES1,3001 -0103_7802_18,-74.5370832,39.45731859,1308 VARDON RD,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_7802_19,-74.5549705,39.4699345,1306 VARDON RD,BRIGANTINE CITY,18,2002,1,COM3,3004 -0103_7802_2,-74.36345366,39.40985582,1340 VARDON RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_7802_20,-74.53160888,39.47143473,1304 VARDON RD,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_7802_21,-74.5344375,39.4701435,1302 VARDON RD,BRIGANTINE CITY,18,2001,1,RES1,3001 -0103_7802_22,-74.50921701,39.40611955,1300 VARDON RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7802_23,-74.49995702,39.41558833,32 VARDON RD,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_7802_24,-74.53831533,39.46087433,30 VARDON RD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7802_25,-74.5167665,39.39325467,28 VARDON RD,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_7802_26,-74.36582123,39.41272354,26 VARDON RD,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_7802_27,-74.45458,39.3728325,1301 OUIMET RD,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_7802_28,-74.4479991,39.37549173,1303 OUIMET RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7802_29,-74.37842582,39.41515361,1005 OUIMET RD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7802_3,-74.37083884,39.40380348,1338 VARDON RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7802_30,-74.3811931,39.41819472,1307 OUIMET RD,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_7802_31,-74.36929219,39.41474846,1309 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7802_32,-74.36341376,39.41328594,1311 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7802_33,-74.3677585,39.402881,1313 OUIMET RD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_7802_34,-74.3725725,39.404823,1315 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7802_35,-74.40090959,39.39066331,1317 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7802_36,-74.4920235,39.470154,1319 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3004 -0103_7802_37,-74.46739616,39.48931551,1321 OUIMET RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7802_38,-74.46921552,39.49160734,1323 OUIMET RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7802_39,-74.45550553,39.4892447,1325 OUIMET RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_7802_4,-74.36600861,39.41745901,1336 VARDON RD,BRIGANTINE CITY,16,1997,1,GOV1,3004 -0103_7802_40,-74.45129417,39.49499717,1327 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7802_41,-74.47564929,39.48363632,1329 OUIMET RD,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_7802_42,-74.42388362,39.37462266,1331 OUIMET RD,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_7802_44,-74.38665295,39.39175234,1335 OUIMET RD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_7802_45,-74.3731965,39.399501,1337 OUIMET RD,BRIGANTINE CITY,17,1980,1,RES1,3001 -0103_7802_46.01,-74.5080542,39.33461197,1339 OUIMET RD,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_7802_46.02,-74.50508625,39.33933265,901 SARAZEN RD,BRIGANTINE CITY,17,1991,1,RES1,3001 -0103_7802_5,-74.36952914,39.41673166,1334 VARDON RD,BRIGANTINE CITY,18,2007,1,RES1,3001 -0103_7802_6,-74.36871278,39.41087792,1332 VARDON RD,BRIGANTINE CITY,16,1976,1,RES1,3001 -0103_7802_7,-74.37759679,39.41653896,1330 VARDON RD,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_7802_8,-74.367921,39.421983,1328 VARDON RD,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7802_9,-74.44626881,39.3722489,1326 VARDON RD,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_7803_1,-74.495882,39.3282795,802 SARAZEN RD,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_7803_2,-74.45912033,39.35144104,800 SARAZEN RD,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_7803_3,-74.900746,39.4797775,1 COLLETTE CIRCLE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_7803_3,-74.44270397,39.3594505,1 COLLETTE CIRCLE,BRIGANTINE CITY,17,1996,1,RES1,3001 -0103_7803_4,-74.8174915,39.633818,3 COLLETTE CIRCLE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7803_4,-74.44131965,39.36012496,3 COLLETTE CIRCLE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_7803_5,-74.55392508,39.36865089,5 COLLETTE CIRCLE,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_7803_8,-74.49088595,39.33242014,11 COLLETTE CIRCLE,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7902_1,-74.79797687,39.65160514,1000 N SHORE DR,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_7902_1,-74.46230383,39.34525122,1000 N SHORE DR,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_7902_10,-74.49730349,39.33067737,1018 N SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7902_10,-74.47084833,39.34566126,1018 N SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7902_11,-74.50436143,39.33175764,1020 N SHORE DR,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_7902_11,-74.47120946,39.34478343,1020 N SHORE DR,BRIGANTINE CITY,16,1962,1,GOV1,3004 -0103_7902_13,-74.5090615,39.3314035,1024 N SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7902_13,-74.4712677,39.34413591,1024 N SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7902_14,-74.5064335,39.3276645,1026 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7902_14,-74.47175026,39.34474379,1026 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7902_15,-74.50612,39.328887,1028 N SHORE DR,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_7902_15,-74.47168732,39.34465187,1028 N SHORE DR,BRIGANTINE CITY,17,1958,1,RES1,3001 -0103_7902_16,-74.50485162,39.32856665,1030 N SHORE DR,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_7902_16,-74.47158299,39.34451216,1030 N SHORE DR,BRIGANTINE CITY,17,1970,1,RES1,3001 -0103_7902_17,-74.507476,39.327434,1032 N SHORE DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_7902_17,-74.47102853,39.34388775,1032 N SHORE DR,BRIGANTINE CITY,17,1979,1,RES1,3001 -0103_7902_18,-74.50929045,39.32575783,1034 N SHORE DR,BRIGANTINE CITY,16,1961,1,GOV1,3004 -0103_7902_18,-74.47118,39.34408189,1034 N SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7902_19,-74.5112035,39.3254565,1036 N SHORE DR,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_7902_19,-74.47149572,39.34445225,1036 N SHORE DR,BRIGANTINE CITY,17,1981,1,RES1,3001 -0103_7902_2,-74.81723056,39.64726934,1002 N SHORE DR,BRIGANTINE CITY,16,1950,1,COM3,3004 -0103_7902_2,-74.4638471,39.34694059,1002 N SHORE DR,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_7902_21,-74.5212425,39.319417,1040 N SHORE DR,BRIGANTINE CITY,,1960,1,RES1,3001 -0103_7902_21,-74.47030256,39.34300347,1040 N SHORE DR,BRIGANTINE CITY,,1960,1,RES1,3001 -0103_7902_22,-74.5209075,39.319352,1042 N SHORE DR,BRIGANTINE CITY,,0,1,COM8,3004 -0103_7902_22,-74.47031328,39.34289062,1042 N SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_7902_23,-74.50999865,39.33100867,1044 N SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7902_23,-74.47060737,39.34274519,1044 N SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7902_24,-74.51134304,39.32995485,1046 N SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7902_24,-74.47093514,39.34259192,1046 N SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_7902_25,-74.5122355,39.326939,1048 N SHORE DR,BRIGANTINE CITY,16,1960,1,GOV1,3004 -0103_7902_25,-74.47069891,39.34280172,1048 N SHORE DR,BRIGANTINE CITY,16,1960,1,COM3,3004 -0103_7902_26,-74.5141645,39.326655,1050 N SHORE DR,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7902_26,-74.47076295,39.34287375,1050 N SHORE DR,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_7902_3,-74.41754038,39.36813703,1004 N SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7902_3,-74.46581231,39.34638576,1004 N SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7902_4,-74.4396147,39.36536266,1006 N SHORE DR,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_7902_4,-74.46674372,39.34279587,1006 N SHORE DR,BRIGANTINE CITY,18,2016,1,RES1,3001 -0103_7902_5,-74.49722561,39.33172268,1008 N SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7902_5,-74.47073198,39.3453392,1008 N SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_7902_6,-74.4934003,39.33343435,1010 N SHORE DR,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_7902_6,-74.47030174,39.34482828,1010 N SHORE DR,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_7902_7,-74.52580473,39.3112942,1012 N SHORE DR,BRIGANTINE CITY,,1956,1,RES1,3001 -0103_7902_7,-74.47055678,39.34488484,1012 N SHORE DR,BRIGANTINE CITY,,1956,1,GOV1,3004 -0103_7902_8,-74.5053328,39.33384047,1014 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7902_8,-74.47072419,39.34416446,1014 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_7902_9,-74.49828566,39.3312185,1016 N SHORE DR,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_7902_9,-74.4710065,39.34510501,1016 N SHORE DR,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_8001_1,-74.57184751,39.35459783,901 N SHORE DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8001_10,-74.63980853,39.53180541,919 N SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8001_11,-74.6457515,39.532756,921 N SHORE DR,BRIGANTINE CITY,19,2006,1,GOV1,3004 -0103_8001_12,-74.65196967,39.53229,923 N SHORE DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_8001_13,-74.67086094,39.51884438,925 N SHORE DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_8001_14,-74.6466315,39.550504,927 N SHORE DR,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_8001_15,-74.64513623,39.5496583,929 N SHORE DR,BRIGANTINE CITY,17,1964,1,RES1,3001 -0103_8001_16,-74.9448997,39.49639615,931 N SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_8001_16,-74.44245311,39.3586985,931 N SHORE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_8001_17.01,-74.92483505,39.50871754,933 N SHORE DR,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_8001_17.01,-74.4422878,39.3585232,933 N SHORE DR,BRIGANTINE CITY,16,1962,1,GOV1,3004 -0103_8001_17.02,-74.92701,39.519783,935 N SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_8001_17.02,-74.44300319,39.35849506,935 N SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_8001_18,-74.948352,39.516523,937 N SHORE DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8001_18,-74.44288766,39.35825514,937 N SHORE DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8001_19,-74.9421645,39.5220155,939 N SHORE DR,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_8001_19,-74.45114387,39.35594768,939 N SHORE DR,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_8001_2,-74.63832059,39.52375591,903 N SHORE DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_8001_20,-74.88440943,39.55785237,941 N SHORE DR,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_8001_20,-74.45089987,39.35575484,941 N SHORE DR,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_8001_21,-74.71854479,39.64491874,1001 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_8001_21,-74.46215559,39.35798281,1001 N SHORE DR,BRIGANTINE CITY,17,1989,1,COM4,3004 -0103_8001_22,-74.48835792,39.46557247,1003 N SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_8001_22,-74.47621012,39.34489639,1003 N SHORE DR,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_8001_23,-74.4446405,39.486536,1005 N SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8001_23,-74.47759903,39.34557983,1005 N SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8001_24,-74.4505038,39.49481246,1007 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_8001_24,-74.47811701,39.34513466,1007 N SHORE DR,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_8001_25,-74.80407972,39.64517256,1009 N SHORE DR,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_8001_25,-74.45909103,39.34606252,1009 N SHORE DR,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_8001_26,-74.81572629,39.64690653,1011 N SHORE DR,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_8001_26,-74.46311135,39.34771708,1011 N SHORE DR,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_8001_27,-74.807815,39.6398205,1013 N SHORE DR,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_8001_27,-74.4615212,39.34537671,1013 N SHORE DR,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_8001_28,-74.79821433,39.65001597,1015 N SHORE DR,BRIGANTINE CITY,17,1983,1,REL1,3004 -0103_8001_28,-74.46377968,39.34688091,1015 N SHORE DR,BRIGANTINE CITY,17,1983,1,RES1,3001 -0103_8001_29,-74.806137,39.659884,1017 N SHORE DR,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_8001_29,-74.46584331,39.34831709,1017 N SHORE DR,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_8001_30,-74.42988445,39.36041334,1019 N SHORE DR,BRIGANTINE CITY,17,1967,1,RES1,3001 -0103_8001_30,-74.46539566,39.34596786,1019 N SHORE DR,BRIGANTINE CITY,17,1967,1,RES1,3001 -0103_8001_31,-74.434228,39.363438,1021 N SHORE DR,BRIGANTINE CITY,16,1966,1,COM1,3004 -0103_8001_31,-74.4684886,39.34226698,1021 N SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8001_32,-74.48646283,39.33378952,1023 N SHORE DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8001_32,-74.46846536,39.34428657,1023 N SHORE DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8001_33,-74.522026,39.315578,1025 N SHORE DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8001_33,-74.46900221,39.34486073,1025 N SHORE DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8001_34,-74.49565742,39.33343332,1027 N SHORE DR,BRIGANTINE CITY,17,1962,1,RES1,3001 -0103_8001_34,-74.47093478,39.34503562,1027 N SHORE DR,BRIGANTINE CITY,17,1962,1,RES1,3001 -0103_8001_35,-74.73765487,39.55169356,1201 SHERIDAN BLVD,BRIGANTINE CITY,16,1964,1,GOV1,3004 -0103_8001_36.01,-74.7789775,39.6062185,3 VARDON RD,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_8001_36.02,-74.72486015,39.45841021,5 VARDON RD,BRIGANTINE CITY,16,1970,1,GOV1,3004 -0103_8001_37,-74.81236998,39.63005517,7 VARDON RD,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_8001_38,-74.93157494,39.48454359,9 VARDON RD,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_8001_39,-74.53529884,39.38275047,11 VARDON RD,BRIGANTINE CITY,18,2017,1,RES1,3001 -0103_8001_4,-74.648904,39.523148,907 N SHORE DR,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_8001_40,-74.88126522,39.60241957,13 VARDON RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_8001_40,-74.44199608,39.35937307,13 VARDON RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_8001_41,-74.767222,39.6455705,15 VARDON RD,BRIGANTINE CITY,17,1989,1,RES1,3001 -0103_8001_42,-74.5246115,39.3166325,17 VARDON RD,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_8001_43,-74.5181985,39.320544,19 VARDON RD,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_8001_44,-74.479919,39.339583,21 VARDON RD,BRIGANTINE CITY,17,2000,1,RES1,3001 -0103_8001_45,-74.49418776,39.34093338,23 VARDON RD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_8001_46,-74.38999705,39.39237283,25 VARDON RD,BRIGANTINE CITY,17,1985,1,IND1,3002 -0103_8001_47,-74.37977145,39.41896928,27 VARDON RD,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8001_48,-74.52592658,39.39020266,31 VARDON RD,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_8001_5,-74.6445455,39.535076,909 N SHORE DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8001_50,-74.56869412,39.36542732,35 VARDON RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_8001_51,-74.4965525,39.498583,37 VARDON RD,BRIGANTINE CITY,17,1998,1,RES1,3001 -0103_8001_52,-74.828668,39.495573,39 VARDON RD,BRIGANTINE CITY,17,2000,1,RES1,3004 -0103_8001_54,-74.58689422,39.32428338,43 VARDON RD,BRIGANTINE CITY,17,2000,1,COM1,3004 -0103_8001_55,-74.637845,39.527613,45 VARDON RD,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_8001_56,-74.5909006,39.32202367,1002 VARDON CIRCLE,BRIGANTINE CITY,17,2006,1,RES1,3001 -0103_8001_57,-74.55076374,39.52725445,1000 VARDON CIRCLE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_8001_58,-74.4964025,39.5255855,1319 VARDON RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_8001_59,-74.48639925,39.52718997,1321 VARDON RD,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_8001_6,-74.65120603,39.53495819,911 N SHORE DR,BRIGANTINE CITY,17,2000,1,RES1,3001 -0103_8001_60,-74.49670845,39.49850084,1323 VARDON RD,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_8001_61,-74.50873295,39.49250262,1325 VARDON RD,BRIGANTINE CITY,18,1962,1,RES1,3001 -0103_8001_7,-74.64708936,39.53542756,913 N SHORE DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8001_8,-74.63620135,39.53068245,915 N SHORE DR,BRIGANTINE CITY,15,1953,1,RES1,3001 -0103_8001_9,-74.63687865,39.53437896,917 N SHORE DR,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_801_4,-74.573223,39.543006,301 8TH STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_802_1,-74.46957417,39.34209699,255 8TH STREET SO,BRIGANTINE CITY,17,1950,2,RES1,3001 -0103_802_10,-74.4887455,39.337529,209 8TH STREET SO,BRIGANTINE CITY,16,1952,1,RES1,3001 -0103_802_11,-74.3688199,39.41576005,718 W BEACH AVE,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_802_12,-74.450244,39.3742895,712 W BEACH AVE,BRIGANTINE CITY,43,1957,2,RES1,3001 -0103_802_13,-74.51801328,39.38904026,706 W BEACH AVE,BRIGANTINE CITY,43,1952,2,RES1,3001 -0103_802_14,-74.615395,39.43051,200 7TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_802_15,-74.3717245,39.411251,210 7TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_802_16,-74.3860655,39.390621,214 7TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_802_17,-74.49186479,39.33900391,218 7TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_802_19,-74.50386306,39.33436166,230 7TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_802_2,-74.65684619,39.39685603,251 8TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_802_20,-74.61212799,39.48945566,236 7TH STREET SO,BRIGANTINE CITY,16,1953,1,RES1,3001 -0103_802_21,-74.5474775,39.4986735,240 7TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_802_23,-74.62112581,39.42034839,250 7TH STREET SO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_802_24,-74.63363866,39.41670006,701 W BRIGANTINE AVE,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_802_25,-74.68095085,39.37831,707 W BRIGANTINE AVE,BRIGANTINE CITY,43,1956,2,RES1,3001 -0103_802_26,-74.47933464,39.33855316,713 W BRIGANTINE AVE,BRIGANTINE CITY,16,1956,1,RES1,3001 -0103_802_3,-74.6483435,39.4084745,247 8TH STREET SO,BRIGANTINE CITY,15,1948,2,RES1,3001 -0103_802_5,-74.46125558,39.3568227,239 8TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_802_6,-74.5669275,39.4742515,235 8TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_802_7,-74.60722284,39.50090303,229 8TH STREET SO,BRIGANTINE CITY,43,1950,2,RES1,3001 -0103_802_8,-74.48766817,39.34971946,223 8TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_802_9,-74.4588845,39.354489,217 8TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_803_1,-74.80972353,39.64078633,813 OCEAN AVE,BRIGANTINE CITY,17,1960,1,RES1,3001 -0103_803_10,-74.51388027,39.3192245,806-18 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_803_12,-74.40990357,39.38097681,320 8TH STREET SO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_803_13,-74.38039685,39.39946448,324 8TH STREET SO,BRIGANTINE CITY,15,1956,1,RES1,3001 -0103_803_14,-74.51374693,39.32281514,328 8TH STREET SO,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_803_15,-74.49698865,39.32945893,332 8TH STREET SO,BRIGANTINE CITY,16,1956,1,GOV1,3004 -0103_803_16,-74.4902755,39.332183,336 8TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_803_17,-74.5065915,39.323896,340 8TH STREET SO,BRIGANTINE CITY,15,1963,1,RES1,3001 -0103_803_18,-74.44296458,39.3539993,344 8TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_803_19,-74.679686,39.493728,348 8TH STREET SO,BRIGANTINE CITY,20,2015,1,RES1,3001 -0103_803_2,-74.60648673,39.49128376,353 9TH STREET SO,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_803_20,-74.6687021,39.46158443,352 8TH STREET SO,BRIGANTINE CITY,16,1974,1,RES1,3001 -0103_803_3,-74.6826272,39.44484054,347 9TH STREET SO,BRIGANTINE CITY,17,1954,1,RES1,3001 -0103_803_4,-74.68108723,39.49977189,343 9TH STREET SO,BRIGANTINE CITY,20,2012,1,RES3A,3001 -0103_803_5,-74.44124578,39.36595111,337 9TH STREET SO,BRIGANTINE CITY,20,2014,1,RES1,3001 -0103_803_6,-74.5090665,39.3222145,333 9TH STREET SO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_803_7,-74.4901335,39.3314195,329 9TH STREET SO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_803_8,-74.502411,39.3300205,325 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES3A,3001 -0103_804_1,-74.63731503,39.3692929,813 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_804_1,-74.49586384,39.33065344,813 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_804_10,-74.557179,39.4736535,215 9TH STREET SO,BRIGANTINE CITY,17,2007,1,RES1,3001 -0103_804_11,-74.5019865,39.3352105,818 W BEACH AVE,BRIGANTINE CITY,19,2006,1,RES1,3001 -0103_804_12.02,-74.464416,39.3530705,810 W BEACH AVE,BRIGANTINE CITY,17,1988,1,RES3A,3001 -0103_804_13,-74.49001737,39.33819412,200 8TH STREET SO,BRIGANTINE CITY,18,1945,1,RES1,3001 -0103_804_14,-74.62998986,39.43778969,218 8TH STREET SO,BRIGANTINE CITY,16,1985,1,RES3A,3001 -0103_804_15,-74.49459168,39.34062847,222 8TH STREET SO,BRIGANTINE CITY,15,1954,1,GOV1,3004 -0103_804_16,-74.44384417,39.35643634,226 8TH STREET SO,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_804_17,-74.46794385,39.34436885,230 8TH STREET SO,BRIGANTINE CITY,15,1954,1,GOV1,3004 -0103_804_18,-74.62230408,39.42218724,234 8TH STREET SO,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_804_19,-74.62982917,39.41462972,242 8TH STREET SO,BRIGANTINE CITY,16,1948,1,RES1,3001 -0103_804_20,-74.468553,39.34591,246 8TH STREET SO,BRIGANTINE CITY,45,1948,2,RES1,3001 -0103_804_21,-74.46120082,39.34796952,250 8TH STREET SO,BRIGANTINE CITY,43,1954,2,RES1,3001 -0103_804_3,-74.51105794,39.32759683,251 9TH STREET SO,BRIGANTINE CITY,19,2001,1,RES1,3001 -0103_804_4,-74.4646441,39.34741668,243 9TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_804_5,-74.47973975,39.33838897,239 9TH STREET SO,BRIGANTINE CITY,15,1955,1,RES3A,3001 -0103_804_6,-74.63241549,39.39875467,235 9TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_804_7,-74.6608245,39.403238,231 9TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_804_8,-74.48033484,39.35053498,223 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_804_9,-74.45529865,39.35358766,219 9TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_805_1,-74.91863905,39.51666784,919 OCEAN AVE,BRIGANTINE CITY,16,1957,1,RES1,3001 -0103_805_10,-74.494635,39.333327,313 10TH STREET SO,BRIGANTINE CITY,18,2004,1,RES1,3001 -0103_805_11,-74.51425717,39.32541948,301 10TH STREET SO,BRIGANTINE CITY,,0,1,RES1,3001 -0103_805_12,-74.40734665,39.38023865,900-12 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES1,3001 -0103_805_13,-74.50813934,39.32847186,312 9TH STREET SO,BRIGANTINE CITY,15,1940,1,RES1,3001 -0103_805_14,-74.49241212,39.33030935,316 9TH STREET SO,BRIGANTINE CITY,19,2009,1,RES1,3001 -0103_805_15,-74.49315432,39.3333866,320 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_805_16,-74.43323531,39.36596103,324 9TH STREET SO,BRIGANTINE CITY,17,1951,1,GOV1,3004 -0103_805_17,-74.6681235,39.463298,332 9TH STREET SO,BRIGANTINE CITY,19,2008,1,RES1,3001 -0103_805_18,-74.63513597,39.46424843,336 9TH STREET SO,BRIGANTINE CITY,17,2002,1,RES3A,3001 -0103_805_19,-74.58847733,39.48797549,342 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_805_2,-74.93932772,39.52521564,353 10TH STREET SO,BRIGANTINE CITY,15,1952,1,RES1,3001 -0103_805_20,-74.81420483,39.644876,348 9TH STREET SO,BRIGANTINE CITY,16,1952,1,GOV1,3004 -0103_805_21,-74.725538,39.6411205,352 9TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_805_22,-74.95331748,39.5289148,358 9TH STREET SO,BRIGANTINE CITY,20,2018,1,RES1,3001 -0103_805_23,-74.95178,39.517741,901 OCEAN AVE,BRIGANTINE CITY,21,2009,1,RES1,3001 -0103_805_24,-74.946916,39.5186835,913 OCEAN AVE,BRIGANTINE CITY,19,1989,1,RES1,3001 -0103_805_3,-74.88341038,39.58500718,349 10TH STREET SO,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_805_4,-74.78576724,39.64231557,345 10TH STREET SO,BRIGANTINE CITY,19,2012,1,RES1,3001 -0103_805_5,-74.81802984,39.64784001,341 10TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_805_6,-74.6114365,39.491011,335 10TH STREET SO,BRIGANTINE CITY,18,2008,1,RES1,3001 -0103_805_7,-74.66835254,39.46125416,329 10TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_805_8,-74.80423304,39.66656915,323 10TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_805_9,-74.521619,39.317282,317 10TH STREET SO,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_806_1,-74.5253665,39.317406,901 W BRIGANTINE AVE,BRIGANTINE CITY,,0,1,RES3A,3001 -0103_806_10,-74.62451382,39.41974394,207 10TH STREET SO,BRIGANTINE CITY,15,1948,1,RES1,3001 -0103_806_11,-74.45916492,39.35394183,201 10TH STREET SO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_806_12,-74.556749,39.473763,906 W BEACH AVE,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_806_13,-74.5936033,39.49300187,900 W BEACH AVE,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_806_14.01,-74.48336948,39.34998233,210 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_806_14.02,-74.6239835,39.425214,218 9TH STREET SO,BRIGANTINE CITY,16,1954,1,RES1,3001 -0103_806_15,-74.6567737,39.4014399,222 9TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_806_16,-74.4701785,39.3416125,230 9TH STREET SO,BRIGANTINE CITY,16,1946,1,RES1,3001 -0103_806_17,-74.5145945,39.327423,234 9TH STREET SO,BRIGANTINE CITY,15,1954,1,RES3A,3001 -0103_806_18,-74.57850433,39.5401505,238 9TH STREET SO,BRIGANTINE CITY,15,1972,1,RES1,3001 -0103_806_19,-74.7582115,39.34441433,242 9TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3001 -0103_806_19,-74.48393616,39.34054206,242 9TH STREET SO,BRIGANTINE CITY,15,1954,1,RES1,3002 -0103_806_2,-74.5236279,39.32029313,251 10TH STREET SO,BRIGANTINE CITY,16,1930,1,RES1,3001 -0103_806_20,-74.57204075,39.36447232,246 9TH STREET SO,BRIGANTINE CITY,17,1950,1,RES1,3001 -0103_806_21,-74.61633001,39.4309072,250 9TH STREET SO,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_806_21,-74.49524457,39.33028518,250 9TH STREET SO,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_806_3,-74.5972575,39.435429,247 10TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_806_3,-74.50076906,39.33733975,247 10TH STREET SO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_806_4,-74.6289855,39.375765,243 10TH STREET SO,BRIGANTINE CITY,15,1950,1,RES1,3001 -0103_806_4,-74.49571915,39.3300563,243 10TH STREET SO,BRIGANTINE CITY,15,1950,1,COM1,3004 -0103_806_5.01,-74.6735355,39.3453985,239 10TH STREET SO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_806_5.01,-74.48408989,39.34077807,239 10TH STREET SO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_806_5.02,-74.83146113,39.35797823,235 10TH STREET SO,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_806_5.02,-74.48372579,39.34062898,235 10TH STREET SO,BRIGANTINE CITY,17,1994,1,RES1,3001 -0103_806_5.03,-74.64904916,39.51372298,231 10TH STREET SO,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_806_6,-74.45882731,39.35052604,227 10TH STREET SO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_806_7,-74.47897933,39.3389419,223 10TH STREET SO,BRIGANTINE CITY,15,1949,1,RES1,3001 -0103_806_8,-74.65407154,39.39631633,215 10TH STREET SO,BRIGANTINE CITY,17,2004,1,RES1,3001 -0103_806_9,-74.6312295,39.4190205,211 10TH STREET SO,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_8101_2,-74.44739,39.356147,1515 E SHORE DR,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_8101_2,-74.47635131,39.34406505,1515 E SHORE DR,BRIGANTINE CITY,17,2002,1,RES1,3001 -0103_8101_3,-74.50416599,39.33894683,1513 E SHORE DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_8101_3,-74.47582641,39.34389458,1513 E SHORE DR,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_8101_4,-74.489783,39.351227,1511 E SHORE DR,BRIGANTINE CITY,18,2004,1,RES3A,3001 -0103_8101_4,-74.48122159,39.34445669,1511 E SHORE DR,BRIGANTINE CITY,18,2004,1,RES4,3001 -0103_8101_5,-74.37583261,39.40120183,1509 E SHORE DR,BRIGANTINE CITY,18,1960,1,RES1,3001 -0103_8101_5,-74.47736782,39.3446247,1509 E SHORE DR,BRIGANTINE CITY,18,1960,1,RES1,3001 -0103_8101_6,-74.37496179,39.40018458,1507 E SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8101_6,-74.47676866,39.34498008,1507 E SHORE DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8101_7,-74.38663802,39.39116117,1505 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_8101_7,-74.47672685,39.34343586,1505 E SHORE DR,BRIGANTINE CITY,16,1955,1,RES1,3001 -0103_8101_9,-74.52076943,39.44128658,1501 E SHORE DR,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_8101_9,-74.47927824,39.34438448,1501 E SHORE DR,BRIGANTINE CITY,17,1984,1,RES1,3001 -0103_8201_1,-74.37097618,39.40196848,1003 SHERIDAN BLVD,BRIGANTINE CITY,16,1969,1,COM1,3004 -0103_8201_10,-74.78637762,39.64373069,217 ROOSEVELT BLVD NO,BRIGANTINE CITY,18,2012,1,RES3A,3001 -0103_8201_10,-74.46219189,39.35802936,217 ROOSEVELT BLVD NO,BRIGANTINE CITY,18,2012,1,RES1,3001 -0103_8201_12,-74.47435204,39.49286802,216 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8201_12,-74.47782259,39.34365735,216 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8201_13,-74.920645,39.5638155,214 WASHINGTON DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8201_13,-74.45573654,39.35135611,214 WASHINGTON DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8201_14,-74.9160795,39.5298915,212 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES3A,3001 -0103_8201_14,-74.44297536,39.35843904,212 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8201_15,-74.63817334,39.52387701,210 WASHINGTON DR,BRIGANTINE CITY,16,1971,1,RES3A,3001 -0103_8201_16,-74.603303,39.323573,208 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8201_17,-74.58429715,39.52918555,206 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8201_18,-74.460308,39.5308215,204 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES1,3002 -0103_8201_19,-74.4995666,39.41519633,202 WASHINGTON DR,BRIGANTINE CITY,17,2014,1,RES1,3001 -0103_8201_2,-74.40036615,39.39072403,201 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8201_20,-74.52049842,39.38804031,200 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8201_21,-74.3686455,39.4076375,1001 SHERIDAN BLVD,BRIGANTINE CITY,16,1972,1,RES3A,3001 -0103_8201_3,-74.5163495,39.3930945,203 ROOSEVELT BLVD NO,BRIGANTINE CITY,18,2005,1,RES3A,3001 -0103_8201_4,-74.500909,39.40788,205 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1966,1,RES3A,3001 -0103_8201_5,-74.50192608,39.48716637,207 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1965,1,COM4,3004 -0103_8201_6,-74.57898592,39.53333884,209 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1965,1,RES3A,3001 -0103_8201_7,-74.61183437,39.32066835,211 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1977,1,RES1,3002 -0103_8201_8,-74.65227866,39.53101999,213 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8201_9,-74.93070681,39.51797189,215 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1969,1,RES3A,3001 -0103_8201_9,-74.44269427,39.35837603,215 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8202_1,-74.80648241,39.62757965,1103 SHERIDAN BLVD,BRIGANTINE CITY,17,2015,1,RES3A,3001 -0103_8202_1,-74.44219559,39.35961133,1103 SHERIDAN BLVD,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_8202_10,-74.59399894,39.31352585,217 LINCOLN DR,BRIGANTINE CITY,16,1971,1,RES3A,3001 -0103_8202_11,-74.558482,39.358939,219 LINCOLN DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8202_12,-74.9490303,39.54350659,221 LINCOLN DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8202_12,-74.45586021,39.35118744,221 LINCOLN DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8202_13,-74.44818454,39.4856089,222 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8202_13,-74.48019271,39.34367627,222 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8202_14,-74.95335574,39.51781453,220 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_8202_14,-74.43226145,39.36423785,220 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_8202_15,-74.9317905,39.4957915,218 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_8202_15,-74.44322413,39.35887326,218 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_8202_16,-74.56309241,39.35826025,216 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_8202_17,-74.59462887,39.31039365,214 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_8202_18,-74.845419,39.4824855,212 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_8202_19,-74.51503483,39.4746212,210 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8202_2,-74.80717563,39.65633443,201 LINCOLN DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8202_20,-74.61608078,39.44189359,208 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1972,1,COM1,3004 -0103_8202_21,-74.45046465,39.37400381,206 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8202_22,-74.45466046,39.49990516,204 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1978,1,RES1,3002 -0103_8202_23,-74.49569341,39.33741234,202 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8202_24,-74.4607105,39.3508845,200 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,2016,1,RES1,3001 -0103_8202_25,-74.43763074,39.36713563,1101 SHERIDAN BLVD,BRIGANTINE CITY,18,1996,1,RES3A,3001 -0103_8202_3,-74.520666,39.320136,203 LINCOLN DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8202_4,-74.4844904,39.34422152,205 LINCOLN DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8202_5,-74.44747884,39.48301051,207 LINCOLN DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8202_6,-74.36768994,39.4117163,209 LINCOLN DR,BRIGANTINE CITY,16,1979,1,RES1,3001 -0103_8202_7,-74.522672,39.3969295,211 LINCOLN DR,BRIGANTINE CITY,17,1976,1,RES1,3001 -0103_8202_8,-74.56945282,39.36530448,213 LINCOLN DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8202_9,-74.52201151,39.52778578,215 LINCOLN DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8301_1.01,-74.52313807,39.31393698,144 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_1.02,-74.4623705,39.3453465,1000 SHERIDAN BLVD,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_8301_10,-74.6358435,39.533615,126 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_11,-74.84045681,39.38009535,124 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_12,-74.73708183,39.46409732,122 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_13,-74.43753428,39.51942689,120 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_14,-74.46786387,39.49394817,118 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8301_15,-74.8024805,39.367715,116 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8301_16,-74.8382793,39.54037313,114 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8301_17,-74.58645475,39.42461397,112 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_18,-74.52185045,39.44392835,110 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8301_19,-74.56365185,39.35628366,108 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_2,-74.88506194,39.59820766,142 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES3A,3001 -0103_8301_20,-74.6497416,39.41168427,106 WASHINGTON DR,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8301_21,-74.5017485,39.428124,104 WASHINGTON DR,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_8301_22,-74.37537568,39.41974945,102 WASHINGTON DR,BRIGANTINE CITY,16,1982,1,RES1,3001 -0103_8301_23,-74.6285815,39.486076,100 WASHINGTON DR,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8301_24,-74.527691,39.395964,101 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8301_26,-74.527174,39.3892855,103 ROOSEVELT BLVD NO,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_8301_26,-74.47742147,39.34368084,103 ROOSEVELT BLVD NO,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_8301_27,-74.6360068,39.41033497,105 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1966,1,GOV1,3004 -0103_8301_28,-74.56915417,39.33819214,107 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1966,1,RES3A,3001 -0103_8301_29,-74.4828605,39.438302,109 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1968,1,GOV1,3004 -0103_8301_3,-74.878358,39.60371157,140 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8301_3,-74.44170125,39.35948331,140 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8301_30,-74.51144,39.454102,111 ROOSEVELT BLVD NO,BRIGANTINE CITY,17,1955,1,RES1,3001 -0103_8301_31,-74.59433692,39.4285431,113 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1959,1,RES3A,3001 -0103_8301_32,-74.72634861,39.58582685,115 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1974,1,RES3A,3001 -0103_8301_32,-74.4380604,39.36093523,115 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1974,1,GOV1,3004 -0103_8301_33,-74.484914,39.474463,117 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_8301_34,-74.75842707,39.60188033,119 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_8301_34,-74.44158296,39.35958745,119 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_8301_35,-74.59694386,39.30973456,121 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8301_36,-74.8129175,39.379237,123 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8301_37,-74.618311,39.55530241,125 ROOSEVELT BLVD NO,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_8301_38,-74.83914065,39.5392364,129 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_39,-74.78628619,39.63081358,131 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8301_4,-74.548541,39.374394,138 WASHINGTON DR,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_8301_40,-74.75967179,39.44613813,133 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8301_41,-74.797211,39.6380185,135 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_8301_42,-74.887084,39.5061575,137 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1977,1,RES1,3001 -0103_8301_43,-74.5462245,39.37277,139 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8301_44.01,-74.87691,39.6038535,141 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_8301_44.01,-74.44170564,39.35942088,141 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1950,1,RES1,3001 -0103_8301_44.02,-74.50194787,39.33040585,1002 SHERIDAN BLVD,BRIGANTINE CITY,18,2000,1,RES1,3001 -0103_8301_5,-74.88375579,39.50172795,136 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8301_6,-74.8766965,39.60265,134 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8301_7,-74.75050037,39.45179881,132 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,COM3,3004 -0103_8301_8,-74.78746522,39.61392112,130 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8301_9,-74.79763462,39.53270124,128 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8302_1,-74.940137,39.5218355,1100 SHERIDAN BLVD,BRIGANTINE CITY,16,1973,1,RES1,3001 -0103_8302_10,-74.59554902,39.42898935,118 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_8302_11,-74.52533349,39.44541017,116 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8302_12,-74.56362808,39.36337198,112 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_8302_13,-74.68798269,39.38190949,110 ROOSEVELT BLVD NO,BRIGANTINE CITY,17,1976,1,RES1,3001 -0103_8302_14,-74.5265025,39.3835765,108 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8302_14,-74.47718342,39.34432371,108 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8302_15,-74.51739752,39.41043382,106 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1972,1,COM1,3004 -0103_8302_16,-74.52601567,39.39108289,104 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1978,1,RES1,3001 -0103_8302_17,-74.3632755,39.419286,102 ROOSEVELT BLVD NO,BRIGANTINE CITY,15,1964,1,RES1,3001 -0103_8302_18,-74.36812847,39.409357,101 LINCOLN DR,BRIGANTINE CITY,16,1962,1,RES1,3001 -0103_8302_19,-74.54276614,39.37345605,103 LINCOLN DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_8302_2,-74.87611779,39.59661774,136 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_8302_20,-74.36469648,39.40810033,105 LINCOLN DR,BRIGANTINE CITY,18,2013,1,RES1,3001 -0103_8302_22,-74.641684,39.4614395,107 LINCOLN DR,BRIGANTINE CITY,16,1967,1,RES1,3001 -0103_8302_23,-74.45025934,39.37070473,109 LINCOLN DR,BRIGANTINE CITY,16,1960,1,GOV1,3004 -0103_8302_24,-74.5080431,39.40831583,111 LINCOLN DR,BRIGANTINE CITY,16,1961,1,RES1,3001 -0103_8302_25,-74.5079355,39.384318,113 LINCOLN DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8302_25,-74.47851429,39.34402222,113 LINCOLN DR,BRIGANTINE CITY,16,1966,1,IND2,3004 -0103_8302_26,-74.64852241,39.39640818,115 LINCOLN DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8302_27,-74.61214502,39.32652366,117 LINCOLN DR,BRIGANTINE CITY,16,1976,1,GOV1,3004 -0103_8302_28,-74.4805905,39.4384775,119 LINCOLN DR,BRIGANTINE CITY,16,1970,1,COM1,3004 -0103_8302_29,-74.52075026,39.45967409,121 LINCOLN DR,BRIGANTINE CITY,16,1967,1,GOV1,3004 -0103_8302_3,-74.725966,39.5885885,134 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1972,1,RES1,3001 -0103_8302_30,-74.61236816,39.42143677,123 LINCOLN DR,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8302_31,-74.690706,39.361773,125 LINCOLN DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8302_32,-74.45076901,39.49421166,127 LINCOLN DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8302_33,-74.76172766,39.63852953,129 LINCOLN DR,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_8302_33,-74.44073072,39.35931588,129 LINCOLN DR,BRIGANTINE CITY,17,2015,1,RES1,3001 -0103_8302_34,-74.75980917,39.4483025,131 LINCOLN DR,BRIGANTINE CITY,16,1967,1,COM1,3004 -0103_8302_35,-74.733651,39.44957,135 LINCOLN DR,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_8302_36,-74.82090882,39.52682694,137 LINCOLN DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8302_4,-74.65201976,39.59691571,132 ROOSEVELT BLVD NO,BRIGANTINE CITY,15,1955,1,RES1,3001 -0103_8302_5,-74.7076625,39.4402145,130 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8302_6,-74.7896585,39.458476,128 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1971,1,RES1,3001 -0103_8302_7,-74.5082682,39.52728365,124 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8302_8,-74.47083217,39.494269,122 ROOSEVELT BLVD NO,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8302_9,-74.70289408,39.36636835,120 ROOSEVELT BLVD NO,BRIGANTINE CITY,17,1971,1,RES1,3001 -0103_8401_1,-74.73816803,39.46317035,502 SHERIDAN PLACE,BRIGANTINE CITY,17,1992,1,RES1,3001 -0103_8401_10.01,-74.84939416,39.60991067,20 MACDONALD PLACE,BRIGANTINE CITY,16,1984,1,GOV1,3004 -0103_8401_10.02,-74.45331935,39.3525396,22 MACDONALD PLACE,BRIGANTINE CITY,16,1994,1,RES1,3001 -0103_8401_11,-74.53802006,39.38967174,24 MACDONALD PLACE,BRIGANTINE CITY,17,1987,1,RES1,3001 -0103_8401_12,-74.95488324,39.5388994,26 MACDONALD PLACE,BRIGANTINE CITY,17,1988,1,RES1,3001 -0103_8401_13,-74.81637643,39.65525339,28 MACDONALD PLACE,BRIGANTINE CITY,17,1978,1,RES1,3001 -0103_8401_14,-74.50165483,39.32815575,30 MACDONALD PLACE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_8401_15,-74.472793,39.341842,32 MACDONALD PLACE,BRIGANTINE CITY,45,1984,2,RES1,3001 -0103_8401_16.01,-74.48395421,39.34619427,34 MACDONALD PLACE,BRIGANTINE CITY,17,1996,1,GOV1,3004 -0103_8401_16.02,-74.39857993,39.38461225,36 MACDONALD PLACE,BRIGANTINE CITY,17,1997,1,RES1,3001 -0103_8401_17,-74.4504225,39.4989745,38 MACDONALD PLACE,BRIGANTINE CITY,17,2000,1,RES1,3001 -0103_8401_18,-74.5133775,39.398463,900 SHERIDAN BLVD,BRIGANTINE CITY,16,1981,1,RES1,3001 -0103_8401_19,-74.5239035,39.3875875,902 SHERIDAN BLVD,BRIGANTINE CITY,17,1983,1,GOV1,3004 -0103_8401_20,-74.4578345,39.4912255,906 SHERIDAN BLVD,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8401_21,-74.518926,39.317758,139 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8401_22,-74.437511,39.365145,137 WASHINGTON DR,BRIGANTINE CITY,18,1969,1,RES1,3001 -0103_8401_23,-74.70448432,39.64799941,135 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8401_24,-74.87304857,39.59158863,133 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8401_24,-74.4415715,39.35930054,133 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,GOV1,3004 -0103_8401_25,-74.45986217,39.35296749,131 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8401_26,-74.92164954,39.47928615,129 WASHINGTON DR,BRIGANTINE CITY,16,1968,1,RES1,3001 -0103_8401_27,-74.80100877,39.63063833,127 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8401_28,-74.73110884,39.45374642,125 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8401_29,-74.763288,39.6361105,123 WASHINGTON DR,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_8401_3,-74.7203905,39.4306805,4 MACDONALD PLACE,BRIGANTINE CITY,17,1972,1,RES3A,3001 -0103_8401_30,-74.8434116,39.53674421,121 WASHINGTON DR,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8401_31,-74.6647675,39.5156155,119 WASHINGTON DR,BRIGANTINE CITY,16,1958,1,RES1,3001 -0103_8401_34,-74.63269285,39.41976695,115 WASHINGTON DR,BRIGANTINE CITY,16,1960,1,RES1,3001 -0103_8401_35.01,-74.60750604,39.30757819,113 WASHINGTON DR,BRIGANTINE CITY,17,1986,1,RES1,3001 -0103_8401_36,-74.66822405,39.3572338,107 WASHINGTON DR,BRIGANTINE CITY,16,1970,1,RES1,3001 -0103_8401_37,-74.79402346,39.53610066,105 WASHINGTON DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8401_38,-74.5288355,39.4670825,103 WASHINGTON DR,BRIGANTINE CITY,16,1966,1,RES1,3001 -0103_8401_39,-74.48793273,39.4426354,101 WASHINGTON DR,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_8401_4,-74.82215884,39.39561632,6 MACDONALD PLACE,BRIGANTINE CITY,17,1999,1,RES1,3001 -0103_8401_41,-74.50540693,39.42998335,11 HEALD RD,BRIGANTINE CITY,17,1965,1,RES1,3001 -0103_8401_42,-74.4926935,39.4336065,13 HEALD RD,BRIGANTINE CITY,17,2006,1,GOV1,3004 -0103_8401_43,-74.49993323,39.43320543,19 HEALD RD,BRIGANTINE CITY,18,2003,1,RES1,3001 -0103_8401_44,-74.52809655,39.38310382,21 HEALD RD,BRIGANTINE CITY,16,1964,1,RES1,3001 -0103_8401_44,-74.47897265,39.34557839,21 HEALD RD,BRIGANTINE CITY,16,1964,1,GOV1,3004 -0103_8401_45,-74.53050467,39.39987859,23 HEALD CIRCLE,BRIGANTINE CITY,16,1969,1,GOV1,3004 -0103_8401_45,-74.48093458,39.34413048,23 HEALD CIRCLE,BRIGANTINE CITY,16,1969,1,RES1,3001 -0103_8401_46,-74.67051321,39.37948185,25 HEALD CIRCLE,BRIGANTINE CITY,17,1985,1,GOV1,3004 -0103_8401_47,-74.623619,39.4227365,27 HEALD CIRCLE,BRIGANTINE CITY,16,1980,1,GOV1,3004 -0103_8401_48,-74.552853,39.3678235,29 HEALD CIRCLE,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_8401_49.01,-74.47381494,39.44711919,31 HEALD CIRCLE,BRIGANTINE CITY,17,1985,1,RES1,3001 -0103_8401_49.02,-74.5281866,39.4451816,33 HEALD CIRCLE,BRIGANTINE CITY,16,1984,1,RES1,3001 -0103_8401_5,-74.71872668,39.44213146,8 MACDONALD PLACE,BRIGANTINE CITY,16,1985,1,RES1,3001 -0103_8401_50,-74.57834147,39.42999713,35 HEALD CIRCLE,BRIGANTINE CITY,16,1980,1,RES1,3001 -0103_8401_51,-74.82390298,39.56880048,37 HEALD CIRCLE,BRIGANTINE CITY,17,2017,1,RES1,3001 -0103_8401_6,-74.66772266,39.51736597,10 MACDONALD PLACE,BRIGANTINE CITY,17,2016,1,RES1,3001 -0103_8401_7.01,-74.81685678,39.52526469,12 MACDONALD PLACE,BRIGANTINE CITY,16,1977,1,AGR1,3001 -0103_8401_7.02,-74.79192658,39.60250515,14 MACDONALD PLACE,BRIGANTINE CITY,16,1965,1,RES1,3001 -0103_8401_8,-74.87762505,39.59361066,16 MACDONALD PLACE,BRIGANTINE CITY,17,2002,1,GOV1,3004 -0103_8401_9,-74.881919,39.5910145,18 MACDONALD PLACE,BRIGANTINE CITY,17,1990,1,RES1,3001 -0103_8501_1,-74.47277467,39.34233849,1 GOLF COURSE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0103_8501_1,-74.47362396,39.34356289,1 GOLF COURSE DR,BRIGANTINE CITY,,0,1,RES1,3001 -0104_101_10,-74.45484584,39.35176491,140 CEDAR LAKE RD,BUENA BORO,16,1962,1,RES1,3001 -0104_101_11.01,-74.36719257,39.41127427,204 CEDAR LAKE RD,BUENA BORO,15,1875,1,RES1,3001 -0104_101_11.02,-74.48614971,39.52139208,226 CEDAR LAKE RD,BUENA BORO,17,1973,1,RES1,3001 -0104_101_12,-74.8125315,39.528763,100 D'ALESSANDRO AVENUE,BUENA BORO,16,1910,1,RES1,3001 -0104_101_2,-74.54844407,39.38079674,110 CEDAR LAKE RD,BUENA BORO,16,1966,1,RES1,3001 -0104_101_4,-74.49028235,39.35084459,122 CEDAR LAKE RD,BUENA BORO,17,1955,1,RES1,3001 -0104_101_5,-74.53095002,39.38930732,124 CEDAR LAKE RD,BUENA BORO,16,1965,1,RES1,3001 -0104_101_7,-74.3986535,39.388929,132 CEDAR LAKE RD,BUENA BORO,17,1967,1,RES1,3001 -0104_101_9,-74.5516035,39.4722455,136 CEDAR LAKE RD,BUENA BORO,16,1965,1,RES1,3001 -0104_102_1,-74.48488487,39.4415212,300 CEDAR LAKE RD,BUENA BORO,15,1875,1,GOV1,3004 -0104_102_2,-74.637421,39.402408,306 CEDAR LAKE ROAD,BUENA BORO,16,1998,1,RES1,3001 -0104_102_5,-74.8242415,39.528631,330 CEDAR LAKE RD,BUENA BORO,16,1850,1,COM1,3004 -0104_102_5.01,-74.3617455,39.410651,310 CEDAR LAKE RD,BUENA BORO,16,2004,1,GOV1,3004 -0104_102_7,-74.83404571,39.63230962,CEDAR LAKE RD,BUENA BORO,,0,1,GOV1,3004 -0104_102_8,-74.911712,39.499532,364 CEDAR LAKE RD,BUENA BORO,16,1970,1,RES1,3001 -0104_102_9,-74.5736175,39.345672,366 CEDAR LAKE RD,BUENA BORO,14,1895,1,RES1,3001 -0104_103_1,-74.5514465,39.3820185,100 NORTH BREWSTER ROAD,BUENA BORO,16,1968,1,RES1,3001 -0104_104_1.01,-74.63699931,39.41347494,101 CEDAR LAKE RD,BUENA BORO,15,1925,1,RES1,3001 -0104_104_1.02,-74.78513778,39.63437347,551 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_104_10,-74.45609032,39.34842702,501 N. HARDING HWY.,BUENA BORO,16,1950,1,RES1,3001 -0104_104_11,-74.85768768,39.6130498,423 NORTH HARDING HIGHWAY,BUENA BORO,16,1937,1,GOV1,3004 -0104_104_12.01,-74.6386695,39.428552,421 NORTH HARDING HIGHWAY,BUENA BORO,16,1924,1,GOV1,3004 -0104_104_12.02,-74.7942235,39.60083633,413 NORTH HARDING HIGHWAY,BUENA BORO,17,1987,1,RES1,3001 -0104_104_12.03,-74.61257646,39.36934428,411 NORTH HARDING HIGHWAY,BUENA BORO,16,1979,1,GOV1,3004 -0104_104_13,-74.50757799,39.44615267,132 NORTH CENTRAL AVE,BUENA BORO,16,1970,1,RES1,3001 -0104_104_14.01,-74.366692,39.4194615,401 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_104_2,-74.59130485,39.37774321,121 CEDAR LAKE RD,BUENA BORO,16,1965,1,RES1,3001 -0104_104_3.02,-74.53474618,39.40350913,539 NORTH HARDING HIGHWAY,BUENA BORO,17,1925,1,RES1,3001 -0104_104_4,-74.51021935,39.43681254,216 NORTH CENTRAL AVE,BUENA BORO,16,1962,1,RES1,3001 -0104_104_5,-74.53880142,39.45891322,533 NORTH HARDING HIGHWAY,BUENA BORO,16,1945,1,RES1,3001 -0104_104_6,-74.950256,39.504045,525 NORTH HARDING HIGHWAY,BUENA BORO,14,1820,1,RES1,3001 -0104_104_7,-74.46187617,39.34583249,148 NORTH CENTRAL AVE,BUENA BORO,16,1925,1,GOV1,3004 -0104_104_7.01,-74.664181,39.3993865,200 NORTH CENTRAL AVE,BUENA BORO,16,1988,1,RES1,3001 -0104_104_7.02,-74.53565153,39.38607332,150 N. CENTRAL AVENUE,BUENA BORO,16,2004,1,RES1,3001 -0104_104_8,-74.6771485,39.567878,521 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,GOV1,3004 -0104_104_9,-74.45949987,39.35627496,517 NORTH HARDING HIGHWAY,BUENA BORO,16,1900,1,GOV1,3004 -0104_105_10,-74.542353,39.3860845,491 CEDAR LAKE ROAD,BUENA BORO,16,2001,1,RES1,3001 -0104_105_11,-74.63986838,39.38086447,ATLANTIC STREET,BUENA BORO,,0,1,RES1,3001 -0104_105_12,-74.39914922,39.38551429,134 ATLANTIC AVE,BUENA BORO,16,1951,1,GOV1,3004 -0104_105_13,-74.51833084,39.46333245,150 ATLANTIC ST,BUENA BORO,15,1905,1,RES1,3001 -0104_105_14,-74.52732504,39.38188432,170 ATLANTIC ST,BUENA BORO,,0,1,RES1,3001 -0104_105_2,-74.63784462,39.41088297,219 CEDAR LAKE RD,BUENA BORO,16,1915,1,RES1,3001 -0104_105_4,-74.5088569,39.33115769,301 CEDAR LAKE RD,BUENA BORO,16,1959,1,RES1,3001 -0104_105_6.01,-74.649738,39.5265825,315 CEDAR LAKE RD,BUENA BORO,15,1915,2,RES3A,3001 -0104_105_7.01,-74.59302429,39.37091983,347 CEDAR LAKE RD,BUENA BORO,16,2006,1,REL1,3004 -0104_105_8,-74.545624,39.474871,359 CEDAR LAKE RD,BUENA BORO,16,1960,1,RES1,3001 -0104_106_10,-74.82805928,39.64825966,400 EAST WEYMOUTH ROAD,BUENA BORO,16,1932,1,RES1,3001 -0104_106_2,-74.528929,39.449704,376 FRIENDSHIP ROAD,BUENA BORO,15,1900,1,RES1,3001 -0104_106_3,-74.79667278,39.46309009,368 FRIENDSHIP ROAD,BUENA BORO,15,1875,1,RES1,3001 -0104_106_3.01,-74.494006,39.335315,344 FRIENDSHIP RD,BUENA BORO,16,1995,1,RES1,3001 -0104_106_5.01,-74.75714348,39.30295816,274 FRIENDSHIP ROAD,BUENA BORO,16,1988,1,GOV1,3004 -0104_106_5.02,-74.75971917,39.30635399,250 FRIENDSHIP ROAD,BUENA BORO,16,1895,1,RES1,3001 -0104_106_8,-74.60579679,39.36038594,446 EAST WEYMOUTH RD.,BUENA BORO,,0,1,RES3A,3001 -0104_106_9,-74.834598,39.478013,404 EAST WEYMOUTH ROAD,BUENA BORO,16,1950,1,RES1,3001 -0104_107_1,-74.60824336,39.38741673,147 N. CENTRAL AVE.,BUENA BORO,16,1925,1,RES1,3001 -0104_107_10,-74.64264466,39.52934485,108 EAST WEYMOUTH ROAD,BUENA BORO,16,1930,1,GOV1,3004 -0104_107_11,-74.5894988,39.4119249,110 EAST WEYMOUTH ROAD,BUENA BORO,16,1920,1,RES1,3001 -0104_107_13,-74.5893305,39.3726855,124 EAST WEYMOUTH ROAD,BUENA BORO,16,1880,1,GOV1,3004 -0104_107_14,-74.516504,39.32115,128 EAST WEYMOUTH ROAD,BUENA BORO,15,1980,1,RES1,3001 -0104_107_15,-74.891734,39.500546,130 EAST WEYMOUTH ROAD,BUENA BORO,16,1895,1,RES1,3001 -0104_107_16,-74.952009,39.5137485,136 EAST WEYMOUTH ROAD,BUENA BORO,16,1964,1,GOV1,3004 -0104_107_17,-74.6774185,39.3864685,202 EAST WEYMOUTH ROAD,BUENA BORO,15,1945,1,IND2,3004 -0104_107_19,-74.53227929,39.45363404,316 EAST WEYMOUTH ROAD,BUENA BORO,16,1962,1,GOV1,3004 -0104_107_2,-74.85665269,39.61127542,127 ATLANTIC ST,BUENA BORO,16,1971,1,GOV1,3004 -0104_107_24,-74.5179885,39.3964155,338 EAST WEYMOUTH ROAD,BUENA BORO,15,1894,1,IND2,3002 -0104_107_26,-74.637991,39.399285,342 EAST WEYMOUTH RD.,BUENA BORO,16,1959,1,RES1,3001 -0104_107_27,-74.5873415,39.4288035,344 EAST WEYMOUTH RD,BUENA BORO,16,1955,1,RES1,3001 -0104_107_4,-74.966041,39.528624,163 ATLANTIC ST,BUENA BORO,16,1895,1,RES1,3001 -0104_107_5,-74.8634315,39.5683285,177 ATLANTIC ST,BUENA BORO,16,2003,1,GOV1,3004 -0104_107_7,-74.51244859,39.46095966,133 NORTH CENTRAL AVE,BUENA BORO,16,1973,1,RES1,3001 -0104_107_8.03,-74.36749877,39.42208182,121 NORTH CENTRAL AVE,BUENA BORO,16,1975,1,RES1,3001 -0104_107_9,-74.94040219,39.52293495,101 NORTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_109_2.03,-74.54833775,39.38029844,104 SOUTH BREWSTER RD,BUENA BORO,15,1920,1,RES1,3001 -0104_109_4,-74.55228916,39.37981948,126 SOUTH BREWSTER RD,BUENA BORO,16,1965,1,RES1,3001 -0104_109_5,-74.54680303,39.38031233,132 SOUTH BREWSTER RD,BUENA BORO,16,1960,1,RES1,3001 -0104_109_6,-74.54656574,39.3784242,140 SOUTH BREWSTER RD,BUENA BORO,16,1957,1,RES1,3001 -0104_109_7.01,-74.55061812,39.37863058,314 WEST WEYMOUTH RD.,BUENA BORO,17,1987,1,RES1,3001 -0104_109_8,-74.544202,39.3794465,152 SOUTH BREWSTER RD,BUENA BORO,16,1935,1,RES1,3001 -0104_110_11,-74.58813,39.365043,112 MARLYN AVENUE,BUENA BORO,16,1962,1,RES1,3001 -0104_110_12,-74.58750566,39.32752244,108 MARLYN AVE,BUENA BORO,16,1965,1,RES1,3001 -0104_110_13,-74.56636316,39.3619021,106 MARLYN AVENUE,BUENA BORO,16,1957,1,RES1,3001 -0104_110_15,-74.84265282,39.48060897,502 NORTH HARDING HIGHWAY,BUENA BORO,16,1950,1,RES1,3001 -0104_110_15.01,-74.48418887,39.49525483,510 NORTH HARDING HIGHWAY,BUENA BORO,16,1990,1,RES1,3001 -0104_110_16,-74.60366961,39.33250482,518 NORTH HARDING HIGHWAY,BUENA BORO,16,1954,1,RES1,3001 -0104_110_17,-74.78759485,39.59454084,520 NORTH HARDING HIGHWAY,BUENA BORO,16,1955,1,RES1,3001 -0104_110_19,-74.368206,39.411241,528 NORTH HARDING HIGHWAY,BUENA BORO,20,1900,1,RES1,3001 -0104_110_2,-74.46583482,39.49666775,546 NORTH HARDING HIGHWAY,BUENA BORO,16,1900,1,RES1,3001 -0104_110_4,-74.4530058,39.37413634,123 SOUTH BREWSTER ROAD,BUENA BORO,16,1955,1,RES1,3001 -0104_110_6,-74.48898367,39.33352349,139 SOUTH BREWSTER RD,BUENA BORO,16,2004,1,RES1,3001 -0104_110_8,-74.51759966,39.40696807,212 WEST WEYMOUTH ROAD,BUENA BORO,16,1940,1,RES1,3001 -0104_111_1,-74.88248115,39.59352423,115 MARLYN AVENUE,BUENA BORO,16,1975,1,RES1,3001 -0104_111_10,-74.5810225,39.3329255,110 WEST WEYMOUTH ROAD,BUENA BORO,16,2010,1,RES1,3001 -0104_111_2,-74.64083945,39.36615695,111 MARLYN AVENUE,BUENA BORO,16,1975,1,RES1,3001 -0104_111_3,-74.7096415,39.565815,109 MARLYN AVENUE,BUENA BORO,16,1975,1,RES1,3001 -0104_111_4,-74.950266,39.5167385,107 MARLYN AVENUE,BUENA BORO,16,1975,1,RES1,3001 -0104_111_5,-74.8273465,39.606802,105 MARLYN AVENUE,BUENA BORO,16,1975,1,RES1,3001 -0104_111_6,-74.9208395,39.4898055,103 MARLYN AVENUE,BUENA BORO,16,1975,1,RES1,3001 -0104_111_7,-74.65903457,39.3643105,101 MARLYN AVE,BUENA BORO,16,1975,1,RES1,3001 -0104_111_8,-74.80866197,39.63234316,414 NORTH HARDING HIGHWAY,BUENA BORO,16,1951,1,RES1,3001 -0104_111_9,-74.874542,39.565745,412 NORTH HARDING HIGHWAY,BUENA BORO,16,1937,1,RES1,3001 -0104_111_9.01,-74.51917161,39.40202297,114 WEST WEYMOUTH ROAD,BUENA BORO,16,1986,1,GOV1,3004 -0104_112_1.01,-74.78040111,39.67947279,642 FOREST GROVE RD,BUENA BORO,16,1962,1,RES1,3001 -0104_112_10,-74.787563,39.640301,200 SOUTH BREWSTER ROAD,BUENA BORO,16,1950,1,GOV1,3004 -0104_112_6,-74.754047,39.66045827,616 FOREST GROVE ROAD,BUENA BORO,16,1955,1,RES1,3001 -0104_112_7,-74.7831595,39.672483,600 FOREST GROVE ROAD,BUENA BORO,15,1930,1,GOV1,3004 -0104_113.01_1,-74.8100655,39.629972,111 KIMBERLY LANE,BUENA BORO,16,1993,1,RES1,3001 -0104_113.01_10,-74.52261,39.3945335,116 KIMBERLY LANE,BUENA BORO,17,2007,1,RES1,3001 -0104_113.01_11,-74.9238565,39.50982,114 KIMBERLY LANE,BUENA BORO,17,1999,1,RES1,3001 -0104_113.01_14,-74.62775091,39.36077326,108 KIMBERLY LANE,BUENA BORO,17,1999,1,RES1,3001 -0104_113.01_2,-74.93949768,39.53354002,113 KIMBERLY LANE,BUENA BORO,17,1985,1,GOV1,3004 -0104_113.01_3,-74.50475641,39.33426077,115 KIMBERLY LANE,BUENA BORO,17,1990,1,RES1,3001 -0104_113.01_5,-74.548445,39.367433,119 KIMBERLY LANE,BUENA BORO,17,2002,1,GOV1,3004 -0104_113.01_6,-74.538068,39.40268005,121 KIMBERLY LANE,BUENA BORO,17,1984,1,RES1,3001 -0104_113.01_7,-74.790416,39.637993,123 KIMBERLY LANE,BUENA BORO,17,1989,1,RES1,3001 -0104_113.01_8,-74.49257604,39.33973999,120 KIMBERLY LANE,BUENA BORO,17,1985,1,RES1,3001 -0104_113_1,-74.58844967,39.33493756,SOUTH BREWSTER ROAD,BUENA BORO,,0,1,RES1,3001 -0104_113_10,-74.40609981,39.39269004,520 FOREST GROVE RD,BUENA BORO,16,1935,1,RES1,3001 -0104_113_10.01,-74.528572,39.383302,506 FOREST GROVE ROAD,BUENA BORO,17,1985,1,RES1,3001 -0104_113_10.02,-74.60037577,39.41922072,530 FOREST GROVE ROAD,BUENA BORO,,0,1,RES1,3001 -0104_113_10.03,-74.401309,39.390398,516 FOREST GROVE RD,BUENA BORO,16,2001,1,GOV1,3004 -0104_113_10.05,-74.4029335,39.3904805,526 FOREST GROVE RD,BUENA BORO,16,2005,1,RES1,3001 -0104_113_10.06,-74.4387925,39.3695195,134 CENTRAL AVE,BUENA BORO,16,2005,1,RES1,3001 -0104_113_11,-74.6082775,39.5606715,140 SOUTH CENTRAL AVENUE,BUENA BORO,16,1962,1,RES1,3001 -0104_113_12,-74.71071,39.6352505,116 S.CENTRAL AVE,BUENA BORO,15,1907,1,GOV1,3004 -0104_113_13.04,-74.50948217,39.51407767,106 KIMBERLY LANE,BUENA BORO,17,1977,1,RES1,3001 -0104_113_14.01,-74.65120384,39.52529551,105 KIMBERLY LANE,BUENA BORO,17,1975,1,RES1,3001 -0104_113_14.02,-74.945177,39.5250415,112 SOUTH CENTRAL AVE,BUENA BORO,17,1965,1,GOV1,3004 -0104_113_15.01,-74.94375,39.5107425,100 SOUTH CENTRAL AVENUE,BUENA BORO,16,1900,1,RES1,3001 -0104_113_15.02,-74.63540568,39.38664143,113 WEST WEYMOUTH ROAD,BUENA BORO,17,1992,1,RES1,3001 -0104_113_15.03,-74.52325861,39.38459589,117 WEST WEYMOUTH ROAD,BUENA BORO,17,1985,1,RES1,3001 -0104_113_15.04,-74.662958,39.4017415,121 WEST WEYMOUTH ROAD,BUENA BORO,17,1989,1,RES1,3001 -0104_113_15.05,-74.49584818,39.43220874,127 WEST WEYMOUTH ROAD,BUENA BORO,17,1980,1,RES1,3001 -0104_113_15.08,-74.624085,39.3575435,105 WEST WEYMOUTH ROAD,BUENA BORO,17,1990,1,RES1,3001 -0104_113_15.09,-74.63122472,39.43355336,108 SOUTH CENTRAL AVE,BUENA BORO,17,1990,1,RES1,3001 -0104_113_15.10,-74.68576962,39.35613494,107 WEST WEYMOUTH ROAD,BUENA BORO,17,1994,1,RES1,3001 -0104_113_16.01,-74.66360773,39.35931516,203 WEST WEYMOUTH ROAD,BUENA BORO,16,1950,1,RES1,3001 -0104_113_16.06,-74.64445648,39.38196704,211 WEST WEYMOUTH RD,BUENA BORO,16,2004,1,RES1,3001 -0104_113_17,-74.86349634,39.59620156,223 WEST WEYMOUTH ROAD,BUENA BORO,15,1940,1,RES1,3001 -0104_113_2.01,-74.55814723,39.3973792,100 HEATHERWOOD DRIVE,BUENA BORO,16,1975,1,RES1,3001 -0104_113_3,-74.52324566,39.38797324,231 SOUTH BREWSTER RD,BUENA BORO,16,1955,1,RES1,3001 -0104_113_4,-74.5945945,39.3140135,588 FOREST GROVE ROAD,BUENA BORO,16,1945,1,RES1,3001 -0104_113_5,-74.6382305,39.523181,580 FOREST GROVE ROAD,BUENA BORO,16,1900,1,RES1,3001 -0104_113_6.02,-74.77629313,39.60861868,564 FOREST GROVE ROAD,BUENA BORO,16,1988,1,GOV1,3004 -0104_113_7,-74.572581,39.4284435,546 FOREST GROVE ROAD,BUENA BORO,16,1935,1,RES1,3001 -0104_113_7.01,-74.6325945,39.43402,556 FOREST GROVE RD,BUENA BORO,16,2002,1,GOV1,3004 -0104_113_8,-74.40512224,39.3885898,542 FOREST GROVE ROAD,BUENA BORO,16,1950,1,GOV1,3004 -0104_113_8.01,-74.6846785,39.5559,540 FOREST GROVE ROAD,BUENA BORO,16,2008,1,RES1,3001 -0104_113_9,-74.92040125,39.47116978,536 FOREST GROVE ROAD,BUENA BORO,16,1860,1,RES1,3001 -0104_113_9.01,-74.5985645,39.430132,532 FOREST GROVE ROAD,BUENA BORO,16,1988,1,RES1,3001 -0104_114_1,-74.55664766,39.55014652,366 NORTH HARDING HIGHWAY,BUENA BORO,16,1928,1,RES1,3001 -0104_114_3,-74.5057935,39.3309725,352 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_114_4,-74.5004385,39.442712,346 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_114_5.01,-74.57684863,39.33730118,402 FOREST GROVE ROAD,BUENA BORO,16,1927,1,GOV1,3004 -0104_114_5.02,-74.80805937,39.63380565,408 FOREST GROVE ROAD,BUENA BORO,16,1979,1,RES1,3001 -0104_114_6,-74.6067007,39.34538514,400 FOREST GROVE ROAD,BUENA BORO,16,1970,1,RES1,3001 -0104_114_7.02,-74.51499115,39.44716555,310 FOREST GROVE ROAD,BUENA BORO,16,1981,1,RES1,3001 -0104_114_7.05,-74.43894359,39.36988396,300 FOREST GROVE ROAD,BUENA BORO,16,1996,1,RES3A,3001 -0104_115_1,-74.51281458,39.52904628,351 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_115_10,-74.3700435,39.4066015,311 NORTH HARDING HIGHWAY,BUENA BORO,16,1957,1,RES1,3001 -0104_115_12,-74.80305802,39.63430499,303 NORTH HARDING HIGHWAY,BUENA BORO,16,1950,1,RES1,3001 -0104_115_13,-74.62280285,39.51385404,301 NORTH HARDING HIGHWAY,BUENA BORO,16,1953,1,RES1,3001 -0104_115_14,-74.63664561,39.4185003,106 MELINI AVENUE,BUENA BORO,16,1960,1,RES1,3001 -0104_115_15,-74.63189644,39.5972753,108 MELINI AVENUE,BUENA BORO,16,1955,1,RES1,3001 -0104_115_16,-74.55891,39.3655325,110 MELINI AVE.,BUENA BORO,15,1940,1,RES1,3001 -0104_115_17,-74.793928,39.633245,112 MELINI AVENUE,BUENA BORO,15,1940,1,RES1,3001 -0104_115_18,-74.57133591,39.34823978,114 MELINI AVENUE,BUENA BORO,16,1945,1,RES1,3001 -0104_115_19,-74.37882208,39.41752133,202 MELINI AVENUE,BUENA BORO,15,1945,1,RES1,3001 -0104_115_2,-74.49258986,39.33814092,109 EAST WEYMOUTH ROAD,BUENA BORO,16,1956,1,RES1,3001 -0104_115_20,-74.493461,39.3790635,300 KENNEDY DR,BUENA BORO,16,2006,1,RES1,3001 -0104_115_21,-74.638891,39.402117,302 KENNEDY DR,BUENA BORO,16,2006,1,RES1,3001 -0104_115_23.03,-74.82927752,39.62671421,307 NORTH HARDING HIGHWAY,BUENA BORO,16,1994,1,GOV1,3004 -0104_115_24,-74.573398,39.3514885,318 KENNEDY DRIVE,BUENA BORO,16,1972,1,RES1,3001 -0104_115_25,-74.59717317,39.3179655,145 EAST WEYMOUTH ROAD,BUENA BORO,16,1968,1,COM4,3004 -0104_115_26,-74.5837125,39.516742,139 EAST WEYMOUTH ROAD,BUENA BORO,16,1973,1,GOV1,3004 -0104_115_27,-74.7244507,39.64572595,320 KENNEDY DRIVE,BUENA BORO,16,1977,1,RES1,3001 -0104_115_3,-74.67374973,39.55754931,113 EAST WEYMOUTH ROAD,BUENA BORO,16,1905,1,RES1,3001 -0104_115_4,-74.64084372,39.43462691,115 EAST WEYMOUTH ROAD,BUENA BORO,16,1945,1,RES1,3001 -0104_115_5,-74.59328623,39.4342856,329 NORTH HARDING HIGHWAY,BUENA BORO,16,1920,1,RES1,3001 -0104_115_5.02,-74.8265535,39.5696815,131 WEYMOUTH ROAD,BUENA BORO,16,2002,1,RES1,3001 -0104_115_6,-74.942872,39.5244005,323 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_115_7,-74.62117088,39.43370301,317 NORTH HARDING HIGHWAY,BUENA BORO,16,1968,1,RES1,3001 -0104_115_8,-74.5900665,39.4121185,315 NORTH HARDING HIGHWAY,BUENA BORO,16,1947,1,RES1,3001 -0104_115_9,-74.5411135,39.5044705,313 NORTH HARDING HIGHWAY,BUENA BORO,16,1950,1,RES1,3001 -0104_116_1,-74.8737955,39.592509,201 EAST WEYMOUTH ROAD,BUENA BORO,16,1970,1,RES1,3001 -0104_116_2,-74.62818551,39.36347507,217 EAST WEYMOUTH ROAD,BUENA BORO,16,1945,1,RES1,3001 -0104_116_3.01,-74.62771081,39.42494191,317 KENNEDY DRIVE,BUENA BORO,16,1949,1,RES1,3001 -0104_116_3.02,-74.62970969,39.41410127,213 EAST WEYMOUTH RD,BUENA BORO,,0,1,COM7,3004 -0104_116_5,-74.5569755,39.368015,201 KENNEDY DRIVE,BUENA BORO,,0,1,RES1,3001 -0104_116_6,-74.5889075,39.4070585,314 EAST ARBOR AVE,BUENA BORO,15,1900,1,RES1,3001 -0104_117_1,-74.94911694,39.51413435,301 EAST WEYMOUTH ROAD,BUENA BORO,16,1961,1,RES1,3001 -0104_117_3,-74.50513936,39.44996905,307 EAST WEYMOUTH ROAD,BUENA BORO,16,1954,1,RES1,3001 -0104_117_5,-74.96497595,39.51932017,325 EAST WEYMOUTH ROAD,BUENA BORO,15,1900,1,RES1,3001 -0104_117_7,-74.58072735,39.3413646,412 NORTH EAST BOULEVARD,BUENA BORO,15,1935,1,GOV1,3004 -0104_118_10,-74.88316095,39.49741569,503 SOUTH EAST BOULEVARD,BUENA BORO,16,1940,1,RES1,3001 -0104_118_4,-74.519429,39.400861,519 SOUTH EAST BOULEVARD,BUENA BORO,16,1939,1,RES1,3001 -0104_118_5,-74.45616467,39.37371996,212 SOUTH EAST BLVD,BUENA BORO,15,1915,1,RES1,3001 -0104_118_7,-74.36611165,39.4170884,513 SOUTH EAST BOULEVARD,BUENA BORO,16,1935,1,RES3A,3004 -0104_118_8,-74.63938462,39.52453551,509 SOUTH EAST BOULEVARD,BUENA BORO,16,1945,1,RES1,3001 -0104_118_9,-74.51537417,39.38718527,206 SOUTH BOULEVARD EXTEN,BUENA BORO,16,1947,1,RES1,3001 -0104_119_1,-74.63655494,39.34250819,201 SUMNER STREET,BUENA BORO,16,1900,1,RES1,3001 -0104_120_3,-74.60179769,39.37196202,328 PLYMOUTH STREET,BUENA BORO,16,1999,1,RES1,3001 -0104_120_4,-74.6855715,39.54719,301 SUMNER STREET,BUENA BORO,16,2002,1,RES1,3001 -0104_120_6,-74.48575779,39.35235987,305 SUMNER STREET,BUENA BORO,,0,1,RES1,3001 -0104_121_1,-74.68968289,39.44957933,170 FRIENDSHIP ROAD,BUENA BORO,16,1895,1,RES1,3001 -0104_121_11,-74.56923,39.348222,403 PLYMOUTH STREET,BUENA BORO,,0,1,RES1,3001 -0104_121_12,-74.3619625,39.41163233,409 PLYMOUTH STREET,BUENA BORO,16,1984,1,GOV1,3004 -0104_121_14,-74.5924539,39.43490761,507 PLYMOUTH STREET,BUENA BORO,16,1945,1,RES1,3001 -0104_121_15,-74.58541542,39.48728665,509 PLYMOUTH STREET,BUENA BORO,16,1950,1,RES1,3001 -0104_121_16,-74.61081234,39.32437704,206 HAMMONTON ROAD,BUENA BORO,,0,1,RES1,3001 -0104_121_19,-74.60838519,39.41795605,220 HAMMONTON ROAD,BUENA BORO,15,1940,1,RES1,3001 -0104_121_2,-74.60827562,39.43929279,439 EAST WEYMOUTH ROAD,BUENA BORO,14,1845,1,RES1,3001 -0104_121_4,-74.57545593,39.47689543,417 EAST WEYMOUTH ROAD,BUENA BORO,16,1960,1,RES1,3001 -0104_121_5,-74.570675,39.427633,413 EAST WEYMOUTH ROAD,BUENA BORO,16,1926,1,RES3A,3001 -0104_121_6,-74.36505349,39.40850683,409 EAST WEYMOUTH ROAD,BUENA BORO,16,1927,1,RES1,3001 -0104_121_7,-74.48543383,39.333703,617 SOUTH EAST BLVD,BUENA BORO,16,1955,1,RES1,3001 -0104_121_8,-74.5889895,39.4278625,109 PLYMOUTH STREET,BUENA BORO,16,1910,1,RES1,3001 -0104_121_9.01,-74.6459495,39.5279015,313 PLYMOUTH ST,BUENA BORO,16,1895,1,RES1,3001 -0104_121_9.02,-74.61532202,39.38247982,203 PLYMOUTH ST,BUENA BORO,16,1925,1,RES1,3001 -0104_122_11.01,-74.78380107,39.67387726,386 SOUTH BREWSTER ROAD,BUENA BORO,16,1960,1,RES1,3001 -0104_122_11.02,-74.7874275,39.6775855,378 SOUTH BREWSTER RD,BUENA BORO,16,1976,1,RES1,3001 -0104_122_12,-74.79577464,39.65370558,400 SOUTH BREWSTER RD,BUENA BORO,15,1920,1,RES1,3001 -0104_122_13,-74.81552335,39.64630471,404 SOUTH BREWSTER RD,BUENA BORO,16,1964,1,RES1,3001 -0104_122_14,-74.80312935,39.64392433,406 SOUTH BREWSTER RD,BUENA BORO,16,1963,1,RES1,3001 -0104_122_15,-74.81993803,39.64494616,412 SOUTH BREWSTER RD,BUENA BORO,16,1955,1,RES1,3001 -0104_122_18,-74.81705916,39.64024298,430 SOUTH BREWSTER RD,BUENA BORO,16,1900,1,GOV1,3004 -0104_122_2,-74.5383,39.391407,619 FOREST GROVE ROAD,BUENA BORO,16,1957,1,RES1,3001 -0104_122_23,-74.8219794,39.65430033,462 SOUTH BREWSTER RD,BUENA BORO,16,1929,1,RES1,3001 -0104_122_24,-74.82980715,39.64728458,470 SOUTH BREWSTER ROAD,BUENA BORO,16,1955,1,RES1,3001 -0104_122_25,-74.54408516,39.37736197,476 SOUTH BREWSTER RD,BUENA BORO,,0,1,RES1,3001 -0104_122_26,-74.81930683,39.65109158,420 WHEAT ROAD,BUENA BORO,16,1920,1,RES1,3001 -0104_122_27.01,-74.732055,39.713568,472 SOUTH BREWSTER ROAD,BUENA BORO,16,1985,1,RES1,3001 -0104_122_27.02,-74.815434,39.6564695,474 SOUTH BREWSTER ROAD,BUENA BORO,16,2003,1,RES1,3001 -0104_122_29,-74.55399416,39.37672881,452 WHEAT ROAD,BUENA BORO,16,1932,1,RES1,3001 -0104_122_30,-74.55480554,39.37418765,456 WHEAT ROAD,BUENA BORO,16,1935,1,RES1,3001 -0104_122_31,-74.5717985,39.371726,458 WHEAT ROAD,BUENA BORO,16,1935,1,RES1,3001 -0104_122_32,-74.562356,39.371916,464 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_122_34,-74.57265441,39.37039569,110 SYLVAN LAKE RD.,BUENA BORO,15,1900,1,RES1,3001 -0104_122_38,-74.555341,39.369534,490 WHEAT ROAD,BUENA BORO,16,1900,1,RES1,3001 -0104_122_4.01,-74.3802915,39.4161555,631 FOREST GROVE RD,BUENA BORO,16,1975,1,RES1,3001 -0104_122_4.02,-74.3801945,39.415277,641 FOREST GROVE RD,BUENA BORO,16,1999,1,RES1,3001 -0104_122_5,-74.3796072,39.41413715,651 FOREST GROVE RD,BUENA BORO,15,1920,1,GOV1,3004 -0104_122_7,-74.55394182,39.3814653,320 SOUTH BREWSTER RD,BUENA BORO,16,1945,1,RES1,3001 -0104_123_2,-74.82767723,39.38879292,449 WHEAT ROAD,BUENA BORO,16,1915,1,RES1,3001 -0104_123_3,-74.59351198,39.42851302,447 WHEAT ROAD,BUENA BORO,16,1955,1,RES1,3001 -0104_123_5,-74.50765651,39.40634983,443 WHEAT ROAD,BUENA BORO,16,1914,1,RES1,3001 -0104_123_6,-74.587884,39.3330395,441 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_124_10,-74.61005833,39.34684295,407 WHEAT ROAD,BUENA BORO,16,1930,1,RES1,3004 -0104_124_11,-74.60809848,39.3152581,403 WHEAT ROAD,BUENA BORO,16,1944,1,RES1,3001 -0104_124_12,-74.60830071,39.38782924,397 WHEAT ROAD,BUENA BORO,15,1935,1,RES1,3001 -0104_124_2,-74.451699,39.349782,113 BELVIDERE AVE,BUENA BORO,16,1961,1,RES1,3001 -0104_124_3,-74.52815932,39.40203598,111 BELVIDERE AVE,BUENA BORO,16,1990,1,RES1,3001 -0104_124_4,-74.81901246,39.63599884,109 BELVIDERE AVE,BUENA BORO,16,1961,1,RES1,3001 -0104_124_5,-74.6589005,39.3987465,107 BELVIDERE AVE,BUENA BORO,16,1961,1,RES1,3001 -0104_124_6,-74.60122503,39.48724708,105 BELVIDERE AVE,BUENA BORO,16,1961,1,RES1,3001 -0104_124_8,-74.8111885,39.634539,429 WHEAT ROAD,BUENA BORO,16,1900,1,RES3A,3001 -0104_124_9,-74.51717531,39.38877828,421 WHEAT ROAD,BUENA BORO,16,1950,1,GOV1,3004 -0104_125_1,-74.65286083,39.40639485,604 SOUTH BREWSTER RD,BUENA BORO,16,1964,1,RES1,3001 -0104_125_10,-74.58944094,39.41445869,ASSD BY CITY OF VLD,BUENA BORO,,0,1,RES1,3001 -0104_125_11,-74.35821316,39.41405852,510 SOUTH BREWSTER RD,BUENA BORO,15,1900,1,RES1,3001 -0104_125_12,-74.925869,39.516108,508 SOUTH BREWSTER ROAD,BUENA BORO,16,1950,1,RES1,3001 -0104_125_13,-74.8845755,39.5585,506 SOUTH BREWSTER ROAD,BUENA BORO,16,1925,1,RES1,3001 -0104_125_14,-74.60268577,39.36462414,504 SOUTH BREWSTER RD,BUENA BORO,16,1900,1,GOV1,3004 -0104_125_2,-74.76387999,39.48395667,602 SOUTH BREWSTER RD,BUENA BORO,16,1950,1,RES1,3001 -0104_125_3,-74.8189879,39.56468563,528 SOUTH BREWSTER ROAD,BUENA BORO,16,1954,1,RES1,3001 -0104_125_4,-74.562934,39.5056385,524 SOUTH BREWSTER ROAD,BUENA BORO,16,1939,1,RES1,3001 -0104_125_5,-74.753823,39.4300995,522 SOUTH BREWSTER RD,BUENA BORO,16,1955,1,RES1,3001 -0104_125_6,-74.5932305,39.4325935,520 SOUTH BREWSTER RD,BUENA BORO,16,1935,1,GOV1,3004 -0104_125_7,-74.6424425,39.5267645,514 SOUTH BREWSTER ROAD,BUENA BORO,16,1982,1,RES1,3001 -0104_126_1,-74.5284455,39.30992,587 FOREST GROVE RD,BUENA BORO,15,1946,1,GOV1,3004 -0104_126_10,-74.80825129,39.53765903,545 FOREST GROVE ROAD,BUENA BORO,16,1951,1,RES1,3001 -0104_126_11,-74.64029841,39.53203214,543 FOREST GROVE ROAD,BUENA BORO,16,1932,1,RES1,3001 -0104_126_12.02,-74.563788,39.414692,521 FOREST GROVE ROAD,BUENA BORO,16,1900,1,RES1,3001 -0104_126_12.04,-74.65542187,39.40338443,527 FOREST GROVE ROAD,BUENA BORO,16,1992,1,RES1,3001 -0104_126_13,-74.391077,39.3931825,519 FOREST GROVE ROAD,BUENA BORO,16,1945,1,RES1,3001 -0104_126_14,-74.52132367,39.4199854,513 FOREST GROVE ROAD,BUENA BORO,16,1958,1,RES1,3002 -0104_126_15,-74.60201501,39.41923121,200 SOUTH CENTRAL AVENUE,BUENA BORO,15,1900,1,RES1,3001 -0104_126_15.03,-74.44130772,39.37164584,306 SOUTH CENTRAL AVE,BUENA BORO,16,2001,1,RES1,3001 -0104_126_17,-74.61613568,39.42391801,406 SOUTH CENTRAL AVE,BUENA BORO,16,1930,1,RES1,3001 -0104_126_18,-74.72975789,39.58919176,502 SOUTH CENTRAL AVE,BUENA BORO,16,1951,1,RES1,3001 -0104_126_2,-74.53530705,39.50171837,307 SOUTH BREWSTER RD,BUENA BORO,16,1938,1,RES1,3001 -0104_126_21,-74.6874015,39.3593385,110 PARK DRIVE,BUENA BORO,16,1961,1,RES1,3001 -0104_126_23,-74.49159857,39.33610033,106 PARK DRIVE,BUENA BORO,16,1970,1,RES1,3001 -0104_126_24,-74.48201288,39.43738982,104 PARK DRIVE,BUENA BORO,16,1963,1,RES1,3001 -0104_126_25,-74.79722114,39.63663445,102 PARK DRIVE,BUENA BORO,16,1963,1,GOV1,3004 -0104_126_26,-74.50506884,39.32993448,506 SOUTH CENTRAL AVE,BUENA BORO,17,1990,1,RES1,3001 -0104_126_27,-74.54699871,39.46915616,616 SOUTH CENTRAL AVNUE,BUENA BORO,,0,1,RES1,3001 -0104_126_29,-74.49192146,39.43172866,381 SOUTH BREWSTER ROAD,BUENA BORO,18,1986,1,RES1,3001 -0104_126_29.02,-74.64305113,39.37859089,1086 WEST SUMMER ROAD,BUENA BORO,16,2006,1,RES1,3001 -0104_126_29.03,-74.48895316,39.33453151,1070 WEST SUMMER RD,BUENA BORO,17,2007,1,RES1,3001 -0104_126_3,-74.52785847,39.45015309,309 SOUTH BREWSTER RD,BUENA BORO,16,1966,1,RES1,3001 -0104_126_30,-74.4483165,39.353172,357 SOUTH BREWSTER RD,BUENA BORO,16,1994,1,RES1,3001 -0104_126_31,-74.64463583,39.52727347,1068 WEST SUMMER ROAD,BUENA BORO,16,1920,1,RES1,3001 -0104_126_32,-74.7900435,39.666526,1066 WEST SUMMER ROAD,BUENA BORO,16,1945,1,RES1,3001 -0104_126_34,-74.971932,39.5170245,1048 WEST SUMMER ROAD,BUENA BORO,16,1910,1,RES1,3001 -0104_126_35.01,-74.88114813,39.5077933,1034 WEST SUMMER ROAD,BUENA BORO,16,1924,1,RES1,3001 -0104_126_36,-74.70469982,39.57273674,1026 WEST SUMMER ROAD,BUENA BORO,16,1920,1,RES1,3001 -0104_126_38,-74.5689825,39.4119025,1012 WEST SUMMER ROAD,BUENA BORO,16,1900,1,RES1,3001 -0104_126_39,-74.48669303,39.34959167,1010 WEST SUMMER ROAD,BUENA BORO,15,1890,1,RES1,3001 -0104_126_4.01,-74.86542549,39.49011062,581 FOREST GROVE ROAD,BUENA BORO,15,1972,1,RES1,3001 -0104_126_40.01,-74.54018931,39.52544805,1000 WEST SUMMER ROAD,BUENA BORO,16,1940,1,RES1,3001 -0104_126_40.02,-74.5850375,39.3608075,616 SOUTH CENTRAL AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_126_40.03,-74.58825133,39.42855154,1002 SUMMER ROAD,BUENA BORO,,0,1,RES1,3001 -0104_126_40.04,-74.926625,39.4842355,SUMMER ROAD,BUENA BORO,,0,1,RES1,3001 -0104_126_40.07,-74.52676346,39.41856618,SUMMER ROAD,BUENA BORO,,0,1,RES1,3001 -0104_126_6,-74.5696445,39.412513,565 FOREST GROVE ROAD,BUENA BORO,16,1900,1,RES1,3001 -0104_126_7.02,-74.86836418,39.49007901,561 FOREST GROVE ROAD,BUENA BORO,16,1974,1,RES1,3001 -0104_126_7.03,-74.4362245,39.370101,555 FOREST GROVE ROAD,BUENA BORO,16,2001,1,RES1,3001 -0104_126_8,-74.5966275,39.3787385,553 FOREST GROVE ROAD,BUENA BORO,16,1971,1,RES1,3001 -0104_126_9.02,-74.5154875,39.3993345,549 FOREST GROVE ROAD,BUENA BORO,15,1900,1,RES1,3001 -0104_127_1.01,-74.627303,39.438018,403 FOREST GROVE ROAD,BUENA BORO,16,1990,1,RES1,3001 -0104_127_2,-74.51158769,39.39814284,201 SOUTH CENTRAL AVENUE,BUENA BORO,17,1988,1,RES1,3001 -0104_127_4,-74.83089283,39.44979685,207 SOUTH CENTRAL AVENUE,BUENA BORO,17,2001,1,RES1,3001 -0104_127_5,-74.61711033,39.60169101,218 N. WILLOW ST.,BUENA BORO,17,1995,1,RES1,3001 -0104_128_1,-74.62040386,39.60228266,100 JOHNS AVENUE,BUENA BORO,17,1974,1,RES1,3001 -0104_128_2,-74.91479576,39.48177749,106 JOHNS AVE,BUENA BORO,17,1975,1,RES1,3001 -0104_128_3,-74.50121024,39.43094031,108 JOHNS AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_128_4,-74.63943475,39.44527065,110 JOHNS AVENUE,BUENA BORO,17,1956,1,RES1,3001 -0104_128_5,-74.51904768,39.38355762,112 JOHNS AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_128_7,-74.48957889,39.42789807,212 NORTH WILLOW STREET,BUENA BORO,17,1957,1,RES1,3001 -0104_128_8.01,-74.61320624,39.42172095,103 MARIE AVENUE,BUENA BORO,17,1992,1,RES1,3001 -0104_128_8.02,-74.35746584,39.41431052,101 MARIE AVENUE,BUENA BORO,17,1988,1,RES1,3001 -0104_129_1,-74.56596381,39.50013416,101 JOHNS AVENUE,BUENA BORO,17,1980,1,RES1,3001 -0104_129_10,-74.511948,39.3237855,118 EDWARDS AVE,BUENA BORO,17,1952,1,RES1,3001 -0104_129_11,-74.55833109,39.47596078,116 EDWARDS AVENUE,BUENA BORO,17,1945,1,RES1,3001 -0104_129_12,-74.56093942,39.37359906,114 EDWARDS AVENUE,BUENA BORO,17,1945,1,RES1,3001 -0104_129_13,-74.5577682,39.51135823,112 EDWARDS AVENUE,BUENA BORO,17,1942,1,RES1,3001 -0104_129_14,-74.62228794,39.43185318,110 EDWARDS AVENUE,BUENA BORO,17,1943,1,RES1,3001 -0104_129_15,-74.5936035,39.3706595,108 EDWARDS AVENUE,BUENA BORO,17,1952,1,RES1,3001 -0104_129_16,-74.6138005,39.33834771,106 EDWARDS AVENUE,BUENA BORO,17,1952,1,RES1,3001 -0104_129_17,-74.49329467,39.33171949,104 EDWARDS AVENUE,BUENA BORO,17,1952,1,RES1,3001 -0104_129_18,-74.77667712,39.64210644,102 EDWARDS AVENUE,BUENA BORO,17,1954,1,RES1,3001 -0104_129_19,-74.63549903,39.34912036,100 EDWARDS AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_129_2,-74.77514181,39.6193858,103 JOHNS AVENUE,BUENA BORO,17,1962,1,RES1,3001 -0104_129_3,-74.65184698,39.45745911,105 JOHNS AVENUE,BUENA BORO,17,1960,1,RES1,3001 -0104_129_4,-74.5207925,39.39397,107 JOHNS AVENUE,BUENA BORO,17,1959,1,COM1,3004 -0104_129_5,-74.59386576,39.4242995,109 JOHNS AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_129_6,-74.5582785,39.5529925,113 JOHNS AVENUE,BUENA BORO,17,1959,1,RES1,3001 -0104_129_7,-74.53587978,39.45419194,206 NORTH WILLOW STREET,BUENA BORO,17,1954,1,RES1,3001 -0104_129_9,-74.51029732,39.38558948,202 NORTH WILLOW STREET,BUENA BORO,17,1975,1,REL1,3004 -0104_130_1,-74.51868331,39.38870548,217 N. WILLOW ST,BUENA BORO,17,1957,1,RES1,3001 -0104_130_2.01,-74.5987215,39.3808105,301 FOREST GROVE ROAD,BUENA BORO,17,1990,1,RES1,3001 -0104_130_2.02,-74.6307853,39.36184527,211 NORTH WILLOW STREET,BUENA BORO,17,1920,1,RES1,3001 -0104_130_2.03,-74.4990715,39.4308295,207 NORTH WILLOW STREET,BUENA BORO,17,1970,1,RES1,3001 -0104_130_3,-74.50659507,39.44733027,209 NORTH WILLOW STREET,BUENA BORO,17,1965,1,COM1,3004 -0104_130_4,-74.5698798,39.47782718,404 W. ARBOR AVE.,BUENA BORO,17,1930,1,RES1,3001 -0104_130_5,-74.5835541,39.43147786,402 WEST ARBOR AVE,BUENA BORO,16,2010,1,RES1,3001 -0104_130_6,-74.5247555,39.386051,400 WEST ARBOR AVE,BUENA BORO,17,1950,1,RES1,3001 -0104_131_1,-74.9514615,39.53365,205 FOREST GROVE ROAD,BUENA BORO,,0,1,RES1,3001 -0104_131_2,-74.58866282,39.32134361,308 WEST ARBOR AVE,BUENA BORO,17,1953,1,RES1,3001 -0104_131_3,-74.79242372,39.6427802,306 WEST ARBOR AVE,BUENA BORO,17,1914,1,RES1,3001 -0104_131_4,-74.540194,39.4727255,304 WEST ARBOR AVE,BUENA BORO,17,1914,1,RES1,3001 -0104_131_5,-74.45164443,39.49079634,302 WEST ARBOR AVE,BUENA BORO,17,1920,1,RES1,3001 -0104_131_6,-74.58282609,39.48645598,200 N. FRANKLIN STREET,BUENA BORO,17,1914,1,RES1,3001 -0104_131_7,-74.64529993,39.36315275,206 NORTH FRANKLIN STREET,BUENA BORO,17,1955,1,RES1,3001 -0104_132_1,-74.945093,39.5230235,601 SOUTH CENTRAL AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_132_10,-74.59389147,39.43293331,115 EDWARDS AVENUE,BUENA BORO,17,1967,1,RES1,3001 -0104_132_11,-74.80677974,39.52358246,117 EDWARDS AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_132_12,-74.62567642,39.43436822,112 NORTH WILLOW STREET,BUENA BORO,16,2004,1,RES1,3001 -0104_132_13,-74.5164525,39.443306,110 NORTH WILLOW STREET,BUENA BORO,17,1945,1,RES1,3001 -0104_132_14,-74.555254,39.427005,106 PARK AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_132_15,-74.6251455,39.39297,110 PARK AVENUE,BUENA BORO,17,1950,1,RES1,3001 -0104_132_2,-74.49484333,39.33058202,505 SOUTH CENTRAL AVE,BUENA BORO,16,1957,1,RES1,3001 -0104_132_3,-74.628985,39.351995,101 EDWARDS AVENUE,BUENA BORO,17,1970,1,RES1,3001 -0104_132_4,-74.50398547,39.44927856,103 EDWARDS AVENUE,BUENA BORO,17,1971,1,RES1,3001 -0104_132_5,-74.6421382,39.43423112,105 EDWARDS AVENUE,BUENA BORO,17,1965,1,RES1,3001 -0104_132_6,-74.854299,39.538088,107 EDWARDS AVENUE,BUENA BORO,17,1967,1,RES1,3001 -0104_132_7,-74.49215053,39.44524566,109 EDWARDS AVENUE,BUENA BORO,17,1960,1,RES1,3001 -0104_132_8,-74.5679743,39.41335967,111 EDWARDS AVE,BUENA BORO,17,1965,1,COM1,3004 -0104_132_9,-74.48845084,39.46013596,113 EDWARDS AVENUE,BUENA BORO,17,1945,1,RES1,3001 -0104_133_1,-74.40584564,39.37788874,512 NORTH WEST BOULEVARD,BUENA BORO,16,1930,1,RES1,3001 -0104_133_2,-74.60213156,39.36349186,510 NORTH WEST BOULEVARD,BUENA BORO,17,1925,1,RES1,3001 -0104_133_3.01,-74.57395907,39.4119054,508 NORTH WEST BOULEVARD,BUENA BORO,17,1960,1,RES1,3001 -0104_133_3.02,-74.61118905,39.4208638,109 PARK AVE,BUENA BORO,17,2005,1,RES1,3001 -0104_133_4,-74.669291,39.5821225,506 NORTH WEST BOULEVARD,BUENA BORO,17,1936,1,RES1,3001 -0104_133_6,-74.660805,39.578679,108 NORTH WILLOW STREET,BUENA BORO,17,1960,1,RES1,3004 -0104_133_7,-74.5175485,39.3977205,106 NORTH WILLOW STREET,BUENA BORO,17,1925,1,RES1,3001 -0104_133_8,-74.62533332,39.42068643,104 NORTH WILLOW STREET,BUENA BORO,17,1935,1,RES1,3001 -0104_133_9,-74.65207655,39.53048408,500 NORTH WEST BOULEVARD,BUENA BORO,17,1945,1,RES1,3001 -0104_134_1,-74.64348997,39.52700967,405 WEST ARBOR AVENUE,BUENA BORO,17,1940,1,RES1,3001 -0104_134_10,-74.6867698,39.51343293,404 NORTHWEST BOULEVARD,BUENA BORO,17,1945,1,RES1,3001 -0104_134_11,-74.59780024,39.59855942,101 N. WILLOW STREET,BUENA BORO,17,2002,1,RES1,3001 -0104_134_12,-74.49148122,39.51506447,105 NORTH WILLOW STREET,BUENA BORO,17,1895,1,RES1,3001 -0104_134_13,-74.77966031,39.58688196,107 NORTH WILLOW STREET,BUENA BORO,17,1935,1,RES1,3001 -0104_134_14,-74.5485494,39.38285869,109 NORTH WILLOW STREET,BUENA BORO,17,1915,1,RES1,3001 -0104_134_2,-74.55873397,39.41204282,401 WEST ARBOR AVE,BUENA BORO,17,1955,1,GOV1,3004 -0104_134_3,-74.692447,39.629056,110 NORTH LAUREL STREET,BUENA BORO,17,1930,1,RES1,3001 -0104_134_7,-74.52947359,39.44612312,104 NORTH LAUREL STREET,BUENA BORO,17,2003,1,RES1,3001 -0104_134_8,-74.64256473,39.39950839,400 NORTH WEST BOULEVARD,BUENA BORO,17,1930,1,RES1,3001 -0104_134_9,-74.87668016,39.59687447,402 NORTH WEST BOULEVARD,BUENA BORO,17,1935,1,RES1,3001 -0104_135_1,-74.52505844,39.46570385,305 WEST ARBOR AVE,BUENA BORO,17,1946,1,RES1,3001 -0104_135_10,-74.46081841,39.35102133,304 NORTH WEST BOULEVARD,BUENA BORO,17,1925,1,RES1,3001 -0104_135_11,-74.52403195,39.31599533,306 NORTH WEST BOULEVARD,BUENA BORO,17,1920,1,RES1,3001 -0104_135_12,-74.56870463,39.35483032,308 NORTH WEST BOULEVARD,BUENA BORO,17,1925,1,RES1,3001 -0104_135_13,-74.71429108,39.41368779,105 NORTH LAUREL STREET,BUENA BORO,17,1945,1,GOV1,3004 -0104_135_14,-74.54869197,39.36728091,107 NORTH LAUREL STREET,BUENA BORO,17,1905,1,RES1,3001 -0104_135_15,-74.6984819,39.5591064,109 NORTH LAUREL STREET,BUENA BORO,17,1981,1,RES1,3001 -0104_135_2,-74.429031,39.374186,110 NORTH FRANKLIN STREET,BUENA BORO,17,1925,1,RES1,3001 -0104_135_2.01,-74.4215735,39.3723335,303 ARBOR AVE,BUENA BORO,17,2003,1,RES1,3001 -0104_135_2.02,-74.7671795,39.6299135,111 NORTH LAUREL STREET,BUENA BORO,16,2004,1,RES1,3001 -0104_135_3,-74.7917079,39.6170807,114 NORTH FRANKLIN STREET,BUENA BORO,17,1940,1,RES1,3001 -0104_135_4,-74.50964339,39.4006013,112 NORTH FRANKLIN STREET,BUENA BORO,17,1925,1,RES1,3001 -0104_135_5,-74.924112,39.509822,108 NORTH FRANKLIN STREET,BUENA BORO,17,1910,1,RES1,3001 -0104_135_6,-74.64652741,39.52922507,106 NORTH FRANKLIN STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_135_7,-74.5485285,39.5107245,104 NORTH FRANKLIN STREET,BUENA BORO,17,1920,1,RES1,3001 -0104_135_8,-74.55667,39.474135,300 NORTH WEST BOULEVARD,BUENA BORO,17,1920,1,RES1,3001 -0104_135_9,-74.52517184,39.47201153,302 NORTH WEST BOULEVARD,BUENA BORO,17,1920,1,RES1,3001 -0104_136_1,-74.9200375,39.493431,207 FRANKLIN ST,BUENA BORO,17,1984,1,GOV1,3004 -0104_136_2,-74.89022297,39.49981768,203 NORTH FRANKLIN STREET,BUENA BORO,17,1972,1,RES1,3001 -0104_136_3,-74.93851695,39.52847181,201 NORTH FRANKLIN ST.,BUENA BORO,17,1969,1,RES1,3001 -0104_136_4,-74.56946638,39.36042771,102 WEST ARBOR AVE,BUENA BORO,,0,1,RES1,3001 -0104_137_10.01,-74.8680762,39.49284104,205 NORTH HARDING HIGHWAY,BUENA BORO,16,1900,1,RES1,3001 -0104_137_10.02,-74.373441,39.4116425,111 MELINI AVENUE,BUENA BORO,16,1979,1,RES1,3001 -0104_137_10.03,-74.52585342,39.39363219,208 NORTH AUBURN ST,BUENA BORO,16,1983,1,RES1,3001 -0104_137_10.04,-74.58835031,39.37159884,212 NORTH AUBURN ST,BUENA BORO,16,1982,1,RES1,3001 -0104_137_10.05,-74.79235917,39.63696027,113 MELINI AVENUE,BUENA BORO,16,1985,1,RES1,3001 -0104_137_11,-74.51241515,39.33100339,207 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_137_12,-74.582995,39.4143015,209 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_137_13.02,-74.58750093,39.33518484,211 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_137_2,-74.51424041,39.43212493,102 EAST ARBOR AVE,BUENA BORO,16,1945,1,RES1,3001 -0104_137_4,-74.94643928,39.52570904,106 EAST ARBOR AVE,BUENA BORO,16,1945,1,RES1,3001 -0104_137_5,-74.56930077,39.34651087,108 EAST ARBOR AVE,BUENA BORO,16,1965,1,RES1,3001 -0104_137_6,-74.727862,39.586859,110 EAST ARBOR AVE,BUENA BORO,16,1975,1,RES1,3001 -0104_137_7.01,-74.60077163,39.5126275,112 EAST ARBOR AVE,BUENA BORO,16,1945,1,RES1,3001 -0104_137_8,-74.786759,39.6307905,204 NORTH AUBURN ST,BUENA BORO,16,1963,1,RES1,3001 -0104_138_1,-74.56692283,39.38882233,207 MELINI AVE,BUENA BORO,16,1948,1,RES1,3001 -0104_138_10,-74.49023117,39.33762966,209 NORTH AUBURN ST,BUENA BORO,16,1955,1,RES1,3001 -0104_138_11.02,-74.63231782,39.62518472,211 NORTH AUBURN ST,BUENA BORO,16,1986,1,RES1,3001 -0104_138_2,-74.8843335,39.4623195,210 KENNEDY DRIVE,BUENA BORO,16,1977,1,RES1,3001 -0104_138_3,-74.66728716,39.541475,208 KENNEDY DRIVE,BUENA BORO,16,2002,1,RES1,3001 -0104_138_4.01,-74.51658635,39.40130052,204 KENNEDY DRIVE,BUENA BORO,16,1965,1,RES1,3001 -0104_138_6,-74.555649,39.4040745,204 EAST ARBOR AVE,BUENA BORO,16,1960,1,RES1,3001 -0104_138_7,-74.54355215,39.4136172,202 EAST ARBOR AVE,BUENA BORO,16,1955,1,RES1,3001 -0104_138_8,-74.6276435,39.424041,200 EAST ARBOR AVE,BUENA BORO,16,1950,1,RES1,3001 -0104_138_9,-74.63948784,39.52851048,205 NORTH AUBURN ST,BUENA BORO,16,1975,1,RES1,3001 -0104_139_1,-74.78827478,39.64263197,201 WEST ARBOR AVE,BUENA BORO,17,1920,1,RES1,3001 -0104_139_1.01,-74.56135,39.4163215,111 N. FRANKLIN STREET,BUENA BORO,17,2001,1,RES1,3001 -0104_139_2,-74.48922692,39.4398077,109 NORTH FRANKLIN STREET,BUENA BORO,17,1952,1,RES1,3001 -0104_139_3,-74.58997504,39.32697091,108 NORTH NIXON STREET,BUENA BORO,17,1945,1,RES1,3001 -0104_139_4,-74.75259405,39.29880767,107 NORTH FRANKLIN STREET,BUENA BORO,17,1961,1,RES1,3001 -0104_139_5,-74.8788245,39.4766385,106 NORTH NIXON STREET,BUENA BORO,17,1950,1,RES1,3001 -0104_139_6.01,-74.61973447,39.43091914,105 NORTH FRANKLIN STREET,BUENA BORO,17,1915,1,RES1,3001 -0104_139_6.02,-74.63656107,39.38148334,104 NORTH NIXON STREET,BUENA BORO,17,1980,1,RES1,3001 -0104_139_7,-74.62998145,39.38978431,103 NORTH FRANKLIN STREET,BUENA BORO,17,1910,1,RES1,3001 -0104_139_8,-74.8777135,39.48784259,202 NORTH WEST BLVD,BUENA BORO,,0,1,RES1,3001 -0104_140_1,-74.8145955,39.64635033,113 WEST ARBOR AVE,BUENA BORO,,0,1,RES1,3001 -0104_140_10,-74.6042985,39.3684805,104 NORTH HARDING HIGHWAY,BUENA BORO,17,1927,1,RES1,3001 -0104_140_11,-74.5015515,39.335318,102 NORTH WEST BOULEVARD,BUENA BORO,17,1910,1,RES1,3001 -0104_140_2,-74.55811923,39.4767701,116 NORTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_140_3,-74.53679868,39.30530877,114 NORTH HARDING HIGHWAY,BUENA BORO,17,1920,1,RES1,3001 -0104_140_4,-74.55655822,39.46992655,107 NORTH NIXON STREET,BUENA BORO,17,1945,1,RES1,3001 -0104_140_5,-74.55656578,39.3871788,112 NORTH HARDING HIGHWAY,BUENA BORO,17,1925,1,RES1,3001 -0104_140_6,-74.611433,39.511793,110 NORTH HARDING HIGHWAY,BUENA BORO,17,1940,1,RES1,3001 -0104_140_7,-74.62453926,39.38290818,108 NORTH HARDING HIGHWAY,BUENA BORO,17,1920,1,RES1,3001 -0104_140_8,-74.7132955,39.4056435,105 NORTH NIXON STREET,BUENA BORO,17,1920,1,RES1,3001 -0104_140_9,-74.51852015,39.45140656,106 NORTH HARDING HIGHWAY,BUENA BORO,17,1890,1,RES1,3001 -0104_141_1,-74.52346257,39.31433218,117 NORTH HARDING HIGHWAY,BUENA BORO,15,1910,1,RES1,3001 -0104_141_10,-74.84267682,39.56306871,109 NORTH HARDING HIGHWAY,BUENA BORO,14,1980,1,RES1,3001 -0104_141_11,-74.557594,39.4746605,107 NORTH HARDING HIGHWAY,BUENA BORO,45,1910,3,RES1,3001 -0104_141_13,-74.6257265,39.4359785,104 NORTH AUBURN ST,BUENA BORO,16,1925,1,RES1,3001 -0104_141_15,-74.92598643,39.48345274,102 NORTH EAST BOULEVARD,BUENA BORO,,0,1,RES1,3001 -0104_141_16,-74.826629,39.5331205,104 NORTH EAST BOULEVARD,BUENA BORO,15,1900,1,RES1,3001 -0104_141_17,-74.3722975,39.401022,106 NORTH EAST BOULEVARD,BUENA BORO,16,1940,1,RES1,3001 -0104_141_18,-74.87442316,39.52187653,108 NORTH EAST BOULEVARD,BUENA BORO,27,1900,2,RES3A,3001 -0104_141_2,-74.51014788,39.3272654,105 EAST ARBOR AVE,BUENA BORO,16,1900,1,RES1,3001 -0104_141_3,-74.61127667,39.32371346,107 EAST ARBOR AVE,BUENA BORO,16,1915,1,RES1,3001 -0104_141_5,-74.54566216,39.37919273,108 NORTH AUBURN ST,BUENA BORO,16,2002,1,RES1,3001 -0104_141_5.01,-74.4049905,39.3788125,111 E. ARBOR AVE,BUENA BORO,16,2003,1,RES1,3001 -0104_141_5.02,-74.49989032,39.40960198,115 EAST ARBOR AVENUE,BUENA BORO,16,2004,1,RES1,3001 -0104_141_7,-74.9585195,39.5051955,115 NORTH HARDING HIGHWAY,BUENA BORO,16,1890,1,RES1,3001 -0104_141_8,-74.652061,39.6251695,111 NORTH HARDING HIGHWAY,BUENA BORO,16,1940,1,COM1,3004 -0104_141_9,-74.60820081,39.44155334,109 NORTH HARDING HIGHWAY,BUENA BORO,16,1910,1,RES1,3001 -0104_142_1,-74.469759,39.342999,111 NORTH AUBURN ST,BUENA BORO,,0,1,RES1,3001 -0104_142_1.01,-74.56650433,39.47548351,201 EAST ARBOR AVE,BUENA BORO,14,1923,1,RES1,3001 -0104_142_2,-74.4660355,39.346807,105 NORTH AUBURN ST,BUENA BORO,16,1945,1,RES1,3001 -0104_142_4,-74.6475075,39.532465,204 NORTH EAST BOULEVARD,BUENA BORO,16,1945,1,RES1,3001 -0104_143_1,-74.50749254,39.45502968,113 KENNEDY DRIVE,BUENA BORO,16,1935,1,RES1,3001 -0104_143_2,-74.465989,39.345848,111 KENNEDY DRIVE,BUENA BORO,16,1925,1,RES1,3001 -0104_143_3,-74.57664452,39.33448115,310 NORTH EAST BLVD,BUENA BORO,,0,1,RES1,3001 -0104_143_4,-74.460601,39.47080337,314 NORTH EAST BLVD,BUENA BORO,,0,1,RES1,3001 -0104_144_2,-74.62836171,39.43893157,106 WEST ATLANTIC AVE,BUENA BORO,,0,1,RES1,3001 -0104_144_4,-74.8028736,39.46413271,706 SOUTH CENTRAL AVE,BUENA BORO,15,1915,1,RES1,3001 -0104_144_6,-74.958974,39.4979415,710 SOUTH CENTRAL AVE,BUENA BORO,14,1880,1,COM8,3004 -0104_145_1,-74.48541147,39.35177094,701 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_145_10,-74.6038709,39.31589118,515 SOUTH WEST BOULEVARD,BUENA BORO,17,1925,1,RES1,3001 -0104_145_11,-74.95801417,39.53651432,513 SOUTH WEST BOULEVARD,BUENA BORO,17,2005,1,RES1,3001 -0104_145_14,-74.5966825,39.4193475,507 SOUTH WEST BOULEVARD,BUENA BORO,17,1905,1,RES1,3001 -0104_145_14.01,-74.40654114,39.37883953,104 FIOCCHI STREET,BUENA BORO,17,2007,1,RES1,3001 -0104_145_16,-74.5309635,39.384696,503 SOUTH WEST BOULEVARD,BUENA BORO,17,1965,1,RES1,3001 -0104_145_17,-74.554797,39.36287,501 SOUTH WEST BOULEVARD,BUENA BORO,17,1920,1,RES1,3001 -0104_145_18,-74.59115466,39.37848717,106 FIOCCHI STREET,BUENA BORO,17,2007,1,RES1,3001 -0104_145_19,-74.562276,39.503945,102 FIOCCHI STREET,BUENA BORO,17,1966,1,RES1,3001 -0104_145_2,-74.45324408,39.3730418,703 SOUTH CENTRAL AVE,BUENA BORO,,0,1,GOV1,3004 -0104_145_20,-74.50131,39.469389,100 FIOCCHI STREET,BUENA BORO,17,1986,1,RES1,3001 -0104_145_21,-74.65307966,39.53533447,107 FIOCCHI STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_145_22,-74.5120925,39.324801,103 FIOCCHI STREET,BUENA BORO,17,1947,1,RES1,3001 -0104_145_22.01,-74.624999,39.506038,101 FIOCCHI ST,BUENA BORO,17,2007,1,RES1,3001 -0104_145_24,-74.4878577,39.43599538,112 SOUTH WILLOW STREET,BUENA BORO,17,1945,1,RES1,3001 -0104_145_26,-74.69053895,39.35402709,200 SOUTH WILLOW STREET,BUENA BORO,,0,1,RES1,3001 -0104_145_27,-74.492152,39.4953805,202 SOUTH WILLOW STREET,BUENA BORO,17,1956,1,RES1,3001 -0104_145_28,-74.95132243,39.51368399,204 SOUTH WILLOW ST,BUENA BORO,17,1956,1,RES1,3001 -0104_145_29,-74.785243,39.612246,206 SOUTH WILLOW STREET,BUENA BORO,17,1956,1,RES1,3001 -0104_145_31,-74.54044515,39.46729931,210 S. WILLOW ST.,BUENA BORO,17,1989,1,RES1,3001 -0104_145_31.01,-74.50901493,39.32545264,212 SOUTH WILLOW STREET,BUENA BORO,16,1989,1,RES1,3001 -0104_145_31.02,-74.79278564,39.67573286,214 SOUTH WILLOW STREET,BUENA BORO,17,1989,1,GOV1,3004 -0104_145_33.01,-74.87803188,39.49566908,105 NORTH CASS AVE,BUENA BORO,17,1895,1,RES1,3001 -0104_145_33.04,-74.37011794,39.41143268,201 NORTH CASS AVE,BUENA BORO,17,1900,1,RES1,3001 -0104_145_34,-74.64938977,39.5317127,608 WEST SUMMER ROAD,BUENA BORO,17,1991,1,RES1,3001 -0104_145_36,-74.5829485,39.340989,602 WEST SUMMER ROAD,BUENA BORO,17,1960,1,RES1,3001 -0104_145_37,-74.59159628,39.43028482,516 WEST SUMMER ROAD,BUENA BORO,17,1967,1,RES1,3001 -0104_145_40,-74.9251215,39.5105975,510 WEST SUMMER ROAD,BUENA BORO,17,1964,1,RES1,3001 -0104_145_40.03,-74.6636075,39.399949,502 W. SUMMER ROAD,BUENA BORO,17,2004,1,RES1,3001 -0104_145_41,-74.51819253,39.44691634,300 SOUTH WILLOW STREET,BUENA BORO,17,1989,1,RES1,3001 -0104_145_41.01,-74.6059676,39.40931534,304 SOUTH WILLOW STREET,BUENA BORO,17,1989,1,RES1,3001 -0104_145_6,-74.48658391,39.46234967,104 EAST ATLANTIC AVE,BUENA BORO,17,1925,1,RES1,3001 -0104_146_1,-74.7226805,39.5732425,407 SOUTH WEST BOULEVARD,BUENA BORO,17,1900,1,RES1,3001 -0104_146_10,-74.79451643,39.61766465,403 SOUTH WEST BOULEVARD,BUENA BORO,17,1905,1,RES1,3001 -0104_146_11,-74.79709542,39.66159504,405 SOUTH WEST BOULEVARD,BUENA BORO,17,1905,1,RES1,3001 -0104_146_2,-74.77943392,39.63304342,105 SOUTH WILLOW STREET,BUENA BORO,17,1925,1,RES1,3001 -0104_146_3,-74.61895796,39.38120635,107 SOUTH WILLOW STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_146_4,-74.49704667,39.33645549,109 SOUTH WILLOW STREET,BUENA BORO,17,1925,1,RES1,3001 -0104_146_5,-74.81134302,39.63573667,111 SOUTH WILLOW STREET,BUENA BORO,17,1940,1,RES1,3001 -0104_146_6,-74.66841199,39.53995539,112 LAUREL ST,BUENA BORO,17,1930,1,RES1,3001 -0104_146_7,-74.618215,39.433363,110 SOUTH LAUREL STREET,BUENA BORO,17,1955,1,RES1,3001 -0104_146_8,-74.61715234,39.36950976,108 SOUTH LAUREL STREET,BUENA BORO,17,1925,1,RES1,3001 -0104_146_9,-74.40854932,39.37992201,100 SOUTH LAUREL STREET,BUENA BORO,17,2007,1,RES1,3001 -0104_146_9.01,-74.40335729,39.38113214,104 SOUTH LAUREL ST,BUENA BORO,17,2008,1,RES1,3001 -0104_146_9.02,-74.70654836,39.42525658,106 SOUTH LAUREL ST,BUENA BORO,16,2008,1,RES1,3001 -0104_147_1,-74.7515545,39.5997015,309 SOUTH WEST BOULEVARD,BUENA BORO,17,1842,1,RES1,3001 -0104_147_10,-74.5387745,39.412235,104 SOUTH FRANKLIN STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_147_11,-74.51697074,39.44369147,100 SOUTH FRANKLIN STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_147_12,-74.5743495,39.3393015,305 SOUTH WEST BOULEVARD,BUENA BORO,17,1910,1,RES4,3001 -0104_147_13,-74.5877245,39.4332,307 SOUTH WEST BOULEVARD,BUENA BORO,17,1900,1,RES1,3001 -0104_147_2,-74.52808566,39.44800097,107 SOUTH LAUREL STREET,BUENA BORO,17,1935,1,COM1,3004 -0104_147_3,-74.63494767,39.42467581,109 SOUTH LAUREL STREET,BUENA BORO,16,2011,1,RES1,3001 -0104_147_4,-74.443568,39.371759,111 SOUTH LAUREL STREET,BUENA BORO,17,1955,1,RES1,3001 -0104_147_6.01,-74.52233318,39.38958312,400 WEST FLOWER STREET,BUENA BORO,17,1940,1,RES1,3001 -0104_147_6.02,-74.4838035,39.35465,112 SOUTH FRANKLIN STREET,BUENA BORO,17,1950,1,RES1,3001 -0104_147_7,-74.92693548,39.53438479,110 SOUTH FRANKLIN STREET,BUENA BORO,17,1935,1,RES1,3001 -0104_147_8,-74.4942222,39.45507089,108 SOUTH FRANKLIN STREET,BUENA BORO,17,1895,1,RES1,3001 -0104_147_9,-74.5909785,39.3982825,106 SOUTH FRANKLIN STREET,BUENA BORO,17,1900,1,EDU1,3004 -0104_148_1,-74.56525609,39.41390224,503 WEST FLOWER STREET,BUENA BORO,16,1906,1,RES1,3001 -0104_148_1.01,-74.800053,39.6152755,201 S. WILLOW STREET,BUENA BORO,17,2000,1,GOV1,3004 -0104_148_2.02,-74.5481065,39.4047055,209 SOUTH WILLOW STREET,BUENA BORO,17,1980,1,RES1,3001 -0104_148_2.03,-74.64272906,39.51805314,211 SOUTH WILLOW STREET,BUENA BORO,17,1983,1,RES1,3001 -0104_148_3,-74.709696,39.5685345,214 SOUTH LAUREL STREET,BUENA BORO,17,1958,1,RES1,3001 -0104_148_3.02,-74.48236812,39.43352198,208 SOUTH LAUREL STREET,BUENA BORO,17,2004,1,RES1,3001 -0104_148_4,-74.459965,39.471591,204 SOUTH LAUREL STREET,BUENA BORO,,0,1,RES1,3001 -0104_148_5,-74.6851505,39.4442715,501 WEST FLOWER STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_149_1,-74.46566348,39.35758816,405 WEST FLOWER STREET,BUENA BORO,17,1915,1,RES1,3001 -0104_149_10,-74.59052099,39.42335184,206 SOUTH FRANKLIN STREET,BUENA BORO,17,1905,1,RES1,3001 -0104_149_11,-74.48955883,39.45576116,204 SOUTH FRANKLIN STREET,BUENA BORO,17,1905,1,RES1,3001 -0104_149_12,-74.4947675,39.33139437,401 WEST FLOWER STREET,BUENA BORO,17,1905,1,RES1,3001 -0104_149_2,-74.788092,39.637172,205 SOUTH LAUREL STREET,BUENA BORO,17,1992,1,RES1,3001 -0104_149_3,-74.8746115,39.442591,207 SOUTH LAUREL STREET,BUENA BORO,17,1940,1,GOV1,3004 -0104_149_4,-74.4216975,39.367493,209 SOUTH LAUREL STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_149_6,-74.56936675,39.41461242,406 WEST DELAWARE,BUENA BORO,17,1989,1,RES1,3001 -0104_149_8,-74.8457535,39.557514,210 SOUTH FRANKLIN STREET,BUENA BORO,17,1905,1,GOV1,3004 -0104_149_9,-74.5922335,39.3343725,208 SOUTH FRANKLIN STREET,BUENA BORO,17,1905,1,RES1,3001 -0104_150_1,-74.74575093,39.42231876,301 SOUTH WILLOW STREET,BUENA BORO,17,2002,1,RES1,3001 -0104_150_3,-74.83447422,39.48795595,300 SOUTH LAUREL STREET,BUENA BORO,16,1985,1,RES1,3001 -0104_150_4,-74.6319578,39.38969109,302 SOUTH LAUREL STREET,BUENA BORO,17,1985,1,RES1,3001 -0104_150_5,-74.60921181,39.44142847,308 SOUTH LAUREL STREET,BUENA BORO,17,1985,1,RES1,3001 -0104_150_6,-74.8177585,39.633573,310 SOUTH LAUREL STREET,BUENA BORO,17,1985,1,GOV1,3004 -0104_150_7,-74.84505326,39.48233652,314 S. LAUREL ST,BUENA BORO,17,1987,1,RES3A,3001 -0104_151_1,-74.606601,39.328519,407 WEST DELAWARE AVENUE,BUENA BORO,17,1880,1,RES1,3001 -0104_151_2,-74.50595159,39.43185483,405 WEST DELAWARE AVENUE,BUENA BORO,17,1945,1,RES1,3001 -0104_151_3,-74.6284683,39.3917541,403 WEST DELAWARE AVENUE,BUENA BORO,17,1895,1,RES1,3001 -0104_151_4.01,-74.5697385,39.4128365,305 SOUTH LAUREL STREET,BUENA BORO,17,2005,1,RES1,3001 -0104_151_4.02,-74.479982,39.342987,304 SOUTH FRANKLIN STREET,BUENA BORO,17,1982,1,RES1,3001 -0104_151_5,-74.58848845,39.35231747,309 SOUTH LAUREL STREET,BUENA BORO,17,2003,1,RES1,3001 -0104_151_6,-74.55466479,39.46880837,308 S. FRANKLIN ST.,BUENA BORO,16,2003,1,RES1,3001 -0104_151_7,-74.5124865,39.3852725,311 SOUTH LAUREL STREET,BUENA BORO,17,1955,1,RES1,3001 -0104_151_8,-74.51231643,39.38548968,313 SOUTH LAUREL STREET,BUENA BORO,15,1945,1,RES3B,3001 -0104_151_9,-74.62923236,39.35692514,402 WEST SUMMER ROAD,BUENA BORO,17,1988,1,RES1,3001 -0104_152_1,-74.651293,39.521634,101 SOUTH FRANKLIN STREET,BUENA BORO,17,1965,1,RES1,3001 -0104_152_10,-74.60106915,39.41850567,113 SOUTH FRANKLIN STREET,BUENA BORO,17,1920,1,RES1,3001 -0104_152_11,-74.556347,39.3681615,115 SOUTH FRANKLIN STREET,BUENA BORO,17,1935,1,RES1,3001 -0104_152_12,-74.92407705,39.5081383,117 SOUTH FRANKLIN STREET,BUENA BORO,17,1920,1,RES1,3001 -0104_152_13,-74.49767734,39.4909161,300 WEST FLOWER STREET,BUENA BORO,17,1985,1,RES1,3001 -0104_152_15,-74.86227387,39.48383719,110 SOUTH NIXON STREET,BUENA BORO,17,1929,1,RES1,3001 -0104_152_16,-74.808173,39.6331465,108 SOUTH NIXON STREET,BUENA BORO,17,1924,1,IND1,3002 -0104_152_17,-74.518385,39.410842,106 SOUTH NIXON STREET,BUENA BORO,17,1930,1,RES1,3004 -0104_152_18,-74.76115086,39.66889802,104 SOUTH NIXON STREET,BUENA BORO,,0,1,RES1,3001 -0104_152_2,-74.51473779,39.45272905,207 SOUTH WEST BOULEVARD,BUENA BORO,15,1920,1,RES1,3001 -0104_152_3,-74.46638332,39.48898777,205 SOUTH WEST BOULEVARD,BUENA BORO,,0,1,RES1,3001 -0104_152_4,-74.520944,39.388215,203 SOUTH WEST BOULEVARD,BUENA BORO,,1890,1,RES1,3001 -0104_152_5,-74.44892887,39.48517316,201 SOUTH WEST BOULEVARD,BUENA BORO,17,1920,1,RES1,3001 -0104_152_7,-74.515053,39.39805,107 SOUTH FRANKLIN STREET,BUENA BORO,17,1910,1,RES1,3001 -0104_152_8,-74.95986752,39.51251147,109 SOUTH FRANKLIN STREET,BUENA BORO,17,1950,1,RES1,3001 -0104_152_9,-74.59974929,39.41932593,111 SOUTH FRANKLIN STREET,BUENA BORO,17,1910,1,RES1,3001 -0104_153_1,-74.45985026,39.34630317,109 SOUTH WEST BOULEVARD,BUENA BORO,,0,1,RES1,3001 -0104_153_10,-74.792773,39.670949,206 WEST FLOWER STREET,BUENA BORO,17,1910,1,RES1,3001 -0104_153_11,-74.5153326,39.44551256,204 WEST FLOWER STREET,BUENA BORO,17,1868,1,RES1,3001 -0104_153_12,-74.70168333,39.5755048,200 WEST FLOWER STREET,BUENA BORO,17,1910,1,RES1,3001 -0104_153_2,-74.86443915,39.5958773,107 SOUTH WEST BOULEVARD,BUENA BORO,17,1935,1,RES1,3001 -0104_153_3,-74.48178533,39.43094361,105 SOUTH WEST BOULEVARD,BUENA BORO,17,1940,1,RES1,3001 -0104_153_4,-74.63398699,39.34274284,103 SOUTH WEST BOULEVARD,BUENA BORO,,0,1,COM1,3004 -0104_153_5,-74.5767395,39.5393345,101 SOUTH WEST BOULEVARD,BUENA BORO,17,1940,1,RES1,3001 -0104_153_6,-74.588091,39.430106,107 SOUTH NIXON STREET,BUENA BORO,17,1910,1,RES1,3001 -0104_153_7,-74.8798745,39.5004125,104 BUENA VISTA AVE,BUENA BORO,17,1950,1,RES1,3001 -0104_153_8,-74.5685635,39.54198,109 SOUTH NIXON STREET,BUENA BORO,17,1920,1,RES1,3004 -0104_153_9,-74.7157355,39.578308,108 BUENA VISTA AVE,BUENA BORO,,0,1,RES1,3001 -0104_153_9.01,-74.79493311,39.46560648,106 BUENA VISTA AVE,BUENA BORO,17,1945,1,RES1,3001 -0104_154_2,-74.6290025,39.3905395,104 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_154_3,-74.38647683,39.392596,108 SOUTH HARDING HIGHWAY,BUENA BORO,15,1910,1,RES1,3001 -0104_154_4,-74.45687314,39.49012728,110 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_155_1,-74.50940467,39.46007877,101 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES3A,3001 -0104_155_10,-74.86186185,39.48537803,115 SOUTH HARDING HIGHWAY,BUENA BORO,15,1900,1,RES1,3001 -0104_155_11,-74.4785809,39.3410162,117 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_155_12,-74.64937266,39.52964249,119 SOUTH HARDING HIGHWAY,BUENA BORO,15,1920,2,RES1,3001 -0104_155_13,-74.61841798,39.37906935,121 SOUTH HARDING HIGHWAY,BUENA BORO,43,1925,3,RES1,3001 -0104_155_2,-74.9144095,39.5079275,103 SOUTH HARDING HIGHWAY,BUENA BORO,16,1900,1,RES1,3002 -0104_155_3,-74.450344,39.3543445,105 SOUTH EAST BOULEVARD,BUENA BORO,16,1940,1,RES1,3001 -0104_155_5,-74.64880263,39.45687031,104 SOUTH AUBURN STREET,BUENA BORO,16,1910,1,RES1,3001 -0104_155_6,-74.49810024,39.32770054,107 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_156_2,-74.91158285,39.51189351,113 AUBURN STREET,BUENA BORO,16,1915,1,RES1,3001 -0104_156_3,-74.94003027,39.50349649,204 EAST FLOWER STREET,BUENA BORO,14,1950,1,RES1,3001 -0104_156_5,-74.50124,39.46985,110 BACHE ST,BUENA BORO,16,1950,1,RES1,3004 -0104_156_6,-74.65163507,39.4586526,108 BACHE ST,BUENA BORO,16,1900,1,RES1,3001 -0104_156_7,-74.3716535,39.4009695,106 BACHE ST,BUENA BORO,16,1945,1,RES1,3001 -0104_157_1,-74.39237834,39.39174746,301 SOUTH EAST BOULEVARD,BUENA BORO,16,1915,1,RES1,3001 -0104_157_10,-74.49538018,39.52417812,110 FORSYTHE STREET,BUENA BORO,16,1945,1,RES1,3001 -0104_157_11,-74.43708709,39.48925205,108 FORSYTHE STREET,BUENA BORO,16,1945,1,RES1,3001 -0104_157_15,-74.6037886,39.37647768,303 SOUTH EAST BOULEVARD,BUENA BORO,16,1915,1,RES1,3001 -0104_157_2,-74.53993001,39.41187236,103 BACHE ST,BUENA BORO,16,1930,1,RES1,3001 -0104_157_3,-74.5793025,39.4298745,105 BACHE ST,BUENA BORO,16,1905,1,RES1,3001 -0104_157_4,-74.808413,39.621165,107 BACHE ST,BUENA BORO,16,1955,1,GOV1,3004 -0104_157_5,-74.50289767,39.33592897,109B BACHE ST,BUENA BORO,16,1950,1,RES1,3001 -0104_157_6,-74.57082832,39.35676648,111 BACHE ST,BUENA BORO,16,1985,1,IND1,3002 -0104_157_7,-74.64476357,39.41161171,300 EAST FLOWER STREET,BUENA BORO,16,1900,1,GOV1,3004 -0104_157_8,-74.36707321,39.40977411,302 EAST FLOWER STREET,BUENA BORO,16,1945,1,RES1,3001 -0104_157_9,-74.62050925,39.42339645,112 FORSYTHE STREET,BUENA BORO,16,1920,1,RES1,3001 -0104_158_1,-74.5767165,39.366531,401 SOUTH EAST BOULEVARD,BUENA BORO,16,1972,1,RES1,3001 -0104_158_11,-74.623755,39.439261,403 SOUTH EAST BOULEVARD,BUENA BORO,,0,1,RES1,3001 -0104_158_2,-74.584522,39.4852675,105 FORSYTHE STREET,BUENA BORO,16,1957,1,RES1,3001 -0104_158_4,-74.97919512,39.51145932,109 FORSYTHE STREET,BUENA BORO,16,1973,1,RES1,3001 -0104_158_5,-74.52519732,39.39310791,111 FORSYTHE STREET,BUENA BORO,,0,1,RES1,3004 -0104_158_6,-74.78536891,39.63332503,113 FORSYTHE STREET,BUENA BORO,15,1920,1,REL1,3004 -0104_158_7.01,-74.57550004,39.34944533,114 SOUTH CLARA STREET,BUENA BORO,16,1940,1,RES1,3001 -0104_158_7.02,-74.627124,39.412537,112 SOUTH CLARA ST,BUENA BORO,16,2001,1,RES1,3001 -0104_158_9,-74.569247,39.3558095,108 SOUTH CLARA ST,BUENA BORO,16,1980,1,RES3A,3001 -0104_159_1,-74.706132,39.584464,101 SOUTH EAST BOULEVARD,BUENA BORO,15,1935,1,RES1,3001 -0104_159_10,-74.865444,39.5656525,210 SUMNER STREET,BUENA BORO,16,1950,1,RES1,3001 -0104_159_11,-74.6403865,39.592411,208 SUMNER STREET,BUENA BORO,16,2007,1,RES1,3001 -0104_159_12,-74.7197805,39.57480211,206 SUMNER STREET,BUENA BORO,16,1966,1,RES1,3001 -0104_159_14,-74.49152,39.333149,107 SOUTH EAST BOULEVARD,BUENA BORO,16,1925,1,RES1,3001 -0104_159_2,-74.88692828,39.47338515,105 SOUTH CLARA ST,BUENA BORO,16,1988,1,RES1,3001 -0104_159_3,-74.59832273,39.49932032,107 SOUTH CLARA ST,BUENA BORO,16,1925,1,RES1,3001 -0104_159_4,-74.63926051,39.38283217,109 SOUTH CLARA ST,BUENA BORO,16,2003,1,RES1,3001 -0104_159_6,-74.78823684,39.61792548,113 SOUTH CLARA ST,BUENA BORO,16,1940,1,RES1,3001 -0104_159_7.01,-74.505038,39.324824,115 SOUTH CLARA STREET,BUENA BORO,16,1940,1,RES1,3001 -0104_159_7.02,-74.64133443,39.43409734,117 S. CLARA STREET,BUENA BORO,16,1910,1,RES1,3001 -0104_159_8,-74.70365005,39.41946519,504 EAST FLOWER STREET,BUENA BORO,16,1945,1,GOV1,3004 -0104_159_9,-74.56581301,39.41451572,214 SUMNER STREET,BUENA BORO,16,1950,1,RES1,3001 -0104_160_1,-74.505893,39.340204,307 WEST FLOWER STREET,BUENA BORO,17,1930,1,RES3A,3001 -0104_160_10,-74.94619174,39.4992331,303 WEST FLOWER STREET,BUENA BORO,17,1950,1,RES1,3001 -0104_160_11,-74.621513,39.431082,305 WEST FLOWER STREET,BUENA BORO,,0,1,RES1,3001 -0104_160_2,-74.44230591,39.35358281,207 SOUTH FRANKLIN STREET,BUENA BORO,17,1950,1,RES1,3001 -0104_160_3,-74.68229268,39.44450234,209 SOUTH FRANKLIN STREET,BUENA BORO,17,1952,1,GOV1,3004 -0104_160_4,-74.65083898,39.52887666,213 S. FRANKLIN ST,BUENA BORO,17,1930,1,RES1,3001 -0104_160_5,-74.62580476,39.42081362,306 WEST DELAWARE AVE,BUENA BORO,17,1975,1,RES1,3001 -0104_160_6,-74.60599442,39.38828078,214 SOUTH NIXON ST.,BUENA BORO,17,1900,1,GOV1,3004 -0104_160_7,-74.638547,39.53581617,208 SOUTH NIXON STREET,BUENA BORO,17,1953,1,RES1,3001 -0104_160_8,-74.56721756,39.47400343,204 SOUTH NIXON STREET,BUENA BORO,17,1955,1,RES1,3001 -0104_160_9,-74.598293,39.4117195,301 WEST FLOWER STREET,BUENA BORO,17,1910,1,RES1,3001 -0104_161_1,-74.648147,39.4322935,205 WEST FLOWER STREET,BUENA BORO,17,1925,1,RES1,3001 -0104_161_2,-74.87278134,39.5930995,207 S. NIXON ST,BUENA BORO,17,1987,1,RES3A,3001 -0104_161_3,-74.512756,39.440969,206 WEST DELAWARE AVENUE,BUENA BORO,17,1953,1,RES1,3001 -0104_161_4,-74.76890493,39.33029232,214 BUENA VISTA AVENUE,BUENA BORO,17,1960,1,RES1,3001 -0104_161_5,-74.78460284,39.67454746,210 BUENA VISTA AVE,BUENA BORO,16,1940,1,GOV1,3004 -0104_161_6,-74.79287301,39.60066066,208 BUENA VISTA AVE,BUENA BORO,17,1965,1,RES1,3001 -0104_161_7,-74.48582817,39.43571549,204 BUENA VISTA AVE,BUENA BORO,17,1912,1,RES1,3001 -0104_161_8,-74.48098383,39.34078138,201 WEST FLOWER STREET,BUENA BORO,17,1941,1,RES1,3001 -0104_161_9,-74.547243,39.4703205,203 WEST FLOWER STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_162_1,-74.5957355,39.382298,201 BUENA VISTA AVE,BUENA BORO,17,1991,1,RES1,3001 -0104_162_11,-74.50023459,39.41386581,208 SOUTH HARDING HIGHWAY,BUENA BORO,17,1900,1,RES1,3001 -0104_162_12,-74.80319429,39.639976,206 SOUTH HARDING HIGHWAY,BUENA BORO,17,1950,1,RES1,3001 -0104_162_2,-74.472926,39.3416605,200 SOUTH HARDING HIGHWAY,BUENA BORO,17,1900,1,GOV1,3004 -0104_162_4,-74.90335565,39.52838852,207 BUENA VISTA AVE,BUENA BORO,17,1920,1,RES1,3001 -0104_162_6,-74.94549804,39.51851717,211 BUENA VISTA AVE,BUENA BORO,17,1960,1,COM1,3004 -0104_162_7,-74.52254011,39.44609608,213 BUENA VISTA AVE,BUENA BORO,17,1960,1,RES1,3001 -0104_162_8,-74.5625835,39.38743323,215 BUENA VISTA AVENUE,BUENA BORO,17,2002,1,RES1,3001 -0104_162_9,-74.83338603,39.62782484,212 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_163_1.01,-74.969622,39.528025,201 SOUTH HARDING HIGHWAY,BUENA BORO,16,1900,1,RES1,3001 -0104_163_3,-74.8744295,39.5929655,203 SOUTH HARDING HIGHWAY,BUENA BORO,16,1937,1,RES1,3001 -0104_163_4,-74.6283565,39.377205,205 SOUTH HARDING HIGHWAY,BUENA BORO,16,1900,1,RES1,3001 -0104_163_5,-74.71212217,39.58407601,209 SOUTH HARDING HIGHWAY,BUENA BORO,16,1947,1,RES3A,3001 -0104_163_6,-74.47429217,39.44555407,211 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_163_7,-74.46581233,39.49692825,102 EAST DELAWARE AVENUE,BUENA BORO,16,1985,1,RES1,3001 -0104_163_7.01,-74.60531415,39.41055445,205 EAST FLOWER STREET,BUENA BORO,17,2008,1,RES1,3001 -0104_163_7.02,-74.5810762,39.35720463,207 EAST FLOWER STREET,BUENA BORO,16,2012,1,RES1,3001 -0104_163_8,-74.50887238,39.33956782,303 EAST FLOWER STREET,BUENA BORO,16,1950,1,RES1,3001 -0104_163_9,-74.5078125,39.4614745,307 EAST FLOWER STREET,BUENA BORO,16,1940,1,RES1,3001 -0104_165_4,-74.80801203,39.6323089,304 SUMNER STREET,BUENA BORO,15,1950,1,RES1,3002 -0104_166_1,-74.895436,39.5404845,305 WEST DELAWARE AVENUE,BUENA BORO,17,1910,1,RES1,3001 -0104_166_10,-74.460197,39.383136,302 SOUTH NIXON STREET,BUENA BORO,,0,1,RES1,3001 -0104_166_4,-74.6381665,39.5349535,309 SOUTH FRANKLIN STREET,BUENA BORO,17,1905,1,RES1,3001 -0104_166_5.01,-74.60633014,39.39064106,314 SOUTH NIXON STREET,BUENA BORO,17,1989,1,RES1,3001 -0104_166_6,-74.76386088,39.6696882,310 SOUTH NIXON STREET,BUENA BORO,17,1975,1,RES1,3001 -0104_166_7,-74.56855699,39.35553046,308 SOUTH NIXON STREET,BUENA BORO,17,1961,1,RES1,3002 -0104_166_9,-74.508861,39.4474565,301 WEST DELAWARE AVENUE,BUENA BORO,17,1910,1,RES1,3001 -0104_167_1,-74.53417223,39.30516619,205 WEST DELAWARE AVENUE,BUENA BORO,17,1975,1,RES1,3001 -0104_167_10,-74.91994461,39.56615517,302 BUENA VISTA AVE,BUENA BORO,17,1970,1,RES1,3001 -0104_167_11,-74.51449518,39.39888358,203 WEST DELAWARE AVENUE,BUENA BORO,17,1966,1,RES1,3002 -0104_167_2,-74.529689,39.473534,305 SOUTH NIXON STREET,BUENA BORO,17,1965,1,RES1,3001 -0104_167_3,-74.79768535,39.62482853,307 SOUTH NIXON STREET,BUENA BORO,16,2003,1,RES1,3001 -0104_167_5,-74.92769314,39.5095754,208 WEST SUMMER ROAD,BUENA BORO,17,1957,1,RES1,3001 -0104_167_7,-74.57277807,39.34521401,308 BUENA VISTA AVE,BUENA BORO,17,1988,1,COM4,3004 -0104_167_8,-74.61081243,39.34796459,306 BUENA VISTA AVE,BUENA BORO,17,1972,1,RES1,3001 -0104_168_1.01,-74.491592,39.433722,107 WEST DELAWARE AVENUE,BUENA BORO,17,2008,1,RES1,3001 -0104_168_1.02,-74.81204307,39.62674019,105 WEST DELAWARE AVENUE,BUENA BORO,17,2000,1,RES1,3001 -0104_168_10,-74.466862,39.344784,100 WEST SUMMER ROAD,BUENA BORO,17,1964,1,RES1,3001 -0104_168_11,-74.67671701,39.55962867,308 SOUTH HARDING HIGHWAY,BUENA BORO,17,1960,1,RES1,3001 -0104_168_13,-74.84537625,39.58810361,306 SOUTH HARDING HIGHWAY,BUENA BORO,17,1925,1,RES1,3001 -0104_168_14,-74.6075543,39.39149584,304 SOUTH HARDING HIGHWAY,BUENA BORO,17,1925,1,RES3A,3001 -0104_168_6,-74.62611333,39.43668735,313 BUENA VISTA AVE,BUENA BORO,17,1954,1,RES3B,3004 -0104_168_7,-74.52012181,39.38957898,110 WEST SUMMER ROAD,BUENA BORO,17,1967,1,RES1,3001 -0104_168_8,-74.367394,39.416837,108 WEST SUMMER ROAD,BUENA BORO,17,2000,1,RES1,3001 -0104_168_9,-74.63551001,39.53296067,106 WEST SUMMER ROAD,BUENA BORO,17,1934,1,RES1,3001 -0104_169_1,-74.37052916,39.40353338,301 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_169_10,-74.9255735,39.5256245,103 EAST DELAWARE AVENUE,BUENA BORO,16,1975,1,RES1,3001 -0104_169_10.01,-74.59068839,39.37023987,109 EAST DELAWARE AVENUE,BUENA BORO,15,1954,1,RES1,3002 -0104_169_10.02,-74.54591966,39.52418818,111 EAST DELAWARE AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_169_2,-74.5399685,39.480085,305 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_169_4,-74.50452166,39.33877043,309 SOUTH HARDING HIGHWAY,BUENA BORO,16,1935,1,RES1,3001 -0104_169_5,-74.55383531,39.36897534,311 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_169_6,-74.502359,39.4312045,313 SOUTH HARDING HIGHWAY,BUENA BORO,16,1895,1,RES1,3001 -0104_169_7,-74.5040421,39.3365261,315 SOUTH HARDING HIGHWAY,BUENA BORO,16,1945,1,RES1,3001 -0104_169_7.01,-74.79174666,39.64115969,317 SOUTH HARDING HIGHWAY,BUENA BORO,16,1930,1,RES1,3001 -0104_169_7.02,-74.40462493,39.38162417,102 EAST SUMMER ROAD,BUENA BORO,15,1930,1,RES1,3001 -0104_169_7.03,-74.42060018,39.37108395,104 EAST SUMMER RD,BUENA BORO,16,2015,1,RES1,3001 -0104_169_8,-74.60495568,39.48965783,110 EAST SUMMER ROAD,BUENA BORO,16,1964,1,RES1,3001 -0104_169_9,-74.64959562,39.523556,306 FORSYTHE STREET,BUENA BORO,15,1930,1,RES1,3001 -0104_170_1,-74.51013912,39.33884318,201 EAST DELAWARE AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_171_1,-74.58672915,39.32941661,416 WHEAT ROAD,BUENA BORO,17,1980,1,RES1,3001 -0104_171_12,-74.619401,39.6018245,409 SOUTH BREWSTER RD,BUENA BORO,17,1915,1,RES1,3001 -0104_171_13,-74.50879,39.329712,407 SOUTH BREWSTER RD,BUENA BORO,17,1969,1,RES3A,3001 -0104_171_14,-74.3872455,39.393797,1079 WEST SUMMER ROAD,BUENA BORO,,0,1,COM1,3004 -0104_171_15,-74.51989916,39.32286347,1071 WEST SUMMER ROAD,BUENA BORO,17,1961,1,RES1,3001 -0104_171_16,-74.5884835,39.325107,1067 WEST SUMMER RD.,BUENA BORO,15,1910,1,RES1,3002 -0104_171_17,-74.6364445,39.3647415,1065 WEST SUMMER ROAD,BUENA BORO,17,1963,1,RES1,3001 -0104_171_17.01,-74.52452082,39.39963547,1061 W. SUMMER ROAD,BUENA BORO,17,1991,1,RES1,3001 -0104_171_17.03,-74.5926195,39.3484205,104 MATTERA DRIVE,BUENA BORO,17,1994,1,RES1,3001 -0104_171_17.04,-74.65134551,39.52996206,102 MATTERA DRIVE,BUENA BORO,17,1993,1,COM1,3004 -0104_171_2,-74.55050386,39.40721728,449 SOUTH BREWSTER RD,BUENA BORO,17,1940,1,RES3A,3001 -0104_171_20,-74.45487309,39.48430007,1059 WEST SUMMER ROAD,BUENA BORO,17,1989,1,RES1,3001 -0104_171_21,-74.5315605,39.460117,1051 W. SUMMER AVE.,BUENA BORO,17,1935,1,RES1,3001 -0104_171_22,-74.942773,39.5192905,1035 WEST SUMMER ROAD,BUENA BORO,17,1957,1,RES1,3001 -0104_171_23,-74.813678,39.644966,1031 WEST SUMMER ROAD,BUENA BORO,17,1966,1,RES3A,3001 -0104_171_23.01,-74.64568,39.549186,1025 WEST SUMMER RD,BUENA BORO,17,1900,1,RES1,3001 -0104_171_24.01,-74.61078109,39.38572229,1019 WEST SUMMER ROAD,BUENA BORO,17,1980,1,RES1,3001 -0104_171_24.02,-74.6467233,39.51045166,1015 WEST SUMMER ROAD,BUENA BORO,17,1935,1,RES1,3001 -0104_171_24.03,-74.8804175,39.604069,1005 WEST SUMMER ROAD,BUENA BORO,17,1981,1,RES3B,3001 -0104_171_24.04,-74.88388442,39.5033007,1017 WEST SUMMER ROAD,BUENA BORO,16,1980,1,RES3A,3001 -0104_171_3,-74.66038189,39.63800789,447 SOUTH BREWSTER RD,BUENA BORO,17,1945,1,COM1,3004 -0104_171_5,-74.62777605,39.34864476,439 SOUTH BREWSTER RD,BUENA BORO,17,1945,1,GOV1,3004 -0104_171_6,-74.54093276,39.39135463,437 SOUTH BREWSTER RD,BUENA BORO,17,2003,1,GOV1,3004 -0104_171_8,-74.56772337,39.35228903,431 SOUTH BREWSTER RD,BUENA BORO,17,1925,1,RES1,3001 -0104_172_1.01,-74.62260093,39.43972597,408 WHEAT RD,BUENA BORO,,0,1,RES1,3002 -0104_172_10,-74.442064,39.3577615,384 WHEAT ROAD,BUENA BORO,15,1930,1,RES1,3001 -0104_172_13,-74.50550802,39.44317467,106 FORNATARO AVENUE,BUENA BORO,16,1955,1,RES1,3001 -0104_172_14,-74.69379,39.5911135,376 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_172_2,-74.5209155,39.509669,404 WHEAT ROAD,BUENA BORO,16,1925,1,RES1,3001 -0104_172_3,-74.5978395,39.405135,402 WHEAT ROAD,BUENA BORO,16,1940,1,RES1,3001 -0104_172_4,-74.37223442,39.40037584,400 WHEAT ROAD,BUENA BORO,16,1915,1,RES1,3001 -0104_172_5,-74.489383,39.3344725,398 WHEAT ROAD,BUENA BORO,16,1935,1,RES1,3001 -0104_172_6,-74.82655134,39.64031802,396 WHEAT ROAD,BUENA BORO,16,2009,1,RES1,3001 -0104_172_7,-74.61748949,39.34976719,394 WHEAT ROAD,BUENA BORO,16,1925,1,RES3A,3001 -0104_172_8,-74.46297652,39.47459485,392 WHEAT ROAD,BUENA BORO,16,1942,1,RES1,3001 -0104_173_1.02,-74.79213459,39.63639728,107 FORNATARO AVENUE,BUENA BORO,17,1992,1,RES1,3001 -0104_173_10,-74.64739221,39.43139736,350 WHEAT ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_173_11,-74.5489735,39.373279,348 WHEAT ROAD,BUENA BORO,17,1953,1,RES1,3001 -0104_173_12,-74.502131,39.4313035,346 WHEAT ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_173_13,-74.52976682,39.38405448,344 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_173_14,-74.43796833,39.367671,342 WHEAT ROAD,BUENA BORO,17,1918,1,RES1,3001 -0104_173_15,-74.51858635,39.32110271,340 WHEAT ROAD,BUENA BORO,17,1940,1,RES1,3001 -0104_173_16.02,-74.81746817,39.62448651,338 WHEAT ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_173_17,-74.52887636,39.46535215,336 WHEAT ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_173_18,-74.70575754,39.4318278,334 WHEAT ROAD,BUENA BORO,17,1945,1,RES1,3001 -0104_173_2,-74.581825,39.4322125,374 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_173_20,-74.72317867,39.57276267,332 WHEAT RD,BUENA BORO,17,1940,1,RES1,3001 -0104_173_21,-74.610384,39.379352,330 WHEAT ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_173_22,-74.9457915,39.5248255,328 WHEAT ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_173_23,-74.60253033,39.32902178,326 WHEAT ROAD,BUENA BORO,17,1940,1,RES1,3001 -0104_173_27,-74.62776117,39.35441801,318 WHEAT ROAD,BUENA BORO,16,1970,1,RES1,3001 -0104_173_3,-74.44583819,39.37129331,372 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_173_30,-74.60719202,39.3931698,310 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_173_34,-74.86303618,39.54479581,306 WHEAT ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_173_37,-74.54499673,39.43640555,300 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_173_39,-74.59563386,39.38153903,298 WHEAT ROAD,BUENA BORO,17,1935,1,RES1,3001 -0104_173_4,-74.76064034,39.64019501,370 WHEAT ROAD,BUENA BORO,17,1942,1,RES1,3001 -0104_173_40.01,-74.63573527,39.52435394,292 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_173_40.02,-74.62294009,39.37536731,296 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_173_41,-74.95840723,39.53331055,290 WHEAT ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_173_42.01,-74.3724563,39.41630977,213 WILLIAMS AVENUE,BUENA BORO,17,1993,1,RES1,3001 -0104_173_43,-74.36652466,39.40813194,286 WHEAT ROAD,BUENA BORO,,0,1,RES1,3002 -0104_173_44,-74.60537996,39.59271869,284 WHEAT ROAD,BUENA BORO,17,1961,1,RES1,3001 -0104_173_5,-74.3822695,39.415926,368 WHEAT ROAD,BUENA BORO,17,1937,1,RES1,3001 -0104_173_6,-74.63942341,39.3904916,366 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_173_7,-74.45963615,39.34897966,356 WHEAT ROAD,BUENA BORO,16,1945,1,RES1,3001 -0104_173_8,-74.58685014,39.3276801,354 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_174_1.01,-74.50440304,39.46474182,914 WEST SUMMER ROAD,BUENA BORO,17,1982,1,RES1,3001 -0104_174_2.01,-74.65177217,39.52242453,100 N. WEST AVE,BUENA BORO,17,1900,1,RES1,3004 -0104_174_3,-74.82725066,39.62690751,104 N. WEST AVENUE,BUENA BORO,17,1946,1,RES1,3001 -0104_175_1,-74.63494818,39.38641894,812 SUMMER RD.,BUENA BORO,17,1953,1,RES1,3001 -0104_175_1.01,-74.382224,39.394817,101 NORTH WEST AVENUE,BUENA BORO,17,2005,1,GOV1,3004 -0104_175_10,-74.80835431,39.38131974,800 SOUTH CENTRAL AVE,BUENA BORO,17,1930,1,GOV1,3004 -0104_175_11,-74.622923,39.6252675,105 WEST ATLANTIC AVE,BUENA BORO,,0,1,RES1,3001 -0104_175_12,-74.5603615,39.414431,109 WEST ATLANTIC AVE,BUENA BORO,15,1963,1,RES1,3001 -0104_175_13,-74.49461556,39.45315896,111 WEST ATLANTIC AVE,BUENA BORO,15,1984,1,RES1,3001 -0104_175_15,-74.62428843,39.6239047,103 N. WEST AVENUE,BUENA BORO,15,1975,1,GOV1,3004 -0104_175_2,-74.5599125,39.41309733,810 WEST SUMMER ROAD,BUENA BORO,17,1958,1,RES1,3001 -0104_175_4,-74.5497325,39.5101745,806 WEST SUMMER ROAD,BUENA BORO,17,1920,1,COM10,3003 -0104_175_5,-74.97032782,39.51169095,804 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_175_9,-74.48417498,39.34707216,802 SOUTH CENTRAL AVE,BUENA BORO,17,1920,1,RES1,3001 -0104_176_1,-74.581235,39.417336,220 WEST PACIFIC AVENUE,BUENA BORO,17,1973,1,COM3,3004 -0104_176_10,-74.64607533,39.37221934,204 WEST PACIFIC AVENUE,BUENA BORO,17,1930,1,RES1,3001 -0104_176_11,-74.914328,39.5326865,202 WEST PACIFIC AVE,BUENA BORO,17,1940,1,RES1,3001 -0104_176_12,-74.5215095,39.398731,200 WEST PACIFIC AVE,BUENA BORO,17,1930,1,RES1,3001 -0104_176_13.01,-74.500456,39.451485,901 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES3A,3001 -0104_176_14.01,-74.4802083,39.34818622,905 WEST SUMMER RD,BUENA BORO,17,2002,1,RES1,3001 -0104_176_15,-74.6769112,39.55955733,907 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_176_16,-74.49904434,39.38255394,911 WEST SUMMER ROAD,BUENA BORO,15,2003,1,RES1,3001 -0104_176_17,-74.695027,39.5930415,913 WEST SUMMER ROAD,BUENA BORO,17,1998,1,RES1,3001 -0104_176_18,-74.6876425,39.4143105,917 WEST SUMMER ROAD,BUENA BORO,17,1992,1,RES1,3001 -0104_176_3,-74.50444334,39.40748315,216 WEST PACIFIC AVENUE,BUENA BORO,17,1973,1,RES3A,3001 -0104_176_4,-74.60948172,39.38546854,214 WEST PACIFIC AVENUE,BUENA BORO,17,1973,1,RES1,3001 -0104_176_5,-74.94649774,39.51194215,212 WEST PACIFIC AVENUE,BUENA BORO,17,1973,1,RES1,3001 -0104_176_6,-74.61850776,39.43130083,919 WEST SUMMER ROAD,BUENA BORO,17,1990,1,RES1,3001 -0104_176_8,-74.59983923,39.38024445,208 WEST PACIFIC AVENUE,BUENA BORO,17,1950,1,RES1,3001 -0104_176_9,-74.50452583,39.40673945,206 WEST PACIFIC AVENUE,BUENA BORO,17,1950,1,RES1,3001 -0104_177_1,-74.554052,39.4756975,114 WEST PACIFIC AVE,BUENA BORO,17,1958,1,RES1,3001 -0104_177_10,-74.9555565,39.5389775,805 SUMMER ROAD,BUENA BORO,17,1920,1,COM3,3004 -0104_177_11,-74.60719685,39.37263953,807 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_177_12,-74.8652,39.4926765,809 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_177_13,-74.50210059,39.33714458,811 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_177_14,-74.55800442,39.40608743,813 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_177_15,-74.92701912,39.5328312,815 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_177_16,-74.52603548,39.38380235,819 WEST SUMMER ROAD,BUENA BORO,17,1920,1,RES3A,3001 -0104_177_2,-74.501246,39.4291825,112 WEST PACIFIC AVENUE,BUENA BORO,17,1950,1,RES1,3001 -0104_177_4,-74.565354,39.413424,106 WEST PACIFIC AVENUE,BUENA BORO,17,1920,1,RES1,3001 -0104_177_5,-74.56629691,39.47987831,104 WEST PACIFIC AVENUE,BUENA BORO,17,1919,1,RES1,3001 -0104_177_6,-74.45324368,39.50212407,906 SOUTH CENTRAL AVENUE,BUENA BORO,17,1930,1,RES1,3001 -0104_177_7,-74.60583778,39.32685236,904 SOUTH CENTRAL AVE,BUENA BORO,17,1930,1,RES1,3001 -0104_177_8,-74.51270869,39.38556253,902 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_177_9,-74.62446262,39.37962622,900 SOUTH CENTRAL AVE,BUENA BORO,17,1935,1,RES1,3001 -0104_178_1.01,-74.5353045,39.3043215,220 WEST ARCTIC AVE,BUENA BORO,16,2004,1,GOV1,3004 -0104_178_10,-74.6479245,39.433821,201 WEST PACIFIC AVE,BUENA BORO,17,1980,1,RES1,3001 -0104_178_11,-74.92086751,39.48938271,207 WEST PACIFIC AVENUE,BUENA BORO,17,1978,1,RES1,3004 -0104_178_12,-74.76527527,39.66504933,209 WEST PACIFIC AVENUE,BUENA BORO,17,1910,1,RES1,3001 -0104_178_13,-74.920052,39.5641505,211 WEST PACIFIC AVENUE,BUENA BORO,17,1910,1,RES1,3001 -0104_178_15,-74.66287751,39.54888067,215 WEST PACIFIC AVENUE,BUENA BORO,17,2004,1,RES1,3002 -0104_178_2,-74.718278,39.5715925,216 WEST ARCTIC AVE,BUENA BORO,17,1965,1,RES1,3001 -0104_178_3,-74.81113726,39.6248558,212 WEST ARCTIC AVE,BUENA BORO,17,1965,1,RES1,3001 -0104_178_4,-74.536333,39.385196,210 WEST ARCTIC AVE,BUENA BORO,17,1970,1,RES1,3001 -0104_178_5.01,-74.62661704,39.41472592,208 WEST ARCTIC AVE,BUENA BORO,17,1993,1,RES1,3001 -0104_178_5.02,-74.7789743,39.62672261,206 WEST ARCTIC AVE,BUENA BORO,17,1985,1,RES1,3001 -0104_178_6,-74.65022786,39.52266012,204 W. ARCTIC AVENUE,BUENA BORO,17,2003,1,GOV1,3004 -0104_178_7,-74.44656725,39.35695319,202 WEST ARCTIC AVENUE,BUENA BORO,17,1935,1,RES1,3001 -0104_178_9,-74.46453096,39.34441032,202 WEST AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_179_1,-74.6270828,39.40868715,114 WEST ARCTIC AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_179_2,-74.60149234,39.48098782,106 WEST ARCTIC AVE,BUENA BORO,17,1930,1,RES1,3001 -0104_179_3,-74.48491711,39.35173505,104 WEST ARCTIC AVE,BUENA BORO,17,1925,1,RES1,3001 -0104_179_4,-74.5329185,39.4017325,1006 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_179_5,-74.53535492,39.53585687,1004 SOUTH CENTRAL AVE,BUENA BORO,17,1950,1,RES1,3001 -0104_179_6,-74.558174,39.3969685,1000 S. CENTRAL AVE,BUENA BORO,17,1910,1,RES1,3001 -0104_179_7,-74.61433969,39.39164302,105 WEST PACIFIC AVENUE,BUENA BORO,17,1930,1,RES1,3001 -0104_179_8,-74.49677516,39.33239901,107 WEST PACIFIC AVENUE,BUENA BORO,17,1930,1,RES1,3001 -0104_180_1.01,-74.49875288,39.46284329,220 JONAS AVENUE,BUENA BORO,17,2004,1,GOV1,3004 -0104_180_1.02,-74.88150433,39.46806782,218 JONAS AVENUE,BUENA BORO,17,1975,1,RES1,3001 -0104_180_10,-74.5284165,39.387092,211 WEST ARCTIC AVE,BUENA BORO,17,1966,1,RES1,3001 -0104_180_2,-74.49801037,39.33424336,216 JONAS AVENUE,BUENA BORO,17,1969,1,RES1,3001 -0104_180_3,-74.500206,39.5007055,212 JONAS AVE,BUENA BORO,17,1974,1,RES1,3001 -0104_180_4.01,-74.47927617,39.34657998,210 JONAS AVENUE,BUENA BORO,17,1977,1,RES1,3001 -0104_180_6,-74.76383147,39.60993268,302 WEST AVENUE,BUENA BORO,17,1948,1,RES1,3001 -0104_180_7,-74.49250404,39.43108567,201 WEST ARCTIC AVE,BUENA BORO,17,1961,1,RES1,3001 -0104_180_8,-74.81065771,39.63714331,205 WEST ARCTIC AVE,BUENA BORO,17,1964,1,RES1,3001 -0104_180_9,-74.50620797,39.4633493,207 WEST ARCTIC AVE,BUENA BORO,17,1962,1,RES1,3001 -0104_181_1,-74.460018,39.35003,309 S. WEST AVENUE,BUENA BORO,16,1930,1,COM4,3004 -0104_181_10,-74.81781065,39.6493792,1106 SOUTH CENTRAL AVE,BUENA BORO,17,1947,1,RES1,3001 -0104_181_12,-74.630529,39.4312955,1100 SOUTH CENTRAL AVE,BUENA BORO,17,1947,1,RES1,3001 -0104_181_13,-74.87833468,39.47525151,103 WEST ARCTIC AVE,BUENA BORO,17,1946,1,RES1,3001 -0104_181_14,-74.605257,39.516322,105 WEST ARCTIC AVE,BUENA BORO,17,1950,1,GOV1,3004 -0104_181_15,-74.62845843,39.43262073,107 WEST ARCTIC AVE,BUENA BORO,17,1947,1,RES1,3001 -0104_181_16,-74.734587,39.4339805,109 WEST ARCTIC AVE,BUENA BORO,17,1947,1,RES1,3001 -0104_181_17,-74.50150802,39.40915179,111 WEST ARCTIC AVE,BUENA BORO,17,1947,1,GOV1,3004 -0104_181_18,-74.500314,39.412845,113 WEST ARCTIC AVE,BUENA BORO,17,1947,1,GOV1,3004 -0104_181_19,-74.88710579,39.52631787,115 WEST ARCTIC AVE,BUENA BORO,17,1930,1,RES1,3001 -0104_181_2,-74.62289297,39.33796234,307 SOUTH WEST AVENUE,BUENA BORO,17,1930,1,RES1,3001 -0104_181_20,-74.631798,39.4461335,301 S. WEST AVENUE,BUENA BORO,17,1930,1,COM1,3004 -0104_181_3,-74.45516378,39.37900439,112 JONAS AVENUE,BUENA BORO,17,1947,1,GOV1,3004 -0104_181_4,-74.59567046,39.47468769,110 JONAS AVENUE,BUENA BORO,17,1947,1,RES1,3004 -0104_181_5,-74.695508,39.634071,108 JONAS AVENUE,BUENA BORO,17,1947,1,RES1,3001 -0104_181_6,-74.45003675,39.372102,106 JONAS AVENUE,BUENA BORO,17,1947,1,RES1,3001 -0104_181_7,-74.5216335,39.398345,104 JONAS AVENUE,BUENA BORO,17,1947,1,RES1,3001 -0104_181_8,-74.5313835,39.4020045,102 JONAS AVENUE,BUENA BORO,17,1947,1,RES1,3001 -0104_181_9,-74.86051043,39.5948978,1108 SOUTH CENTRAL AVE,BUENA BORO,17,1947,1,RES1,3001 -0104_182_1,-74.51869153,39.43573873,221 JONAS AVENUE,BUENA BORO,17,1970,1,RES1,3001 -0104_182_2,-74.63542927,39.42897931,219 JONAS AVENUE,BUENA BORO,17,1970,1,RES1,3001 -0104_182_3,-74.80748365,39.63847855,217 JONAS AVENUE,BUENA BORO,17,1971,1,RES3A,3004 -0104_182_4,-74.516595,39.403093,215 JONAS AVENUE,BUENA BORO,16,2002,1,RES1,3001 -0104_182_5,-74.61645714,39.4241443,213 JONAS AVENUE,BUENA BORO,17,1970,1,RES1,3001 -0104_183_1,-74.52450726,39.4680439,104 WILLIAMS AVENUE,BUENA BORO,16,2002,1,RES1,3001 -0104_183_1.01,-74.61493102,39.38067581,106 WILLIAMS AVENUE,BUENA BORO,17,2003,1,RES1,3001 -0104_183_1.02,-74.6404695,39.3713275,108 WILLIAMS AVENUE,BUENA BORO,16,2001,1,RES1,3001 -0104_183_1.03,-74.6010678,39.41893696,110 WILLIAMS AVENUE,BUENA BORO,17,2001,1,COM4,3004 -0104_183_1.04,-74.88266838,39.50451872,112 WILLIAMS AVENUE,BUENA BORO,17,2001,1,RES1,3001 -0104_183_1.05,-74.58797075,39.42905146,407 WEST AVENUE,BUENA BORO,17,2001,1,COM4,3004 -0104_183_2,-74.72955249,39.58867274,1206 SOUTH CENTRAL AVE,BUENA BORO,17,1930,1,RES1,3002 -0104_183_3,-74.7867835,39.6193545,1204 SOUTH CENTRAL AVE,BUENA BORO,15,1930,2,RES1,3001 -0104_183_3.01,-74.6306842,39.48087433,1200 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_183_4,-74.57973216,39.33372849,105 JONAS AVENUE,BUENA BORO,17,1947,1,RES1,3001 -0104_183_5.01,-74.87949896,39.59352114,109 JONAS AVE,BUENA BORO,17,2008,1,RES3A,3001 -0104_183_7,-74.59231663,39.32013062,113 JONAS AVENUE,BUENA BORO,17,1930,1,RES1,3001 -0104_183_8,-74.6021545,39.324886,401 WEST AVENUE,BUENA BORO,17,1979,1,RES1,3001 -0104_184_1,-74.62554729,39.46448891,210 COARI AVE,BUENA BORO,17,1960,1,RES1,3001 -0104_184_2,-74.632002,39.366251,206 COARI AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_184_3,-74.54030201,39.45925363,504 WEST AVENUE,BUENA BORO,,0,1,GOV1,3004 -0104_184_4,-74.89392383,39.48057817,205 WILLIAMS AVENUE,BUENA BORO,17,1965,1,GOV1,3004 -0104_184_5,-74.58959939,39.42082275,209 WILLIAMS AVENUE,BUENA BORO,17,1965,1,RES1,3001 -0104_185_1,-74.47365982,39.48734693,505 WEST AVENUE,BUENA BORO,17,1947,1,RES1,3001 -0104_185_10,-74.57164763,39.33544313,105 WILLIAMS AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_185_11,-74.8147625,39.531871,107 WILLIAMS AVENUE,BUENA BORO,17,1947,1,RES1,3001 -0104_185_12,-74.80329043,39.6408656,109 WILLIAMS AVENUE,BUENA BORO,16,1966,1,RES1,3001 -0104_185_13,-74.58350046,39.37747976,111 WILLIAMS AVE.,BUENA BORO,17,1954,1,RES1,3001 -0104_185_14,-74.51191948,39.40649717,113 WILLIAMS AVE.,BUENA BORO,17,1955,1,RES1,3001 -0104_185_15,-74.5234005,39.3208345,501 WEST AVENUE,BUENA BORO,17,1964,1,RES1,3001 -0104_185_16,-74.91869555,39.51590973,503 WEST AVENUE,BUENA BORO,17,1949,1,AGR1,3001 -0104_185_2,-74.50739249,39.40625484,110 COARI AVE,BUENA BORO,17,1960,1,RES1,3001 -0104_185_3,-74.4835705,39.3410135,108 COARI AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_185_4,-74.60426129,39.40939916,106 COARI AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_185_5,-74.8667785,39.593676,104 COARI AVE,BUENA BORO,17,1952,1,RES1,3001 -0104_185_6,-74.53670822,39.40636148,1306 SOUTH CENTRAL AVE,BUENA BORO,17,1932,1,RES1,3001 -0104_185_7,-74.37999317,39.41626983,1304 SOUTH CENTRAL AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_185_8,-74.61983926,39.50991819,1302 SOUTH CENTRAL AVE,BUENA BORO,17,1950,1,RES1,3004 -0104_185_9,-74.5308995,39.40178,1300 SOUTH CENTRAL AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_186_1,-74.61055826,39.49051289,214 SOUTH AVENUE,BUENA BORO,17,1975,1,IND2,3002 -0104_186_10,-74.58961059,39.4305577,207 COARI AVE,BUENA BORO,17,1965,1,RES1,3001 -0104_186_11,-74.57689776,39.35000573,209 COARI AVE,BUENA BORO,17,1965,1,RES1,3001 -0104_186_2,-74.60320215,39.38491843,212 SOUTH AVENUE,BUENA BORO,17,1975,1,RES1,3001 -0104_186_4.01,-74.6178298,39.43010937,208 SOUTH AVENUE,BUENA BORO,17,1950,1,RES1,3001 -0104_186_4.02,-74.51334894,39.43809991,206 SOUTH AVENUE,BUENA BORO,17,1950,1,RES1,3001 -0104_186_5,-74.49811961,39.33276016,204 SOUTH AVENUE,BUENA BORO,17,1964,1,RES1,3001 -0104_186_6.01,-74.50806434,39.40484025,604 WEST AVE,BUENA BORO,17,1985,1,RES1,3001 -0104_186_7,-74.389006,39.392745,602 WEST AVE,BUENA BORO,17,1962,1,RES1,3001 -0104_186_8,-74.51998433,39.4137696,201 COARI AVE,BUENA BORO,17,1959,1,RES1,3001 -0104_186_9,-74.51085473,39.44332991,205 COARI AVE,BUENA BORO,17,1960,1,RES1,3001 -0104_187_1,-74.950148,39.5193165,607 WEST AVE,BUENA BORO,17,1951,1,RES1,3001 -0104_187_10,-74.50868701,39.40457428,601 WEST AVENUE,BUENA BORO,17,1952,1,RES1,3001 -0104_187_11,-74.5186265,39.394992,605 WEST AVENUE,BUENA BORO,17,1953,1,RES1,3001 -0104_187_2,-74.63082134,39.4334104,112 SOUTH AVENUE,BUENA BORO,17,1948,1,RES1,3001 -0104_187_3,-74.60216658,39.32796631,110 SOUTH AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_187_4,-74.602155,39.500149,108 SOUTH AVENUE,BUENA BORO,17,1955,1,GOV1,3004 -0104_187_5.01,-74.5284895,39.382805,104 SOUTH AVENUE,BUENA BORO,17,1960,1,RES1,3001 -0104_187_5.02,-74.61261348,39.48978984,106 SOUTH AVENUE,BUENA BORO,17,1988,1,RES1,3001 -0104_187_6,-74.7734853,39.61577844,1406 SOUTH CENTRAL AVE,BUENA BORO,16,1952,1,RES1,3001 -0104_187_7,-74.54819359,39.47322229,1400 SOUTH CENTRAL AVE,BUENA BORO,17,1900,1,GOV1,3004 -0104_187_8.01,-74.60603547,39.33045427,107 COARI AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_187_8.02,-74.59555651,39.37293735,105 COARI AVENUE,BUENA BORO,17,1974,1,RES1,3001 -0104_187_9,-74.54815806,39.50527624,109 COARI AVENUE,BUENA BORO,17,1955,1,GOV1,3004 -0104_188_1,-74.5064075,39.3282395,282 WHEAT ROAD,BUENA BORO,17,1930,1,RES1,3001 -0104_188_11,-74.36866871,39.40918803,211 SOUTH AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_188_2,-74.9354535,39.4815405,280 WHEAT ROAD,BUENA BORO,17,1959,1,GOV1,3004 -0104_188_3,-74.7111235,39.5720705,278 WHEAT ROAD,BUENA BORO,17,1958,1,GOV1,3004 -0104_188_4,-74.63391357,39.31912968,276 WHEAT ROAD,BUENA BORO,17,1958,1,GOV1,3004 -0104_188_5,-74.59025746,39.43089253,274 WHEAT ROAD,BUENA BORO,17,1958,1,GOV1,3004 -0104_188_6,-74.8834105,39.5967035,272 WHEAT ROAD,BUENA BORO,17,1936,1,GOV1,3004 -0104_188_7,-74.372831,39.415602,700 WEST AVENUE,BUENA BORO,17,1959,1,GOV1,3004 -0104_188_8,-74.54600133,39.39002283,205 SOUTH AVENUE,BUENA BORO,17,1960,1,RES3A,3001 -0104_188_9,-74.638446,39.381025,207 SOUTH AVENUE,BUENA BORO,17,1958,1,RES1,3001 -0104_189_1,-74.940545,39.5221815,270 WHEAT ROAD,BUENA BORO,17,1945,1,RES1,3001 -0104_189_2,-74.60003288,39.38297949,701 WEST AVE,BUENA BORO,17,1952,1,RES1,3001 -0104_189_3,-74.44249876,39.35540063,268 WHEAT ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_189_3.01,-74.569383,39.4790845,266 WHEAT ROAD,BUENA BORO,17,1992,1,RES1,3001 -0104_189_4,-74.7905835,39.6667825,111 SOUTH AVENUE,BUENA BORO,,0,1,EDU1,3004 -0104_189_5,-74.749115,39.3986815,264 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_189_6,-74.70231645,39.42338475,1504 SOUTH CENTRAL AVE.,BUENA BORO,,0,1,RES1,3001 -0104_189_8,-74.87190901,39.57343959,1500 SOUTH CENTRAL AVE,BUENA BORO,16,1910,1,RES1,3001 -0104_190_1,-74.9450795,39.5323155,801 SOUTH CENTRAL AVE,BUENA BORO,,0,1,GOV1,3004 -0104_190_11,-74.8301872,39.49818248,807 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_190_12,-74.6277892,39.43538237,714 WEST SUMMER ROAD,BUENA BORO,,0,1,GOV1,3004 -0104_190_13,-74.917716,39.481691,712 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_190_14,-74.5650715,39.4119255,710 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_190_15,-74.88560816,39.55659306,708 WEST SUMMER ROAD,BUENA BORO,17,1947,1,RES3A,3001 -0104_190_16,-74.85431,39.4733565,706 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_190_17,-74.6915968,39.41351313,704 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_190_18,-74.558005,39.4730445,702 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_190_19,-74.61051686,39.32248885,700 WEST SUMMER ROAD,BUENA BORO,16,1900,1,RES1,3001 -0104_190_2,-74.75460609,39.30094519,803 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_190_4,-74.61385769,39.42511004,103 EAST ATLANTIC AVE,BUENA BORO,17,1900,1,RES1,3001 -0104_190_5,-74.69537233,39.47688251,105 EAST ATLANTIC AVE,BUENA BORO,17,1900,1,GOV1,3004 -0104_190_6,-74.55199078,39.39153852,107 EAST ATLANTIC AVE,BUENA BORO,17,1910,1,GOV1,3004 -0104_190_7,-74.52772615,39.38337443,109 EAST ATLANTIC AVE,BUENA BORO,17,1910,1,RES1,3001 -0104_190_8,-74.55659324,39.47429461,113 EAST ATLANTIC AVE,BUENA BORO,17,1900,1,GOV1,3004 -0104_190_9,-74.87313879,39.54006596,115 EAST ATLANTIC AVE,BUENA BORO,17,1900,1,RES1,3001 -0104_191_1,-74.55301957,39.47753728,901 SOUTH CENTRAL AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_191_11,-74.88467672,39.59853202,905 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_191_12,-74.470177,39.491887,104 EAST PACIFIC AVENUE,BUENA BORO,17,1925,1,RES1,3001 -0104_191_14,-74.6128315,39.321084,108 EAST PACIFIC AVENUE,BUENA BORO,17,1910,1,RES1,3001 -0104_191_15,-74.46476199,39.35722284,110 EAST PACIFIC AVENUE,BUENA BORO,17,1900,1,RES1,3001 -0104_191_16,-74.5662335,39.365691,112 EAST PACIFIC AVENUE,BUENA BORO,17,1940,1,RES1,3004 -0104_191_17,-74.57163561,39.4135818,104 CASS AVENUE,BUENA BORO,17,1940,1,RES1,3001 -0104_191_2,-74.62815668,39.41229182,903 SOUTH CENTRAL AVE,BUENA BORO,17,1920,1,RES1,3001 -0104_191_3,-74.841594,39.5996665,715 WEST SUMMER ROAD,BUENA BORO,,0,1,RES1,3001 -0104_191_4,-74.59574826,39.34728454,713 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_191_5,-74.59356027,39.4334281,711 WEST SUMMER ROAD,BUENA BORO,17,1900,1,GOV1,3004 -0104_191_6,-74.49906067,39.33646947,709 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_191_7,-74.7750775,39.6471825,707 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_191_8,-74.5569495,39.3978625,705 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_191_9,-74.38038733,39.41550528,703 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_192_1,-74.6487055,39.5388005,613 WEST SUMMER ROAD,BUENA BORO,17,2009,1,RES1,3001 -0104_192_2,-74.80639234,39.60108048,611 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_192_3,-74.57469042,39.48057338,609 WEST SUMMER ROAD,BUENA BORO,17,1890,1,RES1,3001 -0104_192_4,-74.48675673,39.35074812,200 EAST PACIFIC AVENUE,BUENA BORO,17,1900,1,RES1,3001 -0104_192_5,-74.50280643,39.33843486,202 EAST PACIFIC AVENUE,BUENA BORO,17,1900,1,RES1,3001 -0104_192_6,-74.55073528,39.40271246,204 EAST PACIFIC AVENUE,BUENA BORO,17,1905,1,RES1,3001 -0104_192_7,-74.466915,39.4976295,605 WEST SUMMER ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_192_8,-74.81080164,39.63246257,601 WEST SUMMER ROAD,BUENA BORO,17,1961,1,RES1,3001 -0104_192_9,-74.6046661,39.50269012,212 EAST PACIFIC AVENUE,BUENA BORO,17,1961,1,RES1,3001 -0104_193_1,-74.83681145,39.4698892,1001 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_193_10,-74.625657,39.609547,115A EAST PACIFIC AVENUE,BUENA BORO,17,2004,1,RES1,3001 -0104_193_10.01,-74.45439724,39.48968395,115B EAST PACIFIC AVENUE,BUENA BORO,17,1950,1,GOV1,3004 -0104_193_11,-74.88319382,39.54229641,113 EAST PACIFIC AVENUE,BUENA BORO,17,1900,1,GOV1,3004 -0104_193_12,-74.72098449,39.639567,111 EAST PACIFIC AVENUE,BUENA BORO,17,1900,1,RES1,3001 -0104_193_13,-74.362586,39.417677,109 EAST PACIFIC AVENUE,BUENA BORO,16,1900,1,GOV1,3004 -0104_193_14,-74.591442,39.3488565,107 EAST PACIFIC AVENUE,BUENA BORO,16,1900,1,RES1,3001 -0104_193_15,-74.58954947,39.32321418,105 EAST PACIFIC AVENUE,BUENA BORO,16,1900,1,RES1,3001 -0104_193_2,-74.74321743,39.64355364,1003 SOUTH CENTRAL AVE,BUENA BORO,17,1900,1,RES1,3001 -0104_193_3,-74.81342494,39.62100116,1005B SOUTH CENTRAL AVE.,BUENA BORO,,0,1,GOV1,3004 -0104_193_3.01,-74.54474154,39.36425531,1005A SOUTH CENTRAL AVE.,BUENA BORO,17,1925,1,RES1,3001 -0104_193_4,-74.56445123,39.44413314,1007 SOUTH CENTRAL AVE,BUENA BORO,17,1900,1,GOV1,3004 -0104_193_5,-74.80171145,39.65745304,104 EAST ARCTIC AVE,BUENA BORO,17,1900,1,RES1,3001 -0104_193_6,-74.66730721,39.36016058,106 EAST ARCTIC AVE,BUENA BORO,17,1905,1,RES1,3001 -0104_193_7,-74.55331429,39.52541756,108 EAST ARCTIC AVE,BUENA BORO,17,1900,1,GOV1,3004 -0104_193_8,-74.6360217,39.34837354,110 EAST ARCTIC AVE,BUENA BORO,17,1950,1,RES1,3001 -0104_193_9,-74.798741,39.6338305,114 EAST ARCTIC AVE,BUENA BORO,17,1930,1,RES1,3001 -0104_194_1,-74.57712732,39.35008946,201 EAST PACIFIC AVENUE,BUENA BORO,17,1920,1,RES1,3001 -0104_194_2,-74.63632832,39.3611091,203 EAST PACIFIC AVENUE,BUENA BORO,17,1900,1,RES1,3001 -0104_194_3,-74.55404905,39.39407139,205 EAST PACIFIC AVENUE,BUENA BORO,17,1921,1,RES1,3001 -0104_194_4,-74.63620632,39.38180707,207 EAST PACIFIC AVENUE,BUENA BORO,17,1958,1,RES1,3001 -0104_194_5,-74.87975245,39.44906917,211 E. PACIFIC AVE.,BUENA BORO,16,1995,1,RES1,3001 -0104_194_5.01,-74.59012191,39.33554093,204 COLUMBIA AVENUE,BUENA BORO,17,1994,1,RES1,3001 -0104_195_1,-74.9559,39.512277,1101 SOUTH CENTRAL AVE,BUENA BORO,16,1900,1,RES1,3001 -0104_195_10,-74.64474266,39.52907298,117 EAST ARCTIC AVE,BUENA BORO,17,1930,1,RES1,3001 -0104_195_11,-74.64405942,39.36250971,115 EAST ARCTIC AVE,BUENA BORO,17,1950,1,RES1,3001 -0104_195_13,-74.6302955,39.407912,111 EAST ARCTIC AVE,BUENA BORO,15,1900,1,GOV1,3004 -0104_195_15,-74.80616267,39.63486454,107 EAST ARCTIC AVE,BUENA BORO,17,1900,1,GOV1,3004 -0104_195_16,-74.484937,39.3491535,105 EAST ARCTIC AVE,BUENA BORO,17,1900,1,RES1,3001 -0104_195_2,-74.72714906,39.59139375,1103 SOUTH CENTRAL AVE,BUENA BORO,17,1910,1,GOV1,3004 -0104_195_3,-74.493687,39.525637,1105 SOUTH CENTRAL AVE,BUENA BORO,15,1955,1,RES1,3001 -0104_195_4,-74.50638717,39.43715696,1107 SOUTH CENTRAL AVE,BUENA BORO,17,1940,1,RES1,3001 -0104_195_5,-74.53643606,39.38753459,1109 SOUTH CENTRAL AVE,BUENA BORO,17,1900,1,GOV1,3004 -0104_195_6,-74.87238442,39.59282373,104 MARTINELLI AVENUE,BUENA BORO,17,1950,1,GOV1,3004 -0104_195_7,-74.593474,39.4286745,108 MARTINELLI AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_195_9,-74.6670135,39.357481,119 EAST ARCTIC AVE,BUENA BORO,17,1950,1,RES1,3001 -0104_197_1,-74.797165,39.6309285,521 WEST SUMMER ROAD,BUENA BORO,17,1960,1,RES1,3001 -0104_197_10,-74.65159551,39.39688561,308 EAST PACIFIC AVENUE,BUENA BORO,17,1970,1,GOV1,3004 -0104_197_12,-74.61406901,39.4358547,507 WEST SUMMER ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_197_13,-74.5987107,39.42966154,505 WEST SUMMER ROAD,BUENA BORO,17,1968,1,GOV1,3004 -0104_197_14,-74.68252152,39.55776066,503 WEST SUMMER ROAD,BUENA BORO,16,1963,1,RES1,3001 -0104_197_15,-74.49811776,39.44466303,100 MUCCIO DRIVE,BUENA BORO,17,1975,1,RES1,3001 -0104_197_17,-74.642551,39.527862,102 OTT DRIVE,BUENA BORO,17,1985,1,RES1,3001 -0104_197_2,-74.5134371,39.44148537,517 WEST SUMMER ROAD,BUENA BORO,17,1962,1,GOV1,3004 -0104_197_27,-74.55764979,39.47424792,316 OTT DRIVE,BUENA BORO,17,1991,1,GOV1,3004 -0104_197_28,-74.59840016,39.37095998,314 MARTINELLI AVENUE,BUENA BORO,17,1988,1,RES1,3001 -0104_197_3,-74.53640733,39.41186588,515 WEST SUMMER ROAD,BUENA BORO,17,1966,1,RES1,3001 -0104_197_38,-74.80733708,39.62252438,303 EAST PACIFIC AVENUE,BUENA BORO,17,1972,1,GOV1,3004 -0104_197_39,-74.517086,39.407159,305 E. PACIFIC AVE.,BUENA BORO,17,1968,1,RES1,3001 -0104_197_4,-74.55491991,39.46549684,513 WEST SUMMER ROAD,BUENA BORO,17,1966,1,RES1,3001 -0104_197_40,-74.4466585,39.374106,309 EAST PACIFIC AVENUE,BUENA BORO,17,1967,1,RES1,3001 -0104_197_5,-74.5321975,39.3894245,511 WEST SUMMER ROAD,BUENA BORO,17,1975,1,RES1,3001 -0104_197_6,-74.51251115,39.33900478,300 EAST PACIFIC AVENUE,BUENA BORO,17,1963,1,RES1,3001 -0104_197_7,-74.9676665,39.504642,302 EAST PACIFIC AVENUE,BUENA BORO,17,1983,1,RES1,3001 -0104_197_8,-74.64603115,39.53372497,304 EAST PACIFIC AVENUE,BUENA BORO,17,1985,1,RES1,3001 -0104_197_9,-74.452637,39.4982665,306 EAST PACIFIC AVENUE,BUENA BORO,17,1970,1,RES1,3001 -0104_198_1,-74.59290238,39.31741085,101 OTT DRIVE,BUENA BORO,16,1978,1,RES1,3001 -0104_198_12,-74.70693002,39.50093567,216 MUCCIO DRIVE,BUENA BORO,16,1986,1,RES1,3001 -0104_198_13,-74.64852499,39.35779976,214 MUCCIO DRIVE,BUENA BORO,16,1986,1,RES1,3001 -0104_198_14,-74.81156501,39.64353037,212 MUCCIO DRIVE,BUENA BORO,16,2006,1,RES1,3001 -0104_198_15,-74.4821235,39.3413665,210 MUCCIO DRIVE,BUENA BORO,16,2005,1,RES1,3001 -0104_198_16,-74.61822515,39.56197721,208 MUCCIO DRIVE,BUENA BORO,16,2003,1,RES1,3001 -0104_198_17,-74.5867935,39.4113595,206 MUCCIO DRIVE,BUENA BORO,16,1988,1,RES1,3001 -0104_199_1,-74.5564575,39.4727005,201 MUCCIO DRIVE,BUENA BORO,16,1979,1,RES1,3001 -0104_199_10,-74.80063799,39.63159983,219 MUCCIO DRIVE,BUENA BORO,16,1986,1,RES1,3004 -0104_199_15,-74.60636061,39.40917275,510 MARTINELLI AVENUE,BUENA BORO,16,1978,1,GOV1,3004 -0104_199_2,-74.57451341,39.39069371,203 MUCCIO DRIVE,BUENA BORO,16,1980,1,GOV1,3004 -0104_199_20,-74.5280245,39.393245,520 MARTINELLI AVE,BUENA BORO,16,1979,1,RES1,3001 -0104_199_21,-74.6261835,39.353302,522 MARTINELLI AVENUE,BUENA BORO,16,1979,1,RES1,3001 -0104_199_22,-74.554429,39.425354,526 MARTINELLI AVENUE,BUENA BORO,16,1980,1,RES1,3001 -0104_199_3,-74.876057,39.4865385,205 MUCCIO DRIVE,BUENA BORO,16,1979,1,RES1,3001 -0104_199_4,-74.8376145,39.485107,207 MUCCIO DRIVE,BUENA BORO,16,1980,1,RES1,3001 -0104_199_5,-74.50214785,39.33304347,209 MUCCIO DRIVE,BUENA BORO,16,1991,1,RES1,3001 -0104_199_6,-74.65057486,39.45494892,211 MUCCIO DRIVE,BUENA BORO,17,2007,1,RES1,3001 -0104_199_7,-74.362802,39.418535,213 MUCCIO DRIVE,BUENA BORO,16,1986,1,RES1,3001 -0104_199_8,-74.6787775,39.355746,215 MUCCIO DRIVE,BUENA BORO,16,1986,1,RES1,3001 -0104_199_9,-74.451394,39.4963415,217 MUCCIO DRIVE,BUENA BORO,16,1986,1,GOV1,3004 -0104_200_1,-74.5007075,39.4258435,1201 SOUTH CENTRAL AVE,BUENA BORO,16,1880,1,RES1,3001 -0104_200_20,-74.8000206,39.64158911,313 MARTINELLI AVENUE,BUENA BORO,16,1988,1,GOV1,3004 -0104_200_21,-74.9147095,39.4812045,315 MARTINELLI AVE,BUENA BORO,16,1988,1,RES1,3001 -0104_200_22,-74.7417845,39.391775,317 MARTINELLI AVE,BUENA BORO,16,1989,1,RES1,3001 -0104_200_23,-74.86039152,39.55294986,319 MARTINELLI AVENUE,BUENA BORO,16,1981,1,GOV1,3004 -0104_200_24,-74.50023866,39.33496901,401 MARTINELLI AVENUE,BUENA BORO,16,1982,1,RES1,3001 -0104_200_29,-74.963826,39.5192915,505 MARTINELLI AVENUE,BUENA BORO,16,1982,1,GOV1,3004 -0104_200_30,-74.884285,39.5928685,507 MARTINELLI AVENUE,BUENA BORO,16,1983,1,RES1,3001 -0104_200_32,-74.48008938,39.34586232,511 MARTINELLI AVENUE,BUENA BORO,16,1982,1,RES1,3001 -0104_200_38,-74.5120763,39.33833453,523 MARTINELLI AVENUE,BUENA BORO,16,1979,1,RES1,3001 -0104_200_39,-74.5819545,39.3631125,525 MARTINELLI AVENUE,BUENA BORO,16,1979,1,GOV1,3004 -0104_200_40,-74.7887635,39.641143,527 MARTINELLI AVENUE,BUENA BORO,16,1979,1,RES1,3001 -0104_200_41,-74.60831386,39.38919349,529 MARTINELLI AVENUE,BUENA BORO,16,1979,1,RES1,3001 -0104_200_42,-74.54282771,39.47341766,531 MARTINELLI AVENUE,BUENA BORO,16,1979,1,RES1,3001 -0104_201_10,-74.453089,39.375834,1501 SOUTH CENTRAL AVE,BUENA BORO,,0,1,RES1,3001 -0104_201_11,-74.54756572,39.4668871,1305 SOUTH CENTRAL AVE,BUENA BORO,17,1940,1,RES1,3001 -0104_201_12,-74.38479974,39.39272231,1303 SOUTH CENTRAL AVE,BUENA BORO,17,1925,1,RES1,3001 -0104_201_13,-74.60439493,39.48580295,1301 SOUTH CENTRAL AVE,BUENA BORO,17,1900,1,RES1,3001 -0104_201_16,-74.50131326,39.46951857,210 WHEAT ROAD,BUENA BORO,17,1910,1,RES1,3001 -0104_201_16.01,-74.8189644,39.37155028,208 WHEAT RD,BUENA BORO,17,2002,1,RES1,3001 -0104_201_18,-74.8252306,39.48494547,204 WHEAT ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_201_19.01,-74.56844523,39.34178078,202 WHEAT ROAD,BUENA BORO,17,1903,1,RES1,3001 -0104_201_2,-74.63025195,39.42090411,246 WHEAT ROAD,BUENA BORO,17,1965,1,RES1,3001 -0104_201_21,-74.91704,39.5167,194 WHEAT ROAD,BUENA BORO,17,1945,1,RES1,3001 -0104_201_23,-74.62336622,39.41960409,186 WHEAT ROAD,BUENA BORO,16,1948,1,RES1,3001 -0104_201_25,-74.48628288,39.43875278,178 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_201_26,-74.47413516,39.48084256,174 WHEAT ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_201_29,-74.4770167,39.33967715,156 WHEAT ROAD,BUENA BORO,17,1845,1,RES1,3001 -0104_201_3,-74.82453077,39.62597068,242 WHEAT ROAD,BUENA BORO,17,1951,1,RES1,3001 -0104_201_30,-74.59304967,39.32375588,154 WHEAT ROAD,BUENA BORO,17,1949,1,RES1,3001 -0104_201_31,-74.609389,39.3496345,134 WHEAT RD,BUENA BORO,17,1930,1,RES1,3001 -0104_201_33,-74.49620612,39.3333789,126 WHEAT ROAD,BUENA BORO,17,1910,1,RES1,3001 -0104_201_36,-74.92364446,39.52246031,736 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_201_37,-74.516551,39.4643185,732 SOUTH HARDING HIGHWAY,BUENA BORO,17,1925,1,GOV1,3004 -0104_201_38,-74.550735,39.4633385,722 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_201_39,-74.53904245,39.39011519,714 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_201_4,-74.54022881,39.44214007,240 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_201_40,-74.60570909,39.4394628,704 SOUTH HARDING HIGHWAY,BUENA BORO,17,1928,1,RES1,3001 -0104_201_41,-74.57576579,39.41175653,606 SOUTH HARDING HIGHWAY,BUENA BORO,17,1920,1,RES1,3001 -0104_201_42,-74.44467714,39.48611596,600 SOUTH HARDING HIGHWAY,BUENA BORO,17,1935,1,RES1,3001 -0104_201_43,-74.90478027,39.48719798,506 SOUTH HARDING HIGHWAY,BUENA BORO,17,1930,1,RES1,3001 -0104_201_46,-74.59563243,39.31012466,414 SOUTH HARDING HIGHWAY,BUENA BORO,17,1950,1,RES1,3001 -0104_201_47,-74.5463525,39.398909,412 SOUTH HARDING HIGHWAY,BUENA BORO,17,1955,1,RES1,3001 -0104_201_48.06,-74.378699,39.399327,103 LAUREN COURT,BUENA BORO,16,2012,1,RES1,3001 -0104_201_48.07,-74.4498952,39.37244911,105 LAUREN COURT,BUENA BORO,17,2009,1,RES1,3001 -0104_201_48.08,-74.45030001,39.37219444,107 LAUREN COURT,BUENA BORO,16,2012,1,RES1,3001 -0104_201_48.09,-74.45074246,39.37210817,109 LAUREN COURT,BUENA BORO,16,2012,1,RES1,3001 -0104_201_48.11,-74.448251,39.3719755,113 LAUREN COURT,BUENA BORO,16,2013,1,RES1,3001 -0104_201_48.16,-74.44681787,39.3718103,108 LAUREN COURT,BUENA BORO,16,2013,1,RES1,3001 -0104_201_48.17,-74.4573905,39.3730255,106 LAUREN COURT,BUENA BORO,16,2011,1,RES1,3001 -0104_201_5,-74.51970699,39.3941689,234 WHEAT ROAD,BUENA BORO,17,1980,1,RES1,3001 -0104_201_50,-74.55188631,39.42127504,406 SOUTH HARDING HIGHWAY,BUENA BORO,17,1845,1,RES1,3001 -0104_201_51,-74.64600277,39.38102393,404 SOUTH HARDING HIGHWAY,BUENA BORO,17,1955,1,RES1,3001 -0104_201_52,-74.79294484,39.61620651,402 SOUTH HARDING HIGHWAY,BUENA BORO,17,1925,1,RES1,3001 -0104_201_53,-74.48825012,39.46390918,105 WEST SUMMER ROAD,BUENA BORO,17,1980,1,RES1,3001 -0104_201_54,-74.943526,39.5300405,109 WEST SUMMER ROAD,BUENA BORO,17,1945,1,RES1,3001 -0104_201_55,-74.72343772,39.64761096,111 WEST SUMMER ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_201_57,-74.5211505,39.315139,404 BUENA VISTA AVE,BUENA BORO,17,1945,1,RES1,3001 -0104_201_58,-74.59891,39.425191,201 WEST SUMMER ROAD,BUENA BORO,17,1965,1,RES1,3001 -0104_201_59,-74.61928831,39.37221344,205 WEST SUMMER ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_201_6,-74.52465932,39.38976949,232 WHEAT ROAD,BUENA BORO,17,1968,1,RES1,3001 -0104_201_60,-74.57938005,39.43104882,405 SOUTH NIXON STREET,BUENA BORO,17,1958,1,RES1,3001 -0104_201_62,-74.7592607,39.65193378,406 SOUTH NIXON STREET,BUENA BORO,17,1960,1,RES1,3001 -0104_201_63,-74.5251465,39.3946615,404 SOUTH NIXON STREET,BUENA BORO,17,1954,1,RES1,3001 -0104_201_64,-74.480872,39.348527,301 WEST SUMMER ROAD,BUENA BORO,17,1965,1,RES1,3001 -0104_201_65,-74.62790238,39.61545185,307 WEST SUMMER ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_201_66.01,-74.75490235,39.3015138,401 WEST SUMMER ROAD,BUENA BORO,17,1986,1,RES1,3001 -0104_201_66.02,-74.39816511,39.38972976,403 WEST SUMMER ROAD,BUENA BORO,17,1986,1,RES1,3001 -0104_201_66.03,-74.595178,39.3823385,405 W. SUMMER RD.,BUENA BORO,17,1987,1,RES1,3001 -0104_201_66.04,-74.83907462,39.49400382,407 WEST SUMMER ROAD,BUENA BORO,17,1987,1,RES1,3001 -0104_201_66.05,-74.9120928,39.51159834,402 SOUTH FRANKLIN STREET,BUENA BORO,17,1900,1,RES1,3001 -0104_201_7,-74.7888575,39.635686,230 WHEAT ROAD,BUENA BORO,17,1984,1,RES1,3001 -0104_201_8,-74.60825168,39.44056102,228 WHEAT ROAD,BUENA BORO,17,1951,1,RES1,3001 -0104_201_9,-74.6312746,39.35206686,226 WHEAT ROAD,BUENA BORO,17,1979,1,RES1,3001 -0104_201_9.01,-74.63134378,39.36077629,222 WHEAT ROAD,BUENA BORO,17,1999,1,RES1,3001 -0104_202_1,-74.64759484,39.53572947,401 SOUTH HARDING HIGHWAY,BUENA BORO,17,1900,1,RES1,3001 -0104_202_11,-74.4601265,39.348489,213 EAST SUMMER ROAD,BUENA BORO,17,1965,1,RES1,3001 -0104_202_12,-74.52285954,39.32025217,209 EAST SUMMER ROAD,BUENA BORO,17,2005,1,RES1,3001 -0104_202_13,-74.8756585,39.5965035,205 EAST SUMMER ROAD,BUENA BORO,17,1965,1,RES1,3001 -0104_202_2,-74.869695,39.6032525,403 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_202_3,-74.4605795,39.350951,405 SOUTH HARDING HIGHWAY,BUENA BORO,17,1930,1,RES1,3001 -0104_202_4,-74.76769594,39.33092409,407 SOUTH HARDING HIGHWAY,BUENA BORO,17,1938,1,RES1,3001 -0104_202_5,-74.6194895,39.3786975,409 SOUTH HARDING HIGHWAY,BUENA BORO,18,2008,1,RES1,3001 -0104_202_6,-74.69560304,39.41871778,411 SOUTH HARDING HIGHWAY,BUENA BORO,17,1950,1,RES1,3001 -0104_202_7,-74.6002185,39.3607235,413 SOUTH HARDING HIGHWAY,BUENA BORO,17,1930,1,RES1,3001 -0104_202_8.01,-74.862366,39.588689,118 MORRIS AVE,BUENA BORO,17,2002,1,RES1,3001 -0104_203_1,-74.561462,39.370706,501 SOUTH HARDING HIGHWAY,BUENA BORO,17,1915,1,RES1,3001 -0104_203_10,-74.45089147,39.35516802,120 IRENE AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_203_2,-74.80686704,39.63123634,505 SOUTH HARDING HIGHWAY,BUENA BORO,17,1925,1,RES1,3001 -0104_203_3.01,-74.6717215,39.4945975,105 MORRIS AVENUE,BUENA BORO,,0,1,RES1,3001 -0104_203_3.02,-74.50424766,39.33370701,104 IRENE AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_203_4,-74.5469645,39.4714025,108 IRENE AVENUE,BUENA BORO,17,1962,1,RES1,3001 -0104_203_5,-74.8873704,39.50558319,110 IRENE AVENUE,BUENA BORO,17,1965,1,RES1,3001 -0104_203_6,-74.95109,39.528981,112 IRENE AVENUE,BUENA BORO,17,1957,1,RES1,3001 -0104_203_7,-74.67926446,39.54592616,114 IRENE AVENUE,BUENA BORO,16,2007,1,RES1,3001 -0104_203_8,-74.88394768,39.4844097,116 IRENE AVENUE,BUENA BORO,17,1990,1,RES1,3001 -0104_203_9,-74.61270407,39.41970024,118 IRENE AVENUE,BUENA BORO,17,1974,1,RES1,3001 -0104_204_1,-74.60155079,39.48115804,601 SOUTH HARDING HIGHWAY,BUENA BORO,17,1967,1,RES1,3001 -0104_204_10,-74.7974725,39.6449345,116 CATHERINE AVE,BUENA BORO,17,1974,1,RES1,3001 -0104_204_10.01,-74.818052,39.6343345,114 CATHERINE AVE,BUENA BORO,17,1999,1,RES1,3001 -0104_204_12,-74.6003503,39.41051992,124 CATHERINE AVE,BUENA BORO,17,1985,1,RES1,3001 -0104_204_16,-74.59860317,39.37174986,123 IRENE AVENUE,BUENA BORO,17,1973,1,RES1,3001 -0104_204_17,-74.476332,39.342061,121 IRENE AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_204_18,-74.80728112,39.62942116,119 IRENE AVENUE,BUENA BORO,16,1965,1,RES1,3001 -0104_204_19,-74.55792135,39.37115893,117 IRENE AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_204_2,-74.62297214,39.36944583,605 SOUTH HARDING HWY.,BUENA BORO,17,1984,1,RES1,3001 -0104_204_20,-74.518072,39.3904795,115 IRENE AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_204_21,-74.5178905,39.3965225,113 IRENE AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_204_22,-74.51548815,39.44046796,111 IRENE AVENUE,BUENA BORO,17,1975,1,RES1,3001 -0104_204_23,-74.6298635,39.4281455,109 IRENE AVENUE,BUENA BORO,16,1955,1,RES1,3001 -0104_204_24,-74.86076781,39.5950446,107 IRENE AVE,BUENA BORO,16,1956,1,RES1,3001 -0104_204_25,-74.7033245,39.4954685,105 IRENE AVENUE,BUENA BORO,17,1955,1,RES1,3001 -0104_204_26,-74.60080839,39.3831754,103 IRENE AVENUE,BUENA BORO,17,1960,1,RES1,3001 -0104_204_5,-74.6199245,39.4335255,104 CATHERINE AVE,BUENA BORO,16,1998,1,RES1,3001 -0104_204_6,-74.46249532,39.35743651,106 CATHERINE AVE,BUENA BORO,16,2004,1,RES1,3001 -0104_204_9,-74.55282642,39.46562223,112 CATHERINE AVE,BUENA BORO,17,1960,1,RES1,3001 -0104_205_1,-74.635002,39.34327,701 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_205_13.02,-74.59591311,39.36017056,114 HAMMONTON ROAD,BUENA BORO,17,1930,1,RES1,3001 -0104_205_13.03,-74.625911,39.420566,108 HAMMONTON ROAD,BUENA BORO,16,1980,1,RES1,3001 -0104_205_13.04,-74.53866162,39.46376577,110 HAMMONTON ROAD,BUENA BORO,17,1965,1,RES1,3001 -0104_205_14,-74.52849877,39.46258376,116 HAMMONTON ROAD,BUENA BORO,17,1935,1,RES1,3001 -0104_205_15,-74.593711,39.3781865,150 HAMMONTON ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_205_16,-74.4464985,39.374464,124 HAMMONTON ROAD,BUENA BORO,16,1845,1,RES1,3001 -0104_205_16.01,-74.6039705,39.324149,118 HAMMONTON ROAD,BUENA BORO,17,1987,1,RES1,3001 -0104_205_18,-74.511054,39.4440665,103 MICHAEL STREET,BUENA BORO,17,1971,1,RES1,3001 -0104_205_19,-74.52639764,39.39885348,105 MICHAEL STREET,BUENA BORO,16,2005,1,RES1,3001 -0104_205_22,-74.50073203,39.41679982,127 CATHERINE AVE,BUENA BORO,17,1980,1,RES1,3001 -0104_205_24,-74.50941501,39.39946149,123 CATHERINE AVE,BUENA BORO,17,1978,1,RES1,3001 -0104_205_25,-74.6433375,39.53103,121 CATHERINE AVE,BUENA BORO,17,1975,1,RES1,3001 -0104_205_27,-74.632841,39.5178975,117 CATHERINE AVE,BUENA BORO,17,1980,1,RES1,3001 -0104_205_3,-74.39003565,39.38910254,713 SOUTH HARDING HIGHWAY,BUENA BORO,16,1930,1,RES1,3001 -0104_205_5.01,-74.53754694,39.39090822,717 SOUTH HARDING HIGHWAY,BUENA BORO,17,1930,1,RES1,3001 -0104_205_6,-74.63885982,39.46836416,719 SOUTH HARDING HIGHWAY,BUENA BORO,17,1935,1,RES1,3001 -0104_205_7,-74.63095329,39.42486195,721 SOUTH HARDING HIGHWAY,BUENA BORO,16,1900,1,RES1,3001 -0104_205_8,-74.85643031,39.43875974,729 SOUTH HARDING HIGHWAY,BUENA BORO,,0,1,RES1,3001 -0104_206_1,-74.5009075,39.4460655,601 SOUTH BREWSTER ROAD,BUENA BORO,17,1969,1,RES1,3001 -0104_206_1.01,-74.55929297,39.53568416,527 SOUTH BREWSTER ROAD,BUENA BORO,,0,1,RES1,3001 -0104_206_10,-74.54107317,39.38133752,JANET ST REAR,BUENA BORO,17,1989,1,RES1,3001 -0104_206_2,-74.56863988,39.34926286,103 JANET STREET,BUENA BORO,17,1962,1,RES1,3001 -0104_206_3,-74.9526405,39.514679,105 JANET STREET,BUENA BORO,17,1959,1,RES1,3001 -0104_206_4,-74.5422075,39.382023,ASSD BY CITY OF VLD,BUENA BORO,,0,1,RES1,3001 -0104_206_7,-74.78028703,39.62193814,109 JANET STREET,BUENA BORO,17,1992,1,RES1,3001 -0104_206_8,-74.53453016,39.37816555,111 JANET STREET,BUENA BORO,17,1986,1,RES1,3001 -0104_207_1,-74.49260627,39.43545505,395 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_207_10,-74.625131,39.3624955,515 SOUTH BREWSTER RD,BUENA BORO,17,1945,1,RES1,3001 -0104_207_11,-74.5340305,39.3803555,517 SOUTH BREWSTER RD,BUENA BORO,17,1920,1,RES1,3001 -0104_207_12,-74.89371459,39.48126856,519 SOUTH BRWESTER RD,BUENA BORO,17,1955,1,RES1,3001 -0104_207_13,-74.79776646,39.6519295,521 SOUTH BREWSTER RD,BUENA BORO,17,1952,1,RES1,3001 -0104_207_14,-74.633714,39.424242,106 JANET STREET,BUENA BORO,17,1957,1,RES1,3001 -0104_207_15,-74.52924766,39.46222603,108 JANET STREET,BUENA BORO,17,1956,1,RES1,3001 -0104_207_16,-74.51094099,39.4373527,110 JANET STREET,BUENA BORO,17,1965,1,RES1,3001 -0104_207_17,-74.54580626,39.38298982,112 JANET STREET,BUENA BORO,17,1980,1,RES1,3001 -0104_207_19,-74.52210379,39.32034595,365 WHEAT ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_207_2,-74.4535905,39.3748935,389 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_207_20,-74.77656416,39.63933099,363 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_207_21.01,-74.59839106,39.4154943,361 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_207_22,-74.592273,39.332467,359 WHEAT ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_207_23,-74.55996,39.4778495,357 WHEAT ROAD,BUENA BORO,17,1956,1,COM1,3004 -0104_207_24,-74.520803,39.414065,353 WHEAT ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_207_26,-74.85117728,39.53961903,351 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_207_27,-74.62933705,39.43157219,347 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_207_28,-74.63426216,39.53238597,345 WHEAT ROAD,BUENA BORO,17,1935,1,RES1,3001 -0104_207_29,-74.3646195,39.413737,343 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_207_3,-74.5808924,39.42385628,385 WHEAT ROAD,BUENA BORO,17,1940,1,RES1,3001 -0104_207_30,-74.64508151,39.38222683,341 WHEAT ROAD,BUENA BORO,17,1951,1,RES1,3001 -0104_207_31,-74.44933665,39.49508304,339 WHEAT ROAD,BUENA BORO,17,1935,1,RES1,3001 -0104_207_32,-74.640701,39.52176067,337 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_207_33,-74.93658598,39.48874861,335 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_207_34,-74.63865405,39.41999931,333 WHEAT ROAD,BUENA BORO,17,1924,1,RES1,3001 -0104_207_35,-74.69862648,39.48011739,331 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_207_36,-74.62456272,39.35502816,329 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_207_38,-74.5851555,39.380393,325 WHEAT ROAD,BUENA BORO,17,1955,1,RES1,3001 -0104_207_39,-74.67612683,39.37362435,323 WHEAT ROAD,BUENA BORO,17,1953,1,RES1,3001 -0104_207_4,-74.60922517,39.38532598,383 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_207_40,-74.85085754,39.48452531,321 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_207_41,-74.36717999,39.41945004,319 WHEAT ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_207_42,-74.8546675,39.610062,317 WHEAT ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_207_43,-74.568547,39.357976,315 WHEAT ROAD,BUENA BORO,17,1945,1,RES1,3001 -0104_207_44,-74.50658835,39.4184936,313 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_207_45,-74.91906818,39.49754317,311 WHEAT ROAD,BUENA BORO,17,1935,1,RES1,3001 -0104_207_47,-74.36727544,39.42001323,295 WHEAT ROAD,BUENA BORO,17,1935,1,RES1,3001 -0104_207_48,-74.50057,39.4176915,291 WHEAT ROAD,BUENA BORO,17,1975,1,RES1,3001 -0104_207_49,-74.6317135,39.4180625,287 WHEAT ROAD,BUENA BORO,17,1926,1,RES1,3001 -0104_207_5,-74.9655305,39.512115,381 WHEAT ROAD,BUENA BORO,17,1945,1,RES1,3001 -0104_207_50.01,-74.3667335,39.4211365,283 WHEAT ROAD,BUENA BORO,17,1912,1,RES1,3001 -0104_207_51,-74.54775369,39.38158121,279 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_207_52,-74.59863494,39.36857669,273 WHEAT ROAD,BUENA BORO,17,1984,1,RES1,3001 -0104_207_54,-74.84797043,39.59815251,269 WHEAT ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_207_55,-74.46474383,39.49890128,267 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_207_56,-74.528179,39.449213,65 WHEAT ROAD,BUENA BORO,17,1952,1,RES1,3001 -0104_207_57.02,-74.707902,39.43451,261 WHEAT ROAD,BUENA BORO,,0,1,RES1,3001 -0104_207_58,-74.52495012,39.45831668,259 WHEAT ROAD,BUENA BORO,17,1940,1,RES1,3001 -0104_207_6,-74.60110047,39.37379125,507 SOUTH BREWSTER ROAD,BUENA BORO,17,1915,1,RES1,3001 -0104_207_60,-74.5666915,39.474491,251 WHEAT ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_207_61,-74.53134028,39.45332884,249 WHEAT ROAD,BUENA BORO,17,1928,1,GOV1,3004 -0104_207_62,-74.624921,39.422484,1608 SOUTH CENTRAL AVE,BUENA BORO,17,1925,1,RES3B,3001 -0104_207_64,-74.8798865,39.604123,1704 SOUTH CENTRAL AVE,BUENA BORO,17,1928,1,RES1,3001 -0104_207_7,-74.57310594,39.42921418,509 SOUTH BREWSTER RD,BUENA BORO,17,1930,1,IND1,3004 -0104_207_8,-74.85125126,39.61550866,511 SOUTH BREWSTER RD,BUENA BORO,17,1945,1,RES1,3001 -0104_207_9,-74.5079005,39.4064535,513 SOUTH BREWSTER RD,BUENA BORO,17,1945,1,RES1,3001 -0104_208_1,-74.48987812,39.33613818,1601 SOUTH CENTRAL AVE,BUENA BORO,17,1951,1,RES1,3001 -0104_208_10,-74.5646475,39.520691,121 LOUIS DRIVE,BUENA BORO,17,1972,1,RES1,3001 -0104_208_11.01,-74.51450833,39.38515433,125 LOUIS DRIVE,BUENA BORO,17,1970,1,RES1,3001 -0104_208_11.02,-74.62954624,39.438452,129 LOUIS DRIVE,BUENA BORO,17,1975,1,RES1,3001 -0104_208_12,-74.519722,39.4458275,1703 SOUTH CENTRAL AVE,BUENA BORO,17,1954,1,RES1,3001 -0104_208_13,-74.593182,39.3166885,1705 SOUTH CENTRAL AVE,BUENA BORO,17,1955,1,RES1,3001 -0104_208_14,-74.46987593,39.44323353,205 WHEAT ROAD,BUENA BORO,17,1925,1,RES1,3001 -0104_208_14.01,-74.79104016,39.53300752,199 WHEAT ROAD,BUENA BORO,17,1987,1,RES1,3001 -0104_208_15,-74.78552209,39.59897285,195 WHEAT ROAD,BUENA BORO,17,1920,1,RES1,3001 -0104_208_16,-74.50634722,39.40441542,187 WHEAT ROAD,BUENA BORO,17,1950,1,RES1,3001 -0104_208_17.01,-74.586574,39.316564,191 WHEAT ROAD,BUENA BORO,17,1941,1,RES1,3001 -0104_208_19,-74.52355316,39.31798445,179 WHEAT RD,BUENA BORO,17,1950,1,RES3A,3001 -0104_208_2,-74.594292,39.380051,233 WHEAT ROAD,BUENA BORO,17,1945,1,RES1,3001 -0104_208_20,-74.46094559,39.47226269,175 WHEAT RD,BUENA BORO,17,1955,1,RES1,3001 -0104_208_21.02,-74.5422225,39.4584435,173 WHEAT ROAD,BUENA BORO,17,1948,1,RES1,3001 -0104_208_22,-74.49112433,39.5194865,171 WHEAT ROAD,BUENA BORO,17,1965,1,RES3A,3001 -0104_208_23,-74.58878721,39.43202381,169 WHEAT ROAD,BUENA BORO,16,1868,1,RES1,3001 -0104_208_24,-74.44106817,39.35902919,161 WHEAT ROAD,BUENA BORO,16,1952,1,RES1,3001 -0104_208_25,-74.57453441,39.4285639,159 WHEAT ROAD,BUENA BORO,17,1952,1,RES1,3001 -0104_208_26.02,-74.52992133,39.51155804,157 WHEAT ROAD,BUENA BORO,16,1977,1,RES1,3001 -0104_208_28,-74.64615194,39.55100991,143 WHEAT ROAD,BUENA BORO,17,1969,1,RES1,3001 -0104_208_29,-74.861899,39.485959,139 WHEAT ROAD,BUENA BORO,17,1900,1,RES1,3001 -0104_208_3.01,-74.766295,39.6367575,1607 SOUTH CENTRAL AVE,BUENA BORO,17,1900,1,RES1,3001 -0104_208_30,-74.6955475,39.42072467,137 WHEAT ROAD,BUENA BORO,17,1968,1,COM1,3004 -0104_208_31.02,-74.57046615,39.48855505,134 LINCOLN AVE,BUENA BORO,17,1992,1,RES1,3001 -0104_208_31.03,-74.55802999,39.35784737,101 WHEAT RD,BUENA BORO,17,1900,1,RES1,3001 -0104_208_32,-74.55050111,39.47443978,136 LINCOLN AVENUE,BUENA BORO,17,1958,1,RES1,3001 -0104_208_33,-74.49677439,39.33205984,138 LINCOLN AVENUE,BUENA BORO,16,1960,1,RES1,3001 -0104_208_4,-74.9486215,39.519584,1615 SOUTH CENTRAL AVE,BUENA BORO,17,1964,1,RES1,3001 -0104_208_5,-74.66084784,39.51798082,108 LOUIS DRIVE,BUENA BORO,17,1975,1,GOV1,3004 -0104_208_6.01,-74.50449124,39.4375173,114 LOUIS DRIVE,BUENA BORO,17,1989,1,RES1,3001 -0104_208_6.03,-74.61607845,39.39240669,118 LOUIS DRIVE,BUENA BORO,17,1980,1,RES1,3001 -0104_208_6.04,-74.51310296,39.32503033,130 LOUIS DRIVE,BUENA BORO,17,1985,1,RES1,3001 -0104_208_7.01,-74.69390319,39.63328751,1701 SOUTH CENTRAL AVE,BUENA BORO,16,1969,1,RES1,3001 -0104_208_7.02,-74.5259145,39.383731,107 LOUIS DRIVE,BUENA BORO,17,1984,1,RES1,3001 -0104_208_8,-74.75840783,39.36300019,115 LOUIS,BUENA BORO,17,1975,1,RES1,3001 -0104_208_9,-74.57183325,39.42776583,117 LOUIS DRIVE,BUENA BORO,17,1975,1,RES1,3001 -0105_1001_1,-74.493549,39.433537,801 SIXTH ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_1001_3,-74.37210017,39.4069715,NINTH STREET,BUENA VISTA TWP,,0,1,COM1,3004 -0105_1001_4,-74.601261,39.437571,538 NINTH STREET,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_1001_5.01,-74.813585,39.6409715,602 WOODBURY ROAD,BUENA VISTA TWP,17,1999,1,RES1,3001 -0105_1001_5.02,-74.36657317,39.4170327,610 WOODBURY ROAD,BUENA VISTA TWP,17,1999,1,RES1,3001 -0105_1001_5.03,-74.70801854,39.43103369,618 WOODBURY ROAD,BUENA VISTA TWP,17,1997,1,RES1,3001 -0105_1001_5.04,-74.635446,39.3480155,626 WOODBURY ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_1001_5.05,-74.610795,39.319582,634 WOODBURY ROAD,BUENA VISTA TWP,17,1997,1,RES1,3001 -0105_1002_35,-74.513319,39.4856365,EIGHTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1002_40,-74.81276,39.6333875,127 BOXWOOD ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1002_44,-74.51459618,39.32657365,119 BOXWOOD ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_1002_45,-74.724992,39.4581945,117 BOXWOOD ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_1002_46,-74.5822542,39.36386527,115 BOXWOOD ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_1002_47,-74.5019565,39.3322235,113 BOXWOOD ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_1002_48,-74.60551536,39.38976709,111 BOXWOOD ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_1002_49,-74.80876754,39.63166525,107 BOXWOOD ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_1002_50,-74.84373233,39.55691231,105 BOXWOOD ROAD,BUENA VISTA TWP,17,1964,1,RES1,3004 -0105_1002_51,-74.554351,39.4723675,101 BOXWOOD ROAD,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_1005_14,-74.50295105,39.3377537,632 FIFTH ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_1005_5,-74.47344474,39.44476348,608 FIFTH ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_1005_6,-74.66814766,39.46140903,610 FIFTH ROAD,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_1005_9,-74.57443017,39.35982699,620 FIFTH ROAD,BUENA VISTA TWP,17,1956,1,EDU1,3004 -0105_1006_11,-74.57781019,39.35155635,FIFTH ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1006_4,-74.711205,39.639016,712 FIFTH ROAD,BUENA VISTA TWP,17,1956,1,GOV1,3004 -0105_1006_7,-74.94804858,39.52687447,722 FIFTH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1006_8,-74.6122375,39.3157575,724 FIFTH ROAD,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_1007_11,-74.463214,39.347649,122 DOUGLAS ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_1007_17,-74.44799,39.4871755,751 EIGHTH STREET,BUENA VISTA TWP,17,1971,2,RES1,3001 -0105_1007_20,-74.488843,39.443291,125 ESSEX ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_1008_17,-74.4929995,39.4219705,713 EIGHTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1008_19,-74.76259377,39.42828653,127 GLADSTONE ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1008_4,-74.59994269,39.43381205,106 BOXWOOD ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1009_16,-74.78607789,39.64203739,705 EIGHTH STREET,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_1009_20,-74.79069604,39.37809525,125 HANOVER ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_101_1,-74.7816505,39.653557,500 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_10,-74.9409772,39.518383,103 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_11,-74.62330975,39.42393105,105 BELLWYN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_101_12,-74.5582845,39.4737885,107 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_13,-74.75614324,39.44568908,109 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_14,-74.632343,39.483877,111 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_15,-74.5150935,39.415153,113 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_16,-74.55799709,39.36281318,115 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,COM4,3004 -0105_101_17,-74.73335241,39.43872575,117 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_18,-74.49989,39.522163,119 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_19,-74.49156011,39.33567287,121 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_2,-74.51060135,39.33481409,502 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_20,-74.74345394,39.64045267,123 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_21,-74.63766734,39.53493101,511 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_22,-74.74708739,39.63528813,509 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_23,-74.8305691,39.52947833,507 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_24,-74.55275847,39.53953084,505 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_25,-74.93607832,39.52188958,503 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_26,-74.67745018,39.49761688,501 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_101_27,-74.7626295,39.609955,201 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_28,-74.8122145,39.6495625,203 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_29,-74.5697184,39.35410496,205 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_3,-74.5283515,39.4482265,504 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,COM3,3004 -0105_101_30,-74.40719014,39.37734249,207 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_32,-74.715784,39.4516155,211 WEST BEACH ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_101_33,-74.48278316,39.34986945,213 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_34,-74.75340064,39.45199424,215 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_35,-74.484904,39.344731,217 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_36,-74.64914867,39.52779682,219 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_37,-74.7799125,39.655441,136 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_38,-74.48768,39.4948305,134 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_39,-74.819943,39.4091975,132 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_4,-74.8094357,39.58855653,506 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,COM3,3004 -0105_101_40,-74.631623,39.361365,130 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_41,-74.78057989,39.67554328,128 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_42,-74.54183525,39.42348555,126 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_101_43,-74.51741942,39.38837019,124 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_44,-74.80067736,39.43675678,122 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_45,-74.59756973,39.52052734,120 WEST BEACH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_101_47,-74.632488,39.5119805,205 FOX LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_48,-74.485236,39.4959445,203 FOX LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_5,-74.5141665,39.3258085,508 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_101_52,-74.71110999,39.47043683,119 MAYFLOWER LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_53,-74.5153015,39.326512,121 MAYFLOWER LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_54,-74.44734529,39.37232319,119 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_101_55,-74.60952869,39.3695143,MAYFLOWER LANE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_101_58,-74.618494,39.508097,FOX LANE,BUENA VISTA TWP,,0,1,REL1,3004 -0105_101_6,-74.515444,39.402594,510 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_101_7,-74.6392815,39.4023665,512 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_101_8,-74.62433344,39.39318322,514 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_101_9,-74.7959195,39.6529125,101 BELLWYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1010_15,-74.810414,39.6317675,627 WOODBURY ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_1010_16,-74.72247464,39.45799222,623 WOODBURY ROAD,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_1010_19,-74.4982052,39.42609599,615 WOODBURY ROAD,BUENA VISTA TWP,17,1972,1,GOV1,3004 -0105_1010_23,-74.51320895,39.32429983,605 WOODBURY ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_102_1,-74.50720064,39.32842015,209 DELWYN LANE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_102_2,-74.64429834,39.4358937,207 DELWYN LANE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_102_3,-74.67514466,39.37640772,401 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_102_4,-74.80432078,39.63136281,403 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_102_5,-74.77848586,39.31606951,405 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1967,1,RES2,3005 -0105_102_6,-74.87774963,39.5711548,204 WEST BEACH ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_103_1,-74.75411983,39.44538678,216 WEST BEACH ROAD,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_103_10,-74.418229,39.3691895,111 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_103_11,-74.97032667,39.51733849,109 WEST BEACH ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_103_13,-74.61326672,39.42159667,202 DELWYN LANE,BUENA VISTA TWP,17,1956,1,COM8,3004 -0105_103_16,-74.902547,39.481517,208 DELWYN LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_103_17,-74.5028445,39.4363685,210 DELWYN LANE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_103_18,-74.9258035,39.508197,208 WEST BEACH ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_103_19,-74.648981,39.5138445,210 WEST BEACH ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_103_2,-74.784712,39.608881,127 WEST BEACH ROAD,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_103_20,-74.450013,39.3548995,212 WEST BEACH ROAD,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_103_21,-74.9421875,39.504341,214 WEST BEACH ROAD,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_103_3,-74.64800268,39.40258508,125 WEST BEACH ROAD,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_103_4,-74.942836,39.5259125,123 WEST BEACH ROAD,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_103_5,-74.868689,39.6026545,121 WEST BEACH ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_103_6,-74.461865,39.3511455,119 WEST BEACH ROAD,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_103_7,-74.51042998,39.32231916,117 WEST BEACH ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_103_8,-74.49514333,39.3356675,115 WEST BEACH ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_104_10,-74.52386575,39.32059716,100 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_104_11,-74.48795345,39.43088159,102 WEST BEACH ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_104_12,-74.78975936,39.63217322,104 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_104_13,-74.79970955,39.64303941,106 WEST BEACH ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_104_14,-74.36700796,39.40827183,108 WEST BEACH ROAD,BUENA VISTA TWP,17,1958,1,GOV1,3004 -0105_104_15,-74.7369135,39.4494445,110 WEST BEACH ROAD,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_104_16,-74.79827115,39.66062706,112 WEST BEACH ROAD,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_104_17,-74.77225859,39.30568542,FOX LANE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_104_2,-74.82675,39.5697255,200 FOX LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_104_3,-74.48828865,39.42140639,107 MAYFLOWER LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_104_4,-74.9470875,39.5186725,105 MAYFLOWER LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_104_5,-74.4008355,39.386768,103 MAYFLOWER LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_104_6,-74.51784233,39.39304749,101 MAYFLOWER LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_104_7,-74.8889435,39.5669115,213 SHERWOOD DRIVE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_104_8,-74.858543,39.623551,215 SHERWOOD DRIVE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_104_9,-74.80918899,39.63970934,217 SHERWOOD DRIVE,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_105_11,-74.803899,39.6403445,108 MAYFLOWER LANE,BUENA VISTA TWP,17,1958,1,RES1,3004 -0105_105_12,-74.537582,39.398824,110 MAYFLOWER LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_105_14,-74.5166555,39.3200825,MAYFLOWER LANE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_105_2,-74.37274748,39.40470775,115 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_105_4,-74.42032195,39.37072113,109 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_105_5,-74.57375982,39.35117343,107 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1970,1,REL1,3004 -0105_105_6,-74.5809875,39.413078,103 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1955,2,GOV1,3004 -0105_105_7,-74.44852908,39.37285716,101 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_105_8,-74.51049249,39.3369632,100 MAYFLOWER LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_106_1,-74.59427613,39.37837626,118 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_106_10,-74.73119081,39.45253346,100 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1958,1,IND2,3004 -0105_106_11,-74.946428,39.5165085,10 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_106_12,-74.38981808,39.39043664,8 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_106_13,-74.56905239,39.36987077,6 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_106_14,-74.49082142,39.43027091,4 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_106_15,-74.59723,39.3190355,2 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,2014,1,RES1,3001 -0105_106_16,-74.61394126,39.37212593,WEST COLLINGS DRIVE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_106_2,-74.49633827,39.47684021,116 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_106_4,-74.4408875,39.3689635,COLLINGS DRIVE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_106_5,-74.7173196,39.57787663,110 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_106_6,-74.71789479,39.44104432,108 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_106_7,-74.8849415,39.4625455,106 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_107_1,-74.471011,39.48360729,222 SHERWOOD DRIVE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_107_11,-74.58768569,39.42846135,7 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_107_13,-74.86476551,39.60194818,3 WEST COLLINGS DRIVE,BUENA VISTA TWP,17,1958,1,GOV1,3004 -0105_107_14,-74.49932902,39.33711113,201 CAINS MILL ROAD,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_107_15,-74.524706,39.3950005,203 CAINS MILL ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_107_16,-74.77192004,39.61075566,205 CAINS MILL ROAD,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_107_17,-74.45493365,39.35282515,207 CAINS MILL ROAD,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_107_18,-74.49991407,39.41107483,209 CAINS MILL ROAD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_107_19,-74.4954409,39.32953233,211 CAINS MILL ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_107_2,-74.638494,39.400923,220 SHERWOOD DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_107_20,-74.6096705,39.3647165,213 CAINS MILL ROAD,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_107_21,-74.77915943,39.64480444,215 CAINS MILL ROAD,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_107_22,-74.5486425,39.475819,217 CAINS MILL ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_107_23,-74.53259027,39.38470226,219 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_107_24,-74.48338699,39.34841583,221 CAINS MILL ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_107_3,-74.6065572,39.35011148,218 SHERWOOD DRIVE,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_107_4,-74.92607888,39.54012376,216 SHERWOOD DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_107_5,-74.79658553,39.63253083,214 SHERWOOD DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_107_6,-74.54842542,39.54710344,212 SHERWOOD DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_108_1,-74.5947215,39.524921,222 CAINS MILL ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_108_10,-74.8234215,39.5704865,204 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_108_11,-74.74209004,39.39889277,202 CAINS MILL ROAD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_108_12,-74.5836315,39.3412485,200 CAINS MILL ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_108_13,-74.520049,39.392313,211 BRADDOCK AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_108_14,-74.4600346,39.45309517,213 BRADDOCK AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_108_15,-74.58966387,39.33536411,217 BRADDOCK AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_108_16,-74.5007745,39.328293,219 BRADDOCK AVENUE,BUENA VISTA TWP,17,1975,1,REL1,3004 -0105_108_17,-74.50388609,39.32492831,221 BRADDOCK AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_108_3,-74.58894092,39.35687524,218 CAINS MILL ROAD,BUENA VISTA TWP,17,1965,1,COM1,3004 -0105_108_4,-74.62878035,39.42274883,216 CAINS MILL ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_108_6,-74.45232109,39.50170273,212 CAINS MILL ROAD,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_108_7,-74.55594523,39.36663684,210 CAINS MILL ROAD,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_108_9,-74.73680408,39.45231305,206 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_109_1,-74.387953,39.3944895,213 KINGS LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_109_2,-74.62203185,39.3788037,211 KINGS LANE,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_109_3,-74.76358915,39.30674825,208 BRADDOCK AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_109_4,-74.840407,39.598173,206 BRADDOCK AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_109_5,-74.5923628,39.3764274,204 BRADDOCK AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_109_6,-74.87655586,39.60432073,202 BRADDOCK AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_109_9,-74.55737789,39.45952656,209 KINGS LANE,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_110_1,-74.84193564,39.63191115,306 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_110_2,-74.70861,39.4351855,1 EAST BEACH ROAD,BUENA VISTA TWP,17,1965,1,COM1,3002 -0105_110_3,-74.45259388,39.47684024,3 EAST BEACH ROAD,BUENA VISTA TWP,17,1961,1,RES3A,3001 -0105_110_4,-74.855583,39.4446405,5 EAST BEACH ROAD,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_1101_3,-74.5165635,39.457786,622 EIGHTH STREET,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_1102_26,-74.52928813,39.3831137,203 HANOVER ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_1102_27,-74.360514,39.413545,704 EIGHTH STREET,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_1102_33,-74.5155775,39.329064,760 EIGHTH STREET,BUENA VISTA TWP,17,2001,1,RES3A,3001 -0105_1105_6,-74.504323,39.4351415,812 FIFTH ROAD,BUENA VISTA TWP,17,1971,1,RES3A,3001 -0105_1106_9,-74.94001026,39.53337022,928 FIFTH ROAD,BUENA VISTA TWP,17,1963,1,COM1,3004 -0105_111_1,-74.427541,39.368112,314 SHERWOOD DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_111_10,-74.59074155,39.37263585,303 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES3A,3001 -0105_111_11,-74.842533,39.5237265,305 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_111_12,-74.61023166,39.34299885,307 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_111_13,-74.553447,39.4671065,309 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_111_14,-74.6078992,39.32148464,311 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_111_15,-74.56924857,39.3418546,313 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_111_16,-74.44045579,39.36821066,315 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_111_2,-74.47379823,39.48409024,312 SHERWOOD DRIVE,BUENA VISTA TWP,17,1956,1,GOV1,3004 -0105_111_3,-74.53834238,39.37915284,310 SHERWOOD DRIVE,BUENA VISTA TWP,17,1955,1,COM4,3004 -0105_111_4,-74.83323512,39.61087457,308 SHERWOOD DRIVE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_111_5,-74.82350903,39.63674608,306 SHERWOOD DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_111_6,-74.63362259,39.3657493,304 SHERWOOD DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_111_7,-74.60947254,39.34601898,302 SHERWOOD DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_111_8,-74.54536481,39.47598671,300 SHERWOOD DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_111_9,-74.45446417,39.49977817,301 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_112_1,-74.760732,39.4295765,120 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_10,-74.716927,39.4504615,309 SHERWOOD DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_11,-74.5760165,39.4233815,110 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_12,-74.36576033,39.41708327,112 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_13,-74.51132066,39.32250301,114 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_14,-74.55262981,39.46374591,116 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_15,-74.518144,39.3970075,118 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_2,-74.66731783,39.41840489,107 WEST BEACH ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_112_3,-74.795854,39.6430745,105 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_4,-74.85346904,39.61663619,103 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_5,-74.60260456,39.37693181,101 WEST BEACH ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_112_6,-74.59764593,39.36099311,301 SHERWOOD DRIVE,BUENA VISTA TWP,17,1960,1,RES3A,3001 -0105_112_7,-74.58296866,39.33118609,303 SHERWOOD DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_8,-74.86855031,39.49242294,305 SHERWOOD DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_112_9,-74.51897453,39.38829682,307 SHERWOOD DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_1,-74.71134051,39.47190017,122 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_10,-74.5326485,39.399564,112 WEST COLTON LANE,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_113_11,-74.392899,39.3888885,114 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_12,-74.87451278,39.57388839,116 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_13,-74.81842389,39.3660368,118 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_14,-74.45992331,39.5118352,120 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_2,-74.44418816,39.35723651,121 DELWYN LANE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_113_3,-74.48958472,39.49765692,119 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_4,-74.61367607,39.36493222,117 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_5,-74.51117061,39.33629184,115 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_6,-74.5962039,39.32527858,113 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_7,-74.88425836,39.46385477,111 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_8,-74.508204,39.448495,109 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_113_9,-74.932584,39.4824855,110 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_114_1,-74.632385,39.3658455,108 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_114_2,-74.4845944,39.34876231,107 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_114_3,-74.81245952,39.66340066,105 DELWYN LANE,BUENA VISTA TWP,17,1960,2,RES1,3001 -0105_114_4,-74.59567253,39.34833687,103 DELWYN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_114_5,-74.77149682,39.63759218,405 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES3A,3001 -0105_114_6,-74.516811,39.395795,102 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_114_7,-74.95569,39.537998,104 WEST COLTON LANE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_114_8,-74.373879,39.4169415,106 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_115_1,-74.45171293,39.48800298,111 WEST COLTON LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_115_2,-74.51966516,39.32257694,109 WEST COLTON LANE,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_116_1,-74.60004,39.519436,501 CUSHMAN AVENUE,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_116_10,-74.382369,39.417485,108 BELLWYN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_11,-74.4849145,39.339991,110 BELLWYN AVENUE,BUENA VISTA TWP,17,1956,1,RES3A,3001 -0105_116_12,-74.56230003,39.3620647,112 BELLWYN AVENUE,BUENA VISTA TWP,17,1956,1,COM1,3004 -0105_116_13,-74.8798685,39.45351,114 BELLWYN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_14,-74.865498,39.596104,116 BELLWYN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_15,-74.7884585,39.6343235,118 BELLWYN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_16,-74.4457475,39.373266,508 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_17,-74.91924662,39.50384584,506 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_18,-74.603004,39.3119395,504 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_19,-74.39262723,39.38771157,502 EDGEWOOD AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_2,-74.578055,39.4117535,503 CUSHMAN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_20,-74.95123754,39.53401184,119 WEST COLTON LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_21,-74.62696239,39.37648583,117 WEST COLTON LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_22,-74.61647769,39.31172471,115 WEST COLTON LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_23,-74.44899418,39.37273957,113 WEST COLTON LANE,BUENA VISTA TWP,17,1956,1,RES3A,3001 -0105_116_24,-74.50873986,39.40747153,115 LINDEN TERRACE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_25,-74.373009,39.410091,113 LINDEN TERRACE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_26,-74.92422549,39.51339334,111 LINDEN TERRACE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_27,-74.80872389,39.61634149,109 LINDEN TERRACE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_28,-74.935993,39.4972645,107 LINDEN TERRACE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_29,-74.4643685,39.347671,105 LINDEN TERRACE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_3,-74.8161915,39.3937765,505 CUSHMAN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_30,-74.72316632,39.45523798,103 LINDEN TERRACE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_31,-74.86422736,39.44165482,107 WEST COLTON LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_32,-74.45219269,39.49746813,105 WEST COLTON LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_116_4,-74.80570513,39.63725945,507 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_5,-74.50216922,39.40888001,509 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_6,-74.6783985,39.4978585,511 CUSHMAN AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_116_7,-74.78870302,39.61356321,513 CUSHMAN AVENUE,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_116_8,-74.55500191,39.39836789,104 BELLWYN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_116_9,-74.79742328,39.64408497,106 BELLWYN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_117_1,-74.523983,39.3835285,CAINS MILL ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1203_6,-74.656583,39.4157015,69 MALAGA ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1302_1,-74.52425902,39.31923467,117 JACKSON ROAD,BUENA VISTA TWP,16,1965,2,RES1,3001 -0105_1303_11,-74.62974349,39.49100399,769 CAINS MILL ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1303_3,-74.47587566,39.48539543,703 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES3A,3001 -0105_1303_4,-74.52005865,39.38338176,707 CAINS MILL ROAD,BUENA VISTA TWP,17,1963,1,RES1,3002 -0105_1303_5,-74.60040724,39.41827426,729 CAINS MILL ROAD,BUENA VISTA TWP,17,2018,1,RES1,3001 -0105_1303_7,-74.5743481,39.35406895,CAINS MILL ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1303_9,-74.63638534,39.54855451,747 CAINS MILL ROAD,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_1304_10,-74.55294034,39.37701046,752 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_1304_14,-74.8788036,39.59363236,742 CAINS MILL ROAD,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_1304_5,-74.386464,39.395194,748 CAINS MILL ROAD,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_1304_6,-74.64111569,39.37643596,317 JACKSON ROAD,BUENA VISTA TWP,17,1945,1,RES1,3002 -0105_1304_7,-74.713164,39.63499,313 JACKSON ROAD,BUENA VISTA TWP,15,1969,1,RES3A,3001 -0105_1304_9,-74.46521458,39.34487407,764 CAINS MILL ROAD,BUENA VISTA TWP,17,2007,1,RES3A,3001 -0105_1401_11,-74.6619615,39.4016775,437 JACKSON ROAD,BUENA VISTA TWP,17,2005,1,RES3A,3001 -0105_1401_2,-74.62802399,39.43459843,954 ROUTE 54,BUENA VISTA TWP,17,1946,1,RES3A,3001 -0105_1401_3,-74.51096694,39.44163765,946 ROUTE 54,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_1401_4,-74.79360817,39.53565794,930 ROUTE 54,BUENA VISTA TWP,17,1949,1,RES1,3001 -0105_1401_6,-74.79655084,39.66254477,912 ROUTE 54,BUENA VISTA TWP,17,2010,1,RES3A,3001 -0105_1402_1,-74.71198783,39.46933638,506 SIXTH ROAD,BUENA VISTA TWP,17,1964,1,RES3A,3001 -0105_1402_12,-74.82114019,39.46534075,363 ELEVENTH STREET,BUENA VISTA TWP,17,2005,1,COM1,3004 -0105_1402_17,-74.65030415,39.46894302,349 ELEVENTH STREET,BUENA VISTA TWP,17,2005,1,RES3A,3001 -0105_1402_2,-74.75452912,39.59852975,514 SIXTH ROAD,BUENA VISTA TWP,17,2013,1,RES3A,3001 -0105_1402_3,-74.48649232,39.46961417,524 SIXTH ROAD,BUENA VISTA TWP,17,1948,1,RES3A,3001 -0105_1402_33.01,-74.37543283,39.39949354,557 JACKSON ROAD,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_1402_33.02,-74.57832835,39.33271735,553 JACKSON ROAD,BUENA VISTA TWP,17,2004,1,COM1,3004 -0105_1402_33.03,-74.568713,39.3716395,549 JACKSON ROAD,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_1402_33.04,-74.44127946,39.37098932,541 JACKSON ROAD,BUENA VISTA TWP,17,1991,1,RES1,3001 -0105_1402_33.05,-74.7598865,39.431024,535 JACKSON ROAD,BUENA VISTA TWP,17,1993,1,RES1,3001 -0105_1402_33.06,-74.57554468,39.3675404,529 JACKSON ROAD,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_1402_33.07,-74.6636265,39.444543,525 JACKSON ROAD,BUENA VISTA TWP,17,1992,1,RES1,3001 -0105_1402_33.08,-74.6389065,39.3927635,519 JACKSON ROAD,BUENA VISTA TWP,17,1992,1,RES1,3001 -0105_1402_33.09,-74.634482,39.352014,515 JACKSON ROAD,BUENA VISTA TWP,17,1992,1,RES1,3001 -0105_1402_33.11,-74.54856,39.375206,501 JACKSON ROAD,BUENA VISTA TWP,17,1991,1,RES1,3001 -0105_1402_38,-74.4213285,39.371991,917 ROUTE 54,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_1402_39,-74.67506288,39.5461397,925 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES3A,3001 -0105_1402_4,-74.7664595,39.6116575,532 SIXTH ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_1402_40,-74.936158,39.527479,933 ROUTE 54,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_1402_45,-74.84429409,39.60735083,961 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1402_48,-74.75821908,39.4465077,945 ROUTE 54,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_1402_8,-74.39000319,39.39305416,558 SIXTH ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_1402_9,-74.58993154,39.35350405,562 SIXTH ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_1501_1,-74.53572912,39.37407845,606 SIXTH ROAD,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_1501_11,-74.51315667,39.43177218,636 SIXTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1501_14,-74.96105333,39.51262002,139 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_15,-74.761619,39.631317,137 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,COM1,3004 -0105_1501_16,-74.56671071,39.34840787,135 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_17,-74.5693335,39.477487,133 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_18,-74.50388034,39.33296769,131 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3002 -0105_1501_20,-74.52890318,39.38722352,127 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_21,-74.6379045,39.4287585,125 EISENHOWER DRIVE,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_1501_22,-74.63190018,39.41766986,123 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,COM1,3004 -0105_1501_23,-74.58930424,39.34818143,121 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_24,-74.83805715,39.59479042,119 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_25,-74.64460842,39.39498866,117 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_26,-74.6215232,39.43519268,115 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_28,-74.511058,39.4148455,111 EISENHOWER DRIVE,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_1501_29,-74.60001022,39.31574236,109 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES3B,3001 -0105_1501_3,-74.50238943,39.44156907,610 SIXTH ROAD,BUENA VISTA TWP,16,1960,1,RES1,3001 -0105_1501_30,-74.79454084,39.64405947,107 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_31,-74.598607,39.3674175,105 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_32,-74.69063218,39.4467304,103 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_33,-74.56527413,39.36834326,101 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_4,-74.64170982,39.62418652,614 SIXTH ROAD,BUENA VISTA TWP,17,2010,1,RES1,3001 -0105_1501_49,-74.59337774,39.36069889,661 JACKSON ROAD,BUENA VISTA TWP,,1995,1,RES1,3001 -0105_1501_5,-74.925697,39.5107655,618 SIXTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_1501_51,-74.8159755,39.371607,633 JACKSON ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_1501_52,-74.8098965,39.66076417,625 JACKSON ROAD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_1501_53,-74.52796957,39.54467068,607 JACKSON ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_1501_54,-74.57878603,39.36742047,99 EISENHOWER DRIVE,BUENA VISTA TWP,17,2006,1,RES3A,3001 -0105_1501_55,-74.50081082,39.44985295,336 ELEVENTH STREET,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_1501_59,-74.4351078,39.49175484,348 ELEVENTH STREET,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_1501_8,-74.5134298,39.41401984,628 SIXTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1501_9,-74.49518508,39.33815785,630 SIXTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1502_35,-74.72655289,39.45558369,116 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1502_36,-74.367655,39.4027635,118 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1502_37,-74.787171,39.4215855,120 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1502_38,-74.64488474,39.44867299,122 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1502_39,-74.71708,39.39248,124 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1502_40,-74.48406531,39.34589156,126 EISENHOWER DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1504_11,-74.49026184,39.33722899,221 MEYNER LANE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1504_12,-74.44865498,39.37349318,219 MEYNER LANE,BUENA VISTA TWP,17,1965,1,RES3B,3002 -0105_1504_17,-74.49218791,39.44190744,209 MEYNER LANE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_1504_18,-74.5953625,39.311641,207 MEYNER LANE,BUENA VISTA TWP,17,1965,1,RES1,3002 -0105_1504_20,-74.6993265,39.363598,341 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1504_21,-74.80102762,39.63491238,339 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1504_23,-74.48424498,39.43547871,335 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1504_24,-74.50706842,39.33603634,331 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1504_3,-74.5678025,39.355685,646 SIXTH ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_1505_10,-74.71987633,39.57171403,427 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_11,-74.72889524,39.45322734,425 TENTH STREET,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_1505_13,-74.62391,39.3796885,421 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_14,-74.62561412,39.36563588,419 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_15,-74.713156,39.5802525,417 TENTH STREET,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_1505_16,-74.67571535,39.50922073,415 TENTH STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1505_17,-74.63892281,39.46144157,413 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_18,-74.6411945,39.5273775,411 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_19,-74.63665873,39.43068464,409 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_2,-74.522276,39.4674515,654 SIXTH ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_1505_20,-74.58209517,39.42360404,405 TENTH STREET,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_1505_23,-74.82088292,39.39614083,206 MEYNER LANE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_24,-74.81483082,39.41032685,210 MEYNER LANE,BUENA VISTA TWP,17,1965,1,RES1,3002 -0105_1505_25,-74.54020007,39.38364935,212 MEYNER LANE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_27,-74.79362862,39.63607877,216 MEYNER LANE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1505_29,-74.9341457,39.49606176,220 MEYNER LANE,BUENA VISTA TWP,17,1965,1,RES1,3002 -0105_1505_3,-74.47338498,39.34094766,656 SIXTH ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_1505_32,-74.5819845,39.4738445,228 MEYNER LANE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_1505_35,-74.57450794,39.3522066,234 MEYNER LANE,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_1505_4,-74.58406289,39.33879366,658 SIXTH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3002 -0105_1505_5,-74.71482813,39.44280993,660 SIXTH ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_1505_6,-74.685107,39.444079,662 SIXTH ROAD,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_1506_1,-74.51909218,39.32153365,704 SIXTH ROAD,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_1506_19,-74.7540948,39.30187005,404 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1506_2,-74.88117606,39.48348973,706 SIXTH ROAD,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_1506_20,-74.37448542,39.41282271,406 TENTH STREET,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_1506_21,-74.756319,39.3480935,408 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1506_23,-74.41937516,39.37019,412 TENTH STREET,BUENA VISTA TWP,17,1963,1,RES3A,3001 -0105_1506_26,-74.872985,39.441294,418 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES3A,3001 -0105_1506_28,-74.8495695,39.6113615,422 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1506_29,-74.79481906,39.62753865,424 TENTH STREET,BUENA VISTA TWP,17,1965,1,COM1,3004 -0105_1506_30,-74.6390185,39.409308,TENTH STREET,BUENA VISTA TWP,,0,1,COM10,3003 -0105_1507_16,-74.77618841,39.61261799,332 TENTH STREET,BUENA VISTA TWP,17,2011,1,GOV1,3004 -0105_1507_19,-74.494175,39.433976,103 MEYNER LANE,BUENA VISTA TWP,17,1965,1,COM1,3003 -0105_1508_2,-74.72788188,39.44999121,318 TENTH STREET,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_1508_3,-74.48329756,39.51843121,314 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES3A,3001 -0105_1508_4,-74.534167,39.5019655,312 TENTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1508_6,-74.5202125,39.317498,TENTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1508_7,-74.7390665,39.4695565,709 JACKSON ROAD,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_1508_8,-74.494154,39.3315575,703 JACKSON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1510_25,-74.610381,39.4882355,130 ROCKEFELLER LANE,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_1510_26,-74.60303864,39.48352685,148 ROCKEFELLER LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1510_37,-74.50449252,39.33789984,417 NINTH STREET,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_1510_38,-74.596661,39.3173315,409 NINTH STREET,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1510_39,-74.78659,39.591491,767 JACKSON ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1510_39.01,-74.68672517,39.50977799,749 JACKSON ROAD,BUENA VISTA TWP,17,1991,1,RES1,3004 -0105_1510_42,-74.85298046,39.44070433,721 JACKSON ROAD,BUENA VISTA TWP,17,2015,1,RES3A,3001 -0105_1510_43,-74.94010611,39.5196052,717 JACKSON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1510_44,-74.5682189,39.34650055,711 JACKSON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1511_1,-74.58383879,39.3771086,768 SIXTH ROAD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_10,-74.49609804,39.32854492,108 O'HARA AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_11,-74.645208,39.527941,110 O'HARA AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_12,-74.77503172,39.66160083,112 O'HARA AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_13,-74.46990769,39.34316948,116 O'HARA AVENUE,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_1511_14,-74.44330218,39.37205694,120 O'HARA AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_2,-74.49992544,39.38161769,461 NINTH STREET,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_3,-74.63872425,39.50758818,457 NINTH STREET,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_4,-74.583368,39.4208765,455 NINTH STREET,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_5,-74.95505433,39.51983891,451 NINTH STREET,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_6,-74.50011722,39.41614369,449 NINTH STREET,BUENA VISTA TWP,17,1987,1,RES1,3004 -0105_1511_8,-74.58108455,39.34109583,102 O'HARA AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1511_9,-74.62428744,39.46444569,104 O'HARA AVENUE,BUENA VISTA TWP,17,1987,1,AGR1,3004 -0105_1512_10,-74.7592922,39.44916658,112 THOMAS AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1512_11,-74.5163995,39.394964,114 THOMAS AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1512_12,-74.7995075,39.6432075,116 THOMAS AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1512_13,-74.5198115,39.4626735,120 THOMAS AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1512_14,-74.46941633,39.345572,754 SIXTH ROAD,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_1512_3,-74.54829433,39.54448158,111 O'HARA AVENUE,BUENA VISTA TWP,17,1987,1,GOV1,3004 -0105_1512_5,-74.574123,39.3432645,105 O'HARA AVENUE,BUENA VISTA TWP,17,1987,1,GOV1,3004 -0105_1512_6,-74.520124,39.31955133,101 O'HARA AVENUE,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_1512_8,-74.52136357,39.31734025,104 THOMAS AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1512_9,-74.7148746,39.38452502,108 THOMAS AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1513_1,-74.58751559,39.41522568,744 SIXTH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1513_10,-74.42685946,39.36886782,108 GARDNER BOULEVARD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1513_11,-74.79768836,39.63946191,112 GARDNER BOULEVARD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1513_12,-74.907412,39.4795085,114 GARDNER BOULEVARD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1513_13,-74.6234215,39.3751045,118 GARDNER BOULEVARD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1513_2,-74.4961435,39.3330685,117 THOMAS AVENUE,BUENA VISTA TWP,17,1995,1,RES1,3002 -0105_1513_3,-74.589358,39.321211,115 THOMAS AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_1513_4,-74.60118,39.4232945,111 THOMAS AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_1513_5,-74.64144626,39.32371725,109 THOMAS AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3004 -0105_1513_6,-74.5186095,39.52610003,133 ROCKEFELLER LANE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1513_7,-74.64781208,39.53002335,131 ROCKEFELLER LANE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1513_8,-74.72982955,39.58752484,127 ROCKEFELLER LANE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1513_9,-74.6009555,39.3683515,106 GARDNER BOULEVARD,BUENA VISTA TWP,17,1987,1,COM1,3004 -0105_1515_1,-74.59551798,39.34987206,712 SIXTH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1515_12,-74.8312345,39.446968,734 SIXTH ROAD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1515_3,-74.93176024,39.49609636,716 SIXTH ROAD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1515_4,-74.502204,39.428272,718 SIXTH ROAD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_1515_5,-74.5095845,39.4009235,720 SIXTH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1515_6,-74.80691846,39.63979796,722 SIXTH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1515_7,-74.8709465,39.577199,724 SIXTH ROAD,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_1601_1,-74.9515135,39.5283525,804 SIXTH ROAD,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_1601_11,-74.73284002,39.45437965,SIXTH ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1601_17,-74.39859066,39.38780221,EIGHTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1601_19,-74.4888215,39.3337355,537 EIGHTH STREET,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1601_2,-74.4863147,39.43525905,808 SIXTH ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1601_20,-74.8713165,39.59403752,533 EIGHTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1601_21,-74.6250005,39.392539,529 EIGHTH STREET,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1601_22,-74.48841984,39.46503051,523 EIGHTH STREET,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_1601_24,-74.71654865,39.40798076,511 EIGHTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1601_25,-74.5705865,39.356677,505 EIGHTH STREET,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1601_28,-74.519961,39.3881855,861 JACKSON ROAD,BUENA VISTA TWP,17,1982,1,GOV1,3004 -0105_1601_29,-74.495728,39.4719845,859 JACKSON ROAD,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_1601_3,-74.5144855,39.3264605,816 SIXTH ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1601_30,-74.6425365,39.532785,853 JACKSON ROAD,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_1601_31,-74.7552765,39.4481845,847 JACKSON ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_1601_33,-74.7215805,39.482378,839 JACKSON ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_1601_35,-74.52832085,39.31229893,833 JACKSON ROAD,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_1601_36,-74.53974162,39.47229528,827 JACKSON ROAD,BUENA VISTA TWP,17,1980,1,GOV1,3004 -0105_1601_37,-74.48036074,39.43100805,829 JACKSON ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1601_39,-74.557633,39.517986,823 JACKSON ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1601_4,-74.63508406,39.43158932,822 SIXTH ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1601_40,-74.585748,39.324697,819 JACKSON ROAD,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_1601_44,-74.49119348,39.46111252,424 NINTH STREET,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_1601_45,-74.46837724,39.34216823,430 NINTH STREET,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_1601_48,-74.3746035,39.4168155,436 NINTH STREET,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_1601_5,-74.64740965,39.52930692,826 SIXTH ROAD,BUENA VISTA TWP,17,1969,2,RES1,3001 -0105_1601_50,-74.5094325,39.325521,456 NINTH STREET,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_1601_52,-74.38265639,39.41822477,462 NINTH STREET,BUENA VISTA TWP,17,1993,1,RES1,3001 -0105_1601_53,-74.57334144,39.35948185,468 NINTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1601_54,-74.440067,39.3683705,EIGHTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1601_6,-74.7167745,39.4545855,830 SIXTH ROAD,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_1601_7,-74.50723813,39.43577361,834 SIXTH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_1601_8,-74.538735,39.4697105,838 SIXTH ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1601_9,-74.76620017,39.63625847,842 SIXTH ROAD,BUENA VISTA TWP,17,1990,1,AGR1,3001 -0105_1801_109,-74.6899515,39.3538685,246 POCONO STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1801_113,-74.7160305,39.6401655,251 POCONO STREET,BUENA VISTA TWP,,0,1,COM1,3004 -0105_1801_121,-74.49797871,39.43159173,233 POCONO STREET,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1801_123,-74.595721,39.311278,229 POCONO STREET,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1801_127,-74.68760053,39.35903071,221 POCONO STREET,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_1801_129,-74.6456355,39.5315075,217 POCONO STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_1801_133,-74.66226871,39.51377969,209 POCONO STREET,BUENA VISTA TWP,17,1980,1,AGR1,3001 -0105_1801_14,-74.93125585,39.52796849,808 ROUTE 54,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_1801_15,-74.75492603,39.63497668,806 ROUTE 54,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_1801_16,-74.76009419,39.3487578,804 ROUTE 54,BUENA VISTA TWP,17,1975,1,GOV1,3004 -0105_1801_163,-74.614844,39.323456,353 DODGE STREET,BUENA VISTA TWP,17,1961,1,GOV1,3004 -0105_1801_171,-74.4232845,39.364932,337 DODGE STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_1801_19,-74.74258749,39.64090033,610 RUTH STREET,BUENA VISTA TWP,14,1999,1,IND1,3002 -0105_1801_2,-74.49924666,39.43129327,406 JACKSON ROAD,BUENA VISTA TWP,17,1900,2,GOV1,3004 -0105_1801_3.01,-74.45271968,39.49765165,432 JACKSON ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_1801_4.01,-74.75580483,39.45388999,440 JACKSON ROAD,BUENA VISTA TWP,17,1994,1,GOV1,3004 -0105_1801_5,-74.48948314,39.33240818,840 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1801_6,-74.62951346,39.51113767,826 ROUTE 54,BUENA VISTA TWP,15,1950,1,RES1,3001 -0105_1801_8,-74.4873995,39.338555,ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1803_3,-74.49185884,39.3381755,225 FORD ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_1808_1,-74.912843,39.5109745,849 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1808_10,-74.85427439,39.36895882,526 NORMAN ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1808_11,-74.55206721,39.4705161,530 NORMAN ROAD,BUENA VISTA TWP,,1998,1,RES1,3001 -0105_1808_13,-74.96197043,39.51200366,809 ROUTE 54,BUENA VISTA TWP,27,1965,1,RES1,3001 -0105_1808_14,-74.50811659,39.43738186,805 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1808_17,-74.54807372,39.46502602,815 ROUTE 54,BUENA VISTA TWP,17,1955,2,RES1,3001 -0105_1808_18,-74.59805114,39.36961179,817 ROUTE 54,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1808_19,-74.55341137,39.42741931,831 ROUTE 54,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_1808_2,-74.51785984,39.32418107,522 JACKSON ROAD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_1808_20,-74.630385,39.6085185,835 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1808_3,-74.4325195,39.366929,532 JACKSON ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1808_4,-74.68798617,39.51252558,542 JACKSON ROAD,BUENA VISTA TWP,17,2017,1,RES1,3001 -0105_1808_5,-74.5240605,39.31397,558 JACKSON ROAD,BUENA VISTA TWP,17,2009,1,RES1,3001 -0105_1808_6,-74.7779415,39.5904315,267 ELEVENTH STREET,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_1808_8,-74.47442367,39.3425555,233 ELEVENTH STREET,BUENA VISTA TWP,17,1940,1,COM7,3004 -0105_1808_9,-74.8646065,39.4357215,825 ROUTE 54,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_1901_1,-74.5499715,39.4637075,608 JACKSON ROAD,BUENA VISTA TWP,17,1931,1,RES1,3001 -0105_1901_6,-74.52354716,39.31550702,616 JACKSON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1903_1,-74.59564898,39.31211257,668 JACKSON ROAD,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_1903_1.01,-74.50206055,39.33790417,660 JACKSON ROAD,BUENA VISTA TWP,17,2006,1,COM4,3004 -0105_1903_1.02,-74.5057705,39.334246,650 JACKSON ROAD,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_1903_1.03,-74.583331,39.3579845,640 JACKSON ROAD,BUENA VISTA TWP,17,1995,1,GOV1,3004 -0105_1904_1,-74.93870262,39.52017525,704 JACKSON ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_1904_3,-74.60688612,39.38642389,258 TENTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1904_4,-74.5087225,39.478812,708 JACKSON ROAD,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_1905_2,-74.51968347,39.40185359,730 JACKSON ROAD,BUENA VISTA TWP,17,1925,1,RES1,3001 -0105_1905_3,-74.4413905,39.3576475,734 JACKSON ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_1905_4,-74.5030595,39.43196,744 JACKSON ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1905_7,-74.81037617,39.41263277,351 NINTH STREET,BUENA VISTA TWP,15,1950,1,GOV1,3004 -0105_1905_8,-74.884299,39.4629845,337 NINTH STREET,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_1911_2,-74.57144628,39.34156648,ELEVENTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_1912_1,-74.54372983,39.37284549,216 ELEVENTH STREET,BUENA VISTA TWP,17,2012,1,RES1,3001 -0105_1915_1.01,-74.370964,39.4078085,246 ELEVENTH STREET,BUENA VISTA TWP,17,1915,1,GOV1,3004 -0105_2001_1,-74.82399677,39.56940926,804 JACKSON ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_2001_10,-74.908798,39.4963565,854 JACKSON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2001_11,-74.66597,39.4049985,856 JACKSON ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_2001_12,-74.46668683,39.34362601,862 JACKSON ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_2001_19,-74.59996375,39.42003646,338 NINTH STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2001_2,-74.44792486,39.37215619,808 JACKSON ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2001_20,-74.35867814,39.41346395,344 NINTH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2001_21,-74.61717922,39.59889329,348 NINTH STREET,BUENA VISTA TWP,17,1980,1,RES3A,3001 -0105_2001_22,-74.488263,39.3341355,352 NINTH STREET,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_2001_23,-74.60993145,39.34545243,358 NINTH STREET,BUENA VISTA TWP,17,1942,2,RES1,3001 -0105_2001_4,-74.57145095,39.33982768,818 JACKSON ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2001_5,-74.50746865,39.46195055,822 JACKSON ROAD,BUENA VISTA TWP,,1960,1,RES1,3001 -0105_2001_6,-74.6024615,39.5276475,826 JACKSON ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2001_7,-74.55941062,39.43417503,832 JACKSON ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_2002_10,-74.714859,39.4677345,7707 VENICE BOULEVARD,BUENA VISTA TWP,16,2014,1,RES1,3001 -0105_2002_2,-74.53116808,39.37926215,958 JACKSON ROAD,BUENA VISTA TWP,17,2001,1,GOV1,3004 -0105_2002_6,-74.66348185,39.53070054,7731 VENICE BOULEVARD,BUENA VISTA TWP,18,2008,1,RES1,3001 -0105_2002_7,-74.75762675,39.43239238,7723 VENICE BOULEVARD,BUENA VISTA TWP,17,1997,1,GOV1,3004 -0105_2002_9,-74.59100493,39.37890123,7715 VENICE BOULEVARD,BUENA VISTA TWP,17,1984,1,RES1,3001 -0105_201_1,-74.5229183,39.41849444,11 WEST COLTON LANE,BUENA VISTA TWP,17,1967,1,GOV1,3004 -0105_201_11,-74.64868693,39.45528161,12 MALAGA ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_201_12,-74.4972325,39.430612,14 MALAGA ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_201_13,-74.5961595,39.3421365,16 MALAGA ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_201_14,-74.63815427,39.43032094,18 MALAGA ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_201_15,-74.532044,39.3793125,WEST COLTON LANE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_201_2,-74.6610675,39.447291,9 WEST COLTON LANE,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_201_3,-74.69690649,39.59495665,7 WEST COLTON LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_201_4,-74.760624,39.4315635,5 WEST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_201_7,-74.599033,39.3606385,505 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_201_8,-74.92423004,39.50888376,6 MALAGA ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_202_1,-74.3704515,39.416706,412 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_202_10,-74.568999,39.479392,409 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_202_11,-74.52699252,39.39621032,411 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_202_12,-74.45405724,39.35463019,6 WEST COLTON LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_202_13,-74.63382793,39.43110982,8 WEST COLTON LANE,BUENA VISTA TWP,17,1956,1,GOV1,3004 -0105_202_14,-74.66071484,39.51788952,CUSHMAN AVENUE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_202_2,-74.72811963,39.45632179,410 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_202_3,-74.55663618,39.46751417,408 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_202_4,-74.61066501,39.42485522,406 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_202_5,-74.75590107,39.44668666,404 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_202_6,-74.65018187,39.4597127,401 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_202_7,-74.51920475,39.32143659,403 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_202_8,-74.46129437,39.54677768,405 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES3B,3001 -0105_202_9,-74.79676946,39.63770592,407 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_203_1,-74.38261121,39.39896207,310 KINGS LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_203_11,-74.606568,39.422028,309 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_203_12,-74.8115745,39.651138,311 CUSHMAN AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_203_13,-74.79963435,39.63525145,314 CAINS MILL ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_203_2,-74.488614,39.3382525,308 KINGS LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_203_3,-74.591053,39.335441,306 KINGS LANE,BUENA VISTA TWP,17,1960,1,RES1,3004 -0105_203_4,-74.52163732,39.39440248,304 KINGS LANE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_203_5,-74.81302289,39.65316971,302 KINGS LANE,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_203_6,-74.5114425,39.44172,300 KINGS LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_203_7,-74.5318331,39.30789864,301 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_204_10,-74.72435197,39.45945419,213 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_204_11,-74.523038,39.3204515,215 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_204_12,-74.5280412,39.40090054,217 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_204_2,-74.783283,39.6358755,216 KINGS LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_204_3,-74.58978283,39.3118275,214 KINGS LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_204_5,-74.61121035,39.31570069,210 KINGS LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_204_6,-74.74778916,39.45076601,208 KINGS LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_204_8,-74.4807145,39.340555,211 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_205_1,-74.6238815,39.625153,212 CUSHMAN AVENUE,BUENA VISTA TWP,17,1956,1,GOV1,3004 -0105_205_3,-74.92655875,39.48452109,100 CAROL LANE,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_205_5,-74.7569215,39.4465055,203 COLIN LANE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_206_11,-74.93383687,39.49616591,209 COLIN LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_206_12,-74.39255585,39.38810596,211 COLIN LANE,BUENA VISTA TWP,17,1975,1,GOV1,3004 -0105_206_13,-74.96333333,39.52576683,213 COLIN LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_206_14,-74.45649752,39.37228766,215 COLIN LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_206_15,-74.766997,39.667387,217 COLIN LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_206_16,-74.36409107,39.41877563,219 COLIN LANE,BUENA VISTA TWP,17,1955,1,RES3A,3001 -0105_206_17,-74.65945169,39.59062554,102 CLOVERDALE LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_206_18,-74.37897,39.417594,100 CLOVERDALE LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_206_3,-74.56921764,39.36108208,222 CUSHMAN AVENUE,BUENA VISTA TWP,17,1977,1,GOV1,3004 -0105_206_4,-74.91253771,39.51160516,220 CUSHMAN AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_206_5,-74.56463182,39.35334197,218 CUSHMAN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_206_6,-74.94665791,39.53322077,216 CUSHMAN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_206_8,-74.477206,39.3433465,101 CAROL LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_207_1,-74.93257017,39.48262176,410 CAINS MILL ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_207_10,-74.51828767,39.31889699,300 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_207_11,-74.7164635,39.374619,101 CLOVERDALE LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_12,-74.36788451,39.42269358,103 CLOVERDALE LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_13,-74.59450401,39.35960526,301 COLIN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_14,-74.6488045,39.5224155,303 COLIN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_15,-74.538198,39.3881535,305 COLIN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_16,-74.4727965,39.492357,307 COLIN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_17,-74.471039,39.3411915,301 SHADY TERRACE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_18,-74.7576045,39.4341915,303 SHADY TERRACE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_19,-74.62994916,39.35452248,305 SHADY TERRACE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_2,-74.52000953,39.45713613,408 CAINS MILL ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_20,-74.5269295,39.38218933,307 SHADY TERRACE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_207_21,-74.958366,39.498076,309 SHADY TERRACE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_22,-74.77657816,39.513777,10 EAST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_23,-74.65487908,39.59427514,8 EAST COLTON LANE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_207_24,-74.49347339,39.33465885,6 EAST COLTON LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_3,-74.36817973,39.40579483,406 CAINS MILL ROAD,BUENA VISTA TWP,17,1963,1,GOV1,3004 -0105_207_4,-74.5243205,39.383715,404 CAINS MILL ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_5,-74.5529765,39.382644,402 CAINS MILL ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_6,-74.432114,39.3696925,308 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_7,-74.50755107,39.46277064,306 CUSHMAN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_207_8,-74.78780159,39.63686059,304 CUSHMAN AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_208_1,-74.71302144,39.47309617,530 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_208_10,-74.71585888,39.44059752,512 CAINS MILL ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_208_11,-74.490943,39.3330095,510 CAINS MILL ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_12,-74.79688678,39.63889531,508 CAINS MILL ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_13,-74.4604126,39.49504692,506 CAINS MILL ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_14,-74.50151783,39.430148,504 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_208_15,-74.94717863,39.51596905,502 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_208_16,-74.637905,39.400604,500 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_208_17,-74.80627992,39.63035315,7 EAST COLTON LANE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_19,-74.3791615,39.3974075,505 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES2,3005 -0105_208_2,-74.37272698,39.40394083,528 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_208_20,-74.4399565,39.4875715,507 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,GOV1,3004 -0105_208_21,-74.8281623,39.39939137,509 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,GOV1,3004 -0105_208_22,-74.66040985,39.53694196,511 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_23,-74.4946225,39.456738,513 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_24,-74.48848226,39.47153358,515 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_25,-74.55738873,39.35928783,517 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_26,-74.7338985,39.643042,519 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_27,-74.51716865,39.31988953,521 WILDWOOD AVENUE,BUENA VISTA TWP,17,1957,1,GOV1,3004 -0105_208_28,-74.80872285,39.63610594,523 WILDWOOD AVENUE,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_208_29,-74.5065145,39.3253975,525 WILDWOOD AVENUE,BUENA VISTA TWP,17,1957,1,GOV1,3004 -0105_208_3,-74.43840852,39.3707845,526 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_208_30,-74.63527534,39.43020015,527 WILDWOOD AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_208_31,-74.55413246,39.36482244,529 WILDWOOD AVENUE,BUENA VISTA TWP,17,1959,1,GOV1,3004 -0105_208_32,-74.68832744,39.35938711,531 WILDWOOD AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_208_4,-74.60584993,39.32929739,524 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_208_5,-74.556135,39.362607,522 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_208_6,-74.57470473,39.42593203,520 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_208_7,-74.6130985,39.387724,518 CAINS MILL ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_208_8,-74.579058,39.313836,516 CAINS MILL ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_208_9,-74.46465516,39.3487571,514 CAINS MILL ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_209_10,-74.56542696,39.40927478,509 CAINS MILL ROAD,BUENA VISTA TWP,17,1961,1,GOV1,3004 -0105_209_11,-74.50414989,39.33100233,511 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_209_12,-74.44160991,39.36589821,513 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_209_13,-74.869799,39.593611,515 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_209_14,-74.68607082,39.51545383,517 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_209_15,-74.798316,39.6280215,519 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_209_16,-74.403474,39.3895845,521 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_209_17,-74.4869715,39.5211675,523 CAINS MILL ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_209_18,-74.63306217,39.44007001,525 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_209_19,-74.59048088,39.34916827,527 CAINS MILL ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_209_3,-74.79247488,39.6435527,510 RIDGEWOOD TERRACE,BUENA VISTA TWP,17,1973,1,GOV1,3004 -0105_209_5,-74.39736989,39.38615224,506 RIDGEWOOD TERRACE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_209_6,-74.3816685,39.394381,504 RIDGEWOOD TERRACE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_209_7,-74.612372,39.5280325,502 RIDGEWOOD TERRACE,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_209_8,-74.757873,39.429782,500 RIDGEWOOD TERRACE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_209_9,-74.62693797,39.60957734,507 CAINS MILL ROAD,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_210_1,-74.59391322,39.36256774,19 MALAGA ROAD,BUENA VISTA TWP,16,1976,1,RES1,3001 -0105_2104_18,-74.52001715,39.45836123,305 RISA AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2105_127,-74.51591967,39.41667282,305 LAKE ANN ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2105_151,-74.5995323,39.38386429,JACKSON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2105_3,-74.89254698,39.47215027,308 RISA AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2105_39,-74.4912929,39.49654608,313 CRESPI AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2105_45,-74.592131,39.3968155,141 UNEXPECTED ROAD,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_2105_47,-74.88746423,39.59574112,304 CRESPI AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2105_85,-74.79404815,39.36353556,307 SORRENTO AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2105_87,-74.5247363,39.31676585,151 UNEXPECTED ROAD,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_2105_90,-74.6135305,39.4894005,308 SORRENTO AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_211_1,-74.5584495,39.540008,520 WILDWOOD AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_10,-74.8070585,39.313589,502 WILDWOOD AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_211_11,-74.44684597,39.48256829,101 EAST COLTON LANE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_12,-74.790337,39.518995,103 EAST COLTON LANE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_13,-74.60392055,39.32489791,105 EAST COLTON LANE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_14,-74.62572929,39.43611925,107 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_15,-74.422014,39.37293,109 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_16,-74.94646,39.5176235,111 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_17,-74.5309395,39.4982185,403 WILTSHIRE TERRACE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_18,-74.65320251,39.35629025,405 WILTSHIRE TERRACE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_19,-74.45977605,39.49153111,407 WILTSHIRE TERRACE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_2,-74.5128565,39.4049415,518 WILDWOOD AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_20,-74.70584913,39.42885481,405 WOODLAWN AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_21,-74.5166115,39.399139,113 EAST COLTON LANE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_22,-74.489425,39.4411335,115 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_23,-74.760578,39.639484,117 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_24,-74.51484914,39.53653332,407 WOODLAWN AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_25,-74.70965297,39.47160459,409 WOODLAWN AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_26,-74.8778793,39.59587779,411 WOODLAWN AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_27,-74.39092007,39.38839665,413 WOODLAWN AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_3,-74.601347,39.420005,516 WILDWOOD AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_4,-74.60836685,39.48987745,514 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_5,-74.3655795,39.4153875,512 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_211_6,-74.824828,39.40277,510 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,GOV1,3004 -0105_211_7,-74.798771,39.6432545,508 WILDWOOD AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_8,-74.50026995,39.3357654,506 WILDWOOD AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_211_9,-74.71230343,39.47040967,504 WILDWOOD AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3002 -0105_212_1,-74.68221644,39.4462002,100 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_212_10,-74.630276,39.357675,113 CLOVERDALE LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_212_11,-74.50472895,39.42989866,112 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_212_12,-74.38063059,39.4017102,110 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_212_13,-74.89747603,39.53919329,108 EAST COLTON LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_212_14,-74.74599394,39.6374548,106 EAST COLTON LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_212_15,-74.72049951,39.57918998,104 EAST COLTON LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_212_16,-74.69418414,39.44686649,102 EAST COLTON LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_212_2,-74.48809021,39.52193315,306 COLIN LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_212_3,-74.60628271,39.38299953,304 COLIN LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_212_4,-74.811167,39.4522935,302 COLIN LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_212_5,-74.51316817,39.43787549,300 COLIN LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_212_6,-74.53322872,39.38612893,105 CLOVERDALE LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_212_7,-74.63384764,39.55191945,107 CLOVERDALE LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_212_8,-74.51945767,39.31980699,109 CLOVERDALE LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_212_9,-74.4226275,39.37146,111 CLOVERDALE LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_213_1,-74.509599,39.3396485,104 CLOVERDALE LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_10,-74.80663066,39.43566932,305 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_213_11,-74.48458151,39.47499957,307 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_12,-74.78108871,39.63146541,309 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_13,-74.46665423,39.45349133,311 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_14,-74.564642,39.3656925,313 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_15,-74.63216247,39.35512175,114 CLOVERDALE LANE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_213_16,-74.81722103,39.41065164,112 CLOVERDALE LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_17,-74.50306044,39.50348016,110 CLOVERDALE LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_18,-74.62745184,39.60023852,108 CLOVERDALE LANE,BUENA VISTA TWP,17,1971,2,RES1,3004 -0105_213_19,-74.8071715,39.6324205,106 CLOVERDALE LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_2,-74.62049067,39.3741517,214 COLIN LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_213_3,-74.5301675,39.401467,212 COLIN LANE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_213_5,-74.627143,39.462043,105 CAROL LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_6,-74.81127932,39.64593683,107 CAROL LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_8,-74.52993216,39.40184109,301 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_213_9,-74.49698639,39.43251326,303 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_214_2,-74.57618993,39.35398168,204 COLIN LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_214_3,-74.54964839,39.46752822,110 CAROL LANE,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_214_5,-74.52147967,39.39492873,114 CAROL LANE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_214_6,-74.71854569,39.57447179,116 CAROL LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_215_10,-74.68031799,39.38497032,304 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_11,-74.59089914,39.35974312,302 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_215_12,-74.52117595,39.39808772,300 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_215_13,-74.60760093,39.43951765,CAROL LANE,BUENA VISTA TWP,,1999,1,RES1,3001 -0105_215_14,-74.87238543,39.600063,113 CAROL LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_215_15,-74.524503,39.398888,115 CAROL LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_215_16,-74.56001453,39.53579966,211 WOODLAWN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_215_17,-74.491143,39.433001,301 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_18,-74.52707365,39.39696982,303 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_19,-74.56891818,39.36745299,305 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_2,-74.53409207,39.30560615,320 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_20,-74.58318644,39.32494462,307 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_21,-74.61807536,39.43020699,309 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_22,-74.9192985,39.4813415,311 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_23,-74.938764,39.5289065,313 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,COM1,3004 -0105_215_26,-74.43121291,39.36856842,319 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3002 -0105_215_27,-74.5464945,39.468814,321 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_28,-74.60433261,39.38440045,323 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_3,-74.79091968,39.67535704,318 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_215_30,-74.747129,39.4512965,116 EAST COLTON LANE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_215_4,-74.63141231,39.45784075,316 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_5,-74.64099251,39.53345833,314 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_6,-74.5049295,39.4138765,312 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_215_7,-74.48168607,39.35208661,310 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_215_8,-74.733665,39.441694,308 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_215_9,-74.5264385,39.384853,306 WILTSHIRE DRIVE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_216_1,-74.563522,39.354707,420 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_10,-74.84524881,39.51884273,402 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_11,-74.67633244,39.55389335,400 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_12,-74.54836753,39.3747653,32 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,GOV1,3004 -0105_216_13,-74.78932799,39.63601064,30 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_14,-74.39904172,39.39006476,28 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_15,-74.52676452,39.45672099,26 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_16,-74.51416783,39.39438791,24 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_17,-74.88260457,39.60249727,22 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_18,-74.55493974,39.47208508,20 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_19,-74.8086693,39.6365368,18 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_2,-74.80323566,39.62542048,418 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_20,-74.5918645,39.330019,16 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_21,-74.62624151,39.52971067,14 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_22,-74.63274607,39.41639878,12 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_216_3,-74.37258517,39.4069368,416 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_216_4,-74.597254,39.330007,414 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_5,-74.94113,39.520448,412 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_6,-74.6047085,39.360887,410 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_7,-74.95152501,39.52152667,408 WOODLAWN AVENUE,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_216_8,-74.579682,39.311691,406 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_216_9,-74.8125331,39.65338455,404 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_10,-74.58233,39.3727755,301 JAY'S AVENUE,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_217_11,-74.63187781,39.42024142,303 JAY'S AVENUE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_217_12,-74.3670945,39.4107255,305 JAY'S AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_13,-74.75810296,39.44478417,307 JAY'S AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_14,-74.557148,39.3697105,309 JAY'S AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_15,-74.4839865,39.3382675,311 JAY'S AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_16,-74.88063871,39.44388826,313 JAY'S AVENUE,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_217_17,-74.6598035,39.3461835,315 JAY'S AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_19,-74.72532416,39.45893582,319 JAY'S AVENUE,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_217_2,-74.504329,39.409264,326 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_217_3,-74.4110845,39.3828205,324 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_4,-74.47923526,39.33931079,322 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_5,-74.89437985,39.54066085,320 WOODLAWN AVENUE,BUENA VISTA TWP,17,1962,1,GOV1,3004 -0105_217_6,-74.9298025,39.5076875,318 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_7,-74.83382109,39.48524531,316 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_217_8,-74.515524,39.327244,201 EVERGREEN AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_217_9,-74.81685603,39.41162117,203 EVERGREEN AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_218_1,-74.398086,39.3868215,200 EVERGREEN AVENUE,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_218_10,-74.4978542,39.49943281,204 EVERGREEN AVENUE,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_218_11,-74.52441966,39.44855697,202 EVERGREEN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_218_5,-74.71394596,39.46560969,207 WAYNE AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_218_7,-74.5447695,39.371085,211 JAY'S AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_219_1,-74.64150808,39.52530513,208 WOODLAWN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_219_2,-74.62537716,39.35789036,202 WAYNE AVENUE,BUENA VISTA TWP,17,1971,1,COM4,3004 -0105_219_3,-74.6780724,39.48475866,204 WAYNE AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_219_5,-74.58688819,39.40238008,208 WAYNE AVENUE,BUENA VISTA TWP,17,1971,1,COM1,3004 -0105_219_7,-74.9564775,39.537905,212 WAYNE AVENUE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_219_8,-74.6384435,39.36538153,214 WAYNE AVENUE,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_2208_16,-74.5909135,39.377248,218 WASHBURN STREET,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2220_16,-74.6264455,39.353917,MC HUGH AVENUE REAR,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2220_63,-74.554021,39.3656535,311 UNEXPECTED ROAD,BUENA VISTA TWP,,0,1,RES3B,3001 -0105_2220_86,-74.73254732,39.45388661,142 VAN BUREN ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2301_22,-74.39863832,39.38654298,113 VALERIE AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2301_31,-74.63155487,39.43148904,520 RUTH STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2301_32,-74.35647736,39.41565705,522 RUTH STREET,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_2301_33,-74.614373,39.316081,524 RUTH STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2301_6,-74.4956635,39.523442,782 ROUTE 54,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_2301_8,-74.40817667,39.38226328,778 ROUTE 54,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2301_9,-74.55154162,39.4644398,776 ROUTE 54,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2302_14,-74.60032849,39.41640433,724 ROUTE 54,BUENA VISTA TWP,47,1975,4,RES1,3001 -0105_2302_28,-74.59972314,39.42806786,406 RUTH STREET,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_2302_44,-74.536313,39.3050905,444 RUTH STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2302_7,-74.6618775,39.57387,738 ROUTE 54,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_2302_8,-74.64938317,39.53352349,ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2302_9,-74.646212,39.407894,ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2303_1,-74.6069045,39.50177,642 ROUTE 54,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_2303_22,-74.75575919,39.43396274,314 RUTH STREET,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2305_48,-74.5705857,39.36230651,286 GREEN STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2306_15,-74.63602753,39.52337716,519 RUTH STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2401_1,-74.54364501,39.37489448,795 ROUTE 54,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_2401_10,-74.37315931,39.40516374,511 NORMAN ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_2401_12,-74.72429892,39.45471819,505 NORMAN ROAD,BUENA VISTA TWP,17,1999,2,RES1,3001 -0105_2401_15,-74.75892528,39.44832796,153 COLIN ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2401_16,-74.59770459,39.43455963,149 COLIN ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2401_17,-74.640709,39.5350815,147 COLIN ROAD,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_2401_19,-74.51030747,39.33739067,141 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_2,-74.80541059,39.63627577,797 ROUTE 54,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2401_20,-74.364621,39.4073365,139 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_21,-74.83317037,39.59255506,137 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_22,-74.50865194,39.3299822,135 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_23,-74.8565155,39.4598725,131 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_24,-74.47167854,39.48848631,129 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_25,-74.47249068,39.34205349,127 COLIN ROAD,BUENA VISTA TWP,17,1954,2,RES1,3001 -0105_2401_26,-74.49457433,39.33118542,123 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_27,-74.63926686,39.36075243,121 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_28,-74.61034327,39.49050139,119 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_29,-74.4804565,39.3380635,115 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_3,-74.6425215,39.5254475,531 NORMAN ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2401_30,-74.373419,39.4113405,113 COLIN ROAD,BUENA VISTA TWP,17,1954,1,GOV1,3004 -0105_2401_31,-74.5043408,39.34109917,127 LEGHORN ROAD,BUENA VISTA TWP,17,1958,1,GOV1,3004 -0105_2401_35,-74.934031,39.497236,103 LEGHORN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_45,-74.6936845,39.4912015,765 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2401_47,-74.61553648,39.38329543,769 ROUTE 54,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_2401_49,-74.77998733,39.644539,775 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2401_5,-74.63532163,39.43103499,527 NORMAN ROAD,BUENA VISTA TWP,17,1956,1,GOV1,3004 -0105_2401_50,-74.37787335,39.40283998,779 ROUTE 54,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2401_52,-74.5920408,39.37713491,785 ROUTE 54,BUENA VISTA TWP,17,1954,1,GOV1,3004 -0105_2401_6,-74.61434146,39.31964496,523 NORMAN ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2401_9,-74.50229576,39.41317665,515 NORMAN ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2402_1,-74.54216969,39.37343935,445 NORMAN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_10,-74.8865305,39.5942735,137 BERTI STREET,BUENA VISTA TWP,17,1954,1,GOV1,3004 -0105_2402_11,-74.805565,39.6351665,135 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3003 -0105_2402_12,-74.59148306,39.35282139,131 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_13,-74.749974,39.6525945,129 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_14,-74.883986,39.5411055,127 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_15,-74.615619,39.351206,123 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_16,-74.5546835,39.361558,121 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_17,-74.64039229,39.5296951,119 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_18,-74.86765513,39.59493231,115 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_19,-74.46940659,39.34518666,113 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_20,-74.8178785,39.640819,107 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_23,-74.46299138,39.35729025,106 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_25,-74.646052,39.534705,114 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_26,-74.6028565,39.3270855,116 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_27,-74.541797,39.375664,118 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_28,-74.60911495,39.3474788,120 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_29,-74.61963988,39.38007222,124 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_30,-74.6093965,39.3840515,126 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_31,-74.93911364,39.5242717,128 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_32,-74.51838934,39.39825581,132 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_33,-74.7242424,39.45566028,136 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_34,-74.536128,39.382865,138 COLIN ROAD,BUENA VISTA TWP,17,1954,1,GOV1,3004 -0105_2402_35,-74.60374033,39.32636698,140 COLIN ROAD,BUENA VISTA TWP,17,1953,1,RES1,3001 -0105_2402_36,-74.38548144,39.39397404,144 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_37,-74.38945301,39.39216217,146 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_38,-74.58903705,39.35572472,148 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_39,-74.71431095,39.57857116,152 COLIN ROAD,BUENA VISTA TWP,17,1954,1,GOV1,3004 -0105_2402_4,-74.5243965,39.396918,149 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_40,-74.37489879,39.4013629,154 COLIN ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_5,-74.67708939,39.35879178,147 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_6,-74.54225423,39.46038717,145 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES3A,3001 -0105_2402_7,-74.49300833,39.42115783,143 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_8,-74.604325,39.361175,141 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2402_9,-74.74991309,39.44925118,139 BERTI STREET,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_2403_1,-74.9392185,39.5273745,148 BERTI STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2404_18,-74.63348678,39.43961655,106 BERTI STREET,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_2404_23,-74.5350664,39.38259314,124 BERTI STREET,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_2404_8,-74.63682553,39.43061194,ROSS ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2404_9,-74.61722368,39.32127706,ROSS ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2405_5,-74.44160715,39.35813452,ROSS ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2405_6,-74.755857,39.4325455,ROSS ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2406_12,-74.59954669,39.40238607,207 LEGHORN ROAD,BUENA VISTA TWP,17,1992,1,RES4,3001 -0105_2503_11,-74.49112999,39.33974167,645 WEYMOUTH ROAD,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_2503_12,-74.92884749,39.50886983,657 WEYMOUTH ROAD,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_2503_4,-74.601238,39.4098815,166 NINTH STREET,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_2503_8,-74.38210632,39.40010071,705 WEYMOUTH ROAD,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_2504_3,-74.48140041,39.43160532,185 NINTH STREET,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_2504_5,-74.45882483,39.35109801,175 NINTH STREET,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_2504_7,-74.650745,39.529755,165 NINTH STREET,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_2601_10,-74.59354035,39.36390886,155 PARK AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2601_11,-74.3889735,39.3898485,214 BERNADETTE LANE,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_2601_13,-74.80877226,39.63369832,205 BERNADETTE LANE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2601_15,-74.59635932,39.3104293,143 PARK AVENUE,BUENA VISTA TWP,16,1950,1,RES1,3001 -0105_2601_16,-74.58047631,39.47298296,139 PARK AVENUE,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_2601_19,-74.81328883,39.644589,129 PARK AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2601_20,-74.53957533,39.3719962,127 PARK AVENUE,BUENA VISTA TWP,16,2013,1,RES1,3001 -0105_2601_21,-74.69375466,39.63728479,121 PARK AVENUE,BUENA VISTA TWP,16,1960,1,RES3A,3001 -0105_2601_22,-74.36852917,39.41434194,119 PARK AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2601_23,-74.81350692,39.43990829,113 PARK AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_2601_5,-74.55077121,39.46917703,165 PARK AVENUE,BUENA VISTA TWP,15,1962,1,RES1,3001 -0105_2602_1,-74.85122887,39.48458474,390 EIGHTH STREET,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_2602_17,-74.55639263,39.46880687,510 HOPKINS ROAD,BUENA VISTA TWP,17,1950,1,COM4,3004 -0105_2602_18,-74.64426369,39.43602923,364 EIGHTH STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2602_19,-74.52122888,39.40451192,366 EIGHTH STREET,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_2602_2,-74.4970745,39.337724,506 HOPKINS ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2602_20,-74.4635095,39.3524815,EIGHTH STREET,BUENA VISTA TWP,,0,1,COM1,3004 -0105_2602_21,-74.8352888,39.40341205,358 EIGHTH STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2602_22,-74.40892378,39.38222501,380 EIGHTH STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2602_23,-74.870374,39.4546735,378 EIGHTH STREET,BUENA VISTA TWP,17,1950,2,RES1,3001 -0105_2602_3,-74.8297485,39.487741,384 EIGHTH STREET,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_2602_4,-74.60065388,39.42967434,528 HOPKINS ROAD,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_2602_5,-74.5919495,39.3646915,7732 VENICE BOULEVARD,BUENA VISTA TWP,18,2000,1,RES1,3001 -0105_2602_6,-74.88092757,39.47752843,7726 VENICE BOULEVARD,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_2602_9,-74.64981285,39.45734057,7704 VENICE BOULEVARD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_2603_1,-74.7217675,39.4485695,272 CHURCH STREET,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_2603_5,-74.49884849,39.49575432,WEYMOUTH ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2603_6,-74.64155522,39.52600256,835 WEYMOUTH ROAD,BUENA VISTA TWP,17,2009,1,RES1,3001 -0105_2603_7,-74.80416321,39.63702481,827 WEYMOUTH ROAD,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_2605_3,-74.59308285,39.31250953,755 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_2605_4,-74.94724661,39.4966598,763 WEYMOUTH ROAD,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_2605_5,-74.600292,39.4341525,751 WEYMOUTH ROAD,BUENA VISTA TWP,17,2009,1,RES1,3001 -0105_2606_3,-74.55168722,39.37245019,EIGHTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2606_4,-74.6906976,39.44953324,741 WEYMOUTH ROAD,BUENA VISTA TWP,17,2009,1,RES1,3001 -0105_2606_5,-74.762403,39.6405805,735 WEYMOUTH ROAD,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_2606_6,-74.85019587,39.42964478,725 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_2608_10,-74.76238292,39.4454798,143 GEORGES ROAD,BUENA VISTA TWP,,1930,1,RES1,3001 -0105_2608_12,-74.5473625,39.374073,133 GEORGES ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2608_15,-74.63557492,39.62349038,GEORGES ROAD REAR,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2608_3,-74.50742403,39.40205864,150 PARK AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_2608_4,-74.66545564,39.62092599,154 PARK AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_2608_6,-74.54656,39.4771415,160 PARK AVENUE,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_2701_1,-74.6404105,39.43581337,104 UNEXPECTED ROAD,BUENA VISTA TWP,16,1940,1,RES1,3001 -0105_2701_2,-74.6881935,39.4973075,102 UNEXPECTED ROAD,BUENA VISTA TWP,16,1940,2,RES1,3001 -0105_2701_3,-74.67257867,39.49656306,110 UNEXPECTED ROAD,BUENA VISTA TWP,16,1920,1,RES1,3001 -0105_2803_1,-74.74943299,39.44620116,201 ROME AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2803_22,-74.6265153,39.37463482,245 ROME AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_2804_10,-74.629016,39.427396,222 ROME AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_2804_21,-74.8115675,39.6506955,132 UNEXPECTED ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2804_24,-74.4522335,39.4930695,239 RISA AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2804_25,-74.58708468,39.31983686,235 RISA AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2804_26,-74.49543581,39.47077687,233 RISA AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2804_39,-74.49294733,39.38018199,205 RISA AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2805_19,-74.8046085,39.6361935,242 RISA AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2805_2,-74.466692,39.492225,204 RISA AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2805_21,-74.48424366,39.33782393,142 UNEXPECTED ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2805_24,-74.612387,39.3647575,239 CRESPI AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2805_29,-74.80912731,39.38239992,227 CRESPI AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2805_35,-74.88183385,39.48366146,215 CRESPI AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2806_14,-74.51061269,39.32776418,232 CRESPI AVENUE,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_2806_17,-74.5814241,39.34189066,238 CRESPI AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_2806_19,-74.594866,39.323532,242 CRESPI AVENUE,BUENA VISTA TWP,17,1966,1,RES1,3001 -0105_2806_21,-74.69245066,39.49630648,152 UNEXPECTED ROAD,BUENA VISTA TWP,17,1960,2,RES1,3001 -0105_2806_23,-74.87679067,39.59290151,239 SORRENTO AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2806_24,-74.46517352,39.35864534,SORRENTO AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2806_25,-74.78582265,39.44444075,SORRENTO AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2807_1,-74.50496,39.332344,139 ANN STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2807_18,-74.66074207,39.40296584,242 SORRENTO AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2807_19,-74.60944385,39.47354194,158 UNEXPECTED ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2807_21,-74.79995843,39.65433573,243 LAKE ANN ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2807_22,-74.60219828,39.32670966,241 LAKE ANN ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2807_24,-74.63020038,39.35030803,235 LAKE ANN ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2807_6,-74.55722017,39.361679,214 SORRENTO AVENUE,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_2808_27,-74.465583,39.5346525,218 LAKE ANN ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_2808_40,-74.4168435,39.36843416,204 UNEXPECTED ROAD,BUENA VISTA TWP,17,1959,1,GOV1,3004 -0105_2814_26,-74.63043621,39.36518546,177 RISA AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_2901_59,-74.6495055,39.529101,KAVALEER AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_2914_13,-74.7678395,39.3854885,508 CEDAR LAKE ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_3001_1,-74.6621165,39.396922,112 LEGHORN ROAD,BUENA VISTA TWP,,1950,1,RES1,3001 -0105_3001_14,-74.810717,39.450758,611 ROUTE 54,BUENA VISTA TWP,17,1996,1,RES1,3001 -0105_3001_2,-74.60145845,39.47909469,261 EDWARD STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_3001_5,-74.41997978,39.37114535,705 ROUTE 54,BUENA VISTA TWP,15,1952,1,RES1,3001 -0105_3001_6,-74.53080919,39.4181305,641 ROUTE 54,BUENA VISTA TWP,17,1999,1,RES1,3001 -0105_3001_7,-74.78717,39.64128,EDWARD STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3002_2,-74.51473955,39.32820017,126 LEGHORN ROAD,BUENA VISTA TWP,17,1985,1,GOV1,3004 -0105_301_1,-74.61185086,39.33974416,100 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_301_11,-74.55712385,39.36787174,300 FAIRMONT AVENUE,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_301_12,-74.634886,39.3618025,128 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_301_13,-74.86396516,39.60609152,126 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_301_14,-74.594327,39.341864,124 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1959,1,GOV1,3004 -0105_301_15,-74.5140485,39.4015785,122 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_301_17,-74.73187946,39.45402056,118 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_301_18,-74.4136905,39.37058617,116 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_301_19,-74.65260593,39.62639761,114 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_301_20,-74.41491757,39.50461198,112 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_301_21,-74.61981033,39.4899665,110 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_301_22,-74.48276933,39.34002417,108 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,COM1,3004 -0105_301_23,-74.711938,39.6353215,106 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_301_24,-74.73161896,39.45432268,104 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_301_25,-74.62772804,39.42093431,102 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_301_3,-74.3696035,39.401694,316 FAIRMONT AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_301_6,-74.601612,39.380173,310 FAIRMONT AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_301_7,-74.63282273,39.35785847,308 FAIRMONT AVENUE,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_301_8,-74.60221446,39.33067084,306 FAIRMONT AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_302_1,-74.79627765,39.36541233,315 FAIRMONT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_302_10,-74.73207169,39.46050148,305 FAIRMONT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_302_3,-74.3666715,39.408456,306 JAY'S AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_302_4,-74.46544417,39.3473465,304 JAY'S AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_302_6,-74.62377112,39.62543919,213 EVERGREEN AVENUE,BUENA VISTA TWP,17,1960,1,RES3A,3001 -0105_302_7,-74.884336,39.4625185,215 EVERGREEN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_302_8,-74.57667,39.33758,301 FAIRMONT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_302_9,-74.6146095,39.320178,303 FAIRMONT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_303_1,-74.48279932,39.43400477,210 EVERGREEN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_303_2,-74.519118,39.3229195,213 WAYNE AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_303_4,-74.7272335,39.4473125,217 WAYNE AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_303_5,-74.87427966,39.59342597,219 WAYNE AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_303_6,-74.40912002,39.37978398,216 EVERGREEN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_303_7,-74.630683,39.4328355,214 EVERGREEN AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_303_8,-74.85213679,39.60665557,212 EVERGREEN AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_304_1,-74.83702009,39.37076984,216 WAYNE AVENUE,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_304_2,-74.65857233,39.36502672,218 WAYNE AVENUE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_304_3,-74.75434719,39.44529691,220 WAYNE AVENUE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_304_4,-74.50991788,39.32256216,222 WAYNE AVENUE,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_305_1,-74.52783659,39.31065886,224 WAYNE AVENUE,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_305_2,-74.8859315,39.5983985,226 WAYNE AVENUE,BUENA VISTA TWP,17,1964,1,GOV1,3004 -0105_305_3,-74.63208827,39.35970684,228 WAYNE AVENUE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_305_4,-74.57272723,39.35963504,230 WAYNE AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_305_5,-74.42212083,39.372645,232 WAYNE AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_305_6,-74.3987995,39.3858075,234 WAYNE AVENUE,BUENA VISTA TWP,17,1964,1,GOV1,3004 -0105_305_9,-74.65954659,39.36679542,210 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1972,1,COM4,3004 -0105_306_1,-74.50973792,39.42784081,218 EVERGREEN AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_306_10,-74.7113745,39.4343225,222 EVERGREEN AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_306_11,-74.58349375,39.36436969,220 EVERGREEN AVENUE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_306_2,-74.8005775,39.4581765,221 WAYNE AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_306_3,-74.64884672,39.45452981,223 WAYNE AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_306_4,-74.370949,39.4195565,225 WAYNE AVENUE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_306_5,-74.88036189,39.44757874,227 WAYNE AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_306_6,-74.425983,39.3601585,206 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_306_7,-74.746047,39.5914025,204 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_306_8,-74.70350702,39.44688114,202 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_306_9,-74.5262753,39.41112865,200 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_3102_15,-74.72087784,39.46369836,241 RUTH STREET,BUENA VISTA TWP,17,1990,1,GOV1,3004 -0105_3102_2,-74.72692966,39.45888703,126 RANCH DRIVE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_3103_2,-74.823238,39.4111415,570 ROUTE 54,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_3103_35,-74.5042845,39.335712,502 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3103_65,-74.49745067,39.33312399,266 RUTH STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_3104_1,-74.751287,39.451387,ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3104_6,-74.56354883,39.3607824,503 ROUTE 54,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_3104_7,-74.76500207,39.35020642,505 ROUTE 54,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_3204_6,-74.48920868,39.4186966,110 CARMICHAEL AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3205_3,-74.79083708,39.67772641,1210 CAINS MILL ROAD,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_3206_13,-74.52156116,39.32198401,488 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3207_6,-74.58603539,39.34970719,ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3208_2,-74.53676047,39.30400372,437 ROUTE 54,BUENA VISTA TWP,17,2003,1,COM7,3004 -0105_3211_1.01,-74.934794,39.5033525,207 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_3211_1.02,-74.59796849,39.31577384,217 WEYMOUTH ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_3211_1.03,-74.5811255,39.3590105,227 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_3211_1.04,-74.582417,39.431677,417 ROUTE 54,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_3211_1.05,-74.5837365,39.419442,411 ROUTE 54,BUENA VISTA TWP,17,1997,1,RES1,3001 -0105_3211_1.06,-74.6122045,39.4145235,405 ROUTE 54,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_3211_11,-74.3662365,39.4175585,317 WEYMOUTH ROAD,BUENA VISTA TWP,16,1950,1,RES1,3001 -0105_3211_12,-74.62445721,39.35356916,321 WEYMOUTH ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_3211_13,-74.82079434,39.63629898,329 WEYMOUTH ROAD,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_3211_2,-74.63377332,39.51207115,235 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3211_3,-74.690991,39.4885575,241 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_3211_4,-74.3977685,39.387793,247 WEYMOUTH ROAD,BUENA VISTA TWP,17,1965,1,EDU1,3004 -0105_3211_5,-74.64155126,39.37057304,251 WEYMOUTH ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_3211_6,-74.72239802,39.6386808,257 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3211_7,-74.8205655,39.61626683,301 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3211_8,-74.59767818,39.34363678,307 WEYMOUTH ROAD,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_3211_9,-74.3636725,39.4091645,311 WEYMOUTH ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_3301_1,-74.37219693,39.40580033,333 WEYMOUTH ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_3301_10,-74.52427779,39.39628867,385 WEYMOUTH ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_3301_11,-74.64214016,39.38609611,413 WEYMOUTH ROAD,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_3301_11.01,-74.49228717,39.33591299,411 WEYMOUTH ROAD,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_3301_13,-74.48869417,39.33345045,435 WEYMOUTH ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_3301_14,-74.4922275,39.335469,439 WEYMOUTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3301_15,-74.63708503,39.34122381,441 WEYMOUTH ROAD,BUENA VISTA TWP,16,1939,1,RES1,3001 -0105_3301_16,-74.55468559,39.54140786,445 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3301_17,-74.51275184,39.40307601,453 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3301_18,-74.80841169,39.64800989,461 WEYMOUTH ROAD,BUENA VISTA TWP,17,2009,1,RES1,3001 -0105_3301_2,-74.59506094,39.31637018,WEYMOUTH ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3301_20,-74.54087056,39.38311301,507 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_3301_21,-74.6870424,39.65308547,521 WEYMOUTH ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_3301_22,-74.6405764,39.52607079,513 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES3A,3001 -0105_3301_23,-74.57135998,39.41838776,527 WEYMOUTH ROAD,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_3301_26,-74.49689926,39.44415092,237 DON ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3301_27,-74.63680748,39.52063113,213 DON ROAD,BUENA VISTA TWP,15,1938,1,RES1,3001 -0105_3301_3,-74.56707283,39.36525655,341 WEYMOUTH ROAD,BUENA VISTA TWP,15,1965,1,COM1,3004 -0105_3301_4,-74.65066547,39.36949294,345 WEYMOUTH ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_3301_7,-74.51581302,39.44890317,355 WEYMOUTH ROAD,BUENA VISTA TWP,17,1992,1,RES1,3001 -0105_3301_8,-74.369099,39.412968,361 WEYMOUTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3301_9,-74.76610706,39.4870932,365 WEYMOUTH ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_3302_3,-74.49270017,39.33067198,242 DON ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3302_4,-74.5532605,39.470434,246 DON ROAD,BUENA VISTA TWP,17,1950,1,RES3A,3001 -0105_3302_5,-74.37371027,39.40672144,232 DON ROAD,BUENA VISTA TWP,17,2005,1,GOV1,3004 -0105_3302_6,-74.7177305,39.566795,228 DON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3402_2,-74.56863761,39.34970091,754 WEYMOUTH ROAD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_3405_1,-74.46312395,39.49256768,838 WEYMOUTH ROAD,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_3405_6,-74.88498712,39.59668816,806 WEYMOUTH ROAD,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_3405_8,-74.51578,39.440676,820 WEYMOUTH ROAD,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_3407_1,-74.45254036,39.49089971,SYCAMORE STREET,BUENA VISTA TWP,,0,1,RES3A,3001 -0105_3407_2,-74.45143128,39.48800274,SYCAMORE STREET,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_3407_5,-74.4524255,39.492327,SYCAMORE STREET,BUENA VISTA TWP,,0,1,IND2,3002 -0105_3407_7,-74.61453982,39.36920669,FRONT STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3408_1,-74.59650913,39.31410831,FRONT STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3408_5,-74.43584646,39.36807182,FRONT STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3408_7,-74.651423,39.350573,FRONT STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3408_9,-74.453818,39.37526033,FRONT STREET,BUENA VISTA TWP,,0,1,COM1,3004 -0105_3501_1,-74.5408905,39.467799,336 WEYMOUTH ROAD,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_3501_10,-74.62955485,39.41724698,125 KAVKAZ PLACE,BUENA VISTA TWP,17,1998,1,GOV1,3004 -0105_3501_11,-74.405064,39.389685,121 KAVKAZ PLACE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3501_12,-74.94605533,39.52719758,115 KAVKAZ PLACE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_3501_15,-74.51896752,39.32108079,279 PANCOAST MILL ROAD,BUENA VISTA TWP,16,1950,1,RES1,3001 -0105_3501_18,-74.4538175,39.480768,124 KAVKAZ PLACE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_3501_2,-74.79519285,39.62971995,342 WEYMOUTH ROAD,BUENA VISTA TWP,17,1959,2,RES1,3001 -0105_3501_22,-74.5112285,39.3979735,WEYMOUTH ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3501_24,-74.3732385,39.405814,430 WEYMOUTH ROAD,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_3501_25,-74.38119217,39.39497349,436 WEYMOUTH ROAD,BUENA VISTA TWP,17,1966,1,RES1,3001 -0105_3501_26,-74.49705814,39.42517986,440 WEYMOUTH ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_3501_27,-74.63389384,39.45610898,442 WEYMOUTH ROAD,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_3501_28,-74.51237476,39.32476533,444 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3501_29,-74.67671943,39.41593569,450 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES3A,3001 -0105_3501_30,-74.53387631,39.31470947,504 WEYMOUTH ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_3501_30.01,-74.62150881,39.43177771,458 WEYMOUTH ROAD,BUENA VISTA TWP,17,1993,1,RES1,3001 -0105_3501_31,-74.66418701,39.5160066,512 WEYMOUTH ROAD,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_3501_32,-74.81881483,39.64783245,520 WEYMOUTH ROAD,BUENA VISTA TWP,17,1991,1,RES3A,3001 -0105_3501_33,-74.52162816,39.39450586,526 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_3501_34,-74.51221212,39.32226822,534 WEYMOUTH ROAD,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_3501_35,-74.50755882,39.32888254,187 DON ROAD,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_3501_36,-74.5168265,39.3882135,155 DON ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3501_38,-74.54607134,39.44339833,145 DON ROAD,BUENA VISTA TWP,17,1965,1,RES3A,3001 -0105_3501_39,-74.71497263,39.4686627,139 DON ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_3501_4,-74.922247,39.514638,348 WEYMOUTH ROAD,BUENA VISTA TWP,17,1998,1,RES3A,3001 -0105_3501_42,-74.395599,39.3893875,DON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3501_48,-74.452111,39.3721935,469 PANCOAST MILL ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3501_49,-74.955272,39.53924874,479 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_3501_5,-74.469627,39.443256,350 WEYMOUTH ROAD,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_3501_50,-74.74899032,39.60209533,139 WALNUT LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3501_51,-74.81391098,39.63698017,145 WALNUT LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3501_53,-74.53818073,39.3822007,155 WALNUT LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3501_54,-74.37533084,39.4034296,159 WALNUT LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3501_56.01,-74.537757,39.514269,163 WALNUT LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3501_59,-74.3721718,39.41175693,WALNUT LANE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3501_6,-74.48199618,39.34673597,358 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES3B,3001 -0105_3501_68,-74.86183,39.556736,624 WEYMOUTH ROAD,BUENA VISTA TWP,17,2001,1,RES1,3001 -0105_3501_9,-74.690514,39.5144815,131 KAVKAZ PLACE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_3601_1,-74.50144868,39.41544708,108 WEYMOUTH ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_3601_11,-74.79117447,39.66611889,324 ROUTE 54,BUENA VISTA TWP,17,1966,1,RES1,3001 -0105_3601_12,-74.77942206,39.65436005,320 ROUTE 54,BUENA VISTA TWP,16,1950,1,GOV1,3004 -0105_3601_14,-74.87441795,39.59612016,127 FRIENDSHIP ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_3601_15,-74.59237691,39.34864862,135 FRIENDSHIP ROAD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_3601_3,-74.51874266,39.3216747,130 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3002 -0105_3601_4,-74.5855975,39.486535,136 WEYMOUTH ROAD,BUENA VISTA TWP,17,1991,1,RES1,3001 -0105_3601_5,-74.5558565,39.3581865,360 ROUTE 54,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_3601_6,-74.82362548,39.57211084,370 ROUTE 54,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_3601_7,-74.64586043,39.45030847,374 ROUTE 54,BUENA VISTA TWP,,1954,1,RES1,3001 -0105_3601_9,-74.87175134,39.59421096,332 ROUTE 54,BUENA VISTA TWP,17,1926,1,GOV1,3004 -0105_3602_1,-74.57083612,39.36317897,104 BELLA VISTA AVENUE,BUENA VISTA TWP,17,1953,1,RES3B,3001 -0105_3602_10,-74.52369765,39.31344354,105 MARILYN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_3602_2,-74.877296,39.5930935,108 BELLA VISTA AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_3602_4,-74.973839,39.5088855,114 BELLA VISTA AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3602_7,-74.71195156,39.43502279,206 WEYMOUTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3602_9,-74.50393167,39.33781598,109 MARILYN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3603_10,-74.64314618,39.43594833,365 ROUTE 54,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_3603_11,-74.58443,39.3591445,367 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3603_12,-74.62600546,39.45887521,369 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3603_13,-74.79892004,39.41291506,373 ROUTE 54,BUENA VISTA TWP,,1949,1,RES1,3001 -0105_3603_14,-74.53459787,39.4686231,377 ROUTE 54,BUENA VISTA TWP,17,1988,1,RES3A,3001 -0105_3603_15,-74.4867053,39.45784833,102 MARILYN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3603_16,-74.44917737,39.37480535,104 MARILYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3603_17,-74.52564223,39.31609547,106 MARILYN AVENUE,BUENA VISTA TWP,16,1945,1,RES1,3001 -0105_3603_2,-74.48992222,39.49850854,317 ROUTE 54,BUENA VISTA TWP,16,1929,1,RES1,3001 -0105_3603_22,-74.7337135,39.463331,103 TERECK ROAD,BUENA VISTA TWP,17,1959,2,RES1,3001 -0105_3603_23,-74.6024925,39.4359545,113 TERECK ROAD,BUENA VISTA TWP,17,1980,1,GOV1,3004 -0105_3603_24,-74.52541985,39.44985053,226 WEYMOUTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_3603_24.01,-74.48179372,39.34650965,216 WEYMOUTH ROAD,BUENA VISTA TWP,17,1997,1,RES1,3001 -0105_3603_24.02,-74.55832542,39.4675595,121 TERECK ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_3603_27,-74.53799133,39.40427084,116 TERECK ROAD,BUENA VISTA TWP,17,1990,2,RES1,3001 -0105_3603_28,-74.73986495,39.43054125,120 TERECK ROAD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_3603_29,-74.7971471,39.62256747,124 TERECK ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_3603_3,-74.50969071,39.3364305,323 ROUTE 54,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_3603_30,-74.565298,39.4762535,128 TERECK ROAD,BUENA VISTA TWP,17,1947,2,RES1,3001 -0105_3603_33,-74.6085435,39.522328,138 TERECK ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3603_34,-74.51026229,39.38604563,238 WEYMOUTH ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_3603_35,-74.582945,39.3675435,244 WEYMOUTH ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_3603_36,-74.45082086,39.48521257,250 WEYMOUTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3002 -0105_3603_37,-74.37311211,39.41563048,306 WEYMOUTH ROAD,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_3603_38,-74.6482955,39.3412275,101 FOY ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3603_4,-74.505327,39.331364,327 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3603_41,-74.38811734,39.39195549,322 WEYMOUTH ROAD,BUENA VISTA TWP,17,1953,1,RES1,3001 -0105_3603_42,-74.572155,39.5129385,328 WEYMOUTH ROAD,BUENA VISTA TWP,17,1970,1,RES1,3004 -0105_3603_43,-74.54736735,39.38134594,332 WEYMOUTH ROAD,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_3603_45,-74.627836,39.604109,243 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_3603_46,-74.559855,39.397913,227 PANCOAST MILL ROAD,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_3603_47,-74.66910724,39.37974203,213 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3603_48,-74.53257308,39.46908574,203 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1950,1,COM10,3003 -0105_3603_49,-74.81876169,39.40860473,187 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1940,1,RES3A,3001 -0105_3603_5,-74.56444085,39.35608318,329 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_3603_50,-74.74885168,39.4503862,183 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_3603_51,-74.59832168,39.31709001,177 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1978,1,RES3B,3001 -0105_3603_52,-74.72215991,39.44414422,165 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_3603_53,-74.62523833,39.6209125,171 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1987,1,RES1,3004 -0105_3603_54,-74.5023975,39.409871,157 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_3603_56,-74.4979866,39.32843632,135 PANCOAST MILL ROAD,BUENA VISTA TWP,16,1920,1,GOV1,3004 -0105_3603_56.01,-74.66968405,39.46345733,127 PANCOAST MILL ROAD,BUENA VISTA TWP,17,2002,1,RES3A,3001 -0105_3603_57,-74.5179,39.3929675,119 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_3603_6,-74.751469,39.4007585,349 ROUTE 54,BUENA VISTA TWP,17,1920,1,COM10,3003 -0105_3603_7,-74.535948,39.3856065,355 ROUTE 54,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_3603_8,-74.950449,39.4908215,359 ROUTE 54,BUENA VISTA TWP,17,1959,1,RES3A,3001 -0105_3701_1,-74.48516233,39.34509002,381 FRIENDSHIP ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_3701_4,-74.8474745,39.488947,335 FRIENDSHIP ROAD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_3701_6,-74.46214552,39.35466117,261 FRIENDSHIP ROAD,BUENA VISTA TWP,17,1980,2,RES1,3001 -0105_3701_8,-74.61407352,39.38327932,125 WEYMOUTH ROAD,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_3801_1,-74.53738244,39.38296409,261 ROUTE 54,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_3801_10,-74.75662728,39.63599602,268 PANCOAST MILL ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3801_11,-74.77436319,39.63455349,284 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_3801_11.01,-74.59858235,39.32449502,308 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_3801_13,-74.4820755,39.3472535,344 PANCOAST MILL ROAD,BUENA VISTA TWP,,1970,1,RES1,3001 -0105_3801_14,-74.911736,39.481005,432 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1890,1,RES1,3001 -0105_3801_16,-74.5391785,39.3801175,480 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1964,1,RES3A,3001 -0105_3801_18,-74.4982955,39.5145685,PANCOAST MILL ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3801_19,-74.51199457,39.39959334,301 COUNTRY CLUB LANE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3801_23,-74.598632,39.360745,261 COUNTRY CLUB LANE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_3801_24,-74.750789,39.447065,255 COUNTRY CLUB LANE,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_3801_25,-74.8293585,39.6231315,223 COUNTRY CLUB LANE,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_3801_3,-74.51531845,39.32135683,138 PANCOAST MILL ROAD,BUENA VISTA TWP,17,2002,2,RES1,3002 -0105_3801_33,-74.56530358,39.36277031,SYLVESTA AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_3801_35,-74.74205132,39.39904279,225 ROUTE 54,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_3801_36,-74.5529075,39.3670505,231 ROUTE 54,BUENA VISTA TWP,16,1998,1,GOV1,3004 -0105_3801_37,-74.52730546,39.38086242,237 ROUTE 54,BUENA VISTA TWP,17,1936,1,RES1,3001 -0105_3801_38,-74.51343556,39.48581167,251 ROUTE 54,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_3801_39,-74.49175151,39.33887876,ROUTE 54,BUENA VISTA TWP,,0,1,RES3A,3001 -0105_3801_7,-74.51364933,39.46151395,238 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_3801_8,-74.4936345,39.3361765,244 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1985,1,RES3A,3001 -0105_3801_8.01,-74.5991455,39.3702925,248 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1992,1,RES1,3001 -0105_3801_9,-74.39715822,39.38612334,252 PANCOAST MILL ROAD,BUENA VISTA TWP,17,1980,1,RES3B,3001 -0105_3901_1,-74.699665,39.577076,116 WALNUT LANE,BUENA VISTA TWP,17,1940,1,RES3A,3001 -0105_4001_1,-74.735606,39.4613315,213 ROUTE 54,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4001_10,-74.622925,39.3594015,119 FURSIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4001_11,-74.8267915,39.4644245,123 FURSIN AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4001_18,-74.754006,39.431624,141 FURSIN AVENUE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_4001_20,-74.60258497,39.42081519,147 FURSIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4001_21,-74.55667258,39.51908139,155 FURSIN AVENUE,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_4001_22,-74.646769,39.35597917,160 FURSIN AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_23,-74.8140435,39.378005,OAK ISLAND ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_24,-74.4383431,39.36902167,OAK ISLAND ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_25,-74.36852847,39.41307685,FURSIN AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_26,-74.4047025,39.37901938,ROUTE 54 REAR,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_27,-74.54971934,39.37578902,152 FURSIN AVENUE,BUENA VISTA TWP,17,1940,1,COM1,3004 -0105_4001_28,-74.63147813,39.31675638,144 FURSIN AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_4001_3,-74.5943425,39.364563,207 ROUTE 54,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4001_31,-74.55295626,39.39134158,130 FURSIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4001_38,-74.48882234,39.33790848,155 ROUTE 54,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4001_39,-74.76556178,39.30867853,145 ROUTE 54,BUENA VISTA TWP,17,1917,1,RES1,3002 -0105_4001_40,-74.594168,39.4081485,115 ROUTE 54,BUENA VISTA TWP,,0,1,RES3A,3001 -0105_4001_41,-74.59827526,39.41268137,107 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_42,-74.8381685,39.593103,101 RAILROAD BOULEVARD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_43,-74.7972927,39.63863993,MARBLE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_44,-74.508548,39.3324385,ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_45,-74.91163665,39.53505273,751 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES3A,3001 -0105_4001_46,-74.58515058,39.32490332,755 HARDING HIGHWAY,BUENA VISTA TWP,27,1940,1,RES1,3001 -0105_4001_47,-74.8208515,39.6215225,757 HARDING HIGHWAY,BUENA VISTA TWP,27,1940,1,RES1,3001 -0105_4001_48,-74.3745455,39.412043,761 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_50,-74.70471006,39.46802084,769 HARDING HIGHWAY,BUENA VISTA TWP,,1977,1,RES1,3001 -0105_4001_51,-74.64628665,39.37907131,775 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_52,-74.86511819,39.43468964,777 HARDING HIGHWAY,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_4001_53,-74.8157177,39.40377233,781 HARDING HIGHWAY,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_4001_54,-74.56667733,39.36117557,789 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_56,-74.37428231,39.41085509,815 HARDING HIGHWAY,BUENA VISTA TWP,17,1948,2,RES1,3001 -0105_4001_57,-74.587745,39.337436,821 HARDING HIGHWAY,BUENA VISTA TWP,,1975,1,RES1,3001 -0105_4001_58,-74.57355598,39.34920423,835 HARDING HIGHWAY,BUENA VISTA TWP,17,1980,2,RES1,3001 -0105_4001_59,-74.567706,39.475272,HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4001_61,-74.591977,39.31283,911 HARDING HIGHWAY,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4001_62,-74.55474243,39.55166193,919 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4001_63,-74.51848248,39.44218295,925 HARDING HIGHWAY,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4001_64,-74.52335351,39.39715666,929 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3004 -0105_4001_66,-74.55414034,39.37710035,935 HARDING HIGHWAY,BUENA VISTA TWP,17,1889,1,RES1,3001 -0105_4001_67,-74.43199471,39.36945412,939 HARDING HIGHWAY,BUENA VISTA TWP,,1990,1,RES1,3001 -0105_4001_69,-74.51736646,39.40130069,111 COUNTRY CLUB LANE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_4001_7,-74.50874838,39.49268275,109 FURSIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4001_8,-74.37121952,39.40313984,113 FURSIN AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_4001_9,-74.57550053,39.33788285,115 FURSIN AVENUE,BUENA VISTA TWP,15,1950,1,RES1,3001 -0105_401_1,-74.45178518,39.35707893,600 CAINS MILL ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_401_11,-74.72470918,39.45314552,21 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_401_13,-74.49722117,39.33366699,25 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1956,1,GOV1,3004 -0105_401_16,-74.72374955,39.45115232,101 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES3A,3001 -0105_401_17,-74.4594795,39.35083305,103 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_18,-74.58965084,39.35494578,105 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1965,1,COM10,3003 -0105_401_20,-74.4698955,39.3444065,103 CLOVER TERRACE,BUENA VISTA TWP,17,1960,1,COM1,3004 -0105_401_22,-74.5409815,39.504159,105 CLOVER TERRACE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_23,-74.4431015,39.3587925,109 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,AGR1,3001 -0105_401_24,-74.40533738,39.38478741,111 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_25,-74.5062095,39.4933755,113 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_26,-74.59178374,39.34776091,115 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_27,-74.36953817,39.402891,117 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_401_28,-74.66186253,39.41877076,119 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_29,-74.87663732,39.48573449,123 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_31,-74.50564694,39.33569955,127 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_32,-74.7540535,39.4464295,129 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_33,-74.5454635,39.373538,131 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_401_35,-74.5368152,39.47178006,201 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_36,-74.63609682,39.43291681,203 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3002 -0105_401_37,-74.62028341,39.61985633,205 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_38,-74.72397143,39.45114469,207 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_39,-74.64961131,39.40297398,209 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_4,-74.5214605,39.3163275,7 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_401_40,-74.5475025,39.464904,211 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1975,1,AGR1,3001 -0105_401_41,-74.3655775,39.416055,213 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_43,-74.924061,39.5160905,217 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_44,-74.53486242,39.41665404,156 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_47,-74.500614,39.3303765,150 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_48,-74.47402422,39.49353162,148 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_401_49,-74.59183661,39.42986692,146 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_50,-74.55718218,39.36922278,144 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_401_51,-74.73353,39.4361805,142 LAKE GEORGE DRIVE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_401_52,-74.5900305,39.3726605,140 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_401_54,-74.7346835,39.4486215,136 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_401_55,-74.59956268,39.31970459,134 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_401_56,-74.57442007,39.33742983,132 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_401_57,-74.47988433,39.34736924,130 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1995,1,GOV1,3004 -0105_401_6,-74.78924373,39.5320614,11 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_401_60,-74.88419063,39.59333073,124 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_61,-74.93145123,39.5256036,122 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_401_71,-74.494909,39.430998,102 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_401_72,-74.36662738,39.41579784,LAKE GEORGE DRIVE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_401_73,-74.7358275,39.4482535,2 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1956,1,GOV1,3004 -0105_401_74,-74.4593849,39.48825436,4 LAKE GEORGE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_401_8,-74.50541628,39.4355504,15 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_402_1,-74.60103462,39.47961025,301 CEDAR LAKE DRIVE,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_4101_1,-74.3899985,39.3884445,213 OAK ISLAND ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4101_3,-74.36648579,39.40957646,UMBERTO DRIVE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4101_4,-74.6613225,39.6351675,SYLVESTA AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4101_5,-74.581403,39.4724605,OAK ISLAND ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4101_6,-74.51423044,39.40177117,OAK ISLAND ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4102_1,-74.56674602,39.3541007,214 OAK ISLAND ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4102_10,-74.4883445,39.33421,DOMANI STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4102_11,-74.49079167,39.3330895,DOMANI STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4102_2,-74.57783182,39.35064404,OAK ISLAND ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4102_4,-74.570994,39.386512,RAILROAD BOULEVARD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4102_5,-74.62705234,39.43657707,OAK ISLAND ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4102_6,-74.9409274,39.52054882,RAILROAD BOULEVARD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4102_9,-74.539635,39.5360445,DOMANI STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4103_10,-74.38535073,39.39323218,209 MAPLE TERRACE,BUENA VISTA TWP,18,1969,1,RES1,3001 -0105_4103_16,-74.5816265,39.538694,238 MAPLE TERRACE,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_4103_4,-74.40295193,39.38900508,245 MAPLE TERRACE,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_4103_6,-74.64383772,39.53400532,235 MAPLE TERRACE,BUENA VISTA TWP,17,1979,1,GOV1,3004 -0105_4103_7,-74.49943301,39.38277362,229 MAPLE TERRACE,BUENA VISTA TWP,18,1990,1,RES1,3002 -0105_4103_8,-74.59826758,39.43474029,223 MAPLE TERRACE,BUENA VISTA TWP,18,1985,1,GOV1,3004 -0105_4103_9,-74.58075491,39.36546837,215 MAPLE TERRACE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_4110_1,-74.508006,39.338405,141 COUNTRY CLUB LANE,BUENA VISTA TWP,18,2000,1,RES1,3001 -0105_4117_1,-74.5729035,39.3431445,144 COUNTRY CLUB LANE,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_4118_1,-74.92375345,39.51052526,156 COUNTRY CLUB LANE,BUENA VISTA TWP,18,1998,1,GOV1,3004 -0105_4201_10,-74.5904032,39.43404641,229 LORRAINE AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_4201_11,-74.50545419,39.3262856,223 LORRAINE AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_4201_12,-74.36826109,39.4040294,219 LORRAINE AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_4201_13,-74.57734965,39.33767555,209 LORRAINE AVENUE,BUENA VISTA TWP,17,1960,3,RES1,3001 -0105_4201_14,-74.80480183,39.63739951,459 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4201_3,-74.7546565,39.431322,236 COUNTRY CLUB LANE,BUENA VISTA TWP,18,1997,1,RES1,3001 -0105_4201_4,-74.39813303,39.39062388,252 COUNTRY CLUB LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4201_5,-74.80095355,39.63503434,274 COUNTRY CLUB LANE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_4201_7,-74.369092,39.4061945,LORRAINE AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4201_9,-74.4906675,39.4437915,LORRAINE AVENUE,BUENA VISTA TWP,,0,1,RES1,3004 -0105_4202_10,-74.82837491,39.53187576,213 BUTTONWOOD TERRACE,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_4202_2,-74.8825055,39.59401,109 FAIRWAY DRIVE,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_4202_3,-74.616404,39.5185795,220 MAPLE TERRACE,BUENA VISTA TWP,18,2000,1,RES1,3001 -0105_4202_4,-74.8094899,39.43786197,224 MAPLE TERRACE,BUENA VISTA TWP,17,2005,1,RES3A,3001 -0105_4202_5,-74.52608742,39.31372015,230 MAPLE TERRACE,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_4202_6,-74.6378185,39.3446565,236 MAPLE TERRACE,BUENA VISTA TWP,17,1993,1,RES1,3001 -0105_4202_8,-74.79556704,39.64220356,246 MAPLE TERRACE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4203_3,-74.63699148,39.41863917,BUTTONWOOD TERRACE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4206_2,-74.59515117,39.517142,114 FAIRWAY DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4206_4,-74.75421625,39.45228186,122 FAIRWAY DRIVE,BUENA VISTA TWP,17,1979,1,REL1,3004 -0105_4206_5,-74.80016178,39.65106798,FAIRWAY DRIVE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4206_9,-74.8421705,39.44386,107 ELM LANE,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_4301_1,-74.5159225,39.3288165,310 COUNTRY CLUB LANE,BUENA VISTA TWP,18,1993,1,RES1,3001 -0105_4301_10,-74.38023256,39.41470581,115 WISTERIA AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4301_12,-74.5121305,39.4751565,533 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1925,1,GOV1,3004 -0105_4301_13,-74.94099174,39.50362873,529 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1955,2,RES1,3001 -0105_4301_14,-74.71902698,39.44072317,527 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4301_15,-74.81445388,39.64793934,523 RAILROAD BOULEVARD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4301_16.02,-74.566652,39.41928502,513 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1930,1,GOV1,3004 -0105_4301_17,-74.7173535,39.4511395,505 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4301_18,-74.4783175,39.4432305,501 RAILROAD BOULEVARD,BUENA VISTA TWP,47,1950,2,REL1,3004 -0105_4301_19,-74.45818914,39.34930966,216 LORRAINE AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_4301_20,-74.47221555,39.49357088,222 LORRAINE AVENUE,BUENA VISTA TWP,17,2006,1,AGR1,3001 -0105_4301_21,-74.56942711,39.40360979,228 LORRAINE AVENUE,BUENA VISTA TWP,15,1940,3,RES1,3001 -0105_4301_23,-74.522343,39.44355,232 LORRAINE AVENUE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_4301_23.01,-74.5029515,39.326515,242 LORRAINE AVENUE,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_4301_24,-74.79329051,39.60354403,256 LORRAINE AVENUE,BUENA VISTA TWP,18,2006,1,RES1,3001 -0105_4301_24.01,-74.463748,39.3481205,248 LORRAINE AVENUE,BUENA VISTA TWP,17,1999,1,RES1,3001 -0105_4301_3,-74.5205215,39.3986295,147 WISTERIA AVENUE,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_4301_4,-74.40695157,39.38255428,141 WISTERIA AVENUE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_4301_6,-74.48471083,39.35036909,137 WISTERIA AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4301_7,-74.50982874,39.32733017,135 WISTERIA AVENUE,BUENA VISTA TWP,17,1955,2,RES1,3001 -0105_4301_8,-74.736027,39.4338405,131 WISTERIA AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4302_1,-74.49598073,39.51881836,340 COUNTRY CLUB LANE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_4302_10,-74.59971,39.4991355,112 WISTERIA AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_4302_11,-74.60259099,39.32618867,116 WISTERIA AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_4302_13,-74.548394,39.375662,132 WISTERIA AVENUE,BUENA VISTA TWP,17,1990,1,RES3A,3004 -0105_4302_14,-74.36639446,39.4220941,140 WISTERIA AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4302_15,-74.5885905,39.32618,144 WISTERIA AVENUE,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_4302_16,-74.47015956,39.34559735,148 WISTERIA AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_4302_2,-74.3715135,39.403833,350 COUNTRY CLUB LANE,BUENA VISTA TWP,17,1989,1,GOV1,3004 -0105_4302_5,-74.85077604,39.39366585,549 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_4302_6,-74.93487339,39.52486832,545 RAILROAD BOULEVARD,BUENA VISTA TWP,17,2010,1,GOV1,3004 -0105_4302_8,-74.52115155,39.31462267,541 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4302_9,-74.48812,39.333958,106 WISTERIA AVENUE,BUENA VISTA TWP,17,2001,1,RES1,3001 -0105_4303_1,-74.50451849,39.33960066,RAILROAD BOULEVARD,BUENA VISTA TWP,,1959,1,IND2,3002 -0105_4303_2,-74.9121525,39.5134825,635 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_4303_3,-74.6825905,39.554198,633 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4303_4,-74.505748,39.3245865,621 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4303_5,-74.5860565,39.5181695,613 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_4303_6,-74.511986,39.465428,603 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_4303_7,-74.94614882,39.52490505,601 RAILROAD BOULEVARD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4304_1,-74.65511333,39.53420051,CEDAR AVENUE,BUENA VISTA TWP,,1959,1,RES1,3001 -0105_4305_1,-74.40164355,39.39099124,611 CEDAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4306_12,-74.49378088,39.42060795,1067 HARDING HIGHWAY,BUENA VISTA TWP,16,1959,1,RES1,3001 -0105_4306_14,-74.6325075,39.3601,1055 HARDING HIGHWAY,BUENA VISTA TWP,17,1919,1,GOV1,3004 -0105_4306_14.01,-74.9456475,39.5265405,1043 HARDING HIGHWAY,BUENA VISTA TWP,17,1991,1,RES1,3001 -0105_4306_14.02,-74.502025,39.4135965,1047 HARDING HIGHWAY,BUENA VISTA TWP,17,2002,1,GOV1,3004 -0105_4306_15,-74.55161567,39.47850451,1035 HARDING HIGHWAY,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_4306_16,-74.63957578,39.34292941,1029 HARDING HIGHWAY,BUENA VISTA TWP,17,1919,1,RES1,3001 -0105_4306_18,-74.36886615,39.40343902,1011 HARDING HIGHWAY,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_4306_19,-74.39456,39.393039,1003 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4306_22,-74.35575165,39.41401754,961 HARDING HIGHWAY,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_4306_5,-74.50245811,39.32676228,1165 HARDING HIGHWAY,BUENA VISTA TWP,17,1840,1,GOV1,3004 -0105_4306_5.01,-74.39854502,39.38745503,1145 HARDING HIGHWAY,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_4306_6,-74.872966,39.4588635,1121 HARDING HIGHWAY,BUENA VISTA TWP,17,1940,1,GOV1,3004 -0105_4306_6.01,-74.48743433,39.35159538,526 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_4306_6.02,-74.95607686,39.52037016,522 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1999,1,RES1,3001 -0105_4306_7,-74.82593021,39.49111648,1113 HARDING HIGHWAY,BUENA VISTA TWP,17,1942,1,RES1,3001 -0105_4306_8,-74.51041255,39.40482998,1105 HARDING HIGHWAY,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4402_2,-74.64156454,39.39576316,135 WALLY DRIVE,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_4403_1,-74.6383985,39.5297275,161 WEST JERSEY BOULEVARD,BUENA VISTA TWP,16,1925,2,GOV1,3004 -0105_4403_3,-74.48613415,39.33699401,135 WEST JERSEY BOULEVARD,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_4405_1,-74.45183238,39.49433618,750 RAILROAD BOULEVARD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4405_2,-74.54751661,39.36879782,1393 HARDING HIGHWAY,BUENA VISTA TWP,17,2009,1,RES1,3001 -0105_4405_3,-74.60000699,39.41787842,1383 HARDING HIGHWAY,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_4405_5,-74.5717445,39.479707,734 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_4407_1,-74.47318215,39.34232789,124 WALLY DRIVE,BUENA VISTA TWP,17,1997,1,RES1,3001 -0105_4409_1,-74.78576947,39.64977167,328 FIR AVENUE,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_4409_3,-74.80260977,39.37907955,336 FIR AVENUE,BUENA VISTA TWP,17,1935,2,RES1,3001 -0105_4410_1,-74.5030975,39.337264,115 WALLY DRIVE,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_4411_1,-74.50455945,39.42378933,114 WALLY DRIVE,BUENA VISTA TWP,17,1946,1,GOV1,3004 -0105_4412_1,-74.55205301,39.37482733,108 WALLY DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_4412_3,-74.45383297,39.37121087,954 MAIN AVENUE,BUENA VISTA TWP,17,1882,1,GOV1,3004 -0105_4412_4,-74.4961275,39.328858,104 WALLY DRIVE,BUENA VISTA TWP,17,1951,1,RES1,3001 -0105_4413_1,-74.64642193,39.62470519,968 MAIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4413_2,-74.50338835,39.33667768,964 MAIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4413_6,-74.63297513,39.36435058,960 MAIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4414_1,-74.50799144,39.32639231,955 MAIN AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_4416_2,-74.81211136,39.52748551,1039 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_4416_4,-74.5958635,39.3138505,634 CEDAR AVENUE,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_4418_1,-74.528892,39.3834125,1050 MAIN AVENUE,BUENA VISTA TWP,17,1980,1,GOV1,3004 -0105_4418_3,-74.79472385,39.66416752,1012 MAIN AVENUE,BUENA VISTA TWP,17,1990,1,IND2,3002 -0105_4418_4,-74.81223426,39.65015955,1030 MAIN AVENUE,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_4501_1,-74.94002381,39.50357078,630 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4501_2,-74.5491285,39.368216,632 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1980,1,COM1,3004 -0105_4501_3,-74.74850935,39.45281612,640 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1980,1,GOV1,3004 -0105_4502_1,-74.81197459,39.64172816,336 WASHINGTON AVENUE,BUENA VISTA TWP,17,1950,1,EDU1,3004 -0105_4503_3,-74.40006584,39.38820621,107 PINE STREET,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_4504_2,-74.51008185,39.34092387,119 ASPEN AVENUE,BUENA VISTA TWP,17,1897,1,RES1,3001 -0105_4505_1,-74.5980845,39.379743,326 WASHINGTON AVENUE,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_4505_2,-74.78197584,39.65101402,320 WASHINGTON AVENUE,BUENA VISTA TWP,,0,1,RES1,3002 -0105_4508_2,-74.46791611,39.48848748,107 PALERMO AVENUE,BUENA VISTA TWP,17,1938,1,RES1,3001 -0105_4509_1,-74.6637395,39.400885,108 PALERMO AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_4510_1,-74.60751252,39.39370044,132 ASPEN AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_4511_1,-74.3681375,39.4114055,114 ASPEN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4511_2,-74.59396406,39.36228448,107 BEACH AVENUE,BUENA VISTA TWP,17,1928,1,RES1,3001 -0105_4511_4,-74.65847464,39.39519457,106 ASPEN AVENUE,BUENA VISTA TWP,17,1933,1,RES1,3001 -0105_4512_1,-74.53067459,39.49940133,539 CEDAR AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4512_3,-74.48804352,39.35205735,531 CEDAR AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_4512_4,-74.4180696,39.36898318,527 CEDAR AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4513_2,-74.79518992,39.63286904,507 CEDAR AVENUE,BUENA VISTA TWP,17,1933,1,RES1,3001 -0105_4514_1,-74.67606712,39.38858667,534 CEDAR AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4514_3,-74.397719,39.3880035,524 CEDAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4515_1,-74.64981556,39.53216634,516 CEDAR AVENUE,BUENA VISTA TWP,17,1925,1,RES1,3001 -0105_4515_2,-74.519327,39.4044245,1253 HARDING HIGHWAY,BUENA VISTA TWP,17,1948,1,RES1,3001 -0105_4517_3,-74.8009995,39.3092,1267 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_4518_1,-74.571353,39.429242,941 MAIN AVENUE,BUENA VISTA TWP,17,2011,1,GOV1,3004 -0105_4518_4,-74.73360038,39.46080536,937 MAIN AVENUE,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_4518_5,-74.5381025,39.385358,935 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_4518_6,-74.643081,39.463294,929 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4518_7,-74.80272,39.624669,933 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4519_2,-74.5024635,39.424002,921 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4519_3,-74.534733,39.451606,917 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4519_4,-74.3799185,39.4002175,915 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_4519_5,-74.38039618,39.4175134,913 MAIN AVENUE,BUENA VISTA TWP,17,1942,1,GOV1,3004 -0105_4519_7,-74.50526397,39.41497868,907 MAIN AVENUE,BUENA VISTA TWP,17,1946,1,RES1,3001 -0105_4519_9,-74.8191105,39.6529755,1275 HARDING HIGHWAY,BUENA VISTA TWP,,1912,1,RES1,3001 -0105_4520_10,-74.65025116,39.53012198,231 FIR AVENUE,BUENA VISTA TWP,17,1950,1,RES3A,3001 -0105_4520_11,-74.75745928,39.44906346,930 MAIN AVENUE,BUENA VISTA TWP,17,1900,2,RES1,3001 -0105_4520_12,-74.46670812,39.34726967,942 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4520_2,-74.60253276,39.34936785,706 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1974,1,GOV1,3004 -0105_4520_3,-74.58361578,39.36799335,243 FIR AVENUE,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_4520_4,-74.49319054,39.41934316,940 MAIN AVENUE,BUENA VISTA TWP,17,1706,1,GOV1,3004 -0105_4520_6,-74.7540275,39.4761495,239 FIR AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4520_7,-74.6497375,39.3215305,936 MAIN AVENUE,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_4520_9,-74.82179464,39.37450524,932 MAIN AVENUE,BUENA VISTA TWP,17,1991,1,GOV1,3004 -0105_4521_1,-74.4081025,39.379195,204 SEWELL AVENUE,BUENA VISTA TWP,,1955,1,RES1,3001 -0105_4521_2,-74.510008,39.329439,914 MAIN AVENUE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_4521_3,-74.58252432,39.33953749,1307 HARDING HIGHWAY,BUENA VISTA TWP,17,1921,1,RES1,3001 -0105_4521_4,-74.688441,39.4792115,1303 HARDING HIGHWAY,BUENA VISTA TWP,,1920,1,RES1,3001 -0105_4521_5,-74.51637939,39.3231166,1301 HARDING HIGHWAY,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_4521_6,-74.7154405,39.4642255,908 MAIN AVENUE,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_4522_11,-74.51640546,39.3941392,228 FIR AVENUE,BUENA VISTA TWP,17,1945,1,GOV1,3004 -0105_4522_3,-74.81170385,39.40767948,239 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4522_4,-74.60053082,39.31595546,236 FIR AVENUE,BUENA VISTA TWP,17,1971,1,GOV1,3004 -0105_4522_7,-74.57659364,39.36739784,232 FIR AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4523_1,-74.58445929,39.42621767,224 FIR AVENUE,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_4523_12,-74.5575146,39.3669418,212 FIR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4523_13,-74.65536395,39.48969873,216 FIR AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4523_14,-74.62113835,39.43695969,218 FIR AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4523_3,-74.71983367,39.43106583,217 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_4523_4,-74.76302656,39.3517883,215 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4523_5,-74.59936152,39.31309537,213 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4523_6,-74.54787587,39.47635922,209 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_4523_8,-74.48857508,39.53397381,1319 HARDING HIGHWAY,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4523_9,-74.48519216,39.33523733,1315 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_4524_1,-74.96645297,39.51263126,244 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4524_11,-74.949373,39.5162285,240 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4524_12,-74.4910115,39.335345,242 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4524_2,-74.51524717,39.32775197,724 RAILROAD BOULEVARD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4524_3,-74.85094579,39.41146207,243 HOLLY AVENUE,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_4524_4,-74.5393035,39.469783,239 HOLLY AVENUE,BUENA VISTA TWP,17,1966,1,RES1,3001 -0105_4524_6,-74.81759761,39.40213667,235 HOLLY AVENUE,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_4524_8,-74.43628768,39.36757044,231 HOLLY AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4524_9,-74.60539405,39.31069531,223 SEWELL AVENUE,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_4525_1,-74.63614873,39.3412479,224 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_4525_2,-74.93786424,39.52115977,210 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1935,1,RES1,3001 -0105_4526_2,-74.58956016,39.33487765,228 HOLLY AVENUE,BUENA VISTA TWP,17,2001,1,RES3A,3001 -0105_4526_3,-74.60922494,39.39296573,1361 HARDING HIGHWAY,BUENA VISTA TWP,17,2003,1,GOV1,3004 -0105_4526_3.01,-74.66628206,39.4635538,1357 HARDING HIGHWAY,BUENA VISTA TWP,17,2006,1,GOV1,3004 -0105_4526_3.02,-74.67983865,39.37671518,1353 HARDING HIGHWAY,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_4526_4,-74.50699236,39.32687796,1343 HARDING HIGHWAY,BUENA VISTA TWP,17,1948,1,RES1,3001 -0105_4526_5,-74.47745,39.3402475,1339 HARDING HIGHWAY,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4526_6,-74.37857835,39.39990188,1335 HARDING HIGHWAY,BUENA VISTA TWP,,1953,1,RES1,3001 -0105_4526_7,-74.50560006,39.41460569,210 HOLLY AVENUE,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_4527_1,-74.5036595,39.327357,1252 HARDING HIGHWAY,BUENA VISTA TWP,,1927,1,RES1,3001 -0105_4527_11,-74.65628181,39.43363146,410 CEDAR AVENUE,BUENA VISTA TWP,17,1940,1,RES3B,3001 -0105_4527_12,-74.61358159,39.48900716,414 CEDAR AVENUE,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_4527_13,-74.5249065,39.400431,416 CEDAR AVENUE,BUENA VISTA TWP,17,1958,1,GOV1,3004 -0105_4527_2,-74.7537865,39.3011275,1256 HARDING HIGHWAY,BUENA VISTA TWP,27,1932,1,RES1,3001 -0105_4527_4,-74.506167,39.4377045,1260 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4527_5,-74.553726,39.362014,1266 HARDING HIGHWAY,BUENA VISTA TWP,17,1915,1,IND1,3004 -0105_4527_8,-74.5521345,39.4788745,402 CEDAR AVENUE,BUENA VISTA TWP,17,1890,1,RES1,3001 -0105_4527_9,-74.382355,39.3927575,404 CEDAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4528_1,-74.77807384,39.62130303,1280 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4528_2,-74.37575249,39.41914699,1274 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4528_3,-74.505599,39.3273585,877 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_4528_6,-74.88156686,39.47426583,869 MAIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4528_7,-74.79917216,39.63212356,861 MAIN AVENUE,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_4529_1,-74.544513,39.463842,1302 HARDING HIGHWAY,BUENA VISTA TWP,,1900,1,RES1,3001 -0105_4529_2,-74.6012355,39.3199115,1306 HARDING HIGHWAY,BUENA VISTA TWP,,2000,1,RES1,3001 -0105_4529_3,-74.37422436,39.41016568,1308 HARDING HIGHWAY,BUENA VISTA TWP,,1939,1,RES1,3001 -0105_4529_4,-74.58060015,39.33219062,876 MAIN AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4530_1,-74.63425093,39.45528007,1316 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_4530_2,-74.39714,39.389576,165 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_4530_3,-74.62575014,39.40988081,161 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4530_4,-74.603455,39.32593467,159 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_4530_5,-74.575159,39.3594605,113 SMITH AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4530_7,-74.50483185,39.32999906,164 FIR AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4531_1,-74.5008375,39.3348035,1322 HARDING HIGHWAY,BUENA VISTA TWP,17,1935,1,RES1,3001 -0105_4531_2.01,-74.50113793,39.44618131,1328 HARDING HIGHWAY,BUENA VISTA TWP,,1932,1,RES1,3001 -0105_4531_2.02,-74.51408835,39.43698605,166 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_4531_4,-74.62215823,39.36560936,164 GREENBRIAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_4531_5,-74.78513384,39.64585892,162 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4531_7,-74.61624855,39.36352873,156 GREENBRIAR AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4532_3,-74.52334854,39.38885832,1338 HARDING HIGHWAY,BUENA VISTA TWP,17,1925,1,RES1,3001 -0105_4601_3,-74.38114241,39.39953883,351 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4601_4,-74.448914,39.3558655,345 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1910,2,RES1,3001 -0105_4601_5,-74.48880751,39.33338267,335 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4601_6,-74.52844717,39.45003399,329 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4601_7.01,-74.36268784,39.41361517,319 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_4602_1,-74.712899,39.469782,1372 HARDING HIGHWAY,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4602_10,-74.62628481,39.42422042,307 RICHLAND AVENUE,BUENA VISTA TWP,16,1931,1,RES1,3001 -0105_4602_11,-74.84851958,39.59770435,304 LLEWELLYN AVENUE,BUENA VISTA TWP,16,1942,2,RES1,3001 -0105_4602_12,-74.4823635,39.3471885,328 LLEWELLYN AVENUE,BUENA VISTA TWP,16,1932,1,RES1,3001 -0105_4602_13,-74.59456115,39.31385137,336 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1983,1,RES1,3001 -0105_4602_14,-74.83429222,39.59705281,342 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1900,2,GOV1,3004 -0105_4602_15,-74.88372905,39.59906779,348 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4602_17,-74.60396695,39.33290266,356 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_4602_18,-74.4490735,39.372444,358 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_4602_18.01,-74.76991598,39.49834548,362 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4602_2,-74.63876077,39.43381878,1378 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4602_3,-74.4062265,39.379952,1382 HARDING HIGHWAY,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4602_4,-74.92534957,39.50881137,1388 HARDING HIGHWAY,BUENA VISTA TWP,17,1940,2,RES1,3001 -0105_4602_7,-74.92550821,39.50076703,1398 HARDING HIGHWAY,BUENA VISTA TWP,17,1920,2,RES1,3001 -0105_4602_8,-74.6408015,39.3415945,329 RICHLAND AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4602_9,-74.4601105,39.4709495,316 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1960,2,RES1,3001 -0105_4701_1,-74.52909183,39.46367205,270 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1861,2,RES1,3001 -0105_4701_1.01,-74.64680867,39.4340635,285 RICHLAND AVENUE,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_4701_4,-74.717808,39.4469685,216 LLEWELLYN AVENUE,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_4701_5,-74.62624744,39.36502665,5496 LANDIS AVENUE,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_4702_1,-74.80735268,39.46413205,291 LLEWELLYN AVENUE,BUENA VISTA TWP,16,2015,1,RES1,3001 -0105_4702_2,-74.45098419,39.37216202,269 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1929,1,RES1,3001 -0105_4702_3,-74.4706955,39.344744,263 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4702_4,-74.68793,39.630982,255 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4702_5,-74.4972215,39.334442,225 LLEWELLYN AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4801_2,-74.68012421,39.44336416,728 MAIN AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_4802_1,-74.49000779,39.33949124,806 MAIN AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_4802_2,-74.55989399,39.53560684,822 MAIN AVENUE,BUENA VISTA TWP,17,1996,1,RES1,3001 -0105_4804_1,-74.51995403,39.46756184,864 MAIN AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_4804_4,-74.8437936,39.37784435,866 MAIN AVENUE,BUENA VISTA TWP,17,1925,1,REL1,3003 -0105_4804_5,-74.8188665,39.3797255,106 SMITH AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_4804_6,-74.46584991,39.49627732,127 FIR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4805_2,-74.5399495,39.4131645,120 FIR AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4805_3,-74.59307393,39.34242673,122 FIR AVENUE,BUENA VISTA TWP,17,1975,1,GOV1,3004 -0105_4805_5,-74.51923767,39.31861347,126 FIR AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4805_8,-74.5291135,39.4996,116 SMITH AVENUE,BUENA VISTA TWP,17,1880,1,RES1,3001 -0105_4901_10,-74.81425306,39.44360237,226 CEDAR AVENUE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_100,-74.56448282,39.35485591,358 CEDAR AVENUE,BUENA VISTA TWP,17,1950,2,GOV1,3004 -0105_4901_101,-74.43095614,39.36127912,368 CEDAR AVENUE,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_4901_103,-74.70181072,39.57605998,843 MAIN AVENUE,BUENA VISTA TWP,17,2015,1,RES1,3001 -0105_4901_104,-74.49050202,39.33908036,813 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4901_105,-74.52302882,39.38618098,811 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_4901_106,-74.55724256,39.47778642,809 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4901_110,-74.93985186,39.5285123,737 MAIN AVENUE,BUENA VISTA TWP,17,1960,2,RES1,3001 -0105_4901_111,-74.57711964,39.53226502,729 MAIN AVENUE,BUENA VISTA TWP,17,1939,1,RES1,3001 -0105_4901_112,-74.70102809,39.50049797,721 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4901_113,-74.79195365,39.63642814,713 MAIN AVENUE,BUENA VISTA TWP,17,1935,1,RES1,3001 -0105_4901_114,-74.48115011,39.33713578,705 MAIN AVENUE,BUENA VISTA TWP,17,1960,2,RES1,3001 -0105_4901_115,-74.65266887,39.54778655,5286 LANDIS AVENUE,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_4901_116,-74.61268201,39.42248955,5282 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4901_117,-74.53721954,39.46283689,5290 LANDIS AVENUE,BUENA VISTA TWP,17,1983,2,RES1,3001 -0105_4901_12,-74.408717,39.380209,234 CEDAR AVENUE,BUENA VISTA TWP,17,1975,1,GOV1,3004 -0105_4901_120,-74.611295,39.422467,5260 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4901_121,-74.6373435,39.539575,5252 LANDIS AVENUE,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_4901_122,-74.73692407,39.64410527,5244 LANDIS AVENUE,BUENA VISTA TWP,17,1927,1,GOV1,3004 -0105_4901_124,-74.40403341,39.38820141,5232 LANDIS AVENUE,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_4901_125,-74.613755,39.3177785,5228 LANDIS AVENUE,BUENA VISTA TWP,17,1933,1,RES1,3001 -0105_4901_13,-74.9397135,39.520506,236 CEDAR AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4901_17,-74.6119225,39.3243645,101 PRIMROSE LANE,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_4901_18,-74.51884219,39.43504597,102 PRIMROSE LANE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4901_19,-74.37026786,39.40715071,106 PRIMROSE LANE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4901_2,-74.36560383,39.42222001,130 CEDAR AVENUE,BUENA VISTA TWP,17,1925,3,RES1,3001 -0105_4901_20,-74.8853575,39.560286,108 PRIMROSE LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_22,-74.6756415,39.55324676,105 DOGWOOD LANE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_4901_24,-74.71372528,39.43534795,102 DOGWOOD LANE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_4901_26,-74.52073567,39.31888898,108 DOGWOOD LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_27,-74.563515,39.3572535,119 CLOVER LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_3,-74.6034755,39.369422,138 CEDAR AVENUE,BUENA VISTA TWP,17,1975,2,RES1,3001 -0105_4901_33,-74.51199069,39.4896604,102 CLOVER LANE,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_4901_34,-74.726281,39.453849,106 CLOVER LANE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4901_37,-74.50739165,39.46188956,118 CLOVER LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_38,-74.87317225,39.5641047,120 CLOVER LANE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_4,-74.48877846,39.42330254,142 CEDAR AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_4901_40,-74.36160765,39.41040204,128 CLOVER LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_41,-74.45023546,39.37392377,130 CLOVER LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_42,-74.492351,39.4322175,134 CLOVER LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_58,-74.51068266,39.3344125,158 DOGWOOD LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_64,-74.78967083,39.41847902,173 DOGWOOD LANE,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_4901_65,-74.514406,39.437779,169 DOGWOOD LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_66,-74.6384915,39.4015375,102 ROBIN LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_67,-74.45775982,39.34919686,108 ROBIN LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_68,-74.940002,39.5208695,105 ROBIN LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_69,-74.575519,39.337081,103 ROBIN LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_7,-74.71714516,39.64087224,150 CEDAR AVENUE,BUENA VISTA TWP,,1930,1,RES1,3001 -0105_4901_70,-74.75686022,39.44825272,157 DOGWOOD LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_71,-74.49185209,39.33141219,106 BLUEBIRD LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_82,-74.5046065,39.332828,119 DOGWOOD LANE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_4901_83,-74.9414085,39.512052,115 DOGWOOD LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_84,-74.652498,39.53582,111 DOGWOOD LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_85,-74.6261836,39.60205083,124 PETRINI DRIVE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_87,-74.50467834,39.45849252,334 CEDAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_89,-74.59385284,39.3209205,302 CEDAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_9,-74.4695055,39.4864225,214 CEDAR AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_4901_90,-74.47173394,39.34189233,306 CEDAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_91,-74.5051855,39.4453955,308 CEDAR AVENUE,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_4901_92,-74.6149765,39.5979254,312 CEDAR AVENUE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4901_99,-74.690179,39.4463765,346 CEDAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4901_99.01,-74.602741,39.3825035,340 CEDAR AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_4902_1,-74.58833346,39.37099668,116 PETRINI DRIVE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4902_10,-74.53225829,39.4041172,129 CLOVER LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4902_11,-74.3692055,39.4020265,112 PETRINI DRIVE,BUENA VISTA TWP,17,1976,1,COM1,3004 -0105_4902_2,-74.51761776,39.31785318,116 DOGWOOD LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4902_3,-74.63701346,39.3816451,118 DOGWOOD LANE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_4902_4,-74.626044,39.3514125,122 DOGWOOD LANE,BUENA VISTA TWP,17,1974,1,GOV1,3004 -0105_4902_8,-74.57282233,39.52287096,135 CLOVER LANE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_4902_9,-74.6248935,39.4578895,131 CLOVER LANE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_5001_10,-74.467671,39.346621,535 TUCKAHOE ROAD,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_5001_11,-74.68254116,39.55678652,529 TUCKAHOE ROAD,BUENA VISTA TWP,,1959,1,GOV1,3004 -0105_5001_2,-74.498314,39.526022,CEDAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5001_4,-74.36766453,39.40831518,149 CEDAR AVENUE,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_5001_5,-74.54342283,39.40884054,103 CEDAR AVENUE,BUENA VISTA TWP,17,1965,2,RES1,3001 -0105_5001_6,-74.494718,39.433446,571 TUCKAHOE ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_5001_7,-74.857669,39.624923,567 TUCKAHOE ROAD,BUENA VISTA TWP,17,1965,2,COM8,3004 -0105_5001_8,-74.3927055,39.391962,559 TUCKAHOE ROAD,BUENA VISTA TWP,17,1927,1,RES1,3001 -0105_5001_9,-74.529286,39.4741945,549 TUCKAHOE ROAD,BUENA VISTA TWP,17,1910,1,RES3A,3001 -0105_501_1,-74.44897882,39.35521751,675 CAINS MILL ROAD,BUENA VISTA TWP,17,1933,1,RES1,3001 -0105_501_2,-74.46405482,39.34787451,665 CAINS MILL ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_501_4,-74.56521115,39.35604495,651 CAINS MILL ROAD,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_502_3,-74.78412671,39.44503009,664 CAINS MILL ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_502_3.01,-74.62691165,39.35712912,658 CAINS MILL ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_502_4,-74.5102025,39.4342905,654 CAINS MILL ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_502_4.01,-74.507673,39.329553,644 CAINS MILL ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_502_5,-74.39309984,39.39180027,620 CAINS MILL ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5101_1,-74.82550927,39.63823481,1114 HARDING HIGHWAY,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_5101_10,-74.6935659,39.49157459,1178 HARDING HIGHWAY,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_5101_11,-74.65498865,39.41634667,1184 HARDING HIGHWAY,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_5101_12,-74.64236274,39.34681763,1190 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5101_13,-74.5121865,39.3240475,261 WASHINGTON AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_5101_14,-74.59521683,39.35003,237 WASHINGTON AVENUE,BUENA VISTA TWP,17,1865,1,RES1,3001 -0105_5101_15,-74.551082,39.365274,105 MASON AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5101_17,-74.52198134,39.31465501,113 MASON AVENUE,BUENA VISTA TWP,17,1927,1,RES1,3001 -0105_5101_18,-74.73608072,39.46583853,115 MASON AVENUE,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_5101_2,-74.57567714,39.33265525,1124 HARDING HIGHWAY,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_5101_20,-74.528234,39.381248,WASHINGTON AVENUE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_5101_24,-74.51145732,39.40174345,208 GRECO AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5101_3,-74.54979878,39.47562297,1130 HARDING HIGHWAY,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_5101_4,-74.8478945,39.6008225,1136 HARDING HIGHWAY,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_5101_5,-74.49138065,39.33264601,1144 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5101_6,-74.82593053,39.39439578,1160 HARDING HIGHWAY,BUENA VISTA TWP,17,2013,1,RES1,3001 -0105_5101_7,-74.82043362,39.3704437,1166 HARDING HIGHWAY,BUENA VISTA TWP,,1979,1,RES1,3001 -0105_5102_10,-74.56901655,39.37098829,361 CEDAR AVENUE,BUENA VISTA TWP,17,1950,2,RES1,3001 -0105_5102_12,-74.499512,39.429921,327 CEDAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5102_13,-74.3718655,39.4109605,315 CEDAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5102_14,-74.5529325,39.467034,WASHINGTON AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5102_15,-74.64425687,39.52854162,222 WASHINGTON AVENUE,BUENA VISTA TWP,17,1965,1,GOV1,3004 -0105_5102_16,-74.65359692,39.3709753,226 WASHINGTON AVENUE,BUENA VISTA TWP,17,1992,1,RES1,3001 -0105_5102_17,-74.509545,39.331872,228 WASHINGTON AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5102_18,-74.7265145,39.5877115,232 WASHINGTON AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_5102_2,-74.47788517,39.34313095,1246 HARDING HIGHWAY,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5102_20,-74.67137435,39.49830304,244 WASHINGTON AVENUE,BUENA VISTA TWP,17,1990,1,IND1,3002 -0105_5102_3,-74.638874,39.4286125,405 CEDAR AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5102_5,-74.45316664,39.35349767,349 CEDAR AVENUE,BUENA VISTA TWP,17,1950,3,GOV1,3004 -0105_5102_6,-74.63040011,39.41350295,355 CEDAR AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5102_8,-74.631892,39.429549,CEDAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5102_9,-74.54785,39.378611,CEDAR AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5201_1,-74.68960516,39.44915276,401 TUCKAHOE ROAD,BUENA VISTA TWP,17,2017,1,RES1,3001 -0105_5201_13,-74.84828306,39.37543166,4115 OAK ROAD,BUENA VISTA TWP,17,2003,1,IND2,3002 -0105_5201_14,-74.88087979,39.49760769,1002 HARDING HIGHWAY,BUENA VISTA TWP,,1958,1,RES1,3001 -0105_5201_15,-74.49809504,39.5227422,1006 HARDING HIGHWAY,BUENA VISTA TWP,15,1948,1,RES1,3001 -0105_5201_16,-74.606996,39.32573767,1014 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5201_2,-74.61437082,39.42891895,4015 OAK ROAD,BUENA VISTA TWP,17,1960,1,REL1,3003 -0105_5201_4,-74.559354,39.363795,419 TUCKAHOE ROAD,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_5201_5,-74.62149274,39.42309961,425 TUCKAHOE ROAD,BUENA VISTA TWP,17,2006,1,COM4,3004 -0105_5201_6,-74.80396627,39.63488532,1 COMAR PLACE,BUENA VISTA TWP,,0,1,COM4,3004 -0105_5202_1,-74.361776,39.417966,4 COMAR PLACE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5202_15,-74.78869601,39.37747683,1046 HARDING HIGHWAY,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_5202_16,-74.687322,39.495776,1052 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5202_17,-74.5149565,39.4327665,1060 HARDING HIGHWAY,BUENA VISTA TWP,17,1921,1,RES3A,3001 -0105_5202_18,-74.64682559,39.43261582,1066 HARDING HIGHWAY,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_5202_19,-74.628925,39.365363,1070 HARDING HIGHWAY,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_5202_20,-74.950185,39.521478,1106 HARDING HIGHWAY,BUENA VISTA TWP,17,1930,1,IND1,3004 -0105_5202_24,-74.54442747,39.38764534,501 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5202_24.01,-74.5946475,39.313051,491 TUCKAHOE ROAD,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_5202_26,-74.497682,39.499527,465 TUCKAHOE ROAD,BUENA VISTA TWP,17,1934,1,RES1,3001 -0105_5202_27,-74.50252419,39.41626262,455 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5202_28,-74.8062575,39.601731,445 TUCKAHOE ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_5301_1,-74.5376985,39.472819,880 HARDING HIGHWAY,BUENA VISTA TWP,,1958,1,GOV1,3004 -0105_5301_10,-74.80457484,39.65732614,942 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5301_11,-74.65630053,39.52494466,948 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5301_13,-74.55017235,39.36257271,952 HARDING HIGHWAY,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_5301_14,-74.6392115,39.5232615,954 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5301_15,-74.72467604,39.44527907,958 HARDING HIGHWAY,BUENA VISTA TWP,17,2001,1,RES3A,3001 -0105_5301_16,-74.6218201,39.42241119,962 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5301_17,-74.61315807,39.35521918,4140 OAK ROAD,BUENA VISTA TWP,17,1900,1,GOV1,3004 -0105_5301_18.01,-74.75559324,39.43218989,4050 OAK ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_5301_18.02,-74.35933994,39.41355484,4046 OAK ROAD,BUENA VISTA TWP,17,1994,1,GOV1,3004 -0105_5301_18.03,-74.75037855,39.60121266,4040 OAK ROAD,BUENA VISTA TWP,17,1990,1,RES3A,3001 -0105_5301_18.04,-74.501355,39.434041,4036 OAK ROAD,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_5301_18.05,-74.86990883,39.60214245,4030 OAK ROAD,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_5301_18.06,-74.49486399,39.33502601,4056 OAK ROAD,BUENA VISTA TWP,17,1996,1,RES1,3001 -0105_5301_18.07,-74.51093143,39.43478332,4104 OAK ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_5301_18.08,-74.72573242,39.58845131,4116 OAK ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_5301_18.09,-74.62111407,39.43096332,4120 OAK ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_5301_18.10,-74.55732076,39.47749534,4126 OAK ROAD,BUENA VISTA TWP,17,1997,1,RES1,3001 -0105_5301_19,-74.5664559,39.35853923,4028 OAK ROAD,BUENA VISTA TWP,16,1950,1,RES1,3001 -0105_5301_2,-74.72270665,39.45810307,890 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5301_20,-74.4415655,39.3579615,4024 OAK ROAD,BUENA VISTA TWP,16,1950,1,RES1,3001 -0105_5301_21,-74.70943927,39.43477863,4020 OAK ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_5301_22,-74.8191025,39.650477,4014 OAK ROAD,BUENA VISTA TWP,16,1950,1,RES1,3001 -0105_5301_24,-74.50298784,39.46927503,397 TUCKAHOE ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_5301_26,-74.58859358,39.4145778,391 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5301_27,-74.5294965,39.400798,385 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5301_28,-74.92056064,39.51338253,381 TUCKAHOE ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_5301_29,-74.68181,39.444697,377 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5301_3,-74.35464983,39.41520898,896 HARDING HIGHWAY,BUENA VISTA TWP,,1985,1,RES1,3001 -0105_5301_30,-74.55698093,39.36202259,950-B HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5301_32,-74.44870131,39.37327697,365 TUCKAHOE ROAD,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_5301_33,-74.48757548,39.42247418,351 TUCKAHOE ROAD,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_5301_37,-74.6474516,39.53254135,343 TUCKAHOE ROAD,BUENA VISTA TWP,17,1990,1,COM3,3004 -0105_5301_4,-74.37916967,39.40072697,914 HARDING HIGHWAY,BUENA VISTA TWP,17,1953,1,RES1,3001 -0105_5301_40,-74.6583315,39.549545,325 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,2,RES1,3001 -0105_5301_41,-74.54147572,39.37269695,321 TUCKAHOE ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_5301_42,-74.43419502,39.36918232,319 TUCKAHOE ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_5301_44,-74.5378765,39.4788315,309 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5301_45,-74.5461485,39.4746405,950-A HARDING HIGHWAY,BUENA VISTA TWP,17,1930,1,GOV1,3004 -0105_5301_5,-74.3649085,39.407691,924 HARDING HIGHWAY,BUENA VISTA TWP,17,1895,1,RES1,3001 -0105_5301_6,-74.36082122,39.41674568,928 HARDING HIGHWAY,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_5301_7,-74.48736183,39.34889421,930 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5301_8,-74.5858955,39.456171,934 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5301_9,-74.57286547,39.42607015,938 HARDING HIGHWAY,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_5401_1,-74.62814942,39.52031087,760 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5402_10,-74.35948744,39.41110984,868 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5402_11,-74.37574921,39.41519641,301 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5402_12,-74.91142,39.5259835,251 TUCKAHOE ROAD,BUENA VISTA TWP,17,1948,2,RES1,3001 -0105_5402_13,-74.62697692,39.61967111,245 TUCKAHOE ROAD,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_5402_15,-74.87617732,39.59276618,215 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5402_16,-74.36890088,39.41603027,203 TUCKAHOE ROAD,BUENA VISTA TWP,17,1889,1,RES1,3001 -0105_5402_2,-74.63750342,39.53058734,802 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_5402_3,-74.69220107,39.4949074,808 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5402_4,-74.49851768,39.33094798,812 HARDING HIGHWAY,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_5402_5,-74.6378555,39.530849,818 HARDING HIGHWAY,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5402_7,-74.49685359,39.42471823,838 HARDING HIGHWAY,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_5402_9,-74.8661543,39.59297896,862 HARDING HIGHWAY,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5501_1,-74.526514,39.409029,119 WHEAT ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5501_11,-74.3662425,39.4086155,217 CUMBERLAND ROAD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_5501_12,-74.73670415,39.48979248,207 CUMBERLAND ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_5501_13,-74.51868632,39.40102896,3184 VINE ROAD,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_5501_15,-74.76669837,39.34800461,3140 VINE ROAD,BUENA VISTA TWP,17,2017,1,RES1,3001 -0105_5501_16,-74.37345678,39.41557207,175 LINCOLN AVENUE,BUENA VISTA TWP,,2000,1,RES1,3001 -0105_5501_16.01,-74.4596915,39.4822825,3126 VINE ROAD,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_5501_16.02,-74.35973206,39.41327116,3122 VINE ROAD,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_5501_16.03,-74.55228917,39.37232975,3118 VINE ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_5501_16.04,-74.518819,39.4045325,3114 VINE ROAD,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_5501_16.05,-74.49111946,39.33761881,179 LINCOLN AVENUE,BUENA VISTA TWP,17,2001,1,RES1,3001 -0105_5501_17,-74.643213,39.393081,191 LINCOLN AVENUE,BUENA VISTA TWP,17,1890,1,RES1,3001 -0105_5501_18,-74.76633168,39.31292746,197 LINCOLN AVENUE,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_5501_19,-74.92606384,39.50640256,193 LINCOLN AVENUE,BUENA VISTA TWP,17,1988,1,RES1,3001 -0105_5501_20,-74.5040295,39.426604,149 LINCOLN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5501_20.01,-74.67515201,39.50352633,153 LINCOLN AVENUE,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_5501_23,-74.55257535,39.55102398,105 LINCOLN AVENUE,BUENA VISTA TWP,,1995,1,RES1,3001 -0105_5501_3,-74.507551,39.404976,109 WHEAT ROAD,BUENA VISTA TWP,17,1943,1,RES1,3001 -0105_5501_4,-74.5193365,39.3971655,102 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5501_5,-74.48110991,39.34778683,120 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5501_6,-74.36927833,39.40460211,281 CUMBERLAND ROAD,BUENA VISTA TWP,,1977,1,RES1,3001 -0105_5601_1,-74.4964076,39.33518416,3806 OAK ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5601_11,-74.4357373,39.38076702,350 UNION ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_5601_12,-74.51239123,39.40135549,376 UNION ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_5601_13,-74.72822215,39.64500695,372 UNION ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_5601_13.01,-74.404348,39.387831,380 UNION ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5601_14,-74.60180832,39.31146698,396 UNION ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_5601_15,-74.836295,39.4138515,238 TUCKAHOE ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_5601_4,-74.52490134,39.31247697,220 TUCKAHOE ROAD,BUENA VISTA TWP,17,1940,2,RES1,3001 -0105_5601_6,-74.36519533,39.40741701,246 TUCKAHOE ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_5601_6.01,-74.36845771,39.41361309,242 TUCKAHOE ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_5601_7,-74.50062016,39.33488751,302 UNION ROAD,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_5601_8,-74.49760685,39.42365544,322 UNION ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5701_10,-74.9494385,39.510789,3970 OAK ROAD,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_5701_11,-74.4502355,39.3737055,3960 OAK ROAD,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_5701_12,-74.37784216,39.39845732,3954 OAK ROAD,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_5701_13,-74.59863479,39.33117247,3946 OAK ROAD,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_5701_14,-74.79515764,39.52821028,3940 OAK ROAD,BUENA VISTA TWP,17,1941,1,RES1,3001 -0105_5701_18,-74.48626334,39.33464408,383 UNION ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5701_19,-74.695481,39.5905845,377 UNION ROAD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_5701_20,-74.5555008,39.47172248,373 UNION ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_5701_22,-74.934228,39.488588,361 UNION ROAD,BUENA VISTA TWP,17,1890,1,RES1,3001 -0105_5701_24,-74.7196655,39.6406455,3920 OAK ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5701_25,-74.36659545,39.40983379,346 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5701_3,-74.4817505,39.3490165,330 TUCKAHOE ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_5701_4,-74.58224234,39.47413009,340 TUCKAHOE ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_5701_8,-74.7326745,39.449341,378 TUCKAHOE ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_5701_9,-74.55142285,39.36269003,386 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5801_1,-74.48660636,39.33524984,435 UNION ROAD,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_5801_11,-74.52944595,39.54059267,201 DE ROSA DRIVE,BUENA VISTA TWP,17,1962,1,GOV1,3004 -0105_5801_13,-74.47465512,39.48583833,104 DE ROSA DRIVE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_14,-74.50704487,39.32734235,108 DE ROSA DRIVE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_5801_16,-74.51130085,39.32789998,114 DE ROSA DRIVE,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_5801_17,-74.47232932,39.48122523,116 DE ROSA DRIVE,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_5801_18,-74.81234195,39.61691535,118 DE ROSA DRIVE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_5801_20,-74.43291,39.368989,418 TUCKAHOE ROAD,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_5801_21,-74.71745175,39.38870508,420 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_22,-74.65313937,39.52312533,422 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5801_24,-74.622956,39.438918,4630 POST ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_5801_26,-74.42310594,39.37201531,4594 POST ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_27,-74.59981322,39.31474245,4586 POST ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_28,-74.6000755,39.37949,4580 POST ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_3,-74.37396651,39.42034267,3947 OAK ROAD,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_5801_30,-74.70832266,39.47245753,4572 POST ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_31,-74.834493,39.567425,4568 POST ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_5801_32,-74.598647,39.367995,4564 POST ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_33,-74.542986,39.3913025,4552 POST ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_5801_34,-74.39143649,39.39108217,4546 POST ROAD,BUENA VISTA TWP,17,1999,1,RES1,3001 -0105_5801_35,-74.5018967,39.41992594,4540 POST ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_36,-74.451518,39.3734755,4532 POST ROAD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_5801_38,-74.622081,39.512055,4520 POST ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5801_39,-74.5228615,39.3213965,4508 POST ROAD,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_5801_4,-74.62742398,39.60441533,3955 OAK ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5801_40,-74.5263205,39.3935725,469 UNION ROAD,BUENA VISTA TWP,17,1954,2,RES1,3001 -0105_5801_6,-74.559153,39.4785585,3973 OAK ROAD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_5801_7,-74.5617585,39.3724115,209 DE ROSA DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5801_8,-74.494933,39.329755,207 DE ROSA DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5801_9,-74.88947813,39.49847248,205 DE ROSA DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5802_1,-74.481146,39.351063,214 DE ROSA DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5802_10,-74.77980406,39.64052615,113 DE ROSA DRIVE,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_5802_11,-74.52036,39.398813,111 DE ROSA DRIVE,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_5802_12,-74.470326,39.344212,107 DE ROSA DRIVE,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_5802_13,-74.59172228,39.34703836,204 DE ROSA DRIVE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_5802_14,-74.49538369,39.42596501,208 DE ROSA DRIVE,BUENA VISTA TWP,17,1968,1,RES3A,3001 -0105_5802_15,-74.73420811,39.4377232,210 DE ROSA DRIVE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5802_3,-74.550542,39.474273,404 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_5802_5,-74.55397,39.4718695,408 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,COM1,3004 -0105_5802_6,-74.44363985,39.35472883,410 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5802_8,-74.449126,39.3529705,125 DE ROSA DRIVE,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_5802_9,-74.48865126,39.33568534,119 DE ROSA DRIVE,BUENA VISTA TWP,17,1968,1,COM7,3004 -0105_5901_1,-74.46448133,39.349035,4579 POST ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5901_10.01,-74.72415834,39.57682301,5174 LANDIS AVENUE,BUENA VISTA TWP,17,1991,1,RES1,3001 -0105_5901_11,-74.50159027,39.47619129,580 TUCKAHOE ROAD,BUENA VISTA TWP,,1978,1,RES1,3001 -0105_5901_12,-74.83683561,39.37291072,588 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_5901_14,-74.607478,39.325223,5186 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,COM4,3004 -0105_5901_15,-74.7531885,39.448774,5170 LANDIS AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_5901_16,-74.38760075,39.39198268,5162 LANDIS AVENUE,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_5901_17,-74.64410783,39.36515511,5166 LANDIS AVENUE,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_5901_18,-74.5949955,39.313264,5160 LANDIS AVENUE,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_5901_19,-74.63961917,39.53298951,5154 LANDIS AVENUE,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_5901_2,-74.912192,39.4960365,4591 POST ROAD,BUENA VISTA TWP,16,1960,1,RES1,3001 -0105_5901_20,-74.54732445,39.37987684,5146 LANDIS AVENUE,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_5901_21,-74.70593084,39.56478247,5140 LANDIS AVENUE,BUENA VISTA TWP,17,1925,1,RES1,3001 -0105_5901_22,-74.55283892,39.36308776,5136 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5901_25,-74.58549283,39.37593123,5122 LANDIS AVENUE,BUENA VISTA TWP,17,1945,2,RES1,3001 -0105_5901_26,-74.40544564,39.39290105,5114 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5901_27,-74.58734695,39.33037534,5104 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_5901_28,-74.78727965,39.6770171,5092 LANDIS AVENUE,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_5901_29,-74.532221,39.308164,5082 LANDIS AVENUE,BUENA VISTA TWP,,1920,1,RES1,3001 -0105_5901_3,-74.52646721,39.47295714,4603 POST ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5901_4,-74.62098266,39.37875109,4611 POST ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5901_5,-74.83649245,39.38828282,4621 POST ROAD,BUENA VISTA TWP,17,1938,1,RES1,3001 -0105_5901_5.01,-74.934429,39.4897415,4623 POST ROAD,BUENA VISTA TWP,17,1996,1,RES1,3001 -0105_5901_5.02,-74.66312542,39.46105886,4619 POST ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_5901_6,-74.81065436,39.64719847,502 TUCKAHOE ROAD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_5901_9,-74.78150232,39.67319991,550 TUCKAHOE ROAD,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_6001_1,-74.455961,39.350559,5135 LANDIS AVENUE,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_6001_10,-74.58060716,39.5026492,646 TUCKAHOE ROAD,BUENA VISTA TWP,17,1957,1,GOV1,3004 -0105_6001_11,-74.59938133,39.38195307,650 TUCKAHOE ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_6001_14,-74.72155105,39.58717578,676 TUCKAHOE ROAD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_6001_15,-74.76073983,39.43196259,5648 CHESTNUT AVENUE,BUENA VISTA TWP,,1986,1,RES1,3001 -0105_6001_16,-74.64288129,39.52973769,5646 CHESTNUT AVENUE,BUENA VISTA TWP,17,1986,1,GOV1,3004 -0105_6001_17,-74.8654855,39.4948515,5644 CHESTNUT AVENUE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_6001_18,-74.437862,39.367537,5638 CHESTNUT AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_6001_19,-74.753565,39.4317915,5634 CHESTNUT AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_6001_20,-74.78942908,39.37485778,5630 CHESTNUT AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_6001_21,-74.601629,39.47966,5626 CHESTNUT AVENUE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_6001_22,-74.52141325,39.44532081,5622 CHESTNUT AVENUE,BUENA VISTA TWP,17,1982,1,RES1,3001 -0105_6001_23,-74.714156,39.436667,5618 CHESTNUT AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_6001_24,-74.8181195,39.634936,5614 CHESTNUT AVENUE,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_6001_26,-74.48194865,39.33869254,5606 CHESTNUT AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_6001_28,-74.62980224,39.41570299,5598 CHESTNUT AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_6001_29,-74.57974385,39.31101824,5594 CHESTNUT AVENUE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_6001_3,-74.57422343,39.35604572,5151 LANDIS AVENUE,BUENA VISTA TWP,17,1956,1,GOV1,3004 -0105_6001_31,-74.7551335,39.433198,5588 CHESTNUT AVENUE,BUENA VISTA TWP,17,1961,1,RES1,3001 -0105_6001_33,-74.84770514,39.37765227,5546 CHESTNUT AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_6001_4,-74.5378455,39.4719955,5153 LANDIS AVENUE,BUENA VISTA TWP,16,1960,1,RES1,3001 -0105_6001_6,-74.57346843,39.41912131,5161 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6001_7,-74.370389,39.402598,5181 LANDIS AVENUE,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_6001_8,-74.48828938,39.49195453,5197 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6001_9,-74.4361105,39.368444,640 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6002_1,-74.78060332,39.67170061,5633 CHESTNUT AVENUE,BUENA VISTA TWP,16,2000,1,REL1,3004 -0105_6002_10,-74.90946818,39.49661462,726 TUCKAHOE ROAD,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_6002_10.01,-74.81208994,39.64445131,414 CANNON RANGE AVENUE,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_6002_11,-74.50600416,39.4253265,740 TUCKAHOE ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_6002_14,-74.8131525,39.6505905,6028 PIACENZIA AVENUE,BUENA VISTA TWP,17,1970,2,RES1,3001 -0105_6002_19,-74.5904225,39.336455,426 CANNON RANGE AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6002_2,-74.635012,39.626452,5635 CHESTNUT AVENUE,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_6002_3,-74.72741693,39.45292819,5639 CHESTNUT AVENUE,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_6002_4,-74.5639205,39.4163225,5641 CHESTNUT AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_6002_6,-74.88929522,39.5405731,5655 CHESTNUT AVENUE,BUENA VISTA TWP,17,1925,1,RES1,3001 -0105_6002_8,-74.5419808,39.39755851,710 TUCKAHOE ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_6003_1,-74.4896,39.3375705,5523 CHESTNUT AVENUE,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_6003_1.01,-74.67566246,39.3767983,5527 CHESTNUT AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_6003_1.02,-74.43709159,39.37051668,5531 CHESTNUT AVENUE,BUENA VISTA TWP,17,2013,1,COM6,3002 -0105_6003_2,-74.57683878,39.48061326,5535 CHESTNUT AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_6003_2.01,-74.825368,39.531978,5539 CHESTNUT AVENUE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_6003_3,-74.81341789,39.52031729,5559 CHESTNUT AVENUE,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_6003_5,-74.438447,39.3652365,5585 CHESTNUT AVENUE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_6003_6,-74.5411405,39.3730635,5595 CHESTNUT AVENUE,BUENA VISTA TWP,17,1954,1,RES1,3001 -0105_6003_7,-74.79472818,39.64548406,5605 CHESTNUT AVENUE,BUENA VISTA TWP,17,1952,1,RES1,3001 -0105_6003_8,-74.5131965,39.4050815,5615 CHESTNUT AVENUE,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_6003_9,-74.52467516,39.4294998,5625 CHESTNUT AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_601_8,-74.510211,39.407083,ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_606_1,-74.52362866,39.39799799,1164 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6101_1,-74.52847645,39.54528985,603 TUCKAHOE ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6101_10,-74.84954672,39.54036959,5231 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6101_11,-74.500929,39.415374,5239 LANDIS AVENUE,BUENA VISTA TWP,17,1923,1,GOV1,3004 -0105_6101_12,-74.649622,39.5314065,5247 LANDIS AVENUE,BUENA VISTA TWP,17,1924,4,RES4,3001 -0105_6101_13,-74.5988002,39.36352193,5255 LANDIS AVENUE,BUENA VISTA TWP,47,1940,1,RES1,3001 -0105_6101_15,-74.6352195,39.555406,5285 LANDIS AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_6101_16,-74.541822,39.374812,647 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_6101_17,-74.484414,39.3368495,643 MAIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6101_18,-74.49600127,39.42640538,635 MAIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6101_19,-74.61055389,39.35189532,629 MAIN AVENUE,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_6101_2,-74.507995,39.3374285,609 TUCKAHOE ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_6101_20,-74.49419226,39.44505904,621 MAIN AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_6101_21,-74.8065742,39.63286558,609 MAIN AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6101_22,-74.63061088,39.43422574,547 MAIN AVENUE,BUENA VISTA TWP,17,1920,1,GOV1,3004 -0105_6101_23,-74.73885634,39.46878626,539 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6101_24,-74.47658978,39.34147091,741 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6101_25,-74.80904385,39.6296603,747 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6101_26,-74.64179953,39.62234502,755 TUCKAHOE ROAD,BUENA VISTA TWP,15,1960,1,COM1,3004 -0105_6101_27,-74.55069361,39.46303333,517 MAIN AVENUE,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_6101_29,-74.6468625,39.3569585,735 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6101_30,-74.37718883,39.396031,725 TUCKAHOE ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_6101_31,-74.5995995,39.434495,715 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6101_32,-74.3907825,39.3945195,707 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6101_33,-74.47568795,39.3423885,701 TUCKAHOE ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_6101_34,-74.5053005,39.4087935,681 TUCKAHOE ROAD,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_6101_35,-74.52479893,39.39773081,675 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6101_36,-74.49364597,39.43277987,671 TUCKAHOE ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_6101_37,-74.49223278,39.33639498,665 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6101_38,-74.5026917,39.33686654,661 TUCKAHOE ROAD,BUENA VISTA TWP,,1989,1,RES1,3001 -0105_6101_39,-74.7961795,39.5327685,651 TUCKAHOE ROAD,BUENA VISTA TWP,17,1889,1,RES1,3001 -0105_6101_39.01,-74.487879,39.3392275,657 TUCKAHOE ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_6101_40,-74.70463,39.429271,635 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6101_5,-74.52276973,39.39803585,623 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6101_6,-74.802764,39.639831,5219 LANDIS AVENUE,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_6101_8,-74.57848206,39.43036739,5225 LANDIS AVENUE,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_6201_16,-74.7894721,39.64394301,534 MAIN AVENUE,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_6201_16.01,-74.5812365,39.422903,526 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6201_17,-74.8243353,39.46998347,542 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6201_18,-74.6063115,39.321484,604 MAIN AVENUE,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_6201_19,-74.57230952,39.42886673,610 MAIN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6201_20,-74.57586982,39.35387645,614 MAIN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6201_23,-74.73539497,39.4606658,646 MAIN AVENUE,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_6201_24,-74.5198025,39.3201325,5319 LANDIS AVENUE,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_6202_2,-74.8471095,39.609247,161 YOST ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_6202_3,-74.60169804,39.38536088,905 TUCKAHOE ROAD,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_6202_4,-74.9446388,39.50452474,851 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6202_5,-74.77503595,39.63820231,845 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6301_13.03,-74.8435655,39.6037495,LOCUST AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6301_17,-74.72505585,39.58923254,322 LOCUST AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_6301_18,-74.61279213,39.53985857,249 TWENTIETH AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_6301_20,-74.791015,39.4425625,271 TWENTIETH AVENUE,BUENA VISTA TWP,17,1992,1,COM1,3004 -0105_6301_26.01,-74.6100105,39.323578,HIGHLAND AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6301_26.02,-74.687222,39.5011845,HIGHLAND AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6301_30,-74.47141092,39.48397515,5485 LANDIS AVENUE,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_6301_35,-74.47345543,39.4848926,416 HIGHLAND AVENUE,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_6301_38,-74.50366417,39.332725,344 HIGHLAND AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6401_2,-74.45529237,39.4904082,272 HIGHLAND AVENUE,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_6401_4,-74.68383133,39.52143799,254 HIGHLAND AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6402_1,-74.5886715,39.3218085,HIGHLAND AVENUE,BUENA VISTA TWP,,0,1,RES3A,3001 -0105_6402_10,-74.638017,39.524917,465 MILLVILLE AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6402_2,-74.7550633,39.30276962,HIGHLAND AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6402_8,-74.77163715,39.3386684,104 HIGHLAND AVENUE,BUENA VISTA TWP,17,2017,1,RES1,3004 -0105_6403_5,-74.61056881,39.34180215,106 LOCUST AVENUE,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_6404_2,-74.55497985,39.35910434,325 MILLVILLE AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6404_3,-74.759249,39.4293075,127 LOCUST AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_6404_4,-74.50492485,39.43172603,329 MILLVILLE AVENUE,BUENA VISTA TWP,,0,1,RES1,3002 -0105_6404_4.01,-74.56883635,39.34366548,117 LOCUST AVENUE,BUENA VISTA TWP,17,1974,1,COM1,3004 -0105_6404_5,-74.4940665,39.33507,355 MILLVILLE AVENUE,BUENA VISTA TWP,17,1953,1,RES1,3001 -0105_6404_6,-74.939369,39.5168605,345 MILLVILLE AVENUE,BUENA VISTA TWP,17,1955,1,GOV1,3004 -0105_6405_10,-74.48634458,39.43979849,215 LOCUST AVENUE,BUENA VISTA TWP,17,1985,2,GOV1,3004 -0105_6405_11,-74.51974798,39.40338366,207 LOCUST AVENUE,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_6405_3,-74.52587658,39.31518169,263 LOCUST AVENUE,BUENA VISTA TWP,17,1998,1,REL1,3004 -0105_6405_5,-74.61507344,39.48922043,249 LOCUST AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_6405_8,-74.504699,39.47794,229 LOCUST AVENUE,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_6406_12,-74.89763916,39.55274663,244 LOCUST AVENUE,BUENA VISTA TWP,17,1980,1,RES3A,3001 -0105_6406_16,-74.60173998,39.41005985,270 LOCUST AVENUE,BUENA VISTA TWP,17,2018,1,RES3A,3001 -0105_6406_3,-74.64751136,39.56609641,HIGHLAND AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6406_4,-74.718362,39.461454,HIGHLAND AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6406_6,-74.55376455,39.47254278,HIGHLAND AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6406_7,-74.81326991,39.47021737,HIGHLAND AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6406_8,-74.43782067,39.49361658,208 LOCUST AVENUE,BUENA VISTA TWP,17,1925,2,GOV1,3004 -0105_6406_9,-74.4912117,39.419079,220 LOCUST AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6501_1,-74.561631,39.5202745,153 TWENTIETH AVENUE,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_6501_10,-74.62624296,39.43610783,955 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6501_12,-74.64245651,39.43431988,933 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6501_14,-74.364884,39.4103335,148 YOST ROAD,BUENA VISTA TWP,17,1964,1,RES1,3001 -0105_6501_15,-74.5937575,39.358877,YOST ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6501_2,-74.4676525,39.495434,143 TWENTIETH AVENUE,BUENA VISTA TWP,17,1955,2,RES1,3001 -0105_6501_3,-74.85164094,39.61312727,137 TWENTIETH AVENUE,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_6501_4,-74.974564,39.5086335,133 TWENTIETH AVENUE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_6501_5,-74.51838418,39.32130196,129 TWENTIETH AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6501_6,-74.62387612,39.4210573,125 TWENTIETH AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6501_7,-74.7632205,39.3505675,119 TWENTIETH AVENUE,BUENA VISTA TWP,17,1960,1,RES3A,3001 -0105_6501_8,-74.37917163,39.39813117,965 TUCKAHOE ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_6501_9,-74.3954795,39.3949115,961 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6502_10,-74.612972,39.321697,125 NINETEENTH AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_6502_11,-74.7820795,39.6622275,1031 TUCKAHOE ROAD,BUENA VISTA TWP,17,1936,1,RES1,3001 -0105_6502_12,-74.58253705,39.47450927,1025 TUCKAHOE ROAD,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_6502_13,-74.48903861,39.35101102,1019 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6502_14,-74.5909651,39.42553712,1011 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES3A,3001 -0105_6502_15,-74.44217246,39.37165465,1007 TUCKAHOE ROAD,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_6502_16,-74.7746255,39.3185495,1001 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6502_17,-74.52252951,39.31994367,991 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6502_9,-74.55500413,39.40730471,131 NINETEENTH AVENUE,BUENA VISTA TWP,16,1920,1,RES1,3001 -0105_6601_1,-74.687109,39.4970515,831 TUCKAHOE ROAD,BUENA VISTA TWP,17,1938,1,RES1,3001 -0105_6602_1,-74.612794,39.3660245,406 WALDECK AVENUE,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_6602_10,-74.4914715,39.430853,962 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6602_12,-74.61392992,39.36600678,972 TUCKAHOE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6602_13,-74.72274039,39.45896778,982 TUCKAHOE ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6602_17,-74.94927,39.5335725,306 MAIN AVENUE,BUENA VISTA TWP,17,1998,1,RES3A,3001 -0105_6602_18,-74.494038,39.3371195,314 MAIN AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_6602_2,-74.88291443,39.49731671,412 WALDECK AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_6602_21,-74.93251473,39.49573175,362 MAIN AVENUE,BUENA VISTA TWP,17,1960,2,RES1,3001 -0105_6602_3,-74.63678739,39.41160519,904 TUCKAHOE ROAD,BUENA VISTA TWP,17,1890,1,RES1,3001 -0105_6602_4,-74.6776305,39.4529745,912 TUCKAHOE ROAD,BUENA VISTA TWP,17,1980,1,RES3A,3001 -0105_6602_5,-74.7004903,39.64361913,928 TUCKAHOE ROAD,BUENA VISTA TWP,17,1907,1,RES1,3001 -0105_6602_6,-74.52374499,39.46530721,940 TUCKAHOE ROAD,BUENA VISTA TWP,16,1969,1,GOV1,3004 -0105_6602_7,-74.4705325,39.3458605,946 TUCKAHOE ROAD,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_6602_8,-74.56892766,39.35944793,950 TUCKAHOE ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6602_9,-74.837916,39.41837648,956 TUCKAHOE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6701_1.01,-74.61284924,39.48607987,305 CANNON RANGE AVENUE,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_6701_1.02,-74.76513468,39.63722313,313 CANNON RANGE AVENUE,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_6701_1.03,-74.6731345,39.343612,323 CANNON RANGE AVENUE,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_6701_1.04,-74.550864,39.464472,331 CANNON RANGE AVENUE,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_6701_1.05,-74.5985845,39.3305945,CANNON RANGE AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6702_5,-74.7362515,39.4484495,111 ARDSLEY TERRACE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6703_1,-74.39162,39.389972,102 ARDSLEY TERRACE,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_6703_2,-74.503267,39.5034,104 ARDSLEY TERRACE,BUENA VISTA TWP,17,1962,1,RES3A,3001 -0105_6703_3,-74.6127095,39.4235525,106 ARDSLEY TERRACE,BUENA VISTA TWP,17,1962,1,RES3A,3001 -0105_6703_4,-74.5192145,39.3221185,108 ARDSLEY TERRACE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6706_3,-74.5862165,39.373756,DARTMOUTH TERRACE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6711_3,-74.55896243,39.47772672,PIACENZIA AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6718_7,-74.58181182,39.34289996,HAMPTON TERRACE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6720_1,-74.422273,39.3712,748 TUCKAHOE ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6720_7,-74.4406745,39.3710285,421 MAIN AVENUE,BUENA VISTA TWP,,1970,1,RES1,3001 -0105_6720_8,-74.50423846,39.41778277,752 TUCKAHOE ROAD,BUENA VISTA TWP,17,1993,1,RES1,3001 -0105_6801_10,-74.7572235,39.4308155,PIACENZIA AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6801_3,-74.512051,39.3989755,5962 GENOA AVENUE,BUENA VISTA TWP,,0,1,RES3A,3001 -0105_6801_5,-74.57096914,39.42877153,5976 GENOA AVENUE,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_6901_1,-74.8084982,39.62172538,5005 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6901_10,-74.818154,39.653253,5065 LANDIS AVENUE,BUENA VISTA TWP,17,2009,1,RES1,3001 -0105_6901_12,-74.551667,39.404521,5073 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6901_13,-74.51186141,39.32189084,5490 CHESTNUT AVENUE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_6901_13.01,-74.80872006,39.55310239,5480 CHESTNUT AVENUE,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_6901_14,-74.81505146,39.61604683,5093 LANDIS AVENUE,BUENA VISTA TWP,17,1966,1,RES1,3001 -0105_6901_15,-74.49555784,39.32962949,5103 LANDIS AVENUE,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_6901_16,-74.75379831,39.45141094,5107 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6901_17,-74.86149907,39.43849022,5111 LANDIS AVENUE,BUENA VISTA TWP,16,1930,1,RES1,3001 -0105_6901_19,-74.5300315,39.472856,5117 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_6901_2,-74.88882936,39.50516146,5019 LANDIS AVENUE,BUENA VISTA TWP,17,1932,1,RES1,3001 -0105_6901_22,-74.50902053,39.32256165,5510 CHESTNUT AVENUE,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_6901_24,-74.790061,39.5330195,5502 CHESTNUT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6901_25,-74.5216005,39.315468,5496 CHESTNUT AVENUE,BUENA VISTA TWP,18,2004,1,RES1,3001 -0105_6901_3,-74.82967812,39.37456267,5025 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_6901_33,-74.63269,39.459988,5430 CHESTNUT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_6901_35,-74.5812945,39.3456355,5418 CHESTNUT AVENUE,BUENA VISTA TWP,28,1960,2,RES1,3001 -0105_6901_36,-74.68067476,39.49784176,5414 CHESTNUT AVENUE,BUENA VISTA TWP,28,1960,1,RES1,3001 -0105_6901_37,-74.85340494,39.36957473,665 UNION ROAD,BUENA VISTA TWP,17,1921,2,RES1,3001 -0105_6901_38,-74.69395577,39.4478399,653 UNION ROAD,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_6901_39,-74.5138425,39.3254835,641 UNION ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_6901_4,-74.5379436,39.37437694,5029 LANDIS AVENUE,BUENA VISTA TWP,17,1938,1,RES1,3002 -0105_6901_40,-74.5148005,39.394647,633 UNION ROAD,BUENA VISTA TWP,17,1960,1,RES1,3002 -0105_6901_43,-74.63610309,39.52991701,5049 LANDIS AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_6901_5,-74.54187769,39.45525505,5033 LANDIS AVENUE,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_6901_7,-74.425683,39.364712,5041 LANDIS AVENUE,BUENA VISTA TWP,17,1967,1,RES1,3001 -0105_6902_11,-74.6357635,39.3824655,5519 CHESTNUT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3002 -0105_6902_32,-74.8150865,39.391802,735 UNION ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_6902_6,-74.366549,39.410149,5421 CHESTNUT AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_6902_7,-74.640687,39.5352275,5429 CHESTNUT AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_6902_8,-74.7594615,39.4321855,5441 CHESTNUT AVENUE,BUENA VISTA TWP,18,1995,1,RES1,3002 -0105_7001_1,-74.51877263,39.39716246,148 CIMINO BOULEVARD,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_7001_1.01,-74.36407183,39.41905334,4301 POST ROAD,BUENA VISTA TWP,17,1999,1,RES1,3001 -0105_7001_13,-74.511039,39.330144,137 LE JAN TERRACE,BUENA VISTA TWP,17,1981,1,RES1,3001 -0105_7001_14,-74.94077111,39.50210276,133 LE JAN TERRACE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7001_15,-74.37484269,39.41014893,129 LE JAN TERRACE,BUENA VISTA TWP,17,1980,1,GOV1,3004 -0105_7001_16,-74.90054154,39.50812743,125 LE JAN TERRACE,BUENA VISTA TWP,17,1976,1,RES1,3001 -0105_7001_17,-74.753266,39.4514215,123 LE JAN TERRACE,BUENA VISTA TWP,17,1975,1,COM1,3004 -0105_7001_18,-74.80977767,39.63830103,119 LE JAN TERRACE,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_7001_19,-74.71322783,39.46883302,115 LE JAN TERRACE,BUENA VISTA TWP,17,1978,1,GOV1,3004 -0105_7001_2,-74.6122565,39.320936,4313 POST ROAD,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_7001_20,-74.5142475,39.4420185,111 LE JAN TERRACE,BUENA VISTA TWP,17,1980,1,RES1,3002 -0105_7001_21,-74.50339,39.329873,4840 LANDIS AVENUE,BUENA VISTA TWP,17,1955,2,RES1,3001 -0105_7001_22,-74.60868291,39.3932457,4836 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7001_23,-74.62427975,39.38455181,4832 LANDIS AVENUE,BUENA VISTA TWP,16,1960,1,RES1,3001 -0105_7001_24,-74.72445667,39.58885229,4828 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7001_25,-74.491733,39.3342885,4824 LANDIS AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_7001_26,-74.37034211,39.40505183,4814 LANDIS AVENUE,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_7001_27,-74.48493487,39.34629878,4810 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7001_28,-74.9411255,39.5255475,4806 LANDIS AVENUE,BUENA VISTA TWP,17,2014,1,RES1,3001 -0105_7001_29,-74.47638,39.338105,108 CIMINO BOULEVARD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7001_3,-74.5121275,39.3373125,4317 POST ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7001_30,-74.79151074,39.63689142,110 CIMINO BOULEVARD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_7001_31,-74.68949396,39.41730768,112 CIMINO BOULEVARD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_7001_32,-74.60178922,39.3798043,114 CIMINO BOULEVARD,BUENA VISTA TWP,17,1940,2,RES1,3001 -0105_7001_33,-74.50895295,39.43692788,118 CIMINO BOULEVARD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_7001_35,-74.55580286,39.36720795,128 CIMINO BOULEVARD,BUENA VISTA TWP,17,1989,1,RES3A,3001 -0105_7001_36,-74.6157075,39.3399815,132 CIMINO BOULEVARD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_7001_37,-74.72410077,39.43586464,140 CIMINO BOULEVARD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7001_4,-74.36945535,39.40655408,4321 POST ROAD,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_7001_5.01,-74.49283947,39.33440585,4325 POST ROAD,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_7001_5.02,-74.38840244,39.39372493,4333 POST ROAD,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_7001_7,-74.4996035,39.328654,4343 POST ROAD,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_7001_8,-74.49579333,39.336389,165 LE JAN TERRACE,BUENA VISTA TWP,17,1978,1,RES3B,3001 -0105_7001_9,-74.50227248,39.41093418,157 LE JAN TERRACE,BUENA VISTA TWP,17,1970,1,RES3A,3001 -0105_7002_1,-74.5924725,39.3121965,4401 POST ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7002_1.01,-74.49723083,39.33589851,162 LE JAN TERRACE,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_7002_10,-74.52429011,39.47220783,4912 LANDIS AVENUE,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7002_11,-74.45065733,39.35400051,4906 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7002_12,-74.62183167,39.51125751,4902 LANDIS AVENUE,BUENA VISTA TWP,17,1930,2,RES1,3001 -0105_7002_12.01,-74.4464305,39.484762,108 LE JAN TERRACE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7002_13,-74.83426117,39.37243749,112 LE JAN TERRACE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7002_14,-74.97212304,39.5159456,116 LE JAN TERRACE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7002_15,-74.54749016,39.37170797,120 LE JAN TERRACE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_7002_16,-74.51216566,39.40129476,124 LE JAN TERRACE,BUENA VISTA TWP,17,1980,1,GOV1,3004 -0105_7002_2,-74.49036928,39.44499795,4413 POST ROAD,BUENA VISTA TWP,17,2009,1,RES1,3001 -0105_7002_20,-74.69489831,39.44762442,4409 POST ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7002_5,-74.63299978,39.46524017,4934 LANDIS AVENUE,BUENA VISTA TWP,17,1948,1,RES1,3001 -0105_7002_6,-74.59792099,39.51026717,4930 LANDIS AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_7002_7,-74.60910706,39.34530339,4926 LANDIS AVENUE,BUENA VISTA TWP,17,2001,1,RES1,3001 -0105_7002_8,-74.80415642,39.62813238,4922 LANDIS AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_7002_9,-74.495047,39.34218483,4918 LANDIS AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_7003_1,-74.94004676,39.51204904,4511 POST ROAD,BUENA VISTA TWP,17,1980,1,RES1,3002 -0105_7003_10,-74.72799744,39.45804169,5050 LANDIS AVENUE,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7003_11,-74.57211316,39.34867767,5042 LANDIS AVENUE,BUENA VISTA TWP,17,1932,1,RES1,3001 -0105_7003_13,-74.7567705,39.4538335,5030 LANDIS AVENUE,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_7003_14,-74.48796,39.348992,5012 LANDIS AVENUE,BUENA VISTA TWP,17,1983,1,RES1,3001 -0105_7003_15,-74.376553,39.4162895,5004 LANDIS AVENUE,BUENA VISTA TWP,,1974,1,RES1,3001 -0105_7003_16,-74.68864495,39.35860985,563 UNION ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7003_19,-74.83018247,39.41442215,511 UNION ROAD,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_7003_2,-74.6000645,39.4139035,5020 LANDIS AVENUE,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_7003_4,-74.65152021,39.52831219,4531 POST ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_7003_5,-74.71446436,39.43429972,4543 POST ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7003_7,-74.85435731,39.55879621,5060 LANDIS AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3002 -0105_7003_8,-74.36555913,39.41576364,5068 LANDIS AVENUE,BUENA VISTA TWP,17,1939,1,RES1,3001 -0105_7003_9,-74.44841438,39.35770025,5064 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_701_1,-74.483563,39.3487525,509 SIXTH ROAD,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_701_1.01,-74.82952116,39.56887604,1001 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_701_11,-74.52822422,39.38755545,1027 ROUTE 54,BUENA VISTA TWP,17,1953,1,RES1,3001 -0105_701_12,-74.573264,39.4297785,1031 ROUTE 54,BUENA VISTA TWP,17,1960,1,RES3A,3001 -0105_701_13,-74.40373539,39.39427313,1033 ROUTE 54,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_701_15,-74.63469167,39.43231082,114 PAGANO DRIVE,BUENA VISTA TWP,16,1940,1,RES1,3002 -0105_701_17,-74.64701102,39.52969637,118 PAGANO DRIVE,BUENA VISTA TWP,16,1940,1,RES1,3002 -0105_701_18,-74.56501355,39.34674485,120 PAGANO DRIVE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_701_2,-74.8139485,39.6401025,515 SIXTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3002 -0105_701_21,-74.49084353,39.33794568,1045 ROUTE 54,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_701_23,-74.6538289,39.45607146,104 DIXON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_701_26,-74.48868968,39.43437375,116 DIXON ROAD,BUENA VISTA TWP,,1949,1,REL1,3003 -0105_701_27,-74.771173,39.3141355,120 DIXON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_701_28,-74.456121,39.3796675,447 ELEVENTH STREET,BUENA VISTA TWP,17,1940,2,RES3A,3001 -0105_701_3,-74.61211497,39.35343926,519 SIXTH ROAD,BUENA VISTA TWP,17,1964,1,COM1,3004 -0105_701_30,-74.71911352,39.45053682,435 ELEVENTH STREET,BUENA VISTA TWP,17,1960,1,COM1,3004 -0105_701_31.01,-74.5612915,39.5455715,421 ELEVENTH STREET,BUENA VISTA TWP,17,1934,1,COM1,3004 -0105_701_32,-74.75288527,39.44883954,565 SIXTH ROAD,BUENA VISTA TWP,17,1959,2,COM1,3004 -0105_701_35,-74.56565967,39.47682872,547 SIXTH ROAD,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_701_4,-74.49009066,39.43223598,523 SIXTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_701_40,-74.6731475,39.360521,DIXON ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_701_6,-74.91731155,39.56552928,1009 ROUTE 54,BUENA VISTA TWP,,0,1,RES1,3001 -0105_701_7,-74.76258076,39.44575479,1011 ROUTE 54,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_701_8,-74.6071382,39.33016257,1013 ROUTE 54,BUENA VISTA TWP,17,1949,1,RES1,3001 -0105_701_9,-74.6222462,39.40535249,1015 ROUTE 54,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7101_1,-74.70773857,39.41687557,3601 OAK ROAD,BUENA VISTA TWP,17,1960,2,RES1,3001 -0105_7101_10,-74.4795565,39.3424865,3649 OAK ROAD,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_7101_11,-74.3660995,39.413432,3653 OAK ROAD,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_7101_12,-74.71168743,39.43097537,3659 OAK ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_7101_13,-74.8157435,39.6559135,3667 OAK ROAD,BUENA VISTA TWP,17,2003,1,IND1,3004 -0105_7101_14,-74.6452254,39.44669809,3671 OAK ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7101_16,-74.57688583,39.35555918,3685 OAK ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7101_17,-74.49769087,39.32809881,3701 OAK ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7101_2,-74.4045555,39.3890665,3607 OAK ROAD,BUENA VISTA TWP,17,1988,2,RES1,3001 -0105_7101_21,-74.557956,39.490088,3743 OAK ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7101_25,-74.79353753,39.64366333,430 UNION ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7101_26,-74.5878491,39.35794091,440 UNION ROAD,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_7101_28,-74.52933317,39.38649461,444 UNION ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7101_29,-74.61177533,39.32742597,454 UNION ROAD,BUENA VISTA TWP,17,2014,1,RES1,3001 -0105_7101_3,-74.5022519,39.33209634,3611 OAK ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_7101_30,-74.57046748,39.41347979,4332 POST ROAD,BUENA VISTA TWP,17,1988,1,AGR1,3001 -0105_7101_31,-74.4284312,39.37398166,4328 POST ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7101_32,-74.95038936,39.49142952,4324 POST ROAD,BUENA VISTA TWP,16,1940,1,RES1,3001 -0105_7101_33,-74.66885997,39.44918093,4320 POST ROAD,BUENA VISTA TWP,17,1977,1,RES1,3001 -0105_7101_34,-74.50560668,39.41125552,4316 POST ROAD,BUENA VISTA TWP,17,2013,1,IND2,3004 -0105_7101_35,-74.58747495,39.33245455,4302 POST ROAD,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_7101_37,-74.56163993,39.36454678,4268 POST ROAD,BUENA VISTA TWP,17,1953,1,RES3B,3001 -0105_7101_38,-74.59182366,39.3484121,4266 POST ROAD,BUENA VISTA TWP,,0,1,AGR1,3001 -0105_7101_39,-74.559709,39.3663095,4254 POST ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_7101_4,-74.7096255,39.5021115,3615 OAK ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_7101_40,-74.8275996,39.37635001,4246 POST ROAD,BUENA VISTA TWP,17,2018,1,RES1,3001 -0105_7101_41,-74.61612953,39.42972476,4230 POST ROAD,BUENA VISTA TWP,17,1940,1,RES3A,3001 -0105_7101_42,-74.50322029,39.4499933,4162 POST ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7101_43,-74.8480285,39.410553,4154 POST ROAD,BUENA VISTA TWP,17,1988,1,RES1,3001 -0105_7101_44,-74.6127334,39.48927119,4150 POST ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_7101_45,-74.37224217,39.41548037,4144 POST ROAD,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_7101_47,-74.62992195,39.41765382,4126 POST ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7101_48,-74.6476145,39.531767,4120 POST ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_7101_49,-74.8019265,39.6336025,4114 POST ROAD,BUENA VISTA TWP,17,1989,1,GOV1,3004 -0105_7101_5,-74.864185,39.595824,3619 OAK ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_7101_50,-74.6187925,39.438085,361 LINCOLN AVENUE,BUENA VISTA TWP,17,1975,1,GOV1,3004 -0105_7101_52,-74.87315707,39.52272808,355 LINCOLN AVENUE,BUENA VISTA TWP,17,1999,1,GOV1,3004 -0105_7101_53,-74.51969817,39.38942151,351 LINCOLN AVENUE,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_7101_57,-74.607642,39.346062,331 LINCOLN AVENUE,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7101_59,-74.50853711,39.51571435,321 LINCOLN AVENUE,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_7101_6,-74.64202965,39.34088606,3625 OAK ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7101_6.01,-74.73787589,39.46346783,3629 OAK ROAD,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_7101_60,-74.59025719,39.3711067,315 LINCOLN AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_7101_61,-74.49766428,39.49211819,307 LINCOLN AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_7101_62,-74.50801601,39.46233266,4158 POST ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7101_63,-74.51187755,39.46287984,365 LINCOLN AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_7101_63.01,-74.5715715,39.4130375,369 LINCOLN AVENUE,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_7101_8.01,-74.35897816,39.41566101,3637 OAK ROAD,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_7101_9,-74.4188775,39.356995,3645 OAK ROAD,BUENA VISTA TWP,17,1860,1,RES1,3001 -0105_7201_1,-74.4380551,39.365996,3117 VINE ROAD,BUENA VISTA TWP,18,1990,1,RES1,3001 -0105_7201_10,-74.58946844,39.42198569,135 CUMBERLAND ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7201_11,-74.499133,39.333305,129 CUMBERLAND ROAD,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_7201_12,-74.6475385,39.549119,123 CUMBERLAND ROAD,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_7201_14,-74.836827,39.3835185,3718 OAK ROAD,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_7201_15,-74.808534,39.613775,3702 OAK ROAD,BUENA VISTA TWP,17,1968,1,RES1,3001 -0105_7201_16,-74.9164445,39.5133915,3694 OAK ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7201_17,-74.79980619,39.53457399,3688 OAK ROAD,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_7201_18,-74.7616895,39.4306945,3686 OAK ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_7201_19,-74.36324424,39.41686519,3684 OAK ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7201_2,-74.527537,39.3947805,3125 VINE ROAD,BUENA VISTA TWP,17,1940,2,GOV1,3004 -0105_7201_20,-74.5789965,39.3348,3680 OAK ROAD,BUENA VISTA TWP,17,1959,1,RES1,3001 -0105_7201_21,-74.712622,39.4744015,3670 OAK ROAD,BUENA VISTA TWP,17,1900,1,GOV1,3004 -0105_7201_22,-74.59597042,39.31023809,3660 OAK ROAD,BUENA VISTA TWP,16,1890,1,GOV1,3004 -0105_7201_24,-74.62967122,39.43292393,3650 OAK ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7201_25,-74.6333456,39.43230166,3644 OAK ROAD,BUENA VISTA TWP,17,1992,1,RES1,3001 -0105_7201_26,-74.63363437,39.364228,3636 OAK ROAD,BUENA VISTA TWP,,1989,1,RES1,3001 -0105_7201_27,-74.71772855,39.44629673,3630 OAK ROAD,BUENA VISTA TWP,17,1995,1,GOV1,3004 -0105_7201_28,-74.7805805,39.6793635,3620 OAK ROAD,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_7201_28.02,-74.8112855,39.3984865,3622 OAK ROAD,BUENA VISTA TWP,17,2001,1,RES1,3001 -0105_7201_28.03,-74.504527,39.412753,3626 OAK ROAD,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_7201_28.04,-74.65102266,39.52950197,263 LINCOLN AVENUE,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_7201_28.07,-74.81666471,39.49814548,247 LINCOLN AVENUE,BUENA VISTA TWP,17,2006,1,GOV1,3004 -0105_7201_29,-74.7130465,39.436362,237 LINCOLN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7201_3,-74.8007265,39.633591,3133 VINE ROAD,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_7201_30,-74.56107458,39.37275083,233 LINCOLN AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7201_31,-74.46304881,39.46381388,227 LINCOLN AVENUE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_7201_33,-74.5444697,39.37612753,3640 OAK ROAD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_7201_34,-74.63807983,39.528218,3105 VINE ROAD,BUENA VISTA TWP,17,1998,1,COM1,3004 -0105_7201_35,-74.57796164,39.33952776,3111 VINE ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7201_4,-74.608364,39.315399,3137 VINE ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7201_6,-74.80857735,39.63274354,3155 VINE ROAD,BUENA VISTA TWP,17,1927,1,RES1,3001 -0105_7201_8,-74.8037395,39.370339,3179 VINE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7201_9,-74.48280784,39.34097299,159 CUMBERLAND ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_7201_9.02,-74.47231373,39.49084171,149 CUMBERLAND ROAD,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_7301_10,-74.59301352,39.34166719,3042 VINE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7301_11,-74.7011775,39.6380855,3038 VINE ROAD,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_7301_12,-74.39775264,39.38945647,3016 VINE ROAD,BUENA VISTA TWP,17,1970,1,RES1,3004 -0105_7301_13,-74.57369578,39.33807484,1739 CENTRAL AVENUE,BUENA VISTA TWP,17,2002,2,COM4,3004 -0105_7301_13.02,-74.57573969,39.53655613,1731 CENTRAL AVENUE,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_7301_2,-74.48302592,39.33660417,3024 VINE ROAD,BUENA VISTA TWP,17,1905,1,RES1,3001 -0105_7301_3,-74.5238788,39.41169846,3060 VINE ROAD,BUENA VISTA TWP,17,1889,1,RES1,3001 -0105_7301_4,-74.62519556,39.61052293,3076 VINE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7301_5,-74.633441,39.4193215,3082 VINE ROAD,BUENA VISTA TWP,17,1959,2,RES1,3001 -0105_7301_6,-74.63547833,39.36446749,3068 VINE ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_7301_7,-74.5028871,39.33275832,3064 VINE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7301_9,-74.60320011,39.35206259,3052 VINE ROAD,BUENA VISTA TWP,17,1889,1,RES1,3001 -0105_7302_1,-74.61486219,39.35716837,1830 CENTRAL AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_7302_10,-74.6581091,39.41664773,248 LINCOLN AVENUE,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7302_12,-74.49659682,39.42448841,256 LINCOLN AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7302_13,-74.75314871,39.44749186,260 LINCOLN AVENUE,BUENA VISTA TWP,17,1976,2,GOV1,3004 -0105_7302_14.01,-74.55009046,39.37195767,268 LINCOLN AVENUE,BUENA VISTA TWP,17,2011,1,COM1,3004 -0105_7302_14.02,-74.55030559,39.35972726,264 LINCOLN AVENUE,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_7302_17,-74.60886236,39.38738247,1857 CENTRAL AVENUE,BUENA VISTA TWP,17,1969,1,IND1,3002 -0105_7302_18,-74.37434085,39.40075117,1847 CENTRAL AVENUE,BUENA VISTA TWP,17,1969,1,RES1,3001 -0105_7302_19,-74.65909962,39.41668112,1837 CENTRAL AVENUE,BUENA VISTA TWP,17,1967,1,GOV1,3004 -0105_7302_19.01,-74.84914966,39.61188274,1841 CENTRAL AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_7302_2,-74.37946016,39.40218347,3017 VINE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7302_3,-74.64177204,39.3731629,3023 VINE ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_7302_6,-74.4530525,39.4960875,3039 VINE ROAD,BUENA VISTA TWP,17,1900,2,RES1,3001 -0105_7302_8,-74.6471575,39.5228685,206 LINCOLN AVENUE,BUENA VISTA TWP,17,1899,1,RES1,3001 -0105_7302_8.01,-74.4992209,39.46763785,3065 VINE ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_7302_9,-74.68388631,39.44142093,224 LINCOLN AVENUE,BUENA VISTA TWP,17,1911,1,IND1,3002 -0105_7401_1,-74.78217348,39.65713782,2820 VINE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7401_3,-74.439511,39.487918,2846 VINE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7401_4,-74.835478,39.404397,2850 VINE ROAD,BUENA VISTA TWP,17,1970,1,AGR1,3001 -0105_7401_5,-74.38765633,39.391499,2890 VINE ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7401_6,-74.48294614,39.34025115,2906 VINE ROAD,BUENA VISTA TWP,,0,1,COM4,3004 -0105_7401_7,-74.50817765,39.33110203,2960 VINE ROAD,BUENA VISTA TWP,17,1950,1,RES3A,3001 -0105_7402_11,-74.50214325,39.47320104,2905 VINE ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7402_12,-74.363196,39.4087455,2915 VINE ROAD,BUENA VISTA TWP,17,1973,1,RES1,3001 -0105_7402_14,-74.6525915,39.370789,2921 VINE ROAD,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_7402_15,-74.91649331,39.51356999,2925 VINE ROAD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_7402_16,-74.58858591,39.40206168,2973 VINE ROAD,BUENA VISTA TWP,16,1889,1,RES1,3001 -0105_7402_19,-74.59650216,39.34495601,3496 OAK ROAD,BUENA VISTA TWP,16,1889,1,RES1,3001 -0105_7402_20,-74.55836851,39.36747267,3480 OAK ROAD,BUENA VISTA TWP,17,1890,3,RES1,3001 -0105_7402_21,-74.5105615,39.4035115,3470 OAK ROAD,BUENA VISTA TWP,17,1859,1,RES1,3001 -0105_7402_21.01,-74.55382785,39.488376,3464 OAK ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7402_22,-74.63238978,39.38912312,3460 OAK ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7402_23,-74.52472083,39.31759137,3448 OAK ROAD,BUENA VISTA TWP,16,1960,2,RES1,3001 -0105_7402_25,-74.79318744,39.36256961,3430 OAK ROAD,BUENA VISTA TWP,,2004,1,RES1,3001 -0105_7402_3,-74.49931984,39.33480448,2823 VINE ROAD,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_7402_4,-74.42138713,39.37082389,2835 VINE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7402_5,-74.399857,39.394221,2843 VINE ROAD,BUENA VISTA TWP,17,1956,1,RES1,3001 -0105_7402_6,-74.54704,39.4902775,2867 VINE ROAD,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_7402_8,-74.531223,39.3850905,2885 VINE ROAD,BUENA VISTA TWP,18,1970,1,RES1,3001 -0105_7402_9,-74.6033925,39.3084255,2895 VINE ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7501_1,-74.39115705,39.39036384,3445 OAK ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7501_10,-74.53374004,39.46681936,3495 OAK ROAD,BUENA VISTA TWP,,1979,1,RES1,3001 -0105_7501_10.01,-74.7837225,39.6552105,3501 OAK ROAD,BUENA VISTA TWP,47,1960,2,GOV1,3004 -0105_7501_11,-74.55781808,39.35775931,3507 OAK ROAD,BUENA VISTA TWP,17,1982,1,GOV1,3004 -0105_7501_12,-74.817805,39.498764,3511 OAK ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7501_14,-74.6431095,39.3628005,3525 OAK ROAD,BUENA VISTA TWP,16,1900,1,RES1,3001 -0105_7501_15,-74.76049879,39.4463751,310 LINCOLN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7501_17,-74.79769457,39.64313215,330 LINCOLN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7501_19,-74.804196,39.624019,356 LINCOLN AVENUE,BUENA VISTA TWP,16,1950,1,RES1,3001 -0105_7501_4,-74.60568327,39.35078436,3455 OAK ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7501_6,-74.488832,39.3774985,3481 OAK ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_7501_8,-74.5554215,39.472454,3489 OAK ROAD,BUENA VISTA TWP,17,1949,1,RES1,3001 -0105_7501_9,-74.522725,39.3872095,3491 OAK ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7601_10,-74.6493965,39.3416545,4249 POST ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7601_11,-74.61468363,39.4365976,4259 POST ROAD,BUENA VISTA TWP,17,1900,1,GOV1,3004 -0105_7601_12,-74.6674195,39.456201,4265 POST ROAD,BUENA VISTA TWP,17,1988,1,RES1,3001 -0105_7601_13,-74.64476183,39.52750983,4273 POST ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_7601_14,-74.618632,39.37966,139 CIMINO BOULEVARD,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_7601_15,-74.48891166,39.39122253,131 CIMINO BOULEVARD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7601_16,-74.56606783,39.35384439,127 CIMINO BOULEVARD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_7601_17,-74.60001766,39.43098667,123 CIMINO BOULEVARD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7601_18,-74.588444,39.315117,119 CIMINO BOULEVARD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_7601_18.01,-74.87772169,39.59923077,115 CIMINO BOULEVARD,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_7601_19,-74.49427,39.43531,111 CIMINO BOULEVARD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7601_2,-74.71059072,39.47122282,4125 POST ROAD,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_7601_20,-74.3892175,39.3891625,109 CIMINO BOULEVARD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7601_21,-74.51254153,39.32864917,107 CIMINO BOULEVARD,BUENA VISTA TWP,17,1935,1,RES1,3001 -0105_7601_22,-74.80616127,39.43761857,4746 LANDIS AVENUE,BUENA VISTA TWP,17,1939,1,RES1,3001 -0105_7601_23,-74.43022959,39.36616393,4744 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,GOV1,3004 -0105_7601_24,-74.50495217,39.33443346,4740 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7601_25,-74.50775951,39.32471467,4734 LANDIS AVENUE,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_7601_28,-74.77662885,39.62304343,4708 LANDIS AVENUE,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_7601_29,-74.65461813,39.54535187,4706 LANDIS AVENUE,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_7601_30,-74.6010795,39.3309215,4702 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7601_32,-74.6329748,39.36063606,4678 LANDIS AVENUE,BUENA VISTA TWP,,1958,1,RES1,3001 -0105_7601_33,-74.75191717,39.45352445,4698 LANDIS AVENUE,BUENA VISTA TWP,17,2000,1,GOV1,3004 -0105_7601_36,-74.63694511,39.4106168,4253 POST ROAD,BUENA VISTA TWP,17,1991,1,RES1,3001 -0105_7601_37,-74.433039,39.3650765,4235 POST ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7601_38,-74.55788795,39.36398239,4239 POST ROAD,BUENA VISTA TWP,17,1960,3,RES1,3001 -0105_7601_39,-74.45542438,39.49120474,4245 POST ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_7601_4,-74.552946,39.3623795,4149 POST ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7601_5,-74.547111,39.47508,4159 POST ROAD,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_7701_10,-74.86824314,39.49027226,4911 LANDIS AVENUE,BUENA VISTA TWP,17,1940,2,RES1,3001 -0105_7701_11,-74.6011915,39.3206415,4915 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7701_12,-74.809563,39.5379075,4919 LANDIS AVENUE,BUENA VISTA TWP,17,1963,1,RES1,3001 -0105_7701_14,-74.46268506,39.35894466,4931 LANDIS AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7701_15,-74.63898427,39.40032035,4941 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7701_16,-74.4878745,39.493726,614 UNION ROAD,BUENA VISTA TWP,,1988,1,RES1,3001 -0105_7701_18,-74.5106785,39.33170191,634 UNION ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7701_19,-74.724109,39.4599335,638 UNION ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7701_2,-74.8303325,39.646515,4709 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_7701_20,-74.57019123,39.35250088,642 UNION ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7701_21,-74.359165,39.4123505,5360 CHESTNUT AVENUE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_7701_22,-74.79966665,39.62244005,4925 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_7701_5,-74.9082185,39.494427,4739 LANDIS AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7701_6,-74.944076,39.5329655,4815 LANDIS AVENUE,BUENA VISTA TWP,17,1850,1,RES1,3001 -0105_7701_7,-74.62948754,39.3918417,4835 LANDIS AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_7701_8,-74.5712665,39.4134015,4841 LANDIS AVENUE,BUENA VISTA TWP,17,2015,1,RES3A,3001 -0105_7701_9,-74.49231463,39.33410567,4905 LANDIS AVENUE,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_7702_11,-74.63041037,39.40856323,736 UNION ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7702_2,-74.6256285,39.528553,5337 CHESTNUT AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7702_6,-74.66598284,39.45520653,5367 CHESTNUT AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_7702_7,-74.46276671,39.47349845,722 UNION ROAD,BUENA VISTA TWP,17,1988,1,GOV1,3004 -0105_7802_1,-74.48826665,39.33784652,WALDECK AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_7902_1,-74.4333265,39.4929225,310 WALDECK AVENUE,BUENA VISTA TWP,17,1953,1,RES1,3001 -0105_7902_12,-74.58747978,39.32209433,325 MAIN AVENUE,BUENA VISTA TWP,17,1969,1,GOV1,3004 -0105_7902_13,-74.7796935,39.5156165,309 MAIN AVENUE,BUENA VISTA TWP,17,1988,1,RES1,3001 -0105_7902_15,-74.657063,39.5283525,222 CANNON RANGE AVENUE,BUENA VISTA TWP,17,1996,1,RES1,3001 -0105_7902_17,-74.757438,39.4313595,240 CANNON RANGE AVENUE,BUENA VISTA TWP,17,1995,1,COM1,3004 -0105_7902_18,-74.812627,39.3842165,248 CANNON RANGE AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_7902_19,-74.55785207,39.35940081,258 CANNON RANGE AVENUE,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_7902_2,-74.6270205,39.357676,320 WALDECK AVENUE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_7902_20,-74.555883,39.357832,268 CANNON RANGE AVENUE,BUENA VISTA TWP,16,1988,1,RES1,3001 -0105_7902_5,-74.81549256,39.64204135,381 MAIN AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_7902_6,-74.6010706,39.35962469,373 MAIN AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_7902_7,-74.62454686,39.4337698,365 MAIN AVENUE,BUENA VISTA TWP,17,1975,1,GOV1,3004 -0105_7902_8,-74.60835824,39.39283735,357 MAIN AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_7902_9,-74.53753848,39.41211666,349 MAIN AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_8001_1,-74.45388116,39.47992398,CANNON RANGE AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8002_2,-74.48714235,39.43615855,287 MAIN AVENUE,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_8002_3,-74.71696772,39.39056992,277 MAIN AVENUE,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_8002_6.01,-74.5827679,39.47482145,233 MAIN AVENUE,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_8002_6.02,-74.3821315,39.417719,209 MAIN AVENUE,BUENA VISTA TWP,18,1994,1,RES1,3001 -0105_8002_6.03,-74.49979683,39.41484117,239 MAIN AVENUE,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_8002_6.04,-74.791703,39.6311935,245 MAIN AVENUE,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_801_1,-74.71908972,39.47946915,605 SIXTH ROAD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_801_11,-74.692934,39.55976175,440 ELEVENTH STREET,BUENA VISTA TWP,17,2008,1,RES1,3001 -0105_801_2,-74.50884229,39.41907796,613 SIXTH ROAD,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_801_4,-74.843324,39.415494,627 SIXTH ROAD,BUENA VISTA TWP,17,1950,2,RES1,3001 -0105_801_5,-74.50232691,39.43145764,410 ELEVENTH STREET,BUENA VISTA TWP,17,2015,1,RES1,3001 -0105_803_2,-74.46581434,39.49526697,538 ELEVENTH STREET,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_803_5,-74.75222239,39.2983049,ELEVENTH STREET,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_804_10,-74.5203705,39.382089,531 TENTH STREET,BUENA VISTA TWP,17,1960,2,RES1,3001 -0105_804_19,-74.49563639,39.43177219,665 SIXTH ROAD,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_804_22,-74.50472016,39.3244937,659 SIXTH ROAD,BUENA VISTA TWP,16,1959,1,RES1,3001 -0105_804_26,-74.6486392,39.54878463,651 SIXTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_804_27,-74.5378555,39.374004,649 SIXTH ROAD,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_804_29,-74.5347025,39.306912,645 SIXTH ROAD,BUENA VISTA TWP,17,1990,1,GOV1,3004 -0105_804_31,-74.63945345,39.52615195,641 SIXTH ROAD,BUENA VISTA TWP,17,2007,1,GOV1,3004 -0105_804_7,-74.5011505,39.4127425,545 TENTH STREET,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_804_8,-74.60275017,39.37017637,539 TENTH STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8101_10,-74.563149,39.3579955,145 MILLVILLE AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_8101_11,-74.4870165,39.336276,133 MILLVILLE AVENUE,BUENA VISTA TWP,17,2011,1,RES1,3001 -0105_8101_12,-74.39453399,39.38858204,212 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8101_13,-74.521414,39.450897,228 MAIN AVENUE,BUENA VISTA TWP,17,1974,1,GOV1,3004 -0105_8101_15,-74.8486715,39.3716705,234 MAIN AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_8101_16,-74.5146275,39.3214865,238 MAIN AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_8101_17,-74.9265635,39.525904,242 MAIN AVENUE,BUENA VISTA TWP,17,1984,1,RES1,3001 -0105_8101_18,-74.655508,39.5165115,246 MAIN AVENUE,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_8101_19,-74.5851063,39.37981378,252 MAIN AVENUE,BUENA VISTA TWP,17,1997,1,RES1,3001 -0105_8101_21,-74.51521121,39.32068425,262 MAIN AVENUE,BUENA VISTA TWP,17,1995,1,GOV1,3004 -0105_8101_22,-74.74589008,39.59253512,270 MAIN AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8101_23,-74.87977537,39.5943337,278 MAIN AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8101_25,-74.51604263,39.32273909,312 RISLEY AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_8101_26,-74.3618329,39.40999163,318 RISLEY AVENUE,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_8101_27,-74.52448908,39.31954334,328 RISLEY AVENUE,BUENA VISTA TWP,17,1979,1,GOV1,3004 -0105_8101_3.03,-74.37739467,39.40162727,245 DEERWOOD AVENUE,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_8101_5,-74.50783922,39.40411935,227 DEERWOOD AVENUE,BUENA VISTA TWP,17,1990,1,GOV1,3004 -0105_8101_6,-74.6337975,39.3526215,219 DEERWOOD AVENUE,BUENA VISTA TWP,17,1995,2,RES1,3001 -0105_8101_7,-74.3619765,39.411,179 MILLVILLE AVENUE,BUENA VISTA TWP,17,1995,1,GOV1,3004 -0105_8101_8,-74.840746,39.596449,169 MILLVILLE AVENUE,BUENA VISTA TWP,17,1990,1,GOV1,3004 -0105_8101_9,-74.87963866,39.45159276,157 MILLVILLE AVENUE,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_8102_1,-74.63028595,39.35537878,180 MILLVILLE AVENUE,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_8102_10,-74.48664561,39.33703766,118 MILLVILLE AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8102_11,-74.51045883,39.33912634,126 MILLVILLE AVENUE,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_8102_12,-74.44535098,39.48370097,134 MILLVILLE AVENUE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_8102_13,-74.492714,39.3318935,142 MILLVILLE AVENUE,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_8102_15,-74.62280464,39.46303592,158 MILLVILLE AVENUE,BUENA VISTA TWP,17,1981,1,RES1,3001 -0105_8102_16,-74.83255579,39.59876788,166 MILLVILLE AVENUE,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_8102_17,-74.502219,39.3298545,172 MILLVILLE AVENUE,BUENA VISTA TWP,17,1990,1,GOV1,3004 -0105_8102_2,-74.9404595,39.5152825,169 DEERWOOD AVENUE,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_8102_2.01,-74.5675115,39.355151,161 DEERWOOD AVENUE,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_8102_3,-74.535219,39.4973875,153 DEERWOOD AVENUE,BUENA VISTA TWP,17,2002,1,GOV1,3004 -0105_8102_4,-74.84360774,39.44522054,141 DEERWOOD AVENUE,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_8201_11,-74.491061,39.3325725,119 SALLEY LANE,BUENA VISTA TWP,17,1983,1,RES1,3001 -0105_8201_3,-74.38019292,39.40093589,1006 TUCKAHOE ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_8201_4,-74.48496273,39.33391617,1014 TUCKAHOE ROAD,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_8201_5,-74.39572394,39.38646761,1022 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8201_6,-74.68255235,39.50122837,1030 TUCKAHOE ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_8201_8,-74.80343499,39.60391383,143 SALLEY LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_8202_1,-74.48823071,39.33234126,144 SALLEY LANE,BUENA VISTA TWP,17,1955,1,RES1,3001 -0105_8202_10,-74.63803473,39.3631449,239 MILLVILLE AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8202_12,-74.44257724,39.35552875,233 MILLVILLE AVENUE,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_8202_13,-74.52446122,39.39350984,223 MILLVILLE AVENUE,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_8202_14,-74.86607703,39.56933424,215 MILLVILLE AVENUE,BUENA VISTA TWP,17,1979,1,GOV1,3004 -0105_8202_15,-74.3668975,39.4124125,205 MILLVILLE AVENUE,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_8202_2,-74.58412372,39.32340799,1050 TUCKAHOE ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_8202_2.01,-74.5845472,39.42734447,138 SALLEY LANE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_8202_3,-74.36615415,39.42302311,1066 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8202_6,-74.49640323,39.32920482,1082 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8202_9,-74.678162,39.492952,241 MILLVILLE AVENUE,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_8203_3,-74.89151984,39.47643832,554 HIGH STREET,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8203_4,-74.7297715,39.455862,570 HIGH STREET,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_8203_7,-74.80145399,39.37655433,546 HIGH STREET,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_8204_1,-74.53029732,39.40258047,1105 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8204_1.01,-74.57128489,39.34322167,318 MILLVILLE AVENUE,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_8204_2,-74.55544781,39.35844607,1115 TUCKAHOE ROAD,BUENA VISTA TWP,17,1957,1,RES1,3001 -0105_8205_1,-74.45493466,39.37101202,106 NINETEENTH AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8205_2,-74.3588745,39.4121135,1041 TUCKAHOE ROAD,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_8205_3,-74.855787,39.562031,1045 TUCKAHOE ROAD,BUENA VISTA TWP,17,1974,1,RES1,3001 -0105_8205_4,-74.756,39.453946,1049 TUCKAHOE ROAD,BUENA VISTA TWP,17,1889,1,RES1,3001 -0105_8205_5,-74.59311691,39.36133135,1053 TUCKAHOE ROAD,BUENA VISTA TWP,17,1938,1,RES1,3001 -0105_8205_6,-74.60628558,39.49081347,110 NINETEENTH AVENUE,BUENA VISTA TWP,17,1970,1,GOV1,3004 -0105_8205_7,-74.850917,39.4310065,1057 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8205_8,-74.870297,39.5683605,1067 TUCKAHOE ROAD,BUENA VISTA TWP,17,2002,1,GOV1,3004 -0105_8205_8.01,-74.5080605,39.447843,1075 TUCKAHOE ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_8205_8.02,-74.575743,39.4808065,321 MILLVILLE AVENUE,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_8205_8.03,-74.37350876,39.41484115,1071 TUCKAHOE ROAD,BUENA VISTA TWP,17,2006,1,RES1,3001 -0105_8301_10,-74.5122985,39.398043,156 DEERWOOD AVENUE,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_8301_2,-74.6834635,39.5559245,567 HIGH STREET,BUENA VISTA TWP,17,1988,1,RES1,3001 -0105_8301_3,-74.3912405,39.3895845,553 HIGH STREET,BUENA VISTA TWP,17,1990,1,GOV1,3004 -0105_8301_4,-74.46555568,39.35743498,545 HIGH STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_8301_5,-74.50452171,39.41129515,450 WEST BOUNDARY AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8301_7,-74.50300103,39.50302974,172 DEERWOOD AVENUE,BUENA VISTA TWP,17,1979,1,RES1,3001 -0105_8301_8,-74.81308372,39.52031647,206 MILLVILLE AVENUE,BUENA VISTA TWP,17,1900,1,GOV1,3004 -0105_8301_9,-74.63827478,39.40095349,214 MILLVILLE AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_8301_9.01,-74.72427274,39.43461436,216 MILLVILLE AVENUE,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_8302_1,-74.4990095,39.3355375,533 HIGH STREET,BUENA VISTA TWP,17,1975,1,GOV1,3004 -0105_8304_2,-74.79403627,39.6444938,517 HIGH STREET,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_8304_3,-74.85790599,39.62311472,511 HIGH STREET,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_8304_4,-74.56975082,39.35598749,155 BROAD STREET,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_8304_4.01,-74.550635,39.405975,161 BROAD STREET,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_8304_4.02,-74.66532926,39.35952447,503 HIGH STREET,BUENA VISTA TWP,17,1986,1,RES1,3001 -0105_8304_4.03,-74.81643855,39.65571471,505 HIGH STREET,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_8304_5,-74.79897,39.671121,143 BROAD STREET,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_8304_5.01,-74.67910659,39.51621846,149 BROAD STREET,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_8305_2,-74.4587252,39.52400992,443 HIGH STREET,BUENA VISTA TWP,17,1915,1,RES1,3001 -0105_8305_3,-74.951654,39.5178915,435 HIGH STREET,BUENA VISTA TWP,17,1915,1,RES1,3001 -0105_8305_5,-74.81423301,39.63817633,141 MC DONALD AVENUE,BUENA VISTA TWP,17,2000,1,RES1,3004 -0105_8305_6,-74.7507475,39.451506,144 BROAD STREET,BUENA VISTA TWP,17,1945,1,RES1,3001 -0105_8305_7,-74.783439,39.309438,156 BROAD STREET,BUENA VISTA TWP,15,1930,1,RES1,3001 -0105_8305_8,-74.81476833,39.471274,441 HIGH STREET,BUENA VISTA TWP,17,1908,1,RES1,3001 -0105_8306_1,-74.65823535,39.36622675,MC DONALD AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8308_1,-74.50116157,39.33197067,132 BROAD STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8308_2,-74.6165181,39.43097893,114 BROAD STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8309_1,-74.506961,39.4470525,445 WEST BOUNDARY AVENUE,BUENA VISTA TWP,17,1987,1,RES1,3001 -0105_8309_4,-74.37962966,39.39988523,415 WEST BOUNDARY AVENUE,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8309_5,-74.60107351,39.31861622,133 BROAD STREET,BUENA VISTA TWP,17,1950,1,RES1,3001 -0105_8309_6,-74.83226703,39.61280424,125 BROAD STREET,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_8309_7,-74.8747773,39.59576318,119 BROAD STREET,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_8407_11,-74.59657949,39.3425298,406 MILLVILLE AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_8407_3,-74.38126337,39.39971085,332 MILLVILLE AVENUE,BUENA VISTA TWP,17,1973,1,GOV1,3004 -0105_8407_6,-74.4978285,39.432057,348 MILLVILLE AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_8407_7,-74.52380114,39.45971396,352 MILLVILLE AVENUE,BUENA VISTA TWP,17,1980,1,GOV1,3004 -0105_8407_9,-74.43512132,39.36751456,358 MILLVILLE AVENUE,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_8409_10,-74.59481568,39.31076839,337 BROAD STREET,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_8409_6,-74.72090906,39.6500457,301 BROAD STREET,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_8409_7.01,-74.50345571,39.33195982,305 BROAD STREET,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8409_7.02,-74.5251775,39.3136045,309 BROAD STREET,BUENA VISTA TWP,17,1950,3,RES1,3001 -0105_8409_7.03,-74.88315284,39.50604224,311 BROAD STREET,BUENA VISTA TWP,17,1900,3,RES1,3001 -0105_8409_7.04,-74.5260095,39.446671,319 BROAD STREET,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_8409_9,-74.48207657,39.45572583,333 BROAD STREET,BUENA VISTA TWP,17,1993,1,RES1,3001 -0105_8413_1,-74.74813967,39.45086401,524 HIGH STREET,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_8413_2,-74.3677625,39.4174645,528 HIGH STREET,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_8413_4,-74.807196,39.4637345,538 HIGH STREET,BUENA VISTA TWP,17,1995,1,RES1,3001 -0105_8415_1,-74.83262003,39.42505759,518 HIGH STREET,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_8415_1.01,-74.46327882,39.35009152,514 HIGH STREET,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8415_8,-74.524925,39.3169505,1160 TUCKAHOE ROAD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_8416_2,-74.3629525,39.4200025,1168 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8416_3,-74.48617982,39.47212502,231 BROAD STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8416_4,-74.67424161,39.35289721,227 BROAD STREET,BUENA VISTA TWP,17,1940,1,RES1,3001 -0105_8416_6,-74.36659692,39.41195614,RIVER STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8417_1,-74.79845226,39.36765226,201 BROAD STREET,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_8417_2,-74.472847,39.4838065,506 HIGH STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8418_2,-74.62485101,39.46162702,HIGH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8418_3,-74.80801266,39.62828347,446 HIGH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8419_1,-74.42584334,39.35994299,222 BROAD STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8419_13,-74.60998695,39.32601966,125 ARNDT AVENUE,BUENA VISTA TWP,,1940,1,RES1,3001 -0105_8419_3,-74.8503641,39.61485982,226 BROAD STREET,BUENA VISTA TWP,17,1910,1,RES1,3001 -0105_8419_8,-74.54380104,39.54179351,1202 TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8420_1,-74.59866822,39.38177962,302 BROAD STREET,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_8420_2,-74.50796594,39.40382115,304 BROAD STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8420_3,-74.4804485,39.348452,344 SOUTH JERSEY BLVD,BUENA VISTA TWP,16,1955,1,RES1,3001 -0105_8420_4,-74.79924783,39.62171995,308 BROAD STREET,BUENA VISTA TWP,17,1889,2,RES1,3001 -0105_8421_1,-74.4650785,39.476609,322 BROAD STREET,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_8422_2,-74.5472915,39.371869,129 EAST BOUNDARY AVENUE,BUENA VISTA TWP,15,1940,1,GOV1,3004 -0105_8423_1,-74.63994333,39.38051956,144 EAST BOUNDARY AVENUE,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_8423_11,-74.5165855,39.395686,120 EAST BOUNDARY AVENUE,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_8423_12,-74.65082067,39.53132383,126 EAST BOUNDARY AVENUE,BUENA VISTA TWP,17,1989,1,RES1,3001 -0105_8423_2,-74.72630565,39.58826197,136 EAST BOUNDARY AVENUE,BUENA VISTA TWP,17,1996,1,RES1,3001 -0105_8423_2.01,-74.4872285,39.4329775,416 BROAD STREET,BUENA VISTA TWP,17,2002,1,GOV1,3004 -0105_8423_3,-74.51454417,39.4408715,422 BROAD STREET,BUENA VISTA TWP,17,2002,1,RES1,3001 -0105_8424_3,-74.80123127,39.63940423,228 ARNDT AVENUE,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_8425_1,-74.4932705,39.432459,110 ARNDT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8426_15,-74.85424565,39.61804237,107 LOMBARD AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8426_5,-74.52615906,39.3154198,132 ARNDT AVENUE,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8426_6,-74.70774746,39.58219905,134 ARNDT AVENUE,BUENA VISTA TWP,17,1889,1,RES1,3001 -0105_8426_9,-74.78290321,39.60748052,1212 TUCKAHOE ROAD,BUENA VISTA TWP,17,1889,1,RES1,3001 -0105_8427_2,-74.522697,39.3178385,426 HIGH STREET,BUENA VISTA TWP,17,1951,1,RES1,3001 -0105_8428_1,-74.8124205,39.616608,1224 TUCKAHOE ROAD,BUENA VISTA TWP,17,2016,1,RES1,3001 -0105_8430_1,-74.525588,39.3854725,226 ARNDT AVENUE,BUENA VISTA TWP,17,2000,1,RES1,3001 -0105_8431_1,-74.35618083,39.415282,314 SOUTH JERSEY BLVD,BUENA VISTA TWP,17,1996,1,RES1,3001 -0105_8433_1,-74.62457112,39.36171168,1234 TUCKAHOE ROAD,BUENA VISTA TWP,,1970,1,RES1,3001 -0105_8438_1,-74.55694108,39.36108429,223 SOUTH BOUNDARY AVENUE,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_8503_2,-74.510707,39.3258485,232 LINE STREET,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8503_5,-74.5226105,39.4054365,214 LINE STREET,BUENA VISTA TWP,17,1994,1,RES1,3001 -0105_8504_10,-74.3723,39.406687,225 LINE STREET,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_8504_11,-74.807205,39.6354985,213 LINE STREET,BUENA VISTA TWP,15,1930,1,RES1,3001 -0105_8504_12,-74.79795072,39.41934499,203 LINE STREET,BUENA VISTA TWP,17,1920,1,RES1,3001 -0105_8504_19,-74.4977585,39.4520935,228 SOUTH JERSEY BLVD,BUENA VISTA TWP,17,1900,1,RES1,3001 -0105_8504_20,-74.82466455,39.49914675,232 SOUTH JERSEY BLVD,BUENA VISTA TWP,17,1960,1,GOV1,3004 -0105_8504_4,-74.56935897,39.34995047,TUCKAHOE ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8601_1,-74.52269743,39.39561224,1260 TUCKAHOE ROAD,BUENA VISTA TWP,17,1970,1,RES1,3001 -0105_8601_11,-74.5114051,39.32266533,HIGH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8601_2,-74.7766555,39.594824,1280 TUCKAHOE ROAD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_8601_21,-74.516045,39.330886,HIGH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8601_3,-74.46087768,39.34826649,1290 TUCKAHOE ROAD,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8601_4,-74.4950365,39.3311585,1304 TUCKAHOE ROAD,BUENA VISTA TWP,17,1978,1,RES1,3001 -0105_8601_5,-74.69460579,39.63755985,1312 TUCKAHOE ROAD,BUENA VISTA TWP,17,1988,1,RES1,3001 -0105_8601_7,-74.62246362,39.3799592,1330 TUCKAHOE ROAD,BUENA VISTA TWP,17,1965,1,RES1,3001 -0105_8601_9,-74.4960305,39.4322165,1348 TUCKAHOE ROAD,BUENA VISTA TWP,17,1983,1,RES1,3001 -0105_8602_1,-74.70001983,39.50151694,1364 TUCKAHOE ROAD,BUENA VISTA TWP,17,1962,1,RES1,3001 -0105_8602_6,-74.58470748,39.40545566,HIGH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8602_7,-74.526169,39.316658,LINE STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8603_3,-74.41989455,39.36755068,LINE STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8604_13,-74.811068,39.643796,WEST BOUNDARY AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8604_3,-74.51160561,39.44393225,333 HIGH STREET,BUENA VISTA TWP,15,1960,1,RES1,3001 -0105_8604_7,-74.4546255,39.4920765,1340 TUCKAHOE ROAD,BUENA VISTA TWP,17,1975,1,RES1,3001 -0105_8605_1,-74.7789145,39.645171,WEST BOUNDARY AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8605_2,-74.47438565,39.48474847,WEST BOUNDARY AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8606_1,-74.86233067,39.56254046,WEST BOUNDARY AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8606_4,-74.52432716,39.38798801,DOE AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8606_5,-74.78848527,39.63490637,DOE AVENUE,BUENA VISTA TWP,,0,1,GOV1,3004 -0105_8607_2,-74.61156847,39.32457866,DOE AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_8607_3,-74.59849607,39.43108081,DOE AVENUE,BUENA VISTA TWP,,0,1,RES1,3001 -0105_901_1,-74.4907915,39.335703,508 TENTH STREET,BUENA VISTA TWP,17,2003,1,RES1,3001 -0105_901_1.01,-74.64398831,39.52458566,514 TENTH STREET,BUENA VISTA TWP,17,2004,1,RES1,3001 -0105_901_11,-74.8170835,39.5658935,755 SIXTH ROAD,BUENA VISTA TWP,17,1998,1,RES1,3001 -0105_901_14,-74.54652467,39.47135298,743 SIXTH ROAD,BUENA VISTA TWP,17,1980,1,RES1,3001 -0105_901_15,-74.37423028,39.41159484,741 SIXTH ROAD,BUENA VISTA TWP,17,1960,1,RES1,3001 -0105_901_16,-74.75364745,39.45301617,739 SIXTH ROAD,BUENA VISTA TWP,17,1971,1,RES1,3001 -0105_901_17,-74.49781734,39.32939999,733 SIXTH ROAD,BUENA VISTA TWP,17,1930,1,RES1,3001 -0105_901_19,-74.47006057,39.49361529,729 SIXTH ROAD,BUENA VISTA TWP,17,1958,1,RES1,3001 -0105_901_2,-74.51969897,39.3240125,524 TENTH STREET,BUENA VISTA TWP,17,2007,1,RES1,3001 -0105_901_2.01,-74.48360861,39.33593729,534 TENTH STREET,BUENA VISTA TWP,17,2004,1,RES3A,3001 -0105_901_21,-74.4775141,39.33944366,SIXTH ROAD,BUENA VISTA TWP,17,1941,1,RES1,3001 -0105_901_22,-74.481585,39.352526,719 SIXTH ROAD,BUENA VISTA TWP,17,2005,1,RES1,3001 -0105_901_3,-74.42382136,39.36456473,538 TENTH STREET,BUENA VISTA TWP,17,1972,1,RES1,3001 -0105_901_8,-74.49177529,39.4215698,767 SIXTH ROAD,BUENA VISTA TWP,17,1990,1,RES1,3001 -0105_901_9,-74.64002969,39.34098093,763 SIXTH ROAD,BUENA VISTA TWP,17,1999,1,RES1,3001 -0105_902_1,-74.59396095,39.34048425,TENTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_902_18,-74.828694,39.569368,NINTH STREET,BUENA VISTA TWP,,0,1,RES1,3001 -0105_902_19,-74.44082283,39.36779208,671 NINTH STREET,BUENA VISTA TWP,17,1985,1,RES1,3001 -0105_902_35,-74.7206896,39.44162096,MAGNOLIA ROAD,BUENA VISTA TWP,,0,1,RES1,3001 -0106_102_2,-74.61270617,39.31867993,111-123 BUCK HILL ROAD,CORBIN CITY CITY,,0,1,COM1,3004 -0106_102_3,-74.46287932,39.49695802,121 HEAD OF RIVER ROAD,CORBIN CITY CITY,,0,1,RES1,3001 -0106_102_5.01,-74.5620325,39.3724925,217 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,1900,1,RES1,3001 -0106_102_5.02,-74.61060116,39.32688953,211 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,1983,1,RES1,3001 -0106_102_6.01,-74.699299,39.3669245,227 HEAD OF RIVER ROAD,CORBIN CITY CITY,53,1960,1,RES1,3001 -0106_103_1,-74.49362423,39.49308646,118 BUCK HILL ROAD,CORBIN CITY CITY,15,1900,1,RES1,3001 -0106_103_1.01,-74.45148935,39.49881452,112 BUCK HILL ROAD,CORBIN CITY CITY,,1989,1,IND2,3002 -0106_103_2,-74.6106247,39.34551953,126 BUCK HILL ROAD,CORBIN CITY CITY,16,1920,1,RES1,3001 -0106_103_2.01,-74.4508879,39.49454778,119 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1989,1,RES1,3001 -0106_103_2.02,-74.63425881,39.35810045,117 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1989,2,RES1,3001 -0106_103_2.03,-74.5892889,39.32787084,115 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1990,1,RES1,3001 -0106_103_2.05,-74.57394887,39.34526959,111 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,2001,1,RES1,3001 -0106_103_2.06,-74.5894225,39.32771433,109 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1991,1,RES1,3001 -0106_104.01_11,-74.557478,39.39909,112 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,2001,1,COM1,3004 -0106_104.01_16,-74.70274801,39.35142833,113 CARL ROAD,CORBIN CITY CITY,17,2003,1,RES1,3001 -0106_104.01_17,-74.57385333,39.37228791,115 CARL ROAD,CORBIN CITY CITY,,0,1,RES1,3001 -0106_104.01_19,-74.55436584,39.37172527,119 CARL ROAD,CORBIN CITY CITY,17,2001,1,RES1,3001 -0106_104.01_2,-74.7640065,39.3353325,210 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1992,1,RES3B,3001 -0106_104.01_20,-74.50294692,39.52856436,121 CARL ROAD,CORBIN CITY CITY,17,2008,1,RES1,3001 -0106_104.01_3,-74.55431,39.3714615,208 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,1994,1,RES1,3001 -0106_104.01_4,-74.56909519,39.33959399,206 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,2001,1,RES1,3001 -0106_104.01_5,-74.54318149,39.39168333,204 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,1999,1,RES1,3001 -0106_104.01_6,-74.6011703,39.32537654,202 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,2001,1,RES1,3001 -0106_104.01_7,-74.59315767,39.3315075,200 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,2001,1,RES1,3001 -0106_104.01_8,-74.64296184,39.33897514,120 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,2001,1,RES1,3001 -0106_104.01_9,-74.53345908,39.39700072,118 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,1997,1,RES1,3001 -0106_104.02_21,-74.61263892,39.3266142,127 CARL ROAD,CORBIN CITY CITY,16,1996,1,RES1,3001 -0106_104.03_22,-74.7612324,39.3637693,133 CARL ROAD,CORBIN CITY CITY,17,2005,1,RES1,3001 -0106_104_5.01,-74.46889901,39.48821217,406 AETNA DRIVE,CORBIN CITY CITY,17,1992,1,RES1,3001 -0106_104_5.06,-74.59805488,39.36137681,131 CARL ROAD,CORBIN CITY CITY,17,1984,1,RES1,3001 -0106_104_5.09,-74.5113955,39.4879565,125 CARL ROAD,CORBIN CITY CITY,17,1986,1,RES1,3004 -0106_104_7.01,-74.51173694,39.47031706,424 AETNA DRIVE,CORBIN CITY CITY,17,1996,1,RES1,3001 -0106_104_7.02,-74.60161908,39.32001181,416 AETNA DRIVE,CORBIN CITY CITY,16,1920,1,RES1,3001 -0106_104_8,-74.63630333,39.36730422,428 AETNA DRIVE,CORBIN CITY CITY,17,1993,1,RES1,3001 -0106_104_9.01,-74.63443116,39.34229001,214 HEAD OF RIVER ROAD,CORBIN CITY CITY,18,1996,1,RES1,3001 -0106_104_9.02,-74.47805661,39.47804925,230 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,1978,1,RES1,3001 -0106_104_9.03,-74.584648,39.3406445,216 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,1990,1,RES1,3001 -0106_104_9.04,-74.65126417,39.3440216,220 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1982,1,RES1,3001 -0106_104_9.05,-74.61368341,39.32421962,222 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1978,1,COM5,3004 -0106_104_9.06,-74.51037,39.489419,224 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1982,1,RES1,3001 -0106_104_9.07,-74.491806,39.533837,226 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,1982,1,RES3A,3001 -0106_104_9.08,-74.603233,39.3072325,218 HEAD OF RIVER ROAD,CORBIN CITY CITY,16,2005,1,RES1,3001 -0106_104_9.09,-74.56490275,39.35418635,228 HEAD OF RIVER ROAD,CORBIN CITY CITY,17,1980,1,RES1,3001 -0106_105_1,-74.57400441,39.36580965,106 CARL ROAD,CORBIN CITY CITY,16,1986,1,GOV1,3004 -0106_105_2,-74.60498579,39.32815108,116 CARL ROAD,CORBIN CITY CITY,,1983,1,RES1,3001 -0106_105_4,-74.53727032,39.38773565,300 AETNA DRIVE,CORBIN CITY CITY,16,1900,1,RES1,3001 -0106_106_1,-74.47437422,39.4826158,439 AETNA DRIVE,CORBIN CITY CITY,16,1996,1,RES1,3001 -0106_106_10,-74.5385365,39.393065,413 AETNA DRIVE,CORBIN CITY CITY,16,1996,2,RES1,3001 -0106_106_3,-74.57438,39.3526585,429 AETNA DRIVE,CORBIN CITY CITY,17,2004,1,RES1,3004 -0106_106_4,-74.511705,39.489338,427 AETNA DRIVE,CORBIN CITY CITY,17,1999,1,RES1,3001 -0106_106_5,-74.59484755,39.32998638,425 AETNA DRIVE,CORBIN CITY CITY,16,1958,1,RES1,3001 -0106_106_7.01,-74.554932,39.3582275,421 AETNA DRIVE,CORBIN CITY CITY,17,2016,1,RES1,3001 -0106_106_7.02,-74.6127785,39.3198205,419 AETNA DRIVE,CORBIN CITY CITY,16,1960,2,RES1,3001 -0106_107_1,-74.54951039,39.38012458,409 AETNA DRIVE,CORBIN CITY CITY,16,1933,1,RES1,3001 -0106_107_2,-74.76468106,39.3498318,407 AETNA DRIVE,CORBIN CITY CITY,16,1951,1,RES1,3001 -0106_107_3,-74.61166356,39.34228715,511 BEACH DRIVE,CORBIN CITY CITY,16,1994,1,RES1,3001 -0106_107_4,-74.61097984,39.32009253,509 BEACH DRIVE,CORBIN CITY CITY,17,1950,1,RES1,3004 -0106_107_5,-74.59690795,39.3559012,505 BEACH DRIVE,CORBIN CITY CITY,17,1950,1,RES1,3001 -0106_107_9,-74.631387,39.316813,503 BEACH DRIVE,CORBIN CITY CITY,18,1962,1,RES1,3001 -0106_108_1,-74.634857,39.3660745,508 BEACH DRIVE,CORBIN CITY CITY,16,2004,1,RES1,3001 -0106_108_3,-74.666374,39.35027643,500 BEACH DRIVE,CORBIN CITY CITY,17,1952,1,GOV1,3004 -0106_109_1,-74.6108625,39.3208735,200 CARL ROAD,CORBIN CITY CITY,17,2002,1,RES1,3001 -0106_110_1,-74.473022,39.49376067,335 AETNA DRIVE,CORBIN CITY CITY,17,1969,1,RES1,3001 -0106_110_2,-74.54586471,39.3891895,329 AETNA DRIVE,CORBIN CITY CITY,17,1993,1,RES1,3001 -0106_110_3,-74.6010105,39.3661265,321 AETNA DRIVE,CORBIN CITY CITY,16,2007,1,RES1,3001 -0106_110_4,-74.61274826,39.31626531,315 AETNA DRIVE,CORBIN CITY CITY,15,1948,1,RES1,3001 -0106_110_5,-74.64634542,39.35475117,311 AETNA DRIVE,CORBIN CITY CITY,16,1810,1,GOV1,3004 -0106_110_6,-74.58997162,39.35403178,307 AETNA DRIVE,CORBIN CITY CITY,16,1952,1,RES1,3001 -0106_110_7,-74.75363162,39.30302652,301 AETNA DRIVE,CORBIN CITY CITY,16,1996,2,RES1,3001 -0106_110_7.01,-74.60281294,39.33353053,303 AETNA DRIVE,CORBIN CITY CITY,17,1988,1,RES1,3001 -0106_110_7.02,-74.62147,39.3610955,305 AETNA DRIVE,CORBIN CITY CITY,17,1994,1,RES1,3001 -0106_201_1,-74.60328,39.3315045,100 BUCK HILL ROAD,CORBIN CITY CITY,17,1880,1,RES1,3001 -0106_201_3,-74.584,39.323668,637 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_201_3.01,-74.59372459,39.32099942,621 ROUTE 50,CORBIN CITY CITY,,1915,1,RES1,3001 -0106_201_3.03,-74.60392,39.326757,625 ROUTE 50,CORBIN CITY CITY,16,1952,1,RES1,3001 -0106_201_6,-74.5000565,39.523657,617 ROUTE 50,CORBIN CITY CITY,16,1952,2,RES1,3001 -0106_201_6.01,-74.595709,39.3108405,615 ROUTE 50,CORBIN CITY CITY,15,1952,1,RES1,3001 -0106_201_7,-74.452584,39.49275905,611 ROUTE 50,CORBIN CITY CITY,16,1952,1,RES1,3001 -0106_201_8,-74.57929326,39.33870469,605 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_202_1,-74.594845,39.34843412,513 ROUTE 50,CORBIN CITY CITY,15,1938,1,RES1,3001 -0106_202_1.01,-74.51922853,39.47233653,102 CARL ROAD,CORBIN CITY CITY,17,1995,1,RES1,3001 -0106_202_2,-74.61285229,39.36681412,511 ROUTE 50,CORBIN CITY CITY,15,1938,1,RES1,3001 -0106_202_3,-74.59067583,39.32877194,509 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_202_5,-74.58415032,39.33810517,104 CARL ROAD,CORBIN CITY CITY,,1938,1,RES1,3001 -0106_203_10.01,-74.55519991,39.36114166,506 ROUTE 50,CORBIN CITY CITY,50,1960,1,RES1,3001 -0106_203_12,-74.63772499,39.34354499,500A & 500B ROUTE 50,CORBIN CITY CITY,16,1900,1,GOV1,3004 -0106_203_12.01,-74.600247,39.329529,410 ROUTE 50,CORBIN CITY CITY,16,1992,1,RES1,3001 -0106_203_13,-74.58765724,39.35029808,416 ROUTE 50,CORBIN CITY CITY,16,1969,1,RES1,3001 -0106_203_16.02,-74.6425445,39.3468655,109 GRISCOM MILL ROAD,CORBIN CITY CITY,17,1978,1,RES1,3001 -0106_203_16.03,-74.6356765,39.341629,111 GRISCOM MILL ROAD,CORBIN CITY CITY,17,2004,1,RES1,3001 -0106_203_16.05,-74.5609258,39.36432827,105 GRISCOM MILL ROAD,CORBIN CITY CITY,17,2003,1,RES1,3001 -0106_203_16.07,-74.48967581,39.52118748,400 ROUTE 50,CORBIN CITY CITY,16,1840,2,RES1,3001 -0106_203_3,-74.5896225,39.317286,650 ROUTE 50,CORBIN CITY CITY,17,1930,1,RES1,3001 -0106_203_5,-74.617485,39.3217555,604 ROUTE 50,CORBIN CITY CITY,17,1991,1,RES1,3001 -0106_203_6,-74.57595749,39.33728134,606 ROUTE 50,CORBIN CITY CITY,16,1930,1,RES1,3001 -0106_203_7,-74.4972903,39.50020827,602 ROUTE 50,CORBIN CITY CITY,16,1938,1,RES1,3001 -0106_203_8,-74.6637995,39.358879,600 ROUTE 50,CORBIN CITY CITY,15,1940,1,RES1,3001 -0106_203_9.01,-74.60007857,39.34764578,512 ROUTE 50,CORBIN CITY CITY,15,1940,1,RES1,3001 -0106_203_9.02,-74.46708215,39.49622153,510 ROUTE 50,CORBIN CITY CITY,16,1975,1,RES1,3001 -0106_205_4,-74.6490401,39.35606403,103 SAMSON ROAD,CORBIN CITY CITY,53,1970,1,RES1,3001 -0106_206_1,-74.55196907,39.36077394,100 SAMSON ROAD,CORBIN CITY CITY,,1987,1,RES1,3001 -0106_206_3,-74.48488101,39.47928737,425 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_206_5,-74.63673172,39.34150684,101 OCEAN ROAD,CORBIN CITY CITY,17,1960,1,RES1,3001 -0106_207_1,-74.61023255,39.32333171,421 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_207_7,-74.60365,39.3244765,101 SUNSET ROAD,CORBIN CITY CITY,16,1945,1,RES1,3001 -0106_208_1,-74.552133,39.3609415,100 SUNSET ROAD & RTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_209_1,-74.54223113,39.37509801,405 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_209_2,-74.47411034,39.49237403,403 ROUTE 50,CORBIN CITY CITY,15,1938,1,RES1,3001 -0106_209_3,-74.56095873,39.37320202,401 ROUTE 50,CORBIN CITY CITY,15,1938,1,RES1,3001 -0106_211_5,-74.60298696,39.32105157,108 SAMSON ROAD,CORBIN CITY CITY,16,1992,1,RES1,3001 -0106_212_1,-74.60205485,39.31317995,HARMAN LANE,CORBIN CITY CITY,,0,1,GOV1,3004 -0106_212_2,-74.57113282,39.34033767,105 SUNSET ROAD,CORBIN CITY CITY,53,1965,1,RES1,3001 -0106_216_1,-74.60209795,39.32887918,439 GODFREY LANE,CORBIN CITY CITY,50,1963,1,RES1,3001 -0106_216_10,-74.52895625,39.49817107,430 HARDING LANE,CORBIN CITY CITY,53,1960,1,GOV1,3004 -0106_216_11,-74.53835414,39.39321646,432 HARDING LANE,CORBIN CITY CITY,15,2005,1,COM4,3004 -0106_216_12,-74.59467869,39.38227636,434 HARDING LANE,CORBIN CITY CITY,15,1960,1,RES1,3001 -0106_216_13,-74.60790202,39.32369416,436 HARDING LANE,CORBIN CITY CITY,53,1960,1,RES1,3001 -0106_216_14,-74.55875735,39.35815198,438 HARDING LANE,CORBIN CITY CITY,53,1960,1,RES1,3001 -0106_216_15,-74.63929647,39.34440843,114 SAMSON ROAD,CORBIN CITY CITY,16,2003,1,RES1,3001 -0106_216_16,-74.7688775,39.31276683,112 SAMSON ROAD,CORBIN CITY CITY,53,1972,1,RES1,3001 -0106_216_2,-74.54946939,39.36526151,437 GODFREY LANE,CORBIN CITY CITY,16,2011,1,RES1,3001 -0106_216_3,-74.58883882,39.32052948,435 GODFREY LANE,CORBIN CITY CITY,16,2001,1,RES1,3001 -0106_216_4,-74.57106744,39.34850988,433 GODFREY LANE,CORBIN CITY CITY,17,2007,1,RES1,3001 -0106_216_5,-74.6083275,39.321955,431 GODFREY LANE,CORBIN CITY CITY,53,1980,1,RES1,3001 -0106_216_6,-74.57040735,39.37255711,429 GODFREY LANE,CORBIN CITY CITY,17,2009,1,RES1,3001 -0106_216_7,-74.53527923,39.3969481,113 OCEAN ROAD,CORBIN CITY CITY,17,2009,1,RES1,3001 -0106_216_8,-74.529764,39.4741825,115 OCEAN ROAD,CORBIN CITY CITY,16,2003,1,RES1,3001 -0106_216_9,-74.54994029,39.35997969,428 HARDING LANE,CORBIN CITY CITY,16,1998,1,RES1,3001 -0106_217_1,-74.519321,39.5341485,110 OCEAN ROAD,CORBIN CITY CITY,16,2009,1,RES1,3001 -0106_217_10,-74.45280127,39.48992207,424 HARDING LANE,CORBIN CITY CITY,17,2009,2,RES1,3001 -0106_217_11,-74.606761,39.3501685,426 HARDING LANE,CORBIN CITY CITY,53,1950,1,RES1,3001 -0106_217_12,-74.62724023,39.36459158,112 OCEAN ROAD,CORBIN CITY CITY,53,2003,1,RES1,3001 -0106_217_2,-74.45269722,39.49696188,425 GODFREY LANE,CORBIN CITY CITY,15,1970,1,RES1,3001 -0106_217_3,-74.63690942,39.34053467,423 GODFREY LANE,CORBIN CITY CITY,16,2009,1,RES1,3002 -0106_217_4,-74.57072646,39.37170186,421 GODFREY LANE,CORBIN CITY CITY,53,1994,1,RES1,3001 -0106_217_5,-74.6122095,39.3195595,419 GODFREY LANE,CORBIN CITY CITY,16,1960,1,RES1,3001 -0106_217_6,-74.58629819,39.33243303,417 GODFREY LANE,CORBIN CITY CITY,15,1999,1,RES1,3001 -0106_217_6.01,-74.45301519,39.5029875,111 SUNSET ROAD,CORBIN CITY CITY,53,1960,1,RES1,3001 -0106_217_7,-74.605785,39.332048,115 SUNSET ROAD,CORBIN CITY CITY,16,2010,1,RES1,3001 -0106_217_8,-74.5324305,39.3893635,418 HARDING LANE,CORBIN CITY CITY,50,1950,1,RES1,3001 -0106_217_8.01,-74.60871058,39.32263969,420 HARDING LANE,CORBIN CITY CITY,15,1985,1,RES1,3001 -0106_217_9,-74.644403,39.3339875,422 HARDING LANE,CORBIN CITY CITY,53,1950,1,RES1,3001 -0106_219_1,-74.46243,39.500939,437 HARDING LANE,CORBIN CITY CITY,16,2003,1,RES1,3001 -0106_219_3,-74.45084029,39.48841794,433 HARDING LANE,CORBIN CITY CITY,16,2003,1,RES1,3001 -0106_219_4,-74.55091505,39.39015951,431 HARDING LANE,CORBIN CITY CITY,15,2004,1,RES1,3001 -0106_219_4.01,-74.5650195,39.3617625,429 HARDING LANE,CORBIN CITY CITY,15,1994,1,RES1,3001 -0106_219_6,-74.57908211,39.33380482,125 OCEAN ROAD,CORBIN CITY CITY,15,1996,1,RES1,3001 -0106_219_6.01,-74.6187845,39.3195085,121 OCEAN ROAD,CORBIN CITY CITY,53,1990,1,RES1,3001 -0106_219_8,-74.56519669,39.34823702,440 WASHINGTON LANE,CORBIN CITY CITY,53,1968,1,RES1,3001 -0106_220_1,-74.590357,39.3320695,118 OCEAN ROAD,CORBIN CITY CITY,16,2001,1,RES1,3001 -0106_220_10,-74.54107206,39.38230084,120 OCEAN ROAD,CORBIN CITY CITY,53,1985,1,RES1,3001 -0106_220_2,-74.54367679,39.38330233,423 HARDING LANE,CORBIN CITY CITY,16,1995,1,RES1,3001 -0106_220_5,-74.598397,39.3179945,415-417 HARDING LANE,CORBIN CITY CITY,17,2010,2,RES1,3001 -0106_220_7,-74.5015676,39.50207432,411 HARDING LANE,CORBIN CITY CITY,16,1995,1,RES1,3001 -0106_221_2,-74.49726204,39.49866735,401 HARDING LANE,CORBIN CITY CITY,17,1948,1,RES1,3001 -0106_225_1,-74.59177953,39.33230267,106 HEAD OF RIVER ROAD,CORBIN CITY CITY,,0,1,RES1,3001 -0106_225_3.01,-74.54117496,39.38349655,104 HEAD OF RIVER ROAD,CORBIN CITY CITY,15,1940,1,GOV1,3004 -0106_301_10,-74.60438558,39.32702136,312 ROUTE 50,CORBIN CITY CITY,16,1938,1,COM7,3004 -0106_301_11,-74.45162075,39.4972581,310 ROUTE 50,CORBIN CITY CITY,15,1938,1,RES1,3001 -0106_301_13,-74.544255,39.371799,306 ROUTE 50,CORBIN CITY CITY,16,1920,1,RES1,3001 -0106_301_14,-74.46228973,39.49219431,304 ROUTE 50,CORBIN CITY CITY,16,1948,1,RES1,3001 -0106_301_15,-74.57922037,39.31210823,302 ROUTE 50,CORBIN CITY CITY,16,1938,1,RES1,3001 -0106_301_16,-74.54604666,39.40050873,300 ROUTE 50,CORBIN CITY CITY,16,1920,1,RES1,3001 -0106_301_20,-74.588043,39.3296435,200-210 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_301_21,-74.59191717,39.32428063,118 ROUTE 50,CORBIN CITY CITY,16,1974,1,RES1,3001 -0106_301_23.01,-74.5234038,39.54192239,106 ROUTE 50,CORBIN CITY CITY,16,1998,1,RES1,3001 -0106_301_23.02,-74.59805181,39.36498686,112 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_301_24.01,-74.5350535,39.3046885,100 ROUTE 50,CORBIN CITY CITY,16,1983,1,RES1,3001 -0106_301_4,-74.572364,39.35482,108 GRISCOM MILL ROAD,CORBIN CITY CITY,16,1952,1,RES1,3001 -0106_301_5,-74.54572521,39.37983374,106 GRISCOM MILL ROAD,CORBIN CITY CITY,16,1956,1,RES1,3001 -0106_301_6,-74.49457112,39.51908216,104 GRISCOM MILL ROAD,CORBIN CITY CITY,17,1952,1,RES1,3001 -0106_301_8,-74.61344518,39.33896758,316 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_301_9,-74.56636658,39.35118434,314 ROUTE 50,CORBIN CITY CITY,45,1920,2,RES1,3001 -0106_401_1,-74.536876,39.378639,101 CAT POND ROAD,CORBIN CITY CITY,15,1920,1,RES1,3001 -0106_401_2,-74.58960945,39.35389683,107 CAT POND ROAD,CORBIN CITY CITY,,1930,1,RES1,3001 -0106_401_3,-74.5928505,39.363668,200 AETNA DRIVE,CORBIN CITY CITY,17,2017,1,RES1,3001 -0106_402_1,-74.51027332,39.49048178,100 CAT POND ROAD,CORBIN CITY CITY,53,1960,1,RES1,3001 -0106_402_13,-74.45084697,39.49544443,209 MAIN STREET,CORBIN CITY CITY,16,1860,1,RES1,3001 -0106_402_14,-74.58779467,39.33675921,207 MAIN STREET,CORBIN CITY CITY,15,1843,1,RES1,3001 -0106_402_15,-74.569652,39.359683,205 MAIN STREET,CORBIN CITY CITY,15,1920,1,RES1,3001 -0106_402_16,-74.82018651,39.36477827,203 MAIN STREET,CORBIN CITY CITY,15,1840,1,RES1,3001 -0106_402_17,-74.5336886,39.30648114,201 MAIN STREET,CORBIN CITY CITY,15,1900,3,RES1,3001 -0106_402_17.01,-74.60146746,39.33125284,108 AETNA DRIVE,CORBIN CITY CITY,16,1990,1,GOV1,3004 -0106_402_19,-74.60196706,39.32748083,126 AETNA DRIVE,CORBIN CITY CITY,16,2009,1,RES1,3001 -0106_402_2,-74.59052735,39.32837259,307 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_402_20,-74.55089003,39.40148144,110 CAT POND ROAD,CORBIN CITY CITY,15,1950,1,RES1,3001 -0106_402_21,-74.49434358,39.50099347,108 CAT POND ROAD,CORBIN CITY CITY,16,1970,1,RES1,3001 -0106_402_22,-74.450851,39.4939905,106 CAT POND ROAD,CORBIN CITY CITY,16,1963,1,RES1,3001 -0106_402_23,-74.50917352,39.47934333,104 CAT POND ROAD,CORBIN CITY CITY,16,1989,1,RES1,3001 -0106_402_25,-74.798468,39.357027,102 CAT POND ROAD,CORBIN CITY CITY,16,1995,1,RES1,3001 -0106_402_3,-74.55258817,39.3779173,305 ROUTE 50,CORBIN CITY CITY,15,1920,1,RES1,3001 -0106_402_4,-74.58848032,39.31330012,303 ROUTE 50,CORBIN CITY CITY,15,1920,1,GOV1,3004 -0106_402_5,-74.60164544,39.31073979,301 ROUTE 50,CORBIN CITY CITY,16,1790,2,RES1,3001 -0106_402_7,-74.57318044,39.33822719,223 MAIN STREET,CORBIN CITY CITY,16,1952,1,RES1,3001 -0106_402_8,-74.5984102,39.36128247,221 MAIN STREET,CORBIN CITY CITY,16,1920,1,GOV1,3004 -0106_402_9,-74.587488,39.315925,219 MAIN STREET,CORBIN CITY CITY,16,1938,1,RES1,3001 -0106_403_1,-74.504168,39.4876865,218 MAIN STREET,CORBIN CITY CITY,,0,1,RES1,3001 -0106_404_1,-74.76899838,39.31638577,216 MAIN STREET,CORBIN CITY CITY,15,1930,1,GOV1,3004 -0106_404_2,-74.603171,39.315084,212 MAIN STREET,CORBIN CITY CITY,,0,1,RES1,3001 -0106_404_4,-74.59063983,39.36503289,208 MAIN STREET,CORBIN CITY CITY,15,1920,1,RES1,3001 -0106_404_5,-74.50672568,39.52828399,206 MAIN STREET,CORBIN CITY CITY,15,1890,1,GOV1,3004 -0106_404_6,-74.580176,39.3117025,204 MAIN STREET,CORBIN CITY CITY,16,1980,1,GOV1,3004 -0106_404_7,-74.5415378,39.38114366,202 MAIN STREET,CORBIN CITY CITY,16,1920,1,RES1,3001 -0106_404_9,-74.50477891,39.47918237,513 MAPLE AVENUE,CORBIN CITY CITY,,0,1,RES1,3001 -0106_405_1,-74.63600512,39.34424484,124 MAIN STREET,CORBIN CITY CITY,15,1900,1,RES1,3001 -0106_405_10,-74.617516,39.3656935,106 MAIN STREET,CORBIN CITY CITY,16,2015,1,COM1,3004 -0106_405_11.01,-74.53368259,39.30593738,104 MAIN STREET,CORBIN CITY CITY,17,1770,1,RES1,3001 -0106_405_11.02,-74.612764,39.323883,107 ROUTE 50,CORBIN CITY CITY,16,1900,1,RES1,3001 -0106_405_12,-74.57364565,39.36566317,MAIN ST & ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_405_13,-74.5486935,39.370269,139 ROUTE 50,CORBIN CITY CITY,16,1950,1,RES1,3001 -0106_405_14,-74.53410272,39.3832537,119 ROUTE 50,CORBIN CITY CITY,,0,1,RES1,3001 -0106_405_15,-74.54962742,39.372474,115 ROUTE 50,CORBIN CITY CITY,18,1930,1,RES1,3001 -0106_405_2,-74.593037,39.328175,122 MAIN STREET,CORBIN CITY CITY,15,1900,1,RES1,3001 -0106_405_3,-74.56643366,39.36283481,120 MAIN STREET,CORBIN CITY CITY,16,1900,1,RES1,3001 -0106_405_4,-74.54876984,39.371011,118 MAIN STREET,CORBIN CITY CITY,16,1900,1,RES1,3001 -0106_405_5,-74.5813395,39.3393535,116 MAIN STREET,CORBIN CITY CITY,,0,1,RES1,3001 -0106_405_6,-74.5553985,39.3567805,114 MAIN STREET,CORBIN CITY CITY,16,1900,1,RES1,3001 -0106_405_7,-74.62446242,39.36225577,112 MAIN STREET,CORBIN CITY CITY,17,2007,1,RES1,3001 -0106_405_8,-74.60892417,39.3153685,110 MAIN STREET,CORBIN CITY CITY,16,1970,1,RES1,3001 -0106_405_9,-74.4941171,39.49390022,108 MAIN STREET,CORBIN CITY CITY,16,1854,1,RES1,3001 -0106_406_10,-74.60628375,39.33277795,AETNA DRIVE,CORBIN CITY CITY,,0,1,RES1,3001 -0106_406_12,-74.63447884,39.35035401,103 AETNA DRIVE,CORBIN CITY CITY,16,2007,1,RES1,3001 -0106_406_13,-74.7654561,39.35081182,101 AETNA DRIVE,CORBIN CITY CITY,16,1932,1,RES1,3001 -0106_406_14,-74.57600249,39.36864546,119 MAIN STREET,CORBIN CITY CITY,17,2003,1,RES1,3001 -0106_406_15,-74.5062505,39.478565,115 MAIN STREET,CORBIN CITY CITY,16,1947,1,RES1,3001 -0106_406_16,-74.59310556,39.32625064,113 MAIN STREET,CORBIN CITY CITY,,0,1,GOV1,3004 -0106_406_2,-74.56968387,39.37217409,123 AETNA DRIVE,CORBIN CITY CITY,17,1998,1,RES1,3001 -0106_406_4,-74.61317,39.3387395,119 AETNA DRIVE,CORBIN CITY CITY,16,1960,1,RES3A,3001 -0106_406_5,-74.59745228,39.3433897,117 AETNA DRIVE,CORBIN CITY CITY,16,1930,1,RES1,3001 -0106_406_7,-74.61325549,39.32582185,113 AETNA DRIVE,CORBIN CITY CITY,16,1900,1,RES1,3001 -0106_406_8,-74.51651034,39.46618883,111 AETNA DRIVE,CORBIN CITY CITY,16,1948,1,RES1,3001 -0106_406_9,-74.6704975,39.3651885,107 AETNA DRIVE,CORBIN CITY CITY,16,1948,1,RES1,3001 -0107_1.07_1.02,-74.44107082,39.35386251,25 WHITE HORSE PK,EGG HARBOR CITY,,1970,1,RES1,3001 -0107_1.07_10,-74.9263405,39.5072595,140 HAMBURG AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_1.07_12,-74.95123872,39.51472589,150 HAMBURG AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_1.07_14.02,-74.46222351,39.36094017,10 ARAGO ST,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_1.07_14.03,-74.5572985,39.539856,14 ARAGO ST,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_1.07_7,-74.71121789,39.5665399,111 NEW YORK AVE,EGG HARBOR CITY,,1958,1,RES1,3001 -0107_1.07_8,-74.5033955,39.338974,128 HAMBURG AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_1_1,-74.87138255,39.44316836,1 NORFOLK AVE,EGG HARBOR CITY,,1958,1,RES1,3001 -0107_1_11,-74.5315025,39.461522,100 WHITE HORSE PIKE,EGG HARBOR CITY,,1925,1,RES1,3001 -0107_1_13.02,-74.9398155,39.522003,112 WHITE HORSE PIKE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_1_15,-74.617281,39.438236,118 WHITE HORSE PK,EGG HARBOR CITY,,1969,1,RES1,3001 -0107_1_17,-74.58927349,39.32028334,49 NORFOLK AVE,EGG HARBOR CITY,15,1910,1,RES1,3001 -0107_1_19,-74.85737821,39.5615319,39 NORFOLK AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_1_5.02,-74.51440716,39.43916998,40 NEW YORK AVE,EGG HARBOR CITY,,1960,1,RES1,3001 -0107_100_1,-74.61288873,39.42086261,204 NORFOLK AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_100_11,-74.58654027,39.3223567,242 NORFOLK AVE,EGG HARBOR CITY,16,2007,1,GOV1,3004 -0107_100_16.01,-74.53973748,39.52500084,259 WASHINGTON AVE,EGG HARBOR CITY,15,1926,1,RES1,3001 -0107_100_16.02,-74.9578125,39.52776,214 BEETHOVEN ST,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_100_18,-74.91780247,39.47161345,251 WASHINGTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_100_19,-74.70965761,39.42657892,245 WASHINGTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_100_22,-74.6326155,39.4187955,235 WASHINGTON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_100_23,-74.4712195,39.342272,231 WASHINGTON AVE,EGG HARBOR CITY,16,1940,1,GOV1,3004 -0107_100_25,-74.4591785,39.3497245,223 WASHINGTON AVE,EGG HARBOR CITY,15,1926,1,RES1,3001 -0107_100_26,-74.6067355,39.425841,217 WASHINGTON AVE,EGG HARBOR CITY,16,1930,1,GOV1,3004 -0107_100_27,-74.908642,39.5281485,213 WASHINGTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_100_28,-74.80350535,39.64028255,209 WASHINGTON AVE,EGG HARBOR CITY,15,1926,1,RES3A,3001 -0107_100_29,-74.50257644,39.4305693,205 WASHINGTON AVE,EGG HARBOR CITY,15,1925,1,RES1,3001 -0107_100_4,-74.36763253,39.40578967,208 NORFOLK AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_100_5.02,-74.95246303,39.51372142,212 NORFOLK AVE,EGG HARBOR CITY,16,1959,1,RES1,3001 -0107_100_7,-74.4651535,39.3462905,226 NORFOLK AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_100_8.02,-74.92563759,39.50565178,230 NORFOLK AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_100_9.02,-74.9244335,39.4749655,240 NORFOLK AVE,EGG HARBOR CITY,,1922,1,RES1,3001 -0107_1000_1,-74.49875382,39.42886347,1201 DUERER ST,EGG HARBOR CITY,,1992,1,RES1,3001 -0107_1001_10,-74.464306,39.347556,1202 MOSS MILL ROAD,EGG HARBOR CITY,,1990,1,RES1,3001 -0107_1001_2,-74.72006475,39.45062279,1200 MARTIN WILSON DR,EGG HARBOR CITY,,2008,1,RES1,3001 -0107_1001_6,-74.51781259,39.39120617,1341-1359 ANTWERP AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_1003_1,-74.79579606,39.46261131,1515 GRANT ST,EGG HARBOR CITY,,1999,1,RES3A,3001 -0107_1003_10,-74.5769225,39.416541,1441 BREMEN AVE,EGG HARBOR CITY,,1997,1,RES1,3001 -0107_1003_11,-74.62140947,39.43750779,1421 BREMEN AVE,EGG HARBOR CITY,,2015,1,GOV1,3004 -0107_1003_12,-74.6502743,39.40406434,1401 BREMEN AVE,EGG HARBOR CITY,,2010,1,RES1,3001 -0107_1003_15,-74.50077733,39.3362687,1301 BREMEN AVE,EGG HARBOR CITY,,1985,1,RES1,3001 -0107_101_1,-74.47035475,39.45143,203 WHITE HORSE PIKE,EGG HARBOR CITY,,1919,1,RES1,3001 -0107_101_10,-74.601879,39.4820145,136 NORFOLK AVE,EGG HARBOR CITY,15,1951,1,RES1,3001 -0107_101_11,-74.50595331,39.42496748,142 NORFOLK AVE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_101_12,-74.72481158,39.4544753,146 NORFOLK AVE,EGG HARBOR CITY,15,1923,1,RES1,3001 -0107_101_14.02,-74.6030025,39.5091965,203 ARAGO ST,EGG HARBOR CITY,15,1955,1,RES1,3001 -0107_101_16,-74.58771533,39.31894097,159 WASHINGTON AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_101_18,-74.71627038,39.41390206,147 WASHINGTON AVE,EGG HARBOR CITY,15,1915,1,RES1,3001 -0107_101_19.04,-74.40613681,39.38182702,145 WASHINGTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_101_20.03,-74.7888962,39.63531554,141 WASHINGTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_101_21.02,-74.80253034,39.63863901,137 WASHINGTON AVE,EGG HARBOR CITY,15,1928,1,RES1,3001 -0107_101_22,-74.78238765,39.66214897,133 WASHINGTON AVE,EGG HARBOR CITY,15,1935,1,RES1,3001 -0107_101_23.02,-74.52008643,39.44145476,125 WASHINGTON AVE,EGG HARBOR CITY,16,1935,1,RES1,3001 -0107_101_24.02,-74.59327338,39.32216829,121 WASHINGTON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_101_25,-74.601789,39.480189,117 WASHINGTON AVE,EGG HARBOR CITY,16,1940,1,GOV1,3004 -0107_101_27.02,-74.91895183,39.52325798,115 WASHINGTON AVE,EGG HARBOR CITY,16,1955,1,REL1,3004 -0107_101_29,-74.56817487,39.47511927,103 WASHINGTON AVE,EGG HARBOR CITY,,1910,1,RES1,3001 -0107_101_4,-74.617411,39.3705565,118 NORFOLK AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_101_6,-74.61792737,39.37109278,130 NORFOLK AVE,EGG HARBOR CITY,15,1918,1,RES1,3001 -0107_102_1,-74.55377825,39.46609174,1-31 WASHINGTON AVE,EGG HARBOR CITY,,1971,1,RES1,3001 -0107_102_15,-74.49285408,39.43360616,220-224 WHITE HORSE PK,EGG HARBOR CITY,,1925,1,GOV1,3004 -0107_102_17.02,-74.62802334,39.36492079,51 WASHINGTON AVE,EGG HARBOR CITY,16,1938,1,RES1,3001 -0107_102_18,-74.7070555,39.4174625,47 WASHINGTON AVE,EGG HARBOR CITY,15,1936,1,RES1,3001 -0107_102_20,-74.75943946,39.43279315,41 WASHINGTON AVE,EGG HARBOR CITY,16,2005,1,RES1,3001 -0107_102_21,-74.6348025,39.38419,39 WASHINGTON AVE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_102_8,-74.40428587,39.38082284,200 WHITE HORSE PK,EGG HARBOR CITY,,1984,1,GOV1,3004 -0107_103_1.01,-74.415748,39.3678865,5 LONDON AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_103_1.03,-74.931961,39.483266,9-11 LONDON AVE,EGG HARBOR CITY,15,1947,1,RES1,3001 -0107_103_1.04,-74.56652252,39.51282078,15 LONDON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_103_1.05,-74.81854921,39.64937147,19 LONDON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_103_1.06,-74.79325482,39.64381517,23 LONDON AVE,EGG HARBOR CITY,15,1940,1,REL1,3004 -0107_103_1.07,-74.59045715,39.32182398,27 LONDON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_103_1.08,-74.79655273,39.62309867,31 LONDON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_103_10,-74.4973265,39.3350665,38 WASHINGTON AVE,EGG HARBOR CITY,,1991,1,RES1,3001 -0107_103_11,-74.8177665,39.5651975,46 WASHINGTON AVE,EGG HARBOR CITY,16,1924,1,RES1,3001 -0107_103_14,-74.622276,39.3587925,308 WHITE HORSE PK,EGG HARBOR CITY,,1969,1,COM1,3004 -0107_103_15,-74.57602986,39.4221943,302 WHITE HORSE PK,EGG HARBOR CITY,,1954,1,RES1,3001 -0107_103_17.02,-74.71187,39.5682725,53 LONDON AVE,EGG HARBOR CITY,15,1949,1,RES1,3001 -0107_103_18,-74.57822066,39.47694801,51 LONDON AVE,EGG HARBOR CITY,16,1955,1,GOV1,3002 -0107_103_19.02,-74.67890069,39.49434608,47 LONDON AVE,EGG HARBOR CITY,16,1950,1,RES3A,3001 -0107_103_5,-74.49883547,39.50007515,2-30 WASHINGTON AVE,EGG HARBOR CITY,,1971,1,RES1,3001 -0107_104_1,-74.791615,39.6276825,100 WASHINGTON AVE,EGG HARBOR CITY,,1940,2,RES1,3001 -0107_104_10,-74.35776367,39.41470348,142 WASHINGTON AVE,EGG HARBOR CITY,43,1890,1,RES1,3001 -0107_104_12,-74.77747009,39.62482101,146 WASHINGTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_104_13.02,-74.57540558,39.4224073,158 WASHINGTON AVE,EGG HARBOR CITY,45,1930,1,RES1,3001 -0107_104_16.01,-74.52512949,39.31961542,159 LONDON AVE,EGG HARBOR CITY,43,1920,1,RES1,3001 -0107_104_16.02,-74.57419209,39.48085563,314 ARAGO ST,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_104_17.03,-74.58250684,39.33775702,153-155 LONDON AVE,EGG HARBOR CITY,43,1900,1,GOV1,3004 -0107_104_18,-74.9633095,39.512177,149 LONDON AVE,EGG HARBOR CITY,43,1900,1,RES1,3001 -0107_104_20,-74.538024,39.461982,143 LONDON AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_104_21.02,-74.88271304,39.4972403,135 LONDON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_104_23,-74.522712,39.3195975,131 LONDON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_104_24.02,-74.7907415,39.6470255,125 LONDON AVE,EGG HARBOR CITY,43,1930,2,RES1,3001 -0107_104_26,-74.803127,39.6288105,119 LONDON AVE,EGG HARBOR CITY,43,1940,2,RES1,3001 -0107_104_28,-74.806214,39.558843,109 LONDON AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_104_3,-74.61883578,39.61979279,108 WASHINGTON AVE,EGG HARBOR CITY,16,1935,1,RES1,3001 -0107_104_30,-74.4014295,39.3861815,327 WHITE HORSE PIKE,EGG HARBOR CITY,,1968,1,RES1,3001 -0107_104_5,-74.8325325,39.645766,118 WASHINGTON AVE,EGG HARBOR CITY,15,1955,1,RES1,3001 -0107_104_7.02,-74.71961611,39.47988453,136 WASHINGTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_105_1,-74.67655758,39.55768585,200 WASHINGTON AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_105_10,-74.49928966,39.50088846,238 WASHINGTON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_105_11,-74.604205,39.310326,242 WASHINGTON AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_105_13,-74.87464022,39.49105818,254 WASHINGTON AVE,EGG HARBOR CITY,16,1920,1,RES3A,3001 -0107_105_15,-74.5704465,39.4283145,304 BEETHOVEN ST,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_105_16,-74.4901875,39.333274,312 BEETHOVEN ST,EGG HARBOR CITY,16,1955,1,GOV1,3004 -0107_105_18,-74.57624786,39.33915625,245 LONDON AVE,EGG HARBOR CITY,15,1927,1,RES1,3001 -0107_105_2,-74.41738631,39.36902885,206 WASHINGTON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_105_20,-74.50782812,39.32518352,243 LONDON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_105_21.02,-74.607963,39.3113605,235 LONDON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_105_22.02,-74.80402061,39.66479493,233 LONDON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_105_23,-74.7799625,39.6423475,229 LONDON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_105_24,-74.35946916,39.41514348,227 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_105_25,-74.50440341,39.32450621,223 LONDON AVE,EGG HARBOR CITY,16,1920,1,GOV1,3004 -0107_105_26,-74.59611003,39.53363591,215-217 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_105_28,-74.82477169,39.44504424,209 LONDON AVE,EGG HARBOR CITY,43,1902,2,RES1,3001 -0107_105_3,-74.48874717,39.33242847,210 WASHINGTON AVE,EGG HARBOR CITY,15,1929,1,RES1,3001 -0107_105_30,-74.50969934,39.4072319,203 LONDON AVE,EGG HARBOR CITY,16,1902,1,RES1,3001 -0107_105_4,-74.71782813,39.4798808,214 WASHINGTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_105_5,-74.48923951,39.33534236,218 WASHINGTON AVE,EGG HARBOR CITY,16,1922,1,RES1,3001 -0107_105_6,-74.59659641,39.32348805,220-222 WASHINGTON AVE,EGG HARBOR CITY,43,1920,3,RES1,3001 -0107_105_8,-74.57582916,39.42325548,230 WASHINGTON AVE,EGG HARBOR CITY,15,1925,1,RES1,3001 -0107_105_9,-74.52377896,39.44220549,234 WASHINGTON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_106_1,-74.486948,39.442421,307 BEETHOVEN ST,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_106_10,-74.53455093,39.46280359,336 WASHINGTON AVE,EGG HARBOR CITY,16,2000,1,RES1,3004 -0107_106_12,-74.4752835,39.340208,346 WASHINGTON AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_106_14,-74.417333,39.369517,302 BUERGER ST,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_106_16,-74.792782,39.640981,355 LONDON AVE,EGG HARBOR CITY,43,1920,1,RES3A,3001 -0107_106_18,-74.50484517,39.32559409,347 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_106_19.02,-74.91648147,39.50118984,335 LONDON AVE,EGG HARBOR CITY,17,1970,1,COM1,3004 -0107_106_23,-74.72846415,39.45448456,331 LONDON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_106_24,-74.50878126,39.4332309,327 LONDON AVE,EGG HARBOR CITY,17,2004,1,RES1,3001 -0107_106_25,-74.51075051,39.40722866,319 LONDON AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_106_28,-74.8686625,39.4920845,307 LONDON AVE,EGG HARBOR CITY,,1931,1,RES1,3001 -0107_107_1,-74.6375155,39.3995305,402 WASHINGTON AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_107_10,-74.73585766,39.45188569,440 WASHINGTON AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_107_12,-74.59064179,39.37165972,444 WASHINGTON AVE,EGG HARBOR CITY,17,1981,1,RES1,3001 -0107_107_14,-74.65937812,39.60465934,458 WASHINGTON AVE,EGG HARBOR CITY,16,1950,1,GOV1,3004 -0107_107_16,-74.50816803,39.32612317,320 CAMPE ST,EGG HARBOR CITY,16,1970,4,RES1,3001 -0107_107_2.02,-74.46576826,39.53702296,408 WASHINGTON AVE,EGG HARBOR CITY,16,1953,1,GOV1,3004 -0107_107_21,-74.56561642,39.37431439,435 LONDON AVE,EGG HARBOR CITY,16,1963,1,RES1,3001 -0107_107_23,-74.532953,39.3893355,431 LONDON AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_107_24,-74.36714623,39.41571235,425 LONDON AVE,EGG HARBOR CITY,16,1968,1,RES1,3001 -0107_107_26,-74.5086985,39.3353275,419 LONDON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_107_27,-74.76535133,39.30852207,417 LONDON AVE 1,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_107_28,-74.52557394,39.45279897,405 LONDON AVE,EGG HARBOR CITY,16,1927,1,RES1,3001 -0107_107_3.02,-74.563651,39.478088,414 WASHINGTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_107_5,-74.6289159,39.42888969,420 WASHINGTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_107_7,-74.45244998,39.48803804,430 WASHINGTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_108_20,-74.378352,39.4185485,533 LONDON AVE,EGG HARBOR CITY,,1932,1,RES1,3001 -0107_109_10,-74.45316303,39.48943026,636 WASHINGTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_109_5,-74.605311,39.5053755,620 WASHINGTON AVE,EGG HARBOR CITY,16,1986,1,RES1,3001 -0107_11.07_1,-74.511269,39.4385985,1100-1122 HAMBURG AVE,EGG HARBOR CITY,,1991,1,RES1,3001 -0107_115_1,-74.58728326,39.32530631,310 MOSS MILL RD,EGG HARBOR CITY,16,1964,1,RES1,3001 -0107_13.07_1,-74.44113882,39.35364803,1310 HAMBURG AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_14.07_9,-74.50113045,39.43508418,1458 HAMBURG AVE,EGG HARBOR CITY,16,1940,1,RES3A,3001 -0107_15.07_1,-74.494534,39.332016,1502 HAMBURG AVE,EGG HARBOR CITY,15,1925,1,RES3B,3001 -0107_15.07_7,-74.60642156,39.40953262,1508 HAMBURG AVE,EGG HARBOR CITY,14,1930,1,RES1,3001 -0107_16.07_1,-74.643558,39.530203,1600 HAMBURG AVE,EGG HARBOR CITY,17,1987,1,RES1,3001 -0107_16_1,-74.5959015,39.510317,1701 NEW YORK AVE,EGG HARBOR CITY,,2010,1,RES1,3001 -0107_17.07_9,-74.5138045,39.4049015,1732 HAMBURG AVE,EGG HARBOR CITY,17,1987,1,RES1,3001 -0107_18.07_1,-74.451815,39.4977715,1804 HAMBURG AVE,EGG HARBOR CITY,16,1978,1,RES1,3001 -0107_18.07_12,-74.51787084,39.32273036,1850 HAMBURG AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_18.07_4,-74.64441986,39.39374124,1824 HAMBURG AVE,EGG HARBOR CITY,16,1991,1,RES1,3001 -0107_18.07_9,-74.6129015,39.390188,1832 HAMBURG AVE,EGG HARBOR CITY,16,1977,1,RES1,3001 -0107_183_11.02,-74.483785,39.3433035,2101 LIVERPOOL AVE,EGG HARBOR CITY,16,1976,1,RES1,3001 -0107_184_16,-74.80366781,39.31102004,2045 LIVERPOOL AVE,EGG HARBOR CITY,17,1969,1,RES1,3001 -0107_184_20,-74.81106854,39.37865423,2035 LIVERPOOL AVE,EGG HARBOR CITY,16,1974,1,RES1,3001 -0107_184_24,-74.7195855,39.4425115,2001 LIVERPOOL AVE,EGG HARBOR CITY,17,1970,1,RES1,3002 -0107_185_1,-74.60508863,39.40994875,1955 LIVERPOOL AVE,EGG HARBOR CITY,17,2004,1,RES1,3001 -0107_198_1,-74.51933613,39.39098714,601 LIVERPOOL AVE,EGG HARBOR CITY,,1960,1,RES1,3001 -0107_199_1,-74.49851504,39.33269067,500 LONDON AVE,EGG HARBOR CITY,,1970,1,RES1,3001 -0107_199_11.02,-74.8431715,39.38449,511 LIVERPOOL AVE,EGG HARBOR CITY,15,1925,1,RES1,3001 -0107_199_12,-74.63186608,39.3463939,501 LIVERPOOL AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_199_9.01,-74.45636102,39.37217616,535 LIVERPOOL AVE,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_199_9.02,-74.49638148,39.33585533,521 LIVERPOOL AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_2.07_1.01,-74.80516118,39.63835273,204 HAMBURG AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_2.07_1.02,-74.45949017,39.35006499,15 ARAGO ST,EGG HARBOR CITY,16,1979,1,RES1,3002 -0107_2.07_19,-74.5472155,39.382141,239 NEW YORK AVE,EGG HARBOR CITY,17,1977,1,RES1,3001 -0107_2.07_22,-74.714476,39.4662065,225 NEW YORK AVE,EGG HARBOR CITY,17,1984,1,RES1,3001 -0107_2.07_25,-74.40713716,39.38354312,219 NEW YORK AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_2.07_29.01,-74.94339157,39.5215807,201 NEW YORK AVE 1,EGG HARBOR CITY,,1932,1,RES1,3001 -0107_2.07_29.02,-74.49849201,39.33657767,17 ARAGO ST,EGG HARBOR CITY,15,1940,1,COM1,3004 -0107_2.07_3,-74.55205392,39.46868429,210 HAMBURG AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_2.07_7,-74.85231305,39.54251171,224 HAMBURG AVE,EGG HARBOR CITY,16,1921,1,GOV1,3004 -0107_2_1,-74.96184205,39.50430303,111 WHITE HORSE PK,EGG HARBOR CITY,,1900,1,RES3A,3001 -0107_2_10,-74.5132385,39.327527,136 NEW YORK AVE,EGG HARBOR CITY,43,1940,2,RES1,3001 -0107_2_11,-74.50789958,39.32883252,140 NEW YORK AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_2_13,-74.94425031,39.52784422,150 NEW YORK AVE,EGG HARBOR CITY,16,1950,1,RES3A,3001 -0107_2_14.02,-74.4985035,39.328171,158 NEW YORK AVE,EGG HARBOR CITY,16,1958,1,RES1,3001 -0107_2_14.03,-74.4263995,39.37178,110 ARAGO ST,EGG HARBOR CITY,15,1945,1,RES1,3001 -0107_2_16,-74.461882,39.350666,159 NORFOLK AVE,EGG HARBOR CITY,16,1935,1,RES1,3001 -0107_2_17,-74.58114896,39.33601135,153 NORFOLK AVE,EGG HARBOR CITY,16,1947,1,RES3A,3001 -0107_2_19,-74.59348747,39.31754474,147 NORFOLK AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_2_21,-74.7401425,39.55957998,135 NORFOLK AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_2_23,-74.7996215,39.6342045,131 NORFOLK AVE,EGG HARBOR CITY,15,1935,1,RES1,3002 -0107_2_24,-74.803673,39.6343035,123 NORFOLK AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_2_25,-74.837094,39.4724025,121 NORFOLK AVE,EGG HARBOR CITY,15,1945,1,RES1,3002 -0107_2_26,-74.71409282,39.41378601,119 NORFOLK AVE,EGG HARBOR CITY,15,1940,1,RES1,3004 -0107_2_27,-74.57264289,39.33765968,111 NORFOLK AVE,EGG HARBOR CITY,16,1956,1,RES3A,3001 -0107_2_29,-74.52653422,39.44893303,101 NORFOLK AVE,EGG HARBOR CITY,,1930,2,RES1,3001 -0107_2_4,-74.57129197,39.4462903,112 NEW YORK AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_2_5,-74.92417224,39.50938617,116 NEW YORK AVE,EGG HARBOR CITY,16,1943,1,RES1,3001 -0107_2_6,-74.86344191,39.487046,120 NEW YORK AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_2_7.02,-74.47378854,39.34003005,128 NEW YORK AVE,EGG HARBOR CITY,16,1957,1,RES1,3001 -0107_2_9,-74.51542166,39.40006699,132 NEW YORK AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_200_1,-74.5709055,39.42836617,400 LONDON AVE,EGG HARBOR CITY,16,1918,2,COM1,3004 -0107_200_10,-74.82937075,39.41483512,438 LONDON AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_200_12,-74.68983036,39.44695156,452 LONDON AVE,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_200_16,-74.82005513,39.61768155,420 CAMPE ST,EGG HARBOR CITY,16,1962,1,RES1,3001 -0107_200_18,-74.59260336,39.35990448,447 LIVERPOOL AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_200_2,-74.72614518,39.48449454,408 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_200_20,-74.5674512,39.47442429,439 LIVERPOOL AVE,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_200_21.02,-74.5394085,39.37549233,435 LIVERPOOL AVE,EGG HARBOR CITY,16,1940,1,RES3A,3001 -0107_200_23,-74.49182163,39.33322567,427 LIVERPOOL AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_200_24,-74.3922705,39.3912055,425 LIVERPOOL AVE,EGG HARBOR CITY,15,1930,1,RES3A,3001 -0107_200_25,-74.4533185,39.354227,423 LIVERPOOL AVE,EGG HARBOR CITY,15,1910,1,COM1,3002 -0107_200_26,-74.88895419,39.48324814,419 LIVERPOOL AVE,EGG HARBOR CITY,16,1925,1,GOV1,3004 -0107_200_27,-74.80020635,39.64340629,415 LIVERPOOL AVE,EGG HARBOR CITY,15,1945,1,RES3A,3001 -0107_200_28,-74.785281,39.6447545,411 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES3A,3001 -0107_200_29,-74.49234263,39.33560765,413 BUERGER ST,EGG HARBOR CITY,,1929,1,RES1,3001 -0107_200_3.01,-74.48226588,39.34405163,410 LONDON AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_200_3.02,-74.60825943,39.32336883,411 4TH TERRACE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_200_5,-74.6939345,39.4474125,418 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3002 -0107_200_6,-74.50145284,39.49234875,420-422 LONDON AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_200_7,-74.45328791,39.35377458,426 LONDON AVE,EGG HARBOR CITY,16,1962,1,RES1,3001 -0107_200_8.02,-74.39831731,39.38742657,434 LONDON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_201_1.01,-74.502698,39.3842175,302 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_201_1.02,-74.5213045,39.31976,308 LONDON AVE,EGG HARBOR CITY,16,1928,1,RES1,3004 -0107_201_10.02,-74.51184592,39.32844634,327 LIVERPOOL AVE,EGG HARBOR CITY,16,1890,1,RES1,3001 -0107_201_10.03,-74.56661265,39.47349705,319 LIVERPOOL AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_201_11,-74.50721498,39.45037254,313 LIVERPOOL AVE,EGG HARBOR CITY,16,1988,1,RES1,3001 -0107_201_12,-74.56320749,39.44808834,301 LIVERPOOL AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_201_2.02,-74.505381,39.328589,318-320 LONDON AVE,EGG HARBOR CITY,43,1920,1,RES1,3001 -0107_201_3.01,-74.80052469,39.55532948,322 LONDON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_201_3.02,-74.60133718,39.32743756,324 LONDON AVE,EGG HARBOR CITY,15,1922,1,RES3A,3001 -0107_201_3.03,-74.517949,39.319434,326 LONDON AVE,EGG HARBOR CITY,16,1923,1,RES1,3001 -0107_201_4.02,-74.64919284,39.34224472,330 LONDON AVE,EGG HARBOR CITY,15,1920,2,RES1,3001 -0107_201_5.01,-74.53274001,39.45246108,341 4TH TERRACE,EGG HARBOR CITY,15,1966,1,RES1,3001 -0107_201_5.02,-74.593714,39.3244245,348 LONDON AVE,EGG HARBOR CITY,16,1929,2,RES1,3001 -0107_201_6,-74.4925185,39.495681,352 LONDON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_201_7,-74.4593055,39.3507405,359 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES3B,3001 -0107_201_8.01,-74.727397,39.455282,343 LIVERPOOL AVE,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_201_8.02,-74.462473,39.3589275,335 LIVERPOOL AVE,EGG HARBOR CITY,16,1926,1,RES1,3001 -0107_202_1,-74.4982391,39.3320752,204 LONDON AVE,EGG HARBOR CITY,45,1920,1,RES1,3001 -0107_202_10,-74.63587517,39.42883849,236 LONDON AVE,EGG HARBOR CITY,,1900,1,COM1,3004 -0107_202_12,-74.82930035,39.40768271,252 LONDON AVE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_202_14,-74.48744628,39.33714217,256 LONDON AVE,EGG HARBOR CITY,16,1921,1,RES1,3001 -0107_202_16,-74.7163497,39.40102007,257 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,COM1,3004 -0107_202_17,-74.64926212,39.4028628,253 LIVERPOOL AVE,EGG HARBOR CITY,15,1935,1,RES1,3001 -0107_202_18,-74.40642553,39.37957998,245 LIVERPOOL AVE,EGG HARBOR CITY,,1920,4,RES1,3001 -0107_202_2.02,-74.74787602,39.44605717,210 LONDON AVE,EGG HARBOR CITY,16,1945,1,RES1,3001 -0107_202_20,-74.7554485,39.661851,243 LIVERPOOL AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_202_21.02,-74.58122515,39.41074932,233 LIVERPOOL AVE,EGG HARBOR CITY,16,1940,1,GOV1,3004 -0107_202_23.02,-74.56456256,39.47726231,225 LIVERPOOL AVE,EGG HARBOR CITY,16,1904,1,RES3A,3001 -0107_202_25,-74.47957,39.340781,223 LIVERPOOL AVE,EGG HARBOR CITY,15,1953,1,RES1,3001 -0107_202_26,-74.62058915,39.46329813,219 LIVERPOOL AVE,EGG HARBOR CITY,43,1940,1,RES1,3001 -0107_202_27,-74.57796758,39.47600615,217 LIVERPOOL AVE 1,EGG HARBOR CITY,15,1922,1,RES1,3001 -0107_202_28,-74.536957,39.5272345,209 LIVERPOOL AVE,EGG HARBOR CITY,15,1954,1,RES1,3001 -0107_202_29,-74.92440574,39.47530952,206 4TH TERRACE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_202_30,-74.52979464,39.39687391,201 LIVERPOOL AVE,EGG HARBOR CITY,16,1922,1,RES1,3001 -0107_202_5,-74.5480125,39.5254705,216-218 LONDON AVE,EGG HARBOR CITY,43,1940,1,RES3A,3001 -0107_202_6,-74.50451316,39.43663568,222 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_202_7.02,-74.60579471,39.35646402,226 LONDON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_202_8,-74.7168095,39.3956925,228 LONDON AVE,EGG HARBOR CITY,,1922,1,RES1,3001 -0107_202_9,-74.54600284,39.38165575,234 LONDON AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_203_10.01,-74.9503545,39.514124,127 LIVERPOOL AVE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_203_10.02,-74.59555634,39.31076496,125 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_203_11.01,-74.942178,39.52297,119 LIVERPOOL AVE,EGG HARBOR CITY,,1915,1,RES1,3001 -0107_203_11.02,-74.750761,39.446773,413 WHITE HORSE PIKE,EGG HARBOR CITY,,1909,1,RES1,3001 -0107_203_2,-74.59107616,39.31213055,116 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_203_3,-74.56999418,39.42791501,120 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_203_4,-74.80416042,39.64350148,136 LONDON AVE,EGG HARBOR CITY,43,1900,1,RES1,3001 -0107_203_5.01,-74.59002416,39.321064,142 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES3A,3001 -0107_203_5.02,-74.62555711,39.46357146,148 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_203_6,-74.5073384,39.32860784,158 LONDON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_203_7.01,-74.78959278,39.6394842,159 LIVERPOOL AVE,EGG HARBOR CITY,16,1874,1,RES1,3001 -0107_203_7.02,-74.71588861,39.38457975,151 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_203_8.01,-74.862475,39.495889,149 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_203_8.02,-74.6004285,39.435778,143 LIVERPOOL AVE,EGG HARBOR CITY,16,1925,1,COM1,3004 -0107_203_9,-74.715034,39.4657785,139 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_204_1.01,-74.37232758,39.40419366,423 ATLANTIC AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_204_1.02,-74.8655715,39.5762515,15 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,COM5,3004 -0107_204_1.03,-74.8208548,39.52938009,27 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_204_1.04,-74.88662113,39.59492225,29 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_204_1.05,-74.550116,39.465658,31 LIVERPOOL AVE,EGG HARBOR CITY,16,1904,1,COM1,3004 -0107_204_13,-74.45493898,39.35215575,402 WHITE HORSE PK,EGG HARBOR CITY,,1925,1,RES1,3001 -0107_204_15.01,-74.546664,39.382093,53 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_204_15.04,-74.51126119,39.33231015,414 WHITE HORSE PK,EGG HARBOR CITY,14,1920,1,RES1,3001 -0107_204_17,-74.52494196,39.39733198,51 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,COM4,3004 -0107_204_18,-74.89783487,39.48336421,47 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_204_19,-74.4614055,39.352572,43 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_204_2.01,-74.47321587,39.44775909,417 ATLANTIC AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_204_20.01,-74.5995776,39.43009279,35-37 LIVERPOOL AVE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_204_20.02,-74.4842405,39.525156,36 4TH TERRACE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_204_5.01,-74.52050836,39.3972546,405 ATLANTIC AVE,EGG HARBOR CITY,16,1850,1,RES1,3001 -0107_204_5.02,-74.8185505,39.4691665,32 LONDON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_204_5.05,-74.78074629,39.63271078,38 LONDON AVE,EGG HARBOR CITY,,1952,1,RES1,3001 -0107_205_1.01,-74.49737963,39.47263268,1 PHILADELPHIA AVE,EGG HARBOR CITY,,1946,1,RES1,3001 -0107_205_1.03,-74.64429697,39.43493232,31 PHILADELPHIA AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_205_11.02,-74.50863028,39.43876569,52 LIVERPOOL AVE,EGG HARBOR CITY,,1940,1,RES1,3001 -0107_205_13.01,-74.8874285,39.4719575,500 WHITE HORSE PK,EGG HARBOR CITY,,1930,1,RES1,3001 -0107_205_13.02,-74.6358555,39.383385,508 WHITE HORSE PIKE,EGG HARBOR CITY,,1977,1,RES1,3001 -0107_205_15.02,-74.5724345,39.4265095,510 WHITE HORSE PK,EGG HARBOR CITY,,1993,1,GOV1,3004 -0107_205_18,-74.8121875,39.469613,45-47 PHILADELPHIA AVE,EGG HARBOR CITY,,1880,1,RES1,3001 -0107_205_3.01,-74.50774356,39.43894524,513 ATLANTIC AVE,EGG HARBOR CITY,16,1898,1,GOV1,3004 -0107_205_5.01,-74.506571,39.4941435,509 ATLANTIC AVE,EGG HARBOR CITY,,1920,4,RES1,3001 -0107_205_5.02,-74.69653235,39.35527029,23 5TH TERRACE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_205_5.03,-74.81893433,39.46692771,27 5TH TERRACE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_205_6.01,-74.9452195,39.5090445,507 ATLANTIC AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_205_6.02,-74.52524631,39.46294152,34 LIVERPOOL AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_205_7.01,-74.58971775,39.42574853,501 ATLANTIC AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_205_7.02,-74.5783725,39.47682,10 LIVERPOOL AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_205_8.02,-74.78336856,39.64102426,46 LIVERPOOL AVE,EGG HARBOR CITY,,1860,1,RES1,3002 -0107_206_1.01,-74.621328,39.4347595,501 WHITE HORSE PK,EGG HARBOR CITY,,1930,1,RES1,3001 -0107_206_10.01,-74.4894125,39.471392,144 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_206_10.02,-74.461299,39.3487205,143-145 5TH TERRACE,EGG HARBOR CITY,43,1920,2,RES1,3002 -0107_206_12.01,-74.51058949,39.33999233,146 LIVERPOOL AVE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_206_12.02,-74.52615702,39.38273782,147 5TH TERRACE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_206_13.01,-74.8308945,39.3735945,150 LIVERPOOL AVE,EGG HARBOR CITY,16,1885,1,RES1,3001 -0107_206_13.02,-74.632401,39.3187555,151 5TH TERRACE,EGG HARBOR CITY,15,1920,1,RES1,3002 -0107_206_14.02,-74.70251069,39.4912627,148 LIVERPOOL AVE,EGG HARBOR CITY,,1975,1,RES1,3001 -0107_206_16,-74.4518638,39.37047269,157-159 PHILADELPHIA AV,EGG HARBOR CITY,,0,1,RES1,3001 -0107_206_17,-74.92610266,39.48174808,153 PHILADELPHIA AVE,EGG HARBOR CITY,,1880,1,GOV1,3004 -0107_206_18,-74.4594075,39.349502,149-151 PHILADELPHIA AVE,EGG HARBOR CITY,,1923,1,RES1,3001 -0107_206_20,-74.589451,39.35260465,141-143 PHILADELPHIA AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_206_21,-74.40446925,39.38036944,135 PHILADELPHIA AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_206_22.02,-74.589644,39.4307175,129 PHILADELPHIA AVE,EGG HARBOR CITY,,1925,1,RES1,3001 -0107_206_24.01,-74.87757983,39.6035392,125 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_206_24.02,-74.567183,39.4802745,121 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_206_26.01,-74.39967761,39.38607763,119 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_206_26.02,-74.684106,39.442056,115 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_206_29,-74.6583325,39.548042,105 PHILADELPHIA AVE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_206_3,-74.49620583,39.3338655,108-110 LIVERPOOL AVE,EGG HARBOR CITY,43,1940,2,RES1,3001 -0107_206_4.01,-74.61286245,39.4215667,115-117 5TH TERRACE,EGG HARBOR CITY,14,1920,1,RES1,3001 -0107_206_5,-74.4833315,39.344319,116 LIVERPOOL AVE,EGG HARBOR CITY,,1928,1,RES1,3001 -0107_206_6,-74.5079705,39.493177,120 LIVERPOOL AVE,EGG HARBOR CITY,,1966,1,GOV1,3004 -0107_206_7,-74.62707155,39.43374648,124 LIVERPOOL AVE,EGG HARBOR CITY,16,1930,1,GOV1,3004 -0107_206_8,-74.6810618,39.44613313,130 LIVERPOOL AVE,EGG HARBOR CITY,43,1920,2,GOV1,3004 -0107_206_9,-74.81910867,39.36948835,134 LIVERPOOL AVE,EGG HARBOR CITY,16,1925,1,GOV1,3004 -0107_207_1.01,-74.6104825,39.4871825,200 LIVERPOOL AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_207_1.02,-74.791087,39.6773975,206 LIVERPOOL AVE,EGG HARBOR CITY,45,1924,1,GOV1,3004 -0107_207_1.03,-74.43755172,39.49336703,208 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_207_10,-74.42947231,39.36750755,227 PHILADELPHIA AVE,EGG HARBOR CITY,,1895,1,RES1,3001 -0107_207_11.01,-74.55875813,39.39072684,217 PHILADELPHIA AVE,EGG HARBOR CITY,,1910,1,RES1,3001 -0107_207_11.02,-74.50765906,39.46183662,215 PHILADELPHIA AVE,EGG HARBOR CITY,,1915,1,RES1,3001 -0107_207_11.03,-74.37081086,39.41482729,209 PHILADELPHIA AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_207_12.01,-74.491834,39.340743,201 PHILADELPHIA AVE,EGG HARBOR CITY,,1925,1,RES1,3001 -0107_207_12.02,-74.80926162,39.63767235,205-207 PHILADELPHIA AVE,EGG HARBOR CITY,,1910,1,RES1,3001 -0107_207_12.03,-74.58824016,39.33122927,206 5TH TERRACE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_207_2.02,-74.61507422,39.36985908,214-216 LIVERPOOL AVE,EGG HARBOR CITY,43,1920,3,GOV1,3004 -0107_207_3.01,-74.5574175,39.477138,222 LIVERPOOL AVE,EGG HARBOR CITY,16,1915,1,RES1,3001 -0107_207_3.02,-74.483268,39.341915,232 LIVERPOOL AVE,EGG HARBOR CITY,15,1975,1,RES1,3001 -0107_207_4.02,-74.5128911,39.44201872,238 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_207_5.01,-74.563544,39.3697205,240 LIVERPOOL AVE,EGG HARBOR CITY,15,1900,1,RES1,3001 -0107_207_5.02,-74.7947549,39.6314094,244 LIVERPOOL AVE,EGG HARBOR CITY,15,1925,1,RES1,3001 -0107_207_5.03,-74.50268436,39.32705182,248 LIVERPOOL AVE,EGG HARBOR CITY,15,1925,1,RES1,3001 -0107_207_6.01,-74.51566188,39.31978964,252 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,2,RES1,3001 -0107_207_6.02,-74.51609341,39.46113545,500 BEETHOVEN ST,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_207_7.01,-74.6859915,39.549482,257-259 PHILADELPHIA AVE,EGG HARBOR CITY,,1927,1,RES1,3001 -0107_207_7.02,-74.386385,39.3963085,251 PHILADELPHIA AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_207_8.01,-74.49310934,39.33568739,249 PHILADELPHIA AVE,EGG HARBOR CITY,43,1900,1,AGR1,3001 -0107_207_8.02,-74.8100835,39.6380455,237 PHILADELPHIA AVE,EGG HARBOR CITY,,1957,1,RES1,3001 -0107_207_9.02,-74.86425458,39.48632564,231 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_208_1.01,-74.3809022,39.41878241,300 LIVERPOOL AVE 1,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_208_1.02,-74.9194465,39.566129,301 5TH TERRACE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_208_10,-74.4843645,39.3361345,340 LIVERPOOL AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_208_12,-74.45454741,39.35230251,350 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_208_14,-74.49384187,39.33900092,354 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_208_16,-74.48370624,39.33851814,359 PHILADELPHIA AVE,EGG HARBOR CITY,17,1925,1,RES1,3001 -0107_208_18,-74.37113995,39.41082221,347 PHILADELPHIA AVE,EGG HARBOR CITY,16,1920,1,GOV1,3004 -0107_208_2,-74.485903,39.336767,304 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_208_20,-74.72442191,39.46267049,343 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_208_21,-74.544758,39.562732,339 PHILADELPHIA AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_208_22,-74.43776383,39.491386,329-31 PHILADELPHIA AVE,EGG HARBOR CITY,16,1920,1,GOV1,3004 -0107_208_24.01,-74.78656273,39.67607841,325-327 PHILADELPHIA AVE,EGG HARBOR CITY,,1927,1,AGR1,3001 -0107_208_24.02,-74.5175855,39.319642,323 PHILADELPHIA AVE,EGG HARBOR CITY,,1920,4,RES1,3001 -0107_208_26,-74.64299733,39.38398223,317 PHILADELPHIA AVE,EGG HARBOR CITY,,1875,1,RES1,3001 -0107_208_27,-74.57449721,39.34349683,313 PHILADELPHIA AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_208_28,-74.57622675,39.33235214,301 PHILADELPHIA AVE,EGG HARBOR CITY,,1961,1,AGR1,3001 -0107_208_3,-74.7974795,39.6529855,308 LIVERPOOL AVE,EGG HARBOR CITY,15,1920,1,RES3A,3001 -0107_208_5.01,-74.45854442,39.51234027,312 LIVERPOOL AVE,EGG HARBOR CITY,15,1913,1,AGR1,3001 -0107_208_5.02,-74.51070341,39.46053419,321 5TH TERRACE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_208_8.02,-74.58155727,39.33159884,334 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_209_1.01,-74.475482,39.443643,400 LIVERPOOL AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_209_1.02,-74.50286238,39.3337873,408 LIVERPOOL AVE,EGG HARBOR CITY,15,1910,1,AGR1,3001 -0107_209_10,-74.79297167,39.4455776,425 PHILADELPHIA AVE,EGG HARBOR CITY,16,1846,2,GOV1,3004 -0107_209_11.01,-74.63700247,39.3442458,411 PHILADELPHIA AVE,EGG HARBOR CITY,16,1915,1,RES1,3001 -0107_209_12,-74.5175405,39.320859,407 PHILADELPHIA AVE,EGG HARBOR CITY,,1917,1,RES1,3001 -0107_209_2.02,-74.495399,39.328879,414 LIVERPOOL AVE 1,EGG HARBOR CITY,15,1927,1,IND2,3002 -0107_209_2.03,-74.6008185,39.4135915,418 LIVERPOOL AVE 1,EGG HARBOR CITY,16,1925,1,RES1,3002 -0107_209_3.01,-74.61825649,39.49393967,420 LIVERPOOL AVE,EGG HARBOR CITY,16,2005,1,COM3,3004 -0107_209_3.02,-74.5039757,39.32652614,426 LIVERPOOL AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_209_4.02,-74.78987398,39.44739217,428 LIVERPOOL AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_209_4.03,-74.7191304,39.4500912,436 LIVERPOOL AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_209_5,-74.45209333,39.35620089,440 LIVERPOOL AVE,EGG HARBOR CITY,16,1949,1,RES1,3001 -0107_209_6,-74.46380617,39.34754649,504 CAMPE ST,EGG HARBOR CITY,16,1957,1,RES1,3001 -0107_209_7.01,-74.7288525,39.449886,459 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_209_7.02,-74.46231484,39.34575399,455 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_210_1,-74.52089895,39.39098618,500 LIVERPOOL AVE,EGG HARBOR CITY,43,1920,3,GOV1,3004 -0107_210_10,-74.79444724,39.61859704,536 LIVERPOOL AVE,EGG HARBOR CITY,15,1900,1,RES1,3001 -0107_210_12,-74.5126315,39.3302545,540 LIVERPOOL AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_210_14,-74.63604093,39.42922765,502 CLAUDIUS ST,EGG HARBOR CITY,17,1977,1,RES1,3001 -0107_210_16,-74.63770426,39.43194893,559 PHILADELPHIA AVE,EGG HARBOR CITY,,1951,1,RES1,3001 -0107_210_17,-74.757805,39.4803005,541-555 PHILADELPHIA AVE,EGG HARBOR CITY,,1965,1,RES1,3001 -0107_210_21,-74.45974774,39.48312726,537 PHILADELPHIA AVE,EGG HARBOR CITY,16,1948,1,RES1,3001 -0107_210_22,-74.49839738,39.33136767,535 PHILADELPHIA AVE,EGG HARBOR CITY,15,1948,1,RES1,3001 -0107_210_24,-74.648374,39.4318115,525 PHILADELPHIA AVE,EGG HARBOR CITY,,1949,1,GOV1,3004 -0107_210_26,-74.50956882,39.33056105,515 PHILADELPHIA AVE,EGG HARBOR CITY,16,1948,1,RES1,3001 -0107_210_27.02,-74.511981,39.3266265,511 PHILADELPHIA AVE,EGG HARBOR CITY,16,1950,1,GOV1,3004 -0107_210_29,-74.430318,39.369602,501 PHILADELPHIA AVE,EGG HARBOR CITY,17,1940,1,RES1,3001 -0107_210_3.02,-74.50089422,39.33108285,509 5TH TERRACE,EGG HARBOR CITY,15,1950,1,GOV1,3004 -0107_210_4,-74.899827,39.480824,512 LIVERPOOL AVE,EGG HARBOR CITY,16,1935,1,RES1,3001 -0107_210_5,-74.524185,39.3138815,518 LIVERPOOL AVE,EGG HARBOR CITY,16,1949,1,RES1,3001 -0107_210_7,-74.5198995,39.3239495,524 LIVERPOOL AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_210_8,-74.6397115,39.3826375,534 LIVERPOOL AVE,EGG HARBOR CITY,16,1945,1,GOV1,3004 -0107_211_1,-74.35607733,39.41481449,505 CLAUDIUS ST,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_211_10.02,-74.66139245,39.40266735,617 PHILADELPHIA AVE,EGG HARBOR CITY,15,1892,1,RES1,3001 -0107_211_11.01,-74.574639,39.352316,615 PHILADELPHIA AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_211_11.02,-74.948552,39.524259,613 PHILADELPHIA AVE,EGG HARBOR CITY,15,1925,1,RES3A,3001 -0107_211_12,-74.75482211,39.43199215,603 PHILADELPHIA AVE,EGG HARBOR CITY,16,1920,1,GOV1,3004 -0107_211_2.02,-74.94800788,39.4924383,620 LIVERPOOL AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_211_2.03,-74.5005605,39.326191,626 LIVERPOOL AVE,EGG HARBOR CITY,15,1940,1,GOV1,3004 -0107_211_3.02,-74.40356656,39.39431824,630 LIVERPOOL AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_211_4.01,-74.56773132,39.35515547,632 LIVERPOOL AVE,EGG HARBOR CITY,16,2002,1,GOV1,3004 -0107_211_5.02,-74.43264146,39.36620382,648 LIVERPOOL AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_211_6,-74.60114944,39.34204383,658 LIVERPOOL AVE,EGG HARBOR CITY,16,1979,1,RES1,3001 -0107_211_7,-74.75926,39.4475665,631 PHILADELPHIA AVE,EGG HARBOR CITY,,1973,1,RES1,3001 -0107_212_13,-74.50939915,39.32785602,500-512 DUERER ST,EGG HARBOR CITY,45,1980,2,RES1,3001 -0107_212_16,-74.61994067,39.52461001,745 PHILADELPHIA AVE,EGG HARBOR CITY,,1955,1,RES1,3001 -0107_212_20,-74.60999869,39.39145517,721-743 PHILADELPHIA AVE,EGG HARBOR CITY,,1990,1,GOV1,3004 -0107_212_26,-74.462213,39.462799,717 PHILADELPHIA AVE,EGG HARBOR CITY,,2013,1,RES1,3001 -0107_213_13,-74.48657901,39.35162817,801 PHILADELPHIA AVE,EGG HARBOR CITY,,1966,1,RES1,3001 -0107_216_1,-74.47243366,39.34191783,1100-50 LIVERPOOL AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_216_2,-74.37261639,39.41403576,1109 PHILADELPHIA AVE,EGG HARBOR CITY,43,1900,2,RES1,3001 -0107_220_16,-74.6005925,39.435461,1551 PHILADELPHIA AVE,EGG HARBOR CITY,16,1979,1,RES1,3001 -0107_220_20,-74.36565564,39.40796995,1533 PHILADELPHIA AVE,EGG HARBOR CITY,16,1956,1,RES1,3001 -0107_221_10,-74.69153176,39.44824906,1621 PHILADELPHIA AVE,EGG HARBOR CITY,17,1965,1,RES1,3001 -0107_221_7,-74.646544,39.601298,1653 PHILADELPHIA AVE,EGG HARBOR CITY,,2016,1,RES1,3001 -0107_221_8.02,-74.7514315,39.451965,1645 PHILADELPHIA AVE,EGG HARBOR CITY,17,1971,1,RES1,3001 -0107_222_19.02,-74.93558046,39.51877382,1735 PHILADELPHIA AVE,EGG HARBOR CITY,16,1978,1,RES1,3001 -0107_222_23,-74.3822455,39.3933695,1717 PHILADELPHIA AVE,EGG HARBOR CITY,17,1974,1,COM8,3004 -0107_222_27,-74.39026572,39.39257017,1715 PHILADELPHIA AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_223_13,-74.53882441,39.45937423,518 KANT ST,EGG HARBOR CITY,16,1985,1,RES1,3001 -0107_223_14,-74.84584665,39.37223021,1821 PHILADELPHIA AVE,EGG HARBOR CITY,17,1985,1,RES1,3001 -0107_223_15,-74.50160481,39.41192233,1801 PHILADELPHIA AVE,EGG HARBOR CITY,17,1985,1,RES1,3001 -0107_223_5.02,-74.6322858,39.43200548,1850 LIVERPOOL AVE,EGG HARBOR CITY,17,1970,1,RES1,3001 -0107_224_16,-74.38574951,39.39312811,1955 PHILADELPHIA AVE,EGG HARBOR CITY,17,1955,1,RES1,3001 -0107_224_4,-74.363066,39.4190225,1960 LIVERPOOL AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_225_10.02,-74.94383998,39.49634267,2021 PHILADELPHIA AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_225_2.02,-74.37258361,39.40563567,2018 LIVERPOOL AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_225_3.02,-74.61651925,39.37221563,2032 LIVERPOOL AVE,EGG HARBOR CITY,17,1968,1,RES1,3001 -0107_225_5,-74.39124101,39.39328333,2058 LIVERPOOL AVE,EGG HARBOR CITY,16,1979,1,GOV1,3004 -0107_225_7,-74.60478562,39.31820871,2045 PHILADELPHIA AVE,EGG HARBOR CITY,17,1955,1,RES1,3001 -0107_225_9.02,-74.9545065,39.4975425,2033 PHILADELPHIA AVE,EGG HARBOR CITY,17,1965,1,GOV1,3004 -0107_226_16,-74.44840021,39.49013158,2151 PHILADELPHIA AVE,EGG HARBOR CITY,16,1963,1,RES1,3001 -0107_226_21,-74.9262528,39.48005689,2133 PHILADELPHIA AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_226_24,-74.44828331,39.37256991,2115 PHILADELPHIA AVE,EGG HARBOR CITY,16,1965,1,GOV1,3004 -0107_232_6.01,-74.39417813,39.39492726,2750 LIVERPOOL AVE,EGG HARBOR CITY,15,1992,1,GOV1,3004 -0107_24_12,-74.53423909,39.45419558,2350 NEW YORK AVE,EGG HARBOR CITY,17,1972,1,RES1,3001 -0107_24_2,-74.600123,39.434485,2326 NEW YORK AVE,EGG HARBOR CITY,17,1973,1,RES1,3001 -0107_24_8,-74.81088029,39.64642982,2336 NEW YORK AVE,EGG HARBOR CITY,17,1972,1,GOV1,3004 -0107_25.27_29,-74.4754685,39.4390665,2501 NEW YORK AVE,EGG HARBOR CITY,,0,1,GOV1,3004 -0107_26.17_1,-74.6262744,39.48708724,2500 HAMBURG AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_28.17_1,-74.4920345,39.4458605,2800-2854 HAMBURG AVE,EGG HARBOR CITY,,0,1,GOV1,3004 -0107_3.07_16,-74.6313212,39.4188271,59 BUERGER ST,EGG HARBOR CITY,17,1960,1,RES1,3001 -0107_3.07_9,-74.60473635,39.32595095,328 HAMBURG AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_3_1,-74.6910362,39.49584884,200 NEW YORK AVE 1,EGG HARBOR CITY,16,1938,1,RES1,3001 -0107_3_10,-74.47088149,39.45296267,240 NEW YORK AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_3_14,-74.711276,39.567324,106 BEETHOVEN ST,EGG HARBOR CITY,16,1976,1,RES1,3001 -0107_3_16,-74.67683894,39.49706781,259 NORFOLK AVE,EGG HARBOR CITY,15,1945,1,GOV1,3004 -0107_3_17.02,-74.49522134,39.33447906,249 NORFOLK AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_3_19,-74.77206808,39.49375164,245 NORFOLK AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_3_21,-74.5072584,39.34050508,233 NORFOLK AVE,EGG HARBOR CITY,16,1955,1,GOV1,3004 -0107_3_23,-74.6329135,39.31822184,221 NORFOLK AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_3_25,-74.58717428,39.4237791,217 NORFOLK AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_3_27,-74.94039797,39.52371732,205 NORFOLK AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_3_29,-74.59487117,39.31661355,201 NORFOLK AVE,EGG HARBOR CITY,16,1945,1,RES1,3001 -0107_3_3.01,-74.52129832,39.31896523,208 NEW YORK AVE,EGG HARBOR CITY,15,1925,1,RES1,3001 -0107_3_3.02,-74.59566204,39.3149908,209 FIRST TER,EGG HARBOR CITY,15,1906,1,RES1,3001 -0107_3_5,-74.950812,39.51936175,220 NEW YORK AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_3_7,-74.81283261,39.63070838,236 NEW YORK AVE,EGG HARBOR CITY,15,1905,1,GOV1,3004 -0107_301_1,-74.60783956,39.48915675,1830 PHILADELPHIA AVE,EGG HARBOR CITY,17,1995,1,RES1,3001 -0107_302_2.02,-74.8473425,39.3760185,1710 PHILADELPHIA AVE,EGG HARBOR CITY,15,1868,1,RES1,3002 -0107_302_4.02,-74.53708625,39.31388414,1736 PHILADELPHIA AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_303_13,-74.4963245,39.336905,1658 PHILADELPHIA AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_303_5,-74.4957765,39.470966,1622 PHILADELPHIA AVE,EGG HARBOR CITY,16,1968,1,RES1,3001 -0107_306.01_1,-74.5473845,39.4675965,1300 PHILADELPHIA AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_307_12,-74.4934076,39.41957056,1254 PHILADELPHIA AVE,EGG HARBOR CITY,14,1915,1,RES1,3001 -0107_307_6,-74.95988263,39.51272325,1220 PHILADELPHIA AVE,EGG HARBOR CITY,,1918,1,GOV1,3004 -0107_309_1,-74.471939,39.340425,1000-1010 PHILADELPHIA AV,EGG HARBOR CITY,16,2007,1,RES1,3001 -0107_309_4,-74.492394,39.460238,1012-18 PHILADELPHIA AVE,EGG HARBOR CITY,16,1960,1,COM3,3004 -0107_309_6,-74.57554868,39.40847655,1020-30 PHILADELPHIA AVE,EGG HARBOR CITY,,1955,1,GOV1,3004 -0107_310_5.01,-74.61955,39.424454,926 PHILADELPHIA AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_310_5.02,-74.86197985,39.56393716,946 PHILADELPHIA AVE,EGG HARBOR CITY,16,1983,1,RES1,3001 -0107_310_6.02,-74.51531622,39.43878324,954 PHILADELPHIA AVE,EGG HARBOR CITY,16,1979,1,GOV1,3004 -0107_311_1,-74.489076,39.4595805,800 PHILADELPHIA AVE,EGG HARBOR CITY,,1959,1,RES1,3001 -0107_311_10,-74.621229,39.425275,842 PHILADELPHIA AVE,EGG HARBOR CITY,,1992,1,RES1,3001 -0107_312_1,-74.50096066,39.51281233,700 PHILADELPHIA AVE,EGG HARBOR CITY,,1993,1,GOV1,3004 -0107_312_10.02,-74.59769213,39.41798841,713 CINCINNATI AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_312_5,-74.52217847,39.31710192,758 PHILADELPHIA AVE,EGG HARBOR CITY,,1958,1,RES1,3001 -0107_312_9.02,-74.47975102,39.33966834,717 CINCINNATI AVE,EGG HARBOR CITY,,1920,1,GOV1,3004 -0107_313_1,-74.920838,39.488856,606 PHILADELPHIA AVE,EGG HARBOR CITY,16,1925,1,GOV1,3004 -0107_313_10.02,-74.50232112,39.40954822,634 PHILADELPHIA AVE,EGG HARBOR CITY,16,1960,1,GOV1,3004 -0107_313_12,-74.47452128,39.44514975,640 PHILADELPHIA AVE,EGG HARBOR CITY,,1979,1,COM1,3004 -0107_313_16,-74.7570075,39.431784,655 CINCINNATI AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_313_18,-74.928893,39.5186445,645 CINCINNATI AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_313_21,-74.49466618,39.45601265,635 CINCINNATI AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_313_24,-74.52388735,39.44895754,615 CINCINNATI AVE,EGG HARBOR CITY,,1966,1,GOV1,3004 -0107_313_29.02,-74.44953947,39.37433919,601 CINCINNATI AVE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_313_5,-74.87962167,39.47740366,616 PHILADELPHIA AVE,EGG HARBOR CITY,16,1890,1,RES1,3001 -0107_313_7,-74.45233604,39.37431081,626 PHILADELPHIA AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_313_9,-74.61590188,39.33880694,630 PHILADELPHIA AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_314_1,-74.83207383,39.47744398,528 PHILADELPHIA AVE,EGG HARBOR CITY,,2015,1,RES1,3001 -0107_314_10.01,-74.60732667,39.32074753,525 CINCINNATI AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_314_10.02,-74.5050205,39.3334215,521 CINCINNATI AVE,EGG HARBOR CITY,16,1955,1,GOV1,3004 -0107_314_11.02,-74.92863175,39.48205543,517 CINCINNATI AVE,EGG HARBOR CITY,43,1955,2,RES1,3001 -0107_314_12.01,-74.75566697,39.44621179,501 CINCINNATI AVE,EGG HARBOR CITY,15,1945,1,RES1,3001 -0107_314_12.02,-74.49045995,39.33793284,613 CAMPE ST,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_314_7.01,-74.36271759,39.40972415,557 CINCINNATI AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_314_7.02,-74.59303373,39.371201,551 CINCINNATI AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_314_8.02,-74.51014084,39.44650701,539 CINCINNATI AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_314_9.02,-74.5270735,39.4690685,527 CINCINNATI AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_315_1.01,-74.60205341,39.38837777,400 PHILADELPHIA AVE,EGG HARBOR CITY,35,1930,1,RES1,3001 -0107_315_1.02,-74.48451103,39.34863374,400 PHILADELPHIA AVE,EGG HARBOR CITY,35,1930,1,RES1,3001 -0107_315_1.03,-74.65879157,39.53732166,400 PHILADELPHIA AVE,EGG HARBOR CITY,35,1930,1,RES1,3001 -0107_315_1.04,-74.56476043,39.35832421,400 PHILADELPHIA AVE,EGG HARBOR CITY,35,1930,1,RES1,3001 -0107_315_12,-74.70269201,39.58487483,450 PHILADELPHIA AVE,EGG HARBOR CITY,16,1905,1,RES1,3001 -0107_315_14,-74.9444485,39.4899805,452 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3004 -0107_315_15,-74.46661217,39.34715049,458 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,4,GOV1,3004 -0107_315_16,-74.7571815,39.43177,457 CINCINNATI AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_315_18,-74.51158098,39.33990316,449-451 CINCINNATI AVE,EGG HARBOR CITY,,0,1,GOV1,3004 -0107_315_19,-74.553247,39.3670405,445 CINCINNATI AVE,EGG HARBOR CITY,16,1940,1,GOV1,3004 -0107_315_2,-74.85621635,39.62175201,406 PHILADELPHIA AVE,EGG HARBOR CITY,16,1923,1,RES1,3001 -0107_315_20,-74.5273355,39.4495555,441 CINCINNATI AVE,EGG HARBOR CITY,16,1885,1,RES1,3001 -0107_315_21.02,-74.43741154,39.36569217,431 CINCINNATI AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_315_24,-74.78246922,39.44490495,425 CINCINNATI AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_315_26,-74.69661918,39.57637779,419 CINCINNATI AVE,EGG HARBOR CITY,16,1935,2,RES1,3001 -0107_315_27.02,-74.534112,39.387484,409 CINCINNATI AVE,EGG HARBOR CITY,16,1910,1,RES1,3001 -0107_315_29.01,-74.7502265,39.4515275,613 BUERGER ST,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_315_4,-74.571853,39.3734265,416-418 PHILADELPHIA AVE,EGG HARBOR CITY,45,1930,2,RES1,3001 -0107_315_5,-74.513759,39.323727,420 PHILADELPHIA AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_315_6,-74.36554477,39.40963412,422 PHILADELPHIA AVE,EGG HARBOR CITY,15,1900,1,RES1,3001 -0107_315_7,-74.9064025,39.4737925,426 PHILADELPHIA AVE,EGG HARBOR CITY,16,1889,1,RES1,3001 -0107_315_8,-74.7177419,39.58033102,428 PHILADELPHIA AVE,EGG HARBOR CITY,16,1915,1,RES1,3001 -0107_315_9,-74.46336326,39.46527196,432 PHILADELPHIA AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_316_1.01,-74.6013,39.318264,300 PHILADELPHIA AVE,EGG HARBOR CITY,,1922,1,RES1,3001 -0107_316_1.02,-74.56983336,39.36593494,312 PHILADELPHIA AVE,EGG HARBOR CITY,,1867,1,RES1,3001 -0107_316_10.01,-74.67898065,39.44722109,331 CINCINNATI AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_316_10.02,-74.5072435,39.330239,323 CINCINNATI AVE,EGG HARBOR CITY,,1968,1,RES1,3001 -0107_316_11.02,-74.82852668,39.40554749,311 CINCINNATI AVE,EGG HARBOR CITY,16,1912,1,RES1,3001 -0107_316_12.01,-74.60353073,39.31849582,305 CINCINNATI AVE,EGG HARBOR CITY,16,1955,1,GOV1,3004 -0107_316_12.02,-74.9453315,39.4982,613 BEETHOVEN ST,EGG HARBOR CITY,16,1920,1,GOV1,3004 -0107_316_3.01,-74.60937,39.3726415,324 PHILADELPHIA AVE,EGG HARBOR CITY,,1931,1,RES1,3001 -0107_316_3.02,-74.79855268,39.61820068,326 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_316_4.01,-74.50169244,39.44377915,332 PHILADELPHIA AVE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_316_4.02,-74.84312081,39.4152695,340 PHILADELPHIA AVE,EGG HARBOR CITY,,1925,1,RES1,3001 -0107_316_4.03,-74.6362135,39.368682,344 PHILADELPHIA AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_316_5.03,-74.78558107,39.6435629,350 PHILADELPHIA AVE,EGG HARBOR CITY,43,1950,1,RES1,3001 -0107_316_6.02,-74.77320096,39.63447271,354-358 PHILADELPHIA AVE,EGG HARBOR CITY,,1955,1,RES1,3001 -0107_316_7,-74.4469485,39.491953,341-353 CINCINNATI AVE,EGG HARBOR CITY,,1880,1,RES1,3001 -0107_316_9.01,-74.89043273,39.55866785,339 CINCINNATI AVE,EGG HARBOR CITY,16,1888,1,RES1,3001 -0107_316_9.02,-74.60522266,39.32674953,335 CINCINNATI AVE,EGG HARBOR CITY,16,1900,1,GOV1,3004 -0107_316_9.03,-74.91740983,39.5106049,332 6TH TERRACE,EGG HARBOR CITY,14,1900,1,RES1,3001 -0107_317_1.02,-74.93344076,39.52115831,202 PHILADELPHIA AVE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_317_10,-74.483268,39.344926,236 PHILADELPHIA AVE,EGG HARBOR CITY,,1880,1,RES1,3001 -0107_317_11,-74.51148233,39.33059802,244 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_317_12.02,-74.4910915,39.337198,246 PHILADELPHIA AVE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_317_13,-74.63608491,39.53182504,250 PHILADELPHIA AVE,EGG HARBOR CITY,43,1920,4,RES1,3001 -0107_317_15,-74.51349714,39.43855046,256-258 PHILADELPHIA AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_317_16.01,-74.903291,39.5032625,257 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_317_16.02,-74.5867655,39.493193,612 BEETHOVEN ST,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_317_17.02,-74.56671038,39.36293718,253 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_317_17.03,-74.50997801,39.53228967,256 6TH TERRACE,EGG HARBOR CITY,,1928,1,RES1,3001 -0107_317_19,-74.601267,39.3175835,243-245 CINCINNATI AVE,EGG HARBOR CITY,43,1920,1,RES1,3001 -0107_317_2.02,-74.66441431,39.36446319,204 PHILADELPHIA AVE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_317_24,-74.63060082,39.42867797,227 CINCINNATI AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_317_25,-74.53551676,39.39823668,223 CINCINNATI AVE,EGG HARBOR CITY,,1976,1,RES1,3001 -0107_317_26,-74.687793,39.630959,219 CINCINNATI AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_317_27.01,-74.5147135,39.4686235,217 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_317_27.02,-74.51380686,39.46252542,212 6TH TERRACE,EGG HARBOR CITY,,1970,1,RES1,3001 -0107_317_28.03,-74.60110651,39.41991179,213 CINCINNATI AVE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_317_3.02,-74.8589615,39.4350745,208 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_317_30,-74.5012755,39.4416045,201 CINCINNATI AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_317_4,-74.88863943,39.47260872,212 PHILADELPHIA AVE,EGG HARBOR CITY,,1928,1,RES1,3001 -0107_317_5,-74.63566181,39.42893253,218 PHILADELPHIA AVE,EGG HARBOR CITY,,1973,1,RES1,3001 -0107_317_6,-74.5051385,39.445793,220 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_317_7,-74.5880205,39.427968,224-226 PHILADELPHIA AVE,EGG HARBOR CITY,,1956,1,RES1,3001 -0107_317_8,-74.525702,39.5231815,228 PHILADELPHIA AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_318_1,-74.7999135,39.6386105,100 PHILADELPHIA AVE,EGG HARBOR CITY,,1997,1,RES1,3001 -0107_318_10,-74.53455907,39.31437568,127 CINCINNATI AVE,EGG HARBOR CITY,27,1900,1,RES1,3004 -0107_318_10.01,-74.62180353,39.4248462,129 CINCINNATI AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_318_11.01,-74.5527505,39.426927,117 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_318_11.02,-74.50899223,39.32934267,111 CINCINNATI AVE,EGG HARBOR CITY,43,1920,1,GOV1,3004 -0107_318_12,-74.40688356,39.3802513,613 WHITE HORSE PIKE,EGG HARBOR CITY,,1967,1,RES1,3001 -0107_318_2.01,-74.78414705,39.63670184,112 PHILADELPHIA AVE,EGG HARBOR CITY,,1880,1,RES1,3001 -0107_318_2.02,-74.84895865,39.55891646,114 PHILADELPHIA AVE,EGG HARBOR CITY,43,1920,3,RES1,3001 -0107_318_2.04,-74.50528535,39.43197353,122 PHILADELPHIA AVE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_318_3.02,-74.58869037,39.32061045,124 PHILADELPHIA AVE,EGG HARBOR CITY,,1945,1,RES1,3001 -0107_318_3.03,-74.86129768,39.48332722,126 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_318_3.04,-74.5993035,39.4350715,128-130 PHILADELPHIA AVE,EGG HARBOR CITY,,1880,1,RES1,3001 -0107_318_4.03,-74.71238416,39.46572745,134 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_318_4.04,-74.60609579,39.43487624,140 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_318_5.02,-74.46240917,39.35064349,142-144 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_318_5.03,-74.56431817,39.528901,146-148 PHILADELPHIA AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_318_6,-74.54999462,39.50729109,158 PHILADELPHIA AVE,EGG HARBOR CITY,,1975,1,RES1,3001 -0107_318_7.01,-74.8850445,39.5580365,157-159 CINCINNATI AVE,EGG HARBOR CITY,43,1920,1,RES1,3001 -0107_318_7.02,-74.65522607,39.4146721,153-155 CINCINNATI AVE,EGG HARBOR CITY,45,1920,2,RES1,3001 -0107_318_7.04,-74.491145,39.331745,155 6TH TERRACE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_318_7.05,-74.71368255,39.47325334,152 6TH TERRACE,EGG HARBOR CITY,,1930,2,RES1,3001 -0107_318_7.06,-74.53671799,39.30477833,154 6TH TERRACE,EGG HARBOR CITY,,1930,2,GOV1,3004 -0107_318_8.01,-74.90263792,39.50006883,148-150 6TH TERRACE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_318_8.02,-74.46535377,39.49737176,149 CINCINNATI AVE,EGG HARBOR CITY,43,1930,2,RES1,3001 -0107_318_8.03,-74.55123159,39.40119472,142 6TH TERRACE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_319_10,-74.62403406,39.4206588,44 PHILADELPHIA AVE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_319_11,-74.63072364,39.4135802,48 PHILADELPHIA AVE,EGG HARBOR CITY,15,1915,1,RES1,3001 -0107_319_12,-74.5310305,39.3843065,600 WHITE HORSE PIKE,EGG HARBOR CITY,,1972,1,RES1,3001 -0107_319_15.01,-74.42422194,39.37104287,614 WHITE HORSE PIKE,EGG HARBOR CITY,,1918,1,RES1,3001 -0107_319_15.02,-74.52081633,39.46895199,616 WHITE HORSE PIKE,EGG HARBOR CITY,,1940,1,RES1,3001 -0107_319_15.03,-74.523634,39.384937,624 WHITE HORSE PK,EGG HARBOR CITY,,1946,1,RES1,3001 -0107_319_19.01,-74.5700705,39.4271625,51 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_319_19.02,-74.62166426,39.37679163,50 6TH TERRACE,EGG HARBOR CITY,,1920,4,RES1,3001 -0107_319_5,-74.63864726,39.41158063,24 PHILADELPHIA AVE,EGG HARBOR CITY,,1928,1,RES1,3001 -0107_320_1,-74.50569719,39.33658306,700 WHITE HORSE PIKE,EGG HARBOR CITY,,1975,1,RES1,3001 -0107_321_1.01,-74.50513191,39.34026969,102 CINCINNATI AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_321_1.02,-74.78574273,39.66000918,709 WHITE HORSE PIKE,EGG HARBOR CITY,43,1940,2,RES1,3001 -0107_321_1.03,-74.5223695,39.318927,711 WHITE HORSE PIKE,EGG HARBOR CITY,,1938,1,RES1,3001 -0107_321_10,-74.8005275,39.622779,138 CINCINNATI AVE,EGG HARBOR CITY,16,2004,1,RES1,3001 -0107_321_11,-74.4899815,39.4274005,140 CINCINNATI AVE,EGG HARBOR CITY,,2017,1,RES1,3001 -0107_321_12,-74.62815486,39.37460245,144-146 CINCINNATI AVE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_321_13,-74.9491825,39.5171335,152 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_321_15,-74.64302939,39.60462446,158 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_321_16.01,-74.37261474,39.40322246,155-159 BUFFALO AVE,EGG HARBOR CITY,,1910,4,RES1,3001 -0107_321_16.02,-74.45904358,39.3466271,712 ARAGO ST,EGG HARBOR CITY,16,1850,1,RES1,3001 -0107_321_17.03,-74.55816877,39.46781139,153 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_321_18,-74.620456,39.3725555,151 BUFFALO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_321_19,-74.52570522,39.39391716,145 BUFFALO AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_321_20,-74.4147385,39.3680585,143 BUFFALO AVE,EGG HARBOR CITY,16,1935,1,RES1,3001 -0107_321_21.02,-74.60578076,39.4780614,139 BUFFALO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_321_22.02,-74.40767126,39.38063124,133 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_321_24,-74.89471726,39.48005996,127 BUFFALO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_321_25.02,-74.79230174,39.65460733,119 BUFFALO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_321_27,-74.607908,39.3260885,115 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_321_28.01,-74.4000795,39.38484533,110 7TH TERRACE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_321_28.02,-74.40688221,39.38302584,111 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_321_29.01,-74.49273882,39.34075886,723 WHITE HORSE PIKE,EGG HARBOR CITY,15,1920,2,RES1,3001 -0107_321_29.03,-74.95306652,39.51732739,713-715 WHITE HORSE PK,EGG HARBOR CITY,43,1935,4,RES1,3001 -0107_321_3.01,-74.51243592,39.3992493,110 CINCINNATI AVE,EGG HARBOR CITY,16,1921,1,RES1,3001 -0107_321_4.01,-74.7135385,39.3768705,114 CINCINNATI AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_321_4.02,-74.5026155,39.4471125,115 7TH TERRACE,EGG HARBOR CITY,43,1960,1,RES1,3001 -0107_321_5,-74.6261465,39.3561445,116 CINCINNATI AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_321_6,-74.50064557,39.49629572,120 CINCINNATI AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_321_7,-74.71716741,39.39214575,124 CINCINNATI AVE,EGG HARBOR CITY,16,1945,1,RES1,3001 -0107_321_9,-74.616709,39.431053,132-134 CINCINNATI AVE,EGG HARBOR CITY,43,1924,2,RES1,3001 -0107_322_1.01,-74.6349445,39.4201025,200-204 CINCINNATI AVE,EGG HARBOR CITY,43,1930,3,RES1,3001 -0107_322_1.03,-74.631164,39.4202255,208 CINCINNATI AVE,EGG HARBOR CITY,43,1930,1,RES1,3001 -0107_322_10.01,-74.78969824,39.65634981,227 BUFFALO AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_322_10.02,-74.69930344,39.50143417,223 BUFFALO AVE,EGG HARBOR CITY,,1867,1,RES1,3001 -0107_322_11.01,-74.41930021,39.36144275,221 BUFFALO AVE,EGG HARBOR CITY,33,1890,1,RES1,3001 -0107_322_11.02,-74.44864068,39.38160526,219 BUFFALO AVE,EGG HARBOR CITY,33,1890,1,RES1,3001 -0107_322_11.03,-74.7881944,39.64322615,217 BUFFALO AVE,EGG HARBOR CITY,33,1890,1,RES1,3001 -0107_322_11.04,-74.53597335,39.52449238,215 BUFFALO AVE,EGG HARBOR CITY,33,1890,1,RES1,3001 -0107_322_11.05,-74.52779132,39.38548849,213 BUFFALO AVE,EGG HARBOR CITY,33,1890,1,RES1,3001 -0107_322_11.06,-74.50485175,39.41106136,211 BUFFALO AVE,EGG HARBOR CITY,33,1890,1,RES1,3001 -0107_322_12.01,-74.50197874,39.43356063,205 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_322_12.02,-74.548377,39.3697235,201 BUFFALO AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_322_2.01,-74.64755332,39.40686996,212 CINCINNATI AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_322_2.02,-74.62905594,39.42082269,218 CINCINNATI AVE,EGG HARBOR CITY,16,1880,1,RES1,3001 -0107_322_2.03,-74.63046487,39.42459986,211 7TH TERRACE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_322_3.01,-74.5908685,39.430082,220-222 CINCINNATI AVE,EGG HARBOR CITY,,1978,1,RES1,3004 -0107_322_3.02,-74.63328047,39.45779158,228 CINCINNATI AVE,EGG HARBOR CITY,15,1916,1,RES1,3001 -0107_322_4,-74.93952791,39.48337964,238 CINCINNATI AVE,EGG HARBOR CITY,43,1940,1,RES1,3001 -0107_322_5.01,-74.51862417,39.4498535,244 CINCINNATI AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_322_5.02,-74.55947276,39.48906518,250 CINCINNATI AVE,EGG HARBOR CITY,16,1908,2,RES1,3001 -0107_322_6.02,-74.36087683,39.41026299,254 CINCINNATI AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_322_6.03,-74.48275633,39.43803005,258 CINCINNATI AVE,EGG HARBOR CITY,16,1920,2,RES1,3001 -0107_322_7.01,-74.4175655,39.3684775,259 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_322_7.02,-74.558132,39.5458355,253 BUFFALO AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_322_8.02,-74.5906655,39.4304885,249 BUFFALO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_322_9,-74.496797,39.3329375,235 BUFFALO AVE 1,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_323_1,-74.5263745,39.3135545,703 BEETHOVEN ST,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_323_10,-74.79364088,39.64473304,342 CINCINNATI AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_323_12,-74.4722555,39.438871,346 CINCINNATI AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_323_13,-74.363715,39.417141,350 CINCINNATI AVE,EGG HARBOR CITY,15,1925,1,RES1,3001 -0107_323_14,-74.642882,39.431368,352 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_323_15,-74.60035075,39.35347391,712 BUERGER ST,EGG HARBOR CITY,16,1922,1,RES1,3001 -0107_323_16.02,-74.55342163,39.38567538,714 BUERGER ST,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_323_18,-74.50004654,39.32977617,351 BUFFALO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_323_19,-74.5166255,39.3235755,349 BUFFALO AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_323_2,-74.7759525,39.6257095,306 CINCINNATI AVE,EGG HARBOR CITY,16,1905,1,RES1,3001 -0107_323_20.02,-74.60591771,39.50223782,337 BUFFALO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_323_23,-74.53055922,39.47101307,331 BUFFALO AVE,EGG HARBOR CITY,43,1920,4,RES1,3001 -0107_323_24,-74.45248168,39.35341448,327 BUFFALO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_323_26,-74.61313505,39.4213999,319 BUFFALO AVE,EGG HARBOR CITY,16,1895,1,RES1,3001 -0107_323_28,-74.69067113,39.47460745,309 BUFFALO AVE,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_323_29.02,-74.44113168,39.36932047,301 BUFFALO AVE,EGG HARBOR CITY,43,1920,4,RES1,3001 -0107_323_3.02,-74.88781769,39.51002366,314 CINCINNATI AVE,EGG HARBOR CITY,16,1902,2,RES1,3001 -0107_323_5,-74.7489655,39.446648,324 CINCINNATI AVE,EGG HARBOR CITY,16,1885,1,RES1,3001 -0107_323_9,-74.68812052,39.41848056,332-334 CINCINNATI AVE,EGG HARBOR CITY,43,1905,2,RES1,3004 -0107_324_1.01,-74.50792937,39.33551417,404 CINCINNATI AVE,EGG HARBOR CITY,15,1949,1,RES1,3001 -0107_324_1.02,-74.432479,39.3659545,410 CINCINNATI AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_324_10.01,-74.55743671,39.47068662,427 BUFFALO AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_324_10.02,-74.82078946,39.63603881,419 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_324_11.02,-74.81145143,39.65152121,415 BUFFALO AVE,EGG HARBOR CITY,16,1951,1,RES1,3001 -0107_324_12.01,-74.517867,39.463014,401 BUFFALO AVE,EGG HARBOR CITY,16,1910,1,RES1,3001 -0107_324_12.02,-74.6008055,39.3212095,713 BUERGER ST,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_324_2.02,-74.6404305,39.4362411,418 CINCINNATI AVE,EGG HARBOR CITY,16,1905,1,RES1,3001 -0107_324_3.03,-74.60787015,39.41901037,430 CINCINNATI AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_324_4.03,-74.53167321,39.38464435,440 CINCINNATI AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_324_5.03,-74.4979395,39.33797417,702 CAMPE ST,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_324_5.04,-74.61931598,39.43810184,708 CAMPE ST,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_324_5.05,-74.55774932,39.35861143,712 CAMPE ST,EGG HARBOR CITY,17,1930,4,RES1,3001 -0107_324_7.01,-74.60395344,39.39217629,716 CAMPE ST,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_324_7.03,-74.83750085,39.43102939,451 BUFFALO AVE,EGG HARBOR CITY,15,1930,1,RES1,3004 -0107_325_1.01,-74.58272631,39.40134448,703 CAMPE ST,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_325_1.02,-74.49806801,39.33811234,709 CAMPE ST,EGG HARBOR CITY,15,1949,1,RES1,3001 -0107_325_10,-74.845556,39.4249055,538 CINCINNATI AVE,EGG HARBOR CITY,16,1948,1,RES1,3001 -0107_325_11,-74.492537,39.338755,546 CINCINNATI AVE,EGG HARBOR CITY,,1927,1,RES1,3001 -0107_325_13.02,-74.7340515,39.4618835,550 CINCINNATI AVE,EGG HARBOR CITY,16,1945,1,RES1,3001 -0107_325_14.03,-74.5666771,39.37461996,558 CINCINNATI AVE,EGG HARBOR CITY,15,1953,1,RES1,3001 -0107_325_16,-74.60323405,39.32155675,557 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_325_19,-74.92696873,39.50760965,545 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,COM1,3004 -0107_325_21,-74.7551955,39.4312855,535 BUFFALO AVE,EGG HARBOR CITY,16,1981,1,RES1,3001 -0107_325_22.02,-74.48639625,39.42831561,531 BUFFALO AVE,EGG HARBOR CITY,15,1900,1,RES1,3001 -0107_325_25.01,-74.8826315,39.5930755,518 7TH TERRACE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_325_27,-74.81897115,39.54319169,511 BUFFALO AVE,EGG HARBOR CITY,15,1945,1,RES1,3001 -0107_325_28,-74.43601286,39.36767374,509 BUFFALO AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_325_3,-74.933911,39.520667,514 CINCINNATI AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_325_30.01,-74.52202897,39.31855667,501 BUFFALO AVE,EGG HARBOR CITY,15,1950,1,GOV1,3004 -0107_325_30.02,-74.5493325,39.3625245,713 CAMPE ST,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_325_5.02,-74.35960716,39.41178552,518 CINCINNATI AVE,EGG HARBOR CITY,16,1973,1,RES1,3001 -0107_325_8,-74.51670484,39.46629797,534 CINCINNATI AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_326_1.01,-74.57009899,39.36868315,600 CINCINNATI AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_326_1.02,-74.52286685,39.45351295,608-614 CINCINNATI AVE,EGG HARBOR CITY,,1994,1,RES1,3001 -0107_326_2.02,-74.52031516,39.44247858,618 CINCINNATI AVE,EGG HARBOR CITY,15,1945,1,RES1,3001 -0107_326_3.02,-74.48319558,39.43510827,624-648 CINCINNATI AVE,EGG HARBOR CITY,,1994,1,RES1,3001 -0107_326_6.02,-74.48103224,39.34000944,654 CINCINNATI AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_326_7,-74.44227302,39.36692168,601 BUFFALO AVE,EGG HARBOR CITY,,1955,1,RES1,3001 -0107_327_2,-74.5222645,39.3188215,702 CINCINNATI AVE,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_327_28,-74.872132,39.5945975,705 BUFFALO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_327_30,-74.56654997,39.34328455,701 BUFFALO AVE,EGG HARBOR CITY,43,1925,2,RES1,3001 -0107_327_8,-74.3742025,39.4198025,720 CINCINNATI AVE,EGG HARBOR CITY,15,1929,1,RES1,3001 -0107_328_10,-74.76779012,39.64623211,805 BUFFALO AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_330_1,-74.36327,39.4113855,1000-58 CINCINNATI AVE,EGG HARBOR CITY,,1972,1,RES1,3001 -0107_333.01_21,-74.8131774,39.62711223,721 MOSS MILL ROAD,EGG HARBOR CITY,16,1975,1,RES1,3004 -0107_337_24.02,-74.7110265,39.4715415,1721-1725 BUFFALO AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_337_25.02,-74.90254262,39.48054086,CINCINNATI AVE,EGG HARBOR CITY,,0,1,RES1,3002 -0107_352_5.02,-74.5377575,39.3846165,3218 CINCINNATI AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_354_28.02,-74.37474271,39.42001777,3401 BUFFALO AVE,EGG HARBOR CITY,15,1928,1,GOV1,3004 -0107_4.07_1,-74.58412209,39.33093046,400 HAMBURG AVE,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_4.07_13,-74.37650749,39.41397333,456 HAMBURG AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_4.07_16.01,-74.48693383,39.35163854,455 NEW YORK AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_4.07_23,-74.56164295,39.46942366,425 NEW YORK AVE,EGG HARBOR CITY,16,1958,1,RES1,3001 -0107_4.07_8,-74.9404685,39.5287995,436 HAMBURG AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_4_1,-74.549576,39.3840565,300 NEW YORK AVE,EGG HARBOR CITY,15,1904,1,RES1,3001 -0107_4_16,-74.59008216,39.42912398,357 NORFOLK AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_4_20,-74.86247969,39.48770463,339 NORFOLK AVE,EGG HARBOR CITY,16,1958,1,RES1,3001 -0107_4_26,-74.51751,39.395019,307 NORFOLK AVE,EGG HARBOR CITY,15,1935,1,RES1,3001 -0107_4_29,-74.3634895,39.40818,301 NORFOLK AVE,EGG HARBOR CITY,16,1972,1,RES1,3001 -0107_4_4,-74.64255781,39.32528824,320 NEW YORK AVE,EGG HARBOR CITY,16,1976,1,RES1,3001 -0107_417_1,-74.38159174,39.40005086,1700-1758 BUFFALO AVE,EGG HARBOR CITY,,0,1,RES3A,3001 -0107_417_7,-74.48411538,39.34420262,CHICAGO AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_418_1,-74.61328904,39.42145681,1600-1636 BUFFALO AVE,EGG HARBOR CITY,,0,1,GOV1,3004 -0107_418_10.02,-74.6353235,39.342292,1638-1658 BUFFALO AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_418_18.02,-74.812772,39.3546855,BUFFALO AVE,EGG HARBOR CITY,,0,1,RES3B,3001 -0107_420_26,-74.595891,39.314159,1401 CHICAGO AVE,EGG HARBOR CITY,16,1968,1,RES1,3001 -0107_421.01_2.02,-74.54731008,39.52673843,812 MOSS MILL ROAD,EGG HARBOR CITY,17,1976,1,RES1,3001 -0107_421.01_9.02,-74.591091,39.33601,814 MOSS MILL ROAD,EGG HARBOR CITY,17,1983,1,RES1,3001 -0107_421_4.02,-74.5219865,39.40197934,1338 BUFFALO AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_421_8,-74.95233856,39.51726956,1341 CHICAGO AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_424_1,-74.5218595,39.4448715,1001 CHICAGO AVE,EGG HARBOR CITY,,1970,1,RES1,3001 -0107_425_1,-74.460032,39.462774,900-958 BUFFALO AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_427_1,-74.5156825,39.4560585,702-58 BUFFALO AVE,EGG HARBOR CITY,,1980,1,RES1,3001 -0107_428_1,-74.83205933,39.62292999,602 BUFFALO AVE,EGG HARBOR CITY,16,1982,1,RES1,3001 -0107_428_22,-74.524573,39.3190735,625 CHICAGO AVE,EGG HARBOR CITY,16,1985,1,RES1,3001 -0107_428_26,-74.36428505,39.41370969,613 CHICAGO AVE,EGG HARBOR CITY,16,1962,1,RES1,3001 -0107_428_28,-74.52277067,39.44374,607 CHICAGO AVE,EGG HARBOR CITY,16,1949,1,GOV1,3004 -0107_428_3,-74.37774699,39.41329498,612 BUFFALO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_428_5,-74.63877903,39.36791071,616 BUFFALO AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_428_6.02,-74.50256783,39.33640899,628 BUFFALO AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_428_8,-74.63613266,39.51875349,630 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_429_1.01,-74.62179574,39.43428991,811 CAMPE ST,EGG HARBOR CITY,16,1961,1,RES1,3001 -0107_429_1.02,-74.485039,39.3493145,508 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_429_10.01,-74.513306,39.4428445,529 CHICAGO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_429_10.02,-74.52233444,39.39557514,521 CHICAGO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_429_11.02,-74.5962439,39.31805599,517 CHICAGO AVE,EGG HARBOR CITY,16,1951,1,RES1,3001 -0107_429_11.03,-74.7115055,39.412431,513 CHICAGO AVE,EGG HARBOR CITY,16,1913,1,RES1,3001 -0107_429_12,-74.4982105,39.327532,505 CHICAGO AVE 1,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_429_2.02,-74.723822,39.574991,512 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_429_2.03,-74.5356355,39.472522,520 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_429_3.02,-74.88863182,39.49843748,526 BUFFALO AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_429_4.01,-74.610865,39.4027455,534 BUFFALO AVE,EGG HARBOR CITY,16,1951,1,GOV1,3004 -0107_429_4.02,-74.521807,39.319484,540 BUFFALO AVE,EGG HARBOR CITY,16,1956,1,RES1,3001 -0107_429_5.02,-74.50985102,39.47938571,546 BUFFALO AVE,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_429_5.03,-74.8806745,39.5948865,552 BUFFALO AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_429_6.02,-74.637648,39.3998425,808 CLAUDIUS ST,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_429_7,-74.53596518,39.47487434,555 CHICAGO AVE,EGG HARBOR CITY,17,1950,1,RES1,3001 -0107_429_8.01,-74.8138225,39.526205,549 CHICAGO AVE,EGG HARBOR CITY,15,1946,1,GOV1,3004 -0107_429_8.02,-74.521786,39.3221605,541-543 CHICAGO AVE,EGG HARBOR CITY,16,1940,1,REL1,3004 -0107_429_9,-74.4592425,39.3491725,533 CHICAGO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_430_1,-74.54307132,39.39850995,400 BUFFALO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_430_10,-74.79607977,39.63368346,440 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,COM1,3004 -0107_430_11.02,-74.598155,39.43498749,444 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_430_13.02,-74.3747425,39.417519,450 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_430_15.01,-74.5742785,39.3500239,802 CAMPE ST,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_430_15.02,-74.40187674,39.39223233,812 CAMPE ST,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_430_16,-74.800209,39.6557725,459 CHICAGO AVE,EGG HARBOR CITY,16,1870,1,RES1,3001 -0107_430_18,-74.4933471,39.34237334,451 CHICAGO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_430_19,-74.97374658,39.50973125,443 CHICAGO AVE,EGG HARBOR CITY,16,1895,1,RES1,3001 -0107_430_2.02,-74.545831,39.471439,408 BUFFALO AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_430_21,-74.4547335,39.352912,437-439 CHICAGO AVE,EGG HARBOR CITY,16,2004,1,RES1,3001 -0107_430_22,-74.600348,39.314453,435 CHICAGO AVE,EGG HARBOR CITY,16,2006,1,RES1,3001 -0107_430_23.01,-74.58915684,39.34913745,429 CHICAGO AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_430_24,-74.54889468,39.47645528,427 CHICAGO AVE,EGG HARBOR CITY,16,1929,1,GOV1,3004 -0107_430_25,-74.43484968,39.36897045,423 CHICAGO AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_430_26,-74.80433417,39.6399455,419 CHICAGO AVE,EGG HARBOR CITY,15,1929,1,RES1,3001 -0107_430_27,-74.889912,39.5416715,415 CHICAGO AVE,EGG HARBOR CITY,16,1905,1,RES1,3001 -0107_430_28,-74.92725248,39.50996998,411 CHICAGO AVE,EGG HARBOR CITY,16,1905,1,RES1,3001 -0107_430_29,-74.49534195,39.32971583,403 CHICAGO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_430_5.02,-74.60230016,39.43283,420 BUFFALO AVE,EGG HARBOR CITY,16,1949,1,RES1,3001 -0107_430_7.02,-74.78870263,39.54807808,426 BUFFALO AVE,EGG HARBOR CITY,16,1956,1,RES1,3001 -0107_430_7.03,-74.50532008,39.32806816,427 8TH TERRACE,EGG HARBOR CITY,16,1950,2,RES1,3001 -0107_431_1,-74.642826,39.481229,300 BUFFALO AVE,EGG HARBOR CITY,16,1905,1,RES1,3001 -0107_431_10.01,-74.815802,39.6547315,325 CHICAGO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_431_10.02,-74.53357484,39.46783376,319 CHICAGO AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_431_10.03,-74.63541926,39.42852957,317 CHICAGO AVE,EGG HARBOR CITY,15,1927,1,RES1,3001 -0107_431_11.02,-74.462054,39.4543255,313 CHICAGO AVE,EGG HARBOR CITY,43,1925,2,RES1,3001 -0107_431_11.03,-74.638246,39.381204,311 CHICAGO AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_431_12.02,-74.4017555,39.3872535,823 BEETHOVEN ST,EGG HARBOR CITY,43,1900,3,RES1,3001 -0107_431_12.03,-74.50296248,39.43332421,813 BEETHOVEN ST,EGG HARBOR CITY,16,1927,1,GOV1,3004 -0107_431_2.01,-74.65749719,39.43263303,312 BUFFALO AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_431_2.02,-74.4988078,39.33092717,314 BUFFALO AVE,EGG HARBOR CITY,16,1928,1,RES1,3001 -0107_431_3.01,-74.53904631,39.31359534,318 BUFFALO AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_431_3.02,-74.805721,39.64389868,326 BUFFALO AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_431_3.03,-74.642877,39.342636,338 BUFFALO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_431_5,-74.39249116,39.39084952,344 BUFFALO AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_431_5.01,-74.64713416,39.48168769,348-350 BUFFALO AVE,EGG HARBOR CITY,43,1900,2,RES1,3001 -0107_431_6.02,-74.50137942,39.33116734,358 BUFFALO AVE,EGG HARBOR CITY,16,1892,1,RES1,3002 -0107_431_6.03,-74.57702444,39.42396535,351 8TH TERRACE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_431_6.04,-74.9469775,39.51655,812-814 BUERGER ST,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_431_7.01,-74.5749005,39.494436,357 CHICAGO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_431_7.02,-74.59876168,39.38415309,347 CHICAGO AVE,EGG HARBOR CITY,17,2003,1,RES1,3001 -0107_431_8,-74.51620099,39.45771317,345 CHICAGO AVENUE,EGG HARBOR CITY,17,2003,1,RES1,3001 -0107_431_9,-74.62230186,39.51348804,343 CHICAGO AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_432_1,-74.81996306,39.61547885,200 BUFFALO AVE,EGG HARBOR CITY,,1880,1,RES1,3001 -0107_432_10,-74.50113,39.3314045,238 BUFFALO AVE,EGG HARBOR CITY,16,1949,1,RES1,3001 -0107_432_12,-74.682699,39.4605345,250 BUFFALO AVE,EGG HARBOR CITY,16,1978,1,RES1,3001 -0107_432_14,-74.931173,39.5180805,252-258 BUFFALO AVE,EGG HARBOR CITY,43,1930,2,RES1,3001 -0107_432_16,-74.70282265,39.4235026,259 CHICAGO AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_432_17,-74.685984,39.4148235,253 CHICAGO AVE,EGG HARBOR CITY,43,1930,2,RES3A,3001 -0107_432_18.02,-74.522926,39.3864265,247 CHICAGO AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_432_20,-74.50989433,39.3231035,243 CHICAGO AVE,EGG HARBOR CITY,16,1890,1,RES1,3001 -0107_432_21,-74.9483865,39.5155535,239 CHICAGO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_432_22.02,-74.5082075,39.436408,233 CHICAGO AVE,EGG HARBOR CITY,,2017,1,RES1,3001 -0107_432_24,-74.70483655,39.63709582,229 CHICAGO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_432_25,-74.5035645,39.3286775,223 CHICAGO AVE 1,EGG HARBOR CITY,16,1915,1,RES1,3001 -0107_432_27,-74.59373287,39.51022863,215 CHICAGO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_432_28,-74.54872484,39.37516998,209 CHICAGO AVE,EGG HARBOR CITY,43,1960,1,RES1,3001 -0107_432_29.02,-74.82923862,39.49310121,201 CHICAGO AVE,EGG HARBOR CITY,43,1940,2,RES1,3001 -0107_432_3,-74.68628779,39.63172311,208 BUFFALO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_432_4,-74.509886,39.3293505,214 BUFFALO AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_432_5,-74.9131495,39.496335,224 BUFFALO AVE,EGG HARBOR CITY,,1870,1,RES1,3001 -0107_432_8,-74.6957405,39.6346255,228 BUFFALO AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_432_9,-74.54011309,39.46850477,232 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_433_10,-74.457888,39.3502833,127 CHICAGO AVE,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_433_11,-74.86678643,39.49186288,111-113 CHICAGO AVE,EGG HARBOR CITY,45,1922,1,RES1,3001 -0107_433_12,-74.77955059,39.6540096,827 WHITE HORSE PK,EGG HARBOR CITY,,1957,1,RES1,3001 -0107_433_2,-74.49762126,39.33302883,120 BUFFALO AVE,EGG HARBOR CITY,16,1950,1,IND2,3002 -0107_433_3,-74.52453433,39.3865285,124 BUFFALO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_433_4.01,-74.66216669,39.43294405,134 BUFFALO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_433_4.02,-74.5655265,39.360218,140 BUFFALO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_433_5.02,-74.56702268,39.36245002,148 BUFFALO AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_433_6.01,-74.63119611,39.55491223,154 BUFFALO AVE,EGG HARBOR CITY,43,1890,1,RES1,3001 -0107_433_6.02,-74.504844,39.4114785,156 BUFFALO AVE,EGG HARBOR CITY,43,1920,4,RES1,3001 -0107_433_7.01,-74.61016249,39.31067063,814 ARAGO ST,EGG HARBOR CITY,,1925,1,RES1,3001 -0107_433_7.03,-74.952432,39.519363,153 CHICAGO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_433_8.02,-74.50781797,39.32713336,145 CHICAGO AVE,EGG HARBOR CITY,16,1981,1,RES1,3001 -0107_433_9.01,-74.51574944,39.45229812,137 CHICAGO AVE,EGG HARBOR CITY,16,1880,2,RES1,3001 -0107_435_1.01,-74.61289618,39.31266836,924 WHITE HORSE PK,EGG HARBOR CITY,,1985,1,RES1,3001 -0107_435_2,-74.925477,39.4808455,901 ATLANTIC AVE,EGG HARBOR CITY,,1976,1,RES1,3001 -0107_435_4,-74.715089,39.4776905,800-814 WHITE HORSE PK,EGG HARBOR CITY,,1985,1,RES1,3001 -0107_436_1,-74.50272603,39.32850284,907 WHITE HORSE PK,EGG HARBOR CITY,,1985,1,RES1,3001 -0107_436_10.02,-74.88332301,39.46343669,136 CHICAGO AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_436_12,-74.77417667,39.34239444,144 CHICAGO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_436_14,-74.80388865,39.65788403,152 CHICAGO AVE,EGG HARBOR CITY,,1910,4,RES1,3001 -0107_436_16,-74.3895525,39.3936645,153 ST LOUIS AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_436_18,-74.49413167,39.331824,150 9TH TERRACE,EGG HARBOR CITY,15,1905,1,RES1,3001 -0107_436_19,-74.4878115,39.334218,145 ST LOUIS AVE .,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_436_20,-74.49566994,39.49498391,139-141 ST LOUIS AVE,EGG HARBOR CITY,16,1912,2,RES1,3001 -0107_436_21,-74.8388795,39.419007,137 ST LOUIS AVE,EGG HARBOR CITY,16,1915,1,RES1,3001 -0107_436_22,-74.48388106,39.47978401,133 ST LOUIS AVE,EGG HARBOR CITY,16,1915,1,RES3B,3001 -0107_436_23,-74.50233384,39.33047348,129 ST LOUIS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_436_24,-74.590401,39.431102,127 ST LOUIS AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_436_25,-74.5166495,39.407017,117 ST LOUIS AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_436_27,-74.60137036,39.37353029,115 ST LOUIS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_436_28,-74.51421895,39.45520016,105-111 ST LOUIS AVE,EGG HARBOR CITY,16,2000,1,RES1,3001 -0107_436_30,-74.549614,39.3848385,913-915 WHITE HORSE PK,EGG HARBOR CITY,16,1910,2,RES1,3001 -0107_436_4,-74.79255269,39.64193345,114 CHICAGO AVE,EGG HARBOR CITY,16,1902,1,RES1,3001 -0107_436_6,-74.60245873,39.31858338,119 9TH TERRACE,EGG HARBOR CITY,15,1890,1,RES2,3005 -0107_436_7,-74.483522,39.34518,126 CHICAGO AVE,EGG HARBOR CITY,16,1948,1,RES1,3001 -0107_436_8,-74.733105,39.453905,128 CHICAGO AVE,EGG HARBOR CITY,16,1948,1,RES1,3001 -0107_436_9,-74.483161,39.3447735,132 CHICAGO AVE,EGG HARBOR CITY,17,1996,1,RES1,3001 -0107_437_1.01,-74.74809393,39.4473468,200-202 CHICAGO AVE,EGG HARBOR CITY,43,1890,2,GOV1,3004 -0107_437_1.02,-74.87845907,39.59071389,208 CHICAGO AVE,EGG HARBOR CITY,,1939,1,RES1,3001 -0107_437_10.02,-74.68886923,39.44747005,223 ST LOUIS AVE,EGG HARBOR CITY,16,1918,1,RES1,3001 -0107_437_11.01,-74.55486278,39.47238993,217 ST LOUIS AVE,EGG HARBOR CITY,16,2004,1,RES1,3001 -0107_437_11.02,-74.4869495,39.3466735,213 ST LOUIS AVE,EGG HARBOR CITY,16,1990,1,RES1,3001 -0107_437_12.01,-74.49011943,39.33755483,207 ST LOUIS AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_437_12.02,-74.65356564,39.36694014,201 ST LOUIS AVE,EGG HARBOR CITY,16,1945,1,RES1,3001 -0107_437_2,-74.91340722,39.48123358,210 CHICAGO AVE,EGG HARBOR CITY,16,1908,1,RES1,3001 -0107_437_3.01,-74.4850515,39.346444,222 CHICAGO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_437_3.02,-74.9090425,39.4819335,228 CHICAGO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_437_4.02,-74.5677545,39.4120145,234 CHICAGO AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_437_4.04,-74.505782,39.4078875,240 CHICAGO AVE,EGG HARBOR CITY,16,1958,1,RES1,3001 -0107_437_5.02,-74.399076,39.3897355,248 CHICAGO AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_437_5.03,-74.583038,39.4218415,249 9TH TERRACE,EGG HARBOR CITY,16,1945,1,RES1,3001 -0107_437_6.01,-74.57687996,39.3515282,253 9TH TERRACE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_437_6.02,-74.592361,39.432282,258 CHICAGO AVE,EGG HARBOR CITY,16,1905,1,RES1,3001 -0107_437_7.01,-74.5766061,39.35726158,259 ST LOUIS AVE,EGG HARBOR CITY,16,1900,1,IND3,3002 -0107_437_7.03,-74.5805315,39.358061,243 ST LOUIS AVE,EGG HARBOR CITY,,1956,1,RES1,3001 -0107_437_9.03,-74.56921994,39.41220288,231 ST LOUIS AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_437_9.04,-74.59938049,39.41737413,227 ST LOUIS AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_438_1.01,-74.56526632,39.41831385,304 CHICAGO AVE,EGG HARBOR CITY,16,2002,1,RES1,3001 -0107_438_1.02,-74.654504,39.3568275,911 BEETHOVEN ST,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_438_10.02,-74.45375605,39.37535585,340 CHICAGO AVE,EGG HARBOR CITY,15,1944,1,RES1,3001 -0107_438_11.02,-74.63242258,39.43188781,344 CHICAGO AVE,EGG HARBOR CITY,16,1945,1,RES1,3001 -0107_438_13,-74.77885032,39.49862168,350 CHICAGO AVE,EGG HARBOR CITY,16,1910,1,RES1,3001 -0107_438_14,-74.54305833,39.38522199,354 CHICAGO AVE,EGG HARBOR CITY,15,1910,1,RES1,3001 -0107_438_15,-74.66028416,39.55098047,356-358 CHICAGO AVE,EGG HARBOR CITY,17,1900,1,RES1,3001 -0107_438_16,-74.4932754,39.34322211,359 ST LOUIS AVE,EGG HARBOR CITY,,1900,1,RES1,3001 -0107_438_17,-74.50066533,39.46287198,353 ST LOUIS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_438_18.02,-74.36940396,39.40607483,341 ST LOUIS AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_438_22,-74.46257117,39.34973894,337 ST LOUIS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_438_23,-74.48745616,39.33355333,333 ST LOUIS AVE,EGG HARBOR CITY,16,1951,1,RES1,3001 -0107_438_24,-74.49964926,39.33516217,325 ST LOUIS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_438_26,-74.51494608,39.43813378,315 ST LOUIS AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_438_27.02,-74.359303,39.4129905,311 ST LOUIS AVE,EGG HARBOR CITY,43,1940,2,RES1,3001 -0107_438_29,-74.6034115,39.325385,305 ST LOUIS AVE,EGG HARBOR CITY,16,2002,1,RES1,3001 -0107_438_3,-74.39215949,39.39064267,310 CHICAGO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_438_30.02,-74.47777223,39.34006426,915 BEETHOVEN ST,EGG HARBOR CITY,,1920,3,RES1,3001 -0107_438_4.02,-74.78921928,39.61393019,314 CHICAGO AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_438_5.02,-74.61205481,39.41359643,322 CHICAGO AVE,EGG HARBOR CITY,16,1905,1,RES1,3001 -0107_438_7,-74.787034,39.463352,326 CHICAGO AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_438_8.01,-74.9592115,39.5342075,328 CHICAGO AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_438_8.02,-74.50295966,39.44823298,329 9TH TERRACE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_438_9,-74.888365,39.474323,334 CHICAGO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_439_1.01,-74.878985,39.4770025,400 CHICAGO AVE,EGG HARBOR CITY,16,1935,1,RES1,3001 -0107_439_1.02,-74.599588,39.315197,406 CHICAGO AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_439_10.01,-74.81651127,39.53575264,427 ST LOUIS AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_439_10.02,-74.46436589,39.35630646,423 ST LOUIS AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_439_11.01,-74.42984935,39.36770733,417 ST LOUIS AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_439_11.02,-74.5790357,39.33303865,409 ST LOUIS AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_439_12.02,-74.81157378,39.64479935,403 ST LOUIS AVE,EGG HARBOR CITY,16,1894,1,RES1,3001 -0107_439_12.03,-74.4948575,39.45575,915 BUERGER ST,EGG HARBOR CITY,16,1962,1,RES1,3001 -0107_439_2.02,-74.5798005,39.33252,416 CHICAGO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_439_2.03,-74.61452067,39.42870661,418 CHICAGO AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_439_3.02,-74.37210882,39.40458022,430 CHICAGO AVE,EGG HARBOR CITY,16,1985,1,RES1,3001 -0107_439_4.02,-74.932468,39.525613,436 CHICAGO AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_439_6,-74.62734179,39.36139609,458 CHICAGO AVE,EGG HARBOR CITY,17,1922,1,RES1,3001 -0107_439_7.01,-74.60588735,39.48975944,457-459 ST LOUIS AVE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_439_7.02,-74.611454,39.4348035,451 ST LOUIS AVE,EGG HARBOR CITY,16,1900,1,GOV1,3004 -0107_439_8.01,-74.372404,39.4113795,449 ST LOUIS AVE,EGG HARBOR CITY,16,1902,1,RES1,3001 -0107_439_8.02,-74.59161897,39.34953335,439 ST LOUIS AVE,EGG HARBOR CITY,16,1896,1,RES1,3001 -0107_439_9.01,-74.599238,39.434388,435 ST LOUIS AVE 1,EGG HARBOR CITY,16,1900,1,GOV1,3004 -0107_439_9.02,-74.7337914,39.46148903,431 ST LOUIS AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_440_16,-74.40295871,39.39065889,525 ST LOUIS AVE,EGG HARBOR CITY,,1864,1,GOV1,3004 -0107_440_26,-74.71347079,39.46869671,515 ST LOUIS AVE,EGG HARBOR CITY,,1922,1,RES1,3001 -0107_440_6,-74.48951589,39.45915262,526 CHICAGO AVE,EGG HARBOR CITY,,1928,1,RES1,3001 -0107_441_1.01,-74.54342395,39.46695577,901 CLAUDIUS ST,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_441_1.02,-74.56886254,39.34733647,903 CLAUDIUS ST,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_441_1.03,-74.71634989,39.41111629,905 CLAUDIUS ST,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_441_10,-74.55678378,39.47759945,615 ST LOUIS AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_441_11.02,-74.7838095,39.6716985,611 ST LOUIS AVE,EGG HARBOR CITY,16,1950,1,GOV1,3004 -0107_441_12,-74.6417865,39.369794,601 ST LOUIS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_441_2.01,-74.51471312,39.32074538,608 CHICAGO AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_441_2.02,-74.50122533,39.49626874,614 CHICAGO AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_441_3.02,-74.60406192,39.41096842,618 CHICAGO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_441_3.03,-74.463663,39.348025,630 CHICAGO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_441_4.02,-74.80759147,39.63903084,644 CHICAGO AVE,EGG HARBOR CITY,,1960,1,RES1,3001 -0107_441_6,-74.52513317,39.42959929,650 CHICAGO AVE,EGG HARBOR CITY,16,1984,1,RES1,3001 -0107_441_7,-74.473461,39.339675,659 ST LOUIS AVE,EGG HARBOR CITY,16,1973,1,RES1,3001 -0107_441_8.01,-74.62657043,39.36316752,645 ST LOUIS AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_441_8.02,-74.78197419,39.67351109,637 ST LOUIS AVE,EGG HARBOR CITY,15,1960,1,RES1,3001 -0107_441_9.02,-74.79046847,39.66642932,635 ST LOUIS AVE,EGG HARBOR CITY,16,1960,1,RES1,3004 -0107_442_18.02,-74.5582336,39.41380017,733-49 ST LOUIS AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_442_24,-74.4952095,39.449843,725 ST LOUIS AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_442_26,-74.88951267,39.45645443,715 ST LOUIS AVE,EGG HARBOR CITY,16,1974,1,RES1,3001 -0107_442_28,-74.49042547,39.49527753,711 ST LOUIS AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_442_29.01,-74.5999425,39.319437,701 ST LOUIS AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_442_29.02,-74.628894,39.427642,911 DIESTERWEG ST,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_442_3,-74.55831168,39.36618491,708-738 CHICAGO AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_443_13,-74.60769032,39.32383615,901 DUERER ST,EGG HARBOR CITY,,1988,1,RES1,3001 -0107_445_2,-74.96228392,39.51290286,1010-1058 CHICAGO AVE,EGG HARBOR CITY,,1991,1,RES1,3001 -0107_448.01_13,-74.64697886,39.40477968,917 MOSS MILL RD,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_449_12,-74.80388719,39.64544568,1401 ST LOUIS AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_449_2,-74.62431472,39.36369342,1410-1416 CHICAGO AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_449_8.02,-74.96755834,39.52002851,1441 ST LOUIS AVE,EGG HARBOR CITY,15,1928,1,RES1,3001 -0107_450_1,-74.52286284,39.39605683,1500-1502 CHICAGO AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_49.17_1,-74.911791,39.5155315,4900 HAMBURG AVE,EGG HARBOR CITY,17,1979,1,RES1,3001 -0107_5.07_1.01,-74.55324931,39.39072533,502 HAMBURG AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_5.07_1.03,-74.808333,39.636298,55 CAMPE ST,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_5.07_18,-74.627194,39.3926215,551 NEW YORK AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_5.07_28,-74.59033255,39.32662454,95 CAMPE ST 1,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_5.07_7,-74.850654,39.4415925,530 HAMBURG AVE,EGG HARBOR CITY,15,1949,1,RES1,3001 -0107_5.07_8,-74.51724797,39.44355129,532 HAMBURG AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_51.07_1.01,-74.37153515,39.40701153,30-34 WHITE HORSE PIKE,EGG HARBOR CITY,,1940,1,RES1,3001 -0107_51.07_1.02,-74.560061,39.460277,2 WHITE HORSE PIKE,EGG HARBOR CITY,,1940,1,RES1,3001 -0107_516_1,-74.50868116,39.32706802,1000-1002 ST LOUIS AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_517_1,-74.72455899,39.432836,900-958 ST LOUIS AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_519_1,-74.53197382,39.38600494,700 ST LOUIS AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_519_2,-74.94306316,39.52955848,714 ST LOUIS AVE,EGG HARBOR CITY,16,1923,1,RES1,3001 -0107_52.07_1,-74.52374091,39.31460666,1602 WHITE HORSE PIKE,EGG HARBOR CITY,,1965,1,RES1,3001 -0107_520_1.01,-74.93527078,39.50426478,600 ST LOUIS AVE,EGG HARBOR CITY,16,1940,1,GOV1,3004 -0107_520_1.02,-74.483151,39.348561,1009 CLAUDIUS ST,EGG HARBOR CITY,16,1944,1,RES1,3001 -0107_520_10.02,-74.53659401,39.38640766,634 ST LOUIS AVE,EGG HARBOR CITY,16,1947,1,RES3A,3001 -0107_520_13,-74.4471495,39.3719115,646 ST LOUIS AVE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_520_14,-74.943968,39.530335,658 ST LOUIS AVE,EGG HARBOR CITY,16,1957,1,RES1,3001 -0107_520_21,-74.53076845,39.45724119,625 BOSTON AVE,EGG HARBOR CITY,16,1980,2,RES1,3001 -0107_520_25,-74.71427145,39.63918475,621 BOSTON AVE,EGG HARBOR CITY,16,1988,1,RES1,3001 -0107_520_26,-74.5708765,39.37094,605 BOSTON AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_520_29.01,-74.48970322,39.43863632,1027 CLAUDIUS ST,EGG HARBOR CITY,16,1915,1,RES1,3001 -0107_520_3,-74.490706,39.3326855,608 ST LOUIS AVE,EGG HARBOR CITY,17,1940,1,RES1,3001 -0107_520_4.02,-74.8419955,39.6349925,618 ST LOUIS AVE,EGG HARBOR CITY,16,1955,1,RES3A,3001 -0107_520_6.02,-74.81965116,39.4097368,624 ST LOUIS AVE,EGG HARBOR CITY,16,1940,1,COM1,3004 -0107_520_8.02,-74.64054677,39.43455671,630 ST LOUIS AVE,EGG HARBOR CITY,16,1956,1,RES3A,3001 -0107_521_1.01,-74.3875625,39.391549,500-502 ST LOUIS AVE,EGG HARBOR CITY,17,1875,1,RES1,3001 -0107_521_1.02,-74.37293261,39.39856018,516 ST LOUIS AVE,EGG HARBOR CITY,16,1957,1,RES1,3001 -0107_521_10,-74.76899022,39.30985614,529 BOSTON AVE,EGG HARBOR CITY,16,1928,1,RES1,3001 -0107_521_11.01,-74.5000355,39.53605,521 BOSTON AVE,EGG HARBOR CITY,16,1970,1,RES3A,3001 -0107_521_11.02,-74.50183878,39.33266367,509 BOSTON AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_521_12.02,-74.63542477,39.36170852,501 BOSTON AVE,EGG HARBOR CITY,16,1973,1,RES1,3001 -0107_521_2.02,-74.69360891,39.59448572,520 ST LOUIS AVE,EGG HARBOR CITY,16,1922,1,RES1,3001 -0107_521_3,-74.729907,39.45629717,526 ST LOUIS AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_521_4.01,-74.46752707,39.48948186,534 ST LOUIS AVE,EGG HARBOR CITY,14,1890,1,RES1,3001 -0107_521_4.02,-74.63604365,39.53400955,536 ST LOUIS AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_521_5.01,-74.48858718,39.33763969,540 ST LOUIS AVE,EGG HARBOR CITY,16,1895,1,RES1,3001 -0107_521_5.02,-74.87469139,39.59122977,544 ST LOUIS AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_521_6,-74.48833603,39.33277498,556 ST LOUIS AVE,EGG HARBOR CITY,16,1917,1,RES1,3001 -0107_521_7.01,-74.48376032,39.34936206,559 BOSTON AVE,EGG HARBOR CITY,16,1890,1,RES1,3001 -0107_521_7.02,-74.59724716,39.32001853,549 BOSTON AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_521_8.02,-74.37579491,39.40061979,539 BOSTON AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_522_1,-74.63636933,39.41901649,400 ST LOUIS AVE,EGG HARBOR CITY,,1925,1,GOV1,3004 -0107_522_10,-74.551704,39.479692,436 ST LOUIS AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_522_11,-74.59697838,39.37210718,440 ST LOUIS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_522_12,-74.551326,39.47347,444-448 ST LOUIS AVE,EGG HARBOR CITY,,1890,1,RES1,3001 -0107_522_16,-74.48191656,39.44013463,1014 CAMPE ST,EGG HARBOR CITY,45,1920,2,RES3A,3001 -0107_522_17,-74.7518515,39.450599,453 BOSTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_522_18.02,-74.6489065,39.529996,441 BOSTON AVE,EGG HARBOR CITY,16,1974,1,RES1,3001 -0107_522_2,-74.43339648,39.36486134,410 ST LOUIS AVE,EGG HARBOR CITY,17,1940,2,RES1,3001 -0107_522_21,-74.52687733,39.452833,439 BOSTON AVE,EGG HARBOR CITY,16,1925,1,GOV1,3004 -0107_522_22,-74.53992496,39.39025469,433 BOSTON AVE,EGG HARBOR CITY,16,1957,1,COM1,3004 -0107_522_24,-74.8187555,39.654368,429 BOSTON AVE,EGG HARBOR CITY,16,1951,1,RES1,3001 -0107_522_27,-74.93141323,39.48856821,417 BOSTON AVE,EGG HARBOR CITY,16,1950,1,RES3A,3001 -0107_522_28,-74.65243545,39.41021019,409 BOSTON AVE,EGG HARBOR CITY,16,1910,1,RES3B,3001 -0107_522_4,-74.53695055,39.38263784,414 ST LOUIS AVE,EGG HARBOR CITY,13,1865,1,RES1,3001 -0107_522_5,-74.635143,39.3645425,416 ST LOUIS AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_522_6.02,-74.53343026,39.38653631,422 ST LOUIS AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_522_7.02,-74.3654075,39.4077155,431 10TH TERRACE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_522_9,-74.5043185,39.3328875,434 ST LOUIS AVE,EGG HARBOR CITY,16,1940,1,RES3A,3004 -0107_523_1.01,-74.56968765,39.37054756,300 ST LOUIS AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_523_1.02,-74.625268,39.4388425,310 ST LOUIS AVE 1,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_523_10,-74.71044671,39.43246916,321 BOSTON AVE,EGG HARBOR CITY,16,1920,1,RES3B,3001 -0107_523_11,-74.522024,39.3227935,315 BOSTON AVE,EGG HARBOR CITY,17,1980,1,RES1,3001 -0107_523_12,-74.59202266,39.34818656,301 BOSTON AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_523_2.02,-74.8814925,39.595055,314 ST LOUIS AVE,EGG HARBOR CITY,16,1972,1,RES1,3001 -0107_523_2.03,-74.62927366,39.39192345,318 ST LOUIS AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_523_3.02,-74.60687708,39.43891617,324 ST LOUIS AVE,EGG HARBOR CITY,16,1910,1,RES1,3001 -0107_523_3.03,-74.5800915,39.3758245,332-334 ST LOUIS AVE,EGG HARBOR CITY,43,1910,2,RES1,3001 -0107_523_5.01,-74.7202416,39.57599727,344 ST LOUIS AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_523_5.02,-74.940005,39.539389,354 ST LOUIS AVE,EGG HARBOR CITY,,1940,2,RES1,3001 -0107_523_6.02,-74.55809332,39.47693422,358 ST LOUIS AVE,EGG HARBOR CITY,,1940,1,RES1,3001 -0107_523_7,-74.482525,39.3406945,355 BOSTON AVE 1,EGG HARBOR CITY,43,1920,1,RES1,3001 -0107_523_8.01,-74.38172882,39.41845006,347 BOSTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3004 -0107_523_8.03,-74.6244615,39.5133735,335 BOSTON AVE,EGG HARBOR CITY,,1950,1,RES1,3001 -0107_523_9.02,-74.56595501,39.37072067,328 10TH TERRACE,EGG HARBOR CITY,45,1940,2,RES1,3001 -0107_524_1,-74.71994425,39.64036458,200-202 ST LOUIS AVE,EGG HARBOR CITY,16,1930,2,RES1,3001 -0107_524_10,-74.48756543,39.33820616,236 ST LOUIS AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_524_13,-74.531304,39.3851325,250 ST LOUIS AVE,EGG HARBOR CITY,16,1945,1,RES1,3001 -0107_524_14,-74.44073161,39.48771687,258 ST LOUIS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_524_16,-74.937129,39.539993,249 BOSTON AVE,EGG HARBOR CITY,,1857,1,GOV1,3004 -0107_524_21,-74.56404687,39.52139347,235 BOSTON AVE,EGG HARBOR CITY,,1938,1,RES1,3001 -0107_524_27,-74.62268744,39.42419426,215 BOSTON AVE,EGG HARBOR CITY,16,1910,1,RES1,3001 -0107_524_29,-74.81040333,39.6351483,1017 ARAGO ST,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_524_3,-74.47239931,39.44596731,208 ST LOUIS AVE,EGG HARBOR CITY,45,1977,2,RES1,3001 -0107_524_4,-74.5993945,39.380704,214 ST LOUIS AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_524_5,-74.8045165,39.43341,218 ST LOUIS AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_524_7,-74.37589815,39.41320968,226 ST LOUIS AVE,EGG HARBOR CITY,16,1956,1,RES1,3001 -0107_524_9,-74.57512826,39.52337245,232 ST LOUIS AVE,EGG HARBOR CITY,15,1933,1,RES1,3001 -0107_525_1.01,-74.4222605,39.3674465,102 ST LOUIS AVE,EGG HARBOR CITY,43,1910,3,RES1,3001 -0107_525_1.02,-74.56296008,39.47694668,1017 WHITE HORSE PIKE,EGG HARBOR CITY,,1921,1,RES1,3001 -0107_525_10.02,-74.60111182,39.49874705,117 BOSTON AVE,EGG HARBOR CITY,16,1929,1,RES1,3001 -0107_525_11.03,-74.55803282,39.39822701,107 BOSTON AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_525_12.02,-74.48143167,39.33600348,105 BOSTON AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_525_12.03,-74.64037076,39.37053088,1019 WHITE HORSE PIKE,EGG HARBOR CITY,,1926,1,RES1,3001 -0107_525_2,-74.375409,39.4137735,118 ST LOUIS AVE,EGG HARBOR CITY,43,1914,2,RES1,3001 -0107_525_3,-74.35604354,39.41380666,126 ST LOUIS AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_525_4.01,-74.380858,39.4149625,136 ST LOUIS AVE,EGG HARBOR CITY,16,1907,1,RES1,3001 -0107_525_4.02,-74.923594,39.509028,144 ST LOUIS AVE,EGG HARBOR CITY,16,1885,1,RES1,3001 -0107_525_4.03,-74.51373133,39.441234,135 10TH TERRACE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_525_5.02,-74.50575126,39.44681184,137 10TH TERRACE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_525_6,-74.50740611,39.33425208,156-158 ST LOUIS AVE,EGG HARBOR CITY,43,1930,2,RES1,3001 -0107_525_7.01,-74.61448176,39.48712364,159 BOSTON AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_525_7.02,-74.5981835,39.3117875,151 BOSTON AVE,EGG HARBOR CITY,16,1949,1,RES1,3001 -0107_525_8.02,-74.44268744,39.48608516,141 BOSTON AVE,EGG HARBOR CITY,16,1961,1,RES1,3001 -0107_525_9.01,-74.61035692,39.43407565,137 BOSTON AVE,EGG HARBOR CITY,16,1963,1,RES1,3001 -0107_525_9.02,-74.88061503,39.48433822,127 BOSTON AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_526_1,-74.51765863,39.45652256,1013 ATLANTIC AVE,EGG HARBOR CITY,43,1920,2,RES1,3001 -0107_526_11,-74.49249738,39.34037714,1006 WHITE HORSE PIKE,EGG HARBOR CITY,,1996,1,RES1,3001 -0107_526_2,-74.60443424,39.38289885,23 BOSTON AVENUE,EGG HARBOR CITY,16,2002,1,RES1,3001 -0107_526_20,-74.37956181,39.41578207,40 10TH TERRACE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_526_22,-74.59774882,39.40941793,47 BOSTON AVE,EGG HARBOR CITY,,1946,1,RES1,3001 -0107_526_24,-74.62129747,39.38295308,31 BOSTON AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_526_4.01,-74.9450715,39.5265725,2 ST LOUIS AVE,EGG HARBOR CITY,16,1998,1,RES1,3001 -0107_526_4.02,-74.89021252,39.50364138,10 ST LOUIS AVE 1,EGG HARBOR CITY,16,2003,1,RES1,3001 -0107_526_7,-74.71939438,39.64042919,18 ST LOUIS AVE,EGG HARBOR CITY,16,2000,1,RES1,3002 -0107_526_9,-74.53963132,39.53252839,26 ST LOUIS AVE,EGG HARBOR CITY,16,1996,1,RES1,3001 -0107_527_1,-74.53816885,39.37507604,1123 ATLANTIC AVE,EGG HARBOR CITY,,1956,1,RES1,3001 -0107_527_13.02,-74.7944925,39.6337755,48 BOSTON AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_527_15.01,-74.48238149,39.35295216,50 BOSTON AVE,EGG HARBOR CITY,16,1940,1,RES3A,3001 -0107_527_15.02,-74.93658906,39.5216367,1106 WHITE HORSE PIKE,EGG HARBOR CITY,,1915,1,RES1,3001 -0107_527_16.03,-74.5856665,39.3236405,1112 WHITE HORSE PIKE,EGG HARBOR CITY,15,1940,1,GOV1,3004 -0107_527_18.01,-74.95139808,39.51213861,1120 WHITE HORSE PIKE,EGG HARBOR CITY,,1979,1,RES1,3001 -0107_527_18.02,-74.49181415,39.33587117,1114 WHITE HORSE PIKE,EGG HARBOR CITY,,1945,1,RES1,3001 -0107_527_4,-74.575967,39.410633,11 11TH TERRACE,EGG HARBOR CITY,,1946,1,RES1,3001 -0107_527_9,-74.7141782,39.47161103,40 BOSTON AVE,EGG HARBOR CITY,,1962,1,RES1,3001 -0107_528_11,-74.46197915,39.35925402,140 BOSTON AVE,EGG HARBOR CITY,16,1956,1,RES1,3001 -0107_528_12.02,-74.38379467,39.39726098,156 BOSTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_528_14,-74.62784676,39.43777746,158 BOSTON AVE,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_528_28.02,-74.75722183,39.63544101,1113 WHITE HORSE PIKE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_528_3.01,-74.631374,39.44605,108 BOSTON AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_528_5,-74.68333985,39.49417557,116 BOSTON AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_528_7,-74.4927707,39.49574205,128 BOSTON AVE,EGG HARBOR CITY,16,1954,1,GOV1,3004 -0107_528_9,-74.808958,39.6483425,136 BOSTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_529_1.01,-74.7729965,39.4920955,200 BOSTON AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_529_1.02,-74.38417904,39.39762049,208 BOSTON AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_529_10,-74.52549756,39.31313885,219 HAVANA AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_529_11,-74.4973615,39.448308,215 HAVANA AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_529_12,-74.58508534,39.32386491,201 HAVANA AVE,EGG HARBOR CITY,16,1957,1,RES1,3001 -0107_529_2,-74.45850735,39.35078998,212 BOSTON AVE,EGG HARBOR CITY,16,1953,1,RES1,3001 -0107_529_3.01,-74.57588342,39.53364251,224 BOSTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_529_3.02,-74.59800684,39.32943397,228 BOSTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_529_4.02,-74.47568462,39.34032967,236 BOSTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_529_5.01,-74.948371,39.514548,244 BOSTON AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_529_5.02,-74.4905155,39.3805995,248 BOSTON AVE,EGG HARBOR CITY,15,1900,1,RES1,3001 -0107_529_6.01,-74.49936633,39.43356565,250 BOSTON AVE,EGG HARBOR CITY,17,1991,1,COM1,3004 -0107_529_6.02,-74.58223713,39.3426345,1102 BEETHOVEN ST,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_529_7,-74.68553198,39.47913263,251 HAVANA AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_529_8.02,-74.57044996,39.49652366,225 HAVANA AVE,EGG HARBOR CITY,16,1964,1,RES3A,3001 -0107_529_9.02,-74.452577,39.3531015,223 HAVANA AVE,EGG HARBOR CITY,16,1963,1,RES3A,3001 -0107_53.07_1.03,-74.398993,39.386933,1613 WHITE HORSE PIKE,EGG HARBOR CITY,,1969,1,RES1,3001 -0107_53.07_28.01,-74.7342465,39.437824,1659 WHITE HORSE PIKE,EGG HARBOR CITY,,1967,1,RES3A,3001 -0107_53.17_10,-74.50864,39.4377435,154 BALTIMORE AVE,EGG HARBOR CITY,16,1964,1,RES3A,3001 -0107_53.17_11,-74.51652417,39.41552201,158 BALTIMORE AVE,EGG HARBOR CITY,16,1960,1,RES3A,3001 -0107_53.17_6,-74.940668,39.5183065,140 BALTIMORE AVE,EGG HARBOR CITY,16,1964,1,RES1,3001 -0107_53.17_7,-74.81315321,39.65595931,142 BALTIMORE AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_53.17_8,-74.361902,39.41806233,146 BALTIMORE AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_53.17_9,-74.50529773,39.48035557,150 BALTIMORE AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_530_1,-74.602325,39.500798,300 BOSTON AVE,EGG HARBOR CITY,16,1985,1,RES1,3001 -0107_530_10,-74.47220909,39.34230917,340 BOSTON AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_530_12,-74.408255,39.391728,350 BOSTON AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_530_14.02,-74.72508546,39.45599388,357 11TH TERRACE,EGG HARBOR CITY,16,1950,1,RES1,3004 -0107_530_16,-74.62819132,39.38047852,1126 BUERGER ST,EGG HARBOR CITY,16,1956,1,RES1,3004 -0107_530_17.02,-74.83520115,39.40762701,345 HAVANA AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_530_20,-74.4912242,39.33360038,339 HAVANA AVE,EGG HARBOR CITY,15,1935,1,RES1,3001 -0107_530_22,-74.883053,39.4541855,331 HAVANA AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_530_25,-74.6566295,39.400135,317 HAVANA AVE,EGG HARBOR CITY,16,1992,1,RES1,3001 -0107_530_27,-74.510774,39.329303,311 HAVANA AVE,EGG HARBOR CITY,16,1902,1,RES1,3001 -0107_530_3,-74.47558867,39.34111292,314 BOSTON AVE,EGG HARBOR CITY,16,1982,2,RES3B,3001 -0107_530_5,-74.5198165,39.3204475,318 BOSTON AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_530_6.02,-74.60372086,39.32980217,324 BOSTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_530_7.02,-74.38210977,39.39791317,332 BOSTON AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_531_1,-74.58878625,39.37648833,412 BOSTON AVE,EGG HARBOR CITY,,1928,1,RES1,3001 -0107_531_10,-74.714824,39.5820275,423 HAVANA AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_531_11.02,-74.64003824,39.36778084,407 HAVANA AVE,EGG HARBOR CITY,,1923,1,RES1,3001 -0107_531_2.02,-74.82056332,39.39164102,414 BOSTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_531_2.03,-74.7098305,39.5816025,418 BOSTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_531_3.01,-74.55889915,39.35777799,424 BOSTON AVE,EGG HARBOR CITY,15,1928,1,RES1,3001 -0107_531_4,-74.544004,39.4767515,434 BOSTON AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_531_5.01,-74.82419966,39.54009533,440 BOSTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_531_5.02,-74.4885405,39.3344815,450 BOSTON AVE,EGG HARBOR CITY,16,1979,1,RES1,3002 -0107_531_6.02,-74.4462325,39.374612,456-458 BOSTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_531_7,-74.40251333,39.38691082,457 HAVANA AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_531_8,-74.62932792,39.42977619,447 HAVANA AVE,EGG HARBOR CITY,16,1920,2,RES1,3001 -0107_531_9,-74.49683283,39.334528,437 HAVANA AVE,EGG HARBOR CITY,15,1900,1,RES1,3001 -0107_532_1,-74.51630232,39.45144555,502 BOSTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_532_2.02,-74.94430848,39.52536082,510 BOSTON AVE,EGG HARBOR CITY,15,1915,1,RES1,3001 -0107_532_27,-74.95367115,39.5414796,509 HAVANA AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_532_4,-74.711679,39.438981,514 BOSTON AVE,EGG HARBOR CITY,16,1974,1,RES1,3001 -0107_532_6,-74.81787255,39.37787326,520 BOSTON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_532_7,-74.483351,39.339851,524 BOSTON AVE,EGG HARBOR CITY,16,1978,1,RES1,3001 -0107_533_10,-74.43361461,39.36721395,625 HAVANA AVE,EGG HARBOR CITY,16,1950,1,RES1,3002 -0107_533_11,-74.82003608,39.65617026,611 HAVANA AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_534_11,-74.370878,39.417781,1100 DUERER ST,EGG HARBOR CITY,,1954,1,RES1,3001 -0107_534_20,-74.79045465,39.41751945,737 HAVANA AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_534_21.02,-74.49994385,39.33417298,735 HAVANA AVE,EGG HARBOR CITY,15,1952,1,GOV1,3004 -0107_534_23,-74.75118698,39.45076418,747 HAVANA AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_534_27,-74.60045355,39.4190138,743 HAVANA AVE,EGG HARBOR CITY,15,1850,1,RES1,3004 -0107_534_4,-74.54143133,39.39352198,720 BOSTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_535_1,-74.62200023,39.43434965,1101 DUERER ST,EGG HARBOR CITY,15,1910,1,RES1,3001 -0107_539_7,-74.83259122,39.61292651,1251-1259 HAVANA AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_54.07_12,-74.526511,39.389579,258 BALTIMORE AVE,EGG HARBOR CITY,16,1956,1,RES1,3001 -0107_54.07_16,-74.577215,39.411832,259 BREMEN AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_55.07_1.01,-74.5790925,39.4120085,1603 BEETHOVEN ST,EGG HARBOR CITY,15,1950,1,GOV1,3004 -0107_55.07_14,-74.53771605,39.40513873,352 BALTIMORE AVE,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_55.07_16.01,-74.606112,39.4132885,1650 BUERGER ST,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_55.07_16.02,-74.58164924,39.41367689,359 BREMEN AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_55.07_28,-74.83891071,39.48979346,1615 BEETHOVEN ST,EGG HARBOR CITY,,1980,1,RES1,3001 -0107_56.07_1,-74.50951749,39.33653225,400 BALTIMORE AVE,EGG HARBOR CITY,16,1950,1,GOV1,3004 -0107_56.07_27,-74.9409285,39.5223705,407 BREMEN AVE,EGG HARBOR CITY,15,1890,1,AGR1,3001 -0107_57.07_16,-74.365063,39.420947,555 BREMEN AVE,EGG HARBOR CITY,16,1978,1,RES1,3001 -0107_58.07_11,-74.565209,39.5428275,640 BALTIMORE AVENUE,EGG HARBOR CITY,16,2005,1,AGR1,3001 -0107_58.07_14,-74.6360645,39.4113825,658 BALTIMORE AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_58.07_19,-74.358572,39.413868,647 BREMEN AVE,EGG HARBOR CITY,16,2005,1,RES1,3001 -0107_58.07_21,-74.62302775,39.42391359,639 BREMEN AVE,EGG HARBOR CITY,17,2005,1,RES1,3001 -0107_58.07_23,-74.93201367,39.5261175,623 BREMEN AVE,EGG HARBOR CITY,15,1934,1,RES1,3001 -0107_58.07_5,-74.58575949,39.48605266,624 BALTIMORE AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_58.07_7,-74.63480632,39.34278251,628 BALTIMORE AVE,EGG HARBOR CITY,15,1925,1,RES1,3001 -0107_58.07_9,-74.62302839,39.42352718,632-638 BALTIMORE AVE,EGG HARBOR CITY,16,2005,1,RES3A,3001 -0107_59.07_1,-74.809502,39.373371,704 BALTIMORE AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_59.07_11,-74.87506201,39.48582484,748 BALTIMORE AVE,EGG HARBOR CITY,16,2004,1,GOV1,3004 -0107_59.07_13.01,-74.36384908,39.40808718,756 BALTIMORE AVE,EGG HARBOR CITY,16,1930,1,GOV1,3004 -0107_59.07_18,-74.46346017,39.34825365,747 BREMEN AVE,EGG HARBOR CITY,16,1976,1,RES1,3001 -0107_59.07_20,-74.501574,39.3328715,739 BREMEN AVE,EGG HARBOR CITY,16,1976,1,RES1,3002 -0107_59.07_22,-74.487093,39.3385015,711 BREMEN AVE,EGG HARBOR CITY,16,1976,1,RES1,3001 -0107_59.07_24,-74.476886,39.3378675,709 BREMEN AVE,EGG HARBOR CITY,16,1978,1,RES1,3001 -0107_59.07_26,-74.46716416,39.34510951,707 BREMEN AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_59.07_29.01,-74.93885582,39.52422356,701 BREMEN AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_59.07_29.02,-74.497402,39.4455645,1625 DIESTERWEG ST,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_59.07_3,-74.50003359,39.42517319,708 BALTIMORE AVENUE,EGG HARBOR CITY,16,2004,1,RES1,3001 -0107_59.07_5,-74.42512575,39.3712331,818 BALTIMORE AVE,EGG HARBOR CITY,16,2004,1,GOV1,3004 -0107_59.07_7,-74.86903813,39.44279015,728 BALTIMORE AVE,EGG HARBOR CITY,16,2004,1,RES1,3001 -0107_59.07_9,-74.72610592,39.45622469,738 BALTIMORE AVE,EGG HARBOR CITY,16,2004,1,GOV1,3004 -0107_6_1,-74.51387406,39.48694869,504 NEW YORK AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_6_13,-74.74522629,39.44651082,550 NEW YORK AVE,EGG HARBOR CITY,17,1985,1,RES1,3002 -0107_6_16,-74.81538749,39.65339068,124 CLAUDIUS ST,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_6_19,-74.6950905,39.479584,543 NORFOLK AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_6_5,-74.4769453,39.44357966,518 NEW YORK AVE,EGG HARBOR CITY,16,1973,1,RES1,3001 -0107_6_9,-74.624573,39.4891215,540 NEW YORK AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_60.07_1,-74.569559,39.347896,1601 DUERER ST,EGG HARBOR CITY,,1981,1,RES1,3001 -0107_60.07_16,-74.36978784,39.40572257,801 BREMEN AVE,EGG HARBOR CITY,,1977,1,RES1,3001 -0107_613_1,-74.36640253,39.41560916,700-758 HAVANA AVE,EGG HARBOR CITY,,2011,1,RES1,3001 -0107_614_21,-74.85316949,39.48423467,629 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_614_24,-74.36306917,39.41090401,619 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_614_26,-74.512729,39.324472,615 SAN FRANCISCO AVE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_614_29,-74.50018065,39.33265963,601 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_615_7,-74.53644255,39.45763279,559 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_616_1,-74.8371077,39.38396247,400 HAVANA AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_616_10,-74.3954037,39.38773176,442 HAVANA AVE,EGG HARBOR CITY,16,1928,1,RES1,3001 -0107_616_14,-74.94615197,39.53952994,452 HAVANA AVE,EGG HARBOR CITY,15,1945,1,RES1,3001 -0107_616_16,-74.37354756,39.40053368,459 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1964,1,RES1,3001 -0107_616_18,-74.755376,39.302007,445 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_616_20,-74.57146166,39.44621518,437 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_616_24,-74.8085755,39.3121425,425 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_616_26,-74.39586154,39.3883546,415 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_616_28,-74.8027545,39.6436275,1227 BUERGER ST,EGG HARBOR CITY,16,1890,1,RES1,3001 -0107_616_3,-74.38762464,39.39361743,406 HAVANA AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_616_4.02,-74.79479345,39.64621788,408 HAVANA AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_616_6,-74.4609515,39.348342,412 HAVANA AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_616_7,-74.65097128,39.53516825,430 HAVANA AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_617_1,-74.543821,39.436465,300 HAVANA AVE,EGG HARBOR CITY,16,1963,1,RES1,3001 -0107_617_10,-74.59854454,39.32071514,325 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1958,1,RES1,3001 -0107_617_11,-74.501306,39.408017,315 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1962,1,RES1,3001 -0107_617_12,-74.75560283,39.45321442,301 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1974,1,RES1,3001 -0107_617_2.02,-74.5704015,39.441594,312 HAVANA AVE,EGG HARBOR CITY,15,1930,1,GOV1,3004 -0107_617_2.03,-74.372592,39.4009575,314 HAVANA AVE,EGG HARBOR CITY,15,1929,1,RES1,3001 -0107_617_3.02,-74.47427707,39.49217101,318 HAVANA AVE,EGG HARBOR CITY,16,1958,1,RES3A,3001 -0107_617_4,-74.50763953,39.45256116,334 HAVANA AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_617_5.01,-74.53079323,39.44692151,342 HAVANA AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_617_5.02,-74.49262091,39.52724869,348 HAVANA AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_617_6.02,-74.486236,39.470206,358 HAVANA AVE,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_617_7,-74.5559259,39.47252995,357 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_617_8,-74.45125868,39.37224504,345 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_617_9,-74.372613,39.42086,333 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_618_1,-74.59114242,39.38153972,200 HAVANA AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_618_14,-74.37424402,39.40963505,252 HAVANA AVE,EGG HARBOR CITY,16,1950,1,GOV1,3004 -0107_618_27,-74.48857764,39.45515181,219 SAN FRANCISCO AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_618_29,-74.9306835,39.51238184,201 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1982,1,RES3A,3001 -0107_619_1,-74.76627643,39.34970426,1211 WHITE HORSE PK,EGG HARBOR CITY,,1945,1,RES1,3001 -0107_619_10.02,-74.55588828,39.4702984,127 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_619_10.03,-74.6826244,39.55272086,117 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_619_11.02,-74.49256931,39.3359076,1225 WHITE HORSE PIKE,EGG HARBOR CITY,,1962,1,RES1,3001 -0107_619_2,-74.9428245,39.4910085,112 HAVANA AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_619_3,-74.493841,39.334186,124 HAVANA AVE,EGG HARBOR CITY,15,1930,1,RES1,3001 -0107_619_4.02,-74.78158819,39.45716266,144 HAVANA AVE,EGG HARBOR CITY,16,1987,1,RES1,3001 -0107_619_6,-74.56330497,39.4113484,150 HAVANA AVE,EGG HARBOR CITY,16,1980,1,RES3A,3001 -0107_619_7,-74.62272163,39.41804033,153 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1930,1,RES1,3004 -0107_619_8.01,-74.60528981,39.41490141,149 SAN FRANCISCO AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_619_8.02,-74.637336,39.523296,135 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1925,1,RES1,3001 -0107_620_15,-74.38393934,39.39201098,1204 WHITE HORSE PIKE,EGG HARBOR CITY,,1970,1,RES1,3001 -0107_620_18,-74.48443832,39.34683756,1222 WHITE HORSE PK,EGG HARBOR CITY,15,1890,1,RES1,3001 -0107_620_20.02,-74.53371099,39.39995867,53 SAN FRANCISCO AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_621_1,-74.81244513,39.64997132,15 NEW ORLEANS AVE,EGG HARBOR CITY,16,1968,1,RES1,3001 -0107_621_18,-74.58666281,39.41170747,1314 WHITE HORSE PK,EGG HARBOR CITY,,2014,1,RES3B,3001 -0107_621_26,-74.61158806,39.34949134,25 NEW ORLEANS AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_622_1.01,-74.67971765,39.38444623,1307 WHITE HORSE PIKE,EGG HARBOR CITY,,1938,1,RES1,3001 -0107_622_1.02,-74.5324175,39.3811865,1311 WHITE HORSE PK,EGG HARBOR CITY,16,1900,1,RES3A,3001 -0107_622_10,-74.505807,39.3356135,136 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_622_11.02,-74.63634863,39.52478963,140 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1957,1,RES1,3001 -0107_622_13,-74.37510812,39.40106468,158 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1940,1,EDU1,3004 -0107_622_16,-74.44694034,39.48602033,157 NEW ORLEANS AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_622_18.02,-74.4976805,39.443604,153 NEW ORLEANS AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_622_19.02,-74.73311774,39.46098784,143 NEW ORLEANS AVE,EGG HARBOR CITY,16,1972,1,RES1,3001 -0107_622_21,-74.51343754,39.41484331,131 NEW ORLEANS AVE,EGG HARBOR CITY,16,1959,1,RES1,3001 -0107_622_23,-74.60306657,39.5016559,127 NEW ORLEANS AVE,EGG HARBOR CITY,16,1950,1,RES3A,3001 -0107_622_26,-74.5121695,39.485095,117 NEW ORLEANS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_622_27.01,-74.465828,39.3478075,1327 WHITE HORSE PIKE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_622_27.02,-74.38822617,39.39112399,1315 WHITE HORSE PIKE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_622_5,-74.76200752,39.43053084,126 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_622_7.02,-74.45518171,39.48503639,132 SAN FRANCISCO AVE,EGG HARBOR CITY,15,1920,2,RES1,3001 -0107_623_1,-74.48260714,39.35105752,200 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_623_16,-74.64514155,39.39768514,257 NEW ORLEANS AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_623_20,-74.57944858,39.38189768,235 NEW ORLEANS AVE,EGG HARBOR CITY,,1960,1,RES1,3001 -0107_623_25,-74.60053972,39.41719976,215 NEW ORLEANS AVE,EGG HARBOR CITY,16,1958,1,RES1,3001 -0107_623_28,-74.6502527,39.40006055,201 NEW ORLEANS AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_623_5,-74.62112213,39.38235264,216 SAN FRANCISCO AVE,EGG HARBOR CITY,16,2006,1,RES1,3001 -0107_623_7,-74.72063278,39.64018539,226 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_623_9,-74.474778,39.342851,232 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_624_10,-74.56321787,39.4098173,336 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_624_12,-74.92660612,39.54323408,344 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1963,1,RES1,3001 -0107_624_14,-74.54062591,39.41247097,350 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1961,1,RES3A,3001 -0107_624_16,-74.5485236,39.38165483,359 NEW ORLEANS AVE,EGG HARBOR CITY,16,1972,1,GOV1,3004 -0107_625_1,-74.7946855,39.6102285,400 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1950,1,COM1,3004 -0107_625_11,-74.55127843,39.46724897,444 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1963,1,COM4,3004 -0107_625_26,-74.75646623,39.43142734,401 NEW ORLEANS AVE,EGG HARBOR CITY,15,1970,1,RES1,3001 -0107_625_4,-74.57610666,39.35078483,420 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1966,1,RES1,3001 -0107_625_7,-74.5182838,39.43562562,430 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_625_9,-74.40901537,39.39138421,434 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1966,1,RES1,3001 -0107_626_10,-74.4983935,39.42978,540 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_626_12,-74.861571,39.566362,542 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_626_14,-74.46945171,39.34196734,544 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1928,1,RES1,3001 -0107_626_29,-74.60243682,39.31528743,503 NEW ORLEANS AVE,EGG HARBOR CITY,14,1920,1,RES1,3001 -0107_627_1,-74.46203738,39.35784632,1301 CLAUDIUS ST,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_627_29,-74.8044155,39.6319395,1323 CLAUDIUS ST,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_627_4,-74.639434,39.3837595,614 SAN FRANCISCO AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_627_6,-74.59684947,39.31740218,620 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_627_8,-74.49984424,39.43052554,624 SAN FRANCISCO AVE,EGG HARBOR CITY,16,1940,1,GOV1,3004 -0107_628_1,-74.3726645,39.41498,701 NEW ORLEANS AVE,EGG HARBOR CITY,,0,1,RES3A,3001 -0107_659_1,-74.920259,39.5435565,3801 NEW ORLEANS AVE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_660_13,-74.60025831,39.43610995,3958 SAN FRANCISCO AVE,EGG HARBOR CITY,15,1955,1,GOV1,3004 -0107_660_16,-74.5577535,39.4489595,3921 NEW ORLEANS AVE,EGG HARBOR CITY,16,1930,1,GOV1,3004 -0107_67.07_10,-74.5089212,39.44619551,1545 BREMEN AVENUE,EGG HARBOR CITY,17,2004,1,RES1,3001 -0107_67.07_22,-74.49356738,39.42621975,1525 BREMEN AVE,EGG HARBOR CITY,17,1979,1,RES1,3001 -0107_67.07_25,-74.54620471,39.46995703,1515 BREMEN AVE,EGG HARBOR CITY,17,1980,1,GOV1,3004 -0107_68.07_1,-74.44028886,39.36753941,1601-1615 BREMEN AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_7.07_10,-74.50956517,39.3290195,736 HAMBURG AVE,EGG HARBOR CITY,17,1980,1,RES1,3001 -0107_7.07_13,-74.60316027,39.36792456,14 DUERER ST,EGG HARBOR CITY,16,1979,1,RES1,3001 -0107_7.07_16,-74.7596467,39.63988408,28 DUERER ST,EGG HARBOR CITY,17,1990,1,RES1,3001 -0107_7.07_2,-74.39591475,39.38734596,702 HAMBURG AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_7.07_3.02,-74.726328,39.4592015,710 HAMBURG AVE,EGG HARBOR CITY,17,1950,1,RES1,3001 -0107_7_1,-74.495286,39.3329835,100 CLAUDIUS ST,EGG HARBOR CITY,17,1976,1,RES1,3001 -0107_7_25,-74.39706366,39.38870558,615 NORFOLK AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_709_1,-74.387919,39.3917465,700 NEW ORLEANS AVE,EGG HARBOR CITY,,1920,1,RES1,3001 -0107_711_1,-74.84285776,39.37561317,524 NEW ORLEANS AVE,EGG HARBOR CITY,,1950,1,RES1,3001 -0107_712_1,-74.461372,39.4900605,400 NEW ORLEANS AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_712_16,-74.64041983,39.46309709,457 ANTWERP AVE,EGG HARBOR CITY,16,1922,1,RES1,3001 -0107_713_1,-74.50037317,39.45824552,300 NEW ORLEANS AVE,EGG HARBOR CITY,16,2007,1,RES1,3001 -0107_713_29,-74.68256294,39.50849416,301 ANTWERP AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_714_1,-74.36767712,39.42236131,200 NEW ORLEANS AVE,EGG HARBOR CITY,16,1950,1,AGR1,3001 -0107_714_11,-74.5226415,39.469066,236 NEW ORLEANS AVE,EGG HARBOR CITY,16,1934,1,RES1,3001 -0107_714_14,-74.532369,39.402364,258 NEW ORLEANS AVE,EGG HARBOR CITY,16,1930,1,GOV1,3004 -0107_714_16,-74.557143,39.474223,253 ANTWERP AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_714_18,-74.8849905,39.4638535,245 ANTWERP AVE,EGG HARBOR CITY,16,1979,1,RES1,3001 -0107_714_2,-74.537653,39.3835165,206 NEW ORLEANS AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_714_20,-74.63376259,39.3661363,243 ANTWERP AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_714_21,-74.45336407,39.49735078,241 ANTWERP AVE,EGG HARBOR CITY,16,1958,1,GOV1,3004 -0107_714_23,-74.75380285,39.42963921,227 ANTWERP AVE,EGG HARBOR CITY,16,1955,1,GOV1,3004 -0107_714_25,-74.5364365,39.386817,221 ANTWERP AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_714_27,-74.58726131,39.41544795,211 ANTWERP AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_714_29,-74.5203905,39.448688,203 ANTWERP AVE,EGG HARBOR CITY,16,1952,1,RES1,3001 -0107_714_4,-74.50353043,39.33599445,208 NEW ORLEANS AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_714_5.02,-74.38594073,39.39155842,222 NEW ORLEANS AVE,EGG HARBOR CITY,16,1954,1,RES1,3001 -0107_714_7.02,-74.7498205,39.6033165,228 NEW ORLEANS AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_714_9,-74.4667455,39.344582,234 NEW ORLEANS AVE,EGG HARBOR CITY,16,1955,1,RES1,3001 -0107_715_1,-74.6838195,39.444441,1401 WHITE HORSE PIKE,EGG HARBOR CITY,,1970,1,RES1,3001 -0107_715_13,-74.50446833,39.3384187,154 NEW ORLEANS AVE,EGG HARBOR CITY,16,1930,1,RES1,3001 -0107_715_16,-74.84271193,39.40219231,159 ANTWERP AVE,EGG HARBOR CITY,16,1953,1,GOV1,3004 -0107_715_18,-74.63768337,39.52866505,147 ANTWERP AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_715_20,-74.74443645,39.59025438,137 ANTWERP AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_715_23,-74.49349397,39.45350912,129 ANTWERP AVE,EGG HARBOR CITY,16,1965,1,RES1,3001 -0107_715_25,-74.60289904,39.31874232,121 ANTWERP AVE,EGG HARBOR CITY,15,1940,1,GOV1,3004 -0107_715_26,-74.4745825,39.479932,111 ANTWERP AVE,EGG HARBOR CITY,,1967,1,RES3A,3001 -0107_715_28,-74.6894436,39.44758819,1451 WHITE HORSE PK,EGG HARBOR CITY,,1980,1,RES1,3001 -0107_715_4,-74.53743,39.3836975,124 NEW ORLEANS AVE,EGG HARBOR CITY,16,1922,1,RES1,3001 -0107_715_8,-74.3622285,39.419502,140 NEW ORLEANS AVE,EGG HARBOR CITY,16,1927,1,GOV1,3004 -0107_716_18.03,-74.49750583,39.49976935,1424 WHITE HORSE PIKE,EGG HARBOR CITY,,0,1,GOV1,3004 -0107_716_4,-74.495574,39.4473,1400 WHITE HORSE PIKE,EGG HARBOR CITY,,1959,1,RES1,3001 -0107_717_11,-74.5227465,39.4068,40 ANTWERP AVE,EGG HARBOR CITY,16,1950,1,GOV1,3004 -0107_717_15.01,-74.50857938,39.33521734,1500 WHITE HORSE PK,EGG HARBOR CITY,16,1920,1,RES1,3001 -0107_718_14,-74.54809267,39.39280648,158 ANTWERP AVE,EGG HARBOR CITY,16,1979,1,RES1,3001 -0107_718_16,-74.62504541,39.3819441,159 BALTIMORE AVE,EGG HARBOR CITY,16,1970,1,GOV1,3004 -0107_718_19,-74.5366995,39.380516,139 BALTIMORE AVE,EGG HARBOR CITY,16,1985,1,GOV1,3004 -0107_718_28,-74.81972817,39.40943693,1513 WHITE HORSE PIKE,EGG HARBOR CITY,,1945,1,RES1,3001 -0107_719_1,-74.52862964,39.45667231,200 ANTWERP AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_719_10,-74.63065565,39.3613442,240 ANTWERP AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_719_13,-74.58171387,39.35971969,258 ANTWERP AVE,EGG HARBOR CITY,16,1974,1,RES1,3001 -0107_719_16,-74.47050916,39.48340833,259 BALTIMORE AVE,EGG HARBOR CITY,16,1985,1,RES1,3001 -0107_719_19,-74.49048786,39.44110712,241 BALTIMORE AVE,EGG HARBOR CITY,16,1975,1,RES1,3001 -0107_719_23,-74.69677733,39.58955298,225 BALTIMORE AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_719_26,-74.68034361,39.44345233,215 BALTIMORE AVE,EGG HARBOR CITY,16,1962,1,RES1,3001 -0107_719_29,-74.51327731,39.33090537,201 BALTIMORE AVE,EGG HARBOR CITY,16,1959,1,RES1,3004 -0107_719_3,-74.696427,39.6196005,210 ANTWERP AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_719_5,-74.52210724,39.31596517,222 ANTWERP AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_719_7,-74.60546473,39.41014692,234 ANTWERP AVE,EGG HARBOR CITY,16,1956,1,RES1,3001 -0107_720_16,-74.64567567,39.5531325,359 BALTIMORE AVE,EGG HARBOR CITY,15,1905,1,RES1,3001 -0107_720_27,-74.48630868,39.34802845,301 BALTIMORE AVE,EGG HARBOR CITY,16,1975,1,GOV1,3004 -0107_721_28,-74.934168,39.5245675,403 BALTIMORE AVE,EGG HARBOR CITY,16,1950,1,GOV1,3004 -0107_722_1,-74.5987342,39.3446961,500 ANTWERP AVE,EGG HARBOR CITY,15,1950,1,RES1,3001 -0107_723_16,-74.3863635,39.3925405,655 BALTIMORE AVENUE,EGG HARBOR CITY,16,2006,1,RES1,3001 -0107_723_18,-74.91685147,39.50468081,649 BALTIMORE AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_724_12,-74.93259,39.5028285,1500 DUERER ST,EGG HARBOR CITY,16,1979,1,GOV1,3004 -0107_724_16,-74.94713985,39.52098935,749 BALTIMORE AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_724_19,-74.5001365,39.4603515,741 BALTIMORE AVE,EGG HARBOR CITY,16,1977,1,RES1,3001 -0107_724_21,-74.50259248,39.4090659,739 BALTIMORE AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_724_23,-74.75424406,39.43098124,725 BALTIMORE AVE,EGG HARBOR CITY,16,1950,1,GOV1,3004 -0107_724_25,-74.4757305,39.4578163,723 BALTIMORE AVE,EGG HARBOR CITY,16,1970,1,RES1,3001 -0107_724_27,-74.9126915,39.5104845,711 BALTIMORE AVE,EGG HARBOR CITY,16,1976,1,RES1,3001 -0107_73.07_16,-74.4396865,39.3671595,2101-2159 BREMEN AVE,EGG HARBOR CITY,,2001,1,RES1,3001 -0107_8.07_1,-74.558316,39.471882,802 HAMBURG AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_8.07_11,-74.61883064,39.46295543,834 HAMBURG AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_8.07_2,-74.52611716,39.45797059,23 DUERER ST,EGG HARBOR CITY,14,1940,1,RES1,3001 -0107_8.07_4,-74.73048182,39.46336061,814 HAMBURG AVE,EGG HARBOR CITY,15,1955,1,RES1,3001 -0107_89_28,-74.63269515,39.35732974,1301 WASHINGTON AVE,EGG HARBOR CITY,16,1952,1,AGR1,3001 -0107_947_1,-74.3824095,39.3945085,CITY PARK-WEST PARK AVE,EGG HARBOR CITY,,2010,1,RES1,3001 -0107_948_1,-74.50586033,39.3257045,CITY PARK-WEST PARK AVE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_954_1,-74.9546665,39.5116585,CITY PARK-LAKE,EGG HARBOR CITY,,1960,1,RES1,3001 -0107_954_2,-74.50608808,39.32438018,GLOUCESTER LAKE,EGG HARBOR CITY,,0,1,RES1,3001 -0107_955_1,-74.62003107,39.4245813,HAMBURG TO LIVERPOOL,EGG HARBOR CITY,,0,1,RES1,3001 -0107_956_1,-74.62961398,39.42494762,LIVERPOOL TO PHILA AVE,EGG HARBOR CITY,,0,1,GOV1,3004 -0107_96_1,-74.782852,39.6218145,215 CLAUDIUS ST,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_96_18,-74.66353988,39.46019781,643 WASHINGTON AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_96_23,-74.88422732,39.57324412,625 WASHINGTON AVE,EGG HARBOR CITY,15,1940,1,RES1,3001 -0107_96_24,-74.62911616,39.42191487,619 WASHINGTON AVE,EGG HARBOR CITY,15,1920,1,RES1,3001 -0107_96_4,-74.61148635,39.48901146,614 NORFOLK AVE,EGG HARBOR CITY,15,1928,1,RES1,3001 -0107_96_5,-74.66527668,39.46300653,618 NORFOLK AVE,EGG HARBOR CITY,16,1940,1,GOV1,3004 -0107_96_6.02,-74.802018,39.639953,624 NORFOLK AVE,EGG HARBOR CITY,,1949,1,GOV1,3004 -0107_96_9.02,-74.82771884,39.40426708,644 NORFOLK AVE,EGG HARBOR CITY,15,1910,1,RES1,3001 -0107_97_27,-74.44089443,39.37125962,509 WASHINGTON AVE,EGG HARBOR CITY,16,1955,1,GOV1,3004 -0107_98_1,-74.506095,39.329332,211 BUERGER ST,EGG HARBOR CITY,15,1923,1,RES1,3001 -0107_98_16,-74.51176698,39.40266435,445 WASHINGTON AVE,EGG HARBOR CITY,17,1955,1,RES1,3001 -0107_98_2.02,-74.51724937,39.38970233,410 NORFOLK AVE,EGG HARBOR CITY,16,1928,1,RES1,3001 -0107_98_20.02,-74.455654,39.37162017,435 WASHINGTON AVE,EGG HARBOR CITY,16,1907,1,RES1,3001 -0107_98_24,-74.80399854,39.64426616,417 WASHINGTON AVE,EGG HARBOR CITY,16,1986,1,RES1,3001 -0107_98_28,-74.50624271,39.47528669,405 WASHINGTON AVE,EGG HARBOR CITY,16,1948,1,RES1,3001 -0107_99_1,-74.48316624,39.35288753,300 NORFOLK AVE,EGG HARBOR CITY,16,1960,1,RES1,3001 -0107_99_10,-74.5814925,39.5171935,336 NORFOLK AVE,EGG HARBOR CITY,16,1983,1,GOV1,3004 -0107_99_12,-74.422646,39.370985,348 NORFOLK AVE,EGG HARBOR CITY,16,1986,1,GOV1,3004 -0107_99_14,-74.949391,39.5282035,354 NORFOLK AVE,EGG HARBOR CITY,16,1960,1,GOV1,3004 -0107_99_16,-74.84571475,39.46023742,359 WASHINGTON AVE,EGG HARBOR CITY,,1950,1,GOV1,3004 -0107_99_18,-74.51100872,39.44382275,347 WASHINGTON AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_99_20,-74.448574,39.356437,343 WASHINGTON AVE,EGG HARBOR CITY,16,1900,1,RES1,3001 -0107_99_21.02,-74.79897437,39.63437436,339 WASHINGTON AVE,EGG HARBOR CITY,16,1940,1,RES1,3001 -0107_99_23,-74.359331,39.4115175,325 WASHINGTON AVE 1,EGG HARBOR CITY,16,1940,1,GOV1,3004 -0107_99_25,-74.72406619,39.45507205,321 WASHINGTON AVE,EGG HARBOR CITY,16,1950,1,RES1,3001 -0107_99_29,-74.60548552,39.42602532,301 WASHINGTON AVE,EGG HARBOR CITY,16,1955,1,GOV1,3004 -0107_99_3.02,-74.40363885,39.38139429,310 NORFOLK AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0107_99_5.02,-74.36997904,39.40649867,312 NORFOLK AVE,EGG HARBOR CITY,16,1970,1,GOV1,3004 -0107_99_7.02,-74.63331658,39.35159811,328 NORFOLK AVE,EGG HARBOR CITY,16,1980,1,RES1,3001 -0108_1001_1,-74.73527029,39.44383147,102 INGHAM AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1001_3,-74.571624,39.427569,112 INGHAM AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1001_4,-74.82309906,39.37994468,114 INGHAM AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1001_5,-74.5822395,39.325481,116 INGHAM AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1001_6,-74.62859044,39.4388917,120 INGHAM AVENUE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_101_1,-74.93266932,39.48362305,6402 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_101_10,-74.587948,39.3269265,AIRPORT TERMINAL,EGG HARBOR TWP,,0,1,RES1,3001 -0108_101_14,-74.66652916,39.62092541,AIRPORT TERMINAL,EGG HARBOR TWP,,0,1,RES1,3001 -0108_101_15,-74.49324113,39.46956609,FAA TECH CENTER,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1013_27,-74.49118643,39.33888471,108 REPETTO AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1013_29,-74.61545199,39.48713039,100 REPETTO AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1013_30,-74.80766342,39.63413815,6 STAFFORD AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1013_34,-74.47913692,39.34750215,22 STAFFORD AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_102_2,-74.74296898,39.63395772,4402 MARGINAL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1020_1,-74.7630225,39.3500955,110 REPETTO AVENUE,EGG HARBOR TWP,,1960,1,RES1,3001 -0108_1022_2,-74.87556898,39.45649835,2735 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1023_1,-74.36663312,39.41312464,2727 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1024_1,-74.57267724,39.37142414,2725 FIRE ROAD,EGG HARBOR TWP,16,1962,2,RES1,3001 -0108_1024_3,-74.51429451,39.32765425,2723 FIRE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1025_1,-74.55474754,39.37807135,2734 FIRE ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1025_4,-74.6432005,39.527143,2730 FIRE ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1026_3,-74.36672818,39.42195397,2732 FIRE ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1029_1,-74.48230467,39.34162299,2720 FIRE ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1029_11,-74.5354335,39.3049805,200 DECADON DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1029_6,-74.6491294,39.35540159,1435 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1029_7,-74.60678281,39.32529448,6858 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1030_2,-74.603265,39.3272735,1422 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1030_3,-74.6012213,39.43602344,102 OAK AVENUE,EGG HARBOR TWP,16,1929,1,RES1,3001 -0108_1032_1,-74.6426975,39.526616,1428 DOUGHTY ROAD,EGG HARBOR TWP,16,1958,1,GOV1,3004 -0108_1032_10,-74.45887149,39.51211124,108 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1032_11,-74.81087613,39.63835061,106 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3002 -0108_1032_13,-74.8267455,39.408193,102 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1032_2,-74.51399249,39.43336461,1426 DOUGHTY ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1032_3,-74.80935487,39.4086987,101 OAK AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1032_4,-74.68788567,39.57286888,103 OAK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3004 -0108_1032_5,-74.54363005,39.38755784,105 OAK AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1032_6,-74.5599425,39.397399,107 OAK AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1032_7,-74.49412253,39.46986708,109 OAK AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1032_8,-74.55933154,39.47838879,111 OAK AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1032_9,-74.45266562,39.48894344,110 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1033_1,-74.57507069,39.35441576,200 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1033_2,-74.63921225,39.36042592,203 OAK AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1033_3,-74.82544565,39.36466003,205 OAK AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_1033_4,-74.56276013,39.47527328,204 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1033_5,-74.36327866,39.40799495,206 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1033_8,-74.57052968,39.35069916,202 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1034_10,-74.94066403,39.52239068,104 WOODLAND AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1034_11,-74.5875625,39.3266835,102 WOODLAND AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1034_2,-74.79794479,39.53767616,1432 DOUGHTY ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1034_4,-74.81568116,39.65559626,101 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3004 -0108_1034_5,-74.44117441,39.35401633,103 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1034_6,-74.47761349,39.34019616,105 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1034_8,-74.483301,39.43185,107 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1034_9,-74.91597267,39.53049141,108 WOODLAND AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1035_1,-74.62937195,39.40550357,200 WOODLAND AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_1035_2,-74.54815883,39.374898,201 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1035_3,-74.61135,39.3424075,203 BLUE SPRUCE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1045_1,-74.51861849,39.41113167,133 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1045_10,-74.49889371,39.41605907,100 DECADON DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1045_12,-74.60753094,39.50003556,6830 WASHINGTON AVENUE,EGG HARBOR TWP,16,1948,1,GOV1,3004 -0108_1045_14,-74.51545535,39.45392614,6826 WASHINGTON AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1045_16,-74.45043595,39.49458593,6822 WASHINGTON AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_1045_18,-74.58605535,39.41294655,6820 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1045_2,-74.6201675,39.4310895,131 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1045_21,-74.55544945,39.46775821,105 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1045_22,-74.46008045,39.53063378,107 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1045_23,-74.75111505,39.44630078,121 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1045_24,-74.81414051,39.62636142,125 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1045_25,-74.59519241,39.36176346,113 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1940,2,RES1,3001 -0108_1045_26,-74.65408951,39.36955058,115 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_1045_3,-74.45628283,39.35103058,129 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1045_9,-74.7234715,39.430943,5 COLUMBUS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1046_2,-74.54687147,39.37873304,132 GRAVESMITH DRIVE,EGG HARBOR TWP,,1960,1,GOV1,3004 -0108_1046_8,-74.8206155,39.386418,124 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1046_9,-74.48699144,39.3506361,120 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1047_10,-74.77627717,39.619069,116 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1047_11,-74.49373692,39.43356327,114 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1047_15,-74.974834,39.510776,106 GRAVESMITH DRIVE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1047_21,-74.93576408,39.5192232,6804 WASHINGTON AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1047_4,-74.62203432,39.43516772,2756 FIRE ROAD,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1047_5,-74.571526,39.477942,2754 FIRE ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_1047_6,-74.49654574,39.45731155,2750 FIRE ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1047_7,-74.63303722,39.35912446,2748 FIRE ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1047_9,-74.4558135,39.348075,6806 WASHINGTON AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_1,-74.6630415,39.401597,6740 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1048_10,-74.80170828,39.64499052,123 INGHAM AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1048_102,-74.81391747,39.38749483,106 SYLVANIA AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_103,-74.37215373,39.41462642,104 SYLVANIA AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_104,-74.5633615,39.4776615,102 SYLVANIA AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_105,-74.5139565,39.486499,6768 WASHINGTON AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_106,-74.96804532,39.51955281,6760 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1048_108,-74.74651841,39.44556663,115 MEYERS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_11,-74.946923,39.5278545,125 INGHAM AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1048_110,-74.48341096,39.33892685,6754 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1048_116,-74.62814533,39.4389493,103 MEYERS AVENUE,EGG HARBOR TWP,52,1960,1,GOV1,3004 -0108_1048_117,-74.86486933,39.56545249,2745 FIRE ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1048_3,-74.88493737,39.4630516,109 INGHAM AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_1048_34,-74.49658135,39.51790535,25 STAFFORD AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1048_35,-74.46252693,39.35967481,21 STAFFORD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1048_36,-74.5326644,39.3770366,105 MEYERS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1048_37,-74.52856117,39.40281857,107 MEYERS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1048_4,-74.808896,39.647168,111 INGHAM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1048_40,-74.467716,39.3461725,113 MEYERS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1048_41,-74.82645633,39.41040687,112 MEYERS AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1048_42,-74.52648831,39.52759179,110 MEYERS AVENUE,EGG HARBOR TWP,16,1945,1,GOV1,3004 -0108_1048_43,-74.81148171,39.63776988,106 MEYERS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_44,-74.44835089,39.37091281,100 MEYERS AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_1048_47,-74.63742958,39.31889242,17 STAFFORD AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_48,-74.60138743,39.34911582,15 STAFFORD AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1048_49,-74.64540226,39.36559506,13 STAFFORD AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_1048_5,-74.65253856,39.37005459,113 INGHAM AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1048_50,-74.65382134,39.39938401,9 STAFFORD AVENUE,EGG HARBOR TWP,15,1950,2,GOV1,3004 -0108_1048_51,-74.87843579,39.59890555,7 STAFFORD AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1048_54,-74.569461,39.4130855,5A STAFFORD AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1048_57,-74.75582208,39.44686778,5 STAFFORD AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_6,-74.45420442,39.49969818,115 INGHAM AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_60,-74.65380518,39.35768807,2751 FIRE ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1048_61,-74.4669305,39.3442455,2747 FIRE ROAD,EGG HARBOR TWP,16,1940,1,GOV1,3004 -0108_1048_63,-74.4498315,39.4918365,1 STAFFORD AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1048_64,-74.4946995,39.49516,2743 FIRE ROAD,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_1048_66,-74.6029305,39.354808,2749 FIRE ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1048_68,-74.56183915,39.38901619,2753 FIRE ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1048_7,-74.809516,39.640963,117 INGHAM AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1048_70,-74.68263722,39.39178257,2755 FIRE ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1048_71,-74.50735798,39.33804134,2757 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1048_72,-74.62413572,39.36288392,102 CORDERYS DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1048_75,-74.59390602,39.31309466,108 CORDERYS DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1048_76,-74.4917075,39.470106,110 CORDERYS DRIVE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1048_8,-74.64179735,39.53065004,119 INGHAM AVENUE,EGG HARBOR TWP,16,1926,1,COM1,3004 -0108_1048_82,-74.63815705,39.52238334,2763 FIRE ROAD,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_1048_86,-74.57441094,39.33663026,6790 WASHINGTON AVENUE,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_1048_88,-74.53275901,39.38416033,6784 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1048_90,-74.557304,39.468916,6780 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1048_91,-74.38068571,39.41838145,6778 WASHINGTON AVENUE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_1048_92,-74.58226482,39.33010301,6776 WASHINGTON AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1048_93,-74.5590285,39.366229,6774 WASHINGTON AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1101_1,-74.49173982,39.43031291,2576 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1101_12,-74.3738355,39.4060235,2584 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1101_14,-74.5027985,39.333646,2580 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1101_3,-74.60218981,39.39753011,223 SEAGULL DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1101_4,-74.79430602,39.53629433,221 SEAGULL DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1101_5,-74.44363159,39.35706055,219 SEAGULL DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1101_6,-74.398613,39.3859685,217 SEAGULL DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1101_7,-74.50013017,39.32653344,215 SEAGULL DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1101_8,-74.42260467,39.375038,211 SEAGULL DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1101_9,-74.5659115,39.4249355,6 VAN MAR AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1102_2,-74.54425156,39.38370064,216 SEAGULL DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1102_3,-74.7117288,39.47301454,214 SEAGULL DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1102_4,-74.4521965,39.357503,212 SEAGULL DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1102_5,-74.446114,39.3732885,210 SEAGULL DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1102_6,-74.50379874,39.40995094,103 VAN MAR AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1103_1,-74.65297487,39.52255064,208 SEAGULL DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1103_2,-74.4965755,39.4468255,209 MARSDEN AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1103_3,-74.46642967,39.34545815,207 MARSDEN AVENUE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1103_4,-74.52505262,39.44972414,205 MARSDEN AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1103_5,-74.50094385,39.42964952,103 LARUE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1103_6,-74.51927505,39.39686433,101 LARUE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1103_7,-74.48908634,39.33463055,206 SEAGULL DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1104_2,-74.9635255,39.5042065,204 MARSDEN AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1104_3,-74.5223427,39.39234228,202 MARSDEN AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1104_4,-74.63645473,39.34092965,200 MARSDEN AVENUE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_1104_5,-74.499452,39.4486,105 LARUE AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1104_6,-74.614047,39.3234945,107 LARUE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_1,-74.63211637,39.53985056,100 LARUE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_10,-74.50890404,39.33025916,107 CARDINAL ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_11,-74.80456462,39.63317693,105 CARDINAL ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_12,-74.72279379,39.45947193,103 CARDINAL ROAD,EGG HARBOR TWP,16,1966,1,COM4,3004 -0108_1105_13,-74.522439,39.3141265,101 CARDINAL ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_2,-74.71449012,39.46905329,102 LARUE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_3,-74.50165167,39.32718625,104 LARUE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_4,-74.44206954,39.37022018,106 LARUE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_5,-74.52587447,39.44380561,108 LARUE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_6,-74.75015888,39.63658755,110 LARUE AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1105_7,-74.718731,39.451592,221 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1105_8,-74.57633975,39.35567117,111 CARDINAL ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1105_9,-74.90193832,39.50122337,109 CARDINAL ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1107_1,-74.59205617,39.37747403,302 HESTOR AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1107_2,-74.61054054,39.34832264,228 SANDPIPER DRIVE,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_1107_4,-74.694168,39.5899245,304 HESTOR AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_1,-74.67689601,39.57206433,226 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_10,-74.74689737,39.63570278,220 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_11,-74.44291048,39.37028382,218 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES4,3001 -0108_1108_12,-74.60024033,39.31996245,216 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_13,-74.51770086,39.40250042,214 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_15,-74.57986949,39.37645117,303 BISCAYNE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_16,-74.597612,39.435327,212 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_17,-74.55461662,39.39070937,210 SANDPIPER DRIVE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_1108_19,-74.529984,39.3954615,200 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_2,-74.73671,39.4477275,301 HESTOR AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_20,-74.7005055,39.4935035,208 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_21,-74.35728,39.413336,206 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_22,-74.73724431,39.46722657,200 IONA AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1108_24,-74.5953695,39.335661,201 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_25,-74.79000292,39.63601671,204 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_26,-74.50295428,39.41835707,202 IONA AVENUE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1108_27,-74.50034528,39.32869217,305 HESTOR AVENUE,EGG HARBOR TWP,16,1971,1,RES3A,3001 -0108_1108_3,-74.36832417,39.40848498,303 HESTOR AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_4,-74.63171716,39.34955599,306 MARSHA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_5,-74.54792173,39.3670087,304 MARSHA AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1108_6,-74.449675,39.3741395,302 MARSHA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_7,-74.51207696,39.42954246,300 MARSHA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_8,-74.559416,39.398117,224 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1108_9,-74.567069,39.4774685,222 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1109_1,-74.71645579,39.47915893,301 MARSHA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1109_10,-74.49874932,39.49903706,300 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1109_2,-74.584994,39.443361,303 MARSHA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1109_3,-74.52985917,39.4531085,305 MARSHA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1109_4,-74.39637055,39.3869342,307 MARSHA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1109_5,-74.717028,39.395359,309 MARSHA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1109_6,-74.790336,39.6427783,308 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,COM4,3004 -0108_1109_7,-74.611965,39.4893425,306 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1109_8,-74.50755885,39.32942098,304 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1109_9,-74.77976306,39.63186726,302 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_1,-74.47408447,39.48170196,301 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_10,-74.4406235,39.3698685,304 CHELTON AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1110_11,-74.6153285,39.5093605,302 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_12,-74.53490126,39.37748074,300 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_2,-74.50277502,39.33579617,303 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_3,-74.59733851,39.31630684,305 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1110_4,-74.7946555,39.6329415,307 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_5,-74.79284876,39.64440486,309 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_6,-74.60425652,39.33161316,311 RHODES AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_7,-74.63663039,39.38505869,310 CHELTON AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1110_8,-74.62874415,39.4324016,308 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1110_9,-74.88437839,39.59331427,306 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3004 -0108_1111_1,-74.6073205,39.4382375,301 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1111_10,-74.60034018,39.31670578,304 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1111_11,-74.564343,39.477343,302 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1111_12,-74.64257,39.398862,300 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1111_2,-74.89469919,39.53749315,303 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1111_3,-74.56669824,39.35188269,305 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3004 -0108_1111_4,-74.602247,39.3116205,307 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,COM1,3002 -0108_1111_5,-74.51313284,39.43888064,309 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1111_6,-74.40142456,39.39403375,311 CHELTON AVENUE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1111_7,-74.55468369,39.35777884,310 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1111_8,-74.57537207,39.40799104,308 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1111_9,-74.87596148,39.59292884,306 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_1,-74.484997,39.3448475,301 STERLING AVENUE,EGG HARBOR TWP,16,1965,1,RES3A,3001 -0108_1112_10,-74.5986408,39.31425734,304 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_11,-74.379046,39.4009405,302 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_12,-74.580332,39.3758185,300 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_2,-74.6021515,39.3132925,303 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_3,-74.55446407,39.36917833,305 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_4,-74.9253505,39.5108135,307 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_5,-74.53162433,39.386195,309 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_6,-74.8064985,39.640595,311 STERLING AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_7,-74.45220733,39.50224475,310 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_8,-74.47161447,39.49209184,308 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1112_9,-74.51099641,39.40113018,306 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_1,-74.7865985,39.643618,301 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_10,-74.49857959,39.33431567,304 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_11,-74.58535483,39.37621884,302 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_12,-74.8145905,39.636294,300 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_2,-74.52655554,39.31129616,303 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_3,-74.64972638,39.4597818,305 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_4,-74.54464765,39.37480254,307 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_5,-74.75870073,39.42997253,309 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_6,-74.41069468,39.39062893,311 IONA AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_1113_7,-74.41967493,39.36777077,310 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_8,-74.581725,39.3405,308 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1113_9,-74.6018959,39.39009931,306 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_1,-74.6334955,39.387835,200 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_10,-74.62056078,39.37920739,301 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_11,-74.6784295,39.445875,26 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1940,2,RES1,3001 -0108_1114_18,-74.50030595,39.33532883,317 BISCAYNE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1114_19,-74.51312512,39.32129194,301 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_2.01,-74.45961707,39.46243003,202 SANDPIPER DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1114_2.02,-74.96271697,39.52755363,199 IONA AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1114_20,-74.50056699,39.52201856,303 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_21,-74.60831919,39.38067751,305 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_22,-74.47083655,39.48720067,307 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_23,-74.490864,39.3807065,309 QUIGLEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_24,-74.6455885,39.533577,311 QUIGLEY AVENUE,EGG HARBOR TWP,16,1968,1,COM1,3004 -0108_1114_26,-74.64210445,39.36311111,31 IDLEWOOD AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1114_28,-74.581139,39.4296825,23 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_29,-74.596761,39.380634,223 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_3,-74.584288,39.357362,201 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_30,-74.84595621,39.48900517,221 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_31,-74.48225899,39.34857233,219 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_32,-74.49577381,39.49350507,217 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_33,-74.50497355,39.33154167,215 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_34,-74.561725,39.4024965,213 COOLIDGE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1114_35,-74.67001797,39.38609304,211 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_36,-74.48879105,39.43249996,209 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_37,-74.8788615,39.4903505,207 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_38,-74.55053269,39.40611194,205 COOLIDGE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1114_39,-74.6894395,39.447728,203A COOLIDGE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1114_39.01,-74.50363351,39.33613667,203 COOLIDGE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1114_39.02,-74.48631936,39.45169502,201A COOLIDGE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1114_39.03,-74.59620455,39.31678431,201 COOLIDGE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1114_4,-74.461294,39.3574155,203 IONA AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_42,-74.45366268,39.35404896,121 COOLIDGE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1114_43,-74.522947,39.32069,119 COOLIDGE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1114_44,-74.53428255,39.40445973,113 COOLIDGE AVENUE,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_1114_45,-74.37435216,39.39778301,6716 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1114_47,-74.37430594,39.41617694,6724 WASHINGTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_1114_48,-74.5733985,39.426148,104 RUCKREIM DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1114_5,-74.8671245,39.5931685,315 BISCAYNE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1114_51,-74.49311097,39.33784666,110 RUCKREIM DRIVE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1114_52,-74.37349876,39.4176541,113 RUCKREIM DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1114_55,-74.630202,39.407156,107 RUCKREIM DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1114_57,-74.56630695,39.35470269,6730 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1114_58,-74.6324085,39.3167575,100 MARTIN AVENUE,EGG HARBOR TWP,16,1950,1,COM4,3004 -0108_1114_61,-74.51724287,39.45732968,109 MARTIN AVENUE,EGG HARBOR TWP,,0,1,RES1,3002 -0108_1114_8.01,-74.7539222,39.43081874,307 COOLIDGE AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1114_8.02,-74.47191392,39.49465083,305 COOLIDGE AVENUE,EGG HARBOR TWP,16,2002,1,COM7,3004 -0108_1114_9,-74.457591,39.490154,303 COOLIDGE AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1115_3,-74.50302785,39.42966234,103 MARTIN AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1115_4,-74.5243705,39.398242,105 MARTIN AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1115_4.01,-74.5974185,39.420802,107 MARTIN AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1116_1,-74.5935955,39.3128775,6690 WASHINGTON AVENUE,EGG HARBOR TWP,15,1930,1,RES1,3001 -0108_1116_10,-74.5814765,39.3372265,6692 WASHINGTON AVENUE,EGG HARBOR TWP,15,1926,1,RES1,3001 -0108_1116_2,-74.827162,39.3944675,5 WOODROW AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1116_3,-74.36778981,39.41078286,6712 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1116_4,-74.634118,39.3661255,6708 WASHINGTON AVENUE,EGG HARBOR TWP,16,1936,1,RES1,3001 -0108_1116_5,-74.5400825,39.3739325,6706 WASHINGTON AVENUE,EGG HARBOR TWP,15,1930,1,RES1,3001 -0108_1116_6,-74.40935281,39.38204343,6702 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1116_7,-74.52385683,39.31917804,6698 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1116_8,-74.60678766,39.4257026,6696 WASHINGTON AVENUE,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_1116_9,-74.516354,39.3302735,6694 WASHINGTON AVENUE,EGG HARBOR TWP,15,1926,1,RES1,3001 -0108_1117_1,-74.81590534,39.392272,6680 WASHINGTON AVENUE,EGG HARBOR TWP,17,1950,1,RES1,3001 -0108_1117_2,-74.62684485,39.4594161,5 UIBEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1117_3,-74.48488706,39.49652513,112 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1940,1,COM3,3004 -0108_1117_4,-74.49683076,39.33480417,110 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1117_5,-74.47530169,39.48398888,6684 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1117_6,-74.8754065,39.5925805,6688 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1117_8,-74.36536521,39.41736884,6682 WASHINGTON AVENUE,EGG HARBOR TWP,16,1946,1,RES1,3001 -0108_1118_1,-74.51106564,39.33796675,117 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1118_10,-74.61637176,39.3675171,99 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1946,1,RES1,3001 -0108_1118_11,-74.5151615,39.3997155,101 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_1118_12,-74.52974338,39.41884754,103 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1118_13,-74.5926795,39.456738,113 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1118_14,-74.50763964,39.48057384,115 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1118_2,-74.6792665,39.4538285,114 DOUGLAS AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1118_3,-74.37802388,39.39860067,112 DOUGLAS AVENUE,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_1118_4,-74.45764934,39.34963449,111 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1940,1,RES3A,3001 -0108_1118_5,-74.71530134,39.46737618,105 ELDERBERRY AVENUE,EGG HARBOR TWP,16,1940,1,RES3A,3001 -0108_1118_6,-74.57970843,39.33939701,104 DOUGLAS AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_1118_7,-74.42657154,39.38359415,102 DOUGLAS AVENUE,EGG HARBOR TWP,16,1985,1,COM4,3004 -0108_1118_8,-74.5952375,39.407515,100 DOUGLAS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1118_9,-74.43983615,39.36691784,4 WOODROW AVENUE,EGG HARBOR TWP,16,1946,1,RES1,3001 -0108_1119_1,-74.49322699,39.46522461,111 DOUGLAS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1119_11,-74.8116665,39.6430275,103 DOUGLAS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1119_12,-74.49944363,39.4877487,105 DOUGLAS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1119_13,-74.49044,39.430521,109 DOUGLAS AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1119_2,-74.7895595,39.634365,108 CYPRESS AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1119_4,-74.53403217,39.31358749,104 CYPRESS AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1119_5,-74.5352846,39.37822635,100 CYPRESS AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_1119_6,-74.57549353,39.41837009,12 WOODROW AVENUE,EGG HARBOR TWP,16,1950,2,RES1,3001 -0108_1119_7,-74.86667434,39.56457998,10 WOODROW AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1119_8,-74.70411053,39.44706613,8 WOODROW AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1119_9,-74.50481243,39.43770977,6 WOODROW AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1120_1,-74.63944467,39.53180552,109 CYPRESS AVENUE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1120_10,-74.546177,39.52635,103 CYPRESS AVENUE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1120_12,-74.6004037,39.37331542,107 CYPRESS AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_1120_12.01,-74.78285752,39.31311018,105 CYPRESS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1120_2,-74.602279,39.370531,208 COOLIDGE AVENUE,EGG HARBOR TWP,16,1990,1,COM1,3004 -0108_1120_4,-74.5749795,39.430118,202 COOLIDGE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1120_5,-74.36971018,39.41449895,200 COOLIDGE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1120_6,-74.53780957,39.46291028,22 WOODROW AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1120_7,-74.557958,39.3964015,20 WOODROW AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1120_8,-74.6533205,39.3948285,18 WOODROW AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1120_9,-74.50231,39.4343055,16 WOODROW AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1121_1,-74.5238715,39.38859583,19 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1121_2,-74.7197165,39.429374,21 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1121_3,-74.58324423,39.36406115,216 COOLIDGE AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1121_4,-74.78666913,39.60943872,22 UIBEL AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1121_5,-74.78792355,39.64113815,20 UIBEL AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1122_1,-74.4998595,39.3298815,117 DOUGLAS AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1122_2,-74.558404,39.39915017,17 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1122_3,-74.58128891,39.36636432,14 UIBEL AVENUE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_1122_4,-74.5534005,39.435918,115 DOUGLAS AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1122_5,-74.4795757,39.43264966,16 UIBEL AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1123_1,-74.50146182,39.33784703,2626 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1123_2,-74.68536727,39.49678583,10 UIBEL AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1123_3,-74.5477475,39.376559,6 UIBEL AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1123_4,-74.5421795,39.50399,4 UIBEL AVENUE,EGG HARBOR TWP,16,1956,1,RES2,3005 -0108_1123_5,-74.7182475,39.43697779,2628 TILTON ROAD,EGG HARBOR TWP,16,1955,2,RES1,3001 -0108_1124_1,-74.50717291,39.40481009,2 ROBIN ROAD,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1124_10,-74.81864433,39.36584627,20 ROBIN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1124_11,-74.492738,39.33249,22 ROBIN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1124_12,-74.56703024,39.3554471,24 ROBIN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1124_13,-74.63284312,39.602446,26 ROBIN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1124_14,-74.69177564,39.48322936,28 ROBIN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1124_15,-74.88316139,39.49645271,2616 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1124_16,-74.949456,39.512632,22 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1955,1,GOV1,3004 -0108_1124_17,-74.79996026,39.63395779,18 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1124_18,-74.3627185,39.4189485,16 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1124_19,-74.3649258,39.42223552,14 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1124_2,-74.954045,39.5179055,4 ROBIN ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1124_20,-74.51065788,39.33734937,10 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1930,2,RES1,3001 -0108_1124_21,-74.55101653,39.3735202,8 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1124_22,-74.45058962,39.46387671,6 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_1124_23,-74.570215,39.428098,4 IDLEWOOD AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1124_24,-74.53977507,39.38465185,2618 TILTON ROAD,EGG HARBOR TWP,17,1940,1,GOV1,3004 -0108_1124_3,-74.60053654,39.33022656,6 ROBIN ROAD,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1124_4,-74.45261552,39.37280314,8 ROBIN ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1124_5,-74.6055935,39.3323745,10 ROBIN ROAD,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_1124_6,-74.62805169,39.35936201,12 ROBIN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1124_7,-74.6082803,39.36402592,14 ROBIN ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1124_8,-74.398532,39.394222,16 ROBIN ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1124_9,-74.4791272,39.34637733,18 ROBIN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1125_1,-74.65963079,39.45523184,104 SEAGULL DRIVE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1125_10,-74.55205902,39.37563159,27 ROBIN ROAD,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_1125_11,-74.59686175,39.36552294,25 ROBIN ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_12,-74.503979,39.327396,23 ROBIN ROAD,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1125_13,-74.47734429,39.34311167,21 ROBIN ROAD,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1125_14,-74.50646979,39.32972025,19 ROBIN ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_15,-74.5354135,39.398386,17 ROBIN ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_16,-74.6123273,39.32182968,15 ROBIN ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_17,-74.557671,39.474461,102 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_2,-74.49944928,39.43307539,102 WOODPECKER ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_3,-74.8057665,39.377794,104 WOODPECKER ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_4,-74.7648295,39.308094,106 WOODPECKER ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1125_5,-74.64286502,39.53145616,108 WOODPECKER ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_6,-74.50800732,39.40707393,110 WOODPECKER ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_7,-74.5907055,39.3188385,112 WOODPECKER ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1125_8,-74.60627386,39.3929497,114 WOODPECKER ROAD,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1125_9,-74.62228172,39.43265872,29 ROBIN ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_1126_1,-74.4674095,39.49267,110 SEAGULL DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_10,-74.677616,39.3858655,207 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_11,-74.59401689,39.31669717,205 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_12,-74.7101265,39.424301,203 SANDPIPER DRIVE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_1126_13,-74.91659439,39.53974313,121 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_14,-74.517555,39.3904725,119 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_15,-74.59750863,39.30908131,117 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_16,-74.64043565,39.52924455,115 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_17,-74.552111,39.384512,113 WOODPECKER ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1126_18,-74.599604,39.3802855,111 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_19,-74.51848996,39.44389498,109 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_2,-74.380902,39.4146265,102 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_20,-74.3757214,39.39737961,107 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_21,-74.38402254,39.39424584,105 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_22,-74.514627,39.403502,103 WOODPECKER ROAD,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1126_23,-74.58641808,39.3800876,106 SEAGULL DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_24,-74.58336354,39.37693031,108 SEAGULL DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_3,-74.59867946,39.38262354,104 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_4,-74.559283,39.358486,106 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_5,-74.4892535,39.472889,108 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_6,-74.79333481,39.53458046,110 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_1126_7,-74.51411267,39.39479609,112 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_8,-74.582533,39.4785805,114 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1126_9,-74.52366182,39.38894692,209 SANDPIPER DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1127_1,-74.47732598,39.47880713,116 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_10,-74.40497775,39.38507795,211 SANDPIPER DRIVE,EGG HARBOR TWP,16,1960,1,IND2,3002 -0108_1127_11,-74.438561,39.3700085,113 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_12,-74.48798516,39.33749616,111 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1960,1,RES3A,3001 -0108_1127_13,-74.58593593,39.33153464,109 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_14,-74.504087,39.32663,107 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_15,-74.6328392,39.42998904,105 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_16,-74.7341715,39.448941,103 NIGHTINGALE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_17,-74.51797416,39.41142119,112 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_18,-74.81595682,39.52119552,114 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_2,-74.477113,39.339322,102 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_3,-74.5793418,39.43029946,104 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_4,-74.4622065,39.492353,106 BOB WHITE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1127_5,-74.5765635,39.48021,108 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_6,-74.61515434,39.52237452,110 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_7,-74.7983955,39.635446,112 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1127_8,-74.46879378,39.34359834,114 BOB WHITE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_1127_9,-74.45716518,39.48804198,213 SANDPIPER DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_1,-74.5883105,39.377247,118 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_10,-74.58097216,39.48295598,219 SANDPIPER DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_11,-74.38516177,39.39261736,217 SANDPIPER DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_12,-74.5267095,39.3123235,113 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_13,-74.63725096,39.52471413,111 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_14,-74.5056665,39.3244965,109 BOB WHITE ROAD,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1128_15,-74.3637655,39.4153285,107 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_16,-74.5985558,39.36682204,105 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_17,-74.5207415,39.320576,103 BOB WHITE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_2,-74.490327,39.3316525,120 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_3,-74.6827995,39.5872625,100 CARDINAL ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_4,-74.589963,39.4252845,102 CARDINAL ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_5,-74.8369525,39.4028165,104 CARDINAL ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_6,-74.68083136,39.44442724,106 CARDINAL ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_7,-74.49065811,39.33552267,108 CARDINAL ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_8,-74.63872912,39.62225316,110 CARDINAL ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1128_9,-74.525473,39.3970205,112 CARDINAL ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_1,-74.41412468,39.37202696,3592 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1129_11,-74.49174716,39.33689951,127 SEAGULL DRIVE,EGG HARBOR TWP,15,1999,1,RES1,3001 -0108_1129_11.01,-74.5662867,39.37355931,11 LARUE AVENUE,EGG HARBOR TWP,16,1999,1,COM1,3004 -0108_1129_12,-74.72405999,39.45920993,125 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_13,-74.62456781,39.42079341,123 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES3A,3001 -0108_1129_14,-74.5335675,39.3989995,121 SEAGULL DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1129_15,-74.48504628,39.43364984,119 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3002 -0108_1129_16,-74.56132918,39.5468453,117 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_17,-74.69781846,39.3537753,115 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_18,-74.61556284,39.31940255,113 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_19,-74.5418725,39.3818365,111 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_20,-74.87738667,39.5680095,109 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_21,-74.46224796,39.49668485,107 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,COM1,3004 -0108_1129_22,-74.422876,39.3746355,105 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_23,-74.9240175,39.5219855,103 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1129_24,-74.62637913,39.41599231,101 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES3A,3001 -0108_1129_26,-74.627,39.4351145,2612 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1129_28,-74.62207022,39.43466085,2604 TILTON ROAD,EGG HARBOR TWP,17,1951,1,RES1,3001 -0108_1129_29,-74.50078099,39.33656283,2600 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1129_30,-74.725478,39.5869985,2598 TILTON ROAD,EGG HARBOR TWP,,0,1,COM1,3004 -0108_1129_31,-74.51630735,39.43324704,2594 TILTON ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1129_7,-74.457979,39.351911,201 ABBOTT AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1130_1,-74.83063282,39.45507667,2588 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1130_2,-74.52276102,39.32125567,3 VAN MAR AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1130_3,-74.5858445,39.37183783,5 VAN MAR AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1131_1,-74.815359,39.6535535,2 LARUE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1131_2,-74.88571582,39.46896632,209 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1131_3,-74.55068479,39.36868666,207 SEAGULL DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1131_4,-74.54795922,39.47602755,205 SEAGULL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1131_4.01,-74.569571,39.4113315,12 LARUE AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_1201_1,-74.6562926,39.48907163,2500 SPRUCE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1201_2.01,-74.55453672,39.46971357,103 GOLDENROD LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1201_2.02,-74.6338285,39.35953,101 GOLDENROD LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1206_1,-74.60066093,39.31105619,13 GOLDENROD LANE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1206_2,-74.569194,39.412567,15 GOLDENROD LANE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1206_3,-74.60412476,39.32530793,17 GOLDENROD LANE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1206_4,-74.54250228,39.39552058,1 WEST AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_1206_5,-74.55784867,39.39883818,3 WEST AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1206_6,-74.50540143,39.52052976,5 WEST AVENUE,EGG HARBOR TWP,16,1960,1,RES3A,3001 -0108_1206_7,-74.369248,39.4061475,4 ADELLA AVENUE,EGG HARBOR TWP,16,1968,1,RES3A,3001 -0108_1206_8,-74.52090267,39.38989231,2 ADELLA AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1207_1,-74.60226641,39.49936081,2561 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1207_2,-74.40936661,39.38120568,2567 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1207_3,-74.82101103,39.63089284,8 ADELLA AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1208_1,-74.73466223,39.44961548,100 WEST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_10,-74.51797654,39.43702178,106 WEST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_11,-74.87093,39.60347,104 WEST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_12,-74.63667568,39.38638296,102 WEST AVENUE,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_1208_2,-74.7184125,39.436427,7 ADELLA AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_3,-74.53579769,39.45789707,101 EAST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_4,-74.62395308,39.37818174,103 EAST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_5,-74.475322,39.338659,105 EAST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_6,-74.7894865,39.6309815,107 EAST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_7,-74.457557,39.3507535,109 EAST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_8,-74.71889068,39.64071189,2 SHORT STREET,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1208_9,-74.5984002,39.41004608,108 WEST AVENUE,EGG HARBOR TWP,16,1968,1,RES3A,3001 -0108_1209_14,-74.5338895,39.4045225,6636 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_1209_16,-74.6021373,39.31567443,4 NORTH AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1209_17,-74.50538615,39.34053022,12 NORTH FARR AVENUE,EGG HARBOR TWP,16,1968,1,COM1,3004 -0108_1209_18,-74.6062815,39.5021445,110 EAST AVENUE,EGG HARBOR TWP,16,1968,1,COM1,3004 -0108_1209_19,-74.61718452,39.43784016,108 EAST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1209_2,-74.87230903,39.57578716,2577 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1209_20,-74.79068114,39.59678063,106 EAST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1209_21,-74.49798481,39.51458944,104 EAST AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1209_22,-74.62783676,39.43525201,102 EAST AVENUE,EGG HARBOR TWP,16,1968,1,GOV1,3004 -0108_1209_23,-74.70093532,39.63295933,100 EAST AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1209_24,-74.552417,39.402894,14 NORTH FARR AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1209_3,-74.7934031,39.62811151,2579 TILTON ROAD,EGG HARBOR TWP,16,1992,1,COM1,3004 -0108_1209_8,-74.57517494,39.51149817,27 SILVER AVENUE,EGG HARBOR TWP,16,1964,1,GOV1,3004 -0108_1211_10,-74.642613,39.5261175,34A PINEVIEW AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1211_11,-74.52687849,39.45563858,32 PINEVIEW AVENUE,EGG HARBOR TWP,16,1939,1,RES1,3001 -0108_1211_12,-74.46497688,39.49372126,30 PINEVIEW AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1211_13,-74.58636333,39.33523747,28 PINEVIEW AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1211_15,-74.56013126,39.36446104,26 PINEVIEW AVENUE,EGG HARBOR TWP,16,1920,2,RES1,3001 -0108_1211_16,-74.445262,39.3725355,6662 BLACK HORSE PIKE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1211_17,-74.7611615,39.6366235,6660 BLACK HORSE PIKE,EGG HARBOR TWP,16,1940,1,RES3A,3001 -0108_1211_19,-74.62755652,39.40711774,6654 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1211_25,-74.37976326,39.41419713,14 SILVER AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1211_4,-74.61190437,39.39988588,2593 TILTON ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_1211_8,-74.507401,39.4917975,6656 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1211_9,-74.60384773,39.36520336,34 PINEVIEW AVENUE,EGG HARBOR TWP,16,1936,2,RES1,3001 -0108_1213_1,-74.628848,39.4087995,25 SILVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_1214_3,-74.57567325,39.35206697,23 SILVER AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1216_1,-74.6241465,39.4321605,21 SILVER AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1216_2,-74.50395665,39.51927293,19 SILVER AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1218_1,-74.82479807,39.41101953,17 SILVER AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1219_1,-74.86629558,39.49776269,6646 BLACK HORSE PIKE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_1219_2,-74.79719569,39.63733043,13 SILVER AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1219_3,-74.5729755,39.42959533,11 SILVER AVENUE,EGG HARBOR TWP,53,1965,1,RES1,3001 -0108_1219_4,-74.53082716,39.30841385,9 SILVER AVENUE,EGG HARBOR TWP,52,1964,1,RES1,3001 -0108_1219_5,-74.58415596,39.41649233,7 SILVER AVENUE,EGG HARBOR TWP,52,1994,1,RES1,3001 -0108_1219_6,-74.406102,39.389308,5 SILVER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1219_7,-74.8896375,39.472004,6648 BLACK HORSE PIKE,EGG HARBOR TWP,16,1956,2,RES1,3001 -0108_1220_1,-74.821832,39.6520055,4 NORTH FARR AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1220_2,-74.46335108,39.35824218,3 SOUTH AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1220_3,-74.4628845,39.49672567,5 SOUTH AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1220_4,-74.58817061,39.36719032,7 SOUTH AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1221_1,-74.58639175,39.45783387,10 NORTH FARR AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1221_2,-74.9545865,39.515872,3 NORTH AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_1221_3,-74.46094488,39.35777571,5 NORTH AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1221_4,-74.63599566,39.55013348,13 FOSTER AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_1221_5,-74.498174,39.4314125,11 FOSTER AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1221_6,-74.39816969,39.39380094,6 SOUTH AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1221_7,-74.47148632,39.34539154,4 SOUTH AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1221_8,-74.55660384,39.35571958,2 SOUTH AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1221_9,-74.5712565,39.487797,8 NORTH FARR AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1222_1.01,-74.55495429,39.36474259,5 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES1,3004 -0108_1222_1.02,-74.80157567,39.64849499,7 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.03,-74.5385634,39.39063489,9 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.04,-74.6066605,39.4894675,11 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.05,-74.51199896,39.32468806,11A GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.06,-74.67065497,39.54454768,1A ADELLA AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.07,-74.5053055,39.3290535,1 ADELLA AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.08,-74.48643178,39.45517878,3 ADELLA AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.09,-74.590481,39.334814,5 ADELLA AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.10,-74.51428572,39.32188919,5A ADELLA AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1222_1.11,-74.52685084,39.46555952,9 ADELLA AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1222_1.12,-74.52020831,39.38434095,301C FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.13,-74.718558,39.5769165,301B FORK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1222_1.14,-74.5371189,39.31291301,301A FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_1.15,-74.55951169,39.3723153,301 FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1222_10,-74.370938,39.40012133,105 NEW STREET,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1222_11,-74.55267144,39.46589429,107 NEW STREET,EGG HARBOR TWP,16,1960,1,RES3A,3004 -0108_1222_12,-74.4037485,39.380627,109 NEW STREET,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_1222_13,-74.6088315,39.378208,111 NEW STREET,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1222_14,-74.5909116,39.39850641,110 NEW STREET,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1222_15,-74.57781502,39.3389807,108 NEW STREET,EGG HARBOR TWP,16,1973,1,RES3B,3001 -0108_1222_16,-74.61058303,39.31943984,106 NEW STREET,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1222_17,-74.60017031,39.31661442,104 NEW STREET,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1222_18,-74.4996555,39.334671,102 NEW STREET,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_19,-74.48365031,39.44395547,100 NEW STREET,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_20,-74.46243245,39.35436262,101 WEST AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_21,-74.8203061,39.64278505,103 WEST AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_22,-74.52623408,39.31096753,105 WEST AVENUE,EGG HARBOR TWP,16,1960,1,COM1,3004 -0108_1222_23,-74.5951645,39.34174,107 WEST AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1222_24,-74.4959415,39.4988345,109 WEST AVENUE,EGG HARBOR TWP,16,1968,1,RES3A,3001 -0108_1222_25,-74.6398205,39.528581,111 WEST AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_26,-74.568793,39.4282625,19 NORTH FARR AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_27,-74.64427331,39.54245286,17 NORTH FARR AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_28,-74.60259717,39.38166601,15 NORTH FARR AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1222_29,-74.72748594,39.58957955,13 NORTH FARR AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_30,-74.605139,39.407728,11 NORTH FARR AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_31,-74.56283383,39.37109603,9 NORTH FARR AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1222_32,-74.81073078,39.63617563,7 NORTH FARR AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_36,-74.5063875,39.478143,6622 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1222_38,-74.56759128,39.36237191,6610 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1222_40,-74.68397466,39.36049444,303 FORK ROAD,EGG HARBOR TWP,16,1998,1,RES3A,3002 -0108_1222_43,-74.446646,39.3729405,5 NORTH FARR AVENUE,EGG HARBOR TWP,16,1960,1,RES3A,3001 -0108_1222_44,-74.50696988,39.32331767,3 NORTH FARR AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1222_8,-74.5288075,39.3111375,101 NEW STREET,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1222_9,-74.53576765,39.45039463,103 NEW STREET,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1223_1,-74.5055495,39.3381065,111 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_1.01,-74.66599135,39.45496795,109 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_1.02,-74.86317866,39.56291424,107 GOLDENROD LANE,EGG HARBOR TWP,16,2003,1,RES1,3002 -0108_1223_1.03,-74.70835559,39.4216487,105 GOLDENROD LANE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_1223_2.01,-74.54118507,39.39394916,322 FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_2.02,-74.564595,39.4108585,320 FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_2.03,-74.6610255,39.3645255,318 FORK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1223_2.04,-74.45991441,39.4926447,316 FORK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1223_2.05,-74.765656,39.35063833,314 FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_2.06,-74.8368917,39.62667482,312 FORK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1223_2.07,-74.37474454,39.39992258,310 FORK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1223_2.08,-74.4873235,39.3492905,308 FORK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1223_2.09,-74.56957129,39.35362589,306 FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_2.10,-74.55955284,39.41397882,304 FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_2.11,-74.92617249,39.51904567,302 FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_2.12,-74.528335,39.39798867,300 FORK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_2.13,-74.67098174,39.36622067,121 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_1223_2.14,-74.57919642,39.33624231,119 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_1223_2.15,-74.946905,39.496169,117 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES3B,3001 -0108_1223_2.16,-74.37005514,39.41073698,115 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_1223_2.17,-74.67527543,39.50982797,113 GOLDENROD LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_7,-74.62236714,39.54420716,2508 SPRUCE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3002 -0108_1223_7.01,-74.48158508,39.4322838,2506 SPRUCE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1223_9,-74.48886311,39.533787,2504 SPRUCE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1223_9.01,-74.52517048,39.42309267,2502 SPRUCE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1224_10,-74.5584523,39.47548936,2572 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1224_5,-74.490672,39.4415965,2558 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1224_6,-74.92619376,39.48201795,2562 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1224_8,-74.60702405,39.38543777,2566 TILTON ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1224_9,-74.6235371,39.62564919,2568 TILTON ROAD,EGG HARBOR TWP,14,1940,1,RES1,3001 -0108_1301_1,-74.57508168,39.35564101,6301 DELILAH ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1301_10,-74.59810267,39.31321228,10 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_11,-74.5750915,39.342311,12 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES3A,3001 -0108_1301_12,-74.6640555,39.5282855,14 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_13,-74.68389908,39.44105622,16 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_14,-74.72463351,39.46014927,18 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_15,-74.59039235,39.51725945,20 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1301_16,-74.4645235,39.5469095,22 WINDSOR DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3002 -0108_1301_17,-74.51827265,39.31943253,24 WINDSOR DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1301_18,-74.86636383,39.59305472,26 WINDSOR DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3002 -0108_1301_19,-74.38163891,39.39592634,28 WINDSOR DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1301_2,-74.46125753,39.49105525,2 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_20,-74.5079975,39.463202,30 WINDSOR DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1301_21,-74.70316475,39.42824119,32 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1301_22,-74.5081223,39.43774762,34 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1301_23,-74.48721349,39.33864385,36 WINDSOR DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1301_24,-74.58008097,39.33466015,38 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,COM1,3002 -0108_1301_25,-74.726531,39.453343,40 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1301_26,-74.54538267,39.37402108,42 WINDSOR DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1301_27,-74.55574369,39.37558167,44 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3004 -0108_1301_28,-74.89044281,39.55701795,46 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1301_29,-74.63531607,39.53311365,48 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1301_3,-74.47341804,39.48166582,4 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_30,-74.852797,39.561124,50 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1301_31,-74.6427146,39.53831225,52 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1301_32,-74.535745,39.384441,54 WINDSOR DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3002 -0108_1301_34,-74.62480418,39.38525126,6324 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1301_37,-74.7748335,39.495166,6312 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3004 -0108_1301_38,-74.59370983,39.3633943,6314 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1301_4,-74.50283,39.4418375,6 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_41,-74.82045758,39.46279502,6300 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1301_45,-74.62424024,39.41858765,2544 TREMONT AVENUE,EGG HARBOR TWP,16,1949,1,RES1,3001 -0108_1301_47,-74.88487686,39.59483917,2542 TREMONT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1301_48,-74.47166969,39.4874087,2538 TREMONT AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3002 -0108_1301_5,-74.56711218,39.34195833,4 BERKSHIRE STREET,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_50.01,-74.49607217,39.33725948,2532 TREMONT AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1301_51,-74.3919035,39.392312,2526 TREMONT AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1301_52,-74.50119966,39.45193053,2520 TREMONT AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1301_54,-74.4714135,39.482439,2512 TREMONT AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_1301_54.01,-74.7101805,39.437461,2514 TREMONT AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1301_6,-74.719129,39.4497105,11 BERKSHIRE STREET,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1301_7,-74.87342585,39.59544103,9 BERKSHIRE STREET,EGG HARBOR TWP,16,1977,1,GOV1,3004 -0108_1301_8,-74.78816711,39.61441708,7 BERKSHIRE STREET,EGG HARBOR TWP,16,1977,1,RES3A,3001 -0108_1301_9,-74.86388553,39.44883935,8 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1302_1,-74.64542435,39.53332104,2 KINGSLEY DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1302_2,-74.48287749,39.34230708,4 KINGSLEY DRIVE,EGG HARBOR TWP,16,1977,1,IND2,3002 -0108_1302_3,-74.67850216,39.35193909,6 KINGSLEY DRIVE,EGG HARBOR TWP,16,1977,1,COM1,3004 -0108_1302_4,-74.545433,39.398986,8 KINGSLEY DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1302_5,-74.50136106,39.32646567,2 BERKSHIRE STREET,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1302_6,-74.65565867,39.63015602,7 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1302_7,-74.77977286,39.62443901,5 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1302_8,-74.40442166,39.39410135,3 WINDSOR DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1302_9,-74.80907964,39.62865986,1 WINDSOR DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1303_1,-74.484521,39.43216697,1 KINGSLEY DRIVE,EGG HARBOR TWP,16,1974,1,EDU1,3004 -0108_1303_10,-74.56605691,39.47825831,18 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_100,-74.48894784,39.33265962,35 KINGSLEY DRIVE,EGG HARBOR TWP,16,1978,1,COM4,3004 -0108_1303_101,-74.51246885,39.46029959,33 KINGSLEY DRIVE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1303_102,-74.4839895,39.349639,31 KINGSLEY DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1303_103,-74.59351384,39.50846582,29 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,IND6,3004 -0108_1303_104,-74.3670861,39.41850973,27 KINGSLEY DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_105,-74.57874268,39.34351952,25 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1303_106,-74.66249334,39.44381975,23 KINGSLEY DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_107,-74.5155505,39.4112585,21 KINGSLEY DRIVE,EGG HARBOR TWP,16,1982,1,GOV1,3004 -0108_1303_108,-74.6609095,39.402827,19 KINGSLEY DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_109,-74.6388385,39.381572,17 KINGSLEY DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1303_11,-74.585678,39.3599135,20 CHARLES DRIVE,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_1303_110,-74.754713,39.4336965,15 KINGSLEY DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1303_111,-74.52479813,39.31238106,13 KINGSLEY DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_112,-74.55179297,39.38013165,11 KINGSLEY DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1303_113,-74.56360477,39.40961105,9 KINGSLEY DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1303_114,-74.955576,39.4978315,7 KINGSLEY DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1303_115,-74.63780317,39.42984349,5 KINGSLEY DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_116,-74.95308291,39.51890549,3 KINGSLEY DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_119,-74.926189,39.5324895,65 KINGSLEY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_12,-74.495979,39.3347165,22 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_120,-74.8789482,39.60252279,67 KINGSLEY DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_13,-74.3680626,39.40624767,2523 RIDGE AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_1303_14,-74.52524443,39.31214035,2525 RIDGE AVENUE,EGG HARBOR TWP,16,1976,1,COM1,3004 -0108_1303_15,-74.60150571,39.38612189,2527 RIDGE AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1303_16,-74.55192524,39.36936617,2529 RIDGE AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1303_17.01,-74.66142,39.444463,1 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.02,-74.49751327,39.32785834,3 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.03,-74.64404125,39.39679914,5 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.04,-74.8213133,39.44397727,7 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1303_17.05,-74.48615328,39.53200052,9 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.06,-74.63485453,39.59775304,11 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,COM1,3002 -0108_1303_17.07,-74.920512,39.4913305,13 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.08,-74.43926717,39.36802249,15 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.09,-74.590378,39.404497,17 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.10,-74.863667,39.5957195,19 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1303_17.11,-74.52090366,39.39911006,21 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.12,-74.594548,39.3346605,23 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.13,-74.69990522,39.63412603,25 PATRIOT WALK,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1303_17.14,-74.39522535,39.38965005,27 PATRIOT WALK,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1303_17.15,-74.51439713,39.40929612,29 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1303_17.16,-74.9148125,39.49623,31 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.17,-74.53863901,39.39921383,33 PATRIOT WALK,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1303_17.18,-74.4866028,39.34905684,35 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.19,-74.93842,39.5195175,37 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.20,-74.49068072,39.44858436,39 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.21,-74.48936469,39.43860908,2553 RIDGE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_17.22,-74.6815465,39.4451045,2555 RIDGE AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_1303_17.23,-74.4940545,39.4489825,2557 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1303_17.24,-74.48913392,39.49805928,2559 RIDGE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1303_19.01,-74.50683558,39.44877161,1 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1303_19.02,-74.47931442,39.44930316,3 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1303_19.03,-74.37519941,39.41527138,5 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.04,-74.81376717,39.36732856,7 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1303_19.05,-74.57055526,39.34365769,9 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1303_19.06,-74.67050834,39.49362102,11 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1303_19.07,-74.64323066,39.43178032,13 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1303_19.08,-74.50434185,39.33825805,15 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1303_19.09,-74.78017106,39.58800728,17 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.10,-74.83830064,39.41713172,19 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.11,-74.6250898,39.37812873,21 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.12,-74.6634505,39.404926,23 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.13,-74.63566402,39.5161265,25 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.14,-74.60277981,39.43108699,27 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.15,-74.93401248,39.52093366,29 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.16,-74.47283906,39.48182421,31 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1303_19.17,-74.80525311,39.62863887,33 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1303_21,-74.48409324,39.34851217,2591 RIDGE AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_1303_22,-74.510487,39.50423533,2601 RIDGE AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_1303_24,-74.6464795,39.4043535,2605 RIDGE AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_1303_25,-74.59739393,39.43514532,2607 RIDGE AVENUE,EGG HARBOR TWP,16,1948,1,GOV1,3004 -0108_1303_26,-74.62505531,39.41799393,2613 RIDGE AVENUE,EGG HARBOR TWP,52,1970,1,RES1,3001 -0108_1303_28,-74.52036765,39.40720095,2617 RIDGE AVENUE,EGG HARBOR TWP,54,1970,1,RES1,3001 -0108_1303_29,-74.59777067,39.5321205,2619 RIDGE AVENUE,EGG HARBOR TWP,52,1970,2,RES1,3001 -0108_1303_3,-74.61624843,39.33969762,4 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_30,-74.68244,39.502884,2615 RIDGE AVENUE,EGG HARBOR TWP,53,1962,1,GOV1,3004 -0108_1303_32,-74.525539,39.3119685,101 TRUDY AVENUE,EGG HARBOR TWP,53,1960,1,GOV1,3004 -0108_1303_33,-74.6296065,39.4239375,105 TRUDY AVENUE,EGG HARBOR TWP,52,1954,1,RES1,3001 -0108_1303_35,-74.5258925,39.4485825,109 TRUDY AVENUE,EGG HARBOR TWP,52,1950,1,RES1,3001 -0108_1303_36,-74.7488045,39.447109,111 TRUDY AVENUE,EGG HARBOR TWP,52,1967,1,RES1,3001 -0108_1303_37,-74.62482915,39.39261375,113 TRUDY AVENUE,EGG HARBOR TWP,52,1969,1,RES1,3001 -0108_1303_38,-74.712187,39.4724625,115 TRUDY AVENUE,EGG HARBOR TWP,52,1960,1,RES1,3001 -0108_1303_39,-74.72446875,39.45860536,117 TRUDY AVENUE,EGG HARBOR TWP,52,1950,1,RES1,3001 -0108_1303_4,-74.4620785,39.3508755,6 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_40,-74.607554,39.484291,119 TRUDY AVENUE,EGG HARBOR TWP,52,1950,1,RES1,3001 -0108_1303_42,-74.92445692,39.51007449,121 TRUDY AVENUE,EGG HARBOR TWP,52,1955,1,RES1,3001 -0108_1303_44,-74.54861247,39.36880118,125 TRUDY AVENUE,EGG HARBOR TWP,52,1967,1,COM10,3003 -0108_1303_45,-74.78315058,39.45769025,127 TRUDY AVENUE,EGG HARBOR TWP,52,1950,1,RES1,3001 -0108_1303_47,-74.55619786,39.50097648,6422 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1303_5,-74.603023,39.323046,8 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_50,-74.6028422,39.30855097,6414 BLACK HORSE PIKE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1303_52,-74.481907,39.346618,6408 BLACK HORSE PIKE,EGG HARBOR TWP,16,1940,2,RES1,3001 -0108_1303_54,-74.44968814,39.48931359,6404 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3004 -0108_1303_55,-74.78348467,39.30894,6400 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1303_56,-74.81133926,39.63621784,56 WINDSOR DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_57,-74.74974876,39.44715983,DELILAH OAKS,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1303_58,-74.76349493,39.66921141,58 WINDSOR DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1303_59,-74.59019883,39.32551124,60 WINDSOR DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1303_6,-74.49299822,39.49580158,10 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_60,-74.52367927,39.44871509,62 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_61,-74.92541572,39.50858706,64 WINDSOR DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1303_62,-74.60427546,39.41700669,66 WINDSOR DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1303_63,-74.51124612,39.4037066,68 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_64,-74.75504382,39.43192776,70 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,GOV1,3004 -0108_1303_65,-74.54486116,39.38721054,72 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_66,-74.61492568,39.42886957,74 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_67,-74.60778607,39.44117532,76 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_68,-74.5786185,39.3509535,78 WINDSOR DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1303_69,-74.49320715,39.33397152,80 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_7,-74.58082,39.3646095,12 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_70,-74.831373,39.533394,82 WINDSOR DRIVE,EGG HARBOR TWP,16,1986,1,GOV1,3004 -0108_1303_71,-74.75474914,39.44556503,11 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_72,-74.548967,39.463767,13 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_73,-74.55304281,39.46442148,15 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_74,-74.3845075,39.3978935,17 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_75,-74.58660547,39.40139045,19 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_76,-74.47418928,39.48637523,18 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_77,-74.52200626,39.39436004,16 ABBEY COURT,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_1303_78,-74.4772965,39.3400435,14 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_79,-74.51077707,39.45267535,12 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_8,-74.68974194,39.58595116,14 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_1303_80,-74.76161604,39.63950443,10 ABBEY COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_81,-74.4975745,39.411383,75 KINGSLEY DRIVE,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_1303_82,-74.35611219,39.41435867,73 KINGSLEY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_83,-74.60983136,39.3523089,71 KINGSLEY DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1303_84,-74.61597265,39.32081251,69 KINGSLEY DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_86,-74.8305545,39.3787535,63 KINGSLEY DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1303_87,-74.79217155,39.64587134,61 KINGSLEY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_88,-74.45353333,39.50002119,59 KINGSLEY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_89,-74.57202835,39.33774018,57 KINGSLEY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_9,-74.63944933,39.38215476,16 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1303_90,-74.58005091,39.36048084,55 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1303_91,-74.49996085,39.33242448,53 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1303_92,-74.86732753,39.49721215,51 KINGSLEY DRIVE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1303_93,-74.579597,39.473532,49 KINGSLEY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1303_94,-74.78677044,39.6354915,47 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1303_95,-74.3866965,39.3923095,45 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1303_96,-74.60379491,39.37106473,43 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1303_97,-74.51582091,39.40035169,41 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1303_98,-74.786638,39.6612285,39 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,GOV1,3004 -0108_1303_99,-74.58010761,39.33615424,37 KINGSLEY DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1304_1,-74.71582189,39.64015024,1 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1304_10,-74.4523335,39.3703715,7 CHARLES DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3004 -0108_1304_11,-74.6950675,39.590866,5 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1304_12,-74.646691,39.3575835,3 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1304_2,-74.91612187,39.51040828,2501 RIDGE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3004 -0108_1304_3,-74.80252284,39.63304364,2503 RIDGE AVENUE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_1304_4,-74.71557239,39.38644975,2505 RIDGE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1304_5,-74.54899555,39.38763716,2507 RIDGE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1304_6,-74.36784291,39.42230419,15 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1304_7,-74.41525945,39.50476071,13 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_1304_8,-74.60373357,39.33088534,11 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1304_9,-74.70404472,39.37788811,9 CHARLES DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1305_1.01,-74.452843,39.354045,2502 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.02,-74.7647085,39.6371,2504 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.03,-74.35755066,39.41452552,2506 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.04,-74.48207754,39.34589888,2508 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.05,-74.80086862,39.64283542,2510 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.06,-74.55681657,39.37352113,2512 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.07,-74.63791615,39.36716253,2516 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_1305_1.08,-74.6362045,39.4440905,2518 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.09,-74.56839409,39.37374896,2520 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.10,-74.63620322,39.41265815,2522 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_1305_1.11,-74.56397,39.40844756,2524 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,IND1,3002 -0108_1305_1.12,-74.5829645,39.47443,2526 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_1.13,-74.46704537,39.49325216,2530 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_1305_1.14,-74.76245033,39.504819,2532 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_1305_1.15,-74.59782742,39.30800188,2528 RIDGE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.16,-74.5212985,39.460036,20 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.17,-74.64225956,39.40368331,19 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.18,-74.6746985,39.350557,18 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.19,-74.49893121,39.53819858,17 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.20,-74.57018905,39.41428419,16 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.21,-74.51635003,39.52842806,15 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1305_1.22,-74.87235979,39.60311893,14 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.23,-74.52005331,39.39156278,13 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.24,-74.86459969,39.60197746,12 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1305_1.25,-74.64791448,39.53535366,11 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1305_1.26,-74.64847541,39.53110616,10 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1305_1.27,-74.473147,39.493896,9 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.28,-74.6023065,39.412141,8 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.29,-74.48391706,39.47934621,7 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_1305_1.30,-74.81019591,39.63704987,6 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.31,-74.52561933,39.3180665,5 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.32,-74.606352,39.3497735,4 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1305_1.33,-74.94582885,39.53988084,3 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1305_1.34,-74.4459355,39.373899,2 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1305_1.35,-74.49935755,39.33276868,1 TIMBERWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1305_11,-74.64508358,39.40831832,6530 BLACK HORSE PIKE,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_1305_12,-74.51560208,39.39494979,6528 BLACK HORSE PIKE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_1305_13,-74.627411,39.4213325,6526 BLACK HORSE PIKE,EGG HARBOR TWP,16,1948,2,RES1,3001 -0108_1305_14,-74.6246845,39.4886745,6522 BLACK HORSE PIKE,EGG HARBOR TWP,53,1940,1,RES1,3001 -0108_1305_15,-74.84596424,39.58659663,6518 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1305_16,-74.61592016,39.34903977,6514 BLACK HORSE PIKE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1305_17,-74.38805861,39.39336831,6512 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3002 -0108_1305_19,-74.64735115,39.52532331,6504 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1305_22,-74.535484,39.4050055,2616 RIDGE AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_1305_23,-74.80517163,39.37574654,2612 RIDGE AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1305_24,-74.49650604,39.43411005,2606 RIDGE AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_1305_25,-74.80116438,39.65852443,2602 RIDGE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1305_26,-74.8423145,39.384623,2594 RIDGE AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1305_28.01,-74.80219144,39.63535654,2574 RIDGE AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1305_28.02,-74.83662773,39.6399208,2576 RIDGE AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1305_28.03,-74.60831328,39.50184417,2578 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_28.04,-74.6028445,39.4096625,2580 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1305_29,-74.567004,39.373499,2564 RIDGE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1305_30,-74.55318883,39.363574,2558 RIDGE AVENUE,EGG HARBOR TWP,16,1951,1,GOV1,3004 -0108_1305_31.01,-74.604257,39.368194,2554 RIDGE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1305_31.02,-74.53263128,39.40378497,2552 RIDGE AVENUE,EGG HARBOR TWP,16,1993,1,GOV1,3004 -0108_1305_32.01,-74.54669528,39.47252195,100 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.02,-74.50891341,39.32732366,101 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1305_32.03,-74.36911341,39.41521073,102 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1305_32.04,-74.45568472,39.49064418,103 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.05,-74.57314643,39.35692223,104 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.06,-74.49923669,39.43456528,105 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.07,-74.40353289,39.38014611,300 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.08,-74.950549,39.5151315,301 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.09,-74.3727225,39.4051635,302 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.11,-74.490262,39.3340765,304 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.12,-74.56084001,39.35924883,305 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.13,-74.372455,39.403057,500 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.14,-74.50593347,39.33172052,501 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1305_32.15,-74.80953628,39.52010337,502 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.16,-74.55547794,39.47209533,503 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1305_32.17,-74.65214753,39.45852083,504 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1305_32.18,-74.50915183,39.32231851,505 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.19,-74.6254658,39.4585079,506 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.21,-74.55701383,39.50081664,601 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.22,-74.74687144,39.63436711,602 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.23,-74.51748941,39.32385193,603 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.24,-74.57593306,39.52133746,604 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.25,-74.560105,39.5017775,605 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.26,-74.355277,39.4146525,606 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.27,-74.49810357,39.49881834,607 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.28,-74.55469042,39.47733987,700 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.29,-74.5161625,39.3992695,701 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.31,-74.492923,39.4340845,703 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.32,-74.63129098,39.44537959,704 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.33,-74.5485195,39.5337315,705 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.34,-74.6014935,39.5020965,706 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3004 -0108_1305_32.35,-74.506868,39.4933235,707 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES3A,3001 -0108_1305_32.36,-74.51406763,39.32394706,800 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1305_32.37,-74.6782642,39.4948743,801 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.38,-74.62003534,39.43678834,802 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.39,-74.77668857,39.62483017,803 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.41,-74.56618484,39.37431314,1000 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.42,-74.817985,39.565701,1001 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.43,-74.66727789,39.6332403,1002 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.44,-74.45105753,39.49210934,1003 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.45,-74.49087,39.331417,1004 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.46,-74.52291141,39.31566218,1005 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.47,-74.81561485,39.52087767,1006 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1305_32.48,-74.7907155,39.6324685,1007 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.49,-74.5169095,39.3929005,1200 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.51,-74.598285,39.3139835,1202 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.52,-74.808899,39.5611455,1203 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.53,-74.508869,39.3233955,1204 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.54,-74.8209495,39.5308065,1205 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_32.55,-74.740061,39.639487,1206 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1305_34,-74.570231,39.3561765,2503 SPRUCE AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1305_35,-74.51041,39.3255555,2505 SPRUCE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1305_38,-74.48650832,39.34785256,2542 RIDGE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1305_5,-74.60222151,39.44335683,2501 SPRUCE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1305_8.01,-74.522123,39.388389,1 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.02,-74.49073524,39.47108607,3 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.03,-74.60443003,39.50183845,5 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.04,-74.64778467,39.5333585,7 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.05,-74.6058375,39.5933085,9 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.06,-74.48384643,39.34606581,11 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.07,-74.5064675,39.4249555,13 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.08,-74.79001254,39.5951152,15 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.09,-74.75595219,39.66760615,17 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3004 -0108_1305_8.11,-74.39629158,39.39154818,21 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.12,-74.54634434,39.38577406,23 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1305_8.13,-74.60371432,39.38154597,25 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.14,-74.4974845,39.5003005,27 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1305_8.15,-74.490494,39.3375225,29 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1305_8.16,-74.5068125,39.410674,31 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.17,-74.49382462,39.33235917,33 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.18,-74.80797764,39.63055357,118 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.19,-74.624798,39.490403,116 GREYSTONE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1305_8.21,-74.49833101,39.41710716,112 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.22,-74.6295995,39.361467,110 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.23,-74.62783555,39.36105369,108 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.24,-74.5297345,39.3897885,106 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.25,-74.62857832,39.34971752,104 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.26,-74.7952351,39.52868001,102 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.27,-74.56605231,39.47931361,100 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.28,-74.432083,39.3689605,34 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1305_8.29,-74.69190223,39.48830782,32 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.31,-74.63453016,39.36501872,28 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.32,-74.46491754,39.49256775,26 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.33,-74.69308261,39.51063711,24 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.34,-74.55587,39.468417,22 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.35,-74.499685,39.3367495,20 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.36,-74.56003824,39.37297931,18 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.37,-74.51851183,39.394399,16 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1305_8.38,-74.794519,39.6395145,14 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.39,-74.49421713,39.49201652,12 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.41,-74.4888295,39.3376085,8 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.42,-74.570251,39.3431545,6 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.43,-74.64983939,39.45838664,4 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1305_8.44,-74.44781994,39.3724322,2 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_1305_9,-74.50235813,39.48840571,2533 SPRUCE AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1306_1,-74.86959261,39.45331904,2621 RIDGE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1306_10,-74.5587134,39.44340713,2641 RIDGE AVENUE,EGG HARBOR TWP,53,1966,1,RES1,3001 -0108_1306_11,-74.552352,39.46509,2643 RIDGE AVENUE,EGG HARBOR TWP,52,1970,1,RES1,3001 -0108_1306_12,-74.614408,39.3568435,2645 RIDGE AVENUE,EGG HARBOR TWP,52,1955,2,RES1,3001 -0108_1306_13,-74.600226,39.3195405,2647 RIDGE AVENUE,EGG HARBOR TWP,52,1965,1,RES1,3001 -0108_1306_2,-74.4990895,39.335374,2623 RIDGE AVENUE,EGG HARBOR TWP,51,1962,1,RES1,3001 -0108_1306_3,-74.50031332,39.32919054,2627 RIDGE AVENUE,EGG HARBOR TWP,52,1959,1,GOV1,3004 -0108_1306_4,-74.6285045,39.428423,2629 RIDGE AVENUE,EGG HARBOR TWP,52,1970,1,RES1,3001 -0108_1306_5,-74.52540886,39.31320456,2631 RIDGE AVENUE,EGG HARBOR TWP,52,1965,1,RES1,3001 -0108_1306_6,-74.65676567,39.3472582,2633 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1306_7,-74.381803,39.3961055,2635 RIDGE AVENUE,EGG HARBOR TWP,54,1978,1,RES1,3001 -0108_1306_8,-74.56873605,39.34492319,2637 RIDGE AVENUE,EGG HARBOR TWP,52,1966,1,RES1,3001 -0108_1306_9,-74.73820948,39.46631861,2639 RIDGE AVENUE,EGG HARBOR TWP,54,1978,1,GOV1,3004 -0108_1307_1,-74.57356268,39.42637084,8 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_1307_2,-74.77811254,39.64149632,6 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1307_3,-74.66616266,39.46303449,4 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1307_4,-74.506835,39.3403285,2 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1307_5,-74.761344,39.4295885,75 WINDSOR DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1307_6,-74.59524,39.5174075,73 WINDSOR DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1307_7,-74.76572352,39.63736316,71 WINDSOR DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_1,-74.46879,39.342617,12 KENT DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_10,-74.616682,39.3934075,3 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_11,-74.80786215,39.62976588,5 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_12,-74.72055023,39.48043607,7 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_1308_13,-74.463336,39.35157333,9 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3002 -0108_1308_2,-74.5534745,39.4689635,10 KENT DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_3,-74.61013393,39.38473422,8 KENT DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_4,-74.57067967,39.37562668,6 KENT DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_5,-74.574628,39.427843,4 KENT DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_6,-74.61791468,39.37536511,2 KENT DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_7,-74.6628353,39.46064493,72 KINGSLEY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_8,-74.61571995,39.30923901,74 KINGSLEY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1308_9,-74.82665363,39.53550286,1 SURREY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_1,-74.51828295,39.40632207,12 NOTTINGHAM STREET,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_10,-74.57606437,39.35976061,1 ESSEX DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1310_11,-74.45154773,39.37052089,2 ESSEX DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1310_12,-74.39172756,39.39281235,3 ESSEX DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1310_13,-74.6072675,39.3230205,4 ESSEX DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_14,-74.59902483,39.36401616,5 ESSEX DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1310_15,-74.50939937,39.49029207,6 ESSEX DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1310_16,-74.40001954,39.38523734,55 WINDSOR DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_2,-74.4858024,39.33386084,10 NOTTINGHAM STREET,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1310_3,-74.9218585,39.565108,8 NOTTINGHAM STREET,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_4,-74.8579265,39.43438,6 NOTTINGHAM STREET,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_5,-74.5160353,39.32698234,4 NOTTINGHAM STREET,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_6,-74.63625452,39.38188624,2 NOTTINGHAM STREET,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_7,-74.59304298,39.43083975,56 KINGSLEY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_8,-74.56959925,39.36322153,58 KINGSLEY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1310_9,-74.49687784,39.42638183,62 KINGSLEY DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1311_1,-74.6025865,39.310471,12 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1311_10,-74.51394217,39.52908278,7 NOTTINGHAM STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_11,-74.51818652,39.39379982,9 NOTTINGHAM STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_12,-74.365886,39.4120265,11 NOTTINGHAM STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_2,-74.4909135,39.498115,10 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_3,-74.76007227,39.43101041,8 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_4,-74.63034898,39.41942718,6 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_5,-74.6050995,39.354388,4 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_6,-74.49107715,39.33348753,2 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_7,-74.43111588,39.37447494,1 NOTTINGHAM STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_8,-74.50330957,39.33319717,3 NOTTINGHAM STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1311_9,-74.58899786,39.37703619,5 NOTTINGHAM STREET,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1312_1,-74.57723062,39.34301567,12 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_10,-74.56079124,39.41419158,7 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_11,-74.8175915,39.632151,9 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_12,-74.60753508,39.43257342,11 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_2,-74.49437626,39.43580835,10 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_3,-74.60160984,39.34865211,8 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_4,-74.8213405,39.39682,6 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_5,-74.56694387,39.34360296,4 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_6,-74.5316545,39.3795575,2 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_7,-74.557632,39.3656915,1 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_8,-74.55098663,39.36877479,3 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1312_9,-74.51172616,39.33838203,5 SOUTHAMPTON STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_1,-74.5907615,39.3804625,12 YORK STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_10,-74.81453265,39.38296312,7 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_11,-74.479995,39.350094,9 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_12,-74.51755115,39.44408555,11 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_2,-74.57259702,39.42672814,10 YORK STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_3,-74.6002375,39.348578,8 YORK STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_4,-74.55038706,39.47717678,6 YORK STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_5,-74.3931525,39.387597,4 YORK STREET,EGG HARBOR TWP,16,1984,1,GOV1,3004 -0108_1313_6,-74.6091089,39.32285487,2 YORK STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_7,-74.556788,39.469022,1 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1313_8,-74.58467611,39.33955999,3 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3004 -0108_1313_9,-74.52390505,39.31758617,5 CANTERBURY STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1314_1,-74.48488317,39.34514741,12 QUEENS STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_10,-74.56023403,39.37117611,7 YORK STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_11,-74.92310572,39.48376365,9 YORK STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_12,-74.523512,39.3999485,11 YORK STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_2,-74.56032773,39.36365244,10 QUEENS STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_3,-74.49599661,39.49345217,8 QUEENS STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_4,-74.7895235,39.551434,6 QUEENS STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_5,-74.6543305,39.366564,4 QUEENS STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_6,-74.495796,39.333987,2 QUEENS STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_7,-74.82569067,39.392992,1 YORK STREET,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1314_8,-74.466776,39.344108,3 YORK STREET,EGG HARBOR TWP,16,1983,1,GOV1,3004 -0108_1314_9,-74.60562292,39.48480726,5 YORK STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1315_1,-74.81901534,39.65473231,10 TUDOR STREET,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1315_10,-74.615484,39.323108,9 QUEENS STREET,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1315_2,-74.5775805,39.339364,8 TUDOR STREET,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1315_3,-74.6246835,39.439232,6 TUDOR STREET,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1315_4,-74.48234962,39.44432725,4 TUDOR STREET,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_1315_5,-74.5633585,39.413112,2 TUDOR STREET,EGG HARBOR TWP,16,1982,1,COM1,3004 -0108_1315_6,-74.85340942,39.59056037,1 QUEENS STREET,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1315_7,-74.57770207,39.36644036,3 QUEENS STREET,EGG HARBOR TWP,16,1982,1,COM3,3004 -0108_1315_8,-74.727572,39.4577305,5 QUEENS STREET,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1315_9,-74.59300849,39.4350671,7 QUEENS STREET,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1316_1,-74.3743695,39.399506,9 WINDSOR DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1316_10,-74.475025,39.4393965,3 TUDOR STREET,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1316_11,-74.60533767,39.39209897,5 TUDOR STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1316_12,-74.5041105,39.4432175,7 TUDOR STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1316_13,-74.64391475,39.52726359,9 TUDOR STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1316_14,-74.831295,39.488586,17 WINDSOR DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1316_15,-74.39182632,39.38908229,15 WINDSOR DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1316_16,-74.475193,39.447962,13 WINDSOR DRIVE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_1316_17,-74.70578095,39.56339579,11 WINDSOR DRIVE,EGG HARBOR TWP,16,1979,1,COM1,3004 -0108_1316_2,-74.62415021,39.37779424,5 BERKSHIRE STREET,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1316_3,-74.3821395,39.4158125,3 BERKSHIRE STREET,EGG HARBOR TWP,16,1979,1,IND1,3002 -0108_1316_4,-74.42199112,39.36676968,1 BERKSHIRE STREET,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1316_5,-74.5354705,39.3815445,10 KINGSLEY DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1316_6,-74.68973502,39.6391468,12 KINGSLEY DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1316_7,-74.6369835,39.5291805,14 KINGSLEY DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1316_8,-74.43937282,39.36674354,16 KINGSLEY DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1316_9,-74.515378,39.431489,1 TUDOR STREET,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1317_1,-74.45163383,39.35406851,2 PATRIOT WALK,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1317_10,-74.550484,39.3664275,20 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1317_2,-74.79334616,39.66421547,4 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1317_3,-74.50622949,39.40850983,6 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1317_4,-74.60375467,39.40873666,8 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1317_5,-74.368911,39.4129545,10 PATRIOT WALK,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1317_6,-74.50235107,39.34291776,12 PATRIOT WALK,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1317_7,-74.581367,39.473146,14 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1317_8,-74.48492535,39.33548598,16 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1317_9,-74.78535632,39.64208615,18 PATRIOT WALK,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1318_1,-74.530184,39.4979205,2 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_10,-74.59407445,39.35166657,1 NEVIS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_2,-74.53210691,39.45115123,4 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_3,-74.6498295,39.486229,6 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_4,-74.41395566,39.37076193,8 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_5,-74.62361357,39.38010529,10 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_6,-74.504055,39.414267,9 NEVIS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_7,-74.81176802,39.63606116,7 NEVIS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_8,-74.533115,39.3834775,5 NEVIS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1318_9,-74.3994635,39.3852425,3 NEVIS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1319_1,-74.57611401,39.36503521,2 NEVIS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1319_10,-74.51159134,39.5046777,36 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,REL1,3004 -0108_1319_2,-74.44937,39.3547505,4 NEVIS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1319_3,-74.7283265,39.4509015,6 NEVIS DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1319_4,-74.5757345,39.3653125,8 NEVIS DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1319_5,-74.60618344,39.34569083,10 NEVIS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1319_6,-74.4250975,39.375257,28 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1319_7,-74.82230629,39.53390158,30 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1319_8,-74.62935635,39.42545424,32 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1319_9,-74.5703995,39.4289645,34 COPPER RIDGE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1320_1,-74.7127685,39.4648645,35 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1320_2,-74.8036637,39.62998032,37 IVYSTONE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1320_3,-74.3770908,39.41590935,101 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1320_4,-74.65000117,39.40049664,107 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES2,3005 -0108_1320_5,-74.4608205,39.4730695,105 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1320_6,-74.5333605,39.3895155,103 GREYSTONE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1322_1,-74.468957,39.485654,200 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_10,-74.52079485,39.53230359,403 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_11,-74.47885609,39.33848218,404 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_12,-74.44012969,39.36679798,405 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_13,-74.44504552,39.49490372,406 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_14,-74.433124,39.3598075,407 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_16,-74.36444543,39.40782882,900 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_17,-74.552578,39.4642535,901 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_18,-74.86375629,39.59622645,902 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_19,-74.7858695,39.5960815,903 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_2,-74.51562507,39.32217765,201 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_20,-74.62247164,39.42017777,904 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_21,-74.56492028,39.35916792,905 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_22,-74.779547,39.626881,1100 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_23,-74.81101325,39.6327718,1101 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_24,-74.62939793,39.37834182,1102 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_25,-74.470611,39.3458225,1103 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_26,-74.368987,39.408384,1104 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_27,-74.49965,39.3335485,1105 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_28,-74.5005055,39.3339745,1106 CARLISLE ROAD,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_3,-74.5952985,39.3148705,202 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_4,-74.55816677,39.37009116,203 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1322_5,-74.53159151,39.49031816,204 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_6,-74.5507155,39.46742,205 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,GOV1,3004 -0108_1322_7,-74.802211,39.6327425,400 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_8,-74.517799,39.3946545,401 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1322_9,-74.48829001,39.33368867,402 ST.THOMAS DRIVE,EGG HARBOR TWP,35,2006,1,RES1,3001 -0108_1401_1,-74.79279143,39.63786487,6100 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,IND2,3002 -0108_1401_10,-74.36512506,39.41053721,2 MADISON AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1401_11,-74.80028112,39.60179288,1 MADISON AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1401_17,-74.481136,39.3523515,109 LEHIGH AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1401_19,-74.50843502,39.40631532,111 LEHIGH AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_1401_2.01,-74.60895392,39.32392847,2500 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1401_2.02,-74.53809308,39.46800028,2508 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1401_2.03,-74.749926,39.4504525,2510 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1401_2.04,-74.45957992,39.34780767,2512 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1401_21,-74.628802,39.619095,113 LEHIGH AVENUE,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_1401_22,-74.57205,39.3506215,6122 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1401_27,-74.39034243,39.39391537,6118 BLACK HORSE PIKE,EGG HARBOR TWP,,1930,1,RES1,3001 -0108_1401_3,-74.62714156,39.461584,6111 DELILAH ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1401_37,-74.55384887,39.3651932,6112 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1401_4.01,-74.86304523,39.59608105,11 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1401_4.02,-74.8178295,39.407662,9 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.03,-74.55744746,39.37657867,7 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1401_4.04,-74.63266615,39.41576019,5 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1401_4.05,-74.5357797,39.39320712,3 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.06,-74.59165393,39.31212586,1 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1401_4.07,-74.8583835,39.576902,2 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1401_4.08,-74.48688234,39.33700786,4 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1401_4.09,-74.68268864,39.51512647,6 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.11,-74.68359907,39.4419622,2 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.12,-74.64436581,39.53120268,4 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1401_4.13,-74.566495,39.353697,6 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.14,-74.80648379,39.37839919,8 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.15,-74.66094686,39.49456505,10 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.16,-74.59203932,39.45569084,12 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.17,-74.59714949,39.37069708,14 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.18,-74.61111311,39.34453174,16 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_4.19,-74.56402003,39.47868208,18 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1401_55,-74.37895466,39.40025945,6106 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1401_57,-74.5314455,39.409183,6113 DELILAH ROAD,EGG HARBOR TWP,16,1950,1,RES1,3002 -0108_1401_9,-74.55091044,39.36539865,8 MADISON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1401_9.02,-74.51038435,39.32166058,2511 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1401_9.03,-74.56908861,39.34345048,2509 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1401_9.04,-74.54982015,39.36716448,2507 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1401_9.05,-74.5151485,39.3205875,2505 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1401_9.06,-74.51921046,39.32076631,2503 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1401_9.07,-74.46404631,39.34964217,2501 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1402_4,-74.59714134,39.35764408,2414 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3002 -0108_1405_3.01,-74.948095,39.511232,2328 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1405_3.02,-74.7562245,39.4295715,2332 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1405_3.03,-74.66917924,39.38039797,2336 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1405_3.04,-74.4599365,39.4559685,2340 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1405_4.01,-74.58597066,39.48805659,2320 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1405_4.02,-74.51119828,39.50584555,2322 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1405_4.03,-74.4972735,39.342127,2324 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1405_4.04,-74.50758931,39.43701067,2326 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1414_1,-74.849336,39.429578,8 MILICENT AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1414_3,-74.59592002,39.4106148,2 MILICENT AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1415_2,-74.57809283,39.481063,6216 DELILAH ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_1415_3,-74.63090411,39.60467001,106 EZRA AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1415_4,-74.5579535,39.545496,104 EZRA AVENUE,EGG HARBOR TWP,16,1978,1,GOV1,3004 -0108_1415_5,-74.63578365,39.5320227,102 EZRA AVENUE,EGG HARBOR TWP,16,1979,1,RES3B,3002 -0108_1416_1,-74.39501371,39.39084421,6206 DELILAH ROAD,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1416_5,-74.489989,39.33494,6212 DELILAH ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1416_6,-74.8444705,39.533122,6210 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1416_7,-74.60935993,39.31595265,6208 DELILAH ROAD,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1417_1,-74.46429269,39.34409345,6200 DELILAH ROAD,EGG HARBOR TWP,,1965,1,RES1,3001 -0108_1417_4,-74.785269,39.608276,7 MILICENT AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_1417_6,-74.48848859,39.4985138,6204 DELILAH ROAD,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_1418_1,-74.503986,39.325035,6116 DELILAH ROAD,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1418_7,-74.6423105,39.531317,6120 DELILAH ROAD,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_1419_9,-74.37926332,39.41773417,6114 DELILAH ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1420_10,-74.50168986,39.44923956,6110 DELILAH ROAD,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_1421_1,-74.88102211,39.59551122,6215 DELILAH ROAD,EGG HARBOR TWP,16,1950,2,RES1,3001 -0108_1423_1,-74.647192,39.4330365,2507 TREMONT AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1423_1.01,-74.49061183,39.52050432,2505 TREMONT AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1423_1.02,-74.528742,39.3833355,2503 TREMONT AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1423_2,-74.48770816,39.3329125,2501 TREMONT AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1423_2.01,-74.5883948,39.35383832,2499 TREMONT AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1423_2.02,-74.57754895,39.35357576,2497 TREMONT AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3004 -0108_1423_3,-74.57127943,39.47775815,2495 TREMONT AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_1424_2,-74.5188155,39.411581,2509 TREMONT AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1424_3,-74.5586719,39.37073654,2511 TREMONT AVENUE,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_1424_4,-74.9329224,39.50283327,2513 TREMONT AVENUE,EGG HARBOR TWP,16,1948,1,RES3B,3004 -0108_1424_5,-74.83153582,39.47947609,2517 TREMONT AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1426_1,-74.57799425,39.54129346,22 MADISON AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1426_2.01,-74.49297074,39.43322094,104 ELMWOOD AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1426_2.03,-74.5024995,39.330112,108 ELMWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1426_3,-74.53183002,39.52414267,102 ELMWOOD AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1426_4,-74.765984,39.609822,100 ELMWOOD AVENUE,EGG HARBOR TWP,16,1964,1,RES3A,3001 -0108_1427_1.02,-74.5610178,39.35935065,107 ELMWOOD AVENUE,EGG HARBOR TWP,16,1949,1,RES1,3001 -0108_1427_2.01,-74.59182074,39.35582758,112 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.02,-74.64397889,39.53219048,110 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.03,-74.46722888,39.47417073,108 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_1427_2.04,-74.88760647,39.59741848,106 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.05,-74.863928,39.5957725,104 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.06,-74.39634552,39.38646421,102 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.07,-74.8819515,39.592076,100 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.08,-74.79943038,39.64125212,93 ELMWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.09,-74.44972595,39.37377319,95 ELMWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1427_2.10,-74.611139,39.403343,97 ELMWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.11,-74.72008764,39.57401669,99 ELMWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.12,-74.64377585,39.43586199,101 ELMWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1427_2.13,-74.629292,39.3528725,103 ELMWOOD AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_1427_2.14,-74.62293058,39.52042435,105 ELMWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.01,-74.92828201,39.51688063,16 MADISON AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1428_1.02,-74.5885327,39.35630559,108 FILMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.03,-74.4726578,39.36381078,106 FILMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.04,-74.59020764,39.32878425,104 FILMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.05,-74.82001134,39.63832301,102 FILMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.06,-74.5865925,39.359471,100 FILMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.08,-74.52612766,39.38713649,101 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.09,-74.3668235,39.4131345,103 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.10,-74.79993678,39.64286281,105 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.11,-74.683156,39.4406405,107 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.12,-74.82322,39.6441715,109 THEODORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1428_1.13,-74.76124926,39.42996737,111 THEODORE AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1429_1,-74.5673855,39.3627715,12 MADISON AVENUE,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_1429_1.01,-74.56413633,39.36151633,2512 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.02,-74.55715416,39.36020753,2510 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.03,-74.5644522,39.36642053,2508 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.04,-74.5628005,39.360079,2506 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.05,-74.56374218,39.36084601,2504 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.06,-74.57001945,39.36469888,2502 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.07,-74.55366884,39.36311284,2500 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.09,-74.562917,39.357255,101 FILMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.10,-74.574292,39.355317,103 FILMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.11,-74.55915979,39.36757763,105 FILMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.12,-74.56827582,39.35588345,107 FILMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.13,-74.574039,39.351862,109 FILMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.14,-74.5556485,39.3556015,111 FILMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.15,-74.5654847,39.35740057,113 FILMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1429_1.16,-74.5542265,39.3567555,115 FILMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1430_10,-74.5655845,39.4775185,102 LEHIGH AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1430_11,-74.656074,39.433802,100 LEHIGH AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1430_12,-74.76267278,39.6342136,7 MADISON AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1430_5,-74.80089914,39.62679955,112 LEHIGH AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_1430_7,-74.5733994,39.36617424,108 LEHIGH AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1430_8,-74.39409841,39.39432745,106 LEHIGH AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1430_9,-74.563795,39.4097335,104 LEHIGH AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1431_1,-74.46811305,39.49118964,4 MT.VERNON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1431_2,-74.70404158,39.46792184,9 MADISON AVENUE,EGG HARBOR TWP,52,1960,1,RES1,3001 -0108_1431_4,-74.61668557,39.62154534,13 MADISON AVENUE,EGG HARBOR TWP,52,1962,1,RES1,3001 -0108_1431_5,-74.5115905,39.400424,15 MADISON AVENUE,EGG HARBOR TWP,52,1969,1,RES1,3001 -0108_1434_1,-74.44162584,39.35438861,212 ELMWOOD AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1434_11,-74.5440865,39.399692,213 ASHLAND AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1434_12,-74.4022988,39.38881736,215 ASHLAND AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1434_12.01,-74.71761036,39.44670867,20 MT.VERNON AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1434_2,-74.72628046,39.46008669,210 ELMWOOD AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1434_3,-74.48862003,39.45316484,206 ELMWOOD AVENUE,EGG HARBOR TWP,16,1948,1,GOV1,3004 -0108_1434_5,-74.59906065,39.38367645,204 ELMWOOD AVENUE,EGG HARBOR TWP,50,1965,1,RES1,3001 -0108_1434_6.01,-74.527806,39.387269,202 ELMWOOD AVENUE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_1434_6.02,-74.55029687,39.36075987,200A ELMWOOD AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1434_6.03,-74.55187671,39.36524282,200 ELMWOOD AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1434_7.01,-74.58137198,39.42968535,198 ELMWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1434_7.02,-74.54026402,39.38031933,21 MADISON AVENUE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_1434_7.03,-74.480328,39.337007,203 ASHLAND AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1434_8,-74.7814055,39.665179,205 ASHLAND AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1434_9,-74.72386608,39.57147074,207 ASHLAND AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1435_1,-74.48746889,39.33683834,214 ASHLAND AVENUE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_1435_1.01,-74.5526035,39.365241,212 ASHLAND AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1435_10,-74.43368886,39.35897448,205 HEGGEN AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1435_11,-74.4919785,39.5248985,207 HEGGEN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1435_13,-74.648172,39.528557,211 HEGGEN AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1435_14,-74.50229277,39.43244354,213 HEGGEN AVENUE,EGG HARBOR TWP,50,1956,1,RES1,3001 -0108_1435_6,-74.50104228,39.41866188,206 ASHLAND AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1435_7.01,-74.40095019,39.39080425,204 ASHLAND AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1435_7.02,-74.48923907,39.33426616,203 HEGGEN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1435_8.01,-74.89535855,39.47184629,202 ASHLAND AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1435_8.02,-74.48682149,39.33363617,200 ASHLAND AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1435_9,-74.4975715,39.331359,27 MADISON AVENUE,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_1436_1,-74.823037,39.5406085,26 MT.VERNON AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1436_10,-74.64658181,39.55297694,203 FENTON AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1436_12,-74.615353,39.3411075,207 FENTON AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1436_13,-74.9465155,39.527282,209 FENTON AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1436_14,-74.5153715,39.443742,211 FENTON AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_1436_17,-74.58645782,39.37566407,28 MT.VERNON AVENUE,EGG HARBOR TWP,16,1950,1,COM1,3004 -0108_1436_2,-74.8020195,39.634158,MT.VERNON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1436_4,-74.825487,39.6466115,210 HEGGEN AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_1436_5,-74.50293229,39.43422543,208 HEGGEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1436_6,-74.58379418,39.36852715,206 HEGGEN AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1436_7,-74.70033144,39.63824523,204 HEGGEN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1436_8,-74.66609043,39.46164849,202 HEGGEN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1436_9,-74.80630604,39.6357688,29 MADISON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1437_10,-74.53092286,39.30894345,2521 TREMONT AVENUE,EGG HARBOR TWP,16,1932,1,RES1,3001 -0108_1437_12,-74.458978,39.4893535,2527 TREMONT AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1437_13,-74.48088052,39.33982084,2529 TREMONT AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_1437_16,-74.5518405,39.54215,2533 TREMONT AVENUE,EGG HARBOR TWP,,0,1,COM3,3004 -0108_1437_17,-74.51963683,39.39646048,2535 TREMONT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1437_18,-74.49682972,39.52103769,32 MT.VERNON AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1437_2,-74.4769285,39.3426515,30 MT.VERNON AVENUE,EGG HARBOR TWP,51,1959,1,RES1,3001 -0108_1437_5,-74.42163365,39.37191118,210 FENTON AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1437_6,-74.4997045,39.455443,208 FENTON AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1437_7,-74.5689165,39.3642455,206 FENTON AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1438_10,-74.78716058,39.63272478,FENTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1438_12,-74.49740582,39.3354322,300 FENTON AVENUE,EGG HARBOR TWP,16,1950,2,RES1,3001 -0108_1438_15,-74.57446336,39.40872594,2545 TREMONT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1438_16,-74.5993905,39.3306105,2547 TREMONT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1438_17,-74.48378031,39.43732088,2549 TREMONT AVENUE,EGG HARBOR TWP,16,1960,1,IND1,3002 -0108_1438_2,-74.50209766,39.3376553,6224 BLACK HORSE PIKE,EGG HARBOR TWP,50,1965,1,RES1,3001 -0108_1438_22,-74.37462773,39.41612931,2557 TREMONT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1438_23,-74.52027553,39.3960163,6228 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1438_3,-74.43591932,39.36821102,316 FENTON AVENUE,EGG HARBOR TWP,15,1950,2,RES1,3001 -0108_1438_5,-74.499174,39.4998915,312 FENTON AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_1438_6,-74.51492483,39.3215854,310 FENTON AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1438_7,-74.51592232,39.41097694,308 FENTON AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1439_1,-74.57262938,39.36730681,6222 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1439_10,-74.45142124,39.49013634,300 HEGGEN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1439_12,-74.49360603,39.34086484,25 MT.VERNON AVENUE,EGG HARBOR TWP,16,1950,1,RES3A,3001 -0108_1439_13,-74.51260341,39.32825436,301 FENTON AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1439_15,-74.464754,39.3533945,305 FENTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1439_16,-74.5535465,39.3572905,307 FENTON AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1439_17,-74.5752735,39.354139,309 FENTON AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_1439_18,-74.81204116,39.40792194,311 FENTON AVENUE,EGG HARBOR TWP,16,1956,1,RES1,3001 -0108_1439_20,-74.60486497,39.38344301,315 FENTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1439_21,-74.60344099,39.38424992,317 FENTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1439_4,-74.85024582,39.61214641,314 HEGGEN AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1439_5,-74.51161989,39.4852457,312 HEGGEN AVENUE,EGG HARBOR TWP,16,1969,1,RES3A,3001 -0108_1439_6,-74.7983225,39.632768,310 HEGGEN AVENUE,EGG HARBOR TWP,16,1965,1,COM1,3004 -0108_1439_7,-74.80593562,39.63506273,308 HEGGEN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1439_9,-74.62887166,39.39039153,304 HEGGEN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1440_1,-74.53061536,39.38035799,6216 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1440_12,-74.3670965,39.4127945,311 HEGGEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1440_13,-74.5702,39.3455575,313 HEGGEN AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_1440_14,-74.52500666,39.46360398,315 HEGGEN AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1440_2,-74.66479285,39.54733846,312 ASHLAND AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1440_3,-74.493092,39.5369005,310 ASHLAND AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1440_5,-74.6597075,39.6353745,306 ASHLAND AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_1440_6,-74.607196,39.326106,19 MT.VERNON AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1440_7,-74.61743894,39.43037469,301 HEGGEN AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1440_8,-74.4846585,39.347116,305 HEGGEN AVENUE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_1441_10,-74.77947,39.622827,306 ELMWOOD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1441_11,-74.510877,39.3319075,302 ELMWOOD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1441_13,-74.55523513,39.46728229,300 ELMWOOD AVENUE,EGG HARBOR TWP,16,1938,1,RES1,3001 -0108_1441_14,-74.87172265,39.59432147,17 MT.VERNON AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_1441_15,-74.814205,39.3565365,305 ASHLAND AVENUE,EGG HARBOR TWP,16,1940,1,RES3A,3001 -0108_1441_16,-74.51233914,39.4443045,307 ASHLAND AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1441_18,-74.50005417,39.4260416,311 ASHLAND AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1441_19,-74.86722476,39.60243237,313 ASHLAND AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1441_6,-74.94421746,39.54442231,314 ELMWOOD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1441_7,-74.5534109,39.38019925,312 ELMWOOD AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1441_8,-74.60854697,39.3197787,310 ELMWOOD AVENUE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_1441_9,-74.49790007,39.4701274,308 ELMWOOD AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1442_1,-74.70409077,39.4913516,6208 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1442_10,-74.79111134,39.64391052,307 ELMWOOD AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1442_2,-74.8109725,39.443064,306 THEODORE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1442_3,-74.56868887,39.34424309,304 THEODORE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1442_4,-74.6009205,39.367655,302 THEODORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1442_5,-74.38704895,39.39582639,300 THEODORE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1442_6,-74.57143457,39.35448489,13 MT.VERNON AVENUE,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_1442_7,-74.52289,39.316557,301 ELMWOOD AVENUE,EGG HARBOR TWP,16,1950,1,RES3A,3001 -0108_1442_8,-74.366727,39.4072425,303 ELMWOOD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1442_9,-74.487983,39.3359995,305 ELMWOOD AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_1443_3,-74.57220889,39.54707001,6206 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3004 -0108_1444_1,-74.56822425,39.36138565,6200 BLACK HORSE PIKE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_1445_1,-74.411671,39.3837345,89 ELMWOOD AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_1445_10,-74.575202,39.4266775,38 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_11,-74.79722116,39.61830054,36 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1445_12,-74.70925041,39.56556338,34 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_13,-74.519486,39.4059935,32 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_14,-74.59239116,39.42821548,30 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_15,-74.60879202,39.36612273,28 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_1445_16,-74.4926245,39.330554,26 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_17,-74.52197469,39.45225521,24 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_18,-74.45283462,39.37441381,2 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1445_2,-74.63177465,39.38974872,87 ELMWOOD AVENUE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_1445_3,-74.65093397,39.40337553,85 ELMWOOD AVENUE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_1445_4,-74.82885776,39.64279488,50 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_5,-74.55279366,39.47854979,48 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_6,-74.5607521,39.37403784,46 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_7,-74.651408,39.346267,44 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_8,-74.633584,39.510643,42 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1445_9,-74.37004777,39.40223485,40 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_1,-74.51649728,39.44410154,49 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1446_10,-74.65240534,39.52396198,8 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_11,-74.62835584,39.43938148,10 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_12,-74.67767829,39.35808099,12 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1446_2,-74.7392745,39.7047055,47 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_3,-74.78062406,39.67262318,45 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_4,-74.56604245,39.41233372,43 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_5,-74.57320248,39.34172567,41 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_6,-74.5937965,39.314038,39 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_7,-74.922473,39.473418,2 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_8,-74.6766218,39.51518078,4 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1446_9,-74.97019,39.516812,6 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1447_1,-74.64053791,39.53613698,11 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1447_10,-74.459424,39.354303,8 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1447_11,-74.65163294,39.52182216,10 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1447_12,-74.3639635,39.408207,12 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1447_2,-74.52462129,39.31551532,9 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3002 -0108_1447_3,-74.5340615,39.383928,7 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1447_4,-74.5958555,39.38272335,5 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1447_5,-74.56163038,39.37047508,3 MILLARD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1447_6,-74.882669,39.592481,25 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1447_7,-74.61898839,39.43633386,23 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1447_8,-74.48138567,39.341026,4 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3002 -0108_1447_9,-74.46979583,39.3456465,6 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1448_1,-74.6024875,39.3464795,18 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3002 -0108_1448_10,-74.63671648,39.34300684,5 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1448_11,-74.8417345,39.4871905,3 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1448_12,-74.92549079,39.50634886,12 MONTGOMERY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1448_2,-74.623996,39.3756845,9 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1448_3,-74.37509725,39.40231751,7 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_1448_4,-74.6410493,39.4497862,5 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3002 -0108_1448_5,-74.5867122,39.31667112,3 NORTHWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1448_6,-74.45065841,39.37326067,19 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1448_7,-74.6471925,39.548361,15 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1448_8,-74.53345195,39.38093034,9 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_1448_9,-74.5429955,39.376241,7 CRESTWOOD CIRCLE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1501_11,-74.56797246,39.36470483,6024 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1501_4,-74.6111925,39.3161235,6002 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1501_5,-74.4423845,39.3576335,6004 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1501_6,-74.5339705,39.4018275,6010 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES3B,3001 -0108_1501_9,-74.5276241,39.31050569,6020 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_1502_2,-74.699234,39.63434,6004 DELILAH ROAD,EGG HARBOR TWP,16,1956,1,RES1,3001 -0108_1502_3,-74.50490214,39.44558808,6006 DELILAH ROAD,EGG HARBOR TWP,16,2005,1,COM4,3004 -0108_1502_4,-74.63313359,39.51798164,6010 DELILAH ROAD,EGG HARBOR TWP,16,1947,1,RES3A,3001 -0108_1505_10,-74.6392027,39.47194282,2315 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1505_11,-74.4933368,39.46902959,2319 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1505_12,-74.59182486,39.52589779,2321 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1505_13,-74.80853984,39.63968646,2323 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1505_14,-74.370833,39.4050105,2325 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1505_16,-74.581037,39.4733225,2331 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.01,-74.633085,39.391236,2 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_1507_2.02,-74.52575015,39.39732233,4 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_1507_2.03,-74.62586581,39.36470797,6 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.04,-74.5153165,39.3877075,8 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_1507_2.05,-74.8823295,39.446152,10 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_1507_2.06,-74.49844616,39.33146101,12 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.07,-74.57684427,39.36810896,14 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.08,-74.62016625,39.55172585,16 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.09,-74.71886969,39.44780997,18 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.10,-74.48699716,39.33806551,20 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.11,-74.495287,39.4322745,22 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.13,-74.92889784,39.5072312,24 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.14,-74.62517744,39.36058378,101 PEMBROKE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_1507_2.15,-74.7096845,39.4747365,103 PEMBROKE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.16,-74.47103659,39.44680479,105 PEMBROKE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.17,-74.75997513,39.34150293,107 PEMBROKE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.18,-74.36995774,39.41766512,109 PEMBROKE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.19,-74.80093147,39.64904116,111 PEMBROKE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.20,-74.4908385,39.476279,113 PEMBROKE ROAD,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_1507_2.21,-74.51891289,39.47984288,115 PEMBROKE ROAD,EGG HARBOR TWP,16,2002,1,RES3B,3001 -0108_1507_2.22,-74.59894377,39.341284,117 PEMBROKE ROAD,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_1507_2.23,-74.8138515,39.3702835,211 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_1507_2.24,-74.62441841,39.6229208,213 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_1507_2.25,-74.94982,39.535775,215 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.26,-74.61817208,39.37463646,217 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.27,-74.62825323,39.35765033,219 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.28,-74.55148727,39.47279838,221 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.29,-74.80216611,39.64543111,339 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.30,-74.36446517,39.420305,337 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.31,-74.5016725,39.334872,335 FOX RUN CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.32,-74.61013373,39.31860524,333 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.33,-74.60356967,39.31797478,331 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.34,-74.59918183,39.5126605,329 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.35,-74.60640882,39.38950402,327 FOX RUN CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.36,-74.49931382,39.43380964,325 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.37,-74.58842438,39.33540485,323 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3002 -0108_1507_2.38,-74.572373,39.4147265,321 FOX RUN CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1507_2.39,-74.57500939,39.34896473,319 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.40,-74.854446,39.3696685,317 FOX RUN CIRCLE,EGG HARBOR TWP,16,2002,1,COM4,3002 -0108_1507_2.41,-74.486537,39.335888,315 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.42,-74.50503844,39.33758583,313 FOX RUN CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1507_2.43,-74.510513,39.322518,311 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1507_2.44,-74.39287917,39.39196599,309 FOX RUN CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1507_2.45,-74.5961905,39.365737,307 FOX RUN CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1507_2.46,-74.538249,39.3737875,305 FOX RUN CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1507_2.47,-74.37046127,39.41143995,303 FOX RUN CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1507_2.48,-74.51023067,39.39928105,212 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_1507_2.49,-74.504772,39.4258275,210 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.50,-74.5616924,39.36135468,208 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.51,-74.37439267,39.41324856,206 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES3A,3002 -0108_1507_2.52,-74.50736997,39.33060241,204 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1507_2.53,-74.5852133,39.48623219,202 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_1507_2.54,-74.8082,39.637062,200 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1507_3.01,-74.590259,39.415624,2407 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1507_3.02,-74.49067404,39.33608519,2405 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1507_4,-74.47366402,39.48364675,2409 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3002 -0108_1507_5,-74.586657,39.383641,2413 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1507_7,-74.4364365,39.369484,6038 DELILAH ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1507_8,-74.512425,39.3234855,6034 DELILAH ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1508_1,-74.5885925,39.430751,6027 DELILAH ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1508_10,-74.52241116,39.44317408,6051 DELILAH ROAD,EGG HARBOR TWP,16,1960,1,RES1,3002 -0108_1508_11,-74.4791085,39.347893,6053 DELILAH ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1508_13,-74.54593622,39.47359156,6061 DELILAH ROAD,EGG HARBOR TWP,,1975,1,RES1,3001 -0108_1508_14,-74.6620415,39.554628,6063 DELILAH ROAD,EGG HARBOR TWP,16,1965,1,RES1,3004 -0108_1508_15,-74.7088756,39.56776142,2507 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1508_16,-74.5523255,39.4758885,2509 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_1508_17,-74.7350205,39.4381965,2515 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1508_18,-74.51180591,39.49043084,2517 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1968,1,RES3A,3001 -0108_1508_19,-74.56761533,39.3566526,6048 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1508_2,-74.53021215,39.51109844,6031 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1508_20,-74.53676467,39.40452995,6050 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,COM1,3004 -0108_1508_33,-74.56304082,39.41205276,6038 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1508_34.01,-74.5082485,39.334193,6032 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1508_4,-74.73062,39.440007,6037 DELILAH ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1508_5,-74.62881794,39.48485448,6039 DELILAH ROAD,EGG HARBOR TWP,16,1970,1,RES1,3002 -0108_1508_6,-74.85421696,39.55971734,6041 DELILAH ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1508_9,-74.8312875,39.389456,6049 DELILAH ROAD,EGG HARBOR TWP,16,1968,1,RES1,3002 -0108_1509_1,-74.5527925,39.3782085,218 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1509_10,-74.6304125,39.429847,214 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1509_11,-74.54102025,39.37752682,216 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1509_2,-74.44788936,39.3742165,316 FOX RUN CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1509_3,-74.802953,39.6312525,314 FOX RUN CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3004 -0108_1509_4,-74.499811,39.3817755,312 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1509_5,-74.53253158,39.45041785,310 FOX RUN CIRCLE,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_1509_6,-74.488371,39.4624275,308 FOX RUN CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1509_7,-74.67025081,39.46155197,306 FOX RUN CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1509_8,-74.54869503,39.37231234,304 FOX RUN CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3004 -0108_1509_9,-74.59783458,39.52410983,302 FOX RUN CIRCLE,EGG HARBOR TWP,16,2003,1,AGR1,3001 -0108_1510_1,-74.79901427,39.43451963,102 PEMBROKE ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_1510_2,-74.59776401,39.41916114,104 PEMBROKE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1510_3,-74.72570071,39.58716672,207 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3002 -0108_1510_4,-74.5195075,39.4152575,205 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1510_5,-74.49004181,39.4319707,203 CHESTERBROOK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1510_6,-74.36549929,39.41011276,30 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1510_7,-74.57592755,39.3529699,28 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_10,-74.491442,39.4333395,19 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_1511_11,-74.532483,39.383979,21 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_12,-74.465882,39.495414,23 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_13,-74.57149473,39.41412752,25 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_14,-74.588611,39.38029105,27 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_15,-74.44820639,39.49436585,29 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_16,-74.49497774,39.43949288,31 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_17,-74.945343,39.51757,33 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_2,-74.64931194,39.41099919,3 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_3,-74.711587,39.4667685,5 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_4,-74.3821185,39.4170925,7 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1511_5,-74.47773457,39.33824558,9 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_6,-74.6795765,39.360643,11 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_7,-74.4029495,39.3871865,13 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_8,-74.77844532,39.63183833,15 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1511_9,-74.55458021,39.47774261,17 RAVENWOOD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1601_10,-74.37148829,39.40077376,602 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1601_11,-74.75756945,39.43200776,600 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_12,-74.54821967,39.52812113,516 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_13,-74.6361932,39.43049345,514 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_14,-74.8316565,39.411078,512 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_15,-74.5065726,39.32288167,510 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_16,-74.82020347,39.64063567,508 SHIRES WAY,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1601_17,-74.85326769,39.48603253,506 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_18,-74.96528914,39.52012376,504 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_19,-74.587933,39.355864,502 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_20,-74.7493885,39.4463365,500 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_21,-74.601319,39.3283725,424 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_22,-74.6246705,39.6086675,422 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_23,-74.5870635,39.3226935,420 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_24,-74.59292457,39.3501053,418 SHIRES WAY,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1601_25,-74.358829,39.414098,416 SHIRES WAY,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1601_26,-74.5318155,39.3910905,414 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_27,-74.64737269,39.43383254,412 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_28,-74.78558913,39.4376192,410 SHIRES WAY,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1601_29,-74.5023475,39.325414,408 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_3.02,-74.37621446,39.41427689,58 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1601_3.03,-74.63273445,39.34840619,56 PROVIDENCE ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1601_3.04,-74.463675,39.352462,54 PROVIDENCE ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1601_3.05,-74.78102932,39.67289141,52 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1601_3.06,-74.5582034,39.47398643,50 PROVIDENCE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1601_3.07,-74.919269,39.5670625,48 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_1601_3.08,-74.794283,39.6347975,46 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1601_3.09,-74.422072,39.3718605,44 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1601_3.10,-74.4876836,39.33801367,42 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1601_3.11,-74.49359254,39.42089884,40 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1601_3.12,-74.66471777,39.35021083,38 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1601_3.13,-74.64356757,39.52861941,36 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1601_3.14,-74.62544455,39.41485751,34 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1601_3.15,-74.56882452,39.41329071,32 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1601_3.16,-74.59968182,39.40703931,30 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_1601_3.17,-74.57729266,39.35271067,28 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1601_3.18,-74.68990776,39.50573587,26 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1601_3.19,-74.501791,39.4565445,24 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1601_3.20,-74.53637678,39.38015569,22 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1601_3.21,-74.75840467,39.57662453,20 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1601_3.22,-74.44287283,39.35494117,18 PROVIDENCE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1601_3.23,-74.7738172,39.30175005,16 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1601_3.24,-74.54078917,39.37738,14 PROVIDENCE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1601_3.25,-74.5245,39.393424,12 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1601_3.26,-74.788179,39.65978417,10 PROVIDENCE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3002 -0108_1601_3.27,-74.735669,39.466983,8 PROVIDENCE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1601_3.28,-74.49987804,39.52289851,6 PROVIDENCE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1601_3.29,-74.5511745,39.382417,4 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_1601_3.30,-74.4973795,39.4319735,2 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,COM4,3004 -0108_1601_30,-74.64418422,39.39647971,406 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_31,-74.61065758,39.32791114,404 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_32,-74.6326365,39.3463465,402 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_33,-74.58875655,39.4338312,400 SHIRES WAY,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1601_34,-74.6220752,39.42251704,320 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_35,-74.48402074,39.34189634,318 SHIRES WAY,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1601_36,-74.64217898,39.53871117,316 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_37,-74.49671574,39.43326936,314 SHIRES WAY,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1601_38,-74.56180998,39.4094771,312 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_39,-74.61676982,39.32010347,310 SHIRES WAY,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1601_40,-74.58499517,39.32678651,308 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_41,-74.483516,39.334659,306 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_42,-74.60186933,39.34942767,304 SHIRES WAY,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1601_43,-74.51230725,39.40280557,302 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_44,-74.46409517,39.34433297,300 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_45,-74.383099,39.394047,220 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_46,-74.5717465,39.36660153,218 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_47,-74.3856595,39.397736,216 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_48,-74.50848511,39.33036115,214 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES3A,3001 -0108_1601_49,-74.781637,39.6732895,212 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_50,-74.6319455,39.5308745,210 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_51,-74.479067,39.339108,208 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_52,-74.61437183,39.42922299,206 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_53,-74.60599184,39.30717168,204 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_54,-74.4883165,39.33791,202 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_55,-74.51553511,39.32896915,200 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_56,-74.440897,39.366555,108 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_57,-74.837795,39.509165,106 SHIRES WAY,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1601_58,-74.51882119,39.39328559,104 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_59,-74.57447483,39.37140896,102 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_60,-74.5966175,39.3567565,100 SHIRES WAY,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1601_61,-74.46991745,39.48818512,16 SHIRES WAY,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1601_62,-74.508452,39.3248305,14 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_63,-74.58979795,39.4298013,12 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_64,-74.530417,39.47123,10 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_65,-74.87316664,39.50016546,8 SHIRES WAY,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1601_66,-74.78446196,39.67364978,6 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_67,-74.46077517,39.34632199,4 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_68,-74.50675236,39.43644562,2 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_69,-74.55268099,39.38230266,1 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_70,-74.48542156,39.47828957,3 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_71,-74.76220679,39.6400323,5 SHIRES WAY,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1601_72,-74.6004055,39.3204765,7 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_73,-74.60028351,39.31402882,9 SHIRES WAY,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1601_74,-74.57809631,39.44278854,11 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_75,-74.37154127,39.41049898,8 CHARLESTON ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_76,-74.48773605,39.52130349,6 CHARLESTON ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_77,-74.651487,39.5244015,4 CHARLESTON ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_78,-74.6883345,39.4169545,2 CHARLESTON ROAD,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_1601_79,-74.49983182,39.49554172,12 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_8,-74.60267587,39.43132114,606 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1601_80,-74.66878855,39.45571936,10 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_81,-74.9244755,39.52257,8 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_82,-74.55792514,39.39844383,6 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_83,-74.38561878,39.39516244,4 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_84,-74.85335767,39.36788268,2 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1601_9,-74.5642395,39.5244535,604 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_100,-74.472691,39.3434525,24 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_101,-74.67560637,39.35720565,22 TOWER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1602_102,-74.61468894,39.34919303,20 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1602_102.01,-74.58685789,39.32169817,18 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1602_102.02,-74.54640605,39.37688084,16 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1602_42,-74.51966002,39.46364027,6027 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_43,-74.55538189,39.36306984,6 TOWER AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_44,-74.93887306,39.5214351,6037 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_45,-74.56246708,39.35650813,6041 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_49,-74.3822447,39.39806091,6047 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_50,-74.55163391,39.40091597,6051 BLACK HORSE PIKE,EGG HARBOR TWP,,2019,1,RES1,3001 -0108_1602_51,-74.8524504,39.59171046,6055 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1602_52,-74.516178,39.4563775,6059 BLACK HORSE PIKE,EGG HARBOR TWP,,2019,1,RES1,3001 -0108_1602_53,-74.79774954,39.64244375,3001 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_54,-74.855051,39.559399,500 SCARBOROUGH DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_55,-74.571914,39.4126585,3003 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_56,-74.53773582,39.38854349,600 SCARBOROUGH DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1602_57,-74.708247,39.415737,713 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1602_58,-74.9295065,39.5132875,715 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_59,-74.62071448,39.60523095,717 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1602_60,-74.568714,39.4791925,719 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1602_61,-74.590205,39.42516,721 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1602_62,-74.57373,39.359306,723 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1602_63,-74.48530683,39.335414,801 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_64,-74.5893555,39.3786345,803 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_65,-74.93196545,39.51887656,805 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1993,1,GOV1,3004 -0108_1602_66,-74.49781879,39.44711335,807 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_67,-74.47477222,39.34234568,901 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_68,-74.5989235,39.318276,903 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1602_69,-74.86761836,39.55956732,905 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1602_70,-74.47775628,39.47844749,907 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,REL1,3004 -0108_1602_71,-74.5075305,39.336957,909 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1602_72,-74.75429393,39.59660366,911 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_73,-74.489228,39.335022,913 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1602_74,-74.59745512,39.41178638,1001 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_75,-74.65015885,39.45687696,1003 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_76,-74.708276,39.633572,1005 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1602_77,-74.40487931,39.39387354,1007 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_78,-74.4847545,39.338615,501 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_79,-74.77100035,39.65877804,503 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_80,-74.75197609,39.60725314,505 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_81,-74.48231684,39.35382159,507 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1602_82,-74.62858874,39.4328433,509 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_83,-74.4902775,39.4352725,511 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_84,-74.78289448,39.60563722,513 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_85,-74.45610605,39.48922816,515 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_86,-74.801973,39.6370445,102 BERESFORD DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1602_87,-74.5237765,39.317163,104 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_88,-74.5088925,39.487471,106 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_89,-74.39064518,39.39289672,108 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_90,-74.60881781,39.38636293,110 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_91,-74.51185309,39.32748281,112 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_1602_92,-74.56555257,39.34663185,114 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_93,-74.603268,39.368338,116 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_94,-74.51616955,39.38621431,118 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_1602_95,-74.80618397,39.62220487,120 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_1602_96,-74.82643183,39.62563849,32 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_97,-74.87693843,39.59340785,30 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1602_98,-74.62068384,39.43826545,28 TOWER AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1602_99,-74.4864785,39.4779395,26 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1603_1,-74.5638255,39.3721685,808 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_10,-74.57387484,39.33854101,8 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_11,-74.569997,39.414168,9 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_12,-74.49141767,39.33913497,10 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_13,-74.94959883,39.53363301,11 ROOK COURT,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_15,-74.5980245,39.3190885,12 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_16,-74.58055128,39.44135504,13 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_17,-74.63956136,39.3621328,14 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_18,-74.7343495,39.436048,15 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_19,-74.48595639,39.34936032,16 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_2,-74.60840128,39.4401438,804 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_20,-74.6461553,39.43195544,17 ROOK COURT,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_21,-74.84745,39.601218,18 ROOK COURT,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_22,-74.4980125,39.33570381,19 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_23,-74.71975985,39.57863103,714 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_24,-74.8236093,39.65419156,712 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_25,-74.7461085,39.4464165,710 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_26,-74.64374405,39.43514082,708 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_27,-74.59166978,39.38138714,706 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_28,-74.52418948,39.41897318,704 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_29,-74.5530495,39.426797,702 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_3,-74.5640985,39.4788425,1 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_30.02,-74.48149297,39.35185668,2 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,GOV1,3004 -0108_1603_30.03,-74.6449536,39.39517633,4 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1603_30.04,-74.926239,39.5256785,6 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,GOV1,3004 -0108_1603_30.05,-74.487871,39.3343065,8 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1603_30.06,-74.5896772,39.42958082,10 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1603_30.07,-74.8775315,39.4954915,12 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1603_30.08,-74.6103225,39.390483,14 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1603_30.09,-74.61233316,39.34754361,16 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1603_30.10,-74.753855,39.4543185,18 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,GOV1,3004 -0108_1603_30.11,-74.75387817,39.43101217,20 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,GOV1,3004 -0108_1603_30.12,-74.5260035,39.313813,22 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1603_30.13,-74.6004247,39.31961708,24 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1603_30.17,-74.525085,39.4001765,28 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_30.18,-74.62226734,39.43454798,30 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_1603_30.19,-74.78713096,39.67738879,32 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_1603_30.20,-74.60410865,39.3315076,34 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_30.21,-74.4761485,39.443334,36 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_1603_30.22,-74.38645511,39.39699137,38 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_1603_30.23,-74.722706,39.4527795,40 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_1603_30.24,-74.57828822,39.35081773,42 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_30.25,-74.62119213,39.40501233,59 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_30.26,-74.50733506,39.32627284,57 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,GOV1,3004 -0108_1603_30.27,-74.50572288,39.32946485,55 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_1603_30.28,-74.529233,39.3955315,53 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_30.29,-74.88563351,39.55742483,51 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_30.30,-74.46642498,39.49609503,49 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_30.31,-74.48778968,39.49423027,47 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_1603_30.33,-74.82595826,39.38537604,43 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1603_30.34,-74.45700286,39.48974059,41 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,GOV1,3004 -0108_1603_30.35,-74.75973387,39.4315393,39 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1603_30.36,-74.39935039,39.38384336,37 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1603_30.37,-74.75931194,39.37413882,35 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_30.38,-74.67798,39.5584375,33 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,GOV1,3004 -0108_1603_30.39,-74.63012822,39.41477902,31 BRANDYWINE COURT,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_1603_30.40,-74.62792084,39.60052234,29 BRANDYWINE COURT,EGG HARBOR TWP,37,1999,1,RES1,3001 -0108_1603_31,-74.67626319,39.35588631,501 SCARBOROUGH DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1603_33,-74.56457422,39.35830297,SCARBOROUGH DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1603_34,-74.58950357,39.43296607,3025 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_1603_35,-74.624666,39.420607,3029 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1603_36,-74.60860137,39.44167292,1 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1603_37,-74.422832,39.371795,3 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_38,-74.56142776,39.53255269,5 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_39,-74.56755125,39.34624663,7 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1603_4,-74.708615,39.567588,2 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_40,-74.57386835,39.33494428,9 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1603_41,-74.5329316,39.38295187,11 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1603_43,-74.81937979,39.37157861,201 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1603_44,-74.6455055,39.366631,203 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1603_45,-74.59518716,39.34862185,205 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1603_46,-74.56871622,39.48058929,207 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1603_47,-74.50597169,39.33581742,209 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_48,-74.65373567,39.35566111,211 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_49,-74.55788235,39.52598135,213 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_5,-74.53232918,39.38981108,3 ROOK COURT,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_50,-74.87269,39.592392,215 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_51,-74.5838455,39.403995,217 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_52,-74.40918167,39.38093199,219 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_53,-74.837356,39.537976,221 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_54,-74.5992405,39.591978,223 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_1603_55,-74.54219977,39.39307698,225 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_56,-74.47961095,39.34638696,301 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_57,-74.875576,39.495376,303 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_1603_58,-74.7763225,39.5981315,305 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_59,-74.51710133,39.32084766,307 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_6,-74.50959854,39.44139791,4 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_60,-74.51996304,39.40997932,309 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_61,-74.9625425,39.512722,311 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1603_62,-74.36277921,39.40981919,313 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_63,-74.64003229,39.36801024,315 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_64,-74.59372418,39.32512689,317 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_65,-74.61274022,39.36630087,319 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_66,-74.46862746,39.45459321,401 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_67,-74.5732074,39.42591316,403 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_68,-74.58571834,39.52515999,405 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_69,-74.63874106,39.53443884,407 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_7,-74.59735363,39.31037385,5 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_70,-74.54331854,39.38226384,409 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_71,-74.59832148,39.38290975,411 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1603_8,-74.53577819,39.39581691,6 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1603_9,-74.54838525,39.38447539,7 ROOK COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1604_1,-74.51294418,39.4844841,107 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1604_10,-74.8113815,39.3680875,105 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1604_2,-74.575444,39.3707035,6 BENTWOOD ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1604_3,-74.50688069,39.42592616,106 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1604_4,-74.81897517,39.63503101,104 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1604_5,-74.54773318,39.50843675,102 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1604_6,-74.5121,39.4057655,100 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1604_7,-74.5136425,39.3989105,5 CHARLESTON ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1604_8,-74.658474,39.397655,101 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1604_9,-74.82715096,39.63792234,103 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_1,-74.60376909,39.51862436,219 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_10,-74.5449165,39.5697075,3 PAWN COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_11,-74.59356584,39.37848853,4 PAWN COURT,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1605_12,-74.753487,39.452617,5 PAWN COURT,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_13,-74.606968,39.500858,6 PAWN COURT,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_1605_14,-74.50048497,39.33247588,7 PAWN COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_15,-74.6835938,39.44395158,8 PAWN COURT,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_16,-74.65277467,39.45903356,208 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_17,-74.4960065,39.4341775,206 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_18,-74.63523781,39.43232305,202 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_19,-74.76716534,39.34822151,1 BENTWOOD ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_2,-74.44145918,39.36740249,10 COMPTON LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_20,-74.66108017,39.5471345,3 BENTWOOD ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_21,-74.53597765,39.38618813,5 BENTWOOD ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_22,-74.6678605,39.359179,7 BENTWOOD ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_23,-74.6305885,39.3663435,9 BENTWOOD ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_24,-74.68484497,39.48964335,205 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_25,-74.625625,39.353138,207 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_26,-74.644042,39.532613,209 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1605_27,-74.80208633,39.63486833,211 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_28,-74.68378062,39.36097165,213 SHIRES WAY,EGG HARBOR TWP,16,1992,1,IND2,3002 -0108_1605_29,-74.57286339,39.33855096,215 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_3,-74.565548,39.367111,8 COMPTON LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_30,-74.79883458,39.62155783,217 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_4,-74.366073,39.412728,6 COMPTON LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1605_5,-74.758373,39.4298085,4 COMPTON LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_6,-74.59298793,39.37201883,2 COMPTON LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1605_7,-74.59916508,39.42882466,220 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1605_8,-74.59856532,39.37840534,1 PAWN COURT,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1605_9,-74.4496791,39.37495174,2 PAWN COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_1,-74.39666968,39.38979705,6 DOWNING LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_10,-74.46695001,39.4555296,300 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3004 -0108_1606_11,-74.51920759,39.44219982,5 COMPTON LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1606_12,-74.5299585,39.381333,7 COMPTON LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1606_13,-74.45067854,39.35681538,9 COMPTON LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_14,-74.36839567,39.404755,301 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_15,-74.43913712,39.36979218,303 SHIRES WAY,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_16,-74.61999034,39.43733794,1 KNIGHT COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_17,-74.59829107,39.36277476,2 KNIGHT COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_18,-74.64010689,39.5265732,3 KNIGHT COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_19,-74.64139883,39.56450799,4 KNIGHT COURT,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1606_2,-74.60411005,39.51478016,4 DOWNING LANE,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_1606_20,-74.52013145,39.38870318,5 KNIGHT COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_21,-74.7654285,39.663813,6 KNIGHT COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_22,-74.52272917,39.47154002,7 KNIGHT COURT,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1606_23,-74.52055151,39.31899867,8 KNIGHT COURT,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_24,-74.84135819,39.47680901,315 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1606_3,-74.7546245,39.43229,2 DOWNING LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_4,-74.59119621,39.38089033,324 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1606_5,-74.51982663,39.39113197,320 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_6,-74.46819382,39.49212568,316 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_7,-74.85625095,39.45067479,312 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_8,-74.4982645,39.328829,308 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1606_9,-74.59508151,39.3627885,304 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1607_1,-74.44051743,39.36838932,910 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1607_10,-74.64563781,39.4095744,406 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1607_11,-74.52335094,39.45607713,404 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_12,-74.45851349,39.35130033,1 DOWNING LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_14,-74.94772701,39.53070966,7 DOWNING LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1607_15,-74.5571645,39.469849,14 ESHER WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_16,-74.7907475,39.4491785,12 ESHER WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1607_17,-74.57853275,39.33441308,8 ESHER WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_18,-74.59973639,39.38309104,6 ESHER WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1607_19,-74.48752149,39.33400266,4 ESHER WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_2,-74.59044169,39.36653839,908 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_20,-74.5239865,39.3197865,2 ESHER WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_3,-74.476488,39.3382305,906 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_4,-74.8008525,39.4405905,904 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1607_5,-74.43022231,39.36400704,902 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1607_6,-74.5182835,39.3869925,414 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1607_7,-74.50737584,39.40835751,412 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1607_8,-74.59747834,39.34102055,410 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1607_9,-74.56483881,39.35890695,408 GRAVEL BEND ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1608_1,-74.5751765,39.4281865,1008 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1608_2,-74.68690726,39.51680307,1006 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1608_3,-74.4847635,39.3392625,1004 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1608_4,-74.558849,39.45929696,1002 SCARBOROUGH DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1608_5,-74.76341849,39.60270359,3 ESHER WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1608_6,-74.516471,39.410535,5 ESHER WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1608_7,-74.5037005,39.3270785,7 ESHER WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1608_8,-74.85368529,39.59148525,9 ESHER WAY,EGG HARBOR TWP,16,1992,1,RES1,3004 -0108_1608_9,-74.4073125,39.377989,419 SHIRES WAY,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_1609_1,-74.56720024,39.34786242,611 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1609_10,-74.5334195,39.470996,107 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_11,-74.56616337,39.34672129,109 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_12,-74.40620131,39.39333707,111 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_13,-74.4906335,39.432665,113 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_14,-74.37657972,39.39824752,115 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_15,-74.64974612,39.54746787,117 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_1609_16,-74.570098,39.3660365,119 BERESFORD DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_17,-74.60034697,39.32110468,40 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1609_18,-74.64022002,39.36330505,125 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_19,-74.75433412,39.60222271,127 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_2,-74.63272196,39.41715202,609 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1609_20,-74.7115635,39.634552,129 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_21,-74.589095,39.421491,131 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_22,-74.410862,39.390563,133 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_23,-74.5750125,39.359129,135 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_24,-74.80226162,39.62306894,137 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1609_25,-74.63328783,39.4288985,139 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_26,-74.5217165,39.322497,141 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_27,-74.47166214,39.49324712,143 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_28,-74.5112664,39.44343121,145 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_29,-74.55696412,39.35770021,147 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_3,-74.44052979,39.36602336,607 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1609_30,-74.5753955,39.54318,140 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_31,-74.57691139,39.35047289,138 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_32,-74.52237418,39.5396957,136 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_33,-74.61862729,39.43643822,134 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_34,-74.6180455,39.436982,132 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1609_35,-74.45704632,39.34882674,130 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1609_36,-74.50985266,39.32633946,128 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_37,-74.4601872,39.35024244,126 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_38,-74.498326,39.526727,124 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_39,-74.8298255,39.4436645,50 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1609_4,-74.4591505,39.354449,605 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1609_40,-74.49412589,39.46953817,52 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1609_41,-74.713716,39.465566,54 TOWER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1609_42,-74.65195243,39.52706405,56 TOWER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1609_43,-74.63178034,39.61348766,58 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1609_44,-74.63592863,39.38348054,60 TOWER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1609_5,-74.62595826,39.35525386,603 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1609_6,-74.5895005,39.3236925,601 SHIRES WAY,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1609_7,-74.4329125,39.3585815,101 BERESFORD DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1609_8,-74.52650895,39.31270434,103 BERESFORD DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1609_9,-74.8008365,39.6482535,105 BERESFORD DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1610_1,-74.4979645,39.331842,39 TOWER AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1610_2,-74.62989569,39.42694204,37 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1610_3,-74.6212515,39.4924745,35 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1610_4,-74.64281216,39.41097152,33 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1610_5,-74.6915495,39.486375,31 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1610_6,-74.497158,39.33197,29 TOWER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1610_7,-74.58115826,39.34224054,103 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1610_8.01,-74.5037948,39.32945935,109 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1610_8.02,-74.7140148,39.47207548,111 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1610_8.03,-74.88491146,39.56499135,113 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1610_8.04,-74.486712,39.4424955,115 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES3A,3001 -0108_1610_8.05,-74.52044153,39.39348715,117 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1610_8.06,-74.627127,39.4233635,119 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_1,-74.4943278,39.45957108,100 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_12,-74.7536545,39.451404,6001 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1611_16,-74.52305,39.4483605,6011 BLACK HORSE PIKE,EGG HARBOR TWP,,2015,1,RES1,3001 -0108_1611_17,-74.4881429,39.3502842,6013 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3004 -0108_1611_18,-74.586994,39.328943,6015 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1611_19,-74.5995602,39.368149,6017 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1611_2,-74.60943779,39.48687297,102 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1611_20,-74.3578645,39.412635,6021 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1611_27,-74.5486895,39.3707455,17 TOWER AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1611_29,-74.5300225,39.384405,21 TOWER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1611_3,-74.76902725,39.32972677,104 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1611_4.01,-74.6017715,39.36277,106 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.02,-74.79467822,39.64094472,108 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.03,-74.80732377,39.48980858,110 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.04,-74.48077951,39.34894267,112 TREETOP LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1611_4.05,-74.60871686,39.35170582,114 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.06,-74.48215146,39.34842883,116 TREETOP LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1611_4.07,-74.49581478,39.45752847,118 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.08,-74.60660932,39.34100205,120 TREETOP LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.09,-74.57254169,39.33674351,43 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_1611_4.11,-74.57496146,39.34922137,47 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.12,-74.69722869,39.35592265,49 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.13,-74.881945,39.591873,51 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.14,-74.68760708,39.36175917,53 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.15,-74.61324333,39.42872949,55 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1611_4.16,-74.62289318,39.37494201,57 TOWER AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1611_4.17,-74.43610082,39.36780556,59 TOWER AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1612_10,-74.510105,39.484733,17 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,COM1,3004 -0108_1612_11,-74.522402,39.397922,19 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1612_12,-74.60697694,39.32129034,21 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1612_13,-74.5047025,39.4065425,23 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1612_14,-74.50243967,39.32891153,25 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1612_15,-74.631605,39.420776,27 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1612_2,-74.40086882,39.38964085,1 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1612_3,-74.49067559,39.33115438,3 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1612_4,-74.632138,39.3583145,5 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,GOV1,3004 -0108_1612_5,-74.70754146,39.50087867,7 BRANDYWINE COURT,EGG HARBOR TWP,37,2000,1,RES1,3001 -0108_1612_6,-74.3680935,39.408216,9 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1612_7,-74.83307941,39.53810176,11 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1612_8,-74.52216567,39.32066247,13 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1612_9,-74.61830561,39.55603464,15 BRANDYWINE COURT,EGG HARBOR TWP,37,2001,1,RES1,3001 -0108_1613_10,-74.6442142,39.43201004,105 YARDLEY COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_11,-74.91563285,39.50331496,104 YARDLEY COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_12,-74.56987867,39.35083407,103 YARDLEY COURT,EGG HARBOR TWP,16,1997,1,REL1,3004 -0108_1613_13,-74.6082075,39.5033675,102 YARDLEY COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_14,-74.5087565,39.405486,101 YARDLEY COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_15,-74.84992079,39.44232924,100 YARDLEY COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_16,-74.47159655,39.34039617,231 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1613_17,-74.52807217,39.38105903,229 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1613_18,-74.41656489,39.36499171,227 SALEM STREET,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_19,-74.89631639,39.47294325,225 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_2.01,-74.59517993,39.34431725,2 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,COM1,3004 -0108_1613_2.02,-74.92387592,39.49729156,4 STOCKTON LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1613_2.03,-74.8418575,39.6039935,6 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.04,-74.519585,39.387176,8 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.05,-74.82262017,39.65393968,10 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.06,-74.50347328,39.44466933,12 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3002 -0108_1613_2.07,-74.3888595,39.3941525,14 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.08,-74.54564233,39.37422249,16 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.09,-74.50355889,39.50210784,18 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.10,-74.60073115,39.3416837,20 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.11,-74.39678763,39.38637475,22 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.12,-74.548078,39.373363,24 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.13,-74.54328608,39.36884208,26 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.14,-74.61254158,39.34663676,28 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.15,-74.4423845,39.372656,30 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.16,-74.65843316,39.35781699,32 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.17,-74.64202043,39.33295029,34 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.19,-74.52453987,39.46507693,23 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.20,-74.80339253,39.54371918,21 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.21,-74.70071825,39.57546725,19 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,COM4,3004 -0108_1613_2.22,-74.3990625,39.388568,323 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.23,-74.573278,39.4145005,321 WYTHE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1613_2.24,-74.5560535,39.474043,319 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.25,-74.6096585,39.3423005,317 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.26,-74.46966691,39.49209672,315 WYTHE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1613_2.27,-74.87230769,39.59183974,313 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.28,-74.512919,39.3253125,311 WYTHE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1613_2.29,-74.39045095,39.39090485,309 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.30,-74.6245265,39.3543745,307 WYTHE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1613_2.31,-74.608124,39.3931335,305 WYTHE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1613_2.32,-74.49051055,39.49710974,303 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_2.33,-74.71216766,39.56854688,301 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1613_20,-74.76447178,39.30705993,223 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_21,-74.46408272,39.35717467,221 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_22,-74.59301642,39.42836961,219 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_23,-74.72414893,39.45081719,217 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_24,-74.54420213,39.40341779,215 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_25,-74.4909535,39.4326165,213 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_26,-74.50672773,39.32896817,211 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_27,-74.49437629,39.42791441,209 SALEM STREET,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_28,-74.50869841,39.43521465,207 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_29,-74.62518184,39.42252283,205 SALEM STREET,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_3,-74.654298,39.626148,3069 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1613_30,-74.5052602,39.41456172,203 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_31,-74.9463785,39.524226,201 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1613_32,-74.58685642,39.35259163,105 HORSESHOE COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1613_33,-74.571202,39.4129305,104 HORSESHOE COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1613_34,-74.88592388,39.59706313,103 HORSESHOE COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_35,-74.761422,39.6357785,102 HORSESHOE COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_36,-74.67969924,39.48622331,101 HORSESHOE COURT,EGG HARBOR TWP,16,1998,1,COM3,3004 -0108_1613_37,-74.79660081,39.60774777,100 HORSESHOE COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_4,-74.51081496,39.33592883,57 PROVIDENCE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_5,-74.50221362,39.33542165,55 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_6,-74.500045,39.3357965,53 PROVIDENCE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1613_7,-74.80137332,39.64154115,51 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_8,-74.51474541,39.38532543,49 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_85,-74.54779615,39.39225603,3073 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3004 -0108_1613_87,-74.87451019,39.49177157,3081 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,2018,1,RES1,3001 -0108_1613_88,-74.56058896,39.41626469,3085 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,1960,1,COM4,3004 -0108_1613_9,-74.49815698,39.43277711,47 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1613_90,-74.591244,39.4331085,3089 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1613_91,-74.64462,39.3673505,6092 REEGA AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1613_92,-74.36831159,39.41477918,6088 REEGA AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1613_93,-74.80449083,39.6447825,6084 REEGA AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1614_1,-74.80806504,39.63062192,200 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1614_10,-74.925277,39.507326,216 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1614_11,-74.63267671,39.43387744,214 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1614_12,-74.46035488,39.49556163,212 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1614_13,-74.368984,39.4162905,210 SALEM STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1614_14,-74.5700935,39.3702275,208 SALEM STREET,EGG HARBOR TWP,16,1998,1,COM1,3004 -0108_1614_15,-74.45196766,39.35675671,206 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1614_16,-74.64301996,39.37769404,204 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1614_17,-74.5214894,39.32278564,202 SALEM STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1614_2,-74.60509067,39.52873284,19 PROVIDENCE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1614_3,-74.80603349,39.63002017,21 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,EDU1,3004 -0108_1614_4,-74.7989368,39.65864281,23 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1614_5,-74.55440383,39.369561,25 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1614_6,-74.374831,39.400056,27 PROVIDENCE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1614_7,-74.5504705,39.373612,29 PROVIDENCE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1614_8,-74.62577231,39.41815938,31 PROVIDENCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1614_9,-74.82812451,39.46221683,218 SALEM STREET,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1615_1,-74.44464633,39.37387969,100 CHASE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1615_10,-74.62586309,39.41587218,17 STOCKTON LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1615_11,-74.48703115,39.49495931,312 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1615_12,-74.5102575,39.45124,310 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1615_13,-74.3715905,39.400869,112 CHASE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1615_14,-74.49918915,39.33218852,110 CHASE ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_1615_15,-74.60840985,39.44159344,108 CHASE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1615_16,-74.48112799,39.34887283,106 CHASE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1615_17,-74.4944696,39.34211533,104 CHASE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1615_18,-74.84002021,39.59306364,102 CHASE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1615_2,-74.65261733,39.5067985,1 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1615_3,-74.798772,39.365573,3 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1615_4,-74.50813128,39.48174891,5 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1615_5,-74.50274592,39.41122038,7 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1615_6,-74.627257,39.424806,9 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1615_7,-74.406034,39.380911,11 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_1615_8,-74.40311496,39.38419314,13 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1615_9,-74.50743806,39.43911047,15 STOCKTON LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1616_1,-74.64568248,39.34303836,300 WYTHE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1616_2,-74.8056783,39.52044259,111 CHASE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1616_3,-74.82450885,39.63783044,113 CHASE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1616_4,-74.6228475,39.4252345,115 CHASE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1616_5,-74.81811802,39.64191584,117 CHASE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1616_6,-74.46899855,39.34594583,306 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1616_7,-74.40013035,39.38278405,304 WYTHE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1616_8,-74.4956605,39.4353655,302 WYTHE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1617_1,-74.61867734,39.60103598,101 CHASE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1617_2,-74.6541515,39.404579,103 CHASE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1617_3,-74.51156782,39.32869404,105 CHASE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1617_4,-74.62448444,39.60533882,107 CHASE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1617_5,-74.81262478,39.53371333,206 WALTON ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1617_6,-74.542206,39.3864935,204 WALTON ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1617_7,-74.58172841,39.42392567,202 WALTON ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1617_8,-74.48558416,39.46096405,200 WALTON ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1617_9,-74.51899883,39.40193142,6064 REEGA AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1701_1,-74.8384255,39.4836845,WJRR RIGHT WAY,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1702_1,-74.53254001,39.4922243,3092 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_10,-74.3682315,39.4037625,7 HARLEY AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1702_100,-74.73809095,39.4654122,3002 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_101,-74.49480673,39.44807904,6101 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_102,-74.59530984,39.34708932,6105 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_108,-74.8794386,39.5905613,6115 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_11,-74.55316304,39.42637756,9 HARLEY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1702_112,-74.613776,39.341363,3013 IVINS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1702_114,-74.6018541,39.30795598,3023 IVINS AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1702_117,-74.68161965,39.55744982,3033 IVINS AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1702_118,-74.50859743,39.40638368,3037 IVINS AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1702_119,-74.5517385,39.371619,3041 IVINS AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1702_12,-74.54246234,39.41794601,13 HARLEY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1702_120,-74.813066,39.371467,3045 IVINS AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1702_122,-74.458699,39.348483,3053 IVINS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1702_123,-74.79302313,39.53609688,3059 IVINS AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_1702_124,-74.5521702,39.427957,3061 IVINS AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1702_125,-74.64093406,39.53044515,3065 IVINS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1702_127,-74.4967825,39.4321595,3067 IVINS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1702_128,-74.434268,39.368667,3069 IVINS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1702_129,-74.49951767,39.33134395,3071 IVINS AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1702_13,-74.788726,39.551154,15 HARLEY AVENUE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_1702_130,-74.60437527,39.37240094,3073 IVINS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1702_131,-74.53618841,39.38691817,3075 IVINS AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1702_132,-74.5584835,39.394193,3077 IVINS AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1702_133,-74.65156874,39.53011531,3083 IVINS AVENUE,EGG HARBOR TWP,14,1940,1,RES3B,3001 -0108_1702_135,-74.64817899,39.52968117,6136 REEGA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1702_137,-74.6061535,39.483368,6132 REEGA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1702_139,-74.60620933,39.36557247,102 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_1702_14,-74.6054587,39.31920889,19 HARLEY AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1702_140,-74.7658185,39.3504005,104 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_141,-74.85441011,39.45981734,106 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_142,-74.59045141,39.32119516,108 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_143,-74.3835901,39.39596428,110 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_1702_144,-74.39499361,39.38892949,112 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_145,-74.367078,39.408364,114 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_146,-74.55047349,39.40119833,116 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,IND2,3002 -0108_1702_147,-74.61043298,39.32704934,118 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_148,-74.62942783,39.52400949,120 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3004 -0108_1702_149,-74.713278,39.4655785,122 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_15,-74.49699222,39.50004011,25 HARLEY AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1702_150,-74.6315805,39.3165545,124 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_151,-74.51530366,39.32076497,126 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_152,-74.93794718,39.52344415,128 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_153,-74.45107724,39.49591911,130 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_154,-74.53488282,39.3793658,132 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_155,-74.5680495,39.3512825,134 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_156,-74.591524,39.3757825,136 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_157,-74.60770859,39.44031681,138 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1702_158,-74.63746105,39.42910484,140 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1702_159,-74.62369944,39.37516892,142 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_16,-74.50540266,39.41463467,27 HARLEY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1702_16.01,-74.54903879,39.46744143,29 HARLEY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1702_160,-74.63376646,39.50427116,144 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_161,-74.868101,39.601204,146 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1702_162,-74.63847342,39.52454586,2 HERITAGE TERRACE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1702_163,-74.69117658,39.49547914,4 HERITAGE TERRACE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_164,-74.57118216,39.36807321,6 HERITAGE TERRACE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_165,-74.57240966,39.4284849,8 HERITAGE TERRACE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_166,-74.3627115,39.419868,10 HERITAGE TERRACE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_167,-74.59167214,39.32087272,132 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_168,-74.454842,39.3513345,134 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_169,-74.59144925,39.33318512,135 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_17,-74.4795825,39.3363985,31 HARLEY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1702_170,-74.65193154,39.35507965,133 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_171,-74.55434661,39.5006138,131 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_172,-74.83336565,39.37810552,129 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_173,-74.58001793,39.53155541,127 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1702_174,-74.365391,39.41001317,125 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_175,-74.9251315,39.4759415,123 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_176,-74.49264571,39.4350776,121 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_177,-74.60927266,39.3236167,119 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_178,-74.62306564,39.38589129,117 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_179,-74.57363305,39.33883372,115 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_180,-74.51639202,39.41684364,113 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_181,-74.60648678,39.39078483,111 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_182,-74.48943547,39.41935319,109 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_183,-74.88697728,39.50480275,107 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_184,-74.80061473,39.65978461,105 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_185,-74.5123085,39.418735,103 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,IND1,3002 -0108_1702_186,-74.64785433,39.53124,101 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_187,-74.38137995,39.39356816,3011 IVINS AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_1702_188,-74.35631034,39.41406598,100 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1702_19,-74.67390182,39.55573954,32 HARLEY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1702_196,-74.4872165,39.4217765,21 HARLEY AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1702_2,-74.55133018,39.38129934,3088 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_20,-74.49291247,39.33033982,30 HARLEY AVENUE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_1702_21,-74.51307443,39.331832,28 HARLEY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1702_22,-74.4177355,39.36848,26 HARLEY AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1702_23,-74.5564655,39.4722165,22 HARLEY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_1702_24,-74.60958352,39.32211747,20 HARLEY AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1702_26,-74.601718,39.396839,18 HARLEY AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_1702_28,-74.50093061,39.4580739,16 HARLEY AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1702_3,-74.582032,39.4732465,3084 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,2008,1,RES1,3001 -0108_1702_34,-74.3736836,39.41764973,4 HARLEY AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1702_36,-74.820207,39.369878,2 HARLEY AVENUE,EGG HARBOR TWP,16,1940,1,GOV1,3004 -0108_1702_4,-74.57119481,39.41444896,3080 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_41,-74.4907765,39.3346015,3062 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1702_49,-74.5487335,39.375945,15 BROWN AVENUE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_1702_50,-74.6094255,39.3926245,17 BROWN AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1702_65,-74.78452742,39.63468825,2 BROWN AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1702_67,-74.64011915,39.38074491,3056 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_1702_68,-74.7601768,39.44873343,3052 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_69,-74.65211373,39.35845189,3050 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1702_70,-74.87246289,39.45889421,3 WILLIAM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1702_71,-74.485423,39.441209,5 WILLIAM AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1702_73,-74.652403,39.506946,9 WILLIAM AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1702_74,-74.56116327,39.36159164,15 WILLIAM AVENUE,EGG HARBOR TWP,16,1964,1,GOV1,3004 -0108_1702_75,-74.5963885,39.3184655,17 WILLIAM AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1702_76,-74.395694,39.39435371,19 WILLIAM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1702_80,-74.68229328,39.48936923,14 WILLIAM AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1702_86,-74.6162595,39.6014485,6 WILLIAM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1702_88,-74.52693294,39.39495232,3048 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1702_89,-74.4393675,39.3690565,3044 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_1702_9,-74.548315,39.3781645,5 HARLEY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1702_90,-74.607977,39.3856165,3040 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_1702_91,-74.62706069,39.36333807,3038 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1702_93,-74.451065,39.3572445,3030 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1702_94,-74.7983,39.6348915,3024 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1702_99,-74.58412073,39.32766054,3008 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_1703_1,-74.37928551,39.41540837,6202 REEGA AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_1703_106,-74.710624,39.4663585,6218 REEGA AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1703_12.01,-74.48355549,39.4356496,2 HOLDEN COURT,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_12.02,-74.48440631,39.43259996,4 HOLDEN COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_1703_12.03,-74.48379917,39.43227312,6 HOLDEN COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_1703_12.04,-74.5001725,39.408584,8 HOLDEN COURT,EGG HARBOR TWP,16,2008,1,RES3A,3001 -0108_1703_12.05,-74.5251175,39.3978585,10 HOLDEN COURT,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_12.06,-74.52690311,39.39902943,12 HOLDEN COURT,EGG HARBOR TWP,16,2007,1,COM1,3004 -0108_1703_12.07,-74.52973768,39.3988101,14 HOLDEN COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1703_12.08,-74.52307643,39.39923688,16 HOLDEN COURT,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_12.10,-74.50446449,39.41760613,18 HOLDEN COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1703_12.11,-74.50581503,39.40607615,20 HOLDEN COURT,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1703_12.12,-74.52151882,39.39529739,13 HOLDEN COURT,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1703_12.13,-74.5011545,39.416535,11 HOLDEN COURT,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1703_12.14,-74.5066407,39.40925975,9 HOLDEN COURT,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1703_12.15,-74.52729486,39.39655202,7 HOLDEN COURT,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_1703_12.16,-74.52330711,39.39620147,5 HOLDEN COURT,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1703_12.17,-74.50863146,39.40585036,3 HOLDEN COURT,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1703_12.18,-74.50824483,39.40497046,1 HOLDEN COURT,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1703_127,-74.64268358,39.33478384,6212 REEGA AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_1703_13,-74.498204,39.4497695,3074 IVINS AVENUE LL,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1703_14.01,-74.49491106,39.42856781,2 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1703_14.02,-74.49826229,39.4323955,4 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1703_14.03,-74.4935235,39.433168,6 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1703_14.04,-74.498235,39.433612,8 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1703_14.05,-74.48775252,39.4348655,10 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1703_14.06,-74.50420404,39.42671492,12 TRADITION CIRCLE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1703_14.07,-74.49432411,39.42635671,14 TRADITION CIRCLE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1703_14.08,-74.522793,39.402671,16 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_14.09,-74.53036533,39.40332943,18 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3004 -0108_1703_14.10,-74.52262618,39.40393952,20 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_14.11,-74.521569,39.404028,22 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1703_14.12,-74.529331,39.4075855,24 TRADITION CIRCLE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1703_14.13,-74.52223132,39.40923089,26 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_14.14,-74.51196575,39.4053714,28 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_14.16,-74.51180233,39.40776699,30 TRADITION CIRCLE,EGG HARBOR TWP,16,2009,1,RES3B,3001 -0108_1703_14.17,-74.51382483,39.41056099,32 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_14.18,-74.50356568,39.41444852,34 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1703_14.19,-74.5033702,39.41488493,36 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1703_14.20,-74.5046729,39.41533825,38 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1703_14.21,-74.85633934,39.56242846,40 TRADITION CIRCLE,EGG HARBOR TWP,16,2011,1,GOV1,3004 -0108_1703_18,-74.4913775,39.496332,3056 IVINS AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_1703_19,-74.4990849,39.50050442,3054 IVINS AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_1703_2,-74.547548,39.3607375,3094 IVINS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1703_20,-74.8306565,39.378471,3050 IVINS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1703_22,-74.50870267,39.40771354,3 FIRETHORN TERRACE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_1703_23,-74.832098,39.4834825,5 FIRETHORN TERRACE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1703_24,-74.59382717,39.31147373,6 FIRETHORN TERRACE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1703_25,-74.45178081,39.37554897,4 FIRETHORN TERRACE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1703_26,-74.63765648,39.43072183,2 FIRETHORN TERRACE,EGG HARBOR TWP,15,1960,1,RES1,3001 -0108_1703_29,-74.4879075,39.440646,3042 IVINS AVENUE,EGG HARBOR TWP,16,1953,1,RES1,3001 -0108_1703_30,-74.4891165,39.337953,3040 IVINS AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1703_31,-74.628762,39.378211,3036 IVINS AVENUE,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_1703_33,-74.645531,39.550258,3030 IVINS AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1703_35,-74.95108974,39.53161507,3018 IVINS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1703_36,-74.80365366,39.63891424,3014 IVINS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1703_37,-74.75322664,39.45062577,3012 IVINS AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1703_38,-74.53451122,39.37722333,6201 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1703_4,-74.44193639,39.37197032,3092 IVINS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1703_40,-74.56494135,39.41580507,3008 IVINS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1703_43,-74.601207,39.331377,6211 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1703_44,-74.63296182,39.41797549,6215 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1703_47,-74.46597554,39.34448136,6223 BLACK HORSE PIKE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1703_48,-74.464634,39.345122,6227 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES3A,3002 -0108_1703_5,-74.5385485,39.468489,3090 IVINS AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1703_51,-74.60367,39.3099425,3013 TREMONT AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_1703_53,-74.63260601,39.48698333,3017 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_1703_54,-74.50102767,39.334546,3019 TREMONT AVENUE,EGG HARBOR TWP,16,1966,1,RES3A,3001 -0108_1703_55,-74.753345,39.43044,3021 TREMONT AVENUE,EGG HARBOR TWP,16,1956,1,RES1,3001 -0108_1703_57,-74.65061107,39.53254485,3031 TREMONT AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1703_58,-74.61542387,39.38495782,3035 TREMONT AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_1703_59,-74.50715393,39.3294128,3037 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_1703_6,-74.80066,39.6338725,3088 IVINS AVENUE,EGG HARBOR TWP,16,2003,1,RES3B,3001 -0108_1703_60,-74.6173885,39.5552805,3039 TREMONT AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1703_61,-74.58924003,39.37955532,3041 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_1703_62,-74.60013484,39.33002997,3043 TREMONT AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_1703_63,-74.55300171,39.46936506,3045 TREMONT AVENUE,EGG HARBOR TWP,16,1979,1,COM3,3004 -0108_1703_64,-74.87967025,39.5919402,3047 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_1703_65,-74.53017135,39.3795107,3049 TREMONT AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1703_66,-74.78355297,39.64176599,3051 TREMONT AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1703_67,-74.58641629,39.42441696,3055 TREMONT AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1703_68,-74.49927461,39.33225315,3057 TREMONT AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1703_7,-74.8157545,39.6391165,3086 IVINS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1703_74,-74.5375655,39.3874775,3081 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1703_75,-74.590452,39.4235565,3085 TREMONT AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1703_76,-74.7822281,39.65362674,3087 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_1703_77,-74.7865432,39.44317892,3089 TREMONT AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1703_78,-74.51722657,39.39556577,3091 TREMONT AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3002 -0108_1703_81,-74.60364204,39.32579475,3093 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1703_82,-74.88442047,39.58579064,6236 REEGA AVENUE,EGG HARBOR TWP,16,1987,1,COM9,3004 -0108_1704_1,-74.8747915,39.597282,WJRR RIGHT WAY,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1705_1,-74.4780725,39.443943,121 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1705_10,-74.48328033,39.34712001,123 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1705_2,-74.6904905,39.363142,106 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1705_3,-74.533458,39.3781025,108 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1705_4,-74.50029685,39.33606014,7 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1705_5,-74.77830258,39.5163583,5 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1705_6,-74.564338,39.5511945,3 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1705_7,-74.522551,39.392042,1 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1705_8,-74.60571603,39.38804231,127 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1705_9,-74.6341497,39.41053203,125 CONSTITUTION DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3002 -0108_1706_1,-74.59167933,39.36373589,124 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1996,1,RES3A,3002 -0108_1706_10,-74.601938,39.43276,6 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1706_11,-74.591301,39.3496045,8 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1706_12,-74.42984867,39.35621865,10 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_1706_13,-74.780546,39.6245835,12 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1706_2,-74.95395771,39.51681733,126 INDEPENDENCE TRAIL,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1706_3,-74.62396886,39.43207511,9 HERITAGE TERRACE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1706_4,-74.72728,39.45491709,7 HERITAGE TERRACE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1706_5,-74.47143991,39.49140232,5 HERITAGE TERRACE,EGG HARBOR TWP,16,1996,1,RES3B,3001 -0108_1706_6,-74.50968893,39.47472225,3 HERITAGE TERRACE,EGG HARBOR TWP,16,1996,1,RES3A,3001 -0108_1706_7,-74.50385381,39.41166205,1 HERITAGE TERRACE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1706_8,-74.487031,39.49910894,2 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_1706_9,-74.53407898,39.41304524,4 PLYMOUTH TERRACE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1707_1,-74.48362868,39.46269099,1 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1707_10,-74.5044015,39.429247,19 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1707_11,-74.5041695,39.429494,21 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1707_12,-74.50155591,39.42855816,23 TRADITION CIRCLE,EGG HARBOR TWP,16,2009,1,RES1,3004 -0108_1707_13,-74.498615,39.429785,25 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1707_14,-74.502203,39.4320675,27 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1707_15,-74.5006715,39.4322445,29 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1707_16,-74.5013815,39.432332,31 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1707_17,-74.50410693,39.43499063,33 TRADITION CIRCLE,EGG HARBOR TWP,16,2009,1,COM1,3004 -0108_1707_2,-74.4582485,39.464611,3 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1707_3,-74.48722669,39.4568929,5 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_1707_4,-74.48660732,39.43948492,7 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES3A,3001 -0108_1707_5,-74.45980793,39.45300066,9 TRADITION CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1707_6,-74.443303,39.49048322,11 TRADITION CIRCLE,EGG HARBOR TWP,16,2011,1,RES1,3002 -0108_1707_7,-74.441231,39.492535,13 TRADITION CIRCLE,EGG HARBOR TWP,16,2011,1,RES3A,3001 -0108_1707_8,-74.49318523,39.44318316,15 TRADITION CIRCLE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_1707_9,-74.51097591,39.43575815,17 TRADITION CIRCLE,EGG HARBOR TWP,16,2010,1,COM1,3004 -0108_1801_1,-74.55695475,39.43603812,WJRR RIGHT WAY,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1802_26.01,-74.50656068,39.32878734,116 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3002 -0108_1802_26.02,-74.77375142,39.65831898,114 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_26.03,-74.49873586,39.32882533,112 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_26.04,-74.55360697,39.47066225,110 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_26.05,-74.70339064,39.58424142,108 BRISTOL ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1802_26.06,-74.48101864,39.43217067,106 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_26.07,-74.95850041,39.53591238,104 BRISTOL ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1802_26.08,-74.492355,39.433239,102 BRISTOL ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1802_26.09,-74.5138969,39.43738192,100 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_27,-74.489533,39.3341335,3052 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1802_28,-74.60970266,39.50211954,3048 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1802_31,-74.71846578,39.43886597,3046 TREMONT AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_1802_35,-74.57405179,39.34947182,3038 TREMONT AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1802_38,-74.533218,39.3779055,3034 TREMONT AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_1802_39,-74.5036515,39.3251985,3032 TREMONT AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1802_40,-74.49289134,39.53297299,3028 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1802_41,-74.640849,39.382946,3026 TREMONT AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1802_42.01,-74.59842851,39.35575396,3018 TREMONT AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1802_42.02,-74.53981045,39.37680666,3020 TREMONT AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_1802_43,-74.75691328,39.43386577,3016 TREMONT AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1802_44,-74.442389,39.3592865,3014 TREMONT AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3002 -0108_1802_48,-74.62532276,39.44018865,3001 FERNWOOD AVENUE,EGG HARBOR TWP,16,1950,2,RES1,3001 -0108_1802_49,-74.58375468,39.37589052,3005 FERNWOOD AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1802_50.01,-74.514236,39.328602,3011 FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_1802_50.02,-74.950987,39.536525,3009 FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1802_50.03,-74.87590632,39.49102147,3007 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1802_51,-74.54582346,39.41335026,3015 FERNWOOD AVENUE,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_1802_52,-74.62698971,39.35977412,3019 FERNWOOD AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1802_53,-74.52373019,39.38699045,3025 FERNWOOD AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_1802_54,-74.60966,39.349042,3033 FERNWOOD AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1802_55,-74.52326967,39.3218125,3039 FERNWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1802_56.01,-74.45659133,39.47413217,3045 FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_1802_56.02,-74.54651645,39.37484434,3047 FERNWOOD AVENUE,EGG HARBOR TWP,16,2003,1,COM1,3004 -0108_1802_57,-74.50799671,39.32243939,3049 FERNWOOD AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1802_58,-74.786794,39.648609,3051 FERNWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_1802_59,-74.46046299,39.45334901,3057 FERNWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1802_60.01,-74.66997946,39.55765717,15 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_60.02,-74.6383114,39.44536869,13 THORNHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1802_60.03,-74.57000162,39.36639167,100 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES3A,3001 -0108_1802_60.04,-74.496093,39.334822,2 STANDISH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_60.05,-74.508833,39.32199,4 STANDISH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_60.06,-74.58341562,39.34116932,6 STANDISH ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1802_60.07,-74.94488697,39.52535382,8 STANDISH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1802_60.08,-74.5947248,39.37818753,10 STANDISH ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1802_60.09,-74.54856622,39.47361455,12 STANDISH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1806_1,-74.93945217,39.52548048,3042 TREMONT AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1807_18,-74.61094025,39.48624401,3068 FERNWOOD AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_1807_19,-74.58950381,39.35699757,3064 FERNWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_1807_20,-74.514973,39.329371,3062 FERNWOOD AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_1807_21,-74.53961801,39.38247965,3060 FERNWOOD AVENUE,EGG HARBOR TWP,16,1945,1,COM1,3004 -0108_1807_22,-74.57509188,39.37056919,3058 FERNWOOD AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1807_23,-74.508389,39.493397,3054 FERNWOOD AVENUE,EGG HARBOR TWP,16,1932,1,RES1,3001 -0108_1807_25,-74.51605365,39.39936198,3056 FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1807_26,-74.79545988,39.53075729,3052 FERNWOOD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1807_27,-74.5140055,39.4041485,3050 FERNWOOD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1807_29,-74.634628,39.4286935,3048 FERNWOOD AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1807_32,-74.7888371,39.44719032,3042 FERNWOOD AVENUE,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_1807_33,-74.50617338,39.32311316,3040 FERNWOOD AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1807_34,-74.7924465,39.640585,3036 FERNWOOD AVENUE,EGG HARBOR TWP,16,1955,1,COM1,3004 -0108_1807_35,-74.540826,39.467975,3032 FERNWOOD AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_1807_36,-74.81456699,39.63497033,3026 FERNWOOD AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1807_37,-74.945038,39.537982,3022 FERNWOOD AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1807_39,-74.44292132,39.37079356,3020 FERNWOOD AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1807_40,-74.59986359,39.39024586,3018 FERNWOOD AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1807_41,-74.5440812,39.37166971,3014 FERNWOOD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_1807_42,-74.60236508,39.35120859,3010 FERNWOOD AVENUE,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_1807_45,-74.60580151,39.32191516,6409 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1807_47,-74.517608,39.401023,6415 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1807_48,-74.62790894,39.34926372,6419 BLACK HORSE PIKE,EGG HARBOR TWP,17,1930,1,RES1,3001 -0108_1807_49,-74.58590369,39.32527276,6421 BLACK HORSE PIKE,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_1807_50,-74.64146558,39.52998766,6423 BLACK HORSE PIKE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_1807_51,-74.57029656,39.41433566,6425 BLACK HORSE PIKE,EGG HARBOR TWP,16,1947,1,GOV1,3004 -0108_1807_52,-74.62357356,39.38457117,6429 BLACK HORSE PIKE,EGG HARBOR TWP,,2016,1,RES1,3001 -0108_1807_54,-74.76069047,39.62113384,6427 BLACK HORSE PIKE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_1807_55,-74.5882195,39.4163595,3019 RIDGE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1807_56,-74.55554499,39.35848384,3021 RIDGE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1807_57,-74.63314,39.3857705,3023 RIDGE AVENUE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_1807_58,-74.781795,39.3074595,3025 RIDGE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1807_59,-74.75408368,39.45241804,3027 RIDGE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1807_60,-74.47990533,39.34287257,3029 RIDGE AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_1807_63,-74.5897725,39.4542695,3035 RIDGE AVENUE,EGG HARBOR TWP,16,1905,1,GOV1,3004 -0108_1807_64,-74.79160758,39.63944885,3037 RIDGE AVENUE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_1807_65,-74.62265918,39.62601002,3043 RIDGE AVENUE,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_1807_67,-74.68904474,39.44918496,BLACK HORSE PIKE REAR,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1807_90,-74.64853466,39.52268698,13 JEFFERSON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1807_90.01,-74.86764311,39.59909474,18 JEFFERSON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1807_90.03,-74.49134698,39.45904471,17 JEFFERSON AVENUE,EGG HARBOR TWP,16,2002,1,AGR1,3001 -0108_1807_90.04,-74.48486776,39.33665466,19 JEFFERSON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_1807_91,-74.5603315,39.375187,9 JEFFERSON AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1808_1,-74.57149765,39.37250157,3080 FERNWOOD AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1809_1,-74.59808456,39.41425484,6402 REEGA AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1810_1,-74.64202016,39.36162817,WJRR RIGHT WAY,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1811_1,-74.66529603,39.35998532,38 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_10,-74.7633015,39.309072,3081 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_11,-74.9497,39.5092045,3083 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_13,-74.5319255,39.401346,2 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_14,-74.53354596,39.38146184,4 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1811_15,-74.52471512,39.45651563,6 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_16,-74.9404345,39.5044545,8 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_17,-74.42981323,39.36300035,10 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1811_18,-74.4948095,39.341932,12 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1811_19,-74.7825405,39.6582905,14 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1811_2,-74.70248503,39.47741966,40 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_20,-74.80581105,39.62872289,16 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_1811_21,-74.565143,39.3552115,18 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_1811_22,-74.5413885,39.3732115,20 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_23,-74.5703935,39.368463,22 THORNHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1811_24,-74.64251165,39.43627128,24 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_25,-74.59644526,39.38260974,26 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1811_26,-74.80555576,39.64400881,28 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1811_27,-74.51154855,39.43918343,30 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_28,-74.50677956,39.4590751,32 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_29,-74.58531888,39.48761335,34 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_3,-74.57667628,39.33979769,44 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_4,-74.5867955,39.3664145,46 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_5,-74.5399445,39.388466,48 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_6,-74.36529413,39.4097022,50 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_61,-74.53687183,39.39706871,3065 FERNWOOD AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_1811_8,-74.49522418,39.34127732,3073 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1811_88,-74.4524175,39.4960035,6320 REEGA AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_1811_9,-74.5584685,39.398737,3079 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1812_1,-74.49995628,39.48698255,101 REGENCY ROAD,EGG HARBOR TWP,16,2006,1,IND2,3002 -0108_1812_10,-74.61908298,39.31340836,103 REGENCY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1812_2,-74.49326773,39.33223533,7 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1812_3,-74.585944,39.379103,5 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1812_4,-74.38707919,39.39369157,3 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1812_5,-74.42310136,39.36965174,200 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1812_6,-74.5966165,39.3847435,202 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1812_7,-74.4307185,39.368966,204 HARVARD ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1812_8,-74.94731517,39.52126337,206 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1812_9,-74.48975353,39.33828585,208 HARVARD ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1813_1,-74.78427871,39.42021476,3096 TREMONT AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1813_114,-74.746677,39.445782,6310 REEGA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_1813_115,-74.52861468,39.39528002,6306 REEGA AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_1813_17,-74.63648551,39.42381915,101 LONGFELLOW ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1813_18,-74.65609,39.4330865,9 THORNHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1813_19,-74.6350015,39.482225,100 REGENCY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1813_2,-74.5016915,39.3309785,3092 TREMONT AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_1813_20,-74.6308695,39.427471,102 REGENCY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1813_21,-74.80917166,39.66025503,104 REGENCY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1813_22,-74.79603476,39.6360334,106 REGENCY ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_1813_23,-74.88151845,39.60181422,217 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1813_24,-74.48641107,39.33403332,215 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1813_25,-74.5816649,39.43204753,213 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1813_26,-74.49675028,39.33444334,211 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1813_27,-74.60436153,39.32567852,209 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_1813_28,-74.49867533,39.3328465,207 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_1813_29,-74.386232,39.3913265,205 HARVARD ROAD,EGG HARBOR TWP,16,2006,1,IND1,3004 -0108_1813_3,-74.755822,39.4018115,3090 TREMONT AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1813_30,-74.6412595,39.5262585,203 HARVARD ROAD,EGG HARBOR TWP,16,2007,1,RES3B,3001 -0108_1813_31,-74.59636108,39.37934178,201 HARVARD ROAD,EGG HARBOR TWP,16,2007,1,RES3A,3001 -0108_1813_32,-74.5957215,39.4229765,1 THORNHILL DRIVE,EGG HARBOR TWP,16,2007,1,COM1,3004 -0108_1813_33,-74.4340615,39.3672165,6316 REEGA AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_1813_34,-74.49446992,39.33101034,6314 REEGA AVENUE,EGG HARBOR TWP,16,2008,1,COM4,3004 -0108_1813_35,-74.85931694,39.56481816,6312 REEGA AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1813_6,-74.56631111,39.34298575,3080 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,COM3,3004 -0108_1814_1,-74.5705325,39.35144783,123 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_10,-74.69902956,39.64328086,205 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_11,-74.803999,39.642125,103 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_12,-74.50001342,39.33003672,101 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_13,-74.60432906,39.49896843,11 THORNHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES3A,3001 -0108_1814_14,-74.5482865,39.3829165,100 LONGFELLOW ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1814_2,-74.6011045,39.383573,121 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,AGR1,3001 -0108_1814_22,-74.61050949,39.3399576,3074 TREMONT AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_1814_3,-74.80290339,39.62868818,119 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_4,-74.74844581,39.41958037,117 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3004 -0108_1814_5,-74.49849216,39.44806477,115 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_6,-74.54665041,39.47505531,113 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_7,-74.55423898,39.36179773,111 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_8,-74.555101,39.3615915,109 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1814_9,-74.499018,39.44946,107 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES3B,3004 -0108_1815_1,-74.48570644,39.33374132,117 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1815_10,-74.603738,39.37052,5 STANDISH ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_1815_11,-74.737354,39.4489245,3 STANDISH ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1815_12,-74.37444072,39.41798685,1 STANDISH ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_1815_13,-74.7026325,39.577584,102 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1815_14,-74.5103102,39.32485528,104 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1815_15,-74.35962702,39.41074134,106 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_1815_16,-74.87325936,39.57518344,108 WAVERLY ROAD,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_1815_17,-74.37035263,39.40743515,110 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1815_18,-74.5902015,39.3791725,112 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1815_19,-74.50500992,39.33564516,114 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1815_2,-74.52008059,39.31987804,115 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1815_20,-74.48974377,39.51543327,116 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1815_21,-74.7955825,39.541385,118 WAVERLY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_1815_24,-74.369918,39.410675,3060 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1815_3,-74.368312,39.410397,113 BRISTOL ROAD,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_1815_4,-74.5135189,39.46780427,111 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1815_5,-74.6094032,39.32287142,109 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1815_6,-74.66346612,39.63544485,107 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1815_7,-74.51215582,39.44149414,105 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1815_8,-74.48626385,39.49798421,103 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1815_9,-74.56903521,39.35418476,101 BRISTOL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1901_1,-74.8791835,39.545419,6501 BLACK HORSE PIKE,EGG HARBOR TWP,,2017,1,RES1,3001 -0108_1901_13,-74.47695338,39.45818911,3013 SPRUCE AVENUE,EGG HARBOR TWP,16,1922,1,RES1,3001 -0108_1901_15,-74.93684329,39.52442816,3015 SPRUCE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_1901_16,-74.49008937,39.47343111,3019 SPRUCE AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1901_17,-74.94084519,39.5236411,3021 SPRUCE AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1901_19,-74.9454445,39.496681,3025 SPRUCE AVENUE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_1901_20,-74.7784195,39.5947855,130 FRANKLIN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1901_21,-74.4993167,39.4995322,128 FRANKLIN AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_1901_22,-74.5254445,39.3864555,126 FRANKLIN AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1901_22.01,-74.4668795,39.4887005,126A FRANKLIN AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1901_23,-74.49309133,39.43284145,124 FRANKLIN AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_1901_24,-74.66954,39.4566895,122 FRANKLIN AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1901_25,-74.56796154,39.37046748,120 FRANKLIN AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1901_26,-74.54443215,39.38810946,118 FRANKLIN AVENUE,EGG HARBOR TWP,52,1977,1,RES1,3002 -0108_1901_28,-74.56370376,39.36568082,112 FRANKLIN AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_1901_29,-74.50765358,39.32761468,108 FRANKLIN AVENUE,EGG HARBOR TWP,16,1930,1,GOV1,3004 -0108_1901_4,-74.606936,39.3175365,6509 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1901_6,-74.8508065,39.614758,6515 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1902_10,-74.58523784,39.38418913,103 RIDDLE AVENUE,EGG HARBOR TWP,16,1968,1,GOV1,3004 -0108_1902_17,-74.79515833,39.67459288,3026 SPRUCE AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1902_19,-74.48503834,39.33473547,3018 SPRUCE AVENUE,EGG HARBOR TWP,16,1925,1,COM1,3004 -0108_1902_20,-74.35910533,39.4157585,3016 SPRUCE AVENUE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_1902_22,-74.51192341,39.33751013,3010 SPRUCE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_1902_23,-74.454668,39.370813,3008 SPRUCE AVENUE,EGG HARBOR TWP,16,1925,1,GOV1,3004 -0108_1902_24,-74.39060273,39.39351106,3006 SPRUCE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_1902_25,-74.88548308,39.5022653,3004 SPRUCE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_1902_3,-74.65040479,39.52948652,6605 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1902_4,-74.791199,39.6394985,6609 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_1902_6,-74.549109,39.403995,6617 BLACK HORSE PIKE,EGG HARBOR TWP,,2016,1,RES1,3001 -0108_1903_1,-74.52249547,39.40217718,6629 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1903_10,-74.83143083,39.4029865,308 FRANKLIN AVENUE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1903_2,-74.49202828,39.414536,6633 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1903_3,-74.81125994,39.63257316,103 FOSTER AVENUE,EGG HARBOR TWP,15,1930,1,RES1,3001 -0108_1903_7,-74.60794,39.326679,109 FOSTER AVENUE,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_1905_3,-74.50857968,39.32593675,206 LINDEN AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_1905_4,-74.81039112,39.51785317,204 LINDEN AVENUE,EGG HARBOR TWP,16,1968,1,GOV1,3004 -0108_1906_5,-74.5193165,39.40208,204 FOSTER AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1906_8,-74.58155948,39.34528723,314 JEFFERSON AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_1906_9,-74.492434,39.4950075,312 JEFFERSON AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1907_1,-74.92525077,39.50521497,311 FRANKLIN AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1907_2,-74.49640338,39.33108124,205 FOSTER AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_1907_5,-74.47035019,39.49390006,308 JEFFERSON AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_1907_6,-74.51456277,39.45618527,204 SOUTH FARR AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1908_1,-74.58395715,39.41957585,309 FRANKLIN AVENUE,EGG HARBOR TWP,16,1978,1,GOV1,3004 -0108_1908_2,-74.4700675,39.50874995,203 SOUTH FARR AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_1908_3,-74.54709281,39.37577387,205 SOUTH FARR AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_1909_1,-74.48990884,39.33394749,200 RUTTER AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1909_1.01,-74.48401793,39.34364082,202 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1909_1.02,-74.6516,39.5329375,204 RUTTER AVENUE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_1909_1.03,-74.53659,39.4049065,206 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1909_1.04,-74.64671,39.430413,208 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1909_1.05,-74.49079124,39.44241459,210 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1909_1.06,-74.5912425,39.3188565,214 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1909_1.07,-74.49638095,39.3332658,304 JEFFERSON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1909_2,-74.7470595,39.3955455,307 FRANKLIN AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_1910_1,-74.62763269,39.44001354,301 FRANKLIN AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_1910_1.01,-74.62615395,39.36130178,303 FRANKLIN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1910_1.02,-74.54619246,39.47272063,203 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1910_1.03,-74.48021627,39.44446864,205 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_1910_1.04,-74.80242828,39.53913461,207 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1910_1.05,-74.87900342,39.46284366,209 RUTTER AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1910_1.06,-74.687073,39.4901525,211 RUTTER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1911_1,-74.5128015,39.468941,3032 SPRUCE AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_1911_10,-74.8290651,39.53999868,18 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1911_11,-74.496915,39.334922,20 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1911_13,-74.6238445,39.4791995,22 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1911_14,-74.636544,39.4303815,24 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1911_15,-74.650883,39.533963,26 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1911_16,-74.37537111,39.41523976,28 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1911_17,-74.460879,39.347587,30 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1911_18,-74.7833875,39.308877,210 JEFFERSON AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1911_19,-74.60748534,39.34499999,206 JEFFERSON AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_1911_2,-74.60354168,39.33015203,2 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1911_21.01,-74.53853046,39.37208891,3042 SPRUCE AVENUE,EGG HARBOR TWP,16,1947,1,RES1,3001 -0108_1911_21.03,-74.50714087,39.32445982,202 JEFFERSON AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1911_22,-74.51616857,39.39167833,3046 SPRUCE AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1911_23,-74.63748434,39.53115453,3036 SPRUCE AVENUE,EGG HARBOR TWP,16,1925,2,RES1,3001 -0108_1911_3,-74.38413171,39.3970378,4 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1911_4,-74.60031962,39.32987886,6 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1911_5,-74.60358831,39.3161974,8 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES3A,3001 -0108_1911_6,-74.487444,39.3473005,10 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1911_7,-74.6178465,39.5065055,12 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1911_8,-74.55122667,39.47188017,14 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1911_9,-74.62714356,39.35821722,16 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1912_1,-74.46229235,39.54981818,1 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1912_2,-74.5125325,39.3281815,29 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1912_3,-74.37767443,39.39896883,27 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1912_4,-74.50470078,39.51810855,25 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1912_5,-74.50542057,39.33204197,23 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1912_6,-74.49879717,39.43113749,7 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1912_7,-74.64119816,39.52524504,5 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_1912_8,-74.64301215,39.53199839,3 LENAPE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_1913_10,-74.601752,39.591919,127 FRANKLIN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1913_11,-74.60525466,39.50308795,3029 SPRUCE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1913_13,-74.68962262,39.51114373,3035 SPRUCE AVENUE,EGG HARBOR TWP,16,1963,1,REL1,3004 -0108_1913_14,-74.57715,39.415753,3037 SPRUCE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_1913_15,-74.59127198,39.42850975,3041 SPRUCE AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_1913_16,-74.37509488,39.40034391,3045 SPRUCE AVENUE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_1913_17,-74.621328,39.428132,126 JEFFERSON AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1913_18,-74.5076015,39.3303985,124 JEFFERSON AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_1913_19,-74.633713,39.419736,118 JEFFERSON AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_1913_20.01,-74.5356605,39.3774335,114 JEFFERSON AVENUE,EGG HARBOR TWP,16,1926,1,RES1,3001 -0108_1913_20.02,-74.61201173,39.48616777,112 JEFFERSON AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_1913_5.01,-74.59481084,39.36179582,100 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1913_5.02,-74.5101234,39.33247817,102 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_1913_5.03,-74.490712,39.335006,104 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,EDU1,3004 -0108_1913_5.04,-74.49744141,39.44061841,106 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1913_5.05,-74.5129985,39.52771771,108 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1913_5.06,-74.83131359,39.53861642,110 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1913_5.07,-74.50456346,39.45777916,208 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1913_5.08,-74.58538239,39.48579132,210 BEACON HILL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1913_5.09,-74.44320528,39.37319816,212 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,COM4,3004 -0108_1913_5.11,-74.49899139,39.33367813,216 BEACON HILL DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_1913_5.12,-74.55930115,39.39814381,218 BEACON HILL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1913_5.13,-74.7940765,39.6033515,220 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1913_8,-74.50901249,39.33568177,123 FRANKLIN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1914_1,-74.3666115,39.4134685,3054 RIDGE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1914_10,-74.71154553,39.46642484,13 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1914_11,-74.80044534,39.65912945,15 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1914_12,-74.50515,39.4094355,17 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1972,1,REL1,3004 -0108_1914_13,-74.55132,39.4653225,19 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1914_14,-74.65045873,39.53098687,6512 REEGA AVENUE,EGG HARBOR TWP,16,1940,1,GOV1,3004 -0108_1914_15.02,-74.3752845,39.411028,6508 REEGA AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1914_15.03,-74.52733371,39.39352641,6506 REEGA AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1914_16,-74.60846985,39.38568876,6502 REEGA AVENUE,EGG HARBOR TWP,43,1997,4,RES1,3001 -0108_1914_17,-74.5747725,39.479046,3058 RIDGE AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_1914_2,-74.60016543,39.37267879,105 JEFFERSON AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1914_3,-74.79751585,39.61890303,109 JEFFERSON AVENUE,EGG HARBOR TWP,16,1925,2,RES1,3001 -0108_1914_4,-74.72019265,39.44586936,1 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_1914_5,-74.59186237,39.35501915,3 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_1914_6,-74.50941198,39.43862056,5 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_1914_7,-74.80326562,39.62389169,7 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3004 -0108_1914_8,-74.4524915,39.4996655,9 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1914_9,-74.60417578,39.37180755,11 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_1915_1,-74.62270338,39.4207135,2 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_10,-74.3652205,39.413789,3051 SPRUCE AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_1915_11,-74.460386,39.3533295,114 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_1915_12,-74.71307367,39.46566695,112 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1915_13,-74.77768649,39.62052199,110 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1915_14,-74.62587593,39.37663334,108 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1915_15,-74.78840182,39.55058524,106 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1915_16,-74.60205763,39.42020274,104 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1915_17,-74.436524,39.371148,102 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_1915_18,-74.49930851,39.46843031,4 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_2,-74.60568634,39.50186351,117 JEFFERSON AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_3,-74.778516,39.6144395,119 JEFFERSON AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_4,-74.7001795,39.587133,121 JEFFERSON AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_5,-74.88813632,39.49948647,123 JEFFERSON AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_6,-74.4524585,39.3754955,125 JEFFERSON AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_7,-74.8490838,39.48497467,127 JEFFERSON AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_8,-74.6334308,39.36333266,3047 SPRUCE AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1915_9,-74.50716901,39.32354467,3049 SPRUCE AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_1916_1,-74.62901605,39.46400835,101 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_10,-74.40094988,39.39164456,116 STANLEY DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_1916_11,-74.8825245,39.538269,114 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_12,-74.754497,39.6443235,112 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_13,-74.92485627,39.51139814,110 STANLEY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_1916_14,-74.6377145,39.5304385,108 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_15,-74.65235599,39.52207405,106 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_16,-74.74835558,39.44688117,104 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_17,-74.5667145,39.3533535,102 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_18,-74.5356642,39.53369569,10 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_2,-74.5975675,39.3782765,103 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_3,-74.52362017,39.44775824,105 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_4,-74.5716105,39.37124867,107 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_5,-74.51040174,39.50884712,109 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_6,-74.78876104,39.6423316,111 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_7,-74.518407,39.389162,113 LUCILLE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1916_8,-74.5559005,39.4770745,3053 SPRUCE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1916_9,-74.35892433,39.4146925,3055 SPRUCE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1917_1,-74.595504,39.434281,101 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_10,-74.40571366,39.380781,3063 SPRUCE AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_1917_11,-74.94976935,39.53462042,6528 REEGA AVENUE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_1917_12,-74.9204815,39.5673285,6526 REEGA AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_13,-74.6313365,39.35574875,6524 REEGA AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_14,-74.47119524,39.44377908,6522 REEGA AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_15,-74.51889647,39.39867834,6520 REEGA AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_1917_16,-74.82939039,39.63469174,6518 REEGA AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_17,-74.9342605,39.520524,6516 REEGA AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_18,-74.84709173,39.59894247,16 DRIFTWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_2,-74.76778425,39.31288325,103 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_3,-74.56025688,39.4148497,105 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_4,-74.63057916,39.41903597,107 STANLEY DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_1917_5,-74.4004817,39.38887907,109 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_6,-74.65321795,39.45700017,111 STANLEY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_1917_7,-74.835016,39.63251,113 STANLEY DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_1917_8,-74.8398635,39.5930475,3059 SPRUCE AVENUE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_1917_9,-74.59177191,39.50637036,3061 SPRUCE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_1918_1,-74.4890445,39.3327635,3050 SPRUCE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1918_2.01,-74.86768371,39.59863608,209 JEFFERSON AVENUE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_1918_2.03,-74.45448756,39.45995265,6618 REEGA AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_1918_3,-74.511603,39.520244,6616 REEGA AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1918_5.01,-74.50687346,39.33575632,6614 REEGA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_1918_5.03,-74.44020751,39.51618668,3058 SPRUCE AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1920_1,-74.7506275,39.6042915,305 JEFFERSON AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1920_2,-74.5705685,39.414479,307 JEFFERSON AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1920_3,-74.57817383,39.33527498,302 RUTTER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1920_4,-74.52042162,39.44329453,304 RUTTER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1920_5,-74.61426414,39.33867694,306 RUTTER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1920_6,-74.6240595,39.439258,308 RUTTER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1920_7,-74.8203055,39.370739,310 RUTTER AVENUE,EGG HARBOR TWP,16,2005,1,IND2,3002 -0108_1920_8,-74.56688949,39.35684967,106 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1920_9,-74.79627644,39.65416538,104 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1922_5,-74.50635456,39.479978,309 FOSTER AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_1924_4,-74.78893594,39.63552569,305 LAKEWOOD AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_1925_1,-74.61971265,39.60229565,3001 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_1925_3,-74.62333391,39.42250146,3003 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2007,1,COM4,3004 -0108_1928_5,-74.45726256,39.46414227,111 EISENHOWER AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_1928_9,-74.5678945,39.4120135,402 FOSTER AVENUE,EGG HARBOR TWP,16,1968,1,IND2,3002 -0108_1929_6,-74.71442428,39.42969696,409 FOSTER AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_1930_2,-74.5343561,39.38244636,101 EISENHOWER AVENUE,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_1933_1,-74.4872445,39.4338415,WJRR RIGHT WAY,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1934_1,-74.809324,39.63500133,WJRR RIGHT WAY,EGG HARBOR TWP,,0,1,RES1,3001 -0108_1935_1,-74.5193435,39.39053133,3034 RIDGE AVENUE,EGG HARBOR TWP,16,1938,1,RES1,3001 -0108_1935_2,-74.48988393,39.51969426,105 FRANKLIN AVENUE,EGG HARBOR TWP,16,1957,1,RES3A,3001 -0108_1935_23,-74.51203817,39.3239025,106 JEFFERSON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1935_25,-74.49877745,39.33264383,101 FRANKLIN AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_1935_26,-74.48748902,39.44319089,301 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_27,-74.46351193,39.35783631,303 SUSSEX ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1935_28,-74.4847675,39.3343775,305 SUSSEX ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1935_29,-74.57025112,39.36298229,307 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_30,-74.58627357,39.42399264,309 SUSSEX ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_1935_31,-74.3670655,39.4124115,311 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_32,-74.52442394,39.31722633,313 SUSSEX ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_1935_33,-74.54091248,39.38123617,315 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_34,-74.48708859,39.46296023,402 GLADSTONE COURT,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1935_35,-74.68396686,39.48891504,404 GLADSTONE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_36,-74.437351,39.3696245,406 GLADSTONE COURT,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1935_37,-74.753913,39.4508235,408 GLADSTONE COURT,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_1935_38,-74.50918233,39.32176703,410 GLADSTONE COURT,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_1935_39,-74.5179865,39.3231095,100 JEFFERSON AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1935_40,-74.54998079,39.38373681,102 JEFFERSON AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_41,-74.4507595,39.4920325,104 JEFFERSON AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1935_42,-74.56229422,39.40818599,321 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_43,-74.59447016,39.31341406,323 SUSSEX ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_1935_44,-74.77487302,39.65827683,325 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_1935_45,-74.5027105,39.3308545,319 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_46,-74.87672994,39.57353355,317 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1935_47,-74.96373225,39.51288042,403 GLADSTONE COURT,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1935_48,-74.6400115,39.337553,405 GLADSTONE COURT,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1935_49,-74.67066197,39.54442434,407 GLADSTONE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_1,-74.49417203,39.34114567,201 BEACON HILL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_10,-74.65423,39.357216,316 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_11,-74.617518,39.4319365,314 SUSSEX ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1936_12,-74.49364026,39.46894693,312 SUSSEX ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1936_13,-74.506366,39.4926545,310 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_14,-74.61074537,39.36927248,308 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_15,-74.59694601,39.31830009,306 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_16,-74.37308035,39.40968188,304 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_17,-74.45147132,39.35593902,302 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_18,-74.46438823,39.49746778,300 SUSSEX ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_2,-74.58210543,39.34223319,203 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1936_3,-74.53364757,39.38304739,205 BEACON HILL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_4,-74.81486363,39.64082752,207 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1936_5,-74.5015415,39.326405,209 BEACON HILL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_6,-74.3982015,39.389414,211 BEACON HILL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3002 -0108_1936_7,-74.50060904,39.46953209,213 BEACON HILL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_8,-74.51492953,39.40205616,215 BEACON HILL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_1936_9,-74.9393135,39.5236265,217 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1937_1,-74.79953744,39.65412266,101 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1937_2,-74.6477925,39.434077,103 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1937_3,-74.64496758,39.36173801,105 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1937_4,-74.5487675,39.3698515,107 SUFFOLK ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1937_5,-74.88125264,39.59050325,206 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1937_6,-74.49811157,39.46788482,204 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1937_7,-74.79538814,39.66325861,202 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_1937_8,-74.49033422,39.45972787,200 BEACON HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2001_10,-74.94718618,39.52047932,6665 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_11,-74.60153617,39.41862744,6671 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_13,-74.55531433,39.47061933,6677 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_14,-74.45139134,39.35608562,6679 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_16,-74.5766114,39.35322215,6687 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_17,-74.52406202,39.38908032,6691 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_18,-74.51556987,39.41743652,LINCOLN AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_18.01,-74.65118416,39.51352097,20 LINCOLN AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_19.01,-74.8699399,39.49147118,6693 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_23.01,-74.45040128,39.35629285,125 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2001_23.02,-74.369947,39.4102235,127 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2001_23.03,-74.462063,39.357609,129 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2001_23.04,-74.97827072,39.51243759,131 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_2001_23.05,-74.82428742,39.49764574,133 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2001_23.06,-74.6265965,39.3549505,135 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2001_23.07,-74.85920072,39.47944347,137 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2001_23.08,-74.6371965,39.43102,139 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2001_23.09,-74.53672983,39.31346483,141 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2001_23.10,-74.5703357,39.41349277,143 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2001_23.11,-74.68396017,39.49672181,145 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_2001_23.12,-74.47776976,39.33881582,252 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.13,-74.72331928,39.46131159,250 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.14,-74.64293652,39.53491685,248 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.15,-74.897847,39.539902,246 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.16,-74.5805605,39.341542,244 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.17,-74.79100115,39.63589943,242 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.18,-74.63652582,39.42326768,240 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2001_23.19,-74.6283545,39.433322,238 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2001_23.20,-74.736911,39.4483415,236 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.21,-74.51105983,39.33616953,234 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.22,-74.60264182,39.41003963,232 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.23,-74.531959,39.4530105,230 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_2001_23.24,-74.4814645,39.5383565,228 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2001_23.25,-74.64740677,39.5320052,226 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2001_23.26,-74.79271595,39.64048084,224 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2001_23.27,-74.634996,39.5292855,222 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.28,-74.88013728,39.59210018,220 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.29,-74.64715953,39.52768483,218 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.30,-74.41563168,39.36808697,102 JACKSONVILLE COURT,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2001_23.31,-74.53928858,39.46754277,104 JACKSONVILLE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.32,-74.65013816,39.52457948,107 JACKSONVILLE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.33,-74.4914565,39.3359235,105 JACKSONVILLE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.34,-74.4904045,39.337405,103 JACKSONVILLE COURT,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2001_23.35,-74.830756,39.3942365,101 JACKSONVILLE COURT,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_2001_23.36,-74.5516405,39.3622515,216 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.37,-74.671297,39.367397,214 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.38,-74.3658475,39.4126075,212 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2001_23.39,-74.82731971,39.63847332,210 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2001_23.40,-74.79892209,39.63935285,208 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2001_23.41,-74.36237563,39.41250714,206 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES3A,3001 -0108_2001_23.42,-74.6455866,39.54867837,204 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_23.43,-74.62686964,39.42311245,202 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2001_23.44,-74.8236685,39.652912,200 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2001_24,-74.48696477,39.46259368,EAST KENNEDY DRIVE(BASIN),EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_3,-74.87662126,39.46262207,6641 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_5,-74.553132,39.472549,6649 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2001_9,-74.507125,39.4784015,6661 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2002_10,-74.82846175,39.62251657,33 PINEVIEW AVENUE,EGG HARBOR TWP,52,1970,1,RES1,3001 -0108_2002_11,-74.51911991,39.53431636,35 PINEVIEW AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_2002_12,-74.54574761,39.3724173,37 PINEVIEW AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2002_16,-74.86661578,39.45695654,2619 TILTON ROAD,EGG HARBOR TWP,16,1926,1,RES1,3001 -0108_2002_17,-74.49258594,39.46970017,2621 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2002_2,-74.7894694,39.6212661,9 PINEVIEW AVENUE,EGG HARBOR TWP,16,1920,1,RES3A,3001 -0108_2002_20,-74.53764716,39.46543217,2627 TILTON ROAD,EGG HARBOR TWP,16,1940,1,COM1,3004 -0108_2002_3,-74.8028745,39.6166275,17 PINEVIEW AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_2002_32,-74.8201015,39.4701855,6678 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2002_34,-74.61862492,39.55499759,6672 BLACK HORSE PIKE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_2002_5,-74.96398911,39.51862463,3 PINEVIEW AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2002_7,-74.493048,39.492285,27 PINEVIEW AVENUE,EGG HARBOR TWP,16,1948,1,COM1,3004 -0108_2002_8,-74.81083161,39.63077712,29 PINEVIEW AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2003_1,-74.76534319,39.63698212,6711 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2003_2,-74.4440735,39.3539775,6716 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2003_4,-74.56329589,39.50534207,6718 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2003_5,-74.63535966,39.48038154,6710 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2003_8,-74.6878665,39.47910198,6700 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2004_1,-74.661034,39.4934925,WJRR RIGHT WAY,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2004_2,-74.50488598,39.33801213,WEST JERSEY AVENUE-ROW,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2005_1,-74.40575228,39.38447723,6726 BLACK HORSE PIKE,EGG HARBOR TWP,,1970,1,RES1,3001 -0108_2005_3,-74.691178,39.592967,6736 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2005_6,-74.9506475,39.512094,6728 BLACK HORSE PIKE,EGG HARBOR TWP,,1957,1,RES1,3001 -0108_2007_10,-74.4915291,39.33601016,9 LINCOLN AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2007_2,-74.67273207,39.36900869,6701 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2007_3,-74.64732537,39.52374298,6705 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2007_6,-74.48967966,39.46933119,6721 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2007_8,-74.5365265,39.390905,6696 REEGA AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2007_9,-74.604727,39.3253995,7 LINCOLN AVENUE,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_2008_1,-74.50040024,39.43363212,19 LINCOLN AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2008_2,-74.505614,39.3334745,17 LINCOLN AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_2008_3,-74.52216,39.3190135,15 LINCOLN AVENUE,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_2008_4,-74.48752119,39.35058494,11 LINCOLN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2009_1,-74.6281599,39.35321449,3022 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2009_10,-74.55145035,39.36776701,107 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2009_11,-74.448658,39.35467,105 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2009_12,-74.8347725,39.6417475,103 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2009_13,-74.65608515,39.55192797,101 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2009_2,-74.557343,39.358391,3020 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_2009_3,-74.50753966,39.33613851,3018 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2009_4,-74.53046,39.386668,3016 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2009_5,-74.37975568,39.41373267,3014 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2009_6,-74.6086545,39.381073,1 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2009_7,-74.83442015,39.63040592,3 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2009_8,-74.55121684,39.36255402,5 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2009_9,-74.43602511,39.48948637,109 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_201_2,-74.538229,39.524435,2301 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2010_1,-74.44960867,39.35427999,2 EISENHOWER AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2010_10,-74.60373081,39.35012384,121 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2010_11,-74.44378236,39.35657797,119 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2010_12,-74.55478244,39.46605232,117 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2010_13,-74.58812,39.327303,115 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2010_14,-74.681761,39.5199415,113 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2010_15,-74.49082065,39.33685653,111 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2010_16,-74.8234435,39.45788,6 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2010_17,-74.59059417,39.32679751,4 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2010_2,-74.64763231,39.43436195,3012 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2010_3,-74.62687622,39.41330653,3010 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2010_4,-74.4913265,39.3375505,3008 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2010_5,-74.502551,39.490958,3006 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2010_6,-74.62664769,39.43469707,3004 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2010_7,-74.462487,39.3520385,3002 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2010_8,-74.50890287,39.4340667,3000 COTTONWOOD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2010_9,-74.80218652,39.63634791,123 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2011_1,-74.5019205,39.428898,100 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_10,-74.65117117,39.39736923,205 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_11,-74.50733094,39.43152578,203 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_12,-74.62315685,39.43505121,201 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_2,-74.501457,39.43358378,102 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_3,-74.5246775,39.4215665,104 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_4,-74.501674,39.428352,106 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_5,-74.62829027,39.35790176,108 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,COM3,3004 -0108_2011_6,-74.4790165,39.34625536,110 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_7,-74.854302,39.4385755,211 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2011_8,-74.44245081,39.37357663,209 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2011_9,-74.82157698,39.61956294,207 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2012_1,-74.4700715,39.4944685,8 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2012_10,-74.60863154,39.38672676,215 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2012_11,-74.46664023,39.34663233,213 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,COM4,3004 -0108_2012_12,-74.7199785,39.6401065,10 EISENHOWER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2012_2,-74.49292985,39.34065412,112 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2012_3,-74.617959,39.433281,114 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2012_4,-74.52214907,39.32115049,116 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2012_5,-74.46805721,39.49305041,1 TRUMAN AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2012_6,-74.594979,39.3463055,3 TRUMAN AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2012_7,-74.62499577,39.35310051,221 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2012_8,-74.4603365,39.355422,219 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2012_9,-74.81554884,39.63986902,217 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2013_1,-74.75527423,39.43255997,2 TRUMAN AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2013_10,-74.63905595,39.44592169,223 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2013_11,-74.5365,39.384151,6 TRUMAN AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2013_12,-74.84038116,39.54035901,4 TRUMAN AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2013_2,-74.5464801,39.37258542,118 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2013_3,-74.75385616,39.45201025,501 JEFFERSON AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2013_4,-74.606058,39.332646,503 JEFFERSON AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2013_5,-74.36589831,39.40636304,505 JEFFERSON AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2013_6,-74.53807116,39.3882956,507 JEFFERSON AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2013_7,-74.56697831,39.44762846,229 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2013_8,-74.6502919,39.53177467,227 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3004 -0108_2013_9,-74.8814785,39.5938585,225 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2014_1,-74.51566234,39.44093947,502 JEFFERSON AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2014_10,-74.59920352,39.31673766,231 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2014_11,-74.48409346,39.33581314,508 JEFFERSON AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2014_12,-74.6463501,39.37439932,506 JEFFERSON AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2014_13,-74.64680592,39.4316542,504 JEFFERSON AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2014_2,-74.9283748,39.51574102,120 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2014_3,-74.62927208,39.35741464,122 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,COM3,3004 -0108_2014_4,-74.624985,39.4369245,124 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2014_5,-74.85972177,39.61746085,126 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2014_6,-74.94225132,39.52529066,128 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2014_7,-74.63836804,39.43350029,130 WEST KENNEDY DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2014_8,-74.6222375,39.451568,235 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2014_9,-74.497772,39.43539,233 EAST KENNEDY DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3004 -0108_2015_23,-74.56953531,39.37246992,6688 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2015_24,-74.45402849,39.48906092,6690 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2015_25,-74.559186,39.398195,6685 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2015_27,-74.37380804,39.42042869,6692 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2015_30,-74.5918815,39.3794115,6698 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2101_11,-74.60369548,39.32835367,6761 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2101_12,-74.62643111,39.43369936,6767 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_14,-74.57555305,39.33295894,6773 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_15,-74.36952854,39.41856156,6777 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_16,-74.5140995,39.3269605,6779 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2101_17,-74.82988808,39.64355585,6781 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_18,-74.43204775,39.49237291,6785 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_19,-74.5630025,39.3623415,6789 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_20,-74.629138,39.3931905,6791 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_21,-74.728083,39.4556435,6793 WASHINGTON AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_2101_22,-74.718011,39.459997,6795 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_26,-74.44993612,39.38048521,2803 FIRE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_27,-74.36246533,39.40959699,2805 FIRE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_28,-74.47789034,39.47734298,2807 FIRE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_29,-74.5089365,39.405252,2809 FIRE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_30,-74.48564033,39.33636084,2811 FIRE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_31,-74.63090116,39.50538752,2813 FIRE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_32,-74.46130379,39.4955106,2815 FIRE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_4,-74.49930917,39.32833544,6743 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_5,-74.51403247,39.45404116,6741 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2101_6,-74.75582993,39.30260385,6745 WASHINGTON AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2101_7,-74.57516643,39.40879164,6749 WASHINGTON AVENUE,EGG HARBOR TWP,16,1953,1,RES1,3001 -0108_2101_8,-74.47965482,39.34708802,6753 WASHINGTON AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2101_9,-74.81491943,39.40036017,6755 WASHINGTON AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_2102_10,-74.55516067,39.42583099,6813 WASHINGTON AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_2102_11,-74.93617333,39.51833661,6815 WASHINGTON AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2102_12,-74.50736522,39.32468153,6821 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2102_13,-74.500173,39.4347575,6819 WASHINGTON AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_2102_21,-74.65057366,39.52162303,2816 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2102_24,-74.5391025,39.38457,2808 FIRE ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2102_26,-74.638897,39.5065,2806 FIRE ROAD,EGG HARBOR TWP,15,1960,1,RES1,3001 -0108_2102_29,-74.83131125,39.64578562,6817 WASHINGTON AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_2102_3,-74.845643,39.464591,2800 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2102_6,-74.438079,39.3693,6807 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2103_1,-74.6251525,39.361157,6823 WASHINGTON AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2103_2,-74.50805284,39.40468289,6829 WASHINGTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2103_3,-74.79521349,39.63169184,6827 WASHINGTON AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2103_4,-74.4837105,39.336768,103 WILBERFORCE AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2103_5,-74.78501373,39.61606087,107 WILBERFORCE AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_2103_6,-74.638641,39.52519997,109 WILBERFORCE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2103_8,-74.735927,39.434912,100 OBERLIN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2104_1,-74.58983597,39.33550283,6831 WASHINGTON AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_2104_2,-74.38217501,39.39582488,6833 WASHINGTON AVENUE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_2104_3,-74.76154135,39.43108509,102 WILBERFORCE AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2104_5,-74.80261043,39.63830021,20 DUBOISE AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2104_5.01,-74.51256319,39.32788921,22 DUBOISE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2105_1,-74.475025,39.485481,6837 WASHINGTON AVENUE,EGG HARBOR TWP,16,1915,1,RES1,3001 -0108_2105_11,-74.81135421,39.63029636,110 HOWARD AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2105_2,-74.482547,39.3364655,101 LANGFORD AVENUE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_2105_4,-74.59569918,39.41053652,105 LANGFORD AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2105_5,-74.47691451,39.34302944,109 LANGFORD AVENUE,EGG HARBOR TWP,51,1955,1,RES1,3001 -0108_2105_7,-74.68126801,39.38458126,113 LANGFORD AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_2106_1,-74.37589646,39.39864033,100 LANGFORD AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2106_11,-74.52248707,39.32201867,102 LANGFORD AVENUE,EGG HARBOR TWP,16,1975,2,RES1,3001 -0108_2106_2,-74.54016573,39.37349697,103 FREEMAN AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2106_3,-74.69215951,39.65113167,107 FREEMAN AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2106_8,-74.3726395,39.405746,116 LANGFORD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2107_1,-74.815517,39.3830705,6849 WASHINGTON AVENUE,EGG HARBOR TWP,16,1925,2,RES1,3001 -0108_2107_3,-74.62799392,39.36455767,6855 WASHINGTON AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_2107_5,-74.7062105,39.445468,102 FREEMAN AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_2108_1,-74.55222122,39.46550656,6859 WASHINGTON AVENUE,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_2108_5,-74.80552279,39.61194942,102 SONNIES DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2109_1,-74.83988575,39.41083162,120 LANGFORD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2110_2,-74.3724255,39.410658,23 DUBOISE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2110_3,-74.4179275,39.367982,25 DUBOISE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2110_4,-74.535052,39.3968455,27 DUBOISE AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_2110_8,-74.7978305,39.545056,34 ROOSEVELT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2111_2,-74.51351734,39.32417098,201 WILBERFORCE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_2111_3,-74.3727025,39.4063315,203 WILBERFORCE AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_2112_1,-74.5927285,39.320404,2900 FIRE ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2112_2,-74.603722,39.3447755,6804 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2112_3,-74.59158817,39.32314509,6814 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2112_4,-74.61659375,39.55598218,MT CALVERY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2112_5,-74.56449349,39.47506067,6826 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2112_6,-74.58989982,39.32231296,6820 BLACK HORSE PIKE,EGG HARBOR TWP,,1955,1,RES1,3001 -0108_2113_1,-74.81679704,39.63745882,8 NOAHS ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2114_1,-74.5042295,39.334644,9 NOAHS ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2114_3,-74.56189247,39.40917625,3 NOAHS ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2114_6,-74.8974815,39.5399625,6832 BLACK HORSE PIKE,EGG HARBOR TWP,,1960,1,GOV1,3004 -0108_2115_1,-74.67125611,39.45721103,6835 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2115_3,-74.62077807,39.42342713,4 DELANCY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2115_6,-74.50315727,39.40771962,8 STEELMANS LANE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2117_1,-74.62913206,39.4180068,16 DELANCY AVENUE,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_2117_15,-74.46138104,39.35540867,6840 OLD EGG HARBOR ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2117_18,-74.37421474,39.41116151,22 DELANCY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2117_19,-74.5481735,39.379289,20 DELANCY AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_2117_20,-74.3724325,39.3993945,18 DELANCY AVENUE,EGG HARBOR TWP,51,1965,1,RES1,3001 -0108_2117_3,-74.4973985,39.336491,5 STEELMANS LANE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_2117_5,-74.4944955,39.3348435,9 STEELMANS LANE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_2118_1,-74.3670432,39.41012108,6801 BLACK HORSE PIKE,EGG HARBOR TWP,,2019,1,RES1,3001 -0108_2118_12,-74.925905,39.5257095,17 DELANCY AVENUE,EGG HARBOR TWP,16,1946,1,RES1,3001 -0108_2118_2,-74.5285155,39.428972,6811 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2118_4,-74.7107815,39.6401635,6817 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2118_6,-74.500655,39.326983,6825 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2118_8,-74.51177505,39.4018414,6831 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2118_9,-74.50120832,39.43556908,11 DELANCY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2119_1,-74.49855274,39.43535457,6735 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2119_10,-74.4509492,39.37239966,6704 TILTON ROAD,EGG HARBOR TWP,16,1955,2,RES1,3001 -0108_2119_3,-74.5902691,39.33228471,6737 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2119_7,-74.59932104,39.49486934,6708 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2119_8,-74.837835,39.3989645,6710 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2120_1,-74.45275126,39.49972924,6743 BLACK HORSE PIKE,EGG HARBOR TWP,,2014,1,RES1,3001 -0108_2120_4,-74.50187944,39.43146153,3003 FIRE ROAD,EGG HARBOR TWP,,1975,1,GOV1,3004 -0108_2121_1,-74.51969573,39.39068466,6738 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2121_11,-74.59993856,39.37207121,6752 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2121_12,-74.71297353,39.47370566,6746 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2121_4,-74.7845565,39.635858,6740 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_2121_5,-74.5651605,39.365713,6744 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2121_6,-74.8539167,39.36852987,6750 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2121_7,-74.4735995,39.4841315,2907 FIRE ROAD,EGG HARBOR TWP,,1960,1,RES1,3001 -0108_2121_8,-74.7183245,39.461303,2905 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2121_9,-74.59582805,39.31649086,2909 FIRE ROAD,EGG HARBOR TWP,16,1930,2,RES1,3001 -0108_2201_13,-74.60438215,39.31446225,3156 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2201_18,-74.50372153,39.33396924,6825 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2201_19,-74.57423533,39.34907999,6823 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2201_3,-74.54763026,39.3681007,3168 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2201_4,-74.852738,39.558825,3164 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2201_5,-74.37109292,39.40460158,3162 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2201_6,-74.8650585,39.592914,3160 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2202_1,-74.4961106,39.53892384,3115 HINGSTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2202_2,-74.53101178,39.38337208,3122 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2202_3,-74.58557716,39.38283572,3112 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2202_4,-74.50382582,39.41193247,6803 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2202_5,-74.54098536,39.41237317,6801 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2203_10,-74.77760739,39.61980016,3026 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2203_11,-74.60774668,39.41005511,3022 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2203_20,-74.5539795,39.4670745,6813 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2203_21,-74.54557752,39.37699033,6815 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1949,1,RES1,3001 -0108_2203_22,-74.48744729,39.33489231,6819 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_2203_28,-74.55298845,39.37632035,6814 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2203_29,-74.75917228,39.44937462,6806 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2203_37,-74.57297237,39.3605635,6800 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2203_9,-74.76503,39.663624,3028 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2204_1,-74.4985585,39.3335145,6820 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2204_10,-74.50192142,39.44836263,117 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_2204_12,-74.51768481,39.39422047,113 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_2204_13,-74.44262253,39.37223586,109 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2204_14,-74.80098021,39.64344733,107 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2204_15,-74.9193465,39.4895185,105 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,1963,1,COM1,3002 -0108_2204_16,-74.47418113,39.48557824,5 EDWARDS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2204_2,-74.60903344,39.36722076,3022 HINGSTON AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_2204_3,-74.57555433,39.42009876,3016 HINGSTON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2204_9,-74.497803,39.331646,119 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_2205_2,-74.7971455,39.63441,103 PLEASANT HTS AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2205_3,-74.48202066,39.34128001,101 PLEASANT HTS AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2205_4,-74.6007144,39.32219566,6843 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2206_1,-74.57532824,39.36794054,104 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_2206_11,-74.65518554,39.51440416,123 CHURCH STREET,EGG HARBOR TWP,,2014,1,RES3B,3002 -0108_2206_2,-74.95001914,39.52034235,102 PLEASANT HTS AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2206_21,-74.452251,39.374495,16 EDWARDS AVENUE,EGG HARBOR TWP,16,1995,1,RES3A,3001 -0108_2206_3,-74.734015,39.4405235,100 PLEASANT HTS AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2206_4,-74.50729566,39.33627951,6845 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_2206_5,-74.54897521,39.47440807,6847 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_2206_6,-74.5692055,39.3495975,6849 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2206_7,-74.81986007,39.36906982,6853 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_2206_8,-74.5022265,39.428166,6857 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2207_12,-74.42469129,39.3656736,114 CHURCH STREET,EGG HARBOR TWP,16,1950,2,RES1,3001 -0108_2207_14,-74.50479934,39.33220549,6861 OLD EGG HARBOR ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_2208_4,-74.36219924,39.41324153,124 CHURCH STREET,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_2208_5,-74.36301975,39.41556041,5 FABIAN AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2208_6,-74.53664515,39.37991895,7 FABIAN AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2208_7,-74.5267505,39.3115295,9 FABIAN AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_2209_1,-74.60632897,39.32201931,108 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2209_3,-74.4614925,39.5480425,13 EDWARDS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2209_4,-74.51003575,39.43510718,15 EDWARDS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2210_1,-74.50033538,39.33341845,116 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_2210_4,-74.3740825,39.4115565,112 PLEASANT HEIGHTS AVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2301_1,-74.56375148,39.35563757,702 NINTH AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2301_3,-74.45094583,39.488234,5016 BROADWAY AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2301_4,-74.881612,39.597195,5014 BROADWAY AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2301_5,-74.6682484,39.37297893,5012 BROADWAY AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_2301_6,-74.62238,39.3139485,5010 BROADWAY AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_2302_10,-74.48820798,39.34885933,6725 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2302_19,-74.92563684,39.48170914,6695 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2302_22,-74.84104419,39.39723397,6733 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_1,-74.63908855,39.43419172,3169 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_10,-74.55946355,39.41323827,3133 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_11,-74.7960875,39.6333455,3129 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_12,-74.6024905,39.3135245,3125 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_2,-74.4969315,39.333849,3163 FIRE ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2303_3,-74.7649435,39.3509965,3157 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_4,-74.62875086,39.43879184,3153 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_5,-74.536228,39.3862595,3149 FIRE ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2303_6,-74.455834,39.3504645,3147 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_7,-74.624965,39.353778,3143 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2303_9,-74.8553495,39.3625505,3137 FIRE ROAD,EGG HARBOR TWP,,1970,1,RES1,3001 -0108_2304_1,-74.56978196,39.34890023,3121 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2304_1.01,-74.60508931,39.41121157,3119 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2304_1.02,-74.58273502,39.36367633,3123 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2401_1,-74.9519465,39.5171985,6601 WEST JERSEY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2402_1,-74.59610621,39.34958772,4001 TEDDY AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_2402_4,-74.4969533,39.43410441,4005 TEDDY AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_2404_1,-74.76877826,39.61251297,14 LIBERTY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2404_10,-74.530821,39.462075,4009 WALNUT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2404_12,-74.4950985,39.498649,4013 WALNUT AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2404_13,-74.69281843,39.36075419,220 SECOND AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_2404_14,-74.62028747,39.38387913,218 SECOND AVENUE,EGG HARBOR TWP,15,1930,1,RES1,3001 -0108_2404_18,-74.60179302,39.32456783,16 LIBERTY AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2404_2,-74.3755515,39.4113925,6617 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_2404_20,-74.651547,39.522423,214 SECOND AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2404_21,-74.4012505,39.394084,212 SECOND AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2404_3.01,-74.67292758,39.5605713,6621 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_2404_3.02,-74.51179764,39.43738296,6619 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_2404_4,-74.441813,39.353644,6623 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1950,1,RES3A,3001 -0108_2404_5,-74.53987604,39.54247666,4005 WALNUT AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2404_7,-74.5271671,39.38831281,4003 WALNUT AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2404_9,-74.60220524,39.36998194,4007 WALNUT AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_2405_1,-74.46498993,39.49695276,4018 SPRUCE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2405_2,-74.35669313,39.41431394,4014 SPRUCE AVENUE,EGG HARBOR TWP,16,1944,1,RES1,3001 -0108_2406_1,-74.86495533,39.60055849,7 LIBERTY AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2406_2,-74.534002,39.390491,4013 TEDDY AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3004 -0108_2407_1,-74.38127724,39.40091633,4014 TEDDY AVENUE,EGG HARBOR TWP,16,1920,1,RES3A,3001 -0108_2407_2,-74.50213434,39.33237486,11 LIBERTY AVENUE,EGG HARBOR TWP,16,1928,1,RES1,3001 -0108_2407_3,-74.81007683,39.64193304,4015 MAGNOLIA AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_2408_1,-74.436193,39.3685855,4024 SPRUCE AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_2408_10,-74.7506675,39.4194845,4025 WALNUT AVENUE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_2408_12,-74.47416125,39.45743571,224 FOURTH AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_2408_13,-74.37477813,39.41680582,222 FOURTH AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2408_14,-74.48576402,39.43189165,218 FOURTH AVENUE,EGG HARBOR TWP,16,2018,1,RES1,3001 -0108_2408_15,-74.941847,39.5205095,216 FOURTH AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_2408_16,-74.483886,39.3408565,212 FOURTH AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_2408_18,-74.5249375,39.5278685,4030 SPRUCE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_2408_3,-74.50809882,39.33012104,211 SECOND AVENUE,EGG HARBOR TWP,15,1925,1,RES1,3001 -0108_2408_4,-74.56727676,39.37145089,215 SECOND AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2408_5,-74.57258002,39.34983323,217 SECOND AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_2408_6,-74.65347265,39.41904277,219 SECOND AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2408_8,-74.58897778,39.32825233,4017 WALNUT AVENUE,EGG HARBOR TWP,16,1985,1,RES3A,3001 -0108_2408_9,-74.515722,39.3269405,4019 WALNUT AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2409_1,-74.61777015,39.43369302,4038 SPRUCE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2409_3,-74.60237632,39.30746353,209 FOURTH AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_2409_4,-74.85687839,39.62162731,4042 SPRUCE AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2410_1,-74.53350027,39.3796699,4046 SPRUCE AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_2410_2,-74.87837094,39.59699865,2 POLEBRIDGE ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_2410_3,-74.5101285,39.3381735,6 POLEBRIDGE ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_2411_1,-74.57265117,39.34154815,10 POLEBRIDGE ROAD,EGG HARBOR TWP,16,1990,1,RES3A,3001 -0108_2411_2.01,-74.48824044,39.52036316,12 POLEBRIDGE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2411_2.02,-74.6461271,39.52800582,14 POLEBRIDGE ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_2411_3,-74.59503,39.5078435,4039 WALNUT AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_2412_2,-74.45820386,39.35041997,217 FOURTH AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2412_3,-74.62740314,39.43366705,219 FOURTH AVENUE,EGG HARBOR TWP,15,1900,2,RES3A,3001 -0108_2412_5,-74.44158807,39.35720768,4031 WALNUT AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_2412_6,-74.60390957,39.38980743,4035 WALNUT AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_2413_10,-74.6110478,39.37628596,304 SECOND AVENUE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_2413_11,-74.532271,39.3877785,4014 WALNUT AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_2413_13,-74.6567435,39.5533675,4010 WALNUT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2413_14,-74.63896062,39.33939702,4008 WALNUT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2413_15,-74.68266143,39.49254132,4006 WALNUT AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_2413_3,-74.64221676,39.36389057,6637 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_2413_4,-74.48683785,39.33818994,6639 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_2413_5,-74.64288488,39.52920891,6643 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2413_7,-74.94841022,39.52571976,4009 COTTONWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES3A,3001 -0108_2413_8,-74.6661435,39.569705,310 SECOND AVENUE,EGG HARBOR TWP,16,1976,1,GOV1,3004 -0108_2413_9,-74.6261905,39.3924425,306 SECOND AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_2414_1,-74.61776455,39.43211454,4018 WALNUT AVENUE,EGG HARBOR TWP,51,1965,1,RES1,3001 -0108_2414_10,-74.929311,39.5080785,4030 WALNUT AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2414_11,-74.8060005,39.63301091,4032 WALNUT AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2414_12,-74.604814,39.32355,300 FOURTH AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2414_13,-74.711902,39.4728485,302 FOURTH AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_2414_14,-74.70443549,39.49242617,304 FOURTH AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2414_15,-74.83134883,39.41374217,306 FOURTH AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_2414_16,-74.6062995,39.3189895,308 FOURTH AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3002 -0108_2414_17,-74.58395221,39.34009995,312 FOURTH AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_2414_2,-74.57056922,39.41347425,303 SECOND AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2414_3,-74.55061272,39.46979853,305 SECOND AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2414_5,-74.49759948,39.49906874,311 SECOND AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2414_6,-74.566781,39.477277,4020 WALNUT AVENUE,EGG HARBOR TWP,16,1947,1,RES1,3001 -0108_2414_7,-74.8514785,39.5351715,4024 WALNUT AVENUE,EGG HARBOR TWP,16,1972,1,EDU1,3004 -0108_2414_8,-74.5760027,39.33356359,4026 WALNUT AVENUE,EGG HARBOR TWP,,1972,1,RES1,3001 -0108_2414_9,-74.71637421,39.63672961,4028 WALNUT AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2415_1,-74.638395,39.3365255,4034 WALNUT AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2415_10,-74.548914,39.3604415,4033 COTTONWOOD AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_2415_12,-74.60615919,39.43945704,4037 COTTONWOOD AVENUE,EGG HARBOR TWP,15,1910,2,RES1,3002 -0108_2415_14,-74.3640625,39.4087115,306 FIFTH AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_2415_16,-74.43318961,39.36405153,302 FIFTH AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2415_18,-74.5518995,39.3781855,4042 WALNUT AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_2415_2,-74.5283285,39.429266,301 FOURTH AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2415_21,-74.50844559,39.32881966,4036 WALNUT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2415_3,-74.52072117,39.3196185,303 FOURTH AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_2415_6,-74.55925243,39.36926954,309 FOURTH AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_2415_7,-74.78866707,39.65104537,311 FOURTH AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2415_8,-74.72253407,39.45620832,4029 COTTONWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2416_1,-74.51379576,39.39467314,4044 WALNUT AVENUE,EGG HARBOR TWP,16,1929,1,IND3,3002 -0108_2416_2,-74.55193839,39.47874834,307 FIFTH AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2417_1,-74.44212093,39.3672368,6647 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1965,1,RES3A,3001 -0108_2417_14,-74.57158244,39.34942621,4011 WINTERGREEN AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2417_2,-74.43768458,39.36965118,6645 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2417_22,-74.52646398,39.39363985,4014 COTTONWOOD AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_2417_23,-74.48016748,39.34882483,4012 COTTONWOOD AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_2417_3,-74.5443944,39.56911276,6651 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2417_4,-74.511987,39.402069,6653 WEST JERSEY AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_2417_5,-74.363487,39.4078255,6657 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1978,1,RES3B,3001 -0108_2418_1,-74.67473891,39.36780075,6677 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2420_8,-74.817023,39.6147385,4013 BROADWAY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2440_1,-74.52029574,39.45675965,4025 BROADWAY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2445_1,-74.7707575,39.664471,511 FOURTH AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_2445_2,-74.528312,39.39865983,513 FOURTH AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2445_5,-74.75888043,39.44532614,519 FOURTH AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_2446_5,-74.48381475,39.33499539,505 FOURTH AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2447_1,-74.59225291,39.31993084,411 FOURTH AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_2447_2,-74.60468208,39.33141164,415 FOURTH AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_2448_1,-74.387293,39.39068,407 FOURTH AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2449_1,-74.5940967,39.35741534,401 FOURTH AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_2501_10,-74.4960315,39.5271595,6327 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_2501_12.01,-74.506564,39.340017,4005 FERNWOOD AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_2501_12.02,-74.57986884,39.43053336,4007 FERNWOOD AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_2501_12.03,-74.7076675,39.4316795,4009 FERNWOOD AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_2501_12.04,-74.6023385,39.317467,4011 FERNWOOD AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_2501_13,-74.65067685,39.59771391,4017 FERNWOOD AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_2501_14.02,-74.60228218,39.31445053,4032 TREMONT AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.03,-74.55198117,39.46684884,2 BEDFORD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_14.04,-74.55700063,39.36606533,4 BEDFORD DRIVE,EGG HARBOR TWP,16,2004,1,COM4,3004 -0108_2501_14.05,-74.8832385,39.561341,6 BEDFORD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_14.06,-74.65762885,39.40299902,8 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2501_14.07,-74.882301,39.467699,10 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2501_14.08,-74.622598,39.4394445,12 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES3A,3001 -0108_2501_14.09,-74.5118455,39.398233,14 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2501_14.10,-74.5860225,39.537335,16 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2501_14.11,-74.591845,39.525601,18 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2501_14.12,-74.49967,39.428308,20 BEDFORD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_14.13,-74.6869376,39.65361416,22 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2501_14.14,-74.51262817,39.44282156,24 BEDFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.15,-74.8080067,39.55464193,26 BEDFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.16,-74.79627564,39.62405464,28 BEDFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.17,-74.3989635,39.3861,30 BEDFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.18,-74.5741575,39.425853,32 BEDFORD DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2501_14.19,-74.83232265,39.37848963,34 BEDFORD DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2501_14.20,-74.57384376,39.42798603,19 BEDFORD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2501_14.21,-74.76360248,39.63701717,17 BEDFORD DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2501_14.22,-74.75744444,39.4462078,15 BEDFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.23,-74.88703423,39.59912706,100 WINDWOOD DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_2501_14.24,-74.4972525,39.334968,102 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.25,-74.49999324,39.43297765,104 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES3B,3001 -0108_2501_14.26,-74.46338541,39.4977476,106 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.27,-74.50866759,39.44636785,108 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.28,-74.81877131,39.64138576,110 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.29,-74.68492642,39.57068366,112 WINDWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_14.30,-74.5693705,39.356271,114 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2501_14.31,-74.55526587,39.36412513,116 WINDWOOD DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_2501_14.34,-74.9523949,39.51213379,122 WINDWOOD DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2501_14.35,-74.75558941,39.63611894,14A BALSAM LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_2501_14.36,-74.47728821,39.47809749,14 BALSAM LANE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_14.37,-74.9131235,39.5104825,16 BALSAM LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2501_14.38,-74.5220455,39.399548,18 BALSAM LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2501_14.39,-74.56170049,39.41326433,23 BALSAM LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2501_14.40,-74.76555381,39.62431506,21 BALSAM LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2501_14.41,-74.5206055,39.399367,19 BALSAM LANE,EGG HARBOR TWP,16,2007,1,RES1,3002 -0108_2501_14.42,-74.5753885,39.35609,17 BALSAM LANE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2501_14.43,-74.590448,39.3756885,15 BALSAM LANE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2501_14.44,-74.50357716,39.40846052,13 BALSAM LANE,EGG HARBOR TWP,16,2007,1,RES1,3002 -0108_2501_14.45,-74.79595349,39.63980533,11 BALSAM LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_2501_14.46,-74.48418126,39.43263213,9 BALSAM LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2501_14.47,-74.87902635,39.45123425,7 BALSAM LANE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2501_14.48,-74.49771156,39.33339966,5 BALSAM LANE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_2501_14.49,-74.49793,39.3328605,3 BALSAM LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_2501_14.50,-74.52531467,39.38627893,1 BALSAM LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2501_15.01,-74.61911482,39.37345695,4023 FERNWOOD AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_2501_15.02,-74.37437277,39.41656159,4021 FERNWOOD AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2501_15.03,-74.538577,39.4712815,4019 FERNWOOD AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2501_16.01,-74.82187397,39.37388531,100 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.02,-74.648238,39.4014075,102 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.03,-74.86185364,39.5953154,104 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.04,-74.7755155,39.647889,106 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3002 -0108_2501_16.05,-74.52795317,39.381632,108 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.06,-74.60059185,39.48232767,110 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.07,-74.49046766,39.5240905,112 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.08,-74.45647764,39.48980418,114 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.09,-74.95111185,39.51638875,116 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.10,-74.44986508,39.48805371,118 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.11,-74.5968715,39.356388,13 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.13,-74.73184682,39.45432544,12 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.14,-74.57356631,39.42653641,11 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.15,-74.53598063,39.40376761,10 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.16,-74.6365905,39.3638115,9 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.17,-74.58868038,39.35564919,8 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.18,-74.51347439,39.32726534,7 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.19,-74.58963749,39.37672444,6 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.20,-74.63461218,39.42072009,5 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.21,-74.5018295,39.336532,4 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_16.22,-74.36693446,39.40818105,3 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_2501_16.23,-74.46269917,39.4745435,2 BRIELLE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2501_16.24,-74.48910581,39.33409152,1 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_18.01,-74.67103557,39.36698992,2 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.02,-74.80050213,39.63886894,4 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.03,-74.830154,39.4255465,6 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.04,-74.61122969,39.49099914,8 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3002 -0108_2501_18.05,-74.50920171,39.33603833,10 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.06,-74.535208,39.391591,12 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.07,-74.62890227,39.3606256,14 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.08,-74.4981105,39.3314045,16 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.09,-74.40015339,39.38878104,18 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.10,-74.5449795,39.4748725,20 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.11,-74.5553745,39.3737155,22 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.12,-74.68840071,39.49882961,24 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.13,-74.61813357,39.48569835,26 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,IND2,3004 -0108_2501_18.14,-74.54645312,39.47333028,28 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.15,-74.4856805,39.4954165,30 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.16,-74.642444,39.52949,32 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.17,-74.37774445,39.41451822,34 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2501_18.18,-74.6511215,39.523762,36 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.19,-74.63204996,39.4237865,38 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.20,-74.5872865,39.321197,40 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.21,-74.905617,39.546753,42 EAGLE DRIVE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_2501_18.22,-74.52155096,39.40527486,44 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_18.23,-74.63071972,39.38957256,46 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_25.01,-74.7996683,39.65087898,4054 TREMONT AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_25.02,-74.49805557,39.43241356,4054A TREMONT AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2501_25.03,-74.806973,39.4671245,4056 TREMONT AVENUE,EGG HARBOR TWP,16,1976,1,RES3A,3001 -0108_2501_33,-74.6353923,39.42021141,4028 TREMONT AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2501_34,-74.57665377,39.35248242,4024 TREMONT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2501_36,-74.53941848,39.37609562,4020 TREMONT AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2501_37,-74.71901983,39.45116968,4018 TREMONT AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_2501_38,-74.483085,39.4415875,4016 TREMONT AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_2501_39,-74.61612367,39.43136589,4012 TREMONT AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2501_40,-74.55743694,39.47275022,4010 TREMONT AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2501_5,-74.603108,39.36768391,6311 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2501_6,-74.5017576,39.41921996,6313 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_2501_7,-74.85158186,39.47177231,6317 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_2501_8.01,-74.61225379,39.36427061,2 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.02,-74.38651994,39.39321432,4 GARDENIA DRIVE,EGG HARBOR TWP,17,2017,1,RES1,3001 -0108_2501_8.03,-74.80313838,39.54614581,6 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,GOV1,3004 -0108_2501_8.04,-74.761553,39.640937,8 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.05,-74.63482368,39.59461134,10 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.06,-74.637523,39.430818,12 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.07,-74.49254473,39.52775165,14 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.08,-74.55903088,39.36156344,16 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.09,-74.80708225,39.61792607,18 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.11,-74.5556517,39.5188153,22 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.12,-74.35879613,39.41139406,24 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.13,-74.55933481,39.5167495,26 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.14,-74.52501538,39.52800075,23 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3004 -0108_2501_8.15,-74.62643597,39.41849919,21 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.17,-74.90363023,39.52939995,17 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.18,-74.49516926,39.33668192,15 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.21,-74.67602842,39.55726565,9 GARDENIA DRIVE,EGG HARBOR TWP,17,2017,1,RES1,3001 -0108_2501_8.22,-74.44158411,39.35405065,7 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.23,-74.5963125,39.3441405,5 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.24,-74.53018839,39.39700219,3 GARDENIA DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_2501_8.25,-74.645939,39.531551,1 GARDENIA DRIVE,EGG HARBOR TWP,17,2017,1,RES1,3001 -0108_2501_9,-74.546443,39.389071,6325 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_2502_10.01,-74.55619246,39.35548868,4027 RIDGE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2502_10.02,-74.4418099,39.36799113,4029 RIDGE AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_2502_13,-74.59054524,39.43155355,4039 RIDGE AVENUE,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_2502_14,-74.35865204,39.41293534,4041 RIDGE AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2502_15,-74.518943,39.3972485,4043 RIDGE AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_2502_17,-74.5160495,39.5053905,4034 FERNWOOD AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2502_18.09,-74.37263721,39.41485544,18 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2502_18.11,-74.49228585,39.33553798,22 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2502_18.12,-74.48596267,39.34759642,24 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2502_18.13,-74.57169645,39.36606905,26 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2502_18.14,-74.603458,39.369138,28 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2502_18.15,-74.88247437,39.49157317,30 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2502_18.16,-74.72338746,39.57694116,32 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2502_18.17,-74.94182358,39.52515418,34 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2502_18.18,-74.8740184,39.49394869,36 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2502_18.19,-74.55696351,39.39592317,38 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2502_18.20,-74.566465,39.364101,40 IMPERIAL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2502_18.22,-74.6070839,39.32492785,44 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2502_18.23,-74.49055257,39.42987392,46 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2502_18.24,-74.49264187,39.33419381,48 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2502_18.25,-74.92712459,39.53372155,50 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2502_18.26,-74.52246983,39.3157315,52 IMPERIAL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2502_18.27,-74.40938976,39.38264412,54 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2502_18.28,-74.4627881,39.35722481,56 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2502_18.29,-74.639734,39.5345145,58 IMPERIAL DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2502_2.02,-74.5063675,39.4381535,14 MOUNTAIN LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2502_2.03,-74.50273541,39.46679287,16 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.04,-74.96585043,39.51253075,18 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES3A,3004 -0108_2502_2.05,-74.58669372,39.51685982,20 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES3A,3001 -0108_2502_2.06,-74.64159796,39.52759067,22 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.07,-74.51853053,39.40595602,24 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.08,-74.59052792,39.41510684,26 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.09,-74.59288855,39.37610829,28 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.10,-74.5227935,39.400531,30 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.11,-74.36425983,39.40792003,32 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.12,-74.84642167,39.58739752,34 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_2502_2.13,-74.62503205,39.38152928,36 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2502_2.14,-74.86593,39.491766,38 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2502_2.15,-74.87083522,39.57701499,43 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.16,-74.90251122,39.50357028,41 MOUNTAIN LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2502_2.17,-74.64055395,39.4081342,39 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.18,-74.5568405,39.5247175,37 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.19,-74.46085495,39.46516356,35 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.20,-74.57014,39.3679485,33 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2502_2.21,-74.8642945,39.5963225,31 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.22,-74.82761564,39.40027967,29 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2502_2.23,-74.5071775,39.4918025,27 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2502_2.24,-74.63174152,39.52523546,25 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2502_2.25,-74.6113075,39.35263,23 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2502_2.26,-74.7137495,39.440824,21 MOUNTAIN LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2502_3,-74.8617215,39.5634695,6409 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_2502_4,-74.76439544,39.40512432,6415 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2502_5,-74.63497455,39.43507813,6421 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1925,1,AGR1,3001 -0108_2502_7,-74.5391265,39.3909585,4015 RIDGE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_2502_9.01,-74.817261,39.636775,4023 RIDGE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2502_9.02,-74.916544,39.548417,4025 RIDGE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2502_9.03,-74.83358915,39.58003585,4021 RIDGE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2503_12,-74.549889,39.379912,4011 SPRUCE AVENUE,EGG HARBOR TWP,16,1968,1,GOV1,3004 -0108_2503_13,-74.5117598,39.44862318,4013 SPRUCE AVENUE,EGG HARBOR TWP,16,1915,1,RES1,3001 -0108_2503_14,-74.62296121,39.43296727,4015 SPRUCE AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_2503_16,-74.52999115,39.41825704,4019 SPRUCE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_2503_17,-74.76008779,39.4456074,112 SECOND AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_2503_18,-74.78093369,39.62571742,108 SECOND AVENUE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_2503_20,-74.5189825,39.3889865,100 SECOND AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2503_21,-74.592103,39.321045,105 SECOND AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2503_22,-74.603588,39.4996425,107 SECOND AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2503_23,-74.802464,39.6567005,109 SECOND AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2503_24,-74.507442,39.40404,111 SECOND AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_2503_25,-74.81067182,39.64170654,4025 SPRUCE AVENUE,EGG HARBOR TWP,16,1925,2,GOV1,3004 -0108_2503_29,-74.52150457,39.44342262,4035 SPRUCE AVENUE,EGG HARBOR TWP,16,1965,1,EDU1,3004 -0108_2503_3,-74.697742,39.58791,6511 WEST JERSEY AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2503_30,-74.51941741,39.31776493,4039 SPRUCE AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3004 -0108_2503_31,-74.87414273,39.58893061,4045 SPRUCE AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_2503_4,-74.52589,39.3851775,6513 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_2503_5,-74.58643255,39.35303313,6515 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2503_54,-74.6540705,39.5234895,4040 RIDGE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_2503_55,-74.40504815,39.37986907,4036 RIDGE AVENUE,EGG HARBOR TWP,16,1982,1,GOV1,3004 -0108_2503_56,-74.60149167,39.32884806,4032 RIDGE AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_2503_57,-74.53599679,39.41219669,4030 RIDGE AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_2503_58,-74.80745944,39.63653335,4028 RIDGE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_2503_59,-74.82652234,39.62592698,4026 RIDGE AVENUE,EGG HARBOR TWP,16,1850,1,RES1,3001 -0108_2503_6,-74.60787417,39.44104501,6519 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2503_60,-74.60321924,39.35249407,4022 RIDGE AVENUE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2503_7,-74.553998,39.3621795,6517 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2503_8,-74.48379791,39.34380584,6523 WEST JERSEY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2503_9,-74.56953998,39.35148685,4001 SPRUCE AVENUE,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_2504_1,-74.57623268,39.41925048,101 WYGATE DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2504_10,-74.48407932,39.43188845,17 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2504_11,-74.86913917,39.60300001,18 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2504_12,-74.476435,39.4836905,19 BRIELLE AVENUE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2504_2,-74.80550942,39.37729598,103 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2504_3,-74.511038,39.4074345,105 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2504_4,-74.520672,39.321937,107 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2504_5,-74.88566551,39.51081961,109 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2504_6,-74.71610078,39.63625969,111 WYGATE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2504_7,-74.8175195,39.398657,14 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2504_8,-74.58932674,39.41487565,15 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2504_9,-74.527883,39.4661955,16 BRIELLE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_1,-74.63720172,39.53300181,1 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_10,-74.713145,39.4667165,4030 FERNWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2505_11,-74.55052931,39.4701397,41 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2505_12,-74.51095292,39.43933158,200 CROWN COURT,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2505_13,-74.49544332,39.43523802,202 CROWN COURT,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2505_14,-74.60213154,39.42896133,204 CROWN COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_15,-74.535803,39.473971,206 CROWN COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_16,-74.60099323,39.42977317,208 CROWN COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_17,-74.61240987,39.31660276,209 CROWN COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2505_18,-74.45838662,39.34948835,207 CROWN COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_19,-74.4883045,39.3382155,205 CROWN COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_2,-74.539101,39.3796135,4014 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2505_20,-74.637468,39.36147,203 CROWN COURT,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2505_21,-74.3786115,39.400459,37 IMPERIAL DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2505_22,-74.50851488,39.33978185,35 IMPERIAL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2505_23,-74.48894,39.428449,33 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2505_24,-74.82907185,39.59975348,31 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_25,-74.4688514,39.5058364,114 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,IND2,3004 -0108_2505_26,-74.45109937,39.37104539,112 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2505_27,-74.6340935,39.4217355,110 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_2505_28,-74.6244105,39.4347925,108 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2505_29,-74.66367608,39.40236923,106 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,IND2,3002 -0108_2505_3,-74.6498775,39.375417,4016 FERNWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3004 -0108_2505_30,-74.56420516,39.35633956,104 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2505_31,-74.505718,39.49268,102 TIFFANY LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_32,-74.51384236,39.48560645,100 TIFFANY LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_33,-74.48362495,39.33969589,9 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2505_34,-74.36179065,39.41697455,7 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2505_35,-74.80637,39.5518245,103 CROMWELL COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2505_36,-74.5458085,39.403939,105 CROMWELL COURT,EGG HARBOR TWP,16,1999,1,RES3B,3001 -0108_2505_37,-74.49677577,39.4503504,107 CROMWELL COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2505_38,-74.64633932,39.52462475,109 CROMWELL COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_39,-74.49936223,39.52518639,108 CROMWELL COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_4,-74.8553775,39.61108027,4018 FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2505_40,-74.7550445,39.430182,106 CROMWELL COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_41,-74.7896165,39.633542,104 CROMWELL COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2505_42,-74.67630825,39.34924966,102 CROMWELL COURT,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2505_43,-74.60786117,39.38635914,100 CROMWELL COURT,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2505_44,-74.54461483,39.52411251,3 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2505_5,-74.46705,39.476786,4020 FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_2505_6,-74.63831672,39.38088401,4022 FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2505_7,-74.44404937,39.372044,4024 FERNWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2505_8,-74.64531181,39.43121387,4026 FERNWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2505_9,-74.7124725,39.464559,4028 FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_1,-74.59898946,39.40213168,101 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_10,-74.75514369,39.43087722,25 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_11,-74.592207,39.375946,23 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_12,-74.6175075,39.385302,21 IMPERIAL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2506_13,-74.567865,39.405688,19 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_14,-74.94192996,39.52069682,17 IMPERIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_15,-74.498808,39.328927,15 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2506_2,-74.529965,39.30809,103 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_3,-74.43004635,39.36402967,105 TIFFANY LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2506_4,-74.72332818,39.45916751,107 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_5,-74.8698035,39.5665995,109 TIFFANY LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2506_6,-74.63448753,39.52874745,111 TIFFANY LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2506_7,-74.57448558,39.42904061,113 TIFFANY LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2506_8,-74.64920367,39.62615354,115 TIFFANY LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2506_9,-74.5677135,39.413379,27 IMPERIAL DRIVE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2507_1,-74.878605,39.6037855,4043 FERNWOOD AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_10,-74.4061805,39.379604,103 AMBER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_11,-74.93817796,39.51899419,105 AMBER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_12,-74.52335124,39.39607515,107 AMBER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_13,-74.59963262,39.31273932,109 AMBER COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_14,-74.38208296,39.39313184,111 AMBER COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_15,-74.6225305,39.3859265,114 AMBER COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_16,-74.4889705,39.333901,112 AMBER COURT,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2507_17,-74.40650228,39.39319104,110 AMBER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_18,-74.38786384,39.39031248,108 AMBER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_19,-74.65017506,39.53865592,106 AMBER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_2,-74.5858205,39.332247,102 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_20,-74.9267455,39.5199705,104 AMBER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_21,-74.56895267,39.51921653,102 AMBER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_22,-74.48774537,39.33897435,19 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_23,-74.488205,39.5226925,17 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_2507_24,-74.5568676,39.39828276,15 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_25,-74.60159555,39.3105462,13 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_26,-74.53069,39.4012865,11 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_27,-74.51823185,39.46618856,9 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_28,-74.81639633,39.37118601,7 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_29,-74.63292096,39.42136869,5 EAGLE DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_2507_3,-74.46008717,39.35034749,104 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_30,-74.92644271,39.50854486,3 EAGLE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2507_31,-74.3970425,39.3935625,4035 FERNWOOD AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_32,-74.52264583,39.38360593,4037 FERNWOOD AVENUE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_2507_33,-74.58365283,39.32512099,4039 FERNWOOD AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_34,-74.50547899,39.42433291,4041 FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2507_4,-74.57946953,39.31078141,106 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_5,-74.46003107,39.35027733,108 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2507_6,-74.373953,39.4040955,110 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_7,-74.55365037,39.36930691,112 SWAN DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2507_8,-74.50659,39.479065,114 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2507_9,-74.55779602,39.35818126,101 AMBER COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_10,-74.76968366,39.31723551,112 WILDFLOWER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_11,-74.51801333,39.4350585,110 WILDFLOWER COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_12,-74.4986975,39.469121,108 WILDFLOWER COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_13,-74.63333313,39.43364353,106 WILDFLOWER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_14,-74.81685542,39.65024626,104 WILDFLOWER COURT,EGG HARBOR TWP,16,2002,1,RES2,3005 -0108_2508_15,-74.65040713,39.35075748,102 WILDFLOWER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_16,-74.529895,39.4041145,100 WILDFLOWER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_17,-74.68642372,39.55129971,117 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_18,-74.8108405,39.6552995,115 SWAN DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2508_19,-74.608932,39.3217615,113 SWAN DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_2,-74.655855,39.559335,24 MAIN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_20,-74.45941174,39.48852405,111 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2508_21,-74.57039151,39.37527183,109 SWAN DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_22,-74.70555665,39.63419367,107 SWAN DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_23,-74.63347894,39.34922575,105 SWAN DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_24,-74.6408871,39.52732062,103 SWAN DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2508_25,-74.5469425,39.3693615,4045 FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2508_26,-74.6011495,39.328533,4047 FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_27,-74.4409345,39.4931165,4049 FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_3,-74.64789918,39.52464531,22 MAIN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_4,-74.52188438,39.32038555,20 MAIN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_5,-74.63881623,39.43544384,31 EAGLE DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_6,-74.54730212,39.38069531,29 EAGLE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_7,-74.50101417,39.32861049,103 WILDFLOWER COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2508_8,-74.4306545,39.368839,105 WILDFLOWER COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2508_9,-74.46244879,39.53431606,107 WILDFLOWER COURT,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2509_1,-74.8712685,39.442956,4034 TREMONT AVENUE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_2509_10,-74.8497485,39.4007265,200 ROUNDTREE COURT,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2509_11,-74.58039267,39.34079065,7 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2509_12,-74.64179911,39.53414498,9 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2509_13,-74.780663,39.6544065,11 BEDFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_14,-74.96401921,39.50451525,13 BEDFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_15,-74.67417884,39.38304532,101 WINDWOOD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2509_16,-74.7761762,39.63268083,103 WINDWOOD DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2509_17,-74.57383257,39.41970143,105 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_18,-74.5071005,39.4738695,107 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_19,-74.8490615,39.3950435,109 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_2,-74.52987866,39.40053496,1 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2509_20,-74.60025461,39.51211114,111 WINDWOOD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_21,-74.49896483,39.44977398,113 WINDWOOD DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_2509_22,-74.67249257,39.54558893,115 WINDWOOD DRIVE,EGG HARBOR TWP,16,2013,1,GOV1,3004 -0108_2509_23,-74.46748445,39.34495616,117 WINDWOOD DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2509_25,-74.798509,39.3693175,121 WINDWOOD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2509_26,-74.63334541,39.43058419,12 BALSAM LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2509_27,-74.819827,39.4018605,10 BALSAM LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_28,-74.763379,39.629299,8 BALSAM LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2509_29,-74.86487856,39.44048331,6 BALSAM LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_2509_3,-74.81364799,39.63176354,3 BEDFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2509_30,-74.80968683,39.65050849,4 BALSAM LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_2509_31,-74.63826815,39.36452275,2 BALSAM LANE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_2509_4,-74.63705469,39.41109403,5 BEDFORD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2509_5,-74.77207823,39.66086809,201 ROUNDTREE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_6,-74.63257765,39.41545578,203 ROUNDTREE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2509_7,-74.6505385,39.454436,205 ROUNDTREE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2509_8,-74.8467915,39.4651045,204 ROUNDTREE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2509_9,-74.4726649,39.4896322,202 ROUNDTREE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2510_1,-74.62391,39.4123005,MOUNTAIN LANE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2510_10,-74.59399919,39.32523203,17 MOUNTAIN LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2510_11,-74.616759,39.5086325,19 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2510_2,-74.85695631,39.43870764,1 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2510_3,-74.80711489,39.46385568,3 MOUNTAIN LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2510_4,-74.60918743,39.36790578,5 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2510_5,-74.635846,39.5252135,7 MOUNTAIN LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2510_6,-74.867487,39.4945595,9 MOUNTAIN LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2510_7,-74.73560864,39.43900003,11 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2510_8,-74.60633542,39.31815518,13 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2510_9,-74.588354,39.3788765,15 MOUNTAIN LANE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2602_11,-74.493094,39.342105,302 SYCAMORE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2602_12,-74.608624,39.3285775,300 SYCAMORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2602_13,-74.807775,39.621718,1 SPRING LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2602_13.01,-74.640133,39.53415,212 SYCAMORE AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2602_14,-74.50991834,39.46049452,210 SYCAMORE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2602_15,-74.514244,39.4102565,208 SYCAMORE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_2602_16,-74.49251199,39.33581711,206 SYCAMORE AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2602_17,-74.914952,39.4870695,204 SYCAMORE AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2602_18,-74.73059787,39.45397466,202 SYCAMORE AVENUE,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_2602_19,-74.82058052,39.63689033,200 SYCAMORE AVENUE,EGG HARBOR TWP,28,2008,2,REL1,3004 -0108_2602_20,-74.53538114,39.38591497,108 SYCAMORE AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2602_21,-74.547449,39.4652305,106 SYCAMORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2602_22,-74.41427167,39.36654504,104 SYCAMORE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2602_23,-74.7551041,39.44587798,102 SYCAMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2602_24,-74.3639865,39.419619,100 SYCAMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2602_25,-74.624671,39.4388725,6061 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2602_6,-74.51456949,39.32055138,58 ATLAS LANE ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_2602_7,-74.45856865,39.47262046,310 SYCAMORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2602_8,-74.44318869,39.48952604,308 SYCAMORE AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2602_9,-74.55447,39.473943,306 SYCAMORE AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_2603_1,-74.6394365,39.4100615,4049 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2606_1,-74.50511237,39.4294331,6103 WEST JERSEY AVENUE,EGG HARBOR TWP,,0,1,RES1,3002 -0108_2606_10,-74.77465092,39.63810166,4023 IVINS AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_2606_100,-74.36848417,39.402433,4046 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_2606_101,-74.869485,39.5669915,4048 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2606_102,-74.3769185,39.4187145,4050 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2606_104,-74.64508487,39.53231455,4056 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_2606_106,-74.371396,39.401245,4060 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_2606_108,-74.7127185,39.4328375,4064 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2606_11,-74.3669315,39.4170315,4029 IVINS AVENUE,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_2606_115,-74.51324169,39.45602561,4008 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2606_116,-74.816048,39.3984295,4004 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2606_119,-74.4984575,39.497234,4047 IVINS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2606_12,-74.54512266,39.50631049,4031 IVINS AVENUE,EGG HARBOR TWP,15,1948,1,RES1,3001 -0108_2606_13,-74.6268685,39.4255745,4033 IVINS AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2606_15,-74.49555914,39.52107024,4037 IVINS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2606_16,-74.57451349,39.35506567,4041 IVINS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_2606_17,-74.80082883,39.643576,4043 IVINS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2606_19,-74.60817396,39.41846018,4049 IVINS AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_2606_20,-74.6150895,39.518094,4053 IVINS AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2606_21,-74.7335165,39.4646635,4055 IVINS AVENUE,EGG HARBOR TWP,16,1980,1,COM3,3004 -0108_2606_3,-74.829589,39.6438445,6135 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2606_4,-74.8780415,39.4764185,4007 IVINS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2606_5,-74.8106785,39.634665,4009 IVINS AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_2606_6,-74.52506724,39.31759656,4013 IVINS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2606_7,-74.67296802,39.39053483,4015 IVINS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2606_8,-74.46914749,39.54021484,4017 IVINS AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_2606_9,-74.37468332,39.41212547,4019 IVINS AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_2606_97,-74.60858045,39.32604166,4040 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_2606_98,-74.700672,39.423177,4042 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_2607_1,-74.4697066,39.34554517,4000 IVINS AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_2607_11,-74.6554,39.51448567,6235 WEST JERSEY AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2607_13,-74.842723,39.5393865,3095 TREMONT AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2607_14,-74.60753327,39.32642796,3097 TREMONT AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2607_16,-74.878147,39.592579,4019 TREMONT AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2607_17,-74.6302215,39.349669,4023 TREMONT AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_2607_18,-74.5061385,39.33935,4029 TREMONT AVENUE,EGG HARBOR TWP,15,1930,1,RES1,3001 -0108_2607_2,-74.38066093,39.4167718,6205 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_2607_25,-74.53086822,39.49217663,4043 TREMONT AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2607_29,-74.6058105,39.3236895,4047 TREMONT AVENUE,EGG HARBOR TWP,15,1958,1,RES1,3001 -0108_2607_3,-74.62862878,39.40737764,6207 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2607_34,-74.50398323,39.43395422,4057 TREMONT AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2607_39,-74.93019789,39.51598397,2 MAIN AVENUE,EGG HARBOR TWP,15,1920,1,RES1,3001 -0108_2607_40,-74.6188997,39.44018952,4054 IVINS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2607_41,-74.7647398,39.66354361,4052 IVINS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_2607_42,-74.63378785,39.42339178,4050 IVINS AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2607_43,-74.4881963,39.35103653,4048 IVINS AVENUE,EGG HARBOR TWP,16,1977,1,GOV1,3004 -0108_2607_44,-74.65091599,39.37253509,4046 IVINS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2607_45,-74.8541695,39.369375,4044 IVINS AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_2607_46,-74.4838305,39.4424545,4042 IVINS AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2607_47,-74.5523765,39.3679025,4040 IVINS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2607_48,-74.568773,39.3480935,4038 IVINS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2607_49,-74.54243984,39.37841043,4034 IVINS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2607_51,-74.4942206,39.46587677,4030 IVINS AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2607_52,-74.5733604,39.38251129,4026 IVINS AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_2607_53,-74.76546484,39.63636998,4024 IVINS AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2607_54,-74.42949116,39.37498787,4018 IVINS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2607_55,-74.52557103,39.31305507,4012 IVINS AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2607_56,-74.4987615,39.334225,4010 IVINS AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_2607_56.01,-74.92688178,39.51936737,4008A IVINS AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2607_56.02,-74.739042,39.453533,4010A IVINS AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2607_57,-74.49980674,39.33114166,4008 IVINS AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2607_58,-74.531457,39.398578,4004 IVINS AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_2607_6,-74.50291133,39.33621562,6225 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_2607_7,-74.550852,39.3740045,4017 TREMONT AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_2608_1,-74.4250165,39.3666455,215 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2608_10,-74.52686801,39.38166883,5 SPRING LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2608_11,-74.55339167,39.46747732,3 SPRING LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2608_2,-74.58097654,39.3460297,213 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,COM1,3004 -0108_2608_3,-74.52874873,39.31014719,211 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2608_4,-74.49479355,39.43149794,209 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2608_5,-74.532876,39.384043,207 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2608_6,-74.52005535,39.40751727,205 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2608_7,-74.534183,39.313485,203 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2608_8,-74.8520565,39.391683,201 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2608_9,-74.57142,39.342486,7 SPRING LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2609_1,-74.56063542,39.50780764,62 ATLAS LANE ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2609_10,-74.86012183,39.56486949,201 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2609_11,-74.86838844,39.49266115,203 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2609_12,-74.85171001,39.48895029,205 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2609_13,-74.60182481,39.37335307,207 AZALEA LANE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2609_14,-74.498123,39.4355415,209 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2609_15,-74.50143517,39.33071749,211 AZALEA LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_2609_16,-74.64913592,39.52541696,213 AZALEA LANE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2609_17,-74.39790382,39.39061808,215 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2609_18,-74.61749076,39.31898516,66 ATLAS LANE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2609_19,-74.80284035,39.53661279,64 ATLAS LANE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2609_2,-74.52138555,39.47004734,214 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2609_3,-74.441692,39.489271,212 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2609_4,-74.88679746,39.55873467,210 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2609_5,-74.837706,39.4181255,208 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2609_6,-74.47567734,39.48087193,206 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2609_7,-74.7554805,39.434279,204 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2609_8,-74.520762,39.3191735,202 PEACH TREE LANE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2609_9,-74.82714279,39.58531633,200 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2610_1,-74.56463438,39.47153171,214 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.01,-74.52921109,39.38355522,134 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.02,-74.463497,39.464235,132 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.03,-74.4934755,39.4204755,130 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2610_1.04,-74.75474695,39.42904973,128 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2610_1.05,-74.5220365,39.316453,126 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2610_1.06,-74.53449857,39.45179465,124 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.07,-74.8065501,39.62729764,122 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.08,-74.530778,39.384903,120 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.09,-74.59303398,39.32430517,118 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.10,-74.5087915,39.4046265,116 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_2610_1.11,-74.63290833,39.542914,114 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.12,-74.51310414,39.48338753,112 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2610_1.13,-74.69496833,39.56126849,110 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,COM1,3004 -0108_2610_1.14,-74.63880716,39.38806201,108 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.15,-74.48677171,39.33627537,106 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2610_1.16,-74.6793068,39.55151102,104 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_1.17,-74.62425519,39.45287626,102 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2610_1.18,-74.52840478,39.52088703,100 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2610_10,-74.74711352,39.44626381,15 SPRING LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_11,-74.50835792,39.3847374,17 SPRING LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_14,-74.54558766,39.38816497,6075 WEST JERSEY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2610_15,-74.78017565,39.67076862,4041 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1956,1,COM4,3004 -0108_2610_16,-74.8018715,39.6398645,4045 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2610_2,-74.54260614,39.39655405,212 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_3,-74.51397828,39.40038636,210 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_4,-74.48055675,39.34010017,208 AZALEA LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_5,-74.600428,39.3418605,206 AZALEA LANE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2610_6,-74.573912,39.4262155,204 AZALEA LANE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_2610_7,-74.57771548,39.35510568,202 AZALEA LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2610_8,-74.63106157,39.36325981,11 SPRING LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2610_9,-74.7996155,39.6437155,13 SPRING LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2611_1,-74.6808215,39.445198,2 SPRING LANE,EGG HARBOR TWP,16,1999,1,REL1,3002 -0108_2611_10,-74.80795925,39.61745244,121 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2611_11,-74.750321,39.4472615,119 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2611_12,-74.5998275,39.491788,117 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2611_13,-74.63873716,39.38183324,115 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_2611_14,-74.50067992,39.43012669,113 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2611_15,-74.5908387,39.32807319,111 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2611_16,-74.50353759,39.41706192,109 PEACH TREE LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2611_17,-74.65477666,39.53253248,107 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2611_18,-74.66349017,39.40556105,105 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2611_19,-74.4927805,39.338663,103 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2611_2,-74.942838,39.5002845,4 SPRING LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2611_20,-74.53977284,39.38232753,101 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2611_3,-74.8314355,39.5237365,6 SPRING LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2611_4,-74.476693,39.342749,133 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2611_5,-74.46584721,39.47064956,131 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2611_6,-74.6126765,39.4889085,129 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES2,3005 -0108_2611_7,-74.7501155,39.6032195,127 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2611_8,-74.5075675,39.3269125,125 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2611_9,-74.78430969,39.42048976,123 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2612_1,-74.48166158,39.35170417,130 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2612_10,-74.5741145,39.370188,112 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2612_11,-74.60271872,39.3154239,110 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2612_12,-74.47093894,39.4908282,108 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_2612_13,-74.44241297,39.36953382,106 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2612_14,-74.63112991,39.31696965,104 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2612_15,-74.658988,39.5363485,102 PEACH TREE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2612_16,-74.599938,39.3145905,100 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2612_17,-74.59072339,39.32087116,131 AZALEA LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2612_18,-74.49174829,39.43557476,129 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2612_19,-74.6088935,39.418068,127 AZALEA LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2612_2,-74.5083511,39.33020916,128 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2612_20,-74.586991,39.430274,125 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2612_21,-74.9522875,39.53302,123 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2612_22,-74.81546315,39.64211526,121 AZALEA LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2612_23,-74.93982915,39.52403203,119 AZALEA LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2612_24,-74.37817503,39.41488617,117 AZALEA LANE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_2612_25,-74.55648134,39.3670053,115 AZALEA LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2612_26,-74.59126694,39.32716567,113 AZALEA LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2612_27,-74.80861306,39.63839315,111 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2612_28,-74.9454125,39.5280445,109 AZALEA LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2612_29,-74.56248633,39.4109866,107 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2612_3,-74.72083059,39.64984346,126 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,COM1,3004 -0108_2612_30,-74.77161862,39.60906214,105 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2612_31,-74.64838602,39.51940716,103 AZALEA LANE,EGG HARBOR TWP,16,1999,1,COM1,3004 -0108_2612_32,-74.48442373,39.46235732,101 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2612_4,-74.42000367,39.37047302,124 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2612_5,-74.9511845,39.5162375,122 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2612_6,-74.64063591,39.53010315,120 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2612_7,-74.53630985,39.38083154,118 PEACH TREE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2612_8,-74.57062638,39.33680723,116 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2612_9,-74.873299,39.4926475,114 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2613_1,-74.54385576,39.39146123,130 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_10,-74.810661,39.6461525,112 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_11,-74.76211481,39.60393388,110 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_12,-74.669761,39.3594745,108 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_13,-74.88308995,39.56656117,106 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_14,-74.625574,39.36165,104 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_15,-74.39105035,39.39128446,102 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_16,-74.5126215,39.405161,100 AZALEA LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2613_17,-74.8074575,39.631804,131 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2613_18,-74.50267382,39.33359839,129 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2613_19,-74.571877,39.335251,127 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2613_2,-74.71057716,39.47172447,128 AZALEA LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2613_20,-74.506798,39.4515905,125 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2613_21,-74.49212693,39.47228023,123 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2613_22,-74.51880648,39.40187318,121 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2613_23,-74.5936235,39.3420945,119 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2613_24,-74.49458741,39.33056934,117 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2613_25,-74.7726143,39.62070972,115 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2613_26,-74.54875299,39.39592969,113 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2613_27,-74.55217185,39.37686853,111 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2613_28,-74.38429196,39.39663885,109 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2613_29,-74.48153013,39.34064315,107 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2613_3,-74.61004628,39.36595459,126 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_30,-74.8280155,39.572242,105 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2613_31,-74.79857065,39.37423117,103 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2613_32,-74.7011305,39.4247575,101 WEDGEWOOD DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2613_4,-74.53549733,39.399582,124 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_5,-74.44738244,39.37493871,122 AZALEA LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2613_6,-74.57598,39.4785725,120 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_7,-74.39572,39.389969,118 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2613_8,-74.61310856,39.32114619,116 AZALEA LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2613_9,-74.37896,39.40159117,114 AZALEA LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2614_1,-74.46147511,39.3494748,2 SUMMERLEAF DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2614_2,-74.439171,39.3656075,4 SUMMERLEAF DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2614_3,-74.59413266,39.41594572,6 SUMMERLEAF DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2614_4,-74.7975625,39.652319,8 SUMMERLEAF DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2614_5,-74.494261,39.3320205,10 SUMMERLEAF DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2614_6,-74.59224057,39.31261032,12 SUMMERLEAF DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2614_7,-74.593992,39.3267825,14 SUMMERLEAF DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2614_8,-74.503294,39.490781,16 SUMMERLEAF DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2701_24.01,-74.84231812,39.63362316,16 WINNEPEG AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2701_24.02,-74.53078295,39.44921867,14 WINNEPEG AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_2701_24.03,-74.56948517,39.41379984,12 WINNEPEG AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_2701_26,-74.617761,39.4376935,421 SYCAMORE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2701_27,-74.50105792,39.4105461,427 SYCAMORE AVENUE,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_2701_28,-74.84836689,39.53876829,431 SYCAMORE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2701_29.01,-74.8547965,39.4450625,100 CHERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2701_29.02,-74.775558,39.6159095,102 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.03,-74.888413,39.54121,104 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.04,-74.5979845,39.4346115,106 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.05,-74.58545447,39.40630234,108 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.06,-74.49519507,39.4306513,110 CHERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2701_29.07,-74.564728,39.3566305,112 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.08,-74.72534561,39.45535996,114 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.09,-74.52966721,39.30913061,116 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.11,-74.50157842,39.43594076,200 GARDENVIEW ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.12,-74.54872532,39.47714542,202 GARDENVIEW ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.13,-74.49683835,39.43158638,204 GARDENVIEW ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.14,-74.59381421,39.37958514,206 GARDENVIEW ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2701_29.15,-74.4203085,39.371507,208 GARDENVIEW ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2701_29.16,-74.49093468,39.33862943,210 GARDENVIEW ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2702_1.01,-74.8323665,39.487535,115 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2702_2.01,-74.54227029,39.37385244,113 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2702_3.01,-74.6253219,39.46101314,111 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2702_4.01,-74.84904365,39.5388132,109 CHERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2702_5.01,-74.6307155,39.392591,107 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2702_6.01,-74.9748615,39.508213,105 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2702_7.01,-74.69326586,39.58574144,103 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2702_8.01,-74.5454642,39.47541032,101 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2703_1,-74.68869366,39.50656148,126 CHERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2703_10,-74.81372499,39.64426483,120 CHERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2703_11,-74.49965579,39.3267558,122 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2703_12,-74.5532825,39.3651265,124 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2703_2,-74.5257555,39.386653,22 WINNEPEG AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2703_3,-74.3840695,39.3928135,213 GARDENVIEW ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2703_4,-74.64230668,39.41060608,211 GARDENVIEW ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2703_5,-74.51757565,39.40244259,209 GARDENVIEW ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2703_6,-74.64004874,39.3639469,207 GARDENVIEW ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2703_7,-74.44642771,39.48640082,205 GARDENVIEW ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2703_8,-74.8562285,39.558443,203 GARDENVIEW ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2703_9,-74.7587415,39.446387,118 CHERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2707_1,-74.6535915,39.352891,427 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_10,-74.60920972,39.3828332,8 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_11,-74.80108954,39.63458953,6 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_12,-74.63195067,39.45809637,4 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_13,-74.68463989,39.34603812,2 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2707_2,-74.5118245,39.322444,425 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2707_3,-74.48979778,39.33495316,423 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_4,-74.4973155,39.3334895,421 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_5,-74.36475753,39.42057917,419 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_6,-74.60440543,39.50648233,417 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_7,-74.63844337,39.34332916,102 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_8,-74.50398403,39.33988998,100 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2707_9,-74.60144438,39.38846633,10 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2708_1,-74.58818305,39.32496485,415 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2708_10,-74.61952584,39.43744376,108 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_11,-74.493635,39.3382775,106 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_12,-74.64952125,39.48587746,104 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_13,-74.94033542,39.51932782,102 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_14,-74.610743,39.326734,100 DAPHNE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2708_15,-74.5538175,39.4030875,101 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2708_16,-74.63106716,39.51828097,103 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3004 -0108_2708_17,-74.60322844,39.40777675,105 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2708_2,-74.62956239,39.61929044,413 GLENN AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_3,-74.54065928,39.46635291,411 GLENN AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_4,-74.5199965,39.397178,409 GLENN AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_5,-74.37271291,39.40583733,407 GLENN AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_6,-74.503049,39.3311955,405 GLENN AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2708_7,-74.52390345,39.31451415,114 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_8,-74.60116091,39.39150883,112 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2708_9,-74.6239612,39.37525966,110 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2710_10,-74.46393317,39.35867196,114 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_10.01,-74.4990105,39.4934775,59 ATLAS LANE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2710_11,-74.5485085,39.3730525,117 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_11.01,-74.8722853,39.60218896,401 SYCAMORE AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_2710_12,-74.46510552,39.35769017,115 CAMELLIA LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2710_13,-74.63827059,39.34431474,113 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_14,-74.500809,39.4298995,111 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_15,-74.53599021,39.38408517,412 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_16,-74.547531,39.464745,410 GLENN AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2710_17,-74.52882232,39.38890444,408 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_18,-74.374669,39.41341017,406 GLENN AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2710_19,-74.6541757,39.45767684,404 GLENN AVENUE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_2710_2,-74.54860079,39.46915394,422 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_20,-74.533375,39.400155,402 GLENN AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2710_21,-74.5984935,39.5229195,49 ATLAS LANE ROAD,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_2710_22,-74.5949985,39.3801625,400 GLENN AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2710_3,-74.469091,39.4430125,420 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2710_4,-74.50720688,39.4472246,418 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,COM1,3004 -0108_2710_5,-74.48881,39.4402915,416 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2710_6,-74.5291365,39.407384,106 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_7,-74.52394568,39.42149947,108 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_7.01,-74.58978717,39.35640675,51 ATLAS LANE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_2710_8,-74.44242067,39.35811224,110 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2710_8.01,-74.566697,39.3637725,55 ATLAS LANE ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2710_9,-74.5868705,39.3269715,112 CAMELLIA LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_1,-74.49702682,39.4477019,1 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,EDU1,3004 -0108_2711_10,-74.53524322,39.52669903,19 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_11,-74.75488046,39.47581322,21 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_12,-74.46596863,39.34546915,23 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_13,-74.52813793,39.39304131,25 DAISY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2711_15,-74.62023929,39.42420133,27 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_16,-74.49400825,39.44678779,29 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_17,-74.49316034,39.33427549,31 DAISY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2711_18,-74.557107,39.368055,33 DAISY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2711_19,-74.7808175,39.679546,35 DAISY DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2711_2,-74.50340089,39.42438312,3 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_20,-74.5876196,39.37037974,37 DAISY DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2711_21,-74.5279705,39.393339,39 DAISY DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2711_22,-74.54940627,39.40287927,41 DAISY DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2711_23,-74.77002117,39.66106801,43 DAISY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2711_24,-74.633349,39.361001,45 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_25,-74.820217,39.6568445,47 DAISY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2711_26,-74.499419,39.3300855,403 GLENN AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2711_27,-74.570355,39.414823,401 GLENN AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2711_28,-74.42386718,39.37479943,43 ATLAS LANE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2711_29,-74.45764755,39.34908467,41 ATLAS LANE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2711_3,-74.643043,39.460394,5 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_30,-74.55443533,39.35645292,39 ATLAS LANE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2711_31,-74.6278,39.392949,37 ATLAS LANE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2711_32,-74.8164435,39.653875,35 ATLAS LANE ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2711_4,-74.4958675,39.4707575,7 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_5,-74.575361,39.4778265,9 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_6,-74.69759516,39.35675799,11 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_7,-74.8073535,39.374706,13 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_8,-74.50839719,39.32348677,15 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2711_9,-74.49188423,39.33876382,17 DAISY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2712_1,-74.62871862,39.41620982,36 DAISY DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_2712_10,-74.726818,39.589523,22 DAISY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2712_11,-74.59986776,39.52193664,24 DAISY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2712_12,-74.6438916,39.41218976,26 DAISY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2712_13,-74.751623,39.450953,28 DAISY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2712_14,-74.468268,39.3459185,30 DAISY DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_2712_15,-74.5210835,39.392736,32 DAISY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2712_16,-74.79479834,39.46237469,34 DAISY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2712_2,-74.51756548,39.39964934,113 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_2712_3,-74.5947675,39.38013,111 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2712_4,-74.523244,39.39712283,109 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2712_5,-74.88516696,39.57387115,107 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2712_6,-74.754935,39.431579,105 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2712_7,-74.81280968,39.43877343,103 DAPHNE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2712_8,-74.48873784,39.33839449,101 DAPHNE ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2712_9,-74.88015941,39.6042127,20 DAISY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_1,-74.5031505,39.335615,501 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_10,-74.39430102,39.38625333,519 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3004 -0108_2713_11,-74.6254545,39.4185125,521 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2713_12,-74.3684109,39.40233584,523 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2713_13,-74.80788811,39.62781534,525 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_14,-74.49680266,39.42524082,527 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2713_15,-74.7982867,39.53687297,529 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_16,-74.5213315,39.473686,531 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_2,-74.534666,39.452616,503 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_3,-74.51861471,39.47089909,505 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_4,-74.493619,39.432434,507 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_5,-74.56892,39.4132765,509 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_6,-74.61110528,39.32641763,511 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_7,-74.48276,39.3476735,513 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_8,-74.56276631,39.39073013,515 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2713_9,-74.5269615,39.385549,517 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2715_1,-74.63794905,39.50745365,324 CARVER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2715_11,-74.51924617,39.31758548,224 CARVER AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_2715_12,-74.48948561,39.35157279,222 CARVER AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_2715_13,-74.48663745,39.49662053,218 CARVER AVENUE,EGG HARBOR TWP,16,2003,1,RES4,3001 -0108_2715_14,-74.84873915,39.39878501,214 CARVER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2715_15,-74.500632,39.449687,210 CARVER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2715_18,-74.60420035,39.4064702,200 CARVER AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_2715_21,-74.8490045,39.5453015,118 CARVER AVENUE,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_2715_24,-74.4760305,39.479864,112 CARVER AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_2715_25,-74.645799,39.5349565,108 CARVER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2715_26,-74.435824,39.358691,104 CARVER AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_2715_27,-74.9732175,39.5127265,6035 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_2715_29,-74.90171437,39.49902011,101 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_29.01,-74.80050367,39.5354694,103 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_29.02,-74.8673265,39.4919135,105 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3002 -0108_2715_3,-74.520302,39.4016655,322 CARVER AVENUE,EGG HARBOR TWP,16,1966,1,COM1,3004 -0108_2715_30,-74.43492457,39.37165983,107 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_30.01,-74.61933869,39.37301005,109 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_31,-74.38628666,39.39302652,111 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_31.01,-74.62619882,39.41624159,113 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_32,-74.51885101,39.39987832,115 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_32.01,-74.39976738,39.38902457,201 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_33,-74.36657711,39.40705266,203 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2715_33.01,-74.62382384,39.60760654,205 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2715_34,-74.780344,39.601631,207 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2715_34.01,-74.86217959,39.43747118,209 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2715_35,-74.65623578,39.3608779,211 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2715_35.01,-74.47478034,39.48572251,213 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2715_36,-74.8560635,39.6239545,215 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_36.01,-74.64044667,39.33125147,217 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_37,-74.48626849,39.33352383,219 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_37.01,-74.5390985,39.386761,301 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2715_38,-74.3631495,39.4196395,303 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2715_39,-74.8139405,39.5327655,305A SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2715_4,-74.93776351,39.50350499,318 CARVER AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_2715_40,-74.530085,39.400251,305 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2715_41,-74.88748807,39.5094693,309 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3004 -0108_2715_42,-74.526291,39.3136235,311 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2715_43,-74.402862,39.3852885,34 ATLAS LANE ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2715_5,-74.5385275,39.5333805,314 CARVER AVENUE,EGG HARBOR TWP,45,1999,2,RES1,3001 -0108_2715_6,-74.50155982,39.46567748,310 CARVER AVENUE,EGG HARBOR TWP,45,1999,2,RES1,3001 -0108_2715_7,-74.828379,39.539029,306 CARVER AVENUE,EGG HARBOR TWP,45,1999,2,RES1,3001 -0108_2715_8,-74.48275933,39.33466051,302 CARVER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2715_9,-74.6296827,39.33594296,228 CARVER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2716_1,-74.7523322,39.45212891,116 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,COM4,3004 -0108_2716_1.01,-74.72294883,39.58142606,114 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES3A,3001 -0108_2716_1.02,-74.81878431,39.52475668,112 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2716_11,-74.496892,39.47511,111 FLATBUSH AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2716_11.01,-74.9109595,39.4885265,109 FLATBUSH AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2716_11.02,-74.50670206,39.32369079,6048 BALTIMORE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2716_2,-74.49057062,39.4201592,110 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2716_3,-74.5037195,39.3387835,108 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2716_3.01,-74.60343034,39.32870876,106 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_2716_4,-74.46547443,39.34665361,104 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2716_4.01,-74.919561,39.5049325,102 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2716_5,-74.7633455,39.6098205,100 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2716_6.01,-74.72922477,39.45504464,103 FLATBUSH AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2716_7,-74.49245486,39.33574685,105 FLATBUSH AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2717_1,-74.75024033,39.60195948,6048 WILMINGTON AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_1.01,-74.75056715,39.60189869,216 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2717_1.02,-74.47982867,39.33851999,6050 WILMINGTON AVENUE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2717_1.03,-74.62496538,39.61037386,6052 WILMINGTON AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_2,-74.84398532,39.37946403,214 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_3,-74.79114833,39.64232848,212 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_3.01,-74.63068617,39.39621429,210 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES3A,3001 -0108_2717_3.03,-74.44302025,39.36967458,211 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_2717_3.04,-74.6011045,39.3691395,209 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2717_3.05,-74.62356265,39.3933343,207 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2717_3.06,-74.71694244,39.58625635,205 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2717_4,-74.71050171,39.43146862,208 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_4.01,-74.75034469,39.40036198,206 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_5,-74.5688105,39.35608,204 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_5.01,-74.8167885,39.6028035,202 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_5.02,-74.93234479,39.49752852,200 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2717_6,-74.66424614,39.46250724,201 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_2718_1,-74.5387525,39.407123,36 ATLAS LANE ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2718_1.01,-74.37042188,39.40753985,314 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2718_1.02,-74.54721788,39.39213033,311 FLATBUSH AVENUE,EGG HARBOR TWP,16,2000,1,COM1,3004 -0108_2718_1.03,-74.568471,39.4165685,38 ATLAS LANE ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2718_2,-74.53546867,39.30635738,312 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2718_3,-74.55395199,39.4696535,310 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2718_3.01,-74.59407453,39.35111327,308 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3004 -0108_2718_4,-74.508504,39.3327485,306 SPRINGFIELD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2718_4.01,-74.58925231,39.37747198,6047 WILMINGTON AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2718_4.02,-74.5740145,39.3489715,303 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_2718_4.03,-74.51986545,39.31960584,305 FLATBUSH AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2718_4.04,-74.54856392,39.3599375,6049 WILMINGTON AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2718_5,-74.60859731,39.48326647,301 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2718_6,-74.5997015,39.341726,307 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2718_7,-74.607944,39.397314,309A FLATBUSH AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2719_1,-74.5740859,39.35151375,316 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2719_10,-74.882133,39.483449,301 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2719_11,-74.5201495,39.387897,303 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2719_12,-74.5502355,39.367803,305 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2719_13,-74.8039825,39.640259,307 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2719_14,-74.51357246,39.45559706,309 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2719_15,-74.9331865,39.52012783,311 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2719_16,-74.8824565,39.497142,313 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2719_17,-74.48690712,39.33646994,315 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_2719_18,-74.5045005,39.3252725,317 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_2719_2,-74.527929,39.5220365,314 FLATBUSH AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2719_3,-74.49256816,39.44781666,312 FLATBUSH AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2719_4,-74.5740635,39.4800575,310 FLATBUSH AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2719_5,-74.51227186,39.3856247,308 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2719_6,-74.52925052,39.38867439,306 FLATBUSH AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2719_7,-74.76122502,39.43125634,304 FLATBUSH AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2719_8,-74.92978514,39.51906643,302 FLATBUSH AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2719_9,-74.74109765,39.49211247,6051 WILMINGTON AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2720_1,-74.65503886,39.40461215,6054 WILMINGTON AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2720_10,-74.60175595,39.43491819,203 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2720_11,-74.507034,39.4186675,205 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2720_12,-74.4992685,39.336718,207 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_2720_13,-74.7135855,39.420228,209 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2720_14,-74.57387948,39.34418497,211 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2720_15,-74.68249825,39.44405056,213 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2720_16,-74.94300208,39.52977806,215 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2720_2,-74.53149052,39.39869865,212 FLATBUSH AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2720_3,-74.56437627,39.34490099,210 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2720_4,-74.56458094,39.51180135,208 FLATBUSH AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2720_5,-74.62309743,39.41729674,206 FLATBUSH AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2720_6,-74.536871,39.3792495,204 FLATBUSH AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2720_7,-74.63830616,39.55148552,202 FLATBUSH AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2720_8,-74.42785729,39.36861119,200 FLATBUSH AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2720_9,-74.69222785,39.59736225,201 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2721_1,-74.5141475,39.400016,102 FLATBUSH AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2721_1.01,-74.87853771,39.59284121,104 FLATBUSH AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2721_1.02,-74.51393328,39.39867108,106 FLATBUSH AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2721_1.03,-74.51305296,39.3983039,108 FLATBUSH AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2721_10,-74.5075475,39.33647,105 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2721_2,-74.9415795,39.518324,103 GLENN AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2721_3,-74.38964459,39.3889064,6045 WEST JERSEY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2721_4.01,-74.93135,39.4843605,101A GLENN AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2721_4.02,-74.66076909,39.54956643,101 GLENN AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2721_5,-74.58706896,39.37213236,6050 BALTIMORE AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2721_6,-74.55239346,39.36112017,6052 BALTIMORE AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2721_7,-74.641234,39.370594,6054 BALTIMORE AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3002 -0108_2721_8,-74.785496,39.593688,109 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2721_9,-74.43082526,39.36446686,107 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_1,-74.50932512,39.33831455,106 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_10,-74.50038316,39.33671512,201 PATERSON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_2722_11,-74.5907095,39.428889,203 PATERSON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2722_12,-74.48252566,39.35314892,205 PATERSON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2722_13,-74.404456,39.3875115,207 PATERSON AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3002 -0108_2722_14,-74.53365951,39.30520633,209 PATERSON AVENUE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_2722_15,-74.61637568,39.36642314,211 PATERSON AVENUE,EGG HARBOR TWP,16,1966,1,RES3A,3001 -0108_2722_16,-74.64277441,39.53651676,213 PATERSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2722_17,-74.5854445,39.376091,215 PATERSON AVENUE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2722_17.01,-74.619803,39.3812535,301 PATERSON AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2722_17.02,-74.51724165,39.38776354,303 PATERSON AVENUE,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_2722_17.03,-74.60655089,39.50355207,305 PATERSON AVENUE,EGG HARBOR TWP,16,2002,1,RES3B,3001 -0108_2722_18,-74.570622,39.477841,307 PATERSON AVENUE,EGG HARBOR TWP,16,1974,1,RES3A,3001 -0108_2722_19,-74.6389285,39.4489755,309 PATERSON AVENUE,EGG HARBOR TWP,16,1974,1,RES3A,3001 -0108_2722_2,-74.92915751,39.52030056,104 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_20,-74.54292705,39.39253817,311 PATERSON AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2722_21,-74.54710517,39.40303026,312 PATERSON AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_2722_22,-74.5223775,39.321404,316 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2722_23,-74.649194,39.532143,314 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2722_24,-74.511008,39.428999,312 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2722_25,-74.62422072,39.45815984,310 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2722_26,-74.6760345,39.5085205,308 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2722_27,-74.52473103,39.47263301,306 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_2722_28,-74.45361435,39.37207416,304 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_2722_29,-74.6698305,39.3796765,302 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_3,-74.73588196,39.62809384,102 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_2722_30,-74.51241918,39.40711209,300 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_2722_31,-74.549909,39.38227,218 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2722_32,-74.63008555,39.36243616,216 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_33,-74.48192453,39.33812931,214 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_34,-74.48198083,39.33694258,212 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_2722_35,-74.5880185,39.329041,210 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_36,-74.49690039,39.33165684,208 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2722_37,-74.49968942,39.33547884,206 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_38,-74.64012917,39.52214951,204 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_2722_39,-74.5940361,39.33303707,202 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_4,-74.5910755,39.355352,100 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2722_40,-74.65043114,39.48498169,200 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2722_41,-74.56774884,39.47687254,114 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_2722_42,-74.55995174,39.36378547,112 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_2722_43,-74.50884177,39.33578922,110 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_2722_44,-74.4972778,39.42528396,108 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_2722_5,-74.74332971,39.58887733,6051 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2722_6,-74.65678354,39.55793115,101 PATERSON AVENUE,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_2722_7,-74.401678,39.3918475,105 PATERSON AVENUE,EGG HARBOR TWP,16,1962,1,RES3A,3001 -0108_2722_8,-74.52561483,39.38600389,107 PATERSON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2722_9,-74.50872,39.405002,109 PATERSON AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2723_1,-74.60636833,39.34484805,50 ATLAS LANE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2723_10,-74.58274285,39.36460553,208 PATERSON AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2723_11,-74.578826,39.5743795,206 PATERSON AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2723_12,-74.55820275,39.39744705,204 PATERSON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2723_12.01,-74.5189655,39.3981065,202 PATERSON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2723_13,-74.4552065,39.353506,200 PATERSON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2723_14,-74.6372005,39.539739,110 PATERSON AVENUE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_2723_15,-74.4512295,39.3558235,106 PATERSON AVENUE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_2723_15.01,-74.55480184,39.37188393,108 PATERSON AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2723_16,-74.6485675,39.3552945,104 PATERSON AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2723_17,-74.50351419,39.41320556,102 PATERSON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2723_18,-74.94935,39.5170765,100 PATERSON AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_2723_19,-74.50012007,39.42415191,6053 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_2723_19.01,-74.4729009,39.4423462,98 PATERSON AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2723_2,-74.51305682,39.32060123,310 PATERSON AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2723_20,-74.7420115,39.4306515,99 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_2723_21,-74.57443441,39.34389721,101 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2723_22,-74.499383,39.331838,103 MARTIN L.KING AVE.,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2723_23,-74.5623735,39.357373,105 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2723_24,-74.685866,39.6316155,107 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2723_25,-74.577707,39.337852,109 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_2723_26,-74.7928105,39.647074,111 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2723_26.01,-74.49858339,39.46723082,201 MARTIN L.KING AVE.,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2723_26.02,-74.62217249,39.38364717,203 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1999,1,COM1,3002 -0108_2723_27,-74.48283016,39.35353191,205 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_2723_28,-74.55513772,39.36052093,207 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_2723_29,-74.92471035,39.5229201,209 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2723_3,-74.77701174,39.63060591,308 PATERSON AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_2723_30,-74.5068985,39.329694,211 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2723_31,-74.57235334,39.35742858,213 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2723_32,-74.60683904,39.34447586,301 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2723_33,-74.49971984,39.46709702,303 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_2723_34,-74.6515834,39.52447362,305 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2723_35,-74.55689584,39.47490668,307 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_2723_36,-74.5739589,39.42593945,309 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2723_37,-74.64788602,39.34383958,311 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2723_5,-74.3949505,39.3948955,304 PATERSON AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2723_6,-74.5446345,39.3783745,302 PATERSON AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_2723_7,-74.4615915,39.47029,300 PATERSON AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_2723_8,-74.83612554,39.62658634,212 PATERSON AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_2723_9,-74.5970655,39.3723795,210 PATERSON AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2724_1.01,-74.58255943,39.33019899,54 ATLAS LANE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2724_1.02,-74.74895247,39.451205,310 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2724_10,-74.49943996,39.50079316,206 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1970,1,COM10,3003 -0108_2724_11,-74.92761,39.5200725,204 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2724_12,-74.68379637,39.44088887,202 MARTIN L.KING AVE.,EGG HARBOR TWP,16,2011,1,COM1,3004 -0108_2724_13,-74.60601003,39.31590768,200 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2724_14,-74.49395911,39.52189586,108 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1974,1,COM1,3004 -0108_2724_16,-74.45862918,39.35124293,104 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2724_17,-74.53916848,39.39196534,102 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_2724_18,-74.580675,39.4297365,100 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2724_18.01,-74.473346,39.4467785,98 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2724_19,-74.66587083,39.42069868,6057 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2724_2,-74.49042679,39.3317738,308 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2724_20,-74.65792042,39.54797365,99 SYCAMORE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2724_21.01,-74.59903426,39.3686656,101 SYCAMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2724_21.02,-74.677311,39.3794365,103 SYCAMORE AVENUE,EGG HARBOR TWP,16,1999,1,COM4,3004 -0108_2724_22.01,-74.44187415,39.35498201,105 SYCAMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2724_22.02,-74.50529616,39.32936151,105A SYCAMORE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2724_23,-74.59355266,39.31325906,107 SYCAMORE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2724_25,-74.61471833,39.59692383,201 SYCAMORE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2724_26,-74.50449408,39.34158067,203 SYCAMORE AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_2724_27,-74.6309774,39.40741979,205 SYCAMORE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2724_28,-74.58790944,39.42774995,207 SYCAMORE AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_2724_29,-74.834584,39.48782,209 SYCAMORE AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3002 -0108_2724_3,-74.731424,39.455137,306 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_2724_30,-74.51880945,39.39655979,211 SYCAMORE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2724_31,-74.75619913,39.45305055,213 SYCAMORE AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2724_32,-74.85658864,39.56733007,301 SYCAMORE AVENUE,EGG HARBOR TWP,16,1978,1,COM4,3004 -0108_2724_33,-74.63765515,39.34191982,303 SYCAMORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2724_34,-74.7369225,39.450123,305 SYCAMORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2724_35,-74.69236284,39.49210497,307 SYCAMORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2724_35.01,-74.5387238,39.52468634,307A SYCAMORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2724_36,-74.52327997,39.40040816,309 SYCAMORE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_2724_37,-74.51651303,39.39418981,311 SYCAMORE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2724_38,-74.5433115,39.5260585,313 SYCAMORE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3002 -0108_2724_4,-74.5456075,39.476584,304 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2724_5,-74.54820908,39.47498734,302 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2724_6,-74.50696213,39.33111983,300 MARTIN L.KING AVE.,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_2724_7,-74.66648,39.568157,212 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2724_8,-74.5353075,39.386317,210 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2724_9,-74.5470043,39.46947146,208 MARTIN L.KING AVE.,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2726_1,-74.58919955,39.38010428,100 IRIS DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3002 -0108_2726_10,-74.487006,39.33749,116 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_11,-74.6027745,39.3296075,118 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_12,-74.44915824,39.49089068,120 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_13,-74.54004482,39.52588972,122 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_14,-74.43281431,39.36570105,124 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_15,-74.5311295,39.4453165,126 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_16,-74.522441,39.3151765,518 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2726_17,-74.48386967,39.5130095,520 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2726_18,-74.56832702,39.4133292,522 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_19,-74.80769459,39.31192278,524 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_2,-74.43719666,39.36736584,406 SYCAMORE AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_2726_22,-74.6784113,39.5508594,75 ATLAS LANE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2726_23,-74.5507386,39.37329414,73 ATLAS LANE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2726_24,-74.60003784,39.34155999,71 ATLAS LANE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2726_25,-74.547061,39.473417,69 ATLAS LANE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2726_26,-74.948658,39.5114025,218 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2726_27,-74.71920631,39.45087194,220 PEACH TREE LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2726_28,-74.7502747,39.45221642,222 PEACH TREE LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2726_29,-74.42819399,39.36879916,219 PEACH TREE LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2726_3,-74.790768,39.632267,102 IRIS DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_2726_30,-74.46890961,39.48916313,217 PEACH TREE LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2726_31,-74.37719078,39.41722058,400 SYCAMORE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2726_32,-74.57290292,39.41890796,402 SYCAMORE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2726_33,-74.55573184,39.3585644,404 SYCAMORE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2726_4,-74.51424,39.447586,104 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2726_5,-74.69093699,39.48207067,106 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2726_6,-74.50859442,39.43611386,108 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_7,-74.495125,39.434323,110 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_2726_8,-74.43982591,39.48698294,112 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2726_9,-74.55333159,39.40422509,114 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2728_1,-74.64250603,39.53845783,100 LOCUST AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2728_3.01,-74.8762155,39.5638935,102 LOCUST AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2728_3.02,-74.45400647,39.48965605,104 LOCUST AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2728_3.03,-74.67313,39.5419335,106 LOCUST AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2729_1,-74.4162555,39.36859,426 SYCAMORE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2729_2,-74.62561,39.529995,424 SYCAMORE AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2729_3,-74.554374,39.3603675,422 SYCAMORE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2729_4,-74.55494192,39.47398361,420 SYCAMORE AVENUE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_2729_5,-74.8486735,39.545264,103 LOCUST AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_2729_6,-74.611682,39.3912,105 LOCUST AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_2729_7,-74.64391849,39.53306433,107 LOCUST AVENUE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_2730_1,-74.8643345,39.6014225,434 SYCAMORE AVENUE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_2730_2,-74.62522403,39.41950282,432 SYCAMORE AVENUE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_2730_3,-74.564471,39.38965084,430 SYCAMORE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2730_4,-74.668445,39.415195,428 SYCAMORE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2730_5,-74.48625885,39.49619417,4079 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2730_6,-74.53186301,39.54393433,4083 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2730_7,-74.55038007,39.36441115,114 BIRCH AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_2730_8,-74.52344684,39.38246589,110 BIRCH AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2730_9,-74.6545395,39.5265725,106 BIRCH AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_2731_1,-74.6267645,39.435472,101 BIRCH AVENUE,EGG HARBOR TWP,16,1914,1,RES1,3001 -0108_2731_2,-74.7745895,39.613496,105 BIRCH AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_2731_2.01,-74.52175033,39.39425091,103 BIRCH AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2731_3,-74.64352185,39.3785665,107 BIRCH AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2733_1.01,-74.51220552,39.32786035,500 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2733_1.02,-74.85910166,39.43503116,502 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2733_1.03,-74.65892416,39.51141646,504 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2733_1.04,-74.5040125,39.4151395,506 DOGWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2733_1.05,-74.9364285,39.523707,508 DOGWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2733_1.06,-74.51957992,39.31934034,510 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2733_1.07,-74.6134589,39.34807473,512 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2733_1.08,-74.49403446,39.34121615,514 DOGWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2733_1.09,-74.51743414,39.39200665,516 DOGWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2733_1.10,-74.55638383,39.36678049,518 DOGWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2733_1.11,-74.502763,39.416388,520 DOGWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2733_1.12,-74.64868658,39.46848784,522 DOGWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2733_1.13,-74.867236,39.452808,4095 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2733_2.01,-74.97394925,39.50739822,440 SYCAMORE AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2733_2.02,-74.489225,39.521168,3 LENWOOD COURT,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_2733_2.03,-74.6230568,39.37886403,5 LENWOOD COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2733_2.04,-74.88166205,39.48658595,7 LENWOOD COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2733_2.05,-74.5705015,39.417454,9 LENWOOD COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2733_2.06,-74.559944,39.414984,11 LENWOOD COURT,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2733_2.07,-74.51383065,39.50453576,13 LENWOOD COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2733_2.08,-74.75790977,39.42950147,15 LENWOOD COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2733_2.09,-74.623536,39.4220645,17 LENWOOD COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2733_2.10,-74.517756,39.3902645,14 LENWOOD COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2733_2.11,-74.5284589,39.39874069,12 LENWOOD COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2733_2.12,-74.56892015,39.34286829,10 LENWOOD COURT,EGG HARBOR TWP,16,2002,1,RES3B,3001 -0108_2733_2.13,-74.81155271,39.37969148,8 LENWOOD COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2733_2.14,-74.84384465,39.48981272,6 LENWOOD COURT,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2733_2.15,-74.5235935,39.3996145,4 LENWOOD COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2733_2.16,-74.6291225,39.364277,2 LENWOOD COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2735_1,-74.6445335,39.469128,109 BIRCH AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_2735_2,-74.63802629,39.51785575,201 BIRCH AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2735_3,-74.45549516,39.49658824,113 BIRCH AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2735_5,-74.37959968,39.41443409,117 BIRCH AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2737_1,-74.54334887,39.39460007,109 LOCUST AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2737_2,-74.50431499,39.45679923,111 LOCUST AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2737_3,-74.723457,39.455723,113 LOCUST AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2737_4,-74.4926515,39.463036,115 LOCUST AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2737_5,-74.880912,39.5980575,117 LOCUST AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2738_1.01,-74.50352334,39.43607748,110 LOCUST AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2738_1.02,-74.4980065,39.470918,112 LOCUST AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2738_1.03,-74.50315282,39.32877403,114 LOCUST AVENUE,EGG HARBOR TWP,16,1999,1,AGR1,3001 -0108_2738_1.04,-74.59863802,39.31483283,116 LOCUST AVENUE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_2738_1.05,-74.60395667,39.32799454,116A LOCUST AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2739_1,-74.6767505,39.375731,121 IRIS DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2739_10,-74.78622748,39.67268734,103 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_11,-74.5276175,39.4290395,101 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_12,-74.68060849,39.55855333,500 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2739_13,-74.564499,39.4154705,502 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_14,-74.69091303,39.57424905,504 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2739_15,-74.61882979,39.37759238,506 GLENN AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2739_16,-74.48714538,39.33492385,508 GLENN AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2739_17,-74.55181324,39.35964281,510 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_18,-74.500309,39.5002415,512 GLENN AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_19,-74.80644135,39.62840846,123 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_3,-74.93870976,39.51077406,117 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_4,-74.87035344,39.59393268,115 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_5,-74.5903351,39.37020077,113 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2739_6,-74.50501406,39.40999082,111 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2739_7,-74.59391341,39.37922508,109 IRIS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2739_8,-74.550242,39.370961,107 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2739_9,-74.54528091,39.37254112,105 IRIS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2741_1.01,-74.75324302,39.65205118,118 LOCUST AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2741_1.02,-74.64008415,39.34316248,120 LOCUST AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2741_1.03,-74.68969684,39.41770001,122 LOCUST AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2741_1.04,-74.58472016,39.42071605,124 LOCUST AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2741_1.05,-74.7526355,39.453125,126 LOCUST AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2742_1,-74.613928,39.3211265,119 LOCUST AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2742_2,-74.56668738,39.47613919,121 LOCUST AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2742_4,-74.9322115,39.5202055,123 LOCUST AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2742_5,-74.790544,39.6367215,125 LOCUST AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2742_6,-74.4441685,39.4945875,4069 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1978,2,RES1,3001 -0108_2742_7,-74.72615366,39.58690223,4071 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1978,1,GOV1,3004 -0108_2743_1.01,-74.5039055,39.4748495,4075 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2743_1.02,-74.3692605,39.4156155,4073 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2744_1,-74.48617666,39.47831118,121 BIRCH AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_2744_2,-74.84563608,39.62195185,123 BIRCH AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2745_1.01,-74.43515209,39.36684718,4091 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2745_1.02,-74.5309005,39.40096083,4089 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2802_1.02,-74.74947278,39.60121015,102 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2802_1.03,-74.841262,39.415196,104 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2802_1.04,-74.9397735,39.5257785,106 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_2802_1.05,-74.3661297,39.40844826,108 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2802_1.06,-74.5962015,39.310813,110 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2802_1.08,-74.50950656,39.41313493,112 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2802_1.09,-74.79471421,39.36355933,114 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2802_1.10,-74.80626891,39.43305173,116 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_2802_1.11,-74.53256797,39.46617124,118 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2802_1.12,-74.5787647,39.47534503,120 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2802_1.13,-74.3793025,39.3994105,122 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2802_1.14,-74.47550457,39.48351314,124 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2802_1.15,-74.72563327,39.58778657,126 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2802_1.16,-74.50009932,39.42399217,128 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2802_1.17,-74.86225705,39.59619965,130 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2802_1.18,-74.50424577,39.49015968,132 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2802_1.19,-74.905176,39.539123,134 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_2802_1.20,-74.94969578,39.51358477,136 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2802_1.21,-74.54886065,39.40513446,138 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2802_1.22,-74.89399332,39.50063646,140 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2802_1.23,-74.651794,39.3472315,142 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2802_1.24,-74.50463155,39.45387782,144 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2802_1.25,-74.60808438,39.43702858,146 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2802_1.26,-74.49144764,39.33572685,148 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2802_1.27,-74.57532,39.390173,150 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2802_1.28,-74.6392195,39.399468,152 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,COM1,3004 -0108_2802_1.29,-74.48075578,39.35243766,154 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2802_1.30,-74.7784265,39.592666,156 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_2802_1.31,-74.63164042,39.39984803,158 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2802_1.32,-74.52136434,39.31640305,160 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2802_1.33,-74.55493302,39.35781982,162 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2802_1.34,-74.4829245,39.352219,164 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2802_10,-74.8825425,39.4971755,117 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2802_11,-74.592786,39.4337425,115 PENNINGTON AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2802_12,-74.46402942,39.35599385,113 PENNINGTON AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2802_13,-74.54930821,39.50417585,111 PENNINGTON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2802_2,-74.43214139,39.36203431,135 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2802_20,-74.55436117,39.36109699,109 PENNINGTON AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2802_21,-74.652296,39.5259945,121 PENNINGTON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2802_22,-74.6347195,39.527772,129 PENNINGTON AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2802_23,-74.57521066,39.33775424,131 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2802_3,-74.79289467,39.66413141,133 PENNINGTON AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2802_4,-74.492598,39.432034,127 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2802_8,-74.513155,39.4112875,123 PENNINGTON AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2803_22,-74.92080054,39.49015073,118 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2803_3,-74.521881,39.4464845,120 PENNINGTON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2803_5,-74.568208,39.3513445,114 PENNINGTON AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2803_6,-74.6028385,39.3735575,112 PENNINGTON AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_2803_7,-74.7914775,39.64209429,110 PENNINGTON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2803_8,-74.837702,39.4177755,108 PENNINGTON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2807_1,-74.65990838,39.34922746,136 ROBERTA AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2807_10,-74.54596328,39.37015906,6060 REEGA AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2807_11,-74.80556157,39.63363164,6058 REEGA AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_2807_2,-74.49586914,39.42611131,134 ROBERTA AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2807_4,-74.51806594,39.32210614,130 ROBERTA AVENUE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_2808_1,-74.49702298,39.33348316,136 MARK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2808_1.01,-74.4286356,39.37067018,6054 REEGA AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2808_10,-74.9609928,39.51196421,118 MARK AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2808_2,-74.62752159,39.38429561,134 MARK AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2808_20,-74.82504415,39.56777923,131 ROBERTA AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2808_21,-74.81493634,39.64746245,133 ROBERTA AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_2808_22,-74.537437,39.384259,135 ROBERTA AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2808_3,-74.53782133,39.39289466,132 MARK AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2808_4,-74.70190144,39.57291128,130 MARK AVENUE,EGG HARBOR TWP,16,1957,1,GOV1,3004 -0108_2808_5,-74.58697018,39.35467591,128 MARK AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2808_6,-74.55290935,39.3918073,126 MARK AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2808_7,-74.61234138,39.52837313,124 MARK AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2808_9,-74.50346465,39.32765709,120 MARK AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_1,-74.59899836,39.31737617,138 BERNARD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2809_11,-74.9275115,39.508072,119 MARK AVENUE,EGG HARBOR TWP,16,1957,1,GOV1,3004 -0108_2809_12,-74.93940139,39.54640124,121 MARK AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2809_13,-74.48893348,39.44446574,123 MARK AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_14,-74.60666781,39.32696032,125 MARK AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3004 -0108_2809_15,-74.37503198,39.40154166,127 MARK AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_2809_16,-74.88341793,39.59562531,129 MARK AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_2809_17,-74.57495049,39.36566486,131 MARK AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_18,-74.35914566,39.41135951,133 MARK AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3004 -0108_2809_19,-74.57232656,39.37773104,135 MARK AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_2809_2,-74.49802597,39.33451483,136 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_3,-74.599024,39.3677025,134 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_4,-74.49121883,39.431525,132 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_5,-74.78351467,39.643056,130 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_6,-74.63528371,39.42940854,128 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_7,-74.9273844,39.52020564,126 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_8,-74.87236141,39.52783936,124 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2809_9,-74.63112011,39.44568798,122 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2810_1,-74.586369,39.4230725,6044 REEGA AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2810_10,-74.663366,39.4002525,123 BERNARD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2810_11,-74.6344945,39.5271565,125 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,COM1,3004 -0108_2810_12,-74.5105895,39.4355305,127 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2810_13,-74.59609363,39.31148126,129 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,GOV1,3004 -0108_2810_14,-74.56734306,39.35056957,131 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2810_15,-74.79660714,39.63381431,133 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2810_16,-74.56548858,39.4108032,135 BERNARD AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2810_4,-74.53422867,39.39948257,122 LEO AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2810_7,-74.939922,39.5152555,116 LEO AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2810_9,-74.59890237,39.31489384,121 BERNARD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2811_1,-74.53897004,39.53786934,136 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2811_10,-74.3696435,39.4106385,131 LEO AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2811_11,-74.63646153,39.37061697,133 LEO AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2811_12,-74.78525594,39.63599636,135 LEO AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2811_13,-74.60537257,39.38221077,6042 REEGA AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2811_14,-74.58274967,39.42230221,127 LEO AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2811_2,-74.7138185,39.468612,134 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2811_3,-74.57065921,39.34011553,132 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2811_4,-74.5404504,39.45850271,130 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2811_5,-74.6367325,39.3628805,128 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2811_6,-74.501641,39.4433005,126 PENNINGTON AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2811_9,-74.4696925,39.342908,129 LEO AVENUE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2812_1,-74.38551234,39.39776253,101 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2812_10,-74.51704256,39.32453836,15 CARLTON COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2812_11,-74.53695084,39.3039919,105 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2812_12,-74.58649968,39.32034904,107 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2812_14,-74.467344,39.346588,1 FAIRFAX ROAD,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2812_15,-74.55670859,39.39680025,3 FAIRFAX ROAD,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_2812_16,-74.69459612,39.448131,5 FAIRFAX ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2812_17,-74.52512896,39.31547459,7 FAIRFAX ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2812_18,-74.60144667,39.38034246,9 FAIRFAX ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2812_19,-74.88642854,39.50657072,11 FAIRFAX ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2812_2,-74.5120415,39.4841475,103 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2812_20,-74.559358,39.476365,13 FAIRFAX ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2812_21,-74.43561183,39.37035151,15 FAIRFAX ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_2812_22,-74.57257836,39.34511752,17 FAIRFAX ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2812_23,-74.56715816,39.47488948,19 FAIRFAX ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2812_24,-74.448038,39.3727425,21 FAIRFAX ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2812_3,-74.56996915,39.36549456,1 CARLTON COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2812_4,-74.51291332,39.44875461,3 CARLTON COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2812_5,-74.67197468,39.61671487,5 CARLTON COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2812_6,-74.44204078,39.36949538,7 CARLTON COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2812_7,-74.49581338,39.32850019,9 CARLTON COURT,EGG HARBOR TWP,16,2011,1,RES3A,3001 -0108_2812_8,-74.728586,39.453952,11 CARLTON COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2812_9,-74.40167575,39.39082607,13 CARLTON COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2813_1,-74.62441315,39.41822985,4 FAIRFAX ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2813_10,-74.5195845,39.390249,216 WESTGATE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2813_11,-74.5581105,39.3968985,218 WESTGATE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2813_12,-74.56801233,39.35427383,220 WESTGATE ROAD,EGG HARBOR TWP,16,2011,1,GOV1,3004 -0108_2813_13,-74.49037908,39.33626451,139 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2813_14,-74.92563491,39.52526206,137 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2813_15,-74.75552202,39.59771633,135 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2813_16,-74.49290941,39.52145516,133 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2813_17,-74.52283169,39.4093263,131 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2813_18,-74.554597,39.475361,129 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2813_19,-74.7669192,39.61074516,127 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2813_2,-74.518125,39.3904045,200 WESTGATE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2813_20,-74.4965355,39.430658,125 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2813_21,-74.73625,39.447743,123 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2813_22,-74.5937465,39.516331,121 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2813_23,-74.37636556,39.40046867,119 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2813_24,-74.4439135,39.3551355,117 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2813_25,-74.6797275,39.4948595,115 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2813_26,-74.59878857,39.38013753,113 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2813_27,-74.4519935,39.4930655,111 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2813_28,-74.5000186,39.32884416,109 BRIARCLIFF DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2813_29,-74.536209,39.3809225,2 FAIRFAX ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2813_3,-74.61478032,39.39350493,202 WESTGATE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2813_4,-74.5078345,39.326758,204 WESTGATE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2813_5,-74.40222067,39.38863605,206 WESTGATE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2813_6,-74.59753724,39.40510641,208 WESTGATE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2813_7,-74.55146433,39.36212649,210 WESTGATE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2813_8,-74.43652623,39.36844387,212 WESTGATE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2813_9,-74.92408221,39.53345404,214 WESTGATE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2814_1,-74.632165,39.540114,6 FAIRFAX ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2814_10,-74.48880981,39.46220879,217 WESTGATE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2814_11,-74.446351,39.372034,219 WESTGATE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2814_12,-74.62269138,39.37529069,221 WESTGATE ROAD,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_2814_13,-74.84002367,39.479436,223 WESTGATE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_2814_2,-74.64513724,39.39038105,201 WESTGATE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2814_3,-74.69410726,39.51613794,203 WESTGATE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2814_4,-74.694091,39.449026,205 WESTGATE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_2814_5,-74.75669144,39.43209076,207 WESTGATE ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2814_6,-74.8141215,39.526445,209 WESTGATE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2814_7,-74.68343528,39.49848873,211 WESTGATE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2814_8,-74.5050265,39.3378775,213 WESTGATE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2814_9,-74.8994086,39.47973228,215 WESTGATE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_2901_6,-74.63435709,39.42240933,108 DOGWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2901_7,-74.55637335,39.38609076,104 DOGWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2902_1,-74.63609484,39.34300697,25 ALDER AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2902_23,-74.50335567,39.33393343,15 ATLAS LANE ROAD,EGG HARBOR TWP,16,1985,1,REL1,3004 -0108_2902_24,-74.61816433,39.4383035,19 ATLAS LANE ROAD,EGG HARBOR TWP,16,2004,1,COM3,3004 -0108_2902_24.01,-74.44385356,39.35852119,17 ATLAS LANE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_2902_25,-74.5993795,39.3143465,21 ATLAS LANE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2902_25.01,-74.6078855,39.5919505,23 ATLAS LANE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2902_26,-74.62006486,39.43767041,25 ATLAS LANE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_2902_27,-74.45387853,39.49086775,27 ATLAS LANE ROAD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_2902_3,-74.365881,39.4119005,218 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2902_33,-74.515722,39.411321,2 ALDER AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_2902_35,-74.50775767,39.40506809,7 WINNEPEG AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_2902_4,-74.72850681,39.45698792,216 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2902_42.01,-74.62482768,39.43410455,301 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.02,-74.50703184,39.43667001,303 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2902_42.03,-74.53704724,39.39281301,305 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.04,-74.56608199,39.35461634,307 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.05,-74.603265,39.315139,309 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2902_42.06,-74.80979,39.6322965,311 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.07,-74.5132165,39.4645275,313 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2902_42.08,-74.78331041,39.63197511,315 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.09,-74.5887085,39.3214985,317 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2902_42.11,-74.64912644,39.53272916,321 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.12,-74.60517022,39.48994808,323 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2902_42.13,-74.51110625,39.4649218,325 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2902_42.14,-74.79755503,39.63400682,327 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.15,-74.48639698,39.35032483,329 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.16,-74.626693,39.419157,331 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2902_42.17,-74.500115,39.4880825,333 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_2902_5,-74.48402376,39.33470515,200 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2903_1,-74.8170455,39.6345485,215 CATES ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2903_11,-74.61249907,39.4200862,109 CATES ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2903_12,-74.7610735,39.429958,111 CATES ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2903_5,-74.817604,39.648967,6007 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_2905_1,-74.493343,39.4313855,110 CATES ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2905_11,-74.6430365,39.430619,113 BOOKER AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2905_12,-74.5351805,39.386254,115 BOOKER AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_2905_13,-74.80627329,39.6324233,117 BOOKER AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2905_14,-74.6428055,39.5324865,119 BOOKER AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_2905_2,-74.371198,39.406661,108 CATES ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2905_3,-74.569172,39.4118625,106 CATES ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2905_4,-74.7944825,39.6326815,104 CATES ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2905_6,-74.80930238,39.63272113,102 CATES ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2905_7,-74.63145455,39.36589369,100 CATES ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2905_8,-74.63326491,39.37036889,6015 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2905_9.01,-74.640017,39.3477585,105 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2906_1,-74.5555115,39.426893,114 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2906_2,-74.73087341,39.45361227,112 BOOKER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2906_4,-74.80508884,39.63234853,106 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2906_5,-74.95055327,39.53446489,102 BOOKER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2906_6,-74.81496667,39.63951838,6019 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_2906_7,-74.60201731,39.32116946,6023 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2907_12,-74.6067385,39.3240415,113 CARVER AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_2907_14,-74.4905295,39.331905,119 CARVER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2907_15,-74.47298797,39.34330914,121 CARVER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2907_7,-74.63792743,39.34044636,6027 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_2907_8,-74.62769204,39.42199181,6031 WEST JERSEY AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_2907_9,-74.63392248,39.43225759,105 CARVER AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_2908_10,-74.48715382,39.35195238,209 CARVER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2908_11,-74.59438472,39.36181701,215 CARVER AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_2908_13,-74.6062185,39.360921,221 CARVER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2908_14,-74.515437,39.4312885,227 CARVER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2908_9,-74.6380155,39.3658675,205 CARVER AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_2909_1,-74.40146685,39.38982378,214 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2909_2,-74.4910213,39.49512452,212 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2909_3,-74.6944358,39.51040902,210 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,IND2,3002 -0108_2909_4,-74.50423816,39.33108752,208 BOOKER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2909_6,-74.50994307,39.32512163,206 BOOKER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2909_7,-74.5064136,39.45317238,202 BOOKER AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_2909_8,-74.54038457,39.46972828,200 BOOKER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2910_11,-74.52165135,39.46294895,203 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2910_13,-74.521978,39.4245035,205 BOOKER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2910_15,-74.3682935,39.410277,207 BOOKER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2910_16,-74.586773,39.355542,211 BOOKER AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_2910_18,-74.6321975,39.3635275,215 BOOKER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2910_2,-74.71603177,39.41401251,213 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2910_9,-74.51173,39.3269385,201 BOOKER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2911_7,-74.63597739,39.42812014,114 CATES ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2911_7.01,-74.5864045,39.3817125,112 CATES ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2913_2,-74.9244395,39.503686,6 ATLAS LANE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_2916_1,-74.92855306,39.50878299,18 ATLAS LANE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2916_10,-74.54185667,39.38512149,301 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2916_11,-74.50285606,39.43449774,305 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2916_12,-74.58412968,39.33968602,311 BOOKER AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_2916_13,-74.49801866,39.33293901,313 BOOKER AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_2916_15,-74.75673823,39.44551295,317 BOOKER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2916_17,-74.46526294,39.49639579,319 BOOKER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2916_3,-74.69998116,39.48709404,315 BOOKER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2916_6,-74.59492287,39.42058655,307 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2917_1,-74.76492553,39.63697016,318 BOOKER AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_2917_16,-74.92337097,39.51313709,26 ATLAS LANE ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2917_2,-74.5041905,39.3318665,316 BOOKER AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2917_3,-74.53530757,39.30647595,314 BOOKER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2917_5,-74.57570245,39.34999366,310 BOOKER AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_2917_6,-74.50716317,39.4610126,306 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2917_7,-74.50805618,39.32703095,304 BOOKER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2917_8,-74.46650146,39.34645866,300 BOOKER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2918_1,-74.58296266,39.43173027,28 ATLAS LANE ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2918_10,-74.6282145,39.419969,307 CARVER AVENUE,EGG HARBOR TWP,16,1930,1,GOV1,3004 -0108_2918_11,-74.49128966,39.53434394,309 CARVER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_2918_15,-74.811782,39.6506165,325 CARVER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_2918_8.01,-74.5224965,39.3229745,301 CARVER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2918_9,-74.8461065,39.4058245,303 CARVER AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_2923_1,-74.4982503,39.49770775,300 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2923_10,-74.61864988,39.43043176,318 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_2923_11,-74.56239431,39.36397146,320 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2923_12,-74.6487149,39.52923034,322 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_2923_13,-74.4916535,39.333308,324 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2923_2,-74.48051002,39.35219467,302 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_2923_3,-74.37789879,39.40162719,304 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2923_4,-74.501222,39.408982,306 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2923_5,-74.62131877,39.51282922,308 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2923_6,-74.50758861,39.46175009,310 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2923_7,-74.65965747,39.36869933,312 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2923_8,-74.59670038,39.31654565,314 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_2923_9,-74.68272,39.3889035,316 BLOSSOM CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_2928_1,-74.81603149,39.62361317,316 DOGWOOD AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_2928_3,-74.52200037,39.32048619,318 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_2928_4,-74.37621238,39.3978416,320 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2928_5,-74.65295867,39.51367565,322 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_2930_1,-74.95311106,39.52035476,308 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2930_2,-74.59496869,39.41537952,310 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2930_4,-74.5485805,39.5272685,314 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_2931_1,-74.51394917,39.32559447,304 DOGWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2931_2,-74.49149749,39.33206933,306 DOGWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_2932_1,-74.78745319,39.64400402,300 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2932_2,-74.81453707,39.62705755,302 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2933_1,-74.658174,39.416339,224 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2933_2,-74.7915985,39.634938,226 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2934_1,-74.5930815,39.3676965,220 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_2934_2,-74.58951,39.3217095,222 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_3002_10,-74.78018386,39.52063925,1050 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_3002_11,-74.4975635,39.4410185,1048 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_3002_15,-74.66672703,39.50924816,1032 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3003_1,-74.468084,39.3426515,101 DOGWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3003_10,-74.795456,39.6638895,127 PINE AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_3003_11,-74.60892267,39.31891652,129 PINE AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_3003_12,-74.9253575,39.5067125,131 PINE AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_3003_13,-74.80870884,39.63320952,133 PINE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_3003_14,-74.57111558,39.34105482,139 PINE AVENUE,EGG HARBOR TWP,16,1924,1,RES1,3001 -0108_3003_15,-74.794678,39.6306885,141 PINE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_3003_17,-74.49455257,39.32961818,147 PINE AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_3003_2,-74.55997166,39.35855902,103 PINE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3003_4,-74.78295141,39.64312057,111 PINE AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_3003_5,-74.56988471,39.36239539,113 PINE AVENUE,EGG HARBOR TWP,,1940,1,RES1,3001 -0108_3003_6,-74.66422908,39.46226126,117 PINE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_3003_7,-74.584356,39.364127,119 PINE AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_3003_8,-74.49928053,39.33632043,121 PINE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3003_9,-74.66080719,39.63687786,125 PINE AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_3004_10,-74.6671165,39.567865,175 PINE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3004_11,-74.64396888,39.50313489,179 PINE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_3004_13,-74.50274637,39.48935983,183 PINE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3004_16,-74.578214,39.354083,1084 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3004_17,-74.55518633,39.36910854,1082 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_3004_18,-74.94026927,39.5168444,1080 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3004_19,-74.63192764,39.42121376,1078 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_3004_2,-74.640978,39.5307655,153 PINE AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_3004_21,-74.6828165,39.37660816,1074 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_3004_22,-74.7724306,39.31676519,1072 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_3004_23,-74.586199,39.523643,1070 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3004_24,-74.485313,39.3399195,1068 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3004_25,-74.51280314,39.41549681,1066 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3004_3,-74.95509042,39.52750278,155 PINE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3004_4,-74.50550659,39.43118219,157 PINE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3004_5,-74.46906009,39.45856719,163 PINE AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3004_6,-74.81095416,39.63894969,165 PINE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3004_9,-74.52724797,39.45506073,171 PINE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_301_1,-74.8750085,39.59187,6401 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_301_2,-74.866965,39.546605,6415 DELILAH ROAD,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_301_3,-74.5708835,39.473225,2501 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_301_9,-74.55947884,39.42172565,6409 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_306_1,-74.60035645,39.42923169,2531 TILTON ROAD,EGG HARBOR TWP,,1986,1,RES1,3001 -0108_310_14,-74.5662982,39.35753268,2534 TILTON ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_310_2,-74.60700916,39.50213455,2528 TILTON ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_310_3,-74.50599239,39.49340426,6515 DELILAH ROAD,EGG HARBOR TWP,16,1940,2,RES1,3001 -0108_3101_10,-74.49013433,39.339012,5 NEWALL AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3101_11,-74.497372,39.3318865,3 NEWALL AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_3101_12,-74.52879909,39.38852088,1 NEWALL AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3101_13,-74.4518485,39.498832,161 ALDER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3101_16,-74.59583526,39.34119593,167 ALDER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3101_17,-74.5827915,39.4314955,169 ALDER AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3101_18.01,-74.63706565,39.52809156,173 ALDER AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_3101_18.02,-74.53522286,39.30393733,171 ALDER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3101_19,-74.433861,39.36089,175 ALDER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3101_2,-74.49112608,39.42307097,164 PINE AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_3101_20,-74.51268457,39.49001215,177 ALDER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3101_21,-74.64353,39.3831875,181 ALDER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3101_22,-74.5387725,39.383429,185 ALDER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3101_23,-74.528721,39.398068,189 ALDER AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3101_26,-74.54621567,39.38248296,1106 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3101_27,-74.539351,39.4695795,1104 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_3101_28,-74.72470245,39.44707787,1102 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3101_29,-74.68195353,39.4436149,1100 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3101_3,-74.60868972,39.34329964,162 PINE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_3101_30,-74.51071415,39.32269846,1098 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3101_31,-74.76886545,39.63580704,1096 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3101_32,-74.72920047,39.58791382,1094 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3101_33.01,-74.593113,39.49109367,1090 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3101_4,-74.60358489,39.31571828,158 PINE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_3101_5,-74.638486,39.5342555,154 PINE AVENUE,EGG HARBOR TWP,15,1925,2,RES1,3001 -0108_3101_6,-74.6430575,39.5237065,13 NEWALL AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3101_7,-74.72602169,39.46054944,11 NEWALL AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3101_8,-74.73023833,39.68781949,9 NEWALL AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3101_9,-74.55186362,39.36346395,7 NEWALL AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_3102_1,-74.539971,39.3806195,14 NEWALL AVENUE,EGG HARBOR TWP,16,1993,1,COM1,3004 -0108_3102_11,-74.88384582,39.59584655,155 ALDER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3102_12,-74.81243217,39.6402435,157 ALDER AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3102_13,-74.65014829,39.53350408,2 NEWALL AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3102_14,-74.3958355,39.388971,4 NEWALL AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3004 -0108_3102_16,-74.57378839,39.42931114,8 NEWALL AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_3102_17,-74.638014,39.4003885,10 NEWALL AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_3102_3,-74.47156403,39.49252077,209 FRUITWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3102_5,-74.79584,39.6195265,213 FRUITWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3102_6,-74.7673947,39.31176686,215 FRUITWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3102_8,-74.53755689,39.38254104,219 FRUITWOOD AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_3103_1,-74.450998,39.3571455,150 PINE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3103_10,-74.4918497,39.43010204,120 PINE AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_3103_11,-74.688966,39.573049,118 PINE AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_3103_12,-74.46396281,39.53328609,116 PINE AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3103_13,-74.52267744,39.32036773,114 PINE AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_3103_14,-74.6289685,39.4612505,112 PINE AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3103_15,-74.490692,39.5263255,110 PINE AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_3103_16,-74.5748105,39.4266385,108 PINE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3103_16.01,-74.600994,39.325615,106 PINE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_3103_17,-74.50725,39.3253395,102 PINE AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_3103_18,-74.68006534,39.49613993,209 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3103_19,-74.71617586,39.64001419,211 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3103_2,-74.505859,39.33249282,148 PINE AVENUE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_3103_20,-74.649196,39.4483395,215 DOGWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3103_21,-74.56045028,39.41305487,217 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3103_22,-74.4963465,39.433764,219 DOGWOOD AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_3103_23,-74.9406454,39.52876779,223 DOGWOOD AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_3103_24,-74.49568174,39.33488415,227 DOGWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3103_25,-74.49282636,39.33383997,229 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3103_26,-74.6215284,39.51116413,101 ALDER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3103_27,-74.387117,39.391576,103 ALDER AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_3103_28,-74.508027,39.4554445,105 ALDER AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_3103_29,-74.62968653,39.39179767,107 ALDER AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_3103_3,-74.466231,39.345219,144 PINE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3103_30,-74.52240278,39.4003342,109 ALDER AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_3103_31,-74.51564047,39.32768633,111 ALDER AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3103_32,-74.48290198,39.34549246,113 ALDER AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_3103_33,-74.4626485,39.493955,115 ALDER AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_3103_34,-74.541512,39.375833,121 ALDER AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_3103_35.01,-74.50850251,39.32939264,123 ALDER AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3103_35.02,-74.5015825,39.328048,123A ALDER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3103_36.01,-74.49065875,39.43007498,127 ALDER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3103_36.02,-74.63667718,39.36105351,129 ALDER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3103_37,-74.47997097,39.35073682,133 ALDER AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3103_38,-74.50480688,39.33464684,135 ALDER AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3103_39,-74.48257098,39.33573592,137 ALDER AVENUE,EGG HARBOR TWP,16,1988,2,RES1,3001 -0108_3103_4,-74.75881282,39.44516552,140 PINE AVENUE,EGG HARBOR TWP,16,1973,2,RES1,3001 -0108_3103_40,-74.80892698,39.62879263,139 ALDER AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3103_41,-74.63096565,39.44071728,143 ALDER AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_3103_42,-74.50216033,39.442099,147 ALDER AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3103_43,-74.5081575,39.338825,220 FRUITWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3103_46,-74.56285409,39.3719027,214 FRUITWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3103_48,-74.6107425,39.36651563,210 FRUITWOOD AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3103_49,-74.80441301,39.63548917,208 FRUITWOOD AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_3103_6,-74.80927681,39.63061017,132 PINE AVENUE,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_3103_7,-74.5823673,39.41438647,130 PINE AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3103_8,-74.8293605,39.492728,128 PINE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_3103_9,-74.3757445,39.399815,124 PINE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3104_11,-74.46766884,39.34400399,150 ALDER AVENUE,EGG HARBOR TWP,16,1949,1,RES1,3001 -0108_3104_12,-74.613113,39.435258,148 ALDER AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3104_13,-74.48953982,39.46722342,146 ALDER AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3104_16,-74.8628315,39.6197255,142 ALDER AVENUE,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_3104_17,-74.582675,39.4004515,138 ALDER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3104_18,-74.540641,39.4578835,136 ALDER AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_3104_19,-74.76380579,39.63371108,134 ALDER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3104_20,-74.51444,39.4675255,132 ALDER AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3104_21,-74.39271553,39.39101527,128 ALDER AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_3104_22,-74.71609716,39.56162878,124 ALDER AVENUE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_3104_23.01,-74.42670371,39.36691885,122 ALDER AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3104_23.02,-74.79272932,39.64430567,120 ALDER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3104_24,-74.36486745,39.42070382,118 ALDER AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3104_25,-74.5502838,39.36024499,116 ALDER AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_3104_26,-74.510376,39.43215,114 ALDER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_3104_27,-74.50819797,39.33618433,110 ALDER AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_3104_28,-74.688329,39.358679,106 ALDER AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_3104_28.01,-74.51710783,39.31932149,108 ALDER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3104_28.02,-74.48981915,39.33604902,104 ALDER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3104_29.01,-74.51483366,39.39805099,301 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_3104_29.02,-74.65675963,39.55513286,303 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3104_29.03,-74.589368,39.430114,305 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3104_29.04,-74.655259,39.526626,307 DOGWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3104_29.06,-74.75591567,39.43188163,311 DOGWOOD AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_3104_29.07,-74.63594314,39.41284642,313 DOGWOOD AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_3104_29.08,-74.49987617,39.32714661,313A DOGWOOD AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3104_30.02,-74.507877,39.32613,315A DOGWOOD AVENUE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3104_31,-74.40557201,39.39357117,317 DOGWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3104_32,-74.51416766,39.32295452,319 DOGWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3104_33,-74.64681206,39.43446369,321 DOGWOOD AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_3104_34,-74.648248,39.417191,323 DOGWOOD AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_3104_35,-74.55234329,39.46983647,101 WINNEPEG AVENUE,EGG HARBOR TWP,16,2005,1,COM2,3004 -0108_3104_36,-74.71579857,39.58121551,105 WINNEPEG AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3104_37,-74.83792654,39.48350806,107 WINNEPEG AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_3104_38,-74.54721555,39.47699959,109 WINNEPEG AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3104_39,-74.60319902,39.30743155,111 WINNEPEG AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3104_40,-74.81328016,39.66271252,115 WINNEPEG AVENUE,EGG HARBOR TWP,16,1985,1,RES3A,3001 -0108_3104_42,-74.7827995,39.64257,121 WINNEPEG AVENUE,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_3104_44,-74.57094394,39.34852618,143 WINNEPEG AVENUE,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_3104_45,-74.48579284,39.46066775,145 WINNEPEG AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_3104_46,-74.4517198,39.48840499,147 WINNEPEG AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_3104_47.01,-74.4933896,39.33511966,155 WINNEPEG AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_3104_47.02,-74.50182017,39.42548998,153 WINNEPEG AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_3104_47.03,-74.56491033,39.47094749,151 WINNEPEG AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_3104_48,-74.511769,39.4418175,2 FAITH DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_3104_48.01,-74.60550177,39.34358574,4 FAITH DRIVE,EGG HARBOR TWP,16,2005,1,COM4,3004 -0108_3104_48.02,-74.62889365,39.60650482,6 FAITH DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3104_48.03,-74.696434,39.5899265,8 FAITH DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3104_48.04,-74.5116165,39.325876,10 FAITH DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_3104_48.05,-74.5400845,39.539272,12 FAITH DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3105_1,-74.52446089,39.31646469,176 ALDER AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3105_10,-74.52155141,39.39649164,154 ALDER AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_3105_2,-74.61614293,39.45842614,172 ALDER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3105_3,-74.76664973,39.34838718,170 ALDER AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_3105_4,-74.61237793,39.32619316,168 ALDER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_3105_48.08,-74.5820145,39.3435145,3 FAITH DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_3105_48.09,-74.6033258,39.32262327,1 FAITH DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3105_49,-74.66660068,39.46305555,163 WINNEPEG AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3105_5,-74.37280524,39.40789816,166 ALDER AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3105_50,-74.781788,39.59961,169 WINNEPEG AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3105_51,-74.4106545,39.383544,173 WINNEPEG AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3105_52,-74.92913017,39.50729858,175 WINNEPEG AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3105_53,-74.49353276,39.3335044,177 WINNEPEG AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_3105_54,-74.77256095,39.6320202,179 WINNEPEG AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_3105_55,-74.46883037,39.34209534,183 WINNEPEG AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3105_56,-74.625137,39.393854,187 WINNEPEG AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3105_57,-74.638561,39.402381,189 WINNEPEG AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_3105_58,-74.48306796,39.34612993,191 WINNEPEG AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_3105_59,-74.60945538,39.32107,193 WINNEPEG AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_3105_6,-74.49739,39.432611,164 ALDER AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_3105_60,-74.533156,39.3874075,1150 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3105_61,-74.64281124,39.46261676,1148 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1954,1,GOV1,3004 -0108_3105_62,-74.7651485,39.613527,1146 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3105_63,-74.62412878,39.42437669,1144 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3105_64,-74.496273,39.332345,1140 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3105_65,-74.5029705,39.333308,1138 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3105_66,-74.5871335,39.3217735,1136 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_3105_67,-74.371718,39.4004115,1134 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3105_68,-74.82407506,39.57104726,1132 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_3105_69,-74.58226477,39.3411234,1130 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3105_69.01,-74.79188902,39.64104283,1128 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3105_7,-74.572493,39.3421,162 ALDER AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_3105_70,-74.5816025,39.4138605,1124 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3105_71,-74.37328571,39.41560533,188 ALDER AVENUE,EGG HARBOR TWP,16,1993,1,GOV1,3004 -0108_3105_72,-74.38386,39.393571,184 ALDER AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3105_73,-74.58956098,39.33642829,180 ALDER AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3105_8,-74.55677166,39.39015967,160 ALDER AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_3105_9,-74.503182,39.3370385,158 ALDER AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_311_1,-74.52388058,39.39895432,103 CHESTNUT AVENUE,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_311_2,-74.805374,39.5220865,101 CHESTNUT AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_3201_1,-74.59525955,39.42735758,1154 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_3201_10,-74.62823134,39.34950752,176 WINNEPEG AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3201_11.01,-74.597819,39.345264,174 WINNEPEG AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_3201_11.02,-74.97029462,39.51867365,170 WINNEPEG AVENUE,EGG HARBOR TWP,16,1910,2,RES1,3001 -0108_3201_11.03,-74.590162,39.318764,166 WINNEPEG AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_3201_11.04,-74.6505185,39.484048,164 WINNEPEG AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3201_13,-74.60271547,39.32028518,162 WINNEPEG AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3201_16,-74.45200867,39.37242385,118 WINNEPEG AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_3201_17,-74.63689662,39.44481775,114 WINNEPEG AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_3201_19,-74.81875137,39.64320881,112 WINNEPEG AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3201_2,-74.61810435,39.31379572,194 WINNEPEG AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_3201_20,-74.58024278,39.36025351,110 WINNEPEG AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_3201_21,-74.50746251,39.43792452,108 WINNEPEG AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3201_23,-74.8715239,39.60256818,102 WINNEPEG AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_3201_25,-74.4906185,39.4560785,401 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3201_26,-74.366962,39.413487,403 DOGWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3201_27,-74.723892,39.587833,405 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3201_27.01,-74.53184967,39.37961133,407 DOGWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3201_29.01,-74.60562169,39.35660808,409 DOGWOOD AVENUE,EGG HARBOR TWP,16,2006,1,IND2,3002 -0108_3201_3,-74.49619672,39.52139075,190 WINNEPEG AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_3201_31,-74.596849,39.3186805,413 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3201_32,-74.3689535,39.410696,415 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3201_36,-74.82987045,39.37976285,5011 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3201_4,-74.80594074,39.52807239,188 WINNEPEG AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_3201_47,-74.66946913,39.56194132,5023 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_3201_5,-74.461733,39.356544,186 WINNEPEG AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3201_50,-74.4864125,39.347705,5045 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3201_52,-74.56184791,39.38777535,5043 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3201_6,-74.5971922,39.52320939,184 WINNEPEG AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3201_7,-74.527708,39.3815255,182 WINNEPEG AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3201_78,-74.51565644,39.46269134,101 VIRGINIA AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_3201_79,-74.637573,39.4017965,103 VIRGINIA AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_3201_8,-74.368401,39.402873,180 WINNEPEG AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3201_80,-74.51813,39.4103755,105 VIRGINIA AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_3201_81,-74.7826425,39.544227,107 VIRGINIA AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3201_82,-74.51314008,39.32249288,1174 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3201_83,-74.48498188,39.43314727,1172 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3201_84,-74.404196,39.3819,1170 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_3201_85,-74.57941494,39.33069979,1168 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_3201_86,-74.722726,39.6395145,1166 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3201_87,-74.77752154,39.6266419,1164 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_3201_88,-74.924457,39.4746205,1162 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3201_89,-74.40607473,39.37920776,1158 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_3201_9,-74.72825737,39.64149721,178 WINNEPEG AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_3201_90,-74.51418655,39.32085981,1156 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_3202_1.01,-74.56483323,39.41500717,417 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3202_1.02,-74.59381984,39.42340497,419 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3202_1.03,-74.76574072,39.65023977,421 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3004 -0108_3202_1.04,-74.5246665,39.398575,423 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_3202_1.05,-74.95987253,39.53057682,425 DOGWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3202_1.06,-74.48427353,39.35277085,427 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3202_1.07,-74.70640337,39.56516835,429 DOGWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3004 -0108_3202_1.08,-74.59803533,39.36464704,431 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3203_1,-74.52366956,39.44689434,511 DOGWOOD AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_3203_2,-74.60759872,39.48713625,513 DOGWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3203_3,-74.59643495,39.35699317,515 DOGWOOD AVENUE,EGG HARBOR TWP,16,1977,1,GOV1,3004 -0108_3203_4,-74.63016709,39.38972708,517 DOGWOOD AVENUE,EGG HARBOR TWP,16,1978,1,COM1,3004 -0108_3203_5,-74.48342367,39.35422199,519 DOGWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3203_6,-74.7651679,39.6645154,521 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3203_9,-74.80290607,39.64100134,525 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3207_3,-74.48231161,39.35161134,5009 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3215_1,-74.55184694,39.47735701,5055 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3215_2,-74.72952281,39.45448863,5057 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3215_3,-74.86099372,39.47984305,5059 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_3218_2,-74.49118269,39.33619565,5067 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3222_2,-74.65766983,39.36205174,5075 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_3225_1,-74.48663667,39.49478507,5085 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3226_3,-74.6343555,39.421224,5099 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_3226_4,-74.45496584,39.46296477,5101 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3226_5,-74.479442,39.3371315,5107 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3226_6,-74.62938424,39.39141161,1188 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3226_9,-74.801936,39.6384145,1178 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3227_1,-74.4456115,39.360023,501 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3227_2,-74.5573329,39.40071607,503 DOGWOOD AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_3227_3,-74.59919031,39.3630794,505 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3227_4,-74.62273192,39.3378596,507 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3227_5,-74.6345815,39.531978,509 DOGWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3301_1,-74.56674815,39.47769976,5100 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3301_2,-74.55514133,39.36003149,3 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_3301_3,-74.48969777,39.52588039,7 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_3301_4,-74.49999671,39.51928548,9 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_3301_6,-74.62780959,39.41567548,15 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_3301_7,-74.61271841,39.38832583,17 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3301_8,-74.88491225,39.54241796,19 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3302_1.02,-74.50057918,39.41105152,2B HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_3302_1.03,-74.81122504,39.38484986,2 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_3302_10,-74.79551481,39.64148665,24 HIGH SCHOOL DRIVE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_3302_13,-74.51140893,39.46510866,5060 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1953,1,RES1,3001 -0108_3302_15,-74.55365291,39.42651433,5056 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_3302_16,-74.5705845,39.4269335,5054 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3302_17,-74.36056217,39.40944949,5052 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3302_18,-74.48284692,39.43129701,5050 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3302_19,-74.59077368,39.33153103,5048 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3302_2,-74.58392157,39.40618831,4 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3302_20,-74.497387,39.4980175,5046 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3302_22,-74.36802009,39.41443432,5042 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3302_24,-74.69280148,39.41414087,5038 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1963,1,RES3A,3001 -0108_3302_3,-74.52078434,39.38329473,6 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,1991,1,RES3A,3001 -0108_3302_34,-74.893855,39.569305,5020 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3302_4,-74.37112242,39.40778262,8 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_3302_43,-74.6169945,39.308443,5002 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3302_46.01,-74.49713014,39.52465533,DOGWOOD AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3302_5,-74.92632199,39.52360624,12 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_3302_6.01,-74.77836044,39.59443709,14 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3302_7,-74.71379095,39.41792928,18 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3302_8,-74.87553948,39.48634864,20 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3302_9,-74.549307,39.3799245,22 HIGH SCHOOL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3312_1,-74.5440242,39.45987276,3 TULIP ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3312_11,-74.57543317,39.49901645,200 LILY ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3312_12,-74.48348767,39.49515689,202 LILY ROAD,EGG HARBOR TWP,16,2012,1,RES3A,3001 -0108_3312_13,-74.495201,39.4725405,204 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3312_14,-74.5200345,39.387255,206 LILY ROAD,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_3312_15,-74.57331726,39.34445733,208 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3312_16,-74.4977535,39.33562,210 LILY ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3312_17,-74.61544434,39.37984971,212 LILY ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3312_18,-74.496537,39.4315815,214 LILY ROAD,EGG HARBOR TWP,16,2011,1,COM1,3004 -0108_3312_19,-74.82047117,39.6447779,216 LILY ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3312_2,-74.5079945,39.334326,1 TULIP ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3312_20,-74.6074553,39.43982246,218 LILY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3312_21,-74.71310135,39.47118319,220 LILY ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3312_22,-74.56967718,39.34532394,222 LILY ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3312_23,-74.81333274,39.64171655,224 LILY ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3312_24,-74.64002669,39.56528319,226 LILY ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3312_25,-74.50220667,39.33693962,383 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3312_26,-74.3950595,39.38704917,381 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2008,1,RES3A,3001 -0108_3312_27,-74.55558907,39.47606328,379 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3312_28,-74.60101354,39.31637334,377 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3312_29,-74.51083494,39.33841233,375 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3312_3,-74.5045335,39.415105,113 SNOWDROP ROAD,EGG HARBOR TWP,16,2011,1,RES3A,3001 -0108_3312_30,-74.602949,39.498311,373 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3312_31,-74.7002435,39.484356,371 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3312_32,-74.7134631,39.46713484,369 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3312_33,-74.62037814,39.37741685,367 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3312_34,-74.50243323,39.41785737,365 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3312_35,-74.6032955,39.499449,363 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3312_36,-74.885554,39.4638605,361 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3312_37,-74.63445588,39.39133227,359 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3312_38,-74.502673,39.414297,357 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3312_4,-74.43968464,39.36660725,111 SNOWDROP ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3312_5,-74.57404249,39.35083367,109 SNOWDROP ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3312_6,-74.55543081,39.39187202,107 SNOWDROP ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3312_7,-74.81260666,39.63603453,105 SNOWDROP ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3312_8,-74.50222316,39.45716103,103 SNOWDROP ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3312_9,-74.4889985,39.4209925,101 SNOWDROP ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3313_1,-74.87885734,39.53984269,364 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_10,-74.9000045,39.50376,382 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3313_11,-74.835232,39.471335,228 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_12,-74.4024573,39.38893087,230 LILY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3313_13,-74.4884685,39.3371645,232 LILY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3313_14,-74.755028,39.4312905,234 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3313_15,-74.75514195,39.43156576,236 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_16,-74.63805435,39.43562323,238 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3313_18,-74.6289938,39.4629025,240 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3313_19,-74.623001,39.421969,242 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_2,-74.53773023,39.46751408,366 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_20,-74.51666333,39.41638216,244 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_21,-74.50208738,39.42582086,246 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_22,-74.827467,39.4917145,248 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_3,-74.79312601,39.64521097,368 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3313_4,-74.60265583,39.32817595,370 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_3313_5,-74.64552461,39.39632475,372 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES3A,3001 -0108_3313_6,-74.54722728,39.46859993,374 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3313_7,-74.75050335,39.60379672,376 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3313_8,-74.63886831,39.43599459,378 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3313_9,-74.79433205,39.64580021,380 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,COM1,3004 -0108_3314_1,-74.81735029,39.46965444,129 SNOWDROP ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3314_10,-74.64207678,39.37776076,4 TULIP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3314_11,-74.9397825,39.5033575,6 TULIP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3314_12,-74.6733155,39.48349617,8 TULIP ROAD,EGG HARBOR TWP,16,2009,1,COM1,3004 -0108_3314_13,-74.52129,39.45478821,10 TULIP ROAD,EGG HARBOR TWP,16,2008,1,COM1,3004 -0108_3314_14,-74.50504669,39.45811315,12 TULIP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3314_15,-74.50180641,39.45825286,14 TULIP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3314_16,-74.61794518,39.43031354,16 TULIP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3314_2,-74.4831395,39.353912,127 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3314_3,-74.67343175,39.38985983,125 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3004 -0108_3314_4,-74.65151017,39.53066783,123 SNOWDROP ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3314_5,-74.631425,39.3632155,121 SNOWDROP ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3314_6,-74.75643983,39.45345693,119 SNOWDROP ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3314_7,-74.646048,39.379577,117 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3314_8,-74.60662541,39.43317479,115 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_3314_9,-74.50529804,39.45887284,2 TULIP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3315_1,-74.62171428,39.40469217,345 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3315_10,-74.5126326,39.33861077,5 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3315_11,-74.5165335,39.3935715,3 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3315_12,-74.735697,39.451092,349 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3315_13,-74.59953187,39.43087525,347 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3315_3,-74.49680751,39.46798016,19 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3315_4,-74.52185918,39.38440554,17 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3315_5,-74.46336268,39.35921533,15 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3315_6,-74.73439031,39.4601766,13 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3002 -0108_3315_7,-74.91655502,39.46697932,11 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3315_8,-74.6083711,39.32249118,9 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3315_9,-74.858018,39.445944,7 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3316_1,-74.4260171,39.36544925,22 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3316_10,-74.69390184,39.59416245,362 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3316_11,-74.64258462,39.53164087,2 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3316_12,-74.52096446,39.3891529,4 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3316_13,-74.6054085,39.3291595,6 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3316_14,-74.72767326,39.45088573,8 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3316_15,-74.4280225,39.3663115,10 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3316_16,-74.58834415,39.43254172,12 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3316_17,-74.5251125,39.3168355,14 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES3B,3001 -0108_3316_18,-74.71507144,39.46847671,16 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3316_19,-74.3650565,39.4230635,18 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_3316_2,-74.57950682,39.38223143,24 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES3A,3001 -0108_3316_20,-74.92540375,39.50426459,20 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3316_3,-74.9085685,39.493626,26 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3316_5,-74.42313765,39.36702102,352 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3316_6,-74.4986025,39.337785,354 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3316_7,-74.79438368,39.63099325,356 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3316_8,-74.5491545,39.3775895,358 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3316_9,-74.659597,39.418808,360 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_1,-74.63630885,39.38461449,2A POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_10,-74.8827665,39.445845,16 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_11,-74.62035994,39.43214742,18 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_12,-74.68899381,39.44875876,20 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_13,-74.5988485,39.3299095,22 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_3317_14,-74.949897,39.5167165,325 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_15,-74.46233323,39.34824817,323 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_16,-74.62732958,39.35328119,321 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_17,-74.480755,39.348388,319 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_18,-74.64013911,39.47280855,317 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_3317_19,-74.47217598,39.48131766,315 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_2,-74.52447178,39.39428067,2 POPPY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3317_20,-74.49464512,39.41804823,313 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_21,-74.9458575,39.5330685,311 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3002 -0108_3317_22,-74.5929922,39.37734908,309 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3317_23,-74.6315205,39.4184455,307 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_24,-74.4639665,39.347793,305 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_25,-74.44438012,39.37072619,303 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3317_3,-74.82162502,39.38875567,4 POPPY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3317_5,-74.51126236,39.43701455,6 POPPY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3317_6,-74.783091,39.6121005,8 POPPY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3317_7,-74.52193915,39.39715482,10 POPPY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3317_8,-74.46218616,39.3487465,12 POPPY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3002 -0108_3317_9,-74.7125865,39.4352325,14 POPPY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3318_1,-74.53398432,39.38129103,127 VIOLET DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_3318_10,-74.91756925,39.47222492,111 VIOLET DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3318_11,-74.6601015,39.3475955,109 VIOLET DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_3318_12,-74.82211883,39.41470206,107 VIOLET DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3318_13,-74.79131665,39.61077454,105 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3318_14,-74.8390615,39.398585,103 VIOLET DRIVE,EGG HARBOR TWP,16,2014,1,COM1,3004 -0108_3318_15,-74.62563089,39.43467989,101 VIOLET DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_3318_16,-74.63918727,39.46796778,100 BLUEBELL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3318_17,-74.62475125,39.35871638,102 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3002 -0108_3318_18,-74.613759,39.3258885,104 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3318_19,-74.58600468,39.41965345,106 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3318_2,-74.62708356,39.35794422,125 VIOLET DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3318_20,-74.58928388,39.43341272,108 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3318_21,-74.64748862,39.40816222,110 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3004 -0108_3318_22,-74.68931416,39.39219683,112 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3318_23,-74.826703,39.532436,114 BLUEBELL DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3004 -0108_3318_24,-74.4679985,39.3455105,116 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3318_25,-74.62616918,39.41901912,118 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3318_26,-74.60161485,39.36365477,120 BLUEBELL DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_3318_27,-74.50634166,39.32960601,122 BLUEBELL DRIVE,EGG HARBOR TWP,16,2014,1,COM1,3004 -0108_3318_28,-74.734484,39.448982,124 BLUEBELL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3318_29,-74.90001029,39.53997502,126 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,COM1,3004 -0108_3318_3,-74.596433,39.3082275,123 VIOLET DRIVE,EGG HARBOR TWP,16,2014,1,COM1,3004 -0108_3318_30,-74.62523347,39.38387147,128 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES3A,3001 -0108_3318_31,-74.60708716,39.31805976,130 BLUEBELL DRIVE,EGG HARBOR TWP,16,2013,1,COM10,3003 -0108_3318_32,-74.72838612,39.45518709,132 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3318_5,-74.50329244,39.32924833,121 VIOLET DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_3318_6,-74.3847685,39.39384238,119 VIOLET DRIVE,EGG HARBOR TWP,16,2013,1,AGR1,3001 -0108_3318_7,-74.4965685,39.336552,117 VIOLET DRIVE,EGG HARBOR TWP,16,2012,1,EDU1,3004 -0108_3318_8,-74.471339,39.345439,115 VIOLET DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3318_9,-74.604384,39.502496,113 VIOLET DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3319_1,-74.80943134,39.63793596,229 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3319_10,-74.59725394,39.41168047,8 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3319_11,-74.6658824,39.46203768,10 DAFFODIL ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3319_2,-74.51617879,39.44373253,227 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3319_3,-74.75790963,39.44551274,225 IVY ROAD,EGG HARBOR TWP,16,2015,1,AGR1,3001 -0108_3319_5,-74.6110665,39.3241025,223 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES3B,3001 -0108_3319_6,-74.76239001,39.63077983,221 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3319_7,-74.606065,39.618463,2 DAFFODIL ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3319_8,-74.492845,39.341839,4 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3319_9,-74.52530354,39.31328187,6 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_1,-74.52092786,39.31857995,17 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_11,-74.52548555,39.31231816,219 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_12,-74.59520952,39.37907794,217 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_13,-74.939683,39.5111015,215 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_14,-74.45684883,39.34757202,213 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_15,-74.730161,39.5794075,211 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_16,-74.378556,39.413252,209 IVY ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3321_17,-74.61855571,39.43183742,207 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_18,-74.702013,39.5750205,205 IVY ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3321_19,-74.60480328,39.32401562,203 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_2,-74.53996928,39.46001643,15 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_20,-74.60870216,39.32663499,201 IVY ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3321_21,-74.53235618,39.46977746,116 VIOLET DRIVE,EGG HARBOR TWP,16,2014,1,GOV1,3004 -0108_3321_22,-74.4736927,39.4430861,118 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3321_23,-74.60741143,39.39829467,120 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3321_3,-74.6386205,39.399811,13 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_4,-74.76570684,39.60493699,11 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_5,-74.42834239,39.3566223,9 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3321_6,-74.58298483,39.48683648,7 DAFFODIL ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3321_7,-74.52674033,39.3845759,5 DAFFODIL ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_3321_8,-74.6260567,39.35183575,3 DAFFODIL ROAD,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3321_9,-74.63410787,39.35721401,1 DAFFODIL ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3322_2,-74.508621,39.4869175,201 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3322_3,-74.50494166,39.32472152,203 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_102,-74.514427,39.402248,205 LILY ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3323_103,-74.62622498,39.35430816,207 LILY ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3323_104,-74.61446308,39.5209345,209 LILY ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3323_106,-74.59611638,39.43174622,211 LILY ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3323_107,-74.4882292,39.47012953,213 LILY ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3323_108,-74.59256933,39.32177949,215 LILY ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3323_109,-74.77968534,39.62224601,217 LILY ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3323_110,-74.86770617,39.59257705,219 LILY ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3323_111,-74.55393259,39.46784318,221 LILY ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3323_112,-74.6063925,39.4100895,223 LILY ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3323_113,-74.6329438,39.39172409,225 LILY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3323_114,-74.92614888,39.50659551,227 LILY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3323_115,-74.63458089,39.55234715,229 LILY ROAD,EGG HARBOR TWP,16,2009,1,RES1,3004 -0108_3323_116,-74.62611157,39.41449167,231 LILY ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_3323_117,-74.87618638,39.4751207,233 LILY ROAD,EGG HARBOR TWP,16,2008,1,AGR1,3001 -0108_3323_118,-74.51726851,39.40296566,235 LILY ROAD,EGG HARBOR TWP,16,2008,1,COM1,3004 -0108_3323_119,-74.75588355,39.43282723,237 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_120,-74.80660238,39.48746648,239 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_121,-74.89676827,39.51204926,241 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_122,-74.514264,39.411321,243 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_123,-74.714886,39.4658765,245 LILY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3323_124,-74.6982475,39.4397435,247 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_125,-74.44229311,39.36860656,249 LILY ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3323_126,-74.5233605,39.5062845,251 LILY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_127,-74.5573715,39.398426,253 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_128,-74.69948389,39.5085314,255 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_129,-74.69305544,39.50772832,257 LILY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_130,-74.60577204,39.42455069,1 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3323_131,-74.72757996,39.45459467,3 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3323_132,-74.64402496,39.39942419,5 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_133,-74.593056,39.3803575,7 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_134,-74.7218505,39.5760905,9 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_135,-74.62606234,39.38490001,11 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_136,-74.565509,39.35102,13 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_137,-74.61276566,39.48990204,15 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_138,-74.48457345,39.34431968,17 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_139,-74.6405815,39.3805695,19 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_140,-74.59552475,39.42912863,21 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_141,-74.52252301,39.38856459,23 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_142,-74.7105705,39.572197,25 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,IND2,3002 -0108_3323_144,-74.52347402,39.38338182,27 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_145,-74.48418079,39.43098095,29 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_146,-74.46460566,39.34923451,31 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_147,-74.50295283,39.33878911,33 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_148,-74.46852004,39.34165778,35 MARIGOLD CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_149,-74.500031,39.4182735,350 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_150,-74.61288997,39.4893812,348 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_151,-74.80810195,39.48987478,346 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_152,-74.50827627,39.49197065,344 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_153,-74.52321,39.3841965,342 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_154,-74.64989999,39.62841417,340 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES3B,3001 -0108_3323_155,-74.85019896,39.61380782,338 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_156,-74.420061,39.371267,336 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_3323_157,-74.627021,39.423854,334 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3323_158,-74.5001583,39.46621451,332 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3323_159,-74.91983476,39.48139648,330 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3002 -0108_3323_160,-74.4416083,39.36826569,328 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_161,-74.461337,39.348147,326 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_3323_162,-74.5431435,39.3776285,324 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_3323_163,-74.6447925,39.39846,322 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_3323_164,-74.47964556,39.33703667,320 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_165,-74.67484663,39.37759969,318 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_166,-74.57156361,39.35086431,316 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_167,-74.54414507,39.3978475,314 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_168,-74.5191241,39.4578812,312 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_169,-74.59507064,39.42772976,310 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,IND2,3002 -0108_3323_170,-74.62399792,39.37890458,308 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_171,-74.50287761,39.40914782,306 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_172,-74.75444009,39.44901716,304 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3323_173,-74.85521249,39.43915155,302 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,COM4,3004 -0108_3323_174,-74.47463231,39.48158173,300 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_10,-74.4911255,39.466865,116 SNOWDROP ROAD,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_3324_11,-74.57387557,39.34647077,118 SNOWDROP ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3324_12,-74.52235305,39.46919143,120 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_3324_13,-74.79216448,39.64314067,122 SNOWDROP ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3324_14,-74.4901125,39.351264,124 SNOWDROP ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3324_15,-74.51426032,39.40552794,126 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3324_16,-74.6124205,39.4273615,128 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3324_17,-74.66274879,39.35880264,130 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3324_18,-74.77474,39.600297,132 SNOWDROP ROAD,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3324_19,-74.42226163,39.37211233,134 SNOWDROP ROAD,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3324_2,-74.5292761,39.45826041,100 SNOWDROP ROAD,EGG HARBOR TWP,16,2011,1,GOV1,3004 -0108_3324_20,-74.94758491,39.50963328,136 SNOWDROP ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3324_21,-74.50329791,39.41125119,138 SNOWDROP ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3324_22,-74.8489765,39.5572415,140 SNOWDROP ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3324_23,-74.77953332,39.49816359,142 SNOWDROP ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3324_24,-74.63615628,39.38218858,144 SNOWDROP ROAD,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_3324_26,-74.68896,39.503902,355 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_27,-74.6129178,39.32220967,353 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3324_28,-74.42470346,39.37104632,351 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3324_29,-74.5749505,39.34132639,2 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3324_3,-74.6331164,39.35114489,102 SNOWDROP ROAD,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_3324_30,-74.59782976,39.42083786,4 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_31,-74.88210706,39.45116962,6 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3324_32,-74.6398835,39.3904225,8 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_3324_33,-74.62845018,39.34800658,10 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_34,-74.85619915,39.56349787,12 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_35,-74.45064939,39.37349369,14 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3324_36,-74.57518065,39.33617999,16 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3324_37,-74.4929945,39.3400375,18 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_38,-74.50215792,39.50344985,20 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3324_39,-74.50170376,39.50096096,22 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_4,-74.73022275,39.45357012,104 SNOWDROP ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3324_40,-74.70924858,39.43073482,24 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_41,-74.48126507,39.3420909,26 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3324_42,-74.71049383,39.56088697,28 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3324_43,-74.52371042,39.38855168,30 PRIMROSE CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_44,-74.66905732,39.39095821,343 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3324_45,-74.42829795,39.37111882,341 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3324_46,-74.63145855,39.3920862,339 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,COM8,3004 -0108_3324_47,-74.55719978,39.46769394,337 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_48,-74.78547866,39.5303024,335 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_49,-74.515558,39.385715,333 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_5,-74.61678048,39.43044334,106 SNOWDROP ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3324_50,-74.53675045,39.45405772,331 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_51,-74.72464682,39.45238699,329 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_52,-74.71532468,39.45227602,327 SUNFLOWER DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_53,-74.5176565,39.4456765,41 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_54,-74.96759267,39.51911976,39 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES3B,3001 -0108_3324_55,-74.50836028,39.40439978,37 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_56,-74.62604905,39.41379931,35 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_57,-74.37193284,39.40125189,33 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_58,-74.6473195,39.531334,31 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_59,-74.476146,39.33856,29 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_6,-74.7118135,39.40553,108 SNOWDROP ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3324_60,-74.802626,39.6253455,27 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_61,-74.6034675,39.331168,25 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_62,-74.72495464,39.45169247,23 POPPY ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3324_63,-74.51748401,39.44468264,21 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_64,-74.949417,39.5153935,19 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_65,-74.5062009,39.49303575,17 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_66,-74.8131905,39.637718,15 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_67,-74.6162335,39.429429,13 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_68,-74.755756,39.4455855,11 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_69,-74.76410258,39.60525207,9 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_7,-74.61698198,39.31901688,110 SNOWDROP ROAD,EGG HARBOR TWP,16,2011,1,GOV1,3004 -0108_3324_70,-74.68909625,39.5000657,7 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_71,-74.59832804,39.4313115,5 POPPY ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3324_72,-74.69294636,39.41349631,3 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3004 -0108_3324_73,-74.53727178,39.38288696,1 POPPY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3324_8,-74.516225,39.453518,112 SNOWDROP ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3324_9,-74.63636376,39.43044528,114 SNOWDROP ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3325_1,-74.56806142,39.34126167,100 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_10,-74.7293005,39.4638405,202 IVY ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_11,-74.6014675,39.322307,204 IVY ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_12,-74.61697697,39.32116774,206 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_13,-74.52713648,39.39385935,208 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_14,-74.62944968,39.41857509,210 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_15,-74.49628903,39.33574067,212 IVY ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_16,-74.801553,39.55563,214 IVY ROAD,EGG HARBOR TWP,16,2016,1,GOV1,3004 -0108_3325_17,-74.7570535,39.4313905,216 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_18,-74.94762426,39.52371736,218 IVY ROAD,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3325_19,-74.61146933,39.4147374,220 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_2,-74.580965,39.312295,102 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3004 -0108_3325_20,-74.82854894,39.52981267,222 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_21,-74.483781,39.341656,224 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_22,-74.619992,39.37975,226 IVY ROAD,EGG HARBOR TWP,16,2016,1,GOV1,3004 -0108_3325_23,-74.60527314,39.41110299,228 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_25,-74.60158118,39.43324625,230 IVY ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_26,-74.57097343,39.36865829,232 IVY ROAD,EGG HARBOR TWP,16,2016,1,GOV1,3004 -0108_3325_27,-74.48316498,39.34628566,234 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_28,-74.367938,39.404912,236 IVY ROAD,EGG HARBOR TWP,16,2016,1,GOV1,3004 -0108_3325_29,-74.4612365,39.453811,238 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_3,-74.60318393,39.50007599,104 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_30,-74.82139369,39.65458923,240 IVY ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_31,-74.4621145,39.545617,242 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_32,-74.57642757,39.42023793,244 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_33,-74.4178585,39.367461,246 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_34,-74.779168,39.42442016,248 IVY ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_3325_35,-74.61357456,39.42593986,250 IVY ROAD,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3325_4,-74.8377875,39.3870535,106 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3325_5,-74.8092508,39.63716418,108 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3325_6,-74.4636875,39.3462915,110 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3325_7,-74.45938317,39.34992949,112 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_8,-74.503715,39.4534475,114 VIOLET DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3325_9,-74.64562395,39.40906871,200 IVY ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3326_10,-74.88073558,39.59263241,117 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_11,-74.538023,39.4638595,119 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_12,-74.7959665,39.537975,121 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_13,-74.69239234,39.42000688,123 BLUEBELL DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_3326_14,-74.52603583,39.45227147,125 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3326_15,-74.5199225,39.404525,127 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_16,-74.9589875,39.534203,129 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_17,-74.49415058,39.52164224,131 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3326_18,-74.3806995,39.399082,133 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3326_19,-74.75978864,39.44486834,135 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3326_2,-74.53965423,39.45999753,101 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3326_21,-74.42909541,39.36559305,139 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_22,-74.481233,39.34948633,141 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_23,-74.64440331,39.37913823,143 BLUEBELL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3326_24,-74.48205811,39.43155611,145 BLUEBELL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3326_25,-74.92588003,39.51027329,147 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_26,-74.9488784,39.50402325,149 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_27,-74.46505083,39.34493553,151 BLUEBELL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3326_28,-74.73266728,39.45393937,153 BLUEBELL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3326_3,-74.8171985,39.63321,103 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3326_4,-74.61519834,39.32274036,105 BLUEBELL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3326_5,-74.58794825,39.35276492,107 BLUEBELL DRIVE,EGG HARBOR TWP,16,2014,1,GOV1,3004 -0108_3326_6,-74.51104407,39.45385034,109 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3326_7,-74.51226895,39.40394425,111 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3326_8,-74.75053021,39.4463506,113 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_3326_9,-74.549366,39.3777385,115 BLUEBELL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3327_16,-74.495771,39.518298,6150 MILL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3327_17,-74.81937683,39.64710596,6120 MILL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3401_1,-74.363514,39.4193305,4066 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3401_17,-74.63592362,39.36393126,4094 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3401_18,-74.5046505,39.407876,4096 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3401_4,-74.53596539,39.39040717,4070 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3403_11,-74.47448248,39.48046047,101 SAMUEL COTTON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3403_2,-74.48425984,39.34955618,605 DOGWOOD AVENUE,EGG HARBOR TWP,16,1949,1,RES1,3001 -0108_3403_3,-74.58243203,39.42529752,609 DOGWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3403_5,-74.45872718,39.46149752,615 DOGWOOD AVENUE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_3403_6,-74.51271216,39.3981896,627 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3403_9,-74.60227617,39.32443101,631 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3404_10,-74.69951004,39.49794029,630 DOGWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3404_11,-74.60240871,39.40755946,632 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3404_15,-74.53623882,39.47201716,622 DOGWOOD AVENUE,EGG HARBOR TWP,16,1968,1,GOV1,3004 -0108_3404_18,-74.787935,39.632235,610 DOGWOOD AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_3404_9,-74.553942,39.4779825,626 DOGWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3419_16,-74.62642,39.4210095,660 DOGWOOD AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_3419_17,-74.49352938,39.33199033,654 DOGWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_3420_1,-74.64710098,39.39515638,639 DOGWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3420_2,-74.36666017,39.40660899,653 DOGWOOD AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3420_3,-74.63751647,39.40898918,657 DOGWOOD AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3420_4,-74.795524,39.464884,661 DOGWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3423_18,-74.7539595,39.451873,4095 TREMONT AVENUE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_3424_1,-74.51152074,39.4387723,200 BATES AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_3424_17,-74.58667616,39.42362999,4091 TREMONT AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_3424_18,-74.920391,39.49013,4093 TREMONT AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_3425_18,-74.78130693,39.63786906,4085 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3425_19,-74.8083442,39.62852627,4087 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3429_1,-74.39758338,39.39425437,4056 IVINS AVENUE,EGG HARBOR TWP,16,1938,1,RES1,3001 -0108_3429_2,-74.56038501,39.46905835,4060 IVINS AVENUE,EGG HARBOR TWP,15,1926,1,RES1,3001 -0108_3429_44,-74.93552295,39.52149319,4061 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3430_10,-74.6478885,39.432809,6219 MAIN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3430_11,-74.588458,39.3194145,6221 MAIN AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_3430_12,-74.5492495,39.477581,6229 MAIN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3430_21,-74.43024351,39.37443584,6223 MAIN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3430_22,-74.535702,39.3851395,6225 MAIN AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3430_23,-74.62166644,39.37879128,6227 MAIN AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_3430_3,-74.51362702,39.4755121,6205 MAIN AVENUE,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_3430_5,-74.61231597,39.34140808,6209 MAIN AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3430_7,-74.54982033,39.40753374,6213 MAIN AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3432_33,-74.88334981,39.46386127,4074 TREMONT AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_3434_11,-74.8751286,39.49451718,4071 SPRUCE AVENUE,EGG HARBOR TWP,16,1877,1,RES1,3001 -0108_3434_45,-74.60157583,39.38887315,5006 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3434_48,-74.6136095,39.4892015,4094 TREMONT AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_3434_49,-74.72294205,39.57290916,4098 TREMONT AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_3434_50,-74.56894474,39.36471317,4096 TREMONT AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_3434_51,-74.39057649,39.39230666,4092 TREMONT AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_3434_57,-74.7965801,39.63783013,4078 TREMONT AVENUE,EGG HARBOR TWP,16,1968,1,GOV1,3004 -0108_3501_10,-74.55847983,39.36695606,4081 RIDGE AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3501_11,-74.46421276,39.53508614,18 NINTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_3501_12,-74.49643147,39.33564583,16 NINTH AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3501_5,-74.60508975,39.320788,4061 RIDGE AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3501_7,-74.71157057,39.36607163,4065 RIDGE AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_3502_1,-74.55631,39.358279,111 MAIN AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_3502_18,-74.498844,39.3330415,4060 RIDGE AVENUE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_3502_2,-74.79158051,39.63162722,117 MAIN AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3502_5,-74.78420008,39.64121755,4059 SPRUCE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_3502_6,-74.5904433,39.33327003,4069 SPRUCE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_3601_1,-74.36493,39.4083565,1 POLEBRIDGE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3601_2,-74.4855165,39.3338265,4058 SPRUCE AVENUE,EGG HARBOR TWP,16,1890,1,RES1,3001 -0108_3602_3,-74.52491167,39.3950681,4062 SPRUCE AVENUE,EGG HARBOR TWP,16,1930,1,GOV1,3004 -0108_3603_1,-74.63573718,39.43275801,9 POLEBRIDGE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3004 -0108_3604_1,-74.6922261,39.59747223,4046 WALNUT AVENUE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_3613_1,-74.63577844,39.43161932,4068 SPRUCE AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_3701_10,-74.80132455,39.63700265,6708 MILL ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_3701_11,-74.49656248,39.34187369,6704 MILL ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3701_12,-74.6232322,39.43175062,6700 MILL ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_3701_13,-74.4985135,39.3323845,5116 SPRUCE AVENUE,EGG HARBOR TWP,16,1888,1,RES1,3001 -0108_3701_14,-74.6060485,39.4842065,5114 SPRUCE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3701_15,-74.61653767,39.31980092,5112 SPRUCE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3701_16,-74.5638351,39.35913474,5108 SPRUCE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_3701_17,-74.57331914,39.34015873,5106 SPRUCE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3701_18,-74.64454103,39.53179086,5104 SPRUCE AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_3701_19,-74.36948636,39.41643728,5110 SPRUCE AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_3701_20,-74.487252,39.470235,5102 SPRUCE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3701_21,-74.3803745,39.3942455,5098 SPRUCE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_3701_22,-74.53102682,39.38748695,5094 SPRUCE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_3701_23,-74.5328095,39.5219535,5090 SPRUCE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_3701_24,-74.7997295,39.6331555,5086 SPRUCE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_3701_25,-74.69158626,39.44863253,5080 SPRUCE AVENUE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_3701_26,-74.59282519,39.32366904,5076 SPRUCE AVENUE,EGG HARBOR TWP,16,1900,1,GOV1,3004 -0108_3701_27,-74.49165665,39.33419402,5074 SPRUCE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3701_28,-74.56425715,39.35441394,5072 SPRUCE AVENUE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_3701_7,-74.66317939,39.40146535,5030 BROADWAY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3702_3,-74.43665535,39.49229071,705 NINTH AVENUE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_3704_1,-74.79170067,39.66585838,3215 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3704_6,-74.59452493,39.36253021,3187 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3704_8,-74.59806666,39.31739395,3173 FIRE ROAD,EGG HARBOR TWP,,1973,1,RES1,3001 -0108_3705_2,-74.67021016,39.35345969,6800 MILL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3705_4,-74.48361536,39.33910861,3206 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3801_13,-74.48820632,39.33262039,5015 SPRUCE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3801_14,-74.55834467,39.36575145,5021 SPRUCE AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_3801_19,-74.53510641,39.38348788,5051 SPRUCE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3801_23,-74.5916019,39.38178373,17 FAIRHILL AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_3801_26,-74.723428,39.4582945,9 FAIRHILL AVENUE,EGG HARBOR TWP,16,1942,1,RES1,3001 -0108_3801_27,-74.55959753,39.36702616,5 FAIRHILL AVENUE,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_3801_29,-74.590636,39.3811385,1 FAIRHILL AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_3801_30.01,-74.51920584,39.40123967,6616 MILL ROAD,EGG HARBOR TWP,15,1920,1,RES1,3001 -0108_3801_30.02,-74.5186115,39.401787,100 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.03,-74.5244409,39.38668581,102 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.04,-74.52677352,39.38635933,104 CARMEL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3801_30.05,-74.52612902,39.38656015,300 CITATION DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.07,-74.44856395,39.49499265,108 CARMEL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3801_30.08,-74.45902971,39.49475043,110 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.09,-74.45185024,39.48969312,112 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.10,-74.444364,39.4925995,114 CARMEL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3801_30.11,-74.47829323,39.47892561,116 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.12,-74.451442,39.49508,118 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.13,-74.52637251,39.38590233,120 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.14,-74.52341681,39.38801897,122 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.15,-74.527007,39.387845,124 CARMEL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3801_30.16,-74.520817,39.3884735,119 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.17,-74.52390572,39.3882215,117 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES3A,3001 -0108_3801_30.18,-74.52706952,39.38849632,115 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_3801_30.19,-74.528111,39.388635,113 CARMEL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3801_30.20,-74.46428621,39.49410975,111 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.21,-74.4571955,39.487804,109 CARMEL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3801_30.22,-74.45288768,39.49941213,107 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.23,-74.4563311,39.49359369,105 CARMEL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.24,-74.4532145,39.5012205,103 CARMEL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3801_30.25,-74.45483556,39.50206728,101 CARMEL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3801_30.26,-74.47341169,39.48984163,6614 MILL ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3801_30.27,-74.4711305,39.490658,6612 MILL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3801_30.28,-74.46415597,39.49833057,6610 MILL ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.29,-74.45235811,39.49644086,6608 MILL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3801_30.30,-74.452244,39.4980935,6606 MILL ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.31,-74.51794083,39.32402053,6604 MILL ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_3801_30.32,-74.53062667,39.38918328,6602 MILL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3801_31,-74.5714675,39.4288905,6594 MILL ROAD,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_3801_32,-74.4687465,39.4866135,2 ORCHARD ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3801_33,-74.6007824,39.38234435,4 ORCHARD ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_3801_34,-74.65379813,39.59615988,6 ORCHARD ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3801_35,-74.575957,39.407987,8 ORCHARD ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3801_36,-74.59631852,39.31162416,10 ORCHARD ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3801_37,-74.64658623,39.43114614,12 ORCHARD ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_3801_39,-74.6178875,39.312438,14 ORCHARD ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_3801_40,-74.8253097,39.61333295,16 ORCHARD ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_3801_41,-74.51280767,39.43252051,18 ORCHARD ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3801_42,-74.93191935,39.52706197,20 ORCHARD ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3801_44,-74.47242,39.489615,3 HARVEST COURT,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_3801_45,-74.8094105,39.632982,5 HARVEST COURT,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_3801_46,-74.9382985,39.5283635,7 HARVEST COURT,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3801_47,-74.853984,39.591595,9 HARVEST COURT,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_3801_48,-74.5746542,39.3578956,6 HARVEST COURT,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3801_49,-74.63145004,39.41486527,4 HARVEST COURT,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_3801_50,-74.95134666,39.54276678,2 HARVEST COURT,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_3801_51,-74.6263265,39.356977,5091 SPRUCE AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_3801_52,-74.50401708,39.41201498,5089 SPRUCE AVENUE,EGG HARBOR TWP,16,1956,1,RES1,3001 -0108_3801_53,-74.6279865,39.529278,5087 SPRUCE AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_3803_10,-74.82983284,39.56851197,5010 SPRUCE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_3803_11,-74.530764,39.308897,5008 SPRUCE AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_3803_13,-74.46279133,39.49555751,5002 SPRUCE AVENUE,EGG HARBOR TWP,16,1945,1,RES3A,3001 -0108_3803_6,-74.56247867,39.35604406,5028 SPRUCE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3803_7,-74.52132941,39.39905866,5018 SPRUCE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3803_8.01,-74.63651629,39.38820906,5016 SPRUCE AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3803_8.02,-74.83956245,39.43895977,5012 SPRUCE AVENUE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3804_1,-74.61006656,39.34777022,5117 SPRUCE AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_3804_10,-74.5138645,39.4684665,5 ORCHARD ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3804_2,-74.8532405,39.369284,21 ORCHARD ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3804_3,-74.46362529,39.45569018,19 ORCHARD ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3804_4,-74.52089712,39.32309379,17 ORCHARD ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3804_5,-74.5123745,39.323053,15 ORCHARD ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_3804_6,-74.55075493,39.46467534,13 ORCHARD ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_3804_7,-74.368623,39.4080585,11 ORCHARD ROAD,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_3804_8,-74.51241659,39.33922381,9 ORCHARD ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3804_9,-74.80608011,39.5521059,7 ORCHARD ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3901_8.03,-74.4541015,39.468877,103 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3901_8.08,-74.46373218,39.35664489,113 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.09,-74.59112582,39.41235049,115 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3901_8.11,-74.51690232,39.39330454,119 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.13,-74.72458688,39.43322177,3 MISTY LAKE COURT,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_3901_8.14,-74.49029547,39.45271632,5 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.15,-74.51153634,39.44066802,7 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.16,-74.59323984,39.42860357,20 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.17,-74.49951177,39.44805346,18 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.18,-74.72321067,39.43668099,16 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.19,-74.50804415,39.44691195,14 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.21,-74.4873012,39.49360654,10 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.22,-74.97462633,39.50809934,8 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.23,-74.46404669,39.46229604,6 MISTY LAKE COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.26,-74.83146619,39.48422532,121 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_3901_8.28,-74.8691216,39.59452583,125 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.29,-74.81395478,39.63302333,127 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.31,-74.66566233,39.40532499,131 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.32,-74.60240882,39.40877548,133 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3901_8.33,-74.51180035,39.43996915,135 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2011,1,COM4,3004 -0108_3901_8.34,-74.5569295,39.4747,137 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.35,-74.6310305,39.418075,139 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.36,-74.5351445,39.4704115,141 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.37,-74.6743285,39.3884465,143 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.38,-74.79609335,39.63827311,145 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.39,-74.51318235,39.32747186,147 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3901_8.42,-74.51193217,39.40005401,153 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3901_8.43,-74.50152608,39.32833467,155 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.44,-74.63204506,39.5302335,157 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3901_8.45,-74.48136316,39.33589451,159 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.46,-74.62619094,39.41360141,161 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3901_8.47,-74.5008775,39.4130775,163 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3901_8.48,-74.55549156,39.38986695,165 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3901_8.49,-74.71340131,39.43138597,167 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2011,1,COM1,3004 -0108_3902_1,-74.5019385,39.3291965,2 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3902_2,-74.85112482,39.48760994,4 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3902_3,-74.7845021,39.63517574,6 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3902_4,-74.39795324,39.38512371,8 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3902_5,-74.59468906,39.31690761,7 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3902_6,-74.421047,39.3678785,5 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3902_7,-74.60004769,39.42983754,3 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3902_8,-74.7999575,39.434203,1 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3903_1,-74.55832923,39.39858888,419 OAKLAND AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3903_10,-74.52423576,39.31620433,417 OAKLAND AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3904_1,-74.4732702,39.48255037,443 OAKLAND AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_3904_10,-74.4539055,39.3747135,407 OAKLAND AVENUE,EGG HARBOR TWP,16,1902,1,RES1,3001 -0108_3904_11,-74.60087757,39.3702143,409 OAKLAND AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_3904_12,-74.44795692,39.35469594,411 OAKLAND AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3904_13,-74.37306045,39.41199672,413 OAKLAND AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_3904_14.01,-74.53798583,39.46840017,115 WHITE OAK DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_14.02,-74.879171,39.4627415,114 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.03,-74.502823,39.4143575,9 EXTON COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_14.04,-74.508528,39.462727,8 EXTON COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.05,-74.5887283,39.37047592,7 EXTON COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.06,-74.77580166,39.61447152,6 EXTON COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.07,-74.38664407,39.39398886,5 EXTON COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_14.08,-74.69022567,39.495476,4 EXTON COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.09,-74.49001113,39.33522116,3 EXTON COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.10,-74.50993611,39.48716432,2 EXTON COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_14.11,-74.93072057,39.51326359,112 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.12,-74.94177718,39.52260245,111 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.13,-74.49607833,39.33245601,110 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.14,-74.886605,39.5967535,109 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.15,-74.6313248,39.4174994,108 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.16,-74.546681,39.5496422,107 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3004 -0108_3904_14.17,-74.37317099,39.41598774,106 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.18,-74.43141944,39.37340929,105 WHITE OAK DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_14.19,-74.54846,39.4037525,104 WHITE OAK DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_14.20,-74.61054813,39.3109336,103 WHITE OAK DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_14.21,-74.513953,39.4423285,102 WHITE OAK DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_14.22,-74.87320768,39.45696526,101 WHITE OAK DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_14.23,-74.612859,39.4236255,100 WHITE OAK DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_2.01,-74.361497,39.4117955,439 OAKLAND AVENUE,EGG HARBOR TWP,16,1947,1,RES1,3001 -0108_3904_2.02,-74.5099745,39.4060655,437 OAKLAND AVENUE,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_3904_2.03,-74.791555,39.5348255,435 OAKLAND AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_3904_2.04,-74.55298453,39.36879597,433 OAKLAND AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_3904_2.05,-74.637717,39.536791,6528 MILL ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3904_2.06,-74.5954034,39.428302,6530 MILL ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_2.07,-74.79401416,39.64488302,6532 MILL ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_2.08,-74.63362061,39.34985384,6534 MILL ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_2.09,-74.49045985,39.49785287,6536 MILL ROAD,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_3904_2.10,-74.47868911,39.33833752,6538 MILL ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3904_2.11,-74.5909302,39.41431006,441 OAKLAND AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_3904_22,-74.56589839,39.36693742,421 OAKLAND AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_3904_23,-74.7377485,39.4682585,425 OAKLAND AVENUE,EGG HARBOR TWP,16,1975,1,REL1,3004 -0108_3904_24,-74.5927155,39.3803505,427 OAKLAND AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3904_3,-74.48942469,39.43193025,6524 MILL ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3904_4,-74.50468843,39.45471262,6522 MILL ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3904_5.02,-74.40574191,39.38166533,1 TYLER DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_5.03,-74.97435654,39.51064615,2 TYLER DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_5.04,-74.794792,39.643867,3 TYLER DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3904_5.05,-74.940397,39.516249,4 TYLER DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3904_5.06,-74.413531,39.368535,5 TYLER DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_5.07,-74.685369,39.6530535,6 TYLER DRIVE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_3904_5.08,-74.45128005,39.37395383,7 TYLER DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_3904_5.09,-74.57192372,39.37273303,8 TYLER DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_3904_5.11,-74.60021965,39.51037646,10 TYLER DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3904_5.12,-74.48547063,39.34912368,11 TYLER DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3904_5.13,-74.67902,39.35285,6506 MILL ROAD,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_3904_5.14,-74.61331259,39.41029181,6508 MILL ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_5.15,-74.54626817,39.54340717,6510 MILL ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_5.16,-74.64837403,39.40363631,6512 MILL ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_5.17,-74.85411794,39.56232266,6514 MILL ROAD,EGG HARBOR TWP,16,1951,1,GOV1,3004 -0108_3904_5.18,-74.92533068,39.52611849,15 TYLER DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_5.19,-74.58165885,39.35678543,14 TYLER DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3904_5.21,-74.508025,39.3299015,12 TYLER DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3904_7,-74.46178087,39.34755484,6504 MILL ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_3904_8.01,-74.9373155,39.526425,5078 RIDGE AVENUE,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_3904_8.03,-74.65802642,39.35783742,5074 RIDGE AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_3904_8.04,-74.7876935,39.6314435,5072 RIDGE AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_3904_9,-74.76702191,39.3488033,5070 RIDGE AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3905_1,-74.58021441,39.33072458,6558 MILL ROAD,EGG HARBOR TWP,16,1928,1,RES1,3001 -0108_3905_10,-74.5641225,39.372318,16 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_11,-74.5043985,39.339473,14 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_12,-74.80261215,39.64131004,12 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_13,-74.61712927,39.37190662,10 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_14,-74.4249205,39.3707945,8 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_15,-74.74555928,39.42151428,6 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_16,-74.6691775,39.413502,4 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_17,-74.558156,39.3984175,2 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3905_2,-74.45172178,39.3705191,3 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_3,-74.4287,39.3719395,5 WINTERBERRY ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3905_4,-74.56735765,39.3570125,7 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_5,-74.64029807,39.36972946,9 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_6,-74.60376029,39.39735896,11 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_7,-74.577393,39.48025368,13 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3905_8,-74.523126,39.322189,15 WINTERBERRY ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3905_9,-74.6077025,39.3932735,18 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3906_10,-74.5919304,39.33065732,118 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3906_11,-74.45917614,39.35480403,120 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3906_13,-74.74910032,39.44972202,203 LA COSTA DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3906_14,-74.72551631,39.58958431,201 LA COSTA DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3906_15,-74.5882528,39.35657004,5038 RIDGE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_3906_3,-74.51017654,39.32769016,104 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3906_4,-74.60217577,39.59145154,106 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3906_5,-74.58756982,39.32996786,108 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3906_8,-74.65764923,39.63074739,114 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_3906_9,-74.8059855,39.6322235,116 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_11,-74.48862934,39.33889008,130 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,COM4,3004 -0108_3907_13,-74.5235785,39.3193365,134 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_14,-74.73492488,39.43304905,136 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2007,1,COM1,3004 -0108_3907_15,-74.67254542,39.38329583,138 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_16,-74.58213069,39.38108043,140 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_17,-74.6806085,39.443106,142 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_18,-74.58750937,39.43309997,144 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3907_19,-74.7544865,39.451278,146 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_20,-74.8366015,39.595283,148 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_21,-74.7948945,39.5305405,150 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_22,-74.5968845,39.361176,152 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_23,-74.5493635,39.3620795,154 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_26,-74.69594475,39.41976554,27 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_27,-74.593939,39.311556,25 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_28,-74.8625232,39.59688556,23 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_29,-74.59811407,39.31813481,21 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3907_30,-74.953698,39.5178575,19 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_31,-74.89898135,39.52766125,17 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_32,-74.67173683,39.379073,15 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_34,-74.52195916,39.31608095,11 WHITE OAK DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_3907_35,-74.80154733,39.63181448,9 WHITE OAK DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3907_36,-74.551876,39.4778625,7 WHITE OAK DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3907_37,-74.47528966,39.49378848,5 WHITE OAK DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_3907_38,-74.516538,39.439607,3 WHITE OAK DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3907_39,-74.61842582,39.40349599,1 WHITE OAK DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_3907_41,-74.560303,39.372791,418 OAKLAND AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_3907_42,-74.64976946,39.3758612,416 OAKLAND AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_3907_43,-74.80225822,39.43041882,414 OAKLAND AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3907_45,-74.47155944,39.48726137,410 OAKLAND AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3907_46,-74.6051885,39.3561765,408 OAKLAND AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_3907_47,-74.50072099,39.43471351,406 OAKLAND AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_3907_48,-74.8854617,39.46304333,404 OAKLAND AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_3907_49,-74.7003375,39.5070335,402 OAKLAND AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_3907_5,-74.63388475,39.35001211,210 LA COSTA DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_3907_50,-74.4529845,39.35394,400 OAKLAND AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_3907_51,-74.66817548,39.35735568,5060 RIDGE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_3907_52,-74.54951652,39.36561177,5058 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_3907_53,-74.4973095,39.4120385,5056 RIDGE AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3907_54,-74.59895509,39.36681825,5054 RIDGE AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3907_55,-74.59267392,39.32359618,5052 RIDGE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_3907_56,-74.77710001,39.66782066,5050 RIDGE AVENUE,EGG HARBOR TWP,16,1980,1,RES3A,3001 -0108_3907_6,-74.47964336,39.34256447,120A CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2010,1,COM3,3004 -0108_3907_7,-74.79057972,39.6344136,122 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3907_8,-74.68179126,39.3781513,124 CRYSTAL LAKE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_3908_2,-74.92486879,39.50576618,18 WHITE OAK DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_3909_1,-74.61744581,39.32090295,2 WHITE OAK DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_3909_2,-74.94160536,39.51165784,4 WHITE OAK DRIVE,EGG HARBOR TWP,16,2013,1,COM3,3004 -0108_3909_3,-74.49886257,39.50491213,6 WHITE OAK DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3909_34,-74.38945984,39.39255701,428 OAKLAND AVENUE,EGG HARBOR TWP,16,1935,1,GOV1,3004 -0108_3909_35,-74.5068195,39.32906,432 OAKLAND AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_3909_36.01,-74.56349919,39.4147093,436 OAKLAND AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3909_36.02,-74.47081651,39.34296264,438 OAKLAND AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3909_36.03,-74.62195408,39.41997956,440 OAKLAND AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_3909_37,-74.6068285,39.3858155,442 OAKLAND AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_3909_38,-74.9679175,39.5059165,3 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_39,-74.935621,39.529585,5 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_4,-74.5771095,39.412105,8 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_3909_40,-74.5139515,39.441834,7 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_41,-74.8796767,39.60270659,9 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_42,-74.62257058,39.42226773,11 OAKVIEW DRIVE WEST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_44,-74.4618435,39.35514165,12 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_45,-74.60021354,39.36943081,10 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_46,-74.5308635,39.453653,8 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_47,-74.52408033,39.39677899,6 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_3909_48,-74.6200365,39.4385065,4 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_49,-74.5127205,39.43761,2 OAKVIEW DRIVE EAST,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_5,-74.6124215,39.32477706,10 WHITE OAK DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3909_50,-74.55528362,39.35924644,6542 MILL ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_51,-74.627662,39.3629565,6544 MILL ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_52,-74.52016683,39.32144254,1 CARY COURT,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_53,-74.58464998,39.47550639,2 CARY COURT,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_54,-74.35980287,39.41634492,3 CARY COURT,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_55,-74.96354852,39.51213241,4 CARY COURT,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_56,-74.48322757,39.34933474,5 CARY COURT,EGG HARBOR TWP,16,1979,1,GOV1,3004 -0108_3909_57,-74.49441752,39.33615567,6 CARY COURT,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_3909_58,-74.5429667,39.37544491,6550 MILL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_3909_6,-74.51451047,39.44177866,12 WHITE OAK DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_3909_60.37,-74.5124645,39.4423175,21 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_3909_60.38,-74.50364342,39.33218134,19 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3909_60.39,-74.39103,39.389388,17 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3909_60.41,-74.71125696,39.46599216,200 CRANBERRY COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3909_60.42,-74.80303258,39.49804172,202 CRANBERRY COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3909_60.43,-74.81419825,39.61232134,204 CRANBERRY COURT,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_3909_60.44,-74.60202837,39.33081964,206 CRANBERRY COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3909_60.45,-74.508241,39.322692,205 CRANBERRY COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3909_60.46,-74.57355418,39.34740206,203 CRANBERRY COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3909_60.47,-74.95195316,39.51472029,201 CRANBERRY COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_60.48,-74.5525715,39.379305,200 BLUEBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_60.49,-74.676609,39.357238,202 BLUEBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_60.51,-74.81323603,39.37301317,206 BLUEBERRY ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_3909_60.52,-74.57419171,39.34235675,205 BLUEBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_60.53,-74.56440814,39.47537627,203 BLUEBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_60.54,-74.5900965,39.428348,201 BLUEBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_60.55,-74.79717371,39.65170416,5 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_60.56,-74.8625165,39.56453,3 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_60.57,-74.8817765,39.6040535,1 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3909_7,-74.45295101,39.35357634,14 WHITE OAK DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_3911_60.01,-74.47025317,39.3456755,2 WINTERBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3911_60.02,-74.502119,39.338519,4 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3911_60.03,-74.84920911,39.6103681,6 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3911_60.04,-74.49049949,39.33535614,8 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3911_60.05,-74.786778,39.605481,10 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,COM3,3004 -0108_3911_60.06,-74.5690135,39.3557115,12 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3911_60.07,-74.520985,39.463323,14 WINTERBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3911_60.08,-74.48755619,39.35133974,16 WINTERBERRY ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3911_60.09,-74.753186,39.4538705,18 WINTERBERRY ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3911_62,-74.68876906,39.35872178,6566 MILL ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_3911_63,-74.8155215,39.633098,6568 MILL ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_3911_64.01,-74.56652675,39.3560616,6572 MILL ROAD,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_3911_64.02,-74.78840622,39.44303197,6576 MILL ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_3912_60.11,-74.55434,39.4679065,22 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.12,-74.54850469,39.54482845,24 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_3912_60.13,-74.7231155,39.4578115,26 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_3912_60.14,-74.61060397,39.32362166,28 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.15,-74.373581,39.411388,30 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.16,-74.497398,39.3376005,32 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.18,-74.63024852,39.41963654,34 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.19,-74.50086817,39.32754596,27 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.21,-74.621308,39.4497105,23 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.22,-74.46178865,39.35726294,21 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.23,-74.49646189,39.33198133,19 WINTERBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3912_60.24,-74.80552624,39.64238533,17 WINTERBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.25,-74.4986345,39.335646,20 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.26,-74.55578092,39.46641422,22 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_3912_60.27,-74.59909208,39.41059781,24 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3912_60.28,-74.53867167,39.45462355,26 SUGARBERRY ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_3912_60.29,-74.80363834,39.63747951,28 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3912_60.31,-74.927282,39.519796,32 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3912_60.32,-74.482892,39.353221,34 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3912_60.33,-74.54568278,39.47460391,36 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3912_60.34,-74.663284,39.400662,38 SUGARBERRY ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_3912_60.35,-74.605675,39.420584,40 SUGARBERRY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4001_58,-74.7104112,39.47108008,5007 TREMONT AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_4001_59,-74.8289745,39.494789,5011 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4001_60,-74.5920745,39.320449,5019 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4001_61,-74.75270168,39.47457847,5021 TREMONT AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_4001_62,-74.60868979,39.59211208,5023 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4001_63,-74.849506,39.5592775,5027 TREMONT AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4001_65,-74.48439673,39.35099314,5031 TREMONT AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4001_66,-74.7428475,39.4126535,5039 TREMONT AVENUE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_4001_67,-74.7249815,39.454516,5041 TREMONT AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4001_68,-74.49101147,39.4369097,5043 TREMONT AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4001_69,-74.64056997,39.53123894,5045 TREMONT AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3004 -0108_4001_70,-74.44782922,39.37485008,5047 TREMONT AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3004 -0108_4001_71,-74.52651742,39.44983766,5049 TREMONT AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_4001_72,-74.4962845,39.3309325,5051 TREMONT AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4001_73,-74.67537221,39.35708815,5055 TREMONT AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_4001_74,-74.53533047,39.30550659,5057 TREMONT AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_4001_75,-74.418433,39.3683005,5059 TREMONT AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_4001_76,-74.5047115,39.332115,5061 TREMONT AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_4003_1,-74.500717,39.4313255,5012 TREMONT AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_4004_1,-74.3849515,39.3929205,200 OAKLAND AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4004_10,-74.6029595,39.385626,5044 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4004_100,-74.63861845,39.40754494,206 OAKLAND AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_4004_101,-74.37064317,39.40166498,202 OAKLAND AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4004_11,-74.49020533,39.3371605,5042 TREMONT AVENUE,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_4004_11.01,-74.9418173,39.52165966,5040 TREMONT AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4004_12,-74.7737245,39.623187,5038 TREMONT AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4004_12.01,-74.5141625,39.507579,5036 TREMONT AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4004_13,-74.56816106,39.41169175,5034 TREMONT AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4004_14,-74.70033575,39.63863148,5032 TREMONT AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4004_15,-74.51845183,39.40343397,5030 TREMONT AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_4004_19,-74.54760728,39.47314944,5020 TREMONT AVENUE,EGG HARBOR TWP,16,1988,1,IND1,3004 -0108_4004_2,-74.51449369,39.32082327,5058 TREMONT AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4004_20,-74.57661225,39.35094345,5018 TREMONT AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_4004_21,-74.6254235,39.5287305,5016 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4004_3,-74.52735,39.3844435,5054 TREMONT AVENUE,EGG HARBOR TWP,16,2012,1,GOV1,3004 -0108_4004_61,-74.48753731,39.34956816,5001 FERNWOOD AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_4004_62,-74.82692616,39.407928,5003 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4004_63,-74.568434,39.41385466,5005 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4004_64,-74.508597,39.4049205,5007 FERNWOOD AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_4004_65,-74.51208148,39.33945064,5009 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4004_66,-74.58414511,39.36033432,5011 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4004_67,-74.749756,39.5933935,5013 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES3A,3001 -0108_4004_68,-74.63809399,39.53330098,5015 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4004_69,-74.93569794,39.52423385,5017 FERNWOOD AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_4004_7,-74.46681641,39.49339025,5050 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,RES3A,3001 -0108_4004_70,-74.48645567,39.34818401,5021 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES3B,3001 -0108_4004_71,-74.53211432,39.40011148,5023 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4004_72,-74.5757475,39.480447,5025 FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4004_72.01,-74.8289655,39.6413435,5029 FERNWOOD AVENUE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_4004_74,-74.4633454,39.3470203,5037 FERNWOOD AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4004_75,-74.75774477,39.43364953,5041 FERNWOOD AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4004_8,-74.57610386,39.42036161,5048 TREMONT AVENUE,EGG HARBOR TWP,16,1990,1,COM1,3004 -0108_4004_89,-74.78444264,39.64371396,5045 FERNWOOD AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4004_9,-74.5121365,39.399155,5046 TREMONT AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4004_90,-74.70965101,39.57164283,5047 FERNWOOD AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_4004_91,-74.55237431,39.38258707,5049 FERNWOOD AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_4004_92,-74.52327584,39.38553403,222 OAKLAND AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_4004_93,-74.38393583,39.3999735,220 OAKLAND AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4004_96,-74.594198,39.401544,218 OAKLAND AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_4004_97,-74.59374104,39.34148436,214 OAKLAND AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4004_98,-74.56636366,39.35914104,212 OAKLAND AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_4004_99,-74.70900011,39.6341143,208 OAKLAND AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4005_10,-74.55524729,39.47545896,5016 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4005_122,-74.59456901,39.34162568,76 LA COSTA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_123,-74.79604242,39.63380778,5046A FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_4005_124,-74.812194,39.627006,5046 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_125,-74.867497,39.59429,5044A FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_126,-74.4881445,39.437803,5044 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_127,-74.58050014,39.32987042,5042A FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_128,-74.5713505,39.3511895,5042 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_129,-74.56641567,39.35623005,5040A FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_13,-74.72920238,39.58093982,5004 FERNWOOD AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_4005_130,-74.53898072,39.46017507,5040 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_131,-74.54771678,39.47700343,5038A FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_132,-74.7328375,39.590372,5038 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_133,-74.399097,39.385963,5036A FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4005_134,-74.614285,39.338004,5036 FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4005_135,-74.59989426,39.37875963,5034A FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_4005_136,-74.84051004,39.47973387,5034 FERNWOOD AVENUE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_4005_137,-74.507471,39.461709,5032A FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4005_138,-74.89031986,39.55712545,5032 FERNWOOD AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_4005_139,-74.85152535,39.40473098,5030A FERNWOOD AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4005_140,-74.4893155,39.3376035,5030 FERNWOOD AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_141,-74.661032,39.35858066,102 SAN CARLOS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4005_142,-74.5933305,39.3235165,103 SAN CARLOS COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_143,-74.80318915,39.63844804,104 SAN CARLOS COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_15,-74.82424794,39.4886919,13 NINTH AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_4005_16,-74.560098,39.4157115,15 NINTH AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4005_17,-74.50218327,39.43567903,17 NINTH AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_4005_18,-74.52794969,39.39349642,19 NINTH AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4005_19,-74.75391793,39.59774883,5001 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4005_20,-74.91857569,39.49277483,5003 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4005_200,-74.5059635,39.517105,74 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_201,-74.54038268,39.45896067,72 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_202,-74.63271299,39.35157967,70 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_203,-74.5164175,39.321937,68 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_204,-74.5752505,39.3493815,66 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_205,-74.728766,39.5891745,64 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_4005_206,-74.797258,39.6338675,62 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_207,-74.557834,39.3962705,60 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_208,-74.589737,39.3199845,58 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_209,-74.68151059,39.35411814,56 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_21,-74.606692,39.618501,5005 RIDGE AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_4005_210,-74.878668,39.5979465,54 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_4005_211,-74.6395026,39.33817463,52 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_212,-74.80886356,39.63599982,50 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_213,-74.5869245,39.3807015,48 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_214,-74.49264661,39.4941992,100 SAN CARLOS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4005_215,-74.86630363,39.6012333,101 SAN CARLOS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4005_22,-74.69739526,39.63308488,5007 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4005_23,-74.53319385,39.39773483,5011 RIDGE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4005_24,-74.61052452,39.34061541,5013 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3002 -0108_4005_25,-74.6177649,39.41917105,5017 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4005_26,-74.46215634,39.35318459,5019 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4005_29,-74.49657316,39.42517032,5031 RIDGE AVENUE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_4005_39,-74.57236311,39.5533557,44 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4005_4,-74.51498881,39.39402058,5028 FERNWOOD AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4005_40,-74.53415167,39.44929081,42 LA COSTA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_41,-74.582356,39.4323745,40 LA COSTA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_42,-74.49018239,39.45823436,38 LA COSTA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_43,-74.64519307,39.53547633,36 LA COSTA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4005_44,-74.51176284,39.328383,34 LA COSTA DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4005_45,-74.8159281,39.41145017,32 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4005_46,-74.6290657,39.39069147,30 LA COSTA DRIVE,EGG HARBOR TWP,16,1996,1,RES3A,3001 -0108_4005_47,-74.50517786,39.32838203,100 DEL MAR COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4005_48,-74.79650735,39.63865917,102 DEL MAR COURT,EGG HARBOR TWP,16,1996,1,RES3A,3001 -0108_4005_49,-74.54620691,39.5102389,104 DEL MAR COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4005_50,-74.734131,39.438406,106 DEL MAR COURT,EGG HARBOR TWP,16,1996,1,COM1,3004 -0108_4005_51,-74.7000635,39.484259,110 DEL MAR COURT,EGG HARBOR TWP,16,1995,1,RES3A,3001 -0108_4005_52,-74.5749895,39.481404,112 DEL MAR COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4005_53,-74.6335725,39.419065,114 DEL MAR COURT,EGG HARBOR TWP,16,1995,1,RES3A,3001 -0108_4005_54,-74.53397002,39.37739566,115 DEL MAR COURT,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_4005_55,-74.56743381,39.50339236,113 DEL MAR COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4005_56,-74.765098,39.350824,111 DEL MAR COURT,EGG HARBOR TWP,16,1996,1,COM1,3004 -0108_4005_57,-74.6151234,39.34023647,109 DEL MAR COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4005_58,-74.6704595,39.463102,107 DEL MAR COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4005_59,-74.6904439,39.44630229,105 DEL MAR COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4005_6,-74.568482,39.34340337,5022 FERNWOOD AVENUE,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_4005_60,-74.40131143,39.38472866,18 LA COSTA DRIVE,EGG HARBOR TWP,16,1996,1,RES3B,3001 -0108_4005_61,-74.5858585,39.425185,16 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_4005_62,-74.6207905,39.379715,14 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4005_63,-74.64002031,39.3810923,12 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4005_64,-74.52266307,39.31358665,10 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4005_65,-74.5615625,39.3918645,8 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4005_66,-74.935129,39.525804,6 LA COSTA DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_4005_67,-74.6036815,39.315356,4 LA COSTA DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4005_68,-74.439537,39.5160695,2 LA COSTA DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_4005_7,-74.50460515,39.32570502,5020 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4005_8,-74.43758867,39.36482233,5018 FERNWOOD AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4006_1,-74.5650405,39.360453,7 CORONADO LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4006_10,-74.8119915,39.6544815,124 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4006_11,-74.37083658,39.40687583,122 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4006_12,-74.460985,39.488938,120 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4006_13,-74.59810719,39.41157655,118 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_4006_14,-74.49309401,39.46570417,116 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4006_15,-74.529034,39.4037475,114 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4006_16,-74.5005935,39.4899195,112 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4006_17,-74.675604,39.508451,110 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4006_18,-74.493286,39.495789,108 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4006_19,-74.57721719,39.36623242,106 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4006_2,-74.86926416,39.43888069,140 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4006_20,-74.881341,39.596423,104 BONITA DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4006_21,-74.43407,39.365357,102 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4006_22,-74.87954253,39.59265021,100 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4006_23,-74.636713,39.5301865,5 CORONADO LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4006_3,-74.60448799,39.50004333,138 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES3A,3001 -0108_4006_4,-74.555417,39.4704115,136 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES3A,3001 -0108_4006_5,-74.48544795,39.43130596,134 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4006_6,-74.50758027,39.53189923,132 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4006_7,-74.756793,39.449225,130 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES3A,3001 -0108_4006_8,-74.68956203,39.49602516,128 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_4006_9,-74.451308,39.4844045,126 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_1,-74.48342018,39.34724997,5048 FERNWOOD AVENUE,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_4007_100,-74.45869,39.489431,9 CORONADO LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4007_101,-74.80759843,39.61400579,11 CORONADO LANE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_4007_102,-74.384875,39.3922855,13 CORONADO LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_103,-74.58781232,39.34713455,15 CORONADO LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_104,-74.60476933,39.33349175,17 CORONADO LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_105,-74.568881,39.5195615,19 CORONADO LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_106,-74.76040998,39.63962333,21 CORONADO LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_107,-74.926755,39.4832065,23 CORONADO LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_108,-74.68370681,39.49444767,59 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_109,-74.85772071,39.56804811,61 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_110,-74.54498567,39.37148399,63 LA COSTA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4007_111,-74.68067391,39.41579021,65 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_112,-74.9247525,39.509865,67 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_113,-74.59884607,39.3611667,69 LA COSTA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4007_114,-74.7057215,39.446465,100 LAMESA COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4007_115,-74.64135121,39.52946166,101 LAMESA COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_116,-74.56901228,39.47991124,102 LAMESA COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_117,-74.61275,39.3983385,103 LAMESA COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_118,-74.76611466,39.60715948,104 LAMESA COURT,EGG HARBOR TWP,16,2001,1,RES1,3004 -0108_4007_119,-74.60015681,39.32142095,105 LAMESA COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4007_120,-74.94513419,39.52416295,73 LA COSTA DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_4007_121,-74.50008643,39.44834413,75 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_31,-74.7330915,39.5905615,5043 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4007_34,-74.50406876,39.34053817,316 OAKLAND AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4007_35,-74.60894136,39.3857525,312 OAKLAND AVENUE,EGG HARBOR TWP,,0,1,RES1,3002 -0108_4007_36,-74.5997705,39.5000195,310 OAKLAND AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4007_37,-74.49733247,39.33533169,306 OAKLAND AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4007_38,-74.85664568,39.43792144,304 OAKLAND AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_4007_69,-74.95258766,39.51424286,1 LA COSTA DRIVE,EGG HARBOR TWP,16,2002,1,RES3A,3002 -0108_4007_70,-74.94746852,39.52575998,3 LA COSTA DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_4007_71,-74.6873285,39.557039,5 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_72,-74.68433576,39.49465709,7 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4007_73,-74.53136648,39.37940084,9 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES3A,3001 -0108_4007_74,-74.486788,39.494326,11 LA COSTA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_75,-74.58214571,39.38192287,1 CORONADO LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4007_76,-74.7244525,39.456531,3 CORONADO LANE,EGG HARBOR TWP,16,1996,1,RES1,3002 -0108_4007_77,-74.58386057,39.32576185,103 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_4007_78,-74.50857082,39.44460808,105 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_79,-74.81219192,39.52296129,107 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_80,-74.8651725,39.494729,109 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_81,-74.64274999,39.33910717,111 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4007_82,-74.824758,39.497114,113 BONITA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4007_83,-74.887996,39.597708,115 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3002 -0108_4007_84,-74.4922432,39.46702555,117 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_85,-74.60645644,39.3760142,119 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4007_87,-74.5751505,39.4160525,123 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_88,-74.55798672,39.36573472,125 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_4007_89,-74.59872459,39.34234818,127 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4007_90,-74.505036,39.412874,129 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4007_91,-74.695446,39.5616415,131 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4007_92,-74.55082473,39.3766612,133 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3002 -0108_4007_93,-74.48823831,39.33866808,135 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_94,-74.60854286,39.3214776,137 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_95,-74.65645594,39.35845318,139 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_4007_96,-74.6624075,39.4458455,141 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4007_97,-74.48783354,39.33851017,143 BONITA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4007_98,-74.59892781,39.35924638,145 BONITA DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4007_99,-74.83828876,39.59404312,147 BONITA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4008_145,-74.3662245,39.412742,13 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4008_146,-74.5697315,39.364605,15 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4008_147,-74.626084,39.352615,17 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4008_148,-74.62795585,39.42826701,19 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4008_149,-74.81764907,39.44399012,21 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4008_150,-74.547129,39.473083,23 LA COSTA DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4008_151,-74.60573693,39.32627867,25 LA COSTA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4008_152,-74.91349732,39.53196848,27 LA COSTA DRIVE,EGG HARBOR TWP,16,1997,1,COM1,3004 -0108_4008_153,-74.63576883,39.4324696,29 LA COSTA DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4008_154,-74.8128956,39.60448714,31 LA COSTA DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3004 -0108_4008_155,-74.4580685,39.3506485,33 LA COSTA DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4008_156,-74.76652813,39.30819211,35 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_157,-74.8534825,39.5390775,37 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_158,-74.5627465,39.356938,39 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_159,-74.5559825,39.5019365,41 LA COSTA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4008_160,-74.83567957,39.59823165,43 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_161,-74.5734565,39.3586915,45 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_162,-74.7558705,39.45352,47 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_163,-74.6041165,39.617796,49 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_164,-74.48739662,39.49680095,51 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_165,-74.4792729,39.33749207,53 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_166,-74.497364,39.4687055,55 LA COSTA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_167,-74.50341623,39.50198131,100 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_4008_168,-74.586612,39.3353905,101 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_169,-74.626991,39.337479,102 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_4008_170,-74.448842,39.496207,103 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_171,-74.59926826,39.32004086,104 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_172,-74.75678035,39.30016785,105 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_173,-74.43639118,39.4874593,106 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_174,-74.9447355,39.5325645,107 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_175,-74.5462315,39.3771285,108 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_176,-74.52817817,39.46773708,109 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_177,-74.44352434,39.37417715,110 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_178,-74.60264467,39.32395701,111 CARLSBAD COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4008_179,-74.86581871,39.59750936,12 CORONADO LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4008_180,-74.62250183,39.51166799,10 CORONADO LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_401_15,-74.498213,39.5189125,6574 DELILAH ROAD,EGG HARBOR TWP,16,1973,1,AGR1,3001 -0108_404_1,-74.51610446,39.39443819,1 CANALE DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_404_12,-74.50448099,39.33432333,102 EAST PARKWAY DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_404_13,-74.639079,39.382357,200 WEST PARKWAY DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_404_15,-74.87062339,39.59876838,202 WEST PARKWAY DRIVE,EGG HARBOR TWP,,0,1,AGR1,3001 -0108_404_2,-74.5355665,39.378856,6595 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_404_37,-74.480553,39.3486375,206 WEST PARKWAY DRIVE,EGG HARBOR TWP,,1984,1,RES1,3001 -0108_404_4,-74.51991177,39.46498937,100 CENTURY DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_405_1,-74.53450544,39.38353035,11 CANALE DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_405_2,-74.79601845,39.53325069,5 CANALE DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_405_3,-74.4592565,39.348504,115 EAST PARKWAY DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_405_4,-74.59456779,39.31348361,111 EAST PARKWAY DRIVE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_406_1,-74.5271075,39.396252,207 WEST PARKWAY DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_406_10,-74.49030108,39.47851556,205 WEST PARKWAY DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_406_2,-74.483338,39.346023,304 COMMERCE DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_406_5,-74.59600932,39.50638443,4 CANALE DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_406_7,-74.628507,39.366287,8 CANALE DRIVE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_406_8,-74.70828724,39.41621868,10 CANALE DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_407_1,-74.63474544,39.31835755,115 FORK ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_407_3,-74.5356615,39.383908,6573 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_407_4,-74.3974225,39.3949,6575 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_407_5,-74.5768395,39.421866,6577 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_407_6,-74.51480618,39.44611724,6581 DELILAH ROAD,EGG HARBOR TWP,,0,1,COM1,3004 -0108_407_7,-74.91753771,39.48158184,6587 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4101_13,-74.785895,39.6095285,5065 TREMONT AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_4101_14,-74.72239624,39.6382996,5067 TREMONT AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_4101_20,-74.36502685,39.41336236,5069 TREMONT AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4101_21,-74.510863,39.338898,5071 TREMONT AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4101_22,-74.925966,39.5193955,5073 TREMONT AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3002 -0108_4101_23,-74.60127868,39.38158416,5075 TREMONT AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_4101_24,-74.4831549,39.33992599,5077 TREMONT AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4101_25,-74.6435279,39.42695889,5079 TREMONT AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4101_26,-74.63974967,39.40877693,5081 TREMONT AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_4101_27,-74.523526,39.4190565,5083 TREMONT AVENUE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_4101_28,-74.58671687,39.38382315,5085 TREMONT AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4101_32,-74.573331,39.3428225,5087 TREMONT AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_4101_33,-74.400212,39.3873945,5089 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4101_34,-74.83201807,39.42588922,5091 TREMONT AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4101_35,-74.62807754,39.39078469,5097 TREMONT AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4101_40,-74.6449035,39.394547,5107 TREMONT AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_4101_41,-74.56515129,39.41699636,5109 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4101_42,-74.9526235,39.5284345,6220 MILL ROAD,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_4101_43,-74.3805795,39.3989525,6218 MILL ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4101_44,-74.63814242,39.40898375,6216 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4101_45,-74.45812947,39.46144998,6214 MILL ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_4101_46.01,-74.38219923,39.39259731,6212 MILL ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4101_46.02,-74.6080825,39.3247065,6210 MILL ROAD,EGG HARBOR TWP,16,1996,1,RES3B,3001 -0108_4101_47.01,-74.63924308,39.43371912,6208 MILL ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4101_47.02,-74.50810547,39.41930825,6206 MILL ROAD,EGG HARBOR TWP,15,1958,1,GOV1,3004 -0108_4101_47.03,-74.607108,39.323183,6204 MILL ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4102_10.01,-74.74768563,39.44637831,221 OAKLAND AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4102_10.02,-74.88520107,39.46181354,219 OAKLAND AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_4102_10.03,-74.8576655,39.563663,217 OAKLAND AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_4102_11,-74.372402,39.407291,223 OAKLAND AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_4102_12,-74.56560769,39.36964594,5055 FERNWOOD AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_4102_13,-74.556561,39.397286,5057 FERNWOOD AVENUE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_4102_14,-74.9390115,39.515711,5059 FERNWOOD AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_4102_15,-74.504109,39.3314465,5063 FERNWOOD AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_4102_16,-74.91116365,39.51202773,5067 FERNWOOD AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4102_18,-74.55304029,39.36911198,5071 FERNWOOD AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4102_20,-74.59144069,39.36591739,5081 FERNWOOD AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_4102_21,-74.96546537,39.51269485,6330 MILL ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_4102_23,-74.58731497,39.32317218,6326 MILL ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4102_26,-74.47636054,39.48565943,6318 MILL ROAD,EGG HARBOR TWP,16,1936,1,GOV1,3004 -0108_4102_27,-74.713018,39.569708,6314 MILL ROAD,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_4102_29,-74.4750185,39.483249,6310 MILL ROAD,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_4102_3,-74.39515396,39.39212802,203 OAKLAND AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4102_31,-74.51215393,39.32641083,6304 MILL ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_4102_34,-74.8200285,39.540775,5106 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4102_35,-74.63845726,39.40003409,5104 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4102_37,-74.67713819,39.3542572,5098 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4102_38,-74.75396448,39.42906082,5096 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4102_39,-74.88715287,39.57757735,5094 TREMONT AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_4102_4,-74.440633,39.37171383,205 OAKLAND AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_4102_40,-74.4876305,39.3364655,5092 TREMONT AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_4102_41,-74.64078519,39.62083603,5090 TREMONT AVENUE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_4102_43,-74.50821281,39.48796526,5086 TREMONT AVENUE,EGG HARBOR TWP,16,2018,1,RES1,3001 -0108_4102_45,-74.8172395,39.653719,5082 TREMONT AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_4102_46,-74.781198,39.6791665,5076 TREMONT AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4102_47,-74.67952275,39.38432847,5074 TREMONT AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_4102_49,-74.4841428,39.43371322,5066 TREMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4102_5,-74.60884645,39.49020095,207 OAKLAND AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_4102_6,-74.46402417,39.35328644,209 OAKLAND AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_4102_7,-74.58353084,39.51661652,211 OAKLAND AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_4102_8,-74.61389868,39.3984306,213 OAKLAND AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4102_9,-74.49401737,39.33226691,215 OAKLAND AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4103_1,-74.85171741,39.40455599,5052 FERNWOOD AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_4103_10,-74.52582108,39.45761641,321 OAKLAND AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4103_11.01,-74.60013297,39.41254819,327 OAKLAND AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_4103_11.02,-74.50859134,39.33451105,323 OAKLAND AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_4103_11.03,-74.63664261,39.43571307,325 OAKLAND AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_4103_11.04,-74.59875208,39.43531979,329 OAKLAND AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_4103_12,-74.45903122,39.46214139,5057 RIDGE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4103_13.01,-74.42974446,39.37564812,42 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_4103_13.02,-74.75104035,39.45251704,40 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.03,-74.49498076,39.44910045,38 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_4103_13.04,-74.56689805,39.34575477,36 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.05,-74.86524802,39.56605033,34 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.06,-74.52560917,39.3935655,32 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.07,-74.4987695,39.41759366,30 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.08,-74.47429378,39.48545151,28 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.09,-74.82212962,39.65525741,26 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.10,-74.59109396,39.41678718,24 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_4103_13.11,-74.56187519,39.55220397,22 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.12,-74.5874129,39.35429558,20 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.13,-74.56771053,39.55639067,18 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.14,-74.528726,39.383836,16 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.15,-74.63772264,39.40062035,14 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.16,-74.5865495,39.4239295,12 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.17,-74.365065,39.4150485,10 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.18,-74.6061735,39.41013,8 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.19,-74.49581089,39.47763752,6 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3002 -0108_4103_13.20,-74.47413107,39.48496534,4 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_13.21,-74.51042335,39.44184823,2 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4103_15,-74.49804617,39.33218599,6426 MILL ROAD,EGG HARBOR TWP,,1900,1,RES1,3001 -0108_4103_16,-74.60009032,39.31865194,6422 MILL ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_4103_17.01,-74.47885919,39.34652316,2 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4103_17.02,-74.74706994,39.39514218,4 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4103_17.03,-74.566268,39.3558815,6 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4103_17.04,-74.46733844,39.49088533,8 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4103_17.05,-74.68118851,39.38664427,10 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4103_17.06,-74.6019005,39.4976335,12 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4103_17.07,-74.8693375,39.4949735,14 OLIVIA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4103_17.08,-74.42525468,39.36654896,16 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4103_17.09,-74.53884252,39.37176628,18 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4103_17.10,-74.50437683,39.43054449,20 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_4103_17.11,-74.61672749,39.38164553,22 OLIVIA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4103_17.12,-74.51018326,39.40377647,24 OLIVIA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4103_17.13,-74.5149105,39.4130155,26 OLIVIA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4103_17.14,-74.6432265,39.5311445,28 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_4103_17.15,-74.660904,39.633339,30 OLIVIA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4103_17.17,-74.5148975,39.326585,32 OLIVIA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4103_19,-74.46963989,39.34219683,6410 MILL ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_4103_2,-74.629038,39.4620725,303 OAKLAND AVENUE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_4103_20.01,-74.505041,39.3384655,101 SANDLEWOOD ROAD,EGG HARBOR TWP,16,2017,1,GOV1,3004 -0108_4103_20.02,-74.54929471,39.47367555,103 SANDLEWOOD ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_4103_20.03,-74.5652265,39.390553,105 SANDLEWOOD ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_4103_20.04,-74.45154568,39.49640483,107 SANDLEWOOD ROAD,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_4103_20.05,-74.44455,39.4852115,11 MOONLIGHT DRIVE,EGG HARBOR TWP,16,2012,1,GOV1,3004 -0108_4103_20.06,-74.51860182,39.41055944,9 MOONLIGHT DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_4103_20.07,-74.49454529,39.33557471,7 MOONLIGHT DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_4103_20.08,-74.579047,39.429897,5 MOONLIGHT DRIVE,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_4103_20.09,-74.60163158,39.31931757,3 MOONLIGHT DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_4103_20.10,-74.55765484,39.39803421,1 MOONLIGHT DRIVE,EGG HARBOR TWP,16,2013,1,RES3B,3001 -0108_4103_22,-74.881411,39.5953525,5070 FERNWOOD AVENUE,EGG HARBOR TWP,13,1930,1,RES1,3001 -0108_4103_24,-74.7801195,39.640829,5062 FERNWOOD AVENUE,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_4103_25,-74.642641,39.339612,5058 FERNWOOD AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_4103_26,-74.65092937,39.45921201,5056 FERNWOOD AVENUE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_4103_3,-74.40416852,39.38119061,305 OAKLAND AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3002 -0108_4103_4.01,-74.520145,39.395248,307 OAKLAND AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4103_4.02,-74.72237536,39.58801661,309 OAKLAND AVENUE,EGG HARBOR TWP,16,1999,1,REL1,3004 -0108_4103_5,-74.52126631,39.46939435,311 OAKLAND AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4103_6,-74.59573692,39.31333067,313 OAKLAND AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4103_7,-74.479746,39.4550035,315 OAKLAND AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4103_8,-74.59163612,39.34863892,317 OAKLAND AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_4103_9,-74.50011146,39.33643983,319 OAKLAND AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4104_10,-74.62660851,39.3656065,5 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4104_11,-74.519331,39.3830845,3 OLIVIA DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_4104_12,-74.77520113,39.65738094,1 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_4104_2,-74.44955513,39.35797225,21 OLIVIA DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4104_3,-74.57879982,39.33466648,19 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4104_4,-74.49088355,39.3779348,17 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4104_5,-74.37095794,39.40566548,15 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4104_6,-74.765193,39.6110985,13 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4104_7,-74.60989418,39.42264661,11 OLIVIA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4104_8,-74.916988,39.5136595,9 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4104_9,-74.5181095,39.3887765,7 OLIVIA DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_4105_10,-74.535655,39.3144165,102 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_11,-74.51053395,39.44005116,104 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_12,-74.54837328,39.47431195,106 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_13,-74.65091885,39.52119455,108 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_14,-74.47192906,39.4462437,110 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_15,-74.59326516,39.31686899,112 GLENROCK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_4105_2,-74.51172541,39.32083787,13 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_3,-74.551372,39.384941,11 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_4105_4,-74.631875,39.4589065,9 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_5,-74.55869965,39.39841501,7 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_6,-74.53460251,39.38792035,5 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_7,-74.568162,39.3693055,3 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_8,-74.64139087,39.53555383,1 HIGHLAND CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4105_9,-74.64101983,39.52395732,100 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_4106_1,-74.35891492,39.41167511,113 GLENROCK ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_4106_10,-74.5056145,39.333196,104 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4106_11,-74.843568,39.4129385,106 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4106_12,-74.477145,39.4951395,108 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4106_13,-74.55633774,39.35922014,110 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4106_2,-74.52592303,39.31613081,111 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_4106_3,-74.7875915,39.6350045,109 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_4106_4,-74.7888275,39.6330785,107 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4106_5,-74.5482075,39.3682755,105 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4106_6,-74.58849489,39.32455266,103 GLENROCK ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4106_7,-74.60725921,39.34098958,101 GLENROCK ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_4106_8,-74.55567688,39.47796932,100 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4106_9,-74.58919,39.4125975,102 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_4107_1,-74.47108349,39.50939801,111 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_10,-74.86969092,39.59278622,5065 RIDGE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_11,-74.49915284,39.43492699,5067 RIDGE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_12,-74.61666298,39.32028287,5069 RIDGE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_2,-74.63062896,39.52273689,109 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_3,-74.6382995,39.4023885,107 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_4,-74.48388468,39.43806601,105 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_5,-74.62952534,39.46424302,103 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_6,-74.604601,39.40975623,101 GATEWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_7,-74.95099545,39.49611328,5059 RIDGE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_8,-74.62822014,39.45951607,5061 RIDGE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4107_9,-74.53708367,39.38765992,5063 RIDGE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_4109_1,-74.69904096,39.57809402,100 SANDLEWOOD ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_4109_2,-74.71477684,39.57809002,102 SANDLEWOOD ROAD,EGG HARBOR TWP,16,2016,1,GOV1,3004 -0108_4109_3,-74.64453932,39.4354973,104 SANDLEWOOD ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_4109_4,-74.54676668,39.40077651,101 JASMINE ROAD,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_4109_5,-74.61293971,39.34737024,103 JASMINE ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_4109_6,-74.5739815,39.3709705,105 JASMINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_4110_1,-74.70446786,39.59210461,100 JASMINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_4110_2,-74.589031,39.4154555,102 JASMINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_4110_3,-74.50991605,39.33087017,104 JASMINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_4110_4,-74.60651345,39.3848222,101 ORCHID ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_4110_5,-74.60488667,39.51962,103 ORCHID ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_4110_6,-74.942418,39.49745,105 ORCHID ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_4111_2,-74.51025182,39.32286367,102 ORCHID ROAD,EGG HARBOR TWP,16,2012,1,GOV1,3004 -0108_4111_3,-74.591028,39.3493215,2 MOONLIGHT DRIVE,EGG HARBOR TWP,16,2011,1,GOV1,3004 -0108_414_9,-74.69122399,39.57397845,6539 DELILAH ROAD,EGG HARBOR TWP,16,1945,1,GOV1,3004 -0108_415_2,-74.52556715,39.44753696,6529 DELILAH ROAD,EGG HARBOR TWP,16,1962,1,GOV1,3004 -0108_415_3,-74.60861065,39.50364671,6531 DELILAH ROAD,EGG HARBOR TWP,,1965,1,GOV1,3004 -0108_418_1,-74.598379,39.4351725,6599 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_418_2,-74.82065597,39.37342131,100 THRASHER AVENUE,EGG HARBOR TWP,16,1905,1,RES3A,3001 -0108_419_2,-74.6281755,39.4144115,205 ATLANTIC AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_420_1,-74.64876762,39.35508567,207 ATLANTIC AVENUE,EGG HARBOR TWP,16,1901,1,RES1,3001 -0108_420_2,-74.52251816,39.31349453,209 ATLANTIC AVENUE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_4201_1,-74.48766117,39.33395571,100 LYONS COURT,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4201_10,-74.61600027,39.3927396,112 LYONS COURT,EGG HARBOR TWP,16,1928,1,RES3B,3001 -0108_4201_11,-74.50801331,39.33661333,110 LYONS COURT,EGG HARBOR TWP,16,1925,1,GOV1,3004 -0108_4201_12,-74.60055904,39.40746984,108 LYONS COURT,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4201_13,-74.6325215,39.5257225,106 LYONS COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4201_14,-74.655624,39.396731,104 LYONS COURT,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4201_15,-74.36764183,39.42203802,102 LYONS COURT,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_4201_2,-74.4714045,39.493594,101 FRANKFORT COURT,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_4201_3,-74.49187566,39.335041,103 FRANKFORT COURT,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_4201_4,-74.608621,39.5021105,105 FRANKFORT COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4201_5,-74.7804545,39.609003,107 FRANKFORT COURT,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4201_6,-74.60303244,39.49617975,109 FRANKFORT COURT,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4201_7,-74.54493953,39.37310566,111 FRANKFORT COURT,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4201_8,-74.72271582,39.58237177,7000 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4202_1,-74.94635493,39.53810603,102 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4202_2,-74.56255127,39.41540857,7006 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_4202_3,-74.64554979,39.34412047,7004 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4202_4,-74.59420391,39.42888571,110 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4202_5,-74.570586,39.4131225,108 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4202_6,-74.78205211,39.31290569,106 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,GOV1,3004 -0108_4202_7,-74.77737884,39.61425402,104 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4203_1,-74.653893,39.557166,102 TOULON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_4203_2,-74.501925,39.469354,101 GENOA AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_4203_3,-74.6098754,39.43969742,103 GENOA AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4203_4,-74.37076438,39.40622235,105 GENOA AVENUE,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_4203_6,-74.4000016,39.38895515,109 GENOA AVENUE,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_4203_7,-74.5904115,39.3500705,7010 BLACK HORSE PIKE,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_4203_8,-74.79457928,39.63885618,7008 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4203_9,-74.48402416,39.34011701,108 TOULON AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_4204_1,-74.670727,39.555748,100 GENOA AVENUE,EGG HARBOR TWP,27,1906,1,RES1,3001 -0108_4204_10,-74.5182803,39.32237879,118 GENOA AVENUE,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_4204_11,-74.49078907,39.51832722,116 GENOA AVENUE,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_4204_12,-74.66350406,39.45437749,114 GENOA AVENUE,EGG HARBOR TWP,28,1906,2,GOV1,3004 -0108_4204_13,-74.5247098,39.38744682,112 GENOA AVENUE,EGG HARBOR TWP,28,1906,2,RES1,3001 -0108_4204_14,-74.716359,39.4006575,110 GENOA AVENUE,EGG HARBOR TWP,28,1906,2,GOV1,3004 -0108_4204_15,-74.63071614,39.40871097,108 GENOA AVENUE,EGG HARBOR TWP,28,1906,2,RES1,3001 -0108_4204_16,-74.75374245,39.45374718,106 GENOA AVENUE,EGG HARBOR TWP,28,1906,2,RES1,3001 -0108_4204_17,-74.538983,39.4079885,104 GENOA AVENUE,EGG HARBOR TWP,28,1906,2,RES1,3001 -0108_4204_18,-74.802442,39.647835,102 GENOA AVENUE,EGG HARBOR TWP,28,1906,2,RES1,3001 -0108_4204_2,-74.5001425,39.3281295,101 PALERMO AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4204_3,-74.62370579,39.40525194,103 PALERMO AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4204_4,-74.36023117,39.41551995,105 PALERMO AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3004 -0108_4204_5,-74.40143,39.3863515,107 PALERMO AVENUE,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_4204_6,-74.734591,39.450151,109 PALERMO AVENUE,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_4204_7,-74.732602,39.471185,111 PALERMO AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_4204_8,-74.546434,39.3804725,7014 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4205_1,-74.522638,39.3834335,7016 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4205_2,-74.94448132,39.52580605,7018 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_1,-74.50042511,39.48746106,7024 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_12,-74.6107635,39.3716145,7064 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_13,-74.63349302,39.44019316,7066 BLACK HORSE PIKE,EGG HARBOR TWP,,1970,1,RES3C,3001 -0108_4206_15,-74.5045095,39.430277,7070 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_2,-74.85795575,39.44728608,7034 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_3,-74.56643728,39.47598998,7042 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_4,-74.47320232,39.33933513,7044 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_5,-74.4363495,39.3708405,7048 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_6,-74.57742983,39.35312699,7050 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_7,-74.42351848,39.36774716,7052 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_8,-74.62896874,39.36508534,7054 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4206_9,-74.670286,39.3458155,7058 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_4207_1,-74.84545775,39.62220548,7001 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4207_10,-74.50343643,39.32707583,202 LYONS COURT,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4207_11,-74.60571832,39.48982608,200 LYONS COURT,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_4207_2,-74.57877053,39.4762762,201 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4207_3,-74.44728431,39.37113743,203 FRANKFORT COURT,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_4207_5,-74.37173492,39.40473213,207 FRANKFORT COURT,EGG HARBOR TWP,16,1927,1,RES1,3001 -0108_4207_6,-74.5032185,39.3325695,209 FRANKFORT COURT,EGG HARBOR TWP,16,1927,1,GOV2,3004 -0108_4207_7,-74.3593765,39.4159475,400 BAY DRIVE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_4207_8,-74.74831086,39.63555982,206 LYONS COURT,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4207_9,-74.80420694,39.64005965,204 LYONS COURT,EGG HARBOR TWP,16,1928,1,RES1,3001 -0108_4208_1,-74.6061745,39.3209615,7005 BLACK HORSE PIKE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_4208_10,-74.71386721,39.46770335,206 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4208_11,-74.46414793,39.34798283,204 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4208_2,-74.50963096,39.33729597,7007 BLACK HORSE PIKE,EGG HARBOR TWP,16,1929,2,RES1,3001 -0108_4208_3,-74.87676893,39.5952247,205 TOULON AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_4208_4,-74.8093565,39.313162,207 TOULON AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4208_5,-74.604588,39.596847,209 TOULON AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4208_6,-74.54619233,39.36882581,215 TOULON AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4208_8,-74.6100289,39.49338482,210 FRANKFORT COURT,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4208_9,-74.5451215,39.399541,208 FRANKFORT COURT,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4209_2,-74.39781785,39.38556605,201 GENOA AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_4209_3,-74.547788,39.389145,203 GENOA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4209_4,-74.6046,39.343227,205 GENOA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4209_5,-74.61262247,39.48612976,214 TOULON AVENUE,EGG HARBOR TWP,16,1928,1,RES1,3001 -0108_4209_6,-74.61715272,39.30793785,208 TOULON AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4209_7,-74.55187602,39.37468133,204 TOULON AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_421_2,-74.46848617,39.45837185,106 HAND AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4210_3,-74.60993262,39.41693621,203 PALERMO AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4210_4,-74.53956639,39.46674122,205 PALERMO AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4210_5,-74.79505721,39.63183851,207 PALERMO AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4210_6,-74.4289885,39.3723775,209 PALERMO AVENUE,EGG HARBOR TWP,17,2014,1,RES1,3001 -0108_4210_7,-74.660278,39.6355415,204 GENOA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4210_8,-74.36759086,39.40954657,202 GENOA AVENUE,EGG HARBOR TWP,16,1928,1,RES1,3001 -0108_4210_9,-74.54364734,39.38689353,200 GENOA AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_4211_1,-74.56131945,39.35946168,7017 BLACK HORSE PIKE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_4211_2,-74.539316,39.3849405,201 FLORENCE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4211_3,-74.51579292,39.32861607,203 FLORENCE AVENUE,EGG HARBOR TWP,16,1922,1,GOV1,3004 -0108_4211_4,-74.642817,39.538224,205 FLORENCE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4211_5,-74.59119984,39.34999927,207 FLORENCE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4211_6,-74.52064835,39.40301783,210 PALERMO AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4211_7,-74.62391118,39.43448501,208 PALERMO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4211_8,-74.61030799,39.31652938,206 PALERMO AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_4211_9,-74.3681034,39.40754133,204 PALERMO AVENUE,EGG HARBOR TWP,16,1912,1,RES1,3001 -0108_4212_10,-74.52160984,39.40885742,210 FLORENCE AVENUE,EGG HARBOR TWP,16,1925,1,GOV1,3004 -0108_4212_11,-74.94896537,39.53265497,208 FLORENCE AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_4212_12,-74.49868729,39.42517157,206 FLORENCE AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_4212_13,-74.636188,39.308615,204 FLORENCE AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_4212_2,-74.375481,39.39895533,203 CORDOVA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4212_3,-74.52006294,39.38769718,205 CORDOVA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4212_4,-74.38556187,39.39238638,207 CORDOVA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4212_5,-74.64829635,39.51865305,209 CORDOVA AVENUE,EGG HARBOR TWP,17,1950,1,RES1,3001 -0108_4212_6,-74.4121665,39.365384,211 CORDOVA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4212_7,-74.54132094,39.37442234,910 BAY DRIVE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4212_8,-74.499769,39.431267,900 BAY DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_4212_9,-74.45225937,39.37187833,212 FLORENCE AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4213_1,-74.9038555,39.5045315,7025 BLACK HORSE PIKE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_4213_10,-74.6096535,39.587043,208 CORDOVA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4213_11,-74.57018975,39.47966055,206 CORDOVA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4213_12,-74.83207691,39.41448904,204 CORDOVA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4213_3,-74.65765934,39.52373895,203 TOLEDO AVENUE,EGG HARBOR TWP,16,1929,1,RES1,3001 -0108_4213_4,-74.58974359,39.31480018,207 TOLEDO AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4213_5,-74.70109889,39.48570091,211 TOLEDO AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4213_6,-74.91047583,39.48037443,1010 BAY DRIVE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4213_7,-74.79362317,39.67351,1004 BAY DRIVE,EGG HARBOR TWP,16,1929,1,RES1,3001 -0108_4213_8,-74.48682941,39.43850915,1000 BAY DRIVE,EGG HARBOR TWP,16,1925,1,COM4,3004 -0108_4213_9,-74.5180185,39.389833,210 CORDOVA AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4214_11,-74.53805563,39.47120028,204 TOLEDO AVENUE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_4214_12,-74.45333577,39.37457062,202 TOLEDO AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_4214_13,-74.50020544,39.33416233,200 TOLEDO AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_4214_3,-74.49862398,39.43076109,7033 BLACK HORSE PIKE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4214_4,-74.59888581,39.41839098,205 WEST PLAZA PLACE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4214_5,-74.46381215,39.45530796,207 WEST PLAZA PLACE,EGG HARBOR TWP,16,1925,1,GOV1,3004 -0108_4214_6,-74.451434,39.498433,209 WEST PLAZA PLACE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_4214_7,-74.589052,39.331659,211 WEST PLAZA PLACE,EGG HARBOR TWP,16,1926,1,RES1,3001 -0108_4214_8,-74.59243382,39.32307295,1112 BAY DRIVE,EGG HARBOR TWP,16,1944,1,RES1,3001 -0108_4214_9,-74.5304405,39.399494,1110 BAY DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_4215_1,-74.62614206,39.36346594,7035 BLACK HORSE PIKE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_4215_11,-74.50371882,39.33307918,204 WEST PLAZA PLACE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_4215_13,-74.7605164,39.60912436,200 WEST PLAZA PLACE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_4215_2,-74.761673,39.444871,203 EAST PLAZA PLACE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_4215_3,-74.45041833,39.35463683,205 EAST PLAZA PLACE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_4215_4,-74.47674389,39.33855357,207 EAST PLAZA PLACE,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_4215_5,-74.6449025,39.427292,209 EAST PLAZA PLACE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_4215_6,-74.59161485,39.32173115,211 EAST PLAZA PLACE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4215_7,-74.4608685,39.350557,213 EAST PLAZA PLACE,EGG HARBOR TWP,16,1954,1,COM1,3004 -0108_4215_9,-74.647233,39.541036,206 WEST PLAZA PLACE,EGG HARBOR TWP,16,1953,1,RES1,3001 -0108_4216_1,-74.52337369,39.40584053,7039 BLACK HORSE PIKE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_10,-74.7656825,39.349767,1350 BAY DRIVE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4216_11,-74.37755384,39.39629149,1300 BAY DRIVE,EGG HARBOR TWP,16,1930,1,GOV1,3004 -0108_4216_12,-74.40525553,39.39291739,212 EAST PLAZA PLACE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_13,-74.61231412,39.3232394,210 EAST PLAZA PLACE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_14,-74.428664,39.3667265,208 EAST PLAZA PLACE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_15,-74.39876865,39.39059167,206 EAST PLAZA PLACE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_16,-74.5140605,39.46128156,204 EAST PLAZA PLACE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_4216_17,-74.45252217,39.35352449,202 EAST PLAZA PLACE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_18,-74.76620251,39.66745281,200 EAST PLAZA PLACE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_2,-74.790205,39.6341895,7041 BLACK HORSE PIKE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_3,-74.48704934,39.43581601,7043 BLACK HORSE PIKE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_4,-74.68725599,39.35922234,201 SEVILLE AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_4216_5,-74.38888567,39.3931135,203 SEVILLE AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_6,-74.85485882,39.44055653,205 SEVILLE AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_7,-74.80760352,39.63203334,207 SEVILLE AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_8,-74.9430565,39.497171,209 SEVILLE AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4216_9,-74.53649334,39.37902251,211 SEVILLE AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4218_10,-74.52424779,39.38701203,202 ATHENS AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_4218_11,-74.453101,39.375089,200 ATHENS AVENUE,EGG HARBOR TWP,16,1986,1,GOV1,3004 -0108_4218_12,-74.8738635,39.6035375,206 ATHENS AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_4218_2,-74.56622181,39.47972054,7051 BLACK HORSE PIKE,EGG HARBOR TWP,16,1945,2,RES1,3001 -0108_4218_4,-74.811483,39.6260815,201 NAPLES AVENUE,EGG HARBOR TWP,45,1950,2,RES1,3001 -0108_4218_5,-74.53719706,39.41055768,203 NAPLES AVENUE,EGG HARBOR TWP,16,1925,2,RES1,3001 -0108_4218_6,-74.77070799,39.61571157,205 NAPLES AVENUE,EGG HARBOR TWP,16,1992,1,IND2,3002 -0108_4218_7,-74.37867379,39.39805806,1512 BAY DRIVE,EGG HARBOR TWP,16,1930,1,COM1,3004 -0108_4218_8,-74.6111545,39.5921495,1502 BAY DRIVE,EGG HARBOR TWP,,1945,1,RES1,3001 -0108_4218_9,-74.7066296,39.56937384,1500 BAY DRIVE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_4219_2,-74.3854625,39.395487,7057 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4219_3,-74.75573323,39.43327847,201 VENICE AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_4219_4,-74.5198685,39.3891685,1620 BAY DRIVE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_4219_5,-74.47424638,39.48356393,1616 BAY DRIVE,EGG HARBOR TWP,16,1925,1,COM3,3004 -0108_4219_6,-74.88306644,39.48119103,1604 BAY DRIVE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4219_7,-74.932274,39.4956955,1600 BAY DRIVE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_4219_8,-74.60778114,39.39159259,202 NAPLES AVENUE,EGG HARBOR TWP,,1965,1,RES1,3001 -0108_4220_10,-74.57233659,39.34834281,18 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_11,-74.50232054,39.34223422,20 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_12,-74.63100838,39.3571208,22 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_13,-74.51704192,39.40436088,24 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_15,-74.80594281,39.62674464,1 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_16,-74.76184859,39.62977034,3 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_17,-74.54573158,39.47439627,5 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_18,-74.5664325,39.4788445,7 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_19,-74.44146782,39.3578831,9 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_2,-74.56698016,39.35147793,2 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_20,-74.49142016,39.45281626,11 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_21,-74.52111957,39.40386188,13 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_22,-74.7957085,39.6207605,15 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_23,-74.54096306,39.37549615,17 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_24,-74.53686932,39.40443757,19 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_25,-74.93701388,39.51971839,21 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_26,-74.6005988,39.43431035,23 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_3,-74.81762474,39.39274111,4 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_4,-74.610341,39.593364,6 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,COM1,3004 -0108_4220_5,-74.520784,39.45633,8 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_6,-74.5972126,39.41785638,10 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_7,-74.59097454,39.42205533,12 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_8,-74.57182631,39.37064156,14 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,RES1,3001 -0108_4220_9,-74.45745072,39.34763881,16 EMPIRE DRIVE,EGG HARBOR TWP,35,1980,1,COM1,3004 -0108_423_1,-74.55035178,39.46661347,6603 DELILAH ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_423_2,-74.75391518,39.45242003,6605 DELILAH ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_4301_1,-74.5245506,39.46630507,7074 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4301_12,-74.57385588,39.35265186,8006 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4301_13,-74.756263,39.4483395,8008 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4301_14,-74.470332,39.506319,8010 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4301_15,-74.538488,39.3920095,8012 BLACK HORSE PIKE,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_4301_16,-74.93695658,39.49609892,8014 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4301_2,-74.47776059,39.47791909,7078 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4301_3,-74.62604925,39.38561975,7080 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4301_4,-74.924478,39.494778,7084 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,COM1,3004 -0108_4301_5,-74.59746835,39.37191353,7086 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4301_7,-74.52666904,39.39393285,7092 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,COM1,3004 -0108_4302_2,-74.5145165,39.3234445,7079 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4302_4,-74.51807699,39.32347292,7083 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4304_1,-74.59957321,39.32983318,7089 BLACK HORSE PIKE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_4304_10,-74.519538,39.4609248,212 OXFORD PLACE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_4304_11,-74.7223545,39.5826485,210 OXFORD PLACE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_4304_12,-74.75749544,39.43269476,208 OXFORD PLACE,EGG HARBOR TWP,43,1960,2,RES1,3001 -0108_4304_13,-74.94798374,39.52034116,204 OXFORD PLACE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4304_14,-74.52421154,39.45361333,202 OXFORD PLACE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_4304_2,-74.5045165,39.44810667,7091 BLACK HORSE PIKE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4304_3,-74.61220002,39.35214328,201 FOX PLACE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4304_4,-74.6080265,39.4742605,203 FOX PLACE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4304_5.01,-74.6141206,39.35040583,205 FOX PLACE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4305_1,-74.76792,39.348217,7095 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4305_4,-74.51538316,39.32432552,325 SANDERLING LANE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4305_8,-74.95294174,39.51214954,8025 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4305_9,-74.4232535,39.3758395,8029 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4306_3,-74.407255,39.3828805,8037 BLACK HORSE PIKE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_4401_6,-74.45931013,39.34806416,1033 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4402_34,-74.39712604,39.38677987,1039 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_4403_23,-74.86985797,39.45374833,1041 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4403_24,-74.629913,39.3931235,1043 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4403_25,-74.50314608,39.33129618,1045 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4403_26,-74.36215283,39.41092801,1047 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4403_27,-74.55027,39.3808695,1049 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4403_29,-74.77923984,39.62635726,1059 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4403_32,-74.815622,39.6420915,201 PINE AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_4403_33,-74.39942049,39.38633434,205 PINE AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_4403_34,-74.67021666,39.51318049,209 PINE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4403_35,-74.62403908,39.62369183,215 PINE AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_4403_36,-74.54024032,39.37260656,213 PINE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_4403_37,-74.5153525,39.3278635,217 PINE AVENUE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_4403_38,-74.50833537,39.33751026,219 PINE AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_4501_10,-74.59128951,39.35448684,231 PINE AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_4501_11,-74.370488,39.40705383,235 PINE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4501_12,-74.58035482,39.33848099,239 PINE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4501_13,-74.5824145,39.430032,259 PINE AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_4501_14,-74.6026465,39.386321,261 PINE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4501_15,-74.6384131,39.51587762,263 PINE AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4501_16,-74.8043795,39.6046795,265 PINE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4501_19,-74.604484,39.343109,269 PINE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4501_20,-74.75973819,39.37412158,271 PINE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4501_21,-74.816518,39.3833385,273 PINE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_4501_22,-74.42773498,39.36067782,275 PINE AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_4501_23,-74.408464,39.392265,277 PINE AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_4501_24,-74.6649253,39.45944738,279 PINE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_4501_34,-74.817849,39.653625,243 PINE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4501_35,-74.588015,39.312929,245 PINE AVENUE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_4501_36,-74.39485398,39.38879742,247 PINE AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_4501_37,-74.7780275,39.641836,249 PINE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4501_38,-74.49019017,39.33207199,251 PINE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4501_39,-74.52077587,39.39781958,253 PINE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4501_9.01,-74.549211,39.361174,1 FOREST VIEW COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4501_9.02,-74.7241675,39.4577405,3 FOREST VIEW COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4501_9.03,-74.506751,39.323079,5 FOREST VIEW COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4501_9.04,-74.367734,39.405896,7 FOREST VIEW COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4501_9.05,-74.45408539,39.37443102,9 FOREST VIEW COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4501_9.06,-74.64701837,39.3283691,11 FOREST VIEW COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4501_9.07,-74.52225,39.315909,13 FOREST VIEW COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4501_9.08,-74.50047772,39.44575131,14 FOREST VIEW COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4501_9.09,-74.79468817,39.640091,12 FOREST VIEW COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4501_9.11,-74.45649244,39.34758582,8 FOREST VIEW COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_4501_9.12,-74.642178,39.531485,6 FOREST VIEW COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4501_9.13,-74.60553324,39.48921013,4 FOREST VIEW COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_4501_9.14,-74.49788242,39.43558106,2 FOREST VIEW COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4502_1,-74.5065875,39.3314795,75 ASBURY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4502_3,-74.651195,39.402236,100 HIDDEN CREEK LANE,EGG HARBOR TWP,16,2006,2,RES1,3001 -0108_4601_10,-74.52493159,39.46697677,92 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4601_11,-74.68107766,39.38643546,90 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4601_12,-74.68099992,39.44594777,88 ASBURY ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4601_2,-74.5537176,39.42728267,104 ASBURY ROAD,EGG HARBOR TWP,16,1990,1,COM3,3004 -0108_4601_3,-74.62829877,39.35698474,106 ASBURY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4601_4,-74.782967,39.599472,108 ASBURY ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_4601_5,-74.4480335,39.372517,102 ASBURY ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4601_6,-74.5526075,39.4685205,100 ASBURY ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4601_7,-74.5375265,39.461664,98 ASBURY ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4601_8,-74.87460417,39.59496683,96 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4601_9,-74.51138607,39.32889967,94 ASBURY ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4702_11,-74.54801945,39.37784182,299 PINE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4702_12,-74.45091366,39.49374499,301 PINE AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_4702_13,-74.711955,39.640023,303 PINE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_4702_15,-74.63942066,39.380236,307 PINE AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4702_16,-74.71498,39.5805805,309 PINE AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_4702_17,-74.50636316,39.4063106,311 PINE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4702_18,-74.50340697,39.33585989,315 PINE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4702_19,-74.52158583,39.39251405,317 PINE AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_4702_2,-74.912423,39.5109315,283 PINE AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_4702_21,-74.43299459,39.36561018,319 PINE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4702_22,-74.790402,39.6139945,321 PINE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_4702_24,-74.38296483,39.39966302,323 PINE AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4702_25,-74.5901005,39.415482,327 PINE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_4702_26,-74.569829,39.427989,331 PINE AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_4702_27,-74.58956767,39.42176154,333 PINE AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_4702_28,-74.57944309,39.48083785,335 PINE AVENUE,EGG HARBOR TWP,16,1977,1,COM4,3004 -0108_4702_29,-74.56343983,39.36023341,136 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4702_3,-74.88514787,39.56051585,285 PINE AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_4702_30,-74.53266973,39.40163334,132 ASBURY ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4702_31,-74.5848035,39.3751455,126 ASBURY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4702_32,-74.60491129,39.32325153,122 ASBURY ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_4702_33,-74.78271022,39.63478756,120 ASBURY ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4702_34,-74.6263135,39.489257,118 ASBURY ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_4702_36,-74.59124121,39.31811836,110 ASBURY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_4702_5,-74.535816,39.3840265,289 PINE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_4702_7,-74.815108,39.6552025,293 PINE AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_4702_8,-74.97432834,39.51085787,295 PINE AVENUE,EGG HARBOR TWP,16,1989,1,RES3A,3001 -0108_4702_9,-74.40116021,39.38537484,297 PINE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4801_10,-74.83485909,39.37595002,95 ASBURY ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_4801_11,-74.82843081,39.65022922,97 ASBURY ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4801_12,-74.68997266,39.41780849,99 ASBURY ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_4801_13,-74.87957312,39.60356648,93 ASBURY ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4801_14,-74.638767,39.364172,91 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4801_15,-74.59129572,39.3765256,89 ASBURY ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_4801_16,-74.633772,39.4625065,87 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4801_17,-74.482559,39.4354025,85 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4801_18,-74.5027295,39.5017585,83 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_4801_2,-74.72173547,39.43075585,101 ASBURY ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_4801_3,-74.44051465,39.48762823,103 ASBURY ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_4801_4,-74.604506,39.3287285,105 ASBURY ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_4901_4,-74.37103417,39.40210146,175 BETSEY SCULL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4901_42,-74.52300817,39.32206449,233 BETSEY SCULL ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4901_43,-74.9593195,39.5124815,235 BETSEY SCULL ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4901_44,-74.57736431,39.35442455,237 BETSEY SCULL ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_4901_45,-74.54836586,39.37528805,239 BETSEY SCULL ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_4901_49,-74.510648,39.3281505,1238 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_4901_53,-74.6027695,39.4373945,1186 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_4901_54,-74.71419098,39.56409334,1184 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_4901_55,-74.56452463,39.36278244,1182 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_4901_56,-74.547467,39.378879,1110 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4901_62,-74.50140065,39.46568718,1080 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_4901_63,-74.48824822,39.35041946,1086 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_4901_64,-74.6013615,39.3239315,1084 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1800,1,RES1,3001 -0108_4901_65,-74.5276815,39.413414,1078 MAYS LANDING S.P.RD,EGG HARBOR TWP,,1930,1,RES1,3001 -0108_4901_66,-74.5258925,39.386712,1074 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_4901_69,-74.48777517,39.34984643,1066 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_4901_70,-74.79622339,39.6330317,1030 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5001_10,-74.5857305,39.327631,1041 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1960,1,COM3,3004 -0108_5001_11,-74.537511,39.396207,1045 MAYS LANDING S.P.RD,EGG HARBOR TWP,17,2015,1,GOV1,3004 -0108_5001_12,-74.86783556,39.49219831,1047 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5001_13,-74.51345735,39.3240802,1049 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1940,1,RES3A,3004 -0108_5001_14,-74.48351103,39.33497617,1051 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5001_15,-74.36528296,39.40750833,1053 MAYS LANDING S.P.RD,EGG HARBOR TWP,18,1965,1,RES3A,3001 -0108_5001_17,-74.59971919,39.41173552,1059 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5001_18,-74.50040039,39.5242308,1061 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5001_19,-74.59615385,39.36433631,1063 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5001_2,-74.47095536,39.45764409,1019 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5001_20,-74.79775519,39.66945292,1065 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5001_22,-74.5523873,39.46941832,1069 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5001_23,-74.35549042,39.4147931,1071 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5001_24,-74.59408457,39.42847357,1073 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5001_25,-74.88114666,39.59658153,1075 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5001_27,-74.47378791,39.48596882,1079 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5001_29,-74.5639245,39.3559925,1083 MAYS LANDING S.P.RD,EGG HARBOR TWP,18,2015,1,GOV1,3004 -0108_5001_3,-74.46573836,39.34703947,1023 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1805,1,RES1,3001 -0108_5001_30,-74.8081325,39.6405615,1085 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5001_31,-74.5046085,39.418786,1087 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5001_32,-74.38275072,39.39983941,1089 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5001_33,-74.4852445,39.3404875,1091 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5001_34,-74.53550867,39.30386851,1095 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5001_35,-74.52423106,39.44728816,1097 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5001_36,-74.70088598,39.58814784,1099 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5001_37,-74.61095609,39.31690022,1101 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5001_38,-74.384419,39.398535,1105 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_5001_39,-74.8921225,39.526865,1107 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5001_4,-74.53459357,39.37881185,1025 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5001_40,-74.57297151,39.37103087,1 SHIPS DRIVE,EGG HARBOR TWP,15,1975,1,RES1,3001 -0108_5001_41,-74.953629,39.4967715,100 BYRON DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5001_42,-74.8677255,39.496749,102 BYRON DRIVE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5001_44,-74.50055136,39.43157098,201 HARBOR DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5001_45,-74.499602,39.487152,205 HARBOR DRIVE,EGG HARBOR TWP,17,2015,1,COM3,3004 -0108_5001_46,-74.37233783,39.400461,207 HARBOR DRIVE,EGG HARBOR TWP,17,1960,1,RES1,3001 -0108_5001_48,-74.64690043,39.53228744,209 HARBOR DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5001_5,-74.4865375,39.4399625,1027 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5001_50,-74.60258051,39.317046,211 HARBOR DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5001_51,-74.538615,39.5143715,213 HARBOR DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5001_52,-74.6092165,39.486898,1 RIVER DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5001_54,-74.90510761,39.49441857,3 RIVER DRIVE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_5001_6,-74.639464,39.3706985,1029 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5001_7,-74.59641913,39.3805258,1031 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5001_8,-74.63724573,39.56592772,1033 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5001_9,-74.57924965,39.33266627,1035 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5002_1,-74.59564656,39.36300052,2 RIVER DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5003_1,-74.86076536,39.43803932,208 HARBOR DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5003_12,-74.57502931,39.35995449,6 SHIPS DRIVE,EGG HARBOR TWP,15,1960,1,RES1,3001 -0108_5003_13,-74.44795882,39.35486853,4 SHIPS DRIVE,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_5003_15,-74.57138896,39.33664629,2 SHIPS DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_5003_16,-74.71520931,39.43984448,1109 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5003_4,-74.48269164,39.35389458,202 HARBOR DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5003_5,-74.85118889,39.43165184,200 HARBOR DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_5003_6,-74.57648947,39.53097984,101 BYRON DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5003_7,-74.88929357,39.5407232,3 SHIPS DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_501_12,-74.79732417,39.53791999,201 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_501_13,-74.4184585,39.3688825,203 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_14,-74.48789935,39.4318513,205 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_15,-74.59865316,39.370475,207 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_16,-74.4889445,39.440756,209 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_17,-74.59472061,39.35874979,211 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_18,-74.66132036,39.34802815,213 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_19,-74.42241069,39.37073195,215 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_20,-74.83625496,39.4165408,217 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_21,-74.6019245,39.3146465,219 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_22,-74.92426176,39.50867435,221 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_23,-74.88885492,39.51111675,223 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_501_24,-74.6976285,39.5583125,222 EAGON AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_501_25,-74.61125775,39.32425544,220 EAGON AVENUE,EGG HARBOR TWP,16,1993,1,COM4,3004 -0108_501_26,-74.813704,39.6325455,218 EAGON AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_501_27,-74.64454852,39.53609652,216 EAGON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_501_28,-74.62149313,39.40434575,214 EAGON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_501_29,-74.48427677,39.34721809,212 EAGON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_501_30,-74.5173175,39.3212495,210 EAGON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_501_31,-74.630795,39.445433,208 EAGON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_501_32,-74.51590736,39.31970279,206 EAGON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_501_33,-74.6143535,39.34906853,204 EAGON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_501_34,-74.50678494,39.33091416,202 EAGON AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_501_35,-74.48594371,39.44228285,200 EAGON AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_502_1.01,-74.7825,39.3827515,6600 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_502_3,-74.4474249,39.37082669,100 ATLANTIC AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_503_1,-74.59492713,39.42768525,201 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_10,-74.4622752,39.34625661,219 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_11,-74.53585059,39.47414334,221 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_12,-74.6787665,39.4548425,223 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_13,-74.47260433,39.49426001,222 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_14,-74.5115305,39.401349,220 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_15,-74.71894381,39.63904155,218 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_16,-74.75993559,39.44613535,216 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_17,-74.49509931,39.49373803,214 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_18,-74.4655015,39.3452225,212 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_19,-74.460947,39.35618,210 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_2,-74.53181186,39.31546592,203 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_20,-74.51506588,39.32947533,208 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_21,-74.81962562,39.61522616,206 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_22,-74.43354439,39.37092977,204 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_23,-74.49269329,39.42200603,202 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_24,-74.88339167,39.54267151,200 GRAY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_3,-74.7237475,39.5883,205 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_4,-74.814626,39.379214,207 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_5,-74.4890375,39.3361835,209 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_6,-74.45369718,39.35336514,211 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_7,-74.83517,39.625919,213 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_8,-74.71021708,39.4720202,215 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_503_9,-74.48289115,39.34018216,217 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_1,-74.62989607,39.38794932,203 EAGON AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_504_10,-74.59708456,39.3159888,219 EAGON AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_504_11,-74.4721284,39.44556264,221 EAGON AVENUE,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_504_12,-74.51804299,39.40124167,223 EAGON AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_504_13,-74.6389705,39.4070185,222 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_14,-74.51230618,39.46396437,220 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_15,-74.80035634,39.6332071,218 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_16,-74.44245046,39.37079081,216 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_17,-74.532583,39.400683,214 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_18,-74.62981046,39.43253202,212 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_19,-74.598141,39.3623625,210 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_20,-74.725305,39.566705,208 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_21,-74.85737582,39.61687182,206 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_22,-74.59790219,39.36311041,204 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_23,-74.6254735,39.393201,202 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_24,-74.72643911,39.46100732,200 FISLER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_25,-74.52288491,39.31978587,201 EAGON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_3,-74.46703917,39.34708349,205 EAGON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_4,-74.61431798,39.32544384,207 EAGON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_5,-74.485671,39.346125,209 EAGON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_6,-74.55968,39.364202,211 EAGON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_7,-74.5000145,39.4248485,213 EAGON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_8,-74.617916,39.4296565,215 EAGON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_504_9,-74.68625616,39.63217294,217 EAGON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3004 -0108_5101_1,-74.89541555,39.48191717,336 PINE AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5101_10,-74.5792615,39.4240415,150 ASBURY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3002 -0108_5101_100,-74.6760725,39.547967,3 SADDLE RIDGE LANE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_101,-74.52334105,39.39736333,5 SADDLE RIDGE LANE,EGG HARBOR TWP,16,1987,1,RES3A,3001 -0108_5101_102,-74.83083605,39.62287566,7 SADDLE RIDGE LANE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_103,-74.545822,39.3844585,9 SADDLE RIDGE LANE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_105,-74.41640472,39.504916,11 MALARON CIRCLE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5101_106,-74.55063146,39.35936966,12 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_5101_107,-74.5571812,39.46949614,13 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_109,-74.63802368,39.32698007,14 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_11,-74.60104,39.3711945,152 ASBURY ROAD,EGG HARBOR TWP,16,1982,1,RES3A,3001 -0108_5101_12,-74.5282465,39.383614,156 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_120,-74.5258145,39.410764,228 ALDER AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5101_121,-74.62827412,39.40727227,226 ALDER AVENUE,EGG HARBOR TWP,16,1989,1,IND2,3004 -0108_5101_124,-74.3876695,39.3901505,220 ALDER AVENUE,EGG HARBOR TWP,16,1988,1,COM1,3004 -0108_5101_125,-74.59592055,39.34281717,218 ALDER AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_126,-74.792854,39.640349,216 ALDER AVENUE,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_5101_127,-74.4635295,39.4922525,214 ALDER AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5101_13,-74.36246634,39.40910447,164 ASBURY ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5101_130,-74.7105076,39.43106946,208 ALDER AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_131,-74.767951,39.6086395,206 ALDER AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_132,-74.55430554,39.4682513,204 ALDER AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_133,-74.50029903,39.42451086,202 ALDER AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5101_136,-74.3727015,39.41752,1125 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5101_137,-74.51100704,39.43880402,1127 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5101_138,-74.55788178,39.36612193,1131 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_5101_139,-74.6653575,39.450684,1133 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_14.01,-74.88144052,39.59406116,107 ASTOR AVENUE,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_5101_14.02,-74.49882085,39.33221148,109 ASTOR AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5101_14.03,-74.51467068,39.43789119,111 ASTOR AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5101_14.04,-74.82372371,39.49735447,100 PRINCETON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5101_14.05,-74.5300195,39.3819865,101 PRINCETON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5101_14.06,-74.60114854,39.39710881,102 PRINCETON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5101_14.07,-74.482108,39.3522605,103 PRINCETON AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_5101_140,-74.58788,39.331049,1135 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5101_141,-74.70527335,39.57100215,1139 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_142,-74.50292733,39.33682434,1145 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5101_143,-74.6415225,39.393257,1147 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5101_146,-74.77841357,39.62023953,1155 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5101_147,-74.502819,39.424199,1157 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_149,-74.56773083,39.35029244,1161 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_5101_15,-74.79024221,39.63611512,1 PRINCETON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5101_150,-74.4715435,39.3426305,1163 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5101_151,-74.61673407,39.43185089,1165 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5101_152,-74.57354713,39.35808177,1167 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_153,-74.56183318,39.40978853,1171 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_154,-74.6066272,39.38617357,1175 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5101_155.01,-74.71461079,39.43379741,201 VIRGINIA AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5101_155.02,-74.8192535,39.6538255,203 VIRGINIA AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5101_155.03,-74.550312,39.371484,205 VIRGINIA AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5101_156,-74.48281555,39.34010075,211 VIRGINIA AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5101_157,-74.61651197,39.50882416,215 VIRGINIA AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_159,-74.53876945,39.46341268,219 VIRGINIA AVENUE,EGG HARBOR TWP,16,1987,1,RES3A,3001 -0108_5101_16,-74.540916,39.534083,3 PRINCETON AVENUE,EGG HARBOR TWP,16,1999,1,COM8,3004 -0108_5101_160,-74.730455,39.454122,221 VIRGINIA AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_167,-74.4461395,39.3739505,6071 ENGLISH CREEK AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5101_17,-74.816047,39.39069,5 PRINCETON AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5101_174,-74.60902099,39.32728634,222 VIRGINIA AVENUE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_5101_175,-74.380113,39.3947515,220 VIRGINIA AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_176,-74.59572072,39.36272207,218 VIRGINIA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5101_179.01,-74.57417016,39.35999829,1187 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5101_18,-74.524975,39.393021,7 PRINCETON AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5101_180,-74.870259,39.492023,6007 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5101_181,-74.603743,39.326994,6009 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5101_183,-74.50016735,39.3359227,6019 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3004 -0108_5101_184,-74.5998756,39.4088058,2 PLUMLEAF ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5101_185,-74.71260529,39.4701007,6065 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_186,-74.61962629,39.42424091,6067 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_5101_187,-74.51581033,39.32677154,6069 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5101_19,-74.555301,39.369342,9 PRINCETON AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5101_192,-74.77966846,39.58410621,6085 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5101_193,-74.703236,39.6385185,6087 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5101_194,-74.5374445,39.388424,6089 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5101_195,-74.51576018,39.40062555,6091 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5101_196,-74.57611135,39.35954737,6093 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_197,-74.59990632,39.33141971,6095 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5101_198,-74.37845245,39.39658248,6097 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_199,-74.48024356,39.33688367,6099 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5101_2,-74.47707775,39.34732485,334 PINE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_20,-74.62041,39.381783,11 PRINCETON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_200,-74.44924026,39.3513365,7001 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_201,-74.50181897,39.41614242,7003 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5101_202,-74.369466,39.416298,7007 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5101_203,-74.52454856,39.52626987,7011 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_204,-74.5212445,39.395995,7015 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_205.02,-74.44344007,39.37269758,7021 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5101_21,-74.83824263,39.37755369,13 PRINCETON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_216,-74.50905944,39.32747884,7059 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_217,-74.48945653,39.4311282,7061 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_218,-74.9392455,39.5264925,7063 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_219,-74.5508543,39.36171969,7069 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5101_22,-74.55325377,39.50176615,15 PRINCETON AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3002 -0108_5101_220,-74.42717617,39.367577,7071 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5101_221,-74.50804865,39.33563267,7073 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5101_222,-74.494486,39.4748185,7075 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5101_223,-74.48071973,39.3477589,7077 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_225,-74.737669,39.4521145,7079 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_226,-74.599811,39.3691495,7081 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5101_228.01,-74.42912962,39.3625424,7085 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1976,1,GOV1,3004 -0108_5101_229.01,-74.4995305,39.3285705,7093 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5101_23,-74.368601,39.40753717,17 PRINCETON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5101_230,-74.82545278,39.48554553,7095 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_231,-74.4630605,39.4548855,7097 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1958,1,RES3A,3002 -0108_5101_232,-74.4887425,39.514959,7101 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5101_234,-74.78735185,39.63727703,7105 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5101_235,-74.36629984,39.40519504,7109 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5101_236,-74.68604802,39.38262682,7111 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1993,1,RES3B,3001 -0108_5101_237,-74.57542801,39.54121354,7115 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_238,-74.633721,39.3178665,7117 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1988,1,RES3B,3001 -0108_5101_24,-74.8265035,39.627217,19 PRINCETON AVENUE,EGG HARBOR TWP,16,1990,1,RES3B,3001 -0108_5101_240,-74.5311815,39.471854,7121 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_241,-74.85212702,39.54176731,120 ZION ROAD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5101_242,-74.83637888,39.37628831,118 ZION ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5101_243,-74.45377885,39.35357856,116 ZION ROAD,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_5101_244,-74.63500718,39.42801385,114 ZION ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_5101_245,-74.4928145,39.335312,110 ZION ROAD,EGG HARBOR TWP,16,1709,1,RES1,3001 -0108_5101_246,-74.54776891,39.51566578,108 ZION ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5101_247,-74.79500302,39.65099216,290 ASBURY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5101_248,-74.510223,39.32343,282 ASBURY ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5101_251,-74.540893,39.5058495,268 ASBURY ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_252,-74.5550675,39.4691665,264 ASBURY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_253,-74.5929295,39.3240855,260 ASBURY ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5101_254,-74.58948668,39.34950552,256 ASBURY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_255,-74.61020082,39.38447175,254 ASBURY ROAD,EGG HARBOR TWP,16,1984,1,RES3A,3001 -0108_5101_256,-74.57301537,39.36974916,252 ASBURY ROAD,EGG HARBOR TWP,16,1953,1,COM1,3004 -0108_5101_259,-74.79746853,39.63329464,5 HONEYSUCKLE LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5101_26.01,-74.86248181,39.48017666,20 PRINCETON AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5101_26.02,-74.653997,39.5237785,22 PRINCETON AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5101_26.03,-74.510517,39.330984,24 PRINCETON AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5101_26.04,-74.5593387,39.53604332,26 PRINCETON AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5101_260,-74.3556015,39.414861,248 ASBURY ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5101_261,-74.606494,39.5065155,246 ASBURY ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5101_262,-74.46998527,39.49044517,244 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_263,-74.63861281,39.38126359,242 ASBURY ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5101_264,-74.5633785,39.5326735,240 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_265,-74.64360005,39.52923285,238 ASBURY ROAD,EGG HARBOR TWP,16,1987,1,RES3A,3001 -0108_5101_266,-74.57940465,39.35999873,234 ASBURY ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5101_267,-74.64556695,39.43069961,2 HONEYSUCKLE LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5101_268,-74.45499105,39.48874227,230 ASBURY ROAD,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_5101_269,-74.51578382,39.39433091,232 ASBURY ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5101_27,-74.5379465,39.46657,18 PRINCETON AVENUE,EGG HARBOR TWP,16,1994,1,RES3A,3001 -0108_5101_270,-74.752252,39.452286,226 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_272,-74.48854172,39.34928414,222 ASBURY ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5101_273,-74.585856,39.355276,218 ASBURY ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5101_274,-74.5743215,39.4220145,216 ASBURY ROAD,EGG HARBOR TWP,16,1979,1,RES3A,3001 -0108_5101_275,-74.60357112,39.34330298,214 ASBURY ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_5101_276,-74.48735333,39.46985672,206 ASBURY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5101_277,-74.44644943,39.3540712,200 ASBURY ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5101_278,-74.71134025,39.6382384,194 ASBURY ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5101_279,-74.94719896,39.50401397,110 BISHOPS COURT,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_28,-74.61978682,39.43044648,16 PRINCETON AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5101_280,-74.37174262,39.40105782,108 BISHOPS COURT,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_281,-74.75864913,39.43223883,106 BISHOPS COURT,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_282,-74.79226195,39.44304229,104 BISHOPS COURT,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_283,-74.44760571,39.35499419,102 BISHOPS COURT,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_284,-74.6458175,39.550782,100 BISHOPS COURT,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_285,-74.4386245,39.3663075,8 KINGS WAY,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_286,-74.53885433,39.40752384,6 KINGS WAY,EGG HARBOR TWP,16,1986,1,GOV1,3004 -0108_5101_287,-74.45881643,39.35254461,188 ASBURY ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5101_288,-74.60404416,39.37638283,184 ASBURY ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5101_289,-74.61080116,39.31834748,182 ASBURY ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5101_29,-74.36253951,39.41973134,14 PRINCETON AVENUE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_5101_290,-74.639824,39.525038,178 ASBURY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5101_291,-74.514274,39.394833,2 KINGS WAY,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_292,-74.553868,39.4268375,4 KINGS WAY,EGG HARBOR TWP,16,1981,1,RES1,3002 -0108_5101_293,-74.475378,39.4866685,1 KINGS WAY,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_294,-74.48583467,39.34961743,101 BISHOPS COURT,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_295,-74.57499184,39.40892679,103 BISHOPS COURT,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5101_296,-74.80834309,39.49011373,105 BISHOPS COURT,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_297,-74.98094054,39.51394679,107 BISHOPS COURT,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_298,-74.496316,39.4520295,109 BISHOPS COURT,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_299,-74.35990014,39.41195445,176 ASBURY ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5101_3,-74.52605482,39.41232942,330 PINE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_30,-74.76793012,39.66588131,12 PRINCETON AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5101_300,-74.62351423,39.31382453,172 ASBURY ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_31,-74.92917391,39.48213562,10 PRINCETON AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_32,-74.488378,39.4428015,8 PRINCETON AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5101_33,-74.55734,39.3971735,6 PRINCETON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5101_34,-74.81147824,39.63134477,4 PRINCETON AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5101_36,-74.82072441,39.64489065,110 ASTOR AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5101_37,-74.5253775,39.429115,108 ASTOR AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3004 -0108_5101_38,-74.56520298,39.36448966,106 ASTOR AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5101_39,-74.55450355,39.36146333,104 ASTOR AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5101_4,-74.51688911,39.4067093,328 PINE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_40,-74.77946998,39.64488934,102 ASTOR AVENUE,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_5101_41,-74.53140782,39.38812291,322 PINE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5101_43,-74.401376,39.386687,316 PINE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_44,-74.5025715,39.4292605,314 PINE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_46,-74.3671485,39.4135005,310 PINE AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_47,-74.46335239,39.34817084,308 PINE AVENUE,EGG HARBOR TWP,16,1982,1,RES3A,3001 -0108_5101_48,-74.727098,39.58813,306 PINE AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5101_49,-74.45249553,39.49308472,304 PINE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5101_5.01,-74.8084075,39.403543,101 ASTOR AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5101_5.02,-74.516753,39.32199433,103 ASTOR AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5101_5.03,-74.78357897,39.67400611,105 ASTOR AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3004 -0108_5101_50,-74.75740129,39.43001293,300 PINE AVENUE,EGG HARBOR TWP,16,1999,2,RES1,3001 -0108_5101_51,-74.55144112,39.36394826,296 PINE AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5101_54,-74.48199083,39.35400774,286 PINE AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5101_55,-74.5269915,39.3948605,282 PINE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_56,-74.7113865,39.466526,278 PINE AVENUE,EGG HARBOR TWP,16,1997,1,COM4,3004 -0108_5101_57,-74.62613169,39.42325911,276 PINE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5101_6,-74.810704,39.6302575,140 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_61,-74.564439,39.415027,242 PINE AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5101_62,-74.573476,39.4804085,240 PINE AVENUE,EGG HARBOR TWP,16,1939,1,RES1,3001 -0108_5101_64,-74.60881645,39.3777597,224 PINE AVENUE,EGG HARBOR TWP,16,1950,1,RES3A,3001 -0108_5101_65,-74.499728,39.4681195,6 SADDLE RIDGE LANE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_5101_66,-74.62474556,39.39399322,4 SADDLE RIDGE LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5101_67,-74.74550981,39.59103527,2 SADDLE RIDGE LANE,EGG HARBOR TWP,16,1988,1,RES3A,3001 -0108_5101_68,-74.88640566,39.54243076,1 SADDLE RIDGE LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_69,-74.61028263,39.32667959,218 PINE AVENUE,EGG HARBOR TWP,16,1982,1,COM4,3004 -0108_5101_7,-74.50775703,39.38424032,144 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_70,-74.72840034,39.45412294,216 PINE AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5101_71,-74.368356,39.40602,214 PINE AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5101_73,-74.48942838,39.35206705,210 PINE AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_74,-74.62773764,39.5516885,206 PINE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_75,-74.75514807,39.43390445,204 PINE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_76,-74.88218489,39.59986646,200 PINE AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5101_77,-74.68068353,39.41405494,1093 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5101_78,-74.81056779,39.6373703,1095 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3002 -0108_5101_79,-74.638612,39.53614,1097 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5101_8,-74.54057,39.391952,146 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_5101_80,-74.63168657,39.43362228,1099 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_81,-74.885786,39.597274,1101 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5101_82,-74.93752246,39.520561,1103 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5101_83,-74.61056275,39.47574496,1107 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5101_83.01,-74.61636359,39.38083531,1109 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5101_84,-74.63267044,39.40918833,1111 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5101_85,-74.63594975,39.36718939,1115 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5101_86,-74.61465447,39.32282016,201 ALDER AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5101_87,-74.60194343,39.48218067,205 ALDER AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5101_88,-74.641866,39.324276,207 ALDER AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5101_89.01,-74.47229982,39.49269596,209 ALDER AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5101_89.02,-74.822173,39.6379825,211 ALDER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5101_9,-74.529609,39.418957,148 ASBURY ROAD,EGG HARBOR TWP,16,1976,1,GOV1,3004 -0108_5101_90,-74.69606692,39.47979416,1 MALARON CIRCLE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_5101_91,-74.49521625,39.45262153,2 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_92,-74.65362919,39.53265269,3 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_5101_93,-74.78171788,39.38310278,4 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_94,-74.53382606,39.52651956,5 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3004 -0108_5101_95,-74.834078,39.532829,6 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_96,-74.7875765,39.6767515,7 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_97,-74.512007,39.3372485,8 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_98,-74.630808,39.3885505,9 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5101_99,-74.8036816,39.62915886,10 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5102_1,-74.50318714,39.47513399,20 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5102_2,-74.8078405,39.6403495,19 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5102_3,-74.8813895,39.5918185,18 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5102_4,-74.60372097,39.32097464,17 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5102_5,-74.56967832,39.36540047,16 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5102_6,-74.4938613,39.33025753,15 MALARON CIRCLE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5103_1,-74.499024,39.335283,6063 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3002 -0108_5104_6,-74.848789,39.5634635,1 PLUMLEAF ROAD,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5104_7,-74.59900792,39.49861715,3 PLUMLEAF ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5104_8,-74.941718,39.517837,5 PLUMLEAF ROAD,EGG HARBOR TWP,16,1974,1,REL1,3004 -0108_5104_9,-74.69428186,39.43843242,7 PLUMLEAF ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5105_1,-74.4616405,39.35735983,6029 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5105_7,-74.7123755,39.46900183,6027 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5106_1,-74.50342087,39.42466443,6035 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5107_1,-74.50816072,39.34139214,6041 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5107_4,-74.80846633,39.63894598,6039 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5108_1,-74.493785,39.3341045,6047 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5108_7,-74.46235711,39.49466575,6045 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5109_1,-74.61139465,39.34065594,6053 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5109_6,-74.80918551,39.55950514,6051 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_5110_9,-74.516527,39.485252,6057 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_5111_1,-74.60763166,39.48214949,6068 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5113_1,-74.92391828,39.50655339,6056 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5113_18,-74.62817421,39.61773238,6058 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5114_1,-74.62765527,39.35758711,6050 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_5114_14,-74.73159703,39.45305932,6052 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5115_1,-74.54989376,39.38028275,6044 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5115_11,-74.64043728,39.33874203,6046 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5116_1,-74.579558,39.3128245,6038 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5116_7,-74.58481549,39.36388317,6040 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5117_1,-74.5717055,39.3722905,6034 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5117_2,-74.47426961,39.48726909,6032 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5117_3,-74.361892,39.4096415,6030 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5202_1,-74.4283965,39.3664095,6101 MILL ROAD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5202_1.01,-74.573079,39.420873,215 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5202_1.02,-74.64616898,39.53366267,213 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5202_1.03,-74.5844575,39.425239,211 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5202_1.04,-74.36722532,39.42258053,209 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5202_1.05,-74.60987719,39.40450383,207 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3002 -0108_5202_1.06,-74.35861019,39.41525232,205 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5202_1.07,-74.9329845,39.5097475,203 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5202_1.08,-74.60363931,39.40745998,201 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5202_1.09,-74.419186,39.369867,40 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5202_1.10,-74.5544964,39.53037527,42 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5202_1.11,-74.5943895,39.5167185,44 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES3A,3001 -0108_5202_1.12,-74.46652892,39.34708533,46 GALLANT FOX LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5202_1.13,-74.6018265,39.4302025,49 GALLANT FOX LANE,EGG HARBOR TWP,16,2007,1,RES3B,3001 -0108_5202_1.14,-74.65005633,39.5286575,47 GALLANT FOX LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5202_1.15,-74.58938535,39.42569016,45 GALLANT FOX LANE,EGG HARBOR TWP,16,2007,1,COM1,3004 -0108_5202_1.16,-74.72422989,39.46172959,43 GALLANT FOX LANE,EGG HARBOR TWP,16,2007,1,RES1,3002 -0108_5202_1.17,-74.714028,39.436541,41 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5202_1.18,-74.47490667,39.49362985,39 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5202_1.19,-74.591041,39.425759,37 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5202_1.20,-74.49432217,39.33083299,35 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5202_1.21,-74.819488,39.5676565,107 DELAWARE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5202_1.22,-74.49250212,39.44216679,105 DELAWARE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5202_1.23,-74.65196834,39.53301148,103 DELAWARE AVENUE,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_5202_1.24,-74.5039385,39.4177735,101 DELAWARE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5202_10,-74.9488234,39.53352575,6129 MILL ROAD,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_5202_11,-74.62924888,39.36374527,6131 MILL ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5202_12,-74.51280683,39.32519603,6133 MILL ROAD,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_5202_13,-74.48459267,39.34584722,6135 MILL ROAD,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_5202_14,-74.923994,39.5234825,6145 MILL ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5202_16,-74.57543378,39.34709549,6147 MILL ROAD,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_5202_17,-74.59092958,39.31937573,6149 MILL ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5202_18,-74.71416191,39.37712404,6151 MILL ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5202_19,-74.57290733,39.33725725,6153 MILL ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5202_2,-74.4906445,39.337067,6105 MILL ROAD,EGG HARBOR TWP,16,1983,1,COM1,3004 -0108_5202_20,-74.48931931,39.44046695,6157 MILL ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5202_23,-74.62459076,39.41954766,18 CHELSEA AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5202_24,-74.8476225,39.6095735,14 CHELSEA AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5202_25,-74.78349081,39.67998403,10 CHELSEA AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5202_26,-74.7031867,39.57425593,6 CHELSEA AVENUE,EGG HARBOR TWP,16,1979,1,RES3A,3001 -0108_5202_27,-74.773515,39.658082,2 CHELSEA AVENUE,EGG HARBOR TWP,16,1985,1,RES3A,3001 -0108_5202_28,-74.6463825,39.5507395,2090 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1980,1,IND2,3004 -0108_5202_29,-74.5017955,39.430386,2088 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5202_3,-74.9325055,39.485205,6109 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5202_30.01,-74.4762536,39.33958477,2084 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_5202_31,-74.76872725,39.60644733,2072 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5202_33,-74.59155011,39.37189273,2068 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5202_34,-74.68449001,39.55399767,2064 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5202_35,-74.45598967,39.34762048,2062 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5202_37,-74.36455467,39.40797347,2056 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5202_39,-74.59407649,39.42248005,2050 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_5202_4,-74.4935165,39.333097,6111 MILL ROAD,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_5202_40,-74.49185717,39.43104899,2046 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5202_41,-74.58565706,39.35888874,2040 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_5202_42,-74.7607935,39.4454305,2036 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5202_43,-74.58656553,39.32605566,2032 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5202_44,-74.79420057,39.64066687,2030 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5202_46,-74.525612,39.315844,2026 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5202_47,-74.381202,39.41707,2024 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_5202_48,-74.5310815,39.40146,2020 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5202_49,-74.586021,39.3592965,2018 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5202_5,-74.52561095,39.31156115,6115 MILL ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5202_50,-74.47330104,39.49401431,2014 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5202_51,-74.62943016,39.39042571,6155 MILL ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5202_6,-74.95004342,39.50917929,6117 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5202_7,-74.55484321,39.39376254,6119 MILL ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5202_8,-74.614863,39.385114,6121 MILL ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5202_9,-74.60338895,39.40736321,6125 MILL ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5204_1,-74.8302605,39.567902,2094 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5204_10,-74.5636395,39.410258,2106 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5204_11,-74.859318,39.552868,2108 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5204_12,-74.5215775,39.4434815,2110 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5204_13,-74.87342584,39.59414251,2112 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5204_14,-74.58904348,39.32297057,2116 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5204_15.01,-74.6399135,39.5294315,2 BAYBERRY AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5204_15.02,-74.504508,39.4079845,4 BAYBERRY AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5204_15.03,-74.71512767,39.46695551,6 BAYBERRY AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5204_15.04,-74.447852,39.3709115,8 BAYBERRY AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5204_15.05,-74.555604,39.368726,10 BAYBERRY AVENUE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_5204_15.06,-74.60383121,39.34984457,12 BAYBERRY AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5204_15.07,-74.5931405,39.4338375,14 BAYBERRY AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5204_15.08,-74.577446,39.538446,16 BAYBERRY AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5204_15.09,-74.53936308,39.46100128,18 BAYBERRY AVENUE,EGG HARBOR TWP,16,2011,1,GOV1,3004 -0108_5204_15.10,-74.5638103,39.34700244,20 BAYBERRY AVENUE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_5204_2,-74.6485495,39.531536,11 CHELSEA AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5204_3,-74.4061325,39.3833975,15 CHELSEA AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5204_4,-74.369311,39.4033095,19 CHELSEA AVENUE,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_5204_4.22,-74.41578372,39.36662283,245 CHURCHILL DRIVE,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_5204_4.23,-74.72323828,39.5879172,243 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5204_4.24,-74.3620065,39.415295,241 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5204_4.25,-74.3699175,39.417923,239 CHURCHILL DRIVE,EGG HARBOR TWP,16,2009,1,RES3B,3001 -0108_5204_4.26,-74.36053979,39.41441219,237 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_5204_4.27,-74.3814029,39.39863661,235 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5204_4.28,-74.372774,39.4034145,233 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5204_4.29,-74.369815,39.404493,231 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5204_4.31,-74.37280432,39.40976301,227 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_5204_4.32,-74.37411229,39.41037455,225 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_5204_4.33,-74.364841,39.4070795,223 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,COM8,3004 -0108_5204_4.34,-74.3651015,39.407345,221 CHURCHILL DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5204_4.35,-74.48119089,39.33627232,219 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5204_4.36,-74.63750336,39.42714933,217 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_5204_5,-74.62729372,39.36427758,23 CHELSEA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5204_6,-74.52765531,39.50038536,2096 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_5204_7,-74.76306,39.639718,2100 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_5204_8,-74.8963075,39.473535,2102 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5204_9,-74.47348,39.3427045,2104 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5205_1,-74.49666827,39.42465035,2059 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5205_2,-74.50216184,39.49001249,2063 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5205_3,-74.629343,39.4187615,1 BARNETT AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5205_49,-74.63611286,39.4331035,114 PENNSYLVANIA AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5210_1,-74.72836028,39.58866285,2011 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5210_10,-74.4891665,39.3338625,2035 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5210_11,-74.77447792,39.67671892,2039 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5210_15,-74.46270699,39.35557216,2049 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5210_16,-74.522494,39.3215285,2053 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5210_2,-74.829651,39.4515745,2007 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_5210_4,-74.502597,39.331071,2021 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5210_6,-74.5035655,39.4641435,2025 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5210_9,-74.505778,39.338938,2033 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_5211_1,-74.6578237,39.41634756,234 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5211_10,-74.55626015,39.42183532,3 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5211_11,-74.5329305,39.4038105,5 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5211_12,-74.572606,39.429374,7 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5211_13,-74.4883305,39.336415,9 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5211_14,-74.8047815,39.629975,11 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_5211_15,-74.7785925,39.514174,13 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5211_16,-74.59715076,39.41303116,15 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5211_17,-74.80732476,39.63106335,17 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5211_18,-74.63566348,39.38431624,19 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5211_2,-74.494238,39.334676,236 CHURCHILL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5211_3,-74.63178298,39.38231946,238 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_5211_4,-74.83931661,39.38890067,240 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5211_5,-74.49895346,39.50059216,242 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5211_6,-74.58617417,39.32218006,244 CHURCHILL DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5211_7,-74.8008205,39.634804,246 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5211_8,-74.61150072,39.33952556,248 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5211_9,-74.677758,39.383171,1 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5212_1,-74.36914824,39.41534737,220 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES3A,3004 -0108_5212_10,-74.860921,39.482581,7 KENTUCKY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5212_11,-74.36651791,39.41387177,9 KENTUCKY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5212_12,-74.36678587,39.41536812,11 KENTUCKY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5212_2,-74.376522,39.415906,222 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5212_3,-74.3760935,39.41231263,224 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5212_4,-74.3780755,39.402366,226 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_5212_5,-74.37330772,39.41772497,228 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3004 -0108_5212_6,-74.37929532,39.41483685,230 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5212_7,-74.378188,39.4140115,1 KENTUCKY ROAD,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_5212_8,-74.65429441,39.40212018,3 KENTUCKY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5212_9,-74.9048565,39.505001,5 KENTUCKY ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_1,-74.79546337,39.62260522,10 KENTUCKY ROAD,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_5213_10,-74.53925722,39.46998558,10 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_11,-74.61370261,39.34825639,8 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_12,-74.84713284,39.41088561,6 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_13,-74.49808181,39.49305701,4 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_14,-74.5737475,39.427852,2 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5213_15,-74.698752,39.638096,254 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5213_16,-74.59254367,39.31782255,256 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_17,-74.527146,39.394606,258 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5213_18,-74.58674647,39.33218788,260 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_19,-74.52068766,39.39693949,262 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_2,-74.81090278,39.60849557,8 KENTUCKY ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5213_20,-74.5351045,39.313651,264 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_21,-74.6406445,39.3830295,266 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_5213_23,-74.48644579,39.53449317,1 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_24,-74.5023415,39.342711,3 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_25,-74.5259015,39.3864605,5 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_26,-74.69927234,39.58667352,7 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_27,-74.60641438,39.32058709,9 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5213_28,-74.48190974,39.42981718,11 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_29,-74.64367042,39.43679221,13 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_3,-74.60013233,39.324186,24 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5213_30,-74.61236971,39.51717969,15 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_31,-74.51375174,39.33103879,17 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_32,-74.8379915,39.5638435,19 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_33,-74.47269901,39.48358838,21 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_34,-74.5876915,39.32181,23 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_35,-74.380064,39.415735,25 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5213_36,-74.5061835,39.4938085,27 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_37,-74.6102765,39.520189,29 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_38,-74.55983963,39.42508224,31 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5213_39,-74.4610035,39.5248105,33 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_4,-74.48345,39.3364115,22 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_40,-74.48721261,39.34915459,35 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_41,-74.79675246,39.62295384,37 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5213_42,-74.813843,39.6166975,39 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_5213_5,-74.452348,39.357345,20 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_6,-74.5857455,39.4160345,18 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_7,-74.49387516,39.33701551,16 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5213_8,-74.5939205,39.322508,14 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5213_9,-74.449319,39.3711855,12 THOROUGHBRED ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_1,-74.568668,39.413631,145 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_10,-74.59363156,39.33095427,18 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_11,-74.618112,39.5079,100 TROTTER ROAD,EGG HARBOR TWP,16,2005,1,RES1,3002 -0108_5214_12,-74.79158028,39.67687997,102 TROTTER ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_13,-74.89272049,39.50088967,104 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_14,-74.54311432,39.39933242,106 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_15,-74.58153587,39.36417177,108 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_16,-74.6298345,39.419289,110 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_17,-74.487476,39.524901,112 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_18,-74.58325794,39.40843477,114 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_19,-74.48589557,39.53345728,116 TROTTER ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5214_2,-74.46888366,39.34627843,2 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_20,-74.48635085,39.47915678,118 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_21,-74.850362,39.3880855,120 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_22,-74.36730445,39.42013684,44 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5214_23,-74.44594738,39.37324568,42 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5214_24,-74.45380431,39.37351943,40 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5214_25,-74.37401582,39.41983756,38 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5214_26,-74.3746605,39.4196015,36 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5214_27,-74.44860003,39.37587531,34 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2013,1,GOV1,3004 -0108_5214_28,-74.46373328,39.49061297,32 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_29,-74.684226,39.3914645,30 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_3,-74.63878365,39.51602062,4 GALLANT FOX LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5214_30,-74.86116166,39.55287703,28 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_31,-74.64451334,39.52444848,26 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_32,-74.59460417,39.3461695,24 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_33,-74.51485146,39.46563767,22 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_35,-74.42925466,39.37463788,12 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_36,-74.571551,39.400216,10 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_37,-74.50160457,39.33005515,8 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_38,-74.43023618,39.36949149,6 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_39,-74.503386,39.32932,4 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_4,-74.42273408,39.36575677,6 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_40,-74.4908295,39.443089,2 EQUESTRIAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_5,-74.55240473,39.47803903,8 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_6,-74.50324,39.3396885,10 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_7,-74.59856181,39.41135346,12 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5214_8,-74.484505,39.4413725,14 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5214_9,-74.5962515,39.3184045,16 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5215_1,-74.424583,39.4931435,208 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5215_2,-74.57765997,39.35180244,210 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5215_3,-74.46831368,39.34338247,212 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5215_4,-74.60727681,39.33081094,109 TROTTER ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5215_5,-74.48506582,39.34437557,107 TROTTER ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5215_6,-74.45309634,39.3534005,300 FURLONG CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5215_7,-74.53852592,39.4600372,302 FURLONG CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5215_8,-74.468564,39.492013,304 FURLONG CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5215_9,-74.63219729,39.39188859,306 FURLONG CIRCLE,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_5216_1,-74.60631579,39.32444094,38 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5216_10,-74.4791123,39.44343042,305 FURLONG CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_11,-74.62293005,39.42078598,303 FURLONG CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_12,-74.6049195,39.5164785,301 FURLONG CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_13,-74.57202593,39.33689267,103 TROTTER ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_14,-74.474146,39.4463,101 TROTTER ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5216_15,-74.62145158,39.50423685,400 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_16,-74.563396,39.4139075,402 SNOW FOX ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5216_17,-74.48287128,39.33476522,404 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_18,-74.57924779,39.35108879,406 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5216_19,-74.4540185,39.5005475,408 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5216_2,-74.5710905,39.428311,200 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5216_20,-74.57728634,39.52997767,410 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_21,-74.9178995,39.4816165,412 SNOW FOX ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5216_22,-74.781549,39.674562,414 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5216_23,-74.75092022,39.45120337,416 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_24,-74.56039615,39.53444307,36 GALLANT FOX LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5216_3,-74.35910353,39.41547134,202 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5216_4,-74.87010085,39.56634154,204 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5216_5,-74.575989,39.367566,206 CHURCHILL DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5216_6,-74.5426141,39.38840669,206A CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5216_7,-74.54575721,39.38802604,311 FURLONG CIRCLE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5216_8,-74.80970687,39.63343653,309 FURLONG CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5216_9,-74.55613055,39.39070479,307 FURLONG CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5217_1,-74.58399513,39.37644231,415 SNOW FOX ROAD,EGG HARBOR TWP,16,2008,1,COM1,3004 -0108_5217_10,-74.63612687,39.44356367,22 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5217_11,-74.52082074,39.31763336,24 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5217_12,-74.72341903,39.45705381,26 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,COM1,3004 -0108_5217_13,-74.5721305,39.3440965,28 GALLANT FOX LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5217_14,-74.63169688,39.44564431,30 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5217_15,-74.64865012,39.53146734,32 GALLANT FOX LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5217_16,-74.5091915,39.527145,34 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5217_2,-74.55249959,39.47523928,413 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5217_3,-74.605514,39.3109515,411 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5217_4,-74.80970948,39.64112867,409 SNOW FOX ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5217_5,-74.6060405,39.3182155,407 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5217_6,-74.6073525,39.313979,405 SNOW FOX ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5217_7,-74.448942,39.37298,403 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5217_8,-74.80881226,39.64100978,401 SNOW FOX ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5217_9,-74.43394372,39.36703945,20 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_1,-74.3748015,39.41952,33 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_10,-74.567353,39.38735,15 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_11,-74.48867413,39.44146929,13 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_12,-74.60564317,39.32326503,11 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_13,-74.55408069,39.46861144,9 GALLANT FOX LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5218_14,-74.52181139,39.38459399,7 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_15,-74.60061973,39.31559904,5 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_16,-74.64512372,39.6237211,3 GALLANT FOX LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5218_17,-74.48450184,39.52491573,143 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_18,-74.65954102,39.63354405,141 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5218_19,-74.7228515,39.455723,139 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_2,-74.488789,39.4392585,31 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_20,-74.610199,39.4190645,137 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_21,-74.60493026,39.32579395,135 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_22,-74.87002044,39.4935788,133 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3004 -0108_5218_23,-74.49052689,39.33157119,131 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_24,-74.719811,39.6415505,129 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_25,-74.4624112,39.4718352,127 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_26,-74.48609349,39.34948833,125 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_27,-74.5598915,39.5243625,123 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_28,-74.428413,39.3677715,121 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_29,-74.6429905,39.3851025,119 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_3,-74.600231,39.320803,29 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_30,-74.82628687,39.63976241,117 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_31,-74.6315895,39.4456135,115 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_32,-74.736242,39.449914,113 DELAWARE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_33,-74.7279472,39.45384705,111 DELAWARE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5218_34,-74.4620995,39.4944085,109 DELAWARE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5218_4,-74.59365602,39.36474227,27 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_5,-74.81282437,39.63682734,25 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_6,-74.59085349,39.32857334,23 GALLANT FOX LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5218_7,-74.57588,39.419979,21 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_8,-74.62439024,39.53004608,19 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5218_9,-74.71697583,39.46371192,17 GALLANT FOX LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5219_1,-74.40046,39.387105,113 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5219_10,-74.424536,39.379762,111 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5219_2,-74.40312159,39.3881831,7107 TREMONT AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5219_3,-74.51811218,39.38970451,7109 TREMONT AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5219_4,-74.52473104,39.39047431,7111 TREMONT AVENUE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5219_5,-74.36448,39.4081755,101 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5219_6,-74.3994985,39.3893265,103 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5219_7,-74.365701,39.4097415,105 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5219_8,-74.40220539,39.39102285,107 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5219_9,-74.435551,39.3688495,109 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2013,1,RES4,3001 -0108_5301_1,-74.6087865,39.441289,7002 TREMONT AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5301_10,-74.85257969,39.36894957,6331 MILL ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5301_11,-74.71235183,39.42991599,6335 MILL ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5301_12,-74.5246725,39.3906035,7005 FERNWOOD AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5301_13,-74.52147,39.31496117,7007 FERNWOOD AVENUE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_5301_14,-74.57325175,39.35287173,7009 FERNWOOD AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5301_15,-74.8405215,39.5985675,7011 FERNWOOD AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5301_16,-74.61529892,39.37324089,7013 FERNWOOD AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5301_17,-74.53013587,39.51177143,7017 FERNWOOD AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5301_18,-74.645649,39.355856,7021 FERNWOOD AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5301_19,-74.64569399,39.39665667,7025 FERNWOOD AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5301_2,-74.67914815,39.60950508,6305 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5301_20,-74.613987,39.385211,7027 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5301_21,-74.63907654,39.38293972,224 DELAWARE AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5301_22,-74.593217,39.3688325,222 DELAWARE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5301_23,-74.72591702,39.45616882,220 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5301_24,-74.59142151,39.31240533,218 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5301_25,-74.8215905,39.63685617,216 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5301_27,-74.66922117,39.51747376,212 DELAWARE AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5301_28,-74.5297425,39.4456115,204 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5301_29,-74.50608884,39.32334349,202 DELAWARE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5301_3,-74.51431617,39.32383747,6309 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5301_30,-74.6340755,39.3914275,7008 TREMONT AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5301_31,-74.4891345,39.525754,7004 TREMONT AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3004 -0108_5301_5,-74.63523862,39.62699978,6315 MILL ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5301_6,-74.514861,39.321173,6317 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5301_7,-74.67565029,39.3565066,6321 MILL ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5301_8,-74.7277265,39.4574375,6323 MILL ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5301_9,-74.79416617,39.6397425,6327 MILL ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5302_1,-74.5248336,39.4553279,6401 MILL ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5302_10,-74.59156171,39.34798632,6425 MILL ROAD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5302_11,-74.59936497,39.41755488,7003 RIDGE AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5302_12,-74.600539,39.3194025,7005 RIDGE AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5302_13,-74.71500328,39.46445896,7011 RIDGE AVENUE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_5302_14,-74.5854985,39.4210495,7013 RIDGE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5302_15,-74.5859095,39.357309,7017 RIDGE AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5302_16.01,-74.55396968,39.36159346,7019 RIDGE AVENUE,EGG HARBOR TWP,16,1917,1,RES1,3001 -0108_5302_16.02,-74.44671692,39.37386719,7021 RIDGE AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5302_18,-74.43296705,39.3550497,7025 RIDGE AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5302_19.02,-74.57277067,39.35030607,7035 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5302_19.03,-74.58321529,39.47664369,7033 RIDGE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5302_19.04,-74.5527715,39.3812105,7031 RIDGE AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5302_2,-74.78764815,39.67595539,6403 MILL ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5302_20.02,-74.6922115,39.652386,7030 FERNWOOD AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5302_20.03,-74.5887341,39.37762286,7028 FERNWOOD AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5302_20.04,-74.6448043,39.36210521,7026 FERNWOOD AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5302_21,-74.575352,39.3570355,7022 FERNWOOD AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5302_22,-74.5683573,39.36575667,7018 FERNWOOD AVENUE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_5302_23,-74.62735316,39.39517071,7012 FERNWOOD AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5302_24,-74.53959222,39.3970818,7010 FERNWOOD AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5302_25,-74.48077056,39.34954619,7008 FERNWOOD AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5302_26,-74.71048753,39.4348704,7006 FERNWOOD AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5302_27,-74.8385765,39.5858335,7004 FERNWOOD AVENUE,EGG HARBOR TWP,16,1975,1,COM4,3004 -0108_5302_3,-74.43049041,39.36396731,6407 MILL ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5302_4,-74.81014364,39.64115345,6411 MILL ROAD,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_5302_7,-74.6310829,39.35088662,6415 MILL ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_5302_9,-74.4511525,39.3742475,6421 MILL ROAD,EGG HARBOR TWP,16,1976,1,COM1,3004 -0108_5303_10,-74.5576755,39.39192,36 DEIDRE DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5303_11,-74.594597,39.3114955,34 DEIDRE DRIVE,EGG HARBOR TWP,16,1976,1,COM1,3004 -0108_5303_12,-74.61689699,39.390882,32 DEIDRE DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5303_13,-74.72514583,39.56740229,7016 RIDGE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5303_14,-74.83113984,39.41573451,7020 RIDGE AVENUE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5303_15,-74.468746,39.3463565,7024 RIDGE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5303_19,-74.473246,39.442967,7034 RIDGE AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5303_2,-74.75611029,39.44616205,7012 RIDGE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5303_20,-74.5900895,39.42566984,7036 RIDGE AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5303_21,-74.7041125,39.4183865,101 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5303_22,-74.50885651,39.40785466,30 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5303_23,-74.37088309,39.41848194,32 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5303_24,-74.47809207,39.37181704,34 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5303_25,-74.549568,39.3843105,36 SHORELINE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5303_26,-74.58894654,39.31771609,38 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3004 -0108_5303_27,-74.54344084,39.37517949,40 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5303_28,-74.46616982,39.34388752,42 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5303_29,-74.58961484,39.32948301,346 SEA PINE DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5303_3,-74.59040739,39.3551537,7014 RIDGE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5303_30,-74.687921,39.5506042,344 SEA PINE DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5303_31,-74.54570124,39.38645226,342 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5303_32,-74.5880205,39.3213755,340 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5303_33,-74.59057546,39.31967203,338 SEA PINE DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5303_34,-74.4862264,39.33482831,336 SEA PINE DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5303_35,-74.48809,39.47829159,334 SEA PINE DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5303_36,-74.5281885,39.4499405,332 SEA PINE DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5303_37,-74.4537823,39.50005797,330 SEA PINE DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5303_38,-74.58970523,39.37165615,328 SEA PINE DRIVE,EGG HARBOR TWP,16,2014,1,COM1,3004 -0108_5303_39,-74.4697575,39.489247,326 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5303_4,-74.5030245,39.5176135,31 DEIDRE DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5303_40,-74.54158742,39.37954025,324 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5303_41,-74.36854897,39.40255924,322 SEA PINE DRIVE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5303_42,-74.49528617,39.43383566,320 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5303_43,-74.8698575,39.493871,318 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5303_5,-74.4482065,39.4803645,33 DEIDRE DRIVE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5303_6,-74.726464,39.5870695,35 DEIDRE DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5303_7,-74.51407194,39.39582468,37 DEIDRE DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5303_8,-74.625523,39.421387,38 DEIDRE DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5304_1,-74.67880244,39.44545787,401 DELAWARE AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5304_10,-74.59424531,39.38029748,206 BAYBERRY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5304_12,-74.58063742,39.36494416,7110 RIDGE AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5304_13,-74.42788217,39.35749675,7108 RIDGE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5304_14,-74.753176,39.6362765,7106 RIDGE AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5304_2,-74.50546517,39.32953748,403 DELAWARE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5304_2.01,-74.50305465,39.43037497,405 DELAWARE AVENUE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5304_4,-74.50393601,39.32556387,411 DELAWARE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5304_5,-74.59596547,39.43097348,413 DELAWARE AVENUE,EGG HARBOR TWP,52,1966,1,RES1,3001 -0108_5304_6,-74.5019385,39.4434335,212 BAYBERRY AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5304_6.01,-74.512279,39.460012,415 DELAWARE AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5304_7,-74.50414133,39.33834504,216 BAYBERRY AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5304_8,-74.78626,39.6776065,210 BAYBERRY AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5304_9,-74.508535,39.3380805,208 BAYBERRY AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5305_1,-74.88288837,39.59454834,301 DELAWARE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5305_10,-74.77480763,39.62667619,7119 RIDGE AVENUE,EGG HARBOR TWP,16,1963,1,GOV1,3004 -0108_5305_11,-74.638301,39.4017965,132 BAYBERRY AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5305_12,-74.57726684,39.34064524,130 BAYBERRY AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5305_13,-74.50373,39.44969,128 BAYBERRY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5305_14,-74.6802009,39.35281703,126 BAYBERRY AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5305_15,-74.49297433,39.3376565,122 BAYBERRY AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5305_16,-74.5935465,39.3230225,118 BAYBERRY AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5305_16.01,-74.58248304,39.34122834,120 BAYBERRY AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5305_17,-74.5438065,39.37849,116 BAYBERRY AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5305_18,-74.4804515,39.3469855,114 BAYBERRY AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5305_2.01,-74.37597892,39.41214484,7106 FERNWOOD AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5305_2.02,-74.50072234,39.33319399,303 DELAWARE AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5305_2.03,-74.88205139,39.59506902,305 DELAWARE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5305_20,-74.64473072,39.37524261,108 BAYBERRY AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5305_21,-74.91237855,39.49576388,7128 FERNWOOD AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5305_26,-74.513205,39.3247995,7118 FERNWOOD AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5305_3.01,-74.58125267,39.3612876,309 DELAWARE AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5305_3.02,-74.79930433,39.62119849,311 DELAWARE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5305_4,-74.62475061,39.35790636,315 DELAWARE AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5305_5,-74.87726337,39.49915819,319 DELAWARE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5305_6,-74.37409644,39.4161944,7101 RIDGE AVENUE,EGG HARBOR TWP,16,1956,1,COM3,3004 -0108_5305_7,-74.3818492,39.39980732,7107 RIDGE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5305_8,-74.87730141,39.47434393,7111 RIDGE AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_5305_9,-74.749245,39.445678,7115 RIDGE AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_5306_10,-74.9008955,39.5850955,9 RALLY ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5306_11,-74.47448646,39.4878922,11 RALLY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5306_12,-74.51926722,39.3195524,13 RALLY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5306_13,-74.8145295,39.6329535,12 RALLY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5306_14,-74.60978971,39.32015182,10 RALLY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5306_15,-74.62506331,39.41988044,8 RALLY ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5306_16,-74.815054,39.6556495,6 RALLY ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5306_17,-74.53468439,39.37733135,4 RALLY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5306_18,-74.78109772,39.67293479,7119 FERNWOOD AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5306_19,-74.7674678,39.63322009,7123 FERNWOOD AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5306_20,-74.56631409,39.36344427,7125 FERNWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5306_21,-74.70546387,39.57240833,7129 FERNWOOD AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5306_23.01,-74.52870426,39.38194043,200 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5306_23.02,-74.50879281,39.38621026,202 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_23.03,-74.52708732,39.38223494,204 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5306_23.04,-74.51559,39.393182,206 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5306_23.05,-74.52788345,39.38112318,208 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_23.06,-74.527093,39.3841215,210 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5306_23.07,-74.525269,39.38313,212 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_23.08,-74.53017281,39.38272803,214 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_23.10,-74.530897,39.3847675,25 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5306_23.11,-74.53024889,39.37561504,23 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5306_23.12,-74.53088314,39.37595272,21 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5306_23.13,-74.5613765,39.36531433,19 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_23.14,-74.49450863,39.34164761,17 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5306_23.15,-74.49163819,39.34026336,15 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5306_23.16,-74.4477605,39.3708855,13 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5306_23.17,-74.45346784,39.37093985,11 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_23.18,-74.49218753,39.34000067,9 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_23.19,-74.446156,39.3715915,7 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_23.20,-74.50521869,39.38489362,5 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5306_23.21,-74.4956155,39.341654,3 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5306_23.22,-74.45521,39.372346,1 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5306_4.05,-74.57859118,39.33928088,279 CHURCHILL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_4.06,-74.8044825,39.6382415,277 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.07,-74.5113501,39.43567119,275 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.08,-74.52906935,39.49933777,273 CHURCHILL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5306_4.09,-74.5611179,39.52408556,271 CHURCHILL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5306_4.11,-74.50410084,39.33450099,267 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES3A,3001 -0108_5306_4.12,-74.63262254,39.51188733,265 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.13,-74.56931762,39.4097454,263 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.14,-74.55003454,39.5261892,261 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.15,-74.47374868,39.48301967,259 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.16,-74.6307575,39.3900265,257 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.17,-74.61372668,39.34886418,255 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.18,-74.64154422,39.41127128,253 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.19,-74.8269255,39.648769,251 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_4.21,-74.582903,39.3280845,247 CHURCHILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5306_5,-74.57608694,39.3343946,7107 FERNWOOD AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5306_6,-74.51647383,39.3259995,7111 FERNWOOD AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5306_8,-74.7854565,39.642849,5 RALLY ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5306_9,-74.81756716,39.47123582,7 RALLY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5307_1,-74.46230268,39.35564098,211 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5307_10,-74.46304449,39.35206066,205 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5307_11,-74.46305,39.3527965,207 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5307_12,-74.44517709,39.36038667,209 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5307_2,-74.520186,39.3910265,12 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5307_3,-74.4517445,39.3519945,10 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5307_4,-74.44634363,39.35516512,8 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5307_5,-74.45244967,39.35329899,6 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5307_6,-74.4615834,39.35773759,4 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2009,1,RES3A,3001 -0108_5307_7,-74.45068,39.355855,2 COVERED BRIDGE COURT,EGG HARBOR TWP,16,2011,1,COM8,3004 -0108_5307_8,-74.46416133,39.35419909,201 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5307_9,-74.4817895,39.35285117,203 BRANCH HILL DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5401_1,-74.925134,39.5096315,7004 RIDGE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5401_10,-74.583857,39.432106,6531 MILL ROAD,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_5401_101,-74.48774947,39.35086614,6549 MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_102,-74.4996205,39.330312,6551 MILL ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_103,-74.55710791,39.38929833,1001 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5401_104,-74.48768956,39.43995841,1003 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_105,-74.38384264,39.39293905,1005 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_106,-74.840022,39.597556,443 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_107,-74.57982876,39.31070433,441 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_108,-74.513723,39.3248495,439 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_109,-74.53695133,39.384091,437 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_11,-74.47546513,39.49391047,6529 MILL ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5401_110,-74.84703071,39.53969046,435 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_111,-74.49647588,39.44699732,433 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_112,-74.62887428,39.40675672,431 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_113,-74.43916041,39.36877871,429 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_114,-74.5160703,39.43065452,427 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_115,-74.77792654,39.61998823,425 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_116,-74.63815212,39.34880756,423 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_117,-74.4795775,39.345828,421 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_118,-74.78414897,39.6544018,419 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_119,-74.9735125,39.509177,417 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5401_12,-74.6008885,39.3670475,6533 MILL ROAD,EGG HARBOR TWP,16,1950,1,RES1,3004 -0108_5401_120,-74.55469464,39.36197555,415 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_121,-74.3705395,39.4040145,413 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_122,-74.63898991,39.53420014,411 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_123,-74.62995243,39.3629396,409 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_124,-74.800585,39.4346685,407 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_125,-74.54670213,39.47035608,405 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_126,-74.56137275,39.36169364,403 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_127,-74.5030275,39.406598,401 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_128,-74.53317785,39.30666746,365 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_129,-74.50388,39.342052,363 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_13,-74.8873085,39.4778675,6535 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_130,-74.498759,39.466519,361 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_131,-74.45798131,39.3511944,359 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_132,-74.61850609,39.43835034,357 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_133,-74.392042,39.3882605,355 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_134,-74.51632,39.39698,353 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_135,-74.55116777,39.37220675,351 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_136,-74.57359085,39.33986548,349 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_137,-74.68339705,39.39062581,347 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_5401_139,-74.4977875,39.327891,345 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_14.01,-74.36555655,39.40789967,6537 MILL ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5401_14.02,-74.80407758,39.63193515,6539 MILL ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_14.03,-74.60504534,39.38359603,6541 MILL ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5401_140,-74.60291192,39.32376865,343 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_141,-74.7339875,39.4373405,341 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_142,-74.8733145,39.5887345,339 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES2,3005 -0108_5401_143,-74.49101502,39.33960684,337 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_144,-74.6394285,39.409309,335 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_145,-74.8292555,39.4082665,333 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_146,-74.46796614,39.48991244,331 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_147,-74.775248,39.6177865,329 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_148,-74.599231,39.4352205,327 SUPERIOR ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_149,-74.4914085,39.4329605,325 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_15,-74.50773916,39.3378302,6543 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_150,-74.5848875,39.432752,323 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_151,-74.65695897,39.36036481,321 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_152,-74.381456,39.40107,319 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_153,-74.58511244,39.4067887,317 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5401_154,-74.58695239,39.37134698,315 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_155,-74.60201473,39.48087484,313 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_157,-74.65252417,39.46034624,311 MONTPELIER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_158,-74.57041784,39.34786101,309 MONTPELIER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_159,-74.752755,39.298988,307 MONTPELIER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_16,-74.68772234,39.51128399,6545 MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_160,-74.5048885,39.443436,305 MONTPELIER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_161,-74.59277152,39.32401532,303 MONTPELIER AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_162,-74.61159126,39.36484511,301 MONTPELIER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_163,-74.8202413,39.36642502,207 MONTPELIER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_164,-74.5915895,39.379402,205 MONTPELIER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_165,-74.57264425,39.41169321,203 MONTPELIER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_166,-74.8241435,39.6473245,201 MONTPELIER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_167,-74.513516,39.4424195,107 MONTPELIER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_168,-74.43463161,39.36418012,105 MONTPELIER AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5401_169,-74.701459,39.574715,103 MONTPELIER AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_17,-74.693329,39.44934,6547 MILL ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_2,-74.58409576,39.38023203,6511 MILL ROAD,EGG HARBOR TWP,17,2000,1,RES1,3001 -0108_5401_23,-74.611762,39.429675,6571 MILL ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5401_24.01,-74.60988,39.384143,6573 MILL ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5401_24.02,-74.60574556,39.50269915,2 BURNSIDE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_24.03,-74.6202415,39.6052885,4 BURNSIDE DRIVE,EGG HARBOR TWP,16,2005,1,COM1,3004 -0108_5401_24.04,-74.5237205,39.399198,6 BURNSIDE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_24.05,-74.57442,39.425498,8 BURNSIDE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_24.06,-74.4783805,39.339622,10 BURNSIDE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_24.07,-74.528755,39.462326,12 BURNSIDE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_24.08,-74.48012284,39.34257649,14 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.09,-74.47548259,39.33855018,16 BURNSIDE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_24.10,-74.60567821,39.38989884,18 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.11,-74.55011273,39.37000844,20 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.12,-74.398528,39.3866955,22 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.13,-74.481563,39.3369575,24 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.14,-74.60076492,39.34965329,26 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.15,-74.4963295,39.3375835,28 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.16,-74.49150033,39.33769772,30 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.17,-74.833029,39.4080685,32 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.18,-74.35873148,39.41516567,34 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.19,-74.559255,39.4157085,36 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.20,-74.95063717,39.53376503,38 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.21,-74.49139989,39.33445134,40 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,COM1,3004 -0108_5401_24.22,-74.55573034,39.36153098,42 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.23,-74.6245155,39.4111745,44 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.24,-74.63393715,39.53414146,46 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.26,-74.93809268,39.53029195,50 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.27,-74.5708767,39.41310276,52 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3004 -0108_5401_24.28,-74.8673635,39.5978325,54 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.29,-74.65810299,39.40039617,56 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.30,-74.5628465,39.369687,58 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.31,-74.60133134,39.31482174,60 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_5401_24.32,-74.5532765,39.472048,62 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.33,-74.60954214,39.37719321,64 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.34,-74.46127109,39.34916368,66 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.35,-74.80752927,39.36757963,68 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.36,-74.49067134,39.33489299,70 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.37,-74.56508183,39.36792433,72 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.38,-74.75980628,39.43082823,74 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.39,-74.59595119,39.31174954,76 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.40,-74.8132595,39.6293685,78 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.41,-74.4626272,39.35527066,80 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.42,-74.46722378,39.34699217,82 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.43,-74.6352965,39.470361,84 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.44,-74.83748869,39.47094803,86 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.45,-74.512806,39.3982315,88 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.46,-74.9485245,39.5327175,90 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.47,-74.57105838,39.36784661,92 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.48,-74.853582,39.484373,94 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.49,-74.59861887,39.36773205,96 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.50,-74.5362145,39.4046025,98 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.51,-74.50447994,39.48901422,100 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.52,-74.5871365,39.328554,102 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.53,-74.36131442,39.41714639,104 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.54,-74.553205,39.3805615,106 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.55,-74.7063325,39.561792,108 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.56,-74.80462802,39.63831884,110 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,COM1,3004 -0108_5401_24.57,-74.520417,39.318852,112 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.58,-74.46743651,39.34379417,114 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.59,-74.48297907,39.33879262,116 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.60,-74.491842,39.473198,118 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,COM1,3004 -0108_5401_24.61,-74.6038505,39.5969235,120 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,EDU1,3004 -0108_5401_24.62,-74.604335,39.369032,122 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.63,-74.593921,39.32868,124 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.64,-74.509627,39.473191,126 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.65,-74.80489942,39.37688605,235 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.66,-74.7747605,39.659666,233 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.67,-74.4956385,39.334584,231 LANDER ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.68,-74.564276,39.4120355,229 LANDER ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_24.69,-74.52450196,39.45868616,227 LANDER ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5401_24.70,-74.4811875,39.348326,225 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.71,-74.63998315,39.38060302,223 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_24.72,-74.81051517,39.63404081,221 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_25,-74.48637001,39.33366417,6575 MILL ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5401_26,-74.51471871,39.3247394,6577 MILL ROAD,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_5401_27,-74.37307713,39.41681253,6581 MILL ROAD,EGG HARBOR TWP,16,1909,1,RES1,3001 -0108_5401_3,-74.50730366,39.46184406,6513 MILL ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5401_37,-74.5091045,39.341372,6603 MILL ROAD,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_5401_38,-74.9469225,39.51916228,6609 MILL ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5401_39,-74.94438089,39.50367017,6613 MILL ROAD,EGG HARBOR TWP,16,1945,1,RES3B,3001 -0108_5401_4,-74.53688318,39.40406971,6515 MILL ROAD,EGG HARBOR TWP,16,1940,1,GOV1,3004 -0108_5401_40,-74.75604156,39.45244609,6615 MILL ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5401_41,-74.53700226,39.39084596,6617 MILL ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5401_42,-74.42308867,39.37170491,6619 MILL ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5401_43,-74.63776316,39.38140051,6621 MILL ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5401_44,-74.3689775,39.405471,6623 MILL ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5401_46.02,-74.747591,39.6374145,2 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5401_46.03,-74.7963605,39.539279,4 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5401_46.04,-74.59438988,39.36594688,6 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.05,-74.50226472,39.33813872,8 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3004 -0108_5401_46.06,-74.50153,39.4130145,10 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.07,-74.5857745,39.3219955,12 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.08,-74.71722983,39.4420525,14 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.09,-74.80174581,39.64208993,16 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.11,-74.50505781,39.34152803,20 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.12,-74.636056,39.3828635,22 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.13,-74.61052874,39.31519747,24 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.14,-74.5726219,39.54737384,26 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.15,-74.848174,39.6155895,28 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.16,-74.44899998,39.37452368,30 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.17,-74.6163695,39.5072705,32 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.18,-74.38396563,39.39980894,34 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.19,-74.52313217,39.39737801,36 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.21,-74.60290129,39.44388484,118 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.22,-74.50387699,39.43345772,120 GARNETT LANE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5401_46.23,-74.51774895,39.39411514,122 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.24,-74.64328786,39.4355238,124 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES3A,3001 -0108_5401_46.25,-74.48176935,39.33911585,126 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.26,-74.60018,39.5010885,128 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.27,-74.6158595,39.4292675,130 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.28,-74.65273413,39.59391872,141 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.29,-74.61587895,39.30905616,139 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.31,-74.825433,39.3879935,135 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.32,-74.5682135,39.4177615,133 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.33,-74.54483805,39.39087314,131 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.34,-74.57108836,39.41393846,129 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.35,-74.64155466,39.52925098,127 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.36,-74.38117138,39.41786953,125 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.37,-74.48654432,39.34621307,123 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.38,-74.60803726,39.3871059,121 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_46.39,-74.56997791,39.37134784,119 GARNETT LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_46.41,-74.44927838,39.48561493,1 EVANS ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_47,-74.5208645,39.3990245,1009 OLD ZION ROAD,EGG HARBOR TWP,16,1890,1,RES1,3001 -0108_5401_48,-74.59567366,39.38034059,1027 OLD ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5401_49,-74.9208205,39.474841,1031 OLD ZION ROAD,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_5401_5,-74.51291565,39.32360952,6517 MILL ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5401_51,-74.67882475,39.37841689,1039 OLD ZION ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5401_52,-74.52678016,39.45862271,1043 OLD ZION ROAD,EGG HARBOR TWP,16,1999,1,COM1,3004 -0108_5401_54.01,-74.81755861,39.61314932,1049 OLD ZION ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_54.02,-74.49354566,39.44857673,1051 OLD ZION ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_54.03,-74.5022355,39.4167755,1053 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.04,-74.68499768,39.39229038,1055 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.05,-74.92809254,39.5192185,1057 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.06,-74.7261965,39.4579935,1059 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.07,-74.62226554,39.31440786,65 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_54.08,-74.44101057,39.36561618,63 MARSH ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.09,-74.602012,39.4355,61 MARSH ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.11,-74.59247434,39.36022401,57 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_5401_54.12,-74.636875,39.3619325,55 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_54.13,-74.49236416,39.33659901,53 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_54.14,-74.57310829,39.41675399,51 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_5401_54.15,-74.46912918,39.34213197,49 MARSH ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_5401_54.16,-74.81182695,39.63980668,47 MARSH ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_54.17,-74.487664,39.47655147,45 MARSH ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5401_54.18,-74.53666404,39.38513716,43 MARSH ROAD,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_5401_54.19,-74.61157809,39.48621785,41 MARSH ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_54.21,-74.41288968,39.36870149,39 MARSH ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_5401_54.22,-74.583348,39.4320355,37 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_54.23,-74.45648504,39.48966865,35 MARSH ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.24,-74.79404464,39.64726353,33 MARSH ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_54.25,-74.8518401,39.60815767,31 MARSH ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_54.26,-74.63224871,39.3914379,29 MARSH ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.27,-74.5661855,39.412223,27 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_54.28,-74.52200014,39.32020274,25 MARSH ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_54.29,-74.533086,39.470011,23 MARSH ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.31,-74.85045566,39.55262948,619 CENTRAL AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_54.32,-74.58798017,39.3218765,617 CENTRAL AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.33,-74.57396758,39.42768714,615 CENTRAL AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_54.34,-74.5714255,39.4273605,613 CENTRAL AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.35,-74.58596866,39.3297245,611 CENTRAL AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.36,-74.61373839,39.42894049,609 CENTRAL AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_54.37,-74.51517872,39.38795199,607 CENTRAL AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5401_54.38,-74.7143939,39.43160475,605 CENTRAL AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_54.39,-74.506262,39.405777,603 CENTRAL AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5401_55,-74.5572,39.469285,506 DELAWARE AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_5401_58,-74.50718843,39.40345918,486 DELAWARE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5401_59,-74.4853785,39.3396635,482 DELAWARE AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_5401_6,-74.49020461,39.33632068,6519 MILL ROAD,EGG HARBOR TWP,16,1988,1,RES1,3002 -0108_5401_60,-74.5930065,39.3714745,490 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_61,-74.78977399,39.64239483,494 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_62,-74.50076384,39.44286201,496 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_63,-74.5389345,39.379511,498 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES3A,3004 -0108_5401_66,-74.53668317,39.3795515,480 DELAWARE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5401_67,-74.40645281,39.38030454,478 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_68,-74.60605286,39.49262821,476 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_69.01,-74.939912,39.5160165,49 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_69.02,-74.55930717,39.41408199,47 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_5401_69.03,-74.62822438,39.43792351,45 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_5401_69.04,-74.91622316,39.50145398,43 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.05,-74.93987887,39.5464148,41 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,COM1,3004 -0108_5401_69.06,-74.60112026,39.34040923,39 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_69.07,-74.76412,39.669962,37 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_69.08,-74.638471,39.400372,35 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.09,-74.53539321,39.40466721,33 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.11,-74.5935245,39.31189,29 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_69.12,-74.4942795,39.49293,27 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_69.13,-74.59128235,39.31741493,25 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5401_69.14,-74.54866488,39.53396278,23 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.16,-74.60424121,39.54742053,19 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.17,-74.56669792,39.4128077,17 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_5401_69.18,-74.90316309,39.56689423,15 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,COM1,3004 -0108_5401_69.19,-74.5323515,39.386897,13 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.21,-74.53518884,39.39144136,9 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.22,-74.59394433,39.41527233,7 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.23,-74.79025724,39.44720687,5 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.24,-74.48706999,39.4686992,3 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_69.25,-74.378875,39.419006,1 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5401_7,-74.74298633,39.42692879,6521 MILL ROAD,EGG HARBOR TWP,16,1965,2,RES1,3001 -0108_5401_71,-74.59148132,39.32680798,462 DELAWARE AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5401_72.01,-74.69307083,39.41680295,2 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.02,-74.44484512,39.37462572,4 HOLLOW DRIVE,EGG HARBOR TWP,16,2002,1,REL1,3002 -0108_5401_72.03,-74.651191,39.3530525,102 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.04,-74.58637867,39.32817707,104 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.05,-74.38313651,39.39948041,106 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.06,-74.56717296,39.41627413,108 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.07,-74.486615,39.5274715,110 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.08,-74.64271466,39.41161267,112 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.09,-74.46955817,39.4913095,114 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.11,-74.45365932,39.48937899,118 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.13,-74.76622,39.6114715,13 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.14,-74.899163,39.5372685,11 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.15,-74.63519967,39.43142851,9 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.16,-74.71431398,39.58152416,7 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.17,-74.72755027,39.45367988,5 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_5401_72.18,-74.435308,39.3651755,3 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5401_72.19,-74.5301755,39.4028355,1 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES3B,3001 -0108_5401_73,-74.777044,39.6129215,458 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_5401_74,-74.52551863,39.31731269,452 DELAWARE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5401_75,-74.593799,39.358433,450 DELAWARE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5401_77,-74.41696998,39.36878465,446 DELAWARE AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_5401_78,-74.5125775,39.402519,444 DELAWARE AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_5401_79,-74.7033805,39.5822405,442 DELAWARE AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5401_8,-74.5769725,39.3525965,6523 MILL ROAD,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_5401_80,-74.52279606,39.32184567,440 DELAWARE AVENUE,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_5401_81,-74.63653409,39.62116421,4 BEECHNUT AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5401_82,-74.86038336,39.56531605,6 BEECHNUT AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5401_89,-74.87995792,39.47568364,200 CRABAPPLE AVENUE,EGG HARBOR TWP,16,1943,1,RES1,3001 -0108_5401_9,-74.57856164,39.33282964,6527 MILL ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5401_91,-74.88753358,39.59797076,7 HOLLYBERRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_92,-74.754797,39.4305105,5 HOLLYBERRY AVENUE,EGG HARBOR TWP,16,1930,1,RES3A,3001 -0108_5401_94,-74.52664516,39.38587229,430 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5401_95,-74.697901,39.5589305,428 DELAWARE AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3004 -0108_5401_96,-74.524643,39.3196695,426 DELAWARE AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5401_97,-74.45662857,39.34847091,416 DELAWARE AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_5401_99.04,-74.653971,39.5457035,8 SHORELINE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_99.07,-74.47765745,39.3389211,6 SHORELINE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3002 -0108_5401_99.08,-74.50894458,39.45656953,4 SHORELINE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_99.09,-74.63436453,39.42809133,106 OFFSHORE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5401_99.11,-74.5990095,39.372821,110 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_99.12,-74.37216085,39.41031369,112 OFFSHORE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5401_99.13,-74.48888902,39.45978793,114 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES3B,3001 -0108_5401_99.14,-74.62710735,39.43862994,116 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_99.15,-74.5804505,39.5984435,118 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_99.16,-74.50851387,39.46054728,120 OFFSHORE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5401_99.17,-74.550324,39.37897,218 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_99.18,-74.6419515,39.434207,220 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5401_99.19,-74.8862435,39.558447,222 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_99.22,-74.55578952,39.4777316,228 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5401_99.23,-74.742969,39.6433445,230 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5401_99.24,-74.57973833,39.33755849,232 SEA PINE DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5401_99.25,-74.51497483,39.328404,234 SEA PINE DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5401_99.26,-74.373701,39.406206,236 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5401_99.27,-74.72856607,39.64316859,238 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5401_99.29,-74.9516675,39.532812,242 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5401_99.32,-74.524458,39.441734,244 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5401_99.33,-74.59157859,39.37106235,246 SEA PINE DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5401_99.34,-74.53848798,39.38283623,248 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5401_99.35,-74.36060461,39.41379322,250 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5401_99.36,-74.52954385,39.38336514,252 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5401_99.37,-74.6010015,39.3973635,254 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5401_99.38,-74.57281182,39.35258997,256 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5401_99.39,-74.804312,39.630235,258 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5401_99.41,-74.4937945,39.4340005,262 SEA PINE DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5401_99.42,-74.49455028,39.45630589,264 SEA PINE DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5401_99.43,-74.58110145,39.32994228,300 SEA PINE DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5401_99.44,-74.66608517,39.54441351,302 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES3A,3001 -0108_5401_99.45,-74.36501016,39.41044272,304 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5401_99.46,-74.89341546,39.54206984,306 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_5401_99.47,-74.868717,39.4942405,308 SEA PINE DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5401_99.48,-74.47558091,39.48301007,310 SEA PINE DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5401_99.49,-74.470544,39.487498,312 SEA PINE DRIVE,EGG HARBOR TWP,16,2016,1,RES3A,3001 -0108_5401_99.51,-74.81278,39.628302,316 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5401_99.52,-74.54311422,39.37529565,100 SEA FOAM ROAD,EGG HARBOR TWP,16,2013,1,GOV1,3004 -0108_5401_99.53,-74.631503,39.4458035,12 SHORELINE ROAD,EGG HARBOR TWP,16,2010,1,COM10,3003 -0108_5401_99.54,-74.8369185,39.5413815,10 SHORELINE ROAD,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_5402_1,-74.60592827,39.41364662,6 HOLLYBERRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5402_3,-74.47591709,39.34454667,9 BEECHNUT AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5403_3,-74.406129,39.377662,2 HOLLYBERRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3004 -0108_5403_6,-74.51775095,39.32179,5 BEECHNUT AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5403_7,-74.60638746,39.39022776,3 BEECHNUT AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5404_1,-74.45047786,39.35376283,432 DELAWARE AVENUE,EGG HARBOR TWP,16,1973,1,RES4,3004 -0108_5404_2,-74.57879272,39.43022813,434 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3002 -0108_5404_3,-74.4619145,39.3566855,1 HOLLYBERRY AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5404_4,-74.7848835,39.6765275,3 HOLLYBERRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5405_1,-74.50041367,39.42781998,1007 ST.CLAIR BLVD.,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_5405_10,-74.38655664,39.39543744,112 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_5405_11,-74.53710317,39.37956852,110 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,COM3,3004 -0108_5405_12,-74.55936292,39.47197606,108 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_13,-74.48661674,39.42280688,106 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_14,-74.5327755,39.38089,104 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_15,-74.48701229,39.45144783,102 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_16,-74.63427538,39.35991356,100 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_17,-74.4790045,39.4419175,402 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_18,-74.787161,39.677125,404 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_19,-74.4879635,39.333821,406 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_2,-74.4894985,39.3366485,1009 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_5405_20,-74.58870029,39.41344908,408 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_21,-74.70604317,39.44591839,410 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_22,-74.64874531,39.45479819,412 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_23,-74.49907837,39.33246725,414 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5405_24,-74.54774541,39.47059073,416 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_25,-74.4804015,39.349518,418 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_5405_26,-74.43150301,39.37006081,420 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_27,-74.9149315,39.5293275,422 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_28,-74.4856335,39.4337045,424 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_29,-74.37081484,39.41149333,426 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_3,-74.59969772,39.34468148,126 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5405_30,-74.59070763,39.32275941,428 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_5405_31,-74.7135775,39.4199325,430 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_32,-74.58690429,39.41113226,432 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_4,-74.4425595,39.372744,124 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_5,-74.778791,39.626609,122 ONTARIO AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5405_6,-74.74904,39.446399,120 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_7,-74.45349342,39.49096611,118 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5405_8,-74.3686425,39.408969,116 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5405_9,-74.44000094,39.37008732,114 ONTARIO AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_1,-74.58919245,39.37759979,101 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5406_10,-74.43902305,39.36562319,119 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_11,-74.669977,39.41834,121 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5406_12,-74.57478704,39.35010674,123 ONTARIO AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_13,-74.66950982,39.41728425,13 ONTARIO AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5406_14,-74.5568175,39.3976725,201 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5406_15,-74.70144692,39.48414365,203 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5406_16,-74.62948382,39.41751492,205 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5406_17,-74.4131865,39.36914259,207 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5406_18,-74.78787594,39.63244871,209 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5406_19,-74.56392944,39.36620933,211 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_2,-74.78000719,39.63320939,103 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_20,-74.52242719,39.38808653,213 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5406_21,-74.65390444,39.35656055,215 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5406_22,-74.44375629,39.51560113,217 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_23,-74.485514,39.3398095,219 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_24,-74.80301079,39.62509191,221 ONTARIO AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_25,-74.56413426,39.3689261,223 ONTARIO AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_26,-74.7839495,39.6402195,225 ONTARIO AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_27,-74.75455415,39.35896826,302 MONTPELIER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_28,-74.67045758,39.45559529,304 MONTPELIER AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_29,-74.524022,39.42157367,306 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5406_3,-74.62898604,39.42211931,105 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_30,-74.50786387,39.33171939,308 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,REL1,3003 -0108_5406_31,-74.5869843,39.43002809,310 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_32,-74.7975201,39.53544969,312 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_33,-74.73778428,39.64136871,314 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_5406_34,-74.83773967,39.40455901,316 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_35,-74.607483,39.386349,318 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_36,-74.79560061,39.62999291,320 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_37,-74.58587791,39.33458129,322 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_38,-74.72964143,39.46428549,324 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_39,-74.51640092,39.32173367,326 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_5406_4,-74.81865873,39.65206843,107 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_40,-74.54200545,39.39267933,328 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,IND1,3004 -0108_5406_41,-74.578597,39.341249,330 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_5406_42,-74.79186638,39.64175024,332 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_43,-74.493711,39.338887,334 SUPERIOR ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5406_44,-74.65596567,39.36529955,336 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_45,-74.5995919,39.43260731,338 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_46,-74.48824233,39.336313,340 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_47,-74.61008166,39.31793049,342 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_48,-74.49724974,39.44654753,344 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_49,-74.4222065,39.3732935,346 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5406_5,-74.59805558,39.43097531,109 ONTARIO AVENUE,EGG HARBOR TWP,16,2001,1,COM1,3004 -0108_5406_50,-74.6087685,39.3194555,348 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_51,-74.887778,39.597559,350 SUPERIOR ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_6,-74.58715532,39.34710603,111 ONTARIO AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5406_7,-74.49668903,39.33517667,113 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_8,-74.61539373,39.3574634,115 ONTARIO AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5406_9,-74.64805305,39.35581379,117 ONTARIO AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5407_1,-74.3758,39.417391,1008 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5407_10,-74.51115917,39.32210798,518 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_11,-74.497799,39.449723,520 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_12,-74.9116014,39.49983962,522 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_13,-74.49008078,39.44613238,524 SUPERIOR ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5407_14,-74.6075932,39.39300896,526 SUPERIOR ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5407_15,-74.69818794,39.5114013,226 ONTARIO AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5407_16,-74.41016067,39.39153693,224 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_17,-74.44475305,39.37545277,222 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_18,-74.59071152,39.50687227,220 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_19,-74.59017296,39.42763615,218 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_2,-74.8009392,39.54635014,502 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_20,-74.71509267,39.4673385,216 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_21,-74.61671188,39.32112757,214 ONTARIO AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_5407_22,-74.5213063,39.39408973,212 ONTARIO AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5407_23,-74.88112495,39.49750224,210 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_24,-74.588967,39.320706,208 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_5407_25,-74.5801015,39.4746725,206 ONTARIO AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5407_26,-74.518548,39.445286,204 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_27,-74.591482,39.3765385,202 ONTARIO AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_28,-74.8336225,39.4824785,1012 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5407_29,-74.525026,39.316752,1010 ST.CLAIR BLVD.,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_5407_3,-74.59203991,39.43057592,504 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_4,-74.62110071,39.37482336,506 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_5407_5,-74.62958532,39.4209349,508 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_6,-74.45855531,39.48162249,510 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_5407_7,-74.48620274,39.34574921,512 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_8,-74.65358333,39.45768687,514 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5407_9,-74.59515851,39.31184066,516 SUPERIOR ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5408_1,-74.49526217,39.33142146,6567 MILL ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_5408_10,-74.7405925,39.639519,513 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5408_12,-74.6067425,39.314187,1006 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5408_13,-74.46406862,39.35255816,1004 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5408_14,-74.85445207,39.60804653,1002 ST.CLAIR BLVD.,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5408_18,-74.47352814,39.34166171,6553 MILL ROAD,EGG HARBOR TWP,16,1940,1,GOV1,3004 -0108_5408_2,-74.57289501,39.36771766,6569 MILL ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5408_20,-74.7975125,39.64054105,6559 MILL ROAD,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_5408_21,-74.55811607,39.44449794,6565 MILL ROAD,EGG HARBOR TWP,16,1909,1,RES1,3001 -0108_5408_3,-74.49162665,39.3396583,102 MONTPELIER AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5408_4,-74.69121537,39.41640823,525 SUPERIOR ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5408_5,-74.506051,39.336549,523 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_5408_6,-74.48985884,39.33790339,521 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5408_7,-74.613999,39.363734,519 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5408_8,-74.58881085,39.42745279,517 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5408_9,-74.93830008,39.5282122,515 SUPERIOR ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5410_1,-74.63134053,39.52447287,512 DELAWARE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5410_10,-74.46231322,39.49651805,520 DELAWARE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_11,-74.8829065,39.6004125,518 DELAWARE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_12,-74.7042023,39.59103614,516 DELAWARE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_13,-74.803028,39.623157,514 DELAWARE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_2,-74.6021185,39.3818315,79 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_3,-74.61030176,39.49096839,77 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_4,-74.81769115,39.62570799,75 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_5,-74.6420305,39.526653,73 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_6,-74.5145495,39.4616615,71 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5410_7,-74.63866884,39.38050949,69 MARSH ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5410_8,-74.60047013,39.31837621,524 DELAWARE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5410_9,-74.93931505,39.51704331,522 DELAWARE AVENUE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_5411_1,-74.4907855,39.3360395,614 CENTRAL AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5411_10,-74.8400395,39.415005,105 RAINBOW TRAIL,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5411_11,-74.57903655,39.33101689,107 RAINBOW TRAIL,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5411_12,-74.58938758,39.40377031,109 RAINBOW TRAIL,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5411_13,-74.53887616,39.38583895,111 RAINBOW TRAIL,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5411_14,-74.38067107,39.39849262,113 RAINBOW TRAIL,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_5411_2,-74.58139504,39.33007855,612 CENTRAL AVENUE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5411_3,-74.80544901,39.62510517,610 CENTRAL AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5411_4,-74.65165251,39.52408617,608 CENTRAL AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5411_5,-74.58176514,39.4172446,606 CENTRAL AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5411_6,-74.62511487,39.37901543,604 CENTRAL AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5411_7,-74.52882063,39.44707745,602 CENTRAL AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5411_8,-74.78935216,39.64333349,101 RAINBOW TRAIL,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5411_9,-74.58694122,39.33193178,103 RAINBOW TRAIL,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5412_1,-74.4664586,39.34459167,114 RAINBOW TRAIL,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5412_10,-74.553196,39.4659535,203 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5412_11,-74.8409565,39.528076,205 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5412_12,-74.47338401,39.34224874,207 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5412_13,-74.4732325,39.3436135,209 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5412_14,-74.57754641,39.34211197,211 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5412_15,-74.52209395,39.39400969,213 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5412_16,-74.6029025,39.350359,215 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5412_2,-74.88352987,39.56206873,112 RAINBOW TRAIL,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5412_3,-74.9033945,39.499013,110 RAINBOW TRAIL,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5412_4,-74.79761884,39.62824288,108 RAINBOW TRAIL,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5412_5,-74.48644508,39.33738617,106 RAINBOW TRAIL,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5412_6,-74.65246359,39.36938973,104 RAINBOW TRAIL,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5412_7,-74.6236655,39.604897,102 RAINBOW TRAIL,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5412_8,-74.95024472,39.5223411,100 RAINBOW TRAIL,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5412_9,-74.56744247,39.34741369,201 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5413_1,-74.521022,39.3185015,214 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5413_10,-74.490789,39.335092,303 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5413_11,-74.6296555,39.428565,305 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5413_12,-74.565059,39.3706915,307 POND ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5413_13,-74.59547533,39.37957617,309 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5413_14,-74.59475972,39.36450904,311 POND ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5413_15,-74.51075104,39.47229703,313 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5413_16,-74.44111705,39.35393782,315 POND ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5413_2,-74.59814851,39.50131516,212 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5413_3,-74.4999085,39.433444,210 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5413_4,-74.52310212,39.4549167,208 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5413_5,-74.83209465,39.52945667,206 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5413_6,-74.52779397,39.39737168,204 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5413_7,-74.49337892,39.34073594,202 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5413_8,-74.63536759,39.38393004,200 WINDSWEPT DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5413_9,-74.544368,39.3843495,301 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5414_1,-74.75344261,39.48601523,312 POND ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5414_10,-74.58606843,39.53400385,409 RUSTIC DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5414_2,-74.655846,39.5506275,310 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5414_3,-74.9078411,39.53801282,308 POND ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5414_4,-74.588692,39.363695,306 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5414_5,-74.59417584,39.31575551,304 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5414_6,-74.71729674,39.38972693,401 RUSTIC DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5414_7,-74.60946689,39.49002695,403 RUSTIC DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5414_8,-74.47598801,39.34230792,405 RUSTIC DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5414_9,-74.49479853,39.33655967,407 RUSTIC DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5415_1,-74.9734615,39.5098935,500 COBBLESTONE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_10,-74.3687,39.41552,300 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_11,-74.8306458,39.46313645,302 POND ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_12,-74.92756514,39.50876606,400 RUSTIC DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_13,-74.5884955,39.3510095,402 RUSTIC DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5415_14,-74.36904484,39.40362954,404 RUSTIC DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_15,-74.39778803,39.38986303,406 RUSTIC DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_2,-74.48645332,39.33678901,502 COBBLESTONE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_3,-74.64281464,39.53091696,504 COBBLESTONE COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5415_4,-74.590572,39.42859,60 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_5,-74.50831745,39.34035367,62 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_6,-74.503281,39.413921,64 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_7,-74.60994681,39.35179154,66 MARSH ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5415_8,-74.605556,39.333263,68 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5415_9,-74.62968631,39.42072842,70 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5416_1,-74.37004501,39.40787767,42 MARSH ROAD,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5416_2,-74.649559,39.5257275,44 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5416_3,-74.8560256,39.43815493,46 MARSH ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5416_4,-74.80550689,39.63189515,48 MARSH ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_5416_5,-74.43602088,39.37335907,505 COBBLESTONE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5416_6,-74.5398925,39.3922375,503 COBBLESTONE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5416_7,-74.81213969,39.65785529,501 COBBLESTONE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5417_1,-74.601423,39.3149125,116 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_10,-74.43736951,39.36733518,1 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_11,-74.60838153,39.31700891,3 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_12,-74.58806537,39.4167932,5 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_13,-74.62060784,39.43788042,7 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_14,-74.486861,39.3345485,9 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_15,-74.5632825,39.487907,11 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_16,-74.497993,39.3386975,13 JACKSON DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5417_17,-74.505119,39.430239,15 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_18,-74.92331005,39.48330125,17 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_19,-74.5537079,39.38113786,19 JACKSON DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_2,-74.62869774,39.39168661,114 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_3,-74.9120205,39.499359,112 GARNETT LANE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5417_4,-74.82722643,39.41005233,110 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_5,-74.372236,39.4113595,108 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_6,-74.67150467,39.37980899,106 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_7,-74.5680605,39.413632,104 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_8,-74.6329345,39.429871,102 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5417_9,-74.48338281,39.44092248,100 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5418_1,-74.5034772,39.33489297,6 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5418_10,-74.53387422,39.38833847,103 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5418_2,-74.63735915,39.38127639,8 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5418_3,-74.61718136,39.43817342,10 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5418_4,-74.556925,39.473107,12 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5418_5,-74.6138685,39.390533,14 HOLLOW DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5418_6,-74.774723,39.319086,111 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5418_7,-74.50079817,39.3279965,109 HAWTHORNE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5418_8,-74.61756038,39.31971179,107 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5418_9,-74.810189,39.521547,105 HAWTHORNE ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5419_1,-74.47017814,39.48499391,201 SURF ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_10,-74.5075415,39.4264375,219 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5419_11,-74.55778418,39.39687848,221 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5419_12,-74.76068664,39.30910732,223 SURF ROAD,EGG HARBOR TWP,16,2017,2,RES1,3001 -0108_5419_13,-74.87722521,39.59907853,225 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5419_14,-74.59402187,39.32564075,227 SURF ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5419_15,-74.7914865,39.631811,301 SEA PINE DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5419_16,-74.5096645,39.4190315,303 SEA PINE DRIVE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5419_17,-74.61129947,39.40198719,305 SEA PINE DRIVE,EGG HARBOR TWP,16,2016,1,GOV1,3004 -0108_5419_18,-74.78777826,39.64649601,307 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_19,-74.36616674,39.40661369,309 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_2,-74.7536525,39.4455965,203 SURF ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5419_20,-74.4550364,39.48838271,311 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_21,-74.46961684,39.48776407,313 SEA PINE DRIVE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5419_22,-74.63501028,39.43257492,315 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_23,-74.48121,39.336591,317 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_24,-74.55876584,39.47832127,319 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_25,-74.586808,39.320802,321 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_26,-74.44945315,39.48780332,323 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_27,-74.81112678,39.62679295,325 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_28,-74.5522031,39.42680217,327 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,GOV1,3004 -0108_5419_29,-74.58420952,39.37516532,329 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_3,-74.6431495,39.5347625,205 SURF ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5419_30,-74.6982495,39.517913,331 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_31,-74.586803,39.321982,333 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_32,-74.5153025,39.399533,335 SEA PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5419_4,-74.48966517,39.43426822,207 SURF ROAD,EGG HARBOR TWP,16,2016,1,RES2,3005 -0108_5419_5,-74.7143575,39.4709545,209 SURF ROAD,EGG HARBOR TWP,16,2018,1,GOV1,3004 -0108_5419_6,-74.515096,39.3268135,211 SURF ROAD,EGG HARBOR TWP,16,2018,1,RES1,3001 -0108_5419_7,-74.6894625,39.5114595,213 SURF ROAD,EGG HARBOR TWP,16,2018,1,RES1,3001 -0108_5419_8,-74.467256,39.4899385,215 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5419_9,-74.51053285,39.32692018,217 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5420_10,-74.8031101,39.51932393,215 LANDER ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5420_11,-74.60255589,39.43228753,217 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5420_12,-74.91918689,39.47439674,219 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5420_2,-74.51147036,39.47048436,6591 MILL ROAD,EGG HARBOR TWP,16,1925,2,RES1,3001 -0108_5420_3,-74.67161,39.3737895,1 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5420_4,-74.49397822,39.42850763,203 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5420_5,-74.56631946,39.41877782,205 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5420_6,-74.45997233,39.35020851,207 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5420_7,-74.6361885,39.5333655,209 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5420_8,-74.5249435,39.4572215,211 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5420_9,-74.4639942,39.34489384,213 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_1,-74.63107454,39.49120766,208 LANDER ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5421_10,-74.79089633,39.64188682,17 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES2,3005 -0108_5421_11,-74.533899,39.4050245,19 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_12,-74.88475096,39.46179312,21 PIERCE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5421_13,-74.65166701,39.62487878,333 MCCLELLAN ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_14,-74.449347,39.3576475,335 MCCLELLAN ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_15,-74.873248,39.5927175,337 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5421_16,-74.93273089,39.48324429,69 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_17,-74.85112786,39.61529334,71 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5421_18,-74.81840322,39.49455167,73 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_19,-74.7960615,39.637603,75 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_2,-74.85111938,39.59902632,1 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_20,-74.4638966,39.34945267,77 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_21,-74.50107213,39.49344317,79 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_22,-74.6498515,39.399183,81 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_23,-74.60207618,39.32353757,83 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_24,-74.37947126,39.41405014,85 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_25,-74.78118082,39.65998748,87 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_26,-74.46294924,39.35493984,89 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_27,-74.9711055,39.5066535,212 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_28,-74.7582575,39.4306515,210 LANDER ROAD,EGG HARBOR TWP,16,2004,1,COM1,3004 -0108_5421_3,-74.50254676,39.45607277,3 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_4,-74.804741,39.624943,5 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_5,-74.53907461,39.37375616,7 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_6,-74.48350014,39.49450017,9 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_7,-74.95160212,39.49614738,11 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_8,-74.60992822,39.36881942,13 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5421_9,-74.64972082,39.62752804,15 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5422_1,-74.60236499,39.43263936,1 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_10,-74.65752637,39.45588137,311 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_11,-74.60149724,39.3788001,313 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_12,-74.503144,39.4554415,315 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_13,-74.596822,39.3122455,317 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_14,-74.59362043,39.38217613,319 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5422_15,-74.3672245,39.417544,321 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_16,-74.6067455,39.408902,323 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_17,-74.462241,39.3481035,325 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_18,-74.5988545,39.430266,14 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_19,-74.59144196,39.31724134,12 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_2,-74.8077695,39.6304435,3 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_20,-74.57113742,39.42898683,10 PIERCE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5422_21,-74.45976222,39.34867102,8 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3004 -0108_5422_22,-74.36349162,39.41368251,6 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_23,-74.61968513,39.37043277,4 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_24,-74.49575757,39.33518261,2 PIERCE ROAD,EGG HARBOR TWP,16,2004,1,COM1,3004 -0108_5422_25,-74.60519839,39.32014419,1 MILROY ROAD (BASIN),EGG HARBOR TWP,,0,1,RES1,3001 -0108_5422_3,-74.83381229,39.52626309,5 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_4,-74.86311682,39.48574266,7 BUTLER ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5422_5,-74.54643084,39.36967051,9 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_6,-74.54795331,39.37124864,11 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_7,-74.588574,39.3279865,13 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_8,-74.588735,39.3280925,307 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5422_9,-74.51825529,39.52701126,309 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_1,-74.61276038,39.31957452,206 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_10,-74.563026,39.4095195,305 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_11,-74.59419883,39.34286877,14 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_12,-74.80628757,39.62298784,12 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_13,-74.60302508,39.36739722,10 BUTLER ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5423_14,-74.4753545,39.3391835,8 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_15,-74.5507645,39.3690845,6 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_16,-74.46073429,39.34805756,4 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_17,-74.601544,39.3163545,2 BUTLER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_2,-74.781369,39.5085045,204 LANDER ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5423_3,-74.638505,39.5318795,202 LANDER ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5423_4,-74.600172,39.3178055,200 LANDER ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_5,-74.462562,39.359941,3 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_6,-74.62595379,39.52748977,5 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_7,-74.810299,39.5517825,7 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5423_8,-74.510447,39.331877,9 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5423_9,-74.8855165,39.463504,303 REYNOLDS ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_1,-74.48409969,39.34631131,328 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_10,-74.56619675,39.41770925,310 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_11,-74.58750813,39.33319122,308 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_12,-74.59244123,39.43366553,306 REYNOLDS ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_13,-74.58027533,39.34119942,304 REYNOLDS ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_14,-74.64144676,39.36981504,302 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_15,-74.81703775,39.37819357,300 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_16,-74.527024,39.39709,11 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_17,-74.8143175,39.6161645,13 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_5424_18,-74.562892,39.4116075,15 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_19,-74.87584578,39.49474111,17 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_2,-74.45712809,39.34900916,326 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_20,-74.3574745,39.4122695,19 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_21,-74.855254,39.609492,21 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_22,-74.56518572,39.36689384,301 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_23,-74.3695475,39.4078795,303 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_24,-74.559343,39.4152575,305 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_25,-74.61374402,39.42241081,307 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_26,-74.95088859,39.53101357,309 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_27,-74.58112357,39.47340908,311 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_28,-74.4571365,39.3499275,313 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_29,-74.490815,39.3346985,315 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_3,-74.90510001,39.50506183,324 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_30,-74.50815111,39.4621766,317 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_31,-74.3803265,39.418224,319 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_32,-74.8820815,39.5917225,321 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_33,-74.70545932,39.47977956,323 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_34,-74.5321334,39.38363464,325 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_35,-74.4482635,39.35811,327 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_36,-74.83098523,39.48809696,329 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_37,-74.805318,39.365932,331 MCCLELLAN ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_38,-74.36624074,39.41241137,20 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_39,-74.369213,39.4057075,18 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_4,-74.56171279,39.36096815,322 REYNOLDS ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5424_40,-74.55517279,39.36539626,16 PIERCE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_5,-74.55546098,39.51633992,320 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_6,-74.4695253,39.34276292,318 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_7,-74.559946,39.4162965,316 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5424_8,-74.88907867,39.47827235,314 REYNOLDS ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5424_9,-74.54528682,39.41246503,312 REYNOLDS ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5425_1,-74.54401834,39.37302548,334 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_10,-74.6337835,39.518807,316 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_11,-74.80726813,39.63232695,314 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_12,-74.4471315,39.3551035,312 MCCLELLAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5425_13,-74.546257,39.378668,310 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_14,-74.51882,39.31909,308 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_15,-74.570875,39.3641,306 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_16,-74.82861761,39.62470848,304 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_17,-74.79906363,39.60744094,302 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_18,-74.60445336,39.31754876,300 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_19,-74.81437283,39.63560448,23 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_2,-74.80033706,39.63741768,332 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_20,-74.684611,39.48852017,25 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_21,-74.68474984,39.49949653,27 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_22,-74.5907405,39.5070725,29 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_23,-74.55077183,39.37735599,31 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_24,-74.48111393,39.35287803,33 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,COM1,3004 -0108_5425_25,-74.365833,39.4236085,35 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_26,-74.87269273,39.60107064,37 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_27,-74.77957195,39.67529922,39 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_28,-74.52341499,39.32166983,41 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_29,-74.8816255,39.5994935,43 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_3,-74.53535238,39.30375164,330 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_30,-74.870957,39.489044,45 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_31,-74.63318309,39.41759206,47 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_32,-74.48195214,39.34178665,49 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_33,-74.53381502,39.40407911,51 BURNSIDE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5425_34,-74.5349129,39.30460236,53 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_35,-74.6473652,39.43062005,55 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_36,-74.5107915,39.5331515,57 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_37,-74.79952205,39.63334634,59 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_38,-74.491844,39.4298235,61 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5425_39,-74.6035075,39.323699,63 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5425_4,-74.5877095,39.4291175,328 MCCLELLAN ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5425_40,-74.47273817,39.34144849,65 BURNSIDE DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_5425_41,-74.60905955,39.32531919,67 BURNSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5425_5,-74.51374466,39.32753299,326 MCCLELLAN ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5425_6,-74.54191574,39.41674359,324 MCCLELLAN ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5425_7,-74.6039905,39.594024,322 MCCLELLAN ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5425_8,-74.53634726,39.38155426,320 MCCLELLAN ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5425_9,-74.5709922,39.37327257,318 MCCLELLAN ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5426_1,-74.64346109,39.39728266,2 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5426_10,-74.85271,39.485545,18 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_11,-74.501604,39.4979285,20 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,COM7,3004 -0108_5426_12,-74.48226769,39.35070259,22 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_13,-74.61413941,39.32373331,24 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_14,-74.44526697,39.37409518,26 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5426_15,-74.63534392,39.38436232,28 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_16,-74.61065389,39.32480625,30 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_17,-74.4705355,39.343198,32 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,IND1,3002 -0108_5426_18,-74.841486,39.6338665,34 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5426_19,-74.44382731,39.37168106,36 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_2,-74.4273559,39.37023222,42 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5426_20,-74.6232107,39.37796454,38 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5426_21,-74.787666,39.641622,40 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5426_3,-74.79010056,39.64191834,4 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5426_4,-74.49318429,39.33754333,6 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_5,-74.80006417,39.63853149,8 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_6,-74.81346923,39.43265547,10 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_7,-74.49829273,39.43155897,12 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_8,-74.7951879,39.63890914,14 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5426_9,-74.59355968,39.32451535,16 WEEPING WILLOW CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5430_1,-74.6327385,39.4238725,107 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5430_10,-74.58850174,39.3221892,220 SURF ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5430_11,-74.60406154,39.39138122,218 SURF ROAD,EGG HARBOR TWP,16,2016,1,GOV1,3004 -0108_5430_12,-74.8828405,39.5962745,216 SURF ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5430_13,-74.7126525,39.473446,214 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_14,-74.786341,39.6310255,212 SURF ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5430_15,-74.491526,39.420516,210 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_16,-74.6298795,39.424412,208 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_17,-74.57186882,39.41384005,206 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_18,-74.64539016,39.53530952,204 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_19,-74.68205306,39.48927783,202 SURF ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5430_2,-74.58453464,39.4021098,109 SANDBAR ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_20,-74.5076235,39.3298855,200 SURF ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_3,-74.81115812,39.63567587,111 SANDBAR ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_4,-74.58211466,39.33157749,113 SANDBAR ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5430_5,-74.5727375,39.4283805,115 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5430_6,-74.8713572,39.59882403,117 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5430_7,-74.51308,39.327392,119 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5430_8,-74.821882,39.6370735,121 SANDBAR ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5430_9,-74.51208048,39.32925384,72 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5431_1,-74.49351922,39.47395381,44 SHORELINE ROAD,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5431_10,-74.46115563,39.35086954,403 STARFISH LANE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5431_11,-74.57933847,39.33426591,405 STARFISH LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5431_12,-74.6022081,39.37741158,114 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5431_13,-74.55147283,39.37315748,112 SANDBAR ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5431_14,-74.52157219,39.39469717,110 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5431_15,-74.47402798,39.48815612,108 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,COM1,3004 -0108_5431_16,-74.518464,39.525299,106 SANDBAR ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5431_17,-74.47791582,39.34054353,104 SANDBAR ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5431_19,-74.48237382,39.34078051,102 SANDBAR ROAD,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_5431_2,-74.7891135,39.6321105,46 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5431_20,-74.58860435,39.37790919,100 SANDBAR ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5431_3,-74.78723635,39.61045669,48 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5431_4,-74.8100025,39.6320875,50 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,COM1,3004 -0108_5431_5,-74.5287555,39.45144452,52 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5431_6,-74.5279015,39.394129,54 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5431_7,-74.46706833,39.346803,56 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5431_8,-74.62856112,39.41298503,58 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5431_9,-74.950069,39.5314795,60 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5432_1,-74.8100495,39.616626,62 SHORELINE ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5432_10,-74.592089,39.3714665,404 STARFISH LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5432_11,-74.372638,39.4079615,402 STARFISH LANE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5432_2,-74.4843105,39.338651,64 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5432_3,-74.649631,39.558763,66 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5432_4,-74.58635269,39.42821435,68 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5432_5,-74.49892631,39.41576445,70 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5432_6,-74.5153345,39.32876283,120 SANDBAR ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5432_7,-74.50044233,39.41667694,118 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5432_8,-74.5676945,39.3684365,116 SANDBAR ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5432_9,-74.88425141,39.59763086,406 STARFISH LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5433_1,-74.801127,39.440974,201 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_10,-74.56988645,39.41218537,219 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5433_11,-74.6019055,39.4328445,221 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5433_12,-74.58777042,39.326237,223 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_13,-74.5815415,39.413984,225 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_14,-74.858231,39.6191815,227 SEA PINE DRIVE,EGG HARBOR TWP,16,2001,1,EDU1,3004 -0108_5433_15,-74.7929615,39.633704,229 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_17,-74.37504945,39.40364333,231 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_18,-74.79217301,39.64698382,233 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_19,-74.5370005,39.378331,235 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_2,-74.58368018,39.37705208,203 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_20,-74.56764474,39.35421767,237 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_22,-74.5763272,39.33890412,239 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_23,-74.5369891,39.37915726,241 SEA PINE DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5433_24,-74.57129322,39.42796463,243 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5433_25,-74.53202362,39.38016082,245 SEA PINE DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_26,-74.544846,39.3893305,247 SEA PINE DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_27,-74.57528787,39.37113227,249 SEA PINE DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5433_28,-74.51269283,39.40508399,251 SEA PINE DRIVE,EGG HARBOR TWP,16,2011,1,COM1,3004 -0108_5433_29,-74.5140495,39.438917,253 SEA PINE DRIVE,EGG HARBOR TWP,16,2011,1,EDU1,3004 -0108_5433_3,-74.516069,39.3267915,205 SEA PINE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5433_30,-74.36436617,39.40865699,67 SHORELINE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5433_31,-74.85086887,39.53722377,65 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5433_32,-74.71170792,39.47024567,63 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5433_33,-74.64170596,39.52977368,61 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_34,-74.8633065,39.537424,59 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5433_35,-74.51962873,39.53109622,57 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_36,-74.79326611,39.64495932,55 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5433_37,-74.53342158,39.38408514,53 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_38,-74.79032494,39.64396666,51 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,GOV1,3004 -0108_5433_39,-74.787837,39.6423595,49 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_4,-74.4919755,39.461384,207 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_40,-74.46161084,39.350277,47 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,GOV1,3004 -0108_5433_41,-74.67753236,39.5483286,45 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,GOV1,3004 -0108_5433_42,-74.47718251,39.33940984,43 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_43,-74.5836525,39.328977,41 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_44,-74.56963425,39.41284227,39 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5433_45,-74.846428,39.605861,37 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_46,-74.46557165,39.3460499,35 SHORELINE ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5433_47,-74.602522,39.3691705,33 SHORELINE ROAD,EGG HARBOR TWP,16,2010,1,REL1,3004 -0108_5433_48,-74.9004355,39.503195,31 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5433_49,-74.46781572,39.49222849,29 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5433_5,-74.54010349,39.38021817,209 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_50,-74.78190117,39.63752052,27 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5433_51,-74.83418279,39.4885781,25 SHORELINE ROAD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5433_52,-74.760767,39.4314875,23 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,GOV1,3004 -0108_5433_53,-74.49379052,39.49435059,21 SHORELINE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5433_54,-74.44852902,39.35635667,19 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_6,-74.82781987,39.63626593,211 SEA PINE DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5433_7,-74.6081155,39.5015315,213 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_8,-74.5139925,39.328352,215 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5433_9,-74.62323416,39.43434717,217 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_1,-74.47408419,39.49314297,101 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_10,-74.6100125,39.3830785,117 OFFSHORE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5434_11,-74.80331785,39.36469116,119 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_12,-74.55266164,39.40298417,214 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_13,-74.3741095,39.417993,212 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5434_14,-74.87329951,39.59221539,210 SEA PINE DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5434_15,-74.37361,39.4097325,208 SEA PINE DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5434_16,-74.85807083,39.6235936,206 SEA PINE DRIVE,EGG HARBOR TWP,16,2013,1,GOV1,3004 -0108_5434_17,-74.4806175,39.3509065,204 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_18,-74.522281,39.402102,202 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_19,-74.60984955,39.39178981,200 SEA PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_2,-74.60393761,39.38848894,103 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_3,-74.44687087,39.35875661,105 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_4,-74.54506159,39.40637979,107 OFFSHORE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5434_5,-74.36614079,39.41722655,109 OFFSHORE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5434_6,-74.64139618,39.4610999,111 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5434_8,-74.532595,39.4041405,113 OFFSHORE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5434_9,-74.86223877,39.59519043,115 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5435_1,-74.5398605,39.3763605,9 SHORELINE ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5435_2,-74.517797,39.3974325,7 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5435_3,-74.365575,39.416181,5 SHORELINE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5435_4,-74.49996958,39.45545853,3 SHORELINE ROAD,EGG HARBOR TWP,16,2012,1,GOV1,3004 -0108_5435_5,-74.65179399,39.45567898,104 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5435_6,-74.868381,39.451986,102 OFFSHORE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5435_7,-74.51493327,39.32100805,100 OFFSHORE ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5436_1,-74.64687596,39.56868849,16 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5436_10,-74.57986464,39.4042896,7038 RIDGE AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5436_11,-74.81303634,39.63680601,7040 RIDGE AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5436_12,-74.4609845,39.3504925,7042 RIDGE AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5436_13,-74.646884,39.4321775,7044 RIDGE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5436_14,-74.52461694,39.31830233,7046 RIDGE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5436_15,-74.5925685,39.3134815,7048 RIDGE AVENUE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5436_16,-74.59083983,39.51071253,402 DELAWARE AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5436_17,-74.56835548,39.53016183,101 SEA FOAM ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5436_2,-74.79729136,39.63167292,18 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5436_3,-74.586977,39.330359,20 SHORELINE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5436_5,-74.872422,39.595383,22 SHORELINE ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_5436_6,-74.51223865,39.32884731,24 SHORELINE ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5436_7,-74.67939083,39.56642597,26 SHORELINE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5436_8,-74.73442386,39.64275732,28 SHORELINE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5436_9,-74.58356534,39.33147893,100 SEA PINE DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5437_1,-74.8299118,39.53872665,117 GARNETT LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5437_2,-74.49308706,39.33901452,115 GARNETT LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5437_3,-74.5687075,39.3688645,113 GARNETT LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5437_4,-74.84431851,39.60656404,111 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5437_5,-74.6144065,39.42986167,109 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5437_6,-74.58463893,39.32509336,107 GARNETT LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5437_7,-74.749492,39.3920655,105 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5437_8,-74.6272871,39.60541585,103 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5437_9,-74.39773569,39.38821421,101 GARNETT LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5501_3,-74.367439,39.41014,659 ZION ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5501_5,-74.61517516,39.31963195,663 ZION ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5502_1,-74.46289382,39.35342939,1106 OLD ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5502_2,-74.463618,39.3535065,652 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5502_4,-74.38074967,39.39786157,607 DELAWARE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5502_5,-74.49049934,39.33278349,662 ZION ROAD,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_5503_1,-74.72316634,39.4561025,600 DELAWARE AVENUE,EGG HARBOR TWP,16,1922,1,RES1,3001 -0108_5503_2,-74.7630785,39.6370635,1046 OLD ZION ROAD,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_5503_3,-74.5041195,39.4096125,606 DELAWARE AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_5503_4,-74.66312715,39.63479606,1042 OLD ZION ROAD,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_5503_5,-74.42374458,39.37485118,1040 OLD ZION ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5503_6,-74.58973155,39.38049866,1036 OLD ZION ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5503_7,-74.50196383,39.49552125,1030 OLD ZION ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5504_1,-74.490199,39.4343855,6701 MILL ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5504_2,-74.48262464,39.33734094,6707 MILL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5504_3,-74.61685579,39.43029607,1010 OLD ZION ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5504_4,-74.6062675,39.3288765,1006 OLD ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5504_5,-74.62396517,39.60402439,1012 OLD ZION ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5504_7,-74.3657925,39.4069585,1018 OLD ZION ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5505_1,-74.62563089,39.60511717,3374 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_5505_10,-74.5990025,39.3674145,3356 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5505_12,-74.479273,39.4547575,3346 BARGAINTOWN ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5505_13,-74.51638229,39.32734847,3344 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1929,1,GOV1,3004 -0108_5505_14,-74.79401703,39.61840011,3342 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_5505_18,-74.5188515,39.321169,3330 BARGAINTOWN ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5505_19,-74.60485419,39.48427093,3326 BARGAINTOWN ROAD,EGG HARBOR TWP,15,1920,1,RES1,3001 -0108_5505_20,-74.94248354,39.52301618,3324 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5505_21,-74.46310133,39.35458804,3320 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_5505_22,-74.6105495,39.3657175,3318 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1935,1,RES1,3001 -0108_5505_23,-74.63975618,39.34365756,3316 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_5505_24,-74.37233877,39.41179637,3314 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_5505_26,-74.51322781,39.46368446,3310 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5505_27,-74.582822,39.432427,3308 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5505_3,-74.6235722,39.39376909,3372 BARGAINTOWN ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_5505_32.01,-74.88212634,39.59690967,6821 MILL ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5505_32.02,-74.5573735,39.397029,6823 MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5505_32.03,-74.93999096,39.52309981,6825 MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5505_32.04,-74.64835739,39.53119716,6827 MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5505_32.05,-74.51681037,39.38769898,6829 MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5505_32.06,-74.54988285,39.37864255,6831 MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5505_32.07,-74.5396555,39.3840975,6833 MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5505_32.08,-74.366415,39.412394,6835 MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5505_32.09,-74.5953815,39.35943533,6837 MILL ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5505_32.11,-74.42238388,39.37364118,6841 MILL ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5505_4,-74.649034,39.5753875,3370 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_5505_5,-74.49749236,39.33205034,3368 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1923,1,RES1,3001 -0108_5505_6,-74.48351833,39.34906557,3364 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_5505_7,-74.71630855,39.64188771,3360 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5505_8,-74.63508515,39.43415642,3358 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5505_9,-74.51586217,39.40145267,3354 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5507_1,-74.37265199,39.4023979,312 CENTRAL AVENUE,EGG HARBOR TWP,16,1976,2,RES1,3001 -0108_5507_10,-74.49816832,39.44141697,3424 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1969,1,IND1,3002 -0108_5507_11,-74.950804,39.5151295,3422 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1956,1,RES1,3001 -0108_5507_12,-74.50247865,39.34235553,3420 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1820,1,RES1,3001 -0108_5507_13,-74.584442,39.360343,3418 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_5507_14,-74.48643846,39.4947276,3416 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_5507_15,-74.43793269,39.36515465,3414 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1912,1,RES1,3001 -0108_5507_16,-74.6853415,39.3933715,3412 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1914,1,RES1,3001 -0108_5507_17,-74.554271,39.47666,3410 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5507_18,-74.61198433,39.33925146,3408 BARGAINTOWN ROAD,EGG HARBOR TWP,17,1996,1,RES1,3001 -0108_5507_2,-74.571354,39.4164555,310 CENTRAL AVENUE,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_5507_20,-74.7349515,39.4390225,3400 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5507_3,-74.3723115,39.403483,308 CENTRAL AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5507_4,-74.93813497,39.52049565,306 CENTRAL AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5507_5,-74.80368194,39.64412016,304 CENTRAL AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_5507_6,-74.59792298,39.31628531,302 CENTRAL AVENUE,EGG HARBOR TWP,16,1953,1,RES1,3001 -0108_5507_7,-74.54856066,39.37905549,300 CENTRAL AVENUE,EGG HARBOR TWP,17,1988,1,RES1,3001 -0108_5507_8,-74.59245009,39.33277083,298 CENTRAL AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5507_9,-74.514509,39.4382105,3426 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5508_1,-74.5429395,39.386531,224 CENTRAL AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_5508_10,-74.504058,39.339659,3425 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5508_2,-74.38342843,39.3943244,222 CENTRAL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5508_3,-74.71400365,39.46751556,220 CENTRAL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5508_4,-74.811784,39.642285,218 CENTRAL AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_5508_5,-74.77135228,39.61336399,216 CENTRAL AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5508_6,-74.4198275,39.37097,2 MASON AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5508_7,-74.5066367,39.44587118,4 MASON AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5508_8,-74.8001735,39.622558,6 MASON AVENUE,EGG HARBOR TWP,16,1968,1,IND1,3004 -0108_5508_9,-74.59223722,39.37751872,8 MASON AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5509_1,-74.57584942,39.40862232,212 CENTRAL AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5509_10,-74.492407,39.446615,1 MASON AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5509_11,-74.57349185,39.36776729,3 MASON AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_5509_12,-74.763732,39.351256,5 MASON AVENUE,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_5509_14,-74.538724,39.454725,3417 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5509_15,-74.74532981,39.60073229,7 MASON AVENUE,EGG HARBOR TWP,16,1998,1,COM1,3004 -0108_5509_16,-74.4999632,39.52626387,3419 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5509_17,-74.58897558,39.43063021,3415 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5509_18,-74.863992,39.5974925,3411 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5509_19,-74.77085007,39.62972335,3407 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5509_2,-74.6114305,39.428933,210 CENTRAL AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5509_20,-74.6883715,39.3592035,3401 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_5509_21,-74.78551042,39.43733751,677 ZION ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_5509_22,-74.49992514,39.48806032,675 ZION ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5509_23,-74.53886527,39.46307392,673 ZION ROAD,EGG HARBOR TWP,16,1991,1,RES3A,3001 -0108_5509_25,-74.63531486,39.38759582,669 ZION ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5509_26,-74.7647745,39.307179,667 ZION ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5509_3,-74.63105408,39.4329978,208 CENTRAL AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5509_4,-74.52101676,39.45986845,204 CENTRAL AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_5509_6,-74.5075453,39.40720726,200 CENTRAL AVENUE,EGG HARBOR TWP,16,1955,1,GOV1,3004 -0108_5509_7,-74.53414135,39.38262754,1 ASPEN LANE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5509_8,-74.7543735,39.359807,2 ASPEN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5509_9,-74.62120939,39.50990376,3 ASPEN LANE,EGG HARBOR TWP,16,1966,1,REL1,3004 -0108_5510_2,-74.49663865,39.33223552,668 ZION ROAD,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_5510_5,-74.78317606,39.65086084,3393 BARGAINTOWN ROAD,EGG HARBOR TWP,,1989,1,RES1,3001 -0108_5510_6,-74.55012319,39.39591739,3365 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5510_7,-74.506344,39.3392325,3345 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1992,2,RES1,3001 -0108_5510_8,-74.6455155,39.430828,3337 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1920,1,COM1,3004 -0108_5601_1,-74.55079536,39.40691981,603 ZION ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5601_10,-74.88417983,39.55897199,113 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5601_11,-74.506908,39.4460575,115 EXPLORER LANE,EGG HARBOR TWP,16,1971,1,GOV1,3004 -0108_5601_12,-74.51211917,39.33851873,117 EXPLORER LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5601_13,-74.604348,39.332406,119 EXPLORER LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5601_14,-74.52126546,39.44445757,20 POPLAR AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5601_15,-74.72074592,39.44217535,18 POPLAR AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5601_16,-74.56394364,39.36144494,16 POPLAR AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5601_17,-74.6527919,39.52620087,14 POPLAR AVENUE,EGG HARBOR TWP,16,1971,1,RES3A,3001 -0108_5601_18,-74.61641073,39.36959396,12 POPLAR AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5601_19,-74.4914395,39.3327185,10 POPLAR AVENUE,EGG HARBOR TWP,16,1971,1,RES3A,3001 -0108_5601_2,-74.69185619,39.44938995,605 ZION ROAD,EGG HARBOR TWP,45,1974,2,RES1,3001 -0108_5601_20,-74.829848,39.616014,8 POPLAR AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5601_21,-74.57338638,39.35170261,6 POPLAR AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5601_22,-74.72567532,39.48434584,4 POPLAR AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5601_23,-74.44983912,39.48974225,2 POPLAR AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5601_24,-74.605419,39.3504225,601 ZION ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5601_3,-74.53610733,39.3856589,607 ZION ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5601_4,-74.503639,39.3313025,101 EXPLORER LANE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5601_5,-74.924001,39.5086795,103 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5601_6,-74.81187162,39.56238406,105 EXPLORER LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5601_7,-74.75392,39.4492735,107 EXPLORER LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5601_8,-74.80118,39.635376,109 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5601_9,-74.54830299,39.37859044,111 EXPLORER LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5602_1,-74.372384,39.416034,609 ZION ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5602_10,-74.62081332,39.37002542,631 ZION ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5602_11,-74.6185765,39.438536,311 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5602_12,-74.52012507,39.39909964,313 DISCOVERY LANE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5602_13,-74.5979001,39.43473603,315 DISCOVERY LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5602_14,-74.6275495,39.5286855,317 DISCOVERY LANE,EGG HARBOR TWP,16,1971,1,RES3A,3001 -0108_5602_15,-74.59753024,39.36358327,319 DISCOVERY LANE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5602_16,-74.37789166,39.39664895,321 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5602_17,-74.496471,39.3344395,323 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES3A,3001 -0108_5602_18,-74.7255183,39.5863656,325 DISCOVERY LANE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5602_19,-74.56607338,39.36851911,327 DISCOVERY LANE,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_5602_2,-74.45009032,39.35498801,613 ZION ROAD,EGG HARBOR TWP,16,1946,1,REL1,3003 -0108_5602_20,-74.58719417,39.37176386,329 DISCOVERY LANE,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_5602_21,-74.8202415,39.545038,331 DISCOVERY LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5602_22,-74.5217115,39.4018655,106 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5602_23,-74.62009497,39.43273656,104 EXPLORER LANE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5602_24,-74.5557073,39.47783347,102 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5602_3,-74.5038025,39.3266135,617 ZION ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5602_4,-74.53347496,39.45514874,619 ZION ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5602_5,-74.49937845,39.46933623,621 ZION ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5602_6,-74.79416583,39.63578431,623 ZION ROAD,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_5602_7,-74.6093155,39.490539,625 ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5602_8,-74.551348,39.478279,627 ZION ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5602_9,-74.5561845,39.370999,629 ZION ROAD,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_5603_1,-74.79700136,39.63344571,223 SHERWOOD DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5603_10,-74.57911835,39.36116129,221 SHERWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5603_2,-74.6070405,39.3138755,320 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5603_3,-74.53416983,39.31464252,318 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES3A,3001 -0108_5603_4,-74.62430751,39.37891097,316 DISCOVERY LANE,EGG HARBOR TWP,16,1975,1,RES3B,3004 -0108_5603_5,-74.52666193,39.3848982,314 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES3A,3001 -0108_5603_6,-74.57732659,39.40795731,312 DISCOVERY LANE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_5603_7,-74.790451,39.4462565,215 SHERWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5603_8,-74.80902017,39.55559702,217 SHERWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5603_9,-74.75945482,39.63394629,219 SHERWOOD DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5604_1,-74.50573,39.4729585,201 SHERWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_10.01,-74.79841153,39.63333616,1203 OLD ZION ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5604_10.02,-74.61368918,39.42197001,1205 OLD ZION ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5604_10.03,-74.60032679,39.40894297,1207 OLD ZION ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5604_11,-74.52189988,39.39723984,1209 OLD ZION ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_12,-74.606892,39.48312,1211 OLD ZION ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_13,-74.48764977,39.33345766,1215 OLD ZION ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5604_14,-74.6566025,39.346246,1219 OLD ZION ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5604_15,-74.63815384,39.56485097,1221 OLD ZION ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5604_17,-74.47920552,39.3421013,1229 OLD ZION ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5604_18,-74.50876409,39.48197341,1233 OLD ZION ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5604_19,-74.44326475,39.4851727,1239 OLD ZION ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5604_2,-74.39250586,39.3918039,203 SHERWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_20,-74.77131639,39.30895941,1241 OLD ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5604_21,-74.510898,39.328007,1243 OLD ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5604_22,-74.631972,39.446455,1245 OLD ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5604_23,-74.51832765,39.31960743,332 DORCHESTER DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5604_25,-74.5512625,39.373457,316 DORCHESTER DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5604_26,-74.61437581,39.42816351,314 DORCHESTER DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5604_27,-74.79589383,39.63420716,320 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1979,1,COM1,3004 -0108_5604_28,-74.60873,39.5148675,318 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5604_29,-74.51778048,39.44592517,316 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5604_3,-74.55606224,39.43487378,2 VILLAGE LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_30,-74.57490308,39.34065057,314 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5604_31,-74.53305436,39.31454902,312 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5604_32,-74.63013455,39.4198478,310 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5604_33,-74.657965,39.3997335,308 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5604_34,-74.57935204,39.34081681,306 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5604_35,-74.7910465,39.63133433,304 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5604_36,-74.5113515,39.434011,302 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5604_37,-74.43590845,39.36869232,300 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5604_38,-74.57773342,39.40717969,214 SHERWOOD DRIVE,EGG HARBOR TWP,16,1973,1,COM3,3004 -0108_5604_39,-74.532524,39.5219095,212 SHERWOOD DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5604_4,-74.498595,39.448636,633 ZION ROAD,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_5604_40,-74.83713773,39.56931381,210 SHERWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_41,-74.59043109,39.32672112,208 SHERWOOD DRIVE,EGG HARBOR TWP,16,1975,1,COM1,3004 -0108_5604_42,-74.7331969,39.45450134,206 SHERWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES3B,3001 -0108_5604_43,-74.68829768,39.50082478,204 SHERWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_5604_44,-74.4734,39.4923385,202 SHERWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES3B,3001 -0108_5604_45,-74.86005466,39.61589652,200 SHERWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_5,-74.50395021,39.44546894,635 ZION ROAD,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_5604_6,-74.47136766,39.48699924,637 ZION ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_7,-74.53612879,39.45650198,639 ZION ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_8,-74.58891534,39.35251321,641 ZION ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5604_9,-74.80758709,39.55403264,101 CENTRAL AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5605_1,-74.757548,39.4330685,216 SHERWOOD DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5605_10,-74.5150845,39.4329925,310 DORCHESTER DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5605_11,-74.7086535,39.561069,308 DORCHESTER DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5605_12,-74.82392469,39.37991328,306 DORCHESTER DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5605_13,-74.6777425,39.4466385,304 DORCHESTER DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5605_14,-74.904053,39.4909425,302 DORCHESTER DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5605_15,-74.80399866,39.64150203,300 DORCHESTER DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5605_16,-74.8778135,39.5682625,218 SHERWOOD DRIVE,EGG HARBOR TWP,16,1992,1,COM3,3004 -0108_5605_2,-74.757291,39.30505,303 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1988,1,RES3A,3001 -0108_5605_3,-74.95274,39.5132175,305 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3002 -0108_5605_4,-74.80639888,39.4884828,307 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5605_5,-74.57445428,39.411328,309 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5605_6,-74.46014267,39.3504185,311 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5605_7,-74.63528557,39.55154791,313 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_5605_8,-74.60814432,39.3970051,315 KNOLLWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5605_9,-74.50453584,39.42936101,312 DORCHESTER DRIVE,EGG HARBOR TWP,16,1979,1,GOV1,3004 -0108_5606_1,-74.48175584,39.34147899,334 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_10,-74.62947822,39.61748389,307 DORCHESTER DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_5606_11,-74.7119545,39.466069,309 DORCHESTER DRIVE,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_5606_12,-74.48773342,39.33523925,311 DORCHESTER DRIVE,EGG HARBOR TWP,16,1989,1,RES3B,3001 -0108_5606_13,-74.4681185,39.34210833,313 DORCHESTER DRIVE,EGG HARBOR TWP,16,1985,1,RES3A,3001 -0108_5606_14,-74.607477,39.390921,315 DORCHESTER DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5606_15,-74.93742852,39.52807767,317 DORCHESTER DRIVE,EGG HARBOR TWP,16,1983,1,GOV1,3004 -0108_5606_16,-74.50121103,39.47574867,319 DORCHESTER DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_5606_17,-74.5998115,39.4239855,321 DORCHESTER DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5606_18,-74.48157367,39.34989345,323 DORCHESTER DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5606_19,-74.439541,39.3667055,325 DORCHESTER DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5606_2,-74.51243887,39.40179999,332 DISCOVERY LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5606_20,-74.5147805,39.43903817,327 DORCHESTER DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5606_21,-74.6887815,39.493521,329 DORCHESTER DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5606_22,-74.47195411,39.48956977,331 DORCHESTER DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5606_23,-74.62107294,39.43787986,1249 OLD ZION ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5606_24,-74.3880185,39.394006,1251 OLD ZION ROAD,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_5606_25,-74.405233,39.3840515,1253 OLD ZION ROAD,EGG HARBOR TWP,16,1973,1,COM1,3004 -0108_5606_26,-74.87867201,39.59426822,42 POPLAR AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5606_27,-74.61973518,39.43560518,40 POPLAR AVENUE,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_5606_28,-74.594106,39.333093,38 POPLAR AVENUE,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_5606_29,-74.37705232,39.39991052,36 POPLAR AVENUE,EGG HARBOR TWP,16,1930,1,GOV1,3004 -0108_5606_3,-74.50438184,39.33004548,330 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_30,-74.52224473,39.32215967,34 POPLAR AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5606_31,-74.6182865,39.389581,32 POPLAR AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5606_32,-74.61381627,39.39699185,30 POPLAR AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5606_33,-74.47842388,39.33745924,28 POPLAR AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5606_34,-74.56681262,39.47964429,26 POPLAR AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_5606_35,-74.5613975,39.401591,24 POPLAR AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_5606_36,-74.8887716,39.46771325,126 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_37,-74.5028315,39.327245,124 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_38,-74.75462569,39.60930545,122 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_39,-74.61742843,39.36682401,120 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES3A,3001 -0108_5606_4,-74.878332,39.5975385,328 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_40,-74.486685,39.525014,118 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_41,-74.51985685,39.31543245,116 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_42,-74.75111633,39.45320893,114 EXPLORER LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5606_43,-74.4882235,39.438483,112 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_44,-74.521668,39.455562,110 EXPLORER LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_45,-74.570713,39.4174595,108 EXPLORER LANE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5606_5,-74.48998,39.429018,326 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5606_6,-74.6280065,39.3959095,324 DISCOVERY LANE,EGG HARBOR TWP,16,1972,1,RES1,3004 -0108_5606_7,-74.59558423,39.35718815,301 DORCHESTER DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5606_8,-74.5992523,39.43730394,303 DORCHESTER DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5606_9,-74.48522875,39.35099186,305 DORCHESTER DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5607_1,-74.4901431,39.38045032,643 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5608_1,-74.926009,39.5252365,105 CENTRAL AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5608_12,-74.59213772,39.36683015,16 OAK HAVEN LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5608_13,-74.569754,39.412168,14 OAK HAVEN LANE,EGG HARBOR TWP,16,1958,1,GOV1,3004 -0108_5608_14,-74.6586955,39.403702,12 OAK HAVEN LANE,EGG HARBOR TWP,16,1953,1,COM10,3003 -0108_5608_15,-74.61130983,39.31206885,10 OAK HAVEN LANE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5608_16,-74.45033837,39.49525931,8 OAK HAVEN LANE,EGG HARBOR TWP,16,1955,1,RES3A,3001 -0108_5608_17,-74.5674313,39.35999446,6 OAK HAVEN LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5608_18,-74.61559286,39.32138775,4 OAK HAVEN LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5608_19,-74.7771205,39.597352,2 OAK HAVEN LANE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5608_2,-74.48959572,39.42302193,115 CENTRAL AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5608_21,-74.48372416,39.3415865,1240 OLD ZION ROAD,EGG HARBOR TWP,16,1994,1,AGR1,3001 -0108_5608_22,-74.50398253,39.44807781,1238 OLD ZION ROAD,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_5608_23,-74.61114058,39.48622446,1232 OLD ZION ROAD,EGG HARBOR TWP,16,1968,1,RES1,3004 -0108_5608_24.01,-74.5126005,39.475088,1 ARBOR DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5608_24.03,-74.63183952,39.35840782,5 ARBOR DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5608_25.02,-74.59039156,39.32230582,4 ARBOR DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3002 -0108_5608_25.03,-74.51975907,39.31665838,6 ARBOR DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5608_26,-74.8910475,39.46355,1220 OLD ZION ROAD,EGG HARBOR TWP,16,1999,1,COM3,3004 -0108_5608_27,-74.652618,39.36768212,1222 OLD ZION ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5608_3,-74.46992595,39.49059575,119 CENTRAL AVENUE,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_5608_30,-74.485685,39.496964,1216 OLD ZION ROAD,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_5608_31,-74.52223851,39.38800584,1214 OLD ZION ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5608_32,-74.45252117,39.35678149,1212 OLD ZION ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5608_33,-74.57834167,39.35382811,1210 OLD ZION ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5608_34,-74.63720748,39.53408968,1208 OLD ZION ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5608_35.01,-74.369923,39.404573,1206 OLD ZION ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5608_35.02,-74.83055074,39.41412276,1204 OLD ZION ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5608_4,-74.5576475,39.357695,121 CENTRAL AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5608_5,-74.5052325,39.48208,123 CENTRAL AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5609_1,-74.6329635,39.483759,1252 OLD ZION ROAD,EGG HARBOR TWP,16,1994,1,RES1,3002 -0108_5609_10,-74.92839163,39.51900353,114 POPLAR AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5609_11,-74.80569631,39.5222094,112 POPLAR AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5609_13,-74.58841524,39.41597063,116A POPLAR AVENUE,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_5609_14,-74.8795305,39.5991745,110 POPLAR AVENUE,EGG HARBOR TWP,16,1955,1,GOV1,3004 -0108_5609_15,-74.4097715,39.380837,108 POPLAR AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5609_16,-74.80653241,39.63220736,106 POPLAR AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5609_17,-74.715852,39.4648975,104 POPLAR AVENUE,EGG HARBOR TWP,16,1958,1,GOV1,3004 -0108_5609_2,-74.589389,39.3365145,5 OAK HAVEN LANE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5609_3,-74.58914728,39.48227484,7 OAK HAVEN LANE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5609_4,-74.63548417,39.43401587,9 OAK HAVEN LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5609_5,-74.69543256,39.48769177,11 OAK HAVEN LANE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5609_6,-74.94203069,39.52553697,13 OAK HAVEN LANE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5609_7,-74.70474,39.5843535,15 OAK HAVEN LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5609_8,-74.7614,39.3863095,118 POPLAR AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3002 -0108_5609_9,-74.52355566,39.32100244,116 POPLAR AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5610_1,-74.42436249,39.35636583,201 CENTRAL AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5610_10,-74.6635295,39.5826045,221 CENTRAL AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5610_12,-74.8287025,39.3921925,225 CENTRAL AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_5610_13,-74.79349514,39.63329307,3515 BARGAINTOWN ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5610_16,-74.59846515,39.5984151,12 SAGEMORE COURT,EGG HARBOR TWP,15,1966,1,RES1,3001 -0108_5610_18.01,-74.869074,39.592293,3523 BARGAINTOWN ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5610_18.02,-74.408096,39.3918095,6 SAGEMORE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5610_18.03,-74.6097285,39.59226,4 SAGEMORE COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5610_18.04,-74.55877653,39.37028484,2 SAGEMORE COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5610_18.05,-74.58967338,39.40399642,47 BARTLETT BLVD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5610_18.06,-74.520376,39.4246725,1 SAGEMORE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5610_18.07,-74.5641667,39.36629995,3 SAGEMORE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5610_18.08,-74.66344409,39.40051117,5 SAGEMORE COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5610_18.09,-74.568948,39.4122165,7 SAGEMORE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5610_18.10,-74.36776833,39.4053395,9 SAGEMORE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5610_18.11,-74.37838572,39.40275312,11 SAGEMORE COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5610_2,-74.49772533,39.3315565,203 CENTRAL AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5610_20,-74.4002792,39.38471732,3527 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1870,1,RES1,3001 -0108_5610_25,-74.70371066,39.57048847,45 BARTLETT BLVD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5610_26,-74.52134898,39.40697042,43 BARTLETT BLVD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5610_27,-74.463521,39.3569695,41 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5610_28,-74.528643,39.310009,39 BARTLETT BLVD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5610_29,-74.5309485,39.471811,37 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5610_3,-74.646661,39.433951,205 CENTRAL AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_5610_30,-74.4728165,39.343178,35 BARTLETT BLVD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5610_31,-74.65577178,39.53236896,33 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5610_32,-74.49977287,39.33529813,31 BARTLETT BLVD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5610_33,-74.7090715,39.5712375,29 BARTLETT BLVD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5610_34,-74.62672402,39.35883316,27 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5610_35,-74.6114776,39.32556237,25 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5610_36,-74.55338936,39.36127366,23 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5610_37,-74.5929915,39.3717485,85 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_38,-74.822293,39.5696275,83 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_39,-74.66263157,39.40202407,81 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_4,-74.613457,39.3836815,207 CENTRAL AVENUE,EGG HARBOR TWP,16,1945,2,RES1,3001 -0108_5610_40,-74.49941355,39.52620616,79 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_41,-74.468741,39.4806975,77 ALLISON PLACE,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_5610_42,-74.58927217,39.31473698,75 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,GOV1,3004 -0108_5610_43,-74.47211868,39.34426245,73 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_44,-74.5536203,39.47120487,71 ALLISON PLACE,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_5610_45,-74.58693354,39.31616833,69 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,GOV1,3004 -0108_5610_46,-74.4596015,39.497636,67 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_47,-74.61006675,39.48795455,65 ALLISON PLACE,EGG HARBOR TWP,37,1998,1,RES1,3001 -0108_5610_48,-74.40389745,39.38204433,63 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_49,-74.8635525,39.441153,59 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5610_5,-74.57952413,39.3613552,209 CENTRAL AVENUE,EGG HARBOR TWP,16,1870,1,RES1,3001 -0108_5610_50,-74.44882638,39.37180798,57 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_51,-74.78423384,39.59223554,55 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_52,-74.51768718,39.38700801,53 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5610_53,-74.64006615,39.52400761,51 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5610_54,-74.721606,39.463817,49 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5610_55,-74.602767,39.3805775,47 ALLISON PLACE,EGG HARBOR TWP,37,1995,1,RES1,3001 -0108_5610_56,-74.496211,39.4554515,45 ALLISON PLACE,EGG HARBOR TWP,37,1995,1,RES1,3001 -0108_5610_57,-74.50591678,39.45557427,43 ALLISON PLACE,EGG HARBOR TWP,37,1995,1,RES1,3002 -0108_5610_58,-74.47342931,39.44969612,41 ALLISON PLACE,EGG HARBOR TWP,37,1995,1,RES1,3001 -0108_5610_59,-74.64332894,39.53379915,39 ALLISON PLACE,EGG HARBOR TWP,37,1995,1,RES1,3001 -0108_5610_6,-74.35758214,39.41259474,213 CENTRAL AVENUE,EGG HARBOR TWP,16,1970,1,COM3,3004 -0108_5610_60,-74.69506829,39.4893107,37 ALLISON PLACE,EGG HARBOR TWP,37,1995,1,RES1,3001 -0108_5610_61,-74.49521297,39.49133081,35 ALLISON PLACE,EGG HARBOR TWP,37,1994,1,RES1,3001 -0108_5610_62,-74.442339,39.357578,33 ALLISON PLACE,EGG HARBOR TWP,37,1994,1,RES1,3001 -0108_5610_63,-74.62698984,39.60431392,31 ALLISON PLACE,EGG HARBOR TWP,37,1994,1,RES1,3001 -0108_5610_64,-74.75729866,39.43434001,29 ALLISON PLACE,EGG HARBOR TWP,37,1994,1,RES1,3001 -0108_5610_65,-74.57418309,39.33688689,27 ALLISON PLACE,EGG HARBOR TWP,37,1994,1,RES1,3001 -0108_5610_66,-74.50958836,39.47458731,25 ALLISON PLACE,EGG HARBOR TWP,37,1994,1,RES1,3001 -0108_5610_67,-74.38594636,39.39813129,23 ALLISON PLACE,EGG HARBOR TWP,37,1986,1,RES1,3001 -0108_5610_68,-74.6130988,39.41757797,21 ALLISON PLACE,EGG HARBOR TWP,37,1986,1,GOV1,3004 -0108_5610_69,-74.6866235,39.501102,19 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,GOV1,3004 -0108_5610_7,-74.38685723,39.39730216,215 CENTRAL AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5610_70,-74.5921763,39.37638691,17 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,GOV1,3004 -0108_5610_71,-74.46019117,39.34629,15 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,RES1,3001 -0108_5610_72,-74.58802937,39.43193511,13 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,GOV1,3004 -0108_5610_73,-74.549101,39.3754,11 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,RES1,3001 -0108_5610_74,-74.635948,39.3074685,9 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,GOV1,3004 -0108_5610_75,-74.53758,39.4699415,7 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,RES1,3001 -0108_5610_76,-74.5023195,39.43075067,5 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,RES1,3001 -0108_5610_77,-74.6859412,39.38180334,3 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,RES1,3001 -0108_5610_78,-74.51086157,39.32644436,1 ALLISON PLACE,EGG HARBOR TWP,37,1980,1,COM1,3004 -0108_5610_79,-74.58805863,39.32060567,21 BARTLETT BLVD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_5610_8,-74.92870656,39.51804789,217 CENTRAL AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5610_80,-74.57868823,39.36716633,19 BARTLETT BLVD,EGG HARBOR TWP,16,1986,1,COM1,3004 -0108_5610_81,-74.49546275,39.47482127,17 BARTLETT BLVD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5610_82,-74.3607795,39.4121635,15 BARTLETT BLVD,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5610_83,-74.5752147,39.40811368,13 BARTLETT BLVD,EGG HARBOR TWP,16,1985,1,RES3A,3001 -0108_5610_84,-74.6354235,39.444177,11 BARTLETT BLVD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5610_85,-74.50363024,39.47533452,9 BARTLETT BLVD,EGG HARBOR TWP,16,1985,1,COM7,3004 -0108_5610_86,-74.73296948,39.46336031,7 BARTLETT BLVD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5610_87,-74.7571605,39.447941,5 BARTLETT BLVD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5610_88,-74.94887067,39.49319653,3 BARTLETT BLVD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5610_89,-74.61646684,39.61971477,1 BARTLETT BLVD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5610_9,-74.551052,39.406881,219 CENTRAL AVENUE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_5610_90,-74.614882,39.538956,BARTLETT BLVD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5610_91,-74.51779945,39.40112219,3551 BARGAINTOWN ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5611_1,-74.5770255,39.3330645,2 ALLISON PLACE,EGG HARBOR TWP,37,1986,1,RES1,3001 -0108_5611_10,-74.46281667,39.35551793,20 ALLISON PLACE,EGG HARBOR TWP,37,1990,1,GOV1,3004 -0108_5611_11,-74.505985,39.493057,22 ALLISON PLACE,EGG HARBOR TWP,37,1990,1,RES1,3001 -0108_5611_12,-74.75661605,39.43275173,24 ALLISON PLACE,EGG HARBOR TWP,37,1990,1,RES1,3001 -0108_5611_13,-74.4958935,39.3336095,26 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_14,-74.56798294,39.48098853,28 ALLISON PLACE,EGG HARBOR TWP,37,1995,1,RES1,3001 -0108_5611_15,-74.66024644,39.52413266,30 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_16,-74.753296,39.449148,32 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,GOV1,3004 -0108_5611_17,-74.51814852,39.46653657,34 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_18,-74.55129916,39.47163882,36 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_19,-74.6172675,39.3600355,38 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_2,-74.60617665,39.32749279,4 ALLISON PLACE,EGG HARBOR TWP,37,1985,1,RES1,3001 -0108_5611_20,-74.57883959,39.33808219,40 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_21,-74.73495483,39.48026329,42 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_22,-74.6521665,39.354556,44 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_23,-74.6369625,39.3494395,46 ALLISON PLACE,EGG HARBOR TWP,37,1997,1,RES1,3001 -0108_5611_24,-74.63269552,39.51809416,48 ALLISON PLACE,EGG HARBOR TWP,37,1996,1,RES1,3001 -0108_5611_3,-74.4798378,39.37177397,6 ALLISON PLACE,EGG HARBOR TWP,37,1985,1,RES1,3001 -0108_5611_4,-74.50629947,39.45221917,8 ALLISON PLACE,EGG HARBOR TWP,37,1985,1,RES1,3001 -0108_5611_5,-74.586486,39.3837365,10 ALLISON PLACE,EGG HARBOR TWP,37,1985,1,RES1,3001 -0108_5611_6,-74.804799,39.5553205,12 ALLISON PLACE,EGG HARBOR TWP,37,1985,1,RES1,3001 -0108_5611_7,-74.79121699,39.59541533,14 ALLISON PLACE,EGG HARBOR TWP,37,1990,1,RES1,3001 -0108_5611_8,-74.5446469,39.41307283,16 ALLISON PLACE,EGG HARBOR TWP,37,1990,1,RES1,3001 -0108_5611_9,-74.680436,39.609103,18 ALLISON PLACE,EGG HARBOR TWP,37,1990,1,RES1,3001 -0108_5612_1,-74.507192,39.47866,115 GRANGE CROSS LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5612_10,-74.3850265,39.391365,7 MALTBY COURT,EGG HARBOR TWP,16,1998,1,RES3A,3001 -0108_5612_11,-74.55371928,39.47704546,111 GRANGE CROSS LANE,EGG HARBOR TWP,16,1994,1,IND2,3004 -0108_5612_12,-74.562055,39.412071,109 GRANGE CROSS LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5612_13,-74.54509334,39.37847302,107 GRANGE CROSS LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5612_14,-74.57419324,39.3415158,105 GRANGE CROSS LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5612_15,-74.669285,39.3854475,103 GRANGE CROSS LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5612_16,-74.59664167,39.34429406,101 GRANGE CROSS LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5612_17,-74.50653684,39.41870567,2 BARTLETT BLVD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5612_18,-74.58681415,39.38423307,4 BARTLETT BLVD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5612_19,-74.55727168,39.35751804,6 BARTLETT BLVD,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_5612_2,-74.58659851,39.32413033,113 GRANGE CROSS LANE,EGG HARBOR TWP,16,1995,1,AGR1,3001 -0108_5612_20,-74.48745642,39.47897654,8 BARTLETT BLVD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5612_21,-74.586639,39.355802,10 BARTLETT BLVD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5612_22,-74.58691434,39.33147668,12 BARTLETT BLVD,EGG HARBOR TWP,16,1985,1,RES3A,3001 -0108_5612_23,-74.809283,39.6411945,14 BARTLETT BLVD,EGG HARBOR TWP,16,1985,1,IND2,3002 -0108_5612_24,-74.52432916,39.31715201,16 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5612_25,-74.62933424,39.35796032,18 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5612_26,-74.4856775,39.3505175,20 BARTLETT BLVD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5612_27,-74.60065244,39.31597969,22 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5612_28,-74.38064549,39.41405304,24 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5612_29,-74.57274217,39.3507286,26 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,COM3,3004 -0108_5612_3,-74.53572716,39.31472328,1 MALTBY COURT,EGG HARBOR TWP,16,1994,1,REL1,3004 -0108_5612_30,-74.51541474,39.46602618,28 BARTLETT BLVD,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_5612_31,-74.80261538,39.51681227,30 BARTLETT BLVD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5612_4,-74.736918,39.4480175,2 MALTBY COURT,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_5612_5,-74.62247608,39.43143048,3 MALTBY COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5612_6,-74.74083099,39.59015967,4 MALTBY COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5612_8,-74.5952675,39.4029275,5 MALTBY COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5612_9,-74.54724527,39.4019957,6 MALTBY COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5613_1,-74.51165136,39.33076658,32 BARTLETT BLVD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5613_10,-74.36578042,39.41432029,106 GRANGE CROSS LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5613_11,-74.56599398,39.3473376,108 GRANGE CROSS LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5613_12,-74.42908093,39.36663862,110 GRANGE CROSS LANE,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_5613_13,-74.686758,39.505414,112 GRANGE CROSS LANE,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_5613_14,-74.55181683,39.37733844,114 GRANGE CROSS LANE,EGG HARBOR TWP,16,1996,1,COM3,3004 -0108_5613_15,-74.59721315,39.38476623,116 GRANGE CROSS LANE,EGG HARBOR TWP,16,1995,1,REL1,3004 -0108_5613_16,-74.6459275,39.4068015,118 GRANGE CROSS LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5613_2,-74.71995949,39.46676567,34 BARTLETT BLVD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5613_3,-74.73513996,39.45171267,36 BARTLETT BLVD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5613_5,-74.4948535,39.43535,TONY MINK PAGANO DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5613_6,-74.68644829,39.63422941,3529 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5613_7.01,-74.5059495,39.4056065,3541 BARGAINTOWN ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_5613_7.02,-74.63293034,39.51271996,3543 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5613_8,-74.58289969,39.37758293,102 GRANGE CROSS LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5613_9,-74.80133181,39.61469014,104 GRANGE CROSS LANE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_5614_1,-74.632236,39.41808,11 BRIAN AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_5614_10,-74.439006,39.36923,11 FRONT STREET,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_5614_11,-74.75118017,39.45152936,3508 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1930,1,GOV1,3004 -0108_5614_12,-74.84667565,39.60727425,3506 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5614_14,-74.72437,39.450876,301 CENTRAL AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5614_14.01,-74.50521185,39.32731957,303 CENTRAL AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5614_15,-74.48101662,39.34769366,307 CENTRAL AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5614_16,-74.67389843,39.49593152,1 FRONT STREET,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_5614_17,-74.6245551,39.4322763,305 CENTRAL AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_5614_19,-74.58364232,39.33894355,5 FRONT STREET,EGG HARBOR TWP,16,1946,1,RES1,3001 -0108_5614_2,-74.72761287,39.45762368,5 BRIAN AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_5614_20,-74.567079,39.419065,7 FRONT STREET,EGG HARBOR TWP,16,1954,1,GOV1,3004 -0108_5614_21,-74.57740995,39.34422909,9 FRONT STREET,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_5614_22,-74.51708534,39.40014251,8 FRONT STREET,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5614_23,-74.44092182,39.37008405,5 WATER STREET,EGG HARBOR TWP,15,1840,1,GOV1,3004 -0108_5614_24,-74.43806,39.3701625,3 WATER STREET,EGG HARBOR TWP,16,1850,1,RES1,3001 -0108_5614_26,-74.69225558,39.57423682,2 WATER STREET,EGG HARBOR TWP,16,1982,1,GOV1,3004 -0108_5614_27,-74.70055,39.576754,4 WATER STREET,EGG HARBOR TWP,16,1832,1,RES1,3001 -0108_5614_28,-74.56751125,39.372227,6 WATER STREET,EGG HARBOR TWP,16,1890,1,RES1,3001 -0108_5614_3,-74.90537082,39.47225285,3 BRIAN AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5614_30,-74.5524225,39.471183,10 FRONT STREET,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5614_31,-74.78107427,39.63422846,14 FRONT STREET,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5614_32,-74.579094,39.419057,14 BRIAN AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_5614_33,-74.36177,39.4119385,8 BRIAN AVENUE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_5614_34,-74.52745768,39.38568154,4 BRIAN AVENUE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_5614_35,-74.5337265,39.38782974,2 BRIAN AVENUE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_5614_36,-74.5970445,39.315465,3522 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5614_37,-74.61806203,39.39002932,3526 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5614_38,-74.61288159,39.41931682,3530 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5614_39,-74.4627605,39.3488055,3532 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5614_4,-74.45663104,39.35772478,1 BRIAN AVENUE,EGG HARBOR TWP,16,1955,1,GOV1,3004 -0108_5614_40,-74.87884716,39.59710303,3534 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1953,1,RES1,3001 -0108_5614_41,-74.5100645,39.336245,3538 BARGAINTOWN ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5614_42,-74.63884167,39.39131576,3536 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_5614_43,-74.5774505,39.349611,3540 BARGAINTOWN ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5614_44,-74.58876833,39.34719188,2 WILLOWBROOK LANE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5614_45,-74.8077917,39.64964629,4 WILLOWBROOK LANE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_5614_46,-74.48379239,39.33531434,6 WILLOWBROOK LANE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5614_47,-74.557538,39.366534,8 WILLOWBROOK LANE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5614_48,-74.42397823,39.36595615,10 WILLOWBROOK LANE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5614_49,-74.78794421,39.64427844,12 WILLOWBROOK LANE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5614_5,-74.7946485,39.6415925,17 FRONT STREET,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_5614_51,-74.62069695,39.4315813,15 WILLOWBROOK LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5614_53,-74.904729,39.4810185,312 POPLAR AVENUE,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_5614_54,-74.52087312,39.31739115,11 WILLOWBROOK LANE,EGG HARBOR TWP,16,1979,1,GOV1,3004 -0108_5614_55,-74.50857571,39.49378105,9 WILLOWBROOK LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5614_56,-74.70575683,39.44228228,7 WILLOWBROOK LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5614_57,-74.44127,39.3652665,5 WILLOWBROOK LANE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5614_58,-74.47367851,39.49389957,3 WILLOWBROOK LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5614_59,-74.53259395,39.45489744,1 WILLOWBROOK LANE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_5614_6,-74.886487,39.562748,3514 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5614_60,-74.54610605,39.47061679,3550 BARGAINTOWN ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5614_7,-74.498011,39.3337005,3512 BARGAINTOWN ROAD,EGG HARBOR TWP,16,1957,1,GOV1,3004 -0108_5614_9,-74.39165405,39.39026066,15 FRONT STREET,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_5701_1,-74.49461604,39.33635467,597 ZION ROAD,EGG HARBOR TWP,,1924,1,RES1,3001 -0108_5701_1.01,-74.82701701,39.56815925,3 POPLAR AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_1.02,-74.46375037,39.34565682,5 POPLAR AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5701_10,-74.4091175,39.381326,11 ERMA DRIVE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_100,-74.58477067,39.41574867,8 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5701_101,-74.4976595,39.330923,6 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5701_102,-74.79756534,39.62566294,4 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5701_103,-74.4782835,39.4399065,2 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5701_104.01,-74.3762985,39.398699,555 ZION ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_104.02,-74.53436095,39.54767409,553 ZION ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_105,-74.75161766,39.44900341,557 ZION ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5701_106,-74.5355055,39.397199,559 ZION ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5701_107,-74.65258248,39.52711333,563 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5701_109,-74.46382541,39.45583033,571 ZION ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5701_109.01,-74.49903975,39.49855445,573 ZION ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5701_11,-74.58726085,39.41190318,13 ERMA DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5701_112,-74.8791645,39.5910185,575 ZION ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_5701_113,-74.63902636,39.44998518,579 ZION ROAD,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_5701_114.01,-74.4203255,39.371664,16 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5701_114.02,-74.55909894,39.47292821,15 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5701_114.03,-74.5818102,39.34136272,14 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_114.05,-74.57463505,39.33639285,13 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_114.06,-74.513857,39.4867195,12 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,2000,1,RES1,3004 -0108_5701_114.07,-74.459688,39.353621,11 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_114.08,-74.602921,39.4743415,10 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5701_114.09,-74.71685782,39.40552739,9 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_5701_114.10,-74.50721154,39.34118791,8 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_114.11,-74.78246569,39.65151972,7 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_114.12,-74.48611217,39.3360335,6 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_114.13,-74.59549826,39.36380985,5 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_114.14,-74.720688,39.644428,4 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_114.16,-74.49751218,39.51883199,3 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5701_114.17,-74.72931503,39.58812319,2 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5701_114.18,-74.46778742,39.48909619,1 CARRIAGE HOUSE LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5701_115,-74.56576717,39.37282804,587 ZION ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5701_116,-74.48098682,39.34758183,589 ZION ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5701_117,-74.59168056,39.31985082,593 ZION ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5701_118,-74.6536055,39.5285085,595 ZION ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5701_12,-74.48800467,39.33296049,15 ERMA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5701_13,-74.6886835,39.4966775,21 POPLAR AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_14,-74.4140015,39.3703435,23 POPLAR AVENUE,EGG HARBOR TWP,16,1985,1,RES3B,3001 -0108_5701_15,-74.8101045,39.629317,102 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_16,-74.6065432,39.43931444,104 ROCHELLE LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5701_17,-74.52159716,39.39497856,106 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_18,-74.93851462,39.5315997,108 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_19,-74.79467301,39.63938467,110 ROCHELLE LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5701_2,-74.491805,39.3363635,7 POPLAR AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_20,-74.5924008,39.43465707,112 ROCHELLE LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5701_21,-74.806841,39.637159,114 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_22,-74.574785,39.426827,116 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_23,-74.42522131,39.37063005,118 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_24,-74.78815417,39.637809,120 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_25,-74.57788238,39.34153037,122 ROCHELLE LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_26,-74.79180031,39.6395953,124 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_5701_27,-74.49845129,39.46968695,126 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_28,-74.58855525,39.32274801,128 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_29,-74.63689047,39.30914232,130 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_3.01,-74.57046034,39.47984151,9 POPLAR AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5701_3.02,-74.6093685,39.3919075,11 POPLAR AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5701_30,-74.59329103,39.34986262,132 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_5701_31,-74.536137,39.372938,134 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES2,3005 -0108_5701_32,-74.63742492,39.34446156,136 ROCHELLE LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_33,-74.48785206,39.35100614,138 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_34,-74.54433284,39.37369334,140 ROCHELLE LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_35,-74.53103504,39.44717019,142 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_36,-74.52321303,39.39550318,144 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_37,-74.44884928,39.37594668,146 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_38,-74.42125447,39.37161533,148 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_39,-74.61100145,39.49100456,150 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_4,-74.60375,39.323777,13 POPLAR AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5701_48.01,-74.84459911,39.39095904,35 POPLAR AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_48.03,-74.734646,39.4609095,158 ROCHELLE LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5701_49.01,-74.83235318,39.42475848,2 STURBRIDGE COURT,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_5701_49.02,-74.72324584,39.5775382,4 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_49.03,-74.95376192,39.49776711,6 STURBRIDGE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_49.04,-74.821467,39.4922165,8 STURBRIDGE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_49.05,-74.94933,39.5146775,10 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_49.06,-74.5163906,39.32450097,12 STURBRIDGE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_49.07,-74.5548203,39.35658276,14 STURBRIDGE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_49.08,-74.43934998,39.36969681,16 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_49.09,-74.606504,39.3770515,18 STURBRIDGE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_49.11,-74.50120718,39.32794248,22 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_5701_49.12,-74.583565,39.4326175,24 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_49.13,-74.442795,39.374035,26 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_49.14,-74.46852763,39.48622854,28 STURBRIDGE COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5701_49.15,-74.829762,39.567193,30 STURBRIDGE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_49.16,-74.6192009,39.37087672,32 STURBRIDGE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_49.17,-74.52486668,39.31905994,34 STURBRIDGE COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5701_49.18,-74.84082693,39.44656919,36 STURBRIDGE COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5701_49.19,-74.62375754,39.46218766,38 STURBRIDGE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_49.21,-74.51955288,39.45503589,35 STURBRIDGE COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5701_49.22,-74.6246945,39.3789495,33 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_49.23,-74.7359845,39.434512,31 STURBRIDGE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_49.24,-74.49958663,39.50065886,29 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_5701_49.25,-74.6357545,39.5226545,27 STURBRIDGE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_49.26,-74.64290116,39.3688413,25 STURBRIDGE COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5701_49.27,-74.92899601,39.51914545,23 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_49.28,-74.41852781,39.36895802,21 STURBRIDGE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_49.31,-74.76122027,39.44446875,13 STURBRIDGE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_49.32,-74.573562,39.344054,11 STURBRIDGE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_49.33,-74.790913,39.642516,9 STURBRIDGE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_49.34,-74.50410259,39.32482228,7 STURBRIDGE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5701_49.35,-74.63730847,39.52864323,5 STURBRIDGE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5701_49.36,-74.8029665,39.639319,3 STURBRIDGE COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5701_49.37,-74.6247746,39.49100004,1 STURBRIDGE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5701_5,-74.598958,39.312953,1 ERMA DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5701_50,-74.7562725,39.60068234,41 POPLAR AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5701_51,-74.4730705,39.442262,43 POPLAR AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5701_53,-74.5001145,39.333607,1301 OLD ZION ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5701_54,-74.47853079,39.33841343,1303 OLD ZION ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_55,-74.60719861,39.39264633,1305 OLD ZION ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_57,-74.48477853,39.34459318,1311 OLD ZION ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_58,-74.628401,39.3534165,1313 OLD ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5701_59,-74.51754035,39.32234798,1315 OLD ZION ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5701_6,-74.55573583,39.37421695,3 ERMA DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5701_60,-74.53400977,39.31519963,1317 OLD ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5701_61,-74.80715598,39.46408767,1319 OLD ZION ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5701_62,-74.8195475,39.6217895,1323 OLD ZION ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5701_63,-74.499705,39.330628,1329 OLD ZION ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5701_64,-74.422529,39.372531,1325 OLD ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5701_65,-74.7161349,39.40655279,1327 OLD ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5701_66,-74.49886722,39.47270003,1333 OLD ZION ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_5701_67,-74.94470768,39.52319698,1337 OLD ZION ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_5701_68,-74.76310982,39.6377143,1343 OLD ZION ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5701_69,-74.4832595,39.3498425,1341 OLD ZION ROAD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_5701_7,-74.4627145,39.4932425,5 ERMA DRIVE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_70,-74.78447971,39.6643005,1345 OLD ZION ROAD,EGG HARBOR TWP,14,1925,1,RES1,3001 -0108_5701_72,-74.5037665,39.3253085,1349 OLD ZION ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5701_73,-74.9217115,39.48092678,1351 OLD ZION ROAD,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_5701_74,-74.62404997,39.38070888,1359 OLD ZION ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_5701_75,-74.628864,39.4386325,1365 OLD ZION ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5701_77,-74.7600295,39.43249,90 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5701_78,-74.59418331,39.36413083,86 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5701_79,-74.60065687,39.41650522,84 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1976,1,GOV1,3004 -0108_5701_8,-74.49773767,39.32930399,7 ERMA DRIVE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_80,-74.57417533,39.34652432,80 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5701_81,-74.58468003,39.41378708,78 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5701_82,-74.812262,39.644586,68 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5701_82.01,-74.64642016,39.54879612,70 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5701_82.02,-74.496736,39.3314655,72 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5701_83,-74.60194715,39.38990681,66 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_5701_84,-74.88404242,39.59750615,60 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5701_85,-74.624334,39.5066935,56 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_5701_86,-74.50034916,39.47507924,54 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5701_87,-74.69494098,39.36265782,52 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5701_89,-74.673169,39.382404,48 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_5701_9,-74.80095541,39.64781077,9 ERMA DRIVE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5701_95,-74.4827635,39.34808907,28 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,,1940,2,RES1,3001 -0108_5701_98,-74.83033,39.3866265,16 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5701_99,-74.5747855,39.3563215,10 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5702_1,-74.79657491,39.63424428,157 ROCHELLE LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5702_10,-74.6049515,39.369506,121 ROCHELLE LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5702_11,-74.48581886,39.4710323,119 ROCHELLE LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5702_12,-74.5603965,39.4155705,117 ROCHELLE LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5702_2,-74.55715,39.4680015,155 ROCHELLE LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5702_3,-74.77685026,39.62401114,153 ROCHELLE LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5702_4,-74.6072905,39.5018845,151 ROCHELLE LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5702_5,-74.897204,39.4735915,149 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5702_6,-74.794541,39.6460405,147 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5702_7,-74.50772249,39.47923935,127 ROCHELLE LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5702_8,-74.5747125,39.351028,125 ROCHELLE LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5702_9,-74.77408505,39.66108093,123 ROCHELLE LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5703_1,-74.6256101,39.38432088,15 POPLAR AVENUE,EGG HARBOR TWP,16,1963,1,RES2,3005 -0108_5703_2,-74.77409923,39.30638305,19 POPLAR AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5703_3,-74.8534565,39.3697955,12 ERMA DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_5703_4,-74.64597686,39.54893655,10 ERMA DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5703_5,-74.94638572,39.52507995,8 ERMA DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5703_6,-74.889375,39.4986825,6 ERMA DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5703_8,-74.64875,39.400275,2 ERMA DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5704_41,-74.60055915,39.36013883,113 ROCHELLE LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5704_42,-74.37090117,39.40754048,111 ROCHELLE LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5704_43,-74.79262353,39.64550934,109 ROCHELLE LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5704_44,-74.870515,39.6040685,107 ROCHELLE LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5704_45,-74.7909615,39.647551,105 ROCHELLE LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5704_46,-74.553231,39.4706035,103 ROCHELLE LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_5704_47.01,-74.602893,39.396285,27 POPLAR AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5704_47.02,-74.3667065,39.422445,101 ROCHELLE LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5704_48.14,-74.7015045,39.423354,173 ROCHELLE LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5801_1,-74.50495783,39.3306785,421 DELAWARE AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_5801_10,-74.52276466,39.31937081,236 LEAP STREET,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5801_11,-74.689016,39.630783,306 BAYBERRY AVENUE,EGG HARBOR TWP,16,1978,1,COM1,3004 -0108_5801_12,-74.40836793,39.37962832,304 BAYBERRY AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5801_13,-74.5843575,39.375954,302 BAYBERRY AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5801_14,-74.76407543,39.6341528,300 BAYBERRY AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5801_2,-74.37379436,39.40981044,423 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5801_3,-74.38345986,39.39220444,425 DELAWARE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5801_4,-74.80514602,39.63342835,427 DELAWARE AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5801_5,-74.56273247,39.36090718,431 DELAWARE AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5801_6,-74.4472688,39.37467844,242 LEAP STREET,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5801_7,-74.57281529,39.33637337,246 LEAP STREET,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5801_8,-74.42271006,39.36565617,240 LEAP STREET,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5801_9,-74.7305425,39.454038,238 LEAP STREET,EGG HARBOR TWP,16,1978,1,RES1,3002 -0108_5802_1,-74.37375803,39.41300332,232 LEAP STREET,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5803_61.02,-74.3664325,39.416304,2 WINDCHIME ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5803_61.03,-74.80614902,39.63746514,4 WINDCHIME ROAD,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5803_67,-74.7152,39.581513,608 ZION ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5803_68,-74.79893005,39.63315366,612 ZION ROAD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_5803_70,-74.46120717,39.34979949,614 ZION ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5803_71,-74.73847524,39.46702911,616 ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5803_72,-74.4580815,39.351376,618 ZION ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5803_73,-74.76693198,39.66714374,620 ZION ROAD,EGG HARBOR TWP,16,1974,1,COM3,3004 -0108_5803_76,-74.49898482,39.42392763,624 ZION ROAD,EGG HARBOR TWP,,0,1,COM1,3004 -0108_5803_77,-74.60922276,39.44107906,626 ZION ROAD,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_5803_79,-74.5199435,39.32058933,630 ZION ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5803_80,-74.569722,39.368325,632 ZION ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5803_81,-74.764151,39.603859,17 CENTRAL AVENUE,EGG HARBOR TWP,45,1970,2,RES1,3001 -0108_5803_82,-74.64625035,39.55006696,15 CENTRAL AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_5803_83,-74.47536118,39.44308922,11 CENTRAL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5803_84,-74.67082727,39.4573987,7 CENTRAL AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5803_86,-74.36292039,39.41324033,5 CENTRAL AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5803_87,-74.40477942,39.38311044,3 CENTRAL AVENUE,EGG HARBOR TWP,16,1925,1,GOV1,3004 -0108_5803_88,-74.3691286,39.40314318,1 CENTRAL AVENUE,EGG HARBOR TWP,16,1986,1,COM3,3004 -0108_5803_89,-74.51672259,39.45162554,507 DELAWARE AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_5803_90,-74.4998325,39.4142815,505 DELAWARE AVENUE,EGG HARBOR TWP,52,1958,1,RES1,3001 -0108_5803_91,-74.755007,39.4303315,501 DELAWARE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5804_3,-74.4956386,39.49457265,521 DELAWARE AVENUE,EGG HARBOR TWP,16,1951,1,RES1,3001 -0108_5804_4.01,-74.51243968,39.32810448,1105 OLD ZION ROAD,EGG HARBOR TWP,16,1935,1,RES1,3004 -0108_5804_4.02,-74.45018782,39.35592952,519 DELAWARE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5804_4.03,-74.4482055,39.3566715,517 DELAWARE AVENUE,EGG HARBOR TWP,16,2009,1,COM4,3004 -0108_5804_6,-74.82386805,39.40738267,14 CENTRAL AVENUE,EGG HARBOR TWP,15,1945,1,RES1,3001 -0108_5805_1,-74.49395526,39.33216783,6 WINDCHIME ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5805_2,-74.48135075,39.43258041,8 WINDCHIME ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5805_3,-74.534281,39.390419,10 WINDCHIME ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5805_4,-74.56803671,39.35618366,12 WINDCHIME ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5805_5,-74.6171374,39.31188813,14 WINDCHIME ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5805_6,-74.84038215,39.44114471,16 WINDCHIME ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5805_7,-74.59467762,39.36543456,18 WINDCHIME ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5806_1,-74.60654357,39.39097719,300 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5806_2,-74.76725,39.6076015,302 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5806_3,-74.48410508,39.44127013,304 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5806_4,-74.5856265,39.327813,306 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2001,1,RES1,3002 -0108_5806_5,-74.66860692,39.54195789,5 WINDCHIME ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5806_6,-74.62607649,39.55282313,3 WINDCHIME ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5806_7,-74.71866724,39.5779052,1 WINDCHIME ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_1,-74.58408315,39.49464881,200 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_10,-74.78425395,39.63930784,218 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_11,-74.6353505,39.524803,220 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5807_12,-74.605239,39.3229175,9 WINDCHIME ROAD,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_5807_13,-74.59235414,39.31810734,317 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5807_14,-74.49189006,39.33088518,315 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5807_15,-74.61640795,39.40439828,313 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_16,-74.51067348,39.33211983,311 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_17,-74.48171108,39.33602418,309 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_18,-74.522595,39.47399,307 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5807_19,-74.5602075,39.3972965,305 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5807_2,-74.48857484,39.33218223,202 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_20,-74.67235333,39.38929903,303 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_5807_21,-74.6481363,39.34027285,301 HIDDEN OAK ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5807_22,-74.63419566,39.35111999,100 WOODBERRY DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5807_3,-74.4633375,39.346348,204 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5807_4,-74.6332935,39.430421,206 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5807_5,-74.59275426,39.37652241,208 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,RES2,3005 -0108_5807_6,-74.46198726,39.46848384,210 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_7,-74.89557461,39.48269247,212 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5807_8,-74.4951354,39.42659607,214 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5807_9,-74.52187701,39.46039167,216 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_1,-74.453236,39.3535765,102 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_10,-74.70579144,39.63709719,120 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_11,-74.82240573,39.4918578,122 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_12,-74.7499295,39.602857,124 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_13,-74.57539162,39.41352513,223 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5808_14,-74.6886005,39.4129135,221 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,RES1,3004 -0108_5808_15,-74.40056931,39.38541535,219 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_16,-74.58545318,39.41597632,217 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_5808_17,-74.48380522,39.43088937,215 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5808_18,-74.46126585,39.35851859,213 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5808_19,-74.5035445,39.410899,211 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5808_2,-74.80751512,39.52735764,104 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_20,-74.45979984,39.47165553,209 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5808_21,-74.53726394,39.51414371,207 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_22,-74.78572873,39.63271758,205 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_23,-74.49689574,39.42809085,203 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5808_24,-74.52532953,39.42027232,201 TALLOWWOOD ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5808_3,-74.69226,39.412038,106 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_4,-74.497119,39.331553,108 WOODBERRY DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5808_5,-74.879007,39.4623075,110 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5808_6,-74.68620429,39.63552148,112 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_7,-74.637594,39.3199905,114 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5808_8,-74.6614358,39.36381381,116 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5808_9,-74.64600996,39.37681567,118 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5809_60.01,-74.61793659,39.32006296,125 WOODBERRY DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5809_60.02,-74.6313897,39.42231106,127 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.03,-74.555673,39.396299,129 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_5809_60.04,-74.66833371,39.38732366,131 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5809_60.05,-74.630725,39.417538,133 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5809_60.06,-74.60145049,39.33010267,135 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5809_60.07,-74.55769825,39.37400439,137 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.08,-74.70768931,39.56468043,139 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5809_60.09,-74.60132084,39.50087547,141 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5809_60.11,-74.5391245,39.3942015,14 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.12,-74.811482,39.6335305,12 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.13,-74.71328896,39.47379689,10 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.14,-74.61099948,39.40361317,8 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.15,-74.451292,39.4893735,6 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.16,-74.50254713,39.42536667,4 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_5809_60.17,-74.5388835,39.469087,2 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.18,-74.49942341,39.43332574,122 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.19,-74.7756985,39.59234,120 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5809_60.21,-74.84973572,39.61267663,116 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5810_32,-74.53538917,39.38067951,3 PADDOCK ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5810_33,-74.44713936,39.35519448,1 PADDOCK ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5810_34,-74.5220827,39.4468842,108 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2000,1,COM4,3004 -0108_5810_35,-74.661488,39.5453155,106 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5810_36,-74.739419,39.635614,104 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_5810_37,-74.56830809,39.36270487,102 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5810_38,-74.5265045,39.4299715,588 ZION ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_5810_40,-74.79763309,39.66111881,101 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5810_41,-74.48940884,39.33670246,103 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5810_42,-74.408747,39.3921335,105 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5810_43,-74.9518945,39.4962655,107 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_1,-74.51391734,39.32507671,136 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_10,-74.828059,39.5292685,10 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_11,-74.6445538,39.36632162,12 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_12,-74.54508053,39.38421919,14 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_13,-74.48849198,39.35030978,249 LEAP STREET,EGG HARBOR TWP,16,2002,1,COM3,3004 -0108_5811_14,-74.62151285,39.38313078,447 DELAWARE AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5811_15,-74.71889766,39.56731248,17 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_16,-74.55095274,39.36614237,15 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_17,-74.4493308,39.35467584,13 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_18,-74.55410626,39.38041089,11 WINNERS COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5811_19,-74.47247933,39.44384399,9 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_2,-74.47488912,39.44568918,134 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_20,-74.84691204,39.58896495,7 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_21,-74.49587825,39.33529313,5 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_22,-74.56194683,39.4075595,3 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_5811_23,-74.64687179,39.43046794,124 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_24,-74.614036,39.3187695,122 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_25,-74.837267,39.484847,120 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_26,-74.367556,39.413459,118 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_27,-74.57432606,39.41946289,116 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_28,-74.7771915,39.5871705,114 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_29,-74.78392938,39.64203465,2 PADDOCK ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_3,-74.638423,39.528798,132 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_31,-74.60105882,39.31951393,4 PADDOCK ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5811_32,-74.60548097,39.32392583,109 BELMONT DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5811_34,-74.837298,39.4872995,113 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_35,-74.6632425,39.400411,115 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_36,-74.5253985,39.38541033,117 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_37,-74.521394,39.3986565,119 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_38,-74.5767465,39.35469,121 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_39,-74.9414415,39.5255325,123 BELMONT DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5811_4,-74.4942148,39.43040183,130 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_40,-74.50973617,39.3287448,125 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_41,-74.783715,39.673913,127 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_42,-74.65000985,39.45199772,5 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_43,-74.69388441,39.41948367,7 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5811_5,-74.79495004,39.63039615,128 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5811_50,-74.53614167,39.39766552,247 LEAP STREET,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_5811_57,-74.37249991,39.41656927,449 DELAWARE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5811_58,-74.9505635,39.521567,451 DELAWARE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5811_59,-74.54724878,39.47255393,457 DELAWARE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5811_6,-74.58843491,39.4289273,126 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_7,-74.70923887,39.63847434,4 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_8,-74.51346703,39.40604673,6 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5811_9,-74.57480902,39.40905983,8 WINNERS COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_1,-74.7183765,39.441995,145 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_10,-74.57569751,39.40833583,127 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_11,-74.62566974,39.43494737,125 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_12,-74.50113061,39.33246216,123 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_14,-74.46906748,39.48982483,222 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_15,-74.8272705,39.3809505,220 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_16,-74.87931,39.541424,218 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,REL1,3004 -0108_5812_17,-74.574561,39.34291,216 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_18,-74.93772441,39.52282039,214 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_19,-74.63820533,39.42884549,212 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_2,-74.60488504,39.38759034,143 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_20,-74.64921065,39.52293835,210 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_21,-74.3763385,39.40166435,208 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_22,-74.75458169,39.30167997,206 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_23,-74.68266867,39.45113908,204 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_24,-74.9254685,39.5249825,202 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_25,-74.360764,39.414206,200 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_26,-74.628195,39.6034335,241 LEAP STREET,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_5812_3,-74.4831445,39.34969517,141 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_4,-74.60159985,39.3124787,139 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5812_5,-74.54410444,39.38655135,137 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_6,-74.519059,39.5384145,135 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_7,-74.64066177,39.37303134,133 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5812_8,-74.633408,39.318494,131 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5812_9,-74.372078,39.4105915,129 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_1,-74.5445045,39.376931,101 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_10,-74.71433016,39.46566098,119 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_5813_11,-74.6280065,39.348447,121 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5813_2,-74.59088986,39.33097751,103 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_25.01,-74.40944232,39.38132751,116 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.02,-74.407248,39.3795055,114 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.03,-74.40536111,39.37919249,112 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.04,-74.40731735,39.37881252,110 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.05,-74.422045,39.37428,108 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.06,-74.40987394,39.38249781,106 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.07,-74.40482164,39.38367941,104 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.08,-74.40254069,39.38195201,102 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5813_25.09,-74.41345584,39.37067877,10 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.10,-74.38270109,39.39475967,8 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.11,-74.38085027,39.3999315,6 EMERALD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5813_25.12,-74.38053647,39.39837403,4 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.13,-74.5093037,39.32670565,2 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.16,-74.51575965,39.3310834,136 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.17,-74.42480347,39.37100614,134 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5813_25.18,-74.60767047,39.32018368,132 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.19,-74.42255,39.3732705,130 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.20,-74.51037467,39.33141291,128 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5813_25.21,-74.43311629,39.36886406,126 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.22,-74.4371495,39.36937,124 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5813_25.23,-74.438898,39.368981,122 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.24,-74.43707663,39.36989829,120 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_25.25,-74.4318325,39.3686645,118 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5813_26,-74.735172,39.449487,550 ZION ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_5813_27,-74.83254569,39.47755803,554 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5813_29,-74.56846183,39.34010699,1 RENEE DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5813_3,-74.709922,39.432269,105 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5813_30,-74.650844,39.397585,564 ZION ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5813_31,-74.4774095,39.339334,3 RENEE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5813_32,-74.51898,39.4051395,5 RENEE DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5813_33,-74.58937272,39.4568282,7 RENEE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5813_34,-74.466074,39.3569495,9 RENEE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5813_35,-74.68319217,39.57003401,11 RENEE DRIVE,EGG HARBOR TWP,16,1991,1,GOV1,3004 -0108_5813_36,-74.63342026,39.41481885,13 RENEE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5813_38,-74.4507905,39.494865,12 RENEE DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_5813_39,-74.78711669,39.41877884,10 RENEE DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5813_4,-74.50453888,39.34239777,107 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5813_40,-74.64751499,39.45707936,8 RENEE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5813_41,-74.624702,39.3598295,6 RENEE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5813_42,-74.69784,39.594498,4 RENEE DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5813_43,-74.60265651,39.32544716,2 RENEE DRIVE,EGG HARBOR TWP,16,1993,1,GOV1,3004 -0108_5813_44,-74.648207,39.43088,570 ZION ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5813_46,-74.50924351,39.43154605,580 ZION ROAD,EGG HARBOR TWP,15,1911,1,RES1,3001 -0108_5813_47.13,-74.49690767,39.3330335,223 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5813_47.14,-74.50059294,39.33407314,221 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.15,-74.379118,39.4159415,219 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.16,-74.5716565,39.4133775,217 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.17,-74.5377085,39.386554,215 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.18,-74.5698267,39.37417336,213 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.19,-74.42672442,39.35837865,211 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.21,-74.51047117,39.33754549,207 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.22,-74.57114066,39.34196012,205 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.23,-74.9440255,39.511946,203 PRANCER ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_47.24,-74.61859496,39.31987968,201 PRANCER ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5813_5,-74.728442,39.587856,109 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_6,-74.71177308,39.57845068,111 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5813_7,-74.51681359,39.32287236,113 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5813_8,-74.821403,39.385982,115 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5813_9,-74.5515875,39.5430075,117 BRIDLE PATH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_5815_1,-74.47979234,39.34613043,103 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5815_10,-74.4812095,39.3500595,121 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_11,-74.479942,39.348948,123 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_12,-74.48294039,39.34902733,125 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_13,-74.48424146,39.34762,127 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5815_14,-74.51595,39.326666,36 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_15,-74.460597,39.3479695,34 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_16,-74.45630224,39.34800823,32 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_17,-74.51519247,39.32640133,30 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,COM7,3004 -0108_5815_18,-74.463345,39.3476115,28 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_19,-74.45777534,39.34852033,26 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_2,-74.4787205,39.336816,105 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_20,-74.46163482,39.34495705,24 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_21,-74.4704265,39.3413455,22 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_22,-74.4652668,39.34579665,20 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_23,-74.46047963,39.3466095,18 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_24,-74.46497667,39.3460805,16 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_25,-74.47680551,39.34271323,14 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_26,-74.4781015,39.346661,12 EMERALD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5815_3,-74.4855865,39.3362805,107 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_4,-74.48637933,39.33498851,109 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_5,-74.4685655,39.345069,111 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,COM4,3004 -0108_5815_6,-74.46753561,39.34593966,113 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_7,-74.46730734,39.34616098,115 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_8,-74.4670721,39.34441817,117 RUBY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5815_9,-74.48540565,39.34674673,119 RUBY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5816_1,-74.5085765,39.406851,223 LEAP STREET,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5816_10,-74.39547414,39.38926049,39 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5816_11,-74.389715,39.389872,37 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5816_12,-74.379965,39.401462,35 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,IND1,3004 -0108_5816_13,-74.38997051,39.39183115,33 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5816_14,-74.38078955,39.40038384,31 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5816_2,-74.48587497,39.49694031,225 LEAP STREET,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5816_3,-74.36870433,39.40571201,227 LEAP STREET,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5816_4,-74.57306263,39.36224474,36 DIAMOND DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5816_5,-74.63329639,39.42832574,34 DIAMOND DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5816_6,-74.6387039,39.41113272,3 GEM AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5816_7,-74.572701,39.347954,5 GEM AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5816_8,-74.44726933,39.35817909,43 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5816_9,-74.39627433,39.3890776,41 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_10,-74.54954223,39.38274047,26 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5817_11,-74.5870607,39.33071247,24 DIAMOND DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_5817_12,-74.79221184,39.62064851,22 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5817_13,-74.63739211,39.43159955,20 DIAMOND DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5817_14,-74.5751292,39.36381328,18 DIAMOND DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5817_15,-74.6147384,39.42831802,16 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES3A,3001 -0108_5817_16,-74.36198974,39.40903069,14 DIAMOND DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5817_17,-74.49157336,39.33409783,12 DIAMOND DRIVE,EGG HARBOR TWP,16,1995,1,RES3A,3001 -0108_5817_18,-74.586673,39.3487655,10 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5817_19,-74.71353603,39.38537265,8 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5817_20,-74.46458477,39.54779236,6 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5817_21,-74.59127452,39.32821807,4 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5817_22,-74.54172892,39.37532564,2 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5817_24,-74.52411195,39.38960276,29 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_25,-74.48629768,39.34588945,27 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES3B,3001 -0108_5817_26,-74.51892145,39.4007623,25 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_27,-74.38404485,39.39209446,23 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_28,-74.3880075,39.390004,21 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_29,-74.49832266,39.33450602,19 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_30,-74.3964745,39.38521636,17 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5817_31,-74.487384,39.350036,15 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_32,-74.525491,39.38711333,13 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_33,-74.48832883,39.34899855,11 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_34,-74.5036845,39.3369915,9 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_35,-74.52534617,39.3858721,7 EMERALD DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5817_36,-74.52918066,39.38729744,5 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_37,-74.52671393,39.38905307,3 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_38,-74.4830408,39.34565539,1 EMERALD DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5817_8,-74.42247163,39.37495652,2 GEM AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5817_9,-74.75682361,39.43180113,4 GEM AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5818_1,-74.60501167,39.38493436,126 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5818_2,-74.816934,39.411402,461 DELAWARE AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5818_3,-74.5091597,39.52934716,463 DELAWARE AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5818_4,-74.506738,39.4310465,11 WINDCHIME ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5818_5,-74.59207793,39.4081177,406 SHADELAND ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5818_6,-74.6201925,39.438332,404 SHADELAND ROAD,EGG HARBOR TWP,16,2003,1,COM1,3004 -0108_5818_7,-74.4932395,39.3316145,402 SHADELAND ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5818_8,-74.38188854,39.41838868,400 SHADELAND ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5819_1,-74.6746075,39.374433,1 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5819_2,-74.45078957,39.50132272,124 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5819_3,-74.592055,39.378776,3 SARATOGA ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_55,-74.52086534,39.31515555,594 ZION ROAD,EGG HARBOR TWP,15,1945,1,RES1,3001 -0108_5820_61.04,-74.65705155,39.44889627,101 WOODBERRY DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_5820_61.05,-74.54563346,39.40085118,103 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5820_61.06,-74.5389995,39.3114265,105 WOODBERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5820_61.07,-74.66465201,39.39673374,107 WOODBERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5820_61.08,-74.65126336,39.52303462,109 WOODBERRY DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5820_61.09,-74.6585875,39.3473195,111 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_61.11,-74.912887,39.480094,115 WOODBERRY DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_5820_61.12,-74.80388102,39.62834296,117 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_61.13,-74.513904,39.4115975,119 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_5820_61.14,-74.50379774,39.41405788,121 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_61.15,-74.53368825,39.47128956,123 WOODBERRY DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_61.16,-74.75915605,39.4315283,114 BELMONT DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5820_61.17,-74.51658282,39.39973162,112 BELMONT DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5820_61.18,-74.96896323,39.50599753,110 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_61.19,-74.64873067,39.53185001,108 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_61.21,-74.54786207,39.371754,104 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_61.22,-74.46977535,39.50519728,102 BELMONT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_5820_64,-74.526806,39.50012,602 ZION ROAD,EGG HARBOR TWP,15,1910,1,RES1,3001 -0108_5820_65,-74.39919208,39.39057357,604 ZION ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5820_66,-74.59143468,39.4307337,606 ZION ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_5901_2,-74.51100991,39.32718784,7201 FERNWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5901_3.02,-74.48986935,39.33567048,34 COTTAGE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5901_3.03,-74.4519714,39.37560674,32 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5901_3.04,-74.45018847,39.37312074,30 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5901_3.05,-74.505821,39.337303,28 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5901_3.06,-74.381183,39.4161595,26 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5901_3.07,-74.3724311,39.41616801,24 COTTAGE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5901_3.08,-74.37274063,39.41845223,22 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5901_3.09,-74.36808021,39.41120312,20 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5901_3.10,-74.36041895,39.41243391,18 COTTAGE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5901_3.11,-74.35581033,39.41412653,16 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES3A,3001 -0108_5901_3.12,-74.3570955,39.413126,14 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5901_3.13,-74.5060605,39.34009017,12 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5901_3.14,-74.37993653,39.41561099,10 COTTAGE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5901_3.15,-74.48739181,39.33522016,8 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES3B,3001 -0108_5901_3.16,-74.49708005,39.33479817,6 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5901_3.17,-74.5042085,39.34067,4 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_5901_3.18,-74.49676142,39.33552934,2 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5907_3,-74.5480615,39.403704,7221 FERNWOOD AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5910_1,-74.876425,39.59017234,7229 FERNWOOD AVENUE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_5910_2,-74.66450547,39.40698904,7225 FERNWOOD AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5913_1,-74.48136132,39.34917755,7233 FERNWOOD AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5914_1,-74.6444305,39.5269565,2152 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5916_1,-74.49801588,39.49932048,7237 FERNWOOD AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5916_4,-74.38454546,39.39457466,7241 FERNWOOD AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5917_4,-74.57469824,39.3375746,2156 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5918_3,-74.359116,39.413381,7245 FERNWOOD AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5918_4,-74.6358966,39.53098517,7249 FERNWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5919_1,-74.488417,39.434384,2160 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1950,1,RES3A,3001 -0108_5919_2,-74.48640184,39.44191953,2164 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5919_3,-74.54947777,39.37652581,100 LEAP STREET,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_5919_4,-74.57355677,39.34341306,104 LEAP STREET,EGG HARBOR TWP,16,1970,1,RES1,3002 -0108_5921_2,-74.5549695,39.3769935,125 BAYBERRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5921_5,-74.56769068,39.35180774,2 PINEDALE AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5921_7,-74.54761672,39.52684369,6 PINEDALE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5922_2,-74.6507079,39.53299662,12 PINEDALE AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5922_3,-74.40817,39.381068,14 PINEDALE AVENUE,EGG HARBOR TWP,16,1968,1,GOV1,3004 -0108_5922_4,-74.9477605,39.5327225,16 PINEDALE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5922_5,-74.5315325,39.40380438,18 PINEDALE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5923_1,-74.3624875,39.411927,20 PINEDALE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5923_2,-74.511531,39.4043775,22 PINEDALE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5923_3,-74.5283305,39.3827425,24 PINEDALE AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5923_6,-74.45915206,39.49494838,28 PINEDALE AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_5924_1,-74.37341844,39.41091222,129 BAYBERRY AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5924_11,-74.79794334,39.63349052,7217 RIDGE AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5924_12,-74.49757662,39.51908688,7213 RIDGE AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5924_13,-74.3719,39.4112735,7211 RIDGE AVENUE,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_5924_14,-74.51439066,39.39923959,7209 RIDGE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5924_15,-74.80843887,39.46768976,7207 RIDGE AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5924_16,-74.5644875,39.4705505,7205 RIDGE AVENUE,EGG HARBOR TWP,16,1977,1,RES3B,3002 -0108_5924_17,-74.5853355,39.3432165,7201 RIDGE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5924_2,-74.650989,39.53056733,6 PUMPKIN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5924_3,-74.6391235,39.5234535,8 PUMPKIN LANE,EGG HARBOR TWP,16,1972,1,RES3A,3001 -0108_5924_7,-74.554768,39.4264335,206 LEAP STREET,EGG HARBOR TWP,52,1970,1,RES3A,3001 -0108_5924_8,-74.79094304,39.66639483,208 LEAP STREET,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5924_9,-74.5631065,39.409029,210 LEAP STREET,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5926_1,-74.65088361,39.53230562,201 LEAP STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5926_10,-74.43403562,39.36943476,39 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES3B,3001 -0108_5926_11,-74.51604204,39.46777516,37 DIAMOND DRIVE,EGG HARBOR TWP,16,1995,1,RES3B,3001 -0108_5926_12,-74.54592705,39.38787584,35 DIAMOND DRIVE,EGG HARBOR TWP,16,1992,1,RES3A,3001 -0108_5926_13,-74.497312,39.334253,33 DIAMOND DRIVE,EGG HARBOR TWP,16,1996,1,RES3A,3001 -0108_5926_14,-74.60448,39.3207545,31 DIAMOND DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5926_15,-74.64804944,39.35747527,29 DIAMOND DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3002 -0108_5926_16,-74.80627569,39.52351154,27 DIAMOND DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5926_17,-74.530211,39.30894367,25 DIAMOND DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5926_18,-74.9385412,39.48272229,23 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5926_19,-74.4371235,39.3649765,21 DIAMOND DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5926_2,-74.62033013,39.41959738,205 LEAP STREET,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_5926_20,-74.46874629,39.48923932,19 DIAMOND DRIVE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_5926_21,-74.6080566,39.38988321,17 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5926_22,-74.57254081,39.3350701,15 DIAMOND DRIVE,EGG HARBOR TWP,16,1994,1,RES3B,3001 -0108_5926_23,-74.59069077,39.48444712,13 DIAMOND DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_5926_24,-74.855344,39.5607835,11 DIAMOND DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3002 -0108_5926_25,-74.518608,39.394289,9 DIAMOND DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5926_26,-74.61838219,39.37009889,7 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5926_27,-74.88565094,39.59582724,5 DIAMOND DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_5926_28,-74.473638,39.4922375,3 DIAMOND DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5926_29,-74.58189617,39.3425555,1 DIAMOND DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5926_3.01,-74.3696493,39.41548261,4 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_5926_3.02,-74.59761765,39.30962525,2 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5926_3.03,-74.39044433,39.39025,207 LEAP STREET,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_5926_3.04,-74.48003319,39.34754736,209 LEAP STREET,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_5926_31.01,-74.50541434,39.32815599,1 MORNING GLORY COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5926_31.02,-74.62985123,39.60618491,3 MORNING GLORY COURT,EGG HARBOR TWP,16,2012,1,RES3A,3001 -0108_5926_31.03,-74.58502699,39.36395817,5 MORNING GLORY COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5926_31.04,-74.5997648,39.36196207,7 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.05,-74.63618,39.3876475,9 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.06,-74.51007867,39.40114452,11 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.07,-74.49467067,39.45359776,13 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.08,-74.74482,39.42299,15 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.09,-74.652238,39.347194,17 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.10,-74.43929704,39.3599014,19 MORNING GLORY COURT,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5926_31.11,-74.76028756,39.4451502,21 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.12,-74.3793935,39.395084,23 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.13,-74.60628304,39.59390523,25 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.14,-74.53871184,39.37485072,27 MORNING GLORY COURT,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_5926_31.15,-74.8955265,39.4823,29 MORNING GLORY COURT,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5926_31.16,-74.5471335,39.3720495,31 MORNING GLORY COURT,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5926_31.17,-74.49359367,39.4921718,MORNING GLORY COURT/BASIN,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5926_32,-74.57134714,39.49571105,524 ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5926_33,-74.435548,39.371205,522 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5926_34,-74.50474141,39.47898539,520 ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_5926_35,-74.64231079,39.32492538,518 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5926_36,-74.79910634,39.62165596,516 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5926_37,-74.76690415,39.30851544,514 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5926_38,-74.40409406,39.38070934,36 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5926_39,-74.58689312,39.33323474,34 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5926_4,-74.65093468,39.52505707,213 LEAP STREET,EGG HARBOR TWP,16,1935,1,RES1,3002 -0108_5926_40,-74.88720268,39.50303156,32 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5926_41,-74.50453515,39.44945247,30 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5926_42,-74.4804706,39.33838518,28 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5926_43,-74.86953457,39.49295451,22 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_5926_44,-74.49465457,39.43390795,18 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1949,1,RES3A,3001 -0108_5926_45,-74.672629,39.39039,14 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5926_46,-74.58583533,39.32132349,12 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5926_47,-74.50487282,39.40866747,10 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_5926_48,-74.376136,39.417341,6 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5926_5,-74.65151141,39.31839472,215 LEAP STREET,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_5926_6,-74.9554045,39.5379525,215A LEAP STREET,EGG HARBOR TWP,15,1957,1,RES1,3001 -0108_5926_7,-74.63616486,39.38728277,217 LEAP STREET,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_5926_8,-74.62344263,39.52137593,219 LEAP STREET,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_5926_9,-74.5219145,39.3975505,221 LEAP STREET,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_5927_1,-74.55154008,39.37987713,101 LEAP STREET,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5927_10,-74.5560346,39.37119468,121 LEAP STREET,EGG HARBOR TWP,16,1972,1,RES1,3002 -0108_5927_11,-74.8320392,39.53446098,123 LEAP STREET,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5927_12,-74.62497298,39.35633158,125 LEAP STREET,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5927_14,-74.44686813,39.3729938,2208 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5927_15,-74.53853145,39.37971387,108 ALLEN STREET,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_5927_16,-74.60280772,39.38450098,110 ALLEN STREET,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5927_18,-74.69188563,39.63271879,3 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_5927_2,-74.55332354,39.39197012,103 LEAP STREET,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5927_3,-74.7369135,39.449169,105 LEAP STREET,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5927_4,-74.7990335,39.6013545,107 LEAP STREET,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5927_5,-74.626622,39.436898,109 LEAP STREET,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_5927_6,-74.50637379,39.33689345,113 LEAP STREET,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_5927_7,-74.635105,39.5308345,115 LEAP STREET,EGG HARBOR TWP,51,1939,1,RES1,3001 -0108_5927_9,-74.54214418,39.39877457,119 LEAP STREET,EGG HARBOR TWP,53,1961,1,RES1,3001 -0108_5932_1,-74.6372455,39.3874705,2212 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5932_10,-74.49635518,39.43114609,11 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_5932_2,-74.496153,39.4341585,107 ALLEN STREET,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5932_3,-74.69759783,39.56308567,109 ALLEN STREET,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_5932_4,-74.53252735,39.37652181,7 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5932_5,-74.71108966,39.42562684,5 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_5936_1,-74.38432949,39.39292033,2224 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3004 -0108_5936_15,-74.49332462,39.33505116,2244 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5936_17,-74.71017335,39.47374433,2252 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5936_2,-74.48862719,39.49713923,2228 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_5936_21,-74.367884,39.4215605,2254 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5936_28,-74.80534108,39.6390453,2264 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5936_30,-74.65653034,39.41677603,506 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5936_31,-74.96168101,39.5198975,510 ZION ROAD,EGG HARBOR TWP,16,1930,2,RES1,3001 -0108_5936_32,-74.65826753,39.62998767,33 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5936_33,-74.5375135,39.468321,31 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_5936_34,-74.50622817,39.44896349,29 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3004 -0108_5936_36,-74.462364,39.3489355,25 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3004 -0108_5936_38,-74.54028734,39.37412098,21 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_5936_39,-74.506788,39.3276435,19 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5936_4,-74.58358118,39.33021818,15 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1967,1,GOV1,3004 -0108_5936_40,-74.506753,39.3239275,17 NORTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5936_5,-74.57164055,39.41398539,2232 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_5936_6,-74.492689,39.432352,2236 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_5936_7,-74.97233457,39.51699432,2240 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5947_1,-74.49475719,39.47038401,101 ROCKPORT DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5947_10,-74.70317064,39.56806045,119 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5947_17,-74.52906006,39.45161126,19 PINEDALE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5947_18,-74.52308114,39.44171722,23 PINEDALE AVENUE,EGG HARBOR TWP,51,1991,1,RES1,3002 -0108_5947_2,-74.47500802,39.49243166,103 ROCKPORT DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5947_20,-74.4836995,39.434141,27 PINEDALE AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5947_21,-74.37607734,39.39962965,29 PINEDALE AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_5947_22,-74.5014345,39.4506265,118 LEAP STREET,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_5947_23,-74.68216525,39.48756973,114 LEAP STREET,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5947_24,-74.92518373,39.51993137,112 LEAP STREET,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5947_25,-74.605231,39.3759055,110 LEAP STREET,EGG HARBOR TWP,16,1971,1,COM1,3004 -0108_5947_26,-74.66594857,39.45399314,7244 FERNWOOD AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_5947_27,-74.64035685,39.52811955,7242 FERNWOOD AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_5947_28,-74.51638909,39.40087769,7236 FERNWOOD AVENUE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_5947_3,-74.55803532,39.39723784,105 ROCKPORT DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5947_4,-74.36776254,39.40698717,107 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3004 -0108_5947_5,-74.46765111,39.49180018,109 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5947_6,-74.81960285,39.63870703,111 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5947_7,-74.6637095,39.5138065,113 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5947_8,-74.561065,39.412117,115 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5947_9,-74.6446611,39.52979123,117 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_1,-74.81665129,39.53375955,7204 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_5948_10,-74.755556,39.3018785,7224 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5948_11,-74.58770606,39.371041,100 ROCKPORT DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5948_12,-74.596667,39.337446,201 WATERFORD ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5948_13,-74.50285666,39.33017801,203 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_14,-74.885461,39.596481,205 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5948_15,-74.65993642,39.52378265,207 WATERFORD ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5948_16,-74.55508522,39.43604167,209 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_17,-74.49612282,39.42551239,211 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_18,-74.571448,39.37209611,213 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_19,-74.87024082,39.60255346,215 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_2,-74.60102178,39.36889957,7206 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5948_20,-74.558363,39.4145315,217 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_21,-74.47376816,39.48530648,219 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5948_22,-74.51220504,39.43821284,221 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_23,-74.37197631,39.40816592,223 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_24,-74.514182,39.3280125,225 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5948_25,-74.6377525,39.401803,105 BAYBERRY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_5948_26,-74.8045355,39.6397285,7202 FERNWOOD AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_5948_29,-74.50321102,39.33360084,107 BAYBERRY AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_5948_3,-74.5612565,39.3878015,7208 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5948_31,-74.50769156,39.44809034,111 BAYBERRY AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_5948_4,-74.521507,39.41235069,7210 FERNWOOD AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5948_5,-74.78998884,39.63770646,7212 FERNWOOD AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5948_6,-74.57486242,39.39102729,7214 FERNWOOD AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5948_7,-74.4973864,39.42485655,7216 FERNWOOD AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5948_8,-74.44376276,39.37204887,7218 FERNWOOD AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3004 -0108_5948_9,-74.4003735,39.3912335,7220 FERNWOOD AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5949_1,-74.5683305,39.4783495,9 PINEDALE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5949_10,-74.4514927,39.37239032,129 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5949_11,-74.51339717,39.33104498,131 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_5949_12,-74.52360322,39.41477155,133 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5949_13,-74.71119001,39.47169867,135 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,AGR1,3001 -0108_5949_14,-74.61940008,39.55517037,137 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5949_15,-74.830476,39.6453295,102 IROQUOIS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5949_16,-74.555347,39.3712145,100 IROQUOIS AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5949_17,-74.50832625,39.47239316,117 BAYBERRY AVENUE,EGG HARBOR TWP,16,1967,1,COM1,3004 -0108_5949_18,-74.63091014,39.35044909,119 BAYBERRY AVENUE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_5949_19,-74.65502335,39.62904944,121 BAYBERRY AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_5949_2,-74.60078161,39.49977612,11 PINEDALE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5949_20,-74.72421,39.459652,3 PINEDALE AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_5949_3,-74.544314,39.391369,13 PINEDALE AVENUE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5949_4,-74.57428264,39.42957155,15 PINEDALE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5949_5,-74.48423126,39.43023146,300 YARMOUTH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5949_6,-74.48243199,39.34085363,121 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_5949_7,-74.517929,39.402033,123 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5949_8,-74.82765292,39.60654856,125 ROCKPORT DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_5949_9,-74.50958134,39.32705799,127 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_1,-74.4908304,39.45076673,305 YARMOUTH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_10,-74.5386835,39.3728035,204 WATERFORD ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_2,-74.585075,39.324359,303 YARMOUTH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_3,-74.9732605,39.508526,301 YARMOUTH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_4,-74.51002187,39.43810009,108 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_5,-74.59654877,39.43599314,106 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_6,-74.551343,39.3698225,104 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_7,-74.79150069,39.64414912,102 ROCKPORT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5950_8,-74.49458383,39.33816452,200 WATERFORD ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5950_9,-74.5150035,39.3278605,202 WATERFORD ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5951_1,-74.56153018,39.41344605,302 YARMOUTH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5951_2,-74.82949884,39.62389202,304 YARMOUTH ROAD,EGG HARBOR TWP,16,2006,1,COM1,3004 -0108_5951_3,-74.55221331,39.37440851,306 YARMOUTH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5951_4,-74.77886836,39.62315883,308 YARMOUTH ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_5953_11,-74.58373472,39.41462768,29 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5953_12,-74.45568312,39.37914293,27 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5953_13,-74.524269,39.385003,25 COTTAGE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5953_14,-74.44579881,39.38263475,23 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5953_15,-74.4513487,39.37191003,21 COTTAGE ROAD,EGG HARBOR TWP,16,2008,1,IND1,3002 -0108_5953_16,-74.50050881,39.38116447,19 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_5953_17,-74.52189243,39.38406369,17 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5953_18,-74.50329531,39.38434725,15 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5953_19,-74.5282645,39.383164,13 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5953_20,-74.51879963,39.39103849,11 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5953_21,-74.50818784,39.38534783,9 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5953_22,-74.519572,39.388025,7 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5953_23,-74.51702557,39.38648656,5 COTTAGE ROAD,EGG HARBOR TWP,16,2009,1,GOV1,3004 -0108_5953_24,-74.5268005,39.382591,3 COTTAGE ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5953_25,-74.44690232,39.37220367,1 COTTAGE ROAD,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_5954_15.11,-74.42341581,39.37217217,19 BAYBERRY AVENUE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_5954_15.12,-74.56739985,39.47720602,17 BAYBERRY AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5954_15.13,-74.57464343,39.3483188,15 BAYBERRY AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_5954_15.14,-74.57275989,39.35604486,13 BAYBERRY AVENUE,EGG HARBOR TWP,16,2010,1,REL1,3004 -0108_5954_15.15,-74.488285,39.5248895,11 BAYBERRY AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5954_15.16,-74.73366525,39.44978389,9 BAYBERRY AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5954_15.17,-74.7990985,39.64439783,7 BAYBERRY AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_5954_15.18,-74.624971,39.3934325,5 BAYBERRY AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_5954_15.19,-74.6866105,39.4988185,3 BAYBERRY AVENUE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5954_15.20,-74.81010774,39.6281796,1 BAYBERRY AVENUE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_5954_17,-74.7911765,39.6154995,2124 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5954_18,-74.6392405,39.383687,2126 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_5954_19,-74.57846686,39.42997527,2130 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1982,1,GOV1,3004 -0108_5954_20,-74.482266,39.3394665,2132 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5954_21,-74.75544667,39.44517167,2134 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5954_22,-74.6912235,39.449137,2136 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5954_23,-74.628239,39.3927445,2138 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_5954_24,-74.46971599,39.4436469,2140 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5954_25,-74.68363047,39.49768266,2142 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_5954_26,-74.6500395,39.5306725,2144 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_5954_27,-74.51327767,39.326041,2148 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_5955_10,-74.511482,39.3853445,31 COTTAGE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_5955_9,-74.94236318,39.52609743,7209 FERNWOOD AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6001_1,-74.54237975,39.56557066,6074 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6001_1.01,-74.53451969,39.40731891,50 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_6001_1.02,-74.58398555,39.37668481,52 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6001_1.03,-74.48929629,39.52168356,54 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.04,-74.50141989,39.33125484,56 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.05,-74.50243633,39.32767551,58 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6001_1.06,-74.6096607,39.32730087,60 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6001_1.07,-74.47318324,39.4842329,62 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.08,-74.46100438,39.34877596,64 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6001_1.09,-74.500241,39.3310575,66 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.10,-74.45209077,39.35387984,68 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.11,-74.554361,39.377695,70 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6001_1.12,-74.6426935,39.5327115,72 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_6001_1.13,-74.4964455,39.4510355,74 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_6001_1.14,-74.59123021,39.43463168,76 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.15,-74.68033781,39.4952376,202 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.16,-74.51073733,39.32981301,204 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.17,-74.520856,39.3874605,206 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.18,-74.51693616,39.41292113,208 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6001_1.19,-74.51526177,39.32966934,210 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.20,-74.5403571,39.37282772,300 ARLINGTON COURT,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.21,-74.58481724,39.32556843,302 ARLINGTON COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.22,-74.75430115,39.45211143,304 ARLINGTON COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.23,-74.8091865,39.636898,307 ARLINGTON COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.24,-74.58703983,39.32382194,305 ARLINGTON COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.25,-74.9207315,39.562591,303 ARLINGTON COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.26,-74.69578131,39.56321393,214 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2005,1,COM4,3004 -0108_6001_1.27,-74.71042215,39.47356842,216 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.28,-74.58053828,39.33900951,218 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6001_1.29,-74.5078913,39.40463041,220 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.30,-74.510604,39.440434,222 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.31,-74.656196,39.5505655,224 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.32,-74.5355135,39.3973885,226 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6001_1.33,-74.59094155,39.33185433,228 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6001_1.34,-74.49527043,39.42555108,402 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.35,-74.70056264,39.50934621,404 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6001_1.36,-74.56625846,39.37253545,406 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.37,-74.780168,39.623511,408 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.38,-74.57496831,39.42124903,410 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.39,-74.9719995,39.515369,412 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.40,-74.75437421,39.44828921,414 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.41,-74.58317099,39.43187682,417 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.42,-74.75287068,39.44706119,415 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.43,-74.592222,39.3229875,413 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.44,-74.6308727,39.41409699,411 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.45,-74.47203065,39.34451152,409 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.46,-74.366439,39.4134465,407 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,COM8,3004 -0108_6001_1.47,-74.61172286,39.37484674,405 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.48,-74.80761707,39.62991534,403 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.49,-74.5900045,39.410605,401 ROCKBRIDGE COURT,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.50,-74.55769889,39.42115121,230 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6001_1.51,-74.54622308,39.38892685,232 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.52,-74.58733662,39.35018354,234 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6001_1.54,-74.46087052,39.49598358,238 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_6001_1.55,-74.830134,39.6372965,240 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.56,-74.52487194,39.38428461,242 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.57,-74.66994956,39.38031804,94 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6001_1.58,-74.85545163,39.48491651,96 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_6001_1.59,-74.74754532,39.59307118,98 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6001_1.60,-74.60791634,39.3142335,100 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6001_1.61,-74.5316985,39.401681,102 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6001_1.62,-74.3883235,39.3916005,104 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6001_1.63,-74.54010232,39.41281802,106 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6001_1.64,-74.496829,39.4702545,108 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6001_1.65,-74.48953624,39.42885061,110 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6001_1.66,-74.555391,39.3634825,112 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_6001_1.67,-74.4584775,39.485874,114 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6001_1.68,-74.55857528,39.36548098,116 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6001_1.69,-74.8535425,39.369555,118 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6001_1.70,-74.50536798,39.33424247,120 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.71,-74.520511,39.3976625,122 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.72,-74.63175913,39.36315545,124 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.73,-74.47264316,39.48104494,126 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.74,-74.53304,39.3993195,128 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3004 -0108_6001_1.75,-74.44670797,39.48418918,130 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.76,-74.6595815,39.5511645,132 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6001_1.77,-74.5851395,39.486926,134 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6001_1.78,-74.53738256,39.46648494,136 MARSHALL DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_6001_1.79,-74.82040725,39.44384047,386 ZION ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6001_1.82,-74.7131695,39.635336,384 ZION ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6001_2.01,-74.46759238,39.35689515,5 SWIFT AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6001_35,-74.77594976,39.63771654,2075 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6001_38,-74.57779784,39.33335853,2139 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_6001_40,-74.44760506,39.3731242,2147 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1945,1,GOV1,3004 -0108_6002_1,-74.61922776,39.38003442,5 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6002_10,-74.48968572,39.42190509,108 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6002_11,-74.6049305,39.330987,106 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6002_12,-74.65069717,39.52341101,104 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6002_13,-74.79082312,39.64592887,102 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6002_2,-74.717988,39.3896995,7 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6002_3,-74.8911235,39.462741,9 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6002_4,-74.36892845,39.41497032,11 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6002_5,-74.6564275,39.395904,13 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6002_6,-74.63616598,39.36204666,15 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6002_7,-74.82532678,39.53549989,17 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6002_8,-74.51877812,39.4713071,112 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6002_9,-74.57011361,39.33916188,110 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6003_41,-74.41678,39.3653355,2 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6003_42,-74.759436,39.43115,4 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6003_43,-74.586142,39.359706,6 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6003_44,-74.5027625,39.4165945,8 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6003_45,-74.56988924,39.34210883,10 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_6003_46,-74.59436028,39.35127919,12 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6003_47,-74.37257737,39.40126283,14 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6003_48,-74.53387916,39.48999115,16 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6003_49,-74.41736079,39.36791776,18 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6003_50,-74.62739324,39.41385571,20 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6003_51,-74.75689726,39.43372803,22 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6003_52,-74.6131375,39.324165,24 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6003_53,-74.5087915,39.4802325,26 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6003_54,-74.49531741,39.33828934,28 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6003_55,-74.85358646,39.4456148,30 MARSHALL DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6003_56,-74.56410496,39.36727597,32 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6003_57,-74.64673768,39.53150784,34 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6003_58,-74.6291585,39.438321,36 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6003_59,-74.4691587,39.48956467,38 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6003_60,-74.57153402,39.36904233,40 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6003_61,-74.3596071,39.41117459,42 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6003_62,-74.41817339,39.36736774,44 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6003_63,-74.78373014,39.61132116,46 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6003_64,-74.87659372,39.59306869,48 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6004_1,-74.51943502,39.45022233,86 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_10,-74.3685755,39.412048,211 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6004_11,-74.840379,39.634941,213 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6004_12,-74.7672385,39.333167,215 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6004_13,-74.51924727,39.31984962,217 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_6004_14,-74.7754465,39.666328,219 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6004_15,-74.66738855,39.40563174,221 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6004_16,-74.69569102,39.56159733,223 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6004_17,-74.5187965,39.3181755,225 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_18,-74.80287337,39.63066156,227 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_19,-74.57581203,39.53031237,229 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6004_2,-74.3934465,39.3884645,84 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6004_20,-74.64460514,39.37043194,231 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_21,-74.841007,39.630448,92 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_22,-74.52496707,39.38445431,90 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_23,-74.46161266,39.3480245,88 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6004_3,-74.94644338,39.5378092,82 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_4,-74.80891014,39.63242965,80 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_5,-74.606703,39.3223325,78 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_6,-74.86240658,39.48694149,203 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_7,-74.46281967,39.34634999,205 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_8,-74.48498966,39.34704696,207 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6004_9,-74.64103585,39.37611348,209 GRANVILLE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6005_15.27,-74.60572013,39.36404986,506 ISLAND LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6005_15.28,-74.78957446,39.63282405,504 ISLAND LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6005_15.29,-74.83782749,39.38842666,502 ISLAND LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6005_15.30,-74.64929662,39.40508318,500 ISLAND LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6005_15.31,-74.93786833,39.5207185,55 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6005_15.32,-74.65541886,39.52490555,57 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6005_15.33,-74.93318023,39.49572641,59 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6005_15.34,-74.827354,39.411291,61 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6005_15.35,-74.512606,39.441824,63 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6005_15.36,-74.84826809,39.37662711,65 MARSHALL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6005_15.37,-74.493417,39.330632,67 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6005_15.38,-74.57093215,39.33967493,69 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6005_15.39,-74.84234834,39.53893533,71 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6005_15.40,-74.55109323,39.47439705,73 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6005_15.41,-74.36256357,39.41533079,75 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_6005_15.42,-74.59916022,39.31626829,77 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6005_15.43,-74.65206795,39.35417129,79 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6005_15.44,-74.77578257,39.62524567,81 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6005_15.45,-74.49158,39.4695155,83 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6005_15.46,-74.54847907,39.37572912,85 MARSHALL DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_6006_15.01,-74.56960492,39.42732866,1 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.02,-74.504068,39.337133,3 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.03,-74.61121764,39.32250785,101 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6006_15.04,-74.48433401,39.43145882,103 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6006_15.05,-74.56213903,39.37021416,105 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6006_15.06,-74.49184785,39.43369941,107 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6006_15.07,-74.54011117,39.51377151,109 SAVANNAH CIRCLE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6006_15.08,-74.80394353,39.63035545,21 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,COM3,3004 -0108_6006_15.09,-74.4826315,39.3456,23 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6006_15.10,-74.5358465,39.457675,25 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6006_15.11,-74.72568515,39.45698678,27 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.12,-74.49623627,39.47072654,29 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6006_15.13,-74.58981051,39.32129165,31 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.14,-74.52293,39.3970115,33 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6006_15.15,-74.45507082,39.50043571,35 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6006_15.16,-74.39588073,39.38636356,37 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6006_15.17,-74.51529435,39.40873638,39 MARSHALL DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6006_15.18,-74.6073915,39.3304465,41 MARSHALL DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6006_15.19,-74.48480893,39.47876533,43 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.20,-74.90942444,39.49322704,45 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.21,-74.39528108,39.38788347,47 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.22,-74.58941801,39.33584115,49 MARSHALL DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.23,-74.85143174,39.48754802,501 ISLAND LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6006_15.24,-74.6794175,39.3856025,503 ISLAND LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6006_15.25,-74.56809927,39.34557515,505 ISLAND LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6006_15.26,-74.93655839,39.52324832,507 ISLAND LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6006_16,-74.62327433,39.38296399,2 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_17,-74.5860105,39.4161485,4 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_18,-74.53784241,39.46038622,6 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_19,-74.50031827,39.41833473,8 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_20,-74.48111229,39.51854659,10 KENDALL DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6006_21,-74.6918055,39.4891265,12 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_22,-74.810099,39.6394325,14 KENDALL DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6006_23,-74.47993983,39.34225785,16 KENDALL DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6006_24,-74.80680841,39.64422904,18 KENDALL DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6006_25,-74.54048,39.3913465,7002 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6006_26,-74.8287705,39.648942,7000 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6006_27,-74.5707285,39.369571,1 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_28,-74.504392,39.4116955,3 KENDALL DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6006_29,-74.45693166,39.349975,5 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_30,-74.6213885,39.367708,7 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_31,-74.51460184,39.44125752,9 KENDALL DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6006_32,-74.58986869,39.43003321,11 KENDALL DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_601_2,-74.640667,39.5304165,403 WESTCOAT ROAD,EGG HARBOR TWP,,0,1,RES1,3004 -0108_602_7,-74.48870387,39.33294264,439 WESTCOAT ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_605_10,-74.778756,39.6402045,2501 FIRE ROAD,EGG HARBOR TWP,,1985,1,GOV1,3004 -0108_605_11,-74.448984,39.356409,2505 FIRE ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_605_13,-74.4486665,39.35595917,2515 FIRE ROAD,EGG HARBOR TWP,15,1948,1,RES1,3001 -0108_605_15,-74.79410774,39.64512668,2521 FIRE ROAD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_605_6,-74.53614914,39.37815816,127 SUMMIT AVENUE,EGG HARBOR TWP,,1940,1,RES1,3001 -0108_605_7,-74.535712,39.383075,133 SUMMIT AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_605_9,-74.36474494,39.40589519,141 SUMMIT AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6101_10,-74.5091135,39.5319735,2235 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,COM1,3004 -0108_6101_11,-74.38830453,39.39427434,2245 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_6101_12.01,-74.491247,39.3362885,2251 OCEAN HTS AVENUE,EGG HARBOR TWP,,2006,1,RES1,3001 -0108_6101_12.02,-74.7219525,39.4569865,2247 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6101_13.01,-74.49268989,39.33639567,470 ZION ROAD,EGG HARBOR TWP,15,1960,1,RES1,3001 -0108_6101_13.02,-74.600193,39.430666,468 ZION ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6101_14,-74.7360125,39.433969,466 ZION ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6101_15.01,-74.75780197,39.63522282,464 ZION ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6101_15.02,-74.5127285,39.3233145,462 ZION ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6101_15.03,-74.50862967,39.323716,460 ZION ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6101_16.01,-74.5641435,39.4150535,458 ZION ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_6101_16.02,-74.77570905,39.6247322,2 HARTFORD DRIVE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_6101_16.03,-74.65079283,39.52408548,4 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.04,-74.36759772,39.40820733,6 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.05,-74.81323927,39.36518303,8 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.06,-74.645576,39.535175,10 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.07,-74.70975879,39.43156457,12 HARTFORD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6101_16.08,-74.3623095,39.417051,14 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.09,-74.56974301,39.42354884,16 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.10,-74.55635563,39.37505891,18 HARTFORD DRIVE,EGG HARBOR TWP,16,2007,1,EDU1,3004 -0108_6101_16.11,-74.54437553,39.37719134,20 HARTFORD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6101_16.12,-74.54818936,39.37767355,22 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.13,-74.53686246,39.37822967,24 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.14,-74.53172009,39.38001664,26 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.15,-74.49298765,39.45300877,28 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.16,-74.53241097,39.37739402,30 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.17,-74.5428246,39.38196672,32 HARTFORD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6101_16.18,-74.53214828,39.37974908,34 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,GOV1,3004 -0108_6101_16.19,-74.50352562,39.43738739,36 HARTFORD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6101_16.20,-74.55236803,39.38193318,38 HARTFORD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6101_16.21,-74.5447845,39.3716705,40 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6101_16.22,-74.467467,39.494338,42 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6101_16.23,-74.8813935,39.591187,44 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6101_16.24,-74.44587657,39.3738003,46 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6101_16.25,-74.50432814,39.40762374,48 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.26,-74.58549587,39.32447786,50 HARTFORD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6101_16.27,-74.5204265,39.3888575,52 HARTFORD DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6101_16.28,-74.7979845,39.365585,54 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6101_16.29,-74.474307,39.3405005,103 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6101_16.31,-74.83375145,39.53548129,101 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6101_21,-74.627296,39.4203635,428 ZION ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6101_22,-74.480073,39.348654,34 DORSET AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6101_23,-74.6092715,39.3242245,32 DORSET AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6101_24,-74.6702725,39.350179,30 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_25,-74.59435568,39.54428633,28 DORSET AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6101_26,-74.63807986,39.53231214,26 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_27,-74.39206815,39.39204355,24 DORSET AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6101_28,-74.51623755,39.40082582,22 DORSET AVENUE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6101_29,-74.8252461,39.40161111,20 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_3,-74.55900023,39.37043031,1 SWIFT AVENUE (LIBRARY),EGG HARBOR TWP,,0,1,RES1,3001 -0108_6101_30,-74.6090801,39.32468416,18 DORSET AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6101_31,-74.50513439,39.33173725,16 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_32,-74.642827,39.5233275,14 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_33,-74.81250665,39.62940565,12 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_34,-74.51024846,39.5042973,10 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_35,-74.5107935,39.444019,8 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_36,-74.714135,39.6396645,6 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_37,-74.58300004,39.4220336,4 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_38,-74.573952,39.371792,2 DORSET AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6101_39,-74.62089736,39.38215961,320 SPRAY AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6101_40,-74.5184097,39.44490855,318 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_41,-74.70525766,39.57183703,316 SPRAY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6101_42,-74.3639815,39.407346,314 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_43,-74.726498,39.4564755,312 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_44,-74.5337875,39.3843495,310 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_45,-74.60757287,39.36397123,308 SPRAY AVENUE,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_6101_46,-74.49076328,39.49823158,306 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_47,-74.83221145,39.48323067,304 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_48,-74.539238,39.459437,302 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_49,-74.60579009,39.50700354,300 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6101_50,-74.48745598,39.44395605,216 SPRAY AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6101_51,-74.52315906,39.31340916,214 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_52,-74.50436082,39.48057306,212 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_53,-74.6801325,39.387562,210 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_54,-74.9165921,39.48203576,208 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_55,-74.64591331,39.55009429,206 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_56,-74.54946614,39.37964907,204 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_57,-74.6692905,39.543174,202 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_58,-74.5802105,39.4447515,200 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_59,-74.57926028,39.41821466,114 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_6,-74.4297685,39.4923075,2155 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_6101_60,-74.55241409,39.54226493,112 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_61,-74.58825394,39.43045987,110 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_62,-74.81709443,39.64227466,108 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_63,-74.47567834,39.48028097,106 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_64,-74.48762034,39.3503302,104 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_65,-74.50029839,39.45403673,102 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_66,-74.502672,39.3294645,100 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_67,-74.83011519,39.60091483,1 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_68,-74.437789,39.369804,3 EVERGREEN AVENUE,EGG HARBOR TWP,16,1974,1,COM1,3004 -0108_6101_69,-74.45271261,39.4873072,5 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_70,-74.4906308,39.47003123,7 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_71,-74.8029335,39.522943,9 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_72,-74.56521282,39.55647576,11 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_73,-74.44411885,39.48570482,13 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_74,-74.5834855,39.3436995,15 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_75,-74.7818764,39.63683382,17 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_76,-74.876693,39.572208,19 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_77,-74.53666317,39.45466248,21 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_78,-74.71231017,39.47455351,23 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_79,-74.756478,39.452756,25 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6101_80,-74.46133926,39.51133066,27 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_81,-74.54810694,39.54751866,29 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_82,-74.59400373,39.36196197,31 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_83,-74.508669,39.3260815,33 EVERGREEN AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6101_84,-74.64338308,39.43508433,35 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_85,-74.422553,39.365421,37 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_86,-74.4888515,39.351873,39 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6101_9,-74.76035342,39.4484778,2201 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_6102_1,-74.5097335,39.456457,2 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_10,-74.49394267,39.3312705,110 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_11,-74.55573072,39.46660756,108 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_12,-74.57527444,39.42683874,106 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_13,-74.5270245,39.3812655,104 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_14,-74.50336624,39.33420204,102 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_15,-74.3863545,39.3919485,100 DREXEL AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6102_16,-74.63991,39.450398,6 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_17,-74.63746944,39.52955666,4 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_2,-74.60598627,39.39329003,103 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_3,-74.53479427,39.49043395,105 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_4,-74.6463905,39.4310855,107 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_5,-74.4410805,39.370736,109 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_6,-74.59079603,39.43206302,111 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_7,-74.6343195,39.4646675,113 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_8,-74.54787666,39.37663704,1 WILLOW AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6102_9,-74.51793359,39.39076832,112 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_1,-74.488605,39.439153,12 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_10,-74.3767236,39.41626572,104 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_11,-74.51759298,39.5370779,106 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_12,-74.54472479,39.45956104,108 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_13,-74.61640593,39.42983893,110 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_14,-74.38920451,39.39293534,112 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_2,-74.801738,39.632551,103 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_3,-74.489669,39.351106,105 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_4,-74.63421714,39.36505988,107 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_5,-74.65203511,39.52621164,109 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_6,-74.823443,39.410666,111 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_7,-74.7344585,39.4612735,113 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_8,-74.71608997,39.57962434,14 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6103_9,-74.842953,39.532728,102 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_1,-74.53656215,39.38000446,18 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_10,-74.78202647,39.63208036,104 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_11,-74.79628332,39.61978003,106 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_12,-74.51901993,39.38727853,108 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3004 -0108_6104_13,-74.86530496,39.4930106,110 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_14,-74.50850641,39.34021334,112 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3004 -0108_6104_2,-74.9412055,39.5227815,103 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_3,-74.50968189,39.46465959,105 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_4,-74.79625027,39.6106398,107 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_5,-74.44182513,39.35913003,109 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_6,-74.50558448,39.33268644,111 FOLSOM AVENUE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_6104_7,-74.59183572,39.53846723,113 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_8,-74.45982566,39.34809901,20 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6104_9,-74.60221,39.3707845,102 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_1,-74.392679,39.391499,24 EVERGREEN AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6105_10,-74.8824275,39.44347,104 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_11,-74.51166825,39.33762127,106 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES2,3005 -0108_6105_12,-74.56659343,39.36457667,108 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_13,-74.600853,39.3731425,110 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_14,-74.5797025,39.417819,112 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_2,-74.5562015,39.3588015,103 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_3,-74.55671671,39.46931661,105 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_4,-74.3818855,39.399162,107 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_5,-74.77140663,39.49247145,109 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_6,-74.38394151,39.39911993,111 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_7,-74.392805,39.391554,113 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6105_8,-74.50706083,39.33752554,26 EVERGREEN AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_6105_9,-74.37949968,39.39858628,102 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_1,-74.50541326,39.44898719,101 NEWARK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6106_1.01,-74.63919592,39.53041237,99 NEWARK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6106_10,-74.5237755,39.314948,104 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_11,-74.5164795,39.3247955,106 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_12,-74.551818,39.3612755,108 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_13,-74.55034,39.36558666,110 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_14,-74.48182798,39.34158418,112 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_15,-74.62423901,39.513224,114 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_2,-74.6161595,39.5092865,103 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_3,-74.59565814,39.35128521,105 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_4,-74.55158129,39.38169897,107 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_5,-74.61071172,39.59600764,109 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_6,-74.486393,39.47655,111 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_7,-74.51025833,39.32932251,113 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_8,-74.5395567,39.47096266,100 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6106_9,-74.48554,39.5261825,102 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6107_1,-74.531697,39.4719365,101 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6107_2,-74.6741241,39.3836736,103 VERMONT AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_6107_3,-74.60153405,39.31264982,105 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6107_4,-74.53928889,39.46133623,107 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6107_5,-74.683168,39.461266,109 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6107_6,-74.55856702,39.41480517,111 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6107_7,-74.7757835,39.6188145,113 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6107_8,-74.7591435,39.432944,400 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6108_1,-74.8490185,39.4297385,402 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6108_2,-74.653631,39.3682005,404 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6108_3,-74.55094231,39.37258244,205 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6108_4,-74.6243885,39.6063065,408 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6108_5,-74.391344,39.3945365,209 VERMONT AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6108_6,-74.481969,39.455295,412 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6108_7,-74.48689298,39.47927744,213 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6108_8,-74.6162457,39.51884839,416 ZION ROAD,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6109_1,-74.4918065,39.521678,201 NEWARK AVENUE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_6109_10,-74.635868,39.5211675,202 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_11,-74.41032609,39.38173678,204 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,COM7,3004 -0108_6109_12,-74.56976594,39.41145234,206 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_13,-74.600085,39.3696735,208 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_14,-74.48789514,39.43306114,210 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_15,-74.60179019,39.40934753,212 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_16,-74.37234013,39.40297865,214 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_2,-74.60523079,39.39269186,203 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_3,-74.88680301,39.56290283,205 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_4,-74.78777185,39.64129882,207 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_5,-74.56821,39.4133385,209 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_6,-74.49639847,39.33281403,211 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_7,-74.609707,39.592974,213 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6109_8,-74.68953139,39.48014843,215 NEWARK AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_6109_9,-74.57001029,39.34172483,200 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_1,-74.8796635,39.591497,201 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_10,-74.62949992,39.50582092,202 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3004 -0108_6110_11,-74.75684935,39.44605259,204 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_12,-74.52472572,39.31272569,206 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_13,-74.3652783,39.42133402,208 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_14,-74.797991,39.618661,210 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_15,-74.51648781,39.45464132,212 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_16,-74.438593,39.367928,214 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_2,-74.64311853,39.32480361,203 OHIO AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_6110_3,-74.389958,39.391382,205 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_4,-74.5032915,39.4160075,207 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_5,-74.78934865,39.63358267,209 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_6,-74.71536636,39.46451582,211 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_7,-74.6498,39.6262615,213 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6110_8,-74.63501839,39.3417958,215 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3004 -0108_6110_9,-74.8266635,39.6398345,200 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_1,-74.61438199,39.31873633,201 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_10,-74.80314939,39.65738364,202 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_11,-74.49136685,39.44431889,204 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_12,-74.78209909,39.66557446,206 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_13,-74.62166258,39.55196894,208 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_14,-74.5302403,39.52715973,210 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,COM10,3004 -0108_6111_15,-74.50065705,39.41122199,212 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_16,-74.64283372,39.42655595,214 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,COM4,3004 -0108_6111_2,-74.45865591,39.35216289,203 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_3,-74.5854615,39.525957,205 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_4,-74.4623205,39.346886,207 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_5,-74.72134585,39.57178753,209 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_6,-74.532641,39.4910275,211 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_7,-74.636929,39.3849525,213 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_8,-74.9278475,39.5089315,215 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6111_9,-74.53694516,39.38536253,200 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_1,-74.62471624,39.35956042,201 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_10,-74.596874,39.3593945,202 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_11,-74.50519192,39.33004563,204 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_12,-74.64417848,39.53470084,206 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_13,-74.57430373,39.35303804,208 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_14,-74.59034967,39.31780452,210 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_15,-74.50684107,39.44937167,212 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6112_16,-74.50904965,39.32943653,214 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_2,-74.5682168,39.51233168,203 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_3,-74.95894445,39.51325484,205 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_4,-74.6054155,39.3441595,207 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_5,-74.59924232,39.34215955,209 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_6,-74.43845715,39.36531051,211 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_7,-74.52811923,39.40517495,213 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_8,-74.54650105,39.37344266,215 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6112_9,-74.608508,39.489361,200 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_1,-74.64160764,39.53087766,201 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,COM8,3004 -0108_6113_10,-74.59371597,39.35074951,202 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_11,-74.6311865,39.5978545,204 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_12,-74.8793,39.5437415,206 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_13,-74.7810055,39.6261445,208 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_14,-74.63276845,39.62061885,210 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_15,-74.36387069,39.41751863,212 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_16,-74.57187433,39.4283165,214 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_17,-74.45115923,39.37057579,2 WILLOW AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_2,-74.6760665,39.5609615,203 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6113_3,-74.531895,39.3908485,205 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_4,-74.636788,39.523434,207 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_6113_5,-74.5520205,39.4770185,209 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_6,-74.75644994,39.44518654,211 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_7,-74.746267,39.4469615,213 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_8,-74.6989025,39.440848,215 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6113_9,-74.5596655,39.366698,200 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6114_1,-74.6382525,39.470366,301 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_10,-74.56385667,39.5322615,302 DREXEL AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6114_11,-74.58351655,39.42211431,304 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_12,-74.780578,39.6427395,306 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_13,-74.5701378,39.34262967,308 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_14,-74.55620565,39.36376467,310 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_15,-74.48990519,39.45320559,312 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_16,-74.49218737,39.34114868,314 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_2,-74.5253815,39.395237,303 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_3,-74.68399966,39.49740106,305 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_4,-74.57179893,39.42749908,307 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_5,-74.481867,39.34917,309 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_6,-74.75509566,39.45319661,311 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_7,-74.78545244,39.63581749,313 SPRAY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_8,-74.521291,39.42527,3 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6114_9,-74.6562885,39.534547,300 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_1,-74.646826,39.5498435,301 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_10,-74.802558,39.6390775,300 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_11,-74.87297943,39.59594057,302 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_12,-74.50412129,39.33745635,304 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_13,-74.557895,39.4692005,306 FOLSOM AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6115_14,-74.38822013,39.39065157,308 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_15,-74.678883,39.3775005,310 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_16,-74.3724795,39.41643,312 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_17,-74.4849925,39.4347635,314 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_18,-74.52892303,39.39234544,11 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_2,-74.58997735,39.36547683,303 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_3,-74.5809075,39.53919,305 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_4,-74.55855732,39.39922062,307 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6115_5,-74.68000829,39.46155907,309 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_6,-74.59740977,39.37344806,311 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_7,-74.53832298,39.37326341,313 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_8,-74.61904,39.423825,315 DREXEL AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6115_9,-74.57006418,39.36514402,9 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_1,-74.8075415,39.6400635,301 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_10,-74.40601166,39.37971494,302 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_11,-74.80126552,39.64242483,304 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_12,-74.59868403,39.36830859,306 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_6116_13,-74.74957208,39.65425628,308 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_14,-74.5893432,39.43029845,310 OHIO AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_6116_15,-74.902983,39.4881365,312 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6116_16,-74.73298925,39.54979037,17 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,COM3,3004 -0108_6116_2,-74.4944835,39.3301275,303 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_3,-74.6169846,39.42974434,305 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_4,-74.52488867,39.39548095,307 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_5,-74.52365144,39.31695131,309 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_6,-74.37252854,39.41109703,311 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_7,-74.48181182,39.33613253,313 FOLSOM AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_8,-74.5173885,39.388503,15 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6116_9,-74.57205803,39.37145716,300 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_1,-74.6551625,39.357437,301 OHIO AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6117_10,-74.41642485,39.36817499,304 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_11,-74.60591544,39.36482478,306 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6117_12,-74.36953974,39.41750359,308 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_13,-74.6264365,39.512666,310 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_14,-74.47058957,39.48683119,23 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_2,-74.734685,39.4489645,303 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_3,-74.973667,39.5105825,305 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_4,-74.79318955,39.64094284,307 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_5,-74.51812922,39.41009696,309 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_6,-74.50881539,39.34142504,311 OHIO AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_7,-74.460626,39.4694215,21 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_8,-74.5837745,39.41569033,300 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6117_9,-74.63068247,39.39148132,302 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_1,-74.80725987,39.62898468,301 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_10,-74.50272945,39.41792472,306 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_11,-74.7143535,39.639891,308 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_12,-74.54891729,39.36890292,310 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_2,-74.7217335,39.4461395,303 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_3,-74.78380571,39.64466747,305 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_4,-74.68509411,39.44468768,307 NEWARK AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6118_5,-74.8029325,39.639738,309 NEWARK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_6,-74.941534,39.523259,27 DORSET AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_7,-74.63020849,39.41387954,300 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6118_8,-74.499151,39.3349075,302 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3004 -0108_6118_9,-74.51399171,39.46950552,304 VERMONT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6119_1,-74.53964485,39.37526853,418 ZION ROAD,EGG HARBOR TWP,16,1970,2,RES1,3001 -0108_6119_2,-74.53218915,39.37626805,420 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6119_3,-74.48317459,39.33904918,422 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6119_4,-74.70004732,39.50025514,424 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6119_5,-74.45322135,39.48963275,426 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6121_1,-74.49855687,39.44047542,11 HARTFORD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6121_10,-74.58601939,39.3243108,23 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6121_11,-74.56535067,39.37325449,21 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6121_12,-74.51724756,39.44389384,19 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6121_13,-74.65674165,39.55313904,17 HARTFORD DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6121_14,-74.655266,39.5271895,15 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6121_15,-74.4886565,39.4379165,13 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6121_2,-74.50374533,39.44434,9 HARTFORD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6121_3,-74.490185,39.4372275,7 HARTFORD DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6121_4,-74.56396456,39.37489774,5 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,IND1,3002 -0108_6121_5,-74.50648483,39.3305625,111 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6121_6,-74.50867602,39.40698583,109 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6121_7,-74.44929331,39.37283147,107 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6121_8,-74.47920333,39.3469195,105 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6121_9,-74.7518585,39.5697825,25 HARTFORD DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6122_1,-74.46245791,39.49636771,108 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6122_2,-74.47337651,39.49417834,3 HARTFORD DRIVE,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_6122_3,-74.52234095,39.39481979,1 HARTFORD DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6122_4,-74.7922572,39.63830856,100 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2009,1,RES3A,3004 -0108_6122_5,-74.81127453,39.51885618,102 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6122_6,-74.5543265,39.3921635,104 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6122_7,-74.57458232,39.42139302,106 NEW BRIDGE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6201_1,-74.53470109,39.37870186,535 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6201_11,-74.60291993,39.3825212,57 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6201_12,-74.73347101,39.46162381,61 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_6201_13,-74.939963,39.5467605,65 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_6201_14,-74.671469,39.38908188,67 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6201_15,-74.6024265,39.3268475,71 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6201_16,-74.82681539,39.40485329,75 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6201_17,-74.4858211,39.45326033,77 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_6201_18,-74.82587791,39.63801325,81 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1925,2,RES1,3001 -0108_6201_19,-74.60456823,39.50040037,85 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1968,2,RES1,3001 -0108_6201_20,-74.6058164,39.31577341,89 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_6201_21,-74.3630795,39.4179515,91 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6201_22,-74.71240254,39.47291866,95 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6201_23,-74.48793523,39.43545109,99 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6201_24.01,-74.49866342,39.45983309,201 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6201_24.02,-74.5443095,39.3910215,203 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.03,-74.78694,39.678153,205 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6201_24.04,-74.7576205,39.4485665,207 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6201_24.05,-74.75419082,39.43039778,209 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6201_24.06,-74.55618018,39.37586567,211 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.07,-74.5094332,39.32888787,213 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6201_24.08,-74.5444895,39.38684945,215 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6201_24.09,-74.7618115,39.6391725,217 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.10,-74.45954,39.351759,219 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.11,-74.38144684,39.41528467,221 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.12,-74.79051725,39.63303235,223 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.13,-74.48690041,39.52126223,225 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.14,-74.58184308,39.33016056,227 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.15,-74.51121067,39.39929755,229 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.16,-74.934854,39.496989,231 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.17,-74.35622967,39.413963,233 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6201_24.18,-74.59142267,39.38100342,235 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.19,-74.52301752,39.31991284,1407 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.20,-74.4535155,39.353196,1405 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.21,-74.61835931,39.37647943,1403 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_24.22,-74.4892515,39.421755,1401 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6201_3,-74.46800474,39.49218648,549 ZION ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6201_39,-74.513946,39.398497,2 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_41,-74.91258975,39.51148885,10 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_42,-74.45322048,39.50035619,12 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_43,-74.80755787,39.55171185,14 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_44,-74.8077225,39.6108585,16 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES3A,3001 -0108_6201_45,-74.62124188,39.43768258,18 CLAYTON COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6201_46,-74.50073774,39.33541547,20 CLAYTON COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6201_47,-74.47382174,39.48454232,19 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_48,-74.80791921,39.63170832,17 CLAYTON COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6201_49,-74.59991294,39.41606469,15 CLAYTON COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6201_50,-74.4873905,39.3348005,13 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES3A,3001 -0108_6201_51,-74.6387115,39.401175,11 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES3B,3001 -0108_6201_52,-74.61104956,39.33910332,9 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_53,-74.50337502,39.34165605,7 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_54,-74.48340583,39.339924,5 CLAYTON COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6201_55,-74.588154,39.432243,3 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_56,-74.517783,39.5340205,1 CLAYTON COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6201_58,-74.53798194,39.38797569,3080 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6201_6,-74.5058668,39.32904136,31 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_6201_60,-74.48699624,39.5307084,3074 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6201_61,-74.58805218,39.35426695,3072 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6201_63,-74.51745704,39.40342031,OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_6201_64,-74.4647196,39.49466776,3024 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES3B,3001 -0108_6201_67,-74.51263193,39.48962715,501 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6201_7,-74.648398,39.3761085,41 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6201_75,-74.55391548,39.36938585,525 ZION ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_6201_76,-74.611837,39.3757735,527 ZION ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6201_77,-74.655597,39.5263495,529 ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6201_8,-74.630057,39.4277735,49 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6201_9,-74.61874147,39.373363,53 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1955,1,GOV1,3004 -0108_6202_1,-74.38652192,39.39272634,101 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6202_12,-74.588625,39.424886,197 STEELMANVILLE ROAD,EGG HARBOR TWP,15,1925,1,RES1,3001 -0108_6202_2,-74.57132129,39.36598984,105 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,15,1925,1,RES1,3001 -0108_6202_3,-74.74787953,39.4453458,107 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1990,1,RES3A,3001 -0108_6202_4,-74.606716,39.420948,111 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1984,1,RES3A,3001 -0108_6202_5,-74.651445,39.3472365,179 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1965,1,RES3A,3001 -0108_6202_6,-74.48854071,39.42925848,183 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6202_7,-74.63975463,39.53355238,185 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1972,1,COM1,3004 -0108_6202_8,-74.5160545,39.3864275,187 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6202_9,-74.49849039,39.47006281,189 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6203_1,-74.6224905,39.3693855,2 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6203_10,-74.50546216,39.32564064,106 SUNRISE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6203_11,-74.50124886,39.42579085,108 SUNRISE CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6203_12,-74.49270807,39.33333123,110 SUNRISE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6203_13,-74.4888895,39.3377055,112 SUNRISE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6203_14,-74.51137882,39.40247098,114 SUNRISE CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6203_15,-74.58941362,39.43043825,1409 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6203_16,-74.8223995,39.630542,1411 OLD ZION ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6203_2,-74.54363698,39.37539613,4 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6203_28,-74.51117264,39.45049957,191 STEELMANVILLE ROAD,EGG HARBOR TWP,,2017,1,RES1,3001 -0108_6203_3,-74.64308878,39.39303728,6 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6203_30,-74.4846885,39.3391735,199 STEELMANVILLE ROAD,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_6203_32,-74.48099651,39.35216483,3110 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6203_36,-74.57905654,39.41346855,3102 OCEAN HTS AVENUE,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_6203_37,-74.552512,39.569189,3100 OCEAN HTS AVENUE,EGG HARBOR TWP,15,1954,2,RES1,3001 -0108_6203_4,-74.79847231,39.54355348,8 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6203_5,-74.603274,39.37067,10 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3002 -0108_6203_6,-74.5880365,39.4286295,12 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6203_7,-74.56231637,39.38962828,100 SUNRISE CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6203_8,-74.59853939,39.36589356,102 SUNRISE CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6203_9,-74.86007142,39.55321935,104 SUNRISE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6204_1,-74.540008,39.38159433,101 SUNRISE CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6204_2,-74.47762814,39.3422811,105 SUNRISE CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6204_3,-74.63040394,39.41809886,103 SUNRISE CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6205_1,-74.524504,39.387389,202 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6205_10,-74.51914647,39.32065911,220 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6205_11,-74.44786125,39.35630195,17 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6205_12,-74.62062784,39.52655652,15 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6205_13,-74.601052,39.4363645,13 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3002 -0108_6205_14,-74.5987305,39.315515,11 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6205_15,-74.487539,39.4928385,9 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6205_16,-74.41803887,39.36937683,7 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6205_17,-74.5788963,39.52383726,5 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6205_18,-74.60379386,39.43191663,3 FIELDBROOK DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6205_2,-74.5079375,39.326874,204 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6205_3,-74.60249305,39.47615684,206 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_6205_4,-74.360602,39.412048,208 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6205_5,-74.59782028,39.32196759,210 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6205_6,-74.6048915,39.482602,212 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6205_7,-74.38647001,39.39594808,214 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_6205_8,-74.5917375,39.3806205,216 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6205_9,-74.9375815,39.522637,218 SUN VALLEY CIRCLE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6301_15.01,-74.5803755,39.3392975,100 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6301_15.02,-74.904821,39.4865755,102 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_6301_15.03,-74.64273578,39.52419055,104 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6301_15.04,-74.51786193,39.40736257,106 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6301_15.05,-74.7865595,39.639169,108 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6301_15.06,-74.436611,39.368572,110 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,COM1,3004 -0108_6301_15.07,-74.51220551,39.44215331,112 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6301_15.08,-74.51309402,39.41023433,114 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,IND1,3002 -0108_6301_16,-74.63175291,39.35794562,1324 OLD ZION ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6301_17,-74.74811954,39.44540279,1328 OLD ZION ROAD,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_6301_18,-74.7167788,39.57959723,1332 OLD ZION ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6301_19,-74.6036945,39.5927085,1336 OLD ZION ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6301_20,-74.7867395,39.642247,1342 OLD ZION ROAD,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_6301_23,-74.49137969,39.33646292,114 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1948,1,GOV1,3004 -0108_6301_23.01,-74.4366424,39.36495181,112 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6301_24,-74.57406159,39.42781961,110 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_6301_25,-74.730102,39.4530585,108 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6301_26,-74.74834287,39.59364934,104 SOUTH MT.AIRY AVENUE,EGG HARBOR TWP,16,1915,1,RES1,3001 -0108_6301_28,-74.60811111,39.32523837,1368 OLD ZION ROAD,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_6302_1.15,-74.51412946,39.44693334,411 AURORA DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_6302_1.16,-74.6077665,39.331292,409 AURORA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6302_1.17,-74.782882,39.6094875,407 AURORA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6302_1.18,-74.5232617,39.41791342,405 AURORA DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6302_1.19,-74.5311295,39.308961,403 AURORA DRIVE,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_6302_1.20,-74.64714939,39.46053517,401 AURORA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6302_10,-74.54767936,39.38730095,135 STEELMANVILLE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6302_11,-74.51123,39.408901,143 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1955,1,RES3A,3001 -0108_6302_13,-74.527125,39.5006285,149 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6302_15.08,-74.48218668,39.34020794,24 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_6302_15.09,-74.52000959,39.40629016,22 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6302_15.10,-74.69518679,39.50968204,20 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6302_15.11,-74.9647518,39.52853488,18 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2005,1,RES3A,3001 -0108_6302_15.12,-74.46804952,39.54094083,16 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6302_15.13,-74.53645004,39.3830549,14 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6302_15.14,-74.95055923,39.53101577,12 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2011,1,RES3A,3001 -0108_6302_15.15,-74.9190485,39.474121,10 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6302_15.16,-74.52318669,39.32146115,8 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6302_15.17,-74.54457783,39.40590195,6 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2005,1,RES3A,3001 -0108_6302_15.18,-74.942367,39.524636,4 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2008,1,RES3A,3001 -0108_6302_15.19,-74.5641135,39.360139,2 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2008,1,RES3A,3001 -0108_6302_17,-74.53247661,39.38449784,171 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6302_18,-74.55565261,39.36355625,173 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1965,1,RES1,3002 -0108_6302_19,-74.57793205,39.59831809,175 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6302_5.01,-74.63209834,39.52745453,413 AURORA DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6302_5.02,-74.595408,39.3564045,415 AURORA DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6302_5.04,-74.54146794,39.39242433,417 AURORA DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6302_5.05,-74.59841308,39.3147493,419 AURORA DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6302_8.02,-74.608865,39.3928985,427 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6302_8.03,-74.593265,39.340972,425 AURORA DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3004 -0108_6302_8.04,-74.5323945,39.3861655,423 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6302_8.05,-74.63970643,39.55288965,421 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6303_12.16,-74.3757561,39.39806586,101 SHADY OAK DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6303_12.17,-74.61782779,39.55486679,122 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1996,1,RES1,3004 -0108_6303_12.18,-74.53745385,39.39052116,124 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6303_12.19,-74.57472328,39.37222259,126 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6303_12.20,-74.643628,39.432208,128 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1996,1,RES3A,3002 -0108_6303_12.21,-74.59064797,39.34695718,130 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6303_12.22,-74.36744167,39.40764846,132 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6303_12.23,-74.50816867,39.4074835,103 SHADY OAK DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6303_12.24,-74.5099258,39.32604869,105 SHADY OAK DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6303_12.25,-74.53620698,39.30502707,107 SHADY OAK DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6303_12.26,-74.500924,39.4168755,8 RED OAK COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6303_12.27,-74.48365646,39.43519422,6 RED OAK COURT,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_6303_12.28,-74.57126065,39.41270686,10 RED OAK COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6303_12.29,-74.64290501,39.32556484,11 RED OAK COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6303_12.30,-74.5756135,39.4223255,9 RED OAK COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6303_12.31,-74.5655135,39.4765855,7 RED OAK COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6303_12.32,-74.6026437,39.33031519,5 RED OAK COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6303_12.33,-74.70468478,39.58684061,3 RED OAK COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6303_12.34,-74.646486,39.432055,1 RED OAK COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6303_14,-74.6015205,39.5107775,139 BLACKMAN ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6303_15,-74.59870661,39.37349874,141 BLACKMAN ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6303_16,-74.8132515,39.3829515,145 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_17,-74.819909,39.4437115,2 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_18,-74.5906355,39.3317095,4 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_19,-74.65535399,39.59173367,6 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_20,-74.944591,39.524825,8 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_21,-74.390122,39.3896885,10 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_22,-74.48154669,39.35047392,12 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_23,-74.5267575,39.3907425,14 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_24,-74.50918582,39.32625327,16 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6303_25,-74.517956,39.389888,18 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3002 -0108_6303_26,-74.9522825,39.53641,20 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3002 -0108_6303_27,-74.46495818,39.47623997,22 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,COM1,3004 -0108_6303_28,-74.391761,39.3912965,1 MARTY LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6303_29,-74.64133935,39.53148042,3 MARTY LANE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_6303_30,-74.545564,39.3856445,5 MARTY LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6303_31,-74.51400469,39.32344259,7 MARTY LANE,EGG HARBOR TWP,16,2009,1,RES1,3002 -0108_6303_33,-74.5816135,39.4736675,8 MARTY LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6303_35,-74.5144515,39.536973,4 MARTY LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6303_36,-74.54067603,39.37243884,2 MARTY LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6304_1,-74.6683785,39.356698,150 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_10,-74.53509909,39.39675945,1116 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_11,-74.50731344,39.32721258,1118 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_12,-74.939596,39.5207625,1120 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_13,-74.52743584,39.38282874,170 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_14,-74.77380019,39.45413076,168 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_15,-74.51939065,39.38755832,166 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_16,-74.4974675,39.523476,164 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_17,-74.60273304,39.37672292,162 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1971,1,COM4,3004 -0108_6304_18,-74.89667135,39.53917929,160 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_19,-74.804749,39.6330545,158 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1974,1,RES3B,3001 -0108_6304_2,-74.5577985,39.478125,1100 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6304_20,-74.63728232,39.36802211,156 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_21,-74.7298755,39.464246,154 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_22,-74.58251061,39.35744882,152 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_3,-74.50434373,39.32417814,1102 BERRY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6304_4,-74.54587183,39.37104939,1104 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_5,-74.52055898,39.38693918,1106 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_6,-74.6475735,39.4315205,1108 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6304_7,-74.59119515,39.37834717,1110 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES3A,3001 -0108_6304_8,-74.82851376,39.52899804,1112 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES3A,3001 -0108_6304_9,-74.48421705,39.34387421,1114 BERRY DRIVE,EGG HARBOR TWP,16,1965,1,RES3A,3001 -0108_6305_10,-74.59797931,39.36091904,20 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES3A,3001 -0108_6305_11,-74.65144464,39.53239545,22 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6305_12,-74.5043805,39.341955,1121 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES3A,3001 -0108_6305_2,-74.52273468,39.39421209,9 BONNIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6305_3,-74.64465351,39.53932867,7 BONNIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6305_4,-74.55865829,39.54033717,5 BONNIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6305_5,-74.581569,39.423179,3 BONNIE DRIVE,EGG HARBOR TWP,16,1969,1,RES3A,3001 -0108_6305_6,-74.45246267,39.50245901,1112 FURMAN DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6305_7,-74.69271519,39.65188332,1114 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3004 -0108_6305_8,-74.8975015,39.4791725,16 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6305_9,-74.9622825,39.511886,18 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6306_1,-74.61117948,39.41521418,1109 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6306_2,-74.86192384,39.44722906,5 EVE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6306_3,-74.63011482,39.36196388,3 EVE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6306_4,-74.55584194,39.47048773,1108 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6306_5,-74.648688,39.6272915,1110 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6306_6,-74.575098,39.410637,2 BONNIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6306_7,-74.39945272,39.38330176,4 BONNIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6306_8,-74.572046,39.411761,6 BONNIE DRIVE,EGG HARBOR TWP,16,1971,1,AGR1,3001 -0108_6306_9,-74.49108813,39.49542058,8 BONNIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_1,-74.62783272,39.45927043,1101 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_10,-74.4878274,39.33471132,1105 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_11,-74.54704516,39.37978626,1103 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES3A,3004 -0108_6307_2,-74.62052719,39.38134603,15 MEADOW DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_3,-74.6803205,39.6368895,1100 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_4,-74.88566374,39.59363296,1102 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_5,-74.6803035,39.611112,1104 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_6,-74.50664801,39.32790217,1106 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_7,-74.5786218,39.38295722,2 EVE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_8,-74.5071983,39.47322326,4 EVE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6307_9,-74.500305,39.330471,1107 BERRY DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_1,-74.5052935,39.330485,1101 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_10,-74.55071051,39.35887541,1118 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6308_11,-74.5157,39.322456,1120 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_12,-74.79732387,39.63993403,1122 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_13,-74.5464075,39.4986155,1124 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_14,-74.7916098,39.63144397,1123 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_15,-74.7749205,39.316163,1121 FURMAN DRIVE,EGG HARBOR TWP,16,1971,1,GOV1,3004 -0108_6308_16,-74.82657728,39.57020081,1119 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_17,-74.9426767,39.52181046,1117 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_18,-74.48417172,39.47938035,1115 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6308_19,-74.83497433,39.40058151,1113 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_2,-74.48985145,39.42946829,1100 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_20,-74.72219972,39.45757699,1111 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_21,-74.68044708,39.55027294,1109 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_22,-74.72783059,39.45543181,1107 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_23,-74.64258366,39.33897649,1105 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_24,-74.4653845,39.357959,1103 FURMAN DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_3,-74.60488817,39.32206349,1104 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_4,-74.876537,39.591736,1106 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_5,-74.36862897,39.40648583,1108 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_6,-74.6178305,39.4584905,1110 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_7,-74.54255333,39.37774,1112 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_8,-74.5076065,39.492227,1114 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6308_9,-74.77908861,39.65669429,1116 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_1,-74.526527,39.3961055,1101 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_10,-74.528615,39.3991815,163 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_11,-74.68359525,39.39349588,165 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_12,-74.80029314,39.63471294,167 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_13,-74.802825,39.643461,169 BLACKMAN ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6309_14,-74.51170366,39.44409699,171 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_15,-74.54582854,39.37780082,1123 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,COM1,3004 -0108_6309_16,-74.81715517,39.64207953,1121 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_17,-74.51562255,39.32042481,1119 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_18,-74.5082315,39.3242735,1117 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_19,-74.62422608,39.37532882,1115 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_2,-74.57872018,39.33708357,147 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_20,-74.54671868,39.40347911,1113 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6309_21,-74.4988875,39.4118705,1111 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_22,-74.83778126,39.39294594,1109 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6309_23,-74.539087,39.4621755,1107 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6309_24,-74.63505877,39.36712359,1105 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_25,-74.38595363,39.39698562,1103 LAKESIDE DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6309_3,-74.71318966,39.47351654,149 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_4,-74.5481649,39.47518723,151 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_5,-74.56940731,39.3676589,153 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_6,-74.48761862,39.44367704,155 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_7,-74.4411945,39.36877,157 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_8,-74.51736925,39.3228251,159 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6309_9,-74.52259899,39.40225883,161 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6310_1,-74.62814446,39.55638284,140 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6310_10,-74.533937,39.502665,154 BLACKMAN ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6310_11,-74.601603,39.436138,152 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,IND1,3002 -0108_6310_12,-74.47530621,39.48528083,150 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,IND1,3004 -0108_6310_13,-74.6036225,39.322829,148 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6310_14,-74.973529,39.5088545,146 BLACKMAN ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6310_15,-74.71866011,39.39076235,144 BLACKMAN ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6310_16,-74.83438782,39.59185552,142 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,AGR1,3001 -0108_6310_2,-74.55692227,39.47050141,1100 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,AGR1,3001 -0108_6310_3,-74.61432348,39.38276468,1102 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,AGR1,3001 -0108_6310_4,-74.58857523,39.34817697,1104 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6310_5,-74.87019561,39.59916381,1106 MARLOU AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6310_6,-74.520896,39.3216775,1108 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6310_7,-74.60988584,39.32647996,1110 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6310_8,-74.871375,39.4557295,1112 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES3A,3001 -0108_6310_9,-74.61240535,39.36849828,1114 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6311_1,-74.55378843,39.36443201,1101 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6311_10,-74.5295801,39.39799109,1105 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6311_11,-74.951489,39.5182165,1103 MARLOU AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6311_2,-74.51668497,39.46708667,1100 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6311_3,-74.90535742,39.54560317,1102 JORENE DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6311_4,-74.4890805,39.333608,1104 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6311_5,-74.45253,39.37493,1106 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6311_6,-74.47950083,39.34235105,1108 JORENE DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6311_8,-74.632974,39.4308835,1109 MARLOU AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6311_9,-74.63979337,39.52918407,1107 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_1,-74.50406342,39.46719937,100 BLACKMAN ROAD,EGG HARBOR TWP,,0,1,REL1,3003 -0108_6312_10,-74.5239815,39.461422,16 DINA DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6312_13,-74.81906417,39.40276,19 DINA DRIVE,EGG HARBOR TWP,16,1985,1,GOV1,3004 -0108_6312_14,-74.63578598,39.41944768,17 DINA DRIVE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6312_15,-74.44795666,39.35799568,1101 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_16,-74.84907688,39.39415173,1103 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_17,-74.57172901,39.42906032,1105 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_18,-74.57111037,39.35612068,1107 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_19,-74.68864283,39.36279052,1109 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_2,-74.60755968,39.34987196,138 BLACKMAN ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_20,-74.555335,39.466246,1111 JORENE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_21,-74.71598114,39.46430328,17 JODEL LANE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6312_22,-74.58493088,39.37592617,15 JODEL LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_23,-74.63334616,39.39859291,13 JODEL LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_24,-74.463092,39.3566935,11 JODEL LANE,EGG HARBOR TWP,16,1969,1,RES3B,3001 -0108_6312_25,-74.5202275,39.4640065,9 JODEL LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_26,-74.64069618,39.53373468,1111 MARLOU AVENUE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_27,-74.3606815,39.416608,1113 MARLOU AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6312_28,-74.87794684,39.57032353,10 CARANN LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_29,-74.7928605,39.6437475,12 CARANN LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_3,-74.95151424,39.53106097,2 DINA DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6312_30,-74.6812434,39.44338667,14 CARANN LANE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6312_31,-74.74549441,39.44551319,16 CARANN LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_32,-74.50619275,39.49407985,18 CARANN LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_33,-74.79981219,39.64383674,20 CARANN LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_34,-74.80413934,39.36441155,22 CARANN LANE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6312_35,-74.608393,39.321289,24 CARANN LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6312_37,-74.47674678,39.45924097,311 POPLAR AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6312_4,-74.505856,39.3299425,4 DINA DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_5,-74.53344846,39.38034066,6 DINA DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_6,-74.59431732,39.43519099,8 DINA DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_7,-74.49089985,39.43722951,10 DINA DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6312_8,-74.54940285,39.36742588,12 DINA DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6312_9,-74.36927854,39.41059778,14 DINA DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6313_1,-74.79828906,39.65337384,1 DEVON DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6313_10,-74.6414925,39.5277,104 ABERDEEN CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6313_11,-74.49282317,39.3325975,105 ABERDEEN CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6313_12,-74.690907,39.3605955,200 LOMBARDY CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6313_13,-74.46479479,39.49739921,201 LOMBARDY CIRCLE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_6313_14,-74.7135161,39.41831019,202 LOMBARDY CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6313_15,-74.48386309,39.44120822,203 LOMBARDY CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6313_16,-74.4943835,39.380569,204 LOMBARDY CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6313_17,-74.56578331,39.36202691,205 LOMBARDY CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6313_18,-74.93945394,39.52140782,304 ABINGDON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6313_19,-74.5889405,39.329722,302 ABINGDON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6313_2,-74.78052932,39.63155395,235 POPLAR AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_6313_20,-74.5025515,39.4169275,300 ABINGDON DRIVE,EGG HARBOR TWP,16,2001,1,COM3,3004 -0108_6313_4,-74.49330063,39.42153228,3 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6313_5,-74.67163247,39.41626312,5 DEVON DRIVE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6313_6,-74.61035019,39.31549952,100 ABERDEEN CIRCLE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6313_7,-74.64181558,39.37515053,101 ABERDEEN CIRCLE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6313_9,-74.52893727,39.40017916,103 ABERDEEN CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6314_1,-74.59626733,39.35856682,404 AURORA DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6314_2,-74.4894005,39.3322795,402 AURORA DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_6314_3,-74.69806884,39.36721848,400 AURORA DRIVE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_6314_4,-74.70083057,39.48622135,301 ABINGDON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6314_5,-74.36738116,39.40622251,303 ABINGDON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6314_6,-74.5972249,39.34245134,305 ABINGDON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1,-74.524801,39.471756,2 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.01,-74.49837827,39.43075495,4 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.02,-74.7266535,39.453053,6 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.03,-74.8531465,39.3697455,8 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_6316_1.04,-74.5012515,39.430366,10 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.05,-74.8653415,39.597139,12 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,COM1,3004 -0108_6316_1.06,-74.80924616,39.66200266,14 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.07,-74.81804549,39.65398134,16 DEVON DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_6316_1.08,-74.78042357,39.63617994,18 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.09,-74.46675209,39.34496716,20 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.10,-74.5732975,39.3716635,22 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.11,-74.522915,39.3219715,24 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_6316_1.12,-74.6251345,39.373117,26 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_6316_1.13,-74.64801721,39.37656114,28 DEVON DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6316_1.14,-74.49155743,39.52384011,30 DEVON DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6316_16,-74.50943087,39.44692336,25 HIDEAWAY LANE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6316_17,-74.621063,39.420191,23 HIDEAWAY LANE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6316_18,-74.82229191,39.62915054,21 HIDEAWAY LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6316_19,-74.51409969,39.48591595,19 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6316_20,-74.57895251,39.34028311,17 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6316_21,-74.82384207,39.3844803,15 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6316_22,-74.65121134,39.53254202,13 HIDEAWAY LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6316_23,-74.52452126,39.31495,11 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6316_24,-74.40444512,39.38143435,9 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6316_25,-74.582557,39.4316275,7 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6316_26,-74.59578123,39.36191732,5 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6316_27,-74.39540021,39.3897446,3 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6316_28,-74.5558375,39.3641485,1 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6316_29,-74.4828895,39.335113,117 STEELMANVILLE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6316_4,-74.8310615,39.489895,115 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1915,1,RES1,3001 -0108_6317_1,-74.9271205,39.519167,2 HIDEAWAY LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6317_10,-74.726097,39.45318797,16 HIDEAWAY LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6317_11,-74.77525958,39.62548938,18 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6317_12,-74.47622463,39.48578856,20 HIDEAWAY LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6317_13,-74.54063784,39.37386098,22 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6317_14,-74.51378263,39.32810767,408 AURORA DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6317_15,-74.9509215,39.5188415,410 AURORA DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6317_16,-74.939227,39.5261295,412 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6317_17,-74.83632956,39.41453874,414 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6317_18,-74.5612395,39.388834,416 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6317_19,-74.62300057,39.38273657,418 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6317_2,-74.51477897,39.40331685,4 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6317_20,-74.810826,39.6239135,420 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6317_21,-74.51393797,39.32922483,422 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6317_22,-74.47355087,39.4905965,424 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6317_23,-74.87903366,39.59762104,426 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6317_3,-74.60191618,39.43370477,6 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6317_4,-74.76084934,39.64033002,8 HIDEAWAY LANE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6317_5,-74.47846885,39.34605885,10 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6317_6,-74.51578106,39.40210682,121 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6317_7,-74.4875382,39.49658476,123 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_6317_8,-74.79540295,39.63072287,12 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6317_9,-74.4557305,39.462484,14 HIDEAWAY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6319_1,-74.57356134,39.41432052,433 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6319_2,-74.65272069,39.39710972,431 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6319_3,-74.59052627,39.41569745,429 AURORA DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6319_4,-74.65343599,39.39678733,2 KNOB HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6319_5,-74.72905318,39.45264052,4 KNOB HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6319_6,-74.7348082,39.43617102,6 KNOB HILL DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6320_1,-74.80664085,39.64884896,153 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6320_2,-74.53678013,39.38423894,1 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6320_3,-74.5628847,39.3554631,3 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6320_4,-74.62681222,39.43338763,5 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6320_5,-74.63078908,39.31718538,7 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_6320_6,-74.60490859,39.32006332,9 SCARLETT OAK CIRCLE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6320_8,-74.381319,39.417796,159 STEELMANVILLE ROAD,EGG HARBOR TWP,15,1948,1,RES1,3001 -0108_6320_9,-74.8200325,39.653429,157 STEELMANVILLE ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6321_1,-74.51219223,39.52852825,127 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6321_10,-74.60705843,39.43340695,209 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6321_2,-74.700597,39.36607025,125 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6321_3,-74.765627,39.3001135,123 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6321_4,-74.563921,39.410133,121 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6321_5,-74.583857,39.3252445,119 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6321_6,-74.513839,39.3305245,201 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6321_7,-74.62733,39.412039,203 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6321_8,-74.51129166,39.44091997,205 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6321_9,-74.513445,39.4042135,207 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6322_10,-74.71157572,39.43134605,116 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6322_11,-74.373185,39.4075185,119 BLACKMAN ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6322_12.01,-74.5278155,39.3097035,123 BLACKMAN ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6322_12.02,-74.3990775,39.389395,125 BLACKMAN ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6322_12.03,-74.79903988,39.63249754,127 BLACKMAN ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6322_12.04,-74.791651,39.629551,129 BLACKMAN ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6322_12.05,-74.50271157,39.32615267,131 BLACKMAN ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6322_12.06,-74.504077,39.416518,133 BLACKMAN ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6322_12.07,-74.6026125,39.500568,2 RED OAK COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6322_12.08,-74.5393885,39.387123,114 SHADY OAK DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6322_12.09,-74.58798247,39.37151966,112 SHADY OAK DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6322_12.10,-74.71660591,39.57168946,110 SHADY OAK DRIVE,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_6322_12.11,-74.71286932,39.43049948,108 SHADY OAK DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6322_12.12,-74.48732111,39.47854464,106 SHADY OAK DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6322_12.13,-74.61925308,39.38571547,104 SHADY OAK DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6322_12.14,-74.52708903,39.42962033,102 SHADY OAK DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6322_12.15,-74.49780535,39.32903226,100 SHADY OAK DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6322_2,-74.45308256,39.37277681,105 BLACKMAN ROAD,EGG HARBOR TWP,15,1930,1,RES1,3001 -0108_6322_3,-74.80512717,39.62771675,107 BLACKMAN ROAD,EGG HARBOR TWP,16,1927,1,GOV1,3004 -0108_6322_4,-74.5170135,39.3195025,109 BLACKMAN ROAD,EGG HARBOR TWP,16,1927,1,GOV1,3004 -0108_6322_5.01,-74.71752785,39.57232026,108 STEELMANVILLE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6322_5.02,-74.369032,39.4144,111 BLACKMAN ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6322_6.02,-74.39004174,39.3905163,113 BLACKMAN ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6322_7,-74.51044042,39.32793484,115 BLACKMAN ROAD,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_6322_8,-74.562105,39.415724,117 BLACKMAN ROAD,EGG HARBOR TWP,16,2014,1,GOV1,3004 -0108_6322_9,-74.9055075,39.490621,112 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1953,1,RES1,3001 -0108_6323_1,-74.502108,39.50169,101 POPLAR AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6323_10,-74.50904683,39.3394625,1306 OLD ZION ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6323_11,-74.56486392,39.47292207,1308 OLD ZION ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6323_12,-74.594534,39.4082035,1310 OLD ZION ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6323_13,-74.554364,39.3559755,1312 OLD ZION ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6323_14,-74.52409232,39.39339249,101 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.01,-74.88342198,39.60044787,103 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.02,-74.75043795,39.39123215,105 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.03,-74.848123,39.6103125,107 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.04,-74.5037313,39.46768927,109 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.05,-74.51083967,39.333138,111 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.06,-74.61398618,39.31663053,113 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.07,-74.422545,39.371492,115 BRETTWOOD DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.08,-74.6284857,39.42361405,202 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.09,-74.68325918,39.58390966,204 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.10,-74.6448744,39.38273412,206 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_14.11,-74.67145459,39.37729768,208 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6323_14.12,-74.57230169,39.34139774,210 WESTWOOD ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6323_2,-74.45529518,39.49085943,103 POPLAR AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6323_3,-74.58672423,39.52321956,105 POPLAR AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6323_4,-74.56544318,39.35578202,107 POPLAR AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6323_5,-74.67899385,39.35295201,109 POPLAR AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_6323_9,-74.72638852,39.44780894,1304 OLD ZION ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_6401_1,-74.47649449,39.34068503,4000 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_6401_10,-74.8535175,39.4449965,194 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6401_11,-74.68891568,39.44790092,192 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6401_12,-74.36272396,39.40851327,190 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6401_13,-74.8242145,39.4702785,188 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6401_14,-74.76339479,39.61027365,186 STEELMANVILLE ROAD,EGG HARBOR TWP,15,1965,1,RES1,3001 -0108_6401_15,-74.4375755,39.37106,184 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6401_16,-74.672802,39.5109955,182 STEELMANVILLE ROAD,EGG HARBOR TWP,,1950,1,RES1,3001 -0108_6401_17,-74.50397684,39.33819107,180 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_6401_18,-74.48703983,39.335438,178 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6401_19,-74.87843908,39.59544365,176 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6401_2,-74.78237183,39.54274752,198 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3002 -0108_6401_3,-74.508492,39.471684,196 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1930,1,GOV1,3004 -0108_6401_4,-74.51313858,39.3995492,4004 OCEAN HTS AVENUE,EGG HARBOR TWP,16,2008,1,GOV1,3004 -0108_6401_5,-74.49294895,39.4314088,4006 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6401_7,-74.5521325,39.4702605,4010 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1956,1,RES1,3001 -0108_6401_8,-74.60503585,39.31526104,4012 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_6401_9,-74.4606328,39.3551243,4016 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1915,2,RES1,3001 -0108_6402_1,-74.59778541,39.36411729,4030 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6402_10,-74.53815475,39.46332442,8 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_11,-74.76089434,39.4302185,9 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_13,-74.60644313,39.59328522,11 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,COM1,3004 -0108_6402_14,-74.52753276,39.45072119,13 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_15,-74.55175562,39.37946821,12 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_16,-74.55993832,39.41566254,4038 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6402_17,-74.69970578,39.64203855,4040 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6402_18,-74.522597,39.4004255,4042 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6402_19,-74.51024733,39.45976578,4046 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6402_2,-74.37554135,39.41969603,4034 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_6402_20,-74.78888097,39.63104911,4048 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6402_21,-74.634923,39.5019255,4052 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1890,1,RES1,3001 -0108_6402_22,-74.53501644,39.37262672,219 BLACKMAN ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_23,-74.5806165,39.426659,201 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_6402_24,-74.59800076,39.31355064,203 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6402_25,-74.51495061,39.32230715,205 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3002 -0108_6402_26,-74.59628273,39.351314,207 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_27,-74.6426945,39.3469,209 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_28,-74.47402396,39.44541755,211 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_29,-74.51894781,39.4114382,213 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_6402_3,-74.57051236,39.37335624,1 DORATO DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6402_30,-74.76575809,39.40332501,215 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_31,-74.5042245,39.4249545,301 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_32.01,-74.525374,39.5219115,303 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.02,-74.5908964,39.32953705,305 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.03,-74.50532116,39.48332377,307 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.04,-74.50808165,39.45299105,309 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.05,-74.63840622,39.53372113,311 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.06,-74.626443,39.435047,313 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.07,-74.7900798,39.53136388,315 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.08,-74.75582661,39.45275614,317 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.09,-74.50490696,39.41487569,319 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.11,-74.63531374,39.39083454,310 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.12,-74.44983,39.492462,308 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.13,-74.644202,39.4332625,306 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.14,-74.48952036,39.43333593,304 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_32.15,-74.52536533,39.31660906,302 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_35,-74.61143993,39.51313427,300 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_36,-74.5065373,39.40323466,210 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_37,-74.94955281,39.51510325,208 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_38,-74.93578347,39.50436401,206 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_39,-74.44211063,39.35888218,204 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_4,-74.61139123,39.38842728,2 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_6402_40,-74.59669864,39.31506948,202 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_41,-74.524284,39.3138165,200 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_42,-74.39630364,39.3875509,211 BLACKMAN ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6402_43,-74.704705,39.43140183,209 BLACKMAN ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6402_44.01,-74.5551215,39.37387,101 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.02,-74.593457,39.3583345,2 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6402_44.03,-74.576722,39.3677285,4 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6402_44.04,-74.93038137,39.52499028,6 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.05,-74.5279845,39.310055,8 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6402_44.06,-74.75321398,39.45229871,10 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.07,-74.41385935,39.37013233,12 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.08,-74.643771,39.5283755,14 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6402_44.09,-74.702924,39.567844,101 MILLSTONE COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.11,-74.765048,39.664424,103 MILLSTONE COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.12,-74.86316811,39.5956003,104 MILLSTONE COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.13,-74.52261226,39.39115214,16 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.14,-74.686884,39.5049185,18 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6402_44.15,-74.66290084,39.53880747,20 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,COM1,3004 -0108_6402_44.16,-74.57054641,39.36689077,22 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.17,-74.6059518,39.3442621,24 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.18,-74.5299332,39.39855634,26 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.19,-74.80375426,39.64169665,28 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.21,-74.81357679,39.53360453,32 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.22,-74.533848,39.381214,34 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.23,-74.70415431,39.42619293,36 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_6402_44.24,-74.48128517,39.3525225,38 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_44.25,-74.755012,39.4305035,40 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.26,-74.56378668,39.36045752,42 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.27,-74.45680906,39.48531233,44 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.28,-74.500487,39.4304435,46 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.29,-74.4960695,39.334059,48 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6402_44.31,-74.50947163,39.32753266,100 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6402_46,-74.59401782,39.35061801,174 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_48,-74.3995395,39.3855815,197 BLACKMAN ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_6402_49,-74.96057675,39.50450676,195 BLACKMAN ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_6402_5,-74.73491515,39.44025532,3 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_50,-74.624542,39.361504,191 BLACKMAN ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_6402_51,-74.72498536,39.45105849,187 BLACKMAN ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6402_52,-74.88282804,39.59647407,189 BLACKMAN ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6402_53,-74.61296379,39.42804275,183 BLACKMAN ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6402_55,-74.45182817,39.3533825,201 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_56,-74.64215335,39.52711067,203 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_57,-74.59622081,39.38188285,205 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_58,-74.856967,39.617024,207 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_59,-74.59920746,39.32961034,209 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3004 -0108_6402_6,-74.5026138,39.50221399,4 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_60,-74.48413839,39.33450983,211 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_6402_61,-74.50444084,39.41299617,213 THOMAS DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6402_62,-74.60732683,39.31438299,215 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_63,-74.829048,39.648534,217 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_64,-74.533189,39.379997,218 THOMAS DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6402_65,-74.58644018,39.4121709,216 THOMAS DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6402_66,-74.63092323,39.35665638,214 THOMAS DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_67,-74.57572031,39.40993444,212 THOMAS DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6402_68,-74.63031016,39.41435428,210 THOMAS DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6402_69,-74.65340471,39.35425425,208 THOMAS DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6402_7,-74.5897152,39.3359361,5 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_6402_70,-74.51862056,39.44455489,206 THOMAS DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6402_71,-74.60648619,39.3912053,204 THOMAS DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6402_72,-74.598799,39.3691795,202 THOMAS DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_73,-74.51651946,39.39685118,179 BLACKMAN ROAD,EGG HARBOR TWP,15,1850,1,RES1,3001 -0108_6402_74,-74.78873006,39.63598279,177 BLACKMAN ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6402_8,-74.49257952,39.33732667,6 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_82,-74.57811426,39.35106513,13 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6402_86,-74.5468175,39.368735,21 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6402_87,-74.80792035,39.63809637,23 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6402_88,-74.6389785,39.409942,25 BROOKSIDE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_6402_9,-74.56680746,39.37288425,7 DORATO DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6402_90,-74.75323566,39.45371533,29 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6402_91,-74.6060345,39.406556,31 BROOKSIDE DRIVE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6403_1,-74.51521733,39.45980701,201 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6403_10,-74.608809,39.5222395,206 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6403_11,-74.5018315,39.494064,204 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_12,-74.60477214,39.32836633,202 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_13,-74.7996484,39.63323952,200 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_2,-74.9112495,39.5143225,203 JOANNE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_3,-74.58880589,39.37133397,205 JOANNE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_4,-74.60367525,39.33126373,207 JOANNE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_5,-74.728553,39.4535295,209 JOANNE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_6,-74.629898,39.3656545,211 JOANNE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_7,-74.535797,39.3047155,212 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_8,-74.8726005,39.6035735,210 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6403_9,-74.8316555,39.396446,208 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_6404_1,-74.48472103,39.34888368,2 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6404_10,-74.51712318,39.40117207,20 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6404_11,-74.62024942,39.3711832,22 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,COM1,3004 -0108_6404_12,-74.50815571,39.47949284,24 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6404_2,-74.664048,39.62396567,4 STONEY CREEK DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6404_3,-74.63403385,39.36285077,6 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_6404_4,-74.48431728,39.34397557,8 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6404_5,-74.48039433,39.339849,10 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6404_6,-74.3748605,39.4118275,12 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6404_7,-74.54985338,39.36047883,14 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6404_8,-74.47228083,39.34239801,16 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6404_9,-74.5131345,39.330411,18 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_1,-74.74579152,39.4458583,5012 OCEAN HTS AVENUE,EGG HARBOR TWP,,1970,1,RES1,3001 -0108_6405_10,-74.3630605,39.4136205,101 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_11,-74.81597692,39.36138031,100 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_12,-74.8187945,39.392348,102 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_13,-74.50919383,39.3330735,104 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_14,-74.564113,39.359244,106 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_15,-74.63514958,39.34786084,108 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_16,-74.71790144,39.43653202,110 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_17,-74.51056199,39.43098553,210 BLACKMAN ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_6405_18,-74.703213,39.6388435,208 BLACKMAN ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6405_19,-74.49314325,39.43318808,206 BLACKMAN ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_6405_2,-74.71252505,39.43034671,5002 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6405_2.01,-74.5050695,39.408349,220 BLACKMAN ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6405_20,-74.50008352,39.40898626,204 BLACKMAN ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_6405_21,-74.6991055,39.629864,202 BLACKMAN ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6405_22,-74.67797432,39.34326753,200 BLACKMAN ROAD,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_6405_23,-74.61343468,39.42880503,198 BLACKMAN ROAD,EGG HARBOR TWP,16,1900,1,RES2,3005 -0108_6405_24,-74.77340285,39.62449124,196 BLACKMAN ROAD,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_6405_25,-74.86492883,39.56612599,3 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_26,-74.717797,39.56966049,5 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_27,-74.81260945,39.64286884,7 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6405_28,-74.651637,39.3526595,9 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6405_29,-74.70402368,39.42393981,11 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6405_3,-74.96048859,39.51191595,218 BLACKMAN ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6405_3.01,-74.63494506,39.46768817,216 BLACKMAN ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6405_30,-74.60731766,39.32778849,13 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6405_31,-74.75082553,39.44633895,15 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6405_32,-74.49723099,39.33260566,17 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6405_33,-74.59638806,39.51530334,19 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6405_34,-74.63758747,39.44511288,21 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_35,-74.7962335,39.6354625,23 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_36,-74.505126,39.326264,25 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_37,-74.78369515,39.63578515,27 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6405_38,-74.56888,39.369214,29 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_39,-74.5045937,39.43245786,31 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6405_4,-74.60879917,39.39688583,214 BLACKMAN ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_40,-74.54514121,39.38532819,33 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6405_41,-74.3985865,39.388447,35 STONEY CREEK DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6405_42,-74.6209855,39.4241105,39 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_43,-74.589644,39.428207,41 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_44,-74.62969318,39.40839301,43 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_45,-74.50118784,39.43131235,45 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6405_46,-74.5750365,39.4184745,47 STONEY CREEK DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6405_47,-74.5960415,39.316095,192 BLACKMAN ROAD,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_6405_48,-74.58841554,39.40821231,190 BLACKMAN ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_6405_49,-74.6127705,39.315881,113 NANCY DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_5,-74.36808294,39.41171204,212 BLACKMAN ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6405_50,-74.65002272,39.55886412,111 NANCY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6405_51,-74.838338,39.4798915,109 NANCY DRIVE,EGG HARBOR TWP,16,1975,1,COM1,3004 -0108_6405_52,-74.57351908,39.36032785,107 NANCY DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_53,-74.56116544,39.37334665,105 NANCY DRIVE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6405_55,-74.539141,39.4126865,104 NANCY DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6405_56,-74.84126668,39.59943046,106 NANCY DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_57,-74.51544,39.3288885,108 NANCY DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_58,-74.4468765,39.3554015,110 NANCY DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_59,-74.7244655,39.433375,112 NANCY DRIVE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6405_6,-74.87336005,39.59120932,109 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_60,-74.55747867,39.398713,186 BLACKMAN ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_6405_61,-74.63460288,39.45363096,184 BLACKMAN ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_6405_62,-74.54388661,39.37921755,182 BLACKMAN ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_63,-74.48401042,39.51836178,180 BLACKMAN ROAD,EGG HARBOR TWP,16,1960,1,GOV1,3004 -0108_6405_66,-74.5334845,39.451805,164 BLACKMAN ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6405_67,-74.7507105,39.4531105,162 BLACKMAN ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_68,-74.57592917,39.47927569,158 BLACKMAN ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6405_69,-74.62652846,39.4194112,1 CARANN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_7,-74.542121,39.50713585,107 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_70,-74.6513325,39.397138,3 CARANN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_71,-74.752991,39.4491945,5 CARANN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_72,-74.5089133,39.33619186,7 CARANN LANE,EGG HARBOR TWP,16,1971,1,RES1,3002 -0108_6405_73,-74.950714,39.5157245,9 CARANN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_74,-74.57470067,39.53213499,11 CARANN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_75,-74.56479649,39.34500463,13 CARANN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_76,-74.634004,39.360488,15 CARANN LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6405_77,-74.80229016,39.63290402,17 CARANN LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6405_78,-74.554023,39.362869,19 CARANN LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6405_79,-74.6896912,39.60014276,21 CARANN LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6405_8,-74.52478685,39.44952053,105 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6405_9,-74.50171355,39.45314982,103 ANITA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6406_1,-74.46098483,39.3506885,1 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_10,-74.38370633,39.39668502,19 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_11,-74.571986,39.4157145,21 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_12,-74.50494478,39.44834849,23 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_13,-74.73623465,39.44902659,25 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_14,-74.58949034,39.31499471,27 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_15,-74.77880666,39.65695202,29 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6406_16,-74.77623446,39.6122098,31 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6406_17,-74.6041565,39.3226855,33 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6406_18,-74.57665921,39.47891689,35 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6406_19,-74.50451504,39.33136683,37 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6406_2,-74.64579572,39.44731578,3 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6406_3,-74.462899,39.354215,5 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,COM1,3004 -0108_6406_4,-74.96770541,39.51306624,7 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_5,-74.63835786,39.36478514,9 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES3A,3001 -0108_6406_6,-74.5858825,39.473452,11 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_7,-74.59864003,39.38330502,13 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_8,-74.72340882,39.46046892,15 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6406_9,-74.58319942,39.43157579,17 CLOVER HILL CIRCLE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6407_1,-74.4976705,39.4128895,300 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6407_10,-74.637304,39.5177515,304 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6407_11,-74.6354565,39.5388035,302 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6407_2,-74.50495814,39.43695901,301 JOANNE DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_6407_3,-74.4831135,39.3473055,303 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6407_4,-74.37943157,39.39766833,305 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6407_5,-74.72800515,39.46033461,307 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6407_6,-74.80900286,39.63013444,309 JOANNE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6407_7,-74.4942265,39.3365205,310 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6407_8,-74.4399985,39.487694,308 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6407_9,-74.48871673,39.33778413,306 ROSEMARIE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6501_1,-74.5209845,39.464531,13 BEAVER DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6501_2,-74.62499657,39.54869538,244 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6501_3,-74.714908,39.464787,242 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1989,1,RES3A,3001 -0108_6501_4,-74.5625155,39.3608355,1 BEAVER DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6501_5,-74.54934833,39.5466545,11 BEAVER DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6501_6,-74.625083,39.609084,3 BEAVER DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6501_7,-74.76634267,39.34850117,9 BEAVER DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6501_8,-74.76598112,39.30834344,5 BEAVER DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6502_1,-74.59933052,39.31405465,100 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6502_10,-74.55524277,39.46671397,10 BEAVER DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_6502_11,-74.521633,39.316828,12 BEAVER DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6502_12,-74.7349945,39.434199,14 BEAVER DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_6502_13,-74.5364425,39.398034,16 BEAVER DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6502_14,-74.37603415,39.39890095,18 BEAVER DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6502_15,-74.552444,39.390148,20 BEAVER DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6502_16,-74.512608,39.3858155,22 BEAVER DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6502_2,-74.57726632,39.33314788,102 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6502_3,-74.50128146,39.34156872,104 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_6502_4,-74.63425944,39.35219884,106 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1974,1,GOV1,3004 -0108_6502_5,-74.47806244,39.45811421,108 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_6502_6,-74.63727735,39.46982395,110 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1984,1,GOV1,3004 -0108_6502_7,-74.6593005,39.6018445,112 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6502_8,-74.5138185,39.4368,114 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6502_9,-74.39998658,39.38932241,116 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6503_1,-74.56599537,39.35304681,1 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6503_2,-74.76897559,39.63587999,3 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6503_3,-74.80379649,39.64223567,5 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6503_4,-74.907748,39.53025365,111 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6503_5,-74.8621845,39.5674365,113 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6504_10,-74.54855085,39.36979321,278 STEELMANVILLE ROAD,EGG HARBOR TWP,16,2010,1,GOV1,3004 -0108_6504_10.01,-74.79434039,39.51980897,1 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6504_100,-74.6235401,39.51386086,4 LUIS DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6504_101,-74.80987992,39.46021844,210 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1900,2,RES1,3001 -0108_6504_102,-74.4612044,39.35729982,208 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_6504_104,-74.64462943,39.40174977,4015 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6504_19,-74.77104317,39.6594775,15 OTTER LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6504_2,-74.46510614,39.45501097,300 STEELMANVILLE ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6504_20,-74.60957517,39.43102493,17 OTTER LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_6504_21,-74.60041863,39.3487884,19 OTTER LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6504_23,-74.6043745,39.349955,20 OTTER LANE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_6504_24,-74.5021805,39.4260285,18 OTTER LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6504_25,-74.58605033,39.32533494,16 OTTER LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6504_26,-74.959395,39.5314755,14 OTTER LANE,EGG HARBOR TWP,16,1997,1,COM7,3004 -0108_6504_27,-74.764612,39.3064455,12 OTTER LANE,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6504_28,-74.45158072,39.37082796,10 OTTER LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6504_29,-74.58894718,39.33227802,8 OTTER LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6504_3,-74.94164479,39.52871455,296 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6504_30,-74.5672025,39.3535455,6 OTTER LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6504_31,-74.375983,39.402543,4 OTTER LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6504_32,-74.61395448,39.32575017,2 OTTER LANE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6504_33,-74.8861915,39.468943,99 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6504_35,-74.56848496,39.34783869,103 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6504_36,-74.5535905,39.3696305,105 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6504_37,-74.4803585,39.3382635,107 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_6504_38,-74.7256285,39.4544035,109 E.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1976,1,RES3A,3004 -0108_6504_39,-74.57802268,39.48083896,18 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1976,1,GOV1,3004 -0108_6504_4,-74.53180082,39.39880491,292 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6504_40,-74.38311162,39.4166724,16 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_6504_41,-74.67249596,39.63463965,14 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,2017,1,RES1,3001 -0108_6504_42,-74.49753826,39.43359758,12 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6504_43,-74.56818,39.413631,10 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_6504_44,-74.57403446,39.35035482,8 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6504_45,-74.64567529,39.36842792,6 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6504_46,-74.52724319,39.39305053,4 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6504_47,-74.5005535,39.3345155,2 W.LAKEVIEW DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6504_48,-74.645896,39.3318135,203 LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6504_49,-74.5148335,39.3939635,205 LAKEVIEW DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6504_5,-74.60708237,39.32875816,290 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1978,1,IND2,3004 -0108_6504_55,-74.7018795,39.485558,204 LAKEVIEW DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6504_56,-74.770932,39.6718385,202 LAKEVIEW DRIVE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_6504_57,-74.57280447,39.47994817,8 BEAVER DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6504_58,-74.57108038,39.36637436,6 BEAVER DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_6504_59,-74.52113834,39.3224725,2 BEAVER DRIVE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_6504_6,-74.50642309,39.33789656,288 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6504_61,-74.384508,39.3967695,238 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1940,1,REL1,3004 -0108_6504_62,-74.524437,39.398995,236 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6504_63,-74.639293,39.533942,1 MAY DRIVE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_6504_64,-74.437378,39.371512,3 MAY DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6504_65,-74.67168462,39.37224653,5 MAY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6504_66,-74.74910765,39.70730925,7 MAY DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6504_67,-74.69981881,39.43291939,9 MAY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_6504_68,-74.44547074,39.37478593,14 MAY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6504_69,-74.735672,39.438433,12 MAY DRIVE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6504_7,-74.881395,39.4916415,284 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6504_70,-74.513268,39.324107,8 MAY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6504_71,-74.64290533,39.53421,6 MAY DRIVE,EGG HARBOR TWP,16,1988,1,COM1,3004 -0108_6504_72,-74.78738526,39.67765107,4 MAY DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_6504_73,-74.623976,39.410886,2 MAY DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6504_74,-74.49575443,39.49888439,2 OSPREY COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6504_75,-74.77069133,39.63189993,4 OSPREY COURT,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_6504_77,-74.59801027,39.32487696,6 OSPREY COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6504_78,-74.49488588,39.43388961,8 OSPREY COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6504_8,-74.63550133,39.52775567,282 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6504_80,-74.4911975,39.441678,10 OSPREY COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6504_81,-74.50178881,39.41396436,12 OSPREY COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6504_82,-74.528081,39.449299,14 OSPREY COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6504_83,-74.86668585,39.59305333,15 OSPREY COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6504_84,-74.42769365,39.35826633,13 OSPREY COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6504_85,-74.51922593,39.44003115,11 OSPREY COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6504_86,-74.66324111,39.44788382,9 OSPREY COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6504_87,-74.754324,39.431363,7 OSPREY COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_6504_88,-74.52560116,39.40025721,5 OSPREY COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6504_89,-74.4998165,39.3317,3 OSPREY COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6504_9.02,-74.43521196,39.36504382,19 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6504_9.03,-74.76771596,39.64553921,17 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6504_9.04,-74.63918426,39.45682691,15 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6504_9.05,-74.5710477,39.41975697,13 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_6504_9.06,-74.59080924,39.3761441,11 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6504_9.07,-74.81905746,39.64746705,9 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6504_9.08,-74.69432185,39.56081545,7 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,IND1,3002 -0108_6504_9.09,-74.42382486,39.37209814,5 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6504_9.12,-74.45491315,39.50025946,280 STEELMANVILLE ROAD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6504_90,-74.79458313,39.63312744,1 OSPREY COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_6504_91,-74.61535969,39.3742478,220 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_6504_92,-74.40431267,39.38133199,216 STEELMANVILLE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6504_93,-74.8606303,39.47822202,1 LUIS DRIVE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_6504_94,-74.5498705,39.38968695,3 LUIS DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6504_95,-74.80217748,39.63671211,5 LUIS DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6504_96,-74.5232305,39.386734,7 LUIS DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6504_97,-74.70333978,39.4421115,10 LUIS DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6504_98,-74.49453286,39.33460422,8 LUIS DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6504_99,-74.69160339,39.39265824,6 LUIS DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6505_1,-74.80824858,39.63305235,4035 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_6505_3,-74.9733745,39.512739,4039 OCEAN HTS AVENUE,EGG HARBOR TWP,,1930,1,RES1,3001 -0108_6505_4,-74.35800134,39.41391653,4041 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1929,1,RES1,3001 -0108_6505_5,-74.52892982,39.40095741,4047 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6505_6,-74.50138591,39.40906955,4049 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_6505_7,-74.640326,39.5177095,4051 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6505_8,-74.6347035,39.626615,4055 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_6506_1,-74.8163965,39.6562235,5001 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6507_1,-74.8235485,39.629848,2 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6507_12,-74.4834555,39.335475,1 OTTER LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6507_13,-74.87944656,39.44564305,3 OTTER LANE,EGG HARBOR TWP,16,2000,1,IND1,3002 -0108_6507_14,-74.69996882,39.36407074,5 OTTER LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6507_15,-74.91716995,39.51057031,7 OTTER LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6507_16,-74.5647415,39.361719,9 OTTER LANE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6507_17,-74.45335942,39.35493434,11 OTTER LANE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6507_18,-74.4628635,39.494612,13 OTTER LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6507_2,-74.42611573,39.35734818,4 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6507_3,-74.9154305,39.5020885,6 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6507_4,-74.5475745,39.3857605,1 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6507_5,-74.48929193,39.49887348,10 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6507_6,-74.47855907,39.47854027,12 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6507_7,-74.5241865,39.4446435,14 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_6507_8,-74.87003387,39.45622387,16 GLEN AIRE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6601_1,-74.49795875,39.33415033,3041 OCEAN HTS AVENUE,EGG HARBOR TWP,15,1945,1,RES1,3001 -0108_6601_35.34,-74.51283716,39.33007052,208 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6601_35.35,-74.5036256,39.42969663,210 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2015,1,IND1,3002 -0108_6601_35.37,-74.716912,39.3995895,214 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6601_35.38,-74.91293518,39.5341676,216 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2002,1,RES3B,3001 -0108_6601_35.39,-74.56978517,39.37156302,218 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_6601_35.41,-74.5024595,39.333362,222 CASTLE PINE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6601_35.42,-74.52540353,39.45647233,224 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6601_35.43,-74.5410005,39.458573,226 CASTLE PINE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6601_35.44,-74.81144547,39.65279732,228 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6601_35.45,-74.4903645,39.338934,230 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6601_35.46,-74.4884652,39.33842633,150 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6601_35.47,-74.4983865,39.328763,152 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6601_35.55,-74.49153284,39.33924855,304 GLEN DORNOCH LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_6601_35.56,-74.4921525,39.338965,306 GLEN DORNOCH LANE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_6601_35.58,-74.49322716,39.33914998,310 GLEN DORNOCH LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_6601_36.01,-74.64254702,39.3777212,1 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6601_36.05,-74.60800027,39.32820258,211 LAGUNA DRIVE,EGG HARBOR TWP,17,2008,1,RES3A,3001 -0108_6601_36.06,-74.637697,39.5647,209 LAGUNA DRIVE,EGG HARBOR TWP,17,2003,1,RES1,3001 -0108_6601_36.08,-74.46401106,39.4917402,207 LAGUNA DRIVE,EGG HARBOR TWP,17,2000,1,RES1,3001 -0108_6601_36.09,-74.525511,39.3152535,205 LAGUNA DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6601_36.10,-74.48336242,39.43296666,203 LAGUNA DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_6601_36.12,-74.4373525,39.3659025,13 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6601_36.13,-74.5910611,39.32209732,15 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6601_36.14,-74.54873328,39.46387047,17 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6601_36.15,-74.688977,39.5077465,19 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6601_36.16,-74.425662,39.3605205,21 PEBBLE BEACH DRIVE,EGG HARBOR TWP,17,2001,1,RES3A,3001 -0108_6601_36.17,-74.82430545,39.39440182,23 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6601_36.18,-74.74711106,39.63715796,25 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6601_36.19,-74.57364873,39.42770427,27 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6601_36.21,-74.57258205,39.37090782,31 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6601_36.22,-74.53473785,39.31382958,33 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_6601_36.23,-74.81734337,39.36238067,35 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6601_36.24,-74.63469376,39.36275197,37 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_6601_36.25,-74.64725564,39.34344801,39 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6601_36.26,-74.4945195,39.380734,41 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_6601_36.27,-74.6640225,39.5450625,43 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6601_36.28,-74.5206115,39.323479,45 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_6601_36.29,-74.813828,39.4686965,47 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6601_36.33,-74.51825774,39.31758547,55 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_6601_36.38,-74.51024457,39.33164968,65 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_6601_37,-74.4949465,39.3378855,500 ST.ANDREWS DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6601_47,-74.75069618,39.45078806,263 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1915,1,RES1,3001 -0108_6601_49,-74.63710828,39.35079785,269 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_6601_5,-74.47775624,39.3517433,3059 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6601_54,-74.6554555,39.517318,436 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6601_55,-74.50456857,39.43085379,434 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6601_56,-74.54128239,39.50658723,432 BOSTON AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6601_57,-74.38693385,39.39244345,430 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6601_59,-74.39010133,39.39195633,428 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6601_6,-74.6015505,39.4092405,3067 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6601_60,-74.51893618,39.41073004,426 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6601_61,-74.516433,39.4026395,424 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6601_62,-74.811393,39.5237675,422 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6601_63,-74.49506433,39.42721384,420 BOSTON AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6601_64,-74.4375675,39.370326,418 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6601_7,-74.3619915,39.4135655,3071 OCEAN HTS AVENUE,EGG HARBOR TWP,15,1945,1,RES1,3001 -0108_6601_8,-74.6297625,39.4094825,3075 OCEAN HTS AVENUE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_6602_1,-74.52524243,39.46379016,221 CASTLE PINE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6602_10,-74.49323703,39.41986369,203 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6602_11,-74.44548002,39.48661049,201 CASTLE PINE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6602_12,-74.87592531,39.49608696,130 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6602_13,-74.57303187,39.50717113,132 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6602_14,-74.5177225,39.3230235,134 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6602_15,-74.65679,39.3600985,136 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6602_16,-74.61824258,39.36410123,138 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_6602_17,-74.3667905,39.409162,140 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6602_18,-74.372917,39.4054525,142 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6602_19,-74.7753755,39.6249005,144 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6602_2,-74.615331,39.3804185,219 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_6602_20,-74.47571435,39.33876991,146 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6602_21,-74.55764017,39.39757549,148 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6602_3,-74.49743735,39.33196898,217 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6602_4,-74.87605662,39.59527083,215 CASTLE PINE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6602_5,-74.7776245,39.60792,213 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6602_6,-74.80671098,39.66300434,211 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_6602_7,-74.4236005,39.365742,209 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6602_8,-74.3843355,39.3983615,207 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6602_9,-74.87910901,39.46221243,205 CASTLE PINE DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6603_1,-74.5002705,39.4475185,ST. ANDREWS DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6603_10,-74.587132,39.316565,129 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6603_11,-74.62642084,39.41968224,127 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3002 -0108_6603_12,-74.78428401,39.60927652,125 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_13,-74.78030883,39.67054006,123 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_14,-74.47208516,39.48992978,121 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_15,-74.92031,39.491837,203 LUCAYA COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_16,-74.5551174,39.38539322,202 LUCAYA COURT,EGG HARBOR TWP,16,1997,1,RES3A,3001 -0108_6603_17,-74.510226,39.4382665,201 LUCAYA COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_18,-74.45833951,39.46348079,200 LUCAYA COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_19,-74.386106,39.3902305,203 ST.GEORGES COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6603_2,-74.79621637,39.41953579,145 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6603_20,-74.36618985,39.40739284,202 ST.GEORGES COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6603_21,-74.7521915,39.4515515,201 ST.GEORGES COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_22,-74.60170217,39.31639951,200 ST.GEORGES COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6603_23,-74.91853076,39.49978695,107 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2002,1,COM1,3004 -0108_6603_24,-74.37418877,39.39809567,105 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1999,1,COM1,3004 -0108_6603_25,-74.59459137,39.31510736,103 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6603_26,-74.8043325,39.6343245,101 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1998,1,COM1,3004 -0108_6603_27,-74.59227827,39.32877584,2 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6603_28,-74.5000385,39.3325055,4 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6603_29,-74.51030806,39.3323035,6 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_3,-74.52663516,39.31239148,143 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_30,-74.65533064,39.62714407,8 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6603_31,-74.75463275,39.43336404,10 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2001,1,EDU1,3004 -0108_6603_32,-74.51875284,39.31996349,12 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_33,-74.701294,39.496859,14 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6603_34,-74.64728711,39.4586255,16 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_35,-74.620721,39.385673,18 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6603_36,-74.600233,39.34107,20 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6603_37,-74.58884054,39.37105123,22 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_38,-74.7808795,39.5018345,24 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_39,-74.80087192,39.43555382,26 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_6603_4,-74.629158,39.413088,141 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_40,-74.51049916,39.32568252,28 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_41,-74.636356,39.3643725,30 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6603_42,-74.50578807,39.32984573,32 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6603_43,-74.362787,39.4186485,34 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_44,-74.366095,39.4073175,36 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6603_45,-74.50791316,39.43565148,38 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_46,-74.64423734,39.53054752,40 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3002 -0108_6603_47,-74.59869707,39.36533973,42 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6603_48,-74.48834864,39.33601167,44 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2006,1,RES3A,3001 -0108_6603_49,-74.56961558,39.41377137,46 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6603_5,-74.56721,39.3643975,137 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_50,-74.51819575,39.39949765,48 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_51,-74.53155202,39.38525966,50 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_52,-74.65299409,39.52858781,52 PEBBLE BEACH DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6603_7,-74.52408942,39.47126316,135 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1998,1,COM1,3004 -0108_6603_8,-74.65611958,39.36711035,133 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6603_9,-74.540218,39.386459,131 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6605_10,-74.3598147,39.41205782,1 BROADMOOR DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_11,-74.39276465,39.38900546,2 BROADMOOR DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_12,-74.58822021,39.37201731,3 BROADMOOR DRIVE,EGG HARBOR TWP,16,1987,1,COM1,3004 -0108_6605_13,-74.493142,39.333899,4 BROADMOOR DRIVE,EGG HARBOR TWP,16,1987,1,COM1,3003 -0108_6605_14,-74.80426695,39.64735662,5 BROADMOOR DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_15,-74.4818282,39.34802164,6 BROADMOOR DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_16,-74.514297,39.3281175,7 BROADMOOR DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_17,-74.51157148,39.32038125,1 TAMARON DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_18,-74.7568963,39.30295043,2 TAMARON DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6605_19,-74.80185321,39.64327419,3 TAMARON DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_20,-74.94165356,39.52490419,4 TAMARON DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_21,-74.5008695,39.4746225,5 TAMARON DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_22,-74.551533,39.363424,6 TAMARON DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_6605_23,-74.3620795,39.4098125,7 TAMARON DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6605_24,-74.70751412,39.63788926,1 TURNBERRY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6605_25,-74.503092,39.4334985,2 TURNBERRY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6605_26,-74.55192382,39.47124612,3 TURNBERRY DRIVE,EGG HARBOR TWP,16,1986,1,RES3A,3001 -0108_6605_27,-74.608211,39.48976,4 TURNBERRY DRIVE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6605_28,-74.66132609,39.36555454,5 TURNBERRY DRIVE,EGG HARBOR TWP,16,1985,1,RES3A,3001 -0108_6605_29,-74.5212465,39.3963885,6 TURNBERRY DRIVE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6605_30,-74.79164609,39.63305176,7 TURNBERRY DRIVE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6605_31,-74.7977611,39.63369235,205 STEELMANVILLE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6605_32,-74.62910783,39.34896397,209 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6605_33,-74.73313689,39.43983462,211 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6605_34,-74.80699941,39.62715747,213 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1989,1,RES1,3002 -0108_6605_35.01,-74.5807722,39.33448842,98 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6605_35.02,-74.6194985,39.3791055,207 AUGUSTA COURT,EGG HARBOR TWP,16,2003,1,RES1,3004 -0108_6605_35.03,-74.76578751,39.61463733,206 AUGUSTA COURT,EGG HARBOR TWP,16,2002,1,RES1,3002 -0108_6605_35.04,-74.58732449,39.32350322,205 AUGUSTA COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6605_35.05,-74.69378031,39.44779739,204 AUGUSTA COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6605_35.06,-74.533411,39.404577,203 AUGUSTA COURT,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6605_35.07,-74.70598563,39.43216568,202 AUGUSTA COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6605_35.08,-74.79905901,39.64101852,201 AUGUSTA COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6605_35.09,-74.45083491,39.37268176,200 AUGUSTA COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6605_35.11,-74.527409,39.397216,104 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6605_35.12,-74.64613366,39.5488125,106 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6605_35.13,-74.51720695,39.32466833,108 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6605_35.14,-74.39466217,39.38869672,110 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6605_35.15,-74.60782393,39.3497335,112 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6605_35.16,-74.4604917,39.49569034,114 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6605_35.17,-74.5085335,39.338864,116 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6605_35.18,-74.5746798,39.36736005,118 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6605_35.19,-74.7369105,39.46555,120 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1998,1,COM1,3004 -0108_6605_35.21,-74.63068631,39.42256094,124 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6605_35.22,-74.63222345,39.40994688,126 ST.ANDREWS DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6605_35.23,-74.57704719,39.42179197,10 COUNTRY CLUB DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6606_1,-74.52014912,39.31905085,301 GLEN DORNOCH LANE,EGG HARBOR TWP,17,2013,1,RES1,3001 -0108_6701_1,-74.634224,39.366305,403 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6701_10,-74.49117626,39.33092023,102 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6701_11,-74.64059947,39.52786217,104 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3004 -0108_6701_12,-74.63222224,39.40845087,106 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6701_13,-74.53950307,39.46046579,108 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6701_14,-74.53225947,39.38848318,110 BURK AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6701_15,-74.53067683,39.38691988,112 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6701_16,-74.6341705,39.5340645,114 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6701_2,-74.720814,39.650278,405 ZION ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6701_3,-74.42391715,39.37224019,407 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6701_4,-74.59555684,39.31250596,409 ZION ROAD,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_6701_5,-74.897059,39.539934,411 ZION ROAD,EGG HARBOR TWP,16,1970,1,COM10,3003 -0108_6701_6,-74.4799125,39.3383155,413 ZION ROAD,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_6701_7,-74.492298,39.453354,415 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES3A,3001 -0108_6701_8,-74.520541,39.387251,417 ZION ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6701_9,-74.5197175,39.3185725,100 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES3B,3001 -0108_6702_1,-74.72368,39.43629,101 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_10,-74.52307081,39.39756097,102 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,COM4,3004 -0108_6702_11,-74.52854361,39.40003881,104 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_12,-74.56105972,39.35618638,106 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_13,-74.41592476,39.36683484,108 FISHER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6702_14,-74.491882,39.4277675,110 FISHER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6702_15,-74.568385,39.3547185,112 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_16,-74.43983935,39.36733135,114 FISHER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6702_2,-74.41394568,39.37094197,103 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_3,-74.6478075,39.4613025,105 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_4,-74.76022216,39.64049097,107 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_5,-74.505274,39.412153,109 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_6,-74.59080952,39.42281524,111 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_7,-74.8178635,39.634812,113 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_8,-74.56493961,39.36483233,115 BURK AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6702_9,-74.4618045,39.3486945,100 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_1,-74.51042917,39.32367247,101 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_10,-74.753418,39.4496695,102 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_11,-74.60017489,39.36283921,104 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_12,-74.54774416,39.38865297,106 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_13,-74.59706626,39.51281714,108 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_14,-74.50136617,39.43261243,110 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_15,-74.4975565,39.490476,112 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_16,-74.94687668,39.49670692,114 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_2,-74.94180044,39.52427132,103 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_3,-74.539385,39.467144,105 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_4,-74.49871381,39.43418036,107 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_5,-74.80085497,39.63512732,109 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_6,-74.59617864,39.35737145,111 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,COM1,3004 -0108_6703_7,-74.450842,39.371535,113 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_8,-74.81112816,39.65283821,115 FISHER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6703_9,-74.66167871,39.54715518,100 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_1,-74.58571431,39.42367543,101 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_10,-74.9580365,39.518821,102 COLONIAL DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_11,-74.4916395,39.522934,104 COLONIAL DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_12,-74.7857143,39.63376027,106 COLONIAL DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_13,-74.81268894,39.63669731,108 COLONIAL DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_14,-74.78478306,39.636386,110 COLONIAL DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6704_15,-74.58966102,39.3340907,112 COLONIAL DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6704_16,-74.500258,39.4172475,114 COLONIAL DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_2,-74.57827365,39.34368745,103 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_3,-74.52968702,39.40125432,105 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_4,-74.56654001,39.35972564,107 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_5,-74.8306795,39.3826935,109 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_6,-74.4367435,39.518476,111 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_7,-74.88222881,39.48405359,113 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6704_8,-74.3783035,39.4133245,115 GRANT AVENUE,EGG HARBOR TWP,16,1970,1,AGR1,3001 -0108_6704_9,-74.522234,39.39404917,100 COLONIAL DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6705_1,-74.61730061,39.53632465,101 COLONIAL DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6705_10,-74.920009,39.5648525,33 HILLTOP LANE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_6705_11,-74.94645772,39.50958975,100 PARK LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6705_12,-74.6018845,39.371381,35 HILLTOP LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6705_13,-74.855332,39.45116,102 PARK LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6705_14,-74.47025017,39.48272325,37 HILLTOP LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6705_15,-74.94884976,39.49024347,104 PARK LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6705_16,-74.50384908,39.40908473,106 PARK LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6705_17,-74.5036985,39.4141845,108 PARK LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6705_18,-74.6925625,39.41514083,110 PARK LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6705_5,-74.544607,39.39897,105 COLONIAL DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6706_1,-74.48875133,39.44105133,379 ZION ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_6706_10,-74.85957516,39.55440548,107 JEROME AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6706_11,-74.40781031,39.38167802,109 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6706_12,-74.471453,39.3451015,111 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_13,-74.6055355,39.590554,113 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_14,-74.8514355,39.393342,115 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_15,-74.68881687,39.44703953,117 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_16,-74.487919,39.3377365,119 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_17,-74.55861459,39.47248228,121 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_18,-74.7817023,39.67333391,123 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_19,-74.623196,39.3929035,125 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_2,-74.50984201,39.33556168,381 ZION ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_6706_20,-74.59314514,39.36440372,127 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_21,-74.58177971,39.33217356,122 SEASIDE AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6706_23,-74.82825666,39.56810266,118 SEASIDE AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_24,-74.4892385,39.335968,116 SEASIDE AVENUE,EGG HARBOR TWP,16,1973,1,AGR1,3001 -0108_6706_25,-74.3731605,39.410543,9 ROYAL AVENUE,EGG HARBOR TWP,16,1973,1,COM1,3004 -0108_6706_26,-74.53803926,39.3836982,219 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_27,-74.5227805,39.442762,217 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_28,-74.49436619,39.3343162,215 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_29,-74.64299878,39.3609369,213 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_3.01,-74.494248,39.460212,391 ZION ROAD,EGG HARBOR TWP,,0,1,AGR1,3001 -0108_6706_3.04,-74.51604875,39.32016383,389 ZION ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6706_30,-74.60405784,39.47528451,211 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6706_31,-74.46344216,39.34775668,209 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_32,-74.52464866,39.40304756,207 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_33,-74.640671,39.406922,205 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6706_34,-74.57646666,39.36539273,203 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_35,-74.51272778,39.45043792,201 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_36,-74.62447904,39.43271195,117 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_37,-74.5078695,39.454311,115 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6706_38,-74.80333651,39.62891195,113 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_39,-74.59214091,39.36036883,111 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_4.01,-74.52980083,39.39619952,2 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.02,-74.86389386,39.43630769,4 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.03,-74.500562,39.520095,6 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.04,-74.52110652,39.38955403,8 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES3A,3001 -0108_6706_4.05,-74.49787395,39.46194069,10 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.06,-74.6393129,39.44543676,12 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.07,-74.679712,39.446404,17 HUNTER COURT,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6706_4.08,-74.47107436,39.50959053,15 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.09,-74.89400128,39.55648521,13 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.11,-74.46763606,39.48958385,9 HUNTER COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6706_4.12,-74.8742064,39.60317108,7 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.13,-74.59731196,39.30947685,5 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.14,-74.497008,39.527466,3 HUNTER COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.15,-74.494866,39.493815,1 HUNTER COURT,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6706_4.16,-74.4995355,39.416293,102 WOODSIDE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6706_4.17,-74.48651244,39.43835816,104 WOODSIDE DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.18,-74.4901635,39.3338255,106 WOODSIDE DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_6706_4.19,-74.8003495,39.649981,108 WOODSIDE DRIVE,EGG HARBOR TWP,16,2000,1,GOV1,3004 -0108_6706_4.21,-74.4920848,39.4354964,112 WOODSIDE DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6706_4.22,-74.812479,39.63211,114 WOODSIDE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6706_4.23,-74.59243518,39.32453514,116 WOODSIDE DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6706_4.24,-74.5022,39.3306645,118 WOODSIDE DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6706_4.25,-74.49113905,39.42217662,120 WOODSIDE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6706_4.26,-74.50759659,39.33146284,122 WOODSIDE DRIVE,EGG HARBOR TWP,16,2001,1,RES3A,3004 -0108_6706_4.27,-74.53266066,39.39422251,101 PARK LANE,EGG HARBOR TWP,16,2001,1,AGR1,3001 -0108_6706_4.28,-74.53245929,39.30730763,103 PARK LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_4.31,-74.5953305,39.3096375,107 PARK LANE,EGG HARBOR TWP,16,2000,1,COM8,3004 -0108_6706_4.32,-74.804698,39.6366325,109 PARK LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6706_40,-74.6607605,39.547149,109 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_41,-74.45034661,39.35538317,107 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_42,-74.95031734,39.4918309,105 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_43,-74.58646243,39.34899473,103 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_44,-74.9436995,39.4907985,101 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6706_45,-74.57962917,39.34344001,429 ZION ROAD,EGG HARBOR TWP,16,1998,1,AGR1,3001 -0108_6706_46.01,-74.71338272,39.43517504,423 ZION ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6706_46.02,-74.47522137,39.4932952,425 ZION ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6706_46.03,-74.48493158,39.42947442,427 ZION ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6706_47,-74.589093,39.41155,421 ZION ROAD,EGG HARBOR TWP,16,1988,1,RES3A,3001 -0108_6706_48,-74.7642235,39.636825,2 HILLTOP LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6706_49,-74.55732773,39.36648146,4 HILLTOP LANE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6706_50,-74.590353,39.4108375,6 HILLTOP LANE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6706_51,-74.6996035,39.572472,8 HILLTOP LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6706_52,-74.5762195,39.422103,10 HILLTOP LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6706_53,-74.9556535,39.5394745,12 HILLTOP LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6706_54,-74.60444233,39.32626448,14 HILLTOP LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6706_55,-74.36801,39.405611,16 HILLTOP LANE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_6706_58.01,-74.65287872,39.57244782,101 CABOT LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.02,-74.59919579,39.3427915,34 HILLTOP LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6706_58.03,-74.61054811,39.33958619,36 HILLTOP LANE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6706_58.04,-74.46720186,39.34460683,38 HILLTOP LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6706_58.05,-74.64901004,39.53232584,103 CABOT LANE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6706_58.06,-74.6251691,39.38219304,105 CABOT LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.07,-74.45543997,39.47463317,107 CABOT LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.08,-74.65643934,39.51722946,109 CABOT LANE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6706_58.09,-74.88453895,39.58502478,111 CABOT LANE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6706_58.11,-74.8346305,39.483593,115 CABOT LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.12,-74.6456475,39.3814485,110 CABOT LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.13,-74.4976915,39.4332085,108 CABOT LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6706_58.14,-74.9272295,39.515781,106 CABOT LANE,EGG HARBOR TWP,16,2002,1,COM3,3004 -0108_6706_58.15,-74.8145736,39.6331942,104 CABOT LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.16,-74.6957193,39.35568284,201 EASTON COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_6706_58.17,-74.72084673,39.44303918,203 EASTON COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.18,-74.9257175,39.525231,205 EASTON COURT,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6706_58.19,-74.51685232,39.32575097,207 EASTON COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6706_58.21,-74.4999535,39.3265985,204 EASTON COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.22,-74.9645275,39.512207,202 EASTON COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.23,-74.5810314,39.42992669,200 EASTON COURT,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6706_58.24,-74.522489,39.3929365,100 CABOT LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6706_7,-74.530781,39.3865525,101 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_8,-74.489432,39.338836,103 JEROME AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6706_9,-74.54551547,39.37413936,105 JEROME AVENUE,EGG HARBOR TWP,,1973,1,GOV1,3004 -0108_6707_1,-74.47526216,39.4868006,200 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6707_10,-74.814326,39.627511,201 BOSTON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6707_11,-74.926966,39.5078705,203 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6707_12,-74.6465205,39.404877,205 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_6707_13,-74.50634152,39.33121668,207 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6707_14,-74.57544795,39.40947569,209 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6707_15,-74.601818,39.481853,211 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6707_16,-74.524983,39.391099,213 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6707_17,-74.579363,39.475531,215 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6707_18,-74.66364192,39.44578526,217 BOSTON AVENUE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_6707_2,-74.364557,39.420434,202 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6707_3,-74.6454345,39.433678,204 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6707_4,-74.6009042,39.31523073,206 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6707_5,-74.5836595,39.48625,208 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6707_6,-74.565365,39.4129505,210 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6707_7,-74.8126145,39.4396535,212 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6707_8,-74.57159477,39.3363905,214 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6707_9,-74.60785057,39.32425595,216 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_6708_1,-74.60514318,39.43924704,100 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6708_10,-74.52823617,39.46278851,437 ZION ROAD,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_6708_11,-74.49375248,39.33631116,103 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_12,-74.6009596,39.38045522,105 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_13,-74.75795523,39.42920153,107 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_14,-74.8094425,39.609646,109 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3004 -0108_6708_15,-74.61465389,39.37283783,111 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_16,-74.69849278,39.49202647,113 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6708_17,-74.83355451,39.53468323,115 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_18,-74.50652025,39.4937366,117 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_2,-74.63251415,39.35826823,102 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_3,-74.59864032,39.36121052,104 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6708_4,-74.49430075,39.49426295,106 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_5,-74.58455933,39.35932754,108 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6708_6,-74.794126,39.465813,110 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_7,-74.5503165,39.3853595,112 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_8,-74.692392,39.41485,114 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6708_9,-74.80208948,39.64801947,116 WEYMOUTH AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_1,-74.36661391,39.42122131,100 BOSTON AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_6709_10,-74.7169325,39.397738,101 DOVER AVENUE,EGG HARBOR TWP,15,1998,1,GOV1,3004 -0108_6709_11,-74.36226617,39.41243149,103 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_12,-74.5382604,39.38045216,105 DOVER AVENUE,EGG HARBOR TWP,16,1969,1,GOV1,3004 -0108_6709_13,-74.53192383,39.49860685,107 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6709_14,-74.60234812,39.3854325,109 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_15,-74.5114635,39.337147,111 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_16,-74.50549853,39.45359883,113 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_17,-74.4933335,39.435365,115 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_18,-74.4653565,39.34479847,117 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_2,-74.50292507,39.4289377,102 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_3,-74.44263005,39.37036269,104 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_4,-74.587927,39.32531199,106 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6709_5,-74.573658,39.40814217,108 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_6,-74.56779382,39.36337649,110 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_7,-74.48491759,39.33819832,112 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6709_8,-74.81572922,39.38580317,114 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6709_9,-74.79911638,39.65486788,116 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6710_1,-74.92897975,39.48924666,200 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6710_10,-74.37496,39.419458,209 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6710_2,-74.62265825,39.43150373,202 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6710_3,-74.621848,39.3690605,204 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6710_4,-74.6646426,39.39512917,206 BOSTON AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_6710_5,-74.37270641,39.40267032,208 BOSTON AVENUE,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_6710_6,-74.558571,39.45893,201 DOVER AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6710_7,-74.56550312,39.37005152,203 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,AGR1,3001 -0108_6710_8,-74.65229766,39.39595056,205 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6710_9,-74.6364051,39.44464574,207 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_1,-74.58004905,39.34357838,443 ZION ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6711_10,-74.55132601,39.40136183,445 ZION ROAD,EGG HARBOR TWP,16,1998,1,GOV1,3004 -0108_6711_11,-74.62053544,39.43075418,101 IOWA AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_6711_12,-74.37383654,39.40016886,103 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_13,-74.5595818,39.50242799,105 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6711_14,-74.46251393,39.46708325,107 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_15,-74.89388791,39.47221409,109 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3004 -0108_6711_16,-74.58196962,39.40484981,111 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_17,-74.5641435,39.410872,115 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_18,-74.4934355,39.3386545,447 ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_2,-74.60073522,39.37279959,102 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6711_3,-74.79268745,39.63704122,104 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_4,-74.58341437,39.37637211,106 DOVER AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_6711_5,-74.4730575,39.341146,108 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_6,-74.6533445,39.4056555,110 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_7,-74.46414081,39.49292904,112 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6711_8,-74.55480264,39.51025506,114 DOVER AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_6711_9,-74.77567324,39.63141023,116 DOVER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6712_1,-74.5107735,39.3363835,200 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6712_2,-74.586055,39.330232,201 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6712_3,-74.77803567,39.64026501,202 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6712_4,-74.60214932,39.40805445,204 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6712_5,-74.91717076,39.48860497,206 DOVER AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6712_6,-74.76883623,39.63604854,208 DOVER AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6713_1,-74.599294,39.409419,1 ROBERT BEST ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_6713_10,-74.42951196,39.36047398,35 ROBERT BEST ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6713_11,-74.55249616,39.37513303,37 ROBERT BEST ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6713_12.01,-74.49292455,39.43545047,102 REED AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6713_12.02,-74.404014,39.3810495,104 REED AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6713_12.03,-74.54960094,39.46550471,3 RHONDA COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6713_12.04,-74.5874145,39.3268965,5 RHONDA COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6713_12.05,-74.6858275,39.4903565,7 RHONDA COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6713_12.06,-74.6487115,39.329855,39 ROBERT BEST ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6713_12.07,-74.502173,39.4927665,4 RHONDA COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6713_12.08,-74.35810083,39.414974,2 RHONDA COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_6713_13,-74.74699163,39.44526359,43 ROBERT BEST ROAD,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_6713_14,-74.4955637,39.42558358,45 ROBERT BEST ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6713_15,-74.3720135,39.39943917,308 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_16,-74.77657166,39.64560254,306 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_17,-74.60097183,39.36864066,304 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_18,-74.45170711,39.49643594,302 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_19,-74.52802532,39.31181301,300 BOSTON AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_6713_2,-74.52362396,39.46012369,7 ROBERT BEST ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6713_20,-74.47908124,39.37136155,214 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_21,-74.54617264,39.47028083,212 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_22,-74.53979292,39.46778773,210 BOSTON AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_27,-74.52081085,39.31812807,208 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_28,-74.499987,39.3354955,206 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_29,-74.7892015,39.64141,204 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6713_3,-74.5953899,39.41850469,21 ROBERT BEST ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_6713_30,-74.78880287,39.64302531,202 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_31,-74.531663,39.385339,200 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_32,-74.40523,39.3825965,118 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_33,-74.6477935,39.548772,116 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_34,-74.52383781,39.39523197,114 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6713_35,-74.44337078,39.37219867,112 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_36,-74.930643,39.5211435,110 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6713_37,-74.59453417,39.34240508,108 IOWA AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6713_38,-74.80404009,39.63714235,106 IOWA AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6713_39,-74.79909637,39.63909678,104 IOWA AVENUE,EGG HARBOR TWP,16,1973,1,GOV1,3004 -0108_6713_4,-74.515298,39.3870325,23 ROBERT BEST ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6713_40,-74.64277588,39.53216564,102 IOWA AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_6713_41,-74.46356582,39.35519052,449 ZION ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6713_5,-74.59646363,39.329559,25 ROBERT BEST ROAD,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_6713_6,-74.50165,39.330594,27 ROBERT BEST ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6713_7,-74.57349184,39.36236759,29 ROBERT BEST ROAD,EGG HARBOR TWP,16,1982,1,RES1,3004 -0108_6713_8,-74.4782595,39.340696,31 ROBERT BEST ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_6713_9,-74.588779,39.4142095,33 ROBERT BEST ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_6714_1.03,-74.6103565,39.3257125,3009 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6714_1.04,-74.59168628,39.37897988,3011 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6714_1.05,-74.62250309,39.38234066,3013 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6714_2,-74.7368696,39.46119414,3001 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6714_3,-74.61969617,39.377892,3007 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_6715_1,-74.56845843,39.41226225,22 ROBERT BEST ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_6715_10,-74.8773477,39.59521456,30 ROBERT BEST ROAD,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_6715_11,-74.58597,39.327549,28 ROBERT BEST ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_6715_12,-74.4449195,39.3821345,26 ROBERT BEST ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_6715_2,-74.4903525,39.439857,3025 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6715_3,-74.48161017,39.34129999,3031 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6715_4,-74.87343843,39.60068827,3037 OCEAN HTS AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6715_8.01,-74.41474668,39.50427433,4 CLARK AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_6715_8.02,-74.58660533,39.32361195,2 CLARK AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6715_8.03,-74.9601005,39.512551,36 ROBERT BEST ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6715_8.04,-74.52589001,39.38930016,34 ROBERT BEST ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6715_8.05,-74.51803807,39.32276134,38 ROBERT BEST ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_6715_9,-74.98007512,39.51315979,32 ROBERT BEST ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6716_1,-74.603482,39.350485,416 BOSTON AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_6716_10,-74.53798033,39.4785535,42 ROBERT BEST ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6716_12,-74.52877825,39.3939582,17 CLARK AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_6716_2,-74.63014206,39.4156874,414 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6716_3,-74.509229,39.503595,412 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6716_4,-74.660464,39.3475525,410 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6716_5,-74.55549059,39.35724822,408 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6716_6,-74.82624368,39.39447298,406 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6716_7,-74.84267789,39.40198445,404 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6716_8,-74.55567082,39.39080845,402 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6716_9,-74.51520495,39.39835917,44 ROBERT BEST ROAD,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_6717_1,-74.55539177,39.36236008,425 BOSTON AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6717_10,-74.37682384,39.402926,423 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6717_2,-74.97392869,39.50777563,64 ROBERT BEST ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6717_3,-74.6015443,39.39648278,201 JEROME AVENUE,EGG HARBOR TWP,16,1986,1,GOV1,3004 -0108_6717_4,-74.54075635,39.3811388,203 JEROME AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6717_5,-74.41309388,39.36899938,205 JEROME AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6717_6,-74.70438119,39.48503305,207 JEROME AVENUE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_6717_7,-74.51566484,39.46621446,417 BOSTON AVENUE,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_6717_8,-74.45560363,39.47861772,419 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6717_9,-74.6797645,39.3515895,421 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6718_1,-74.732585,39.4630665,62 ROBERT BEST ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6718_10,-74.58491538,39.3644281,208 JEROME AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6718_2,-74.5372805,39.373208,60 ROBERT BEST ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_6718_3,-74.64697417,39.53169351,58 ROBERT BEST ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6718_4,-74.44313776,39.37229295,202 JEROME AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6718_5,-74.79288816,39.62766854,204 JEROME AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6718_6,-74.8065345,39.640159,206 JEROME AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_6718_7,-74.89587989,39.48280094,201 HURON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6718_8,-74.807932,39.4898385,203 HURON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6718_9,-74.48494791,39.46345466,411 BOSTON AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_6719_1,-74.83113589,39.46262754,56 ROBERT BEST ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6719_2,-74.51046437,39.32654203,54 ROBERT BEST ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6719_3,-74.765748,39.6112835,52 ROBERT BEST ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6719_4,-74.45008681,39.49678013,50 ROBERT BEST ROAD,EGG HARBOR TWP,16,1986,1,GOV1,3004 -0108_6719_5,-74.56634829,39.41607874,401 BOSTON AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6719_6,-74.61693667,39.5999125,403 BOSTON AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6719_7,-74.52069345,39.46130134,405 BOSTON AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6719_8,-74.3937365,39.386064,204 HURON AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6719_9,-74.6027253,39.40761197,202 HURON AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_6720_1,-74.809148,39.641822,114 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_10,-74.51970027,39.40570564,307 BOSTON AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_6720_11,-74.645923,39.5287445,305 BOSTON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_12,-74.4610645,39.347764,303 BOSTON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_13,-74.37538886,39.41714976,301 BOSTON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_14,-74.75267498,39.45229868,14 ROYAL AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_15,-74.63625717,39.53542951,12 ROYAL AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_6720_2,-74.5257225,39.3833205,112 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_3,-74.519273,39.316844,110 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_4,-74.790786,39.533765,108 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_5,-74.505967,39.330876,106 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_6,-74.5616355,39.387508,104 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_7,-74.53844287,39.37687534,102 SEASIDE AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_6720_8,-74.6392025,39.400917,100 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6720_9,-74.4625075,39.547629,309 BOSTON AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6721_1,-74.95073771,39.51339551,114 HURON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_10,-74.6418758,39.52833469,113 SEASIDE AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6721_11,-74.60259969,39.59160104,111 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_12,-74.60661819,39.40676703,109 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_13,-74.555278,39.3649975,107 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_14,-74.8025055,39.640586,105 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_15,-74.92585248,39.47523627,103 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_16,-74.9316235,39.485654,101 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_6721_2,-74.62842,39.3540315,112 HURON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_3,-74.535416,39.377269,110 HURON AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_6721_4,-74.76473359,39.63748018,108 HURON AVENUE,EGG HARBOR TWP,16,1972,1,IND2,3002 -0108_6721_5,-74.59739,39.4357835,106 HURON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_6,-74.629659,39.375944,104 HURON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_7,-74.74771367,39.44603466,102 HURON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_8,-74.547327,39.4742045,100 HURON AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6721_9,-74.79297462,39.63573506,115 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6722_1,-74.51519141,39.32904583,112 JEROME AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6722_2,-74.51268761,39.48300047,110 JEROME AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_6722_3,-74.50498562,39.49190174,108 JEROME AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6722_4,-74.5982135,39.3276545,106 JEROME AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_6722_5,-74.6583126,39.54979935,104 JEROME AVENUE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_6722_6,-74.64036714,39.32228369,102 JEROME AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6722_7,-74.5662931,39.47424288,100 JEROME AVENUE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_6722_8,-74.50601373,39.48327449,101 HURON AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_6723_1,-74.51597807,39.32200927,117 SEASIDE AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6723_2,-74.8823565,39.5968535,122 JEROME AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6723_3,-74.7448395,39.634568,7 ROYAL AVENUE,EGG HARBOR TWP,16,1972,1,RES2,3005 -0108_6723_4,-74.4929155,39.3371825,5 ROYAL AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6723_5,-74.82610482,39.62544903,3 ROYAL AVENUE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_6723_6,-74.46328232,39.35786703,1 ROYAL AVENUE,EGG HARBOR TWP,16,1972,1,GOV1,3004 -0108_6901_1,-74.5884775,39.330321,1700 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6901_11.01,-74.50627335,39.32951298,386 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_6901_15,-74.39362993,39.39038438,360 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1989,1,RES3A,3001 -0108_6901_16,-74.5031217,39.32961533,352 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_6901_18,-74.52814,39.310168,334 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_6901_19,-74.439393,39.3683055,330 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_6901_20,-74.53884778,39.4692994,318 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_6901_21,-74.3984445,39.3868735,314 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_6901_22,-74.54022051,39.37514366,324 STEELMANVILLE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6901_28,-74.48980105,39.4433953,1822 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6901_29,-74.609731,39.3902875,1820 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6901_30,-74.501031,39.4885905,1814 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_6901_31,-74.80253702,39.37358391,1810 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6901_32,-74.59669908,39.51063374,1790 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6901_33,-74.5535109,39.36850919,1762 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6901_34.01,-74.69709943,39.49174484,1760 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6901_34.02,-74.60283993,39.30742584,1758 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_6901_34.03,-74.58823765,39.41337426,1756 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_6901_34.04,-74.49554368,39.4322501,1754 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_6901_34.05,-74.437524,39.3647255,1752 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_6901_34.06,-74.89222177,39.47144548,1750 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_6901_34.07,-74.55843947,39.37067884,1748 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_6901_35,-74.82513776,39.47973814,1746 MAYS LANDING S.P.RD,EGG HARBOR TWP,,2011,1,RES1,3001 -0108_6901_36,-74.48747399,39.53122129,1742 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6901_38,-74.82257888,39.61990864,1734 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_6901_39,-74.5214846,39.32135516,1730 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_6901_42,-74.64776292,39.53396915,1720 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_6901_43,-74.70060639,39.56865501,1716 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6901_44,-74.6070155,39.3303335,1712 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_6901_45,-74.84736263,39.41116616,1708 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_6901_46,-74.370744,39.414699,1706 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_6901_47,-74.5397785,39.3814505,1704 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1955,1,RES1,3001 -0108_6901_48,-74.71076352,39.47324912,1702 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1880,1,GOV1,3004 -0108_6901_5,-74.44873519,39.372919,406 STEELMANVILLE ROAD,EGG HARBOR TWP,15,1950,1,GOV1,3004 -0108_6901_6,-74.48547647,39.49650122,402 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_6901_7,-74.57158663,39.41612462,398 STEELMANVILLE ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_6901_8,-74.63831141,39.41028918,396 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_6901_9,-74.6014405,39.318773,394 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7001_1,-74.58810155,39.4140363,405 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7001_10,-74.49805267,39.329682,148 ROBERT BEST ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7001_11,-74.6293515,39.3494705,142 ROBERT BEST ROAD,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7001_15,-74.62276117,39.43899698,12 HEMLOCK DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7001_16,-74.87248917,39.52706267,10 HEMLOCK DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7001_17,-74.65274198,39.34751279,8 HEMLOCK DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7001_18,-74.57299202,39.34117347,6 HEMLOCK DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7001_19,-74.3729415,39.4077765,4 HEMLOCK DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7001_2,-74.6951215,39.4419425,168 ROBERT BEST ROAD,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_7001_20,-74.8274365,39.636754,2 HEMLOCK DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7001_29,-74.54238433,39.39848739,327 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_7001_34,-74.4819025,39.3407525,389 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7001_35,-74.60719852,39.32246465,393 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1800,1,RES1,3001 -0108_7001_38,-74.46378983,39.358495,401 STEELMANVILLE ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7001_4,-74.61281701,39.3510905,166 ROBERT BEST ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7001_5,-74.6478275,39.4329375,160 ROBERT BEST ROAD,EGG HARBOR TWP,16,1920,1,COM1,3004 -0108_7001_6,-74.59564411,39.32274458,156 ROBERT BEST ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7001_7,-74.4604836,39.49533529,154 ROBERT BEST ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7001_8,-74.4288001,39.36586297,152 ROBERT BEST ROAD,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_7001_9,-74.629139,39.390833,150 ROBERT BEST ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7002_1,-74.66415726,39.53061297,78 ROBERT BEST ROAD,EGG HARBOR TWP,16,1976,1,COM1,3004 -0108_7002_10,-74.46133172,39.34695199,9 HEMLOCK DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7002_11,-74.805052,39.525387,101 WOODSIDE DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7002_2,-74.807093,39.374613,80 ROBERT BEST ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7002_3,-74.94602709,39.5351799,82 ROBERT BEST ROAD,EGG HARBOR TWP,16,1976,1,RES3A,3001 -0108_7002_4,-74.54098984,39.40962303,84 ROBERT BEST ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7002_5,-74.453081,39.3539045,86 ROBERT BEST ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7002_6,-74.501022,39.3312535,1 HEMLOCK DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7002_7,-74.5098595,39.331232,3 HEMLOCK DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7002_8,-74.57302931,39.41216623,5 HEMLOCK DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7002_9,-74.83555547,39.48526868,7 HEMLOCK DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_701_4,-74.63305417,39.34894651,6626 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_701_6,-74.59586231,39.31791696,6634 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_701_9,-74.4901285,39.3360245,6638 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_703_10,-74.45768,39.348698,1 RISLEY AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_703_11,-74.7774245,39.642431,2527 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_703_12,-74.4672705,39.345233,2531 FIRE ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_703_14,-74.55455801,39.35809933,2533 FIRE ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_703_15,-74.79269798,39.64800679,2535 FIRE ROAD,EGG HARBOR TWP,15,1930,1,RES1,3001 -0108_704_1,-74.504307,39.431659,1234 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_704_10,-74.81571517,39.65438822,6726 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_704_13,-74.94233806,39.51832378,6730 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_704_14,-74.45137469,39.35366198,2547 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_704_2,-74.9483915,39.509197,1238 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_704_6,-74.82757,39.400198,DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_704_7,-74.51594118,39.39542751,DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_704_9,-74.6392285,39.4617695,DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7101_1,-74.7211245,39.442992,109 BEVIS MILL ROAD,EGG HARBOR TWP,15,1850,1,RES1,3001 -0108_7101_10,-74.6349465,39.3843685,129 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_100,-74.5114465,39.329877,616 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7101_101,-74.40410286,39.38910394,614 NATHAN LANE,EGG HARBOR TWP,16,1981,1,GOV1,3004 -0108_7101_102,-74.7281845,39.4586095,612 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7101_103,-74.47932182,39.37184164,610 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7101_104,-74.45905385,39.34829085,608 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7101_105,-74.62109479,39.37986997,606 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7101_106,-74.5054155,39.409699,604 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7101_107,-74.58077288,39.35960703,602 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7101_108,-74.44039432,39.36713703,600 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7101_109,-74.50553131,39.32439729,18 ISAACS LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7101_11,-74.96834655,39.51931763,127 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_110,-74.8956315,39.4829375,16 ISAACS LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7101_111,-74.5066886,39.44777714,14 ISAACS LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7101_112,-74.4420945,39.486506,12 ISAACS LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7101_113,-74.9704335,39.512347,10 ISAACS LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7101_114,-74.53103225,39.45116289,8 ISAACS LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7101_115,-74.7170552,39.57977883,6 ISAACS LANE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_116,-74.57594069,39.35520212,4 ISAACS LANE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7101_117,-74.80293102,39.64745533,2 ISAACS LANE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_7101_118,-74.58448657,39.37583434,141 ROBERT BEST ROAD,EGG HARBOR TWP,16,1989,1,COM4,3004 -0108_7101_119,-74.695118,39.561538,143 ROBERT BEST ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_12,-74.56870799,39.51844617,124 FLORIDA AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7101_120,-74.503545,39.4897375,3 SAMUEL DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_121,-74.94271887,39.52942099,5 SAMUEL DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7101_122,-74.591994,39.318653,7 SAMUEL DRIVE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7101_123,-74.554963,39.469818,9 SAMUEL DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_124,-74.5866495,39.3586015,11 SAMUEL DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_125,-74.64538392,39.37647253,145 ROBERT BEST ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_126,-74.66208239,39.54598237,2 SAMUEL DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_127,-74.797007,39.632806,4 SAMUEL DRIVE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_128,-74.49295637,39.46756082,166 BEVIS MILL ROAD,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_7101_13,-74.5481495,39.369265,123 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_130,-74.497654,39.432081,164 BEVIS MILL ROAD,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7101_131.01,-74.950146,39.53425,160 BEVIS MILL ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_7101_131.03,-74.60738216,39.34803001,8 SAMUEL DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7101_131.04,-74.792079,39.6342135,6 SAMUEL DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7101_132,-74.60015995,39.33972883,156 BEVIS MILL ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7101_133.01,-74.4528325,39.370303,152 BEVIS MILL ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7101_133.02,-74.50298776,39.48987054,148 BEVIS MILL ROAD,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7101_133.03,-74.80621862,39.37078457,150 BEVIS MILL ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7101_133.04,-74.56533568,39.38999056,150A BEVIS MILL ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7101_134,-74.57485148,39.35734287,146 BEVIS MILL ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7101_135,-74.50233666,39.42945454,144 BEVIS MILL ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_136,-74.91958326,39.50088797,BEVIS MILL ROAD ROW,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7101_139,-74.516105,39.4018195,BEVIS MILL ROAD ROW,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_7101_14,-74.48397883,39.340058,121 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_141,-74.35606458,39.41534111,138 BEVIS MILL ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_7101_142,-74.612844,39.3505995,124 BEVIS MILL ROAD,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_7101_146,-74.5571065,39.4701105,120 BEVIS MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7101_15,-74.59248881,39.37147599,119 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_16,-74.851801,39.6137855,117 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,COM4,3004 -0108_7101_17,-74.75537415,39.43305005,115 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_18,-74.77652596,39.66404131,113 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_19,-74.48180918,39.43184057,111 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_20,-74.58554664,39.41375432,109 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_21,-74.652647,39.524082,107 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_22,-74.716341,39.4381535,105 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_23,-74.77176208,39.61361961,103 FLORIDA AVENUE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7101_24,-74.42578467,39.36538749,101 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_25,-74.58926895,39.34756116,89 ROBERT BEST ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_26,-74.84293334,39.56265303,91 ROBERT BEST ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_27,-74.54086767,39.56402247,93 ROBERT BEST ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_28,-74.6672105,39.4633945,95 ROBERT BEST ROAD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_7101_29,-74.50175985,39.43475273,97 ROBERT BEST ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_30,-74.917958,39.49372,99 ROBERT BEST ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_31,-74.54503798,39.37914034,2 LINDA LANE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_32,-74.40291263,39.39031624,4 LINDA LANE,EGG HARBOR TWP,16,1967,1,RES1,3001 -0108_7101_33,-74.64998166,39.52715003,6 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_34,-74.49297592,39.43099665,8 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_35,-74.7950905,39.634115,10 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_36,-74.60606907,39.36595081,12 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_37,-74.68425472,39.37870961,14 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3004 -0108_7101_38,-74.52269259,39.32224267,16 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_39,-74.62661579,39.43961227,18 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_40,-74.63617593,39.44455018,20 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_41,-74.60981772,39.38014604,22 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_42,-74.64025234,39.38010783,300 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_43,-74.62280153,39.4223466,302 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_44,-74.49451677,39.33860832,304 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_45,-74.45706831,39.35018399,306 FRANK LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7101_46,-74.50256635,39.33671789,308 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_47,-74.78838,39.635669,310 FRANK LANE,EGG HARBOR TWP,16,1971,1,GOV1,3004 -0108_7101_48,-74.55732,39.3634695,312 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_49,-74.69876252,39.63950935,314 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_5,-74.65304666,39.35145552,353 ZION ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_7101_5.01,-74.53068686,39.38411941,359 ZION ROAD,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_7101_50,-74.68034076,39.48668572,316 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_51,-74.83301368,39.38362296,318 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_52,-74.69836183,39.49739228,320 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_53,-74.62336907,39.31475433,322 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_54,-74.6628425,39.44334284,324 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_55,-74.79603579,39.46563283,326 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_56,-74.51797467,39.40325952,138 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_58,-74.49502556,39.33679866,134 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_59,-74.9178486,39.51019982,132 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_60,-74.75864224,39.29979657,130 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_61,-74.76543108,39.66513387,128 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_62,-74.37497618,39.41352918,126 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_63,-74.65067064,39.53055544,124 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES3A,3001 -0108_7101_64,-74.60042011,39.51059473,122 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES3B,3001 -0108_7101_65,-74.49884033,39.33273551,120 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,GOV1,3004 -0108_7101_66,-74.7471635,39.6345565,118 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_67,-74.63785265,39.36184552,116 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_68,-74.8834495,39.5999915,114 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_69,-74.50813244,39.49304016,112 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_7,-74.43531936,39.36161466,132 BEVIS MILL ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_7101_70,-74.46120908,39.35813467,110 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_71,-74.4976895,39.334964,108 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_72,-74.58661734,39.41310754,106 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_73,-74.7002739,39.50226581,104 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,GOV1,3004 -0108_7101_74,-74.6197385,39.4240245,102 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,GOV1,3004 -0108_7101_75,-74.462536,39.358751,100 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_76,-74.78000351,39.65249764,105 ROBERT BEST ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7101_8,-74.6386685,39.400919,133 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_83,-74.91644904,39.53749738,125 ROBERT BEST ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_84,-74.496561,39.5228395,3 ACADEMY ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_85,-74.61080911,39.32497951,5 ACADEMY ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_86,-74.53767234,39.38750905,7 ACADEMY ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_87,-74.52303578,39.39874185,9 ACADEMY ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_88,-74.48821332,39.42040043,11 ACADEMY ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_89,-74.79933185,39.60063596,13 ACADEMY ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7101_9,-74.627366,39.420161,131 FLORIDA AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7101_90,-74.55807641,39.35951115,15 ACADEMY ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_91,-74.60178731,39.43768852,17 ACADEMY ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7101_92,-74.62496343,39.54366116,19 ACADEMY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7101_93,-74.910912,39.5147415,21 ACADEMY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7101_94,-74.58137696,39.3712751,23 ACADEMY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7101_95,-74.7907185,39.675223,25 ACADEMY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7101_96,-74.49066513,39.42689501,27 ACADEMY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7101_99,-74.72845013,39.45028172,618 NATHAN LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7102_1,-74.55512938,39.47346835,1608 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_7102_10,-74.49762928,39.49732192,1618 MAYS LANDING S.P.RD,EGG HARBOR TWP,45,1972,2,RES1,3001 -0108_7102_11,-74.713331,39.467256,1620 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1750,1,RES1,3001 -0108_7102_12,-74.806366,39.659453,1622 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7102_13,-74.44523043,39.48685635,1624 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1924,1,RES1,3001 -0108_7102_14,-74.53382657,39.40660223,139 BEVIS MILL ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7102_15,-74.926733,39.5085145,38 VELLA LA VELLA LANE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_7102_16,-74.490026,39.4335445,32 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7102_16.01,-74.49908333,39.33127152,34 VELLA LA VELLA LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7102_17,-74.493777,39.335028,26 VELLA LA VELLA LANE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_7102_18,-74.80767814,39.64204295,22 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_7102_19,-74.63800788,39.3426819,20 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_7102_2,-74.65261927,39.35855659,1612 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_7102_20,-74.628904,39.3543935,18 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7102_21,-74.799148,39.43502571,16 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1965,1,RES1,3004 -0108_7102_22,-74.9441135,39.4956875,14 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_7102_23,-74.62537265,39.37954328,12 VELLA LA VELLA LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7102_24,-74.50717301,39.32709617,8 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7102_25,-74.62801135,39.43358047,6 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7102_26,-74.52183055,39.32136888,2 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7102_27,-74.56981116,39.36869399,171 ROBERT BEST ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7102_28,-74.5120635,39.4045635,1658 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1860,1,RES1,3001 -0108_7102_3,-74.3673465,39.4206735,1616 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_7102_31,-74.59935604,39.31839662,1654 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1830,1,RES1,3001 -0108_7102_32,-74.8997161,39.50235125,1648 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7102_4,-74.547174,39.3808075,117 BEVIS MILL ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_7102_6,-74.76292831,39.63756517,123 BEVIS MILL ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7102_7,-74.55088287,39.38190877,125 BEVIS MILL ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7102_8,-74.76118463,39.44592963,127 BEVIS MILL ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7102_9,-74.63572676,39.34818857,129 BEVIS MILL ROAD,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7103_1,-74.63289453,39.41828531,21 VELLA LA VELLA LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7103_10,-74.5658895,39.4735695,19 VELLA LA VELLA LANE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_7103_2,-74.37949513,39.39722615,101 HOLLYWOOD DRIVE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7103_3,-74.553959,39.4263765,103 HOLLYWOOD DRIVE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_7103_4,-74.59183832,39.32325545,105 HOLLYWOOD DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7103_5,-74.58376788,39.5018444,107 HOLLYWOOD DRIVE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_7103_6,-74.6020815,39.5009615,11 VELLA LA VELLA LANE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_7103_7,-74.619474,39.3770395,13 VELLA LA VELLA LANE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_7103_8,-74.61244232,39.40075891,15 VELLA LA VELLA LANE,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_7104_10,-74.88694194,39.59620084,105 LAUTOKA DRIVE,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_7104_11,-74.8179274,39.64271185,103 LAUTOKA DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7104_12,-74.63598528,39.40884509,101 LAUTOKA DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7104_13,-74.5121285,39.327783,7 VELLA LA VELLA LANE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_7104_14,-74.6288792,39.35641674,9 VELLA LA VELLA LANE,EGG HARBOR TWP,15,1955,1,RES1,3001 -0108_7104_15,-74.41330045,39.36966446,108 HOLLYWOOD DRIVE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_7104_16,-74.49886715,39.41919681,106 HOLLYWOOD DRIVE,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_7104_17,-74.36836271,39.41408865,104 HOLLYWOOD DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7104_18,-74.80619042,39.63042115,102 HOLLYWOOD DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_7104_2.01,-74.50282917,39.3304515,33 VELLA LA VELLA LANE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7104_2.02,-74.50668116,39.33080351,35 VELLA LA VELLA LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7104_2.03,-74.50717956,39.33099367,149 BEVIS MILL ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_7104_2.04,-74.63770692,39.42869212,151 BEVIS MILL ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_7104_3,-74.5381195,39.4053135,145 BEVIS MILL ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7104_4,-74.36468116,39.40603479,153 BEVIS MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7104_5,-74.4521905,39.496382,155 BEVIS MILL ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7104_6,-74.60387643,39.31340561,157 BEVIS MILL ROAD,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_7104_7.01,-74.51149423,39.33850653,115 LAUTOKA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7104_7.02,-74.50574494,39.4361007,113 LAUTOKA DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7104_8,-74.384273,39.39339,111 LAUTOKA DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_7104_9,-74.6227022,39.37883163,109 LAUTOKA DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_7105_10,-74.626933,39.3619525,153 ROBERT BEST ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7105_2,-74.49544789,39.4293742,1 VELLA LA VELLA LANE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7105_3,-74.515337,39.3292015,102 LAUTOKA DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7105_4,-74.62430744,39.39398872,104 LAUTOKA DRIVE,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_7105_5,-74.80071795,39.44034826,161 ROBERT BEST ROAD,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_7105_6,-74.81917264,39.63582663,110 LAUTOKA DRIVE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7105_8,-74.86887237,39.43371712,155 ROBERT BEST ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_7105_9,-74.617547,39.4846575,114 LAUTOKA DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7106_1,-74.521006,39.4048445,25 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_10,-74.52417734,39.44912702,10 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_11,-74.537854,39.3842185,8 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_12,-74.590222,39.355556,6 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_13,-74.9241315,39.4807445,4 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_14,-74.80275423,39.60566931,2 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_15,-74.64310096,39.43510101,137 ROBERT BEST ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_16,-74.48925612,39.5223232,139 ROBERT BEST ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_17,-74.6019172,39.37368735,3 ISAACS LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7106_18,-74.79672551,39.62364235,5 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_19,-74.85393097,39.6173713,7 ISAACS LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7106_2,-74.5523105,39.5433815,603 NATHAN LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_20,-74.46539001,39.34565367,9 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_21,-74.5216465,39.4472105,11 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_22,-74.57131294,39.36837631,13 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_23,-74.94990166,39.53354686,15 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_24,-74.51810199,39.40073817,17 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_25,-74.489952,39.4279395,19 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_26,-74.64363865,39.39232731,21 ISAACS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_27,-74.59125642,39.37025468,23 ISAACS LANE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7106_3,-74.5169334,39.32169095,24 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_4,-74.67854934,39.51347003,22 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_5,-74.86579,39.6010525,20 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_6,-74.55522079,39.47132647,18 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7106_7,-74.58090332,39.41383049,16 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_7106_8,-74.650207,39.411288,14 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7106_9,-74.63388632,39.44694048,12 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES3A,3001 -0108_7107_1,-74.48659631,39.33336107,23 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7107_2,-74.54918716,39.37403547,8 MICHAL DRIVE,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_7107_3,-74.8854325,39.5656545,6 MICHAL DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7107_4,-74.88028899,39.46889045,4 MICHAL DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7107_5,-74.753355,39.6349415,2 MICHAL DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7107_6,-74.4568135,39.3516635,17 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7107_7,-74.4975385,39.3329465,19 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7107_8,-74.57632413,39.35134184,21 RUSHWOOD DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7108_1,-74.3980065,39.3870145,9 MICHAL DRIVE,EGG HARBOR TWP,16,1976,1,GOV1,3004 -0108_7108_2,-74.53349685,39.40258351,26 ACADEMY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7108_3,-74.8226495,39.4076735,24 ACADEMY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7108_4,-74.92447979,39.50515073,22 ACADEMY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7108_5,-74.63436497,39.53418316,20 ACADEMY ROAD,EGG HARBOR TWP,16,1980,1,GOV1,3004 -0108_7108_6,-74.57089112,39.42042228,1 MICHAL DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7108_7,-74.631814,39.346992,3 MICHAL DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7108_8,-74.80934833,39.56077149,5 MICHAL DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7108_9,-74.49374577,39.33014217,7 MICHAL DRIVE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7109_1,-74.69442141,39.58546223,701 ABEL LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7109_10,-74.5915625,39.4122785,700 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES3A,3001 -0108_7109_2,-74.50610273,39.33541925,703 ABEL LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7109_3,-74.65443281,39.62530466,705 ABEL LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7109_4,-74.51794966,39.31985995,707 ABEL LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7109_5,-74.49453491,39.4250347,709 ABEL LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7109_6,-74.76612534,39.48687999,708 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7109_7,-74.65843038,39.51083368,706 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7109_8,-74.59946,39.3667885,704 DAVID LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7109_9,-74.49288217,39.33682294,702 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7110_1,-74.51562084,39.40294099,701 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7110_10,-74.57933551,39.4055049,700 COVENTRY LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7110_2,-74.500519,39.3371075,703 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7110_3,-74.78752116,39.61063792,705 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7110_4,-74.541329,39.4091175,707 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES3A,3001 -0108_7110_5,-74.53657611,39.50092658,709 DAVID LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7110_6,-74.63302745,39.43226494,708 COVENTRY LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7110_7,-74.59278554,39.43172715,706 COVENTRY LANE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7110_8,-74.483605,39.4793235,704 COVENTRY LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7110_9,-74.42699416,39.37134651,702 COVENTRY LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_1,-74.7283535,39.589113,701 COVENTRY LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_10,-74.6043435,39.3289475,135 ROBERT BEST ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_2,-74.6419221,39.39115636,703 COVENTRY LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_3,-74.40898088,39.38110432,705 COVENTRY LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_4,-74.51085038,39.33647667,707 COVENTRY LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_5,-74.64226838,39.39077924,709 COVENTRY LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_6,-74.91335812,39.53514075,127 ROBERT BEST ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_7,-74.6038305,39.3281705,129 ROBERT BEST ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_8,-74.78460074,39.64082014,131 ROBERT BEST ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7111_9,-74.371345,39.4030665,133 ROBERT BEST ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7112_1,-74.879929,39.591505,127 CINDY DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_10,-74.47476533,39.4924625,213 MITCHELL DRIVE,EGG HARBOR TWP,16,1965,1,RES3A,3001 -0108_7112_11,-74.7283825,39.4581885,211 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_12,-74.4809675,39.442874,209 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_13,-74.60894117,39.32124263,207 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_14,-74.6119515,39.34091,205 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_15,-74.85014367,39.40402849,203 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_16,-74.6130915,39.418821,201 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,GOV1,3004 -0108_7112_17,-74.5173742,39.32247377,103 ROBERT BEST ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_18,-74.61534597,39.31919166,101 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_19,-74.85373919,39.59111782,103 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_2,-74.47028832,39.34235724,229 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_20,-74.43920048,39.35632383,105 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_21,-74.820635,39.62146,107 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES3A,3001 -0108_7112_22,-74.43073247,39.36574351,109 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_23,-74.52675448,39.38214285,111 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_24,-74.684333,39.38358,113 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_25,-74.77226404,39.62740983,115 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,COM1,3004 -0108_7112_26,-74.62489162,39.35617412,117 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_27,-74.62160885,39.38270505,119 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_28,-74.78968989,39.63236422,121 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_29,-74.7899255,39.643712,123 CINDY DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7112_3,-74.67689185,39.35471723,227 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_30,-74.47751517,39.3423454,125 CINDY DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7112_4,-74.682225,39.3457165,225 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_5,-74.5827375,39.341753,223 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_6,-74.49588,39.4945245,221 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_7,-74.44273596,39.37171721,219 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_8,-74.48410968,39.34529098,217 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7112_9,-74.47459213,39.48143412,215 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7113_1,-74.50251273,39.33728185,21 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7113_2,-74.59065365,39.48212298,19 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7113_3,-74.547996,39.3695525,17 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7113_4,-74.5162195,39.4093585,5 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7113_5,-74.49948022,39.42883507,3 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7113_6,-74.6117595,39.425349,1 LINDA LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_1,-74.6205744,39.36470979,327 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3002 -0108_7114_10,-74.37278747,39.40927731,222 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_11,-74.59265133,39.31218349,224 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_12,-74.56455781,39.40957359,226 MITCHELL DRIVE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_2,-74.6455539,39.39564156,325 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_3,-74.76193023,39.63868525,323 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_4,-74.48806633,39.46869849,315 FRANK LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7114_5,-74.7522795,39.451402,313 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_6,-74.888019,39.59543,311 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_7,-74.59049468,39.33559461,305 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7114_8,-74.59750182,39.31393866,303 FRANK LANE,EGG HARBOR TWP,16,1971,1,RES3A,3001 -0108_7114_9,-74.489577,39.333595,301 FRANK LANE,EGG HARBOR TWP,16,1971,1,COM1,3004 -0108_7115_1,-74.66418041,39.54505565,9 SHADOW DRIVE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7115_2,-74.6001785,39.431625,7 SHADOW DRIVE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7115_3,-74.5456667,39.47643815,5 SHADOW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7115_4,-74.51897011,39.46763537,3 SHADOW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7115_5,-74.51965881,39.47468695,1 SHADOW DRIVE,EGG HARBOR TWP,16,1972,1,RES3A,3004 -0108_7116_1,-74.4932665,39.334969,10 SHADOW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7116_10,-74.51375091,39.32710435,9 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7116_2,-74.50386133,39.33468804,8 SHADOW DRIVE,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_7116_3,-74.56185827,39.37154423,6 SHADOW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7116_4,-74.60620841,39.33226916,4 SHADOW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7116_5,-74.4233165,39.3720245,2 SHADOW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7116_6,-74.5009435,39.4335095,1 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,COM1,3004 -0108_7116_7,-74.51849595,39.38821004,3 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7116_8,-74.66137686,39.40510867,5 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7116_9,-74.55025,39.4119305,7 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,COM1,3004 -0108_7117_1,-74.63773338,39.48954556,10 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3002 -0108_7117_10,-74.69132592,39.41245179,9 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7117_2,-74.82516133,39.41119405,8 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7117_3,-74.63157344,39.39122728,6 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7117_4,-74.50339018,39.44765442,4 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7117_5,-74.47953267,39.33878,2 CARSON AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3002 -0108_7117_6,-74.58121617,39.34373013,1 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_7117_7,-74.57893013,39.3325385,3 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7117_8,-74.7935555,39.519709,5 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7117_9,-74.4966145,39.4949375,7 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_1,-74.4769055,39.340327,10 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_10,-74.423362,39.3723935,9 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_2,-74.54571006,39.38461691,8 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_3,-74.414889,39.3653325,6 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_4,-74.5504266,39.38191553,4 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_5,-74.59892937,39.34418011,2 FAIRVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_6,-74.58858756,39.4280217,1 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_7,-74.6322085,39.6107635,3 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_8,-74.59462517,39.42861478,5 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7118_9,-74.53995678,39.46925541,7 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7119_1,-74.601435,39.4971085,10 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_7119_10,-74.77827951,39.63416886,9 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7119_2,-74.64118057,39.53229387,8 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7119_3,-74.67774635,39.38357682,6 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,COM1,3004 -0108_7119_4,-74.390551,39.3890855,4 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES3B,3001 -0108_7119_5,-74.46409782,39.35491439,2 PINOAK DRIVE,EGG HARBOR TWP,16,1975,1,RES3B,3001 -0108_7119_6,-74.41034659,39.36530938,1 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES3A,3001 -0108_7119_7,-74.57327961,39.36661789,3 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7119_8,-74.57877832,39.42991199,5 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7119_9,-74.94310379,39.51906089,7 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_1,-74.461635,39.3484065,10 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_10,-74.52772884,39.45930722,85 ROBERT BEST ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_2,-74.607887,39.3938535,8 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_3,-74.71795224,39.38903144,6 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_4,-74.59492657,39.40187482,4 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_5,-74.63762692,39.43173127,2 SHELTER AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_6,-74.84042803,39.53665423,77 ROBERT BEST ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_7,-74.3735377,39.41064257,79 ROBERT BEST ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_8,-74.59945321,39.41990157,81 ROBERT BEST ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7120_9,-74.55126383,39.37296547,83 ROBERT BEST ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7201_1,-74.36656242,39.40587132,301 ZION ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7201_11,-74.80431993,39.63916982,13 OLD STAGE ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7201_13,-74.775387,39.6367705,106 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7201_15,-74.47376005,39.48061128,102 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7201_3,-74.57992808,39.34396926,305 ZION ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7201_5,-74.61507935,39.43786051,1 OLD STAGE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7201_6,-74.38402634,39.39804236,3 OLD STAGE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7201_7,-74.46612938,39.34749754,7 OLD STAGE ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7201_9,-74.543114,39.529675,9 OLD STAGE ROAD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_7202_1,-74.495871,39.329466,7 TAFT LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7202_2,-74.77903,39.6546695,5 TAFT LANE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7202_3,-74.528154,39.395178,101 MONROE LANE,EGG HARBOR TWP,16,1980,1,RES1,3002 -0108_7203_1,-74.62104701,39.38167355,311 ZION ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7203_10,-74.83700723,39.59223132,327 ZION ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7203_100,-74.393344,39.3932555,110 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_101,-74.625969,39.505732,108 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_102,-74.50685858,39.32809591,106 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_103,-74.59826102,39.31593647,6 HARBORWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3002 -0108_7203_104,-74.60443858,39.32971656,4 HARBORWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_105,-74.6188455,39.37092,2 HARBORWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_106,-74.44985882,39.35657152,126 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_107,-74.39059283,39.3913635,124 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_108,-74.413382,39.3698055,122 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_11,-74.72797983,39.45509736,329 ZION ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7203_110,-74.58308194,39.36298972,110 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_111,-74.4536175,39.4892605,14 TAFT LANE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7203_112,-74.726805,39.454714,12 TAFT LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7203_114,-74.62859748,39.43253484,8 TAFT LANE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7203_115,-74.76318481,39.62933095,6 TAFT LANE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7203_116,-74.60510269,39.50041587,4 TAFT LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7203_117,-74.524314,39.315173,107 MONROE LANE,EGG HARBOR TWP,16,1974,1,RES1,3002 -0108_7203_118,-74.61529519,39.42855033,109 MONROE LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7203_119,-74.76169706,39.42962024,104 MONROE LANE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7203_12,-74.6154655,39.363535,331 ZION ROAD,EGG HARBOR TWP,16,1999,1,RES1,3004 -0108_7203_120,-74.4701457,39.45921173,2 OLD STAGE ROAD,EGG HARBOR TWP,16,1956,1,RES1,3001 -0108_7203_121,-74.54887217,39.35962989,309 ZION ROAD,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_7203_13,-74.39138821,39.38873119,333 ZION ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7203_14,-74.6390595,39.3421155,337 ZION ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7203_15,-74.595707,39.356492,339 ZION ROAD,EGG HARBOR TWP,16,1930,1,RES3A,3001 -0108_7203_16,-74.52517943,39.31269484,341 ZION ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7203_17.01,-74.66586697,39.63657585,2 STONE MILL COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7203_17.02,-74.54633837,39.47631649,4 STONE MILL COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7203_17.03,-74.49902407,39.46827033,6 STONE MILL COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7203_17.04,-74.88290533,39.50528244,8 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.05,-74.505109,39.435322,10 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.06,-74.53360594,39.31319413,12 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.07,-74.5538965,39.4653395,14 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.08,-74.490016,39.331831,16 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.09,-74.54768166,39.37155197,18 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.10,-74.4987625,39.335749,20 STONE MILL COURT,EGG HARBOR TWP,16,1999,1,AGR1,3001 -0108_7203_17.11,-74.46486501,39.47729334,22 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.12,-74.49060335,39.49772054,24 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.14,-74.67996286,39.55218223,26 STONE MILL COURT,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7203_17.15,-74.6192234,39.38140012,15 STONE MILL COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7203_17.16,-74.66375176,39.45400403,13 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.17,-74.4308955,39.374009,11 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.18,-74.63239406,39.35970204,9 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.19,-74.602932,39.384368,7 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.20,-74.6162665,39.3782675,5 STONE MILL COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7203_17.21,-74.57479398,39.41934366,3 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_17.22,-74.5082301,39.46224582,1 STONE MILL COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_18,-74.60434506,39.47732701,349 ZION ROAD,EGG HARBOR TWP,16,1954,1,COM8,3004 -0108_7203_2,-74.7822378,39.51070861,313 ZION ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7203_24,-74.58536133,39.34882579,172 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_7203_25,-74.46240886,39.34698034,166 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1918,2,RES1,3001 -0108_7203_26,-74.785153,39.63379,164 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_7203_27,-74.62592023,39.42351542,160 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1922,1,RES1,3001 -0108_7203_28,-74.38162187,39.39955751,156 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7203_29,-74.54900266,39.36154574,1 WHITEWATER LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7203_3,-74.7356545,39.4521215,315 ZION ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7203_36,-74.5132015,39.3219555,15 WHITEWATER LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7203_37,-74.60533622,39.37252869,17 WHITEWATER LANE,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_7203_38,-74.550503,39.3674135,19 WHITEWATER LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7203_39,-74.5890218,39.37621705,21 WHITEWATER LANE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7203_4,-74.535987,39.3845615,317 ZION ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7203_40,-74.64435292,39.5359574,23 WHITEWATER LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7203_41,-74.51341517,39.32351998,25 WHITEWATER LANE,EGG HARBOR TWP,16,1991,1,REL1,3004 -0108_7203_43,-74.79311371,39.53411394,24 WHITEWATER LANE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7203_44,-74.545062,39.376958,22 WHITEWATER LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7203_45,-74.6139905,39.428007,20 WHITEWATER LANE,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_7203_46,-74.84132806,39.6029466,18 WHITEWATER LANE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7203_47,-74.58110187,39.36580507,16 WHITEWATER LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7203_48,-74.8104155,39.5208135,14 WHITEWATER LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7203_49,-74.578067,39.366083,12 WHITEWATER LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7203_5,-74.56868682,39.36124146,1 HUMBERT LANE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_7203_50,-74.66560367,39.522467,10 WHITEWATER LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7203_51,-74.6049305,39.3145915,8 WHITEWATER LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7203_52,-74.590586,39.3498035,6 WHITEWATER LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7203_53,-74.57189658,39.4264393,4 WHITEWATER LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7203_54,-74.5866285,39.3245865,2 WHITEWATER LANE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7203_55,-74.61851719,39.54052744,152 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7203_56,-74.82488134,39.5322251,150 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1960,1,COM1,3004 -0108_7203_57,-74.57774406,39.5316181,148 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1970,1,RES1,3002 -0108_7203_58,-74.50190834,39.50322004,146 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7203_59.01,-74.48546455,39.33613086,100 CAPTAINS WALK,EGG HARBOR TWP,16,1997,1,COM1,3004 -0108_7203_59.02,-74.37091102,39.40144746,142 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1998,1,COM1,3004 -0108_7203_59.03,-74.593729,39.4287465,101 CAPTAINS WALK,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_7203_60,-74.60726164,39.31659026,140 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1800,1,RES1,3001 -0108_7203_61,-74.51875345,39.53128856,200 GUNPOWDER ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_7203_62,-74.528736,39.4030915,202 GUNPOWDER ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7203_63,-74.55625629,39.47549291,204 GUNPOWDER ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7203_64,-74.4586245,39.4900655,206 GUNPOWDER ROAD,EGG HARBOR TWP,16,1986,1,COM1,3004 -0108_7203_65,-74.660843,39.5187365,208 GUNPOWDER ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7203_66,-74.5945215,39.3160495,210 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_67,-74.489547,39.4282275,212 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_68,-74.59901334,39.49815701,214 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_69,-74.92558869,39.50780275,216 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_7,-74.533223,39.3149945,321 ZION ROAD,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_7203_70,-74.6404433,39.5308583,218 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_71,-74.635548,39.429368,220 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_72,-74.63034412,39.43139468,222 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_73,-74.91275888,39.51124218,224 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_74,-74.48942885,39.4336444,226 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_75,-74.5108196,39.52751795,228 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7203_76,-74.960842,39.512785,230 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_77,-74.4493305,39.374278,232 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_78,-74.498876,39.4943105,234 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_79,-74.58679,39.316953,236 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_8,-74.7153315,39.5770785,323 ZION ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7203_80,-74.60399403,39.49879134,238 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7203_81,-74.5707695,39.3690515,240 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_82,-74.51066979,39.44377903,314 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_83,-74.68438886,39.44358235,312 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_84,-74.663266,39.3622135,310 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_85,-74.8073662,39.64021916,308 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7203_86,-74.82001456,39.47212614,306 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_87,-74.37100017,39.40762749,304 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_88,-74.63472465,39.34203254,302 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1973,1,EDU1,3004 -0108_7203_89,-74.51844409,39.39078682,300 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7203_9,-74.73840063,39.70438501,325 ZION ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7203_90,-74.5951355,39.3129425,132 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_91,-74.589271,39.330748,130 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_92,-74.37610405,39.41419966,128 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_93,-74.5569315,39.398466,126 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_94,-74.7237335,39.45823,124 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7203_95,-74.44768902,39.35749675,122 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_96,-74.6729095,39.414337,120 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES3B,3001 -0108_7203_97,-74.4961085,39.33214,118 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_98,-74.3846425,39.397494,116 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7203_99,-74.73455206,39.45066511,DEER PATH DRIVE (BASIN),EGG HARBOR TWP,,0,1,RES1,3001 -0108_7204_1,-74.6294085,39.390242,1 HARBORWOOD DRIVE,EGG HARBOR TWP,16,1975,1,IND2,3002 -0108_7204_2,-74.47630724,39.33880778,3 HARBORWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3004 -0108_7204_3,-74.81601185,39.63292273,5 HARBORWOOD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7204_4,-74.50043429,39.44639763,100 DEER PATH DRIVE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7204_5,-74.58250634,39.33875001,201 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7204_6,-74.946149,39.5185365,136 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7204_7,-74.803915,39.354002,134 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7205_1,-74.5108805,39.402287,99 DEER PATH DRIVE,EGG HARBOR TWP,16,1987,1,IND1,3004 -0108_7205_10,-74.40218568,39.38714009,312 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_11,-74.50028633,39.332256,310 CRICKET DRIVE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7205_12,-74.5235205,39.394546,308 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_13,-74.58291096,39.41443354,112 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_14,-74.554905,39.4742525,110 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7205_15,-74.388187,39.393113,108 APPLES DRIVE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7205_16,-74.58883499,39.32917584,106 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7205_17,-74.37974915,39.41853931,104 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_18,-74.60802736,39.48965924,102 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_19,-74.37005423,39.4192811,100 APPLES DRIVE,EGG HARBOR TWP,16,1985,1,RES1,3002 -0108_7205_2,-74.51902277,39.45554113,101 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7205_20,-74.56289587,39.35794483,209 GUNPOWDER ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7205_3,-74.6298427,39.39129741,103 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_4,-74.520334,39.3875955,105 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_5,-74.54439884,39.37331496,107 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_6,-74.63665,39.4090585,109 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_7,-74.61284034,39.31541725,111 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7205_8,-74.49584479,39.33182837,113 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,AGR1,3001 -0108_7205_9,-74.482133,39.3542035,115 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7206_1,-74.89934765,39.4804133,101 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7206_10,-74.5531505,39.472409,221 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3004 -0108_7206_11,-74.83644892,39.40266117,219 GUNPOWDER ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7206_2,-74.56259035,39.35714538,103 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7206_3,-74.38149823,39.4165982,105 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7206_4,-74.45380096,39.50199082,107 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,COM1,3004 -0108_7206_5,-74.67324526,39.37051358,109 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7206_6,-74.51096,39.428492,111 APPLES DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7206_7,-74.67943931,39.44517183,304 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7206_8,-74.43242151,39.36003924,302 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7206_9,-74.561794,39.4143815,300 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_1,-74.59530568,39.42009611,309 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_10,-74.92467079,39.50466753,305 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_11,-74.54450804,39.37471926,307 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_12,-74.56793931,39.37255839,237 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_13,-74.57216109,39.54312764,235 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7207_14,-74.60366959,39.30838878,233 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7207_15,-74.5702635,39.4147555,231 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_16,-74.9523635,39.5182685,229 GUNPOWDER ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_17,-74.745771,39.591226,301 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_18,-74.51335589,39.4419543,303 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_19,-74.6014569,39.41589104,305 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_2,-74.96473394,39.52082918,311 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_20,-74.5281953,39.54560854,307 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_21,-74.81798946,39.64969159,5 PATRICIAN TERRACE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_22,-74.59342705,39.34057916,4 PATRICIAN TERRACE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_23,-74.48506589,39.33564982,3 PATRICIAN TERRACE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_24,-74.9226235,39.522752,2 PATRICIAN TERRACE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_25,-74.48903896,39.53515508,1 PATRICIAN TERRACE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_3,-74.593303,39.3155095,313 CRICKET DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_4,-74.467391,39.3442645,127 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_5,-74.72365869,39.64983782,129 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_6,-74.37665613,39.40027215,131 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_7,-74.4998745,39.328131,133 DEER PATH DRIVE,EGG HARBOR TWP,16,1975,1,GOV1,3004 -0108_7207_8,-74.5280722,39.31154331,301 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7207_9,-74.55480521,39.47448303,303 ARROWHEAD DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7208_1,-74.49524284,39.33337898,174 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1912,1,RES1,3001 -0108_7208_2,-74.55366005,39.46630079,103 BEVIS MILL ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7208_4,-74.61515263,39.48761338,1606 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1840,1,RES1,3001 -0108_7208_5,-74.5483295,39.3788965,1600 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1957,1,RES1,3001 -0108_7208_6,-74.618254,39.43881,176 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_7209_30,-74.4631905,39.4662705,3 WHITEWATER LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7209_31,-74.73032582,39.45851857,5 WHITEWATER LANE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7209_32,-74.53194665,39.41819998,7 WHITEWATER LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7209_33,-74.4982508,39.42325246,9 WHITEWATER LANE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_7209_34,-74.63684574,39.43285139,11 WHITEWATER LANE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7209_35,-74.756161,39.4321715,13 WHITEWATER LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7301_10,-74.40096,39.3914745,322 ZION ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7301_13,-74.64412215,39.52932605,15 COACHMAN DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7301_14,-74.4976645,39.432429,13 COACHMAN DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7301_15,-74.51021337,39.43586514,11 COACHMAN DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7301_16,-74.7536515,39.2999725,9 COACHMAN DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7301_17,-74.59753623,39.32394263,7 COACHMAN DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7301_18,-74.5300748,39.38166938,5 COACHMAN DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7301_19,-74.5551895,39.361843,3 COACHMAN DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7301_20,-74.64448288,39.52946408,1 COACHMAN DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7301_22,-74.57059044,39.37380684,4 COACHMAN DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7301_23,-74.48828783,39.459449,6 COACHMAN DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7301_24,-74.5764038,39.40974192,8 COACHMAN DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7301_25,-74.6600955,39.516269,10 COACHMAN DRIVE,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_7301_26,-74.616971,39.4301485,12 COACHMAN DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7301_27,-74.6575005,39.364325,14 COACHMAN DRIVE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7301_28,-74.84631,39.5995375,16 COACHMAN DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7301_29,-74.405191,39.3906375,18 COACHMAN DRIVE,EGG HARBOR TWP,16,1999,1,GOV1,3004 -0108_7301_4.13,-74.7640075,39.3507225,109 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7301_4.14,-74.46756216,39.48888151,107 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7301_4.15,-74.6105215,39.3246495,105 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7301_4.16,-74.5363165,39.39909,103 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7301_4.17,-74.49169267,39.34062199,101 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7301_4.18,-74.65045182,39.57318315,201 MYSTIC DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7301_4.19,-74.56872965,39.53113004,203 MYSTIC DRIVE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_7301_4.22,-74.69463304,39.58954867,301 ISLAND LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7301_4.23,-74.4552265,39.502504,303 ISLAND LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7301_4.24,-74.63039117,39.4458286,305 ISLAND LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7301_4.25,-74.490358,39.436711,307 ISLAND LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7301_4.26,-74.79622907,39.6389456,309 ISLAND LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7301_4.27,-74.57261375,39.34235095,311 ISLAND LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7301_4.28,-74.49860552,39.47208484,313 ISLAND LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7301_4.29,-74.58830485,39.3239455,315 ISLAND LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7301_4.31,-74.57117,39.413075,319 ISLAND LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7301_4.32,-74.626234,39.43437,321 ISLAND LANE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_7301_4.33,-74.38458893,39.39536242,323 ISLAND LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7301_4.34,-74.60480025,39.31070905,325 ISLAND LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7301_4.35,-74.55257351,39.36016277,327 ISLAND LANE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_7301_4.36,-74.48714099,39.35014368,231 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7301_4.37,-74.4986445,39.332038,233 MYSTIC DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7301_4.38,-74.79724746,39.59691513,235 MYSTIC DRIVE,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_7301_4.39,-74.46323453,39.35454217,237 MYSTIC DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7301_4.41,-74.65788958,39.55671186,239 MYSTIC DRIVE,EGG HARBOR TWP,16,2004,1,REL1,3004 -0108_7301_4.42,-74.57658525,39.33128217,241 MYSTIC DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7301_4.43,-74.48657,39.498189,243 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7301_4.44,-74.51230676,39.32659183,245 MYSTIC DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_7301_4.45,-74.881824,39.4737555,247 MYSTIC DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7301_4.47,-74.51591878,39.40974422,249 MYSTIC DRIVE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7301_8,-74.63304833,39.34710599,326 ZION ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7301_9,-74.39706446,39.39020767,324 ZION ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7302_1,-74.4497955,39.3564845,102 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7302_2,-74.84965734,39.38750699,104 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7302_3,-74.62692373,39.35208999,106 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7302_4,-74.49666854,39.53037328,7 DOCKSIDE DRIVE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7302_5,-74.53053217,39.39111083,5 DOCKSIDE DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7302_6,-74.59231249,39.31164234,3 DOCKSIDE DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7303_1,-74.81756472,39.6560708,200 MYSTIC DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7303_3,-74.81166887,39.64058184,121 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7303_4,-74.8166105,39.655221,119 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7303_5,-74.3649365,39.4066015,117 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7303_6,-74.5093775,39.331294,115 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7303_7,-74.6451085,39.4292115,113 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7304_1,-74.88574576,39.59498593,207 MYSTIC DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7304_11,-74.60599187,39.32476265,229 MYSTIC DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7304_12,-74.67283999,39.6158401,227 MYSTIC DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7304_13,-74.577075,39.351875,225 MYSTIC DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_7304_14,-74.60255191,39.36743223,223 MYSTIC DRIVE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_7304_15,-74.62884527,39.43479023,221 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7304_16,-74.4916195,39.418458,219 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_7304_17,-74.491647,39.5276045,217 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7304_18,-74.60636737,39.31774578,215 MYSTIC DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7304_19,-74.77820457,39.64335562,213 MYSTIC DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7304_2,-74.62587134,39.60978503,302 ISLAND LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7304_20,-74.78520861,39.60724066,211 MYSTIC DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7304_21,-74.73570695,39.45013171,209 MYSTIC DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7304_3,-74.71429173,39.44869227,304 ISLAND LANE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_7304_4,-74.496378,39.498657,306 ISLAND LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7304_5,-74.707213,39.500854,308 ISLAND LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7304_6,-74.6284955,39.390254,310 ISLAND LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7304_7,-74.795044,39.634973,312 ISLAND LANE,EGG HARBOR TWP,16,2002,1,GOV1,3004 -0108_7304_8,-74.46815472,39.49002436,314 ISLAND LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7304_9,-74.52956174,39.30902939,316 ISLAND LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7306_34.01,-74.45240475,39.49692942,2 BAYSIDE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7306_34.02,-74.5306775,39.4176605,4 BAYSIDE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7306_34.04,-74.65250709,39.52992309,6 BAYSIDE ROAD,EGG HARBOR TWP,16,2012,1,RES1,3001 -0108_7306_34.05,-74.6809685,39.5010545,8 BAYSIDE ROAD,EGG HARBOR TWP,,2015,1,RES1,3001 -0108_7306_34.06,-74.92018363,39.55157433,10 BAYSIDE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7306_34.07,-74.43783139,39.36573363,12 BAYSIDE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7306_34.08,-74.6314545,39.423348,14 BAYSIDE ROAD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7306_34.09,-74.51324078,39.43995554,16 BAYSIDE ROAD,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_7306_4.48,-74.70099709,39.49117151,252 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES3A,3001 -0108_7306_4.49,-74.784715,39.443231,250 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7306_4.51,-74.54750605,39.36936414,505 CAPE ISLAND COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7306_4.52,-74.498157,39.4340285,507 CAPE ISLAND COURT,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7306_4.53,-74.51339215,39.32769952,510 CAPE ISLAND COURT,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7306_4.54,-74.46185641,39.45418784,508 CAPE ISLAND COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7306_4.55,-74.5903845,39.322118,506 CAPE ISLAND COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7306_4.56,-74.7908985,39.6337755,504 CAPE ISLAND COURT,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7306_4.57,-74.447526,39.3718155,502 CAPE ISLAND COURT,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7306_4.58,-74.7917085,39.642462,500 CAPE ISLAND COURT,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7306_4.59,-74.44820063,39.37161495,246 MYSTIC DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_7306_4.61,-74.4675195,39.4913795,242 MYSTIC DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7306_4.63,-74.497415,39.3338865,240 MYSTIC DRIVE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_7306_4.64,-74.50794324,39.32726743,238 MYSTIC DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7306_4.66,-74.53045169,39.39900844,234 MYSTIC DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7306_4.67,-74.46999864,39.48983111,403 ISLAND LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7306_4.68,-74.3725915,39.417105,405 ISLAND LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7307_3,-74.38784617,39.391666,374 ZION ROAD,EGG HARBOR TWP,15,1950,1,GOV1,3004 -0108_7307_4.01,-74.57712552,39.33694917,2 DOCKSIDE DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7307_4.02,-74.52247091,39.39836066,4 DOCKSIDE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7307_4.03,-74.57225383,39.49484332,6 DOCKSIDE DRIVE,EGG HARBOR TWP,16,1997,1,GOV1,3004 -0108_7307_4.04,-74.8744325,39.5942505,8 DOCKSIDE DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7307_4.05,-74.55091534,39.35955824,10 DOCKSIDE DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7307_4.06,-74.8856125,39.472623,12 DOCKSIDE DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7307_4.07,-74.4417475,39.492618,14 DOCKSIDE DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7307_4.08,-74.6356565,39.344062,116 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7307_4.09,-74.64099571,39.4338791,118 LIGHTHOUSE LANE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7307_4.69,-74.61580767,39.30962299,402 ISLAND LANE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7307_4.71,-74.534355,39.3965355,230 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7307_4.72,-74.71676809,39.45071384,228 MYSTIC DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3004 -0108_7307_4.73,-74.40430659,39.38946464,226 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_7307_4.74,-74.504213,39.407756,224 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_7307_4.76,-74.4991985,39.33341,220 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,GOV1,3004 -0108_7307_4.77,-74.54698065,39.40244249,218 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7307_4.78,-74.92525678,39.50902316,216 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7307_4.79,-74.6252695,39.359037,214 MYSTIC DRIVE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_7307_4.81,-74.59502717,39.38309596,210 MYSTIC DRIVE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7307_4.82,-74.6028555,39.31292,208 MYSTIC DRIVE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7307_4.83,-74.59491951,39.36360016,128 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7307_4.84,-74.73417915,39.45002777,126 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7307_4.85,-74.400381,39.392074,124 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7307_4.86,-74.57262357,39.42874082,122 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7307_4.87,-74.400284,39.3900405,120 LIGHTHOUSE LANE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7401_1,-74.61557644,39.3515968,8000 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7401_10,-74.727752,39.4534075,233 ZION ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_7401_11,-74.56795396,39.37105795,235 ZION ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7401_12,-74.68894024,39.35889944,237 ZION ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7401_13,-74.41463472,39.3690761,239 ZION ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7401_15,-74.81239508,39.44332837,159 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1880,1,RES1,3001 -0108_7401_16,-74.61311101,39.32230233,165 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_7401_17,-74.81063488,39.53402818,169 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_7401_18,-74.52415727,39.32109136,173 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7401_19,-74.5031074,39.33448086,177 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_7401_2,-74.4840995,39.33928,205 ZION ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7401_20,-74.52418296,39.38628103,1588 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7401_21,-74.63741595,39.36279799,1584 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_7401_22,-74.80108048,39.65790172,1582 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_7401_23,-74.38912116,39.38988354,1578 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_7401_24,-74.627885,39.445537,1574 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7401_25,-74.66288371,39.40110883,1570 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1880,1,RES1,3001 -0108_7401_26,-74.39246664,39.39135256,1568 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_7401_28,-74.82177812,39.49204872,3 BARRETT DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7401_29,-74.5135435,39.43422,1566 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7401_3,-74.38152715,39.41490984,207 ZION ROAD,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_7401_30,-74.6357595,39.6104825,1 BARRETT DRIVE,EGG HARBOR TWP,16,2007,1,GOV1,3004 -0108_7401_31,-74.789155,39.643222,1564 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7401_32,-74.49623576,39.33263666,1560 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_7401_33,-74.48761794,39.3507323,1546 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_7401_36,-74.55329236,39.46801546,1540 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1840,1,RES1,3001 -0108_7401_38,-74.57055682,39.37232145,1526 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1840,1,RES1,3001 -0108_7401_4,-74.598048,39.343251,209 ZION ROAD,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_7401_41,-74.46152504,39.48390131,1516 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_7401_44,-74.78640497,39.65798526,1510 MAYS LANDING S.P.RD.,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_7401_45,-74.48211817,39.34904496,1506 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_7401_46,-74.38251343,39.41518648,1500 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1840,1,GOV1,3004 -0108_7401_47,-74.84769905,39.44319875,8062 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1880,1,RES1,3001 -0108_7401_48,-74.7945432,39.6104442,8058 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1880,1,RES1,3001 -0108_7401_49,-74.541972,39.386695,8056 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7401_5,-74.60712398,39.50466055,211 ZION ROAD,EGG HARBOR TWP,16,1880,1,RES1,3001 -0108_7401_50,-74.75335832,39.43030677,8050 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7401_51,-74.5081815,39.332077,8044 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7401_52,-74.64363884,39.52622652,8042 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7401_53,-74.7267224,39.59042966,8038 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7401_54,-74.62819955,39.48573715,8036 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_7401_55,-74.3568593,39.41281719,8034 ENGLISH CREEK AVENUE,EGG HARBOR TWP,15,1890,1,RES1,3001 -0108_7401_59,-74.4882305,39.3368905,8012 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_7401_6,-74.8114725,39.6346235,213 ZION ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_7401_60,-74.49858032,39.41178042,8010 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES2,3005 -0108_7401_61,-74.57392602,39.34846618,8008 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7401_62,-74.935856,39.512279,8006 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_7401_63,-74.59732394,39.30995936,8004 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_7401_64,-74.50734556,39.49083227,8002 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7401_7,-74.53266586,39.3822136,217 ZION ROAD,EGG HARBOR TWP,16,1880,1,RES1,3001 -0108_7401_9,-74.3830865,39.397267,231 ZION ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_7501_1,-74.51065595,39.38580118,200 ZION ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7501_11,-74.49022627,39.52172957,7082 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_7501_12,-74.7861005,39.6532115,7078 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7501_13,-74.50603383,39.34035771,1 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7501_14,-74.35789711,39.41230011,3 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7501_15,-74.57697804,39.41698069,5 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7501_16,-74.54955717,39.3877805,9 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7501_18,-74.607666,39.4629735,15 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7501_19,-74.51268584,39.40565851,17 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1979,1,RES4,3001 -0108_7501_2,-74.8856255,39.596447,7114 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7501_20,-74.75085423,39.45136437,19 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7501_21,-74.87682966,39.59673656,23 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_7501_22,-74.9669005,39.513195,27 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7501_23,-74.47869,39.3463225,29 SCHOOL HOUSE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7501_24,-74.93291903,39.52534869,31 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7501_25,-74.5078845,39.3412795,33 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7501_26,-74.47864429,39.47764189,246 ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7501_27,-74.52532799,39.44497567,244 ZION ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7501_28,-74.67041861,39.38405825,242 ZION ROAD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_7501_29,-74.4931369,39.33941576,232 ZION ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7501_3,-74.5748505,39.426061,7108 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7501_30,-74.59301149,39.34796416,220 ZION ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7501_31,-74.591926,39.3321455,218 ZION ROAD,EGG HARBOR TWP,16,1871,1,RES1,3001 -0108_7501_32,-74.520678,39.3204945,214 ZION ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7501_33,-74.681619,39.4466195,212 ZION ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_7501_34,-74.948188,39.5143545,208 ZION ROAD,EGG HARBOR TWP,16,1994,1,GOV1,3004 -0108_7501_35,-74.605834,39.315208,204 ZION ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7501_36,-74.6073988,39.31132968,7120 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7501_37,-74.49620748,39.33545383,7118 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7501_4,-74.809631,39.6097435,7104 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7501_5,-74.38862765,39.39172046,7102 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_7501_6,-74.79019008,39.66784217,7098 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7501_7,-74.442643,39.3738085,7094 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7501_8,-74.62966821,39.44639978,7092 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_7501_9,-74.45214921,39.49689436,7090 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1940,1,GOV1,3004 -0108_7502_1,-74.58412133,39.33000833,2 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7502_10,-74.64100374,39.54758901,10 FRIARS LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7502_11,-74.7196438,39.64444303,12 FRIARS LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7502_12,-74.50098971,39.41068006,14 FRIARS LANE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7502_14,-74.49752448,39.33659533,36 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7502_15,-74.62387032,39.43252147,34 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7502_16,-74.486872,39.496837,32 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7502_17,-74.9325305,39.5083605,30 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7502_18,-74.61472894,39.42944239,28 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7502_19,-74.6382717,39.41148153,26 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7502_2.01,-74.60685841,39.36077827,7070 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_7502_2.02,-74.80377888,39.62436119,7072 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7502_2.03,-74.5177395,39.319736,7066 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7502_20,-74.947966,39.5274835,24 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7502_21,-74.55714625,39.42267352,22 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_22,-74.56315956,39.41024674,20 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_23,-74.79722726,39.63311883,18 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7502_24,-74.6621445,39.5901165,16 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_25,-74.53785012,39.46455777,14 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_26,-74.6914555,39.5192545,12 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_27,-74.58787502,39.45544848,10 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_28,-74.50360295,39.32634483,8 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7502_29,-74.5717705,39.3504245,6 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7502_3,-74.4914278,39.49760714,7064 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7502_30,-74.45229525,39.48178883,4 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7502_31,-74.78602942,39.63275817,BUCKINGHAM DRIVE (BASIN),EGG HARBOR TWP,,0,1,RES1,3001 -0108_7502_32,-74.92364871,39.5086131,2 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_33,-74.50379286,39.50288651,7030 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7502_34,-74.63677259,39.53192127,7028 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,2001,1,RES1,3001 -0108_7502_37,-74.46941936,39.3446861,314 ZION ROAD,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_7502_38,-74.52099086,39.38369624,312 ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7502_39,-74.35775,39.4121505,310 ZION ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7502_4,-74.6166795,39.373292,7062 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7502_40,-74.5894205,39.3252145,308 ZION ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7502_41,-74.5945405,39.311321,306 ZION ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7502_42,-74.6365705,39.5278785,304 ZION ROAD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_7502_43,-74.8864645,39.558208,302 ZION ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_44,-74.61565961,39.34951731,42 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7502_45,-74.40146812,39.38863867,40 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7502_46,-74.65419384,39.39525551,38 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7502_47,-74.71129027,39.56515219,36 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7502_48,-74.518392,39.324649,34 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7502_49,-74.437771,39.3705915,32 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1989,1,COM1,3004 -0108_7502_5,-74.488366,39.35057,7060 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_7502_50,-74.82763235,39.40663355,30 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7502_51,-74.4625,39.3536085,28 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1978,1,GOV1,3004 -0108_7502_52,-74.58202702,39.35884552,26 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_7502_55,-74.55787965,39.39768489,12 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7502_56,-74.50196968,39.41595351,10 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7502_57,-74.50835819,39.43860966,8 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7502_58,-74.93721063,39.5186902,6 SCHOOL HOUSE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7502_6,-74.58548812,39.35820025,2 FRIARS LANE,EGG HARBOR TWP,16,1997,1,COM1,3004 -0108_7502_7,-74.62299608,39.41750582,4 FRIARS LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7502_8,-74.6426795,39.370534,6 FRIARS LANE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7502_9,-74.494384,39.3358055,8 FRIARS LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7503_1,-74.635104,39.534202,1 LITTLE JOHN COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7503_10,-74.52760611,39.45977169,11 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1988,1,COM1,3004 -0108_7503_11,-74.8967735,39.5277515,5 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7503_12,-74.74935668,39.45208853,3 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7503_13,-74.6195508,39.43282107,1 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7503_14,-74.493046,39.4205955,15 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7503_15,-74.50284292,39.34194973,23 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7503_16,-74.582295,39.376689,25 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7503_17,-74.4806477,39.51915845,27 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7503_18,-74.3601315,39.412348,29 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7503_19,-74.5800465,39.4297955,31 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1993,1,COM4,3004 -0108_7503_2,-74.91699294,39.52647568,3 LITTLE JOHN COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7503_20,-74.5205425,39.3160995,33 BUCKINGHAM DRIVE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7503_21,-74.7324375,39.4622355,2 LITTLE JOHN COURT,EGG HARBOR TWP,16,1994,1,RES3A,3001 -0108_7503_22,-74.52128261,39.39740734,4 LITTLE JOHN COURT,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7503_23,-74.72204349,39.57366017,6 LITTLE JOHN COURT,EGG HARBOR TWP,16,1997,1,RES1,3004 -0108_7503_24,-74.81799208,39.47029682,10 GREENTREE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7503_25,-74.51056246,39.43509366,8 GREENTREE COURT,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7503_26,-74.711942,39.471146,6 GREENTREE COURT,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7503_27,-74.490742,39.521473,4 GREENTREE COURT,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7503_3,-74.71299419,39.47056461,5 LITTLE JOHN COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7503_4,-74.64936577,39.35624242,7 LITTLE JOHN COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7503_5,-74.577176,39.5518083,11 GREENTREE COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7503_6,-74.560287,39.505998,9 GREENTREE COURT,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7503_7,-74.787019,39.6301055,7 GREENTREE COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7503_8,-74.69418416,39.41961999,5 GREENTREE COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7503_9,-74.60646443,39.31672016,3 GREENTREE COURT,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7601_1,-74.63571272,39.34876393,45 ZION ROAD,EGG HARBOR TWP,16,1965,2,RES1,3001 -0108_7601_1.01,-74.37872685,39.41548586,4 LEES LANE,EGG HARBOR TWP,16,2007,1,RES3A,3001 -0108_7601_10,-74.51711,39.3182145,33 ENGLISH LANE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7601_11,-74.4956115,39.3355725,35 ENGLISH LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7601_13,-74.44121603,39.35411132,45 ENGLISH LANE,EGG HARBOR TWP,,0,1,RES2,3005 -0108_7601_14,-74.48563827,39.33489885,41 ENGLISH LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7601_15,-74.7498571,39.44653686,51 ENGLISH LANE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_7601_16,-74.49598232,39.42880222,55 ENGLISH LANE,EGG HARBOR TWP,16,1735,1,RES1,3001 -0108_7601_18,-74.796171,39.6374755,61 ENGLISH LANE,EGG HARBOR TWP,15,1952,1,RES1,3001 -0108_7601_19,-74.8340458,39.37264766,1450 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_7601_20,-74.54362872,39.45837155,1448 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7601_21,-74.55498115,39.36656609,1444 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7601_22,-74.62695351,39.36266614,1442 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1940,1,GOV1,3004 -0108_7601_23,-74.45491716,39.47806037,1432 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_7601_24,-74.51786171,39.39983486,1422 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7601_25,-74.73179608,39.58690965,1420 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_7601_26,-74.88935719,39.52494066,1410 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7601_27,-74.531387,39.4086635,1406 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7601_28,-74.64749499,39.32765884,1404 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7601_29,-74.5278685,39.38452233,1402 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7601_3,-74.65117653,39.52418116,71 ZION ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_7601_30,-74.519055,39.3973125,1400 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_7601_31,-74.92500462,39.5117468,8 LEES LANE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7601_32,-74.382183,39.3968745,14 LEES LANE,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_7601_33,-74.46096012,39.35854107,91 ZION ROAD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_7601_4,-74.68448416,39.55859553,79 ZION ROAD,EGG HARBOR TWP,16,1971,1,RES1,3001 -0108_7601_5,-74.35266056,39.41753932,89 ZION ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_7601_6,-74.60035258,39.4301633,23 ENGLISH LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7601_7,-74.50095954,39.41644881,27 ENGLISH LANE,EGG HARBOR TWP,16,1977,1,GOV1,3004 -0108_7601_8,-74.46813192,39.45600845,29 ENGLISH LANE,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_7601_9,-74.4654427,39.50256828,31 ENGLISH LANE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_7602_1,-74.46385907,39.3446968,105 ZION ROAD,EGG HARBOR TWP,16,1950,2,RES1,3001 -0108_7602_10,-74.73163202,39.45503693,8007 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7602_11,-74.62413,39.4229295,8009 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7602_12,-74.63560778,39.48698085,8011 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1990,1,RES4,3001 -0108_7602_13,-74.489687,39.337037,8015 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_7602_14,-74.61463268,39.32386007,8017 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_7602_15,-74.68262958,39.46071099,8019 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7602_16,-74.62491159,39.41627034,8021 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3002 -0108_7602_17,-74.5153985,39.401983,8023 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7602_18,-74.60776886,39.38653268,8025 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7602_19,-74.4847795,39.435708,8029 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7602_2,-74.5553965,39.3601495,113 ZION ROAD,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_7602_20,-74.39155398,39.39066583,8035 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7602_21,-74.6080635,39.3206625,8039 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7602_22,-74.55932685,39.39173767,8041 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7602_23,-74.79126058,39.63255228,8043 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7602_24,-74.442191,39.369218,8047 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7602_25,-74.574236,39.3497825,8051 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7602_27,-74.6800305,39.4494785,8065 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7602_3,-74.6024645,39.433431,115 ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7602_30,-74.948796,39.5176085,1472 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1958,1,RES1,3001 -0108_7602_31,-74.50968904,39.43030434,1468 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7602_33,-74.7666284,39.63577332,1462 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7602_36,-74.53416536,39.37977527,1454 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_7602_37,-74.50396632,39.40681944,1452 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_7602_38,-74.63143233,39.35639524,78 ENGLISH LANE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7602_39,-74.670746,39.3674025,76 ENGLISH LANE,EGG HARBOR TWP,16,1991,1,RES1,3002 -0108_7602_4,-74.6386451,39.41215491,117 ZION ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7602_40,-74.516466,39.40149733,72 ENGLISH LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7602_43,-74.56989135,39.33987855,50 ENGLISH LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7602_44,-74.5978315,39.3306595,52 ENGLISH LANE,EGG HARBOR TWP,16,1882,1,RES1,3001 -0108_7602_44.01,-74.584879,39.35978917,58 ENGLISH LANE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7602_45,-74.63725807,39.43497458,44 ENGLISH LANE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_7602_46,-74.4451245,39.5153155,48 ENGLISH LANE,EGG HARBOR TWP,16,1985,2,RES1,3001 -0108_7602_5,-74.50723358,39.33744358,119 ZION ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7602_50,-74.47889632,39.33705453,40 ENGLISH LANE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_7602_51,-74.85001001,39.55250491,38 ENGLISH LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7602_52,-74.60812824,39.32043038,34 ENGLISH LANE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_7602_53,-74.8171995,39.6555815,32 ENGLISH LANE,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7602_55,-74.81251867,39.40128412,30 ENGLISH LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7602_56,-74.63494648,39.52503029,28 ENGLISH LANE,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_7602_57,-74.64019439,39.54922736,24 ENGLISH LANE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7602_58,-74.43546176,39.49023645,22 ENGLISH LANE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_7602_59,-74.80304238,39.63263413,18 ENGLISH LANE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7602_6,-74.6278795,39.4325275,121 ZION ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7602_60,-74.50424423,39.34016777,14 ENGLISH LANE,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7602_61,-74.75341438,39.45275823,10 ENGLISH LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7602_62,-74.80272578,39.63463047,6 ENGLISH LANE,EGG HARBOR TWP,16,1978,1,RES3A,3001 -0108_7602_63,-74.5874195,39.3462835,2 ENGLISH LANE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7602_64,-74.548214,39.38224,1 ENGLISH LANE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7602_65,-74.6386585,39.320293,97 ZION ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7602_8,-74.51443927,39.32786669,8003 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7602_9,-74.75759163,39.60067381,8005 ENGLISH CREEK AVENUE,EGG HARBOR TWP,16,1997,1,RES1,3004 -0108_7701_1,-74.60895846,39.49299784,3 WELSHIRE DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7701_2,-74.57633362,39.35236132,1 WELSHIRE DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7701_3,-74.6324835,39.42012,11 DEVONSHIRE DRIVE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7701_4,-74.46271386,39.35289044,9 DEVONSHIRE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7701_5,-74.383112,39.397728,7 DEVONSHIRE DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7701_6,-74.5249225,39.38943395,5 DEVONSHIRE DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7701_7,-74.53843955,39.38458116,3 DEVONSHIRE DRIVE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7701_8,-74.56526392,39.35354659,1 DEVONSHIRE DRIVE,EGG HARBOR TWP,16,1989,1,COM7,3004 -0108_7702_1,-74.59183196,39.35424453,165 ASBURY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7702_10.01,-74.50041792,39.49328483,187 ASBURY ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7702_10.02,-74.5455345,39.471304,189 ASBURY ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7702_11,-74.949413,39.5187855,193 ASBURY ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_7702_12,-74.4714275,39.3406925,195 ASBURY ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_7702_13,-74.5122815,39.47556,197 ASBURY ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7702_15,-74.60634933,39.47600001,199 ASBURY ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7702_16.01,-74.706722,39.565035,203 ASBURY ROAD,EGG HARBOR TWP,16,1999,1,COM1,3004 -0108_7702_16.02,-74.57639433,39.4803575,205 ASBURY ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7702_17,-74.42324749,39.36792416,209 ASBURY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7702_18,-74.553554,39.384283,213 ASBURY ROAD,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7702_19,-74.5906945,39.32585,5 WELSHIRE DRIVE,EGG HARBOR TWP,16,1989,1,GOV1,3002 -0108_7702_2,-74.36234284,39.40901999,167 ASBURY ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7702_20,-74.42920654,39.49201849,7 WELSHIRE DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7702_21,-74.62264169,39.46150668,9 WELSHIRE DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7702_22,-74.805841,39.6400995,11 WELSHIRE DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_7702_23,-74.627784,39.3927775,13 WELSHIRE DRIVE,EGG HARBOR TWP,16,1988,1,GOV1,3004 -0108_7702_24,-74.81863032,39.38533851,8 WELSHIRE DRIVE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7702_25,-74.37250973,39.41037808,5 MANCHESTER COURT,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7702_26,-74.60700912,39.37686131,1 MANCHESTER COURT,EGG HARBOR TWP,16,1988,1,RES3A,3001 -0108_7702_27,-74.3572576,39.41286238,3 MANCHESTER COURT,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7702_28,-74.79565912,39.67483474,8 MANCHESTER COURT,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7702_29,-74.947109,39.5037105,6 MANCHESTER COURT,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7702_3,-74.78803666,39.6391781,171 ASBURY ROAD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_7702_30,-74.8667985,39.6023245,4 MANCHESTER COURT,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7702_31,-74.538114,39.4720465,2 MANCHESTER COURT,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7702_32,-74.51372167,39.44165902,4 WELSHIRE DRIVE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7702_33,-74.42876682,39.36827852,2 WELSHIRE DRIVE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_7702_34,-74.631876,39.4464185,6 DEVONSHIRE DRIVE,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_7702_35,-74.46059473,39.4754456,2 DEVONSHIRE DRIVE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7702_36,-74.54240966,39.38525898,163 ASBURY ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7702_4,-74.799426,39.639031,175 ASBURY ROAD,EGG HARBOR TWP,16,1987,1,RES1,3004 -0108_7702_5,-74.56792822,39.41368187,177 ASBURY ROAD,EGG HARBOR TWP,16,2010,1,RES1,3001 -0108_7702_6,-74.4978035,39.333205,179 ASBURY ROAD,EGG HARBOR TWP,16,1993,1,GOV1,3004 -0108_7702_7,-74.6050535,39.3334815,181 ASBURY ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7702_8,-74.79472778,39.63526492,183 ASBURY ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7702_9,-74.5084795,39.326474,185 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7801_10,-74.50870533,39.3394,221 ASBURY ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7801_11,-74.36990283,39.402729,225 ASBURY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7801_12,-74.46189733,39.49270698,229 ASBURY ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7801_13,-74.81150195,39.64608684,231 ASBURY ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7801_14,-74.60708666,39.32799449,235 ASBURY ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7801_15,-74.519119,39.409834,237 ASBURY ROAD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_7801_16,-74.7143685,39.583338,239 ASBURY ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_7801_17,-74.8809287,39.59676942,241 ASBURY ROAD,EGG HARBOR TWP,16,1995,1,GOV1,3004 -0108_7801_18,-74.65622183,39.62221766,243 ASBURY ROAD,EGG HARBOR TWP,16,1977,1,GOV1,3004 -0108_7801_19,-74.57016805,39.36435592,245 ASBURY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7801_20,-74.5140736,39.38495734,247 ASBURY ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7801_22,-74.38761373,39.39659585,259 ASBURY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7801_23,-74.5629765,39.3596175,265 ASBURY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7801_24,-74.60181343,39.59098626,269 ASBURY ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7801_25,-74.6264835,39.530655,273 ASBURY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7801_26,-74.70571157,39.57031461,275 ASBURY ROAD,EGG HARBOR TWP,16,1978,1,RES1,3004 -0108_7801_27,-74.48289939,39.4442111,277 ASBURY ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7801_28,-74.63007361,39.4861272,281 ASBURY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7801_30,-74.5882409,39.32974116,94 ZION ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7801_35,-74.58892067,39.4589946,90 ZION ROAD,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_7801_38,-74.48395387,39.33819097,64 ZION ROAD,EGG HARBOR TWP,14,1910,1,RES1,3001 -0108_7801_39,-74.84373496,39.58695667,46 ZION ROAD,EGG HARBOR TWP,15,1928,1,RES1,3001 -0108_7801_40,-74.45063889,39.49147212,36 ZION ROAD,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_7801_41,-74.80277002,39.4072788,28 ZION ROAD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7801_42.01,-74.55085311,39.37614937,1 VILLANOVA COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7801_42.02,-74.7572035,39.6505235,2 VILLANOVA COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7801_42.03,-74.70092469,39.64533573,3 VILLANOVA COURT,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_7801_42.04,-74.7197245,39.578002,4 VILLANOVA COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7801_42.06,-74.75461473,39.44535255,6 VILLANOVA COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7801_42.08,-74.61153974,39.3409503,7 VILLANOVA COURT,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7801_42.09,-74.93849355,39.52091879,8 VILLANOVA COURT,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_7801_45,-74.4678475,39.4898065,22 ZION ROAD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_7801_47,-74.52032586,39.32070932,4 ZION ROAD,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_7801_50,-74.63184285,39.52326154,1354 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_7801_51,-74.62155419,39.53914183,1350 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_7801_53,-74.83267398,39.53139551,1334 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7801_54,-74.65391222,39.53447533,1332 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_7801_55,-74.555091,39.4687185,BETSEY SCULL ROAD LL,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7801_56,-74.50340375,39.32579284,240 BETSEY SCULL ROAD,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_7801_57,-74.52299432,39.38304792,236 BETSEY SCULL ROAD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_7801_58,-74.83328064,39.39928851,234 BETSEY SCULL ROAD,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_7801_59,-74.62406496,39.41769118,228 BETSEY SCULL ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7801_9,-74.55465284,39.3902649,217 ASBURY ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_7802_1,-74.493352,39.43357903,1370 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1850,1,RES1,3001 -0108_7802_10,-74.5829063,39.37964033,1388 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_7802_11,-74.50261952,39.32856534,1384 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_7802_12,-74.951068,39.5295215,1380 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_7802_14,-74.520061,39.32274,1378 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7802_15,-74.407297,39.3769685,1372 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_7802_3,-74.77209074,39.63408734,25 ZION ROAD,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_7802_5,-74.6836815,39.5544865,33 ZION ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_7802_6,-74.584148,39.331792,37 ZION ROAD,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_7802_7,-74.6317665,39.390754,3 LEES LANE,EGG HARBOR TWP,16,1880,1,RES1,3001 -0108_7802_8.01,-74.573018,39.3602645,7 LEES LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7802_8.02,-74.52526167,39.42862628,9 LEES LANE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_7802_9,-74.38272005,39.39740835,1392 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_7901_1,-74.61467597,39.49842284,174 BETSEY SCULL ROAD,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_7901_10,-74.59909917,39.31582059,424 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_11,-74.78374716,39.63480871,426 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_12,-74.7552965,39.634355,428 PINE AVENUE,EGG HARBOR TWP,16,2004,1,GOV1,3004 -0108_7901_13,-74.51441418,39.41360184,430 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_16,-74.811494,39.6578155,427 PINE AVENUE,EGG HARBOR TWP,,2015,1,RES1,3001 -0108_7901_17,-74.5930555,39.376157,425 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_18,-74.64508492,39.53130715,423 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_19,-74.65141846,39.54757067,421 PINE AVENUE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_7901_2,-74.65271657,39.35581216,110 BETSEY SCULL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_7901_20,-74.853462,39.4911795,419 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_21,-74.80141391,39.63416586,417 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_22,-74.43132381,39.37367774,415 PINE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7901_23,-74.48297317,39.35164466,413 PINE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7901_3,-74.45813466,39.48773517,410 PINE AVENUE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_7901_4,-74.9383225,39.529213,412 PINE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7901_5,-74.6278445,39.414312,414 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_6,-74.51597708,39.38759269,416 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_7,-74.64436124,39.53390861,418 PINE AVENUE,EGG HARBOR TWP,16,2005,1,GOV1,3004 -0108_7901_8,-74.4701555,39.454733,420 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7901_9,-74.40544403,39.38217117,422 PINE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7902_10,-74.42197423,39.37168384,123 ASBURY ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_7902_11,-74.6410261,39.5364749,127 ASBURY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7902_12,-74.5414425,39.4588155,129 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7902_13,-74.54136333,39.46605356,131 ASBURY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7902_14,-74.56463709,39.34756114,133 ASBURY ROAD,EGG HARBOR TWP,16,1976,1,RES1,3004 -0108_7902_15,-74.59987373,39.36226129,135 ASBURY ROAD,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_7902_16,-74.824534,39.4972845,137 ASBURY ROAD,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_7902_17,-74.6000655,39.312192,139 ASBURY ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_7902_19,-74.6959565,39.637601,405 PINE AVENUE,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_7902_2,-74.4931385,39.3303035,411 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7902_20,-74.538667,39.4068155,409 PINE AVENUE,EGG HARBOR TWP,16,2004,1,COM1,3004 -0108_7902_4,-74.615677,39.4287155,111 ASBURY ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_7902_5,-74.52673857,39.46468684,113 ASBURY ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_7902_6,-74.603036,39.4749665,115 ASBURY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_7902_7,-74.71154906,39.56750384,117 ASBURY ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_7902_8,-74.6295675,39.4136845,119 ASBURY ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_7902_9,-74.711572,39.435182,121 ASBURY ROAD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_7903_2,-74.56286565,39.41474765,406 PINE AVENUE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_7903_3,-74.35840586,39.41310085,400 PINE AVENUE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7903_5,-74.8492933,39.60638433,141 ASBURY ROAD,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_7903_6,-74.7046418,39.4230996,145 ASBURY ROAD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_7903_6.01,-74.55428919,39.36911796,147 ASBURY ROAD,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_7903_7,-74.52716217,39.39344356,155 ASBURY ROAD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_8004_27,-74.53989693,39.38336815,MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8005_2,-74.6380435,39.401549,1136 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_801_11,-74.59344837,39.32639294,6812 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_801_113,-74.6219515,39.4367255,2533 SAW MILL ROAD(BASIN),EGG HARBOR TWP,,0,1,RES1,3001 -0108_801_12,-74.71172548,39.46665466,2516 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_801_17,-74.50622033,39.33109005,4 PEAR STREET,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_801_2,-74.38228094,39.41500232,6804 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_801_24,-74.515534,39.3953215,101 PLUM STREET,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_801_27,-74.9598715,39.5281075,2522 FIRE ROAD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_801_3,-74.79741016,39.63854297,2546 FIRE ROAD,EGG HARBOR TWP,,0,1,COM1,3004 -0108_801_4,-74.81370808,39.63802764,2542 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_801_44,-74.45303836,39.37184721,110 PLUM STREET,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_801_53,-74.580586,39.430194,106 PLUM STREET,EGG HARBOR TWP,16,1988,1,IND1,3004 -0108_801_6,-74.5868479,39.35354666,2530 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_801_7,-74.515942,39.43983,1 PEAR STREET,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_801_8,-74.6131765,39.350681,2537 SAW MILL ROAD(BASIN),EGG HARBOR TWP,,0,1,RES1,3001 -0108_8011_1,-74.6374305,39.538061,1144 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1981,1,RES1,3001 -0108_8011_2.01,-74.63008798,39.41520533,1148 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_8011_2.02,-74.6040445,39.407195,1146 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_8011_2.03,-74.56493087,39.35343917,1140 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_802_1,-74.59966737,39.31561015,104 PLUM STREET,EGG HARBOR TWP,16,1979,1,RES1,3001 -0108_802_12,-74.55306456,39.52499284,107 WISTERIA STREET,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_802_15,-74.61956697,39.43681284,103 WISTERIA STREET,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_802_16,-74.68654337,39.51665284,2514 FIRE ROAD,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_802_5,-74.8814635,39.594645,113 WISTERIA STREET,EGG HARBOR TWP,16,1948,1,GOV1,3004 -0108_802_6,-74.62368766,39.35667151,111 WISTERIA STREET,EGG HARBOR TWP,16,1948,1,RES1,3001 -0108_802_9,-74.4924342,39.33390033,109 WISTERIA STREET,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_803_1,-74.77591805,39.60687275,108 WISTERIA STREET,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_803_12,-74.6484215,39.351403,2513 SAW MILL ROAD,EGG HARBOR TWP,,1940,1,RES1,3001 -0108_804_10,-74.51046433,39.33674723,1003 CALIFORNIA AVENUE,EGG HARBOR TWP,16,1957,1,RES3A,3001 -0108_804_11,-74.51105567,39.48138717,2500 SAW MILL ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_804_12,-74.51266261,39.32541415,1001 CALIFORNIA AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_804_3,-74.61698573,39.36253149,2506 SAW MILL ROAD,EGG HARBOR TWP,16,2004,1,RES3A,3001 -0108_804_6,-74.64213956,39.52547284,2504 SAW MILL ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_805_13,-74.78797236,39.52724217,105 LAUREL STREET,EGG HARBOR TWP,16,1977,1,RES1,3001 -0108_805_20,-74.59077615,39.31977385,103 LAUREL STREET,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_805_27,-74.733634,39.453114,1005 CALIFORNIA AVENUE,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_805_35,-74.61051659,39.32588777,2510 SAW MILL ROAD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_805_4,-74.6369755,39.523281,113 LAUREL STREET,EGG HARBOR TWP,16,1992,1,GOV1,3004 -0108_806_1,-74.8311195,39.5699915,115 HICKORY STREET,EGG HARBOR TWP,16,1930,1,RES3B,3001 -0108_806_10,-74.76321009,39.6105249,2518 SAW MILL ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_806_14,-74.663464,39.401175,111 HICKORY STREET,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_806_16,-74.7949415,39.6109875,112 LAUREL STREET,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_806_20,-74.8119234,39.63617887,110 LAUREL STREET,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_806_25,-74.51067166,39.40022872,108 LAUREL STREET,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_806_33,-74.46090189,39.54694628,104 LAUREL STREET,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_806_35,-74.920287,39.5146055,1011 CALIFORNIA AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_806_41,-74.597764,39.309793,101 HICKORY STREET,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_806_48,-74.59790604,39.51453143,105 HICKORY STREET,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_806_53,-74.49906433,39.51950133,109 HICKORY STREET,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_806_61,-74.63521026,39.42900426,113 HICKORY STREET,EGG HARBOR TWP,,2002,1,RES1,3001 -0108_807_1,-74.5846694,39.34251555,114 HICKORY STREET,EGG HARBOR TWP,16,1953,1,RES1,3001 -0108_807_11,-74.9408205,39.5156525,108 HICKORY STREET,EGG HARBOR TWP,16,1985,1,RES3A,3001 -0108_807_13,-74.362838,39.4183735,106 HICKORY STREET,EGG HARBOR TWP,16,1955,1,RES1,3001 -0108_807_19,-74.47554501,39.44483766,104 HICKORY STREET,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_807_21,-74.37261612,39.4136348,102 HICKORY STREET,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_807_3,-74.8668625,39.600894,HICKORY STREET,EGG HARBOR TWP,,0,1,RES1,3001 -0108_807_32,-74.5984575,39.311935,1017 CALIFORNIA AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_807_4,-74.86177007,39.56649934,112 HICKORY STREET,EGG HARBOR TWP,16,1944,1,RES1,3001 -0108_807_8,-74.8304995,39.41140531,110 HICKORY STREET,EGG HARBOR TWP,16,2000,1,RES3A,3001 -0108_808_1,-74.50015166,39.4185215,2534 SAW MILL ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8101_1,-74.8365575,39.37790263,1111 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_8101_10,-74.7508378,39.29545407,1145 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_8101_13,-74.4796995,39.3407655,1155 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1928,1,RES1,3001 -0108_8101_14.01,-74.76733535,39.3131486,1165 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8101_15,-74.53277217,39.47113183,1181 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8101_16,-74.55430679,39.46803863,1185 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1990,1,RES3A,3001 -0108_8101_17,-74.8215,39.3834155,1191 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8101_18,-74.62649483,39.41321076,1189 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_8101_19,-74.48090484,39.34907614,1195 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_8101_2,-74.48870809,39.35059155,1113 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1997,1,RES3A,3001 -0108_8101_20,-74.82640036,39.62126904,1193 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1965,1,RES3A,3001 -0108_8101_21,-74.48583054,39.47854217,1197 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8101_22,-74.65194476,39.52364931,1201 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8101_3,-74.369596,39.410936,1119 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_8101_5,-74.59409066,39.40578672,1123 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_8101_6,-74.4273115,39.3648245,1125 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1925,2,RES1,3001 -0108_8101_7,-74.50429834,39.43598347,1133 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8101_9,-74.58664791,39.35459712,1141 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1900,1,RES1,3001 -0108_8201_13,-74.5348905,39.501361,1239 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1948,1,RES1,3001 -0108_8201_14,-74.63428,39.3884455,1241 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1946,1,RES1,3001 -0108_8201_15,-74.4871095,39.44050883,1245 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1914,1,RES1,3001 -0108_8201_17,-74.49299653,39.33493996,323 BETSEY SCULL ROAD,EGG HARBOR TWP,16,1915,1,RES1,3001 -0108_8201_18,-74.5620585,39.4109765,315 BETSEY SCULL ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_8201_2,-74.5639975,39.4158765,1217 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_8201_3,-74.4890459,39.43631739,1219 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1996,1,RES3B,3001 -0108_8201_4,-74.86047335,39.61651586,1221 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_8201_7,-74.8105325,39.629575,1235 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1900,2,RES1,3001 -0108_8201_8,-74.483872,39.44174,333 BETSEY SCULL ROAD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_8202_2,-74.629256,39.348709,336 BETSEY SCULL ROAD,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_8202_6,-74.5303385,39.3845725,1319 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1991,1,RES3A,3001 -0108_8301_1,-74.48384033,39.34077451,1325 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_8301_10,-74.5547115,39.474905,1365 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_8301_11,-74.50874445,39.40690084,1367 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_8301_12,-74.67657048,39.48494733,1369 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1960,1,RES1,3001 -0108_8301_14,-74.579428,39.3369825,105 THOMPSONS LANE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_8301_15,-74.480141,39.3379845,135 THOMPSONS LANE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_8301_17,-74.66469681,39.39988855,147 THOMPSONS LANE,EGG HARBOR TWP,16,2005,1,RES1,3001 -0108_8301_18,-74.831877,39.4760395,149 THOMPSONS LANE,EGG HARBOR TWP,16,1999,1,RES3A,3001 -0108_8301_19,-74.80585863,39.64375862,151 THOMPSONS LANE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_8301_20,-74.546518,39.38593562,159 THOMPSONS LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_8301_22,-74.6382555,39.411034,169 THOMPSONS LANE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_8301_23,-74.5298723,39.38759359,177 THOMPSONS LANE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_8301_25,-74.869326,39.604114,176 THOMPSONS LANE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8301_3,-74.49935316,39.49563076,1335 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_8301_5,-74.54920561,39.46679378,1351 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_8301_7,-74.5125395,39.323609,1357 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_8301_8,-74.8851915,39.593917,1361 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_8405_10,-74.588767,39.539737,17 LIDA AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_8406_16,-74.44374923,39.37008101,24 LIDA AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_8411_18,-74.49841982,39.5002006,16 LIDA AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_8411_8,-74.57601161,39.35828373,1322 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_8412_2,-74.6130485,39.422063,13 LIDA AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_8412_4,-74.83848117,39.41116133,9 LIDA AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_8412_5,-74.48123668,39.33770246,5 LIDA AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8412_7,-74.4774555,39.3459845,1 LIDA AVENUE,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_8414_6,-74.65808299,39.36221917,1316 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_8414_7,-74.88479232,39.47143808,1312 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8414_9,-74.60480759,39.4104373,1310 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8417_3,-74.4974005,39.4709655,1308 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_8417_4,-74.637449,39.43009817,1306 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_8417_5,-74.3729345,39.403595,1304 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_8418_13,-74.71209179,39.47264863,262 BETSEY SCULL ROAD,EGG HARBOR TWP,16,2008,1,RES1,3001 -0108_8418_14,-74.750885,39.5929035,1300 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8418_15,-74.62423845,39.38268323,260 BETSEY SCULL ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8418_18,-74.602653,39.3311835,254 BETSEY SCULL ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8501_1,-74.50886825,39.43497014,151 LEES LANE,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_8501_2,-74.52544203,39.38630131,137 LEES LANE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_8502_2,-74.44368957,39.3585827,100 THOMPSONS LANE,EGG HARBOR TWP,16,1969,1,RES1,3001 -0108_8502_3,-74.50854817,39.32697996,1387 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8502_4,-74.5002645,39.430025,105 LEES LANE,EGG HARBOR TWP,16,1980,1,COM1,3004 -0108_8502_6,-74.82952075,39.44619361,113 LEES LANE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_8502_7,-74.38340835,39.40035463,117 LEES LANE,EGG HARBOR TWP,16,1984,1,RES3A,3001 -0108_8503_12,-74.607757,39.5025575,124 LEES LANE,EGG HARBOR TWP,16,1900,2,RES3B,3001 -0108_8503_2,-74.46229216,39.35408001,174 THOMPSONS LANE,EGG HARBOR TWP,16,1991,1,COM1,3004 -0108_8503_23,-74.388116,39.394091,116 LEES LANE,EGG HARBOR TWP,16,1957,1,RES3A,3001 -0108_8503_24,-74.51525784,39.32419499,112 LEES LANE,EGG HARBOR TWP,16,1996,1,RES3A,3001 -0108_8503_26,-74.4831315,39.3432225,108 LEES LANE,EGG HARBOR TWP,16,2010,1,RES3B,3001 -0108_8503_28,-74.78072623,39.65397711,102 LEES LANE,EGG HARBOR TWP,16,1957,1,RES3A,3001 -0108_8503_3,-74.43558631,39.36558607,168 THOMPSONS LANE,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_8503_30,-74.5892915,39.412369,1403 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8503_31,-74.60059818,39.31886952,1407 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_8503_32,-74.51663131,39.40066117,1409 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_8503_33,-74.40188673,39.38897866,1413 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_8503_34,-74.5291915,39.5408245,1415 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_8503_5,-74.38402311,39.39372848,152 LEES LANE,EGG HARBOR TWP,16,1928,1,RES1,3001 -0108_8503_6,-74.7782025,39.6739425,148 LEES LANE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_8503_7,-74.37045777,39.41758763,142 LEES LANE,EGG HARBOR TWP,16,1790,1,RES1,3001 -0108_8503_8,-74.488137,39.3380065,138 LEES LANE,EGG HARBOR TWP,16,1983,1,RES1,3001 -0108_8601_1,-74.8001878,39.63834535,1417 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1926,1,RES3B,3001 -0108_8601_10,-74.547125,39.4666485,1479 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1987,1,RES1,3002 -0108_8601_11,-74.78080288,39.52126133,107 WHARF ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_8601_12,-74.6532705,39.401187,1483 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8601_13,-74.638346,39.3658665,103 WHARF ROAD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_8601_16,-74.45707242,39.34780233,105 WHARF ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_8601_17,-74.80440368,39.62304737,111 WHARF ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_8601_19,-74.4816244,39.33623416,115 WHARF ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_8601_2,-74.63297067,39.43174701,1421 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_8601_21,-74.52244353,39.31848532,119 WHARF ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_8601_24,-74.53586611,39.3861352,125 WHARF ROAD,EGG HARBOR TWP,16,1974,1,RES1,3001 -0108_8601_25,-74.51995128,39.32152726,127 WHARF ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_8601_26,-74.364275,39.41535,129 WHARF ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_8601_28,-74.574452,39.388141,135 WHARF ROAD,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_8601_29,-74.78306478,39.65114807,139 WHARF ROAD,EGG HARBOR TWP,16,1929,1,RES1,3001 -0108_8601_30,-74.4554035,39.3798285,145 WHARF ROAD,EGG HARBOR TWP,16,1926,1,RES3A,3001 -0108_8601_32,-74.5701825,39.4801245,165 WHARF ROAD,EGG HARBOR TWP,16,1980,1,RES3A,3001 -0108_8601_5,-74.59923896,39.42565369,1441 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_8601_6,-74.6010725,39.3240615,1449 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1815,1,GOV1,3004 -0108_8601_7,-74.66985694,39.46425731,1455 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1860,1,RES1,3001 -0108_8601_8,-74.494714,39.43482,1473 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1930,2,RES1,3001 -0108_8701_10,-74.51705946,39.31762116,120 WHARF ROAD,EGG HARBOR TWP,16,2002,1,RES3A,3001 -0108_8701_11,-74.36886,39.402227,118 WHARF ROAD,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_8701_12,-74.38116583,39.41510497,116 WHARF ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_8701_13,-74.6070635,39.3284245,1501 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8701_14,-74.38839149,39.39599304,1517 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1845,1,RES1,3001 -0108_8701_15,-74.81093491,39.40688742,1527 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8701_16,-74.63017,39.4275715,103 BAKER PLACE ROAD,EGG HARBOR TWP,16,1998,1,RES1,3001 -0108_8701_16.01,-74.48767027,39.44035508,105 BAKER PLACE ROAD,EGG HARBOR TWP,16,2004,1,RES1,3001 -0108_8701_16.02,-74.5709545,39.4280935,107 BAKER PLACE ROAD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_8701_17,-74.54818283,39.46672349,1541 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_8701_2,-74.49841954,39.33685737,174 WHARF ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_8701_20,-74.49896232,39.32912602,112 BAKER PLACE ROAD,EGG HARBOR TWP,16,1988,1,RES3A,3001 -0108_8701_21,-74.71517382,39.40636421,110 BAKER PLACE ROAD,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_8701_23,-74.43925799,39.36593916,102 BAKER PLACE ROAD,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_8701_24,-74.503452,39.4113375,1545 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1982,1,RES1,3001 -0108_8701_25,-74.637479,39.622795,1547 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_8701_26,-74.82861188,39.47724478,1549 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_8701_27,-74.49080877,39.33285418,1553 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8701_28,-74.6327265,39.363608,1555 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1928,1,RES1,3001 -0108_8701_29,-74.520741,39.389498,1559 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_8701_30,-74.80344517,39.62413801,1557 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_8701_31,-74.9707795,39.5123835,1561 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1860,1,RES1,3001 -0108_8701_32,-74.55757344,39.35850719,1567 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1800,1,RES1,3001 -0108_8701_33,-74.85966802,39.59429606,1563 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1975,1,RES1,3002 -0108_8701_34,-74.51655464,39.40782998,1569 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1800,1,RES1,3001 -0108_8701_35,-74.71457569,39.44813702,1573 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8701_36,-74.45282231,39.37328239,1575 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1800,1,RES1,3001 -0108_8701_37,-74.5631925,39.475294,1579 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2007,1,RES1,3001 -0108_8701_37.01,-74.3774605,39.4186145,1577 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2006,1,RES1,3002 -0108_8701_38,-74.64390288,39.38376666,1581 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8701_39,-74.57664217,39.34991151,1585 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_8701_40,-74.45870269,39.48821511,1583 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_8701_41,-74.7720665,39.618876,103 PERRY LANE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_8701_41.01,-74.94094792,39.52532081,1587 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_8701_42,-74.548614,39.3777875,121 PERRY LANE,EGG HARBOR TWP,16,1998,1,RES1,3004 -0108_8701_5.01,-74.5770185,39.335225,164 WHARF ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8701_5.02,-74.58495138,39.33664985,166 WHARF ROAD,EGG HARBOR TWP,16,2012,1,RES1,3002 -0108_8701_7,-74.926884,39.494564,134 WHARF ROAD,EGG HARBOR TWP,15,1900,1,RES1,3001 -0108_8701_8,-74.568513,39.3514475,124 WHARF ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_8701_9,-74.88317134,39.46385025,122 WHARF ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_8801_10,-74.557261,39.396347,1617 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3002 -0108_8801_13,-74.79617481,39.63033847,105 KATHYS LANE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_8801_21,-74.69056538,39.44828891,8 CAMELOT COURT,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_8801_22,-74.5071925,39.4615115,6 CAMELOT COURT,EGG HARBOR TWP,16,1986,1,RES1,3001 -0108_8801_24,-74.5303835,39.4029175,110 KATHYS LANE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_8801_25,-74.590262,39.349428,106 KATHYS LANE,EGG HARBOR TWP,16,1997,1,RES1,3001 -0108_8801_26,-74.6617224,39.44354374,102 KATHYS LANE,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_8801_28,-74.48069583,39.35050106,1623 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8801_29,-74.63101672,39.35526447,1635 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1780,1,RES1,3001 -0108_8801_5,-74.77688929,39.31619154,1607 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,2,RES1,3001 -0108_8801_6,-74.37183554,39.40671417,1609 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2013,1,RES1,3001 -0108_8801_7,-74.815918,39.652873,1611 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1947,1,RES1,3001 -0108_8801_8,-74.507323,39.4372515,1613 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8801_9,-74.8134235,39.626652,1615 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1810,1,RES1,3001 -0108_8802_10,-74.80302228,39.64166571,121 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1857,1,RES1,3001 -0108_8802_11,-74.406267,39.3830125,129 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_8802_12,-74.5531435,39.3666055,131 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1982,1,GOV1,3004 -0108_8802_13,-74.49711926,39.53006221,133 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_8802_14,-74.56875798,39.35528967,135 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_8802_15,-74.79145365,39.64522052,139 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_8802_16,-74.63320847,39.34668784,141 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_8802_18,-74.49431582,39.33173551,3 PROSPECT AVENUE,EGG HARBOR TWP,16,1978,1,RES1,3001 -0108_8802_2,-74.5156951,39.32222966,1647 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1830,2,COM1,3004 -0108_8802_20,-74.7936665,39.362847,9 PROSPECT AVENUE,EGG HARBOR TWP,16,1995,1,RES1,3001 -0108_8802_21,-74.79499123,39.63463256,7 PROSPECT AVENUE,EGG HARBOR TWP,15,1920,1,RES1,3001 -0108_8802_3,-74.817677,39.5354565,1653 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8802_5,-74.57417726,39.36207585,101 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_8802_7,-74.51282566,39.43609736,107 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_8802_8,-74.4860425,39.470475,109 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_8901_10,-74.50465572,39.32763149,10 PROSPECT AVENUE,EGG HARBOR TWP,15,1910,1,RES1,3001 -0108_8901_11,-74.79739534,39.66133034,8 PROSPECT AVENUE,EGG HARBOR TWP,16,1926,2,RES1,3001 -0108_8901_12,-74.527326,39.3107245,4 PROSPECT AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_8901_17,-74.56704649,39.47900116,159 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1956,1,RES1,3001 -0108_8901_9,-74.43493382,39.36908556,12 PROSPECT AVENUE,EGG HARBOR TWP,15,1880,1,RES1,3001 -0108_9001_10,-74.367176,39.405335,1723 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9001_11,-74.6232755,39.41979,1727 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_9001_12,-74.5425545,39.3828005,1731 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_9001_18,-74.8287015,39.3157535,1761 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1964,1,IND2,3002 -0108_9001_19,-74.65557219,39.35965516,1765 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1962,1,AGR1,3001 -0108_9001_2,-74.59590249,39.31996469,1703 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2000,1,RES1,3001 -0108_9001_20,-74.6207545,39.4238225,1769 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1952,1,RES1,3001 -0108_9001_21,-74.519027,39.450863,1775 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_9001_22,-74.59024514,39.37165858,84 SOMERS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_9001_23,-74.73098634,39.58908702,1779 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1955,1,RES1,3001 -0108_9001_24,-74.498749,39.3334195,1783 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1940,1,RES1,3001 -0108_9001_26,-74.9306225,39.5187325,82 SOMERS AVENUE,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_9001_27,-74.8236835,39.6535145,76 SOMERS AVENUE,EGG HARBOR TWP,16,2001,1,GOV1,3004 -0108_9001_28,-74.41920283,39.3675215,70 SOMERS AVENUE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_9001_29,-74.8104005,39.646782,66 SOMERS AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3001 -0108_9001_3,-74.942453,39.5045,104 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_9001_30,-74.604678,39.314992,62 SOMERS AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_9001_31,-74.600624,39.3315565,60 SOMERS AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_9001_32,-74.55903175,39.36583097,58 SOMERS AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_9001_33,-74.56585009,39.41810125,56 SOMERS AVENUE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_9001_35,-74.52618357,39.31292965,52 SOMERS AVENUE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_9001_36,-74.5243965,39.4065905,48 SOMERS AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_9001_37,-74.48811032,39.33307103,46 SOMERS AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_9001_39,-74.6442726,39.53403114,42 SOMERS AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_9001_4,-74.60438632,39.40768598,1707 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9001_40,-74.4645385,39.5002305,40 SOMERS AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_9001_41,-74.48924398,39.35014483,36 SOMERS AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_9001_43,-74.504824,39.480342,32 SOMERS AVENUE,EGG HARBOR TWP,16,1992,1,RES1,3001 -0108_9001_46,-74.508546,39.3245875,28 SOMERS AVENUE,EGG HARBOR TWP,16,1970,1,GOV1,3004 -0108_9001_47,-74.83207146,39.62255316,26 SOMERS AVENUE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_9001_50,-74.88545825,39.46220985,18 SOMERS AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3002 -0108_9001_51,-74.6272665,39.419349,16 SOMERS AVENUE,EGG HARBOR TWP,16,1975,1,COM1,3004 -0108_9001_52,-74.52316838,39.31811809,14 SOMERS AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_9001_53,-74.5526485,39.4702355,12 SOMERS AVENUE,EGG HARBOR TWP,16,2002,1,RES1,3001 -0108_9001_55,-74.58095094,39.54347491,2 SOMERS AVENUE,EGG HARBOR TWP,16,1994,1,RES1,3001 -0108_9001_7,-74.494513,39.3362465,112 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1860,1,RES1,3001 -0108_9001_9,-74.5380785,39.46181,122 JEFFERS LANDING ROAD,EGG HARBOR TWP,15,1950,2,RES1,3001 -0108_901_10,-74.4992825,39.4340555,6645 DELILAH ROAD,EGG HARBOR TWP,,1960,1,RES1,3001 -0108_901_12,-74.47512333,39.444604,1315 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_901_13,-74.5998875,39.435805,1317 DOUGHTY ROAD,EGG HARBOR TWP,15,1945,1,RES1,3001 -0108_901_16,-74.6018333,39.31419842,1325 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_901_17,-74.9402385,39.528928,1327 DOUGHTY ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_901_18,-74.72220847,39.46136395,1331 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_901_19,-74.8253655,39.6516805,1333 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_901_21,-74.6488375,39.5329705,2701 FIRE ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_901_22,-74.5356293,39.3907751,2703 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_901_24,-74.51681799,39.44525117,2705 FIRE ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_901_25,-74.94236634,39.52958699,2707 FIRE ROAD,EGG HARBOR TWP,16,1949,1,RES1,3001 -0108_901_27,-74.59997969,39.31658909,2711 FIRE ROAD,EGG HARBOR TWP,15,1948,1,RES1,3001 -0108_901_30,-74.760771,39.6363695,6 ATLANTIC AVENUE,EGG HARBOR TWP,16,1996,1,GOV1,3004 -0108_901_31,-74.5748393,39.47983697,14 ATLANTIC AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_901_42,-74.79560188,39.5539541,24 ATLANTIC AVENUE,EGG HARBOR TWP,27,1925,1,RES1,3001 -0108_901_43,-74.64797667,39.37818256,2 GRAMS AVENUE,EGG HARBOR TWP,16,1925,1,RES1,3001 -0108_901_44,-74.9383345,39.526258,6 GRAMS AVENUE,EGG HARBOR TWP,16,1968,1,GOV1,3004 -0108_901_47,-74.53783392,39.46893323,12 GRAMS AVENUE,EGG HARBOR TWP,16,1910,1,RES1,3001 -0108_901_48,-74.50309286,39.41435876,26 ATLANTIC AVENUE,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_901_49,-74.49856251,39.43512325,28 ATLANTIC AVENUE,EGG HARBOR TWP,15,1968,1,RES1,3001 -0108_901_50,-74.6405315,39.361971,30 ATLANTIC AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_901_53,-74.5875755,39.331409,22 ATLANTIC AVENUE,EGG HARBOR TWP,27,1925,1,RES1,3001 -0108_901_54,-74.50918534,39.45904952,6701 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_901_56,-74.72445907,39.45477934,1310 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_902_11,-74.58554394,39.33751869,2607 FIRE ROAD,EGG HARBOR TWP,16,1943,1,RES1,3001 -0108_902_13,-74.46689182,39.34514635,2611 FIRE ROAD,EGG HARBOR TWP,16,1962,1,RES1,3001 -0108_902_15,-74.7844455,39.6394185,2613 FIRE ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_902_16,-74.81917758,39.6458419,2615 FIRE ROAD,EGG HARBOR TWP,16,1926,1,RES1,3001 -0108_902_17,-74.3950945,39.3948825,2617 FIRE ROAD,EGG HARBOR TWP,16,1920,1,RES1,3001 -0108_902_19,-74.53830658,39.50418487,2619 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_902_20,-74.70838693,39.63395875,2623 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_902_22,-74.47448849,39.48673314,2675 FIRE ROAD,EGG HARBOR TWP,,0,1,RES3A,3001 -0108_902_25,-74.45846186,39.49481054,1322 DOUGHTY ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_902_4,-74.602559,39.324139,6715 DELILAH ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_902_5,-74.64056451,39.43390846,1314 DOUGHTY ROAD,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_902_8,-74.4019805,39.38203,6725 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_902_9,-74.6645663,39.40004807,2601 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_903_1,-74.75300065,39.60161125,6801 DELILAH ROAD,EGG HARBOR TWP,,1982,1,RES1,3001 -0108_903_11,-74.62409144,39.4191882,6815 DELILAH ROAD,EGG HARBOR TWP,,1984,1,RES1,3001 -0108_903_13,-74.605058,39.3250745,6821 DELILAH ROAD,EGG HARBOR TWP,,1978,1,RES1,3001 -0108_903_17,-74.79490306,39.64064474,20 ADAMS ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_903_19,-74.93216767,39.5284875,12 ADAMS ROAD,EGG HARBOR TWP,16,1946,1,RES1,3001 -0108_903_2,-74.51118883,39.409427,6805 DELILAH ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_903_22,-74.62461417,39.41661554,6 ADAMS ROAD,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_903_24,-74.55238902,39.37574343,4 ADAMS ROAD,EGG HARBOR TWP,,1960,1,RES3A,3001 -0108_903_25,-74.46116696,39.35428982,2 ADAMS ROAD,EGG HARBOR TWP,15,1937,1,RES1,3001 -0108_903_27,-74.6423325,39.433571,2612 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_903_29,-74.4970985,39.33246,2610 FIRE ROAD,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_903_30,-74.850569,39.431187,1 DEBORA LANE,EGG HARBOR TWP,16,1964,1,COM1,3004 -0108_903_31,-74.5530455,39.3675665,2606 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_903_32,-74.484545,39.3344565,2 DEBORA LANE,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_903_33,-74.376156,39.402261,2608 FIRE ROAD,EGG HARBOR TWP,16,1952,1,COM1,3004 -0108_903_6,-74.78813667,39.6292305,1 MARGARET AVENUE,EGG HARBOR TWP,16,1943,1,RES1,3001 -0108_903_7,-74.494041,39.3400695,6 MARGARET AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_903_8,-74.68436881,39.49395631,4 MARGARET AVENUE,EGG HARBOR TWP,27,1940,1,RES1,3001 -0108_903_9,-74.939191,39.526714,2 MARGARET AVENUE,EGG HARBOR TWP,27,1940,1,RES1,3001 -0108_904_11,-74.6074125,39.491777,1400 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_904_14,-74.4951945,39.4691305,2620 FIRE ROAD,EGG HARBOR TWP,16,1954,1,RES1,3001 -0108_904_4,-74.64374355,39.52655134,11 ADAMS ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_904_5,-74.46262617,39.34615469,13 ADAMS ROAD,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_904_6,-74.7166095,39.6398855,2628 FIRE ROAD,EGG HARBOR TWP,,0,1,COM10,3004 -0108_904_8,-74.50548749,39.44565079,300 MAPLE AVENUE,EGG HARBOR TWP,16,1984,1,RES1,3002 -0108_905_10,-74.43017,39.3754765,7 GLENWOOD AVENUE,EGG HARBOR TWP,16,1999,1,AGR1,3004 -0108_905_11,-74.67946785,39.51375567,5 GLENWOOD AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3002 -0108_905_12,-74.51246273,39.43677605,301 MAPLE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_905_4,-74.88476833,39.55999596,11 GLENWOOD AVENUE,EGG HARBOR TWP,16,1958,1,REL1,3004 -0108_905_9,-74.4869095,39.335249,210 CEDAR AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_907_2,-74.61366917,39.32401601,201 CEDAR AVENUE,EGG HARBOR TWP,43,1966,3,GOV1,3004 -0108_907_3,-74.86782365,39.44487424,203 CEDAR AVENUE,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_907_5,-74.50789644,39.44586867,207 CEDAR AVENUE,EGG HARBOR TWP,16,2003,1,RES1,3001 -0108_907_6,-74.9594291,39.51319422,10 GLENWOOD AVENUE,EGG HARBOR TWP,45,1968,2,GOV1,3004 -0108_907_7,-74.3865425,39.392125,12 GLENWOOD AVENUE,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_908_1,-74.63835523,39.33722754,201 MAPLE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_908_3,-74.518428,39.319019,205 MAPLE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_908_5,-74.7978835,39.6340995,208 CEDAR AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_908_6,-74.362677,39.409459,206 CEDAR AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_908_7,-74.5093933,39.34129423,204 CEDAR AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_908_9,-74.50879887,39.33835733,200 CEDAR AVENUE,EGG HARBOR TWP,16,1936,1,RES1,3001 -0108_910_1,-74.9499905,39.5041765,1408 DOUGHTY ROAD,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_910_10,-74.81958482,39.40193852,202 MAPLE AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_910_2,-74.52723323,39.39672385,104 MAPLE AVENUE,EGG HARBOR TWP,16,1985,1,RES1,3001 -0108_910_3,-74.53474117,39.3132821,110 MAPLE AVENUE,EGG HARBOR TWP,16,1977,1,GOV1,3004 -0108_910_5,-74.91202325,39.51550542,106 MAPLE AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_910_6,-74.591515,39.378945,102 MAPLE AVENUE,EGG HARBOR TWP,16,1980,1,RES1,3001 -0108_910_7,-74.54777474,39.54755765,1412 DOUGHTY ROAD,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_910_8,-74.85974008,39.6147877,1410 DOUGHTY ROAD,EGG HARBOR TWP,16,1976,1,RES1,3001 -0108_9101_1,-74.52747669,39.41931525,138 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1995,1,RES1,3004 -0108_9101_10,-74.43533767,39.3716375,29 SOMERS AVENUE,EGG HARBOR TWP,16,1964,1,RES1,3001 -0108_9101_13,-74.56600072,39.36003341,35 SOMERS AVENUE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9101_15,-74.85790422,39.46071044,37 SOMERS AVENUE,EGG HARBOR TWP,16,1993,1,RES1,3001 -0108_9101_16,-74.5524121,39.39219493,41 SOMERS AVENUE,EGG HARBOR TWP,16,1958,1,RES1,3001 -0108_9101_17,-74.589066,39.4280655,43 SOMERS AVENUE,EGG HARBOR TWP,16,1955,1,AGR1,3004 -0108_9101_19,-74.5544642,39.44171746,47 SOMERS AVENUE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_9101_2,-74.58815433,39.33534183,9 SOMERS AVENUE,EGG HARBOR TWP,16,1936,1,RES1,3001 -0108_9101_20,-74.57028809,39.52900937,49 SOMERS AVENUE,EGG HARBOR TWP,16,1991,1,RES1,3001 -0108_9101_21,-74.5738515,39.4946175,51 SOMERS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9101_22,-74.536646,39.503105,55 SOMERS AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_9101_23,-74.58259117,39.37930526,57 SOMERS AVENUE,EGG HARBOR TWP,,2017,1,RES1,3001 -0108_9101_26,-74.4921795,39.3363125,89 SOMERS AVENUE,EGG HARBOR TWP,45,1965,2,RES1,3001 -0108_9101_28,-74.82049217,39.6358307,1795 MAYS LANDING S.P.RD,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_9101_29,-74.48410412,39.33974367,1797 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_9101_3,-74.4290035,39.3646905,13 SOMERS AVENUE,EGG HARBOR TWP,16,1990,1,RES1,3001 -0108_9101_30,-74.58267141,39.33106427,1799 MAYS LANDING S.P.RD,EGG HARBOR TWP,16,1950,2,RES1,3001 -0108_9101_33,-74.67427696,39.35980468,1815 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9101_34,-74.633641,39.47136,1821 MAYS LANDING S.P.RD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_9101_39,-74.4990083,39.49872025,186 JEFFERS LANDING ROAD,EGG HARBOR TWP,15,1925,1,RES1,3001 -0108_9101_4,-74.86919217,39.49521831,15 SOMERS AVENUE,EGG HARBOR TWP,16,1987,1,GOV1,3004 -0108_9101_42,-74.8471615,39.5576655,154 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1850,1,RES1,3001 -0108_9101_43,-74.51870651,39.39980166,150 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,1900,1,RES1,3001 -0108_9101_44,-74.54438212,39.38891518,148 JEFFERS LANDING ROAD,EGG HARBOR TWP,15,1945,1,RES1,3001 -0108_9101_45,-74.4993285,39.4961695,146 JEFFERS LANDING ROAD,EGG HARBOR TWP,15,1950,1,RES1,3001 -0108_9101_46,-74.36735424,39.40794332,144 JEFFERS LANDING ROAD,EGG HARBOR TWP,16,2016,1,RES1,3001 -0108_9101_5,-74.37407914,39.41311441,17 SOMERS AVENUE,EGG HARBOR TWP,16,1989,1,GOV1,3004 -0108_9101_6,-74.5265855,39.311852,19 SOMERS AVENUE,EGG HARBOR TWP,16,1990,1,GOV1,3004 -0108_9101_7,-74.55561319,39.36314503,21 SOMERS AVENUE,EGG HARBOR TWP,16,1987,1,RES1,3001 -0108_9101_8,-74.4841255,39.338422,23 SOMERS AVENUE,EGG HARBOR TWP,16,1989,1,RES1,3001 -0108_9101_9,-74.51193497,39.32273833,25 SOMERS AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_911_1,-74.5552965,39.361327,1414 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_911_10,-74.60388637,39.4075272,1416 DOUGHTY ROAD,EGG HARBOR TWP,16,1972,1,RES1,3001 -0108_911_2,-74.83405,39.3725195,103 MAPLE AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_911_3,-74.8163935,39.3713285,105 MAPLE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_911_4,-74.60134772,39.43395289,107 MAPLE AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_911_6,-74.50345655,39.33766807,106 CEDAR AVENUE,EGG HARBOR TWP,16,1996,1,RES1,3001 -0108_911_7,-74.49860783,39.42923234,104 CEDAR AVENUE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_912_3,-74.58757132,39.32280625,101 CEDAR AVENUE,EGG HARBOR TWP,16,1920,1,GOV1,3004 -0108_912_5,-74.9383595,39.5229705,105 CEDAR AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3001 -0108_912_6,-74.61807446,39.4316385,107 CEDAR AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_913_1,-74.64498613,39.53137393,2700 FIRE ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_913_2,-74.637208,39.622643,1405 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_913_3,-74.57976702,39.42981421,1409 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,RES1,3001 -0108_913_4,-74.807349,39.6274705,1413 DOUGHTY ROAD,EGG HARBOR TWP,,0,1,GOV1,3004 -0108_915_1,-74.80339598,39.36755767,9 ATLANTIC AVENUE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9201_1,-74.51317666,39.32381752,219 JEFFERS LANDING ROAD,EGG HARBOR TWP,15,1935,1,RES1,3001 -0108_9301_1,-74.78406317,39.67209201,102 MORRIS AVENUE,EGG HARBOR TWP,16,1930,1,RES1,3001 -0108_9301_2,-74.6035745,39.4849875,9 BETHUNE AVENUE,EGG HARBOR TWP,15,1975,1,RES1,3001 -0108_9303_1,-74.50876206,39.32874966,106 MORRIS AVENUE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_9303_4,-74.52688006,39.38969731,108 MORRIS AVENUE,EGG HARBOR TWP,17,1960,1,RES1,3001 -0108_9304_1,-74.4745808,39.34247687,110 MORRIS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9304_3,-74.37921784,39.39694885,112 MORRIS AVENUE,EGG HARBOR TWP,16,1938,1,RES1,3001 -0108_9305_1,-74.464192,39.345819,116 MORRIS AVENUE,EGG HARBOR TWP,16,1970,1,RES1,3001 -0108_9305_7,-74.469015,39.498827,118 MORRIS AVENUE,EGG HARBOR TWP,16,2011,1,RES1,3001 -0108_9306_1,-74.63284583,39.48667199,116 WATERWAY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9306_2,-74.524901,39.3847555,118 WATERWAY AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_9306_4,-74.46916684,39.45425709,122 WATERWAY AVENUE,EGG HARBOR TWP,16,1945,1,RES1,3001 -0108_9306_6,-74.7558917,39.4302983,126 WATERWAY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9306_7,-74.63081071,39.43928689,128 WATERWAY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9307_1,-74.9464535,39.497464,119 MORRIS AVENUE,EGG HARBOR TWP,16,2014,1,GOV1,3004 -0108_9307_2,-74.37127209,39.40727816,121 MORRIS AVENUE,EGG HARBOR TWP,16,1940,1,RES1,3004 -0108_9307_3,-74.94505269,39.52571444,123 MORRIS AVENUE,EGG HARBOR TWP,16,1950,1,GOV1,3004 -0108_9307_4,-74.79630584,39.64168172,1 CREEK ROAD,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9308_2,-74.583194,39.376884,111 MORRIS AVENUE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_9309_3,-74.45853268,39.48547786,112 WATERWAY AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9310_2,-74.64464339,39.32667347,105 MORRIS AVENUE,EGG HARBOR TWP,,0,1,COM1,3004 -0108_9310_3,-74.49302565,39.47390639,107 MORRIS AVENUE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9401_2,-74.54039092,39.47487154,103 ANCHORAGE DRIVE,EGG HARBOR TWP,16,1966,1,GOV1,3004 -0108_9401_3,-74.600352,39.322588,106 STERN DRIVE,EGG HARBOR TWP,16,1968,1,RES1,3001 -0108_9402_1,-74.4848865,39.3406725,135 LONGPORT BLVD.,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9403_1,-74.6302155,39.4293585,100 ANCHORAGE DRIVE,EGG HARBOR TWP,16,1966,1,RES1,3001 -0108_9404_1,-74.55426278,39.47486394,2 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_10,-74.82814676,39.40415786,20 O'BYRNE DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_9404_11,-74.36714448,39.41918784,22 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_12,-74.35957003,39.41372217,24 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_9404_13,-74.5069965,39.435597,26 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_14,-74.64792714,39.35755984,28 O'BYRNE DRIVE,EGG HARBOR TWP,16,2013,1,GOV1,3004 -0108_9404_15,-74.425111,39.3704345,29 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_16,-74.5760475,39.408446,27 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_17,-74.60293712,39.59190651,25 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_18,-74.45331165,39.35291266,23 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_19,-74.60750748,39.40861468,21 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_2,-74.631959,39.39015,4 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_9404_20,-74.72597431,39.45540747,19 POINT DRIVE,EGG HARBOR TWP,16,1950,1,RES1,3001 -0108_9404_21,-74.50001263,39.33632981,17 POINT DRIVE,EGG HARBOR TWP,16,1999,1,RES1,3001 -0108_9404_22,-74.60979728,39.34744254,15 POINT DRIVE,EGG HARBOR TWP,16,2004,1,RES1,3004 -0108_9404_23,-74.6373445,39.39952,13 POINT DRIVE,EGG HARBOR TWP,16,1993,1,GOV1,3004 -0108_9404_24,-74.38038896,39.40068067,11 POINT DRIVE,EGG HARBOR TWP,16,1996,1,COM8,3004 -0108_9404_26,-74.62258189,39.41495869,7 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_27,-74.62691252,39.35949224,5 POINT DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_9404_28,-74.61569935,39.43015444,3 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_29,-74.39706285,39.39000696,1 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_3,-74.59983034,39.38739124,6 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_4,-74.51324744,39.32109539,8 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9404_5,-74.6835135,39.501691,10 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_9404_6,-74.57006466,39.41141488,12 O'BYRNE DRIVE,EGG HARBOR TWP,16,2006,1,RES1,3001 -0108_9404_7,-74.59795852,39.41008927,14 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_9404_8,-74.57018483,39.34393549,16 O'BYRNE DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9405_1,-74.6548365,39.399453,2 POINT DRIVE,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9405_10,-74.58456673,39.32781738,20 POINT DRIVE,EGG HARBOR TWP,16,2015,1,RES1,3001 -0108_9405_11,-74.51791466,39.32215263,22 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9405_12,-74.4942895,39.341415,24 POINT DRIVE,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_9405_13,-74.41381084,39.37053609,26 POINT DRIVE,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_9405_15,-74.8667628,39.45042089,30 POINT DRIVE,EGG HARBOR TWP,16,2014,1,RES1,3001 -0108_9405_2,-74.50275853,39.41584631,4 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9405_3,-74.70410717,39.41823785,6 POINT DRIVE,EGG HARBOR TWP,16,1988,1,RES1,3001 -0108_9405_34,-74.49922467,39.41571451,107 STERN DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9405_4,-74.49926671,39.45378532,8 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9405_5,-74.6842675,39.356078,10 POINT DRIVE,EGG HARBOR TWP,16,2009,1,RES1,3001 -0108_9405_6,-74.5387115,39.4598235,12 POINT DRIVE,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_9405_7,-74.4914074,39.46756795,14 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9405_8,-74.83173605,39.48763541,16 POINT DRIVE,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_9405_9,-74.3730125,39.405537,18 POINT DRIVE,EGG HARBOR TWP,16,1959,1,RES1,3001 -0108_9501_10,-74.5891885,39.3270055,102 HOSPITALITY DRIVE,EGG HARBOR TWP,19,2003,1,RES1,3001 -0108_9501_11,-74.64164316,39.56765147,101 HOSPITALITY DRIVE,EGG HARBOR TWP,19,2003,1,RES1,3001 -0108_9501_12,-74.38129433,39.41518749,1 SUNSET BLVD.,EGG HARBOR TWP,19,2012,1,GOV1,3004 -0108_9501_13,-74.60143781,39.39194812,3 SUNSET BLVD.,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9501_14,-74.6833834,39.37915377,5 SUNSET BLVD.,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_9501_15,-74.83048933,39.624145,7 SUNSET BLVD.,EGG HARBOR TWP,19,2008,1,RES1,3001 -0108_9501_16,-74.55426373,39.52942,9 SUNSET BLVD.,EGG HARBOR TWP,18,1965,1,RES1,3001 -0108_9501_17,-74.71383816,39.46609901,25 SUNSET BLVD.,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9501_18,-74.7884845,39.6766085,23 SUNSET BLVD.,EGG HARBOR TWP,19,2002,1,RES1,3001 -0108_9501_19,-74.63385812,39.36507923,21 SUNSET BLVD.,EGG HARBOR TWP,19,1996,1,RES1,3001 -0108_9501_2,-74.84985,39.400406,110 HOSPITALITY DRIVE,EGG HARBOR TWP,19,2003,1,RES1,3001 -0108_9501_20,-74.6232325,39.422762,19 SUNSET BLVD.,EGG HARBOR TWP,19,1998,1,GOV1,3004 -0108_9501_21,-74.71829228,39.57895751,17 SUNSET BLVD.,EGG HARBOR TWP,19,1996,1,GOV1,3004 -0108_9501_22,-74.77985801,39.67511183,15 SUNSET BLVD.,EGG HARBOR TWP,19,2002,1,RES1,3001 -0108_9501_23,-74.72662201,39.46072933,13 SUNSET BLVD.,EGG HARBOR TWP,18,2000,1,RES1,3001 -0108_9501_24,-74.56273569,39.35842853,11 SUNSET BLVD.,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_9501_25,-74.35478054,39.41480816,12 SUNSET BLVD.,EGG HARBOR TWP,,1990,1,GOV1,3004 -0108_9501_26,-74.53373,39.3787225,14 SUNSET BLVD.,EGG HARBOR TWP,19,1999,1,GOV1,3004 -0108_9501_27,-74.856073,39.364677,16 SUNSET BLVD.,EGG HARBOR TWP,18,1987,1,GOV1,3004 -0108_9501_28,-74.77522697,39.62570333,18 SUNSET BLVD.,EGG HARBOR TWP,19,1990,1,RES1,3001 -0108_9501_29,-74.48512066,39.33846351,20 SUNSET BLVD.,EGG HARBOR TWP,19,1990,1,RES1,3001 -0108_9501_3,-74.6038415,39.3487795,109 HOSPITALITY DRIVE,EGG HARBOR TWP,19,2002,1,RES1,3001 -0108_9501_30,-74.476915,39.339582,22 SUNSET BLVD.,EGG HARBOR TWP,18,1970,1,RES1,3001 -0108_9501_31,-74.6071685,39.3638065,24 SUNSET BLVD.,EGG HARBOR TWP,18,1975,1,RES1,3001 -0108_9501_32,-74.86290165,39.56193055,26 SUNSET BLVD.,EGG HARBOR TWP,18,1970,1,RES1,3001 -0108_9501_33,-74.38848239,39.39043808,28 SUNSET BLVD.,EGG HARBOR TWP,18,1989,1,RES1,3001 -0108_9501_34,-74.49129733,39.53338801,30 SUNSET BLVD.,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9501_35,-74.49219665,39.33681402,32 SUNSET BLVD.,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_9501_36,-74.600547,39.384467,34 SUNSET BLVD.,EGG HARBOR TWP,18,1967,1,RES1,3001 -0108_9501_37,-74.58792135,39.43161078,36 SUNSET BLVD.,EGG HARBOR TWP,19,2011,1,RES1,3001 -0108_9501_38,-74.57103917,39.35064201,38 SUNSET BLVD.,EGG HARBOR TWP,18,1965,1,RES1,3001 -0108_9501_39,-74.64637891,39.46008683,40 SUNSET BLVD.,EGG HARBOR TWP,20,2007,1,RES1,3001 -0108_9501_4,-74.47338962,39.49272461,108 HOSPITALITY DRIVE,EGG HARBOR TWP,19,1998,1,RES1,3001 -0108_9501_40,-74.56962883,39.37564191,42 SUNSET BLVD.,EGG HARBOR TWP,16,1965,1,GOV1,3004 -0108_9501_41,-74.5151895,39.4167865,44 SUNSET BLVD.,EGG HARBOR TWP,16,1960,1,RES1,3001 -0108_9501_42,-74.71232502,39.42835542,46 SUNSET BLVD.,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9501_43,-74.62550366,39.41708623,48 SUNSET BLVD.,EGG HARBOR TWP,18,1965,1,RES1,3001 -0108_9501_44,-74.67032763,39.35949866,50 SUNSET BLVD.,EGG HARBOR TWP,17,1978,1,GOV1,3004 -0108_9501_45,-74.5222425,39.4115515,51 SUNSET BLVD.,EGG HARBOR TWP,18,1977,1,RES1,3001 -0108_9501_46,-74.63535554,39.4192893,49 SUNSET BLVD.,EGG HARBOR TWP,18,1978,1,RES1,3001 -0108_9501_47,-74.48946207,39.49430223,47 SUNSET BLVD.,EGG HARBOR TWP,18,1978,1,RES1,3001 -0108_9501_48,-74.49857273,39.49639198,45 SUNSET BLVD.,EGG HARBOR TWP,18,1972,1,RES1,3001 -0108_9501_5,-74.66062231,39.40309948,107 HOSPITALITY DRIVE,EGG HARBOR TWP,19,1999,1,RES1,3001 -0108_9501_50,-74.39176668,39.39081534,43 SUNSET BLVD.,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9501_51,-74.6049785,39.3822985,41 SUNSET BLVD.,EGG HARBOR TWP,18,2000,1,RES1,3001 -0108_9501_52,-74.4898835,39.3350395,39 SUNSET BLVD.,EGG HARBOR TWP,16,1961,1,RES1,3001 -0108_9501_53,-74.67271403,39.36504506,37 SUNSET BLVD.,EGG HARBOR TWP,17,1975,1,RES1,3001 -0108_9501_54,-74.52364015,39.39725976,35 SUNSET BLVD.,EGG HARBOR TWP,17,1962,1,GOV1,3004 -0108_9501_55,-74.62344676,39.31425927,33 SUNSET BLVD.,EGG HARBOR TWP,17,1965,1,RES1,3001 -0108_9501_56,-74.4743038,39.50444895,8 SUNSET BLVD.,EGG HARBOR TWP,16,1963,1,RES1,3001 -0108_9501_57,-74.44240319,39.36795767,6 SUNSET BLVD.,EGG HARBOR TWP,16,1959,1,GOV1,3004 -0108_9501_58,-74.4572273,39.35215428,4 SUNSET BLVD.,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9501_6,-74.505282,39.4357925,106 HOSPITALITY DRIVE,EGG HARBOR TWP,19,2000,1,RES1,3001 -0108_9501_60,-74.6106895,39.4153655,405 LONGPORT BLVD.,EGG HARBOR TWP,19,2006,1,RES1,3001 -0108_9501_61,-74.977278,39.514678,407 LONGPORT BLVD.,EGG HARBOR TWP,19,2005,1,RES1,3001 -0108_9501_63,-74.63078327,39.36512704,LONGPORT BLVD.,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9501_64,-74.6331764,39.42350189,413 LONGPORT BLVD.,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9501_7,-74.451318,39.357638,105 HOSPITALITY DRIVE,EGG HARBOR TWP,18,1995,1,RES1,3001 -0108_9501_8,-74.61448899,39.59940217,104 HOSPITALITY DRIVE,EGG HARBOR TWP,18,1997,1,RES1,3001 -0108_9501_9,-74.51778,39.442806,103 HOSPITALITY DRIVE,EGG HARBOR TWP,18,2002,1,RES1,3001 -0108_9502_1,-74.65666841,39.36632767,1 SEAVIEW DRIVE,EGG HARBOR TWP,17,1965,1,RES1,3001 -0108_9502_10,-74.6461715,39.395931,19 SEAVIEW DRIVE,EGG HARBOR TWP,17,1972,1,RES1,3001 -0108_9502_11,-74.68756815,39.48044647,21 SEAVIEW DRIVE,EGG HARBOR TWP,17,1972,1,RES1,3001 -0108_9502_12,-74.5919175,39.3277515,23 SEAVIEW DRIVE,EGG HARBOR TWP,17,1973,1,RES1,3001 -0108_9502_13,-74.5140465,39.326904,25 SEAVIEW DRIVE,EGG HARBOR TWP,17,1974,1,RES1,3001 -0108_9502_14,-74.83122056,39.44832921,27 SEAVIEW DRIVE,EGG HARBOR TWP,18,1974,1,GOV1,3004 -0108_9502_15,-74.534803,39.407719,29 SEAVIEW DRIVE,EGG HARBOR TWP,,1974,1,RES1,3001 -0108_9502_16,-74.80255321,39.64980054,31 SEAVIEW DRIVE,EGG HARBOR TWP,18,1974,1,RES1,3001 -0108_9502_17,-74.51883812,39.32085765,33 SEAVIEW DRIVE,EGG HARBOR TWP,17,1974,1,RES1,3001 -0108_9502_18,-74.642667,39.3602585,35 SEAVIEW DRIVE,EGG HARBOR TWP,17,1974,1,RES1,3001 -0108_9502_19,-74.5795182,39.31300104,37 SEAVIEW DRIVE,EGG HARBOR TWP,18,1974,1,RES1,3001 -0108_9502_2,-74.57279814,39.37742904,3 SEAVIEW DRIVE,EGG HARBOR TWP,17,1960,1,RES1,3001 -0108_9502_20,-74.664951,39.568377,39 SEAVIEW DRIVE,EGG HARBOR TWP,17,1974,1,RES1,3001 -0108_9502_21,-74.5181355,39.3209845,41 SEAVIEW DRIVE,EGG HARBOR TWP,17,1974,1,RES1,3001 -0108_9502_22,-74.547387,39.373424,42 SEAVIEW DRIVE,EGG HARBOR TWP,19,1982,1,RES1,3001 -0108_9502_23,-74.44834782,39.35772136,40 SEAVIEW DRIVE,EGG HARBOR TWP,20,2005,1,RES1,3001 -0108_9502_24,-74.50253866,39.42840002,38 SEAVIEW DRIVE,EGG HARBOR TWP,19,1985,1,GOV1,3004 -0108_9502_25,-74.5775106,39.41487967,36 SEAVIEW DRIVE,EGG HARBOR TWP,19,1985,1,RES1,3001 -0108_9502_26,-74.49821234,39.33440398,34 SEAVIEW DRIVE,EGG HARBOR TWP,19,1987,1,RES1,3001 -0108_9502_27,-74.68037717,39.6366005,32 SEAVIEW DRIVE,EGG HARBOR TWP,20,2003,1,RES1,3001 -0108_9502_28,-74.627198,39.413386,30 SEAVIEW DRIVE,EGG HARBOR TWP,20,1987,1,RES1,3001 -0108_9502_29,-74.61640924,39.30965747,28 SEAVIEW DRIVE,EGG HARBOR TWP,19,1987,1,RES1,3001 -0108_9502_3,-74.634879,39.531751,5 SEAVIEW DRIVE,EGG HARBOR TWP,17,1972,1,RES1,3001 -0108_9502_30,-74.79400384,39.45497589,26 SEAVIEW DRIVE,EGG HARBOR TWP,20,1986,1,RES1,3001 -0108_9502_31,-74.5361845,39.380318,24 SEAVIEW DRIVE,EGG HARBOR TWP,20,1998,1,RES1,3001 -0108_9502_32,-74.49363631,39.3426376,22 SEAVIEW DRIVE,EGG HARBOR TWP,20,2001,1,RES1,3001 -0108_9502_33,-74.6017755,39.369641,20 SEAVIEW DRIVE,EGG HARBOR TWP,20,2005,1,RES1,3001 -0108_9502_4,-74.6381405,39.566394,7 SEAVIEW DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9502_5,-74.61719682,39.42983247,9 SEAVIEW DRIVE,EGG HARBOR TWP,17,1975,1,RES1,3001 -0108_9502_6,-74.51915216,39.41115174,11 SEAVIEW DRIVE,EGG HARBOR TWP,17,1975,1,GOV1,3004 -0108_9502_7,-74.51366353,39.32609567,13 SEAVIEW DRIVE,EGG HARBOR TWP,16,1975,1,RES1,3001 -0108_9502_8,-74.45123193,39.4945083,15 SEAVIEW DRIVE,EGG HARBOR TWP,17,1974,1,RES1,3001 -0108_9502_9,-74.3870465,39.3926595,17 SEAVIEW DRIVE,EGG HARBOR TWP,16,1965,1,RES1,3001 -0108_9604_1,-74.711423,39.638829,101 LONGPORT BLVD.,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9701_8,-74.37890197,39.40275514,125 MARGATE BLVD.,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9801_13,-74.48608048,39.43931029,114 MARGATE BLVD.,EGG HARBOR TWP,16,1973,1,RES1,3001 -0108_9801_15,-74.366539,39.41567017,124 MARGATE BLVD.,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9805_1,-74.63147225,39.42212912,300 MARGATE BLVD.,EGG HARBOR TWP,,0,1,RES1,3001 -0108_9805_2,-74.3932935,39.3943815,MARGATE BRIDGE,EGG HARBOR TWP,,0,1,RES1,3001 -0109_1_10,-74.92556816,39.526338,118 NINTH AVE,ESTELL MANOR CITY,15,1900,1,RES1,3001 -0109_1_11,-74.441574,39.367492,113 TENTH AVE,ESTELL MANOR CITY,17,1990,1,RES1,3001 -0109_1_13,-74.55148524,39.3829256,117 TENTH AVE,ESTELL MANOR CITY,17,1987,1,RES1,3001 -0109_1_15,-74.87164757,39.59290583,121 TENTH AVE,ESTELL MANOR CITY,17,1984,1,RES1,3001 -0109_1_16,-74.8040292,39.64708121,123 TENTH AVE,ESTELL MANOR CITY,17,1997,1,RES1,3001 -0109_1_17,-74.947643,39.518703,125 TENTH AVE,ESTELL MANOR CITY,17,1998,1,RES1,3001 -0109_1_18,-74.83878669,39.37705532,127 TENTH AVE,ESTELL MANOR CITY,17,1987,1,RES1,3001 -0109_1_19,-74.61380129,39.42792885,129 TENTH AVE,ESTELL MANOR CITY,17,1996,1,RES1,3001 -0109_1_4,-74.81839545,39.3651558,106 NINTH AVE,ESTELL MANOR CITY,16,1900,1,RES1,3001 -0109_1_5,-74.6270665,39.438402,108 NINTH AVE,ESTELL MANOR CITY,16,1840,1,RES1,3001 -0109_1_7,-74.6980775,39.588189,112 NINTH AVE,ESTELL MANOR CITY,16,1930,2,RES1,3001 -0109_1_8,-74.50962798,39.44038815,114 NINTH AVE,ESTELL MANOR CITY,16,1930,1,RES1,3001 -0109_10_45,-74.88390502,39.46385409,152 FIFTH AVE,ESTELL MANOR CITY,16,1905,1,RES1,3001 -0109_10_48,-74.66990533,39.35274066,158 FIFTH AVE,ESTELL MANOR CITY,16,1992,1,RES1,3001 -0109_10_49,-74.74723869,39.44628218,160 FIFTH AVE,ESTELL MANOR CITY,17,1921,1,RES1,3001 -0109_10_53,-74.62665599,39.35588526,152 CAPE MAY AVE,ESTELL MANOR CITY,17,1989,1,RES1,3001 -0109_10_56,-74.5912985,39.4311985,158 CAPE MAY AVE,ESTELL MANOR CITY,17,1988,1,RES1,3001 -0109_12_17,-74.6059475,39.38358,139 FIFTH AVE,ESTELL MANOR CITY,16,1996,1,RES1,3001 -0109_12_19,-74.66987374,39.35119654,143 FIFTH AVE,ESTELL MANOR CITY,16,1973,1,RES1,3001 -0109_12_24,-74.51766769,39.38882704,153 FIFTH AVE,ESTELL MANOR CITY,16,1998,1,RES1,3001 -0109_12_25,-74.9507135,39.5275495,155 FIFTH AVE,ESTELL MANOR CITY,16,1938,2,RES1,3001 -0109_12_26,-74.5470135,39.36969316,157 FIFTH AVE,ESTELL MANOR CITY,16,1970,1,RES1,3001 -0109_12_47,-74.52643673,39.31119169,161 FIFTH AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_12_48,-74.5179555,39.409646,164 CAPE MAY AVE,ESTELL MANOR CITY,16,1956,1,RES1,3001 -0109_12_49,-74.60037831,39.37986388,166 CAPE MAY AVE,ESTELL MANOR CITY,43,1938,2,RES1,3001 -0109_12_49.01,-74.78682417,39.63817851,168 CAPE MAY AVE,ESTELL MANOR CITY,16,1969,1,RES1,3001 -0109_12_50,-74.70455676,39.5693028,170 CAPE MAY AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_12_51,-74.87414821,39.60018779,172 CAPE MAY AVE,ESTELL MANOR CITY,16,1988,1,GOV1,3004 -0109_12_53,-74.5988415,39.436055,160 FOURTH AVE,ESTELL MANOR CITY,15,1955,1,RES1,3001 -0109_13_26.02,-74.51042538,39.45347385,163 FOURTH AVE,ESTELL MANOR CITY,16,1973,1,RES1,3001 -0109_13_26.06,-74.51529574,39.46813268,182 CAPE MAY AVE,ESTELL MANOR CITY,16,1988,1,RES1,3004 -0109_13_28,-74.44024848,39.35933882,184 CAPE MAY AVE,ESTELL MANOR CITY,17,1981,1,RES1,3001 -0109_13_29,-74.6422585,39.52572,186 CAPE MAY AVE,ESTELL MANOR CITY,16,1982,1,RES1,3001 -0109_13_36,-74.55374445,39.38353298,128 THIRD AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_16.01_1,-74.78849305,39.61554617,162 NINTH AVE,ESTELL MANOR CITY,16,1954,1,RES1,3001 -0109_16.01_2,-74.66219234,39.40360361,164 NINTH AVE,ESTELL MANOR CITY,16,1955,1,RES1,3001 -0109_16.01_2.01,-74.5623235,39.4135775,166 NINTH AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_16.01_2.02,-74.73603335,39.45157651,168 NINTH AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_16.01_4,-74.6374836,39.36992805,172 NINTH AVE,ESTELL MANOR CITY,17,2012,1,RES1,3001 -0109_16.01_5,-74.61943283,39.43259159,174 NINTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_16.01_7,-74.56460089,39.55391506,1309 TENTH AVE,ESTELL MANOR CITY,16,1920,1,RES1,3001 -0109_16_1,-74.51107386,39.43545906,109 CAPE MAY AVE,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_16_1.01,-74.6417849,39.39343965,167 NINTH AVE,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_16_1.03,-74.87529679,39.60345547,171 NINTH AVE,ESTELL MANOR CITY,16,1979,1,RES1,3001 -0109_16_10,-74.818904,39.3674625,177 NINTH AVE,ESTELL MANOR CITY,16,1920,1,RES1,3001 -0109_16_11,-74.75109668,39.47232784,179 NINTH AVE,ESTELL MANOR CITY,16,1968,1,RES1,3001 -0109_16_12,-74.86821148,39.45644069,181 NINTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_16_13,-74.564277,39.369638,183-185 NINTH AVE,ESTELL MANOR CITY,16,1954,2,RES1,3001 -0109_16_16,-74.46911607,39.44507054,150 EIGHTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_16_16.02,-74.67368727,39.55484997,154 EIGHTH AVE,ESTELL MANOR CITY,16,1973,1,RES1,3001 -0109_16_17,-74.6261455,39.610116,156 EIGHTH AVE,ESTELL MANOR CITY,16,1953,1,RES1,3001 -0109_16_18,-74.55862979,39.39899892,158 EIGHTH AVE,ESTELL MANOR CITY,16,1900,1,IND2,3002 -0109_16_19,-74.80295333,39.65758249,160 EIGHTH AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_16_20,-74.56920483,39.37320725,162 EIGHTH AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_16_21,-74.52290393,39.3929435,164 EIGHTH AVE,ESTELL MANOR CITY,16,1986,1,RES1,3001 -0109_16_22,-74.64702783,39.43324301,166 EIGHTH AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_16_23,-74.51140782,39.40565648,168 EIGHTH AVE,ESTELL MANOR CITY,16,1992,1,RES1,3001 -0109_16_24,-74.634789,39.509838,170 EIGHTH AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_16_25.01,-74.79367346,39.64382459,189 NINTH AVE,ESTELL MANOR CITY,16,1947,1,RES1,3001 -0109_16_25.02,-74.70267679,39.42911582,191 NINTH AVE,ESTELL MANOR CITY,17,1985,1,RES1,3001 -0109_16_27,-74.754188,39.449638,112 TUCKAHOE RD,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_16_28.01,-74.93249351,39.50894717,116 TUCKAHOE RD,ESTELL MANOR CITY,51,2004,1,RES1,3001 -0109_16_3,-74.63340865,39.36615875,113 CAPE MAY AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_16_5,-74.55895345,39.51708903,117 CAPE MAY AVE,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_16_7.01,-74.555858,39.550399,146 EIGHTH AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_16_7.02,-74.53138768,39.38084803,148 EIGHTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_16_8,-74.6403835,39.466823,173 NINTH AVE,ESTELL MANOR CITY,16,1973,1,RES1,3001 -0109_16_9,-74.9190945,39.5106705,175 NINTH AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_17_1.01,-74.75988127,39.43178512,137 EIGHTH AVE,ESTELL MANOR CITY,16,1972,1,RES1,3004 -0109_17_10,-74.56415743,39.41757416,147 EIGHTH AVE,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_17_11,-74.79179478,39.6308728,149 EIGHTH AVE,ESTELL MANOR CITY,17,2001,1,RES1,3001 -0109_17_12,-74.67194917,39.55805463,151 EIGHTH AVE,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_17_13,-74.530279,39.399814,153 EIGHTH AVE,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_17_14,-74.55711564,39.39867483,155 EIGHTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_17_15,-74.69601206,39.58973085,157 EIGHTH AVE,ESTELL MANOR CITY,16,1965,1,RES1,3001 -0109_17_19,-74.7450875,39.446172,162 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1955,1,RES1,3001 -0109_17_20,-74.7892025,39.61497533,164 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1961,1,COM1,3004 -0109_17_22,-74.5273015,39.4670875,168 SEVENTH AVE EAST,ESTELL MANOR CITY,17,1975,1,GOV1,3004 -0109_17_23,-74.9397495,39.5170795,170 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_17_24,-74.71516584,39.46804971,172 SEVENTH AVE EAST,ESTELL MANOR CITY,17,1985,1,GOV1,3004 -0109_17_25,-74.77443131,39.61536265,174 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1950,1,RES1,3001 -0109_17_26,-74.66204557,39.54618435,176 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1950,1,RES1,3001 -0109_17_27,-74.62891378,39.35379419,178 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_17_27.01,-74.820889,39.642152,180 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1973,1,RES1,3001 -0109_17_28,-74.60016243,39.41089948,EIGHTH AVE & TUCKAHOE RD,ESTELL MANOR CITY,16,1949,1,RES1,3001 -0109_17_29,-74.7114399,39.63848924,126 TUCKAHOE RD,ESTELL MANOR CITY,16,1954,1,RES1,3001 -0109_17_30,-74.4630425,39.4934445,128 TUCKAHOE RD,ESTELL MANOR CITY,16,1948,1,RES1,3001 -0109_17_32,-74.5187885,39.4617895,132 TUCKAHOE RD,ESTELL MANOR CITY,16,1995,1,GOV1,3004 -0109_17_33,-74.452515,39.4953615,134 TUCKAHOE RD,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_17_34,-74.6028195,39.435726,182 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_17_35,-74.56883595,39.41407972,184 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1964,1,RES1,3001 -0109_17_36,-74.822605,39.4003375,186 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_17_37,-74.80887918,39.53575919,136 TUCKAHOE RD,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_17_4,-74.61843019,39.42485897,129 CAPE MAY AVE,ESTELL MANOR CITY,16,1998,1,RES1,3001 -0109_17_7,-74.60590352,39.38635733,156 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_17_8,-74.5020435,39.4305215,143 EIGHTH AVE,ESTELL MANOR CITY,16,1966,1,RES1,3001 -0109_17_9,-74.53716849,39.40402298,145 EIGHTH AVE,ESTELL MANOR CITY,17,1984,1,RES1,3001 -0109_18.01_1,-74.89628559,39.48271711,184 CUMBERLAND AVE,ESTELL MANOR CITY,50,1960,1,RES1,3001 -0109_18.01_10,-74.63382034,39.34945403,190 CUMBERLAND AVE,ESTELL MANOR CITY,16,1954,1,RES1,3001 -0109_18.01_13,-74.523261,39.3940915,152 TUCKAHOE RD,ESTELL MANOR CITY,16,1910,1,RES1,3001 -0109_18.01_5,-74.6880345,39.6302905,186 CUMBERLAND AVE,ESTELL MANOR CITY,16,1910,1,RES1,3001 -0109_18.01_6,-74.91341347,39.53170418,188 CUMBERLAND AVE,ESTELL MANOR CITY,16,1910,1,RES1,3001 -0109_18_1.01,-74.69238425,39.44063959,171 SEVENTH AVE EAST,ESTELL MANOR CITY,17,1989,1,RES1,3001 -0109_18_10,-74.56440914,39.41303574,176 CUMBERLAND AVE,ESTELL MANOR CITY,16,1933,1,RES1,3001 -0109_18_11,-74.8076175,39.6383845,178 CUMBERLAND AVE,ESTELL MANOR CITY,16,1968,1,RES1,3001 -0109_18_12.01,-74.58031989,39.40883251,180 CUMBERLAND AVE,ESTELL MANOR CITY,16,1900,1,RES1,3001 -0109_18_13,-74.592113,39.4097415,189 SEVENTH AVE EAST,ESTELL MANOR CITY,17,2012,1,RES1,3001 -0109_18_14,-74.53259983,39.38816199,191 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1998,1,RES1,3001 -0109_18_15,-74.73297329,39.64216048,193 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1956,1,GOV1,3004 -0109_18_16,-74.83762619,39.48141002,195 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1948,1,RES1,3001 -0109_18_17.01,-74.69902483,39.488968,138 TUCKAHOE RD,ESTELL MANOR CITY,16,1945,1,RES1,3001 -0109_18_19,-74.50925853,39.47188412,142 TUCKAHOE RD,ESTELL MANOR CITY,16,1983,1,RES1,3001 -0109_18_20,-74.53033509,39.4185084,144 TUCKAHOE RD,ESTELL MANOR CITY,16,1956,1,RES1,3001 -0109_18_21,-74.5823375,39.4084205,146 TUCKAHOE RD,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_18_22,-74.52857532,39.38620442,148 TUCKAHOE RD,ESTELL MANOR CITY,16,1967,1,RES1,3001 -0109_18_23,-74.49172614,39.33395753,150 TUCKAHOE RD,ESTELL MANOR CITY,16,1948,1,RES1,3001 -0109_18_5.01,-74.88496767,39.59401751,179 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1994,1,RES1,3001 -0109_18_5.02,-74.62813849,39.43369591,160 CUMBERLAND AVE,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_18_6,-74.82490267,39.54374789,162 CUMBERLAND AVE,ESTELL MANOR CITY,15,1952,1,RES1,3001 -0109_18_6.01,-74.656876,39.4489135,164 CUMBERLAND AVE,ESTELL MANOR CITY,16,1930,1,RES1,3001 -0109_18_7,-74.543851,39.3908755,166 CUMBERLAND AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_18_7.01,-74.516135,39.4153265,183 SEVENTH AVE EAST,ESTELL MANOR CITY,17,1997,1,RES1,3001 -0109_18_7.02,-74.6508905,39.45315,168 CUMBERLAND AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_18_8,-74.508771,39.4358185,170 CUMBERLAND AVE,ESTELL MANOR CITY,16,1975,1,RES3A,3001 -0109_18_8.01,-74.53076629,39.38420726,187 SEVENTH AVE EAST,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_19.01_1,-74.63586367,39.60860717,158 TUCKAHOE RD,ESTELL MANOR CITY,16,1964,1,RES1,3001 -0109_19.01_3,-74.9302385,39.5177185,156 TUCKAHOE RD,ESTELL MANOR CITY,16,1930,1,RES1,3001 -0109_19.01_5,-74.6892285,39.446453,154 TUCKAHOE RD,ESTELL MANOR CITY,16,1920,1,GOV1,3004 -0109_19.01_8,-74.56998,39.4135265,189B CUMBERLAND AVE,ESTELL MANOR CITY,16,1920,1,RES1,3001 -0109_19_10,-74.50629885,39.32518798,161 CAPE MAY AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_19_11,-74.49817375,39.33387933,166 FIFTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_19_11.01,-74.75624136,39.44682161,163 CAPE MAY AVE,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_19_11.02,-74.52378581,39.39696646,168 FIFTH AVE,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_19_11.03,-74.645914,39.5277995,170 FIFTH AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_19_15,-74.65371424,39.62624871,169 CUMBERLAND AVE,ESTELL MANOR CITY,16,1930,1,RES1,3001 -0109_19_16.01,-74.5243455,39.4285515,171 CUMBERLAND AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_19_17,-74.52697222,39.4668034,175 CUMBERLAND AVE,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_19_18,-74.7617745,39.6408565,177 CUMBERLAND AVE,ESTELL MANOR CITY,17,1982,1,RES1,3001 -0109_19_2,-74.5405425,39.3834015,143 CAPE MAY AVE,ESTELL MANOR CITY,16,1968,1,GOV1,3004 -0109_19_20,-74.51888803,39.41011832,181 CUMBERLAND AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_19_21,-74.45773293,39.49823674,183 CUMBERLAND AVE,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_19_22,-74.815437,39.633245,185 CUMBERLAND AVE,ESTELL MANOR CITY,16,1930,1,RES1,3001 -0109_19_23,-74.50571872,39.44859244,187 CUMBERLAND AVE,ESTELL MANOR CITY,16,1983,1,RES1,3001 -0109_19_24,-74.5868385,39.432426,172 FIFTH AVE,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_19_25,-74.80028639,39.59658151,174 FIFTH AVE,ESTELL MANOR CITY,16,1957,1,RES1,3001 -0109_19_26,-74.538429,39.3871515,176 FIFTH AVE,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_19_27,-74.8280595,39.403227,178 FIFTH AVE,ESTELL MANOR CITY,16,1956,1,RES1,3001 -0109_19_28,-74.521636,39.396892,180 FIFTH AVE,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_19_29,-74.948524,39.5085935,182 FIFTH AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_19_3,-74.6244665,39.438883,145 CAPE MAY AVE,ESTELL MANOR CITY,17,1998,1,RES1,3001 -0109_19_30,-74.4567653,39.48938182,184 FIFTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_19_31.01,-74.93343282,39.52484103,186 FIFTH AVE,ESTELL MANOR CITY,16,1956,1,RES1,3001 -0109_19_32,-74.62496254,39.41817931,190 FIFTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_19_33,-74.58032481,39.41332894,192 FIFTH AVE,ESTELL MANOR CITY,16,1986,1,RES1,3001 -0109_19_34,-74.61404935,39.43099969,194 FIFTH AVE,ESTELL MANOR CITY,16,1971,1,RES1,3001 -0109_19_35,-74.880046,39.592553,196 FIFTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_19_36,-74.59802658,39.43110129,198 FIFTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_19_36.01,-74.82504924,39.40379187,200 FIFTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_19_37,-74.5080615,39.3250445,202 FIFTH AVE,ESTELL MANOR CITY,17,1997,1,RES1,3001 -0109_19_38,-74.7997913,39.65505529,189 CUMBERLAND AVE,ESTELL MANOR CITY,16,1920,1,RES1,3001 -0109_19_39,-74.48875728,39.43584152,160 TUCKAHOE RD,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_19_40,-74.862209,39.4949655,162 TUCKAHOE RD,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_19_41,-74.68778204,39.6302803,164 TUCKAHOE RD,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_19_42,-74.68867367,39.5727015,166 TUCKAHOE RD,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_19_42.01,-74.521362,39.396446,206 FIFTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_19_42.02,-74.64139466,39.53212147,204 FIFTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_19_5,-74.54717,39.370884,149 CAPE MAY AVE,ESTELL MANOR CITY,16,1994,1,RES1,3001 -0109_19_7,-74.79924954,39.61781966,153 CAPE MAY AVE,ESTELL MANOR CITY,16,1990,1,RES1,3001 -0109_19_8.02,-74.53905386,39.37227243,155 CAPE MAY AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_19_8.03,-74.64962608,39.53066085,157 CAPE MAY AVE,ESTELL MANOR CITY,51,1979,1,RES1,3001 -0109_19_9,-74.67489562,39.35876484,159 CAPE MAY AVE,ESTELL MANOR CITY,17,1978,1,RES1,3001 -0109_2_10,-74.70329438,39.42019368,138 NINTH AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_2_11,-74.4726105,39.446797,140 NINTH AVE,ESTELL MANOR CITY,17,1991,1,RES1,3001 -0109_2_12,-74.55846225,39.40691525,142 NINTH AVE,ESTELL MANOR CITY,17,1996,1,RES1,3001 -0109_2_13,-74.766419,39.348659,144 NINTH AVE,ESTELL MANOR CITY,16,1958,1,RES1,3001 -0109_2_14,-74.5241715,39.3994095,146 NINTH AVE,ESTELL MANOR CITY,17,1998,1,GOV1,3004 -0109_2_15,-74.824115,39.496943,148 NINTH AVE,ESTELL MANOR CITY,17,1991,1,GOV1,3004 -0109_2_16,-74.53231116,39.38063698,150 NINTH AVE,ESTELL MANOR CITY,16,1958,1,RES1,3001 -0109_2_17,-74.974901,39.507803,152 NINTH AVE,ESTELL MANOR CITY,16,1990,1,RES1,3001 -0109_2_18,-74.58852043,39.41644369,149 TENTH AVE,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_2_18.01,-74.80628792,39.48974079,151 TENTH & CAPE MAY AVES,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_2_19,-74.63181744,39.39196179,98 CAPE MAY AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_2_20,-74.5741975,39.4265845,100 CAPE MAY AVE,ESTELL MANOR CITY,16,1973,1,RES1,3001 -0109_2_21,-74.57433487,39.41043806,102 CAPE MAY AVE,ESTELL MANOR CITY,17,1995,1,RES1,3001 -0109_2_23,-74.63731247,39.43354308,106 CAPE MAY AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_2_24,-74.83470243,39.40718082,154 NINTH AVE,ESTELL MANOR CITY,17,1978,1,COM4,3004 -0109_2_24.01,-74.466863,39.50389621,156 NINTH AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_2_24.02,-74.7812789,39.64294759,158 NINTH AVE,ESTELL MANOR CITY,17,1980,1,RES1,3001 -0109_2_24.03,-74.527238,39.387955,160 NINTH AVE,ESTELL MANOR CITY,16,1982,1,RES1,3001 -0109_2_3,-74.54249709,39.39086941,135 TENTH AVE,ESTELL MANOR CITY,16,1927,1,RES1,3001 -0109_2_4,-74.52452796,39.390863,137 TENTH AVE,ESTELL MANOR CITY,16,1920,1,GOV1,3004 -0109_2_5,-74.8428035,39.5362435,139 TENTH AVE,ESTELL MANOR CITY,16,1962,1,RES1,3001 -0109_2_7,-74.59011181,39.4188476,143 TENTH AVE,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_2_8,-74.8338435,39.619538,145 TENTH AVE,ESTELL MANOR CITY,16,1950,1,GOV1,3004 -0109_2_9,-74.79257359,39.66943634,147 TENTH AVE,ESTELL MANOR CITY,16,1966,1,GOV1,3004 -0109_20_1,-74.48189431,39.44316324,167 CAPE MAY AVE,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_20_1.01,-74.50777362,39.46292114,163 FIFTH AVE,ESTELL MANOR CITY,17,2001,1,RES1,3001 -0109_20_10,-74.5533705,39.369211,173 FIFTH AVE,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_20_11,-74.85591293,39.61992057,175 FIFTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_20_12,-74.9140645,39.5151215,177 FIFTH AVE,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_20_13,-74.587294,39.4274875,179 FIFTH AVE,ESTELL MANOR CITY,16,1997,1,RES1,3001 -0109_20_17,-74.48873893,39.33364984,187 FIFTH AVE,ESTELL MANOR CITY,16,1965,1,RES1,3001 -0109_20_18,-74.88712,39.596047,189 FIFTH AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_20_19,-74.64327939,39.4366864,191 FIFTH AVE,ESTELL MANOR CITY,16,1956,1,IND2,3002 -0109_20_2.01,-74.58720879,39.41093844,167 FIFTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_20_21,-74.9562015,39.497841,195 FIFTH AVE,ESTELL MANOR CITY,16,1957,1,COM1,3004 -0109_20_22,-74.5370755,39.3839955,197 FIFTH AVE,ESTELL MANOR CITY,16,1956,1,RES1,3001 -0109_20_23,-74.5227674,39.38745396,162 FOURTH AVE,ESTELL MANOR CITY,16,1994,1,RES1,3001 -0109_20_25,-74.72029244,39.4495447,166 FOURTH AVE,ESTELL MANOR CITY,16,1988,1,RES4,3001 -0109_20_3,-74.87673,39.5982785,169 CAPE MAY AVE,ESTELL MANOR CITY,16,1956,1,RES1,3001 -0109_20_32,-74.76959671,39.63259788,180 FOURTH AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_20_34,-74.541377,39.38104,184 FOURTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_20_37,-74.5659635,39.37381079,190 FOURTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_20_38,-74.52289728,39.31690634,192 FOURTH AVE,ESTELL MANOR CITY,16,1973,1,RES1,3001 -0109_20_39.01,-74.61338225,39.48956667,203 FIFTH AVE,ESTELL MANOR CITY,53,1978,1,RES1,3001 -0109_20_39.02,-74.81675595,39.36194289,201 FIFTH AVE,ESTELL MANOR CITY,16,1991,1,RES1,3004 -0109_20_39.04,-74.4904965,39.4316595,199 FIFTH AVE,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_20_40,-74.95671369,39.50370984,170 TUCKAHOE RD,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_20_41,-74.492799,39.433242,172 TUCKAHOE RD,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_20_43,-74.719706,39.480859,176 TUCKAHOE RD,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_20_45,-74.6207045,39.5218995,194 FOURTH AVE,ESTELL MANOR CITY,16,1989,1,RES1,3001 -0109_20_5,-74.59118223,39.37132069,173 CAPE MAY AVE,ESTELL MANOR CITY,16,1986,1,GOV1,3004 -0109_20_6,-74.813472,39.3656095,175 CAPE MAY AVE,ESTELL MANOR CITY,16,1990,1,RES1,3001 -0109_20_7,-74.935754,39.523142,160 B FOURTH AVE,ESTELL MANOR CITY,16,1983,1,RES1,3001 -0109_20_8,-74.74735048,39.45154866,169 FIFTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_20_9,-74.79634066,39.62330454,171 FIFTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_21_10,-74.5190843,39.4486283,171 FOURTH AVE,ESTELL MANOR CITY,17,1980,1,RES1,3001 -0109_21_12,-74.50595349,39.44931747,175 FOURTH AVE,ESTELL MANOR CITY,17,1988,1,RES1,3001 -0109_21_13,-74.49032311,39.46060515,177 FOURTH AVE,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_21_17,-74.57401556,39.37253933,185 FOURTH AVE,ESTELL MANOR CITY,17,1989,1,RES1,3001 -0109_21_18,-74.66275786,39.53994402,187 FOURTH AVE,ESTELL MANOR CITY,16,2000,1,RES1,3001 -0109_21_19,-74.63772333,39.53783935,189 FOURTH AVE,ESTELL MANOR CITY,16,1982,1,RES1,3001 -0109_21_2,-74.61544081,39.50807954,179 CAPE MAY AVE,ESTELL MANOR CITY,16,1900,1,RES1,3001 -0109_21_20,-74.74430812,39.41262473,191 FOURTH AVE,ESTELL MANOR CITY,16,1977,1,GOV1,3004 -0109_21_21,-74.7891655,39.625169,193 FOURTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_21_23,-74.5959225,39.3786535,197 FOURTH AVE,ESTELL MANOR CITY,16,1966,1,RES1,3001 -0109_21_3,-74.5193435,39.410119,181 CAPE MAY AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_21_33,-74.761903,39.6362115,176 THIRD AVE,ESTELL MANOR CITY,16,1994,1,RES1,3001 -0109_21_39,-74.49102315,39.4411564,188 THIRD AVE,ESTELL MANOR CITY,17,1994,1,RES1,3001 -0109_21_40,-74.64634278,39.55971753,190 THIRD AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_21_41,-74.70592267,39.56895251,192 THIRD AVE,ESTELL MANOR CITY,16,1960,1,RES1,3001 -0109_21_42,-74.42193673,39.36801722,194 THIRD AVE,ESTELL MANOR CITY,16,1998,1,RES1,3001 -0109_21_43,-74.43404743,39.36747339,201 FOURTH AVE,ESTELL MANOR CITY,17,1988,1,RES1,3001 -0109_21_45,-74.70232671,39.5741854,186 TUCKAHOE RD,ESTELL MANOR CITY,16,1960,1,RES1,3001 -0109_21_47,-74.5050195,39.331934,190 TUCKAHOE RD,ESTELL MANOR CITY,16,1990,1,RES1,3001 -0109_21_48,-74.553743,39.3845045,192 TUCKAHOE RD,ESTELL MANOR CITY,16,1990,1,RES1,3001 -0109_21_49,-74.786773,39.5916185,194 TUCKAHOE RD,ESTELL MANOR CITY,16,1996,1,RES1,3001 -0109_21_5,-74.86942161,39.49206871,185 CAPE MAY AVE,ESTELL MANOR CITY,16,1996,1,RES1,3001 -0109_21_8,-74.63059825,39.52245792,167 FOURTH AVE,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_21_9,-74.52192468,39.39544094,169 FOURTH AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_22_14,-74.463172,39.493487,177 THIRD AVE,ESTELL MANOR CITY,16,1995,1,RES1,3001 -0109_22_17,-74.47387878,39.49587449,183 THIRD AVE,ESTELL MANOR CITY,17,1994,1,RES1,3001 -0109_22_18,-74.81350333,39.63661749,185 THIRD AVE,ESTELL MANOR CITY,16,1983,1,RES1,3001 -0109_22_2,-74.9419279,39.51831767,195 CAPE MAY AVE,ESTELL MANOR CITY,17,1979,1,RES1,3001 -0109_22_20,-74.53940879,39.41128784,189 THIRD AVE,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_22_21,-74.69197192,39.51324009,191 THIRD AVE,ESTELL MANOR CITY,17,1985,1,RES1,3001 -0109_22_22,-74.62740125,39.36548509,193 THIRD AVE,ESTELL MANOR CITY,17,1991,1,RES1,3001 -0109_22_23,-74.639174,39.399802,195 THIRD AVE,ESTELL MANOR CITY,16,1989,1,RES1,3001 -0109_22_3,-74.734863,39.642387,197 CAPE MAY AVE,ESTELL MANOR CITY,17,2006,1,RES1,3001 -0109_22_44,-74.52949375,39.4549691,197 THIRD AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_22_45,-74.71752587,39.43644106,200 TUCKAHOE RD,ESTELL MANOR CITY,16,1955,1,RES1,3001 -0109_22_45.01,-74.70855327,39.63879844,198 TUCKAHOE RD,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_22_46,-74.5234325,39.4096455,202 TUCKAHOE RD,ESTELL MANOR CITY,16,1958,1,RES1,3001 -0109_22_47,-74.55156048,39.38920716,204 TUCKAHOE RD,ESTELL MANOR CITY,17,2004,1,RES1,3001 -0109_22_48,-74.51949671,39.39043165,206 TUCKAHOE RD,ESTELL MANOR CITY,17,2001,1,RES1,3001 -0109_22_50,-74.61947558,39.43830174,210 TUCKAHOE RD,ESTELL MANOR CITY,16,2001,1,RES1,3001 -0109_23_1,-74.8340645,39.6194395,199 CAPE MAY AVE,ESTELL MANOR CITY,17,1989,1,RES1,3001 -0109_23_2,-74.63929197,39.53646902,201 CAPE MAY AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_23_29,-74.4684847,39.49101421,162 FIRST AVE,ESTELL MANOR CITY,16,1994,1,RES1,3001 -0109_23_3,-74.88450546,39.46178562,203 CAPE MAY AVE,ESTELL MANOR CITY,17,1987,1,RES1,3001 -0109_23_32,-74.54147704,39.38319466,168 FIRST AVE,ESTELL MANOR CITY,16,1997,1,RES1,3001 -0109_23_36,-74.79908587,39.63194273,172 FIRST AVE,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_23_37,-74.7744685,39.6189415,174 FIRST AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_23_4,-74.68479507,39.41501403,205 CAPE MAY AVE,ESTELL MANOR CITY,17,1989,1,RES1,3001 -0109_23_43,-74.59190604,39.51777832,186 FIRST AVE,ESTELL MANOR CITY,16,1994,1,RES1,3001 -0109_23_44,-74.51634343,39.41113724,188 FIRST AVE,ESTELL MANOR CITY,16,1996,1,RES1,3001 -0109_23_45.04,-74.86476141,39.59216521,203 SECOND AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_23_46,-74.434646,39.3579255,212 TUCKAHOE RD,ESTELL MANOR CITY,17,1992,1,RES1,3001 -0109_23_47,-74.47653265,39.48386318,214 FIRST AVE,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_23_47.02,-74.541553,39.390108,210 FIRST AVE,ESTELL MANOR CITY,51,1975,1,RES1,3001 -0109_23_48,-74.6923435,39.4131445,198 FIRST AVE,ESTELL MANOR CITY,16,1960,1,RES1,3001 -0109_23_49,-74.77726362,39.62205442,200 FIRST AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_23_50,-74.80696047,39.43426376,202 FIRST AVE,ESTELL MANOR CITY,16,1979,1,RES1,3001 -0109_24_12.04,-74.6931435,39.414324,74 MAPLE AVE,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_24_12.05,-74.84155816,39.53535119,76 MAPLE AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_24_2,-74.54056717,39.38253134,91 SOUTH JERSEY AVE,ESTELL MANOR CITY,16,1900,1,RES1,3001 -0109_24_3,-74.94769952,39.49396433,93 SOUTH JERSEY AVE,ESTELL MANOR CITY,16,1982,1,RES3A,3004 -0109_24_7,-74.489608,39.4272775,46 ESTELL AVE,ESTELL MANOR CITY,16,1968,1,RES1,3001 -0109_26.01_1,-74.53186667,39.41205632,191A CUMBERLAND AVE,ESTELL MANOR CITY,17,1996,1,RES1,3001 -0109_26.01_11,-74.75179699,39.40039721,157 SOUTH JERSEY AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_26_10,-74.65113181,39.3486678,193 CUMBERLAND AVE,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_26_18,-74.8777615,39.5978335,118 PACIFIC AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_26_5,-74.59341052,39.40245516,197 CUMBERLAND AVE,ESTELL MANOR CITY,16,1977,1,RES1,3001 -0109_26_6,-74.746843,39.3995245,201 CUMBERLAND AVE,ESTELL MANOR CITY,17,1984,1,RES1,3001 -0109_26_7,-74.52130929,39.39819865,203 CUMBERLAND AVE,ESTELL MANOR CITY,17,1979,1,RES1,3001 -0109_26_9,-74.51780618,39.46157266,191 CUMBERLAND AVE,ESTELL MANOR CITY,16,1935,1,COM1,3004 -0109_27_10,-74.62708674,39.37547993,201 HONEST JOHN RD,ESTELL MANOR CITY,16,1986,1,RES1,3001 -0109_27_12,-74.46411558,39.47500969,207 HONEST JOHN RD,ESTELL MANOR CITY,17,1997,1,COM7,3004 -0109_27_14.01,-74.50509602,39.4375246,209 HONEST JOHN RD,ESTELL MANOR CITY,17,1990,1,RES1,3001 -0109_27_14.02,-74.87046038,39.56483058,211 HONEST JOHN RD,ESTELL MANOR CITY,17,1994,1,RES1,3001 -0109_27_16,-74.51401228,39.43047996,228 FIRST AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_27_2,-74.790698,39.638839,163 SOUTH JERSEY AVE,ESTELL MANOR CITY,17,1994,1,RES1,3001 -0109_27_5,-74.6214125,39.380225,169 SOUTH JERSEY AVE,ESTELL MANOR CITY,16,1982,1,GOV1,3004 -0109_27_6,-74.46720223,39.45762121,171 SOUTH JERSEY AVE,ESTELL MANOR CITY,17,1997,1,COM7,3004 -0109_27_7.01,-74.947101,39.5299405,173 SOUTH JERSEY AVE,ESTELL MANOR CITY,16,1950,1,RES3A,3001 -0109_29_1,-74.6047664,39.39213019,222 FIRST AVE,ESTELL MANOR CITY,16,1953,1,RES1,3001 -0109_3_11,-74.732161,39.6419675,121 NINTH AVE,ESTELL MANOR CITY,16,1993,1,RES1,3001 -0109_3_14,-74.7767315,39.4443075,129 NINTH AVE,ESTELL MANOR CITY,17,1993,1,RES1,3001 -0109_3_16,-74.926001,39.5259195,133 NINTH AVE,ESTELL MANOR CITY,16,1986,1,GOV1,3004 -0109_3_17.01,-74.503654,39.3255275,135 NINTH AVE,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_3_18,-74.86704471,39.54698654,139 NINTH AVE.,ESTELL MANOR CITY,16,2000,1,RES1,3001 -0109_3_2,-74.5171475,39.468158,103 NINTH AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_3_21,-74.80323259,39.63295523,147 NINTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_3_22,-74.68361984,39.54879801,149 NINTH AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_3_25,-74.71000618,39.43424527,155 NINTH AVE,ESTELL MANOR CITY,17,2015,1,RES1,3001 -0109_3_26,-74.5087275,39.4679245,157 NINTH AVE,ESTELL MANOR CITY,17,1986,1,RES1,3001 -0109_3_27,-74.5400084,39.37498696,159 NINTH AVE,ESTELL MANOR CITY,16,1969,1,RES1,3001 -0109_3_28,-74.687947,39.361605,161 NINTH AVE,ESTELL MANOR CITY,16,1969,1,RES1,3001 -0109_3_29,-74.7485425,39.594926,106 CUMBERLAND AVE,ESTELL MANOR CITY,17,1990,1,RES1,3001 -0109_3_31,-74.5060122,39.42377616,100 EIGHTH AVE,ESTELL MANOR CITY,17,1989,1,RES1,3001 -0109_3_35,-74.62282645,39.39362679,108 EIGHTH AVE,ESTELL MANOR CITY,17,2000,1,RES1,3004 -0109_3_37,-74.4552845,39.492128,114 EIGHTH AVE,ESTELL MANOR CITY,17,1993,1,RES1,3001 -0109_3_38,-74.63901701,39.52743894,112 EIGHTH AVE,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_3_39,-74.65326623,39.5230293,116 EIGHTH AVE,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_3_40,-74.5022872,39.42911863,118 EIGHTH AVE,ESTELL MANOR CITY,16,1991,1,RES1,3001 -0109_3_41,-74.64430551,39.52844483,120 EIGHTH AVE,ESTELL MANOR CITY,16,1972,1,GOV1,3004 -0109_3_42,-74.93493614,39.51813768,122 EIGHTH AVE,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_3_44,-74.5195565,39.3167235,126 EIGHTH AVE,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_3_45,-74.96532376,39.50487347,128 EIGHTH AVE,ESTELL MANOR CITY,17,1986,1,RES1,3001 -0109_3_46,-74.78142859,39.63144227,130 EIGHTH AVE,ESTELL MANOR CITY,17,1986,1,RES1,3001 -0109_3_47,-74.4587115,39.496563,132 EIGHTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_3_48,-74.52327376,39.38909014,134 EIGHTH AVE,ESTELL MANOR CITY,17,1986,1,RES1,3001 -0109_3_5,-74.63050255,39.4229203,109 NINTH AVE,ESTELL MANOR CITY,16,1996,1,RES1,3001 -0109_3_51.02,-74.6129805,39.411239,165 NINTH AVE,ESTELL MANOR CITY,16,1968,1,GOV1,3004 -0109_3_51.03,-74.54465001,39.37669817,163 NINTH AVE,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_3_52,-74.881064,39.4827815,112 CAPE MAY AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_3_54,-74.534068,39.397505,116 CAPE MAY AVE,ESTELL MANOR CITY,16,1997,1,COM1,3004 -0109_3_55,-74.79700365,39.63685496,118 CAPE MAY AVE,ESTELL MANOR CITY,17,1994,1,RES1,3001 -0109_3_56,-74.51156764,39.41780999,120 CAPE MAY AVE,ESTELL MANOR CITY,16,1955,1,RES1,3001 -0109_3_6,-74.6210238,39.42483946,111 NINTH AVE,ESTELL MANOR CITY,16,1965,1,RES1,3001 -0109_3_7,-74.82428364,39.49911771,113 NINTH AVE,ESTELL MANOR CITY,17,2018,1,RES1,3001 -0109_3_8,-74.5184225,39.39387767,115 NINTH AVE,ESTELL MANOR CITY,16,1986,1,RES1,3001 -0109_35_1,-74.755515,39.429866,1083 TWELFTH AVE,ESTELL MANOR CITY,,1920,1,RES1,3001 -0109_35_12,-74.930969,39.5287075,980 ELEVENTH AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_35_13,-74.53923235,39.55057873,978 ELEVENTH AVE,ESTELL MANOR CITY,16,1950,1,RES1,3001 -0109_35_14,-74.52419971,39.31472617,976 ELEVENTH AVE,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_35_14.01,-74.48852536,39.46826654,974 ELEVENTH AVE,ESTELL MANOR CITY,16,1962,1,RES1,3001 -0109_35_14.02,-74.74200417,39.39303452,972 ELEVENTH AVE,ESTELL MANOR CITY,16,1964,1,RES1,3001 -0109_35_2,-74.49904,39.4650155,1079 TWELFTH AVE,ESTELL MANOR CITY,16,1920,1,RES1,3001 -0109_35_4,-74.60085783,39.37873448,1077 TWELFTH AVE,ESTELL MANOR CITY,16,1950,1,GOV1,3004 -0109_35_5,-74.6155385,39.3728805,1075 TWELFTH AVE,ESTELL MANOR CITY,17,1988,1,RES1,3001 -0109_35_6,-74.96355273,39.50370843,1073 TWELFTH AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_35_8,-74.5229585,39.400036,988 ELEVENTH AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_37_1,-74.79692894,39.66204867,991 ELEVENTH AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_37_10,-74.78710975,39.63573286,973 ELEVENTH AVE,ESTELL MANOR CITY,16,1948,1,GOV1,3004 -0109_37_12,-74.968603,39.506017,39A MAPLE AVE,ESTELL MANOR CITY,16,1994,1,RES1,3001 -0109_37_2,-74.630589,39.4456825,989 ELEVENTH AVE,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_37_6,-74.6368815,39.5310945,981 ELEVENTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_37_7,-74.548988,39.3742065,979 ELEVENTH AVE,ESTELL MANOR CITY,53,1964,1,RES1,3001 -0109_37_8,-74.48779704,39.47001266,977 ELEVENTH AVE,ESTELL MANOR CITY,16,1950,1,RES1,3001 -0109_38_1,-74.7736725,39.669403,999 ELEVENTH AVE,ESTELL MANOR CITY,16,1986,1,RES1,3001 -0109_38_2,-74.7793448,39.67041669,37 MAPLE AVE,ESTELL MANOR CITY,16,1976,1,GOV1,3004 -0109_38_3,-74.77941099,39.66898558,39 MAPLE AVE,ESTELL MANOR CITY,16,1982,1,GOV1,3004 -0109_38_4,-74.77736248,39.66756789,41 MAPLE AVE,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_4_11_C0101,-74.644056,39.3609565,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0102,-74.940565,39.523188,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0103,-74.8542735,39.3677485,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES3A,3001 -0109_4_11_C0104,-74.58054869,39.41660314,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0105,-74.7843475,39.4451195,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0106,-74.53650137,39.37781361,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0107,-74.7521105,39.3017795,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0108,-74.52856697,39.38694892,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0109,-74.489059,39.436799,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0110,-74.71608152,39.58099784,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0111,-74.91896836,39.49802613,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0112,-74.87102123,39.58992071,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0113,-74.506134,39.4259405,113 LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0114,-74.727842,39.45011,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0115,-74.651459,39.4717605,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,GOV1,3004 -0109_4_11_C0116,-74.79175968,39.64060032,CUMBERLAND AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0201,-74.51852971,39.38897088,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0202,-74.69904183,39.57305305,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0203,-74.59056344,39.37645773,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0204,-74.56961065,39.37443757,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0205,-74.6303095,39.423261,CUMBERLAND AVE,ESTELL MANOR CITY,,0,1,GOV1,3004 -0109_4_11_C0206,-74.60758654,39.42105484,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,GOV1,3004 -0109_4_11_C0207,-74.51698433,39.41094994,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0208,-74.8353987,39.45087241,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0209,-74.726762,39.588975,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0210,-74.58285378,39.36939301,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0211,-74.60054595,39.4101492,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0301,-74.71901769,39.45341354,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0302,-74.83227707,39.49560722,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,GOV1,3004 -0109_4_11_C0303,-74.5144525,39.394896,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0304,-74.5917365,39.4294935,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0305,-74.43834421,39.36512332,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES3A,3001 -0109_4_11_C0306,-74.62694078,39.44007687,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0307,-74.5393225,39.3927755,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0308,-74.9252233,39.48063317,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0309,-74.66402718,39.46106855,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0310,-74.78183933,39.63643395,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0311,-74.5738151,39.52295311,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0401,-74.8974805,39.479681,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0402,-74.46524252,39.46967159,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0403,-74.43830456,39.36744266,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0404,-74.73976575,39.42964513,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0405,-74.60198955,39.43445831,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0406,-74.761454,39.6347755,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3004 -0109_4_11_C0407,-74.50725448,39.44459752,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0501,-74.7137995,39.638985,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,COM1,3004 -0109_4_11_C0502,-74.46933857,39.45211085,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0503,-74.79062263,39.61218098,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0504,-74.62318835,39.4585823,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0505,-74.936227,39.5200575,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0506,-74.5209177,39.44427263,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0507,-74.6105275,39.4875415,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0508,-74.73467002,39.44821117,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0600,-74.45316093,39.50192392,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0601,-74.80763191,39.64290915,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0603,-74.8393945,39.443878,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0604,-74.503041,39.4673165,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0605,-74.84998508,39.39397709,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0606,-74.624935,39.4118725,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0607,-74.8185535,39.3622235,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0608,-74.75654968,39.45329306,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,COM1,3004 -0109_4_11_C0609,-74.5207625,39.455215,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0610,-74.54172177,39.53949994,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES3B,3001 -0109_4_11_C0611,-74.79474161,39.63259241,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0612,-74.47285821,39.45605946,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0613,-74.61603161,39.39219984,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0702,-74.91715186,39.47234055,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0703,-74.6640726,39.58319356,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0704,-74.6237598,39.37562098,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0705,-74.76006074,39.42993553,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0706,-74.53697,39.397478,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0707,-74.51392883,39.41807067,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0708,-74.9347415,39.5323005,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0709,-74.81855623,39.56630876,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0710,-74.50367454,39.44291883,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0711,-74.54596245,39.37587511,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES3A,3001 -0109_4_11_C0712,-74.55152723,39.37494032,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0801,-74.81165573,39.64655123,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0802,-74.6137475,39.420863,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0803,-74.81533067,39.53230316,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0804,-74.52917724,39.30990545,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0805,-74.86695163,39.59722549,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0806,-74.43830683,39.36656975,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0807,-74.54000887,39.54933492,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0808,-74.680076,39.51217267,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0809,-74.52974318,39.38802414,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0810,-74.492257,39.435508,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0811,-74.69955861,39.64029526,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,COM1,3004 -0109_4_11_C0812,-74.50250952,39.4753533,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES3A,3001 -0109_4_11_C0901,-74.584573,39.373519,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0902,-74.83123865,39.38609478,CUMBERLAND AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0903,-74.91732016,39.52532249,CUMBERLAND AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0904,-74.92402326,39.50568984,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0905,-74.5133335,39.4182745,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_11_C0906,-74.68092718,39.44424607,LAZY RIVER CAMPGROUND,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_14,-74.63718553,39.52974716,106 LINWOOD AVE,ESTELL MANOR CITY,16,1966,1,RES3A,3001 -0109_4_2,-74.553827,39.425656,100 SEVENTH AVENUE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_4_4,-74.73089403,39.64239563,104 SEVENTH AVE WEST,ESTELL MANOR CITY,15,1910,1,RES1,3001 -0109_4_5.01,-74.48823952,39.42915067,106 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1958,1,RES1,3001 -0109_42_12,-74.70693949,39.57481122,79 MAPLE AVE,ESTELL MANOR CITY,17,1991,1,RES1,3001 -0109_42_12.01,-74.54928089,39.38741065,73 MAPLE AVE,ESTELL MANOR CITY,17,1988,1,RES1,3001 -0109_42_12.03,-74.8113035,39.646218,77 MAPLE AVE,ESTELL MANOR CITY,17,1988,1,RES1,3001 -0109_42_12.06,-74.55309458,39.3937063,75 MAPLE AVE,ESTELL MANOR CITY,16,1985,1,RES1,3001 -0109_42_13,-74.60082614,39.41608866,93 MAPLE AVE,ESTELL MANOR CITY,16,2001,1,RES1,3001 -0109_42_14,-74.869333,39.592643,176 WALKERS FORGE RD,ESTELL MANOR CITY,16,1953,1,RES1,3001 -0109_42_15,-74.642334,39.3858,180 WALKERS FORGE RD,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_42_9.02,-74.8577295,39.5443085,91 MAPLE AVE,ESTELL MANOR CITY,16,1990,1,RES1,3001 -0109_43.01_3.01,-74.816563,39.3938715,162 KENTUCKY AVE,ESTELL MANOR CITY,16,1960,1,RES1,3001 -0109_43.03_1,-74.50916884,39.45986351,154 ROUTE 50,ESTELL MANOR CITY,16,1930,2,RES1,3001 -0109_43.03_1.01,-74.6966,39.633954,163 KENTUCKY AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_43.03_2,-74.79821151,39.63516933,156 ROUTE 50,ESTELL MANOR CITY,16,1948,1,RES1,3001 -0109_43.03_4,-74.56704524,39.36899546,158 ROUTE 50,ESTELL MANOR CITY,16,1940,1,RES3B,3001 -0109_43.05_11,-74.8228625,39.5699085,164 ROUTE 50,ESTELL MANOR CITY,16,1948,1,RES1,3001 -0109_43.05_13,-74.50498863,39.42507704,166 ROUTE 50,ESTELL MANOR CITY,16,1994,1,RES3A,3001 -0109_43.05_15,-74.72132328,39.44904338,177 WALKERS FORGE RD,ESTELL MANOR CITY,16,1990,1,RES1,3001 -0109_43.05_15.01,-74.740774,39.640463,179 WALKERS FORGE RD,ESTELL MANOR CITY,16,1982,1,RES1,3001 -0109_43.05_18,-74.68088808,39.41540924,185 WALKERS FORGE RD,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_43.05_20,-74.75969429,39.63968145,170 ROUTE 50,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_43.05_21,-74.84466194,39.35680884,176 ROUTE 50,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_43.05_7.02,-74.50360718,39.32457697,ELEVENTH ST,ESTELL MANOR CITY,16,1968,1,RES1,3001 -0109_43.05_8,-74.61662522,39.4290985,160 ROUTE 50,ESTELL MANOR CITY,16,1950,1,RES1,3001 -0109_43.05_9,-74.497567,39.430064,162 ROUTE 50,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_43_5,-74.52982235,39.39130648,150 ROUTE 50,ESTELL MANOR CITY,16,1900,2,RES1,3001 -0109_47_3.05,-74.82097085,39.65335226,38 SOUTH RIVER ROAD,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_47_3.06,-74.516884,39.4110805,40 SOUTH RIVER ROAD,ESTELL MANOR CITY,16,1962,1,REL1,3004 -0109_47_7.01,-74.64034939,39.45963323,60 SOUTH RIVER ROAD,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_47_7.02,-74.46392418,39.47493195,100 ROUTE 50,ESTELL MANOR CITY,16,1956,1,RES1,3004 -0109_5_10,-74.823539,39.5733525,117 CUMBERLAND AVE,ESTELL MANOR CITY,16,1938,1,RES1,3004 -0109_5_11,-74.509172,39.3315075,121 CUMBERLAND AVE,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_5_11.02,-74.87562685,39.59251404,119 CUMBERLAND AVE,ESTELL MANOR CITY,16,1915,1,RES1,3001 -0109_5_12,-74.63050278,39.54059493,123 CUMBERLAND AVE,ESTELL MANOR CITY,16,1920,1,RES1,3001 -0109_5_14.01,-74.77793118,39.63337651,127 CUMBERLAND AVE,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_5_16,-74.882654,39.5928715,131 CUMBERLAND AVE,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_5_16.01,-74.50936319,39.46112641,133 CUMBERLAND AVE,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_5_17,-74.75839817,39.44469719,137 CUMBERLAND AVE,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_5_18,-74.71280758,39.40140851,142 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1991,1,GOV1,3004 -0109_5_20,-74.43447429,39.35777066,143 CUMBERLAND AVE,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_5_21,-74.45619116,39.37981941,145 CUMBERLAND AVE,ESTELL MANOR CITY,16,1940,1,COM1,3004 -0109_5_21.01,-74.88374683,39.57390651,150 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_5_22.01,-74.77610088,39.62662483,147 CUMBERLAND AVE,ESTELL MANOR CITY,16,1970,1,RES3A,3001 -0109_5_22.02,-74.45863435,39.49170552,149 CUMBERLAND AVE,ESTELL MANOR CITY,16,1970,1,RES1,3001 -0109_5_23.01,-74.84297363,39.42642486,153 CUMBERLAND AVE,ESTELL MANOR CITY,16,1949,1,RES3A,3001 -0109_5_4,-74.47501567,39.49330245,105 CUMBERLAND AVE,ESTELL MANOR CITY,16,1988,1,RES3A,3001 -0109_5_5,-74.54611466,39.38934247,107 CUMBERLAND AVE,ESTELL MANOR CITY,17,1985,1,RES1,3001 -0109_5_6,-74.5982865,39.3839335,109 CUMBERLAND AVE,ESTELL MANOR CITY,17,1986,1,RES1,3001 -0109_5_7,-74.78940181,39.64751081,111 CUMBERLAND AVE,ESTELL MANOR CITY,17,1996,1,RES3A,3001 -0109_50_1,-74.54721851,39.37538917,1 ELEVENTH AVE,ESTELL MANOR CITY,16,1972,1,RES3A,3001 -0109_50_4,-74.593242,39.434562,37 SOUTH RIVER ROAD,ESTELL MANOR CITY,15,1955,1,GOV1,3004 -0109_50_5.01,-74.68758198,39.35779902,43 SOUTH RIVER ROAD,ESTELL MANOR CITY,15,1999,1,RES1,3001 -0109_51_1,-74.5228735,39.4412605,101 ROUTE 50,ESTELL MANOR CITY,16,1955,1,RES1,3001 -0109_51_5,-74.7923975,39.6648855,109 ROUTE 50,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_51_6,-74.45210201,39.47517806,189 ROUTE 50,ESTELL MANOR CITY,16,1850,1,RES1,3001 -0109_51_6.01,-74.53245731,39.38677806,185 ROUTE 50,ESTELL MANOR CITY,16,1930,1,RES1,3001 -0109_51_6.02,-74.937826,39.5198625,187 ROUTE 50,ESTELL MANOR CITY,16,1829,1,RES1,3001 -0109_51_6.03,-74.871703,39.58981017,181 COLLINS ROAD,ESTELL MANOR CITY,15,1948,1,RES1,3002 -0109_52_11,-74.8696835,39.5985265,195 ROUTE 50,ESTELL MANOR CITY,16,1890,2,RES1,3001 -0109_53_1,-74.56977295,39.41375162,205 ROUTE 50,ESTELL MANOR CITY,16,1986,1,RES1,3001 -0109_53_12,-74.47378725,39.4916651,201 ROUTE 50,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_53_17,-74.619295,39.368115,112 STEELMAN LANDING RD,ESTELL MANOR CITY,16,1996,1,RES1,3001 -0109_53_3,-74.59555515,39.42722771,203 ROUTE 50,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_53_6,-74.81073742,39.51854172,199 ROUTE 50,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_53_8,-74.5895385,39.4279195,197 ROUTE 50,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_54_1,-74.61394536,39.42864396,209 ROUTE 50,ESTELL MANOR CITY,16,1900,1,RES1,3001 -0109_55_1,-74.4688778,39.49122783,217 ROUTE 50,ESTELL MANOR CITY,16,2001,1,RES1,3001 -0109_55_2.01,-74.76093697,39.44510887,221 ROUTE 50,ESTELL MANOR CITY,16,1720,1,RES1,3001 -0109_55_4.03,-74.54892,39.38206275,233 ROUTE 50,ESTELL MANOR CITY,17,1986,1,RES1,3001 -0109_55_5,-74.84982509,39.61169815,235 ROUTE 50,ESTELL MANOR CITY,16,1938,1,RES1,3001 -0109_56_11,-74.6899945,39.4819595,263 ROUTE 50,ESTELL MANOR CITY,16,1997,1,RES1,3001 -0109_56_13,-74.59109358,39.38175377,267 ROUTE 50,ESTELL MANOR CITY,16,1956,1,RES1,3001 -0109_56_17.01,-74.76474686,39.60405266,257 ROUTE 50,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_56_17.02,-74.63206656,39.39147171,259 ROUTE 50,ESTELL MANOR CITY,16,1968,1,RES1,3001 -0109_56_19,-74.80650734,39.64444793,245 ROUTE 50,ESTELL MANOR CITY,16,1960,1,RES1,3001 -0109_56_2,-74.8100715,39.6467155,239 ROUTE 50,ESTELL MANOR CITY,16,1989,1,RES1,3001 -0109_56_3,-74.43182784,39.36799299,239A ROUTE 50,ESTELL MANOR CITY,16,1978,1,RES3A,3001 -0109_56_4,-74.64314097,39.53399366,241 ROUTE 50,ESTELL MANOR CITY,17,2014,1,RES1,3001 -0109_56_5,-74.58866829,39.37776547,243 ROUTE 50,ESTELL MANOR CITY,16,1968,1,RES1,3001 -0109_56_6,-74.5309095,39.395377,243A ROUTE 50,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_57_1.01,-74.849235,39.392504,208 HONEST JOHN RD,ESTELL MANOR CITY,16,1989,1,GOV1,3004 -0109_57_1.02,-74.8383025,39.419142,206 HONEST JOHN RD,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_57_10.01,-74.6528115,39.354786,262 FIRST AVE,ESTELL MANOR CITY,16,1966,1,RES1,3001 -0109_57_10.09,-74.64735,39.432728,243 CUMBERLAND AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_57_11,-74.81756697,39.62521455,264 FIRST AVE,ESTELL MANOR CITY,16,1996,1,RES1,3001 -0109_57_12,-74.64675672,39.41856092,238 FIRST AVE,ESTELL MANOR CITY,16,1992,1,RES1,3001 -0109_57_17,-74.52841439,39.31181237,240 FIRST AVE,ESTELL MANOR CITY,17,1999,1,RES1,3001 -0109_57_2.01,-74.6488295,39.429828,209 CUMBERLAND AVE,ESTELL MANOR CITY,17,2000,1,RES1,3001 -0109_57_22,-74.4892025,39.469527,200 HONEST JOHN RD,ESTELL MANOR CITY,16,1983,1,RES1,3001 -0109_57_5,-74.9208245,39.565641,223 CUMBERLAND AVE,ESTELL MANOR CITY,17,1989,1,RES1,3001 -0109_57_6,-74.53187049,39.38629067,225 CUMBERLAND AVE,ESTELL MANOR CITY,16,1988,1,RES3A,3001 -0109_57_7,-74.81991246,39.64213981,227 CUMBERLAND AVE,ESTELL MANOR CITY,16,1997,1,RES1,3001 -0109_58_1.01,-74.5394014,39.37385688,265 FIRST AVE,ESTELL MANOR CITY,16,1956,1,RES3B,3001 -0109_58_4,-74.5769065,39.408032,248 HONEST JOHN RD,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_58_4.01,-74.6034023,39.42942722,246 HONEST JOHN RD,ESTELL MANOR CITY,16,1984,1,RES1,3001 -0109_58_4.02,-74.75115883,39.60248369,244 HONEST JOHN RD,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_58_4.03,-74.77118221,39.63271745,242 HONEST JOHN RD,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_58_4.04,-74.52807275,39.45560601,240 HONEST JOHN RD,ESTELL MANOR CITY,17,1990,1,RES1,3001 -0109_59_2.01,-74.61382123,39.42128385,ROUTE 50,ESTELL MANOR CITY,,0,1,RES3B,3001 -0109_59_4,-74.57091212,39.37546783,210 ROUTE 50,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_6_1,-74.86993611,39.54725428,101 EIGHTH AVE,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_6_1.01,-74.63325781,39.39752539,103 EIGHTH AVE,ESTELL MANOR CITY,17,1985,1,RES1,3001 -0109_6_11,-74.50790444,39.46153836,129 EIGHTH AVE,ESTELL MANOR CITY,16,1971,1,RES1,3001 -0109_6_14,-74.54487588,39.37654137,124 CAPE MAY AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_6_14.01,-74.72674968,39.45293921,CAPE MAY AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_6_18,-74.81098304,39.52837825,128 CAPE MAY AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_6_19,-74.63163098,39.53963003,146 CUMBERLAND AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_6_2,-74.9667655,39.5125665,105 EIGHTH AVE,ESTELL MANOR CITY,,1950,1,RES3A,3001 -0109_6_20,-74.678334,39.4460915,148 CUMBERLAND AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_6_21,-74.6806615,39.5470175,134 CAPE MAY AVE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_6_22,-74.5978115,39.523534,142 CUMBERLAND AVE,ESTELL MANOR CITY,16,1957,1,RES1,3001 -0109_6_3,-74.51452566,39.41776853,118 CUMBERLAND AVE,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_6_4,-74.6098427,39.39106346,109 EIGHTH AVE,ESTELL MANOR CITY,17,1989,1,RES1,3001 -0109_6_5,-74.7742751,39.62464027,111 EIGHTH AVE,ESTELL MANOR CITY,17,1990,1,RES3A,3001 -0109_6_6.01,-74.64517343,39.44716162,128 CUMBERLAND AVE,ESTELL MANOR CITY,16,1948,1,RES3B,3001 -0109_6_6.02,-74.4402985,39.36803734,126 CUMBERLAND AVE,ESTELL MANOR CITY,16,1978,1,RES1,3001 -0109_6_6.03,-74.71091894,39.47213336,115 EIGHTH AVE,ESTELL MANOR CITY,17,1988,1,GOV1,3004 -0109_6_6.04,-74.604119,39.39165583,117 EIGHTH AVE,ESTELL MANOR CITY,16,1982,1,COM1,3004 -0109_6_7,-74.6403935,39.361221,119 EIGHTH AVE,ESTELL MANOR CITY,16,1984,1,RES3A,3001 -0109_6_7.01,-74.548823,39.3743105,130 CUMBERLAND AVE,ESTELL MANOR CITY,16,1990,1,RES1,3002 -0109_6_8,-74.5408688,39.37469177,121 EIGHTH AVE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_6_8.01,-74.64192107,39.37640012,136 CUMBERLAND AVE,ESTELL MANOR CITY,16,1945,1,RES1,3001 -0109_60.21_175,-74.56593959,39.37232964,500 FIFTH ST,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_60.36_193,-74.54151839,39.39029769,9TH ST,ESTELL MANOR CITY,15,1968,1,RES1,3001 -0109_60_10,-74.952297,39.5362345,232 ROUTE 50,ESTELL MANOR CITY,16,1980,1,RES1,3001 -0109_60_11,-74.829745,39.5869865,234 ROUTE 50,ESTELL MANOR CITY,16,1956,1,RES1,3001 -0109_60_12,-74.67658356,39.35795715,230 ROUTE 50,ESTELL MANOR CITY,,0,1,RES1,3004 -0109_60_13,-74.58058531,39.41394698,236 ROUTE 50,ESTELL MANOR CITY,16,1940,1,RES1,3001 -0109_60_14.01,-74.8801935,39.5925015,403 TUCKAHOE RD,ESTELL MANOR CITY,16,1986,1,RES1,3001 -0109_60_15,-74.496264,39.469058,401 TUCKAHOE RD,ESTELL MANOR CITY,16,1976,1,RES1,3001 -0109_60_19,-74.5019205,39.413785,242 ROUTE 50,ESTELL MANOR CITY,15,1947,1,RES1,3001 -0109_60_20,-74.49979506,39.46931698,407 TUCKAHOE RD,ESTELL MANOR CITY,15,1948,1,RES1,3001 -0109_60_4,-74.49070262,39.33301717,216 ROUTE 50,ESTELL MANOR CITY,16,1982,1,RES1,3001 -0109_60_5,-74.74528449,39.41270983,222 ROUTE 50,ESTELL MANOR CITY,14,1948,1,RES3A,3001 -0109_60_9,-74.63681678,39.52434349,228 ROUTE 50,ESTELL MANOR CITY,16,1930,1,RES1,3001 -0109_62_10,-74.83296826,39.59786689,124 HEAD OF THE RIVER RD,ESTELL MANOR CITY,16,1953,1,RES1,3001 -0109_62_2,-74.61771793,39.38082888,108 HEAD OF THE RIVER RD,ESTELL MANOR CITY,16,1949,1,RES3A,3001 -0109_62_3,-74.7810725,39.626324,110 HEAD OF THE RIVER RD,ESTELL MANOR CITY,16,1950,1,RES3A,3001 -0109_62_4.01,-74.5516449,39.3831731,116 HEAD OF THE RIVER RD,ESTELL MANOR CITY,14,1975,1,RES1,3004 -0109_62_6.02,-74.580957,39.4297065,118 HEAD OF THE RIVER RD,ESTELL MANOR CITY,17,1960,1,COM1,3004 -0109_62_9,-74.86220009,39.55300714,126 HEAD OF THE RIVER RD,ESTELL MANOR CITY,16,1997,1,RES1,3001 -0109_63.01_1,-74.52258812,39.31594933,500 AETNA DR,ESTELL MANOR CITY,17,1995,1,RES1,3001 -0109_63_12,-74.5189198,39.44662247,ROUTE 49,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_63_13.01,-74.52482015,39.39502846,205 LORDS LANE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_63_3,-74.624416,39.419927,127 HEAD OF THE RIVER RD,ESTELL MANOR CITY,16,1958,1,RES1,3001 -0109_63_4,-74.54973392,39.36984331,125 HEAD OF THE RIVER RD,ESTELL MANOR CITY,16,1977,1,RES1,3001 -0109_63_5,-74.8256565,39.40208997,203 LORDS LANE,ESTELL MANOR CITY,17,1974,1,RES1,3001 -0109_63_6,-74.462339,39.4923115,123 HEAD OF THE RIVER RD,ESTELL MANOR CITY,14,1940,1,RES1,3001 -0109_63_6.01,-74.9327455,39.4820755,201 LORDS LANE,ESTELL MANOR CITY,,0,1,RES1,3001 -0109_63_6.02,-74.6048445,39.5969225,117 HEAD OF THE RIVER RD,ESTELL MANOR CITY,16,1950,1,RES1,3001 -0109_63_8,-74.92399326,39.52303043,206 LORDS LANE,ESTELL MANOR CITY,16,1988,1,RES1,3001 -0109_63_9.01,-74.81156485,39.62867183,215 LORDS LANE,ESTELL MANOR CITY,16,1962,1,RES1,3001 -0109_63_9.02,-74.526269,39.4524425,211 LORDS LANE,ESTELL MANOR CITY,17,2000,1,RES1,3001 -0109_63_9.04,-74.71937766,39.4509755,207 LORDS LANE,ESTELL MANOR CITY,16,1900,1,RES1,3001 -0109_64_8.01,-74.64518881,39.4079777,600 ROUTE 49,ESTELL MANOR CITY,16,1950,1,RES1,3001 -0109_8_10,-74.57400607,39.42050334,143 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_8_11,-74.82282881,39.57372159,145 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1973,1,RES1,3001 -0109_8_12,-74.79949253,39.65530533,147 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1984,1,RES1,3002 -0109_8_13,-74.44590858,39.48964475,149 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1988,1,RES3A,3001 -0109_8_14,-74.66567404,39.54533451,151 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1992,1,RES1,3001 -0109_8_15,-74.75205657,39.45197881,153 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1974,1,RES1,3002 -0109_8_16,-74.71511364,39.45280231,155 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1974,1,RES1,3001 -0109_8_17,-74.84012005,39.5275007,157 SEVENTH AVE WEST,ESTELL MANOR CITY,17,2000,1,RES1,3001 -0109_8_18,-74.60802544,39.53767375,159 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1987,1,RES1,3001 -0109_8_19,-74.82095857,39.63642248,161 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1974,1,RES1,3002 -0109_8_20,-74.52954211,39.45669312,163 SEVENTH AVE WEST,ESTELL MANOR CITY,17,1985,1,RES1,3001 -0109_8_21,-74.59399719,39.43318887,165 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_8_22,-74.9532175,39.5147825,167 SEVENTH AVE WEST,ESTELL MANOR CITY,16,1968,1,RES1,3001 -0109_8_23,-74.57593793,39.51196637,155 CUMBERLAND AVE,ESTELL MANOR CITY,17,2018,2,RES1,3001 -0109_8_47,-74.922072,39.56484,138 CAPE MAY AVE,ESTELL MANOR CITY,16,1964,1,RES1,3001 -0109_8_47.01,-74.81833422,39.65652495,136 CAPE MAY AVE,ESTELL MANOR CITY,16,1964,1,RES1,3001 -0109_8_47.02,-74.775123,39.6583125,157 CUMBERLAND AVE,ESTELL MANOR CITY,17,1997,1,COM4,3004 -0109_8_47.03,-74.74832229,39.44699024,159 CUMBERLAND AVE,ESTELL MANOR CITY,16,1972,1,RES1,3001 -0109_8_48,-74.484807,39.46253713,140 CAPE MAY AVE,ESTELL MANOR CITY,16,1955,1,RES1,3001 -0109_8_49,-74.761944,39.6018255,142 CAPE MAY AVE,ESTELL MANOR CITY,16,1975,1,RES1,3001 -0109_8_50,-74.60762775,39.39238753,144 CAPE MAY AVE,ESTELL MANOR CITY,16,1990,1,RES3B,3001 -0109_9_18,-74.91892517,39.50702996,116 FIFTH AVE,ESTELL MANOR CITY,13,1940,1,GOV1,3004 -0110_1001_10,-74.7345695,39.642268,2105 14TH ST,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_1001_11,-74.621037,39.4238165,2107 14TH ST,FOLSOM BORO,16,1930,1,RES1,3001 -0110_1001_13,-74.7580998,39.44611271,2111 14TH ST,FOLSOM BORO,16,1979,1,RES1,3001 -0110_1001_14,-74.56542093,39.41516077,2115 14TH ST,FOLSOM BORO,16,1979,1,RES1,3001 -0110_1001_15,-74.76094085,39.63847444,2117 14TH ST,FOLSOM BORO,16,1990,1,RES1,3001 -0110_1001_17,-74.6395145,39.3803935,2123 14TH ST,FOLSOM BORO,16,1977,1,RES1,3001 -0110_1001_18,-74.6341915,39.4284865,2125 14TH ST,FOLSOM BORO,16,1977,1,RES1,3001 -0110_1001_3,-74.87812774,39.59141533,2121 14TH ST,FOLSOM BORO,16,1980,1,RES1,3001 -0110_1001_5,-74.87104204,39.59385795,1429 BACKLINE RD,FOLSOM BORO,17,1988,1,RES1,3001 -0110_1001_7,-74.7113015,39.649984,1431 BACKLINE RD,FOLSOM BORO,16,1972,1,COM4,3004 -0110_1001_8,-74.50427203,39.32595735,1435 BACKLINE RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_1002_1,-74.80020097,39.45809234,2114 14TH ST,FOLSOM BORO,16,1982,1,RES1,3001 -0110_1002_6.01,-74.38015752,39.41586717,1445 BACKLINE RD,FOLSOM BORO,16,1995,1,RES1,3001 -0110_1002_6.02,-74.51598156,39.33130236,1443 BACKLINE RD,FOLSOM BORO,15,1935,1,COM1,3004 -0110_1002_7,-74.5645125,39.4784905,2100 14TH ST,FOLSOM BORO,16,1995,1,RES1,3001 -0110_101_10,-74.882064,39.5944485,1519 15TH ST,FOLSOM BORO,16,1985,1,RES1,3001 -0110_101_2,-74.59362022,39.38049305,1205 MAYS LANDING RD,FOLSOM BORO,,1900,1,RES1,3001 -0110_101_4,-74.60947225,39.39028646,1213 MAYS LANDING RD,FOLSOM BORO,16,1952,1,RES1,3001 -0110_101_5,-74.83065844,39.49213779,1513 15TH ST,FOLSOM BORO,16,2004,1,RES1,3001 -0110_101_8,-74.66897395,39.54416868,1515 15TH ST,FOLSOM BORO,16,1978,1,COM1,3004 -0110_101_9,-74.636445,39.4289865,1517 15TH ST,FOLSOM BORO,16,1985,1,COM1,3004 -0110_102_11,-74.62600934,39.50760848,1404 BACKLINE RD,FOLSOM BORO,16,1961,1,REL1,3004 -0110_102_12,-74.70957866,39.50246197,1317 MEMORY LANE,FOLSOM BORO,16,1985,1,RES1,3001 -0110_102_13,-74.37449217,39.40162248,1315 MEMORY LANE,FOLSOM BORO,16,1978,1,GOV1,3004 -0110_102_14,-74.45201029,39.37077153,1313 MEMORY LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_102_15,-74.79709768,39.64436173,1311 MEMORY LANE,FOLSOM BORO,16,1973,1,GOV1,3004 -0110_102_16,-74.71662208,39.41160441,1307 MEMORY LANE,FOLSOM BORO,18,1997,1,RES1,3001 -0110_102_19,-74.6276017,39.39111097,1303 MEMORY LANE,FOLSOM BORO,16,1979,1,COM4,3004 -0110_102_2,-74.39204685,39.39105845,1508 15TH ST,FOLSOM BORO,16,1956,1,RES1,3001 -0110_102_21,-74.855988,39.561039,1227 MAYS LANDING RD,FOLSOM BORO,16,1956,1,RES3A,3001 -0110_102_3,-74.87835817,39.591925,1510 15TH ST,FOLSOM BORO,16,1960,1,RES1,3001 -0110_102_4,-74.8264,39.568871,1514 15TH ST,FOLSOM BORO,16,1938,1,GOV1,3004 -0110_102_7,-74.49561904,39.33100468,1219 MAYS LANDING RD,FOLSOM BORO,,0,1,RES1,3001 -0110_102_9,-74.682562,39.444451,1223 MAYS LANDING RD,FOLSOM BORO,15,1938,1,RES1,3001 -0110_103_1,-74.78928876,39.63927106,1200 MAYS LANDING RD,FOLSOM BORO,15,1938,1,GOV1,3004 -0110_103_4,-74.81306747,39.38389967,1208 MAYS LANDING RD,FOLSOM BORO,15,1925,1,RES1,3001 -0110_103_5,-74.92824517,39.50945856,1210 MAYS LANDING RD,FOLSOM BORO,16,1953,1,RES1,3001 -0110_103_6,-74.5053475,39.3319235,1212 MAYS LANDING RD,FOLSOM BORO,16,2003,1,RES1,3001 -0110_103_7,-74.62898557,39.40825635,1214 MAYS LANDING RD,FOLSOM BORO,15,1928,1,RES1,3001 -0110_104_1,-74.8818675,39.4610865,1229 MAYS LANDING RD,FOLSOM BORO,16,1953,1,RES1,3001 -0110_104_10,-74.58831104,39.41512282,1314 MEMORY LANE,FOLSOM BORO,16,1978,1,RES1,3001 -0110_104_11,-74.75379242,39.44671029,1316 MEMORY LANE,FOLSOM BORO,16,1978,1,RES1,3001 -0110_104_3,-74.36992208,39.41414941,1302 MEMORY LANE,FOLSOM BORO,16,1997,1,RES1,3001 -0110_104_7,-74.8700395,39.5917825,1308 MEMORY LANE,FOLSOM BORO,16,1978,1,COM8,3004 -0110_104_8,-74.9447475,39.49953911,1310 MEMORY LANE,FOLSOM BORO,16,1979,1,RES3A,3001 -0110_104_9,-74.8829525,39.4634275,1312 MEMORY LANE,FOLSOM BORO,16,1978,1,RES1,3001 -0110_1101_1,-74.4446425,39.3755625,1447 BACKLINE RD,FOLSOM BORO,16,1900,1,RES1,3001 -0110_1101_1.01,-74.50216217,39.3363326,1447A BACKLINE RD,FOLSOM BORO,16,2002,1,RES1,3001 -0110_1101_2,-74.3998859,39.38496054,1449 BACKLINE RD,FOLSOM BORO,16,1952,1,RES1,3001 -0110_1101_2.01,-74.78186662,39.45658514,1451 BACKLINE ROAD,FOLSOM BORO,16,2000,1,RES1,3001 -0110_1201_1,-74.79978273,39.64445233,1319 13TH ST,FOLSOM BORO,16,1958,1,RES1,3001 -0110_1201_11,-74.3624685,39.412403,2420 4TH RD,FOLSOM BORO,16,1966,1,RES1,3001 -0110_1201_12,-74.74578619,39.44683111,2418 4TH RD,FOLSOM BORO,16,1962,1,RES1,3001 -0110_1201_14,-74.3666555,39.419244,2416 4TH RD,FOLSOM BORO,16,1961,1,RES1,3001 -0110_1201_15,-74.38716016,39.39595702,2414 4TH RD,FOLSOM BORO,16,1963,1,RES1,3001 -0110_1201_16,-74.5198861,39.31931516,2412 4TH RD,FOLSOM BORO,16,1968,1,RES1,3001 -0110_1201_17,-74.4599756,39.34761367,2410 4TH RD,FOLSOM BORO,16,1956,1,RES1,3001 -0110_1201_18,-74.416675,39.365121,2408 4TH RD,FOLSOM BORO,16,1960,1,RES1,3001 -0110_1201_19,-74.37280712,39.41413082,2404 4TH RD,FOLSOM BORO,16,1968,1,RES1,3001 -0110_1201_2,-74.797412,39.6333955,1321 13TH STREET,FOLSOM BORO,15,1938,1,RES1,3001 -0110_1201_21,-74.70974932,39.47395009,2400 4TH RD,FOLSOM BORO,16,1956,1,RES1,3001 -0110_1201_5,-74.89903709,39.53993758,1717 12TH ST,FOLSOM BORO,15,1938,1,RES1,3001 -0110_1201_6,-74.629691,39.427339,1719 12TH ST,FOLSOM BORO,15,1945,1,RES1,3001 -0110_1201_8,-74.58143479,39.3598417,1721 12TH ST,FOLSOM BORO,15,1938,1,RES1,3001 -0110_1301_10,-74.516332,39.3226315,1425 MAYS LANDING RD,FOLSOM BORO,16,1956,1,RES1,3001 -0110_1301_3,-74.53585619,39.45548357,1411 MAYS LANDING RD,FOLSOM BORO,16,1984,1,COM3,3004 -0110_1301_4,-74.920844,39.5215025,1413 MAYS LANDING RD,FOLSOM BORO,15,1932,1,RES1,3001 -0110_1301_5,-74.46873629,39.34198616,1415 MAYS LANDING RD,FOLSOM BORO,15,1900,1,RES1,3001 -0110_1301_6,-74.87236867,39.57606583,1417 MAYS LANDING RD,FOLSOM BORO,15,1900,1,RES1,3001 -0110_1301_7,-74.80338416,39.51653918,1419 MAYS LANDING RD,FOLSOM BORO,16,1952,1,RES1,3001 -0110_1301_8,-74.4997485,39.333653,1421 MAYS LANDING RD,FOLSOM BORO,16,1951,1,RES1,3001 -0110_1301_9,-74.4519875,39.3536285,1423 MAYS LANDING RD,FOLSOM BORO,16,1955,1,RES1,3001 -0110_1401_6,-74.545653,39.4717905,1433 MAYS LANDING RD,FOLSOM BORO,16,1952,1,RES1,3001 -0110_1401_7,-74.463037,39.358023,1429 MAYS LANDING RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_1501_1,-74.86789565,39.59931047,1252 11TH ST,FOLSOM BORO,16,1952,1,GOV1,3004 -0110_1501_11,-74.63242769,39.43341392,1505 MAYS LANDING RD,FOLSOM BORO,16,2013,1,COM1,3004 -0110_1501_12,-74.64349248,39.38462467,1501 A MAYS LANDING RD,FOLSOM BORO,16,1998,1,RES1,3001 -0110_1501_12.01,-74.5754732,39.42060534,1503 MAYS LANDING RD,FOLSOM BORO,16,1992,1,RES1,3001 -0110_1501_13,-74.84012439,39.5972586,1501 MAYS LANDING RD,FOLSOM BORO,15,1942,1,RES1,3002 -0110_1501_2,-74.7891605,39.636499,1515 MAYS LANDING RD,FOLSOM BORO,16,1956,1,RES1,3001 -0110_1501_4,-74.8398493,39.41222102,1519 MAYS LANDING RD,FOLSOM BORO,16,1952,1,RES1,3001 -0110_1501_5,-74.51978308,39.31655731,1517 MAYS LANDING RD,FOLSOM BORO,16,1964,1,RES1,3001 -0110_1501_6,-74.64848912,39.40337474,1513 MAYS LANDING RD,FOLSOM BORO,16,1974,1,RES1,3001 -0110_1501_7,-74.37618902,39.41335383,1511 MAYS LANDING RD,FOLSOM BORO,16,1972,1,AGR1,3001 -0110_1501_8,-74.66123964,39.44557457,1509 MAYS LANDING RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_1501_9,-74.6507865,39.408705,1507 MAYS LANDING RD,FOLSOM BORO,16,1983,1,RES1,3001 -0110_1502_11,-74.8333001,39.53244322,1222 11TH ST,FOLSOM BORO,16,1900,1,RES1,3001 -0110_1502_15,-74.77915312,39.62252218,1214 11TH ST,FOLSOM BORO,,0,1,RES1,3001 -0110_1502_17,-74.40058997,39.38827765,1210 11TH ST,FOLSOM BORO,16,1991,1,RES1,3001 -0110_1502_18,-74.46524,39.354366,1208 11TH ST,FOLSOM BORO,16,1955,1,RES1,3001 -0110_1502_19,-74.39749765,39.38651681,1206 11TH ST,FOLSOM BORO,16,1983,1,RES1,3001 -0110_1502_2,-74.773787,39.6470055,1514 MAYS LANDING RD,FOLSOM BORO,16,1957,1,RES1,3001 -0110_1502_20,-74.689058,39.4494735,1204 11TH ST,FOLSOM BORO,16,1978,1,RES1,3001 -0110_1502_22,-74.53156603,39.4534677,1200 11TH ST,FOLSOM BORO,16,1977,1,RES1,3001 -0110_1502_3,-74.9236785,39.5084085,1518 MAYS LANDING RD,FOLSOM BORO,16,1964,1,GOV1,3004 -0110_1502_4,-74.63964029,39.43563458,1516 MAYS LANDING RD,FOLSOM BORO,16,1956,1,RES1,3001 -0110_1502_5,-74.65385128,39.40717554,1510 MAYS LANDING RD,FOLSOM BORO,16,1977,1,RES1,3001 -0110_1502_7,-74.47118798,39.34551365,1506 MAYS LANDING RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_1502_8,-74.88382002,39.59437216,1228 11TH ST,FOLSOM BORO,16,1840,1,RES1,3001 -0110_1502_9,-74.51604533,39.32548001,1502 MAYS LANDING RD,FOLSOM BORO,16,1976,1,RES1,3001 -0110_1602_10.01,-74.60980534,39.38077198,1528 MAYS LANDING RD,FOLSOM BORO,17,1979,1,RES1,3001 -0110_1602_10.02,-74.6881118,39.51028518,1526 MAYS LANDING RD,FOLSOM BORO,17,1967,1,RES1,3001 -0110_1701_19,-74.50514127,39.33201318,2950 8TH ST,FOLSOM BORO,16,1956,1,RES1,3001 -0110_1701_9,-74.95543233,39.53815117,2948 8TH ST,FOLSOM BORO,18,2013,1,RES1,3001 -0110_2001_1,-74.4884785,39.3507085,2 PINE LANE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2001_3,-74.64017316,39.38082816,25 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2001_4,-74.36396623,39.41493187,27 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2001_7,-74.62276734,39.41963108,5 WILLOW LANE,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2001_8,-74.9419945,39.525407,7 WILLOW LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2002_1,-74.94390441,39.52390481,16 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2002_10,-74.56470833,39.47539901,34 S RIVER DR,FOLSOM BORO,16,1971,1,RES1,3001 -0110_2002_2,-74.629673,39.38151,18 S RIVER DR,FOLSOM BORO,16,1972,1,RES3A,3001 -0110_2002_3,-74.7316825,39.45939267,20 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2002_4,-74.54120097,39.47492904,22 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2002_5,-74.55777172,39.47577303,24 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2002_6,-74.763599,39.4045875,26 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2002_7,-74.63937168,39.3830444,28 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2002_8,-74.7097435,39.436474,30 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2002_9,-74.92885273,39.52066861,32 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2003_4,-74.48757016,39.33333551,2201 14TH ST,FOLSOM BORO,16,1950,1,RES1,3001 -0110_2005_3,-74.5567215,39.4672455,104 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2005_4,-74.64529348,39.55084533,106 S RIVER DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2005_5,-74.497871,39.3333035,108 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2006_11,-74.38465966,39.39152495,107 S RIVER DR,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2006_12,-74.481152,39.3410085,109 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2006_14,-74.578551,39.3607275,118 E PARK AVE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2006_15,-74.6037675,39.500646,116 PARK AVE,FOLSOM BORO,16,1969,1,RES1,3001 -0110_2006_19,-74.79156829,39.63546137,112 PARK AVE.,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2006_2,-74.48414014,39.35067502,14 14TH ST,FOLSOM BORO,16,1948,1,RES1,3001 -0110_2006_3,-74.9247165,39.5106495,12 14TH ST,FOLSOM BORO,16,1972,1,GOV1,3004 -0110_2006_6,-74.7767215,39.5968545,6 14TH ST,FOLSOM BORO,16,1967,1,RES1,3001 -0110_2006_8,-74.50432644,39.32948184,101 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2007_5,-74.76987114,39.66945494,109 PARK AVE,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2007_6,-74.97915544,39.51233125,111 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2007_7,-74.857683,39.4405095,113 PARK AVE,FOLSOM BORO,16,1990,1,GOV1,3004 -0110_2007_8,-74.619258,39.5093825,115 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2008_1,-74.7498837,39.45135289,82 E PARK AVE,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2008_11,-74.60462297,39.35503381,86 E PARK AVE,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2008_12,-74.4782165,39.3376735,84 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2008_2,-74.71891282,39.57878801,10 WILLOW LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2008_4,-74.3628095,39.411276,6 WILLOW LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2008_6,-74.42316783,39.37247758,2 WILLOW LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2008_7,-74.39487686,39.38716693,7 14TH ST,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2008_8,-74.52175049,39.31740583,9 14TH ST,FOLSOM BORO,16,1972,1,RES1,3001 -0110_201_1,-74.6099985,39.3855675,1410 BACKLINE RD,FOLSOM BORO,16,1977,1,GOV1,3004 -0110_201_10,-74.64845482,39.53036023,1249 MAYS LANDING RD,FOLSOM BORO,,0,1,RES1,3001 -0110_201_2,-74.79385332,39.64014782,1408 BACKLINE RD,FOLSOM BORO,17,2009,1,RES1,3001 -0110_201_3,-74.57908014,39.36151916,1233 MAYS LANDING RD,FOLSOM BORO,16,1960,1,RES1,3001 -0110_201_4,-74.71461988,39.47019307,1231 MAYS LANDING RD,FOLSOM BORO,16,1950,1,RES1,3001 -0110_201_5,-74.88013156,39.59191184,1235 MAYS LANDING RD,FOLSOM BORO,15,1929,1,RES1,3001 -0110_201_7,-74.37511357,39.41675763,1412 BACKLINE RD,FOLSOM BORO,16,1971,1,RES1,3001 -0110_201_8,-74.57149607,39.47900234,1414 BACKLINE RD,FOLSOM BORO,16,1977,1,RES1,3001 -0110_201_9,-74.37298281,39.41637326,1239 MAYS LANDING RD,FOLSOM BORO,,0,1,RES1,3001 -0110_203_1,-74.818094,39.6398475,1216 MAYS LANDING RD,FOLSOM BORO,16,1988,1,RES1,3001 -0110_203_2,-74.389964,39.3906145,1218 MAYS LANDING RD,FOLSOM BORO,16,1954,1,RES1,3001 -0110_203_4,-74.443726,39.356515,1222 MAYS LANDING RD,FOLSOM BORO,15,1935,1,GOV1,3004 -0110_203_7,-74.55442039,39.46534424,1228 MAYS LANDING RD,FOLSOM BORO,,0,1,RES1,3001 -0110_205_1,-74.81212633,39.64324249,1302 MAYS LANDING RD,FOLSOM BORO,15,1920,1,GOV1,3004 -0110_205_2,-74.727862,39.58833,1304 MAYS LANDING RD,FOLSOM BORO,16,1966,1,RES1,3001 -0110_205_4,-74.75187879,39.59680718,14TH ST,FOLSOM BORO,,0,1,GOV1,3004 -0110_2101_13,-74.95316775,39.52157859,125 E PARK AVE,FOLSOM BORO,16,1972,1,GOV1,3004 -0110_2101_14,-74.5543295,39.4705615,123 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2101_15,-74.55436229,39.47078341,119 E PARK AVE,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2101_17,-74.627534,39.438605,117 PARK AVE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2102_1,-74.569774,39.4182035,120 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2102_12,-74.6373645,39.400629,111 S RIVER DR,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2102_2,-74.5879765,39.459639,122 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2102_4,-74.78712504,39.6308053,166 PARK AVE,FOLSOM BORO,16,1956,1,RES3A,3001 -0110_2103_1,-74.50921633,39.32767381,110 S RIVER DR,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2103_10,-74.61702389,39.48576864,130 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2103_11,-74.5492905,39.4774515,132 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2103_12,-74.8208895,39.529489,134 S RIVER DR,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2103_14,-74.63967507,39.52359165,138 S RIVER DR,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2103_15,-74.93859685,39.52975899,140 S RIVER DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2103_17,-74.65494817,39.39536302,144 S RIVER DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2103_2,-74.5485948,39.50493507,114 S RIVER DR,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2103_25,-74.80248172,39.37698401,210 S RIVER DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2103_3,-74.51187106,39.32713736,116 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2103_5,-74.72742735,39.45387823,120 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2103_6,-74.59936065,39.37962473,122 S RIVER DR,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2103_7,-74.63047943,39.41552213,124 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2103_8,-74.61815818,39.46159969,126 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2103_9,-74.6007435,39.38778858,128 S RIVER DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2105_1,-74.89934149,39.48064326,200 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2105_8,-74.54387472,39.47073564,214 S RIVER DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2105_9,-74.81966669,39.64185083,212 S RIVER DR,FOLSOM BORO,16,1976,1,IND1,3002 -0110_2202_10,-74.50776827,39.33475846,2413 4TH RD,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2202_6,-74.7167543,39.44643661,2421 4TH RD,FOLSOM BORO,16,1987,1,RES1,3001 -0110_2202_7,-74.399236,39.3858315,2419 4TH RD,FOLSOM BORO,16,1982,1,RES1,3001 -0110_2202_8,-74.6839365,39.49801,2417 4TH RD,FOLSOM BORO,16,1992,1,RES1,3001 -0110_2202_9,-74.8282755,39.389384,2415 4TH RD,FOLSOM BORO,16,1979,1,RES1,3001 -0110_2301_5,-74.4913255,39.3363765,1005 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2301_7,-74.61597582,39.35832084,1001 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2302_13,-74.50398667,39.33481694,1814 12TH ST,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2302_5,-74.40498752,39.38228667,1012 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2401_2,-74.6381119,39.3381973,1021 BLACK HORSE PK,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2402_1,-74.645903,39.5512655,1030 BLACK HORSE PK,FOLSOM BORO,16,1951,1,RES1,3001 -0110_2501_338,-74.54155431,39.54330267,106 MILL LANE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2501_339,-74.55312161,39.47516376,105 MILL LANE,FOLSOM BORO,16,1960,1,GOV1,3004 -0110_2501_342,-74.44725931,39.37368398,1 FRANCIS LANE,FOLSOM BORO,16,1986,1,RES1,3001 -0110_2501_97,-74.63588918,39.42356315,109 CAINS MILL RD,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2501_97.01,-74.82171432,39.36908416,111 CAINS MILL RD,FOLSOM BORO,16,1940,1,GOV1,3004 -0110_2501_97.02,-74.76281429,39.63580059,103 MILL LANE,FOLSOM BORO,16,1990,1,RES1,3001 -0110_2501_97.03,-74.78115037,39.64159019,113 CAINS MILL RD,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2502_100,-74.64567558,39.53347335,103 CAINS MILL RD,FOLSOM BORO,15,1952,1,RES1,3001 -0110_2502_98,-74.7182515,39.4496235,107 CAINS MILL RD,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2503_240,-74.5891255,39.377731,BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2505_217,-74.59401582,39.37870206,24 CAINS MILL RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2505_218,-74.59225887,39.37803668,22 CAINS MILL RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2506_4,-74.5945765,39.3793915,NO RIVER DR,FOLSOM BORO,,0,1,COM1,3004 -0110_2507_1626,-74.82574271,39.44499923,23 N RIVER DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2507_1627,-74.91552117,39.5101076,21 N RIVER DR,FOLSOM BORO,16,1974,1,GOV1,3004 -0110_2507_1628,-74.6565865,39.593626,19 N RIVER DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2507_203,-74.74501452,39.44479732,32 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2507_204,-74.5015281,39.33653185,30 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2507_205,-74.36540902,39.40652584,28 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2507_206,-74.55705128,39.47255091,26 PARK AVE,FOLSOM BORO,16,1976,1,GOV1,3004 -0110_2507_207,-74.459784,39.3507045,24 PARK AVE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2507_211,-74.69918216,39.55827353,16 E PARK AVE,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2507_3,-74.68291438,39.4970888,PARK AVE,FOLSOM BORO,,0,1,RES1,3001 -0110_2508_1614,-74.625868,39.4395525,5 N RIVER DR,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2508_193,-74.79054381,39.59629648,52 PARK AVE,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2508_194,-74.836005,39.4776355,50 PARK AVE,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2508_196,-74.562659,39.476506,46 E PARK AVE,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2508_198,-74.9217875,39.534631,40 PARK AVE,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2508_202,-74.47007203,39.34260698,34 PARK AVE,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2508_530,-74.954011,39.518431,2 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2508_531,-74.7272045,39.589085,4 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2508_532,-74.81702,39.6489965,6 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2508_533,-74.80396334,39.37150349,8 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2508_534,-74.6377945,39.5324595,10 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3002 -0110_2508_535,-74.59772381,39.43585043,12 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2508_536,-74.53793628,39.46419345,14 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2509_107,-74.46860984,39.34380748,10 E BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2509_110,-74.78585751,39.38217468,16 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2509_118,-74.63975132,39.38131359,32 E BLACK HORSE PK,FOLSOM BORO,16,1975,1,GOV1,3004 -0110_2509_152,-74.5383335,39.4694335,47 E PARK AVE,FOLSOM BORO,16,1968,1,GOV1,3004 -0110_2509_154,-74.70006968,39.42381798,45 E PARK AVE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2509_162,-74.65318294,39.54484736,27 PARK AVE,FOLSOM BORO,16,1975,1,RES3A,3001 -0110_2509_165,-74.44337218,39.37028443,21 PARK AVE,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2509_166,-74.714303,39.4402905,19 E PARK AVE,FOLSOM BORO,16,1957,1,RES1,3004 -0110_2509_168,-74.49277216,39.33959778,15 E PARK AVE,FOLSOM BORO,16,1960,1,GOV1,3004 -0110_2509_169,-74.55749931,39.46846686,13 E PARK AVE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2509_171,-74.76228645,39.50486118,9 E PARK AVE,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2509_172,-74.53811,39.4593355,7 E PARK AVE.,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2509_173,-74.5536025,39.4664885,5 PARK AVE,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2509_174,-74.699583,39.559722,3 PARK AVE,FOLSOM BORO,16,1960,1,GOV1,3004 -0110_2510_356,-74.54071542,39.45963174,31 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2510_357,-74.51998826,39.31837483,29 BLACK HORSE PK,FOLSOM BORO,,0,1,GOV1,3004 -0110_2510_358,-74.59046917,39.51735653,37 E BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_2511_1,-74.53983031,39.41756525,25 BLACK HORSE PK,FOLSOM BORO,16,1950,1,RES1,3001 -0110_2511_11,-74.5702535,39.428364,11 BLACK HORSE PK,FOLSOM BORO,16,1962,1,RES1,3001 -0110_2511_13,-74.63882465,39.53247496,BLACK HORSE PK,FOLSOM BORO,,0,1,GOV1,3004 -0110_2511_16,-74.69266189,39.48377012,100 CAINS MILL RD,FOLSOM BORO,16,1953,1,RES1,3001 -0110_2511_17,-74.444409,39.3692655,102 CAINS MILL RD,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2511_18,-74.37401927,39.41660108,104 CAINS MILL RD,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2511_20,-74.363592,39.418635,110 CAINS MILL RD,FOLSOM BORO,16,1960,1,GOV1,3004 -0110_2511_5,-74.6971085,39.5936665,17 E BLACK HORSE PK,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2511_7,-74.509123,39.3275985,15 E BLACK HORSE PK,FOLSOM BORO,,0,1,GOV1,3004 -0110_2511_9,-74.79245384,39.64962395,13 E.BLACK HORSE PK.,FOLSOM BORO,16,1970,1,GOV1,3004 -0110_2513_274,-74.63551784,39.43301757,E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2513_275,-74.44808747,39.35782188,12 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2515_32,-74.63086549,39.41846773,5 E COLLINGS DR,FOLSOM BORO,16,1955,1,GOV1,3004 -0110_2515_33,-74.805235,39.64424917,7 E COLLINGS DR,FOLSOM BORO,16,1955,1,RES1,3001 -0110_2515_35,-74.646821,39.527963,203 KINGS LANE,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2601_258,-74.539036,39.4623575,105 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2601_259,-74.925502,39.510552,107 E COLLINGS DR.,FOLSOM BORO,16,2004,1,RES1,3001 -0110_2601_613,-74.60143306,39.50963984,207 CUSHMAN AVE.,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2601_614,-74.79703965,39.64098883,209 CUSHMAN AVE,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2601_68,-74.80507295,39.64121966,204 KINGS LANE,FOLSOM BORO,16,1972,1,GOV1,3004 -0110_2601_69,-74.36251921,39.4101026,202 KINGS LANE,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2601_70,-74.60933988,39.39277578,103 E COLLINGS DR,FOLSOM BORO,16,1960,2,RES1,3001 -0110_2602_276,-74.62613007,39.50750834,100 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2602_277,-74.55737268,39.47291229,102 E COLLINGS DR,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2602_279,-74.36529553,39.40688749,106 E COLLINGS DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2602_280,-74.59393661,39.50938475,108 E COLLINGS DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2602_281,-74.4830375,39.3495655,110 E COLLINGS DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2602_283,-74.47755023,39.33787683,114 E COLLINGS DR,FOLSOM BORO,16,1955,1,RES1,3001 -0110_2602_598,-74.744867,39.5911765,120 E COLLINGS DR,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2602_599,-74.6518861,39.52422105,122 E COLLINGS DR,FOLSOM BORO,16,1958,1,GOV1,3004 -0110_2602_601,-74.50365352,39.32875536,126 E COLLINGS DR,FOLSOM BORO,16,1960,1,GOV1,3004 -0110_2602_602,-74.36010333,39.41616349,200 E COLLINGS DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2602_604,-74.51062828,39.32520578,204 E COLLINGS DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2603_611,-74.93778369,39.51867548,210 E COLLINGS DR,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2603_633,-74.68365969,39.44035353,212 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2603_634,-74.6052285,39.4891385,214 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2603_636,-74.47321582,39.34201967,218 E COLLINGS DR,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2604_270,-74.60096312,39.35272968,201 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2604_271,-74.3612975,39.417552,203 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2604_683,-74.63889683,39.53160064,200 SPRINGDALE LANE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2604_685,-74.59797098,39.3542071,209 COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2604_686,-74.70971623,39.63845981,211 E COLLINGS DR,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2604_687,-74.46742134,39.34631499,213 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2604_689,-74.6392816,39.4341524,215 E COLLINGS DR,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2604_690,-74.4738725,39.339658,217 E COLLINGS DR,FOLSOM BORO,16,1952,1,RES1,3001 -0110_2604_692,-74.4115135,39.390886,221 E COLLINGS DR,FOLSOM BORO,16,1955,1,RES2,3005 -0110_2604_695,-74.3921837,39.39248519,202 SPRINGDALE LANE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2604_696,-74.63421014,39.35019153,204 SPRINGDALE LANE,FOLSOM BORO,16,1958,1,RES1,3004 -0110_2604_699,-74.57324284,39.48026452,210 SPRINGDALE LANE,FOLSOM BORO,16,1971,1,RES1,3001 -0110_2604_700,-74.50011135,39.33258297,212 SPRINGDALE LANE,FOLSOM BORO,16,1971,1,RES1,3001 -0110_2604_701,-74.64390762,39.40197444,SPRINGDALE LANE,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2604_702,-74.653943,39.457534,216 JAYS AVE,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2604_703,-74.55290071,39.46920905,201 JAYS AVE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2605_704,-74.49739023,39.33356666,201 SPRINGDALE LANE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2605_705,-74.57786748,39.36782709,203 SPRINGDALE LANE,FOLSOM BORO,16,1955,1,RES1,3001 -0110_2605_706,-74.49488495,39.33362866,205 SPRINGDALE LANE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2605_710,-74.64709083,39.52511149,213 SPRINGDALE LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2606_629,-74.9706085,39.517851,109 FERNWOOD TERRACE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2606_630,-74.62562531,39.41798747,111 FERNWOOD TERRACE,FOLSOM BORO,16,1975,1,EDU1,3004 -0110_2606_631,-74.5507697,39.47174828,205 FERNWOOD TERRACE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2606_632,-74.53717415,39.40690123,207 WOODLAWN AVE,FOLSOM BORO,16,1950,1,RES1,3001 -0110_2607_260,-74.506378,39.3301985,109 E COLLINGS DR,FOLSOM BORO,16,1970,1,GOV1,3004 -0110_2607_262,-74.46845191,39.34329239,113 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2607_264,-74.3915495,39.388308,119 E COLLINGS DR,FOLSOM BORO,16,1965,1,GOV1,3004 -0110_2607_266,-74.36010242,39.41412614,121 E COLLINGS DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2607_267,-74.881434,39.593036,123 E COLLINGS DR,FOLSOM BORO,16,1955,1,RES1,3001 -0110_2607_615,-74.59448658,39.42895874,202 CUSHMAN AVE,FOLSOM BORO,16,1969,1,GOV1,3004 -0110_2607_619,-74.60337569,39.48574397,108 FERNWOOD TERRACE,FOLSOM BORO,16,1980,1,RES1,3001 -0110_2607_620,-74.38202399,39.39409916,110 FERNWOOD TERRACE,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2607_621,-74.376471,39.3981225,112 FERNWOOD TERRACE,FOLSOM BORO,16,1980,1,RES1,3001 -0110_2607_622,-74.38101584,39.39375496,114 FERNWOOD TERRACE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2607_623,-74.61617962,39.51002236,201 WOODLAWN AVE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2607_624,-74.91423875,39.54897233,116 FERNWOOD TERRACE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2608_625,-74.72540709,39.58763885,101 FERNWOOD TERRACE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2608_626,-74.59147582,39.35396475,103 FERNWOOD TERRACE,FOLSOM BORO,16,1955,1,RES1,3001 -0110_2608_628,-74.676533,39.479028,201 COLIN LANE,FOLSOM BORO,16,1980,1,RES1,3001 -0110_2610_380,-74.59938432,39.40867098,27 FENIMORE DR,FOLSOM BORO,16,1990,1,RES1,3001 -0110_2610_381,-74.597644,39.513953,29 FENIMORE DR,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2610_383,-74.5074085,39.329674,33 FENIMORE DR,FOLSOM BORO,16,1967,1,RES1,3001 -0110_2610_386,-74.776123,39.4949105,105 FENIMORE DR,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2611_365,-74.41552431,39.36770346,47 E BLACK HORSE PK,FOLSOM BORO,16,1950,1,RES1,3001 -0110_2611_369,-74.48803387,39.33843134,5 FENIMORE DR,FOLSOM BORO,16,1955,1,RES1,3001 -0110_2611_371,-74.5403035,39.470149,9 FENIMORE DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2611_372,-74.7247505,39.4598845,11 FENIMORE DR,FOLSOM BORO,16,1970,1,GOV1,3004 -0110_2611_373,-74.59720326,39.43555987,13 FENIMORE DR,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2611_374,-74.36942617,39.40760248,15 FENIMORE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2611_375,-74.38414466,39.39433903,17 FENIMORE DR,FOLSOM BORO,16,1966,1,RES1,3001 -0110_2611_376,-74.56525374,39.47804585,19 FENIMORE DR,FOLSOM BORO,16,1981,1,COM1,3004 -0110_2611_377,-74.79498641,39.53023672,21 FENIMORE DR,FOLSOM BORO,16,1977,1,RES1,3001 -0110_2612_407,-74.6368505,39.38866983,4 FENIMORE DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2612_409,-74.79081824,39.67529048,6 FENIMORE DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2612_412,-74.6084351,39.38708105,12 FENIMORE DR,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2613_428,-74.8592716,39.61961679,4 LENAPE TERRACE,FOLSOM BORO,16,1964,1,RES1,3001 -0110_2613_430,-74.79961343,39.63889514,14 FENIMORE DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2613_433,-74.8050355,39.633994,20 FENIMORE DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2613_436,-74.49331703,39.33534367,26 FENIMORE DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2614_441,-74.57746036,39.36667323,100 FENIMORE DR,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2614_445,-74.4879015,39.3347985,108 FENIMORE DR,FOLSOM BORO,16,1967,1,RES1,3001 -0110_2614_459,-74.5059695,39.33858417,105 LENAPE TERRACE,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2614_460,-74.63748501,39.52286833,104 ERIE RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2616_908,-74.56373509,39.47991023,105 PARK AVE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2616_910,-74.49253184,39.33222199,101 PARK AVE,FOLSOM BORO,17,1972,1,RES1,3001 -0110_2617_131,-74.5329814,39.4552093,89 PARK AVE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2617_132,-74.84600668,39.37780695,87 S PARK AVE,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2617_133,-74.72740533,39.45187338,85 PARK AVE,FOLSOM BORO,,0,1,RES1,3001 -0110_2617_134,-74.70909366,39.56008605,83 PARK AVE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2617_136,-74.59284805,39.36055953,79 PARK AVE,FOLSOM BORO,16,1988,1,RES1,3001 -0110_2617_142,-74.42892263,39.36605619,67 PARK AVE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2617_143,-74.36685878,39.40732685,65 PARK AVE,FOLSOM BORO,16,1972,1,GOV1,3004 -0110_2618_180,-74.8933737,39.48089562,78 E PARK AVE,FOLSOM BORO,16,1962,1,RES1,3001 -0110_2618_181,-74.50703952,39.32497967,76 E PARK AVE,FOLSOM BORO,16,1948,1,RES1,3001 -0110_2618_574,-74.7915745,39.646558,8 PINE LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2618_575,-74.48499231,39.35275281,6 PINE LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2618_576,-74.44255706,39.35919383,4 PINE LANE,FOLSOM BORO,16,1972,1,GOV1,3004 -0110_2618_585,-74.92561156,39.51503715,9 WILLOW LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2618_586,-74.61542143,39.36968277,11 WILLOW LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2619_184,-74.4446695,39.3556655,70 PARK AVE,FOLSOM BORO,16,1988,1,GOV1,3004 -0110_2619_564,-74.81817571,39.63218253,4 OAK LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2619_565,-74.8801022,39.59673884,2 OAK LANE,FOLSOM BORO,16,1972,1,GOV1,3004 -0110_2619_568,-74.80945915,39.61158617,17 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2619_571,-74.532421,39.452772,1 PINE LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2619_572,-74.61647536,39.62037868,3 PINE LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2619_573,-74.84017428,39.53258907,5 PINE LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2620_188,-74.81756634,39.64062781,62 PARK AVE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2620_189,-74.79021444,39.63393719,60 PARK AVE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2620_191,-74.73025372,39.45439762,56 PARK AVE,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2620_556,-74.42534145,39.3645314,3 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2620_558,-74.4219745,39.373381,5 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2620_559,-74.9597135,39.497345,7 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2620_560,-74.41425,39.3680195,9 S RIVER DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2620_561,-74.556549,39.468005,11 S RIVER DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2620_562,-74.54344941,39.47168789,1 OAK LANE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2620_563,-74.80300288,39.52040679,3 OAK LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2701_694,-74.65470809,39.40513616,225 E COLLINGS DR,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2702_713,-74.61945733,39.50509942,227 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2702_715,-74.36213591,39.41704525,231 E COLLINGS DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2702_719,-74.4469867,39.37162858,103 FAIRMONT AVE,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2702_720,-74.83047899,39.39013757,105 FAIRMONT AVE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2703_640,-74.64594982,39.40855083,100 LAKEVIEW LANE,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2703_641,-74.6027585,39.532599,102 LAKEVIEW LANE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2703_655,-74.9089975,39.4821415,244 E COLLINGS DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2703_657,-74.58677237,39.41223668,248 E COLLINGS DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2703_659,-74.622061,39.51332,300 E COLLINGS DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2703_660,-74.6343305,39.423503,302 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2703_662,-74.818089,39.5000115,304 E COLLINGS DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2704_721,-74.37173333,39.4065615,233 E COLLINGS DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2704_723,-74.3679247,39.41430971,236 E COLLINGS DR,FOLSOM BORO,16,1970,1,GOV1,3004 -0110_2704_724,-74.639599,39.3804695,239 E COLLINGS DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2704_725,-74.5583275,39.471441,241 E COLLINGS DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2704_726,-74.55657,39.474504,243 E COLLINGS DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2704_727,-74.4382915,39.3650575,245 E COLLINGS DR,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2704_731,-74.81833422,39.54274942,303 QUEENS LANE,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2704_732,-74.55350714,39.46469179,305 QUEENS LANE,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2704_733,-74.83355479,39.39704672,307 QUEENS LANE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2704_734,-74.72655925,39.44978085,309 QUEENS LANE,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2704_735,-74.66047329,39.54042922,311 GLENSIDE LANE,FOLSOM BORO,16,1957,1,RES1,3001 -0110_2705_738,-74.651039,39.5246125,229 GLENSIDE LANE,FOLSOM BORO,16,1962,1,GOV1,3004 -0110_2705_739,-74.6619819,39.49463565,231 GLENSIDE LANE,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2705_743,-74.9344775,39.525565,239 W GLENSIDE LANE,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2705_744,-74.64854,39.4703425,241 GLENSIDE LANE,FOLSOM BORO,16,1971,1,RES1,3001 -0110_2705_745,-74.72941446,39.5883658,243 GLENSIDE LANE,FOLSOM BORO,16,1975,1,GOV1,3004 -0110_2705_746,-74.80018369,39.64268461,245 GLENSIDE LANE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2706_747,-74.45676709,39.34746117,QUEENS LANE,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2706_748,-74.657644,39.576907,308 QUEENS LANE,FOLSOM BORO,16,1951,1,RES1,3001 -0110_2706_750,-74.47038689,39.34548533,304 QUEENS LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2706_751,-74.50494017,39.33184147,302 QUEENS LANE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2706_752,-74.3755785,39.402089,301 E COLLINGS DR,FOLSOM BORO,16,1971,1,RES1,3001 -0110_2706_753,-74.46478148,39.34817714,303 E COLLINGS DR,FOLSOM BORO,16,1962,1,RES1,3001 -0110_2706_754,-74.55267628,39.46833045,201 HOLLY LANE,FOLSOM BORO,16,1955,1,RES1,3001 -0110_2706_760,-74.81786574,39.65540012,304 CEDAR LAKE DR,FOLSOM BORO,16,1956,1,GOV1,3004 -0110_2706_761,-74.81806469,39.65696984,302 CEDAR LAKE DR,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2706_762,-74.72591305,39.58986266,300 GLENSIDE LANE,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2706_763,-74.61181384,39.48922846,246 GLENSIDE LANE,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2706_764,-74.71671977,39.40013746,244 GLENSIDE LANE,FOLSOM BORO,16,1988,1,RES1,3001 -0110_2707_796,-74.8637445,39.494233,315 CEDAR LAKE DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2707_797,-74.75162451,39.45396166,313 CEDAR LAKE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2707_798,-74.71377134,39.44778457,311 CEDAR LAKE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2707_799,-74.55440988,39.47419272,309 CEDAR LAKE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2707_800,-74.4922535,39.3340145,307 CEDAR LAKE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2707_801,-74.49191989,39.33059138,305 CEDAR LAKE DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2708_766,-74.979726,39.5131295,307 E COLLINGS DR,FOLSOM BORO,16,1968,1,COM8,3004 -0110_2708_767,-74.78527436,39.62296803,309 E COLLINGS DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2708_768,-74.73467353,39.45028019,311 E COLLINGS DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2708_769,-74.46432262,39.35362344,313 E COLLINGS DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2708_770,-74.8340915,39.390205,315 E COLLINGS DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2708_771,-74.61844741,39.43803593,317 E COLLINGS DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2708_772,-74.8186645,39.4969105,319 E COLLINGS DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2708_773,-74.59962057,39.42782933,321 E COLLINGS DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2708_777,-74.638117,39.429532,324 CEDAR LAKE DR,FOLSOM BORO,16,1960,1,GOV1,3004 -0110_2708_779,-74.6775285,39.388117,320 CEDAR LAKE DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2708_781,-74.81188004,39.6434036,316 CEDAR LAKE DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2708_783,-74.86560419,39.49026859,204 HOLLY LANE,FOLSOM BORO,16,1954,1,RES1,3001 -0110_2708_784,-74.8198375,39.3951045,202 HOLLY LANE,FOLSOM BORO,16,1978,1,RES1,3001 -0110_2709_664,-74.68740974,39.65376187,308 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2709_665,-74.47994642,39.34081982,310 E COLLINGS DR,FOLSOM BORO,16,1980,1,RES1,3001 -0110_2709_666,-74.5510915,39.4636015,312 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2709_667,-74.447668,39.371834,314 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2709_668,-74.4912425,39.332803,316 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2709_669,-74.62451044,39.31324696,318 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2709_670,-74.54520328,39.4717449,320 E COLLINGS DR,FOLSOM BORO,16,1973,1,IND2,3002 -0110_2711_403,-74.69095611,39.49223355,201 FENIMORE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2711_404,-74.763702,39.4852825,203 FENIMORE DR,FOLSOM BORO,16,1980,1,RES1,3001 -0110_2711_405,-74.487148,39.3385775,205 FENIMORE DR,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2711_406,-74.500045,39.3366115,207 FENIMORE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2711_834,-74.4754062,39.34247489,209 FENIMORE DR,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2711_835,-74.74751914,39.39004694,211 FENIMORE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2711_836,-74.79749351,39.54447838,213 FENIMORE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2711_837,-74.85915781,39.47993469,215 FENIMORE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2711_838,-74.55977034,39.46810953,217 FENIMORE DRIVE,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2711_839,-74.37713937,39.39713855,219 FENIMORE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2712_387,-74.4736475,39.3429265,109 FENIMORE DR,FOLSOM BORO,16,1952,1,RES1,3001 -0110_2712_394,-74.50891102,39.33283184,121 FENIMORE DR,FOLSOM BORO,16,1978,1,RES1,3001 -0110_2712_395,-74.51316959,39.32072254,123 FENIMORE DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2712_396,-74.60723125,39.51428187,125 FENIMORE DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2712_398,-74.48018004,39.34772118,129 FENIMORE DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2713_450,-74.40755373,39.3802879,118 FENIMORE DR,FOLSOM BORO,16,1954,1,RES1,3001 -0110_2713_451,-74.816072,39.6402785,121 LENAPE TERRACE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2713_452,-74.80957315,39.56022354,119 LENAPE TERRACE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2714_462,-74.59808694,39.37868821,116 LENAPE TERRACE,FOLSOM BORO,16,1956,1,RES1,3001 -0110_2714_464,-74.55779889,39.52026284,120 LENAPE TERRACE,FOLSOM BORO,16,1962,1,RES1,3001 -0110_2714_465,-74.5662585,39.4785485,122 LENAPE TERRACE,FOLSOM BORO,16,1968,1,RES1,3001 -0110_2714_466,-74.5761325,39.417308,120 FENIMORE DR,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2714_467,-74.944511,39.5047145,122 FENIMORE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2714_468,-74.383315,39.393596,124 FENIMORE DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2714_471,-74.51497044,39.32877138,130 FENIMORE DR,FOLSOM BORO,16,1970,1,RES1,3001 -0110_2714_472,-74.63033431,39.4183049,132 FENIMORE DR,FOLSOM BORO,16,1974,1,RES1,3004 -0110_2714_473,-74.41363084,39.37091762,134 FENIMORE DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2714_474,-74.864341,39.436438,103 CHEROKEE RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2714_475,-74.36240585,39.41142287,101 CHEROKEE RD,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2714_476,-74.6404005,39.533527,141 SENECA LANE,FOLSOM BORO,16,1972,1,COM1,3004 -0110_2714_477,-74.79133,39.5332985,139 SENECA LANE,FOLSOM BORO,16,1971,1,RES1,3001 -0110_2714_478,-74.67266348,39.45679621,137 SENECA LANE,FOLSOM BORO,16,1972,1,GOV1,3004 -0110_2715_526,-74.818376,39.4949695,102 CHEROKEE RD,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2715_527,-74.429189,39.375227,200 CHEROKEE RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2715_528,-74.8141555,39.4698975,204 FENIMORE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2715_528.02,-74.6220821,39.43129431,206 FENIMORE DR,FOLSOM BORO,16,1925,1,RES1,3001 -0110_2715_806,-74.94624485,39.516934,203 SENECA LANE,FOLSOM BORO,16,1976,1,RES1,3001 -0110_2715_808,-74.364407,39.410379,210 FENIMORE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2715_809,-74.4942515,39.332766,212 FENIMORE DR,FOLSOM BORO,16,1958,1,RES1,3001 -0110_2715_811,-74.36646112,39.41517233,216 FENIMORE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2716_523,-74.493954,39.33317,202 SENECA LANE,FOLSOM BORO,16,1960,1,RES1,3001 -0110_2716_821,-74.5038325,39.3311865,206 MOHAWK DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2716_824,-74.860979,39.5659475,212 MOHAWK DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2716_825,-74.60051061,39.43559374,214 MOHAWK DR,FOLSOM BORO,16,1972,1,GOV1,3004 -0110_2716_828,-74.49583683,39.33269951,220 MOHAWK DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2717_508,-74.661186,39.444956,142 SENECA LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2717_512,-74.8620495,39.4863625,134 SENECA LANE,FOLSOM BORO,16,1968,1,RES1,3002 -0110_2717_514,-74.81482284,39.63869736,130 SENECA LANE,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2717_519,-74.58696234,39.42331462,120 SENECA LANE,FOLSOM BORO,16,1976,1,COM1,3004 -0110_2717_520,-74.86260285,39.48498266,118 SENECA LANE,FOLSOM BORO,16,1990,1,RES1,3001 -0110_2802_785,-74.393158,39.392922,409 E COLLINGS DR,FOLSOM BORO,16,1967,1,RES1,3001 -0110_2802_788,-74.79698659,39.66943671,403 E COLLINGS DR,FOLSOM BORO,16,1977,1,RES1,3001 -0110_2802_789,-74.70927195,39.57133617,401 CEDAR LAKE DR,FOLSOM BORO,16,1963,1,RES1,3004 -0110_2802_791,-74.5577915,39.4674065,325 CEDAR LAKE DR,FOLSOM BORO,16,1965,1,RES1,3001 -0110_2803_775,-74.5629465,39.416372,325 E COLLINGS DR,FOLSOM BORO,16,1965,1,RES1,3001 -0110_2804_673,-74.94985509,39.52133969,326 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2804_674,-74.6465535,39.549232,328 E COLLINGS DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2804_675,-74.8357965,39.3825345,400 E COLLINGS DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2804_677,-74.46375596,39.35208482,404 E COLLINGS DR,FOLSOM BORO,16,1974,1,GOV1,3004 -0110_2804_678,-74.69591281,39.58825118,406 E COLLINGS DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2808_840,-74.6134588,39.36323178,221 FENIMORE DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2808_841,-74.8330991,39.58010719,223 FENIMORE DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2808_842,-74.3798144,39.41550483,225 FENIMORE DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2808_843,-74.83110332,39.44918654,227 FENIMORE DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2808_844,-74.506459,39.33524182,229 FENIMORE DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2808_845,-74.649533,39.447651,231 FENIMORE DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2808_846,-74.5459271,39.47556528,233 FENIMORE DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2808_847,-74.84398634,39.63376604,235 FENIMORE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_2808_848,-74.4179575,39.369277,237 FENIMORE DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2808_849,-74.58941673,39.42605446,239 FENIMORE DR,FOLSOM BORO,16,1974,1,GOV1,3004 -0110_2808_850,-74.54114438,39.41293424,241 FENIMORE DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2808_851,-74.75343723,39.43094746,243 FENIMORE DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_2808_853,-74.61200879,39.48877619,247 FENIMORE DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2808_854,-74.84331293,39.48087268,249 FENIMORE DR,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2808_855,-74.5103405,39.3317625,251 FENIMORE DR,FOLSOM BORO,16,1974,1,RES1,3001 -0110_2808_856,-74.8478925,39.4053715,253 FENIMORE DR,FOLSOM BORO,16,1973,1,RES1,3001 -0110_2809_831,-74.77958015,39.60316465,226 FENIMORE DR,FOLSOM BORO,16,1951,1,RES1,3001 -0110_2902_2,-74.7287675,39.452484,1916 12TH ST,FOLSOM BORO,16,2003,1,RES1,3001 -0110_301_1,-74.54601319,39.40638959,1310 MAYS LANDING RD,FOLSOM BORO,16,1965,1,GOV1,3004 -0110_301_11,-74.59875375,39.59159697,1326 MAYS LANDING RD,FOLSOM BORO,16,1986,1,RES1,3001 -0110_301_12,-74.449721,39.371445,1328 MAYS LANDING RD,FOLSOM BORO,15,1876,1,RES1,3001 -0110_301_13,-74.83985809,39.37361406,1330 MAYS LANDING RD,FOLSOM BORO,15,1948,1,GOV1,3004 -0110_301_14,-74.5647326,39.47882323,1332 MAYS LANDING RD,FOLSOM BORO,15,1948,1,RES1,3001 -0110_301_16,-74.788311,39.64692249,1334 MAYS LANDING RD,FOLSOM BORO,,1955,1,RES1,3001 -0110_301_19,-74.38087608,39.39526429,1338 MAYS LANDING RD,FOLSOM BORO,15,1926,1,RES1,3001 -0110_301_2,-74.64882001,39.53471267,1312 MAYS LANDING RD,FOLSOM BORO,16,1978,1,RES1,3001 -0110_301_3,-74.87977145,39.45161176,1314 MAYS LANDING RD,FOLSOM BORO,16,1953,1,RES1,3001 -0110_301_4,-74.69775616,39.56327899,1316 MAYS LANDING RD,FOLSOM BORO,15,1920,1,RES1,3001 -0110_301_6,-74.6474317,39.43370255,1318 MAYS LANDING RD,FOLSOM BORO,15,1915,1,RES1,3001 -0110_301_8,-74.93387594,39.49570977,1320 MAYS LANDING RD,FOLSOM BORO,16,2004,1,RES1,3001 -0110_3101_10,-74.81424133,39.62597847,1111 BLACK HORSE PK,FOLSOM BORO,16,1938,1,RES1,3001 -0110_3101_5,-74.4956825,39.3356895,1113 BLACK HORSE PIKE,FOLSOM BORO,,0,1,RES1,3001 -0110_3101_6,-74.35567085,39.41495695,1101 BLACK HORSE PK,FOLSOM BORO,16,1930,1,RES1,3001 -0110_3101_7,-74.57866073,39.36202877,1105 BLACK HORSE PK,FOLSOM BORO,16,1962,1,RES1,3001 -0110_3101_9,-74.47230732,39.34090252,1109 BLACK HORSE PK,FOLSOM BORO,16,1950,1,RES1,3001 -0110_3102_1,-74.6520605,39.53216,1100 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_3102_12,-74.54048878,39.46694892,1116 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_3102_16,-74.7029415,39.4844865,1108 BLACK HORSE PK,FOLSOM BORO,16,1952,1,RES1,3001 -0110_3102_18,-74.74514388,39.44574273,1104 BLACK HORSE PK,FOLSOM BORO,16,1962,1,RES1,3001 -0110_3102_19,-74.5135645,39.32171247,1102 BLACK HORSE PK,FOLSOM BORO,16,1964,1,RES1,3001 -0110_3102_7,-74.8846018,39.56527505,10TH ST,FOLSOM BORO,16,2003,1,RES1,3001 -0110_3102_8,-74.47878265,39.34644752,10TH ST,FOLSOM BORO,,0,1,RES1,3001 -0110_3202_11,-74.604833,39.4821305,1214 BLACK HORSE PK,FOLSOM BORO,16,1956,1,RES1,3001 -0110_3301_2,-74.6030125,39.4354285,3014 8TH ST,FOLSOM BORO,17,2009,1,RES1,3001 -0110_3301_8,-74.75455734,39.44951547,3008 8TH ST,FOLSOM BORO,17,2004,1,RES1,3001 -0110_3301_9,-74.66043902,39.41589446,3012 8TH ST,FOLSOM BORO,17,2002,1,RES1,3001 -0110_3401_1,-74.4018125,39.3870795,3100 N PINEWOOD DR,FOLSOM BORO,16,2006,1,GOV1,3004 -0110_3401_10,-74.72240183,39.4563165,3108 N PINEWOOD DR,FOLSOM BORO,16,1999,1,RES1,3001 -0110_3401_13,-74.46104024,39.35786583,3110 N PINEWOOD DR,FOLSOM BORO,16,1995,1,RES1,3001 -0110_3401_14,-74.8239115,39.618718,2000 LAKE DR,FOLSOM BORO,16,1976,1,RES1,3001 -0110_3401_18,-74.617686,39.43776,3112 N PINEWOOD DR,FOLSOM BORO,16,1994,1,RES1,3001 -0110_3401_2,-74.56360686,39.40815131,3102 N PINEWOOD DR,FOLSOM BORO,16,1986,1,COM1,3004 -0110_3401_22,-74.57186398,39.47818911,3114 N PINEWOOD DR,FOLSOM BORO,16,1994,1,RES1,3001 -0110_3401_23,-74.5662093,39.4732914,3116 N PINEWOOD DR,FOLSOM BORO,16,1998,1,RES1,3001 -0110_3401_24,-74.54586129,39.47130347,3118 N PINEWOOD DR,FOLSOM BORO,16,1995,1,RES1,3001 -0110_3401_25,-74.88271932,39.47451549,3120 N PINEWOOD DR,FOLSOM BORO,16,1997,1,RES1,3001 -0110_3401_26,-74.4243181,39.36414775,3122 N PINEWOOD DR,FOLSOM BORO,16,1997,1,RES1,3001 -0110_3401_27,-74.64406273,39.42948591,3124 N PINEWOOD DR,FOLSOM BORO,16,1994,1,RES1,3001 -0110_3401_28,-74.71487731,39.41356902,3126 N PINEWOOD DR,FOLSOM BORO,16,1993,1,RES1,3001 -0110_3401_29,-74.72244704,39.4575662,3128 N PINEWOOD DR,FOLSOM BORO,16,1992,1,RES1,3001 -0110_3401_3,-74.70052639,39.37064426,2012 LAKE DR,FOLSOM BORO,16,1982,1,RES1,3001 -0110_3401_31,-74.64345084,39.53267052,3213 OAKWOOD DR,FOLSOM BORO,16,1995,1,RES1,3001 -0110_3401_32,-74.406939,39.3814725,3211 OAKWOOD DR,FOLSOM BORO,16,1994,1,RES1,3001 -0110_3401_39,-74.67344111,39.61582541,3315 PINEWOOD DR,FOLSOM BORO,16,1999,1,RES1,3001 -0110_3401_4,-74.54336803,39.45773246,3104 N PINEWOOD DR,FOLSOM BORO,16,1992,1,RES1,3001 -0110_3401_40,-74.4719995,39.3420375,3313 S PINEWOOD DR,FOLSOM BORO,16,1984,1,RES1,3001 -0110_3401_43,-74.93003389,39.5078174,3311 S PINEWOOD DR,FOLSOM BORO,16,1994,1,RES1,3001 -0110_3401_44,-74.49414783,39.33456301,3309 S PINEWOOD DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_3401_46,-74.6070085,39.436588,3307 S PINEWOOD DR,FOLSOM BORO,16,1996,1,RES1,3001 -0110_3401_49,-74.3754772,39.40074486,3301 S PINEWOOD DR,FOLSOM BORO,16,1955,1,COM1,3004 -0110_3401_5,-74.60207926,39.39169433,2010 LAKE DR,FOLSOM BORO,16,1978,1,RES1,3001 -0110_3401_8,-74.725857,39.5879515,3106 N PINEWOOD DR,FOLSOM BORO,16,1978,1,RES1,3001 -0110_3401_9,-74.6434585,39.530304,2006 LAKE DR,FOLSOM BORO,16,1995,1,RES1,3001 -0110_3402_1,-74.590786,39.4722435,3212 OAKWOOD DR,FOLSOM BORO,16,1999,1,RES1,3001 -0110_3402_3,-74.61263558,39.41983083,3210 OAKWOOD DR,FOLSOM BORO,16,1982,1,RES1,3001 -0110_3402_5,-74.711724,39.6342155,2300 LUPIN LANE,FOLSOM BORO,16,1979,1,RES1,3001 -0110_3402_7,-74.92423005,39.50689127,3117 N PINEWOOD DR,FOLSOM BORO,16,1980,1,RES1,3001 -0110_3402_9,-74.85354646,39.60090372,3121 N PINEWOOD DR,FOLSOM BORO,16,1984,1,RES1,3001 -0110_3403_1,-74.711766,39.474193,3208 OAKWOOD DR,FOLSOM BORO,16,1988,1,RES1,3001 -0110_3403_4,-74.5166395,39.33054,2206 EVERGREEN DR,FOLSOM BORO,15,1995,1,RES1,3001 -0110_3403_5,-74.48632447,39.33726032,2204 EVERGREEN DR,FOLSOM BORO,16,1976,1,RES3A,3001 -0110_3403_6,-74.552603,39.4662715,2301 LUPIN LANE,FOLSOM BORO,16,1983,1,RES1,3001 -0110_3403_7,-74.948111,39.5306595,2200 EVERGREEN DR,FOLSOM BORO,16,1977,1,RES1,3001 -0110_3403_8,-74.63823851,39.53318667,3111 N PINEWOOD DR,FOLSOM BORO,16,1978,1,RES1,3001 -0110_3403_9,-74.613802,39.3654705,3113 N PINEWOOD DR,FOLSOM BORO,16,1981,1,RES1,3001 -0110_3404_1,-74.711279,39.4733675,3206 OAKWOOD DR,FOLSOM BORO,16,1996,1,RES1,3001 -0110_3404_12,-74.60570861,39.39070046,2201 EVERGREEN DR,FOLSOM BORO,16,1992,1,RES1,3001 -0110_3404_14,-74.80073629,39.65493641,2203 EVERGREEN DR,FOLSOM BORO,16,1978,1,RES1,3001 -0110_3404_5,-74.58481011,39.48719664,2104 LAUREL LANE,FOLSOM BORO,16,1979,1,RES1,3001 -0110_3404_6,-74.38941915,39.39539208,2102 LAUREL LANE,FOLSOM BORO,16,1979,1,RES1,3001 -0110_3404_7,-74.80807067,39.6279465,2100 LAUREL LANE,FOLSOM BORO,16,1999,1,RES1,3001 -0110_3404_8,-74.60945616,39.44070218,3105 N PINEWOOD DR,FOLSOM BORO,16,1979,1,RES1,3001 -0110_3404_9,-74.55735626,39.46709043,3107 N PINEWOOD DR,FOLSOM BORO,16,1977,1,RES1,3001 -0110_3405_10,-74.508312,39.338693,3103 N PINEWOOD DR,FOLSOM BORO,16,1965,1,RES1,3001 -0110_3405_11,-74.60158527,39.42006136,2101 LAUREL LANE,FOLSOM BORO,16,1973,1,RES1,3001 -0110_3405_2,-74.36816254,39.40225617,3202 OAKWOOD DR,FOLSOM BORO,16,1997,1,RES1,3001 -0110_3405_4,-74.4938455,39.341785,3200 OAKWOOD DR,FOLSOM BORO,16,1968,1,RES1,3001 -0110_3406_1,-74.63019655,39.3901872,3320 S PINEWOOD DR,FOLSOM BORO,16,1975,1,RES1,3001 -0110_3406_13,-74.61866567,39.40415267,2024 LAKE DR,FOLSOM BORO,16,1963,1,RES1,3001 -0110_3406_2,-74.59746946,39.49606191,3207 OAKWOOD DR,FOLSOM BORO,16,1993,1,RES1,3001 -0110_3406_3,-74.52091917,39.32039897,3316 S PINEWOOD DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_3406_4,-74.5498835,39.4066965,3205 OAKWOOD DR,FOLSOM BORO,16,1990,1,RES1,3001 -0110_3406_5,-74.79289558,39.64231669,3314 S PINEWOOD DR,FOLSOM BORO,16,1980,1,RES1,3001 -0110_3406_6,-74.66072969,39.63198826,3203 OAKWOOD DR,FOLSOM BORO,16,1998,1,RES1,3001 -0110_3407_1,-74.687858,39.570623,2001 LAKE DR,FOLSOM BORO,16,2005,1,RES1,3001 -0110_3407_10,-74.45559,39.34991247,2019 LAKE DR,FOLSOM BORO,16,1958,1,COM4,3004 -0110_3407_11,-74.5537671,39.50307409,2021 LAKE DR,FOLSOM BORO,15,1950,1,RES1,3001 -0110_3407_3,-74.54046721,39.41863468,2005 LAKE DR,FOLSOM BORO,16,1969,1,RES1,3001 -0110_3407_4,-74.557374,39.4415665,2007 LAKE DR,FOLSOM BORO,16,1972,1,RES1,3001 -0110_3407_5,-74.557831,39.477925,2011 LAKE DR,FOLSOM BORO,16,1995,1,RES1,3001 -0110_3407_8,-74.460649,39.3535855,2015 LAKE DR,FOLSOM BORO,18,2016,1,RES1,3001 -0110_3407_9,-74.812732,39.5250115,2017 LAKE DR,FOLSOM BORO,16,1952,1,RES1,3001 -0110_3408_4,-74.6146965,39.507881,1402 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_3408_5,-74.477175,39.339557,1400 BLACK HORSE PK,FOLSOM BORO,,0,1,RES1,3001 -0110_3409_1,-74.72469841,39.45527569,1602 MAYS LANDING RD,FOLSOM BORO,16,1980,1,RES1,3001 -0110_3409_8,-74.4547075,39.37153,1416 BLACK HORSE PK,FOLSOM BORO,16,1952,1,RES1,3001 -0110_401_1,-74.52130398,39.32080166,1340 MAYS LANDING RD,FOLSOM BORO,16,2000,1,RES1,3001 -0110_401_12,-74.37259042,39.4099827,1360 MAYS LANDING RD,FOLSOM BORO,15,1930,1,RES1,3001 -0110_401_14,-74.5821445,39.4823195,1364 MAYS LANDING RD,FOLSOM BORO,,0,1,RES1,3001 -0110_401_18,-74.83725916,39.63250148,1619 12TH ST,FOLSOM BORO,16,1975,1,RES1,3001 -0110_401_19,-74.79655586,39.64468203,1617 12TH ST,FOLSOM BORO,16,1968,1,RES1,3001 -0110_401_2,-74.39381939,39.38662855,1342 MAYS LANDING RD,FOLSOM BORO,16,1949,1,RES1,3001 -0110_401_3,-74.38508691,39.39518309,1344 MAYS LANDING RD,FOLSOM BORO,15,1850,1,RES1,3001 -0110_401_5,-74.619142,39.386548,1348 MAYS LANDING RD,FOLSOM BORO,15,1890,1,RES1,3001 -0110_502_10,-74.75340787,39.45342738,1424 MAYS LANDING RD,FOLSOM BORO,16,1968,1,RES1,3001 -0110_502_11,-74.3971075,39.38781,1418 MAYS LANDING RD,FOLSOM BORO,15,1920,1,RES1,3001 -0110_502_12,-74.48995566,39.33405251,1416 MAYS LANDING RD,FOLSOM BORO,15,1950,1,RES1,3001 -0110_502_13,-74.45986817,39.35334943,1414 MAYS LANDING RD,FOLSOM BORO,16,1986,1,RES1,3001 -0110_502_14,-74.87059083,39.59345033,1412 MAYS LANDING RD,FOLSOM BORO,15,1900,1,RES1,3001 -0110_502_15,-74.6314293,39.41973746,1410 MAYS LANDING RD,FOLSOM BORO,15,1950,1,RES1,3001 -0110_502_18,-74.51456624,39.32898016,1614 12TH ST,FOLSOM BORO,15,1933,1,RES1,3001 -0110_502_2,-74.79526349,39.64584697,1608 12TH ST,FOLSOM BORO,,0,1,RES1,3001 -0110_502_4,-74.36935874,39.4148669,1211 11TH ST,FOLSOM BORO,,1900,1,GOV1,3004 -0110_502_6,-74.54449181,39.47669422,1215 11TH ST,FOLSOM BORO,17,1884,3,RES1,3001 -0110_502_7,-74.51415154,39.32530667,1217 11TH ST,FOLSOM BORO,16,1968,2,RES1,3001 -0110_502_9,-74.802225,39.637659,1428 MAYS LANDING RD,FOLSOM BORO,16,1955,1,RES1,3001 -0110_601_1,-74.59585397,39.37993221,1395 BACKLINE RD,FOLSOM BORO,17,1996,1,RES1,3001 -0110_601_3,-74.5996505,39.432447,1399 BACKLINE RD,FOLSOM BORO,16,1972,1,COM3,3004 -0110_602_1,-74.827994,39.6379845,1401 BACKLINE RD,FOLSOM BORO,16,1985,1,RES1,3001 -0110_602_10,-74.432182,39.366763,1419 BACKLINE RD,FOLSOM BORO,16,1978,1,GOV1,3004 -0110_602_12,-74.45353959,39.3734643,1423 BACKLINE RD,FOLSOM BORO,16,2005,1,RES1,3001 -0110_602_2,-74.5342225,39.4040075,1403 BACKLINE RD,FOLSOM BORO,16,1978,1,RES1,3001 -0110_602_3,-74.62712818,39.43557292,1405 BACKLINE RD,FOLSOM BORO,17,2012,1,RES1,3001 -0110_602_7,-74.37553914,39.40155043,1411 BACKLINE RD,FOLSOM BORO,16,1978,1,RES1,3001 -0110_602_8,-74.84811,39.4107115,1415 BACKLINE RD,FOLSOM BORO,16,1970,1,RES1,3001 -0110_602_9,-74.9487225,39.509179,1417 BACKLINE RD,FOLSOM BORO,,0,1,RES1,3001 -0110_701_1,-74.8284075,39.491413,1301 MAYS LANDING RD,FOLSOM BORO,15,1930,1,RES1,3001 -0110_701_10,-74.500392,39.3283965,1315 MAYS LANDING RD,FOLSOM BORO,15,1917,1,RES1,3001 -0110_701_11,-74.5448195,39.4996365,1317 MAYS LANDING RD,FOLSOM BORO,15,1920,1,RES1,3001 -0110_701_12,-74.79463473,39.67377567,1319 MAYS LANDING RD,FOLSOM BORO,16,1965,1,RES1,3001 -0110_701_14,-74.37907669,39.4017113,1323 MAYS LANDING RD,FOLSOM BORO,16,1972,1,RES1,3001 -0110_701_15,-74.6324025,39.351053,1327 MAYS LANDING RD,FOLSOM BORO,15,1910,1,RES1,3001 -0110_701_16,-74.8439665,39.4094565,1329 MAYS LANDING RD,FOLSOM BORO,15,1900,1,RES1,3001 -0110_701_16.01,-74.58139164,39.36778725,1452 BACKLINE RD,FOLSOM BORO,17,2000,1,RES1,3001 -0110_701_17,-74.5586811,39.44470614,1331 MAYS LANDING RD,FOLSOM BORO,15,1938,1,RES1,3001 -0110_701_2,-74.46411465,39.34614215,1303 MAYS LANDING RD,FOLSOM BORO,,0,1,RES1,3001 -0110_701_25,-74.50333,39.3371895,1450 BACKLINE RD,FOLSOM BORO,16,1985,1,RES1,3001 -0110_701_3,-74.45794955,39.35388842,1305 MAYS LANDING RD,FOLSOM BORO,16,1960,1,RES1,3001 -0110_701_5,-74.3639632,39.41778513,1309 MAYS LANDING RD,FOLSOM BORO,15,1970,1,RES1,3001 -0110_701_9,-74.7308405,39.454266,1313 MAYS LANDING RD,FOLSOM BORO,16,1980,1,RES1,3001 -0110_702_1,-74.62574124,39.43626747,2000 14TH ST,FOLSOM BORO,16,1960,1,RES1,3001 -0110_702_10,-74.40414155,39.39057939,1446 BACKLINE RD,FOLSOM BORO,16,1979,1,RES1,3001 -0110_702_2,-74.5485629,39.47615323,2002 14TH ST,FOLSOM BORO,16,1958,1,RES1,3001 -0110_702_3,-74.36917141,39.40816084,1420 BACKLINE RD,FOLSOM BORO,16,2002,1,IND3,3004 -0110_702_4,-74.5053665,39.3385025,1430 BACKLINE RD,FOLSOM BORO,16,1963,1,RES1,3001 -0110_702_5,-74.666645,39.5818835,1436 BACKLINE RD,FOLSOM BORO,16,1979,1,RES1,3001 -0110_702_6,-74.6513587,39.3739858,1438 BACKLINE RD,FOLSOM BORO,16,1978,1,RES1,3001 -0110_702_7,-74.63924486,39.34254916,1440 BACKLINE RD,FOLSOM BORO,16,1980,1,RES1,3001 -0110_702_8,-74.9814105,39.5127965,1442 BACKLINE RD,FOLSOM BORO,16,1980,1,RES1,3001 -0110_702_9,-74.4487883,39.37239096,1444 BACKLINE RD,FOLSOM BORO,16,1980,1,RES1,3001 -0110_801_10,-74.62907145,39.46247233,1359 MAYS LANDING RD,FOLSOM BORO,15,1938,1,RES1,3001 -0110_801_11,-74.83891401,39.38842784,1361 MAYS LANDING RD,FOLSOM BORO,16,1962,2,RES1,3001 -0110_801_12,-74.59128875,39.42950504,1365 MAYS LANDING RD,FOLSOM BORO,,0,1,RES1,3001 -0110_801_15,-74.691441,39.597181,1709 12TH ST,FOLSOM BORO,15,1920,1,RES1,3001 -0110_801_16,-74.58423487,39.43277978,1711 12TH ST,FOLSOM BORO,16,1978,1,RES1,3001 -0110_801_17,-74.629818,39.4228955,1713 12TH ST,FOLSOM BORO,16,1968,1,RES1,3001 -0110_801_18,-74.60654311,39.38965016,1317 13TH ST,FOLSOM BORO,15,1928,1,RES1,3001 -0110_801_21,-74.83934529,39.40859104,1311 13TH ST,FOLSOM BORO,16,1965,1,GOV1,3004 -0110_801_22,-74.82398399,39.64536967,1309 13TH ST,FOLSOM BORO,16,1965,1,RES1,3001 -0110_801_23,-74.6342725,39.391378,1307 13TH ST,FOLSOM BORO,16,1988,1,RES1,3001 -0110_801_6,-74.89269892,39.47324082,1347 MAYS LANDING RD,FOLSOM BORO,15,1945,1,RES1,3001 -0110_801_7,-74.37305554,39.41668243,1345 MAYS LANDING RD,FOLSOM BORO,16,1965,1,RES1,3001 -0110_801_8,-74.8747015,39.5918145,1351 MAYS LANDING RD,FOLSOM BORO,16,1958,1,RES1,3001 -0110_801_8.01,-74.92530377,39.50712035,1353 MAYS LANDING RD,FOLSOM BORO,16,1997,1,RES1,3001 -0110_801_9,-74.789479,39.638056,1357 MAYS LANDING RD,FOLSOM BORO,,0,1,RES1,3001 -0111_100_1.01,-74.78705766,39.64062697,602 COUNTY BLVD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_100_2,-74.80861216,39.61282258,1414 FAIRMOUNT ST,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_100_3,-74.73523175,39.71963149,1410 FAIRMOUNT ST,GALLOWAY TWP,,1940,1,RES1,3001 -0111_100_5,-74.8172688,39.64831138,604 COUNTY BLVD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1000_1,-74.8928085,39.4999985,301 ELM AVE,GALLOWAY TWP,,1985,1,RES1,3001 -0111_1000_10,-74.89091633,39.5606065,310 CRESSON AVE,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_1000_11.01,-74.488715,39.4590115,308 CRESSON AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_1000_11.02,-74.537667,39.467722,306 CRESSON AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1000_12,-74.52254016,39.38303195,302 CRESSON AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1000_13,-74.52164033,39.42517849,300 CRESSON AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1000_2,-74.378338,39.3971855,303 ELM AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1000_3.01,-74.66303653,39.41711651,305 ELM AVE,GALLOWAY TWP,16,1949,1,RES1,3001 -0111_1000_3.02,-74.54296,39.4764285,304 CRESSON AVE,GALLOWAY TWP,16,1985,1,RES1,3004 -0111_1000_4.01,-74.53514698,39.46060971,307 ELM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1000_4.02,-74.506517,39.4918915,309 ELM AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1000_4.03,-74.38920733,39.38998195,311 ELM AVE,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_1000_5,-74.59308119,39.3492339,313 ELM AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_1000_6,-74.62442,39.6084765,553 S PITNEY RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_1000_7,-74.50314384,39.33955371,549 S PITNEY RD,GALLOWAY TWP,16,1956,1,GOV1,3004 -0111_1000_8,-74.85996988,39.49335468,547 S PITNEY RD,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1000_9,-74.468481,39.3458205,545 S PITNEY RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1001_1.01,-74.56762974,39.38714281,566 S PITNEY RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1001_1.02,-74.55390979,39.39097688,564 S PITNEY RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1001_1.03,-74.60178266,39.50762103,562 S PITNEY RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1001_1.04,-74.825068,39.4967795,560 S PITNEY RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1001_1.05,-74.53567192,39.30518636,558 S PITNEY RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1001_10.01,-74.7331565,39.4928165,551 SEAVIEW AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1001_10.02,-74.67104144,39.56401762,549 SEAVIEW AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1001_10.03,-74.50166962,39.33735076,553 SEAVIEW AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1001_11.01,-74.5028445,39.444364,555 SEAVIEW AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1001_11.02,-74.5060865,39.40570984,557 SEAVIEW AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_1001_12.02,-74.6024535,39.4082585,427 BROOK LN,GALLOWAY TWP,18,2007,1,RES1,3001 -0111_1001_12.03,-74.36673481,39.4198986,423 BROOK LN,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1001_13.02,-74.5062955,39.339502,571 SEAVIEW AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1001_14,-74.6225313,39.38278498,577 SEAVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1001_2.01,-74.57803388,39.34443499,552 S PITNEY RD,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1001_2.02,-74.604314,39.368763,546 S PITNEY RD,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1001_2.03,-74.6324527,39.41521202,404 ELM AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1001_4,-74.60630572,39.38939169,412 ELM AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_1001_5,-74.5712745,39.3705435,414 ELM AVE,GALLOWAY TWP,16,1986,2,RES1,3001 -0111_1001_6.01,-74.52000033,39.40119391,416 ELM AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1001_7.01,-74.44953,39.373727,418 ELM AVE,GALLOWAY TWP,16,1915,1,REL1,3004 -0111_1001_8.01,-74.3595315,39.41168067,420 ELM AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1001_8.02,-74.5519525,39.3774385,428 ELM AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1001_8.03,-74.6092366,39.37381283,430 ELM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1001_8.04,-74.49532376,39.43699833,545 WINDING WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1001_8.05,-74.4820509,39.35003729,547 WINDING WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1001_8.06,-74.49031208,39.42096638,549 WINDING WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1001_8.07,-74.7674075,39.348968,550 WINDING WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1001_8.08,-74.55900823,39.47326857,424 ELM AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1001_9,-74.5411935,39.3850725,547 SEAVIEW AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1002_1,-74.58882097,39.33054367,401 ELM AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1002_10,-74.50903833,39.33680951,413 ELM AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_1002_11,-74.72525062,39.58816198,415 ELM AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_1002_12,-74.46759943,39.49265299,404 CRESSON AVE,GALLOWAY TWP,15,1940,1,COM4,3004 -0111_1002_13.01,-74.52826234,39.40347889,406 CRESSON AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1002_14,-74.62591854,39.42189131,410 CRESSON AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1002_15,-74.498503,39.432758,412 CRESSON AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1002_16,-74.55412553,39.37157692,414 CRESSON AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1002_2,-74.61431289,39.39089514,542 S PITNEY RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1002_3,-74.649954,39.528199,540 S PITNEY RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1002_4,-74.725312,39.4597825,538 S PITNEY RD,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_1002_5,-74.8159255,39.64612,536 S PITNEY RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1002_6,-74.5470805,39.4732495,400 CRESSON AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1002_7.01,-74.55759016,39.47644824,405 ELM AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1002_7.02,-74.82410134,39.61884297,407 ELM AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1002_8,-74.64893524,39.35082015,409 ELM AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1002_9,-74.46086993,39.46170263,411 ELM AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1003_1.01,-74.89078902,39.55772536,417 ELM AVE,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_1003_1.02,-74.60145802,39.34167384,419 ELM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1003_1.03,-74.6840555,39.4422605,421 ELM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1003_1.04,-74.47068092,39.4511503,423 ELM AVE,GALLOWAY TWP,16,1988,1,IND1,3002 -0111_1003_1.05,-74.6408456,39.32304467,425 ELM AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1003_4,-74.571029,39.4127545,535 SEAVIEW AVE,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_1004_1,-74.74531873,39.4454973,532 S PITNEY RD,GALLOWAY TWP,15,1958,1,RES1,3001 -0111_1004_10,-74.509866,39.336338,417 TAMARA DR,GALLOWAY TWP,16,1965,1,RES3A,3002 -0111_1004_11,-74.60853921,39.30629693,413 TAMARA DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1004_12,-74.60797992,39.37716219,411 TAMARA DR,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1004_13.01,-74.50151582,39.50560424,401 TAMARA DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1004_13.02,-74.54088628,39.45708279,407 TAMARA DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1004_14.01,-74.7777975,39.657116,522 S PITNEY RD,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_1004_14.02,-74.60776996,39.43694119,520 S PITNEY RD,GALLOWAY TWP,16,1955,1,GOV1,3004 -0111_1004_14.03,-74.4690335,39.4770705,520A S PITNEY RD,GALLOWAY TWP,15,1987,1,RES1,3001 -0111_1004_15.01,-74.39519617,39.38692751,518 S PITNEY RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1004_15.02,-74.368274,39.413879,516A S PITNEY RD,GALLOWAY TWP,16,1992,1,COM3,3004 -0111_1004_15.03,-74.745649,39.5917125,516 S PITNEY RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1004_16,-74.52238701,39.5241014,512 S PITNEY RD,GALLOWAY TWP,,1982,1,RES1,3001 -0111_1004_17,-74.526415,39.4711255,508 S PITNEY RD,GALLOWAY TWP,16,1958,1,RES1,3004 -0111_1004_18.01,-74.703775,39.639497,506 S PITNEY RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1004_18.02,-74.49791301,39.52596857,504 S PITNEY RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1004_18.03,-74.59902813,39.38118493,502 S PITNEY RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1004_19,-74.82066589,39.56956181,400 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_2,-74.94130329,39.52349957,530 S PITNEY RD,GALLOWAY TWP,15,1950,1,GOV1,3004 -0111_1004_20,-74.50554639,39.4262848,402 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_21,-74.69658548,39.5037624,404 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES3A,3001 -0111_1004_22,-74.58190084,39.33540242,406 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_23,-74.56665734,39.44142289,408 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_24,-74.55470473,39.47089756,410 RIDGEWOOD AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_1004_25,-74.8049495,39.6367255,412 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_26,-74.7735292,39.49595183,414 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_27,-74.51970983,39.32034054,416 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES3A,3001 -0111_1004_28,-74.47536491,39.48064034,418 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_29,-74.39047936,39.39506236,420 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,GOV1,3004 -0111_1004_3,-74.56694358,39.47795092,528 S PITNEY RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_1004_30,-74.48845312,39.43182602,422 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_31,-74.53385732,39.39964799,424 RIDGEWOOD AVE,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_1004_32,-74.65278364,39.44836568,426 RIDGEWOOD AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_1004_33,-74.5020111,39.32803217,503 SEAVIEW AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1004_34.01,-74.6263503,39.35724503,505 SEAVIEW AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_1004_36.01,-74.40666841,39.38154883,513 SEAVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1004_36.02,-74.58947648,39.37664584,513A SEAVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1004_36.03,-74.79374783,39.64319951,515 SEAVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1004_37.01,-74.605437,39.3845785,517 SEAVIEW AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_1004_37.02,-74.37292605,39.40292217,425 WHISPERING LN,GALLOWAY TWP,17,2004,1,RES1,3001 -0111_1004_38.01,-74.607591,39.380011,423 WHISPERING LN,GALLOWAY TWP,17,2004,1,RES1,3001 -0111_1004_38.02,-74.59841987,39.37270922,421 WHISPERING LN,GALLOWAY TWP,17,2004,1,RES1,3001 -0111_1004_38.03,-74.51124967,39.327806,419 WHISPERING LN,GALLOWAY TWP,17,2003,1,RES1,3001 -0111_1004_38.04,-74.63327462,39.34870966,417 WHISPERING LN,GALLOWAY TWP,17,2004,1,RES1,3001 -0111_1004_38.05,-74.6063515,39.504864,415 WHISPERING LN,GALLOWAY TWP,17,2003,1,RES1,3001 -0111_1004_39.01,-74.65385564,39.59920803,424 WHISPERING LN,GALLOWAY TWP,17,2003,1,RES1,3001 -0111_1004_39.02,-74.56753845,39.37332386,422 WHISPERING LN,GALLOWAY TWP,17,2003,1,RES1,3001 -0111_1004_39.03,-74.6252575,39.4146195,420 WHISPERING LN,GALLOWAY TWP,17,2002,1,RES1,3001 -0111_1004_39.04,-74.63937544,39.53200016,418 WHISPERING LN,GALLOWAY TWP,17,2003,1,RES3B,3001 -0111_1004_39.05,-74.80260192,39.6420232,416 WHISPERING LN,GALLOWAY TWP,17,2004,1,RES1,3001 -0111_1004_4,-74.81913777,39.40415479,405 CRESSON AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_1004_40.01,-74.60852335,39.342521,529 SEAVIEW AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1004_40.02,-74.83963296,39.39930263,417 CRESSON AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1004_40.03,-74.51479,39.535696,419 CRESSON AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1004_40.04,-74.58695948,39.33443837,531 SEAVIEW AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1004_42,-74.49140133,39.44654402,421 CRESSON AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1004_44.02,-74.3892257,39.39444881,533 SEAVIEW AVE,GALLOWAY TWP,16,1905,1,GOV1,3004 -0111_1004_5,-74.933921,39.5257455,407 CRESSON AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1004_6,-74.63740401,39.41178086,409 CRESSON AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1004_7,-74.4337855,39.3685515,411 CRESSON AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1004_8.01,-74.587786,39.427369,413 CRESSON AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_1004_8.02,-74.797921,39.636733,415 CRESSON AVE,GALLOWAY TWP,16,1974,1,GOV1,3004 -0111_1004_9.01,-74.4613235,39.355758,400 TAMARA DR,GALLOWAY TWP,16,1998,1,COM4,3004 -0111_1004_9.02,-74.57865698,39.33837946,412 TAMARA DR,GALLOWAY TWP,16,1998,1,RES3A,3001 -0111_1004_9.03,-74.5719849,39.42962926,414 TAMARA DR,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_1004_9.04,-74.509735,39.441663,418 TAMARA DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1004_9.06,-74.50325475,39.40767133,404 TAMARA DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1005.01_1,-74.56384659,39.41508873,600 BISCAYNE AVE,GALLOWAY TWP,15,1966,1,RES1,3001 -0111_1005.01_2,-74.49174457,39.45338481,DAVIS AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_1005.01_3,-74.60974793,39.36800277,703 DAVIS AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1005.01_4,-74.548211,39.3806715,701 DAVIS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1006_1,-74.63484462,39.34931961,604 BISCAYNE AVE,GALLOWAY TWP,16,1965,1,RES3A,3001 -0111_1006_10,-74.52918203,39.45522104,628 BISCAYNE AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1006_14,-74.8802055,39.592707,HAMMELL LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_1006_15,-74.5700877,39.36019857,701 HAMMELL LN,GALLOWAY TWP,16,1976,2,RES1,3001 -0111_1006_19,-74.53925523,39.39524283,704 HAMMELL LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1006_2,-74.60350343,39.30744626,606 BISCAYNE AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1006_22,-74.62729593,39.38063903,702 HAMMELL LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1006_23.01,-74.43808467,39.36782969,637 S NEW YORK RD,GALLOWAY TWP,,1901,2,RES1,3001 -0111_1006_23.02,-74.5918225,39.327549,635 S NEW YORK RD,GALLOWAY TWP,16,1950,3,RES1,3001 -0111_1006_3,-74.577528,39.340762,608 BISCAYNE AVE,GALLOWAY TWP,15,1960,1,RES1,3001 -0111_1006_4.01,-74.46329498,39.35609671,610 BISCAYNE AVE,GALLOWAY TWP,16,1972,1,RES3A,3001 -0111_1006_4.02,-74.50593429,39.45395599,612 BISCAYNE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1006_5.01,-74.8822965,39.463436,614 BISCAYNE AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1006_5.02,-74.6245515,39.3804705,614A BISCAYNE AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1006_5.03,-74.6277795,39.408946,616 BISCAYNE AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1006_7,-74.62927188,39.35080265,622 BISCAYNE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1006_8,-74.50402633,39.40794047,624 BISCAYNE AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1006_9,-74.66299361,39.53884559,626 BISCAYNE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1007.01_45.01,-74.9583355,39.519745,625 S NEW YORK RD,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1007.01_45.02,-74.57161936,39.36689056,504 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1007.01_45.03,-74.9046335,39.498635,506 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1007.01_45.04,-74.806933,39.635325,508 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1007.01_45.05,-74.49040036,39.51795426,510 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1007.01_46,-74.85724339,39.61757931,627 S NEW YORK RD,GALLOWAY TWP,16,1896,1,RES1,3001 -0111_1007.01_47,-74.9317505,39.4826955,629 S NEW YORK RD,GALLOWAY TWP,16,1865,1,RES1,3001 -0111_1007.01_48.01,-74.38876746,39.39580316,641 BISCAYNE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.01_48.02,-74.95490266,39.51640727,639 BISCAYNE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.01_49,-74.58036438,39.34037371,635 BISCAYNE AVE,GALLOWAY TWP,16,2000,2,RES1,3001 -0111_1007.01_50.01,-74.5972567,39.38270565,633 BISCAYNE AVE,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_1007.01_51,-74.71078578,39.47275111,629 BISCAYNE AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1007.01_52,-74.926214,39.5192165,627 BISCAYNE AVE,GALLOWAY TWP,16,1896,3,RES1,3001 -0111_1007.01_53.01,-74.5155475,39.32309683,623 BISCAYNE AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1007.01_53.02,-74.53528884,39.38412303,625 BISCAYNE AVE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1007.01_54,-74.64351966,39.37492381,621 BISCAYNE AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1007.01_56,-74.4955925,39.4342175,617 BISCAYNE AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_1007.01_57,-74.66165876,39.5461213,615 BISCAYNE AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_1007.01_58,-74.505776,39.4476695,613 BISCAYNE AVE,GALLOWAY TWP,16,1946,1,COM4,3004 -0111_1007.01_60,-74.797096,39.632712,609 BISCAYNE AVE,GALLOWAY TWP,16,1933,1,RES1,3001 -0111_1007.01_61,-74.4535974,39.49275429,607 BISCAYNE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_1007.01_62,-74.56918777,39.35465677,605 BISCAYNE AVE,GALLOWAY TWP,16,1959,1,RES3A,3001 -0111_1007.01_63,-74.59545619,39.40585103,603 BISCAYNE AVE,GALLOWAY TWP,15,1943,1,RES1,3001 -0111_1007.01_65.01,-74.67302,39.3596355,HOLLY BROOK RD (OFF),GALLOWAY TWP,,0,1,GOV1,3004 -0111_1007.01_65.02,-74.6173315,39.430518,512 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1007.01_65.03,-74.39116839,39.39139979,514 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1007.01_65.04,-74.582874,39.422175,516 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES3A,3001 -0111_1007.01_65.05,-74.5538505,39.4069035,518 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.01_65.06,-74.46588995,39.34353583,520 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.01_65.07,-74.87561518,39.59450131,522 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.01_65.08,-74.5183565,39.3981045,524 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES3A,3001 -0111_1007.01_65.09,-74.47886413,39.34009881,526 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.01_65.11,-74.85362211,39.3690084,530 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1007.01_65.12,-74.85332056,39.40078666,532 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_65.13,-74.50106934,39.32929141,534 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_65.14,-74.61925614,39.43160982,538 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_65.15,-74.652635,39.6236185,500 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_1007.01_65.16,-74.49106732,39.45685065,502 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.01_65.17,-74.52870783,39.40010991,504 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.01_65.18,-74.5145548,39.4338524,506 HILLTOP DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_65.19,-74.54870875,39.3731374,508 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.01_65.21,-74.72877111,39.59000618,512 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.01_65.22,-74.51222,39.328471,514 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_1007.01_65.23,-74.57427112,39.40003082,516 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.01_65.24,-74.50307815,39.32648191,518 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.01_65.25,-74.5469655,39.375142,558 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_65.26,-74.5135485,39.3273455,560 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_65.27,-74.589537,39.3183485,562 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_65.28,-74.609781,39.3258795,564 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_65.29,-74.6436915,39.39344864,566 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.01_66,-74.9561725,39.511742,507 BISCAYNE AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1007.02_1,-74.58282579,39.42065864,540 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.02_10,-74.49301268,39.33556095,554 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.02_11,-74.57826584,39.40049983,552 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.02_12,-74.5831035,39.474659,550 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_1007.02_13,-74.92644227,39.47982445,548 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1007.02_14,-74.475493,39.485747,546 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_1007.02_15,-74.56725643,39.36665126,544 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.02_16,-74.55216085,39.36610412,542 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_1007.02_2,-74.80717602,39.37993168,503 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_1007.02_3,-74.84649753,39.4603049,505 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.02_4,-74.5305895,39.3904905,507 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.02_5,-74.873026,39.5999375,509 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.02_6,-74.49880526,39.42922343,511 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.02_7,-74.50848189,39.40342777,513 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.02_8,-74.8407821,39.48045444,515 HILLTOP DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1007.02_9,-74.588062,39.313693,556 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_1.01,-74.6004906,39.49709636,502 BROOK LN,GALLOWAY TWP,15,1936,1,RES1,3001 -0111_1007.03_1.02,-74.60443,39.320928,564 SEAVIEW AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_10,-74.68558663,39.35823472,534 BROOK LN,GALLOWAY TWP,16,1996,1,RES1,3004 -0111_1007.03_11,-74.689121,39.3581845,536 BROOK LN,GALLOWAY TWP,16,1974,1,RES1,3004 -0111_1007.03_12.01,-74.59752273,39.31518988,538 BROOK LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1007.03_12.02,-74.382087,39.4166615,538A BROOK LN,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1007.03_13,-74.6067285,39.318343,540 BROOK LN,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1007.03_14,-74.7138305,39.4667855,542 BROOK LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1007.03_15,-74.51102214,39.44129495,544 BROOK LN,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_1007.03_16.01,-74.52726886,39.38474881,546 BROOK LN,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1007.03_16.02,-74.81153131,39.63697562,548 BROOK LN,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1007.03_16.03,-74.5301455,39.4042075,546A BROOK LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1007.03_18.01,-74.60144133,39.32820344,552 BROOK LN,GALLOWAY TWP,15,1938,1,RES1,3001 -0111_1007.03_2.01,-74.94819702,39.51771278,504 BROOK LN,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1007.03_2.02,-74.7558355,39.429541,506 BROOK LN,GALLOWAY TWP,15,1974,1,RES1,3001 -0111_1007.03_2.03,-74.3600045,39.4147825,508 BROOK LN,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1007.03_20.01,-74.79798592,39.62502118,606 PRICE LN,GALLOWAY TWP,15,1916,1,RES1,3001 -0111_1007.03_20.02,-74.93603867,39.52067789,604 PRICE LN,GALLOWAY TWP,15,1931,1,RES1,3001 -0111_1007.03_21,-74.5536675,39.381522,602 PRICE LN,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_1007.03_22,-74.61398852,39.32024866,600 PRICE LN,GALLOWAY TWP,16,1934,1,RES1,3001 -0111_1007.03_23.01,-74.36070508,39.41310489,600 BROOK LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1007.03_23.02,-74.57087668,39.33731801,603 PRICE LN,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1007.03_23.03,-74.60310463,39.32389549,605 PRICE LN,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_1007.03_23.04,-74.49079026,39.44342347,602 BROOK LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1007.03_23.05,-74.7914475,39.65570367,604 BROOK LN,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1007.03_3,-74.4608235,39.4705815,510 BROOK LN,GALLOWAY TWP,15,1911,1,RES1,3001 -0111_1007.03_33.01,-74.60626862,39.34382577,601 S NEW YORK RD,GALLOWAY TWP,16,1890,2,RES1,3001 -0111_1007.03_34.01,-74.57008217,39.34477006,603 S NEW YORK RD,GALLOWAY TWP,16,1860,1,GOV1,3004 -0111_1007.03_34.02,-74.6876742,39.5713003,608 BROOK LN,GALLOWAY TWP,,1980,1,REL1,3002 -0111_1007.03_35,-74.53280706,39.38307985,605 S NEW YORK RD,GALLOWAY TWP,16,1860,1,RES1,3001 -0111_1007.03_36,-74.62131182,39.43102347,609 S NEW YORK RD,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_1007.03_37,-74.81491267,39.64584914,611 S NEW YORK RD,GALLOWAY TWP,16,1850,1,RES1,3001 -0111_1007.03_38,-74.61937951,39.50283183,613 S NEW YORK RD,GALLOWAY TWP,16,1900,1,RES1,3001 -0111_1007.03_39,-74.963527,39.5060255,615 S NEW YORK RD,GALLOWAY TWP,,1900,1,RES1,3001 -0111_1007.03_40,-74.68453272,39.44397181,617 S NEW YORK RD,GALLOWAY TWP,,1975,1,RES1,3001 -0111_1007.03_42,-74.4658045,39.3583705,619 S NEW YORK RD,GALLOWAY TWP,,1886,1,RES1,3001 -0111_1007.03_43,-74.6004345,39.3676685,621 S NEW YORK RD,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_1007.03_65.01,-74.67101037,39.46227627,HOLLY BROOK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1007.03_65.02,-74.4852195,39.4758595,517 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3002 -0111_1007.03_65.03,-74.49435967,39.43490001,519 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.03_65.04,-74.67762917,39.552747,521 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.03_65.05,-74.47201799,39.48227522,523 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.03_65.06,-74.62606396,39.35861616,525 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1007.03_65.07,-74.375837,39.4166875,527 HOLLY BROOK RD,GALLOWAY TWP,16,1985,1,RES3A,3001 -0111_1007.03_65.08,-74.648439,39.514181,529 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.03_65.09,-74.68977684,39.41455666,531 HOLLY BROOK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1007.03_65.11,-74.5747765,39.3471195,535 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,COM4,3004 -0111_1007.03_65.12,-74.49724,39.3320595,537 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,COM4,3004 -0111_1007.03_65.13,-74.8149111,39.44377433,539 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1007.03_65.14,-74.77524414,39.64699613,541 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.15,-74.64428158,39.53083515,543 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.16,-74.529503,39.468982,545 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.17,-74.505264,39.407567,547 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,COM1,3004 -0111_1007.03_65.18,-74.8173045,39.3994635,549 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,AGR1,3004 -0111_1007.03_65.19,-74.44051477,39.35764747,551 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3002 -0111_1007.03_65.21,-74.758486,39.3772675,555 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.22,-74.57647755,39.35275106,557 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.23,-74.5652862,39.36056483,559 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,AGR1,3001 -0111_1007.03_65.24,-74.80384293,39.62983215,561 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.25,-74.78251699,39.63698417,563 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.26,-74.70239389,39.57924405,565 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.27,-74.88830885,39.49913743,567 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3002 -0111_1007.03_65.28,-74.90989626,39.49502361,569 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_65.29,-74.6711605,39.6155275,571 HOLLY BROOK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1007.03_7,-74.60187019,39.40980733,524 BROOK LN,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1007.03_8,-74.48485384,39.34398263,526 BROOK LN,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1007.03_9,-74.50105785,39.43252122,530 BROOK LN,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_101_1,-74.46849509,39.49246972,612 COUNTY BLVD,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_101_6,-74.816463,39.6469915,614 COUNTY BLVD,GALLOWAY TWP,15,2003,1,RES1,3001 -0111_102_7,-74.66723171,39.62027938,624 COUNTY BLVD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1026_1,-74.516207,39.3278275,526 BROWN AVE,GALLOWAY TWP,16,1959,1,COM4,3004 -0111_1026_2,-74.74936159,39.44983032,528 BROWN AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1026_3,-74.43919,39.5165505,530 BROWN AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1026_4,-74.5432795,39.390482,532 BROWN AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1027_2,-74.508602,39.330546,528 DICKINSON AVE,GALLOWAY TWP,16,2011,1,RES1,3001 -0111_1027_3,-74.60684939,39.32864095,530 DICKINSON AVE,GALLOWAY TWP,16,2000,1,RES1,3004 -0111_1027_4,-74.61679818,39.42918753,531 BROWN AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_1027_5,-74.84321343,39.37631232,529 BROWN AVE,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_1027_6,-74.61938514,39.43760559,527 BROWN AVE,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_1027_7,-74.73591866,39.46049345,525 BROWN AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1028_1.01,-74.47480435,39.48708931,525 DICKINSON AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1028_1.02,-74.57672023,39.35174273,529 DICKINSON AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_1028_2,-74.62895225,39.46083607,525 MARSHALL AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_1028_4,-74.52993088,39.40136868,533 DICKINSON AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_103_1,-74.474471,39.492759,632 COUNTY BLVD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_103_12,-74.57316869,39.36019023,1413 W JEFFERSON ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_1035_1.01,-74.688,39.3593705,522 SHARSWOOD AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1035_1.02,-74.36846061,39.40487583,526 SHARSWOOD AVE,GALLOWAY TWP,16,1978,1,COM1,3004 -0111_1035_1.03,-74.8056455,39.375498,528 SHARSWOOD AVE,GALLOWAY TWP,16,1981,1,COM1,3004 -0111_1035_2,-74.60383064,39.38296364,530 SHARSWOOD AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1036_1.01,-74.511187,39.4079275,536 BROWN AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1036_1.02,-74.35955916,39.41017453,527 SHARSWOOD AVE,GALLOWAY TWP,16,1979,1,GOV1,3004 -0111_1036_2,-74.612263,39.418621,538 BROWN AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1036_3,-74.48413471,39.35420054,531 SHARSWOOD AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1036_4,-74.64071406,39.52945183,533 SHARSWOOD AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1036_6,-74.58430466,39.35992246,542 BROWN AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_1037_1,-74.6249108,39.35281312,530 MARSHALL AVE,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_1037_11,-74.956828,39.5034535,535 YALE AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1037_12,-74.60401028,39.35016894,541 BROWN AVE,GALLOWAY TWP,16,2017,1,RES1,3001 -0111_1037_14,-74.8424825,39.403113,535 BROWN AVE,GALLOWAY TWP,16,1963,2,RES1,3001 -0111_1037_4,-74.6324495,39.529707,536 DICKINSON AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1037_7,-74.87205118,39.6036503,542 DICKINSON AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1037_8,-74.6341465,39.4286745,544 DICKINSON AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1038_2,-74.54110533,39.39106695,524 MARSHALL AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1038_4,-74.9279666,39.52298128,542 PENNSYLVANIA AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1038_7.02,-74.540893,39.3807385,525 YALE AVE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1038_9,-74.4892595,39.338598,539 DICKINSON AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_1039_3,-74.4373825,39.370775,539 PENNSYLVANIA AVE,GALLOWAY TWP,16,1949,1,RES1,3001 -0111_1045_2,-74.63475887,39.36016676,600 SHARSWOOD AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1045_3,-74.57200733,39.3499959,602 SHARSWOOD AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_1045_4,-74.44741223,39.37071562,604 SHARSWOOD AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1045_5.01,-74.841755,39.40813,606 SHARSWOOD AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1045_5.04,-74.63779566,39.53583203,608 SHARSWOOD AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1046_10,-74.5878325,39.372759,535 OLD SHORE RD,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1046_2,-74.86449384,39.59180458,601 SHARSWOOD AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1046_3,-74.80901066,39.64145402,603 SHARSWOOD AVE,GALLOWAY TWP,16,1962,1,GOV1,3004 -0111_1046_4,-74.83820264,39.43433221,604 BROWN AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1046_5,-74.37355753,39.3986326,606 BROWN AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1046_6,-74.53734272,39.46232757,605 SHARSWOOD AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1046_7,-74.51004722,39.32817983,607 SHARSWOOD AVE,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_1046_9,-74.60541772,39.32661186,537 OLD SHORE RD,GALLOWAY TWP,16,1945,1,GOV1,3004 -0111_1047_2,-74.6207275,39.3801835,600 DICKINSON AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1047_3,-74.89967921,39.48181058,602 DICKINSON AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1047_5,-74.855657,39.4833485,606 DICKINSON AVE,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_1047_6,-74.42700783,39.36154833,533 OLD SHORE RD,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_1047_7,-74.48080315,39.35064061,607 BROWN AVE,GALLOWAY TWP,16,1933,1,RES1,3001 -0111_1047_8,-74.72548516,39.45636267,605 BROWN AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_1047_9,-74.56702098,39.35230068,603 BROWN AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1048_1,-74.611095,39.3420915,601 DICKINSON AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1048_11,-74.51310716,39.33139452,603 DICKINSON AVE,GALLOWAY TWP,16,1965,2,RES1,3001 -0111_1048_2,-74.36080978,39.41187616,600 PENNSYLVANIA AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1048_3,-74.38068853,39.39559074,604 PENNSYLVANIA AVE,GALLOWAY TWP,16,1997,1,GOV1,3004 -0111_1048_5,-74.66709216,39.39753697,608 PENNSYLVANIA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1048_6,-74.948933,39.5280285,525 OLD SHORE RD,GALLOWAY TWP,16,1951,1,AGR1,3001 -0111_1048_7,-74.42176442,39.36568299,527 OLD SHORE RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1048_9,-74.80381238,39.62501832,607 DICKINSON AVE,GALLOWAY TWP,16,1866,1,RES1,3001 -0111_1057_1,-74.68357242,39.55845906,535 S NEW YORK RD,GALLOWAY TWP,16,1977,1,COM1,3004 -0111_1057_2,-74.36286564,39.41049394,533 S NEW YORK RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1058_1,-74.60336154,39.31581432,529 S NEW YORK RD,GALLOWAY TWP,,1992,1,RES1,3001 -0111_1059_1,-74.799863,39.632124,525 S NEW YORK RD,GALLOWAY TWP,16,1946,4,RES3A,3001 -0111_1063_1,-74.49538105,39.49460735,610 OCEAN AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_1063_2,-74.44570368,39.37500602,614 OCEAN AVE,GALLOWAY TWP,16,1951,2,RES1,3001 -0111_1063_4,-74.519756,39.410299,616 OCEAN AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1063_5,-74.5546674,39.36596278,618 OCEAN AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1064.01_1.01,-74.58183284,39.33834465,500 SEAVIEW AVE,GALLOWAY TWP,16,2001,1,RES3A,3001 -0111_1064.01_1.02,-74.512816,39.4488485,502 SEAVIEW AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1064.01_1.03,-74.6413635,39.5284975,508 SEAVIEW AVE,GALLOWAY TWP,17,1998,1,RES1,3001 -0111_1064.01_1.04,-74.49418633,39.49497751,434 RIDGEWOOD AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1064.01_10.01,-74.3656455,39.4167005,500 FORESTBROOK DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1064.01_10.02,-74.5785222,39.38357433,502 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1064.01_10.03,-74.381092,39.4002175,501 FORESTBROOK DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1064.01_10.04,-74.51083998,39.33760499,505 FORESTBROOK DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1064.01_10.05,-74.53742895,39.30394444,507 FORESTBROOK DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1064.01_10.06,-74.71136432,39.47481037,509 FORESTBROOK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1064.01_10.07,-74.4873675,39.333095,511 FORESTBROOK DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1064.01_10.08,-74.3916625,39.39073867,513 FORESTBROOK DR,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_1064.01_11.01,-74.51169781,39.45699541,552 SEAVIEW AVE,GALLOWAY TWP,16,1978,1,GOV1,3004 -0111_1064.01_11.02,-74.974314,39.5151115,504 FORESTBROOK DR,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_1064.01_11.03,-74.50116614,39.49390967,506 FORESTBROOK DR,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_1064.01_11.04,-74.76362017,39.60993453,508 FORESTBROOK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1064.01_11.05,-74.50613979,39.42496135,515 FORESTBROOK DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1064.01_11.06,-74.6822265,39.3802285,517 FORESTBROOK DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1064.01_11.07,-74.8135,39.400834,519 FORESTBROOK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1064.01_12.01,-74.6839029,39.44485478,501 ARBOR CT,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_1064.01_12.02,-74.80267398,39.63565154,500 ARBOR CT,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_1064.01_12.04,-74.453883,39.4882775,502 ARBOR CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1064.01_12.05,-74.638375,39.4083845,510 FORESTBROOK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1064.01_12.06,-74.61538061,39.32001674,512 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1064.01_12.07,-74.5216095,39.3214615,514 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1064.01_12.08,-74.69062106,39.35507881,516 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,COM4,3004 -0111_1064.01_12.09,-74.81157646,39.65327028,518 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1064.01_12.10,-74.58921434,39.35023724,520 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,COM1,3004 -0111_1064.01_12.11,-74.49224435,39.3309934,522 FORESTBROOK DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1064.01_12.12,-74.7681665,39.662522,521 FORESTBROOK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1064.01_13,-74.434091,39.492917,560 SEAVIEW AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1064.01_14,-74.6005035,39.368643,562 SEAVIEW AVE,GALLOWAY TWP,15,1972,1,RES3A,3001 -0111_1064.01_15,-74.82774369,39.60602521,505 BROOK LN,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1064.01_16,-74.3615585,39.4173755,509 BROOK LN,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1064.01_17,-74.6098219,39.31524114,511 BROOK LN,GALLOWAY TWP,16,1938,1,RES1,3001 -0111_1064.01_18.01,-74.66780565,39.46328824,515 BROOK LN,GALLOWAY TWP,16,1981,2,RES1,3001 -0111_1064.01_18.02,-74.5435395,39.4358515,517 BROOK LN,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1064.01_18.03,-74.54580285,39.37730581,519 BROOK LN,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1064.01_19,-74.65333926,39.45192514,521 BROOK LN,GALLOWAY TWP,16,1931,2,RES1,3001 -0111_1064.01_2.01,-74.62558,39.351374,438 RIDGEWOOD AVE,GALLOWAY TWP,16,2018,1,GOV1,3004 -0111_1064.01_2.02,-74.47023807,39.49158934,442 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3004 -0111_1064.01_2.04,-74.37073,39.403703,444 RIDGEWOOD AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1064.01_20,-74.4487286,39.35473584,523 BROOK LN,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1064.01_21.01,-74.49251365,39.33400206,525 BROOK LN,GALLOWAY TWP,15,1936,1,GOV1,3004 -0111_1064.01_21.02,-74.66555691,39.39472332,527 BROOK LN,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_1064.01_22,-74.53431804,39.45068966,529 BROOK LN,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1064.01_23,-74.6298515,39.3790805,531 BROOK LN,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1064.01_26,-74.4986055,39.336715,533 BROOK LN,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1064.01_27,-74.57918424,39.5297677,537 BROOK LN,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_1064.01_28,-74.4748885,39.4823645,539 BROOK LN,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1064.01_29,-74.57298131,39.36813552,541 BROOK LN,GALLOWAY TWP,15,1963,1,GOV1,3004 -0111_1064.01_30,-74.563437,39.3660115,543 BROOK LN,GALLOWAY TWP,16,1961,1,GOV1,3004 -0111_1064.01_31,-74.51959582,39.46245131,545 BROOK LN,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1064.01_32,-74.799326,39.6374095,547 BROOK LN,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1064.01_33,-74.62565083,39.35941855,549 BROOK LN,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_1064.01_34,-74.48962392,39.43584219,551 BROOK LN,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_1064.01_35,-74.858595,39.561165,553 BROOK LN,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_1064.01_36,-74.57142531,39.36645434,555 BROOK LN,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_1064.01_37.01,-74.635421,39.5146825,549 OLD SHORE RD,GALLOWAY TWP,16,1901,2,GOV1,3004 -0111_1064.01_37.02,-74.50205776,39.52667746,559 BROOK LN,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_1064.01_37.03,-74.7765475,39.597631,561 BROOK LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1064.01_37.04,-74.61194147,39.34680682,563 BROOK LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1064.01_5,-74.7942887,39.60354,446 RIDGEWOOD AVE,GALLOWAY TWP,16,1946,1,COM8,3004 -0111_1064.01_6.01,-74.371392,39.411192,401 S NEW YORK RD,GALLOWAY TWP,,1914,1,RES1,3001 -0111_1064.01_6.02,-74.92631656,39.52573017,528 SEAVIEW AVE,GALLOWAY TWP,16,1966,1,REL1,3004 -0111_1064.01_6.03,-74.8315215,39.4791935,530 SEAVIEW AVE,GALLOWAY TWP,15,1987,1,RES1,3001 -0111_1064.01_6.04,-74.8343405,39.4014905,532 SEAVIEW AVE,GALLOWAY TWP,15,1987,1,GOV1,3004 -0111_1064.01_6.05,-74.71461927,39.58228731,534 SEAVIEW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1064.01_6.06,-74.46241482,39.3550558,JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1064.01_7.01,-74.80771757,39.66155615,540 SEAVIEW AVE,GALLOWAY TWP,18,2005,1,GOV1,3004 -0111_1064.01_7.02,-74.6514127,39.53462281,542 SEAVIEW AVE,GALLOWAY TWP,18,2001,1,GOV1,3004 -0111_1064.01_9.01,-74.558552,39.5269985,544 SEAVIEW AVE,GALLOWAY TWP,17,1996,1,RES1,3001 -0111_1064.01_9.02,-74.6274944,39.43282778,546 SEAVIEW AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1064.02_1,-74.5158675,39.4506915,523 FORESTBROOK DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1064.02_2,-74.65840983,39.52398951,528 FORESTBROOK DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1064.02_3,-74.503909,39.3295735,530 FORESTBROOK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1064.02_4,-74.47244514,39.49414546,532 FORESTBROOK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1064.02_5,-74.62317331,39.37502148,534 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_1064.02_6,-74.5967835,39.309263,529 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,RES1,3004 -0111_1064.02_7,-74.66130283,39.39709355,527 FORESTBROOK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1064.02_8,-74.49135285,39.37946548,525 FORESTBROOK DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1064.03_10,-74.5489635,39.3842885,517 FAIRWAY LN,GALLOWAY TWP,,2000,1,RES1,3001 -0111_1064.03_11,-74.75162632,39.45166294,100 FAIRWAY LN,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1064.03_12,-74.645496,39.380356,600 FAIRWAY LN,GALLOWAY TWP,,2000,1,GOV1,3004 -0111_1064.03_14,-74.63691078,39.53170716,FAIRWAY LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_1064.03_15,-74.73736454,39.44913326,500 FAIRWAY LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_1065_1.01,-74.52450259,39.31732235,414 SEAVIEW AVE,GALLOWAY TWP,17,1990,1,RES1,3001 -0111_1065_1.03,-74.816052,39.406934,516 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1065_11,-74.56408324,39.38810165,447 RIDGEWOOD AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_1065_12.01,-74.4965535,39.3309055,443 RIDGEWOOD AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1065_12.02,-74.457215,39.373585,441 RIDGEWOOD AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1065_13.01,-74.61512621,39.31661106,440 SEAVIEW AVE,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_1065_13.02,-74.56753451,39.36412298,433 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1065_13.03,-74.4671305,39.344524,435 RIDGEWOOD AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1065_13.04,-74.5109145,39.324548,437 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1065_13.05,-74.5835375,39.342969,439 RIDGEWOOD AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1065_14,-74.6028265,39.3149855,436 SEAVIEW AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1065_15,-74.48709138,39.42328244,432 SEAVIEW AVE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1065_16.01,-74.6084665,39.41907233,428 SEAVIEW AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1065_16.02,-74.5533125,39.4702305,502 BRADFORD AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1065_16.03,-74.55277493,39.46973422,504 BRADFORD AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1065_16.04,-74.80767834,39.61136524,506 BRADFORD AVE,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1065_16.05,-74.4592235,39.3510235,508 BRADFORD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1065_17.01,-74.50356702,39.50382284,426 SEAVIEW AVE,GALLOWAY TWP,16,1974,1,COM1,3004 -0111_1065_17.02,-74.60926884,39.48352203,418 SEAVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1065_17.03,-74.50941966,39.478986,503 BRADFORD AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1065_17.04,-74.55174502,39.46543643,505 BRADFORD AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1065_17.05,-74.6853901,39.48999481,507 BRADFORD AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1065_2.01,-74.57743026,39.36540885,518 E JIMMIE LEEDS RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1065_2.02,-74.662099,39.4015365,520 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1065_2.03,-74.649261,39.528739,522 E JIMMIE LEEDS RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1065_2.04,-74.78192104,39.66545648,524 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1065_2.05,-74.4455253,39.37380543,526 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1065_3.01,-74.851024,39.605113,528 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1065_3.02,-74.49727788,39.33737044,530 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1065_4.01,-74.56059477,39.40769742,532 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1065_4.02,-74.82465,39.4746475,534 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1065_6.01,-74.839309,39.5367705,540 E JIMMIE LEEDS RD,GALLOWAY TWP,17,1990,1,RES1,3001 -0111_1065_6.02,-74.880699,39.5918155,542 E JIMMIE LEEDS RD,GALLOWAY TWP,17,1974,1,RES1,3001 -0111_1065_7.01,-74.69826607,39.48819852,544 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1924,1,RES1,3001 -0111_1065_7.02,-74.4728025,39.4829415,546 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1065_9.01,-74.389389,39.3896535,461 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_1065_9.02,-74.6321885,39.429935,459 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1065_9.03,-74.48603132,39.34615955,457 RIDGEWOOD AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1066_1,-74.6844495,39.4145845,539 E JIMMIE LEEDS RD,GALLOWAY TWP,16,2017,1,RES1,3001 -0111_1066_3,-74.48335522,39.34390493,545 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1070_3,-74.925632,39.5075965,561 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_1077_1,-74.61792505,39.61916974,569-571 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_1077_5,-74.50639,39.4048825,573 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_1077_6,-74.74237136,39.41069376,577 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_1082_11.02,-74.921489,39.4777785,587 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_1082_4,-74.6337505,39.357212,579 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1082_5.01,-74.36596345,39.40469233,581 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_109_2,-74.88282133,39.53996451,1403 CROCUS ST,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_110_1,-74.41416661,39.36955651,1406 CROCUS ST,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_110_10,-74.67172463,39.39114115,709 S LIVERPOOL AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_1101_11.02,-74.36691234,39.41546734,MC DEVITT DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1101_12,-74.51210246,39.47001011,626 EZRA BOYCE RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_1101_14,-74.40788767,39.38073751,610 MC DEVITT DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1101_16,-74.595528,39.3519775,618 MC DEVITT DR,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_1101_17,-74.6181325,39.4868825,343 S NEW YORK RD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1101_18,-74.37982276,39.39882129,341 S NEW YORK RD,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_1101_20,-74.47327637,39.34133133,337 S NEW YORK RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1101_4,-74.73750459,39.46886021,622 EZRA BOYCE RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1101_5,-74.9403285,39.5182895,604 MC DEVITT DR,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1103_12,-74.51967806,39.39677932,618 S NEW YORK RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1103_13,-74.46019555,39.47354528,616 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1103_14,-74.86244827,39.59850892,614 S NEW YORK RD,GALLOWAY TWP,,1950,1,GOV1,3004 -0111_1103_16,-74.60450639,39.42764057,606 S NEW YORK RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1103_17,-74.63778607,39.43511535,604 S NEW YORK RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1103_18,-74.8061945,39.6012595,602 S NEW YORK RD,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_1103_2.01,-74.53524566,39.37716148,642 S NEW YORK RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1103_20,-74.773372,39.6654215,702 BROOK LN,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1103_22.01,-74.62807926,39.43428721,716 BROOK LN,GALLOWAY TWP,16,1940,1,GOV1,3004 -0111_1103_22.02,-74.370103,39.410271,718 BROOK LN,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1103_24,-74.62023134,39.37989412,724 BROOK LN,GALLOWAY TWP,16,1996,1,GOV1,3004 -0111_1103_27.01,-74.7274455,39.456982,736 BROOK LN,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_1103_29,-74.59471803,39.34216416,MEADOW,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1103_3,-74.53207399,39.40097916,636 S NEW YORK RD,GALLOWAY TWP,17,1961,1,RES1,3001 -0111_1103_36,-74.562907,39.50275,705 BROOK LN,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_1103_8.02,-74.527301,39.3939265,628 S NEW YORK RD,GALLOWAY TWP,,1993,1,RES1,3001 -0111_1103_9,-74.59822,39.5870395,622-624 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1105_2,-74.67608588,39.38575078,528 S NEW YORK RD,GALLOWAY TWP,16,1930,1,GOV1,3004 -0111_1106_2,-74.6403765,39.4345035,524 S NEW YORK RD,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_1106_3,-74.44702439,39.35084322,704 PENNSYLVANIA AVE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1106_4,-74.522516,39.392786,706 PENNSYLVANIA AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1107_2,-74.63472895,39.35145466,705 PENNSYLVANIA AVE,GALLOWAY TWP,16,1926,1,GOV1,3004 -0111_1107_3,-74.546285,39.3698255,707 PENNSYLVANIA AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1107_4,-74.58721501,39.49471493,LAFAYETTE AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_1107_5,-74.528969,39.3997845,704 CORNELL AVE,GALLOWAY TWP,,1940,1,RES1,3001 -0111_1108_1,-74.53518642,39.30481138,714 BROWN AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1109_5,-74.6039315,39.594436,711 BROWN AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_111_1,-74.505133,39.330851,1406 DAHLIA ST,GALLOWAY TWP,,1946,1,RES1,3001 -0111_111_3,-74.6469328,39.35260049,737 S LIVERPOOL AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1110_2,-74.56208722,39.4155109,710 PENNSYLVANIA AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_1110_4,-74.57661944,39.35627204,714 PENNSYLVANIA AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1111_1,-74.70641946,39.48091284,709 PENNSYLVANIA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1111_3,-74.62955648,39.41836868,706 CORNELL AVE,GALLOWAY TWP,16,1956,1,GOV1,3004 -0111_1111_5,-74.84144375,39.37897223,713 PENNSYLVANIA AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1111_7,-74.79410487,39.6431356,717 PENNSYLVANIA AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1111_8,-74.5361245,39.4585715,712 CORNELL AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1111_9,-74.5154707,39.43173891,719 PENNSYLVANIA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1113_1,-74.57690535,39.36754995,716 PENNSYLVANIA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1113_2.02,-74.49759947,39.33330883,718 PENNSYLVANIA AVE,GALLOWAY TWP,47,1981,2,RES1,3001 -0111_1113_2.03,-74.735356,39.6285375,720 PENNSYLVANIA AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1113_2.04,-74.53625882,39.47221566,722 PENNSYLVANIA AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_1114_1,-74.52133884,39.31953052,721 PENNSYLVANIA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1114_2,-74.61181115,39.32683037,723 PENNSYLVANIA AVE,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_1114_5.01,-74.79522124,39.61105569,727 PENNSYLVANIA AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_112_1,-74.63520566,39.51435149,1408 BROAD ST,GALLOWAY TWP,15,1956,1,RES1,3001 -0111_112_14.02,-74.59857946,39.31717618,509 S PHILADELPHIA AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_112_6,-74.7953315,39.598622,503 S PHILADELPHIA AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_113_2,-74.88400171,39.56721704,1404 CLEVELAND ST,GALLOWAY TWP,15,1949,1,RES1,3001 -0111_113_4,-74.59637962,39.37875295,1402 CLEVELAND ST,GALLOWAY TWP,,1965,1,RES1,3001 -0111_113_7,-74.48762768,39.34856311,1405 DEKALB ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_113_8,-74.52153733,39.3961014,1403 DEKALB ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.01_1,-74.878172,39.5949995,700 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.01_10,-74.60625921,39.31091596,718 VILLAGE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.01_11,-74.8680825,39.491667,720 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.01_12,-74.4937583,39.34043653,722 VILLAGE DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1136.01_13,-74.61508796,39.50838892,724 VILLAGE DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1136.01_14,-74.54885316,39.525449,726 VILLAGE DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1136.01_15,-74.5263935,39.313032,728 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.01_2,-74.61403635,39.47667667,702 VILLAGE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1136.01_3,-74.7259079,39.44979176,704 VILLAGE DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1136.01_4,-74.69478546,39.58045004,706 VILLAGE DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1136.01_5,-74.36983573,39.41099706,708 VILLAGE DR,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_1136.01_6,-74.88145735,39.49732901,710 VILLAGE DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1136.01_7,-74.683069,39.5551745,712 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.01_8,-74.5489945,39.4676025,714 VILLAGE DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1136.01_9,-74.64467838,39.43516844,716 VILLAGE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.02_1,-74.848372,39.4047265,704 CHIP SHOT LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.02_2,-74.55550004,39.39617984,702 CHIP SHOT LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.02_3,-74.55256535,39.37519046,705 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.02_4,-74.80359072,39.63157853,706 CHIP SHOT LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.02_5,-74.60350706,39.40785271,708 CHIP SHOT LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.02_6,-74.70752163,39.47398584,710 CHIP SHOT LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_1,-74.8351235,39.534567,VILLAGE DR (OFF),GALLOWAY TWP,,0,1,RES1,3001 -0111_1136.03_10,-74.65188547,39.53195266,744 VILLAGE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1136.03_11,-74.51217808,39.41769304,746 VILLAGE DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1136.03_12,-74.702445,39.5767605,748 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_13,-74.4803308,39.35118136,747 VILLAGE DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1136.03_14,-74.553295,39.476585,745 VILLAGE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1136.03_15,-74.5880459,39.31761418,743 VILLAGE DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1136.03_16,-74.55681883,39.46665184,741 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_17,-74.51563,39.388103,739 VILLAGE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1136.03_18,-74.91566,39.529306,737 VILLAGE DR,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_1136.03_19,-74.42542929,39.3636287,735 VILLAGE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1136.03_2,-74.38199727,39.4178308,730 VILLAGE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_20,-74.8461182,39.48202939,733 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_21,-74.57141602,39.35021859,731 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_22,-74.55169386,39.39328062,729 VILLAGE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_23,-74.492367,39.418238,727 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_24,-74.4953975,39.33356,725 VILLAGE DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1136.03_25,-74.69391348,39.44944124,723 VILLAGE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_26,-74.60614417,39.50241033,721 VILLAGE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_27,-74.51267733,39.48482302,727 CHIP SHOT LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1136.03_28,-74.4950105,39.523951,725 CHIP SHOT LN,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1136.03_29,-74.56781348,39.41366579,723 CHIP SHOT LN,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1136.03_3,-74.84385067,39.53872465,732 VILLAGE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_30,-74.7162345,39.3690395,721 CHIP SHOT LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_31,-74.51979798,39.40226432,719 CHIP SHOT LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_32,-74.554048,39.477583,717 CHIP SHOT LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_33,-74.950481,39.5351715,715 CHIP SHOT LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_34,-74.60176152,39.32848916,713 CHIP SHOT LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_35,-74.64788479,39.40663915,711 CHIP SHOT LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1136.03_36,-74.4852485,39.3362355,709 CHIP SHOT LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_37,-74.5974515,39.3298645,707 CHIP SHOT LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_38,-74.4744813,39.49415067,705 CHIP SHOT LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_39,-74.44956245,39.35603685,703 CHIP SHOT LN,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1136.03_4,-74.71675032,39.44942849,734 VILLAGE DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1136.03_40,-74.462067,39.3485995,701 CHIP SHOT LN,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1136.03_6,-74.63362457,39.41570022,736 VILLAGE DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1136.03_7,-74.65172902,39.4580515,738 VILLAGE DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1136.03_8,-74.48817015,39.33679115,740 VILLAGE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1136.03_9,-74.52520832,39.39599348,742 VILLAGE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1137_1,-74.440729,39.37332776,700-704 BELMAR AVE,GALLOWAY TWP,16,1926,6,RES1,3001 -0111_1137_2,-74.8381315,39.4539725,707 CORDERY AVE,GALLOWAY TWP,16,1933,1,GOV1,3004 -0111_1137_5,-74.516139,39.325581,709 CORDERY AVE,GALLOWAY TWP,16,1933,1,RES1,3001 -0111_1137_6,-74.59103088,39.36628118,708 BELMAR AVE,GALLOWAY TWP,16,1928,1,RES3A,3001 -0111_1137_8,-74.8087875,39.62892,712 BELMAR AVE,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_1138_1.01,-74.49495907,39.43573301,506 S NEW YORK RD,GALLOWAY TWP,,1921,1,GOV1,3004 -0111_1138_1.02,-74.52817601,39.39788766,702 OCEAN AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1138_2.02,-74.50396453,39.40864139,703 BELMAR AVE,GALLOWAY TWP,16,1904,1,RES1,3001 -0111_1138_3,-74.68055182,39.44354948,707 BELMAR AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1138_5,-74.648855,39.431487,706 OCEAN AVE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1139_6,-74.60468,39.370655,704 BARTLETT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_1139_7,-74.5082725,39.4617925,500 S NEW YORK RD,GALLOWAY TWP,,1925,1,RES1,3001 -0111_1140_1,-74.56441493,39.42121284,716 BELMAR AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1140_2,-74.5994255,39.3151795,717 CORDERY AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1140_3,-74.4046185,39.3798345,718 BELMAR AVE,GALLOWAY TWP,15,1950,1,GOV1,3004 -0111_1140_4,-74.8221777,39.5333329,719 CORDERY AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1140_5.01,-74.61126551,39.32790067,721 CORDERY AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1140_5.02,-74.49622376,39.53069531,720 BELMAR AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_1140_7,-74.80557734,39.64515595,725 CORDERY AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1140_8,-74.4794095,39.4426405,722 BELMAR AVE,GALLOWAY TWP,16,2005,1,COM1,3004 -0111_1141_1,-74.51858808,39.31796567,711 BELMAR AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1141_2,-74.67095763,39.34912311,708 OCEAN AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_1141_3,-74.366162,39.409795,710 OCEAN AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_1141_4,-74.50577715,39.43907012,713 BELMAR AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1141_5,-74.5861635,39.3239205,715 BELMAR AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1141_6,-74.42983999,39.37303969,712 OCEAN AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_1141_7,-74.4846405,39.3353955,714 OCEAN AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1141_8,-74.547755,39.4726355,719 BELMAR AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1142_2,-74.59223517,39.31610833,713 OCEAN AVE,GALLOWAY TWP,16,1912,1,RES1,3001 -0111_1142_3,-74.56586661,39.36171917,715 OCEAN AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1143_1,-74.62750667,39.39077175,510 WASHINGTON AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1143_3,-74.54311565,39.38854504,730 BELMAR AVE,GALLOWAY TWP,16,1900,1,RES1,3001 -0111_1143_5,-74.42922231,39.36709955,734 BELMAR AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_1144_1,-74.50923571,39.44767616,504 WASHINGTON AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1144_3.01,-74.63721378,39.41217969,723 BELMAR AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_1144_3.02,-74.56799986,39.36349824,725 BELMAR AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1144_3.03,-74.50904,39.41945,724 OCEAN AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1144_5,-74.6050995,39.308128,729 BELMAR AVE,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_1145_3,-74.7968635,39.6520195,722 BARTLETT AVE,GALLOWAY TWP,16,1941,2,RES1,3001 -0111_1145_4,-74.75277785,39.41687878,721 OCEAN AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1145_5,-74.56304414,39.36017685,726 BARTLETT AVE,GALLOWAY TWP,,1996,1,RES1,3001 -0111_115_1,-74.36337323,39.4153141,563 S PHILADELPHIA AVE,GALLOWAY TWP,,1948,1,RES1,3001 -0111_116_3,-74.55903395,39.36428035,1404 FAIRMOUNT ST,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_116_4,-74.63232498,39.34817717,1402 FAIRMOUNT ST,GALLOWAY TWP,,1956,1,RES1,3001 -0111_116_5,-74.59732766,39.37318341,601 S PHILADELPHIA AVE,GALLOWAY TWP,,1974,1,RES1,3001 -0111_1164_1.01,-74.57899398,39.34320118,408 E JIMMIE LEEDS RD,GALLOWAY TWP,,1986,1,RES1,3001 -0111_1164_1.02,-74.61720271,39.36200698,410 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1164_1.05,-74.5826085,39.40274,330 S PITNEY RD,GALLOWAY TWP,,2001,1,RES1,3001 -0111_1164_10.01,-74.9253735,39.505503,401 STOCKBRIDGE CT,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1164_10.02,-74.9279334,39.51324627,403 STOCKBRIDGE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1164_10.03,-74.734145,39.432423,405 STOCKBRIDGE CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1164_10.04,-74.6087725,39.3760115,407 STOCKBRIDGE CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1164_10.05,-74.5751925,39.339086,409 STOCKBRIDGE CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1164_10.06,-74.790235,39.6356865,411 STOCKBRIDGE CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1164_10.07,-74.566886,39.4798,413 STOCKBRIDGE CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1164_10.08,-74.6196195,39.419826,415 STOCKBRIDGE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1164_11.01,-74.5512095,39.380296,400 STOCKBRIDGE CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1164_11.02,-74.54165335,39.37591592,402 STOCKBRIDGE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1164_11.03,-74.69992228,39.5714081,404 STOCKBRIDGE CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1164_11.04,-74.80325012,39.64274083,406 STOCKBRIDGE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1164_11.05,-74.76098531,39.34665947,408 STOCKBRIDGE CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1164_11.06,-74.606333,39.376657,410 STOCKBRIDGE CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1164_11.07,-74.49153851,39.52616616,412 STOCKBRIDGE CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1164_11.08,-74.88478056,39.59656134,414 STOCKBRIDGE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1164_12,-74.482171,39.3405335,401 SEAVIEW AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1164_13,-74.54368953,39.53177705,403 SEAVIEW AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1164_14,-74.63926567,39.43571442,409 SEAVIEW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1164_15,-74.58492731,39.32235369,413 SEAVIEW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1164_16,-74.51626671,39.44608567,417 SEAVIEW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1164_17,-74.61976383,39.52433583,346 S PITNEY RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1164_18,-74.567097,39.476992,348 S PITNEY RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_19,-74.67002587,39.51415494,350 S PITNEY RD,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_1164_2,-74.45693524,39.34968333,336 S PITNEY RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1164_20,-74.370422,39.418255,405 ANTHONY LN,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1164_21,-74.79240367,39.4162575,407 ANTHONY LN,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_1164_22,-74.58539119,39.41457359,409 ANTHONY LN,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1164_23,-74.55331733,39.36349099,400 S PITNEY RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1164_24,-74.514364,39.3296845,402 ANTHONY LN,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1164_25,-74.37220694,39.40315783,404 ANTHONY LN,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1164_26,-74.83516627,39.61060481,406 ANTHONY LN,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1164_27.01,-74.49870095,39.49772413,402 S PITNEY RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1164_27.02,-74.37094751,39.40328167,404 S PITNEY RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1164_28,-74.594427,39.312927,406 S PITNEY RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_1164_29.01,-74.63652576,39.36197455,410 S PITNEY RD,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1164_29.02,-74.3727355,39.4100315,412 S PITNEY RD,GALLOWAY TWP,15,1965,1,RES1,3001 -0111_1164_29.03,-74.47932039,39.47956518,414 S PITNEY RD,GALLOWAY TWP,15,1916,1,GOV1,3004 -0111_1164_3,-74.5094666,39.45923696,340 S PITNEY RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_1164_30,-74.603962,39.3254645,416 S PITNEY RD,GALLOWAY TWP,17,2007,1,RES1,3001 -0111_1164_31,-74.69999883,39.64980064,418 S PITNEY RD,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_1164_32,-74.49741369,39.44142931,420 S PITNEY RD,GALLOWAY TWP,16,1904,2,RES1,3001 -0111_1164_33.01,-74.81828279,39.36078383,422 S PITNEY RD,GALLOWAY TWP,16,1951,1,COM1,3004 -0111_1164_33.02,-74.45880306,39.48906677,422A S PITNEY RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1164_33.03,-74.58769891,39.48740418,424 S PITNEY RD,GALLOWAY TWP,17,2001,1,RES1,3001 -0111_1164_33.04,-74.59221772,39.35109233,424A S PITNEY RD,GALLOWAY TWP,,1999,1,RES1,3001 -0111_1164_34.01,-74.49431367,39.3403275,426 S PITNEY RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1164_34.02,-74.3681525,39.414535,428 S PITNEY RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_34.03,-74.36732226,39.41614841,430 S PITNEY RD,GALLOWAY TWP,15,1930,1,RES1,3001 -0111_1164_35,-74.79290918,39.67516794,432 S PITNEY RD,GALLOWAY TWP,16,1929,1,RES1,3001 -0111_1164_36.01,-74.63291429,39.45951094,405 RIDGEWOOD AVE,GALLOWAY TWP,15,1989,1,RES1,3001 -0111_1164_36.02,-74.5915095,39.332879,413 RIDGEWOOD AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1164_36.03,-74.72307881,39.45911243,415 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1164_36.04,-74.49846394,39.33341484,434 S PITNEY RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1164_36.05,-74.65887683,39.53625493,411 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1164_36.06,-74.59688562,39.37830236,407 RIDGEWOOD AVE,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_1164_36.07,-74.5294554,39.4490873,409 RIDGEWOOD AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1164_37.01,-74.56598213,39.36741065,509 SUMMERWOOD PL,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1164_37.02,-74.56687766,39.47874624,507 SUMMERWOOD PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1164_37.03,-74.776153,39.6097445,505 SUMMERWOOD PL,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1164_37.04,-74.55606621,39.38261479,503 SUMMERWOOD PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1164_37.05,-74.57070487,39.41275971,501 SUMMERWOOD PL,GALLOWAY TWP,16,1984,1,COM3,3004 -0111_1164_37.06,-74.57581205,39.41720425,500 SUMMERWOOD PL,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1164_37.07,-74.8317385,39.373284,502 SUMMERWOOD PL,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1164_37.08,-74.66826306,39.50983932,504 SUMMERWOOD PL,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1164_37.09,-74.551565,39.383589,506 SUMMERWOOD PL,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1164_38.01,-74.47219191,39.34277998,419 SEAVIEW AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1164_38.02,-74.46329,39.4658245,510 SUMMERWOOD PL,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_39.01,-74.59077334,39.35622733,421 SEAVIEW AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_39.02,-74.5849375,39.3239755,421A SEAVIEW AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_39.03,-74.895461,39.473396,423 SEAVIEW AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_4,-74.6514505,39.3558315,342 S PITNEY RD,GALLOWAY TWP,17,1985,2,RES1,3001 -0111_1164_40.01,-74.61927004,39.62065773,425 SEAVIEW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1164_40.02,-74.6867095,39.653498,425A SEAVIEW AVE,GALLOWAY TWP,16,1993,1,RES1,3004 -0111_1164_40.03,-74.566743,39.359582,427 SEAVIEW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1164_41.01,-74.3736774,39.39874482,429 SEAVIEW AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1164_41.02,-74.6015815,39.434281,431 SEAVIEW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1164_43.01,-74.80931491,39.63377109,425 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1164_43.02,-74.62537683,39.36356537,417 RIDGEWOOD AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1164_43.03,-74.47887853,39.34945205,419 RIDGEWOOD AVE,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_1164_43.04,-74.756192,39.448058,421 RIDGEWOOD AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1164_43.05,-74.79414382,39.60062482,423 RIDGEWOOD AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1164_5,-74.94631228,39.52524585,414 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1936,2,RES1,3001 -0111_1164_6,-74.58917214,39.32729552,418 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_1164_8.01,-74.9376965,39.519482,401 BREAKER DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1164_8.02,-74.799278,39.6364295,403 BREAKER DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_8.03,-74.51307546,39.32973183,405 BREAKER DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_8.04,-74.64022559,39.36913076,407 BREAKER DR,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1164_8.05,-74.5100625,39.4133885,409 BREAKER DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1164_8.06,-74.51151663,39.43412116,410 BREAKER DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1164_9.01,-74.574716,39.354846,400 BREAKER DR,GALLOWAY TWP,16,1988,1,COM4,3004 -0111_1164_9.02,-74.86015711,39.47947076,402 BREAKER DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1164_9.03,-74.83425591,39.59162966,404 BREAKER DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_9.04,-74.616703,39.3834695,406 BREAKER DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1164_9.05,-74.517186,39.5344535,408 BREAKER DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1165_1.01,-74.51015681,39.45670461,300 S PITNEY RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1165_1.02,-74.6093285,39.593587,412 HIGHLANDS AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1165_1.03,-74.40391923,39.3816585,414 HIGHLANDS AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1165_1.04,-74.67882486,39.44609404,404 HIGHLANDS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1165_1.05,-74.85893945,39.61966433,406 HIGHLANDS AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1165_10,-74.5302915,39.40071,531 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1165_11.01,-74.6281224,39.43415633,319 SEAVIEW AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1165_11.02,-74.5934135,39.3509015,317 SEAVIEW AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_1165_12.01,-74.79256848,39.64598184,506 BERGEN CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.02,-74.61662683,39.3840495,504 BERGEN CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.03,-74.51829026,39.40841634,502 BERGEN CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.04,-74.51278236,39.32263847,500 BERGEN CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1165_12.05,-74.88353351,39.46385985,501 BERGEN CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.06,-74.51519559,39.44076085,503 BERGEN CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1165_12.07,-74.53616856,39.38524385,505 BERGEN CT,GALLOWAY TWP,16,1980,1,RES1,3002 -0111_1165_12.08,-74.567639,39.47737,507 BERGEN CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.09,-74.86670042,39.43370745,506 OSLO CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.10,-74.4837025,39.3352075,504 OSLO CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.11,-74.648992,39.5761155,502 OSLO CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.12,-74.79472585,39.64465553,500 OSLO CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1165_12.13,-74.57439427,39.55453216,501 OSLO CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.14,-74.48527499,39.34520433,503 OSLO CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.15,-74.59274934,39.36580483,505 OSLO CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1165_12.16,-74.469059,39.3456385,507 OSLO CT,GALLOWAY TWP,,2018,1,RES1,3001 -0111_1165_13,-74.500324,39.4307175,534 HIGHLANDS AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_1165_14.01,-74.4530935,39.3744845,532 HIGHLANDS AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_1165_14.02,-74.651026,39.5272095,306 AUDUBON CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1165_14.03,-74.7287735,39.4583135,308 AUDUBON CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1165_15.01,-74.8406018,39.4869211,528 HIGHLANDS AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_1165_15.02,-74.53568591,39.30459558,303 AUDUBON CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1165_15.03,-74.56313238,39.40965763,305 AUDUBON CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1165_15.04,-74.596142,39.3121215,307 AUDUBON CT,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1165_15.05,-74.48470398,39.43666033,309 AUDUBON CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1165_16.01,-74.5789355,39.430222,516 HIGHLANDS AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_1165_16.02,-74.4850795,39.348725,526 HIGHLANDS AVE,GALLOWAY TWP,16,1979,1,GOV1,3004 -0111_1165_16.03,-74.59074412,39.38071544,520 HIGHLANDS AVE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1165_16.04,-74.753495,39.431393,518 HIGHLANDS AVE,GALLOWAY TWP,16,1977,1,GOV1,3004 -0111_1165_17.01,-74.58284792,39.40856483,514 HIGHLANDS AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1165_17.02,-74.5233797,39.39396635,510A HIGHLANDS AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1165_17.03,-74.72504726,39.46026489,512 HIGHLANDS AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1165_17.04,-74.42244774,39.37237666,510 HIGHLANDS AVE,GALLOWAY TWP,16,2016,1,RES1,3001 -0111_1165_17.05,-74.38007677,39.39829084,506A HIGHLANDS AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1165_17.06,-74.5880868,39.37776847,506 HIGHLANDS AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1165_17.08,-74.3731267,39.41275919,508 HIGHLANDS AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1165_2,-74.8426433,39.58978661,304 S PITNEY RD,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_1165_3.01,-74.63529394,39.36358866,308 S PITNEY RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1165_3.02,-74.52062699,39.39082534,308A S PITNEY RD,GALLOWAY TWP,,1994,1,RES1,3001 -0111_1165_5.01,-74.422486,39.3677475,316 S PITNEY RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1165_5.02,-74.50481613,39.44285119,314 S PITNEY RD,GALLOWAY TWP,16,1922,1,RES1,3001 -0111_1165_5.03,-74.7542245,39.4296655,312 S PITNEY RD,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1165_6.01,-74.5605535,39.37424517,407 E JIMMIE LEEDS RD,GALLOWAY TWP,,1982,1,GOV1,3004 -0111_1165_6.02,-74.55062403,39.38290869,324 S PITNEY RD,GALLOWAY TWP,,1998,1,RES1,3001 -0111_1165_6.04,-74.3739345,39.418014,322 S PITNEY RD,GALLOWAY TWP,,1994,1,RES1,3001 -0111_1165_6.06,-74.3792815,39.416181,318 S PITNEY RD,GALLOWAY TWP,,1988,1,RES1,3001 -0111_1165_7,-74.57289709,39.37287288,501 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1165_8.01,-74.46091052,39.45412683,301 NEW LEAF CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1165_8.02,-74.68143237,39.38691383,303 NEW LEAF CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1165_8.03,-74.535103,39.4522955,305 NEW LEAF CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1165_8.04,-74.9069495,39.480814,307 NEW LEAF CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1165_8.05,-74.587693,39.3516595,309 NEW LEAF CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1165_8.06,-74.5680805,39.3500275,310 NEW LEAF CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1165_8.07,-74.666359,39.4618035,308 NEW LEAF CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1165_8.08,-74.5160575,39.3304745,306 NEW LEAF CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1165_8.09,-74.576786,39.3382465,304 NEW LEAF CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1165_8.11,-74.51795017,39.320683,300 NEW LEAF CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1165_9,-74.5093985,39.3328025,527 E JIMMIE LEEDS RD,GALLOWAY TWP,15,1955,2,RES1,3001 -0111_1166.01_1,-74.49981343,39.43367985,400 DENNIS DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1166.01_10,-74.52959218,39.38654603,220 S PITNEY RD,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_1166.01_11,-74.495611,39.4654445,222 S PITNEY RD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1166.01_12.01,-74.52639471,39.38531143,224 S PITNEY RD,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1166.01_12.02,-74.43557143,39.35995579,403 HIGHLANDS AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1166.01_12.03,-74.64718323,39.54951869,405 HIGHLANDS AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1166.01_12.04,-74.5671575,39.491886,407 HIGHLANDS AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1166.01_12.05,-74.50267116,39.33028703,409 HIGHLANDS AVE,GALLOWAY TWP,16,1985,1,COM1,3004 -0111_1166.01_12.06,-74.65058945,39.62725954,411 HIGHLANDS AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1166.01_13.01,-74.5103185,39.4061875,417 HIGHLANDS AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.01_13.02,-74.60885345,39.32328101,235 SYLVAN AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_1166.01_13.03,-74.46531,39.3431595,233 SYLVAN AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1166.01_13.04,-74.76909252,39.30071023,231 SYLVAN AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1166.01_13.05,-74.92506944,39.50834483,229 SYLVAN AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1166.01_13.06,-74.37584705,39.39997046,227 SYLVAN AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1166.01_13.07,-74.597109,39.431095,225 SYLVAN AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1166.01_13.08,-74.528235,39.394295,223 SYLVAN AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1166.01_14,-74.81629082,39.40945393,416 DENNIS DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1166.01_15,-74.58175837,39.47436906,418 DENNIS DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1166.01_16,-74.79976623,39.62761397,DENNIS DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1166.01_2,-74.57636909,39.38119084,402 DENNIS DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1166.01_3,-74.53780979,39.46711286,404 DENNIS DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.01_4,-74.606666,39.322904,406 DENNIS DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.01_5,-74.589753,39.376123,408 DENNIS DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.01_6,-74.61229792,39.39042985,410 DENNIS DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.01_7,-74.44670879,39.35865026,412 DENNIS DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.01_8.01,-74.80265414,39.63233112,414 DENNIS DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1166.01_8.02,-74.51867398,39.31843233,217 SYLVAN AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_1166.01_8.03,-74.7897615,39.638255,221 SYLVAN AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1166.01_8.04,-74.57485651,39.36281484,420 DENNIS DR,GALLOWAY TWP,,2002,1,RES1,3001 -0111_1166.01_9,-74.81224929,39.35480856,218 S PITNEY RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1166.02_1,-74.58471029,39.32855364,200 S PITNEY RD,GALLOWAY TWP,,1955,1,RES1,3001 -0111_1166.02_10,-74.807508,39.433408,405 DENNIS DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1166.02_11,-74.59957384,39.36445829,407 DENNIS DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.02_12,-74.73734,39.449287,409 DENNIS DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.02_13,-74.6927781,39.62931172,411 DENNIS DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1166.02_14,-74.5405354,39.4667655,413 DENNIS DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1166.02_15,-74.50904703,39.43839002,415 DENNIS DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1166.02_16,-74.50380399,39.40762704,417 DENNIS DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1166.02_17,-74.602122,39.4361505,419 DENNIS DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1166.02_18,-74.55807818,39.39671915,421 DENNIS DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1166.02_19,-74.51675613,39.4125132,423 DENNIS DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1166.02_2.02,-74.47228096,39.34418217,402 GREAT CREEK RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1166.02_20,-74.56115009,39.41452472,425 DENNIS DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1166.02_21,-74.76450194,39.34988272,DENNIS DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1166.02_3,-74.510837,39.3299345,404 GREAT CREEK RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_1166.02_4,-74.954044,39.5199175,406 GREAT CREEK RD,GALLOWAY TWP,15,1959,1,RES3A,3001 -0111_1166.02_5,-74.8559905,39.5678055,408 GREAT CREEK RD,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1166.02_6,-74.47889,39.47972026,410 GREAT CREEK RD,GALLOWAY TWP,15,1925,1,RES1,3001 -0111_1166.02_7.01,-74.581751,39.32818779,422 GREAT CREEK RD,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1166.02_7.02,-74.518009,39.445737,201 SYLVAN AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1166.02_7.03,-74.6147245,39.3396775,211 SYLVAN AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1166.02_7.04,-74.509777,39.4003175,209 SYLVAN AVE,GALLOWAY TWP,16,1988,2,RES1,3001 -0111_1166.02_7.05,-74.50579019,39.41395905,416 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1166.02_7.06,-74.6869125,39.5579335,414 GREAT CREEK RD,GALLOWAY TWP,16,1992,1,COM1,3004 -0111_1166.02_7.07,-74.588341,39.3294405,412 GREAT CREEK RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1166.02_7.08,-74.55187666,39.47956398,205 SYLVAN AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1166.02_7.09,-74.391517,39.39201114,418 GREAT CREEK RD,GALLOWAY TWP,17,2002,1,RES4,3001 -0111_1166.02_8,-74.50089497,39.51366005,401 DENNIS DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1166.02_9,-74.496845,39.3337625,403 DENNIS DR,GALLOWAY TWP,16,1982,1,IND1,3004 -0111_1167.01_1.01,-74.42467069,39.37058892,500 GREAT CREEK RD,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1167.01_1.02,-74.6490985,39.4004755,504 GREAT CREEK RD,GALLOWAY TWP,17,1995,1,RES1,3001 -0111_1167.01_1.03,-74.63953857,39.5336984,206 SYLVAN AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1167.01_1.04,-74.7978171,39.63104716,508 GREAT CREEK RD,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1167.01_1.05,-74.40191663,39.38585823,512 GREAT CREEK RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1167.01_1.06,-74.815694,39.6259165,202 SYLVAN AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1167.01_1.07,-74.50313552,39.47471579,204 SYLVAN AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1167.01_1.08,-74.5418835,39.3908565,208 SYLVAN AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1167.01_1.09,-74.444702,39.3601375,210 SYLVAN AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1167.01_10.03,-74.43797653,39.36914568,610 GREAT CREEK RD,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_1167.01_10.04,-74.58451739,39.4439228,620 GREAT CREEK RD,GALLOWAY TWP,50,1951,1,RES1,3001 -0111_1167.01_10.05,-74.759023,39.4457065,211 S NEW YORK RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1167.01_10.06,-74.37525769,39.41647837,205 S NEW YORK RD,GALLOWAY TWP,16,1835,1,RES1,3001 -0111_1167.01_10.08,-74.6637685,39.399803,602 GREAT CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1167.01_10.09,-74.531285,39.3902795,614 GREAT CREEK RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_1167.01_10.10,-74.56371673,39.41720195,618 GREAT CREEK RD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1167.01_11,-74.91409485,39.50947438,223 S NEW YORK RD,GALLOWAY TWP,15,1906,1,RES1,3001 -0111_1167.01_12,-74.5691662,39.41686384,227 S NEW YORK RD,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_1167.01_13,-74.51122053,39.40238732,231 S NEW YORK RD,GALLOWAY TWP,16,1903,1,RES1,3001 -0111_1167.01_14,-74.498142,39.3372255,233 S NEW YORK RD,GALLOWAY TWP,45,1885,2,RES1,3001 -0111_1167.01_16,-74.49413716,39.33547751,237 S NEW YORK RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1167.01_18,-74.4815435,39.34615,241 S NEW YORK RD,GALLOWAY TWP,,1925,1,COM8,3004 -0111_1167.01_19,-74.6513753,39.40946209,243 S NEW YORK RD,GALLOWAY TWP,16,1946,2,RES1,3001 -0111_1167.01_2.01,-74.798621,39.6354575,212 SYLVAN AVE,GALLOWAY TWP,16,1997,1,COM3,3004 -0111_1167.01_2.02,-74.52254495,39.44339759,214 SYLVAN AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1167.01_20.02,-74.3669975,39.405766,259 S NEW YORK RD,GALLOWAY TWP,,1920,1,RES1,3002 -0111_1167.01_21.01,-74.6053587,39.40732206,245 S NEW YORK RD,GALLOWAY TWP,16,1835,1,RES1,3001 -0111_1167.01_21.02,-74.49694834,39.5192019,247 S NEW YORK RD,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_1167.01_22,-74.4957365,39.493918,249 S NEW YORK RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1167.01_23,-74.9260986,39.48267016,251 S NEW YORK RD,GALLOWAY TWP,16,1936,2,RES1,3001 -0111_1167.01_24,-74.50228259,39.32710018,253 S NEW YORK RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1167.01_25,-74.653377,39.5445055,255 S NEW YORK RD,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_1167.01_27,-74.6161285,39.3098775,263 S NEW YORK RD,GALLOWAY TWP,15,1900,3,RES1,3001 -0111_1167.01_28,-74.48220249,39.43033428,265 S NEW YORK RD,GALLOWAY TWP,,1969,1,RES1,3001 -0111_1167.01_29,-74.5911273,39.32762779,269 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1167.01_3.01,-74.8730725,39.440102,216 SYLVAN AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1167.01_3.02,-74.6231785,39.420846,218 SYLVAN AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1167.01_3.03,-74.499044,39.448513,220 SYLVAN AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1167.01_31.02,-74.88288981,39.59789382,279 S NEW YORK RD,GALLOWAY TWP,,1915,1,RES1,3001 -0111_1167.01_32,-74.541272,39.398585,281 S NEW YORK RD,GALLOWAY TWP,,2011,1,RES1,3001 -0111_1167.01_33.01,-74.90472444,39.47241299,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1167.01_33.02,-74.94050908,39.53125302,633 PARK PL,GALLOWAY TWP,17,2000,1,RES1,3001 -0111_1167.01_33.03,-74.461702,39.347453,631 PARK PL,GALLOWAY TWP,17,1999,1,RES1,3001 -0111_1167.01_33.04,-74.50305767,39.32477549,629 PARK PL,GALLOWAY TWP,18,2004,1,RES1,3001 -0111_1167.01_33.05,-74.79135195,39.63037321,627 PARK PL,GALLOWAY TWP,17,1997,1,RES1,3001 -0111_1167.01_33.06,-74.6329975,39.483294,625 PARK PL,GALLOWAY TWP,17,2001,1,RES1,3001 -0111_1167.01_33.07,-74.53568,39.3921865,623 PARK PL,GALLOWAY TWP,17,2002,1,RES1,3001 -0111_1167.01_33.08,-74.49768077,39.43444609,621 PARK PL,GALLOWAY TWP,17,1995,1,RES1,3001 -0111_1167.01_33.09,-74.63156141,39.52988954,619 PARK PL,GALLOWAY TWP,17,1996,1,RES1,3001 -0111_1167.01_33.11,-74.387409,39.393415,615 PARK PL,GALLOWAY TWP,18,2004,1,GOV1,3004 -0111_1167.01_33.12,-74.821005,39.6452385,613 PARK PL,GALLOWAY TWP,17,1995,1,RES1,3001 -0111_1167.01_33.13,-74.52393486,39.39982636,609 PARK PL,GALLOWAY TWP,19,2002,3,GOV1,3004 -0111_1167.01_33.15,-74.50978509,39.33112766,614 PARK PL,GALLOWAY TWP,17,2003,1,RES1,3001 -0111_1167.01_33.16,-74.523846,39.3164725,616 PARK PL,GALLOWAY TWP,18,2001,1,RES1,3001 -0111_1167.01_33.17,-74.42780415,39.37184987,618 PARK PL,GALLOWAY TWP,17,2001,1,RES1,3004 -0111_1167.01_33.18,-74.772184,39.3849455,620 PARK PL,GALLOWAY TWP,17,1999,1,RES1,3001 -0111_1167.01_33.19,-74.86500452,39.45713044,622 PARK PL,GALLOWAY TWP,17,1996,1,GOV1,3004 -0111_1167.01_33.21,-74.38486036,39.39711044,626 PARK PL,GALLOWAY TWP,17,1996,1,RES1,3001 -0111_1167.01_33.22,-74.80298796,39.64294512,628 PARK PL,GALLOWAY TWP,17,1996,1,RES1,3001 -0111_1167.01_33.23,-74.38620904,39.39795283,630 PARK PL,GALLOWAY TWP,17,1997,2,RES1,3001 -0111_1167.01_33.24,-74.93950869,39.51133949,632 PARK PL,GALLOWAY TWP,17,1998,1,RES1,3001 -0111_1167.01_33.25,-74.61179055,39.36589552,634 PARK PL,GALLOWAY TWP,17,1995,1,RES1,3001 -0111_1167.01_33.26,-74.7549165,39.4326305,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1167.01_34,-74.40733722,39.37983354,612 PARK PL,GALLOWAY TWP,,0,1,RES1,3001 -0111_1167.01_35.01,-74.711678,39.4200545,309-311 S NEW YORK RD,GALLOWAY TWP,,1935,1,RES1,3001 -0111_1167.01_35.02,-74.63040823,39.39045138,631 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1989,1,RES1,3001 -0111_1167.01_35.03,-74.715243,39.467811,629 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1990,1,RES1,3001 -0111_1167.01_35.04,-74.616256,39.30868983,627 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1988,1,GOV1,3004 -0111_1167.01_35.05,-74.797763,39.6356895,625 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1991,1,RES1,3001 -0111_1167.01_35.06,-74.53917155,39.38287584,623 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1990,1,RES1,3001 -0111_1167.01_35.07,-74.48187052,39.33981885,621 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1990,1,RES1,3001 -0111_1167.01_35.08,-74.51504968,39.39910926,622 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1990,1,RES1,3001 -0111_1167.01_35.09,-74.79378111,39.6461545,624 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1992,1,RES1,3001 -0111_1167.01_35.11,-74.42197256,39.37051438,628 SEAVIEW RIDGE DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1167.01_35.12,-74.600672,39.317828,630 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1989,1,GOV1,3004 -0111_1167.01_35.13,-74.951608,39.5174065,632 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1992,1,RES1,3001 -0111_1167.01_35.14,-74.64330398,39.52937466,634 SEAVIEW RIDGE DR,GALLOWAY TWP,17,1993,1,RES1,3001 -0111_1167.01_4.01,-74.50852232,39.43567893,232 SYLVAN AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_1167.01_4.02,-74.78795648,39.63732267,226 SYLVAN AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_1167.01_40,-74.60329456,39.35493546,313 S NEW YORK RD,GALLOWAY TWP,16,1886,1,RES3A,3001 -0111_1167.01_42,-74.70848128,39.6402639,315 S NEW YORK RD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1167.01_43.01,-74.719587,39.429679,611 PINE VIEW DR,GALLOWAY TWP,17,1997,1,RES1,3001 -0111_1167.01_43.02,-74.54113279,39.39014028,607 PINE VIEW DR,GALLOWAY TWP,17,1996,1,RES1,3001 -0111_1167.01_43.03,-74.54596171,39.38853131,603 PINE VIEW DR,GALLOWAY TWP,18,2004,1,RES1,3001 -0111_1167.01_43.04,-74.824931,39.3941575,600 PINE VIEW DR,GALLOWAY TWP,17,2008,1,RES1,3001 -0111_1167.01_43.05,-74.7014545,39.4227445,604 PINE VIEW DR,GALLOWAY TWP,17,1993,1,RES1,3001 -0111_1167.01_43.06,-74.37923306,39.41859965,608 PINE VIEW DR,GALLOWAY TWP,17,1994,1,GOV1,3004 -0111_1167.01_43.07,-74.70109693,39.48624885,612 PINE VIEW DR,GALLOWAY TWP,17,1994,1,RES1,3001 -0111_1167.01_43.08,-74.63891,39.44512501,616 PINE VIEW DR,GALLOWAY TWP,18,1998,1,RES1,3001 -0111_1167.01_43.09,-74.88345789,39.5962843,620 PINE VIEW DR,GALLOWAY TWP,17,1994,1,RES1,3001 -0111_1167.01_45.02,-74.563694,39.3550765,627 LOST PINE WAY,GALLOWAY TWP,17,1981,1,RES1,3001 -0111_1167.01_45.03,-74.50907548,39.46093413,625 LOST PINE WAY,GALLOWAY TWP,17,1989,1,RES1,3001 -0111_1167.01_45.06,-74.73137367,39.4542261,617 LOST PINE WAY,GALLOWAY TWP,16,1980,1,GOV1,3004 -0111_1167.01_45.07,-74.52242695,39.31770465,615 LOST PINE WAY,GALLOWAY TWP,17,1990,1,GOV1,3004 -0111_1167.01_45.08,-74.46265617,39.35406943,613 LOST PINE WAY,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1167.01_5.01,-74.79496195,39.63911634,503 HIGHLANDS AVE,GALLOWAY TWP,16,2016,1,RES1,3001 -0111_1167.01_5.02,-74.63090582,39.38952932,505 HIGHLANDS AVE,GALLOWAY TWP,15,1936,1,RES1,3001 -0111_1167.01_6,-74.83843,39.5313685,509 HIGHLANDS AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1167.01_7.01,-74.4996725,39.4288335,511 HIGHLANDS AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1167.01_7.02,-74.53457611,39.39982748,513 HIGHLANDS AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1167.01_7.03,-74.697034,39.6362395,515 HIGHLANDS AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1167.01_71,-74.61541291,39.30897459,NEW YORK RD,GALLOWAY TWP,,1998,1,RES1,3001 -0111_1167.01_8,-74.80017817,39.45791701,517 HIGHLANDS AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_1167.01_9,-74.45180945,39.37084728,521 HIGHLANDS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1167.02_1,-74.53253719,39.37853853,613 PINE VIEW DR,GALLOWAY TWP,19,1991,1,GOV1,3004 -0111_1167.02_2,-74.5890035,39.3248725,615 PINE VIEW DR,GALLOWAY TWP,17,2005,1,RES1,3001 -0111_1167.02_4,-74.63085889,39.50519263,619 PINE VIEW DR,GALLOWAY TWP,17,1996,1,RES1,3001 -0111_1167.03_45.01,-74.447119,39.37401,634 LOST PINE WAY,GALLOWAY TWP,,1985,1,RES1,3001 -0111_1167.03_45.02,-74.60794792,39.48305367,632 LOST PINE WAY,GALLOWAY TWP,17,1990,1,RES1,3001 -0111_1167.03_45.03,-74.56307538,39.54633473,630 LOST PINE WAY,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1167.03_45.04,-74.61583367,39.31231406,628 LOST PINE WAY,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1167.03_45.05,-74.51709846,39.32344714,626 LOST PINE WAY,GALLOWAY TWP,17,1991,1,RES1,3001 -0111_1167.03_45.06,-74.63017751,39.3527746,624 LOST PINE WAY,GALLOWAY TWP,16,2018,1,RES1,3001 -0111_1167.03_45.07,-74.51866787,39.32295929,622 LOST PINE WAY,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1167.03_46,-74.60279623,39.59226621,327 S NEW YORK RD,GALLOWAY TWP,16,1905,1,RES1,3001 -0111_1167.03_51,-74.50678179,39.46179513,655 EZRA BOYCE RD,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1167.03_53,-74.61349422,39.35084524,331 S NEW YORK RD,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_1167.03_54,-74.59328436,39.36560617,333 S NEW YORK RD,GALLOWAY TWP,16,1929,1,RES1,3001 -0111_1167.03_55,-74.954178,39.51637,335 S NEW YORK RD,GALLOWAY TWP,16,1906,1,RES1,3001 -0111_1168_11,-74.88013416,39.59808703,320 S NEW YORK RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1168_12,-74.866168,39.4973805,400 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1168_13,-74.5930135,39.3817295,322 S NEW YORK RD,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_1169.01_1.02,-74.50460683,39.46155351,220 SNAKE RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1169.01_10,-74.63306331,39.42379591,807 SOMERSTOWN LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1169.01_11.01,-74.48896,39.334691,809 SOMERSTOWN LN,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1169.01_11.02,-74.6531144,39.48673864,811 SOMERSTOWN LN,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_1169.01_12.01,-74.60112299,39.47976599,813 SOMERSTOWN LN,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1169.01_12.02,-74.95237756,39.51319376,SOMERSTOWN LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_1169.01_17.01,-74.82396947,39.39395882,828 SOMERSTOWN LN,GALLOWAY TWP,15,1836,1,RES1,3001 -0111_1169.01_17.03,-74.58821066,39.41129946,826 SOMERSTOWN LN,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1169.01_17.04,-74.58216502,39.34197533,SOMERSTOWN LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_1169.01_18.01,-74.4724908,39.48114658,816 SOMERSTOWN LN,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_1169.01_19,-74.38545401,39.39286778,810 SOMERSTOWN LN,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_1169.01_2,-74.635159,39.5241005,800 SOMERS LANDING RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1169.01_20.01,-74.9047665,39.4847105,804 SOMERSTOWN LN,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1169.01_20.02,-74.64303144,39.3343788,806 SOMERSTOWN LN,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1169.01_20.03,-74.67271314,39.36937801,808 SOMERSTOWN LN,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1169.01_21.01,-74.55590657,39.39039051,706 SOMERSTOWN LN,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1169.01_21.02,-74.45387612,39.37182775,708 SOMERSTOWN LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1169.01_21.03,-74.61114442,39.32062247,800 SOMERSTOWN LN,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1169.01_23,-74.56771346,39.41172063,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1169.01_24,-74.3727765,39.415437,270 S NEW YORK RD,GALLOWAY TWP,,1995,1,COM1,3004 -0111_1169.01_27.02,-74.94159774,39.52338487,290 S NEW YORK RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1169.01_28,-74.52650428,39.44802467,701 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_29,-74.5845195,39.327882,703 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_3,-74.733656,39.436158,804 SOMERS LANDING RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1169.01_30,-74.591815,39.311591,705 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_31,-74.461066,39.3473535,707 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_32,-74.70844983,39.369591,709 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_33,-74.5190445,39.3907995,711 CHANESE LN,GALLOWAY TWP,16,1957,1,RES3B,3002 -0111_1169.01_34,-74.5078595,39.406054,713 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_35,-74.38092911,39.39364814,715 CHANESE LN,GALLOWAY TWP,16,1957,1,COM1,3004 -0111_1169.01_36,-74.3731465,39.4122845,717 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_37,-74.5758798,39.40016919,719 CHANESE LN,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1169.01_38,-74.50451187,39.33105168,721 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_39,-74.51054758,39.40962116,723 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_4.01,-74.726558,39.5896905,810 SOMERS LANDING RD,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1169.01_4.02,-74.51348249,39.32135853,812 SOMERS LANDING RD,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_1169.01_4.03,-74.59455496,39.41798568,808 SOMERS LANDING RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1169.01_4.04,-74.513066,39.436259,806 SOMERS LANDING RD,GALLOWAY TWP,16,1978,1,RES3B,3001 -0111_1169.01_40,-74.5375315,39.4701385,725 CHANESE LN,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1169.01_41,-74.42618082,39.35956704,727 CHANESE LN,GALLOWAY TWP,16,1958,1,COM1,3004 -0111_1169.01_42,-74.55943288,39.41481734,729 CHANESE LN,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_1169.01_43,-74.48258683,39.34448303,731 CHANESE LN,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1169.01_44,-74.5097665,39.452218,733 CHANESE LN,GALLOWAY TWP,16,1957,1,IND2,3002 -0111_1169.01_45,-74.51252194,39.48672881,735 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_46,-74.63953284,39.32284599,737 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_47,-74.55979423,39.37141957,739 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_48,-74.74557132,39.43946797,741 CHANESE LN,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1169.01_49,-74.87257519,39.48516795,743 CHANESE LN,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_1169.01_50,-74.4750315,39.34112,745 CHANESE LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1169.01_51,-74.36961753,39.40669467,747 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_52,-74.7551475,39.4341005,749 CHANESE LN,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_1169.01_53,-74.8753969,39.59341662,746 CHANESE LN,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_1169.01_54,-74.5533385,39.383852,744 CHANESE LN,GALLOWAY TWP,16,1960,1,RES3A,3004 -0111_1169.01_55,-74.95808674,39.49791551,742 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_56,-74.39083829,39.38973806,740 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_57,-74.53562967,39.30625729,738 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_58,-74.56817128,39.34218283,736 CHANESE LN,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1169.01_59,-74.5087645,39.332682,734 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_60,-74.63340135,39.35725176,732 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_61,-74.5909315,39.364201,730 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_62,-74.726604,39.586568,728 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_63,-74.54810937,39.38110835,726 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_64,-74.55294506,39.38102532,724 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_65,-74.7792039,39.63263677,722 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_66,-74.57572616,39.35542949,720 CHANESE LN,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_1169.01_67,-74.5273585,39.312833,718 CHANESE LN,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1169.01_68,-74.81203156,39.64562125,716 CHANESE LN,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_1169.01_69,-74.39814965,39.38874916,714 CHANESE LN,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1169.01_7,-74.63175368,39.45717141,801 SOMERSTOWN LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1169.01_70,-74.642217,39.3849165,712 CHANESE LN,GALLOWAY TWP,16,1957,1,RES3A,3001 -0111_1169.01_71,-74.71274334,39.47392848,710 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_72,-74.7245255,39.5754265,708 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_73,-74.81468213,39.40631767,706 CHANESE LN,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_1169.01_74,-74.45501251,39.46003017,704 CHANESE LN,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1169.01_75,-74.3914215,39.390931,700 CHANESE LN,GALLOWAY TWP,16,1959,1,RES3A,3001 -0111_1169.02_1,-74.55940383,39.36735206,230 S NEW YORK RD,GALLOWAY TWP,16,1896,1,RES1,3001 -0111_1169.02_10.02,-74.889071,39.4835255,219 SNAKE RD,GALLOWAY TWP,16,1900,1,RES3A,3001 -0111_1169.02_11,-74.548391,39.4027485,244 S NEW YORK RD,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_1169.02_12,-74.45726485,39.35049074,701 SOMERSTOWN LN,GALLOWAY TWP,,2001,1,RES1,3001 -0111_1169.02_14,-74.61725753,39.62230182,705 SOMERSTOWN LN,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1169.02_15.01,-74.63465327,39.36085006,707 SOMERSTOWN LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1169.02_15.02,-74.55484935,39.4658507,709 SOMERSTOWN LN,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1169.02_16,-74.54767256,39.36941571,711 SOMERSTOWN LN,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1169.02_2,-74.38634284,39.39785403,232 S NEW YORK RD,GALLOWAY TWP,16,1896,1,RES1,3001 -0111_1169.02_4,-74.8294795,39.488456,712 SOMERS LANDING RD,GALLOWAY TWP,16,1960,1,GOV1,3004 -0111_1169.02_5.01,-74.46112751,39.48326421,714 SOMERS LANDING RD,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1169.02_5.02,-74.55471666,39.39128743,722 SOMERS LANDING RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1169.02_8.01,-74.637531,39.402156,726 SOMERS LANDING RD,GALLOWAY TWP,14,1956,1,RES1,3001 -0111_1169.02_8.02,-74.50550882,39.40880397,213 SNAKE RD,GALLOWAY TWP,16,1906,1,RES1,3001 -0111_1169.02_9,-74.62792116,39.40715699,240 S NEW YORK RD,GALLOWAY TWP,16,1958,1,RES3A,3001 -0111_1169.03_1,-74.5992125,39.592148,222 S NEW YORK RD,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_1169.03_10,-74.62587257,39.48749714,711 SOMERS LANDING RD,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1169.03_12.01,-74.48967109,39.35181459,721 SOMERS LANDING RD,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1169.03_12.02,-74.5400037,39.37370508,723 SOMERS LANDING RD,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1169.03_2,-74.68726303,39.50382087,706 LILY LAKE RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1169.03_4,-74.5794635,39.4076845,710 LILY LAKE RD,GALLOWAY TWP,16,1966,1,RES3A,3001 -0111_1169.03_5,-74.51167026,39.32223034,712 LILY LAKE RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1169.03_6,-74.50197,39.4123815,714 LILY LAKE RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1169.03_7,-74.38737335,39.39354054,226 S NEW YORK RD,GALLOWAY TWP,16,1906,1,RES1,3001 -0111_1169.03_8,-74.6359394,39.38504572,228 S NEW YORK RD,GALLOWAY TWP,16,1946,3,RES1,3001 -0111_1169.03_9,-74.5828164,39.3592323,709 SOMERS LANDING RD,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_1169.04_1.02,-74.55098151,39.38043901,LILY LAKE RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1169.04_2.02,-74.81548766,39.62611731,801 SOMERS LANDING RD,GALLOWAY TWP,16,1885,1,RES1,3001 -0111_1169.04_2.03,-74.6037725,39.370812,805 SOMERS LANDING RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1169.05_1.01,-74.5232235,39.3948365,200 S NEW YORK RD,GALLOWAY TWP,,1921,2,RES1,3001 -0111_1169.05_1.02,-74.51300444,39.32491683,708 GREAT CREEK RD,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_1169.05_10,-74.4509365,39.4948665,733 LILY LAKE RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_1169.05_2,-74.53988299,39.37314667,202 S NEW YORK RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1169.05_3,-74.59587241,39.36561841,204 S NEW YORK RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1169.05_6,-74.60654366,39.32362019,724 GREAT CREEK RD,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_1169.05_7,-74.6003982,39.41622441,725 LILY LAKE RD,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_1169.05_8,-74.829261,39.4750965,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1169.05_9,-74.69670741,39.49034068,729 LILY LAKE RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_1170.01_17.01,-74.568698,39.341606,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1170.01_17.02,-74.619744,39.4376485,451 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.03,-74.4931355,39.4538325,453 EXETER CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.04,-74.913387,39.4946495,455 EXETER CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.05,-74.5445605,39.5483395,457 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.06,-74.515552,39.3938055,459 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.07,-74.69195778,39.4498249,461 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.08,-74.79362172,39.63952964,463 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.09,-74.55061518,39.37200649,465 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.10,-74.9577175,39.497809,464 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.11,-74.60689286,39.32709078,462 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.12,-74.6373905,39.533914,460 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.13,-74.602832,39.527608,458 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.14,-74.87756869,39.59464008,456 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.15,-74.56676662,39.4115242,454 EXETER CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.16,-74.52595867,39.31467799,452 EXETER CT,GALLOWAY TWP,16,2003,1,RES1,3002 -0111_1170.01_17.17,-74.57470323,39.41816843,452 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.18,-74.915473,39.514911,450 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.19,-74.60148311,39.43074432,448 COVENTRY WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.20,-74.89182138,39.5095772,446 COVENTRY WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.21,-74.56907,39.3420835,444 COVENTRY WAY,GALLOWAY TWP,16,2003,1,RES3A,3002 -0111_1170.01_17.22,-74.786435,39.6352695,442 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.01_17.23,-74.36140566,39.41169901,440 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.01_17.24,-74.47338,39.3395695,438 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.01_17.25,-74.75946549,39.43140189,436 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.01_17.26,-74.94476419,39.52667584,434 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.01_17.27,-74.5936695,39.324041,432 COVENTRY WAY,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1170.01_17.28,-74.62993044,39.43860658,430 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.29,-74.50062309,39.43535945,428 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.01_17.30,-74.8503,39.5586415,426 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.31,-74.63894588,39.43344627,424 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.32,-74.76286502,39.63335684,422 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.01_17.33,-74.7493135,39.450463,420 MONTROSE LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.01_17.34,-74.49791332,39.42630999,418 MONTROSE LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.01_17.35,-74.50019133,39.48698601,416 MONTROSE LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.01_17.36,-74.693443,39.4482145,414 MONTROSE LN,GALLOWAY TWP,16,2003,1,COM1,3004 -0111_1170.01_17.37,-74.537484,39.472301,412 MONTROSE LN,GALLOWAY TWP,16,2001,1,RES3A,3001 -0111_1170.01_17.38,-74.582212,39.4755095,410 MONTROSE LN,GALLOWAY TWP,16,2003,1,RES3B,3001 -0111_1170.02_17.02,-74.5582975,39.4761315,MOSS MILL RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_1170.02_17.03,-74.831903,39.4533155,2 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES3A,3001 -0111_1170.02_17.04,-74.6415445,39.531994,4 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.05,-74.81114192,39.53611477,6 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.06,-74.60665979,39.37676195,407 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.07,-74.6008205,39.359287,409 ST IVES CT,GALLOWAY TWP,16,2004,1,RES3A,3001 -0111_1170.02_17.08,-74.631851,39.6083615,411 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.09,-74.59204365,39.4336213,413 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.10,-74.88463556,39.50335281,415 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.11,-74.5056495,39.492005,417 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.12,-74.7881173,39.67626431,419 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.13,-74.9035355,39.4797265,421 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3002 -0111_1170.02_17.14,-74.708298,39.63992017,416 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.15,-74.530068,39.4037665,414 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.16,-74.79853507,39.64298654,412 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.17,-74.60361914,39.40991117,410 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.18,-74.40066309,39.38752112,408 ST IVES CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.19,-74.38063119,39.40025187,10 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.20,-74.46905483,39.48907324,12 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.21,-74.962974,39.5121175,14 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,COM4,3004 -0111_1170.02_17.22,-74.68627799,39.51162167,16 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_1170.02_17.23,-74.568147,39.4783965,18 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.24,-74.81505918,39.65548827,20 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.25,-74.48304401,39.53852884,22 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.26,-74.6614295,39.402285,24 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.27,-74.55096095,39.4640307,26 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES3A,3001 -0111_1170.02_17.28,-74.49439178,39.49485586,28 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.29,-74.6290535,39.355193,30 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.30,-74.47313209,39.49034601,32 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.31,-74.5009296,39.32637552,34 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.32,-74.638409,39.5668595,36 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.33,-74.40751665,39.38122375,38 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.34,-74.565636,39.475438,40 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.35,-74.59223101,39.31728486,24 S PITNEY RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1170.02_17.36,-74.53353952,39.38232138,29 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.37,-74.51212029,39.40301003,27 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.38,-74.5825455,39.3404065,25 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.39,-74.59384192,39.31088261,23 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.40,-74.8784145,39.47761,21 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.41,-74.60758832,39.32220052,19 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.42,-74.5045575,39.4093685,17 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.43,-74.93867024,39.52868962,15 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.44,-74.56797384,39.36268375,13 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.45,-74.63203399,39.35081034,11 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.46,-74.48848616,39.45921805,9 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.47,-74.46031919,39.35616674,7 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.48,-74.64833502,39.52229216,5 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.02_17.49,-74.507491,39.507833,3 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3002 -0111_1170.02_17.50,-74.48521761,39.47352775,1 NORTHAMPTON RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1170.03_1,-74.63605794,39.38498212,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1170.03_10,-74.62381066,39.3833392,435 TURNBRIDGE DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.03_11,-74.5611425,39.359001,433 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.03_12,-74.55612758,39.3645728,431 TURNBRIDGE DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.03_13,-74.923995,39.50594,429 TURNBRIDGE DR,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1170.03_14,-74.481913,39.444632,427 TURNBRIDGE DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.03_15,-74.499568,39.48996083,425 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1170.03_16,-74.8004925,39.6557585,423 TURNBRIDGE DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.03_2,-74.501214,39.326537,453 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.03_3,-74.45105994,39.48075077,451 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.03_4,-74.49566431,39.33507736,449 COVENTRY WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.03_5,-74.5435255,39.390895,447 COVENTRY WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.03_6,-74.80158997,39.64712833,445 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES3A,3001 -0111_1170.03_7,-74.62341387,39.37027227,443 COVENTRY WAY,GALLOWAY TWP,16,2002,1,COM1,3004 -0111_1170.03_8,-74.64820018,39.43137448,439 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.03_9,-74.63943885,39.52715404,437 TURNBRIDGE DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.04_1,-74.89639356,39.5393417,440 TURNBRIDGE DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.04_10,-74.81931075,39.65148644,426 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.04_11,-74.45405,39.3528085,428 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.04_12,-74.56611732,39.34826966,430 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.04_13,-74.49307125,39.43359046,432 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.04_14,-74.952298,39.518922,434 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.04_15,-74.4784545,39.443275,436 TURNBRIDGE DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.04_16,-74.64353307,39.43386818,438 TURNBRIDGE DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.04_2,-74.63403516,39.52680623,437 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.04_3,-74.7439035,39.4528345,435 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.04_4,-74.938957,39.5243905,433 COVENTRY WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.04_5,-74.52818593,39.38381419,431 COVENTRY WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.04_6,-74.69301405,39.49204015,429 COVENTRY WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1170.04_7,-74.3647307,39.41048848,427 COVENTRY WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1170.04_8,-74.48978484,39.43953052,425 COVENTRY WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170.04_9,-74.90649673,39.52910805,424 TURNBRIDGE DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1170_1,-74.51473208,39.40907766,146 S PITNEY RD,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_1170_10,-74.83015349,39.45277729,137 SYLVAN AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1170_11.01,-74.781209,39.651574,421 SPENCER LN,GALLOWAY TWP,16,1987,2,RES1,3001 -0111_1170_11.02,-74.4802925,39.4433675,419 SPENCER LN,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1170_12,-74.47579985,39.49312401,411 SPENCER LN,GALLOWAY TWP,16,1963,1,GOV1,3004 -0111_1170_13,-74.51236917,39.328753,401 SPENCER LN,GALLOWAY TWP,16,1965,1,COM1,3004 -0111_1170_14.01,-74.5964315,39.384536,130 S PITNEY RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1170_14.02,-74.58952209,39.32669397,128 S PITNEY RD,GALLOWAY TWP,16,1976,1,COM1,3003 -0111_1170_14.03,-74.6176505,39.424624,124 S PITNEY RD,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_1170_15.01,-74.531949,39.383175,133 SYLVAN AVE,GALLOWAY TWP,16,1990,1,COM1,3004 -0111_1170_15.02,-74.50771067,39.33895148,131 SYLVAN AVE,GALLOWAY TWP,16,1975,1,COM1,3004 -0111_1170_16.01,-74.59447684,39.37896468,400 BLUE ROSE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1170_16.02,-74.48016145,39.34599945,402 BLUE ROSE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1170_16.03,-74.47828587,39.43254174,404 BLUE ROSE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1170_16.04,-74.39928191,39.38647767,403 BLUE ROSE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1170_16.05,-74.7939325,39.64539533,401 BLUE ROSE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1170_3.01,-74.59575462,39.31006835,151 SYLVAN AVE,GALLOWAY TWP,16,1961,1,RES3A,3001 -0111_1170_3.02,-74.50070142,39.44662415,149 SYLVAN AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1170_3.03,-74.7370559,39.46612555,147 SYLVAN AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1170_5.02,-74.728207,39.4532755,142 S PITNEY RD,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1170_6,-74.93170834,39.51980003,400 SPENCER LN,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_1170_7,-74.51962511,39.39532294,410 SPENCER LN,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1170_8,-74.51111955,39.32104378,418 SPENCER LN,GALLOWAY TWP,16,1963,1,GOV1,3004 -0111_1170_9,-74.49654576,39.47504895,143 SYLVAN AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_1171.01_11.01,-74.68733686,39.50033802,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.01_11.02,-74.66681353,39.46212833,NEWCASTLE CT,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.01_11_C0041,-74.70028728,39.49015689,128 NEWCASTLE CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.01_11_C0042,-74.68736584,39.49083807,130 NEWCASTLE CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.01_11_C0043,-74.70550749,39.48040952,124 NEWCASTLE CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.01_11_C0044,-74.6742825,39.4808115,122 NEWCASTLE CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.01_12.01,-74.48314798,39.33668282,101 WARWICK RD,GALLOWAY TWP,16,2003,1,COM3,3004 -0111_1171.01_12.02,-74.572963,39.371792,103 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.03,-74.3782909,39.4000769,105 WARWICK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.04,-74.651656,39.372507,107 WARWICK RD,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.01_12.05,-74.48082629,39.33853666,109 WARWICK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.06,-74.5205675,39.404277,111 WARWICK RD,GALLOWAY TWP,16,2003,1,COM1,3004 -0111_1171.01_12.07,-74.52845196,39.40496335,113 WARWICK RD,GALLOWAY TWP,16,2003,1,COM1,3004 -0111_1171.01_12.08,-74.52698108,39.38954572,115 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.09,-74.76517139,39.40461322,117 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.10,-74.455628,39.380092,119 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.11,-74.70701499,39.41653987,121 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.12,-74.48945276,39.33512367,123 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.13,-74.59305294,39.31938214,125 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.14,-74.56387384,39.35999999,127 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.15,-74.77390699,39.62658923,129 WARWICK RD,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.01_12.16,-74.73761866,39.46317283,131 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.17,-74.4315095,39.4925005,133 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.18,-74.4960315,39.3352355,135 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.19,-74.60803491,39.38602719,137 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.20,-74.70194272,39.63836004,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.01_12.21,-74.8110275,39.4119855,101 ST GEORGES DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.22,-74.8079417,39.41276666,103 ST GEORGES DR,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.01_12.23,-74.82613236,39.40416893,105 ST GEORGES DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.24,-74.84447907,39.38999849,107 ST GEORGES DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.25,-74.85029091,39.3877687,109 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.26,-74.8307545,39.385511,111 ST GEORGES DR,GALLOWAY TWP,16,2003,1,RES3A,3001 -0111_1171.01_12.27,-74.8253527,39.38237056,113 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.28,-74.83143018,39.37291948,115 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.29,-74.82231586,39.38471522,117 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.30,-74.8537475,39.4021005,119 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.31,-74.74291123,39.41092842,121 ST GEORGES DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_12.32,-74.7432115,39.4135195,123 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.33,-74.7616185,39.43,125 ST GEORGES DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_12.34,-74.71126901,39.43043459,127 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.35,-74.7432065,39.426914,129 ST GEORGES DR,GALLOWAY TWP,16,2002,1,COM1,3004 -0111_1171.01_12.36,-74.75492731,39.42906912,131 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.37,-74.811038,39.3824645,133 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.38,-74.80509558,39.3694594,135 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.39,-74.7115045,39.43188123,137 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.40,-74.708069,39.4361785,139 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.41,-74.82334626,39.41137228,141 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.42,-74.80660498,39.43357802,143 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.43,-74.83583877,39.40505965,145 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.44,-74.83771189,39.40702076,147 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.45,-74.82834341,39.40967984,149 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.46,-74.733694,39.442197,101 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.47,-74.75004832,39.45104896,103 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.48,-74.7351985,39.4483775,104 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.49,-74.73608696,39.44360875,106 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.50,-74.7258591,39.4483177,108 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.51,-74.72217511,39.45065179,110 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.52,-74.84376,39.415131,112 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_12.53,-74.74958837,39.4499282,114 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.54,-74.71523444,39.43953728,116 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_12.55,-74.7251925,39.451146,118 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.56,-74.72364289,39.44020816,120 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.57,-74.72767101,39.45075775,122 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.58,-74.71216206,39.4384678,124 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.59,-74.72545132,39.45861591,123 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.60,-74.745848,39.445463,121 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.61,-74.73348489,39.46445866,119 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.62,-74.7139395,39.4666415,113 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.63,-74.71232783,39.46960349,111 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.64,-74.722714,39.4572875,109 SHEFFIELD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.65,-74.716479,39.407813,105 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_12.66,-74.600858,39.5016805,107 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.67,-74.625047,39.4388685,109 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.68,-74.61987493,39.4374695,111 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.69,-74.59802192,39.49903666,113 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.70,-74.6218485,39.4369995,115 NEWCASTLE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.01_12.71,-74.644937,39.449128,117 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_12.72,-74.64412156,39.43628874,119 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.73,-74.63324223,39.46084705,121 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.74,-74.68107393,39.46219373,123 NEWCASTLE CT,GALLOWAY TWP,16,2003,1,COM4,3004 -0111_1171.01_12.75,-74.65163842,39.47151677,125 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.76,-74.62310543,39.48052615,127 NEWCASTLE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.01_12.77,-74.670754,39.4621765,118 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.78,-74.69399994,39.44824074,116 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.79,-74.705342,39.4424805,114 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.80,-74.6643545,39.4604405,112 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES3A,3001 -0111_1171.01_12.81,-74.6670865,39.454813,110 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.82,-74.6809,39.4455765,106 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.83,-74.64934401,39.45929932,104 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.84,-74.68359262,39.44079472,102 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.85,-74.68251052,39.45095525,100 NEWCASTLE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_12.86,-74.76114069,39.38626636,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.01_14.01,-74.924993,39.5051965,101 OXFORD CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_14.02,-74.50782835,39.51787854,103 OXFORD CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.03,-74.61083475,39.37853582,105 OXFORD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.04,-74.643656,39.5341675,105 SALISBURY CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.05,-74.64296728,39.43468393,100 SALISBURY CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.06,-74.47147216,39.48713018,102 SALISBURY CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.07,-74.767177,39.645985,104 SALISBURY CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.08,-74.5981525,39.3457555,106 SALISBURY CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.09,-74.48892531,39.42962153,108 SALISBURY CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.10,-74.84711168,39.47132408,109 HAVERHILL CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.11,-74.58778156,39.32096021,107 HAVERHILL CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.12,-74.61560881,39.35082634,105 HAVERHILL CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.13,-74.83189632,39.4073708,103 HAVERHILL CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.14,-74.364504,39.408779,101 HAVERHILL CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.15,-74.88762034,39.56325749,104 HAVERHILL CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.16,-74.5123005,39.38587998,106 HAVERHILL CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.17,-74.5316206,39.41851639,108 HAVERHILL CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.18,-74.571206,39.363327,119 OXFORD CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.19,-74.68014756,39.55762234,121 OXFORD CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.20,-74.94888639,39.51712672,120 OXFORD CT,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.01_14.21,-74.8806744,39.60307419,118 OXFORD CT,GALLOWAY TWP,16,2003,1,RES3A,3001 -0111_1171.01_14.22,-74.703628,39.5926,109 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.23,-74.50516207,39.33474394,111 SOUTHPORT CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.24,-74.57808872,39.33862268,113 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.25,-74.69685431,39.58519893,115 SOUTHPORT CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.26,-74.48163517,39.33592149,121 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.27,-74.46817816,39.48909275,123 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.28,-74.47001711,39.49013755,125 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.29,-74.9313197,39.51469773,127 SOUTHPORT CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.30,-74.82358,39.4283745,128 SOUTHPORT CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_14.31,-74.5441593,39.47590021,126 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.32,-74.64784057,39.43119481,124 SOUTHPORT CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_14.33,-74.60773922,39.32655108,122 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.01_14.34,-74.65192616,39.52799957,120 SOUTHPORT CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.35,-74.60189046,39.32831286,118 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.36,-74.44730344,39.37407134,116 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.37,-74.5216539,39.46128365,114 SOUTHPORT CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.38,-74.50338714,39.405944,112 SOUTHPORT CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.01_14.39,-74.876123,39.5956755,110 SOUTHPORT CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.40,-74.527699,39.385239,109 DEVON CT,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.01_14.41,-74.51227081,39.45567016,111 DEVON CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.42,-74.4688559,39.34539733,113 DEVON CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.43,-74.5043603,39.41557995,115 DEVON CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.44,-74.47138632,39.48502602,117 DEVON CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.45,-74.371484,39.410878,119 DEVON CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.46,-74.71774,39.3896995,121 DEVON CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.01_14.47,-74.5755875,39.351046,104 OXFORD CT,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.01_14.48,-74.498976,39.3331415,102 OXFORD CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.01_14.49,-74.50079176,39.33329233,100 OXFORD CT,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.02_1,-74.65032418,39.62668358,100 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.02_10,-74.47188051,39.51155117,134 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.02_11,-74.63342305,39.62666083,136 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.02_12,-74.71139,39.4727135,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.02_2,-74.519319,39.3982385,102 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.02_3,-74.9250335,39.482094,104 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.02_4,-74.45111314,39.35549455,106 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.02_5,-74.49577523,39.45643905,108 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.02_6,-74.58782994,39.41606869,126 WARWICK RD,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.02_7,-74.63852116,39.38356801,128 WARWICK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.02_8,-74.5658005,39.364267,130 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.02_9,-74.8866045,39.558947,132 WARWICK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.03_1,-74.54478736,39.56697621,100 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.03_10,-74.6269165,39.529327,103 PAGET WAY,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.03_11,-74.62721444,39.5141301,101 PAGET WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.03_12,-74.581147,39.539079,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.03_2,-74.56703075,39.54070264,102 ST GEORGES DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.03_3,-74.67338059,39.38447094,104 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.03_4,-74.54479424,39.54222175,106 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.03_5,-74.63024566,39.52349149,108 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.03_6,-74.58529428,39.54102018,122 ST GEORGES DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.03_7,-74.62692133,39.50682783,124 ST GEORGES DR,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1171.03_8,-74.65545002,39.51466416,126 ST GEORGES DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.03_9,-74.63359813,39.5122512,105 PAGET WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.04_1,-74.6180175,39.5085465,100 PAGET WAY,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.04_10,-74.86654936,39.49483114,146 ST GEORGES DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.04_11,-74.63144994,39.61938516,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.04_2,-74.56192146,39.52363972,102 PAGET WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.04_3,-74.53632252,39.53442416,104 PAGET WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.04_4,-74.60541242,39.50726379,106 PAGET WAY,GALLOWAY TWP,16,2002,1,RES3B,3001 -0111_1171.04_5,-74.618492,39.509291,136 ST GEORGES DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1171.04_6,-74.56021747,39.50816634,138 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.04_7,-74.53878215,39.5360761,140 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.04_8,-74.5905585,39.5323815,142 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.04_9,-74.880966,39.4970465,144 ST GEORGES DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.05_10_C0001,-74.62092061,39.42451376,200 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0002,-74.62671741,39.41420208,198 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,COM3,3004 -0111_1171.05_10_C0003,-74.62645836,39.41682509,196 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0004,-74.63004276,39.40848928,194 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,GOV1,3004 -0111_1171.05_10_C0005,-74.6235435,39.4247975,192 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0006,-74.64957369,39.40450552,190 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0007,-74.6331085,39.418903,188 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0008,-74.625401,39.413971,186 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0009,-74.65080136,39.41406555,104 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0010,-74.6535705,39.405552,184 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0011,-74.6532153,39.41002893,182 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,COM4,3004 -0111_1171.05_10_C0012,-74.6490755,39.4043435,103 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0013,-74.70211454,39.37033665,105 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0014,-74.636545,39.384325,106 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0015,-74.62414959,39.38299923,107 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0016,-74.620063,39.3843395,108 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0017,-74.67532517,39.39010325,109 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0018,-74.6529695,39.371555,110 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0019,-74.63646764,39.38273795,111 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0020,-74.6349725,39.3837805,112 DOVER CT,GALLOWAY TWP,35,2001,1,GOV1,3004 -0111_1171.05_10_C0021,-74.67123229,39.38316332,113 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0022,-74.63182119,39.38741795,114 DOVER CT,GALLOWAY TWP,35,2002,1,RES1,3001 -0111_1171.05_10_C0023,-74.6260739,39.3930354,115 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0024,-74.6251335,39.3933535,116 DOVER CT,GALLOWAY TWP,35,2000,1,GOV1,3004 -0111_1171.05_10_C0025,-74.63903041,39.40150673,117 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0026,-74.611832,39.422698,118 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0027,-74.613487,39.4228335,119 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0028,-74.61741781,39.42469929,120 DOVER CT,GALLOWAY TWP,35,2000,1,GOV1,3004 -0111_1171.05_10_C0029,-74.6432865,39.3931185,122 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0030,-74.61291343,39.42024168,121 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0031,-74.6125225,39.421486,124 DOVER CT,GALLOWAY TWP,35,2000,1,GOV1,3004 -0111_1171.05_10_C0032,-74.61373263,39.42225932,123 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0033,-74.62874058,39.40922972,126 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0034,-74.62328848,39.38442134,125 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_10_C0035,-74.62137378,39.37490598,128 DOVER CT,GALLOWAY TWP,35,2001,1,GOV1,3004 -0111_1171.05_10_C0036,-74.59755481,39.43103938,127 DOVER CT,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1171.05_10_C0037,-74.663906,39.3996785,129 DOVER CT,GALLOWAY TWP,35,2001,1,GOV1,3004 -0111_1171.05_10_C0038,-74.59944682,39.4320314,130 DOVER CT,GALLOWAY TWP,35,2001,1,GOV1,3004 -0111_1171.05_10_C0039,-74.59831482,39.43527537,131 DOVER CT,GALLOWAY TWP,35,2001,1,GOV1,3004 -0111_1171.05_10_C0040,-74.6082625,39.4195235,132 DOVER CT,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.05_13,-74.6272215,39.618907,454 E QUAIL HILL BLVD,GALLOWAY TWP,,2001,1,RES1,3001 -0111_1171.05_9.01,-74.6488115,39.6281815,SYLVAN AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1171.05_9.03,-74.5786475,39.3834035,100 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1171.05_9.04,-74.58767103,39.36934039,102 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.05,-74.5915145,39.372159,104 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.06,-74.53998106,39.40012575,106 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.07,-74.584214,39.377199,108 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1171.05_9.08,-74.54533284,39.38544453,110 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.09,-74.58976993,39.37058736,112 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.10,-74.55669182,39.39701808,114 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.11,-74.55813704,39.39868421,116 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.12,-74.59187287,39.37664389,118 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.13,-74.58588274,39.36943064,120 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.14,-74.55889464,39.3988606,122 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.15,-74.5848945,39.3748395,124 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES3A,3001 -0111_1171.05_9.16,-74.54869861,39.39562269,126 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.17,-74.54205929,39.39646617,128 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.18,-74.56594317,39.38975048,130 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.19,-74.557491,39.397399,132 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.20,-74.56090182,39.39115363,134 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.21,-74.5959445,39.4192705,148 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.22,-74.5847175,39.432599,150 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.23,-74.59165119,39.43245648,152 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.24,-74.57618815,39.42977808,154 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.25,-74.60465622,39.42273706,156 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.26,-74.5857975,39.4246175,158 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.27,-74.57595523,39.42993519,160 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,IND1,3004 -0111_1171.05_9.28,-74.59177069,39.43203648,162 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.29,-74.58774737,39.4297313,164 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.30,-74.60643684,39.4270187,166 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.31,-74.6003805,39.415181,168 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.32,-74.6070865,39.42128,100 COTUIT CT,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1171.05_9.33,-74.60245604,39.41892823,102 COTUIT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.34,-74.597515,39.415902,104 COTUIT CT,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1171.05_9.35,-74.63860248,39.43359675,111 COTUIT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.36,-74.63756437,39.43214326,109 COTUIT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.37,-74.64361618,39.43469955,107 COTUIT CT,GALLOWAY TWP,16,2000,1,RES1,3004 -0111_1171.05_9.38,-74.63206094,39.43206557,105 COTUIT CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.39,-74.63591637,39.43548729,103 COTUIT CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.05_9.40,-74.6305055,39.434064,101 COTUIT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.41,-74.6195965,39.4344375,176 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.42,-74.62017023,39.43057814,178 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.05_9.43,-74.64673962,39.4327813,180 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_10,-74.58909191,39.37689762,117 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_11,-74.600088,39.3825075,119 SOUTHAMPTON DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_12,-74.6145752,39.38209053,121 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_13,-74.59745071,39.36996809,123 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_14,-74.59750563,39.36971342,125 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_15,-74.60731253,39.38952981,127 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_16,-74.60456797,39.38421637,129 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_17,-74.60600822,39.38756811,131 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_18,-74.60860691,39.3918552,133 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_19,-74.60891576,39.39573215,135 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_2,-74.58954038,39.37694408,101 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_20,-74.59061202,39.4014805,137 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_21,-74.531457,39.4089945,139 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_22,-74.60395953,39.39173467,141 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_23,-74.53966219,39.41235999,143 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1171.06_24,-74.581186,39.4127055,147 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_25,-74.5746875,39.4300385,149 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1171.06_26,-74.60230841,39.40950193,151 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3004 -0111_1171.06_27,-74.578858,39.418437,153 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_28,-74.595505,39.410956,155 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_29,-74.602311,39.4106875,157 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_3,-74.6045715,39.3701135,103 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1171.06_30,-74.58772203,39.41162221,159 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_31,-74.6019625,39.409067,161 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_32,-74.59194005,39.4151178,163 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3004 -0111_1171.06_33,-74.60499951,39.41012512,165 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1171.06_34,-74.5815485,39.404763,167 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_35,-74.57682401,39.40823419,169 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_36,-74.59983607,39.41913181,171 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_37,-74.57334916,39.42643816,173 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_38,-74.5686355,39.411665,175 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_39,-74.5643783,39.41463349,177 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_4,-74.61888102,39.37392017,105 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_40,-74.564892,39.4152055,179 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_41,-74.56464585,39.41676125,181 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,RES3A,3001 -0111_1171.06_42,-74.69947344,39.63415321,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1171.06_42_C0001,-74.62709682,39.43619122,197 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.06_42_C0002,-74.62931319,39.42024309,195 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.06_42_C0003,-74.62843746,39.42059819,193 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,GOV1,3004 -0111_1171.06_42_C0004,-74.626582,39.422008,191 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.06_42_C0005,-74.62740958,39.43595644,189 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.06_42_C0006,-74.63064982,39.42125305,187 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.06_42_C0007,-74.63389017,39.42403311,185 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1171.06_42_C0008,-74.62758252,39.41974981,183 SOUTHAMPTON DR,GALLOWAY TWP,35,2001,1,GOV1,3004 -0111_1171.06_43,-74.61726572,39.46183015,101 BREWSTER DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_44,-74.69218619,39.41456847,103 BREWSTER DR,GALLOWAY TWP,16,2000,1,REL1,3004 -0111_1171.06_45,-74.58650778,39.44532879,105 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_46,-74.5502085,39.46274,107 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_47,-74.532581,39.4513225,109 BREWSTER DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_48,-74.5491165,39.469595,111 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_49,-74.54215273,39.45874657,113 BREWSTER DR,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1171.06_5,-74.58996337,39.37753637,107 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_50,-74.5325565,39.4688965,115 BREWSTER DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_51,-74.691184,39.4204275,117 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_52,-74.6909195,39.4160645,119 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_53,-74.597538,39.436257,121 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_54,-74.56347427,39.46863367,123 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_55,-74.6086955,39.43937,125 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_56,-74.55116473,39.46978861,127 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_57,-74.54718823,39.46877806,129 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_58,-74.6084705,39.439324,131 BREWSTER DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.06_59,-74.578734,39.442929,133 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_6,-74.58981323,39.38072533,109 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3004 -0111_1171.06_60,-74.5550235,39.4672525,135 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_61,-74.61278104,39.43968832,137 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_62,-74.5831735,39.4954415,141 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_63,-74.5564285,39.472351,143 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_64,-74.57019516,39.4894832,145 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_65,-74.56593608,39.47638468,147 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_66,-74.53462833,39.50228599,149 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_67,-74.5351975,39.470841,151 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_68,-74.53246332,39.47191002,153 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_69,-74.555729,39.473647,155 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_7,-74.5672895,39.402633,111 SOUTHAMPTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_70,-74.60352157,39.50186152,157 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_71,-74.5716825,39.4951065,159 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_72,-74.557223,39.4780605,161 BREWSTER DR,GALLOWAY TWP,16,2002,1,COM1,3004 -0111_1171.06_73,-74.55590254,39.47471575,163 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_74,-74.54243578,39.47606169,165 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_75,-74.55021436,39.47552222,167 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES3A,3001 -0111_1171.06_76,-74.57580305,39.48129948,169 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_77,-74.57552435,39.47898963,171 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_8,-74.59394799,39.37907918,113 SOUTHAMPTON DR,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1171.06_81,-74.88081284,39.47326533,103 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_82,-74.84176425,39.48121444,105 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_83,-74.82430115,39.48849278,107 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_84,-74.83611553,39.48296467,109 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_85,-74.8373805,39.486317,111 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_86,-74.82943886,39.48670379,113 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_87,-74.8807635,39.4575445,112 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_88,-74.855557,39.4456575,110 HYANNIS CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_89,-74.88031503,39.44667452,108 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_9,-74.59185428,39.3790029,115 SOUTHAMPTON DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.06_90,-74.781249,39.499717,106 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_91,-74.83611717,39.4531374,104 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_92,-74.75570691,39.45382186,102 HYANNIS CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_93,-74.71033055,39.47436563,100 HYANNIS CT,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1171.06_94,-74.8636915,39.4861805,177 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.06_95,-74.7513065,39.452108,179 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_1,-74.69088574,39.51853249,158 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_10,-74.64444134,39.52841603,124 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_11,-74.63870484,39.53175502,122 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_12,-74.6413385,39.5277795,120 BREWSTER DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.07_13,-74.4880945,39.350894,106 BREWSTER DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.07_14,-74.62262092,39.53043365,104 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_15,-74.63098858,39.52316114,102 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_16,-74.63436347,39.53323984,100 BREWSTER DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1171.07_17,-74.646576,39.5326365,101 HARWICH WAY,GALLOWAY TWP,16,2002,1,COM1,3004 -0111_1171.07_18,-74.6436465,39.532487,103 HARWICH WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_19,-74.65161435,39.52990693,105 HARWICH WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_2,-74.69980194,39.5131808,156 BREWSTER DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1171.07_20,-74.65024946,39.53029066,107 HARWICH WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_21,-74.653621,39.5346535,109 HARWICH WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_22,-74.648919,39.5239835,111 HARWICH WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_23,-74.64846553,39.53330007,113 HARWICH WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_24,-74.66074777,39.54244325,117 HARWICH WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_25,-74.6386675,39.532824,BREWSTER DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.07_3,-74.65805412,39.54049123,154 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_4,-74.6927605,39.5081735,152 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_5,-74.644904,39.5380415,150 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_6,-74.64176159,39.52823384,132 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.07_7,-74.6352319,39.53158526,130 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_8,-74.64027655,39.53040183,128 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.07_9,-74.63540016,39.53057553,126 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.08_1,-74.6509145,39.5741625,180 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.08_10,-74.62453115,39.60809454,110 HARWICH WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.08_11,-74.64612517,39.602495,108 HARWICH WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.08_12,-74.70427203,39.57237884,106 HARWICH WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.08_13,-74.70447771,39.58622931,104 HARWICH WAY,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1171.08_14,-74.6979287,39.59487559,102 HARWICH WAY,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_1171.08_15,-74.62474156,39.61017338,100 HARWICH WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.08_16,-74.635564,39.6205415,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171.08_2,-74.694046,39.554985,178 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.08_3,-74.6869946,39.54998785,176 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.08_4,-74.67930845,39.55275136,174 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.08_5,-74.6847875,39.5541165,172 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.08_6,-74.6525285,39.5485235,170 BREWSTER DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171.08_7,-74.65005283,39.57306144,168 BREWSTER DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.08_8,-74.65157784,39.55341284,114 HARWICH WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1171.08_9,-74.65577061,39.57769885,112 HARWICH WAY,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171_1,-74.512791,39.328106,501 GREAT CREEK RD,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_1171_17,-74.45460387,39.34827742,570 GALLOWAY RD,GALLOWAY TWP,,2005,1,RES1,3001 -0111_1171_19.01,-74.592372,39.4833725,119 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1171_19.02,-74.47256886,39.45657949,121 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1171_2,-74.842834,39.481984,507 GREAT CREEK RD,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_1171_20.01,-74.66411781,39.46175156,115 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_1171_20.02,-74.36179501,39.41754676,113 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1171_22.01,-74.49922111,39.42318926,141 OLD PORT REPUBLIC RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1171_22.02,-74.59615457,39.37827403,143 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1171_23,-74.53605533,39.41240899,145 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1171_24.02,-74.80622084,39.64223003,149 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1171_24.03,-74.52612766,39.31268397,147 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1171_27,-74.7135525,39.4486545,601 GALLOWAY RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1171_28,-74.50845981,39.40575597,607 GALLOWAY RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1171_3.01,-74.49810832,39.33460503,160 SYLVAN AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1171_3.02,-74.569859,39.3480125,156 SYLVAN AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_1171_3.03,-74.61166243,39.32648275,162 SYLVAN AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1171_30,-74.37111658,39.40706932,608 GALLOWAY RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1171_31,-74.385225,39.3921105,609 GALLOWAY RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1171_32,-74.60040816,39.32801023,611 GALLOWAY RD,GALLOWAY TWP,16,1946,2,RES1,3001 -0111_1171_35,-74.64016914,39.53547995,159 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_1171_37,-74.75568031,39.43154097,165 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1171_38.01,-74.70601003,39.48197533,624 GALLOWAY RD,GALLOWAY TWP,16,1956,2,RES1,3001 -0111_1171_38.02,-74.862384,39.57438,169 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1896,1,RES1,3001 -0111_1171_39,-74.50570521,39.41223866,171 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1171_4.02,-74.7508465,39.4537005,625 GREAT CREEK RD,GALLOWAY TWP,16,1996,2,RES1,3001 -0111_1171_4.03,-74.79398816,39.62186456,637 GREAT CREEK RD,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1171_4.04,-74.70095431,39.44092246,183-195 S NEW YORK RD,GALLOWAY TWP,,2002,1,RES1,3001 -0111_1171_4.06,-74.92787393,39.51624171,622 GALLOWAY RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1171_4.07,-74.6045625,39.3644185,GREAT CREEK RD,GALLOWAY TWP,,0,1,COM8,3004 -0111_1171_4.09,-74.51128905,39.32062517,612 GALLOWAY RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1171_4.11,-74.58077392,39.32935952,616 GALLOWAY RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1171_4.12,-74.3894465,39.3900975,618 GALLOWAY RD,GALLOWAY TWP,16,1990,1,COM7,3004 -0111_1171_4.13,-74.45264678,39.50041121,620 GALLOWAY RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1171_40,-74.605379,39.482289,173 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_1171_42,-74.687957,39.359535,175 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1938,1,RES1,3001 -0111_1171_43,-74.60248592,39.31228818,181 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1926,1,RES3A,3001 -0111_1171_44,-74.63611262,39.43560131,183 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1171_45,-74.68891384,39.58444683,177 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1171_46,-74.6307285,39.5188255,185 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1171_48.02,-74.80542745,39.63042334,635 GREAT CREEK RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1171_49,-74.59588566,39.37919271,181 S NEW YORK RD,GALLOWAY TWP,16,1896,1,RES1,3001 -0111_1171_5,-74.55099966,39.37417298,154 SYLVAN AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1171_50,-74.85321794,39.56059526,177 S NEW YORK RD,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_1172_1,-74.63509653,39.52995316,173 S NEW YORK RD,GALLOWAY TWP,,1909,1,RES1,3001 -0111_1172_10,-74.60043991,39.31650646,155 S NEW YORK RD,GALLOWAY TWP,16,1933,1,RES1,3001 -0111_1172_11,-74.57912885,39.33739152,153 S NEW YORK RD,GALLOWAY TWP,16,1930,4,RES1,3001 -0111_1172_12,-74.59034172,39.32074749,174 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1172_14,-74.44859119,39.37232679,172 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1172_19,-74.47921983,39.34909351,149 S NEW YORK RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1172_20,-74.715588,39.4529055,145 S NEW YORK RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1172_21,-74.60083683,39.41840343,143 S NEW YORK RD,GALLOWAY TWP,,1911,1,RES1,3001 -0111_1172_22,-74.58850747,39.42783694,141 S NEW YORK RD,GALLOWAY TWP,16,1951,1,RES1,3002 -0111_1172_3,-74.5569847,39.47030108,169 S NEW YORK RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1172_4,-74.55708022,39.4744681,167 S NEW YORK RD,GALLOWAY TWP,,1920,1,RES1,3001 -0111_1172_6,-74.532047,39.3833875,163 S NEW YORK RD,GALLOWAY TWP,16,1886,1,GOV1,3004 -0111_1172_7,-74.71196534,39.47327848,182 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1172_8,-74.5041735,39.4327905,159 S NEW YORK RD,GALLOWAY TWP,16,1885,1,RES1,3001 -0111_1173.01_1.04,-74.78273572,39.65229479,156 OLD PORT REPUBLIC RD,GALLOWAY TWP,15,1946,1,RES1,3001 -0111_1173.01_1.05,-74.505691,39.4124315,154 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_1173.01_10,-74.96985514,39.51256431,103 S NEW YORK RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.01_11,-74.51747383,39.40385043,101 S NEW YORK RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.01_12,-74.40249414,39.38847424,71 S NEW YORK RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1173.01_13.01,-74.4995356,39.52501255,69 S NEW YORK RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1173.01_13.02,-74.44763031,39.37437343,65 S NEW YORK RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1173.01_14.01,-74.57686568,39.35508451,63 S NEW YORK RD,GALLOWAY TWP,16,2002,1,RES1,3004 -0111_1173.01_14.02,-74.61597108,39.31142814,63A S NEW YORK RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.01_15.02,-74.8660485,39.593322,61 S NEW YORK RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1173.01_15.04,-74.50707397,39.40363168,57 S NEW YORK RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1173.01_15.10,-74.58167814,39.54271817,132 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.01_15.11,-74.60842935,39.31508331,128 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1954,1,GOV1,3004 -0111_1173.01_15.12,-74.85415146,39.36973281,126 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_1173.01_15.13,-74.50385534,39.51728301,124 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1173.01_15.14,-74.56978843,39.47831215,122 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_1173.01_16.01,-74.63103753,39.39135768,502 HERITAGE CT,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1173.01_16.02,-74.62541369,39.41727607,504 HERITAGE CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.01_16.03,-74.81968929,39.65281761,506 HERITAGE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1173.01_16.04,-74.51295256,39.5033909,508 HERITAGE CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1173.01_16.05,-74.61913612,39.39124366,510 HERITAGE CT,GALLOWAY TWP,17,2002,1,RES1,3001 -0111_1173.01_16.06,-74.792686,39.630319,512 HERITAGE CT,GALLOWAY TWP,17,2000,1,RES1,3001 -0111_1173.01_16.07,-74.5462015,39.530066,82 OLD PORT REPUBLIC RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1173.01_17.01,-74.6029075,39.3707215,501 HERITAGE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.01_17.02,-74.50897836,39.46554539,503 HERITAGE CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1173.01_17.03,-74.61371665,39.49881798,505 HERITAGE CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.01_17.04,-74.5292465,39.3838905,507 HERITAGE CT,GALLOWAY TWP,16,1999,1,RES1,3002 -0111_1173.01_17.05,-74.85663016,39.55293597,509 HERITAGE CT,GALLOWAY TWP,17,2000,1,RES1,3001 -0111_1173.01_2.01,-74.52293627,39.38751735,135 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.01_2.02,-74.62753846,39.51408051,131 S NEW YORK RD,GALLOWAY TWP,50,1955,1,RES1,3001 -0111_1173.01_3,-74.4990345,39.334013,150 OLD PORT REPUBLIC RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.01_5,-74.7242685,39.589362,123 S NEW YORK RD,GALLOWAY TWP,15,1936,1,RES1,3001 -0111_1173.01_50,-74.62788102,39.44364947,45 S NEW YORK RD,GALLOWAY TWP,,1989,1,RES1,3001 -0111_1173.01_51,-74.61561656,39.42916231,545 E QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.01_7,-74.58781936,39.35918499,119 S NEW YORK RD,GALLOWAY TWP,45,1890,3,GOV1,3004 -0111_1173.01_8.02,-74.69468713,39.58144585,109 S NEW YORK RD,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_1173.01_9.01,-74.39953267,39.38620351,107 S NEW YORK RD,GALLOWAY TWP,16,1919,1,RES1,3001 -0111_1173.01_9.02,-74.51036604,39.33373626,105 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.02_1.05,-74.53660282,39.39112222,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.02_1.06,-74.55317713,39.46848244,1 S NEW YORK RD,GALLOWAY TWP,,1999,1,GOV1,3004 -0111_1173.02_1.07,-74.6318053,39.51657006,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.02_2.01_C0341,-74.71508303,39.46510684,51 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0342,-74.452366,39.5001435,53 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0343,-74.516871,39.528425,55 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0344,-74.63602878,39.34179634,57 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0345,-74.854651,39.5607475,59 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0346,-74.50965467,39.33576405,61 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0347,-74.5443985,39.3754735,63 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,COM4,3004 -0111_1173.02_2.01_C0348,-74.5123215,39.47546,49 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0371,-74.7276045,39.584077,3 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0372,-74.6329865,39.355283,5 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,IND2,3002 -0111_1173.02_2.01_C0373,-74.45496729,39.37388883,7 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0374,-74.46375363,39.48786961,9 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0375,-74.62880446,39.41249023,11 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0376,-74.4628635,39.354047,13 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0377,-74.78707222,39.67814665,15 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0378,-74.60498845,39.48924794,1 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0381,-74.56721275,39.35208186,4 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0382,-74.43838372,39.51750531,6 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0383,-74.63693671,39.46956977,8 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0384,-74.51307109,39.4441164,10 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0385,-74.73257135,39.59018904,12 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0386,-74.41334582,39.37100602,14 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0387,-74.74801195,39.41772319,16 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0388,-74.5037374,39.50372235,2 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0391,-74.7047555,39.467366,20 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0392,-74.62875871,39.36482227,22 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0393,-74.50193309,39.33174065,24 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0394,-74.62729227,39.3611251,26 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0395,-74.58308733,39.50096048,28 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0396,-74.49067283,39.37912639,30 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0397,-74.71840594,39.46164982,32 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0398,-74.58419417,39.32392604,18 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0401,-74.63334916,39.36293883,36 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0402,-74.63826904,39.44177667,38 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0403,-74.7121764,39.4155674,40 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0404,-74.46408579,39.35792328,42 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0405,-74.57788826,39.33578711,44 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0406,-74.62240744,39.43335093,46 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0407,-74.59109404,39.38198673,48 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0408,-74.36565316,39.40728352,34 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0411,-74.56583577,39.35217536,52 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0412,-74.9319795,39.483047,54 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0413,-74.46238116,39.34943598,56 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0414,-74.48662933,39.34797756,58 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_1173.02_2.01_C0415,-74.61079493,39.31907816,60 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_1173.02_2.01_C0416,-74.74868975,39.41757255,62 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0417,-74.5750476,39.42672581,64 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0418,-74.50509998,39.41093325,50 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0421,-74.8167735,39.3980615,68 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0422,-74.4580285,39.47525,70 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0423,-74.5207381,39.39501375,72 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0424,-74.50784265,39.33013352,74 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0425,-74.55952556,39.40506335,76 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0426,-74.50672114,39.40370263,78 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0427,-74.619421,39.385147,80 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0428,-74.401042,39.3868345,66 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0431,-74.81290089,39.56140659,84 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_1173.02_2.01_C0432,-74.68964342,39.4465178,86 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0433,-74.57898829,39.33179148,88 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0434,-74.4924975,39.4336385,90 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0435,-74.51064132,39.33264172,92 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0436,-74.498951,39.335186,94 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0437,-74.483798,39.3513345,96 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.01_C0438,-74.566707,39.362029,82 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0151,-74.6109435,39.3765305,4 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0152,-74.642821,39.5332405,6 MALIBU WAY,GALLOWAY TWP,33,1983,1,COM4,3004 -0111_1173.02_2.02_C0153,-74.59817376,39.49748434,8 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0154,-74.82665587,39.3809333,10 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES3A,3001 -0111_1173.02_2.02_C0155,-74.46746524,39.49182139,12 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0156,-74.71071122,39.4298772,14 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0157,-74.5577075,39.4064725,16 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0158,-74.92937267,39.51303234,2 MALIBU WAY,GALLOWAY TWP,33,1983,1,IND1,3004 -0111_1173.02_2.02_C0161,-74.72408778,39.46195872,116 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0162,-74.490238,39.3339065,118 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0163,-74.58965282,39.35318946,120 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0164,-74.8171325,39.640955,122 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0165,-74.461837,39.3580745,124 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0166,-74.47964558,39.33981094,126 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0167,-74.61790357,39.55650524,128 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,COM3,3004 -0111_1173.02_2.02_C0168,-74.48944846,39.35042468,114 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,GOV1,3004 -0111_1173.02_2.02_C0171,-74.92524372,39.47533228,148 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0172,-74.5365765,39.304021,150 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0173,-74.50426166,39.42803244,152 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0174,-74.68931435,39.48745404,154 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0175,-74.5516635,39.373203,156 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,GOV1,3004 -0111_1173.02_2.02_C0176,-74.69923099,39.63986482,158 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0177,-74.5918475,39.377092,160 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0178,-74.48167214,39.53801738,146 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0331,-74.56593139,39.35790614,67 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0332,-74.786349,39.6172355,69 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0333,-74.60656025,39.38634775,71 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0334,-74.881933,39.591455,73 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0335,-74.61266678,39.48658594,75 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0336,-74.5810225,39.334154,77 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0337,-74.54332731,39.54940331,79 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0338,-74.5468269,39.37226527,65 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.02_C0441,-74.4795205,39.443917,100 MEADOW RIDGE RD,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_1173.02_2.02_C0442,-74.629863,39.3571925,102 MEADOW RIDGE RD,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_1173.02_2.02_C0443,-74.6371625,39.5308095,104 MEADOW RIDGE RD,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_1173.02_2.02_C0444,-74.63251245,39.41903769,106 MEADOW RIDGE RD,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_1173.02_2.02_C0445,-74.51274052,39.32995637,108 MEADOW RIDGE RD,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_1173.02_2.02_C0446,-74.92759397,39.51828234,110 MEADOW RIDGE RD,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_1173.02_2.02_C0447,-74.50190298,39.41299276,112 MEADOW RIDGE RD,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_1173.02_2.02_C0448,-74.4908085,39.3319135,98 MEADOW RIDGE RD,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_1173.02_2.02_C0451,-74.50801582,39.40612158,3 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0452,-74.56645716,39.3654466,5 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0453,-74.65134508,39.53246235,7 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0454,-74.5973475,39.309695,9 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0455,-74.60098387,39.49849792,11 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0456,-74.5346185,39.4911625,13 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0457,-74.655462,39.366723,15 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.02_C0458,-74.6677945,39.35831227,1 MALIBU WAY,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.03_C0181,-74.65098492,39.35497074,164 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0182,-74.61731104,39.4862908,166 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0183,-74.55159694,39.46958071,168 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0184,-74.71204967,39.4381695,170 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0185,-74.72731,39.4510445,172 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0186,-74.60978525,39.43120226,174 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0187,-74.6999375,39.5117255,176 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0188,-74.87056266,39.4532025,162 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0191,-74.44103585,39.48890143,180 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0192,-74.4667145,39.3467485,182 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0193,-74.3626515,39.4128865,184 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0194,-74.49397377,39.43239663,186 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0195,-74.71796825,39.39192708,188 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0196,-74.737483,39.468048,190 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0197,-74.6314825,39.356687,192 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0198,-74.39183346,39.39184384,178 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0201,-74.84009,39.596456,196 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0202,-74.58544924,39.35774098,198 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0203,-74.48401867,39.34922995,200 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0204,-74.3701005,39.4047375,202 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0205,-74.52743,39.390303,204 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0206,-74.38492795,39.39827415,206 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0207,-74.581652,39.3812595,208 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0208,-74.630957,39.523943,194 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0211,-74.48955782,39.34992455,212 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0212,-74.5089775,39.435054,214 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0213,-74.60210968,39.40988534,216 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0214,-74.52423093,39.31707184,218 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0215,-74.881887,39.543607,220 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0216,-74.53674617,39.53539752,222 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0217,-74.83041721,39.49001744,224 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.03_C0218,-74.82123358,39.39836622,210 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0011,-74.63081996,39.41982119,3 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0012,-74.58168886,39.44565028,5 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0013,-74.608187,39.323952,7 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0014,-74.6709274,39.36154129,9 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0015,-74.5324556,39.54467203,11 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0016,-74.81703516,39.52303197,13 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0017,-74.43992438,39.36896032,15 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0018,-74.5654908,39.37402608,1 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0021,-74.71275461,39.46588812,19 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0022,-74.50046484,39.45945151,21 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_1173.02_2.04_C0023,-74.6251795,39.519968,23 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0024,-74.6004555,39.410336,25 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0025,-74.472168,39.3446535,27 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0026,-74.363848,39.4156325,29 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0027,-74.49065054,39.43180084,31 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0028,-74.484268,39.34043,17 CHESAPEAKE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0031,-74.4967455,39.453984,3 CLEARWATER WAY,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0032,-74.63188283,39.38283804,5 CLEARWATER WAY,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0033,-74.36564778,39.4099314,7 CLEARWATER WAY,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0034,-74.82951121,39.45224543,9 CLEARWATER WAY,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0035,-74.64575573,39.62441758,11 CLEARWATER WAY,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0036,-74.597936,39.436819,13 CLEARWATER WAY,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0037,-74.84068709,39.49013376,15 CLEARWATER WAY,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0038,-74.36951309,39.41657274,1 CLEARWATER WAY,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.04_C0041,-74.8546775,39.367679,195 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0042,-74.47136315,39.49101143,197 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0043,-74.6343575,39.370925,199 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0044,-74.50520083,39.48157131,201 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0045,-74.43197734,39.36879463,203 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0046,-74.497482,39.435988,205 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0047,-74.92898361,39.52310684,207 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0048,-74.500863,39.431925,193 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0051,-74.68248612,39.3892569,179 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0052,-74.5334365,39.3150685,181 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0053,-74.54284817,39.5306695,183 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0054,-74.55287799,39.38164876,185 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0055,-74.59273611,39.34906666,187 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0056,-74.48763946,39.44258805,189 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0057,-74.40136,39.3858495,191 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0058,-74.926062,39.5253265,177 MEADOW RIDGE RD,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0061,-74.60547281,39.32002795,4 CLEARWATER WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0062,-74.624433,39.379358,6 CLEARWATER WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0063,-74.46230255,39.3475433,8 CLEARWATER WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0064,-74.492351,39.3337965,10 CLEARWATER WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0065,-74.5985665,39.3180845,12 CLEARWATER WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0066,-74.804526,39.6293175,14 CLEARWATER WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0067,-74.369561,39.402379,16 CLEARWATER WAY,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_1173.02_2.04_C0068,-74.5974605,39.3169735,2 CLEARWATER WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0071,-74.65434305,39.40400271,211 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0072,-74.3581415,39.4130405,213 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0073,-74.42618204,39.36504318,215 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0074,-74.93588456,39.52038531,217 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0075,-74.74917939,39.44615271,219 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0076,-74.4357235,39.369105,221 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0077,-74.548408,39.403438,223 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.04_C0078,-74.86293847,39.44059094,209 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3004 -0111_1173.02_2.04_C0091,-74.49723062,39.51994183,621 LAKEFRONT CIR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0092,-74.53718677,39.39048043,623 LAKEFRONT CIR,GALLOWAY TWP,33,1989,1,GOV1,3004 -0111_1173.02_2.04_C0093,-74.5550275,39.471753,625 LAKEFRONT CIR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0094,-74.5901565,39.424899,627 LAKEFRONT CIR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0095,-74.4748825,39.339499,629 LAKEFRONT CIR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.04_C0096,-74.55865035,39.39830549,631 LAKEFRONT CIR,GALLOWAY TWP,33,1988,1,RES3B,3001 -0111_1173.02_2.04_C0097,-74.79356383,39.5367501,633 LAKEFRONT CIR,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_1173.02_2.04_C0098,-74.5921554,39.37257148,635 LAKEFRONT CIR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.05_C0081,-74.37040733,39.40392252,227 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.05_C0082,-74.50393036,39.32872017,229 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.05_C0083,-74.537613,39.39231194,231 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.05_C0084,-74.4061115,39.3783385,233 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.05_C0085,-74.514159,39.39913683,235 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.05_C0086,-74.52944036,39.30892945,237 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.05_C0087,-74.62465818,39.38340695,239 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.05_C0088,-74.92609132,39.51023826,225 MEADOW RIDGE RD,GALLOWAY TWP,33,1982,1,RES1,3001 -0111_1173.02_2.05_C0221,-74.76839954,39.34843484,228 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0222,-74.8813565,39.5972605,230 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0223,-74.52991291,39.52418729,232 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0224,-74.63468153,39.42159331,234 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,COM1,3004 -0111_1173.02_2.05_C0225,-74.3833575,39.395443,236 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,GOV1,3004 -0111_1173.02_2.05_C0226,-74.7549385,39.4482145,238 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,GOV1,3004 -0111_1173.02_2.05_C0227,-74.590165,39.364895,240 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0228,-74.673832,39.371314,226 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0231,-74.56500968,39.36397052,244 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0232,-74.790578,39.4455505,246 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0233,-74.37595964,39.41360518,248 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0234,-74.7712149,39.63778236,250 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0235,-74.39038617,39.39175145,252 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0236,-74.6425685,39.3667415,254 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0237,-74.61185351,39.36857586,256 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_1173.02_2.05_C0238,-74.54256107,39.51799272,242 MEADOW RIDGE RD,GALLOWAY TWP,33,1983,1,RES3A,3001 -0111_1173.02_2.06_C0101,-74.58240969,39.41365853,115 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_1173.02_2.06_C0102,-74.574495,39.5347685,117 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,GOV1,3002 -0111_1173.02_2.06_C0103,-74.5635405,39.412023,119 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0104,-74.4888834,39.43073246,121 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0105,-74.9726875,39.507508,123 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0106,-74.52200117,39.31439012,125 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_1173.02_2.06_C0107,-74.48917605,39.51946721,127 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0108,-74.56647704,39.41902368,113 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES3B,3001 -0111_1173.02_2.06_C0111,-74.44693322,39.48669606,99 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_1173.02_2.06_C0112,-74.51777838,39.40031928,101 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0113,-74.71310326,39.43127846,103 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0114,-74.796444,39.64158867,105 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0115,-74.50923877,39.32862486,107 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0116,-74.44704331,39.37106297,109 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_1173.02_2.06_C0117,-74.506737,39.4918505,111 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0118,-74.59315731,39.49046431,97 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0121,-74.44750906,39.37415397,132 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0122,-74.44283914,39.35847815,134 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0123,-74.56262035,39.36449151,136 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0124,-74.5749846,39.3394513,138 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0125,-74.63629213,39.38555336,140 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0126,-74.46644,39.346075,142 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0127,-74.63619506,39.3844289,144 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0128,-74.42293332,39.36665555,130 MEADOW RIDGE RD,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0131,-74.58948768,39.49155846,83 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0132,-74.579425,39.4763025,85 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0133,-74.610635,39.3169365,87 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0134,-74.44992533,39.3555575,89 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0135,-74.7522195,39.450606,91 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0136,-74.5810845,39.412894,93 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0137,-74.50637881,39.33218687,95 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_1173.02_2.06_C0138,-74.94909854,39.50477634,81 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0141,-74.479461,39.346808,20 MALIBU WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0142,-74.59709392,39.43741183,22 MALIBU WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0143,-74.54897219,39.51603714,24 MALIBU WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0144,-74.637476,39.469581,26 MALIBU WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0145,-74.4734094,39.34122923,28 MALIBU WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0146,-74.5497235,39.3744745,30 MALIBU WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0147,-74.75859672,39.43081327,32 MALIBU WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0148,-74.6267865,39.4390585,18 MALIBU WAY,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0241,-74.538365,39.37961,147 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0242,-74.57216057,39.33825004,149 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0243,-74.38686169,39.39668169,151 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0244,-74.54691128,39.47404347,153 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0245,-74.55258367,39.42621949,155 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0246,-74.60965235,39.47562609,157 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0247,-74.38633568,39.39149984,159 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0248,-74.9261125,39.509436,145 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0251,-74.464756,39.345078,131 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0252,-74.73810493,39.46499366,133 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0253,-74.54241537,39.39242531,135 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0254,-74.49767072,39.45339125,137 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0255,-74.460087,39.4714565,139 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0256,-74.76243614,39.42995028,141 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_1173.02_2.06_C0257,-74.65329685,39.39622575,143 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0258,-74.487091,39.439006,129 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.06_C0321,-74.95595,39.5214225,19 MALIBU WAY,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_1173.02_2.06_C0322,-74.49451368,39.42087748,21 MALIBU WAY,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_1173.02_2.06_C0323,-74.54721891,39.37625064,23 MALIBU WAY,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.06_C0324,-74.56403532,39.34790654,25 MALIBU WAY,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.06_C0325,-74.51409001,39.40548383,27 MALIBU WAY,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.06_C0326,-74.4939195,39.341287,29 MALIBU WAY,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.06_C0327,-74.767932,39.3003175,31 MALIBU WAY,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.06_C0328,-74.5045955,39.4447785,17 MALIBU WAY,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0261,-74.890986,39.5582475,114 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0262,-74.53120625,39.49820454,116 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0263,-74.59055075,39.36470818,118 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0264,-74.79559006,39.60429006,120 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0265,-74.5039365,39.4145925,122 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0266,-74.51750974,39.40949735,124 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_1173.02_2.07_C0267,-74.3759005,39.4019385,126 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0268,-74.69477,39.447785,112 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0271,-74.87203511,39.59188484,130 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0272,-74.92569128,39.50706893,132 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0273,-74.53389785,39.37833809,134 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0274,-74.49708876,39.33599217,136 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0275,-74.49777442,39.32821633,138 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_1173.02_2.07_C0276,-74.5033925,39.458035,140 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0277,-74.6163949,39.6214227,142 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0278,-74.39058866,39.39097003,128 DRIFTWOOD CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_1173.02_2.07_C0281,-74.51364715,39.32642753,146 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0282,-74.84156589,39.56228214,148 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0283,-74.7733997,39.63693284,150 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0284,-74.61364893,39.42032406,152 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0285,-74.512182,39.398369,154 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3002 -0111_1173.02_2.07_C0286,-74.3801075,39.416598,156 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0287,-74.61814759,39.32063809,158 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0288,-74.565839,39.4779665,144 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0291,-74.53648529,39.39820684,4 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3002 -0111_1173.02_2.07_C0292,-74.67771488,39.37833525,6 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_1173.02_2.07_C0293,-74.5748034,39.35195322,8 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0294,-74.64036959,39.38317941,10 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0295,-74.63602447,39.3643783,12 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0296,-74.79802042,39.65320566,14 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3002 -0111_1173.02_2.07_C0297,-74.9447785,39.517935,16 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0298,-74.56117043,39.50297612,2 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0301,-74.45699323,39.46316491,20 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0302,-74.50139465,39.44363898,22 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0303,-74.44597885,39.35751167,24 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0304,-74.55830415,39.36435073,26 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0305,-74.924847,39.482085,28 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0306,-74.57585896,39.40633901,30 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0307,-74.95551117,39.51175434,32 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0308,-74.55090903,39.47550126,18 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0311,-74.874731,39.493037,36 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0312,-74.6348575,39.43441,38 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_1173.02_2.07_C0313,-74.6940375,39.417666,40 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_1173.02_2.07_C0314,-74.63779809,39.41236715,42 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0315,-74.40017441,39.38377998,44 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_1173.02_2.07_C0316,-74.37790134,39.39791258,46 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0317,-74.530013,39.457979,48 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0318,-74.90827667,39.49550998,34 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_1173.02_2.07_C0351,-74.48188746,39.35032031,35 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0352,-74.844045,39.455195,37 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0353,-74.47944707,39.43195754,39 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0354,-74.508191,39.3380105,41 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3002 -0111_1173.02_2.07_C0355,-74.8164975,39.6528385,43 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_1173.02_2.07_C0356,-74.72982968,39.4574469,45 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0357,-74.8189745,39.6415575,47 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0358,-74.7314845,39.460447,33 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0361,-74.94629922,39.50481364,19 DRIFTWOOD CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_1173.02_2.07_C0362,-74.59298679,39.35818794,21 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0363,-74.557327,39.39646,23 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_1173.02_2.07_C0364,-74.4899675,39.5344485,25 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0365,-74.48806153,39.33376075,27 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0366,-74.59680407,39.4115039,29 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0367,-74.66420148,39.46088817,31 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_2.07_C0368,-74.94134167,39.52445141,17 DRIFTWOOD CT,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_1173.02_32.02,-74.50492416,39.33333702,650 E MOSS MILL RD,GALLOWAY TWP,16,1952,1,RES1,3002 -0111_1173.03_1,-74.56937465,39.34733133,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.03_1_C0401,-74.6306075,39.4168335,38 STEEDS ST,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C0402,-74.50991076,39.40108166,40 STEEDS ST,GALLOWAY TWP,35,1990,1,RES3A,3001 -0111_1173.03_1_C0403,-74.37572067,39.40335846,42 STEEDS ST,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0404,-74.70050173,39.42060696,44 STEEDS ST,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0405,-74.643903,39.530441,46 STEEDS ST,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0406,-74.87233626,39.52816889,48 STEEDS ST,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0407,-74.503674,39.430109,32 STEEDS ST,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C0408,-74.59345546,39.35148377,34 STEEDS ST,GALLOWAY TWP,35,1990,1,RES3A,3001 -0111_1173.03_1_C0409,-74.58901727,39.32901005,36 STEEDS ST,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0410,-74.50524225,39.32602067,26 STEEDS ST,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0411,-74.94285725,39.52220984,28 STEEDS ST,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0412,-74.49038018,39.45177496,30 STEEDS ST,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0501,-74.51364823,39.44025763,73 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0502,-74.53043534,39.39002938,75 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0503,-74.77543365,39.66111487,77 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3002 -0111_1173.03_1_C0504,-74.538283,39.458684,79 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0505,-74.60550742,39.38337958,81 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3004 -0111_1173.03_1_C0506,-74.599888,39.431156,83 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C0507,-74.73429576,39.45315419,91 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0508,-74.62523266,39.36502324,93 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0509,-74.57597245,39.48017516,95 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C0510,-74.78735609,39.67772652,85 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0511,-74.7139131,39.46444084,87 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0512,-74.6265395,39.6111055,89 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0801,-74.56574764,39.37184448,86 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0802,-74.4631536,39.35964748,88 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0803,-74.60861017,39.32092846,90 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0804,-74.6570654,39.52098662,92 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0805,-74.75807952,39.43299784,94 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0806,-74.80811188,39.35295009,96 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0807,-74.516034,39.4629025,80 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0808,-74.76521584,39.48545881,82 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0809,-74.80143337,39.64483861,84 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C0810,-74.493227,39.342236,74 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0811,-74.5714455,39.479466,76 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0812,-74.50234373,39.50065803,78 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C0901,-74.5285357,39.41087531,62 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0902,-74.51795,39.3190645,64 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C0903,-74.79767195,39.63692616,66 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C0904,-74.37115053,39.40165517,68 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0905,-74.84857835,39.39337999,70 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0906,-74.6457585,39.4332815,72 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0907,-74.78157485,39.66110194,56 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3002 -0111_1173.03_1_C0908,-74.904796,39.4720235,58 TROTTERS LN,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.03_1_C0909,-74.85315738,39.44234274,60 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0910,-74.49120672,39.43263814,50 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C0911,-74.5415825,39.3904315,52 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES3A,3001 -0111_1173.03_1_C0912,-74.66999569,39.35447658,54 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C1001,-74.48882714,39.49644928,26 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C1002,-74.869378,39.5980175,28 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C1003,-74.55224359,39.40340932,30 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3002 -0111_1173.03_1_C1004,-74.59297482,39.33295201,32 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C1005,-74.440027,39.48648783,34 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C1006,-74.5002355,39.452506,36 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.03_1_C1007,-74.7623475,39.661404,44 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3002 -0111_1173.03_1_C1008,-74.53361315,39.38370604,46 TROTTERS LN,GALLOWAY TWP,35,1990,1,RES1,3002 -0111_1173.03_1_C1009,-74.60712163,39.50398818,48 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C1010,-74.49350087,39.38035754,38 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3004 -0111_1173.03_1_C1011,-74.75714627,39.43271313,40 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_1_C1012,-74.55744056,39.46873579,42 TROTTERS LN,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.03_23,-74.8517875,39.40334402,37 S NEW YORK RD,GALLOWAY TWP,,1926,1,GOV1,3004 -0111_1173.03_24.01,-74.81085286,39.63139605,33 S NEW YORK RD,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_1173.03_24.02,-74.490596,39.4668015,29 S NEW YORK RD,GALLOWAY TWP,,1999,1,COM5,3004 -0111_1173.03_25,-74.77836636,39.63242432,27 S NEW YORK RD,GALLOWAY TWP,17,1886,1,RES3A,3001 -0111_1173.04_1,-74.4981575,39.43071,WATERVIEW DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.04_1_C0011,-74.4845195,39.341286,113 EDGEWATER DR,GALLOWAY TWP,35,1984,1,COM1,3004 -0111_1173.04_1_C0012,-74.8809085,39.5982685,109 EDGEWATER DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0013,-74.86586979,39.48972413,105 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0014,-74.73403108,39.43797071,101 EDGEWATER DR,GALLOWAY TWP,35,1984,1,GOV1,3004 -0111_1173.04_1_C0015,-74.78773384,39.31158049,115 EDGEWATER DR,GALLOWAY TWP,35,1983,1,COM10,3003 -0111_1173.04_1_C0016,-74.58704604,39.41233123,111 EDGEWATER DR,GALLOWAY TWP,35,1984,1,COM4,3004 -0111_1173.04_1_C0017,-74.491177,39.336681,107 EDGEWATER DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0018,-74.45263161,39.49922987,103 EDGEWATER DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0021,-74.883193,39.5662155,129 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0022,-74.52551975,39.39913013,125 EDGEWATER DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0023,-74.492695,39.4210135,121 EDGEWATER DR,GALLOWAY TWP,35,1984,1,RES3A,3001 -0111_1173.04_1_C0024,-74.51374033,39.48545403,117 EDGEWATER DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0025,-74.5575355,39.475039,131 EDGEWATER DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0026,-74.6000015,39.5196235,127 EDGEWATER DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0027,-74.75642397,39.30877499,123 EDGEWATER DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0028,-74.62704227,39.43438252,119 EDGEWATER DR,GALLOWAY TWP,35,1982,1,RES1,3004 -0111_1173.04_1_C0031,-74.9616735,39.512003,145 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0032,-74.61103214,39.31850246,141 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0033,-74.46420592,39.49704087,137 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0034,-74.609405,39.3284775,133 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0035,-74.655274,39.543055,147 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0036,-74.63907126,39.36788816,143 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0037,-74.54605634,39.37715252,139 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0038,-74.78899,39.638572,135 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0041,-74.5243265,39.3140165,161 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0042,-74.63000099,39.52330133,157 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0043,-74.56487858,39.36434644,153 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0044,-74.80948435,39.63989808,149 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0045,-74.700227,39.649692,163 EDGEWATER DR,GALLOWAY TWP,35,1983,1,GOV1,3004 -0111_1173.04_1_C0046,-74.483862,39.3478015,159 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0047,-74.5263675,39.3851735,155 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0048,-74.573908,39.411123,151 EDGEWATER DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0051,-74.6178495,39.368788,14 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0052,-74.4550595,39.3792325,10 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0053,-74.43574488,39.36447933,6 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0054,-74.60244,39.432558,2 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0055,-74.45716601,39.4762454,16 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0056,-74.591684,39.3773855,12 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0057,-74.69370909,39.59088135,8 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0058,-74.4804755,39.3502445,4 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0061,-74.58850318,39.32176253,30 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0062,-74.53392853,39.40005253,26 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0063,-74.5106615,39.324898,22 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0064,-74.48865199,39.51995174,18 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0065,-74.6026864,39.50188107,32 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0066,-74.587965,39.369215,28 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0067,-74.65420481,39.36884718,24 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0068,-74.7536375,39.4319385,20 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0071,-74.63558913,39.43173846,46 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0072,-74.39902163,39.3881142,42 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0073,-74.5031595,39.336189,38 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0074,-74.6183871,39.37745767,34 WATERVIEW DR,GALLOWAY TWP,35,1983,1,GOV1,3004 -0111_1173.04_1_C0075,-74.84112167,39.54229128,48 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0076,-74.54384066,39.38574604,44 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0077,-74.53804919,39.31305644,40 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0078,-74.62076365,39.43772307,36 WATERVIEW DR,GALLOWAY TWP,35,1983,1,REL1,3004 -0111_1173.04_1_C0081,-74.50764818,39.42429852,50 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0082,-74.51883933,39.44555748,54 WATERVIEW DR,GALLOWAY TWP,35,1983,1,GOV1,3004 -0111_1173.04_1_C0083,-74.46696395,39.34486917,58 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0084,-74.37220471,39.41489992,62 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0085,-74.463709,39.354449,52 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.04_1_C0086,-74.79401596,39.52513282,56 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0087,-74.61811371,39.62119446,60 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0088,-74.58548273,39.38181258,64 WATERVIEW DR,GALLOWAY TWP,35,1983,1,GOV1,3004 -0111_1173.04_1_C0091,-74.6091455,39.352353,66 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0092,-74.60989624,39.31092222,70 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0093,-74.9520595,39.5331365,74 WATERVIEW DR,GALLOWAY TWP,35,1984,1,GOV1,3004 -0111_1173.04_1_C0094,-74.566198,39.47765983,78 WATERVIEW DR,GALLOWAY TWP,35,1982,1,GOV1,3004 -0111_1173.04_1_C0095,-74.3640735,39.4153655,68 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0096,-74.693774,39.589314,72 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.04_1_C0097,-74.41696334,39.36633083,76 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.04_1_C0098,-74.76640137,39.66521408,80 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.05_1,-74.54742819,39.39336037,565 CONSTITUTION DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_10,-74.60329191,39.50145075,545 CONSTITUTION CT,GALLOWAY TWP,17,2017,1,RES1,3001 -0111_1173.05_11,-74.6531885,39.5149025,CONSTITUTION CT,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1173.05_12,-74.60706321,39.36300409,543 CONSTITUTION CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_13,-74.60959825,39.37605809,541 CONSTITUTION CT,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.05_14,-74.63438556,39.34979534,539 CONSTITUTION CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_15,-74.8057333,39.48760114,537 CONSTITUTION CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_16,-74.53014964,39.45536663,535 REVERE WAY,GALLOWAY TWP,16,1988,1,AGR1,3001 -0111_1173.05_17,-74.60381287,39.3820623,533 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_18,-74.49037507,39.42193458,4 INDEPENDENCE PL,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_19,-74.62128004,39.38187386,6 INDEPENDENCE PL,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.05_2,-74.8201755,39.631728,563 CONSTITUTION DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_20,-74.54835395,39.37357134,8 INDEPENDENCE PL,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_21,-74.5044175,39.3400405,10 INDEPENDENCE PL,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_22,-74.538208,39.459015,12 INDEPENDENCE PL,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_1173.05_23,-74.514524,39.526822,14 INDEPENDENCE PL,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_24,-74.63591746,39.44369418,16 INDEPENDENCE PL,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_25,-74.60069369,39.4295146,17 INDEPENDENCE PL,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_26,-74.52632641,39.47376997,15 INDEPENDENCE PL,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_27,-74.3714025,39.4044305,13 INDEPENDENCE PL,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_28,-74.5082611,39.44447269,11 INDEPENDENCE PL,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_29,-74.80204828,39.30890208,9 INDEPENDENCE PL,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_3,-74.5711425,39.350132,561 CONSTITUTION DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_30,-74.6073595,39.346505,7 INDEPENDENCE PL,GALLOWAY TWP,16,1989,1,COM4,3004 -0111_1173.05_31,-74.58635,39.385004,5 INDEPENDENCE PL,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_32,-74.36728734,39.4111109,3 INDEPENDENCE PL,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_33,-74.49472663,39.44677907,531 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_34,-74.556573,39.4719175,529 REVERE WAY,GALLOWAY TWP,16,1988,1,IND1,3002 -0111_1173.05_35,-74.53321,39.3068715,527 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_36,-74.56581285,39.35644077,525 REVERE WAY,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_1173.05_37,-74.572211,39.3656825,523 REVERE WAY,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.05_38,-74.5047195,39.330727,521 REVERE WAY,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.05_39,-74.38928845,39.39094517,519 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_4,-74.844459,39.4021185,559 CONSTITUTION DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_40,-74.46118466,39.35355961,517 REVERE WAY,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_1173.05_41,-74.767289,39.6149785,515 REVERE WAY,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_1173.05_42,-74.4705135,39.3414625,513 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_43,-74.5951235,39.3820735,511 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_44,-74.60207096,39.36451901,509 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_45,-74.79138362,39.63929358,507 REVERE WAY,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.05_46,-74.60401299,39.5296515,505 REVERE WAY,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_47,-74.8069875,39.370274,503 REVERE WAY,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.05_48,-74.59312873,39.31794567,REVERE WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.05_49,-74.49811117,39.51381545,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.05_5,-74.6233625,39.4392795,CONSTITUTION DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.05_6,-74.5002816,39.33002316,555 CONSTITUTION CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_7,-74.441894,39.371197,551 CONSTITUTION CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.05_8,-74.59097715,39.43121392,549 CONSTITUTION CT,GALLOWAY TWP,17,2018,1,RES1,3001 -0111_1173.05_9,-74.54474128,39.38362711,547 CONSTITUTION CT,GALLOWAY TWP,17,2017,1,RES1,3001 -0111_1173.06_1,-74.84410064,39.58713683,565 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_10,-74.44247368,39.35767899,545 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_11,-74.61043167,39.37662002,543 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_12,-74.3667635,39.4138495,541 REVERE WAY,GALLOWAY TWP,16,1988,1,IND2,3004 -0111_1173.06_13,-74.8046525,39.6283795,CONSTITUTION DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.06_2,-74.51013565,39.48266955,563 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_3,-74.4066325,39.39313,561 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_4,-74.5807499,39.33946454,559 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_5,-74.60593123,39.50496795,555 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_6,-74.59683,39.37157,553 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_7,-74.59944695,39.3449488,551 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_8,-74.75408306,39.45403629,549 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.06_9,-74.61531532,39.33942544,547 REVERE WAY,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.07_1,-74.7579265,39.429351,CONSTITUTION CT,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.08_1,-74.500161,39.5138335,REVERE WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.09_1,-74.748693,39.4455145,CONSTITUTION DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.09_10,-74.57478642,39.3709098,521 SARATOGA PL,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1173.09_11,-74.52429654,39.45563019,526 SARATOGA PL,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.09_12,-74.36966866,39.40808376,528 SARATOGA PL,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1173.09_13,-74.748191,39.4523305,530 SARATOGA PL,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_1173.09_14,-74.52121706,39.41893937,532 SARATOGA PL,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.09_15,-74.5864785,39.3368075,534 SARATOGA PL,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_1173.09_16,-74.57665,39.4067825,536 SARATOGA PL,GALLOWAY TWP,16,1997,1,GOV1,3004 -0111_1173.09_17,-74.61714183,39.36464352,538 SARATOGA PL,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_1173.09_2,-74.939573,39.526468,537 SARATOGA PL,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_1173.09_23,-74.5326305,39.402086,536 REVERE WAY,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.09_24,-74.66352847,39.54715485,534 REVERE WAY,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.09_25,-74.60457839,39.32424457,532 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_26,-74.68210823,39.44534842,530 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_27,-74.52724766,39.38612199,528 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_28,-74.4604787,39.46959106,526 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_29,-74.49941932,39.4231836,524 REVERE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_3,-74.54307346,39.38349785,535 SARATOGA PL,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_1173.09_30,-74.52456584,39.44872202,522 REVERE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_31,-74.63250826,39.46378666,520 REVERE CT,GALLOWAY TWP,16,1988,1,RES1,3004 -0111_1173.09_32,-74.6844505,39.5101195,518 REVERE CT,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.09_33,-74.4999597,39.43077865,516 REVERE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_34,-74.599845,39.4339825,514 REVERE CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.09_35,-74.70113647,39.419538,512 REVERE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_36,-74.51135633,39.34010438,510 REVERE CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.09_37,-74.9315935,39.5300755,508 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_38,-74.60503193,39.32636067,506 REVERE WAY,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.09_39,-74.50836805,39.33962519,504 REVERE WAY,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.09_4,-74.52306141,39.4585726,533 SARATOGA PL,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.09_40,-74.84222389,39.38703135,502 REVERE WAY,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.09_41,-74.593697,39.3501995,500 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.09_42,-74.7778255,39.5976975,539 CORNWALL DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1173.09_43,-74.46513167,39.34698,537 CORNWALL DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.09_44,-74.81864088,39.36814084,535 CORNWALL DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1173.09_45,-74.7940865,39.6107915,533 CORNWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.09_46,-74.58605961,39.32683046,531 CORNWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.09_47,-74.585082,39.3765725,529 CORNWALL DR,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_1173.09_48,-74.50485764,39.47994711,527 CORNWALL DR,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_1173.09_49,-74.55114371,39.36082835,525 CORNWALL DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1173.09_5,-74.49497262,39.33608914,531 SARATOGA PL,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.09_50,-74.65399703,39.39984952,523 CORNWALL DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.09_51,-74.6275452,39.4134434,521 CORNWALL DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1173.09_52,-74.51693972,39.45855603,519 CORNWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.09_53,-74.63676712,39.43316616,517 CORNWALL DR,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_1173.09_54,-74.5025608,39.43318273,515 CORNWALL DR,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_1173.09_55,-74.61318796,39.31988529,513 CORNWALL DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.09_56,-74.46771033,39.34410551,511 CORNWALL DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.09_57,-74.50762574,39.49180708,509 BOSTON CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.09_59,-74.50202321,39.47514025,505 BOSTON CT,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.09_6,-74.5508935,39.3611345,529 SARATOGA PL,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.09_60,-74.87905448,39.59210789,503 BOSTON CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.09_61,-74.80417185,39.63738245,501 BOSTON CT,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.09_7,-74.49197986,39.33654724,527 SARATOGA PL,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.09_8,-74.6342555,39.5955435,525 SARATOGA PL,GALLOWAY TWP,16,1992,1,COM3,3004 -0111_1173.09_9,-74.48830383,39.4408915,523 SARATOGA PL,GALLOWAY TWP,16,1994,1,COM1,3004 -0111_1173.10_1,-74.4905795,39.4331345,LAKEFRONT CIRCLE,GALLOWAY TWP,,0,1,RES2,3005 -0111_1173.10_1_C0031,-74.6681015,39.4628675,661 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0032,-74.4846125,39.341379,663 LAKEFRONT CIR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.10_1_C0033,-74.53662778,39.37358294,665 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0034,-74.861706,39.4862385,667 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES3A,3001 -0111_1173.10_1_C0035,-74.7344504,39.43221835,669 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0036,-74.6764065,39.5483435,671 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0041,-74.90927001,39.48144965,673 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0042,-74.871999,39.4920735,675 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0043,-74.638572,39.4358275,677 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,GOV1,3004 -0111_1173.10_1_C0044,-74.62367507,39.62555582,679 LAKEFRONT CIR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_1173.10_1_C0045,-74.63622352,39.3434917,681 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0081,-74.5869725,39.3210125,685 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0082,-74.53870257,39.38122135,687 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0083,-74.84568682,39.60731852,689 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0084,-74.46715667,39.3469135,691 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0085,-74.62685197,39.36920343,693 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,GOV1,3004 -0111_1173.10_1_C0086,-74.63382256,39.3910472,695 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0131,-74.6126835,39.3189185,622 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0132,-74.95017007,39.51514001,624 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0133,-74.68003916,39.41389734,626 LAKEFRONT CIR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.10_1_C0134,-74.60424326,39.39087037,628 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,GOV1,3004 -0111_1173.10_1_C0135,-74.93962362,39.52249227,630 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0136,-74.70712696,39.43133058,632 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_1_C0141,-74.63103483,39.42815345,610 LAKEFRONT CIR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_1173.10_1_C0142,-74.86744889,39.60207909,612 LAKEFRONT CIR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.10_1_C0143,-74.86419318,39.60124927,614 LAKEFRONT CIR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_1173.10_1_C0144,-74.50780991,39.33750752,616 LAKEFRONT CIR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.10_1_C0145,-74.648945,39.3281095,618 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,GOV1,3004 -0111_1173.10_1_C0146,-74.62758828,39.3573136,620 LAKEFRONT CIR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1173.10_2,-74.70261531,39.42037021,VICTORIA LAKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.11_1.01_C0001,-74.4889015,39.333818,608 LAKEFRONT CIR,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.11_1.01_C0002,-74.535187,39.395121,606 LAKEFRONT CIR,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.11_1.01_C0003,-74.6035825,39.326535,604 LAKEFRONT CIR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.11_1.01_C0004,-74.58483332,39.32466228,602 LAKEFRONT CIR,GALLOWAY TWP,35,1990,1,GOV1,3004 -0111_1173.11_1.01_C0005,-74.4526144,39.3752037,600 LAKEFRONT CIR,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.11_1.01_C0006,-74.63357667,39.36239915,598 LAKEFRONT CIR,GALLOWAY TWP,35,1990,1,RES1,3004 -0111_1173.11_1.01_C0007,-74.80831301,39.63257016,601 REGENCY DR,GALLOWAY TWP,35,1990,1,GOV1,3004 -0111_1173.11_1.01_C0008,-74.35569197,39.41366466,603 REGENCY DR,GALLOWAY TWP,35,1990,1,GOV1,3004 -0111_1173.11_1.01_C0009,-74.47156361,39.4908177,605 REGENCY DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.11_1.01_C0010,-74.92768813,39.53268453,607 REGENCY DR,GALLOWAY TWP,35,1990,1,GOV1,3004 -0111_1173.11_1.01_C0011,-74.80499184,39.63725348,609 REGENCY DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.11_1.01_C0012,-74.4898195,39.335895,611 REGENCY DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.11_1.01_C0013,-74.483699,39.345454,613 REGENCY DR,GALLOWAY TWP,35,1991,1,RES1,3001 -0111_1173.11_1.01_C0014,-74.887395,39.598481,615 REGENCY DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.11_1.01_C0015,-74.80602097,39.65936707,617 REGENCY DR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_1173.11_1.01_C0016,-74.518319,39.464687,619 REGENCY DR,GALLOWAY TWP,35,1990,1,GOV1,3004 -0111_1173.11_1.01_C0017,-74.468643,39.3418725,621 REGENCY DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.11_1.01_C0018,-74.72358455,39.43118206,623 REGENCY DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_1173.11_1.01_C0019,-74.38140866,39.39580102,625 REGENCY DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_1173.12_1.01,-74.56299265,39.36271473,501 WESTON DR,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1173.12_1.02,-74.584305,39.4006185,503 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.03,-74.37634004,39.41346716,505 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.04,-74.78123127,39.66813892,507 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.05,-74.67356702,39.37122453,509 WESTON DR,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1173.12_1.06,-74.48334353,39.4791425,511 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.07,-74.80275386,39.63247893,513 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.08,-74.598055,39.31438,515 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.09,-74.50936347,39.40219384,517 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.10,-74.778364,39.512725,519 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.11,-74.56825861,39.40569931,521 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.12,-74.450603,39.4958035,523 WESTON DR,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.13,-74.610972,39.3275465,525 WESTON DR,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.14,-74.580907,39.360013,527 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.15,-74.550981,39.3843045,529 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.16,-74.571199,39.488147,531 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.17,-74.61749812,39.38896165,533 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.18,-74.61260855,39.38404375,535 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.19,-74.8894225,39.477322,537 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.20,-74.6487855,39.4321035,539 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.21,-74.519724,39.4573895,541 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.22,-74.796677,39.65334,523 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.23,-74.46738432,39.34461005,525 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.24,-74.9425455,39.5255385,527 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.25,-74.58352772,39.33720673,529 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.12_1.26,-74.483644,39.3395135,531 CHATHAM WAY,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.27,-74.5787425,39.4304725,533 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.28,-74.7780255,39.6054885,535 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.29,-74.8250325,39.3825576,537 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.30,-74.57409168,39.33731493,539 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.31,-74.796197,39.62196012,541 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.32,-74.58967747,39.37266954,543 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.33,-74.6017008,39.36928806,545 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES3A,3001 -0111_1173.12_1.34,-74.5013565,39.3377465,547 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.35,-74.59765313,39.38434831,549 CHATHAM WAY,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.36,-74.82093124,39.63719868,551 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.37,-74.64872094,39.40071771,553 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.38,-74.5805929,39.33078764,555 CHATHAM WAY,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.39,-74.519071,39.445365,539 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.40,-74.601379,39.307595,541 CARLISLE LN,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.41,-74.619811,39.4371585,543 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.42,-74.81278381,39.65458137,545 CARLISLE LN,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.43,-74.8945959,39.52731224,547 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.44,-74.429271,39.367584,549 CARLISLE LN,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.45,-74.44055567,39.36991672,551 CARLISLE LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.12_1.46,-74.4589805,39.3507215,553 CARLISLE LN,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.12_1.47,-74.5918835,39.3203575,555 CARLISLE LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.12_1.48,-74.613383,39.505567,557 CARLISLE LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.12_1.49,-74.570844,39.3417475,559 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.50,-74.5149205,39.3986375,561 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.51,-74.61662184,39.42958108,563 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.52,-74.51800783,39.40259849,547 FALMOUTH CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.12_1.53,-74.59699394,39.34222353,549 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.54,-74.58146989,39.4227838,551 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.55,-74.60577423,39.32983041,553 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.56,-74.85462834,39.56000847,555 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.57,-74.81777009,39.39601767,557 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.58,-74.50236287,39.51178635,559 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.59,-74.78259055,39.62091466,560 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.60,-74.8359855,39.485593,558 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.61,-74.47386097,39.49186114,556 FALMOUTH CT,GALLOWAY TWP,16,1998,1,GOV1,3004 -0111_1173.12_1.62,-74.8511793,39.39912322,554 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.63,-74.6331365,39.362056,552 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.64,-74.4089245,39.380492,550 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES3A,3001 -0111_1173.12_1.65,-74.46719626,39.4890828,548 FALMOUTH CT,GALLOWAY TWP,16,2016,1,RES1,3001 -0111_1173.12_1.66,-74.4241225,39.366567,546 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.67,-74.51587256,39.39328934,544 FALMOUTH CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.68,-74.44928661,39.49557428,565 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.69,-74.59690593,39.37185771,567 CARLISLE LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.12_1.70,-74.4705075,39.487738,569 CARLISLE LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.12_1.71,-74.94208005,39.52890273,571 CARLISLE LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.12_1.72,-74.63450778,39.53379711,573 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.73,-74.604972,39.3898105,575 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.74,-74.38393444,39.39629146,577 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.75,-74.88444671,39.59774221,579 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.76,-74.36630814,39.41062927,581 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_1.77,-74.68827953,39.35912133,583 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.12_10,-74.70447436,39.48107696,564 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_11,-74.55837236,39.39880469,562 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_12,-74.589417,39.3310675,560 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_13,-74.53515282,39.39927898,558 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_14,-74.45107316,39.3554165,556 REVERE WAY,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.12_15,-74.50162812,39.46372546,554 REVERE WAY,GALLOWAY TWP,16,1988,1,COM4,3004 -0111_1173.12_16,-74.437722,39.368774,552 REVERE WAY,GALLOWAY TWP,16,1988,1,RES4,3001 -0111_1173.12_17,-74.58250808,39.36365887,550 REVERE WAY,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1173.12_18,-74.5768895,39.353345,548 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_19,-74.55072439,39.50649165,546 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_2,-74.562148,39.4116845,580 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_20,-74.503156,39.4318225,544 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_21,-74.539585,39.47313,542 REVERE WAY,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1173.12_22,-74.69782344,39.43222311,540 REVERE WAY,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_1173.12_23,-74.56066639,39.50608487,541 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_24,-74.48655104,39.43564747,543 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_25,-74.62294834,39.42430552,545 STONEWALL DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1173.12_26,-74.4855961,39.43912382,547 STONEWALL DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1173.12_27,-74.90702778,39.48005883,549 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_28,-74.60693436,39.42539673,551 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_29,-74.8442975,39.6239165,553 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_3,-74.56614045,39.36489532,578 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_30,-74.60891885,39.48287551,555 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_31,-74.50788048,39.46756234,557 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_32,-74.75932752,39.34564082,559 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_33,-74.85087016,39.59271664,561 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_34,-74.6418745,39.503247,563 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_35,-74.57637,39.356422,565 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.12_36,-74.41128919,39.36717002,567 STONEWALL DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1173.12_37,-74.61802861,39.36153379,569 STONEWALL DR,GALLOWAY TWP,16,1993,1,COM3,3004 -0111_1173.12_38,-74.6247425,39.3590075,571 STONEWALL DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.12_39,-74.6058353,39.35314407,573 STONEWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.12_4,-74.48622704,39.49471552,576 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_40,-74.60045,39.511264,575 STONEWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.12_41,-74.55352929,39.38054053,577 STONEWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.12_42,-74.4813425,39.3522345,579 STONEWALL DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1173.12_43,-74.50153966,39.43114401,581 STONEWALL DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1173.12_44,-74.6790745,39.44498,583 STONEWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.12_45,-74.4962595,39.446807,516 CONSTITUTION DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1173.12_46,-74.60789358,39.31769196,543 BRANDYWINE DR,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_1173.12_47,-74.55313813,39.3816397,545 BRANDYWINE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.12_48,-74.5988295,39.5919055,547 BRANDYWINE DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.12_49,-74.61866054,39.46192199,549 BRANDYWINE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.12_5,-74.6397675,39.4101795,574 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_50,-74.56295542,39.40903976,551 BRANDYWINE DR,GALLOWAY TWP,16,1998,1,COM3,3004 -0111_1173.12_51,-74.80063697,39.61549384,553 BRANDYWINE DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.12_52,-74.4932793,39.44520838,555 BRANDYWINE DR,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_1173.12_53,-74.775689,39.60881644,557 BRANDYWINE DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.12_54,-74.36036048,39.41083634,512 BOSTON CT,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1173.12_55,-74.9643955,39.5189985,510 BOSTON CT,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.12_56,-74.480629,39.4428105,508 BOSTON CT,GALLOWAY TWP,16,1993,1,RES3A,3004 -0111_1173.12_57,-74.50940982,39.40085887,506 BOSTON CT,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.12_58,-74.7230735,39.5885175,504 BOSTON CT,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1173.12_59,-74.4889474,39.42888169,502 BOSTON CT,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.12_6,-74.51619622,39.32375612,572 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_60,-74.46166992,39.34555672,500 BOSTON CT,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.12_66.02,-74.687663,39.6305835,600 E MOSS MILL RD,GALLOWAY TWP,,1988,1,IND1,3002 -0111_1173.12_66.03,-74.59305821,39.41928503,580 E MOSS MILL RD,GALLOWAY TWP,,2001,1,RES1,3001 -0111_1173.12_7,-74.46151384,39.3458855,570 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_8,-74.68448378,39.56010941,568 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.12_9,-74.5507965,39.3747175,566 REVERE WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1173.13_1,-74.58284608,39.43177375,540 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.13_10,-74.51939529,39.46368069,560 STONEWALL DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1173.13_11,-74.56847365,39.36488057,562 STONEWALL DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.13_12,-74.53241033,39.468076,564 STONEWALL DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.13_13,-74.36466191,39.41498473,566 STONEWALL DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1173.13_14,-74.7367415,39.448025,568 STONEWALL DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.13_15,-74.80718058,39.63165489,570 STONEWALL DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.13_16,-74.5179411,39.39974883,561 ARLINGTON LN,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1173.13_17,-74.50956559,39.32409366,559 ARLINGTON LN,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_1173.13_18,-74.7892066,39.64198832,557 ARLINGTON LN,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1173.13_19,-74.738773,39.467998,555 ARLINGTON LN,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1173.13_2,-74.521388,39.3972585,542 STONEWALL DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.13_20,-74.73139393,39.45447187,553 ARLINGTON LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.13_21,-74.37420235,39.4145597,ARLINGTON LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.13_22,-74.89960026,39.51265741,549 ARLINGTON LN,GALLOWAY TWP,16,1992,1,REL1,3003 -0111_1173.13_23,-74.52223169,39.39635464,547 ARLINGTON LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.13_24,-74.6564525,39.5279355,545 ARLINGTON LN,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1173.13_25,-74.72543453,39.45466182,543 ARLINGTON LN,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1173.13_26,-74.5323355,39.4181855,541 ARLINGTON LN,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1173.13_3,-74.4933785,39.4323865,544 STONEWALL DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1173.13_4,-74.81739773,39.63788151,546 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.13_5,-74.55406132,39.36357866,548 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.13_6,-74.4839937,39.34793694,550 STONEWALL DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1173.13_7,-74.5588763,39.39951297,552 STONEWALL DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1173.13_8,-74.87500367,39.595247,556 STONEWALL DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.13_9,-74.80805017,39.37042948,558 STONEWALL DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1173.14_1,-74.65652867,39.53352801,CONSTITUTION DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.15_1,-74.64033122,39.36003493,540 CORNWALL DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.15_10,-74.59249693,39.31580132,516 CORNWALL DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1173.15_11,-74.79713009,39.63968766,514 CORNWALL DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.15_12,-74.48778867,39.3381505,CONSTITUTION DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.15_2,-74.49475238,39.42058752,538 CORNWALL DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1173.15_3,-74.56112485,39.35562124,536 CORNWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.15_4,-74.765003,39.6360235,534 CORNWALL DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.15_5,-74.59787428,39.31786911,532 CORNWALL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1173.15_6,-74.517805,39.407053,528 CORNWALL DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1173.15_7,-74.57380088,39.41056726,522 CORNWALL DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1173.15_8,-74.594217,39.313666,520 CORNWALL DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1173.15_9,-74.5157555,39.3879065,518 CORNWALL DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1173.16_1.02_C0001,-74.78147934,39.54258498,627 REGENCY DR,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0002,-74.72237931,39.57130431,629 REGENCY DR,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0003,-74.82267,39.534077,631 REGENCY DR,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0004,-74.81771289,39.53793074,633 REGENCY DR,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0005,-74.818261,39.527617,635 REGENCY DR,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0006,-74.8318307,39.52315998,637 REGENCY DR,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0007,-74.80919323,39.52089997,639 REGENCY DR,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0008,-74.85659937,39.56902186,663 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0009,-74.846709,39.540639,665 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0010,-74.75766186,39.63694744,667 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0011,-74.8429825,39.5437395,669 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0012,-74.838207,39.570067,671 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0013,-74.7898545,39.611275,673 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES3A,3004 -0111_1173.16_1.02_C0014,-74.80973144,39.55113328,675 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0015,-74.807458,39.5535095,677 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0016,-74.7515485,39.60841,679 CHANCERY LN,GALLOWAY TWP,35,2000,1,COM1,3004 -0111_1173.16_1.02_C0017,-74.77905736,39.58423861,694 CHANCERY LN,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1173.16_1.02_C0018,-74.80026071,39.54633516,692 CHANCERY LN,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1173.16_1.02_C0019,-74.70900392,39.5827855,690 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0020,-74.7272755,39.589752,688 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0021,-74.71488964,39.58075124,686 CHANCERY LN,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1173.16_1.02_C0022,-74.7762419,39.59163532,684 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0023,-74.77710125,39.63106324,682 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0024,-74.881466,39.5075585,680 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0025,-74.86445331,39.53780347,678 CHANCERY LN,GALLOWAY TWP,35,2001,1,RES1,3001 -0111_1173.16_1.02_C0026,-74.8723826,39.56428188,676 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0027,-74.72020484,39.57761331,674 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0028,-74.71713508,39.57510513,672 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0029,-74.7802443,39.62565661,670 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0030,-74.86411885,39.55770229,668 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0031,-74.775187,39.6324055,666 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0032,-74.86326483,39.56388962,664 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0033,-74.864622,39.601775,662 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0034,-74.8823595,39.6003685,660 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0035,-74.8657595,39.5976685,658 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0036,-74.8803745,39.5986915,656 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0037,-74.79638464,39.62250993,654 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0038,-74.80929235,39.62985345,652 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0039,-74.80184766,39.63806953,650 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0040,-74.80667589,39.62857954,648 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0041,-74.806566,39.6258495,646 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0042,-74.7994575,39.6359805,644 CHANCERY LN,GALLOWAY TWP,35,1999,1,EDU1,3004 -0111_1173.16_1.02_C0043,-74.8133415,39.63750083,642 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0044,-74.79932782,39.63216279,640 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0045,-74.80725755,39.63292984,638 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0046,-74.87060509,39.59001998,628 REGENCY DR,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0047,-74.874007,39.593246,630 REGENCY DR,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0048,-74.869793,39.592248,632 REGENCY DR,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0049,-74.8742695,39.5927805,634 REGENCY DR,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.16_1.02_C0050,-74.83482397,39.59745787,661 CHANCERY LN,GALLOWAY TWP,35,1999,1,GOV1,3004 -0111_1173.16_1.02_C0051,-74.78591384,39.63499731,659 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3001 -0111_1173.16_1.02_C0052,-74.81139351,39.59658183,657 CHANCERY LN,GALLOWAY TWP,35,2000,1,RES1,3004 -0111_1173.16_1.02_C0053,-74.83817422,39.60438729,655 CHANCERY LN,GALLOWAY TWP,35,1999,1,RES1,3001 -0111_1173.18_1,-74.57457595,39.36012523,550 SMITHVILLE BLVD,GALLOWAY TWP,,1998,1,RES1,3001 -0111_1173.18_10,-74.56433576,39.36063791,514 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_11,-74.62077634,39.52166117,516 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_12,-74.8647166,39.54542686,518 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_13,-74.56199268,39.36065252,520 SALEM WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_14,-74.52226354,39.31795687,522 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_15,-74.441248,39.368392,524 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_16,-74.36988268,39.40584448,526 SALEM WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_17,-74.6489475,39.5287095,554 YARMOUTH CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1173.18_18,-74.78739503,39.64015386,556 YARMOUTH CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_19,-74.64113067,39.53576451,558 YARMOUTH CT,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_1173.18_2,-74.79856516,39.64061348,SMITHVILLE BLVD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1173.18_20,-74.55640533,39.35526611,560 YARMOUTH CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_21,-74.45056304,39.49638059,562 YARMOUTH CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_22,-74.59131274,39.34826115,564 YARMOUTH CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_23,-74.88683795,39.4778972,565 YARMOUTH CT,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1173.18_24,-74.49735548,39.49968153,563 YARMOUTH CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_25,-74.60214882,39.36468948,561 YARMOUTH CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_26,-74.7920835,39.6409125,559 YARMOUTH CT,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1173.18_27,-74.56613904,39.41461172,557 YARMOUTH CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_28,-74.5601165,39.4008855,555 YARMOUTH CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.18_29,-74.50595993,39.3320305,553 YARMOUTH CT,GALLOWAY TWP,16,2009,1,GOV1,3004 -0111_1173.18_3,-74.63945967,39.41140132,500 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_30,-74.447527,39.358159,530 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_31,-74.51651315,39.46045449,532 SALEM WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_32,-74.516207,39.3261545,534 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_33,-74.79961779,39.61556875,536 SALEM WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.18_34,-74.51136907,39.39986533,550 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.18_35,-74.87186771,39.57432172,552 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.18_36,-74.62925519,39.42454949,554 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.18_37,-74.9556195,39.520541,556 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.18_38,-74.50662067,39.33616894,558 CHATHAM WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1173.18_39,-74.47408481,39.34079204,560 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_4,-74.46490256,39.35878995,502 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_40,-74.63908183,39.32083823,562 CHATHAM WAY,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1173.18_41,-74.59320344,39.37865879,564 CHATHAM WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1173.18_42,-74.64869327,39.5219918,566 CHATHAM WAY,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1173.18_43,-74.82635511,39.53176563,568 CHATHAM WAY,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1173.18_44,-74.605639,39.330189,570 CHATHAM WAY,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1173.18_45,-74.93682833,39.52820946,572 CHATHAM WAY,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1173.18_5,-74.76521969,39.66803053,504 SALEM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.18_6,-74.81147255,39.63235484,506 SALEM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.18_7,-74.61048481,39.32193259,508 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_8,-74.70508364,39.42207077,510 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.18_9,-74.5907418,39.42504363,512 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.20_1.02,-74.48503686,39.33330783,WATERVIEW DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.20_1.02_C0011,-74.46807774,39.34456417,109 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0012,-74.75280806,39.45443425,105 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0013,-74.63003,39.420081,101 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0014,-74.36234535,39.40948185,97 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0015,-74.52344302,39.39950722,111 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0016,-74.635509,39.362157,107 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0017,-74.4699215,39.3449335,103 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0018,-74.58366463,39.37601531,99 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0021,-74.42365716,39.37145554,81 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0022,-74.62040297,39.43384167,85 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0023,-74.51900632,39.40997945,89 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0024,-74.60842683,39.43280021,93 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0025,-74.83321905,39.64309934,83 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0026,-74.637634,39.3450665,87 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0027,-74.81195355,39.64637378,91 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0028,-74.693599,39.4422035,95 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0031,-74.64623477,39.52853905,77 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0032,-74.57070747,39.3645938,73 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0033,-74.4972765,39.3318055,69 WATERVIEW DR,GALLOWAY TWP,35,1982,1,GOV1,3004 -0111_1173.20_1.02_C0034,-74.52357177,39.3223091,65 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0035,-74.69100899,39.42065834,79 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0036,-74.70396584,39.4289474,75 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0037,-74.50205682,39.42876668,71 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0038,-74.49214,39.52539119,67 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0041,-74.706519,39.643019,61 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0042,-74.81165836,39.63119405,57 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0043,-74.807727,39.6281035,53 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0044,-74.9405485,39.4970825,49 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0045,-74.57727818,39.42169998,63 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0046,-74.46100766,39.34587252,59 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0047,-74.8036225,39.63967,55 WATERVIEW DR,GALLOWAY TWP,35,1983,1,GOV1,3004 -0111_1173.20_1.02_C0048,-74.53590215,39.30479604,51 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0051,-74.52305902,39.38540566,45 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.20_1.02_C0052,-74.3696324,39.41898227,41 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.20_1.02_C0053,-74.65182095,39.52480358,37 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.20_1.02_C0054,-74.4981905,39.447218,33 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3002 -0111_1173.20_1.02_C0055,-74.80013153,39.63484683,47 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.20_1.02_C0056,-74.64508816,39.52789001,43 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0057,-74.565449,39.4713185,39 WATERVIEW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1173.20_1.02_C0058,-74.5457105,39.378315,35 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0061,-74.60609607,39.3859808,17 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0062,-74.51710703,39.39655329,21 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0063,-74.5339393,39.37370016,25 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0064,-74.70189475,39.51072241,29 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0065,-74.51515199,39.39914217,19 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0066,-74.49337165,39.33417753,23 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0067,-74.50506752,39.46755332,27 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0068,-74.842287,39.471648,31 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0071,-74.82474887,39.49135717,13 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0072,-74.64551691,39.56347041,9 WATERVIEW DR,GALLOWAY TWP,35,1983,1,COM1,3004 -0111_1173.20_1.02_C0073,-74.63475261,39.43005024,5 WATERVIEW DR,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1173.20_1.02_C0074,-74.513745,39.323629,1 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0075,-74.57139673,39.37030196,15 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0076,-74.51045528,39.44225684,11 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0077,-74.842705,39.3845615,7 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.20_1.02_C0078,-74.87882884,39.5922085,3 WATERVIEW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1173.21_1,-74.8821515,39.598308,538 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_10,-74.566576,39.479145,560 CARLISLE LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.21_11,-74.41024432,39.36414956,562 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_12,-74.83457492,39.37958225,564 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_13,-74.9134187,39.51186116,566 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_14,-74.45875319,39.35042647,568 CARLISLE LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.21_15,-74.65209156,39.52872635,570 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_16,-74.49471095,39.46736723,572 CARLISLE LN,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.21_17,-74.45316528,39.37154702,574 CARLISLE LN,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.21_18,-74.49074443,39.33965233,575 CHATHAM WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1173.21_19,-74.53278739,39.37917037,573 CHATHAM WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1173.21_2,-74.9220785,39.5602825,540 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_20,-74.82440368,39.62918734,571 CHATHAM WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1173.21_21,-74.598988,39.3671365,569 CHATHAM WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1173.21_22,-74.9510705,39.527381,567 CHATHAM WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1173.21_23,-74.53618938,39.37251779,565 CHATHAM WAY,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1173.21_24,-74.51153778,39.50494893,563 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.21_25,-74.502668,39.4310625,561 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.21_26,-74.82765939,39.39373806,559 CHATHAM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.21_27,-74.582879,39.333119,CARLISLE LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.21_3,-74.54005418,39.38971048,544 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_4,-74.53293434,39.30580409,548 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_5,-74.60942947,39.37941468,550 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_6,-74.72100393,39.44880879,552 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_7,-74.636618,39.5312755,554 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_8,-74.79766283,39.62281627,556 CARLISLE LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.21_9,-74.5125774,39.32532484,558 CARLISLE LN,GALLOWAY TWP,16,1999,1,COM1,3004 -0111_1173.22_1,-74.86153445,39.56363309,538 NEWBURY CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_10,-74.56106945,39.50746028,547 NEWBURY CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_11,-74.8874545,39.5054815,545 NEWBURY CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_12,-74.53760485,39.53446334,543 NEWBURY CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_13,-74.58289367,39.33350411,541 NEWBURY CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_14,-74.54090834,39.37311619,539 NEWBURY CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_15,-74.5845545,39.3573515,538 NEWPORT CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_16,-74.599694,39.319296,540 NEWPORT CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_17,-74.87298293,39.60057384,542 NEWPORT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_18,-74.58726845,39.32417061,544 NEWPORT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_19,-74.545239,39.4738765,546 NEWPORT CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_2,-74.47528334,39.34068867,540 NEWBURY CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_20,-74.46277889,39.34991383,548 NEWPORT CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_21,-74.54662466,39.47068021,550 NEWPORT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_22,-74.54402831,39.51692566,551 NEWPORT CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.22_23,-74.871809,39.490201,549 NEWPORT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_24,-74.5692555,39.3739055,547 NEWPORT CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_25,-74.43389257,39.36285952,545 NEWPORT CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_26,-74.57989268,39.47494293,528 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_27,-74.69321892,39.44175018,530 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_28,-74.4637045,39.3474435,532 CHATHAM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_29,-74.40644945,39.37986839,535 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_3,-74.818866,39.4691895,542 NEWBURY CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_30,-74.58222361,39.32840634,533 SALEM WAY,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1173.22_31,-74.60605796,39.49034572,531 SALEM WAY,GALLOWAY TWP,16,1999,1,COM1,3004 -0111_1173.22_32,-74.37193247,39.42108132,529 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_33,-74.59406191,39.32982258,527 SALEM WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.22_34,-74.36657049,39.42284515,525 SALEM WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1173.22_35,-74.5180265,39.324343,523 SALEM WAY,GALLOWAY TWP,16,1998,1,REL1,3004 -0111_1173.22_36,-74.63704814,39.38491085,521 SALEM WAY,GALLOWAY TWP,16,1998,1,RES1,3004 -0111_1173.22_37,-74.50039212,39.41064282,519 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_38,-74.78099835,39.62591671,517 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_39,-74.90824466,39.47959371,515 SALEM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_4,-74.86834284,39.57060202,544 NEWBURY CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_40,-74.6343005,39.6206245,513 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_41,-74.58462952,39.37710584,511 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_42,-74.50045134,39.33522248,509 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_43,-74.83531385,39.61072961,507 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_44,-74.47107968,39.46081002,505 SALEM WAY,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_45,-74.80521523,39.64197084,503 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_46,-74.85595318,39.62185895,501 SALEM WAY,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_47,-74.427621,39.371314,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.22_5,-74.4877025,39.337485,546 NEWBURY CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_6,-74.72208519,39.64735972,548 NEWBURY CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.22_7,-74.50686176,39.32479453,550 NEWBURY CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_8,-74.80570393,39.62818565,551 NEWBURY CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.22_9,-74.50363398,39.32929663,549 NEWBURY CT,GALLOWAY TWP,16,1999,1,RES3A,3001 -0111_1173.23_1,-74.54452983,39.38740599,500 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_10,-74.826124,39.648159,518 WESTON DR,GALLOWAY TWP,16,2000,1,RES3A,3001 -0111_1173.23_11,-74.49566609,39.44107577,520 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_12,-74.65583909,39.35997056,522 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_13,-74.55033993,39.3697507,524 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_14,-74.4802905,39.432869,526 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_15,-74.56870171,39.35028055,528 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_16,-74.57497459,39.52387234,530 WESTON DR,GALLOWAY TWP,16,1999,1,COM4,3004 -0111_1173.23_17,-74.50415516,39.33347851,532 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_18,-74.55807472,39.36614254,534 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_19,-74.6658145,39.5828095,536 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_2,-74.3610745,39.416336,502 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_20,-74.79013032,39.63166315,537 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3004 -0111_1173.23_21,-74.68460786,39.44473778,535 EMERSON CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_22,-74.57831382,39.41310701,533 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_23,-74.90403746,39.49195246,531 EMERSON CT,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1173.23_24,-74.482814,39.349293,529 EMERSON CT,GALLOWAY TWP,16,2000,1,COM1,3004 -0111_1173.23_25,-74.48706992,39.43477083,527 EMERSON CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_26,-74.63500438,39.34375624,525 EMERSON CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_27,-74.43696836,39.48988535,523 EMERSON CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_28,-74.49560218,39.42633618,521 EMERSON CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_29,-74.5036615,39.3304705,519 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_3,-74.48270898,39.34571383,504 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_30,-74.832193,39.532623,517 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_31,-74.65396609,39.34454682,515 EMERSON CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_32,-74.50866508,39.41015248,516 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_33,-74.842571,39.586568,518 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_34,-74.67937817,39.55747901,520 EMERSON CT,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_35,-74.79024628,39.6170854,522 EMERSON CT,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.23_36,-74.58231618,39.43200686,524 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_37,-74.84784778,39.60160858,526 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_38,-74.9069385,39.494636,528 EMERSON CT,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_1173.23_39,-74.60033423,39.35922545,530 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_4,-74.36937483,39.40156308,506 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.23_40,-74.534937,39.390448,532 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_41,-74.66038784,39.53719097,534 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_42,-74.9485685,39.510794,536 EMERSON CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_43,-74.76305804,39.60959105,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1173.23_5,-74.61835864,39.43293059,508 WESTON DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1173.23_6,-74.547643,39.379006,510 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_7,-74.5757305,39.338109,512 WESTON DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1173.23_8,-74.493932,39.524551,514 WESTON DR,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_1173.23_9,-74.44261371,39.36984461,516 WESTON DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1173.24_1,-74.59878622,39.31996434,QUAIL HILL BLVD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1178.01_1.01,-74.58889384,39.35018634,146 N PITNEY RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1178.01_1.02,-74.68756776,39.3595105,144 N PITNEY RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1178.01_2,-74.4882915,39.34941234,OLD PORT REPUBLIC RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1178.01_4.01,-74.46361,39.4643865,32 N PITNEY RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1178.01_4.02,-74.766756,39.349268,28 N PITNEY RD,GALLOWAY TWP,16,1991,1,RES1,3004 -0111_1178.01_4.03,-74.9273802,39.50691375,24 N PITNEY RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1178.01_4.04,-74.847751,39.558095,401 SARA ANN CT,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1178.01_4.06,-74.5970406,39.3661185,405 SARA ANN CT,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1178.01_4.07,-74.9052255,39.4868355,407 SARA ANN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1178.01_4.08,-74.73498238,39.46154932,409 SARA ANN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1178.01_4.09,-74.59186232,39.32702036,411 SARA ANN CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1178.01_4.11,-74.5037104,39.34144432,410 SARA ANN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1178.01_4.12,-74.5512257,39.36376903,408 SARA ANN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1178.01_4.13,-74.55882462,39.47404567,406 SARA ANN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1178.01_4.14,-74.60676762,39.38311107,404 SARA ANN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1178.01_4.15,-74.4208115,39.368347,402 SARA ANN CT,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_1178.01_4.16,-74.5158405,39.4542825,400 SARA ANN CT,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1178.01_4.17,-74.49009273,39.47165406,12 N PITNEY RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1178.01_5.01,-74.48068105,39.34331718,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1178.01_5.02,-74.91025115,39.49579434,1 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3004 -0111_1178.01_5.03,-74.90893624,39.51557204,3 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.04,-74.9503985,39.5281715,5 DERBY DR,GALLOWAY TWP,16,2004,1,COM1,3004 -0111_1178.01_5.05,-74.7939305,39.646731,7 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.06,-74.53378002,39.40682819,404 KINGSTON CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.07,-74.51097432,39.42955678,402 KINGSTON CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.08,-74.5716475,39.352049,400 KINGSTON CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.09,-74.854818,39.5507295,401 KINGSTON CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.11,-74.9168295,39.4806615,405 KINGSTON CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.12,-74.59355897,39.43212581,11 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.13,-74.51707569,39.40475902,13 DERBY DR,GALLOWAY TWP,16,2003,1,RES3A,3001 -0111_1178.01_5.14,-74.81765331,39.51939958,15 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.15,-74.68375919,39.44295745,17 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.16,-74.88307763,39.49738303,19 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.17,-74.62172319,39.38330935,21 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.18,-74.50538715,39.32945402,23 DERBY DR,GALLOWAY TWP,16,2004,1,COM1,3004 -0111_1178.01_5.19,-74.5025535,39.3289965,25 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.21,-74.52471,39.393912,29 DERBY DR,GALLOWAY TWP,16,2003,1,COM1,3004 -0111_1178.01_5.22,-74.88722679,39.55826368,31 DERBY DR,GALLOWAY TWP,16,2003,1,COM7,3004 -0111_1178.01_5.23,-74.7726925,39.660531,35 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.24,-74.5719485,39.412824,37 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.25,-74.60126798,39.32921232,39 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.26,-74.65191476,39.35309347,41 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.27,-74.49558967,39.33798699,43 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.28,-74.65721,39.398427,45 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.29,-74.608991,39.38039617,47 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.31,-74.60398623,39.32877606,51 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.32,-74.5525205,39.4041175,53 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.33,-74.90696824,39.48195903,55 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.34,-74.526829,39.466059,57 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.01_5.35,-74.948819,39.500579,59 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.01_5.36,-74.46126597,39.35506664,DERBY DR - OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_1178.01_5.37,-74.5055485,39.4139395,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1178.01_7,-74.6254065,39.3521205,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1178.02_1,-74.6315405,39.363575,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1178.02_10,-74.5035495,39.330047,22 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_11,-74.59745513,39.34575687,24 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_12,-74.83558481,39.38813193,26 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_13,-74.5121575,39.43213693,28 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_14,-74.67689942,39.38289465,34 DERBY DR,GALLOWAY TWP,16,2003,1,REL1,3002 -0111_1178.02_15,-74.60438009,39.34300991,36 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_16,-74.53867339,39.54919907,38 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_17,-74.51707807,39.38803134,40 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_18,-74.50651229,39.43877269,419 SCARBOROUGH CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_19,-74.44903147,39.35651681,417 SCARBOROUGH CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_2,-74.5044625,39.330144,2 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_20,-74.880833,39.457667,415 SCARBOROUGH CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_21,-74.844262,39.3746685,413 SCARBOROUGH CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_22,-74.76346205,39.3504708,412 SCARBOROUGH CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_23,-74.54727033,39.4026915,414 SCARBOROUGH CT,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_1178.02_24,-74.48966223,39.47310904,416 SCARBOROUGH CT,GALLOWAY TWP,16,2004,1,COM1,3004 -0111_1178.02_25,-74.43030582,39.36505554,418 SCARBOROUGH CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_26,-74.64531795,39.53276566,420 SCARBOROUGH CT,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_1178.02_27,-74.6385565,39.381585,422 SCARBOROUGH CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_28,-74.50512655,39.33030016,424 SCARBOROUGH CT,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_29,-74.81260425,39.46937776,426 SCARBOROUGH CT,GALLOWAY TWP,16,2003,1,RES1,3004 -0111_1178.02_3,-74.861776,39.4848835,4 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_30,-74.60981073,39.3844006,46 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_31,-74.51622383,39.39604116,48 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_32,-74.60185426,39.3778705,50 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_33,-74.499145,39.452575,52 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_34,-74.76523209,39.65024519,54 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_4,-74.60651529,39.51666715,6 DERBY DR,GALLOWAY TWP,16,2004,1,EDU1,3004 -0111_1178.02_5,-74.614417,39.3945355,8 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3004 -0111_1178.02_6,-74.8410515,39.505274,10 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_7,-74.518736,39.4006595,12 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1178.02_8,-74.6142215,39.397795,16 DERBY DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1178.02_9,-74.53147128,39.41884448,20 DERBY DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1179.01_12,-74.610233,39.3667995,501 E MOSS MILL RD,GALLOWAY TWP,,1931,1,RES1,3001 -0111_1179.01_13,-74.55252578,39.46689341,525 E MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1179.01_17.01,-74.58590497,39.33514947,615 E MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1179.01_17.02,-74.50720329,39.40525934,1 N NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1179.01_19.01,-74.44386315,39.37219476,11 OLD NEW YORK RD,GALLOWAY TWP,16,1896,1,RES1,3001 -0111_1179.01_19.02,-74.50997664,39.47254738,7 OLD NEW YORK RD,GALLOWAY TWP,16,1958,1,GOV1,3004 -0111_1179.01_20.02,-74.955137,39.519579,15 OLD NEW YORK RD,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_1179.01_21.01,-74.3669645,39.413821,27 OLD NEW YORK RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1179.01_26,-74.82306172,39.65455947,117 OLD NEW YORK RD,GALLOWAY TWP,16,2005,2,RES1,3001 -0111_1179.01_27,-74.65651583,39.52853449,125 OLD NEW YORK RD,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1179.01_29,-74.53490305,39.46130382,133 OLD NEW YORK RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1179.01_3,-74.6105255,39.4883465,OLD PORT REPUBLIC RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1179.01_30.01,-74.75034655,39.45136682,155 OLD NEW YORK RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1179.01_30.02,-74.63562837,39.36259207,151 OLD NEW YORK RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1179.01_30.03,-74.38805642,39.39637865,153 OLD NEW YORK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1179.01_30.04,-74.6054385,39.484007,154 GLORY RD,GALLOWAY TWP,16,1997,2,RES1,3001 -0111_1179.01_31,-74.67645744,39.37789605,157 OLD NEW YORK RD,GALLOWAY TWP,16,1976,1,RES1,3004 -0111_1179.01_32.01,-74.7046715,39.56735817,157 GLORY RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1179.01_32.02,-74.63214392,39.45659232,155 GLORY RD,GALLOWAY TWP,16,1906,1,RES1,3001 -0111_1179.01_32.03,-74.51076079,39.33981031,153 GLORY RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1179.01_4.06,-74.54553159,39.37080429,165 OLD NEW YORK RD,GALLOWAY TWP,17,2007,1,RES1,3001 -0111_1179.01_5,-74.59635812,39.31328832,101 GLORY RD,GALLOWAY TWP,,2018,1,GOV1,3004 -0111_1179.01_5.02,-74.44292,39.3536,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1179.01_5.05,-74.542713,39.376126,501 PELHAM DR,GALLOWAY TWP,16,1993,1,RES3A,3001 -0111_1179.01_5.06,-74.4545165,39.3733695,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1179.01_5.07,-74.5797345,39.37153181,MOSS MILL RD (OFF),GALLOWAY TWP,,0,1,RES1,3001 -0111_1179.01_5.09,-74.52133303,39.40458131,12 CAVESSON DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.11,-74.82954537,39.40807883,15 CAVESSON DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1179.01_5.12,-74.3820655,39.398465,503 PELHAM DR,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_1179.01_5.13,-74.5476585,39.4753335,505 PELHAM DR,GALLOWAY TWP,17,1996,1,RES1,3001 -0111_1179.01_5.14,-74.56881082,39.34936694,507 PELHAM DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1179.01_5.15,-74.63869111,39.44548881,509 PELHAM DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.16,-74.63072378,39.36330255,511 PELHAM DR,GALLOWAY TWP,16,1998,1,GOV1,3004 -0111_1179.01_5.17,-74.86964,39.491237,500 PELHAM DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1179.01_5.18,-74.36645168,39.40644699,502 PELHAM DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1179.01_5.19,-74.62757971,39.43327501,504 PELHAM DR,GALLOWAY TWP,17,1995,1,RES1,3001 -0111_1179.01_5.21,-74.50606018,39.32692602,6 CHUKKAR CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1179.01_5.22,-74.58929912,39.42461118,5 CHUKKAR CT,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1179.01_5.23,-74.605478,39.3884475,3 CHUKKAR CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1179.01_5.24,-74.6392915,39.382242,506 PELHAM DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1179.01_5.25,-74.51377513,39.39530667,508 PELHAM DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.26,-74.636979,39.52757817,510 PELHAM DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1179.01_5.27,-74.82606727,39.40187734,512 PELHAM DR,GALLOWAY TWP,17,2007,1,RES1,3001 -0111_1179.01_5.28,-74.73124442,39.58927287,514 PELHAM DR,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_1179.01_5.29,-74.5082695,39.529953,516 PELHAM DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1179.01_5.31,-74.8083125,39.634569,515 PELHAM DR,GALLOWAY TWP,16,1990,1,RES3A,3001 -0111_1179.01_5.33,-74.82394966,39.64039753,1 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.34,-74.40063172,39.38865866,3 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.35,-74.49499299,39.43988038,90 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.36,-74.76091696,39.43141215,88 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.37,-74.74754966,39.63546592,86 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.38,-74.69089635,39.58487926,84 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.39,-74.64434491,39.32592062,82 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.41,-74.8135455,39.6361075,6 KENDALL CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.42,-74.5089999,39.40728766,4 KENDALL CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.43,-74.88370115,39.59242671,2 KENDALL CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.44,-74.59680436,39.36414333,1 KENDALL CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.45,-74.5162025,39.393018,3 KENDALL CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.46,-74.4610605,39.3496095,5 KENDALL CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.47,-74.5023951,39.33745724,7 KENDALL CT,GALLOWAY TWP,16,1998,1,RES3A,3001 -0111_1179.01_5.48,-74.49108538,39.44212641,9 KENDALL CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.49,-74.552603,39.4222055,78 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.51,-74.60542591,39.32160485,74 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.52,-74.4691205,39.3433115,72 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.53,-74.451367,39.3568885,70 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.54,-74.512385,39.4845545,68 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.55,-74.69336192,39.59074326,66 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.56,-74.51714,39.396937,64 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.57,-74.57465622,39.41106244,62 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.58,-74.45908567,39.48984227,60 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.59,-74.50330073,39.50160623,58 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.61,-74.6187745,39.37413,54 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.62,-74.6638731,39.40073877,52 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.63,-74.58904408,39.35477371,50 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.64,-74.752716,39.45101867,48 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.65,-74.5352975,39.381686,46 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.66,-74.547915,39.368543,44 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.67,-74.537496,39.4659475,42 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.68,-74.62348066,39.51874349,40 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.69,-74.858499,39.564242,38 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.71,-74.57467016,39.36342474,34 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.72,-74.83761997,39.49006922,32 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.73,-74.4423497,39.35397767,30 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.74,-74.64354617,39.5251535,28 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.75,-74.9375605,39.503247,26 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.76,-74.6570805,39.555206,24 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.77,-74.54338987,39.50282491,22 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.78,-74.45572487,39.46608321,20 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.79,-74.4699575,39.3453065,18 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.81,-74.53449997,39.38436784,14 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.82,-74.6804275,39.445782,12 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.83,-74.57382564,39.41094824,10 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,IND1,3002 -0111_1179.01_5.84,-74.47865449,39.47779325,8 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.01_5.85,-74.5924595,39.323507,6 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES3A,3004 -0111_1179.01_5.86,-74.5565485,39.36141,4 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.01_5.87,-74.5198905,39.38961583,2 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,COM1,3004 -0111_1179.01_9.01,-74.62803775,39.43785044,MOSS MILL RD (OFF),GALLOWAY TWP,,0,1,RES3A,3001 -0111_1179.01_9.02,-74.6096852,39.34151558,5 CAVESSON DR,GALLOWAY TWP,16,1990,1,RES3A,3001 -0111_1179.01_9.03,-74.6002735,39.511633,7 CAVESSON DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1179.01_9.04,-74.57640495,39.41823382,9 CAVESSON DR,GALLOWAY TWP,16,2002,1,COM1,3004 -0111_1179.01_9.06,-74.5177339,39.32045296,13 CAVESSON DR,GALLOWAY TWP,16,1990,1,RES3A,3001 -0111_1179.02_1,-74.69081636,39.44994181,53 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.02_10,-74.92419342,39.51396968,35 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_11,-74.58624369,39.32441177,33 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.02_12,-74.54833191,39.52718916,31 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_13,-74.49776581,39.52107851,29 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_14,-74.66435134,39.41750574,27 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_15,-74.65003417,39.41176967,25 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_16,-74.50586734,39.48253574,23 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,GOV1,3004 -0111_1179.02_17,-74.3780487,39.39936248,21 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.02_18,-74.62843895,39.3906898,19 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.02_19,-74.57173,39.343044,17 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_2,-74.6380855,39.4011895,51 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.02_20,-74.76018034,39.44601782,15 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.02_21,-74.47328833,39.48347017,13 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_22,-74.84334605,39.40729186,11 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_23,-74.632162,39.34884843,9 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3002 -0111_1179.02_24,-74.52218582,39.39733747,7 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_25,-74.57681671,39.40895658,5 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_26,-74.65061353,39.35905027,PEMBROOKE WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_1179.02_3,-74.60806358,39.3199248,49 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.02_4,-74.50622827,39.43548689,47 PEMBROOKE WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1179.02_5,-74.47110087,39.34527435,45 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES3A,3001 -0111_1179.02_6,-74.48764678,39.51967611,43 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_7,-74.80294881,39.6405033,41 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1179.02_8,-74.5668461,39.3603962,39 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3002 -0111_1179.02_9,-74.62884775,39.3603453,37 PEMBROOKE WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_118_4,-74.51398794,39.44142593,617 S PHILADELPHIA AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1180_2.01,-74.50730918,39.40674201,164 OLD NEW YORK RD,GALLOWAY TWP,17,2003,1,RES1,3001 -0111_1180_2.04,-74.5448095,39.386521,166 OLD NEW YORK RD,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1180_2.05,-74.52342143,39.31359985,168 OLD NEW YORK RD,GALLOWAY TWP,17,2002,2,RES1,3001 -0111_1186_1,-74.5403805,39.4674955,DAVENPORT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_1186_10,-74.58182933,39.32973192,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1186_11,-74.9636515,39.52864,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1186_13,-74.37096087,39.4069554,33 N NEW YORK RD,GALLOWAY TWP,16,2003,1,RES3A,3001 -0111_1186_15.01,-74.6336615,39.3182885,NEW YORK RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_1186_15.02,-74.66146997,39.55434784,NEW YORK RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_1186_15.03,-74.6050155,39.3697765,NEW YORK RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_1186_2,-74.63859898,39.53013716,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1186_3,-74.62258376,39.42000313,46 OLD NEW YORK RD,GALLOWAY TWP,16,1936,1,RES3A,3001 -0111_1186_4,-74.649778,39.533847,40 OLD NEW YORK RD,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1186_5,-74.60738749,39.34993754,36 OLD NEW YORK RD,GALLOWAY TWP,16,1995,1,RES3A,3001 -0111_1186_6,-74.60365293,39.32307527,34 OLD NEW YORK RD,GALLOWAY TWP,16,1959,1,RES1,3002 -0111_1186_7,-74.7116265,39.5738545,30 OLD NEW YORK RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1186_8,-74.94007075,39.5269815,26 OLD NEW YORK RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1186_9,-74.62682195,39.35647721,22 OLD NEW YORK RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1187_1,-74.59698295,39.50650857,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1187_2,-74.78907629,39.63679839,100 OLD NEW YORK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1188_1,-74.60639284,39.34996925,104 OLD NEW YORK RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_1189_1,-74.70315649,39.42176308,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1189_2,-74.63274619,39.39828389,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_119_4,-74.93655765,39.52023085,631 S PHILADELPHIA AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1190_1,-74.372082,39.4025715,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_1190_2,-74.47467532,39.34223102,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES3B,3001 -0111_1191_1,-74.6517235,39.356598,FIRST ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1191_2,-74.53206884,39.40489521,FIRST ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1192_1,-74.59042867,39.32774578,FIRST ST,GALLOWAY TWP,,0,1,RES3B,3001 -0111_1192_2,-74.42493699,39.37543617,FIRST ST,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1193_1,-74.57141652,39.41421788,FIRST ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1193_2,-74.47037867,39.34374032,FIRST ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1194_1,-74.6129104,39.4290587,SECOND ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1194_2,-74.78459567,39.6730635,SECOND ST,GALLOWAY TWP,,0,1,RES1,3002 -0111_1195_1,-74.51683269,39.32036867,SECOND ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1195_2,-74.4946005,39.4719275,SECOND ST,GALLOWAY TWP,,0,1,RES1,3002 -0111_1196_1,-74.49097444,39.33119183,THIRD ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1196_2,-74.61512693,39.32058224,THIRD ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1197_1,-74.52963233,39.51045704,THIRD ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1197_2,-74.51539967,39.38760601,THIRD ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_1.01,-74.53983448,39.47950733,MOTTS CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_1.02,-74.6412545,39.3773475,MOTTS CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_10,-74.61084746,39.48856935,OLD NEW YORK RD (OFF),GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_11,-74.68283489,39.4406042,MOTTS CREEK RD (OFF),GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_12,-74.54245923,39.45945242,NEW YORK RD (OFF),GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_13,-74.57077832,39.41424345,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_14,-74.59851045,39.35393023,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_15,-74.83558008,39.40088267,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_16,-74.6519305,39.39789667,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_17,-74.429371,39.3748095,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_18,-74.50519901,39.33522084,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_2,-74.51492537,39.43849912,652 MOTTS CREEK RD,GALLOWAY TWP,16,1936,1,RES1,3002 -0111_1198_20,-74.48188367,39.35198097,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_21,-74.937207,39.5194145,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3002 -0111_1198_22,-74.9306495,39.5253995,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_23,-74.5854156,39.32187886,MANOR BLVD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_3,-74.4976575,39.3346065,MOTTS CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_4,-74.56817766,39.4761333,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_5,-74.6848505,39.4447235,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_6,-74.79560578,39.53808988,MOTTS CREEK RD (OFF),GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_7,-74.42339711,39.37458168,MOTTS CREEK RD (OFF),GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_8,-74.80547279,39.5266886,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1198_9,-74.5696105,39.4172685,OLD NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_120_4.01,-74.44797065,39.37446329,647 S PHILADELPHIA AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_120_4.02,-74.49793891,39.33257083,649 S PHILADELPHIA AVE,GALLOWAY TWP,16,1970,1,GOV1,3004 -0111_1201.01_1.18,-74.568028,39.3557715,700 NACOTE CREEK CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_1.19,-74.4540243,39.49281105,702 NACOTE CREEK CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_1.20,-74.6210735,39.3792035,704 NACOTE CREEK CT,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.01_1.21,-74.7861305,39.6777045,706 NACOTE CREEK CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_1.22,-74.81320499,39.63261233,708 NACOTE CREEK CT,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.01_1.23,-74.52136599,39.40512234,710 NACOTE CREEK CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_1.24,-74.654207,39.59472623,712 NACOTE CREEK PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_1.25,-74.77743426,39.65584121,714 NACOTE CREEK PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.01_1.26,-74.61774017,39.44967033,716 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_1.27,-74.5309823,39.49864562,37 N QUAIL HILL BLVD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_1.28,-74.55337594,39.47587741,35 N QUAIL HILL BLVD,GALLOWAY TWP,16,1982,1,RES3A,3001 -0111_1201.01_1.29,-74.55169624,39.37487231,33 N QUAIL HILL BLVD,GALLOWAY TWP,16,1982,1,COM3,3004 -0111_1201.01_1.33,-74.5147915,39.408884,25 N QUAIL HILL BLVD,GALLOWAY TWP,,1981,1,RES1,3001 -0111_1201.01_1.45,-74.62952,39.3492255,15 N QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1201.01_1.46,-74.81204309,39.6408644,17 N QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1201.01_1.47,-74.80224176,39.62413131,19 N QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1201.01_1.48,-74.487365,39.4715155,21 N QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1201.01_1.49,-74.5631575,39.365974,23 N QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1201.01_2.01,-74.6263095,39.436739,709 E GREAT BAY CT,GALLOWAY TWP,16,1983,1,COM3,3004 -0111_1201.01_2.02,-74.49004932,39.49563216,707 E GREAT BAY CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_2.03,-74.4859365,39.3362155,705 GREAT BAY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.01_2.04,-74.50232969,39.50080783,703 GREAT BAY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.01_2.05,-74.93300609,39.48578075,701 GREAT BAY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.01_2.06,-74.50423227,39.41518458,700 GREAT BAY CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.07,-74.71291722,39.46696331,702 GREAT BAY CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.08,-74.51435633,39.32914003,704 GREAT BAY CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_2.09,-74.47388419,39.49255482,706 E GREAT BAY CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.10,-74.59482766,39.33497001,708 E GREAT BAY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.01_2.11,-74.5310235,39.3846135,710 E GREAT BAY CT,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_1201.01_2.12,-74.63987037,39.43557957,721 NACOTE CREEK PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_2.13,-74.4432451,39.3724501,719 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.14,-74.548628,39.3809385,717 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,AGR1,3001 -0111_1201.01_2.15,-74.63750852,39.52384758,715 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.16,-74.51345785,39.32588068,713 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.17,-74.550345,39.3856795,711 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.18,-74.68743,39.4776135,709 NACOTE CREEK PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_2.19,-74.7674575,39.3308415,707 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,COM3,3004 -0111_1201.01_2.20,-74.72445014,39.44490433,705 NACOTE CREEK PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_2.21,-74.51546068,39.32935449,703 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.22,-74.467411,39.493595,701 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.23,-74.3615825,39.4086015,700 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.24,-74.63984431,39.41154887,702 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.01_2.25,-74.82404486,39.49842138,704 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.26,-74.60636935,39.31365662,706 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.27,-74.63625931,39.41087397,708 NACOTE CREEK PL,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.01_2.28,-74.40061996,39.38926836,705 NACOTE CREEK CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.01_2.29,-74.581657,39.473814,703 NACOTE CREEK CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.01_6.01,-74.5169405,39.4170245,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3004 -0111_1201.01_6.02,-74.7357335,39.4366935,702 SMITH-BOWEN RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1201.01_7.21,-74.47351209,39.48062054,16 N NEW YORK RD,GALLOWAY TWP,,1979,1,RES1,3001 -0111_1201.01_9.02,-74.4066695,39.3769295,NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1201.02_10.03,-74.48396718,39.49584613,719 GRIST MILL WAY,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1201.02_10.04,-74.385124,39.39309,717 GRIST MILL WAY,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1201.02_10.05,-74.6455979,39.35472612,715 GRIST MILL WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1201.02_10.06,-74.7175215,39.586194,713 GRIST MILL WAY,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1201.02_10.07,-74.45519572,39.37181467,709 GRIST MILL WAY,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1201.02_10.08,-74.5266735,39.4653415,707 GRIST MILL WAY,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_10.09,-74.35793208,39.41526586,705 GRIST MILL WAY,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1201.02_10.10,-74.9373025,39.5213705,703 GRIST MILL WAY,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_10.11,-74.685909,39.5473105,14 GRIST MILL PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_10.12,-74.45222032,39.372046,18 GRIST MILL PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_10.13,-74.789993,39.6318095,20 GRIST MILL PL,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_1201.02_10.14,-74.48347848,39.49466261,19 GRIST MILL PL,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.01,-74.53696005,39.38718834,74 N QUAIL HILL BLVD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.02,-74.53328437,39.30617493,72 N QUAIL HILL BLVD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1201.02_2.03,-74.6191915,39.4043255,70 N QUAIL HILL BLVD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.04,-74.7169681,39.39747415,68 N QUAIL HILL BLVD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.05,-74.435848,39.517867,66 N QUAIL HILL BLVD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.06,-74.63339602,39.35235116,64 N QUAIL HILL BLVD,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_1201.02_2.07,-74.503664,39.431899,701 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.08,-74.44562319,39.37300099,703 MOONRAKER CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1201.02_2.09,-74.68748399,39.55724684,705 MOONRAKER CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.10,-74.55172182,39.36285139,707 MOONRAKER CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.11,-74.4884685,39.4309925,711 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.12,-74.61399989,39.34005102,713 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.13,-74.6022975,39.437097,715 MOONRAKER CT,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1201.02_2.14,-74.77689987,39.59809304,717 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.15,-74.8140499,39.35707978,719 MOONRAKER CT,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1201.02_2.16,-74.85383334,39.61851699,721 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.17,-74.74819329,39.44610086,723 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.18,-74.59731653,39.43528894,725 MOONRAKER CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1201.02_2.19,-74.490043,39.442916,727 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.20,-74.48887046,39.33221783,729 MOONRAKER CT,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_1201.02_2.21,-74.5002675,39.417668,731 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.22,-74.80534746,39.62790695,733 MOONRAKER CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1201.02_2.23,-74.47086085,39.34433185,735 MOONRAKER CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.24,-74.88646098,39.59594807,737 MOONRAKER CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_2.25,-74.53952225,39.3905931,739 MOONRAKER CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_2.26,-74.59602588,39.3461107,730 MOONRAKER CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_2.27,-74.85105683,39.371187,728 MOONRAKER CT,GALLOWAY TWP,16,1981,1,RES3B,3001 -0111_1201.02_2.28,-74.54748925,39.37941117,726 MOONRAKER CT,GALLOWAY TWP,16,1982,1,RES3A,3001 -0111_1201.02_2.29,-74.4940735,39.335394,724 MOONRAKER CT,GALLOWAY TWP,16,1982,1,COM4,3004 -0111_1201.02_2.30,-74.58420347,39.33132464,722 MOONRAKER CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_2.31,-74.5889358,39.41495493,720 MOONRAKER CT,GALLOWAY TWP,16,1981,1,RES3A,3001 -0111_1201.02_2.32,-74.46358603,39.35194167,718 MOONRAKER CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_2.33,-74.51612093,39.40013518,716 MOONRAKER CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_2.34,-74.78785777,39.41953662,714 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.35,-74.671162,39.55665258,712 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.36,-74.5737572,39.37002262,710 MOONRAKER CT,GALLOWAY TWP,16,1983,1,COM3,3004 -0111_1201.02_2.37,-74.452657,39.498052,708 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.38,-74.7641175,39.626194,706 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.39,-74.50996817,39.39872424,704 MOONRAKER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_2.40,-74.52120835,39.31770647,702 MOONRAKER CT,GALLOWAY TWP,16,1983,1,COM7,3004 -0111_1201.02_2.41,-74.57814726,39.36197754,700 MOONRAKER CT,GALLOWAY TWP,16,1983,1,REL1,3004 -0111_1201.02_2.42,-74.5460905,39.476871,56 N QUAIL HILL BLVD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_2.43,-74.45080932,39.4901128,52 N QUAIL HILL BLVD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_2.44,-74.55303765,39.36950761,50 N QUAIL HILL BLVD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1201.02_2.45,-74.5339565,39.4712565,48 N QUAIL HILL BLVD,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.02_2.46,-74.68389618,39.44044352,42 N QUAIL HILL BLVD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_2.47,-74.5743925,39.3496725,40 N QUAIL HILL BLVD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_2.48,-74.62345686,39.43375578,38 N QUAIL HILL BLVD,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_1201.02_2.49,-74.52291082,39.3947516,36 N QUAIL HILL BLVD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_2.50,-74.66927016,39.55807509,34 N QUAIL HILL BLVD,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1201.02_3.02,-74.5369635,39.3796865,724 SMITH-BOWEN RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1201.02_3.03,-74.9642015,39.50599,734 SMITH-BOWEN RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1201.02_4.01,-74.80506853,39.62614984,39 SMITH-BOWEN RD,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_1201.02_4.02,-74.64424064,39.40729243,35 SMITH-BOWEN RD,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1201.02_4.03,-74.36502586,39.41545582,37 SMITH-BOWEN RD,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1201.02_5.01,-74.92452665,39.50946613,27 SMITH-BOWEN RD,GALLOWAY TWP,15,1896,1,RES1,3001 -0111_1201.02_5.02,-74.818871,39.3684225,31 SMITH-BOWEN RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1201.02_8.01,-74.55906458,39.36770644,700 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.02,-74.80769056,39.63355685,702 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.03,-74.6248765,39.528469,704 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.04,-74.60370046,39.3139232,706 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.05,-74.513794,39.398597,708 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.06,-74.80126185,39.63600504,710 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.07,-74.61354527,39.42829915,712 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,RES3A,3001 -0111_1201.02_8.08,-74.80723936,39.63595143,714 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.09,-74.52105275,39.38428762,716 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.11,-74.58370065,39.32469935,720 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.12,-74.44854949,39.35600566,722 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.13,-74.70237023,39.57841447,724 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.14,-74.56548113,39.41825454,726 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.15,-74.5012225,39.424273,728 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.02_8.16,-74.53071068,39.40398302,730 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.17,-74.5063505,39.4307875,732 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_1201.02_8.18,-74.77494211,39.60034709,734 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.02_8.19,-74.64727069,39.43288154,736 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.02_8.21,-74.48218433,39.34614653,740 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.22,-74.80610016,39.64024653,742 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.23,-74.80407717,39.63979751,744 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.02_8.24,-74.45280369,39.35361347,746 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.25,-74.62457799,39.38071883,748 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_1201.02_8.26,-74.7976893,39.64033578,737 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.27,-74.6331295,39.391678,735 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.28,-74.56942677,39.33977514,733 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.29,-74.50285656,39.44244663,731 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.31,-74.53396688,39.38579868,727 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.32,-74.59363717,39.31275402,725 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.02_8.33,-74.487253,39.43515183,723 WHALERS COVE PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.34,-74.912207,39.4667885,721 WHALERS COVE PL,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.35,-74.94524319,39.52458697,722 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.36,-74.53848203,39.31318019,724 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.37,-74.85662611,39.56294415,726 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.38,-74.58382315,39.33957305,728 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.39,-74.49861267,39.47151694,730 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.41,-74.729106,39.5896865,734 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.42,-74.66144932,39.36747507,736 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1201.02_8.43,-74.43725159,39.37045119,737 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_1201.02_8.44,-74.4417315,39.3709305,735 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.45,-74.7351985,39.449102,733 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.46,-74.76442493,39.65335182,731 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.47,-74.4748645,39.487233,729 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1201.02_8.48,-74.6451865,39.4482745,727 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.49,-74.8852265,39.596383,725 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.51,-74.51212343,39.48396118,721 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES3A,3001 -0111_1201.02_8.52,-74.51403301,39.43945511,719 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_1201.02_8.53,-74.64401816,39.36176331,717 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.54,-74.528286,39.3990725,715 WHALERS COVE CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1201.02_8.55,-74.52603033,39.39417449,713 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1201.02_8.56,-74.600447,39.36894,711 WHALERS COVE CT,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1201.02_8.57,-74.64100138,39.37579779,709 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,COM1,3004 -0111_1201.02_8.58,-74.5801615,39.332223,707 WHALERS COVE CT,GALLOWAY TWP,16,1981,1,RES1,3004 -0111_1201.02_8.59,-74.57672665,39.40841297,705 WHALERS COVE CT,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_1201.03_1,-74.63440267,39.54058999,SMITH-BOWEN RD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1201.03_10,-74.42002368,39.37120449,702 GRIST MILL WAY,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_1201.03_10.02,-74.493531,39.334734,737 E MOSS MILL RD,GALLOWAY TWP,16,1921,1,GOV1,3004 -0111_1201.03_2,-74.617598,39.3206285,722 GRIST MILL WAY,GALLOWAY TWP,16,2001,1,COM1,3004 -0111_1201.03_3,-74.9493685,39.51454,720 GRIST MILL WAY,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1201.03_4,-74.49906538,39.41154713,716 GRIST MILL WAY,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1201.03_5,-74.7777915,39.6063265,714 GRIST MILL WAY,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1201.03_6,-74.83009718,39.40934948,712 GRIST MILL WAY,GALLOWAY TWP,16,1988,1,EDU1,3004 -0111_1201.03_8,-74.37116862,39.40416817,708 GRIST MILL WAY,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_1201.03_9,-74.9354985,39.5210275,704 GRIST MILL WAY,GALLOWAY TWP,17,1990,1,GOV1,3004 -0111_1203_1.01,-74.58754233,39.32082546,134 N NEW YORK RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1203_1.02,-74.47496141,39.48252403,132 N NEW YORK RD,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1204.01_1.01,-74.79275935,39.66352203,399 N NEW YORK RD,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_1204.01_18.01,-74.59267867,39.48876617,343 N NEW YORK RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_1204.01_18.02,-74.86900761,39.60190567,341 N NEW YORK RD,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1204.01_18.03,-74.834575,39.4042505,339 N NEW YORK RD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1204.01_18.04,-74.78271039,39.63197073,337 N NEW YORK RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1204.01_18.06,-74.81678484,39.65616283,333 N NEW YORK RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1204.01_19.01,-74.58165798,39.34580778,331 N NEW YORK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1204.01_19.02,-74.59274896,39.34516347,329 N NEW YORK RD,GALLOWAY TWP,16,2004,1,RES3A,3001 -0111_1204.01_19.03,-74.362572,39.4091895,327 N NEW YORK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1204.01_20,-74.60132186,39.48046068,315 N NEW YORK RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_1204.01_23,-74.550246,39.38617,605 MOTTS CREEK RD,GALLOWAY TWP,16,1810,1,RES1,3001 -0111_1204.01_24,-74.48376242,39.49558423,601 MOTTS CREEK RD,GALLOWAY TWP,16,1836,2,RES1,3001 -0111_1204.01_26.01,-74.486667,39.347399,557 MOTTS CREEK RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1204.01_3,-74.46268419,39.34731164,694 NACOTE CREEK,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1204.01_35.01,-74.538744,39.470835,661 MOTTS CREEK RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1204.01_35.02,-74.83837882,39.41860539,663 MOTTS CREEK RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1204.01_35.03,-74.51550555,39.4525055,669 MOTTS CREEK RD,GALLOWAY TWP,17,1971,1,RES1,3001 -0111_1204.01_41,-74.524737,39.318901,201 N NEW YORK RD,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_1204.01_5,-74.36680544,39.42034038,NACOTE CREEK,GALLOWAY TWP,,0,1,RES1,3001 -0111_1204.01_7.01,-74.533086,39.466165,385 N NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_121_2.02,-74.77230053,39.63666216,661 S PHILADELPHIA AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_121_8,-74.8031965,39.637327,667 S PHILADELPHIA AVE,GALLOWAY TWP,16,1951,1,GOV1,3004 -0111_1211_1.01,-74.3697285,39.4032125,202 N NEW YORK RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1211_1.02,-74.4447998,39.48411406,204 N NEW YORK RD,GALLOWAY TWP,16,2003,1,RES1,3004 -0111_122_7,-74.58241501,39.34683756,685 S PHILADELPHIA AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1223_1,-74.73719032,39.55094511,293 KINGS HIGHWAY,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1229_10,-74.5355155,39.3056465,850 MOTTS CREEK RD,GALLOWAY TWP,15,1932,1,RES1,3001 -0111_1229_11,-74.85253482,39.61725151,852 MOTTS CREEK RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1229_15,-74.93889076,39.50436896,MOTTS CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1229_3,-74.49476962,39.5207361,824 MOTTS CREEK RD,GALLOWAY TWP,14,1951,1,RES1,3001 -0111_1229_5,-74.37303857,39.40245968,828 MOTTS CREEK RD,GALLOWAY TWP,15,1951,1,GOV1,3004 -0111_1229_7,-74.398199,39.389892,844 MOTTS CREEK RD,GALLOWAY TWP,16,2016,1,GOV1,3004 -0111_1229_9,-74.531376,39.4561665,848 MOTTS CREEK RD,GALLOWAY TWP,15,1963,1,GOV1,3004 -0111_123_14,-74.4378313,39.36746333,1405 DAHLIA ST,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_123_15,-74.5403724,39.3897522,1403 DAHLIA ST,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_123_8,-74.501478,39.4501655,707 S PHILADELPHIA AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_1230_10,-74.60181478,39.36566765,819 MOTTS CREEK RD,GALLOWAY TWP,15,1950,1,RES1,3001 -0111_1230_12,-74.597153,39.5481455,825 MOTTS CREEK RD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1230_14,-74.4843514,39.34664205,829 MOTTS CREEK RD,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_1230_15,-74.402709,39.387973,831 MOTTS CREEK RD,GALLOWAY TWP,16,1951,1,IND2,3002 -0111_1230_17,-74.9368245,39.530896,835 MOTTS CREEK RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1230_18,-74.4843,39.3381095,837 MOTTS CREEK RD,GALLOWAY TWP,15,1954,1,RES1,3001 -0111_1230_19,-74.7870225,39.664925,839 MOTTS CREEK RD,GALLOWAY TWP,15,1956,1,GOV1,3004 -0111_1230_24,-74.54704268,39.36919653,849 MOTTS CREEK RD,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_1230_25,-74.4249505,39.370951,851 MOTTS CREEK RD,GALLOWAY TWP,16,2015,1,RES1,3001 -0111_1230_26,-74.79209116,39.53317799,853 MOTTS CREEK RD,GALLOWAY TWP,17,1966,1,GOV1,3004 -0111_1230_27,-74.86109,39.5647,855 MOTTS CREEK RD,GALLOWAY TWP,15,1955,1,RES1,3001 -0111_1230_28,-74.58739643,39.42161189,857 MOTTS CREEK RD,GALLOWAY TWP,16,1946,1,GOV1,3004 -0111_1230_29,-74.80680563,39.64346216,859 MOTTS CREEK RD,GALLOWAY TWP,,1946,1,RES1,3001 -0111_1230_30,-74.45068382,39.37516499,861 MOTTS CREEK RD,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_1230_31,-74.45378,39.374946,MOTTS CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1230_32,-74.517602,39.3181455,865 MOTTS CREEK RD,GALLOWAY TWP,15,1936,1,GOV1,3004 -0111_1230_37,-74.5515427,39.37336136,875 E MOTTS CREEK RD,GALLOWAY TWP,15,1956,1,RES1,3001 -0111_1230_41,-74.56932281,39.36074232,883 MOTTS CREEK RD,GALLOWAY TWP,15,1946,1,GOV1,3004 -0111_1230_42,-74.87143831,39.48948369,885 MOTTS CREEK RD,GALLOWAY TWP,15,1946,1,RES1,3001 -0111_1230_43,-74.40192,39.3867365,887 MOTTS CREEK RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1230_44,-74.83437832,39.48408599,889 MOTTS CREEK RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1230_47.01,-74.52198085,39.39264852,895 MOTTS CREEK RD,GALLOWAY TWP,15,1952,1,GOV1,3004 -0111_1230_47.02,-74.49438538,39.42662519,201 MOTTS CREEK RD,GALLOWAY TWP,15,1952,1,RES1,3001 -0111_1230_47.03,-74.7383353,39.46596603,203 MOTTS CREEK RD,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1230_51,-74.60259219,39.31471808,211 MOTTS CREEK RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1230_52,-74.47324256,39.45693502,215 MOTTS CREEK RD,GALLOWAY TWP,16,1946,1,GOV1,3004 -0111_1230_54,-74.56649611,39.48016267,210 MOTTS CREEK RD,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_1230_55,-74.72137663,39.45180861,208 MOTTS CREEK RD,GALLOWAY TWP,15,1955,2,RES1,3001 -0111_1230_56,-74.66074988,39.59786605,206 MOTTS CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1230_57,-74.39628287,39.38618732,MOTTS CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1230_58,-74.78257786,39.42343572,202 MOTTS CREEK RD,GALLOWAY TWP,,1946,1,RES1,3001 -0111_1230_59,-74.63634813,39.38206067,200 MOTTS CREEK RD,GALLOWAY TWP,16,1959,1,GOV1,3004 -0111_1230_6,-74.83010911,39.42357049,811 MOTTS CREEK RD,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_1230_7,-74.8058971,39.62755865,813 MOTTS CREEK RD,GALLOWAY TWP,15,1956,1,RES1,3001 -0111_1230_9,-74.50347418,39.33734897,817 MOTTS CREEK RD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_1231_4.01,-74.80231149,39.63784346,266 KINGS HIGHWAY,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_1235_2,-74.500767,39.334239,316 KINGS HIGHWAY,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_124_2,-74.58039284,39.33435101,1400 DAHLIA ST,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_124_4,-74.69640536,39.49715421,737 S PHILADELPHIA AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_125_1,-74.52266685,39.41891613,1346 ATLANTIC AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_125_10,-74.80587508,39.48898034,463 S CINCINNATI AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_125_2,-74.61927481,39.43775182,452 S PHILADELPHIA AVE,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_125_3,-74.3768665,39.3992075,454 S PHILADELPHIA AVE,GALLOWAY TWP,16,1895,1,RES1,3001 -0111_125_4,-74.67766391,39.55256285,451 S CINCINNATI AVE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_125_5,-74.5702076,39.47917935,453 S CINCINNATI AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_125_6,-74.65582004,39.59381371,456 S PHILADELPHIA AVE,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_125_7,-74.774487,39.61634,458 S PHILADELPHIA AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_125_8.01,-74.9459,39.5242115,460 S PHILADELPHIA AVE,GALLOWAY TWP,16,1910,1,COM7,3004 -0111_125_8.02,-74.50375966,39.33284492,459 S CINCINNATI AVE,GALLOWAY TWP,16,1995,1,RES1,3004 -0111_125_9,-74.94954866,39.53434842,462 S PHILADELPHIA AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_1256_1.01,-74.68146227,39.63347266,326 KINGS HIGHWAY,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_1258_7,-74.590864,39.3812255,380 N NEW YORK RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1259_1,-74.52103841,39.44886616,701 LINDBERGH AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_1259_2,-74.6485235,39.522155,703 LINDBERGH AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1259_3,-74.60901897,39.30619103,705 LINDBERGH AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1259_4,-74.6782705,39.4991465,709 LINDBERGH AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_1259_5,-74.64585106,39.52821084,711 LINDBERGH AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1259_6,-74.498982,39.41252,715 LINDBERGH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_1259_7,-74.93881999,39.52799883,717 LINDBERGH AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1259_8,-74.6860935,39.6532305,719 LINDBERGH AVE,GALLOWAY TWP,15,1947,1,RES1,3001 -0111_126_1,-74.5160105,39.4388435,502 S PHILADELPHIA AVE,GALLOWAY TWP,16,1905,1,RES1,3001 -0111_126_2,-74.5994985,39.40915,500 S PHILADELPHIA AVE,GALLOWAY TWP,,1941,1,RES1,3001 -0111_1260.01_1,-74.39572289,39.38751199,160-182 S NEW YORK RD,GALLOWAY TWP,,1988,1,RES1,3001 -0111_1260.01_10.02,-74.4855172,39.49443316,126 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1260.01_11.01,-74.56659,39.473984,163 LEEDS POINT RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1260.01_11.02,-74.6399115,39.5163775,169 LEEDS POINT RD,GALLOWAY TWP,16,1946,1,GOV1,3004 -0111_1260.01_11.03,-74.869851,39.5686435,159 LEEDS POINT RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_11.04,-74.6474035,39.3769875,161 LEEDS POINT RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1260.01_11.05,-74.372499,39.4074,155A LEEDS POINT RD,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1260.01_12,-74.78158764,39.31502625,157 LEEDS POINT RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_13,-74.5201167,39.38709881,155 LEEDS POINT RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1260.01_14,-74.5257515,39.3150735,153 LEEDS POINT RD,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_1260.01_15.01,-74.51650335,39.32555265,GATE HOUSE DR-PRIVATE RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_1260.01_15.02,-74.83159947,39.45186707,149 LEEDS POINT RD,GALLOWAY TWP,16,1896,1,RES1,3001 -0111_1260.01_15.04,-74.63210669,39.41835305,808 GATE HOUSE DR,GALLOWAY TWP,19,2008,1,RES1,3001 -0111_1260.01_15.05,-74.85839456,39.6110779,141 LEEDS POINT RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1260.01_18.01,-74.63468792,39.52856324,139 LEEDS POINT RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.01_18.02,-74.6395275,39.462099,135 LEEDS POINT RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1260.01_18.03,-74.974206,39.51231,137 LEEDS POINT RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1260.01_2,-74.8063047,39.62344158,171 LEEDS POINT RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1260.01_20,-74.54840316,39.37247452,120 S NEW YORK RD,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_1260.01_22.01,-74.488098,39.4343665,800 HARLEQUIN DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1260.01_22.03,-74.57511618,39.37135206,802 HARLEQUIN DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1260.01_22.04,-74.46164857,39.35096932,804 HARLEQUIN DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_1260.01_22.05,-74.4837577,39.33859463,806 HARLEQUIN DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1260.01_22.06,-74.4969565,39.4690015,808 HARLEQUIN DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1260.01_22.07,-74.487408,39.472262,810 HARLEQUIN DR,GALLOWAY TWP,16,1992,1,RES3A,3001 -0111_1260.01_22.08,-74.4468108,39.37333292,812 HARLEQUIN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.01_22.09,-74.497798,39.529292,814 HARLEQUIN DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1260.01_22.10,-74.5071275,39.492385,816 HARLEQUIN DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1260.01_22.11,-74.62241818,39.41302134,818 HARLEQUIN DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1260.01_22.12,-74.56841018,39.36890125,820 HARLEQUIN DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1260.01_22.13,-74.622857,39.363402,822 HARLEQUIN DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1260.01_22.14,-74.6008316,39.35349281,819 HARLEQUIN DR,GALLOWAY TWP,16,1992,1,RES3A,3004 -0111_1260.01_22.15,-74.61738143,39.43765338,817 HARLEQUIN DR,GALLOWAY TWP,16,1997,1,GOV1,3004 -0111_1260.01_22.16,-74.75259017,39.45167371,815 HARLEQUIN DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_1260.01_22.17,-74.723769,39.6498435,813 HARLEQUIN DR,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_1260.01_22.18,-74.5241265,39.3871955,811 HARLEQUIN DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1260.01_22.19,-74.5219695,39.424389,809 HARLEQUIN DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1260.01_22.20,-74.60218624,39.36970541,807 HARLEQUIN DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1260.01_22.21,-74.59079413,39.43371898,807 BLUE TEAL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1260.01_22.22,-74.51253953,39.32427484,805 BLUE TEAL DR,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1260.01_22.23,-74.5075255,39.493692,803 BLUE TEAL DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1260.01_23,-74.64353517,39.53859349,125 LEEDS POINT RD,GALLOWAY TWP,15,1906,2,RES1,3001 -0111_1260.01_24.01,-74.63371948,39.45652917,112 S NEW YORK RD,GALLOWAY TWP,,2003,1,RES1,3001 -0111_1260.01_24.02,-74.9645795,39.511978,110 S NEW YORK RD,GALLOWAY TWP,,1998,1,RES1,3001 -0111_1260.01_25.01,-74.60115108,39.36950426,812 FOREST PARK DR,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_1260.01_25.03,-74.83435681,39.49388652,808 FOREST PARK DR,GALLOWAY TWP,16,2010,1,GOV1,3004 -0111_1260.01_25.04,-74.62023647,39.37873871,806 FOREST PARK DR,GALLOWAY TWP,16,2006,1,RES4,3001 -0111_1260.01_25.07,-74.78125,39.529882,801 FOREST PARK DR,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_25.09,-74.60130157,39.3791642,805 FOREST PARK DR,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_1260.01_25.10,-74.459538,39.3494385,807 FOREST PARK DR,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_1260.01_25.11,-74.48655817,39.3472535,809 FOREST PARK DR,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1260.01_25.12,-74.84996369,39.61193097,811 FOREST PARK DR,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_1260.01_25.13,-74.49666233,39.33544401,LEEDS POINT RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1260.01_29.02_C0002,-74.51690414,39.31967383,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0003,-74.72934585,39.45511729,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0004,-74.46227364,39.35333124,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0005,-74.59029466,39.41508889,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0006,-74.5589103,39.39428605,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0007,-74.94404083,39.52767059,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0008,-74.52012579,39.32165823,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0009,-74.81821694,39.52094809,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0010,-74.5525055,39.368773,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0011,-74.71609016,39.41489199,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_29.02_C0012,-74.609924,39.326999,48 S NEW YORK RD,GALLOWAY TWP,,1991,1,RES1,3001 -0111_1260.01_31.02,-74.9372855,39.518863,705 JERSEY WOODS RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1260.01_31.03,-74.8276985,39.570813,707 JERSEY WOODS RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1260.01_31.04,-74.63900896,39.36553536,709 JERSEY WOODS RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1260.01_31.05,-74.47557134,39.48014549,711 JERSEY WOODS RD,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_1260.01_31.06,-74.48657587,39.34833721,713 JERSEY WOODS RD,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_31.07,-74.5920805,39.343627,714 JERSEY WOODS RD,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1260.01_31.08,-74.496982,39.4482535,712 JERSEY WOODS RD,GALLOWAY TWP,17,2008,1,RES1,3001 -0111_1260.01_31.09,-74.8829698,39.45223005,710 JERSEY WOODS RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1260.01_31.10,-74.82207743,39.49055078,708 JERSEY WOODS RD,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_1260.01_31.11,-74.83510657,39.47702023,706 JERSEY WOODS RD,GALLOWAY TWP,16,2007,1,GOV1,3004 -0111_1260.01_31.13,-74.48946586,39.44093282,800 FOREST PARK DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_1260.01_32.01,-74.600324,39.329262,121 LEEDS POINT RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_1260.01_32.02,-74.539431,39.5152895,813 FOREST PARK DR,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_1260.01_32.03,-74.58593485,39.40750483,119 LEEDS POINT RD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_33.01,-74.47140126,39.49059138,117 LEEDS POINT RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_1260.01_34.01,-74.63463215,39.36710625,115A LEEDS POINT RD,GALLOWAY TWP,16,2017,4,RES1,3001 -0111_1260.01_34.02,-74.55756841,39.47486854,115 LEEDS POINT RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_1260.01_35.01,-74.5907971,39.3334128,113 LEEDS POINT RD,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1260.01_35.02,-74.50780996,39.52634624,111 LEEDS POINT RD,GALLOWAY TWP,16,2008,1,RES3A,3001 -0111_1260.01_36,-74.645935,39.410301,109 LEEDS POINT RD,GALLOWAY TWP,16,1934,1,RES1,3001 -0111_1260.01_38.01,-74.5712645,39.4143705,812 CURRAN CT,GALLOWAY TWP,17,2012,1,RES1,3001 -0111_1260.01_38.02,-74.8937745,39.526583,810 CURRAN CT,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_38.04,-74.9063464,39.47414373,806 CURRAN CT,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_38.05,-74.85192767,39.39768847,804 CURRAN CT,GALLOWAY TWP,17,2006,1,RES2,3005 -0111_1260.01_38.06,-74.51169653,39.40144786,802 CURRAN CT,GALLOWAY TWP,17,2005,1,RES1,3001 -0111_1260.01_38.07,-74.49293455,39.4772354,800 CURRAN CT,GALLOWAY TWP,17,2010,1,RES1,3001 -0111_1260.01_39,-74.6323143,39.36166214,95 LEEDS POINT RD,GALLOWAY TWP,16,1939,1,RES1,3001 -0111_1260.01_40.01,-74.57502069,39.35693009,813 CURRAN CT,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_40.02,-74.558796,39.3979455,811 CURRAN CT,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_40.03,-74.3621375,39.41939,809 CURRAN CT,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_40.05,-74.503702,39.4132765,805 CURRAN CT,GALLOWAY TWP,17,2014,1,RES1,3001 -0111_1260.01_40.06,-74.51803697,39.40950268,803 CURRAN CT,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_40.07,-74.4907345,39.340238,801 CURRAN CT,GALLOWAY TWP,17,2006,1,RES1,3001 -0111_1260.01_41,-74.4464961,39.37385984,85 LEEDS POINT RD,GALLOWAY TWP,16,1850,1,RES1,3001 -0111_1260.01_42.01,-74.6064994,39.36569077,816 BERRYWOOD LN,GALLOWAY TWP,16,1982,1,RES3A,3001 -0111_1260.01_42.02,-74.76658506,39.31220816,814 BERRYWOOD LN,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_42.03,-74.50820845,39.32362463,812 BERRYWOOD LN,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1260.01_42.04,-74.39882723,39.38776073,800 WINTERGREEN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.05,-74.5179495,39.410629,810 BERRYWOOD LN,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.06,-74.56408943,39.35579327,808 BERRYWOOD LN,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.07,-74.60950562,39.44150778,806 BERRYWOOD LN,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1260.01_42.08,-74.79703737,39.65180691,804 BERRYWOOD LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.01_42.09,-74.81055938,39.64281663,RECHARGE AREA,GALLOWAY TWP,,0,1,RES1,3001 -0111_1260.01_42.11,-74.40541266,39.37834676,801 BERRYWOOD LN,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_42.12,-74.6557545,39.524598,803 BERRYWOOD LN,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.13,-74.52109944,39.32092622,805 BERRYWOOD LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.01_42.14,-74.56401461,39.39144126,807 BERRYWOOD LN,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1260.01_42.15,-74.95937619,39.51294837,809 BERRYWOOD LN,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1260.01_42.16,-74.6921245,39.448712,811 BERRYWOOD LN,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1260.01_42.17,-74.54338227,39.47591079,813 BERRYWOOD LN,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1260.01_42.18,-74.63988607,39.36649711,815 BERRYWOOD LN,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.19,-74.50495216,39.33919145,817 BERRYWOOD LN,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1260.01_42.21,-74.681415,39.552899,821 BERRYWOOD LN,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_42.22,-74.8163145,39.3935585,802 WINTERGREEN CT,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1260.01_42.23,-74.53456282,39.31333802,804 WINTERGREEN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.24,-74.590893,39.4308555,806 WINTERGREEN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.25,-74.45121197,39.4954577,808 WINTERGREEN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.01_42.26,-74.427502,39.3579725,810 WINTERGREEN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.27,-74.72768231,39.58670214,811 WINTERGREEN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.28,-74.65940182,39.6341306,809 WINTERGREEN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_42.29,-74.50635731,39.44568609,807 WINTERGREEN CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_43.02,-74.52155,39.318897,36 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1260.01_45.01,-74.88404732,39.57354902,700 S QUAIL HILL BLVD,GALLOWAY TWP,,2000,1,RES1,3001 -0111_1260.01_45.02,-74.5698335,39.4799045,700 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.03,-74.9327265,39.485664,702 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.04,-74.612238,39.3200105,704 OSPREY CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_45.05,-74.5055295,39.3315915,706 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.06,-74.55798218,39.51810573,708 OSPREY CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_45.07,-74.5329275,39.3819,710 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.08,-74.5942778,39.37963739,712 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.09,-74.5357324,39.37848015,714 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.11,-74.88298012,39.59508839,718 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.12,-74.70589268,39.58103352,720 OSPREY CT,GALLOWAY TWP,16,1983,1,COM4,3004 -0111_1260.01_45.13,-74.4554991,39.35386117,722 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.14,-74.4722965,39.4923245,724 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.15,-74.49860338,39.32863028,725 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.16,-74.74948532,39.45036793,723 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.17,-74.603508,39.3778805,721 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.18,-74.78759737,39.67601406,719 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.19,-74.48517,39.346175,717 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.21,-74.8539835,39.6189155,713 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.22,-74.869773,39.4539414,711 OSPREY CT,GALLOWAY TWP,16,1983,4,RES1,3001 -0111_1260.01_45.23,-74.478022,39.342874,707 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.24,-74.51370883,39.328984,705 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.25,-74.55960236,39.39719821,703 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_45.26,-74.51077,39.3263645,701 OSPREY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.01,-74.798158,39.6202865,700 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.02,-74.61258308,39.35371868,702 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.03,-74.7863847,39.4587689,704 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.04,-74.7978365,39.660081,706 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.05,-74.75231449,39.44757789,708 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.06,-74.5115667,39.44270123,710 EAGLE POINT CT,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_1260.01_59.07,-74.548442,39.4698065,712 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.08,-74.78511903,39.63686296,714 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.09,-74.63299611,39.36297244,716 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.11,-74.67418384,39.48203755,720 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.12,-74.64777239,39.57044135,722 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.13,-74.40157954,39.38166516,724 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.14,-74.81834942,39.64808418,726 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.01_59.15,-74.62656194,39.3555943,728 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.16,-74.839915,39.377233,730 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.17,-74.3656715,39.4081595,719 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.18,-74.50281697,39.32777066,717 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.19,-74.45898073,39.54609148,715 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.21,-74.549248,39.465074,711 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.22,-74.49600283,39.46523178,709 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.23,-74.5558765,39.3917307,707 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.24,-74.49797123,39.47205008,705 EAGLE POINT CT,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.01_59.25,-74.60306208,39.32831623,800 EAGLE POINT PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.26,-74.5620095,39.410568,802 EAGLE POINT PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.27,-74.549994,39.463535,804 EAGLE POINT PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.28,-74.59688434,39.43532474,806 EAGLE POINT PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.29,-74.6279765,39.424443,808 EAGLE POINT PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.31,-74.8120075,39.3833845,811 EAGLE POINT PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.32,-74.60130802,39.32038454,809 EAGLE POINT PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_59.33,-74.49123,39.420705,807 EAGLE POINT PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.34,-74.50268246,39.42417961,805 EAGLE POINT PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.35,-74.53669503,39.40026195,803 EAGLE POINT PL,GALLOWAY TWP,16,1983,1,COM4,3004 -0111_1260.01_59.36,-74.604628,39.35538,801 EAGLE POINT PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.37,-74.5046635,39.493612,703 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_59.38,-74.8439255,39.4548795,701 EAGLE POINT CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.01,-74.49816817,39.32835899,700 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.02,-74.6519427,39.3539114,702 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.03,-74.81803764,39.62145955,704 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.04,-74.5975435,39.434865,706 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.05,-74.870033,39.602706,708 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.06,-74.4798686,39.44416881,710 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,COM1,3004 -0111_1260.01_79.07,-74.7150485,39.432997,712 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.01_79.08,-74.4602895,39.35533,714 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.09,-74.5154455,39.3308095,716 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.01_79.11,-74.64320694,39.3978107,720 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.12,-74.59903247,39.32976234,722 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.13,-74.57547604,39.36693739,724 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.14,-74.6142143,39.32306953,726 RAVENWOOD DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1260.01_79.15,-74.495554,39.4315895,728 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.16,-74.48620836,39.33705681,730 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.17,-74.48758972,39.33506434,732 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.18,-74.60051196,39.3650752,734 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.19,-74.80001224,39.62313576,736 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.21,-74.9485405,39.5208485,740 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.22,-74.44246805,39.35788167,742 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.23,-74.7331533,39.4493383,744 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.24,-74.5364286,39.38732079,746 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.25,-74.906806,39.50637,748 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.26,-74.64603109,39.44924331,750 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.01_79.27,-74.5473945,39.3856655,752 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,COM3,3004 -0111_1260.01_79.28,-74.64858993,39.41739623,754 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.01_79.29,-74.6141625,39.3114205,712 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.31,-74.603557,39.369702,716 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.32,-74.9416285,39.525849,718 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.33,-74.52749715,39.46599377,720 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.34,-74.66438147,39.45397273,722 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.35,-74.5213305,39.443305,724 FALCON CREST CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_79.36,-74.37206664,39.4142092,727 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.37,-74.46311985,39.35891808,725 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.38,-74.51948268,39.32226648,723 FALCON CREST CT,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.01_79.39,-74.50780267,39.33637946,721 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.41,-74.81843669,39.63195785,717 FALCON CREST PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.42,-74.7876805,39.6333215,715 FALCON CREST PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.43,-74.92926897,39.51179917,713 FALCON CREST PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.44,-74.45713546,39.50980134,711 FALCON CREST PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.45,-74.51080994,39.46568163,709 FALCON CREST PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.46,-74.59862171,39.32022711,707 FALCON CREST PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.47,-74.683579,39.4425715,705 FALCON CREST PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.48,-74.80307778,39.63962869,703 FALCON CREST PL,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.01_79.49,-74.64728844,39.54996835,701 FALCON CREST PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.51,-74.60394885,39.33341817,702 GULL WING CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.52,-74.462761,39.5011365,704 GULL WING CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.53,-74.474758,39.339235,706 GULL WING PL,GALLOWAY TWP,16,1983,1,RES1,3002 -0111_1260.01_79.54,-74.778452,39.515917,708 GULL WING PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.55,-74.4010325,39.3884115,710 GULL WING PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.56,-74.55928485,39.37217397,712 GULL WING PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.57,-74.691559,39.4484675,714 GULL WING PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.58,-74.649333,39.453741,716 GULL WING PL,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.59,-74.503339,39.327718,718 GULL WING PL,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.61,-74.5202035,39.404555,722 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.62,-74.68269575,39.44018746,724 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.63,-74.60767932,39.39223618,726 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.64,-74.605942,39.3714955,728 GULL WING CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.65,-74.66694369,39.56943006,727 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.66,-74.63023284,39.42512278,725 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.67,-74.49513843,39.4268437,723 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.68,-74.56711058,39.36087181,721 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.69,-74.85418181,39.54979515,719 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.71,-74.49598849,39.42800369,715 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.72,-74.6017711,39.32467084,713 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.73,-74.7186655,39.642665,711 GULL WING CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.74,-74.63797265,39.37073858,709 GULL WING CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.75,-74.50765889,39.33559539,707 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_79.76,-74.42657087,39.36650809,705 GULL WING CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.77,-74.64225437,39.53193033,703 GULL WING CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_79.78,-74.857872,39.5638065,701 GULL WING CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_8,-74.5421445,39.5675,136 S NEW YORK RD,GALLOWAY TWP,16,1949,1,RES1,3001 -0111_1260.01_80.01,-74.658596,39.4318405,3 SCHOONER LANDING RD,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_80.02,-74.6799865,39.4864765,5 SCHOONER LANDING RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_80.03,-74.78411866,39.63346799,17 SCHOONER LANDING RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.01_80.04,-74.44052404,39.48919407,21 SCHOONER LANDING RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1260.01_80.05,-74.69189869,39.4140384,25 SCHOONER LANDING RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.01_80.06,-74.59730854,39.52034312,27 SCHOONER LANDING RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_80.07,-74.59393278,39.37737996,29 SCHOONER LANDING RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1260.01_80.08,-74.734197,39.448474,31 SCHOONER LANDING RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_80.09,-74.80909293,39.64269016,28 SCHOONER LANDING RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1260.01_80.11,-74.51670897,39.40115235,24 SCHOONER LANDING RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.01_80.12,-74.4284955,39.3679,22 SCHOONER LANDING RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.01_80.13,-74.70219713,39.6370128,20 SCHOONER LANDING RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1260.01_80.15,-74.4381265,39.367255,12 CLIPPER CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_80.16,-74.58187763,39.3437442,10 CLIPPER CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1260.01_80.17,-74.95299635,39.51837137,8 CLIPPER CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_80.18,-74.38902357,39.39323686,6 CLIPPER CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_80.19,-74.5520575,39.377531,2 CLIPPER CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_1260.01_81,-74.60616582,39.31721496,1 SCHOONER LANDING RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_83,-74.6033995,39.32032663,811 SMITH-BOWEN RD,GALLOWAY TWP,16,1916,1,RES1,3001 -0111_1260.01_84.01,-74.40422154,39.38993307,5 MAHOGANY CT,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1260.01_84.02,-74.87533427,39.44258874,825 SMITH-BOWEN RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_84.03,-74.54619486,39.4744562,7 MAHOGANY CT,GALLOWAY TWP,16,1995,1,COM4,3004 -0111_1260.01_84.04,-74.54584538,39.54299225,9 MAHOGANY CT,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1260.01_84.05,-74.6373645,39.4012035,11 MAHOGANY CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1260.01_84.06,-74.505976,39.530276,13 MAHOGANY CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1260.01_85.01,-74.39418952,39.38887467,817 SMITH-BOWEN RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1260.01_86,-74.5248825,39.386088,827 SMITH-BOWEN RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_1260.01_87.01,-74.51560801,39.41606916,4 MAHOGANY CT,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1260.01_87.02,-74.5295535,39.3953085,10 MAHOGANY CT,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_1260.01_87.03,-74.63093027,39.41561159,12 MAHOGANY CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1260.01_88.01,-74.49387214,39.42689131,841 SMITH-BOWEN RD,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_1260.01_88.02,-74.887796,39.598181,845 SMITH-BOWEN RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1260.01_89.01,-74.791472,39.595598,800 FLORA CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1260.01_89.02,-74.59682866,39.38430599,801 FLORA CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_89.03,-74.63853265,39.42745349,FLORA CT-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_1260.01_9,-74.68749944,39.57309166,134 S NEW YORK RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1260.01_90.01,-74.638103,39.527449,812 FLORA CT,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1260.01_90.02,-74.62180812,39.62091013,810 FLORA CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.01_90.03,-74.64595908,39.39006285,808 FLORA CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_90.04,-74.9296725,39.5081395,806 FLORA CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_90.05,-74.66300435,39.45474112,804 FLORA CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.01_90.06,-74.4569185,39.4900115,802 FLORA CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_90.07,-74.7980795,39.6414045,803 FLORA CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_90.08,-74.632169,39.3601765,805 FLORA CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_90.09,-74.92720326,39.48500496,807 FLORA CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_1260.01_90.11,-74.4934205,39.336816,811 FLORA CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_90.12,-74.603894,39.3436555,813 FLORA CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_90.13,-74.59864768,39.35930897,815 FLORA CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_90.14,-74.5727695,39.429036,817 FLORA CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1260.01_91.01,-74.59983724,39.38066825,59 LEEDS POINT RD,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1260.01_91.02,-74.55196391,39.36194151,57 LEEDS POINT RD,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_1260.01_92.01,-74.5901002,39.37697803,847 SMITH-BOWEN RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1260.01_92.02,-74.8522607,39.59905132,851 SMITH-BOWEN RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1260.01_92.03,-74.650328,39.5236275,855 SMITH-BOWEN RD,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1260.01_93,-74.59091741,39.36366528,857 SMITH-BOWEN RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1260.01_94,-74.51529859,39.39411432,55 LEEDS POINT RD,GALLOWAY TWP,16,1906,2,RES1,3001 -0111_1260.01_95.01,-74.582109,39.413953,53 LEEDS POINT RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.01_95.02,-74.49721089,39.49367276,51 LEEDS POINT RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1260.01_96,-74.57381074,39.41075624,49 LEEDS POINT RD,GALLOWAY TWP,16,1846,1,COM1,3004 -0111_1260.03_1,-74.573304,39.416379,823 BERRYWOOD LN,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1260.03_2,-74.64672264,39.5290525,825 BERRYWOOD LN,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1260.03_3,-74.789393,39.308193,818 BERRYWOOD LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1260.03_4,-74.50461766,39.42783502,820 BERRYWOOD LN,GALLOWAY TWP,17,1988,1,RES1,3001 -0111_1260.04_1,-74.55837953,39.47578724,701 RAVENWOOD DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.04_10,-74.9467305,39.5186575,719 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_11,-74.7840645,39.6728985,721 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_12,-74.5950544,39.42900611,723 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_13,-74.5436395,39.3891385,725 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_14,-74.612292,39.4895755,727 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_15,-74.639874,39.4216625,729 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_16,-74.57517866,39.33694841,731 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_17,-74.58084595,39.3405558,733 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_18,-74.727883,39.4542375,735 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_19,-74.59849777,39.3789867,737 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_2,-74.66375445,39.4606092,703 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_20,-74.361004,39.410906,739 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_21,-74.62536902,39.42157439,741 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_22,-74.48458034,39.34047562,743 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES3A,3001 -0111_1260.04_23,-74.449945,39.374435,745 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_24,-74.48273897,39.3487472,747 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_25,-74.65247615,39.45948873,749 RAVENWOOD DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_26,-74.81994222,39.40798185,751 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3004 -0111_1260.04_27,-74.495668,39.4695255,753 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_28,-74.6148195,39.324449,755 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3004 -0111_1260.04_29,-74.61890895,39.43055468,710 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_3,-74.50454935,39.42703204,705 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_30,-74.50321567,39.4484195,708 FALCON CREST CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1260.04_31,-74.61112284,39.32588846,706 FALCON CREST CT,GALLOWAY TWP,16,1984,1,RES1,3002 -0111_1260.04_32,-74.692727,39.4123125,704 FALCON CREST CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_33,-74.76118278,39.64007645,702 FALCON CREST CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.04_34,-74.79862474,39.62824061,700 FALCON CREST CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_1260.04_4,-74.61094201,39.32604266,707 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_5,-74.68261894,39.38822933,709 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.04_6,-74.518602,39.4118855,711 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_1260.04_7,-74.5334563,39.39985108,713 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_8,-74.59010086,39.32561448,715 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.04_9,-74.61810437,39.31276915,717 RAVENWOOD DR,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1260.05_1,-74.53101948,39.38663019,702 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_10,-74.67416449,39.38530716,722 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_11,-74.38738515,39.39080933,737 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_12,-74.8018905,39.670682,735 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_13,-74.5584235,39.467163,733 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_14,-74.73217504,39.45501077,731 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_15,-74.7062825,39.6430685,729 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,GOV1,3004 -0111_1260.05_16,-74.63518369,39.52315039,727 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,GOV1,3004 -0111_1260.05_17,-74.80186139,39.63768363,725 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_18,-74.5150175,39.3961625,723 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_19,-74.57622175,39.41010058,721 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_2,-74.4947115,39.3298635,704 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_20,-74.49529112,39.42864597,719 COOPER FERRY CT,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_21,-74.4531414,39.49652104,709 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_22,-74.57315354,39.36395155,707 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_23,-74.63501068,39.31849105,705 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_24,-74.478192,39.3463075,703 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_25,-74.582469,39.4204075,701 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,GOV1,3004 -0111_1260.05_26,-74.3788075,39.4025935,711 COOPER FERRY CT,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_27,-74.50940817,39.51106901,713 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_28,-74.51334524,39.32668158,715 COOPER FERRY CT,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_29,-74.93101401,39.51527519,717 COOPER FERRY CT,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_3,-74.64517864,39.52775396,706 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_30,-74.67497249,39.36065479,700 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.05_31,-74.87256291,39.5935877,702 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_32,-74.50522772,39.33406347,704 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_33,-74.8048925,39.6072175,706 COOPER FERRY CT,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_34,-74.81319096,39.40707424,710 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_35,-74.528238,39.3950555,712 COOPER FERRY CT,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_36,-74.66148,39.447604,714 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_37,-74.50146868,39.32960648,716 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_38,-74.503751,39.337642,718 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_39,-74.81274721,39.66388098,720 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_4,-74.83287351,39.63390433,708 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_40,-74.5571855,39.3673875,722 COOPER FERRY CT,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_41,-74.63037423,39.446697,724 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.05_42,-74.70618,39.426683,726 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_43,-74.48358546,39.47975015,728 COOPER FERRY CT,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_44,-74.81231365,39.66242117,730 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.05_45,-74.499917,39.330689,734 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_46,-74.52465035,39.39767537,736 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,GOV1,3004 -0111_1260.05_47,-74.6299657,39.350585,738 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,GOV1,3004 -0111_1260.05_48,-74.69291034,39.41636547,740 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_49,-74.79593822,39.64010783,726 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_5,-74.52061667,39.32098617,710 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.05_50,-74.380659,39.393995,728 CARDINAL WAY,GALLOWAY TWP,35,1981,1,GOV1,3004 -0111_1260.05_51,-74.7595585,39.429899,730 CARDINAL WAY,GALLOWAY TWP,35,1981,1,COM3,3004 -0111_1260.05_52,-74.68670695,39.38244352,732 CARDINAL WAY,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.05_53,-74.52257,39.4061165,736 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_54,-74.93402696,39.49572724,738 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_55,-74.56337837,39.36670303,740 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_56,-74.83347715,39.64356396,17 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_57,-74.72967254,39.68736685,19 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_58,-74.4913735,39.331154,21 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_59,-74.49839937,39.43315777,23 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_6,-74.61212506,39.4208471,714 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_60,-74.51641546,39.40195984,25 S QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.05_61,-74.6100875,39.3163425,27 S QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.05_62,-74.53876504,39.37411199,29 S QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.05_63,-74.800729,39.651442,31 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_7,-74.92586427,39.47511449,716 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_8,-74.7938235,39.628458,718 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.05_9,-74.64689615,39.40437954,720 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_1,-74.4981025,39.3319395,15 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_10,-74.686048,39.584213,739 CARDINAL WAY,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_11,-74.4928955,39.334474,737 CARDINAL WAY,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_12,-74.39386545,39.38865935,733 CARDINAL WAY,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_13,-74.62615493,39.5299806,731 CARDINAL WAY,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_14,-74.64980108,39.4126003,729 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_15,-74.52481447,39.46504516,727 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_16,-74.8628476,39.5630376,744 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_17,-74.51204794,39.48584032,746 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,COM3,3004 -0111_1260.06_18,-74.45093731,39.35373801,748 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_19,-74.472673,39.483258,750 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_2,-74.5287195,39.398786,13 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_20,-74.4908525,39.4308645,752 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,COM1,3004 -0111_1260.06_21,-74.46801183,39.3437095,754 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_22,-74.88855613,39.56303324,756 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_23,-74.76042351,39.64060983,758 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_24,-74.80722,39.643065,760 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_25,-74.37830288,39.39643001,755 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_26,-74.456484,39.49215283,753 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_27,-74.50504758,39.33021216,751 COOPER FERRY CT,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_28,-74.48985628,39.33719967,749 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_29,-74.40299352,39.38051416,747 COOPER FERRY CT,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_3,-74.520672,39.3174835,11 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_4,-74.60292466,39.50026749,9 S QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_5,-74.6907635,39.6297445,7 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_6,-74.44059318,39.3678739,5 S QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_7,-74.59604581,39.32133746,3 S QUAIL HILL BLVD,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.06_8,-74.6326375,39.391349,1 S QUAIL HILL BLVD,GALLOWAY TWP,35,1981,1,RES1,3001 -0111_1260.06_9,-74.51935078,39.46898809,741 CARDINAL WAY,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_1260.07_1,-74.72346334,39.6513388,701 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_11.01,-74.54468281,39.38502632,8 & 10 S NEW YORK RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1260.07_11.02_C0101,-74.50020718,39.40971603,18 PHEASANT MEADOW CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1260.07_11.02_C0102,-74.58895705,39.32146082,20 PHEASANT MEADOW CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1260.07_11.02_C0103,-74.64799182,39.45838446,22 PHEASANT MEADOW CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1260.07_11.02_C0104,-74.50110543,39.33036283,24 PHEASANT MEADOW CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1260.07_11.02_C0105,-74.56200585,39.34637273,26 PHEASANT MEADOW CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1260.07_11.02_C0106,-74.87534988,39.59785223,28 PHEASANT MEADOW CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1260.07_11.02_C0107,-74.848237,39.5981725,30 PHEASANT MEADOW CT,GALLOWAY TWP,35,1988,1,RES3A,3001 -0111_1260.07_11.02_C0108,-74.871744,39.456108,32 PHEASANT MEADOW CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_1260.07_11.02_C0111,-74.87409086,39.56564497,17 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0112,-74.8288335,39.41047,19 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0113,-74.54819149,39.37199017,21 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0114,-74.35851558,39.41431066,23 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0115,-74.516915,39.457175,25 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0116,-74.58778216,39.35647779,27 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0117,-74.50322364,39.3313838,29 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0118,-74.538307,39.3815995,31 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0121,-74.4653935,39.49385451,1 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0122,-74.449144,39.4789185,3 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0123,-74.72760063,39.45962239,5 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0124,-74.57019398,39.47876617,7 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0125,-74.767054,39.3003895,9 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,COM1,3004 -0111_1260.07_11.02_C0126,-74.44039565,39.37181189,11 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0127,-74.49792497,39.42969493,13 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0128,-74.58885394,39.37851522,15 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0131,-74.4824445,39.345336,2 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0132,-74.59231817,39.51900902,4 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_1260.07_11.02_C0133,-74.73202404,39.45405782,6 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0134,-74.47168548,39.48340824,8 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0135,-74.50447885,39.4604767,10 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_1260.07_11.02_C0136,-74.43851918,39.36849949,12 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.02_C0137,-74.6116005,39.3205345,14 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,COM1,3004 -0111_1260.07_11.02_C0138,-74.48842572,39.45596565,16 PHEASANT MEADOW CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_1260.07_11.03,-74.51947568,39.39057609,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1260.07_11.04_C0051,-74.56062632,39.36216698,49 PHEASANT MEADOW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_11.04_C0052,-74.608002,39.4083175,51 PHEASANT MEADOW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_11.04_C0053,-74.78284582,39.64144934,53 PHEASANT MEADOW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_11.04_C0054,-74.54788083,39.37385029,55 PHEASANT MEADOW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_11.04_C0055,-74.72637022,39.64436773,57 PHEASANT MEADOW DR,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_11.04_C0056,-74.4954385,39.425277,59 PHEASANT MEADOW DR,GALLOWAY TWP,35,1983,1,COM1,3004 -0111_1260.07_11.04_C0057,-74.49229653,39.49555434,61 PHEASANT MEADOW DR,GALLOWAY TWP,35,1983,1,GOV1,3004 -0111_1260.07_11.04_C0058,-74.51089134,39.40545274,63 PHEASANT MEADOW DR,GALLOWAY TWP,35,1983,1,RES3A,3001 -0111_1260.07_11.04_C0061,-74.391045,39.3904435,66 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0062,-74.525812,39.3145655,68 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0063,-74.94197457,39.52419718,70 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0064,-74.64990997,39.4039155,72 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,COM1,3004 -0111_1260.07_11.04_C0065,-74.61471482,39.42878647,74 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0066,-74.678117,39.377804,76 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0067,-74.7999275,39.6325155,78 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0068,-74.5184065,39.32313,80 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0071,-74.52053626,39.39497885,50 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES3A,3001 -0111_1260.07_11.04_C0072,-74.54688558,39.46760212,52 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0073,-74.598566,39.369674,54 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0074,-74.5042527,39.44321711,56 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0075,-74.9387745,39.5203785,58 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0076,-74.62851823,39.6092162,60 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0077,-74.53373,39.382986,62 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0078,-74.80180351,39.63404033,64 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0081,-74.46068375,39.51094367,33 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0082,-74.62636096,39.43855788,35 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0083,-74.53753576,39.3138069,37 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES3A,3001 -0111_1260.07_11.04_C0084,-74.6403375,39.3810755,39 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0085,-74.44510363,39.37407398,41 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0086,-74.5238695,39.3946825,43 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0087,-74.6475935,39.5301835,45 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0088,-74.55472806,39.37323401,47 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0091,-74.58657935,39.32664259,34 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0092,-74.72562859,39.58907885,36 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0093,-74.61721627,39.60307185,38 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0094,-74.52406517,39.38590733,40 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0095,-74.59310581,39.35793043,42 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0096,-74.61249945,39.32072467,44 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0097,-74.49990416,39.32903451,46 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_1260.07_11.04_C0098,-74.87904234,39.59693747,48 PHEASANT MEADOW DR,GALLOWAY TWP,35,1984,1,RES3A,3001 -0111_1260.07_2,-74.6414815,39.535456,703 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_3,-74.59085242,39.31182766,705 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_4,-74.64271425,39.39125223,707 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES3A,3001 -0111_1260.07_48.02,-74.7561575,39.3045435,706 E MOSS MILL RD,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1260.07_49,-74.64543015,39.53851707,14 S NEW YORK RD,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_1260.07_5,-74.635704,39.3823815,709 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_6,-74.970235,39.506342,711 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_7,-74.4733204,39.34308133,713 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.07_8,-74.4996323,39.42852844,715 CARDINAL WAY,GALLOWAY TWP,35,1983,1,GOV1,3004 -0111_1260.07_9,-74.75517931,39.59902313,717 CARDINAL WAY,GALLOWAY TWP,35,1983,1,RES1,3001 -0111_1260.08_22.01,-74.482095,39.34685,800 BLUE TEAL DR,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1260.08_22.02,-74.65165057,39.45695305,133 LEEDS POINT RD,GALLOWAY TWP,16,1847,1,RES1,3001 -0111_1260.08_22.03,-74.5252155,39.47312,802 BLUE TEAL DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1260.16_1,-74.51936017,39.39748508,1 CLIPPER CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1260.16_2,-74.5272292,39.38695259,7 CLIPPER CT,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_1261_1,-74.417272,39.3694265,800 E MOSS MILL RD,GALLOWAY TWP,16,1838,1,RES1,3001 -0111_1261_10.01,-74.82367333,39.62003934,4 FAWN LN,GALLOWAY TWP,16,2004,1,RES3A,3001 -0111_1261_10.02,-74.63494464,39.40858088,8 FAWN LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1261_11,-74.66282073,39.46091281,838 E MOSS MILL RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1261_12,-74.930893,39.5147705,840 E MOSS MILL RD,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1261_13,-74.797612,39.632136,844 E MOSS MILL RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1261_14,-74.794688,39.600449,850 E MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1261_15.01,-74.5986988,39.38043703,1 MANNING CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1261_15.02,-74.75674883,39.42927072,3 MANNING CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1261_15.03,-74.6031572,39.40943121,5 MANNING CT,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_1261_15.04,-74.70699029,39.48095906,7 MANNING CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1261_15.05,-74.57872405,39.33670131,8 MANNING CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1261_15.06,-74.469632,39.4922715,6 MANNING CT,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_1261_15.07,-74.470529,39.3445145,4 MANNING CT,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_1261_15.08,-74.58928987,39.35077622,2 MANNING CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1261_16,-74.50573276,39.42549333,860 SMITH-BOWEN RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1261_17,-74.715219,39.440883,43 LEEDS POINT RD,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1261_18,-74.5367163,39.38376082,41 LEEDS POINT RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1261_19,-74.50239733,39.43383865,39 LEEDS POINT RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1261_2,-74.612567,39.489159,806 E MOSS MILL RD,GALLOWAY TWP,16,1846,2,RES1,3001 -0111_1261_20.01,-74.6106895,39.4884515,37 LEEDS POINT RD,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_1261_20.02,-74.624925,39.3566505,35 LEEDS POINT RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1261_21.01,-74.45504825,39.48925093,33 LEEDS POINT RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1261_21.02,-74.50831655,39.43499084,31 LEEDS POINT RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1261_21.03,-74.50576615,39.43229596,29 LEEDS POINT RD,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_1261_22.01,-74.50751549,39.40589256,9 BLACKMAN RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1261_22.02,-74.7145045,39.4655105,11 BLACKMAN RD,GALLOWAY TWP,15,1941,1,RES1,3001 -0111_1261_23,-74.59801294,39.38344692,15 BLACKMAN RD,GALLOWAY TWP,16,1861,1,RES1,3001 -0111_1261_24.01,-74.46404433,39.35404905,25 LEEDS POINT RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1261_24.02,-74.94274413,39.51730612,23 LEEDS POINT RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1261_3,-74.385107,39.3957695,808 E MOSS MILL RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1261_4.01,-74.58105573,39.31187814,816 SMITH-BOWEN RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1261_4.02,-74.6661045,39.396394,810 E MOSS MILL RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1261_6.01,-74.835815,39.3767335,826 E MOSS MILL RD,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_1261_6.02,-74.5566235,39.4996155,828 E MOSS MILL RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1261_6.03,-74.77222832,39.62983303,828A E MOSS MILL RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_1261_7,-74.37472607,39.41652127,834 SMITH-BOWEN RD,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_1261_8.01,-74.7638595,39.6347615,830 E MOSS MILL RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1261_8.02,-74.5343605,39.381234,832 E MOSS MILL RD,GALLOWAY TWP,16,1896,1,RES1,3001 -0111_1261_8.03,-74.64859434,39.62802048,5 FAWN LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1261_8.04,-74.51263726,39.32984993,7 FAWN LN,GALLOWAY TWP,16,2002,1,RES3B,3001 -0111_1261_8.05,-74.51569437,39.39281457,9 FAWN LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_1261_8.07,-74.48182551,39.35382284,15 FAWN LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1261_8.08,-74.54378147,39.37677678,17 FAWN LN,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1261_9.01,-74.524546,39.3846975,840 SMITH-BOWEN RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1261_9.02,-74.79524696,39.59869302,844 SMITH-BOWEN RD,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_1262.01_1,-74.60913197,39.41766217,856 E MOSS MILL RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_1262.01_2,-74.605584,39.317912,860 E MOSS MILL RD,GALLOWAY TWP,15,1790,1,RES1,3001 -0111_1262.01_3.01,-74.61719412,39.43076032,15 LEEDS POINT RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_1262.01_3.02,-74.636799,39.385,5 ANDERSON LN,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_1262.01_4,-74.59779572,39.37298014,858 E MOSS MILL RD,GALLOWAY TWP,16,1951,1,RES3A,3001 -0111_1262.02_1,-74.804087,39.62942,10 ANDERSON LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1263_1.01,-74.54434496,39.37704866,800 LEXINGTON CT,GALLOWAY TWP,16,1981,1,RES3B,3001 -0111_1263_1.02,-74.62291886,39.51212245,802 LEXINGTON CT,GALLOWAY TWP,16,1981,1,RES3B,3001 -0111_1263_1.03,-74.599022,39.319039,803 LEXINGTON CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1263_1.04,-74.63297402,39.4166998,801 LEXINGTON CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1263_1.05,-74.59902918,39.31395408,800 SIMSBURY CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1263_1.06,-74.861314,39.4379085,802 SIMSBURY CT,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_1263_1.07,-74.48233268,39.34478395,804 SIMSBURY CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1263_1.08,-74.54741692,39.36890879,806 SIMSBURY CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1263_1.09,-74.8082245,39.633624,807 SIMSBURY CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1263_1.10,-74.58100131,39.33647246,805 SIMSBURY CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1263_1.11,-74.54263552,39.3769702,803 SIMSBURY CT,GALLOWAY TWP,16,1981,1,RES3A,3002 -0111_1263_1.12,-74.63074807,39.41538774,801 SIMSBURY CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1263_1.13,-74.57420161,39.42555323,800 MILLBRIDGE CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1263_1.14,-74.50286364,39.41009974,802 MILLBRIDGE CT,GALLOWAY TWP,16,1981,1,RES1,3002 -0111_1263_1.15,-74.652447,39.5517965,804 MILLBRIDGE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1263_1.16,-74.37112,39.406566,806 MILLBRIDGE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1263_1.17,-74.62634039,39.54422937,807 MILLBRIDGE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1263_1.18,-74.76173381,39.43197548,805 MILLBRIDGE CT,GALLOWAY TWP,16,2008,1,RES1,3004 -0111_1263_1.19,-74.78805491,39.61826087,803 MILLBRIDGE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_1263_1.20,-74.509707,39.3229005,801 MILLBRIDGE CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_1263_1.21,-74.7364615,39.7201055,MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1263_10,-74.53320239,39.47080908,815 E MOSS MILL RD,GALLOWAY TWP,16,1886,1,IND2,3002 -0111_1263_11.01,-74.53821892,39.38876669,819 E MOSS MILL RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1263_11.02,-74.55656338,39.37065165,817 E MOSS MILL RD,GALLOWAY TWP,16,1990,1,RES1,3002 -0111_1263_12,-74.60169082,39.31406642,821 E MOSS MILL RD,GALLOWAY TWP,16,1859,1,RES1,3001 -0111_1263_13.01,-74.50876116,39.32581702,1 EAGLE WOOD DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1263_13.02,-74.501982,39.3276475,3 EAGLE WOOD DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1263_13.03,-74.502291,39.328206,5 EAGLE WOOD DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1263_13.04,-74.37217632,39.40064352,EAGLE WOOD DR-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_1263_13.05,-74.50451424,39.33052783,8 EAGLE WOOD DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1263_13.06,-74.501334,39.3277445,6 EAGLE WOOD DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_1263_13.07,-74.50685042,39.32710265,4 EAGLE WOOD DR,GALLOWAY TWP,16,2001,1,COM4,3004 -0111_1263_14.01,-74.39272943,39.38729685,833 E MOSS MILL RD,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_1263_14.02,-74.52127859,39.32109234,835 E MOSS MILL RD,GALLOWAY TWP,16,1980,1,RES3B,3001 -0111_1263_15,-74.9288785,39.5321605,837 E MOSS MILL RD,GALLOWAY TWP,15,1886,1,RES3A,3001 -0111_1263_19,-74.523304,39.3984775,847 E MOSS MILL RD,GALLOWAY TWP,16,2003,1,RES1,3002 -0111_1263_2.01,-74.47613979,39.48449974,804 LEXINGTON CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1263_2.02,-74.5527065,39.371548,806 LEXINGTON CT,GALLOWAY TWP,16,1981,1,RES1,3002 -0111_1263_2.03,-74.7350065,39.4336645,807 LEXINGTON CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1263_2.04,-74.597001,39.383857,805 LEXINGTON CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1263_3,-74.73368819,39.44260037,30 SMITH-BOWEN RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1263_4,-74.79941075,39.63488818,32 SMITH-BOWEN RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1263_5.01,-74.63314578,39.31870654,34 SMITH-BOWEN RD,GALLOWAY TWP,16,1890,1,RES1,3001 -0111_1263_5.02,-74.3603645,39.4157815,36 SMITH-BOWEN RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_1263_6,-74.61737487,39.37140626,38 SMITH-BOWEN RD,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_1263_9,-74.90188528,39.48055507,811 E MOSS MILL RD,GALLOWAY TWP,16,1902,1,RES1,3001 -0111_1264_11,-74.542823,39.3922005,871 E MOSS MILL RD,GALLOWAY TWP,16,1885,1,RES3A,3001 -0111_1264_12,-74.63361033,39.41816168,867 E MOSS MILL RD,GALLOWAY TWP,15,1939,1,RES1,3001 -0111_1264_13,-74.54510951,39.37382167,863 E MOSS MILL RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1264_14,-74.51193117,39.40269356,903 E MOSS MILL RD,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_1264_14.01,-74.88006343,39.56812897,901 E MOSS MILL RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1264_15.01,-74.55329029,39.36987651,861 E MOSS MILL RD,GALLOWAY TWP,16,1865,1,RES1,3001 -0111_1264_15.02,-74.61519723,39.48481386,859 E MOSS MILL RD,GALLOWAY TWP,16,1997,1,RES3A,3001 -0111_1264_15.03,-74.82358889,39.39716921,861A E MOSS MILL RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1264_2,-74.63167719,39.40761652,5 OYSTER CREEK RD,GALLOWAY TWP,16,1902,1,RES3A,3001 -0111_1264_3,-74.3683545,39.407242,915 E MOSS MILL RD,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_1264_4,-74.39174959,39.38806015,913 E MOSS MILL RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_1264_6.01,-74.64923698,39.45829337,911 E MOSS MILL RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_1264_6.02,-74.40274859,39.39007719,907 E MOSS MILL RD,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_1264_6.03,-74.494427,39.335648,909 E MOSS MILL RD,GALLOWAY TWP,15,1986,1,RES1,3001 -0111_1264_9.01,-74.9483264,39.51666273,881 E MOSS MILL RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_1264_9.02,-74.58999016,39.41458104,879 E MOSS MILL RD,GALLOWAY TWP,16,2003,1,RES1,3002 -0111_1265_1,-74.5327925,39.3992395,194 S NEW YORK RD,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_1265_10,-74.45929924,39.52508879,188 S NEW YORK RD,GALLOWAY TWP,16,1900,1,RES1,3002 -0111_1265_11,-74.52439434,39.45923046,186 S NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1265_13,-74.6850794,39.36062319,192 LEEDS POINT RD,GALLOWAY TWP,16,1880,1,RES1,3001 -0111_1265_14,-74.7061685,39.5826145,190 LEEDS POINT RD,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_1265_15,-74.55231275,39.36731828,188 LEEDS POINT RD,GALLOWAY TWP,16,1937,1,RES1,3001 -0111_1265_16.01,-74.8153215,39.5302735,186 LEEDS POINT RD,GALLOWAY TWP,15,1946,1,RES1,3001 -0111_1265_17,-74.817166,39.656098,182 LEEDS POINT RD,GALLOWAY TWP,16,1944,1,RES1,3001 -0111_1265_18,-74.81075677,39.31217819,802 DOUGHTY RD,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_1265_19,-74.60104259,39.32175932,804 DOUGHTY RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_1265_2,-74.53345547,39.49778825,703 GREAT CREEK RD,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_1265_20,-74.48107085,39.45668247,810 DOUGHTY RD,GALLOWAY TWP,16,1934,1,COM1,3004 -0111_1265_21.02,-74.78915554,39.6400708,721 GREAT CREEK RD,GALLOWAY TWP,16,1951,1,RES1,3002 -0111_1265_21.03,-74.6272965,39.3587355,723 GREAT CREEK RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_1265_22,-74.495045,39.474824,731 GREAT CREEK RD,GALLOWAY TWP,,1991,1,RES1,3004 -0111_1265_23,-74.5105381,39.3315816,741 GREAT CREEK RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_1265_3,-74.650801,39.53156,705 GREAT CREEK RD,GALLOWAY TWP,,1926,1,RES1,3001 -0111_1265_7.01,-74.682253,39.3884135,717 GREAT CREEK RD,GALLOWAY TWP,16,1972,1,RES1,3004 -0111_1265_7.02,-74.543336,39.4760925,713 GREAT CREEK RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_1265_8,-74.80258552,39.62963933,192 S NEW YORK RD,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_1265_9,-74.60581897,39.32310434,190 S NEW YORK RD,GALLOWAY TWP,,1925,1,RES1,3001 -0111_1266_1,-74.5880195,39.3778955,180 LEEDS POINT RD,GALLOWAY TWP,16,1916,1,RES1,3001 -0111_1266_3.01,-74.43895717,39.51664597,174 LEEDS POINT RD,GALLOWAY TWP,16,1996,1,RES3A,3001 -0111_1266_3.02,-74.47280379,39.4842938,172 LEEDS POINT RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1266_4,-74.85483318,39.60850107,168 LEEDS POINT RD,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_1266_5.01,-74.510183,39.3238075,827 DOUGHTY RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_1266_5.02,-74.81247132,39.62792067,825 DOUGHTY RD,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_1266_5.03,-74.5145594,39.32354494,823 DOUGHTY RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1266_6,-74.49800182,39.4940883,170 LEEDS POINT RD,GALLOWAY TWP,16,1837,1,RES1,3001 -0111_1267_1,-74.75354103,39.43166923,164 LEEDS POINT RD,GALLOWAY TWP,16,1946,1,GOV1,3004 -0111_1267_2,-74.75046097,39.44895377,160 LEEDS POINT RD,GALLOWAY TWP,16,1958,1,GOV1,3004 -0111_1267_4.02,-74.49370549,39.33967533,152 LEEDS POINT RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1267_4.03,-74.46792442,39.45517216,148 LEEDS POINT RD,GALLOWAY TWP,16,1800,1,RES1,3001 -0111_1267_5,-74.6369815,39.3447325,146 LEEDS POINT RD,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_1267_7,-74.5739455,39.4281315,134 LEEDS POINT RD,GALLOWAY TWP,16,1901,2,RES1,3001 -0111_1267_9.01,-74.67169252,39.34803817,124 LEEDS POINT RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_1267_9.02,-74.4385375,39.3678565,112 LEEDS POINT RD,GALLOWAY TWP,16,1900,1,RES1,3001 -0111_1268_2,-74.3714481,39.40623416,102 LEEDS POINT RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1269_1,-74.50371434,39.32969148,78 LEEDS POINT RD,GALLOWAY TWP,16,1850,1,RES1,3001 -0111_127_1,-74.78367585,39.67290238,530 S PHILADELPHIA AVE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_127_10,-74.57159482,39.36969752,1343 MAIN ST,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_127_11,-74.58700533,39.32339345,1341 MAIN ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_127_12,-74.4688875,39.3436865,1339 MAIN ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_127_13,-74.5416385,39.5254295,1337 MAIN ST,GALLOWAY TWP,16,1931,1,COM3,3004 -0111_127_14,-74.77518324,39.61909654,1335 MAIN ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_127_2,-74.48904767,39.44108532,1348 W NORTH ST,GALLOWAY TWP,16,1925,1,RES3A,3001 -0111_127_3,-74.55159891,39.52764385,1346 NORTH ST,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_127_4,-74.63926784,39.38086308,1344 NORTH ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_127_5,-74.881344,39.598832,1342 NORTH ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_127_6,-74.7881505,39.54169,1340 NORTH ST,GALLOWAY TWP,16,1926,1,GOV1,3004 -0111_127_8,-74.49208655,39.33297885,532 S PHILADELPHIA AVE,GALLOWAY TWP,16,1940,1,GOV1,3004 -0111_127_9,-74.39649026,39.38993592,1345 MAIN ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_1270_1,-74.55353467,39.3794042,50 LEEDS POINT RD,GALLOWAY TWP,16,1860,1,RES1,3001 -0111_1270_2,-74.910607,39.4887985,42 LEEDS POINT RD,GALLOWAY TWP,16,1946,1,GOV1,3004 -0111_1270_3.01,-74.60333213,39.50051085,48 LEEDS POINT RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_1270_3.02,-74.49086395,39.33978983,46 LEEDS POINT RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_1270_4.01,-74.81919286,39.65077966,40 LEEDS POINT RD,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_1270_4.03,-74.50698768,39.33079115,36 LEEDS POINT RD,GALLOWAY TWP,16,2015,1,RES1,3001 -0111_1270_5,-74.6882885,39.5578915,34 LEEDS POINT RD,GALLOWAY TWP,,1906,1,RES1,3001 -0111_1270_6,-74.66860845,39.41520869,32 LEEDS POINT RD,GALLOWAY TWP,16,1938,1,RES1,3001 -0111_1271_1.01,-74.63754136,39.36327613,901 STONEY HILL RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_1271_1.02,-74.69766,39.6198245,28 LEEDS POINT RD,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_1271_1.03,-74.5695735,39.3482865,26 LEEDS POINT RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_1271_1.04,-74.68408995,39.49593366,911 STONEY HILL RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1271_1.05,-74.4711495,39.493593,30 LEEDS POINT RD,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_1271_10,-74.56708833,39.37446773,2 LEEDS POINT RD,GALLOWAY TWP,16,1908,1,RES1,3004 -0111_1271_2,-74.84728203,39.59905283,24 LEEDS POINT RD,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_1271_3,-74.629323,39.3634655,22 LEEDS POINT RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1271_4.02,-74.39862587,39.38858721,20 LEEDS POINT RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_1271_5,-74.70401979,39.42348616,14 LEEDS POINT RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_1271_6.01,-74.79045713,39.59544703,10 LEEDS POINT RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_1271_7,-74.62581683,39.43838291,8 LEEDS POINT RD,GALLOWAY TWP,16,1916,1,RES1,3001 -0111_1271_8,-74.38105954,39.39767416,6 LEEDS POINT RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_1271_9,-74.40534629,39.38542778,4 LEEDS POINT RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_1272_1,-74.45918436,39.34842097,2 OYSTER CREEK RD,GALLOWAY TWP,16,1815,1,RES1,3001 -0111_1272_2,-74.69402008,39.58910993,20 HAMMOCK RD,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_1272_5.02,-74.5786074,39.35032089,1030 SCOTTS LANDING RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_1273_3.01,-74.54981457,39.3938036,1017 SCOTTS LANDING RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_1273_3.02,-74.59056834,39.3273051,1013 SCOTTS LANDING RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_128.01_1,-74.54996078,39.3654333,540 S PHILADELPHIA AVE,GALLOWAY TWP,,1968,1,GOV1,3004 -0111_128.01_2,-74.48723442,39.47262628,1334 MAIN ST,GALLOWAY TWP,16,1947,1,GOV1,3004 -0111_128.01_3,-74.83479763,39.47552576,1332 MAIN ST,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_128.02_1.01,-74.557912,39.471329,550 S PHILADELPHIA AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_128.02_1.02,-74.57036411,39.41370628,547 S CINCINNATI AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_129_1,-74.65353411,39.54900353,542 S CINCINNATI AVE,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_129_2,-74.49388694,39.44753323,1326 MAIN ST,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_129_3,-74.71576891,39.44142116,544 S CINCINNATI AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_129_4,-74.50522497,39.46867171,543 S BUFFALO AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_129_6,-74.505464,39.3272115,545 S BUFFALO AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_129_7,-74.63191238,39.42231969,548 S CINCINNATI AVE,GALLOWAY TWP,16,1942,1,RES1,3001 -0111_129_8,-74.50208862,39.41114675,1325 CENTRAL AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_130_1,-74.46634524,39.35749387,1338 CENTRAL AVE,GALLOWAY TWP,16,1955,1,GOV1,3004 -0111_130_2.01,-74.65232471,39.53230069,554 S PHILADELPHIA AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_130_2.02,-74.87914941,39.48729522,1336 CENTRAL AVE,GALLOWAY TWP,,1920,1,GOV1,3004 -0111_130_3,-74.6013645,39.591912,556 S PHILADELPHIA AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_130_4,-74.5631535,39.47724,555 ASBURY AVE,GALLOWAY TWP,16,1927,1,COM1,3004 -0111_130_5,-74.94928504,39.53108053,1329 BELLA DONNA ST,GALLOWAY TWP,,1981,1,COM4,3004 -0111_130_6,-74.914807,39.4884925,557 ASBURY AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_130_7,-74.5050755,39.467248,1327 BELLA DONNA ST,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_1301_1,-74.5489765,39.386068,360 N NEW YORK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1301_16,-74.4468865,39.357154,OYSTER CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1301_17,-74.8025475,39.643341,OYSTER CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1301_20,-74.52011501,39.31851806,47-49 OYSTER CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1301_21,-74.51669511,39.45038067,41 N OYSTER CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_1301_51,-74.5093185,39.3283215,51 TO 63 OYSTER CREEK RD,GALLOWAY TWP,16,1950,7,RES1,3001 -0111_1301_52,-74.60474194,39.3574553,65 TO 83 OYSTER CREEK RD,GALLOWAY TWP,16,1950,8,RES1,3001 -0111_1301_53,-74.80507703,39.64533233,900 MOTTS CREEK,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_1301_54,-74.50308548,39.33787746,MOTTS CREEK,GALLOWAY TWP,,0,1,RES1,3001 -0111_131_1,-74.64562446,39.52805084,550 ASBURY AVE,GALLOWAY TWP,16,1948,1,COM10,3003 -0111_131_10,-74.5020285,39.332124,558 ASBURY AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_131_11,-74.59675243,39.33734572,1325 BELLA DONNA ST,GALLOWAY TWP,16,1951,1,RES1,3004 -0111_131_12,-74.60998925,39.39060235,1323 BELLA DONNA ST,GALLOWAY TWP,16,1953,1,IND1,3004 -0111_131_2,-74.6685735,39.3543685,1332 CENTRAL AVE,GALLOWAY TWP,16,1931,1,GOV1,3004 -0111_131_4,-74.5546405,39.4256805,552 ASBURY AVE,GALLOWAY TWP,16,1947,1,GOV1,3004 -0111_131_5,-74.48637532,39.35133444,553 BARNEGAT AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_131_6,-74.58488613,39.42081516,554 ASBURY AVE,GALLOWAY TWP,16,1950,1,GOV1,3004 -0111_131_7,-74.6327325,39.3184485,555 BARNEGAT AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_131_8,-74.47245201,39.34319434,556 ASBURY AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_131_9,-74.72312075,39.46077985,557 BARNEGAT AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_133.02_1,-74.59310195,39.31719145,616 SIXTH TERR,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_134.01_2,-74.37056179,39.41886408,640 S PHILADELPHIA AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_137.01_1,-74.49786455,39.44221779,734 S PHILADELPHIA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_138_1,-74.46036766,39.35324051,454 S CINCINNATI AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_138_2,-74.49915471,39.33788811,458 S CINCINNATI AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_138_3,-74.70649215,39.63861568,460 S CINCINNATI AVE,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_138_4,-74.87431,39.5645505,1317 ALOE ST,GALLOWAY TWP,16,1961,1,COM5,3004 -0111_138_5,-74.548673,39.36167717,1315 ALOE ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_139_1.01,-74.58305,39.3602365,502 S CINCINNATI AVE,GALLOWAY TWP,16,1929,1,AGR1,3001 -0111_139_1.02,-74.51832302,39.40382117,500 S CINCINNATI AVE,GALLOWAY TWP,,1960,1,RES1,3001 -0111_139_1.03,-74.4627785,39.3480765,1324 ALOE ST,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_139_1.04,-74.59862153,39.32943416,1320 ALOE ST,GALLOWAY TWP,16,1999,1,IND2,3002 -0111_139_2,-74.530098,39.3080145,1329 NORTH ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_139_3,-74.36745608,39.40999425,1327 NORTH ST,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_139_4,-74.91023378,39.47374975,1325 NORTH ST,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_139_6,-74.72595441,39.45851397,1321 NORTH ST,GALLOWAY TWP,15,1953,1,RES1,3001 -0111_140_1,-74.61922242,39.43752632,530 S CINCINNATI AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_140_10,-74.49645757,39.49805912,532 S CINCINNATI AVE,GALLOWAY TWP,16,1938,3,RES1,3001 -0111_140_11,-74.62904662,39.43790682,534 S CINCINNATI AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_140_12,-74.63402158,39.34326677,1331 MAIN ST,GALLOWAY TWP,,1950,1,RES1,3001 -0111_140_13,-74.61292155,39.32347423,1329 MAIN ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_140_14,-74.7662445,39.4525375,1327 MAIN ST,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_140_15,-74.52054084,39.40689601,1325 MAIN ST,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_140_16,-74.60688248,39.32217383,1323 MAIN ST,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_140_17,-74.576716,39.3536235,507 S CAPE MAY AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_140_3,-74.641261,39.3651445,1332 NORTH ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_140_4,-74.54964249,39.38033333,1330 NORTH ST,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_140_5,-74.62067923,39.38199717,1328 NORTH ST,GALLOWAY TWP,16,1950,1,GOV1,3004 -0111_140_6,-74.70105675,39.5737513,1326 NORTH ST,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_140_7,-74.939805,39.51684,1324 NORTH ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_140_8,-74.88882441,39.54109379,NORTH ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_140_9,-74.49472875,39.43436727,505 CAPE MAY AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_141_1,-74.57465559,39.37117274,540 S BUFFALO AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_141_10,-74.509385,39.4649265,1323 CENTRAL AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_141_2,-74.53880872,39.46748408,1322 MAIN ST,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_141_3,-74.82930747,39.40638661,541 CAPE MAY AVE,GALLOWAY TWP,16,1956,1,GOV1,3004 -0111_141_4,-74.60320657,39.32056684,542 S BUFFALO AVE,GALLOWAY TWP,16,1956,1,GOV1,3004 -0111_141_6,-74.47467872,39.35325419,544 S BUFFALO AVE,GALLOWAY TWP,16,1955,1,GOV1,3004 -0111_141_7,-74.59940508,39.31992432,545 CAPE MAY AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_141_8,-74.43348721,39.36663201,546 S BUFFALO AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_141_9,-74.55344883,39.37235607,1321 CENTRAL AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_142_1,-74.54918117,39.37352651,1328 CENTRAL AVE,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_142_4,-74.46493485,39.47641726,552 BARNEGAT AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_142_5,-74.91711384,39.48068838,553 COHANSEY AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_142_6,-74.50100332,39.48785597,554 BARNEGAT AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_142_7,-74.79911972,39.36980932,555 COHANSEY AVE,GALLOWAY TWP,16,1944,1,RES1,3001 -0111_142_8,-74.927517,39.508425,1319 BELLA DONNA ST,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_143_1.01,-74.571127,39.42722,550 COHANSEY AVE,GALLOWAY TWP,16,1922,1,RES1,3001 -0111_143_1.02,-74.8292775,39.647688,553 CAPE MAY AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_143_2,-74.58616758,39.35736897,552 COHANSEY AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_143_3,-74.454113,39.4921605,554 COHANSEY AVE,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_143_4,-74.536199,39.384709,555 CAPE MAY AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_143_5,-74.609138,39.3150375,556 COHANSEY AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_143_6,-74.6339725,39.361012,1317 BELLA DONNA ST,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_143_7,-74.51462317,39.32708748,1315 BELLA DONNA ST,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_145_1,-74.61404295,39.34897605,1306 RENE AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_147_1.03,-74.5224555,39.447008,1325 CROCUS ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_151_1,-74.64029083,39.33822997,617 CAPE MAY AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_153_1.01,-74.50104022,39.40890629,674 S BUFFALO AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_153_1.02,-74.49993233,39.33387851,668 S BUFFALO AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_153_2,-74.83484549,39.48843677,1319 CROCUS ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_154_2,-74.63872077,39.43590744,701 CAPE MAY AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_155_1,-74.68941591,39.63297325,DAHLIA ST,GALLOWAY TWP,,0,1,GOV1,3004 -0111_155_3,-74.584155,39.3404575,DAHLIA ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_156_1,-74.8664025,39.444312,1311 ALOE ST,GALLOWAY TWP,,1989,1,RES1,3001 -0111_156_2,-74.53825004,39.38349383,1311 ALOE ST,GALLOWAY TWP,,1989,1,GOV1,3004 -0111_156_3.01,-74.64121,39.52788,1311 ALOE ST,GALLOWAY TWP,,1991,1,RES1,3001 -0111_156_3.02,-74.43576622,39.36741084,1311 ALOE ST,GALLOWAY TWP,,1989,1,GOV1,3004 -0111_156_4,-74.54648548,39.40048875,1307 ALOE ST,GALLOWAY TWP,,1979,1,RES1,3001 -0111_157_1,-74.5413565,39.4591535,502 CAPE MAY AVE,GALLOWAY TWP,16,1920,1,GOV1,3004 -0111_157_10,-74.77887326,39.64153158,512 CAPE MAY AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_157_11,-74.9537579,39.52083997,513 S CHICAGO AVE,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_157_2,-74.493245,39.330724,504 CAPE MAY AVE,GALLOWAY TWP,16,1932,1,GOV1,3004 -0111_157_3,-74.461265,39.492336,505 S CHICAGO AVE,GALLOWAY TWP,16,1964,1,RES3A,3001 -0111_157_5,-74.518887,39.3245385,507 S CHICAGO AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_157_6,-74.495994,39.4351575,508 CAPE MAY AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_157_7,-74.62131145,39.37444759,509 S CHICAGO AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_157_8,-74.472974,39.5398675,510 CAPE MAY AVE,GALLOWAY TWP,16,1952,1,GOV1,3004 -0111_157_9,-74.50027184,39.33373155,511 S CHICAGO AVE,GALLOWAY TWP,16,1959,1,GOV1,3004 -0111_158_1,-74.8083215,39.552238,1308 AMARANTH ST,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_158_2,-74.8029255,39.625691,546 CAPE MAY AVE,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_158_3.01,-74.91210134,39.49958724,548 CAPE MAY AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_158_3.02,-74.81248774,39.636615,550 CAPE MAY AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_158_3.03,-74.60721972,39.3833414,552 CAPE MAY AVE,GALLOWAY TWP,16,1925,1,GOV1,3004 -0111_16_10,-74.79223223,39.6171627,577 ROOSEVELT AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_161_2,-74.52061383,39.31873554,674 CAPE MAY AVE,GALLOWAY TWP,16,1920,2,RES1,3001 -0111_161_3,-74.76162402,39.4442846,676 CAPE MAY AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_162_1,-74.49508714,39.52505708,1310 CROCUS ST,GALLOWAY TWP,16,1900,3,RES1,3001 -0111_162_2,-74.82861834,39.3890458,710 CAPE MAY AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_165_1,-74.7134695,39.4706155,500 S CHICAGO AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_165_10,-74.6461835,39.3807765,512 S CHICAGO AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_165_11,-74.51427425,39.40060802,514 S CHICAGO AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_165_2,-74.5539423,39.38440313,1306 ALOE ST,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_165_5.02,-74.79435005,39.60422784,1307 AMARANTH ST,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_165_6,-74.56102008,39.37006284,504 S CHICAGO AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_165_7,-74.92135418,39.5093638,506 S CHICAGO AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_165_8,-74.46468686,39.34937129,508 S CHICAGO AVE,GALLOWAY TWP,16,1964,1,GOV1,3004 -0111_165_9,-74.58487803,39.36360665,510 S CHICAGO AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_166_1,-74.77383869,39.65856389,1306 AMARANTH ST,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_166_2.01,-74.76086751,39.4299661,1304 AMARANTH ST,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_173_1,-74.5290335,39.397848,1304 ALOE ST,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_173_16,-74.47593905,39.45586122,514 ST LOUIS AVE,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_173_2,-74.44610552,39.37200029,1300 ALOE ST,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_176.01_1,-74.8773335,39.497751,641 S BOSTON AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_177_1,-74.54624035,39.371379,675 S BOSTON AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_178.01_3.02,-74.37871021,39.39689394,711 S BOSTON AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_178.02_3,-74.507664,39.4626975,BOSTON AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_182_3,-74.599326,39.3376295,556 S BOSTON AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_182_4,-74.5646155,39.41285,1245 BELLA DONNA ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_182_6.01,-74.64606382,39.54992011,1239 BELLA DONNA ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_182_7.01,-74.71302416,39.46462199,1237 BELLA DONNA ST,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_182_8,-74.75630595,39.43316827,1235 BELLA DONNA ST,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_183.01_1,-74.56383849,39.51765934,1238 BELLA DONNA ST,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_183.02_1,-74.52329894,39.31350534,1236 BELLA DONNA ST,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_186.01_1,-74.7521995,39.4489155,1240 CROCUS ST,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_186.01_2,-74.60137615,39.51043779,708 BOSTON AVE,GALLOWAY TWP,16,1931,1,GOV1,3004 -0111_186.02_4,-74.6474795,39.5333465,ELEVENTH TERR,GALLOWAY TWP,,0,1,RES1,3001 -0111_193.01_2,-74.79400468,39.64001975,702 HAVANA AVE,GALLOWAY TWP,15,1956,1,RES1,3001 -0111_193.01_3,-74.79668906,39.62669565,704 HAVANA AVE,GALLOWAY TWP,16,1956,1,GOV1,3004 -0111_193.01_4,-74.6224335,39.520411,708 HAVANA AVE,GALLOWAY TWP,16,1954,1,GOV1,3004 -0111_193.02_1.01,-74.3711115,39.405899,1232 CROCUS ST,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_193.02_1.02,-74.67698802,39.37818063,DAHLIA ST,GALLOWAY TWP,,1984,1,RES1,3001 -0111_198.01_1,-74.48876232,39.33209352,1230 BELLA DONNA ST,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_198.01_2,-74.7133625,39.4664745,1226 BELLA DONNA ST,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_200.01_1,-74.44223463,39.35786028,1223 CROCUS ST,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_200.02_2,-74.642397,39.5344975,1221 CROCUS ST,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_201.01_1,-74.66437336,39.39952651,1220 CROCUS ST,GALLOWAY TWP,16,1977,1,GOV1,3004 -0111_201.01_3,-74.850848,39.3939315,1223 DAHLIA ST,GALLOWAY TWP,16,1978,1,GOV1,3004 -0111_201.02_1,-74.49368854,39.47036106,1218 CROCUS ST,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_203.01_4.01,-74.79099113,39.63151564,456 S NEW ORLEANS AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_204.01_1,-74.54079572,39.45728254,500 S NEW ORLEANS AVE,GALLOWAY TWP,15,1928,1,RES1,3001 -0111_204.02_1,-74.62723006,39.41461793,501 ANTWERP AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_204.02_4,-74.537426,39.461991,1219 AMARANTH ST,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_204.02_5,-74.758925,39.449005,511 ANTWERP AVE,GALLOWAY TWP,16,1900,1,RES1,3001 -0111_205.02_1,-74.856316,39.5563265,1216 AMARANTH ST,GALLOWAY TWP,16,1946,1,GOV1,3004 -0111_205.02_2,-74.63963519,39.32143689,1219 BELLA DONNA ST,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_206_1,-74.44066451,39.36619816,1220 BELLA DONNA ST,GALLOWAY TWP,16,1965,1,GOV1,3004 -0111_206_2,-74.6430773,39.4309744,608 S NEW ORLEANS AVE,GALLOWAY TWP,15,1930,1,RES1,3001 -0111_206_4,-74.515206,39.32461,628 S NEW ORLEANS AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_207.01_2,-74.807214,39.430028,650 S NEW ORLEANS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_208.01_1.01,-74.59046559,39.3299261,668 S NEW ORLEANS AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_208.01_1.02,-74.57514295,39.42078122,670 S NEW ORLEANS AVE,GALLOWAY TWP,16,1932,1,RES1,3001 -0111_208.01_2,-74.858236,39.553398,674 S NEW ORLEANS AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_208.02_3,-74.5240415,39.445584,1217 CROCUS ST,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_21_5,-74.51974431,39.38859747,649 ROOSEVELT AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_210.01_1,-74.62691178,39.36491204,734 S NEW ORLEANS AVE,GALLOWAY TWP,16,1950,1,GOV1,3004 -0111_211_1,-74.63528749,39.52807333,1219 ALOE ST,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_211_2,-74.521386,39.38834,451 S BREMEN AVE,GALLOWAY TWP,15,1915,1,RES1,3001 -0111_211_3,-74.53799536,39.38702748,459 S BREMEN AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_212_1.01,-74.44928521,39.37080079,1214 ALOE ST,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_212_2,-74.45490672,39.49957731,ANTWERP AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_212_5,-74.3762575,39.400338,1215 BELLA DONNA ST,GALLOWAY TWP,15,1945,1,RES1,3001 -0111_212_6,-74.71481303,39.45059631,1211 BELLA DONNA ST,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_215.01_3,-74.59920418,39.3098761,1215 CROCUS ST,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_216.01_1,-74.45669303,39.34971086,1212 CROCUS ST,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_218_1.02,-74.807801,39.532687,1208 ALOE ST,GALLOWAY TWP,16,1921,2,RES1,3001 -0111_218_2,-74.7179562,39.57798556,503 S BREMEN AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_219_1,-74.638763,39.528351,1209 BELLA DONNA ST,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_221_1,-74.50020406,39.43215744,637 S BREMEN AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_221_2,-74.4803745,39.3428545,639 S BREMEN AVE,GALLOWAY TWP,16,1930,1,GOV1,3004 -0111_221_3,-74.64797898,39.34096883,BREMEN AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_221_4,-74.583037,39.417194,643 S BREMEN AVE,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_222_2,-74.92070865,39.47152655,671 S BREMEN AVE,GALLOWAY TWP,15,1930,1,RES1,3001 -0111_223_2,-74.62722757,39.35848918,1204 CROCUS ST,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_223_4,-74.84909095,39.61016582,1200 CROCUS ST,GALLOWAY TWP,16,1965,1,COM3,3004 -0111_247_10.01,-74.583689,39.363813,509 S BERLIN AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_247_10.02,-74.49954774,39.42979809,507 S BERLIN AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_247_11.01,-74.525832,39.38261167,505 S BERLIN AVE,GALLOWAY TWP,16,1929,1,GOV1,3004 -0111_247_11.03,-74.70256233,39.35212,501 S BERLIN AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_247_12.01,-74.7613195,39.447858,1120 ALOE ST,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_247_13,-74.4761815,39.443784,1122 ALOE ST,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_247_16,-74.61938787,39.43364229,500 S BREMEN AVE,GALLOWAY TWP,16,1920,2,RES1,3001 -0111_247_4,-74.36681833,39.41646525,537 S BERLIN AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_247_5,-74.6431865,39.5277645,523 S BERLIN AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_247_7,-74.61163534,39.48853497,519 S BERLIN AVE,GALLOWAY TWP,16,2007,1,GOV1,3004 -0111_247_9,-74.748771,39.447349,511 S BERLIN AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_248_10.01,-74.53756278,39.46576845,500 S BERLIN AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_248_11,-74.49491236,39.47730622,561 S FRANKFURT AVE,GALLOWAY TWP,16,1951,1,GOV1,3004 -0111_248_12.01,-74.50046231,39.5228088,555 S FRANKFURT AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_248_12.02,-74.56320985,39.35687162,553 S FRANKFURT AVE,GALLOWAY TWP,16,1836,1,RES1,3001 -0111_248_13,-74.81540997,39.65323278,535 S FRANKFURT AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_248_14,-74.4896185,39.494951,529 S FRANKFURT AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_248_15,-74.94174125,39.51096156,525 S FRANKFURT AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_248_16.01,-74.36227851,39.41026683,519 S FRANKFURT AVE,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_248_16.02,-74.94558381,39.52786358,515 S FRANKFURT AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_248_16.03,-74.48781116,39.33635351,511 S FRANKFURT AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_248_3,-74.51863,39.3983645,548 S BERLIN AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_248_4,-74.491574,39.527411,544 S BERLIN AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_248_5,-74.5418798,39.38840664,542 S BERLIN AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_248_6,-74.47751868,39.33839144,534 S BERLIN AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_248_7,-74.76089483,39.63918799,528 S BERLIN AVE,GALLOWAY TWP,16,1881,1,GOV1,3004 -0111_248_8.01,-74.8518445,39.5362375,524 S BERLIN AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_248_8.02,-74.55542048,39.42612583,518 S BERLIN AVE,GALLOWAY TWP,16,1958,1,GOV1,3004 -0111_248_8.03,-74.61226728,39.31552187,520 S BERLIN AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_248_8.04,-74.82226837,39.44337301,516 S BERLIN AVE,GALLOWAY TWP,16,1991,1,COM4,3004 -0111_248_9,-74.735178,39.4499135,510 S BERLIN AVE,GALLOWAY TWP,16,1920,2,RES3A,3001 -0111_249_1,-74.470427,39.491136,521 ROBIN LN,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_249_10,-74.66118879,39.34863346,928 ALOE ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_249_11,-74.8683935,39.48974,520 ROBIN LN,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_249_12,-74.59585906,39.50873209,516 ROBIN LN,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_249_13,-74.51490199,39.3201809,514 ROBIN LN,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_249_14,-74.85459833,39.440962,512 ROBIN LN,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_249_15,-74.77562382,39.60927565,510 ROBIN LN,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_249_16,-74.40577,39.382005,508 ROBIN LN,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_249_17,-74.46467546,39.47268917,506 ROBIN LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_249_18,-74.52532907,39.44808317,504 ROBIN LN,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_249_19,-74.60965766,39.38493932,502 ROBIN LN,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_249_2,-74.85561911,39.48313966,517 ROBIN LN,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_249_20,-74.47771122,39.49496264,924 ALOE ST,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_249_21,-74.76628194,39.30010264,920 ALOE ST,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_249_22.03,-74.54796221,39.46557258,910 ALOE ST,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_249_23,-74.59969511,39.43534528,914 ALOE ST,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_249_27,-74.407893,39.3789005,VIENNA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_249_3,-74.49243056,39.43410373,515 ROBIN LN,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_249_30.01,-74.60432704,39.47553922,534 S FRANKFURT AVE,GALLOWAY TWP,15,1950,1,RES1,3001 -0111_249_30.02,-74.58252184,39.4739309,530 S FRANKFURT AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_249_31,-74.493534,39.4322975,512 S FRANKFURT AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_249_32,-74.54089292,39.47603772,524 S FRANKFURT AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_249_33,-74.5569654,39.47293822,506 S FRANKFURT AVE,GALLOWAY TWP,16,1929,1,RES1,3004 -0111_249_34,-74.81836015,39.65355768,500 S FRANKFURT AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_249_4,-74.7790595,39.6533265,513 ROBIN LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_249_6,-74.62785081,39.61226768,509 ROBIN LN,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_249_7,-74.6642955,39.454871,507 ROBIN LN,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_249_8,-74.75701284,39.43418928,505 ROBIN LN,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_249_9,-74.7117055,39.4124875,503 ROBIN LN,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_250_1.01,-74.7921865,39.634445,420 S BREMEN AVE,GALLOWAY TWP,15,1915,1,RES1,3001 -0111_250_1.02,-74.64258157,39.43594998,1121 ALOE ST,GALLOWAY TWP,17,1992,1,RES1,3001 -0111_250_2,-74.49658301,39.44121419,416 S BREMEN AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_251_2,-74.677304,39.334579,418 S BERLIN AVE,GALLOWAY TWP,16,1920,1,GOV1,3004 -0111_251_3,-74.508624,39.3328215,1021 ALOE ST,GALLOWAY TWP,15,1945,1,RES1,3001 -0111_252_1,-74.65811019,39.51133197,901 ALOE ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_253_1,-74.562447,39.480291,1146 W WHITE HORSE PIKE,GALLOWAY TWP,16,1941,1,EDU1,3004 -0111_253_12,-74.60964791,39.32390031,1128 W WHITE HORSE PIKE,GALLOWAY TWP,16,1901,2,RES1,3001 -0111_253_13,-74.4619605,39.3459275,1124 W WHITE HORSE PIKE,GALLOWAY TWP,16,1922,2,RES1,3001 -0111_253_14,-74.50691168,39.41011701,1120 W WHITE HORSE PIKE,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_253_2,-74.60128985,39.41900897,1144 W WHITE HORSE PIKE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_253_3,-74.90781354,39.47842025,412 S BREMEN AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_253_6,-74.50378238,39.41737621,1140 W WHITE HORSE PIKE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_253_7,-74.4725675,39.4923455,1138 W WHITE HORSE PIKE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_253_8,-74.66156776,39.35997858,1136 W WHITE HORSE PIKE,GALLOWAY TWP,15,1930,2,RES1,3001 -0111_253_9,-74.64259933,39.53520121,1134 W WHITE HORSE PIKE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_256_3,-74.515117,39.4321965,1030 W WHITE HORSE PIKE,GALLOWAY TWP,17,1921,1,RES1,3001 -0111_256_4,-74.5521015,39.372588,1026 W WHITE HORSE PIKE,GALLOWAY TWP,,1966,1,RES1,3001 -0111_256_5,-74.7777606,39.6217603,1022 W WHITE HORSE PIKE,GALLOWAY TWP,,1959,1,RES1,3001 -0111_257_14,-74.3658235,39.4087415,910 W WHITE HORSE PIKE,GALLOWAY TWP,,1970,1,RES1,3001 -0111_257_15,-74.7235445,39.460023,908 W WHITE HORSE PIKE,GALLOWAY TWP,15,1940,1,RES1,3001 -0111_257_16,-74.6345325,39.430991,904 W WHITE HORSE PIKE,GALLOWAY TWP,,1972,1,RES1,3001 -0111_257_17,-74.62557058,39.41293931,900 W WHITE HORSE PIKE,GALLOWAY TWP,,1940,1,RES1,3001 -0111_257_3,-74.51023547,39.40653594,936 W WHITE HORSE PIKE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_257_4,-74.60749931,39.38551477,930 W WHITE HORSE PIKE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_257_6,-74.5970611,39.33013361,920 W WHITE HORSE PIKE,GALLOWAY TWP,,1941,1,RES1,3001 -0111_257_7,-74.50005418,39.33080091,916 W WHITE HORSE PIKE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_257_8,-74.50691267,39.32774547,914 W WHITE HORSE PIKE,GALLOWAY TWP,15,1920,2,RES1,3001 -0111_258_1.01,-74.52428237,39.39377732,WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_258_1.02,-74.600687,39.323547,1125 W WHITE HORSE PIKE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_258_10,-74.42776051,39.37064365,336 S BREMEN AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_258_12,-74.53846153,39.37764291,332 S BREMEN AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_258_13,-74.46327788,39.34806783,322 S BREMEN AVE,GALLOWAY TWP,16,1895,1,RES1,3001 -0111_258_14,-74.48790427,39.49357596,325 S BERLIN AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_258_15,-74.61635399,39.42447067,317 S BERLIN AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_258_16,-74.54637466,39.37633253,316 S BREMEN AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_258_17.01,-74.58961385,39.42935986,310 S BREMEN AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_258_17.02,-74.57257047,39.36582868,308 S BREMEN AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_258_19,-74.51816442,39.39626512,1130 DUERER ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_258_2.01,-74.59847216,39.38087888,372 S BREMEN AVE,GALLOWAY TWP,16,1885,1,RES1,3001 -0111_258_2.02,-74.60575562,39.38290873,BREMEN AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_258_2.03,-74.51594497,39.32717464,364 S BREMEN AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_258_21,-74.53155218,39.40474909,1120 DUERER ST,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_258_22,-74.57393064,39.33610308,1108 DUERER ST,GALLOWAY TWP,16,1900,2,GOV1,3004 -0111_258_23,-74.715332,39.477744,1116 DUERER ST,GALLOWAY TWP,16,2001,1,RES2,3005 -0111_258_24,-74.49351517,39.34350247,1114 DUERER ST,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_258_25,-74.885405,39.5771895,1110 DUERER ST,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_258_26,-74.540738,39.457482,311 S BERLIN AVE,GALLOWAY TWP,16,1981,2,RES1,3001 -0111_258_4,-74.590452,39.3236875,355 S BERLIN AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_258_5.01,-74.35959917,39.41505799,358 S BREMEN AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_258_5.02,-74.7675865,39.645429,354 S BREMEN AVE,GALLOWAY TWP,17,1957,1,RES1,3001 -0111_258_6,-74.63317538,39.51165536,343 S BERLIN AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_258_7,-74.52478435,39.31822083,348 S BREMEN AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_258_8,-74.55018208,39.50336314,344 S BREMEN AVE,GALLOWAY TWP,16,1942,1,RES1,3001 -0111_258_9,-74.82967056,39.40286168,335 S BERLIN AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_259_10,-74.70856838,39.47228387,1016 GENEVA ST,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_259_11,-74.60491251,39.41029085,1014 GENEVA ST,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_259_12,-74.515067,39.385832,1012 GENEVA ST,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_259_13,-74.51062237,39.33686389,1010 GENEVA ST,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_259_14,-74.92726606,39.48182426,1008 GENEVA ST,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_259_15,-74.4954095,39.477361,1006 GENEVA ST,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_259_16,-74.61881438,39.3720602,301 LORRAINE AVE,GALLOWAY TWP,16,1967,1,GOV1,3004 -0111_259_17,-74.86018264,39.61618833,1021 GENEVA ST,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_259_18,-74.48326969,39.43858381,1019 GENEVA ST,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_259_19,-74.67265798,39.34720843,1017 GENEVA ST,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_259_20,-74.5315305,39.4158055,1015 GENEVA ST,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_259_21,-74.78659101,39.64032666,1013 GENEVA ST,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_259_22,-74.51089508,39.46474807,1011 GENEVA ST,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_259_23,-74.79481211,39.36025022,1009 GENEVA ST,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_259_24,-74.664126,39.399763,1007 GENEVA ST,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_259_25,-74.52631285,39.31203546,1005 GENEVA ST,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_259_26,-74.80293012,39.6318879,1003 GENEVA ST,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_259_27,-74.52734992,39.38896528,359 S FRANKFURT AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_259_28,-74.83750283,39.5374373,FRANKFURT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_259_31.01,-74.537588,39.379769,319 S FRANKFURT AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_259_32,-74.40850262,39.38155318,317 S FRANKFURT AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_259_33,-74.598659,39.319801,1008 DUERER ST,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_259_34,-74.57814,39.4967325,1020 DUERER ST,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_259_36,-74.61090939,39.50366839,1032 DUERER ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_259_37.01,-74.8868395,39.471239,324 S BERLIN AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_259_37.02,-74.54633887,39.37545543,312 S BERLIN AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_259_38,-74.61347606,39.41227054,332 S BERLIN AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_259_39,-74.53360989,39.31516674,344 S BERLIN AVE,GALLOWAY TWP,16,1923,1,COM1,3004 -0111_259_4,-74.519186,39.444959,1015 W WHITE HORSE PIKE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_259_40,-74.51333513,39.32337584,350 S BERLIN AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_259_5,-74.63194467,39.53318451,1013 W WHITE HORSE PIKE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_259_6,-74.63728788,39.43583298,1011 W WHITE HORSE PIKE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_259_7,-74.505212,39.33835,1009 W WHITE HORSE PIKE,GALLOWAY TWP,16,1900,1,RES1,3001 -0111_259_8,-74.6248796,39.53060923,1007 W WHITE HORSE PIKE,GALLOWAY TWP,16,1830,1,GOV1,3004 -0111_260_1,-74.56527942,39.47408586,306 LORRAINE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_260_2,-74.49640243,39.42499892,304 LORRAINE AVE,GALLOWAY TWP,,1997,1,GOV1,3004 -0111_260_3,-74.401077,39.394111,302 LORRAINE AVE,GALLOWAY TWP,16,1977,1,GOV1,3004 -0111_260_4,-74.3761105,39.398463,300 LORRAINE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_260_5,-74.36718521,39.40897499,1001 W WHITE HORSE PIKE,GALLOWAY TWP,,1960,1,RES1,3001 -0111_260_6,-74.62581837,39.41160119,367 S FRANKFURT AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_260_7,-74.78476739,39.4354305,365 S FRANKFURT AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_260_8,-74.78888015,39.53166045,363 S FRANKFURT AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_260_9,-74.4893955,39.331966,361 S FRANKFURT AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_261.01_1,-74.366846,39.4112525,909 GRUBE AVE,GALLOWAY TWP,15,1972,1,RES1,3001 -0111_261.01_10,-74.7120645,39.467593,913 W WHITE HORSE PIKE,GALLOWAY TWP,16,1920,1,RES1,3004 -0111_261.01_11,-74.5331435,39.4147625,915 W WHITE HORSE PIKE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_261.01_12,-74.55034708,39.35914985,917 W WHITE HORSE PIKE,GALLOWAY TWP,15,1921,2,RES1,3001 -0111_261.01_13,-74.532846,39.451503,919-923 W WHITE HORSE PK,GALLOWAY TWP,16,1920,2,RES1,3001 -0111_261.01_14,-74.8046985,39.625667,925 W WHITE HORSE PIKE,GALLOWAY TWP,16,1926,1,COM1,3004 -0111_261.01_15,-74.8343209,39.44631445,927 W WHITE HORSE PIKE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.01_16,-74.56940068,39.34490524,929 W WHITE HORSE PIKE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.01_17,-74.6469335,39.548285,931 W WHITE HORSE PIKE,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_261.01_18,-74.47979359,39.34978884,933 W WHITE HORSE PIKE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_261.01_19.02,-74.58448649,39.38391057,939 W WHITE HORSE PIKE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_261.01_2,-74.76457951,39.66325564,911 GRUBE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_261.01_20.01,-74.46372513,39.53525669,945-947 W WHITE HORSE PIK,GALLOWAY TWP,14,1971,1,RES1,3001 -0111_261.01_20.02,-74.511972,39.405912,370 S FRANKFURT AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_261.01_23.03,-74.592394,39.430575,330 S FRANKFURT AVE,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_261.01_24,-74.497904,39.33487,320 S FRANKFURT AVE,GALLOWAY TWP,16,1992,1,COM3,3004 -0111_261.01_25,-74.56336041,39.35546511,930 DUERER ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_261.01_26,-74.4722255,39.446338,914 DUERER ST,GALLOWAY TWP,16,1920,1,COM1,3002 -0111_261.01_27,-74.6432345,39.5284565,910 DUERER ST,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.01_28,-74.86148457,39.54150857,906 DUERER ST,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.01_29,-74.83945647,39.4897432,900 DUERER ST,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_261.01_3,-74.62018415,39.43795932,913 GRUBE AVE,GALLOWAY TWP,16,1955,1,RES3A,3001 -0111_261.01_30,-74.7009628,39.42279268,311 S VIENNA AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.01_31.01,-74.9381555,39.522626,331 S VIENNA AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_261.01_31.02,-74.63376094,39.42803948,317 S VIENNA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_261.01_31.03,-74.52567335,39.39406118,327 S VIENNA AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_261.01_31.04,-74.81776273,39.65346246,321 S VIENNA AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_261.01_32,-74.50020231,39.41198748,333 S VIENNA AVE,GALLOWAY TWP,16,1840,2,RES1,3001 -0111_261.01_33,-74.6590655,39.5371885,337 S VIENNA AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_261.01_34,-74.552599,39.3838785,347 S VIENNA AVE,GALLOWAY TWP,,0,1,RES1,3004 -0111_261.01_35,-74.51238924,39.32169512,907 GRUBE AVE,GALLOWAY TWP,16,1950,2,RES1,3001 -0111_261.01_4,-74.50186383,39.32845901,915 GRUBE AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.01_6,-74.55408139,39.47738332,919 GRUBE AVE,GALLOWAY TWP,16,1921,2,RES1,3001 -0111_261.01_7,-74.4884325,39.432476,921 GRUBE AVE,GALLOWAY TWP,,1977,1,RES1,3001 -0111_261.01_9,-74.522812,39.420019,909 W WHITE HORSE PIKE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_261.02_1,-74.81682077,39.65566062,904 GRUBE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_261.02_2,-74.54725253,39.46604698,379 S VIENNA AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.02_3,-74.7067215,39.582715,381 S VIENNA AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.02_4,-74.522618,39.4417045,912 GRUBE AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_261.02_5,-74.64460322,39.52836965,383 S VIENNA AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_261.02_6,-74.81223284,39.63642547,916 GRUBE AVE,GALLOWAY TWP,16,1900,1,RES1,3001 -0111_261.02_7,-74.58835451,39.32656883,907 W WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_261.02_9,-74.60944559,39.34289128,901 W WHITE HORSE PIKE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_262_10,-74.62810573,39.3571074,200 S BREMEN AVE,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_262_11,-74.4484525,39.3743955,1117 DUERER ST,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_262_12,-74.4677515,39.3447125,1113 DUERER ST,GALLOWAY TWP,16,1965,1,RES1,3004 -0111_262_2.01,-74.79055514,39.45986684,272 S BREMEN AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_262_2.02,-74.50610133,39.33096688,270 S BREMEN AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_262_3,-74.602994,39.3695175,262 S BREMEN AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_262_4,-74.66695994,39.35776269,258 S BREMEN AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_262_5,-74.52203677,39.32193684,254 S BREMEN AVE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_262_6,-74.5226185,39.31684583,250 S BREMEN AVE,GALLOWAY TWP,16,1913,1,RES1,3001 -0111_262_9,-74.5571517,39.36291055,220 S BREMEN AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_263_1,-74.80101655,39.52288491,270 S BERLIN AVE,GALLOWAY TWP,,1965,1,RES1,3001 -0111_263_12,-74.64859149,39.51895117,249 S FRANKFURT AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_263_14,-74.73675427,39.72081637,217 S FRANKFURT AVE,GALLOWAY TWP,16,1949,2,RES1,3001 -0111_263_15.01,-74.7839955,39.6644385,209 S FRANKFURT AVE,GALLOWAY TWP,16,1980,2,RES1,3001 -0111_263_15.02,-74.62983,39.41180433,205 S FRANKFURT AVE,GALLOWAY TWP,16,1977,2,RES1,3001 -0111_263_2,-74.80784839,39.61785276,266 S BERLIN AVE,GALLOWAY TWP,16,1944,1,RES1,3001 -0111_263_4,-74.71264641,39.47270237,248 S BERLIN AVE,GALLOWAY TWP,16,1976,1,GOV1,3004 -0111_264_1,-74.59588117,39.31636167,929 DUERER ST,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_264_10,-74.60758215,39.31656497,243 S VIENNA AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_264_11,-74.6272185,39.392769,231 S VIENNA AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_264_12.01,-74.43762877,39.37118168,221 S VIENNA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_264_12.02,-74.650016,39.53102683,219 S VIENNA AVE,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_264_12.03,-74.5900695,39.3209325,215 S VIENNA AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_264_2,-74.3569855,39.41411,266 S FRANKFURT AVE,GALLOWAY TWP,16,1927,1,RES1,3001 -0111_264_4,-74.52315798,39.40072717,234 S FRANKFURT AVE,GALLOWAY TWP,16,1958,1,GOV1,3004 -0111_264_5,-74.366305,39.4133245,218 S FRANKFURT AVE,GALLOWAY TWP,16,1860,1,RES1,3001 -0111_264_8,-74.59605349,39.34519455,257 S VIENNA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_266_1,-74.37321303,39.4039134,1052 W MOSS MILL RD,GALLOWAY TWP,15,1926,1,RES1,3001 -0111_266_3.01,-74.61648717,39.37454651,125 S FRANKFURT AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_266_3.02,-74.5331155,39.31485,129 S FRANKFURT AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_267_2,-74.48513989,39.34978806,114 S FRANKFURT AVE,GALLOWAY TWP,17,2007,1,RES1,3001 -0111_267_3,-74.7761505,39.601156,100 S FRANKFURT AVE,GALLOWAY TWP,16,1850,1,RES1,3001 -0111_267_4.01,-74.45308845,39.35437243,930 W MOSS MILL RD,GALLOWAY TWP,16,1977,1,RES1,3004 -0111_267_4.02,-74.55815982,39.35833699,928 W MOSS MILL RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_267_7,-74.62883709,39.42120856,914 W MOSS MILL RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_267_8,-74.94794975,39.52069596,912 W MOSS MILL RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_268_1,-74.50820582,39.33450852,1131 W MOSS MILL RD,GALLOWAY TWP,,1916,1,RES1,3001 -0111_268_10,-74.57142985,39.33715353,BERLIN AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_268_5,-74.69617178,39.6383382,72 N BREMEN AVE,GALLOWAY TWP,,1901,1,RES1,3001 -0111_268_6,-74.5566515,39.3606715,86 N BREMEN AVE,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_268_7,-74.8245785,39.4272975,MOSS MILL RD,GALLOWAY TWP,16,1916,1,RES1,3001 -0111_269_10.02,-74.79712216,39.66070049,31 N FRANKFURT AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_269_12.01,-74.64642237,39.5335753,35 N FRANKFURT AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_269_12.02,-74.81027308,39.63434615,1000 LIEBIG ST,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_269_6,-74.6520979,39.40753801,62 N BERLIN AVE,GALLOWAY TWP,15,1946,1,RES1,3001 -0111_270_2,-74.59249246,39.38026321,14 N FRANKFURT AVE,GALLOWAY TWP,16,1887,1,RES1,3001 -0111_270_3,-74.62424769,39.43376695,28 N FRANKFURT AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_270_5,-74.6173495,39.3109535,921 W MOSS MILL RD,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_270_6,-74.79586043,39.6212702,9 N VIENNA AVE,GALLOWAY TWP,,1900,1,RES1,3001 -0111_270_7.01,-74.43803983,39.48841701,914 LIEBIG ST,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_270_7.02,-74.63640377,39.43486568,908 LIEBIG ST,GALLOWAY TWP,16,1976,1,COM1,3004 -0111_270_7.03,-74.8145455,39.648822,15 N VIENNA AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_270_7.04,-74.55531257,39.36968611,23 N VIENNA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_271.01_2,-74.3623387,39.41495122,118 N BREMEN AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_271.01_3,-74.565111,39.3633895,124 N BREMEN AVE,GALLOWAY TWP,16,2018,1,RES1,3001 -0111_271.02_1,-74.56905065,39.36646149,1123 INDIAN CABIN RD,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_272.01_1,-74.422653,39.3744125,1027 LIEBIG ST,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_272.01_7,-74.643899,39.528303,1012 INDIAN CABIN RD,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_272.02_6,-74.50268758,39.43677999,FRANKFURT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_273.01_1,-74.52279,39.393905,104 N FRANKFURT AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_273.01_2.01,-74.62398264,39.42235155,114 N FRANKFURT AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_273.01_2.02,-74.369533,39.401501,120 N FRANKFURT AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_273.01_2.03,-74.7557615,39.4321675,118 N FRANKFURT AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_273.01_4.01,-74.55811365,39.47443079,917 LIEBIG ST,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_273.01_4.02,-74.510758,39.3288785,905 LIEBIG ST,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_273.01_4.04,-74.54953407,39.37068848,919 LIEBIG ST,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_273.01_5.01,-74.62799355,39.52012166,119 N VIENNA AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_273.01_5.02,-74.5677408,39.40593652,127 N VIENNA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_273.01_6.01,-74.55603017,39.3855475,131 N VIENNA AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_273.02_2.01,-74.554937,39.4783745,142 N FRANKFURT AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_273.02_2.02,-74.62552061,39.41645905,146 N FRANKFURT AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_273.02_5,-74.60961299,39.32780534,176 N FRANKFURT AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_273.02_7.01,-74.95256,39.535844,141 N VIENNA AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_273.02_7.02,-74.640717,39.533346,151 N VIENNA AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_273.02_7.03,-74.5116327,39.40676736,143 N VIENNA AVE,GALLOWAY TWP,,0,1,COM1,3004 -0111_273.02_7.04,-74.55557972,39.47140553,145 N VIENNA AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_273.02_8,-74.49147212,39.44353373,157 N VIENNA AVE,GALLOWAY TWP,16,1968,1,RES1,3004 -0111_273.02_9.01,-74.93019108,39.52819492,169 N VIENNA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_273.02_9.02,-74.60411418,39.32400221,173 N VIENNA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_273.02_9.03,-74.92444705,39.54312581,177 N VIENNA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_273.02_9.04,-74.74299722,39.41316424,175 N VIENNA AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_273.02_9.05,-74.52145822,39.4562288,171 N VIENNA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_275_11,-74.63087457,39.4222048,229 N FRANKFURT AVE,GALLOWAY TWP,16,1989,2,RES1,3001 -0111_275_12,-74.54813371,39.37277481,233 N FRANKFURT AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_275_9,-74.6090745,39.389333,217 N FRANKFURT AVE,GALLOWAY TWP,16,1974,2,RES1,3001 -0111_276.01_1,-74.63140997,39.34760834,206 N FRANKFURT AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_276.01_10,-74.50791082,39.33468871,914 SHILLER ST,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_276.01_11,-74.6376185,39.530504,916 SHILLER ST,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_276.01_12,-74.7630405,39.4848325,920 SHILLER ST,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_276.01_3.03,-74.48757276,39.44467036,238 N FRANKFURT AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_276.01_4.01,-74.7392855,39.650497,240 N FRANKFURT AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_276.01_4.02,-74.58989322,39.41541869,242 N FRANKFURT AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_276.01_4.03,-74.55132417,39.38178858,244 N FRANKFURT AVE,GALLOWAY TWP,16,1994,1,COM3,3004 -0111_276.01_6,-74.36590846,39.41543664,934 SHILLER ST,GALLOWAY TWP,16,2006,1,COM3,3004 -0111_276.01_7.01,-74.50216504,39.45583813,900 OVERBROOK CT,GALLOWAY TWP,16,1994,1,RES3A,3001 -0111_276.01_7.02,-74.94782978,39.51344633,902 OVERBROOK CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_276.01_7.03,-74.5411555,39.460304,904 OVERBROOK CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_276.01_7.04,-74.546637,39.472682,906 OVERBROOK CT,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_276.01_7.05,-74.6973557,39.63358177,907 OVERBROOK CT,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_276.01_8.01,-74.5289235,39.3978025,905 OVERBROOK CT,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_276.01_8.02,-74.940387,39.521551,903 OVERBROOK CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_276.01_8.03,-74.53925443,39.4125224,901 OVERBROOK CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_278_6,-74.72372287,39.46055918,BERLIN AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_279_1,-74.87404583,39.59645137,933 SHILLER ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_279_2,-74.377033,39.418594,923 SHILLER ST,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_279_3,-74.3965176,39.38705508,FRANKFURT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_279_9,-74.57283485,39.48246154,919 SHILLER ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_28_10,-74.5978481,39.47083939,1523 ALOE ST,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_28_15,-74.63533435,39.43518658,1504 BUERGER ST,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_28_4,-74.463478,39.455138,1500 ATLANTIC AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_28_5,-74.72403231,39.43606895,455 COUNTY BLVD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_28_7,-74.53899138,39.39258737,1516 BUERGER ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_28_8,-74.4934495,39.428369,1515 ALOE ST,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_28_9,-74.637942,39.53572,1525 ALOE ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_280_4,-74.60743433,39.3250135,FRANKFURT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_281_3,-74.633542,39.55289513,928 CLARKS LANDING RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_281_5,-74.58978333,39.42492265,924 CLARKS LANDING RD,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_281_6,-74.68428634,39.49792902,920 CLARKS LANDING RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_282_3,-74.567869,39.362077,911 CLARKS LANDING RD,GALLOWAY TWP,15,1886,1,RES1,3001 -0111_282_4,-74.56955879,39.36231847,901 CLARKS LANDING RD,GALLOWAY TWP,15,1974,1,RES1,3001 -0111_283_11,-74.79342,39.634693,543 S COLOGNE AVE,GALLOWAY TWP,15,1908,1,RES1,3001 -0111_283_6,-74.6977825,39.4885355,838 ALOE ST,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_283_7,-74.53477353,39.37834434,826 ALOE ST,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_284_1,-74.54616733,39.38555006,COLOGNE AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_284_10,-74.57280161,39.42969041,565 S LEIPZIG AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_284_11,-74.410169,39.3814095,561 S LEIPZIG AVE,GALLOWAY TWP,16,2017,1,GOV1,3004 -0111_284_12,-74.528302,39.51164,557 S LEIPZIG AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_284_13.01,-74.5885605,39.320846,LEIPZIG AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_284_14,-74.45493089,39.49264555,523 S LEIPZIG AVE,GALLOWAY TWP,,1980,1,RES1,3001 -0111_284_15,-74.63633815,39.38796307,515 S LEIPZIG AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_284_2,-74.45191662,39.35345216,562 S COLOGNE AVE,GALLOWAY TWP,16,1914,2,RES1,3001 -0111_284_3,-74.85129066,39.61312572,546 S COLOGNE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_284_4,-74.72745852,39.45910082,532 S COLOGNE AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_284_7.01,-74.539666,39.3733005,512 S COLOGNE AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_284_7.02,-74.684181,39.6353265,510 S COLOGNE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_284_7.03,-74.8810535,39.4968875,508 S COLOGNE AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_284_8.02,-74.66950111,39.45787171,500 S COLOGNE AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_31_1,-74.61171017,39.32475249,508 ROOSEVELT AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_312.01_2,-74.64878784,39.53072198,518 S LEIPZIG AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_316.01_1,-74.60584967,39.5055895,414 S COLOGNE AVE,GALLOWAY TWP,,1935,1,RES1,3001 -0111_319_2,-74.58122452,39.53177903,402 S VIENNA AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_319_5.02,-74.71013267,39.56737581,405 S COLOGNE AVE,GALLOWAY TWP,,1987,1,RES1,3001 -0111_319_7,-74.87744323,39.52334866,842 W WHITE HORSE PIKE,GALLOWAY TWP,,1951,1,RES1,3001 -0111_32_2,-74.37300936,39.41461831,1550 DETROIT AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_32_4,-74.53522937,39.39701693,1548 DETROIT AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_32_7,-74.82534154,39.64005966,576 ROOSEVELT AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_320_1,-74.44323393,39.37336128,734 W WHITE HORSE PIKE,GALLOWAY TWP,,1939,1,RES1,3001 -0111_320_2,-74.60682317,39.32830751,730 W WHITE HORSE PIKE,GALLOWAY TWP,,1975,1,RES1,3001 -0111_320_3,-74.53046432,39.3983744,716 W WHITE HORSE PIKE,GALLOWAY TWP,,2001,1,RES1,3001 -0111_321_1,-74.57030959,39.36219731,714 W WHITE HORSE PIKE,GALLOWAY TWP,,1993,1,RES1,3001 -0111_322_2.01,-74.68749522,39.4878156,644 W WHITE HORSE PIKE,GALLOWAY TWP,,1925,1,RES1,3001 -0111_322_2.02,-74.495249,39.3323415,642 W WHITE HORSE PIKE,GALLOWAY TWP,,1921,1,RES1,3001 -0111_322_3,-74.49782053,39.33728901,628 W WHITE HORSE PIKE,GALLOWAY TWP,,1930,1,RES1,3001 -0111_322_4,-74.77380834,39.49254698,616 W WHITE HORSE PIKE,GALLOWAY TWP,,1952,1,RES1,3001 -0111_322_5,-74.38155746,39.41717508,608 W WHITE HORSE PIKE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_322_6,-74.6247305,39.375496,604 W WHITE HORSE PIKE,GALLOWAY TWP,,1938,1,RES1,3001 -0111_322_7,-74.50253478,39.50175139,600 W WHITE HORSE PIKE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_323_1,-74.3729248,39.40107434,839 W WHITE HORSE PIKE,GALLOWAY TWP,,1920,1,GOV1,3004 -0111_323_12,-74.64320823,39.43464263,809 W WHITE HORSE PIKE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_323_13,-74.48229986,39.34707971,807 W WHITE HORSE PIKE,GALLOWAY TWP,,1944,1,RES1,3001 -0111_323_17.01,-74.53770215,39.37344076,814 SCHOOL LN,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_323_17.02,-74.546906,39.4671845,812 SCHOOL LN,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_323_18.01,-74.8124634,39.65285624,818 SCHOOL LN,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_323_20,-74.50099794,39.43325623,820 SCHOOL LN,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_323_22,-74.75838006,39.63408747,822 SCHOOL LN,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_323_26,-74.467365,39.5428965,366 S VIENNA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_323_27,-74.52057289,39.38791226,370 S VIENNA AVE,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_323_3,-74.511263,39.4405325,372 S VIENNA AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_323_4,-74.55778405,39.37586051,837 W WHITE HORSE PIKE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_323_6,-74.80210597,39.60553506,833 W WHITE HORSE PIKE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_323_7,-74.60084516,39.49760947,831 W WHITE HORSE PIKE,GALLOWAY TWP,,2007,1,RES1,3001 -0111_323_9,-74.63087128,39.41475779,827 W WHITE HORSE PIKE,GALLOWAY TWP,16,1929,1,RES1,3001 -0111_324_10,-74.51742116,39.52840803,349 S COLOGNE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_324_11,-74.37009494,39.4152618,345 S COLOGNE AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_324_12,-74.6341515,39.528333,343 S COLOGNE AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_324_13.01,-74.49725159,39.49812786,337 S COLOGNE AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_324_13.02,-74.52570918,39.31227447,341 S COLOGNE AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_324_14,-74.50224719,39.50125455,333 S COLOGNE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_324_15,-74.929451,39.5073545,335 S COLOGNE AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_324_16,-74.4560115,39.3795345,329 S COLOGNE AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_324_17,-74.47980988,39.34838653,327 S COLOGNE AVE,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_324_18,-74.401238,39.3855255,325 S COLOGNE AVE,GALLOWAY TWP,16,1925,1,RES3B,3001 -0111_324_19,-74.554511,39.4714665,323 S COLOGNE AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_324_20,-74.762971,39.639933,321 S COLOGNE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_324_22,-74.61551092,39.39202228,315 S COLOGNE AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_324_23,-74.65739133,39.39893778,313 S COLOGNE AVE,GALLOWAY TWP,16,1945,1,RES3B,3001 -0111_324_25,-74.4975755,39.3370505,814 DUERER ST,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_324_27,-74.54809591,39.37457386,307 S COLOGNE AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_324_28,-74.59944897,39.31128195,301 S COLOGNE AVE,GALLOWAY TWP,16,1885,1,RES1,3001 -0111_324_3,-74.58094681,39.33022898,342 S VIENNA AVE,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_324_4,-74.51454743,39.47264124,330 S VIENNA AVE,GALLOWAY TWP,16,2007,1,GOV1,3004 -0111_324_5.01,-74.7663695,39.34954,326 S VIENNA AVE,GALLOWAY TWP,16,1959,2,RES1,3001 -0111_324_5.02,-74.66486183,39.34965166,314 S VIENNA AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_324_6,-74.558568,39.358477,822 DUERER ST,GALLOWAY TWP,16,1953,1,COM1,3004 -0111_324_7,-74.5431835,39.442397,355 S COLOGNE AVE,GALLOWAY TWP,16,1933,1,RES1,3001 -0111_324_8.01,-74.882946,39.601732,803 SCHOOL LN,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_324_9,-74.95302917,39.51321525,351 S COLOGNE AVE,GALLOWAY TWP,16,1916,1,GOV1,3004 -0111_325_1,-74.4644955,39.4921145,743 W WHITE HORSE PIKE,GALLOWAY TWP,,1922,1,RES1,3001 -0111_325_10,-74.5334945,39.386957,729 W WHITE HORSE PIKE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_325_11,-74.585963,39.3374025,727 W WHITE HORSE PIKE,GALLOWAY TWP,,1940,1,GOV1,3004 -0111_325_2,-74.62046715,39.43493443,736 PINE ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_325_3,-74.62313794,39.35783081,732 PINE ST,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_325_4,-74.5870615,39.455186,729 OAK ST,GALLOWAY TWP,16,1920,1,GOV1,3004 -0111_325_5.01,-74.95192491,39.53636038,727 OAK ST,GALLOWAY TWP,16,1935,1,RES3A,3001 -0111_325_5.02,-74.780597,39.63414468,726 PINE ST,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_325_5.03,-74.56755983,39.356012,725 OAK ST,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_325_6,-74.63035072,39.36558347,733 W WHITE HORSE PIKE,GALLOWAY TWP,,1950,3,COM1,3004 -0111_325_8,-74.46645271,39.34334644,731 W WHITE HORSE PIKE,GALLOWAY TWP,45,1920,2,RES1,3001 -0111_325_9,-74.53690597,39.30516488,730 OAK ST,GALLOWAY TWP,16,1900,1,EDU1,3004 -0111_326_1,-74.481665,39.3416515,314 WOODHAVEN AVE,GALLOWAY TWP,16,1938,1,RES1,3001 -0111_326_2,-74.504506,39.4152845,726 OAK ST,GALLOWAY TWP,50,1955,1,RES1,3001 -0111_326_3,-74.72783567,39.64379758,724 OAK ST,GALLOWAY TWP,15,1938,1,RES1,3001 -0111_326_4,-74.69637674,39.42054663,722 OAK ST,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_326_5,-74.45460152,39.49041222,725 W WHITE HORSE PIKE,GALLOWAY TWP,16,1926,1,COM1,3004 -0111_326_7,-74.39949941,39.38814774,721 W WHITE HORSE PIKE,GALLOWAY TWP,15,1938,1,RES1,3001 -0111_326_8,-74.49365884,39.33288155,719 W WHITE HORSE PIKE,GALLOWAY TWP,,1930,1,RES1,3001 -0111_327_1,-74.94840065,39.53446982,308 WOODHAVEN AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_327_2,-74.67380481,39.48341927,310 WOODHAVEN AVE,GALLOWAY TWP,15,1925,1,IND1,3002 -0111_327_3,-74.49200557,39.34006367,723 OAK ST,GALLOWAY TWP,16,1938,1,RES1,3001 -0111_327_4,-74.49819843,39.41731078,722 PINE ST,GALLOWAY TWP,16,1952,1,COM1,3004 -0111_327_5,-74.79939366,39.63344248,720 PINE ST,GALLOWAY TWP,16,1938,1,RES1,3001 -0111_327_6,-74.61932,39.3899115,305 NEW JERSEY AVE,GALLOWAY TWP,16,1955,1,GOV1,3004 -0111_327_7,-74.5648393,39.50162695,721 OAK ST,GALLOWAY TWP,16,1939,1,RES1,3001 -0111_327_8,-74.57380406,39.47995671,307 NEW JERSEY AVE,GALLOWAY TWP,16,1956,1,RES3A,3001 -0111_328_1,-74.47728285,39.44292669,304 WOODHAVEN AVE,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_328_2,-74.62565129,39.43481954,718 BIRCH ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_328_3,-74.63180524,39.3478701,716 BIRCH ST,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_328_4,-74.68432235,39.55975355,725 PINE ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_328_5,-74.63948501,39.53607167,723 PINE ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_328_6,-74.3995158,39.38798641,721 PINE ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_329_1,-74.51170316,39.4293586,715 W WHITE HORSE PIKE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_330_1,-74.938637,39.517625,304 NEW JERSEY AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_330_2,-74.6418315,39.527395,714 PINE ST,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_330_3.02,-74.399643,39.3868375,713 OAK ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_330_4,-74.68141392,39.37616148,710 PINE ST,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_330_5,-74.546881,39.370307,715 OAK ST,GALLOWAY TWP,16,1930,1,RES1,3004 -0111_330_6,-74.49057403,39.33253273,711 OAK ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_331_1,-74.50811732,39.43377193,719 PINE ST,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_331_2,-74.4802215,39.3386715,717 PINE ST,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_331_4,-74.77953092,39.42485031,309 JACKSON AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_331_5,-74.35476784,39.41530549,715 PINE ST,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_331_6,-74.46457413,39.49625865,713 PINE ST,GALLOWAY TWP,16,1945,1,RES3A,3001 -0111_332_1,-74.480325,39.337902,712 PLAINFIELD AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_332_10,-74.50811664,39.43845679,717 BIRCH ST,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_332_11,-74.5245415,39.385072,715 BIRCH ST,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_332_12,-74.64039125,39.32914237,713 BIRCH ST,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_332_14,-74.59993652,39.37994621,307 JACKSON AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_332_2,-74.5526725,39.427385,710 PLAINFIELD AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_332_3,-74.514841,39.4032255,708 PLAINFIELD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_332_4,-74.813054,39.6501405,706 PLAINFIELD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_332_5,-74.60336296,39.37622302,704 PLAINFIELD AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_332_7,-74.6078115,39.6181275,305 JACKSON AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_332_8,-74.9359375,39.529457,721 BIRCH ST,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_332_9,-74.37383661,39.40583559,719 BIRCH ST,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_333_2,-74.60432499,39.50642279,707 W WHITE HORSE PIKE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_333_3,-74.383285,39.399033,705 W WHITE HORSE PIKE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_333_4,-74.6524205,39.3481585,703 W WHITE HORSE PIKE,GALLOWAY TWP,17,1968,4,RES1,3001 -0111_334_1,-74.50440821,39.48856539,316 JACKSON AVE,GALLOWAY TWP,16,1959,1,RES3A,3001 -0111_334_2,-74.5770655,39.4437295,706 PINE ST,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_334_3,-74.53301939,39.31436969,317 FAIRVIEW AVE,GALLOWAY TWP,16,1930,2,RES1,3001 -0111_334_4,-74.5247455,39.3856805,318 JACKSON AVE,GALLOWAY TWP,16,1928,1,RES3B,3001 -0111_334_5,-74.366263,39.4151425,707 OAK ST,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_335_1,-74.54083105,39.37540315,706 BIRCH ST,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_335_2,-74.8084481,39.64981818,313 FAIRVIEW AVE,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_335_3,-74.579151,39.341357,314 JACKSON AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_335_4,-74.436677,39.4905735,709 PINE ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_335_5,-74.36067587,39.41281625,315 FAIRVIEW AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_336_1,-74.55294334,39.37492547,706 CLARK ST,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_336_10,-74.39014387,39.38835285,309 FAIRVIEW AVE,GALLOWAY TWP,16,1930,1,GOV1,3004 -0111_336_11,-74.56491279,39.355526,707 BIRCH ST,GALLOWAY TWP,16,1948,1,GOV1,3004 -0111_336_12,-74.8889,39.4790265,705 BIRCH ST,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_336_2,-74.57447846,39.41151713,301 FAIRVIEW AVE,GALLOWAY TWP,16,1933,1,RES1,3001 -0111_336_3,-74.63349128,39.41515609,302 JACKSON AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_336_4,-74.58376764,39.3241702,303 FAIRVIEW AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_336_5,-74.60888334,39.36584098,304 JACKSON AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_336_6,-74.5374315,39.397677,305 FAIRVIEW AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_336_7,-74.52115054,39.44510183,306 JACKSON AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_336_8,-74.618794,39.3809455,307 FAIRVIEW AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_336_9.01,-74.580857,39.3331935,308 JACKSON AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_337_1,-74.60433583,39.31407875,702 PINE ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_337_2,-74.5023425,39.338739,700 PINE ST,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_337_3,-74.82576767,39.56887207,318 FAIRVIEW AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_337_4,-74.61074368,39.32376456,703 OAK ST,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_337_5,-74.51773066,39.44629099,701 OAK ST,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_338_1,-74.41387632,39.38993155,702 BIRCH ST,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_338_2,-74.4263656,39.37005747,365 S LEIPZIG AVE,GALLOWAY TWP,16,1953,1,GOV1,3004 -0111_338_3,-74.5906095,39.3761315,705 PINE ST,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_338_4,-74.785256,39.5052345,703 PINE ST,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_338_5,-74.55989076,39.38938449,701 PINE ST,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_339_1,-74.79061846,39.65546084,300 FAIRVIEW AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_339_10,-74.52805982,39.39444496,310 FAIRVIEW AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_339_11,-74.36270884,39.4148678,701 BIRCH ST,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_339_2,-74.73281006,39.46178493,353 S LEIPZIG AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_339_3,-74.5517905,39.3818935,302 FAIRVIEW AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_339_4,-74.60464139,39.32483667,304 FAIRVIEW AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_339_5.01,-74.64048092,39.46011015,355 S LEIPZIG AVE,GALLOWAY TWP,16,1929,1,RES3A,3001 -0111_339_5.02,-74.607431,39.5133035,357 S LEIPZIG AVE,GALLOWAY TWP,16,1989,1,RES3B,3001 -0111_339_6,-74.85705616,39.56130126,306 FAIRVIEW AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_339_7,-74.86372062,39.60712758,359 S LEIPZIG AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_339_8,-74.531167,39.4713715,308 FAIRVIEW AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_339_9,-74.6167575,39.372593,361 S LEIPZIG AVE,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_34_1,-74.55963537,39.47501474,616 ROOSEVELT AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_34_11,-74.57424707,39.42812065,621 SIMMS AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_34_12,-74.86772603,39.49245169,619 SIMMS AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_340_1,-74.45472128,39.35190957,637 W WHITE HORSE PIKE,GALLOWAY TWP,15,1950,1,RES1,3001 -0111_341_1,-74.7826363,39.31426666,370 S LEIPZIG AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_341_2,-74.80318121,39.64749157,311 EDWARDS AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_341_3,-74.64522409,39.41369079,637 OAK ST,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_341_4,-74.4896092,39.3365926,635 OAK ST,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_342_1,-74.60571369,39.31925653,366 S LEIPZIG AVE,GALLOWAY TWP,16,1950,2,RES1,3001 -0111_342_2,-74.5934265,39.3156075,307 EDWARDS AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_342_3,-74.712538,39.465626,368 S LEIPZIG AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_342_4,-74.58607032,39.35428665,309 EDWARDS AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_343_1,-74.44766556,39.37480881,362 S LEIPZIG AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_343_2.02,-74.36378892,39.4173918,303 EDWARDS AVE,GALLOWAY TWP,16,1977,1,RES3A,3002 -0111_344_10,-74.4398425,39.3665385,311 CARTON AVE,GALLOWAY TWP,,1988,1,RES1,3002 -0111_344_11,-74.59286366,39.31286753,608 PARKER AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_344_12.01,-74.530932,39.3862655,606 PARKER AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_344_12.02,-74.50467284,39.49297752,304 EDWARDS AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_344_13,-74.73464375,39.43878209,604 PARKER AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_344_14.01,-74.55405593,39.4009438,602 PARKER AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_344_14.02,-74.68520074,39.5540368,309 CARTON AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_344_15,-74.5187092,39.40181842,600 PARKER AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_344_2,-74.69777916,39.35687756,308 EDWARDS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_344_3,-74.73560841,39.43921547,EDWARDS AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_344_4,-74.59737722,39.3645111,310 EDWARDS AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_344_5,-74.60572535,39.50284132,314 EDWARDS AVE,GALLOWAY TWP,,1940,1,RES3A,3001 -0111_344_6,-74.56240203,39.36547781,316 EDWARDS AVE,GALLOWAY TWP,,0,1,RES3A,3001 -0111_344_7,-74.63964471,39.53700869,631 W WHITE HORSE PIKE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_344_8,-74.46985319,39.48595051,627 W WHITE HORSE PIKE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_344_9.01,-74.60141875,39.36759757,323 CARTON AVE,GALLOWAY TWP,,1950,1,RES3A,3001 -0111_344_9.02,-74.58149691,39.47332694,319 CARTON AVE,GALLOWAY TWP,,1950,1,RES3A,3001 -0111_345_1,-74.89657059,39.5115571,366 S COLOGNE AVE,GALLOWAY TWP,16,1949,1,COM1,3004 -0111_345_10,-74.60751883,39.32114864,305 WOODHAVEN AVE,GALLOWAY TWP,16,1929,1,RES3A,3001 -0111_345_11,-74.5236165,39.3993125,362 S COLOGNE AVE,GALLOWAY TWP,16,1925,1,RES3A,3001 -0111_345_12,-74.47382678,39.49145685,360 S COLOGNE AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_345_13,-74.64840484,39.53162853,356 S COLOGNE AVE,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_345_14.01,-74.57135721,39.50488782,301 WOODHAVEN AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_345_14.02,-74.59559417,39.31691551,352 S COLOGNE AVE,GALLOWAY TWP,16,1968,1,GOV1,3004 -0111_345_14.03,-74.3816421,39.39317305,709 PLAINFIELD AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_345_15,-74.5088635,39.405538,350 S COLOGNE AVE,GALLOWAY TWP,16,1959,1,RES3A,3001 -0111_345_16,-74.518721,39.4748035,348 S COLOGNE AVE,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_345_17,-74.510465,39.385599,344 S COLOGNE AVE,GALLOWAY TWP,16,1865,1,RES1,3001 -0111_345_18.01,-74.5379905,39.3823595,338 S COLOGNE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_345_19,-74.59542228,39.36625554,336 S COLOGNE AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_345_2,-74.53786283,39.37326826,743 PINE ST,GALLOWAY TWP,16,1940,1,RES1,3002 -0111_345_20.02,-74.4930845,39.4944865,328 S COLOGNE AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_345_21,-74.530283,39.389435,324 S COLOGNE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_345_22,-74.78997189,39.44275328,318 S COLOGNE AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_345_23,-74.4987165,39.5219755,316 S COLOGNE AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_345_24,-74.7008035,39.518462,314 S COLOGNE AVE,GALLOWAY TWP,16,1957,1,RES3A,3001 -0111_345_25,-74.55340795,39.47118221,312 S COLOGNE AVE,GALLOWAY TWP,,1926,1,RES1,3001 -0111_345_29,-74.49194467,39.49499934,300 S COLOGNE AVE,GALLOWAY TWP,16,1926,1,RES3A,3001 -0111_345_3,-74.695171,39.49784,364 S COLOGNE AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_345_30,-74.820466,39.472243,730 DUERER ST,GALLOWAY TWP,16,1966,1,RES3A,3001 -0111_345_31,-74.502682,39.4678155,724 DUERER ST,GALLOWAY TWP,16,1968,1,RES3A,3001 -0111_345_32.01,-74.59936569,39.31899935,712 DUERER ST,GALLOWAY TWP,16,1865,1,RES1,3001 -0111_345_32.02,-74.61174361,39.34654494,700 DUERER ST,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_345_32.03,-74.51963496,39.40470868,313 S LEIPZIG AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_345_33.01,-74.6227985,39.38355494,315 S LEIPZIG AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_345_33.02,-74.56049345,39.37332087,325 S LEIPZIG AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_345_33.03,-74.5869634,39.3704232,329 S LEIPZIG AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_345_34,-74.384384,39.398841,331 S LEIPZIG AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_345_35,-74.51437993,39.43263108,337 S LEIPZIG AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_345_38,-74.4826222,39.34352617,301 JACKSON AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_345_4,-74.5519424,39.3827553,741 PINE ST,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_345_5,-74.6419255,39.6238405,739 PINE ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_345_6,-74.56137144,39.40988376,737 PINE ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_345_7,-74.94287,39.5178785,733 PINE ST,GALLOWAY TWP,16,1957,1,RES1,3002 -0111_345_8,-74.497099,39.4534375,731 PINE ST,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_345_9,-74.45878102,39.34932618,729 PINE ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_346_1,-74.693588,39.354785,615 PARKER AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_346_11.01,-74.5229075,39.3931675,326 S LEIPZIG AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_346_11.02,-74.50117385,39.41043437,322 S LEIPZIG AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_346_11.03,-74.44715935,39.35679149,318 S LEIPZIG AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_346_12,-74.63713193,39.53325681,314 S LEIPZIG AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_346_13,-74.60350893,39.39065327,626 DUERER ST,GALLOWAY TWP,16,1924,1,RES1,3001 -0111_346_14,-74.4483605,39.3743535,628 DUERER ST,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_346_15,-74.749747,39.450786,621 W WHITE HORSE PIKE,GALLOWAY TWP,,1969,1,RES1,3001 -0111_346_17,-74.63373623,39.35904645,609 W WHITE HORSE PIKE,GALLOWAY TWP,,1962,1,RES1,3001 -0111_346_18.01,-74.63586847,39.41227036,314 CARTON AVE,GALLOWAY TWP,16,1976,1,RES1,3002 -0111_346_18.02,-74.8012795,39.4659345,306 CARTON AVE,GALLOWAY TWP,16,1880,1,RES1,3001 -0111_346_18.04,-74.63534932,39.46155045,310 CARTON AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_346_18.05,-74.45251571,39.37400005,308 CARTON AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_346_2.01,-74.5230835,39.320643,356 S LEIPZIG AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_346_2.02,-74.463276,39.346248,354 S LEIPZIG AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_346_20,-74.82238843,39.42931724,612 DUERER ST,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_346_22,-74.69385054,39.35356716,608 DUERER ST,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_346_23,-74.59806264,39.35693184,604 DUERER ST,GALLOWAY TWP,16,1925,1,RES3A,3001 -0111_346_24,-74.625459,39.4878965,600 DUERER ST,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_346_3,-74.6899963,39.44809276,613 PARKER AVE,GALLOWAY TWP,16,1965,1,RES3A,3002 -0111_346_4,-74.627847,39.4064565,609 PARKER AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_346_5,-74.81691835,39.63674433,607 PARKER AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_346_6,-74.5255715,39.383258,605 PARKER AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_346_7.01,-74.69425252,39.50602067,603 PARKER AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_346_7.02,-74.481138,39.43775,601 PARKER AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_346_8,-74.7565495,39.42921,350 S LEIPZIG AVE,GALLOWAY TWP,16,1880,1,RES3A,3001 -0111_346_9,-74.49829929,39.33748717,336 S LEIPZIG AVE,GALLOWAY TWP,16,1920,2,RES1,3001 -0111_347_1,-74.9134495,39.509398,268 S VIENNA AVE,GALLOWAY TWP,16,1872,1,RES1,3001 -0111_347_10,-74.46209419,39.35791733,239 S COLOGNE AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_347_11,-74.65028476,39.51350482,237 S COLOGNE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_347_13,-74.48792666,39.46762917,219 S COLOGNE AVE,GALLOWAY TWP,16,1913,3,RES1,3001 -0111_347_15,-74.79529909,39.46352133,213 S COLOGNE AVE,GALLOWAY TWP,16,1959,1,RES1,3002 -0111_347_2.01,-74.44792003,39.35754055,264 S VIENNA AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_347_2.02,-74.6211925,39.4278835,258 S VIENNA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_347_3.01,-74.475022,39.4802735,248 S VIENNA AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_347_4,-74.46339631,39.34884902,230 S VIENNA AVE,GALLOWAY TWP,16,1891,1,RES1,3001 -0111_347_5,-74.75190554,39.44869316,220 S VIENNA AVE,GALLOWAY TWP,16,1846,1,RES1,3001 -0111_347_6.01,-74.6888505,39.5014285,200 S VIENNA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_347_8.01,-74.49919849,39.32963767,801 DUERER ST,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_347_9.01,-74.5269635,39.3837705,253 S COLOGNE AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_347_9.02,-74.855887,39.6181415,249 S COLOGNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_347_9.03,-74.83696181,39.41740708,257 S COLOGNE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_348_1.01,-74.73787974,39.46856318,270 S COLOGNE AVE,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_348_1.02,-74.9246145,39.508702,729 DUERER ST,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_348_1.03,-74.53414317,39.46970624,733 DUERER ST,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_348_10,-74.48228432,39.34817009,232 S COLOGNE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_348_11.01,-74.81795013,39.63828047,228 S COLOGNE AVE,GALLOWAY TWP,16,1931,1,GOV1,3004 -0111_348_11.02,-74.362407,39.4109895,226 S COLOGNE AVE,GALLOWAY TWP,16,1982,1,RES1,3002 -0111_348_12,-74.92852894,39.50794685,222 S COLOGNE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_348_14,-74.77731007,39.30348391,707 DUERER ST,GALLOWAY TWP,,1960,1,RES1,3001 -0111_348_15,-74.77882265,39.60953797,705 DUERER ST,GALLOWAY TWP,15,1958,1,RES3A,3001 -0111_348_16,-74.6340425,39.432149,273 S LEIPZIG AVE,GALLOWAY TWP,,1940,1,RES3A,3001 -0111_348_18,-74.599991,39.3294925,251 S LEIPZIG AVE,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_348_19,-74.550504,39.466374,245 S LEIPZIG AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_348_20,-74.6355085,39.4271185,241 S LEIPZIG AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_348_21,-74.51608741,39.31890267,233 S LEIPZIG AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_348_23.03,-74.75943645,39.4489068,217 S LEIPZIG AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_348_24.01,-74.556132,39.383209,201 S LEIPZIG AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_348_24.02,-74.5934905,39.3769025,714 HERSCHEL ST,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_348_3,-74.54260285,39.37648553,723 DUERER ST,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_348_4,-74.507882,39.4629755,266 S COLOGNE AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_348_5,-74.37713767,39.3963735,260 S COLOGNE AVE,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_348_8,-74.62652483,39.35446149,240 S COLOGNE AVE,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_348_9,-74.6262443,39.43909148,236 S COLOGNE AVE,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_349_10.01,-74.7047565,39.42354,226 S LEIPZIG AVE,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_349_10.02,-74.60514118,39.35570165,214 S LEIPZIG AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_349_14,-74.507362,39.3266815,611 DUERER ST,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_349_2,-74.9106375,39.5156315,631 DUERER ST,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_349_21,-74.60776048,39.44138616,610 HERSCHEL ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_349_3,-74.368482,39.4061295,629 DUERER ST,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_349_4,-74.523553,39.4059005,627 DUERER ST,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_349_5,-74.6213085,39.4222495,625 DUERER ST,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_349_8.01,-74.50973905,39.43589635,242 S LEIPZIG AVE,GALLOWAY TWP,16,1885,1,COM1,3004 -0111_349_8.02,-74.378256,39.402622,252 S LEIPZIG AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_35_4.02,-74.49665151,39.33385026,633 SIMMS AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_350_1,-74.816809,39.6537395,VIENNA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_350_10,-74.57315633,39.36126441,COLOGNE AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_350_15,-74.83967583,39.59666452,822 W MOSS MILL RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_350_16,-74.72913854,39.64677887,820 W MOSS MILL RD,GALLOWAY TWP,15,1973,1,AGR1,3001 -0111_350_17,-74.6476914,39.43168379,101 S COLOGNE AVE,GALLOWAY TWP,,1982,1,RES1,3001 -0111_350_2,-74.62532851,39.37921811,146 S VIENNA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_350_4,-74.954048,39.512314,100 S VIENNA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_350_7,-74.59205696,39.33550031,169 S COLOGNE AVE,GALLOWAY TWP,,1930,1,RES1,3001 -0111_350_9,-74.36884936,39.40534083,137 S COLOGNE AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_351_1,-74.77986676,39.62752153,170 S COLOGNE AVE,GALLOWAY TWP,16,1921,1,GOV1,3004 -0111_351_12,-74.5370395,39.3845345,145 S LEIPZIG AVE,GALLOWAY TWP,16,1900,2,RES1,3001 -0111_351_13.01,-74.63494763,39.31813491,137 S LEIPZIG AVE,GALLOWAY TWP,16,1985,2,RES1,3001 -0111_351_13.02,-74.602216,39.49832083,129 S LEIPZIG AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_351_14,-74.5010354,39.45613053,125 S LEIPZIG AVE,GALLOWAY TWP,16,1925,1,GOV1,3004 -0111_351_15,-74.5964535,39.3642555,121 S LEIPZIG AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_351_16,-74.4978775,39.4898345,LEIPZIG AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_351_17,-74.4599785,39.348292,117 S LEIPZIG AVE,GALLOWAY TWP,15,1920,1,RES1,3001 -0111_351_19,-74.48525701,39.43598209,722 LIEBIG ST,GALLOWAY TWP,16,1905,2,RES1,3001 -0111_351_2,-74.43773598,39.49158166,723 HERSCHEL ST,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_351_3,-74.79502599,39.63811183,140 S COLOGNE AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_351_4,-74.63366135,39.43425289,134 S COLOGNE AVE,GALLOWAY TWP,16,1962,1,COM1,3004 -0111_351_5,-74.63821988,39.36063464,130 S COLOGNE AVE,GALLOWAY TWP,16,2006,1,COM1,3004 -0111_351_6,-74.3602415,39.41225,120 S COLOGNE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_351_7.01,-74.5821015,39.422956,108 S COLOGNE AVE,GALLOWAY TWP,16,1890,1,RES1,3001 -0111_351_7.02,-74.592365,39.47740816,114 S COLOGNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_351_7.03,-74.71469666,39.40631064,106 S COLOGNE AVE,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_351_8,-74.80484176,39.62824402,104 S COLOGNE AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_351_9,-74.6235257,39.38311395,736 W MOSS MILL RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_352_1,-74.44357803,39.36979417,172 S LEIPZIG AVE,GALLOWAY TWP,16,1914,1,RES1,3002 -0111_352_13.01,-74.51941308,39.38407562,125 S PRAGUE AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_352_2,-74.687394,39.4126455,164 S LEIPZIG AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_352_5,-74.61926205,39.30649683,138 S LEIPZIG AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_352_6,-74.534774,39.3778965,120 S LEIPZIG AVE,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_352_7,-74.4916032,39.43058514,100 S LEIPZIG AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_352_8.01,-74.50311582,39.43276492,613 HERSCHEL ST,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_352_8.02,-74.50448345,39.42819863,605 HERSCHEL ST,GALLOWAY TWP,16,1992,2,RES1,3001 -0111_353_2,-74.804701,39.6296585,24 N VIENNA AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_353_5.01,-74.86489734,39.59141486,820 LIEBIG ST,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_353_5.02,-74.81223633,39.6426105,814 LIEBIG ST,GALLOWAY TWP,16,1996,1,GOV1,3004 -0111_353_5.03,-74.38145151,39.39992317,801 W MOSS MILL RD,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_354_1,-74.49488303,39.34203467,705 W MOSS MILL RD,GALLOWAY TWP,17,1962,1,GOV1,3004 -0111_355.01_1,-74.5926432,39.43129397,100 N VIENNA AVE,GALLOWAY TWP,16,1950,1,GOV1,3004 -0111_355.01_10,-74.5788715,39.5180655,125 N COLOGNE AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_355.01_11.01,-74.59941133,39.41872851,133 N COLOGNE AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_355.01_2,-74.3646,39.415664,835 LIEBIG ST,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_355.01_3,-74.52484092,39.31347164,831 LIEBIG ST,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_355.01_4,-74.647969,39.398175,825 LIEBIG ST,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_355.01_5.01,-74.50468347,39.42998116,108 N VIENNA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_355.01_6,-74.592733,39.42990643,118 N VIENNA AVE,GALLOWAY TWP,16,1895,1,RES1,3001 -0111_355.01_7,-74.6834625,39.4143975,824 INDIAN CABIN RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_355.01_8.01,-74.6047495,39.3272535,819 LIEBIG ST,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_355.01_8.02,-74.502644,39.4287935,815 LIEBIG ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_355.01_8.03,-74.66170588,39.49397313,103 N COLOGNE AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_355.01_8.04,-74.646189,39.4306905,109 N COLOGNE AVE,GALLOWAY TWP,16,1989,2,RES1,3001 -0111_355.01_9.01,-74.60360049,39.50109617,117 N COLOGNE AVE,GALLOWAY TWP,16,1991,1,RES1,3002 -0111_355.01_9.02,-74.94089729,39.50052738,121 N COLOGNE AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_355.02_1,-74.7320628,39.46275629,837 INDIAN CABIN RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_355.02_2,-74.76161684,39.63355282,829 INDIAN CABIN RD,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_355.02_3.01,-74.89899917,39.50328001,142 N VIENNA AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_355.02_3.02,-74.6039815,39.32944,148 N VIENNA AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_355.02_3.03,-74.871419,39.455498,146 N VIENNA AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_355.02_3.04,-74.521405,39.3997895,150 N VIENNA AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_355.02_4.01,-74.94550838,39.52449532,158 N VIENNA AVE,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_355.02_4.02,-74.60428909,39.35021979,162 N VIENNA AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_355.02_5,-74.3830605,39.3928485,174 N VIENNA AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_355.02_6.01,-74.9095195,39.515161,803 INDIAN CABIN RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_355.02_6.02,-74.50798561,39.45087473,813 INDIAN CABIN RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_355.02_6.03,-74.51708843,39.32268944,821 INDIAN CABIN RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_356_2,-74.485481,39.34981506,BLAINE ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_365_1,-74.806006,39.431,147 N COLOGNE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_367_1,-74.6029525,39.4315405,157 N COLOGNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_374_1,-74.4937625,39.461499,722 W MOSS MILL RD,GALLOWAY TWP,16,1922,1,RES1,3001 -0111_375.01_1,-74.926552,39.534435,106 N COLOGNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_375.01_10,-74.52660134,39.31379182,713 W MOSS MILL RD,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_375.01_11.01,-74.55824369,39.47213429,707 W MOSS MILL RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_375.01_11.02,-74.5604873,39.36412228,105 N LEIPZIG AVE,GALLOWAY TWP,16,1976,2,RES1,3001 -0111_375.01_11.03,-74.92089414,39.48862574,111 N LEIPZIG AVE,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_375.01_12.01,-74.55164049,39.35947077,115 N LEIPZIG AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_375.01_12.02,-74.60141966,39.36328478,117 N LEIPZIG AVE,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_375.01_12.03,-74.56111965,39.38839104,123 N LEIPZIG AVE,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_375.01_12.04,-74.58425871,39.34234131,119 N LEIPZIG AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_375.01_13,-74.51150366,39.32615146,129 N LEIPZIG AVE,GALLOWAY TWP,16,1900,2,RES1,3001 -0111_375.01_14,-74.453678,39.4977785,135 N LEIPZIG AVE,GALLOWAY TWP,,0,1,COM3,3004 -0111_375.01_2,-74.73167294,39.45531429,733 LIEBIG ST,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_375.01_3.01,-74.75610672,39.44875095,723 W MOSS MILL RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_375.01_3.02,-74.489988,39.4481565,727 W MOSS MILL RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_375.01_4,-74.7795005,39.6350735,116 N COLOGNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_395_1,-74.46234805,39.49919212,6 S LEIPZIG AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_395_3,-74.46349981,39.35510136,25 S PRAGUE AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_395_4.02,-74.53282165,39.49825581,7 S PRAGUE AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_395_4.03,-74.54232487,39.37631998,15 S PRAGUE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_395_5,-74.7344755,39.4400635,1 S PRAGUE AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_396_10,-74.61412444,39.48689397,626 PESTALOZZI ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_396_13.01,-74.57296482,39.36653799,601 W MOSS MILL RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_396_15,-74.50637716,39.3390202,121 N PRAGUE AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_396_16,-74.63458204,39.48212816,135 N PRAGUE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_396_2,-74.613387,39.440865,122 N LEIPZIG AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_396_4,-74.9416655,39.5283515,140 N LEIPZIG AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_396_5,-74.78508008,39.636182,142 N LEIPZIG AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_396_6,-74.505626,39.3288665,144 N LEIPZIG AVE,GALLOWAY TWP,14,1930,1,RES1,3001 -0111_396_7,-74.61041372,39.323458,146 N LEIPZIG AVE,GALLOWAY TWP,16,1970,2,GOV1,3004 -0111_396_8,-74.4443295,39.3744515,152 N LEIPZIG AVE,GALLOWAY TWP,16,1976,2,RES1,3001 -0111_396_9,-74.681885,39.376916,158 N LEIPZIG AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_397_1,-74.626711,39.504592,214 N VIENNA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_398_1,-74.50260067,39.4646605,218 N VIENNA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_409_10.01,-74.453561,39.3728775,241 N COLOGNE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_409_10.02,-74.816542,39.470111,247 N COLOGNE AVE,GALLOWAY TWP,16,1980,1,REL1,3004 -0111_409_10.03,-74.56839919,39.35207693,249 N COLOGNE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_409_10.04,-74.52741538,39.40309568,243 N COLOGNE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_409_3,-74.60619937,39.38578003,242 N VIENNA AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_409_4,-74.4845035,39.345328,834 SHILLER ST,GALLOWAY TWP,17,2007,1,RES1,3001 -0111_409_5,-74.61186601,39.48666387,807 PESTALOZZI ST,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_409_6,-74.77448928,39.63584132,203 N COLOGNE AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_409_7.01,-74.37498826,39.41147724,207 N COLOGNE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_409_7.02,-74.50170153,39.43498216,811 PESTALOZZI ST,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_409_7.03,-74.76532834,39.63566302,211 N COLOGNE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_409_8.01,-74.5170905,39.4017525,215 N COLOGNE AVE,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_409_8.02,-74.45969268,39.35107811,221 N COLOGNE AVE,GALLOWAY TWP,16,1988,2,RES1,3001 -0111_409_8.03,-74.7054163,39.48079332,223 N COLOGNE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_412_1,-74.49888742,39.33227834,208 N COLOGNE AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_413_1,-74.62507271,39.41610381,210 N COLOGNE AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_415_1,-74.95210882,39.5193636,218 N COLOGNE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_422_1,-74.641823,39.374846,230 N COLOGNE AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_424_1,-74.522191,39.3199125,238 N COLOGNE AVE,GALLOWAY TWP,17,2004,1,GOV1,3004 -0111_428_1,-74.5346155,39.383617,222 N COLOGNE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_428_10.01,-74.794453,39.43455483,231 N LEIPZIG AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_428_10.02,-74.90455914,39.49033553,235 N LEIPZIG AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_428_11.01,-74.9742845,39.5130265,247 N LEIPZIG AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_428_11.02,-74.63898239,39.34487088,243 N LEIPZIG AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_428_11.03,-74.53766779,39.3826118,251 N LEIPZIG AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_428_12,-74.4078765,39.3824755,269 N LEIPZIG AVE,GALLOWAY TWP,16,1956,1,GOV1,3004 -0111_428_13,-74.59209228,39.50618968,271 N LEIPZIG AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_428_2,-74.4670655,39.345837,224 N COLOGNE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_428_3,-74.6236379,39.3826201,226 N COLOGNE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_428_4,-74.374945,39.410524,228 N COLOGNE AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_428_5,-74.50625391,39.327065,260 N COLOGNE AVE,GALLOWAY TWP,16,1967,1,REL1,3004 -0111_428_6.02,-74.47483432,39.48368092,268 N COLOGNE AVE,GALLOWAY TWP,16,2008,1,GOV1,3004 -0111_428_7,-74.59948384,39.36704112,276 N COLOGNE AVE,GALLOWAY TWP,17,1988,1,RES1,3001 -0111_428_8,-74.395994,39.3866795,207 N LEIPZIG AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_428_9.01,-74.56521111,39.37290585,221 N LEIPZIG AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_428_9.02,-74.7146685,39.469991,225 N LEIPZIG AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_428_9.04,-74.56255039,39.36171969,229 N LEIPZIG AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_429_1,-74.797548,39.6331975,200 N LEIPZIG AVE,GALLOWAY TWP,16,1935,5,RES1,3001 -0111_429_10.01,-74.75010531,39.44577649,617 PESTALOZZI ST,GALLOWAY TWP,16,1979,1,COM3,3004 -0111_429_10.02,-74.8782535,39.497631,613 PESTALOZZI ST,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_429_11.01,-74.650834,39.527382,607 PESTALOZZI ST,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_429_11.02,-74.530306,39.385052,603 PESTALOZZI ST,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_429_16.01,-74.93193079,39.48353675,610 SHILLER ST,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_429_16.02,-74.49124251,39.33249723,604 SHILLER ST,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_429_16.03,-74.8860605,39.5954105,600 SHILLER ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_429_2.01,-74.46235789,39.35795733,204 N LEIPZIG AVE,GALLOWAY TWP,16,1985,2,RES1,3001 -0111_429_2.02,-74.5358715,39.37316,LEIPZIG AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_429_3,-74.46402359,39.49253338,LEIPZIG AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_429_5.01,-74.37458592,39.40989177,248 N LEIPZIG AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_429_5.02,-74.6474205,39.553321,250 N LEIPZIG AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_429_5.03,-74.505927,39.337427,254 N LEIPZIG AVE,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_429_6,-74.4136205,39.3714,260 N LEIPZIG AVE,GALLOWAY TWP,16,1953,2,RES1,3001 -0111_429_8,-74.84518625,39.44506056,266 N LEIPZIG AVE,GALLOWAY TWP,16,1958,2,GOV1,3004 -0111_429_9,-74.45139175,39.49565577,286 N LEIPZIG AVE,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_430_1,-74.5364491,39.38448563,829 SHILLER ST,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_430_11,-74.66349489,39.45556039,301 N COLOGNE AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_430_12,-74.52470402,39.38513557,305 N COLOGNE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_430_13,-74.4144845,39.371069,311 N COLOGNE AVE,GALLOWAY TWP,16,1997,1,GOV1,3004 -0111_430_14,-74.64322169,39.4358256,313 N COLOGNE AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_430_18.01,-74.59742371,39.41790724,716 CLARKS LANDING RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_430_20,-74.9162255,39.50367,826 CLARKS LANDING RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_430_24,-74.457872,39.494607,756 CLARKS LANDING RD,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_430_25,-74.6515805,39.354582,728 CLARKS LANDING RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_430_27,-74.5585155,39.3971025,320 N COLOGNE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_430_30,-74.6327955,39.541057,309 N LEIPZIG AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_430_31.01,-74.68129,39.446237,313 N LEIPZIG AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_430_31.02,-74.50310008,39.43108947,317 N LEIPZIG AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_430_31.03,-74.4951955,39.3340235,321 N LEIPZIG AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_430_32.01,-74.52565088,39.31691476,325 N LEIPZIG AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_430_32.02,-74.5667895,39.3577135,329 N LEIPZIG AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_430_33,-74.73466614,39.46460232,341 N LEIPZIG AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_430_6,-74.78647167,39.60988399,VIENNA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_430_8.02,-74.37189687,39.40373119,852 CLARKS LANDING RD,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_430_9,-74.5153152,39.39372418,842 CLARKS LANDING RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_431_1.01,-74.426162,39.35825633,627 SHILLER ST,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_431_1.02,-74.47732902,39.34131667,302 N LEIPZIG AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_431_1.03,-74.517942,39.4841425,306 N LEIPZIG AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_431_11,-74.56579279,39.3526681,634 CLARKS LANDING RD,GALLOWAY TWP,16,1974,2,RES1,3001 -0111_431_12.01,-74.85753989,39.61151719,305 N PRAGUE AVE,GALLOWAY TWP,16,1975,2,RES1,3001 -0111_431_12.02,-74.8290455,39.622956,619 SHILLER ST,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_431_12.03,-74.8152635,39.6349875,623 SHILLER ST,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_431_12.04,-74.45832286,39.47268905,613 SHILLER ST,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_431_12.05,-74.815612,39.6563875,307 N PRAGUE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_431_13,-74.8465078,39.60692016,315 N PRAGUE AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_431_16,-74.68539114,39.41533917,622 CLARKS LANDING RD,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_431_2.01,-74.4914305,39.4351515,312 N LEIPZIG AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_431_2.02,-74.6876085,39.3592415,316 N LEIPZIG AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_431_2.03,-74.59668001,39.31586591,320 N LEIPZIG AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_431_3,-74.71369761,39.4055878,330 N LEIPZIG AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_431_4,-74.51197734,39.326224,332 N LEIPZIG AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_431_5,-74.6492418,39.59704929,334 N LEIPZIG AVE,GALLOWAY TWP,16,1998,1,GOV1,3004 -0111_431_6,-74.776456,39.594803,340 N LEIPZIG AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_431_7.01,-74.52325474,39.47060033,346 N LEIPZIG AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_431_7.02,-74.75249828,39.44857854,354 N LEIPZIG AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_431_7.03,-74.48383317,39.33941345,356 N LEIPZIG AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_431_8,-74.913261,39.5139795,352 N LEIPZIG AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_431_9,-74.51779756,39.40200481,650 CLARKS LANDING RD,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_433_1,-74.49286037,39.41937218,CLARKS LANDING RD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_433_3,-74.7172735,39.5864845,CLARKS LANDING RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_433_4,-74.85542898,39.5629105,601 CLARKS LANDING RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_434_11,-74.570553,39.3555405,807 CLARKS LANDING RD,GALLOWAY TWP,16,1700,1,RES1,3001 -0111_434_12,-74.72638083,39.453612,741 CLARKS LANDING RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_434_13,-74.52307163,39.44922232,729 CLARKS LANDING RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_434_3.03,-74.413018,39.3692165,853 CLARKS LANDING RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_434_4,-74.37463528,39.39808385,849 CLARKS LANDING RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_434_6,-74.7799597,39.67096263,843 CLARKS LANDING RD,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_434_8,-74.37374476,39.40326836,831 CLARKS LANDING RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_452.01_1.38,-74.59171044,39.42871402,658 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_1.39,-74.48082396,39.34131562,660 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_1.40,-74.54105112,39.39223932,662 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_1.41,-74.8254895,39.467378,664 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_1.42,-74.60099288,39.37348444,666 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_1.43,-74.81769328,39.63694034,668 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_452.01_1.44,-74.62315564,39.46058476,670 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_452.01_1.45,-74.63958412,39.52880386,672 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_452.01_1.46,-74.80170516,39.64340502,674 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.01_1.47,-74.95006019,39.52100596,676 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.01_1.48,-74.63360716,39.3175984,678 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.01_1.49,-74.51598134,39.32930428,680 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.01_1.50,-74.63881671,39.53267952,682 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_452.01_1.51,-74.47577455,39.44490715,684 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_452.01_1.52,-74.58022239,39.31121121,686 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.01_1.53,-74.59902518,39.31355106,688 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.01_1.54,-74.60151341,39.36611075,690 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_2,-74.67683186,39.38675661,COUNTRY CLUB DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_452.01_3.02,-74.40164358,39.38518779,601 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,GOV1,3004 -0111_452.01_3.03,-74.58190412,39.32588122,603 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.04,-74.58338722,39.33093025,605 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.01_3.05,-74.55396421,39.46937653,607 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.01_3.06,-74.60028591,39.41745319,609 COUNTRY CLUB DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_452.01_3.07,-74.950274,39.518833,611 COUNTRY CLUB DR,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_452.01_3.08,-74.36133105,39.41660466,613 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.01_3.09,-74.4801372,39.35233364,615 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.01_3.10,-74.6465535,39.5320355,617 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.01_3.11,-74.3786815,39.3975465,619 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.01_3.12,-74.80184547,39.63472217,621 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.01_3.13,-74.8906935,39.498509,623 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.01_3.14,-74.711352,39.471212,625 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_452.01_3.15,-74.87656798,39.59657234,627 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.01_3.16,-74.63704169,39.43214054,629 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,GOV1,3004 -0111_452.01_3.17,-74.8129485,39.64648,631 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.01_3.18,-74.756718,39.4298205,633 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_452.01_3.19,-74.8087777,39.37968671,635 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.01_3.20,-74.51379336,39.32318996,637 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.01_3.21,-74.9132395,39.524953,639 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.01_3.22,-74.54738666,39.37275654,641 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.01_3.23,-74.65173104,39.51395556,643 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,GOV1,3004 -0111_452.01_3.24,-74.50634313,39.33627163,645 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.01_3.25,-74.6627995,39.3463,647 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.01_3.26,-74.4888265,39.4385505,649 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.01_3.27,-74.6257015,39.3823605,651 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_3.28,-74.53826795,39.4629739,653 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.29,-74.79844884,39.60032502,655 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.30,-74.497729,39.3346975,657 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.31,-74.53212628,39.46012137,659 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.32,-74.689075,39.446303,661 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_452.01_3.33,-74.70457992,39.57109474,663 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.34,-74.953674,39.4970525,665 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_452.01_3.35,-74.54801485,39.37847952,667 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.36,-74.72335192,39.57047785,669 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.37,-74.4496505,39.382096,671 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.38,-74.68112234,39.50350652,673 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_452.01_3.39,-74.74981982,39.44666472,675 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.40,-74.89084282,39.55980178,677 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.41,-74.5954612,39.43444809,679 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_3.42,-74.48789025,39.43892015,681 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,COM3,3004 -0111_452.01_3.43,-74.49972734,39.328477,683 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_3.44,-74.63913819,39.41276575,685 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.45,-74.5922515,39.334898,687 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_3.46,-74.69551641,39.63083277,689 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.47,-74.59896895,39.43628216,691 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_452.01_3.48,-74.62191016,39.51220453,693 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.01_3.49,-74.37581016,39.41352411,695 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.01_3.50,-74.4975295,39.49789283,697 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES3A,3001 -0111_452.01_3.51,-74.5371625,39.3819895,699 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.02_2,-74.5739495,39.5243485,550 COUNTRY CLUB DR,GALLOWAY TWP,,1993,1,RES1,3001 -0111_452.02_4.01,-74.51485894,39.45548867,BALLY BUNION DR,GALLOWAY TWP,,2001,1,RES1,3001 -0111_452.02_4.02,-74.57766229,39.35395871,694 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.02_4.03,-74.7336215,39.450267,692 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.02_4.04,-74.77540823,39.62596235,690 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_452.02_4.05,-74.63676982,39.5291458,688 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.02_4.06,-74.60970564,39.37560373,686 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.02_4.07,-74.49530263,39.33642654,684 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.02_4.08,-74.58868685,39.41438159,682 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.02_4.09,-74.51447431,39.43883913,680 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.02_4.11,-74.57466035,39.42933314,676 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_452.02_4.12,-74.566682,39.3685105,674 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.02_4.13,-74.64448399,39.53217617,672 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,COM1,3004 -0111_452.02_4.14,-74.93011866,39.5215135,670 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_452.02_4.15,-74.89476873,39.54051646,668 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.02_4.16,-74.52136832,39.38204907,666 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.02_4.17,-74.74473779,39.45229968,664 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.02_4.18,-74.51215471,39.40742389,662 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3004 -0111_452.02_4.19,-74.359665,39.4138225,660 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,RES1,3004 -0111_452.02_4.21,-74.6996218,39.63317222,656 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,GOV1,3004 -0111_452.02_4.22,-74.84647,39.411195,654 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.02_4.23,-74.7257325,39.460168,652 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.02_4.24,-74.35820166,39.41205952,650 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.02_4.25,-74.51161584,39.32918304,648 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.02_4.26,-74.43198541,39.36981419,646 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.02_4.27,-74.59141623,39.37620212,644 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.02_5,-74.59472909,39.36947484,TILTON RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_452.03_3.02,-74.50403865,39.50349135,653 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_452.03_3.03,-74.37779419,39.39713077,655 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.03_3.04,-74.51158899,39.40256017,657 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.03_3.05,-74.62792804,39.41791031,659 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.03_3.06,-74.49481677,39.33844439,661 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.03_3.07,-74.59949552,39.39041783,663 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.03_3.08,-74.52467707,39.31917366,665 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.03_3.09,-74.88387683,39.48411802,667 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.03_3.10,-74.528169,39.457542,669 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_452.03_3.11,-74.529719,39.3099135,671 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.03_3.12,-74.59152977,39.35039912,673 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3004 -0111_452.03_3.13,-74.48954442,39.33440683,675 COUNTRY CLUB DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_452.03_3.14,-74.72875441,39.45881593,677 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3002 -0111_452.03_3.15,-74.61434088,39.48637665,679 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.03_3.16,-74.6530125,39.3578845,681 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.03_3.17,-74.94237,39.4990915,683 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.03_3.18,-74.7998605,39.6298895,685 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.03_3.19,-74.632285,39.349919,687 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.03_3.20,-74.53849119,39.37925232,689 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.03_3.21,-74.491509,39.497471,691 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.03_3.22,-74.605818,39.5018,693 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.03_3.23,-74.59972893,39.43611119,698 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.24,-74.37541566,39.40017593,696 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.25,-74.82583669,39.40121035,694 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.26,-74.8236485,39.4434845,692 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.27,-74.62685928,39.43476947,690 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.28,-74.430716,39.3751375,688 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.29,-74.583546,39.4322095,686 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.30,-74.63877257,39.52770415,684 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.31,-74.48659568,39.34945746,682 JUPITER HILLS LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.03_3.32,-74.69150576,39.44911207,680 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.33,-74.5163125,39.395918,678 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_452.03_3.34,-74.6043675,39.31703183,676 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.35,-74.63923435,39.52907003,674 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.36,-74.46920566,39.48859476,682 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.03_3.37,-74.6230945,39.5489875,680 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.03_3.38,-74.49410658,39.49551307,660 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,IND2,3002 -0111_452.03_3.39,-74.46897963,39.45253419,658 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.03_3.40,-74.60829154,39.41823181,656 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.03_3.41,-74.62572036,39.35176857,654 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.03_3.42,-74.64124958,39.53289482,652 ST ANDREWS DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.03_3.43,-74.69341235,39.4467972,650 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.04_3.01,-74.749354,39.4506125,694 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.04_3.02,-74.5328255,39.4041915,692 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.04_3.03,-74.7489909,39.4519004,690 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_452.04_3.04,-74.64995613,39.40520882,688 ST ANDREWS DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.04_3.05,-74.5134205,39.4125945,683 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.04_3.06,-74.45281163,39.3752648,685 JUPITER HILLS LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.04_3.07,-74.642055,39.564136,687 JUPITER HILLS LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.05_1.24,-74.59523442,39.38260727,655 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,COM1,3004 -0111_452.05_1.25,-74.504207,39.479354,657 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,REL1,3003 -0111_452.05_1.26,-74.61235311,39.48855667,659 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.27,-74.493224,39.3312485,661 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.28,-74.5977875,39.373981,663 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES2,3005 -0111_452.05_1.29,-74.49827158,39.33631368,665 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.30,-74.5201235,39.317398,667 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.31,-74.5205895,39.321831,669 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.32,-74.54766869,39.47297215,671 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.05_1.33,-74.58633123,39.42623458,673 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.34,-74.37201541,39.40688484,675 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.35,-74.57067609,39.41368142,677 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,IND2,3002 -0111_452.05_1.36,-74.82826783,39.625785,679 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.37,-74.58359724,39.36746947,681 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.05_1.38,-74.61216267,39.36784466,683 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.05_1.39,-74.3697275,39.4068145,685 CYPRESS POINT DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.05_1.40,-74.94755786,39.52309091,687 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,COM1,3004 -0111_452.05_1.41,-74.81102656,39.64008934,689 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.42,-74.6142215,39.3514295,691 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_452.05_1.43,-74.4614975,39.4923705,693 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.44,-74.59617703,39.42955485,695 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.45,-74.8853115,39.502376,697 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.05_1.46,-74.571633,39.3554285,699 CYPRESS POINT DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_452.06_4.01,-74.48863747,39.49759457,526 TILTON RD,GALLOWAY TWP,,1999,1,GOV1,3004 -0111_452.06_4.02,-74.77929895,39.62561017,TILTON RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_452.06_4.03,-74.63939107,39.36129579,539 COUNTRY CLUB DR,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_452.06_4.04,-74.7904745,39.63319,537 COUNTRY CLUB DR,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_452.06_4.05,-74.4849375,39.429232,535 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.06_4.06,-74.50746246,39.43112684,533 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.06_4.07,-74.54065869,39.37574903,531 COUNTRY CLUB DR,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_452.06_4.08,-74.47852402,39.34582285,529 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.06_4.09,-74.5016825,39.4118165,527 COUNTRY CLUB DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_452.06_4.11,-74.528918,39.511771,523 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.06_4.12,-74.46937878,39.50688935,521 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.06_4.13,-74.4794875,39.3472765,519 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.06_4.14,-74.64587531,39.5356658,517 COUNTRY CLUB DR,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_452.06_4.15,-74.78260028,39.60601881,515 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.06_4.16,-74.804995,39.6301215,513 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.06_4.17,-74.49514431,39.49179301,511 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,COM3,3004 -0111_452.06_4.18,-74.497818,39.331029,509 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.06_4.19,-74.48966358,39.49695121,507 COUNTRY CLUB DR,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_452.06_4.21,-74.80477793,39.63779535,503 COUNTRY CLUB DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_452.06_4.22,-74.550078,39.463197,501 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.06_4.28,-74.69979918,39.35285319,524 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_452.06_4.29,-74.531218,39.386062,522 COUNTRY CLUB DR,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_452.06_4.31,-74.5077326,39.32896766,518 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.06_4.32,-74.506647,39.493333,516 COUNTRY CLUB DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_452.06_4.33,-74.44349497,39.37234582,514 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_452.06_4.34,-74.50696868,39.33450979,512 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.06_4.35,-74.49292608,39.33364555,510 COUNTRY CLUB DR,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_452.06_4.36,-74.462541,39.5361785,508 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,COM8,3004 -0111_452.06_4.37,-74.63299906,39.42975073,506 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.06_4.38,-74.6237145,39.358144,504 COUNTRY CLUB DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_452.06_4.39,-74.62058825,39.38776686,502 COUNTRY CLUB DR,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_452.06_6,-74.5129915,39.3245535,528 TILTON RD,GALLOWAY TWP,,1994,1,RES1,3001 -0111_452.07_4.01,-74.57677953,39.38124982,TILTON RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_452.07_4.02,-74.5352125,39.3140585,499 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.03,-74.61923846,39.37774083,497 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.04,-74.48477868,39.47122516,495 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.05,-74.69790444,39.55860435,493 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.06,-74.50566356,39.32364766,491 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.07,-74.7776245,39.593267,489 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.08,-74.72444178,39.43416985,487 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.09,-74.60983576,39.44186121,485 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.11,-74.79833502,39.63349716,481 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.12,-74.603361,39.329644,479 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.13,-74.53576558,39.45820828,477 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.14,-74.57817232,39.33055907,475 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.15,-74.967133,39.511979,473 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.16,-74.49238532,39.33921254,471 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.17,-74.43246318,39.36483054,469 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,REL1,3004 -0111_452.07_4.18,-74.87723668,39.59567266,467 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.21,-74.61582777,39.36383412,466 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.22,-74.79659916,39.63854587,468 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.23,-74.63704785,39.52651196,470 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.24,-74.48754803,39.42339332,472 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.25,-74.8656505,39.4969,474 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.26,-74.48625156,39.35215753,476 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.27,-74.56055334,39.51528611,478 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.28,-74.56751455,39.51383765,480 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.29,-74.598239,39.38119,482 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.31,-74.58750534,39.32607251,486 COUNTRY CLUB DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_452.07_4.32,-74.50244323,39.43362813,488 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,REL1,3004 -0111_452.07_4.33,-74.637639,39.435448,490 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.34,-74.93502475,39.53163445,492 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.35,-74.5946845,39.3413335,494 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.36,-74.5874265,39.43215117,496 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_452.07_4.37,-74.82092033,39.389964,498 COUNTRY CLUB DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_453_2,-74.5919885,39.376341,501 TILTON RD,GALLOWAY TWP,17,1999,1,GOV1,3004 -0111_455_24.01,-74.50861395,39.33088233,400 ALOE ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_455_24.02,-74.48788308,39.33589977,404 ALOE ST,GALLOWAY TWP,,1971,1,RES1,3001 -0111_455_24.03,-74.5620015,39.525459,410 ALOE ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_455_25,-74.40550121,39.3811561,501 S ODESSA AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_456_1,-74.59570767,39.341904,600 S ODESSA AVE,GALLOWAY TWP,,2000,1,RES1,3001 -0111_456_14,-74.47825769,39.34671065,571 S POMONA RD,GALLOWAY TWP,,1975,1,GOV1,3004 -0111_456_4,-74.45296299,39.48818517,525 S ODESSA AVE,GALLOWAY TWP,,2000,1,RES1,3001 -0111_457_1.02,-74.48373512,39.51837243,414 S PRAGUE AVE,GALLOWAY TWP,,1965,1,GOV1,3004 -0111_457_3.03,-74.4326263,39.36577215,411 ALOE ST,GALLOWAY TWP,,2004,1,RES1,3001 -0111_458_6,-74.49501217,39.3307965,311 ALOE ST,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_458_7,-74.358489,39.4118295,301 ALOE ST,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_459_10,-74.61828294,39.60144365,500 W WHITE HORSE PIKE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_459_11,-74.67943119,39.35372606,504 W WHITE HORSE PIKE,GALLOWAY TWP,,1957,4,RES1,3001 -0111_459_7,-74.88888856,39.47543736,514 W WHITE HORSE PIKE,GALLOWAY TWP,,1931,1,RES1,3001 -0111_459_8,-74.37676719,39.41373485,411 S MANNHEIM AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_459_9,-74.51921264,39.46391339,407 S MANNHEIM AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_460_3,-74.5384885,39.3878485,405 S ODESSA AVE,GALLOWAY TWP,16,1959,1,GOV1,3004 -0111_461_10,-74.5974395,39.3309475,401 S GENOA AVE,GALLOWAY TWP,,1930,1,RES1,3001 -0111_462_1,-74.51083877,39.33736652,531 W WHITE HORSE PIKE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_462_10,-74.72232546,39.46298343,WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_462_11,-74.57660928,39.40936025,513 W WHITE HORSE PIKE,GALLOWAY TWP,15,1930,1,RES1,3001 -0111_462_13,-74.51314565,39.44222346,361 S MANNHEIM AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_462_14,-74.88642015,39.59720282,357 S MANNHEIM AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_462_15,-74.49996893,39.33497483,353 S MANNHEIM AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_462_16,-74.45626074,39.47779475,347 S MANNHEIM AVE,GALLOWAY TWP,16,1916,1,RES1,3001 -0111_462_17,-74.68212009,39.41421682,341 S MANNHEIM AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_462_2,-74.75073853,39.60267417,527 W WHITE HORSE PIKE,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_462_20,-74.939674,39.522616,323 S MANNHEIM AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_462_8,-74.86988403,39.44287272,WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_462_9,-74.94749166,39.50479069,WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_463_1,-74.5882385,39.3358615,360 S MANNHEIM AVE,GALLOWAY TWP,17,1977,1,RES1,3001 -0111_467.01_2,-74.4304955,39.3685975,405 W WHITE HORSE PIKE,GALLOWAY TWP,16,1936,2,RES1,3001 -0111_467.01_4,-74.6482045,39.535531,401 W WHITE HORSE PIKE,GALLOWAY TWP,,1940,1,RES1,3001 -0111_467.01_5,-74.60914295,39.39120367,375 S ODESSA AVE,GALLOWAY TWP,16,1945,1,GOV1,3004 -0111_467.01_6,-74.4843968,39.34735886,402 EMERICK AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_467.01_7,-74.5955415,39.323498,404 EMERICK AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_467.01_9,-74.41357932,39.36866127,356 KNIGHT AVE,GALLOWAY TWP,16,1929,1,RES1,3001 -0111_467.02_2,-74.83051591,39.64392855,352 KNIGHT AVE,GALLOWAY TWP,16,1927,1,RES1,3001 -0111_467.02_3,-74.530126,39.3844635,EMERICK AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_467.02_4.01,-74.80918792,39.46783217,403 EMERICK AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_467.02_4.02,-74.88428897,39.56139417,373 S ODESSA AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_467.02_5,-74.4546977,39.47030804,371 S ODESSA AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_467.02_7,-74.58829713,39.35002968,350 KNIGHT AVE,GALLOWAY TWP,16,1927,1,RES1,3001 -0111_467.03_1.01,-74.49522999,39.52386801,344 S MANNHEIM AVE,GALLOWAY TWP,16,1910,2,RES1,3001 -0111_467.03_1.03,-74.68037026,39.44420262,342 S MANNHEIM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_467.03_10,-74.9404115,39.5248505,413 EMERICK AVE,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_467.03_12,-74.83691153,39.59552243,353 KNIGHT AVE,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_467.03_13,-74.819838,39.4432705,351 KNIGHT AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_467.03_14,-74.553902,39.389393,410 BARTON AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_467.03_15,-74.60183763,39.38780102,412 BARTON AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_467.03_16,-74.53590582,39.3042272,414 BARTON AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_467.03_17.01,-74.471121,39.488399,419 W WHITE HORSE PIKE,GALLOWAY TWP,43,1928,4,RES1,3001 -0111_467.03_17.02,-74.61598979,39.33934242,415 W WHITE HORSE PIKE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_467.03_18,-74.45027629,39.35528616,423 BARTON AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_467.03_19,-74.57196423,39.35358107,365 S ODESSA AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_467.03_2.02,-74.4765295,39.443426,334 S MANNHEIM AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_467.03_2.03,-74.82114688,39.53153784,330 S MANNHEIM AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_467.03_2.04,-74.64282935,39.43446457,324 S MANNHEIM AVE,GALLOWAY TWP,16,1920,2,RES1,3001 -0111_467.03_25,-74.36605806,39.41508855,301 S ODESSA AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_467.03_27,-74.89290272,39.4794106,439 W WHITE HORSE PIKE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_467.03_29,-74.59478112,39.42763976,437 W WHITE HORSE PIKE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_467.03_30,-74.8740535,39.4424355,435 W WHITE HORSE PIKE,GALLOWAY TWP,16,1940,1,COM1,3004 -0111_467.03_31,-74.55527767,39.42657299,433 W WHITE HORSE PIKE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_467.03_34,-74.62071916,39.52326662,425 W WHITE HORSE PIKE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_467.03_36,-74.494899,39.472543,423 W WHITE HORSE PIKE,GALLOWAY TWP,16,1940,4,RES1,3001 -0111_467.03_37,-74.866229,39.4332745,366 S MANNHEIM AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_467.03_38,-74.59561929,39.34667569,368 S MANNHEIM AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_467.03_39,-74.8659655,39.4340785,364 S MANNHEIM AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_467.03_4,-74.7868265,39.6073015,422 DUERER ST,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_467.03_41,-74.5385185,39.3884275,417 VERA ST,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_467.03_6,-74.39021314,39.39381666,412 EMERICK AVE,GALLOWAY TWP,16,1927,1,RES1,3001 -0111_467.03_9,-74.486316,39.3338985,EMERICK AVE,GALLOWAY TWP,,0,1,COM3,3004 -0111_47_9,-74.50785144,39.34057033,620 SIMMS AVE,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_470_1,-74.62531461,39.38510919,341 W WHITE HORSE PIKE,GALLOWAY TWP,,1940,1,RES1,3001 -0111_470_10,-74.57152914,39.36543722,327 W WHITE HORSE PIKE,GALLOWAY TWP,,1925,1,RES1,3001 -0111_470_14,-74.611949,39.3259335,318 S ODESSA AVE,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_470_2,-74.60051461,39.33238197,376 S ODESSA AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_470_21,-74.60283917,39.32656558,325 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_470_3,-74.59125516,39.4303732,344 EMERICK AVE,GALLOWAY TWP,45,1940,2,RES1,3001 -0111_470_31.01,-74.63919834,39.53075902,GENOA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_470_31.02,-74.59769631,39.31499148,367 S GENOA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_470_32,-74.58664675,39.37918516,347 S GENOA AVE,GALLOWAY TWP,16,1950,3,RES1,3001 -0111_470_33,-74.5058535,39.4241245,329 S GENOA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_470_34,-74.6607765,39.5890675,323 S GENOA AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_470_35,-74.78297479,39.6332947,315 S GENOA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_470_36,-74.48433314,39.34558809,311 S GENOA AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_470_4.01,-74.5564955,39.3693275,374 S ODESSA AVE,GALLOWAY TWP,16,1949,1,RES1,3001 -0111_470_4.02,-74.48496284,39.4619358,372 S ODESSA AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_470_4.03,-74.63428323,39.3623001,343 EMERICK AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_470_4.04,-74.49552676,39.43481156,302 BARTON AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_470_5.01,-74.82461029,39.39865144,368 S ODESSA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_470_5.02,-74.52137633,39.38967504,366 S ODESSA AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_470_5.04,-74.82522196,39.63849608,301 BARTON AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_470_7,-74.56074155,39.37307247,337 W WHITE HORSE PIKE,GALLOWAY TWP,,1920,1,GOV1,3004 -0111_470_8,-74.7564713,39.35105251,333 W WHITE HORSE PIKE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_471_12.01,-74.599892,39.344411,215 S MANNHEIM AVE,GALLOWAY TWP,16,1992,2,GOV1,3004 -0111_471_2.01,-74.42312252,39.36692383,529 DUERER ST,GALLOWAY TWP,16,1938,2,RES1,3001 -0111_471_2.02,-74.513966,39.408982,525 DUERER ST,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_471_5,-74.43846872,39.37194209,536 HERSCHEL ST,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_471_6,-74.366691,39.4172915,532 HERSCHEL ST,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_471_7,-74.81008428,39.63091888,526 HERSCHEL ST,GALLOWAY TWP,16,1976,1,COM1,3004 -0111_471_8,-74.45641136,39.48992129,511 DUERER ST,GALLOWAY TWP,16,1918,1,RES1,3001 -0111_471_9,-74.60568905,39.41034045,267 S MANNHEIM AVE,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_472_12,-74.3807335,39.401053,249 S ODESSA AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_472_14.01,-74.516238,39.4674825,233 S ODESSA AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_472_14.02,-74.92716233,39.52815551,229 S ODESSA AVE,GALLOWAY TWP,17,2007,1,RES1,3001 -0111_472_14.03,-74.50635653,39.4544682,225 S ODESSA AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_472_15.01,-74.64424489,39.43256176,221 S ODESSA AVE,GALLOWAY TWP,18,2008,1,RES1,3001 -0111_472_15.02,-74.488241,39.4365605,219 S ODESSA AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_472_15.03,-74.60284175,39.37144596,215 S ODESSA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_472_16.01,-74.94320836,39.49130683,416 HERSCHEL ST,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_472_16.02,-74.4793669,39.34670033,410 HERSCHEL ST,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_472_17,-74.7196585,39.6394025,209 S ODESSA AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_472_18,-74.6027175,39.4069375,203 S ODESSA AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_472_2,-74.442506,39.485814,251 S ODESSA AVE,GALLOWAY TWP,16,1880,1,RES1,3001 -0111_472_3,-74.54334949,39.38946117,250 S MANNHEIM AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_472_5,-74.51041372,39.46530019,228 S MANNHEIM AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_472_6.01,-74.77413152,39.65879334,208 S MANNHEIM AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_472_6.02,-74.50757047,39.45973024,424 HERSCHEL ST,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_473_1,-74.45487766,39.352744,274 S ODESSA AVE,GALLOWAY TWP,16,1927,2,RES1,3001 -0111_473_10.01,-74.5710625,39.3520615,218 S ODESSA AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_473_10.02,-74.455245,39.498734,216 S ODESSA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_473_11.01,-74.66074086,39.51867253,212 S ODESSA AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_473_11.02,-74.66403619,39.39951739,210 S ODESSA AVE,GALLOWAY TWP,16,1932,1,RES1,3001 -0111_473_11.03,-74.93366384,39.52431199,204 S ODESSA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_473_13,-74.368969,39.4017475,305 DUERER ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_473_2.01,-74.82573567,39.4120365,266 S ODESSA AVE,GALLOWAY TWP,16,1988,1,COM1,3004 -0111_473_2.02,-74.94971421,39.51247045,264 S ODESSA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_473_4,-74.5993015,39.3154855,260 S ODESSA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_473_5,-74.9405835,39.5042695,254 S ODESSA AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_473_6.01,-74.3702275,39.4102355,248 S ODESSA AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_473_6.02,-74.6297657,39.41330916,244 S ODESSA AVE,GALLOWAY TWP,16,2011,1,RES1,3001 -0111_473_7,-74.61739368,39.36515234,242 S ODESSA AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_473_8,-74.7994084,39.36252447,230 S ODESSA AVE,GALLOWAY TWP,16,1910,1,GOV1,3004 -0111_473_9,-74.87810916,39.592048,222 S ODESSA AVE,GALLOWAY TWP,16,1979,1,RES3A,3001 -0111_474_10,-74.6373155,39.400405,153 S MANNHEIM AVE,GALLOWAY TWP,16,1978,1,GOV1,3004 -0111_474_11,-74.5209945,39.3194405,149 S MANNHEIM AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_474_12,-74.59355454,39.50833362,145 S MANNHEIM AVE,GALLOWAY TWP,16,1993,1,COM3,3004 -0111_474_13,-74.73038222,39.5791597,131 S MANNHEIM AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_474_2,-74.5883225,39.325041,158 S PRAGUE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_474_5,-74.84705977,39.60369919,128 S PRAGUE AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_474_6,-74.58952683,39.32962245,126 S PRAGUE AVE,GALLOWAY TWP,16,2009,1,RES6,3002 -0111_474_7.02,-74.56663951,39.35086885,534 LIEBIG ST,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_474_8.01,-74.48471254,39.34778517,517 HERSCHEL ST,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_474_8.02,-74.5621075,39.3915075,169 S MANNHEIM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_474_9.02,-74.61458657,39.31043401,159 S MANNHEIM AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_474_9.03,-74.5877795,39.52093667,155 S MANNHEIM AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_475_1.03,-74.78413797,39.6453058,427 HERSCHEL ST,GALLOWAY TWP,16,1980,2,RES1,3001 -0111_475_10,-74.51549268,39.40969171,114 S MANNHEIM AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_475_11.01,-74.41015607,39.38232943,108 S MANNHEIM AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_475_11.02,-74.4967175,39.333165,106 S MANNHEIM AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_475_11.03,-74.75516134,39.44626776,104 S MANNHEIM AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_475_11.04,-74.57270514,39.36002927,100 S MANNHEIM AVE,GALLOWAY TWP,16,2007,1,GOV1,3004 -0111_475_12,-74.45178914,39.35635625,177 S ODESSA AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_475_13.01,-74.8870845,39.4715075,421 HERSCHEL ST,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_475_13.02,-74.5247255,39.3838255,419 HERSCHEL ST,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_475_13.03,-74.498087,39.494528,175 S ODESSA AVE,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_475_14.03,-74.390519,39.388556,157 S ODESSA AVE,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_475_14.04,-74.63727,39.5356765,153 S ODESSA AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_475_15.01,-74.5013065,39.332095,151 S ODESSA AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_475_15.02,-74.605081,39.406266,149 S ODESSA AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_475_17,-74.80693214,39.64044257,135 S ODESSA AVE,GALLOWAY TWP,,1967,1,RES1,3001 -0111_475_18.01,-74.50295116,39.3270445,123 S ODESSA AVE,GALLOWAY TWP,16,1976,1,GOV1,3004 -0111_475_18.02,-74.91933471,39.49236202,127 S ODESSA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_475_19,-74.5861933,39.35537847,400 LIEBIG ST,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_475_2,-74.59911296,39.32034019,160 S MANNHEIM AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_475_3.01,-74.50312128,39.51717006,156 S MANNHEIM AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_475_3.02,-74.6285455,39.42178227,154 S MANNHEIM AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_475_4,-74.60045628,39.31731378,150 S MANNHEIM AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_475_5,-74.55208315,39.47841701,144 S MANNHEIM AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_475_7,-74.38655535,39.39762987,MANNHEIM AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_475_8,-74.604823,39.3687055,122 S MANNHEIM AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_476_1,-74.65028647,39.34014656,341 HERSCHEL ST,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_476_10,-74.44603421,39.48399152,128 S ODESSA AVE,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_476_11,-74.78958253,39.36753565,122 S ODESSA AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_476_12,-74.53120739,39.37980784,118 S ODESSA AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_476_15,-74.77912608,39.62193183,319 HERSCHEL ST,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_476_16.01,-74.51198507,39.32135022,175 S GENOA AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_476_16.02,-74.6286985,39.440045,169 S GENOA AVE,GALLOWAY TWP,16,1919,1,GOV1,3004 -0111_476_16.03,-74.799826,39.6554185,307 HERSCHEL ST,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_476_16.04,-74.50222418,39.33862319,315 HERSCHEL ST,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_476_17.01,-74.58882573,39.33341301,165 S GENOA AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_476_17.02,-74.60651628,39.47722753,159 S GENOA AVE,GALLOWAY TWP,16,1913,1,RES1,3001 -0111_476_17.03,-74.5659685,39.3687875,155 S GENOA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_476_17.04,-74.55196283,39.42648601,157 S GENOA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_476_18.01,-74.89071755,39.47534832,145 S GENOA AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_476_18.02,-74.60266297,39.32362488,153 S GENOA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_476_19,-74.517904,39.390053,135 S GENOA AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_476_21.01,-74.52660983,39.394095,127 S GENOA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_476_21.02,-74.55331822,39.37922837,121 S GENOA AVE,GALLOWAY TWP,16,1985,2,RES1,3001 -0111_476_21.04,-74.607187,39.42078,125 S GENOA AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_476_22,-74.89150434,39.5010274,318 LIEBIG ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_476_23,-74.9253305,39.5069195,316 LIEBIG ST,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_476_24,-74.459177,39.47443,105 S GENOA AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_476_3,-74.61887774,39.37631739,331 HERSCHEL ST,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_476_4,-74.63451887,39.5039124,325 HERSCHEL ST,GALLOWAY TWP,16,1972,2,RES1,3001 -0111_476_5.02,-74.91792327,39.49272924,168 S ODESSA AVE,GALLOWAY TWP,16,1967,1,RES3A,3001 -0111_476_6,-74.63831623,39.3614284,162 S ODESSA AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_476_7.01,-74.48098411,39.43075296,158 S ODESSA AVE,GALLOWAY TWP,16,1905,1,RES1,3001 -0111_476_7.02,-74.7252437,39.44773395,154 S ODESSA AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_476_8.01,-74.51540537,39.32927684,144 S ODESSA AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_476_8.02,-74.6245525,39.364263,140 S ODESSA AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_476_9,-74.48584452,39.43497839,132-134 S ODESSA AVE,GALLOWAY TWP,16,1964,2,RES1,3001 -0111_477_11,-74.6616315,39.4023765,510 W MOSS MILL RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_477_2,-74.55001879,39.359497,533 LIEBIG ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_477_3,-74.489456,39.3356115,523 LIEBIG ST,GALLOWAY TWP,16,1999,1,RES1,3004 -0111_477_4.01,-74.846312,39.48203,12 S PRAGUE AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_477_4.02,-74.59996839,39.43563592,10 S PRAGUE AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_477_5,-74.48360032,39.33834201,540 W MOSS MILL RD,GALLOWAY TWP,16,1900,1,RES1,3001 -0111_477_7,-74.604837,39.3590815,524 W MOSS MILL RD,GALLOWAY TWP,16,1977,2,RES1,3001 -0111_477_8,-74.60474062,39.3832624,35 S MANNHEIM AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_477_9,-74.5914145,39.379369,23 S MANNHEIM AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_478_60.01,-74.61020357,39.32611847,441 LIEBIG ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_478_60.02,-74.58155907,39.33310473,433 LIEBIG ST,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_478_61,-74.522003,39.424694,38 S MANNHEIM AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_478_62,-74.5122985,39.322384,24 S MANNHEIM AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_478_63,-74.4701005,39.344516,400 W MOSS MILL RD,GALLOWAY TWP,18,1949,1,RES1,3001 -0111_482_1,-74.58147028,39.37010357,29 S ODESSA AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_482_13,-74.37077031,39.4053474,57 S ODESSA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_487_1,-74.689184,39.586435,28 S ODESSA AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_487_49,-74.76168694,39.44518698,317 LIEBIG ST,GALLOWAY TWP,16,2016,1,RES1,3001 -0111_487_50.01,-74.53487908,39.47041729,305 LIEBIG ST,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_487_50.02,-74.64500268,39.32683605,301 LIEBIG ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_487_67.01,-74.49705,39.337024,24 S ODESSA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_487_67.03,-74.47903212,39.33659827,16 S ODESSA AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_487_67.04,-74.8162855,39.6246695,12 S ODESSA AVE,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_487_68.01,-74.71416665,39.58395148,340 W MOSS MILL RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_487_68.02,-74.7665615,39.3481085,330 W MOSS MILL RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_487_68.03,-74.90473071,39.52762979,328 W MOSS MILL RD,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_493_13,-74.50336197,39.52512524,300 W MOSS MILL RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_494_1,-74.502676,39.4328065,560 COLOGNE-PORT RD,GALLOWAY TWP,,1937,1,RES1,3001 -0111_494_10.01,-74.47973037,39.34650744,532 COLOGNE-PORT RD,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_494_10.02,-74.520612,39.31638566,123 N MANNHEIM AVE,GALLOWAY TWP,16,1905,1,RES1,3001 -0111_494_11,-74.6006965,39.314208,500 COLOGNE-PORT RD,GALLOWAY TWP,16,1955,1,RES1,3004 -0111_494_2,-74.4845415,39.3354465,556 COLOGNE-PORT RD,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_494_4,-74.49939453,39.44659487,554 COLOGNE-PORT RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_494_5,-74.70459,39.4191415,536 COLOGNE-PORT RD,GALLOWAY TWP,15,1949,1,RES1,3001 -0111_494_7,-74.6256435,39.425498,538 COLOGNE-PORT RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_494_8,-74.5531875,39.425936,521 W MOSS MILL RD,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_495.02_1,-74.55414413,39.43560727,435 W MOSS MILL RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_495.02_3,-74.75488488,39.35887523,128 N MANNHEIM AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_495.02_4,-74.82005838,39.37245782,132 N MANNHEIM AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_495.02_5,-74.7105991,39.56780664,MOSS MILL RD,GALLOWAY TWP,,0,1,COM1,3004 -0111_495.02_7,-74.6063435,39.33158,123 N ODESSA AVE,GALLOWAY TWP,16,1951,1,RES3B,3001 -0111_495.02_8,-74.39506933,39.39247532,422 PESTALOZZI ST,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_496_1,-74.58965,39.425343,335 W MOSS MILL RD,GALLOWAY TWP,17,1990,1,RES1,3001 -0111_496_2,-74.58587739,39.42278456,325 W MOSS MILL RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_496_3,-74.46474049,39.49582666,122 N ODESSA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_496_5,-74.6558445,39.403716,301 W MOSS MILL RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_497_1,-74.56683988,39.54040097,100 N PRAGUE AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_497_2,-74.39507034,39.38751947,555 COLOGNE-PORT RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_497_3,-74.86417735,39.56672764,116 N PRAGUE AVE,GALLOWAY TWP,16,1896,1,RES1,3004 -0111_497_4.01,-74.495371,39.3346955,535 COLOGNE-PORT RD,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_497_4.02,-74.62333169,39.37966207,132 N PRAGUE AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_497_5.01,-74.6260585,39.4176495,138 N PRAGUE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_497_5.02,-74.945552,39.5330235,522 PESTALOZZI ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_497_5.04,-74.640102,39.5338095,536 PESTALOZZI ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_497_6,-74.600673,39.332188,533 COLOGNE-PORT RD,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_497_7.01,-74.59277292,39.4282967,512 PESTALOZZI ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_497_7.02,-74.57219833,39.42926307,501 COLOGNE-PORT RD,GALLOWAY TWP,15,1925,1,REL1,3002 -0111_498_1.01,-74.539507,39.385833,535 PESTALOZZI ST,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_498_1.02,-74.818997,39.6194645,529 PESTALOZZI ST,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_498_1.04,-74.6003707,39.32061041,523 PESTALOZZI ST,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_498_10,-74.9254725,39.525322,245 N MANNHEIM AVE,GALLOWAY TWP,,2019,1,RES1,3001 -0111_498_11.01,-74.799592,39.6537675,257 N MANNHEIM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_498_11.02,-74.48665328,39.47879774,263 N MANNHEIM AVE,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_498_11.03,-74.48692913,39.49509764,267 N MANNHEIM AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_498_11.04,-74.67276978,39.36716553,259 N MANNHEIM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_498_12.01,-74.7864855,39.309594,269 N MANNHEIM AVE,GALLOWAY TWP,16,2006,1,RES3A,3001 -0111_498_12.02,-74.58404989,39.47424814,271 N MANNHEIM AVE,GALLOWAY TWP,16,2005,1,COM1,3004 -0111_498_12.03,-74.66389336,39.45521639,273 N MANNHEIM AVE,GALLOWAY TWP,16,2006,1,RES1,3004 -0111_498_12.04,-74.37145711,39.40570868,275 N MANNHEIM AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_498_3,-74.613846,39.322815,232 N PRAGUE AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_498_7.01,-74.40801098,39.37996234,201 N MANNHEIM AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_498_7.02,-74.78037764,39.5124823,515 PESTALOZZI ST,GALLOWAY TWP,16,2014,1,GOV1,3004 -0111_498_7.03,-74.47522392,39.48597267,519 PESTALOZZI ST,GALLOWAY TWP,17,2014,1,GOV1,3004 -0111_498_8.03,-74.734895,39.5860105,223 N MANNHEIM AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_498_9.01,-74.3814421,39.39629583,229 N MANNHEIM AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_498_9.02,-74.69453434,39.49322198,233 N MANNHEIM AVE,GALLOWAY TWP,16,1993,1,RES3A,3001 -0111_498_9.04,-74.62825585,39.37288834,241 N MANNHEIM AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_499_1,-74.4472072,39.37078403,206 N MANNHEIM AVE,GALLOWAY TWP,16,1917,2,RES3A,3004 -0111_499_10.01,-74.5004185,39.4323875,266 N MANNHEIM AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_499_10.02,-74.52520551,39.39070233,272 N MANNHEIM AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_499_10.03,-74.4244865,39.3657055,276 N MANNHEIM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_499_10.04,-74.49634922,39.4995191,264 N MANNHEIM AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_499_12.01,-74.88729787,39.47129021,405 COLOGNE-PORT RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_499_12.02,-74.7166625,39.4066055,401 COLOGNE-PORT RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_499_12.03,-74.615001,39.324816,201 N ODESSA AVE,GALLOWAY TWP,,1986,1,RES1,3001 -0111_499_13,-74.63063021,39.40802719,211 N ODESSA AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_499_14.01,-74.72759984,39.44951796,213 N ODESSA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_499_14.03,-74.64400005,39.52983234,219 N ODESSA AVE,GALLOWAY TWP,16,1886,1,RES1,3001 -0111_499_15.01,-74.57750368,39.35201557,231 N ODESSA AVE,GALLOWAY TWP,16,1897,1,RES1,3001 -0111_499_15.02,-74.4984733,39.497698,235 N ODESSA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_499_15.03,-74.61158103,39.33993066,229 N ODESSA AVE,GALLOWAY TWP,17,1999,1,RES1,3001 -0111_499_16.01,-74.49153483,39.41784618,237 N ODESSA AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_499_16.02,-74.55284913,39.37256362,241 N ODESSA AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_499_17,-74.42479583,39.35767631,247 N ODESSA AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_499_18.01,-74.75194504,39.47282839,253 N ODESSA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_499_18.02,-74.8639697,39.49449099,257 N ODESSA AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_499_18.03,-74.50055943,39.46759866,261 N ODESSA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_499_18.04,-74.88413814,39.56538685,255 N ODESSA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_499_2.02,-74.80421403,39.63789866,222 N MANNHEIM AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_499_3,-74.565797,39.3542445,230 N MANNHEIM AVE,GALLOWAY TWP,16,1981,1,RES3A,3001 -0111_499_4,-74.623617,39.622495,236 N MANNHEIM AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_499_5,-74.5987235,39.3646545,242 N MANNHEIM AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_499_6,-74.61617181,39.43036144,248 N MANNHEIM AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_499_7,-74.49591364,39.4497203,252 N MANNHEIM AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_499_8,-74.666725,39.396898,256 N MANNHEIM AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_499_9,-74.48028484,39.34669949,260 N MANNHEIM AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_501_10.01,-74.6325065,39.318668,227 N GENOA AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_501_10.02,-74.9023185,39.4813935,231 N GENOA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_501_10.03,-74.70366092,39.63389179,235 N GENOA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_501_10.04,-74.4743375,39.491946,239 N GENOA AVE,GALLOWAY TWP,16,1996,1,RES3A,3001 -0111_501_11,-74.407152,39.382173,249 N GENOA AVE,GALLOWAY TWP,16,1988,4,RES1,3001 -0111_501_12,-74.57579206,39.42048209,255 N GENOA AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_501_13.02,-74.5008915,39.41411,261 N GENOA AVE,GALLOWAY TWP,16,1979,1,GOV1,3004 -0111_501_14,-74.56341328,39.47530645,275 N GENOA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_501_2,-74.48178997,39.34003881,156 N ODESSA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_501_3,-74.847385,39.438678,160 N ODESSA AVE,GALLOWAY TWP,16,2007,1,RES3A,3001 -0111_501_4,-74.56340078,39.36556392,368 COLOGNE-PORT RD,GALLOWAY TWP,16,1940,1,RES3A,3001 -0111_501_5.01,-74.5218278,39.31568655,358 COLOGNE-PORT RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_501_5.02,-74.6398935,39.463973,350 COLOGNE-PORT RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_501_6,-74.532297,39.384152,336 COLOGNE-PORT RD,GALLOWAY TWP,16,1980,2,RES1,3001 -0111_501_9.01,-74.370642,39.4114705,217 N GENOA AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_501_9.02,-74.606035,39.333084,221 N GENOA AVE,GALLOWAY TWP,16,1994,1,RES3A,3001 -0111_501_9.03,-74.81219421,39.52659441,225 N GENOA AVE,GALLOWAY TWP,16,1993,1,GOV1,3002 -0111_502_10,-74.65378986,39.45407027,311 COLOGNE-PORT RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_502_11,-74.3729705,39.4162495,305 COLOGNE-PORT RD,GALLOWAY TWP,16,1999,1,COM1,3004 -0111_502_2,-74.46304888,39.49707373,208 N ODESSA AVE,GALLOWAY TWP,16,1971,2,RES1,3001 -0111_502_3.01,-74.391642,39.3912425,222 N ODESSA AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_502_3.03,-74.52039407,39.52677516,230 N ODESSA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_502_3.04,-74.83237672,39.37469996,345 COLOGNE-PORT RD,GALLOWAY TWP,16,1990,1,RES3A,3001 -0111_502_4.01,-74.37608584,39.41512104,234 N ODESSA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_502_4.02,-74.91048019,39.49663876,236 N ODESSA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_502_5.01,-74.60579982,39.4911753,238 N ODESSA AVE,GALLOWAY TWP,16,1995,2,RES1,3001 -0111_502_5.02,-74.506893,39.434894,240 N ODESSA AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_502_6.01,-74.52221718,39.44865921,246 N ODESSA AVE,GALLOWAY TWP,16,1996,1,COM10,3003 -0111_502_6.02,-74.4630365,39.4942205,250 N ODESSA AVE,GALLOWAY TWP,16,1995,1,RES3A,3001 -0111_502_6.03,-74.62438846,39.37861299,254 N ODESSA AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_502_6.04,-74.78775671,39.63288058,258 N ODESSA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_502_8,-74.623173,39.5060945,323 COLOGNE-PORT RD,GALLOWAY TWP,16,1997,1,RES3A,3001 -0111_502_9,-74.50800363,39.3293055,317 COLOGNE-PORT RD,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_503_1.01,-74.54439433,39.37146472,300 N PRAGUE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_503_1.02,-74.563543,39.504296,310 N PRAGUE AVE,GALLOWAY TWP,16,1984,2,RES1,3001 -0111_503_10.01,-74.9551325,39.537676,345 N MANNHEIM AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_503_11,-74.51766369,39.39042533,357 N MANNHEIM AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_503_13.01,-74.43789015,39.36608168,516 CLARKS LANDING RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_503_13.02,-74.56549184,39.37208566,512 CLARKS LANDING RD,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_503_2,-74.503724,39.4164385,320 N PRAGUE AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_503_5.01,-74.64274417,39.38429908,538 CLARKS LANDING RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_503_5.02,-74.459932,39.3499265,534 CLARKS LANDING RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_503_7.01,-74.59715883,39.3726525,301 N MANNHEIM AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_503_7.02,-74.5895675,39.332488,303 N MANNHEIM AVE,GALLOWAY TWP,16,1971,1,RES3A,3001 -0111_504_1,-74.58125459,39.423516,304 N MANNHEIM AVE,GALLOWAY TWP,16,1998,2,RES1,3001 -0111_504_12.01,-74.39828677,39.38646684,ODESSA AVE,GALLOWAY TWP,,0,1,RES3A,3001 -0111_504_12.02,-74.54564479,39.47218247,400 CLARKS LANDING RD,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_504_12.03,-74.51929054,39.42494592,398 CLARKS LANDING RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_504_14,-74.504329,39.480325,300 N ODESSA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_504_20,-74.4927205,39.4444,334 CLARKS LANDING RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_504_21,-74.5923795,39.375992,326 CLARKS LANDING RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_504_22.01,-74.60360644,39.40826929,322 CLARKS LANDING RD,GALLOWAY TWP,,1945,1,RES1,3001 -0111_504_23,-74.54316848,39.38636393,301 N GENOA AVE,GALLOWAY TWP,16,1942,2,RES1,3001 -0111_504_24,-74.57766872,39.34323026,309 N GENOA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_504_25,-74.856587,39.365795,313 N GENOA AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_504_26,-74.78194007,39.53282761,319 N GENOA AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_504_27,-74.4065207,39.3791273,327 N GENOA AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_504_28.02,-74.472362,39.3436345,335 N GENOA AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_504_29.01,-74.51171799,39.40619617,339 N GENOA AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_504_29.02,-74.6624417,39.45467914,341 N GENOA AVE,GALLOWAY TWP,15,1987,1,RES1,3001 -0111_504_3,-74.754668,39.42981288,MANNHEIM AVE,GALLOWAY TWP,,1994,1,RES1,3001 -0111_504_31.01,-74.66339939,39.34470319,349 N GENOA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_504_31.02,-74.50822264,39.40245596,351 N GENOA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_504_34,-74.3814235,39.3993865,300 CLARKS LANDING RD,GALLOWAY TWP,16,1958,1,RES3A,3002 -0111_504_35,-74.59967245,39.36942619,316 CLARKS LANDING RD,GALLOWAY TWP,16,1992,2,RES1,3001 -0111_504_4,-74.61149517,39.31952505,340 N MANNHEIM AVE,GALLOWAY TWP,17,1987,1,RES1,3001 -0111_504_5,-74.50859451,39.33554102,348 N MANNHEIM AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_504_6.01,-74.50304792,39.32897564,358 N MANNHEIM AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_504_6.02,-74.4505027,39.37381337,360 N MANNHEIM AVE,GALLOWAY TWP,16,2001,1,RES3A,3001 -0111_504_6.03,-74.756931,39.432441,362 N MANNHEIM AVE,GALLOWAY TWP,16,1998,1,RES1,3002 -0111_504_7.02,-74.38260818,39.39681115,430 CLARKS LANDING RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_504_9,-74.67158481,39.37045674,301 N ODESSA AVE,GALLOWAY TWP,16,1997,1,RES3A,3001 -0111_505_2.02,-74.7924644,39.63646724,507 CLARKS LANDING RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_505_2.03,-74.51307659,39.43680736,501 CLARKS LANDING RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_506_1.02,-74.6807615,39.506361,431 CLARKS LANDING RD,GALLOWAY TWP,16,1980,1,COM1,3004 -0111_506_2,-74.9265716,39.50769458,415 CLARKS LANDING RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_507_5,-74.50733261,39.33123716,301 CLARKS LANDING RD,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_512_17,-74.8623935,39.595439,MANNHEIM AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_514_2.01,-74.60492883,39.59251818,534 S GENOA AVE,GALLOWAY TWP,16,1939,2,RES1,3001 -0111_514_3,-74.55728787,39.35879268,525 S POMONA RD,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_514_4,-74.50075805,39.33575454,523 S POMONA RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_514_5,-74.3920435,39.3887175,522 S GENOA AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_514_6,-74.6769365,39.485525,POMONA RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_515_2,-74.59981941,39.31768567,509 S POMONA RD,GALLOWAY TWP,16,1920,2,RES1,3001 -0111_516_1,-74.60122514,39.32414382,531 ENGLISH CREEK RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_516_10,-74.57404111,39.41211275,536 S POMONA RD,GALLOWAY TWP,,1959,1,RES1,3001 -0111_516_11,-74.82950982,39.47230969,540 S POMONA RD,GALLOWAY TWP,16,1910,1,RES3B,3001 -0111_516_12.01,-74.52475449,39.39292667,542 S POMONA RD,GALLOWAY TWP,,1986,1,RES1,3001 -0111_516_12.02,-74.43513678,39.3649112,544 S POMONA RD,GALLOWAY TWP,16,1930,2,RES3A,3001 -0111_516_13.01,-74.57622797,39.37072436,POMONA RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_516_13.03,-74.63835671,39.43067507,ENGLISH CREEK RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_516_14,-74.54314864,39.38793885,522 ENGLISH CREEK RD,GALLOWAY TWP,16,1965,2,COM1,3004 -0111_516_17,-74.48682836,39.47093047,264 TODD AVE,GALLOWAY TWP,51,1955,1,RES3B,3001 -0111_516_18,-74.49620235,39.33664798,270 TODD AVE,GALLOWAY TWP,16,2011,1,RES3A,3001 -0111_516_19,-74.86953999,39.45325539,520 ENGLISH CREEK RD,GALLOWAY TWP,51,1962,1,COM1,3004 -0111_516_2,-74.6331415,39.365229,264-266 PARK AVE,GALLOWAY TWP,,0,1,COM1,3004 -0111_516_20,-74.51609835,39.32515863,518 ENGLISH CREEK RD,GALLOWAY TWP,51,1955,1,RES1,3001 -0111_516_21,-74.51813906,39.40159575,265 GRANT AVE,GALLOWAY TWP,52,1963,1,RES1,3001 -0111_516_3,-74.63978064,39.36261873,268-274 PARK AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_516_4.01,-74.50398,39.3330585,276 PARK AVE,GALLOWAY TWP,16,1958,1,GOV1,3004 -0111_516_4.02,-74.57742435,39.55141596,278 PARK AVE,GALLOWAY TWP,50,1955,1,GOV1,3004 -0111_516_4.03,-74.93954065,39.52582935,280 PARK AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_516_5,-74.77265069,39.60415777,282 PARK AVE,GALLOWAY TWP,51,1965,1,RES1,3001 -0111_516_6,-74.5221575,39.3186845,284-286 PARK AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_516_7,-74.55391935,39.36102921,288 PARK AVE,GALLOWAY TWP,51,1959,1,RES1,3001 -0111_516_8,-74.53561963,39.39706808,532 S POMONA RD,GALLOWAY TWP,50,1958,1,RES1,3001 -0111_517_1,-74.6141665,39.5986125,523 ENGLISH CREEK RD,GALLOWAY TWP,,1962,1,RES3A,3002 -0111_518_1,-74.49666012,39.33137118,530 S POMONA RD,GALLOWAY TWP,51,1962,1,RES3A,3001 -0111_518_10,-74.80482684,39.63078801,510 S POMONA RD,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_518_11,-74.62270621,39.37956358,276 ALOE ST,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_518_2,-74.903899,39.4986835,285 PARK AVE,GALLOWAY TWP,45,1910,2,RES1,3001 -0111_518_3,-74.44438502,39.37433931,283 PARK AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_518_4,-74.39622672,39.38943194,277 TURNER AVE,GALLOWAY TWP,50,1958,1,RES1,3001 -0111_518_6,-74.3701195,39.4137,519 ENGLISH CREEK RD,GALLOWAY TWP,51,1958,1,RES1,3001 -0111_518_7,-74.60687667,39.3413128,517-517A ENGLISH CRK RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_518_8,-74.756749,39.3425615,520 S POMONA RD,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_518_9.01,-74.59569103,39.31427132,515 ENGLISH CREEK RD,GALLOWAY TWP,16,1999,1,COM1,3004 -0111_518_9.02,-74.4986533,39.33110917,513 ENGLISH CREEK RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_518_9.03,-74.53213046,39.38446085,516 S POMONA RD,GALLOWAY TWP,16,2000,1,RES3A,3004 -0111_518_9.04,-74.77245662,39.60974566,511 ENGLISH CREEK RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_518_9.05,-74.454369,39.500085,509 ENGLISH CREEK RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_518_9.06,-74.47366817,39.36473599,507 ENGLISH CREEK RD,GALLOWAY TWP,16,1999,1,RES3A,3001 -0111_519_1,-74.5426038,39.48020133,506 S POMONA RD,GALLOWAY TWP,,1950,1,RES3A,3001 -0111_519_2,-74.65095729,39.45829673,504 S POMONA RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_519_3,-74.81771808,39.6531523,505 ENGLISH CREEK RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_519_4,-74.37334995,39.40038866,500 S POMONA RD,GALLOWAY TWP,16,1895,1,RES3A,3001 -0111_521_1,-74.535848,39.380583,510-514 ENGLISH CREEK RD,GALLOWAY TWP,15,1955,3,RES1,3001 -0111_523_1,-74.75603077,39.42956187,506 ENGLISH CREEK RD,GALLOWAY TWP,16,1885,1,RES1,3001 -0111_526_1,-74.59450643,39.35703907,423 S POMONA RD,GALLOWAY TWP,45,1987,2,RES1,3001 -0111_526_13,-74.503692,39.415399,424 S GENOA AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_526_14,-74.85674021,39.43720801,297 ATLANTIC AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_526_15,-74.49414863,39.43171067,422 S GENOA AVE,GALLOWAY TWP,16,1885,1,RES1,3002 -0111_526_17,-74.93156593,39.48614974,416 S GENOA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_526_3,-74.64949852,39.53338633,419 S POMONA RD,GALLOWAY TWP,16,2007,1,RES1,3002 -0111_527_1,-74.57024755,39.35582037,430 S POMONA RD,GALLOWAY TWP,,1930,1,RES1,3001 -0111_527_11,-74.6041266,39.3266026,278 W WHITE HORSE PIKE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_527_2,-74.92394424,39.50636365,423 GEORGE AVE,GALLOWAY TWP,15,1948,1,RES1,3001 -0111_527_4,-74.70006071,39.37069008,421 GEORGE AVE,GALLOWAY TWP,15,1948,1,RES1,3001 -0111_527_7,-74.52981167,39.51067531,419 GEORGE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_528_1,-74.61011249,39.44117483,424 GEORGE AVE,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_528_11,-74.4750435,39.365117,252 W WHITE HORSE PIKE,GALLOWAY TWP,16,1948,1,RES1,3004 -0111_528_12,-74.7884844,39.63791487,250 W WHITE HORSE PIKE,GALLOWAY TWP,,1995,1,RES1,3001 -0111_528_16,-74.594098,39.327862,242 W WHITE HORSE PIKE,GALLOWAY TWP,,1940,1,RES3A,3001 -0111_528_17,-74.53309655,39.31352528,240 W WHITE HORSE PIKE,GALLOWAY TWP,,1992,1,RES1,3001 -0111_528_19,-74.52480608,39.46783886,232 W WHITE HORSE PIKE,GALLOWAY TWP,16,1955,1,COM1,3004 -0111_528_2,-74.4625665,39.347175,422 GEORGE AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_528_20,-74.83407314,39.61966112,230 W WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_528_21,-74.85292916,39.36912951,226 W WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_528_22,-74.58153581,39.40108838,222 W WHITE HORSE PIKE,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_528_26.01,-74.92202286,39.5615672,210 W WHITE HORSE PIKE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_528_26.02,-74.62401395,39.46029016,208 W WHITE HORSE PIKE,GALLOWAY TWP,15,1979,1,RES1,3001 -0111_528_27,-74.93459567,39.49604518,206 W WHITE HORSE PIKE,GALLOWAY TWP,,1988,1,RES1,3001 -0111_528_28,-74.58424693,39.34144238,204 W WHITE HORSE PIKE,GALLOWAY TWP,,2006,1,RES1,3001 -0111_528_29,-74.5096703,39.44612394,202 W WHITE HORSE PIKE,GALLOWAY TWP,15,1954,1,RES1,3001 -0111_528_30,-74.52015784,39.39286801,200 W WHITE HORSE PIKE,GALLOWAY TWP,,1945,1,RES1,3001 -0111_528_31,-74.43354743,39.48648035,118 W WHITE HORSE PIKE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_528_32,-74.7514625,39.451082,116 W WHITE HORSE PIKE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_528_33,-74.49973453,39.52029586,114 W WHITE HORSE PIKE,GALLOWAY TWP,,1951,1,RES1,3001 -0111_528_34,-74.940951,39.5019515,112 W WHITE HORSE PIKE,GALLOWAY TWP,16,1950,1,RES1,3004 -0111_528_35,-74.5771185,39.33347384,110 W WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_528_37,-74.56312891,39.3726692,104 W WHITE HORSE PIKE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_528_44,-74.56174343,39.41652357,26 MORTON AVE,GALLOWAY TWP,16,1955,1,RES1,3002 -0111_528_45,-74.80246065,39.6455091,28 MORTON AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_528_46,-74.93021446,39.52022682,30 MORTON AVE,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_528_47,-74.62560973,39.41691281,32 MORTON AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_528_48,-74.8714542,39.49127477,34 MORTON AVE,GALLOWAY TWP,16,1930,1,RES1,3002 -0111_528_49,-74.502824,39.468359,36 MORTON AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_528_50.01,-74.57332671,39.42107474,38 MORTON AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_528_50.02,-74.37352281,39.40993134,38A MORTON AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_528_50.03,-74.5110985,39.3997265,40 MORTON AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_528_50.04,-74.51646419,39.43052998,40A MORTON AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_528_52,-74.83607157,39.40547969,44 MORTON AVE,GALLOWAY TWP,15,1925,1,RES1,3001 -0111_528_53,-74.59949328,39.43387285,48 W WHITE HORSE PIKE,GALLOWAY TWP,,1961,1,GOV1,3004 -0111_529_1,-74.628372,39.417158,404 S GENOA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_529_14,-74.76384183,39.30960365,275 W WHITE HORSE PIKE,GALLOWAY TWP,,1941,1,RES1,3001 -0111_529_2,-74.45078505,39.35419947,297 W WHITE HORSE PIKE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_529_3.01,-74.61982418,39.37368759,295 W WHITE HORSE PIKE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_529_3.02,-74.64821897,39.52770661,294 LANGLEY AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_529_4,-74.50310799,39.44197732,292 LANGLEY AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_529_5,-74.86587984,39.56660752,293 W WHITE HORSE PIKE,GALLOWAY TWP,16,1950,1,COM1,3004 -0111_529_6,-74.4079172,39.37958605,291 W WHITE HORSE PIKE,GALLOWAY TWP,16,1920,1,GOV1,3004 -0111_529_7.02,-74.491323,39.4611545,288A LANGLEY AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_529_7.03,-74.9209095,39.488552,286-288 LANGLEY AVE,GALLOWAY TWP,45,1886,3,RES1,3001 -0111_529_8,-74.613073,39.364665,285 W WHITE HORSE PIKE,GALLOWAY TWP,,1955,1,RES3A,3001 -0111_529_9,-74.55767427,39.52525259,281 W WHITE HORSE PIKE,GALLOWAY TWP,,1929,1,RES1,3001 -0111_530_1.01,-74.48744667,39.42276317,290 KOCH AVE,GALLOWAY TWP,16,1974,2,RES1,3001 -0111_530_1.02,-74.715323,39.414451,281 LANGLEY AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_530_1.03,-74.3722274,39.39915871,288 KOCH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_530_1.04,-74.940128,39.528455,286 KOCH AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_530_1.05,-74.55842512,39.4731772,284 KOCH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_530_1.06,-74.62628946,39.40927785,282 KOCH AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_530_1.07,-74.66999,39.513738,291 LANGLEY AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_530_1.08,-74.495504,39.3360265,289 LANGLEY AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_530_1.09,-74.7494743,39.44609648,287 LANGLEY AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_530_1.10,-74.55605332,39.39731401,285 LANGLEY AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_530_1.11,-74.610752,39.511172,283 LANGLEY AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_530_2,-74.46777178,39.4926379,280 KOCH AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_530_3,-74.952381,39.517894,278 KOCH AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_530_4,-74.51827657,39.47384388,276 KOCH AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_530_5,-74.61393181,39.48624042,274 KOCH AVE,GALLOWAY TWP,16,1955,2,RES1,3001 -0111_530_9,-74.64573768,39.41255001,277 LANGLEY AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_531.01_1.01,-74.5653455,39.3540305,400 S GENOA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_532_1.01,-74.94949683,39.51770849,273 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1914,1,RES1,3001 -0111_532_1.02,-74.7211235,39.5868115,374 S GENOA AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_532_2.02,-74.42993164,39.36455303,269 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_533_1,-74.64807466,39.53133098,GENOA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_534_1,-74.517939,39.4722965,GENOA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_534_2,-74.47540718,39.43940263,IDALIA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_535_1,-74.55495235,39.36899151,GALWAY AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_535_2,-74.54953449,39.47645409,GALWAY AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_536_1,-74.5442934,39.38929464,IDALIA AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_537_3,-74.695262,39.503371,273 KOCH AVE,GALLOWAY TWP,16,1940,2,RES1,3001 -0111_537_5,-74.5526975,39.3780215,271 KOCH AVE,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_537_6,-74.42268349,39.37185216,371 S POMONA RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_538_1,-74.5284835,39.4003895,268 W JIMMIE LEEDS RD,GALLOWAY TWP,15,2013,1,RES1,3001 -0111_538_2,-74.620193,39.4237905,266 W JIMMIE LEEDS RD,GALLOWAY TWP,15,2013,1,RES1,3001 -0111_538_6.02,-74.78173934,39.44455787,365 S POMONA RD,GALLOWAY TWP,,1979,1,COM1,3004 -0111_539_3,-74.61445354,39.38250881,JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_541_1,-74.84173041,39.53226257,267 W JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_541_2,-74.947467,39.5241165,JIMMIE LEEDS RD-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_541_3,-74.4802345,39.349925,JIMMIE LEEDS RD-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_541_4,-74.81668413,39.39455604,JIMMIE LEEDS RD-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_541_5,-74.60680083,39.38661699,JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_541_6,-74.91814156,39.51136176,JIMMIE LEEDS RD-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_541_7,-74.88503093,39.59603315,JIMMIE LEEDS RD-OFF,GALLOWAY TWP,,0,1,RES1,3002 -0111_542_1,-74.538304,39.3778655,PRINCETON AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_543_1,-74.46517734,39.49738883,PRINCETON AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_544_1,-74.45052253,39.37108881,PRINCETON AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_544_2,-74.62871071,39.3932096,POMONA RD-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_544_3,-74.60390921,39.41608417,POMONA RD-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_545_1,-74.43099313,39.36934517,GALWAY AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_546_1,-74.55236942,39.47139672,IDALIA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_549_1,-74.67058146,39.61882981,JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_550_1,-74.75804567,39.61105571,POMONA RD,GALLOWAY TWP,,0,1,EDU1,3004 -0111_551_1,-74.8167025,39.6527825,POMONA RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_551_2,-74.46784024,39.49176,POMONA RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_552_1,-74.51535476,39.3859744,POMONA RD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_553_1,-74.62799167,39.52856501,ZURICH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_554_1,-74.716314,39.4391125,ZURICH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_555_1.02,-74.4509285,39.354408,251 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_558_1,-74.48527052,39.52007144,274 FATHER KEIS DR,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_558_10,-74.71406956,39.57023034,256 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_558_11,-74.4477742,39.37151403,254 FATHER KEIS DR,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_558_12,-74.57887483,39.40476037,252 FATHER KEIS DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_558_13,-74.574024,39.4083855,273 W WHITE HORSE PIKE,GALLOWAY TWP,,1968,1,RES1,3001 -0111_558_14,-74.442536,39.3736895,269 W WHITE HORSE PIKE,GALLOWAY TWP,,1960,1,RES1,3001 -0111_558_15.01,-74.60223731,39.36943744,261 W WHITE HORSE PIKE,GALLOWAY TWP,,1965,1,RES1,3001 -0111_558_2,-74.48754306,39.35173769,272 FATHER KEIS DR,GALLOWAY TWP,16,1967,1,RES3A,3001 -0111_558_3,-74.5789015,39.430432,270 FATHER KEIS DR,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_558_4,-74.46387268,39.50016485,268 FATHER KEIS DR,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_558_5,-74.505321,39.5294885,266 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_558_6,-74.82603417,39.63782364,264 FATHER KEIS DR,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_558_7,-74.48886219,39.33695663,262 FATHER KEIS DR,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_558_8,-74.72009866,39.44134018,260 FATHER KEIS DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_558_9,-74.88093768,39.48410942,258 FATHER KEIS DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_559_1,-74.45085606,39.37332076,274 TERRY LN,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_559_10,-74.48412725,39.47979747,256 TERRY LN,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_559_11,-74.63024934,39.55636197,254 TERRY LN,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_559_12,-74.94925656,39.52031996,252 TERRY LN,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_559_13,-74.79628722,39.53184551,275 FATHER KEIS DR,GALLOWAY TWP,16,1960,1,GOV1,3004 -0111_559_14,-74.48226622,39.34626615,273 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_559_15,-74.7706,39.426893,271 FATHER KEIS DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_559_16,-74.49216713,39.33268868,269 FATHER KEIS DR,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_559_17,-74.442892,39.3538855,267 FATHER KEIS DR,GALLOWAY TWP,16,1963,1,GOV1,3004 -0111_559_18,-74.8386395,39.4188995,265 FATHER KEIS DR,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_559_19,-74.59220616,39.43008656,263 FATHER KEIS DR,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_559_2,-74.56930683,39.36613017,272 TERRY LN,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_559_20,-74.59609352,39.31057066,261 FATHER KEIS DR,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_559_21,-74.55163505,39.3853652,259 FATHER KEIS DR,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_559_22,-74.6600935,39.5158195,257 FATHER KEIS DR,GALLOWAY TWP,16,1963,1,RES3A,3001 -0111_559_23,-74.88028406,39.48398524,255 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_559_24,-74.51406525,39.40352133,253 FATHER KEIS DR,GALLOWAY TWP,16,1974,1,COM1,3004 -0111_559_3,-74.82000004,39.62230766,270 TERRY LN,GALLOWAY TWP,16,1970,1,COM1,3004 -0111_559_4,-74.64906923,39.32886414,268 TERRY LN,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_559_5,-74.75155134,39.63646061,266 TERRY LN,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_559_6,-74.6091945,39.4418525,264 TERRY LN,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_559_7,-74.37912309,39.39591707,262 TERRY LN,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_559_8,-74.4470254,39.35562431,260 TERRY LN,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_559_9,-74.61399404,39.41089781,258 TERRY LN,GALLOWAY TWP,16,1972,1,GOV1,3004 -0111_560_1,-74.4649135,39.3477735,278 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_560_10,-74.53874995,39.37601488,260 ST JOSEPH ST,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_560_11,-74.6401125,39.3824735,258 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_560_12,-74.75554126,39.42973397,256 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_560_13,-74.54138378,39.41821603,275 TERRY LN,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_560_14,-74.57478203,39.34215125,273 TERRY LN,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_560_15,-74.612145,39.318722,271 TERRY LN,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_560_16,-74.70113572,39.57085243,269 TERRY LN,GALLOWAY TWP,16,1970,1,GOV1,3004 -0111_560_17,-74.71092119,39.43143185,267 TERRY LN,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_560_18,-74.48634483,39.33665653,265 TERRY LN,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_560_19,-74.49818666,39.33284302,263 TERRY LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_560_2,-74.696304,39.51030082,276 ST JOSEPH ST,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_560_20,-74.4071192,39.37981784,261 TERRY LN,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_560_21,-74.5336904,39.49822209,259 TERRY LN,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_560_22,-74.75696577,39.44695157,257 TERRY LN,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_560_23,-74.64970989,39.53481137,255 TERRY LN,GALLOWAY TWP,16,1970,1,GOV1,3004 -0111_560_24,-74.63127273,39.35958545,253 TERRY LN,GALLOWAY TWP,16,1972,1,GOV1,3004 -0111_560_3,-74.55072144,39.3694935,274 ST JOSEPH ST,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_560_4,-74.49692724,39.33078462,272 ST JOSEPH ST,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_560_5,-74.49888648,39.33761843,270 ST JOSEPH ST,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_560_6,-74.7504145,39.4466825,268 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_560_7,-74.7582975,39.430377,266 ST JOSEPH ST,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_560_8,-74.70650319,39.42247581,264 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_560_9,-74.3855335,39.3917785,262 ST JOSEPH ST,GALLOWAY TWP,16,1972,1,GOV1,3004 -0111_561.01_1,-74.4565265,39.351941,364 S POMONA RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_561.01_10,-74.55447791,39.46724322,254 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_11,-74.86982084,39.60294796,252 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_12,-74.60839107,39.32380704,366 S POMONA RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_13,-74.614826,39.322951,271 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_14,-74.6288095,39.4649055,269 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_15,-74.608088,39.343565,267 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_561.01_16,-74.62064755,39.43379395,265 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_17,-74.58323555,39.38299874,263 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_18,-74.45029444,39.35490781,261 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_19,-74.80857624,39.63190389,259 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_2,-74.712247,39.436175,270 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_20,-74.51182757,39.4847068,257 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_561.01_21,-74.4878095,39.337592,255 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_22,-74.36790747,39.4080551,253 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_23.01,-74.55260366,39.37877546,360 S POMONA RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_23.02,-74.392302,39.3916515,252 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_23.03,-74.81636001,39.47070767,269 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_23.04,-74.643076,39.53064,271 LOUIS AVE,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_561.01_23.05,-74.65477784,39.52636753,362 S POMONA RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_24,-74.7948405,39.3614845,250 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1973,1,RES1,3004 -0111_561.01_25,-74.4949805,39.433412,248 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_26,-74.62068706,39.51170884,246 W JIMMIE LEEDS RD,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_561.01_27.01,-74.6356413,39.5219929,265 LOUIS AVE,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_561.01_27.02,-74.78674517,39.61875422,263 DONNA DR,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_561.01_28,-74.57914949,39.3296011,261 DONNA DR,GALLOWAY TWP,16,1972,1,GOV1,3004 -0111_561.01_29,-74.5358463,39.31327789,259 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_3,-74.3852775,39.3986705,268 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_30,-74.59534551,39.32392533,257 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_31,-74.79356458,39.64592721,255 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_32,-74.87622666,39.48831409,253 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_33,-74.3885175,39.389583,251 DONNA DR,GALLOWAY TWP,16,1971,1,RES3B,3001 -0111_561.01_34,-74.58293042,39.36430885,249 DONNA DR,GALLOWAY TWP,16,1971,1,COM1,3004 -0111_561.01_35,-74.6100551,39.37618647,247 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_36,-74.4700635,39.4871775,245 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_37,-74.51220523,39.4493297,243 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_38,-74.63621848,39.36900839,241 DONNA DR,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_561.01_39,-74.6219965,39.385815,239 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_4,-74.5372305,39.467027,266 LOUIS AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_561.01_40,-74.5854415,39.37556,237 DONNA DR,GALLOWAY TWP,16,1972,1,GOV1,3004 -0111_561.01_41,-74.525467,39.3938545,235 DONNA DR,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_561.01_42,-74.47963808,39.33824969,233 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_43,-74.6334275,39.363659,231 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_44.02,-74.63090697,39.42073569,301 ELTON LN,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_561.01_44.03,-74.56142569,39.38914148,231A DONNA DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_561.01_44.05,-74.4992605,39.4421115,205 BUCHANAN AVE,GALLOWAY TWP,,1996,4,RES1,3001 -0111_561.01_48,-74.59000707,39.3198683,214 W JIMMIE LEEDS RD,GALLOWAY TWP,,2006,1,RES1,3001 -0111_561.01_5,-74.48429982,39.33558258,264 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_6,-74.6256425,39.421183,262 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_7,-74.3714775,39.40201,260 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_8,-74.51953208,39.39789684,258 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_561.01_9,-74.59778722,39.3801146,256 LOUIS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_562_1,-74.56726939,39.34256191,LOUIS AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_563_1,-74.6042595,39.3334,250 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_563_10,-74.81163993,39.62836958,232 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_563_11,-74.54605006,39.47082577,230 FATHER KEIS DR,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_563_12.01,-74.6806575,39.4964995,WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_563_12.02,-74.494269,39.449012,235 W WHITE HORSE PIKE,GALLOWAY TWP,,1978,1,RES1,3001 -0111_563_12.03,-74.6376445,39.429735,245 W WHITE HORSE PIKE,GALLOWAY TWP,,1989,1,RES1,3001 -0111_563_12.04,-74.495457,39.47421,241 W WHITE HORSE PIKE,GALLOWAY TWP,,1989,1,RES1,3001 -0111_563_13,-74.6930665,39.508001,409 APPLE RD,GALLOWAY TWP,16,1972,1,GOV1,3004 -0111_563_14,-74.47576279,39.54027327,411 APPLE RD,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_563_15,-74.45821967,39.47157002,233 W WHITE HORSE PIKE,GALLOWAY TWP,16,1991,1,IND1,3004 -0111_563_2,-74.81182982,39.36644904,248 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_563_3,-74.58437806,39.37666117,246 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_563_4,-74.5161515,39.329543,244 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_563_5,-74.57333346,39.3561762,242 FATHER KEIS DR,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_563_6,-74.76685854,39.62334761,240 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_563_7,-74.48906885,39.33580299,238 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_563_8,-74.50972879,39.46587615,236 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_563_9,-74.37150383,39.404515,234 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_564_1,-74.48999145,39.43325042,250 TERRY LN,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_564_10,-74.59214722,39.36626297,232 TERRY LN,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_564_11,-74.5686645,39.3659,230 TERRY LN,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_564_12,-74.57449011,39.34916064,251 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES2,3005 -0111_564_13,-74.55051387,39.40180092,249 FATHER KEIS DR,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_564_14,-74.5401925,39.470541,247 FATHER KEIS DR,GALLOWAY TWP,16,1967,1,RES1,3004 -0111_564_15,-74.49158257,39.4213292,245 FATHER KEIS DR,GALLOWAY TWP,16,1965,1,RES1,3004 -0111_564_16,-74.517231,39.409889,243 FATHER KEIS DR,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_564_17,-74.47358332,39.48477383,241 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_564_18,-74.8124285,39.6369075,239 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_564_19,-74.50367074,39.50223183,237 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_564_2,-74.56488602,39.36331315,248 TERRY LN,GALLOWAY TWP,16,1969,1,GOV1,3004 -0111_564_20,-74.59026619,39.48486464,235 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_564_21,-74.51694362,39.32308505,233 FATHER KEIS DR,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_564_22,-74.70437791,39.35228331,231 FATHER KEIS DR,GALLOWAY TWP,16,1967,1,GOV1,3004 -0111_564_3,-74.72592262,39.45231682,246 TERRY LN,GALLOWAY TWP,16,1967,1,GOV1,3004 -0111_564_4,-74.79239994,39.64568235,244 TERRY LN,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_564_5,-74.4952475,39.3292755,242 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3004 -0111_564_6,-74.5769835,39.3558905,240 TERRY LN,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_564_7,-74.53323319,39.38398536,238 TERRY LN,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_564_8,-74.47340052,39.49372857,236 TERRY LN,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_564_9,-74.55745282,39.36093648,234 TERRY LN,GALLOWAY TWP,16,1968,1,GOV1,3004 -0111_565_1,-74.5234945,39.3866245,254 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_565_10,-74.65589905,39.40350283,232 DONNA DR,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_565_11,-74.469731,39.4819265,251 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_12,-74.652465,39.353331,249 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_13,-74.83220905,39.41303736,247 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_14,-74.49904718,39.49104999,245 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_15,-74.5320795,39.3772045,243 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_16,-74.5877037,39.37194354,241 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_17,-74.632277,39.360725,239 TERRY LN,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_565_18,-74.513923,39.404963,237 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_19,-74.4776385,39.345891,235 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_2,-74.908075,39.480858,252 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_565_20,-74.5216165,39.318146,233 TERRY LN,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_565_21,-74.4376715,39.488229,231 TERRY LN,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_565_3,-74.62514655,39.41969231,250 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_565_4,-74.6464655,39.532385,248 ST JOSEPH ST,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_565_5,-74.49859156,39.43112262,246 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES3A,3001 -0111_565_6,-74.56785083,39.35727446,244 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_565_7,-74.63531781,39.36125752,240 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_565_8,-74.696709,39.6383865,236 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_565_9,-74.37506212,39.41650314,234 DONNA DR,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_566_1,-74.5478215,39.377397,252 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_566_2,-74.53918867,39.37640556,250 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_566_3,-74.58964531,39.35662242,246 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_566_4,-74.54758611,39.47332428,251 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_566_5,-74.807492,39.4675905,249 ST JOSEPH ST,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_566_6,-74.5197375,39.389352,247 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_566_7,-74.5139115,39.3997675,245 ST JOSEPH ST,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_566_8,-74.63095063,39.31707391,243 ST JOSEPH ST,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_566_9,-74.84878613,39.61841336,241 ST JOSEPH ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_1,-74.63790729,39.33855993,400 APPLE RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_10,-74.6295408,39.42880495,410 APPLE RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_11,-74.54803287,39.47388873,411 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_12,-74.6922125,39.506006,412 APPLE RD,GALLOWAY TWP,16,1972,1,GOV1,3004 -0111_567_13,-74.71224865,39.47218781,413 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_14,-74.875968,39.5960795,414 APPLE RD,GALLOWAY TWP,16,2002,1,RES1,3004 -0111_567_15,-74.475666,39.486255,415 DONNA DR,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_567_2,-74.52728444,39.38568019,402 APPLE RD,GALLOWAY TWP,16,1967,1,GOV1,3004 -0111_567_3,-74.50889853,39.51683718,403 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_4,-74.57322234,39.33534505,404 APPLE RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_5,-74.53333339,39.38610568,405 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_6,-74.75824442,39.43221966,406 APPLE RD,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_567_7,-74.528967,39.383007,407 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_567_8,-74.62563226,39.38156971,408 APPLE RD,GALLOWAY TWP,16,1967,1,GOV1,3004 -0111_567_9,-74.7162129,39.63912576,409 DONNA DR,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_568_1,-74.80354796,39.64741048,229 DONNA DR,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_568_10,-74.95041863,39.50917175,406 DONNA DR,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_568_11,-74.6078802,39.31711549,408 DONNA DR,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_568_12,-74.86091406,39.43648048,410 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_568_13,-74.779404,39.5001825,412 DONNA DR,GALLOWAY TWP,16,1971,1,GOV1,3004 -0111_568_14,-74.665017,39.3961375,414 DONNA DR,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_568_15,-74.55472497,39.37471241,225 W WHITE HORSE PIKE,GALLOWAY TWP,,2008,1,RES1,3001 -0111_568_21,-74.54653513,39.47108369,417 DANTE AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_568_23,-74.5089235,39.3355705,421 DANTE AVE,GALLOWAY TWP,51,1965,1,GOV1,3004 -0111_568_4,-74.601746,39.379608,227 DONNA DR,GALLOWAY TWP,16,1966,2,RES1,3001 -0111_568_6,-74.680414,39.563002,400 DONNA DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_568_9,-74.51850684,39.386686,404 DONNA DR,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_569_12,-74.5660445,39.374077,428 DANTE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_569_13,-74.60133487,39.30936917,430 DANTE AVE,GALLOWAY TWP,15,1956,1,RES1,3001 -0111_569_2,-74.73421233,39.46061001,AVENUE D,GALLOWAY TWP,,0,1,GOV1,3004 -0111_569_27,-74.799332,39.533646,440 COLUMBUS AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_569_29,-74.5379695,39.387632,213 W WHITE HORSE PIKE,GALLOWAY TWP,16,1936,1,GOV1,3004 -0111_569_3,-74.6276926,39.43898454,AVENUE E,GALLOWAY TWP,,0,1,RES1,3001 -0111_569_30,-74.555083,39.385039,211 W WHITE HORSE PIKE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_569_31,-74.7114995,39.405564,209 W WHITE HORSE PIKE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_569_34,-74.50958434,39.4002814,431 BALBOA AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_569_4,-74.61251841,39.36899438,AVENUE D,GALLOWAY TWP,,0,1,RES1,3001 -0111_569_42,-74.366433,39.4212785,BALBOA AVE,GALLOWAY TWP,,1990,1,RES1,3001 -0111_569_43,-74.56895591,39.37014021,434 BALBOA AVE,GALLOWAY TWP,16,1952,2,RES1,3001 -0111_569_44,-74.7715467,39.6371077,436 BALBOA AVE,GALLOWAY TWP,16,2000,1,RES3A,3001 -0111_569_45,-74.63838317,39.53304735,203 W WHITE HORSE PIKE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_569_46,-74.63799206,39.52972214,201 W WHITE HORSE PIKE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_569_47,-74.49393265,39.4740109,435 AUGUSTUS AVE,GALLOWAY TWP,,1990,1,RES1,3001 -0111_569_5,-74.842263,39.4168255,AVENUE D,GALLOWAY TWP,,0,1,RES1,3001 -0111_569_7,-74.60391818,39.38386405,AVENUE E,GALLOWAY TWP,,0,1,RES1,3001 -0111_569_9,-74.63536334,39.52224948,422 DANTE AVE,GALLOWAY TWP,51,1960,1,RES1,3001 -0111_570_5,-74.63041794,39.44805311,AVENUE D,GALLOWAY TWP,,0,1,RES1,3001 -0111_570_7,-74.653164,39.40857868,AVENUE E,GALLOWAY TWP,,0,1,RES1,3001 -0111_571_1,-74.502515,39.3298195,AVENUE D,GALLOWAY TWP,,0,1,RES1,3001 -0111_571_10,-74.5724796,39.34926231,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_571_2,-74.70644261,39.44201818,AVENUE D,GALLOWAY TWP,,0,1,RES1,3001 -0111_571_3,-74.775352,39.632683,AVENUE D,GALLOWAY TWP,,0,1,RES1,3001 -0111_571_6.01,-74.79972862,39.63877525,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_571_6.02,-74.51330812,39.40173077,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_571_8,-74.3620475,39.409204,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_571_9,-74.73736303,39.72001282,AVENUE C,GALLOWAY TWP,,0,1,GOV1,3004 -0111_572_2,-74.4990965,39.4380635,AVENUE D,GALLOWAY TWP,,0,1,RES1,3001 -0111_572_7,-74.560743,39.390838,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_573_10,-74.6456995,39.4684645,167 W WHITE HORSE PIKE,GALLOWAY TWP,16,1941,1,RES1,3001 -0111_573_11,-74.81525415,39.63965747,171 W WHITE HORSE PIKE,GALLOWAY TWP,,1940,1,RES1,3001 -0111_574_2,-74.60326323,39.37685284,437 AVENUE A,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_574_3,-74.55643198,39.35850068,439 AVENUE A,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_574_4,-74.47129344,39.48987922,161 W WHITE HORSE PIKE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_574_7,-74.75262709,39.44598224,165 W WHITE HORSE PIKE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_576_1,-74.496586,39.4259285,157 W WHITE HORSE PIKE,GALLOWAY TWP,,2011,1,RES1,3001 -0111_576_2.03,-74.8876,39.557024,436A AVENUE A,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_576_3,-74.6222405,39.38256,436 AVENUE A,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_578_1,-74.65608446,39.51817371,153 W WHITE HORSE PIKE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_580_8,-74.5761565,39.349708,140 FILMORE AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_581_3,-74.5396342,39.40785385,145 W WHITE HORSE PIKE,GALLOWAY TWP,17,1989,1,RES1,3001 -0111_581_4,-74.38333168,39.39685666,453 XANTHUS AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_581_5,-74.87637421,39.59572853,451 XANTHUS AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_581_6,-74.6757945,39.560486,449 XANTHUS AVE,GALLOWAY TWP,16,1970,1,GOV1,3004 -0111_582_1,-74.51029854,39.42807682,447 XANTHUS AVE,GALLOWAY TWP,16,1906,1,RES1,3001 -0111_582_5,-74.55415992,39.47515675,441 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_582_7,-74.45161489,39.49750423,445 XANTHUS AVE,GALLOWAY TWP,16,1967,1,GOV1,3004 -0111_582_8,-74.57363432,39.34259147,443 XANTHUS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_582_9,-74.48843467,39.34913795,439 XANTHUS AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_583_3.01,-74.48050289,39.33630784,136 FILMORE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_583_3.02,-74.51864495,39.46294659,138 FILMORE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_583_4,-74.46879447,39.34533216,435 XANTHUS AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_583_5,-74.51554634,39.32845291,433 XANTHUS AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_583_6,-74.88451299,39.60056567,431 XANTHUS AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_583_7,-74.83603393,39.41690794,429 XANTHUS AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_583_8.01,-74.521569,39.4618195,427A XANTHUS AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_583_8.02,-74.4806025,39.349779,427 XANTHUS AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_583_9,-74.373374,39.405298,425 XANTHUS AVE,GALLOWAY TWP,16,1970,1,COM1,3004 -0111_584_2,-74.72557,39.48453,458 XANTHUS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_584_3,-74.81248181,39.64604312,456 XANTHUS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_584_4,-74.80934434,39.56216845,454 XANTHUS AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_584_6,-74.76168555,39.63442543,459 WILLOW AVE,GALLOWAY TWP,16,1940,1,GOV1,3004 -0111_584_7,-74.38323484,39.39415478,457 WILLOW AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_584_8.01,-74.60082402,39.31568075,455A WILLOW AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_584_8.02,-74.36123881,39.40959668,455 WILLOW AVE,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_585_1,-74.5837345,39.336834,452 XANTHUS AVE,GALLOWAY TWP,16,1989,2,RES1,3001 -0111_585_11,-74.46667398,39.34305356,445 WILLOW AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_585_12,-74.68105916,39.46084053,443 WILLOW AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_585_2,-74.51369406,39.41109831,450 XANTHUS AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_585_3,-74.5656175,39.3572065,448 XANTHUS AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_585_4.01,-74.77686932,39.65635918,446A XANTHUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_585_4.02,-74.555866,39.522954,446 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_585_5.01,-74.573609,39.342197,444 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_585_5.02,-74.545459,39.3720825,442 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_585_6.01,-74.55589136,39.36474965,453A WILLOW AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_585_6.02,-74.50983217,39.32886149,453 WILLOW AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_585_7,-74.9770195,39.5152945,451 WILLOW AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_585_9,-74.45551553,39.37901831,449 WILLOW AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_586_1,-74.60915325,39.32039784,440 XANTHUS AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_586_10,-74.362702,39.4155945,433 WILLOW AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_586_11,-74.53536255,39.39856353,431 WILLOW AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_586_13.01,-74.59819772,39.31411683,429 WILLOW AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_586_13.02,-74.55578287,39.47512033,427 WILLOW AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_586_14,-74.60279373,39.59133064,425 WILLOW AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_586_4,-74.4620905,39.3465915,434 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_586_5.01,-74.55240694,39.38081285,432 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_586_5.02,-74.48967144,39.33587112,430A XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_586_5.03,-74.6044107,39.31876156,430 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_586_6.01,-74.592802,39.376866,428A XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_586_6.02,-74.81872833,39.6355065,428 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_586_7,-74.440965,39.353723,441 WILLOW AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_586_8,-74.82836851,39.47775616,439 WILLOW AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_586_9,-74.60619119,39.32487221,437 WILLOW AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_587_1,-74.84898505,39.58819415,462 WILLOW AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_587_11,-74.80628068,39.36569998,451 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_587_12,-74.66768797,39.46245722,449 VINE AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_587_13,-74.512925,39.4430255,128 HAYES AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_587_2,-74.3664926,39.40696017,460 WILLOW AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_587_3.01,-74.5833125,39.4845325,458A WILLOW AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_587_3.02,-74.78617355,39.50425673,458 WILLOW AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_587_4,-74.53820987,39.52606677,456 WILLOW AVE,GALLOWAY TWP,16,1965,2,RES1,3001 -0111_587_5,-74.67033165,39.3670093,454 WILLOW AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_587_6,-74.50982807,39.32829817,452 WILLOW AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_587_7,-74.652476,39.45773283,459 VINE AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_587_8,-74.58967547,39.3273074,457 VINE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_587_9,-74.56739345,39.41410803,455 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_588_1,-74.63853875,39.52691809,450 WILLOW AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_588_10,-74.51072167,39.42881551,441 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_588_11,-74.64178509,39.43462326,439 VINE AVE,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_588_12,-74.6261298,39.42148992,437 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_588_13,-74.50452103,39.41287868,435 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_588_2,-74.50836476,39.43796668,448 WILLOW AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_588_3,-74.51601541,39.43305235,446 WILLOW AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_588_4,-74.4223685,39.3666165,444 WILLOW AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_588_5,-74.4992805,39.3334905,442 WILLOW AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_588_6,-74.64968085,39.35643504,440 WILLOW AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_588_7,-74.61872952,39.53724234,438 WILLOW AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_588_8,-74.52877291,39.39503668,127 HAYES AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_588_9,-74.65848321,39.36783105,443 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_589_1,-74.9406645,39.5276835,436 WILLOW AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_589_10.01,-74.83307,39.5023045,427 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_589_10.02,-74.50481033,39.324969,425 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_589_2,-74.78403702,39.63560287,434 WILLOW AVE,GALLOWAY TWP,16,1955,1,GOV1,3004 -0111_589_3,-74.6138005,39.4211395,432 WILLOW AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_589_4.01,-74.50614536,39.44666645,430A WILLOW AVE,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_589_4.02,-74.62557415,39.42013176,430 WILLOW AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_589_5,-74.46407559,39.49368095,428 WILLOW AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_589_6,-74.4962025,39.490941,426 WILLOW AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_589_7.01,-74.64419709,39.52704411,433A VINE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_589_7.02,-74.78626841,39.50447378,433 VINE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_589_8,-74.57072269,39.35634504,431 VINE AVE,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_589_9.01,-74.549002,39.470085,429A VINE AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_589_9.02,-74.5927908,39.31200452,429 VINE AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_590_2,-74.93256965,39.48285292,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_590_3.02,-74.5415115,39.3825775,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_590_4,-74.67529667,39.37652999,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_590_5,-74.3887105,39.390062,AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_590_7,-74.684146,39.5148205,AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_590_8,-74.5067325,39.405048,AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_591_1.01,-74.587647,39.3261535,408 AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_591_1.02,-74.50869467,39.38512116,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_591_1.03,-74.54409505,39.37635716,AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_591_1.04,-74.9483365,39.516012,407 AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_591_2,-74.3687305,39.403238,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_591_4,-74.523166,39.46144,AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_591_5.02,-74.78715784,39.64005602,AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_591_6,-74.47397791,39.48406016,AVENUE C,GALLOWAY TWP,,0,1,RES1,3001 -0111_592_1,-74.7950709,39.64489197,AVENUE B,GALLOWAY TWP,,0,1,GOV1,3004 -0111_592_2,-74.480089,39.340334,AVENUE B,GALLOWAY TWP,,0,1,GOV1,3004 -0111_592_3,-74.497116,39.3340565,AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_593_1,-74.61405443,39.36654058,AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_593_2,-74.56974696,39.37484268,406 AVENUE B,GALLOWAY TWP,,0,1,RES1,3001 -0111_593_5.01,-74.4305755,39.3640915,405 AVENUE A,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_593_5.02,-74.92042026,39.48977748,AVENUE A,GALLOWAY TWP,,0,1,RES1,3002 -0111_593_6,-74.87884097,39.59510508,400 AVENUE A,GALLOWAY TWP,,0,1,COM1,3004 -0111_594_1.01,-74.88045,39.470934,316 AVENUE B,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_594_1.02,-74.42972679,39.36169084,314 AVENUE B,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_594_10,-74.64811284,39.54923869,307 AVENUE A,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_594_11,-74.70610285,39.42998382,305 AVENUE A,GALLOWAY TWP,16,1975,1,RES3B,3001 -0111_594_3,-74.36980311,39.41403568,310 AVENUE B,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_594_5,-74.51521554,39.32190041,306 AVENUE B,GALLOWAY TWP,16,1975,2,RES1,3001 -0111_594_9.01,-74.734847,39.4359225,311 AVENUE A,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_595_10.01,-74.47512996,39.48039368,423 ZENIA AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_595_10.02,-74.391277,39.3918315,421 ZENIA AVE,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_595_6.01,-74.734348,39.4348295,439 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_595_6.02,-74.58728082,39.32969677,437 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_595_6.03,-74.586849,39.3229745,435 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_595_7.01,-74.447124,39.3557715,433 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_595_7.02,-74.95366561,39.51478496,431 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_595_8.01,-74.48400623,39.34405279,429 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_595_8.02,-74.53032187,39.45732055,427 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_595_9,-74.9540745,39.5165575,425 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_596_10.01,-74.60983053,39.32310561,403 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_596_10.02,-74.630216,39.417171,401 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_596_6.01,-74.5563375,39.3655485,419 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_596_6.02,-74.6623366,39.40166697,417 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_596_6.03,-74.71756818,39.64519654,415 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_596_7.01,-74.637487,39.621219,413 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_596_7.02,-74.63737836,39.36094018,411 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES3A,3001 -0111_596_8.01,-74.486073,39.4790845,409 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_596_8.02,-74.882894,39.598703,407 ZENIA AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_596_9,-74.886458,39.596592,405 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_597_10.01,-74.56022793,39.39441889,317 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_597_10.02,-74.6095965,39.319986,315 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_597_2,-74.58730236,39.35332427,320 AVENUE A,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_597_6.01,-74.858695,39.4548425,333 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_597_6.02,-74.45428215,39.48032698,331 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_597_6.03,-74.63063128,39.36083753,329 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_597_7.01,-74.9204935,39.5147695,327 ZENIA AVE,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_597_7.02,-74.63685928,39.30861017,325 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_597_8.01,-74.7926345,39.600762,323 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_597_8.02,-74.49788734,39.49885785,321 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_597_9,-74.507171,39.33439,319 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_598_2.01,-74.9300635,39.488642,313A ZENIA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_598_2.02,-74.54978564,39.36348944,313 ZENIA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_598_3.02,-74.5813605,39.3464235,311 ZENIA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_598_3.03,-74.55295536,39.36374435,309 ZENIA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_598_5,-74.55779022,39.3572971,307 ZENIA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_598_6,-74.47316843,39.4897035,305 ZENIA AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_598_7,-74.9594732,39.53314609,303 ZENIA AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_598_8,-74.5888235,39.511544,301 ZENIA AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_599_1.01,-74.93911346,39.52603983,143 FILMORE AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_599_1.02,-74.82432738,39.36573897,141 FILMORE AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_599_10.01,-74.62921227,39.50668068,417 YAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_599_10.02,-74.73520361,39.44328112,415 YAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_599_2.01,-74.61379653,39.32044116,434 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_599_2.02,-74.572209,39.3738235,432 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_599_3.01,-74.40226023,39.38272705,430 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3004 -0111_599_3.02,-74.4566273,39.48930756,428 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_599_4,-74.3645145,39.416058,426 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_599_5,-74.50359386,39.52968094,424 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_599_6.01,-74.50951614,39.43382438,422 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_599_6.02,-74.65030735,39.52677698,420 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_599_7.01,-74.63806656,39.42836861,425A YAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_599_7.02,-74.50973067,39.45939891,425 YAM AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_599_8.01,-74.82037393,39.36934108,423 YAM AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_599_8.02,-74.52719116,39.31022184,421 YAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_599_9,-74.52709575,39.38744922,419 YAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_600_1.01,-74.88737677,39.59484394,418 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_600_1.02,-74.48762788,39.53372765,416 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_600_1.03,-74.59083439,39.33296115,414 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_600_10.01,-74.5469055,39.5165465,401A YAM AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_600_10.02,-74.77556154,39.66000516,401 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_600_2,-74.57965461,39.31343766,412 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_600_3.01,-74.49220593,39.49298883,408 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_600_3.02,-74.5194095,39.397082,406 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_600_3.03,-74.488886,39.4312605,404 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_600_3.04,-74.70271744,39.6504003,402 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_600_3.05,-74.6440905,39.3359375,400 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_600_4,-74.64149576,39.33940319,413 YAM AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_600_5,-74.58867529,39.33549233,411 YAM AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_600_6,-74.81850638,39.52304288,409 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_600_7,-74.5481015,39.4735745,407 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_600_8,-74.59360806,39.3580908,405 YAM AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_600_9.01,-74.80827825,39.52981625,403A YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_600_9.02,-74.64376712,39.41129354,403 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_601_1.01,-74.70219658,39.63777576,332 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_601_1.02,-74.53633712,39.40791088,330 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_601_2.01,-74.4976315,39.4296525,328 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_601_2.02,-74.4964815,39.5265175,326 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_601_2.03,-74.6355035,39.3403625,324 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_601_2.04,-74.70436756,39.42843372,322 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_601_2.05,-74.502231,39.417089,320 ZENIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_601_3.01,-74.363782,39.4133055,318 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_601_3.02,-74.48375431,39.34697639,316 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_601_4.01,-74.69331,39.594811,314 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_601_4.02,-74.502377,39.432016,312 ZENIA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_601_5.01,-74.7355565,39.440336,329 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_601_5.02,-74.78541585,39.60592943,327 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_601_6.01,-74.701901,39.5013105,325 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_601_6.02,-74.6527375,39.3811175,323 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_601_7.01,-74.48527809,39.49651842,321 YAM AVE,GALLOWAY TWP,16,1995,1,COM4,3004 -0111_601_7.02,-74.80660283,39.62283465,319 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_601_8,-74.596931,39.380262,317 YAM AVE,GALLOWAY TWP,16,1978,1,COM1,3004 -0111_601_9,-74.60651718,39.31755201,315 YAM AVE,GALLOWAY TWP,16,1978,1,COM1,3004 -0111_602_1.01,-74.699058,39.6332915,310A ZENIA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_602_1.02,-74.51279667,39.40202355,310 ZENIA AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_602_2.01,-74.4966485,39.4945595,308 ZENIA AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_602_2.02,-74.61213,39.3401735,306 ZENIA AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_602_2.03,-74.636045,39.3842415,304 ZENIA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_602_2.04,-74.81061332,39.64376521,302 ZENIA AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_602_3,-74.8286818,39.41036155,300 ZENIA AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_602_4,-74.54072807,39.46615777,313 YAM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_602_6,-74.58184682,39.43190049,309 YAM AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_602_8,-74.3813185,39.3951175,305 YAM AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_602_9,-74.52179983,39.54098341,303 YAM AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_603_1,-74.810696,39.6353445,428 YAM AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_603_2.01,-74.598408,39.408824,426 YAM AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_603_3,-74.5187334,39.32369643,424 YAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_603_4.01,-74.454732,39.3535725,422A YAM AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_603_4.02,-74.43416948,39.366851,422 YAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_603_5.01,-74.64361151,39.52456905,418 YAM AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_603_5.02,-74.37237827,39.41589554,420 YAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_603_6.01,-74.62591574,39.43411635,423A XANTHUS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_603_6.02,-74.478136,39.3379275,423 XANTHUS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_603_7.01,-74.82123635,39.61924287,419 XANTHUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_603_7.02,-74.63277688,39.41957932,417A XANTHUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_603_7.03,-74.84148663,39.38522767,417 XANTHUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_603_8.01,-74.5522875,39.377724,415A XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_603_8.02,-74.50264327,39.32519085,415 XANTHUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_603_9.01,-74.64017,39.518742,413A XANTHUS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_603_9.02,-74.54062707,39.38328787,413 XANTHUS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_604_1.01,-74.7348645,39.442144,416A YAM AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_604_1.02,-74.604471,39.34928,416 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_604_10,-74.373839,39.4183215,403 XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_11.01,-74.7126715,39.4692965,401A XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_11.02,-74.5808225,39.334976,401 XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_2,-74.86745498,39.49667118,414 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_3,-74.54040528,39.45868743,412 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_4.01,-74.76011674,39.42980803,410 YAM AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_604_4.02,-74.76663857,39.4512584,408 YAM AVE,GALLOWAY TWP,16,1977,1,COM1,3004 -0111_604_5.02,-74.93600174,39.49719551,402 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_6,-74.6509305,39.529586,400 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_604_7,-74.57050515,39.37585073,411 XANTHUS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_604_8.01,-74.63342,39.3497095,409A XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_8.02,-74.8712695,39.5919635,409 XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_8.03,-74.57130899,39.36990412,407 XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_604_9,-74.87824191,39.47059434,405 XANTHUS AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_605_1.01,-74.57012826,39.4780185,324 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_605_1.02,-74.62757809,39.39200477,322 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_605_2.01,-74.61428853,39.37333179,320 YAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_605_2.02,-74.950816,39.518461,318 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_605_3.01,-74.61343688,39.32377119,316 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_605_3.02,-74.87464991,39.48569891,314 YAM AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_605_4,-74.50092388,39.41991579,312 YAM AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_605_5.01,-74.5525695,39.4687495,323 XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_605_5.02,-74.57892722,39.36221877,321 XANTHUS AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_605_6,-74.509987,39.472047,319 XANTHUS AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_605_7,-74.4543526,39.35545482,317 XANTHUS AVE,GALLOWAY TWP,16,1997,1,COM1,3004 -0111_605_8.01,-74.491003,39.4700595,315 XANTHUS AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_605_8.02,-74.50198323,39.42970922,315A XANTHUS AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_605_8.03,-74.508844,39.4902075,313 XANTHUS AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_605_9,-74.51849834,39.39064251,325 XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_606_1,-74.4864155,39.4959165,310 YAM AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_606_2.01,-74.58939567,39.33441738,311A XANTHUS AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_606_2.02,-74.52115957,39.32154666,311 XANTHUS AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_606_3.01,-74.57657783,39.3324845,309 XANTHUS AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_606_3.03,-74.61205776,39.345903,307 XANTHUS AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_606_4.01,-74.5759598,39.35008261,308A YAM AVE,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_606_4.02,-74.923047,39.5657095,308 YAM AVE,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_606_4.03,-74.474875,39.444974,306A YAM AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_606_4.04,-74.6287535,39.349452,306 YAM AVE,GALLOWAY TWP,16,2017,1,RES1,3001 -0111_606_4.07,-74.5088555,39.3846485,302A YAM AVE,GALLOWAY TWP,16,2018,1,RES1,3001 -0111_606_4.09,-74.87326608,39.60013884,305A XANTHUS AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_606_4.11,-74.47048423,39.48737106,303A XANTHUS AVE,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_606_4.12,-74.63373448,39.60457783,303 XANTHUS AVE,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_606_4.13,-74.830831,39.3886405,301A XANTHUS AVE,GALLOWAY TWP,16,2017,1,GOV1,3004 -0111_606_4.14,-74.508719,39.329616,301 XANTHUS AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_606_5.01,-74.645545,39.5281285,300A YAM AVE,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_606_5.02,-74.7976514,39.63620595,300 YAM AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_607_1,-74.82436151,39.40274717,426 XANTHUS AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_607_10,-74.5907185,39.3698105,419 WILLOW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_607_11,-74.5835655,39.3261155,417 WILLOW AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_607_12,-74.5701935,39.359954,415 WILLOW AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_607_13.01,-74.81790852,39.56184986,413 WILLOW AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_607_13.02,-74.60099358,39.34117217,413A WILLOW AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_607_2,-74.48706303,39.33813865,424 XANTHUS AVE,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_607_3.02,-74.36947944,39.40595713,422 XANTHUS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_607_4.01,-74.55728851,39.47166605,420A XANTHUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_607_4.02,-74.60081901,39.33201816,420 XANTHUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_607_5,-74.46661416,39.34554409,418 XANTHUS AVE,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_607_6,-74.495586,39.431134,416 XANTHUS AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_607_7,-74.45868675,39.49133421,414 XANTHUS AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_607_8,-74.43678689,39.36516085,423 WILLOW AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_607_9,-74.80554933,39.64175164,421 WILLOW AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_608_1,-74.54621665,39.46132578,412 XANTHUS AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_608_10,-74.58220411,39.47281617,403 WILLOW AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_608_11,-74.5196245,39.382814,401 WILLOW AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_608_2.01,-74.60273241,39.4380287,410A XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_608_2.02,-74.354541,39.4145315,410 XANTHUS AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_608_3.01,-74.54335008,39.38617714,408 XANTHUS AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_608_3.02,-74.7633275,39.6041615,406 XANTHUS AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_608_4,-74.58463269,39.32268825,411 WILLOW AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_608_5,-74.6828165,39.4444435,409 WILLOW AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_608_6,-74.65187942,39.35054128,407 WILLOW AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_608_7.01,-74.54493995,39.37024401,405 WILLOW AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_608_7.02,-74.67924,39.4817475,404 XANTHUS AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_608_8,-74.42362748,39.37104116,402 XANTHUS AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_608_9,-74.60567488,39.32701613,400 XANTHUS AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_609_1.01,-74.68984385,39.49987171,332 XANTHUS AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_609_1.02,-74.555387,39.36686,330 XANTHUS AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_609_10,-74.800504,39.63452,317 WILLOW AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_609_11,-74.52293733,39.45116637,327 WILLOW AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_609_2,-74.58986661,39.49065437,328 XANTHUS AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_609_3,-74.62957528,39.42985594,326 XANTHUS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_609_4,-74.49808,39.333516,324 XANTHUS AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_609_5,-74.63929792,39.52387763,322 XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_609_6,-74.359774,39.4143825,320 XANTHUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_609_7,-74.8799035,39.5976495,325 WILLOW AVE,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_609_8.01,-74.60015203,39.33051309,323A WILLOW AVE,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_609_8.02,-74.79755938,39.65360574,323 WILLOW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_609_8.03,-74.4104335,39.382853,321A WILLOW AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_609_8.04,-74.692221,39.5979105,321 WILLOW AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_609_9.01,-74.518019,39.44323,319A WILLOW AVE,GALLOWAY TWP,16,1993,1,COM8,3004 -0111_609_9.02,-74.81808817,39.38606583,319 WILLOW AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_610_1.01,-74.64864019,39.45853018,318 XANTHUS AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_610_1.02,-74.70201127,39.4769176,314 XANTHUS AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_610_11.01,-74.55579022,39.4710386,313 WILLOW AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_610_11.02,-74.5962815,39.3800665,311 WILLOW AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_610_12,-74.36945846,39.40277333,307 WILLOW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_610_13,-74.46440855,39.4625443,305 WILLOW AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_610_14,-74.5242515,39.3993035,303 WILLOW AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_610_15,-74.5953565,39.365211,301 WILLOW AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_610_3,-74.96140587,39.52694482,310 XANTHUS AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_610_4,-74.6320212,39.41988954,306 XANTHUS AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_610_5,-74.4434057,39.4938203,304 XANTHUS AVE,GALLOWAY TWP,16,2009,1,COM1,3004 -0111_610_6,-74.4827495,39.339179,302 XANTHUS AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_610_7,-74.4500875,39.373887,300 XANTHUS AVE,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_610_9,-74.6318425,39.4395815,315 WILLOW AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_611_1.01,-74.9058715,39.49744,424A WILLOW AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_611_1.02,-74.8172645,39.5649875,424 WILLOW AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_611_10,-74.46881918,39.4928424,413 VINE AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_611_2,-74.88002309,39.60263273,422 WILLOW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_611_3,-74.554399,39.3676015,420 WILLOW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_611_4,-74.5751815,39.428746,418 WILLOW AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_611_5,-74.9791796,39.51205053,414 WILLOW AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_611_6,-74.731477,39.4540765,412 WILLOW AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_611_7.01,-74.50415933,39.32929401,423A VINE AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_611_7.02,-74.48467103,39.34926668,423 VINE AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_611_8.01,-74.49718553,39.33163682,419 VINE AVE,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_611_8.02,-74.49202705,39.52241642,417 VINE AVE,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_611_9,-74.54162681,39.41906042,415 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_612_1.01,-74.51415076,39.50323981,410 WILLOW AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_612_1.02,-74.53808627,39.39059842,408 WILLOW AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_612_2,-74.80600127,39.64845201,411 VINE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_612_3.01,-74.87572964,39.6024593,406 WILLOW AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_612_3.02,-74.60485083,39.59348287,409 VINE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_612_3.03,-74.83501027,39.44891315,407 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_612_3.04,-74.78710982,39.31285005,405 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_612_4,-74.58535,39.3572905,404 WILLOW AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_612_5,-74.579892,39.4298115,402 WILLOW AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_612_6.01,-74.637687,39.399506,400A WILLOW AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_612_6.02,-74.71345687,39.58237815,403 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_612_6.03,-74.756662,39.4331345,401 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_612_6.04,-74.63910185,39.53307854,400 WILLOW AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_613_1.01,-74.61823732,39.43120698,328 WILLOW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_613_1.02,-74.5326385,39.405111,324A WILLOW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_613_1.03,-74.51325916,39.46163978,324 WILLOW AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_613_1.04,-74.79764,39.622009,322A WILLOW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_613_1.05,-74.58986335,39.32008891,326 WILLOW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_613_2,-74.78974253,39.65731566,322 WILLOW AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_613_3,-74.51529667,39.3226805,320 WILLOW AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_613_4,-74.50904717,39.40561357,318 WILLOW AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_613_5.01,-74.59664199,39.37833604,327 VINE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_613_5.02,-74.5025375,39.417155,329 VINE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_613_6.01,-74.7356935,39.4360395,325 VINE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_613_6.02,-74.649265,39.529729,323 VINE AVE,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_613_7,-74.90544369,39.50630158,321 VINE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_613_8,-74.4623837,39.35872701,331 VINE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_614_1,-74.48615919,39.33611383,131 ADAMS AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_614_10,-74.53862552,39.37931266,319 VINE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_614_11,-74.49718884,39.49960047,317 VINE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_614_12,-74.7102015,39.4749575,315 VINE AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_614_13,-74.58994462,39.50516981,313 VINE AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_614_14.01,-74.4650585,39.3443875,311 VINE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_614_14.02,-74.615143,39.3827215,309 VINE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_614_15,-74.60903832,39.31960166,305-307 VINE AVE,GALLOWAY TWP,16,1923,2,RES1,3001 -0111_614_17,-74.65030433,39.45799757,301 VINE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_614_2,-74.50567383,39.3352445,314 WILLOW AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_614_3,-74.42495461,39.37014168,312 WILLOW AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_614_4,-74.76188358,39.44513406,310 WILLOW AVE,GALLOWAY TWP,16,2003,1,RES3B,3004 -0111_614_5.01,-74.87285619,39.52305403,308A WILLOW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_614_5.02,-74.94365,39.5243085,308 WILLOW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_614_6,-74.45704513,39.34828219,306 WILLOW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_614_7,-74.83086128,39.42645258,304 WILLOW AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_614_8,-74.48790684,39.43359448,302 WILLOW AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_614_9,-74.53442974,39.30536014,300 WILLOW AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_615_1.01,-74.59112984,39.39398559,422A VINE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_615_1.02,-74.57025106,39.42711437,422 VINE AVE,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_615_10.01,-74.6293,39.4281055,419A UPAS AVE,GALLOWAY TWP,16,1994,1,RES3A,3001 -0111_615_10.02,-74.3666155,39.418801,419 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_615_11.01,-74.64767809,39.43114031,417A UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_615_11.02,-74.46336235,39.35797141,417 UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_615_12,-74.54636816,39.37424803,415 UPAS AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_615_2,-74.50074532,39.53733634,420 VINE AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_615_3,-74.4516925,39.357363,418 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_615_4,-74.92896751,39.51625282,416 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_615_5,-74.61844999,39.62229216,414 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_615_6,-74.6031442,39.3249567,412 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_615_7,-74.39840975,39.38629854,125 FILMORE AVE,GALLOWAY TWP,16,1993,1,RES1,3004 -0111_615_9,-74.515105,39.401671,421 UPAS AVE,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_616_1.01,-74.6377976,39.36142632,410 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_616_1.02,-74.64012717,39.38117049,408 VINE AVE,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_616_10,-74.5508945,39.4642675,124 BUCHANAN AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_616_2,-74.461149,39.355158,406 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_616_3,-74.57005342,39.49750336,404 VINE AVE,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_616_4.01,-74.93457631,39.51177976,402 VINE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_616_4.02,-74.49157377,39.44586547,400 VINE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_617_2,-74.54114648,39.37560786,324 VINE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_617_9,-74.75216399,39.45312067,323 UPAS AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_618_1.01,-74.46226883,39.350486,316 VINE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_618_1.02,-74.475554,39.48485914,314 VINE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_618_10,-74.48838765,39.33493452,309A UPAS AVE,GALLOWAY TWP,16,2018,1,RES1,3001 -0111_618_12,-74.92587626,39.50779498,307 UPAS AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_618_13,-74.88421746,39.59551007,305 UPAS AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_618_14,-74.4979801,39.33125667,303 UPAS AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_618_15,-74.57882202,39.54597726,124 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1977,1,GOV1,3004 -0111_618_3.01,-74.80928906,39.64816393,312 VINE AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_618_3.02,-74.59157692,39.32586017,306 VINE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_618_4,-74.59396366,39.32464493,304 VINE AVE,GALLOWAY TWP,16,2009,1,RES1,3004 -0111_618_5,-74.621446,39.4245435,302 VINE AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_618_6,-74.4625675,39.3479805,300 VINE AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_618_7,-74.63669403,39.38473246,315 UPAS AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_618_8,-74.7836415,39.6078855,313 UPAS AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_619_1.01,-74.51083357,39.33339769,123A FILMORE AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_619_1.02,-74.58573148,39.35773947,123 FILMORE AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_619_2.01,-74.60262209,39.52799609,418 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_2.02,-74.60318182,39.32812994,416A UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_2.03,-74.49353475,39.41990056,416 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_3.01,-74.79023553,39.64443906,414A UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_3.02,-74.855779,39.4516795,414 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_3.03,-74.444301,39.3561065,412A UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_619_3.04,-74.47105,39.345566,412 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_4.01,-74.5276355,39.3840175,121 FILMORE AVE,GALLOWAY TWP,16,1993,1,RES3A,3001 -0111_619_4.02,-74.77654038,39.67096479,121A FILMORE AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_5.01,-74.72746511,39.56587515,421 TULIP AVE,GALLOWAY TWP,16,1994,1,RES3A,3001 -0111_619_5.02,-74.9388735,39.52379,419 TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_6.01,-74.60980033,39.44091547,417A TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_6.02,-74.64602374,39.53053334,417 TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_619_7,-74.39983982,39.39055166,415 TULIP AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_62_4,-74.46287136,39.45472244,1526 KENNEDY AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_62_5,-74.5546555,39.4750905,1524 KENNEDY AVE,GALLOWAY TWP,16,1920,1,RES3A,3001 -0111_620_5,-74.4968355,39.457994,122 BUCHANAN AVE,GALLOWAY TWP,16,2017,1,RES3A,3001 -0111_621_2,-74.60224331,39.36487354,332 UPAS AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_621_6,-74.50331782,39.51698115,318 UPAS AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_622_1.01,-74.90381753,39.5459834,316 UPAS AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_622_1.02,-74.57328218,39.37032352,314 UPAS AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_622_1.03,-74.5164022,39.31862715,306 UPAS AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_622_2,-74.86688002,39.59772772,304 UPAS AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_622_3,-74.64913062,39.34137265,122 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_623_1.01,-74.51802267,39.38892551,422 TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_623_1.02,-74.522665,39.394052,420A TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_623_10,-74.48711768,39.47051187,419 SPRUCE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_623_11,-74.667386,39.4620895,417 SPRUCE AVE,GALLOWAY TWP,16,1974,1,GOV1,3004 -0111_623_2.01,-74.5335755,39.389386,420 TULIP AVE,GALLOWAY TWP,16,1993,1,RES3A,3001 -0111_623_2.02,-74.52630637,39.3865782,418 TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_623_3,-74.50461252,39.33446134,416 TULIP AVE,GALLOWAY TWP,16,1994,1,COM1,3004 -0111_623_4,-74.64468645,39.36767076,414 TULIP AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_623_6,-74.91239727,39.53501273,427 SPRUCE AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_623_7,-74.47468068,39.34159828,425 SPRUCE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_623_9,-74.578445,39.3361825,421 SPRUCE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_624_11,-74.60152147,39.36346954,405 SPRUCE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_624_12,-74.4890135,39.5151925,403 SPRUCE AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_624_13,-74.40393206,39.38750825,401 SPRUCE AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_624_3.02,-74.59614438,39.34884912,409 SPRUCE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_624_4,-74.65219498,39.54492609,407 SPRUCE AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_624_7,-74.7244835,39.453506,415 SPRUCE AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_624_8,-74.5718055,39.5048305,413 SPRUCE AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_624_9,-74.4614105,39.4922785,411 SPRUCE AVE,GALLOWAY TWP,16,1984,1,COM1,3004 -0111_625_10,-74.5302925,39.308458,321 SPRUCE AVE,GALLOWAY TWP,16,1952,1,RES3B,3001 -0111_625_11.02,-74.46570678,39.34552492,319 SPRUCE AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_625_12,-74.48896443,39.33231782,317 SPRUCE AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_625_3,-74.604237,39.332573,327 SPRUCE AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_625_4,-74.50617959,39.32541616,325 SPRUCE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_625_5,-74.39459916,39.38665298,323 SPRUCE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_625_7,-74.4810335,39.3503475,318 TULIP AVE,GALLOWAY TWP,,1991,1,RES1,3002 -0111_625_8,-74.5596715,39.50050906,316 TULIP AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_626_1.01,-74.90759666,39.47384127,315 SPRUCE AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_626_10,-74.46195601,39.34778556,309 SPRUCE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_626_12,-74.37042554,39.40825636,305 SPRUCE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_626_14,-74.89805,39.4812485,116 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_626_6,-74.53442016,39.30573598,302 TULIP AVE,GALLOWAY TWP,15,1972,1,RES1,3001 -0111_626_7,-74.7024225,39.485888,118 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_626_8,-74.556817,39.39696983,313 SPRUCE AVE,GALLOWAY TWP,16,1966,1,RES1,3002 -0111_626_9,-74.60734844,39.37622425,311 SPRUCE AVE,GALLOWAY TWP,,1951,1,RES1,3002 -0111_627_1,-74.67170287,39.4155607,422 SPRUCE AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_627_11,-74.61088452,39.31605957,417 REDWOOD AVE,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_627_12,-74.835662,39.411304,415 REDWOOD AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_627_2.01,-74.579732,39.575073,420A SPRUCE AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_627_2.02,-74.593857,39.323831,420 SPRUCE AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_627_3,-74.437487,39.5187,418 SPRUCE AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_627_5,-74.61651832,39.34876779,414 SPRUCE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_627_6,-74.57064921,39.35369614,412 SPRUCE AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_627_7.01,-74.758666,39.4316635,410 SPRUCE AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_627_7.02,-74.5833275,39.3614505,410A SPRUCE AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_627_8.01,-74.9195145,39.5004065,423A REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_628_1,-74.54946841,39.38334832,408 SPRUCE AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_628_2,-74.645171,39.3628385,406 SPRUCE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_628_3,-74.50697132,39.45929492,404 SPRUCE AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_628_4,-74.46860548,39.48933182,402 SPRUCE AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_628_5,-74.55855935,39.4750212,400 SPRUCE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_629_1.01,-74.80103456,39.46481059,324A SPRUCE AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_629_1.02,-74.4817559,39.34174632,324 SPRUCE AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_629_10,-74.37393866,39.41621218,317 REDWOOD AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_629_11,-74.61419675,39.3830226,112 ADAMS AVE,GALLOWAY TWP,16,1986,1,RES1,3004 -0111_629_3,-74.37470368,39.41180389,323 REDWOOD AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_629_4.01,-74.7357885,39.4499045,320 SPRUCE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_629_4.02,-74.512418,39.3379705,318 SPRUCE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_629_5,-74.61757562,39.37122869,316 SPRUCE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_629_6,-74.5779365,39.442829,314 SPRUCE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_629_7,-74.38969099,39.39330333,312 SPRUCE AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_630_1.01,-74.78995679,39.52071343,310A SPRUCE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_630_1.02,-74.62400948,39.36971718,310 SPRUCE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_630_1.03,-74.565042,39.4166045,308 SPRUCE AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_630_10,-74.7261775,39.4573045,303 REDWOOD AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_630_11.01,-74.4766185,39.338389,301 REDWOOD AVE,GALLOWAY TWP,16,1985,1,COM7,3004 -0111_630_11.02,-74.6234845,39.31393,301A REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3002 -0111_630_2,-74.92760317,39.51631149,306 SPRUCE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_630_3.01,-74.88872883,39.56287695,304 SPRUCE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_630_3.02,-74.52880587,39.30894912,305A REDWOOD AVE,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_630_3.03,-74.5927894,39.35075073,305 REDWOOD AVE,GALLOWAY TWP,16,1996,1,RES1,3002 -0111_630_4.01,-74.638151,39.32088,302 SPRUCE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_630_4.02,-74.46502465,39.47273124,302A SPRUCE AVE,GALLOWAY TWP,16,2005,1,RES3A,3001 -0111_630_6,-74.60933859,39.36612956,313 REDWOOD AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_630_7,-74.72875119,39.64402448,311 REDWOOD AVE,GALLOWAY TWP,16,1985,1,RES3B,3001 -0111_630_8,-74.38159368,39.39483095,309 REDWOOD AVE,GALLOWAY TWP,16,1986,1,RES3B,3001 -0111_630_9,-74.465387,39.4772565,307 REDWOOD AVE,GALLOWAY TWP,16,1996,1,REL1,3004 -0111_631_2.01,-74.51562041,39.43855478,418 REDWOOD AVE,GALLOWAY TWP,16,1975,1,RES3A,3001 -0111_632_12.01,-74.4994995,39.469771,110 BUCHANAN AVE,GALLOWAY TWP,16,2001,1,RES3A,3001 -0111_632_12.02,-74.63293444,39.35138985,108 BUCHANAN AVE,GALLOWAY TWP,16,2001,1,RES1,3004 -0111_632_5,-74.80054657,39.64311725,400 REDWOOD AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_633_1,-74.48851683,39.43738054,328 REDWOOD AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_633_10.01,-74.5328095,39.4046025,333 QUINCE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_633_10.02,-74.54650576,39.40521059,331 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_633_11,-74.5534975,39.4669005,329 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_633_12,-74.39596706,39.38864672,327 QUINCE AVE,GALLOWAY TWP,16,2000,1,COM1,3004 -0111_633_13.01,-74.8022625,39.6409645,325 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_633_13.02,-74.46459326,39.34794216,323 QUINCE AVE,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_633_8.01,-74.93173703,39.52145148,339 QUINCE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_633_8.02,-74.4866015,39.3512135,337 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_633_9,-74.61563821,39.36466047,335 QUINCE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_634_1,-74.52785781,39.38408344,314 REDWOOD AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_634_10.01,-74.53940232,39.4538759,319 QUINCE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_634_10.02,-74.3699455,39.4169675,317 QUINCE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_634_10.03,-74.706542,39.574383,315 QUINCE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_634_11.01,-74.50952769,39.45695783,313 QUINCE AVE,GALLOWAY TWP,16,2009,1,RES1,3002 -0111_634_11.03,-74.7275785,39.4512135,307 QUINCE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_634_11.04,-74.562688,39.3886685,311 QUINCE AVE,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_634_12,-74.56503867,39.35962988,108 W JIMMIE LEEDS RD,GALLOWAY TWP,,1971,1,RES1,3001 -0111_634_2,-74.55470096,39.46483016,310 REDWOOD AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_634_4,-74.53026,39.401852,308 REDWOOD AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_634_5.01,-74.47247808,39.34166432,306A REDWOOD AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_634_5.02,-74.65012316,39.53190498,306 REDWOOD AVE,GALLOWAY TWP,16,1996,1,RES1,3002 -0111_634_6,-74.56295374,39.47050428,304 REDWOOD AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_634_7.01,-74.51560674,39.33039945,302A REDWOOD AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_634_7.02,-74.626038,39.419275,302 REDWOOD AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_634_9,-74.4575385,39.4912555,321 QUINCE AVE,GALLOWAY TWP,16,2006,1,COM1,3004 -0111_636_1.02,-74.38089003,39.41631819,417 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_636_1.03,-74.58385315,39.36165152,415 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_636_10.01,-74.610101,39.315406,405 POPLAR AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_636_10.02,-74.5087246,39.33103466,403 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_636_11,-74.51190134,39.32318248,401 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_636_6,-74.59305961,39.51620014,106 BUCHANAN AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_636_7,-74.5957316,39.41102233,413 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_636_8.01,-74.8257398,39.61421367,411 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_636_8.02,-74.59340722,39.36006262,409 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_636_9,-74.75757125,39.4466474,407 POPLAR AVE,GALLOWAY TWP,16,2001,1,REL1,3004 -0111_637_1.01,-74.6682795,39.392749,340 QUINCE AVE,GALLOWAY TWP,16,2000,1,REL1,3004 -0111_637_1.02,-74.63485413,39.52341207,338 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_637_2,-74.50798666,39.33184546,336 QUINCE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_637_3.01,-74.5008595,39.3306395,334 QUINCE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_637_3.02,-74.7529985,39.302116,332 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_637_4.01,-74.51359451,39.38503025,330 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_637_4.02,-74.37466816,39.3993398,328 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_637_4.03,-74.5662425,39.3585015,329 POPLAR AVE,GALLOWAY TWP,16,2000,1,AGR1,3001 -0111_637_4.04,-74.60455152,39.33158033,327 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_637_5.01,-74.58315292,39.32947324,326 QUINCE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_637_5.02,-74.60415531,39.48280556,324 QUINCE AVE,GALLOWAY TWP,16,2000,1,REL1,3004 -0111_637_6.01,-74.78481663,39.66449388,339 POPLAR AVE,GALLOWAY TWP,16,2000,1,AGR1,3001 -0111_637_6.02,-74.80108133,39.62741751,337 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES3A,3001 -0111_637_7,-74.504235,39.406372,335 POPLAR AVE,GALLOWAY TWP,16,2000,1,COM3,3004 -0111_637_8.01,-74.49485838,39.53755011,333 POPLAR AVE,GALLOWAY TWP,16,2000,1,AGR1,3001 -0111_637_8.02,-74.58125631,39.32933618,331 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_637_9.01,-74.92849645,39.50921836,325 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_637_9.02,-74.48979134,39.43242076,323 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_638_1.01,-74.820158,39.3638675,322 QUINCE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_638_1.02,-74.50711437,39.38464772,320 QUINCE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_638_2.01,-74.55613153,39.47157731,318 QUINCE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_638_2.02,-74.5687665,39.346865,316 QUINCE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_638_2.03,-74.49752669,39.4701968,314 QUINCE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_638_3.01,-74.9427375,39.5183585,312 QUINCE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_638_3.02,-74.4821775,39.443999,305 POPLAR AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_638_3.03,-74.61875444,39.43139289,308 QUINCE AVE,GALLOWAY TWP,16,2006,1,AGR1,3001 -0111_638_3.04,-74.64786203,39.43076676,310 QUINCE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_638_4.01,-74.56230442,39.41046143,306 QUINCE AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_638_4.02,-74.451328,39.498605,304 QUINCE AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_638_5,-74.7639845,39.490282,106 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_638_9,-74.64770582,39.52556845,303 POPLAR AVE,GALLOWAY TWP,16,1954,1,GOV1,3004 -0111_639_10.01,-74.7662325,39.6657365,423 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_639_10.02,-74.79338687,39.65147341,421 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_639_11,-74.59652762,39.32000506,419 ORANGE TREE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_639_6.01,-74.87941,39.592982,435 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_639_6.02,-74.60642631,39.4911228,433 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_639_7,-74.74709613,39.45178518,431 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_639_8.01,-74.496385,39.44744,429 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_639_8.02,-74.64781954,39.37843682,427 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_639_9,-74.8271795,39.6489825,425 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_64_7,-74.5755915,39.4128695,1517 CLEVELAND ST,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_64_8.02,-74.806759,39.6337075,1513 CLEVELAND ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_640_1,-74.53964067,39.375751,416 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_640_10,-74.6636028,39.34687193,407 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_11,-74.60251851,39.32835133,405 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_12.01,-74.7960855,39.6235185,403 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_12.02,-74.75470308,39.42966969,401 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_2.01,-74.64008,39.4364445,414 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_640_2.02,-74.9433375,39.523893,412 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3002 -0111_640_3.01,-74.700804,39.5076685,410 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_640_3.02,-74.504711,39.4812435,408 POPLAR AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_3.03,-74.57647319,39.36806077,406 POPLAR AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_4,-74.395428,39.38879706,404 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_640_5.01,-74.656532,39.626879,402 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_640_5.02,-74.50287691,39.44728665,400 POPLAR AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_640_6,-74.83987721,39.52525941,417 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_7.01,-74.38448444,39.39139334,415 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_7.02,-74.4964969,39.49338719,413 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_640_8,-74.58375282,39.43542514,411 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_640_9,-74.701373,39.57207,409 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_641_1.01,-74.58012096,39.34328046,340 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_1.02,-74.55336537,39.47003071,338 POPLAR AVE,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_641_2.01,-74.81234734,39.37174558,345 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_641_2.02,-74.50461417,39.32941195,343 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_641_3,-74.58751399,39.34853033,341 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_641_4.01,-74.93569908,39.5288673,339 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_641_4.02,-74.62946,39.412707,337 ORANGE TREE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_4.03,-74.48523666,39.33532501,335 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_641_4.04,-74.485191,39.3393965,336 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_4.05,-74.38444154,39.39625734,334 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_5.01,-74.46104203,39.49982317,332 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_5.02,-74.63545851,39.34854584,330 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_6,-74.47788721,39.33755743,328 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_7.01,-74.51940866,39.38913299,326 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_7.02,-74.4650605,39.3570495,324 POPLAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_641_8,-74.55928303,39.40624231,333 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_641_9.01,-74.53698722,39.43506459,331 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_641_9.02,-74.50561709,39.33224636,329 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES3A,3001 -0111_641_9.03,-74.635606,39.3072455,327 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES3A,3001 -0111_642_10,-74.36729756,39.40524617,303 ORANGE TREE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_642_11,-74.92766124,39.50829451,301 ORANGE TREE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_642_6,-74.59884018,39.43515453,102 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_642_7,-74.604307,39.3490755,101 ADAMS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_642_8,-74.66499971,39.46294404,315 ORANGE TREE AVE,GALLOWAY TWP,16,2011,1,RES1,3002 -0111_642_9,-74.75461427,39.43285953,307 ORANGE TREE AVE,GALLOWAY TWP,16,1960,1,RES3A,3001 -0111_643_2,-74.47873734,39.34591235,DUERER ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_645_1,-74.95503693,39.53902731,245 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_645_2,-74.801136,39.643291,316 S POMONA RD,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_645_4,-74.505825,39.4066245,223 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_645_7,-74.64786726,39.3311116,225 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_646_11,-74.441482,39.3570245,101 W JIMMIE LEEDS RD,GALLOWAY TWP,,1950,1,RES1,3001 -0111_646_12,-74.66853093,39.37974268,104 DUERER ST,GALLOWAY TWP,15,1954,1,RES1,3001 -0111_646_13,-74.59263228,39.51729694,106 DUERER ST,GALLOWAY TWP,15,1954,1,RES1,3001 -0111_646_14,-74.71363366,39.46624549,108 DUERER ST,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_646_15,-74.48481445,39.33890531,110 DUERER ST,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_646_16,-74.50724823,39.4610888,112 DUERER ST,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_646_3,-74.59407595,39.34914262,117 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1977,1,GOV1,3004 -0111_646_4,-74.77453016,39.62583072,115 W JIMMIE LEEDS RD,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_646_5,-74.52382,39.3221265,113 W JIMMIE LEEDS RD,GALLOWAY TWP,15,1950,1,RES1,3001 -0111_646_6,-74.60599737,39.50667818,111 W JIMMIE LEEDS RD,GALLOWAY TWP,15,1965,1,GOV1,3004 -0111_646_7,-74.60556546,39.41436118,109 W JIMMIE LEEDS RD,GALLOWAY TWP,15,1955,1,RES1,3001 -0111_646_8,-74.8848695,39.599569,107 W JIMMIE LEEDS RD,GALLOWAY TWP,15,1950,1,GOV1,3004 -0111_646_9,-74.80660028,39.63082609,105 W JIMMIE LEEDS RD,GALLOWAY TWP,15,1965,1,GOV1,3004 -0111_647_1,-74.46183996,39.34515882,DUERER ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_647_11,-74.48977222,39.44224502,229 ZURICH AVE,GALLOWAY TWP,16,1979,1,GOV1,3004 -0111_647_7,-74.870057,39.5935225,201 DUERER ST,GALLOWAY TWP,,0,1,RES1,3001 -0111_647_8.01,-74.52383864,39.46185752,259 ZURICH AVE,GALLOWAY TWP,16,1989,2,RES1,3001 -0111_647_8.02,-74.608375,39.3145055,255 ZURICH AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_647_8.03,-74.5715615,39.4281225,265 ZURICH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_647_9,-74.36876792,39.40770934,245 ZURICH AVE,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_648_10,-74.58836082,39.35750657,235 S POMONA RD,GALLOWAY TWP,,2003,1,RES1,3001 -0111_648_11,-74.81346885,39.63317703,225 S POMONA RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_648_13,-74.3612065,39.417064,221 S POMONA RD,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_648_2.02,-74.38175249,39.41756483,256 ZURICH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_648_3,-74.650888,39.523966,249 S POMONA RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_648_6.02,-74.53655635,39.38747304,222 ZURICH AVE,GALLOWAY TWP,16,1992,1,AGR1,3001 -0111_648_6.03,-74.37408317,39.41444848,220 ZURICH AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_648_7,-74.533682,39.314618,218 ZURICH AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_648_9,-74.6578185,39.5505535,ZURICH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_649_1.01,-74.73632302,39.46670616,174 S GENOA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_649_1.02,-74.35511604,39.41446416,170 S GENOA AVE,GALLOWAY TWP,16,1975,1,RES3A,3001 -0111_649_10,-74.77968998,39.60699811,225 HERSCHEL ST,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_649_12.01,-74.58260132,39.42242698,153 ZURICH AVE,GALLOWAY TWP,15,1930,1,RES1,3001 -0111_649_12.02,-74.83537285,39.4936348,145 ZURICH AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_649_13,-74.80341562,39.63367208,143 ZURICH AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_649_14.02,-74.5070005,39.3365695,135 ZURICH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_649_14.03,-74.5884979,39.43000125,131 ZURICH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_649_15.01,-74.6410815,39.4607765,125 ZURICH AVE,GALLOWAY TWP,16,1997,2,IND2,3002 -0111_649_15.02,-74.58988757,39.37565725,119 ZURICH AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_649_15.03,-74.72173265,39.57149351,117 ZURICH AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_649_15.04,-74.78854982,39.63783282,113 ZURICH AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_649_16.01,-74.50535964,39.49352021,214 LIEBIG ST,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_649_16.02,-74.7060135,39.4192645,210 LIEBIG ST,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_649_17,-74.945131,39.51796,109 ZURICH AVE,GALLOWAY TWP,16,2005,2,RES1,3001 -0111_649_18,-74.5609424,39.36722788,204 LIEBIG ST,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_649_2.01,-74.50207029,39.42362274,229 HERSCHEL ST,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_649_2.02,-74.88264459,39.60039474,227 HERSCHEL ST,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_649_3.01,-74.5957399,39.31262788,162 S GENOA AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_649_3.02,-74.50455761,39.33193468,158 S GENOA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_649_3.03,-74.5104305,39.486714,154 S GENOA AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_649_4,-74.489296,39.335441,150 S GENOA AVE,GALLOWAY TWP,16,1905,1,GOV1,3004 -0111_649_5.01,-74.5918955,39.324717,134 S GENOA AVE,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_649_5.02,-74.8752105,39.591346,128 S GENOA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_649_5.03,-74.6079625,39.387303,124 S GENOA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_649_6.01,-74.55140491,39.37767084,122 S GENOA AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_649_6.02,-74.57838724,39.33386324,118 S GENOA AVE,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_649_7.01,-74.88360385,39.59576754,114 S GENOA AVE,GALLOWAY TWP,16,2008,1,GOV1,3004 -0111_649_7.02,-74.587032,39.3218765,112 S GENOA AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_649_8.01,-74.50755989,39.40541879,108 S GENOA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_649_8.02,-74.54073991,39.46006792,106 S GENOA AVE,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_65_3,-74.52440281,39.52421632,1516 CLEVELAND ST,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_65_6,-74.62740216,39.35917554,533 WILSON AVE,GALLOWAY TWP,16,1945,1,GOV1,3004 -0111_650_10.01,-74.57048648,39.34070067,146 LIEBIG ST,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_650_10.02,-74.73357708,39.64738423,140 LIEBIG ST,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_650_10.03,-74.5190715,39.534015,132 LIEBIG ST,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_650_11,-74.67938003,39.51189534,108 ZURICH AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_650_12,-74.56941976,39.42835996,187 S POMONA RD,GALLOWAY TWP,15,1971,1,RES1,3001 -0111_650_13,-74.717109,39.574831,161 S POMONA RD,GALLOWAY TWP,16,1961,1,GOV1,3004 -0111_650_16.01,-74.44969287,39.35626033,127 S POMONA RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_650_16.02,-74.60159,39.3415655,125 S POMONA RD,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_650_16.04,-74.78354792,39.66381964,121 S POMONA RD,GALLOWAY TWP,16,2015,1,RES1,3001 -0111_650_17.01,-74.50481384,39.32964599,104 LIEBIG ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_650_17.03,-74.90415382,39.53414503,118 LIEBIG ST,GALLOWAY TWP,17,1991,1,RES1,3001 -0111_650_17.04,-74.64715883,39.52811601,124 LIEBIG ST,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_650_3.01,-74.60682706,39.34953337,162 ZURICH AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_650_3.02,-74.47902231,39.34956488,158 ZURICH AVE,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_650_4,-74.6295386,39.40951516,148 ZURICH AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_650_5,-74.65347843,39.35245829,146 ZURICH AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_650_6,-74.4757125,39.448907,138 ZURICH AVE,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_650_7,-74.42220222,39.37436717,128 ZURICH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_650_8,-74.49634652,39.43069393,136 ZURICH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_653_1,-74.611506,39.32661167,253 LIEBIG ST,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_653_14,-74.4901365,39.3381215,249 LIEBIG ST,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_653_15,-74.5079465,39.4188665,247 LIEBIG ST,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_653_16,-74.55153078,39.38438362,245 LIEBIG ST,GALLOWAY TWP,16,1950,1,GOV1,3004 -0111_653_17,-74.6320945,39.3579395,243 LIEBIG ST,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_653_18,-74.60444094,39.39092998,241 LIEBIG ST,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_656_28.01,-74.56766364,39.34276878,219 LIEBIG ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_656_28.02,-74.45128551,39.35656825,213 LIEBIG ST,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_656_28.03,-74.640002,39.358979,207 LIEBIG ST,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_656_28.04,-74.81638083,39.36142446,201 LIEBIG ST,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_659_91.01,-74.60638891,39.33240517,230 W MOSS MILL RD,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_659_91.02,-74.5331045,39.38007,228 W MOSS MILL RD,GALLOWAY TWP,16,1992,2,GOV1,3004 -0111_659_92,-74.65336096,39.45830156,222 W MOSS MILL RD,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_659_93,-74.64608992,39.40645364,212 W MOSS MILL RD,GALLOWAY TWP,16,2007,1,RES3A,3001 -0111_663.01_55.01,-74.560947,39.355898,146 W MOSS MILL RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_663.01_55.04,-74.60726064,39.3925148,150 RUTGERS CT,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_663.01_55.05,-74.62119866,39.49264599,148 RUTGERS CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_663.01_55.06,-74.50007047,39.32704633,146 RUTGERS CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_663.01_55.07,-74.36324137,39.41100319,144 RUTGERS CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_663.01_55.08,-74.65142203,39.46765483,142 RUTGERS CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_663.01_55.09,-74.755095,39.429428,140 RUTGERS CT,GALLOWAY TWP,16,1978,1,GOV1,3004 -0111_663.01_55.23,-74.602715,39.499663,8 HARVARD TERR,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_663.01_55.24,-74.56421256,39.47898619,6 HARVARD TERR,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_663.01_55.25,-74.61039513,39.59372453,4 HARVARD TERR,GALLOWAY TWP,16,1978,1,IND2,3002 -0111_663.01_55.26,-74.813797,39.630542,2 HARVARD TERR,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_663.01_62.01,-74.5824046,39.4737858,72 LISA DR,GALLOWAY TWP,16,1979,1,GOV1,3004 -0111_663.01_62.02,-74.588087,39.3264195,70 LISA DR,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_663.01_62.03,-74.47033261,39.45272062,68 LISA DR,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_663.01_62.05,-74.59203273,39.3790321,64 LISA DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_663.01_62.07,-74.63467741,39.43216058,60 LISA DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_663.01_62.09,-74.6347685,39.429,63 LISA DR,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_663.01_62.11,-74.8345075,39.597139,67 LISA DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_663.01_62.12,-74.60667657,39.31860281,69 LISA DR,GALLOWAY TWP,16,1979,1,GOV1,3004 -0111_663.01_62.13,-74.37924924,39.41352615,71 LISA DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_663.01_63,-74.57451584,39.3369789,121 LIEBIG ST,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_663.01_64.01,-74.62562608,39.41344248,143 LIEBIG ST,GALLOWAY TWP,16,2008,2,RES1,3001 -0111_663.01_64.02,-74.9137515,39.50937,137 LIEBIG ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_663.01_64.03,-74.484021,39.4763075,129 LIEBIG ST,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_663.01_64.04,-74.62476463,39.40548673,127 LIEBIG ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_663.01_64.05,-74.5515055,39.3610385,125 LIEBIG ST,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_663.02_1,-74.502563,39.325083,144 W MOSS MILL RD,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_663.02_10,-74.48227334,39.34216296,143 RUTGERS CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_663.02_11,-74.50130965,39.49085336,145 RUTGERS CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_663.02_2,-74.47575441,39.4830988,142 W MOSS MILL RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_663.02_3,-74.47089946,39.48329573,140 W MOSS MILL RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_663.02_4,-74.82817247,39.56762119,138 W MOSS MILL RD,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_663.02_5,-74.47367429,39.49267479,3 HARVARD TERR,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_663.02_6,-74.513818,39.4407325,5 HARVARD TERR,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_663.02_7,-74.55493862,39.52665247,7 HARVARD TERR,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_663.02_8,-74.71044394,39.4664303,139 RUTGERS CT,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_663.02_9,-74.533797,39.3838915,141 RUTGERS CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_669_1,-74.9425635,39.525176,75 S POMONA RD,GALLOWAY TWP,,2008,1,GOV1,3004 -0111_669_6.01,-74.48417734,39.33669449,6 W MOSS MILL RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_669_6.02,-74.60023933,39.37914449,10 W MOSS MILL RD,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_669_6.03,-74.5678086,39.5055604,16 W MOSS MILL RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_669_7,-74.5237633,39.45808289,20 W MOSS MILL RD,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_67_2,-74.658037,39.395334,DETROIT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_671.01_3,-74.86540997,39.59215965,100 W MOSS MILL RD,GALLOWAY TWP,,1961,1,GOV1,3004 -0111_671_2,-74.5634985,39.4715255,27 W MOSS MILL RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_671_3,-74.48873761,39.46804399,23 W MOSS MILL RD,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_671_8,-74.6596835,39.5187825,13 W MOSS MILL RD,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_681.01_1.01,-74.4933466,39.34177469,100 N GENOA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_681.01_1.02,-74.88559861,39.46935102,104 N GENOA AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_681.01_1.03,-74.4140745,39.370451,106 N GENOA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_681.01_4,-74.88780383,39.57658509,GENOA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_681.01_5,-74.89401399,39.55242617,226 N GENOA AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_681.01_6.01,-74.519096,39.318834,234 LENAPE RD,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_681.01_6.02,-74.83156379,39.48795655,228 LENAPE RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_681.01_6.03,-74.784952,39.4198135,222 LENAPE RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_681.01_7,-74.66238011,39.40232938,210 LENAPE RD,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_681.01_8.01,-74.63963953,39.41261316,200 LENAPE RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_681.02_1,-74.61486402,39.31969216,232 GALLEY CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_681.02_12,-74.52249817,39.32072883,264 HIDDEN CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_681.02_13,-74.65250437,39.3455669,266 HIDDEN CT,GALLOWAY TWP,16,2017,1,COM1,3004 -0111_681.02_14,-74.59416964,39.31128046,268 HIDDEN CT,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_681.02_15,-74.60267796,39.32886,274 HIDDEN CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_681.02_16,-74.64022,39.3221765,254 COLOGNE-PORT RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_681.02_17,-74.49342936,39.34337185,222 COLOGNE-PORT RD,GALLOWAY TWP,16,1963,1,GOV1,3004 -0111_681.02_18,-74.49193934,39.34089029,208 COLOGNE-PORT RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_681.02_19,-74.83398561,39.64229446,200 COLOGNE-PORT RD,GALLOWAY TWP,16,1972,2,GOV1,3004 -0111_681.02_2,-74.88946657,39.47009799,228 GALLEY CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_681.02_20,-74.510772,39.3318105,250 COLOGNE-PORT RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_681.02_21,-74.63015525,39.39261554,246 COLOGNE-PORT RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_681.02_22,-74.92628278,39.50782997,242 COLOGNE-PORT RD,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_681.02_23,-74.5551045,39.372055,238 COLOGNE-PORT RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_681.02_24,-74.48936348,39.42237431,267 GARDEN CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_681.02_25,-74.95221106,39.51781875,265 GARDEN CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_681.02_26,-74.82972614,39.36309267,264 GARDEN CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_681.02_27,-74.64051368,39.37193953,266 GARDEN CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_681.02_28,-74.54172832,39.38995859,268 GARDEN CT,GALLOWAY TWP,17,2001,1,RES1,3001 -0111_681.02_4,-74.75104956,39.63561189,225 GALLEY CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_681.02_5,-74.55735812,39.36745798,227 GALLEY CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_681.02_6,-74.80089275,39.63296254,229 GALLEY CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_681.02_8,-74.4995785,39.4225275,272 COLOGNE-PORT RD,GALLOWAY TWP,16,1998,1,GOV1,3004 -0111_681.02_9.02,-74.3791135,39.417673,267 HIDDEN CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_681.02_9.03,-74.5044375,39.3321435,265 HIDDEN CT,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_693_1,-74.48572361,39.33555717,233 LENAPE RD,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_693_2,-74.702745,39.4771955,204 N GENOA AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_693_3,-74.551813,39.4715165,210 - 212 N GENOA AVE,GALLOWAY TWP,16,1935,2,RES1,3001 -0111_693_4,-74.538275,39.387634,211 LENAPE RD,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_693_6,-74.62369332,39.38068687,201 LENAPE RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_694_14,-74.59965376,39.43353821,249 COLOGNE-PORT RD,GALLOWAY TWP,16,1987,2,RES1,3001 -0111_694_15,-74.57392672,39.34469516,247 COLOGNE-PORT RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_694_16,-74.437056,39.3692315,245 COLOGNE-PORT RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_694_17,-74.37684729,39.41317969,241 COLOGNE-PORT RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_694_18,-74.60143172,39.42099683,237 COLOGNE-PORT RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_694_19,-74.424134,39.3712545,233 COLOGNE-PORT RD,GALLOWAY TWP,16,1984,1,GOV1,3004 -0111_694_20,-74.596022,39.3828575,227 COLOGNE-PORT RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_694_4,-74.84065298,39.44505071,259 COLOGNE-PORT RD,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_694_6,-74.8011365,39.63419367,257 COLOGNE-PORT RD,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_694_7,-74.83025118,39.40963394,255 COLOGNE-PORT RD,GALLOWAY TWP,16,1978,2,RES1,3001 -0111_694_8,-74.7482029,39.44647122,314 N GENOA AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_694_9,-74.48138643,39.35073782,322 N GENOA AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_695_1,-74.513389,39.460047,223 COLOGNE-PORT RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_695_2,-74.60235844,39.31124821,215 COLOGNE-PORT RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_695_3,-74.46110693,39.35637882,209 COLOGNE-PORT RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_696_1,-74.51792683,39.32171201,363 COLOGNE-PORT RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_697_1,-74.81542929,39.37155602,330 N GENOA AVE,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_697_2.01,-74.599721,39.3138075,338 N GENOA AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_697_2.02,-74.3810205,39.3982415,340 N GENOA AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_70_5,-74.5194535,39.3980295,1511 SHAFFER AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_700_1,-74.49203741,39.33430767,344 N GENOA AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_700_5,-74.51901532,39.39296747,201 DELKER BLVD,GALLOWAY TWP,16,1980,2,RES1,3001 -0111_701_1,-74.50730033,39.33386922,356 N GENOA AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_701_7,-74.94029492,39.52641664,333 DELKER BLVD,GALLOWAY TWP,51,2009,1,RES1,3001 -0111_703_1,-74.58306031,39.41413423,208 CLARKS LANDING RD,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_703_2,-74.56522586,39.36143776,202 CLARKS LANDING RD,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_704_1.01,-74.91477282,39.48233327,207 CLARKS LANDING RD,GALLOWAY TWP,,1980,1,GOV1,3004 -0111_704_1.02,-74.6739605,39.357943,209 CLARKS LANDING RD,GALLOWAY TWP,,1975,1,RES1,3001 -0111_704_2,-74.57205361,39.36033389,201 CLARKS LANDING RD,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_704_5,-74.60382187,39.32966117,GENOA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_704_6,-74.64802544,39.43126068,GENOA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_705_1,-74.38645216,39.39203403,137 W WHITE HORSE PIKE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_705_2,-74.5829825,39.4190095,135 W WHITE HORSE PIKE,GALLOWAY TWP,16,1930,1,GOV1,3004 -0111_705_3,-74.623937,39.6245745,465 UPAS AVE,GALLOWAY TWP,16,1965,2,RES1,3001 -0111_705_4,-74.5161265,39.4024655,463A UPAS AVE,GALLOWAY TWP,15,1965,2,RES1,3001 -0111_706_1.01,-74.7823985,39.6525,458 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_706_1.02,-74.5276585,39.3856515,456 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_706_10,-74.4887645,39.334731,459 UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_706_11,-74.55883139,39.52936812,457 UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_706_12,-74.3945405,39.394957,455 UPAS AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_706_13,-74.53155646,39.30827258,453 UPAS AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_706_14.01,-74.92453519,39.51120422,124 HAYES AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_706_14.02,-74.94776024,39.51930172,124A HAYES AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_706_2,-74.4844205,39.3484835,454 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_706_4,-74.406678,39.381998,452 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_706_5,-74.46559159,39.49445621,450 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_706_6,-74.78924543,39.64262936,448 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_706_7.01,-74.70387463,39.46844419,446 VINE AVE,GALLOWAY TWP,16,1988,1,RES2,3005 -0111_706_7.02,-74.44337659,39.36949723,446A VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_706_8.01,-74.571197,39.3755995,463 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_706_8.02,-74.60093,39.327296,461A UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_706_9,-74.53498741,39.38193864,461 UPAS AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_707_1.01,-74.615173,39.324657,444A VINE AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_707_1.02,-74.62168087,39.42526325,444 VINE AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_707_10,-74.41600917,39.36836994,441 UPAS AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_707_2,-74.78002114,39.51849777,442 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_707_3,-74.38331229,39.41727001,440 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_707_4.01,-74.63243548,39.42229168,438A VINE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_707_4.02,-74.52618602,39.38840195,438 VINE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_707_5,-74.799659,39.4363605,436 VINE AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_707_6,-74.58160169,39.40796853,123 HAYES AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_707_7.01,-74.547212,39.47051,447A UPAS AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_707_7.02,-74.39153114,39.38792657,447 UPAS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_707_8.01,-74.645901,39.394905,445A UPAS AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_707_8.02,-74.65391092,39.52514637,445 UPAS AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_707_8.03,-74.365288,39.4172445,443A UPAS AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_707_9,-74.6378865,39.40004,443 UPAS AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_708_1,-74.5901535,39.3306095,434 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_708_10.01,-74.5049465,39.4153595,429 UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_708_10.02,-74.5901895,39.322331,427 UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_708_11.01,-74.48125799,39.35062983,124 FILMORE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_708_11.02,-74.5888545,39.3478515,126 FILMORE AVE,GALLOWAY TWP,16,1993,2,RES1,3001 -0111_708_2,-74.716837,39.6411965,432 VINE AVE,GALLOWAY TWP,16,1985,1,RES3A,3002 -0111_708_3,-74.84956366,39.61244151,430 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_708_4.01,-74.50476435,39.32397918,428 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_708_4.02,-74.54831172,39.47267957,426 VINE AVE,GALLOWAY TWP,16,1984,1,COM4,3004 -0111_708_5,-74.54878,39.3772215,424 VINE AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_708_6.01,-74.52400241,39.32009097,439 UPAS AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_708_6.02,-74.608046,39.503271,437 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_708_7,-74.78422556,39.42024646,435 UPAS AVE,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_708_9,-74.8082915,39.5542155,431 UPAS AVE,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_709_1.01,-74.38110929,39.41664854,456 UPAS AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_709_1.02,-74.62342,39.4231985,454 UPAS AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_709_1.03,-74.87527041,39.5941334,452 UPAS AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_709_2,-74.5263725,39.394474,127 W WHITE HORSE PIKE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_709_3.01,-74.61096914,39.34879816,122 JOHNSON AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_709_3.02,-74.4866815,39.336734,120 JOHNSON AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_71_1.02,-74.81658999,39.56362831,646 PERSHING AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_71_3,-74.8084615,39.6309755,1516 SHAFFER AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_710_1.01,-74.63875449,39.38308216,450A UPAS AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_710_1.02,-74.53151683,39.37685246,450 UPAS AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_710_2.01,-74.531308,39.470239,448 UPAS AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_710_2.02,-74.61538502,39.32296267,446 UPAS AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_710_3,-74.86739623,39.43464134,444 UPAS AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_710_4.01,-74.485163,39.434117,442A UPAS AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_710_4.02,-74.6022873,39.40781492,442 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_710_5,-74.515542,39.327567,451 TULIP AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_710_6.01,-74.48649698,39.33652717,449A TULIP AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_710_6.02,-74.57797216,39.35038908,449 TULIP AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_710_7,-74.517195,39.394022,447 TULIP AVE,GALLOWAY TWP,16,1965,2,RES1,3001 -0111_710_9,-74.6750235,39.5090495,443 TULIP AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_711_1,-74.50758722,39.45058787,121 HAYES AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_711_10.01,-74.60941677,39.3755532,433A TULIP AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_711_10.02,-74.4685985,39.491438,433 TULIP AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_711_3,-74.6069515,39.3108525,436 UPAS AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_711_4,-74.49051529,39.33939834,434 UPAS AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_711_5,-74.60101697,39.31983025,432 UPAS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_711_6,-74.492596,39.3369295,441 TULIP AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_711_7.01,-74.58492741,39.49456259,439A TULIP AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_711_7.02,-74.3831665,39.393545,439 TULIP AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_711_8,-74.63672816,39.40985281,437 TULIP AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_711_9,-74.50476908,39.33250116,435 TULIP AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_712_1.01,-74.50738642,39.40533468,430 UPAS AVE,GALLOWAY TWP,16,1978,1,RES1,3003 -0111_712_1.02,-74.5227285,39.3949085,428 UPAS AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_712_10,-74.37103742,39.40155432,423A TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_11.01,-74.51449701,39.32984067,423 TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_712_11.02,-74.58907875,39.45591015,421A TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_712_2.01,-74.71695,39.397983,426A UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_2.02,-74.53651073,39.38502134,426 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_3,-74.7537725,39.45217,424 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_4,-74.4479773,39.35625411,422 UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_5.01,-74.83384144,39.3754913,420A UPAS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_5.02,-74.45321276,39.49607887,420 UPAS AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_712_6.01,-74.51363482,39.41007596,431A TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_6.02,-74.54866549,39.36800039,431 TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_7.01,-74.79664263,39.62234527,429A TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_7.02,-74.75954247,39.43003374,429 TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_712_8,-74.58957228,39.45859853,427 TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_712_9.01,-74.61253606,39.32196584,425A TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_712_9.02,-74.53023308,39.37885677,425 TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_713_2,-74.59049993,39.34836416,466 TULIP AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_713_3.02,-74.83544539,39.61067808,475 SPRUCE AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_713_4.01,-74.59389871,39.37751253,473 SPRUCE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_713_4.02,-74.61623158,39.42894447,118 JOHNSON AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_713_4.03,-74.40632602,39.38291267,471 SPRUCE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_713_6.01,-74.50152318,39.32996818,469A SPRUCE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_713_6.02,-74.37568287,39.411652,469 SPRUCE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_714_1,-74.5875667,39.42874694,458 TULIP AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_714_10,-74.536366,39.313056,461 SPRUCE AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_714_11,-74.97298372,39.50915101,459 SPRUCE AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_714_12,-74.6291904,39.49168017,457 SPRUCE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_714_2,-74.788386,39.6420485,456 TULIP AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_714_3,-74.49852801,39.52865184,454 TULIP AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_714_4.01,-74.540936,39.389822,452A TULIP AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_714_4.02,-74.453949,39.4996405,452 TULIP AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_714_5,-74.4747595,39.4879955,450 TULIP AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_714_6.01,-74.56824048,39.35544327,448A TULIP AVE,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_714_6.02,-74.53554483,39.50150649,448 TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_714_7,-74.55978442,39.41584583,467 SPRUCE AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_714_8,-74.50059495,39.50075572,465 SPRUCE AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_714_9,-74.58976582,39.35247603,463 SPRUCE AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_715_1,-74.812444,39.6371625,446 TULIP AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_715_10,-74.69034017,39.36259249,SPRUCE AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_715_11,-74.4416745,39.366641,447 SPRUCE AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_715_12,-74.62244111,39.46336725,445 SPRUCE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_715_2,-74.37022987,39.40439483,444 TULIP AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_715_3,-74.9384585,39.5397065,442 TULIP AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_715_4,-74.6410411,39.52567756,440 TULIP AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_715_5,-74.60717156,39.48721772,438 TULIP AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_715_7.01,-74.5067415,39.4069975,434 TULIP AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_715_7.02,-74.59512178,39.35190746,443 SPRUCE AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_715_7.03,-74.696097,39.419683,432 TULIP AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_715_8,-74.55799574,39.35827137,455 SPRUCE AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_715_9,-74.8007025,39.6304525,451 SPRUCE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_716_1,-74.70024458,39.5704781,119 GARFIELD AVE,GALLOWAY TWP,16,1974,2,RES1,3001 -0111_716_2,-74.669672,39.5432585,430 TULIP AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_716_3.01,-74.49663906,39.52946034,428A TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_716_3.02,-74.90308899,39.49004001,437 SPRUCE AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_716_3.03,-74.36499517,39.40726499,428 TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_716_4.01,-74.505916,39.3291605,426A TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_716_4.02,-74.50052017,39.33028349,426 TULIP AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_716_4.03,-74.67557103,39.35597283,424A TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_716_4.04,-74.62355118,39.5198772,424 TULIP AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_716_5.01,-74.502063,39.33679883,441 SPRUCE AVE,GALLOWAY TWP,16,1974,1,COM3,3004 -0111_716_5.02,-74.874139,39.5232885,439 SPRUCE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_716_6,-74.38479884,39.39552452,435 SPRUCE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_716_7,-74.64178872,39.53580141,433 SPRUCE AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_716_8.02,-74.58816163,39.32124084,429 SPRUCE AVE,GALLOWAY TWP,16,1973,1,GOV1,3004 -0111_717_10,-74.3752185,39.4132045,475 REDWOOD AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_717_11,-74.5211119,39.38791624,473 REDWOOD AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_717_2,-74.56944718,39.36448952,474 SPRUCE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_717_3,-74.49926812,39.47271719,472 SPRUCE AVE,GALLOWAY TWP,16,1995,1,COM1,3004 -0111_717_4,-74.55577704,39.47532816,470 SPRUCE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_717_5,-74.48126254,39.33747117,468 SPRUCE AVE,GALLOWAY TWP,54,1950,1,RES1,3001 -0111_717_6,-74.4601575,39.3544915,466 SPRUCE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_717_7.01,-74.61226527,39.31816104,464 SPRUCE AVE,GALLOWAY TWP,16,1993,1,RES1,3004 -0111_717_7.02,-74.48389567,39.34141249,467 REDWOOD AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_717_8,-74.5097365,39.3258305,117 W WHITE HORSE PIKE,GALLOWAY TWP,16,1955,2,COM4,3002 -0111_718_1.01,-74.49796,39.500032,462 SPRUCE AVE,GALLOWAY TWP,16,1965,1,RES3A,3001 -0111_718_1.02,-74.632737,39.390714,460 SPRUCE AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_718_10,-74.41682634,39.36884226,459 REDWOOD AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_718_13,-74.50701491,39.33025634,453 REDWOOD AVE,GALLOWAY TWP,16,1950,1,RES3A,3001 -0111_718_14.01,-74.4939605,39.337363,451 REDWOOD AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_718_14.02,-74.4548925,39.3726875,449 REDWOOD AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_718_2,-74.365977,39.405932,458 SPRUCE AVE,GALLOWAY TWP,15,1952,1,COM1,3004 -0111_718_3,-74.51108839,39.32631935,456 SPRUCE AVE,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_718_4,-74.44933339,39.35575884,454 SPRUCE AVE,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_718_5,-74.58947927,39.32844261,452 SPRUCE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_718_7,-74.603369,39.3656735,113 JOHNSON AVE,GALLOWAY TWP,16,1957,1,COM8,3004 -0111_718_8,-74.371937,39.402672,463 REDWOOD AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_719_1.01,-74.70586677,39.63560146,448 SPRUCE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_719_1.02,-74.59690274,39.38488954,447A REDWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_719_2,-74.50613801,39.42368289,446 SPRUCE AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_719_3.02,-74.499106,39.3315175,442 SPRUCE AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_719_4,-74.96325165,39.51926076,440 SPRUCE AVE,GALLOWAY TWP,16,1983,1,COM1,3004 -0111_719_5,-74.595672,39.356047,438 SPRUCE AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_72_7,-74.57455567,39.34093723,1519 LINCOLN AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_72_9,-74.55644807,39.46615428,1513 LINCOLN AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_720_1.01,-74.6013725,39.5213365,434 SPRUCE AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_720_1.02,-74.47112692,39.48470817,436 SPRUCE AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_720_2.01,-74.5410535,39.391227,432 SPRUCE AVE,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_720_2.02,-74.61356,39.5054905,430 SPRUCE AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_720_4,-74.77512692,39.62501218,428 SPRUCE AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_720_5,-74.71419937,39.46737636,424 SPRUCE AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_720_6,-74.49426552,39.33531367,433 REDWOOD AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_720_7,-74.37049329,39.41693563,429 REDWOOD AVE,GALLOWAY TWP,16,1976,1,COM4,3004 -0111_720_8,-74.639812,39.4341445,427 REDWOOD AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_720_9,-74.77222877,39.30143503,425 REDWOOD AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_721_10.01,-74.516163,39.3873205,463 QUINCE AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_721_10.02,-74.62420589,39.43492037,461 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_721_7.02,-74.58731934,39.34798057,473 QUINCE AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_721_8.01,-74.78391655,39.63652774,471 QUINCE AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_721_8.02,-74.51423255,39.33100283,469 QUINCE AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_721_9.01,-74.54470182,39.37510266,467 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_721_9.02,-74.59991237,39.30803811,465 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3004 -0111_722_1,-74.61320944,39.34786131,458 REDWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_722_10,-74.81052241,39.63522986,453 QUINCE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_722_11,-74.60250436,39.38236939,451 QUINCE AVE,GALLOWAY TWP,16,1977,1,RES1,3004 -0111_722_2,-74.51199346,39.50452164,456 REDWOOD AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_722_3,-74.55257107,39.36288771,452 REDWOOD AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_722_4,-74.48480067,39.3494181,450 REDWOOD AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_722_5.02,-74.633701,39.3915265,446A REDWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_722_5.03,-74.61720603,39.31316181,446 REDWOOD AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_722_6,-74.8812185,39.4738605,109 JOHNSON AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_722_8,-74.7891293,39.67522392,457 QUINCE AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_723_1,-74.5509576,39.47581279,444 REDWOOD AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_723_6,-74.91148312,39.48130984,447 QUINCE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_724_1.01,-74.56474112,39.35376709,432A REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_724_1.02,-74.589654,39.3778735,432 REDWOOD AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_724_2,-74.35500666,39.41439103,430 REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_724_3,-74.89299846,39.54251934,428 REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_724_4.01,-74.62469573,39.37849734,426A REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_724_4.02,-74.541672,39.45806,426 REDWOOD AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_724_5.01,-74.5177585,39.465053,424A REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_724_5.02,-74.6174464,39.60195538,424 REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_724_6.01,-74.46143433,39.34578867,422A REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_724_6.03,-74.54651213,39.47553425,422 REDWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_725_1,-74.52544524,39.46664661,109 W WHITE HORSE PIKE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_725_10.01,-74.48496984,39.33591299,473 POPLAR AVE,GALLOWAY TWP,16,1996,1,COM1,3004 -0111_725_10.02,-74.6524595,39.5226895,471 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_725_11,-74.51077834,39.32734398,469 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_725_12.01,-74.8399785,39.4089835,467 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_725_12.02,-74.60622518,39.32578761,465 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_725_13.01,-74.4804555,39.3458605,463 POPLAR AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_725_13.02,-74.679268,39.5582025,106 JOHNSON AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_725_2,-74.514409,39.431083,476 QUINCE AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_725_3,-74.71837789,39.4407002,474 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_725_4,-74.52568077,39.45483694,472 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_725_5,-74.81155973,39.56106095,470 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_725_6.01,-74.50723349,39.46177217,468 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_725_6.02,-74.60600933,39.3505755,466 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_725_7,-74.507078,39.330897,464 QUINCE AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_725_8,-74.49708443,39.49820971,462 QUINCE AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_725_9.01,-74.499127,39.3321,477 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_725_9.02,-74.451858,39.4969065,475 POPLAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_726_11,-74.46007052,39.35092595,453 POPLAR AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_726_12,-74.49153457,39.43746493,451A POPLAR AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_726_13,-74.798093,39.621134,451 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_726_14.01,-74.5076255,39.4613415,449A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_726_14.02,-74.58906261,39.4128185,449 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_726_2,-74.8169385,39.4000585,458 QUINCE AVE,GALLOWAY TWP,16,1952,2,RES1,3001 -0111_726_3,-74.52913247,39.49796276,456 QUINCE AVE,GALLOWAY TWP,16,1952,1,RES1,3001 -0111_726_4,-74.536005,39.389651,454 QUINCE AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_726_5.02,-74.48394684,39.3457442,448 QUINCE AVE,GALLOWAY TWP,15,1946,1,RES1,3001 -0111_726_7,-74.531089,39.415812,446 QUINCE AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_726_9,-74.472578,39.4900005,457 POPLAR AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_727_2,-74.59384516,39.34547224,442 QUINCE AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_727_4,-74.3564195,39.4141415,436 QUINCE AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_727_6.01,-74.63489312,39.38427154,447A POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_727_6.02,-74.49826709,39.42884391,447 POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_727_6.03,-74.911638,39.515532,445A POPLAR AVE,GALLOWAY TWP,16,2004,1,COM3,3004 -0111_727_6.04,-74.49113201,39.42034086,445 POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_727_7.01,-74.520506,39.4014095,443A POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_727_7.02,-74.37324049,39.41128475,443 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_727_8.01,-74.454188,39.374225,441A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_727_8.02,-74.7800655,39.6351225,441 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_727_9.01,-74.9527325,39.5179165,439A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_727_9.02,-74.661547,39.403189,439 POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_728_5.01,-74.71237117,39.47428351,437A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_5.02,-74.80857765,39.63930122,437 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_5.03,-74.492026,39.49458301,435A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_6.01,-74.45429,39.500516,435 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_6.02,-74.50321827,39.32970768,433A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_7.01,-74.79885303,39.64397322,433 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_7.02,-74.4627895,39.4953405,431A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_8,-74.5078105,39.4069725,431 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_9.01,-74.37400649,39.41231171,429A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_728_9.02,-74.57156318,39.34381683,429 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_729_1,-74.44791508,39.3756633,105 W WHITE HORSE PIKE,GALLOWAY TWP,15,1951,6,RES1,3001 -0111_729_2.01,-74.963692,39.5291885,480 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_729_2.02,-74.57268009,39.34001266,478 POPLAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_729_2.03,-74.5020935,39.4301515,474 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_729_3.01,-74.65539234,39.4041637,472 POPLAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_729_3.02,-74.4698472,39.34573934,470 POPLAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_729_4,-74.70639747,39.56909251,468 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_729_5.01,-74.686176,39.652569,466 POPLAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_729_5.02,-74.5185755,39.386989,464 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_729_5.03,-74.52758168,39.39040758,462 POPLAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_730_1,-74.4782947,39.47963128,460 POPLAR AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_730_10,-74.49987481,39.43035924,453 ORANGE TREE AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_730_2,-74.35999091,39.41419289,458 POPLAR AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_730_3.01,-74.55268655,39.36561074,456 POPLAR AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_730_3.02,-74.54683579,39.47019247,454 POPLAR AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_730_5.01,-74.447224,39.3752265,450 POPLAR AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_730_5.02,-74.635162,39.5332365,448 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_730_6,-74.5736012,39.42578251,101 JOHNSON AVE,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_730_7,-74.3544135,39.414607,455 ORANGE TREE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_731_1.01,-74.84970438,39.41003436,446A POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_731_1.02,-74.88839271,39.5110455,446 POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_731_2,-74.45124294,39.49106451,444A POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_731_3.01,-74.5532355,39.4722505,444 POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_731_3.02,-74.560249,39.3620205,442A POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_731_4.01,-74.82589548,39.41071587,442 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_731_4.02,-74.6076868,39.34978967,440A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_731_5.01,-74.7661654,39.45315794,440 POPLAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_731_5.02,-74.80509655,39.63019616,438A POPLAR AVE,GALLOWAY TWP,16,2005,1,COM1,3004 -0111_731_5.03,-74.71276785,39.4718257,438 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_731_6,-74.58930428,39.3719822,101 HAYES AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_731_7,-74.92846985,39.51822548,445 ORANGE TREE AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_732_1,-74.605064,39.326916,436A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_732_2,-74.5980045,39.3801125,436 POPLAR AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_732_4.01,-74.55053664,39.52518796,432A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_732_4.04,-74.926075,39.5088205,432 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_732_4.05,-74.4522825,39.4782665,430A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_732_5.01,-74.62534419,39.41911608,430 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_732_5.02,-74.37529374,39.39933125,428A POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_732_6,-74.5283995,39.394803,428 POPLAR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_733_1,-74.39734136,39.38688531,93 W WHITE HORSE PIKE,GALLOWAY TWP,,2004,1,RES1,3001 -0111_733_3.02,-74.81298775,39.43254551,475 NECTAR AVE,GALLOWAY TWP,16,1996,1,COM1,3004 -0111_733_3.03,-74.82797502,39.40473584,473 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES3B,3001 -0111_733_3.04,-74.51057121,39.42826836,471 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_734_2,-74.95565191,39.52072825,468 NECTAR AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_736_1,-74.76434137,39.29970728,77 W WHITE HORSE PIKE,GALLOWAY TWP,,1961,1,COM3,3004 -0111_736_6,-74.65457114,39.4875783,485 CHRIS GAUPP DR,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_737_1,-74.50225315,39.33258013,472 CHRIS GAUPP DR,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_737_6,-74.60684716,39.36407428,37 MCKINLEY AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_738_1,-74.501794,39.326515,69 W WHITE HORSE PIKE,GALLOWAY TWP,,0,1,REL1,3003 -0111_739_1,-74.63483239,39.41792419,480 JUNIPER AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_739_2,-74.43771521,39.36654315,478 JUNIPER AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_739_9,-74.69269145,39.63287341,33 MCKINLEY AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_740_1,-74.673912,39.6159875,21 MORTON AVE,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_740_2,-74.45416755,39.48965352,23 MORTON AVE,GALLOWAY TWP,16,1870,1,RES1,3001 -0111_740_3,-74.52413074,39.4519902,493 HOLLY AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_740_4,-74.63296983,39.34766651,491 HOLLY AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_740_6,-74.6687505,39.351235,40 W WHITE HORSE PIKE,GALLOWAY TWP,15,1920,1,RES1,3001 -0111_741_1,-74.60273681,39.35317708,42 W WHITE HORSE PIKE,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_743_1,-74.41905164,39.36864052,31 MCKINLEY AVE,GALLOWAY TWP,16,1945,2,RES1,3001 -0111_744_10,-74.6213165,39.423848,463 NECTAR AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_744_11.01,-74.7345575,39.4411915,461 NECTAR AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_744_11.02,-74.64602154,39.43471983,459 NECTAR AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_744_13,-74.52017446,39.39058772,457 NECTAR AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_744_14,-74.52529026,39.44731689,455 NECTAR AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_744_3,-74.46983775,39.48938143,465 NECTAR AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_744_5,-74.5059395,39.425075,462 ORANGE TREE AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_744_8,-74.61198958,39.42109828,469 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_744_9,-74.42902942,39.37155616,467 NECTAR AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_745_1,-74.76172,39.445881,453 NECTAR AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_745_2.01,-74.77329547,39.30682584,454 ORANGE TREE AVE,GALLOWAY TWP,15,1965,1,RES1,3001 -0111_745_2.02,-74.37722606,39.39772617,451 NECTAR AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_745_5,-74.52091749,39.31591566,56 HAYES AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_745_6,-74.46250617,39.45455642,449 NECTAR AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_745_7,-74.38145452,39.41633072,447 NECTAR AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_745_8,-74.727706,39.642069,445 NECTAR AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_745_9,-74.6360685,39.3836705,443 NECTAR AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_746_1,-74.50449575,39.45642659,446 ORANGE TREE AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_746_10,-74.6202365,39.369693,433 NECTAR AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_746_11,-74.64150927,39.55024304,431A NECTAR AVE,GALLOWAY TWP,,1965,1,RES4,3001 -0111_746_2,-74.61790176,39.31056025,444 ORANGE TREE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_746_3,-74.619869,39.600445,442 ORANGE TREE AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_746_6,-74.6263055,39.4338135,441 NECTAR AVE,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_746_8,-74.6087665,39.4737045,437 NECTAR AVE,GALLOWAY TWP,16,1972,1,GOV1,3004 -0111_746_9,-74.7632962,39.43040031,435 NECTAR AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_747_10,-74.36056567,39.4169635,423 NECTAR AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_747_7.01,-74.80889415,39.64059547,431 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_747_7.02,-74.59086117,39.32588151,429A NECTAR AVE,GALLOWAY TWP,16,1997,1,GOV1,3004 -0111_747_7.03,-74.582058,39.485096,429 NECTAR AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_747_8,-74.4493325,39.4931355,427 NECTAR AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_747_9,-74.75536264,39.3022672,425 NECTAR AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_748_1,-74.6336539,39.34900809,466 NECTAR AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_748_2,-74.75024731,39.6071463,464 NECTAR AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_748_3,-74.55065919,39.38613279,462 NECTAR AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_748_4,-74.605806,39.3865495,460 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_748_5,-74.6033225,39.4991725,458 NECTAR AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_749_1.01,-74.83453087,39.53776231,452 NECTAR AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_749_1.02,-74.47157817,39.48438949,450 NECTAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_749_2,-74.48600482,39.33538203,448A NECTAR AVE,GALLOWAY TWP,16,1995,1,COM3,3004 -0111_749_3.01,-74.57393905,39.36637638,448 NECTAR AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_749_3.02,-74.896759,39.5543045,446A NECTAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_749_4.01,-74.599375,39.436006,446 NECTAR AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_749_4.02,-74.54194992,39.47242571,444A NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_749_5,-74.5095825,39.3355825,444 NECTAR AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_749_6,-74.68175575,39.39031031,49 JOHNSON AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_750_1,-74.65052163,39.52932443,442 NECTAR AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_750_11,-74.5344255,39.38297845,NECTAR AVE,GALLOWAY TWP,,0,1,RES1,3004 -0111_750_3.01,-74.72573281,39.59042514,438 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_750_3.02,-74.53152418,39.40119414,436 NECTAR AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_750_4,-74.734411,39.4358045,434 NECTAR AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_751_1,-74.80616837,39.62730613,432 NECTAR AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_751_2.01,-74.6882312,39.63069604,430 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_751_2.02,-74.593867,39.357636,428 NECTAR AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_751_4,-74.5075155,39.4245145,424 NECTAR AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_751_5,-74.5686635,39.4736825,MAPLE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_760_5,-74.76104957,39.44547087,456 CHRIS GAUPP DR,GALLOWAY TWP,,1995,1,RES1,3001 -0111_762_1,-74.5989785,39.4110285,436 CHRIS GAUPP DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_763_3,-74.812945,39.6521565,430 CHRIS GAUPP DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_769_12,-74.932397,39.488474,437 HOLLY AVE,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_770_10.01,-74.36877044,39.40212382,423 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_770_10.02,-74.521755,39.4247635,421 HOLLY AVE,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_770_3,-74.8068675,39.61209,HAYES AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_770_5,-74.48794089,39.33685632,32 GARFIELD AVE,GALLOWAY TWP,16,2006,1,COM1,3004 -0111_770_6.01,-74.5117155,39.324092,435 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_770_6.02,-74.78024528,39.64374852,433 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_770_7,-74.45727181,39.37344092,431 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_770_8.01,-74.48450347,39.43925814,429 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_770_8.02,-74.5752805,39.536633,427 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_770_9,-74.5028305,39.33096833,425 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_771_1,-74.4827594,39.33498032,31 GARFIELD AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_771_10,-74.373859,39.3984375,415 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_771_11.01,-74.584276,39.3585735,413 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_771_11.02,-74.765419,39.2997815,411 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_771_12.01,-74.56922101,39.36212083,409 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_771_12.02,-74.58906431,39.41644393,407 HOLLY AVE,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_771_12.03,-74.46079054,39.47429892,405 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_771_3,-74.49424252,39.45375218,IRONWOOD AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_771_8,-74.517127,39.5269045,419 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_771_9,-74.626909,39.3534745,417 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_772_1.01,-74.6243805,39.5063875,436 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_1.02,-74.73486658,39.43986275,434 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_10,-74.513754,39.325708,413 NECTAR AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_772_11.01,-74.76249051,39.63753067,411A NECTAR AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_772_11.02,-74.52208553,39.40204365,411 NECTAR AVE,GALLOWAY TWP,16,1997,1,COM3,3004 -0111_772_2,-74.50949118,39.40053403,432 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_3.01,-74.467655,39.346096,430 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_3.02,-74.6008345,39.415419,428 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_3.03,-74.81206693,39.45067178,426 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_4.01,-74.4806585,39.3471735,424 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_4.02,-74.6261402,39.43464148,422 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_5,-74.49830378,39.46032483,420 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_772_6.01,-74.83603182,39.59109608,421A NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_772_6.02,-74.74291766,39.49424549,421 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_772_7,-74.94878905,39.50880675,419 NECTAR AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_772_8,-74.4477005,39.37536,417 NECTAR AVE,GALLOWAY TWP,16,1941,1,COM1,3004 -0111_773_1,-74.48901759,39.33885267,418 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_773_10,-74.49945747,39.51912056,401 NECTAR AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_773_2,-74.6037455,39.313216,416 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_773_4,-74.71531915,39.44481318,412 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_773_5,-74.6230405,39.379614,410 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_773_6.01,-74.80486457,39.63716845,408 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_773_6.02,-74.48297762,39.53829185,403A NECTAR AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_773_6.03,-74.88545104,39.55760565,403 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_773_6.04,-74.614597,39.3876805,406 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,IND1,3002 -0111_773_6.05,-74.78386684,39.64260801,404 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_773_7.01,-74.78431593,39.64158978,402 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_773_7.02,-74.63812,39.5300395,400 ORANGE TREE AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_773_8,-74.5346045,39.3856225,409 NECTAR AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_773_9.01,-74.83684031,39.37506144,407 NECTAR AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_773_9.02,-74.58191873,39.35971618,405 NECTAR AVE,GALLOWAY TWP,16,1973,1,COM1,3002 -0111_774_1.01,-74.68949096,39.44801331,346 ORANGE TREE AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_774_1.02,-74.81398693,39.63678916,344 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_774_1.03,-74.58689492,39.36614226,342 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,COM1,3004 -0111_774_2.01,-74.76789169,39.34811516,340 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_774_2.02,-74.50622434,39.43852779,338 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_774_2.03,-74.44591495,39.49022217,336 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_774_3.01,-74.63858618,39.3367218,334 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_774_3.02,-74.52036328,39.38913516,332 ORANGE TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_774_4,-74.53421423,39.31513462,25 ADAMS AVE,GALLOWAY TWP,16,1978,1,RES3B,3001 -0111_774_5.01,-74.57570851,39.41118685,325 NECTAR AVE,GALLOWAY TWP,16,2000,1,RES1,3002 -0111_774_5.02,-74.610006,39.3211795,323 NECTAR AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_774_7.01,-74.574656,39.4264165,315A NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_774_7.02,-74.465557,39.3468005,315 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_775_10,-74.50659722,39.49225594,311 NECTAR AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_775_11.01,-74.4955555,39.4338365,309A NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_775_11.02,-74.49129817,39.49599989,309 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_775_12,-74.4750095,39.484698,307 NECTAR AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_775_13,-74.61086414,39.3495914,305 NECTAR AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_775_14.01,-74.511903,39.325224,303A NECTAR AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_775_14.02,-74.63001706,39.35128684,303 NECTAR AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_775_15,-74.48186169,39.43709353,301 NECTAR AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_775_2,-74.951496,39.5329935,318 ORANGE TREE AVE,GALLOWAY TWP,16,2012,1,RES3A,3001 -0111_775_3,-74.79896,39.633658,312 ORANGE TREE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_775_4,-74.61896755,39.49349467,310 ORANGE TREE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_775_5,-74.6024095,39.3310445,308 ORANGE TREE AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_775_7.01,-74.5035405,39.436749,306 ORANGE TREE AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_775_7.02,-74.528565,39.4558925,304 ORANGE TREE AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_775_8.01,-74.51814451,39.44946036,302 ORANGE TREE AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_775_8.02,-74.98112283,39.5133155,300 ORANGE TREE AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_775_9,-74.75911392,39.4313807,313 NECTAR AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_776_1.01,-74.51189256,39.32613717,422A NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_776_1.02,-74.66835671,39.35870264,422 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_776_2,-74.68981556,39.51391125,420 NECTAR AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_776_3,-74.62777544,39.39582486,418 NECTAR AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_776_4,-74.971714,39.517261,416 NECTAR AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_776_5,-74.8287903,39.56841703,414 NECTAR AVE,GALLOWAY TWP,16,1975,1,RES3A,3001 -0111_776_6.01,-74.85844698,39.54446984,412A NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_776_6.02,-74.92987439,39.48805128,412 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_776_6.03,-74.85542917,39.43727046,36 COOLIDGE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_776_6.04,-74.56096216,39.44969915,34 COOLIDGE AVE,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_777_1,-74.521184,39.3196185,410 NECTAR AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_777_2.01,-74.464777,39.3479595,408 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES3A,3001 -0111_777_2.02,-74.60487855,39.37249133,406 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_777_3,-74.91569423,39.53114884,404 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_777_5.01,-74.642713,39.5290115,402 NECTAR AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_777_5.02,-74.4987605,39.336838,402A NECTAR AVE,GALLOWAY TWP,16,1998,1,RES3A,3001 -0111_777_6,-74.63590142,39.52353066,400 NECTAR AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_777_7.01,-74.80341194,39.63765569,35 COOLIDGE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_777_7.02,-74.38907461,39.39386627,33 COOLIDGE AVE,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_778_1.01,-74.62567295,39.43525475,324 NECTAR AVE,GALLOWAY TWP,16,1974,1,GOV1,3004 -0111_778_2,-74.64749973,39.5243691,320 NECTAR AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_778_3,-74.53671779,39.31297257,318 NECTAR AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_778_4,-74.5022875,39.469976,316 NECTAR AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_778_6,-74.5710465,39.373994,312 NECTAR AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_778_7.01,-74.55253082,39.36339768,310 NECTAR AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_779_1,-74.50777716,39.43810448,308 NECTAR AVE,GALLOWAY TWP,16,1956,1,GOV1,3004 -0111_779_2,-74.65169219,39.52289868,304 NECTAR AVE,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_779_3,-74.56951599,39.41163416,302 NECTAR AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_779_4.01,-74.636358,39.3419445,300A NECTAR AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_779_4.02,-74.550169,39.3866685,300 NECTAR AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_779_7,-74.78542836,39.64010705,MAPLE AVE,GALLOWAY TWP,,0,1,RES3A,3001 -0111_783_1,-74.8312897,39.38069057,76 W JIMMIE LEEDS RD,GALLOWAY TWP,,1997,1,RES1,3001 -0111_784_1,-74.5070775,39.3230625,421 CHRIS GAUPP DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_786_3,-74.62267153,39.48772616,319-321 CHRIS GAUPP DR,GALLOWAY TWP,,2000,1,RES1,3001 -0111_789_1,-74.56396637,39.35667961,408 CHRIS GAUPP DR,GALLOWAY TWP,,0,1,RES3A,3001 -0111_789_5,-74.56449643,39.35400629,400 CHRIS GAUPP DR,GALLOWAY TWP,,2004,1,RES1,3001 -0111_79_1,-74.60216317,39.3165551,1508 CLEVELAND ST,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_79_2,-74.6520285,39.5252775,1506 CLEVELAND ST,GALLOWAY TWP,16,1925,1,COM4,3004 -0111_79_3,-74.51438768,39.40316602,1504 CLEVELAND ST,GALLOWAY TWP,16,1921,1,RES1,3001 -0111_79_4,-74.81361249,39.64557353,531 COUNTY BLVD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_79_8,-74.6002525,39.410715,535 COUNTY BLVD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_790_1,-74.6688785,39.355907,318 CHRIS GAUPP DR,GALLOWAY TWP,,2006,1,RES1,3001 -0111_790_4,-74.60503738,39.31077518,314 CHRIS GAUPP DR,GALLOWAY TWP,,2002,1,RES1,3001 -0111_794_1,-74.9436379,39.49745191,IRONWOOD AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_794_10.01,-74.73695149,39.46778112,393 HOLLY AVE,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_794_10.02,-74.62362911,39.62377478,391 HOLLY AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_794_11,-74.50836319,39.46185708,389 HOLLY AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_794_6,-74.51032143,39.33842433,403 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_794_7.01,-74.722769,39.5813055,401 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_794_7.02,-74.96842861,39.51268974,399 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_794_8,-74.6048525,39.5020885,397 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_794_9,-74.6511055,39.625462,395 HOLLY AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_795_3.01,-74.51123667,39.32679249,130 GIULIA LN,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_795_4.01,-74.46204785,39.34715633,128 JUSTINE LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_795_4.03,-74.77514433,39.63266758,124 JUSTINE LN,GALLOWAY TWP,16,2017,1,RES1,3001 -0111_796_2,-74.514368,39.487144,509 GENISTA AVE,GALLOWAY TWP,15,1959,1,RES1,3001 -0111_797_2,-74.45442032,39.48956248,502 HOLLY AVE,GALLOWAY TWP,15,1930,1,RES1,3001 -0111_799_1,-74.46006473,39.47906454,496 HOLLY AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_799_2,-74.520095,39.409234,494 HOLLY AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_799_3,-74.64973654,39.52366216,492 HOLLY AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_799_4,-74.875363,39.5909185,490 HOLLY AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_799_5,-74.4909205,39.42126,488 HOLLY AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_799_6.01,-74.50633264,39.3403766,499 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_799_6.02,-74.63001905,39.3902437,497 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_799_6.03,-74.60643703,39.32130232,495 GENISTA AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_799_6.04,-74.60586783,39.32779849,493 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_799_6.05,-74.57898468,39.47651199,491 GENISTA AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_799_6.06,-74.669226,39.4611585,489 GENISTA AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_799_6.07,-74.59687497,39.37874729,487 GENISTA AVE,GALLOWAY TWP,16,1994,1,RES1,3002 -0111_799_6.08,-74.51626617,39.33077546,485 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_799_6.09,-74.9479655,39.5173925,483A GENISTA AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_801_11,-74.629376,39.42427,499 FIR AVE,GALLOWAY TWP,50,1946,1,RES1,3001 -0111_801_3,-74.7976944,39.63454873,510 GENISTA AVE,GALLOWAY TWP,,1945,1,RES1,3001 -0111_801_4,-74.84960291,39.39844783,508 GENISTA AVE,GALLOWAY TWP,45,1945,4,RES1,3001 -0111_801_6,-74.684317,39.5562155,502 GENISTA AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_801_7,-74.68364198,39.44276905,509 FIR AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_802_1,-74.7582892,39.43297538,30 W WHITE HORSE PIKE,GALLOWAY TWP,16,1946,1,RES1,3002 -0111_803_5,-74.59598119,39.42928201,497 FIR AVE,GALLOWAY TWP,15,1966,1,RES1,3001 -0111_803_6,-74.59701887,39.34017091,495 FIR AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_803_7,-74.5871545,39.35625,493 FIR AVE,GALLOWAY TWP,16,1982,1,COM1,3004 -0111_803_8,-74.92661,39.507489,491 FIR AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_804_1,-74.5088554,39.32978035,496 GENISTA AVE,GALLOWAY TWP,16,1934,1,RES1,3001 -0111_804_10,-74.591203,39.370495,483 FIR AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_804_11,-74.49006953,39.42036081,481 FIR AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_804_12.01,-74.52416052,39.38549232,479 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_804_12.02,-74.51923357,39.437439,22A MCKINLEY AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_804_2.01,-74.68980412,39.57324934,494 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_804_2.02,-74.49862113,39.44993524,492 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3002 -0111_804_3,-74.638017,39.530113,490 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_804_4,-74.8384875,39.5393645,488 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3002 -0111_804_5.01,-74.453227,39.4885675,486 GENISTA AVE,GALLOWAY TWP,16,1994,1,RES3A,3001 -0111_804_5.02,-74.48807493,39.33754984,484 GENISTA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_804_6,-74.61454467,39.42376451,24 MCKINLEY AVE,GALLOWAY TWP,16,1982,1,RES1,3002 -0111_804_7,-74.46865589,39.48885756,489 FIR AVE,GALLOWAY TWP,16,1957,1,GOV1,3004 -0111_804_8,-74.5074215,39.336372,487 FIR AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_804_9,-74.375045,39.399738,485 FIR AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_806_2,-74.41527915,39.36877151,504 FIR AVE,GALLOWAY TWP,,1946,1,RES3A,3001 -0111_808_1,-74.570447,39.4285505,488 FIR AVE,GALLOWAY TWP,16,1976,1,COM1,3004 -0111_808_2.01,-74.889499,39.4763755,486A FIR AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_808_2.02,-74.51204788,39.43911314,486 FIR AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_808_3,-74.8205805,39.5370425,484 FIR AVE,GALLOWAY TWP,16,1968,1,RES3B,3001 -0111_808_4,-74.88552489,39.59415137,482 FIR AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_808_5,-74.49769521,39.43104489,480 FIR AVE,GALLOWAY TWP,16,2013,1,GOV1,3004 -0111_808_9,-74.6571575,39.627708,18 MCKINLEY AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_813_7,-74.63546751,39.52879367,499 DAMSON AVE,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_814_1,-74.51162573,39.41332652,10 W WHITE HORSE PIKE,GALLOWAY TWP,,1952,1,RES1,3001 -0111_816_1,-74.92524882,39.50754363,17 W WHITE HORSE PIKE,GALLOWAY TWP,,1950,3,RES3A,3001 -0111_817_10,-74.64935411,39.47075509,DAMSON AVE,GALLOWAY TWP,,0,1,RES1,3002 -0111_818_1,-74.53201226,39.46938708,DAMSON AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_818_3,-74.39262416,39.39187454,496 DAMSON AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_819_1,-74.38858734,39.38949002,9 W WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_82_11,-74.730555,39.4526615,603 COUNTY BLVD,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_82_5,-74.5505835,39.4699555,1502 PITTSBURG AVE,GALLOWAY TWP,15,1920,1,RES1,3001 -0111_82_6,-74.51459267,39.41477667,601 COUNTY BLVD,GALLOWAY TWP,,1917,1,GOV1,3004 -0111_821_1.02,-74.79195253,39.64447298,479 BEECH AVE,GALLOWAY TWP,16,1978,1,GOV1,3004 -0111_821_2.02,-74.927356,39.5089115,477 BEECH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_821_2.03,-74.5342082,39.37906818,475 BEECH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_821_8,-74.38442593,39.39463164,469 BEECH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_822_6,-74.64762709,39.43331831,467 BEECH AVE,GALLOWAY TWP,16,1978,1,RES3A,3001 -0111_822_7,-74.62655954,39.43825874,465 BEECH AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_823_10,-74.62522979,39.3599746,493 ASH AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_823_12,-74.57446531,39.37030997,487 ASH AVE,GALLOWAY TWP,16,1949,1,RES1,3001 -0111_823_13,-74.44780457,39.48073284,483 ASH AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_823_14,-74.60606506,39.36519123,481 ASH AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_823_2.02,-74.64235,39.532943,495 ASH AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_823_4,-74.588164,39.43328,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_823_5,-74.50601277,39.44785183,485 ASH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_823_9,-74.68727199,39.55586217,476 BEECH AVE,GALLOWAY TWP,16,1976,1,RES1,3002 -0111_824_11,-74.362589,39.409649,465 ASH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_824_2,-74.59142929,39.42879773,475 ASH AVE,GALLOWAY TWP,16,1954,1,RES3A,3001 -0111_824_3,-74.95242638,39.4969638,473 ASH AVE,GALLOWAY TWP,16,1968,2,RES1,3001 -0111_824_5,-74.60171257,39.38142853,469 ASH AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_824_7,-74.89649964,39.48027626,463 ASH AVE,GALLOWAY TWP,16,1953,1,RES3A,3001 -0111_824_8,-74.60239,39.329214,477 ASH AVE,GALLOWAY TWP,16,1955,1,GOV1,3004 -0111_825_1,-74.480963,39.3372055,458 BEECH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_825_2,-74.63863398,39.47172884,456 BEECH AVE,GALLOWAY TWP,16,1978,1,RES3A,3001 -0111_825_4,-74.57127933,39.35131618,452 BEECH AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_825_6,-74.8266605,39.6474095,461 ASH AVE,GALLOWAY TWP,16,1976,1,RES3A,3001 -0111_825_7,-74.76758727,39.45159662,459 ASH AVE,GALLOWAY TWP,16,1966,1,RES3A,3004 -0111_825_8,-74.6525055,39.468209,457 ASH AVE,GALLOWAY TWP,16,1950,1,GOV1,3004 -0111_826_1,-74.4960155,39.3284185,486 HOLLY AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_826_6,-74.66867,39.4183225,25 MCKINLEY AVE,GALLOWAY TWP,,1975,1,RES1,3001 -0111_828_5,-74.63387085,39.53430445,436 HOLLY AVE,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_829_1,-74.494894,39.5244305,434 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_829_2.01,-74.80161956,39.60524512,432 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_829_2.02,-74.557647,39.3985835,430 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_829_3,-74.81296647,39.63662583,428 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_829_4.01,-74.69047185,39.58406952,426 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_829_4.02,-74.583,39.379947,424 HOLLY AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_829_5.01,-74.59566194,39.3125646,422 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_829_5.02,-74.752638,39.602478,420 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_83_10,-74.40121363,39.38892946,619 COUNTY BLVD,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_83_5,-74.9460978,39.51822232,617 COUNTY BLVD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_830_1.01,-74.64685087,39.40739519,23A MCKINLEY AVE,GALLOWAY TWP,16,1998,1,RES3A,3001 -0111_830_1.02,-74.497342,39.329741,23 MCKINLEY AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_830_6,-74.6051865,39.390128,21 MCKINLEY AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_833_4.01,-74.63307556,39.41567602,28 GARFIELD AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_833_4.02,-74.5888215,39.413281,26 GARFIELD AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_834_1.01,-74.4661365,39.344746,19A MCKINLEY AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_834_1.02,-74.4552235,39.3486745,19 MCKINLEY AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_834_10.01,-74.7622937,39.61429634,471 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_834_10.02,-74.8791045,39.462448,469 EBONY TREE AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_834_6,-74.78499431,39.44330827,17 MCKINLEY AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_834_7.01,-74.37919587,39.41606444,483 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_834_7.02,-74.60219192,39.43598772,479 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_834_8,-74.366738,39.4124075,477 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_834_9.01,-74.36053025,39.4115304,475 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_834_9.02,-74.48967401,39.4375222,473 EBONY TREE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_835_10.01,-74.8208355,39.398546,453 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_835_10.02,-74.78029934,39.60977767,451 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3002 -0111_835_6.01,-74.5298275,39.472869,467 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_835_6.02,-74.4884205,39.43153,465 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_835_7,-74.4993155,39.491734,463 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_835_8,-74.86498392,39.56843215,461 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_835_9.01,-74.48002117,39.3384165,459 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_835_9.02,-74.5472905,39.474372,457 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3004 -0111_835_9.03,-74.6393745,39.5328165,455 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_836_10.01,-74.688587,39.499856,437 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_836_10.02,-74.65031416,39.53246048,435 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3002 -0111_836_11,-74.5981065,39.3692955,433 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_836_6.01,-74.69313166,39.49007649,449 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_836_6.02,-74.68551948,39.39364378,447 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3002 -0111_836_7,-74.60550172,39.41454685,445 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_836_8.01,-74.6086025,39.4409735,443 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_836_8.02,-74.6803655,39.351788,441 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_836_9,-74.48633867,39.33549399,439 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_837_10.01,-74.72456023,39.45406335,419 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_837_10.02,-74.46564874,39.34505585,417 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,COM1,3004 -0111_837_11,-74.6041475,39.3836645,415 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_837_6.01,-74.4109315,39.3833925,431 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES3A,3001 -0111_837_6.02,-74.63747614,39.43364355,429 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_837_7,-74.90976324,39.48749256,427 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_837_8.01,-74.37556028,39.417133,425 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_837_8.02,-74.64799997,39.53369084,423 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3004 -0111_837_9,-74.49168717,39.33116647,421 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,COM4,3004 -0111_838_1.01,-74.618149,39.37028,486 EBONY TREE AVE,GALLOWAY TWP,16,1999,1,RES3A,3001 -0111_838_1.02,-74.79826548,39.62524567,484 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_838_10.01,-74.52349158,39.42067534,477 DAMSON AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_838_10.02,-74.59097523,39.38080328,475 DAMSON AVE,GALLOWAY TWP,16,2001,1,COM1,3004 -0111_838_11,-74.413987,39.503782,473 DAMSON AVE,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_838_12.01,-74.499706,39.4278865,14 ABRAHAM AVE,GALLOWAY TWP,16,2000,1,EDU1,3004 -0111_838_12.02,-74.63245166,39.53045302,14A ABRAHAM AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_838_2,-74.54760822,39.37757115,482 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,COM4,3002 -0111_838_3.01,-74.59127484,39.3193264,478 EBONY TREE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_838_3.02,-74.80844247,39.62982717,476 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,AGR1,3001 -0111_838_4,-74.48848764,39.3365717,474 EBONY TREE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_838_5.01,-74.80275816,39.62355641,472 EBONY TREE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_838_5.02,-74.45917205,39.46223644,470 EBONY TREE AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_838_6,-74.688566,39.4960125,468 EBONY TREE AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_838_7.01,-74.5110841,39.33157712,15 MCKINLEY AVE,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_838_7.02,-74.64284459,39.45387403,15A MCKINLEY AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_838_8,-74.45433435,39.48876389,483 DAMSON AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_838_9.01,-74.48145733,39.34110851,481 DAMSON AVE,GALLOWAY TWP,16,2000,1,COM1,3004 -0111_838_9.02,-74.7172955,39.5769785,479 DAMSON AVE,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_839_1.01,-74.65448256,39.34805951,15A ABRAHAM AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_839_1.02,-74.49242943,39.42007915,15 ABRAHAM AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_839_10.01,-74.45261727,39.50157568,455 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_10.02,-74.38128635,39.39395085,453 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_11,-74.58106881,39.53340911,451 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_2,-74.58991345,39.41380468,464 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_3.01,-74.5787725,39.342607,462 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_3.02,-74.3751495,39.40168,460 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_4.01,-74.6013015,39.3809735,458 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_4.02,-74.5258577,39.47062108,456 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_5.01,-74.58075518,39.33366579,454 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_5.02,-74.51134903,39.47242933,452 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_6.01,-74.6013675,39.3319385,13A ABRAHAM AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_839_6.02,-74.387981,39.3922165,13 ABRAHAM AVE,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_839_7.01,-74.5117591,39.43422289,463 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_7.02,-74.63566435,39.43292677,461 DAMSON AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_839_8,-74.47034856,39.48836534,459 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_839_9,-74.92735276,39.50852345,457 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_84_1,-74.36097592,39.41119479,631 COUNTY BLVD,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_840_1.01,-74.5347319,39.40092364,450 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_840_1.02,-74.8355677,39.53516689,448 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_840_2,-74.874745,39.5978815,446 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_840_3.01,-74.77313917,39.3170157,444 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_840_3.02,-74.39085046,39.39357684,442 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3004 -0111_840_4,-74.91843572,39.48200682,440 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_840_5.01,-74.7650975,39.6637505,438 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_840_5.02,-74.37360017,39.40474847,436 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_840_6,-74.60386413,39.38406574,434 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_841_1.01,-74.64451537,39.43497562,432 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_841_1.02,-74.3823679,39.39708738,430 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_841_2.01,-74.5522575,39.3833165,428 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_841_2.02,-74.48785243,39.49393355,426 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_841_3.01,-74.88407097,39.48991783,424 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_841_3.02,-74.5517751,39.49055571,422 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_841_4,-74.77985226,39.31557504,420 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_841_5.01,-74.440223,39.3655675,418 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_841_5.02,-74.44294422,39.35993321,416 EBONY TREE AVE,GALLOWAY TWP,16,2005,1,COM1,3004 -0111_842_1.01,-74.49000352,39.33214817,486 DAMSON AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_842_2,-74.71718014,39.39365486,484 DAMSON AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_842_3.01,-74.48462929,39.47889742,480 DAMSON AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_842_3.02,-74.58497289,39.41252969,478 DAMSON AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_842_4.01,-74.46168883,39.34924401,476 DAMSON AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_842_4.02,-74.61057123,39.37630357,474 DAMSON AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_842_5,-74.60401,39.343773,472 DAMSON AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_842_6.01,-74.59254869,39.36983657,470 DAMSON AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_842_6.02,-74.60157437,39.37427381,468 DAMSON AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_843_1,-74.837723,39.430846,466A DAMSON AVE,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_843_2.01,-74.51330018,39.32442596,466 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_843_2.02,-74.38269235,39.41798735,464 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_843_3.01,-74.55802391,39.46849123,462 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_843_3.02,-74.55461394,39.46538072,460 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_843_4,-74.47134629,39.49120054,458 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_843_5.01,-74.59434782,39.3124808,456 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_843_5.02,-74.53084009,39.44525613,454 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_843_6,-74.581456,39.472537,452 DAMSON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_844_6,-74.80704917,39.64901576,CHESTNUT AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_844_8,-74.50775142,39.33711895,CHESTNUT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_844_9,-74.80575246,39.63205234,CHESTNUT AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_845_10,-74.79881846,39.63307634,CHESTNUT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_845_7,-74.37266706,39.41040129,CHESTNUT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_848_1,-74.491497,39.332249,CHESTNUT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_848_3,-74.77887988,39.62175772,CHESTNUT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_848_4,-74.7968236,39.63226384,CHESTNUT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_848_5,-74.973993,39.5148545,CHESTNUT AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_848_6,-74.494986,39.454659,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_848_8.01,-74.932014,39.482521,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_848_8.02,-74.54769185,39.36065591,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_848_9,-74.92845109,39.50711127,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_849_12,-74.5224505,39.3835385,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3002 -0111_849_13,-74.54777754,39.36799298,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_849_14,-74.5531785,39.4682604,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_849_15,-74.540005,39.386591,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_849_16,-74.37117158,39.40348865,BEECH AVE,GALLOWAY TWP,,0,1,COM4,3004 -0111_849_17,-74.46278202,39.35608432,BEECH AVE,GALLOWAY TWP,,0,1,AGR1,3001 -0111_849_2,-74.5050805,39.4063795,CHESTNUT AVE,GALLOWAY TWP,,0,1,COM1,3004 -0111_85_1,-74.445888,39.372145,1510 SHAFFER AVE,GALLOWAY TWP,,1940,1,RES1,3001 -0111_85_2,-74.51023327,39.32735816,1506 SHAFFER AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_85_6,-74.8542534,39.61928716,1500 SHAFFER AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_850_10.01,-74.5268731,39.4536528,445 ASH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_850_10.02,-74.8897082,39.4590619,443 ASH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_850_12.02,-74.45903416,39.34999051,437 ASH AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_851_5,-74.48631834,39.34978056,435 ASH AVE,GALLOWAY TWP,16,1976,1,AGR1,3001 -0111_851_6,-74.58425,39.420442,433 ASH AVE,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_852_1,-74.48337837,39.45527442,BEECH AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_852_4,-74.63761265,39.36049108,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_852_5,-74.54554016,39.50845198,BEECH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_852_6.01,-74.53562652,39.53611486,423 ASH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_852_6.02,-74.55294721,39.47176203,421 ASH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_853_2,-74.53968372,39.47027478,BEECH AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_853_4,-74.485704,39.438175,BEECH AVE,GALLOWAY TWP,,0,1,IND1,3002 -0111_854_1.01,-74.629395,39.4266625,418 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_854_1.02,-74.81128902,39.64690516,416 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_854_10,-74.7024595,39.576416,409 GENISTA AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_854_11,-74.5100555,39.404212,407 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_854_12,-74.6337755,39.3632825,405 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_854_2,-74.6446685,39.5987945,414 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_854_3,-74.5556765,39.4668145,412 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_854_4,-74.49055517,39.336973,410 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_854_5,-74.64200152,39.33874586,408 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_854_6.01,-74.548046,39.4757145,406 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_854_6.02,-74.78481606,39.64300749,404 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_854_7,-74.588294,39.3288965,419 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_854_8.01,-74.814065,39.405076,417 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_854_8.02,-74.92356526,39.50927336,415 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_854_9.01,-74.753577,39.454712,413 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_854_9.02,-74.5938235,39.377785,411 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_855_1.01,-74.60383428,39.3645728,403 GENISTA AVE,GALLOWAY TWP,16,2004,1,COM1,3004 -0111_855_1.02,-74.51222033,39.48892957,401 GENISTA AVE,GALLOWAY TWP,16,2005,1,AGR1,3001 -0111_855_1.03,-74.5729025,39.428316,399 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES3A,3001 -0111_855_1.04,-74.9254025,39.5253475,397 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_855_1.05,-74.57602486,39.35803118,395 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_855_2.01,-74.64587974,39.53226019,402 HOLLY AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_855_2.02,-74.61057455,39.48771342,400 HOLLY AVE,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_855_2.03,-74.378847,39.3964615,398 HOLLY AVE,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_855_2.04,-74.8051245,39.636295,396 HOLLY AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_855_3.01,-74.58969831,39.35594348,394 HOLLY AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_855_3.02,-74.775565,39.625335,392 HOLLY AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_855_3.03,-74.57523522,39.33869444,390 HOLLY AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_855_4,-74.6284035,39.4141355,388 HOLLY AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_855_5.01,-74.51593432,39.43824423,393 GENISTA AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_855_5.02,-74.48167697,39.34848932,391 GENISTA AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_855_5.03,-74.79410725,39.63523753,389 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_857_1.01,-74.4796965,39.336516,418 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_857_1.02,-74.65008348,39.53463513,416 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_857_10,-74.367321,39.416683,413 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_857_11.01,-74.451977,39.3704605,411 FIR AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_857_11.02,-74.56934604,39.35089932,409 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_857_11.03,-74.81411365,39.38831026,407 FIR AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_857_11.04,-74.46108817,39.34596149,405 FIR AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_857_2,-74.58844005,39.34909614,414 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_857_3,-74.57267184,39.35867295,412 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_857_4,-74.48958154,39.42913895,410 GENISTA AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_857_5,-74.64310778,39.41054421,408 GENISTA AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_857_6,-74.56677255,39.36515719,406 GENISTA AVE,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_857_7,-74.77851959,39.62707483,404 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_857_8.01,-74.97465565,39.51053031,419 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_857_8.02,-74.5698085,39.3516045,417 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_857_9,-74.52661246,39.45544866,415 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_1,-74.5453725,39.473607,402 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_10,-74.60017646,39.39033483,393 FIR AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_858_11.01,-74.36192892,39.41766935,391 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_11.02,-74.5456935,39.399077,389 FIR AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_858_2.01,-74.55343256,39.38120082,400 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_2.02,-74.51828043,39.41098611,398 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_3.01,-74.639961,39.528998,396 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_3.02,-74.60126919,39.41523502,394 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_4,-74.369239,39.4109245,392 GENISTA AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_5.01,-74.51679001,39.40314883,390 GENISTA AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_858_5.02,-74.4561005,39.347784,388 GENISTA AVE,GALLOWAY TWP,16,2005,1,COM4,3004 -0111_858_6,-74.6223825,39.374779,403 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_7.01,-74.61106963,39.36814244,401 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_7.02,-74.49683614,39.52040174,399 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_858_8,-74.506149,39.478143,397 FIR AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_858_9,-74.49471888,39.43305482,395 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_859_1,-74.57281532,39.42636267,418 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_859_2.01,-74.503667,39.40775333,416 FIR AVE,GALLOWAY TWP,16,2005,1,REL1,3004 -0111_859_2.02,-74.67168351,39.34480519,414 FIR AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_859_3.01,-74.923617,39.5088415,412 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_859_3.02,-74.529405,39.403894,410 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_859_4.01,-74.59503158,39.34027592,408 FIR AVE,GALLOWAY TWP,16,2005,1,COM1,3004 -0111_859_4.02,-74.5411776,39.41173155,406 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_859_4.03,-74.62849688,39.40907542,404 FIR AVE,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_859_5.01,-74.609495,39.485831,413 EBONY TREE AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_859_5.02,-74.60355332,39.39894118,411 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_859_6.02,-74.532863,39.412099,407 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_859_7.01,-74.62787756,39.39587914,405 EBONY TREE AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_859_7.02,-74.55176547,39.36646531,403 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_859_7.03,-74.8861165,39.593972,401 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_859_7.04,-74.6271885,39.4180035,399 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_860_1.01,-74.57608775,39.48288846,402 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_860_1.02,-74.8203837,39.39999597,400 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_860_1.03,-74.60954339,39.37645289,398 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_860_2,-74.63165967,39.48324252,396 FIR AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_860_3,-74.37870802,39.41858491,394 FIR AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_860_4,-74.80409951,39.63780633,392 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_860_5.01,-74.8658005,39.5662565,390 FIR AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_860_5.02,-74.52291917,39.40276808,388 FIR AVE,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_861_1.01,-74.51267448,39.32138416,414 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_861_1.02,-74.70091431,39.5024714,412 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_861_1.03,-74.610206,39.4215685,410 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_861_1.04,-74.78017567,39.642217,408 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_861_2.01,-74.85457713,39.44126677,406 EBONY TREE AVE,GALLOWAY TWP,16,2007,1,GOV1,3004 -0111_861_2.02,-74.37410303,39.39997521,404 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_861_2.03,-74.36227883,39.41808201,402 EBONY TREE AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_861_2.04,-74.52308404,39.38930782,400 EBONY TREE AVE,GALLOWAY TWP,16,2007,1,GOV1,3004 -0111_863_3.02,-74.59879552,39.5063209,403 ASH AVE,GALLOWAY TWP,50,1965,1,GOV1,3004 -0111_863_3.04,-74.5820295,39.429622,401 ASH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_864_1,-74.5903068,39.48209566,404 BEECH AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_864_2,-74.48171918,39.34746494,409 ASH AVE,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_865.01_1,-74.56711177,39.36481917,66 W JIMMIE LEEDS RD,GALLOWAY TWP,,1999,1,GOV1,3004 -0111_865.01_2.01,-74.47607778,39.48418213,54 W JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_865.01_2.02,-74.560988,39.359725,123A CARA MIA LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_865.01_36.01,-74.63423851,39.53341484,310 CHRIS GAUPP DR,GALLOWAY TWP,,2000,1,RES1,3001 -0111_865.01_36.02,-74.5617503,39.51449573,68 W JIMMIE LEEDS RD,GALLOWAY TWP,,2004,1,RES1,3001 -0111_865.01_4,-74.4607412,39.34924657,44-46 W JIMMIE LEEDS RD,GALLOWAY TWP,,2000,1,GOV1,3004 -0111_865.01_6.02,-74.48524833,39.43944745,103 CARA MIA LN,GALLOWAY TWP,16,2017,1,RES1,3001 -0111_865.01_6.03,-74.58527752,39.32689614,105 CARA MIA LN,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_865.01_6.04,-74.59172989,39.39336458,107 CARA MIA LN,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_865.01_6.05,-74.63601436,39.52898038,109 CARA MIA LN,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_865.01_6.06,-74.82514304,39.38917627,111 CARA MIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.01_6.07,-74.55409721,39.36274744,113 CARA MIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.01_6.08,-74.368938,39.4072025,115 CARA MIA LN,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_865.01_6.09,-74.48523472,39.50819169,117 CARA MIA LN,GALLOWAY TWP,16,2015,1,GOV1,3004 -0111_865.01_6.11,-74.36152714,39.40975755,121 CARA MIA LN,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_865.01_6.12,-74.83657954,39.38931949,123 CARA MIA LN,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_865.01_6.13,-74.61590271,39.32034893,125 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.01_6.14,-74.7028945,39.4977915,127 CARA MIA LN,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_865.01_6.15,-74.8648393,39.59643597,129 CARA MIA LN,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_865.01_6.16,-74.64746235,39.54857845,131 CARA MIA LN,GALLOWAY TWP,16,2005,1,GOV1,3004 -0111_865.02_10,-74.472052,39.4388805,127 GIULIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.02_11,-74.46164832,39.34968902,129 GIULIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.02_12,-74.52603534,39.38987619,131 GIULIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_13,-74.78506541,39.64196817,130 CARA MIA LN,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_865.02_14,-74.71834065,39.57703559,128 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_15,-74.64793184,39.55095982,126 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_16,-74.51695559,39.43025571,124 CARA MIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.02_17,-74.9672615,39.505872,122 CARA MIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.02_18,-74.61214552,39.41496232,120 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_19,-74.5761249,39.35162368,118 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_2,-74.5218525,39.398488,111 GIULIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.02_20,-74.56747525,39.36367867,116 CARA MIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.02_21,-74.66393504,39.39993765,114 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_22,-74.480167,39.4363025,112 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_23,-74.640054,39.527284,110 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_24,-74.81997014,39.3689732,108 CARA MIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.02_3,-74.8078625,39.6368225,113 GIULIA LN,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_865.02_4,-74.81122326,39.62875942,115 GIULIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.02_5,-74.5411415,39.385689,117 GIULIA LN,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_865.02_6,-74.80649872,39.63013585,119 GIULIA LN,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_865.02_7,-74.61210035,39.3193417,121 GIULIA LN,GALLOWAY TWP,16,2006,1,GOV1,3004 -0111_865.03_10,-74.598096,39.435094,118 GIULIA LN,GALLOWAY TWP,16,2012,1,GOV1,3004 -0111_865.03_11,-74.563297,39.415544,116 GIULIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.03_12,-74.61679029,39.62096445,114 GIULA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.03_13,-74.51097856,39.32653731,112 GIULIA LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.03_14,-74.48198,39.339027,110 GIULIA LN,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_865.03_2,-74.73579336,39.46560578,113 JUSTINE LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.03_3,-74.49979023,39.42486997,115 JUSTINE LN,GALLOWAY TWP,16,2009,1,RES1,3001 -0111_865.03_4,-74.59786117,39.31367283,117 JUSTINE LN,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_865.03_5,-74.51936518,39.31820997,119 JUSTINE LN,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_865.03_6,-74.9451845,39.520288,121 JUSTINE LN,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_865.03_8,-74.51264517,39.3224845,122 GIULIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.03_9,-74.470502,39.488859,120 GIULIA LN,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_865.04_1,-74.51017084,39.38649922,110 JUSTINE LN,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_865.04_3,-74.921077,39.5667175,114 JUSTINE LN,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_865.04_4,-74.636211,39.382273,116 JUSTINE LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.04_5,-74.48412823,39.4621777,118 JUSTINE LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.04_6,-74.8813385,39.59223155,120 JUSTINE LN,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_865.04_7,-74.52323794,39.38938419,122 JUSTINE LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.05_1,-74.93842442,39.50445436,108 GIULIA LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_865.05_3,-74.61021457,39.48574112,104 GIULIA LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.05_4,-74.7387075,39.704472,323 ASH AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_865.05_5,-74.60676902,39.41241882,325 ASH AVE,GALLOWAY TWP,16,2005,1,RES1,3004 -0111_865.05_6,-74.460433,39.5304325,327 ASH AVE,GALLOWAY TWP,16,2015,1,GOV1,3004 -0111_865.05_7.01,-74.60709256,39.32203767,331 ASH AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_865.05_7.02,-74.796436,39.645584,335 ASH AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_865.05_7.03,-74.5616739,39.35227112,339 ASH AVE,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_866.01_10.01,-74.74695257,39.4519159,19 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.01_10.02,-74.423568,39.3723115,17 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.01_10.03,-74.491397,39.337973,15 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.01_10.04,-74.61949621,39.37485011,13 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.01_10.05,-74.76747258,39.63543008,11 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.01_10.06,-74.73565558,39.43861976,9 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.01_10.07,-74.4687705,39.345664,7 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.01_10.08,-74.46042566,39.35078242,5 DONEGAL LN,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_866.01_10.09,-74.57121789,39.3581867,3 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.01_10.10,-74.4813088,39.33844037,1 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.01_22,-74.63792249,39.52841017,IRISH LN,GALLOWAY TWP,,0,1,RES1,3001 -0111_866.01_23.01,-74.757662,39.4326665,322 ASH AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_866.01_23.02,-74.365774,39.4131815,320 ASH AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_866.01_3,-74.64593037,39.54849633,30 W JIMMIE LEEDS RD,GALLOWAY TWP,,1988,1,RES1,3001 -0111_866.01_4,-74.609012,39.490307,JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_866.01_5,-74.543961,39.39429233,24 W JIMMIE LEEDS RD,GALLOWAY TWP,,2011,1,RES1,3001 -0111_866.01_6,-74.9329565,39.5197405,22 W JIMMIE LEEDS RD,GALLOWAY TWP,,2002,1,RES1,3001 -0111_866.01_7,-74.52217428,39.39384329,20 W JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_866.01_9,-74.7605243,39.44571394,10 W JIMMIE LEEDS RD,GALLOWAY TWP,,1988,1,RES1,3001 -0111_866.02_11.01,-74.7910635,39.6417485,21 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.02_11.02,-74.48086095,39.43371541,23 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.02_11.03,-74.514625,39.399837,25 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.02_12.01,-74.58443706,39.4138017,27 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.02_12.02,-74.4847525,39.348302,29 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.02_12.03,-74.57051482,39.36312338,31 DONEGAL LN,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_866.02_12.04,-74.616643,39.371981,33 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.02_12.05,-74.5017358,39.32824804,35 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.02_12.06,-74.83077304,39.38936556,37 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.02_12.07,-74.497888,39.3294955,39 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.02_12.08,-74.42484946,39.37948299,41 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.02_12.09,-74.7126935,39.4675875,43 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.02_12.10,-74.62983444,39.39269049,45 DONEGAL LN,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_866.02_15.01,-74.53739712,39.38518237,410 ASH AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_866.02_15.03,-74.60060292,39.31342058,406 ASH AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_866.02_16.01,-74.5225315,39.3164655,404 ASH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_866.02_16.02,-74.504109,39.3306145,402 ASH AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_866.02_16.03,-74.4820535,39.441159,400 ASH AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_866.02_18.01,-74.50133035,39.33714569,340 ASH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_866.02_18.02,-74.62617268,39.41547453,338 ASH AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_866.02_21.01,-74.83128468,39.42335626,38 IRISH LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.02_21.02,-74.91224033,39.51067218,36 IRISH LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_866.02_21.03,-74.45089942,39.50154219,34 IRISH LN,GALLOWAY TWP,16,2004,1,GOV1,3004 -0111_866.02_21.04,-74.6018415,39.510127,32 IRISH LN,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_866.02_21.05,-74.471259,39.482897,30 IRISH LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.02_21.06,-74.63176207,39.43408404,28 IRISH LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.02_21.07,-74.607806,39.419276,26 IRISH LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.02_21.08,-74.50416365,39.50254813,24 IRISH LN,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_866.02_21.09,-74.619831,39.424993,22 IRISH LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.02_21.10,-74.7842083,39.64273897,20 IRISH LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.03_1,-74.453437,39.3541705,16 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.03_10,-74.51095366,39.32956443,22 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.03_2,-74.67412281,39.49658023,12 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.03_3,-74.62909532,39.39202758,10 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.03_4,-74.58679188,39.38389895,15 KILLARNEY LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.03_5,-74.58913809,39.32305633,17 KILLARNEY LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.03_6,-74.62144579,39.4369712,38 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.03_7,-74.70100682,39.49323598,36 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.03_8,-74.6322605,39.44582,30 DONEGAL LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_866.03_9,-74.458458,39.464895,24 DONEGAL LN,GALLOWAY TWP,16,2004,1,COM1,3004 -0111_866.04_1,-74.74687927,39.40021855,8 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.04_2,-74.62598716,39.37705702,6 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.04_3,-74.5128665,39.407719,4 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.04_4,-74.55754879,39.36529623,2 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.04_5,-74.50452321,39.41200952,11 LAUREL AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.04_6,-74.8158015,39.6421065,44 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.04_7,-74.5011182,39.33314235,42 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.04_8,-74.80076759,39.61405341,40 DONEGAL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_866.04_9,-74.87930931,39.54234607,14 KILLARNEY LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_867_1,-74.55397327,39.39903468,6 W JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_868_1,-74.7518,39.4513615,470 ASH AVE,GALLOWAY TWP,16,1963,1,GOV1,3004 -0111_868_2,-74.5884507,39.43040896,472 ASH AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_869_1.01,-74.6006307,39.37248229,464 ASH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_869_1.02,-74.385673,39.391985,462 ASH AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_869_1.03,-74.509026,39.4814035,460 ASH AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_869_2,-74.520659,39.3179555,466 ASH AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_869_3,-74.47455787,39.34293855,468 ASH AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_871_1,-74.9527025,39.518287,655 FIRST AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_871_2,-74.61373435,39.36515731,649 FIRST AVE,GALLOWAY TWP,16,2008,1,GOV1,3004 -0111_871_4.01,-74.436866,39.3595745,639 FIRST AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_871_4.02,-74.5517435,39.37814,637 FIRST AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_872_1,-74.62361556,39.4175558,635 FIRST AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_872_10,-74.649429,39.35678017,6 CARVEL AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_872_11.01,-74.92180019,39.56651508,4 CARVEL AVE,GALLOWAY TWP,16,1988,2,RES1,3001 -0111_872_11.02,-74.945425,39.5190915,4A CARVEL AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_872_12,-74.5702881,39.35539782,2A CARVEL AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_872_13,-74.597871,39.410262,1 CARVEL AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_872_14,-74.70859336,39.47387019,3 CARVEL AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_872_15,-74.92479603,39.51118116,5 CARVEL AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_872_16,-74.84554021,39.3852418,7 CARVEL AVE,GALLOWAY TWP,16,1996,1,COM7,3004 -0111_872_17,-74.54827484,39.36102402,9 CARVEL AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_872_18,-74.52250697,39.45761794,11 CARVEL AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_872_19,-74.80863555,39.55243833,13 CARVEL AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_872_2,-74.60348746,39.31668068,629 FIRST AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_872_20,-74.8213015,39.6452085,15 CARVEL AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_872_21,-74.5674795,39.36449,2 CARVEL AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_872_22,-74.605549,39.3841655,8 UPLAND AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_872_23,-74.6388695,39.400579,603 FIRST AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_872_24,-74.50467838,39.3371799,601 FIRST AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_872_25.01,-74.70002592,39.49520291,16 UPLAND AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_872_25.02,-74.67404477,39.38577896,14 UPLAND AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_872_25.03,-74.6944877,39.41863193,12 UPLAND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_872_25.04,-74.51471903,39.32855467,10 UPLAND AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_872_4.01,-74.86186098,39.56587468,619 FIRST AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_872_4.02,-74.78517929,39.67254126,617 FIRST AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_872_5.01,-74.5125535,39.4694025,615 FIRST AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_872_5.02,-74.52389217,39.40031601,6A CARVEL AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_872_5.03,-74.591153,39.371598,613 FIRST AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_872_6,-74.614397,39.3232385,607 FIRST AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_872_7,-74.72235966,39.57349754,12 CARVEL AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_872_8,-74.6246795,39.360902,10 CARVEL AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_872_9,-74.75180995,39.45292738,8 CARVEL AVE,GALLOWAY TWP,17,2015,1,RES1,3001 -0111_873_1.01,-74.43898215,39.36739926,531 FIRST AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_873_1.02,-74.40275769,39.38934912,11 UPLAND AVE,GALLOWAY TWP,16,1996,2,RES1,3001 -0111_873_1.03,-74.629956,39.4078035,7 UPLAND AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_873_1.04,-74.5028995,39.4315915,15 UPLAND AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_873_10,-74.785778,39.6164675,20 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_873_11.01,-74.51114484,39.44435363,12 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_873_11.02,-74.946786,39.517989,10 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_873_11.03,-74.78778069,39.62478471,8 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_873_11.04,-74.50877659,39.33655917,6 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_873_11.05,-74.737312,39.449803,4 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_873_11.06,-74.61460622,39.42437589,2 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_873_12.01,-74.46579316,39.45969156,500 BELLA CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_873_12.02,-74.58661115,39.31630897,502 BELLA CT,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_873_12.03,-74.60345417,39.34666849,504 BELLA CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_873_12.04,-74.64947263,39.44838328,506 BELLA CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_873_12.05,-74.51934332,39.38275593,508 BELLA CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_873_12.06,-74.9276845,39.5090905,510 BELLA CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_873_12.07,-74.5698595,39.3564325,512 BELLA CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_873_12.08,-74.88151114,39.59590729,514 BELLA CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_873_12.09,-74.79839807,39.54388958,516 BELLA CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_873_13.01,-74.38235232,39.41632729,501 BELLA CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_873_13.02,-74.50532748,39.32450351,503 BELLA CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_873_14.01,-74.4939345,39.4295675,505 BELLA CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_873_14.02,-74.68064458,39.55015315,507 BELLA CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_873_15.01,-74.6568895,39.3584835,509 BELLA CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_873_15.02,-74.64542219,39.44933799,511 BELLA CT,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_873_16.01,-74.5814905,39.372301,513 BELLA CT,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_873_16.02,-74.70911981,39.49948181,515 BELLA CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_873_17,-74.58604675,39.38202716,5 UPLAND AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_873_2.01,-74.65070595,39.45984437,529 FIRST AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_873_2.02,-74.903117,39.4808985,527 FIRST AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_873_3.01,-74.79648222,39.62385022,525 FIRST AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_873_3.02,-74.520936,39.3190965,523 FIRST AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_873_4.01,-74.645582,39.4645035,519 FIRST AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_873_5,-74.37621932,39.41894705,511 FIRST AVE,GALLOWAY TWP,16,1905,1,RES1,3001 -0111_873_6.01,-74.64759472,39.46884797,509 FIRST AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_873_6.02,-74.58069815,39.34255063,507 FIRST AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_873_6.03,-74.54875554,39.47699424,505 FIRST AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_873_7,-74.35834077,39.41271645,34 RIDGEWOOD AVE,GALLOWAY TWP,,1994,1,RES1,3001 -0111_873_8,-74.46535041,39.34722733,503 FIRST AVE,GALLOWAY TWP,15,1905,1,RES1,3001 -0111_873_9.01,-74.58647451,39.32353966,22 RIDGEWOOD AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_873_9.02,-74.6002335,39.317171,24 RIDGEWOOD AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_873_9.03,-74.49091613,39.33328618,26 RIDGEWOOD AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_873_9.04,-74.47278226,39.48576416,28 RIDGEWOOD AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_874_1,-74.57977382,39.44521312,31 RIDGEWOOD AVE,GALLOWAY TWP,16,1945,1,RES1,3004 -0111_874_10,-74.57304353,39.36170761,26 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_874_12.01,-74.373924,39.398569,3 RIDGEWOOD AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_874_12.02,-74.641967,39.4031975,15 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_874_12.03,-74.55383683,39.369711,17 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_874_12.04,-74.6212695,39.4321315,11 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_874_12.05,-74.88619153,39.47213868,13 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_874_12.06,-74.76301018,39.62981905,7 RIDGEWOOD AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_874_12.07,-74.45395839,39.37322606,9 RIDGEWOOD AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_874_12.08,-74.42867882,39.36815052,5 RIDGEWOOD AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_874_14,-74.58876387,39.41146495,18 E JIMMIE LEEDS RD,GALLOWAY TWP,,1970,1,RES1,3001 -0111_874_15.01,-74.76578074,39.30825307,16 E JIMMIE LEEDS RD,GALLOWAY TWP,19,1955,1,RES1,3001 -0111_874_15.02,-74.53149094,39.45503413,1 RIDGEWOOD AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_874_2,-74.60680383,39.34726151,29 RIDGEWOOD AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_874_3,-74.631178,39.426677,27 RIDGEWOOD AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_874_4.01,-74.48693903,39.34730467,19 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_874_4.02,-74.51434649,39.46273734,21 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_874_4.03,-74.63454238,39.40909613,25 RIDGEWOOD AVE,GALLOWAY TWP,15,1948,1,RES1,3001 -0111_874_4.04,-74.55714799,39.37549896,23 RIDGEWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_874_5.01,-74.80867266,39.62905497,425 FIRST AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_874_5.02,-74.53435,39.470452,423 FIRST AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_874_6.01,-74.50865651,39.43814883,44 E JIMMIE LEEDS RD,GALLOWAY TWP,,2004,1,RES1,3001 -0111_874_6.02,-74.527736,39.402811,419 FIRST AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_874_6.03,-74.58162811,39.36025636,421 FIRST AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_874_6.04,-74.4834745,39.3496345,415 FIRST AVE,GALLOWAY TWP,16,1994,1,RES1,3002 -0111_874_6.05,-74.52217882,39.3875926,417 FIRST AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_874_8,-74.49808514,39.44541466,32 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_874_9,-74.4197262,39.36701125,30 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_875.04_1.01,-74.55103496,39.54502181,101 VERA KING FARRIS DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_875.04_1.02,-74.5345115,39.3860075,STOCKTON STATE COLLEGE,GALLOWAY TWP,,0,1,RES1,3001 -0111_875.04_1.03,-74.49395553,39.33993567,STOCKTON STATE COLLEGE,GALLOWAY TWP,,0,1,RES1,3001 -0111_875.04_1.04,-74.81473939,39.63550856,STOCKTON STATE COLLEGE,GALLOWAY TWP,,0,1,RES1,3001 -0111_875.04_1.05,-74.63590123,39.61131747,STOCKTON STATE COLLEGE,GALLOWAY TWP,,0,1,COM8,3004 -0111_875.04_1.06,-74.38259948,39.39797967,STOCKTON STATE COLLEGE,GALLOWAY TWP,,0,1,RES1,3001 -0111_875.04_1.07,-74.599449,39.4310495,STOCKTON STATE COLLEGE,GALLOWAY TWP,,0,1,RES1,3001 -0111_876_1,-74.47869507,39.43318095,100 E WHITE HORSE PIKE,GALLOWAY TWP,,2007,1,RES1,3001 -0111_876_3,-74.8190325,39.6533295,807 SECOND AVE,GALLOWAY TWP,,2005,1,RES1,3001 -0111_877_1.01,-74.61017838,39.47553527,739 SECOND AVE,GALLOWAY TWP,17,1920,1,RES1,3001 -0111_877_1.02,-74.50918567,39.32147299,100 OAKBOURNE AVE,GALLOWAY TWP,15,1945,1,RES1,3001 -0111_877_1.03,-74.4951215,39.527367,737 SECOND AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_877_2,-74.5049615,39.330129,741 SECOND AVE,GALLOWAY TWP,,1998,1,RES1,3001 -0111_878_2.08,-74.547078,39.389055,104 DAPHNE DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_878_2.09,-74.58539739,39.41737614,102 DAPHNE DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_878_3.01,-74.601395,39.3670875,729 SECOND AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_878_4,-74.728879,39.588663,101 OAKBOURNE AVE,GALLOWAY TWP,16,1977,1,COM4,3004 -0111_878_5,-74.5878115,39.3191645,103 OAKBOURNE AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_878_6,-74.61595938,39.53741456,105 OAKBOURNE AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_879_1.01,-74.63603014,39.43179993,115 DAPHNE DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_879_1.02,-74.79589397,39.60830115,117 DAPHNE DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_879_2,-74.46218184,39.35495473,721 SECOND AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_879_3,-74.58645736,39.3240344,723 SECOND AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_879_4.01,-74.63763143,39.42920704,103 DAPHNE DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_879_4.02,-74.869184,39.5765495,101 DAPHNE DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_879_5,-74.47946261,39.4546978,725 SECOND AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_880_1,-74.55631369,39.47118379,805 THIRD AVE,GALLOWAY TWP,,2007,1,RES1,3001 -0111_881_1,-74.45321464,39.35425857,200 E WHITE HORSE PIKE,GALLOWAY TWP,,1986,1,RES1,3001 -0111_881_2.01,-74.51105589,39.33298021,202 E WHITE HORSE PIKE,GALLOWAY TWP,,2003,1,RES1,3001 -0111_881_3,-74.556241,39.4692165,204 E WHITE HORSE PIKE,GALLOWAY TWP,17,1981,1,RES1,3001 -0111_881_4,-74.86574447,39.49365329,206 E WHITE HORSE PIKE,GALLOWAY TWP,,1986,1,RES1,3001 -0111_881_5,-74.50013509,39.33199219,208 E WHITE HORSE PIKE,GALLOWAY TWP,,1960,1,RES1,3001 -0111_881_6,-74.803805,39.500872,212 E WHITE HORSE PIKE,GALLOWAY TWP,,1959,1,RES1,3001 -0111_882_1,-74.59924271,39.37928704,201 E WHITE HORSE PIKE,GALLOWAY TWP,17,1931,9,RES1,3001 -0111_882_2,-74.57094875,39.47803554,202 OAKBOURNE AVE,GALLOWAY TWP,16,1963,1,COM1,3004 -0111_882_3.01,-74.46079648,39.34747781,204 OAKBOURNE AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_882_3.02,-74.56382746,39.35960368,206 OAKBOURNE AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_882_4,-74.3798575,39.3954425,208 OAKBOURNE AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_882_5,-74.61881448,39.43625669,210 OAKBOURNE AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_882_6,-74.391054,39.392311,212 OAKBOURNE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_882_7,-74.8669153,39.45676155,214 OAKBOURNE AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_882_8,-74.71640882,39.47900499,203 E WHITE HORSE PIKE,GALLOWAY TWP,,1990,1,RES1,3001 -0111_883_1,-74.44210745,39.35407774,728 SECOND AVE,GALLOWAY TWP,15,1962,1,RES1,3001 -0111_883_10.02,-74.63855749,39.33911983,215 OAKBOURNE AVE,GALLOWAY TWP,16,1948,1,GOV1,3004 -0111_883_4,-74.41419968,39.37063883,711 THIRD AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_883_5,-74.59799006,39.31871847,732 SECOND AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_883_6,-74.609968,39.48778,203 OAKBOURNE AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_883_7,-74.44438993,39.48642067,205 OAKBOURNE AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_883_8,-74.59983144,39.3701812,207 OAKBOURNE AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_883_9,-74.79563762,39.64163277,211 OAKBOURNE AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_884_1.01,-74.56059236,39.36911107,200 MAGNOLIA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_884_1.02,-74.472418,39.447482,202 MAGNOLIA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_884_1.03,-74.86125164,39.48360271,MAGNOLIA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_884_1.04,-74.561822,39.3765385,MAGNOLIA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_884_2,-74.38682069,39.3901353,208 MAGNOLIA AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_884_3,-74.7021575,39.3658365,212 MAGNOLIA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_884_4,-74.88589524,39.59381453,214 MAGNOLIA AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_884_5.01,-74.4603475,39.3464625,722 SECOND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_884_5.02,-74.51495088,39.40951153,724 SECOND AVE,GALLOWAY TWP,15,1925,1,RES1,3001 -0111_886_4,-74.82017388,39.40167665,224 E WHITE HORSE PIKE,GALLOWAY TWP,,1987,1,RES1,3001 -0111_886_5,-74.64084787,39.3624596,230 E WHITE HORSE PIKE,GALLOWAY TWP,,1986,1,RES1,3001 -0111_887_1,-74.50521679,39.47847716,216 OAKBOURNE AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_887_13,-74.59878437,39.31272267,229 E WHITE HORSE PIKE,GALLOWAY TWP,,1989,1,RES1,3001 -0111_887_3,-74.56335067,39.38887086,OAKBOURNE AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_887_4,-74.61380047,39.53960184,222 OAKBOURNE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_887_5,-74.50875034,39.46582197,224 OAKBOURNE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_887_6,-74.69653754,39.63257136,226 OAKBOURNE AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_887_7,-74.52189117,39.31754399,228 OAKBOURNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_887_9,-74.485423,39.4306155,219 E WHITE HORSE PIKE,GALLOWAY TWP,,1991,1,RES1,3001 -0111_888_1.01,-74.77780652,39.64169166,216 ARBUTUS AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_888_1.02,-74.52518016,39.388514,218 ARBUTUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_888_2.01,-74.94557977,39.53075776,220 ARBUTUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_888_2.02,-74.53222133,39.4014389,222 ARBUTUS AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_888_3,-74.60943494,39.37909628,224 ARBUTUS AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_888_4,-74.52914919,39.38155154,228 ARBUTUS AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_888_5,-74.88371916,39.46384875,219 OAKBOURNE AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_888_6,-74.84244361,39.5270202,223 OAKBOURNE AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_888_7,-74.51124809,39.32741607,225 OAKBOURNE AVE,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_888_8.01,-74.577551,39.48043667,229 OAKBOURNE AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_888_8.02,-74.37750648,39.39745566,735 FOURTH AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_888_8.03,-74.87244053,39.44623351,737 FOURTH AVE,GALLOWAY TWP,16,1965,1,COM1,3004 -0111_889_1,-74.560412,39.372337,216 MAGNOLIA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_889_10,-74.50391415,39.43779679,223 ARBUTUS AVE,GALLOWAY TWP,15,1962,1,RES1,3001 -0111_889_11,-74.78640429,39.67751257,727 FOURTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_889_12,-74.8634855,39.5433335,729 FOURTH AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_889_2,-74.53356546,39.39952218,218 MAGNOLIA AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_889_3.01,-74.84692644,39.37176322,220 MAGNOLIA AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_889_3.02,-74.3566515,39.41382,222 MAGNOLIA AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_889_3.03,-74.45141018,39.35652584,224 MAGNOLIA AVE,GALLOWAY TWP,16,2000,1,RES1,3002 -0111_889_4,-74.72654042,39.45867967,226 MAGNOLIA AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_889_5,-74.645643,39.549343,228 MAGNOLIA AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_889_6,-74.51938988,39.5335794,723 FOURTH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_889_7,-74.7897355,39.4434285,215 ARBUTUS AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_889_8,-74.56829657,39.35435732,217 ARBUTUS AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_889_9,-74.526204,39.469952,221 ARBUTUS AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_890_3,-74.58754617,39.41197017,228 WAVELAND AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_890_4,-74.60378134,39.32561197,230 WAVELAND AVE,GALLOWAY TWP,,1986,1,RES1,3001 -0111_890_5,-74.6235245,39.417739,232 WAVELAND AVE,GALLOWAY TWP,15,1921,1,RES1,3001 -0111_890_7,-74.57499551,39.33718316,236 WAVELAND AVE,GALLOWAY TWP,,1980,1,RES1,3001 -0111_891_1,-74.4908165,39.4351675,232 E WHITE HORSE PIKE,GALLOWAY TWP,,1992,1,RES1,3001 -0111_891_10,-74.86446123,39.44949791,235 WAVELAND AVE,GALLOWAY TWP,,2007,1,COM4,3004 -0111_891_2,-74.80123879,39.64542274,234 E WHITE HORSE PIKE,GALLOWAY TWP,,1984,1,RES1,3001 -0111_891_3,-74.81368134,39.64003431,240 E WHITE HORSE PIKE,GALLOWAY TWP,,1988,1,RES1,3001 -0111_891_6,-74.38018491,39.39464064,242 E WHITE HORSE PIKE,GALLOWAY TWP,,1989,1,RES1,3001 -0111_891_7,-74.39390324,39.39492827,244 E WHITE HORSE PIKE,GALLOWAY TWP,,1967,1,RES1,3001 -0111_892_1,-74.43818527,39.37199591,736-738 FOURTH AVE,GALLOWAY TWP,,1970,1,RES1,3001 -0111_892_3,-74.429526,39.375735,241 E WHITE HORSE PIKE,GALLOWAY TWP,,2006,1,RES1,3001 -0111_893_1,-74.736927,39.4484785,728 FOURTH AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_893_10,-74.595465,39.3645265,241 OAKBOURNE AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_893_11,-74.82512576,39.46868488,243 OAKBOURNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_893_12,-74.4748875,39.3393375,245 OAKBOURNE AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_893_13,-74.501382,39.4307965,247 OAKBOURNE AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_893_2,-74.4177835,39.369672,232 ARBUTUS AVE,GALLOWAY TWP,16,1986,1,RES3A,3001 -0111_893_3,-74.50653539,39.44635286,234 ARBUTUS AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_893_4,-74.636961,39.3819385,236 ARBUTUS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_893_5,-74.7585415,39.432368,238 ARBUTUS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_893_6,-74.5150635,39.387482,240 ARBUTUS AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_893_7,-74.81638529,39.49722503,242 ARBUTUS AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_893_8,-74.54080205,39.39279084,709 FIFTH AVE,GALLOWAY TWP,16,1972,1,RES1,3004 -0111_893_9.01,-74.75433831,39.3014229,235 OAKBOURNE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_893_9.02,-74.639385,39.4120615,732 FOURTH AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_893_9.03,-74.634194,39.3909485,237 OAKBOURNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_893_9.04,-74.666225,39.3967645,239 OAKBOURNE AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_894_1,-74.82935879,39.56786632,720 FOURTH AVE,GALLOWAY TWP,15,1966,1,RES1,3001 -0111_894_10,-74.66894948,39.54164967,231 ARBUTUS AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_894_11,-74.54808064,39.40302456,233 ARBUTUS AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_894_12,-74.55045608,39.37636865,235 ARBUTUS AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_894_13,-74.48198138,39.3489047,237 ARBUTUS AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_894_15,-74.57701401,39.40786071,241 ARBUTUS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_894_16,-74.45711799,39.34713666,243 ARBUTUS AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_894_2,-74.88561429,39.47820245,722 FOURTH AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_894_3,-74.45717617,39.51021392,234 MAGNOLIA AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_894_4,-74.44744616,39.35558983,236 MAGNOLIA AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_894_5.01,-74.6361875,39.432764,238 MAGNOLIA AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_894_5.02,-74.556543,39.3633575,240 MAGNOLIA AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_894_6,-74.38308633,39.39669569,242 MAGNOLIA AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_894_7,-74.469053,39.4881555,244 MAGNOLIA AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_894_8,-74.7036938,39.57893417,246 MAGNOLIA AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_894_9,-74.6015425,39.321932,726 FOURTH AVE,GALLOWAY TWP,16,1975,1,RES1,3004 -0111_895_1,-74.510038,39.3226555,238 WAVELAND AVE,GALLOWAY TWP,,1986,1,RES1,3001 -0111_895_2,-74.86280412,39.54353671,240 WAVELAND AVE,GALLOWAY TWP,,1986,1,RES1,3001 -0111_895_4,-74.5508475,39.3755495,244 WAVELAND AVE,GALLOWAY TWP,,1990,1,RES1,3001 -0111_896_1,-74.5236205,39.41834,248 E WHITE HORSE PIKE,GALLOWAY TWP,,2000,1,RES1,3001 -0111_896_2,-74.4845455,39.495721,250 E WHITE HORSE PIKE,GALLOWAY TWP,,2001,1,RES1,3001 -0111_896_3.01,-74.93946548,39.52374993,252 E WHITE HORSE PIKE,GALLOWAY TWP,,1998,1,RES1,3001 -0111_896_3.02,-74.654058,39.544225,254 E WHITE HORSE PIKE,GALLOWAY TWP,,2002,1,RES1,3001 -0111_896_7,-74.68493354,39.50292856,WAVELAND AVE,GALLOWAY TWP,,1930,1,RES3B,3001 -0111_896_8,-74.49086367,39.33517699,241 WAVELAND AVE,GALLOWAY TWP,,1988,1,RES1,3001 -0111_897_11,-74.84984472,39.53334003,261 E WHITE HORSE PIKE,GALLOWAY TWP,,1984,1,GOV1,3004 -0111_897_2,-74.79286801,39.61206983,252 OAKBOURNE AVE,GALLOWAY TWP,16,2010,1,RES1,3001 -0111_897_3,-74.7531521,39.44622232,254 OAKBOURNE AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_897_4,-74.57731332,39.33493892,257 E WHITE HORSE PIKE,GALLOWAY TWP,,2006,1,RES1,3001 -0111_897_5,-74.8179355,39.3987585,258 OAKBOURNE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_897_6,-74.64947334,39.52783898,737 SIXTH AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_897_7,-74.75304976,39.66068258,247 E WHITE HORSE PIKE,GALLOWAY TWP,,1969,1,RES1,3001 -0111_897_9,-74.87853248,39.59349758,253 E WHITE HORSE PIKE,GALLOWAY TWP,,2005,1,RES1,3001 -0111_898_1,-74.51550355,39.32233016,395 FIFTH AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_898_10,-74.554092,39.3611695,261 OAKBOURNE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_898_11,-74.558747,39.41394,735 SIXTH AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_898_2,-74.53542837,39.37815468,248 ARBUTUS AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_898_3,-74.5587665,39.398524,250 ARBUTUS AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_898_4,-74.83814936,39.49434979,252 ARBUTUS AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_898_5,-74.515269,39.319861,254 ARBUTUS AVE,GALLOWAY TWP,15,1976,1,RES1,3001 -0111_898_6,-74.76742731,39.31479105,256 ARBUTUS AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_898_7,-74.4877045,39.431341,729 SIXTH AVE,GALLOWAY TWP,16,1948,1,RES1,3001 -0111_898_8,-74.50294444,39.32463285,712 FIFTH AVE,GALLOWAY TWP,15,1950,2,RES1,3001 -0111_898_9.01,-74.56938564,39.4115586,251 OAKBOURNE AVE,GALLOWAY TWP,43,1970,2,RES1,3001 -0111_898_9.02,-74.44533822,39.37236665,253 OAKBOURNE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_898_9.03,-74.55939574,39.35939105,255 OAKBOURNE AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_898_9.04,-74.3719465,39.403059,257 OAKBOURNE AVE,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_898_9.05,-74.50372408,39.32648192,259 OAKBOURNE AVE,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_899_1,-74.47919273,39.47901982,248 MAGNOLIA AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_899_10,-74.499541,39.4936705,249 ARBUTUS AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_899_11,-74.59023217,39.32206022,251 ARBUTUS AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_899_12,-74.46090865,39.34716352,253 ARBUTUS AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_899_13,-74.57238813,39.34047724,255 ARBUTUS AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_899_14,-74.544771,39.374901,257 ARBUTUS AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_899_15,-74.64985345,39.32174318,725 SIXTH AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_899_2,-74.5031508,39.3420676,250 MAGNOLIA AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_899_3,-74.60162221,39.37269643,252 MAGNOLIA AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_899_4,-74.8149565,39.64175,254 MAGNOLIA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_899_5,-74.754573,39.4290455,256 MAGNOLIA AVE,GALLOWAY TWP,16,1970,1,GOV1,3004 -0111_899_6,-74.37897031,39.39665709,260 MAGNOLIA AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_899_7,-74.6890195,39.448898,721 SIXTH AVE,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_899_8,-74.729822,39.452882,245 ARBUTUS AVE,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_899_9,-74.48066207,39.33951959,247 ARBUTUS AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_9_5,-74.6539125,39.367711,1534 MADISON AVE,GALLOWAY TWP,16,1940,1,RES3A,3001 -0111_900_1,-74.54538465,39.38892147,RAILROAD,GALLOWAY TWP,,0,1,RES1,3001 -0111_902_1,-74.6040165,39.408019,300 E WHITE HORSE PIKE,GALLOWAY TWP,,1998,1,RES1,3001 -0111_902_10,-74.54517983,39.37733049,312 E WHITE HORSE PIKE,GALLOWAY TWP,,1984,1,RES1,3001 -0111_902_3,-74.938494,39.522301,304 E WHITE HORSE PIKE,GALLOWAY TWP,,1986,1,RES1,3001 -0111_902_4,-74.638219,39.399497,306 E WHITE HORSE PIKE,GALLOWAY TWP,,1997,1,GOV1,3004 -0111_902_5,-74.38767248,39.39208033,310 E WHITE HORSE PIKE,GALLOWAY TWP,,1984,1,RES1,3001 -0111_902_6,-74.50691188,39.32387284,301 WAVELAND AVE,GALLOWAY TWP,,1955,1,RES1,3001 -0111_902_7,-74.47009358,39.34550017,303 WAVELAND AVE,GALLOWAY TWP,,1965,1,RES1,3001 -0111_903_1,-74.633694,39.541194,740 SIXTH AVE,GALLOWAY TWP,17,1956,1,RES1,3001 -0111_903_10,-74.5308525,39.3896635,309 E WHITE HORSE PIKE,GALLOWAY TWP,,1960,1,RES1,3001 -0111_903_11,-74.49663482,39.33354871,313 E WHITE HORSE PIKE,GALLOWAY TWP,,1988,1,RES1,3001 -0111_903_12,-74.469476,39.345281,315 E WHITE HORSE PIKE,GALLOWAY TWP,,1985,1,RES1,3001 -0111_903_4,-74.65565666,39.5251208,304 OAKBOURNE AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_903_5,-74.61998464,39.37156758,306 OAKBOURNE AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_903_6,-74.54837608,39.46385477,308 OAKBOURNE AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_903_7.01,-74.71249735,39.46886893,310 OAKBOURNE AVE,GALLOWAY TWP,37,1988,1,RES1,3001 -0111_903_7.02,-74.499778,39.427726,312 OAKBOURNE AVE,GALLOWAY TWP,37,1988,1,RES1,3001 -0111_903_7.03,-74.50571319,39.40883904,314 OAKBOURNE AVE,GALLOWAY TWP,37,1988,1,RES1,3001 -0111_903_8.01,-74.79367,39.633921,717 SEVENTH AVE,GALLOWAY TWP,37,1987,1,RES1,3001 -0111_903_8.02,-74.69949997,39.58669505,719 SEVENTH AVE,GALLOWAY TWP,37,1986,1,GOV1,3004 -0111_903_8.03,-74.497178,39.43431123,721 SEVENTH AVE,GALLOWAY TWP,37,1987,1,RES1,3001 -0111_903_8.04,-74.37095893,39.40524815,723 SEVENTH AVE,GALLOWAY TWP,37,1986,1,RES1,3001 -0111_903_8.05,-74.406951,39.3818685,318 OAKBOURNE AVE,GALLOWAY TWP,37,1988,1,RES1,3001 -0111_903_8.06,-74.60229759,39.48313459,316 OAKBOURNE AVE,GALLOWAY TWP,37,1987,1,RES1,3001 -0111_904_1,-74.88255919,39.59543947,734 SIXTH AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_904_10,-74.92467794,39.51544448,311 OAKBOURNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_904_11,-74.385375,39.395386,313 OAKBOURNE AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_904_12,-74.4985045,39.470377,715 SEVENTH AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_904_2,-74.72429,39.4513635,302 ARBUTUS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_904_3,-74.46687104,39.48172719,304 ARBUTUS AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_904_4.01,-74.5616865,39.371294,306 ARBUTUS AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_904_4.02,-74.82152795,39.39142373,308 ARBUTUS AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_904_4.03,-74.4967055,39.433748,310 ARBUTUS AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_904_5,-74.60769673,39.32595494,709 SEVENTH AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_904_6.01,-74.5669441,39.36779132,736 SIXTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_904_7,-74.5032635,39.342304,303 OAKBOURNE AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_904_8,-74.533567,39.3870905,305 OAKBOURNE AVE,GALLOWAY TWP,15,1950,1,RES1,3001 -0111_904_9.01,-74.37287192,39.39987134,307 OAKBOURNE AVE,GALLOWAY TWP,16,1991,1,RES4,3001 -0111_904_9.02,-74.53276175,39.47093644,309 OAKBOURNE AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_905_1,-74.5128189,39.32279084,724 SIXTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_905_10.01,-74.80466559,39.63439146,728 SIXTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_905_10.02,-74.53323344,39.38211384,301 ARBUTUS AVE,GALLOWAY TWP,16,1959,1,GOV1,3004 -0111_905_11,-74.60189421,39.48054262,303 ARBUTUS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_905_12,-74.86799733,39.45314451,305 ARBUTUS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_905_13,-74.55390128,39.46797747,307 ARBUTUS AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_905_14.02,-74.469502,39.345665,311 ARBUTUS AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_905_15,-74.516064,39.38816967,707 SEVENTH AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_905_3.02,-74.7741495,39.6669785,300A MAGNOLIA AVE,GALLOWAY TWP,16,1991,2,RES1,3001 -0111_905_4,-74.4373985,39.3645275,302 MAGNOLIA AVE,GALLOWAY TWP,16,1999,2,RES1,3001 -0111_905_5,-74.62487733,39.43925693,304 MAGNOLIA AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_905_6,-74.4847712,39.44201253,306 MAGNOLIA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_905_7,-74.48400669,39.33614647,308 MAGNOLIA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_905_8,-74.61809862,39.37861984,310 MAGNOLIA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_905_9,-74.89033708,39.55790408,312 MAGNOLIA AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_907_1,-74.5709799,39.42728263,317 WAVELAND AVE,GALLOWAY TWP,16,1941,2,RES1,3001 -0111_907_2,-74.821086,39.6203895,316 E WHITE HORSE PIKE,GALLOWAY TWP,,1960,1,RES1,3001 -0111_907_3,-74.6326105,39.360682,318 E WHITE HORSE PIKE,GALLOWAY TWP,,1965,1,RES1,3001 -0111_907_4,-74.4820716,39.34830196,322 E WHITE HORSE PIKE,GALLOWAY TWP,15,1946,1,RES1,3001 -0111_907_5,-74.4887945,39.336539,324 E WHITE HORSE PIKE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_907_6,-74.6873295,39.654395,326 E WHITE HORSE PIKE,GALLOWAY TWP,,1988,1,RES1,3001 -0111_908.01_4,-74.808387,39.633959,100 THERESA CT,GALLOWAY TWP,,0,1,RES1,3001 -0111_908.01_4_C0001,-74.65868501,39.36805483,1 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0002,-74.52099492,39.31526134,2 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0003,-74.7322925,39.4626595,3 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0004,-74.77512552,39.61711633,4 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0005,-74.54739738,39.37834073,5 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0006,-74.80972473,39.65152907,6 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0007,-74.5150855,39.3951375,7 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0008,-74.57621917,39.42255947,8 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0009,-74.48648839,39.35107778,9 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0010,-74.506992,39.446637,10 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0011,-74.48848413,39.4307151,11 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0012,-74.59623808,39.38226625,12 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0013,-74.83444077,39.47195694,13 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0014,-74.6075255,39.324033,14 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0015,-74.6166995,39.494018,15 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0016,-74.50372731,39.44878,16 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0017,-74.39998568,39.38775495,17 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0018,-74.6388525,39.338837,18 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0019,-74.54019108,39.38588898,19 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0020,-74.363063,39.4182935,20 THERESA CT,GALLOWAY TWP,35,1987,1,IND1,3004 -0111_908.01_4_C0021,-74.79227733,39.41741902,21 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0022,-74.392935,39.3950055,22 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0023,-74.647211,39.5321465,23 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0024,-74.51253314,39.47063936,24 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0025,-74.48286845,39.34209481,25 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0026,-74.66171685,39.40534304,26 THERESA CT,GALLOWAY TWP,35,1987,1,IND2,3004 -0111_908.01_4_C0027,-74.65044291,39.33921134,27 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0028,-74.62766534,39.42522369,28 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0029,-74.511799,39.3303865,29 THERESA CT,GALLOWAY TWP,35,1987,1,RES3B,3001 -0111_908.01_4_C0030,-74.38035929,39.41808403,30 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0031,-74.5036065,39.503172,31 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0032,-74.40046411,39.39225877,32 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0033,-74.50422066,39.33729195,33 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0034,-74.61483791,39.48669908,34 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0035,-74.526007,39.393647,35 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0036,-74.5218638,39.39014483,36 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0037,-74.5901065,39.3189285,37 THERESA CT,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_908.01_4_C0038,-74.56842231,39.36531447,38 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0039,-74.56705978,39.35735741,39 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0040,-74.677175,39.5165645,40 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0041,-74.625259,39.411977,41 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0042,-74.688318,39.497658,42 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0043,-74.61871479,39.55572531,43 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0044,-74.5888795,39.425733,44 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0045,-74.48674796,39.33809035,45 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0046,-74.61286522,39.42062292,46 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0047,-74.4953865,39.4306695,47 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0048,-74.7541915,39.430259,48 THERESA CT,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_908.01_4_C0049,-74.561211,39.3608885,49 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0050,-74.378065,39.3974705,50 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0051,-74.55463987,39.35649318,51 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0052,-74.52635634,39.31599203,52 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0053,-74.380702,39.4180075,53 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0054,-74.6170925,39.3204465,54 THERESA CT,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_908.01_4_C0055,-74.63639373,39.43103394,55 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0056,-74.6678685,39.46229,56 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0057,-74.50997146,39.32353942,57 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0058,-74.57435452,39.3589086,58 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0059,-74.49569253,39.43220713,59 THERESA CT,GALLOWAY TWP,35,1987,1,COM1,3004 -0111_908.01_4_C0060,-74.50806964,39.47879651,60 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0061,-74.9120799,39.5352447,61 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0062,-74.599751,39.330312,62 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0063,-74.8212255,39.398798,63 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0064,-74.36285799,39.41702912,64 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0065,-74.53666703,39.41142511,65 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0066,-74.88579052,39.55981716,66 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0067,-74.60655073,39.34404796,67 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0068,-74.79842103,39.63110296,68 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0069,-74.518995,39.440261,69 THERESA CT,GALLOWAY TWP,35,1987,1,RES3A,3001 -0111_908.01_4_C0070,-74.474386,39.442784,70 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0071,-74.69293826,39.5838759,71 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0072,-74.390114,39.389206,72 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0073,-74.46857034,39.34323555,73 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0074,-74.656486,39.529934,74 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0075,-74.82243829,39.5348266,75 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0076,-74.6427335,39.435689,76 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0077,-74.5375775,39.3786725,77 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0078,-74.52522856,39.39230282,78 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0079,-74.49349477,39.45238827,79 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0080,-74.82679772,39.38139593,80 THERESA CT,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_908.01_4_C0081,-74.6317499,39.35030647,81 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0082,-74.80859889,39.63442809,82 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0083,-74.48163153,39.33793517,83 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0084,-74.554568,39.469471,84 THERESA CT,GALLOWAY TWP,35,1987,1,COM1,3004 -0111_908.01_4_C0085,-74.36530502,39.42334275,85 THERESA CT,GALLOWAY TWP,35,1989,1,COM1,3004 -0111_908.01_4_C0086,-74.43926309,39.36890569,86 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0087,-74.80887593,39.63682666,87 THERESA CT,GALLOWAY TWP,35,1988,1,COM1,3004 -0111_908.01_4_C0088,-74.36354864,39.4111183,88 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0089,-74.7601715,39.42958,89 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0091,-74.86298036,39.55682022,91 THERESA CT,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_908.01_4_C0093,-74.83959217,39.39380297,93 THERESA CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_908.01_4_C0095,-74.52242842,39.31812834,95 THERESA CT,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_908_1,-74.51541857,39.44828431,319 E WHITE HORSE PIKE,GALLOWAY TWP,,0,1,RES1,3001 -0111_908_2,-74.541637,39.3908985,325 E WHITE HORSE PIKE,GALLOWAY TWP,,2013,1,RES1,3001 -0111_909_1,-74.57035402,39.47765575,714 SEVENTH AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_909_2,-74.58315111,39.33859542,319 OAKBOURNE AVE,GALLOWAY TWP,16,1995,1,RES3A,3001 -0111_909_3,-74.561224,39.371042,321-331 OAKBOURNE AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_910_1,-74.6478605,39.5227285,314 ARBUTUS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_910_2,-74.68357455,39.3840623,316 ARBUTUS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_911_1,-74.52242514,39.31437061,320 ARBUTUS AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_911_2,-74.3682135,39.403385,733 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_911_3,-74.59287931,39.32263291,731 EIGHTH AVE,GALLOWAY TWP,16,1963,1,RES3A,3001 -0111_911_4,-74.49016733,39.33490251,729 EIGHTH AVE,GALLOWAY TWP,16,1963,1,RES3A,3001 -0111_911_5,-74.5622525,39.409762,727 EIGHTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_912_1,-74.6477075,39.358272,710 SEVENTH AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_912_10,-74.64174438,39.47359766,324 MAGNOLIA AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_912_2,-74.6362365,39.3388865,317 ARBUTUS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_912_3,-74.907467,39.4933565,319 ARBUTUS AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_912_4,-74.5146235,39.321136,321 ARBUTUS AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_912_5,-74.5441325,39.3731105,314 MAGNOLIA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_912_6,-74.49841116,39.33459502,316 MAGNOLIA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_912_7,-74.75055371,39.46975242,318 MAGNOLIA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_912_8,-74.5893375,39.4888995,320 MAGNOLIA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_912_9,-74.44700931,39.35418348,322 MAGNOLIA AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_913_1,-74.9313515,39.52816,725 EIGHTH AVE,GALLOWAY TWP,16,2002,1,RES1,3002 -0111_914_1.01,-74.38806356,39.39301216,301 MAGNOLIA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_914_1.02,-74.52207024,39.31973719,303 MAGNOLIA AVE,GALLOWAY TWP,16,1991,1,RES1,3002 -0111_914_1.03,-74.52158278,39.32003986,305 MAGNOLIA AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_914_1.04,-74.52185537,39.32227285,307 MAGNOLIA AVE,GALLOWAY TWP,16,1990,1,RES1,3002 -0111_914_1.05,-74.52337469,39.32240182,309 MAGNOLIA AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_914_1.06,-74.51766751,39.3218815,311 MAGNOLIA AVE,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_914_1.07,-74.51262417,39.32199897,313 MAGNOLIA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_914_1.08,-74.5127145,39.322565,315 MAGNOLIA AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_914_1.09,-74.64692915,39.53135897,MAGNOLIA AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_914_10,-74.6387804,39.5267508,304 CRESTVIEW AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_914_12.01,-74.79840031,39.62202765,703 EIGHTH AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_914_12.02,-74.62417,39.39349,701 EIGHTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_914_13.01,-74.81390215,39.37212602,705 EIGHTH AVE,GALLOWAY TWP,16,1989,1,RES3B,3001 -0111_914_13.02,-74.71654371,39.38697095,705A EIGHTH AVE,GALLOWAY TWP,16,1991,1,RES3A,3001 -0111_914_13.03,-74.62653516,39.43458258,707 EIGHTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_914_14.01,-74.49410992,39.33407233,709 EIGHTH AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_914_14.02,-74.3939035,39.3859905,711 EIGHTH AVE,GALLOWAY TWP,16,2003,1,GOV1,3004 -0111_914_15,-74.67703027,39.35342367,709 WOOD LN,GALLOWAY TWP,16,1960,1,RES3B,3001 -0111_914_16,-74.428379,39.360998,707 WOOD LN,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_914_17,-74.8516125,39.434658,705 WOOD LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_18,-74.53660443,39.38059015,703 WOOD LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_19,-74.6046285,39.370378,701 WOOD LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_2,-74.513187,39.3298815,716 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_914_20,-74.50660851,39.32940484,708 WOOD LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_21,-74.58555482,39.35950752,706 WOOD LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_22,-74.5910303,39.33354113,704 WOOD LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_23,-74.60957038,39.43989984,702 WOOD LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_24,-74.79075785,39.66615682,700 WOOD LN,GALLOWAY TWP,16,1961,1,GOV1,3004 -0111_914_25,-74.58994077,39.43022691,709 ALLEN LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_26,-74.57717457,39.48170914,707 ALLEN LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_27,-74.85002666,39.60632779,705 ALLEN LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_28,-74.7844945,39.61179817,703 ALLEN LN,GALLOWAY TWP,16,1960,1,RES3A,3001 -0111_914_29,-74.77912221,39.44498579,701 ALLEN LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_3,-74.49508,39.333926,714 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_914_30,-74.63006731,39.4253814,708 ALLEN LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_31,-74.59074,39.321948,706 ALLEN LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_32,-74.51798072,39.46513141,704 ALLEN LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_33,-74.59959004,39.3309952,702 ALLEN LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_34,-74.54409848,39.37048667,700 ALLEN LN,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_914_35,-74.78007367,39.67086063,709 GAIL LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_36,-74.363407,39.419631,707 GAIL LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_37,-74.50591317,39.328671,705 GAIL LN,GALLOWAY TWP,16,1960,1,RES3A,3001 -0111_914_38,-74.81250629,39.43813525,703 GAIL LN,GALLOWAY TWP,16,1960,1,RES3A,3001 -0111_914_39,-74.59863403,39.31703582,701 GAIL LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_4,-74.7643755,39.2998365,712 SIXTH AVE,GALLOWAY TWP,16,1945,1,RES3A,3001 -0111_914_40,-74.513105,39.3307185,708 GAIL LN,GALLOWAY TWP,16,1961,1,RES1,3002 -0111_914_41,-74.75707106,39.43339323,706 GAIL LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_42,-74.51252839,39.46593342,704 GAIL LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_43,-74.594818,39.3120665,702 GAIL LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_44,-74.4920055,39.3388135,700 GAIL LN,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_45,-74.81182049,39.63063493,721 EIGHTH AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_914_46,-74.44353184,39.48593386,719 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES3A,3001 -0111_914_47,-74.88579458,39.59599285,717 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_48,-74.80896817,39.63362002,715 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_49,-74.4617845,39.3468705,713 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_914_6,-74.52281045,39.40016928,708 SIXTH AVE,GALLOWAY TWP,16,2009,1,RES1,3004 -0111_914_7.01,-74.63879653,39.53044717,706 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_914_7.02,-74.7364855,39.4671525,704 SIXTH AVE,GALLOWAY TWP,16,1987,1,RES3A,3001 -0111_914_8,-74.369827,39.40633683,700 SIXTH AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_914_9,-74.79169744,39.60296348,302 CRESTVIEW AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_915_1,-74.55305611,39.37965123,334 WAVELAND AVE,GALLOWAY TWP,15,1989,2,RES1,3001 -0111_915_4,-74.8235085,39.383468,334 E WHITE HORSE PIKE,GALLOWAY TWP,,1965,1,RES1,3001 -0111_915_5.02,-74.4848115,39.5248095,342 E WHITE HORSE PIKE,GALLOWAY TWP,16,2009,1,RES3A,3001 -0111_915_5.03,-74.55188138,39.38355428,346 E WHITE HORSE PIKE,GALLOWAY TWP,,2008,1,RES1,3001 -0111_916_1,-74.48672521,39.34919263,337 E WHITE HORSE PIKE,GALLOWAY TWP,,1972,1,RES1,3001 -0111_916_10,-74.39320116,39.38863248,735 CHELTENHAM AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_916_11,-74.57409608,39.47728124,737 CHELTENHAM AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_916_12,-74.46912217,39.49097251,739 CHELTENHAM AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_916_13,-74.63068036,39.43192293,741 CHELTENHAM AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_916_2,-74.5111038,39.32668723,335 E WHITE HORSE PIKE,GALLOWAY TWP,,1991,1,RES3A,3001 -0111_916_4,-74.37870646,39.41332154,740 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_916_5,-74.38872485,39.39162605,738 EIGHTH AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_916_6,-74.59725044,39.34554119,736 EIGHTH AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_916_7,-74.55502107,39.4650908,734 EIGHTH AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_916_8,-74.699343,39.3538975,732 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_916_9,-74.7531245,39.4524375,733 CHELTENHAM AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_917_1,-74.49110915,39.33913364,730 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_917_10,-74.64339169,39.39755408,725 CHELTENHAM AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_917_11,-74.60973121,39.38550354,723 CHELTENHAM AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_917_12,-74.58762039,39.33175968,721 CHELTENHAM AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_917_2,-74.81347365,39.63187686,728 EIGHTH AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_917_3,-74.80734804,39.63834782,726 EIGHTH AVE,GALLOWAY TWP,16,1959,1,RES1,3002 -0111_917_4,-74.63765082,39.34251934,724 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3002 -0111_917_5,-74.5139765,39.326419,722 EIGHTH AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_917_6,-74.83927853,39.39357418,720 EIGHTH AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_917_7,-74.62776188,39.35813938,731 CHELTENHAM AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_917_8,-74.57062272,39.36788033,729 CHELTENHAM AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_917_9,-74.63532,39.318144,727 CHELTENHAM AVE,GALLOWAY TWP,16,1960,1,RES1,3002 -0111_919_1.01,-74.587228,39.3323785,732 CHELTENHAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_919_1.02,-74.52112712,39.39759684,730 CHELTENHAM AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_919_1.03,-74.62216668,39.42346271,728 CHELTENHAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_919_1.04,-74.71398831,39.47061252,726 CHELTENHAM AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_919_1.05,-74.529251,39.451847,724 CHELTENHAM AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_919_1.06,-74.66536019,39.54416736,722 CHELTENHAM AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_919_1.07,-74.5045965,39.332327,720 CHELTENHAM AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_92_1,-74.50054917,39.33553045,450 COUNTY BLVD,GALLOWAY TWP,16,1931,1,RES1,3001 -0111_92_2,-74.55773112,39.39887743,461 LONDON AVE,GALLOWAY TWP,,1955,1,RES1,3004 -0111_920_1,-74.888554,39.557422,345 E WHITE HORSE PIKE,GALLOWAY TWP,,1959,1,RES1,3001 -0111_920_2,-74.49091136,39.46562973,343 E WHITE HORSE PIKE,GALLOWAY TWP,,1900,1,RES1,3001 -0111_923_1.02,-74.79496129,39.44164259,347 E WHITE HORSE PIKE,GALLOWAY TWP,,1976,1,RES1,3001 -0111_925_1,-74.597588,39.31685,718 EIGHTH AVE,GALLOWAY TWP,16,1961,1,GOV1,3002 -0111_925_10,-74.51385132,39.39901095,338 HARRISON AVE,GALLOWAY TWP,16,1961,1,RES3A,3001 -0111_925_11,-74.64491852,39.5331747,343 BLENHEIM AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_925_2,-74.5349885,39.414691,335 BLENHEIM AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_925_3,-74.63139121,39.43313566,337 BLENHEIM AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_925_4,-74.47360591,39.48586982,339 BLENHEIM AVE,GALLOWAY TWP,16,1960,1,GOV1,3004 -0111_925_5,-74.42476203,39.37560966,716 EIGHTH AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_925_6,-74.47555318,39.34194196,330 HARRISON AVE,GALLOWAY TWP,16,1960,1,RES3B,3001 -0111_925_7,-74.526544,39.383426,332 HARRISON AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_925_8,-74.51164711,39.33794282,334 HARRISON AVE,GALLOWAY TWP,16,1959,1,RES3B,3001 -0111_925_9,-74.542747,39.5304025,336 HARRISON AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_927_1,-74.616607,39.43915,349 HARRISON AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_927_10,-74.6245865,39.3935815,353 HARRISON AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_927_11,-74.5853875,39.325535,704 ANGELA CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_927_2,-74.84949436,39.60781581,709 ANGELA CT,GALLOWAY TWP,16,1979,1,AGR1,3001 -0111_927_3,-74.7348265,39.437707,707 ANGELA CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_927_4,-74.55055995,39.54122167,705 ANGELA CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_927_5,-74.4755229,39.44223794,703 ANGELA CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_927_6,-74.53691459,39.38821832,701 ANGELA CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_927_7,-74.6360208,39.39265852,702 ANGELA CT,GALLOWAY TWP,16,1979,1,RES1,3004 -0111_927_8,-74.544368,39.3775365,700 ANGELA CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_927_9,-74.57423751,39.37163566,355 HARRISON AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_93_1,-74.49653548,39.47420414,1418 ATLANTIC AVE,GALLOWAY TWP,45,1935,2,RES1,3001 -0111_93_13,-74.87752438,39.59483686,459 S LIVERPOOL AVE,GALLOWAY TWP,,1907,1,RES1,3001 -0111_93_2,-74.8238813,39.37861403,452 LONDON AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_93_5,-74.74360905,39.43037321,1416 ATLANTIC AVE,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_93_6.02,-74.8823035,39.601465,1412 ATLANTIC AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_93_9,-74.88616302,39.55681866,455 S LIVERPOOL AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_934_1,-74.58806453,39.37057087,100 CRESTVIEW AVE,GALLOWAY TWP,50,1958,1,RES1,3001 -0111_934_2.01,-74.37811137,39.39871276,719 SECOND AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_934_2.03,-74.69060394,39.44850726,114 DAPHNE DR,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_934_2.04,-74.947188,39.5247085,112 DAPHNE DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_934_2.05,-74.760722,39.63517909,110 DAPHNE DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_934_2.06,-74.49875521,39.5188918,108 DAPHNE DR,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_934_2.07,-74.52937535,39.38268376,106 DAPHNE DR,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_934_3.01,-74.59228067,39.32058005,717 SECOND AVE,GALLOWAY TWP,16,1915,1,RES1,3001 -0111_934_3.02,-74.452055,39.4908105,713-715 SECOND AVE,GALLOWAY TWP,,2003,1,RES1,3001 -0111_934_4,-74.72766103,39.58939565,711 SECOND AVE,GALLOWAY TWP,16,1957,1,RES1,3001 -0111_934_5.01,-74.5909825,39.354345,709 SECOND AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_934_5.02,-74.47524734,39.48051949,709A SECOND AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_934_6.01,-74.62673925,39.41242859,707 SECOND AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_934_6.02,-74.60387082,39.41758048,705 SECOND AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_934_7.01,-74.60497751,39.3916605,114 CRESTVIEW AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_934_7.02,-74.59370345,39.31292436,124 CRESTVIEW AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_935_10.01,-74.5685975,39.4119715,118 UPLAND AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_935_10.02,-74.52415112,39.3166653,120 UPLAND AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_935_10.03,-74.39982163,39.38595065,601 SECOND AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_935_10.04,-74.61226704,39.35151312,116 UPLAND AVE,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_935_10.05,-74.86941185,39.59225828,124 UPLAND AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_935_11,-74.71670159,39.44193855,605 SECOND AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_935_12,-74.94276752,39.51114344,615 SECOND AVE,GALLOWAY TWP,15,1947,1,RES1,3001 -0111_935_13.01,-74.49786098,39.52192423,619 SECOND AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_935_13.02,-74.95278,39.5168415,621 SECOND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_935_14.01,-74.801072,39.6424995,131 ETHAN LN,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_935_14.02,-74.5062265,39.3289865,129 ETHAN LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_935_14.03,-74.49896927,39.43024589,127 ETHAN LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_935_14.04,-74.51763995,39.44918666,125 ETHAN LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_935_14.05,-74.55411624,39.35586252,123 ETHAN LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_935_14.06,-74.72237039,39.64755728,121 ETHAN LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_935_14.07,-74.4973015,39.3345375,119 ETHAN LN,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_935_15.01,-74.5839125,39.4198125,627 SECOND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_935_15.03,-74.8757078,39.59624344,629 SECOND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_935_15.04,-74.73052633,39.58804499,111 STERLING DR,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_935_15.05,-74.51411762,39.40402644,109 STERLING DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_935_15.06,-74.591052,39.327034,107 STERLING DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_935_15.07,-74.6062975,39.365774,105 STERLING DR,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_935_15.08,-74.77633646,39.59890824,103 STERLING DR,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_935_15.09,-74.60051099,39.38420383,101 STERLING DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_935_15.10,-74.81647745,39.64750063,120 ETHAN LN,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_935_15.11,-74.5450701,39.37593013,118 ETHAN LN,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_935_15.12,-74.53590368,39.38650203,116 ETHAN LN,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_935_15.13,-74.46461905,39.49695774,117 ETHAN LN,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_935_16.01,-74.55709646,39.51136266,110 STERLING DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_935_16.02,-74.367613,39.4090805,108 STERLING DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_935_16.03,-74.79346765,39.62160408,106 STERLING DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_935_16.04,-74.780924,39.62071385,104 STERLING DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_935_16.05,-74.581258,39.330354,102 STERLING DR,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_935_16.06,-74.71632957,39.45037801,100 STERLING DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_935_17.01,-74.511747,39.336925,643 SECOND AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_935_17.02,-74.64259092,39.43642326,123 CRESTVIEW AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_935_17.03,-74.4944175,39.3349775,641 SECOND AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_935_18,-74.64637871,39.43031856,119 CRESTVIEW AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_935_19,-74.609003,39.347233,117 CRESTVIEW AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_935_2.01,-74.60183,39.33034033,634A FIRST AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_935_2.02,-74.948802,39.531557,634 FIRST AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_935_2.03,-74.527962,39.383035,632 FIRST AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_935_20,-74.371897,39.4042665,115 CRESTVIEW AVE,GALLOWAY TWP,16,1973,1,COM4,3004 -0111_935_3.01,-74.53818246,39.41626104,630 FIRST AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_935_3.02,-74.49424034,39.33351001,628A FIRST AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_935_3.03,-74.635532,39.3435035,628 FIRST AVE,GALLOWAY TWP,16,1979,1,RES3A,3001 -0111_935_4.01,-74.4899597,39.42766191,626 FIRST AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_935_4.02,-74.700372,39.584763,624 FIRST AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_935_5.01,-74.48179218,39.33721944,620 FIRST AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_935_5.02,-74.5229706,39.4631317,622 FIRST AVE,GALLOWAY TWP,16,1979,1,COM4,3004 -0111_935_6.01,-74.605697,39.3764805,618 FIRST AVE,GALLOWAY TWP,16,1997,1,RES3B,3001 -0111_935_6.03,-74.75254453,39.45332732,614 FIRST AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_935_7.01,-74.47078229,39.48867269,612 FIRST AVE,GALLOWAY TWP,15,1979,1,RES1,3001 -0111_935_7.02,-74.64369795,39.43538696,610 FIRST AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_935_7.03,-74.7888145,39.6199065,608 FIRST AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_935_7.04,-74.65056194,39.37466139,610A FIRST AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_935_8.02,-74.583805,39.49586,606 FIRST AVE,GALLOWAY TWP,16,1990,1,AGR1,3001 -0111_935_9.01,-74.57878518,39.34085334,114 UPLAND AVE,GALLOWAY TWP,16,1979,1,RES1,3002 -0111_935_9.02,-74.45671784,39.35154836,112 UPLAND AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_935_9.03,-74.51476609,39.44559186,110 UPLAND AVE,GALLOWAY TWP,16,1981,1,RES1,3004 -0111_935_9.04,-74.50218,39.3294725,108 UPLAND AVE,GALLOWAY TWP,16,1980,1,RES3A,3001 -0111_935_9.05,-74.490396,39.4925695,106 UPLAND AVE,GALLOWAY TWP,16,1980,1,RES1,3004 -0111_935_9.06,-74.58611887,39.41270324,104 UPLAND AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_935_9.07,-74.93507754,39.51919418,102 UPLAND AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_935_9.08,-74.5865035,39.3686575,100 UPLAND AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_936_1,-74.55422385,39.36533816,540 FIRST AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_936_10.01,-74.42998561,39.3726227,510 FIRST AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_936_10.02,-74.566861,39.513325,508A FIRST AVE,GALLOWAY TWP,16,2017,1,RES1,3001 -0111_936_10.03,-74.4792435,39.336891,508 FIRST AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_936_11.01,-74.44974367,39.37473017,100 RIDGEWOOD AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_936_11.02,-74.93876428,39.52903582,104 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_936_11.03,-74.5341755,39.4524625,504 FIRST AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_936_11.04,-74.51770255,39.39944115,506 FIRST AVE,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_936_11.05,-74.616902,39.3741725,106 RIDGEWOOD AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_936_11.06,-74.49834316,39.33248751,108 RIDGEWOOD AVE,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_936_11.07,-74.661223,39.545755,110 RIDGEWOOD AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_936_11.08,-74.63893761,39.33837191,112 RIDGEWOOD AVE,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_936_11.09,-74.37240792,39.40055434,114 RIDGEWOOD AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_936_12.01,-74.504022,39.341287,539 SECOND AVE,GALLOWAY TWP,16,1997,1,COM3,3004 -0111_936_12.02,-74.460387,39.345825,127 UPLAND AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_936_12.03,-74.939906,39.5156035,125 UPLAND AVE,GALLOWAY TWP,16,1990,1,COM1,3004 -0111_936_12.04,-74.55225017,39.37184351,123 UPLAND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_936_12.05,-74.78573153,39.64343602,121 UPLAND AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_936_13.01,-74.38423984,39.39442898,537 SECOND AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_936_13.02,-74.38235732,39.40048735,535A SECOND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_936_13.03,-74.8051765,39.627517,535 SECOND AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_936_14.01,-74.49061871,39.51960116,531 SECOND AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_936_14.02,-74.48474213,39.34677179,529 SECOND AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_936_14.03,-74.8028185,39.517837,527 SECOND AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_936_14.04,-74.36336666,39.40789445,525 SECOND AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_936_14.05,-74.59131853,39.32361882,533A SECOND AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_936_14.06,-74.7245685,39.5876095,533 SECOND AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_936_15.01,-74.65355534,39.36960343,521 SECOND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_936_15.02,-74.515263,39.4134695,523 SECOND AVE,GALLOWAY TWP,16,1986,1,RES3B,3001 -0111_936_15.03,-74.57155841,39.36228051,521A SECOND AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_936_16.01,-74.55300941,39.47564922,519 SECOND AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_936_16.02,-74.36278356,39.40884016,104 MISTY LN,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_936_16.03,-74.5343055,39.388102,106 MISTY LN,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_936_16.04,-74.61108666,39.436815,105 MISTY LN,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_936_16.05,-74.68109735,39.55682995,103 MISTY LN,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_936_16.06,-74.3663231,39.42362121,101 MISTY LN,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_936_17,-74.715165,39.449292,513 SECOND AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_936_18,-74.83192988,39.39252563,509 SECOND AVE,GALLOWAY TWP,,1950,1,GOV1,3004 -0111_936_19.01,-74.37124375,39.40821648,505 SECOND AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_936_19.02,-74.6194625,39.3727775,503 SECOND AVE,GALLOWAY TWP,16,1985,2,RES1,3001 -0111_936_2.01,-74.61154508,39.37024474,115 UPLAND AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_936_2.02,-74.52106917,39.320528,113 UPLAND AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_936_2.03,-74.5570905,39.3609655,111 UPLAND AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_936_2.04,-74.59677321,39.37063053,109 UPLAND AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_936_2.05,-74.69937958,39.48724185,107 UPLAND AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_936_2.06,-74.6003795,39.4094355,103 UPLAND AVE,GALLOWAY TWP,16,2011,1,RES1,3001 -0111_936_20.01,-74.65289048,39.40823985,501 SECOND AVE,GALLOWAY TWP,16,1949,1,RES1,3001 -0111_936_20.02,-74.88377067,39.55941004,116 RIDGEWOOD AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_936_20.04,-74.8374015,39.4180995,122 RIDGEWOOD AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_936_3.01,-74.45028746,39.3715947,536 FIRST AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_936_3.02,-74.64966687,39.5298239,532 FIRST AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_936_4.01,-74.51779431,39.31843672,530 FIRST AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_936_4.02,-74.927512,39.5611205,528A FIRST AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_936_4.03,-74.636121,39.6221965,528 FIRST AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_936_5.01,-74.55920032,39.36650163,526 FIRST AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_936_5.02,-74.67792593,39.38043379,526A FIRST AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_936_6,-74.762949,39.43083,524 FIRST AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_936_8.01,-74.60047258,39.43381874,518 FIRST AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_936_8.02,-74.5106465,39.3297185,516 FIRST AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_936_9.01,-74.66859447,39.38823689,514 FIRST AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_936_9.02,-74.61215069,39.32223406,512 FIRST AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_937_1.01,-74.71420353,39.43086232,201 MAGNOLIA AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_937_1.02,-74.490851,39.521779,203 MAGNOLIA AVE,GALLOWAY TWP,16,1976,1,GOV1,3004 -0111_937_1.03,-74.57637352,39.3687015,205 MAGNOLIA AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_937_1.04,-74.818976,39.6495345,209 MAGNOLIA AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_937_1.05,-74.74787657,39.59356885,211 MAGNOLIA AVE,GALLOWAY TWP,16,1978,1,GOV1,3004 -0111_937_1.06,-74.85200195,39.36675605,213 MAGNOLIA AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_937_1.07,-74.5091975,39.4129,215 MAGNOLIA AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_937_10,-74.4226635,39.365598,225 MAGNOLIA AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_937_11,-74.8285585,39.474239,721 FOURTH AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_937_12,-74.54802112,39.46318613,719 FOURTH AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_937_13.01,-74.94266006,39.52597569,717 FOURTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_937_13.02,-74.62429695,39.4213517,715 FOURTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_937_13.03,-74.83806431,39.48596547,717A FOURTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_937_14.01,-74.53829338,39.47244723,713 FOURTH AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_937_14.02,-74.5231005,39.3155615,202 BRADS CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_937_14.03,-74.85547413,39.43671103,204 BRADS CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_937_14.04,-74.79532051,39.64031886,206 BRADS CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_937_14.05,-74.61985017,39.62042219,208 BRADS CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_937_15.01,-74.55692718,39.38492087,709 FOURTH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_937_15.02,-74.49413711,39.33092917,707 FOURTH AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_937_16.01,-74.60373379,39.38475596,201 BRADS CT,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_937_16.02,-74.50038769,39.41582603,203 BRADS CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_937_16.03,-74.77006232,39.67028009,205 BRADS CT,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_937_16.04,-74.84205804,39.37343733,207 BRADS CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_937_16.05,-74.7821665,39.665619,209 BRADS CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_937_17.01,-74.68339516,39.488457,703 FOURTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_937_17.02,-74.80861147,39.66116125,701 FOURTH AVE,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_937_17.03,-74.40275769,39.38099225,218 CRESTVIEW AVE,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_937_17.04,-74.37368881,39.41411529,216 CRESTVIEW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_937_17.05,-74.80355431,39.55687949,214 CRESTVIEW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_937_2.01,-74.57256782,39.36852327,714 SECOND AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_937_2.03,-74.622617,39.4252425,712 SECOND AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_937_3.01,-74.6869459,39.41613268,710 SECOND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_937_3.02,-74.51330606,39.47182563,708A SECOND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_937_3.03,-74.37934475,39.40076617,708 SECOND AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_937_4.01,-74.44873684,39.3757589,706 SECOND AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_937_4.02,-74.65246142,39.52316516,704 SECOND AVE,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_937_5.01,-74.50120517,39.33098298,700 SECOND AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_937_5.02,-74.5625505,39.37038,202 CRESTVIEW AVE,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_937_5.03,-74.58900716,39.32194952,204 CRESTVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_937_5.04,-74.6317855,39.3487355,206 CRESTVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_937_5.05,-74.4876785,39.43877,208 CRESTVIEW AVE,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_937_5.06,-74.597859,39.34636243,210 CRESTVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_937_5.07,-74.62497467,39.39392693,212 CRESTVIEW AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_937_6,-74.52349625,39.32012465,217 MAGNOLIA AVE,GALLOWAY TWP,15,1957,1,RES1,3001 -0111_937_7,-74.71346944,39.42930438,219 MAGNOLIA AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_937_8,-74.6377101,39.34148884,221 MAGNOLIA AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_937_9,-74.51752935,39.31898898,223 MAGNOLIA AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_938.01_1.01,-74.94400374,39.51098765,636 SECOND AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_938.01_1.02,-74.75204232,39.45334238,201 CRESTVIEW AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_938.01_1.03,-74.8854659,39.60017436,203 CRESTVIEW AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_938.01_1.04,-74.50411851,39.34003984,205 CRESTVIEW AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_938.01_1.05,-74.91355052,39.51161168,207 CRESTVIEW AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_938.01_1.06,-74.48456741,39.34016012,209 CRESTVIEW AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_938.01_1.07,-74.54958854,39.36084056,211 CRESTVIEW AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_938.01_1.08,-74.94208015,39.52091245,213 CRESTVIEW AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_938.01_10,-74.63005431,39.41337854,634 SECOND AVE,GALLOWAY TWP,15,1935,1,RES1,3001 -0111_938.01_11,-74.4289365,39.3685285,632 SECOND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.01_12.01,-74.71997369,39.57164744,200 SHADY KNOLL LN,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_938.01_12.02,-74.3669965,39.413138,202 SHADY KNOLL LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_938.01_12.03,-74.706684,39.432986,204 SHADY KNOLL LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_938.01_12.04,-74.8832676,39.59546419,206 SHADY KNOLL LN,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_938.01_12.05,-74.65961089,39.51174509,208 SHADY KNOLL LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_938.01_12.06,-74.52609607,39.39406219,210 SHADY KNOLL LN,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_938.01_13.01,-74.6245932,39.43418797,201 SHADY KNOLL LN,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_938.01_13.02,-74.40035123,39.3905411,622 SECOND AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_938.01_13.03,-74.76310386,39.43070455,620 SECOND AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_938.01_13.04,-74.81688345,39.65430229,203 SHADY KNOLL LN,GALLOWAY TWP,16,1989,1,EDU1,3004 -0111_938.01_13.05,-74.4103176,39.39147112,205 SHADY KNOLL LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_938.01_13.06,-74.62263554,39.31310532,207 SHADY KNOLL LN,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_938.01_13.07,-74.62473775,39.41643348,209 SHADY KNOLL LN,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_938.01_14.01,-74.56515832,39.47514756,200 BRIARWOOD LN,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_938.01_14.02,-74.59160587,39.37051497,202 BRIARWOOD LN,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_938.01_14.03,-74.50646017,39.33134496,204 BRIARWOOD LN,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_938.01_14.04,-74.61261328,39.36578661,206 BRIARWOOD LN,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_938.01_14.05,-74.7637255,39.3065335,208 BRIARWOOD LN,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_938.01_14.06,-74.73466443,39.44751526,210 BRIARWOOD LN,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_938.01_14.07,-74.600109,39.320964,212 BRIARWOOD LN,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_938.01_15.01,-74.46337338,39.54784465,614 SECOND AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_938.01_15.02,-74.81583233,39.40636805,612 SECOND AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_938.01_15.03,-74.5176775,39.3957455,209 BRIARWOOD LN,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_938.01_15.04,-74.44342017,39.49148716,211 BRIARWOOD LN,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_938.01_15.05,-74.76515854,39.35124131,213 BRIARWOOD LN,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_938.01_15.06,-74.54732502,39.40101982,214 BRIARWOOD LN,GALLOWAY TWP,16,1982,1,RES1,3004 -0111_938.01_15.07,-74.6720655,39.454003,207 BRIARWOOD LN,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_938.01_16.01,-74.50426984,39.33760265,610 SECOND AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_938.01_16.02,-74.87852466,39.59600356,608A SECOND AVE,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_938.01_16.03,-74.491935,39.434553,608 SECOND AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_938.01_17.01,-74.59143951,39.32120116,606 SECOND AVE,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_938.01_17.02,-74.51504164,39.4024954,606A SECOND AVE,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_938.01_18,-74.52108867,39.32145849,604 SECOND AVE,GALLOWAY TWP,16,1965,2,RES1,3001 -0111_938.01_19.01,-74.5721445,39.412741,600 SECOND AVE,GALLOWAY TWP,16,1978,1,GOV1,3004 -0111_938.01_19.02,-74.52760754,39.38847861,212 UPLAND AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_938.01_19.03,-74.937285,39.5239005,214 UPLAND AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_938.01_19.04,-74.52859416,39.46220704,206 UPLAND AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_938.01_19.05,-74.59925761,39.43299615,208 UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_938.01_19.06,-74.48426183,39.34836801,210 UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_938.01_19.07,-74.50899747,39.33499612,202 UPLAND AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_938.01_19.08,-74.50827423,39.32467682,204 UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_938.01_20.01,-74.6155234,39.3110755,649 FOURTH AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_938.01_20.02,-74.8186,39.654793,217 CRESTVIEW AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_938.01_20.03,-74.8271705,39.474183,645 FOURTH AVE,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_938.01_20.04,-74.57439714,39.47847429,215 CRESTVIEW AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_938.01_21.01,-74.53595883,39.45483664,643 FOURTH AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_938.01_21.02,-74.5842853,39.41971132,641 FOURTH AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_938.01_21.03,-74.52131399,39.39520218,639 FOURTH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_938.01_22.01,-74.59915174,39.38035644,200 HAWS CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_938.01_22.02,-74.50416583,39.44564499,202 HAWS CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_938.01_22.03,-74.93791301,39.52253868,204 HAWS CT,GALLOWAY TWP,16,1996,2,RES1,3001 -0111_938.01_22.04,-74.51847146,39.40172519,206 HAWS CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_938.01_22.05,-74.50345613,39.42607805,208 HAWS CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_938.01_22.06,-74.65374959,39.53470034,210 HAWS CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_938.01_22.07,-74.49629569,39.32979266,209 HAWS CT,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_938.01_22.08,-74.52544254,39.31592785,207 HAWS CT,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_938.01_22.09,-74.5163575,39.4151665,205 HAWS CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_938.01_22.10,-74.64896901,39.35817482,203 HAWS CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_938.01_22.11,-74.468252,39.4930185,201 HAWS CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_938.01_23.01,-74.5264625,39.39791217,200 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.01_23.02,-74.49457786,39.42710454,202 SPRING MILL DR,GALLOWAY TWP,16,1980,1,GOV1,3004 -0111_938.01_23.03,-74.71697282,39.44670391,204 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.01_23.04,-74.51646511,39.32666743,206 SPRING MILL DR,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_938.01_23.05,-74.36629053,39.42134967,208 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.01_23.06,-74.36551504,39.40924132,210 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.01_23.07,-74.9467345,39.516581,212 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.01_24.01,-74.46419375,39.49463507,226 SPRING MILL DR,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_938.01_24.02,-74.76433,39.3109255,224 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.01_24.03,-74.93089767,39.5246137,222 SPRING MILL DR,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_938.01_24.04,-74.647768,39.5349465,220 SPRING MILL DR,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_938.01_24.05,-74.47076858,39.48393089,218 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.01_24.06,-74.4812345,39.3408395,216 SPRING MILL DR,GALLOWAY TWP,16,1980,1,GOV1,3004 -0111_938.01_24.07,-74.5093695,39.3239005,214 SPRING MILL DR,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_938.01_26.01,-74.482701,39.344613,611 FOURTH AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_938.01_26.02,-74.57924348,39.35240467,609A FOURTH AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_938.01_26.03,-74.80322706,39.3089087,609 FOURTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_938.01_27.01,-74.48068393,39.33683332,607 FOURTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_938.01_27.02,-74.56105953,39.41646545,605 FOURTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_938.01_28.01,-74.4818675,39.3532455,601 FOURTH AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_938.01_28.02,-74.566072,39.352312,224 UPLAND AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_938.01_29.01,-74.50724888,39.32852995,220 UPLAND AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_938.01_29.02,-74.46127184,39.35532472,222 UPLAND AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_938.01_30.01,-74.50470534,39.41304317,216 UPLAND AVE,GALLOWAY TWP,16,1969,1,COM1,3004 -0111_938.01_30.02,-74.609883,39.4872395,218 UPLAND AVE,GALLOWAY TWP,16,1973,1,RES1,3004 -0111_938.01_30.03,-74.37509206,39.41311457,218A UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_938.02_1,-74.56168348,39.39113729,201 SPRING MILL DR,GALLOWAY TWP,16,1980,1,GOV1,3004 -0111_938.02_10,-74.63724392,39.53199486,223 SPRING MILL DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_938.02_2,-74.68110776,39.4139401,203 SPRING MILL DR,GALLOWAY TWP,16,1980,2,GOV1,3004 -0111_938.02_3,-74.505498,39.3353455,205 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.02_4,-74.88406,39.502972,207 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.02_5,-74.48853494,39.45428491,209 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.02_6,-74.7909355,39.6443745,215 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.02_7,-74.638961,39.39926,217 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.02_8,-74.50794694,39.46227187,219 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_938.02_9,-74.36825,39.417815,221 SPRING MILL DR,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_939_1.01,-74.54928596,39.37549034,201 UPLAND AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_939_1.02,-74.53613269,39.37688606,203 UPLAND AVE,GALLOWAY TWP,16,1977,1,GOV1,3004 -0111_939_10,-74.497071,39.517807,512 SECOND AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_939_11.01,-74.68953,39.448581,510 SECOND AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_939_11.02,-74.69545743,39.58861015,510A SECOND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_939_12,-74.579676,39.3118435,508 SECOND AVE,GALLOWAY TWP,,1998,1,RES1,3001 -0111_939_13,-74.67248921,39.37401624,506 SECOND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_14,-74.80401136,39.62521802,500 SECOND AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_939_16,-74.949017,39.4975385,210 RIDGEWOOD AVE,GALLOWAY TWP,16,1933,1,RES1,3001 -0111_939_17,-74.61311658,39.4105748,225 UPLAND AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_939_19.01,-74.462149,39.3499795,200 EGNOR DR,GALLOWAY TWP,16,1989,1,EDU1,3004 -0111_939_19.02,-74.8843329,39.59391382,200 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_19.03,-74.5006425,39.431973,202 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_939_19.04,-74.5826435,39.4199775,204 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_19.05,-74.58282185,39.32868888,206 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_19.06,-74.63962135,39.53090553,208 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_939_19.07,-74.60104427,39.32873181,210 WEDGEWOOD CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_939_19.08,-74.52373584,39.52898484,212 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_19.09,-74.81004706,39.64332716,214 WEDGEWOOD CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_939_19.10,-74.4845325,39.433934,213 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_19.11,-74.49485607,39.42807374,211 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_19.12,-74.51130513,39.47340064,209 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_939_19.13,-74.4938825,39.3348475,207 WEDGEWOOD CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_19.14,-74.4616495,39.4631795,533 FOURTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_19.15,-74.476673,39.3406215,535 FOURTH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_939_19.16,-74.57347293,39.35837225,202 EGNOR DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_939_19.17,-74.88479517,39.55828605,204 EGNOR DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_19.18,-74.61329782,39.48605815,206 EGNOR DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_19.19,-74.51706984,39.31977849,208 EGNOR DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_19.20,-74.6426526,39.43511283,210 EGNOR DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_19.21,-74.68034116,39.49312384,211 EGNOR DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_19.22,-74.565933,39.3635535,209 EGNOR DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_19.23,-74.590426,39.3768745,207 EGNOR DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_19.24,-74.505323,39.445617,205 EGNOR DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_939_19.25,-74.6483501,39.4316527,203 EGNOR DR,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_939_19.26,-74.478824,39.347115,201 EGNOR DR,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_939_2.01,-74.46747466,39.3467515,205 UPLAND AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_939_2.02,-74.365706,39.415085,207 UPLAND AVE,GALLOWAY TWP,16,1976,1,GOV1,3004 -0111_939_20,-74.49706542,39.43367762,515 FOURTH AVE,GALLOWAY TWP,,1974,1,RES1,3001 -0111_939_21.01,-74.4850705,39.3383555,509 FOURTH AVE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_939_21.02,-74.5680195,39.411707,507-507A FOURTH AVE,GALLOWAY TWP,16,1981,2,RES1,3001 -0111_939_21.03,-74.451508,39.4903205,513 FOURTH AVE,GALLOWAY TWP,16,1950,1,GOV1,3004 -0111_939_22.01,-74.39231147,39.39259084,505 FOURTH AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_939_22.02,-74.3699315,39.4183825,230 RIDGEWOOD AVE,GALLOWAY TWP,16,2004,1,COM1,3004 -0111_939_22.03,-74.624269,39.3849625,503A FOURTH AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_939_22.04,-74.583977,39.4063405,503 FOURTH AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_939_22.05,-74.47995441,39.33687632,226 RIDGEWOOD AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_939_22.06,-74.48948191,39.33738936,222 RIDGEWOOD AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_939_3.01,-74.59019795,39.37826593,209 UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_939_3.02,-74.8045315,39.6640085,211 UPLAND AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_939_4.01,-74.92700431,39.5073906,538 SECOND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_939_4.02,-74.5937395,39.311731,538A SECOND AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_939_5.01,-74.53922866,39.38163097,534 SECOND AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_939_5.02,-74.6383615,39.525378,536 SECOND AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_6.01,-74.81655822,39.52228944,200 LINDA LN,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_939_6.02,-74.9239215,39.481567,202 LINDA LN,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_939_6.03,-74.63575918,39.53030399,204 LINDA LN,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_6.04,-74.63464555,39.4349227,206 LINDA LN,GALLOWAY TWP,16,1986,1,RES2,3005 -0111_939_6.05,-74.528364,39.4025255,208 LINDA LN,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_939_6.06,-74.6277368,39.39140553,210 LINDA LN,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_939_6.07,-74.59121806,39.37617477,212 LINDA LN,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_939_7.01,-74.604651,39.350015,201 LINDA LN,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_939_7.02,-74.55092155,39.38340869,203 LINDA LN,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_939_7.03,-74.70256005,39.57537574,205 LINDA LN,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_939_7.04,-74.53513831,39.3059445,207 LINDA LN,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_939_7.05,-74.8057125,39.6480825,209 LINDA LN,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_939_7.06,-74.49065684,39.33292796,211 LINDA LN,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_939_7.07,-74.53443,39.388788,213 LINDA LN,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_939_8.01,-74.48562383,39.47814249,524 SECOND AVE,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_939_8.02,-74.4821745,39.353626,526 SECOND AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_939_8.03,-74.5231845,39.3217265,522 SECOND AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_94_1,-74.4944765,39.3408115,450 S LIVERPOOL AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_94_10,-74.77345093,39.6272307,453 S PHILADELPHIA AVE,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_94_11,-74.46359367,39.34847249,455 S PHILADELPHIA AVE,GALLOWAY TWP,16,1911,1,RES1,3001 -0111_94_12,-74.88613394,39.49772131,457-459S PHILADELPHIA AVE,GALLOWAY TWP,16,1931,2,RES1,3001 -0111_94_3,-74.37840494,39.40026441,1404 ATLANTIC AVE,GALLOWAY TWP,,1950,1,RES1,3001 -0111_94_4,-74.8029955,39.640906,454 S LIVERPOOL AVE,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_94_5,-74.53944832,39.38820448,456 S LIVERPOOL AVE,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_94_6,-74.61779084,39.50838696,458 S LIVERPOOL AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_94_9,-74.60616258,39.49213756,451 S PHILADELPHIA AVE,GALLOWAY TWP,,1945,1,RES1,3001 -0111_940_1,-74.78976117,39.64359849,716 FOURTH AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_940_10.01,-74.67760094,39.4780052,706 FOURTH AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_940_10.02,-74.42832218,39.36764198,704 FOURTH AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_940_10.03,-74.369175,39.4113115,706A FOURTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_940_11.01,-74.4783525,39.346558,230 IVYSTONE CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_940_11.02,-74.5550635,39.356232,234 IVYSTONE CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_940_11.03,-74.63261353,39.38955432,238 IVYSTONE CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_940_11.04,-74.843922,39.5391655,242 IVYSTONE CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_940_12.01,-74.523716,39.4087715,719 SIXTH AVE,GALLOWAY TWP,16,1927,1,RES1,3001 -0111_940_12.02,-74.4544715,39.371466,255 MAGNOLIA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_940_12.03,-74.6190633,39.37266543,253 MAGNOLIA AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_940_12.04,-74.512835,39.4443695,247 MAGNOLIA AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_940_12.05,-74.5550475,39.477993,245 MAGNOLIA AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_940_12.06,-74.79430315,39.63461227,251 MAGNOLIA AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_940_12.07,-74.7894025,39.6333255,249 MAGNOLIA AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_940_12.08,-74.5378885,39.4687275,248 ASCHWIND CT,GALLOWAY TWP,18,2002,1,RES1,3001 -0111_940_12.10,-74.5165835,39.4589755,252 ASCHWIND CT,GALLOWAY TWP,18,2003,1,RES1,3001 -0111_940_12.11,-74.5367218,39.48909181,254 ASCHWIND CT,GALLOWAY TWP,18,2002,1,RES1,3001 -0111_940_12.12,-74.77291767,39.425732,256 ASCHWIND CT,GALLOWAY TWP,18,2005,1,RES1,3001 -0111_940_12.13,-74.53920829,39.35220055,258 ASCHWIND CT,GALLOWAY TWP,18,2002,1,RES1,3001 -0111_940_12.14,-74.55486817,39.35700251,717 SIXTH AVE,GALLOWAY TWP,16,1850,1,RES1,3001 -0111_940_14.01,-74.55304233,39.46456694,711 SIXTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_940_14.02,-74.58017005,39.33401173,709 SIXTH AVE,GALLOWAY TWP,15,1900,1,RES1,3001 -0111_940_14.04,-74.68224767,39.38475162,251 ASCHWIND CT,GALLOWAY TWP,18,2003,1,IND1,3002 -0111_940_14.05,-74.53907193,39.50274758,249 ASCHWIND CT,GALLOWAY TWP,18,2001,1,RES1,3001 -0111_940_15.01,-74.51984466,39.41896793,253 ASCHWIND CT,GALLOWAY TWP,18,2006,1,RES1,3001 -0111_940_15.02,-74.503524,39.411797,705 SIXTH AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_940_17,-74.97385369,39.50800725,246 CRESTVIEW AVE,GALLOWAY TWP,,1970,1,RES1,3001 -0111_940_18,-74.56801082,39.35380167,701 SIXTH AVE,GALLOWAY TWP,15,1960,1,RES2,3005 -0111_940_2,-74.57009828,39.35154475,231 MAGNOLIA AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_940_3,-74.90989554,39.48883771,233 MAGNOLIA AVE,GALLOWAY TWP,15,1955,1,RES1,3001 -0111_940_4.01,-74.46179229,39.35754624,235 MAGNOLIA AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_940_4.02,-74.551186,39.4740095,237 MAGNOLIA AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_940_5,-74.45389836,39.49925677,239 MAGNOLIA AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_940_6,-74.64914444,39.39642037,241 MAGNOLIA AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_940_7,-74.44843312,39.49667872,243 MAGNOLIA AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_940_8.01,-74.61936872,39.36934855,712 FOURTH AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_940_9,-74.55132266,39.38266998,708 FOURTH AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_941_1.01,-74.60501449,39.50225317,642 FOURTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_941_1.02,-74.582585,39.371113,640 FOURTH AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_941_1.03,-74.75382336,39.44869626,239 IVYSTONE CT,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_941_1.04,-74.40184173,39.39463642,241 IVYSTONE CT,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_941_1.05,-74.603734,39.3871235,243 IVYSTONE CT,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_941_10.01,-74.48785083,39.441179,614A FOURTH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_941_10.02,-74.550784,39.362769,614 FOURTH AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_941_10.03,-74.5163405,39.4723965,612 FOURTH AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_941_11,-74.76601337,39.30747207,610 FOURTH AVE,GALLOWAY TWP,16,1935,2,RES1,3004 -0111_941_12.01,-74.61204637,39.34503178,608 FOURTH AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_941_12.02,-74.94351293,39.53289922,606A FOURTH AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_941_12.03,-74.57704833,39.35433449,606 FOURTH AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_941_13.01,-74.36406306,39.41916978,228 UPLAND AVE,GALLOWAY TWP,15,1984,1,RES1,3001 -0111_941_13.02,-74.654873,39.3571145,230 UPLAND AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_941_13.03,-74.61897356,39.45819379,232 UPLAND AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_941_13.04,-74.45167522,39.3731277,234 UPLAND AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_941_13.05,-74.5983,39.370417,236 UPLAND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_941_13.06,-74.610781,39.366803,238 UPLAND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_941_13.07,-74.5899755,39.3283615,240 UPLAND AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_941_14,-74.71966026,39.44033828,242 UPLAND AVE,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_941_15,-74.7911013,39.44318264,637 SIXTH AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_941_16,-74.55886,39.4146795,635 SIXTH AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_941_17,-74.46152102,39.35252324,633 SIXTH AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_941_18.01,-74.5394265,39.388784,631 SIXTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_941_18.02,-74.54378307,39.37361217,629A SIXTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_941_18.03,-74.51889,39.402947,629 SIXTH AVE,GALLOWAY TWP,16,1987,1,COM1,3004 -0111_941_19,-74.581137,39.3320375,627 SIXTH AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_941_20,-74.755434,39.661692,625 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_941_21,-74.45584064,39.48981051,623 SIXTH AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_941_23,-74.62914036,39.60761494,619 SIXTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_941_24.01,-74.49257688,39.33444284,617A SIXTH AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_941_24.02,-74.398388,39.3870395,617 SIXTH AVE,GALLOWAY TWP,16,1994,1,RES3A,3001 -0111_941_26.01,-74.55739,39.398997,611 SIXTH AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_941_26.02,-74.39695756,39.38493037,609 SIXTH AVE,GALLOWAY TWP,16,1987,1,RES1,3004 -0111_941_27,-74.54473735,39.37041239,607 SIXTH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_941_28,-74.5699435,39.412848,605 SIXTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_941_29.01,-74.48990755,39.42162532,258 UPLAND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_941_29.02,-74.84077584,39.38566259,256 UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_941_29.03,-74.66372445,39.51562656,254 UPLAND AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_941_29.04,-74.66171572,39.41624911,252 UPLAND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_941_29.05,-74.5537095,39.470295,250 UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_941_29.06,-74.60123756,39.3213818,248 UPLAND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_941_29.07,-74.6114274,39.4286402,246 UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_941_29.08,-74.552871,39.37857,244 UPLAND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_941_3.01,-74.610279,39.384197,634 FOURTH AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_941_3.02,-74.46676598,39.49921324,632 FOURTH AVE,GALLOWAY TWP,16,1974,1,COM4,3004 -0111_941_3.03,-74.60294063,39.3439939,632A FOURTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_941_4.01,-74.57084654,39.37281412,630 FOURTH AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_941_4.02,-74.7176135,39.63576,628 FOURTH AVE,GALLOWAY TWP,16,1978,1,RES1,3004 -0111_941_5,-74.55024794,39.46470572,626 FOURTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_941_7,-74.57227079,39.42629182,622 FOURTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_941_8,-74.7312385,39.4544,620 FOURTH AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_941_9.01,-74.578951,39.4184965,618 FOURTH AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_941_9.02,-74.47385874,39.34279014,616A FOURTH AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_941_9.03,-74.45194715,39.37148537,616 FOURTH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_942_1.01,-74.608841,39.3663975,538 FOURTH AVE,GALLOWAY TWP,16,1974,1,COM1,3004 -0111_942_1.02,-74.96986776,39.51235658,231 UPLAND AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_942_1.03,-74.62310057,39.42459125,235 UPLAND AVE,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_942_1.04,-74.88543669,39.55936475,237 UPLAND AVE,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_942_10.01,-74.46072268,39.46876842,514 FOURTH AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_942_10.02,-74.81062413,39.55980694,512 FOURTH AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_942_10.03,-74.64290979,39.52809224,203 TIMBERLANE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_942_10.04,-74.9396615,39.5152385,205 TIMBERLANE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_942_10.05,-74.70051073,39.48543864,207 TIMBERLANE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_942_10.06,-74.59486482,39.31610747,209 TIMBERLANE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_942_10.07,-74.66887513,39.51485409,211 TIMBERLANE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_942_10.08,-74.56655734,39.47712953,210 TIMBERLANE,GALLOWAY TWP,16,1984,1,COM1,3004 -0111_942_10.09,-74.49933963,39.33174417,208 TIMBERLANE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_942_10.10,-74.59285966,39.50942498,206 TIMBERLANE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_942_10.11,-74.7164965,39.640022,204 TIMBERLANE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_942_11.01,-74.44236137,39.37064867,510 FOURTH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_942_11.02,-74.449416,39.3810605,508A FOURTH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_942_11.03,-74.524956,39.4210075,508 FOURTH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_942_12.01,-74.6717115,39.556192,506 FOURTH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_942_12.02,-74.8196395,39.472791,504 FOURTH AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_942_12.03,-74.64784272,39.4587834,502 FOURTH AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_942_13,-74.8037465,39.441829,232 RIDGEWOOD AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_942_14,-74.6398045,39.5331245,234 RIDGEWOOD AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_942_16,-74.4640425,39.359229,238 RIDGEWOOD AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_942_17,-74.5680375,39.3639185,240 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_942_18,-74.53496866,39.45144227,242 RIDGEWOOD AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_942_19,-74.68685817,39.49971601,244 RIDGEWOOD AVE,GALLOWAY TWP,15,1983,2,RES1,3001 -0111_942_2.01,-74.4862259,39.35289385,239 UPLAND AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_942_2.02,-74.58151956,39.47263086,241 UPLAND AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_942_20,-74.83888196,39.52457329,246 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_942_21,-74.67392079,39.57071228,248 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_942_22.01,-74.51622429,39.40048359,251 UPLAND AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_942_22.02,-74.7076235,39.565344,245 UPLAND AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_942_22.03,-74.57756907,39.36728182,243 UPLAND AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_942_22.04,-74.562117,39.362369,249 UPLAND AVE,GALLOWAY TWP,16,1975,1,GOV1,3004 -0111_942_22.05,-74.5147895,39.3207865,247 UPLAND AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_22.06,-74.61774685,39.43727104,257 UPLAND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_942_23.01,-74.57794503,39.35132082,537 SIXTH AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_942_23.02,-74.595691,39.3578355,533 SIXTH AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_942_24,-74.5497795,39.477202,531 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_25,-74.879416,39.59459,525 SIXTH AVE,GALLOWAY TWP,,1940,1,RES1,3001 -0111_942_27.01,-74.63778466,39.350267,519 SIXTH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_942_27.02,-74.62920124,39.60853595,517 SIXTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_942_28.01,-74.83805579,39.49028353,515 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_28.02,-74.53512767,39.30537651,513 SIXTH AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_942_29.01,-74.50199375,39.43240388,214 PROVIDENCE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_942_29.02,-74.69700414,39.34931118,212 PROVIDENCE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_942_29.03,-74.60724792,39.50146739,210 PROVIDENCE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_942_29.04,-74.5822555,39.423439,208 PROVIDENCE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_942_29.05,-74.6434477,39.36711428,206 PROVIDENCE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_942_29.06,-74.57648958,39.33669568,204 PROVIDENCE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_942_29.07,-74.62158797,39.42184284,202 PROVIDENCE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_942_29.08,-74.55635057,39.47709104,200 PROVIDENCE CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_942_3,-74.46124434,39.35100449,536 FOURTH AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_942_30.01,-74.46010251,39.35539684,213 PROVIDENCE CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_942_30.02,-74.68919551,39.6372231,211 PROVIDENCE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_942_30.03,-74.76485837,39.6364627,209 PROVIDENCE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_942_30.04,-74.40704604,39.38202268,207 PROVIDENCE CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_942_30.05,-74.48353254,39.34739371,205 PROVIDENCE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_942_30.06,-74.44625595,39.48938184,203 PROVIDENCE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_942_30.07,-74.57111142,39.34140942,201 PROVIDENCE CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_942_31.01,-74.60329399,39.31937124,250 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_31.02,-74.50167727,39.40868432,252 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_31.03,-74.52326937,39.3198833,254 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_31.04,-74.50839758,39.45117186,256 RIDGEWOOD AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_942_31.05,-74.371716,39.4015305,258 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_31.06,-74.5519428,39.38049302,260 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_31.07,-74.56001168,39.41617696,262 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_31.08,-74.88213196,39.59551692,264 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_4.01,-74.52172748,39.31538316,534A FOURTH AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_942_4.02,-74.63023843,39.4331408,534 FOURTH AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_942_5,-74.73198173,39.47342164,532 FOURTH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_942_6.01,-74.60707765,39.50270105,530 FOURTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_942_6.02,-74.786219,39.641291,528 FOURTH AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_942_7.02,-74.5756325,39.417578,524 FOURTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_942_7.03,-74.48044679,39.34741096,524A FOURTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_942_8.01,-74.74316717,39.58940044,522 FOURTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_942_8.02,-74.69381048,39.44821847,520 FOURTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_942_9.01,-74.70953924,39.43421496,516 FOURTH AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_942_9.02,-74.49398947,39.33583782,202 TIMBERLANE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_943_1.01,-74.76015115,39.48175904,303 CRESTVIEW AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_943_1.02,-74.542625,39.45817917,305 CRESTVIEW AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_943_1.03,-74.49495783,39.34101151,309 CRESTVIEW AVE,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_943_10,-74.49027274,39.49739845,610 SIXTH AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_943_11,-74.59028791,39.32717016,606 SIXTH AVE,GALLOWAY TWP,15,1970,1,RES1,3001 -0111_943_12.01,-74.6035655,39.4273575,300 UPLAND AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_943_12.02,-74.58081097,39.35659248,308 UPLAND AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_943_12.03,-74.58409034,39.32537101,310 UPLAND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_943_12.04,-74.390116,39.393709,312 UPLAND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_943_13.01,-74.88262252,39.48259567,641 EIGHTH AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_943_13.02,-74.56427601,39.35558666,639 EIGHTH AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_943_14.01,-74.43955848,39.36511024,637 EIGHTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_943_14.02,-74.590584,39.402229,635 EIGHTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_943_14.03,-74.5143864,39.39555267,633 EIGHTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_943_16,-74.374015,39.417584,625 EIGHTH AVE,GALLOWAY TWP,16,1960,1,RES1,3002 -0111_943_17,-74.36694566,39.42146701,623 EIGHTH AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_943_18,-74.5572165,39.4672995,621 EIGHTH AVE,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_943_19.01,-74.57797415,39.36699467,619B EIGHTH AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_943_19.02,-74.52734513,39.40609882,619A EIGHTH AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_943_19.03,-74.57828989,39.36751607,619 EIGHTH AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_943_2,-74.46690384,39.54051202,634 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_943_20.01,-74.52247142,39.39409686,617 EIGHTH AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_943_20.02,-74.69710997,39.49748558,615A EIGHTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_943_20.03,-74.467019,39.5396285,615 EIGHTH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_943_21.01,-74.60025756,39.3703348,613 EIGHTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_943_21.02,-74.48460298,39.34544733,611 EIGHTH AVE,GALLOWAY TWP,16,1954,1,RES1,3001 -0111_943_21.03,-74.46103099,39.5205609,609 EIGHTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_943_22,-74.56453069,39.41839797,607 EIGHTH AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_943_23.01,-74.48162633,39.34889472,316 UPLAND AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_943_23.02,-74.54595753,39.38532635,320 UPLAND AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_943_23.03,-74.555393,39.3740035,324 UPLAND AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_943_23.04,-74.60588548,39.31750568,326 UPLAND AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_943_25,-74.6497055,39.528399,627 EIGHTH AVE,GALLOWAY TWP,15,1928,1,RES1,3001 -0111_943_3,-74.90086468,39.5508581,632 SIXTH AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_943_4.01,-74.58485932,39.42908999,630 SIXTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_943_4.02,-74.43725733,39.36550834,628 SIXTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_943_4.03,-74.49558285,39.43754232,628A SIXTH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_943_5.01,-74.57422367,39.40853251,626 SIXTH AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_943_5.02,-74.807451,39.6624255,624A SIXTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_943_5.03,-74.63803076,39.35967462,624 SIXTH AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_943_6.01,-74.86266903,39.57975642,622 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_943_6.02,-74.455704,39.4782425,620 SIXTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_943_7,-74.489889,39.419512,618 SIXTH AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_943_8,-74.37319158,39.40668506,616 SIXTH AVE,GALLOWAY TWP,16,1973,1,COM1,3004 -0111_943_9,-74.42491065,39.37135375,614 SIXTH AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_944_1,-74.4986475,39.4601955,518 SIXTH AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_944_10,-74.8153108,39.53067505,314 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_944_11,-74.57429729,39.5107382,316 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_944_2,-74.625464,39.530517,516 SIXTH AVE,GALLOWAY TWP,16,1963,1,COM1,3004 -0111_944_3,-74.5110445,39.3387375,514 SIXTH AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_944_4,-74.50553174,39.44788744,302 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_944_5,-74.87763458,39.44231296,304 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_944_6,-74.8088635,39.6346035,306 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_944_7,-74.51880498,39.39404468,308 CHARLES DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_944_8,-74.7263665,39.4536915,310 CHARLES DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_944_9,-74.423467,39.374015,312 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3004 -0111_945_1.01,-74.66062167,39.547765,309 UPLAND AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_945_1.02,-74.48427985,39.33852933,307 UPLAND AVE,GALLOWAY TWP,,1994,1,RES1,3001 -0111_945_1.03,-74.55806382,39.35746941,311 UPLAND AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_945_1.04,-74.85010217,39.44052195,313 UPLAND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_945_1.05,-74.45594485,39.49209987,315 UPLAND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_945_10.01,-74.53518293,39.39708507,300 HUNTINGTON CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_945_10.02,-74.45105348,39.35454586,302 HUNTINGTON CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_945_10.03,-74.80515258,39.63083015,304 HUNTINGTON CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_945_10.04,-74.56649866,39.37226998,306 HUNTINGTON CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_945_10.05,-74.4483745,39.3533115,308 HUNTINGTON CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_945_10.06,-74.69920481,39.58689989,310 HUNTINGTON CT,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_945_10.07,-74.4836575,39.432519,312 HUNTINGTON CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_945_11,-74.51420331,39.41497744,301 HUNTINGTON CT,GALLOWAY TWP,16,2016,2,COM4,3004 -0111_945_12.01,-74.39301188,39.38797663,523 EIGHTH AVE,GALLOWAY TWP,16,1985,1,RES1,3002 -0111_945_12.02,-74.47024975,39.36573396,305 HUNTINGTON CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_945_12.03,-74.89428232,39.50176549,307 HUNTINGTON CT,GALLOWAY TWP,16,1986,1,COM7,3004 -0111_945_12.04,-74.58187355,39.36513224,309 HUNTINGTON CT,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_945_12.05,-74.62072267,39.43694224,311 HUNTINGTON CT,GALLOWAY TWP,16,1986,1,RES4,3001 -0111_945_13,-74.77657254,39.60121313,515 EIGHTH AVE,GALLOWAY TWP,,1945,1,RES1,3001 -0111_945_14.01,-74.56176232,39.54513882,509 EIGHTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_945_14.02,-74.4530025,39.3719705,507 EIGHTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_945_14.03,-74.50423922,39.32938434,505 EIGHTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_945_15.01,-74.50007568,39.41654909,328 RIDGEWOOD AVE,GALLOWAY TWP,16,1996,1,COM1,3004 -0111_945_15.02,-74.90894,39.5281155,318 RIDGEWOOD AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_15.03,-74.49521932,39.33287102,316 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_945_15.04,-74.565808,39.358467,324 RIDGEWOOD AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_945_15.05,-74.5231865,39.385025,320 RIDGEWOOD AVE,GALLOWAY TWP,16,1998,1,GOV1,3004 -0111_945_16,-74.50980137,39.45712953,520 SIXTH AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_17,-74.54472695,39.54290385,321 CHARLES DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_945_18,-74.6380665,39.522459,319 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_19,-74.51123671,39.40753088,317 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_2.01,-74.5258385,39.3131695,301 CAMBRIDGE CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_945_2.02,-74.59449002,39.37823256,303 CAMBRIDGE CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_2.03,-74.80421964,39.60387838,305 CAMBRIDGE CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_945_2.04,-74.549643,39.3856225,307 CAMBRIDGE CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_2.05,-74.72562072,39.46133409,309 CAMBRIDGE CT,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_945_2.06,-74.751037,39.4518335,311 CAMBRIDGE CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_2.07,-74.609888,39.512858,313 CAMBRIDGE CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_2.08,-74.78043397,39.61995449,314 CAMBRIDGE CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_945_2.09,-74.9419145,39.528577,312 CAMBRIDGE CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_2.10,-74.82718213,39.40300916,310 CAMBRIDGE CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_2.11,-74.57394118,39.33976369,308 CAMBRIDGE CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_2.12,-74.5782895,39.33514,306 CAMBRIDGE CT,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_2.13,-74.80930662,39.45632231,304 CAMBRIDGE CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_945_2.14,-74.574299,39.3481865,302 CAMBRIDGE CT,GALLOWAY TWP,16,1979,1,GOV1,3004 -0111_945_2.15,-74.48817477,39.33772552,300 CAMBRIDGE CT,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_945_20,-74.56498193,39.36875912,315 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_21,-74.52265418,39.46201471,313 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_22,-74.61047197,39.35296463,311 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_23,-74.62426724,39.37578009,309 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_24,-74.503017,39.3271265,307 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_25,-74.507066,39.4256915,305 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_26,-74.80234179,39.54203555,303 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_27,-74.42737202,39.36646691,301 CHARLES DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_28,-74.73245079,39.46118201,512 SIXTH AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_945_3.01,-74.5016675,39.33670433,526 SIXTH AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_945_3.02,-74.48004335,39.34969111,524 SIXTH AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_945_3.03,-74.85018958,39.37170823,522 SIXTH AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_945_4.01,-74.9150115,39.50868,510A SIXTH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_945_4.02,-74.66468942,39.46283818,510 SIXTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_945_4.03,-74.8597125,39.555683,508 SIXTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_945_5.01,-74.6847591,39.35677146,506 SIXTH AVE,GALLOWAY TWP,16,1976,1,GOV1,3004 -0111_945_5.02,-74.55479387,39.53274795,504 SIXTH AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_945_6.01,-74.4525635,39.48936,500 SIXTH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_945_6.02,-74.37543811,39.4112731,312 RIDGEWOOD AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_945_6.03,-74.6297146,39.4385612,314 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_945_6.04,-74.404504,39.38964,310 RIDGEWOOD AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_945_6.05,-74.45149886,39.50030279,308 RIDGEWOOD AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_945_6.06,-74.68445059,39.44132677,302 RIDGEWOOD AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_945_6.07,-74.509913,39.4523245,304 RIDGEWOOD AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_945_6.08,-74.852204,39.54093,306 RIDGEWOOD AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_945_7.01,-74.57356144,39.33838783,331 UPLAND AVE,GALLOWAY TWP,16,1997,1,GOV1,3004 -0111_945_7.02,-74.80814743,39.40978782,327 UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_945_7.03,-74.6538795,39.5352905,319 UPLAND AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_945_7.04,-74.6645175,39.5141885,317 UPLAND AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_945_8.01,-74.63568906,39.43401043,537 EIGHTH AVE,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_945_8.03,-74.52676699,39.52639106,535 EIGHTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_945_9,-74.78712307,39.60525739,533 EIGHTH AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_946_1,-74.65074173,39.37015525,714 EIGHTH AVE,GALLOWAY TWP,16,1918,1,RES1,3001 -0111_946_2.01,-74.39893203,39.38567434,712 EIGHTH AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_946_2.02,-74.6351484,39.42264617,710 EIGHTH AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_946_2.03,-74.80185613,39.64399182,708 EIGHTH AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_946_3.01,-74.59649182,39.31631348,706 EIGHTH AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_946_3.02,-74.56946782,39.35436249,704 EIGHTH AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_946_4,-74.59495782,39.31447593,702 EIGHTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_946_5,-74.58392316,39.33165458,700 EIGHTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_947_1.01,-74.47610615,39.48591497,638 EIGHTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_947_1.02,-74.62022706,39.62068731,636 EIGHTH AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_947_10.01,-74.688156,39.634742,340 UPLAND AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_947_10.02,-74.538236,39.498479,344 UPLAND AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_947_10.03,-74.68599714,39.49711132,348 UPLAND AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_947_10.04,-74.58484468,39.37604254,352 UPLAND AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_947_10.05,-74.56474206,39.36960082,354 UPLAND AVE,GALLOWAY TWP,16,1991,1,COM1,3004 -0111_947_11.01,-74.6219165,39.375055,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_947_11.02,-74.4487955,39.373896,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_947_11.03,-74.77760496,39.62263284,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_947_11.04,-74.46985688,39.34483533,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_947_11.05,-74.67309581,39.37637678,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_947_11.06,-74.558091,39.4727085,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_947_2,-74.5439085,39.3919355,634 EIGHTH AVE,GALLOWAY TWP,16,1973,2,RES1,3001 -0111_947_4.01,-74.36769817,39.407754,626 EIGHTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_947_4.02,-74.53286422,39.39326111,624A EIGHTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_947_4.03,-74.93129328,39.51225553,624 EIGHTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_947_5.01,-74.54339616,39.38909802,622 EIGHTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_947_5.02,-74.556873,39.3703055,620 EIGHTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_947_6.02,-74.552191,39.377639,616 EIGHTH AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_947_7,-74.56225466,39.37074999,614 EIGHTH AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_947_8.01,-74.544049,39.3893165,610 EIGHTH AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_947_8.02,-74.56019027,39.37058404,608 EIGHTH AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_948_1,-74.8763175,39.499338,550 EIGHTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_948_10.01,-74.62521866,39.60596147,526 EIGHTH AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_948_10.02,-74.584982,39.34325,524 EIGHTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_948_10.03,-74.55163599,39.46403346,522 EIGHTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_948_11.01,-74.64514625,39.54982396,520 EIGHTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_948_11.02,-74.50909438,39.33246584,520A EIGHTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_948_11.03,-74.5388125,39.4156175,518 EIGHTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_948_12,-74.4878915,39.332827,336 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_948_13,-74.5438355,39.385146,338 RIDGEWOOD AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_948_14.01,-74.50222529,39.41932013,340 RIDGEWOOD AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_948_14.02,-74.48763435,39.33883348,342 RIDGEWOOD AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_948_15,-74.4708415,39.49123,346 RIDGEWOOD AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_948_16,-74.53731641,39.46249922,350 RIDGEWOOD AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_948_17.01,-74.795417,39.3112945,354 RIDGEWOOD AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_948_17.02,-74.71856925,39.56771833,360 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_948_17.03,-74.61585593,39.31983865,352 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_948_18.01,-74.51143722,39.43968863,505 TENTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_948_18.02,-74.544829,39.378274,503A TENTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_948_18.03,-74.58594915,39.45868377,503 TENTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_948_19.01,-74.5546145,39.5028825,507 TENTH AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_948_19.02,-74.597575,39.3810845,507A TENTH AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_948_19.03,-74.62424528,39.41242787,509 TENTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_948_2,-74.603996,39.321608,339 UPLAND AVE,GALLOWAY TWP,16,1964,1,GOV1,3004 -0111_948_20.01,-74.49269039,39.33279333,511A TENTH AVE,GALLOWAY TWP,16,2006,1,RES1,3001 -0111_948_20.02,-74.42765679,39.36560283,511 TENTH AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_948_20.03,-74.80350082,39.63551873,511B TENTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_948_21.01,-74.47678084,39.3401215,513 TENTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_948_21.02,-74.5586835,39.365805,515 TENTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_948_21.03,-74.6063885,39.618636,517 TENTH AVE,GALLOWAY TWP,16,1985,1,COM1,3004 -0111_948_21.04,-74.85162282,39.62558698,513A TENTH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_948_22,-74.50522049,39.33947317,519 TENTH AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_948_23,-74.82456559,39.65148653,521 TENTH AVE,GALLOWAY TWP,16,2012,1,RES1,3001 -0111_948_24.01,-74.608799,39.441716,523 TENTH AVE,GALLOWAY TWP,16,1997,1,IND1,3002 -0111_948_24.02,-74.8046575,39.6044435,523A TENTH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_948_24.03,-74.499134,39.4200405,525 TENTH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_948_26.01,-74.616179,39.3709555,353 UPLAND AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_948_26.02,-74.87846494,39.48787158,357 UPLAND AVE,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_948_26.03,-74.62440139,39.35172198,531 TENTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_948_26.04,-74.7045666,39.4211209,355 UPLAND AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_948_26.05,-74.5284692,39.3836733,359 UPLAND AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_948_26.06,-74.6266485,39.46158542,535 TENTH AVE,GALLOWAY TWP,16,1997,1,RES3A,3001 -0111_948_27,-74.78116392,39.67297882,351 UPLAND AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_948_28,-74.54768395,39.40500584,349 UPLAND AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_948_29,-74.55594476,39.35569485,512 EIGHTH AVE,GALLOWAY TWP,16,1985,2,RES1,3001 -0111_948_3,-74.63017421,39.3547934,343 UPLAND AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_948_39,-74.60817049,39.4325733,506 EIGHTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_948_4.01,-74.88345595,39.59818805,546 EIGHTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_948_4.02,-74.44569974,39.37156782,548 EIGHTH AVE,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_948_5.01,-74.65115217,39.52224124,544 EIGHTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_948_5.02,-74.711079,39.467037,544A EIGHTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_948_6.01,-74.74826701,39.45036291,540 EIGHTH AVE,GALLOWAY TWP,,1994,1,RES1,3001 -0111_948_6.02,-74.37633273,39.4173224,538 EIGHTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_948_7.01,-74.63100308,39.39176705,536 EIGHTH AVE,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_948_7.02,-74.65647806,39.52479366,534 EIGHTH AVE,GALLOWAY TWP,16,2004,1,RES3B,3001 -0111_948_8,-74.50269275,39.33777378,542 EIGHTH AVE,GALLOWAY TWP,16,1971,1,RES3A,3001 -0111_948_9.01,-74.38022151,39.41681438,300 LONGFELLOW CT,GALLOWAY TWP,16,1983,2,RES1,3001 -0111_948_9.02,-74.63968309,39.38063356,302 LONGFELLOW CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_948_9.03,-74.7902895,39.646307,304 LONGFELLOW CT,GALLOWAY TWP,16,1982,1,GOV1,3004 -0111_948_9.04,-74.64201442,39.53051165,306 LONGFELLOW CT,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_948_9.05,-74.52646246,39.45721984,308 LONGFELLOW CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_948_9.06,-74.60384398,39.35555281,310 LONGFELLOW CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_948_9.07,-74.63616607,39.37097192,309 LONGFELLOW CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_948_9.08,-74.61452761,39.43071272,307 LONGFELLOW CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_948_9.09,-74.48252416,39.35214617,305 LONGFELLOW CT,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_948_9.11,-74.49761822,39.44846254,301 LONGFELLOW CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_949_2,-74.80259397,39.63026534,47 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_949_4,-74.44234036,39.35921433,55 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_949_5,-74.764852,39.671529,59 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_949_6,-74.58890907,39.32597131,65 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_949_7,-74.510482,39.4618745,67 E JIMMIE LEEDS RD,GALLOWAY TWP,,2003,1,RES1,3001 -0111_95_4,-74.5199,39.387466,1409 BROAD ST,GALLOWAY TWP,,1953,1,RES1,3001 -0111_95_5,-74.65606147,39.41647982,501 S PHILADELPHIA AVE,GALLOWAY TWP,,1955,1,RES1,3001 -0111_950.01_1,-74.47218233,39.3416765,1 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_950.01_2,-74.71390218,39.46965784,5 E JIMMIE LEEDS RD,GALLOWAY TWP,,1961,1,RES1,3001 -0111_950.01_3.01,-74.4639565,39.349552,9 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_950.01_3.02,-74.57461635,39.42872345,11 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_950.01_3.03,-74.463433,39.3525735,13 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_950.01_3.04,-74.8780285,39.602351,15 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_950.01_4.01,-74.61598207,39.35080712,17 E JIMMIE LEEDS RD,GALLOWAY TWP,,2001,1,RES1,3001 -0111_950.02_10.01,-74.504075,39.3300745,121 GREAT CREEK RD,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_950.02_10.02,-74.48106217,39.34692897,123 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_950.02_11,-74.58027247,39.36058732,127 GREAT CREEK RD,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_950.02_12.02,-74.61085533,39.3426581,239 WRANGLEBORO RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_950.02_12.03,-74.5982618,39.34505234,237 WRANGLEBORO RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_950.02_4,-74.538295,39.3724445,19 E JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_950.02_5,-74.60767086,39.31141623,23 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1920,1,RES1,3001 -0111_950.02_7.01,-74.58400382,39.37716542,101 GREAT CREEK RD,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_950.02_7.02,-74.35990499,39.41431567,111 GREAT CREEK RD,GALLOWAY TWP,16,1981,1,RES3A,3001 -0111_950.02_7.03,-74.81156008,39.37912023,243 SERENITY LN,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_950.02_7.04,-74.841219,39.479995,241 SERENITY LN,GALLOWAY TWP,16,1998,1,COM1,3004 -0111_950.02_7.05,-74.497707,39.5194475,239 SERENITY LN,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_950.02_7.06,-74.513047,39.323644,240 SERENITY LN,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_950.02_7.07,-74.95509,39.5287965,242 SERENITY LN,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_950.02_8,-74.489924,39.4281955,113 GREAT CREEK RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_952.01_1.03,-74.50603117,39.33122246,132 REEDS RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_952.01_2.01,-74.8816015,39.599297,159 WRANGLEBORO RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_952.01_2.03,-74.81700635,39.6369463,122 REEDS RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_952.01_3.01,-74.79843663,39.66873392,155 WRANGLEBORO RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_952.01_3.02,-74.61113,39.3246925,153 WRANGLEBORO RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_952.01_3.03,-74.6275285,39.425512,151 WRANGLEBORO RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_952.01_4,-74.73784245,39.42936181,149 WRANGLEBORO RD,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_952.01_5.01,-74.522412,39.456835,120 COLLINS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_952.01_5.05,-74.95366646,39.52032896,121 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.06,-74.61015476,39.32787271,123 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.07,-74.68172415,39.41571842,125 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_952.01_5.08,-74.7876829,39.61283279,127 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.09,-74.6516305,39.3494465,129 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.11,-74.504514,39.3349515,133 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.12,-74.49661387,39.4272772,132 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.13,-74.8553925,39.4853765,130 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.14,-74.90181878,39.49176205,128 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.15,-74.52938318,39.54220163,126 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.16,-74.76788415,39.34930683,124 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.17,-74.571624,39.3700055,122 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.18,-74.75541325,39.40154296,120 MOHICAN CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.19,-74.68076724,39.44500391,144 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.21,-74.5083495,39.4945575,140 SEMINOLE CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.22,-74.46261367,39.3503835,138 SEMINOLE CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.23,-74.57525,39.4843735,136 SEMINOLE CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.24,-74.3557655,39.4150545,134 SEMINOLE CT,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.25,-74.5894145,39.48985,132 SEMINOLE CT,GALLOWAY TWP,16,1989,1,RES1,3002 -0111_952.01_5.26,-74.56393248,39.47026549,130 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.27,-74.46507515,39.49543388,128 SEMINOLE DR,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_952.01_5.28,-74.8105675,39.633202,126 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3002 -0111_952.01_5.29,-74.65380845,39.45655705,SEMINOLE DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_952.01_5.31,-74.54432824,39.37864627,116 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.32,-74.7954282,39.63679072,114 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.33,-74.5914045,39.3241075,112 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.34,-74.398183,39.3889185,110 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.35,-74.87860002,39.54215669,108 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.36,-74.36022217,39.41075051,106 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3004 -0111_952.01_5.37,-74.514435,39.3282075,104 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.38,-74.62974192,39.42470019,102 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.39,-74.44458977,39.37063284,100 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.01_5.41,-74.49179411,39.33223316,152 NAVESINK CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_952.01_5.42,-74.74613537,39.44558076,150 NAVESINK CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_952.01_5.43,-74.79841125,39.35740893,154 NAVESINK CT,GALLOWAY TWP,16,1988,1,COM3,3004 -0111_952.01_5.44,-74.58526067,39.3846995,156 NAVESINK CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_952.01_5.45,-74.80509892,39.62287316,158 NAVESINK CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_952.01_5.46,-74.45053553,39.37460731,161 NAVESINK CT,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_952.01_5.47,-74.56960415,39.37480059,159 NAVESINK CT,GALLOWAY TWP,16,1988,1,COM1,3004 -0111_952.01_5.48,-74.60841715,39.30640583,157 NAVESINK CT,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_952.01_5.49,-74.61545882,39.33971954,155 NAVESINK CT,GALLOWAY TWP,16,1988,1,COM4,3004 -0111_952.01_5.51,-74.6073435,39.376961,151 NAVESINK CT,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_952.01_5.53,-74.63654167,39.52464201,WRANGLEBORO RD,GALLOWAY TWP,,0,1,RES3A,3001 -0111_952.01_5.54,-74.52146566,39.44657548,40 SHAWNEE PL,GALLOWAY TWP,,0,1,RES1,3001 -0111_952.01_5.54_C0701,-74.58462038,39.35991431,48 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0702,-74.68462612,39.49713444,47 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0703,-74.507263,39.3311335,46 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0704,-74.55499258,39.46530228,45 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0705,-74.5872475,39.35796112,44 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0706,-74.524524,39.3853735,43 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0801,-74.55925622,39.47228655,49 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0802,-74.592084,39.3711915,50 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES3A,3001 -0111_952.01_5.54_C0803,-74.68413445,39.35625219,51 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0804,-74.723768,39.5775555,52 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0805,-74.65087002,39.33838617,53 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES3A,3001 -0111_952.01_5.54_C0806,-74.463426,39.349683,54 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0901,-74.59817075,39.32387138,55 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0902,-74.37084125,39.41648636,56 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0903,-74.65087261,39.37187077,57 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0904,-74.78251635,39.54407158,58 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0905,-74.53693566,39.411488,59 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C0906,-74.59855935,39.38396788,60 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3002 -0111_952.01_5.54_C1001,-74.600794,39.435889,61 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3002 -0111_952.01_5.54_C1002,-74.55513178,39.47284394,62 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1003,-74.63552934,39.43479593,63 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1004,-74.878477,39.475148,64 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1005,-74.52931498,39.31005109,65 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1006,-74.8814805,39.593652,66 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1101,-74.585059,39.432924,67 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1102,-74.81616884,39.3702015,68 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1103,-74.52702241,39.40241172,69 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1104,-74.63832063,39.34178236,70 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1105,-74.6304814,39.61160862,71 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1106,-74.60842241,39.41772369,72 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1201,-74.623408,39.6240825,73 SHAWNEE PL,GALLOWAY TWP,35,1989,1,COM1,3004 -0111_952.01_5.54_C1202,-74.73563792,39.43881925,74 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES3A,3001 -0111_952.01_5.54_C1203,-74.4566375,39.503365,75 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1204,-74.4726155,39.481579,76 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3002 -0111_952.01_5.54_C1205,-74.79055059,39.53259565,77 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1206,-74.5708165,39.3700635,78 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1301,-74.8821815,39.5977115,79 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1302,-74.5256795,39.313561,80 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1303,-74.50295633,39.331099,81 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1304,-74.81451171,39.63845314,82 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1305,-74.6033995,39.316618,83 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1306,-74.5001214,39.525078,84 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3004 -0111_952.01_5.54_C1307,-74.71644448,39.40170219,85 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1308,-74.55671482,39.37046328,86 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1401,-74.57605943,39.52339931,94 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3004 -0111_952.01_5.54_C1402,-74.740167,39.589741,93 SHAWNEE PL,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_952.01_5.54_C1403,-74.46436403,39.54303784,92 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES3A,3001 -0111_952.01_5.54_C1404,-74.4950615,39.334543,91 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3002 -0111_952.01_5.54_C1405,-74.8368915,39.48774,90 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1406,-74.60199897,39.38819483,89 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1407,-74.62922519,39.35643693,88 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1408,-74.47945567,39.34044134,87 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1501,-74.58901984,39.4117684,95 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1502,-74.54866743,39.3878177,96 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1503,-74.90496846,39.48096634,97 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1504,-74.78178264,39.67483557,98 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1505,-74.53652206,39.38127031,99 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1506,-74.3759525,39.4173715,100 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1507,-74.777643,39.6255405,101 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1508,-74.62764736,39.41211883,102 SHAWNEE PL,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.01_5.54_C1601,-74.61498452,39.31171234,19 ARAPAHO PL,GALLOWAY TWP,33,1989,1,GOV1,3004 -0111_952.01_5.54_C1602,-74.58609431,39.32556145,20 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1603,-74.5221655,39.317388,21 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3002 -0111_952.01_5.54_C1604,-74.51604988,39.32433446,22 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1605,-74.51984859,39.46182401,23 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1606,-74.437516,39.490188,24 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1607,-74.7152745,39.4648155,13 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1608,-74.86108314,39.59517367,14 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1609,-74.53198343,39.38195672,15 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1610,-74.60506653,39.3082635,16 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1611,-74.72606521,39.45085315,17 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES3A,3001 -0111_952.01_5.54_C1612,-74.6279215,39.4167535,18 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1613,-74.6428825,39.43662783,7 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1614,-74.70682542,39.43328517,8 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES3A,3001 -0111_952.01_5.54_C1615,-74.50100796,39.33028183,9 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES3A,3001 -0111_952.01_5.54_C1616,-74.51404532,39.41018839,10 ARAPAHO PL,GALLOWAY TWP,33,1989,1,GOV1,3004 -0111_952.01_5.54_C1617,-74.44187211,39.37187369,11 ARAPAHO PL,GALLOWAY TWP,33,1989,1,EDU1,3004 -0111_952.01_5.54_C1618,-74.880863,39.483971,12 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1619,-74.39863932,39.38383097,1 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES3A,3001 -0111_952.01_5.54_C1620,-74.557896,39.3963265,2 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES3B,3001 -0111_952.01_5.54_C1621,-74.60290831,39.43327447,3 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1622,-74.361585,39.409319,4 ARAPAHO PL,GALLOWAY TWP,33,1989,1,COM1,3004 -0111_952.01_5.54_C1623,-74.58614935,39.40471678,5 ARAPAHO PL,GALLOWAY TWP,33,1989,1,GOV1,3004 -0111_952.01_5.54_C1624,-74.49291513,39.33215518,6 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1701,-74.72167959,39.44537557,43 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1702,-74.730853,39.455267,44 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1703,-74.4421575,39.3667745,45 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1704,-74.80814577,39.53726221,46 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1705,-74.62531213,39.40572431,47 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1706,-74.63390025,39.34880349,48 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1707,-74.51699705,39.3937168,37 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1708,-74.49319928,39.47653169,38 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1709,-74.5516069,39.47264008,39 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1710,-74.54759789,39.37731714,40 ARAPAHO PL,GALLOWAY TWP,33,1989,1,GOV1,3004 -0111_952.01_5.54_C1711,-74.6149123,39.31938764,41 ARAPAHO PL,GALLOWAY TWP,33,1989,1,GOV1,3004 -0111_952.01_5.54_C1712,-74.60544335,39.39040698,42 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1713,-74.5224925,39.4410055,31 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1714,-74.697494,39.5056915,32 ARAPAHO PL,GALLOWAY TWP,33,1989,1,GOV1,3004 -0111_952.01_5.54_C1715,-74.43847683,39.36601167,33 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1716,-74.75716967,39.42963766,34 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1717,-74.62811378,39.36313019,35 ARAPAHO PL,GALLOWAY TWP,33,1989,1,COM4,3004 -0111_952.01_5.54_C1718,-74.48470868,39.34560114,36 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1719,-74.59554601,39.42773078,25 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1720,-74.639007,39.380964,26 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1721,-74.49961653,39.40992032,27 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1722,-74.4642645,39.47278,28 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES3A,3001 -0111_952.01_5.54_C1723,-74.77283539,39.61003287,29 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1724,-74.50577854,39.43761216,30 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1801,-74.62586379,39.35780814,67 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1802,-74.8371523,39.48626842,68 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1803,-74.635432,39.3840325,69 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1804,-74.48206901,39.35313034,70 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1805,-74.80466534,39.64478496,71 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1806,-74.577882,39.38439167,72 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1807,-74.613185,39.318194,61 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1808,-74.43354881,39.36988053,62 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1809,-74.55485191,39.36167016,63 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1810,-74.50764653,39.33450967,64 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1811,-74.53310263,39.30656885,65 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1812,-74.62364924,39.6209051,66 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1813,-74.7358587,39.43526339,55 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1814,-74.3829785,39.3965765,56 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1815,-74.51815935,39.31750298,57 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1816,-74.81263703,39.60420866,58 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1817,-74.8417085,39.536329,59 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1818,-74.49320655,39.33839769,60 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1819,-74.51108168,39.33958495,49 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1820,-74.48446434,39.34121249,50 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1821,-74.60899675,39.44134922,51 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1822,-74.368059,39.411854,52 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1823,-74.8657215,39.6025135,53 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.01_5.54_C1824,-74.51125248,39.33178033,54 ARAPAHO PL,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_952.02_1,-74.489646,39.43527661,101 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_10,-74.624798,39.393509,119 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_2,-74.3655755,39.415513,103 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_3,-74.63647036,39.3713411,105 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_4,-74.7966105,39.6347435,107 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_5,-74.44215047,39.36965382,109 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_6,-74.65273894,39.52675239,111 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_7,-74.57399665,39.37062102,113 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_8,-74.55055,39.4765375,115 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.02_9,-74.638742,39.336653,117 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_1,-74.61204141,39.36693874,107 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_10,-74.940568,39.5119205,129 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_11,-74.61456644,39.3129327,127 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_12,-74.37733381,39.39785133,125 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_13,-74.49318417,39.34051249,123 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_14,-74.69932524,39.64261181,121 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_15,-74.63989467,39.52978301,119 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_16,-74.6081179,39.32290232,117 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_17,-74.49980753,39.4946027,115 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_18,-74.47619182,39.33832753,113 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_19,-74.48853442,39.44097925,111 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_2,-74.61058682,39.37883234,106 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_20,-74.58224083,39.33068733,109 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_3,-74.61086549,39.32556983,108 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_4,-74.77112392,39.31381883,110 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_5,-74.4213615,39.372427,112 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_6,-74.6157925,39.525867,114 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_7,-74.82032854,39.39504297,116 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_952.03_8,-74.6104749,39.4184562,118 MOHICAN DR,GALLOWAY TWP,16,1989,1,RES1,3004 -0111_952.03_9,-74.82684732,39.52725945,131 SEMINOLE DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_952.04_1_C1011,-74.5023215,39.4261295,1 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1012,-74.780863,39.5004125,2 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1013,-74.6640735,39.3613185,3 SENECA DR,GALLOWAY TWP,35,1989,1,RES3A,3001 -0111_952.04_1_C1014,-74.500544,39.519246,4 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1015,-74.599257,39.4286695,5 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1016,-74.840211,39.48889,6 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1021,-74.50333935,39.33353557,14 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1022,-74.490086,39.3359235,13 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1023,-74.52079221,39.40574132,12 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1024,-74.5921065,39.4152025,11 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1025,-74.50551744,39.41241238,10 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1026,-74.4703515,39.487845,9 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1027,-74.57306271,39.33960289,8 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1028,-74.592909,39.417661,7 SENECA DR,GALLOWAY TWP,35,1989,1,COM3,3004 -0111_952.04_1_C1031,-74.50172037,39.41042275,15 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1032,-74.37210688,39.40310484,16 SENECA DR,GALLOWAY TWP,35,1989,1,RES3B,3001 -0111_952.04_1_C1033,-74.642571,39.36709,17 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1034,-74.67317699,39.3547916,18 SENECA DR,GALLOWAY TWP,35,1989,1,RES3B,3001 -0111_952.04_1_C1035,-74.60532225,39.43932039,19 SENECA DR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_952.04_1_C1036,-74.7567065,39.433411,20 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1041,-74.60614783,39.31702852,28 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1042,-74.62201585,39.43727592,27 SENECA DR,GALLOWAY TWP,35,1989,1,COM1,3004 -0111_952.04_1_C1043,-74.4545,39.489085,26 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1044,-74.5585725,39.4060415,25 SENECA DR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_952.04_1_C1045,-74.88322595,39.45481774,24 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1046,-74.57353915,39.37641339,23 SENECA DR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_952.04_1_C1047,-74.5699075,39.427224,22 SENECA DR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_952.04_1_C1048,-74.4921085,39.4350875,21 SENECA DR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_952.04_1_C1051,-74.517437,39.4023885,29 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1052,-74.47187125,39.49322507,30 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1053,-74.51587019,39.40240605,31 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1054,-74.88586787,39.56526931,32 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1055,-74.946778,39.5163515,33 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1056,-74.6200993,39.3821332,34 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3004 -0111_952.04_1_C1061,-74.5197105,39.4681635,42 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1062,-74.7005965,39.572962,41 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1063,-74.8695545,39.568998,40 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1064,-74.944332,39.49637551,39 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1065,-74.75473625,39.43034154,38 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1066,-74.80195321,39.64287131,37 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1067,-74.508452,39.461918,36 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_952.04_1_C1068,-74.798763,39.632313,35 SENECA DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_953.01_2.02_C0009,-74.50556942,39.4934758,9 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.02_C0010,-74.4960455,39.432574,10 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.02_C0011,-74.5315635,39.386486,11 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.02_C0012,-74.37269239,39.40707764,12 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.02_C0013,-74.6424033,39.43225303,13 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.02_C0014,-74.79864894,39.64381485,14 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.02_C0015,-74.49446085,39.53066854,15 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.02_C0016,-74.500227,39.335244,16 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.03_C0017,-74.52039721,39.31800624,17 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.03_C0018,-74.78719183,39.6596495,18 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.03_C0019,-74.656672,39.359542,19 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.04_C0020,-74.48690733,39.34988057,20 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.04_C0021,-74.63664255,39.42662622,21 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.04_C0022,-74.79340144,39.53513328,22 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.05_C0023,-74.8831485,39.5364285,23 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.05_C0024,-74.581493,39.4235675,24 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.05_C0025,-74.61101361,39.38325123,25 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.06_C0026,-74.65937256,39.57596794,26 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.06_C0027,-74.67358783,39.613212,27 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.06_C0028,-74.585416,39.327465,28 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.06_C0029,-74.6230995,39.4395975,29 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.06_C0030,-74.7527635,39.4537365,30 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.06_C0031,-74.61796071,39.43225222,31 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.06_C0032,-74.5144693,39.44020525,32 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.06_C0033,-74.68086978,39.44538408,33 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.07_C0034,-74.65541181,39.35874542,34 CLUB PL,GALLOWAY TWP,33,1984,1,IND2,3004 -0111_953.01_2.07_C0035,-74.50795735,39.38594637,35 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.07_C0036,-74.65009573,39.52386437,36 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.07_C0037,-74.51963,39.3895355,37 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.07_C0038,-74.57465587,39.40987719,38 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.07_C0039,-74.5902295,39.3229135,39 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.07_C0040,-74.79325409,39.61012364,40 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.07_C0041,-74.5146905,39.329112,41 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.08_C0042,-74.52559419,39.39610344,42 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.08_C0043,-74.63686862,39.52675253,43 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.08_C0044,-74.6151065,39.323855,44 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.09_C0045,-74.40594723,39.39274514,45 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.09_C0046,-74.53558213,39.49768377,46 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.09_C0047,-74.59700826,39.41160254,47 CLUB PL,GALLOWAY TWP,35,1984,1,GOV1,3004 -0111_953.01_2.10_C0048,-74.598548,39.38014,48 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.10_C0049,-74.757806,39.4323785,49 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.10_C0050,-74.46351084,39.34836848,50 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.11_C0051,-74.53997049,39.37245761,51 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.11_C0052,-74.39239067,39.391255,52 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.11_C0053,-74.911414,39.4960215,53 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.12_C0054,-74.45635485,39.35020734,54 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.12_C0055,-74.884275,39.600068,55 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.12_C0056,-74.36902716,39.40482337,56 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.12_C0057,-74.40152412,39.38912718,57 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.12_C0058,-74.48852538,39.33849834,58 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.12_C0059,-74.80421964,39.52202772,59 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.12_C0060,-74.479372,39.3426515,60 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.12_C0061,-74.54119367,39.390896,61 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.13_C0062,-74.7364125,39.43598,62 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.13_C0063,-74.583096,39.3331955,63 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.13_C0064,-74.42215299,39.37361173,64 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.13_C0065,-74.63547204,39.46795746,65 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.13_C0066,-74.53637225,39.47035038,66 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.13_C0067,-74.83384517,39.59962751,67 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.13_C0068,-74.39815747,39.38924354,68 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.13_C0069,-74.36667533,39.40557202,69 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.14_C0070,-74.639012,39.5302045,70 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.14_C0071,-74.61498709,39.42918659,71 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.14_C0072,-74.5470065,39.3811585,72 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.14_C0073,-74.49211916,39.4193005,73 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.14_C0074,-74.4613129,39.35292802,74 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.14_C0075,-74.4932405,39.4698515,75 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.14_C0076,-74.623974,39.43322,76 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.14_C0077,-74.6011595,39.472657,77 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.15_C0078,-74.6054565,39.332786,78 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.15_C0079,-74.620471,39.423799,79 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.15_C0080,-74.74764676,39.4473013,80 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.15_C0081,-74.7114395,39.430438,81 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.15_C0082,-74.93346,39.5200475,82 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.15_C0083,-74.56551137,39.36762577,83 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.15_C0084,-74.93296,39.4957145,84 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.15_C0085,-74.87734514,39.60221067,85 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.16_C0086,-74.55445572,39.47006461,86 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.16_C0087,-74.869885,39.594804,87 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.16_C0088,-74.37322123,39.4152908,88 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.16_C0089,-74.7815365,39.63311,89 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.16_C0090,-74.6241921,39.41053531,90 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.16_C0091,-74.57823143,39.38378031,91 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.16_C0092,-74.50230766,39.33075951,92 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.16_C0093,-74.834842,39.3718475,93 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.17_C0094,-74.565182,39.3592515,94 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.17_C0095,-74.93407831,39.4967679,95 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.17_C0096,-74.78557086,39.64431446,96 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.17_C0097,-74.5580275,39.477221,97 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.17_C0098,-74.6357025,39.365284,98 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.17_C0099,-74.49568804,39.34234913,99 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.17_C0100,-74.6433585,39.4315295,100 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.17_C0101,-74.83645466,39.59696802,101 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.18_C0102,-74.6059505,39.3273575,102 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.18_C0103,-74.93369924,39.52540413,103 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.18_C0104,-74.7815688,39.67324442,104 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.18_C0105,-74.62035712,39.43064828,105 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.18_C0106,-74.462388,39.358019,106 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.18_C0107,-74.635659,39.419627,107 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.18_C0108,-74.92665135,39.50713811,108 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.18_C0109,-74.6392135,39.4292215,109 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.19_C0110,-74.59719716,39.36026114,110 CLUB PL,GALLOWAY TWP,35,1984,1,GOV1,3004 -0111_953.01_2.19_C0111,-74.570094,39.367392,111 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.19_C0112,-74.4978765,39.336258,112 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.20_C0113,-74.62509727,39.50469857,113 CLUB PL,GALLOWAY TWP,35,1984,1,GOV1,3004 -0111_953.01_2.20_C0114,-74.7203205,39.443432,114 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.20_C0115,-74.622432,39.512543,115 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.21_C0116,-74.5188255,39.437378,116 CLUB PL,GALLOWAY TWP,35,1984,1,GOV1,3004 -0111_953.01_2.21_C0117,-74.53175963,39.38393544,117 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.21_C0118,-74.5768575,39.349362,118 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.22_C0119,-74.45836795,39.34884061,119 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.22_C0120,-74.36579822,39.40628716,120 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.22_C0121,-74.7654125,39.3498145,121 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.22_C0122,-74.50973891,39.32325604,122 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.22_C0123,-74.45248776,39.50310135,123 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.22_C0124,-74.52106777,39.38338543,124 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.22_C0125,-74.47398155,39.48643221,125 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.22_C0126,-74.48134881,39.34630664,126 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.23_C0127,-74.92644443,39.50904969,127 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.23_C0128,-74.86627084,39.59391953,128 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.23_C0129,-74.93362049,39.48212009,129 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.23_C0130,-74.5423705,39.528264,130 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.23_C0131,-74.49447637,39.33707341,131 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.23_C0132,-74.56055982,39.3920119,132 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.23_C0133,-74.50036779,39.4954425,133 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.23_C0134,-74.7845675,39.644501,134 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.24_C0135,-74.57364635,39.4496073,135 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.24_C0136,-74.8770055,39.4801635,136 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.24_C0137,-74.7617281,39.63993673,137 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.24_C0138,-74.63604351,39.5308513,138 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.24_C0139,-74.84602012,39.6051605,139 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.24_C0140,-74.65856683,39.55838999,140 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.24_C0141,-74.5046195,39.3397265,141 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.24_C0142,-74.69122939,39.4955189,142 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.25_C0143,-74.48764989,39.46889252,143 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.25_C0144,-74.778963,39.383586,144 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.25_C0145,-74.6103795,39.484116,145 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.25_C0146,-74.9376245,39.527477,146 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.25_C0147,-74.634519,39.42793,147 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.25_C0148,-74.50849086,39.33712043,148 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.25_C0149,-74.53902216,39.38687732,149 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.25_C0150,-74.5984735,39.3302025,150 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.26_C0151,-74.603379,39.3171,151 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.26_C0152,-74.48904855,39.42757881,152 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.26_C0153,-74.50742084,39.40440591,153 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.27_C0154,-74.58028859,39.33312635,154 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.27_C0155,-74.86125987,39.44657089,155 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.27_C0156,-74.63475036,39.43451466,156 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.27_C0157,-74.5752925,39.3574465,157 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.27_C0158,-74.57938371,39.43061548,158 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.27_C0159,-74.8863345,39.5988725,159 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.27_C0160,-74.52762826,39.46812795,160 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.27_C0161,-74.355823,39.413587,161 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.28_C0162,-74.62063132,39.60152343,162 CLUB PL,GALLOWAY TWP,35,1984,1,GOV1,3004 -0111_953.01_2.28_C0163,-74.497416,39.5236325,163 CLUB PL,GALLOWAY TWP,35,1984,1,GOV1,3004 -0111_953.01_2.28_C0164,-74.449344,39.3499675,164 CLUB PL,GALLOWAY TWP,35,1984,1,RES1,3001 -0111_953.01_2.29_C0165,-74.364885,39.415735,165 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.29_C0166,-74.861155,39.566892,166 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.29_C0167,-74.630831,39.34724895,167 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.29_C0168,-74.644349,39.5279035,168 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.29_C0169,-74.6246835,39.3601045,169 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.29_C0170,-74.50079815,39.33281479,170 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.29_C0171,-74.92765733,39.53238467,171 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.29_C0172,-74.58909148,39.32153423,172 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.30_C0173,-74.5989065,39.3175515,173 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.30_C0174,-74.7584785,39.3633145,174 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.30_C0175,-74.74371875,39.41083951,175 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.30_C0176,-74.5882015,39.3226475,176 CLUB PL,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_953.01_2.30_C0177,-74.4559092,39.4752155,177 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.30_C0178,-74.57425076,39.37692589,178 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.30_C0179,-74.57833973,39.33505984,179 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_2.30_C0180,-74.4875905,39.4371365,180 CLUB PL,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_953.01_3.01,-74.80604534,39.63496702,181 CLUB PL,GALLOWAY TWP,,1983,1,RES1,3001 -0111_953.02_1,-74.85123919,39.60528049,MOURNING DOVE WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_953.02_10,-74.50295874,39.33025268,162 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.02_11,-74.3648025,39.40824,160 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.02_12,-74.58218654,39.53744316,36 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_13,-74.6370955,39.408716,34 CANARY WAY,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_953.02_14,-74.51059616,39.40668306,32 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_15,-74.63646464,39.4308007,30 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_16,-74.44981444,39.49682544,28 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_17,-74.3713775,39.4100255,26 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_18,-74.50105055,39.32998417,24 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_19,-74.792318,39.6440425,22 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_2,-74.78538776,39.63143159,178 MOURNING DOVE WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_20,-74.57717815,39.34247073,20 CANARY WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.02_21,-74.5945525,39.317106,18 CANARY WAY,GALLOWAY TWP,16,1992,1,GOV1,3002 -0111_953.02_22,-74.595261,39.534486,16 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_23,-74.63106881,39.42183941,14 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_24,-74.691858,39.6518685,12 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_25,-74.682865,39.444845,10 CANARY WAY,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_953.02_26,-74.471025,39.49162933,8 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_27,-74.5154045,39.3952565,6 CANARY WAY,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_953.02_28,-74.57562526,39.4130803,4 CANARY WAY,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_953.02_29,-74.4048365,39.380313,2 CANARY WAY,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_953.02_3,-74.82364144,39.57305488,176 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.02_4,-74.50927048,39.33118433,174 MOURNING DOVE WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_5,-74.5971855,39.3554815,172 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.02_6,-74.367573,39.406385,170 MOURNING DOVE WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_7,-74.85134942,39.5983479,168 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_953.02_8,-74.9520325,39.5178455,166 MOURNING DOVE WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.02_9,-74.63558959,39.41064431,164 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_1,-74.42379437,39.36558641,1 CANARY WAY,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_953.03_10,-74.4895625,39.4368105,19 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_11,-74.801091,39.639309,21 CANARY WAY,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_953.03_12,-74.52317712,39.50754726,23 CANARY WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_13,-74.508012,39.4473695,25 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_14,-74.56302463,39.36316286,27 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_15,-74.6584095,39.3613925,29 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_16,-74.79755158,39.63935314,31 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_17,-74.58317424,39.52492033,33 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_18,-74.6315942,39.42990354,35 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_19,-74.55617862,39.37197996,MOURNING DOVE WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_953.03_2,-74.87905831,39.59159003,3 CANARY WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.03_20,-74.81053822,39.64143077,144 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_21,-74.42636758,39.37107378,142 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_22,-74.59817732,39.31504594,140 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.03_23,-74.68294023,39.4511819,138 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.03_24,-74.797396,39.626077,136 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.03_25,-74.55357391,39.3933165,134 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_26,-74.386867,39.391312,132 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_27,-74.54019278,39.38935596,130 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.03_28,-74.603202,39.380999,128 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.03_29,-74.49128534,39.33521549,126 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.03_3,-74.94913085,39.53490545,5 CANARY WAY,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_953.03_30,-74.602004,39.4985155,124 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_953.03_31,-74.59064874,39.4827525,122 MOURNING DOVE WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_32,-74.4945408,39.42796285,120 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_33,-74.40665632,39.37984767,118 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_34,-74.80191851,39.53824667,116 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.03_4,-74.440961,39.3590815,7 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_5,-74.78180145,39.65709334,9 CANARY WAY,GALLOWAY TWP,16,1992,1,GOV1,3004 -0111_953.03_6,-74.495017,39.3298565,11 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_7,-74.5032685,39.3388285,13 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_8,-74.57779642,39.34283753,15 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.03_9,-74.55387033,39.35623341,17 CANARY WAY,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_953.04_1,-74.628338,39.34881839,129 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.04_10,-74.57225264,39.33659982,144 NIGHTINGALE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.04_11,-74.88044822,39.4773836,140 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.04_13,-74.63825576,39.34218665,134 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.04_14,-74.38269,39.3958745,130 NIGHTINGALE WAY,GALLOWAY TWP,16,1993,1,RES1,3002 -0111_953.04_2,-74.57499316,39.42975181,131 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.04_3,-74.7060735,39.6475865,133 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.04_4,-74.44127246,39.36925832,135 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.04_5,-74.536564,39.413023,137 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.04_6,-74.56757285,39.35978851,160 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.04_7,-74.55646665,39.36977017,154 NIGHTINGALE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.04_8,-74.50678112,39.47151982,152 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.04_9,-74.46760365,39.48864928,150 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.05_1,-74.912694,39.5133895,107 MOURNING DOVE WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_10,-74.53329,39.313351,29 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_11,-74.6373235,39.517312,27 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_12,-74.3727255,39.4111475,25 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_13,-74.62500157,39.44289103,23 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_14,-74.8403039,39.59879877,21 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_15,-74.44010866,39.36843501,19 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,GOV1,3004 -0111_953.05_16,-74.54279584,39.37558801,17 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_17,-74.6369509,39.48526847,15 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_18,-74.49028132,39.33772752,13 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_19,-74.37230145,39.40593783,11 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_2,-74.53685914,39.38340256,109 MOURNING DOVE WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_20,-74.5241505,39.3836345,9 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_21,-74.591847,39.3285615,7 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_22,-74.479611,39.3485185,5 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_23,-74.42007113,39.36868315,3 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_24,-74.45998751,39.47287991,1 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_3,-74.6400877,39.4356034,111 MOURNING DOVE WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_4,-74.525127,39.39571867,113 MOURNING DOVE WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_5,-74.67683361,39.38817411,115 MOURNING DOVE WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_6,-74.526722,39.39651881,117 MOURNING DOVE WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_7,-74.487338,39.3482125,35 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_8,-74.4998105,39.3375245,33 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.05_9,-74.463413,39.473194,31 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_10,-74.5311945,39.3867285,30 N POMONA RD,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_953.06_11,-74.63656111,39.52693853,2 N POMONA RD,GALLOWAY TWP,16,2014,1,RES1,3001 -0111_953.06_15,-74.4569995,39.351899,WRANGLEBORO RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_953.06_16,-74.538881,39.393477,181 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_17,-74.61856432,39.37358595,179 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_18,-74.658281,39.523901,177 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_19,-74.619594,39.370993,175 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_20,-74.543389,39.386866,173 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_21,-74.63053829,39.38962659,171 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_22,-74.63491517,39.53274653,169 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_23,-74.40660205,39.38378376,167 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_24,-74.53731911,39.37450009,165 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_25,-74.69138832,39.35871569,163 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_26,-74.86545608,39.60186332,161 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_27,-74.592489,39.328392,159 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_953.06_28,-74.61568985,39.55669146,157 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_29,-74.657954,39.4162625,155 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_30,-74.605181,39.5023205,153 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_31,-74.79672528,39.63344271,151 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_32,-74.5426735,39.374715,149 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_33,-74.53764663,39.52569807,147 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_953.06_34,-74.61032559,39.31111217,145 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_35,-74.51202373,39.48544154,143 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,GOV1,3004 -0111_953.06_36,-74.59823549,39.34253566,141 MOURNING DOVE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_37,-74.64789481,39.40282196,165 NIGHTINGALE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_38,-74.77440178,39.65872287,163 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3004 -0111_953.06_39,-74.4834815,39.3403665,161 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_4.01,-74.4984225,39.4996745,MOURNING DOVE WAY-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_953.06_40,-74.504592,39.4172025,159 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_41,-74.75424206,39.44922765,157 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_42,-74.76027115,39.43171126,155 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_43,-74.62420116,39.3819351,153 NIGHTINGALE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_44,-74.463811,39.3524345,151 NIGHTINGALE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_45,-74.45220327,39.48803361,149 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_46,-74.5266255,39.384044,147 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_953.06_47,-74.490426,39.3352645,145 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_48,-74.36624231,39.42263904,143 NIGHTINGALE WAY,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_953.06_49,-74.58499309,39.36022767,141 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_50,-74.71973166,39.44894694,139 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_51,-74.63139977,39.39375963,137 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_52,-74.4464541,39.37109674,135 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_53,-74.6221225,39.5127835,133 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_54,-74.56797218,39.47983679,131 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_55,-74.694018,39.5902175,129 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_56,-74.77572843,39.63954604,127 NIGHTINGALE WAY,GALLOWAY TWP,16,1994,1,COM1,3004 -0111_953.06_57,-74.46349747,39.49726031,125 MOURNING DOVE WAY,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_953.06_58,-74.68777886,39.44353375,123 MOURNING DOVE WAY,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_953.06_59,-74.710517,39.435039,48 MOCKINGBIRD WAY,GALLOWAY TWP,,1992,1,RES1,3001 -0111_953.06_60,-74.45822279,39.35433367,64 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_61,-74.56113305,39.35860325,62 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_62,-74.3740735,39.4004295,60 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,GOV1,3004 -0111_953.06_63,-74.60146073,39.38747931,58 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,COM4,3004 -0111_953.06_64,-74.6552185,39.524716,56 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_65,-74.56789091,39.3406305,54 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_66,-74.9399305,39.5262085,52 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_67,-74.54207336,39.53244186,50 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_68,-74.38638029,39.39048801,46 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_69,-74.920402,39.4899655,44 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3004 -0111_953.06_7.01,-74.59150216,39.34725305,106 E MOSS MILL RD,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_953.06_7.02,-74.50224141,39.38241659,112 E MOSS MILL RD,GALLOWAY TWP,16,1976,1,GOV1,3004 -0111_953.06_70,-74.42825483,39.373781,42 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_71,-74.9313105,39.5251818,40 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,GOV1,3004 -0111_953.06_72,-74.597193,39.35975,38 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_73,-74.80071634,39.63373752,36 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_74,-74.59663095,39.4358479,34 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_75,-74.51466428,39.32548489,32 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,GOV1,3004 -0111_953.06_76,-74.72629412,39.45688125,30 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_77,-74.77067518,39.62990949,28 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_78,-74.52759788,39.46471114,26 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_79,-74.813696,39.379129,24 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_80,-74.8705605,39.5936555,22 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_81,-74.604437,39.3506665,20 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_82,-74.73136064,39.45334289,18 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_83,-74.42869418,39.35970593,16 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,GOV1,3004 -0111_953.06_84,-74.7337235,39.65392754,MOCKINGBIRD WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_953.06_85,-74.7980855,39.4339525,12 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_86,-74.448303,39.371396,10 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_87,-74.83878419,39.38082013,8 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_88,-74.47604395,39.34078616,6 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_89,-74.69546765,39.5898387,4 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_953.06_9.03,-74.507082,39.4933245,24 N POMONA RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_953.06_9.04,-74.3728185,39.4040605,28 N POMONA RD,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_953.06_90,-74.47900002,39.47899801,2 MOCKINGBIRD WAY,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_96_1,-74.4902885,39.335578,502 COUNTY BLVD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_96_10,-74.629303,39.4075985,1415 CLEVELAND ST,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_96_2,-74.49550308,39.49399269,1418 BROAD ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_96_4,-74.84967384,39.44074099,1414 BROAD ST,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_96_6,-74.540256,39.3755055,1410 BROAD ST,GALLOWAY TWP,16,1990,1,IND2,3002 -0111_96_7,-74.60499651,39.4269202,1421 CLEVELAND ST,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_96_8,-74.55736426,39.36611797,1419 CLEVELAND ST,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_96_9,-74.367463,39.4080225,1417 CLEVELAND ST,GALLOWAY TWP,16,1906,1,GOV1,3004 -0111_97_1,-74.65031679,39.45883463,1416 CLEVELAND ST,GALLOWAY TWP,16,1968,1,GOV1,3004 -0111_97_2,-74.6064485,39.43878,1413 DEKALB ST,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_97_3.01,-74.399792,39.3864,1414 CLEVELAND ST,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_97_3.02,-74.62439909,39.3831872,1415 DEKALB ST,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_97_3.03,-74.83093588,39.3853382,1411 DEKALB ST,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_97_4,-74.46092312,39.3539843,1412 CLEVELAND ST,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_97_5,-74.52285383,39.3131845,1410 CLEVELAND ST,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_97_6,-74.50973926,39.33776733,531 S LIVERPOOL AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_97_8,-74.79175732,39.6425975,1409 DEKALB ST,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_97_9,-74.5128832,39.47038416,535 S LIVERPOOL AVE,GALLOWAY TWP,16,1959,1,RES1,3001 -0111_978.01_2_C0101,-74.7268675,39.4553215,1 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0102,-74.64301168,39.39922252,2 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0103,-74.65560933,39.57770099,3 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0104,-74.6473815,39.434664,4 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0105,-74.4989885,39.3320025,5 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0106,-74.80122313,39.64446614,6 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0107,-74.747859,39.446402,7 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0108,-74.52157961,39.31645517,8 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0201,-74.57486201,39.35685533,16 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0202,-74.90709526,39.49431185,15 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0203,-74.54962034,39.37707997,14 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0204,-74.97369057,39.50836225,13 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0205,-74.874271,39.49169,12 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0206,-74.39617998,39.38656983,11 CHEROKEE DR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_978.01_2_C0207,-74.46974865,39.48766741,10 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0208,-74.561215,39.542598,9 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0301,-74.60754665,39.37659584,17 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0302,-74.63104312,39.40015069,18 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0303,-74.59024071,39.3536166,19 CHEROKEE DR,GALLOWAY TWP,35,1989,1,GOV1,3004 -0111_978.01_2_C0304,-74.37772884,39.39778936,20 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0305,-74.47953631,39.34801608,21 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0306,-74.531293,39.3860865,22 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0307,-74.5841565,39.4856845,23 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0308,-74.7984375,39.643547,24 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0401,-74.56827969,39.34087505,30 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0402,-74.930938,39.528341,29 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0403,-74.51922021,39.39268239,28 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0404,-74.85611066,39.56263304,27 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0405,-74.46255367,39.45508252,26 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0406,-74.50450055,39.32466885,25 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0501,-74.56919935,39.35660368,31 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0502,-74.93338579,39.49573654,32 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0503,-74.3751435,39.4120095,33 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0504,-74.6307373,39.40141248,34 CHEROKEE DR,GALLOWAY TWP,35,1989,1,COM1,3004 -0111_978.01_2_C0505,-74.72608016,39.58939594,35 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0506,-74.50039556,39.50072226,36 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0507,-74.45452985,39.48878526,37 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0508,-74.5321987,39.40456158,38 CHEROKEE DR,GALLOWAY TWP,35,1989,1,RES1,3001 -0111_978.01_2_C0601,-74.613194,39.4232095,39 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0602,-74.52404125,39.41333489,40 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0603,-74.50552019,39.34034943,41 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0604,-74.58296467,39.3635115,42 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0605,-74.66386905,39.4601936,43 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0606,-74.627358,39.3628175,44 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0701,-74.5120835,39.322047,52 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0702,-74.400984,39.386319,51 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0703,-74.55392984,39.36296046,50 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0704,-74.63633,39.516217,49 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0705,-74.88515407,39.56466229,48 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0706,-74.64862597,39.62635366,47 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0707,-74.5771955,39.3495015,46 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0708,-74.482595,39.34108,45 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0801,-74.48371836,39.33905812,53 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0802,-74.64258174,39.36638158,54 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0803,-74.5964015,39.309508,55 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0804,-74.6355356,39.52704169,56 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0805,-74.60454997,39.59287847,57 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0806,-74.5988962,39.3725599,58 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0807,-74.6874515,39.637161,59 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0808,-74.76450669,39.30780094,60 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0901,-74.56094157,39.3922562,76 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0902,-74.39236336,39.3944657,77 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0903,-74.37526436,39.41746326,78 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0904,-74.5173091,39.44486857,79 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0905,-74.438595,39.3686135,80 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0906,-74.49498919,39.42481901,81 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0907,-74.79919017,39.64009937,82 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C0908,-74.88614567,39.58344154,83 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES3A,3001 -0111_978.01_2_C1001,-74.5559745,39.4742065,84 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1002,-74.81701919,39.63634292,85 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1003,-74.53959642,39.51668476,86 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1004,-74.7997722,39.64754476,87 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1005,-74.60966889,39.39339126,88 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1006,-74.8819855,39.602407,89 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1101,-74.5741575,39.4425965,105 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1102,-74.65100686,39.62566929,104 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1103,-74.97160424,39.50994454,103 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1104,-74.5322895,39.37633,102 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1105,-74.74683207,39.59277404,101 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1106,-74.595082,39.34337,100 CHEROKEE DR,GALLOWAY TWP,35,1990,1,COM3,3004 -0111_978.01_2_C1107,-74.59926168,39.31916503,99 CHEROKEE DR,GALLOWAY TWP,35,1990,1,GOV1,3004 -0111_978.01_2_C1108,-74.66445024,39.46271966,98 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1201,-74.909126,39.515181,90 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1202,-74.630087,39.5230505,91 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1203,-74.547769,39.375103,92 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1204,-74.59853725,39.36438963,93 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1205,-74.58021125,39.36171059,94 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1206,-74.5546721,39.36478572,95 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1207,-74.891368,39.500251,96 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1208,-74.44582053,39.49279948,97 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1301,-74.51557734,39.43318851,75 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1302,-74.572979,39.4267355,74 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1303,-74.54522628,39.47656095,73 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1304,-74.44464608,39.35653534,72 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1305,-74.67168183,39.3601495,71 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1306,-74.3630855,39.409058,70 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1307,-74.79619532,39.53761901,69 CHEROKEE DR,GALLOWAY TWP,35,1990,1,REL1,3004 -0111_978.01_2_C1401,-74.8257475,39.388779,68 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1402,-74.7533465,39.452902,67 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1403,-74.46649933,39.34372203,66 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1404,-74.66995112,39.46189151,65 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1405,-74.7014155,39.634487,64 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1406,-74.637203,39.382332,63 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1407,-74.517032,39.453142,62 CHEROKEE DR,GALLOWAY TWP,35,1990,1,RES1,3001 -0111_978.01_2_C1408,-74.51617101,39.32312984,61 CHEROKEE DR,GALLOWAY TWP,35,1990,1,GOV1,3004 -0111_978.01_2_C1501,-74.650265,39.596637,10 NAVAJO CT,GALLOWAY TWP,33,1991,1,GOV1,3004 -0111_978.01_2_C1502,-74.46515312,39.34536808,11 NAVAJO CT,GALLOWAY TWP,33,1991,1,GOV1,3004 -0111_978.01_2_C1503,-74.733663,39.4493265,12 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1504,-74.920272,39.514926,7 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1505,-74.74940769,39.45279108,8 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1506,-74.7771015,39.6315085,9 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1507,-74.50061641,39.4098461,4 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1508,-74.81754465,39.3952406,5 NAVAJO CT,GALLOWAY TWP,33,1991,1,GOV1,3004 -0111_978.01_2_C1509,-74.71330424,39.58039129,6 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1510,-74.5467615,39.5172905,1 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1511,-74.68536684,39.55361247,2 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1512,-74.92828513,39.50735917,3 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1601,-74.50003678,39.38299222,31 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1602,-74.64008935,39.52888852,32 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1603,-74.59146549,39.32454017,33 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1604,-74.61407584,39.31199096,34 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1605,-74.443593,39.3713225,35 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1606,-74.77272912,39.31477971,36 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1607,-74.53319885,39.37837394,25 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1608,-74.59526521,39.37950806,26 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1609,-74.90923152,39.49499183,27 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1610,-74.60569702,39.32572633,28 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1611,-74.49513967,39.45424404,29 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1612,-74.4638723,39.46581073,30 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1613,-74.8066175,39.6317725,19 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1614,-74.58273683,39.42294298,20 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1615,-74.61928432,39.37961428,21 NAVAJO CT,GALLOWAY TWP,33,1992,1,RES1,3001 -0111_978.01_2_C1616,-74.488902,39.430989,22 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1617,-74.62616611,39.3588849,23 NAVAJO CT,GALLOWAY TWP,33,1992,1,RES1,3001 -0111_978.01_2_C1618,-74.4801716,39.33678084,24 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1619,-74.36719973,39.40726482,13 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1620,-74.5479565,39.386888,14 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1621,-74.60331275,39.32609972,15 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1622,-74.51372816,39.40395957,16 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1623,-74.777897,39.623562,17 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1624,-74.5169895,39.4637625,18 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1701,-74.5649695,39.410068,55 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1702,-74.78708039,39.64191334,56 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1703,-74.414639,39.3654295,57 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1704,-74.6320795,39.3483615,58 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1705,-74.62939981,39.42792846,59 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1706,-74.49614331,39.33461615,60 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1707,-74.5287895,39.3865825,49 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1708,-74.52337539,39.38595469,50 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1709,-74.48255775,39.47899859,51 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1710,-74.85482769,39.61117593,52 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1711,-74.51612331,39.43482248,53 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1712,-74.6479505,39.548866,54 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1713,-74.4642375,39.3492725,43 NAVAJO CT,GALLOWAY TWP,33,1992,1,RES1,3001 -0111_978.01_2_C1714,-74.853984,39.5599185,44 NAVAJO CT,GALLOWAY TWP,33,1992,1,RES1,3001 -0111_978.01_2_C1715,-74.68209937,39.49863876,45 NAVAJO CT,GALLOWAY TWP,33,1992,1,RES1,3001 -0111_978.01_2_C1716,-74.68458068,39.41394361,46 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1717,-74.5088183,39.33745065,47 NAVAJO CT,GALLOWAY TWP,33,1992,1,RES1,3001 -0111_978.01_2_C1718,-74.3816925,39.415117,48 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1719,-74.49538539,39.33157783,37 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1720,-74.5966305,39.3152825,38 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1721,-74.391744,39.3884615,39 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1722,-74.5138745,39.326306,40 NAVAJO CT,GALLOWAY TWP,33,1991,1,GOV1,3004 -0111_978.01_2_C1723,-74.46679738,39.34467983,41 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1724,-74.88076624,39.59366029,42 NAVAJO CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C1801,-74.63611356,39.43125431,10 APACHE CT,GALLOWAY TWP,33,1990,1,GOV1,3004 -0111_978.01_2_C1802,-74.6360675,39.4095855,11 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1803,-74.55584946,39.36133466,12 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1804,-74.7973215,39.632462,7 APACHE CT,GALLOWAY TWP,33,1990,1,GOV1,3004 -0111_978.01_2_C1805,-74.8236035,39.39801802,8 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1806,-74.50552447,39.40820983,9 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1807,-74.48717983,39.43858683,4 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1808,-74.562167,39.4044695,5 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1809,-74.525562,39.31249,6 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1810,-74.95015594,39.51610886,1 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1811,-74.59416019,39.42181201,2 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1812,-74.5841585,39.4232675,3 APACHE CT,GALLOWAY TWP,33,1990,1,RES1,3001 -0111_978.01_2_C1901,-74.5108503,39.33225217,31 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1902,-74.57349067,39.33706201,32 APACHE CT,GALLOWAY TWP,33,1989,1,COM1,3004 -0111_978.01_2_C1903,-74.4904465,39.3510485,33 APACHE CT,GALLOWAY TWP,33,1989,1,COM1,3004 -0111_978.01_2_C1904,-74.49674684,39.46944676,34 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1905,-74.8297909,39.49118029,35 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1906,-74.54985644,39.38195875,36 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1907,-74.5845335,39.496239,25 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1908,-74.43183146,39.36828782,26 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1909,-74.66563049,39.62156917,27 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1910,-74.610924,39.3112695,28 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1911,-74.48345882,39.43151551,29 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1912,-74.50501282,39.41209348,30 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1913,-74.94395321,39.52793796,19 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1914,-74.5229761,39.44298709,20 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1915,-74.52230184,39.31916702,21 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1916,-74.92188364,39.56474903,22 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1917,-74.48363648,39.34752683,23 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1918,-74.803399,39.639876,24 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1919,-74.4878025,39.42217183,13 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1920,-74.50747777,39.3247761,14 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1921,-74.51320328,39.43064017,15 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1922,-74.5246185,39.387131,16 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1923,-74.5377007,39.39998454,17 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C1924,-74.64521304,39.53225102,18 APACHE CT,GALLOWAY TWP,33,1989,1,RES1,3001 -0111_978.01_2_C2001,-74.713028,39.4689535,55 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2002,-74.60581525,39.41078312,56 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2003,-74.57716724,39.41193887,57 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2004,-74.79581559,39.63089334,58 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2005,-74.516671,39.3987325,59 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2006,-74.5572375,39.473491,60 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2007,-74.593068,39.35862871,49 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2008,-74.50915063,39.51689647,50 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2009,-74.63818289,39.52887396,51 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2010,-74.66542638,39.46117686,52 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2011,-74.5266905,39.4638745,53 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2012,-74.3727275,39.4183565,54 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2013,-74.502197,39.3255185,43 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2014,-74.94855561,39.49268018,44 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2015,-74.5953315,39.312674,45 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2016,-74.65516362,39.39969771,46 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2017,-74.5189555,39.4435245,47 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2018,-74.60319283,39.3298755,48 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2019,-74.4923879,39.33419733,37 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2020,-74.92854912,39.50746417,38 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2021,-74.6173875,39.366354,39 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2022,-74.51715118,39.41002856,40 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2024,-74.56615582,39.47840403,42 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2101,-74.5916895,39.324233,79 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2102,-74.5579295,39.4928865,80 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2103,-74.58879532,39.43069654,81 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2104,-74.53554476,39.30509819,82 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2105,-74.49962195,39.49876685,83 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2106,-74.51132966,39.4669583,84 APACHE CT,GALLOWAY TWP,33,1991,1,GOV1,3004 -0111_978.01_2_C2107,-74.5805285,39.4129495,73 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2108,-74.50504673,39.33458106,74 APACHE CT,GALLOWAY TWP,33,1991,1,COM1,3004 -0111_978.01_2_C2109,-74.5047135,39.325843,75 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2110,-74.60102839,39.41689908,76 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2111,-74.52767651,39.41043047,77 APACHE CT,GALLOWAY TWP,33,1991,1,GOV1,3004 -0111_978.01_2_C2112,-74.681069,39.55258317,78 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2113,-74.60356865,39.47518825,67 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3004 -0111_978.01_2_C2114,-74.4921725,39.333931,68 APACHE CT,GALLOWAY TWP,33,1992,1,RES1,3001 -0111_978.01_2_C2115,-74.81360391,39.64224514,69 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2116,-74.780945,39.643032,70 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2117,-74.4715625,39.341776,71 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2118,-74.60117393,39.47993425,72 APACHE CT,GALLOWAY TWP,33,1991,1,GOV1,3004 -0111_978.01_2_C2119,-74.77634987,39.62244591,61 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2120,-74.60200157,39.5925233,62 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2121,-74.623605,39.5034105,63 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2122,-74.53846016,39.38505447,64 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2123,-74.6546795,39.3452495,65 APACHE CT,GALLOWAY TWP,33,1991,1,RES1,3001 -0111_978.01_2_C2124,-74.6746105,39.4138535,66 APACHE CT,GALLOWAY TWP,33,1991,1,RES3A,3001 -0111_978.01_3_C0001,-74.61232074,39.42046215,201 COLLINS RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_978.01_3_C0002,-74.61372855,39.42840748,203 COLLINS RD,GALLOWAY TWP,,1990,1,GOV1,3004 -0111_978.01_3_C0003,-74.80146723,39.63805784,205 COLLINS RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_978.01_3_C0004,-74.610451,39.474462,207 COLLINS RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_978.01_3_C0005,-74.570229,39.3707585,209 COLLINS RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_978.01_3_C0006,-74.6890806,39.50679703,211 COLLINS RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_978.01_3_C0007,-74.591943,39.331342,213 COLLINS RD,GALLOWAY TWP,,1990,1,COM1,3004 -0111_978.01_3_C0008,-74.57663067,39.47823116,215 COLLINS RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_978.01_3_C0009,-74.6220045,39.422148,217 COLLINS RD,GALLOWAY TWP,,1990,1,RES3A,3001 -0111_978.01_3_C0010,-74.57242494,39.36316522,219 COLLINS RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_978.02_1_C1161,-74.4373415,39.369119,1 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1162,-74.56986971,39.34900848,2 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1163,-74.39329855,39.38853434,3 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1164,-74.36647651,39.4057022,4 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1165,-74.473877,39.3416405,5 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES3A,3001 -0111_978.02_1_C1166,-74.6004015,39.367097,6 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1167,-74.56989804,39.47946484,7 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES3A,3001 -0111_978.02_1_C1168,-74.59430329,39.36547877,8 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1171,-74.46097037,39.52548625,14 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1172,-74.86263591,39.56393912,13 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1173,-74.459201,39.354025,12 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1174,-74.54869465,39.37670996,11 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES3A,3001 -0111_978.02_1_C1175,-74.46374,39.3581825,10 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1176,-74.50433691,39.52920841,9 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1181,-74.6188855,39.4326875,15 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1182,-74.46473883,39.53276558,16 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1183,-74.51684622,39.38672635,17 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1184,-74.55652133,39.546376,18 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1185,-74.79468088,39.66298422,19 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1186,-74.60495379,39.35007444,20 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1191,-74.57304287,39.48014498,21 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES3A,3001 -0111_978.02_1_C1192,-74.48613412,39.33731516,22 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1193,-74.510905,39.4507285,23 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1194,-74.805252,39.6303105,24 MOHAVE DR,GALLOWAY TWP,35,1988,1,COM1,3004 -0111_978.02_1_C1195,-74.628653,39.353614,25 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1196,-74.492636,39.402202,26 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1197,-74.4954765,39.34253883,27 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1198,-74.56698357,39.3684953,28 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1201,-74.748394,39.6535445,29 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1202,-74.45934449,39.47309133,30 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1203,-74.882131,39.597895,31 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1204,-74.57841068,39.33700801,32 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES3A,3001 -0111_978.02_1_C1205,-74.62775543,39.39263027,33 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1206,-74.91758724,39.47427757,34 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES3A,3001 -0111_978.02_1_C1211,-74.57285142,39.36451907,40 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1212,-74.55860401,39.48952983,39 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1213,-74.51309445,39.40190831,38 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1214,-74.7957256,39.62230408,37 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1215,-74.57009686,39.41422042,36 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1216,-74.55756408,39.3631153,35 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1221,-74.548054,39.3890045,41 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1222,-74.59863114,39.41830231,42 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1223,-74.58807263,39.40766978,43 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1224,-74.54353028,39.45987695,44 MOHAVE DR,GALLOWAY TWP,15,1988,1,RES1,3001 -0111_978.02_1_C1225,-74.62922725,39.35394535,45 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1226,-74.605303,39.406381,46 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1227,-74.62933794,39.39318176,47 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3001 -0111_978.02_1_C1228,-74.50719189,39.32902285,48 MOHAVE DR,GALLOWAY TWP,35,1988,1,RES1,3002 -0111_978.02_10,-74.5392112,39.46165857,315 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_978.02_11,-74.5711885,39.3436135,317 COS COB DR,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_978.02_12,-74.76438186,39.30624806,319 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_13,-74.5082245,39.329535,321 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_978.02_14,-74.500744,39.427202,323 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_15,-74.65431419,39.39730934,325 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_16,-74.52132211,39.46442463,329 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_17,-74.62681839,39.35925226,331 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_18,-74.61801168,39.43377952,333 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_19,-74.81095955,39.63336984,335 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_2,-74.7363208,39.43736175,299 SOCIETY HILL DR,GALLOWAY TWP,,1988,1,RES1,3001 -0111_978.02_20,-74.55193821,39.37116125,337 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_21,-74.481268,39.3403435,339 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_22,-74.60521571,39.59194712,341 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_23,-74.54224176,39.39198333,343 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_24,-74.5402725,39.4678955,345 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_978.02_25,-74.52136601,39.39530633,347 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_26,-74.78342784,39.67408833,349 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_27,-74.9266265,39.4830825,351 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_28,-74.64433411,39.43274227,353 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_29,-74.93666235,39.52459325,355 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_3,-74.55526468,39.47096302,301 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_30,-74.44036191,39.4923905,357 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_31,-74.5673855,39.3618675,359 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_32,-74.53222185,39.38333203,361 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_33,-74.72358809,39.57557913,363 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_34,-74.68095342,39.44575877,365 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_35,-74.60820625,39.31490934,367 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_36,-74.60835602,39.31965859,369 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_37,-74.84374741,39.58513407,371 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_38,-74.59141699,39.3234602,373 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_39,-74.42860388,39.37435972,375 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.02_4,-74.57625942,39.35847432,303 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_40,-74.546942,39.4738745,377 COS COB DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_978.02_41,-74.5992645,39.3614485,379 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.02_42,-74.86755732,39.60163,381 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.02_43,-74.71037316,39.47157748,383 COS COB DR,GALLOWAY TWP,16,1990,1,COM1,3004 -0111_978.02_44,-74.35620494,39.41443434,385 COS COB DR,GALLOWAY TWP,16,1990,1,RES4,3003 -0111_978.02_45,-74.49654384,39.33453949,387 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.02_46,-74.5970845,39.380675,389 COS COB DR,GALLOWAY TWP,16,1990,1,RES3A,3001 -0111_978.02_47,-74.63278182,39.43995298,391 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.02_48,-74.52496298,39.39365918,393 COS COB DR,GALLOWAY TWP,16,1990,1,COM1,3004 -0111_978.02_49,-74.404801,39.3842945,395 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.02_5,-74.587788,39.428028,305 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_6,-74.53017171,39.4032574,307 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_7,-74.81620292,39.63405632,309 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_8,-74.6707475,39.619178,311 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.02_9,-74.5772925,39.368131,313 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_1,-74.401941,39.386034,300 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_10,-74.53637865,39.37912518,318 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_11,-74.4832945,39.337426,320 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_12,-74.64187703,39.46577834,322 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_13,-74.60817167,39.31688802,324 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_14,-74.53784857,39.46269678,326 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_15,-74.63328842,39.31791315,330 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_978.03_16,-74.50150587,39.41205257,332 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_17,-74.51958767,39.32023799,334 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_18,-74.5692195,39.412398,336 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_19,-74.93768367,39.52204216,338 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.03_2,-74.78272348,39.60942983,302 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3004 -0111_978.03_20,-74.672821,39.547236,340 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_21,-74.608325,39.3463345,342 COS COB DR,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_978.03_22,-74.804517,39.633685,344 COS COB DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_978.03_23,-74.50343116,39.4080445,346 COS COB DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_978.03_24,-74.88692598,39.47457933,348 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.03_25,-74.758794,39.449225,350 COS COB DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_978.03_26,-74.52340489,39.46861613,352 COS COB DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_978.03_27,-74.512375,39.322201,354 COS COB DR,GALLOWAY TWP,16,1990,1,RES3A,3001 -0111_978.03_28,-74.5070185,39.479988,356 COS COB DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_978.03_29,-74.55554405,39.3650832,358 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.03_3,-74.59957387,39.36873324,304 COS COB DR,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_978.03_30,-74.50593232,39.32769882,360 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.03_31,-74.8714995,39.5994135,362 COS COB DR,GALLOWAY TWP,16,1989,1,RES3A,3001 -0111_978.03_32,-74.79276,39.6304635,364 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.03_33,-74.487708,39.4794515,366 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.03_34,-74.5411465,39.3895025,368 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.03_35,-74.49520102,39.46507522,370 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.03_36,-74.48620196,39.34852133,372 COS COB DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_978.03_37,-74.726822,39.5867625,374 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.03_38,-74.53574403,39.52823266,376 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.03_39,-74.78251066,39.67413387,378 COS COB DR,GALLOWAY TWP,16,1989,1,RES3B,3001 -0111_978.03_4,-74.49294024,39.49316604,306 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_40,-74.54541084,39.38612547,380 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3004 -0111_978.03_41,-74.6200413,39.4325477,382 COS COB DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_978.03_42,-74.60606107,39.39283385,COS COB DR,GALLOWAY TWP,,0,1,RES1,3001 -0111_978.03_5,-74.9165135,39.540192,308 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_978.03_6,-74.76112192,39.64047699,310 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_7,-74.73196823,39.68810384,312 COS COB DR,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_978.03_8,-74.5489755,39.3670435,314 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_978.03_9,-74.89928607,39.50198397,316 COS COB DR,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_978.04_2,-74.4626755,39.4664155,34 WRANGLEBORO RD,GALLOWAY TWP,15,1972,1,RES1,3001 -0111_978.09_1,-74.72457695,39.57652316,201 TIPPERARY PL,GALLOWAY TWP,16,2007,1,RES1,3001 -0111_978.10_1_C0001,-74.6418895,39.461571,109 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0002,-74.69080681,39.44669042,110 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0003,-74.624489,39.353856,111 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0004,-74.57862328,39.42992021,112 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0005,-74.6131605,39.324711,113 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0006,-74.62319584,39.62583101,114 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0007,-74.64554,39.367363,115 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0008,-74.93975018,39.50371039,116 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0009,-74.43775888,39.36739147,117 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0010,-74.52982169,39.39489966,118 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0011,-74.4426105,39.359099,119 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0012,-74.48530345,39.44149132,120 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0013,-74.51638329,39.40979899,121 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0014,-74.648478,39.4598945,122 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3002 -0111_978.10_1_C0015,-74.70678267,39.5760575,123 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0016,-74.56495469,39.35634681,124 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0017,-74.7330825,39.4408365,125 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3004 -0111_978.10_1_C0018,-74.5988925,39.3787155,126 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0019,-74.6849139,39.36152875,127 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0020,-74.645545,39.37786583,128 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0021,-74.49824401,39.33370347,129 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3004 -0111_978.10_1_C0022,-74.72249235,39.4430097,130 IROQUOIS DR,GALLOWAY TWP,33,1988,1,COM1,3004 -0111_978.10_1_C0023,-74.86830292,39.46092349,131 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.10_1_C0024,-74.50895333,39.3312735,132 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0001,-74.56449095,39.36114517,103 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0002,-74.4964965,39.329013,104 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_978.11_1_C0003,-74.4605725,39.3507085,105 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0004,-74.506355,39.405415,106 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0005,-74.37623957,39.41262813,107 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0006,-74.47271737,39.48309141,108 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0007,-74.79886444,39.62649566,97 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0008,-74.65111795,39.52942116,98 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3002 -0111_978.11_1_C0009,-74.5664675,39.373884,99 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0010,-74.5152125,39.327236,100 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0011,-74.4827265,39.51815,101 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0012,-74.52103208,39.39774799,102 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0013,-74.58787996,39.35484523,91 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0014,-74.63091343,39.43187299,92 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0015,-74.5254305,39.397122,93 IROQUOIS DR,GALLOWAY TWP,33,1988,1,AGR1,3001 -0111_978.11_1_C0016,-74.54379396,39.45708339,94 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0017,-74.61465817,39.34087728,95 IROQUOIS DR,GALLOWAY TWP,33,1988,1,COM3,3004 -0111_978.11_1_C0018,-74.51185025,39.40602967,96 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0019,-74.5220325,39.457184,85 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0020,-74.57764199,39.33639764,86 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0021,-74.46233716,39.35488926,87 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0022,-74.84300782,39.42792653,88 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0023,-74.446862,39.354798,89 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.11_1_C0024,-74.82583879,39.57047847,90 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0001,-74.73339175,39.64210882,79 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0002,-74.52828368,39.45207871,80 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0003,-74.85036967,39.39799822,81 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0004,-74.60084294,39.37204178,82 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0005,-74.656187,39.432909,83 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0006,-74.628924,39.3554135,84 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0007,-74.53258304,39.47029858,73 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0008,-74.97086339,39.51263579,74 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0009,-74.60378574,39.50368093,75 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0010,-74.55226719,39.42032056,76 IROQUOIS DR,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_978.12_1_C0011,-74.8277365,39.3978425,77 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0012,-74.36930929,39.41574294,78 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0013,-74.65687514,39.62861543,67 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0014,-74.591424,39.369825,68 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0015,-74.66608816,39.54419802,69 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0016,-74.82550618,39.41817742,70 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0017,-74.60942091,39.36898626,71 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0018,-74.45476795,39.47924145,72 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0019,-74.52573078,39.41195254,61 IROQUOIS DR,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_978.12_1_C0020,-74.5988935,39.3637675,62 IROQUOIS DR,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_978.12_1_C0021,-74.69469329,39.56206117,63 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0022,-74.509435,39.4108795,64 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0023,-74.644098,39.389458,65 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.12_1_C0024,-74.59091954,39.31781317,66 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0001,-74.76553882,39.63580367,55 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0002,-74.80982355,39.55357847,56 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0003,-74.5208135,39.4043365,57 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0004,-74.57193911,39.48156978,58 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0005,-74.73547779,39.46089824,59 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0006,-74.550622,39.367903,60 IROQUOIS DR,GALLOWAY TWP,33,1988,1,COM1,3004 -0111_978.13_1_C0007,-74.48572688,39.34727779,49 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0008,-74.52185951,39.32085967,50 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0009,-74.56723377,39.4144138,51 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0010,-74.76697552,39.48678434,52 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0011,-74.5959535,39.411116,53 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.13_1_C0012,-74.943571,39.5256435,54 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0001,-74.55768042,39.41360412,43 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0002,-74.79491059,39.67489062,44 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3002 -0111_978.14_1_C0003,-74.81994584,39.52703652,45 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0004,-74.5652995,39.414164,46 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0005,-74.5941085,39.4337375,47 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0006,-74.83477186,39.41288467,48 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0007,-74.5173065,39.4033525,37 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0008,-74.81526053,39.63875183,38 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0009,-74.5184195,39.3218315,39 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0010,-74.47129629,39.49024987,40 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0011,-74.5571155,39.4763415,41 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0012,-74.6236175,39.512798,42 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0013,-74.584285,39.3587785,31 IROQUOIS DR,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_978.14_1_C0014,-74.5792715,39.3300885,32 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0015,-74.811377,39.653129,33 IROQUOIS DR,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_978.14_1_C0016,-74.49466153,39.43090831,34 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0017,-74.56673882,39.35701107,35 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0018,-74.36968051,39.40639117,36 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0019,-74.801197,39.555242,25 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0020,-74.54104566,39.37425042,26 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0021,-74.5062825,39.325523,27 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0022,-74.3689575,39.4133225,28 IROQUOIS DR,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_978.14_1_C0023,-74.8779885,39.598767,29 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.14_1_C0024,-74.5732365,39.479071,30 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0001,-74.54558228,39.47685397,19 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0002,-74.50012664,39.41305183,20 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0003,-74.57470859,39.37731289,21 IROQUOIS DR,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_978.15_1_C0004,-74.88302392,39.48703819,22 IROQUOIS DR,GALLOWAY TWP,33,1988,1,GOV1,3004 -0111_978.15_1_C0005,-74.5741315,39.4284325,23 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0006,-74.56181089,39.36035302,24 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0007,-74.56000493,39.37156355,13 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0008,-74.75032396,39.45288418,14 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0009,-74.63040963,39.40905982,15 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0010,-74.779791,39.634574,16 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0011,-74.35842646,39.41422634,17 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0012,-74.3725535,39.414457,18 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0013,-74.70000622,39.36645668,7 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0014,-74.753515,39.4518505,8 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0015,-74.69278967,39.41541357,9 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0016,-74.798096,39.5214075,10 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0017,-74.552529,39.38276,11 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES3A,3001 -0111_978.15_1_C0018,-74.53525006,39.38495515,12 IROQUOIS DR,GALLOWAY TWP,33,1988,1,AGR1,3001 -0111_978.15_1_C0019,-74.79778737,39.45794633,1 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0020,-74.574209,39.33451648,2 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0021,-74.4570795,39.3525265,3 IROQUOIS DR,GALLOWAY TWP,33,1988,1,AGR1,3001 -0111_978.15_1_C0022,-74.8090685,39.6396415,4 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3004 -0111_978.15_1_C0023,-74.8650615,39.5606115,5 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_978.15_1_C0024,-74.50137192,39.32813882,6 IROQUOIS DR,GALLOWAY TWP,33,1988,1,RES1,3001 -0111_979_1.01,-74.50922743,39.43019969,103 RIDGEWOOD AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_979_1.02,-74.7920975,39.655087,105 RIDGEWOOD AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_979_11,-74.44301712,39.37364848,114 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_979_12,-74.535385,39.3907405,120 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_979_14.08,-74.84672333,39.59942399,407 SECOND AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_979_14.10,-74.59599849,39.38409017,411 SECOND AVE,GALLOWAY TWP,16,2001,1,COM1,3004 -0111_979_14.11,-74.7842165,39.650006,413 SECOND AVE,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_979_14.12,-74.65021053,39.53415016,415 SECOND AVE,GALLOWAY TWP,16,2002,1,IND1,3004 -0111_979_14.13,-74.79452683,39.64715946,417 SECOND AVE,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_979_15.01,-74.64315694,39.46112442,417A SECOND AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_979_15.02,-74.8070305,39.3678835,419 SECOND AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_979_15.03,-74.4959605,39.44132,419A SECOND AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_979_16.01,-74.74869565,39.65337695,421 SECOND AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_979_16.02,-74.810594,39.63179967,423 SECOND AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_979_16.03,-74.518025,39.4155185,425 SECOND AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_979_17,-74.39865008,39.38909954,427 SECOND AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_979_18.02,-74.60454266,39.32555048,429A SECOND AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_979_19.01,-74.396854,39.3887255,431 SECOND AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_979_19.02,-74.5516235,39.380574,431A SECOND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_979_19.03,-74.77136076,39.66157937,433 SECOND AVE,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_979_2,-74.36905697,39.41019422,107 RIDGEWOOD AVE,GALLOWAY TWP,16,1922,1,RES1,3001 -0111_979_20.01,-74.770885,39.6295435,435 SECOND AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_979_20.02,-74.69541634,39.48743796,435A SECOND AVE,GALLOWAY TWP,16,2000,1,GOV1,3004 -0111_979_20.03,-74.611035,39.390678,437 SECOND AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_979_21.01,-74.49252723,39.45296802,127 RIDGEWOOD AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_979_21.02,-74.58706732,39.32017128,123 RIDGEWOOD AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_979_21.03,-74.63413122,39.42763554,119 RIDGEWOOD AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_979_22,-74.82926,39.409858,115 RIDGEWOOD AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_979_3.01,-74.45719046,39.47105651,111 RIDGEWOOD AVE,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_979_3.02,-74.63454228,39.46265584,109 RIDGEWOOD AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_979_4.01,-74.66669767,39.39733197,418 FIRST AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_979_4.02,-74.974708,39.5110375,416A FIRST AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_979_4.03,-74.56898367,39.3660135,416 FIRST AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_979_5.01,-74.5059485,39.4468345,414 FIRST AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_979_5.02,-74.75686971,39.43140189,414A FIRST AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_979_6.01,-74.870262,39.5934375,412 FIRST AVE,GALLOWAY TWP,16,1986,1,RES3A,3001 -0111_979_7,-74.957213,39.512337,406 FIRST AVE,GALLOWAY TWP,16,1971,1,RES1,3001 -0111_979_8,-74.50385379,39.41712421,402 FIRST AVE,GALLOWAY TWP,16,1951,1,RES1,3001 -0111_979_9.01,-74.480805,39.442416,400 FIRST AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_979_9.02,-74.5071165,39.32641202,106 E JIMMIE LEEDS RD,GALLOWAY TWP,,1946,1,RES1,3004 -0111_98_3,-74.63659449,39.52930317,1416 DEKALB ST,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_98_6,-74.5121925,39.4434005,1410 DEKALB ST,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_98_8,-74.6009395,39.4151635,555 S LIVERPOOL AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_980_1.01,-74.695696,39.5934265,440 SECOND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_980_1.02,-74.5161845,39.322658,203 RIDGEWOOD AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_980_10.01,-74.60198,39.3101455,414 SECOND AVE,GALLOWAY TWP,16,1910,1,GOV1,3004 -0111_980_10.02,-74.8661711,39.49038932,414A SECOND AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_980_10.03,-74.38377097,39.39615153,416 SECOND AVE,GALLOWAY TWP,16,1997,1,GOV1,3004 -0111_980_11.01,-74.5071315,39.4922205,412 SECOND AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_980_11.02,-74.525009,39.396317,410 SECOND AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_980_11.03,-74.6012046,39.42141275,410A SECOND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_980_12.01,-74.841872,39.478499,408 SECOND AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_980_12.02,-74.52222869,39.39726454,406A SECOND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_980_12.03,-74.58617877,39.32110151,406 SECOND AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_980_13.01,-74.77255232,39.61395533,404 SECOND AVE,GALLOWAY TWP,16,1994,1,GOV1,3004 -0111_980_13.02,-74.94400104,39.52400983,200 E JIMMIE LEEDS RD,GALLOWAY TWP,,2005,1,GOV1,3004 -0111_980_14,-74.92129937,39.52133788,208 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1965,2,RES1,3001 -0111_980_15,-74.71239935,39.47366061,216 E JIMMIE LEEDS RD,GALLOWAY TWP,,1994,1,RES1,3001 -0111_980_18.01,-74.505603,39.3277805,421 FOURTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_980_18.02,-74.868099,39.49065,421A FOURTH AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_980_18.03,-74.53788778,39.46021193,423 FOURTH AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_980_19,-74.55064583,39.46966071,427 FOURTH AVE,GALLOWAY TWP,16,1970,1,GOV1,3004 -0111_980_2.01,-74.643266,39.623059,205 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_980_2.02,-74.80025378,39.62673001,207 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_980_2.03,-74.51137139,39.33705013,209 RIDGEWOOD AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_980_21,-74.6248,39.4187665,431 FOURTH AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_980_22.01,-74.53574671,39.38554041,201 COUNTRY LN,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_980_22.02,-74.48858126,39.4980736,203 COUNTRY LN,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_980_22.03,-74.57622133,39.408244,205 COUNTRY LN,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_980_22.04,-74.503115,39.3257735,207 COUNTRY LN,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_980_22.05,-74.80317034,39.64724382,209 COUNTRY LN,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_980_22.06,-74.85964612,39.62030933,210 COUNTRY LN,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_980_22.07,-74.4971485,39.4489225,208 COUNTRY LN,GALLOWAY TWP,16,1984,1,IND2,3002 -0111_980_22.08,-74.63368786,39.36289818,206 COUNTRY LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_980_22.09,-74.500318,39.423223,204 COUNTRY LN,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_980_22.10,-74.53939506,39.37763729,202 COUNTRY LN,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_980_23.01,-74.4650734,39.53626969,437 FOURTH AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_980_23.02,-74.363474,39.4178065,439 FOURTH AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_980_23.03,-74.50986579,39.33325736,201 STURBRIDGE CT,GALLOWAY TWP,16,1981,1,EDU1,3004 -0111_980_23.04,-74.8310735,39.5373405,200 STURBRIDGE CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_980_23.05,-74.5292635,39.389059,202 STURBRIDGE CT,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_980_23.06,-74.64924705,39.52603615,204 STURBRIDGE CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_980_23.07,-74.49179022,39.45286853,206 STURBRIDGE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_980_23.08,-74.7538895,39.4305225,208 STURBRIDGE CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_980_23.09,-74.53509401,39.50118433,210 STURBRIDGE CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_980_23.10,-74.504082,39.4784205,212 STURBRIDGE CT,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_980_23.11,-74.50404,39.4104895,214 STURBRIDGE CT,GALLOWAY TWP,16,1980,1,GOV1,3004 -0111_980_23.12,-74.69522833,39.56136192,213 STURBRIDGE CT,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_980_23.13,-74.96079583,39.51257516,211 STURBRIDGE CT,GALLOWAY TWP,16,1980,2,RES1,3001 -0111_980_23.14,-74.69986001,39.48563733,209 STURBRIDGE CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_980_23.15,-74.38443798,39.39356183,207 STURBRIDGE CT,GALLOWAY TWP,16,1983,1,GOV1,3004 -0111_980_23.16,-74.72255278,39.57769614,205 STURBRIDGE CT,GALLOWAY TWP,16,1980,1,GOV1,3004 -0111_980_23.17,-74.5787885,39.3332835,203 STURBRIDGE CT,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_980_24.01,-74.5372715,39.385017,217 RIDGEWOOD AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_980_24.02,-74.571476,39.413609,219 RIDGEWOOD AVE,GALLOWAY TWP,16,1974,1,RES3A,3001 -0111_980_24.03,-74.58675367,39.324199,221 RIDGEWOOD AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_980_24.04,-74.7342895,39.4506485,223 RIDGEWOOD AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_980_24.05,-74.56137152,39.41008272,225 RIDGEWOOD AVE,GALLOWAY TWP,16,1977,1,IND2,3002 -0111_980_24.06,-74.65134793,39.52921458,227 RIDGEWOOD AVE,GALLOWAY TWP,16,1978,1,COM1,3004 -0111_980_24.07,-74.5492793,39.46645494,229 RIDGEWOOD AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_980_24.08,-74.493668,39.4530795,231 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_980_3.01,-74.402273,39.3859205,211 RIDGEWOOD AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_980_3.02,-74.4968441,39.33562016,213 RIDGEWOOD AVE,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_980_3.03,-74.52206517,39.40013804,215 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_980_4.01,-74.59437,39.322919,436 SECOND AVE,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_980_4.02,-74.458035,39.349067,434 SECOND AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_980_4.03,-74.36677127,39.42013659,434A SECOND AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_980_5,-74.49149616,39.33279951,432 SECOND AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_980_6.01,-74.50287843,39.32606183,430A SECOND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_980_6.02,-74.83209271,39.38036383,430 SECOND AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_980_7.01,-74.57196669,39.37322257,428 SECOND AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_980_7.02,-74.88803109,39.4991903,426 SECOND AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_980_8.01,-74.47813152,39.33862484,424 SECOND AVE,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_980_8.03,-74.80532866,39.63123598,422 SECOND AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_980_9,-74.37038567,39.402093,418 SECOND AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_981.01_1,-74.60009688,39.31709821,452 FOURTH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_981.01_11.01,-74.59668912,39.31972944,414 FOURTH AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_981.01_11.02,-74.48744919,39.49298902,410 FOURTH AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_981.01_11.03,-74.5887385,39.433654,404 FOURTH AVE,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_981.01_12.01,-74.50863474,39.32895604,236 E JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_981.01_12.02,-74.51094469,39.33395722,240 E JIMMIE LEEDS RD,GALLOWAY TWP,16,2001,1,GOV1,3004 -0111_981.01_12.03,-74.63945923,39.36159892,242 E JIMMIE LEEDS RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_981.01_13,-74.5896295,39.323746,244 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_981.01_14.01,-74.55592587,39.51504056,440 CAMELBACK DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_981.01_14.02,-74.6301431,39.34867412,438 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_14.03,-74.75916732,39.43031034,436 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_14.04,-74.49505958,39.33802416,434 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_14.05,-74.47942504,39.44316031,432 CAMELBACK DR,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_981.01_14.06,-74.48433027,39.47105067,430 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_14.07,-74.52295951,39.44180464,428 CAMELBACK DR,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_981.01_14.08,-74.59784781,39.40922552,426 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_14.09,-74.5074775,39.435956,424 CAMELBACK DR,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_981.01_14.10,-74.85746985,39.48224238,422 CAMELBACK DR,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_981.01_14.11,-74.8449245,39.4267235,420 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_14.12,-74.80500188,39.63793994,418 CAMELBACK DR,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_981.01_14.13,-74.51058167,39.332002,416 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_14.14,-74.63253878,39.41005196,414 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_15.01,-74.576533,39.3136665,250 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_981.01_15.02,-74.60083931,39.43391062,402 CAMELBACK DR,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_981.01_15.03,-74.82745701,39.65024821,404 CAMELBACK DR,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_981.01_15.04,-74.55721817,39.39823519,406 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_15.05,-74.78508571,39.65493979,408 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_15.06,-74.40097225,39.38994135,410 CAMELBACK DR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_981.01_15.07,-74.75827227,39.43051347,412 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_15.08,-74.6866755,39.357144,248 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_981.01_16,-74.52445836,39.39588202,252 E JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,GOV1,3004 -0111_981.01_18.01,-74.7339415,39.440371,405 SIXTH AVE,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_981.01_19,-74.60707977,39.41028878,409 SIXTH AVE,GALLOWAY TWP,16,1926,1,GOV1,3004 -0111_981.01_20,-74.48800192,39.34974833,411 SIXTH AVE,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_981.01_22,-74.51372985,39.40561862,415 SIXTH AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_981.01_23.01,-74.53911722,39.38609438,417A SIXTH AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_981.01_23.02,-74.5745105,39.340144,417 SIXTH AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_981.01_24,-74.50807554,39.40329724,419 SIXTH AVE,GALLOWAY TWP,16,1956,1,RES1,3001 -0111_981.01_25.01,-74.52073466,39.38769033,421 SIXTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_981.01_25.02,-74.61619801,39.53700033,421A SIXTH AVE,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_981.01_26.01,-74.38953266,39.38970012,423 SIXTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_981.01_26.02,-74.632641,39.52545,425 SIXTH AVE,GALLOWAY TWP,16,1986,1,GOV1,3004 -0111_981.01_27.01,-74.9461705,39.5190275,427 SIXTH AVE,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_981.01_27.02,-74.5953265,39.3174175,429 SIXTH AVE,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_981.01_27.03,-74.4572372,39.46307117,427A SIXTH AVE,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_981.01_28,-74.682115,39.4404035,431 SIXTH AVE,GALLOWAY TWP,16,1956,1,GOV1,3004 -0111_981.01_29.01,-74.56322377,39.36025314,433 SIXTH AVE,GALLOWAY TWP,16,1991,1,GOV1,3004 -0111_981.01_29.02,-74.52082715,39.45476946,435 SIXTH AVE,GALLOWAY TWP,16,1962,1,RES1,3001 -0111_981.01_30,-74.6052284,39.39197519,439 SIXTH AVE,GALLOWAY TWP,15,1962,1,RES1,3001 -0111_981.01_31,-74.59284233,39.32329566,443 SIXTH AVE,GALLOWAY TWP,17,1975,1,GOV1,3004 -0111_981.01_32,-74.65644917,39.41670753,447 SIXTH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_981.01_33.01,-74.37530158,39.40128905,261 RIDGEWOOD AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_981.01_33.02,-74.9353125,39.5247195,259 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_981.01_34.01,-74.5387888,39.39063499,253 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_981.01_34.02,-74.6244605,39.353327,255 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_981.01_34.03,-74.5027775,39.4122915,257 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,GOV1,3004 -0111_981.01_35.01,-74.50648411,39.44351342,249 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_981.01_35.02,-74.54868577,39.36075297,251 RIDGEWOOD AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_981.01_4.01,-74.7242895,39.456484,440 FOURTH AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_981.01_4.02,-74.37635584,39.41593682,438 FOURTH AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_981.01_5,-74.70026765,39.58195131,436 FOURTH AVE,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_981.01_6.01,-74.81194374,39.60362844,434 FOURTH AVE,GALLOWAY TWP,16,1970,1,RES1,3001 -0111_981.01_6.02,-74.4844055,39.340591,434A FOURTH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_981.01_7.02,-74.53940075,39.38851755,432 FOURTH AVE,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_981.01_8,-74.61321882,39.42541475,426 FOURTH AVE,GALLOWAY TWP,16,1975,1,RES1,3001 -0111_981.01_9.01,-74.50411337,39.33232481,424 FOURTH AVE,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_981.02_1,-74.5682305,39.475645,435 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3004 -0111_981.02_2,-74.70804376,39.36893503,429 CAMELBACK DR,GALLOWAY TWP,16,1985,1,GOV1,3004 -0111_981.02_3,-74.52685422,39.44562804,411 CAMELBACK DR,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_982_1.01,-74.7842285,39.6065535,301 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_982_1.02,-74.52567264,39.43027817,305 RIDGEWOOD AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_982_1.03,-74.5892655,39.4285245,309 RIDGEWOOD AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_982_10,-74.59791173,39.31454385,416 SIXTH AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_982_11,-74.6435651,39.53425636,414 SIXTH AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_982_12,-74.36141573,39.4096847,412 SIXTH AVE,GALLOWAY TWP,16,1928,1,RES1,3001 -0111_982_13,-74.5111925,39.323227,410 SIXTH AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_982_14,-74.45355641,39.3740497,406 SIXTH AVE,GALLOWAY TWP,16,1926,1,RES1,3001 -0111_982_15,-74.51565158,39.32955644,402 SIXTH AVE,GALLOWAY TWP,15,1926,1,RES1,3001 -0111_982_16,-74.5693895,39.363599,400 SIXTH AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_982_18,-74.5346153,39.50158271,300 E JIMMIE LEEDS RD,GALLOWAY TWP,,1940,1,RES1,3001 -0111_982_19.02,-74.7986833,39.64664633,306 E JIMMIE LEEDS RD,GALLOWAY TWP,,1994,1,RES1,3001 -0111_982_19.03,-74.4688045,39.49232,310 E JIMMIE LEEDS RD-OFF,GALLOWAY TWP,,0,1,RES1,3001 -0111_982_2.01,-74.88392237,39.56075532,450 SIXTH AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_982_2.02,-74.598595,39.410843,448 SIXTH AVE,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_982_2.03,-74.51760982,39.40937494,446 SIXTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_982_21,-74.49373621,39.42110623,320 E JIMMIE LEEDS RD,GALLOWAY TWP,,2001,1,RES1,3001 -0111_982_24.01,-74.62049611,39.5310604,421 EIGHTH AVE,GALLOWAY TWP,16,1979,1,COM8,3004 -0111_982_24.02,-74.61246533,39.42022133,419 EIGHTH AVE,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_982_24.03,-74.63006151,39.43303256,326 E JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_982_25,-74.92515371,39.51277415,423-425 EIGHTH AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_982_26.01,-74.8359605,39.5974025,431 EIGHTH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_982_26.02,-74.742651,39.6439655,433 EIGHTH AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_982_26.03,-74.50526,39.4583135,433A EIGHTH AVE,GALLOWAY TWP,,1997,1,GOV1,3004 -0111_982_27.01,-74.38108443,39.3955262,435 EIGHTH AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_982_27.02,-74.5233225,39.386489,437 EIGHTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_982_27.03,-74.81448918,39.6435703,439 EIGHTH AVE,GALLOWAY TWP,16,1988,2,RES1,3001 -0111_982_28,-74.63183432,39.41505369,441 EIGHTH AVE,GALLOWAY TWP,16,1926,1,COM3,3004 -0111_982_29.01,-74.449522,39.3719785,445A EIGHTH AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_982_29.02,-74.5623855,39.3603095,445 EIGHTH AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_982_30.01,-74.91758413,39.48168377,447 EIGHTH AVE,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_982_30.02,-74.5390295,39.3815395,449 EIGHTH AVE,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_982_30.03,-74.52544871,39.39952136,451 EIGHTH AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_982_31.01,-74.8965175,39.5298355,453 EIGHTH AVE,GALLOWAY TWP,16,1901,1,RES1,3001 -0111_982_31.02,-74.4577715,39.34979,453A EIGHTH AVE,GALLOWAY TWP,16,2013,1,RES1,3001 -0111_982_32.01,-74.563574,39.353618,329 RIDGEWOOD AVE,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_982_32.02,-74.38551182,39.39722834,327 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_982_33.01,-74.6487815,39.3302465,325 RIDGEWOOD AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_982_33.02,-74.62937747,39.38086616,323 RIDGEWOOD AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_982_34.01,-74.46907189,39.45285487,319 RIDGEWOOD AVE,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_982_34.02,-74.4838525,39.3386565,321 RIDGEWOOD AVE,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_982_35.01,-74.5354795,39.314875,315 RIDGEWOOD AVE,GALLOWAY TWP,16,1950,1,RES1,3001 -0111_982_35.02,-74.81964399,39.63138667,313 RIDGEWOOD AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_982_4,-74.58492102,39.32429967,438 SIXTH AVE,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_982_6.01,-74.58315267,39.41906303,432 SIXTH AVE,GALLOWAY TWP,15,1955,1,RES1,3001 -0111_982_7,-74.5843285,39.4026315,428 SIXTH AVE,GALLOWAY TWP,16,1953,1,RES1,3001 -0111_982_8,-74.595927,39.3351755,424 TESS CONOVER,GALLOWAY TWP,,0,1,RES1,3001 -0111_982_9,-74.60212957,39.48122176,420 SIXTH AVE,GALLOWAY TWP,16,1960,1,RES1,3001 -0111_983_10.01,-74.5432495,39.3758945,441 S PITNEY RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_983_10.02,-74.63248734,39.34794885,439 S PITNEY RD,GALLOWAY TWP,15,1961,1,RES1,3001 -0111_983_11.01,-74.42201334,39.37416233,443 S PITNEY RD,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_983_11.02,-74.461167,39.346053,443A S PITNEY RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_983_11.03,-74.4859576,39.34717117,445 S PITNEY RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_983_12.01,-74.55448464,39.35729431,447 S PITNEY RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_983_12.03,-74.773142,39.320826,449 S PITNEY RD,GALLOWAY TWP,16,2008,1,RES1,3001 -0111_983_14.02,-74.6015495,39.3263905,361 RIDGEWOOD AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_983_14.03,-74.44890237,39.49843267,455 S PITNEY RD,GALLOWAY TWP,16,1987,2,GOV1,3004 -0111_983_14.04,-74.376464,39.4005965,363 RIDGEWOOD AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_983_14.05,-74.54913551,39.37468681,365 RIDGEWOOD AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_983_15.01,-74.807632,39.616208,353 RIDGEWOOD AVE,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_983_15.02,-74.50287067,39.32694699,351 RIDGEWOOD AVE,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_983_15.03,-74.63381838,39.45412742,349 RIDGEWOOD AVE,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_983_15.04,-74.67267679,39.38924265,349A RIDGEWOOD AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_983_16.01,-74.45726852,39.37291066,345 RIDGEWOOD AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_983_16.02,-74.6763105,39.355462,402 WOCHNER CT,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_983_16.03,-74.6369705,39.429684,400 WOCHNER CT,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_983_17.01,-74.81355654,39.62950675,337 RIDGEWOOD AVE,GALLOWAY TWP,16,1983,1,RES1,3001 -0111_983_17.02,-74.68065926,39.60829893,339 RIDGEWOOD AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_983_18,-74.70455166,39.56771748,333 RIDGEWOOD AVE,GALLOWAY TWP,16,1969,1,RES1,3001 -0111_983_19,-74.71594,39.5818155,460 EIGHTH AVE,GALLOWAY TWP,16,1940,1,RES1,3001 -0111_983_21,-74.505916,39.32286271,456 EIGHTH AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_983_22.01,-74.49136632,39.33081451,454 EIGHTH AVE,GALLOWAY TWP,16,1945,1,RES1,3001 -0111_983_22.02,-74.6397675,39.380282,452 EIGHTH AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_983_22.03,-74.541011,39.3830325,454A EIGHTH AVE,GALLOWAY TWP,16,2000,1,IND2,3002 -0111_983_23.01,-74.7985645,39.635591,450 EIGHTH AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_983_23.02,-74.58326637,39.34021182,448 EIGHTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_983_24.01,-74.5897589,39.53219901,446 EIGHTH AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_983_24.02,-74.80214795,39.63951258,444 EIGHTH AVE,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_983_24.03,-74.58789018,39.35401096,442 EIGHTH AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_983_25.01,-74.65522353,39.62942786,440 EIGHTH AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_983_25.02,-74.35860868,39.41441217,438 EIGHTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_983_25.03,-74.45397052,39.47810281,436 EIGHTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_983_25.04,-74.80332226,39.63114328,434 EIGHTH AVE,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_983_25.05,-74.46164014,39.35868315,432 EIGHTH AVE,GALLOWAY TWP,16,1905,1,RES1,3001 -0111_983_25.06,-74.524011,39.447096,430 EIGHTH AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_983_25.07,-74.71496364,39.46461329,428 EIGHTH AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_983_3,-74.5616675,39.533768,415 S PITNEY RD,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_983_4,-74.59643488,39.43120515,419 S PITNEY RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_983_5,-74.374852,39.4179265,421 S PITNEY RD,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_983_6.02,-74.796282,39.6299605,425 S PITNEY RD,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_983_7,-74.570511,39.3686995,429 S PITNEY RD,GALLOWAY TWP,,1980,1,RES1,3001 -0111_983_8.01,-74.5003265,39.4125805,435 S PITNEY RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_983_8.02,-74.59075088,39.3693883,PITNEY RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_983_8.03,-74.556457,39.3971985,435A S PITNEY RD,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_983_9.01,-74.59984646,39.31914632,437 S PITNEY RD,GALLOWAY TWP,,2003,1,RES1,3001 -0111_983_9.02,-74.38722534,39.39544958,437A S PITNEY RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_984_1,-74.50347068,39.32995898,201 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_984_10.02,-74.56342433,39.36205403,283 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_984_10.03,-74.6889325,39.416945,287 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_984_10.04,-74.36275466,39.41744149,231 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_984_10.05,-74.78273,39.6525565,233 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_984_10.06,-74.92669614,39.48499418,235 E JIMMIE LEEDS RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_984_10.07,-74.834414,39.377735,279 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_984_10.08,-74.52149503,39.40180432,266 GREAT CREEK RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_984_10.09,-74.57371484,39.40871566,268 GREAT CREEK RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_984_10.10,-74.45109363,39.37439716,270 GREAT CREEK RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_984_11,-74.6042445,39.329084,309 S KEY DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_984_12,-74.946555,39.5037945,307 S KEY DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_984_13,-74.58369534,39.43217343,206 RICHARDS LN,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_984_14,-74.40801312,39.38260868,204 RICHARDS LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_984_15,-74.501464,39.4107795,202 RICHARDS LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_984_16,-74.60980904,39.32826312,200 RICHARDS LN,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_17,-74.50335327,39.50130497,201 RICHARDS LN,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_18,-74.61393293,39.40978619,203 RICHARDS LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_984_19,-74.490432,39.442295,305 S KEY DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_984_20,-74.7278605,39.457179,303 S KEY DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_984_21,-74.61453486,39.3123382,301 S KEY DR,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_984_22,-74.40483325,39.38839748,217 KEY DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_984_23,-74.84250493,39.63123885,219 KEY DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_24,-74.485034,39.4339235,221 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_984_25,-74.5349186,39.39704446,223 KEY DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_984_26,-74.8232875,39.4441245,217 ELAINE DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_27,-74.50706347,39.40476235,215 ELAINE DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_984_28,-74.5368,39.38648,213 ELAINE DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_984_29,-74.54509942,39.54743288,211 ELAINE DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_984_30,-74.61499766,39.48749104,209 ELAINE DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_31,-74.52578516,39.39335492,207 ELAINE DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_32,-74.62742995,39.40956995,205 ELAINE DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_33,-74.60322459,39.35000528,272 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_34,-74.60113126,39.32031506,274 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_984_4,-74.8649983,39.57221989,215 E JIMMIE LEEDS RD,GALLOWAY TWP,,2005,1,RES1,3001 -0111_984_5.01,-74.591354,39.3309295,217 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_984_5.02,-74.399336,39.3942,221 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1959,1,COM1,3004 -0111_984_5.03,-74.447579,39.3753415,216 GREAT CREEK RD,GALLOWAY TWP,16,1979,1,RES1,3001 -0111_984_5.04,-74.74992943,39.4471753,218 GREAT CREEK RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_984_6.01,-74.69805982,39.50934448,223 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_984_6.02,-74.3625975,39.4115075,225 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_984_6.03,-74.91854226,39.48201118,227 E JIMMIE LEEDS RD,GALLOWAY TWP,,1966,1,RES1,3001 -0111_984_7.01,-74.78758964,39.61610071,220 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_984_7.02,-74.50397253,39.33730067,222 GREAT CREEK RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_984_7.03,-74.56570102,39.41693018,224 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_984_7.04,-74.53499728,39.39692598,226 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_984_7.05,-74.8085585,39.615304,228 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_984_8,-74.4420265,39.372101,238 GREAT CREEK RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_984_9.01,-74.59853,39.3421445,244 GREAT CREEK RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_984_9.02,-74.60443337,39.34671716,262 GREAT CREEK RD,GALLOWAY TWP,,1979,1,RES1,3001 -0111_984_9.04,-74.50778358,39.46191962,246 GREAT CREEK RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_985_1,-74.82494967,39.5696735,347 E JIMMIE LEEDS RD,GALLOWAY TWP,,2001,1,RES1,3001 -0111_985_10.01,-74.37648943,39.40310865,JIMMIE LEEDS RD,GALLOWAY TWP,,1966,1,RES1,3001 -0111_985_10.02,-74.6455625,39.5276105,317 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_985_11,-74.5197952,39.39583588,313 SANDY LN,GALLOWAY TWP,16,1972,1,RES1,3001 -0111_985_12.01,-74.50632163,39.43950016,313 E JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_985_12.02,-74.492386,39.436252,313A E JIMMIE LEEDS RD,GALLOWAY TWP,,0,1,REL1,3004 -0111_985_15,-74.5926675,39.429608,307 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_16,-74.6115025,39.3249605,305 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_985_17,-74.44621704,39.37258231,303 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_18,-74.4592481,39.46368659,301 E JIMMIE LEEDS RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_19,-74.484495,39.3474965,306 S KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_2,-74.74978711,39.63591504,339 E JIMMIE LEEDS RD,GALLOWAY TWP,,1990,1,RES1,3001 -0111_985_20,-74.807984,39.429247,304 S KEY DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_985_21,-74.75930347,39.44518683,302 SANDY LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_22,-74.66414333,39.5286785,304 SANDY LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_23,-74.77682335,39.44514106,306 SANDY LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_24,-74.5139775,39.3273425,308 SANDY LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_25,-74.49887017,39.33733948,310 SANDY LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_26,-74.51167248,39.32295218,311 SANDY LN,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_27,-74.733675,39.435498,309 SANDY LN,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_985_28,-74.4954135,39.490668,307 SANDY LN,GALLOWAY TWP,16,1965,1,RES3A,3001 -0111_985_29,-74.85107586,39.36705343,305 SANDY LN,GALLOWAY TWP,16,1965,1,RES3A,3001 -0111_985_3.02,-74.399524,39.3890845,329 E JIMMIE LEEDS RD,GALLOWAY TWP,,1985,1,RES1,3001 -0111_985_3.03,-74.53510977,39.40428708,331-333 E JIMMIE LEEDS RD,GALLOWAY TWP,,1996,1,RES1,3001 -0111_985_30,-74.8254455,39.478211,303 SANDY LN,GALLOWAY TWP,16,1965,1,RES3A,3001 -0111_985_31,-74.5064581,39.47224021,300 S KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_32,-74.50700907,39.43799327,218 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_33,-74.62591868,39.43658635,220 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_34,-74.5407455,39.468408,222 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_35,-74.54167318,39.39054286,224 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_36,-74.8167419,39.63639232,226 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_37,-74.84296,39.5632425,300 E KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_38,-74.63070138,39.40927169,302 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_39,-74.47463355,39.49368385,304 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3004 -0111_985_4.01,-74.58222683,39.34209776,321-323 S PITNEY RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_985_4.02,-74.77409,39.3422465,327 E JIMMIE LEEDS RD,GALLOWAY TWP,,2008,1,RES1,3001 -0111_985_40,-74.49000844,39.45874934,306 E KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_41,-74.45640651,39.35093167,308 KEY DR,GALLOWAY TWP,16,1965,1,REL1,3004 -0111_985_42,-74.604609,39.411346,310 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_43,-74.5072285,39.3402035,312 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_44,-74.39269307,39.39244641,314 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_45,-74.7420805,39.3932185,316 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_46,-74.78110989,39.44392566,318 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_47,-74.52541576,39.39439285,320 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_48,-74.46837914,39.34353766,322 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_49,-74.60631,39.501485,324 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_5.02,-74.4054225,39.3818515,315 S PITNEY RD,GALLOWAY TWP,16,1910,1,RES1,3001 -0111_985_50,-74.4902545,39.3391525,217 S PITNEY RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_51,-74.46937699,39.49254655,219 S PITNEY RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_52,-74.60809672,39.32090843,221 S PITNEY RD,GALLOWAY TWP,16,1965,1,AGR1,3001 -0111_985_53,-74.48761398,39.47859457,223 S PITNEY RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_985_7,-74.79146227,39.63576246,301 S PITNEY RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_985_9.01,-74.38169782,39.40086228,325 E JIMMIE LEEDS RD,GALLOWAY TWP,,2002,1,RES1,3001 -0111_985_9.03,-74.9259526,39.52514554,223 E JIMMIE LEEDS RD,GALLOWAY TWP,,2003,1,RES1,3001 -0111_986_1,-74.54751819,39.46505028,300 DENNIS DR,GALLOWAY TWP,16,1965,1,GOV1,3004 -0111_986_10,-74.36063856,39.41429262,315 KEY DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_986_11,-74.86826203,39.59840969,313 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_986_12,-74.70012678,39.63353946,311 KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_986_13,-74.581605,39.4051355,309 E KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_986_14,-74.4896965,39.495505,307 E KEY DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_986_15,-74.60338029,39.39141741,305 KEY DR,GALLOWAY TWP,16,1965,1,GOV1,3004 -0111_986_16,-74.51496019,39.38602303,303 E KEY DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_986_17,-74.53220103,39.38129384,301 E KEY DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_986_2,-74.6017212,39.31457864,302 DENNIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_986_3,-74.3782385,39.399523,304 DENNIS DR,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_986_4,-74.55592994,39.35617788,306 DENNIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_986_5,-74.79444,39.375468,308 DENNIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_986_6,-74.89307897,39.51026552,310 DENNIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_986_7,-74.5517175,39.465893,312 DENNIS DR,GALLOWAY TWP,16,1966,1,COM4,3004 -0111_986_8,-74.64661095,39.37852806,314 DENNIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_986_9,-74.5145515,39.385648,317 KEY DR,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_987_1,-74.804125,39.6257105,300 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,COM1,3004 -0111_987_10,-74.61778941,39.3132112,318 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_11,-74.575703,39.4119695,328 GREAT CREEK RD,GALLOWAY TWP,,1996,1,RES1,3001 -0111_987_12,-74.49978133,39.33557251,215 S PITNEY RD,GALLOWAY TWP,16,1966,1,REL1,3003 -0111_987_13,-74.48642554,39.34604321,323 DENNIS DR,GALLOWAY TWP,16,1964,1,RES1,3001 -0111_987_14,-74.88076968,39.46113065,321 DENNIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_15,-74.37665545,39.4027383,319 DENNIS DR,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_987_16,-74.85992994,39.58535837,317 DENNIS DR,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_987_17,-74.68240617,39.44490683,315 DENNIS DR,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_987_18,-74.61428011,39.37384981,313 DENNIS DR,GALLOWAY TWP,16,1966,1,GOV1,3004 -0111_987_19,-74.60644949,39.48679765,311 DENNIS DR,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_987_2,-74.60723101,39.34999834,302 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_20,-74.71743,39.57949167,309 DENNIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_21,-74.463488,39.351796,307 DENNIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_22,-74.45702778,39.47954769,305 DENNIS DR,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_987_23,-74.4914161,39.41872992,301 DENNIS DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_24,-74.504072,39.329186,208 ELAINE DR,GALLOWAY TWP,16,1967,1,RES1,3002 -0111_987_25,-74.49385582,39.43497655,206 ELAINE DR,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_26,-74.46942397,39.49032368,204 ELAINE DR,GALLOWAY TWP,16,1967,1,GOV1,3004 -0111_987_3,-74.59353935,39.32692976,304 GREAT CREEK RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_987_4,-74.51655277,39.46154008,306 GREAT CREEK RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_987_5,-74.81170958,39.63217135,308 GREAT CREEK RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0111_987_6,-74.58199354,39.47425063,310 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_7,-74.57070184,39.35522524,312 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_8,-74.51133897,39.47778606,314 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_987_9,-74.806065,39.6393405,316 GREAT CREEK RD,GALLOWAY TWP,16,1967,1,RES1,3001 -0111_988.01_10.01,-74.48159783,39.341574,243 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,COM1,3004 -0111_988.01_10.02,-74.37684567,39.396088,245 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.03,-74.46661185,39.35706713,247 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.04,-74.57115536,39.36678283,249 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.05,-74.6591615,39.574176,251 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.06,-74.492065,39.3410215,253 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.07,-74.5277235,39.3863165,255 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.08,-74.524429,39.3891675,257 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,COM4,3004 -0111_988.01_10.09,-74.54896822,39.37198565,259 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_10.10,-74.40577085,39.39279077,267 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.11,-74.52802856,39.38687071,269 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_10.12,-74.50374223,39.32562914,271 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.13,-74.44955765,39.35592951,273 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_10.14,-74.66244274,39.58370882,275 GREAT CREEK RD,GALLOWAY TWP,16,2004,1,RES1,3001 -0111_988.01_11,-74.63857838,39.52286075,PITNEY RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.01_12.02,-74.5092295,39.3301875,300 KELLY DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_988.01_12.03,-74.603699,39.3332055,302 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.04,-74.5532675,39.3829875,304 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.05,-74.634688,39.4271805,306 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.06,-74.61248312,39.33967367,308 KELLY DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.01_12.07,-74.93997,39.539622,310 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3004 -0111_988.01_12.08,-74.6232063,39.35906652,312 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.09,-74.51127984,39.43757551,314 KELLY DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.01_12.10,-74.6012715,39.480294,316 KELLY DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.01_12.11,-74.5392665,39.3797175,318 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.12,-74.514866,39.320346,320 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.13,-74.508242,39.3394735,321 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.14,-74.45633915,39.49682129,319 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.15,-74.525537,39.4722705,317 KELLY DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.01_12.16,-74.724673,39.4538905,315 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.17,-74.57953345,39.3420457,313 KELLY DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.01_12.18,-74.51162507,39.32684717,311 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.19,-74.7097755,39.4712025,309 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.20,-74.45004286,39.35574133,307 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.21,-74.60027758,39.38013497,305 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.22,-74.80685392,39.63194086,303 KELLY DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_988.01_12.23,-74.6016,39.327082,301 KELLY DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_988.01_12.25,-74.79458,39.5993295,301 GREAT CREEK RD,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_988.01_12.26,-74.50425146,39.41860353,303 GREAT CREEK RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_988.01_12.27,-74.7901704,39.63438076,305 GREAT CREEK RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_988.01_12.28,-74.4610114,39.35333683,307 GREAT CREEK RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_988.01_12.29,-74.569551,39.4781265,309 GREAT CREEK RD,GALLOWAY TWP,16,1999,1,COM4,3004 -0111_988.01_12.30,-74.739956,39.6351515,311 GREAT CREEK RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_988.01_12.31,-74.8957542,39.47149226,313 GREAT CREEK RD,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_988.01_12.32,-74.59254651,39.36035366,315 GREAT CREEK RD,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_988.01_12.33,-74.63262476,39.3891114,317 GREAT CREEK RD,GALLOWAY TWP,16,1999,1,GOV1,3004 -0111_988.01_13.01,-74.49552,39.456802,318 SPENCER LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_988.01_13.02,-74.435482,39.3680545,316 SPENCER LN,GALLOWAY TWP,16,2005,1,RES1,3001 -0111_988.01_13.03,-74.563079,39.4168285,314 SPENCER LN,GALLOWAY TWP,16,1996,2,RES1,3001 -0111_988.01_13.04,-74.52213365,39.39673363,312 SPENCER LN,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_988.01_13.05,-74.42194784,39.3700585,310 SPENCER LN,GALLOWAY TWP,16,1997,1,RES1,3001 -0111_988.01_13.06,-74.5305065,39.3815775,308 SPENCER LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_988.01_13.07,-74.61165534,39.31663598,306 SPENCER LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_988.01_13.08,-74.50985367,39.3259385,304 SPENCER LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_988.01_13.09,-74.540455,39.3908745,302 SPENCER LN,GALLOWAY TWP,16,2002,1,COM4,3004 -0111_988.01_13.10,-74.67961185,39.55848605,300 SPENCER LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_18.01,-74.7112865,39.639773,220 WRANGLEBORO RD,GALLOWAY TWP,16,1978,1,RES1,3001 -0111_988.01_19.01,-74.47015175,39.48353664,216 WRANGLEBORO RD,GALLOWAY TWP,,1998,1,RES1,3001 -0111_988.01_28.01,-74.4030773,39.39131326,319 SPENCER LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_988.01_28.02,-74.68653554,39.50045312,317 SPENCER LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_988.01_28.03,-74.7246525,39.4549245,315 SPENCER LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_988.01_28.04,-74.65270017,39.523434,313 SPENCER LN,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_988.01_28.05,-74.770972,39.3121545,311 SPENCER LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_28.06,-74.553216,39.3616635,309 SPENCER LN,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_988.01_28.07,-74.52718289,39.38271972,307 SPENCER LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_28.08,-74.4829425,39.4409065,305 SPENCER LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_28.09,-74.55130731,39.38403571,303 SPENCER LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_28.10,-74.5159215,39.4562855,301 SPENCER LN,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_4,-74.48621009,39.53370689,211 GREAT CREEK RD,GALLOWAY TWP,,2002,1,RES1,3001 -0111_988.01_5.02,-74.488606,39.33533367,215 GREAT CREEK RD,GALLOWAY TWP,16,1986,1,RES1,3001 -0111_988.01_6.01,-74.424341,39.378702,217 GREAT CREEK RD,GALLOWAY TWP,16,2000,1,RES1,3001 -0111_988.01_6.02,-74.5213295,39.317845,219 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,GOV1,3004 -0111_988.01_6.03,-74.5878795,39.412575,221 GREAT CREEK RD,GALLOWAY TWP,16,2003,1,RES1,3001 -0111_988.01_7.01,-74.6891273,39.63604891,232 WRANGLEBORO RD,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_988.01_7.02,-74.63962532,39.38013801,234 WRANGLEBORO RD,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_988.01_7.03,-74.50263802,39.42968267,236 WRANGLEBORO RD,GALLOWAY TWP,16,1998,1,RES1,3001 -0111_988.01_9.01,-74.91389388,39.49658925,239 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.01_9.02,-74.49347585,39.33373188,241 GREAT CREEK RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_988.02_110,-74.38283393,39.39481935,218 WALDEN WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.02_111,-74.683071,39.3924555,COMMON OPEN SPACE,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.02_112,-74.6757355,39.3603005,180 WALDEN WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.02_115,-74.48607751,39.44184145,COMMON OPEN SPACE,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.02_55,-74.5603425,39.536233,101 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_56,-74.809284,39.3734695,103 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_57,-74.6311425,39.4166725,105 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_58,-74.79584019,39.46113046,107 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_59,-74.46354617,39.35727845,109 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_60,-74.3720825,39.4007305,111 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_61,-74.56955648,39.41321978,113 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_62,-74.43636977,39.36935413,115 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_63,-74.54125177,39.37399938,117 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.02_64,-74.71181971,39.39950795,119 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_65,-74.684602,39.5599845,121 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_66,-74.53656653,39.37849412,123 CONCORD TERR,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_988.02_67,-74.51239095,39.44319165,125 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_68,-74.654223,39.525369,127 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_69,-74.570739,39.4278975,129 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_70,-74.95388179,39.51160213,131 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_71,-74.543083,39.378813,133 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_72,-74.51941783,39.44201297,135 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_73,-74.5854635,39.5255895,137 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_74,-74.58558492,39.35727464,139 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_75,-74.70811643,39.42071869,141 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_76,-74.54556879,39.47671872,143 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_77,-74.62668616,39.43349076,145 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_78,-74.6380994,39.43356724,147 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_79,-74.52319317,39.46672091,149 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_80,-74.401704,39.389061,151 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_81,-74.44031773,39.36999166,153 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_82,-74.43625518,39.36870695,155 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_83,-74.5591095,39.3989725,157 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_84,-74.60803774,39.34968721,159 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_85,-74.80777734,39.63404901,161 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_86,-74.79169166,39.64367853,163 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.02_87,-74.855796,39.5612345,165 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.03_1,-74.50937534,39.33159721,COMMON OPEN SPACE,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.04_1,-74.57870365,39.35173405,205 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_10,-74.50882887,39.46217956,223 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_100,-74.62804133,39.43946435,223 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_101,-74.55192093,39.40315246,225 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_11,-74.76712028,39.6646202,225 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_12,-74.62584455,39.39305671,227 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_124,-74.45389014,39.49151008,WALDEN WAY,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.04_13,-74.713769,39.471985,229 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_14,-74.631166,39.390243,231 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_15,-74.60289343,39.32941485,233 COLMAN PL,GALLOWAY TWP,35,1992,1,GOV1,3004 -0111_988.04_16,-74.48092007,39.3469577,235 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_17,-74.528717,39.399723,237 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_18,-74.5485045,39.385192,239 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_19,-74.626838,39.354591,241 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_2,-74.63343007,39.43002664,207 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_20,-74.65636113,39.35855218,243 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_21,-74.50704334,39.4061198,245 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_22,-74.51058873,39.33762478,247 COLMAN PL,GALLOWAY TWP,35,1992,1,EDU1,3004 -0111_988.04_23,-74.83121768,39.47658353,236 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_24,-74.59036724,39.37645159,234 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_25,-74.94356675,39.52703944,232 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_26,-74.59381919,39.31619951,230 COLMAN PL,GALLOWAY TWP,35,1992,1,RES3A,3001 -0111_988.04_27,-74.55133045,39.5428779,228 COLMAN PL,GALLOWAY TWP,35,1992,1,GOV1,3004 -0111_988.04_28,-74.61326856,39.36808322,226 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_29,-74.50059549,39.32903383,224 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_3,-74.68333667,39.41638758,209 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_30,-74.82846759,39.40662616,222 COLMAN PL,GALLOWAY TWP,35,1992,1,EDU1,3004 -0111_988.04_31,-74.64183841,39.50345246,220 COLMAN PL,GALLOWAY TWP,35,1992,1,COM3,3004 -0111_988.04_32,-74.51299216,39.44384077,218 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_33,-74.80075236,39.64922805,216 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_34,-74.59266318,39.34953351,214 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_35,-74.736242,39.449458,212 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_36,-74.497628,39.42585,210 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_37,-74.60292516,39.40935879,208 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_38,-74.45736692,39.34752773,206 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_39,-74.5001,39.330176,204 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_4,-74.43456067,39.36125523,211 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_40,-74.532203,39.3880305,202 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_41,-74.58977567,39.31799052,232 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_42,-74.63597414,39.34231525,230 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_43,-74.808471,39.6292135,228 SOLITUDE PL,GALLOWAY TWP,35,1982,1,EDU1,3004 -0111_988.04_44,-74.471294,39.4891345,226 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_45,-74.52906473,39.51149052,224 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_46,-74.81332299,39.63592939,222 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_47,-74.58801912,39.35546582,220 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_48,-74.36698292,39.40697284,218 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_49,-74.58143089,39.47448526,216 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_5,-74.88276091,39.59520506,213 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_50,-74.62119677,39.36525233,214 SOLITUDE PL,GALLOWAY TWP,35,1982,1,GOV1,3004 -0111_988.04_51,-74.92214637,39.53466503,212 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_52,-74.62431968,39.41841273,210 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_53,-74.58673033,39.336511,208 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES3A,3001 -0111_988.04_54,-74.81910368,39.65352983,206 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_55,-74.831233,39.4154295,204 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_56,-74.60980628,39.37651384,202 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_57,-74.56476251,39.41708417,200 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_58,-74.50907934,39.33771804,201 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_59,-74.8079985,39.379602,203 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_6,-74.58612499,39.32592167,215 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_60,-74.56469216,39.37031753,205 SOLITUDE PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_7,-74.6491478,39.52477916,217 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_71,-74.81530199,39.37728483,234 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_72,-74.5080815,39.34085914,232 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_73,-74.49025,39.4303,230 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_74,-74.50156091,39.32908833,228 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_75,-74.79456948,39.60365167,226 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_76,-74.6270995,39.5300455,224 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_77,-74.71979673,39.57926823,222 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_78,-74.70442276,39.63737348,220 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_79,-74.61025124,39.31523786,218 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_8,-74.541331,39.5316125,219 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_80,-74.50683206,39.460118,216 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_81,-74.4799261,39.33865016,214 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_82,-74.78653476,39.67741455,212 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_83,-74.49364964,39.33212332,210 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_84,-74.77993835,39.64066597,208 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_85,-74.451749,39.35747182,206 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_86,-74.63347638,39.43414753,204 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_87,-74.64882536,39.55928615,202 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_88,-74.8807,39.592021,200 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_89,-74.69044945,39.44676045,201 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_9,-74.78270326,39.50507547,221 COLMAN PL,GALLOWAY TWP,35,1992,1,RES1,3001 -0111_988.04_90,-74.59758736,39.36254594,203 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_91,-74.58793883,39.35333719,205 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_92,-74.50684915,39.49300268,207 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_93,-74.4701955,39.44370568,209 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_94,-74.50070886,39.33154796,211 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_95,-74.53721679,39.42075122,213 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_96,-74.48391452,39.43622634,215 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_97,-74.48390447,39.34908733,217 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_98,-74.83091583,39.4241295,219 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.04_99,-74.475412,39.4795525,221 FLINT POND PL,GALLOWAY TWP,35,1982,1,RES1,3001 -0111_988.05_1,-74.8297043,39.49236953,100 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.05_10,-74.50742,39.4049415,118 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_11,-74.48160015,39.35161922,120 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_12,-74.643372,39.5178575,122 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_13,-74.59908604,39.32056824,124 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_14,-74.38841822,39.39330118,126 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_15,-74.84847,39.442788,128 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3002 -0111_988.05_16,-74.615999,39.3211845,130 CONCORD TERR,GALLOWAY TWP,16,1988,1,COM1,3004 -0111_988.05_17,-74.38971537,39.39035193,132 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_18,-74.50478136,39.33818462,134 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3004 -0111_988.05_19,-74.440434,39.3578065,136 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_2,-74.46735224,39.45888911,102 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.05_20,-74.3684975,39.4055005,138 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_21,-74.59253376,39.53281469,140 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES3A,3001 -0111_988.05_22,-74.58184963,39.33963431,142 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_23,-74.5106215,39.457965,144 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_24,-74.46929255,39.4907571,146 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_3,-74.51710746,39.3863263,104 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.05_4,-74.93325412,39.52578618,106 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.05_5,-74.80416935,39.6437916,108 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.05_6,-74.508553,39.3294455,110 CONCORD TERR,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_988.05_7,-74.40308584,39.38217719,112 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_8,-74.804748,39.5474555,114 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.05_9,-74.46985353,39.34522119,116 CONCORD TERR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_988.06_1,-74.9548085,39.5333985,WALDEN WAY,GALLOWAY TWP,,0,1,GOV1,3004 -0111_988.07_1_C0001,-74.6209425,39.369167,1 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0002,-74.49856923,39.46860516,2 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0003,-74.63365,39.5347865,3 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES3A,3001 -0111_988.07_1_C0004,-74.49862491,39.33067734,4 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0005,-74.5315545,39.3856565,5 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0006,-74.69954976,39.49069605,6 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0007,-74.62458919,39.41785208,7 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0008,-74.52299791,39.39155498,8 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0009,-74.49836036,39.52056312,9 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0010,-74.63325666,39.39118693,10 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0011,-74.595062,39.3709735,11 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_1_C0012,-74.62343406,39.4194108,12 WHITE POND CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0133,-74.57972749,39.47518467,133 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_988.07_10_C0134,-74.49190496,39.33962515,134 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0135,-74.6617815,39.4444025,135 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_988.07_10_C0136,-74.378689,39.4191825,136 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0137,-74.79394133,39.64142951,137 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0138,-74.5558405,39.4267355,138 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0139,-74.50164327,39.5016669,139 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0140,-74.6147661,39.50630888,140 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0141,-74.54499416,39.37372053,141 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0142,-74.45450472,39.47871796,142 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0143,-74.5135705,39.403655,143 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_10_C0144,-74.44360118,39.35841896,144 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_11_C0145,-74.58699873,39.32198617,145 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_11_C0146,-74.5135365,39.466731,146 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_11_C0147,-74.44193931,39.36933206,147 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES3A,3001 -0111_988.07_11_C0148,-74.595943,39.344608,148 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_11_C0149,-74.63853184,39.53294648,149 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_11_C0150,-74.80939787,39.63652263,150 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_11_C0151,-74.8184465,39.533428,151 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_11_C0152,-74.57635468,39.35087851,152 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_2_C0013,-74.714118,39.435396,13 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0014,-74.59199547,39.34753635,14 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0015,-74.5046255,39.3303215,15 WHITE POND CT,GALLOWAY TWP,33,1997,1,GOV1,3004 -0111_988.07_2_C0016,-74.651821,39.5330835,16 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0017,-74.6635305,39.4465035,17 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0018,-74.57588733,39.35111749,18 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0019,-74.51282889,39.32751484,19 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0020,-74.56146968,39.37195502,20 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0021,-74.78604,39.4408265,21 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0022,-74.48058463,39.53946086,22 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0023,-74.58065088,39.34472307,23 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0024,-74.5574235,39.4731165,24 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0025,-74.50555607,39.44075082,25 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0026,-74.59464255,39.32025232,26 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0027,-74.52275408,39.31846769,27 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_2_C0028,-74.75319783,39.43766683,28 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0030,-74.59771547,39.58739216,30 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0031,-74.49786092,39.33406217,31 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0032,-74.37902755,39.41463034,32 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES3A,3001 -0111_988.07_3_C0033,-74.813819,39.6292735,33 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES3A,3001 -0111_988.07_3_C0034,-74.53440062,39.48928879,34 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0035,-74.51063184,39.33112106,35 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0036,-74.536694,39.314545,36 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0037,-74.52274758,39.44545884,37 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0038,-74.53494321,39.40476247,38 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0039,-74.4618325,39.349672,39 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0040,-74.828626,39.408483,40 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0041,-74.46360655,39.34485218,41 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0042,-74.5845005,39.3235715,42 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0043,-74.59763,39.344404,43 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_3_C0044,-74.49948,39.4328305,44 WHITE POND CT,GALLOWAY TWP,33,1997,1,RES1,3001 -0111_988.07_4_C0045,-74.49006426,39.35195721,45 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0046,-74.71533533,39.58229348,46 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0047,-74.96324037,39.50418924,47 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0048,-74.60421404,39.31977582,48 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0049,-74.5136485,39.53638,49 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0050,-74.798245,39.634337,50 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0051,-74.5373005,39.3909005,51 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0052,-74.55685434,39.47070218,52 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0053,-74.39522618,39.38737429,53 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0054,-74.51167915,39.40222873,54 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0055,-74.56938668,39.37470553,55 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0056,-74.59116748,39.35678384,56 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0057,-74.7227975,39.457707,57 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0058,-74.61137503,39.32074434,58 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0059,-74.482186,39.352352,59 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_4_C0060,-74.5162085,39.4029455,60 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0061,-74.59319673,39.53624053,61 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0062,-74.463758,39.494077,62 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0063,-74.6516045,39.528418,63 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0064,-74.46298333,39.34592706,64 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES3A,3001 -0111_988.07_5_C0065,-74.47703916,39.34259343,65 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0066,-74.41270421,39.36878098,66 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0067,-74.50867694,39.43720202,67 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0068,-74.80310103,39.64607116,68 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0069,-74.55454003,39.36700833,69 WHITE POND CT,GALLOWAY TWP,33,1998,1,COM1,3004 -0111_988.07_5_C0070,-74.561631,39.412113,70 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES1,3001 -0111_988.07_5_C0071,-74.588844,39.4303115,71 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES3A,3001 -0111_988.07_5_C0072,-74.6109335,39.3265705,72 WHITE POND CT,GALLOWAY TWP,33,1998,1,RES3A,3001 -0111_988.07_6_C0073,-74.38115833,39.41581432,73 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES3A,3001 -0111_988.07_6_C0074,-74.80473105,39.63708066,74 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES4,3004 -0111_988.07_6_C0075,-74.49228726,39.37976443,75 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_6_C0076,-74.8502303,39.39802954,76 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES3A,3001 -0111_988.07_6_C0077,-74.37075637,39.40676069,77 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_6_C0078,-74.6178235,39.46118514,78 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES3A,3001 -0111_988.07_6_C0079,-74.59040885,39.38107478,79 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES3A,3001 -0111_988.07_6_C0080,-74.5216855,39.31432,80 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_6_C0081,-74.46757866,39.48156472,81 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_6_C0082,-74.7114445,39.564964,82 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_6_C0083,-74.51410583,39.39757998,83 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_988.07_6_C0084,-74.65248057,39.59610953,84 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0089,-74.506032,39.328206,89 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0090,-74.542643,39.5283115,90 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0091,-74.58298809,39.36049293,91 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0092,-74.3837455,39.3978575,92 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0093,-74.57835855,39.33874542,93 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0094,-74.57041634,39.36963718,94 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0095,-74.57112221,39.44567119,95 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0096,-74.47045,39.4826415,96 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0097,-74.4448155,39.3734325,97 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0098,-74.6098663,39.32265202,98 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,GOV1,3004 -0111_988.07_7_C0099,-74.78683255,39.61676879,99 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0100,-74.6303925,39.5390685,100 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0101,-74.93701542,39.50335082,101 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0102,-74.55232211,39.46731377,102 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0103,-74.5526295,39.3799755,103 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_7_C0104,-74.66458092,39.51443512,104 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0105,-74.3762475,39.4137825,105 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0106,-74.46095811,39.34577667,106 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0107,-74.638922,39.471515,107 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0108,-74.49062,39.3319965,108 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3002 -0111_988.07_8_C0109,-74.88857585,39.48270257,109 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0110,-74.57230493,39.34451121,110 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0111,-74.509018,39.43548039,111 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0112,-74.52805512,39.42950289,112 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0113,-74.84169165,39.4513407,113 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0114,-74.808983,39.4094965,114 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0115,-74.62750913,39.48823188,115 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_8_C0116,-74.60273497,39.48268923,116 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES3A,3001 -0111_988.07_9_C0117,-74.8082405,39.639026,117 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0118,-74.66050071,39.44908264,118 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0119,-74.3721125,39.4077145,119 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0120,-74.55168667,39.42662349,120 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0121,-74.63783014,39.32276082,121 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0122,-74.885064,39.595419,122 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES3B,3001 -0111_988.07_9_C0123,-74.48877832,39.43281785,123 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES3A,3001 -0111_988.07_9_C0124,-74.79634616,39.61051199,124 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,COM3,3004 -0111_988.07_9_C0125,-74.361318,39.4094815,125 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,COM5,3004 -0111_988.07_9_C0126,-74.45256509,39.37127012,126 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0127,-74.84760982,39.61078557,127 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0128,-74.60524033,39.34695375,128 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0129,-74.5739332,39.41171214,129 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0130,-74.529094,39.394535,130 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0131,-74.81886815,39.65011794,131 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.07_9_C0132,-74.790456,39.647233,132 FAIR HAVEN HILL CT,GALLOWAY TWP,33,1984,1,RES1,3001 -0111_988.08_22.01,-74.55729428,39.47598397,25 S PITNEY RD,GALLOWAY TWP,,2006,1,RES3A,3001 -0111_988.09_8.01_C0001,-74.7017885,39.3640495,1 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.01_C0002,-74.64203085,39.53151554,2 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3004 -0111_988.09_8.01_C0003,-74.5091767,39.33988664,3 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.01_C0004,-74.79962331,39.62972612,4 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.01_C0005,-74.77651068,39.51738246,5 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.01_C0006,-74.792271,39.6339915,6 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES3A,3001 -0111_988.09_8.02_C0007,-74.46363546,39.34446953,7 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0008,-74.4548935,39.4765935,8 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0009,-74.52017068,39.41597132,9 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0010,-74.78799519,39.67637314,10 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0011,-74.597675,39.318997,11 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0012,-74.45004456,39.3562634,12 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0013,-74.484357,39.336618,13 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0014,-74.7641685,39.350712,14 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0015,-74.600333,39.330978,15 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES3A,3001 -0111_988.09_8.02_C0016,-74.62938215,39.40829767,16 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0017,-74.742918,39.399459,17 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0018,-74.548757,39.468547,18 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0019,-74.78979682,39.64789401,19 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3002 -0111_988.09_8.02_C0020,-74.83414535,39.40176399,20 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0021,-74.49476039,39.33047718,21 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0022,-74.60599017,39.5009925,22 MATTIX RUN,GALLOWAY TWP,33,1985,1,COM1,3004 -0111_988.09_8.02_C0023,-74.554367,39.5290945,23 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0024,-74.62977797,39.35009184,24 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0025,-74.39777893,39.38903994,25 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0026,-74.8077754,39.63347687,26 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0027,-74.59809154,39.41064794,27 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0028,-74.62765956,39.55656415,28 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0029,-74.77535456,39.6183988,29 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.02_C0030,-74.49276,39.337258,30 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0031,-74.57439236,39.3528529,31 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0032,-74.5676595,39.475732,32 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0033,-74.70753967,39.44858812,33 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3002 -0111_988.09_8.03_C0034,-74.60471224,39.326679,34 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0035,-74.72758854,39.45674231,35 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0036,-74.6311125,39.4120595,36 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0037,-74.48624267,39.35120049,37 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0038,-74.571947,39.3524085,38 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0039,-74.83683119,39.48295102,39 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0040,-74.43968095,39.36793196,40 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0041,-74.370079,39.401744,41 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0042,-74.36326174,39.41831701,42 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0043,-74.50949112,39.32693574,43 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0044,-74.62804376,39.43443749,44 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0045,-74.85549902,39.61176868,45 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0046,-74.60114857,39.37173067,46 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES3A,3001 -0111_988.09_8.03_C0047,-74.60674978,39.38598843,47 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0048,-74.78879853,39.63874432,48 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0049,-74.63577787,39.53538693,49 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0050,-74.4773825,39.343172,50 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3004 -0111_988.09_8.03_C0051,-74.68533837,39.4916716,51 MATTIX RUN,GALLOWAY TWP,33,1985,1,AGR1,3001 -0111_988.09_8.03_C0052,-74.39386708,39.39302783,52 MATTIX RUN,GALLOWAY TWP,33,1985,1,COM6,3002 -0111_988.09_8.03_C0053,-74.57332183,39.33581825,53 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.03_C0054,-74.65076886,39.35481604,54 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0055,-74.60016058,39.37990344,55 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0056,-74.64991078,39.52642332,56 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0057,-74.434949,39.367256,57 MATTIX RUN,GALLOWAY TWP,33,1985,1,AGR1,3001 -0111_988.09_8.04_C0058,-74.505166,39.4646025,58 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0059,-74.71607283,39.43968649,59 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0060,-74.826857,39.6491135,60 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0061,-74.65141486,39.45770714,61 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0062,-74.5826165,39.4136985,62 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0063,-74.80690914,39.6408448,63 MATTIX RUN,GALLOWAY TWP,33,1985,1,COM7,3004 -0111_988.09_8.04_C0064,-74.517812,39.4448875,64 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0065,-74.58084583,39.33795849,65 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0066,-74.4980625,39.3291565,66 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0067,-74.930784,39.533815,67 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0068,-74.5127865,39.4849985,68 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0069,-74.69753668,39.34909967,69 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0070,-74.63985338,39.36578703,70 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0071,-74.70975996,39.43196403,71 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.04_C0072,-74.37339475,39.3984465,72 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0073,-74.56531854,39.36748369,73 MATTIX RUN,GALLOWAY TWP,33,1985,1,COM5,3004 -0111_988.09_8.04_C0074,-74.63397208,39.35096307,74 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0075,-74.59848449,39.41207925,75 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0076,-74.46280798,39.35283033,76 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.04_C0077,-74.92267434,39.47333075,77 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.04_C0078,-74.5614745,39.390784,78 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0079,-74.58275541,39.5305878,79 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0080,-74.46526986,39.49438964,80 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.05_C0081,-74.933839,39.5246875,81 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0082,-74.50340033,39.32904301,82 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0083,-74.5381036,39.37309996,83 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0084,-74.60144671,39.43699847,84 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0085,-74.92465174,39.48271741,85 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0086,-74.46502969,39.49471755,86 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0087,-74.565549,39.4110475,87 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0088,-74.46231825,39.35965534,88 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.05_C0089,-74.45602408,39.37333784,89 MATTIX RUN,GALLOWAY TWP,33,1985,1,COM1,3004 -0111_988.09_8.05_C0090,-74.50771683,39.44395697,90 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0115,-74.4745745,39.484082,115 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0116,-74.57056664,39.36357867,116 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0117,-74.38545039,39.39330286,117 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0118,-74.93694671,39.52092124,118 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0119,-74.7885535,39.370535,119 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0120,-74.6280725,39.3545485,120 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0121,-74.37120845,39.40553676,121 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0122,-74.78354984,39.30800152,122 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0123,-74.73019242,39.45701595,123 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0124,-74.75183143,39.44918615,124 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.06_C0125,-74.60570221,39.32408383,125 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.06_C0126,-74.48682606,39.33513668,126 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0127,-74.54074999,39.38062117,127 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0128,-74.76000502,39.63934616,128 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0129,-74.58793665,39.41119532,129 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0130,-74.51495678,39.46123406,130 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.07_C0131,-74.5047085,39.330409,131 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0132,-74.481198,39.338158,132 MATTIX RUN,GALLOWAY TWP,33,1985,1,EDU1,3004 -0111_988.09_8.07_C0133,-74.38044732,39.41642501,133 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.07_C0134,-74.40759063,39.3798336,134 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.07_C0135,-74.63733533,39.36238276,135 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0136,-74.56575418,39.35701855,136 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0137,-74.4922345,39.338266,137 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0138,-74.60529168,39.31728358,138 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0139,-74.44804462,39.48474937,139 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0140,-74.939446,39.515981,140 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0141,-74.3681815,39.4083015,141 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0142,-74.5732481,39.35668157,142 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0143,-74.53752383,39.37413274,143 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0144,-74.69314602,39.44894341,144 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0145,-74.6045295,39.322367,145 MATTIX RUN,GALLOWAY TWP,33,1985,1,COM1,3004 -0111_988.09_8.07_C0146,-74.7941315,39.604021,146 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0147,-74.72887619,39.45499452,147 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0148,-74.79920672,39.59756922,148 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.07_C0149,-74.610518,39.5183485,149 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES3A,3001 -0111_988.09_8.07_C0150,-74.37457,39.409728,150 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.08_C0091,-74.56642127,39.38923196,91 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.08_C0092,-74.84430129,39.54000447,92 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.08_C0093,-74.56328549,39.46978083,93 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.08_C0094,-74.3890565,39.395559,94 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.08_C0095,-74.45913566,39.49291037,95 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.08_C0096,-74.5478875,39.4744155,96 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.08_C0097,-74.87403482,39.49292812,97 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.08_C0098,-74.64959883,39.34143754,98 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.09_C0099,-74.4438685,39.3702145,99 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3002 -0111_988.09_8.09_C0100,-74.52697217,39.39715734,100 MATTIX RUN,GALLOWAY TWP,33,1985,1,COM3,3004 -0111_988.09_8.09_C0101,-74.84927982,39.61247502,101 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.09_C0102,-74.56100128,39.41526542,102 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.09_C0103,-74.5436355,39.388116,103 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.09_C0104,-74.656757,39.624794,104 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.09_C0105,-74.6208139,39.53046943,105 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.09_C0106,-74.4901005,39.4301685,106 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.10_C0107,-74.47938558,39.43984063,107 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.10_C0108,-74.4522685,39.501237,108 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.10_C0109,-74.5917115,39.4330395,109 MATTIX RUN,GALLOWAY TWP,33,1985,1,GOV1,3004 -0111_988.09_8.10_C0110,-74.751886,39.45199,110 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.10_C0111,-74.5057995,39.40987,111 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.10_C0112,-74.441412,39.372095,112 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.10_C0113,-74.74852003,39.45063166,113 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.10_C0114,-74.50937592,39.33504732,114 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.11_C0151,-74.50109117,39.430526,151 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES3A,3001 -0111_988.09_8.11_C0152,-74.58157235,39.33526367,152 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.11_C0153,-74.6773185,39.413163,153 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.11_C0154,-74.4638085,39.359053,154 MATTIX RUN,GALLOWAY TWP,35,1985,1,COM3,3004 -0111_988.09_8.11_C0155,-74.35666121,39.41335869,155 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.11_C0156,-74.71473281,39.43816255,156 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.12_C0157,-74.46204498,39.35538832,157 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.12_C0158,-74.49882478,39.338053,158 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.12_C0159,-74.48602581,39.43309976,159 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.12_C0160,-74.694695,39.5928555,160 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.12_C0161,-74.4543951,39.37428781,161 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.12_C0162,-74.57362213,39.53556217,162 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.12_C0163,-74.600138,39.4252905,163 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.12_C0164,-74.3577355,39.4127195,164 MATTIX RUN,GALLOWAY TWP,33,1985,1,RES1,3001 -0111_988.09_8.13_C0165,-74.500552,39.328599,165 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.13_C0166,-74.637956,39.532406,166 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.13_C0167,-74.62678079,39.4189212,167 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.13_C0168,-74.80509847,39.5534088,168 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.13_C0169,-74.52124064,39.32017054,169 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.13_C0170,-74.5854573,39.45803694,170 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.14_C0171,-74.80120141,39.53717168,171 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.14_C0172,-74.3902355,39.3897575,172 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.14_C0173,-74.65523451,39.52250833,173 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.14_C0174,-74.62935976,39.3631939,174 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.14_C0175,-74.4853115,39.336316,175 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.14_C0176,-74.640999,39.526466,176 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.15_C0177,-74.5508325,39.402808,177 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.15_C0178,-74.638465,39.4285,178 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.15_C0179,-74.58773557,39.48795914,179 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.15_C0180,-74.59334435,39.31383766,180 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.15_C0181,-74.54394117,39.38905602,181 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.15_C0182,-74.59190836,39.3780087,182 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.15_C0183,-74.55052082,39.46609583,183 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.15_C0184,-74.39153063,39.39117436,184 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.16_C0193,-74.62261055,39.31462296,193 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.16_C0194,-74.6354695,39.3503065,194 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.16_C0195,-74.50436649,39.33521116,195 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.16_C0196,-74.3705755,39.40155,196 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.16_C0197,-74.518338,39.3908435,197 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.16_C0198,-74.50950184,39.32659,198 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.17_C0199,-74.510381,39.407135,199 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.17_C0200,-74.60594266,39.49149095,200 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.17_C0201,-74.61377233,39.47612602,201 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.17_C0202,-74.77410641,39.62887575,202 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.17_C0203,-74.83735645,39.59272233,203 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.17_C0204,-74.79747805,39.66214134,204 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.18_C0205,-74.668543,39.3645685,205 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.18_C0206,-74.52120952,39.38999432,206 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.18_C0207,-74.5698265,39.4897015,207 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.18_C0208,-74.5068405,39.4615125,208 MATTIX RUN,GALLOWAY TWP,25,1985,1,GOV1,3004 -0111_988.09_8.18_C0209,-74.81702599,39.63289433,209 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.18_C0210,-74.45926295,39.4812349,210 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.19_C0185,-74.443114,39.371781,185 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.19_C0186,-74.7081315,39.4991085,186 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.19_C0187,-74.5784005,39.4072175,187 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.19_C0188,-74.49540068,39.38103017,188 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.19_C0189,-74.4610635,39.4686905,189 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.19_C0190,-74.65076917,39.52906433,190 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.19_C0191,-74.61200379,39.37428809,191 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.19_C0192,-74.59870608,39.37913324,192 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.20_C0211,-74.5857475,39.349608,211 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.20_C0212,-74.60587363,39.4827877,212 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.20_C0213,-74.72088767,39.57639951,213 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.20_C0214,-74.78988359,39.54879288,214 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.20_C0215,-74.80719888,39.64185894,215 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.20_C0216,-74.58780817,39.50311836,216 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.20_C0217,-74.4229865,39.37255633,217 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.20_C0218,-74.5612835,39.5064815,218 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.21_C0227,-74.502879,39.45462806,227 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.21_C0228,-74.7403425,39.6610185,228 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.21_C0229,-74.5244065,39.399814,229 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.21_C0230,-74.6411295,39.393824,230 MATTIX RUN,GALLOWAY TWP,35,1985,1,COM3,3004 -0111_988.09_8.21_C0231,-74.45106522,39.3733734,231 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.21_C0232,-74.714683,39.4686315,232 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.21_C0233,-74.80483391,39.64920912,233 MATTIX RUN,GALLOWAY TWP,35,1985,1,COM1,3004 -0111_988.09_8.21_C0234,-74.8503415,39.552004,234 MATTIX RUN,GALLOWAY TWP,35,1985,1,COM1,3004 -0111_988.09_8.22_C0241,-74.606171,39.4922975,241 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.22_C0242,-74.8774779,39.5963226,242 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.22_C0243,-74.624489,39.3798875,243 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.22_C0244,-74.80745809,39.62198399,244 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.22_C0245,-74.43599915,39.48874395,245 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.22_C0246,-74.6421,39.43309465,246 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.22_C0247,-74.82072788,39.37099742,247 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.22_C0248,-74.36998512,39.4084513,248 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.23_C0249,-74.483439,39.340305,249 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.23_C0250,-74.4619995,39.3575275,250 MATTIX RUN,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.09_8.23_C0251,-74.55866965,39.39769838,251 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.23_C0252,-74.37496411,39.41828622,252 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.23_C0253,-74.3831195,39.39343708,253 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.23_C0254,-74.48852127,39.33557567,254 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.23_C0255,-74.5152805,39.328218,255 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.23_C0256,-74.56271235,39.37365023,256 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.24_C0263,-74.80277706,39.64114566,263 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.24_C0264,-74.5988792,39.49426806,264 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.24_C0265,-74.51824549,39.39418683,265 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.24_C0266,-74.528785,39.4542215,266 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.24_C0267,-74.71005,39.4369605,267 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.24_C0268,-74.51261348,39.44336466,268 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.24_C0269,-74.539891,39.469468,269 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.24_C0270,-74.9240505,39.4880805,270 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.25_C0271,-74.59427403,39.31423365,271 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.25_C0272,-74.6047835,39.4108595,272 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.25_C0273,-74.3594585,39.4136345,273 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.25_C0274,-74.48521493,39.34556516,274 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.25_C0275,-74.86071837,39.43598181,275 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.25_C0276,-74.48210013,39.53875229,276 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.25_C0277,-74.5726322,39.34883772,277 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.25_C0278,-74.58466355,39.33295382,278 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.26_C0285,-74.7508755,39.448854,285 MATTIX RUN,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.09_8.26_C0286,-74.49921144,39.41134597,286 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.26_C0287,-74.5765698,39.41644797,287 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.26_C0288,-74.57958865,39.52833128,288 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.26_C0289,-74.78664662,39.65997376,289 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.26_C0290,-74.45704671,39.35163718,290 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.26_C0291,-74.75415348,39.43206916,291 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.26_C0292,-74.35767816,39.41317902,292 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.27_C0301,-74.53309355,39.37888753,301 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.27_C0302,-74.63522614,39.52237335,302 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.27_C0303,-74.50181557,39.33077735,303 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.27_C0304,-74.62082216,39.38260299,304 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.27_C0305,-74.59499224,39.36306813,305 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.27_C0306,-74.43761214,39.36640452,306 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.27_C0307,-74.47145084,39.45214901,307 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.27_C0308,-74.48189217,39.33624599,308 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.28_C0309,-74.493204,39.334894,309 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.28_C0310,-74.8988305,39.5376905,310 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.28_C0311,-74.57347491,39.34872019,311 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.28_C0312,-74.605268,39.322372,312 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.28_C0313,-74.665984,39.4634635,313 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.28_C0314,-74.37368206,39.41488109,314 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.28_C0315,-74.6069755,39.324483,315 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.28_C0316,-74.709885,39.5001025,316 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.29_C0219,-74.704912,39.5848745,219 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.29_C0220,-74.5227995,39.316668,220 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.29_C0221,-74.88941058,39.49899537,221 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.29_C0222,-74.55184097,39.3602599,222 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.29_C0223,-74.60062763,39.43622476,223 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.29_C0224,-74.48723,39.3383475,224 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.29_C0225,-74.60235931,39.40996447,225 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.29_C0226,-74.49804893,39.52229559,226 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.30_C0235,-74.5568024,39.36714114,235 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.30_C0236,-74.53817477,39.47003091,236 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES3A,3001 -0111_988.09_8.30_C0237,-74.92162668,39.47735418,237 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.30_C0238,-74.49735332,39.44715095,238 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.30_C0239,-74.398758,39.394228,239 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.30_C0240,-74.58419469,39.36435435,240 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.31_C0257,-74.550419,39.3802555,257 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.31_C0258,-74.452031,39.4958235,258 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.31_C0259,-74.63664668,39.41200766,259 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.31_C0260,-74.474796,39.494074,260 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.31_C0261,-74.5825635,39.472766,261 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.31_C0262,-74.48366435,39.35478784,262 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.32_C0279,-74.85274518,39.61594611,279 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.32_C0280,-74.492433,39.3382205,280 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.32_C0281,-74.4826285,39.3407595,281 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.32_C0282,-74.48947387,39.33206834,282 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.32_C0283,-74.68895297,39.4481867,283 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.32_C0284,-74.55213391,39.47656272,284 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.33_C0293,-74.83348832,39.40235004,293 MATTIX RUN,GALLOWAY TWP,35,1985,1,GOV1,3004 -0111_988.09_8.33_C0294,-74.60010055,39.35980893,294 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.33_C0295,-74.43050518,39.49249439,295 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.33_C0296,-74.63023697,39.41849768,296 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.33_C0297,-74.47005309,39.48808381,297 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.33_C0298,-74.574847,39.3399195,298 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.33_C0299,-74.53914134,39.55027071,299 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.09_8.33_C0300,-74.52422556,39.31779868,300 MATTIX RUN,GALLOWAY TWP,35,1985,1,RES1,3001 -0111_988.10_15.01_C0101,-74.5848545,39.322752,7 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0102,-74.46694934,39.34521549,8 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0103,-74.53801524,39.38989491,9 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0104,-74.46890678,39.34223136,10 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0105,-74.37416283,39.41271292,11 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0106,-74.51072818,39.40675102,12 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0107,-74.5937955,39.3412365,4 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0108,-74.53803,39.4681985,5 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0109,-74.82586399,39.62752343,6 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0110,-74.540937,39.3836405,1 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0111,-74.77389696,39.67606217,2 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3004 -0111_988.10_15.01_C0112,-74.51097389,39.46215488,3 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0201,-74.9498994,39.5181943,31 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0202,-74.76613993,39.61426818,32 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0203,-74.5570755,39.3579125,33 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0204,-74.65449015,39.45628191,34 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0205,-74.479279,39.44004,35 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0206,-74.8838625,39.46282,36 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0207,-74.40612753,39.38149534,28 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0208,-74.514669,39.325836,29 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0209,-74.65099253,39.53341616,30 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0210,-74.6345862,39.5009083,22 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0211,-74.69908306,39.48604871,23 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0212,-74.3579015,39.4147625,24 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0213,-74.51558984,39.32917799,16 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0214,-74.60514,39.3703165,17 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0215,-74.36639051,39.41601575,18 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0216,-74.75465425,39.43008846,13 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0217,-74.516418,39.395788,14 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0218,-74.828026,39.4062375,15 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0219,-74.63585167,39.38175218,19 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0220,-74.508114,39.4460185,20 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0221,-74.43720569,39.51946682,21 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0222,-74.58314327,39.49564893,25 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0223,-74.45059163,39.35392617,26 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0224,-74.82542596,39.56944599,27 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0301,-74.547985,39.3759565,55 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0302,-74.5003515,39.4870505,56 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0303,-74.60620248,39.32653984,57 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0304,-74.48507044,39.43890178,58 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0305,-74.4718615,39.3442885,59 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0306,-74.54869964,39.38048617,60 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0307,-74.52801367,39.40155258,52 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0308,-74.56252664,39.36295911,53 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0309,-74.861297,39.487982,54 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0310,-74.55926591,39.36560211,46 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0311,-74.47439326,39.48772622,47 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0312,-74.503414,39.4147305,48 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0313,-74.55704135,39.38551672,40 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0314,-74.52742062,39.38149096,41 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0315,-74.693064,39.448254,42 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0316,-74.5571709,39.37104966,37 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0317,-74.5021395,39.3380205,38 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0318,-74.71634411,39.41385561,39 FEDERAL CT,GALLOWAY TWP,33,1986,1,AGR1,3001 -0111_988.10_15.01_C0319,-74.60154933,39.37130571,43 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0320,-74.79730379,39.61969618,44 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0321,-74.7464195,39.4001285,45 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0322,-74.49814875,39.43107748,49 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0323,-74.63980983,39.3803755,50 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0324,-74.39195491,39.38861986,51 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0401,-74.52434251,39.31552334,61 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0402,-74.8130755,39.6504845,62 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0403,-74.90885788,39.4936548,63 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0404,-74.74343073,39.414292,64 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3004 -0111_988.10_15.01_C0405,-74.58816,39.413562,65 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0406,-74.43048119,39.36536067,66 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0407,-74.759823,39.640243,70 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0408,-74.601839,39.480355,71 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0409,-74.60285408,39.31887872,72 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0410,-74.62890657,39.43168297,67 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0411,-74.477861,39.339105,68 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0412,-74.4792585,39.347639,69 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0501,-74.83189491,39.64492689,73 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0502,-74.77960391,39.6340203,74 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0503,-74.49815375,39.33884368,75 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0504,-74.81934025,39.63966954,76 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0505,-74.451963,39.353537,77 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0506,-74.46293609,39.35713819,78 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0507,-74.78159791,39.45574368,82 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0508,-74.63280203,39.35119883,83 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0509,-74.38125522,39.39609087,84 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0510,-74.52981717,39.43210805,88 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0511,-74.5199675,39.450934,89 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0512,-74.63295256,39.34651553,90 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0513,-74.74464651,39.43876881,94 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0514,-74.57364963,39.37156185,95 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0515,-74.507444,39.330697,96 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0516,-74.8081415,39.630698,91 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0517,-74.54119,39.384579,92 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0518,-74.552303,39.3804465,93 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0519,-74.62972096,39.44477658,85 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0520,-74.8310468,39.36256002,86 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0521,-74.6536305,39.356813,87 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0522,-74.43758531,39.36995033,79 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0523,-74.50233667,39.32567998,80 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0524,-74.8941635,39.480305,81 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0601,-74.51329064,39.32758314,97 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0602,-74.711888,39.466558,98 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0603,-74.514292,39.409843,99 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0604,-74.85563894,39.56798217,100 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0605,-74.874929,39.4590255,101 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0606,-74.5879465,39.4002725,102 FEDERAL CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0607,-74.88316,39.562671,106 FEDERAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.01_C0608,-74.45657298,39.48450069,107 FEDERAL CT,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_988.10_15.01_C0609,-74.83046439,39.600713,108 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0610,-74.481565,39.440563,112 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0611,-74.635061,39.349855,113 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0612,-74.496503,39.332634,114 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0613,-74.5099285,39.3328925,118 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0614,-74.62546433,39.39369056,119 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0615,-74.68980536,39.35591131,120 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0616,-74.613922,39.3121275,115 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0617,-74.55002941,39.46337363,116 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0618,-74.417246,39.3688405,117 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0619,-74.53190482,39.38832258,109 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0620,-74.819924,39.6209945,110 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0621,-74.53811804,39.46350135,111 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0622,-74.456224,39.349687,103 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0623,-74.59827141,39.35944608,104 FEDERAL CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0624,-74.54324545,39.56710034,105 FEDERAL CT,GALLOWAY TWP,33,1986,1,COM3,3004 -0111_988.10_15.01_C0701,-74.69503995,39.49021535,5 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0702,-74.84217538,39.58554598,6 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0703,-74.7942268,39.63495913,7 LIBERTY CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C0704,-74.65295984,39.62361803,8 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0705,-74.66787939,39.38808478,3 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0706,-74.5549065,39.3996565,4 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0707,-74.59787336,39.33003217,1 LIBERTY CT,GALLOWAY TWP,33,1983,1,RES1,3001 -0111_988.10_15.01_C0708,-74.529799,39.455662,2 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0801,-74.8854705,39.462721,9 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0802,-74.9242079,39.50710753,10 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0803,-74.493684,39.4343875,11 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0804,-74.62934713,39.4157329,12 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0805,-74.46442871,39.46948216,15 LIBERTY CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.01_C0806,-74.50696215,39.44395735,16 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0807,-74.55321068,39.38366674,13 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0808,-74.6285495,39.417823,14 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0901,-74.83763947,39.48642868,21 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0902,-74.52061067,39.39645517,22 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0903,-74.62099477,39.43520044,23 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0904,-74.807694,39.632544,24 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0905,-74.6439465,39.5432345,19 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0906,-74.80286658,39.62627395,20 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0907,-74.70279166,39.447836,17 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C0908,-74.53220254,39.37672483,18 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1001,-74.40440025,39.38095531,25 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1002,-74.81997935,39.38700957,26 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1003,-74.49621439,39.49379228,27 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1004,-74.48052828,39.34060789,28 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1005,-74.5011662,39.33673354,31 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1006,-74.39193648,39.39194279,32 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1007,-74.597238,39.49884,29 LIBERTY CT,GALLOWAY TWP,33,1986,1,COM8,3004 -0111_988.10_15.01_C1008,-74.561173,39.414118,30 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1101,-74.57644187,39.35458818,37 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1102,-74.57508732,39.35597699,38 LIBERTY CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.01_C1103,-74.806702,39.6296845,39 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1104,-74.79599151,39.59898983,40 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1105,-74.45461666,39.35239851,35 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1106,-74.79042441,39.63133299,36 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1107,-74.6576245,39.5754595,33 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1108,-74.51538838,39.32177909,34 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1201,-74.490074,39.4192345,45 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1202,-74.51987332,39.32197838,46 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1203,-74.61545875,39.4383805,47 LIBERTY CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C1204,-74.49974707,39.42566577,48 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1205,-74.48016215,39.33615885,43 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1206,-74.56285723,39.42144292,44 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1207,-74.9125263,39.5347542,41 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1208,-74.7373295,39.449962,42 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1301,-74.78722933,39.62421448,49 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1302,-74.558662,39.5186915,50 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1303,-74.666279,39.4623425,51 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1304,-74.44889867,39.49239054,52 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1305,-74.48958716,39.33422801,55 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1306,-74.61607295,39.30886477,56 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1307,-74.81204043,39.64245566,53 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1308,-74.51659809,39.32298389,54 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1401,-74.47824638,39.47805269,61 LIBERTY CT,GALLOWAY TWP,33,1986,1,IND2,3002 -0111_988.10_15.01_C1402,-74.4562275,39.505266,62 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1403,-74.49262381,39.33945795,63 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1404,-74.83015604,39.56752418,64 LIBERTY CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C1405,-74.81922542,39.36738253,59 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1406,-74.60058885,39.49916495,60 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES3A,3001 -0111_988.10_15.01_C1407,-74.50044232,39.41022343,57 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1408,-74.65281384,39.52891601,58 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1501,-74.54090456,39.37355735,65 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1502,-74.60317608,39.38430931,66 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1503,-74.59083286,39.33497568,67 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1504,-74.38655644,39.39167184,68 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1505,-74.51574952,39.32397388,71 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1506,-74.825751,39.646283,72 LIBERTY CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C1507,-74.7255425,39.59029,69 LIBERTY CT,GALLOWAY TWP,33,1986,1,COM1,3004 -0111_988.10_15.01_C1508,-74.50521562,39.33780398,70 LIBERTY CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C1601,-74.77889123,39.60827712,77 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1602,-74.8735685,39.59678,78 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1603,-74.51044113,39.40058482,79 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1604,-74.65006426,39.53198569,80 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3004 -0111_988.10_15.01_C1605,-74.64302262,39.37921431,75 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1606,-74.62931523,39.61345811,76 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1607,-74.90231226,39.48119348,73 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1608,-74.77786226,39.49720901,74 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1701,-74.67383972,39.35376257,81 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1702,-74.49819278,39.42975646,82 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1703,-74.6099985,39.3254215,83 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1704,-74.50288304,39.41719281,84 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1705,-74.59471809,39.35683752,87 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1706,-74.44966477,39.37298475,88 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1707,-74.53716643,39.39754369,85 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1708,-74.69237974,39.5594853,86 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1801,-74.63603857,39.36297674,93 LIBERTY CT,GALLOWAY TWP,33,1986,1,COM1,3004 -0111_988.10_15.01_C1802,-74.499994,39.4298505,94 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1803,-74.6014885,39.4344615,95 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1804,-74.930172,39.483477,96 LIBERTY CT,GALLOWAY TWP,33,1986,1,COM4,3004 -0111_988.10_15.01_C1805,-74.78842327,39.63155746,91 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1806,-74.80914608,39.64063484,92 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1807,-74.6124905,39.3911015,89 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1808,-74.50041291,39.43209231,90 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1901,-74.36578384,39.40806378,97 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1902,-74.942132,39.504619,98 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1903,-74.37051835,39.40762348,99 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1904,-74.3685515,39.4039255,100 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1905,-74.3834025,39.396576,103 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1906,-74.83977998,39.53186957,104 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1907,-74.4331135,39.3652355,101 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C1908,-74.585164,39.3751425,102 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2001,-74.55363952,39.35791283,109 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2002,-74.523408,39.4586455,110 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2003,-74.8656195,39.5381835,111 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2004,-74.56582174,39.36811777,112 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2005,-74.80285059,39.46791233,107 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2006,-74.53743129,39.37857317,108 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2007,-74.3624865,39.417043,105 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2008,-74.53729558,39.46682028,106 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2101,-74.62371965,39.417389,117 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2102,-74.59180254,39.32100883,118 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2103,-74.42391484,39.37172311,119 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2104,-74.93545723,39.52222412,120 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2105,-74.55387868,39.39294926,115 LIBERTY CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C2106,-74.82250634,39.62111097,116 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2107,-74.55121336,39.36658168,113 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2108,-74.65361267,39.53563245,114 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2201,-74.5481642,39.37404284,121 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2202,-74.635759,39.528662,122 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2203,-74.470505,39.341124,123 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2204,-74.48744184,39.45568749,124 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2205,-74.51579266,39.33021402,127 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2206,-74.5099225,39.330355,128 LIBERTY CT,GALLOWAY TWP,33,1986,1,GOV1,3004 -0111_988.10_15.01_C2207,-74.4245575,39.365966,125 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2208,-74.7953875,39.6387405,126 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2301,-74.46294886,39.49925368,133 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2302,-74.49710716,39.49933392,134 LIBERTY CT,GALLOWAY TWP,33,1986,1,IND2,3002 -0111_988.10_15.01_C2303,-74.59880229,39.32930516,135 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2304,-74.79611114,39.65337587,136 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3002 -0111_988.10_15.01_C2305,-74.862028,39.4487805,131 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2306,-74.55399292,39.43520566,132 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2307,-74.63373072,39.52364254,129 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2308,-74.45759921,39.34953645,130 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2401,-74.85656266,39.56222354,137 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2402,-74.8321887,39.42614697,138 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2403,-74.53504977,39.49017044,139 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2404,-74.355947,39.415215,140 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2405,-74.52065504,39.38842182,143 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2406,-74.371327,39.404336,144 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2407,-74.36249474,39.4148805,141 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2408,-74.6099273,39.36552614,142 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2501,-74.51782116,39.45770172,149 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2502,-74.7870715,39.66074,150 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2503,-74.67280574,39.49544461,151 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2504,-74.6527305,39.409137,152 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2505,-74.51876352,39.38399765,147 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2506,-74.61259346,39.4125227,148 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2507,-74.69037415,39.65480448,145 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.01_C2508,-74.467821,39.345479,146 LIBERTY CT,GALLOWAY TWP,33,1986,1,RES1,3001 -0111_988.10_15.02_C2601,-74.56879505,39.37483911,236 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2602,-74.3669655,39.4086995,235 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2603,-74.49725316,39.46687556,234 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2604,-74.9737665,39.509351,233 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2605,-74.71245883,39.470269,232 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2606,-74.5137435,39.325363,231 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2701,-74.50331286,39.32570128,230 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2702,-74.83797305,39.53604524,229 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2703,-74.63158059,39.52134955,228 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2704,-74.49558667,39.3333515,227 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2705,-74.62657137,39.42045618,226 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2706,-74.48347375,39.51903856,225 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2707,-74.7451445,39.445466,224 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2708,-74.82435002,39.56922917,223 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2801,-74.52454567,39.5282915,215 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2802,-74.5834186,39.50187149,216 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2803,-74.49836474,39.49915984,217 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2804,-74.54528525,39.39493385,218 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2805,-74.8595545,39.4794285,219 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2806,-74.51579874,39.32050383,220 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2807,-74.44855857,39.35221681,221 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2808,-74.49915048,39.33256074,222 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2901,-74.517955,39.320319,214 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2902,-74.59275466,39.33473823,213 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2903,-74.60724632,39.39602141,212 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2904,-74.57412986,39.34763916,211 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2905,-74.369333,39.4139355,210 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C2906,-74.501326,39.468107,209 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3001,-74.42228933,39.37290433,203 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3002,-74.80782385,39.64288465,204 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3003,-74.65074612,39.62801575,205 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3004,-74.45944037,39.35025797,206 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3005,-74.922726,39.5212855,207 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3006,-74.56881175,39.4136265,208 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3101,-74.51940403,39.44032698,202 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3102,-74.925994,39.484008,201 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3103,-74.503052,39.4630995,200 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3104,-74.54728993,39.37872566,199 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3107,-74.65133116,39.53318002,196 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3108,-74.50327901,39.33006229,195 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3201,-74.56533831,39.47992454,194 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3202,-74.53988435,39.35493099,193 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3203,-74.45920064,39.35190053,192 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3204,-74.9387819,39.54661808,191 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3205,-74.37977056,39.39764018,190 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3206,-74.6187685,39.3759555,189 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3207,-74.461339,39.348824,188 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3208,-74.55992004,39.3706776,187 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3301,-74.621616,39.36968424,186 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3302,-74.92982,39.532885,185 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3303,-74.76747562,39.61280909,184 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3304,-74.57400779,39.35198847,183 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3305,-74.51527034,39.40357801,182 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3306,-74.5586705,39.4722035,181 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3401,-74.50749588,39.44700273,175 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3402,-74.7983065,39.6385585,176 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3403,-74.53272,39.384777,177 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3404,-74.46177568,39.34935298,178 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3405,-74.505921,39.328148,179 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3406,-74.7991705,39.643466,180 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3501,-74.63564585,39.30781995,174 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3502,-74.6562985,39.4326775,173 PATRIOTS CT,GALLOWAY TWP,35,1986,1,COM1,3004 -0111_988.10_15.02_C3503,-74.4183505,39.367616,172 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3504,-74.80807623,39.49439294,171 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3505,-74.9085345,39.49476,170 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3506,-74.513724,39.409454,169 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3601,-74.49844306,39.32780319,161 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3602,-74.6061875,39.325255,162 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3603,-74.4814265,39.3527115,163 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3604,-74.37044587,39.41802931,164 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3605,-74.83687665,39.37245033,165 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3606,-74.54126677,39.37333044,166 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3607,-74.68939973,39.44714916,167 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3608,-74.76659,39.349487,168 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3701,-74.6068885,39.346384,160 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3702,-74.5353035,39.383616,159 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3703,-74.47977208,39.33663017,158 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3704,-74.56519283,39.54324901,157 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3705,-74.81849585,39.65368882,156 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3706,-74.5153195,39.3273485,155 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3707,-74.634622,39.6124535,154 PATRIOTS CT,GALLOWAY TWP,35,1986,1,RES1,3001 -0111_988.10_15.02_C3708,-74.9514125,39.513393,153 PATRIOTS CT,GALLOWAY TWP,35,1986,1,GOV1,3004 -0111_988.10_15.03,-74.50939533,39.32199652,170 COLONIAL CT,GALLOWAY TWP,,1987,1,RES1,3001 -0111_988.10_15.03_C0001,-74.63983088,39.36540103,1 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0002,-74.44421954,39.37005768,2 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0003,-74.5432265,39.381999,3 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0004,-74.680027,39.6358155,4 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0005,-74.63246792,39.4398163,5 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0006,-74.5509965,39.377306,6 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0007,-74.57555503,39.34887864,7 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0008,-74.7984625,39.650048,8 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0009,-74.59575866,39.34502478,9 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0010,-74.50486768,39.40949252,10 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0011,-74.60139147,39.31446318,11 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0012,-74.50505562,39.45330648,12 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0013,-74.50034635,39.44127271,13 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0014,-74.73020273,39.45445837,14 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0015,-74.5426935,39.3891745,15 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0016,-74.48541,39.3464665,16 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0017,-74.57477447,39.33397634,17 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0018,-74.56689884,39.3427145,18 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0019,-74.58021317,39.36003931,19 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0020,-74.56505928,39.37098803,20 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0021,-74.55660664,39.36021148,21 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0022,-74.59272842,39.42844771,22 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0023,-74.80691777,39.63625168,23 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0024,-74.5666395,39.427466,24 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0025,-74.55089385,39.47520389,25 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0026,-74.48356167,39.34632248,26 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0027,-74.4659275,39.344838,27 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0028,-74.47288832,39.48278536,28 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0029,-74.4645855,39.3462765,29 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0030,-74.51559407,39.32936834,30 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0031,-74.4956842,39.42675657,31 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0032,-74.570589,39.412765,32 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0033,-74.36105398,39.41193033,33 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0034,-74.874452,39.593587,34 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0035,-74.82920183,39.56816201,35 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0036,-74.566408,39.361473,36 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0037,-74.604785,39.3189255,37 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0038,-74.5998785,39.358805,38 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0039,-74.50424958,39.33026066,39 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0040,-74.66336651,39.44350196,40 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0041,-74.50798173,39.46016739,41 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0042,-74.66590559,39.36264684,42 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0043,-74.8180285,39.360689,43 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0044,-74.57017971,39.36707453,44 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0045,-74.55184783,39.402684,45 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0046,-74.75816657,39.44630893,46 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0047,-74.59748058,39.41728196,47 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0048,-74.36333082,39.41172739,48 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0049,-74.63127597,39.35369968,49 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0050,-74.49815717,39.33764598,50 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0051,-74.494558,39.4252375,51 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0052,-74.44103713,39.37009846,52 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0053,-74.593771,39.319725,53 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0054,-74.4940627,39.42782159,54 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0055,-74.57938796,39.44729745,55 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0056,-74.61369766,39.32480503,56 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0057,-74.51287102,39.33117529,57 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0058,-74.6193365,39.390855,58 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0059,-74.55868169,39.37583479,59 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0060,-74.67350703,39.38870786,60 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0061,-74.66658236,39.49558705,61 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0062,-74.67712572,39.41275165,62 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0063,-74.60277034,39.32470804,63 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0064,-74.59768284,39.33017248,64 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0065,-74.59199238,39.53546038,65 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0066,-74.54798688,39.47587322,66 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0067,-74.3720745,39.4013825,67 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0068,-74.647156,39.376781,68 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0069,-74.60610454,39.36540586,69 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0070,-74.59993436,39.51929372,70 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0071,-74.5565159,39.39978396,71 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0072,-74.81993347,39.40971333,72 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0073,-74.5485215,39.373649,73 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0074,-74.36607229,39.41547643,74 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0075,-74.38145296,39.39742366,75 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0076,-74.78423143,39.66031966,76 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0077,-74.61074903,39.3485655,77 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0078,-74.54075,39.409535,78 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0079,-74.3791995,39.4006265,79 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0080,-74.5379475,39.472854,80 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0081,-74.53781921,39.46474277,81 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0082,-74.6265345,39.4391245,82 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0083,-74.72938109,39.4568347,83 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0084,-74.46811655,39.45697381,84 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0085,-74.51761007,39.38893281,85 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0086,-74.75806916,39.30025052,86 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0087,-74.3686405,39.40513,87 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0088,-74.794358,39.6344435,88 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0089,-74.5360115,39.3796095,89 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0090,-74.60502432,39.41350986,90 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0091,-74.51037776,39.33548872,91 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0092,-74.45037899,39.37141917,92 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0093,-74.5792215,39.42986,93 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0094,-74.92119276,39.49371694,94 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0095,-74.756114,39.431844,95 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0096,-74.63213575,39.35263032,96 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0097,-74.48356927,39.34570718,97 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0098,-74.530418,39.3085725,98 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0099,-74.7808045,39.6428405,99 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0100,-74.60061241,39.32156783,100 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0101,-74.8345604,39.53389025,101 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0102,-74.62690856,39.53020865,102 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0103,-74.47059932,39.48966955,103 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0104,-74.56043456,39.4694273,104 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0105,-74.53194151,39.38875782,105 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0106,-74.49636094,39.45169899,106 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0107,-74.911854,39.511286,107 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0108,-74.522584,39.3216245,108 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0109,-74.70603365,39.41843438,109 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0110,-74.605653,39.414187,110 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0111,-74.3852915,39.392682,111 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0112,-74.49233816,39.33949695,112 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0113,-74.797316,39.6397735,113 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0114,-74.835226,39.5047405,114 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0115,-74.68315607,39.63512679,115 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0116,-74.538385,39.4765045,116 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0117,-74.62709775,39.5573815,117 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0118,-74.630508,39.608729,118 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0119,-74.61347467,39.48883399,119 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0120,-74.53184147,39.48976764,120 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0121,-74.58942265,39.37834728,121 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0122,-74.44903523,39.4898362,122 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0123,-74.5083145,39.447073,123 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0124,-74.4949405,39.3337295,124 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0125,-74.61222028,39.31844639,125 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0126,-74.93281265,39.52062205,126 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0127,-74.63000347,39.34988155,127 COLONIAL CT,GALLOWAY TWP,33,1987,1,IND1,3002 -0111_988.10_15.03_C0128,-74.5145955,39.5353395,128 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0129,-74.77668422,39.44394947,129 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0130,-74.68915564,39.49938744,130 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0131,-74.75514425,39.44532249,131 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0132,-74.62223159,39.42058072,132 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0133,-74.75791476,39.43196762,133 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0134,-74.5319925,39.4691975,134 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3B,3001 -0111_988.10_15.03_C0135,-74.79985817,39.4322887,135 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0136,-74.52444293,39.40297684,136 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0137,-74.498157,39.4349885,137 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0138,-74.48314378,39.42973336,138 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0139,-74.49304283,39.33049406,139 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0140,-74.52934683,39.38710494,140 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0141,-74.49901466,39.33728158,141 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0142,-74.77682916,39.65764048,142 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0143,-74.47228616,39.44366198,143 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0144,-74.63260646,39.43346013,144 COLONIAL CT,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.10_15.03_C0145,-74.55742298,39.36795517,145 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0146,-74.60228732,39.31971744,146 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0147,-74.37633892,39.41631744,147 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0148,-74.7697887,39.61535424,148 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0149,-74.49376065,39.49890562,149 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0150,-74.53157764,39.38823702,150 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0151,-74.54694313,39.47158278,151 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.10_15.03_C0152,-74.569929,39.412366,152 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0153,-74.71600415,39.57761905,153 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0154,-74.58157508,39.34002475,154 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0155,-74.46139211,39.48990176,155 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0156,-74.3702245,39.40555,156 COLONIAL CT,GALLOWAY TWP,33,1987,1,COM4,3004 -0111_988.10_15.03_C0157,-74.91686265,39.5168573,157 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0158,-74.62968485,39.36433798,158 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0159,-74.45791217,39.47404199,159 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0160,-74.723241,39.4375335,160 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0161,-74.47896172,39.47942253,161 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0162,-74.8680975,39.4956275,162 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0163,-74.5301565,39.380611,163 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0164,-74.73541882,39.45236947,164 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3004 -0111_988.10_15.03_C0165,-74.51127252,39.44149759,165 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0166,-74.51367178,39.32702917,166 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.10_15.03_C0167,-74.57969267,39.41847251,167 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0168,-74.58997523,39.38088146,168 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0171,-74.52342348,39.38945476,171 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0172,-74.63839978,39.38939165,172 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0173,-74.78853598,39.38203283,173 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0174,-74.5588895,39.3716145,174 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0175,-74.4930975,39.3312995,175 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0176,-74.794109,39.6391875,176 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0177,-74.594307,39.3499185,177 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0178,-74.82966705,39.4230327,178 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0179,-74.64926745,39.35466634,179 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0180,-74.488057,39.334971,180 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0181,-74.8259177,39.64064251,181 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0182,-74.59866366,39.43067132,182 COLONIAL CT,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.10_15.03_C0183,-74.62101985,39.49255404,183 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0184,-74.71259782,39.58295497,184 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0185,-74.57494765,39.35885078,185 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0186,-74.64364318,39.43240535,186 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0187,-74.551185,39.3791045,187 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0188,-74.443784,39.3555025,188 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0189,-74.8726155,39.59576,189 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0190,-74.52007768,39.3909834,190 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0191,-74.5866295,39.3837365,191 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0192,-74.61115641,39.36860577,192 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0193,-74.37830978,39.41505233,193 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0194,-74.49840251,39.46893623,194 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0195,-74.5827075,39.4322405,195 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0196,-74.60277744,39.36479681,196 COLONIAL CT,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_988.10_15.03_C0197,-74.49633134,39.53761002,197 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0198,-74.52079194,39.40372445,198 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0199,-74.574598,39.422262,199 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0200,-74.5615145,39.4127545,200 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0201,-74.7353915,39.438484,201 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0202,-74.64968533,39.41310554,202 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0203,-74.911488,39.5144725,203 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0204,-74.49677784,39.33366897,204 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0205,-74.50047577,39.49711712,205 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0206,-74.571694,39.4130155,206 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0207,-74.877592,39.4744455,207 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0208,-74.50839172,39.41897954,208 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0209,-74.49680242,39.3372623,209 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0210,-74.82458735,39.54623081,210 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0211,-74.50687642,39.32320484,211 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0212,-74.5934101,39.31650337,212 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0213,-74.629146,39.415405,213 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0214,-74.77488775,39.30183217,214 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0215,-74.48622667,39.33535799,215 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0216,-74.516888,39.402148,216 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.10_15.03_C0217,-74.78838481,39.67673032,217 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0218,-74.61650602,39.34004154,218 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0219,-74.57236851,39.37163759,219 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0220,-74.5415025,39.458645,220 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0221,-74.7312473,39.46406915,221 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0222,-74.46225385,39.35852131,222 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0223,-74.576682,39.343092,223 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0224,-74.632003,39.3556485,224 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0225,-74.60735,39.390535,225 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0226,-74.780152,39.6346535,226 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0227,-74.4702268,39.48794226,227 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0228,-74.44412616,39.51551768,228 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0229,-74.58884785,39.49131253,229 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0230,-74.63926995,39.52839207,230 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0231,-74.50774898,39.40877044,231 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0232,-74.86503235,39.43084335,232 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0233,-74.76861122,39.61573011,233 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0234,-74.92045429,39.53181056,234 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0235,-74.67840278,39.41345147,235 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0236,-74.66806567,39.46212202,236 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0237,-74.96066662,39.52905876,237 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0238,-74.7145305,39.58408,238 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0239,-74.7939285,39.3753175,239 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0240,-74.63609735,39.59625254,240 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0241,-74.953837,39.5337025,241 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.10_15.03_C0242,-74.50606756,39.33183917,242 COLONIAL CT,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04,-74.52621464,39.46513325,57 GREENWICH DR,GALLOWAY TWP,,1987,1,RES1,3001 -0111_988.11_15.04_C0101,-74.62627633,39.3553819,1 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C0102,-74.43652504,39.36960418,2 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0103,-74.81171978,39.64427071,3 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0104,-74.48072513,39.43889863,4 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0105,-74.61164384,39.32698846,7 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0106,-74.51573815,39.3987047,8 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0107,-74.58956837,39.37800369,5 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C0108,-74.623301,39.423541,6 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0201,-74.79230867,39.6763181,13 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0202,-74.5549295,39.4062075,14 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C0203,-74.5079316,39.33124284,15 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0204,-74.7599663,39.44530605,16 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C0205,-74.840769,39.374493,11 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0206,-74.93899306,39.52160668,12 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0207,-74.83502379,39.63005983,9 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0208,-74.79043127,39.51833218,10 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C0301,-74.61272432,39.42685633,17 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C0302,-74.447777,39.3726605,18 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0303,-74.64746198,39.53129517,19 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0304,-74.6044228,39.41009856,20 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C0305,-74.48638984,39.3376418,23 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0306,-74.77898682,39.62616596,24 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0307,-74.50890383,39.44656001,21 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0308,-74.57370254,39.42017357,22 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C0401,-74.9319585,39.489728,29 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0402,-74.59341793,39.34830426,30 SUSSEX PL,GALLOWAY TWP,33,1987,1,COM5,3004 -0111_988.11_15.04_C0403,-74.633513,39.3651445,31 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0404,-74.39103221,39.38847533,32 SUSSEX PL,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_988.11_15.04_C0405,-74.8736095,39.600276,27 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3B,3001 -0111_988.11_15.04_C0406,-74.7357465,39.6282265,28 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0407,-74.502901,39.3273415,25 SUSSEX PL,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_988.11_15.04_C0408,-74.429224,39.365721,26 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C0501,-74.5789163,39.34075384,33 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0502,-74.88492062,39.58532081,34 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0503,-74.42658502,39.36163113,35 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0504,-74.48873562,39.42255182,36 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0505,-74.4019675,39.3863865,39 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0506,-74.46319764,39.34797815,40 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0507,-74.77699339,39.59570976,37 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C0508,-74.50321738,39.4088243,38 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C0601,-74.6666995,39.358302,45 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0602,-74.541232,39.503065,46 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0603,-74.51753412,39.41501592,47 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0604,-74.45210271,39.34865282,48 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0605,-74.55154368,39.36493032,43 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C0606,-74.7186075,39.441309,44 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0607,-74.591731,39.3117975,41 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0608,-74.93264,39.502535,42 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0701,-74.7760355,39.602588,49 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0702,-74.53443022,39.30591637,50 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0703,-74.709996,39.42237,51 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0704,-74.70829,39.49920183,52 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0705,-74.509406,39.3392525,55 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C0706,-74.59069868,39.3300463,56 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3B,3001 -0111_988.11_15.04_C0707,-74.484678,39.4795355,53 SUSSEX PL,GALLOWAY TWP,33,1987,1,COM4,3004 -0111_988.11_15.04_C0708,-74.53871848,39.54992116,54 SUSSEX PL,GALLOWAY TWP,33,1987,1,COM4,3004 -0111_988.11_15.04_C0801,-74.62625827,39.44015154,61 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0802,-74.7251475,39.453688,62 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0803,-74.53629678,39.4579609,63 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C0804,-74.57323517,39.33867401,64 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C0805,-74.60084062,39.40904631,59 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0806,-74.61518766,39.31640577,60 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0807,-74.67148894,39.54184535,57 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0808,-74.623552,39.4395655,58 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0901,-74.63132962,39.35068799,65 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0902,-74.56811441,39.34766528,66 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0903,-74.45467058,39.35248281,67 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0904,-74.87815709,39.59632892,68 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3002 -0111_988.11_15.04_C0905,-74.51131517,39.53441483,71 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0906,-74.51018205,39.46552466,72 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C0907,-74.72707774,39.46060839,69 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C0908,-74.540257,39.5499945,70 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1001,-74.5517005,39.4700585,78 SUSSEX PL,GALLOWAY TWP,35,1987,1,RES1,3002 -0111_988.11_15.04_C1002,-74.61053534,39.34470133,77 SUSSEX PL,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1003,-74.44110852,39.37168518,76 SUSSEX PL,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1004,-74.5987245,39.3185755,75 SUSSEX PL,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1005,-74.55717932,39.39744817,74 SUSSEX PL,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1006,-74.62009783,39.36593806,73 SUSSEX PL,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1101,-74.4993719,39.51405232,79 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1102,-74.63001488,39.41421497,80 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1103,-74.82787676,39.49352791,81 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1104,-74.50563933,39.33137569,82 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1105,-74.49144443,39.37777318,85 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1106,-74.508133,39.494555,86 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1107,-74.522344,39.396393,83 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1108,-74.4346255,39.3629365,84 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1201,-74.53439417,39.41004412,87 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1202,-74.51443938,39.39595468,88 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1203,-74.46584058,39.34475117,89 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1204,-74.55897718,39.47342777,90 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1205,-74.598941,39.38078906,93 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1206,-74.500286,39.411837,94 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1207,-74.51226404,39.41404776,91 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C1208,-74.69350621,39.63298056,92 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1301,-74.609579,39.364427,95 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1302,-74.43812496,39.36565819,96 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1303,-74.566015,39.3585,97 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1304,-74.60252991,39.43521023,98 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C1305,-74.41558487,39.36896573,99 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1306,-74.46195801,39.35595417,100 SUSSEX PL,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_988.11_15.04_C1307,-74.798198,39.6368,104 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1308,-74.62269181,39.4338591,105 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C1309,-74.5684375,39.4136435,106 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C1310,-74.67292878,39.36461829,110 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1311,-74.51291546,39.43137915,111 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1312,-74.7765113,39.63307993,112 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1313,-74.6326791,39.36622843,116 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1314,-74.61238087,39.31232764,117 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1315,-74.508408,39.3265305,118 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1316,-74.3640175,39.4094795,113 SUSSEX PL,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1317,-74.6155259,39.42928381,114 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1318,-74.50818228,39.42505363,115 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1319,-74.773992,39.617089,107 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1320,-74.65392571,39.34524972,108 SUSSEX PL,GALLOWAY TWP,33,1987,1,REL1,3004 -0111_988.11_15.04_C1321,-74.63702187,39.36098531,109 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1322,-74.87942341,39.56105866,101 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1323,-74.72592465,39.45201556,102 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C1324,-74.6118105,39.4216605,103 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1401,-74.3652495,39.4134045,131 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C1402,-74.56466518,39.47866746,132 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1403,-74.78078483,39.6216755,133 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1404,-74.600913,39.3648525,134 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1405,-74.5154855,39.395979,135 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1406,-74.48636968,39.34657344,136 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C1407,-74.55636539,39.39139218,140 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1408,-74.9499225,39.5188115,141 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1409,-74.88054082,39.59704759,142 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1410,-74.805939,39.651657,137 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1411,-74.8485605,39.482762,138 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1412,-74.76755366,39.49154901,139 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1501,-74.61394013,39.32520475,161 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1502,-74.50549927,39.49269556,162 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1503,-74.93638055,39.52728511,163 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1504,-74.51071642,39.32336767,164 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1505,-74.60018446,39.34200283,165 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1506,-74.88694985,39.47279108,166 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1507,-74.513445,39.399701,158 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1508,-74.53722258,39.38553897,159 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1509,-74.4873332,39.49346155,160 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1510,-74.3623842,39.415915,152 SUSSEX PL,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_988.11_15.04_C1511,-74.5001675,39.44307,153 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1512,-74.799983,39.6343785,154 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1513,-74.54191882,39.49381578,146 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1514,-74.52522515,39.39852499,147 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1515,-74.559704,39.3971725,148 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1516,-74.49320529,39.46497446,143 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1517,-74.490415,39.4197275,144 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1518,-74.4343445,39.365246,145 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1519,-74.53447328,39.38066832,149 SUSSEX PL,GALLOWAY TWP,33,1987,1,AGR1,3001 -0111_988.11_15.04_C1520,-74.67829633,39.54861096,150 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1521,-74.8373875,39.4104665,151 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1522,-74.36876582,39.40639972,155 SUSSEX PL,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_988.11_15.04_C1523,-74.477788,39.339802,156 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1524,-74.58724931,39.40140896,157 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C1601,-74.46598078,39.34290402,125 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1602,-74.50726539,39.32521239,126 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1603,-74.606116,39.327924,127 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1604,-74.65234629,39.52713251,128 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C1605,-74.4982485,39.4972505,129 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C1606,-74.49466849,39.42480443,130 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1607,-74.61455376,39.37733779,122 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3002 -0111_988.11_15.04_C1608,-74.913851,39.50142517,123 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C1609,-74.82561728,39.42737805,124 SUSSEX PL,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C1610,-74.47304314,39.36492607,119 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1611,-74.68156623,39.44531592,120 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1612,-74.4017205,39.391688,121 SUSSEX PL,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C1701,-74.5478015,39.474777,51 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1702,-74.50630616,39.40283884,52 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1703,-74.52114234,39.31843505,53 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1704,-74.586367,39.3595975,54 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1705,-74.611415,39.32440717,55 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1706,-74.36844317,39.407888,56 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1801,-74.67919968,39.49829631,50 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1802,-74.4927705,39.4354715,49 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1803,-74.59534978,39.34140312,48 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1804,-74.61257349,39.32374583,47 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1805,-74.546029,39.3706585,46 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1806,-74.63624946,39.43139283,45 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1807,-74.5517323,39.3838996,44 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1808,-74.4616855,39.35487587,43 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1901,-74.63441422,39.36135045,37 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1902,-74.87923055,39.59472967,38 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1903,-74.5657995,39.3702335,39 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1904,-74.392452,39.3871005,40 GREENWICH DR,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_988.11_15.04_C1905,-74.7974831,39.63784013,41 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C1906,-74.58384518,39.37577152,42 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2001,-74.55635053,39.37459068,36 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2002,-74.5884085,39.432698,35 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2003,-74.47075,39.4901655,34 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2004,-74.38636208,39.39411337,33 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2005,-74.61348684,39.31570552,32 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2006,-74.50401895,39.33545983,31 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2007,-74.5025335,39.4437485,30 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2008,-74.92335603,39.56134843,29 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2101,-74.5017115,39.4503795,21 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2102,-74.62009138,39.43516848,22 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2103,-74.50822484,39.3351855,23 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2104,-74.84675619,39.53227677,24 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2105,-74.824751,39.412312,25 GREENWICH DR,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_988.11_15.04_C2106,-74.68888985,39.44775755,26 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2107,-74.6311933,39.42896213,27 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2108,-74.497382,39.3358175,28 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2201,-74.8024985,39.6467285,15 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2202,-74.7179575,39.3900485,16 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2203,-74.53944992,39.46917972,17 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2204,-74.57533288,39.4170138,18 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2205,-74.51792818,39.38655982,19 GREENWICH DR,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_988.11_15.04_C2206,-74.73105368,39.45997007,20 GREENWICH DR,GALLOWAY TWP,35,1987,1,COM1,3004 -0111_988.11_15.04_C2301,-74.5984384,39.31517865,14 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2302,-74.4658795,39.4738,13 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2303,-74.64999266,39.52420448,12 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2304,-74.54903739,39.46991773,11 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2305,-74.6154,39.5995735,10 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2306,-74.49074866,39.33276401,9 GREENWICH DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2401,-74.512254,39.3313985,84 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2402,-74.39508009,39.38854135,83 CHESHIRE DR,GALLOWAY TWP,35,1987,1,IND2,3002 -0111_988.11_15.04_C2403,-74.815048,39.404156,82 CHESHIRE DR,GALLOWAY TWP,35,1987,1,COM4,3004 -0111_988.11_15.04_C2404,-74.58741923,39.41285961,81 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2405,-74.670361,39.542467,80 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3004 -0111_988.11_15.04_C2406,-74.6413375,39.4732675,79 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2407,-74.3758362,39.41204584,78 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2408,-74.5497755,39.3807695,77 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2501,-74.5879935,39.4328735,69 CHESHIRE DR,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_988.11_15.04_C2502,-74.50778816,39.33444445,70 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2503,-74.36378961,39.4104203,71 CHESHIRE DR,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C2504,-74.60541587,39.32788805,72 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2505,-74.52136221,39.44176591,75 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2506,-74.3805625,39.4147965,76 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2507,-74.77409439,39.31604511,73 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2508,-74.76118047,39.63090368,74 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2601,-74.70071032,39.58607789,68 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2602,-74.8139885,39.4055605,67 CHESHIRE DR,GALLOWAY TWP,35,1987,1,AGR1,3001 -0111_988.11_15.04_C2603,-74.52338151,39.44852957,66 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2604,-74.48347409,39.34085616,65 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2605,-74.50121684,39.43481333,64 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2606,-74.825001,39.498614,63 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2607,-74.8305975,39.6354185,62 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2608,-74.80018032,39.53854357,61 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2701,-74.61450666,39.48647252,45 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2702,-74.628551,39.356617,46 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2703,-74.511393,39.327002,47 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES3A,3001 -0111_988.11_15.04_C2704,-74.55368903,39.39233436,48 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2705,-74.54671294,39.3884818,51 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2706,-74.4872205,39.35130902,52 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2707,-74.79408602,39.31381373,49 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2708,-74.72738766,39.58775349,50 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C2801,-74.93520147,39.5180169,60 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2802,-74.46811326,39.49066547,59 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2803,-74.48152436,39.33940284,58 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2804,-74.6378715,39.5241795,57 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2805,-74.4908765,39.433428,56 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2806,-74.80291493,39.62455365,55 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2807,-74.59265155,39.42255832,54 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3002 -0111_988.11_15.04_C2808,-74.3782275,39.4172105,53 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2901,-74.5593145,39.525049,44 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2902,-74.54076003,39.37265968,43 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2903,-74.88564452,39.50826888,42 CHESHIRE DR,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_988.11_15.04_C2904,-74.61802699,39.37218488,41 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2905,-74.79277926,39.63320893,40 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C2906,-74.46114733,39.34542901,39 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3001,-74.6052858,39.31084897,31 CHESHIRE DR,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C3002,-74.35796912,39.41337463,32 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3003,-74.60606051,39.31553617,33 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3004,-74.4839658,39.3393414,34 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3005,-74.50058552,39.41264282,37 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3006,-74.36229008,39.413123,38 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3007,-74.796016,39.639078,35 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3008,-74.4416835,39.4862835,36 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3101,-74.53478106,39.41342066,30 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3102,-74.638516,39.483128,29 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3103,-74.5309215,39.4605615,28 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3104,-74.64187618,39.37582477,27 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3105,-74.88679931,39.59688167,26 CHESHIRE DR,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_988.11_15.04_C3106,-74.6486405,39.5331365,25 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3107,-74.63813255,39.53393966,24 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3108,-74.38261448,39.39513968,23 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3201,-74.6256535,39.392741,15 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3202,-74.44272318,39.37393198,16 CHESHIRE DR,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C3203,-74.8853598,39.48366035,17 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3204,-74.56861313,39.35370502,18 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3205,-74.723517,39.4397035,21 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3206,-74.65164584,39.53053453,22 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3207,-74.72482369,39.45212006,19 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3208,-74.77896839,39.62368354,20 CHESHIRE DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3301,-74.63543513,39.41090625,14 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3302,-74.552576,39.3704265,13 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3303,-74.600911,39.479444,12 CHESHIRE DR,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_988.11_15.04_C3304,-74.798572,39.6329215,11 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3305,-74.59506273,39.35651467,10 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3306,-74.53972929,39.47005641,9 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3307,-74.7918375,39.647595,8 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3308,-74.5195585,39.410556,7 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3401,-74.58282089,39.48454987,6 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3402,-74.51266878,39.33129498,5 CHESHIRE DR,GALLOWAY TWP,35,1987,1,GOV1,3004 -0111_988.11_15.04_C3403,-74.5558728,39.35658312,4 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3404,-74.48859,39.4604735,3 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3405,-74.63606606,39.42871719,2 CHESHIRE DR,GALLOWAY TWP,35,1987,1,COM1,3004 -0111_988.11_15.04_C3406,-74.58045874,39.33144439,1 CHESHIRE DR,GALLOWAY TWP,35,1987,1,RES1,3001 -0111_988.11_15.04_C3501,-74.60014892,39.35883032,5 GREENWICH DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3502,-74.50506532,39.333899,6 GREENWICH DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3503,-74.7714345,39.627436,7 GREENWICH DR,GALLOWAY TWP,33,1987,1,GOV1,3004 -0111_988.11_15.04_C3504,-74.63376,39.4309025,8 GREENWICH DR,GALLOWAY TWP,33,1987,1,COM1,3004 -0111_988.11_15.04_C3505,-74.52269915,39.44325617,3 GREENWICH DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3506,-74.660488,39.537441,4 GREENWICH DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3507,-74.88675787,39.50175968,1 GREENWICH DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.11_15.04_C3508,-74.76394933,39.62909528,2 GREENWICH DR,GALLOWAY TWP,33,1987,1,RES1,3001 -0111_988.12_113,-74.9433755,39.496284,126 WRANGLEBORO RD,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.12_114,-74.55197681,39.37639036,128 WRANGLEBORO RD,GALLOWAY TWP,,1984,1,RES1,3001 -0111_988.16_1,-74.80943226,39.35202617,101 - 163 THOREAU TERR,GALLOWAY TWP,,1999,1,GOV1,3004 -0111_988.16_2,-74.40480369,39.37971053,165 - 207 THOREAU TERR,GALLOWAY TWP,,1999,1,RES1,3001 -0111_988.17_1,-74.37083882,39.40133003,102 - 158 THOREAU TERR,GALLOWAY TWP,,1999,1,RES1,3001 -0111_988.17_2,-74.818965,39.524496,160 - 174 THOREAU TERR,GALLOWAY TWP,,1999,1,RES1,3001 -0111_988.18_1,-74.507861,39.323849,200 - 220 HERMIT PL,GALLOWAY TWP,,1999,1,RES1,3001 -0111_988.19_1,-74.63388785,39.47137753,201 - 221 HERMIT PL,GALLOWAY TWP,,1999,1,GOV1,3004 -0111_988.20_1,-74.45712392,39.34793508,203 - 217 BEANFIELD PL,GALLOWAY TWP,,1999,1,GOV1,3004 -0111_988.21_1,-74.500811,39.415516,219 - 225 BEANFIELD PL,GALLOWAY TWP,,1999,1,RES1,3001 -0111_988.22_1,-74.7659285,39.60989,216 - 230 BEANFIELD PL,GALLOWAY TWP,,1999,1,GOV1,3004 -0111_988.22_2,-74.58147108,39.3572372,204 - 214 BEANFIELD PL,GALLOWAY TWP,,0,1,RES1,3001 -0111_988.24_1,-74.860816,39.4363705,207 - 225 SOLITUDE PL,GALLOWAY TWP,,2007,1,RES1,3001 -0111_99_10,-74.89899706,39.50738407,1405 FAIRMOUNT ST,GALLOWAY TWP,16,1963,1,RES1,3001 -0111_99_3,-74.676568,39.380792,1411 FAIRMOUNT ST,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_99_4,-74.639167,39.531315,1409 FAIRMOUNT ST,GALLOWAY TWP,16,1930,1,RES1,3001 -0111_99_7,-74.714762,39.4374485,580 COUNTY BLVD,GALLOWAY TWP,,1955,1,RES1,3001 -0111_99_8,-74.84417,39.482023,1413 FAIRMOUNT ST,GALLOWAY TWP,16,1974,1,RES1,3001 -0111_996_1,-74.5290715,39.309797,160 S PITNEY RD,GALLOWAY TWP,,2010,1,RES1,3001 -0111_996_2,-74.47030833,39.5410365,158 S PITNEY RD,GALLOWAY TWP,16,1923,1,RES1,3001 -0111_996_3,-74.39631714,39.39486425,403 GREAT CREEK RD,GALLOWAY TWP,,1997,1,RES1,3001 -0111_996_4,-74.4995435,39.5002445,409 GREAT CREEK RD,GALLOWAY TWP,16,1946,1,RES1,3001 -0111_996_5.01,-74.5516175,39.3682385,154 S PITNEY RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_996_5.02,-74.55301628,39.47136143,156 S PITNEY RD,GALLOWAY TWP,,1977,1,RES1,3001 -0111_996_5.03,-74.525922,39.4502665,400 EVERGREEN AVE,GALLOWAY TWP,,1963,1,RES1,3001 -0111_996_7,-74.58121407,39.34158774,421 GREAT CREEK RD,GALLOWAY TWP,16,1961,1,RES1,3001 -0111_996_8.01,-74.530098,39.453434,425 GREAT CREEK RD,GALLOWAY TWP,16,1966,1,RES1,3001 -0111_996_8.02,-74.56002926,39.39131291,161 SYLVAN AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_996_8.03,-74.69449109,39.58869064,159 SYLVAN AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_997.01_1.01,-74.52951699,39.45865573,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_997.01_1.02,-74.6860915,39.3587525,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_997.01_1.03,-74.4250935,39.36676,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_997.01_1.04,-74.57808986,39.33122253,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_997.01_1.05,-74.9140945,39.488787,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_997.01_1.06,-74.9442205,39.4892075,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_997.01_1.07,-74.432509,39.3667665,UPLAND AVE,GALLOWAY TWP,,0,1,GOV1,3004 -0111_997.01_1.08,-74.63969102,39.52829334,UPLAND AVE,GALLOWAY TWP,,0,1,RES1,3001 -0111_997.02_1.01,-74.8785835,39.4707575,502 TENTH AVE,GALLOWAY TWP,16,1949,1,RES1,3001 -0111_997.02_1.03,-74.82311608,39.57023725,516 TENTH AVE,GALLOWAY TWP,16,1958,1,RES1,3001 -0111_997.02_1.04,-74.57318405,39.35000965,518 TENTH AVE,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_997.02_1.05,-74.62488493,39.38434515,506 TENTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_997.02_10,-74.78487085,39.64061369,305 CRESSON AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_997.02_11.01,-74.499235,39.3324915,307 CRESSON AVE,GALLOWAY TWP,16,1977,1,RES3A,3001 -0111_997.02_11.02,-74.49848649,39.32869933,309 CRESSON AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_997.02_11.03,-74.8991615,39.479588,311 CRESSON AVE,GALLOWAY TWP,16,1976,1,RES1,3001 -0111_997.02_12,-74.5739685,39.4251155,543 S PITNEY RD,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_997.02_13,-74.70120849,39.36492066,541 S PITNEY RD,GALLOWAY TWP,16,1943,1,GOV1,3004 -0111_997.02_14.01,-74.57325206,39.34960084,310 TAMARA DR,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_997.02_14.02,-74.44218944,39.37321322,309 E TAMARA DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_997.02_14.03,-74.64195283,39.538352,308 E TAMARA DR,GALLOWAY TWP,16,1981,1,GOV1,3004 -0111_997.02_14.04,-74.48764896,39.49271203,306 E TAMARA DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_997.02_14.05,-74.58834757,39.33278293,304 E TAMARA DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_997.02_14.06,-74.56733649,39.35590862,302 E TAMARA DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_997.02_14.07,-74.51904681,39.41128862,300 E TAMARA DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_997.02_15.01,-74.4927975,39.3362135,527 S PITNEY RD,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_997.02_15.02,-74.60316933,39.32906894,307 E TAMARA DR,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_997.02_15.03,-74.8010835,39.645312,305 E TAMARA DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_997.02_15.04,-74.36960511,39.40487932,303 E TAMARA DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_997.02_15.05,-74.61195152,39.42177916,301 E TAMARA DR,GALLOWAY TWP,16,1982,1,RES1,3001 -0111_997.02_15.06,-74.6554055,39.5187605,529 S PITNEY RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_997.02_16.01,-74.939266,39.5235175,525 S PITNEY RD,GALLOWAY TWP,16,1986,1,RES2,3005 -0111_997.02_16.02,-74.7605515,39.445919,521 S PITNEY RD,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_997.02_16.03,-74.61011723,39.36627792,523 S PITNEY RD,GALLOWAY TWP,16,1985,1,RES1,3001 -0111_997.02_17,-74.3777705,39.417006,519 S PITNEY RD,GALLOWAY TWP,16,1942,1,RES1,3001 -0111_997.02_18,-74.55899093,39.50181514,517 S PITNEY RD,GALLOWAY TWP,16,1945,2,RES1,3001 -0111_997.02_19.01,-74.71633673,39.38710597,515 S PITNEY RD,GALLOWAY TWP,16,1965,1,RES1,3001 -0111_997.02_19.02,-74.52164269,39.39534457,513 S PITNEY RD,GALLOWAY TWP,16,2002,1,RES1,3001 -0111_997.02_19.03,-74.61064119,39.31559152,511 S PITNEY RD,GALLOWAY TWP,16,2001,1,RES1,3001 -0111_997.02_2,-74.602091,39.499512,514 TENTH AVE,GALLOWAY TWP,16,1955,1,RES1,3001 -0111_997.02_20,-74.63263584,39.59695147,509 S PITNEY RD,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_997.02_21.01,-74.60837857,39.32004363,507 S PITNEY RD,GALLOWAY TWP,16,1925,1,RES1,3001 -0111_997.02_21.02,-74.54592754,39.37298904,500 TENTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_997.02_22,-74.49162562,39.44950133,505 S PITNEY RD,GALLOWAY TWP,15,1960,2,GOV1,3004 -0111_997.02_23.01,-74.4932865,39.525394,503 S PITNEY RD,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_997.02_23.02,-74.5105685,39.454109,501 S PITNEY RD,GALLOWAY TWP,16,1936,1,RES1,3001 -0111_997.02_24,-74.5017775,39.3277475,370 RIDGEWOOD AVE,GALLOWAY TWP,16,1947,1,RES1,3001 -0111_997.02_25.01,-74.880313,39.59791933,368 RIDGEWOOD AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_997.02_25.02,-74.94878225,39.51854104,366 RIDGEWOOD AVE,GALLOWAY TWP,16,1973,1,RES1,3001 -0111_997.02_3.01,-74.84743912,39.47197176,520 TENTH AVE,GALLOWAY TWP,16,1999,1,RES1,3001 -0111_997.02_3.02,-74.4760038,39.36614549,522 TENTH AVE,GALLOWAY TWP,16,1937,2,RES1,3001 -0111_997.02_3.03,-74.4044814,39.37998122,524 TENTH AVE,GALLOWAY TWP,15,1940,1,RES1,3001 -0111_997.02_3.04,-74.8132818,39.41107856,526 TENTH AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_997.02_4,-74.89071064,39.55783912,528 TENTH AVE,GALLOWAY TWP,16,1993,1,RES1,3001 -0111_997.02_5.02,-74.369416,39.4109455,363 BEACHWOOD DR,GALLOWAY TWP,16,1996,1,RES1,3001 -0111_997.02_5.03,-74.49973119,39.43444105,365 BEACHWOOD DR,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_997.02_5.04,-74.60670321,39.38677748,367 BEACHWOOD DR,GALLOWAY TWP,16,1988,1,GOV1,3004 -0111_997.02_5.05,-74.631652,39.408344,369 BEACHWOOD DR,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_997.02_5.06,-74.81737205,39.65508621,370 BEACHWOOD DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_997.02_5.07,-74.44159318,39.37074342,368 BEACHWOOD DR,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_997.02_5.08,-74.617392,39.432603,366 BEACHWOOD DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_997.02_5.09,-74.76494318,39.62514355,364 BEACHWOOD DR,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_997.02_5.11,-74.60072193,39.36960183,360 BEACHWOOD DR,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_997.02_6.01,-74.79781716,39.63292399,361 UPLAND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_997.02_6.02,-74.457025,39.3471805,363 UPLAND AVE,GALLOWAY TWP,16,1992,1,RES1,3001 -0111_997.02_6.03,-74.59248669,39.32788974,365 UPLAND AVE,GALLOWAY TWP,16,1994,1,RES1,3001 -0111_997.02_6.04,-74.3815945,39.414402,367 UPLAND AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_997.02_6.05,-74.54273365,39.52915635,371 UPLAND AVE,GALLOWAY TWP,16,1995,1,RES1,3001 -0111_997.02_6.06,-74.521981,39.4627065,373 UPLAND AVE,GALLOWAY TWP,16,1995,1,GOV1,3004 -0111_997.02_7.01,-74.651512,39.3542065,379 UPLAND AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_997.02_7.02,-74.8094025,39.3816405,381 UPLAND AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_997.02_7.03,-74.601576,39.3185595,383 UPLAND AVE,GALLOWAY TWP,16,1989,1,RES1,3001 -0111_997.02_7.04,-74.69425348,39.58814317,385 UPLAND AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_997.02_7.05,-74.4958155,39.450216,389 UPLAND AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_997.02_7.06,-74.91768695,39.51587722,553 MAC ARTHUR AVE,GALLOWAY TWP,16,1990,1,GOV1,3004 -0111_997.02_7.07,-74.57099082,39.33787875,549 MAC ARTHUR AVE,GALLOWAY TWP,16,1990,1,RES1,3001 -0111_997.02_7.08,-74.626387,39.442537,545 MAC ARTHUR AVE,GALLOWAY TWP,16,1991,1,RES1,3001 -0111_997.02_8,-74.782448,39.569552,301 CRESSON AVE,GALLOWAY TWP,16,1989,1,GOV1,3004 -0111_997.02_9,-74.72139717,39.46448162,303 CRESSON AVE,GALLOWAY TWP,16,1973,1,GOV1,3004 -0111_998_3,-74.582857,39.3718685,399 UPLAND AVE,GALLOWAY TWP,16,1988,1,RES1,3001 -0111_998_4,-74.65180745,39.34750947,569 S PITNEY RD,GALLOWAY TWP,16,1981,1,RES1,3001 -0111_998_5,-74.46926397,39.48203982,567 S PITNEY RD,GALLOWAY TWP,16,1930,2,RES1,3001 -0111_998_6,-74.604131,39.3320195,565 S PITNEY RD,GALLOWAY TWP,16,1984,1,RES1,3001 -0111_999_1.01,-74.50027704,39.33331487,393 UPLAND AVE,GALLOWAY TWP,16,1977,1,RES1,3001 -0111_999_1.02,-74.49875572,39.33083569,613 DOUGLAS AVE,GALLOWAY TWP,16,1980,1,RES1,3001 -0111_999_2.01,-74.5057504,39.42380018,300 ELM AVE,GALLOWAY TWP,16,1987,1,GOV1,3004 -0111_999_2.02,-74.5574685,39.3981065,302 ELM AVE,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_999_3.02,-74.40564504,39.38368917,559 S PITNEY RD,GALLOWAY TWP,16,1935,1,RES1,3001 -0111_999_5,-74.5295798,39.45116845,563 S PITNEY RD,GALLOWAY TWP,16,1987,1,RES1,3001 -0111_999_6,-74.5835655,39.4193235,557 S PITNEY RD,GALLOWAY TWP,16,1968,1,RES1,3001 -0112_1_13,-74.59313563,39.32926263,1345 ASPEN STREET,HAMILTON TWP,17,1945,1,RES1,3001 -0112_1_14,-74.7491285,39.450119,1333 ASPEN STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1_15,-74.803867,39.3747575,1313 ASPEN STREET,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1_2,-74.511639,39.527759,7744 STRAND AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_1_4,-74.578817,39.3475825,7728 STRAND AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_1_5,-74.45508986,39.37353085,7720 STRAND AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1_7,-74.649979,39.3434925,7704 ASPEN STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1_8,-74.80413923,39.37988791,1371 ASPEN STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1_9,-74.55685542,39.36396687,1363 ASPEN STREET,HAMILTON TWP,16,1940,1,RES1,3001 -0112_10_1,-74.544836,39.3770505,1300 STRAWBERRY STREET,HAMILTON TWP,17,1993,1,RES1,3001 -0112_10_10,-74.5902705,39.329317,2504 MALAGA ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_10_6,-74.514052,39.329357,1364 STRAWBERRY STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_10_7,-74.51041549,39.44983317,1378 STRAWBERRY STREET,HAMILTON TWP,17,2005,1,RES1,3001 -0112_10_9.01,-74.46795036,39.49259081,1382 MALAGA ROAD,HAMILTON TWP,17,2003,1,COM4,3004 -0112_100_26,-74.53816817,39.41425796,7178 MARKET STREET,HAMILTON TWP,17,1995,1,RES1,3001 -0112_100_4,-74.56959555,39.34150583,1342 ST PETERSBURG AVENUE,HAMILTON TWP,17,2016,1,RES1,3001 -0112_1026_1,-74.56746847,39.37387817,OLD EGG HARBOR ROAD,HAMILTON TWP,,0,1,GOV1,3004 -0112_1027_1.01,-74.60323967,39.3489575,1824 DR.DENNIS FOREMAN DR,HAMILTON TWP,,0,1,RES1,3001 -0112_1027_1.02,-74.76872585,39.63596344,1876 DR.DENNIS FOREMAN DR,HAMILTON TWP,,0,1,RES1,3001 -0112_1027_1.03,-74.453081,39.3733175,1846 DR.DENNIS FOREMAN DR,HAMILTON TWP,,0,1,RES1,3001 -0112_1028.01_1,-74.56278371,39.41393454,DR.DENNIS FOREMAN DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_1028.01_1001,-74.8123545,39.6316165,4942 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1002,-74.59458841,39.31193363,4944 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1003,-74.58865706,39.37848779,4946 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1004,-74.52127267,39.3220355,4948 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1005,-74.5379465,39.401302,4950 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1006,-74.43544332,39.36921256,4952 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1007,-74.67513579,39.3751815,4954 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_101,-74.4869785,39.5004445,4800 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_102,-74.72428086,39.4608127,4802 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,IND2,3002 -0112_1028.01_103,-74.46610827,39.49251254,4804 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_104,-74.49860892,39.33246683,4806 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_105,-74.642861,39.3469595,4808 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,COM3,3004 -0112_1028.01_106,-74.50067094,39.49710677,4838 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_107,-74.63529267,39.52905119,4840 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_108,-74.36938741,39.40216494,4842 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_109,-74.63984537,39.53649965,4844 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_110,-74.8377515,39.5325125,4846 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1101,-74.60455838,39.52517964,4956 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1102,-74.37660367,39.39955497,4958 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,COM4,3004 -0112_1028.01_1103,-74.59136715,39.48354956,4960 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1104,-74.63971237,39.39096408,4962 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1105,-74.91908453,39.54035573,4964 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1106,-74.867679,39.4956895,4966 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1107,-74.65891236,39.36742295,4968 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,COM8,3004 -0112_1028.01_1108,-74.49643246,39.46530635,4970 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1201,-74.60268755,39.31029431,4972 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1202,-74.713193,39.4300005,4974 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1203,-74.8851715,39.5103055,4976 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1301,-74.38445046,39.39413334,4978 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,COM4,3004 -0112_1028.01_1302,-74.461124,39.3534285,4980 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1303,-74.92760983,39.50693067,4982 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1304,-74.56599322,39.36767655,4986 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1305,-74.5863265,39.32988,4988 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1306,-74.79548351,39.65174833,4990 FLINTSHIRE COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1501,-74.588669,39.3560845,4992 LAYDON COURT,HAMILTON TWP,33,1984,1,COM3,3004 -0112_1028.01_1502,-74.61250076,39.4211786,4994 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1503,-74.6684155,39.3804415,4996 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1504,-74.83303823,39.62464985,4998 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1505,-74.603081,39.324409,5000 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1506,-74.49465263,39.44334925,5002 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1507,-74.58287115,39.33074048,5004 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1508,-74.59077177,39.42814477,5006 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1601,-74.5634325,39.4143055,5008 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1602,-74.5450245,39.3718675,5010 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1603,-74.61058759,39.31603277,5012 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1604,-74.57406709,39.35698531,5014 LAYDON COURT,HAMILTON TWP,33,1984,1,COM1,3004 -0112_1028.01_1605,-74.8624635,39.448844,5016 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1606,-74.44855687,39.35443362,5018 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1607,-74.5069595,39.4782465,5020 LAYDON COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_1608,-74.83816452,39.4840286,5022 LAYDON COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_1701,-74.47195985,39.34255035,5024 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1702,-74.55104867,39.47454616,5026 LAYDON COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_1703,-74.51767,39.319951,5028 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1704,-74.49135028,39.44763383,5030 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1705,-74.65498611,39.53213592,5032 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1706,-74.42814136,39.37086281,5034 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1707,-74.59018822,39.35294722,5036 LAYDON COURT,HAMILTON TWP,33,1984,1,COM1,3004 -0112_1028.01_1708,-74.79983771,39.63955181,5038 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1801,-74.598502,39.31929367,5040 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1802,-74.7538695,39.4324165,5042 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1803,-74.36797869,39.40993565,5044 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1804,-74.48571785,39.51895424,5046 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1805,-74.850739,39.6309205,5048 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1806,-74.62815606,39.60975202,5050 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1807,-74.5836955,39.4871635,5052 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1808,-74.59124119,39.38056516,5054 LAYDON COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_1901,-74.75568183,39.43382568,5056 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_1902,-74.57891578,39.42989004,5058 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_1903,-74.8358705,39.532678,5060 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_1904,-74.62865534,39.46373453,5062 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_1905,-74.57158063,39.37322592,5064 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_1906,-74.62616281,39.37415272,5066 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_1907,-74.46083365,39.35482044,5068 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_1908,-74.60552307,39.36584222,5070 RADNOR COURT,HAMILTON TWP,33,1986,1,GOV1,3004 -0112_1028.01_2001,-74.53602998,39.31320382,5072 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2002,-74.45451006,39.49588447,5074 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2003,-74.559609,39.3638205,5076 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2004,-74.74905887,39.43863443,5080 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2005,-74.60612731,39.49196446,5082 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2006,-74.49198733,39.33250302,5084 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2007,-74.52102504,39.31919267,5086 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2008,-74.60230459,39.31342584,5088 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_201,-74.51106017,39.3256905,4810 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_202,-74.87549021,39.59787813,4812 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_203,-74.45479485,39.37289083,4814 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_204,-74.6482385,39.4321425,4816 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_205,-74.565668,39.4118525,4818 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_206,-74.85061678,39.48365471,4820 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_207,-74.62486321,39.37965718,4822 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_2101,-74.88224416,39.56019105,5090 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2102,-74.64445752,39.36595517,5092 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2103,-74.8144575,39.632828,5094 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2104,-74.94231392,39.51728633,5096 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3004 -0112_1028.01_2105,-74.5150252,39.43182885,5098 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2106,-74.51855388,39.39148201,5100 RADNOR COURT,HAMILTON TWP,33,1986,1,COM1,3004 -0112_1028.01_2107,-74.78437623,39.63608458,5102 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2108,-74.609056,39.3269195,5104 RADNOR COURT,HAMILTON TWP,33,1986,1,RES3A,3001 -0112_1028.01_2201,-74.483515,39.343422,5106 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2202,-74.36388958,39.41028359,5108 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2203,-74.584858,39.332717,5110 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2204,-74.94424392,39.51091425,5112 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2205,-74.6049375,39.32710263,5114 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2206,-74.5010575,39.3283055,5116 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2301,-74.566543,39.3658095,5124 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2302,-74.474053,39.44769865,5122 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2303,-74.71442901,39.44208234,5120 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.01_2304,-74.68823323,39.63557004,5118 RADNOR COURT,HAMILTON TWP,33,1986,1,RES1,3002 -0112_1028.01_3.01,-74.4660971,39.34651417,COLOGNE AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1028.01_301,-74.86382845,39.48575987,4824 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_302,-74.55999406,39.36564728,4826 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_303,-74.72013417,39.44654917,4828 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_304,-74.54954705,39.38149127,4830 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_305,-74.469642,39.48836467,4832 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_306,-74.37322613,39.4176147,4834 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_307,-74.64847681,39.33059851,4836 BRECKNOCK COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_401,-74.90863028,39.48135549,4846 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_402,-74.8075885,39.6362965,4848 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_403,-74.78691,39.4193695,4850 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_404,-74.5384035,39.381786,4852 CORWEN COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_405,-74.5968869,39.36460163,4854 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_406,-74.58410165,39.35143248,4856 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_407,-74.56230717,39.41469082,4858 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_408,-74.46119439,39.35093835,4860 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_501,-74.50346382,39.49185,4862 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_502,-74.45087334,39.37383818,4864 CORWEN COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_503,-74.62713993,39.42359275,4866 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_504,-74.56057445,39.4239765,4868 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_505,-74.699809,39.4437665,4870 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_506,-74.50010716,39.32894716,4872 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_507,-74.56119028,39.41677667,4874 CORWEN COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_508,-74.74830184,39.447114,4876 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_601,-74.58375808,39.4218723,4892 CORWEN COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_602,-74.603749,39.3250645,4890 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_603,-74.792176,39.459745,4888 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_604,-74.70865009,39.4317447,4886 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_605,-74.840109,39.488955,4884 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_606,-74.4357635,39.36795,4882 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_607,-74.49655118,39.42691267,4880 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_608,-74.52162606,39.47041648,4878 CORWEN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_701,-74.9444775,39.5173835,4894 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_702,-74.573126,39.357726,4896 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_703,-74.36890481,39.40592142,4898 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_704,-74.46240383,39.49570757,4900 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_705,-74.632632,39.4835955,4902 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_706,-74.4387344,39.36480359,4904 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_707,-74.49899325,39.33446754,4906 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_708,-74.758434,39.4293915,4908 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_801,-74.600061,39.348237,4910 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_802,-74.5065016,39.44916935,4912 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_803,-74.63116514,39.42690079,4914 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_804,-74.49540959,39.42728711,4916 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_805,-74.72084914,39.43055079,4918 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_806,-74.49296843,39.39617688,4920 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_807,-74.575477,39.3499185,4922 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_808,-74.5934365,39.3283965,4924 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_901,-74.7033535,39.561682,4940 DENBIGH COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.01_902,-74.36454019,39.41019028,4938 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_903,-74.5027915,39.4505885,4936 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_904,-74.73533,39.6422745,4934 DENBIGH COURT,HAMILTON TWP,33,1984,1,REL1,3004 -0112_1028.01_905,-74.58659144,39.35881969,4932 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_906,-74.50770749,39.44527095,4930 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_907,-74.82772284,39.56853051,4928 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.01_908,-74.505575,39.3296265,4926 DENBIGH COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1001,-74.514466,39.326135,4883 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1002,-74.68447771,39.48922228,4881 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1003,-74.45521619,39.46924702,4879 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1004,-74.8549805,39.5581385,4877 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1005,-74.6485357,39.43261754,4875 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1006,-74.46547112,39.34305217,4873 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1007,-74.87379683,39.52274591,4871 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1008,-74.52219582,39.46070531,4869 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_101,-74.605128,39.3602045,5063 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_102,-74.5694465,39.41433264,5061 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_103,-74.725363,39.6410425,5059 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_104,-74.8219295,39.6535795,5057 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_1101,-74.48545883,39.45311978,4867 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1102,-74.36896839,39.41428483,4865 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1103,-74.61623717,39.30925601,4863 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1104,-74.64174839,39.52846982,4861 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1105,-74.60260586,39.43181075,4859 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1106,-74.4374115,39.370388,4857 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1201,-74.62952594,39.35028233,4845 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1202,-74.59345184,39.37703772,4841 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1203,-74.58479364,39.33077522,4839 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1204,-74.8822865,39.453332,4837 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1205,-74.48953341,39.33748083,4835 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1206,-74.720053,39.4499975,4833 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1207,-74.59265643,39.39499619,4829 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1208,-74.9345835,39.4821635,4827 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1301,-74.73520638,39.48001616,4825 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1302,-74.60662588,39.50099254,4823 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1303,-74.47875102,39.34178169,4821 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1304,-74.8827705,39.487559,4819 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1305,-74.793357,39.375481,4817 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1306,-74.56214461,39.54248517,4815 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1307,-74.783882,39.6432655,4813 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1308,-74.36642018,39.42260945,4811 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1401,-74.6622683,39.49337506,4809 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1402,-74.37523455,39.41717722,4807 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1403,-74.519571,39.386913,4805 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1404,-74.6290285,39.43214098,4803 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1405,-74.49494481,39.37828947,4801 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1501,-74.57508771,39.36934807,4855 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1502,-74.5291315,39.4010415,4853 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1503,-74.52620583,39.39591856,4851 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1504,-74.80438017,39.64397099,4849 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1505,-74.5327835,39.380087,4847 ANGLESEY COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1801,-74.36787644,39.41307215,4945 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1802,-74.57557,39.389055,4947 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1803,-74.616231,39.320904,4949 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1804,-74.54020442,39.4202535,4951 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1805,-74.58615323,39.49343397,4953 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1806,-74.60163739,39.31228727,4955 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1807,-74.79260252,39.64112372,4957 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3004 -0112_1028.02_1808,-74.8349335,39.448273,4959 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1901,-74.59771254,39.35912197,4943 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1902,-74.58895781,39.4130484,4941 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1903,-74.38229,39.399557,4939 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1904,-74.46395269,39.49134711,4937 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1905,-74.60158416,39.32801624,4935 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1906,-74.812355,39.6509685,4933 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1907,-74.80573127,39.42938425,4931 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_1908,-74.95767299,39.49853571,4929 CARDIGAN COURT,HAMILTON TWP,33,1984,1,COM7,3004 -0112_1028.02_2001,-74.61121726,39.31987082,4927 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2002,-74.501314,39.427582,4925 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2003,-74.8086655,39.629915,4923 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2004,-74.83600137,39.48779979,4921 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2005,-74.5891495,39.4331105,4919 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2006,-74.653368,39.5132885,4917 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2007,-74.46872136,39.34559997,4915 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2008,-74.55006918,39.48998387,4913 CARDIGAN COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_201,-74.8856655,39.5983825,5009 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_202,-74.78911517,39.63780101,5011 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_203,-74.538332,39.4669785,5013 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_204,-74.51426083,39.41072344,5015 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_205,-74.72924987,39.58949804,5017 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_206,-74.6418725,39.387884,5019 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_207,-74.608689,39.3960955,5021 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_208,-74.726788,39.588541,5023 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_2101,-74.5346425,39.3914825,4975 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2102,-74.50986465,39.38648724,4973 CARDIFF COURT,HAMILTON TWP,33,1984,1,REL1,3004 -0112_1028.02_2103,-74.60279008,39.34897531,4971 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2104,-74.50404112,39.43369751,4969 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2105,-74.88230326,39.45468805,4967 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2106,-74.63914749,39.53469607,4965 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2107,-74.9285925,39.4822815,4963 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES3A,3001 -0112_1028.02_2108,-74.63623916,39.52826397,4961 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2201,-74.536627,39.3832345,4991 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2202,-74.59663741,39.31666152,4989 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2203,-74.45725567,39.34802899,4987 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2204,-74.5280635,39.3998695,4985 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2205,-74.5052855,39.412577,4983 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2206,-74.60624433,39.39007521,4981 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2207,-74.44881859,39.49658861,4979 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2208,-74.5009905,39.425433,4977 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2301,-74.60310584,39.59419547,4993 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2302,-74.63844739,39.42964856,4995 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2303,-74.640494,39.53184917,4997 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2304,-74.84023253,39.59950218,4999 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2305,-74.52038171,39.44576241,5001 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2306,-74.48453557,39.33634817,5003 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2307,-74.48096278,39.33761636,5005 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_2308,-74.785373,39.660165,5007 CARDIFF COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_3.02,-74.92859689,39.50816965,COLOGNE AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1028.02_301,-74.55197909,39.47767327,5025 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_302,-74.558872,39.3672965,5027 MERION COURT,HAMILTON TWP,33,1986,1,COM1,3004 -0112_1028.02_303,-74.37863436,39.40246125,5029 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_304,-74.796285,39.6383975,5031 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_305,-74.5965725,39.3101895,5033 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_306,-74.37110531,39.40088186,5035 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_307,-74.94020274,39.53191159,5037 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_308,-74.59282046,39.34819435,5039 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_401,-74.515979,39.4107135,5041 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_402,-74.79701308,39.63428877,5043 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_403,-74.503346,39.4167065,5045 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_404,-74.507563,39.33173633,5047 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_405,-74.73190436,39.45472518,5049 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_406,-74.80635489,39.43523879,5051 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_407,-74.60211633,39.31615277,5053 MERION COURT,HAMILTON TWP,33,1986,1,GOV1,3004 -0112_1028.02_408,-74.56233483,39.407956,5055 MERION COURT,HAMILTON TWP,33,1986,1,RES1,3001 -0112_1028.02_501,-74.63728683,39.41072633,5065 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_502,-74.620619,39.3852935,5067 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_503,-74.63802253,39.40094075,5069 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_504,-74.486172,39.350039,5071 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_505,-74.4556008,39.34956042,5073 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_506,-74.48537683,39.33454551,5075 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_6,-74.5124945,39.325216,4800 BLACK HORSE PIKE,HAMILTON TWP,,1946,1,RES1,3001 -0112_1028.02_602,-74.40202691,39.38521947,5097 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_603,-74.3898315,39.389436,5095 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_604,-74.83171808,39.53261922,5093 WELLS COURT,HAMILTON TWP,33,2004,1,GOV1,3004 -0112_1028.02_605,-74.50832281,39.48138949,5091 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_606,-74.54530088,39.56920762,5089 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_701,-74.80390858,39.31099071,5079 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_702,-74.480469,39.350724,5081 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_703,-74.47923432,39.33655402,5083 WELLS COURT,HAMILTON TWP,33,2004,1,IND1,3002 -0112_1028.02_704,-74.36911459,39.41451718,5085 WELLS COURT,HAMILTON TWP,33,2004,1,RES1,3001 -0112_1028.02_801,-74.59443,39.334461,4911 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_802,-74.692287,39.481896,4909 BALA COURT,HAMILTON TWP,33,1984,1,GOV1,3004 -0112_1028.02_803,-74.398969,39.3874575,4907 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_804,-74.50308531,39.33295826,4905 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_805,-74.56027953,39.36567625,4903 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_806,-74.37877034,39.39900957,4901 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_807,-74.56590888,39.36557573,4899 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_901,-74.86899486,39.60231164,4897 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_902,-74.47316682,39.48617401,4895 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_903,-74.72625593,39.44815804,4893 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_904,-74.6091337,39.34209929,4891 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_905,-74.87832238,39.59128104,4889 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_906,-74.50088527,39.44869152,4887 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1028.02_907,-74.6072359,39.32095687,4885 BALA COURT,HAMILTON TWP,33,1984,1,RES1,3001 -0112_1029_1,-74.50945976,39.33717648,5176 HARDING HIGHWAY,HAMILTON TWP,,1970,1,RES1,3001 -0112_1029_2.01,-74.49435055,39.43952265,5100 HARDING HIGHWAY,HAMILTON TWP,,1989,1,RES1,3001 -0112_103_1,-74.58536694,39.32538418,TENTH AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_1030.01_1,-74.50087719,39.50032337,24 PRINCETON PLACE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_10,-74.55444959,39.39302229,11 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_11,-74.61150854,39.32130384,13 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_12,-74.8663285,39.545972,15 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_13,-74.633487,39.5339935,17 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_14,-74.59111594,39.37650565,19 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_15,-74.4951795,39.495058,21 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_16,-74.8845115,39.598399,23 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,GOV1,3004 -0112_1030.01_17,-74.5470525,39.38539,25 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_18,-74.46339783,39.35378951,27 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_19,-74.6492676,39.51346382,29 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,GOV1,3004 -0112_1030.01_2,-74.68031877,39.55636096,22 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_20,-74.4600115,39.3535245,31 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030.01_21,-74.5103955,39.470022,33 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030.01_22,-74.58207282,39.41412249,35 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030.01_23,-74.56224471,39.3721251,37 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030.01_24,-74.68882213,39.44718835,39 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030.01_26,-74.52512153,39.3834398,43 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_27,-74.57738781,39.35137941,45 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_28,-74.63324667,39.53148202,47 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_29,-74.49246,39.467659,49 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1030.01_3,-74.549669,39.385812,20 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_30,-74.653478,39.5232645,51 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_31,-74.362065,39.415165,53 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1030.01_32,-74.51758965,39.4111751,55 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_33,-74.63815245,39.53158055,57 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_34,-74.96085638,39.51984126,59 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_35,-74.509048,39.3363795,61 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,GOV1,3004 -0112_1030.01_36,-74.63340625,39.45737995,63 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_4,-74.607969,39.418834,18 PRINCETON PLACE,HAMILTON TWP,16,2004,1,GOV1,3004 -0112_1030.01_5,-74.8473771,39.47125175,16 PRINCETON PLACE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_6,-74.50404163,39.32691218,14 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_7,-74.5984662,39.41228256,12 PRINCETON PLACE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.01_8,-74.6360867,39.36165309,10 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.01_9,-74.78777991,39.61583632,9 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_10,-74.56013761,39.37216714,17 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_11,-74.5663276,39.36448082,19 PRINCETON PLACE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_12,-74.62210126,39.38066045,21 PRINCETON PLACE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_13,-74.53046584,39.45082351,23 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_14,-74.48934963,39.49666332,25 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_15,-74.68904626,39.44903854,27 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_16,-74.45072971,39.35746215,29 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_17,-74.77746632,39.62113638,31 PRINCETON PLACE,HAMILTON TWP,16,2004,1,GOV1,3004 -0112_1030.02_18,-74.609107,39.315844,65 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_19,-74.67110969,39.46288153,67 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_2,-74.58791994,39.41587668,1 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_20,-74.79749922,39.59680563,69 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_21,-74.3616415,39.409829,71 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_22,-74.663019,39.358826,89 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1030.02_23,-74.56702533,39.35666116,91 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1030.02_24,-74.5488915,39.474779,93 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_25,-74.82434278,39.5683323,95 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_26,-74.75465005,39.44586087,97 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,GOV1,3004 -0112_1030.02_27,-74.74056216,39.63964552,99 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_28,-74.46268616,39.34684652,103 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_29,-74.6043345,39.321103,105 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES3A,3001 -0112_1030.02_3,-74.53249635,39.38620839,3 PRINCETON PLACE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_30,-74.62566243,39.41212174,107 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_31,-74.60382229,39.32075791,109 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_32,-74.51874187,39.32081796,111 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_33,-74.553024,39.543494,113 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_34,-74.581765,39.3599625,115 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_35,-74.39566691,39.38798111,117 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_36,-74.51078701,39.43628233,119 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_37,-74.461919,39.3453035,121 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_38,-74.94580583,39.52437071,123 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_39,-74.66488709,39.54461335,125 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_4,-74.638255,39.38319,5 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_40,-74.61358651,39.37297708,127 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_41,-74.5731985,39.3453755,129 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_42,-74.58851,39.3470145,131 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_43,-74.49631457,39.49193373,133 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.02_44,-74.57717726,39.36525564,135 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_45,-74.46704303,39.49642584,137 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_46,-74.50833933,39.44581296,139 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.02_5,-74.62060845,39.37948929,7 PRINCETON PLACE,HAMILTON TWP,16,2003,1,IND1,3002 -0112_1030.02_6,-74.682714,39.4436295,9 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES3A,3001 -0112_1030.02_7,-74.83142953,39.60038116,11 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3002 -0112_1030.02_8,-74.56893882,39.34943146,13 PRINCETON PLACE,HAMILTON TWP,16,2003,1,IND1,3004 -0112_1030.02_9,-74.6192025,39.3755925,15 PRINCETON PLACE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_1,-74.3925735,39.391423,90 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_1030.03_10,-74.48586396,39.49457368,108 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_11,-74.4854525,39.4788195,110 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,REL1,3004 -0112_1030.03_12,-74.5071945,39.3347715,112 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_13,-74.7913135,39.63239,114 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_14,-74.76142182,39.63182168,116 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.03_15,-74.48275188,39.47878682,118 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.03_16,-74.47210155,39.4945123,120 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES3A,3001 -0112_1030.03_17,-74.518509,39.3214,122 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,GOV1,3004 -0112_1030.03_18,-74.72501395,39.44687431,124 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.03_19,-74.49683865,39.45003531,126 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_2,-74.3679105,39.4060705,92 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2006,1,GOV1,3004 -0112_1030.03_20,-74.63785292,39.44422619,128 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_21,-74.436893,39.368464,130 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_22,-74.53361765,39.38429504,132 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030.03_23,-74.7276235,39.458716,134 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_24,-74.5858115,39.375555,136 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_25,-74.77125763,39.66110916,138 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_26,-74.60255328,39.32173227,140 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030.03_27,-74.64603907,39.53910184,142 KNIGHTS BRIDGE WAY,HAMILTON TWP,,2004,1,RES1,3001 -0112_1030.03_28,-74.80893516,39.63726832,144 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030.03_3,-74.6085175,39.34812673,94 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_4,-74.60809932,39.3139543,96 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_5,-74.5913195,39.5108975,98 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_6,-74.53923421,39.55892704,100 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_7,-74.48830964,39.45653396,102 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030.03_9,-74.58058283,39.34294934,106 KNIGHTS BRIDGE WAY,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_10,-74.6914187,39.48144232,18 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_11,-74.56477204,39.41753712,20 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_12,-74.51079583,39.3250115,22 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_13,-74.70520992,39.47812384,24 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_14,-74.60202147,39.43632818,26 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_15,-74.5258668,39.38219985,28 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_16,-74.96620138,39.51254011,30 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_17,-74.48613259,39.33338168,32 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_18,-74.52354363,39.38611723,34 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_19,-74.80929898,39.64258567,36 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1030_2,-74.53448676,39.31284527,2 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_20,-74.7585566,39.44602755,38 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_21,-74.57218291,39.47839765,40 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_22,-74.48254284,39.34099732,42 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_23,-74.499368,39.4243405,44 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_24,-74.62177551,39.43519006,46 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_25,-74.54988529,39.3915768,48 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_26,-74.617703,39.372061,50 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_27,-74.81192873,39.56129777,52 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_1030_29,-74.64323176,39.32618658,56 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_3,-74.63107059,39.41441519,4 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_30,-74.4996415,39.334342,58 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1030_31,-74.61894961,39.37961878,60 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1030_32,-74.4873315,39.521286,62 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_33,-74.9318325,39.4979165,64 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_34,-74.3784166,39.41448868,66 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_35,-74.512606,39.469702,68 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_36,-74.87992726,39.54505783,70 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1030_37,-74.49578791,39.43419989,72 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_38,-74.4887723,39.3499755,74 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_39,-74.559971,39.3649225,76 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_4,-74.495444,39.4687835,6 PRINCETON PLACE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_40,-74.61391118,39.39600904,78 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_41,-74.60700112,39.33124168,80 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_42,-74.52936817,39.40115058,82 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_43,-74.57951359,39.33277882,84 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_44,-74.4378785,39.3650985,86 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,GOV1,3004 -0112_1030_45,-74.9286805,39.5086345,88 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_5,-74.670191,39.4630055,8 PRINCETON PLACE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_6,-74.93861282,39.52247903,10 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_7,-74.7307915,39.4549085,12 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1030_8,-74.61602284,39.30940701,14 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1030_9,-74.58019372,39.43002946,16 CHANCELLOR PARK DRIVE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1070_2,-74.62645668,39.43841555,HARDING HWY,HAMILTON TWP,,0,1,RES1,3001 -0112_1070_3,-74.64391801,39.36893917,BENCHMARK LANE (PRIVATE),HAMILTON TWP,,0,1,RES3A,3001 -0112_1070_4,-74.9185945,39.51913,HAMILTON COURT AREA,HAMILTON TWP,,0,1,RES1,3001 -0112_1070_5,-74.52300805,39.31545367,MADISON COURT AREA,HAMILTON TWP,,0,1,RES1,3001 -0112_1070_6,-74.69644933,39.48023434,BENCHMARK LANE,HAMILTON TWP,,0,1,RES1,3001 -0112_1070_8,-74.9625775,39.52647,1501 BENCHMARK LANE,HAMILTON TWP,,0,1,RES1,3001 -0112_1083_4,-74.63651225,39.42992575,5328 HOLLY STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1083_6.01,-74.76105971,39.64093906,5288 HOLLY STREET,HAMILTON TWP,17,1991,1,RES1,3001 -0112_1083_6.02,-74.59962686,39.40873269,5268 HOLLY STREET,HAMILTON TWP,17,1988,1,RES3A,3001 -0112_1083_8,-74.557859,39.4671605,5228 HOLLY STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1084_1,-74.59942333,39.42790099,HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_1084_3,-74.779661,39.4450255,5327 HOLLY STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1084_6,-74.48094639,39.3486463,5265 HOLLY STREET,HAMILTON TWP,17,2006,1,GOV1,3004 -0112_1084_7,-74.46682133,39.34505651,5249 HOLLY STREET,HAMILTON TWP,16,1950,1,GOV1,3004 -0112_1085_3,-74.62065535,39.37036434,HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_1086_1,-74.576305,39.313289,2900 SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_1086_4,-74.46877893,39.49935476,SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_1089_2,-74.62005527,39.36849305,5319 BERLIN AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1090_11,-74.61116816,39.50639607,4928 HOLLY STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1090_13,-74.5370483,39.31444853,4888 HOLLY STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1090_19,-74.6647875,39.4621665,2653 COLOGNE AVE,HAMILTON TWP,17,1930,2,RES1,3001 -0112_1090_20,-74.62229623,39.43135753,2633 COLOGNE AVENUE,HAMILTON TWP,17,1967,1,RES3A,3001 -0112_1090_24,-74.92917968,39.52295347,2611 COLOGNE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_1090_27,-74.734638,39.440049,4831 PADDOCK STREET,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1090_36,-74.54912719,39.35941393,PRESLEY AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1090_37,-74.58446049,39.47362516,PRESLEY AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1090_38,-74.50223496,39.33033874,5149 PRESLEY AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_1090_8,-74.57417079,39.42189077,VIENNA AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1091_13,-74.47422,39.342325,LAUREL STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_1091_2,-74.557101,39.472347,5164 HOLLY STREET,HAMILTON TWP,17,2002,1,RES3A,3001 -0112_1091_3.01,-74.58629361,39.379143,5144 HOLLY STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1091_3.02,-74.58935575,39.40189419,5124 HOLLY STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_1091_4,-74.48689382,39.33341105,5064 HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_1091_6,-74.52507217,39.4479125,5024 HOLLY STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1092_1.01,-74.6770625,39.447229,5143 HOLLY STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_1092_3,-74.7724655,39.6469785,5041 HOLLY STREET,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1093_5,-74.48461942,39.49521222,SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_1095_2,-74.93643898,39.52789008,3055 VIENNA AVENUE,HAMILTON TWP,15,1940,2,RES1,3001 -0112_1097_2,-74.553471,39.4696595,4919 HOLLY STREET,HAMILTON TWP,17,1982,1,RES1,3002 -0112_1098_6,-74.631486,39.3504915,4888 SPRUCE STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1098_7,-74.51368252,39.46101857,4868 SPRUCE STREET,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1098_8,-74.51564796,39.50591878,4848 SPRUCE STREET,HAMILTON TWP,,2018,1,RES1,3001 -0112_1098_9,-74.78776469,39.63311707,4816 SPRUCE STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1099_1,-74.59965947,39.41660968,4949 SPRUCE STREET,HAMILTON TWP,17,1911,2,RES1,3001 -0112_1099_10,-74.539995,39.376455,3091 LINDEN AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_1099_11.01,-74.7884245,39.639522,4820 DROSERA STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_1099_11.02,-74.68929183,39.50726351,4810 DROSERA STREET,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_1099_11.03,-74.6004865,39.3181455,3135 COLOGNE AVE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_1099_11.04,-74.65007087,39.55813062,3129 COLOGNE AVE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_1099_12,-74.78497108,39.59528836,3025 COLOGNE AVENUE,HAMILTON TWP,13,1900,1,RES1,3002 -0112_1099_13.01,-74.57614633,39.47711401,3012 LINDEN AVENUE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_1099_13.02,-74.59157682,39.31698695,2971 COLOGNE AVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_1099_14,-74.647135,39.5500845,2961 COLOGNE AVENUE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_1099_15,-74.7864135,39.63717541,2953 COLOGNE AVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_1099_16,-74.48818165,39.33466415,2947 COLOGNE AVE,HAMILTON TWP,17,1960,1,RES3A,3001 -0112_1099_17,-74.49276265,39.33377465,2941 COLOGNE AVENUE,HAMILTON TWP,17,1940,1,RES3A,3004 -0112_1099_18,-74.57561536,39.33977031,2933 COLOGNE AVE,HAMILTON TWP,,1916,1,RES1,3001 -0112_1099_19,-74.86171316,39.43893565,2925 COLOGNE AVE,HAMILTON TWP,17,1930,1,RES1,3001 -0112_1099_20,-74.70355088,39.49895826,3000 LINDEN AVENUE,HAMILTON TWP,17,1999,1,RES3A,3001 -0112_1099_21,-74.7456855,39.4450225,2921 COLOGNE AVE,HAMILTON TWP,17,1976,1,RES3A,3001 -0112_1099_22,-74.4667655,39.346453,2915 COLOGNE AVE,HAMILTON TWP,17,1930,1,RES1,3001 -0112_1099_23.01,-74.61859885,39.62284953,4819 SPRUCE STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_1099_23.02,-74.54349407,39.36819133,4859 SPRUCE STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1099_23.03,-74.51986565,39.32234993,4911 SPRUCE STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_1099_4,-74.43862337,39.36887222,3040 LINDEN AVENUE,HAMILTON TWP,16,1863,1,RES3A,3001 -0112_1099_5.01,-74.52450011,39.45689956,3050 LINDEN AVENUE,HAMILTON TWP,16,1968,1,RES1,3001 -0112_1099_5.02,-74.39359865,39.39273535,3067 LINDEN AVENUE,HAMILTON TWP,16,1940,1,RES3B,3001 -0112_1099_6,-74.613615,39.422518,3071 LINDEN AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1099_7,-74.49920233,39.45598179,3083 LINDEN AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_1099_8,-74.51935289,39.32362434,3073 LINDEN AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_1099_9,-74.4758513,39.33978386,3075 LINDEN AVENUE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_11_1,-74.94022575,39.5226165,1400 STRAWBERRY STREET,HAMILTON TWP,17,2006,1,GOV1,3004 -0112_11_10,-74.615391,39.3209685,1459 ELM STREET,HAMILTON TWP,17,1967,1,RES1,3001 -0112_11_11,-74.7157765,39.4650595,1449 ELM STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_11_13,-74.78436548,39.67785617,1437 ELM STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_11_14,-74.6396745,39.53321,7451 STRAND AVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_11_15,-74.53499544,39.30414149,7467 STRAND AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_11_16,-74.497062,39.3318435,7479 STRAND AVE,HAMILTON TWP,17,2002,1,RES1,3002 -0112_11_17,-74.473855,39.4940155,7503 STRAND AVENUE,HAMILTON TWP,17,1952,2,RES1,3001 -0112_11_18,-74.531368,39.3900585,7511 STRAND AVE,HAMILTON TWP,16,1967,1,RES1,3001 -0112_11_2,-74.55212765,39.36442347,1436 STRAWBERRY STREET,HAMILTON TWP,17,2004,1,RES3A,3001 -0112_11_3,-74.65516301,39.54867975,1446 STRAWBERRY STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_11_4,-74.66073909,39.40337192,7514 STRAWBERRY STREET,HAMILTON TWP,17,2002,1,RES1,3002 -0112_11_5,-74.6498926,39.53210162,7502 SMITH AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_11_6,-74.75284367,39.45358408,7490 SMITH AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_11_7,-74.90369619,39.50362667,7478 SMITH AVENUE,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_11_8,-74.6033022,39.32889188,7466 SMITH AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_11_9,-74.72796516,39.59002752,7454 SMITH AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1100_3,-74.48501452,39.47413082,4881 DROSERA STREET,HAMILTON TWP,17,1963,1,RES1,3002 -0112_1100_4,-74.483622,39.3347785,3205 COLOGNE AVE,HAMILTON TWP,17,1940,1,RES1,3001 -0112_1100_5,-74.51313085,39.3278142,3213 COLOGNE AVE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_1100_6,-74.606673,39.501957,3219 COLOGNE AVE,HAMILTON TWP,17,1949,1,RES3A,3001 -0112_1101_10.01,-74.5170885,39.4114525,22 BUCKINGHAM WAY,HAMILTON TWP,17,2001,1,RES3A,3001 -0112_1101_10.02,-74.628779,39.348414,20 BUCKINGHAM WAY,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1101_10.03,-74.71797217,39.58570638,18 BUCKINGHAM WAY,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1101_10.04,-74.61032916,39.31877749,16 BUCKINGHAM WAY,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1101_10.05,-74.4941581,39.33598016,14 BUCKINGHAM WAY,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1101_10.06,-74.8011875,39.63871833,12 BUCKINGHAM WAY,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1101_10.07,-74.44748867,39.35728893,10 BUCKINGHAM WAY,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1101_10.08,-74.4653715,39.494622,8 BUCKINGHAM WAY,HAMILTON TWP,17,1998,1,RES1,3001 -0112_1101_10.09,-74.50452743,39.32930584,6 BUCKINGHAM WAY,HAMILTON TWP,17,1999,1,GOV1,3004 -0112_1101_10.10,-74.877829,39.593436,4 BUCKINGHAM WAY,HAMILTON TWP,17,1998,1,RES1,3001 -0112_1101_10.11,-74.53636772,39.3135629,2 BUCKINGHAM WAY,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1101_15,-74.48082168,39.34211583,528 PINE NEEDLE DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1101_2.08,-74.566306,39.359674,14 PINE CREEK DRIVE,HAMILTON TWP,17,2015,1,RES1,3001 -0112_1101_4.01,-74.566342,39.47648,554 WILLOW OAK DRIVE,HAMILTON TWP,18,1995,1,RES1,3001 -0112_1101_4.02,-74.79122863,39.63682878,524 WILLOW OAK DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_1101_4.03,-74.627,39.4081675,540 WILLOW OAK DRIVE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1101_4.04,-74.4253605,39.3646765,536 WILLOW OAK DRIVE,HAMILTON TWP,18,1995,1,RES1,3001 -0112_1101_4.05,-74.58498268,39.37514272,532 WILLOW OAK DRIVE,HAMILTON TWP,18,2000,1,RES1,3001 -0112_1101_4.07,-74.55657051,39.37145401,520 WILLOW OAK DRIVE,HAMILTON TWP,18,1988,1,RES1,3001 -0112_1101_4.09,-74.7183012,39.48038186,512 WILLOW OAK DRIVE,HAMILTON TWP,19,1988,1,COM1,3002 -0112_1101_4.11,-74.52579203,39.38460831,504 WILLOW OAK DRIVE,HAMILTON TWP,19,2003,1,COM1,3004 -0112_1101_4.12,-74.8009695,39.623607,500 WILLOW OAK DRIVE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_1101_4.13,-74.69423105,39.4180237,501 WILLOW OAK DRIVE,HAMILTON TWP,18,1990,1,RES1,3001 -0112_1101_4.14,-74.5051705,39.332858,550 WILLOW OAK DRIVE,HAMILTON TWP,17,1989,1,RES3A,3001 -0112_1101_5.01,-74.51254581,39.48919739,505 WILLOW OAK DRIVE,HAMILTON TWP,18,2008,1,RES1,3001 -0112_1101_5.02,-74.4979645,39.4110405,504 SUN PINE DRIVE,HAMILTON TWP,16,1936,1,RES1,3001 -0112_1101_6.01,-74.505962,39.478558,559 WILLOW OAK DRIVE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_1101_6.02,-74.55989891,39.41541784,555 WILLOW OAK DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1101_6.03,-74.68255478,39.3921149,551 WILLOW OAK DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1101_7,-74.526424,39.4099715,500 SUN PINE DRIVE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_1101_8.01,-74.50653983,39.3306872,554 SUN PINE DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1101_8.02,-74.92911973,39.48848237,540 SUN PINE DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1101_8.03,-74.5054385,39.443768,530 SUN PINE DRIVE,HAMILTON TWP,18,1995,1,RES1,3001 -0112_1101_8.04,-74.712848,39.466481,520 SUN PINE DRIVE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1101_8.05,-74.4606755,39.3510895,510 SUN PINE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1101_8.06,-74.91110763,39.51162716,502 SUN PINE DRIVE,HAMILTON TWP,18,1990,1,RES1,3001 -0112_1101_8.07,-74.6400315,39.529673,501 SUN PINE DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1101_8.08,-74.62250798,39.60016377,503 SUN PINE DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1101_8.09,-74.5384705,39.375195,512 SUN PINE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1101_8.11,-74.37804353,39.41477817,535 SUN PINE DRIVE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_1101_8.12,-74.497508,39.4334655,520 PINE NEEDLE DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1101_8.13,-74.5388345,39.5377905,530 PINE NEEDLE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1101_8.14,-74.660129,39.5167325,535 PINE NEEDLE DRIVE,HAMILTON TWP,18,1996,1,RES1,3001 -0112_1101_8.15,-74.6631825,39.45575,541 PINE NEEDLE DRIVE,HAMILTON TWP,18,1995,1,RES1,3001 -0112_1101_9,-74.55969706,39.37188829,539 PINE NEEDLE DRIVE,HAMILTON TWP,15,1925,2,RES1,3001 -0112_1102_1,-74.565777,39.531544,105 SUNNY AVENUE,HAMILTON TWP,51,1970,1,RES1,3001 -0112_1102_12,-74.49328119,39.33407571,167 SUNNY AVENUE,HAMILTON TWP,51,1964,1,RES1,3001 -0112_1103_3,-74.925842,39.47535927,4618 MAYS LANDING SP RD,HAMILTON TWP,,1950,1,RES1,3001 -0112_1107_54,-74.55987388,39.39270953,4625 VEGA AVENUE,HAMILTON TWP,16,1938,1,RES1,3001 -0112_1108_1,-74.47875391,39.3492944,HELIOS AVENUE,HAMILTON TWP,,1934,1,RES1,3001 -0112_1108_65,-74.86259613,39.43591453,4657 HOLLY AVENUE,HAMILTON TWP,,1938,1,RES1,3001 -0112_1108_9,-74.5773615,39.3549415,4656 HELIOS AVENUE,HAMILTON TWP,,1937,1,RES1,3001 -0112_1110_1,-74.63852944,39.51752843,4650 OCEAN AVENUE,HAMILTON TWP,51,1960,1,RES1,3001 -0112_1110_51,-74.596681,39.43173,4653 HELIOS AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1112_1,-74.9093225,39.4968025,4658 PACIFIC AVENUE,HAMILTON TWP,,1936,1,EDU1,3004 -0112_1112_11,-74.50437984,39.40697166,4670 PACIFIC AVENUE,HAMILTON TWP,17,1993,1,COM10,3003 -0112_1112_13,-74.5303075,39.386828,4675 OCEAN AVENUE,HAMILTON TWP,17,2001,1,COM1,3004 -0112_1112_28,-74.49335469,39.33361647,4661 OCEAN AVENUE,HAMILTON TWP,51,1964,1,RES1,3001 -0112_1113_1,-74.5664254,39.34900181,4656 MEMORY LANE,HAMILTON TWP,,1962,1,GOV1,3004 -0112_1113_11,-74.59254845,39.37034006,166 SUNNY AVENUE,HAMILTON TWP,16,1989,1,RES1,3001 -0112_1113_4,-74.64765862,39.53233043,4662 MEMORY LANE,HAMILTON TWP,,1934,1,RES1,3001 -0112_1113_5,-74.60558167,39.32513254,4664 MEMORY LANE,HAMILTON TWP,15,1942,1,GOV1,3004 -0112_1113_6,-74.6061305,39.490502,4666 MEMORY LANE,HAMILTON TWP,,1937,1,RES1,3001 -0112_1114_1,-74.589498,39.328969,4660 CRESCENT BLVD.,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1114_6.01,-74.7107355,39.637883,18 SUNNY AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_1114_6.02,-74.73411612,39.46107069,118 SUNNY AVENUE,HAMILTON TWP,51,1975,1,RES1,3001 -0112_1115_1,-74.866136,39.494321,4644 CRESCENT BLVD,HAMILTON TWP,,1956,1,RES1,3001 -0112_1117_4,-74.485762,39.348481,4630 MEMORY LANE,HAMILTON TWP,16,1952,1,RES1,3001 -0112_1117_7,-74.65178378,39.45906534,4638 MEMORY LANE,HAMILTON TWP,51,1970,1,RES1,3001 -0112_1118_1,-74.71488293,39.43266056,89 CRESCENT BLVD,HAMILTON TWP,,1962,1,RES1,3001 -0112_1119_10,-74.49944317,39.331917,154 CRESCENT BLVD,HAMILTON TWP,17,1984,2,RES1,3001 -0112_1119_14,-74.7157325,39.435836,96 CRESCENT BLVD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1119_15,-74.80306067,39.62738403,90 CRESCENT BLVD,HAMILTON TWP,16,1930,1,RES3A,3001 -0112_1119_16,-74.37384051,39.41422583,84 CRESCENT BLVD,HAMILTON TWP,16,1954,1,RES1,3001 -0112_1119_20,-74.511973,39.3295225,76 CRESCENT BLVD,HAMILTON TWP,,1946,1,RES1,3001 -0112_1119_27,-74.50576583,39.33149651,58 CRESCENT BOULEVARD,HAMILTON TWP,17,2015,1,RES1,3001 -0112_1119_28.01,-74.73990798,39.63946283,52 CRESCENT BLVD,HAMILTON TWP,17,1927,1,RES1,3001 -0112_1119_29,-74.820679,39.397813,48 CRESCENT BLVD,HAMILTON TWP,17,2003,1,RES1,3002 -0112_1119_3,-74.60169314,39.47983972,355 PENNY LANE,HAMILTON TWP,16,1954,1,RES1,3001 -0112_1119_33,-74.41929996,39.37003182,40 CRESCENT BLVD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1119_4,-74.50839044,39.32836524,351 PENNY LANE,HAMILTON TWP,17,1936,1,RES1,3001 -0112_1119_5,-74.5541645,39.4712445,300 PENNY LANE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_1120_1,-74.50558532,39.43710067,RIVER PATH,HAMILTON TWP,,1992,1,REL1,3004 -0112_1121_1,-74.47392499,39.34193666,4678 MAYS LANDING SP RD,HAMILTON TWP,,1971,1,RES1,3001 -0112_1121_12,-74.49097438,39.44160271,4559 CATAWBA AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_1121_13,-74.48739681,39.33336453,4555 CATAWBA AVENUE,HAMILTON TWP,16,1979,1,RES1,3001 -0112_1121_14,-74.57679768,39.35288101,4551 CATAWBA AVENUE,HAMILTON TWP,18,1995,1,RES1,3001 -0112_1121_16,-74.56817872,39.36841645,4523 CATAWBA AVENUE,HAMILTON TWP,17,1986,1,RES3A,3001 -0112_1121_18,-74.66750628,39.46335097,4519 CATAWBA AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1121_19,-74.76696084,39.31188146,4515 CATAWBA AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_1121_2,-74.4880425,39.3344765,4662 MAYS LANDING SP RD,HAMILTON TWP,15,1940,1,RES1,3001 -0112_1121_22,-74.5012321,39.42504837,4509 CATAWBA AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_1121_24,-74.55041035,39.4750722,4501 CATAWBA AVENUE,HAMILTON TWP,16,1986,1,REL1,3003 -0112_1121_26,-74.51975644,39.32127633,4500 CATAWBA AVENUE-REAR,HAMILTON TWP,14,1950,1,RES1,3001 -0112_1121_27,-74.602209,39.421427,4504 CATAWBA AVENUE-REAR,HAMILTON TWP,16,1962,1,RES1,3001 -0112_1121_28,-74.37418955,39.41657763,4510 CATAWBA AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_1121_3.01,-74.71694702,39.39896082,4654 MAYS LANDING SP RD,HAMILTON TWP,,1886,1,RES1,3001 -0112_1121_3.02,-74.51561452,39.39584783,4652 MAYS LANDING SP RD,HAMILTON TWP,17,2016,1,RES1,3001 -0112_1121_3.04,-74.69726,39.4820825,4646 MAYS LANDING SP RD,HAMILTON TWP,17,1995,1,GOV1,3004 -0112_1121_3.05,-74.5554405,39.369851,4642 MAYS LANDING SP RD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1121_30,-74.97150355,39.51655436,4518 CATAWBA AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1121_31,-74.7029604,39.63324719,4518 MAYS LANDING SP RD,HAMILTON TWP,17,1977,1,GOV1,3004 -0112_1121_32,-74.50832331,39.32962434,550 WEST AVENUE,HAMILTON TWP,17,1968,1,RES3A,3001 -0112_1121_35,-74.468431,39.345136,4556 CATAWBA AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_1121_37,-74.59686162,39.33953366,4564 CATAWBA AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_1121_39,-74.5069185,39.341126,4570 CATAWBA AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1121_4.01,-74.9315715,39.5302895,4630 MAYS LANDING SP RD,HAMILTON TWP,17,1967,1,RES1,3001 -0112_1121_4.04,-74.64848438,39.45576707,4622 MAYS LANDING SP RD,HAMILTON TWP,,0,1,RES1,3001 -0112_1121_5,-74.64779095,39.50749285,4612 MAYS LANDING SP RD,HAMILTON TWP,,1900,1,RES1,3001 -0112_1121_6.01,-74.6182055,39.360083,4604 CATAWBA AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1121_7,-74.50153115,39.43064595,4569 CATAWBA AVENUE,HAMILTON TWP,17,1986,1,RES1,3002 -0112_1121_9,-74.46586419,39.49898611,4563 CATAWBA AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_1122_1.01,-74.57311683,39.5558845,4966 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1122_1.02,-74.4061735,39.3822915,4954 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1122_1.03,-74.50464869,39.4632575,4946 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1122_11.01,-74.5715606,39.35518313,605 ASHLAND AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_1122_11.02,-74.52358847,39.46875567,613 ASHLAND AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1122_11.03,-74.58517095,39.3764533,621 ASHLAND AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1122_11.04,-74.488332,39.532202,629 ASHLAND AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1122_12,-74.502432,39.327309,4800 MAYS LANDING SP RD,HAMILTON TWP,16,1962,1,RES1,3001 -0112_1122_13,-74.48731,39.34777479,2 WEXFORD LANE,HAMILTON TWP,,2018,1,RES1,3001 -0112_1122_13.01,-74.5994935,39.320721,4 WEXFORD LANE,HAMILTON TWP,18,2006,1,RES1,3001 -0112_1122_13.02,-74.48283214,39.34137315,6 WEXFORD LANE,HAMILTON TWP,18,2006,1,RES1,3001 -0112_1122_13.03,-74.556766,39.398055,8 WEXFORD LANE,HAMILTON TWP,18,2006,1,RES1,3001 -0112_1122_13.04,-74.50331288,39.46323026,10 WEXFORD LANE,HAMILTON TWP,18,2008,1,RES1,3001 -0112_1122_13.05,-74.6978595,39.4407105,12 WEXFORD LANE,HAMILTON TWP,18,2007,1,RES1,3001 -0112_1122_14,-74.610489,39.3412655,4844 MAYS LANDING SP RD,HAMILTON TWP,17,1975,1,RES1,3001 -0112_1122_15.01,-74.61719245,39.3208238,1 HOMEWOOD COURT,HAMILTON TWP,18,2004,1,RES1,3001 -0112_1122_15.02,-74.6806319,39.56316287,3 HOMEWOOD COURT,HAMILTON TWP,18,2005,1,RES1,3001 -0112_1122_15.04,-74.51785983,39.40149171,5 HOMEWOOD COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1122_15.05,-74.54548367,39.38500454,7 HOMEWOOD COURT,HAMILTON TWP,18,2004,1,RES1,3001 -0112_1122_15.06,-74.62534347,39.35670001,9 HOMEWOOD COURT,HAMILTON TWP,18,2004,1,RES1,3001 -0112_1122_15.07,-74.48230036,39.51827318,11 HOMEWOOD COURT,HAMILTON TWP,18,2004,1,RES1,3001 -0112_1122_15.08,-74.43169426,39.36782909,13 HOMEWOOD COURT,HAMILTON TWP,18,2005,1,RES1,3001 -0112_1122_15.09,-74.892861,39.5557685,12 HOMEWOOD COURT,HAMILTON TWP,18,2004,1,RES1,3001 -0112_1122_15.10,-74.56467175,39.41361261,10 HOMEWOOD COURT,HAMILTON TWP,18,2007,1,RES1,3001 -0112_1122_15.11,-74.69511801,39.48525019,8 HOMEWOOD COURT,HAMILTON TWP,18,2004,1,RES1,3001 -0112_1122_15.12,-74.81578865,39.62190004,6 HOMEWOOD COURT,HAMILTON TWP,18,2007,1,RES1,3001 -0112_1122_15.13,-74.54813954,39.36115284,4 HOMEWOOD COURT,HAMILTON TWP,18,2006,1,RES1,3001 -0112_1122_15.14,-74.577913,39.4122635,2 HOMEWOOD COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1122_16.01,-74.77909829,39.59321775,605 WHISPERING WOODS CT.,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1122_16.02,-74.488884,39.43748088,611 WHISPERING WOODS COUR,HAMILTON TWP,18,1999,1,RES1,3001 -0112_1122_16.03,-74.59066916,39.32020935,619 WHISPERING WOODS COUR,HAMILTON TWP,18,1992,1,RES1,3001 -0112_1122_16.04,-74.9364335,39.4968515,623 WHISPERING WOODS CT.,HAMILTON TWP,18,2002,1,RES1,3001 -0112_1122_16.05,-74.5916358,39.31549901,627 WHISPERING WOODS COUR,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1122_16.07,-74.54259898,39.38052515,632 WHISPERING WOODS COUR,HAMILTON TWP,17,1993,1,RES1,3001 -0112_1122_16.08,-74.4624025,39.355735,628 WHISPERING WOODS COUR,HAMILTON TWP,18,1995,1,RES1,3001 -0112_1122_16.09,-74.64645239,39.54933638,624 WHISPERING WOODS COUR,HAMILTON TWP,18,1992,1,RES1,3001 -0112_1122_16.10,-74.5165165,39.323375,620 WHISPERING WOODS COUR,HAMILTON TWP,17,2009,1,AGR1,3001 -0112_1122_16.12,-74.52264005,39.32005767,612 WHISPERING WOODS COUR,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1122_16.13,-74.885244,39.59555,608 WHISPERING WOODS COUR,HAMILTON TWP,18,1997,1,RES1,3001 -0112_1122_16.14,-74.45356789,39.50120088,604 WHISPERING WOODS CT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1122_17.01,-74.4720834,39.4932425,4828 MAYS LANDING SP RD,HAMILTON TWP,17,1994,1,GOV1,3004 -0112_1122_17.03,-74.76204048,39.63937117,4978 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1990,1,GOV1,3004 -0112_1122_17.04,-74.52464791,39.46350077,4820 MAYS LANDING SP RD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1122_17.05,-74.48275132,39.33959651,4812 MAYS LANDING SP RD,HAMILTON TWP,17,1990,1,REL1,3004 -0112_1122_2.01,-74.51548871,39.4442105,4940 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1122_2.02,-74.63272884,39.36343712,4936 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1122_2.03,-74.36141884,39.41764947,4930 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_1122_3,-74.5471419,39.46895373,4924 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1122_4.02,-74.514293,39.40006517,4910 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_1122_4.03,-74.44245411,39.37204388,4904 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_1123_1.01,-74.49925981,39.43430685,4725 THELMA AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1123_1.02,-74.695173,39.497132,4717 THELMA AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1123_1.03,-74.79116921,39.64453975,4709 THELMA AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1123_2,-74.7641315,39.6365115,4701 THELMA AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1123_3,-74.51925848,39.47083817,4685 THELMA AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1124_1.02,-74.948956,39.519182,4627 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1124_1.03,-74.70052345,39.36977165,4623 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1124_1.04,-74.374283,39.3989125,4619 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1124_1.05,-74.9121905,39.5136995,4615 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3002 -0112_1124_1.06,-74.5591861,39.35790232,4611 THELMA AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1124_1.07,-74.81284415,39.47012003,4607 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1124_1.08,-74.4012897,39.3895737,4603 THELMA AVENUE,HAMILTON TWP,17,2002,1,COM1,3004 -0112_1124_1.09,-74.9449335,39.519153,4599 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1124_1.10,-74.61849,39.3891855,4595 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1124_1.11,-74.6370135,39.5335515,4591 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1124_1.12,-74.81295063,39.36770482,4587 THELMA AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1125_1.01,-74.60943701,39.32559636,4774 MAYS LANDING SP RD,HAMILTON TWP,16,1920,1,RES1,3001 -0112_1125_1.02,-74.59634104,39.31449302,620 ASHLAND AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1125_1.03,-74.82943367,39.49609816,628 ASHLAND AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1125_1.04,-74.504526,39.3262355,612 ASHLAND AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_1125_24,-74.58185351,39.33057942,4544 MAYS LANDING SP RD,HAMILTON TWP,,1987,3,GOV1,3004 -0112_1125_25,-74.498962,39.448895,4508 MAYS LANDING SP RD,HAMILTON TWP,17,1956,1,GOV1,3004 -0112_1125_26,-74.47912168,39.3497162,4572 MAYS LANDING SP RD,HAMILTON TWP,,0,1,GOV1,3004 -0112_1125_27,-74.50128284,39.33107649,618 SEA RANCH AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_1125_30,-74.5621635,39.4051365,617 SEA RANCH AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_1125_31,-74.4997715,39.40996917,613 SEA RANCH AVENUE,HAMILTON TWP,16,1930,1,RES1,3001 -0112_1125_32,-74.530682,39.3087515,607 SEA RANCH AVENUE,HAMILTON TWP,16,1956,1,COM1,3004 -0112_1125_35,-74.596038,39.318313,4656 MAYS LANDING SP RD,HAMILTON TWP,16,1910,1,GOV1,3004 -0112_1125_36,-74.60056686,39.53079194,4664 MAYS LANDING SP RD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_1125_37.02,-74.495339,39.4317825,4672 MAYS LANDING SP RD,HAMILTON TWP,17,1975,1,GOV1,3004 -0112_1125_37.03,-74.5274405,39.3927475,4676 MAYS LANDING SP RD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1125_38,-74.4889447,39.47135203,4692 MAYS LANDING SP RD,HAMILTON TWP,17,1920,1,GOV1,3004 -0112_1125_39,-74.52740132,39.39499147,4704 MAYS LANDING SP RD,HAMILTON TWP,16,1920,1,GOV1,3004 -0112_1125_40.01,-74.47142367,39.49197702,4712 MAYS LANDING SP RD,HAMILTON TWP,17,1975,1,RES1,3001 -0112_1125_40.02,-74.68559177,39.35554234,4716 MAYS LANDING SP RD,HAMILTON TWP,17,1992,1,RES1,3001 -0112_1125_41.01,-74.5247515,39.319249,4722 MAYS LANDING SP RD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1125_41.02,-74.7016995,39.6330855,4726 MAYS LANDING SP RD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1125_42.01,-74.3638815,39.416012,4732 MAYS LANDING SP RD,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1125_42.02,-74.4610645,39.470017,4736 MAYS LANDING SP RD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1125_43.01,-74.53773066,39.37474736,4742 MAYS LANDING SP RD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1125_43.02,-74.4658215,39.3570525,4750 MAYS LANDING SP RD,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_1125_43.03,-74.4842431,39.34185416,4744 MAYS LANDING SP RD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1125_44.01,-74.59653267,39.43271921,4754 MAYS LANDING SP RD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1125_44.02,-74.49624806,39.45715626,4758 MAYS LANDING SP RD,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_1125_44.03,-74.60694644,39.3887534,4756 MAYS LANDING SP RD,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1125_45,-74.5947924,39.37943973,4766 MAYS LANDING SP RD,HAMILTON TWP,,1960,1,RES1,3001 -0112_1126.01_1,-74.95178424,39.51681503,512 KNOTTINGHAM WAY,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1126.01_2,-74.46762116,39.49224868,527 SHERWOOD ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1126.01_3,-74.53212456,39.30758958,517 SHERWOOD ROAD,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1126.01_4,-74.78526404,39.62361711,504 KNOTTINGHAM WAY,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_1126.01_5,-74.80449873,39.6313947,508 KNOTTINGHAM WAY,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_1.01,-74.80224705,39.63448815,4776 THELMA AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1126_1.02,-74.56743323,39.3548136,4772 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1126_1.03,-74.4953035,39.4608935,4768 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1126_1.04,-74.50986216,39.46665153,4764 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1126_1.05,-74.59001663,39.31812118,4760 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1991,1,COM3,3004 -0112_1126_1.06,-74.511448,39.338076,4756 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,2000,1,GOV1,3004 -0112_1126_1.07,-74.51992005,39.32114967,4752 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_1126_1.08,-74.51562683,39.32447651,4748 OCEAN HEIGHTS AVENUE,HAMILTON TWP,16,1996,1,RES1,3001 -0112_1126_1.09,-74.792771,39.6344315,4740 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_1126_1.10,-74.82809961,39.38259771,4700 THELMA AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1126_1.11,-74.61562782,39.37197198,4692 THELMA AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1126_1.12,-74.568569,39.3692135,4686 THELMA AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1126_1.13,-74.79699316,39.63660916,4680 THELMA AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1126_1.14,-74.94527163,39.52716309,4668 THELMA AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1126_1.15,-74.47157814,39.49156063,4662 THELMA AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1126_1.16,-74.450787,39.492848,4650 THELMA AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_1126_1.18,-74.606587,39.3967835,4804 THELMA AVENUE,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_1126_1.19,-74.77941437,39.67123803,4658 THELMA AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1126_11,-74.57535145,39.42845734,4555 THELMA AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1126_2.02,-74.92638921,39.48844875,4684 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_1126_2.03,-74.8083725,39.559554,4680 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_1126_2.04,-74.57031482,39.34187608,4674 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1126_2.05,-74.884517,39.600088,4708 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_2.06,-74.49532621,39.45401352,4700 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_2.07,-74.450066,39.3539385,4692 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1999,1,IND3,3002 -0112_1126_3.01,-74.9623495,39.511648,4648 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_1126_3.02,-74.74924365,39.45229166,4640 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1126_3.03,-74.54752816,39.37232804,4636 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_1126_3.05,-74.57717557,39.42406164,4658 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_1126_4.01,-74.36734439,39.42216481,524 KNOTTINGHAM WAY,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_4.02,-74.94315219,39.52580196,538 SHERWOOD ROAD,HAMILTON TWP,17,2001,1,GOV1,3004 -0112_1126_4.03,-74.5003586,39.48769861,534 SHERWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1126_4.04,-74.7009265,39.6322235,530 SHERWOOD ROAD,HAMILTON TWP,17,1995,1,RES1,3001 -0112_1126_4.05,-74.62956282,39.42233848,528 SHERWOOD ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1126_4.06,-74.47826988,39.44913502,526 SHERWOOD ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1126_4.07,-74.86130609,39.61953221,518 SHERWOOD ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_4.08,-74.61431935,39.48700593,514 SHERWOOD ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_4.09,-74.86478483,39.60749097,510 SHERWOOD ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_4.11,-74.570852,39.414167,502 SHERWOOD ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_4.12,-74.5067205,39.435855,500 SHERWOOD ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1126_4.13,-74.75369525,39.44967445,503 SHERWOOD ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1126_4.14,-74.60269706,39.36662371,505 SHERWOOD ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1126_4.15,-74.469913,39.487253,509 SHERWOOD ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1126_4.16,-74.5257975,39.385136,513 KNOTTINGHAM WAY,HAMILTON TWP,17,1995,1,RES1,3001 -0112_1126_4.17,-74.848859,39.6114285,517 KNOTTINGHAM WAY,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1126_4.18,-74.687253,39.555987,525 KNOTTINGHAM WAY,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1126_5,-74.550302,39.3875095,4548 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1126_6.01,-74.55351593,39.46508622,4546 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1126_6.02,-74.54555954,39.38758584,4542 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1126_6.03,-74.50226756,39.32746118,4538 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1126_6.04,-74.53152077,39.38683662,4534 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1126_6.05,-74.53687143,39.38599367,4530 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1126_6.06,-74.537574,39.385829,4526 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1126_6.07,-74.54048028,39.38568669,4522 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1126_6.08,-74.55275331,39.39091137,4518 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1126_6.09,-74.54501813,39.39010233,4514 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1126_7.01,-74.59366586,39.37833819,4510 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1126_7.02,-74.50833716,39.33723195,4506 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_1126_7.03,-74.63614865,39.30762356,4502 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_1126_8.01,-74.87372955,39.57475866,4468 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_1126_8.02,-74.61939564,39.42488917,4464 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_1126_8.03,-74.55283,39.382468,4456 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_1126_9.01,-74.38334867,39.39962282,4450 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1127_1,-74.63705834,39.3820885,5069 MAYS LANDING SP RD,HAMILTON TWP,16,1887,1,RES1,3001 -0112_1127_17,-74.54534033,39.37557451,4849 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1127_18,-74.83763331,39.38910904,4801 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1127_5,-74.51464374,39.39602802,5025 MAYS LANDING SP RD,HAMILTON TWP,17,1972,1,RES1,3001 -0112_1127_6,-74.6393735,39.5345135,5019 MAYS LANDING SP RD,HAMILTON TWP,17,1880,1,RES1,3001 -0112_1128_10,-74.4136215,39.3634865,608 SALMA TERRACE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1128_11,-74.5870315,39.329995,612 SALMA TERRACE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1128_12,-74.59880024,39.41145174,616 SALMA TERRACE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1128_13,-74.84597722,39.37698945,620 SALMA TERRACE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1128_14,-74.3788525,39.4003405,624 SALMA TERRACE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1128_15,-74.62824,39.4618955,628 SALMA TERRACE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1128_18,-74.57641484,39.33323626,629 SALMA TERRACE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1128_19,-74.83147199,39.40671915,625 SALMA TERRACE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1128_20,-74.69827751,39.47918683,621 SALMA TERRACE,HAMILTON TWP,17,1980,1,EDU1,3004 -0112_1128_21,-74.49916921,39.42464941,617 SALMA TERRACE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1128_22,-74.4653185,39.357224,613 SALMA TERRACE,HAMILTON TWP,17,1979,1,GOV1,3004 -0112_1128_23,-74.5884019,39.41493322,609 SALMA TERRACE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1128_24,-74.61354392,39.32026722,605 SALMA TERRACE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1128_25.01,-74.5853955,39.337203,4769 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1991,1,GOV1,3004 -0112_1128_25.02,-74.5119475,39.3280955,4773 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_1128_9,-74.64548182,39.38147647,604 SALMA TERRACE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1129_10,-74.66043373,39.51590118,4603 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1996,1,GOV1,3004 -0112_1129_12,-74.37793314,39.41706575,4607 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1129_9,-74.54399672,39.43538737,4601 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1995,1,RES1,3001 -0112_1130_10,-74.6704708,39.34615218,4501 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1130_13,-74.91261265,39.51059448,4507 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1130_14,-74.461567,39.547467,4509 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1996,1,RES1,3004 -0112_1130_15,-74.500086,39.4172045,4511 OCEAN HEIGHTS AVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1130_9,-74.5261975,39.389405,4487 OCEAN HEIGHTS AVENUE,HAMILTON TWP,,2009,1,GOV1,3004 -0112_1131_3,-74.55773031,39.36660484,4804 HARDING HWY,HAMILTON TWP,16,1942,1,RES1,3001 -0112_1131_4,-74.631143,39.540964,4780 HARDING HWY,HAMILTON TWP,16,1946,1,GOV1,3004 -0112_1131_5.01,-74.65826565,39.36447667,1700 JOHN ASH COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.01_13,-74.708473,39.415486,4480 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.01_16,-74.75719581,39.43309986,4436 BLACK HORSE PIKE,HAMILTON TWP,,1976,1,RES1,3001 -0112_1132.01_17,-74.49146,39.4197365,4426 BLACK HORSE PIKE,HAMILTON TWP,16,1935,4,RES1,3001 -0112_1132.01_19,-74.72865425,39.58740256,4418 BLACK HORSE PIKE,HAMILTON TWP,17,1965,1,GOV1,3004 -0112_1132.01_21,-74.489444,39.3362345,4408 BLACK HORSE PIKE,HAMILTON TWP,16,1960,1,GOV1,3004 -0112_1132.01_22,-74.6438455,39.530597,4404 BLACK HORSE PIKE,HAMILTON TWP,15,1970,1,RES1,3001 -0112_1132.01_25.01,-74.71555966,39.46533448,4307 WEST JERSEY AVENUE,HAMILTON TWP,16,1926,1,RES1,3001 -0112_1132.01_25.02,-74.61378204,39.41143066,4299 WEST JERSEY AVENUE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_1132.01_28,-74.44658237,39.37048775,4251 WEST JERSEY AVENUE,HAMILTON TWP,,1964,1,RES1,3001 -0112_1132.01_31.01,-74.70138348,39.56571772,4171 WEST JERSEY AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_1132.01_31.02,-74.505541,39.4289615,4179 WEST JERSEY AVENUE,HAMILTON TWP,,1976,1,RES1,3001 -0112_1132.01_32,-74.52425676,39.31764183,4163 WEST JERSEY AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1132.01_34,-74.65467807,39.35831661,4153 WEST JERSEY AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_1132.01_4.01,-74.51039712,39.33274882,4624 HARDING HWY,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1132.01_4.02,-74.82069679,39.39026312,4638 HARDING HWY,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1132.01_40.01,-74.57275705,39.35272432,1801 CATES ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.01_41.01,-74.5519735,39.3624165,1855 CATES ROAD,HAMILTON TWP,,1962,1,RES1,3001 -0112_1132.01_47,-74.5018825,39.4295825,4288 BLACK HORSE PIKE,HAMILTON TWP,,1940,1,RES1,3001 -0112_1132.01_49,-74.522209,39.444205,4262 BLACK HORSE PIKE,HAMILTON TWP,,2003,1,RES1,3001 -0112_1132.01_5,-74.37049967,39.40592047,4618 HARDING HWY,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_52,-74.74374416,39.63806447,4236 BLACK HORSE PIKE,HAMILTON TWP,,1947,1,RES1,3001 -0112_1132.01_55,-74.5576835,39.4712865,4212 BLACK HORSE PIKE,HAMILTON TWP,,1995,1,RES1,3001 -0112_1132.01_56,-74.53307148,39.40134849,1979 MCKEE AVENUE,HAMILTON TWP,,1974,1,RES1,3001 -0112_1132.01_57,-74.588431,39.513242,1975 MCKEE AVENUE,HAMILTON TWP,17,1960,1,GOV1,3004 -0112_1132.01_58.01,-74.6093535,39.3860805,1967 MCKEE AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_1132.01_59.01,-74.482189,39.3469665,4203 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.02,-74.573028,39.3508995,4205 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.03,-74.56695498,39.37179947,4207 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.04,-74.44086227,39.35320957,4209 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.05,-74.6391985,39.408979,4211 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.06,-74.44592933,39.3736775,4213 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.07,-74.55332816,39.36228549,4215 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.08,-74.38062619,39.41574017,4217 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.09,-74.54352219,39.45980279,4219 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.11,-74.58746666,39.40794555,4223 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1132.01_59.12,-74.567544,39.3556155,4225 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1132.01_59.13,-74.727945,39.4520885,4227 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1132.01_59.15,-74.9385136,39.52109118,4246 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.16,-74.8349125,39.64122133,4242 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3004 -0112_1132.01_59.17,-74.63605824,39.38532931,4240 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.18,-74.63884199,39.53484717,4238 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.19,-74.5439505,39.3850065,4236 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.22,-74.53524206,39.41633679,4230 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.23,-74.42821989,39.36527512,4228 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.24,-74.46074139,39.47465074,4226 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.25,-74.56327577,39.4065873,4224 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.26,-74.55413567,39.425519,4222 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1132.01_59.27,-74.62590934,39.44023092,4220 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.28,-74.58319709,39.34065368,4218 FAIRWAY DRIVE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_1132.01_59.29,-74.58744104,39.48780218,4216 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.31,-74.5159315,39.399527,4212 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.32,-74.63719386,39.43322009,4210 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.33,-74.634244,39.428299,4208 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.34,-74.490978,39.458718,4206 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_59.35,-74.64675221,39.35727866,4204 FAIRWAY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.01_6,-74.3742415,39.416899,4610 HARDING HIGHWAY,HAMILTON TWP,17,1970,1,GOV1,3004 -0112_1132.01_61,-74.50746222,39.33489081,4202 FAIRWAY DRIVE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_1132.01_62,-74.8628925,39.595561,4201 FAIRWAY DRIVE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_1132.01_7.01,-74.61472552,39.41045333,4566 HARDING HWY,HAMILTON TWP,17,1956,1,RES1,3001 -0112_1132.01_8,-74.6803885,39.443011,4520 HARDING HWY,HAMILTON TWP,17,1900,1,RES1,3001 -0112_1132.01_9,-74.46830853,39.49251518,4502 HARDING HWY,HAMILTON TWP,17,1960,1,RES1,3001 -0112_1132.02_10,-74.59682409,39.32314894,4239 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.02_11,-74.87971785,39.47274951,4241 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.02_12,-74.76553502,39.63684083,4243 FAIRWAY CIRCLE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_1132.02_5,-74.605954,39.319759,4229 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.02_6,-74.78820231,39.41853455,4231 FAIRWAY CIRCLE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_1132.02_7,-74.77930167,39.49985863,4233 FAIRWAY CIRCLE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1132.02_8,-74.42326485,39.37194383,4235 FAIRWAY CIRCLE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_1132.02_9,-74.6414325,39.526789,4237 FAIRWAY CIRCLE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_1132.03_999,-74.59874797,39.31948192,4899 WINTERBURY/ROSEBAY,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.04_2.02,-74.62905685,39.41831155,SUMMERSWEET DRIVE AREA,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.04_3.02,-74.449691,39.357983,HAWTHORNE/BAYBERRY AREA,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.05_1.01,-74.6212555,39.3794805,4674 HARDING HWY,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.05_1.02,-74.58030698,39.40513918,DEER RUN,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.05_2.01,-74.5879745,39.323657,ANDOREA DRIVE AREA,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.06_1,-74.38129201,39.39845289,2 GOLF DRIVE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_10,-74.781943,39.6324835,20 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_11,-74.700298,39.5757585,22 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_12,-74.80307521,39.64014247,24 GOLF DRIVE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1132.06_13,-74.49993262,39.49801773,26 GOLF DRIVE,HAMILTON TWP,17,2003,1,GOV1,3004 -0112_1132.06_14,-74.527998,39.3878705,28 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_15,-74.37452354,39.41127682,30 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_16,-74.61699911,39.3927772,32 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_17,-74.49362383,39.34312103,34 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_18,-74.6562815,39.40065367,36 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_19,-74.7396245,39.650872,38 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_2,-74.68574127,39.35688954,4 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3004 -0112_1132.06_20,-74.50965299,39.39922184,40 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_21,-74.63441028,39.36279603,42 PUTTERS LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.06_22,-74.787181,39.6606395,44 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_23,-74.653254,39.5726345,46 PUTTERS LANE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1132.06_24,-74.4979785,39.5297465,48 PUTTERS LANE,HAMILTON TWP,17,2004,1,RES3A,3001 -0112_1132.06_25,-74.61018926,39.32208198,50 PUTTERS LANE,HAMILTON TWP,17,2004,1,COM3,3004 -0112_1132.06_26,-74.62723843,39.39340377,52 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_27,-74.803542,39.628614,54 PUTTERS LANE,HAMILTON TWP,17,2005,1,GOV1,3004 -0112_1132.06_28,-74.52902718,39.39375552,56 PUTTERS LANE,HAMILTON TWP,17,2004,1,EDU1,3004 -0112_1132.06_29,-74.483471,39.341346,58 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_3,-74.75609205,39.59956309,6 GOLF DRIVE,HAMILTON TWP,17,2004,1,GOV1,3004 -0112_1132.06_30,-74.8579321,39.53466918,60 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_33,-74.503952,39.4431625,66 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_34,-74.66967428,39.46179534,68 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_35,-74.51735432,39.41229102,70 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_36,-74.69580914,39.49900918,72 PUTTERS LANE,HAMILTON TWP,17,2005,1,GOV1,3004 -0112_1132.06_37,-74.61666296,39.37087818,74 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_38,-74.69286978,39.6520367,76 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_39,-74.80879634,39.64221203,78 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_4,-74.62765197,39.41591671,8 GOLF DRIVE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_40,-74.51858664,39.38886047,80 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_41,-74.76508401,39.60465659,82 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_42,-74.5910325,39.4326025,84 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_43,-74.75634479,39.43344161,86 PUTTERS LANE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.06_44,-74.3844237,39.39558894,88 PUTTERS LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.06_45,-74.38240104,39.39879105,90 PUTTERS LANE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_46,-74.484663,39.46310105,92 PUTTERS LANE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_47,-74.46199147,39.35805083,94 PUTTERS LANE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_48,-74.6511895,39.3569655,96 PUTTERS LANE,HAMILTON TWP,17,2002,1,GOV1,3004 -0112_1132.06_49,-74.64352787,39.52752407,98 PUTTERS LANE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_5,-74.92491787,39.50489704,10 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_50,-74.65311834,39.52521053,100 PUTTERS LANE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_51,-74.51073,39.328247,102 PUTTERS LANE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_52,-74.5508316,39.37336913,104 PUTTERS LANE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1132.06_53,-74.6026645,39.3149455,106 PUTTERS LANE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1132.06_6,-74.37551513,39.39705282,12 GOLF DRIVE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_7,-74.75518257,39.44721181,14 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.06_8,-74.48194497,39.34709383,16 GOLF DRIVE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.06_9,-74.4936358,39.47658074,18 GOLF DRIVE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.07_1,-74.54266449,39.39176087,1 PUTTERS LANE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.07_10,-74.4903996,39.33454526,19 PUTTERS LANE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.07_11,-74.63362893,39.36095026,21 PUTTERS LANE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.07_12,-74.542374,39.3962005,23 PUTTERS LANE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1132.07_13,-74.8776283,39.59442442,25 PUTTERS LANE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.07_14,-74.59794853,39.43037377,27 PUTTERS LANE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.07_15,-74.506362,39.3271905,29 PUTTERS LANE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.07_2,-74.518969,39.44179,3 GOLF DRIVE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1132.07_3,-74.75726179,39.61231537,5 GOLF DRIVE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1132.07_4,-74.62818296,39.41748582,7 GOLF DRIVE,HAMILTON TWP,17,2002,1,RES1,3004 -0112_1132.07_5,-74.60814634,39.32233502,9 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.07_6,-74.48848374,39.4544853,11 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.07_7,-74.51044034,39.32307333,13 GOLF DRIVE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1132.07_8,-74.83440032,39.38927407,15 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.07_9,-74.89103868,39.46429292,17 GOLF DRIVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1132.08_11,-74.58336156,39.41666095,22 MONET DRIVE,HAMILTON TWP,17,2015,1,RES1,3001 -0112_1132.08_13,-74.6106435,39.439281,26 MONET DRIVE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.08_2,-74.607322,39.3263005,4 MONET DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.08_21,-74.8349987,39.53571185,42 MONET DRIVE,HAMILTON TWP,17,2018,1,RES1,3001 -0112_1132.08_22,-74.49187427,39.47291939,44 MONET DRIVE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.08_3,-74.4931415,39.3320545,6 MONET DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.08_5,-74.618643,39.4306055,10 MONET DRIVE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.08_7,-74.46549018,39.47804224,14 MONET DRIVE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.09_10,-74.40707332,39.37953058,60 MONET DRIVE,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.09_11,-74.63296679,39.46009675,58 MONET DRIVE,HAMILTON TWP,17,2017,1,RES1,3001 -0112_1132.09_12,-74.62267234,39.38163899,56 MONET DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.09_13,-74.4487855,39.3559115,54 MONET DRIVE,HAMILTON TWP,17,2018,1,RES1,3001 -0112_1132.09_14,-74.62235186,39.37954455,52 MONET DRIVE,HAMILTON TWP,17,2016,1,RES1,3001 -0112_1132.09_15,-74.55129005,39.36201211,50 MONET DRIVE,HAMILTON TWP,17,2018,1,RES1,3001 -0112_1132.09_16,-74.57604061,39.41045835,48 MONET DRIVE,HAMILTON TWP,17,2016,1,RES1,3001 -0112_1132.09_17,-74.38084416,39.39866793,46 MONET DRIVE,HAMILTON TWP,17,2018,1,RES1,3001 -0112_1132.09_2,-74.4514549,39.35444736,76 MONET DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.09_3,-74.54391,39.3879775,74 MONET DRIVE,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.09_4,-74.94633499,39.53414538,72 MONET DRIVE,HAMILTON TWP,17,2017,1,RES1,3001 -0112_1132.09_5,-74.878576,39.4899365,70 MONET DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.09_6,-74.5316355,39.3848685,68 MONET DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.09_7,-74.3975757,39.39487359,66 MONET DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.09_8,-74.8683925,39.495574,64 MONET DRIVE,HAMILTON TWP,17,2018,1,RES1,3001 -0112_1132.09_9,-74.40843559,39.38083142,62 MONET DRIVE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.10_99,-74.60461632,39.36424604,YORKTOWN PLACE,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.11_198,-74.51261267,39.42984207,CONCORD PLACE,HAMILTON TWP,,0,1,RES1,3001 -0112_1132.12_10,-74.80755104,39.60734148,18 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_11,-74.65540056,39.62767447,20 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_12,-74.69168669,39.63800952,22 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_13,-74.60807928,39.48708011,24 SPRINGTON CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_14,-74.84059731,39.41004485,26 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_15,-74.6433215,39.623756,28 SPRINGTON CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_16,-74.63111573,39.44969709,30 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3002 -0112_1132.12_17,-74.8212242,39.36846641,32 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_18,-74.838165,39.4167485,34 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_19,-74.55190389,39.38459443,36 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_2,-74.501779,39.334987,2 SPRINGTON CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_20,-74.55239632,39.38350362,2 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_21,-74.798121,39.4353645,4 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_22,-74.870976,39.602761,6 HILLTOP CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_23,-74.6513515,39.3176605,8 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_24,-74.81409347,39.61642782,10 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_25,-74.81076032,39.63193454,12 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_26,-74.52776817,39.38851408,14 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_27,-74.62654483,39.60857624,16 HILLTOP CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_28,-74.51888686,39.38914368,18 HILLTOP CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_29,-74.59147146,39.43364731,20 HILLTOP CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_3,-74.80512619,39.54661477,4 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_30,-74.6961876,39.56224329,22 HILLTOP CIRCLE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.12_31,-74.60478785,39.34343828,24 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_32,-74.71670394,39.58645785,26 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_33,-74.59450194,39.4341132,28 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_34,-74.51417484,39.45997273,30 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_35,-74.5786195,39.341656,32 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_36,-74.63468104,39.36409204,34 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_37,-74.6367935,39.450338,36 HILLTOP CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_38,-74.6449025,39.4215915,2 GLENDALE CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_39,-74.639349,39.3432355,4 GLENDALE CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_4,-74.60941304,39.32498519,6 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_40,-74.58522798,39.32203617,6 GLENDALE CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.12_41,-74.35644712,39.41315589,8 GLENDALE CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_42,-74.498024,39.518078,10 GLENDALE CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_43,-74.6858195,39.635801,12 GLENDALE CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_44,-74.48392643,39.47270105,14 GLENDALE CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_45,-74.62974118,39.43898055,16 GLENDALE CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_46,-74.66375143,39.44727325,18 GLENDALE CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_47,-74.59943233,39.34380872,20 GLENDALE CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_48,-74.5403985,39.385755,22 GLENDALE CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_49,-74.52889284,39.45799003,24 GLENDALE CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_5,-74.4554255,39.353774,8 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_50,-74.565116,39.4487875,26 GLENDALE CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_51,-74.42429915,39.37201519,28 GLENDALE CIRCLE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_52,-74.5217198,39.44270198,30 GLENDALE CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_57,-74.5228701,39.3899836,2 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,GOV1,3002 -0112_1132.12_58,-74.5178735,39.3951275,4 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_59,-74.64781632,39.52409557,6 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_6,-74.73713184,39.70491701,10 SPRINGTON CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_60,-74.46587328,39.49614502,8 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_61,-74.5441045,39.3878725,10 CRANBERRY DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.12_62,-74.5508495,39.384086,12 CRANBERRY DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.12_63,-74.7093832,39.43001204,14 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_64,-74.51693105,39.45876842,16 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_65,-74.4609865,39.354756,18 PENN OAKS LANE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_66,-74.87226508,39.60335879,20 PENN OAKS LANE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_67,-74.88102213,39.6030188,22 PENN OAKS LANE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.12_7,-74.3656681,39.41457033,12 SPRINGTON CIRCLE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_1132.12_8,-74.5212235,39.316049,14 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.12_9,-74.64802774,39.43082314,16 SPRINGTON CIRCLE,HAMILTON TWP,16,2000,1,RES1,3001 -0112_1132.13_10,-74.637152,39.429419,40 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES3A,3001 -0112_1132.13_100,-74.7228611,39.64611353,262 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_101,-74.71610945,39.43997976,264 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES3A,3001 -0112_1132.13_102,-74.5547135,39.4775475,266 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_103,-74.6013985,39.4346465,268 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_104,-74.55260509,39.38166155,270 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_105,-74.566879,39.4768165,272 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_106,-74.71764536,39.57045555,274 REGENTS CIRCLE,HAMILTON TWP,37,2000,1,RES1,3004 -0112_1132.13_107,-74.54689067,39.37959322,276 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_108,-74.456889,39.4894765,278 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_109,-74.73710151,39.46812067,280 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_11,-74.4296465,39.373314,42 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,GOV1,3004 -0112_1132.13_110,-74.574493,39.3519265,282 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_111,-74.6342235,39.5407855,284 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_112,-74.7265335,39.4528405,286 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_113,-74.5159085,39.324041,288 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_114,-74.78419861,39.66271796,290 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_115,-74.43784026,39.37098799,292 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_116,-74.5996675,39.5219825,294 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_117,-74.65378596,39.41842619,296 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_118,-74.44984602,39.35545883,298 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.13_119,-74.59325345,39.31267035,300 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_12,-74.650123,39.3561555,44 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_13,-74.59693,39.512966,46 CRANBERRY DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_14,-74.60059456,39.34898318,48 CRANBERRY DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_15,-74.55983079,39.47906497,50 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_16,-74.4880285,39.3378695,52 CRANBERRY DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_17,-74.5701275,39.3454335,54 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_18,-74.8104885,39.631132,56 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_19,-74.85741534,39.53587775,58 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_2,-74.64341792,39.43464789,24 PENN OAKS LANE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_20,-74.485812,39.3341885,60 CRANBERRY DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_21,-74.68088284,39.37704763,62 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_22,-74.507521,39.4073745,64 CRANBERRY DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_23,-74.87832746,39.59827489,66 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_24,-74.6279035,39.31558,68 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_25,-74.50222953,39.50217836,70 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_26,-74.65267459,39.45541632,72 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,GOV1,3004 -0112_1132.13_27,-74.6437405,39.4271445,74 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_28,-74.59548408,39.3448409,76 COUNTRYSIDE LANE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_29,-74.55359139,39.47748874,78 COUNTRYSIDE LANE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_3,-74.3585225,39.412999,26 PENN OAKS LANE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_30,-74.88112945,39.49762405,80 COUNTRYSIDE LANE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_31,-74.556734,39.4734525,82 COUNTRYSIDE LANE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_32,-74.62348939,39.31368624,84 COUNTRYSIDE LANE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_33,-74.81285803,39.63228166,86 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_34,-74.5270775,39.4015225,88 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_35,-74.64278172,39.42684238,90 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,GOV1,3004 -0112_1132.13_36,-74.52717504,39.31066766,92 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_37,-74.75742522,39.43383574,94 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_38,-74.65972702,39.41925779,96 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_39,-74.43457664,39.36198252,98 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_4,-74.615833,39.3115875,28 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_40,-74.7752475,39.627587,100 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_41,-74.43697,39.3676535,102 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_42,-74.4978295,39.4972715,104 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_43,-74.5054075,39.4114945,106 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_44,-74.37361976,39.42045583,108 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_45,-74.76089486,39.43231535,110 CHARLESTON CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_46,-74.36577306,39.41331661,112 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_47,-74.7189135,39.654023,114 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_48,-74.58411,39.4196795,116 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_49,-74.5745455,39.4140575,118 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_5,-74.46849698,39.48893792,30 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_50,-74.63320783,39.35820855,120 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_51,-74.42479152,39.36490918,122 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_52,-74.49098198,39.45999135,124 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_53,-74.78612464,39.63366714,126 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,GOV1,3004 -0112_1132.13_54,-74.78548974,39.63257482,128 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_55,-74.53801628,39.46639104,130 CAMELOT CIRCLE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_56,-74.51451196,39.3938437,132 CAMELOT CIRCLE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1132.13_57,-74.62983027,39.36527056,134 CAMELOT CIRCLE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1132.13_58,-74.49962818,39.49895116,136 CAMELOT CIRCLE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_1132.13_6,-74.7980075,39.431686,32 CRANBERRY DRIVE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.13_7,-74.51241467,39.3853855,34 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_8,-74.46113,39.3507955,36 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_84,-74.631812,39.4178705,230 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_85,-74.56114012,39.37222119,232 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_86,-74.49587047,39.52744674,234 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_87,-74.5123005,39.321111,236 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_88,-74.8295085,39.643064,238 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_89,-74.44980441,39.46467631,240 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_9,-74.51078808,39.43642984,38 CRANBERRY DRIVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_1132.13_90,-74.48358493,39.45493742,242 REGENTS CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.13_91,-74.79729224,39.62316451,244 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_92,-74.65917606,39.53546985,246 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_93,-74.409812,39.3819345,248 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_94,-74.4957642,39.45055613,250 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_95,-74.92375205,39.50781026,252 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_96,-74.50639043,39.43621066,254 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_97,-74.60715393,39.32555021,256 REGENTS CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.13_98,-74.478829,39.336929,258 REGENTS CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.13_99,-74.52446416,39.4077017,260 REGENTS CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.14_2,-74.78773617,39.61765033,77 COUNTRYSIDE LANE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.14_3,-74.7620755,39.640189,79 COUNTRYSIDE LANE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.14_4,-74.51256735,39.33170509,81 COUNTRYSIDE LANE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.14_5,-74.80337199,39.60456533,83 COUNTRYSIDE LANE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.14_6,-74.753441,39.4290305,85 COUNTRYSIDE LANE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_1132.17_10,-74.467078,39.3462635,16 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_100,-74.535022,39.305833,80 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_101,-74.62809097,39.50573017,82 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_102,-74.55033313,39.36505312,84 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_103,-74.53798,39.4016625,86 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_104,-74.5247561,39.31651454,88 NORTHRIDGE DRIVE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_105,-74.62722655,39.41413732,90 NORTHRIDGE DRIVE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_106,-74.36031,39.41167467,92 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_107,-74.73492716,39.62890753,94 NORTHRIDGE DRIVE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_108,-74.67322855,39.3465854,96 NORTHRIDGE DRIVE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_109,-74.7944481,39.64080413,98 NORTHRIDGE DRIVE,HAMILTON TWP,37,2000,1,RES3A,3001 -0112_1132.17_11,-74.63912,39.532186,18 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_110,-74.59739414,39.51121545,100 NORTHRIDGE DRIVE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_112,-74.665519,39.39724,104 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_113,-74.87850262,39.54349002,106 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_114,-74.8007965,39.622994,108 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_115,-74.5593554,39.41365882,110 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_116,-74.58711536,39.4318892,112 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,COM3,3004 -0112_1132.17_117,-74.526009,39.506941,114 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_118,-74.54454615,39.37845696,116 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_119,-74.6921205,39.4123405,118 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_12,-74.639248,39.531232,20 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_120,-74.51816382,39.39481793,120 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_121,-74.4625565,39.35266917,122 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_122,-74.79552066,39.61982001,124 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,EDU1,3004 -0112_1132.17_123,-74.5140405,39.394156,126 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_124,-74.81778853,39.61195366,128 PINE KNOLL CIRCLE,HAMILTON TWP,37,2000,1,GOV1,3004 -0112_1132.17_125,-74.5099655,39.3369685,130 PINE KNOLL CIRCLE,HAMILTON TWP,37,2002,1,RES1,3001 -0112_1132.17_126,-74.50164353,39.32660019,132 PINE KNOLL CIRCLE,HAMILTON TWP,37,2002,1,RES1,3001 -0112_1132.17_127,-74.80488343,39.62429336,134 PINE KNOLL CIRCLE,HAMILTON TWP,37,2002,1,RES1,3001 -0112_1132.17_128,-74.54832034,39.44539551,136 PINE KNOLL CIRCLE,HAMILTON TWP,37,2002,1,GOV1,3004 -0112_1132.17_129,-74.53533356,39.48992539,138 PINE KNOLL CIRCLE,HAMILTON TWP,37,2002,1,RES1,3001 -0112_1132.17_13,-74.5885405,39.372729,22 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_130,-74.52590829,39.3833556,140 PINE KNOLL CIRCLE,HAMILTON TWP,37,2002,1,GOV1,3004 -0112_1132.17_131,-74.68198816,39.44402378,142 PINE KNOLL CIRCLE,HAMILTON TWP,37,2002,1,RES1,3001 -0112_1132.17_132,-74.49324739,39.37937603,144 PINE KNOLL CIRCLE,HAMILTON TWP,37,2002,1,RES1,3001 -0112_1132.17_14,-74.59202119,39.43237348,24 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_15,-74.59860222,39.37971123,26 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_16,-74.853101,39.4342905,28 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_18,-74.5495705,39.4678485,32 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES3B,3001 -0112_1132.17_19,-74.400711,39.3847925,34 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_20,-74.88617454,39.47769431,36 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_21,-74.80975144,39.65079916,38 JAMESTOWN CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_22,-74.630805,39.439727,40 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_23,-74.80639504,39.63822816,42 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_24,-74.55650752,39.37607656,44 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_25,-74.5768825,39.34050634,46 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_26,-74.6096397,39.51393234,48 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_27,-74.80484659,39.63136113,50 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_28,-74.48498858,39.33556935,52 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_29,-74.62149228,39.52708278,54 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_3,-74.8098805,39.634781,2 JAMESTOWN CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_30,-74.7810005,39.636022,56 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_31,-74.63357777,39.31943935,58 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_32,-74.64018592,39.39046568,60 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_33,-74.54704546,39.37459384,62 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_34,-74.50098884,39.43299562,64 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_35,-74.5252815,39.3136875,66 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,GOV1,3004 -0112_1132.17_36,-74.60494429,39.40813092,68 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_37,-74.6013282,39.41855902,70 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_38,-74.72781136,39.45203186,72 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_39,-74.5955913,39.36326643,74 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_4,-74.7692268,39.67108016,4 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_40,-74.64589266,39.53331348,76 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,GOV1,3004 -0112_1132.17_41,-74.62530715,39.39377424,78 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_42,-74.87826446,39.59527316,80 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_43,-74.7971725,39.6387425,82 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_44,-74.70734957,39.57392213,84 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,GOV1,3004 -0112_1132.17_45,-74.58079,39.502224,86 JAMESTOWN CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.17_46,-74.65965583,39.63172698,88 JAMESTOWN CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.17_47,-74.601455,39.33063217,90 JAMESTOWN CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.17_48,-74.69227851,39.36067783,92 JAMESTOWN CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.17_49,-74.49377109,39.33687616,94 JAMESTOWN CIRCLE,HAMILTON TWP,37,2004,1,GOV1,3004 -0112_1132.17_5,-74.40112037,39.38237575,6 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_50,-74.53485816,39.37692097,96 JAMESTOWN CIRCLE,HAMILTON TWP,37,2004,1,RES1,3001 -0112_1132.17_51,-74.52282482,39.3835109,98 JAMESTOWN CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_52,-74.71666433,39.57822249,100 JAMESTOWN CIRCLE,HAMILTON TWP,47,2004,1,GOV1,3004 -0112_1132.17_55,-74.78482373,39.63260476,102 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_56,-74.60985,39.490856,104 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_57,-74.57851338,39.33362743,106 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_58,-74.52329347,39.31526733,108 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_59,-74.543505,39.3917845,110 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_6,-74.44872906,39.37152831,8 JAMESTOWN CIRCLE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_60,-74.55409285,39.46895496,112 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_61,-74.36767016,39.41406753,114 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_62,-74.55869499,39.49013946,116 RED BANK DRIVE,HAMILTON TWP,37,2002,1,RES1,3001 -0112_1132.17_63,-74.55628837,39.46906236,118 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_64,-74.57070933,39.41432395,120 RED BANK DRIVE,HAMILTON TWP,37,2001,1,GOV1,3004 -0112_1132.17_65,-74.44066783,39.36784325,122 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_66,-74.5401159,39.45954102,124 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_67,-74.45179517,39.49007018,126 RED BANK DRIVE,HAMILTON TWP,37,2001,1,GOV1,3004 -0112_1132.17_68,-74.48941544,39.43819827,128 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_69,-74.52113557,39.45598278,130 RED BANK DRIVE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_7,-74.51731832,39.41149816,10 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_70,-74.57456403,39.33980212,132 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_71,-74.5986532,39.4317706,134 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_72,-74.60304614,39.43134149,136 RED BANK DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_73,-74.58789,39.430151,26 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_74,-74.6910915,39.4110805,28 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_75,-74.62397866,39.44456949,30 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_76,-74.6033375,39.408187,32 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_77,-74.52732,39.396476,34 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_78,-74.59872512,39.49964444,36 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_79,-74.50750167,39.33546247,38 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,2,RES1,3001 -0112_1132.17_8,-74.884714,39.467946,12 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_80,-74.5566948,39.38288787,40 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_81,-74.87668266,39.60380811,42 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_82,-74.600451,39.3587925,44 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_83,-74.50384,39.408748,46 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_84,-74.853793,39.4035565,48 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,GOV1,3004 -0112_1132.17_85,-74.56934587,39.41220692,50 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_86,-74.61846033,39.37190149,52 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_87,-74.6386845,39.402126,54 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_88,-74.506863,39.428553,56 NORTHRIDGE DRIVE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_89,-74.8111545,39.6607525,58 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_9,-74.7686855,39.6327415,14 JAMESTOWN CIRCLE,HAMILTON TWP,37,2003,1,RES1,3001 -0112_1132.17_90,-74.362362,39.417967,60 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_91,-74.49373683,39.45902577,62 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_92,-74.50519492,39.44821585,64 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_93,-74.6551,39.4022415,66 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_94,-74.639472,39.5282025,68 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_95,-74.538661,39.3744345,70 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_96,-74.4889406,39.4785467,72 NORTHRIDGE DRIVE,HAMILTON TWP,37,2000,1,RES1,3001 -0112_1132.17_97,-74.52986407,39.30981585,74 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_98,-74.85384141,39.62615993,76 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.17_99,-74.85291966,39.60043903,78 NORTHRIDGE DRIVE,HAMILTON TWP,37,2001,1,RES1,3001 -0112_1132.18_1,-74.82935922,39.40657833,136 MEADOW CIRCLE,HAMILTON TWP,,2005,1,RES1,3001 -0112_1132.18_10,-74.8091675,39.6370855,18 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_100,-74.388603,39.390933,198 PHEASANT RUN ROAD,HAMILTON TWP,17,2009,1,GOV1,3004 -0112_1132.18_101,-74.66975424,39.45406475,200 PHEASANT RUN ROAD,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_103,-74.80548068,39.46576505,204 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_104,-74.52531278,39.39218985,206 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_105,-74.80292307,39.63694994,208 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_106,-74.55281225,39.37475365,210 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_107,-74.50382553,39.33714767,212 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_108,-74.49046781,39.4567072,214 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_109,-74.489721,39.3501215,216 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_11,-74.57411331,39.34713097,20 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_110,-74.5022795,39.4313175,218 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_111,-74.38202579,39.41539789,220 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_112,-74.53269407,39.38961232,222 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_113,-74.51587878,39.48480738,224 PHEASANT RUN ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.18_114,-74.6370265,39.5299035,226 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_115,-74.5726765,39.4793105,228 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_116,-74.6217815,39.365711,230 PHEASANT RUN ROAD,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_117,-74.63886616,39.36470917,232 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_118,-74.44895474,39.35511264,234 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_119,-74.481232,39.3530215,236 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.18_12,-74.61957262,39.43177619,22 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_120,-74.6369435,39.351156,238 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_121,-74.449444,39.355725,240 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_122,-74.446138,39.375134,242 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,COM1,3002 -0112_1132.18_123,-74.7862755,39.6394185,244 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_124,-74.50605781,39.42790037,246 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_125,-74.78689447,39.62452017,248 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_127,-74.514511,39.326984,252 PHEASANT RUN ROAD,HAMILTON TWP,17,2013,1,RES1,3001 -0112_1132.18_128,-74.620523,39.42472,254 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_129,-74.56188378,39.36802911,256 PHEASANT RUN ROAD,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_13,-74.46901218,39.3865185,24 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_130,-74.542012,39.3849925,258 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_131,-74.56384868,39.36537902,260 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_132,-74.4570505,39.37401324,262 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,COM1,3004 -0112_1132.18_133,-74.36494989,39.41559944,264 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_134,-74.92384818,39.49542875,266 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_135,-74.63096083,39.36592381,268 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.18_136,-74.44948704,39.37232615,270 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_137,-74.63233409,39.45788205,272 DEERFIELD DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_138,-74.520012,39.401549,274 DEERFIELD DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_139,-74.4804227,39.44976375,276 DEERFIELD DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_14,-74.377861,39.4137675,26 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_140,-74.62567352,39.42276382,278 DEERFIELD DRIVE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_141,-74.78997117,39.63837886,280 DEERFIELD DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.18_142,-74.500092,39.4915485,282 DEERFIELD DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_143,-74.559734,39.3645105,284 DEERFIELD DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_144,-74.6246231,39.46360782,286 DEERFIELD DRIVE,HAMILTON TWP,17,2011,1,COM1,3004 -0112_1132.18_145,-74.457889,39.4948505,288 DEERFIELD DRIVE,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_15,-74.5230565,39.321619,28 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_16,-74.57286484,39.33519191,30 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_17,-74.47083652,39.48430024,32 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_18,-74.54009,39.5034145,34 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_19,-74.64940571,39.45436948,36 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_2,-74.6395055,39.3618635,2 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,GOV1,3004 -0112_1132.18_20,-74.72128418,39.46521058,38 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_21,-74.79054536,39.63535606,40 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_22,-74.830552,39.4881815,42 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_23,-74.574925,39.349682,44 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_24,-74.40396831,39.37977416,46 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES3A,3001 -0112_1132.18_25,-74.83529729,39.47695111,48 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_26,-74.38077776,39.41718859,50 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_27,-74.7159455,39.4644505,52 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_28,-74.37047666,39.40515896,54 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_29,-74.55143522,39.46480504,56 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_3,-74.759699,39.6400655,4 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_30,-74.40554986,39.38030897,58 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_31,-74.53178516,39.38626212,60 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_32,-74.63452824,39.53307557,62 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_33,-74.79615027,39.63260066,64 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_34,-74.86393558,39.60076378,66 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_35,-74.60625399,39.33183673,68 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_36,-74.48171919,39.35271277,70 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,COM1,3004 -0112_1132.18_37,-74.36882277,39.40781816,72 FOX HOLLOW DRIVE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_38,-74.50758658,39.49238738,74 FOX HOLLOW DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.18_39,-74.53159988,39.38747669,76 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_4,-74.8823565,39.5983785,6 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_40,-74.6122275,39.319805,78 FOX HOLLOW DRIVE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_41,-74.56435945,39.44506331,80 FOX HOLLOW DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.18_42,-74.53450986,39.30698907,82 FOX HOLLOW DRIVE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_43,-74.6450475,39.5506085,84 FOX HOLLOW DRIVE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_44,-74.4990925,39.4948625,86 FOX HOLLOW DRIVE,HAMILTON TWP,17,2007,1,EDU1,3004 -0112_1132.18_45,-74.60222694,39.36367341,88 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_46,-74.50614215,39.33023269,90 FOX HOLLOW DRIVE,HAMILTON TWP,17,2009,1,GOV1,3004 -0112_1132.18_47,-74.4802896,39.44226746,92 FOX HOLLOW DRIVE,HAMILTON TWP,17,2009,1,COM1,3004 -0112_1132.18_48,-74.510597,39.457063,94 FOX HOLLOW DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.18_49,-74.4071935,39.379097,96 FOX HOLLOW DRIVE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_5,-74.35754144,39.41309533,8 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_50,-74.6327095,39.4590025,98 FOX HOLLOW DRIVE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_51,-74.45969465,39.35479827,100 FOX HOLLOW DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.18_52,-74.49445548,39.46318422,102 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.18_53,-74.50145967,39.42956955,104 FOX HOLLOW DRIVE,HAMILTON TWP,17,2008,1,RES3A,3001 -0112_1132.18_54,-74.3727895,39.40593,106 FOX HOLLOW DRIVE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_55,-74.38688633,39.3941145,108 FOX HOLLOW DRIVE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_56,-74.56926028,39.42819988,110 FOX HOLLOW DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.18_57,-74.44709519,39.37519306,112 SCENIC LANE,HAMILTON TWP,17,2007,1,RES3A,3001 -0112_1132.18_58,-74.63441569,39.43072103,114 SCENIC LANE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.18_59,-74.80163201,39.54591419,116 MEADOW CIRCLE,HAMILTON TWP,27,2007,1,RES1,3001 -0112_1132.18_6,-74.5879205,39.4152515,10 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,GOV1,3004 -0112_1132.18_60,-74.49954467,39.33423547,118 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES3A,3001 -0112_1132.18_61,-74.596965,39.41727,120 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES3B,3001 -0112_1132.18_62,-74.5148705,39.456378,122 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.18_63,-74.56757999,39.44685729,124 MEADOW CIRCLE,HAMILTON TWP,28,2011,1,RES1,3001 -0112_1132.18_64,-74.59879337,39.31483985,126 MEADOW CIRCLE,HAMILTON TWP,28,2011,1,GOV1,3004 -0112_1132.18_65,-74.5024255,39.465087,128 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.18_66,-74.57238097,39.35231369,130 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES3A,3001 -0112_1132.18_67,-74.3769275,39.399942,132 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.18_68,-74.51941271,39.4252065,134 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES3A,3001 -0112_1132.18_7,-74.50380942,39.34026278,12 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES3A,3001 -0112_1132.18_71,-74.51050278,39.47127603,140 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.18_72,-74.8187555,39.494945,142 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.18_73,-74.50620584,39.43051444,144 MEADOW CIRCLE,HAMILTON TWP,28,2011,1,RES1,3001 -0112_1132.18_74,-74.58102165,39.41189229,146 MEADOW CIRCLE,HAMILTON TWP,28,2011,1,RES1,3001 -0112_1132.18_75,-74.366239,39.4066945,148 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.18_76,-74.63339148,39.42315818,150 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.18_77,-74.50768253,39.40454532,152 MEADOW CIRCLE,HAMILTON TWP,28,2012,1,RES1,3001 -0112_1132.18_78,-74.94287225,39.53307477,154 MEADOW CIRCLE,HAMILTON TWP,28,2012,1,RES1,3001 -0112_1132.18_79,-74.77160956,39.63780284,156 ELLICOT LANE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_8,-74.5876317,39.31204088,14 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_80,-74.3704262,39.41076365,158 ELLICOT LANE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.18_81,-74.64234452,39.33887639,160 ELLICOT LANE,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_82,-74.40511858,39.38098278,162 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_83,-74.5657815,39.3481365,164 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_84,-74.53463015,39.39130433,166 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.18_85,-74.6343735,39.4184415,168 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_87,-74.3730465,39.4108075,172 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.18_88,-74.94386665,39.52467166,174 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.18_89,-74.77768677,39.59297447,176 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.18_9,-74.77774257,39.63264629,16 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.18_90,-74.56517,39.357184,178 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_91,-74.504358,39.33417,180 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.18_92,-74.5733925,39.3526895,182 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_93,-74.36990059,39.40155976,184 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_94,-74.553704,39.4261065,186 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.18_95,-74.48754844,39.4951398,188 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,RES1,3001 -0112_1132.18_96,-74.6353345,39.551671,190 PHEASANT RUN ROAD,HAMILTON TWP,17,2011,1,REL1,3004 -0112_1132.18_97,-74.391452,39.389218,192 PHEASANT RUN ROAD,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.18_98,-74.710908,39.470274,194 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.18_99,-74.62800849,39.43241127,196 PHEASANT RUN ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_1132.19_10,-74.5058305,39.412455,17 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.19_11,-74.56713589,39.34927033,19 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.19_12,-74.518194,39.4451065,21 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.19_13,-74.5183875,39.3868275,23 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3002 -0112_1132.19_14,-74.5405925,39.381035,25 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.19_15,-74.5448004,39.4367303,27 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.19_16,-74.59919297,39.36204531,29 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.19_17,-74.50876133,39.33771103,31 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.19_18,-74.502873,39.411582,33 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES3A,3001 -0112_1132.19_19,-74.46136635,39.35598748,35 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.19_2,-74.49815835,39.50060212,1 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.19_20,-74.4630495,39.358109,37 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.19_21,-74.4692425,39.485466,44 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_22,-74.58827117,39.41179451,42 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_23,-74.9746875,39.510223,40 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_24,-74.6223065,39.314153,38 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_25,-74.49834768,39.33673948,36 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_26,-74.87873383,39.60427168,34 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,GOV1,3004 -0112_1132.19_27,-74.42931533,39.36600083,32 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_28,-74.52186433,39.31923251,30 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES3A,3001 -0112_1132.19_29,-74.41026131,39.38157853,28 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_3,-74.45270853,39.48810381,3 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES3A,3001 -0112_1132.19_30,-74.4500697,39.37247843,26 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_31,-74.9067705,39.4874365,24 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_32,-74.634725,39.532914,22 MEADOW CIRCLE,HAMILTON TWP,28,2006,1,RES1,3001 -0112_1132.19_33,-74.53936241,39.37693852,20 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_34,-74.5107765,39.399508,18 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_35,-74.53277,39.37866234,16 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_36,-74.605045,39.4079325,14 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_37,-74.3697295,39.404093,12 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_38,-74.5850713,39.36335225,10 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_39,-74.48331147,39.35203165,8 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_4,-74.4967515,39.5013655,5 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1132.19_40,-74.607236,39.409535,6 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_41,-74.813369,39.6384045,4 MEADOW CIRCLE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.19_42,-74.42304449,39.37210516,2 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.19_5,-74.3674995,39.421414,7 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES3A,3001 -0112_1132.19_6,-74.5347625,39.4974055,9 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES3A,3001 -0112_1132.19_7,-74.5658145,39.471271,11 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES3A,3001 -0112_1132.19_8,-74.46481258,39.35581821,13 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES3A,3001 -0112_1132.19_9,-74.7922455,39.63418,15 FOX HOLLOW DRIVE,HAMILTON TWP,17,2005,1,RES3B,3001 -0112_1132.20_10,-74.46105,39.355666,55 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.20_11,-74.79558904,39.63207902,64 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_12,-74.50529118,39.32849647,62 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_13,-74.4533154,39.37338121,60 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_14,-74.63222277,39.35702403,58 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_15,-74.56711117,39.4734975,56 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_16,-74.594463,39.31254,54 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_17,-74.5285824,39.45771925,52 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_18,-74.81184802,39.44991819,50 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3002 -0112_1132.20_19,-74.62799537,39.35208901,48 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_2,-74.6470605,39.345144,39 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.20_20,-74.45551208,39.50191429,46 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.20_3,-74.567289,39.476052,41 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.20_4,-74.6133643,39.31944493,43 FOX HOLLOW DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.20_5,-74.45074532,39.35593534,45 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.20_6,-74.36746704,39.4229506,47 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.20_7,-74.80201553,39.63187184,49 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.20_8,-74.68173164,39.4435613,51 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.20_9,-74.488751,39.336446,53 FOX HOLLOW DRIVE,HAMILTON TWP,17,2006,1,RES1,3004 -0112_1132.21_10,-74.60752432,39.32866549,17 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_11,-74.60520045,39.41508119,19 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_12,-74.7299605,39.4533245,21 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_13,-74.43798826,39.35902819,23 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_14,-74.619883,39.4237405,25 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3002 -0112_1132.21_15,-74.362278,39.417406,27 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_16,-74.6017275,39.3648495,29 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_17,-74.81210202,39.63742733,31 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_18,-74.7917975,39.620852,33 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_19,-74.444402,39.3712255,35 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_2,-74.44956266,39.35420651,1 MEADOW CIRCLE,HAMILTON TWP,28,2006,1,RES3A,3001 -0112_1132.21_20,-74.59945989,39.4149775,37 BUCK ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.21_21,-74.51779389,39.38687669,39 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_22,-74.6030015,39.330518,41 BUCK ROAD,HAMILTON TWP,28,2007,1,RES3A,3001 -0112_1132.21_23,-74.8869055,39.4980605,43 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_24,-74.60295791,39.40768169,45 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_25,-74.40692476,39.37777216,47 BUCK ROAD,HAMILTON TWP,28,2007,1,RES1,3002 -0112_1132.21_3,-74.644375,39.3961785,3 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_4,-74.53787865,39.38474405,5 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_5,-74.63084431,39.34973147,7 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_6,-74.4549745,39.4888745,9 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_7,-74.85609115,39.55617496,11 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_8,-74.63166591,39.43195532,13 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.21_9,-74.80747584,39.63573803,15 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.22_10,-74.65993,39.548201,43 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_11,-74.8798075,39.59096,45 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_12,-74.59455,39.3129895,47 MEADOW CIRCLE,HAMILTON TWP,28,2009,1,RES1,3001 -0112_1132.22_13,-74.64401931,39.42965842,49 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_14,-74.45218144,39.49767903,51 MEADOW CIRCLE,HAMILTON TWP,28,2009,1,RES1,3001 -0112_1132.22_15,-74.9394565,39.515764,53 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.22_16,-74.50729777,39.32951634,55 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.22_17,-74.60508516,39.38131428,57 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.22_2,-74.5783393,39.41178917,27 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.22_22,-74.64777,39.339393,67 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_23,-74.6364635,39.343241,69 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_24,-74.49165972,39.46690003,71 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES3A,3001 -0112_1132.22_25,-74.83124642,39.64424556,73 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_26,-74.717366,39.4624945,75 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_27,-74.60426931,39.36501711,77 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_28,-74.4237895,39.3681045,79 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,GOV1,3004 -0112_1132.22_29,-74.70721708,39.47340115,81 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_3,-74.87954587,39.46892672,29 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,REL1,3004 -0112_1132.22_30,-74.523661,39.4742415,83 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_31,-74.58831225,39.41616695,85 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_32,-74.44659459,39.35595019,87 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,IND2,3002 -0112_1132.22_33,-74.4511205,39.352584,89 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_34,-74.87544,39.4610835,91 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_35,-74.568324,39.3488095,93 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,COM10,3003 -0112_1132.22_36,-74.374244,39.4131575,95 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_37,-74.84754959,39.47194714,97 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.22_4,-74.5589255,39.4781035,31 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES3A,3001 -0112_1132.22_5,-74.51385065,39.32818103,33 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.22_6,-74.854181,39.4454325,35 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.22_7,-74.362396,39.419584,37 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.22_8,-74.781787,39.6067005,39 MEADOW CIRCLE,HAMILTON TWP,28,2009,1,RES1,3001 -0112_1132.22_9,-74.43539963,39.36754956,41 MEADOW CIRCLE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_1132.23_10,-74.4613755,39.3570185,223 PHEASANT RUN ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.23_11,-74.6325705,39.447569,174 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.23_12,-74.70328524,39.49132998,172 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.23_13,-74.7924388,39.60287713,170 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES3A,3001 -0112_1132.23_14,-74.545821,39.473992,168 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.23_15,-74.68292218,39.48986879,166 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.23_16,-74.36403194,39.40832763,164 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,AGR1,3001 -0112_1132.23_17,-74.756388,39.635994,162 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.23_18,-74.37470082,39.41102042,160 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.23_19,-74.64461942,39.40819969,158 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES3A,3001 -0112_1132.23_2,-74.77631477,39.59820826,207 PHEASANT RUN ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1132.23_20,-74.94784239,39.51719545,156 MEADOW CIRCLE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_1132.23_3,-74.518825,39.53390022,209 PHEASANT RUN ROAD,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1132.23_4,-74.404035,39.3837285,211 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.23_5,-74.501958,39.337796,213 PHEASANT RUN ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1132.23_6,-74.56691698,39.35752845,215 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.23_7,-74.94439242,39.51843582,217 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.23_8,-74.54234045,39.37446697,219 PHEASANT RUN ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1132.23_9,-74.4947185,39.3295305,221 PHEASANT RUN ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1132.29_10,-74.684942,39.4434865,20 GALLERIA DRIVE,HAMILTON TWP,16,2015,1,RES1,3001 -0112_1132.29_2,-74.48035932,39.34622954,4 GALLERIA DRIVE,HAMILTON TWP,16,2015,1,GOV1,3004 -0112_1132.29_3,-74.61756557,39.36838544,6 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.29_4,-74.5034065,39.3364425,8 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.29_5,-74.58237791,39.35978919,10 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.29_6,-74.80492436,39.63639883,12 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,GOV1,3004 -0112_1132.29_7,-74.4872715,39.5226445,14 GALLERIA DRIVE,HAMILTON TWP,16,2015,1,RES1,3001 -0112_1132.29_8,-74.4804395,39.3429815,16 GALLERIA DRIVE,HAMILTON TWP,16,2015,1,RES1,3001 -0112_1132.29_9,-74.55112953,39.39362348,18 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.30_16,-74.88109472,39.59597946,88 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.30_21,-74.40243222,39.38489392,98 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.30_22,-74.4997128,39.33716854,100 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.30_23,-74.60812844,39.31951632,102 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.30_24,-74.57104752,39.35334939,104 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.30_25,-74.3794125,39.416348,106 GALLERIA DRIVE,HAMILTON TWP,16,2017,1,RES1,3001 -0112_1132.30_26,-74.52918918,39.38961801,108 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.30_27,-74.487803,39.534682,110 GALLERIA DRIVE,HAMILTON TWP,16,2017,1,RES1,3001 -0112_1132.30_28,-74.5691585,39.35350786,112 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.30_29,-74.51835473,39.52816646,114 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.30_36.02,-74.714709,39.408617,4109 WEST JERSEY AVENUE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_1132.31_1,-74.402981,39.3835945,117 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.31_13,-74.7966495,39.460308,93 GALLERIA DRIVE,HAMILTON TWP,16,2017,1,RES1,3001 -0112_1132.31_2,-74.70947078,39.49838829,115 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_20,-74.6779065,39.446473,13 DAVINCI WAY,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_21,-74.55561725,39.356463,11 DAVINCI WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_1132.31_22,-74.62863069,39.39102397,9 DAVINCI WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_1132.31_23,-74.50913191,39.34086347,7 DAVINCI WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_1132.31_24,-74.370888,39.4111155,5 DAVINCI WAY,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_25,-74.4412985,39.3538585,3 DAVINCI WAY,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_26,-74.93624548,39.52204732,1 DAVINCI WAY,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_3,-74.3815904,39.41683863,113 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_4,-74.47844807,39.34666717,111 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES3B,3001 -0112_1132.31_5,-74.5053745,39.4729325,109 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_6,-74.803919,39.637257,107 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_7,-74.811337,39.6240175,105 GALLERIA DRIVE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.31_8,-74.8000975,39.6410555,103 GALLERIA DRIVE,HAMILTON TWP,16,2018,1,RES1,3001 -0112_1132.32_1,-74.62817686,39.43386607,2 DAVINCI WAY,HAMILTON TWP,16,2016,1,RES1,3001 -0112_1132.32_2,-74.62611528,39.4164231,4 DAVINCI WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_1132.32_3,-74.50814464,39.33044563,6 DAVINCI WAY,HAMILTON TWP,16,2015,1,GOV1,3004 -0112_1132.32_4,-74.441786,39.35542,8 DAVINCI WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_1132.33_1,-74.71706167,39.64010685,2 BREWSTER DRIVE,HAMILTON TWP,,0,1,GOV1,3004 -0112_1132.33_10,-74.83745766,39.47231067,20 BREWSTER DRIVE,HAMILTON TWP,16,2009,1,GOV1,3004 -0112_1132.33_11,-74.39649371,39.38911611,22 BREWSTER DRIVE,HAMILTON TWP,16,2009,1,RES1,3001 -0112_1132.33_12,-74.78210683,39.45656391,24 BREWSTER DRIVE,HAMILTON TWP,16,2009,1,RES1,3001 -0112_1132.33_13,-74.6172879,39.31137135,26 BREWSTER DRIVE,HAMILTON TWP,16,2014,1,RES1,3001 -0112_1132.33_14,-74.5607815,39.358271,28 BREWSTER DRIVE,HAMILTON TWP,16,2013,1,GOV1,3004 -0112_1132.33_16,-74.5100615,39.489747,4285 WEST JERSEY AVENUE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_1132.33_2,-74.633977,39.418336,4 BREWSTER DRIVE,HAMILTON TWP,16,2009,1,RES1,3001 -0112_1132.33_27,-74.48855718,39.44488193,4279 WEST JERSEY AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_1132.33_3,-74.44494237,39.51535814,6 BREWSTER DRIVE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_1132.33_4,-74.49593363,39.42739476,8 BREWSTER DRIVE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_1132.33_5,-74.55203223,39.36691316,10 BREWSTER DRIVE,HAMILTON TWP,16,2012,1,RES1,3001 -0112_1132.33_6,-74.47183118,39.34111209,12 BREWSTER DRIVE,HAMILTON TWP,16,2009,1,RES1,3001 -0112_1132.33_7,-74.59820373,39.38448455,14 BREWSTER DRIVE,HAMILTON TWP,16,2008,1,RES3A,3001 -0112_1132.33_8,-74.5014457,39.50232881,16 BREWSTER DRIVE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_1132.33_9,-74.5417725,39.37644,18 BREWSTER DRIVE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_1133_1,-74.6032911,39.33295683,4705 HARDING HIGHWAY,HAMILTON TWP,,1988,1,RES1,3001 -0112_1134_14,-74.46940632,39.48991976,4476 BLACK HORSE PIKE,HAMILTON TWP,,1989,1,RES1,3001 -0112_1134_17.01,-74.79509243,39.63105703,4450 BLACK HORSE PIKE,HAMILTON TWP,,1988,1,RES1,3001 -0112_1134_17.02,-74.36486583,39.40859086,4458 BLACK HORSE PIKE,HAMILTON TWP,,2005,1,RES1,3001 -0112_1134_17.03,-74.57929416,39.52856103,4454 BLACK HORSE PIKE,HAMILTON TWP,,1988,1,RES1,3001 -0112_1134_17.04,-74.8481764,39.5389529,4448 BLACK HORSE PIKE,HAMILTON TWP,,1987,1,RES1,3001 -0112_1134_2,-74.82407759,39.39537982,1932 COLOGNE AVENUE,HAMILTON TWP,,1973,1,COM1,3004 -0112_1134_2.01,-74.9287755,39.5085255,COLOGNE AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_1134_3.02,-74.49706167,39.33043765,4760 BLACK HORSE PIKE,HAMILTON TWP,,1978,1,RES1,3001 -0112_1134_4,-74.45434505,39.4890757,4645 HARDING HWY,HAMILTON TWP,,2017,1,RES1,3001 -0112_1134_6,-74.5369325,39.457717,4684 BLACK HORSE PIKE,HAMILTON TWP,16,1951,1,RES1,3001 -0112_1134_9,-74.6034405,39.310405,4620 BLACK HORSE PIKE,HAMILTON TWP,,1995,1,RES1,3001 -0112_1134_9.01,-74.48592042,39.34820797,4622 BLACK HORSE PIKE,HAMILTON TWP,,1995,1,RES1,3001 -0112_1134_9.02,-74.72626909,39.58952766,4618 BLACK HORSE PIKE,HAMILTON TWP,,2001,1,AGR1,3001 -0112_1134_9.03,-74.8477295,39.376563,4616 BLACK HORSE PIKE,HAMILTON TWP,,2002,1,RES1,3001 -0112_1135.01_1.02,-74.43390774,39.36901298,4900 BLACK HORSE PIKE,HAMILTON TWP,,1986,1,GOV1,3004 -0112_1135.01_1.03,-74.62040339,39.55274024,3401 MONTGOMERY DRIVE,HAMILTON TWP,,1988,1,RES1,3001 -0112_1135.01_1.08,-74.56083946,39.37210121,4900 BLACK HORSE PIKE,HAMILTON TWP,,1986,1,RES1,3001 -0112_1135.01_1.09,-74.6464174,39.43488366,4900 BLACK HORSE PIKE,HAMILTON TWP,,1986,1,RES1,3001 -0112_1135.01_1.10,-74.513186,39.325956,BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.01_10.01,-74.56583835,39.4728998,4501 BLACK HORSE PIKE,HAMILTON TWP,,1946,1,GOV1,3004 -0112_1135.01_10.02,-74.4868675,39.3482635,4403 BLACK HORSE PIKE,HAMILTON TWP,,1987,1,RES1,3001 -0112_1135.01_10.03,-74.51925784,39.31905553,4405 BLACK HORSE PIKE,HAMILTON TWP,,1987,1,RES1,3001 -0112_1135.01_10.10,-74.642401,39.528496,4409 BLACK HORSE PIKE,HAMILTON TWP,,1987,1,RES1,3001 -0112_1135.01_10.11,-74.90735419,39.49608812,4401 BLACK HORSE PIKE,HAMILTON TWP,,1987,1,RES1,3001 -0112_1135.01_12,-74.53848371,39.46019656,2644 LEIPZIG AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_1135.01_13,-74.504166,39.4537495,4532 LOMBARD STREET,HAMILTON TWP,16,1920,1,RES1,3001 -0112_1135.01_14,-74.602134,39.3253535,4496 LOMBARD STREET,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1135.01_15,-74.669167,39.463217,4480 LOMBARD STREET,HAMILTON TWP,16,1938,1,RES1,3001 -0112_1135.01_16,-74.64968583,39.4017004,4460 LOMBARD STREET,HAMILTON TWP,16,1956,1,RES1,3001 -0112_1135.01_17,-74.82015006,39.62188884,4440 LOMBARD STREET,HAMILTON TWP,17,1993,1,RES1,3001 -0112_1135.02_1,-74.5701835,39.413512,BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.04_1,-74.59367142,39.34261176,BAYBERRY COURT AREA,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.05_1,-74.5872305,39.330472,BAYBERRY/COTTONWOOD COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.06_1,-74.5462625,39.4766125,ARBOR COURT AREA,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.07_1,-74.5974715,39.3647705,ARBOR COURT AREA,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.08_1,-74.63363619,39.42264362,2600 WOODLAND DRIVE,HAMILTON TWP,,1986,1,RES1,3001 -0112_1135.09_1,-74.70649479,39.64334275,DOGWOOD/COTTONWOOD/EVERGR,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.10_1,-74.66102488,39.40268263,FORSYTHIA/GOLDENROD COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.11_1,-74.459751,39.353712,PRIMROSE/OLEANDER COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.12_1,-74.747002,39.451424,RHODODENDRON/FOREST COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.13_1,-74.46137799,39.34570312,NUTMEG/OLEANDER COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.14_1,-74.48725869,39.49380777,MIMOSA/NUTMEG COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.15_1,-74.57897839,39.33407909,HAWTHORN COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.16_1,-74.781234,39.6539415,IVY BUSH/HAWTHORN COURT,HAMILTON TWP,,0,1,GOV1,3004 -0112_1135.17_1,-74.80031086,39.35750598,IVY BUSH COURT,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.18_1,-74.6946769,39.44941132,MIMOSA COURT,HAMILTON TWP,,0,1,AGR1,3001 -0112_1135.19_1,-74.881506,39.5948675,JASMINE/JUNIPER/LARKSPUR,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.20_1,-74.568374,39.477858,WOODLAND DRIVE,HAMILTON TWP,,0,1,GOV1,3004 -0112_1135.21_1,-74.61533702,39.32447483,LARKSPUR/JUNIPER/WOODLAND,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.30_10.04,-74.588632,39.4056155,"ALAMO/BOULDER/DURANGO,ETC",HAMILTON TWP,,0,1,RES1,3001 -0112_1135.30_10.09,-74.59378077,39.37994741,2101 WRANGLEBORO ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_1135.31_10.05,-74.592977,39.4285225,FALCON/GRANGE/FLAGSTAFF,HAMILTON TWP,,0,1,RES1,3001 -0112_1136_1,-74.50058,39.3335845,2509 COLOGNE AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_1136_10.01,-74.5457925,39.3767955,4598 PADDOCK STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1136_10.02,-74.5511165,39.4217645,4596 PADDOCK STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1136_10.03,-74.441591,39.36666517,4594 PADDOCK STREET,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1136_12,-74.54429843,39.38474715,4669 ALMOND STREET,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1136_15,-74.6080079,39.32410422,4789 ALMOND STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1136_2,-74.5030322,39.33688665,2525 COLOGNE AVE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_1136_4,-74.65527485,39.39622661,2541 COLOGNE AVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1136_5.01,-74.72608583,39.5880981,2549 COLOGNE AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1136_5.02,-74.4239335,39.3662995,2561 COLOGNE AVE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_1136_7,-74.77652303,39.66647087,4628 PADDOCK STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1136_8,-74.60311424,39.40975082,4602 PADDOCK STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1136_9,-74.57022,39.4131515,4600 PADDOCK STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1137_10,-74.6287955,39.609586,4688 LOMBARD STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_1137_12,-74.51478718,39.32130767,4648 LOMBARD STREET,HAMILTON TWP,17,1970,1,GOV1,3004 -0112_1137_14,-74.7938785,39.6436745,4624 LOMBARD STREET,HAMILTON TWP,16,1925,1,RES1,3001 -0112_1137_15,-74.57207736,39.36673864,4608 LOMBARD STREET,HAMILTON TWP,16,1947,1,RES1,3001 -0112_1137_16,-74.60381663,39.52956774,2741 LEIPZIG AVENUE,HAMILTON TWP,17,1950,1,GOV1,3004 -0112_1137_17.01,-74.72801393,39.44879411,4601 PADDOCK STREET,HAMILTON TWP,17,1940,2,RES1,3001 -0112_1137_17.02,-74.52278568,39.44903721,2533 LEIPZIG AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1137_17.03,-74.59724594,39.33050407,4603 PADDOCK STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1137_19,-74.622586,39.424835,4629 PADDOCK STREET,HAMILTON TWP,17,1976,1,GOV1,3004 -0112_1137_2,-74.78724918,39.64077144,2608 COLOGNE AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_1137_20,-74.49733192,39.51837516,4643 PADDOCK STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_1137_3,-74.62416453,39.41704594,2614 COLOGNE AVE,HAMILTON TWP,17,1959,2,RES1,3001 -0112_1137_4,-74.5489109,39.46792472,2622 COLOGNE AVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1137_5,-74.581425,39.517012,2628 COLOGNE AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_1137_7,-74.45060767,39.35575499,4762 LOMBARD STREET,HAMILTON TWP,17,1962,1,RES1,3001 -0112_1137_8,-74.55737777,39.37510386,4742 LOMBARD STREET,HAMILTON TWP,16,1940,1,COM1,3004 -0112_1138_1,-74.55725379,39.47184347,2718 COLOGNE AVE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_1138_10,-74.6339785,39.419269,4729 LOMBARD STREET,HAMILTON TWP,16,1937,1,RES1,3001 -0112_1138_12,-74.6053885,39.3202455,4733 LOMBARD STREET,HAMILTON TWP,17,1986,1,IND2,3002 -0112_1138_13,-74.68709571,39.54585679,4745 LOMBARD STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_1138_6,-74.57090083,39.41475695,4669 LOMBARD STREET,HAMILTON TWP,16,1920,1,RES1,3001 -0112_1138_9.01,-74.5543985,39.470292,4689 LOMBARD STREET,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_1138_9.02,-74.50497945,39.40667786,4709 LOMBARD STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_1140_2,-74.497817,39.338613,2870 COLOGNE AVENUE,HAMILTON TWP,,1960,1,RES1,3001 -0112_1141_10,-74.60728233,39.61721399,3184 COLOGNE AVE,HAMILTON TWP,16,1900,1,GOV1,3004 -0112_1141_11,-74.5545474,39.39392909,3198 COLOGNE AVENUE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_1141_3,-74.8888745,39.4720055,2976 COLOGNE AVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1141_4,-74.60573182,39.31051548,2978 COLOGNE AVE,HAMILTON TWP,15,1840,1,GOV1,3004 -0112_1141_5,-74.5345975,39.3831005,2996 COLOGNE AVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_1141_7,-74.531296,39.4065625,3032 COLOGNE AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1141_8.01,-74.56069,39.358457,3052 COLOGNE AVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1141_8.02,-74.5963375,39.3612475,3072 COLOGNE AVE,HAMILTON TWP,16,1986,1,GOV1,3004 -0112_1141_8.03,-74.6184065,39.43700977,3124 COLOGNE AVE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_1141_9.01,-74.5312838,39.30812227,3148 COLOGNE AVENUE,HAMILTON TWP,17,1960,1,GOV1,3004 -0112_1141_9.02,-74.68631089,39.51886239,3156 COLOGNE AVE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1141_9.03,-74.48370353,39.43367815,3164 COLOGNE AVENUE,HAMILTON TWP,17,1998,1,GOV1,3004 -0112_1141_9.04,-74.499187,39.41227847,3172 COLOGNE AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1142_1.01,-74.60357479,39.36566353,3208 COLOGNE AVE,HAMILTON TWP,17,1900,1,RES1,3002 -0112_1142_1.02,-74.81702973,39.65562639,4725 DROSERA STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1142_2,-74.5989405,39.316661,3216 COLOGNE AVENUE,HAMILTON TWP,17,1930,1,COM4,3004 -0112_1142_3.01,-74.69992897,39.48221723,4689 DROSERA STREET,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_1142_3.02,-74.73036935,39.58850248,4675 DROSERA STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1142_3.03,-74.56470584,39.35621201,4661 DROSERA STREET,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1142_3.04,-74.92646027,39.50871171,4647 DROSERA STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1143_1,-74.59497105,39.35699132,2716 LEIPZIG AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_1143_2,-74.9297055,39.481243,2740 LEIPZIG AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_1143_3,-74.53111805,39.52928266,4497 LOMBARD STREET,HAMILTON TWP,16,1900,1,RES1,3001 -0112_1143_4,-74.65275994,39.45854062,4477 LOMBARD STREET,HAMILTON TWP,16,1949,1,RES1,3001 -0112_1143_5,-74.4706923,39.48262287,4457 LOMBARD STREET,HAMILTON TWP,16,1996,1,GOV1,3004 -0112_1143_6,-74.53669622,39.47267805,4437 LOMBARD STREET,HAMILTON TWP,16,1980,1,RES1,3001 -0112_1144.01_1,-74.57172161,39.35986728,4000 ALEXANDER DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_1144.01_10,-74.68655221,39.36044088,4018 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.01_11,-74.37172111,39.40281441,4020 ALEXANDER DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.01_2,-74.4980919,39.44157243,4002 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.01_3,-74.4911335,39.3336415,4004 ALEXANDER DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1144.01_4,-74.80816106,39.5294312,4006 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.01_5,-74.79515234,39.64234003,4008 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.01_6,-74.92470982,39.51039738,4010 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_1144.01_7,-74.40665668,39.38057792,4012 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.01_8,-74.53557786,39.39651372,4014 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_1144.01_9,-74.7036195,39.3670475,4016 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.02_1,-74.59359691,39.36515669,4022 ALEXANDER DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.02_10,-74.67046615,39.36813923,4207 KAREN COURT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_11,-74.581002,39.3120885,4206 KAREN COURT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_12,-74.53533003,39.40392769,4204 KAREN COURT,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_1144.02_13,-74.9500015,39.514134,4202 KAREN COURT,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1144.02_14,-74.63693937,39.38531988,4200 KAREN COURT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_15,-74.513259,39.320591,2453 LAHN LANE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_16,-74.45709088,39.35176895,4201 RANDY COURT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_17,-74.63115,39.416131,4203 RANDY COURT,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_1144.02_18,-74.59107415,39.36320441,4205 RANDY COURT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_19,-74.64929135,39.53298595,4207 RANDY COURT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_2,-74.5678475,39.3727805,4024 ALEXANDER DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.02_20,-74.57876217,39.44058469,4209 RANDY COURT,HAMILTON TWP,17,1991,1,RES1,3001 -0112_1144.02_21,-74.6462855,39.530605,4211 RANDY COURT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_22,-74.57360551,39.49460283,4208 RANDY COURT,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.02_23,-74.50352353,39.33684667,4206 RANDY COURT,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1144.02_24,-74.478706,39.339339,4204 RANDY COURT,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1144.02_25,-74.633358,39.3182095,4202 RANDY COURT,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1144.02_26,-74.597583,39.532203,2447 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.02_27,-74.71457018,39.45113416,2445 LAHN LANE,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_1144.02_28,-74.47853533,39.33973805,2443 LAHN LANE,HAMILTON TWP,17,1990,1,GOV1,3004 -0112_1144.02_3,-74.64159756,39.43463583,4026 ALEXANDER DRIVE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_1144.02_4,-74.482867,39.3482435,4028 ALEXANDER DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.02_5,-74.7353195,39.4664055,4030 ALEXANDER DRIVE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_1144.02_6,-74.527884,39.466792,2459 LAHN LANE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1144.02_7,-74.67298536,39.48302704,4201 KAREN COURT,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1144.02_8,-74.95748327,39.52769099,4203 KAREN COURT,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1144.02_9,-74.73884949,39.46980456,4205 KAREN COURT,HAMILTON TWP,17,1990,1,GOV1,3004 -0112_1144.03_1,-74.38248927,39.41720288,4001 ALEXANDER DRIVE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_1144.03_10,-74.60036312,39.39040166,4019 ALEXANDER DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.03_11,-74.71125299,39.46994033,4012 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.03_12,-74.52138106,39.31561469,4010 LEAH LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1144.03_13,-74.796382,39.636121,4008 LEAH LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.03_14,-74.59219333,39.33102496,4006 LEAH LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.03_15,-74.38142945,39.40062683,4004 LEAH LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.03_16,-74.829225,39.463696,4002 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.03_2,-74.4651925,39.3457145,4003 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES3A,3001 -0112_1144.03_3,-74.95182782,39.53303523,4005 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.03_4,-74.8857595,39.5965885,4007 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.03_5,-74.92712308,39.51503693,4009 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3004 -0112_1144.03_6,-74.6019015,39.4216635,4011 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.03_7,-74.611985,39.42771,4013 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.03_8,-74.35975817,39.41497705,4015 ALEXANDER DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.03_9,-74.3616715,39.417456,4017 ALEXANDER DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.04_1,-74.5593215,39.50616321,4032 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_10,-74.80406877,39.65078167,2440 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_11,-74.6361965,39.4342715,2442 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_12,-74.95236923,39.5168328,2444 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.04_13,-74.358383,39.4117045,2448 LAHN LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.04_14,-74.47267445,39.34173632,2450 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.04_15,-74.36694765,39.40743663,2452 LAHN LANE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_1144.04_16,-74.938124,39.5185465,2454 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_17,-74.496102,39.4337885,2456 LAHN LANE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_1144.04_18,-74.4826365,39.4409315,2458 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_19,-74.4759795,39.480483,2460 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_2,-74.61287047,39.51735523,4034 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_3,-74.82800833,39.40830849,4036 ALEXANDER DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_4,-74.6273975,39.424549,4014 LEAH LANE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_1144.04_5,-74.81944746,39.65187987,4016 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_6,-74.6022225,39.510199,4018 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_7,-74.6841615,39.361681,4020 LEAH LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.04_8,-74.74939516,39.43638399,4022 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.04_9,-74.69707878,39.4804389,2438 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_1,-74.46373411,39.35363366,4005 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_10,-74.62423719,39.37131103,2422 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_11,-74.84473818,39.48236858,2420 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_12,-74.58745205,39.42785183,2418 LAHN LANE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_1144.05_13,-74.570475,39.414548,2412 LAHN LANE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_1144.05_14,-74.60710471,39.42327264,2408 LAHN LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.05_15,-74.47592108,39.48319255,2406 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_16,-74.495679,39.33251,2404 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_17,-74.56506727,39.41296755,2402 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_18,-74.565965,39.3485505,2400 LAHN LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.05_2,-74.36855732,39.41190934,4007 LEAH LANE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1144.05_3,-74.6345513,39.46798379,4009 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_4,-74.444414,39.485968,4011 LEAH LANE,HAMILTON TWP,,0,1,RES1,3001 -0112_1144.05_5,-74.4774015,39.3408635,4015 LEAH LANE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1144.05_6,-74.4179595,39.368043,4019 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_7,-74.9265122,39.52032818,4021 LEAH LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.05_8,-74.645692,39.6020575,LEAH LANE,HAMILTON TWP,,0,1,RES1,3001 -0112_1144.05_9,-74.81617297,39.65523165,2424 LAHN LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1144.06_1,-74.59392844,39.41805157,2441 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_10,-74.77317991,39.66011515,2415 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_11,-74.78969493,39.66838036,2413 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_12,-74.498103,39.4251065,2411 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_13,-74.525111,39.3163215,2409 LAHN LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.06_14,-74.9723555,39.506253,2407 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_15,-74.49443644,39.33328365,2405 LAHN LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.06_16,-74.71508315,39.46414967,2403 LAHN LANE,HAMILTON TWP,17,1988,1,RES3A,3001 -0112_1144.06_17,-74.57311612,39.36296644,2401 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_18,-74.56675301,39.41744261,WRANGLEBORO ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_1144.06_19,-74.3618525,39.4128415,WRANGLEBORO ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_1144.06_2,-74.463318,39.494241,2439 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_3,-74.38469618,39.39591931,2437 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_4,-74.50083727,39.47609057,2431 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_5,-74.50073198,39.32898283,2429 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_6,-74.5992925,39.369275,2425 LAHN LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.06_7,-74.6389755,39.369922,2421 LAHN LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1144.06_8,-74.66104326,39.44668974,2419 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144.06_9,-74.56850912,39.34616599,2417 LAHN LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1144_1.01,-74.7217305,39.452078,2810 LEIPZIG AVENUE,HAMILTON TWP,16,1932,1,RES1,3001 -0112_1144_1.02,-74.57380333,39.35634589,2816 LEIPZIG AVENUE,HAMILTON TWP,15,1941,1,RES1,3001 -0112_1166_1,-74.78845975,39.67668544,PRAGUE AVENUE,HAMILTON TWP,,0,1,COM7,3004 -0112_1168_3,-74.61239064,39.42286752,3140 LEIPZIG AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_1168_4.02,-74.7505655,39.4532995,3190 LEIPZIG AVENUE,HAMILTON TWP,16,1886,1,RES1,3001 -0112_1168_4.03,-74.416893,39.5057045,4560 DROSERA STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1168_4.05,-74.531289,39.3885305,4520 DROSERA STREET,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_1169_1,-74.5685455,39.354019,3220 LEIPZIG AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1169_15,-74.570921,39.412764,4529 DROSERA STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1169_19,-74.4901485,39.431383,4515 DROSERA STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1169_23,-74.58406282,39.37554498,4501 DROSERA STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1169_5,-74.644365,39.5329195,4571 DROSERA STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1170_10,-74.449123,39.356246,3137 MANNHEIM AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_1170_11,-74.60113617,39.38638063,3113 MANNHEIM AVENUE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1170_12,-74.944804,39.5323545,3089 MANNHEIM AVENUE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_1170_3,-74.63579564,39.52188235,3072 PRAGUE AVENUE,HAMILTON TWP,15,1923,1,RES1,3001 -0112_1170_4,-74.51352007,39.32687185,3100 PRAGUE AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_1170_5.01,-74.43795233,39.49094763,3124 PRAGUE AVENUE,HAMILTON TWP,16,1979,1,RES1,3001 -0112_1170_5.02,-74.86657842,39.60130324,3120 PRAGUE AVENUE,HAMILTON TWP,15,1979,1,RES1,3001 -0112_1170_8,-74.83337306,39.64282637,3148 PONTIAC AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_1170_9,-74.7838324,39.64079415,3169 MANNHEIM AVENUE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_1171_1,-74.5199565,39.397841,3183 MANNHEIM AVENUE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_1173_1,-74.53512326,39.49989498,4287 DROSERA STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_1173_8,-74.62998525,39.35789045,4263 DROSERA STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1174_1,-74.50704165,39.43704597,4233 DROSERA STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1174_4,-74.61238662,39.32341577,4211 DROSERA STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1175_11,-74.78959467,39.6429055,4341 DROSERA STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_1175_42,-74.83603434,39.48412583,4230 DROSERA STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1175_46,-74.51644421,39.32430957,4215 DROSERA STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1177.01_1,-74.69563416,39.42206793,4100 WEST JERSEY AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_1177.02_1,-74.45184899,39.48991419,4000 WEST JERSEY AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1182_1,-74.75324905,39.65250177,1212 HARBOR AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_12_11,-74.8590815,39.479714,7424 JACKSON ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_12_12,-74.53594,39.313693,7455 SMITH AVENUE,HAMILTON TWP,16,1937,1,RES1,3001 -0112_12_13,-74.73506912,39.55023208,1513 ELM STREET,HAMILTON TWP,16,1970,1,RES1,3001 -0112_12_14,-74.72244703,39.46392737,1525 ELM STREET,HAMILTON TWP,16,1965,1,RES1,3001 -0112_12_2,-74.88659779,39.54072003,7503 SMITH AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_12_3,-74.4588785,39.4954185,7491 SMITH AVENUE,HAMILTON TWP,16,2003,1,RES1,3001 -0112_12_4,-74.57552565,39.42876308,7479 SMITH AVENUE,HAMILTON TWP,16,1995,1,RES1,3001 -0112_12_5,-74.71323228,39.43052352,7471 SMITH AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_12_6,-74.56890234,39.4116011,7473 JACKSON ROAD,HAMILTON TWP,16,1999,1,RES1,3001 -0112_1229_1,-74.60706648,39.38606445,4120 REEGA AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_1230_1,-74.62375878,39.45905703,1211 GRAND AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_1231_1,-74.3682885,39.4106385,1210 GRAND AVE,HAMILTON TWP,16,1955,2,RES1,3001 -0112_1232_1,-74.61795654,39.37980691,4080 REEGA AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1291_1,-74.62178183,39.38022852,1010 GRAND AVENUE,HAMILTON TWP,17,2012,1,RES1,3001 -0112_1300_1,-74.6073692,39.42142403,1006 GRAND AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1301_2,-74.51897748,39.40406918,CHERRY AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1302_20,-74.478081,39.340744,BALTIC AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1302_21,-74.70476583,39.43149301,BALTIC AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1303_10.03,-74.37448842,39.41489965,4351 TOWNSHIP AVENUE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_1303_10.05,-74.59951233,39.35898047,4345 TOWNSHIP AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1303_11,-74.61143817,39.43596711,4363 TOWNSHIP AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1303_12,-74.642084,39.363513,4367 TOWNSHIP AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_1303_13,-74.78851107,39.54800527,822 HARBOR AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1303_15,-74.48316413,39.33620334,842 HARBOR AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1303_17,-74.61492785,39.38543519,862 HARBOR AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_1303_19,-74.5230175,39.315761,892 HARBOR AVENUE,HAMILTON TWP,17,1995,1,RES1,3001 -0112_1303_8,-74.64279595,39.52653416,865 DOVER AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1303_9,-74.564344,39.359314,851 DOVER AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1304_10,-74.8195045,39.6310455,829 HARRISON AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1304_11,-74.55752334,39.37569401,807 HARRISON AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1304_12,-74.66736221,39.54309109,4369 TOWNSHIP AVENUE,HAMILTON TWP,16,1934,1,RES1,3001 -0112_1304_13,-74.3737321,39.41100811,4357 TOWNSHIP AVENUE,HAMILTON TWP,16,1942,1,RES1,3001 -0112_1304_16,-74.54998879,39.46589841,4349 TOWNSHIP AVENUE,HAMILTON TWP,16,1942,1,RES1,3001 -0112_1304_17,-74.58049,39.3433785,4341 TOWNSHIP AVENUE,HAMILTON TWP,16,1924,1,RES1,3001 -0112_1304_18.01,-74.49201618,39.43326313,4337 TOWNSHIP AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1304_18.02,-74.50354218,39.41054251,4333 TOWNSHIP AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_1304_18.03,-74.50563661,39.42582851,4327 TOWNSHIP AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1304_18.04,-74.51909,39.3888515,4321 TOWNSHIP AVENUE,HAMILTON TWP,17,1982,1,GOV1,3004 -0112_1304_18.05,-74.563933,39.410391,4315 TOWNSHIP AVENUE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_1304_18.06,-74.5165815,39.3248865,4311 TOWNSHIP AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1304_18.07,-74.70936867,39.63459875,4305 TOWNSHIP AVENUE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_1304_19.01,-74.61386067,39.32407854,844 DOVER AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1304_19.02,-74.69453946,39.44784068,858 DOVER AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1304_19.03,-74.4646041,39.49408121,872 DOVER AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1304_19.04,-74.93914013,39.53184746,888 DOVER AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1304_8.01,-74.36598,39.4214855,911 HARRISON AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_1304_8.02,-74.57631815,39.45587379,901 HARRISON AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_1304_9.02,-74.82817182,39.42657414,865 HARRISON AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_1305_1.02,-74.52158634,39.39328847,981 GRAND AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1305_1.03,-74.69187334,39.42071924,975 GRAND AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1305_10.01,-74.79476613,39.63237477,900 HARRISON AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_1305_10.02,-74.59188993,39.31567318,910 HARRISON AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_1305_11.01,-74.43782984,39.51750203,920 HARRISON AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1305_11.02,-74.58606625,39.33234522,930 HARRISON AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1305_12,-74.80369243,39.63816135,946 HARRISON AVENUE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_1305_2,-74.51327692,39.40745958,985 GRAND AVE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_1305_4,-74.46348758,39.49110038,915 GRAND AVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_1305_9.05,-74.51117634,39.46237751,828 HARRISON AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_1306_3.02,-74.792457,39.6756555,958 GRAND AVE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_1306_4,-74.79441104,39.64137966,938 GRAND AVE,HAMILTON TWP,16,1886,1,RES1,3001 -0112_1312_11,-74.64799721,39.43370144,697 HARBOR AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1312_12,-74.74514152,39.59135983,685 HARBOR AVENUE,HAMILTON TWP,18,2005,1,RES1,3001 -0112_1312_13,-74.59163,39.365639,673 HARBOR AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1312_14,-74.61227584,39.32694646,661 HARBOR AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1312_15,-74.511285,39.3860035,653 HARBOR AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_1312_16.01,-74.74510721,39.63677945,645 HARBOR AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1312_17,-74.59827603,39.40954082,4421 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1312_18.01,-74.35677444,39.41388785,4433 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1312_19.01,-74.812002,39.607832,4445 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1312_20,-74.5502277,39.37704972,4457 OCEAN HEIGHTS AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1312_3,-74.79946051,39.6259541,733 HARBOR AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_1312_4,-74.48031199,39.34894433,729 HARBOR AVENUE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_1312_5,-74.7845525,39.674286,725 HARBOR AVENUE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_1312_6,-74.53764828,39.37276363,721 HARBOR AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_1312_8,-74.81290048,39.65525871,713 HARBOR AVENUE,HAMILTON TWP,16,1870,1,RES1,3001 -0112_1312_9,-74.56385907,39.37316751,709 HARBOR AVENUE,HAMILTON TWP,17,1975,1,RES2,3005 -0112_1313_1,-74.598884,39.33088,4370 TOWNSHIP AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1313_11,-74.48719686,39.47892054,HARBOR AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1313_12,-74.573072,39.3404435,686 HARBOR AVENUE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_1313_13,-74.59909269,39.41079974,696 HARBOR AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1313_14,-74.5527665,39.3664565,706 HARBOR AVENUE,HAMILTON TWP,17,1987,1,RES2,3005 -0112_1313_17.02,-74.77609,39.643649,732 HARBOR AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1313_3.01,-74.61000531,39.34865648,4360 TOWNSHIP AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_1313_3.03,-74.44139618,39.35741066,4352 TOWNSHIP AVENUE,HAMILTON TWP,17,1982,1,GOV1,3004 -0112_1313_3.05,-74.54713565,39.49824447,4342 TOWNSHIP AVENUE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_1313_4.01,-74.805659,39.6315965,4312 TOWNSHIP AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_1313_4.03,-74.59254759,39.37647454,4320 TOWNSHIP AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1313_4.05,-74.3796435,39.416784,4330 TOWNSHIP AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_1313_5,-74.62901456,39.46165284,4306 TOWNSHIP AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1313_6,-74.6158025,39.3213,4302 TOWNSHIP AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_1313_9,-74.523644,39.396885,620 HARBOR AVENUE,HAMILTON TWP,,1976,1,RES1,3001 -0112_1314_1,-74.65037154,39.53003166,4280 TOWNSHIP AVENUE,HAMILTON TWP,17,2003,1,IND2,3002 -0112_1314_1.01,-74.950224,39.5198715,4260 TOWNSHIP AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1314_1.02,-74.49207475,39.47640822,4240 TOWNSHIP AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1314_3,-74.57600977,39.48066286,730 HARRISON AVENUE,HAMILTON TWP,16,1931,1,RES1,3001 -0112_1315_2,-74.3668695,39.40862,4100 TOWNSHIP AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1316_2,-74.563516,39.364218,1880 CATES ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_1316_3,-74.57955521,39.42453407,1890 CATES ROAD,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_1316_4,-74.812261,39.643972,1894 CATES ROAD,HAMILTON TWP,17,1972,1,RES1,3001 -0112_1316_5,-74.47287,39.446129,1898 CATES ROAD,HAMILTON TWP,17,1972,1,GOV1,3004 -0112_1316_6,-74.7094885,39.6395335,1902 CATES ROAD,HAMILTON TWP,17,1976,1,RES1,3001 -0112_1316_7,-74.55463912,39.42686618,1908 CATES ROAD,HAMILTON TWP,17,1976,1,RES1,3001 -0112_1316_8,-74.6631825,39.5555545,1897 MCKEE AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_1316_9,-74.5974495,39.4356595,1891 MCKEE AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_1317.01_1,-74.59935604,39.32998966,2 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.01_10,-74.80017908,39.62515634,20 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.01_11,-74.38950617,39.38922751,22 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.01_12,-74.832717,39.533093,24 CLUBHOUSE LANE,HAMILTON TWP,17,2007,1,RES3B,3001 -0112_1317.01_13,-74.58754443,39.34935654,26 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,COM4,3004 -0112_1317.01_14,-74.6719985,39.343517,28 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.01_2,-74.5186565,39.3898805,4 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.01_21,-74.953306,39.511315,42 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3002 -0112_1317.01_22,-74.60112425,39.32226463,44 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.01_23,-74.55687124,39.36287965,46 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,COM1,3004 -0112_1317.01_24,-74.55897049,39.35852667,48 CLUBHOUSE LANE,HAMILTON TWP,17,2008,1,RES3A,3001 -0112_1317.01_25,-74.42343295,39.36778613,50 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,EDU1,3004 -0112_1317.01_3,-74.5560255,39.374393,6 CLUBHOUSE LANE,HAMILTON TWP,17,2007,1,COM1,3002 -0112_1317.01_4,-74.382445,39.4173435,8 CLUBHOUSE LANE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1317.01_5,-74.5625305,39.3612765,10 CLUBHOUSE LANE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1317.01_6,-74.45592497,39.34819567,12 CLUBHOUSE LANE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1317.01_7,-74.82914465,39.37518259,14 CLUBHOUSE LANE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1317.01_8,-74.4600645,39.347709,16 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.01_9,-74.53496647,39.46105321,18 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.02_1,-74.60834731,39.38650542,1 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.02_2,-74.7985275,39.361593,3 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317.02_3,-74.79190717,39.64011507,5 CLUBHOUSE LANE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_1317.02_4,-74.5995075,39.35997742,7 CLUBHOUSE LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1317_11,-74.59765716,39.43086206,1930 MCKEE AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_1317_12,-74.64677115,39.53253538,1942 MCKEE AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_1317_13.01,-74.947247,39.5202655,1956 MCKEE AVENUE,HAMILTON TWP,17,1956,2,RES1,3001 -0112_1317_14.02,-74.557444,39.4753415,4176 BLACK HORSE PIKE,HAMILTON TWP,,1900,1,RES1,3001 -0112_1317_4,-74.52181383,39.45192791,1876 MCKEE AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_1317_6,-74.50328817,39.33631946,1882 MCKEE AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_1317_7,-74.58360921,39.41984739,1890 MCKEE AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1317_7.01,-74.579968,39.4300435,1892 MCKEE AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1317_7.02,-74.583078,39.4316785,1894 MCKEE AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1317_9,-74.56230499,39.37030417,1910 MCKEE AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_1318_1,-74.5145545,39.467106,4305 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_1319.01_1,-74.66796622,39.46157204,2200 WRANGLEBORO ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_1319_2,-74.60048533,39.36839366,2300 WRANGLEBORO ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_1319_2.01,-74.569882,39.4141205,2302 WRANGLEBORO ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_1320_4.01,-74.5873955,39.3223615,4315 BLACK HORSE PIKE,HAMILTON TWP,,1950,1,RES1,3001 -0112_1320_8,-74.516803,39.324748,4215 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_1321_3,-74.954285,39.5393805,4165 BLACK HORSE PIKE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_1321_4,-74.490257,39.47924,2025 LOWELL AVENUE,HAMILTON TWP,16,1967,1,RES1,3001 -0112_1321_5,-74.64884054,39.55009049,2045 LOWELL AVENUE,HAMILTON TWP,16,1945,1,RES1,3001 -0112_1321_7,-74.50598458,39.43077453,2051 LOWELL AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_1321_8,-74.47007373,39.48279605,2053 LOWELL AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_1323_1,-74.61490892,39.39183513,2030 LOWELL AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_1324_1,-74.59570557,39.4294187,4009 BLACK HORSE PIKE,HAMILTON TWP,,1955,1,GOV1,3004 -0112_1326_1.01,-74.4695655,39.3453685,4021 ALEXANDER DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1326_1.03,-74.51384116,39.40435199,4025 ALEXANDER DRIVE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1326_1.04,-74.52519037,39.31932659,4027 ALEXANDER DRIVE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1327_3,-74.9241775,39.515873,3026 MANNHEIM AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_1327_4,-74.53969302,39.4134484,3036 MANNHEIM AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_1327_5,-74.48604683,39.34834755,3046 MANNHEIM AVENUE,HAMILTON TWP,17,1957,2,RES1,3001 -0112_1327_6.02,-74.56892925,39.36560334,3072 MANNHEIM AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_1327_6.03,-74.45887601,39.46931633,3054 MANNHEIM AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_1327_6.04,-74.736915,39.4488915,3060 MANNHEIM AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1327_7,-74.5397855,39.3924115,3080 MANNHEIM AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_1328_3,-74.8878,39.5987795,3101 WRANGLEBORO ROAD,HAMILTON TWP,,1959,1,RES1,3001 -0112_1329_1,-74.926334,39.519721,3160 MANNHEIM AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1330_1,-74.509579,39.337631,4176 DROSERA STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_1330_2,-74.58699064,39.54092156,4154 DROSERA STREET,HAMILTON TWP,17,1965,1,RES1,3001 -0112_1331.01_1,-74.79401647,39.37565642,4136 DROSERA STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_1331.01_11,-74.60050456,39.3698643,4100 DROSERA STREET,HAMILTON TWP,17,1972,1,RES1,3001 -0112_1331.01_14,-74.5908495,39.31869,4090 DROSERA STREET,HAMILTON TWP,17,1974,1,RES1,3001 -0112_1331.01_21,-74.45385202,39.4885388,4060 DROSERA STREET,HAMILTON TWP,17,2005,1,GOV1,3004 -0112_1331.01_25,-74.61095864,39.34566534,4050 DROSERA STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_1331.01_32,-74.62362686,39.43461629,4020 DROSERA STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1331.01_4,-74.3658,39.407491,4124 DROSERA STREET,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1331.01_7,-74.56889287,39.35458016,4112 DROSERA STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1331.02_163,-74.60698378,39.33243339,3984 DROSERA STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1331.02_169,-74.48746084,39.33862434,3968 DROSERA STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1331.02_174,-74.5474925,39.381421,3952 TILTON ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_1334_1,-74.42454011,39.37194718,DROSERA STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_1335.01_1,-74.49225339,39.43366862,4181 DROSERA STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_1335.01_31,-74.83204755,39.48755372,4163 DROSERA STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1335.01_40,-74.36272309,39.41322645,4133 DROSERA STREET,HAMILTON TWP,17,1971,1,RES1,3001 -0112_1335.01_41,-74.8285365,39.6356715,4123 DROSERA STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1335.01_47,-74.58993783,39.48895144,4103 DROSERA STREET,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1335.01_68.01,-74.50298988,39.41759371,4091 DROSERA STREET,HAMILTON TWP,17,2008,1,RES1,3001 -0112_1335.01_68.02,-74.502938,39.43031,4081 DROSERA STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1335.01_68.03,-74.8111669,39.63502833,4071 DROSERA STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1335.01_68.04,-74.72709936,39.45435825,4061 DROSERA STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1335.01_68.07,-74.647839,39.4119535,4031 DROSERA STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_1341_3,-74.4885655,39.3381805,4130 PEARCE ROAD,HAMILTON TWP,,2018,1,RES1,3001 -0112_1341_4,-74.45182748,39.35763915,4150 PEARCE ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1343_1,-74.638155,39.3992765,2510 LONG AVENUE,HAMILTON TWP,17,2016,1,RES1,3001 -0112_1343_4.01,-74.65083132,39.5244758,2520 LONG AVENUE,HAMILTON TWP,17,1997,1,GOV1,3004 -0112_1343_4.02,-74.69396072,39.48481503,2540 LONG AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_1343_6,-74.59800125,39.32323832,2570 LONG AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_1343_7,-74.5958425,39.3132175,2580 LONG AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1345_11.02,-74.57633563,39.33365675,2720 WRANGLEBORO ROAD,HAMILTON TWP,17,2002,1,RES1,3001 -0112_1345_16,-74.637818,39.399835,2680 WRANGLEBORO ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1345_17,-74.51683375,39.52571497,2740 WRANGLEBORO ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_1345_18,-74.7695635,39.317619,2780 WRANGLEBORO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_1345_19,-74.63882109,39.52407485,2810 WRANGLEBORO ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_1345_2,-74.88435666,39.46276008,2511 LONG AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1345_20,-74.587162,39.432675,3000 WRANGLEBORO ROAD,HAMILTON TWP,,1959,1,RES1,3001 -0112_1345_26,-74.53506767,39.3818685,2600 LONG AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_1345_3,-74.385571,39.395607,4131 PEARCE ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_1345_4,-74.6712815,39.46238,4145 PEARCE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_1345_5,-74.50111954,39.52575969,2547 LONG AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_1345_6,-74.50016222,39.41533762,2559 LONG AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_1345_9.01,-74.88399333,39.57124671,2601 LONG AVENUE,HAMILTON TWP,17,1973,1,GOV1,3004 -0112_1345_9.02,-74.6135855,39.3699645,2607 LONG AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_1346_1,-74.59724634,39.34318657,3200 WRANGLEBORO ROAD,HAMILTON TWP,,1959,1,RES1,3001 -0112_139_1,-74.48976128,39.49806012,1304 DIVISION AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_14_2,-74.56853254,39.36654982,1218 ELM STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_147_29,-74.54987511,39.36493505,NEW ORLEANS AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_15_10,-74.65498616,39.48802537,7325 STRAND AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_15_11,-74.701455,39.378604,1333 ORCHARD ROAD,HAMILTON TWP,17,1975,1,RES1,3001 -0112_15_12,-74.52308809,39.43962913,1329 ORCHARD ROAD,HAMILTON TWP,17,2002,1,RES1,3001 -0112_15_15,-74.81435335,39.38165847,1317 ORCHARD ROAD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_15_19,-74.80784629,39.64843879,7336 VENICE BOULEVARD,HAMILTON TWP,,0,1,RES1,3001 -0112_15_4,-74.46470643,39.34808883,1322 ELM STREET,HAMILTON TWP,,1950,1,RES1,3001 -0112_15_5,-74.55158843,39.47041523,1334 ELM STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_15_6,-74.572604,39.368155,7341 STRAND AVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_15_7,-74.66808748,39.51688017,7337 STRAND AVE,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_15_8,-74.80829887,39.46578877,7333 STRAND AVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_15_9,-74.623677,39.435061,7329 STRAND AVE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_154_26,-74.62752022,39.4242764,7145 MELVIN NEWTON BLVD,HAMILTON TWP,,1900,1,RES1,3001 -0112_157_16,-74.80132467,39.64370351,BOSTON AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_158_8,-74.38910634,39.39282497,1410 PHILADELPHIA AVE,HAMILTON TWP,15,1956,1,RES1,3001 -0112_16_1,-74.63865171,39.36992638,7445 STRAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_16_10,-74.50687367,39.405416,SMITH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_16_3,-74.67826648,39.38413662,7421 STRAND AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_16_4,-74.85037018,39.43127246,7409 STRAND AVENUE,HAMILTON TWP,17,1990,1,COM1,3004 -0112_16_5,-74.6815305,39.462,7397 STRAND AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_16_7,-74.50070382,39.33496451,1437 MALAGA ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_160_3.01,-74.60439947,39.32440318,1837 BOSTON AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_17_1,-74.74723233,39.44602216,1400 ELM STREET,HAMILTON TWP,17,2005,1,RES1,3001 -0112_17_2,-74.947026,39.5322285,MALAGA ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_17_3,-74.6609585,39.5176135,1436 MALAGA ROAD,HAMILTON TWP,17,1965,1,RES1,3004 -0112_17_4,-74.6189575,39.6022,1448 ELM STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_17_5,-74.62612565,39.50419704,7444 SMITH AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_17_8,-74.451258,39.355726,7408 SMITH AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_18_1,-74.49957242,39.3326435,1504 ELM STREET,HAMILTON TWP,16,1960,1,RES1,3001 -0112_18_10,-74.487708,39.494677,1545 ORCHARD ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_18_11,-74.54221001,39.47146007,1537 ORCHARD ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_18_12,-74.7095575,39.473724,1525 MALAGA ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_18_13.01,-74.5055225,39.3307575,1513 MALAGA ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_18_13.02,-74.5922205,39.343011,1505 MALAGA ROAD,HAMILTON TWP,17,1978,1,RES1,3001 -0112_18_14,-74.53788166,39.39057905,7411 SMITH AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_18_16,-74.4853625,39.525487,7435 SMITH AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_18_3,-74.358757,39.41337,1520 ELM STREET,HAMILTON TWP,14,2001,1,RES1,3001 -0112_18_8,-74.60286703,39.54645804,7416 JACKSON ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_182_1,-74.6011965,39.372131,7084 COMMONWEALTH AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_184_33,-74.3605805,39.4166815,7117 MARKET ST,HAMILTON TWP,,1950,1,RES1,3001 -0112_19_1,-74.81775592,39.65434216,7397 MALAGA ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_195_14,-74.42684681,39.37902505,1381 SAN FRANCISCO AVENUE,HAMILTON TWP,15,1900,1,RES1,3001 -0112_2_2,-74.4664325,39.347254,7739 JACKSON ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_2_3,-74.60504274,39.39112658,7729 JACKSON ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_2_4,-74.581949,39.3640595,7712 JACKSON ROAD,HAMILTON TWP,17,2016,1,RES1,3001 -0112_2_5.02,-74.54639,39.373382,7708 JACKSON ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_201_1,-74.67786548,39.56004484,7398 JACKSON ROAD,HAMILTON TWP,17,1978,1,RES1,3001 -0112_201_2.01,-74.68902994,39.63121521,7368 JACKSON ROAD,HAMILTON TWP,16,1977,1,RES1,3001 -0112_201_3,-74.68714156,39.55677834,7348 JACKSON ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_201_4,-74.45913297,39.34898466,7330 JACKSON ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_202_10,-74.86457471,39.56547482,7305 JACKSON ROAD,HAMILTON TWP,16,1974,1,RES1,3001 -0112_202_2,-74.8152405,39.653846,7377 JACKSON ROAD,HAMILTON TWP,17,2018,1,RES1,3001 -0112_202_3,-74.53639351,39.37311683,1680 MCCALL AVENUE,HAMILTON TWP,16,1940,1,GOV1,3004 -0112_202_4,-74.55495733,39.36029828,7337 THIRD AVENUE,HAMILTON TWP,16,1942,1,RES1,3001 -0112_202_5,-74.513266,39.4041345,7335 THIRD AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_202_6.01,-74.70482,39.587512,7333 THIRD AVENUE,HAMILTON TWP,16,1980,1,RES1,3001 -0112_202_6.02,-74.67916539,39.49345706,7331 THIRD AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_202_7,-74.62753519,39.42230407,7321 THIRD AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_202_8.02,-74.86754156,39.53886744,7317 THIRD AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_202_9,-74.79194518,39.60323383,7313 THIRD AVENUE,HAMILTON TWP,16,1970,1,RES1,3001 -0112_203_1,-74.610166,39.5188745,1710 MCCALL AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_203_10,-74.71166252,39.42117193,7321 BELMONT AVENUE,HAMILTON TWP,16,1959,1,RES4,3004 -0112_203_11,-74.5905,39.424612,7315 BELMONT AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_203_12,-74.5846746,39.33769436,7309 BELMONT AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_203_13,-74.50143887,39.42516469,7301 BELMONT AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_203_14,-74.683076,39.4874095,7302 THIRD AVENUE,HAMILTON TWP,17,2018,1,RES1,3001 -0112_203_15,-74.70380933,39.48197617,7306 THIRD AVENUE,HAMILTON TWP,,0,1,REL1,3004 -0112_203_16,-74.64269079,39.43291495,7310 THIRD AVENUE,HAMILTON TWP,17,1995,1,RES1,3001 -0112_203_17,-74.964211,39.5199495,7314 THIRD AVENUE,HAMILTON TWP,16,1974,1,RES3A,3001 -0112_203_18,-74.49750467,39.3352385,7318 THIRD AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_203_19,-74.52903928,39.38544811,7322 THIRD AVENUE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_203_2,-74.73231385,39.45378452,1742 MCCALL AVENUE,HAMILTON TWP,16,1951,1,RES1,3001 -0112_203_21,-74.64008821,39.36301888,7330 THIRD AVENUE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_203_22,-74.51213405,39.43659184,7334 THIRD AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_203_4,-74.42547,39.359412,1750 MCCALL AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_203_5,-74.57537718,39.41792372,1766 MCCALL AVENUE,HAMILTON TWP,14,1930,1,RES1,3001 -0112_203_7,-74.5384275,39.46224,7333 BELMONT AVENUE,HAMILTON TWP,17,2007,1,GOV1,3004 -0112_203_8,-74.46044755,39.34775145,7331 BELMONT AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_203_9.02,-74.6248795,39.417312,7323 BELMONT AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_204_1,-74.64383526,39.46124547,1808 MCCALL AVENUE,HAMILTON TWP,16,1950,1,COM3,3004 -0112_204_10,-74.88331965,39.48465477,7301 FIRST AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_204_11,-74.61478499,39.3214024,7302 BELMONT AVENUE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_204_12,-74.451492,39.357071,7306 BELMONT AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_204_13,-74.56644603,39.48078629,7310 BELMONT AVENUE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_204_14,-74.76014679,39.6337768,7316 BELMONT AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_204_15,-74.52685667,39.3846101,7322 BELMONT AVENUE,HAMILTON TWP,16,1985,1,RES1,3001 -0112_204_17,-74.85454944,39.43870028,7330 BELMONT AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_204_18,-74.508485,39.385118,7334 BELMONT AVENUE,HAMILTON TWP,16,1992,1,RES1,3004 -0112_204_2,-74.69824827,39.57001158,1816 MCCALL AVENUE,HAMILTON TWP,16,1949,1,RES1,3001 -0112_204_3,-74.6229945,39.420342,1824 MCCALL AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_204_4,-74.60758183,39.32792149,7392 WOODBURY ROAD,HAMILTON TWP,,1946,1,RES1,3001 -0112_204_5,-74.4419355,39.35759,7376 WOODBURY ROAD,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_204_6,-74.85984122,39.5541245,7356 WOODBURY ROAD,HAMILTON TWP,17,1965,1,RES1,3001 -0112_204_7,-74.5264105,39.3869715,7313 WOODBURY ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_204_8.01,-74.497961,39.3320665,7309 FIRST AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_204_8.02,-74.558369,39.3761945,7307 FIRST AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_205_1,-74.58666383,39.32184997,1848 MCCALL AVENUE,HAMILTON TWP,16,1978,1,RES1,3001 -0112_205_2,-74.559055,39.473102,1864 MCCALL AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_205_3,-74.634056,39.5335225,7321 WOODBURY ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_205_4,-74.51513942,39.43968865,7315 WOODBURY ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_206_1,-74.46975119,39.49103177,7304 FIRST AVENUE,HAMILTON TWP,16,1999,1,RES1,3001 -0112_207_1,-74.37674338,39.41874679,7330 FIRST AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_207_11,-74.57964353,39.34093379,7390 BLACK HORSE PIKE,HAMILTON TWP,,1922,1,RES1,3001 -0112_207_12,-74.568243,39.4126095,7388 BLACK HORSE PIKE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_207_16,-74.56377413,39.47534127,7380 BLACK HORSE PIKE,HAMILTON TWP,16,1945,1,RES1,3001 -0112_207_18,-74.51751166,39.44371947,7376 BLACK HORSE PIKE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_207_19,-74.57103823,39.41307537,7374 BLACK HORSE PIKE,HAMILTON TWP,14,1955,1,RES1,3001 -0112_207_2,-74.68758141,39.35670458,1930 MCCALL AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_207_21,-74.475434,39.4800365,7368 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_207_22,-74.46466439,39.49447025,7366 BLACK HORSE PIKE,HAMILTON TWP,,1946,1,RES1,3001 -0112_207_23,-74.47025866,39.343618,7358 BLACK HORSE PIKE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_207_24,-74.4807025,39.3483215,7350 BLACK HORSE PIKE,HAMILTON TWP,16,1982,1,RES1,3001 -0112_207_25,-74.3627235,39.4087245,7344 BLACK HORSE PIKE,HAMILTON TWP,17,1953,1,GOV1,3004 -0112_207_26,-74.39441616,39.38908034,7336 BLACK HORSE PIKE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_207_27,-74.5493055,39.37737417,7334 BLACK HORSE PIKE,HAMILTON TWP,,1936,1,RES1,3001 -0112_207_29,-74.735565,39.437726,7332 BLACK HORSE PIKE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_207_30,-74.61428198,39.32490984,7328 BLACK HORSE PIKE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_207_32,-74.57766518,39.41693307,7326 BLACK HORSE PIKE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_207_33,-74.59581205,39.34030451,7322 BLACK HORSE PIKE,HAMILTON TWP,16,1951,1,RES1,3001 -0112_207_35,-74.78788531,39.45756797,7318 BLACK HORSE PIKE,HAMILTON TWP,,1938,1,GOV1,3004 -0112_207_4,-74.40186334,39.38690871,7320 FIRST AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_207_40,-74.52571356,39.31669267,7308 BLACK HORSE PIKE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_207_41,-74.6030955,39.3491465,7300 BLACK HORSE PIKE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_207_43,-74.59743529,39.31532466,7216 BLACK HORSE PIKE,HAMILTON TWP,17,2006,1,REL1,3004 -0112_207_47.01,-74.51245973,39.32678334,7134 BLACK HORSE PIKE,HAMILTON TWP,,1941,1,RES1,3001 -0112_207_47.02,-74.50632571,39.33420164,7140 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_207_48,-74.6373995,39.40181,7128 BLACK HORSE PIKE,HAMILTON TWP,,1948,1,RES1,3001 -0112_207_49,-74.502251,39.467226,7116 BLACK HORSE PIKE,HAMILTON TWP,16,1944,2,RES1,3001 -0112_207_5,-74.513535,39.411436,7316 FIRST AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_207_50,-74.83546076,39.56811982,7122 BLACK HORSE PIKE,HAMILTON TWP,,1984,1,RES1,3001 -0112_207_6,-74.88436997,39.5022087,7312 FIRST AVENUE,HAMILTON TWP,16,1995,1,RES1,3001 -0112_208_1.01,-74.66370501,39.40022614,7367 DRIFTWOOD LANE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_208_1.02,-74.6336445,39.350778,2048 GARDEN ROAD,HAMILTON TWP,17,1975,1,RES1,3001 -0112_208_1.03,-74.6459165,39.4313845,7363 DRIFTWOOD LANE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_208_11.01,-74.5042855,39.3399235,7373 BLACK HORSE PIKE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_208_11.02,-74.515637,39.32569,7371 BLACK HORSE PIKE,HAMILTON TWP,17,1984,1,RES1,3004 -0112_208_11.03,-74.612894,39.3230055,7369 BLACK HORSE PIKE,HAMILTON TWP,17,1984,1,GOV1,3004 -0112_208_12,-74.5204775,39.315286,7327 BLACK HORSE PIKE,HAMILTON TWP,16,1926,1,RES1,3001 -0112_208_13,-74.67297893,39.3723718,7329 BLACK HORSE PIKE,HAMILTON TWP,,1956,1,RES1,3001 -0112_208_15,-74.56250066,39.41382599,7317 BLACK HORSE PIKE,HAMILTON TWP,16,1971,1,RES1,3001 -0112_208_2,-74.4554155,39.3534015,2044 GARDEN ROAD,HAMILTON TWP,17,1971,1,RES1,3001 -0112_208_3.02,-74.71589275,39.44852862,7357 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.03,-74.37894512,39.39901888,7355 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.04,-74.622117,39.433882,7353 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.05,-74.486734,39.3350205,7351 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.06,-74.6203229,39.37458395,7349 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.07,-74.530029,39.308863,7347 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.08,-74.833384,39.478262,7345 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.09,-74.71113484,39.56786403,7343 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.10,-74.81192209,39.65414106,7341 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.11,-74.4491373,39.37457243,7339 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.12,-74.5209789,39.46564945,7335 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_208_3.13,-74.44504634,39.35680642,7333 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.14,-74.6365895,39.3606525,7329 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.15,-74.69574353,39.59061938,7327 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.16,-74.4436855,39.37149,7325 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.17,-74.50023033,39.45293941,7323 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.18,-74.3728255,39.418204,7321 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.19,-74.6155525,39.324066,7319 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,REL1,3004 -0112_208_3.20,-74.36787717,39.41047782,7317 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_208_3.21,-74.44170951,39.36610283,7315 DRIFTWOOD LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_208_3.22,-74.400389,39.394136,7311 DRIFTWOOD LANE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_208_3.23,-74.60858409,39.3781183,7309 DRIFTWOOD LANE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_208_3.29,-74.59725754,39.59275575,7359 DRIFTWOOD LANE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_208_3.30,-74.69706575,39.35567483,2040 GARDEN ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_208_3.31,-74.642003,39.4346135,2036 GARDEN ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_208_3.38,-74.60131964,39.32521481,2016 GARDEN ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_208_3.39,-74.4878615,39.335711,7355 BLACK HORSE PIKE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_208_3.40,-74.5993245,39.4245535,7343 BLACK HORSE PIKE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_208_4,-74.57911542,39.36791834,2028 GARDEN ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_208_5,-74.4223025,39.374609,2024 GARDEN ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_208_6,-74.4041445,39.3868605,2020 GARDEN ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_208_9,-74.58059844,39.36319697,7387 BLACK HORSE PIKE,HAMILTON TWP,,1966,1,RES1,3001 -0112_209_11.01,-74.72653038,39.58841516,7344 DRIFTWOOD LANE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_209_12,-74.59255441,39.32459574,7332 DRIFTWOOD LANE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_209_14,-74.70129534,39.49029198,2007 HEMLOCK LANE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_209_15,-74.764452,39.637217,2005 HEMLOCK LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_16,-74.52008019,39.47037363,2001 HEMLOCK LANE,HAMILTON TWP,17,1977,1,RES1,3004 -0112_209_19,-74.68544561,39.38208554,2008 HEMLOCK LANE,HAMILTON TWP,17,1977,1,RES3A,3001 -0112_209_2,-74.55451833,39.3677073,7364 DRIFTWOOD LANE,HAMILTON TWP,17,1963,1,COM1,3004 -0112_209_20,-74.7493885,39.451371,2007 SYCAMORE LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_21,-74.4036265,39.3807505,2005 SYCAMORE LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_22,-74.58174944,39.38135898,2001 SYCAMORE LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_23,-74.93709278,39.53174825,2000 SYCAMORE LANE,HAMILTON TWP,17,1974,1,IND1,3002 -0112_209_24,-74.66233071,39.44543797,2004 SYCAMORE LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_25,-74.50732384,39.33472756,2006 SYCAMORE LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_26,-74.575591,39.357582,2005 MAGNOLIA LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_27,-74.5210265,39.3947735,2003 MAGNOLIA LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_28,-74.5411145,39.3929645,2001 MAGNOLIA LANE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_209_29,-74.67026253,39.51806283,2000 MAGNOLIA LANE,HAMILTON TWP,17,1980,1,REL1,3004 -0112_209_30,-74.48533016,39.34899448,2002 MAGNOLIA LANE,HAMILTON TWP,17,1975,1,REL1,3004 -0112_209_31,-74.69271177,39.59488906,2004 MAGNOLIA LANE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_209_33,-74.7909222,39.64378177,7312 DRIFTWOOD LANE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_209_34,-74.63684339,39.36337253,7308 DRIFTWOOD LANE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_209_35,-74.44150226,39.3538327,7304 DRIFTWOOD LANE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_209_37,-74.668259,39.46195809,7208 CHERRY LANE,HAMILTON TWP,17,2016,1,RES1,3001 -0112_209_38,-74.80157895,39.63574121,7206 CHERRIMONG DRIVE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_209_4,-74.3709165,39.41712,7360 DRIFTWOOD LANE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_209_40,-74.485175,39.4571075,7202 CHERRIMONG DRIVE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_209_41.01,-74.5185225,39.407362,7205 CHERRIMONG DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_209_42.01,-74.55131,39.47556,2044 CHERRY LANE,HAMILTON TWP,,0,1,RES1,3001 -0112_209_42.02,-74.47006264,39.34333666,2032 CHERRY LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_209_42.03,-74.79805634,39.63118713,2016 CHERRY LANE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_209_43,-74.36652743,39.41029524,2020 CHERRY LANE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_209_45,-74.93868991,39.49606562,7205 BLACK HORSE PIKE,HAMILTON TWP,14,1929,2,RES1,3001 -0112_209_46,-74.50868566,39.32672202,7201 BLACK HORSE PIKE,HAMILTON TWP,,1990,1,RES1,3001 -0112_209_47,-74.47074692,39.44667072,7101 BLACK HORSE PIKE,HAMILTON TWP,,1945,1,RES1,3001 -0112_209_5,-74.72838539,39.45737508,7358 DRIFTWOOD LANE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_209_6,-74.50406665,39.40850559,7356 DRIFTWOOD LANE,HAMILTON TWP,15,1957,1,RES1,3001 -0112_209_7,-74.75108153,39.45167582,7354 DRIFTWOOD LANE,HAMILTON TWP,16,1957,1,COM1,3004 -0112_209_8,-74.49311677,39.33509973,7352 DRIFTWOOD LANE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_209_9,-74.598415,39.432253,7350 DRIFTWOOD LANE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_210_1.02,-74.887076,39.477935,7124 WEYMOUTH RD,HAMILTON TWP,14,1940,4,RES1,3001 -0112_210_10,-74.70319162,39.48999437,2063 IRONFORGE ROAD,HAMILTON TWP,17,1967,1,RES1,3001 -0112_210_11,-74.88495403,39.46179686,2061 IRONFORGE ROAD,HAMILTON TWP,17,1950,1,RES1,3001 -0112_210_14,-74.663133,39.447206,2058 IRONFORGE ROAD,HAMILTON TWP,15,1940,1,RES1,3001 -0112_210_15,-74.44942032,39.35482086,2060 IRONFORGE ROAD,HAMILTON TWP,16,1936,1,RES1,3001 -0112_210_16,-74.56859754,39.34662743,2062 IRONFORGE ROAD,HAMILTON TWP,16,1940,1,RES1,3001 -0112_210_18,-74.5941185,39.329086,2066 IRONFORGE ROAD,HAMILTON TWP,17,1940,1,RES1,3001 -0112_210_3,-74.63732249,39.42999883,7017 BRIDGE ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_210_4,-74.60516084,39.34269922,7015 BRIDGE ROAD,HAMILTON TWP,17,1972,1,RES1,3001 -0112_210_6,-74.80523508,39.64407485,7013 BRIDGE ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_210_8,-74.596118,39.3174555,7011 BRIDGE ROAD,HAMILTON TWP,15,1950,1,GOV1,3004 -0112_210_9,-74.7310725,39.4543435,7009 BRIDGE ROAD,HAMILTON TWP,17,2002,1,RES1,3001 -0112_211_1,-74.5247755,39.524943,1604 MALAGA ROAD,HAMILTON TWP,16,2011,1,RES1,3001 -0112_211_11,-74.49391801,39.46108775,1678 MALAGA ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_211_5,-74.506163,39.3319495,1636 MALAGA ROAD,HAMILTON TWP,17,1991,1,RES1,3001 -0112_212_10,-74.5293635,39.398328,1601 DRAKE AVENUE,HAMILTON TWP,,1986,1,RES1,3001 -0112_212_2,-74.60520494,39.32620724,7235 THIRD AVENUE,HAMILTON TWP,16,1955,1,RES3A,3001 -0112_212_3,-74.4480925,39.492914,7231 THIRD AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_212_4,-74.42323762,39.36719168,7225 THIRD AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_212_7.01,-74.60134432,39.44447609,7211 THIRD AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_212_7.02,-74.46230661,39.35418516,7209 THIRD AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_212_7.03,-74.61657457,39.5063106,7207 THIRD AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_212_8,-74.55753895,39.35888968,7205 THIRD AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_212_9,-74.64840011,39.43287326,1651 DRAKE AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_213_1,-74.8264015,39.648346,7234 THIRD AVENUE,HAMILTON TWP,,1950,1,RES1,3001 -0112_213_12,-74.50191344,39.33749056,1733 DRAKE AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_213_13,-74.81705733,39.53699138,1745 DRAKE AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_213_3,-74.38257566,39.39463498,7226 THIRD AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_213_4,-74.38192851,39.39777567,7224 THIRD AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_213_6,-74.96769474,39.52960507,7218 THIRD AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_213_7,-74.916429,39.466688,7214 THIRD AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_213_8,-74.59122132,39.32216547,7210 THIRD AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_213_9,-74.66049725,39.41754297,7206 THIRD AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_214_1,-74.58262283,39.36338449,1716 MALAGA ROAD,HAMILTON TWP,17,1965,1,RES1,3001 -0112_214_2,-74.51192616,39.32852551,1732 MALAGA ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_214_3,-74.64430199,39.52459967,1760 MALAGA ROAD,HAMILTON TWP,17,1940,1,RES1,3001 -0112_214_4,-74.955587,39.52005,7221 BELMONT AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_214_5,-74.5470895,39.38667602,7217 BELMONT AVENUE,HAMILTON TWP,16,1957,1,RES1,3001 -0112_214_6.01,-74.54973154,39.40605535,7201 BELMONT AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_214_6.02,-74.602571,39.3914145,7211 BELMONT AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_215_2,-74.68193362,39.54642583,7231 BELMONT AVENUE,HAMILTON TWP,15,1973,1,RES1,3001 -0112_215_5,-74.4341815,39.367674,1765 MALAGA ROAD,HAMILTON TWP,16,1940,1,RES3A,3001 -0112_216_1,-74.37457269,39.42007802,7234 BELMONT AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_216_10,-74.48236,39.340438,7226 BELMONT AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_216_2,-74.5746245,39.5214115,7239 FIRST AVENUE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_216_4,-74.86931683,39.60284732,7231 FIRST AVENUE,HAMILTON TWP,17,1987,1,RES3A,3001 -0112_216_5,-74.5382565,39.399068,7223 FIRST AVENUE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_216_6,-74.5750075,39.367537,7221 FIRST AVENUE,HAMILTON TWP,17,2006,1,RES3A,3001 -0112_216_7,-74.82348335,39.61789801,1875 MALAGA ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_216_8,-74.57273402,39.41797474,1825 MALAGA ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_217_1,-74.75578849,39.45225983,7240 FIRST AVENUE,HAMILTON TWP,17,1994,1,COM1,3004 -0112_217_10.01,-74.60661193,39.49174327,1937 MALAGA ROAD,HAMILTON TWP,17,1965,1,GOV1,3004 -0112_217_10.02,-74.49977263,39.41966124,1911 MALAGA ROAD,HAMILTON TWP,17,2009,1,GOV1,3004 -0112_217_2,-74.5342075,39.4906745,7238 FIRST AVENUE,HAMILTON TWP,17,1999,1,RES3A,3001 -0112_217_3,-74.5157,39.328399,7232 FIRST AVENUE,HAMILTON TWP,17,1999,1,COM1,3004 -0112_217_4.01,-74.61202529,39.41523209,7230 FIRST AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_217_5,-74.50181312,39.5267272,7224 FIRST AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_217_6.01,-74.3831812,39.39979937,7226 FIRST AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_217_7,-74.78475902,39.31347324,7216 FIRST AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_217_9,-74.78625065,39.67633438,1913 MALAGA ROAD,HAMILTON TWP,17,1987,1,RES3A,3001 -0112_218_1,-74.5022095,39.3279325,7218 BELMONT AVENUE,HAMILTON TWP,17,1957,1,RES3A,3001 -0112_218_10,-74.636891,39.431274,7209 FIRST AVENUE,HAMILTON TWP,16,1970,1,RES1,3001 -0112_218_2,-74.64150749,39.53160517,1824 MALAGA ROAD,HAMILTON TWP,17,1995,1,RES1,3001 -0112_218_3,-74.487371,39.471283,7212 BELMONT AVENUE,HAMILTON TWP,17,1957,1,COM1,3004 -0112_218_4,-74.45876067,39.49084949,7206 BELMONT AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_218_5,-74.52429511,39.44386993,1807 DRAKE AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_218_6,-74.38894414,39.39116535,1825 DRAKE AVENUE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_218_7,-74.702051,39.6363825,1870 MALAGA ROAD,HAMILTON TWP,17,2001,1,COM1,3004 -0112_218_8,-74.600626,39.472994,1841 DRAKE AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_219_1,-74.38984341,39.39145738,7208 FIRST AVENUE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_220_1.02,-74.47001939,39.34540884,2049 GARDEN ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_220_1.03,-74.80642431,39.52345294,7403 DRIFTWOOD LANE,HAMILTON TWP,17,1974,1,RES3A,3001 -0112_220_1.04,-74.535034,39.550979,7411 DRIFTWOOD LANE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_220_1.05,-74.52788896,39.45731868,7407 DRIFTWOOD LANE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_220_10,-74.52476317,39.31518449,7417 BLACK HORSE PIKE,HAMILTON TWP,17,1957,1,RES3A,3001 -0112_220_11.01,-74.8174395,39.642363,7419 BLACK HORSE PIKE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_220_11.02,-74.96184261,39.53465607,7429 BLACK HORSE PIKE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_220_2,-74.6836205,39.4441725,2041 GARDEN ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_220_3,-74.61356771,39.42018997,2039 GARDEN ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_220_4,-74.63032072,39.43949818,2037 GARDEN ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_220_5,-74.3839606,39.39479347,2035 GARDEN ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_220_6,-74.5180735,39.3191975,2033 GARDEN ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_220_9.01,-74.68999782,39.4468832,7415 BLACK HORSE PIKE,HAMILTON TWP,17,1983,1,RES1,3002 -0112_220_9.02,-74.80308884,39.62995796,7413 BLACK HORSE PIKE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_220_9.03,-74.37593505,39.41709373,7411 BLACK HORSE PIKE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_220_9.04,-74.52828746,39.30979766,7409 BLACK HORSE PIKE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_220_9.05,-74.63046824,39.49261294,7407 BLACK HORSE PIKE,HAMILTON TWP,17,1983,1,RES1,3002 -0112_220_9.06,-74.56789688,39.36939731,7405 BLACK HORSE PIKE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_221_1.01,-74.42428117,39.3704275,7423 DRIFTWOOD LANE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_221_1.02,-74.3874475,39.396198,2018 HIGH BANK ROAD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_221_1.03,-74.52203004,39.32104017,2020 HIGH BANK ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_221_1.04,-74.38794651,39.39649438,2014 HIGH BANK ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_221_1.05,-74.6281815,39.42536947,2012 HIGH BANK ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_221_1.06,-74.5822645,39.5722165,7421 DRIFTWOOD LANE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_222_1.01,-74.7533975,39.430701,7400 DRIFTWOOD LANE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_222_11,-74.5130205,39.325774,7439 HIGH BANK ROAD,HAMILTON TWP,17,1963,1,RES1,3001 -0112_222_14,-74.9188755,39.519951,7437 HIGH BANK ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_222_15,-74.45263081,39.3537216,7438 HIGH BANK ROAD,HAMILTON TWP,15,1920,1,RES1,3001 -0112_222_16,-74.932748,39.525144,7440 HIGH BANK ROAD,HAMILTON TWP,16,1940,1,RES1,3001 -0112_222_19,-74.6493735,39.355192,2029 HIGH BANK ROAD,HAMILTON TWP,17,1974,1,RES1,3001 -0112_222_2,-74.401291,39.383144,7410 DRIFTWOOD LANE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_222_20,-74.52636451,39.46958937,2027 HIGH BANK ROAD,HAMILTON TWP,17,1967,1,RES1,3001 -0112_222_21,-74.62993843,39.42027841,2023 HIGH BANK ROAD,HAMILTON TWP,17,1966,1,RES1,3002 -0112_222_22,-74.77693832,39.30385557,2019 HIGH BANK ROAD,HAMILTON TWP,17,1979,1,RES1,3001 -0112_222_23,-74.57467166,39.49361756,2015 HIGH BANK ROAD,HAMILTON TWP,17,1920,1,RES1,3001 -0112_222_25,-74.61557772,39.32338141,7428 HIGH BANK ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_222_28,-74.51303018,39.40404409,7434 HIGH BANK ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_222_29,-74.38221415,39.41759509,7436 HIGH BANK ROAD,HAMILTON TWP,17,1964,1,RES1,3001 -0112_222_3,-74.4132155,39.3695095,7414 DRIFTWOOD LANE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_222_30,-74.37950889,39.40093568,7444 HIGH BANK ROAD,HAMILTON TWP,13,1950,1,RES1,3001 -0112_222_31.01,-74.87598343,39.5901272,7449 BLACK HORSE PIKE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_222_31.02,-74.40164427,39.39039527,7447 BLACK HORSE PIKE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_222_31.03,-74.54910266,39.36966074,7445 BLACK HORSE PIKE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_222_31.04,-74.63015934,39.61664405,7441 BLACK HORSE PIKE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_222_31.05,-74.4858905,39.4660205,7439 BLACK HORSE PIKE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_222_31.06,-74.48549725,39.49697712,7437 BLACK HORSE PIKE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_222_31.07,-74.50514814,39.34084288,2001 HIGH BANK ROAD,HAMILTON TWP,17,1986,1,RES3A,3001 -0112_222_32,-74.60324098,39.32426268,HIGH BANK ROAD,HAMILTON TWP,,0,1,RES3A,3001 -0112_222_33,-74.51598782,39.38593648,2009 HIGH BANK ROAD,HAMILTON TWP,17,1972,1,RES1,3001 -0112_222_7,-74.49353015,39.34125052,7424 DRIFTWOOD LANE,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_222_8,-74.8502095,39.590304,7426 DRIFTWOOD LANE,HAMILTON TWP,17,1977,1,COM4,3004 -0112_222_9,-74.48072913,39.33840954,7428 DRIFTWOOD LANE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_223_1,-74.66346747,39.49530567,7175 WEYMOUTH ROAD,HAMILTON TWP,16,1992,1,RES1,3001 -0112_223_4,-74.68635485,39.65379492,7285 WEYMOUTH ROAD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_223_5,-74.489717,39.3343325,7291 WEYMOUTH ROAD,HAMILTON TWP,15,1930,1,RES1,3001 -0112_223_7,-74.509099,39.327165,7363 WEYMOUTH ROAD,HAMILTON TWP,16,1920,1,RES1,3001 -0112_223_9,-74.44552334,39.36028149,7395 WEYMOUTH ROAD,HAMILTON TWP,,1965,1,RES1,3001 -0112_226_1,-74.5874635,39.370615,7201 WEYMOUTH RD,HAMILTON TWP,,1968,13,RES3A,3002 -0112_226_10,-74.793626,39.4443705,7058 WEYMOUTH ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_226_11,-74.60702561,39.3761368,7050 WEYMOUTH ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_226_9.01,-74.80353515,39.62523755,7085 WEYMOUTH ROAD,HAMILTON TWP,,1950,1,RES1,3001 -0112_226_9.02,-74.8023365,39.64255,7082 WEYMOUTH ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_23_3,-74.48723436,39.49626336,1322 ORCHARD ROAD,HAMILTON TWP,16,1972,1,RES1,3001 -0112_23_4,-74.568474,39.4125125,1326 ORCHARD ROAD,HAMILTON TWP,16,1972,1,RES1,3001 -0112_23_5,-74.3753825,39.413276,1330 ORCHARD ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_23_6,-74.554006,39.471703,7321 STRAND AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_23_7,-74.61742054,39.3479216,7317 STRAND AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_23_8,-74.48872766,39.33577201,7313 STRAND AVENUE,HAMILTON TWP,,1900,1,RES1,3001 -0112_23_9,-74.46145687,39.35072531,7309 STRAND AVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_235_1,-74.889282,39.4670085,7174 BLUEBERRY ROAD,HAMILTON TWP,,1955,1,RES1,3001 -0112_235_2,-74.59508394,39.33133725,7188 BLUEBERRY ROAD,HAMILTON TWP,,1944,1,RES1,3001 -0112_235_3,-74.5224145,39.316192,7156 BLUEBERRY ROAD,HAMILTON TWP,,1957,1,RES1,3001 -0112_235_8,-74.76979249,39.67068587,2961 FRONT ST,HAMILTON TWP,,0,1,RES1,3001 -0112_236_4,-74.60267562,39.40882067,2801 ELWOOD ROAD,HAMILTON TWP,,1989,1,RES1,3001 -0112_237_1,-74.50426913,39.4142815,2877 ELWOOD RD,HAMILTON TWP,,1956,1,RES1,3001 -0112_238_3,-74.60587609,39.50112538,3025 ELWOOD ROAD,HAMILTON TWP,17,1975,1,RES1,3001 -0112_238_4,-74.5025125,39.325579,3029 ELWOOD ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_24_10,-74.82563917,39.4034638,7316 SMITH AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_24_11,-74.371589,39.4046015,7304 SMITH AVENUE,HAMILTON TWP,16,1999,1,RES1,3001 -0112_24_14,-74.5947285,39.4274115,7300 STRAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_24_17,-74.48429733,39.495387,7312 STRAND AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_24_18,-74.7534715,39.401309,7316 STRAND AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_24_2,-74.4066546,39.37951503,1418 ORCHARD ROAD,HAMILTON TWP,,0,1,RES3A,3001 -0112_24_4,-74.373926,39.415264,1422 ORCHARD ROAD,HAMILTON TWP,,1926,1,RES3A,3001 -0112_24_7,-74.83940975,39.5335126,7342 SMITH AVENUE,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_240_12,-74.4626865,39.350476,3195 TWENTY SECOND AVE,HAMILTON TWP,,1981,1,RES1,3001 -0112_25_1,-74.5939054,39.34753307,1516 ORCHARD ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_25_2,-74.71040284,39.57813853,1530 MALAGA ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_25_5,-74.48536733,39.34534306,7321 SMITH AVENUE,HAMILTON TWP,17,2013,1,RES1,3001 -0112_27_11,-74.60456512,39.32299027,SMITH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_27_15,-74.94838024,39.51592602,SMITH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_27_18,-74.661524,39.402523,FOURTH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_27_2,-74.48993886,39.33575134,7651 JACKSON ROAD,HAMILTON TWP,17,1992,1,RES1,3001 -0112_27_25,-74.60561103,39.61820682,FOURTH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_27_27,-74.64742778,39.53451669,7516 FOURTH AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_27_28,-74.588051,39.324891,7512 FOURTH AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_27_29,-74.51583478,39.44416676,7506 FOURTH AVENUE,HAMILTON TWP,16,1975,1,RES1,3001 -0112_27_31.01,-74.82356217,39.63715698,1611 ASBURY AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_27_31.05,-74.49970481,39.43182293,7509 THIRD AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_27_32,-74.71363565,39.43996442,7517 THIRD AVENUE,HAMILTON TWP,16,1950,1,RES3A,3001 -0112_27_35,-74.545704,39.3774195,7529 THIRD AVENUE,HAMILTON TWP,16,1969,1,RES1,3001 -0112_27_36,-74.4813735,39.3526105,7530 WOODBURY ROAD,HAMILTON TWP,16,1970,1,RES1,3001 -0112_27_5,-74.63345894,39.39036985,7639 JACKSON ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_27_7,-74.42102484,39.36523908,1459 ASPEN STREET,HAMILTON TWP,16,1950,1,RES3A,3001 -0112_280_22,-74.60029245,39.41710617,1277 GALVESTON AVENUE,HAMILTON TWP,16,1952,1,RES1,3001 -0112_280_23,-74.60389,39.321781,1283 GALVESTON AVENUE,HAMILTON TWP,16,1952,1,RES1,3001 -0112_280_40,-74.6251915,39.420947,7035 FULTON AVENUE,HAMILTON TWP,16,1990,1,RES1,3001 -0112_282_14,-74.6435325,39.503274,1296 GALVESTON AVE,HAMILTON TWP,15,1963,1,RES1,3001 -0112_285_1,-74.38456694,39.39315466,1312 CHARLESTON AVENUE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_285_21,-74.61520134,39.33863188,1317 MOBILE AVENUE,HAMILTON TWP,16,1975,1,RES1,3002 -0112_295_54,-74.5089015,39.3378675,1375 CINCINNATI AVE,HAMILTON TWP,16,1995,1,RES1,3001 -0112_30_2,-74.49448658,39.45797575,1474 ASPEN STREET,HAMILTON TWP,16,1965,1,RES1,3001 -0112_30_3,-74.51801984,39.31862049,1486 ASPEN STREET,HAMILTON TWP,16,1977,1,RES1,3001 -0112_30_4,-74.45002922,39.49850514,7573 JACKSON ROAD,HAMILTON TWP,17,1988,1,RES1,3002 -0112_301_27,-74.51106246,39.43643234,7037 STRAND AVE,HAMILTON TWP,16,1974,1,RES1,3001 -0112_301_28,-74.45635243,39.46622671,7033 STRAND AVE,HAMILTON TWP,16,1974,1,RES1,3001 -0112_302_23,-74.67228748,39.55566722,1426 BROOKLYN AVE,HAMILTON TWP,16,1972,1,RES3A,3001 -0112_31_1,-74.45096917,39.3524745,7517 FOURTH AVENUE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_31_12,-74.46123917,39.346144,ASPEN STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_31_2.01,-74.42204616,39.368368,7513 FOURTH AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_31_2.02,-74.44225202,39.35970734,7511 FOURTH AVENUE,HAMILTON TWP,17,1979,1,RES1,3002 -0112_31_2.03,-74.4932315,39.4359035,7505 FOURTH AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_31_3,-74.38693542,39.39199384,1545 STRAWBERRY STREET,HAMILTON TWP,16,1960,1,RES1,3001 -0112_31_4,-74.49016536,39.44154774,1533 STRAWBERRY STREET,HAMILTON TWP,,1950,1,RES1,3001 -0112_31_5,-74.48321274,39.43314439,1521 STRAWBERRY STREET,HAMILTON TWP,16,1968,1,RES1,3001 -0112_31_6,-74.58900065,39.33669646,1501 STRAWBERRY STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_31_7,-74.518183,39.322039,SMITH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_312_15,-74.48001929,39.33661868,1226 ATLANTA AVE,HAMILTON TWP,,1938,1,RES1,3001 -0112_314_1,-74.88468885,39.57173574,1212 ARLINGTON AVENUE,HAMILTON TWP,16,2009,1,RES1,3001 -0112_314_2,-74.557697,39.3627175,1220 ARLINGTON AVENUE,HAMILTON TWP,16,1962,1,RES1,3001 -0112_315_5,-74.51563985,39.3211421,1231 BUFFALO AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_317_24,-74.39903489,39.38873956,7006 FULTON AVENUE,HAMILTON TWP,16,1961,1,RES1,3001 -0112_317_25,-74.62178894,39.60646213,1273 TRENTON AVENUE,HAMILTON TWP,16,1961,1,RES1,3001 -0112_32_1,-74.80688438,39.63485376,7433 FOURTH AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_32_11,-74.59164415,39.37703979,1544 STRAWBERRY STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_32_2.01,-74.60417,39.3100975,7450 JACKSON ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_32_2.02,-74.52225397,39.45403884,7427 FOURTH AVENUE,HAMILTON TWP,16,2003,1,AGR1,3001 -0112_32_7,-74.53183303,39.38870332,7525 JACKSON ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_320_30.01,-74.4063775,39.3827165,1317 NASHVILLE AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_322_13,-74.77833476,39.62142156,1327 ATLANTA AVE,HAMILTON TWP,,1951,1,RES1,3001 -0112_322_16,-74.578462,39.382156,1317 ATLANTA AVE,HAMILTON TWP,16,1951,1,RES1,3001 -0112_322_6,-74.49921932,39.43141926,1314 NASHVILLE AVE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_322_7,-74.6169415,39.3690585,1324 NASHVILLE AVE,HAMILTON TWP,16,1936,1,RES1,3001 -0112_322_8,-74.49166256,39.4499642,1332 NASHVILLE AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_324_1,-74.57063896,39.41440211,ATLANTA AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_325_42,-74.60341871,39.31296316,1282 SHREVEPORT AVE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_325_79,-74.55284039,39.53979648,1294 SHREVEPORT AVENUE,HAMILTON TWP,16,1956,1,RES1,3001 -0112_327_15,-74.8016185,39.6236875,1257 ALBANY AVENUE,HAMILTON TWP,16,1945,1,RES1,3001 -0112_327_23,-74.93868076,39.51137458,1271 ALBANY AVENUE,HAMILTON TWP,16,1956,1,RES1,3001 -0112_329_11,-74.38860059,39.38999675,1255 BUFFALO AVE,HAMILTON TWP,16,1958,1,RES1,3001 -0112_329_13,-74.52510933,39.39513948,1257 BUFFALO AVE,HAMILTON TWP,,1972,1,RES1,3001 -0112_329_22.01,-74.619122,39.314252,1271 BUFFALO AVENUE,HAMILTON TWP,16,1968,1,RES1,3001 -0112_329_22.02,-74.39641909,39.38872176,1277 BUFFALO AVENUE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_329_23,-74.57990614,39.34062233,1280 ALBANY AVENUE,HAMILTON TWP,17,2010,1,RES1,3001 -0112_329_41,-74.75973635,39.43264208,1291 BUFFALO AVE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_329_42,-74.6197865,39.4352775,1287 BUFFALO AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_33_1,-74.5722456,39.42856679,7408 FOURTH AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_330_34,-74.9355652,39.52293464,6942 FULTON STREET,HAMILTON TWP,16,1946,1,RES1,3001 -0112_332_2,-74.55906418,39.55284686,7022 MELVIN NEWTON BLVD,HAMILTON TWP,,1938,1,RES1,3001 -0112_334_2,-74.59547487,39.34221666,7014 MARKET STREET,HAMILTON TWP,14,1900,1,RES1,3001 -0112_337_11,-74.65068816,39.53245898,7007 MELVIN NEWTON BLVD,HAMILTON TWP,16,1966,1,RES1,3001 -0112_338_30,-74.78327182,39.31368305,7005 STRAND AVENUE,HAMILTON TWP,17,2011,1,RES1,3001 -0112_34_1,-74.912943,39.4883745,1650 ASBURY AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_34_10,-74.37284152,39.41120531,7410 FOURTH AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_34_11,-74.64554839,39.3659287,7414 FOURTH AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_34_12,-74.56734103,39.41375173,7418 FOURTH AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_34_13,-74.493929,39.33621083,7422 FOURTH AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_34_15,-74.59819718,39.31753707,7430 FOURTH AVENUE,HAMILTON TWP,17,1930,1,RES1,3001 -0112_34_2,-74.4787975,39.340983,7437 THIRD AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_34_3,-74.65561066,39.53467397,7423 THIRD AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_34_4.01,-74.49711431,39.44218498,7419 THIRD AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_34_4.02,-74.50993932,39.33014938,7417 THIRD AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_34_5.01,-74.70116229,39.56894049,7415 THIRD AVENUE,HAMILTON TWP,16,1970,1,RES1,3001 -0112_34_5.02,-74.7890345,39.6324745,7413 THIRD AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_34_6.01,-74.60944269,39.36665749,7405 THIRD AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_34_6.02,-74.94419343,39.52347736,1689 MCCALL AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_34_6.03,-74.48450623,39.51828134,7409 THIRD AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_34_7,-74.40606668,39.38049798,1629 MCCALL AVENUE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_34_8,-74.59638303,39.37830989,1601 MCCALL AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_34_9,-74.50892268,39.328268,7406 FOURTH AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_342_2,-74.51681886,39.46076918,6996 STRAND AVE,HAMILTON TWP,16,1990,1,RES1,3001 -0112_342_27,-74.943484,39.5122115,1439 NASHVILLE AVE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_342_5,-74.54993184,39.39005431,1406 TRENTON AVE,HAMILTON TWP,,1900,1,RES1,3001 -0112_343_1,-74.52934537,39.52126836,1314 MARKET STREET,HAMILTON TWP,16,1950,1,RES1,3001 -0112_344_23,-74.49689829,39.52643058,6985 STRAND AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_347_1.01,-74.64668158,39.62306848,6976 MELVIN NEWTON BLVD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_349_12,-74.51239054,39.43739486,1261 SCRANTON AVE,HAMILTON TWP,16,1920,2,RES1,3001 -0112_349_9,-74.5174765,39.4723935,1252 BUFFALO AVE,HAMILTON TWP,,1920,1,RES1,3001 -0112_35_1,-74.607953,39.330624,THIRD AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_35_3,-74.51075867,39.45357462,7510 THIRD AVENUE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_350_35.04,-74.63687643,39.43210068,6931 MARKET STREET,HAMILTON TWP,16,1956,1,RES1,3001 -0112_351_54,-74.47934132,39.33667153,1285 MOUNT VERNON AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_352_1,-74.625924,39.619639,6926 FULTON AVE,HAMILTON TWP,,0,1,GOV1,3004 -0112_353_34,-74.60702446,39.31657266,1281 KEY WEST AVENUE,HAMILTON TWP,15,1940,1,RES1,3001 -0112_353_41,-74.62161557,39.4228633,1271 KEY WEST AVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_354_16,-74.5758375,39.4784755,1311 KEY WEST AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_354_17.01,-74.61437316,39.43247187,1313 KEY WEST AVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_354_17.02,-74.5648375,39.348573,1318 MOUNT VERNON AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_354_18,-74.52740833,39.39641299,1317 KEY WEST AVE,HAMILTON TWP,16,1925,3,RES1,3001 -0112_354_19,-74.42882288,39.37427273,1325 KEY WEST AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_354_21,-74.8704665,39.601771,6917 MARKET ST,HAMILTON TWP,16,1950,1,RES1,3001 -0112_354_22,-74.49823415,39.49977895,6911 MARKET ST,HAMILTON TWP,,1975,1,RES1,3001 -0112_355_2,-74.40390214,39.39023057,1281 ANNAPOLIS AVE,HAMILTON TWP,,1900,1,RES1,3001 -0112_355_4,-74.40168409,39.3897747,1288 KEY WEST AVE,HAMILTON TWP,16,1950,1,RES3A,3001 -0112_355_5,-74.87607486,39.60185291,1292 KEY WEST AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_355_7,-74.63164733,39.35747767,6905 FULTON AVE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_356_11,-74.93302495,39.49011174,1313 ANNAPOLIS AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_356_18,-74.4903275,39.331337,1329 ANNAPOLIS AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_356_7,-74.466906,39.3572245,6902 FULTON AVE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_358_11,-74.76332858,39.63781968,1326 ANNAPOLIS AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_358_9,-74.4292252,39.4930395,1318 ANNAPOLIS AVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_359_1,-74.710868,39.6397515,1300 WEST POINT AVENUE,HAMILTON TWP,,1966,1,RES1,3001 -0112_359_7,-74.5693385,39.4101935,1328 WEST POINT AVENUE,HAMILTON TWP,15,1948,1,RES1,3001 -0112_36_10,-74.44989925,39.37144214,1717 MCCALL AVENUE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_36_11,-74.52955566,39.4022367,7406 THIRD AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_36_12,-74.9525705,39.51319686,7412 THIRD AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_36_14,-74.5788165,39.371541,7422 THIRD AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_36_15,-74.84133933,39.50576751,7426 THIRD AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_36_16,-74.51634831,39.31984765,7430 THIRD AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_36_17,-74.5823605,39.338368,1716 ASBURY AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_36_2,-74.51409949,39.41718048,7425 WOODBURY ROAD,HAMILTON TWP,17,1938,1,RES1,3001 -0112_36_3,-74.507939,39.494185,7421 WOODBURY ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_36_5,-74.61842135,39.61946446,7413 BELMONT AVENUE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_36_6.02,-74.48533619,39.43903752,7409 BELMONT AVENUE,HAMILTON TWP,16,1961,1,RES1,3001 -0112_36_8,-74.52352369,39.47165345,7405 BELMONT AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_36_9,-74.38366268,39.39822611,7400 BELMONT AVENUE,HAMILTON TWP,17,1995,1,RES1,3001 -0112_363_10,-74.66156195,39.34884335,1384 SHREVEPORT AVE,HAMILTON TWP,,1934,1,RES1,3001 -0112_363_19,-74.48826499,39.46003834,1393 ARLINGTON AVENUE,HAMILTON TWP,16,1952,1,RES1,3001 -0112_363_20,-74.51020516,39.43981497,1395 ARLINGTON AVENUE,HAMILTON TWP,16,1932,1,GOV1,3004 -0112_364_1,-74.8763295,39.461915,6966 STRAND AVENUE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_366_11,-74.83554134,39.64293191,1384 ARLINGTON AVENUE,HAMILTON TWP,16,1949,1,GOV1,3004 -0112_366_16,-74.912791,39.511111,1388 ARLINGTON AVENUE,HAMILTON TWP,16,1938,1,RES1,3001 -0112_366_3,-74.46920998,39.34291632,6954 MELVIN NEWTON BLVD,HAMILTON TWP,17,1968,1,GOV1,3004 -0112_368_32,-74.6485737,39.53263481,6947 MELVIN NEWTON BLVD,HAMILTON TWP,17,1965,1,RES1,3001 -0112_37_14,-74.50064157,39.52724402,7535 THIRD AVENUE,HAMILTON TWP,17,2003,1,GOV1,3004 -0112_37_15,-74.5074125,39.3302465,7538 THIRD AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_37_16,-74.50152524,39.44811103,7534 THIRD AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_37_18,-74.37758552,39.39808802,7532 THIRD AVENUE,HAMILTON TWP,17,1965,1,GOV1,3004 -0112_37_21,-74.56144118,39.36087755,WOODBURY ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_37_22,-74.58056701,39.33277328,1709 ASBURY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_37_24,-74.62751363,39.37623918,7517 WOODBURY ROAD,HAMILTON TWP,17,2000,1,RES1,3001 -0112_37_26,-74.51803096,39.44261535,7511 BELMONT AVENUE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_37_27,-74.596378,39.310072,7515 BELMONT AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_37_28,-74.6427404,39.33514067,7519 BELMONT AVENUE,HAMILTON TWP,17,2006,1,GOV1,3004 -0112_37_30,-74.50768626,39.32997317,7527 BELMONT AVENUE,HAMILTON TWP,17,1960,1,RES3A,3001 -0112_37_31,-74.44919722,39.35446183,7533 BELMONT AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_37_40.01,-74.4624585,39.47299,7416 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_37_40.02,-74.586667,39.373643,7418 BLACK HORSE PIKE,HAMILTON TWP,16,1927,1,RES1,3001 -0112_37_41,-74.529488,39.3872495,7414 BLACK HORSE PIKE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_37_42,-74.80264819,39.53677685,7410 BLACK HORSE PIKE,HAMILTON TWP,17,1992,1,AGR1,3001 -0112_37_44,-74.83481554,39.39477782,7400 BLACK HORSE PIKE,HAMILTON TWP,,1900,1,RES1,3001 -0112_37_45,-74.75123283,39.45303173,1975 MCCALL AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_37_46,-74.59834818,39.32008126,1951 MCCALL AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_37_47,-74.881521,39.595272,1933 MCCALL AVENUE,HAMILTON TWP,16,1943,1,RES1,3001 -0112_37_48,-74.6042835,39.407292,1925 MCCALL AVENUE,HAMILTON TWP,13,1960,1,RES1,3001 -0112_37_49,-74.62624018,39.35489002,1901 MCCALL AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_37_51.01,-74.45276094,39.35714788,7404 FIRST AVENUE,HAMILTON TWP,16,1949,1,RES1,3001 -0112_37_51.02,-74.81429609,39.61686085,7406 FIRST AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_37_52,-74.54382045,39.38397917,7408 FIRST AVENUE,HAMILTON TWP,16,1955,1,GOV1,3004 -0112_37_53,-74.951791,39.518283,7412 FIRST AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_37_54,-74.75555795,39.42946522,7414 FIRST AVENUE,HAMILTON TWP,16,1997,1,GOV1,3004 -0112_37_55,-74.505093,39.32880617,7416 FIRST AVENUE,HAMILTON TWP,16,1934,1,RES1,3001 -0112_37_58,-74.54281067,39.37270602,FIRST AVENUE,HAMILTON TWP,14,1950,1,RES1,3001 -0112_371_14,-74.6453269,39.54450175,1368 BUFFALO AVENUE,HAMILTON TWP,16,1956,1,GOV1,3004 -0112_371_17,-74.53494355,39.38392265,6935 MELVIN NEWTON BLVD,HAMILTON TWP,15,1930,1,RES1,3001 -0112_372_19,-74.77053038,39.31455705,1384 BUFFALO AVE,HAMILTON TWP,16,2002,1,RES1,3001 -0112_372_5,-74.80314248,39.62815317,1376 BUFFALO AVE,HAMILTON TWP,16,1966,1,GOV1,3004 -0112_373_1,-74.51303378,39.32374788,6936 STRAND AVENUE,HAMILTON TWP,,1926,1,RES1,3001 -0112_373_15,-74.50678451,39.48106421,1427 SCRANTON AVE,HAMILTON TWP,16,1966,1,RES1,3001 -0112_373_16,-74.3830005,39.395452,1423 SCRANTON AVE,HAMILTON TWP,16,1964,1,RES1,3001 -0112_374_18,-74.723087,39.452776,1361 MOUNT VERNON AVE,HAMILTON TWP,15,1938,1,RES1,3004 -0112_374_26,-74.52738742,39.38801019,1369 MOUNT VERNON AVE,HAMILTON TWP,16,1980,1,RES1,3001 -0112_374_35,-74.52178167,39.31913399,6921 MELVIN NEWTON BLVD,HAMILTON TWP,16,1920,1,RES1,3001 -0112_375_3,-74.569704,39.3731525,6926 MELVIN NEWTON BLVD,HAMILTON TWP,16,1940,1,RES1,3001 -0112_376_4,-74.59753528,39.3721741,1412 SCRANTON AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_376_5,-74.80681441,39.62731214,1414 SCRANTON AVENUE,HAMILTON TWP,17,1999,1,GOV1,3004 -0112_376_7,-74.46953827,39.34335117,1418 SCRANTON AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_376_9,-74.67051039,39.46164069,1422 SCRANTON AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_378_8,-74.81767,39.6425675,1380 MOUNT VERNON AVE,HAMILTON TWP,16,1986,1,RES1,3001 -0112_379_2,-74.727084,39.4582335,1410 MOUNT VERNON AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_380_2,-74.60814314,39.39443718,1355 ANNAPOLIS AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_380_2.01,-74.7738142,39.61863453,1359 ANNAPOLIS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_380_2.02,-74.46207737,39.34548283,1363 ANNAPOLIS AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_380_3,-74.6005923,39.41835444,6903 MELVIN NEWTON BLVD,HAMILTON TWP,16,1942,1,RES1,3001 -0112_381_6,-74.4882465,39.35002547,6904 MELVIN NEWTON BLVD,HAMILTON TWP,16,1956,1,RES1,3001 -0112_382_1,-74.62708483,39.43481444,6906 STRAND AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_382_10,-74.607191,39.483667,1412 KEY WEST AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_382_2,-74.50514547,39.41006618,1402 KEY WEST AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_383_1,-74.40200434,39.38748531,6896 MARKET STREET,HAMILTON TWP,15,1943,1,GOV1,3004 -0112_383_10,-74.545387,39.4731895,1364 ANNAPOLIS AVE,HAMILTON TWP,,1900,1,RES1,3001 -0112_383_4,-74.82786712,39.41643466,1358 ANNAPOLIS AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_383_5,-74.9220808,39.50887577,6894 MARKET STREET,HAMILTON TWP,16,1930,1,COM3,3004 -0112_383_6,-74.53240196,39.38756768,1351 WEST POINT AVE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_383_7,-74.6287645,39.429285,1353 WEST POINT AVE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_383_8,-74.62028573,39.4345252,1355 WEST POINT AVE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_383_9.01,-74.94329517,39.53964927,1357 WEST POINT AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_383_9.02,-74.532822,39.399614,1359 WEST POINT AVE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_383_9.04,-74.76901327,39.61600608,1362 ANNAPOLIS AVENUE,HAMILTON TWP,16,1965,1,RES1,3001 -0112_383_9.06,-74.82307686,39.62060654,1363 WEST POINT AVE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_384_1,-74.745304,39.4457955,6894 MELVIN NEWTON BLVD,HAMILTON TWP,16,1946,1,RES1,3001 -0112_384_10,-74.8737075,39.591676,1385 WEST POINT AVE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_384_13,-74.504432,39.333619,1389 WEST POINT AVENUE,HAMILTON TWP,16,1956,1,RES1,3001 -0112_385_12,-74.50121,39.5369045,1420 WEST POINT AVE,HAMILTON TWP,16,1930,1,IND2,3002 -0112_385_14,-74.4418862,39.36733132,1428 WEST POINT AVE,HAMILTON TWP,16,1999,1,RES1,3001 -0112_385_2,-74.47266044,39.49117023,6898 STRAND AVENUE,HAMILTON TWP,17,1951,1,GOV1,3004 -0112_385_7,-74.610181,39.3897415,1408 WEST POINT AVE,HAMILTON TWP,,1957,1,RES1,3001 -0112_385_9,-74.516891,39.4050795,1412 WEST POINT AVENUE,HAMILTON TWP,16,1922,1,RES1,3001 -0112_386_18,-74.78912213,39.44254823,1360 WEST POINT AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_386_21,-74.6003325,39.3715015,6889 MELVIN NEWTON BLVD,HAMILTON TWP,16,1942,1,RES1,3001 -0112_388_28,-74.81182406,39.65809469,1424 WEST POINT AVENUE,HAMILTON TWP,16,1956,1,RES1,3001 -0112_389_28,-74.5468235,39.3750515,6871 MELVIN NEWTON BLVD,HAMILTON TWP,16,1972,1,RES1,3001 -0112_39_10,-74.51019201,39.40745483,7403 FIRST AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_39_11,-74.88139185,39.6013197,1853 MCCALL AVENUE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_39_4,-74.7351625,39.436167,7419 FIRST AVENUE,HAMILTON TWP,16,1965,1,RES1,3001 -0112_39_5,-74.46498053,39.46946917,7417 FIRST AVENUE,HAMILTON TWP,16,1965,1,GOV1,3004 -0112_39_7,-74.643048,39.430796,7411 FIRST AVENUE,HAMILTON TWP,16,1965,1,COM1,3004 -0112_39_8,-74.4499135,39.3547155,7409 FIRST AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_390_31,-74.59396582,39.31679798,1378 SITKA AVENUE,HAMILTON TWP,14,1960,1,RES1,3001 -0112_393_1,-74.62087979,39.42142411,6866 MELVIN NEWTON BLVD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_396_19,-74.4832385,39.4777295,1385 DENVER AVE,HAMILTON TWP,16,1999,1,RES1,3001 -0112_397_27,-74.810732,39.639789,6850 STRAND AVE,HAMILTON TWP,17,1934,1,RES1,3001 -0112_398_3,-74.404936,39.380766,6841 MELVIN NEWTON BLVD,HAMILTON TWP,16,1966,1,RES1,3001 -0112_399_13,-74.5549399,39.42672633,1378 DENVER AVE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_399_25,-74.68959355,39.44901169,1387 MONTREAL AVENUE,HAMILTON TWP,16,1966,1,RES1,3001 -0112_4_1,-74.64052106,39.38049527,7680 VENICE BOULEVARD,HAMILTON TWP,17,2002,1,RES1,3001 -0112_4_3,-74.587132,39.3573735,7630 VENICE BOULEVARD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_4_4.01,-74.500202,39.425156,7610 VENICE BOULEVARD,HAMILTON TWP,16,1955,1,RES1,3001 -0112_4_5,-74.6469845,39.3966145,7570 VENICE BOULEVARD,HAMILTON TWP,16,1975,1,RES1,3001 -0112_4_6,-74.48423249,39.34433332,7550 VENICE BOULEVARD,HAMILTON TWP,16,1955,1,RES1,3001 -0112_4_8,-74.64926317,39.3285775,1271 MALAGA ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_4_9,-74.490233,39.3333505,1261 MALAGA ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_40_1,-74.59205491,39.32511316,7436 BELMONT AVENUE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_40_2,-74.5988825,39.4283785,1809 MCCALL AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_40_3,-74.58322392,39.48664299,1811 MCCALL AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_400_3,-74.87524986,39.59353194,6845 STRAND AVENUE,HAMILTON TWP,,1923,1,RES1,3001 -0112_400_5,-74.48716209,39.33674612,6844 STRAND AVENUE,HAMILTON TWP,16,1923,1,RES1,3001 -0112_402_1,-74.58570499,39.32150893,6836 STRAND AVE,HAMILTON TWP,16,1964,1,GOV1,3004 -0112_404_1,-74.88773321,39.52376813,6826 STRAND AVE,HAMILTON TWP,,1920,1,RES1,3001 -0112_404_5,-74.69443149,39.58973767,1413 VANCOUVER AVENUE,HAMILTON TWP,15,1947,1,RES1,3001 -0112_41_1,-74.79142332,39.41662702,7640 BLACK HORSE PIKE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_41_1.02,-74.7333515,39.4642505,7660 BLACK HORSE PIKE,HAMILTON TWP,,1999,1,GOV1,3004 -0112_41_6,-74.9513915,39.5198005,7680 BLACK HORSE PIKE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_413_5,-74.54973637,39.37872615,THIRTY FIFTH STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_413_6,-74.824539,39.388445,THIRTY FIFTH STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_42_2,-74.4175865,39.3698205,7691 BLACK HORSE PIKE,HAMILTON TWP,,1957,1,RES1,3001 -0112_42_3,-74.4808685,39.432492,7685 BLACK HORSE PIKE,HAMILTON TWP,,1987,1,RES1,3001 -0112_42_4,-74.558041,39.36195039,7677 BLACK HORSE PIKE,HAMILTON TWP,16,1962,1,RES1,3001 -0112_42_7,-74.60614675,39.32957202,7651 BLACK HORSE PIKE,HAMILTON TWP,16,1962,2,GOV1,3004 -0112_421_1,-74.47629954,39.48012397,7036 SHEPPARD AVENUE,HAMILTON TWP,17,1942,1,GOV1,3004 -0112_422_1,-74.60841698,39.32438985,7033 SHEPPARD AVENUE,HAMILTON TWP,16,1928,1,GOV1,3004 -0112_423_1,-74.50909337,39.49353727,1516 THIRTY THIRD ST,HAMILTON TWP,16,1956,1,RES1,3001 -0112_427_1,-74.70476682,39.58718016,7025 SHEPPARD AVENUE,HAMILTON TWP,16,1924,1,RES1,3001 -0112_431_1,-74.44282565,39.488198,7020 SHEPPARD AVENUE,HAMILTON TWP,16,1930,1,RES1,3001 -0112_431_3,-74.63001993,39.43923883,7018 SHEPPARD STREET,HAMILTON TWP,15,1930,1,RES1,3001 -0112_432_1,-74.5916062,39.43277986,7017 SHEPPARD AVENUE,HAMILTON TWP,16,1925,1,GOV1,3004 -0112_436_1,-74.38688966,39.39422302,7008 SHEPPARD AVENUE,HAMILTON TWP,16,1930,1,GOV1,3004 -0112_436_2,-74.80291317,39.5399915,7004 SHEPPARD AVENUE,HAMILTON TWP,16,1926,1,RES1,3001 -0112_437_1,-74.58145487,39.4239802,THIRTIETH STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_438_1,-74.52196167,39.45429101,1523 MIZPAH ROAD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_439_1,-74.5248765,39.3186005,1551 THIRTIETH STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_44_8,-74.7776535,39.598356,2555 SIXTH STREET,HAMILTON TWP,18,1997,1,RES1,3004 -0112_440_4,-74.80833821,39.62823325,6952 CASALE BOULEVARD,HAMILTON TWP,16,1940,1,GOV1,3004 -0112_442_1,-74.47541543,39.48514623,6948 SHEPPARD AVENUE,HAMILTON TWP,17,2007,1,GOV1,3004 -0112_443_10,-74.49336062,39.43282124,6957 SHEPPARD AVENUE,HAMILTON TWP,16,1938,1,RES1,3001 -0112_443_12,-74.54531806,39.39942833,6954 COLE AVENUE,HAMILTON TWP,16,1942,1,RES1,3001 -0112_443_2,-74.58634619,39.40762781,1472 THIRTIETH STREET,HAMILTON TWP,16,1930,1,RES1,3004 -0112_443_9,-74.49151153,39.34013763,6960 COLE AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_444_1,-74.4508415,39.353575,1469 TWENTY FIFTH ST,HAMILTON TWP,,1936,1,RES1,3001 -0112_444_2,-74.77577363,39.66593043,1465 TWENTY FIFTH STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_445_1.01,-74.7590616,39.44877281,6985 COLE AVENUE,HAMILTON TWP,16,1975,1,GOV1,3004 -0112_445_5,-74.840703,39.635136,6953 COLE AVENUE,HAMILTON TWP,16,1909,1,RES1,3001 -0112_446_1.01,-74.544323,39.3915275,1550 THIRTIETH STREET,HAMILTON TWP,16,1999,1,GOV1,3004 -0112_447_1,-74.67073399,39.3801141,6938 CASALE BOULEVARD,HAMILTON TWP,16,1975,1,RES1,3001 -0112_447_2,-74.6488985,39.5340505,6936 CASALE BLVD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_448_2,-74.46628547,39.34433466,6934 SHEPPARD AVENUE,HAMILTON TWP,16,1935,1,RES1,3001 -0112_448_3,-74.57086969,39.36584002,6936 SHEPPARD AVENUE,HAMILTON TWP,16,1936,1,RES1,3001 -0112_448_5,-74.62874032,39.3597989,6930 SHEPPARD AVENUE,HAMILTON TWP,16,1942,1,RES1,3001 -0112_449_2,-74.85938089,39.47967784,1472 TWENTY FIFTH STREET,HAMILTON TWP,16,1900,1,RES1,3001 -0112_450_1,-74.64303226,39.4361832,6931 SHEPPARD AVENUE,HAMILTON TWP,16,1932,1,RES1,3001 -0112_459_2,-74.5681555,39.3652115,6904 SHEPPARD AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_46_12,-74.5535239,39.47790604,2021 SKIP MORGAN DRIVE,HAMILTON TWP,,1955,1,RES1,3001 -0112_46_16,-74.64388,39.3846695,2051 SKIP MORGAN DRIVE,HAMILTON TWP,17,1965,1,GOV1,3004 -0112_46_2,-74.85009746,39.61324415,7561 BLACK HORSE PIKE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_46_2.01,-74.9261225,39.5096365,7557 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_46_4,-74.5418195,39.396143,2001 SKIP MORGAN DRIVE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_46_5,-74.5072846,39.40275349,2005 SKIP MORGAN DRIVE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_46_8,-74.52434798,39.38461318,2015 SKIP MORGAN DRIVE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_46_9,-74.63658291,39.34040964,2017 SKIP MORGAN DRIVE,HAMILTON TWP,17,1962,1,RES1,3004 -0112_47_1,-74.64283251,39.62209421,2000 SKIP MORGAN DRIVE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_47_14,-74.72590166,39.5873366,2006 SKIP MORGAN DRIVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_47_15.01,-74.5310745,39.307903,2008 SKIP MORGAN DRIVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_47_16,-74.65656198,39.62499084,2010 SKIP MORGAN DRIVE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_47_18.02,-74.75412214,39.45323863,2011 FLAMING ARROW DRIVE,HAMILTON TWP,17,1965,1,GOV1,3004 -0112_47_19,-74.594185,39.38048,2007 BROWN ARROW DRIVE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_47_21,-74.71356556,39.46918918,2015 FLAMING ARROW DRIVE,HAMILTON TWP,17,1972,1,GOV1,3004 -0112_47_3,-74.47359689,39.44235022,2020 SHOSHONI DRIVE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_470_1,-74.63550753,39.52212916,1476 TWENTIETH STREET,HAMILTON TWP,16,1945,1,RES1,3001 -0112_48_3.01,-74.51236316,39.32802951,2009 APACHE TRAIL,HAMILTON TWP,17,1967,1,RES1,3001 -0112_48_3.02,-74.6455495,39.528514,2013 APACHE TRAIL,HAMILTON TWP,17,1973,1,RES1,3001 -0112_48_5,-74.55580705,39.47073474,2019 FLAMING ARROW DRIVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_49_10,-74.36898466,39.41703301,2014 APACHE TRAIL,HAMILTON TWP,17,1965,1,RES1,3001 -0112_49_11,-74.81936047,39.64400434,2018 APACHE TRAIL,HAMILTON TWP,17,1962,1,RES1,3001 -0112_49_2.02,-74.55275743,39.37201819,2033 SHOSHONI DRIVE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_49_7.01,-74.55002723,39.36370375,2004 APACHE TRAIL,HAMILTON TWP,17,1972,1,RES1,3001 -0112_49_8,-74.47961904,39.44319081,2008 APACHE TRAIL,HAMILTON TWP,17,1965,1,RES1,3001 -0112_49_9,-74.601907,39.315092,2012 APACHE TRAIL,HAMILTON TWP,,1900,1,RES1,3001 -0112_491_1,-74.5692557,39.41327275,6764 RAILROAD BOULEVARD,HAMILTON TWP,16,1955,1,RES1,3001 -0112_491_2,-74.60460603,39.32858916,6750 RAILROAD BLVD,HAMILTON TWP,16,1955,1,RES1,3001 -0112_492_2,-74.6024929,39.41937446,7024 HARDING HIGHWAY,HAMILTON TWP,17,1955,2,IND2,3004 -0112_492_3,-74.78252895,39.63951606,7004 HARDING HWY,HAMILTON TWP,16,1956,1,RES1,3001 -0112_492_4,-74.61451034,39.43000971,6326 INDIANA AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_493_11,-74.80165467,39.66752183,7005 HARDING HIGHWAY,HAMILTON TWP,16,1950,1,RES1,3001 -0112_493_12,-74.502502,39.423579,7023 HARDING HIGHWAY,HAMILTON TWP,17,1955,1,RES1,3001 -0112_493_13,-74.610349,39.31967167,7045 HARDING HIGHWAY,HAMILTON TWP,17,1955,1,RES1,3001 -0112_493_3,-74.71752663,39.57829995,6758 RAILROAD BOULEVARD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_493_5,-74.84014483,39.39712732,6778 RAILROAD BLVD,HAMILTON TWP,17,1968,1,RES1,3001 -0112_493_6,-74.88516178,39.50223188,6473 INDIANA AVENUE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_493_7,-74.84031511,39.40365976,6457 INDIANA AVENUE,HAMILTON TWP,16,1965,1,RES1,3001 -0112_493_9,-74.59450598,39.379676,6443 INDIANA AVENUE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_494_1,-74.72862685,39.45283233,6998 HARDING HWY,HAMILTON TWP,16,1955,1,RES1,3001 -0112_494_2,-74.945665,39.496541,6996 HARDING HWY,HAMILTON TWP,16,1957,1,RES1,3001 -0112_494_3,-74.4633057,39.35225289,6994 HARDING HWY,HAMILTON TWP,17,1966,1,GOV1,3004 -0112_494_4,-74.4726335,39.4892605,6992 HARDING HIGHWAY,HAMILTON TWP,17,2003,1,RES1,3001 -0112_494_6,-74.535718,39.4560225,6988 HARDING HIGHWAY,HAMILTON TWP,16,1950,1,RES1,3001 -0112_494_7,-74.62619816,39.43869726,6984 HARDING HWY,HAMILTON TWP,17,1977,1,GOV1,3004 -0112_494_73,-74.50591408,39.33645563,6317 INDIANA AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_494_74,-74.57183533,39.33595744,6327 INDIANA AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_494_9,-74.57402801,39.34804483,6978 HARDING HIGHWAY,HAMILTON TWP,15,1926,1,RES1,3001 -0112_494_9.01,-74.8043495,39.375569,MADISON AVENUE,HAMILTON TWP,,1990,1,RES1,3001 -0112_495_10,-74.82009983,39.39727951,6987 HARDING HIGHWAY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_495_11,-74.60812007,39.4396441,6989 HARDING HIGHWAY,HAMILTON TWP,17,1974,1,RES1,3001 -0112_495_12,-74.5985475,39.436944,6991 HARDING HIGHWAY,HAMILTON TWP,16,1928,1,RES1,3001 -0112_495_13,-74.7190705,39.5761755,6995 HARDING HIGHWAY,HAMILTON TWP,17,1928,1,RES1,3001 -0112_495_14,-74.61300621,39.32277009,6997 HARDING HIGHWAY,HAMILTON TWP,16,1955,1,RES1,3004 -0112_495_15,-74.61727798,39.37074968,6442 INDIANA AVENUE,HAMILTON TWP,17,1925,1,RES1,3001 -0112_495_3,-74.6419525,39.5263165,6908 RAILROAD BLVD,HAMILTON TWP,16,1930,1,RES1,3001 -0112_495_6,-74.59405273,39.35894057,6985 HARDING HIGHWAY,HAMILTON TWP,16,1993,1,GOV1,3004 -0112_496_10,-74.5093935,39.4001855,6955 HARDING HIGHWAY,HAMILTON TWP,17,1928,2,RES1,3001 -0112_496_11,-74.65013918,39.52693292,6961 HARDING HIGHWAY,HAMILTON TWP,16,1955,1,RES1,3001 -0112_496_12,-74.6229055,39.5497275,6963 HARDING HIGHWAY,HAMILTON TWP,16,1955,1,RES1,3001 -0112_496_13,-74.78771759,39.64769898,6965 HARDING HWY,HAMILTON TWP,17,1926,1,RES1,3001 -0112_496_14,-74.77223692,39.6617806,6967 HARDING HIGHWAY,HAMILTON TWP,16,1946,1,RES1,3001 -0112_496_16,-74.4886705,39.4339755,6969 HARDING HWY,HAMILTON TWP,16,1950,1,RES1,3001 -0112_496_3,-74.58284364,39.4137473,6960 RAILROAD BOULEVARD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_496_5,-74.6011365,39.4240225,6956 RAILROAD BLVD,HAMILTON TWP,16,2002,1,RES1,3001 -0112_496_8,-74.66293638,39.53146571,6953 HARDING HWY,HAMILTON TWP,,1966,1,RES1,3001 -0112_496_9,-74.5077875,39.4907345,6957 HARDING HWY,HAMILTON TWP,,1910,1,RES1,3001 -0112_497_1,-74.37331767,39.40547197,6947 HARDING HIGHWAY,HAMILTON TWP,16,1955,1,RES1,3001 -0112_497_21,-74.64054225,39.3722306,6945 HARDING HIGHWAY,HAMILTON TWP,16,1960,1,RES1,3001 -0112_5_1,-74.507184,39.478856,7681 VENICE BOULEVARD,HAMILTON TWP,17,1972,1,GOV1,3004 -0112_5_10,-74.95283815,39.53311277,7570 STRAND AVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_5_11,-74.4313535,39.3725615,7540 STRAND AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_5_12,-74.5186245,39.387107,1363 STRAWBERRY STREET,HAMILTON TWP,17,2007,1,RES1,3001 -0112_5_13,-74.40203062,39.38151615,1355 STRAWBERRY STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_5_14,-74.662504,39.402168,1345 STRAWBERRY STREET,HAMILTON TWP,16,1974,1,RES1,3001 -0112_5_15,-74.78244019,39.63444572,1333 STRAWBERRY STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_5_18,-74.60533684,39.33226402,7591 VENICE BOULEVARD,HAMILTON TWP,17,1967,1,GOV1,3004 -0112_5_2,-74.5668315,39.4105625,1336 ASPEN STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_5_20,-74.58204534,39.33630718,7621 VENICE BOULEVARD,HAMILTON TWP,16,1965,1,RES1,3001 -0112_5_21,-74.5201386,39.31575481,7631 VENICE BOULEVARD,HAMILTON TWP,17,1955,1,RES1,3001 -0112_5_22,-74.59076009,39.41003077,7661 VENICE BOULEVARD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_5_3,-74.62404446,39.37799102,1344 ASPEN STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_5_4,-74.46779447,39.49136921,1352 ASPEN STREET,HAMILTON TWP,14,1950,1,RES1,3001 -0112_5_5,-74.60079002,39.47487855,1364 ASPEN STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_5_6,-74.649533,39.5370905,1376 ASPEN STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_5_7,-74.63858533,39.34110249,7660 STRAND AVENUE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_5_8,-74.5025055,39.332363,7630 STRAND AVENUE,HAMILTON TWP,16,1967,1,RES1,3001 -0112_5_9,-74.82517216,39.64630154,7600 STRAND AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_50_10,-74.60450241,39.4303432,FOURTH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_50_18,-74.51732215,39.43798516,2034 SHENANDOAH TRAIL,HAMILTON TWP,,0,1,RES1,3001 -0112_50_26,-74.8001103,39.53242358,2018 SKY DAUGHTER TRAIL,HAMILTON TWP,17,1966,1,RES1,3001 -0112_50_31,-74.8061225,39.6452245,2020 SKY DAUGHTER TRAIL,HAMILTON TWP,17,1970,1,RES1,3001 -0112_50_4,-74.50112955,39.45529967,2015 SHENANDOAH TRAIL,HAMILTON TWP,17,1960,1,RES1,3001 -0112_500_1,-74.6110008,39.49301355,6943 HARDING HIGHWAY,HAMILTON TWP,17,1930,1,RES1,3001 -0112_500_2,-74.62315482,39.37018499,6941 HARDING HIGHWAY,HAMILTON TWP,16,1927,1,RES1,3001 -0112_5000_3,-74.63015749,39.43940027,6251 HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_501_1,-74.61574778,39.43066006,6427 JEFFERSON AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_501_4,-74.46573432,39.34768252,6463 JEFFERSON AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_502_18,-74.6167355,39.3640115,6482 JEFFERSON AVENUE,HAMILTON TWP,16,1925,1,RES1,3001 -0112_502_19,-74.79679931,39.65049212,6944 RAILROAD BOULEVARD,HAMILTON TWP,16,1925,1,RES1,3001 -0112_502_20,-74.435036,39.3673925,6492 LINCOLN STREET,HAMILTON TWP,16,1930,1,GOV1,3004 -0112_502_21,-74.70511308,39.49077835,6496 LINCOLN STREET,HAMILTON TWP,16,1940,1,RES1,3001 -0112_502_22,-74.48207219,39.44275701,6948 RAILROAD BLVD,HAMILTON TWP,16,1935,1,RES1,3001 -0112_502_25,-74.58982958,39.32061112,6940 RAILROAD BLVD,HAMILTON TWP,16,1935,1,RES1,3001 -0112_503_3,-74.60640559,39.32762759,6422 DEHIRSCH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_504_16,-74.85885986,39.58723692,6458 JEFFERSON AVENUE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_504_23,-74.5771575,39.3838695,6464 DEHIRSCH AVENUE,HAMILTON TWP,16,1935,1,RES1,3001 -0112_504_25,-74.5072225,39.3324965,6455 DEHIRSCH AVENUE,HAMILTON TWP,16,1932,1,RES1,3001 -0112_504_26,-74.54052058,39.37326488,6451 DEHIRSCH AVENUE,HAMILTON TWP,17,1945,1,RES1,3001 -0112_505_11,-74.62878344,39.36619423,6438 JEFFERSON AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_505_15,-74.56563768,39.41863848,6932 RAILROAD BLVD,HAMILTON TWP,,1936,1,RES1,3001 -0112_505_17,-74.85507004,39.61942056,6928 RAILROAD BOULEVARD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_505_2,-74.5750035,39.4225595,6478 JEFFERSON AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_505_7,-74.7776795,39.625337,6466 JEFFERSON AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_506_1,-74.53873564,39.39178953,6935 HARDING HWY,HAMILTON TWP,16,1954,1,RES1,3001 -0112_506_2,-74.80633536,39.48836269,6408 DEHIRSCH AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_506_20,-74.86084973,39.48780182,6432 DEHIRSCH AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_507_1,-74.569395,39.348957,6442 DEHIRSCH AVENUE,HAMILTON TWP,,1983,1,RES1,3001 -0112_507_10,-74.78166701,39.50275345,6916 SEWELL AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_507_3,-74.560071,39.359683,6454 DEHIRSCH AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_507_4,-74.633626,39.4320035,6458 DEHIRSCH AVENUE,HAMILTON TWP,16,1955,1,RES1,3002 -0112_507_5,-74.7943745,39.634296,6462 DEHIRSCH AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_507_9,-74.54869476,39.46284996,6466 DEHIRSCH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_508_1,-74.5240284,39.38866177,6478 DEHIRSCH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_508_12,-74.56801287,39.35076773,6914 RAILROAD BLVD,HAMILTON TWP,17,1950,1,RES1,3001 -0112_508_6,-74.497305,39.3321405,6488 DEHIRSCH AVENUE,HAMILTON TWP,,1911,1,RES1,3001 -0112_508_8,-74.636402,39.5015885,6922 RAILROAD BOULEVARD,HAMILTON TWP,17,1955,1,REL1,3003 -0112_508_9,-74.935007,39.5032235,6918 RAILROAD BOULEVARD,HAMILTON TWP,16,1915,1,RES1,3001 -0112_509_58,-74.5303285,39.499575,6925 HARDING HIGHWAY,HAMILTON TWP,17,1975,1,RES1,3001 -0112_51_11,-74.5606545,39.502453,2017 SUN WARRIOR TRAIL,HAMILTON TWP,,1976,1,RES1,3001 -0112_51_2,-74.89218602,39.52831122,2016 SHENANDOAH TRAIL,HAMILTON TWP,17,1972,1,RES1,3001 -0112_510_20,-74.6560354,39.36611766,6896 SEWELL AVENUE,HAMILTON TWP,17,1977,1,COM3,3004 -0112_511_1,-74.623259,39.3784225,6899 SEWELL AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_511_1.01,-74.624522,39.380191,6493 GARFIELD STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_511_1.02,-74.8225435,39.5408425,6495 GARFIELD STREET,HAMILTON TWP,,2015,1,RES1,3001 -0112_511_6,-74.66887984,39.55859497,6904 RAILROAD BLVD,HAMILTON TWP,16,1930,1,RES1,3001 -0112_513_18,-74.43031932,39.36833201,6892 SEWELL AVENUE,HAMILTON TWP,,1977,1,GOV1,3004 -0112_513_19,-74.51899259,39.31873055,6466 GARFIELD STREET,HAMILTON TWP,17,1950,1,RES1,3001 -0112_514_1,-74.82356626,39.45805171,6895 SEWELL AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_514_16,-74.75536561,39.4468678,6494 GARFIELD STREET,HAMILTON TWP,16,1942,1,RES1,3001 -0112_514_17,-74.594329,39.32258,6496 GARFIELD STREET,HAMILTON TWP,16,1942,1,RES1,3001 -0112_514_44,-74.49703,39.4902135,6479 CHURCH STREET,HAMILTON TWP,16,1949,1,RES1,3001 -0112_517_1,-74.51932618,39.41086705,1700 DRAKE AVENUE,HAMILTON TWP,16,2004,1,RES1,3001 -0112_517_2,-74.4011545,39.3872685,1740 DRAKE AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_517_3,-74.4797035,39.44356,7193 BELMONT AVENUE,HAMILTON TWP,16,1975,1,RES1,3001 -0112_517_5,-74.45696568,39.34768398,7187 BELMONT AVENUE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_517_6,-74.501461,39.502492,7181 BELMONT AVENUE,HAMILTON TWP,17,2001,1,GOV1,3004 -0112_519_1,-74.71484227,39.46722039,1800 DRAKE AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_519_11,-74.56946863,39.34761623,7163 FIRST AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_519_2,-74.68565715,39.65336991,7195 JACKSON ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_519_3,-74.549074,39.473636,7192 JACKSON ROAD,HAMILTON TWP,14,1946,1,RES1,3001 -0112_519_4,-74.71865114,39.57199135,1842 DRAKE AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_519_5,-74.7507985,39.4469395,1858 DRAKE AVENUE,HAMILTON TWP,16,1975,1,RES1,3001 -0112_519_6,-74.524131,39.3141605,7193 FIRST AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_519_9,-74.4237,39.366488,7175 FIRST AVENUE,HAMILTON TWP,16,1977,1,RES1,3001 -0112_520_1,-74.556657,39.5462725,1908 DRAKE AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_520_10,-74.4663545,39.3450245,1950 MALAGA ROAD,HAMILTON TWP,,2018,1,RES1,3001 -0112_520_11,-74.71259839,39.46600687,1952 MALAGA ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_520_14,-74.655556,39.6275855,1958 MALAGA ROAD,HAMILTON TWP,16,1962,1,RES1,3001 -0112_520_15,-74.76193074,39.42725337,1964 MALAGA ROAD,HAMILTON TWP,16,1962,1,RES1,3001 -0112_520_16,-74.633448,39.5239415,1962 MALAGA ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_520_17,-74.5517835,39.3766355,1970 MALAGA ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_520_18,-74.58575645,39.34908724,1976 MALAGA ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_520_19,-74.528256,39.4030415,1980 MALAGA ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_520_2,-74.95030447,39.51250024,1924 DRAKE AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_520_20,-74.6277545,39.392471,1984 MALAGA ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_520_21,-74.87157328,39.48930337,1988 MALAGA ROAD,HAMILTON TWP,14,1950,1,RES1,3001 -0112_520_25,-74.54934797,39.4772112,WEYMOUTH ROAD,HAMILTON TWP,14,1945,1,RES1,3001 -0112_520_26,-74.592463,39.37936,6943 WEYMOUTH ROAD,HAMILTON TWP,14,1936,1,GOV1,3004 -0112_520_27,-74.8224305,39.63010783,6902 WEYMOUTH ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_520_3,-74.51036516,39.40771624,7196 FIRST AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_520_30,-74.49362273,39.43586321,1169 MIZPAH ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_520_31,-74.713095,39.468377,1965 MIZPAH ROAD,HAMILTON TWP,17,1955,1,RES1,3001 -0112_520_32,-74.951122,39.5130675,1959 MIZPAH ROAD,HAMILTON TWP,16,1954,1,RES1,3001 -0112_520_5,-74.42418932,39.37028304,7188 FIRST AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_520_6,-74.7017015,39.637677,7184 FIRST AVENUE,HAMILTON TWP,17,2008,1,COM3,3004 -0112_520_7,-74.62645274,39.41428122,7176 FIRST AVENUE,HAMILTON TWP,16,1963,1,RES1,3001 -0112_520_8,-74.57509915,39.41921094,7168 FIRST AVENUE,HAMILTON TWP,15,1936,1,RES1,3001 -0112_520_9,-74.762994,39.4274835,7158 FIRST AVENUE,HAMILTON TWP,,1960,1,RES1,3001 -0112_522_2,-74.59171,39.3254245,6967 DEEPRUN ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_522_3,-74.56416643,39.37112681,6961 WEYMOUTH ROAD,HAMILTON TWP,16,1952,1,RES1,3001 -0112_525_5,-74.51968548,39.47072433,7005 THIRD AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_526_6,-74.59658241,39.31000761,1821 MIZPAH ROAD,HAMILTON TWP,17,1955,1,RES1,3001 -0112_528_1,-74.61282468,39.42662604,6974 LANDIS AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_528_3,-74.5212085,39.4463445,6954 LANDIS AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_529_1,-74.53668803,39.41216066,6974 HARDING HWY,HAMILTON TWP,17,1934,1,RES1,3001 -0112_529_12,-74.5046592,39.32834026,ADAMS AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_529_13,-74.64725635,39.55144192,ADAMS AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_529_14,-74.779506,39.5163675,ADAMS AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_529_17,-74.74963196,39.45092618,6965 LANDIS AVENUE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_529_18,-74.39228567,39.39069652,6971 LANDIS AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_529_19,-74.46475544,39.49161601,6983 LANDIS AVENUE,HAMILTON TWP,17,1987,1,RES3A,3001 -0112_529_2,-74.51354579,39.33153632,6972 HARDING HIGHWAY,HAMILTON TWP,17,1946,1,RES1,3001 -0112_529_20,-74.512284,39.4425595,MADISON AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_529_21,-74.9196425,39.501217,MADISON AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_529_23,-74.6523705,39.409826,MADISON AVE,HAMILTON TWP,,0,1,COM8,3004 -0112_529_4,-74.59005413,39.35715221,6968 HARDING HIGHWAY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_529_7,-74.4895525,39.4362345,6958 HARDING HWY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_529_8,-74.48919,39.4990105,6956 HARDING HIGHWAY,HAMILTON TWP,17,1958,1,RES1,3001 -0112_529_9,-74.51427216,39.32959452,6950 HARDING HWY,HAMILTON TWP,17,1930,1,GOV1,3004 -0112_53_1,-74.64702,39.5345615,2003 LITTLE FEATHER DRIVE,HAMILTON TWP,16,1932,1,RES1,3001 -0112_53_10,-74.51535855,39.44138784,2033 BALLARD DRIVE,HAMILTON TWP,17,1970,2,RES1,3001 -0112_53_16,-74.63204627,39.60684656,2034 BALLARD DRIVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_53_18,-74.62658372,39.46096285,2030 BALLARD DRIVE,HAMILTON TWP,17,1973,1,COM4,3004 -0112_53_19,-74.64066834,39.53273903,2026 LITTLE EAGLE DRIVE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_53_2,-74.56780078,39.35610282,2005 LITTLE FEATHER DRIVE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_53_20,-74.55357482,39.36701152,2024 LITTLE EAGLE DRIVE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_53_22,-74.57254774,39.35946431,2020 LITTLE EAGLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_53_26,-74.94214598,39.51072723,2062 SKIP MORGAN DRIVE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_53_27,-74.51512335,39.32895798,2008 LAWRENCE LANE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_53_28,-74.52341582,39.321952,2011 BLUE FOX LANE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_53_32,-74.59808733,39.33048112,2010 WINDING WAY,HAMILTON TWP,17,1973,1,RES1,3001 -0112_53_34,-74.6261214,39.42101569,2014 WINDING WAY,HAMILTON TWP,17,1970,1,RES1,3001 -0112_53_35,-74.52137084,39.38715923,2016 WINDING WAY,HAMILTON TWP,17,1962,1,RES1,3001 -0112_53_38,-74.57197815,39.47718047,2003 RED WING WAY,HAMILTON TWP,17,1970,1,RES1,3001 -0112_53_39.02,-74.51552047,39.32496659,2007 RED WING WAY,HAMILTON TWP,17,1975,1,RES1,3001 -0112_53_40,-74.59454272,39.55320364,2009 RED WING WAY,HAMILTON TWP,17,1969,1,RES1,3001 -0112_53_41,-74.366248,39.415537,2011 RED WING WAY,HAMILTON TWP,17,1975,1,RES1,3001 -0112_53_42,-74.87137388,39.58981284,2013 RED WING WAY,HAMILTON TWP,17,1961,1,RES1,3001 -0112_53_43,-74.5674045,39.475558,2015 RED WING WAY,HAMILTON TWP,17,1974,1,RES1,3001 -0112_53_45,-74.55098385,39.36364059,2003 BLUE FOX LANE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_53_46,-74.57114249,39.37123967,2005 BLUE FOX LANE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_53_47,-74.5211985,39.39443,2007 LAWRENCE LANE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_53_48,-74.374098,39.409967,2064 SKIP MORGAN DRIVE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_53_49.02,-74.50913467,39.32612847,2068 SKIP MORGAN DRIVE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_53_50,-74.5444655,39.386217,2070 SKIP MORGAN DRIVE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_53_51,-74.390768,39.392431,2072 SKIP MORGAN DRIVE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_53_8,-74.68849754,39.5502186,2029 BALLARD DRIVE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_53_9,-74.513057,39.462,2031 BALLARD DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_530_4.02,-74.55415496,39.36611938,6346 ESTELLE AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_530_6.01,-74.65020734,39.52195897,6334 ESTELLE AVENUE,HAMILTON TWP,16,1961,1,RES1,3001 -0112_530_6.02,-74.787802,39.632663,6330 ESTELLE AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_530_8.01,-74.60114901,39.42039806,6318 ESTELLE AVENUE,HAMILTON TWP,16,1985,1,RES1,3001 -0112_530_8.03,-74.61393482,39.42464696,6310 ESTELLE AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_531_1,-74.52164875,39.4063891,6944 HARDING HIGHWAY,HAMILTON TWP,16,1950,1,GOV1,3004 -0112_531_13,-74.53878309,39.46950677,6372 ESTELLE AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_531_3,-74.64700933,39.34503,6940 HARDING HIGHWAY,HAMILTON TWP,17,1937,1,RES1,3001 -0112_531_5,-74.63971769,39.44466304,6934 HARDING HWY,HAMILTON TWP,17,1948,1,RES1,3001 -0112_531_6,-74.59262507,39.36551971,6394 JEFFERSON STREET,HAMILTON TWP,17,1955,1,RES1,3001 -0112_531_7,-74.46049441,39.35640209,6388 ESTELLE AVENUE,HAMILTON TWP,14,1990,1,RES1,3001 -0112_532_1,-74.728627,39.588011,6932 HARDING HWY,HAMILTON TWP,17,1975,1,RES1,3001 -0112_532_2,-74.4223895,39.372305,6928 HARDING HWY,HAMILTON TWP,,1974,1,RES3A,3001 -0112_533_1,-74.75789559,39.43303032,6924 LANDIS AVENUE,HAMILTON TWP,17,1926,1,RES1,3001 -0112_533_14,-74.73611142,39.45401767,6323 ESTELLE AVENUE,HAMILTON TWP,17,2005,1,GOV1,3004 -0112_533_15,-74.48917887,39.33416984,6331 ESTELLE AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_533_16,-74.47895,39.3405315,6339 ESTELLE AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_533_17,-74.498679,39.438037,ESTELLE AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_533_4,-74.6428795,39.5305045,6360 MARYLAND AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_534_14,-74.430031,39.3646735,6375 ESTELLE AVENUE,HAMILTON TWP,,1900,1,RES1,3001 -0112_534_18,-74.5033058,39.41634948,6391 ESTELLE AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_534_3,-74.585673,39.4878995,6912 HARDING HIGHWAY,HAMILTON TWP,16,1925,1,RES1,3001 -0112_534_5,-74.58756264,39.42331498,6906 HARDING HWY,HAMILTON TWP,17,1985,1,COM1,3004 -0112_534_6.01,-74.80649572,39.44232004,6902 HARDING HIGHWAY,HAMILTON TWP,16,1930,1,RES1,3001 -0112_534_6.02,-74.5914985,39.377336,MARYLAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_534_6.03,-74.55329572,39.46774603,6378 MARYLAND AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_534_7,-74.65432103,39.39965133,MARYLAND AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_534_8,-74.47244376,39.3414056,6907 LANDIS AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_535_1.01,-74.59032694,39.31906017,6910 RAILROAD BOULEVARD,HAMILTON TWP,17,2009,1,RES1,3001 -0112_535_1.02,-74.521829,39.3217165,6451 CHURCH STREET,HAMILTON TWP,17,1950,1,RES1,3001 -0112_535_1.03,-74.47351826,39.48573062,6447 CHURCH STREET,HAMILTON TWP,17,1955,1,RES1,3001 -0112_535_1.04,-74.61562258,39.39524462,6443 CHURCH STREET,HAMILTON TWP,17,1955,1,RES1,3001 -0112_535_2.01,-74.7701205,39.662414,6906 RAILROAD BOULEVARD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_535_2.02,-74.691217,39.48274,6902 RAILROAD BOULEVARD,HAMILTON TWP,16,1991,1,RES1,3002 -0112_535_2.04,-74.613776,39.421004,6428 MARYLAND AVENUE,HAMILTON TWP,17,2010,1,RES1,3001 -0112_535_2.05,-74.69175546,39.35829762,6420 MARYLAND AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_535_3,-74.50654892,39.41891393,6903 HARDING HWY,HAMILTON TWP,17,1921,1,RES1,3001 -0112_535_4,-74.820549,39.47068,6909 HARDING HIGHWAY,HAMILTON TWP,17,1960,1,RES1,3001 -0112_536_1,-74.930893,39.5146165,6898 LANDIS AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_536_14,-74.78981329,39.63516097,6361 MARYLAND AVENUE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_536_3,-74.5451145,39.4769725,6894 LANDIS AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_536_5,-74.733384,39.4620795,6882 LANDIS AVENUE,HAMILTON TWP,17,1991,1,RES3A,3001 -0112_537_2,-74.87908572,39.59325306,6894 HARDING HIGHWAY,HAMILTON TWP,17,1965,1,RES1,3001 -0112_537_5,-74.6193695,39.4373705,6880 HARDING HWY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_537_6,-74.82832777,39.40861562,6883 LANDIS AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_537_7,-74.7762255,39.598967,6895 LANDIS AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_537_8,-74.64132537,39.37766041,6899 LANDIS AVENUE,HAMILTON TWP,17,2008,1,COM8,3004 -0112_538_1,-74.820356,39.637412,6896 RAILROAD BOULEVARD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_538_10,-74.7812436,39.50914131,6418 STRAND AVENUE,HAMILTON TWP,17,2011,1,RES1,3001 -0112_538_11,-74.387048,39.39423,6416 STRAND AVENUE,HAMILTON TWP,17,2006,1,GOV1,3004 -0112_538_13,-74.56280245,39.44561038,6412 STRAND AVENUE,HAMILTON TWP,17,2005,1,RES1,3002 -0112_538_14,-74.639065,39.401159,6410 STRAND AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_538_16,-74.66748666,39.41789016,6877 HARDING HIGHWAY,HAMILTON TWP,17,1965,1,RES1,3001 -0112_538_17,-74.5006995,39.500297,6881 HARDING HWY,HAMILTON TWP,17,1980,1,RES1,3001 -0112_538_18,-74.57215191,39.42892759,6885 HARDING HIGHWAY,HAMILTON TWP,17,2004,1,RES1,3001 -0112_538_19,-74.42063598,39.36640928,6893 HARDING HWY,HAMILTON TWP,16,1940,1,RES1,3001 -0112_538_2.01,-74.587213,39.4279075,6890 RAILROAD BOULEVARD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_538_20.01,-74.39778516,39.39007897,6897 HARDING HWY,HAMILTON TWP,17,1956,1,RES1,3001 -0112_538_20.02,-74.45696456,39.46927034,6899 HARDING HIGHWAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_538_20.03,-74.5074605,39.3376945,6419 MARYLAND AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_538_21,-74.6807055,39.4868755,6413 MARYLAND AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_538_6,-74.48661872,39.4956557,6430 STRAND AVENUE,HAMILTON TWP,17,2003,1,GOV1,3004 -0112_538_9,-74.79545997,39.66228417,6420 STRAND AVENUE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_539_1,-74.51171725,39.32790567,6874 HARDING HWY,HAMILTON TWP,16,1926,1,RES1,3001 -0112_539_2,-74.53054658,39.30809714,6873 LANDIS AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_539_4,-74.5174755,39.3244635,6862 HARDING HIGHWAY,HAMILTON TWP,17,1918,1,RES1,3001 -0112_54_1,-74.57936283,39.40754588,2002 BLUE FOX LANE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_54_10,-74.45602033,39.3483055,2007 BEAR CLAW LANE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_54_4,-74.65574165,39.36752856,2006 BLUE FOX LANE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_54_5,-74.49547408,39.33656857,2008 BLUE FOX LANE,HAMILTON TWP,17,1961,1,COM1,3004 -0112_54_6,-74.40591746,39.38158283,2010 BLUE FOX LANE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_54_8,-74.4868169,39.35150618,2011 BEAR CLAW LANE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_540_2,-74.8125722,39.45309304,6437 STRAND AVENUE,HAMILTON TWP,16,1925,1,RES1,3001 -0112_540_3,-74.4838885,39.3482185,6419 STRAND AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_540_6,-74.3707305,39.4042515,6867 HARDING HIGHWAY,HAMILTON TWP,16,1955,1,RES1,3001 -0112_540_7,-74.56221357,39.41317484,6863 HARDING HIGHWAY,HAMILTON TWP,16,1910,1,RES1,3001 -0112_540_8,-74.61829037,39.43867443,6859 HARDING HIGHWAY,HAMILTON TWP,17,2005,1,RES1,3001 -0112_542_11,-74.43007356,39.36922884,6839 HARDING HIGHWAY,HAMILTON TWP,17,1951,2,RES1,3001 -0112_542_12,-74.57053884,39.41208489,6849 HARDING HIGHWAY,HAMILTON TWP,16,1960,1,RES1,3001 -0112_542_9,-74.65511214,39.52412315,6825 HARDING HWY,HAMILTON TWP,16,1950,2,RES1,3001 -0112_543_4,-74.50091498,39.33592833,6805 HARDING HWY,HAMILTON TWP,16,1950,1,RES1,3001 -0112_543_5,-74.486528,39.3357065,6809 HARDING HIGHWAY,HAMILTON TWP,16,1950,1,RES1,3001 -0112_543_7,-74.46312716,39.35296501,6815 HARDING HIGHWAY,HAMILTON TWP,17,2004,1,RES1,3001 -0112_543_8,-74.72457419,39.45333556,6821 HARDING HWY,HAMILTON TWP,16,1950,1,RES1,3001 -0112_55_6,-74.61673599,39.43274146,2011 DEER TRACK LANE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_55_9,-74.64113771,39.36875294,2003 DEER TRACK LANE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_57_2,-74.384683,39.394335,2004 DEER TRACK LANE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_57_3,-74.46032,39.3475875,2006 DEER TRACK LANE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_57_4,-74.4493991,39.49451487,2008 DEER TRACK LANE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_57_8,-74.50331407,39.43245566,2005 MOHRFELD DRIVE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_57_9,-74.68625295,39.39515907,2003 MOHRFELD DRIVE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_576_3,-74.57273819,39.36338848,6984 THIRD AVENUE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_577_12,-74.37560676,39.41301016,6925 THIRD AVENUE,HAMILTON TWP,16,1966,1,RES1,3001 -0112_577_13,-74.927422,39.5279995,6937 THIRD AVENUE,HAMILTON TWP,,1947,1,RES1,3001 -0112_577_15,-74.74771598,39.38900879,6955 THIRD AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_577_19,-74.51901711,39.40249865,6977 THIRD AVENUE,HAMILTON TWP,16,1950,1,GOV1,3004 -0112_577_2,-74.46584925,39.49640696,1750 MIZPAH ROAD,HAMILTON TWP,16,1945,1,RES1,3001 -0112_577_5,-74.60738676,39.48970363,6954 ROSEBUD AVENUE,HAMILTON TWP,16,1947,1,RES1,3001 -0112_577_6,-74.636254,39.383952,ROSEBUD AVENUE,HAMILTON TWP,,1956,1,RES1,3001 -0112_578_12,-74.589168,39.335193,6955 ROSEBUD AVENUE,HAMILTON TWP,15,1950,1,RES1,3001 -0112_578_13,-74.69184123,39.44141369,6965 ROSEBUD AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_578_14,-74.63419104,39.34250815,6975 ROSEBUD AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_579_18,-74.59157337,39.33588568,6792 WEYMOUTH ROAD,HAMILTON TWP,15,1926,1,RES1,3001 -0112_579_21,-74.77428151,39.63265615,6774 WEYMOUTH ROAD,HAMILTON TWP,16,1910,1,RES1,3001 -0112_579_22,-74.5111815,39.439469,6768 WEYMOUTH ROAD,HAMILTON TWP,16,1969,1,RES1,3001 -0112_579_23,-74.55466812,39.498724,6760 WEYMOUTH ROAD,HAMILTON TWP,14,1940,1,RES1,3001 -0112_579_24,-74.50743536,39.46224723,6752 WEYMOUTH ROAD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_579_26,-74.7771925,39.6237715,6746 WEYMOUTH ROAD,HAMILTON TWP,16,1948,1,RES1,3001 -0112_579_28,-74.5803505,39.475896,6734 WEYMOUTH ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_579_29,-74.92406315,39.51266644,6728 WEYMOUTH ROAD,HAMILTON TWP,17,1900,1,RES1,3001 -0112_579_30,-74.7595475,39.4295315,6716 WEYMOUTH ROAD,HAMILTON TWP,16,1965,1,RES1,3001 -0112_579_31,-74.755144,39.433471,6706 WEYMOUTH ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_579_32,-74.8902355,39.4993595,6704 WEYMOUTH ROAD,HAMILTON TWP,16,1979,1,RES1,3001 -0112_579_33.01,-74.49717166,39.33116825,6702 WEYMOUTH ROAD,HAMILTON TWP,16,1978,1,COM3,3004 -0112_579_33.02,-74.5172035,39.322809,6700 WEYMOUTH ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_579_60,-74.6486855,39.431197,6656 WEYMOUTH ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_579_61,-74.38793005,39.39392462,6650 WEYMOUTH ROAD,HAMILTON TWP,16,1940,1,RES1,3001 -0112_579_62,-74.562291,39.3628555,6644 WEYMOUTH ROAD,HAMILTON TWP,16,1945,1,RES1,3001 -0112_58_1,-74.49987341,39.32866133,7492 BLACK HORSE PIKE,HAMILTON TWP,15,1950,1,RES1,3001 -0112_58_2,-74.601656,39.4980535,7480 BLACK HORSE PIKE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_580_10,-74.49967452,39.50339637,6886 WEYMOUTH ROAD,HAMILTON TWP,17,1973,1,RES1,3001 -0112_580_11,-74.457263,39.349463,6878 WEYMOUTH ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_580_12,-74.56817313,39.36611585,6870 WEYMOUTH ROAD,HAMILTON TWP,17,1992,1,RES1,3001 -0112_580_13,-74.79257416,39.64018953,6862 WEYMOUTH ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_580_15,-74.786969,39.6331725,6844 WEYMOUTH ROAD,HAMILTON TWP,16,1997,1,RES1,3001 -0112_580_16,-74.535677,39.4728335,6842 WEYMOUTH ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_580_18,-74.5014475,39.4901785,6828 WEYMOUTH ROAD,HAMILTON TWP,17,1979,1,RES1,3001 -0112_580_19,-74.63360751,39.35212685,6812 WEYMOUTH ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_581_11,-74.81867642,39.47038832,6804 THIRD AVENUE,HAMILTON TWP,,0,1,COM3,3004 -0112_581_4,-74.478635,39.3367035,6892 THIRD AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_581_6,-74.79238227,39.64671022,6872 THIRD AVENUE,HAMILTON TWP,17,1954,1,RES1,3004 -0112_581_7.01,-74.676154,39.344376,6858 THIRD AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_581_9.01,-74.853611,39.5608635,6826 THIRD AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_581_9.02,-74.4999275,39.419286,6820 THIRD AVENUE,HAMILTON TWP,15,1960,1,RES1,3001 -0112_582_14,-74.4874495,39.3380775,6821 THIRD AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_582_16,-74.71010384,39.42624089,6833 THIRD AVENUE,HAMILTON TWP,16,1975,1,RES1,3001 -0112_582_17.01,-74.3893565,39.389107,6853 THIRD AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_582_17.02,-74.55222422,39.4720326,6843 THIRD AVENUE,HAMILTON TWP,16,1926,1,RES1,3001 -0112_587_10,-74.483813,39.3455995,6895 WEYMOUTH ROAD,HAMILTON TWP,16,1966,1,RES1,3001 -0112_587_12,-74.6342605,39.469967,6891 WEYMOUTH RD,HAMILTON TWP,15,1942,1,REL1,3004 -0112_587_14,-74.53701036,39.37304964,6853 WEYMOUTH ROAD,HAMILTON TWP,17,1992,1,RES1,3001 -0112_587_15.01,-74.57325789,39.34492915,6849 WEYMOUTH ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_587_15.02,-74.49955392,39.33295824,6843 WEYMOUTH ROAD,HAMILTON TWP,16,1959,1,RES1,3001 -0112_587_16,-74.550283,39.362907,6837 WEYMOUTH ROAD,HAMILTON TWP,16,1951,1,RES1,3001 -0112_587_18,-74.74565776,39.42247353,6825 WEYMOUTH ROAD,HAMILTON TWP,16,1940,1,RES1,3001 -0112_587_19,-74.9318985,39.49588,6817 WEYMOUTH ROAD,HAMILTON TWP,16,1967,1,RES1,3001 -0112_587_2,-74.53635642,39.40701977,6971 DEEPRUN RD,HAMILTON TWP,,1805,1,RES1,3001 -0112_587_20,-74.51831868,39.38738407,6807 WEYMOUTH ROAD,HAMILTON TWP,14,1928,1,RES1,3001 -0112_587_21,-74.51671586,39.32151196,6795 WEYMOUTH ROAD,HAMILTON TWP,17,1979,1,RES1,3001 -0112_587_22,-74.93619335,39.52711631,6787 WEYMOUTH ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_587_23,-74.502491,39.3259235,6777 WEYMOUTH RD,HAMILTON TWP,16,1950,1,GOV1,3004 -0112_587_24,-74.78001978,39.63405448,6767 WEYMOUTH ROAD,HAMILTON TWP,,1968,1,RES1,3001 -0112_587_25,-74.64740343,39.41235775,6755 WEYMOUTH ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_587_26,-74.80475145,39.63377534,6701 WEYMOUTH ROAD,HAMILTON TWP,14,1900,1,RES1,3001 -0112_587_28,-74.60218,39.4303685,6723 WEYMOUTH ROAD,HAMILTON TWP,16,1934,1,RES1,3001 -0112_587_29,-74.50854376,39.4619812,6711 WEYMOUTH ROAD,HAMILTON TWP,16,1964,1,RES1,3001 -0112_587_30.01,-74.776499,39.302806,6705 WEYMOUTH ROAD,HAMILTON TWP,16,1948,1,RES1,3001 -0112_587_30.02,-74.551011,39.368342,6703 WEYMOUTH ROAD,HAMILTON TWP,17,1979,1,RES1,3001 -0112_587_31.01,-74.36291413,39.40951146,6673 WEYMOUTH ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_587_31.02,-74.6378765,39.5302085,6675 WEYMOUTH RD,HAMILTON TWP,14,1953,1,RES1,3001 -0112_587_32,-74.61744771,39.43136493,6669 WEYMOUTH RD,HAMILTON TWP,15,1946,2,RES1,3001 -0112_587_33,-74.88496916,39.59342957,6667 WEYMOUTH ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_587_34,-74.65270046,39.53199016,6665 WEYMOUTH ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_587_39,-74.6539575,39.526703,6489 WEYMOUTH ROAD,HAMILTON TWP,16,1953,1,RES1,3001 -0112_587_4,-74.92632502,39.50743982,6957 WEYMOUTH ROAD,HAMILTON TWP,16,1972,1,RES1,3001 -0112_587_40,-74.50266046,39.33825616,6521 WEYMOUTH ROAD,HAMILTON TWP,16,1948,1,RES1,3001 -0112_587_41,-74.66983366,39.49332548,6531 WEYMOUTH ROAD,HAMILTON TWP,,1900,1,RES1,3001 -0112_587_42,-74.5245505,39.3828775,6541 WEYMOUTH RD,HAMILTON TWP,13,1952,1,RES1,3001 -0112_587_43,-74.59880351,39.31776083,6551 WEYMOUTH ROAD,HAMILTON TWP,14,1952,1,RES1,3001 -0112_587_49,-74.46627218,39.34669798,6611 WEYMOUTH RD,HAMILTON TWP,16,1979,1,RES1,3001 -0112_587_5,-74.45900862,39.34973161,6955 WEYMOUTH ROAD,HAMILTON TWP,14,1946,1,RES1,3001 -0112_587_50,-74.602009,39.408303,6615 WEYMOUTH ROAD,HAMILTON TWP,16,1972,1,RES1,3001 -0112_587_52,-74.5731455,39.4295545,6629 WEYMOUTH ROAD,HAMILTON TWP,16,1946,1,RES1,3001 -0112_587_53,-74.62569483,39.43554106,6645 WEYMOUTH ROAD,HAMILTON TWP,14,1936,1,RES1,3001 -0112_587_54,-74.46024436,39.34861981,6693 WEYMOUTH ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_587_6,-74.71203242,39.46991816,6953 WEYMOUTH ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_587_7,-74.36562699,39.42359647,6951 WEYMOUTH ROAD,HAMILTON TWP,16,1992,1,RES1,3001 -0112_587_8,-74.4989295,39.3354425,6901 WEYMOUTH ROAD,HAMILTON TWP,16,1952,1,RES1,3001 -0112_588_1.01,-74.38294327,39.41625992,6924 BLACK HORSE PIKE,HAMILTON TWP,,1985,1,RES2,3005 -0112_588_103,-74.927143,39.5093095,6530 LAKE DRIVE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_588_106,-74.60552403,39.38955224,6524 LAKE DRIVE,HAMILTON TWP,17,1963,1,RES1,3001 -0112_588_108,-74.66166344,39.54872294,6520 LAKE DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_588_109,-74.77609641,39.63081839,6518 LAKE DRIVE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_588_110,-74.70860149,39.42636341,6514 LAKE DRIVE,HAMILTON TWP,17,2018,1,RES1,3001 -0112_588_112,-74.61881914,39.36941724,6506 LAKE DRIVE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_588_113,-74.37207683,39.40283301,6502 LAKE DRIVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_588_114,-74.62450435,39.48967748,577 PARK ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_588_12,-74.559147,39.397902,6460 BLACK HORSE PIKE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_588_121,-74.59489294,39.35018848,569 PARK ROAD,HAMILTON TWP,17,1976,1,RES1,3001 -0112_588_122,-74.6026275,39.38096,573 PARK ROAD,HAMILTON TWP,16,1924,1,RES1,3001 -0112_588_123,-74.712441,39.429568,565 PARK ROAD,HAMILTON TWP,17,1924,1,RES1,3001 -0112_588_124,-74.49208517,39.336607,555 PARK ROAD,HAMILTON TWP,17,1924,2,RES1,3001 -0112_588_125,-74.7115875,39.649765,547 PARK ROAD,HAMILTON TWP,17,1928,1,RES1,3001 -0112_588_126,-74.94530724,39.53689785,543 PARK ROAD,HAMILTON TWP,17,1945,1,RES1,3001 -0112_588_127,-74.5950325,39.351457,535 PARK ROAD,HAMILTON TWP,17,1931,1,RES1,3001 -0112_588_128,-74.59449604,39.51684933,527 PARK ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_588_129,-74.59218857,39.37030159,515 PARK ROAD,HAMILTON TWP,17,1981,1,RES1,3001 -0112_588_16,-74.5937538,39.42860608,6398 BLACK HORSE PIKE,HAMILTON TWP,16,1985,1,RES1,3001 -0112_588_17,-74.63238,39.369407,6392 BLACK HORSE PIKE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_588_19.01,-74.364848,39.4133695,6380 BLACK HORSE PIKE,HAMILTON TWP,,1956,1,RES1,3001 -0112_588_19.02,-74.50610734,39.33872206,6370 BLACK HORSE PIKE,HAMILTON TWP,,1946,1,RES1,3001 -0112_588_21,-74.52524684,39.44911153,6332 BLACK HORSE PIKE,HAMILTON TWP,16,1959,1,RES1,3001 -0112_588_22,-74.79039446,39.64218647,6326 BLACK HORSE PIKE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_588_24,-74.490849,39.340365,6200 BLACK HORSE PIKE,HAMILTON TWP,,1950,5,RES1,3001 -0112_588_25,-74.48499084,39.33828749,6090 BLACK HORSE PIKE,HAMILTON TWP,,1944,1,RES1,3001 -0112_588_26,-74.53740119,39.37255011,6074 BLACK HORSE PIKE,HAMILTON TWP,,1965,1,GOV1,3004 -0112_588_27,-74.592871,39.427488,6032 BLACK HORSE PIKE,HAMILTON TWP,,1926,1,RES1,3001 -0112_588_28,-74.7681145,39.348353,6020 BLACK HORSE PIKE,HAMILTON TWP,16,1947,1,RES1,3001 -0112_588_29.01,-74.57073403,39.35404974,916 MC GEARY PLACE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_588_29.02,-74.86540633,39.55861449,928 MC GEARY PLACE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_588_29.03,-74.3764095,39.41702601,940 MC GEARY PLACE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_588_29.04,-74.74632657,39.45285421,950 MC GEARY PLACE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_588_29.05,-74.56710074,39.37400933,958 MC GEARY PLACE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_588_29.06,-74.734945,39.4366435,970 MC GEARY PLACE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_588_29.09,-74.572902,39.339855,1038 MC GEARY PLACE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_588_29.12,-74.96472437,39.53040873,1069 MORNINGSIDE DRIVE,HAMILTON TWP,18,1999,1,RES1,3001 -0112_588_29.13,-74.5718919,39.34437416,1085 MORNINGSIDE DRIVE,HAMILTON TWP,18,1998,1,RES1,3001 -0112_588_3,-74.48868368,39.33230847,6700 BLACK HORSE PIKE,HAMILTON TWP,15,1971,1,RES1,3001 -0112_588_31,-74.407896,39.3818255,6411 TANGLEWOOD DRIVE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_588_32,-74.66183686,39.40181901,6409 TANGLEWOOD DRIVE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_588_33,-74.4884875,39.4321225,6407 TANGLEWOOD DRIVE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_588_34,-74.371899,39.400564,6405 TANGLEWOOD DRIVE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_588_35,-74.49701911,39.43322821,6403 TANGLEWOOD DRIVE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_588_36,-74.38199605,39.39631691,844 PARK ROAD,HAMILTON TWP,17,1998,1,COM3,3004 -0112_588_37,-74.60665986,39.4840537,864 PARK ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_588_38,-74.52998475,39.45218335,880 PARK ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_588_47,-74.5336465,39.4697465,840 MORNINGSIDE DRIVE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_588_48,-74.494805,39.430556,850 MORNINGSIDE DRIVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_588_5,-74.64662162,39.43490721,6820 BLACK HORSE PIKE,HAMILTON TWP,14,1950,1,RES1,3001 -0112_588_50,-74.56798254,39.40416458,1053 MORNINGSIDE DRIVE,HAMILTON TWP,18,1985,1,RES1,3001 -0112_588_51,-74.51356536,39.32599418,1037 MORNINGSIDE DRIVE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_588_52,-74.64733392,39.53043172,1029 MORNINGSIDE DRIVE,HAMILTON TWP,17,1972,1,GOV1,3004 -0112_588_53,-74.49201175,39.33726924,1017 MORNINGSIDE DRIVE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_588_54,-74.51093884,39.336627,1005 MORNINGSIDE DRIVE,HAMILTON TWP,17,1974,1,GOV1,3004 -0112_588_55,-74.40690674,39.37980241,997 MORNINGSIDE DRIVE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_588_57,-74.37322436,39.41748277,973 MORNINGSIDE DRIVE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_588_58,-74.5233341,39.31739885,965 MORNINGSIDE DRIVE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_588_59,-74.6643035,39.5400575,957 MORNINGSIDE DRIVE,HAMILTON TWP,18,1993,1,RES1,3001 -0112_588_60,-74.7831115,39.6743445,949 MORNINGSIDE DRIVE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_588_61,-74.6149425,39.324288,941 MORNINGSIDE DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_588_62,-74.78933285,39.61583646,933 MORNINGSIDE DRIVE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_588_63,-74.65890534,39.51163902,921 MORNINGSIDE DRIVE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_588_64,-74.501268,39.418714,909 MORNINGSIDE DRIVE,HAMILTON TWP,18,2003,1,RES1,3001 -0112_588_65,-74.720266,39.429548,901 MORNINGSIDE DRIVE,HAMILTON TWP,17,1952,1,RES3B,3001 -0112_588_66.01,-74.44356161,39.35560916,849 MORNINGSIDE DRIVE,HAMILTON TWP,17,1981,1,RES1,3004 -0112_588_66.02,-74.37011767,39.40565044,865 MORNINGSIDE DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_588_66.03,-74.80243643,39.63971985,881 MORNINGSIDE DRIVE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_588_66.04,-74.79271604,39.41564268,891 MORNINGSIDE DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_588_66.05,-74.48745,39.336264,897 MORNINGSIDE DRIVE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_588_67,-74.5410581,39.37631755,817 LEILING LANE,HAMILTON TWP,17,1966,1,RES1,3004 -0112_588_68,-74.4618155,39.354498,821 LEILING LANE,HAMILTON TWP,18,1946,1,RES1,3001 -0112_588_69,-74.825168,39.389802,819 LEILING LANE,HAMILTON TWP,17,1936,1,IND2,3004 -0112_588_7,-74.525839,39.411654,6572 BLACK HORSE PIKE,HAMILTON TWP,,1951,1,RES1,3001 -0112_588_71,-74.65346573,39.52628511,LEILING LANE,HAMILTON TWP,,0,1,RES1,3001 -0112_588_73,-74.4544677,39.50307096,789 PARK ROAD,HAMILTON TWP,,1936,1,RES1,3001 -0112_588_74,-74.659842,39.6323485,763 PARK ROAD,HAMILTON TWP,,1974,1,RES1,3001 -0112_588_75.01,-74.3662187,39.41735996,753 PARK ROAD,HAMILTON TWP,,1936,1,RES1,3001 -0112_588_75.02,-74.60678431,39.39304081,810 LEILING LANE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_588_76,-74.691569,39.4132505,715 PARK ROAD,HAMILTON TWP,17,1942,1,RES1,3001 -0112_588_77,-74.96059092,39.51254574,6507 TUNNEY AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_588_78,-74.62531395,39.45778846,6511 TUNNEY AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_588_79,-74.48142368,39.35035546,6515 TUNNEY AVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_588_80,-74.79732814,39.62555387,6519 TUNNEY AVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_588_81,-74.639252,39.4017905,6523 TUNNEY AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_588_82,-74.58188456,39.47390629,6527 TUNNEY AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_588_83,-74.499488,39.4256765,6531 TUNNEY AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_588_84,-74.806216,39.648572,6535 TUNNEY AVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_588_86,-74.48857967,39.33350597,6560 LAKE DRIVE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_588_89,-74.55086528,39.4733244,6558 LAKE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_588_9.02,-74.4652205,39.3487365,6612 BLACK HORSE PIKE,HAMILTON TWP,15,1956,1,RES1,3001 -0112_588_90,-74.77486792,39.62230315,6556 LAKE DRIVE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_588_91,-74.46946532,39.34375917,6554 LAKE DRIVE,HAMILTON TWP,17,1965,1,GOV1,3004 -0112_588_92,-74.62820065,39.35988521,6552 LAKE DRIVE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_588_93,-74.94026215,39.52594177,6550 LAKE DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_588_95,-74.68949126,39.44786954,6548 LAKE DRIVE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_588_98,-74.51290495,39.46434688,6540 LAKE DRIVE,HAMILTON TWP,17,1946,1,RES1,3002 -0112_588_99,-74.872617,39.49237016,6538 LAKE DRIVE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_589_2,-74.3765754,39.39651326,2042 WEYMOUTH ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_589_4,-74.5799625,39.473831,2032 WEYMOUTH ROAD,HAMILTON TWP,17,1840,1,RES1,3001 -0112_589_5,-74.8041435,39.6049205,2024 WEYMOUTH RD,HAMILTON TWP,16,1989,1,RES1,3001 -0112_590_1,-74.58580763,39.33050503,2083 GALE AVENUE,HAMILTON TWP,16,1980,2,RES1,3001 -0112_590_10,-74.50462217,39.33546149,2035 GALE AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_590_11,-74.47204409,39.34390917,2031 GALE AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_590_12,-74.550318,39.365818,2027 GALE AVENUE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_590_13,-74.50558119,39.33046819,2023 GALE AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_590_14,-74.71192212,39.50328263,2019 GALE AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_590_15,-74.539096,39.385115,6945 BLACK HORSE PIKE,HAMILTON TWP,,1986,1,RES1,3001 -0112_590_5.01,-74.58269538,39.43107068,2061 GALE AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_590_5.02,-74.83226034,39.37824298,2055 GALE AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_590_8,-74.50733883,39.43331487,2043 GALE AVENUE,HAMILTON TWP,17,1960,1,GOV1,3004 -0112_590_9,-74.5212435,39.3164695,2039 GALE AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_591_11.02,-74.56443882,39.36763821,6417 BLACK HORSE PIKE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_591_14,-74.49031344,39.46996803,6365 BLACK HORSE PIKE,HAMILTON TWP,,1956,1,RES1,3001 -0112_591_16.01,-74.5005695,39.416736,2049 TAMINNEN ROAD,HAMILTON TWP,16,1970,1,RES1,3001 -0112_591_16.02,-74.74850683,39.44652766,2053 TAMINNEN ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_591_19,-74.58544942,39.32257439,2096 TAMINNEN ROAD,HAMILTON TWP,,1939,1,RES1,3001 -0112_591_22,-74.9310865,39.513679,6297 BLACK HORSE PIKE,HAMILTON TWP,16,1975,1,RES1,3001 -0112_591_23.01,-74.83781361,39.63810775,6181 BLACK HORSE PIKE,HAMILTON TWP,,1936,1,RES1,3001 -0112_591_23.02,-74.61241294,39.3226845,6173 BLACK HORSE PIKE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_591_24.03,-74.517336,39.409754,6133 BLACK HORSE PIKE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_591_25,-74.64368234,39.53072302,6125 BLACK HORSE PIKE,HAMILTON TWP,,1936,1,RES1,3001 -0112_591_26.01,-74.4924,39.3356775,6109 BLACK HORSE PIKE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_591_26.02,-74.43820749,39.37041766,6101 BLACK HORSE PIKE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_591_27,-74.50504971,39.48038145,6095 BLACK HORSE PIKE,HAMILTON TWP,16,1958,1,RES1,3001 -0112_591_28,-74.7236427,39.63925476,6087 BLACK HORSE PIKE,HAMILTON TWP,,1971,1,RES1,3001 -0112_591_29,-74.64101394,39.53304015,6057 BLACK HORSE PIKE,HAMILTON TWP,16,1962,1,RES1,3001 -0112_591_30,-74.519325,39.528875,6033 BLACK HORSE PIKE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_591_32,-74.51755299,39.45388585,6956 THERESA AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_591_36,-74.49437266,39.33284729,2058 GALE AVENUE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_591_39,-74.50058765,39.53322479,6939 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_591_4,-74.7336215,39.4357475,2108 ELWOOD RD,HAMILTON TWP,17,1975,1,RES1,3001 -0112_591_40,-74.54697911,39.38528411,6935 BLACK HORSE PIKE,HAMILTON TWP,,1948,1,RES1,3001 -0112_591_42,-74.63001712,39.41886904,6913 BLACK HORSE PIKE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_591_43,-74.66173778,39.52345369,6905 BLACK HORSE PIKE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_591_8,-74.63249983,39.392585,6667 BLACK HORSE PIKE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_592_10.01,-74.7414314,39.39873628,2849 CARMENTOWN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_592_10.02,-74.50355683,39.333441,2829 CARMENTOWN ROAD,HAMILTON TWP,,0,1,RES3A,3001 -0112_592_8,-74.49887296,39.33128935,2901 CARMENTOWN ROAD,HAMILTON TWP,16,1980,1,RES3A,3001 -0112_597_1,-74.63077564,39.53244864,6411 SPRUCE STREET,HAMILTON TWP,16,1975,1,RES1,3001 -0112_597_11,-74.58180221,39.47363797,3401 SPRUCE STREET,HAMILTON TWP,,1950,1,RES1,3001 -0112_6_1,-74.9110105,39.5150675,1408 ASPEN STREET,HAMILTON TWP,15,1950,1,RES1,3001 -0112_6_11,-74.6404785,39.361724,1433 STRAWBERRY STREET,HAMILTON TWP,16,1967,1,RES1,3001 -0112_6_12,-74.54009183,39.37213594,1421 STRAWBERRY STREET,HAMILTON TWP,17,2005,1,RES1,3001 -0112_6_13,-74.712856,39.470823,7541 STRAND AVE,HAMILTON TWP,16,1967,1,RES1,3001 -0112_6_14,-74.7646435,39.6365915,7571 STRAND AVE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_6_15,-74.51406349,39.46235662,7601 STRAND AVENUE,HAMILTON TWP,,1955,1,RES1,3001 -0112_6_17,-74.4674135,39.3466675,7631 STRAND AVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_6_18,-74.58386,39.423697,7661 STRAND AVE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_6_2,-74.65966441,39.54164196,1424 ASPEN STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_6_3,-74.5617635,39.4169475,1432 ASPEN STREET,HAMILTON TWP,17,2002,1,RES1,3001 -0112_6_4,-74.950954,39.5125285,7655 JACKSON ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_6_5,-74.55955979,39.47751188,7640 JACKSON ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_6_6,-74.6092225,39.318691,7530 JACKSON ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_6_7,-74.8538399,39.61685078,1441 STRAWBERRY STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_600_11,-74.50664865,39.32458852,6225 ESTELLE AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_600_12,-74.4898634,39.33347933,6217 ESTELLE AVENUE,HAMILTON TWP,,1940,1,RES1,3001 -0112_600_2,-74.92531331,39.51032574,6295 ESTELLE AVENUE,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_601_1,-74.64180858,39.46738634,6296 ESTELLE AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_601_12,-74.59517855,39.31158914,6209 MARYLAND AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_601_17,-74.607853,39.4834685,6236 ESTELLE AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_602_12,-74.49480416,39.33353752,6775 NINETEENTH AVE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_602_8,-74.807703,39.63989,6237 STERLING AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_603_10,-74.628508,39.369027,6291 KLONDYKE AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_603_11,-74.55304,39.4754865,6275 KLONDYKE AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_603_16,-74.61599108,39.31340509,STERLING AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_603_5,-74.56210293,39.41129941,6341 KLONDYKE AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_603_6,-74.5844655,39.326532,6327 KLONDYKE AVENUE,HAMILTON TWP,16,1991,1,RES1,3001 -0112_603_7,-74.5683435,39.4119885,6305 KLONDYKE AVENUE,HAMILTON TWP,,1900,1,RES1,3001 -0112_603_8,-74.60278354,39.32799881,6295 KLONDYKE AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_604_4,-74.36098288,39.40911093,ESTELLE AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_605_1,-74.7665515,39.348854,6929 MILLVILLE AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_606_1,-74.60631797,39.31560702,6196 NINETEENTH AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_606_10,-74.78018321,39.67036782,6927 EIGHTEENTH STREET,HAMILTON TWP,16,1950,1,RES1,3001 -0112_606_12.01,-74.8882565,39.460454,6124 ESTELLE AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_606_19,-74.697279,39.6387095,6180 ESTELLE AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_606_2,-74.745163,39.635957,6189 MARYLAND AVENUE,HAMILTON TWP,16,2001,1,RES1,3001 -0112_606_3,-74.48583741,39.34702274,6165 MARYLAND AVENUE,HAMILTON TWP,17,2001,1,RES3A,3001 -0112_606_6,-74.63426586,39.61196534,6141 MARYLAND AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_606_8,-74.5732215,39.428847,6125 MARYLAND AVENUE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_606_9.01,-74.853123,39.371679,6117 MARYLAND AVENUE,HAMILTON TWP,17,2011,1,RES1,3001 -0112_606_9.02,-74.5901525,39.3768225,6913 EIGHTEENTH AVENUE,HAMILTON TWP,16,1980,1,RES1,3001 -0112_607_10,-74.59791166,39.38318845,6141 STERLING AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_607_11,-74.5499657,39.46625703,6133 STERLING AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_607_12,-74.63966405,39.38347686,6119 STERLING AVENUE,HAMILTON TWP,16,1995,1,RES1,3001 -0112_607_13,-74.46174,39.35715,6881 EIGHTEENTH AVENUE,HAMILTON TWP,16,1999,1,RES1,3001 -0112_607_14,-74.7126035,39.4057185,6108 MARYLAND AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_607_16,-74.76541325,39.66529028,6124 MARYLAND AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_607_17,-74.57409568,39.35171926,6132 MARYLAND AVENUE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_607_18,-74.37990745,39.39770137,6140 MARYLAND AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_607_19,-74.90744377,39.47929416,6148 MARYLAND AVENUE,HAMILTON TWP,16,1992,1,RES1,3002 -0112_607_20,-74.51302594,39.44075465,6156 MARYLAND AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_607_21,-74.50312518,39.44923097,6164 MARYLAND AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_607_24,-74.56214676,39.41686054,6188 MARYLAND AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_607_3,-74.399258,39.387509,6197 STERLING AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_607_5,-74.62901,39.4286945,6183 STERLING AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_607_7,-74.96673827,39.52879374,6165 STERLING AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_607_8,-74.7168705,39.3964595,6155 STERLING AVENUE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_608_13.01,-74.93169,39.4850315,6158 STERLING AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_608_13.02,-74.61452057,39.3210347,6164 STERLING AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_608_13.03,-74.6530674,39.40931569,6148 STERLING AVENUE,HAMILTON TWP,17,1981,1,RES3A,3001 -0112_608_14,-74.63688382,39.38183352,6172 STERLING AVENUE,HAMILTON TWP,17,1982,1,RES3A,3001 -0112_608_4.01,-74.50027987,39.32643754,HUNTER AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_609_1.01,-74.51059255,39.32912218,6374 KLONDYKE AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_609_1.02,-74.63112816,39.35023737,6371 KLONDYKE AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_609_10,-74.35906701,39.41174983,6397 BEACON AVENUE,HAMILTON TWP,16,1970,1,RES1,3001 -0112_609_11,-74.4485797,39.35074789,6393 BEACON AVENUE,HAMILTON TWP,16,1985,1,RES1,3001 -0112_609_12,-74.63703889,39.52422262,6381 BEACON AVENUE,HAMILTON TWP,16,1947,1,RES1,3001 -0112_609_13.01,-74.75987655,39.63471371,6367 BEACON AVENUE,HAMILTON TWP,16,1955,1,RES3A,3001 -0112_609_13.02,-74.78538532,39.63383463,6361 BEACON AVENUE,HAMILTON TWP,17,1970,1,RES1,3004 -0112_609_15,-74.70224844,39.35207751,6331 BEACON AVENUE,HAMILTON TWP,16,1932,1,RES4,3001 -0112_609_25,-74.48558587,39.46215172,6210 STERLING AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_609_29,-74.446944,39.3555045,6270 KLONDYKE AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_609_31,-74.8728236,39.60346932,6290 KLONDYKE AVENUE,HAMILTON TWP,17,1999,1,RES3A,3001 -0112_609_32,-74.63885022,39.52426167,6200 KLONDYKE AVENUE,HAMILTON TWP,17,1989,1,COM10,3003 -0112_609_33,-74.6076612,39.32441945,6308 KLONDYKE AVENUE,HAMILTON TWP,17,1989,1,RES3A,3001 -0112_609_34,-74.682065,39.4451725,6318 KLONDYKE AVENUE,HAMILTON TWP,17,1957,1,RES3B,3001 -0112_609_37,-74.4691465,39.346161,6344 KLONDYKE AVENUE,HAMILTON TWP,17,1991,1,RES3B,3001 -0112_609_39,-74.5070525,39.4936995,6368 KLONDYKE AVENUE,HAMILTON TWP,17,1977,1,RES3A,3001 -0112_609_4,-74.7137715,39.4683795,6838 LANDIS AVENUE,HAMILTON TWP,16,1965,1,RES3A,3001 -0112_609_5,-74.62657666,39.37326769,6834 LANDIS AVENUE,HAMILTON TWP,17,2003,1,COM1,3004 -0112_609_6,-74.4839266,39.34719505,6830 LANDIS AVENUE,HAMILTON TWP,16,1955,1,RES3A,3001 -0112_609_9,-74.51937153,39.31696534,6828 LANDIS AVENUE,HAMILTON TWP,16,1960,1,COM1,3004 -0112_61_4,-74.595632,39.340062,2201 FIFTH STREET,HAMILTON TWP,15,1946,2,RES1,3001 -0112_610_5.01,-74.4874758,39.43551494,BEACON AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_610_6,-74.50935257,39.34077678,6266 BEACON AVENUE,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_611_1,-74.62594038,39.36283234,6396 BEACON AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_611_15,-74.7174025,39.3918715,6326 BEACON AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_611_16,-74.817899,39.6326425,6358 BEACON AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_611_18.02,-74.62966032,39.41696099,6392 BEACON AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_611_2,-74.72166216,39.57254362,6820 HARDING HIGHWAY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_611_3,-74.79679567,39.63310802,6814 HARDING HIGHWAY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_611_4,-74.37023532,39.40237055,6810 HARDING HIGHWAY,HAMILTON TWP,16,1958,1,RES1,3001 -0112_611_5,-74.60599987,39.38617276,6806 HARDING HIGHWAY,HAMILTON TWP,16,1945,1,RES1,3001 -0112_611_6,-74.37706146,39.40073934,6804 HARDING HWY,HAMILTON TWP,,1900,1,RES3A,3001 -0112_611_9,-74.5924157,39.37722659,6800 HARDING HIGHWAY,HAMILTON TWP,15,1965,1,RES1,3001 -0112_613_2,-74.51094405,39.32612317,6144 HARLEY AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_613_5,-74.59322939,39.34380166,6115 HARLEY AVENUE,HAMILTON TWP,17,1998,1,COM1,3004 -0112_613_6,-74.6139565,39.3954915,6105 HARLEY AVENUE,HAMILTON TWP,17,1965,1,RES1,3002 -0112_614_15,-74.76104217,39.63905001,6203 HARLEY AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_615_1,-74.92447912,39.50985236,6788 HARDING HWY,HAMILTON TWP,17,2002,1,RES1,3001 -0112_615_11,-74.63770065,39.36090972,MERTON AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_615_3,-74.57971157,39.33128934,6776 HARDING HWY,HAMILTON TWP,16,1990,1,RES1,3001 -0112_615_5,-74.52507744,39.3930552,SOUTH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_615_6,-74.5187295,39.388608,SOUTH AVENUE,HAMILTON TWP,,0,1,REL1,3004 -0112_616_1,-74.52768712,39.30983904,6770 HARDING HIGHWAY,HAMILTON TWP,17,2008,1,RES1,3001 -0112_616_11,-74.96123304,39.52784505,6317 HARLEY AVENUE,HAMILTON TWP,16,1930,2,RES1,3001 -0112_616_12,-74.557387,39.398622,6307 HARLEY AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_616_2,-74.488887,39.334439,6760 HARDING HIGHWAY,HAMILTON TWP,,1946,1,RES1,3001 -0112_616_5,-74.7231255,39.4582115,6752 HARDING HWY,HAMILTON TWP,16,1930,1,GOV1,3004 -0112_616_6,-74.37907826,39.39680034,6391 HARLEY AVENUE,HAMILTON TWP,17,1987,1,RES3A,3001 -0112_616_7,-74.5924155,39.32021534,6375 HARLEY AVENUE,HAMILTON TWP,16,1997,1,RES1,3001 -0112_616_9,-74.56631788,39.47789524,6323 HARLEY AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_617_1,-74.79609025,39.67505085,6797 HARDING HWY,HAMILTON TWP,16,1965,1,COM1,3004 -0112_617_10.01,-74.5871165,39.34898,6779 HARDING HWY,HAMILTON TWP,16,1965,3,RES3A,3001 -0112_617_10.02,-74.81465378,39.64553333,6785 HARDING HWY,HAMILTON TWP,17,1975,1,RES3A,3001 -0112_617_11,-74.51149066,39.43609767,6791 HARDING HWY,HAMILTON TWP,17,1945,1,RES3A,3002 -0112_617_8,-74.69928205,39.36629516,6464 SOUTH AVENUE,HAMILTON TWP,16,1975,1,COM8,3004 -0112_619_1,-74.59805759,39.35948769,6773 HARDING HIGHWAY,HAMILTON TWP,,1966,1,RES1,3001 -0112_619_11,-74.61760134,39.62015873,6753 HARDING HIGHWAY,HAMILTON TWP,16,1970,2,RES1,3001 -0112_619_13,-74.49842211,39.33051681,6757 HARDING HIGHWAY,HAMILTON TWP,17,2005,1,RES1,3001 -0112_619_2,-74.91714839,39.47587505,6771 HARDING HIGHWAY,HAMILTON TWP,15,1972,1,RES1,3001 -0112_619_3,-74.48151666,39.35344293,6769 HARDING HIGHWAY,HAMILTON TWP,16,1962,1,RES1,3001 -0112_619_5,-74.8112185,39.656904,6765 HARDING HIGHWAY,HAMILTON TWP,16,1965,1,RES1,3001 -0112_619_7,-74.8533765,39.4343475,6465 SOUTH AVENUE,HAMILTON TWP,16,1975,1,RES1,3001 -0112_621_1,-74.65078967,39.40421981,6141 HARLEY AVENUE,HAMILTON TWP,,1927,2,RES1,3001 -0112_621_2,-74.68925877,39.49530082,6215 HARLEY AVENUE,HAMILTON TWP,16,1906,1,RES1,3001 -0112_621_3,-74.601909,39.3172975,6235 HARLEY AVENUE,HAMILTON TWP,16,1972,1,RES1,3001 -0112_621_8,-74.7030125,39.422563,6103 HARLEY AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_622_1,-74.64465629,39.53335957,6395 HARLEY AVENUE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_622_5.02,-74.57046246,39.47933115,6383 HARLEY AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_622_7,-74.3944,39.3949465,6734 HARDING HIGHWAY,HAMILTON TWP,17,1996,1,RES1,3002 -0112_622_8,-74.926604,39.4852955,6730 HARDING HIGHWAY,HAMILTON TWP,17,1964,1,RES3A,3001 -0112_623_2,-74.60922082,39.36371212,6731 HARDING HIGHWAY,HAMILTON TWP,17,1995,1,RES1,3001 -0112_623_3,-74.62854861,39.34860592,6729 HARDING HWY,HAMILTON TWP,16,1900,1,RES1,3001 -0112_623_4,-74.68881395,39.41719817,6439 HARLEY AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_626_7,-74.720588,39.442038,6352 PITTSBURG AVENUE,HAMILTON TWP,17,1920,2,RES1,3001 -0112_627_1,-74.78826394,39.41868082,6721 HARDING HWY,HAMILTON TWP,17,1975,1,RES1,3001 -0112_627_10,-74.6046065,39.499152,6709 HARDING HIGHWAY,HAMILTON TWP,,1948,1,RES1,3001 -0112_627_5.01,-74.96103024,39.52707455,PITTSBURG AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_627_5.02,-74.4827246,39.33765361,6444 PITTSBURG AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_627_6,-74.8821725,39.599133,6434 PITTSBURG AVENUE,HAMILTON TWP,15,1940,1,RES1,3001 -0112_627_7,-74.553741,39.465857,6426 PITTSBURG AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_627_8,-74.68740434,39.54517098,6703 HARDING HIGHWAY,HAMILTON TWP,16,1942,1,RES1,3001 -0112_628_10,-74.81830552,39.64015932,6694 HARDING HWY,HAMILTON TWP,17,1984,1,RES1,3001 -0112_628_11,-74.574748,39.33677267,6688 HARDING HIGHWAY,HAMILTON TWP,17,1975,1,RES1,3001 -0112_628_12,-74.51705166,39.32318051,6686 HARDING HIGHWAY,HAMILTON TWP,15,1942,1,RES1,3001 -0112_628_13,-74.614736,39.3209055,6684 HARDING HWY,HAMILTON TWP,16,1940,1,RES1,3001 -0112_628_14,-74.36948333,39.41834834,6678 HARDING HWY,HAMILTON TWP,17,1964,1,RES1,3001 -0112_628_15,-74.8258205,39.444495,6396 ALLEGHENY AVENUE,HAMILTON TWP,16,1972,1,RES1,3001 -0112_628_16,-74.48755951,39.34807567,6384 ALLEGHENY AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_628_5,-74.648649,39.52254633,6357 PITTSBURG AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_628_6,-74.79113587,39.63291873,6361 PITTSBURG AVENUE,HAMILTON TWP,17,2003,1,RES1,3002 -0112_628_7,-74.50112116,39.33090651,6375 PITTSBURG AVENUE,HAMILTON TWP,17,2010,1,RES1,3001 -0112_628_8.01,-74.84402382,39.3832453,6393 PITTSBURG AVENUE,HAMILTON TWP,16,1956,1,RES1,3001 -0112_628_8.02,-74.6350964,39.38455996,6395 PITTSBURG AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_629_1,-74.66522519,39.56855469,6695 HARDING HWY,HAMILTON TWP,16,1960,1,RES1,3001 -0112_629_2,-74.64104489,39.5183134,6441 PITTSBURG AVENUE,HAMILTON TWP,,1966,1,RES1,3001 -0112_629_3,-74.87926963,39.47579475,6689 HARDING HIGHWAY,HAMILTON TWP,17,1960,1,RES1,3001 -0112_63_1.02,-74.52466865,39.38820788,7430 WEYMOUTH ROAD,HAMILTON TWP,,1970,1,RES1,3001 -0112_630_1,-74.51463903,39.32221239,6623 HARDING HIGHWAY,HAMILTON TWP,,1974,1,RES1,3001 -0112_630_2,-74.58415568,39.32437301,6595 HARDING HWY,HAMILTON TWP,16,1920,2,RES1,3001 -0112_633_1,-74.462315,39.352752,6932 MILLVILLE AVENUE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_634_1,-74.6056225,39.3569905,6916 MILLVILLE AVENUE,HAMILTON TWP,16,1928,1,RES1,3001 -0112_635_1,-74.50274535,39.33270611,6923 MILLVILLE AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_635_2,-74.37962026,39.39468809,6913 MILLVILLE AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_635_3,-74.620733,39.425195,6096 MARYLAND AVENUE,HAMILTON TWP,17,1966,1,GOV1,3004 -0112_636_2,-74.45825212,39.35732365,6888 EIGHTEENTH AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_636_4,-74.5936281,39.34484896,6883 MILLVILLE AVENUE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_636_5.01,-74.49173298,39.33734483,6097 STERLING AVENUE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_636_5.02,-74.7943605,39.5389285,6877 MILLVILLE AVENUE,HAMILTON TWP,17,1925,1,RES1,3001 -0112_637_3,-74.50300283,39.43648848,6863 MILLVILLE AVENUE,HAMILTON TWP,,1900,2,RES1,3001 -0112_637_4,-74.85338516,39.60173399,6857 MILLVILLE AVENUE,HAMILTON TWP,16,1950,2,RES1,3001 -0112_638_3,-74.79226318,39.60536183,6847 MILLVILLE AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_638_4,-74.6502035,39.4032685,6845 MILLVILLE AVENUE,HAMILTON TWP,16,1956,1,RES1,3001 -0112_638_5,-74.62876428,39.4214011,6843 MILLVILLE AVENUE,HAMILTON TWP,,1926,1,RES1,3001 -0112_638_6,-74.68146227,39.41404605,6841 MILLVILLE AVENUE,HAMILTON TWP,16,1981,1,RES1,3001 -0112_638_8,-74.69450314,39.44953588,6835 MILLVILLE AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_639_11,-74.43697347,39.36910682,6733 MILLVILLE AVENUE,HAMILTON TWP,16,1940,2,RES1,3001 -0112_639_12,-74.79192882,39.64512854,6745 MILLVILLE AVENUE,HAMILTON TWP,,1940,1,RES1,3001 -0112_639_13,-74.5412026,39.38406553,6755 MILLVILLE AVENUE,HAMILTON TWP,,1959,1,COM4,3004 -0112_639_15,-74.498539,39.525319,6771 MILLVILLE AVENUE,HAMILTON TWP,17,1926,1,RES1,3001 -0112_639_18,-74.46867383,39.343401,6747 BAKER AVENUE,HAMILTON TWP,15,1950,1,RES1,3001 -0112_639_19,-74.3835935,39.39927,6799 MILLVILLE AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_639_20,-74.51736374,39.3237159,6791 MILLVILLE AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_639_21,-74.64595656,39.43189632,6783 MILLVILLE AVENUE,HAMILTON TWP,16,1940,1,COM1,3004 -0112_639_3,-74.44810834,39.356504,6061 HARLEY AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_640_1,-74.50488093,39.33630763,6040 HARLEY AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_640_10,-74.44151566,39.36862889,6707 MILLVILLE AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_640_11,-74.63670318,39.34207555,6706 MILLVILLE AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_640_13,-74.5675455,39.5410485,6719 MILLVILLE AVENUE,HAMILTON TWP,16,1965,1,RES1,3001 -0112_640_14,-74.376182,39.4159555,6721 MILLVILLE AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_640_15,-74.5006875,39.3304615,6727 MILLVILLE AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_640_9,-74.78950719,39.53262218,6705 MILLVILLE AVENUE,HAMILTON TWP,16,1928,1,RES1,3001 -0112_641_1,-74.80412208,39.37052616,6057 ESTELLE AVENUE,HAMILTON TWP,16,1970,1,RES1,3001 -0112_641_11,-74.48966242,39.33369383,ESTELLE AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_641_2,-74.39897606,39.39057508,6053 ESTELLE AVENUE,HAMILTON TWP,17,1960,1,COM3,3004 -0112_641_3,-74.52654,39.3129275,6051 ESTELLE AVENUE,HAMILTON TWP,16,1955,1,RES3B,3001 -0112_641_4,-74.49375567,39.332264,ESTELLE AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_641_5,-74.50726335,39.32426495,6043 ESTELLE AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_641_6,-74.5082785,39.323761,6041 ESTELLE AVENUE,HAMILTON TWP,16,1970,1,GOV1,3004 -0112_642_1,-74.47256115,39.48617686,6062 ESTELLE AVENUE,HAMILTON TWP,16,1970,1,RES1,3001 -0112_642_10,-74.75899107,39.44752779,MARYLAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_642_12,-74.4536155,39.491968,ESTELLE AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_642_14,-74.44369,39.49341,ESTELLE AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_642_19,-74.59292956,39.43056871,6050 ESTELLE AVENUE,HAMILTON TWP,17,2010,1,RES3A,3001 -0112_642_20,-74.640675,39.3807445,6054 ESTELLE AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_642_21,-74.60202121,39.31155158,6058 ESTELLE AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_642_4,-74.7359655,39.451666,MARYLAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_642_6,-74.5828825,39.501371,MARYLAND AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_642_8,-74.55007152,39.3724441,MARYLAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_643_3,-74.72381245,39.45064202,6888 MILLVILLE AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_643_4,-74.6196358,39.31426496,6884 MILLVILLE AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_643_5,-74.7675945,39.611525,6882 MILLVILLE AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_643_8,-74.78254215,39.60720611,SUPERIOR AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_643_9,-74.62950514,39.3905727,MARYLAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_644_10,-74.88584079,39.55887996,HUNTER AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_644_4,-74.602677,39.3118715,6862 MILLVILLE AVENUE,HAMILTON TWP,,1966,1,RES1,3001 -0112_644_5,-74.53437322,39.3805547,6858 MILLVILLE AVENUE,HAMILTON TWP,17,1999,1,COM1,3004 -0112_644_7,-74.47921186,39.44233023,6852 MILLVILLE AVENUE,HAMILTON TWP,16,1961,1,RES1,3001 -0112_644_9,-74.4817725,39.3507605,HUNTER AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_645_2,-74.78520073,39.64391777,6844 MILLVILLE AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_645_9,-74.81260849,39.65067871,HUNTER AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_646_10,-74.46382643,39.46196223,6000 BAKER AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_646_11,-74.50676007,39.32699666,6020 BAKER AVENUE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_646_12,-74.64426495,39.52966566,6030 BAKER AVENUE,HAMILTON TWP,17,2010,1,RES1,3001 -0112_648_2.01,-74.44136,39.368708,5961 ESTELLE AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_648_4,-74.59290028,39.34565269,5953 ESTELLE AVENUE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_648_6,-74.49636008,39.33244617,5931 ESTELLE AVENUE,HAMILTON TWP,15,1940,1,GOV1,3004 -0112_648_7,-74.4869415,39.3484245,5923 ESTELLE AVENUE,HAMILTON TWP,16,1936,1,RES1,3001 -0112_648_8.01,-74.563943,39.358494,5921 ESTELLE AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_648_8.02,-74.561669,39.4123465,5915 ESTELLE AVENUE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_648_8.03,-74.496317,39.3327305,5903 ESTELLE AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_649_11,-74.79851486,39.63970281,5914 ESTELLE AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_649_12,-74.402408,39.386547,6903 SIXTEENTH AVENUE,HAMILTON TWP,16,1940,1,RES1,3001 -0112_649_13,-74.57035191,39.37096741,6909 SIXTEENTH AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_649_5,-74.539206,39.391622,5954 ESTELLE AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_649_6,-74.7015151,39.57721466,5942 ESTELLE AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_649_7,-74.61215765,39.48864796,5936 ESTELLE AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_65_1,-74.79216471,39.63466172,2800 SEVENTH STREET,HAMILTON TWP,15,1960,1,RES1,3001 -0112_65_2,-74.48066146,39.33828632,7675 BLUEBERRY ROAD,HAMILTON TWP,17,1975,1,RES1,3001 -0112_650_1,-74.4709305,39.344406,MARYLAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_650_11,-74.8217598,39.53886608,5913 SUPERIOR AVENUE,HAMILTON TWP,17,2001,1,GOV1,3004 -0112_650_12.01,-74.86686283,39.56442749,6883 SIXTEENTH AVENUE,HAMILTON TWP,16,1949,1,RES1,3001 -0112_650_12.02,-74.69662572,39.59454759,6893 SIXTEENTH AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_650_19,-74.624501,39.4392505,MARYLAND AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_651_14,-74.56543055,39.37273324,6780 SIXTEENTH AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_651_17,-74.55619065,39.38573601,5916 SUPERIOR AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_651_22,-74.6467245,39.549644,SUPERIOR AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_651_3,-74.5642875,39.414502,SEVENTEENTH AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_651_6,-74.76417087,39.63366108,HUNTER AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_652_13,-74.74080824,39.63940531,HUNTER AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_652_15,-74.521467,39.4269115,5938 HUNTER AVENUE,HAMILTON TWP,,1946,1,RES1,3001 -0112_652_16,-74.59861697,39.40963718,5942 HUNTER AVENUE,HAMILTON TWP,,1956,1,COM8,3004 -0112_652_2,-74.7244095,39.588158,5961 BAKER AVENUE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_652_6,-74.50805107,39.32741085,5929 BAKER AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_652_8,-74.56768216,39.37348399,6760 SIXTEENTH AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_652_9,-74.50582988,39.33667028,6770 SIXTEENTH AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_653_1,-74.495308,39.4695495,5960 BAKER AVENUE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_653_10,-74.78221182,39.65274198,5907 HARLEY AVENUE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_653_11,-74.4100675,39.3908725,SIXTEENTH AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_653_12,-74.62283438,39.38040768,6756 SIXTEENTH AVENUE,HAMILTON TWP,16,1928,1,COM4,3004 -0112_653_14,-74.52024078,39.38930219,5932 BAKER AVENUE,HAMILTON TWP,17,2004,1,RES3A,3001 -0112_653_18,-74.4961185,39.419019,5952 BAKER AVENUE,HAMILTON TWP,16,1993,1,RES1,3001 -0112_653_19,-74.560807,39.4150225,5954 BAKER AVENUE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_653_2,-74.67543763,39.35383716,5961 HARLEY AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_653_20,-74.784158,39.6404475,5956 BAKER AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_653_5,-74.873212,39.5939865,5939 HARLEY AVENUE,HAMILTON TWP,16,1942,1,RES1,3001 -0112_653_6,-74.510336,39.4734205,5923 HARLEY AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_653_7,-74.5473185,39.4655445,5917 HARLEY AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_653_8,-74.80237208,39.64146433,5913 HARLEY AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_653_9,-74.595998,39.433629,5911 HARLEY AVENUE,HAMILTON TWP,16,1924,1,RES3A,3001 -0112_654_1,-74.94965508,39.49659928,5963 PITTSBURG AVENUE,HAMILTON TWP,17,1912,1,RES1,3001 -0112_654_10,-74.626263,39.6097775,5905 PITTSBURG AVENUE,HAMILTON TWP,16,1952,1,RES1,3001 -0112_654_11,-74.50876884,39.32780791,6721 SIXTEENTH AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_654_12,-74.50418317,39.47814101,5906 HARLEY AVENUE,HAMILTON TWP,16,1954,1,RES1,3001 -0112_654_13,-74.5911105,39.4281425,5910 HARLEY AVENUE,HAMILTON TWP,16,1956,1,RES1,3001 -0112_654_14,-74.50910084,39.32650899,5912 HARLEY AVENUE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_654_15,-74.5640145,39.416847,5914 HARLEY AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_654_17.01,-74.92040849,39.48988226,5920 HARLEY AVENUE,HAMILTON TWP,17,1997,1,GOV1,3004 -0112_654_20,-74.582188,39.4053395,HARLEY AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_654_3,-74.492676,39.336051,PITTSBURG AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_654_4,-74.519501,39.44602,PITTSBURG AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_654_6,-74.69798912,39.63770977,5941 PITTSBURG AVENUE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_654_7,-74.47909315,39.37162401,5931 PITTSBURG AVENUE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_654_8,-74.5168815,39.3182915,5923 PITTSBURG AVENUE,HAMILTON TWP,17,2004,1,RES1,3001 -0112_654_9,-74.502424,39.4299625,5915 PITTSBURG AVENUE,HAMILTON TWP,17,1928,1,AGR1,3001 -0112_655_1,-74.46712783,39.4938075,5908 PITTSBURG AVENUE,HAMILTON TWP,17,1971,1,COM4,3004 -0112_655_2.01,-74.9149975,39.50140383,5928 PITTSBURG AVENUE,HAMILTON TWP,,0,1,RES3B,3001 -0112_655_2.02,-74.5284325,39.5113825,5938 PITTSBURG AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_655_2.03,-74.60778672,39.39765579,5960 PITTSBURG AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_655_3,-74.59066355,39.43343072,5952 PITTSBURG AVENUE,HAMILTON TWP,16,1942,1,RES1,3001 -0112_655_4,-74.72318703,39.58093616,5966 PITTSBURG AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_655_5,-74.6136797,39.42060097,5982 PITTSBURG AVENUE,HAMILTON TWP,17,1940,1,RES1,3001 -0112_655_6,-74.4844671,39.34571677,6692 MILLVILLE AVENUE,HAMILTON TWP,17,2013,1,RES1,3001 -0112_655_7,-74.61002669,39.32415634,6654 MILLVILLE AVENUE,HAMILTON TWP,17,1970,1,IND2,3004 -0112_656_1,-74.61107109,39.32102264,6693 MILLVILLE AVENUE,HAMILTON TWP,16,1916,1,RES1,3001 -0112_657_10,-74.51267156,39.38570982,6378 ALLEGHENY AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_657_5,-74.3741535,39.40391,6348 ALLEGHENY AVENUE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_657_8,-74.62785596,39.35367157,6366 ALLEGHENY AVENUE,HAMILTON TWP,13,1961,1,RES1,3001 -0112_657_9,-74.49369494,39.3410707,6376 ALLEGHENY AVENUE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_658_10,-74.82694751,39.63811054,6642 MILLVILLE AVENUE,HAMILTON TWP,17,1956,1,GOV1,3004 -0112_658_11,-74.58568471,39.35443865,6638 MILLVILLE AVENUE,HAMILTON TWP,,1951,1,RES1,3001 -0112_658_14,-74.82176798,39.38923813,6626 MILLVILLE AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_658_19,-74.60221117,39.40914467,WHEELING AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_658_20,-74.54057109,39.37277269,WHEELING AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_658_3,-74.64097288,39.47330751,5926 YOUNGSTOWN AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_658_8,-74.3755253,39.4133554,6648 MILLVILLE AVENUE,HAMILTON TWP,17,1970,1,GOV1,3004 -0112_658_9,-74.75583344,39.66186305,6646 MILLVILLE AVENUE,HAMILTON TWP,17,1974,1,GOV1,3004 -0112_659_1,-74.63573465,39.52690118,6647 MILLVILLE AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_659_10,-74.58402206,39.32662778,6040 WHEELING AVENUE,HAMILTON TWP,16,1992,1,GOV1,3004 -0112_659_11.01,-74.594898,39.4096105,6629 MILLVILLE AVENUE,HAMILTON TWP,17,1948,1,RES1,3001 -0112_659_11.02,-74.75594653,39.30163367,6635 MILLVILLE AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_659_7,-74.6455398,39.40773161,6095 WHEELING AVENUE,HAMILTON TWP,16,1970,1,RES1,3001 -0112_659_8,-74.57824025,39.44935167,6075 WHEELING AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_659_9,-74.59731484,39.31557024,6055 WHEELING AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_66_1,-74.49923684,39.42562845,7699 BLUEBERRY ROAD,HAMILTON TWP,17,1979,1,GOV1,3004 -0112_66_10,-74.78471375,39.66183967,7649 WEYMOUTH ROAD,HAMILTON TWP,17,1974,1,RES1,3001 -0112_66_11,-74.4580905,39.4737765,7639 WEYMOUTH ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_66_12,-74.49746667,39.33443099,7631 WEYMOUTH RD,HAMILTON TWP,17,1979,1,RES1,3001 -0112_66_13,-74.58622122,39.31679715,7621 WEYMOUTH ROAD,HAMILTON TWP,17,1968,1,RES1,3001 -0112_66_14,-74.46922193,39.49028621,7611 WEYMOUTH RD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_66_17,-74.4902265,39.524093,7648 BLUEBERRY ROAD,HAMILTON TWP,17,1976,1,RES1,3001 -0112_66_18,-74.48744903,39.34943324,7658 BLUEBERRY ROAD,HAMILTON TWP,16,1935,1,RES1,3001 -0112_66_2,-74.46287484,39.34644633,2930 SEVENTH STREET,HAMILTON TWP,16,1930,1,GOV1,3004 -0112_66_21,-74.588831,39.3218915,7674 BLUEBERRY ROAD,HAMILTON TWP,16,1970,1,RES1,3001 -0112_66_3,-74.55998961,39.36023045,2946 SEVENTH STREET,HAMILTON TWP,16,1940,1,GOV1,3004 -0112_66_5,-74.6010475,39.314109,7691 WEYMOUTH ROAD,HAMILTON TWP,16,1965,3,GOV1,3004 -0112_66_6,-74.937738,39.511581,7681 WEYMOUTH ROAD,HAMILTON TWP,17,1882,1,RES1,3001 -0112_66_7,-74.94120868,39.52187899,7669 WEYMOUTH ROAD,HAMILTON TWP,,1950,1,RES1,3001 -0112_661_12,-74.465738,39.345969,6624 MILLVILLE AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_661_13,-74.5192615,39.463583,6620 MILLVILLE AVENUE,HAMILTON TWP,16,1930,1,RES1,3001 -0112_661_14,-74.36851486,39.41230783,6616 MILLVILLE AVENUE,HAMILTON TWP,15,1929,1,RES1,3001 -0112_661_15,-74.6012039,39.43429196,6612 MILLVILLE AVENUE,HAMILTON TWP,16,1929,1,RES1,3001 -0112_661_16,-74.6088735,39.3794675,6610 MILLVILLE AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_661_18,-74.57543469,39.35048481,6600 MILLVILLE AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_661_19,-74.54555351,39.47251875,5991 SCRANTON AVE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_661_20,-74.6219595,39.527192,5981 SCRANTON AVE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_661_21,-74.6039145,39.31019,5979 SCRANTON AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_661_22.01,-74.4626915,39.3583475,5969 SCRANTON AVENUE,HAMILTON TWP,17,2005,1,GOV1,3004 -0112_661_23.01,-74.74859099,39.60192103,5951 SCRANTON AVENUE,HAMILTON TWP,18,2003,1,RES1,3001 -0112_661_24,-74.50654814,39.47926231,5941 SCRANTON AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_661_27,-74.5184265,39.387464,5921 SCRANTON AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_661_28,-74.52350527,39.44487781,5911 SCRANTON AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_661_7,-74.63315,39.3180105,WHEELING AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_662_1,-74.59014284,39.32164543,6623 MILLVILLE AVENUE,HAMILTON TWP,16,1935,1,GOV1,3004 -0112_662_2,-74.50860111,39.44815143,6619 MILLVILLE AVENUE,HAMILTON TWP,16,1928,1,RES1,3001 -0112_662_3,-74.52133863,39.32031078,6050 WHEELING AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_662_4,-74.815879,39.5351025,6072 WHEELING AVENUE,HAMILTON TWP,17,1968,1,GOV1,3004 -0112_662_5.01,-74.522067,39.32158,6082 WHEELING AVENUE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_662_5.02,-74.544885,39.382495,6052 WHEELING AVENUE,HAMILTON TWP,17,2006,1,RES3A,3001 -0112_662_6,-74.812117,39.603813,6086 WHEELING AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_662_8,-74.60588008,39.39085205,6615 MILLVILLE AVENUE,HAMILTON TWP,17,1956,1,GOV1,3004 -0112_663_10,-74.48123218,39.45598253,6576 MILLVILLE AVENUE,HAMILTON TWP,,1900,1,RES1,3001 -0112_663_2,-74.71084798,39.43560316,5948 SCRANTON AVENUE,HAMILTON TWP,17,1997,1,GOV1,3004 -0112_663_6,-74.60748041,39.39111675,6590 MILLVILLE AVENUE,HAMILTON TWP,16,1956,1,GOV1,3004 -0112_663_7,-74.51485067,39.329689,6586 MILLVILLE AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_663_8,-74.6052515,39.310448,6582 MILLVILLE AVENUE,HAMILTON TWP,,0,1,GOV1,3004 -0112_663_9,-74.42910621,39.36072882,6578 MILLVILLE AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_664_1,-74.76176336,39.60111677,6587 MILLVILLE AVENUE,HAMILTON TWP,17,1926,1,RES1,3001 -0112_664_16,-74.62401364,39.38387938,6600 HARDING HIGHWAY,HAMILTON TWP,17,2000,1,RES1,3001 -0112_664_17,-74.4662845,39.3461575,6613 HARDING HIGHWAY,HAMILTON TWP,,1926,1,RES1,3001 -0112_664_2,-74.50496069,39.45066171,6579 MILLVILLE AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_665_10,-74.63379897,39.34816503,6574 MILLVILLE AVENUE,HAMILTON TWP,16,1930,1,RES1,3001 -0112_665_11,-74.3821537,39.39535738,6572 MILLVILLE AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_665_12,-74.65319268,39.34595218,6568 MILLVILLE AVENUE,HAMILTON TWP,17,1965,2,RES1,3001 -0112_665_14,-74.3829275,39.3986635,6558 MILLVILLE AVENUE,HAMILTON TWP,17,2014,1,RES1,3001 -0112_665_15,-74.5857405,39.3241805,6554 MILLVILLE AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_665_16,-74.5419861,39.41475075,6550 MILLVILLE AVENUE,HAMILTON TWP,16,1970,1,RES1,3001 -0112_665_8,-74.6733665,39.388657,6562 MILLVILLE AVENUE,HAMILTON TWP,17,2015,1,GOV1,3004 -0112_666_1,-74.51682418,39.38623051,6573 MILLVILLE AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_666_10,-74.57480629,39.4084498,6571 HARDING HWY,HAMILTON TWP,16,1934,1,RES1,3001 -0112_666_13,-74.5020965,39.4363755,HARDING HIGHWAY,HAMILTON TWP,,0,1,RES1,3001 -0112_666_16,-74.60907522,39.39255915,6557 HARDING HWY,HAMILTON TWP,15,1930,1,RES1,3001 -0112_666_17,-74.7054842,39.41802484,6553 HARDING HWY,HAMILTON TWP,17,1956,1,RES1,3001 -0112_666_18,-74.6725601,39.49374142,6551 HARDING HIGHWAY,HAMILTON TWP,16,1912,1,RES1,3001 -0112_666_19.01,-74.62272082,39.43301632,6549 HARDING HIGHWAY,HAMILTON TWP,16,1926,1,RES1,3001 -0112_666_20,-74.450874,39.356952,6121 FIRST AVENUE,HAMILTON TWP,,1946,1,GOV1,3004 -0112_666_21,-74.83577264,39.4315413,6113 FIRST AVENUE,HAMILTON TWP,,1940,1,RES1,3001 -0112_666_23,-74.45292466,39.3566725,FIRST AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_666_28,-74.65961063,39.55730794,6551 MILLVILLE AVENUE,HAMILTON TWP,16,1944,1,RES1,3001 -0112_666_30,-74.75883828,39.42928125,6557 MILLVILLE AVENUE,HAMILTON TWP,17,1963,1,RES3A,3001 -0112_666_31,-74.48836677,39.4359031,6559 MILLVILLE AVENUE,HAMILTON TWP,16,2012,1,RES1,3001 -0112_666_32,-74.5754625,39.4291855,6561 MILLVILLE AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_666_33,-74.512104,39.4852875,6563 MILLVILLE AVENUE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_666_35.01,-74.6030835,39.369818,6571 MILLVILLE AVENUE,HAMILTON TWP,16,1954,1,RES1,3001 -0112_666_35.02,-74.37254906,39.41697379,6567 MILLVILLE AVENUE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_667_1,-74.54361991,39.36907016,6574 HARDING HIGHWAY,HAMILTON TWP,16,1955,1,RES1,3001 -0112_667_10,-74.67966899,39.44608334,6579 HARDING HIGHWAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_667_2,-74.61256133,39.3224835,6572 HARDING HIGHWAY,HAMILTON TWP,15,1948,1,GOV1,3004 -0112_667_3,-74.55473029,39.36090322,6568 HARDING HWY,HAMILTON TWP,16,1927,1,RES1,3001 -0112_667_4,-74.57215896,39.34492984,6566 HARDING HIGHWAY,HAMILTON TWP,16,1946,1,RES1,3001 -0112_667_5,-74.65445605,39.52125883,6564 HARDING HIGHWAY,HAMILTON TWP,17,1972,1,RES1,3001 -0112_667_8,-74.53371716,39.38113003,6558 HARDING HIGHWAY,HAMILTON TWP,17,1969,1,GOV1,3004 -0112_668_2,-74.47366026,39.49019459,6473 HARDING HWY,HAMILTON TWP,,1966,1,RES1,3001 -0112_668_4,-74.58505824,39.33579233,6481 HARDING HWY,HAMILTON TWP,,1931,1,RES1,3001 -0112_668_6,-74.63893412,39.4116833,6465 HARDING HWY,HAMILTON TWP,,0,1,RES1,3001 -0112_668_8,-74.59318198,39.31596318,HOOVER DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_668_8_C0101,-74.79651795,39.65030519,6011 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0102,-74.53691594,39.37180434,6012 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0103,-74.570861,39.35565,6013 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0104,-74.6029155,39.327819,6014 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0105,-74.4972675,39.329336,6015 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0106,-74.59853229,39.42802341,6016 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0107,-74.507179,39.3357595,6017 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0108,-74.465871,39.495552,6018 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0201,-74.52556823,39.38505571,6021 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0202,-74.5151775,39.3231475,6022 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0203,-74.51652596,39.32067618,6023 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0204,-74.60908535,39.32779864,6024 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0205,-74.61522647,39.32113683,6025 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0206,-74.6479465,39.5331635,6026 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0207,-74.60479909,39.30819309,6027 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0208,-74.44744654,39.37472289,6028 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0301,-74.81375752,39.62671418,6031 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0302,-74.9253065,39.5253855,6032 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0303,-74.53811228,39.4702294,6033 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0304,-74.517394,39.39792785,6034 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0305,-74.4921365,39.4319405,6035 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0306,-74.7868182,39.67717651,6036 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0307,-74.60154761,39.41908181,6037 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0308,-74.5709215,39.3480585,6038 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0401,-74.56050941,39.36440914,6041 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0402,-74.64897302,39.45640614,6042 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0403,-74.50371068,39.40886653,6043 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES3A,3001 -0112_668_8_C0404,-74.4971765,39.434199,6044 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0405,-74.4819285,39.3481485,6045 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0406,-74.59163972,39.37869347,6046 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0407,-74.49002105,39.45750282,6047 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0408,-74.52434382,39.3858879,6048 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0501,-74.51020763,39.42862444,6051 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0502,-74.368395,39.40538,6052 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0503,-74.4984495,39.3306335,6053 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0504,-74.5040146,39.33053566,6054 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0505,-74.51633858,39.48542414,6055 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0506,-74.4899159,39.33169571,6056 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES3A,3001 -0112_668_8_C0507,-74.86654207,39.59349984,6057 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0508,-74.8787705,39.462981,6058 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0601,-74.40631156,39.38173367,6061 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0602,-74.71708035,39.39444255,6062 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0603,-74.482687,39.3390745,6063 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0604,-74.44122493,39.35376982,6064 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0605,-74.5328218,39.38673063,6065 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0606,-74.509899,39.327993,6066 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0607,-74.83402255,39.59031444,6067 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0608,-74.63385525,39.39223517,6068 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0701,-74.48366063,39.34795936,6071 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0702,-74.75307473,39.59715615,6072 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0703,-74.60118883,39.34134452,6073 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0704,-74.69498234,39.63334604,6074 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0705,-74.5337366,39.40220783,6075 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0706,-74.72426419,39.45513007,6076 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0707,-74.4998197,39.43393766,6077 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0708,-74.64447534,39.60149645,6078 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0801,-74.50997029,39.33803937,6081 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0802,-74.49570467,39.43520898,6082 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0803,-74.60659266,39.4371631,6083 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0804,-74.4791595,39.4427095,6084 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0805,-74.60190744,39.37402369,6085 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C0806,-74.57204021,39.42795125,6086 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0807,-74.5978731,39.32002734,6087 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0808,-74.60588917,39.6183546,6088 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0901,-74.59558152,39.32041886,6091 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0902,-74.82584689,39.41572468,6092 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0903,-74.52485206,39.31288084,6093 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0904,-74.58121953,39.37991784,6094 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0905,-74.59460239,39.3165093,6095 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0906,-74.510062,39.40700183,6096 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0907,-74.59341433,39.3242866,6097 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C0908,-74.57665645,39.35578717,6098 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1001,-74.46422216,39.34745615,6101 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1002,-74.5709445,39.365642,6102 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1003,-74.63932964,39.36016961,6103 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1004,-74.46170039,39.49215135,6104 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1005,-74.53707703,39.51602006,6105 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1006,-74.5262895,39.454368,6106 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1007,-74.734881,39.434862,6107 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1008,-74.60528255,39.32548433,6108 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1101,-74.58349832,39.37624849,6111 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1102,-74.497341,39.328273,6112 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1103,-74.5262551,39.52346025,6113 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1104,-74.5420185,39.4565595,6114 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1105,-74.80795357,39.64913816,6115 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1106,-74.48774058,39.35047912,6116 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C1107,-74.36846362,39.40906512,6117 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1108,-74.60660565,39.4203078,6118 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1201,-74.48861533,39.42074338,6121 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1202,-74.7533855,39.4512805,6122 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1203,-74.80336705,39.52028601,6123 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1204,-74.6926675,39.6513735,6124 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1205,-74.927581,39.519592,6125 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1206,-74.42193783,39.37404701,6126 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1207,-74.46005905,39.35519682,6127 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1208,-74.49365566,39.33487801,6128 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C1301,-74.51767135,39.31913298,6131 HOOVER DRIVE,HAMILTON TWP,33,1976,1,GOV1,3004 -0112_668_8_C1302,-74.62797997,39.42341269,6132 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1303,-74.514312,39.46527,6133 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1304,-74.8783345,39.5961675,6134 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1305,-74.87919166,39.59392297,6135 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1306,-74.78179019,39.63590678,6136 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1307,-74.5678105,39.412616,6137 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_668_8_C1308,-74.565029,39.370129,6138 HOOVER DRIVE,HAMILTON TWP,33,1976,1,RES1,3001 -0112_67_1,-74.6523155,39.624929,7626 WEYMOUTH ROAD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_67_2,-74.56813766,39.37336705,7638 WEYMOUTH ROAD,HAMILTON TWP,15,1836,1,RES1,3001 -0112_67_3,-74.5985248,39.3188831,7650 WEYMOUTH ROAD,HAMILTON TWP,16,1929,1,RES1,3001 -0112_67_5,-74.437059,39.3593775,7658 WEYMOUTH ROAD,HAMILTON TWP,16,1925,1,RES1,3001 -0112_67_6,-74.75177862,39.45231788,7664 WEYMOUTH ROAD,HAMILTON TWP,16,1925,1,RES1,3001 -0112_67_7,-74.957454,39.503743,7670 WEYMOUTH ROAD,HAMILTON TWP,15,1900,1,RES1,3001 -0112_67_8,-74.57663289,39.42194431,7680 WEYMOUTH ROAD,HAMILTON TWP,,1968,1,RES1,3001 -0112_670_4,-74.71914901,39.57412667,6408 HARDING HWY,HAMILTON TWP,,1974,1,RES1,3001 -0112_671_1,-74.56866208,39.4114468,6394 HARDING HIGHWAY,HAMILTON TWP,,1976,1,RES1,3001 -0112_671_2,-74.81099984,39.36718705,6390 HARDING HIGHWAY,HAMILTON TWP,,2008,1,RES1,3001 -0112_672.01_1,-74.7833207,39.30748401,WALKERS FORGE ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_672.01_10,-74.76128627,39.44551393,18 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_100,-74.59734517,39.49538151,196 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_101,-74.72158133,39.46424939,198 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_102,-74.51824336,39.46125774,200 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_103,-74.4825935,39.3396725,202 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_104,-74.76077021,39.43220483,RAINBOW DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_672.01_12,-74.62760598,39.60107615,22 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_13,-74.43329036,39.36548074,24 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_14,-74.63481383,39.53257251,26 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_15,-74.53000506,39.44463665,28 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_16,-74.508867,39.4479855,30 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_17,-74.724034,39.432025,32 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_18,-74.79525115,39.64520787,34 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_19,-74.79597565,39.64275454,36 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_2,-74.465039,39.458393,2 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_20,-74.72118327,39.44433461,38 KIRKWOOD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_21,-74.52313496,39.40569421,40 KIRKWOOD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_22,-74.5636015,39.3603775,42 KIRKWOOD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_23,-74.7976695,39.537364,44 KIRKWOOD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_24,-74.56081061,39.36183333,46 KIRKWOOD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_25,-74.43913746,39.36711188,48 KIRKWOOD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_26,-74.60979198,39.32765684,50 KIRKWOOD COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_27,-74.56387916,39.50221119,52 KIRKWOOD COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_28,-74.70498,39.417691,54 IRVING COURT,HAMILTON TWP,17,1996,1,REL1,3004 -0112_672.01_3,-74.8063945,39.6325305,4 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,GOV1,3004 -0112_672.01_30,-74.85123767,39.59092202,58 IRVING COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_32,-74.4005135,39.384927,62 IRVING COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_34,-74.481653,39.3405645,66 IRVING COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.01_36,-74.6327705,39.4216395,70 IRVING COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_38,-74.76867969,39.38563592,74 IRVING COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_4,-74.76684364,39.33506149,6 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_40,-74.53584074,39.37902139,78 IRVING COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_42,-74.83576878,39.49321856,82 DEVON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_43,-74.67967148,39.63379267,84 DEVON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_44,-74.591303,39.378076,86 DEVON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_45,-74.60905943,39.39329082,88 DEVON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_46,-74.87494597,39.48612186,90 DEVON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_47,-74.464223,39.346292,DEVON ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_672.01_48,-74.60093364,39.31427178,92 DEVON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_49,-74.5317345,39.3878885,94 DEVON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_5,-74.73612172,39.45301159,8 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_50,-74.53608266,39.30430553,96 DEVON ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_51,-74.9395485,39.5191065,98 DEVON ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.01_52,-74.60188246,39.42995768,100 DEVON ROAD,HAMILTON TWP,17,2002,1,RES1,3001 -0112_672.01_57,-74.61816416,39.37147734,110 GREENTREE COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_58,-74.36093449,39.41725983,112 GREENTREE COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_59,-74.48249527,39.3418388,114 GREENTREE COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.01_6,-74.5128365,39.3255915,10 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_60,-74.4615435,39.3479395,116 GREENTREE COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_66,-74.52300656,39.31796717,128 EMERSON COURT,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_67,-74.60109668,39.42967605,130 EMERSON COURT,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_68,-74.78655272,39.64158718,132 EMERSON COURT,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_69,-74.5669175,39.3626,134 EMERSON COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.01_70,-74.785565,39.6353705,136 EMERSON COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.01_71,-74.4640722,39.45596417,138 EMERSON COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.01_72,-74.49422245,39.47033237,140 EMERSON COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.01_74,-74.565248,39.348741,144 RAINBOW DRIVE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_75,-74.63127133,39.55603549,146 RAINBOW DRIVE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.01_76,-74.80924133,39.53657978,148 RAINBOW DRIVE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_77,-74.47425368,39.34103266,150 RAINBOW DRIVE,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_78,-74.8645295,39.565772,152 CANTERBURY COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_8,-74.5148255,39.327302,14 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.01_80,-74.50017784,39.3299123,156 CANTERBURY COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_82,-74.47535216,39.48584947,160 CANTERBURY COURT,HAMILTON TWP,17,2001,1,GOV1,3004 -0112_672.01_83,-74.50138169,39.41340953,162 CANTERBURY COURT,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_84,-74.6230925,39.434515,164 CANTERBURY COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_85,-74.79294734,39.64083889,166 CANTERBURY COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_86,-74.854648,39.367595,168 CANTERBURY COURT,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_91,-74.51262361,39.53509127,178 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_92,-74.74498147,39.63770425,180 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_93,-74.6648465,39.358739,182 ARDMORE ROAD,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.01_94,-74.5790635,39.3353635,184 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_95,-74.58898861,39.37800127,186 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_96,-74.78901933,39.62508649,188 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_97,-74.60251058,39.32453334,190 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_98,-74.4522105,39.5019475,192 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.01_99,-74.49495673,39.49276796,194 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.02_1,-74.8392797,39.37375172,183 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.02_2,-74.630194,39.4317255,185 ARDMORE ROAD,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.02_3,-74.65104943,39.56709385,179 ARDMORE ROAD,HAMILTON TWP,17,2002,1,RES1,3001 -0112_672.02_4,-74.62006641,39.431318,181 ARDMORE ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_1,-74.60118845,39.37900623,2 WESTWOOD ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_10,-74.5147455,39.32356517,20 WESTWOOD ROAD,HAMILTON TWP,17,1998,1,RES3B,3001 -0112_672.03_11,-74.49956597,39.33536933,22 WESTWOOD ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_12,-74.605519,39.4393945,24 WESTWOOD ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_13,-74.58077669,39.4135031,26 WESTWOOD ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.03_14,-74.4022025,39.3916805,28 WESTWOOD ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.03_15,-74.73519823,39.46599982,67 FREEMONT COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.03_16,-74.493049,39.334133,65 FREEMONT COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_17,-74.635253,39.4186615,63 FREEMONT COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_18,-74.79798114,39.61516745,61 FREEMONT COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.03_19,-74.4898145,39.331298,59 FREEMONT COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_2,-74.60050868,39.34045948,4 WESTWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_20,-74.62863632,39.39486149,57 FREEMONT COURT,HAMILTON TWP,17,1999,1,RES1,3001 -0112_672.03_21,-74.49330867,39.34043796,55 FREEMONT COURT,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_22,-74.817762,39.6324545,53 FREEMONT COURT,HAMILTON TWP,17,1999,1,RES1,3001 -0112_672.03_23,-74.5561995,39.3667755,51 FREEMONT COURT,HAMILTON TWP,17,1999,1,RES1,3001 -0112_672.03_24,-74.50233019,39.42005359,49 DELANCY COURT,HAMILTON TWP,17,1999,1,GOV1,3004 -0112_672.03_25,-74.477269,39.3396775,47 DELANCY COURT,HAMILTON TWP,17,1999,1,RES1,3001 -0112_672.03_27,-74.62117047,39.42243218,43 DELANCY COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_28,-74.635214,39.342989,41 DELANCY COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.03_29,-74.65606118,39.36732458,39 DELANCY COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_3,-74.701449,39.574405,6 WESTWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_30,-74.5671335,39.4753725,37 DELANCY COURT,HAMILTON TWP,17,1999,1,RES1,3001 -0112_672.03_31,-74.78373022,39.63247159,35 DELANCY COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.03_32,-74.40361,39.388696,33 DELANCY COURT,HAMILTON TWP,17,1999,1,RES1,3001 -0112_672.03_33,-74.70506622,39.48562955,31 DELANCY COURT,HAMILTON TWP,17,1999,1,RES1,3001 -0112_672.03_34,-74.49930845,39.46037835,141 RAINBOW DRIVE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.03_35,-74.47253559,39.44281287,143 RAINBOW DRIVE,HAMILTON TWP,17,2000,1,IND2,3002 -0112_672.03_36,-74.79784812,39.63360185,145 RAINBOW DRIVE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_37,-74.9198915,39.480821,147 RAINBOW DRIVE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_38,-74.62685203,39.43783308,149 RAINBOW DRIVE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_39,-74.57888852,39.40964481,19 BELAIR COURT,HAMILTON TWP,17,2002,1,GOV1,3004 -0112_672.03_4,-74.57034043,39.34538865,8 WESTWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3002 -0112_672.03_40,-74.5051485,39.5169035,17 BELAIR COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.03_41,-74.594104,39.344358,15 BELAIR COURT,HAMILTON TWP,17,2001,1,COM1,3004 -0112_672.03_42,-74.6576815,39.524412,13 BELAIR COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.03_43,-74.48414914,39.44189118,11 BELAIR COURT,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_44,-74.4903435,39.3326605,9 BELAIR COURT,HAMILTON TWP,17,2000,1,IND2,3002 -0112_672.03_45,-74.81539467,39.3703822,7 BELAIR COURT,HAMILTON TWP,17,2000,1,RES1,3001 -0112_672.03_46,-74.70567837,39.63780238,5 BELAIR COURT,HAMILTON TWP,17,2002,1,RES1,3001 -0112_672.03_47,-74.79995829,39.6445914,3 BELAIR COURT,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_5,-74.37664347,39.41364977,10 WESTWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_6,-74.623259,39.3814815,2 WESTWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_7,-74.90914727,39.51556791,14 WESTWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_8,-74.607274,39.323576,16 WESTWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.03_9,-74.51243801,39.33002685,18 WESTWOOD ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.04_1,-74.512768,39.3238435,WESTWOOD/CROYDON ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_672.04_10,-74.47940284,39.34718299,23 WESTWOOD ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.04_11,-74.58554768,39.33642437,21 WESTWOOD ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.04_2,-74.8047495,39.6070435,25 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.04_3,-74.59228032,39.32951241,27 CROYDON ROAD,HAMILTON TWP,17,1997,1,COM3,3004 -0112_672.04_4,-74.4846195,39.475952,29 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.04_5,-74.60936731,39.31933332,31 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.04_6,-74.64933964,39.52923389,33 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.04_7,-74.9203325,39.5131175,29 WESTWOOD ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.04_8,-74.52010316,39.31658901,27 WESTWOOD ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.04_9,-74.4893391,39.35028674,25 WESTWOOD ROAD,HAMILTON TWP,17,1997,1,RES3A,3001 -0112_672.05_1,-74.5781705,39.4246315,3 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES3A,3001 -0112_672.05_10,-74.52973532,39.3953484,21 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_11,-74.56325438,39.36081433,23 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_12,-74.61311498,39.48657164,25 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_13,-74.43098621,39.36480434,27 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_14,-74.58471777,39.38114419,29 RAINBOW DRIVE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_15,-74.63848454,39.40810853,31 JENSEN COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_16,-74.63432966,39.31763498,33 JENSEN COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_17,-74.50591051,39.33109567,35 JENSEN COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_18,-74.583795,39.4197735,37 JENSEN COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_19,-74.525812,39.312336,39 JENSEN COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_2,-74.5799455,39.3410405,5 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_20,-74.5542845,39.3555145,41 JENSEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_21,-74.6000435,39.4137085,43 JENSEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_22,-74.61039846,39.39072167,45 JENSEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_23,-74.45599933,39.34979251,47 HAGEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_24,-74.528088,39.383526,49 HAGEN COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_25,-74.53902465,39.38002498,51 HAGEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_26,-74.4201335,39.36571633,53 HAGEN COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_27,-74.62392144,39.41698508,55 HAGEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_28,-74.50667994,39.45190976,57 HAGEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_29,-74.49976562,39.48934805,59 HAGEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_3,-74.49617414,39.45297486,7 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_30,-74.48489408,39.33636368,61 HAGEN COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_31,-74.71328284,39.56970352,63 HAGEN COURT,HAMILTON TWP,17,1998,1,RES1,3001 -0112_672.05_32,-74.5769962,39.33993528,65 HAGEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_33,-74.57338151,39.34117033,67 HAGEN COURT,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_34,-74.78583012,39.66097561,32 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_35,-74.588616,39.4314935,30 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_36,-74.7526865,39.4515245,28 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3004 -0112_672.05_37,-74.779199,39.6213565,26 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_38,-74.6036445,39.499358,24 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_39,-74.64992996,39.3524404,22 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_4,-74.521147,39.3984995,9 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_40,-74.53374866,39.45472806,20 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_41,-74.50181199,39.33818633,18 CROYDON ROAD,HAMILTON TWP,17,1997,1,GOV1,3004 -0112_672.05_42,-74.6586575,39.5175725,16 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_43,-74.3808675,39.3980165,14 CROYDON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.05_44,-74.6606015,39.5481285,12 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_45,-74.37978639,39.40051734,10 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_46,-74.72631404,39.59014734,8 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_47,-74.759082,39.4480735,6 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_48,-74.6234595,39.3141475,4 CROYDON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_49,-74.5314155,39.3798455,2 CROYDON ROAD,HAMILTON TWP,17,1996,1,GOV1,3004 -0112_672.05_5,-74.4592475,39.488504,11 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_6,-74.50594005,39.33552167,13 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_7,-74.864969,39.434796,15 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_8,-74.47510999,39.49369058,17 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.05_9,-74.60763069,39.34546264,19 LANDFORD COURT,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.06_1,-74.797099,39.652663,83 DEVON ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_672.06_2,-74.6501,39.351083,89 DEVON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_672.06_3,-74.5819455,39.4321475,87 DEVON ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_672.06_4,-74.43478047,39.36700582,85 DEVON ROAD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_68_11,-74.734536,39.434602,7456 WEYMOUTH ROAD,HAMILTON TWP,16,1975,1,RES1,3001 -0112_68_7,-74.60952195,39.31893161,7503 WEYMOUTH ROAD,HAMILTON TWP,,1970,1,RES1,3001 -0112_681_9,-74.56723065,39.47651725,6215 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_69_3,-74.86742402,39.44865041,7563 WEYMOUTH ROAD,HAMILTON TWP,17,1965,1,RES1,3001 -0112_69_4,-74.76094241,39.63990424,7567 WEYMOUTH ROAD,HAMILTON TWP,16,1945,1,RES1,3001 -0112_69_5,-74.48133281,39.44312054,7571 WEYMOUTH ROAD,HAMILTON TWP,17,1950,1,RES1,3001 -0112_69_6,-74.51677135,39.31939847,7575 WEYMOUTH ROAD,HAMILTON TWP,16,1942,1,RES1,3001 -0112_690_2,-74.72699997,39.59059231,6301 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_690_3,-74.6984735,39.6377755,6303 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_690_4,-74.52859489,39.38882213,6305 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_690_5,-74.537912,39.4643705,6307 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_690_6,-74.54546898,39.40419572,6309 ROOSEVELT AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_692_120,-74.60601307,39.32540563,6304 ESSEX STREET,HAMILTON TWP,17,1971,1,RES1,3001 -0112_692_121,-74.972173,39.5152215,6306 ESSEX STREET,HAMILTON TWP,17,1971,1,RES1,3001 -0112_692_122,-74.7929615,39.645288,6357 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_692_123,-74.52612065,39.39672267,6355 BENSON AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_692_124,-74.4933057,39.33305061,6353 BEECH LANE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_692_125,-74.51053886,39.32317997,6351 BEECH LANE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_692_126,-74.51852116,39.412026,6349 BEECH LANE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_692_127,-74.71865766,39.4495678,6347 BEECH LANE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_692_128,-74.48378456,39.34808623,6345 BEECH LANE,HAMILTON TWP,17,1972,1,COM1,3004 -0112_692_129,-74.51126116,39.32649551,6343 BEECH LANE,HAMILTON TWP,17,1971,1,COM4,3004 -0112_692_130,-74.83079783,39.53397298,6341 BEECH LANE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_692_131,-74.907981,39.5280225,6339 BEECH LANE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_692_133,-74.43922815,39.48763996,6335 BENSON AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_692_134,-74.4511295,39.3539645,6333 BENSON AVENUE,HAMILTON TWP,16,1964,1,RES1,3001 -0112_692_135,-74.469182,39.443573,6331 BENSON AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_692_136,-74.5126385,39.4305635,6329 BENSON AVENUE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_692_137,-74.37988411,39.41767575,6327 BENSON AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_692_138,-74.9342738,39.54800155,6325 CROCUS STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_692_139,-74.62680482,39.43694193,6323 CROCUS STREET,HAMILTON TWP,17,1967,1,RES1,3001 -0112_692_140,-74.43877255,39.36644732,6321 CROCUS STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_692_141,-74.51485409,39.39610021,6319 CROCUS STREET,HAMILTON TWP,17,1965,1,RES1,3001 -0112_692_142,-74.656924,39.5505235,6317 CROCUS STREET,HAMILTON TWP,17,1965,1,RES1,3001 -0112_692_143,-74.6275985,39.418593,6315 CROCUS STREET,HAMILTON TWP,17,1962,1,RES1,3001 -0112_692_144,-74.46807449,39.34296209,6313 CROCUS STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_692_145,-74.64799132,39.53473528,6311 CROCUS STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_692_146,-74.50839182,39.33411953,6309 CROCUS STREET,HAMILTON TWP,17,1968,1,RES1,3001 -0112_692_147,-74.49243461,39.49480126,6307 CROCUS STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_692_148,-74.37480142,39.41611825,6305 CROCUS STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_692_149,-74.509811,39.3329245,6303 CROCUS STREET,HAMILTON TWP,17,1965,1,RES1,3001 -0112_692_150,-74.537951,39.504352,6301 CROCUS STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_692_43,-74.5469255,39.373757,6392 MONMOUTH DRIVE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_692_44,-74.51952738,39.42575144,6390 MONMOUTH DRIVE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_692_45,-74.50451716,39.43528298,6388 MONMOUTH DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_692_46,-74.56820285,39.47883504,6386 MONMOUTH DRIVE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_692_47,-74.78509468,39.59787045,6384 MONMOUTH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_692_50,-74.6268265,39.5069985,6378 MONMOUTH DRIVE,HAMILTON TWP,17,1977,1,COM1,3004 -0112_692_52,-74.6577015,39.396646,6374 MONMOUTH DRIVE,HAMILTON TWP,17,1986,1,COM3,3004 -0112_692_55,-74.45267,39.375566,6368 MONMOUTH DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_692_56,-74.83016959,39.37393919,6366 MONMOUTH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_692_57,-74.43843087,39.36766983,6364 MONMOUTH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_692_58,-74.52506949,39.39402617,6362 MONMOUTH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_692_59,-74.72453363,39.46037619,6360 MONMOUTH DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_692_60,-74.956213,39.5355405,6358 MONMOUTH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_692_61,-74.54763078,39.37075775,6356 MONMOUTH DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_692_62,-74.48360084,39.34194049,6354 MONMOUTH DRIVE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_692_64,-74.55154189,39.36057914,6350 MONMOUTH DRIVE,HAMILTON TWP,17,1953,1,GOV1,3004 -0112_692_65,-74.81155844,39.62758831,6348 MONMOUTH DRIVE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_692_66,-74.7273481,39.59117268,6346 MONMOUTH DRIVE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_692_67,-74.6965617,39.63492585,6344 MONMOUTH DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_692_68,-74.5354125,39.4703845,6279 OLD HARDING HIGHWAY,HAMILTON TWP,,1948,1,RES1,3001 -0112_692_70,-74.48712349,39.49689287,6283 OLD HARDING HIGHWAY,HAMILTON TWP,17,1959,1,RES1,3001 -0112_692_72,-74.93540207,39.51949709,6287 OLD HARDING HIGHWAY,HAMILTON TWP,17,1965,1,RES1,3001 -0112_692_74,-74.6257605,39.382946,6291 OLD HARDING HIGHWAY,HAMILTON TWP,17,1953,1,RES1,3001 -0112_692_75,-74.81137978,39.63209419,6293 OLD HARDING HIGHWAY,HAMILTON TWP,,1958,1,RES1,3001 -0112_692_76,-74.54116666,39.38286047,6295 OLD HARDING HIGHWAY,HAMILTON TWP,,1958,1,RES1,3001 -0112_692_77,-74.75075365,39.4458038,6297 OLD HARDING HIGHWAY,HAMILTON TWP,17,1960,1,RES1,3001 -0112_692_82,-74.60674044,39.41278877,6405 HARDING HIGHWAY,HAMILTON TWP,17,1976,1,RES1,3001 -0112_692_83,-74.53677209,39.39589672,6403 HARDING HIGHWAY,HAMILTON TWP,17,1976,1,RES1,3004 -0112_692_84,-74.47070659,39.34571967,6305 ESSEX STREET,HAMILTON TWP,17,1973,1,RES1,3001 -0112_693_2,-74.5722285,39.4203415,6214 ROOSEVELT AVENUE,HAMILTON TWP,17,1951,1,RES1,3001 -0112_693_3,-74.521918,39.399668,6213 PHILIPS AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_693_4,-74.5065625,39.404058,6211 PHILIPS AVENUE,HAMILTON TWP,17,1959,1,RES1,3001 -0112_693_6,-74.5379422,39.39733059,6214 PHILIPS AVENUE,HAMILTON TWP,17,1950,1,COM1,3004 -0112_693_7,-74.74622998,39.49498017,6213 KNIGHT AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_693_9,-74.63045131,39.42700746,6209 KNIGHT AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_694_1,-74.51541718,39.46731766,6202 KNIGHT AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_694_10,-74.65818833,39.54783347,6212 KNIGHT AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_694_11,-74.59709663,39.3149837,6210 KNIGHT AVENUE,HAMILTON TWP,17,1966,1,IND1,3004 -0112_694_12,-74.44142368,39.37038068,6208 KNIGHT AVENUE,HAMILTON TWP,17,1956,1,GOV1,3004 -0112_694_13,-74.57369636,39.48128404,6206 KNIGHT AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_694_14,-74.78706679,39.64346853,6204 KNIGHT AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_694_2,-74.36905437,39.40239068,6201 LANCE AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_694_3,-74.77461168,39.65999817,6203 LANCE AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_694_4,-74.9544035,39.517875,6205 LANCE AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_694_5,-74.48907301,39.45756587,6207 LANCE AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_694_6,-74.53527056,39.40813616,6209 LANCE AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_694_7,-74.5487585,39.368857,6211 LANCE AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_694_8,-74.9157225,39.536551,6213 LANCE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_694_9,-74.50166828,39.50111115,6214 KNIGHT AVENUE,HAMILTON TWP,17,1961,1,GOV1,3004 -0112_695_1,-74.64589647,39.51111893,6202 LANCE AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_695_10,-74.78730829,39.67793227,6212 LANCE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_695_11,-74.54484852,39.37580088,6210 LANCE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_695_12,-74.86853153,39.50160913,6208 LANCE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_695_13,-74.7804173,39.62411134,6206 LANCE AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_695_14,-74.67326231,39.56330493,6204 LANCE AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_695_2,-74.8167855,39.3824175,6201 LIBERTY AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_695_4,-74.76194548,39.43000931,6205 LIBERTY AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_695_5,-74.42208119,39.36690147,6207 LIBERTY AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_695_6,-74.517857,39.536982,6209 LIBERTY AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_695_8,-74.89725167,39.51259301,6213 LIBERTY AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_695_9,-74.5382845,39.3857795,6214 LANCE AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_696_1,-74.61810129,39.43732149,6202 LIBERTY AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_696_10,-74.63658648,39.46920913,6208 LIBERTY AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_696_11,-74.593701,39.4019675,6206 LIBERTY AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_696_12,-74.46484384,39.347696,6204 LIBERTY AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_696_2,-74.85680266,39.56201004,6201 NELSON AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_696_3,-74.60552404,39.36059785,6203 NELSON AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_696_4,-74.54702472,39.47122608,6205 NELSON AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_696_5,-74.82835237,39.64783465,6207 NELSON AVENUE,HAMILTON TWP,17,1960,1,COM5,3004 -0112_696_6,-74.64676893,39.53139915,6209 NELSON AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_696_7,-74.4963455,39.335089,6211 NELSON AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_696_8,-74.8241495,39.375024,6212 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_696_9,-74.6345825,39.3636875,6210 LIBERTY AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_697_1,-74.36903114,39.4167606,6202 NELSON AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_697_10,-74.5438135,39.3754845,6208 NELSON AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_697_11,-74.8307925,39.4437685,6206 NELSON AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_697_12,-74.48729006,39.52328373,6204 NELSON AVENUE,HAMILTON TWP,17,1962,1,GOV1,3004 -0112_697_2,-74.67804367,39.41331501,6201 OLIVER AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_697_3,-74.5202695,39.3209715,6203 OLIVER AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_697_4,-74.48544532,39.33522902,6205 OLIVER AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_697_5,-74.54422371,39.38605881,6207 OLIVER AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_697_7,-74.6267283,39.41649494,6211 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_697_8,-74.8192005,39.643521,6212 NELSON AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_697_9,-74.5089015,39.4046885,6210 NELSON AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_698_1,-74.5531085,39.392503,6202 OLIVER AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_698_10,-74.576959,39.4791055,6206 OLIVER AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_698_11,-74.47308083,39.34190384,6204 OLIVER AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_698_2,-74.512041,39.3263285,6201 PALMER AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_698_3,-74.49785742,39.42550869,6203 PALMER AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_698_4,-74.5969107,39.42912003,6205 PALMER AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_698_5,-74.57011024,39.36186989,6207 PALMER AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_698_6,-74.54422753,39.37715283,6209 PALMER AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_698_7,-74.51011609,39.32124689,6212 OLIVER AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_698_8,-74.88232634,39.48622698,6210 OLIVER AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_698_9,-74.71451009,39.41787029,6208 OLIVER AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_699_1,-74.81158279,39.41357558,6202 PALMER AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_699_10,-74.50040906,39.38133753,6208 PALMER AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_699_11,-74.60316238,39.43439165,6206 PALMER AVENUE,HAMILTON TWP,17,1962,1,GOV1,3004 -0112_699_12,-74.59576184,39.31162845,6204 PALMER AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_699_2,-74.51784028,39.40174266,6201 QUINN AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_699_3,-74.51267037,39.33088234,6203 QUINN AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_699_4,-74.65398616,39.34401002,6205 QUINN AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_699_5,-74.63331272,39.41957139,6207 QUINN AVENUE,HAMILTON TWP,17,1964,1,GOV1,3004 -0112_699_6,-74.45963406,39.34978018,6209 QUINN AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_699_7,-74.8348295,39.4005225,6211 QUINN AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_699_8,-74.53339319,39.3813774,6212 PALMER AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_699_9,-74.47588551,39.36445019,6210 PALMER AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_700_1,-74.7661425,39.6369765,6202 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_10,-74.95980544,39.52953335,6212 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_11,-74.54261836,39.39229969,6210 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_12,-74.51039985,39.33709771,6208 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_13,-74.58722216,39.32022309,6206 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_14,-74.57334239,39.33907138,6204 QUINN AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_700_2,-74.6448525,39.538114,6201 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_3,-74.797308,39.6458105,6203 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_4,-74.46755774,39.49026413,6205 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_5,-74.52016143,39.32049368,6207 ROBERTS AVENUE,HAMILTON TWP,17,1955,1,COM3,3004 -0112_700_6,-74.87468483,39.45937651,6209 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_7,-74.63993651,39.38257067,6211 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_8,-74.586789,39.5362135,6213 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_700_9,-74.85316112,39.55053039,6215 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_1,-74.64147002,39.62359359,6202 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_10,-74.7177185,39.4416315,6216 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_11,-74.82054814,39.63292725,6214 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_13,-74.50002915,39.3279904,6210 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_14,-74.622648,39.4227,6208 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_15,-74.50326318,39.40827174,6206 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_2,-74.82939297,39.64222067,6201 COVE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_3,-74.797879,39.634609,6203 COVE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_4,-74.48695133,39.34947355,6205 COVE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_5,-74.50666339,39.33930834,6207 COVE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_6,-74.50865502,39.33156827,6209 COVE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_7,-74.4629105,39.356181,6211 COVE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_8,-74.366533,39.42171,6213 COVE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_701_9,-74.4586945,39.3535115,6215 COVE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_703_1,-74.60620883,39.43877917,6202 SEARS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_703_10,-74.36608915,39.42191427,6212 SEARS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_703_11,-74.63902184,39.53151434,6210 SEARS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_703_12,-74.6022175,39.380919,6208 SEARS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_703_13,-74.7535745,39.4524645,6206 SEARS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_703_14,-74.7882574,39.61328264,6204 SEARS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_703_2,-74.79784632,39.62090632,6251 OLD HARDING HIGHWAY,HAMILTON TWP,17,1958,1,RES1,3001 -0112_703_3,-74.49636321,39.51911853,6253 OLD HARDING HIGHWAY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_703_4,-74.67341284,39.35745946,6255 OLD HARDING HIGHWAY,HAMILTON TWP,17,1958,1,RES1,3001 -0112_703_5,-74.52274587,39.31517056,6257 OLD HARDING HIGHWAY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_703_6,-74.57399263,39.42563668,6259 OLD HARDING HIGHWAY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_703_7,-74.92619193,39.52560558,6261 OLD HARDING HIGHWAY,HAMILTON TWP,17,1956,1,RES1,3001 -0112_703_8,-74.88207469,39.59530045,6263 OLD HARDING HIGHWAY,HAMILTON TWP,17,1950,1,RES1,3001 -0112_703_9,-74.69479699,39.44817567,6214 SEARS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_704_1,-74.71016686,39.47092755,6302 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_10,-74.62017936,39.43170577,6306 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_11,-74.5520175,39.5144805,6304 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_2,-74.43581098,39.49279986,6301 PHILIPS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_3,-74.61527952,39.53676717,6303 PHILIPS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_4,-74.50981517,39.33076498,6305 PHILIPS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_5,-74.60910462,39.43869281,6307 PHILIPS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_6,-74.8006739,39.6652779,6309 PHILIPS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_7,-74.69415,39.590809,6311 PHILIPS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_8,-74.5757885,39.3543675,6310 ROOSEVELT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_704_9,-74.4528075,39.492772,6308 ROOSEVELT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_705_1,-74.36603879,39.40524179,6302 PHILIPS AVENUE,HAMILTON TWP,17,1952,1,RES3B,3001 -0112_705_10,-74.637032,39.36242868,6310 PHILIPS AVENUE,HAMILTON TWP,17,1953,1,RES1,3001 -0112_705_11,-74.52989,39.4187295,6306 PHILIPS AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_705_12,-74.807031,39.63385,6304 PHILIPS AVENUE,HAMILTON TWP,17,1952,1,COM4,3004 -0112_705_2,-74.5462925,39.3898455,6301 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_705_3,-74.57570652,39.52687683,6303 KNIGHT AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_705_4,-74.46132096,39.34927933,6305 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_705_5.01,-74.63630696,39.43564032,6307 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_705_5.02,-74.5032885,39.435014,6309 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_705_5.03,-74.6385455,39.4011665,6308 PHILIPS AVENUE,HAMILTON TWP,17,1952,1,RES3A,3001 -0112_705_6,-74.6630315,39.6386985,6311 KNIGHT AVENUE,HAMILTON TWP,17,1956,1,RES3A,3001 -0112_705_7,-74.5756915,39.41138,6313 KNIGHT AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_705_8,-74.7011475,39.586827,6314 PHILIPS AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_705_9,-74.7339415,39.459994,6312 PHILIPS AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_706_1,-74.5438445,39.3911535,6302 KNIGHT AVENUE,HAMILTON TWP,17,1955,1,COM1,3002 -0112_706_10,-74.50446916,39.33483752,6385 MONMOUTH DRIVE,HAMILTON TWP,17,1956,1,COM1,3004 -0112_706_11,-74.8141695,39.649175,6314 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_706_12,-74.71542569,39.44366596,6312 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_706_13,-74.58396141,39.43186808,6310 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_706_14,-74.92749989,39.4883791,6308 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,COM1,3004 -0112_706_15,-74.39707167,39.38978999,6306 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES3A,3001 -0112_706_16,-74.76502698,39.30797866,6304 KNIGHT AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_706_2,-74.57444837,39.34777957,6301 LANCE AVENUE,HAMILTON TWP,17,1953,1,RES1,3001 -0112_706_3,-74.75498532,39.45336791,6303 LANCE AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_706_4,-74.79928185,39.36629249,6305 LANCE AVENUE,HAMILTON TWP,17,1952,1,RES3A,3001 -0112_706_5,-74.56860015,39.34760825,6307 LANCE AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_706_6,-74.61420621,39.42913001,6309 LANCE AVENUE,HAMILTON TWP,17,1952,1,EDU1,3004 -0112_706_7,-74.61458649,39.50644033,6311 LANCE AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_706_8,-74.7773045,39.6316595,6313 LANCE AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_706_9,-74.55243179,39.47539945,6315 LANCE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_707_1,-74.3696282,39.40545407,6302 LANCE AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_707_10,-74.6281865,39.529149,6317 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_11,-74.76598753,39.30912335,6319 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES3A,3001 -0112_707_12,-74.523456,39.4466895,6318 LANCE AVENUE,HAMILTON TWP,17,1955,1,RES3A,3001 -0112_707_13,-74.77289257,39.62135327,6316 LANCE AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_14,-74.88960101,39.49981138,6314 LANCE AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_15,-74.7628315,39.639277,6312 LANCE AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_16,-74.511437,39.326671,6310 LANCE AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_707_17,-74.56866722,39.3410057,6308 LANCE AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_18,-74.6915925,39.4212285,6306 LANCE AVENUE,HAMILTON TWP,17,1955,1,COM1,3004 -0112_707_2,-74.53564278,39.40638254,6301 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_3,-74.80529114,39.62663241,6303 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES3A,3001 -0112_707_4,-74.820431,39.62099,6305 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_5,-74.6424025,39.33437,6307 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_6,-74.58110668,39.44692037,6309 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_7,-74.72617192,39.58626265,6311 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_8,-74.62728117,39.61181398,6313 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_707_9,-74.783966,39.6095465,6315 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_708_1,-74.5127435,39.504756,6302 LIBERTY AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_708_10,-74.60456408,39.35027429,6317 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_11,-74.6672632,39.56958703,6319 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_12,-74.61325213,39.42923079,6321 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_13,-74.52691232,39.45095485,6322 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_14,-74.62238684,39.4133699,6320 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_15,-74.79347992,39.53539646,6318 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_16,-74.9253035,39.52659,6316 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_18,-74.58877367,39.32627704,6312 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_19,-74.511922,39.486272,6310 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_2,-74.95046685,39.51836222,6301 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_20,-74.62096843,39.43251575,6308 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_21,-74.59162,39.313088,6306 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_22,-74.49423856,39.42022485,6304 LIBERTY AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_3,-74.73488536,39.43190496,6303 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_4,-74.7057025,39.638589,6305 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_5,-74.565326,39.357008,6307 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_6,-74.7697278,39.65047424,6309 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_708_7,-74.503057,39.32752,6311 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES3A,3001 -0112_708_8,-74.532802,39.47133,6313 NELSON AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_708_9,-74.69190124,39.59575668,6315 NELSON AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_709_1,-74.6201864,39.43347329,6302 NELSON AVENUE,HAMILTON TWP,17,1975,1,RES3A,3001 -0112_709_10,-74.713157,39.4645085,6317 OLIVER AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_709_11,-74.5750395,39.366761,6318 NELSON AVENUE,HAMILTON TWP,17,1955,1,RES3A,3001 -0112_709_12,-74.75210015,39.29950964,6316 NELSON AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_13,-74.468837,39.4901985,6314 NELSON AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_14.01,-74.59908938,39.42990174,6312 NELSON AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_709_14.02,-74.82722034,39.63693797,6310 NELSON AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_709_15,-74.5075967,39.46051285,6308 NELSON AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_16,-74.507143,39.336169,6306 NELSON AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_17,-74.6262525,39.4396445,6304 NELSON AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_2,-74.493713,39.33495,6301 OLIVER AVENUE,HAMILTON TWP,17,1956,1,RES3A,3001 -0112_709_3,-74.63711377,39.52897074,6303 OLIVER AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_709_4,-74.366879,39.416898,6305 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_5,-74.87990162,39.45382972,6307 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_6,-74.59225368,39.45574706,6309 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_7,-74.60666531,39.41012197,6311 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_709_8,-74.55779547,39.39852814,6313 OLIVER AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_709_9,-74.63532,39.384868,6315 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_710_1,-74.66510399,39.51560067,6302 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_710_10,-74.959077,39.5134665,6361 MONMOUTH DRIVE,HAMILTON TWP,17,1936,1,GOV1,3004 -0112_710_11,-74.52788316,39.45179298,6395 MONMOUTH DRIVE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_710_12,-74.6263065,39.37633,6314 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_710_13,-74.63015861,39.43263846,6312 OLIVER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_14,-74.64255561,39.39909443,6310 OLIVER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_15,-74.78041121,39.63591713,6308 OLIVER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_16,-74.6326245,39.365277,6306 OLIVER AVENUE,HAMILTON TWP,17,1955,1,RES3A,3001 -0112_710_17,-74.7359289,39.43420522,6304 OLIVER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_2,-74.70302284,39.57214205,6301 PALMER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_3,-74.850465,39.484352,6303 PALMER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_4,-74.83741531,39.40575461,6305 PALMER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_5,-74.81113728,39.62790619,6307 PALMER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_6,-74.55293241,39.47597472,6309 PALMER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_7,-74.53133246,39.45490567,6311 PALMER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_8,-74.53900129,39.37320937,6313 PALMER AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_710_9,-74.50458088,39.44274728,6359 MONMOUTH DRIVE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_711_1,-74.78962648,39.63970583,6302 PALMER AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_10,-74.7259149,39.45563668,6316 PALMER AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_11,-74.50401815,39.52448025,6314 PALMER AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_711_12,-74.4430955,39.515246,6312 PALMER AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_711_13,-74.69697971,39.35504912,6310 PALMER AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_711_14,-74.76346494,39.63733471,6308 PALMER AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_15,-74.496618,39.4990315,6306 PALMER AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_711_16,-74.63451136,39.31791252,6304 PALMER AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_2,-74.46610935,39.49087316,6301 QUINN AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_711_3,-74.61276099,39.32156842,6303 QUINN AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_4,-74.721584,39.457397,6305 QUINN AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_711_5,-74.39231414,39.39134988,6307 QUINN AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_6,-74.56509222,39.47942078,6309 QUINN AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_7,-74.57341691,39.35252671,6311 QUINN AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_8,-74.51381468,39.38530683,6313 QUINN AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_711_9,-74.6360225,39.6078465,6315 QUINN AVENUE,HAMILTON TWP,17,1961,1,RES1,3001 -0112_712_1,-74.776897,39.6382915,6302 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_10,-74.81611143,39.65290728,6312 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_11,-74.52574883,39.39766624,6310 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_12,-74.57630091,39.34147034,6308 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_13,-74.483905,39.3363645,6306 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_14,-74.514651,39.327502,6304 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_2,-74.64931302,39.53256233,6301 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_3,-74.8520865,39.4388975,6305 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_4,-74.82523472,39.38221613,6307 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_5,-74.963744,39.5190535,6309 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_6,-74.46004717,39.34838181,6311 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES3B,3001 -0112_712_7,-74.7346485,39.449837,6313 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES3A,3001 -0112_712_8,-74.72802525,39.46019236,6353 MONMOUTH DRIVE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_712_9,-74.6021635,39.3208465,6314 QUINN AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_713_1,-74.65260294,39.52306051,6302 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_713_2,-74.46509981,39.49396596,6301 SEARS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_713_3,-74.45316638,39.48923145,6307 SEARS AVENUE,HAMILTON TWP,17,1954,1,COM3,3004 -0112_713_4,-74.50009366,39.32927645,6312 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES3B,3001 -0112_713_5,-74.65452268,39.39585115,6310 ROBERTS AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_713_6,-74.52956017,39.31007199,6308 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_713_7,-74.85229,39.6056685,6306 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,EDU1,3004 -0112_713_8,-74.658972,39.510565,6304 ROBERTS AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_714_1,-74.471044,39.3408665,6302 SEARS AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_10,-74.5026365,39.3359065,6312 SEARS AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_11,-74.53645685,39.53121931,6310 SEARS AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_12,-74.6664265,39.4546015,6308 SEARS AVENUE,HAMILTON TWP,17,1958,1,GOV1,3004 -0112_714_13,-74.563667,39.4103775,6306 SEARS AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_14,-74.51081815,39.40414657,6304 SEARS AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_2,-74.41456956,39.36484856,6265 OLD HARDING HIGHWAY,HAMILTON TWP,17,1954,1,RES1,3001 -0112_714_3,-74.45022297,39.37251628,6267 OLD HARDING HIGHWAY,HAMILTON TWP,17,1954,1,RES1,3001 -0112_714_4,-74.61480214,39.35183826,6269 OLD HARDING HIGHWAY,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_5,-74.8888543,39.54283955,6271 OLD HARDING HIGHWAY,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_6,-74.617694,39.4250445,6273 OLD HARDING HIGHWAY,HAMILTON TWP,17,1958,1,GOV1,3004 -0112_714_7,-74.559431,39.3904245,6275 OLD HARDING HIGHWAY,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_8,-74.64444166,39.51679198,6277 OLD HARDING HIGHWAY,HAMILTON TWP,17,1958,1,RES1,3001 -0112_714_9,-74.67214375,39.45727508,6314 SEARS AVENUE,HAMILTON TWP,17,1958,1,RES3A,3001 -0112_716_1,-74.563352,39.4159335,6348 BEECH LANE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_716_10,-74.68650339,39.39424732,6345 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_716_11,-74.5525116,39.36537623,6347 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_716_2,-74.53020118,39.3890306,6346 BEECH LANE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_716_3,-74.4910605,39.4952705,6344 BEECH LANE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_716_4,-74.6280345,39.415442,6340 BEECH LANE,HAMILTON TWP,17,1966,1,RES3B,3001 -0112_716_5,-74.80746571,39.50026996,6338 BEECH LANE,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_716_6,-74.49806589,39.42916573,6337 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_716_7,-74.5270545,39.385082,6339 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_716_8,-74.36706567,39.40639499,6341 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_716_9,-74.49272516,39.33521902,6343 BENSON AVENUE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_717_1,-74.63104868,39.40940951,6364 BENSON AVENUE,HAMILTON TWP,17,1980,1,RES3A,3001 -0112_717_10,-74.50416683,39.33559203,6334 BENSON AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_717_11,-74.5925915,39.350256,6332 BENSON AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_717_12,-74.51883604,39.31651335,6330 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_717_13,-74.558005,39.3678655,6328 BENSON AVENUE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_717_14,-74.51392383,39.4042595,6326 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_717_15,-74.52762128,39.39467366,6324 BENSON AVENUE,HAMILTON TWP,17,1964,1,GOV1,3004 -0112_717_16,-74.50005791,39.33506483,6325 HARDING HWY,HAMILTON TWP,17,1965,1,GOV1,3004 -0112_717_17,-74.51863206,39.47532512,6327 HARDING HIGHWAY,HAMILTON TWP,17,1982,1,RES1,3001 -0112_717_18,-74.61513188,39.59707842,6329 HARDING HWY,HAMILTON TWP,17,1982,1,RES1,3001 -0112_717_19,-74.57420763,39.36275299,6331 HARDING HWY,HAMILTON TWP,17,1962,1,RES1,3001 -0112_717_2,-74.63062349,39.39187169,6362 BENSON AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_717_20,-74.515619,39.3216625,6333 HARDING HIGHWAY,HAMILTON TWP,17,1980,1,RES1,3001 -0112_717_21,-74.50548665,39.52736638,6335 HARDING HIGHWAY,HAMILTON TWP,17,1980,1,RES1,3001 -0112_717_22,-74.79586273,39.63775547,6337 HARDING HWY,HAMILTON TWP,17,1955,1,RES1,3001 -0112_717_23,-74.6512751,39.53085786,6339 HARDING HIGHWAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_717_24,-74.54778927,39.47245593,6342 BENSON AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_717_25,-74.8788295,39.594502,6344 BENSON AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_717_26,-74.529345,39.4003415,6348 BENSON AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_717_27,-74.552731,39.4767755,6352 BENSON AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_717_28,-74.502753,39.3330765,6356 BENSON AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_717_29,-74.49044478,39.46746597,6360 BENSON AVENUE,HAMILTON TWP,17,1982,1,RES3A,3001 -0112_717_3,-74.56673109,39.36651769,6358 BENSON AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_717_30,-74.6225105,39.424584,6353 HARDING HWY,HAMILTON TWP,17,1980,1,RES1,3001 -0112_717_4,-74.40966593,39.38068532,6354 BENSON AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_717_5,-74.53145953,39.38419962,6350 BENSON AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_717_6,-74.57720952,39.35102532,6346 BENSON AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_717_7,-74.67986463,39.49924061,6340 BENSON AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_717_8,-74.67557385,39.41411123,6338 BENSON AVENUE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_717_9,-74.57743334,39.33502192,6336 BENSON AVENUE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_718_1,-74.49969036,39.3293682,6320 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_10,-74.62163653,39.42054816,6307 HARDING HIGHWAY,HAMILTON TWP,17,1961,1,RES1,3002 -0112_718_11,-74.56683319,39.38919881,6309 HARDING HIGHWAY,HAMILTON TWP,17,1980,1,RES1,3001 -0112_718_12,-74.5454105,39.3981045,6313 HARDING HWY,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_13,-74.5825145,39.3334055,6317 HARDING HWY,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_14,-74.564488,39.3483485,6319 HARDING HWY,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_15,-74.79382687,39.64160244,6321 HARDING HWY,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_16,-74.934928,39.517564,6323 HARDING HWY,HAMILTON TWP,16,1964,1,RES1,3001 -0112_718_2,-74.5191615,39.437128,6318 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_3,-74.36370425,39.40838167,6316 BENSON AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_718_4,-74.5746783,39.3584473,6314 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_5,-74.48205723,39.34038162,6312 BENSON AVENUE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_718_6,-74.6671715,39.359035,6310 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_7,-74.37300962,39.41049619,6308 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_8,-74.39902248,39.38908227,6306 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_718_9,-74.82252557,39.64050842,6305 HARDING HIGHWAY,HAMILTON TWP,17,1964,1,RES1,3001 -0112_719_1,-74.583293,39.352995,6319 BENSON AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_719_2,-74.82400635,39.65287627,6318 CROCUS STREET,HAMILTON TWP,17,1964,1,REL1,3003 -0112_719_3,-74.82887207,39.64733241,6316 CROCUS STREET,HAMILTON TWP,17,1964,1,RES1,3001 -0112_719_4,-74.46385491,39.34584333,6317 BENSON AVENUE,HAMILTON TWP,17,1964,1,COM10,3003 -0112_719_5,-74.54524096,39.50827134,6315 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_719_6,-74.74065792,39.63902368,6313 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_719_7,-74.664237,39.519311,6311 BENSON AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_719_8,-74.4892385,39.3374985,6309 BENSON AVENUE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_72_1,-74.643847,39.5289595,7541 WEYMOUTH ROAD,HAMILTON TWP,17,2008,1,RES3A,3001 -0112_72_4,-74.67557191,39.55527814,7568 WEYMOUTH ROAD,HAMILTON TWP,17,1974,1,RES1,3001 -0112_72_5,-74.4542185,39.5011945,7574 WEYMOUTH ROAD,HAMILTON TWP,16,1960,1,COM3,3004 -0112_720_4,-74.64029801,39.52937633,6550 WEYMOUTH ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_720_6,-74.70806,39.474175,6538 WEYMOUTH ROAD,HAMILTON TWP,16,1980,1,RES1,3001 -0112_720_8.01,-74.72695364,39.46086226,6520 WEYMOUTH ROAD,HAMILTON TWP,17,2016,1,RES1,3004 -0112_720_8.02,-74.5034675,39.332834,6494 WEYMOUTH ROAD,HAMILTON TWP,,1886,1,RES1,3001 -0112_720_9.01,-74.79631933,39.64482797,6456 WEYMOUTH ROAD,HAMILTON TWP,16,1945,1,RES1,3001 -0112_721_1,-74.64181853,39.52900234,6400 STONEWOOD ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_721_8,-74.58827864,39.35452527,6401 TANGLEWOOD DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_721_9,-74.375843,39.4018455,1350 PARK ROAD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_723_1,-74.5894975,39.3370625,6416 TANGLEWOOD DRIVE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_723_15,-74.53021482,39.38721652,6400 TANGLEWOOD DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_723_16,-74.85265236,39.36904274,710 PARK ROAD,HAMILTON TWP,17,2002,1,RES1,3001 -0112_723_16.01,-74.59643718,39.34111453,706 PARK ROAD,HAMILTON TWP,17,2002,1,COM4,3004 -0112_723_17,-74.46470133,39.34695555,698 PARK ROAD,HAMILTON TWP,17,1954,1,RES1,3001 -0112_723_18.01,-74.63206112,39.36442121,688 PARK ROAD,HAMILTON TWP,17,1948,1,RES1,3001 -0112_723_18.02,-74.50275039,39.50405217,692 PARK ROAD,HAMILTON TWP,17,1994,1,RES1,3001 -0112_723_19,-74.5148495,39.324242,676 PARK ROAD,HAMILTON TWP,17,1908,1,RES3A,3001 -0112_723_2,-74.51713655,39.44545064,6414 TANGLEWOOD DRIVE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_723_20,-74.555334,39.468479,668 PARK ROAD,HAMILTON TWP,,1921,1,RES1,3001 -0112_723_21,-74.50906266,39.32846551,660 PARK ROAD,HAMILTON TWP,17,1940,1,RES1,3001 -0112_723_22,-74.5189105,39.4790715,650 PARK ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_723_23,-74.4906122,39.43345673,636 PARK ROAD,HAMILTON TWP,17,1926,1,RES1,3001 -0112_723_24,-74.601679,39.499058,628 PARK ROAD,HAMILTON TWP,17,2013,1,RES1,3001 -0112_723_25,-74.600471,39.3150485,620 PARK ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_723_26,-74.835633,39.378445,612 PARK ROAD,HAMILTON TWP,,1926,1,RES1,3001 -0112_723_27.01,-74.5465535,39.468611,600 PARK ROAD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_723_28,-74.48495033,39.34586954,586 PARK ROAD,HAMILTON TWP,17,1922,1,RES1,3001 -0112_723_29,-74.52572041,39.47087069,582 PARK ROAD,HAMILTON TWP,17,1940,1,RES1,3001 -0112_723_3,-74.79995436,39.54413776,6412 TANGLEWOOD DRIVE,HAMILTON TWP,17,1998,1,GOV1,3004 -0112_723_30,-74.6023165,39.4353445,576 PARK ROAD,HAMILTON TWP,17,1900,1,RES1,3001 -0112_723_31,-74.442099,39.3580765,570 PARK ROAD,HAMILTON TWP,17,1957,1,RES1,3002 -0112_723_32,-74.6483655,39.5343835,560 PARK ROAD,HAMILTON TWP,17,1900,1,RES1,3001 -0112_723_33,-74.6390875,39.3831785,546 PARK ROAD,HAMILTON TWP,17,1942,1,RES1,3001 -0112_723_34,-74.59419984,39.34349222,526 PARK ROAD,HAMILTON TWP,17,1963,1,RES1,3001 -0112_723_35,-74.41039432,39.38263881,512 PARK ROAD,HAMILTON TWP,17,1962,1,COM1,3004 -0112_723_36,-74.49086573,39.49495313,1101 ADAMS AVE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_723_37,-74.5141525,39.3985715,947 ADAMS AVE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_723_38,-74.5947195,39.3824655,917 ADAMS AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_723_39,-74.94162701,39.52432717,901 ADAMS AVE,HAMILTON TWP,17,1964,1,RES1,3001 -0112_723_4,-74.45946618,39.34767043,6410 TANGLEWOOD DRIVE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_723_40,-74.8091905,39.654372,759 ADAMS AVE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_723_41,-74.49075802,39.33129567,741 ADAMS AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_723_42,-74.57041,39.41317,721 ADAMS AVE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_723_43,-74.49923347,39.50040694,701 ADAMS AVE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_723_44,-74.5854695,39.32503917,6312 SEVENTH STREET,HAMILTON TWP,17,1957,1,RES1,3001 -0112_723_45,-74.58344922,39.49574122,6306 SEVENTH STREET,HAMILTON TWP,17,1957,1,RES1,3001 -0112_723_46,-74.49132587,39.33435433,6302 SEVENTH STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_723_47.02,-74.90768107,39.4875203,609 BAINBRIDGE AVENUE,HAMILTON TWP,17,1963,1,RES1,3001 -0112_723_48.01,-74.38475601,39.39234933,509 BAINBRIDGE AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_723_48.02,-74.72359616,39.58187554,521 BAINBRIDGE AVENUE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_723_49,-74.60317606,39.48389325,503 BAINBRIDGE AVENUE,HAMILTON TWP,17,1974,1,GOV1,3004 -0112_723_5,-74.63057,39.3881635,6408 TANGLEWOOD DRIVE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_723_50.01,-74.53505498,39.3770106,6208 FIFTH STREET,HAMILTON TWP,17,1955,1,RES1,3001 -0112_723_50.03,-74.50064766,39.3369815,FIFTH STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_723_50.04,-74.5900675,39.3488245,413 CALHOUN AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_723_52,-74.537933,39.38645,237 LENAPE AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_723_6,-74.500139,39.3351615,6406 TANGLEWOOD DRIVE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_723_7,-74.7510975,39.450923,6404 TANGLEWOOD DRIVE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_723_8,-74.653737,39.5954995,6402 TANGLEWOOD DRIVE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_724_1,-74.67281027,39.39099135,411 HANTHORN STREET,HAMILTON TWP,17,1952,1,RES1,3001 -0112_724_2,-74.506118,39.32829,412 CALHOUN AVENUE,HAMILTON TWP,17,1935,1,RES1,3001 -0112_724_3,-74.57529399,39.35808805,403 LENAPE AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_725_1,-74.71996913,39.48007066,1035 MC GEARY PLACE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_725_10,-74.63588855,39.38459868,929 MC GEARY PLACE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_725_11,-74.80684848,39.63911244,913 MORNINGSIDE DRIVE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_725_12,-74.63828735,39.54704336,886 MORNINGSIDE DRIVE,HAMILTON TWP,17,2004,1,GOV1,3004 -0112_725_13,-74.59473307,39.32405375,898 MORNINGSIDE DRIVE,HAMILTON TWP,17,1965,1,AGR1,3004 -0112_725_16,-74.46526696,39.49624467,930 MORNINGSIDE DRIVE,HAMILTON TWP,17,1970,1,COM1,3004 -0112_725_17,-74.7229965,39.4564675,942 MORNINGSIDE DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_725_18,-74.602822,39.407965,950 MORNINGSIDE DRIVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_725_19,-74.6796255,39.568523,962 MORNINGSIDE DRIVE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_725_2,-74.5425995,39.525603,1023 MC GEARY PLACE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_725_20,-74.68633736,39.65278317,974 MORNINGSIDE DRIVE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_725_21,-74.50413967,39.429827,984 MORNINGSIDE DRIVE,HAMILTON TWP,17,2002,1,RES1,3001 -0112_725_22,-74.45400601,39.48878201,MORNINGSIDE DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_725_23,-74.50874943,39.33644633,1004 MORNINGSIDE DRIVE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_725_24,-74.4717085,39.342918,1016 MORNINGSIDE DRIVE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_725_25,-74.598993,39.3543725,1024 MORNINGSIDE DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_725_3,-74.547979,39.392641,1011 MC GEARY PLACE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_725_4,-74.47961772,39.34291589,1001 MC GEARY PLACE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_725_5,-74.423003,39.3668225,991 MC GEARY PLACE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_725_6,-74.45253246,39.49508619,979 MC GEARY PLACE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_725_7,-74.49531556,39.4274533,967 MC GEARY PLACE,HAMILTON TWP,17,1973,1,RES1,3001 -0112_725_8,-74.36391814,39.41765528,955 MC GEARY PLACE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_725_9,-74.48911415,39.33508241,941 MC GEARY PLACE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_726_1,-74.615899,39.6011665,6502 TUNNEY AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_726_10,-74.37637219,39.41387095,6555 LAKE DRIVE,HAMILTON TWP,17,1952,1,GOV1,3004 -0112_726_12,-74.92795389,39.50802677,6530 TUNNEY AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_726_13,-74.52730368,39.46932093,6526 TUNNEY AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_726_16,-74.496318,39.3318215,6514 TUNNEY AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_726_17,-74.74656511,39.45176116,6510 TUNNEY AVENUE,HAMILTON TWP,17,1955,1,GOV1,3004 -0112_726_18,-74.778928,39.6213695,6506 TUNNEY AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_726_2,-74.6038575,39.3180945,707 PARK ROAD,HAMILTON TWP,17,1970,1,COM1,3004 -0112_726_3,-74.49441119,39.45905654,6507 RUNDLE AVENUE,HAMILTON TWP,17,1970,1,GOV1,3004 -0112_726_4,-74.63188184,39.39958841,6511 RUNDLE AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_726_5,-74.574913,39.3437795,6515 RUNDLE AVENUE,HAMILTON TWP,17,1963,1,RES1,3001 -0112_726_6,-74.48423866,39.33463967,6519 RUNDLE AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_726_7,-74.46217369,39.34914162,6523 RUNDLE AVENUE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_726_8,-74.7847095,39.645407,6527 RUNDLE AVENUE,HAMILTON TWP,17,1951,1,RES1,3001 -0112_726_9,-74.660447,39.638301,6531 RUNDLE AVENUE,HAMILTON TWP,17,2009,1,RES1,3001 -0112_727_1,-74.832842,39.395317,697 PARK ROAD,HAMILTON TWP,17,1957,1,RES1,3001 -0112_727_11,-74.48960502,39.43717039,6507 LAKE DRIVE,HAMILTON TWP,17,1962,1,COM1,3004 -0112_727_3,-74.39952713,39.38973164,6508 RUNDLE AVENUE,HAMILTON TWP,17,1959,1,RES1,3001 -0112_727_5,-74.52493989,39.31617279,689 PARK ROAD,HAMILTON TWP,17,1952,1,RES1,3001 -0112_727_6,-74.5911355,39.377698,677 PARK ROAD,HAMILTON TWP,17,1892,1,RES3A,3001 -0112_727_9,-74.88822345,39.59786716,657 PARK ROAD,HAMILTON TWP,17,1935,1,RES1,3001 -0112_728_1,-74.5996315,39.3164605,6518 RUNDLE AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_728_10,-74.7052065,39.5832335,6522 RUNDLE AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_728_3,-74.39960244,39.3878047,6523 LOUISE AVENUE,HAMILTON TWP,,1987,1,RES1,3001 -0112_728_5,-74.70948524,39.47454369,6531 LOUISE AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_728_6,-74.57943238,39.3311944,6545 LAKE DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_728_7,-74.62162443,39.37496368,6551 LAKE DRIVE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_728_8,-74.53372034,39.45315452,6530 RUNDLE AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_728_9,-74.52650778,39.45063984,6526 RUNDLE AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_729_1,-74.537315,39.4065045,6521 LAKE DRIVE,HAMILTON TWP,17,1975,1,REL1,3004 -0112_729_2,-74.3977793,39.38925053,6525 LAKE DRIVE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_729_3,-74.49831885,39.32796612,6531 LAKE DRIVE,HAMILTON TWP,17,1954,1,COM1,3004 -0112_73_1,-74.48595822,39.43886055,7530 BLUEBERRY ROAD,HAMILTON TWP,15,1997,1,RES1,3001 -0112_73_10,-74.6254315,39.3544165,2994 COUNTRY LANE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_73_11,-74.91268367,39.51134,2996 COUNTRY LANE,HAMILTON TWP,,1950,1,RES1,3001 -0112_73_14,-74.816461,39.635713,7529 BLUEBERRY ROAD,HAMILTON TWP,15,1950,1,RES1,3001 -0112_73_2,-74.689429,39.5118,7584 WEYMOUTH ROAD,HAMILTON TWP,16,1965,1,RES1,3001 -0112_73_3.01,-74.5395685,39.41218,7606 WEYMOUTH ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_73_3.02,-74.45320431,39.49836789,7608 WEYMOUTH ROAD,HAMILTON TWP,17,1989,1,RES3A,3004 -0112_73_4,-74.49589767,39.46907179,7612 WEYMOUTH ROAD,HAMILTON TWP,16,1911,1,RES1,3001 -0112_73_5,-74.576015,39.4303995,7620 WEYMOUTH ROAD,HAMILTON TWP,16,1958,1,RES1,3001 -0112_73_7,-74.5962895,39.316827,2980 COUNTRY LANE,HAMILTON TWP,15,1960,1,RES1,3001 -0112_73_9,-74.58983752,39.41092515,2990 COUNTRY LANE,HAMILTON TWP,16,1991,1,RES1,3001 -0112_730_1,-74.68771095,39.49920917,6137 OLD HARDING HIGHWAY,HAMILTON TWP,17,1955,1,GOV1,3004 -0112_730_10,-74.5989483,39.36891493,129 LENAPE AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_730_11,-74.59986273,39.32322179,203 LENAPE AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_730_12,-74.9278005,39.5192375,207 LENAPE AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_730_13,-74.466101,39.472941,211 LENAPE AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_730_14,-74.68458373,39.44414614,213 LENAPE AVENUE,HAMILTON TWP,17,1925,1,RES1,3001 -0112_730_15,-74.61712408,39.43249871,215 LENAPE AVENUE,HAMILTON TWP,27,1910,1,RES1,3001 -0112_730_16,-74.694979,39.3628115,217 LENAPE AVENUE,HAMILTON TWP,27,1910,1,RES1,3001 -0112_730_17,-74.5904925,39.3318875,221 LENAPE AVENUE,HAMILTON TWP,17,1910,2,RES1,3001 -0112_730_18,-74.760242,39.63983,223 LENAPE AVENUE,HAMILTON TWP,27,1860,2,RES1,3001 -0112_730_19,-74.51533576,39.43943317,225 LENAPE AVENUE,HAMILTON TWP,17,1860,5,RES1,3001 -0112_730_2,-74.638831,39.4009225,6133 OLD HARDING HIGHWAY,HAMILTON TWP,27,1955,1,RES1,3001 -0112_730_3,-74.6270965,39.458747,6131 OLD HARDING HIGHWAY,HAMILTON TWP,27,1955,1,RES1,3001 -0112_730_4,-74.63929671,39.42906636,6129 OLD HARDING HIGHWAY,HAMILTON TWP,17,1975,1,GOV1,3004 -0112_730_5.02,-74.60208182,39.31697893,6115 OLD HARDING HIGHWAY,HAMILTON TWP,,1866,1,RES3A,3001 -0112_730_6,-74.46650265,39.4891207,6105 OLD HARDING HIGHWAY,HAMILTON TWP,,0,1,RES1,3001 -0112_730_7,-74.6190363,39.42436841,105 MILL STREET,HAMILTON TWP,17,1830,1,GOV1,3004 -0112_731.01_1,-74.61350218,39.32589802,6196 WHITE OAK WAY,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.01_10,-74.804783,39.431828,6185 ROBIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.01_11,-74.8784409,39.59811911,6187 ROBIN DRIVE,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_731.01_12,-74.46240767,39.47287799,6189 ROBIN DRIVE,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_731.01_13,-74.7124695,39.4694825,6191 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_14,-74.67035805,39.56259834,6193 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_15,-74.9748575,39.5088835,6195 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_16,-74.57371368,39.40992841,6197 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_17,-74.60316227,39.59682854,6199 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_18,-74.6639845,39.3995685,6198 ROBIN DRIVE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_731.01_19,-74.59796428,39.3310522,6196 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_2,-74.51179508,39.32703516,6192 WHITE OAK WAY,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_731.01_20,-74.77838177,39.62205109,6194 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_21,-74.50789446,39.32973264,6192 ROBIN DRIVE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_731.01_22,-74.483434,39.3417275,6190 ROBIN DRIVE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_731.01_23,-74.6261329,39.46160851,6188 ROBIN DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.01_24,-74.504493,39.4288315,6186 TOWHEE LANE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_25,-74.61678665,39.31301966,6184 TOWHEE LANE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.01_26,-74.69991915,39.56591004,6182 TOWHEE LANE,HAMILTON TWP,17,1994,1,COM3,3004 -0112_731.01_27,-74.82079436,39.61489901,6180 TOWHEE LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.01_28,-74.77454051,39.65961351,6178 TOWHEE LANE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_29,-74.5697535,39.4135435,6176 TOWHEE LANE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.01_3,-74.81612434,39.65401744,6188 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_30,-74.55052371,39.37842898,6189 EAGLE DRIVE,HAMILTON TWP,17,1993,1,RES3A,3001 -0112_731.01_31,-74.645555,39.5505755,6191 EAGLE DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.01_32,-74.79464682,39.62132103,6193 EAGLE DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.01_33,-74.5554965,39.470209,6195 EAGLE DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.01_34,-74.71889181,39.57608646,6197 EAGLE DRIVE,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_731.01_4,-74.9210665,39.5669195,6184 WHITE OAK WAY,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_731.01_5,-74.5021085,39.4475405,6188 FALCON RUN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_6,-74.59034317,39.427833,6186 FALCON RUN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_7,-74.71162996,39.43499082,6179 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_8,-74.46931928,39.45753579,6181 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_9,-74.4782655,39.3469155,6183 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.01_99,-74.608197,39.343388,WALKERS FORGE/WHITE OAK,HAMILTON TWP,,0,1,RES1,3001 -0112_731.02_1,-74.75590726,39.44650759,6185 TOWHEE LANE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.02_10,-74.51923415,39.38777749,6182 FALCON RUN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.02_11,-74.63753695,39.52451357,6184 FALCON RUN ROAD,HAMILTON TWP,17,1991,1,RES1,3001 -0112_731.02_2,-74.43753965,39.48966254,6183 TOWHEE LANE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_731.02_3,-74.608117,39.4400405,6181 TOWHEE LANE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.02_4,-74.3749585,39.402086,6179 TOWHEE LANE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.02_5,-74.58148618,39.33082551,6177 TOWHEE LANE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.02_6,-74.60869318,39.40818852,6175 TOWHEE LANE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_731.02_7,-74.52174532,39.39556097,6183 EAGLE DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.02_8,-74.46190567,39.34973897,6181 EAGLE DRIVE,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_731.02_9,-74.504182,39.493563,6180 FALCON RUN ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_1,-74.8195445,39.6353465,6198 EAGLE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_10,-74.39415234,39.38634504,6180 EAGLE DRIVE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_731.03_11,-74.94776825,39.53151509,6178 EAGLE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_12,-74.6391855,39.3404335,6176 EAGLE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_13,-74.48599243,39.33410226,6174 RED HAWK DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_14,-74.81205236,39.61672335,6172 RED HAWK DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_15,-74.8748705,39.5964555,6170 RED HAWK DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_16,-74.65122486,39.41214829,6168 RED HAWK DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_17,-74.50545835,39.32868147,6166 RED HAWK DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_18,-74.9612955,39.512581,6164 RED HAWK DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_19,-74.39142183,39.3924585,6162 RED HAWK DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.03_2,-74.6033252,39.31319608,6196 EAGLE DRIVE,HAMILTON TWP,17,1990,1,REL1,3004 -0112_731.03_20,-74.5261925,39.4461005,6160 RED HAWK DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_21,-74.6302515,39.4163805,6158 RED HAWK DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.03_22,-74.6093981,39.36637433,6156 RED HAWK DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_3,-74.461731,39.4626895,6194 EAGLE DRIVE,HAMILTON TWP,17,1990,1,GOV1,3004 -0112_731.03_4,-74.5537896,39.4657001,6192 EAGLE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_5,-74.68468934,39.49487951,6190 EAGLE DRIVE,HAMILTON TWP,17,1989,1,RES1,3004 -0112_731.03_6,-74.63741456,39.43501723,6188 EAGLE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_7,-74.464675,39.495389,6186 EAGLE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_8,-74.48271188,39.33994021,6184 EAGLE DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.03_9,-74.4814175,39.3523295,6182 EAGLE DRIVE,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_731.03_97,-74.50292134,39.33321686,EAGLE DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_731.03_98,-74.52347218,39.39831054,WALKERS FORGE/EAGLE DRIVE,HAMILTON TWP,,0,1,GOV1,3004 -0112_731.03_99,-74.597556,39.4302625,FALCON RUN ROAD,HAMILTON TWP,,0,1,GOV1,3004 -0112_731.04_1,-74.60760686,39.37285676,6180 ROBIN DRIVE,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_731.04_10,-74.5194325,39.4127855,6162 ROBIN DRIVE,HAMILTON TWP,17,1991,1,GOV1,3004 -0112_731.04_11,-74.57337301,39.41438264,6161 FALCON RUN ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.04_12,-74.8081205,39.375268,6163 FALCON RUN ROAD,HAMILTON TWP,17,1992,1,RES1,3001 -0112_731.04_13,-74.61860416,39.36236922,6165 FALCON RUN ROAD,HAMILTON TWP,17,1994,1,GOV1,3004 -0112_731.04_14,-74.75695866,39.44860721,6167 FALCON RUN ROAD,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.04_15,-74.92907174,39.51848767,6169 FALCON RUN ROAD,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.04_16,-74.80313668,39.54642393,6171 FALCON RUN ROAD,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.04_17,-74.5228455,39.3141025,6173 FALCON RUN ROAD,HAMILTON TWP,17,1994,1,GOV1,3004 -0112_731.04_18,-74.37995262,39.39451163,6175 FALCON RUN ROAD,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.04_19,-74.55309316,39.38401802,6177 FALCON RUN ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.04_2,-74.50285216,39.50224187,6178 ROBIN DRIVE,HAMILTON TWP,17,1994,1,IND2,3002 -0112_731.04_3,-74.522939,39.393848,6176 ROBIN DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.04_4,-74.46587594,39.34452664,6174 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES3A,3001 -0112_731.04_5,-74.52323606,39.45675114,6172 ROBIN DRIVE,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_731.04_6,-74.486555,39.525504,6170 ROBIN DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.04_7,-74.50409956,39.33918236,6168 ROBIN DRIVE,HAMILTON TWP,17,1994,1,GOV1,3004 -0112_731.04_8,-74.85464591,39.60893912,6166 ROBIN DRIVE,HAMILTON TWP,17,1994,1,GOV1,3004 -0112_731.04_9,-74.65426265,39.52631747,6164 ROBIN DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.05_1,-74.66962925,39.46406314,6180 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_10,-74.49242636,39.47026721,6167 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_11,-74.4993845,39.5387665,6169 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_12,-74.4445535,39.3739925,6171 ROBIN DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.05_13,-74.8333595,39.4893735,6173 ROBIN DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.05_14,-74.45329602,39.49989603,6181 FALCON RUN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_15,-74.7764699,39.30348367,6183 FALCON RUN ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.05_16,-74.95024864,39.5175436,6185 FALCON RUN ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.05_2,-74.57177963,39.36940767,6174 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_3,-74.5480296,39.46537853,6170 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_4,-74.93143633,39.51952801,6164 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_5,-74.50608114,39.43924147,6153 FALCON RUN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_6,-74.52460847,39.39722618,6155 FALCON RUN ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.05_7,-74.47738984,39.47823602,6157 FALCON RUN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.05_8,-74.55651901,39.47013266,6163 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES3A,3001 -0112_731.05_9,-74.71729301,39.57940183,6165 ROBIN DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.06_1,-74.62324601,39.4182909,6160 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.06_10,-74.35898584,39.41121152,6155 ROBIN DRIVE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_731.06_11,-74.68721337,39.41536508,6157 ROBIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.06_12,-74.3596355,39.4127355,6159 ROBIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.06_2,-74.57456367,39.48237051,6158 WHITE OAK WAY,HAMILTON TWP,17,1986,1,RES1,3001 -0112_731.06_3,-74.6210682,39.6197186,6156 WHITE OAK WAY,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.06_4,-74.585,39.363613,6154 WHITE OAK WAY,HAMILTON TWP,17,1986,1,RES1,3001 -0112_731.06_5,-74.82741832,39.37644098,6152 WHITE OAK WAY,HAMILTON TWP,17,1986,1,RES1,3001 -0112_731.06_6,-74.49728,39.5181885,6150 WHITE OAK WAY,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.06_7,-74.490448,39.337464,6149 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.06_8,-74.69153164,39.41994742,6151 ROBIN DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_731.06_9,-74.71332144,39.47143536,6153 ROBIN DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_731.07_1,-74.48772422,39.47902966,6160 ROBIN DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.07_10,-74.52166817,39.31765346,6142 ROBIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.07_11,-74.61009916,39.32683504,6140 ROBIN DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.07_12,-74.47964658,39.47905867,6138 ROBIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.07_13,-74.445335,39.3600295,6135 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.07_14,-74.47706052,39.34044117,6137 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.07_15,-74.4368215,39.489371,6139 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.07_16,-74.77886787,39.6331472,6141 GOLDFINCH DRIVE,HAMILTON TWP,17,1990,1,GOV1,3004 -0112_731.07_17,-74.79015665,39.61381855,6143 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.07_18,-74.55253259,39.37285381,6145 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.07_19,-74.92447632,39.47438872,6147 GOLDFINCH DRIVE,HAMILTON TWP,17,1994,1,GOV1,3004 -0112_731.07_2,-74.61792683,39.31137699,6158 ROBIN DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.07_20,-74.42841268,39.37278724,6149 GOLDFINCH DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.07_21,-74.79073352,39.53204634,6151 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.07_22,-74.7113165,39.4673015,6153 GOLDFINCH DRIVE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_731.07_23,-74.61744852,39.31989744,6155 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.07_24,-74.814566,39.529813,6157 GOLDFINCH DRIVE,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_731.07_25,-74.72667405,39.58693866,6159 GOLDFINCH DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.07_26,-74.55287071,39.47613356,6161 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.07_3,-74.88429867,39.599078,6156 ROBIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.07_4,-74.59879969,39.43234306,6154 ROBIN DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.07_5,-74.50549061,39.43792081,6152 ROBIN DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_731.07_6,-74.59379784,39.49288103,6150 ROBIN DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.07_7,-74.593412,39.36238212,6148 ROBIN DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.07_8,-74.49551459,39.33546755,6146 ROBIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.07_9,-74.5073568,39.52826703,6144 ROBIN DRIVE,HAMILTON TWP,17,1991,1,RES1,3001 -0112_731.07_99,-74.57935835,39.34335319,GOLDFINCH DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_731.08_1,-74.49009779,39.44228073,6136 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES2,3005 -0112_731.08_10,-74.6529565,39.3530545,6154 GOLDFINCH DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.08_11,-74.55973824,39.36655154,6156 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.08_12,-74.37798056,39.41856424,6158 GOLDFINCH DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.08_13,-74.83412749,39.62488967,6160 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.08_2,-74.49432871,39.33787162,6138 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.08_3,-74.61761218,39.43782191,6140 GOLDFINCH DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.08_4,-74.48257792,39.34748851,6142 GOLDFINCH DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_731.08_5,-74.7197955,39.576923,6144 GOLDFINCH DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.08_6,-74.63805842,39.45120208,6146 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_731.08_7,-74.63654537,39.62333718,6148 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.08_8,-74.61526932,39.32040493,6150 GOLDFINCH DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.08_9,-74.8069535,39.6297945,6152 GOLDFINCH DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_731.08_99,-74.5067665,39.3257015,OFF GOLDFINCH DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_731.09_1,-74.54516765,39.49983805,6128 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.09_2,-74.90244871,39.53907197,6134 GOLDFINCH DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.09_3,-74.42219137,39.36720132,6132 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.09_4,-74.55717182,39.39701401,6130 GOLDFINCH DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.09_99,-74.78901481,39.5309376,GOLDFINCH DRIVE,HAMILTON TWP,,0,1,RES1,3001 -0112_731.10_1,-74.60936515,39.43962423,WHITE OAK WAY,HAMILTON TWP,,1900,1,RES1,3001 -0112_731.10_2,-74.50813466,39.32257151,6155 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.10_3,-74.52329645,39.395388,6153 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.10_4,-74.75415194,39.43057878,6151 WHITE OAK WAY,HAMILTON TWP,17,1989,1,RES1,3001 -0112_731.10_5,-74.593671,39.347943,6143 ROBIN DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.10_6,-74.78633986,39.67234881,6145 ROBIN DRIVE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_731.10_7,-74.45761451,39.34991463,6147 ROBIN DRIVE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_731_10,-74.88037268,39.59451248,27 ROUTE 50,HAMILTON TWP,16,1924,1,GOV1,3004 -0112_731_11,-74.6067735,39.34854183,25 ROUTE 50,HAMILTON TWP,17,1916,1,COM4,3004 -0112_731_12,-74.50692591,39.46131236,23 ROUTE 50,HAMILTON TWP,16,1948,1,RES1,3001 -0112_731_4,-74.71158449,39.58349014,HARDING HIGHWAY,HAMILTON TWP,,0,1,RES1,3001 -0112_731_5.02,-74.57499016,39.40951801,6192 HARDING HWY,HAMILTON TWP,,0,1,RES1,3001 -0112_731_6,-74.62665962,39.45846717,6108 HARDING HIGHWAY,HAMILTON TWP,16,1948,1,RES1,3001 -0112_731_7,-74.586856,39.323321,6106 HARDING HIGHWAY,HAMILTON TWP,15,1920,1,RES1,3001 -0112_731_8,-74.46971467,39.3450345,6104 HARDING HWY,HAMILTON TWP,15,1916,1,RES1,3001 -0112_731_9,-74.8138974,39.38344633,6102 HARDING HWY,HAMILTON TWP,16,1916,1,RES1,3001 -0112_732_1,-74.9459665,39.494857,6298 HARDING HWY,HAMILTON TWP,,1986,1,RES1,3001 -0112_732_17,-74.58166739,39.47281796,6155 HARDING HWY,HAMILTON TWP,,0,1,RES1,3001 -0112_732_2,-74.8096815,39.397413,6177 HARDING HWY,HAMILTON TWP,,1994,1,RES1,3001 -0112_732_35,-74.44864466,39.49386469,6260 OLD HARDING HIGHWAY,HAMILTON TWP,,0,1,RES1,3001 -0112_732_36,-74.6096355,39.367464,6258 OLD HARDING HIGHWAY,HAMILTON TWP,17,1954,1,RES1,3001 -0112_732_37,-74.49907732,39.41140696,6250 OLD HARDING HIGHWAY,HAMILTON TWP,16,1942,1,RES1,3001 -0112_732_42,-74.42280967,39.375354,6234 OLD HARDING HIGHWAY,HAMILTON TWP,,0,1,GOV1,3004 -0112_732_43,-74.6074855,39.3982115,6200 OLD HARDING HIGHWAY,HAMILTON TWP,,1971,1,RES1,3001 -0112_732_46,-74.9469105,39.516934,6152 OLD HARDING HIGHWAY,HAMILTON TWP,16,1948,1,RES1,3001 -0112_732_48,-74.48770997,39.33451965,6148 OLD HARDING HIGHWAY,HAMILTON TWP,17,1946,1,RES1,3001 -0112_732_49,-74.6092778,39.36845588,6146 OLD HARDING HIGHWAY,HAMILTON TWP,27,1944,1,RES1,3001 -0112_732_50,-74.638116,39.40238,6144 OLD HARDING HIGHWAY,HAMILTON TWP,27,1944,1,RES1,3001 -0112_732_51,-74.835389,39.563608,6142 OLD HARDING HIGHWAY,HAMILTON TWP,16,1906,1,RES1,3001 -0112_732_53,-74.53816738,39.50209255,6138 OLD HARDING HIGHWAY,HAMILTON TWP,17,1906,1,RES1,3001 -0112_732_54,-74.82709371,39.46690872,61 WHEATON AVENUE,HAMILTON TWP,27,1920,2,RES1,3001 -0112_732_55,-74.8025625,39.521621,57 WHEATON AVENUE,HAMILTON TWP,27,1932,2,RES1,3001 -0112_732_57,-74.81722209,39.62557615,55 WHEATON AVENUE,HAMILTON TWP,27,1932,2,RES1,3001 -0112_732_59,-74.522355,39.3205845,45 MILL STREET,HAMILTON TWP,,1963,1,RES1,3001 -0112_732_60,-74.8174325,39.654564,6118 OLD HARDING HIGHWAY,HAMILTON TWP,27,1900,1,RES1,3001 -0112_732_61,-74.50668367,39.336599,6116 OLD HARDING HIGHWAY,HAMILTON TWP,27,1900,1,GOV1,3004 -0112_732_64,-74.62972383,39.39314284,6110 OLD HARDING HIGHWAY,HAMILTON TWP,17,1900,1,GOV1,3004 -0112_732_66,-74.56941651,39.36058659,6104 OLD HARDING HIGHWAY,HAMILTON TWP,,1924,1,RES1,3001 -0112_732_67,-74.8259061,39.63972936,65 MILL STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_732_68,-74.79423749,39.64650374,61 MILL STREET,HAMILTON TWP,17,1900,2,GOV1,3004 -0112_732_69,-74.62247206,39.4907728,57 MILL STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_732_70,-74.8646895,39.436032,55 MILL STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_732_71,-74.73898768,39.46905389,53 MILL STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_732_72,-74.56175116,39.52642299,51 MILL STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_732_73,-74.62297037,39.62358812,49 MILL STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_732_77,-74.51593774,39.38834253,6121 LONGWOOD AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_732_78,-74.49817828,39.52902324,6125 LONGWOOD AVENUE,HAMILTON TWP,16,1900,1,RES1,3001 -0112_732_79,-74.55218408,39.4763603,6127 LONGWOOD AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_732_80,-74.53118531,39.46169634,6131 LONGWOOD AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_732_81,-74.609438,39.378164,6133 LONGWOOD AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_732_82,-74.57406229,39.35552414,6135 LONGWOOD AVENUE,HAMILTON TWP,17,1940,1,RES1,3001 -0112_732_83,-74.65370259,39.45711681,6137 LONGWOOD AVENUE,HAMILTON TWP,16,1975,1,RES1,3001 -0112_733_1,-74.513866,39.323769,6112 LONGWOOD AVENUE,HAMILTON TWP,17,1919,1,RES1,3001 -0112_733_11.01,-74.680328,39.445403,5 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_11.02,-74.44256269,39.35545715,3 MILL STREET,HAMILTON TWP,17,1914,1,RES1,3001 -0112_733_12,-74.51349847,39.32463183,1 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_13,-74.35589068,39.41422404,6105 HARDING HIGHWAY,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_14,-74.83065054,39.40975335,6107 HARDING HIGHWAY,HAMILTON TWP,17,1918,1,GOV1,3004 -0112_733_15,-74.79088584,39.63678433,6109 HARDING HIGHWAY,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_16,-74.603761,39.3427495,6138 LONGWOOD AVENUE,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_17,-74.53918082,39.37393244,6136 LONGWOOD AVENUE,HAMILTON TWP,16,1918,1,GOV1,3004 -0112_733_18,-74.37627167,39.401093,6134 LONGWOOD AVENUE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_733_19,-74.61459696,39.35088916,6132 LONGWOOD AVENUE,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_2,-74.47004631,39.48914176,31 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_20,-74.9292355,39.508513,6130 LONGWOOD AVENUE,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_21,-74.530556,39.404362,6128 LONGWOOD AVENUE,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_22,-74.8583475,39.615584,6126 LONGWOOD AVENUE,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_23,-74.668893,39.392494,6124 LONGWOOD AVENUE,HAMILTON TWP,16,1918,1,RES1,3001 -0112_733_24,-74.57195935,39.36408331,6122 LONGWOOD AVENUE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_733_25,-74.77827388,39.62339983,6120 LONGWOOD AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_733_26,-74.81665344,39.38821083,6118 LONGWOOD AVENUE,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_27,-74.64058487,39.52849284,6116 LONGWOOD AVENUE,HAMILTON TWP,17,1918,1,RES1,3002 -0112_733_28,-74.61152976,39.41410103,6114 LONGWOOD AVENUE,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_3,-74.6060295,39.396994,29 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_4,-74.73350192,39.46316045,27 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_5,-74.78204122,39.67355879,25 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_6,-74.4037859,39.3893485,23 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_7,-74.87226946,39.56421284,19 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_8,-74.63848127,39.38111061,15 MILL STREET,HAMILTON TWP,17,1918,1,RES1,3001 -0112_733_9,-74.94115217,39.5194109,13 MILL STREET,HAMILTON TWP,17,1907,1,RES1,3001 -0112_734_1,-74.70149472,39.57494988,6090 DANENHAUER LANE,HAMILTON TWP,,1985,1,RES1,3001 -0112_735_1,-74.78734716,39.46156942,6068 HARDING HIGHWAY,HAMILTON TWP,,1988,1,COM3,3004 -0112_735_10,-74.48642785,39.34991724,6029 DANENHAUER LANE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_735_12,-74.78309718,39.31339696,6009 DANENHAUER LANE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_735_13,-74.5014865,39.327947,6003 DANENHAUER LANE,HAMILTON TWP,17,1980,1,COM1,3004 -0112_735_14,-74.36052657,39.41052215,6000 DANENHAUER LANE,HAMILTON TWP,18,1960,1,RES1,3001 -0112_735_15,-74.951364,39.5218125,6004 DANENHAUER LANE,HAMILTON TWP,18,1990,1,RES1,3001 -0112_735_16,-74.60201287,39.31043619,6010 DANENHAUER LANE,HAMILTON TWP,17,2015,1,RES1,3001 -0112_735_17,-74.55067182,39.46951486,6018 DANENHAUER LANE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_735_19,-74.86091492,39.56484855,6028 DANENHAUER LANE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_735_20,-74.58363976,39.34062567,DANENHAUER LANE,HAMILTON TWP,,0,1,RES1,3001 -0112_735_21,-74.6497915,39.5289275,6034 DANENHAUER LANE,HAMILTON TWP,16,1985,1,RES1,3001 -0112_735_22,-74.51487354,39.32922135,6038 DANENHAUER LANE,HAMILTON TWP,16,1985,1,GOV1,3004 -0112_735_3,-74.3802785,39.399294,6056 HARDING HWY,HAMILTON TWP,,1974,1,RES1,3001 -0112_735_4.01,-74.53270579,39.38902783,6048 HARDING HWY,HAMILTON TWP,,2018,1,RES1,3001 -0112_735_4.02,-74.9410695,39.5248085,6044 HARDING HIGHWAY,HAMILTON TWP,,1970,1,RES1,3001 -0112_735_5,-74.56715335,39.37303713,8 ROUTE 50,HAMILTON TWP,,1998,1,RES1,3001 -0112_735_8.03,-74.65327483,39.55645449,6039 DANENHAUER LANE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_735_8.04,-74.88728391,39.59588161,6037 DANENHAUER LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_735_9,-74.58704505,39.35441844,6033 DANENHAUER LANE,HAMILTON TWP,18,1991,1,RES1,3001 -0112_736_1,-74.58603193,39.32802104,30 MILL STREET,HAMILTON TWP,,1916,1,RES1,3001 -0112_736_10,-74.5193001,39.32278859,1 CAMAC AVENUE,HAMILTON TWP,,1954,1,RES1,3001 -0112_736_11,-74.64575054,39.47109399,6045 HARDING HIGHWAY,HAMILTON TWP,16,1942,1,RES1,3001 -0112_736_12,-74.719935,39.391455,6047 HARDING HIGHWAY,HAMILTON TWP,,1936,1,GOV1,3004 -0112_736_13,-74.86029591,39.59476165,6 MILL STREET,HAMILTON TWP,16,1972,1,RES1,3001 -0112_736_16,-74.80305333,39.6436155,16 MILL STREET,HAMILTON TWP,,1916,1,RES1,3001 -0112_736_17,-74.57989357,39.32991493,22 MILL STREET,HAMILTON TWP,17,1936,1,RES1,3001 -0112_736_18,-74.6212117,39.4886981,24 MILL STREET,HAMILTON TWP,,1900,1,RES1,3001 -0112_736_19,-74.72514994,39.58872068,26 MILL STREET,HAMILTON TWP,17,1926,1,RES1,3001 -0112_736_2.02,-74.5730315,39.367071,33 CAMAC AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_736_2.03,-74.5947085,39.314368,35 CAMAC AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_736_2.04,-74.50837134,39.40480791,37 CAMAC AVENUE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_736_20,-74.45884468,39.34868723,28 MILL STREET,HAMILTON TWP,17,1952,1,GOV1,3004 -0112_736_3,-74.54808671,39.50604302,23 CAMAC AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_736_4,-74.6126091,39.3481038,19 CAMAC AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_736_5,-74.63111915,39.42286739,17 CAMAC AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_736_6,-74.51437117,39.441093,13 CAMAC AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_736_8,-74.55245948,39.37782234,9 CAMAC AVENUE,HAMILTON TWP,17,1953,1,COM1,3004 -0112_736_9,-74.60885782,39.44035745,5 CAMAC AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_737_1,-74.35736968,39.41342104,32 CAMAC AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_737_2,-74.63149783,39.43181617,33 CENTRAL AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_737_3,-74.4929325,39.40261,29 CENTRAL AVENUE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_737_4,-74.463141,39.35331669,25 CENTRAL AVENUE,HAMILTON TWP,17,1957,1,RES3A,3001 -0112_737_5.01,-74.58606681,39.35487284,19 CENTRAL AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_737_5.02,-74.6582115,39.57701,20 CAMAC AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_737_6,-74.6434965,39.367886,24 CAMAC AVENUE,HAMILTON TWP,17,1946,1,RES1,3001 -0112_737_7,-74.45311245,39.4779093,26 CAMAC AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_737_8,-74.51115961,39.43985088,28 CAMAC AVENUE,HAMILTON TWP,17,1957,1,RES1,3001 -0112_738_1,-74.5130735,39.457409,32 CENTRAL AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_738_4,-74.7819604,39.54315352,6053 SHARON AVENUE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_738_5,-74.5489995,39.3869135,18 CENTRAL AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_738_6,-74.46238759,39.49443179,22 CENTRAL AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_738_7,-74.64028819,39.34284306,26 CENTRAL AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_738_8,-74.53274666,39.40078027,30 CENTRAL AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_739_1,-74.4900905,39.334812,14 CAMAC AVENUE,HAMILTON TWP,17,1953,1,RES1,3001 -0112_739_2,-74.4411835,39.370854,15 CENTRAL AVENUE,HAMILTON TWP,17,1965,1,COM1,3004 -0112_739_3,-74.53714506,39.46742978,11 CENTRAL AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_739_4,-74.4856402,39.51861738,7 CENTRAL AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_739_5,-74.53317373,39.47366081,3 CENTRAL AVENUE,HAMILTON TWP,,1965,1,RES1,3001 -0112_739_6,-74.8092795,39.366105,4 CAMAC AVENUE,HAMILTON TWP,,1982,1,RES1,3001 -0112_739_7,-74.9250645,39.5249895,8 CAMAC AVENUE,HAMILTON TWP,17,1953,1,RES1,3001 -0112_739_8,-74.49784064,39.43602672,10 CAMAC AVENUE,HAMILTON TWP,17,1953,1,RES1,3001 -0112_739_9,-74.79713391,39.62060004,12 CAMAC AVENUE,HAMILTON TWP,17,1953,1,RES1,3001 -0112_740_1,-74.44757842,39.37202547,16 CENTRAL AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_740_2,-74.664775,39.5404545,12 CENTRAL AVENUE,HAMILTON TWP,17,1962,1,REL1,3004 -0112_740_3,-74.68661226,39.49542934,8 CENTRAL AVENUE,HAMILTON TWP,,1956,1,RES1,3001 -0112_740_6.02,-74.3915055,39.388815,6054 SHARON AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_741_1,-74.56466718,39.47973697,82 MILL STREET,HAMILTON TWP,,1911,1,RES1,3001 -0112_741_10,-74.4644765,39.3562535,48 MILL STREET,HAMILTON TWP,,1941,1,COM1,3004 -0112_741_12,-74.858469,39.4859605,42 MILL STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_741_13,-74.49767866,39.33417151,6081 RELIANCE AVENUE,HAMILTON TWP,,1976,1,RES1,3001 -0112_741_14.01,-74.81285366,39.63619347,6069 RELIANCE AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_741_14.02,-74.575024,39.3907475,6067 RELIANCE AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_741_14.03,-74.6510725,39.533776,6065 RELIANCE AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_741_19,-74.73820485,39.46661059,20 SHARON AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_741_2,-74.4625325,39.346642,80 MILL STREET,HAMILTON TWP,17,2016,1,RES1,3001 -0112_741_3,-74.67476057,39.50789985,78 MILL STREET,HAMILTON TWP,,1886,1,RES1,3001 -0112_741_4,-74.69779842,39.35670882,76 MILL STREET,HAMILTON TWP,27,1920,1,RES1,3001 -0112_741_5,-74.5225365,39.3934315,74 MILL STREET,HAMILTON TWP,27,1920,1,RES1,3001 -0112_741_6,-74.835072,39.493689,72 MILL STREET,HAMILTON TWP,17,1950,1,RES1,3001 -0112_741_7,-74.64065125,39.51921829,70 MILL STREET,HAMILTON TWP,17,1963,1,RES1,3001 -0112_741_8,-74.385971,39.3905115,58 MILL STREET,HAMILTON TWP,,1900,1,RES1,3001 -0112_741_9,-74.93646639,39.49593575,52 MILL STREET,HAMILTON TWP,17,1950,2,RES1,3001 -0112_742_1,-74.63734128,39.36550159,6076 MAIN STREET,HAMILTON TWP,16,1770,1,RES1,3001 -0112_742_10,-74.592099,39.3497065,6056 MAIN STREET,HAMILTON TWP,16,1892,1,RES3A,3002 -0112_742_11,-74.45408389,39.37476969,6054 MAIN STREET,HAMILTON TWP,,1925,1,RES1,3001 -0112_742_12,-74.49179128,39.43258534,6052 MAIN STREET,HAMILTON TWP,17,1890,1,RES1,3001 -0112_742_13,-74.52563927,39.54387932,6050 MAIN STREET,HAMILTON TWP,,1860,1,RES1,3001 -0112_742_15,-74.38202556,39.39902917,6046 MAIN STREET,HAMILTON TWP,17,1910,1,RES1,3001 -0112_742_16,-74.6034865,39.3726095,6044 MAIN STREET,HAMILTON TWP,17,1890,1,RES1,3001 -0112_742_17,-74.77994165,39.49914223,6042 MAIN STREET,HAMILTON TWP,27,1890,1,RES1,3001 -0112_742_18,-74.6684005,39.3694375,17 ABBOTT STREET,HAMILTON TWP,17,1885,1,RES1,3001 -0112_742_19,-74.56993,39.3691755,15 ABBOTT STREET,HAMILTON TWP,17,1920,1,RES1,3001 -0112_742_20,-74.50928751,39.33166933,7 ABBOTT STREET,HAMILTON TWP,17,1967,1,GOV1,3004 -0112_742_4,-74.762967,39.609648,6068 MAIN STREET,HAMILTON TWP,17,1880,1,RES1,3001 -0112_742_5,-74.4815067,39.35280945,6066 MAIN STREET,HAMILTON TWP,,1916,1,RES1,3001 -0112_742_6,-74.546373,39.39091767,6064 MAIN STREET,HAMILTON TWP,17,1880,1,RES1,3001 -0112_742_7,-74.6387473,39.42903095,6062 MAIN STREET,HAMILTON TWP,17,1910,1,RES1,3001 -0112_742_8,-74.50963792,39.33300084,6060 MAIN STREET,HAMILTON TWP,17,1890,1,RES1,3001 -0112_743_1,-74.5485612,39.37236831,6040 MAIN STREET,HAMILTON TWP,17,1942,1,RES1,3001 -0112_743_10,-74.5916225,39.37079,6022 MAIN STREET,HAMILTON TWP,,1896,1,RES1,3001 -0112_743_11,-74.75367532,39.45231592,6020 MAIN STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_743_12.02,-74.65806658,39.52313263,6016 MAIN STREET,HAMILTON TWP,,1896,1,RES1,3001 -0112_743_13,-74.792085,39.5260795,6010 MAIN STREET,HAMILTON TWP,,1973,1,RES1,3001 -0112_743_16,-74.55624897,39.36868366,21 TAYLOR AVENUE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_743_17.01,-74.6189545,39.3717975,15 TAYLOR AVENUE,HAMILTON TWP,17,1952,1,RES1,3001 -0112_743_2,-74.4730745,39.4852405,16 ABBOTT STREET,HAMILTON TWP,17,1957,1,COM3,3004 -0112_743_4,-74.47597351,39.44165932,6038 MAIN STREET,HAMILTON TWP,17,1869,1,RES1,3001 -0112_743_5,-74.694716,39.5884905,6034 MAIN STREET,HAMILTON TWP,17,1851,1,RES1,3001 -0112_743_6,-74.53758588,39.46558622,6030 MAIN STREET,HAMILTON TWP,17,1870,1,RES1,3001 -0112_743_7,-74.63993244,39.52846809,6028 MAIN STREET,HAMILTON TWP,,1906,1,RES1,3001 -0112_743_8,-74.57657137,39.40860151,6026 MAIN STREET,HAMILTON TWP,,1916,1,COM3,3004 -0112_743_9,-74.61261452,39.4219766,6024 MAIN STREET,HAMILTON TWP,,1906,1,RES1,3001 -0112_744_1,-74.63772265,39.42671664,6002 MAIN STREET,HAMILTON TWP,,1886,1,RES1,3001 -0112_744_10,-74.68627933,39.41299277,28 TAYLOR AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_744_11,-74.88355031,39.55961326,24 TAYLOR AVENUE,HAMILTON TWP,14,1900,1,RES1,3001 -0112_744_12,-74.6924895,39.4833485,20 TAYLOR AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_744_3,-74.50360946,39.3374914,44 TAYLOR AVENUE,HAMILTON TWP,,1886,1,RES1,3001 -0112_744_4,-74.56806381,39.35039246,42 TAYLOR AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_744_5,-74.911878,39.5147475,40 TAYLOR AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_744_6,-74.36430524,39.4149501,36 TAYLOR AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_744_7,-74.62197114,39.38564986,34 TAYLOR AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_744_8,-74.37481519,39.41266138,32 TAYLOR AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_744_9,-74.78487101,39.64848849,30 TAYLOR AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_745_1,-74.52988606,39.38092544,5926 MAIN STREET,HAMILTON TWP,,1836,1,RES1,3001 -0112_745_11,-74.57222382,39.42659675,25 PENNINGTON AVENUE,HAMILTON TWP,17,1928,1,RES1,3001 -0112_745_12,-74.547632,39.3770575,23 PENNINGTON AVENUE,HAMILTON TWP,17,1924,1,RES1,3001 -0112_745_13,-74.48509804,39.53698916,19 PENNINGTON AVENUE,HAMILTON TWP,17,1928,1,RES1,3001 -0112_745_14,-74.6432755,39.433312,15 PENNINGTON AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_745_15,-74.61131199,39.32730134,13 PENNINGTON AVENUE,HAMILTON TWP,17,1918,1,RES1,3001 -0112_745_17,-74.527677,39.3968645,11 PENNINGTON AVENUE,HAMILTON TWP,17,1926,1,RES1,3001 -0112_745_2,-74.37086619,39.40186913,43 PENNINGTON AVENUE,HAMILTON TWP,16,1916,1,RES1,3001 -0112_745_3,-74.7107395,39.474913,41 PENNINGTON AVENUE,HAMILTON TWP,16,1926,1,RES1,3001 -0112_745_4,-74.462314,39.547653,39 PENNINGTON AVENUE,HAMILTON TWP,17,1938,1,RES1,3001 -0112_745_5,-74.7876965,39.6766425,37 PENNINGTON AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_745_6,-74.508411,39.437007,35 PENNINGTON AVENUE,HAMILTON TWP,17,1924,1,RES1,3001 -0112_745_7,-74.56622285,39.34476501,33 PENNINGTON AVENUE,HAMILTON TWP,16,1924,1,RES1,3001 -0112_745_8,-74.681484,39.443916,31 PENNINGTON AVENUE,HAMILTON TWP,17,1916,1,RES1,3001 -0112_745_9,-74.62134797,39.43195416,29 PENNINGTON AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_746_2.01,-74.8245675,39.4886315,5914 ROUTE 617,HAMILTON TWP,,1952,1,GOV1,3004 -0112_746_3,-74.38223031,39.40116569,5908 ROUTE 617,HAMILTON TWP,17,1984,1,RES1,3001 -0112_746_5,-74.77347155,39.61851626,5900 ROUTE 617,HAMILTON TWP,,0,1,RES1,3001 -0112_747_1,-74.4873085,39.33412567,20 PENNINGTON AVENUE,HAMILTON TWP,16,1945,1,RES1,3001 -0112_747_10,-74.81665849,39.38598333,18 PENNINGTON AVENUE,HAMILTON TWP,16,1925,1,RES1,3001 -0112_747_2,-74.51432352,39.32113746,5907 GASKILL STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_747_3,-74.49625405,39.49342103,21 FARRAGUT AVENUE,HAMILTON TWP,17,1890,1,RES1,3001 -0112_747_4,-74.49105649,39.33163016,15 FARRAGUT AVENUE,HAMILTON TWP,17,1880,1,RES1,3001 -0112_747_7,-74.56202471,39.38926719,12 PENNINGTON AVENUE,HAMILTON TWP,17,1945,1,RES1,3001 -0112_747_8,-74.56630728,39.47484225,14 PENNINGTON AVENUE,HAMILTON TWP,17,1890,1,RES1,3001 -0112_747_9,-74.62545329,39.44308893,16 PENNINGTON AVENUE,HAMILTON TWP,17,1910,1,RES1,3001 -0112_748_1,-74.681921,39.494106,5924 MAIN STREET,HAMILTON TWP,,1926,1,GOV1,3004 -0112_748_11,-74.758049,39.4309985,5902 MAIN STREET,HAMILTON TWP,16,1925,1,COM1,3004 -0112_748_12,-74.80443185,39.63033746,41 FARRAGUT AVENUE,HAMILTON TWP,17,1945,1,RES1,3001 -0112_748_13,-74.81890865,39.63401096,37 FARRAGUT AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_748_15,-74.7866525,39.6383615,29 FARRAGUT AVENUE,HAMILTON TWP,17,1890,1,RES1,3001 -0112_748_16,-74.420256,39.3707335,27 FARRAGUT AVENUE,HAMILTON TWP,17,1868,1,RES1,3001 -0112_748_17,-74.90441019,39.53586097,5906 GASKILL STREET,HAMILTON TWP,17,1945,1,RES1,3001 -0112_748_18,-74.640625,39.3387925,5908 GASKILL STREET,HAMILTON TWP,17,1950,1,RES1,3001 -0112_748_19,-74.56872752,39.36499007,24 PENNINGTON AVENUE,HAMILTON TWP,17,1870,1,RES1,3001 -0112_748_2,-74.596363,39.379773,5920 MAIN STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_748_20,-74.64777892,39.40589071,30 PENNINGTON AVENUE,HAMILTON TWP,17,1851,1,RES1,3001 -0112_748_21,-74.3640085,39.4076535,34 PENNINGTON AVENUE,HAMILTON TWP,17,1837,1,RES1,3001 -0112_748_22,-74.5117235,39.5039465,38 PENNINGTON AVENUE,HAMILTON TWP,16,1890,1,RES1,3001 -0112_748_23,-74.9390195,39.533497,40 PENNINGTON AVENUE,HAMILTON TWP,,1936,1,RES1,3001 -0112_748_3,-74.5133609,39.32864129,5918 MAIN STREET,HAMILTON TWP,,1876,1,RES1,3001 -0112_748_4,-74.62022864,39.38555874,5916 MAIN STREET,HAMILTON TWP,,1926,1,RES1,3001 -0112_748_5,-74.620099,39.4243855,5914 MAIN STREET,HAMILTON TWP,,1988,1,RES1,3001 -0112_748_9,-74.78223925,39.63590865,5906 MAIN STREET,HAMILTON TWP,,1896,1,RES1,3001 -0112_749_1,-74.56624215,39.50460547,40 FARRAGUT AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_749_12,-74.7554742,39.44725191,24 FARRAGUT AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_749_2,-74.69432073,39.56182779,5736 MAIN STREET,HAMILTON TWP,,1850,1,RES1,3001 -0112_749_3,-74.53633179,39.45592446,5734 MAIN STREET,HAMILTON TWP,17,1920,1,RES1,3001 -0112_749_4,-74.68063683,39.44638855,5732 MAIN STREET,HAMILTON TWP,28,1865,2,RES1,3001 -0112_749_6,-74.6056155,39.43278385,5728 MAIN STREET,HAMILTON TWP,17,1930,1,RES1,3001 -0112_749_7,-74.7834125,39.611962,5724 MAIN STREET,HAMILTON TWP,17,1920,1,RES1,3001 -0112_749_8,-74.43300864,39.37001122,5720 MAIN STREET,HAMILTON TWP,,1926,1,RES1,3001 -0112_749_9,-74.86912435,39.59353992,5714 MAIN STREET,HAMILTON TWP,,1940,1,RES1,3001 -0112_75_2,-74.55628573,39.55020762,7453 WEYMOUTH ROAD,HAMILTON TWP,17,2003,1,RES1,3001 -0112_750_1.01,-74.49799418,39.41296251,6071 MAIN STREET,HAMILTON TWP,,1926,1,RES1,3001 -0112_750_1.02,-74.50571442,39.33831484,6069 MAIN STREET,HAMILTON TWP,16,1880,1,IND1,3002 -0112_750_10,-74.69009,39.4489235,6051 MAIN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_750_11,-74.4846758,39.4319929,6049 MAIN STREET,HAMILTON TWP,17,1900,2,RES1,3001 -0112_750_12,-74.712105,39.5020835,6048 HERITAGE LANE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_750_13,-74.519311,39.4461925,6047 MAIN STREET,HAMILTON TWP,16,1920,1,COM4,3004 -0112_750_14,-74.604687,39.500246,6045 MAIN STREET,HAMILTON TWP,16,1900,1,RES1,3001 -0112_750_15,-74.50023611,39.33154901,6043 MAIN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_750_2,-74.49941376,39.3290525,6065 MAIN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_750_3,-74.51173583,39.48612501,6061 MAIN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_750_4,-74.61798428,39.31102313,6059 MAIN STREET,HAMILTON TWP,16,1900,1,RES1,3001 -0112_750_5,-74.87718196,39.60392988,6057 MAIN STREET,HAMILTON TWP,27,1920,1,GOV1,3004 -0112_750_6,-74.4805122,39.44116052,6055 MAIN STREET,HAMILTON TWP,27,1900,1,RES1,3001 -0112_750_7,-74.4778321,39.34261467,6054 HERITAGE LANE,HAMILTON TWP,17,2001,1,RES1,3001 -0112_750_8,-74.6325175,39.4174185,6053 MAIN STREET,HAMILTON TWP,17,1783,1,RES1,3001 -0112_750_9,-74.47606386,39.4833075,6052 HERITAGE LANE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_751_1,-74.50925277,39.40077651,116 LENAPE AVENUE,HAMILTON TWP,17,1926,1,RES1,3001 -0112_751_10,-74.792267,39.5333995,6041 HERITAGE LANE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_751_11,-74.629204,39.390978,115 HUDSON STREET,HAMILTON TWP,,1966,1,RES1,3001 -0112_751_2,-74.54984136,39.37319895,120 LENAPE AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_751_3,-74.53098964,39.40057795,122 LENAPE AVENUE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_751_4,-74.61396268,39.31928251,6051 HERITAGE LANE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_751_5,-74.80306147,39.64061767,124 LENAPE AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_751_6,-74.47965234,39.3475369,6049 HERITAGE LANE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_751_7,-74.92723092,39.50783935,6047 HERITAGE LANE,HAMILTON TWP,16,1920,1,COM1,3004 -0112_751_8,-74.80627734,39.62825302,6045 HERITAGE LANE,HAMILTON TWP,15,1820,1,RES1,3001 -0112_751_9,-74.38609902,39.39679883,6043 HERITAGE LANE,HAMILTON TWP,17,1940,1,RES1,3001 -0112_752_1,-74.94549317,39.52547612,128 LENAPE AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_752_2,-74.49660879,39.42826137,130 LENAPE AVENUE,HAMILTON TWP,17,1850,1,RES1,3001 -0112_752_3,-74.57240617,39.37065006,132 LENAPE AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_752_4,-74.50619158,39.46256235,134 LENAPE AVENUE,HAMILTON TWP,17,1924,1,RES1,3001 -0112_753_1,-74.5747343,39.35555864,6041 MAIN STREET,HAMILTON TWP,,1956,1,RES4,3001 -0112_753_10,-74.858426,39.6239095,6040 KEN SCULL AVENUE,HAMILTON TWP,17,1910,1,RES1,3001 -0112_753_11,-74.524658,39.4658795,6036 KEN SCULL AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_753_12,-74.62479034,39.43838612,6032 KEN SCULL AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_753_13,-74.71934309,39.57210336,6028 KEN SCULL AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_753_14,-74.60080882,39.32204017,6024 KEN SCULL AVENUE,HAMILTON TWP,,1965,1,RES1,3001 -0112_753_15,-74.79981365,39.64662204,6023 MAIN STREET,HAMILTON TWP,,1975,1,RES1,3001 -0112_753_17,-74.8168215,39.653266,6027 MAIN STREET,HAMILTON TWP,28,1900,3,RES1,3001 -0112_753_18,-74.53932159,39.46116878,6029 MAIN STREET,HAMILTON TWP,17,1848,1,RES1,3001 -0112_753_19,-74.963535,39.5058805,6033 MAIN STREET,HAMILTON TWP,,1973,1,RES1,3001 -0112_753_2,-74.4814425,39.3419095,104 HUDSON STREET,HAMILTON TWP,17,1895,1,RES1,3001 -0112_753_20,-74.5691349,39.37462445,6037 MAIN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_753_21,-74.47615928,39.48482896,6039 MAIN STREET,HAMILTON TWP,,1890,1,RES1,3001 -0112_753_3,-74.36353337,39.41920594,106 HUDSON STREET,HAMILTON TWP,17,1895,1,RES1,3001 -0112_753_4,-74.62496009,39.38047574,108 HUDSON STREET,HAMILTON TWP,17,1895,1,RES1,3001 -0112_753_5,-74.61189146,39.31821377,110 HUDSON STREET,HAMILTON TWP,17,1895,1,RES1,3001 -0112_753_6,-74.63032719,39.39304242,112 HUDSON STREET,HAMILTON TWP,17,1895,1,GOV1,3004 -0112_753_7,-74.5869015,39.3485205,114 HUDSON STREET,HAMILTON TWP,17,1895,1,RES1,3001 -0112_753_8,-74.56448526,39.41627903,116 HUDSON STREET,HAMILTON TWP,17,1895,1,RES1,3001 -0112_753_9,-74.5079825,39.447764,118 HUDSON STREET,HAMILTON TWP,16,1895,2,RES1,3001 -0112_754_1,-74.52364172,39.31531025,202 ACORN TERRACE,HAMILTON TWP,17,1945,1,RES1,3001 -0112_754_2,-74.52391765,39.39213767,204 ACORN TERRACE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_754_3,-74.71310906,39.46624468,222 ACORN TERRACE,HAMILTON TWP,17,1928,1,RES1,3001 -0112_755_1,-74.6357245,39.4112675,6035 KEN SCULL AVENUE,HAMILTON TWP,17,1959,1,RES1,3001 -0112_755_10,-74.79387671,39.63936383,6031 KEN SCULL AVENUE,HAMILTON TWP,16,1916,1,RES1,3001 -0112_755_2,-74.53455916,39.38492103,202 LENAPE AVENUE,HAMILTON TWP,17,1958,1,RES1,3001 -0112_755_3,-74.53684185,39.52967096,6028 THIRD STREET,HAMILTON TWP,17,1962,1,RES1,3001 -0112_755_4,-74.4528035,39.4972335,6024 THIRD STREET,HAMILTON TWP,17,1924,1,RES1,3001 -0112_755_5,-74.58732113,39.32156485,211 HANTHORN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_755_6,-74.80237666,39.63162735,221 ACORN TERRACE,HAMILTON TWP,17,1924,1,RES1,3001 -0112_755_7,-74.5927305,39.310496,205 ACORN TERRACE,HAMILTON TWP,17,1932,1,RES1,3001 -0112_755_8,-74.4865685,39.335162,6027 KEN SCULL AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_755_9,-74.57057396,39.42796182,6029 KEN SCULL AVENUE,HAMILTON TWP,17,1906,1,RES1,3001 -0112_756_1,-74.58311271,39.32831482,6027 THIRD STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_756_2.01,-74.9389134,39.52234827,6023 THIRD STREET,HAMILTON TWP,17,1940,1,RES1,3001 -0112_756_2.02,-74.4722824,39.49321328,302 LENAPE AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_756_3,-74.92416812,39.50749004,6021 THIRD STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_756_4,-74.59322266,39.32069535,301 HANTHORN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_756_5,-74.52653969,39.39025833,305 HANTHORN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_756_6,-74.4536855,39.5028705,307 HANTHORN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_756_7,-74.576398,39.3396845,311 HANTHORN STREET,HAMILTON TWP,17,1955,1,RES1,3001 -0112_757_1,-74.81819093,39.47053918,6019 MAIN STREET,HAMILTON TWP,,1886,1,RES1,3001 -0112_757_11,-74.80573,39.6400075,115 ROUTE 50,HAMILTON TWP,,1900,1,RES1,3001 -0112_757_13,-74.5256943,39.31783174,111 ROUTE 50,HAMILTON TWP,17,1900,1,RES1,3001 -0112_757_14,-74.61563,39.30979083,6001 MAIN STREET,HAMILTON TWP,,1841,1,RES1,3001 -0112_757_15,-74.79509149,39.53777166,6007 MAIN STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_757_17,-74.905254,39.4977125,6011 MAIN STREET,HAMILTON TWP,17,1880,1,GOV1,3004 -0112_757_18,-74.51098,39.322248,6013 MAIN STREET,HAMILTON TWP,,1861,1,RES1,3001 -0112_757_19,-74.50414559,39.42850559,6015 MAIN STREET,HAMILTON TWP,16,1880,1,RES1,3001 -0112_757_2,-74.360089,39.4103725,108 HANTHORN STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_757_20,-74.724483,39.4557175,6017 MAIN STREET,HAMILTON TWP,17,1880,1,RES1,3001 -0112_757_4,-74.50830994,39.33528533,110 HANTHORN STREET,HAMILTON TWP,17,1880,1,RES1,3001 -0112_757_5,-74.6028497,39.32244588,112 HANTHORN STREET,HAMILTON TWP,17,1860,1,RES1,3004 -0112_757_6,-74.65115535,39.53263554,6014 SECOND STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_757_7,-74.52078785,39.31597356,6009 MAIN STREET ALLEY,HAMILTON TWP,,1971,1,RES1,3001 -0112_757_8,-74.9089385,39.5368055,6010 SECOND STREET,HAMILTON TWP,16,1925,1,RES1,3001 -0112_757_9,-74.7602012,39.43056981,6008 SECOND STREET,HAMILTON TWP,17,1925,1,GOV1,3004 -0112_758_1,-74.53557157,39.30448888,204 HANTHORN STREET,HAMILTON TWP,17,1904,1,RES1,3001 -0112_758_2,-74.64459118,39.38296008,206 HANTHORN STREET,HAMILTON TWP,17,1870,1,RES1,3001 -0112_758_3,-74.58044812,39.40142682,210 HANTHORN STREET,HAMILTON TWP,17,1880,1,RES1,3001 -0112_758_4,-74.61194628,39.4007741,212 HANTHORN STREET,HAMILTON TWP,17,1880,1,GOV1,3004 -0112_758_5,-74.60126849,39.33077617,6006 THIRD STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_758_7,-74.5031955,39.3316885,6007 SECOND STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_758_8,-74.639479,39.532128,6011 SECOND STREET,HAMILTON TWP,17,1945,1,RES1,3001 -0112_759_1,-74.4624655,39.3502035,302 HANTHORN STREET,HAMILTON TWP,17,1908,1,GOV1,3004 -0112_759_10,-74.6468525,39.5064125,311 ROUTE 50,HAMILTON TWP,17,1880,1,RES1,3001 -0112_759_11,-74.62491049,39.35208483,309 ROUTE 50,HAMILTON TWP,17,1900,1,GOV1,3004 -0112_759_12,-74.6484425,39.6204655,307 ROUTE 50,HAMILTON TWP,,1900,1,RES1,3001 -0112_759_13,-74.6293937,39.4213658,305 ROUTE 50,HAMILTON TWP,17,1920,1,RES3A,3001 -0112_759_15,-74.55534673,39.46655556,301 ROUTE 50,HAMILTON TWP,16,1920,1,RES1,3001 -0112_759_16,-74.47282203,39.49103167,6005 THIRD STREET,HAMILTON TWP,17,2010,1,RES1,3001 -0112_759_2,-74.68538717,39.49417967,304 HANTHORN STREET,HAMILTON TWP,17,1946,1,RES1,3001 -0112_759_3,-74.79860534,39.66079096,306 HANTHORN STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_759_4,-74.843316,39.524501,308 HANTHORN STREET,HAMILTON TWP,17,1925,1,RES1,3001 -0112_759_5,-74.61174573,39.34474036,312 HANTHORN STREET,HAMILTON TWP,17,1880,1,RES1,3001 -0112_759_5.01,-74.79294506,39.64744272,313 HANTHORN STREET,HAMILTON TWP,17,2000,1,RES1,3001 -0112_759_6,-74.64919149,39.35051083,314 HANTHORN STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_759_7,-74.4831075,39.35466,6004 FIFTH STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_759_8,-74.38477445,39.39767728,315 ROUTE 50,HAMILTON TWP,,1946,1,RES1,3001 -0112_760_1,-74.64047771,39.62242893,700 ADAMS AVE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_760_2,-74.5956025,39.3145995,720 ADAMS AVE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_760_3,-74.521093,39.3223435,736 ADAMS AVE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_760_4,-74.533669,39.3856795,758 ADAMS AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_760_5,-74.46748971,39.45576445,759 BAINBRIDGE AVENUE,HAMILTON TWP,17,1963,1,RES1,3001 -0112_760_6,-74.54219318,39.51830269,737 BAINBRIDGE AVENUE,HAMILTON TWP,17,1992,1,RES1,3001 -0112_760_7,-74.3722765,39.402882,709 BAINBRIDGE AVENUE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_760_8,-74.52168691,39.32018017,701 BAINBRIDGE AVENUE,HAMILTON TWP,17,1956,1,COM1,3004 -0112_761_1,-74.681444,39.51489,900 ADAMS AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_761_10,-74.6093205,39.320954,901 BAINBRIDGE AVENUE,HAMILTON TWP,17,1975,1,GOV1,3004 -0112_761_2,-74.60018416,39.42009211,916 ADAMS AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_761_3,-74.86261174,39.56413109,932 ADAMS AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_761_4,-74.4773275,39.3425095,948 ADAMS AVE,HAMILTON TWP,17,1969,1,RES1,3001 -0112_761_5,-74.8112985,39.6467265,964 ADAMS AVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_761_6,-74.49089366,39.33597792,6304 ELEVENTH STREET,HAMILTON TWP,17,1970,1,GOV1,3004 -0112_761_7,-74.5984072,39.58725594,949 BAINBRIDGE AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_761_8,-74.96787105,39.52864878,933 BAINBRIDGE AVENUE,HAMILTON TWP,17,1985,1,RES4,3001 -0112_761_9,-74.61516509,39.351834,917 BAINBRIDGE AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_762_1.01,-74.68133737,39.63460119,1100 ADAMS AVE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_763_1,-74.77186484,39.66133753,6209 FIFTH STREET,HAMILTON TWP,,1920,1,RES1,3001 -0112_763_10,-74.88565081,39.54090381,566 BAINBRIDGE AVENUE,HAMILTON TWP,27,1900,1,RES1,3001 -0112_763_11,-74.51087716,39.40644605,570 BAINBRIDGE AVENUE,HAMILTON TWP,27,1900,1,RES1,3001 -0112_763_12,-74.80486768,39.62592288,6204 SEVENTH STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_763_2,-74.63126762,39.35864514,510 BAINBRIDGE AVENUE,HAMILTON TWP,27,1920,1,RES1,3001 -0112_763_21,-74.80033206,39.63907077,517 CALHOUN AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_763_22,-74.63911177,39.524093,501 CALHOUN AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_763_3,-74.42711048,39.36478684,520 BAINBRIDGE AVENUE,HAMILTON TWP,27,1900,1,RES1,3001 -0112_763_4,-74.53779846,39.52280884,526 BAINBRIDGE AVENUE,HAMILTON TWP,17,1900,1,GOV1,3004 -0112_763_5,-74.63685358,39.33870467,534 BAINBRIDGE AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_763_6,-74.6028245,39.410619,542 BAINBRIDGE AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_763_7,-74.52251,39.470154,550 BAINBRIDGE AVENUE,HAMILTON TWP,28,1900,1,RES1,3001 -0112_763_8,-74.95167,39.516613,556 BAINBRIDGE AVENUE,HAMILTON TWP,28,1900,1,RES1,3001 -0112_763_9,-74.6637825,39.4557635,562 BAINBRIDGE AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_764_1,-74.4607425,39.473665,6209 SEVENTH STREET,HAMILTON TWP,17,1962,1,RES1,3001 -0112_764_2,-74.48702215,39.44315088,709 CALHOUN AVENUE,HAMILTON TWP,17,1924,1,RES1,3001 -0112_764_4,-74.7306145,39.4545575,720 BAINBRIDGE AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_764_5,-74.37285214,39.4071899,736 BAINBRIDGE AVENUE,HAMILTON TWP,17,1940,1,RES1,3001 -0112_764_6.01,-74.60003288,39.36080015,6208 NINTH STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_764_6.02,-74.58888942,39.35294032,6204 NINTH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_764_7,-74.51261335,39.46415704,737 CALHOUN AVENUE,HAMILTON TWP,17,1900,1,COM1,3002 -0112_764_8,-74.5062625,39.336122,721 CALHOUN AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_765_1,-74.96086972,39.52845606,6209 NINTH STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_765_10,-74.68769951,39.35962182,901 CALHOUN AVENUE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_765_2,-74.5177965,39.393999,916 BAINBRIDGE AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_765_3,-74.53240616,39.37994506,932 BAINBRIDGE AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_765_4,-74.62656395,39.43544574,948 BAINBRIDGE AVENUE,HAMILTON TWP,17,1968,1,GOV1,3004 -0112_765_5,-74.589387,39.378493,964 BAINBRIDGE AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_765_7,-74.5544195,39.356841,949 CALHOUN AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_765_8,-74.5383895,39.464816,933 CALHOUN AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_765_9,-74.51490808,39.3195283,919 CALHOUN AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_766_1.01,-74.670008,39.5816425,6205 ELEVENTH STREET,HAMILTON TWP,17,1995,1,RES1,3001 -0112_766_2,-74.405297,39.3785045,1149 CALHOUN AVENUE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_766_3,-74.526163,39.3110865,1133 CALHOUN AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_766_4,-74.623424,39.4222985,1101 CALHOUN AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_767_1,-74.496384,39.3306395,500 CALHOUN AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_767_2,-74.63353975,39.3183978,526 CALHOUN AVENUE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_767_3,-74.49393173,39.43310545,542 CALHOUN AVENUE,HAMILTON TWP,17,2003,1,RES1,3001 -0112_767_3.01,-74.7772985,39.621331,544 CALHOUN AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_767_4,-74.511742,39.464416,6108 SEVENTH STREET,HAMILTON TWP,,1976,1,RES1,3001 -0112_767_6,-74.5032975,39.329787,527 DECATUR AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_767_7,-74.51497016,39.46011956,509 DECATUR AVENUE,HAMILTON TWP,17,1940,1,RES1,3001 -0112_767_8,-74.4464765,39.3576725,501 DECATUR AVENUE,HAMILTON TWP,17,1954,1,RES3B,3001 -0112_768_1,-74.45748799,39.35045733,700 CALHOUN AVENUE,HAMILTON TWP,17,1965,1,RES3A,3001 -0112_768_2,-74.707126,39.5800775,732 CALHOUN AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_768_3,-74.56927219,39.34512511,740 CALHOUN AVENUE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_768_4,-74.634435,39.491856,6108 NINTH STREET,HAMILTON TWP,17,1973,1,RES1,3001 -0112_768_5.01,-74.38174442,39.40146003,6104 NINTH STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_768_5.02,-74.37855418,39.39674926,741 DECATUR AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_768_5.03,-74.63275472,39.4160642,735 DECATUR AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_768_6,-74.4974155,39.4958395,701 DECATUR AVENUE,HAMILTON TWP,,1971,1,RES1,3001 -0112_769_1,-74.638731,39.5243935,900 CALHOUN AVENUE,HAMILTON TWP,17,1975,1,RES3B,3001 -0112_769_2,-74.59003178,39.3559869,916 CALHOUN AVENUE,HAMILTON TWP,17,1968,1,RES1,3001 -0112_769_3,-74.87328395,39.49555421,932 CALHOUN AVENUE,HAMILTON TWP,17,1968,1,COM1,3004 -0112_769_4.01,-74.489912,39.4580605,948 CALHOUN AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_769_4.02,-74.46727784,39.48920898,6108 ELEVENTH STREET,HAMILTON TWP,17,1963,1,RES1,3001 -0112_769_5,-74.49244026,39.41878747,6104 ELEVENTH STREET,HAMILTON TWP,17,1965,1,RES1,3001 -0112_769_6,-74.60155697,39.3101768,949 DECATUR AVENUE,HAMILTON TWP,17,1971,1,RES1,3001 -0112_769_7,-74.82956783,39.53387051,933 DECATUR AVENUE,HAMILTON TWP,17,1965,1,RES1,3001 -0112_769_8,-74.63933381,39.36104593,917 DECATUR AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_769_9,-74.63166633,39.36121645,6109 NINTH STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_770_1,-74.9340115,39.52171,6109 ELEVENTH STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_770_10.02,-74.37661722,39.41497691,6105 ELEVENTH STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_770_2.01,-74.53400934,39.37926202,1116 CALHOUN AVENUE,HAMILTON TWP,17,1967,1,RES1,3001 -0112_770_2.02,-74.6916775,39.5132595,1132 CALHOUN AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_770_3,-74.6453175,39.376127,1148 CALHOUN AVENUE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_770_4,-74.62224245,39.41942519,1164 CALHOUN AVENUE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_771_1,-74.60657289,39.31581588,502 DECATUR AVENUE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_771_2,-74.903668,39.53913,526 DECATUR AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_771_3,-74.50179957,39.42909165,535 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_771_4,-74.77526073,39.65928602,550 DECATUR AVENUE,HAMILTON TWP,17,1954,1,RES1,3001 -0112_771_4.01,-74.71488729,39.43111409,560 DECATUR AVENUE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_771_5,-74.81754833,39.635051,565 ROUTE 50,HAMILTON TWP,,1975,1,RES1,3001 -0112_771_6,-74.5258275,39.4291935,551 ROUTE 50,HAMILTON TWP,,1979,1,RES1,3001 -0112_771_8,-74.9225345,39.563111,517 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_771_9,-74.39234045,39.38796134,501 ROUTE 50,HAMILTON TWP,16,1900,1,RES1,3001 -0112_772_1,-74.50576234,39.44387652,701 ROUTE 50,HAMILTON TWP,,1936,1,GOV1,3004 -0112_772_2,-74.60817218,39.33024751,716 DECATUR AVENUE,HAMILTON TWP,25,1982,2,RES1,3001 -0112_772_3,-74.62306502,39.42015752,732 DECATUR AVENUE,HAMILTON TWP,28,1980,2,RES1,3001 -0112_772_4.01,-74.54217561,39.39902474,748 DECATUR AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_772_4.02,-74.57401198,39.34217817,751 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_772_5,-74.58744043,39.4161462,762 NINTH STREET,HAMILTON TWP,17,1962,1,RES1,3001 -0112_772_6,-74.48863549,39.43540347,763 ROUTE 50,HAMILTON TWP,17,1946,1,RES3A,3001 -0112_772_7,-74.4669645,39.346998,741 ROUTE 50,HAMILTON TWP,17,1900,1,RES1,3001 -0112_772_8,-74.43696862,39.36978414,729 ROUTE 50,HAMILTON TWP,17,1970,1,RES1,3001 -0112_772_9,-74.86144713,39.62087827,717 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_773_1,-74.582975,39.341847,900 DECATUR AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_773_2.01,-74.64521883,39.41239269,916 DECATUR AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_773_2.02,-74.500597,39.328103,964 DECATUR AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_773_2.03,-74.4952947,39.42688465,932 DECATUR AVENUE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_773_2.04,-74.5165384,39.43725737,948 DECATUR AVENUE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_773_3,-74.80758129,39.6303118,965 ROUTE 50,HAMILTON TWP,,1921,1,RES1,3001 -0112_773_4.02,-74.61250134,39.36447121,933 ROUTE 50,HAMILTON TWP,17,1958,2,RES3B,3001 -0112_773_5,-74.7431895,39.633682,913 ROUTE 50,HAMILTON TWP,,1989,1,RES1,3001 -0112_773_6,-74.57318667,39.3481329,901 ROUTE 50,HAMILTON TWP,16,1936,1,RES3A,3001 -0112_774_1.01,-74.5968955,39.310295,6009 ELEVENTH STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_774_1.02,-74.61638083,39.43024019,1101 ROUTE 50,HAMILTON TWP,17,1984,1,RES1,3001 -0112_774_2,-74.64184077,39.37550888,1109 ROUTE 50,HAMILTON TWP,17,1926,1,RES1,3001 -0112_774_3.01,-74.763066,39.4280435,1145 ROUTE 50,HAMILTON TWP,17,1936,1,GOV1,3004 -0112_774_3.02,-74.6203698,39.43737384,1143 ROUTE 50,HAMILTON TWP,17,1990,1,RES1,3001 -0112_774_4,-74.76296246,39.36299659,1161 ROUTE 50,HAMILTON TWP,,1992,1,RES3A,3001 -0112_780_8,-74.61790701,39.4375162,1201 CALHOUN AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_786_1.01,-74.75638,39.454564,6101 THIRTEENTH STREET,HAMILTON TWP,,1992,1,RES1,3001 -0112_790_1,-74.495699,39.33288,1209 ROUTE 50,HAMILTON TWP,,1971,1,RES1,3001 -0112_790_2,-74.78270705,39.65588318,1217 ROUTE 50,HAMILTON TWP,17,2005,1,RES1,3001 -0112_790_3,-74.50645379,39.34100542,1221 ROUTE 50,HAMILTON TWP,,1981,1,RES1,3001 -0112_791_4,-74.46613,39.492353,1313 ROUTE 50,HAMILTON TWP,17,1978,1,RES1,3001 -0112_791_5,-74.534656,39.407513,1317 ROUTE 50,HAMILTON TWP,,1960,1,RES3A,3001 -0112_792_1,-74.47545684,39.34092149,1401 ROUTE 50,HAMILTON TWP,17,2006,1,RES1,3001 -0112_793_1,-74.4976519,39.33146019,1501 ROUTE 50,HAMILTON TWP,17,2004,1,RES1,3001 -0112_793_6,-74.604027,39.500136,1509 ROUTE 50,HAMILTON TWP,17,1960,1,RES1,3001 -0112_796_1.02,-74.6640067,39.46153593,1310 ROUTE 50,HAMILTON TWP,17,1968,1,RES1,3004 -0112_797_3,-74.6025845,39.3075165,1400 ROUTE 50,HAMILTON TWP,,1966,1,RES3A,3001 -0112_80_18,-74.55231406,39.39866231,7280 VENICE BLVD,HAMILTON TWP,,1900,1,RES1,3001 -0112_800_1,-74.4917391,39.33523067,5919 PARSONS ROW,HAMILTON TWP,17,1900,1,RES1,3001 -0112_800_2,-74.580358,39.3419115,114 ROUTE 50,HAMILTON TWP,,0,1,RES1,3001 -0112_800_3.01,-74.82924304,39.38971417,5915 PARSONS ROW,HAMILTON TWP,17,1900,1,RES1,3001 -0112_800_3.02,-74.67357406,39.55459515,5917 PARSONS ROW,HAMILTON TWP,17,1910,1,RES1,3001 -0112_800_4,-74.573194,39.349042,5903 MAIN STREET,HAMILTON TWP,,1890,1,RES1,3001 -0112_800_5,-74.4983685,39.3333505,100 ROUTE 50,HAMILTON TWP,,0,1,RES1,3001 -0112_801_1,-74.55905109,39.41379867,200 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_801_10,-74.9439285,39.510503,211 FARRAGUT AVENUE,HAMILTON TWP,17,1947,1,RES1,3001 -0112_801_11,-74.73828388,39.45288621,209 FARRAGUT AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_801_12,-74.5428095,39.3741985,207 FARRAGUT AVENUE,HAMILTON TWP,17,1940,1,RES1,3001 -0112_801_13,-74.66595165,39.54115005,5913 SECOND STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_801_14,-74.60111745,39.43520119,5917 SECOND STREET,HAMILTON TWP,17,1900,1,GOV1,3004 -0112_801_15,-74.93526782,39.52062955,5919 SECOND STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_801_2,-74.9120355,39.4812805,202 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_801_3,-74.53719622,39.47274655,204 ROUTE 50,HAMILTON TWP,28,1930,2,RES1,3001 -0112_801_4,-74.3702315,39.4156975,206 ROUTE 50,HAMILTON TWP,16,1890,1,RES3A,3001 -0112_801_5,-74.5974815,39.4957875,208 ROUTE 50,HAMILTON TWP,16,2014,1,RES1,3001 -0112_801_6,-74.58378914,39.32623005,210 ROUTE 50,HAMILTON TWP,,2009,1,RES1,3001 -0112_801_7,-74.68852623,39.35907972,5916 THIRD STREET,HAMILTON TWP,17,1940,1,RES1,3001 -0112_801_8,-74.63351179,39.43370552,5908 THIRD STREET,HAMILTON TWP,17,1947,1,RES1,3001 -0112_802_1,-74.36475766,39.40699201,300 ROUTE 50,HAMILTON TWP,,1986,1,RES1,3001 -0112_802_10,-74.59373968,39.31562103,309 FARRAGUT AVENUE,HAMILTON TWP,17,1945,1,RES1,3001 -0112_802_12,-74.54854291,39.37829514,301 FARRAGUT AVENUE,HAMILTON TWP,17,1890,1,RES1,3001 -0112_802_5,-74.45552106,39.49698983,5916 FOURTH STREET,HAMILTON TWP,17,1891,1,RES1,3001 -0112_802_7,-74.562553,39.4070625,5912 FOURTH STREET,HAMILTON TWP,17,1925,1,RES1,3002 -0112_802_8.01,-74.58326159,39.36707172,5910 FOURTH STREET,HAMILTON TWP,17,1910,1,RES1,3001 -0112_802_8.02,-74.85788042,39.61664982,5908 FOURTH STREET,HAMILTON TWP,17,1970,1,RES1,3002 -0112_802_9,-74.69954,39.363725,5906 FOURTH STREET,HAMILTON TWP,17,1945,1,RES1,3001 -0112_803_1,-74.482302,39.53744,404 ROUTE 50,HAMILTON TWP,,1925,1,RES1,3001 -0112_803_2,-74.78176951,39.67337971,5912 FIFTH STREET,HAMILTON TWP,17,1945,1,RES1,3001 -0112_803_3,-74.520665,39.387847,5910 FIFTH STREET,HAMILTON TWP,17,1945,1,GOV1,3004 -0112_803_4,-74.86230193,39.56552473,5908 FIFTH STREET,HAMILTON TWP,27,1906,2,RES1,3001 -0112_803_6,-74.589479,39.37576567,5903 FOURTH STREET,HAMILTON TWP,17,1925,1,RES1,3001 -0112_803_7,-74.82548151,39.38330767,5905 FOURTH STREET,HAMILTON TWP,17,1925,1,RES1,3001 -0112_803_8,-74.5317845,39.4183725,5907 FOURTH STREET,HAMILTON TWP,17,1925,1,RES1,3001 -0112_803_9,-74.64711538,39.41994883,5911 FOURTH STREET,HAMILTON TWP,17,1958,1,RES1,3001 -0112_804_10,-74.5991335,39.338258,501 FARRAGUT AVENUE,HAMILTON TWP,17,1953,1,RES1,3001 -0112_804_11,-74.660174,39.63473,5907 FIFTH STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_804_12,-74.88512166,39.59906453,5911 FIFTH STREET,HAMILTON TWP,17,1955,1,RES1,3001 -0112_804_13,-74.5187215,39.443672,5915 FIFTH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_804_2,-74.5118165,39.3279865,5919 FIFTH STREET,HAMILTON TWP,17,1942,1,RES1,3001 -0112_804_3,-74.475118,39.44544673,504 ROUTE 50,HAMILTON TWP,17,1945,1,RES3A,3001 -0112_804_4,-74.86931726,39.50419263,510 ROUTE 50,HAMILTON TWP,17,1945,1,RES1,3001 -0112_804_5,-74.59561687,39.3798871,5916 SIXTH STREET,HAMILTON TWP,,1961,1,GOV1,3004 -0112_804_6,-74.642974,39.5250955,5912 SIXTH STREET,HAMILTON TWP,17,1952,1,RES1,3001 -0112_804_7,-74.75502,39.4322625,5910 SIXTH STREET,HAMILTON TWP,17,1963,1,COM10,3003 -0112_804_8,-74.48537979,39.33424536,5906 SIXTH STREET,HAMILTON TWP,17,1963,1,RES3A,3001 -0112_804_9,-74.6748687,39.34413947,511 FARRAGUT AVENUE,HAMILTON TWP,17,1958,1,RES3A,3001 -0112_805_10,-74.8579305,39.4389595,5911 SIXTH STREET,HAMILTON TWP,17,1915,1,RES1,3001 -0112_805_11,-74.67796283,39.35403075,5913 SIXTH STREET,HAMILTON TWP,17,1915,1,RES1,3001 -0112_805_12,-74.838755,39.4097655,5915 SIXTH STREET,HAMILTON TWP,28,1900,2,RES1,3001 -0112_805_13,-74.77432236,39.59491091,5917 SIXTH STREET,HAMILTON TWP,17,1915,1,RES3A,3001 -0112_805_3,-74.58551418,39.32309255,5914 SEVENTH STREET,HAMILTON TWP,17,1940,1,RES1,3001 -0112_805_4,-74.76551695,39.60437584,5910 SEVENTH STREET,HAMILTON TWP,17,1926,1,COM1,3004 -0112_805_6,-74.85931734,39.61017871,5904 SEVENTH STREET,HAMILTON TWP,17,1956,1,RES1,3001 -0112_805_7,-74.508367,39.457111,603 FARRAGUT AVENUE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_805_8,-74.50834817,39.4335915,5907 SIXTH STREET,HAMILTON TWP,17,1954,1,RES1,3001 -0112_805_9,-74.6068435,39.3322565,5909 SIXTH STREET,HAMILTON TWP,17,1930,1,RES1,3001 -0112_806_1,-74.45745764,39.35722831,700 ROUTE 50,HAMILTON TWP,,1948,1,RES1,3001 -0112_806_10,-74.619764,39.404053,709 FARRAGUT AVENUE,HAMILTON TWP,17,1946,1,GOV1,3004 -0112_806_11.01,-74.49608276,39.34217682,701 FARRAGUT AVENUE,HAMILTON TWP,17,1928,1,RES1,3001 -0112_806_12,-74.9569756,39.51851306,5909 SEVENTH STREET,HAMILTON TWP,17,1930,1,RES1,3001 -0112_806_13,-74.59846734,39.344435,5913 SEVENTH STREET,HAMILTON TWP,17,1940,1,RES1,3001 -0112_806_14,-74.525463,39.390021,5915 SEVENTH STREET,HAMILTON TWP,17,1930,1,RES1,3001 -0112_806_15,-74.5225225,39.3182435,5917 SEVENTH STREET,HAMILTON TWP,17,1940,1,RES1,3001 -0112_806_16,-74.50671611,39.32953016,5919 SEVENTH STREET,HAMILTON TWP,17,1930,1,GOV1,3004 -0112_806_6,-74.69199697,39.50739333,5918 EIGHTH STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_806_7,-74.3830535,39.398437,5916 EIGHTH STREET,HAMILTON TWP,17,1955,1,RES1,3001 -0112_806_8,-74.64323192,39.41018969,5912 EIGHTH STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_806_9,-74.586262,39.3320105,5908 EIGHTH STREET,HAMILTON TWP,17,1951,1,RES1,3001 -0112_807_1,-74.50366531,39.41187995,110 FARRAGUT AVENUE,HAMILTON TWP,17,1900,1,RES3A,3001 -0112_807_2,-74.4539455,39.468734,112 FARRAGUT AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_807_3,-74.388392,39.3917165,114 FARRAGUT AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_807_4,-74.932833,39.48977,5809 MAIN STREET,HAMILTON TWP,17,1900,1,RES3A,3001 -0112_807_5,-74.51981628,39.39848533,5803 MAIN STREET,HAMILTON TWP,,1946,1,RES1,3002 -0112_808_1,-74.79162552,39.64482724,210 FARRAGUT AVENUE,HAMILTON TWP,,1906,1,RES1,3001 -0112_808_2,-74.60989485,39.39162675,212 FARRAGUT AVENUE,HAMILTON TWP,,1900,1,RES1,3001 -0112_808_3,-74.94381969,39.52251791,200 FARRAGUT AVENUE,HAMILTON TWP,,1927,1,COM1,3004 -0112_809_1,-74.8120125,39.371907,5749 MAIN STREET,HAMILTON TWP,,1946,1,RES3A,3001 -0112_809_11,-74.721166,39.565793,5745 SECOND STREET,HAMILTON TWP,17,1958,1,RES1,3001 -0112_809_12,-74.88670003,39.58246003,5749 SECOND STREET,HAMILTON TWP,17,1944,1,RES1,3001 -0112_809_13,-74.491761,39.3398085,206 LINWOOD AVENUE,HAMILTON TWP,17,1942,1,GOV1,3004 -0112_809_14,-74.50182639,39.42573585,208 LINWOOD AVENUE,HAMILTON TWP,17,1940,1,RES1,3001 -0112_809_15,-74.58095884,39.40216469,5736 THIRD STREET,HAMILTON TWP,17,1940,1,RES3A,3001 -0112_809_16,-74.7309735,39.4595605,5730 THIRD STREET,HAMILTON TWP,17,1962,1,RES3A,3001 -0112_809_17,-74.50057054,39.45273208,5801 THIRD STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_809_18,-74.6132625,39.3253245,406 FARRAGUT AVENUE,HAMILTON TWP,,0,1,RES3A,3001 -0112_809_19,-74.4945245,39.3324615,502 FARRAGUT AVENUE,HAMILTON TWP,17,1927,1,RES1,3001 -0112_809_2,-74.5197435,39.4250585,110 LINWOOD AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_809_21,-74.95519267,39.51901156,508 FARRAGUT AVENUE,HAMILTON TWP,17,1927,1,RES1,3001 -0112_809_22,-74.5136105,39.417223,512 FARRAGUT AVENUE,HAMILTON TWP,17,1931,1,RES1,3001 -0112_809_23,-74.6042045,39.3136805,514 FARRAGUT AVENUE,HAMILTON TWP,17,1927,1,RES1,3001 -0112_809_24,-74.5037292,39.33426844,602 FARRAGUT AVENUE,HAMILTON TWP,16,2012,1,RES1,3001 -0112_809_25,-74.4984,39.3357225,608 FARRAGUT AVENUE,HAMILTON TWP,17,1927,1,RES1,3001 -0112_809_26,-74.5345705,39.3139225,612 FARRAGUT AVENUE,HAMILTON TWP,17,1928,1,RES1,3004 -0112_809_27,-74.4230745,39.3760435,616 FARRAGUT AVENUE,HAMILTON TWP,17,1927,1,RES1,3001 -0112_809_28,-74.80411558,39.63585098,700 FARRAGUT AVENUE,HAMILTON TWP,17,1962,1,RES1,3004 -0112_809_29,-74.63827376,39.40117806,708 FARRAGUT AVENUE,HAMILTON TWP,17,1990,1,RES1,3001 -0112_809_3.01,-74.54574651,39.37626131,5745 MAIN STREET,HAMILTON TWP,17,1900,3,RES1,3001 -0112_809_3.02,-74.599496,39.317404,5739 MAIN STREET,HAMILTON TWP,,1906,1,RES3A,3001 -0112_809_31,-74.52628233,39.38792367,165 OLD EGG HARBOR ROAD,HAMILTON TWP,,1975,1,RES1,3001 -0112_809_32,-74.7301955,39.457254,129 OLD EGG HARBOR ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_809_35,-74.68056043,39.48045194,105 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1952,1,RES1,3001 -0112_809_36,-74.63063694,39.43359214,101 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1950,1,RES1,3001 -0112_809_4,-74.469654,39.3427315,5729 MAIN STREET,HAMILTON TWP,17,1830,1,RES1,3001 -0112_809_5,-74.60754515,39.38901426,5725 MAIN STREET,HAMILTON TWP,17,1880,1,RES1,3001 -0112_809_7,-74.783173,39.6577475,5721 SECOND STREET,HAMILTON TWP,17,1952,1,RES1,3001 -0112_809_8,-74.85308836,39.61852075,5725 SECOND STREET,HAMILTON TWP,17,1964,1,RES1,3001 -0112_809_9,-74.4732415,39.442442,5735 SECOND STREET,HAMILTON TWP,17,1981,1,RES1,3001 -0112_810_1,-74.59604,39.4238925,800 ROUTE 50,HAMILTON TWP,,1988,1,RES1,3001 -0112_810_10,-74.45207369,39.37228053,5907 EIGHTH STREET,HAMILTON TWP,17,1920,1,RES1,3002 -0112_810_11,-74.83217146,39.5356528,5911 EIGHTH STREET,HAMILTON TWP,17,1928,1,RES1,3002 -0112_810_12,-74.78680394,39.63896084,5913 EIGHTH STREET,HAMILTON TWP,17,1965,1,RES1,3001 -0112_810_14,-74.4056415,39.3830255,5917 EIGHTH STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_810_15,-74.49404334,39.3308115,EIGHTH STREET,HAMILTON TWP,,0,1,RES3A,3001 -0112_810_4,-74.5143215,39.4038045,5920 NINTH STREET,HAMILTON TWP,17,1981,1,RES1,3001 -0112_810_5,-74.59745007,39.50998122,5918 NINTH STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_810_7,-74.837387,39.5948305,5912 NINTH STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_810_8.01,-74.57763192,39.33415492,5906 NINTH STREET,HAMILTON TWP,17,1920,1,RES1,3001 -0112_810_8.02,-74.4946994,39.33129484,902 FARRAGUT AVENUE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_810_9,-74.49414954,39.33821887,801 FARRAGUT AVENUE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_811_1,-74.50672954,39.41152963,900 ROUTE 50,HAMILTON TWP,,1980,1,RES1,3001 -0112_811_10,-74.621961,39.433008,5913 NINTH STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_811_11,-74.49851685,39.46635503,5915 NINTH STREET,HAMILTON TWP,17,1907,1,RES1,3001 -0112_811_2,-74.7128645,39.4685655,5922 TENTH STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_811_3,-74.57971033,39.34441475,5920 TENTH STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_811_4,-74.504827,39.33881,5918 TENTH STREET,HAMILTON TWP,17,1930,1,RES1,3001 -0112_811_5,-74.616985,39.4292605,5914 TENTH STREET,HAMILTON TWP,17,1920,1,RES1,3001 -0112_811_6,-74.40586274,39.37897244,5903 NINTH STREET,HAMILTON TWP,17,1991,1,RES1,3001 -0112_811_7,-74.4489138,39.37334239,5907 NINTH STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_811_8,-74.7191825,39.454174,5909 NINTH STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_811_9,-74.6010623,39.40909845,5911 NINTH STREET,HAMILTON TWP,17,1911,1,RES1,3001 -0112_812_1,-74.464845,39.356741,1000 ROUTE 50,HAMILTON TWP,17,1960,1,RES3A,3001 -0112_812_2,-74.59213082,39.37091418,1010 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_812_3.01,-74.65262095,39.53493132,5917 TENTH STREET,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_812_3.02,-74.57197974,39.41335798,5913 TENTH STREET,HAMILTON TWP,17,1935,1,RES1,3001 -0112_813_1,-74.4819265,39.349899,1100 ROUTE 50,HAMILTON TWP,,1966,1,RES1,3001 -0112_813_3,-74.49936966,39.33732754,1110 ROUTE 50,HAMILTON TWP,17,1930,1,GOV1,3004 -0112_813_5,-74.680767,39.444613,1114 ROUTE 50,HAMILTON TWP,17,1960,1,RES1,3001 -0112_813_6,-74.384101,39.394923,1120 ROUTE 50,HAMILTON TWP,17,1960,1,RES1,3001 -0112_814_1,-74.37997992,39.39836745,800 FARRAGUT AVENUE,HAMILTON TWP,,1951,1,RES1,3001 -0112_814_2,-74.58686385,39.43192631,810 FARRAGUT AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_826_26,-74.55195102,39.5052666,1307 OLD EGG HARBOR ROAD,HAMILTON TWP,17,2002,1,RES1,3001 -0112_826_26.01,-74.866436,39.490496,1305 OLD EGG HARBOR ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_826_26.02,-74.764834,39.3149415,1301 OLD EGG HARBOR ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_827_47,-74.55216361,39.37901832,1311 OLD EGG HARBOR ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_829_1,-74.92554357,39.48752679,5907 SWEET GUM LANE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_829_2,-74.55226767,39.35992435,5908 BUTTERCUP LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_829_3,-74.62066612,39.43135569,5906 BUTTERCUP LANE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_829_4,-74.60091637,39.42030769,5904 BUTTERCUP LANE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_829_5,-74.9410275,39.515301,1523 PINEHURST DRIVE,HAMILTON TWP,16,1984,1,RES1,3001 -0112_829_6,-74.38886037,39.39071038,1521 PINEHURST DRIVE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_829_7,-74.57575748,39.33750367,5905 SWEET GUM LANE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_830_1,-74.5756501,39.43030017,1524 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_830_10,-74.60095232,39.42179991,5904 COLONY DRIVE,HAMILTON TWP,17,1960,1,RES1,3002 -0112_830_11,-74.5086025,39.493619,5902 COLONY DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_830_12,-74.946952,39.4964745,1527 PINEHURST DRIVE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_830_13,-74.52144222,39.44293142,1525 PINEHURST DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_830_14,-74.69840299,39.63793232,5905 BUTTERCUP LANE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_830_16,-74.50034214,39.41398281,5909 BUTTERCUP LANE,HAMILTON TWP,17,1960,1,GOV1,3004 -0112_830_2,-74.8921645,39.5258025,1526 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_830_3,-74.459205,39.3515305,1528 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1975,1,AGR1,3001 -0112_830_4,-74.9316425,39.4957805,1530 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1981,1,RES1,3001 -0112_830_5,-74.69737224,39.48749833,5934 MULBERRY DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_830_6,-74.813677,39.429998,5932 MULBERRY DRIVE,HAMILTON TWP,17,2005,1,RES1,3001 -0112_830_7,-74.64019235,39.36361566,5930 MULBERRY DRIVE,HAMILTON TWP,17,1960,1,GOV1,3004 -0112_830_8,-74.83737636,39.56357156,5908 COLONY DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_830_9,-74.46513828,39.53582393,5906 COLONY DRIVE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_831_1,-74.62498298,39.39304483,5928 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_10,-74.56268281,39.41626488,5910 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_11,-74.7406575,39.559932,5908 MULBERRY DRIVE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_831_12,-74.62581165,39.50784845,5906 MULBERRY DRIVE,HAMILTON TWP,16,1957,1,RES1,3001 -0112_831_13,-74.5909865,39.4007905,5904 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_14,-74.51591796,39.39853784,5906 BERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_15,-74.8169995,39.386103,5904 BERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_16,-74.51429441,39.40325816,1559 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_17,-74.5789135,39.343925,1557 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_18,-74.60921617,39.3426625,1555 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_19,-74.50725915,39.44682446,1553 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_2,-74.58670114,39.32088842,5926 MULBERRY DRIVE,HAMILTON TWP,16,1951,1,RES1,3001 -0112_831_20,-74.46319765,39.49642863,1551 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_21,-74.6467015,39.3774265,1549 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_22,-74.85669616,39.56375898,1547 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_23,-74.48342268,39.34617159,1545 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_24,-74.35868535,39.41202295,1543 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_25,-74.60135732,39.31584148,1541 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_26,-74.502259,39.4440505,1539 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_27,-74.45400217,39.35347293,1537 PINEHURST DRIVE,HAMILTON TWP,16,1954,1,RES1,3001 -0112_831_28,-74.48286367,39.339305,1535 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_29,-74.8019775,39.373267,1533 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_3,-74.8142705,39.646292,5924 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_30,-74.50975684,39.33173303,1531 PINEHURST DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_31,-74.52841249,39.38322167,5905 COLONY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_32,-74.36149808,39.41034039,5907 COLONY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_4,-74.88369157,39.48484517,5922 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_5,-74.52183367,39.40193804,5920 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_6,-74.57681134,39.42386801,5918 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_7,-74.42913337,39.35623398,5916 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_8,-74.65274,39.517451,5914 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_831_9,-74.38406417,39.39593281,5912 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_1,-74.6375795,39.4024005,5935 MULBERRY DRIVE,HAMILTON TWP,17,1962,1,GOV1,3004 -0112_832_10,-74.485303,39.434342,5916 MAPLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_11,-74.92945537,39.50794309,5918 MAPLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_12,-74.50250441,39.41282319,5920 MAPLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_13,-74.50616748,39.48110971,5922 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_832_14,-74.73747046,39.55189174,5906 SOMERSET DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_15,-74.87473124,39.4569191,5904 SOMERSET DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_16,-74.6038935,39.326202,5910 SOMERSET DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_17,-74.79132241,39.62719994,5908 BERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_18,-74.68657414,39.65387634,5905 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_19,-74.50605441,39.45959981,5907 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_2,-74.49171294,39.46086632,1536 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_20,-74.4622515,39.348829,5909 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_21,-74.5080945,39.32997,5911 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_22,-74.497599,39.334086,5913 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_23,-74.5206555,39.319086,5915 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_24,-74.56927998,39.50088267,5917 MULBERRY DRIVE,HAMILTON TWP,16,1955,1,RES1,3001 -0112_832_25,-74.45060663,39.37263781,5919 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_26,-74.78856834,39.61660657,5921 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_27,-74.6334835,39.3595865,5923 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,GOV1,3004 -0112_832_28,-74.51834583,39.32253751,5925 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,GOV1,3004 -0112_832_29,-74.51034476,39.32941933,5927 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_3,-74.4627006,39.49223523,1538 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_30,-74.92569816,39.51053624,5929 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_31,-74.45163781,39.49704574,5931 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,GOV1,3004 -0112_832_32,-74.4681452,39.49257391,5933 MULBERRY DRIVE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_832_4,-74.5659242,39.5417532,5904 MAPLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_5,-74.63524991,39.43006394,5906 MAPLE DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_832_6,-74.63583595,39.43013806,5908 MAPLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_7,-74.68658345,39.41423702,5910 MAPLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_8,-74.634571,39.421858,5912 MAPLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_832_9,-74.544346,39.379551,5914 MAPLE DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_833_1,-74.40612604,39.37890207,1540 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_10,-74.6342253,39.42147992,5917 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_11,-74.64014093,39.32819442,5915 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_12,-74.50534488,39.33543483,5913 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_13,-74.52726489,39.39765534,5911 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_14,-74.86253719,39.57284251,5909 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_15,-74.47243953,39.49354054,5907 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_16,-74.62973694,39.35510028,5905 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_2,-74.84634884,39.37854049,1542 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_3,-74.3652665,39.408792,1544 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_4,-74.6426145,39.5299625,1546 BROOK COURT,HAMILTON TWP,17,1984,1,GOV1,3004 -0112_833_5,-74.70994542,39.43008847,1548 BROOK COURT,HAMILTON TWP,17,1989,1,RES1,3001 -0112_833_6,-74.54948467,39.36130351,1550 BROOK COURT,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_7,-74.60176742,39.49943488,1552 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_833_8,-74.81657379,39.65618559,1554 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1984,1,GOV1,3004 -0112_833_9,-74.59215758,39.31151234,5919 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_834_1,-74.502635,39.4321335,1556 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_834_10,-74.64630844,39.35294874,5926 CEDARCROFT DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_834_11,-74.7726339,39.62186224,5903 SOMERSET DRIVE,HAMILTON TWP,17,1974,1,RES1,3001 -0112_834_12,-74.53039499,39.38413864,5905 SOMERSET DRIVE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_834_13,-74.36708064,39.41863849,5907 SOMERSET DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_834_14,-74.65077034,39.62598693,5924 MAPLE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_834_15,-74.57376332,39.41037448,5926 MAPLE DRIVE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_834_16,-74.92619835,39.52016605,5928 MAPLE DRIVE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_834_17,-74.57282212,39.42762235,5930 MAPLE DRIVE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_834_2,-74.5518065,39.478649,1558 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_834_3,-74.78703956,39.63805784,5940 CEDARCROFT DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_834_4,-74.566572,39.5095325,5938 CEDARCROFT DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_834_5,-74.64361756,39.53340981,5936 CEDARCROFT DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_834_6,-74.73077682,39.45320808,5934 CEDARCROFT DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_834_7,-74.57351034,39.3652233,5932 CEDARCROFT DRIVE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_834_8,-74.67834905,39.45492492,5930 CEDARCROFT DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_834_9,-74.79216145,39.65042285,5928 CEDARCROFT DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_835_1,-74.55753468,39.47034738,1568 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_835_10,-74.53113635,39.38803281,1711 BRANCH DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_835_11,-74.3664415,39.4164715,1709 BRANCH DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_835_12,-74.3797555,39.417035,1707 BRANCH DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_835_13,-74.4976975,39.333882,1705 BRANCH DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_835_2,-74.8810015,39.491365,5934 CLOVERLEAF DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_835_3,-74.91233132,39.51106598,5932 CLOVERLEAF DRIVE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_835_4,-74.62328009,39.43393474,5930 CLOVERLEAF DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_835_5,-74.45903,39.352162,5928 CLOVERLEAF DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_835_6,-74.5543635,39.470425,5926 CLOVERLEAF DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_835_7,-74.4185735,39.3676995,5924 CLOVERLEAF DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_835_8,-74.54487302,39.37752983,1715 BRANCH DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_835_9,-74.75843882,39.6616715,1713 BRANCH DRIVE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_836_1,-74.7634315,39.635721,1702 BRANCH DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_836_2,-74.63913879,39.42755783,1704 BRANCH DRIVE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_836_3,-74.449576,39.370781,1706 BRANCH DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_836_4,-74.940781,39.545514,1708 BRANCH DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_836_5,-74.80264581,39.63407468,1710 BRANCH DRIVE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_836_6,-74.49299,39.3388795,1712 BRANCH DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_836_7,-74.4955495,39.432982,1714 BRANCH DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_836_9,-74.5810912,39.40551944,1564 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_837_1,-74.7587135,39.4298345,1702 CANDLEWOOD DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_10,-74.58389719,39.41340556,5928 BERRY DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_11,-74.57483837,39.53374931,5926 BERRY DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_12,-74.57517233,39.35040979,5924 BERRY DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_13,-74.5936625,39.313978,5922 BERRY DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_837_14,-74.65725255,39.39708818,5920 BERRY DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_15,-74.5325825,39.388619,5918 BERRY DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_16,-74.52345848,39.31539222,5916 BERRY DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_17,-74.47449787,39.34303115,5925 CEDARCROFT DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_2,-74.48861683,39.49791922,1704 CANDLEWOOD DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_3,-74.598747,39.378562,1706 CANDLEWOOD DRIVE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_837_4,-74.61158316,39.51159804,1708 CANDLEWOOD DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_5,-74.665201,39.4625545,1710 CANDLEWOOD DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_6,-74.50510014,39.4067554,1712 CANDLEWOOD DRIVE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_837_7,-74.559778,39.516377,1714 CANDLEWOOD DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_837_8,-74.8130405,39.5308065,5908 ELMHURST DRIVE,HAMILTON TWP,17,1985,1,RES3A,3001 -0112_837_9,-74.596771,39.3123695,5906 ELMHURST DRIVE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_838_1,-74.89212,39.4782265,5919 BERRY DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_838_10,-74.4384615,39.366555,5919 CEDARCROFT DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_838_2,-74.37077334,39.40747499,5921 BERRY DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_838_3,-74.6369075,39.365939,5923 BERRY DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_838_4,-74.824489,39.570843,5925 BERRY DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_838_5,-74.37361743,39.41736265,5927 BERRY DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_838_6,-74.6044846,39.36982207,5929 BERRY DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_838_7,-74.54626407,39.38750285,5913 CEDARCROFT DRIVE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_838_8,-74.4863335,39.4960555,5915 CEDARCROFT DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_838_9,-74.51859693,39.4150167,5917 CEDARCROFT DRIVE,HAMILTON TWP,17,1983,1,GOV1,3004 -0112_839_1,-74.59356484,39.3187962,5907 ELMHURST DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_839_2,-74.57319137,39.50116542,1804 POND AVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_839_3,-74.61640559,39.39369392,5907 CEDARCROFT DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_839_4,-74.36412281,39.41848025,5909 CEDARCROFT DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_839_5,-74.50209889,39.50269183,5911 CEDARCROFT DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_839_6,-74.390276,39.390175,5905 ELMHURST DRIVE,HAMILTON TWP,17,1983,1,RES1,3001 -0112_840_1,-74.49353411,39.43153573,5924 CEDARCROFT DRIVE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_840_10,-74.4630495,39.466923,5903 BERRY DRIVE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_840_11,-74.82400243,39.49828722,5905 BERRY DRIVE,HAMILTON TWP,17,1970,1,RES1,3001 -0112_840_12,-74.60995353,39.47316469,5907 BERRY DRIVE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_840_13,-74.43286476,39.49345594,5909 BERRY DRIVE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_840_14,-74.49704007,39.33426616,5911 BERRY DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_840_15,-74.49715322,39.44964614,5913 BERRY DRIVE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_840_16,-74.62187479,39.42171666,5915 BERRY DRIVE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_840_2,-74.62225921,39.53050269,5914 VINE DRIVE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_840_3,-74.54260322,39.4589226,5912 VINE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_840_4,-74.5845975,39.4001755,5910 VINE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_840_5,-74.79075532,39.59566566,5908 VINE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_840_6,-74.50870695,39.45793716,5906 VINE DRIVE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_840_7,-74.58859016,39.40547405,5904 VINE DRIVE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_840_8,-74.8170485,39.3806205,5902 VINE DRIVE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_840_9,-74.62665103,39.43811528,1563 PINEHURST DRIVE,HAMILTON TWP,17,1984,1,GOV1,3004 -0112_841_1,-74.47008833,39.49789535,5920 CEDARCROFT DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_841_10,-74.9817495,39.51249,5905 VINE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_841_11,-74.58877475,39.31796444,5907 VINE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_841_12,-74.94524074,39.49876521,5909 VINE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_841_13,-74.52101516,39.31661146,5911 VINE DRIVE,HAMILTON TWP,17,1984,1,GOV1,3004 -0112_841_14,-74.48309816,39.47950348,5913 VINE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_841_2,-74.65363166,39.52649798,5918 CEDARCROFT DRIVE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_841_3,-74.4420365,39.358712,5912 REDWOOD DRIVE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_841_4,-74.50441939,39.33094284,5910 REDWOOD DRIVE,HAMILTON TWP,17,1977,1,RES1,3004 -0112_841_5,-74.3879875,39.391276,5908 REDWOOD DRIVE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_841_6,-74.49872266,39.46811847,5906 REDWOOD DRIVE,HAMILTON TWP,17,1977,1,RES1,3001 -0112_841_7,-74.57261479,39.36248543,5904 REDWOOD DRIVE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_841_8,-74.566241,39.475308,5902 REDWOOD DRIVE,HAMILTON TWP,17,1972,1,RES1,3001 -0112_841_9,-74.60456867,39.345704,5903 VINE DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_1,-74.53227879,39.4502237,5922 CLOVERLEAF DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_842_10,-74.54935283,39.36970099,5916 FIR LANE,HAMILTON TWP,17,1983,1,GOV1,3004 -0112_842_11,-74.53774323,39.46934057,5914 FIR LANE,HAMILTON TWP,17,1984,1,GOV1,3004 -0112_842_12,-74.78077117,39.6222365,5912 FIR LANE,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_842_13,-74.3967225,39.389161,5910 FIR LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_842_14,-74.867627,39.4535125,5908 FIR LANE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_842_15,-74.60709248,39.32720733,5906 FIR LANE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_16,-74.8106675,39.6429985,5904 FIR LANE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_842_17,-74.73550405,39.45152682,5902 FIR LANE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_842_19,-74.56526766,39.51318378,1589 PINEHURST DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_2,-74.52441906,39.39785731,5920 CLOVERLEAF DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_20,-74.50180768,39.49596568,1587 PINEHURST DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_842_21,-74.46173545,39.34978966,1585 PINEHURST DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_842_22,-74.53981233,39.38052199,1583 PINEHURST DRIVE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_842_23,-74.3760055,39.415969,1581 PINEHURST DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_24,-74.4622,39.359371,1579 PINEHURST DRIVE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_842_25,-74.75555126,39.35179338,1577 PINEHURST DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_842_27,-74.76072515,39.43118142,5910 CEDARCROFT DRIVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_842_28,-74.4572885,39.3500975,5908 CEDARCROFT DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_842_29,-74.61103641,39.32202701,5906 CEDARCROFT DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_842_3,-74.45193194,39.35188818,5918 CLOVERLEAF DRIVE,HAMILTON TWP,17,1966,1,RES1,3001 -0112_842_30,-74.385068,39.3941535,5904 CEDARCROFT DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_31,-74.61574366,39.31958895,1805 POND AVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_32,-74.8169735,39.6378465,1803 POND AVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_34,-74.50053369,39.48773115,5913 ELMHURST DRIVE,HAMILTON TWP,17,1964,1,GOV1,3004 -0112_842_35,-74.94102313,39.54480018,5915 ELMHURST DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_842_4,-74.62831183,39.44590839,5916 CLOVERLEAF DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_842_5.01,-74.52629483,39.38354274,5914 CLOVERLEAF DRIVE,HAMILTON TWP,17,1962,1,RES1,3001 -0112_842_5.02,-74.61876542,39.43192255,5912 CLOVERLEAF DRIVE,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_842_6,-74.9733545,39.5106485,5910 CLOVERLEAF DRIVE,HAMILTON TWP,17,1954,1,GOV1,3004 -0112_842_7.01,-74.63349255,39.51860885,5906 CLOVERLEAF DRIVE,HAMILTON TWP,17,1956,1,RES1,3001 -0112_842_7.02,-74.65354,39.4080935,5908 CLOVERLEAF DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_842_8,-74.365861,39.412476,5904 CLOVERLEAF DRIVE,HAMILTON TWP,17,1950,1,GOV1,3004 -0112_843_1,-74.61671961,39.31898035,BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_844_1,-74.522143,39.317835,BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_845_1,-74.8763116,39.59116525,2101 ROUTE 50,HAMILTON TWP,17,1997,1,RES1,3001 -0112_845_10,-74.6617465,39.443933,2205 ROUTE 50,HAMILTON TWP,17,1980,1,RES1,3001 -0112_845_11,-74.517988,39.3183215,2201 ROUTE 50,HAMILTON TWP,16,1932,1,GOV1,3004 -0112_845_12,-74.8261201,39.53930972,2209 ROUTE 50,HAMILTON TWP,17,1964,1,RES1,3001 -0112_845_13,-74.895185,39.4829115,2213 ROUTE 50,HAMILTON TWP,16,1932,1,RES1,3001 -0112_845_14,-74.7213725,39.579634,2221 ROUTE 50,HAMILTON TWP,16,1955,1,RES1,3001 -0112_845_15,-74.46498855,39.35755568,2231 ROUTE 50,HAMILTON TWP,17,1991,1,RES1,3001 -0112_845_16,-74.61734207,39.62105779,2239 ROUTE 50,HAMILTON TWP,16,1946,1,RES1,3001 -0112_845_17,-74.48422815,39.33921891,2245 ROUTE 50,HAMILTON TWP,17,1928,1,GOV1,3004 -0112_845_18,-74.45673695,39.4750759,2251 ROUTE 50,HAMILTON TWP,17,1972,1,RES1,3001 -0112_845_2,-74.58004719,39.33138802,2139 ROUTE 50,HAMILTON TWP,17,1958,1,RES1,3001 -0112_845_20,-74.73404472,39.4365873,6032 BIRCH STREET,HAMILTON TWP,16,1900,1,RES1,3001 -0112_845_21,-74.5622336,39.39393964,6062 BIRCH STREET,HAMILTON TWP,17,1955,1,RES1,3001 -0112_845_22,-74.45062382,39.35355505,6080 BIRCH STREET,HAMILTON TWP,16,1954,1,RES1,3001 -0112_845_3,-74.56214868,39.39952855,2141 ROUTE 50,HAMILTON TWP,17,1976,1,RES1,3001 -0112_845_4,-74.7550222,39.43002779,2145 ROUTE 50,HAMILTON TWP,17,1964,1,GOV1,3004 -0112_845_5,-74.5228727,39.46927067,2151 ROUTE 50,HAMILTON TWP,17,1950,2,RES1,3001 -0112_845_8,-74.546601,39.3851135,2189 ROUTE 50,HAMILTON TWP,17,2003,1,RES1,3001 -0112_845_9,-74.54688273,39.36843565,2195 ROUTE 50,HAMILTON TWP,17,1968,1,RES1,3001 -0112_846_10,-74.70115524,39.58582317,6059 BIRCH STREET,HAMILTON TWP,17,1968,1,RES1,3001 -0112_846_11.02,-74.92413396,39.52273632,6075 BIRCH STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_846_11.03,-74.85673474,39.43902865,6079 BIRCH STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_846_12,-74.490153,39.335398,6085 BIRCH STREET,HAMILTON TWP,17,1937,1,RES1,3001 -0112_846_14,-74.49888633,39.33464351,6093 BIRCH STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_846_15,-74.6288975,39.39209,6095 BIRCH STREET,HAMILTON TWP,16,1948,1,RES1,3001 -0112_846_2.01,-74.8537035,39.6095585,6096 PINE STREET,HAMILTON TWP,17,1984,1,RES1,3001 -0112_846_2.02,-74.4679365,39.4955135,6088 PINE STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_846_3,-74.486589,39.494307,6080 PINE STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_846_5,-74.8108575,39.651258,2377 COLUMBIA ROAD,HAMILTON TWP,17,1962,1,GOV1,3004 -0112_846_7,-74.85987609,39.59445842,2335 COLUMBIA ROAD,HAMILTON TWP,17,1978,1,RES1,3001 -0112_846_8,-74.6220005,39.365641,2323 COLUMBIA ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_846_9,-74.36681261,39.40680017,2315 COLUMBIA ROAD,HAMILTON TWP,17,1976,1,RES1,3001 -0112_847_1.01,-74.56893443,39.3620428,2465 COLUMBIA ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_847_1.02,-74.60554243,39.31503535,6097 PINE STREET,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_847_3,-74.51943276,39.40996656,6089 PINE STREET,HAMILTON TWP,17,1974,1,RES1,3001 -0112_847_5,-74.64865531,39.43235945,2417 COLUMBIA ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_848_1,-74.57571768,39.33683451,2301 ROUTE 50,HAMILTON TWP,16,1955,1,RES1,3001 -0112_848_10,-74.49567994,39.32890383,2378 COLUMBIA ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_848_3,-74.49973013,39.44662735,2312 COLUMBIA ROAD,HAMILTON TWP,17,1972,1,RES1,3001 -0112_848_4,-74.51510442,39.32255032,2320 COLUMBIA ROAD,HAMILTON TWP,17,1968,1,RES1,3001 -0112_848_5,-74.576099,39.480265,2313 ROUTE 50,HAMILTON TWP,16,1940,1,RES1,3004 -0112_848_6.01,-74.9466485,39.494484,2340 COLUMBIA ROAD,HAMILTON TWP,17,1978,1,RES1,3001 -0112_848_7,-74.4813755,39.4330645,2350 COLUMBIA ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_848_8.01,-74.74169155,39.49234985,2357 ROUTE 50,HAMILTON TWP,16,1900,1,RES1,3001 -0112_848_8.02,-74.60773,39.325016,2358 COLUMBIA ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_848_9,-74.55956442,39.41555233,6050 PINE STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_849_10,-74.77579409,39.63878876,2475 ROUTE 50,HAMILTON TWP,16,1950,1,RES1,3001 -0112_849_11,-74.64347298,39.62498534,ROUTE 50,HAMILTON TWP,,0,1,RES1,3001 -0112_849_12,-74.63257577,39.36121005,2459 ROUTE 50,HAMILTON TWP,17,1988,1,RES1,3001 -0112_849_13,-74.371189,39.4006245,2441 ROUTE 50,HAMILTON TWP,17,1993,1,RES1,3001 -0112_849_13.01,-74.57560065,39.42930191,2445 ROUTE 50,HAMILTON TWP,17,1993,1,RES1,3001 -0112_849_14,-74.642394,39.411512,2431 ROUTE 50,HAMILTON TWP,17,1993,1,RES1,3001 -0112_849_2,-74.6247655,39.358461,2420 COLUMBIA ROAD,HAMILTON TWP,17,2001,1,RES1,3001 -0112_849_4,-74.4879407,39.49342516,2450 COLUMBIA ROAD,HAMILTON TWP,17,1991,1,RES1,3001 -0112_849_6,-74.4898545,39.420848,6142 OAK STREET,HAMILTON TWP,17,1950,1,RES1,3001 -0112_849_7,-74.7601478,39.43140112,6130 OAK STREET,HAMILTON TWP,17,1996,1,RES3A,3001 -0112_849_8.01,-74.39552949,39.38710417,6120 OAK STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_849_8.02,-74.89928489,39.50354533,6108 OAK STREET,HAMILTON TWP,16,1950,1,RES1,3001 -0112_849_9,-74.40107344,39.3896362,6054 OAK STREET,HAMILTON TWP,,1950,1,RES1,3001 -0112_850_1.02,-74.49639674,39.4527956,5899 APPLE STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_850_1.03,-74.71434344,39.47122371,5885 APPLE STREET,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_850_1.04,-74.49111981,39.33319417,5877 APPLE STREET,HAMILTON TWP,17,1991,1,RES1,3001 -0112_850_1.05,-74.74774956,39.44532549,2120 ROUTE 50,HAMILTON TWP,17,1985,1,GOV1,3004 -0112_850_10.01,-74.78583785,39.61351704,5848 CEDAR STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_850_10.02,-74.8185755,39.533355,5842 CEDAR STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_850_11,-74.46908952,39.49072773,5828 CEDAR STREET,HAMILTON TWP,,1981,1,RES1,3001 -0112_850_13,-74.60365365,39.34604321,5800 CEDAR STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_850_17,-74.93486732,39.52243482,5837 APPLE STREET,HAMILTON TWP,,1979,1,RES1,3001 -0112_850_2,-74.511565,39.4287165,5869 APPLE STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_850_3,-74.633355,39.418419,5859 APPLE STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_850_5,-74.51149939,39.32351502,2138 ROUTE 50,HAMILTON TWP,17,1996,1,RES1,3001 -0112_850_6,-74.63882714,39.62164827,2144 ROUTE 50,HAMILTON TWP,16,1973,1,RES1,3001 -0112_850_7.01,-74.68049268,39.56306756,2152 ROUTE 50,HAMILTON TWP,17,1999,1,RES1,3001 -0112_850_7.02,-74.35941833,39.41290901,2164 ROUTE 50,HAMILTON TWP,17,1957,1,RES1,3001 -0112_851_1,-74.54740539,39.37178937,5899 CEDAR STREET,HAMILTON TWP,17,1971,1,RES1,3001 -0112_851_2,-74.56461704,39.41827719,5893 CEDAR STREET,HAMILTON TWP,17,2018,1,RES1,3001 -0112_851_21,-74.83921928,39.43296959,2220 ROUTE 50,HAMILTON TWP,17,1996,1,IND2,3002 -0112_851_22,-74.68889118,39.35881498,2240 ROUTE 50,HAMILTON TWP,17,1900,1,RES1,3001 -0112_851_23,-74.7982445,39.642812,2244 ROUTE 50,HAMILTON TWP,16,1920,1,RES1,3001 -0112_851_24,-74.47533315,39.48123345,2246 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_851_25,-74.62149945,39.36778432,2242 ROUTE 50,HAMILTON TWP,17,1950,1,RES1,3001 -0112_851_27,-74.55214345,39.46834022,2254 ROUTE 50,HAMILTON TWP,17,1987,1,RES1,3001 -0112_851_29.01,-74.52831294,39.44326834,5846 BIRCH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_851_29.02,-74.48392218,39.34681595,5834 BIRCH STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_851_3,-74.49597,39.4938385,5879 CEDAR STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_851_30.01,-74.80910705,39.63021016,5824 BIRCH STREET,HAMILTON TWP,17,1946,1,RES1,3001 -0112_851_30.02,-74.880732,39.5916055,5816 BIRCH STREET,HAMILTON TWP,17,1981,1,RES1,3001 -0112_851_31,-74.60055431,39.43739476,5800 BIRCH STREET,HAMILTON TWP,17,1999,1,GOV1,3004 -0112_851_32,-74.77050049,39.66205333,5801 CEDAR STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_851_33,-74.95047334,39.53392698,5809 CEDAR STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_851_34,-74.52711877,39.46564017,5825 CEDAR STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_851_35.01,-74.5059699,39.40891069,5833 CEDAR STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_851_36.01,-74.64704059,39.42107431,5841 CEDAR STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_851_36.02,-74.5708175,39.366252,5849 CEDAR STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_851_4,-74.64418241,39.53025714,5861 CEDAR STREET,HAMILTON TWP,17,1950,1,RES1,3001 -0112_851_5,-74.4908185,39.449736,2216 ROUTE 50,HAMILTON TWP,16,1940,1,RES1,3001 -0112_851_6,-74.57328222,39.37623201,2222 ROUTE 50,HAMILTON TWP,17,1940,2,RES1,3001 -0112_852_1.01,-74.49086678,39.43460127,2304 ROUTE 50,HAMILTON TWP,,1955,1,RES1,3001 -0112_852_1.02,-74.53145809,39.52471236,5877 BIRCH STREET,HAMILTON TWP,17,1993,1,GOV1,3004 -0112_852_1.03,-74.43791757,39.37161841,5865 BIRCH STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_852_10,-74.7159235,39.4646045,5801 BIRCH STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_852_11,-74.59376928,39.363121,5815 BIRCH STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_852_12,-74.37273065,39.41146774,5821 BIRCH STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_852_13,-74.628983,39.423702,5827 BIRCH STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_852_14,-74.48949663,39.43456413,5833 BIRCH STREET,HAMILTON TWP,17,1958,1,RES1,3001 -0112_852_15,-74.57068802,39.34253441,5845 BIRCH STREET,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_852_2.01,-74.37100616,39.40068643,2314 ROUTE 50,HAMILTON TWP,17,1987,1,RES1,3001 -0112_852_3,-74.63357262,39.41540912,2328 ROUTE 50,HAMILTON TWP,17,1999,1,RES1,3001 -0112_852_5,-74.57868221,39.34304401,2352 ROUTE 50,HAMILTON TWP,17,2007,1,RES1,3001 -0112_852_6.01,-74.5558393,39.4056259,2362 ROUTE 50,HAMILTON TWP,16,1953,1,RES1,3001 -0112_852_6.02,-74.52829641,39.52527122,5864 PINE STREET,HAMILTON TWP,17,1993,1,RES1,3001 -0112_852_7.01,-74.69904906,39.43173274,5854 PINE STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_852_7.02,-74.78398103,39.64061084,5846 PINE STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_852_7.03,-74.61821101,39.55451294,5836 PINE STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_852_9,-74.65222985,39.40053114,PINE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_853_1,-74.379383,39.4012845,5893 PINE STREET,HAMILTON TWP,17,1973,1,RES1,3001 -0112_853_10,-74.49898114,39.45502345,2448 ROUTE 50,HAMILTON TWP,17,1995,1,RES1,3001 -0112_853_12.01,-74.50862915,39.41901979,2468 ROUTE 50,HAMILTON TWP,17,1960,1,GOV1,3004 -0112_853_12.02,-74.70851527,39.4481192,5930 OAK STREET,HAMILTON TWP,17,1995,1,RES1,3001 -0112_853_13.01,-74.52995418,39.39518984,5852 OAK STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_853_13.02,-74.64664363,39.41156768,5844 OAK STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_853_13.03,-74.5686235,39.342673,5826 OAK STREET,HAMILTON TWP,17,1984,1,COM1,3004 -0112_853_13.04,-74.62579695,39.3848287,5818 OAK STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_853_13.05,-74.51875696,39.40324572,5812 OAK STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_853_13.06,-74.55044382,39.37223995,5804 OAK STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_853_13.07,-74.45934792,39.35013732,5834 OAK STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_853_15,-74.52821618,39.45861465,5825 PINE STREET,HAMILTON TWP,17,2007,1,RES1,3001 -0112_853_16,-74.59883634,39.52297203,5833 PINE STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_853_17,-74.66888212,39.38667226,5845 PINE STREET,HAMILTON TWP,17,1997,1,RES2,3005 -0112_853_2,-74.51784267,39.31932897,5869 PINE STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_853_3,-74.602718,39.313273,5857 PINE STREET,HAMILTON TWP,17,1974,1,RES1,3001 -0112_853_4,-74.5851535,39.5205465,2412 ROUTE 50,HAMILTON TWP,16,1947,1,RES1,3001 -0112_853_5,-74.55534872,39.3804862,2416 ROUTE 50,HAMILTON TWP,17,1950,1,RES1,3001 -0112_853_6,-74.6104185,39.48681,2420 ROUTE 50,HAMILTON TWP,16,1959,1,RES1,3001 -0112_853_7,-74.78690728,39.63466605,2426 ROUTE 50,HAMILTON TWP,16,1950,1,RES1,3001 -0112_853_8,-74.5949,39.4288655,2436 ROUTE 50,HAMILTON TWP,17,1998,1,RES1,3001 -0112_853_9,-74.78343443,39.43776349,2442 ROUTE 50,HAMILTON TWP,17,1988,1,RES1,3001 -0112_854.02_16,-74.70112996,39.36566509,31 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.02_17,-74.54936378,39.46863544,33 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.02_18,-74.4013015,39.385684,35 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.02_19,-74.53454586,39.39753868,37 DARBY LANE,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854.02_20,-74.51233738,39.32418212,39 DARBY LANE,HAMILTON TWP,16,2006,1,GOV1,3004 -0112_854.02_21,-74.58916777,39.43106305,41 DARBY LANE,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854.02_22,-74.83834293,39.59638131,43 DARBY LANE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_854.02_23,-74.8298375,39.540795,45 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.02_24,-74.86130801,39.59615556,47 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.02_25,-74.83665306,39.59184202,49 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.02_26,-74.534461,39.3889435,51 DARBY LANE,HAMILTON TWP,16,2014,1,RES1,3001 -0112_854.02_27,-74.454813,39.353019,53 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.02_28,-74.76020316,39.43213133,55 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.02_29,-74.6428175,39.361523,57 DARBY LANE,HAMILTON TWP,16,2006,1,GOV1,3004 -0112_854.02_30,-74.47972,39.478668,59 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.03_16,-74.57291368,39.54783386,33 ABINGTON COURT,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854.03_17,-74.372835,39.4157055,31 ABINGTON COURT,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854.03_18,-74.81211141,39.61715757,29 ABINGTON COURT,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854.03_19,-74.56309123,39.35649464,27 ABINGTON COURT,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854.03_20,-74.60653584,39.50068897,25 ABINGTON COURT,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854.03_21,-74.58673771,39.33479532,23 ABINGTON COURT,HAMILTON TWP,16,2009,1,RES1,3001 -0112_854.04_10,-74.83973313,39.59890552,18 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_11,-74.5477165,39.470775,20 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_12,-74.6417275,39.4342165,22 DARBY LANE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_854.04_13,-74.5329641,39.40082632,24 ABINGTON COURT,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_14,-74.6432605,39.3631925,26 ABINGTON COURT,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_15,-74.4758267,39.48039306,28 ABINGTON COURT,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854.04_16,-74.8221077,39.63027553,30 ABINGTON COURT,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_2,-74.64143638,39.37190126,2 DARBY LANE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_854.04_3,-74.58552921,39.37995802,4 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_4,-74.66174053,39.40198227,6 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_5,-74.46422578,39.49390503,8 DARBY LANE,HAMILTON TWP,16,2006,1,GOV1,3004 -0112_854.04_6,-74.81627382,39.38288152,10 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_7,-74.9507046,39.53168502,12 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_8,-74.5079035,39.3229295,14 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854.04_9,-74.6317525,39.416411,16 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854_1,-74.82069326,39.5303391,5875 BLACK HORSE PIKE,HAMILTON TWP,16,1962,1,RES1,3001 -0112_854_10,-74.6102155,39.4881045,5598 BIRCH STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_854_12.02,-74.810208,39.3668975,2350 OSLO AVENUE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_854_12.04,-74.8113101,39.65238054,2352 PINE STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_854_13,-74.6194416,39.37198535,2344 PINE STREET,HAMILTON TWP,17,2005,1,RES1,3001 -0112_854_14,-74.73154336,39.4539019,2340 PINE STREET,HAMILTON TWP,,2018,1,RES1,3001 -0112_854_15,-74.54177428,39.3802857,2336 PINE STREET,HAMILTON TWP,17,2006,1,RES1,3001 -0112_854_19,-74.80719817,39.62837686,2335 PINE STREET,HAMILTON TWP,17,2005,1,RES1,3001 -0112_854_22,-74.523746,39.395446,2406 OSLO AVENUE,HAMILTON TWP,16,1960,1,RES1,3001 -0112_854_23,-74.56424961,39.41588586,2416 OSLO AVENUE,HAMILTON TWP,17,1950,1,COM1,3004 -0112_854_24,-74.47231961,39.48996278,2428 OSLO AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_854_25,-74.530838,39.38484,5596 OAK STREET,HAMILTON TWP,17,1890,1,RES1,3001 -0112_854_25.01,-74.52303121,39.31330719,2440 OSLO AVENUE,HAMILTON TWP,17,1998,1,RES1,3001 -0112_854_26.01,-74.534102,39.387303,5576 OAK STREET,HAMILTON TWP,17,1990,1,RES3A,3001 -0112_854_26.02,-74.52118134,39.40168393,5524 OAK STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_854_26.03,-74.3732165,39.405294,5510 OAK STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_854_27,-74.50371132,39.32468453,5490 OAK STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_854_28,-74.58361692,39.36052536,5478 OAK STREET,HAMILTON TWP,17,2008,1,RES1,3001 -0112_854_33,-74.6055888,39.32451993,CEDAR STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_854_35,-74.49712,39.337154,CEDAR STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_854_38,-74.77985755,39.67078887,5045 BLACK HORSE PIKE,HAMILTON TWP,,1946,1,RES1,3001 -0112_854_4,-74.4766655,39.4841655,5762 CEDAR STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_854_5,-74.51549396,39.38586519,5760 CEDAR STREET,HAMILTON TWP,17,1991,1,RES1,3001 -0112_854_51,-74.645922,39.52436,2425 COLOGNE AVE,HAMILTON TWP,16,1965,1,RES1,3001 -0112_854_53,-74.566855,39.4141665,2501 COLOGNE AVENUE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_854_54,-74.5961665,39.405482,2505 COLOGNE AVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_854_55,-74.5995738,39.43023105,2513 COLOGNE AVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_854_57,-74.6093025,39.440614,2529 COLOGNE AVENUE,HAMILTON TWP,17,1975,1,RES1,3001 -0112_854_59.01,-74.551245,39.3859225,2545 COLOGNE AVE,HAMILTON TWP,16,1928,1,RES1,3001 -0112_854_59.02,-74.65889668,39.63640562,2557 COLOGNE AVE,HAMILTON TWP,17,1960,1,RES1,3001 -0112_854_59.03,-74.55146628,39.56841068,2565 COLOGNE AVENUE,HAMILTON TWP,16,1942,1,RES3A,3001 -0112_854_6,-74.39864251,39.38974896,5752 CEDAR STREET,HAMILTON TWP,18,2005,1,RES1,3001 -0112_854_60,-74.6314795,39.427408,4826 PADDOCK STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_854_66,-74.508925,39.4033235,200 DARBY LANE,HAMILTON TWP,16,2016,1,RES1,3001 -0112_854_67,-74.80535878,39.62263688,198 DARBY LANE,HAMILTON TWP,16,2008,1,RES1,3001 -0112_854_68,-74.724801,39.58908033,196 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854_69,-74.65025881,39.3550077,194 DARBY LANE,HAMILTON TWP,16,2007,1,RES1,3001 -0112_854_70,-74.58704261,39.3379397,192 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3004 -0112_854_71,-74.59677626,39.42775204,190 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854_72,-74.4965995,39.524995,188 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3004 -0112_854_73,-74.684347,39.3918355,186 DARBY LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_854_8,-74.363266,39.4149035,5636 CEDAR STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_855_1,-74.507128,39.4893715,5769 CEDAR STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_855_11,-74.7197935,39.573263,5640 BIRCH STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_855_12,-74.55341629,39.3895502,5628 BIRCH STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_855_21,-74.77105864,39.6080108,5753 CEDAR STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_855_22,-74.53136754,39.38945981,5761 CEDAR STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_855_3,-74.79808204,39.63937381,5780 BIRCH STREET,HAMILTON TWP,17,2005,1,RES1,3001 -0112_855_4.01,-74.80279,39.497699,5776 BIRCH STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_855_4.02,-74.59028486,39.35416,5732 BIRCH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_855_4.03,-74.6436015,39.373638,5744 BIRCH STREET,HAMILTON TWP,17,1968,1,RES1,3001 -0112_855_5,-74.50868191,39.42731317,5716 BIRCH STREET,HAMILTON TWP,17,1950,1,RES1,3001 -0112_855_6,-74.8129785,39.627284,5702 BIRCH STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_855_7,-74.48350104,39.35270389,5694 BIRCH STREET,HAMILTON TWP,17,1963,1,RES1,3001 -0112_855_8.01,-74.5416485,39.4583855,5690 BIRCH STREET,HAMILTON TWP,17,1994,1,RES1,3001 -0112_855_8.02,-74.5846815,39.3277235,5680 BIRCH STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_855_9,-74.59701755,39.34534856,5668 BIRCH STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_856_1.01,-74.53969004,39.37304031,5777 BIRCH STREET,HAMILTON TWP,17,1925,1,RES1,3001 -0112_856_2.02,-74.53546937,39.39726992,5667 BIRCH STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_856_2.03,-74.51047563,39.40944719,5651 BIRCH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_856_2.04,-74.50966997,39.4602766,5643 BIRCH STREET,HAMILTON TWP,17,1991,1,GOV1,3004 -0112_856_2.05,-74.85390503,39.55175635,5717 BIRCH STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_856_2.06,-74.64350924,39.37768074,5703 BIRCH STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_856_3,-74.9244905,39.510926,5761 BIRCH STREET,HAMILTON TWP,17,2002,1,RES1,3001 -0112_856_4,-74.50971917,39.32680449,5753 BIRCH STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_856_5.02,-74.63825726,39.40060174,5733 BIRCH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_856_6,-74.75749192,39.44642328,5685 BIRCH STREET,HAMILTON TWP,17,2002,1,RES3A,3001 -0112_856_7,-74.61372149,39.48616401,5629 BIRCH STREET,HAMILTON TWP,17,2013,1,RES1,3001 -0112_857_10.01,-74.69350327,39.57387024,5692 OAK STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_857_10.02,-74.8115793,39.64214468,5684 OAK STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_857_11,-74.51986549,39.41323867,5600 OAK STREET,HAMILTON TWP,17,2002,1,RES1,3001 -0112_857_12.03,-74.69787433,39.35423341,2401 OSLO AVENUE,HAMILTON TWP,17,1996,1,RES1,3001 -0112_857_2,-74.923483,39.5098935,5788 OAK STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_857_4,-74.4642505,39.547041,5764 OAK STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_857_5,-74.8213055,39.569146,5752 OAK STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_857_6,-74.7966835,39.638194,5744 OAK STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_857_7,-74.50196066,39.330947,5728 OAK STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_857_8,-74.4892055,39.4768025,5712 OAK STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_857_9,-74.647539,39.352093,5704 OAK STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_858_3.01,-74.46544586,39.34424732,6396 PINE STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_858_3.02,-74.8308095,39.386282,6384 PINE STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_859_3,-74.60204268,39.3119184,OAK STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_860_8,-74.4135255,39.371259,CYPRESS STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_860_9,-74.5913623,39.4333866,CYPRESS STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_861_1.01,-74.64550609,39.37521994,6320 PINE STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_861_2.01,-74.47884231,39.44264647,6280 PINE STREET,HAMILTON TWP,17,1991,1,RES1,3001 -0112_861_2.02,-74.50790885,39.46487795,6274 PINE STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_861_2.03,-74.35780266,39.41325852,6286 PINE STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_861_2.04,-74.5349285,39.414853,6294 PINE STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_861_2.05,-74.43756584,39.36633549,6300 PINE STREET,HAMILTON TWP,17,1984,1,RES3A,3001 -0112_861_2.06,-74.50682896,39.40982051,6310 PINE STREET,HAMILTON TWP,17,1993,1,RES1,3001 -0112_861_6,-74.53389343,39.38446335,6256 PINE STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_861_7.02,-74.63519014,39.38503153,PINE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_862_1,-74.6901909,39.48554596,6397 PINE STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_862_10.01,-74.42192005,39.36322876,6226 OAK STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_862_11,-74.4409357,39.3680861,6214 OAK STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_862_14,-74.79736958,39.5342567,6205 PINE STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_862_15.01,-74.60888085,39.32455695,6213 PINE STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_862_15.02,-74.46837922,39.49453008,6209 PINE STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_862_16,-74.37837898,39.39850933,6235 PINE STREET,HAMILTON TWP,17,1900,1,RES1,3001 -0112_862_17,-74.56063704,39.36524815,6243 PINE STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_862_18,-74.49441908,39.46920568,6255 PINE STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_862_19,-74.61458083,39.4293,6265 PINE STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_862_21,-74.48505099,39.34819083,6285 PINE STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_862_22,-74.3662215,39.4116815,6293 PINE STREET,HAMILTON TWP,17,1974,1,RES1,3001 -0112_862_23,-74.49707164,39.51986365,6301 PINE STREET,HAMILTON TWP,17,1973,1,RES1,3001 -0112_862_24,-74.57582743,39.41657135,6311 PINE STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_862_25,-74.57544908,39.48026616,6321 PINE STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_862_26,-74.633953,39.362324,6385 PINE STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_862_9,-74.50768417,39.45912703,6238 OAK STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_863_10,-74.51122134,39.33787906,6214 CYPRESS STREET,HAMILTON TWP,17,1993,1,RES1,3001 -0112_863_11,-74.51578535,39.32601048,2555 COLUMBIA ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_863_12,-74.68264134,39.4138822,6201 OAK STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_863_14,-74.94936426,39.49964187,6221 OAK STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_863_15,-74.69890159,39.42268985,6225 OAK STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_863_16,-74.50755143,39.40690032,6231 OAK STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_863_17,-74.359858,39.4099585,6235 OAK STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_863_18,-74.56998914,39.4805337,6243 OAK STREET,HAMILTON TWP,17,1984,1,RES1,3001 -0112_863_6,-74.5875285,39.33339,6232 CYPRESS STREET,HAMILTON TWP,17,2004,1,RES3A,3001 -0112_863_6.01,-74.41084406,39.38250453,6228 CYPRESS STREET,HAMILTON TWP,17,2008,1,RES1,3001 -0112_863_6.02,-74.604866,39.4763125,6224 CYPRESS STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_863_7,-74.475885,39.4838975,CYPRESS STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_863_9,-74.818977,39.465983,6216 CYPRESS STREET,HAMILTON TWP,17,1995,1,RES1,3001 -0112_864.01_1,-74.7536365,39.453891,1 WHITE HAWK WAY,HAMILTON TWP,17,2005,1,RES1,3001 -0112_864.01_11,-74.4578905,39.3507515,2637 COLUMBIA ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_864.01_2,-74.6054127,39.59230895,3 WHITE HAWK WAY,HAMILTON TWP,17,2016,1,RES1,3001 -0112_864.01_3,-74.71095696,39.47307784,5 WHITE HAWK WAY,HAMILTON TWP,17,2004,1,RES1,3001 -0112_864.01_4,-74.87966262,39.45027477,7 WHITE HAWK WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_864.01_5,-74.38712354,39.39431166,9 WHITE HAWK WAY,HAMILTON TWP,17,2007,1,GOV1,3004 -0112_864.01_6,-74.54589015,39.4366935,6229 CYPRESS STREET,HAMILTON TWP,17,2007,1,RES1,3001 -0112_864.01_7,-74.52551968,39.39565008,6221 CYPRESS STREET,HAMILTON TWP,17,2018,1,COM1,3004 -0112_864_11,-74.8777044,39.60404499,2707 COLUMBIA ROAD,HAMILTON TWP,17,1967,1,RES1,3001 -0112_864_13,-74.55329555,39.46571476,2733 COLUMBIA ROAD,HAMILTON TWP,17,1974,1,RES3A,3001 -0112_864_15,-74.703692,39.63839,6410 HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_864_16,-74.81997682,39.39242253,6404 HOLLY STREET,HAMILTON TWP,16,1956,1,RES1,3001 -0112_864_17,-74.78541967,39.65011901,2765 COLUMBIA ROAD,HAMILTON TWP,17,1988,1,RES3A,3001 -0112_864_18,-74.79719246,39.64354216,2745 COLUMBIA ROAD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_864_8,-74.50401337,39.46645517,2 WHITE HAWK WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_864_8.01,-74.6103955,39.3697495,4 WHITE HAWK WAY,HAMILTON TWP,17,2004,1,RES1,3001 -0112_864_8.02,-74.3802054,39.39409964,6 WHITE HAWK WAY,HAMILTON TWP,17,2005,1,RES1,3001 -0112_864_8.03,-74.79653728,39.63716719,8 LENNI PATH,HAMILTON TWP,17,2005,1,RES1,3001 -0112_864_8.04,-74.60933493,39.39087499,10 LENNI PATH,HAMILTON TWP,17,2005,1,RES1,3001 -0112_864_8.05,-74.6086005,39.31554,12 LENNI PATH,HAMILTON TWP,17,2008,1,RES1,3001 -0112_864_8.06,-74.45187332,39.35391706,14 LENNI PATH,HAMILTON TWP,17,2006,1,RES1,3001 -0112_864_8.07,-74.80032381,39.64790645,16 LENNI PATH,HAMILTON TWP,17,2004,1,RES1,3001 -0112_864_8.08,-74.59656215,39.30940419,18 LENNI PATH,HAMILTON TWP,17,2005,1,RES1,3001 -0112_864_8.09,-74.6226485,39.6078925,20 WHITE HAWK WAY,HAMILTON TWP,17,2004,1,RES1,3001 -0112_865_1,-74.79515155,39.55390337,COLUMBIA ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_865_10,-74.67032123,39.49276786,6064 LAUREL STREET,HAMILTON TWP,17,1972,1,RES1,3001 -0112_865_11,-74.87964745,39.48435869,6032 LAUREL STREET,HAMILTON TWP,16,1920,1,RES3A,3001 -0112_865_12,-74.68954651,39.44872653,2669 ROUTE 50,HAMILTON TWP,16,1997,1,GOV1,3004 -0112_865_13,-74.7835725,39.634293,2657 ROUTE 50,HAMILTON TWP,,1976,1,RES1,3001 -0112_865_14,-74.96161158,39.51261076,2649 ROUTE 50,HAMILTON TWP,,1952,1,RES1,3001 -0112_865_16,-74.4834045,39.336858,6017 ORANGE STREET,HAMILTON TWP,17,2014,1,COM3,3004 -0112_865_17,-74.40319598,39.38101167,6021 ORANGE STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_865_18,-74.5100925,39.326595,6027 ORANGE STREET,HAMILTON TWP,17,1980,1,RES3A,3004 -0112_865_19,-74.68163397,39.44488718,6035 ORANGE STREET,HAMILTON TWP,17,1960,1,GOV1,3004 -0112_865_2,-74.52216182,39.31546242,2540 COLUMBIA ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_865_2.01,-74.617024,39.4207185,2560 COLUMBIA ROAD,HAMILTON TWP,17,1998,1,RES1,3001 -0112_865_2.02,-74.5938605,39.3169505,2570 COLUMBIA ROAD,HAMILTON TWP,15,1960,1,RES1,3001 -0112_865_2.03,-74.527043,39.312567,2600 COLUMBIA ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_865_20,-74.55421145,39.36231767,6101 ORANGE STREET,HAMILTON TWP,16,1955,1,RES1,3001 -0112_865_21.01,-74.83698402,39.60553666,6043 HICKORY STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_865_21.02,-74.56210155,39.35857927,6042 ORANGE STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_865_23,-74.791442,39.616501,6105 HICKORY STREET,HAMILTON TWP,17,2010,1,RES1,3001 -0112_865_25,-74.39093,39.390691,6168 HICKORY STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_865_28,-74.79265011,39.64251903,6108 HICKORY STREET,HAMILTON TWP,16,1950,1,RES1,3001 -0112_865_29,-74.44240957,39.35653368,6052 HICKORY STREET,HAMILTON TWP,16,1950,1,RES1,3001 -0112_865_3,-74.744618,39.5900395,2614 COLUMBIA ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_865_30,-74.62633485,39.37544064,6042 HICKORY STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_865_31,-74.92080574,39.49006951,6041 PEACH STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_865_32,-74.7642225,39.6033835,6050 PEACH STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_865_33,-74.53269819,39.41237155,6036 PEACH STREET,HAMILTON TWP,17,1920,1,RES1,3001 -0112_865_35,-74.63909371,39.42944786,6020 PEACH STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_865_36,-74.52008934,39.32237068,6012 PEACH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_865_37,-74.47617078,39.48466088,6004 PEACH STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_865_38,-74.48273036,39.34086781,2535 ROUTE 50,HAMILTON TWP,17,1920,1,RES1,3001 -0112_865_39,-74.407034,39.378861,2529 ROUTE 50,HAMILTON TWP,17,1902,1,RES1,3001 -0112_865_4,-74.4974025,39.3374655,2622 COLUMBIA ROAD,HAMILTON TWP,17,1977,1,RES1,3001 -0112_865_41,-74.5038025,39.3262755,2523 ROUTE 50,HAMILTON TWP,17,1978,1,RES1,3001 -0112_865_42.01,-74.49443988,39.33371435,2515 ROUTE 50,HAMILTON TWP,17,1900,1,RES1,3001 -0112_865_42.02,-74.60319319,39.41634455,2511 ROUTE 50,HAMILTON TWP,17,1925,2,RES1,3001 -0112_865_43,-74.5653595,39.4146755,6001 OAK STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_865_44,-74.78179587,39.64102168,6109 OAK STREET,HAMILTON TWP,17,1956,1,RES1,3001 -0112_865_45,-74.50835738,39.33596544,6117 OAK STREET,HAMILTON TWP,16,2013,1,RES1,3001 -0112_865_46,-74.9326765,39.5260145,6123 OAK STREET,HAMILTON TWP,17,1984,1,RES1,3001 -0112_865_47.02,-74.495062,39.331754,6133 OAK STREET,HAMILTON TWP,17,1956,1,RES3A,3001 -0112_865_48,-74.51975165,39.39053282,6149 OAK STREET,HAMILTON TWP,17,2017,1,GOV1,3004 -0112_865_5,-74.52072681,39.31723153,2630 COLUMBIA ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_865_7,-74.8690987,39.48983856,6256 LAUREL STREET,HAMILTON TWP,16,1926,1,RES1,3001 -0112_865_8.01,-74.65086926,39.52270915,6228 LAUREL STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_865_8.02,-74.62189776,39.45985489,6200 LAUREL STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_865_8.03,-74.68914195,39.41730844,6174 LAUREL STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_865_8.04,-74.5411745,39.39533,6112 LAUREL STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_865_9,-74.380857,39.3992265,6133 ORANGE STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_866_1,-74.45772011,39.34971068,6033 PEACH STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_866_10,-74.56173918,39.39069888,6013 PEACH STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_866_11,-74.61761326,39.42138901,6021 PEACH STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_866_12,-74.59671482,39.31862048,6029 PEACH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_866_2,-74.50837068,39.32774548,6034 HICKORY STREET,HAMILTON TWP,17,1968,1,RES1,3001 -0112_866_3,-74.84923,39.610963,6028 HICKORY STREET,HAMILTON TWP,17,1974,1,RES1,3001 -0112_866_4,-74.368676,39.40266594,6020 HICKORY STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_866_5,-74.51130222,39.33862833,6012 HICKORY STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_866_6,-74.59766883,39.316746,2583 ROUTE 50,HAMILTON TWP,17,1999,1,RES1,3001 -0112_866_8,-74.55949417,39.42006837,2569 ROUTE 50,HAMILTON TWP,17,1998,1,RES3B,3001 -0112_866_9,-74.3592065,39.4104545,2565 ROUTE 50,HAMILTON TWP,17,1966,1,GOV1,3004 -0112_867_1,-74.50647034,39.43567753,6031 HICKORY STREET,HAMILTON TWP,17,1972,1,RES1,3001 -0112_867_10,-74.75448376,39.43132712,6013 HICKORY STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_867_11,-74.45503099,39.47956907,6021 HICKORY STREET,HAMILTON TWP,16,1940,1,RES1,3001 -0112_867_12,-74.50961178,39.32605713,6027 HICKORY STREET,HAMILTON TWP,17,1972,1,RES1,3001 -0112_867_2,-74.51644568,39.32254677,6030 ORANGE STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_867_3,-74.7627185,39.628719,6026 ORANGE STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_867_4,-74.92672304,39.51883979,6020 ORANGE STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_867_5,-74.726495,39.455727,6014 ORANGE STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_867_6,-74.47270185,39.4906456,6006 ORANGE STREET,HAMILTON TWP,17,1940,1,RES1,3001 -0112_867_7,-74.85192,39.4639615,2615 ROUTE 50,HAMILTON TWP,17,1977,1,RES1,3001 -0112_867_8,-74.52420283,39.3931795,2609 ROUTE 50,HAMILTON TWP,17,1977,1,RES1,3001 -0112_867_9,-74.596152,39.383622,2605 ROUTE 50,HAMILTON TWP,17,1975,1,RES1,3001 -0112_868_10.01,-74.49701133,39.33470201,6316 HOLLY STREET,HAMILTON TWP,17,1965,1,RES1,3001 -0112_868_10.02,-74.506168,39.4309465,6308 HOLLY STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_868_12,-74.556696,39.471666,6268 HOLLY STREET,HAMILTON TWP,15,1950,1,RES1,3001 -0112_868_13.01,-74.797493,39.53531746,6248 HOLLY STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_868_13.02,-74.70782198,39.42267924,6240 HOLLY STREET,HAMILTON TWP,16,1955,1,RES1,3001 -0112_868_13.03,-74.48391186,39.33696116,6224 HOLLY STREET,HAMILTON TWP,17,2000,1,RES1,3001 -0112_868_14,-74.48970898,39.33924928,6208 HOLLY STREET,HAMILTON TWP,17,2001,1,RES1,3001 -0112_868_15,-74.71416236,39.4695858,6221 LAUREL STREET,HAMILTON TWP,17,1963,1,RES1,3001 -0112_868_2,-74.57076227,39.34423084,6265 LAUREL STREET,HAMILTON TWP,14,1948,1,RES1,3001 -0112_868_4,-74.53116345,39.30799295,2716 COLUMBIA ROAD,HAMILTON TWP,17,1955,1,RES1,3001 -0112_868_5,-74.502153,39.410351,2724 COLUMBIA ROAD,HAMILTON TWP,17,1983,1,RES1,3001 -0112_868_8,-74.63150666,39.55618417,2760 COLUMBIA ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_868_9,-74.8222895,39.569375,6332 HOLLY STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_869_1,-74.4598995,39.3488465,6369 HOLLY STREET,HAMILTON TWP,17,1965,1,RES1,3001 -0112_869_2,-74.6205875,39.378758,6367 HOLLY STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_869_3.01,-74.50772184,39.33104899,6331 HOLLY STREET,HAMILTON TWP,17,1995,1,RES1,3001 -0112_869_3.02,-74.57042382,39.374049,6310 HOLLY STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_869_3.03,-74.678121,39.3838205,6283 HOLLY STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_869_4,-74.84614398,39.46647916,6265 HOLLY STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_870_1.01,-74.5252815,39.454129,6241 HOLLY STREET,HAMILTON TWP,17,1979,1,RES1,3004 -0112_870_1.02,-74.4785185,39.337873,6223 HOLLY STREET,HAMILTON TWP,17,1982,1,GOV1,3004 -0112_871_1,-74.3824675,39.3928525,6193 LAUREL STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_871_10,-74.49500405,39.52998676,6056 HOLLY STREET,HAMILTON TWP,17,1952,1,RES1,3001 -0112_871_11,-74.7591855,39.4321345,6032 HOLLY STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_871_13,-74.38129367,39.3980335,2757 ROUTE 50,HAMILTON TWP,16,1940,1,RES1,3001 -0112_871_14.01,-74.88350311,39.59720219,2751 ROUTE 50,HAMILTON TWP,16,1947,1,RES1,3001 -0112_871_18,-74.61827617,39.380163,2731 ROUTE 50,HAMILTON TWP,16,1940,1,RES1,3001 -0112_871_19,-74.7351435,39.4411005,2727 ROUTE 50,HAMILTON TWP,15,1940,1,RES1,3001 -0112_871_2,-74.7082925,39.565823,6196 HOLLY STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_871_21,-74.60224888,39.59212079,2715 ROUTE 50,HAMILTON TWP,17,1999,1,RES1,3001 -0112_871_22,-74.812769,39.530942,6047 LAUREL STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_871_23,-74.52914971,39.39497117,6125 LAUREL STREET,HAMILTON TWP,16,1920,2,RES1,3001 -0112_871_24,-74.816,39.64671917,6149 LAUREL STREET,HAMILTON TWP,17,1970,2,RES1,3001 -0112_871_25,-74.47863042,39.33702284,6157 LAUREL STREET,HAMILTON TWP,17,1984,1,REL1,3004 -0112_871_26,-74.586975,39.415997,6169 LAUREL STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_871_27,-74.4044695,39.3902825,6177 LAUREL STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_871_3,-74.82971313,39.40863376,6188 HOLLY STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_871_4,-74.5472365,39.4745665,6168 HOLLY STREET,HAMILTON TWP,17,1993,1,RES1,3001 -0112_871_5,-74.64444819,39.33561761,6148 HOLLY STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_871_7,-74.47286585,39.34368184,6102 HOLLY STREET,HAMILTON TWP,17,1976,1,GOV1,3004 -0112_871_8,-74.48289,39.3437425,6090 HOLLY STREET,HAMILTON TWP,17,1940,1,RES1,3001 -0112_871_9,-74.55252192,39.47756322,6082 HOLLY STREET,HAMILTON TWP,17,1932,1,RES1,3001 -0112_872_1,-74.49259789,39.33231984,6195 HOLLY STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_872_2,-74.60178961,39.38226378,6183 HOLLY STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_872_3,-74.86257098,39.57425433,6169 HOLLY STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_872_4,-74.605678,39.4908595,6153 HOLLY STREET,HAMILTON TWP,16,1983,1,RES1,3001 -0112_872_5,-74.48900346,39.43802826,6137 HOLLY STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_872_6,-74.59397568,39.34857352,6121 HOLLY STREET,HAMILTON TWP,17,1980,1,COM1,3004 -0112_872_7,-74.62291382,39.41925393,HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_873_11,-74.58901841,39.41478905,6248 SPRUCE STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_873_13,-74.55445696,39.47163126,6208 SPRUCE STREET,HAMILTON TWP,17,1981,1,COM1,3004 -0112_873_2,-74.69655965,39.50490898,6392 SPRUCE STREET,HAMILTON TWP,17,1950,1,RES1,3001 -0112_873_3,-74.55283616,39.36085797,6372 SPRUCE STREET,HAMILTON TWP,,1946,1,RES1,3001 -0112_873_5,-74.58118983,39.47348904,6336 SPRUCE STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_873_6,-74.61825729,39.31907606,6324 SPRUCE STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_873_7,-74.384372,39.391882,6312 SPRUCE STREET,HAMILTON TWP,17,1958,1,RES1,3001 -0112_873_8,-74.59916374,39.49992349,6284 SPRUCE STREET,HAMILTON TWP,17,1984,1,RES1,3001 -0112_873_9,-74.54836439,39.37625937,6274 SPRUCE STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_874_1,-74.50265084,39.43169856,6369 SPRUCE STREET,HAMILTON TWP,17,1944,1,RES1,3001 -0112_874_13,-74.5243575,39.416643,6209 SPRUCE STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_874_14,-74.4567785,39.462829,6223 SPRUCE STREET,HAMILTON TWP,17,1973,1,RES1,3001 -0112_874_18,-74.575577,39.5267985,6313 SPRUCE STREET,HAMILTON TWP,17,1972,1,RES1,3001 -0112_874_19,-74.61256939,39.36524605,6333 SPRUCE STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_874_2,-74.608813,39.38992,6368 WALNUT STREET,HAMILTON TWP,17,1973,1,RES1,3001 -0112_874_4,-74.76300956,39.6394632,6316 WALNUT STREET,HAMILTON TWP,16,1920,1,RES1,3001 -0112_874_5,-74.60911682,39.38510135,6330 WALNUT STREET,HAMILTON TWP,15,1950,2,RES1,3001 -0112_874_6,-74.69335209,39.51155443,6320 WALNUT STREET,HAMILTON TWP,15,1946,1,RES1,3001 -0112_874_7,-74.59551953,39.31746768,6324 WALNUT STREET,HAMILTON TWP,16,1910,1,RES1,3001 -0112_874_8,-74.7635275,39.3517075,6300 WALNUT STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_876_1,-74.504031,39.3322395,6198 SPRUCE STREET,HAMILTON TWP,17,1986,1,IND1,3004 -0112_876_11,-74.6373104,39.52553104,2877 ROUTE 50,HAMILTON TWP,17,1930,1,RES1,3001 -0112_876_2,-74.63584448,39.46332885,6182 SPRUCE STREET,HAMILTON TWP,17,1934,1,RES1,3001 -0112_876_3.01,-74.7757445,39.6258175,6154 SPRUCE STREET,HAMILTON TWP,16,1912,1,RES1,3001 -0112_876_4,-74.6373135,39.429526,6128 SPRUCE STREET,HAMILTON TWP,17,1968,1,RES1,3001 -0112_876_5,-74.367296,39.4160305,ROUTE 50,HAMILTON TWP,,0,1,RES1,3001 -0112_876_6,-74.6250655,39.4392205,2865 ROUTE 50,HAMILTON TWP,16,1908,1,RES1,3001 -0112_876_7,-74.59084525,39.32110183,2871 ROUTE 50,HAMILTON TWP,16,1952,1,IND1,3002 -0112_876_8,-74.5539995,39.3566545,2875 ROUTE 50,HAMILTON TWP,17,1952,1,RES1,3001 -0112_877_1,-74.5481885,39.37472983,6197 SPRUCE STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_877_11,-74.9492605,39.4966645,2941 ROUTE 50,HAMILTON TWP,15,1920,1,RES1,3001 -0112_877_13,-74.80385094,39.51786478,2931 ROUTE 50,HAMILTON TWP,16,1942,1,RES1,3001 -0112_877_14,-74.8309352,39.40831197,2929 ROUTE 50,HAMILTON TWP,,1951,1,RES1,3001 -0112_877_18,-74.68076491,39.44363118,6003 SPRUCE STREET,HAMILTON TWP,16,1942,1,RES1,3001 -0112_877_19,-74.53807247,39.38943419,6025 SPRUCE STREET,HAMILTON TWP,17,1981,1,RES1,3001 -0112_877_2,-74.5305433,39.40039244,6200 WALNUT STREET,HAMILTON TWP,17,2006,1,RES1,3001 -0112_877_22,-74.4967315,39.519036,6101 SPRUCE STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_877_23,-74.56951334,39.41424715,6129 SPRUCE STREET,HAMILTON TWP,17,1969,1,RES1,3001 -0112_877_24,-74.64137544,39.53382256,6145 SPRUCE STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_877_25,-74.8010585,39.613896,6147 SPRUCE STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_877_26,-74.601676,39.4359805,6189 SPRUCE STREET,HAMILTON TWP,17,1964,1,RES1,3001 -0112_877_3,-74.90561151,39.48855263,6198 WALNUT STREET,HAMILTON TWP,17,2004,1,RES1,3001 -0112_877_4,-74.54527649,39.37065917,6188 WALNUT STREET,HAMILTON TWP,16,1978,1,RES1,3001 -0112_877_5,-74.52029834,39.3154282,6168 WALNUT STREET,HAMILTON TWP,16,1986,1,RES1,3001 -0112_877_6,-74.5138455,39.3207255,6148 WALNUT STREET,HAMILTON TWP,17,2008,1,RES1,3001 -0112_877_7,-74.568719,39.36966,6128 WALNUT STREET,HAMILTON TWP,17,1961,1,RES1,3001 -0112_877_8.01,-74.371808,39.4061455,6106 WALNUT STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_877_8.02,-74.599821,39.315208,6076 WALNUT STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_878_10,-74.35675961,39.41343937,3029 COUNTY BOULEVARD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_878_11,-74.49168479,39.52466713,3017 COUNTY BOULEVARD,HAMILTON TWP,17,1900,1,RES1,3001 -0112_878_13,-74.53391656,39.37687602,3009 COUNTY BOULEVARD,HAMILTON TWP,16,1943,1,RES1,3001 -0112_878_14,-74.49508879,39.45917739,3007 COUNTY BOULEVARD,HAMILTON TWP,16,1940,1,RES3A,3001 -0112_878_15,-74.651212,39.531096,3005 COUNTY BOULEVARD,HAMILTON TWP,17,1929,1,RES1,3001 -0112_878_17,-74.63902911,39.36421773,6121 WALNUT STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_878_3,-74.56136616,39.50825454,6116 CHESTNUT STREET,HAMILTON TWP,16,1978,1,RES1,3001 -0112_878_4,-74.59899808,39.43005521,6096 CHESTNUT STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_878_5,-74.927112,39.508421,6072 CHESTNUT STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_878_6,-74.47976948,39.33781453,6036 CHESTNUT STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_878_7,-74.52593635,39.46539841,3065 COUNTY BOULEVARD,HAMILTON TWP,17,1970,1,RES3A,3001 -0112_878_9.01,-74.735573,39.449675,3045 COUNTY BOULEVARD,HAMILTON TWP,17,1960,1,RES3A,3001 -0112_878_9.02,-74.428975,39.371011,3031 COUNTY BOULEVARD,HAMILTON TWP,17,1982,1,RES1,3001 -0112_879_12,-74.84901139,39.37752995,5908 WALNUT STREET,HAMILTON TWP,16,1940,1,RES1,3001 -0112_879_21,-74.50366266,39.34014644,SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_879_3,-74.7692744,39.63204928,2928 ROUTE 50,HAMILTON TWP,16,1940,1,RES1,3001 -0112_879_4,-74.67958916,39.49983947,ROUTE 50,HAMILTON TWP,,0,1,RES1,3001 -0112_879_8,-74.55571664,39.36645422,2964 ROUTE 50,HAMILTON TWP,,1960,1,RES1,3001 -0112_879_9,-74.62730466,39.52550097,5948 WALNUT STREET,HAMILTON TWP,17,1958,2,RES1,3001 -0112_880_1,-74.58368994,39.37460562,3019 ROUTE 50,HAMILTON TWP,16,1940,1,RES1,3001 -0112_881_17,-74.94028073,39.52027798,5949 WALNUT STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_881_4,-74.51680266,39.45392873,3066 ROUTE 50,HAMILTON TWP,16,1932,2,RES1,3001 -0112_881_5,-74.58237145,39.34074232,5948 CHESTNUT STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_881_9,-74.7782645,39.444989,5808 CHESTNUT STREET,HAMILTON TWP,17,2006,1,GOV1,3004 -0112_882_1.01,-74.4826885,39.3533345,3105 ROUTE 50,HAMILTON TWP,,1976,1,GOV1,3004 -0112_882_1.02,-74.60830934,39.61856546,3113 ROUTE 50,HAMILTON TWP,16,1956,1,RES1,3001 -0112_882_1.03,-74.58094286,39.34312287,3121 ROUTE 50,HAMILTON TWP,16,1965,1,RES1,3001 -0112_882_4,-74.535575,39.3888045,3135 ROUTE 50,HAMILTON TWP,,1986,1,RES1,3001 -0112_883_10,-74.49428583,39.33023401,5849 CHESTNUT STREET,HAMILTON TWP,16,1950,1,EDU1,3004 -0112_883_11,-74.58971582,39.37138521,5829 CHESTNUT STREET,HAMILTON TWP,16,1976,1,RES1,3001 -0112_883_12,-74.5953925,39.3202365,5809 CHESTNUT STREET,HAMILTON TWP,16,1905,1,RES1,3001 -0112_883_6,-74.4929165,39.335745,5929 CHESTNUT STREET,HAMILTON TWP,16,1940,1,RES1,3001 -0112_9_1,-74.4897265,39.4960285,1312 MALAGA ROAD,HAMILTON TWP,17,1969,1,RES1,3001 -0112_9_7,-74.76457613,39.48487699,1317 ELM STREET,HAMILTON TWP,16,1968,1,RES1,3001 -0112_9_9,-74.60207306,39.37876103,1377 MALAGA ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_920_5,-74.5116515,39.4297375,3217 PERSHING AVENUE,HAMILTON TWP,17,2001,1,RES3A,3001 -0112_921_15,-74.51407419,39.48711604,6026 CHESTNUT STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_921_21.01,-74.713002,39.4204585,6015 CHESTNUT STREET,HAMILTON TWP,16,1972,1,RES3A,3001 -0112_922_48,-74.46322326,39.49336732,THOMAS BOULEVARD,HAMILTON TWP,,1900,1,RES1,3001 -0112_925_14,-74.74941514,39.44743868,6010 SCOTT AVE,HAMILTON TWP,15,1940,1,RES1,3001 -0112_927_1,-74.84719188,39.60529583,3212 COUNTY BOULEVARD,HAMILTON TWP,,1970,1,RES1,3001 -0112_929_3,-74.52677583,39.38895217,3215 ROUTE 50,HAMILTON TWP,16,1930,1,RES1,3001 -0112_929_4,-74.47808148,39.44349684,3213 ROUTE 50,HAMILTON TWP,16,1950,1,RES1,3001 -0112_929_5,-74.44847271,39.35627365,3209 ROUTE 50,HAMILTON TWP,16,1950,1,RES1,3001 -0112_929_6,-74.781349,39.659862,3205 ROUTE 50,HAMILTON TWP,,1900,1,RES1,3001 -0112_930_1,-74.388881,39.3897655,3210 ROUTE 50,HAMILTON TWP,,1963,1,RES1,3001 -0112_937_1,-74.5630685,39.38946,3210 TENTH TERRACE,HAMILTON TWP,,0,1,RES1,3001 -0112_938_1.01,-74.59433854,39.43094532,2506 ROUTE 50,HAMILTON TWP,17,1975,1,RES1,3001 -0112_938_1.02,-74.6567905,39.345903,5991 OAK STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_938_1.03,-74.51885,39.4425025,5989 OAK STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_938_1.04,-74.59079812,39.51765349,5985 OAK STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_938_1.05,-74.61789451,39.42457205,5981 OAK STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_938_10,-74.442373,39.367085,5951 PEACH STREET,HAMILTON TWP,17,1977,1,RES1,3001 -0112_938_11,-74.649301,39.3855535,5925 PEACH STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_938_12,-74.54500921,39.38802869,5907 PEACH STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_938_13,-74.8089455,39.633003,5901 PEACH STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_938_15,-74.49990518,39.38204502,5877 PEACH STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_938_16,-74.5211465,39.3178225,5848 PEACH STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_938_17,-74.51614879,39.32798397,5837 PEACH STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_938_19,-74.498792,39.3345385,5800 PEACH STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_938_2.01,-74.68586417,39.51748851,2514 ROUTE 50,HAMILTON TWP,17,1992,1,RES1,3001 -0112_938_2.02,-74.4390065,39.486756,2512 ROUTE 50,HAMILTON TWP,17,1995,1,RES1,3001 -0112_938_20,-74.3805213,39.41842556,5809 OAK STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_938_21,-74.72558398,39.46043758,5817 OAK STREET,HAMILTON TWP,16,1925,2,RES1,3001 -0112_938_22,-74.39705726,39.38826254,5839 OAK STREET,HAMILTON TWP,16,1938,1,RES1,3001 -0112_938_23.01,-74.48346433,39.34558454,5845 OAK STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_938_23.02,-74.64976105,39.52806549,5857 OAK STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_938_3,-74.5103785,39.329908,2522 ROUTE 50,HAMILTON TWP,17,1998,1,RES1,3001 -0112_938_4,-74.80578571,39.63453343,2530 ROUTE 50,HAMILTON TWP,17,1935,1,RES1,3001 -0112_938_5,-74.95698942,39.5280758,2536 ROUTE 50,HAMILTON TWP,17,1952,1,RES1,3001 -0112_938_7,-74.61980955,39.60132766,5987 PEACH STREET,HAMILTON TWP,17,1989,1,RES1,3002 -0112_938_8,-74.6406304,39.37279489,5981 PEACH STREET,HAMILTON TWP,17,1969,1,RES1,3001 -0112_938_9,-74.47065892,39.48812889,5971 PEACH STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_939_10,-74.4691205,39.342968,5908 HICKORY STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_939_11,-74.366901,39.406222,5904 HICKORY STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_939_12,-74.71086199,39.5011095,5905 PEACH STREET,HAMILTON TWP,17,1964,1,RES1,3001 -0112_939_13,-74.60517887,39.32424313,5909 PEACH STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_939_14,-74.50598683,39.44877511,5915 PEACH STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_939_15.02,-74.5929105,39.32110423,5923 PEACH STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_939_2,-74.918762,39.5651365,2568 ROUTE 50,HAMILTON TWP,17,2000,1,RES1,3001 -0112_939_3,-74.9375595,39.5247035,2572 ROUTE 50,HAMILTON TWP,17,1968,1,RES1,3001 -0112_939_4,-74.8121683,39.63573157,5932 HICKORY STREET,HAMILTON TWP,17,2009,1,RES1,3002 -0112_939_5,-74.59918135,39.51151095,5928 HICKORY STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_939_6,-74.55677541,39.39831909,5924 HICKORY STREET,HAMILTON TWP,17,1968,1,RES1,3001 -0112_939_7,-74.48162625,39.34626886,5920 HICKORY STREET,HAMILTON TWP,17,2002,1,RES1,3001 -0112_939_8,-74.59537441,39.5047078,5916 HICKORY STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_939_9,-74.388631,39.393485,5912 HICKORY STREET,HAMILTON TWP,17,1973,1,RES1,3001 -0112_94_1,-74.554181,39.3890545,VENICE BLVD,HAMILTON TWP,,0,1,RES1,3001 -0112_94_5,-74.583705,39.3420555,VENICE BLVD,HAMILTON TWP,,0,1,RES3A,3001 -0112_940_1,-74.724627,39.451507,2602 ROUTE 50,HAMILTON TWP,16,1955,1,RES3A,3001 -0112_940_10.01,-74.771875,39.3243905,5909 HICKORY STREET,HAMILTON TWP,17,1992,1,COM4,3004 -0112_940_10.02,-74.80121753,39.64179434,5913 HICKORY STREET,HAMILTON TWP,17,1991,1,COM1,3004 -0112_940_10.03,-74.58225875,39.34465244,5917 HICKORY STREET,HAMILTON TWP,17,1992,1,RES3B,3001 -0112_940_11,-74.48595475,39.53087716,5923 HICKORY STREET,HAMILTON TWP,17,2009,1,RES1,3001 -0112_940_12,-74.48944659,39.39282684,5929 HICKORY STREET,HAMILTON TWP,17,1940,1,RES3A,3001 -0112_940_2,-74.4355125,39.3647565,2614 ROUTE 50,HAMILTON TWP,17,1992,1,RES3A,3001 -0112_940_3.01,-74.6213438,39.43294014,5930 ORANGE STREET,HAMILTON TWP,16,1945,1,RES3A,3001 -0112_940_3.02,-74.5484615,39.4721395,5924 ORANGE STREET,HAMILTON TWP,16,1940,1,RES1,3001 -0112_940_4,-74.45461484,39.49916448,5920 ORANGE STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_940_5,-74.50397238,39.34227554,5916 ORANGE STREET,HAMILTON TWP,17,1970,1,RES1,3004 -0112_940_6,-74.6277305,39.6174585,5912 ORANGE STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_940_7,-74.51255738,39.32263867,5908 ORANGE STREET,HAMILTON TWP,17,1998,1,GOV1,3004 -0112_940_8,-74.58731185,39.34673704,5904 ORANGE STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_940_9,-74.50711167,39.3269815,5905 HICKORY STREET,HAMILTON TWP,17,2012,1,RES1,3001 -0112_941_1.01,-74.6370375,39.4305605,5839 PEACH STREET,HAMILTON TWP,17,1994,1,RES1,3001 -0112_941_1.02,-74.52859566,39.38237854,5841 PEACH STREET,HAMILTON TWP,17,1994,1,RES1,3001 -0112_941_11.02,-74.389679,39.3907925,5815 PEACH STREET,HAMILTON TWP,17,1969,1,RES1,3002 -0112_941_12,-74.48146236,39.33932233,5819 PEACH STREET,HAMILTON TWP,17,1958,1,RES1,3001 -0112_941_13,-74.78729038,39.66053856,5823 PEACH STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_941_14,-74.44050929,39.5157016,5827 PEACH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_941_16,-74.50116441,39.33468043,5835 PEACH STREET,HAMILTON TWP,17,1979,1,COM1,3004 -0112_941_2,-74.54689359,39.38070885,5836 HICKORY STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_941_3,-74.6073265,39.3163925,5834 HICKORY STREET,HAMILTON TWP,17,1994,1,RES1,3001 -0112_941_4,-74.61178916,39.4215012,5830 HICKORY STREET,HAMILTON TWP,17,1994,1,RES1,3001 -0112_941_5,-74.75192934,39.59407648,5824 HICKORY STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_941_6,-74.599987,39.368444,5818 HICKORY STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_941_7,-74.94677255,39.52519578,5814 HICKORY STREET,HAMILTON TWP,17,2009,1,RES1,3001 -0112_941_8,-74.81484645,39.64167517,5810 HICKORY STREET,HAMILTON TWP,17,1991,1,RES1,3001 -0112_942_1,-74.54740484,39.48076599,5837 HICKORY STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_942_10.02,-74.50891345,39.43795272,5807 HICKORY STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_942_10.03,-74.9176055,39.5106385,5811 HICKORY STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_942_10.04,-74.50117492,39.46900126,5819 HICKORY STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_942_10.06,-74.37393054,39.41032781,5823 HICKORY STREET,HAMILTON TWP,17,1980,1,GOV1,3004 -0112_942_10.07,-74.58873395,39.42594123,5827 HICKORY STREET,HAMILTON TWP,17,1980,1,RES3A,3001 -0112_942_11,-74.65496574,39.36610772,5831 HICKORY STREET,HAMILTON TWP,17,1977,1,RES3A,3001 -0112_942_12,-74.80680305,39.63092633,5835 HICKORY STREET,HAMILTON TWP,17,1978,1,COM4,3004 -0112_942_4,-74.6406544,39.46335593,5828 ORANGE STREET,HAMILTON TWP,17,1987,1,RES3A,3001 -0112_942_5,-74.45105705,39.35601318,5824 ORANGE STREET,HAMILTON TWP,17,1993,1,RES1,3001 -0112_942_6,-74.5003815,39.4284815,5818 ORANGE STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_942_7,-74.61231228,39.3228619,5814 ORANGE STREET,HAMILTON TWP,17,1993,1,RES1,3001 -0112_942_8,-74.81931639,39.36275978,5810 ORANGE STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_942_9,-74.61909654,39.43091982,5804 ORANGE STREET,HAMILTON TWP,17,1950,1,RES3A,3001 -0112_943_1,-74.67910983,39.50058482,2640 ROUTE 50,HAMILTON TWP,16,1930,1,RES1,3001 -0112_943_10,-74.61258079,39.50771669,5977 LAUREL STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_943_11,-74.78040067,39.63208495,5971 LAUREL STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_943_12,-74.61588302,39.62192436,5925 LAUREL STREET,HAMILTON TWP,17,1959,1,RES1,3001 -0112_943_13,-74.51968682,39.38783999,5921 LAUREL STREET,HAMILTON TWP,17,1966,1,RES1,3001 -0112_943_14,-74.591243,39.3327535,5905 LAUREL STREET,HAMILTON TWP,17,1949,1,RES1,3001 -0112_943_16,-74.535706,39.3886765,5871 LAUREL STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_943_17,-74.93666058,39.51222273,5865 LAUREL STREET,HAMILTON TWP,16,1945,1,RES3B,3001 -0112_943_18,-74.67819058,39.45375718,5841 LAUREL STREET,HAMILTON TWP,17,1962,1,RES1,3001 -0112_943_19.01,-74.6564915,39.3954525,5825 LAUREL STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_943_19.02,-74.728517,39.4640695,5811 LAUREL STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_943_20,-74.7841005,39.674449,5812 ORANGE STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_943_21,-74.65404905,39.35410671,5815 ORANGE STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_943_22,-74.50596864,39.32429032,5819 ORANGE STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_943_23,-74.49416539,39.33519192,5823 ORANGE STREET,HAMILTON TWP,17,2005,1,RES1,3002 -0112_943_24,-74.3760245,39.419512,5827 ORANGE STREET,HAMILTON TWP,17,1998,1,RES1,3001 -0112_943_25,-74.62231445,39.60575053,5902 ORANGE STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_943_26,-74.772378,39.6604145,5922 ORANGE STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_943_27,-74.75330647,39.45213718,5931 ORANGE STREET,HAMILTON TWP,17,1997,1,RES1,3002 -0112_943_28,-74.62572606,39.35254641,5941 ORANGE STREET,HAMILTON TWP,17,1995,1,RES1,3001 -0112_943_29,-74.604217,39.3820875,5952 ORANGE STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_943_3,-74.73029798,39.5795908,2646 ROUTE 50,HAMILTON TWP,16,1922,1,RES3A,3001 -0112_943_30,-74.81007071,39.64312999,5970 ORANGE STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_943_31,-74.6311348,39.38992059,5976 ORANGE STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_943_32,-74.79582174,39.62369662,5988 ORANGE STREET,HAMILTON TWP,17,1989,1,RES1,3002 -0112_943_33,-74.8810185,39.5940145,5995 ORANGE STREET,HAMILTON TWP,17,1996,1,RES1,3001 -0112_943_4,-74.5203525,39.539075,2650 ROUTE 50,HAMILTON TWP,17,1978,1,RES1,3001 -0112_943_4.01,-74.487624,39.336126,2 STONE WALK,HAMILTON TWP,17,2007,1,COM1,3004 -0112_943_4.02,-74.37309825,39.40310566,4 STONE WALK,HAMILTON TWP,17,2007,1,RES1,3001 -0112_943_4.03,-74.843634,39.373278,6 STONE WALK,HAMILTON TWP,17,2006,1,GOV1,3004 -0112_943_4.04,-74.4418565,39.3717395,8 STONE WALK,HAMILTON TWP,17,2008,1,RES1,3001 -0112_943_4.05,-74.48803567,39.47944619,10 STONE WALK,HAMILTON TWP,17,2007,1,RES1,3001 -0112_943_7,-74.56163165,39.36176328,5991 LAUREL STREET,HAMILTON TWP,16,1940,1,RES1,3002 -0112_943_8,-74.76308955,39.6099999,5997 LAUREL STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_943_9,-74.55148165,39.47321631,5983 LAUREL STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_944_1.01,-74.51675295,39.40539287,5986 LAUREL STREET,HAMILTON TWP,17,1987,1,RES1,3002 -0112_944_1.02,-74.52749999,39.38485667,5920 LAUREL STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_944_10,-74.5741985,39.421546,2703 CLEVELAND AVE,HAMILTON TWP,17,1995,1,RES1,3001 -0112_944_11,-74.79120234,39.64127298,5812 LAUREL STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_944_12,-74.658422,39.55257317,5828 LAUREL STREET,HAMILTON TWP,16,1940,1,RES1,3002 -0112_944_13,-74.57618989,39.36933236,5842 LAUREL STREET,HAMILTON TWP,16,1942,1,RES1,3001 -0112_944_14.01,-74.61698465,39.3712433,5868 LAUREL STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_944_14.02,-74.669069,39.545057,5888 LAUREL STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_944_15,-74.6392615,39.400588,5906 LAUREL STREET,HAMILTON TWP,16,1908,1,RES3A,3001 -0112_944_2.01,-74.64099636,39.37351724,2716 ROUTE 50,HAMILTON TWP,16,1912,1,GOV1,3004 -0112_944_2.02,-74.51627951,39.32431867,5922 LAUREL STREET,HAMILTON TWP,17,1995,1,REL1,3004 -0112_944_4,-74.745982,39.4458145,2740 ROUTE 50,HAMILTON TWP,16,1945,1,RES1,3001 -0112_944_5,-74.51632718,39.32581964,2752 ROUTE 50,HAMILTON TWP,17,1988,1,RES1,3001 -0112_945_1,-74.74498222,39.44545815,5876 HOLLY STREET,HAMILTON TWP,17,1997,1,RES1,3004 -0112_945_6,-74.5093385,39.400469,HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_946_1,-74.472492,39.4884965,2856 ROUTE 50,HAMILTON TWP,16,1945,1,RES1,3001 -0112_947_1,-74.840253,39.3988395,5787 OAK STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_947_11,-74.862832,39.45090054,5701 OAK STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_947_12,-74.5920915,39.3195075,5729 OAK STREET,HAMILTON TWP,17,1978,1,RES1,3002 -0112_947_13,-74.5156107,39.44104831,5749 OAK STREET,HAMILTON TWP,17,1986,1,RES1,3001 -0112_947_14,-74.52078528,39.44832537,5769 OAK STREET,HAMILTON TWP,17,1988,1,AGR1,3001 -0112_947_4,-74.607195,39.421816,5747 HICKORY STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_947_7,-74.5741309,39.52968038,5601 OAK STREET,HAMILTON TWP,17,1945,1,RES1,3001 -0112_947_8,-74.871845,39.592417,5631 OAK STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_947_9.01,-74.587039,39.41093,5645 OAK STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_947_9.02,-74.48897399,39.4291226,5657 OAK STREET,HAMILTON TWP,17,1995,1,RES1,3001 -0112_948_1,-74.597495,39.3303145,5782 HICKORY STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_948_12,-74.7218695,39.580823,5758 HICKORY STREET,HAMILTON TWP,17,1976,1,REL1,3004 -0112_948_3.01,-74.6323575,39.346176,5781 LAUREL STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_948_5,-74.5184225,39.44706,5709 LAUREL STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_948_6,-74.517808,39.321174,5677 LAUREL STREET,HAMILTON TWP,,1900,1,RES1,3001 -0112_948_7,-74.60510119,39.39182861,5637 LAUREL STREET,HAMILTON TWP,17,1910,1,RES1,3001 -0112_949_1,-74.65071781,39.3689654,2702 CLEVELAND AVE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_949_12,-74.5362015,39.3908755,5630 OSLO AVENUE,HAMILTON TWP,17,1999,1,RES1,3001 -0112_949_13,-74.45721916,39.35000051,5638 LAUREL STREET,HAMILTON TWP,16,1910,1,COM4,3004 -0112_949_14,-74.92812764,39.51539305,5678 LAUREL STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_949_15,-74.49614578,39.49924066,5688 LAUREL STREET,HAMILTON TWP,16,1928,1,RES1,3001 -0112_949_16,-74.53706038,39.37508255,5698 LAUREL STREET,HAMILTON TWP,17,1970,1,RES1,3001 -0112_949_17,-74.5095885,39.3299755,5714 LAUREL STREET,HAMILTON TWP,17,1926,1,GOV1,3004 -0112_949_18.01,-74.7369165,39.4495595,5756 LAUREL STREET,HAMILTON TWP,17,2005,1,GOV1,3004 -0112_949_18.02,-74.43742918,39.36925093,5744 LAUREL STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_949_19,-74.6103013,39.42091384,5768 LAUREL STREET,HAMILTON TWP,17,1925,1,RES1,3001 -0112_949_2,-74.58796315,39.34782495,2720 CLEVELAND AVENUE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_949_20,-74.46201208,39.35013228,5780 LAUREL STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_949_3,-74.78319015,39.64122454,2744 CLEVELAND AVE,HAMILTON TWP,16,1932,1,RES1,3001 -0112_949_4.01,-74.664606,39.46117,2756 CLEVELAND AVENUE,HAMILTON TWP,17,1979,1,RES1,3001 -0112_949_4.02,-74.51259614,39.33881041,5777 HOLLY STREET,HAMILTON TWP,16,1910,1,RES1,3001 -0112_949_5,-74.5064665,39.531668,5747 HOLLY STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_949_6,-74.63989453,39.52419733,5727 HOLLY STREET,HAMILTON TWP,17,1997,1,RES1,3001 -0112_949_9,-74.8738035,39.4427025,5647 HOLLY STREET,HAMILTON TWP,17,2003,1,RES1,3001 -0112_95_2.02,-74.55811401,39.36720383,7184 MARKET ST,HAMILTON TWP,,1940,1,RES1,3001 -0112_95_5,-74.38098521,39.39477621,1337 ST PETERSBURG AVENUE,HAMILTON TWP,16,1968,1,RES1,3001 -0112_950_2,-74.582962,39.3571495,5762 HOLLY STREET,HAMILTON TWP,17,1935,1,RES1,3001 -0112_950_3,-74.6087935,39.3210875,5718 HOLLY STREET,HAMILTON TWP,,0,1,RES1,3002 -0112_950_4,-74.9129845,39.53379,5658 HOLLY STREET,HAMILTON TWP,,0,1,RES1,3002 -0112_950_6,-74.9436715,39.499262,5608 OSLO AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_951_2,-74.63472474,39.39052696,SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_951_5,-74.63383881,39.41955047,SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_951_8,-74.49609,39.4741555,OSLO AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_951_9,-74.8045875,39.6298135,OSLO AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_952_12,-74.571046,39.414601,SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_952_2,-74.52050306,39.32013002,WALNUT STREET,HAMILTON TWP,,0,1,COM1,3004 -0112_952_6,-74.36287884,39.41081051,WALNUT STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_952_8,-74.785888,39.608929,WALNUT STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_952_9,-74.78693207,39.63990984,SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_953_2,-74.5982879,39.51055113,5786 CHESTNUT STREET,HAMILTON TWP,17,1976,1,RES1,3001 -0112_953_4,-74.782975,39.54379733,5657 CHESTNUT STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_953_5,-74.36480788,39.4093472,5601 CHESTNUT STREET,HAMILTON TWP,17,1994,1,RES1,3001 -0112_954_1.01,-74.38880117,39.39016002,3120 CLEVELAND AVENUE,HAMILTON TWP,16,1950,1,RES1,3001 -0112_954_6,-74.67457441,39.37392796,5626 CHESTNUT STREET,HAMILTON TWP,15,1900,1,AGR1,3001 -0112_954_7,-74.5992385,39.59083,5610 CHESTNUT STREET,HAMILTON TWP,17,1999,1,RES1,3001 -0112_955_1,-74.59551984,39.34067757,5589 OAK STREET,HAMILTON TWP,16,1920,1,RES1,3001 -0112_955_10,-74.49077182,39.33784089,5543 OAK STREET,HAMILTON TWP,17,1992,1,RES1,3001 -0112_955_11,-74.722016,39.580767,5565 OAK STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_955_3,-74.51582654,39.39982413,HICKORY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_955_7,-74.75055,39.450157,5489 OAK STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_955_8,-74.5010635,39.4508125,5507 OAK STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_955_9,-74.806953,39.6435945,5525 OAK STREET,HAMILTON TWP,17,1982,1,RES1,3001 -0112_957_2.02,-74.50760014,39.44419302,5563 HOLLY STREET,HAMILTON TWP,17,1987,1,RES1,3001 -0112_957_2.03,-74.50286483,39.33672447,5543 HOLLY STREET,HAMILTON TWP,17,1990,1,GOV1,3004 -0112_957_2.04,-74.629918,39.419075,5523 HOLLY STREET,HAMILTON TWP,17,1990,1,RES1,3001 -0112_957_4,-74.52147387,39.31716005,LAUREL STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_958_1,-74.532355,39.490376,5576 HOLLY STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_958_2,-74.441969,39.3537475,5544 HOLLY STREET,HAMILTON TWP,17,1994,1,RES1,3001 -0112_958_3,-74.649965,39.533682,5526 HOLLY STREET,HAMILTON TWP,17,1975,1,GOV1,3004 -0112_958_4,-74.5021485,39.4293545,5508 HOLLY STREET,HAMILTON TWP,17,2002,1,RES1,3001 -0112_958_5,-74.5995725,39.3304655,HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_958_9,-74.46396604,39.35842518,HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_959_1,-74.4883135,39.33484,SPRUCE STREET,HAMILTON TWP,,0,1,RES3A,3001 -0112_959_16,-74.712755,39.46706767,HOLLY STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_959_7,-74.52084114,39.31626342,SPRUCE STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_961_3,-74.580099,39.4137945,CHESTNUT STREET,HAMILTON TWP,,0,1,GOV1,3004 -0112_962_4,-74.582674,39.342212,5312 BERLIN AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_97_27,-74.670875,39.368927,DIVISION AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_973_1,-74.5940715,39.329259,BALTIMORE AVE,HAMILTON TWP,,0,1,RES1,3001 -0112_974_1,-74.71641343,39.4416713,3201 ROCHESTER AVENUE,HAMILTON TWP,17,1900,1,RES1,3001 -0112_975_1,-74.643582,39.5434125,5518 DROSERA STREET,HAMILTON TWP,16,1960,1,RES1,3001 -0112_977_3,-74.816137,39.6327145,DROSERA STREET,HAMILTON TWP,,0,1,RES1,3001 -0112_979_1,-74.4709315,39.4826735,5698 MAYS LANDING SP RD,HAMILTON TWP,,1946,1,RES1,3001 -0112_979_10,-74.50625184,39.43649653,230 OLD RIVER ROAD,HAMILTON TWP,17,1969,1,COM1,3004 -0112_979_11,-74.84754931,39.61049753,5459 MAYS LANDING SP RD,HAMILTON TWP,16,1924,1,RES1,3001 -0112_979_12,-74.4905915,39.498324,5463 MAYS LANDING SP RD,HAMILTON TWP,17,1906,1,RES1,3001 -0112_979_13,-74.553355,39.4266635,5455 MAYS LANDING SP RD,HAMILTON TWP,16,1928,1,RES1,3001 -0112_979_14,-74.633552,39.352894,238 OLD RIVER ROAD,HAMILTON TWP,17,1995,1,RES1,3001 -0112_979_17,-74.617083,39.321548,5445 MAYS LANDING SP RD,HAMILTON TWP,16,1940,1,RES1,3001 -0112_979_19,-74.50650499,39.482849,246 OLD RIVER ROAD,HAMILTON TWP,17,1962,1,COM1,3004 -0112_979_2,-74.5397065,39.542572,5696 MAYS LANDING SP RD,HAMILTON TWP,,1900,1,RES1,3001 -0112_979_21.01,-74.825196,39.571135,5439 MAYS LANDING SP RD,HAMILTON TWP,17,1916,1,RES1,3001 -0112_979_21.02,-74.367832,39.4030005,5435 MAYS LANDING SP RD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_979_21.04,-74.511401,39.323401,5421 MAYS LANDING SP RD,HAMILTON TWP,17,1983,1,RES1,3001 -0112_979_22.01,-74.5591965,39.412895,256 OLD RIVER ROAD,HAMILTON TWP,17,1920,1,RES1,3001 -0112_979_22.02,-74.6721585,39.5468035,252 OLD RIVER ROAD,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_979_24,-74.5346175,39.4704475,266 OLD RIVER ROAD,HAMILTON TWP,17,1926,1,GOV1,3004 -0112_979_25,-74.87967707,39.59367556,274 OLD RIVER ROAD,HAMILTON TWP,17,1956,1,RES1,3001 -0112_979_26,-74.4770565,39.343168,282 OLD RIVER ROAD,HAMILTON TWP,17,1978,1,RES1,3001 -0112_979_29,-74.6594055,39.3462315,5405 MAYS LANDING SP RD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_979_3,-74.57919289,39.31242537,5694 MAYS LANDING SP RD,HAMILTON TWP,,1900,1,RES1,3001 -0112_979_31,-74.943019,39.5110425,296 OLD RIVER ROAD,HAMILTON TWP,15,1950,1,RES1,3001 -0112_979_33.01,-74.5848595,39.338425,304 OLD RIVER ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_979_33.02,-74.37385193,39.41762569,312 OLD RIVER ROAD,HAMILTON TWP,17,1978,1,RES1,3001 -0112_979_36,-74.4628105,39.347441,5399 MAYS LANDING SP RD,HAMILTON TWP,17,1935,2,RES1,3001 -0112_979_37,-74.4980305,39.433641,318 OLD RIVER ROAD,HAMILTON TWP,17,1935,1,RES1,3001 -0112_979_38,-74.61793945,39.42498653,5397 MAYS LANDING SP RD,HAMILTON TWP,,1979,1,RES1,3001 -0112_979_39,-74.36388415,39.40749299,328 OLD RIVER ROAD,HAMILTON TWP,17,1958,1,RES3A,3001 -0112_979_4,-74.56504217,39.36595029,212 OLD RIVER ROAD,HAMILTON TWP,17,1936,1,RES1,3001 -0112_979_40,-74.7623588,39.44532161,334 OLD RIVER ROAD,HAMILTON TWP,16,1930,1,RES1,3001 -0112_979_41,-74.51368045,39.41441459,338 OLD RIVER ROAD,HAMILTON TWP,17,1968,1,RES1,3001 -0112_979_42,-74.63747667,39.39303058,5395 MAYS LANDING SP RD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_979_43,-74.3929285,39.387468,344 OLD RIVER ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_979_43.01,-74.63585916,39.43459984,5391 MAYS LANDING SP ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_979_44,-74.64267605,39.36813244,350 OLD RIVER ROAD,HAMILTON TWP,17,2003,1,RES1,3001 -0112_979_44.01,-74.9149665,39.5367185,356 OLD RIVER ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_979_44.02,-74.52308623,39.39575881,360 OLD RIVER ROAD,HAMILTON TWP,17,2003,1,RES3A,3001 -0112_979_44.04,-74.45467386,39.49641615,5379 MAYS LANDING SP RD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_979_45,-74.5366855,39.470442,364 OLD RIVER ROAD,HAMILTON TWP,17,1959,1,RES1,3001 -0112_979_46,-74.65499256,39.53429315,5371 MAYS LANDING SP RD,HAMILTON TWP,17,1962,1,RES1,3001 -0112_979_47,-74.75341828,39.43081477,372 OLD RIVER ROAD,HAMILTON TWP,16,1952,1,RES1,3001 -0112_979_48,-74.55801807,39.39647411,5359 MAYS LANDING SP RD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_979_49,-74.546957,39.4008505,378 OLD RIVER ROAD,HAMILTON TWP,17,1930,1,RES1,3001 -0112_979_5,-74.544457,39.476828,5473 MAYS LANDING SP RD,HAMILTON TWP,,2003,1,RES1,3001 -0112_979_50,-74.51635059,39.39894888,396 OLD RIVER ROAD,HAMILTON TWP,16,1952,1,RES1,3001 -0112_979_52,-74.37169714,39.40601793,418 OLD RIVER ROAD,HAMILTON TWP,17,1969,1,RES1,3001 -0112_979_52.01,-74.655782,39.5275695,426 OLD RIVER ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_979_7,-74.91594958,39.53382218,218 OLD RIVER ROAD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_979_9,-74.51498998,39.40374567,232 OLD RIVER ROAD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_980_1,-74.62357917,39.50629633,5704 MAYS LANDING SP RD,HAMILTON TWP,,1846,1,GOV1,3004 -0112_980_11,-74.4066125,39.3811925,241 OLD RIVER ROAD,HAMILTON TWP,18,1970,1,GOV1,3004 -0112_980_14,-74.5810567,39.34423223,257 OLD RIVER ROAD,HAMILTON TWP,,1990,1,RES1,3001 -0112_980_16,-74.56373729,39.41672306,271 OLD RIVER ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_980_17,-74.75909844,39.48078972,283 OLD RIVER ROAD,HAMILTON TWP,17,1790,2,RES1,3001 -0112_980_18,-74.58817813,39.3727316,293 OLD RIVER ROAD,HAMILTON TWP,17,1950,1,RES1,3004 -0112_980_19,-74.5987215,39.4092195,297 OLD RIVER ROAD,HAMILTON TWP,17,1982,1,GOV1,3004 -0112_980_2,-74.47465244,39.48361855,209 OLD RIVER ROAD,HAMILTON TWP,17,1963,1,RES1,3001 -0112_980_20,-74.727737,39.5881205,295 OLD RIVER ROAD,HAMILTON TWP,17,1949,1,RES1,3001 -0112_980_21,-74.46288027,39.4628241,301 OLD RIVER ROAD,HAMILTON TWP,,1920,1,RES1,3001 -0112_980_22,-74.8150125,39.626576,305 OLD RIVER ROAD,HAMILTON TWP,17,1980,2,RES1,3001 -0112_980_23,-74.61208518,39.37013162,315 OLD RIVER ROAD,HAMILTON TWP,18,2002,1,GOV1,3004 -0112_980_24,-74.48745947,39.33591633,311 OLD RIVER ROAD,HAMILTON TWP,17,1900,1,RES1,3001 -0112_980_25,-74.507184,39.3231725,313 OLD RIVER ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_980_27,-74.51492314,39.52602294,323 OLD RIVER ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_980_28,-74.513268,39.4037065,319 OLD RIVER ROAD,HAMILTON TWP,17,1969,1,RES1,3001 -0112_980_3,-74.78013567,39.62320373,207 OLD RIVER ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_980_30,-74.48081498,39.33769033,119 KATHERINE AVENUE,HAMILTON TWP,16,1946,1,RES1,3001 -0112_980_31,-74.5389775,39.3877555,127 KATHERINE AVENUE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_980_32,-74.6352465,39.5323895,147 KATHERINE AVENUE,HAMILTON TWP,17,1920,1,RES1,3001 -0112_980_33,-74.52452944,39.31541382,335 OLD RIVER ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_980_4,-74.56920799,39.35547395,OLD RIVER ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_980_5,-74.67280745,39.37046028,211 OLD RIVER ROAD,HAMILTON TWP,,1981,1,RES1,3001 -0112_980_6,-74.9113915,39.5281015,213 OLD RIVER ROAD,HAMILTON TWP,17,1965,1,RES1,3001 -0112_980_7,-74.600645,39.316815,215 OLD RIVER ROAD,HAMILTON TWP,17,1965,1,RES1,3001 -0112_980_8,-74.606499,39.3262245,217 OLD RIVER ROAD,HAMILTON TWP,17,1940,1,RES1,3001 -0112_980_9,-74.58062829,39.47395666,225 OLD RIVER ROAD,HAMILTON TWP,19,2001,1,RES1,3001 -0112_981.01_1,-74.50117266,39.33584283,407 HIGHLAND DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_981.01_10,-74.631185,39.42797,431 HIGHLAND DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_981.01_12,-74.61741989,39.43802107,423 HIGHLAND DRIVE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_981.01_13,-74.52459882,39.31226505,411 HIGHLAND DRIVE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_981.01_2,-74.63532752,39.62596032,422 CLARKSTOWN ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_981.01_3,-74.76794069,39.34887346,426 CLARKSTOWN ROAD,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_981.01_4,-74.895372,39.481511,430 CLARKSTOWN ROAD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_981.01_5,-74.5136,39.3247405,434 CLARKSTOWN ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_981.01_6,-74.578198,39.336492,456 RIDGE LANE,HAMILTON TWP,17,1989,1,GOV1,3004 -0112_981.01_7,-74.49364559,39.4916678,460 RIDGE LANE,HAMILTON TWP,17,1986,1,RES1,3001 -0112_981.01_8,-74.57575868,39.47680895,439 HIGHLAND DRIVE,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_981.01_9,-74.95201906,39.51263951,435 HIGHLAND DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_981.02_1,-74.52475526,39.47437059,458 CLARKSTOWN ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_981.02_10,-74.60570917,39.32079257,467 RIDGE LANE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_981.02_11,-74.54524069,39.53086114,461 RIDGE LANE,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_981.02_2,-74.601614,39.3286655,462 CLARKSTOWN ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_981.02_3,-74.597645,39.3807645,466 CLARKSTOWN ROAD,HAMILTON TWP,17,1982,1,RES1,3001 -0112_981.02_4,-74.50059783,39.45962947,470 CLARKSTOWN ROAD,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_981.02_5,-74.7565545,39.6005335,474 CLARKSTOWN ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_981.02_6,-74.5241995,39.318503,478 CLARKSTOWN ROAD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_981.02_7,-74.49528053,39.34185082,479 RIDGE LANE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_981.02_8,-74.61137016,39.32234552,475 RIDGE LANE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_981.02_9,-74.5136855,39.385606,471 RIDGE LANE,HAMILTON TWP,17,1990,1,GOV1,3004 -0112_981.03_1.01,-74.49325825,39.45898004,525 GRAVELLY RUN ROAD,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_981.03_1.02,-74.6980095,39.422213,529 GRAVELLY RUN ROAD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_981.03_3,-74.4832525,39.340976,5055 MAYS LANDING SP RD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_981.03_4,-74.60195146,39.32664691,569 GRAVELLY RUN ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_981.03_5,-74.9112765,39.5111915,563 GRAVELLY RUN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_981.03_6,-74.37581747,39.41403055,559 GRAVELLY RUN ROAD,HAMILTON TWP,17,1978,1,RES1,3001 -0112_981.03_65,-74.49005966,39.33279063,530 CLARKSTOWN ROAD,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_981.03_67,-74.585345,39.359579,5045 MAYS LANDING SP RD,HAMILTON TWP,,1830,1,RES1,3001 -0112_981.03_7,-74.6360615,39.3816505,555 GRAVELLY RUN ROAD,HAMILTON TWP,18,1984,1,GOV1,3004 -0112_981.03_8,-74.523539,39.319639,551 GRAVELLY RUN ROAD,HAMILTON TWP,17,1984,1,GOV1,3004 -0112_981.03_9,-74.5075985,39.324832,547 GRAVELLY RUN ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_981_15,-74.408631,39.380631,119 MARLIN LANE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_981_18,-74.7656175,39.3094155,113 MARLIN LANE,HAMILTON TWP,17,1985,1,RES1,3001 -0112_981_2,-74.79054632,39.63114511,126 KATHERINE AVENUE,HAMILTON TWP,16,1920,1,RES1,3001 -0112_981_21,-74.53729562,39.38234367,104 MARLIN LANE,HAMILTON TWP,17,1997,1,RES1,3001 -0112_981_23,-74.50424158,39.41334821,120 MARLIN LANE,HAMILTON TWP,,1956,1,RES1,3001 -0112_981_24,-74.9362565,39.519813,126 MARLIN LANE,HAMILTON TWP,17,1955,1,RES1,3001 -0112_981_30,-74.466695,39.4548645,345 OLD RIVER ROAD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_981_35.01,-74.52870344,39.54255031,361 OLD RIVER ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_981_35.02,-74.5173415,39.3243265,363 OLD RIVER ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_981_36.01,-74.60224979,39.32032275,365 OLD RIVER ROAD,HAMILTON TWP,17,1950,1,RES1,3001 -0112_981_36.02,-74.5492223,39.37675714,367 OLD RIVER ROAD,HAMILTON TWP,18,1988,1,RES1,3001 -0112_981_37,-74.47688312,39.34023666,374 OLD RIVER ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_981_38,-74.60053321,39.38051745,204 CLARKSTOWN ROAD,HAMILTON TWP,17,1991,1,RES1,3001 -0112_981_39,-74.62231377,39.41923036,208 CLARKSTOWN ROAD,HAMILTON TWP,17,1972,1,RES1,3001 -0112_981_4,-74.561987,39.390347,331 OLD RIVER ROAD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_981_40,-74.59251808,39.32686575,137 POST ROAD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_981_41,-74.67649965,39.56793355,131 POST ROAD,HAMILTON TWP,17,1976,1,RES1,3001 -0112_981_42,-74.80619398,39.62667367,127 POST ROAD,HAMILTON TWP,17,1978,1,RES1,3001 -0112_981_43.01,-74.3651785,39.4210975,121 POST ROAD,HAMILTON TWP,17,1995,1,RES1,3001 -0112_981_43.02,-74.49945108,39.33446116,117 POST ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_981_43.03,-74.63054075,39.33574107,109 POST ROAD,HAMILTON TWP,17,2017,1,RES1,3001 -0112_981_44,-74.4244725,39.370682,116 POST ROAD,HAMILTON TWP,17,1956,1,RES1,3001 -0112_981_45,-74.8561285,39.568198,244 CLARKSTOWN ROAD,HAMILTON TWP,17,1936,1,GOV1,3004 -0112_981_46.01,-74.715874,39.464751,276 CLARKSTOWN ROAD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_981_46.02,-74.65693113,39.52509045,290 CLARKSTOWN ROAD,HAMILTON TWP,16,1880,1,RES1,3001 -0112_981_47,-74.48460534,39.3519748,100 POST ROAD,HAMILTON TWP,16,1962,1,RES1,3001 -0112_981_48,-74.68413987,39.49777744,100 POST ROAD,HAMILTON TWP,,1975,1,RES1,3001 -0112_981_49,-74.51102642,39.32621484,294 CLARKSTOWN ROAD,HAMILTON TWP,16,1953,1,GOV1,3004 -0112_981_5,-74.56872342,39.36377644,341 OLD RIVER ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_981_59.01,-74.80913509,39.37458817,404 HIGHLAND DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_981_59.02,-74.5991,39.4274,408 HIGHLAND DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_981_59.03,-74.55531965,39.40661826,412 HIGHLAND DRIVE,HAMILTON TWP,17,1987,1,GOV1,3004 -0112_981_59.05,-74.8021106,39.64621932,420 HIGHLAND DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_981_59.06,-74.57399975,39.36347399,424 HIGHLAND DRIVE,HAMILTON TWP,18,1986,1,RES1,3001 -0112_981_59.07,-74.7919835,39.6432925,428 HIGHLAND DRIVE,HAMILTON TWP,19,1993,1,GOV1,3004 -0112_981_59.08,-74.93591269,39.52418245,432 HIGHLAND DRIVE,HAMILTON TWP,18,1981,1,RES1,3001 -0112_981_59.09,-74.3761145,39.4136875,436 HIGHLAND DRIVE,HAMILTON TWP,17,1981,1,GOV1,3004 -0112_981_59.11,-74.53016112,39.38494564,444 HIGHLAND COURT,HAMILTON TWP,18,1986,1,RES1,3001 -0112_981_59.12,-74.514134,39.412222,448 HIGHLAND COURT,HAMILTON TWP,18,1986,1,RES1,3001 -0112_981_59.13,-74.59520529,39.34461708,456 HIGHLAND DRIVE,HAMILTON TWP,18,1998,1,RES1,3001 -0112_981_59.15,-74.85002866,39.55966386,460 HIGHLAND DRIVE,HAMILTON TWP,18,1986,1,RES1,3001 -0112_981_59.16,-74.60705583,39.39026254,464 RIDGE LANE,HAMILTON TWP,18,1983,1,GOV1,3004 -0112_981_59.18,-74.552992,39.4272395,472 RIDGE LANE,HAMILTON TWP,18,1988,1,RES1,3001 -0112_981_59.19,-74.43786307,39.36677442,476 RIDGE LANE,HAMILTON TWP,18,1987,1,RES1,3001 -0112_981_64.01,-74.8730918,39.53982747,512 CLARKSTOWN ROAD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_981_64.02,-74.7077106,39.42896369,516 CLARKSTOWN ROAD,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_981_64.03,-74.4950705,39.4706365,524 GRAVELLY RUN ROAD,HAMILTON TWP,18,1980,1,RES1,3001 -0112_981_64.04,-74.803279,39.6335675,528 GRAVELLY RUN ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_981_64.05,-74.93889117,39.51933899,532 GRAVELLY RUN ROAD,HAMILTON TWP,17,1983,1,RES1,3001 -0112_981_64.06,-74.843335,39.632981,536 GRAVELLY RUN ROAD,HAMILTON TWP,18,1986,1,RES1,3001 -0112_981_64.07,-74.80098101,39.63471783,544 GRAVELLY RUN ROAD,HAMILTON TWP,18,1986,1,RES1,3001 -0112_981_64.08,-74.50081131,39.4192224,548 GRAVELLY RUN ROAD,HAMILTON TWP,18,1986,1,RES1,3001 -0112_981_64.09,-74.8040885,39.6401855,552 GRAVELLY RUN ROAD,HAMILTON TWP,18,1989,1,RES1,3001 -0112_981_64.11,-74.601854,39.475895,560 GRAVELLY RUN ROAD,HAMILTON TWP,18,1987,1,RES1,3003 -0112_981_64.12,-74.6143575,39.31942142,564 GRAVELLY RUN ROAD,HAMILTON TWP,17,1986,1,RES1,3001 -0112_981_64.13,-74.5142175,39.4046735,568 GRAVELLY RUN ROAD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_981_64.14,-74.5989497,39.31123143,574 GRAVELLY RUN ROAD,HAMILTON TWP,18,1986,1,RES1,3001 -0112_981_64.15,-74.48135465,39.3516712,5009 MAYS LANDING SP RD,HAMILTON TWP,17,1983,1,RES1,3001 -0112_981_64.16,-74.63825327,39.36088861,540 GRAVELLY RUN ROAD,HAMILTON TWP,17,1984,1,RES1,3001 -0112_981_69,-74.531372,39.409383,570 GRAVELLY RUN ROAD,HAMILTON TWP,18,1999,1,GOV1,3004 -0112_981_7,-74.57396866,39.3364572,135 MARLIN LANE,HAMILTON TWP,17,1981,1,RES1,3001 -0112_982_1.01,-74.62543294,39.37720952,5257 MAYS LANDING SP RD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_982_1.02,-74.7338435,39.4604465,425 OLD RIVER ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_982_1.03,-74.5576905,39.3593545,431 OLD RIVER ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_982_1.04,-74.5959275,39.4054205,433 OLD RIVER ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_982_1.05,-74.6296212,39.40770303,277 CLARKSTOWN ROAD,HAMILTON TWP,17,2003,1,RES1,3001 -0112_982_10,-74.948182,39.518312,5205 MAYS LANDING SP RD,HAMILTON TWP,17,1920,1,RES1,3001 -0112_982_11,-74.82046342,39.38494583,567 NORTH STREET,HAMILTON TWP,17,1949,1,RES1,3001 -0112_982_12,-74.63083251,39.55607835,563 NORTH STREET,HAMILTON TWP,17,1938,1,RES1,3001 -0112_982_13,-74.63804585,39.42211651,559 NORTH STREET,HAMILTON TWP,16,1940,1,RES1,3001 -0112_982_14,-74.572521,39.3518895,5225 MAYS LANDING SP RD,HAMILTON TWP,17,1992,1,RES1,3001 -0112_982_15,-74.64694677,39.35633365,551 NORTH STREET,HAMILTON TWP,17,1930,1,RES1,3001 -0112_982_16,-74.6254615,39.37339536,545 NORTH STREET,HAMILTON TWP,17,1920,1,RES1,3001 -0112_982_17,-74.61054706,39.49098126,541 NORTH STREET,HAMILTON TWP,17,1960,1,RES1,3001 -0112_982_18,-74.5664125,39.4709705,535 NORTH STREET,HAMILTON TWP,16,1920,1,RES1,3001 -0112_982_19,-74.6134035,39.539415,527 NORTH STREET,HAMILTON TWP,17,1983,1,RES1,3001 -0112_982_2,-74.37376024,39.41176323,5253 MAYS LANDING SP RD,HAMILTON TWP,16,1920,1,RES1,3001 -0112_982_21,-74.62841417,39.37796943,283 CLARKSTOWN ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_982_22,-74.4853545,39.3355045,523 NORTH STREET,HAMILTON TWP,17,1988,1,RES1,3001 -0112_982_23,-74.598159,39.3804615,519 NORTH STREET,HAMILTON TWP,17,1992,1,GOV1,3004 -0112_982_24,-74.499643,39.425312,513 NORTH STREET,HAMILTON TWP,17,1989,1,RES1,3001 -0112_982_25,-74.75472419,39.43092533,509 NORTH STREET,HAMILTON TWP,17,1985,1,RES1,3001 -0112_982_26,-74.63757997,39.43019267,506 NORTH STREET,HAMILTON TWP,17,1980,1,RES1,3001 -0112_982_27,-74.555525,39.3576995,289 CLARKSTOWN ROAD,HAMILTON TWP,17,1947,1,RES1,3001 -0112_982_3.01,-74.54727305,39.37672579,5247 MAYS LANDING SP RD,HAMILTON TWP,17,1977,1,RES1,3001 -0112_982_30,-74.64550275,39.53193518,281 CLARKSTOWN ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_982_31,-74.6000184,39.50040464,279 CLARKSTOWN ROAD,HAMILTON TWP,16,1950,1,RES1,3001 -0112_982_32,-74.93766713,39.52838427,271 CLARKSTOWN ROAD,HAMILTON TWP,16,1949,1,RES1,3001 -0112_982_33,-74.9075855,39.478158,267 CLARKSTOWN ROAD,HAMILTON TWP,16,1947,1,RES1,3001 -0112_982_34,-74.59189174,39.43472937,275 CLARKSTOWN ROAD,HAMILTON TWP,17,1995,1,RES1,3001 -0112_982_35,-74.662065,39.401942,261 CLARKSTOWN ROAD,HAMILTON TWP,17,1973,1,GOV1,3004 -0112_982_36,-74.76611631,39.31549955,247 CLARKSTOWN ROAD,HAMILTON TWP,17,1953,1,RES1,3001 -0112_982_37,-74.50923267,39.3393725,385 OLD RIVER ROAD,HAMILTON TWP,17,1985,1,RES1,3001 -0112_982_38,-74.42669064,39.37218985,391 OLD RIVER ROAD,HAMILTON TWP,17,1979,1,RES1,3001 -0112_982_4.01,-74.50228106,39.45255716,5239 MAYS LANDING SP RD,HAMILTON TWP,17,1999,1,RES1,3001 -0112_982_4.02,-74.65523033,39.39715495,5231 MAYS LANDING SP RD,HAMILTON TWP,17,1997,1,RES1,3001 -0112_982_40,-74.67128577,39.37011463,403 OLD RIVER ROAD,HAMILTON TWP,17,1964,1,GOV1,3004 -0112_982_41.02,-74.58247547,39.43232064,413 OLD RIVER ROAD,HAMILTON TWP,17,1930,1,RES1,3001 -0112_982_42,-74.50281879,39.52899598,417 OLD RIVER ROAD,HAMILTON TWP,17,1977,1,RES1,3001 -0112_982_43,-74.528761,39.450341,421 OLD RIVER ROAD,HAMILTON TWP,17,1980,1,RES1,3001 -0112_982_5,-74.71652713,39.40727075,435 OLD RIVER ROAD,HAMILTON TWP,17,1991,1,GOV1,3004 -0112_982_7,-74.3652245,39.4063515,5219 MAYS LANDING SP RD,HAMILTON TWP,16,1920,1,RES1,3001 -0112_982_8,-74.55916008,39.36688874,5215 MAYS LANDING SP RD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_982_9,-74.532849,39.3766975,5209 MAYS LANDING SP RD,HAMILTON TWP,14,1920,1,COM8,3004 -0112_983_1,-74.831777,39.3848115,5131 MAYS LANDING SP RD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_983_10,-74.60302804,39.38702717,474 FRANKLIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_983_11,-74.483223,39.3396905,472 FRANKLIN DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_983_12,-74.5828955,39.40291,470 FRANKLIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_983_13,-74.4921155,39.335329,469 FRANKLIN DRIVE,HAMILTON TWP,18,1985,1,RES1,3001 -0112_983_14,-74.45754668,39.37411502,467 FRANKLIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_983_15,-74.85907645,39.48859722,465 FRANKLIN DRIVE,HAMILTON TWP,17,1989,1,RES1,3001 -0112_983_16,-74.4943605,39.3336195,463 FRANKLIN DRIVE,HAMILTON TWP,17,1994,1,RES1,3001 -0112_983_17,-74.49781437,39.334289,461 FRANKLIN DRIVE,HAMILTON TWP,17,1993,1,RES1,3001 -0112_983_18,-74.574473,39.344509,459 FRANKLIN DRIVE,HAMILTON TWP,17,1987,1,RES1,3001 -0112_983_19,-74.497773,39.412479,453 CLARKSTOWN ROAD,HAMILTON TWP,17,1988,1,GOV1,3004 -0112_983_2,-74.63934963,39.53117044,5125 MAYS LANDING SP RD,HAMILTON TWP,16,1942,1,RES1,3001 -0112_983_20,-74.3819065,39.3985905,445 CLARKSTOWN ROAD,HAMILTON TWP,17,1989,1,RES1,3001 -0112_983_21,-74.753742,39.4322605,439 CLARKSTOWN ROAD,HAMILTON TWP,17,1988,1,RES1,3001 -0112_983_22,-74.53586428,39.38469419,431 CLARKSTOWN ROAD,HAMILTON TWP,17,1990,1,RES1,3001 -0112_983_23,-74.51594976,39.45886561,425 CLARKSTOWN ROAD,HAMILTON TWP,17,1983,1,RES1,3001 -0112_983_24,-74.58339781,39.35953344,419 CLARKSTOWN ROAD,HAMILTON TWP,17,1996,1,RES1,3001 -0112_983_25,-74.8717985,39.4900595,401 CLARKSTOWN ROAD,HAMILTON TWP,17,1972,2,RES1,3001 -0112_983_27,-74.6101485,39.3693465,347 CLARKSTOWN ROAD,HAMILTON TWP,16,1977,1,RES1,3001 -0112_983_28,-74.490189,39.4948205,349 CLARKSTOWN ROAD,HAMILTON TWP,,1960,1,RES1,3001 -0112_983_29,-74.6263935,39.43448288,341 CLARKSTOWN ROAD,HAMILTON TWP,,1900,1,RES1,3001 -0112_983_3,-74.55756588,39.47658322,5117 MAYS LANDING SP RD,HAMILTON TWP,16,1944,1,RES1,3001 -0112_983_31,-74.785445,39.6394335,337 CLARKSTOWN ROAD,HAMILTON TWP,19,2003,1,RES1,3001 -0112_983_32,-74.64536986,39.37443402,331 CLARKSTOWN ROAD,HAMILTON TWP,17,1972,1,RES1,3001 -0112_983_33,-74.64246511,39.52721026,327 CLARKSTOWN ROAD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_983_34,-74.47471479,39.48073256,323 CLARKSTOWN ROAD,HAMILTON TWP,17,1974,1,RES1,3001 -0112_983_35,-74.637484,39.5271575,319 CLARKSTOWN ROAD,HAMILTON TWP,16,1900,1,RES1,3001 -0112_983_36,-74.85239966,39.55025702,315 CLARKSTOWN ROAD,HAMILTON TWP,16,1951,1,GOV1,3004 -0112_983_39,-74.7479235,39.4520465,546 NORTH STREET,HAMILTON TWP,16,1965,1,GOV1,3004 -0112_983_4,-74.50071525,39.45488054,545 CLARKSTOWN ROAD,HAMILTON TWP,16,1937,1,GOV1,3004 -0112_983_40,-74.53712466,39.38275498,552 NORTH STREET,HAMILTON TWP,17,1979,1,RES1,3001 -0112_983_41,-74.6142365,39.369744,556 NORTH STREET,HAMILTON TWP,17,1975,1,RES1,3001 -0112_983_42,-74.51557612,39.44661808,564 NORTH STREET,HAMILTON TWP,17,1981,1,GOV1,3004 -0112_983_43,-74.5470959,39.52732414,578 NORTH STREET,HAMILTON TWP,17,1978,1,RES1,3001 -0112_983_44,-74.61182349,39.43040521,5127 MAYS LANDING SP RD,HAMILTON TWP,16,1959,1,RES1,3001 -0112_983_5,-74.743884,39.656346,529 CLARKSTOWN ROAD,HAMILTON TWP,15,1918,1,GOV1,3004 -0112_983_6,-74.92448676,39.47427448,523 CLARKSTOWN ROAD,HAMILTON TWP,17,1961,1,RES1,3004 -0112_983_7,-74.56338917,39.35487757,519 CLARKSTOWN ROAD,HAMILTON TWP,17,1975,1,GOV1,3004 -0112_983_8,-74.36295645,39.41001666,513 CLARKSTOWN ROAD,HAMILTON TWP,17,1987,1,RES1,3001 -0112_983_9,-74.61380222,39.42169603,476 FRANKLIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_984_1,-74.527472,39.3130935,464 FRANKLIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_984_2,-74.53584269,39.39916734,471 FRANKLIN DRIVE,HAMILTON TWP,17,1995,1,RES1,3001 -0112_984_3,-74.52097344,39.32222533,473 FRANKLIN DRIVE,HAMILTON TWP,17,1980,1,RES1,3001 -0112_984_4,-74.51147069,39.46424047,475 FRANKLIN DRIVE,HAMILTON TWP,17,1988,1,RES1,3001 -0112_984_5,-74.9497765,39.516072,460 FRANKLIN DRIVE,HAMILTON TWP,17,1976,1,RES1,3001 -0112_984_6,-74.77591785,39.64440131,462 FRANKLIN DRIVE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_985_2,-74.782538,39.543258,5703 MAYS LANDING SP RD,HAMILTON TWP,16,1920,1,RES1,3001 -0112_985_3,-74.648599,39.432491,5705 MAYS LANDING SP RD,HAMILTON TWP,15,1950,1,RES1,3001 -0112_986_2.02,-74.5075725,39.3308945,5603 ATLANTIC AVENUE,HAMILTON TWP,17,1982,1,RES1,3001 -0112_986_2.03,-74.50485333,39.49287004,5609 ATLANTIC AVENUE,HAMILTON TWP,17,1991,1,GOV1,3004 -0112_986_3,-74.50105087,39.42566858,5613 ATLANTIC AVENUE,HAMILTON TWP,17,1948,2,RES1,3001 -0112_986_4,-74.38562135,39.39834753,5615 ATLANTIC AVENUE,HAMILTON TWP,45,1926,2,RES1,3001 -0112_986_5,-74.82486289,39.48899128,5617 ATLANTIC AVENUE,HAMILTON TWP,17,1930,1,RES1,3001 -0112_986_6,-74.40841082,39.39166603,5619 ATLANTIC AVENUE,HAMILTON TWP,17,1901,1,RES1,3001 -0112_986_8,-74.5678245,39.3642315,5623 ATLANTIC AVENUE,HAMILTON TWP,,1926,1,RES1,3001 -0112_986_9,-74.4734133,39.4856058,5625 ATLANTIC AVENUE,HAMILTON TWP,,1924,1,RES1,3001 -0112_987_2,-74.658036,39.398489,5555 ATLANTIC AVENUE,HAMILTON TWP,,1950,1,RES1,3001 -0112_987_4,-74.464907,39.357393,5400 HARDING HWY,HAMILTON TWP,,1988,1,RES1,3001 -0112_987_5.01,-74.5511535,39.3700185,JAMES N. HOLMES BLVD,HAMILTON TWP,,2004,1,RES1,3001 -0112_988_12,-74.6028223,39.31167897,5570 ATLANTIC AVENUE,HAMILTON TWP,15,1957,1,RES1,3001 -0112_988_13,-74.59169,39.3232105,5516 ATLANTIC AVENUE,HAMILTON TWP,17,1950,1,RES1,3001 -0112_988_14.01,-74.47907078,39.47859789,5512 ATLANTIC AVENUE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_988_14.02,-74.7169403,39.39022012,5506 ATLANTIC AVENUE,HAMILTON TWP,17,1978,1,RES1,3001 -0112_988_14.03,-74.64629401,39.53455481,5510 ATLANTIC AVENUE,HAMILTON TWP,17,1984,1,RES1,3001 -0112_988_15.01,-74.82940806,39.64911483,5504 ATLANTIC AVENUE,HAMILTON TWP,17,1976,1,RES1,3002 -0112_988_2,-74.81321508,39.61588365,5616 ATLANTIC AVENUE,HAMILTON TWP,16,1920,2,RES1,3001 -0112_988_4,-74.415362,39.36549,5476 MAYS LANDING SP RD,HAMILTON TWP,,1940,1,RES1,3001 -0112_988_5,-74.5999875,39.339945,5474 MAYS LANDING SP RD,HAMILTON TWP,17,1950,1,RES1,3001 -0112_988_7,-74.9098335,39.4932535,5472 MAYS LANDING SP RD,HAMILTON TWP,16,1920,1,RES1,3001 -0112_988_8,-74.54680675,39.47211693,5470 MAYS LANDING SP RD,HAMILTON TWP,17,1986,1,GOV1,3004 -0112_989_2,-74.59326336,39.34301309,5434 MAYS LANDING SP RD,HAMILTON TWP,17,1970,1,RES1,3001 -0112_989_3,-74.3581765,39.414571,5430 MAYS LANDING SP RD,HAMILTON TWP,17,1958,1,RES1,3001 -0112_99_19,-74.4850205,39.4645515,1303 DIVISION AVENUE,HAMILTON TWP,16,1957,1,RES1,3001 -0112_991_1,-74.84179874,39.48942542,5500 ATLANTIC AVENUE,HAMILTON TWP,,1966,1,RES1,3001 -0112_991_15.01,-74.65550044,39.35907227,5318 MAYS LANDING SP RD,HAMILTON TWP,17,1972,1,RES1,3001 -0112_991_16.01,-74.56703326,39.4758565,5316 ATLANTIC AVENUE,HAMILTON TWP,,1987,1,RES1,3001 -0112_991_16.02,-74.8167872,39.3776834,5306 ATLANTIC AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_991_17,-74.675374,39.387928,1445 CANTILLON BLVD,HAMILTON TWP,,1987,1,RES1,3001 -0112_991_2,-74.49671608,39.33395116,5450 ATLANTIC AVENUE,HAMILTON TWP,,1972,1,RES1,3004 -0112_991_20.01,-74.4914005,39.3353825,1421 CANTILLON BLVD,HAMILTON TWP,,1986,1,RES1,3001 -0112_991_20.02,-74.58803491,39.31922135,1417 CANTILLON BLVD,HAMILTON TWP,,1998,1,RES1,3001 -0112_991_21,-74.487442,39.4408745,1413 CANTILLON BLVD,HAMILTON TWP,,1990,1,RES1,3001 -0112_991_22.01,-74.61165371,39.32015283,1409 CANTILLON BLVD,HAMILTON TWP,,1987,1,RES1,3001 -0112_991_22.02,-74.852022,39.559803,1405 CANTILLON BLVD,HAMILTON TWP,,1987,1,RES1,3001 -0112_991_25,-74.639268,39.5333005,5244 MAYS LANDING SP RD,HAMILTON TWP,,0,1,RES1,3001 -0112_991_26,-74.5672855,39.4725665,5228 MAYS LANDING SP RD,HAMILTON TWP,17,1981,1,RES1,3001 -0112_991_3.01,-74.3720235,39.4075755,JAMES N. HOLMES BLVD,HAMILTON TWP,,2005,1,RES1,3001 -0112_991_39,-74.372478,39.414119,5101 OAKWOOD BOULEVARD,HAMILTON TWP,,1990,1,RES1,3001 -0112_991_5,-74.46975264,39.48875035,5404 MAYS LANDING SP RD,HAMILTON TWP,17,1974,1,RES1,3001 -0112_994.01_1,-74.56704763,39.35584843,5030 UNAMI BOULEVARD,HAMILTON TWP,,1987,1,COM1,3004 -0112_994_10,-74.79924345,39.63499985,PINEWOOD BOULEVARD,HAMILTON TWP,,1990,1,RES1,3001 -0112_994_15,-74.590644,39.4040645,1440 PINEWOOD BOULEVARD,HAMILTON TWP,,1985,1,RES1,3001 -0112_994_3,-74.5056035,39.339905,5230 ATLANTIC AVENUE,HAMILTON TWP,,1979,1,RES1,3001 -0112_994_31,-74.56554773,39.47849485,5274 CEDARWOOD BOULEVARD,HAMILTON TWP,,1989,1,RES1,3001 -0112_994_4,-74.43441775,39.36957446,5218 ATLANTIC AVENUE,HAMILTON TWP,,1986,1,RES2,3005 -0112_994_44,-74.76139719,39.44431734,5112 OAKWOOD BOULEVARD,HAMILTON TWP,,2004,1,RES1,3001 -0112_994_45,-74.50475767,39.326845,5108 OAKWOOD BOULEVARD,HAMILTON TWP,,0,1,RES1,3001 -0112_994_46,-74.78703813,39.67582944,5104 OAKWOOD BOULEVARD,HAMILTON TWP,,2003,1,RES1,3001 -0112_994_46.01,-74.43686364,39.35913733,BABCOCK ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_994_47,-74.49455251,39.33746217,5080 ATLANTIC AVENUE,HAMILTON TWP,,0,1,RES1,3001 -0112_994_48,-74.373587,39.3999205,NINETEENTH ST,HAMILTON TWP,,0,1,RES1,3001 -0112_994_5,-74.51258033,39.40717741,1460 CANTILLON BLVD,HAMILTON TWP,,1985,1,RES1,3001 -0112_994_58.02,-74.62002767,39.3860067,5060 ATLANTIC AVENUE,HAMILTON TWP,,1985,1,RES1,3001 -0112_994_58.05,-74.71684985,39.40623373,5034 ATLANTIC AVENUE,HAMILTON TWP,,1989,1,RES1,3001 -0112_994_8,-74.88659871,39.47684456,1471 NINETEENTH ST,HAMILTON TWP,,0,1,RES1,3001 -0112_994_9,-74.50383543,39.33207235,1477 NINETEENTH ST,HAMILTON TWP,,0,1,RES1,3001 -0112_995_1.01,-74.36490237,39.42182829,700 BABCOCK ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_995_1.03,-74.54455141,39.47643922,800 BABCOCK ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_996.01_1,-74.5478479,39.4658305,HARTMANN & ROUTE 40,HAMILTON TWP,,0,1,RES1,3001 -0112_996.01_10,-74.731263,39.4399005,18 GASKO ROAD,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.01_100,-74.55600612,39.37485845,196 SORRENTINO WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_101,-74.53539231,39.37871446,198 SORRENTINO WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_102,-74.61221813,39.48615519,200 SORRENTINO WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_103,-74.48866697,39.33418318,202 SORRENTINO WAY,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_104,-74.55753405,39.37068233,204 SORRENTINO WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_105,-74.8135719,39.61568916,206 SORRENTINO WAY,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_106,-74.920409,39.4710135,208 SORRENTINO WAY,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_11,-74.618532,39.4365405,20 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_12,-74.52441011,39.41817932,22 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_13,-74.8648475,39.4344515,24 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_14,-74.46123726,39.48921294,26 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_15,-74.9260645,39.5086215,28 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_16,-74.53832478,39.47122245,30 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_17,-74.7987105,39.632981,32 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_18,-74.62269098,39.46030769,34 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_19,-74.81272277,39.65167188,36 GASKO ROAD,HAMILTON TWP,17,2003,1,RES1,3001 -0112_996.01_2,-74.51806984,39.41129242,2 GASKO ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_20,-74.57227216,39.33878565,38 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_21,-74.38399168,39.39854507,40 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.01_22,-74.4909325,39.5195195,42 GASKO ROAD,HAMILTON TWP,17,2003,1,RES1,3001 -0112_996.01_23,-74.5786275,39.4303,44 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_24,-74.5940205,39.3131515,46 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_25,-74.5709514,39.34215219,48 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_26,-74.77942887,39.63458256,50 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_27,-74.507141,39.3379205,52 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_28,-74.580191,39.4297915,54 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_29,-74.48443945,39.3538573,56 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_29.01,-74.48234572,39.35255084,5113 HARDING HWY,HAMILTON TWP,,1946,1,RES1,3001 -0112_996.01_3,-74.54452248,39.50775367,4 GASKO ROAD,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.01_30,-74.6043045,39.506585,58 GASKO ROAD,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.01_31,-74.7633595,39.3068255,60 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.01_34,-74.8046745,39.629904,66 GASKO ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.01_35,-74.515774,39.391492,68 GASKO ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.01_36,-74.81254233,39.6370105,70 GASKO ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.01_37,-74.3757825,39.401768,72 GASKO ROAD,HAMILTON TWP,17,2009,1,RES1,3001 -0112_996.01_38,-74.64566704,39.53616316,74 GASKO ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.01_39,-74.79710645,39.62200917,76 GASKO ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.01_4,-74.62712136,39.35173859,6 GASKO ROAD,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.01_40,-74.7024555,39.351194,78 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.01_41,-74.37497423,39.41678438,80 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.01_42,-74.5029634,39.41856631,82 GASKO ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.01_43,-74.52508117,39.31257167,84 GASKO ROAD,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.01_44,-74.58873142,39.4311173,86 GASKO ROAD,HAMILTON TWP,28,2008,1,RES1,3001 -0112_996.01_45,-74.5789485,39.4476105,88 GASKO ROAD,HAMILTON TWP,28,2010,1,RES1,3001 -0112_996.01_48,-74.6023683,39.53240345,94 GASKO ROAD,HAMILTON TWP,28,2010,1,RES1,3001 -0112_996.01_49,-74.40286393,39.38771845,96 GASKO ROAD,HAMILTON TWP,28,2010,1,COM1,3004 -0112_996.01_5,-74.733191,39.4364985,8 GASKO ROAD,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.01_50,-74.369476,39.4077805,98 GASKO ROAD,HAMILTON TWP,17,2009,1,RES3A,3001 -0112_996.01_51,-74.8555155,39.470356,100 GASKO ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_996.01_52,-74.63372381,39.41878644,102 GASKO ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_996.01_53,-74.50025245,39.47180438,104 GASKO ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_996.01_54,-74.452207,39.489412,106 GASKO ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_996.01_56,-74.5553675,39.3596865,110 GASKO ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_996.01_57,-74.76538,39.3071725,112 GASKO ROAD,HAMILTON TWP,17,2010,1,RES1,3001 -0112_996.01_58,-74.496633,39.337215,114 GASKO ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_59,-74.56322865,39.48717796,116 GASKO ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_996.01_6,-74.61900059,39.46220809,10 GASKO ROAD,HAMILTON TWP,28,2004,1,COM1,3004 -0112_996.01_60,-74.50783,39.3242005,118 GASKO ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_62,-74.9036295,39.5388425,122 GASKO ROAD,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_64,-74.60688742,39.56500385,124 GASKO ROAD,HAMILTON TWP,17,2012,1,RES1,3001 -0112_996.01_65,-74.36989318,39.40643097,126 GASKO ROAD,HAMILTON TWP,17,2007,1,RES3A,3001 -0112_996.01_66,-74.50950016,39.48638326,128 MARUCCI PLACE,HAMILTON TWP,17,2011,1,RES1,3001 -0112_996.01_68,-74.45070268,39.48392672,132 MARUCCI PLACE,HAMILTON TWP,17,2008,1,COM1,3004 -0112_996.01_7,-74.46751435,39.34372191,12 GASKO ROAD,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.01_71,-74.49169,39.474122,138 MARUCCI PLACE,HAMILTON TWP,17,2006,1,RES1,3002 -0112_996.01_72,-74.79684435,39.62186521,140 MARUCCI PLACE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_73,-74.62625137,39.51336997,142 MARUCCI PLACE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_74,-74.50488859,39.32505846,144 MARUCCI PLACE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_75,-74.5983425,39.5011315,146 MARUCCI PLACE,HAMILTON TWP,17,2006,1,RES3A,3001 -0112_996.01_76,-74.50381038,39.43413845,148 MARUCCI PLACE,HAMILTON TWP,17,2008,1,RES1,3001 -0112_996.01_77,-74.5874948,39.42917255,150 MARUCCI PLACE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_78,-74.7010385,39.424021,152 MARUCCI PLACE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_79,-74.757789,39.307001,154 MARUCCI PLACE,HAMILTON TWP,17,2006,1,REL1,3004 -0112_996.01_8,-74.5523115,39.469674,14 GASKO ROAD,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.01_80,-74.8815425,39.4704885,156 MARUCCI PLACE,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_81,-74.49861882,39.41677894,158 MARUCCI PLACE,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_82,-74.522534,39.39687,160 SORRENTINO WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_83,-74.5353385,39.3968585,162 SORRENTINO WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_84,-74.553006,39.468859,164 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_85,-74.48082159,39.33581281,166 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_86,-74.487718,39.336232,168 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_87,-74.61814481,39.50861576,170 GIORDANO MEWS,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_88,-74.62890195,39.3915998,172 GIORDANO MEWS,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.01_89,-74.6403044,39.36997256,174 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_9,-74.484303,39.343378,16 GASKO ROAD,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.01_90,-74.6463465,39.405977,176 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_91,-74.45222488,39.35715034,178 GIORDANO MEWS,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_92,-74.8130375,39.630865,180 GIORDANO MEWS,HAMILTON TWP,17,2007,1,RES1,3001 -0112_996.01_93,-74.566022,39.3516855,182 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_94,-74.50381717,39.33151279,184 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_95,-74.48430199,39.43514934,186 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_96,-74.53959565,39.38129254,188 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_97,-74.8999835,39.4803975,190 GIORDANO MEWS,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_98,-74.36595157,39.42279518,192 SORRENTINO WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.01_99,-74.37856021,39.40166087,194 SORRENTINO WAY,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.02_1,-74.45053581,39.37554697,HARTMANN ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_996.02_10,-74.62396895,39.41787269,17 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_11,-74.529006,39.3946745,19 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_12,-74.72796395,39.44968437,21 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_14,-74.5046305,39.326341,25 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_15,-74.64521551,39.39685166,27 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_16,-74.7280863,39.45163848,29 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_17,-74.509167,39.3281625,31 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_18,-74.54990393,39.42126239,33 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_19,-74.59177083,39.32154199,35 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_20,-74.84596,39.405522,37 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.02_21,-74.64186176,39.33099529,39 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.02_22,-74.56942483,39.37512422,41 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.02_23,-74.60938092,39.4419167,43 GASKO ROAD,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.02_24,-74.4624085,39.348348,45 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.02_25,-74.613845,39.3657345,47 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.02_26,-74.6355225,39.386922,49 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.02_27,-74.54185603,39.37412434,51 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.02_28,-74.52087033,39.40154926,53 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.02_29,-74.55353255,39.37862884,55 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.02_3,-74.5282125,39.4187205,3 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_30,-74.4839575,39.4320665,57 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.02_31,-74.50193684,39.43269022,59 SORRENTINO WAY,HAMILTON TWP,28,2005,1,GOV1,3004 -0112_996.02_32,-74.814373,39.6166265,61 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.02_33,-74.54883606,39.38060764,63 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.02_34,-74.50946016,39.33750361,65 SORRENTINO WAY,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.02_35,-74.47039418,39.34592476,67 SORRENTINO WAY,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.02_36,-74.81697101,39.62473216,69 SORRENTINO WAY,HAMILTON TWP,28,2005,1,GOV1,3004 -0112_996.02_37,-74.48937966,39.53349404,71 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.02_38,-74.8078305,39.6392115,73 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.02_39,-74.5603204,39.36489392,75 SORRENTINO WAY,HAMILTON TWP,28,2005,1,REL1,3004 -0112_996.02_4,-74.59108062,39.33167522,5 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_40,-74.84918232,39.55970681,77 SORRENTINO WAY,HAMILTON TWP,28,2003,1,RES1,3001 -0112_996.02_41,-74.4835815,39.3378025,79 SORRENTINO WAY,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.02_42,-74.5016303,39.41776345,81 SORRENTINO WAY,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_43,-74.51224757,39.40775732,83 SORRENTINO WAY,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.02_44,-74.63433929,39.39020381,85 SORRENTINO WAY,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.02_45,-74.5715445,39.343132,87 SORRENTINO WAY,HAMILTON TWP,28,2004,1,GOV1,3004 -0112_996.02_46,-74.78296603,39.66328716,89 SORRENTINO WAY,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.02_47,-74.5414525,39.384886,91 SORRENTINO WAY,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.02_48,-74.92354354,39.48211282,93 SORRENTINO WAY,HAMILTON TWP,28,2004,1,RES3B,3001 -0112_996.02_5,-74.4033065,39.388353,7 GASKO ROAD,HAMILTON TWP,17,2004,1,GOV1,3004 -0112_996.02_6,-74.5190565,39.410565,9 GASKO ROAD,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.02_7,-74.5800115,39.430231,11 GASKO ROAD,HAMILTON TWP,17,2008,1,RES1,3001 -0112_996.02_8,-74.78117078,39.63732616,13 GASKO ROAD,HAMILTON TWP,17,2009,1,RES1,3001 -0112_996.02_9,-74.48582267,39.33606649,15 GASKO ROAD,HAMILTON TWP,17,2005,1,RES1,3001 -0112_996.03_1,-74.6031225,39.527806,86 SORRENTINO WAY,HAMILTON TWP,,2007,1,RES1,3001 -0112_996.03_10,-74.87589852,39.49594345,140 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.03_11,-74.624536,39.3940105,138 GIUNTA WALK,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.03_12,-74.46030818,39.35277845,120 GIUNTA WALK,HAMILTON TWP,17,2006,1,RES1,3001 -0112_996.03_13,-74.499512,39.4997885,118 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.03_14,-74.46554841,39.3474598,116 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.03_15,-74.52287176,39.47133642,114 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.03_16,-74.48475641,39.42973111,112 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.03_2,-74.45390967,39.48815222,84 SORRENTINO WAY,HAMILTON TWP,17,2004,1,RES1,3001 -0112_996.03_3,-74.60450616,39.39176548,82 SORRENTINO WAY,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.03_4,-74.63717784,39.52410752,80 SORRENTINO WAY,HAMILTON TWP,28,2004,1,RES1,3001 -0112_996.03_5,-74.918285,39.492175,78 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.03_6,-74.6396625,39.5292575,76 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.03_7,-74.3741355,39.420314,74 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.03_8,-74.5365565,39.384412,72 SORRENTINO WAY,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.03_9,-74.55391177,39.36532291,142 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_1,-74.91508023,39.48748138,147 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_10,-74.80734366,39.63015149,129 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_12,-74.920762,39.566066,125 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_13,-74.6409007,39.42230253,123 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_14,-74.49479492,39.33591915,121 GIUNTA WALK,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.04_15,-74.87270299,39.59416946,119 GIUNTA WALK,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.04_16,-74.881539,39.596829,117 GIUNTA WALK,HAMILTON TWP,28,2005,1,RES1,3001 -0112_996.04_17,-74.62277976,39.38082538,115 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_18,-74.644431,39.5441135,113 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_19,-74.44580989,39.48303479,111 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_2,-74.74823743,39.59287262,145 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_20,-74.600941,39.501207,109 DEAL LANE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_996.04_21,-74.4887885,39.4362035,107 DEAL LANE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_996.04_22,-74.91612233,39.48061975,105 DEAL LANE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_996.04_23,-74.52357404,39.39810322,103 DEAL LANE,HAMILTON TWP,28,2010,1,RES1,3001 -0112_996.04_24,-74.6372095,39.426595,101 DEAL LANE,HAMILTON TWP,28,2008,1,RES1,3001 -0112_996.04_25,-74.5039925,39.332529,99 DEAL LANE,HAMILTON TWP,28,2009,1,RES1,3001 -0112_996.04_26,-74.459713,39.353418,97 DEAL LANE,HAMILTON TWP,28,2007,1,GOV1,3004 -0112_996.04_27,-74.598856,39.413539,95 DEAL LANE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.04_28,-74.502876,39.415862,93 DEAL LANE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.04_29,-74.54415402,39.39857582,91 DEAL LANE,HAMILTON TWP,28,2007,1,RES1,3001 -0112_996.04_3,-74.46077637,39.35303634,143 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_30,-74.38314757,39.41756344,89 GASKO ROAD,HAMILTON TWP,28,2010,1,RES1,3001 -0112_996.04_31,-74.49432616,39.33690994,87 GASKO ROAD,HAMILTON TWP,28,2010,1,RES1,3001 -0112_996.04_32,-74.51221115,39.48599186,85 GASKO ROAD,HAMILTON TWP,28,2012,1,RES1,3001 -0112_996.04_33,-74.39166104,39.39304716,83 GASKO ROAD,HAMILTON TWP,28,2012,1,RES1,3001 -0112_996.04_34,-74.60335232,39.48435787,81 GASKO ROAD,HAMILTON TWP,28,2008,1,RES1,3001 -0112_996.04_35,-74.54933713,39.38240563,79 GASKO ROAD,HAMILTON TWP,28,2008,1,RES1,3001 -0112_996.04_36,-74.4666235,39.346265,77 GASKO ROAD,HAMILTON TWP,28,2006,1,EDU1,3004 -0112_996.04_37,-74.602437,39.319973,75 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_38,-74.8836905,39.4974605,73 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_39,-74.5550836,39.42627019,71 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_4,-74.649123,39.3765965,141 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_40,-74.5505435,39.3825555,69 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_41,-74.64965695,39.54944963,67 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_42,-74.81863939,39.62254603,65 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_43,-74.488207,39.442949,63 GASKO ROAD,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_5,-74.610183,39.51997567,139 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_6,-74.48694109,39.4961135,137 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_7,-74.8206135,39.3659295,135 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996.04_9,-74.8738265,39.596285,131 GIUNTA WALK,HAMILTON TWP,28,2006,1,RES1,3001 -0112_996_1,-74.47984594,39.35057481,104 OLD EGG HARBOR ROAD,HAMILTON TWP,17,2008,1,RES3A,3001 -0112_996_10,-74.88266885,39.53701083,166 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_996_11,-74.622946,39.6259205,164 OLD EGG HARBOR ROAD,HAMILTON TWP,16,1960,1,RES1,3001 -0112_996_12,-74.73217634,39.43923477,5459 ILIFF ROAD,HAMILTON TWP,,1976,1,RES1,3001 -0112_996_14,-74.81715835,39.40926432,5439 HARDING HWY,HAMILTON TWP,,1968,1,RES1,3001 -0112_996_15,-74.60194267,39.31890309,5435 HARDING HWY,HAMILTON TWP,,1961,1,RES1,3001 -0112_996_2,-74.5972465,39.3198865,5467 HARDING HIGHWAY,HAMILTON TWP,,1926,1,RES3B,3001 -0112_996_26,-74.546355,39.4696035,5100 BLACK HORSE PIKE,HAMILTON TWP,,0,1,RES1,3001 -0112_996_27,-74.940623,39.527339,HARDING HIGHWAY,HAMILTON TWP,,0,1,RES1,3001 -0112_996_27_C0101,-74.51007548,39.45850233,5303 HARDING HWY #101,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0102,-74.942513,39.5178615,5303 HARDING HWY #102,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0103,-74.55179634,39.38257712,5303 HARDING HWY #106,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0104,-74.80286665,39.63172454,5303 HARDING HWY #105,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0105,-74.7493275,39.4529715,5303 HARDING HWY #103,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0106,-74.80161533,39.6343775,5303 HARDING HWY #104,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0107,-74.76442294,39.36321024,5303 HARDING HWY #107,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0108,-74.636582,39.3659575,5303 HARDING HWY #108,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0109,-74.65061785,39.34984649,5303 HARDING HWY #202,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0110,-74.86661352,39.60082184,5303 HARDING HWY #201,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0111,-74.7382425,39.4530775,5303 HARDING HWY #206,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0112,-74.5627785,39.3638935,5303 HARDING HWY #205,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0113,-74.48507067,39.47913401,5303 HARDING HWY #203,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0114,-74.8846085,39.597016,5303 HARDING HWY #204,HAMILTON TWP,33,1973,1,GOV1,3004 -0112_996_27_C0115,-74.4704515,39.342344,5303 HARDING HWY #207,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0116,-74.79883466,39.64255298,5303 HARDING HWY #208,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0117,-74.8091541,39.40354069,5303 HARDING HWY #302,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0118,-74.5699795,39.343343,5303 HARDING HWY #301,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0119,-74.49914065,39.43238874,5303 HARDING HWY #306,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0120,-74.5216255,39.398783,5303 HARDING HWY #305,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0121,-74.51894015,39.38907032,5303 HARDING HWY #303,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0122,-74.822942,39.629622,5303 HARDING HWY #304,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0123,-74.82512976,39.56641983,5303 HARDING HWY #307,HAMILTON TWP,33,1973,1,GOV1,3004 -0112_996_27_C0124,-74.84605632,39.48866248,5303 HARDING HWY #308,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0125,-74.73469375,39.45002241,5303 HARDING HWY #402,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0126,-74.55257445,39.37004575,5303 HARDING HWY #401,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0127,-74.4916,39.3350315,5303 HARDING HWY #406,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0128,-74.61413183,39.39515084,5303 HARDING HWY #405,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0129,-74.6172855,39.3894725,5303 HARDING HWY #403,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0130,-74.4921145,39.3338285,5303 HARDING HWY #404,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0131,-74.891113,39.472071,5303 HARDING HWY #407,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0132,-74.58454302,39.48642113,5303 HARDING HWY #408,HAMILTON TWP,33,1973,1,GOV1,3004 -0112_996_27_C0201,-74.40836,39.3813685,5303 HARDING HWY #1201,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0202,-74.44921082,39.35492103,5303 HARDING HWY #1202,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0203,-74.48532116,39.33597602,5303 HARDING HWY #1206,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0204,-74.876526,39.567294,5303 HARDING HWY #1205,HAMILTON TWP,33,1973,1,GOV1,3004 -0112_996_27_C0205,-74.60052033,39.33083849,5303 HARDING HWY #1203,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0206,-74.4869585,39.5001295,5303 HARDING HWY #1204,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0207,-74.91113176,39.48844694,5303 HARDING HWY #1207,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0208,-74.80073535,39.63490054,5303 HARDING HWY #1208,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0209,-74.80208484,39.63879983,5303 HARDING HWY #1102,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0210,-74.6160475,39.42935,5303 HARDING HWY #1101,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0211,-74.56892543,39.36681525,5303 HARDING HWY #1106,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0212,-74.51905289,39.52617378,5303 HARDING HWY #1105,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0213,-74.49459432,39.33151905,5303 HARDING HWY #1103,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0214,-74.66517566,39.45566962,5303 HARDING HWY #1104,HAMILTON TWP,33,1973,1,GOV1,3004 -0112_996_27_C0215,-74.53004831,39.38392252,5303 HARDING HWY #1107,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0216,-74.44713789,39.3724762,5303 HARDING HWY #1108,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0217,-74.4009895,39.385138,5303 HARDING HWY #1002,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0218,-74.61129224,39.36914006,5303 HARDING HWY #1001,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0219,-74.7641505,39.3514955,5303 HARDING HWY #1006,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0220,-74.56458937,39.35450118,5303 HARDING HWY #1005,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0221,-74.60314632,39.32212849,5303 HARDING HWY #1003,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0222,-74.4696075,39.4888415,5303 HARDING HWY #1004,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0223,-74.59107244,39.37931521,5303 HARDING HWY #1007,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0224,-74.371025,39.4101835,5303 HARDING HWY #1008,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0225,-74.414715,39.3650725,5303 HARDING HWY #902,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0226,-74.9475075,39.518014,5303 HARDING HWY #901,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0227,-74.7284492,39.58727318,5303 HARDING HWY #906,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0228,-74.7583865,39.42967,5303 HARDING HWY #905,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0229,-74.81983163,39.62258037,5303 HARDING HWY #903,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0230,-74.5642875,39.555881,5303 HARDING HWY #904,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0231,-74.78742536,39.52947768,5303 HARDING HWY #907,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0232,-74.54907521,39.47405355,5303 HARDING HWY #908,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0301,-74.93932262,39.51767931,5303 HARDING HWY #1601,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0302,-74.537857,39.3869745,5303 HARDING HWY #1602,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0303,-74.5892465,39.332418,5303 HARDING HWY #1606,HAMILTON TWP,33,1973,1,RES3A,3001 -0112_996_27_C0304,-74.936371,39.52425,5303 HARDING HWY #1605,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0305,-74.82774885,39.40795824,5303 HARDING HWY #1603,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0306,-74.854283,39.4728635,5303 HARDING HWY #1604,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0307,-74.56924834,39.40586266,5303 HARDING HWY #1607,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0308,-74.60694867,39.39008288,5303 HARDING HWY #1608,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0309,-74.59123018,39.35079762,5303 HARDING HWY #1502,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0310,-74.371318,39.410853,5303 HARDING HWY #1501,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0311,-74.51284933,39.32440038,5303 HARDING HWY #1505,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0312,-74.9182845,39.524529,5303 HARDING HWY #1506,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0313,-74.5030595,39.3295325,5303 HARDING HWY #1503,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0314,-74.49735493,39.33304233,5303 HARDING HWY #1504,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0315,-74.60162066,39.44247009,5303 HARDING HWY #1507,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0316,-74.70342302,39.42037383,5303 HARDING HWY #1508,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0317,-74.470588,39.3432695,5303 HARDING HWY #1402,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0318,-74.459086,39.350851,5303 HARDING HWY #1401,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0319,-74.68989049,39.65460377,5303 HARDING HWY #1406,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0320,-74.70291284,39.57087643,5303 HARDING HWY #1405,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0321,-74.59158532,39.33185025,5303 HARDING HWY #1403,HAMILTON TWP,33,1973,1,GOV1,3004 -0112_996_27_C0322,-74.518409,39.40086,5303 HARDING HWY #1404,HAMILTON TWP,33,1973,1,GOV1,3004 -0112_996_27_C0323,-74.49907515,39.33481503,5303 HARDING HWY #1407,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0324,-74.89855488,39.53856079,5303 HARDING HWY #1408,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0325,-74.78336511,39.3078526,5303 HARDING HWY #1302,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0326,-74.58235254,39.35693076,5303 HARDING HWY #1301,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0327,-74.64232984,39.52860452,5303 HARDING HWY #1306,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0328,-74.66043032,39.4036615,5303 HARDING HWY #1305,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0329,-74.42577432,39.36519633,5303 HARDING HWY #1303,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0330,-74.5966835,39.362322,5303 HARDING HWY #1304,HAMILTON TWP,33,1973,1,GOV1,3004 -0112_996_27_C0331,-74.58795095,39.34660866,5303 HARDING HWY #1307,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_27_C0332,-74.3921745,39.391112,5303 HARDING HWY #1308,HAMILTON TWP,33,1973,1,RES1,3001 -0112_996_28.02,-74.64534732,39.37411615,5201 HARDING HWY,HAMILTON TWP,,2005,1,RES1,3001 -0112_996_3,-74.51543223,39.32218692,106 OLD EGG HARBOR ROAD,HAMILTON TWP,16,1920,1,RES1,3001 -0112_996_30,-74.8816105,39.599718,5089 HARDING HWY,HAMILTON TWP,,0,1,COM1,3004 -0112_996_31,-74.47863885,39.34625498,5061 HARDING HIGHWAY,HAMILTON TWP,,1966,2,RES1,3001 -0112_996_38,-74.6066355,39.501424,5046 BLACK HORSE PIKE,HAMILTON TWP,,1975,1,RES1,3001 -0112_996_4,-74.64070962,39.52591165,108 OLD EGG HARBOR ROAD,HAMILTON TWP,16,1930,2,RES1,3001 -0112_996_40,-74.485503,39.4960555,1911 DR.DENNIS FOREMAN DR,HAMILTON TWP,16,1999,1,RES1,3001 -0112_996_40.01,-74.56481964,39.38967284,1913 DR.DENNIS FOREMAN DR,HAMILTON TWP,17,1999,1,RES1,3001 -0112_996_40.02,-74.57389331,39.40887457,1915 DR.DENNIS FOREMAN DR,HAMILTON TWP,17,1999,1,RES1,3001 -0112_996_40.03,-74.5048591,39.33175416,1917 DR.DENNIS FOREMAN DR,HAMILTON TWP,17,1999,1,RES1,3001 -0112_996_5,-74.5652745,39.471113,116 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1994,1,RES1,3001 -0112_996_7,-74.7510885,39.6021875,HARDING HIGHWAY,HAMILTON TWP,,0,1,RES1,3001 -0112_996_7_C0101,-74.5102919,39.34079069,101 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0102,-74.8025691,39.64268663,102 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0103,-74.5315345,39.4702325,103 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0104,-74.8025515,39.6278405,104 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0105,-74.582473,39.422555,105 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0106,-74.48561492,39.33395533,106 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0107,-74.71651411,39.44942226,107 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0108,-74.5757105,39.411572,108 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0201,-74.50841719,39.32579187,201 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0202,-74.50826472,39.4603512,202 PICO COURT,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C0203,-74.38359807,39.39448798,203 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0204,-74.62269501,39.54969133,204 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0205,-74.58222717,39.42282902,205 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0206,-74.596795,39.374724,206 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0207,-74.5596885,39.397694,207 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0208,-74.7701525,39.661245,208 PICO COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0301,-74.67036535,39.51306154,301 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0302,-74.765458,39.4861965,302 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C0303,-74.489543,39.429431,303 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0304,-74.5196665,39.402209,304 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0305,-74.5061535,39.336664,305 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0306,-74.64077852,39.36502928,306 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0307,-74.49116368,39.49556078,307 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0308,-74.46276948,39.35870483,308 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0401,-74.60452077,39.33346295,401 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0402,-74.7738855,39.615833,402 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0403,-74.81494229,39.52478952,403 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,COM1,3004 -0112_996_7_C0404,-74.84244487,39.37759885,404 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C0405,-74.63406409,39.43454939,405 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0406,-74.57157619,39.37395257,406 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0407,-74.6017575,39.327189,407 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0408,-74.88514451,39.59479269,408 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0501,-74.52965405,39.38695081,501 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C0502,-74.797374,39.634414,502 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0503,-74.75542875,39.43193165,503 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0504,-74.62854229,39.36122761,504 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0505,-74.462768,39.496133,505 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0506,-74.5421915,39.458579,506 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0507,-74.38337135,39.39254246,507 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0508,-74.7146795,39.577546,508 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0601,-74.951965,39.513417,601 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0602,-74.58266674,39.32572829,602 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0603,-74.42246138,39.36674783,603 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0604,-74.73631313,39.62772736,604 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0605,-74.5107455,39.332772,605 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0606,-74.50582006,39.32959536,606 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0607,-74.83344537,39.40707478,607 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C0608,-74.5223555,39.407269,608 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0609,-74.50090543,39.4354656,609 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0610,-74.63888842,39.53428215,610 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0611,-74.80914905,39.60955117,611 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0612,-74.61089444,39.38322673,612 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0613,-74.722186,39.4434605,613 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0614,-74.60214675,39.43231566,614 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0615,-74.60881591,39.34585274,615 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C0616,-74.7354305,39.461434,616 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0701,-74.9316,39.5255505,701 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0702,-74.863959,39.575237,702 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0703,-74.459515,39.4532955,703 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0704,-74.5895927,39.42454248,704 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0705,-74.37184562,39.41166577,705 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0706,-74.81037166,39.56075398,706 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C0707,-74.65181535,39.34614234,707 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0708,-74.49643155,39.33635717,708 MEADOWBROOK DRIVE,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0801,-74.710983,39.4669075,801 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0802,-74.697303,39.4984245,802 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0803,-74.757765,39.4333215,803 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0804,-74.88468779,39.59508976,804 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0805,-74.498047,39.3354465,805 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0806,-74.50033157,39.32830568,806 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,GOV1,3004 -0112_996_7_C0807,-74.91606167,39.48038571,807 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0808,-74.82733404,39.46195731,808 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0901,-74.6282098,39.42097542,701 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0902,-74.64257419,39.37863075,702 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0903,-74.57776121,39.33256978,703 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0904,-74.56757598,39.36168018,704 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0905,-74.580155,39.3120355,705 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0906,-74.47459062,39.48597183,706 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0907,-74.8821085,39.597113,707 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C0908,-74.65245342,39.48796675,708 SUGARBUSH COURT,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C1001,-74.74666166,39.44617315,601 ALPINE COURT,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C1002,-74.56234368,39.36243152,602 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1003,-74.46109614,39.4654233,603 ALPINE COURT,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C1004,-74.8079135,39.639302,604 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1005,-74.56446562,39.35529534,605 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1006,-74.52529052,39.31557484,606 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1007,-74.80848006,39.63341234,607 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1008,-74.9619525,39.5202745,608 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1101,-74.50062531,39.4173729,701 CAMELBACK COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1102,-74.82401779,39.49655753,702 CAMELBACK COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1103,-74.62431394,39.42010146,703 CAMELBACK COURT,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C1104,-74.59570688,39.37819948,704 CAMELBACK COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1105,-74.8828515,39.596071,705 CAMELBACK COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1106,-74.54735563,39.36749083,706 CAMELBACK COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1107,-74.631645,39.4337825,707 CAMELBACK COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1108,-74.45125207,39.35754186,708 CAMELBACK COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1201,-74.5260093,39.31693168,501 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1202,-74.96840844,39.50592174,502 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1203,-74.84001456,39.52606971,503 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1204,-74.9549975,39.512213,504 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1205,-74.79294652,39.61658219,505 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1206,-74.883495,39.469141,506 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1207,-74.45231585,39.37175719,507 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1208,-74.582511,39.3464565,508 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1301,-74.459919,39.5464705,401 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1302,-74.51832582,39.44341245,402 ALPINE COURT,HAMILTON TWP,35,1973,1,GOV1,3004 -0112_996_7_C1303,-74.89096516,39.48141048,403 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1304,-74.37427833,39.41549561,404 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1305,-74.83272225,39.39856399,405 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1306,-74.76889849,39.66308267,406 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1307,-74.85702421,39.56181519,407 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1308,-74.5500375,39.476235,408 ALPINE COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1401,-74.432025,39.368904,301 KILLINGTON COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1402,-74.85415542,39.55043636,302 KILLINGTON COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1403,-74.83288178,39.39917707,303 KILLINGTON COURT,HAMILTON TWP,35,1973,1,GOV1,3004 -0112_996_7_C1404,-74.93938996,39.52216081,304 KILLINGTON COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1405,-74.6358765,39.486759,305 KILLINGTON COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1406,-74.4516184,39.35726783,306 KILLINGTON COURT,HAMILTON TWP,35,1973,1,GOV1,3004 -0112_996_7_C1407,-74.761947,39.4312745,307 KILLINGTON COURT,HAMILTON TWP,35,1973,1,GOV1,3004 -0112_996_7_C1408,-74.50334129,39.3283909,308 KILLINGTON COURT,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C1501,-74.58253689,39.32853715,251 VAIL COURT,HAMILTON TWP,35,1973,1,RES3A,3001 -0112_996_7_C1502,-74.939533,39.520101,252 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1503,-74.58337517,39.4222872,253 VAIL COURT,HAMILTON TWP,35,1973,1,COM1,3004 -0112_996_7_C1504,-74.5734815,39.368423,254 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1505,-74.92492166,39.5103667,255 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1506,-74.563737,39.356918,256 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1507,-74.92715202,39.5090971,257 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1508,-74.53776857,39.39180413,258 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1601,-74.4498005,39.488467,201 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1602,-74.93862733,39.52750752,202 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3002 -0112_996_7_C1603,-74.558923,39.36782317,203 VAIL COURT,HAMILTON TWP,35,1973,1,COM1,3004 -0112_996_7_C1604,-74.5930345,39.3786865,204 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1605,-74.4494615,39.354062,205 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1606,-74.681869,39.4973745,206 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1607,-74.94530241,39.52609767,207 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1608,-74.6366818,39.38163256,208 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1701,-74.50395774,39.32682383,101 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1702,-74.79663106,39.36546369,102 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1703,-74.590107,39.3260315,103 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3002 -0112_996_7_C1704,-74.894434,39.528238,104 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1705,-74.62642749,39.35147139,105 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1706,-74.4697779,39.48828995,106 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1707,-74.647843,39.539792,107 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_7_C1708,-74.4050425,39.3881785,108 VAIL COURT,HAMILTON TWP,35,1973,1,RES1,3001 -0112_996_8,-74.584775,39.336194,140 OLD EGG HARBOR ROAD,HAMILTON TWP,,0,1,RES1,3001 -0112_996_9,-74.51942666,39.40537985,160 OLD EGG HARBOR ROAD,HAMILTON TWP,17,1960,1,RES1,3001 -0112_997.01_1,-74.46472403,39.34392246,29 VENDER LANE,HAMILTON TWP,16,2012,1,GOV1,3004 -0112_997.01_10,-74.9219755,39.471443,48 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES3A,3001 -0112_997.01_11,-74.7549985,39.45402199,50 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997.01_12,-74.52413918,39.39029562,52 LEWIS DRIVE,HAMILTON TWP,16,2005,1,COM1,3004 -0112_997.01_13,-74.61671529,39.37062311,54 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES3B,3001 -0112_997.01_15,-74.6008445,39.34075675,47 VENDER LANE,HAMILTON TWP,16,2005,1,COM1,3004 -0112_997.01_16,-74.70012959,39.48533586,45 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3004 -0112_997.01_17,-74.48774547,39.49452874,43 VENDER LANE,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997.01_18,-74.70028894,39.64298567,41 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.01_19,-74.63096968,39.39029836,39 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.01_2,-74.5395835,39.387974,32 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.01_20,-74.50994548,39.3365593,37 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.01_21,-74.49579477,39.44365372,35 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.01_3,-74.50584807,39.42663768,34 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.01_4,-74.59838416,39.32912352,36 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997.01_5,-74.510888,39.4667485,38 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997.01_6,-74.62450377,39.35414342,40 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997.01_7,-74.736533,39.448227,42 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997.01_8,-74.48656797,39.33770822,44 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.01_9,-74.71714984,39.44570458,46 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997.02_1,-74.79982118,39.65032002,2 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_10,-74.4600625,39.3559205,20 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_11,-74.51141962,39.32960555,22 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_12,-74.59064434,39.42480931,24 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3002 -0112_997.02_13,-74.888232,39.504497,26 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_14,-74.8470495,39.4888525,28 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_15,-74.63972872,39.56578837,30 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_16,-74.48911472,39.35000502,32 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_17,-74.6530755,39.556453,34 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_18,-74.509162,39.330114,36 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_2,-74.5050155,39.3261595,4 LEWIS DRIVE,HAMILTON TWP,16,2005,1,COM1,3004 -0112_997.02_20,-74.53187873,39.41492258,40 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_21,-74.48706045,39.47849731,42 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_22,-74.49118308,39.49667472,44 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_23,-74.60812834,39.4094339,46 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_24,-74.52131281,39.39282097,48 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_25,-74.500143,39.3312475,50 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_26,-74.80562233,39.62661629,52 VENDER LANE,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997.02_27,-74.439798,39.488628,54 VENDER LANE,HAMILTON TWP,16,2005,1,COM10,3003 -0112_997.02_28,-74.4054425,39.3790295,56 VENDER LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_29,-74.68595015,39.49508297,58 KELLER WAY,HAMILTON TWP,16,2005,1,COM3,3004 -0112_997.02_3,-74.6222615,39.424578,6 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997.02_30,-74.927762,39.5099165,60 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_31,-74.54982,39.370538,62 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3002 -0112_997.02_32,-74.544485,39.37195183,64 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_33,-74.49734732,39.48957099,66 KELLER WAY,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997.02_34,-74.38742476,39.38977148,68 KELLER WAY,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997.02_35,-74.6333002,39.45552033,70 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_36,-74.91193792,39.49966863,72 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_37,-74.44405791,39.36975881,74 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_38,-74.6107635,39.323228,76 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_39,-74.44909848,39.49041143,78 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_4,-74.361525,39.413645,8 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_41,-74.563509,39.4090305,82 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_42,-74.4595874,39.35215039,84 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_44,-74.79826577,39.43524006,88 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_45,-74.70744415,39.42408236,90 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3004 -0112_997.02_46,-74.81787684,39.63409403,92 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_47,-74.62650124,39.3528026,94 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_48,-74.4951965,39.4272385,96 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_49,-74.50625923,39.48150349,98 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_5,-74.53169291,39.47116326,10 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_50,-74.72928639,39.45273119,100 MERLINO LANE,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997.02_51,-74.59901056,39.32916058,102 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_52,-74.57305372,39.34758011,104 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_53,-74.46829108,39.48962516,106 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_54,-74.65141551,39.54507683,108 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_6,-74.640026,39.5356645,12 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_7,-74.50942978,39.33043488,14 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_8,-74.789595,39.5485775,16 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.02_9,-74.6087465,39.325597,18 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.03_10,-74.66022146,39.58957604,90 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.03_11,-74.8018655,39.6411515,92 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.03_12,-74.55973353,39.35874066,94 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.03_2,-74.56925011,39.36567242,105 MERLINO LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997.03_3,-74.65162653,39.53327081,103 MERLINO LANE,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997.03_4,-74.64123334,39.53113678,101 MERLINO LANE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997.03_5,-74.515069,39.469303,99 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.03_6,-74.50061854,39.42581728,97 MERLINO LANE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997.03_9,-74.73196768,39.46147843,88 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_1,-74.43781689,39.35966903,1 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_10,-74.64465907,39.53661409,19 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_11,-74.59211156,39.37063561,21 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_12,-74.6471215,39.549291,23 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_13,-74.68171819,39.55303979,25 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_14,-74.711122,39.470068,27 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_15,-74.76078489,39.4446398,29 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_16,-74.51083755,39.47097316,31 LEWIS DRIVE,HAMILTON TWP,16,2005,1,GOV1,3004 -0112_997_17,-74.735212,39.4355145,33 LEWIS DRIVE,HAMILTON TWP,16,2006,1,GOV1,3004 -0112_997_18,-74.61049529,39.32406419,35 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_19,-74.57621733,39.33705033,37 LEWIS DRIVE,HAMILTON TWP,16,2006,1,GOV1,3004 -0112_997_2,-74.75179731,39.45213859,3 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_20,-74.7163845,39.4521065,39 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_21,-74.51124556,39.32841786,41 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_22,-74.52924951,39.40338233,43 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_23,-74.46775551,39.48857117,45 LEWIS DRIVE,HAMILTON TWP,16,2006,1,GOV1,3004 -0112_997_24,-74.50837242,39.33818333,47 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3002 -0112_997_25,-74.587818,39.412063,49 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_27,-74.64786962,39.55363585,53 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_28,-74.6661045,39.561284,55 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_29,-74.79140665,39.64788146,57 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_3,-74.6164505,39.3637565,5 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_30,-74.60313065,39.4089938,59 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES3B,3001 -0112_997_31,-74.73497717,39.43352725,61 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_32,-74.646122,39.529666,63 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_33,-74.55791069,39.35904854,65 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES3A,3002 -0112_997_34,-74.517385,39.4357165,67 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_35,-74.642542,39.528589,69 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_36,-74.50419504,39.43799633,71 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_37,-74.606071,39.3455125,73 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES3A,3001 -0112_997_38,-74.52105247,39.45652109,75 LEWIS DRIVE,HAMILTON TWP,16,2006,1,GOV1,3004 -0112_997_39,-74.49247231,39.33667802,77 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_4,-74.63494371,39.50397023,7 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES3A,3001 -0112_997_45,-74.6401564,39.39476486,89 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_47,-74.443073,39.372901,93 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_48,-74.8223885,39.6055275,95 KELLER WAY,HAMILTON TWP,16,2016,1,RES1,3001 -0112_997_49,-74.453715,39.4912315,97 KELLER WAY,HAMILTON TWP,16,2013,1,RES1,3002 -0112_997_5,-74.46593433,39.53395893,9 LEWIS DRIVE,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_50,-74.630935,39.364202,99 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_51,-74.46934751,39.48798582,101 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_52,-74.76447427,39.30339104,103 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_53,-74.8496485,39.558107,105 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_54,-74.39602824,39.38909264,107 KELLER WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_997_55,-74.63370634,39.55581448,109 KELLER WAY,HAMILTON TWP,16,2014,1,RES1,3001 -0112_997_56,-74.497745,39.4989635,111 KELLER WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_997_57,-74.61484363,39.31043914,113 KELLER WAY,HAMILTON TWP,16,2010,1,RES1,3001 -0112_997_59,-74.92410126,39.50793185,117 KELLER WAY,HAMILTON TWP,16,2016,1,RES1,3001 -0112_997_6,-74.7827495,39.5435665,11 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_60,-74.63627733,39.4332414,119 KELLER WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_997_61,-74.92662895,39.50732173,121 KELLER WAY,HAMILTON TWP,16,2015,1,RES1,3001 -0112_997_62,-74.515809,39.44012,123 KELLER WAY,HAMILTON TWP,16,2012,1,RES1,3001 -0112_997_63,-74.56638461,39.35241003,125 KELLER WAY,HAMILTON TWP,16,2013,1,RES1,3001 -0112_997_64,-74.61220175,39.34616887,127 KELLER WAY,HAMILTON TWP,16,2014,1,COM1,3004 -0112_997_65,-74.59919483,39.34356605,129 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_66,-74.4954505,39.5247425,131 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_67,-74.5477855,39.4010455,133 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_68,-74.55520875,39.36472397,135 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_69,-74.77678254,39.6650784,137 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_7,-74.5413081,39.39259329,13 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_70,-74.4841545,39.5180635,139 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_71,-74.56807608,39.37442503,141 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_72,-74.5715165,39.3549535,143 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_73,-74.7712525,39.6193135,145 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_74,-74.5635594,39.40944236,147 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_75,-74.60317942,39.3174207,149 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_76,-74.75522566,39.45349647,151 LOEFFEL COURT,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_77,-74.7866035,39.677368,153 LOEFFEL COURT,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_78,-74.57422854,39.34486386,155 LOEFFEL COURT,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_79,-74.42610967,39.37132192,157 LOEFFEL COURT,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_8,-74.54992572,39.38268897,15 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_80,-74.58477466,39.37698799,159 LOEFFEL COURT,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_81,-74.5676135,39.4737015,161 LOEFFEL COURT,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_82,-74.6380675,39.400037,163 KELLER WAY,HAMILTON TWP,16,2018,1,RES1,3001 -0112_997_83,-74.54993246,39.36233254,165 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_84,-74.8086375,39.6293675,167 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_85,-74.82229073,39.38358049,169 KELLER WAY,HAMILTON TWP,16,2018,1,RES1,3001 -0112_997_86,-74.5749303,39.35768844,171 KELLER WAY,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_87,-74.50180606,39.49338135,173 KELLER WAY,HAMILTON TWP,16,2006,1,RES1,3001 -0112_997_89,-74.51785,39.443514,177 KELLER WAY,HAMILTON TWP,16,2018,1,RES1,3001 -0112_997_9,-74.80689479,39.51764296,17 LEWIS DRIVE,HAMILTON TWP,16,2005,1,RES1,3001 -0112_997_90,-74.62425385,39.43269563,179 KELLER WAY,HAMILTON TWP,16,2018,1,RES1,3001 -0113_1001_1,-74.90265234,39.50412391,572 N 2ND RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1001_10,-74.70938544,39.4228481,620 14TH ST,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_1001_11,-74.46734816,39.34190501,606 14TH ST,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_1001_12,-74.63101264,39.34705907,602 14TH ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_1001_13,-74.7785205,39.5902385,596 14TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1001_14,-74.85287533,39.59115643,588 14TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1001_15,-74.485517,39.439519,580 14TH ST,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_1001_16,-74.4720675,39.4922735,568 14TH ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1001_18,-74.46663211,39.34449115,556 14TH ST,HAMMONTON TOWN,17,1990,1,COM1,3004 -0113_1001_19,-74.7511357,39.4693212,548 14TH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1001_2,-74.38660862,39.39535192,800 14TH ST,HAMMONTON TOWN,17,1900,1,RES3A,3001 -0113_1001_20,-74.40748868,39.38187443,540 14TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1001_21,-74.73996981,39.59323137,530 14TH ST,HAMMONTON TOWN,17,1990,1,GOV1,3004 -0113_1001_23,-74.925783,39.5260075,516 14TH ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1001_24,-74.87419705,39.59471873,508 14TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1001_25,-74.51188518,39.40820658,698 N 1ST RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1001_26,-74.422578,39.372608,696 N 1ST RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1001_27,-74.749864,39.602207,694 N 1ST RD,HAMMONTON TOWN,17,1979,1,RES1,3004 -0113_1001_28,-74.547128,39.380093,692 N 1ST RD,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1001_29,-74.573124,39.344868,682 N 1ST RD,HAMMONTON TOWN,17,1920,2,IND2,3004 -0113_1001_3,-74.60732804,39.39366831,700 14TH ST,HAMMONTON TOWN,18,2001,1,GOV1,3004 -0113_1001_30,-74.59606021,39.36482631,672 N 1ST RD,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_1001_31,-74.81935322,39.64839887,654 N 1ST RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_1001_32,-74.62328082,39.38392419,622 N 1ST RD,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_1001_33,-74.383454,39.3926495,620 N 1ST RD,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_1001_34,-74.86800894,39.59742536,616 N 1ST RD,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_1001_36,-74.7676895,39.6150605,610 N 1ST RD,HAMMONTON TOWN,17,1933,1,RES1,3001 -0113_1001_37,-74.54692,39.5412555,602 N 1ST RD,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_1001_38,-74.75515451,39.44679481,598 N 1ST RD,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_1001_39,-74.92519685,39.50577522,594 N 1ST RD,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_1001_4,-74.47622917,39.3471685,678 14TH ST,HAMMONTON TOWN,17,1919,1,RES3A,3001 -0113_1001_40,-74.589563,39.33089,570 N 1ST RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1001_42,-74.6144775,39.537239,552 N 1ST RD,HAMMONTON TOWN,17,1930,1,RES1,3002 -0113_1001_43,-74.7136223,39.43064921,548 N 1ST RD,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_1001_44.01,-74.73300049,39.46222882,542 N 1ST RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_1001_45,-74.6247292,39.41128656,540 N 1ST RD,HAMMONTON TOWN,17,1965,1,RES3A,3001 -0113_1001_46,-74.62593158,39.35472768,534 N 1ST RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_1001_47,-74.5857895,39.330137,524 N 1ST RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1001_48.01,-74.57632867,39.476998,510 N 1ST RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1001_48.02,-74.60598024,39.49020586,505 13TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_1001_48.03,-74.7063165,39.42165,517 13TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_1001_48.04,-74.57918909,39.47321236,523 13TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1001_49,-74.65075121,39.41037479,533 13TH ST,HAMMONTON TOWN,17,1977,1,GOV1,3004 -0113_1001_52,-74.572108,39.4128345,567 13TH ST,HAMMONTON TOWN,17,1964,1,GOV1,3004 -0113_1001_53,-74.80915639,39.63219436,571 13TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1001_54,-74.798002,39.6322,575 13TH ST,HAMMONTON TOWN,17,2000,1,REL1,3004 -0113_1001_55,-74.659115,39.523299,579 13TH ST,HAMMONTON TOWN,17,1930,2,GOV1,3004 -0113_1001_56,-74.8481505,39.60929,583 13TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1001_57,-74.48411664,39.49635182,595 13TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1001_59,-74.5045135,39.4327575,635 13TH ST,HAMMONTON TOWN,17,1970,1,GOV1,3004 -0113_1001_60,-74.70448024,39.41990685,649 13TH ST,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_1001_61,-74.519844,39.4159105,667 13TH ST,HAMMONTON TOWN,17,1936,1,GOV1,3004 -0113_1001_62,-74.48289382,39.4571768,671 13TH ST,HAMMONTON TOWN,17,1935,1,GOV1,3004 -0113_1001_64,-74.505204,39.4811955,695 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1001_65,-74.48784,39.34883933,731 13TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1001_66,-74.54251374,39.38176034,743 13TH ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_1001_67,-74.465961,39.34632567,761 13TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1001_68,-74.80186604,39.63906905,791 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1001_69,-74.3832445,39.392439,799 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1001_7,-74.50060767,39.33611047,650 14TH ST,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_1001_71,-74.97920136,39.51116833,839 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1001_72,-74.4367233,39.36819838,841 13TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1001_74,-74.60598297,39.32231262,550 N 2ND RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1001_9,-74.5663735,39.3473955,624 14TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_101_2,-74.5732685,39.428482,1205 MAYS LANDING RD,HAMMONTON TOWN,17,1905,1,GOV1,3004 -0113_101_3,-74.5760312,39.40942383,1201 MAYS LANDING RD,HAMMONTON TOWN,17,1932,1,RES1,3001 -0113_101_4,-74.57058081,39.42821563,1197 MAYS LANDING RD,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_101_6,-74.57208939,39.42861527,1193 MAYS LANDING RD,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_102_1,-74.50459664,39.42489032,1194 MAYS LANDING RD,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_102_2,-74.60070633,39.33068917,1196 MAYS LANDING RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_102_2.01,-74.8656754,39.59375584,27 SHERRY LN,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_102_2.02,-74.52905619,39.39546206,15 SHERRY LN,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_102_3,-74.5031589,39.42563364,33 SHERRY LN,HAMMONTON TOWN,13,1930,1,RES1,3001 -0113_102_4,-74.50281816,39.42626091,75 SHERRY LN,HAMMONTON TOWN,19,1990,1,RES1,3001 -0113_103_6,-74.5756165,39.410563,76 SHERRY LN,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_104_4,-74.61577224,39.36443342,975 14TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_104_5,-74.4247635,39.3718125,969 14TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_104_6,-74.711501,39.471415,967 14TH ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_104_8,-74.650512,39.52991367,963 14TH ST,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_106_6,-74.60219337,39.36671528,755 N 2ND RD,HAMMONTON TOWN,17,1997,1,GOV1,3004 -0113_106_6.01,-74.80393458,39.63833264,751 N 2ND RD,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_106_7,-74.67117822,39.34761411,801 N 2ND RD,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_1101_1,-74.50684726,39.4060692,894 13TH ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_1101_11,-74.689601,39.6539035,853 12TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1101_12,-74.4895175,39.335707,859 12TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1101_13.01,-74.80843301,39.5361015,863 12TH ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_1101_14,-74.767918,39.3483665,869 12TH ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_1101_15,-74.66089,39.403862,877 12TH ST,HAMMONTON TOWN,17,1935,4,RES1,3001 -0113_1101_16,-74.498497,39.416344,879 12TH ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_1101_17,-74.53360641,39.38102686,881 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1101_18,-74.837842,39.450479,889 12TH ST,HAMMONTON TOWN,,0,1,COM1,3004 -0113_1101_19,-74.4915881,39.33323617,893 12TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1101_2,-74.37355158,39.41694224,474 N 2ND RD,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_1101_2.01,-74.5572515,39.3571585,470 N 2ND RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1101_2.02,-74.67370099,39.48332033,464 N 2ND RD,HAMMONTON TOWN,17,2012,1,GOV1,3004 -0113_1101_2.03,-74.35637889,39.41356437,458 N 2ND RD,HAMMONTON TOWN,17,1978,1,GOV1,3004 -0113_1101_20,-74.8432255,39.6032535,895 12TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1101_21,-74.36933,39.4051645,897 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1101_22,-74.504173,39.5284625,430 N 2ND RD,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_1101_3,-74.605062,39.3325385,450 N 2ND RD,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_1101_4,-74.98078494,39.51261331,880 13TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1101_4.01,-74.39586938,39.38787836,864 13TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1101_5,-74.59022476,39.3761044,842 13TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1101_6,-74.6124585,39.421899,840 13TH ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_1101_7,-74.59763861,39.41139582,810 13TH ST,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_1101_8,-74.57156487,39.41406335,736 13TH ST,HAMMONTON TOWN,,1958,1,COM3,3004 -0113_1101_9,-74.54049,39.392118,730 13TH ST,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_1102_1,-74.67446283,39.48467901,700 13TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1102_10,-74.63919273,39.43617331,570 13TH ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1102_12,-74.46121566,39.48937167,564 13TH ST,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_1102_13,-74.52545694,39.44630566,550 13TH ST,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_1102_14,-74.60038023,39.43398112,542 13TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1102_15,-74.52635065,39.31390347,540 13TH ST,HAMMONTON TOWN,17,1964,1,GOV1,3004 -0113_1102_16,-74.58706763,39.41581824,532 13TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1102_17,-74.60574618,39.41400306,524 13TH ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_1102_18,-74.8068495,39.531084,518 13TH ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_1102_19,-74.50527049,39.43804767,374 N 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1102_21,-74.4616405,39.4687385,350 N 1ST RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_1102_22,-74.55104677,39.37236412,342 N 1ST RD,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_1102_22.01,-74.5298305,39.395755,336 N 1ST RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1102_22.02,-74.541267,39.5507095,330 N 1ST RD,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_1102_22.03,-74.84992907,39.55841235,324 N 1ST RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1102_23,-74.49298969,39.49542253,312 N 1ST RD,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_1102_25,-74.4001975,39.3893555,150 N CHEW RD,HAMMONTON TOWN,18,2007,1,RES1,3001 -0113_1102_26,-74.704669,39.4284835,132 N CHEW RD,HAMMONTON TOWN,17,1935,2,RES1,3001 -0113_1102_28,-74.9058675,39.48871,100 N CHEW RD,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_1102_3,-74.61126462,39.31869089,680 13TH ST,HAMMONTON TOWN,17,1982,1,GOV1,3004 -0113_1102_30,-74.617556,39.4378805,731 12TH ST AT N CHEW RD,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_1102_32,-74.3704165,39.4013735,735 12TH ST,HAMMONTON TOWN,17,1900,1,RES1,3003 -0113_1102_33.01,-74.49958209,39.47268171,737 12TH ST,HAMMONTON TOWN,17,2011,1,GOV1,3004 -0113_1102_34,-74.38481952,39.39604973,741 12TH ST,HAMMONTON TOWN,17,1947,1,RES1,3004 -0113_1102_35,-74.81622536,39.3826693,747 12TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1102_36,-74.82246636,39.53184119,759 12TH ST,HAMMONTON TOWN,15,1930,1,RES1,3001 -0113_1102_36.01,-74.50236113,39.43404938,761 12TH ST,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_1102_37,-74.60939484,39.31814801,775 12TH ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1102_38,-74.48917372,39.46187896,783 12TH ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_1102_39,-74.50293798,39.40864134,785 12TH ST,HAMMONTON TOWN,17,1954,1,GOV1,3004 -0113_1102_4,-74.39560751,39.38890795,676 13TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1102_40,-74.9474715,39.51697,787 12TH ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1102_41,-74.830026,39.635595,815 12TH ST,HAMMONTON TOWN,,1910,1,RES1,3001 -0113_1102_43,-74.80691935,39.63855743,817 12TH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_1102_44,-74.9350435,39.5116035,821 12TH ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_1102_45,-74.645793,39.4469535,835 12TH ST,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_1102_47,-74.48433,39.339171,847 12TH ST,HAMMONTON TOWN,,1930,1,RES1,3001 -0113_1102_7,-74.59144453,39.32576083,590 13TH ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_1102_8,-74.3676335,39.4130745,582 13TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1103_1,-74.5656644,39.36374541,199 N CHEW RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1103_11,-74.82508235,39.53196579,705 12TH ST,HAMMONTON TOWN,,1970,1,GOV1,3004 -0113_1103_12,-74.64322384,39.53457898,715 12TH ST,HAMMONTON TOWN,,1919,1,RES1,3001 -0113_1103_13,-74.81664578,39.6556921,719 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1103_14,-74.47719034,39.33992749,721 12TH ST,HAMMONTON TOWN,17,1960,1,GOV1,3004 -0113_1103_15,-74.92524978,39.47520922,725 12TH ST & CHEW RD,HAMMONTON TOWN,,1955,1,RES1,3001 -0113_1103_16,-74.522184,39.399437,75 N CHEW RD,HAMMONTON TOWN,,1980,1,GOV1,3004 -0113_1103_2,-74.52826157,39.38610381,124 N 1ST RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1103_3,-74.69722395,39.56289484,116 N 1ST RD,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_1103_4,-74.55939546,39.39727279,108 N 1ST RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1103_5,-74.62523101,39.36217041,101 N CHEW RD,HAMMONTON TOWN,17,1957,1,GOV1,3004 -0113_1103_6,-74.49100923,39.44690009,104 N 1ST RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1103_7,-74.63960099,39.34389852,100 N 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1103_9,-74.83927159,39.53219818,20 N 1ST RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1201_10,-74.489598,39.4415425,850 12TH ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_1201_11,-74.67739147,39.49865347,840 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1201_13,-74.50097319,39.33115612,116 S CHEW RD,HAMMONTON TOWN,17,1866,1,RES1,3001 -0113_1201_15,-74.5368045,39.404867,820 12TH ST,HAMMONTON TOWN,17,1951,2,RES1,3001 -0113_1201_16,-74.6945425,39.497519,818 12TH ST,HAMMONTON TOWN,17,1913,1,RES1,3001 -0113_1201_17,-74.51422,39.327088,816 12TH ST,HAMMONTON TOWN,17,1913,1,RES1,3001 -0113_1201_18,-74.5113,39.3255735,814 12TH ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_1201_19,-74.402115,39.3893,812 12TH ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_1201_20,-74.594409,39.311078,800 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1201_21,-74.49146934,39.33654082,784 12TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1201_22,-74.4842667,39.34618964,778 12TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1201_24,-74.60357722,39.41696782,768 12TH ST,HAMMONTON TOWN,17,1954,1,IND1,3002 -0113_1201_25,-74.8982585,39.512776,762 12TH ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_1201_28,-74.370737,39.401223,754 12TH ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_1201_29,-74.72288698,39.58763042,750 12TH ST,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_1201_3,-74.6916945,39.4209675,894 12TH ST,HAMMONTON TOWN,17,1980,1,GOV1,3004 -0113_1201_3.01,-74.80455421,39.43052052,11 COMMERCE WAY,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1201_31,-74.49901117,39.33033465,734 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1201_32,-74.47596884,39.49322698,46 S CHEW RD,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_1201_33,-74.78364068,39.45805809,58 S CHEW RD,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_1201_34,-74.59070167,39.36608658,66 S CHEW RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_1201_35,-74.45125537,39.49084155,68 S CHEW RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1201_37,-74.4984575,39.428859,72 S CHEW RD,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_1201_37.01,-74.92782419,39.50815733,82 S CHEW RD,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_1201_38,-74.76072915,39.43071641,96 S CHEW RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1201_4,-74.93523555,39.52460318,890 12TH ST,HAMMONTON TOWN,16,1962,1,RES1,3001 -0113_1201_40,-74.36894308,39.40230967,691 11TH ST,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_1201_41,-74.50741857,39.32341098,699 11TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1201_44,-74.363321,39.4159695,725 11TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1201_47,-74.83346682,39.42816752,761 11TH ST,HAMMONTON TOWN,17,1974,1,GOV1,3004 -0113_1201_48,-74.83263484,39.39403249,765 11TH ST,HAMMONTON TOWN,17,2006,1,GOV1,3004 -0113_1201_49,-74.5778765,39.337165,771 11TH ST/771A APT,HAMMONTON TOWN,17,1966,2,RES1,3001 -0113_1201_5,-74.8773795,39.571151,882 12TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1201_50,-74.8527555,39.5600655,779 11TH ST,HAMMONTON TOWN,17,1981,1,RES1,3001 -0113_1201_52,-74.4205395,39.36794,275 S 2ND RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1201_54,-74.570079,39.413538,161 S 2ND RD,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_1201_54.01,-74.56560614,39.36513825,199 S 2ND RD,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_1201_55,-74.788857,39.6398475,131 S 2ND RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1201_6,-74.44838069,39.37225766,864 12TH ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_1201_7,-74.44723303,39.38114769,860 12TH ST,HAMMONTON TOWN,17,1971,1,EDU1,3004 -0113_1201_8,-74.4430025,39.372087,856 12TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1201_9,-74.55832786,39.39756812,854 12TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1202_1,-74.6379605,39.344176,700 12TH ST AT 1ST RD,HAMMONTON TOWN,,1945,1,GOV1,3004 -0113_1202_10,-74.4920723,39.42731093,549 11TH ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_1202_11,-74.925475,39.5256605,553 11TH ST,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_1202_12,-74.61875565,39.52133266,557 11TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1202_13,-74.79979871,39.54340689,561 11TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1202_14,-74.50859405,39.32403967,567 11TH ST,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_1202_14.01,-74.711154,39.412803,565 11TH ST,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_1202_15,-74.57354788,39.42607916,577 11TH ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_1202_16,-74.64525072,39.52647879,581 11TH ST,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_1202_17,-74.64398516,39.53483498,579 11TH ST,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_1202_17.01,-74.467664,39.4889935,585 11TH ST,HAMMONTON TOWN,17,1992,1,RES3A,3001 -0113_1202_18,-74.5668735,39.360783,587 11TH ST,HAMMONTON TOWN,17,1942,1,RES1,3001 -0113_1202_19,-74.45213069,39.37483457,591 11TH ST,HAMMONTON TOWN,17,1975,1,GOV1,3004 -0113_1202_2,-74.48962716,39.3369435,101 S CHEW RD,HAMMONTON TOWN,,1980,1,GOV1,3004 -0113_1202_20,-74.61748671,39.38477963,597 11TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1202_21,-74.8058715,39.638598,599 11TH ST,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1202_22,-74.36141387,39.4128552,615 11TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1202_23,-74.45782483,39.34879655,623 11TH ST,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_1202_24,-74.50593622,39.41279964,275 S CHEW RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1202_25,-74.366337,39.4138995,57 S CHEW RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_1202_26,-74.52113601,39.31795017,51 S CHEW RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_1202_27,-74.6291785,39.5053065,45 S CHEW RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1202_28,-74.7544525,39.4533565,39 S CHEW RD,HAMMONTON TOWN,17,1970,1,GOV1,3004 -0113_1202_29,-74.882174,39.59893,35 S CHEW RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1202_3,-74.49289629,39.52568917,201 S CHEW RD,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_1202_30,-74.562873,39.360695,730 12TH ST,HAMMONTON TOWN,,1980,1,RES1,3001 -0113_1202_31,-74.59851782,39.36640777,720 12TH ST,HAMMONTON TOWN,16,1960,2,RES3A,3001 -0113_1202_32,-74.59118368,39.38225195,714 12TH ST,HAMMONTON TOWN,17,1965,2,RES1,3001 -0113_1202_4,-74.8207419,39.41083239,218 S 1ST RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1202_5,-74.63954461,39.3813813,240 S 1ST RD,HAMMONTON TOWN,17,1928,1,GOV1,3004 -0113_1202_7,-74.430392,39.3676545,262 S 1ST RD,HAMMONTON TOWN,17,1953,1,GOV1,3004 -0113_1202_8,-74.646994,39.549387,270 S 1ST RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_1202_9,-74.5603315,39.3589705,286 S 1ST RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1202_9.01,-74.37322897,39.41629424,278 S 1ST RD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_1301_1,-74.626637,39.3582825,888 11TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1301_10,-74.5129045,39.3986515,310 S CHEW RD,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1301_11,-74.42724,39.3684075,340 S CHEW RD,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_1301_12,-74.37570416,39.41966123,342 S CHEW RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1301_13,-74.52226567,39.398548,380 S CHEW RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1301_14,-74.8868615,39.5989025,400 S CHEW RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1301_15,-74.4762045,39.4938415,410 S CHEW RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1301_16,-74.49208039,39.33259133,424 S CHEW RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1301_17,-74.63317932,39.39882644,450 S CHEW RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_1301_18,-74.38733266,39.39173401,458 S CHEW RD,HAMMONTON TOWN,17,1965,1,GOV1,3004 -0113_1301_19,-74.62717017,39.52922619,460B S CHEW RD,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_1301_19.01,-74.82871935,39.45964496,460A S CHEW RD,HAMMONTON TOWN,18,2000,1,GOV1,3004 -0113_1301_2,-74.49630633,39.42849099,830 11TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1301_20,-74.5173615,39.395622,466 S CHEW RD,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1301_21,-74.3556,39.41442183,476 S CHEW RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1301_22,-74.51837091,39.40221817,488 S CHEW RD,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_1301_23,-74.845213,39.55969,500 S CHEW RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1301_24,-74.60543153,39.32529771,520 S CHEW RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_1301_26,-74.7733475,39.616404,897 10TH ST,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_1301_3,-74.50199,39.34241865,800 11TH ST,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_1301_4,-74.8659644,39.49801318,770 11TH ST,HAMMONTON TOWN,45,1960,4,RES1,3001 -0113_1301_4.01,-74.78137401,39.65090017,792 11TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1301_4.02,-74.605558,39.3198755,784 11TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1301_4.03,-74.502868,39.4564875,776 11TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_1301_5,-74.7523095,39.452991,750 11TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1301_6,-74.539653,39.468429,748 11TH ST,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_1301_7,-74.524619,39.3994605,716 11TH ST,HAMMONTON TOWN,17,1946,2,RES1,3001 -0113_1302_1,-74.504691,39.408023,614 11TH ST,HAMMONTON TOWN,17,1880,2,RES1,3001 -0113_1302_10,-74.9316475,39.4833715,550 11TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1302_11,-74.72176628,39.4481755,522 11TH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1302_12,-74.77506689,39.62839624,510 11TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1302_13,-74.83392317,39.385025,300 S 1ST RD,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_1302_14,-74.38276409,39.41586625,312 S 1ST RD,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_1302_15,-74.8402155,39.4802315,320 S 1ST RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1302_16,-74.75148618,39.45268934,328 S 1ST RD,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1302_17,-74.75446628,39.44860353,334 S 1ST RD,HAMMONTON TOWN,17,1967,1,GOV1,3004 -0113_1302_18,-74.80753229,39.43826241,338 S 1ST RD,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1302_19,-74.52876908,39.45227434,344 S 1ST RD,HAMMONTON TOWN,17,2016,1,RES1,3004 -0113_1302_20,-74.923885,39.5095925,354 S 1ST RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1302_21,-74.60552548,39.40992118,360 S 1ST RD,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_1302_22,-74.606294,39.3762395,376 S 1ST RD,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_1302_24,-74.48310273,39.45247753,400 S 1ST RD,HAMMONTON TOWN,17,2012,1,RES1,3001 -0113_1302_25,-74.84484169,39.5419574,418 S 1ST RD,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_1302_26,-74.953598,39.5357445,420 S 1ST RD,HAMMONTON TOWN,17,1933,1,RES1,3001 -0113_1302_27,-74.499551,39.32821117,430 S 1ST RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_1302_28,-74.47985013,39.34662065,436 S 1ST RD,HAMMONTON TOWN,17,1880,1,RES1,3001 -0113_1302_29,-74.48925935,39.44397211,440 S 1ST RD,HAMMONTON TOWN,18,2008,1,RES1,3001 -0113_1302_3,-74.59832234,39.34194056,600 11TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1302_30,-74.54601146,39.37526608,450 S 1ST RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_1302_31,-74.498755,39.335009,460 S 1ST RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1302_32,-74.50524767,39.3367255,470 S 1ST RD,HAMMONTON TOWN,18,2006,1,RES1,3001 -0113_1302_32.01,-74.7281925,39.4512655,529 10TH ST,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_1302_32.02,-74.7678235,39.328511,531 10TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1302_32.03,-74.62788806,39.41354021,535 10TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1302_32.04,-74.60121183,39.41650401,539 10TH ST,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1302_33,-74.53901378,39.47170496,484 S 1ST RD,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_1302_35,-74.37633106,39.40240315,541 10TH ST,HAMMONTON TOWN,17,2010,1,RES1,3001 -0113_1302_38,-74.58967496,39.34929119,609 10TH ST,HAMMONTON TOWN,15,1890,2,RES1,3001 -0113_1302_4,-74.9123365,39.4982785,590 11TH ST,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_1302_42,-74.46059031,39.45391903,451 S CHEW RD,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1302_42.01,-74.74254997,39.64349337,441 S CHEW RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1302_43,-74.38279581,39.39850741,437 S CHEW RD,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_1302_44,-74.364629,39.4083195,429 S CHEW RD,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1302_46,-74.52148753,39.32308918,387 S CHEW RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1302_47,-74.6366589,39.4447431,379 S CHEW RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1302_48,-74.487105,39.452055,363 S CHEW RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1302_5,-74.5216315,39.3211485,586 11TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1302_50,-74.91980348,39.48178301,353 S CHEW RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1302_51,-74.589711,39.32141,341 S CHEW RD,HAMMONTON TOWN,17,1917,1,RES1,3001 -0113_1302_53,-74.47953586,39.33725833,333 S CHEW RD,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_1302_6,-74.5990515,39.3697975,580 11TH ST,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_1302_7,-74.49022485,39.45855195,574 11TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1302_8,-74.60749838,39.32287483,564 11TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1302_9,-74.77994045,39.66935633,560 11TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1402_1,-74.3700141,39.41100507,475 S CHEW RD,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_1402_10,-74.77173831,39.62814553,592 10TH ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_1402_10.01,-74.47941428,39.47770047,598 10TH ST,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1402_11,-74.638659,39.365857,586 10TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1402_12,-74.50282163,39.43253744,582 10TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1402_16,-74.75460656,39.44723447,659 9TH ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_1402_17,-74.646058,39.549695,669 9TH ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_1402_17.01,-74.4759845,39.3430905,683 9TH ST,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_1402_17.02,-74.36389963,39.40938585,695 9TH ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_1402_18,-74.9582295,39.498132,701 9TH ST,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_1402_19,-74.58808903,39.33237532,733 9TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1402_2,-74.5311197,39.40015109,758 10TH ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_1402_21,-74.6104725,39.365483,801 9TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1402_24,-74.60826184,39.36380308,851 9TH ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1402_25,-74.6425125,39.5268745,893 9TH ST AT 2ND RD,HAMMONTON TOWN,17,1923,1,RES1,3001 -0113_1402_26.01,-74.57426954,39.34278821,875 9TH ST,HAMMONTON TOWN,17,1990,2,RES1,3001 -0113_1402_27,-74.5667952,39.41457,699 S 2ND RD,HAMMONTON TOWN,14,1959,1,RES1,3001 -0113_1402_28,-74.8006005,39.632701,631 S 2ND RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1402_29,-74.6384715,39.327369,601 S 2ND RD,HAMMONTON TOWN,17,2017,1,RES1,3001 -0113_1402_3,-74.67275721,39.37009971,714 10TH ST,HAMMONTON TOWN,17,1861,1,RES1,3001 -0113_1402_30,-74.54687823,39.49612823,495 S CHEW RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_1402_31,-74.65059607,39.52754284,485 S CHEW RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1402_7,-74.5399315,39.3943905,610 10TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1402_8,-74.9189605,39.4922215,608 10TH ST,HAMMONTON TOWN,16,1960,4,RES1,3001 -0113_1402_9,-74.36609328,39.41406289,600 10TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1403_10,-74.828774,39.648406,590 S 1ST RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1403_2,-74.550157,39.46294,510 S 1ST RD,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1403_2.01,-74.80969121,39.63821481,530 10TH ST,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_1403_4,-74.46364949,39.4705151,540 S 1ST RD,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_1403_5,-74.760931,39.431802,550 S 1ST RD,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_1403_6.01,-74.87582184,39.49000008,560 S 1ST RD,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_1403_6.02,-74.60824186,39.32023273,564 S 1ST RD,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_1403_7,-74.717447,39.390291,570 S 1ST RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1403_9,-74.57359919,39.45047498,580 S 1ST RD,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_1501_1,-74.62301668,39.55048182,897 8TH ST,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1501_11,-74.8061134,39.62982316,856 OAKWOOD DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_1501_14,-74.49575,39.465078,850 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1501_15,-74.58643949,39.32747117,846 OAKWOOD DR,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_1501_17,-74.366717,39.4158995,838 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1501_18,-74.499945,39.4175565,834 OAKWOOD DR,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_1501_19,-74.35421605,39.41483734,830 OAKWOOD DR,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1501_2,-74.8872445,39.5739325,927 S 2ND RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1501_20,-74.5233085,39.3182975,826 OAKWOOD DR,HAMMONTON TOWN,17,1992,1,GOV1,3004 -0113_1501_21,-74.50208167,39.3319205,822 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1501_23,-74.61226933,39.32512201,814 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1501_24,-74.37627021,39.41280218,810 OAKWOOD DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1501_3,-74.48821,39.3514445,919 S 2ND RD,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_1501_4,-74.58101982,39.36885377,895 8TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_1501_5,-74.86531027,39.56584928,893 8TH ST,HAMMONTON TOWN,17,1906,1,RES1,3001 -0113_1501_6,-74.5323285,39.391174,885 8TH ST,HAMMONTON TOWN,17,1974,2,RES1,3001 -0113_1501_7,-74.4931605,39.431719,915 S 2ND RD,HAMMONTON TOWN,16,1900,1,GOV1,3004 -0113_1501_8,-74.57338332,39.34503012,881 S 2ND RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1501_9,-74.52567767,39.38457944,869 8TH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1502_1,-74.62288427,39.35403919,857 8TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1502_10,-74.798413,39.64076683,821 OAKWOOD DR,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1502_11,-74.44514048,39.3727629,817 OAKWOOD DR,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_1502_13,-74.5881125,39.333144,809 OAKWOOD DR,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_1502_14,-74.7288795,39.588406,849 8TH ST,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_15.01,-74.6500655,39.5313335,847 8TH ST,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1502_15.03,-74.869671,39.604157,843 8TH ST,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_1502_15.04,-74.7919645,39.447619,841 8TH ST,HAMMONTON TOWN,17,1995,2,RES1,3001 -0113_1502_2,-74.62473975,39.40616096,853 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_20,-74.7118995,39.470101,817 8TH ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1502_20.01,-74.486093,39.4939785,819 8TH ST,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_1502_21,-74.515913,39.4154645,809 8TH ST,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_1502_21.01,-74.6433325,39.5420225,813 8TH ST,HAMMONTON TOWN,17,1991,1,RES1,3002 -0113_1502_22,-74.77653745,39.62276521,801 8TH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_1502_23,-74.61845775,39.3768347,850 GIORDANO LN,HAMMONTON TOWN,17,1970,1,RES1,3004 -0113_1502_24,-74.712117,39.4705835,848 GIORDANO LN,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1502_25,-74.57659063,39.41055847,846 GIORDANO LN,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1502_26,-74.501841,39.4343025,844 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_27,-74.5791935,39.3418545,842 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_28,-74.498244,39.4463865,840 GIORDANO LN,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_1502_29,-74.80133138,39.46360494,838 GIORDANO LN,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1502_3,-74.75951731,39.44662832,849 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_30,-74.8863895,39.5687435,836 GIORDANO LN,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1502_31,-74.839119,39.417857,834 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_32,-74.60296759,39.41797453,832 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_33,-74.5202675,39.3237515,830 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_34,-74.36098834,39.41035848,829 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_35,-74.47102991,39.49328742,831 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_36,-74.59819836,39.43793618,833 GIORDANO LN,HAMMONTON TOWN,17,1971,1,RES3A,3001 -0113_1502_37,-74.92474576,39.50518389,835 GIORDANO LN,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1502_38,-74.61245474,39.34995413,837 GIORDANO LN,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_1502_39,-74.55207465,39.36358445,839 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_4,-74.49740041,39.43269427,845 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_40,-74.50681065,39.32513702,841 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_41,-74.77407578,39.59744798,843 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_43,-74.52596257,39.44546704,847 GIORDANO LN,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1502_44,-74.91669411,39.51670358,851 GIORDANO LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_45,-74.5249945,39.421625,741 8TH ST,HAMMONTON TOWN,17,1970,1,GOV1,3004 -0113_1502_47,-74.75868445,39.44477051,721 8TH ST,HAMMONTON TOWN,17,1968,1,COM1,3004 -0113_1502_49,-74.74924482,39.45075895,713 8TH ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1502_5,-74.78816651,39.62554683,841 OAKWOOD DR,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_1502_50,-74.85074986,39.53606718,709 8TH ST,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_53,-74.42184345,39.37252132,846 S 1ST RD,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_1502_55,-74.5006217,39.40875451,836 S 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1502_56,-74.62832598,39.36041884,820 S 1ST RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1502_56.01,-74.472053,39.4847085,828 S 1ST RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1502_57,-74.80968265,39.63170634,816 S 1ST RD,HAMMONTON TOWN,17,1936,1,GOV1,3004 -0113_1502_58,-74.59747037,39.31891668,800 S 1ST RD,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_1502_58.01,-74.7924071,39.67638735,827 GIORDANO LN,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1502_59,-74.91635879,39.48779616,750 S 1ST RD,HAMMONTON TOWN,17,1960,1,RES2,3005 -0113_1502_6,-74.58639177,39.49285791,1 ALBY LN,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1502_60,-74.49899924,39.47212625,650 S 1ST RD,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_1502_60.01,-74.3699045,39.418131,610 S 1ST RD,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_1502_61,-74.558711,39.397771,594 9TH ST,HAMMONTON TOWN,17,1931,2,RES1,3001 -0113_1502_61.01,-74.5728575,39.4280355,606 S 1ST RD,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_1502_63.01,-74.5631985,39.5322755,600 9TH ST,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_1502_63.02,-74.4622385,39.35636,604 9TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1502_63.03,-74.5126815,39.3383895,608 9TH ST,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_1502_64,-74.6405785,39.5288485,618 9TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1502_64.01,-74.61629269,39.37267307,612 9TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1502_64.02,-74.57110735,39.33616995,616 9TH ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_1502_65,-74.536065,39.4544155,650 9TH ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_1502_66,-74.46719022,39.49428746,622 9TH ST,HAMMONTON TOWN,17,1972,1,COM1,3004 -0113_1502_67,-74.889733,39.5408845,676 9TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1502_68,-74.501013,39.329474,664 9TH ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_1502_69,-74.5191725,39.318913,700 9TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1502_7,-74.49787711,39.33553339,833 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_70,-74.505412,39.412605,710 9TH ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_1502_70.02,-74.6295397,39.41248956,730 9TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1502_71,-74.47437033,39.34112383,740 9TH ST,HAMMONTON TOWN,19,2006,1,RES1,3001 -0113_1502_72,-74.949601,39.516068,750 9TH ST,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_1502_8,-74.39814533,39.38841911,829 OAKWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1502_9,-74.49563489,39.44717274,825 OAKWOOD DR,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1503_1,-74.6925385,39.5901535,894 9TH ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_1510_1,-74.66524067,39.461608,9TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1601_1,-74.64031,39.53309,951 S 2ND RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1601_11,-74.72594117,39.58611915,770 8TH ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1601_15,-74.78881558,39.64177179,760 8TH ST,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_1601_15.01,-74.53696441,39.38030264,762 8TH ST,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_1601_16,-74.5106265,39.4664395,754 8TH ST,HAMMONTON TOWN,16,1946,1,RES1,3001 -0113_1601_18,-74.5049195,39.325703,740 8TH ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_1601_19,-74.4878635,39.432212,100 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1601_2,-74.50040276,39.5360879,949 S 2ND RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1601_2.01,-74.7336653,39.64810807,890 8TH ST,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_1601_2.02,-74.50099149,39.32770133,880 8TH ST,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_1601_20,-74.6246875,39.4639765,110 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1601_21,-74.48688054,39.49626896,122 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1601_22,-74.63334368,39.36057571,134 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_1601_23,-74.4666385,39.3453695,144 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_1601_24,-74.600637,39.3475545,150 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1601_25,-74.5168075,39.395435,162 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1601_26,-74.56391756,39.3720804,176 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_1601_27,-74.87622,39.5933905,184 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_1601_28,-74.52663934,39.31334303,190 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1601_29,-74.4890885,39.4365045,196 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_1601_3,-74.53550036,39.31415832,870 8TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1601_31,-74.5226775,39.4074085,730 8TH ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_1601_32,-74.88073,39.591394,728 8TH ST,HAMMONTON TOWN,17,1970,2,RES1,3001 -0113_1601_33,-74.81514946,39.64664409,720 8TH ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1601_34,-74.51963394,39.4509067,716 8TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1601_35,-74.63162523,39.35517697,712 8TH ST,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_1601_36,-74.6286785,39.4175685,704 8TH ST AT S 1ST RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1601_38,-74.44268933,39.36663055,894 S 1ST RD,HAMMONTON TOWN,17,1980,2,RES1,3001 -0113_1601_39,-74.93895376,39.53314597,906 S 1ST RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1601_4,-74.45594334,39.46246567,860 8TH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1601_40,-74.563184,39.3472405,928 S 1ST RD,HAMMONTON TOWN,16,1920,1,RES1,3001 -0113_1601_40.01,-74.64962046,39.53240216,910 S 1ST RD,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_1601_41,-74.882923,39.491687,934 S 1ST RD,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_1601_42,-74.62148527,39.36991351,990 S 1ST RD AT WEYMOUTH,HAMMONTON TOWN,17,1960,1,IND2,3004 -0113_1601_43,-74.59361285,39.36937493,723 7TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1601_43.01,-74.55285508,39.37348224,213 WEYMOUTH RD,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_1601_43.02,-74.50047284,39.49267875,950 S 1ST RD,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_1601_44,-74.50546998,39.33975466,727 7TH ST,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_1601_45,-74.5114075,39.321982,735 7TH ST,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_1601_47,-74.51479266,39.32213446,745 7TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1601_48,-74.80282234,39.62762046,755 7TH ST,HAMMONTON TOWN,15,1940,1,RES1,3001 -0113_1601_48.01,-74.49570517,39.33627345,763 7TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1601_49,-74.51092205,39.34039574,771 7TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1601_51,-74.38973598,39.39217583,795 7TH ST,HAMMONTON TOWN,17,2015,1,RES1,3001 -0113_1601_53.01,-74.50568743,39.33913683,845 7TH ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1601_54,-74.8390162,39.49577746,857 7TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1601_56,-74.45097204,39.49301464,875 7TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1601_56.01,-74.46167885,39.49273163,877 7TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1601_59,-74.40311827,39.39164856,895 7TH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1601_60,-74.5251315,39.446044,989 S 2ND RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1601_61,-74.61252821,39.36500236,987 S 2ND RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1601_62,-74.77608506,39.38096848,985 S 2ND RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1601_63,-74.52296225,39.32149481,983 S 2ND RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_1601_64.01,-74.73633168,39.46149745,979 S 2ND RD,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1602_4,-74.63390991,39.4324225,141 GOLDEN EAGLE DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1701_1,-74.58172024,39.42272904,131 W 15TH ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_1701_1.01,-74.80934282,39.63317214,121 W 15TH ST,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_1701_10,-74.58146505,39.41109381,1114 N EGG HARBOR RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_1701_11,-74.58922784,39.4143997,1106 N EGG HARBOR RD,HAMMONTON TOWN,17,1920,3,RES1,3001 -0113_1701_12,-74.58925239,39.41606013,1100 N EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1701_2,-74.60870962,39.43231751,93 W 15TH ST,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_1701_3,-74.4749175,39.484339,79 W 15TH ST,HAMMONTON TOWN,17,2010,1,RES1,3001 -0113_1701_4,-74.58401898,39.48597136,73 W 15TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1701_5,-74.60389556,39.4102513,63 W 15TH ST,HAMMONTON TOWN,17,1914,2,RES1,3001 -0113_1701_6,-74.60686779,39.41024296,57 W 15TH ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1701_7,-74.59921256,39.41040065,33 W 15TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1701_8,-74.60054367,39.41600327,21 W 15TH ST,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_1702_1,-74.5889822,39.40781202,1105 N EGG HARBOR RD,HAMMONTON TOWN,16,1920,1,RES3A,3001 -0113_1703_1,-74.58332418,39.40457461,33 WELLS AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1703_2,-74.63217503,39.61325016,25 WELLS AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1703_3,-74.58034,39.4053305,28 ATLANTIC AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1703_4,-74.82609064,39.4808379,101 E 15TH ST AT EH RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1703_5,-74.5522981,39.36210894,107 E 15TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1703_6,-74.50096465,39.42470787,115 E 15TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_1704_2,-74.45751269,39.35129728,25 ATLANTIC AVE,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1704_3,-74.56933872,39.41240945,119 E 15TH ST,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_1704_4,-74.56434002,39.41423754,125 E 15TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1705_10,-74.63597644,39.4309585,920 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1705_11,-74.6483605,39.5227945,912 N 3RD ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1705_12,-74.74917828,39.45174944,918 N 3RD ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1705_13,-74.52588116,39.45679999,366 OLD FORKS RD,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_1705_14,-74.63255723,39.43053657,1 CARRIAGE WAY,HAMMONTON TOWN,18,2007,1,RES1,3001 -0113_1705_15,-74.63655044,39.43200194,5 CARRIAGE WAY,HAMMONTON TOWN,18,2004,1,RES1,3001 -0113_1705_16,-74.63786821,39.43558065,7 CARRIAGE WAY,HAMMONTON TOWN,18,2002,1,RES1,3001 -0113_1705_17,-74.62134115,39.43419672,11 CARRIAGE WAY,HAMMONTON TOWN,18,2001,1,RES1,3001 -0113_1705_18,-74.61989387,39.43515029,15 CARRIAGE WAY,HAMMONTON TOWN,18,2002,1,RES1,3001 -0113_1705_19,-74.51934516,39.45872847,14 CARRIAGE WAY,HAMMONTON TOWN,18,2004,1,GOV1,3004 -0113_1705_2,-74.37767613,39.39827171,139 E 15TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1705_20,-74.634944,39.4211095,10 CARRIAGE WAY,HAMMONTON TOWN,18,2002,1,RES1,3001 -0113_1705_21,-74.62283619,39.43160953,6 CARRIAGE WAY,HAMMONTON TOWN,18,2001,1,RES1,3001 -0113_1705_22,-74.479024,39.3371795,2 CARRIAGE WAY,HAMMONTON TOWN,18,2001,1,RES1,3001 -0113_1705_3,-74.51926064,39.52659005,52 RANERE AVE,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_1705_4,-74.60688167,39.39355718,62 RANERE AVE,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1705_5,-74.51031383,39.48630452,70 RANERE AVE,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1705_7,-74.92430283,39.50638039,108 RANERE AVE,HAMMONTON TOWN,17,1969,2,GOV1,3004 -0113_1705_8,-74.79785001,39.63621854,120 RANERE AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1705_8.01,-74.77229069,39.62928447,110 RANERE AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1705_9,-74.80082268,39.6415452,906 N 3RD ST,HAMMONTON TOWN,17,1950,1,REL1,3004 -0113_1706_10,-74.56511885,39.36736498,834 N 3RD ST,HAMMONTON TOWN,17,1995,1,GOV1,3004 -0113_1706_11,-74.52236246,39.38766396,826 N 3RD ST,HAMMONTON TOWN,17,1975,2,RES1,3001 -0113_1706_12,-74.49492295,39.34278215,818 N 3RD ST,HAMMONTON TOWN,17,1980,1,GOV1,3004 -0113_1706_13,-74.64007505,39.53665834,812 N 3RD ST,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_1706_14,-74.633243,39.5407235,802 N 3RD ST,HAMMONTON TOWN,17,1934,1,RES1,3001 -0113_1706_15,-74.38201934,39.40137095,786 N 3RD ST,HAMMONTON TOWN,17,1920,2,REL1,3004 -0113_1706_17,-74.376937,39.4018695,782 N 3RD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1706_18,-74.55044351,39.36896883,297 FRANCIS ST AT N 3RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1706_19,-74.48510692,39.49520725,265 FRANCIS ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1706_20,-74.4948775,39.44178437,257 FRANCIS ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1706_20.01,-74.55100148,39.36293573,263 FRANCIS ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1706_21,-74.88405951,39.46863584,241 FRANCIS ST,HAMMONTON TOWN,17,1911,1,RES1,3001 -0113_1706_21.01,-74.63516616,39.4274446,249 FRANCIS ST,HAMMONTON TOWN,17,2013,1,RES1,3001 -0113_1706_22,-74.51024291,39.40121768,231 FRANCIS ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1706_23,-74.501307,39.4616645,223 FRANCIS ST,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1706_24,-74.8016505,39.641291,223 FRANCIS ST RR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1706_3,-74.58930521,39.33181105,140 E 15TH ST AT RANERE,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1706_4.01,-74.437732,39.3658155,101 RANERE AVE,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_1706_4.02,-74.3782572,39.39709683,103 RANERE AVE,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_1706_5,-74.5135625,39.4181345,898 N 3RD ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_1706_6,-74.62702312,39.4431402,894 N 3RD ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1706_7,-74.62749875,39.35582954,890 N 3RD ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_1706_8,-74.64646295,39.53002492,850 N 3RD ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_1706_9,-74.44816939,39.49513379,848 N 3RD ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1707_1,-74.64830495,39.39719395,1061 N EGG HARBOR RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1707_10,-74.51932536,39.38929233,1017 N EGG HARBOR RD,HAMMONTON TOWN,17,1990,1,COM3,3004 -0113_1707_11,-74.8449215,39.586149,1015 N EGG HARBOR RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1707_12,-74.4672215,39.346097,1003 N EGG HARBOR RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_1707_13,-74.463461,39.3489285,1005 N EGG HARBOR RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1707_14,-74.35936935,39.41396155,1001 N EGG HARBOR RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_1707_16.03,-74.45580004,39.48922591,911 N EGG HARBOR RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_1707_18,-74.79769232,39.6413395,901 N EGG HARBOR RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1707_2,-74.660473,39.5400485,110 E 15TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1707_3,-74.36320567,39.409693,114 E 15TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1707_5,-74.6010685,39.363796,1057 N EGG HARBOR RD,HAMMONTON TOWN,17,1909,1,RES1,3001 -0113_1707_6,-74.39862713,39.38957665,1049 N EGG HARBOR RD,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_1707_7,-74.5050755,39.424027,1045 N EGG HARBOR RD,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_1707_8,-74.65338217,39.53166298,1039 N EGG HARBOR RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1707_9,-74.48246833,39.34604301,1027 N EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1708_2,-74.6043575,39.342281,800 N EGG HARBOR RD,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_1709_10,-74.6552375,39.626345,32 W 15TH ST,HAMMONTON TOWN,16,1943,1,RES1,3001 -0113_1709_13,-74.423059,39.37646,24 W 15TH ST,HAMMONTON TOWN,17,1920,1,EDU1,3004 -0113_1709_14,-74.58072087,39.33860366,20 W 15TH ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1709_15,-74.87477958,39.59226967,14 W 15TH ST,HAMMONTON TOWN,17,1892,1,RES1,3001 -0113_1709_16,-74.50073264,39.46866023,8 W 15TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1709_18,-74.59612958,39.37872131,2 W 15TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1709_19,-74.93668781,39.52770703,1080 N CHEW RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1709_2,-74.5014325,39.329869,114 W 15TH ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_1709_20,-74.704708,39.5729245,1070 N CHEW RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1709_21,-74.51847691,39.39175215,1034 N CHEW RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1709_22,-74.54698072,39.49804606,1010 N CHEW RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1709_23,-74.749945,39.4461605,1008 N CHEW RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_1709_24,-74.8685166,39.49528615,1002 N CHEW RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1709_25,-74.50468494,39.43721605,1000 N CHEW RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1709_26,-74.3591405,39.41486,958 N CHEW RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_1709_26.01,-74.6345775,39.4304,936 N CHEW RD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_1709_26.02,-74.64117694,39.43398652,914 N CHEW RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_1709_26.03,-74.64601309,39.43325321,900 N CHEW RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_1709_29,-74.70922486,39.42323797,475 14TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1709_3,-74.50964485,39.33601939,110 W 15TH ST,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_1709_30.01,-74.6212716,39.43720844,495 14TH ST,HAMMONTON TOWN,,1978,1,RES1,3001 -0113_1709_32,-74.64089888,39.53259533,721 N 1ST RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1709_33,-74.94119398,39.53205123,723 N 1ST RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1709_34,-74.43740848,39.36519232,725 N 1ST RD,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1709_35,-74.50158533,39.42942462,727 N 1ST RD,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_1709_36,-74.3640665,39.4156345,731 N 1ST RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_1709_37,-74.50841554,39.48877875,739 N 1ST RD,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_1709_37.01,-74.69221826,39.4117716,743 N 1ST RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_1709_38.01,-74.49042937,39.428487,749 N 1ST RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1709_38.02,-74.78206486,39.65180755,759 N 1ST RD,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_1709_38.03,-74.864358,39.5665735,769 N 1ST RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1709_39,-74.36266275,39.41757109,777 N 1ST RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_1709_40,-74.56183937,39.35684004,825 N 1ST RD,HAMMONTON TOWN,17,1975,1,RES3A,3001 -0113_1709_41,-74.62813793,39.36383288,887 N 1ST RD,HAMMONTON TOWN,16,1960,1,RES1,3001 -0113_1709_42,-74.9143205,39.482082,891 N 1ST RD,HAMMONTON TOWN,16,1914,1,RES1,3001 -0113_1709_43,-74.66790036,39.39302833,971 N 1ST RD,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_1709_44,-74.53382956,39.38643656,987 N 1ST RD,HAMMONTON TOWN,17,1991,1,RES3A,3001 -0113_1709_45,-74.65421897,39.53496334,1001 N 1ST RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1709_46,-74.5994354,39.36096425,1029 N 1ST RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_1709_47,-74.95589435,39.53787828,1055 N 1ST RD,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_1709_5,-74.80682567,39.633233,108 W 15TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1802_1,-74.701951,39.483469,1003 N 3RD ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_1802_11,-74.44809519,39.37429807,443 OLD FORKS RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_1802_12,-74.40801351,39.38197988,521 OLD FORKS RD,HAMMONTON TOWN,17,1900,1,RES3A,3001 -0113_1802_12.02,-74.525102,39.392419,529 OLD FORKS RD,HAMMONTON TOWN,17,1994,1,RES1,3004 -0113_1802_16,-74.6007776,39.43685631,704 N WHITE HORSE PK,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1802_17,-74.49703673,39.43564578,650 N WHITE HORSE PK,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_1802_18,-74.49953046,39.41738768,628 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1802_2,-74.5931485,39.321619,1009 N 3RD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1802_21,-74.42836005,39.37174988,602 N WHITE HORSE PK,HAMMONTON TOWN,17,1880,2,RES1,3001 -0113_1802_22,-74.8203062,39.37339496,564 N WHITE HORSE PK,HAMMONTON TOWN,15,1920,1,RES1,3001 -0113_1802_25,-74.3602605,39.41328,500 N WHITE HORSE PK,HAMMONTON TOWN,,1971,1,RES1,3001 -0113_1802_3,-74.4653469,39.50286297,1015 N 3RD ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_1802_4,-74.80677414,39.63526105,1021 N 3RD ST,HAMMONTON TOWN,17,1951,1,GOV1,3004 -0113_1802_5,-74.6340615,39.532649,367 OLD FORKS RD,HAMMONTON TOWN,,1968,1,RES1,3001 -0113_1802_7,-74.5857555,39.407365,373 OLD FORKS RD,HAMMONTON TOWN,16,1962,4,GOV1,3004 -0113_1803_1,-74.82640393,39.40764293,683 N 3RD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1803_10,-74.38012217,39.41460409,897 N 3RD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_1803_10.01,-74.47077005,39.45862378,899 N 3RD ST,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_1803_10.02,-74.75568957,39.4530656,895 N 3RD ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1803_11.01,-74.54190533,39.3951155,1 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.02,-74.6385345,39.3628275,3 ANNE DR,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.03,-74.63594479,39.36257803,5 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.04,-74.6472365,39.353658,7 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.05,-74.64910641,39.35662892,9 ANNE DR,HAMMONTON TOWN,16,2004,1,EDU1,3004 -0113_1803_11.06,-74.55996255,39.44567266,11 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.07,-74.5387935,39.4608875,13 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.08,-74.53902192,39.45999922,15 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.09,-74.53904,39.4579995,17 ANNE DR,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.10,-74.53608326,39.45690861,19 ANNE DR,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.11,-74.54233773,39.45567649,21 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.12,-74.53194724,39.46880491,23 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.13,-74.53973628,39.46797692,25 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.14,-74.5383893,39.46242725,27 ANNE DR,HAMMONTON TOWN,16,2004,1,RES3A,3001 -0113_1803_11.15,-74.54815316,39.46484282,29 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3002 -0113_1803_11.16,-74.555276,39.4687275,31 ANNE DR,HAMMONTON TOWN,16,2004,1,EDU1,3004 -0113_1803_11.17,-74.55710366,39.46817127,33 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.18,-74.58363181,39.44093194,35 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.19,-74.5981595,39.4369805,1 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.20,-74.5451851,39.47675276,3 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.21,-74.53849116,39.47163617,5 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,REL1,3004 -0113_1803_11.22,-74.55071343,39.47619276,7 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.23,-74.54744242,39.47382072,9 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.24,-74.55126183,39.47373442,11 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3004 -0113_1803_11.25,-74.556212,39.47594,13 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.26,-74.555092,39.475704,15 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.27,-74.55625655,39.47340179,17 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.28,-74.55768971,39.4720621,19 ALEXANDER DR,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.29,-74.5545665,39.471267,21 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.30,-74.57472252,39.4775329,23 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.31,-74.56937641,39.4770027,25 ALEXANDER DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.32,-74.5668505,39.473758,27 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.33,-74.57471041,39.48122814,29 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.34,-74.569531,39.480707,31 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.35,-74.5378145,39.503808,33 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.36,-74.54216067,39.50313098,35 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.37,-74.64429593,39.54365609,37 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.38,-74.64841575,39.53927286,39 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.39,-74.652347,39.546885,41 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,COM1,3004 -0113_1803_11.40,-74.63223758,39.55492737,43 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.41,-74.58243191,39.362852,45 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.42,-74.65976317,39.557756,47 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.43,-74.6831975,39.557173,49 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.44,-74.686695,39.5556155,51 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.45,-74.60997773,39.59320541,53 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.46,-74.6037746,39.60058972,55 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.47,-74.622252,39.6052955,57 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES3A,3001 -0113_1803_11.48,-74.6911385,39.572737,43 LAHN LANE,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1803_11.49,-74.70184128,39.57720554,45 LAHN LANE,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1803_11.50,-74.7006705,39.581613,1 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.51,-74.69505915,39.58910804,3 RACHEL COURT,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.52,-74.6922305,39.597809,5 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1803_11.53,-74.625509,39.6209195,7 RACHEL COURT,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.54,-74.62674728,39.61975006,9 RACHEL COURT,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.55,-74.62259937,39.62539209,11 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.56,-74.62381562,39.62409681,13 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.57,-74.6817905,39.632975,15 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.58,-74.69040058,39.63268279,17 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.59,-74.70197011,39.63691462,19 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.60,-74.70473531,39.63658964,20 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.61,-74.70557576,39.63444512,14 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.62,-74.790269,39.5315975,12 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.63,-74.780356,39.5207115,10 RACHEL COURT,HAMMONTON TOWN,16,2006,1,RES3A,3001 -0113_1803_11.64,-74.714885,39.564805,8 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1803_11.65,-74.806864,39.5208675,6 RACHEL COURT,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1803_11.66,-74.83404445,39.53610741,4 RACHEL COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1803_11.67,-74.83852556,39.50769241,2 RACHEL COURT,HAMMONTON TOWN,16,2005,1,IND2,3002 -0113_1803_13.01,-74.57032946,39.35662268,450 OLD FORKS RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_1803_14,-74.878307,39.5993515,601 WALNUT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1803_15.01,-74.49431889,39.45733757,515 WALNUT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1803_15.03,-74.77960039,39.62572883,855 N 3RD ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_1803_15.04,-74.5281055,39.4011255,875 N 3RD ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1803_15.05,-74.57754624,39.36564686,543 WALNUT ST,HAMMONTON TOWN,18,2009,1,GOV1,3004 -0113_1803_15.06,-74.58835846,39.35551419,551 WALNUT ST,HAMMONTON TOWN,18,2015,1,RES1,3001 -0113_1803_15.07,-74.60948027,39.34627858,563 WALNUT ST,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_1803_15.08,-74.61283977,39.34831391,575 WALNUT ST,HAMMONTON TOWN,17,2006,1,GOV1,3004 -0113_1803_15.09,-74.75254284,39.60769806,587 WALNUT ST,HAMMONTON TOWN,18,2006,1,RES1,3001 -0113_1803_15.10,-74.61401023,39.34839467,591 WALNUT ST,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_1803_16,-74.46311966,39.346086,505 WALNUT ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1803_17,-74.63045545,39.52370635,467 WALNUT ST,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_1803_18,-74.6830802,39.63434554,463 WALNUT ST,HAMMONTON TOWN,17,1908,1,RES1,3001 -0113_1803_2,-74.57929922,39.43014696,685 N 3RD ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1803_20,-74.624351,39.444017,457 WALNUT ST,HAMMONTON TOWN,17,1938,2,RES1,3001 -0113_1803_21,-74.6061995,39.4105745,455 WALNUT ST,HAMMONTON TOWN,,1925,1,RES1,3001 -0113_1803_22,-74.47128289,39.34487336,445 WALNUT ST,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_1803_23,-74.52652646,39.31368884,439 WALNUT ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1803_24,-74.80033397,39.64249084,431 WALNUT ST,HAMMONTON TOWN,15,1920,2,RES1,3001 -0113_1803_26,-74.50062123,39.45834073,383 WALNUT ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1803_27,-74.53325486,39.38706711,375 WALNUT ST,HAMMONTON TOWN,17,1954,2,RES1,3001 -0113_1803_27.01,-74.4637455,39.34949,355 WALNUT ST,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_1803_28,-74.489554,39.4959575,335 WALNUT ST,HAMMONTON TOWN,17,1880,1,RES1,3001 -0113_1803_3.02,-74.45225378,39.35726665,699 N 3RD ST,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_1803_4,-74.60478295,39.50764903,701 N 3RD ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_1803_5,-74.51038644,39.32691665,707 N 3RD ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1803_6,-74.37310379,39.40911855,711-725 N 3RD ST,HAMMONTON TOWN,,1986,1,RES1,3001 -0113_1803_6.01,-74.6780277,39.38629496,799 N 3RD ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1803_7.02,-74.52730482,39.38517242,835 N 3RD ST,HAMMONTON TOWN,16,1998,1,RES1,3001 -0113_1803_8,-74.53883787,39.47253282,845 N 3RD ST,HAMMONTON TOWN,17,1915,1,RES1,3001 -0113_1804_1,-74.55214818,39.38314441,2 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1804_10,-74.57080869,39.37355056,34 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1804_11,-74.56558531,39.36830011,40 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3002 -0113_1804_12,-74.5665285,39.3690325,50 ALEXANDER DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1804_13,-74.5691738,39.36960944,39 LAHN LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1804_14,-74.57275467,39.3723542,37 LAHN LANE,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_1804_15,-74.5575935,39.370039,35 LAHN LANE,HAMMONTON TOWN,16,2007,1,COM1,3004 -0113_1804_16,-74.55152978,39.37930167,33 LAHN LANE,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1804_17,-74.54892816,39.38070491,31 LAHN LANE,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1804_2,-74.54010846,39.37696249,4 ALEXANDER DR,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1804_3,-74.5412515,39.3772105,8 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1804_4,-74.54719784,39.37194703,12 ALEXANDER DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1804_5,-74.5467285,39.372315,16 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,GOV1,3004 -0113_1804_6,-74.5384485,39.3991415,20 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES3A,3001 -0113_1804_7,-74.54676349,39.37981267,28 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1804_8,-74.55036524,39.37714389,30 ALEXANDER DR,HAMMONTON TOWN,16,2007,1,RES3B,3001 -0113_1804_9,-74.55640964,39.37166867,32 ALEXANDER DR,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1805_1,-74.55065514,39.38770996,1 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1805_10,-74.76359507,39.30562685,36 LAHN LANE,HAMMONTON TOWN,16,2006,1,RES1,3002 -0113_1805_11,-74.68688123,39.35825948,34 LAHN LANE,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1805_12,-74.673504,39.344851,32 LAHN LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1805_13,-74.6449711,39.36083749,30 LAHN LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1805_2,-74.8321765,39.5299735,3 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1805_3,-74.66228776,39.36529756,7 JERRY LANE,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1805_4,-74.67766717,39.349463,9 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1805_5,-74.69802165,39.3568778,11 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1805_6,-74.754804,39.3013175,15 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1805_7,-74.7651865,39.3504265,17 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1805_8,-74.5459675,39.3738395,19 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3002 -0113_1805_9,-74.5486555,39.373758,23 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1806_1,-74.54556351,39.39168061,10 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3002 -0113_1806_2,-74.53920643,39.38969322,18 ANNE DR,HAMMONTON TOWN,16,2004,1,RES3A,3001 -0113_1806_3,-74.539078,39.3905905,20 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1806_4,-74.54073547,39.39368284,22 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3002 -0113_1806_5,-74.54420438,39.38877092,26 ANNE DR,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1807_1,-74.629414,39.3629225,30 LEAH COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1807_10,-74.65151218,39.34609452,45 LEAH COURT,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1807_11,-74.6517253,39.34765176,43 LEAH COURT,HAMMONTON TOWN,16,2004,1,RES3A,3001 -0113_1807_12,-74.649216,39.3400165,41 LEAH COURT,HAMMONTON TOWN,16,2004,1,COM1,3004 -0113_1807_13,-74.638952,39.343113,39 LEAH COURT,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1807_14,-74.6369932,39.33707805,37 LEAH COURT,HAMMONTON TOWN,16,2005,1,RES1,3002 -0113_1807_15,-74.64205,39.323471,35 LEAH COURT,HAMMONTON TOWN,16,2007,1,RES3A,3001 -0113_1807_16,-74.62247481,39.31374193,33 LEAH COURT,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1807_17,-74.63913907,39.35971073,31 LEAH COURT,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1807_18,-74.618289,39.360491,2 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1807_19,-74.6141805,39.367089,4 JERRY LANE,HAMMONTON TOWN,16,2005,1,COM1,3004 -0113_1807_2,-74.63550882,39.367134,32 LEAH COURT,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1807_20,-74.6024065,39.365322,6 JERRY LN,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1807_21,-74.60549324,39.36567822,8 JERRY LANE,HAMMONTON TOWN,16,2005,1,COM1,3004 -0113_1807_22,-74.5991085,39.365707,10 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1807_23,-74.61497697,39.35132334,12 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1807_24,-74.61642772,39.35808934,14 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1807_25,-74.627839,39.358395,16 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES3A,3001 -0113_1807_26,-74.60127712,39.35159899,18 JERRY LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1807_27,-74.60441903,39.35722868,20 JERRY LANE,HAMMONTON TOWN,,2005,1,RES1,3001 -0113_1807_28,-74.59439819,39.36106752,46 LAHN LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1807_29,-74.582122,39.361018,48 LAHN LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1807_3,-74.62578818,39.35994345,34 LEAH COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1807_30,-74.5780685,39.3609105,50 LAHN LANE,HAMMONTON TOWN,16,2006,1,RES1,3001 -0113_1807_31,-74.59049538,39.36528568,52 LAHN LANE,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1807_32,-74.59467222,39.36500846,54 LAHN LANE,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1807_33,-74.59510853,39.36252538,56 LAHN LANE,HAMMONTON TOWN,16,2007,1,RES1,3001 -0113_1807_34,-74.61373911,39.32097287,995 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3004 -0113_1807_35,-74.4961749,39.32865661,374 OLD FORKS RD,HAMMONTON TOWN,17,1879,1,RES1,3001 -0113_1807_4,-74.63982619,39.36463116,36 LEAH COURT,HAMMONTON TOWN,16,2005,1,RES1,3001 -0113_1807_5,-74.6340715,39.351688,38 LEAH COURT,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1807_6,-74.62887357,39.3656634,40 LEAH COURT,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1807_7,-74.632292,39.356337,42 LEAH COURT,HAMMONTON TOWN,16,2004,1,COM1,3004 -0113_1807_8,-74.6252755,39.357409,44 LEAH COURT,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1807_9,-74.62848386,39.35871835,47 LEAH COURT,HAMMONTON TOWN,16,2004,1,RES1,3001 -0113_1901_1.01,-74.628736,39.422564,505 N 1ST RD,HAMMONTON TOWN,17,2002,1,RES1,3002 -0113_1901_1.02,-74.62887559,39.43229267,511 N 1ST RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1901_1.03,-74.62273225,39.42391795,519 N 1ST RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_1901_10,-74.40367124,39.38573997,607 N 1ST RD,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_1901_11,-74.45273714,39.37465231,629 N 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1901_11.01,-74.5882652,39.35143854,611 N 1ST RD,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_1901_12,-74.64764583,39.47164516,633 N 1ST RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_1901_13,-74.61904021,39.37156859,669 N 1ST RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1901_13.01,-74.83677134,39.38027542,700 N CHEW RD,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1901_13.02,-74.39618488,39.3886922,655 N 1ST RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1901_14,-74.4951005,39.431803,681 N 1ST RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_1901_16,-74.63529385,39.43089474,697 N 1ST RD,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_1901_16.01,-74.82303053,39.49641521,480 14TH ST,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_1901_17.01,-74.37391016,39.4148713,476 14TH ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_1901_17.02,-74.62719114,39.45970074,470 14TH ST,HAMMONTON TOWN,17,2000,1,COM1,3004 -0113_1901_17.03,-74.80972824,39.6366227,462 14TH ST AT N CHEW RD,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_1901_18,-74.502256,39.4154575,750 N CHEW RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_1901_18.01,-74.62397619,39.41957606,760 N CHEW RD,HAMMONTON TOWN,18,2005,1,RES1,3001 -0113_1901_19,-74.70039623,39.5849611,644 N CHEW RD,HAMMONTON TOWN,17,1999,1,RES1,3002 -0113_1901_19.01,-74.63655965,39.62301449,650 N CHEW RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1901_2,-74.7617485,39.4455675,525 N 1ST RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_1901_20,-74.63077156,39.42767178,640 N CHEW RD,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_1901_20.01,-74.6031245,39.3300295,628 N CHEW RD,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_1901_21,-74.78325216,39.60652504,480 N CHEW RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1901_22,-74.63727762,39.36726827,474 N CHEW RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1901_24,-74.49603373,39.5253942,452 N CHEW RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_1901_25,-74.62767482,39.41470839,448 N CHEW RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1901_26,-74.83883797,39.53584765,442 N CHEW RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1901_27,-74.50750038,39.43437216,436 N CHEW RD,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_1901_29,-74.36599,39.4168115,430 N CHEW RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1901_3,-74.60033832,39.31829643,535 N 1ST RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1901_30,-74.47359913,39.49366068,426 N CHEW RD,HAMMONTON TOWN,16,1930,1,RES1,3001 -0113_1901_32,-74.5237883,39.39866896,485 13TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1901_32.01,-74.64466456,39.53230734,402 N CHEW RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_1901_32.02,-74.70821893,39.64019517,414 N CHEW RD,HAMMONTON TOWN,17,1999,1,RES3A,3001 -0113_1901_32.03,-74.8276315,39.3827065,420 N CHEW RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_1901_5,-74.5277084,39.31103421,551 N 1ST RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1901_6,-74.868284,39.495763,563 N 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1901_7,-74.55205044,39.38152714,571 N 1ST RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1901_7.01,-74.514387,39.3287685,579 N 1ST RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_1901_8,-74.53732571,39.37367809,595 N 1ST RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_1901_8.01,-74.6345935,39.510358,540 N CHEW RD,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_1901_9,-74.51359623,39.48529994,603 N 1ST RD,HAMMONTON TOWN,17,1956,1,RES3A,3001 -0113_1902_1,-74.75034999,39.43822211,459 13TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1902_10,-74.4900048,39.4948696,469 N CHEW RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1902_11,-74.46860749,39.34641233,471 N CHEW RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1902_12,-74.68394,39.4412335,489 N CHEW RD,HAMMONTON TOWN,19,1975,1,RES1,3001 -0113_1902_16,-74.86728793,39.59415598,641 N CHEW RD,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_1902_17,-74.40121565,39.38985183,643 N CHEW RD,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_1902_18,-74.68939476,39.5710908,701 N CHEW RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_1902_19,-74.3696705,39.4137705,711 N CHEW RD,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_1902_20,-74.61458021,39.37193041,624 ANDERSON AVE,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_1902_21,-74.7649855,39.403316,622 ANDERSON AVE,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_1902_24,-74.700698,39.496401,600 ANDERSON AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1902_25,-74.50384983,39.34133852,590 ANDERSON AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_1902_26,-74.56536831,39.34721943,582 ANDERSON AVE,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_1902_27,-74.52043306,39.31615836,566 ANDERSON AVE,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_1902_28,-74.87489584,39.59077469,150 ANDERSON AVE,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_1902_29,-74.69001624,39.44826743,114 ANDERSON AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_1902_3,-74.8377173,39.40759559,439 N CHEW RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_1902_30,-74.5796145,39.312182,112 ANDERSON AVE,HAMMONTON TOWN,17,1987,1,GOV1,3004 -0113_1902_32,-74.6221655,39.37761867,102 ANDERSON AVE,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_1902_33,-74.85062063,39.53681071,100 ANDERSON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1902_35,-74.63167594,39.39154278,32 ANDERSON AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_1902_36,-74.57148185,39.35483217,215 13TH ST,HAMMONTON TOWN,17,1957,1,GOV1,3004 -0113_1902_37,-74.48583064,39.33486735,301 13TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_1902_37.01,-74.55180582,39.40074822,233 13TH ST,HAMMONTON TOWN,17,1985,1,GOV1,3004 -0113_1902_38,-74.47038181,39.44510991,311 13TH ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_1902_39,-74.46368003,39.35889485,323 13TH ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_1902_40,-74.3689295,39.4105795,401 13TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_1902_41,-74.36783874,39.41059158,407 13TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_1902_42,-74.6503045,39.538794,417 13TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_1902_43,-74.60311438,39.59241845,427 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1902_44,-74.47799084,39.33870758,439 13TH ST,HAMMONTON TOWN,17,1943,1,RES1,3001 -0113_1902_45,-74.523169,39.317228,443 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_1902_6,-74.45448795,39.50033375,451 N CHEW RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_1902_7,-74.8354135,39.373996,455 N CHEW RD,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_1902_8,-74.496923,39.4706775,459 N CHEW RD,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_1902_9,-74.85835151,39.48545242,461 N CHEW RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_200_1,-74.57278068,39.42934898,RAILROAD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_200_3,-74.81291827,39.63237708,RAILROAD,HAMMONTON TOWN,,0,1,IND1,3002 -0113_2001_1,-74.48487858,39.34027655,627 ANDERSON AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2001_1.01,-74.60526067,39.321785,621 ANDERSON AVE,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_2001_1.02,-74.45123658,39.49637719,619 ANDERSON AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2001_11,-74.84686881,39.48877848,478 N EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2001_12,-74.6042065,39.316677,490 N EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2001_14,-74.661109,39.417461,500 N EGG HARBOR RD,HAMMONTON TOWN,,1958,1,RES1,3001 -0113_2001_15,-74.5287175,39.38888584,562 N EGG HARBOR RD,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_2001_16,-74.518033,39.3905585,568 N EGG HARBOR RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2001_18,-74.88273725,39.50299035,600 N EGG HARBOR RD,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_2001_2,-74.81594867,39.65393305,615 ANDERSON AVE,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_2001_20,-74.83216791,39.36373604,610 N EGG HARBOR RD,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_2001_21,-74.86510848,39.45004032,618 N EGG HARBOR RD,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_2001_22,-74.48876723,39.51954924,624 N EGG HARBOR RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_2001_23,-74.756436,39.4486855,630 N EGG HARBOR RD,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2001_24,-74.70980522,39.43060134,634 N EGG HARBOR RD,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_2001_3,-74.6983946,39.35086509,607 ANDERSON AVE,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_2001_4,-74.78708737,39.63709436,603 ANDERSON AVE,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_2001_5,-74.89527498,39.53531246,599 ANDERSON AVE,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_2001_6,-74.65736801,39.36346183,551 ANDERSON AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2001_7,-74.7646115,39.3626575,191 13TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2001_9,-74.56397583,39.34762118,27 13TH ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_2002_1,-74.81365766,39.64713249,631 N EGG HARBOR RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2002_10,-74.57135563,39.41361523,555 N EGG HARBOR RD,HAMMONTON TOWN,,1978,1,RES1,3001 -0113_2002_12,-74.5822845,39.3415355,523 N EGG HARBOR RD,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_2002_13,-74.676307,39.497539,475 N EGG HARBOR RD,HAMMONTON TOWN,17,2008,1,RES1,3001 -0113_2002_2,-74.78864945,39.64165111,627 N EGG HARBOR RD,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_2002_3,-74.5976225,39.434711,615 N EGG HARBOR RD,HAMMONTON TOWN,,1925,1,GOV1,3004 -0113_2002_5,-74.42186389,39.36772332,603 N EGG HARBOR RD,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_2002_6,-74.50051342,39.50203281,577 N EGG HARBOR RD,HAMMONTON TOWN,17,1960,1,GOV1,3004 -0113_2002_7,-74.50150635,39.5266938,571 N EGG HARBOR RD,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_2002_9,-74.84061407,39.59787669,565 N EGG HARBOR RD,HAMMONTON TOWN,17,1923,1,RES1,3001 -0113_2003_1,-74.51770113,39.39535232,101 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2003_1.01,-74.63168554,39.41435181,501 RAIL WAY,HAMMONTON TOWN,17,2007,1,GOV1,3004 -0113_2003_1.02,-74.66073085,39.40405597,505 RAIL WAY,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_2003_2,-74.6038185,39.3223805,117 FAIRVIEW AVE,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_2003_3,-74.5206575,39.3822495,121 FAIRVIEW AVE,HAMMONTON TOWN,17,1974,1,RES1,3004 -0113_2003_5,-74.5531835,39.3627295,116 COLWELL AVE,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2004_1,-74.50338011,39.44270083,501 N 2ND ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2004_2,-74.5116515,39.3239605,201 FAIRVIEW AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2004_3,-74.54232783,39.53265952,207 FAIRVIEW AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2004_4,-74.55356848,39.38333566,217 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2004_5,-74.60540135,39.42154825,227 FAIRVIEW AVE,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_2004_6,-74.7292635,39.4564055,231 FAIRVIEW AVE,HAMMONTON TOWN,,1920,2,RES1,3001 -0113_2004_7,-74.81894374,39.47059393,514 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2004_7.01,-74.60621615,39.32394954,230 COLWELL AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2004_8,-74.5116215,39.38533,224 COLWELL AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2005_1,-74.86119083,39.5660735,100 WOOD ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_2005_10,-74.52227453,39.31964117,544 N 2ND ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_2005_11,-74.9499735,39.5344095,550 N 2ND ST,HAMMONTON TOWN,17,1970,1,COM1,3004 -0113_2005_12,-74.4743044,39.48246668,108 WOOD ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_2005_13,-74.64397241,39.38437776,104 WOOD ST,HAMMONTON TOWN,17,2013,1,RES1,3004 -0113_2005_2.01,-74.447488,39.358093,545 RAIL WAY,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_2005_2.02,-74.62167802,39.42414046,539 RAIL WAY,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2005_4,-74.48171168,39.43440933,101 COLWELL AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2005_5,-74.74910738,39.65873675,107 COLWELL AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2005_6,-74.46995056,39.48967745,123 COLWELL AVE,HAMMONTON TOWN,17,1916,2,RES1,3001 -0113_2005_7,-74.6068167,39.38993784,520 N 2ND ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2005_8,-74.73418875,39.4391529,530 N 2ND ST,HAMMONTON TOWN,17,1970,1,RES3A,3001 -0113_2005_9,-74.469961,39.3458265,540 N 2ND ST,HAMMONTON TOWN,17,1964,1,COM1,3004 -0113_2006_1,-74.6895135,39.5056025,555 N 2ND ST,HAMMONTON TOWN,17,2008,1,RES1,3001 -0113_2006_10,-74.61538511,39.48771016,225 COLWELL AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2006_11,-74.5892122,39.31456386,518 N 3RD ST,HAMMONTON TOWN,17,1915,2,RES1,3004 -0113_2006_12,-74.47359334,39.34183481,524 N 3RD ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_2006_13,-74.4173955,39.368579,528 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2006_14,-74.88121181,39.49671295,532 N 3RD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2006_15,-74.61389674,39.35089458,534 N 3RD ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2006_16,-74.37646535,39.39887086,540 N 3RD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2006_17,-74.49614905,39.49454033,544 N 3RD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2006_18,-74.63984359,39.38427835,548 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2006_18.01,-74.39364335,39.39166096,210 WOOD ST,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_2006_2,-74.48289182,39.33866567,551 N 2ND ST,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_2006_3,-74.639209,39.53296,541 N 2ND ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_2006_4,-74.88821013,39.4993776,531 N 2ND ST,HAMMONTON TOWN,17,1958,1,GOV1,3004 -0113_2006_5,-74.50983,39.3298245,529 N 2ND ST,HAMMONTON TOWN,17,1969,1,COM1,3004 -0113_2006_6,-74.80516214,39.62925907,525 N 2ND ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2006_7,-74.57619157,39.4076406,517 N 2ND ST,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_2006_8,-74.58879714,39.3774728,515 N 2ND ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2006_9,-74.53316024,39.53216882,217 COLWELL AVE,HAMMONTON TOWN,17,1974,1,GOV1,3004 -0113_2007_1,-74.44609657,39.37434821,181 WOOD ST,HAMMONTON TOWN,17,1963,1,GOV1,3004 -0113_2007_1.01,-74.80501155,39.43501384,111 WOOD ST,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_2007_2,-74.60086131,39.43571746,193 WOOD ST,HAMMONTON TOWN,,1975,1,RES1,3001 -0113_2007_3,-74.57827,39.333111,201 WOOD ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_2007_4,-74.765151,39.6363535,207 WOOD ST,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_2007_5,-74.7306082,39.56543569,209 WOOD ST,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_2007_6,-74.4504645,39.478529,554 N 3RD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2007_6.01,-74.59100902,39.3265449,211 WOOD ST,HAMMONTON TOWN,16,1987,1,RES1,3001 -0113_2007_7,-74.62871069,39.42009006,562 N 3RD ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2007_8,-74.687229,39.488049,570 N 3RD ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_2007_9,-74.78063303,39.62056084,578 N 3RD ST,HAMMONTON TOWN,17,1995,2,RES1,3001 -0113_201_12,-74.51866767,39.40285351,996 14TH ST RR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_201_3,-74.54663074,39.38279964,992 14TH ST,HAMMONTON TOWN,17,1965,1,GOV1,3004 -0113_201_6,-74.5180135,39.435265,962 & 970 14TH ST,HAMMONTON TOWN,17,1960,2,RES3A,3001 -0113_202_11,-74.52669437,39.45924502,931 13TH ST,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_202_12,-74.67484367,39.35946551,901 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_202_4,-74.6319245,39.4456985,914 14TH ST,HAMMONTON TOWN,17,1989,1,RES1,3004 -0113_202_4.01,-74.6218215,39.379934,908 14TH ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_202_4.02,-74.60865237,39.31233598,589 N 2ND RD,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_202_4.03,-74.927348,39.5094075,587 N 2ND RD,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_202_4.04,-74.56545748,39.35935278,585 N 2ND RD,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_202_4.05,-74.69665616,39.59302397,581 N 2ND RD,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_202_6,-74.5020035,39.4333305,575 N 2ND RD,HAMMONTON TOWN,18,1996,1,GOV1,3004 -0113_202_7,-74.7891955,39.634044,555 N 2ND RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_202_8,-74.601904,39.319402,547 N 2ND RD,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_2101_1.01,-74.63172654,39.41615809,414 14TH ST,HAMMONTON TOWN,17,2017,1,RES1,3001 -0113_2101_1.02,-74.63134181,39.40751069,420 14TH ST,HAMMONTON TOWN,17,2017,1,RES1,3001 -0113_2101_1.03,-74.66350262,39.40011135,735 N CHEW RD,HAMMONTON TOWN,18,2005,1,GOV1,3004 -0113_2101_1.04,-74.4711299,39.44532918,731 N CHEW RD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_2101_10,-74.52826338,39.38741918,700 N EGG HARBOR RD,HAMMONTON TOWN,17,1944,1,RES1,3001 -0113_2101_11,-74.52683007,39.44907185,710 N EGG HARBOR RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_2101_12,-74.56906839,39.48064481,720 N EGG HARBOR RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2101_13,-74.6251033,39.35486416,730 N EGG HARBOR RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2101_14,-74.51774211,39.39670566,740 N EGG HARBOR RD,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_2101_15,-74.5523166,39.36705641,764 N EGG HARBOR RD,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_2101_16,-74.48209329,39.45026807,770 N EGG HARBOR RD,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_2101_17,-74.83091735,39.45130104,774 N EGG HARBOR RD,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_2101_18,-74.51262797,39.50419716,778 N EGG HARBOR RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2101_2,-74.61353685,39.41028788,725 N CHEW RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2101_2.01,-74.47565631,39.4795894,719 N CHEW RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2101_2.02,-74.45772552,39.34792361,715 N CHEW RD,HAMMONTON TOWN,17,1999,1,GOV1,3004 -0113_2101_3,-74.50008158,39.49037618,647 ANDERSON AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2101_4.02,-74.6554206,39.36940263,629 ANDERSON AVE,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_2101_4.03,-74.45147965,39.49815623,635 ANDERSON AVE,HAMMONTON TOWN,17,1990,1,GOV1,3004 -0113_2101_4.04,-74.48054,39.3492345,639 ANDERSON AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2101_4.05,-74.93517244,39.52705449,634 ANDERSON AVE,HAMMONTON TOWN,17,2000,1,GOV1,3004 -0113_2101_4.06,-74.56748839,39.34222418,632 ANDERSON AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2101_4.07,-74.63726313,39.40925533,630 ANDERSON AVE,HAMMONTON TOWN,17,1959,2,RES1,3001 -0113_2101_4.08,-74.5898405,39.432475,643 ANDERSON AVE,HAMMONTON TOWN,17,2001,1,GOV1,3004 -0113_2101_4.09,-74.62353833,39.608668,648 ANDERSON AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2101_4.11,-74.39815166,39.39007314,638 ANDERSON AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2101_4.12,-74.56121006,39.4138153,636 ANDERSON AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2101_6,-74.42095232,39.37093756,638 N EGG HARBOR RD,HAMMONTON TOWN,17,1938,1,RES1,3001 -0113_2101_7,-74.61570238,39.37442969,642 N EGG HARBOR RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2101_8,-74.72250975,39.64611373,644 N EGG HARBOR RD,HAMMONTON TOWN,17,1950,1,REL1,3004 -0113_2101_9,-74.826988,39.5685175,652 N EGG HARBOR RD,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_2102_1,-74.5070256,39.4616206,841 N EGG HARBOR RD,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_2102_10.01,-74.58296292,39.43216617,739 N EGG HARBOR RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2102_10.02,-74.38308092,39.41709316,727 N EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2102_11,-74.38156488,39.39376406,717 N EGG HARBOR RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2102_12,-74.8172595,39.652612,649 N EGG HARBOR RD,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_2102_13,-74.4534455,39.502372,643 N EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2102_14,-74.594079,39.3768355,633 N EGG HARBOR RD,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_2102_2,-74.602921,39.4113685,839 N EGG HARBOR RD,HAMMONTON TOWN,17,1890,1,RES1,3001 -0113_2102_3,-74.45900668,39.34819148,837 N EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2102_4,-74.839466,39.3764475,835 N EGG HARBOR RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2102_5,-74.62048172,39.54096084,803 N EGG HARBOR RD,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_2102_5.01,-74.809003,39.442546,791 N EGG HARBOR RD,HAMMONTON TOWN,18,2005,1,GOV1,3004 -0113_2102_6,-74.5118395,39.330962,779 N EGG HARBOR RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2102_7,-74.5240455,39.3193595,773 N EGG HARBOR RD,HAMMONTON TOWN,17,1914,1,RES1,3001 -0113_2102_8,-74.3921575,39.3916175,767 N EGG HARBOR RD,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2102_9,-74.5762735,39.4808215,763 N EGG HARBOR RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2103_1.02,-74.838889,39.40886,214 FRANCIS ST,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2103_10,-74.92522,39.511317,646 N 3RD ST,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_2103_11,-74.5919981,39.33278833,634-636 N 3RD ST,HAMMONTON TOWN,17,1920,3,RES1,3001 -0113_2103_12,-74.57805,39.3533505,632 N 3RD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2103_13,-74.59271284,39.32851101,614 N 3RD ST,HAMMONTON TOWN,17,1946,1,GOV1,3004 -0113_2103_14,-74.70770016,39.47298502,612 N 3RD ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2103_15,-74.825346,39.393453,610 N 3RD ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_2103_16,-74.5652915,39.3636415,608 N 3RD ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2103_17,-74.983396,39.5138085,604 N 3RD ST,HAMMONTON TOWN,16,1925,3,GOV1,3004 -0113_2103_18,-74.36720642,39.40382335,600 N 3RD ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_2103_2.01,-74.493221,39.519012,240 FRANCIS ST,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_2103_2.02,-74.5131095,39.4653885,250 FRANCIS ST,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_2103_2.03,-74.63830671,39.43524222,260 FRANCIS ST,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_2103_3,-74.480807,39.3361425,270 FRANCIS ST,HAMMONTON TOWN,17,1994,1,GOV1,3004 -0113_2103_4.01,-74.66921396,39.39212699,698 N 3RD ST,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2103_4.02,-74.61090848,39.31522639,694 N 3RD ST,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_2103_5.01,-74.37245018,39.42091247,690 N 3RD ST,HAMMONTON TOWN,17,1980,1,GOV1,3004 -0113_2103_5.02,-74.61539374,39.38012512,684 N 3RD ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2103_6,-74.50299759,39.44259832,674 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2103_7,-74.47036918,39.48724748,664 N 3RD ST,HAMMONTON TOWN,16,1920,2,RES1,3001 -0113_2103_8,-74.57294803,39.35814814,662 N 3RD ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2103_9,-74.84430513,39.41215218,660 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2104_1,-74.62799838,39.48524956,665 N 3RD ST,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_2104_10,-74.46829718,39.34236447,317 NORTH ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2104_11,-74.63456812,39.31805861,335 NORTH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_2104_11.02,-74.85372707,39.61279718,321 NORTH ST,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_2104_13,-74.676099,39.3775695,347 NORTH ST,HAMMONTON TOWN,17,1952,2,RES1,3001 -0113_2104_13.01,-74.60988234,39.31845654,339 NORTH ST,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2104_13.02,-74.55712506,39.3668653,347A NORTH ST,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_2104_14,-74.62952466,39.41985515,349 NORTH ST,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_2104_15,-74.92646312,39.50940293,357 NORTH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2104_15.01,-74.89784553,39.51161067,355 NORTH ST,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_2104_16,-74.515524,39.3882675,402 WALNUT ST,HAMMONTON TOWN,16,1920,1,RES1,3001 -0113_2104_16.01,-74.524448,39.416957,365 NORTH ST,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_2104_17,-74.75973893,39.66848919,375 NORTH ST,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_2104_18,-74.61729719,39.32195189,385 NORTH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2104_2,-74.49405758,39.53201061,655 N 3RD ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2104_20,-74.65159816,39.37190448,391 NORTH ST,HAMMONTON TOWN,17,1981,1,RES1,3001 -0113_2104_21,-74.551503,39.372609,640 4TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2104_22,-74.49086327,39.43300907,642 4TH ST,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_2104_23,-74.5592585,39.3987375,644 4TH ST,HAMMONTON TOWN,16,1910,1,GOV1,3004 -0113_2104_24,-74.63501393,39.53331566,670 4TH ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_2104_25,-74.5772676,39.53740919,674 4TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2104_27,-74.369478,39.4181215,704 4TH ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2104_28,-74.84174999,39.56244083,714 4TH ST,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_2104_29,-74.57496194,39.42657547,736 4TH ST,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_2104_3,-74.736034,39.433695,645 N 3RD ST,HAMMONTON TOWN,16,1930,1,RES1,3001 -0113_2104_30,-74.596211,39.3407335,744 4TH ST,HAMMONTON TOWN,17,1975,1,GOV1,3004 -0113_2104_31,-74.41590056,39.36735015,750 4TH ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2104_32,-74.7343095,39.437313,468 WALNUT ST,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_2104_33,-74.63068812,39.44560314,458 WALNUT ST,HAMMONTON TOWN,17,2012,1,RES1,3001 -0113_2104_34,-74.5288435,39.3992705,456 WALNUT ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_2104_35,-74.78291614,39.63483181,450 WALNUT ST,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_2104_36,-74.51558858,39.40026982,432 WALNUT ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_2104_37,-74.61247353,39.34782104,426 WALNUT ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2104_38,-74.57798778,39.34978395,422 WALNUT ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2104_39,-74.87619184,39.59756501,410 WALNUT ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2104_4,-74.637631,39.5360055,641 N 3RD ST,HAMMONTON TOWN,17,1955,1,GOV1,3004 -0113_2104_41,-74.38754994,39.39143385,382 WALNUT ST,HAMMONTON TOWN,16,1920,2,RES1,3001 -0113_2104_42,-74.6659715,39.397803,378 WALNUT ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2104_43,-74.5886355,39.347656,356 WALNUT ST,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_2104_44,-74.6005925,39.319277,332 WALNUT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2104_45,-74.47332268,39.48631894,328 WALNUT ST,HAMMONTON TOWN,17,1972,1,GOV1,3004 -0113_2104_46,-74.4634705,39.358644,324 WALNUT ST,HAMMONTON TOWN,17,2002,1,GOV1,3004 -0113_2104_47,-74.59221706,39.31531953,320 WALNUT ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_2104_5,-74.570957,39.4136445,633 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES3B,3001 -0113_2104_6,-74.95355602,39.51578151,629 N 3RD ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2104_8,-74.66366498,39.36202819,611 N 3RD ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_2104_9,-74.45154201,39.35646537,607 N 3RD ST,HAMMONTON TOWN,17,1902,2,RES1,3001 -0113_2201_1,-74.57140467,39.54814101,591 N 3RD ST,HAMMONTON TOWN,17,1970,1,GOV1,3004 -0113_2201_10,-74.47660932,39.48400916,555 N 3RD ST,HAMMONTON TOWN,17,1948,2,RES1,3001 -0113_2201_11,-74.82136172,39.53910822,549 N 3RD ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2201_13,-74.4994685,39.522217,541 N 3RD ST,HAMMONTON TOWN,17,1947,1,RES1,3001 -0113_2201_14,-74.538314,39.3929535,539 N 3RD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2201_15,-74.6044505,39.369565,533 N 3RD ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_2201_16,-74.60763223,39.36472207,529 N 3RD ST,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_2201_17,-74.83804084,39.38735077,527 N 3RD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2201_18,-74.5310865,39.4173365,521 N 3RD ST,HAMMONTON TOWN,17,1947,1,RES1,3001 -0113_2201_19,-74.49832476,39.33406816,517 N 3RD ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_2201_2,-74.58722024,39.32264533,587 N 3RD ST,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_2201_20,-74.7754205,39.609492,515 N 3RD ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2201_21,-74.48117528,39.44243039,511 N 3RD ST,HAMMONTON TOWN,17,2003,1,GOV1,3004 -0113_2201_22,-74.73418692,39.44934211,501 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2201_23,-74.4376335,39.3686185,301 FAIRVIEW AVE,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_2201_24,-74.62694135,39.43328408,315 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_25,-74.5719605,39.3691795,319 FAIRVIEW AVE,HAMMONTON TOWN,17,2008,1,RES1,3004 -0113_2201_26,-74.5637557,39.47823395,321 FAIRVIEW AVE,HAMMONTON TOWN,17,2008,1,RES1,3001 -0113_2201_27,-74.532604,39.4531375,325 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2201_28,-74.88006629,39.59747667,"329A,B&C FAIRVIEW AVE",HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2201_29,-74.60295385,39.50649465,333 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_3,-74.71567034,39.58009647,581 N 3RD ST,HAMMONTON TOWN,17,1926,2,RES1,3001 -0113_2201_30,-74.84370498,39.39022586,337 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_31,-74.4651295,39.4675845,339 FAIRVIEW AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2201_32,-74.61705117,39.49400049,345 FAIRVIEW AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2201_33,-74.52008359,39.46917014,349 FAIRVIEW AVE,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_2201_34,-74.9716575,39.512241,359 FAIRVIEW AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_2201_35,-74.56893313,39.54255118,377 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_36,-74.456546,39.3491555,379 FAIRVIEW AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_2201_37,-74.5041255,39.3269955,387 FAIRVIEW AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2201_38,-74.3699625,39.41344031,401 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_39,-74.76269363,39.63737914,451 PACKARD ST EXTENSION,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2201_4,-74.63780665,39.33961648,577 N 3RD ST,HAMMONTON TOWN,,1900,1,RES1,3001 -0113_2201_40,-74.803999,39.6393475,407 FAIRVIEW AVE,HAMMONTON TOWN,17,1924,1,RES1,3001 -0113_2201_41,-74.7822897,39.65306255,499 FAIRVIEW AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2201_42,-74.55479,39.3633315,499-501 FAIRVIEW AVE ROW,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2201_44,-74.57893207,39.42448983,503 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_45,-74.5938455,39.312071,505 FAIRVIEW AVE,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_2201_46,-74.5399435,39.380116,501 FAIRVIEW AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2201_48,-74.46633583,39.3467935,507 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2201_50.01,-74.59119085,39.33203816,535 FAIRVIEW AVE,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_2201_50.02,-74.589672,39.375695,525 FAIRVIEW AVE,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_2201_51,-74.64912158,39.35191835,547 FAIRVIEW AVE,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2201_52,-74.450533,39.4954425,555 FAIRVIEW AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2201_53,-74.50626448,39.38439208,559 FAIRVIEW AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2201_54,-74.7466379,39.63600264,561 FAIRVIEW AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_2201_55,-74.64393304,39.39189147,565 FAIRVIEW AVE AT 4TH,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_2201_57,-74.6413015,39.547921,534 4TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_2201_58,-74.58193752,39.34546751,536 4TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2201_59,-74.527224,39.4534305,538 4TH ST,HAMMONTON TOWN,17,1938,1,RES1,3001 -0113_2201_6,-74.6043565,39.3763175,569 N 3RD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2201_60,-74.77699592,39.6384791,546 4TH ST,HAMMONTON TOWN,17,1938,1,GOV1,3004 -0113_2201_62,-74.56896403,39.36300061,560 4TH ST,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_2201_63,-74.8360222,39.50338297,562 4TH ST,HAMMONTON TOWN,17,1960,1,GOV1,3004 -0113_2201_64,-74.50614001,39.45885317,584 4TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_65,-74.7207135,39.6451145,592 4TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_66,-74.48715126,39.49440905,598 4TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2201_67,-74.59120466,39.43166492,606 4TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2201_67.01,-74.645451,39.4309555,610 4TH ST AT NORTH ST,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_2201_67.02,-74.463314,39.35841283,394 NORTH ST,HAMMONTON TOWN,17,1989,1,GOV1,3004 -0113_2201_67.03,-74.53848394,39.46160818,390 NORTH ST,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_2201_68,-74.49867155,39.49724634,386 NORTH ST,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_2201_69,-74.4815345,39.337554,384 NORTH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2201_70,-74.56593789,39.36789438,380 NORTH ST,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_2201_71,-74.646584,39.420801,376 NORTH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2201_72,-74.493356,39.434421,370 NORTH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_2201_73,-74.471872,39.343013,368 NORTH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2201_74,-74.5271545,39.381811,366 NORTH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2201_75,-74.5817225,39.3725735,364 NORTH ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_2201_76,-74.39017438,39.39013742,358 NORTH ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_2201_78,-74.58382702,39.34442775,344 NORTH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_2201_79,-74.4343735,39.3694065,336 NORTH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2201_80,-74.84991801,39.60879317,332 NORTH ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2201_81,-74.81534719,39.39191727,326 NORTH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2201_82,-74.444956,39.3740435,322 NORTH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2201_83,-74.58800831,39.41570994,318 NORTH ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2201_9,-74.5556565,39.4695875,559 N 3RD ST,HAMMONTON TOWN,17,1960,1,GOV1,3004 -0113_2301_1,-74.9474968,39.52523259,607 FAIRVIEW AVE,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_2301_1.01,-74.5934115,39.322861,525 4TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2301_10,-74.53391168,39.41563152,681 FAIRVIEW AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2301_11,-74.37397431,39.41552024,687 FAIRVIEW AVE,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_2301_15,-74.813218,39.636466,695 FAIRVIEW AVE,HAMMONTON TOWN,17,1965,1,GOV1,3004 -0113_2301_19,-74.36843458,39.40735535,771 FAIRVIEW AVE,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_2301_2,-74.46018175,39.49101694,609 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2301_20,-74.554415,39.3648205,779 FAIRVIEW AVE,HAMMONTON TOWN,17,1942,1,RES1,3001 -0113_2301_21,-74.84469974,39.60710428,805 FAIRVIEW AVE,HAMMONTON TOWN,17,1970,2,GOV1,3004 -0113_2301_22,-74.55255664,39.47902054,809 FAIRVIEW AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2301_23,-74.62245621,39.43406358,813 FAIRVIEW AVE,HAMMONTON TOWN,17,1884,3,RES1,3001 -0113_2301_24,-74.7822875,39.5091765,222 N WHITE HORSE PK,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2301_25,-74.47387974,39.48735256,234 N WHITE HORSE PK,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2301_26,-74.48837733,39.35015855,240 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2301_27,-74.47108416,39.44331707,244 N WHITE HORSE PK,HAMMONTON TOWN,17,1957,1,COM3,3004 -0113_2301_28,-74.438071,39.3654305,250 N WHITE HORSE PK,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_2301_3,-74.65709116,39.55754798,623 FAIRVIEW AVE,HAMMONTON TOWN,17,1924,1,RES1,3001 -0113_2301_30,-74.51861607,39.31922367,274 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2301_31,-74.83754262,39.40649864,276 N WHITE HORSE PK,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_2301_33,-74.570916,39.3508475,290 N WHITE HORSE PK,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2301_34,-74.72860953,39.45912331,550 OLD FORKS RD,HAMMONTON TOWN,,2005,1,RES1,3001 -0113_2301_35,-74.49726433,39.33668803,308 N WHITE HORSE PK,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2301_39,-74.606092,39.4930195,392 N WHITE HORSE PK,HAMMONTON TOWN,,1990,1,RES1,3001 -0113_2301_4,-74.63240913,39.40125837,627 FAIRVIEW AVE,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_2301_40,-74.61114134,39.32693297,394 N WHITE HORSE PK,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2301_42,-74.530717,39.383138,430 N WHITE HORSE PK,HAMMONTON TOWN,,1962,1,RES1,3001 -0113_2301_49,-74.80365,39.637806,526 OLD FORKS RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2301_49.01,-74.60001022,39.34085636,514 OLD FORKS RD,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2301_49.02,-74.61266452,39.34003649,518 OLD FORKS RD,HAMMONTON TOWN,18,2008,1,RES1,3001 -0113_2301_5,-74.43652647,39.51857822,633 FAIRVIEW AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_2301_50.01,-74.64028619,39.38097892,600 WALNUT ST,HAMMONTON TOWN,17,2018,1,RES1,3001 -0113_2301_50.03,-74.60181106,39.34804219,584 WALNUT ST,HAMMONTON TOWN,17,2018,1,RES1,3001 -0113_2301_50.04,-74.602606,39.3499225,576 WALNUT ST,HAMMONTON TOWN,17,2018,1,RES1,3001 -0113_2301_50.05,-74.60827695,39.35015081,568 WALNUT ST,HAMMONTON TOWN,18,2013,1,RES1,3001 -0113_2301_51.02,-74.8314985,39.414987,532 WALNUT ST,HAMMONTON TOWN,18,2009,1,RES1,3001 -0113_2301_51.03,-74.69779313,39.50910126,544 WALNUT ST,HAMMONTON TOWN,18,2011,1,RES1,3001 -0113_2301_51.04,-74.61115832,39.34902296,556 WALNUT ST,HAMMONTON TOWN,18,2012,1,RES1,3001 -0113_2301_52,-74.4884115,39.3513245,516 WALNUT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2301_53,-74.65373735,39.4051996,510 WALNUT ST,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_2301_54,-74.50772817,39.40744357,500 WALNUT ST,HAMMONTON TOWN,17,1961,2,RES1,3001 -0113_2301_55,-74.40035868,39.38588698,480 WALNUT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2301_56,-74.3682735,39.4105005,476 WALNUT ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2301_57,-74.54381023,39.46024739,4TH ST REAR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2301_6,-74.619231,39.37323,657 FAIRVIEW AVE,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_2301_60,-74.629922,39.422674,715 4TH ST,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_2301_61,-74.47271413,39.34159224,711 4TH ST,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_2301_63,-74.86110534,39.54211551,691 4TH ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_2301_7,-74.49796358,39.32959418,673 FAIRVIEW AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_2301_8_C0001,-74.749474,39.60359717,1 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,GOV1,3004 -0113_2301_8_C0002,-74.8117697,39.62664592,2 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0003,-74.64561559,39.40758681,3 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0004,-74.50509769,39.49320394,4 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0005,-74.57283058,39.34076268,5 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0006,-74.57277135,39.37590209,6 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0007,-74.7833615,39.6741375,7 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0008,-74.477488,39.3381885,8 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0009,-74.4968917,39.32862774,9 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0010,-74.63279619,39.38962109,10 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0011,-74.48712202,39.33820566,11 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0012,-74.49210107,39.45291797,12 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0013,-74.45397403,39.50163092,13 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0014,-74.37067826,39.41457466,14 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0015,-74.72584368,39.45995757,15 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0016,-74.373753,39.416211,16 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0017,-74.617127,39.321395,17 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0018,-74.8390325,39.409567,18 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0019,-74.532178,39.387895,19 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0020,-74.483293,39.4788965,20 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0021,-74.87378321,39.56541445,21 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0022,-74.53311915,39.30564315,22 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0023,-74.62442328,39.50688169,23 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0024,-74.39904659,39.38957533,24 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,IND2,3002 -0113_2301_8_C0025,-74.52070144,39.3835927,25 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0026,-74.4994405,39.336823,26 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0027,-74.67065486,39.38560187,27 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0028,-74.43960733,39.367689,28 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,COM3,3004 -0113_2301_8_C0029,-74.506232,39.4326715,29 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0030,-74.60866209,39.320502,30 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0031,-74.44606132,39.37313189,31 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0032,-74.528294,39.3864475,32 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0033,-74.66795921,39.56834207,33 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0034,-74.63452065,39.52366638,34 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0035,-74.4658195,39.34716,35 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0036,-74.4519125,39.357155,36 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0037,-74.867214,39.56414417,37 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0038,-74.54886,39.474969,38 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0039,-74.5881415,39.3776435,39 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2301_8_C0040,-74.5878955,39.4246515,40 TONI LYNN CT,HAMMONTON TOWN,37,1980,1,RES1,3001 -0113_2302_1_C0007,-74.51252811,39.32237385,7 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0008,-74.79822313,39.64099721,8 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0009,-74.5117445,39.4081435,9 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0010,-74.49521303,39.4537118,10 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0011,-74.44886615,39.35500977,11 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0012,-74.4137185,39.389992,12 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0013,-74.51732727,39.39666064,13 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0014,-74.816162,39.6412535,14 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0015,-74.530959,39.37539934,15 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0016,-74.58572056,39.47318668,16 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0017,-74.50874131,39.34011964,17 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0018,-74.4976752,39.49497783,18 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0019,-74.5962125,39.3173395,19 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0020,-74.392806,39.392044,20 DEBORAH LN,HAMMONTON TOWN,37,1973,1,GOV1,3004 -0113_2302_1_C0021,-74.67491231,39.37603552,21 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0022,-74.954731,39.51954,22 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0023,-74.74527019,39.44639201,23 DEBORAH LN,HAMMONTON TOWN,37,1973,1,COM7,3003 -0113_2302_1_C0024,-74.49960368,39.44271752,24 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0025,-74.391224,39.390939,25 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0026,-74.47992569,39.43275932,26 DEBORAH LN,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0027,-74.5384215,39.3856625,27 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,COM1,3004 -0113_2302_1_C0028,-74.62721888,39.43440631,28 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0029,-74.52784828,39.38717067,29 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0030,-74.61071372,39.32232572,30 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0031,-74.67030786,39.38580047,31 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0032,-74.61290639,39.48902332,32 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0033,-74.82483904,39.64462133,33 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0034,-74.63618381,39.34898843,34 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0035,-74.64459649,39.52766833,35 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0036,-74.496592,39.43533,36 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0037,-74.65788229,39.5378395,37 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0038,-74.53576885,39.38486746,38 ROSE RITA TERR,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0039,-74.61439995,39.31070416,39 MICHAEL RD,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0040,-74.4910145,39.33593,40 MICHAEL RD,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0041,-74.48329613,39.33441469,41 MICHAEL RD,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0042,-74.50356468,39.40939594,42 MICHAEL RD,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0043,-74.7346865,39.438451,43 MICHAEL RD,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0044,-74.50227922,39.50110797,44 MICHAEL RD,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0045,-74.77644178,39.62196461,45 MICHAEL RD,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_1_C0046,-74.63600832,39.43009587,46 MICHAEL RD,HAMMONTON TOWN,37,1973,1,RES1,3001 -0113_2302_3,-74.77285015,39.49189394,733 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,3,RES1,3001 -0113_2302_4,-74.855672,39.5599095,737 FAIRVIEW AVE,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2302_6,-74.871613,39.5935935,10 AIMEE JEAN DR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2401_1,-74.58798835,39.41172468,488 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2401_2,-74.811112,39.631621,486 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2401_2.01,-74.66972958,39.3850734,486A 13TH ST,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2401_3,-74.40870967,39.38187213,482 13TH ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2401_3.01,-74.67407894,39.37365506,370 N CHEW RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2401_4.01,-74.7061435,39.6348695,360 N CHEW RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2401_4.02,-74.6813353,39.38039904,350 N CHEW RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2401_5,-74.50359205,39.41805579,340 N CHEW RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2401_6,-74.39484086,39.38843118,345 N 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2401_6.01,-74.8825395,39.484444,333 N 1ST RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2401_7,-74.5213311,39.38853854,365 N 1ST RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2402_1,-74.49641174,39.45265011,375 N CHEW RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2402_1.01,-74.49921494,39.46460811,355 N CHEW RD,HAMMONTON TOWN,17,2000,1,RES3A,3001 -0113_2402_10,-74.63232351,39.31667715,278 N GRAND ST,HAMMONTON TOWN,17,2002,1,GOV1,3004 -0113_2402_10.01,-74.70637623,39.44500357,268 N GRAND ST,HAMMONTON TOWN,17,2002,1,COM3,3004 -0113_2402_10.02,-74.8833571,39.49713764,258 N GRAND ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2402_10.03,-74.90438169,39.53739194,248 N GRAND ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2402_11,-74.57497731,39.48220719,242 N GRAND ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2402_12,-74.51702405,39.41015909,238 N GRAND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2402_13,-74.5552705,39.3691935,234 N GRAND ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_2402_14,-74.58935635,39.42873579,224 N GRAND ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2402_15,-74.73954767,39.42970299,210 N GRAND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2402_16,-74.63267015,39.34750772,411 WILBUR AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_2402_17,-74.60795771,39.38619793,415 WILBUR AVE,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_2402_18,-74.428599,39.3765565,421 WILBUR AVE,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2402_19,-74.65160416,39.52330603,507 WILBUR AVE,HAMMONTON TOWN,17,1890,2,RES1,3001 -0113_2402_2,-74.9406193,39.51119087,452 13TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2402_21,-74.48022446,39.43230197,521 WILBUR AVE,HAMMONTON TOWN,17,1910,1,GOV1,3004 -0113_2402_24,-74.4627695,39.3569345,547 WILBUR AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2402_25,-74.512394,39.3276445,551 WILBUR AVE,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2402_26,-74.59505057,39.31425731,601 WILBUR AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2402_27,-74.51882533,39.45716363,603 WILBUR AVE,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_2402_28,-74.6747435,39.496965,311 N CHEW RD,HAMMONTON TOWN,17,1900,1,COM1,3004 -0113_2402_28.01,-74.66838752,39.37152857,607 WILBUR AVE,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_2402_29,-74.56311738,39.48021513,317 N CHEW RD,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2402_3,-74.377044,39.398233,448 13TH ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2402_31,-74.5520135,39.3796635,323 N CHEW RD,HAMMONTON TOWN,17,1908,2,RES1,3001 -0113_2402_32,-74.62455214,39.5053649,325 N CHEW RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2402_33,-74.811918,39.523215,339 N CHEW RD,HAMMONTON TOWN,17,1946,1,GOV1,3004 -0113_2402_34,-74.59195706,39.51873275,343 N CHEW RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2402_4,-74.6278735,39.3586515,434 13TH ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2402_5,-74.503021,39.3303405,430 13TH ST,HAMMONTON TOWN,17,1939,1,RES1,3001 -0113_2402_6,-74.8655416,39.43534127,420 13TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2402_7,-74.6992755,39.4850085,416 13TH ST,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_2402_8,-74.75100555,39.44576832,414 13TH ST,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_2402_9,-74.67260267,39.3732869,402 13TH ST AT GRAND,HAMMONTON TOWN,17,1905,2,RES1,3001 -0113_2402_9.01,-74.4696065,39.343938,292 N GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_2402_9.02,-74.642404,39.393873,284 N GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_2403_1,-74.5869285,39.3354915,"616 WILBUR AVE,175 N 1ST",HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2403_2,-74.59385,39.320595,612 WILBUR AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2403_3,-74.582554,39.4322775,610 WILBUR AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2403_4,-74.5147255,39.38698383,600 WILBUR AVE,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_2403_5,-74.56231891,39.54173291,601 W PLEASANT ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2404_1,-74.53306467,39.38917701,131 N 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2404_2,-74.49687835,39.49773954,621 JACOBS ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2404_3,-74.66562992,39.34968767,610 W PLEASANT ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_2404_4,-74.52318884,39.32056055,600 W PLEASANT ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_2404_7,-74.461187,39.499935,601 JACOBS ST AT MONROE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_2404_8,-74.688261,39.499651,611 JACOBS ST,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_2405_1,-74.62160084,39.60790697,101 N 1ST RD,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_2405_2,-74.60135354,39.36010268,612 JACOBS ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2405_3,-74.90303018,39.49188384,610 JACOBS ST,HAMMONTON TOWN,17,1900,3,RES1,3001 -0113_2405_4,-74.78099616,39.63686054,600 JACOBS ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_2405_5,-74.860205,39.56627,601 W ORCHARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2405_7,-74.5038735,39.4110416,615 W ORCHARD ST,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_2405_8,-74.58784082,39.51285253,623 W ORCHARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2406_1,-74.5684135,39.4110385,514 WILBUR AVE,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_2406_2,-74.3598465,39.4114525,508 WILBUR AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_2406_3,-74.53091322,39.47134705,503 W PLEASANT ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_2406_3.01,-74.5826075,39.43023439,500 WILBUR AVE,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_2406_4,-74.62756251,39.45899701,515 W PLEASANT ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_2406_6,-74.49931953,39.52057483,521 W PLEASANT ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2406_7,-74.61045035,39.31669755,529 W PLEASANT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2407_1,-74.71944577,39.45082816,522 W PLEASANT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2407_11,-74.8346605,39.488455,523 JACOBS ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2407_12,-74.62519817,39.41041603,127 N MONROE AVE,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_2407_2,-74.67589719,39.35471283,514 W PLEASANT ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2407_3,-74.37667297,39.39836083,512 W PLEASANT ST,HAMMONTON TOWN,17,1895,1,RES1,3001 -0113_2407_4,-74.63599463,39.41847871,508 W PLEASANT ST,HAMMONTON TOWN,17,1920,1,COM1,3004 -0113_2407_6,-74.653649,39.626069,500 W PLEASANT ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2407_8,-74.50240223,39.33251423,501 JACOBS ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2408_1,-74.63084352,39.48411521,113 N MONROE AVE,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_2408_12,-74.46567088,39.45753288,529 W ORCHARD ST,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_2408_2,-74.50646917,39.38408454,520 JACOBS ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2408_3,-74.8555895,39.54916,512 JACOBS ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_2408_4,-74.63459,39.3622365,508 JACOBS ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2408_5,-74.8451205,39.6224385,20 N MADISON AVE AT JACOB,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_2408_6,-74.84572478,39.55675675,509 W ORCHARD ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2408_6.01,-74.56918702,39.37543683,509A W ORCHARD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2408_7,-74.7506225,39.6035395,511 W ORCHARD ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2408_9,-74.51880916,39.38929099,521 W ORCHARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2409_1,-74.88541973,39.59632719,219 N MADISON AVE,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_2409_2,-74.54093859,39.50662634,420 WILBUR AVE,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2409_3,-74.91378607,39.48021275,401 W PLEASANT ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2409_4,-74.62663006,39.43604379,415 W PLEASANT ST,HAMMONTON TOWN,17,1908,1,RES1,3001 -0113_2409_5,-74.60857617,39.3877485,421 W PLEASANT ST,HAMMONTON TOWN,17,1975,1,COM4,3004 -0113_2409_7,-74.58952,39.433979,425-429 W PLEASANT ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2410_1,-74.37620502,39.39975518,428 W PLEASANT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2410_2,-74.6598875,39.39552,422 W PLEASANT ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2410_3,-74.3708535,39.4167,414 W PLEASANT ST,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_2410_4,-74.48422881,39.33495355,128 N GRAND ST,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_2410_5,-74.60979081,39.34948089,120 N GRAND ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2410_7,-74.57602064,39.42948763,417 JACOBS ST,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_2410_8,-74.4896705,39.5217015,427 JACOBS ST AT MADISON,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2411_1,-74.5868305,39.3162895,429 W ORCHARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2411_2,-74.712983,39.635657,425 W ORCHARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2411_3,-74.55486493,39.47275623,419 W ORCHARD ST,HAMMONTON TOWN,17,1900,1,COM1,3004 -0113_2411_4,-74.36822799,39.42166667,110 N GRAND ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_2411_5,-74.52710576,39.3111228,401 W ORCHARD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2411_6,-74.75762108,39.43134052,413 W ORCHARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2412_1,-74.87223842,39.59330466,312 13TH ST,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_2412_10,-74.48682867,39.3369375,278 MESSINA AVE,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2412_11,-74.4511475,39.492282,274 MESSINA AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2412_12,-74.5042955,39.442553,270 MESSINA AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2412_13,-74.728568,39.5895185,266 MESSINA AVE,HAMMONTON TOWN,17,1930,1,RES3A,3001 -0113_2412_14,-74.38169511,39.41499561,262 MESSINA AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2412_15,-74.52367212,39.39302683,258 MESSINA AVE,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_2412_16,-74.59567274,39.34579569,254 MESSINA AVE,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_2412_17,-74.65313224,39.35172795,250 MESSINA AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2412_18,-74.600669,39.4333325,244 MESSINA AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2412_19,-74.52376801,39.39780433,236 MESSINA AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2412_20,-74.442575,39.3714685,232 MESSINA AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2412_21,-74.78561636,39.59603383,226 MESSINA AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2412_22,-74.51485007,39.38775081,222 MESSINA AVE,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2412_23,-74.81632532,39.61339317,218 MESSINA AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2412_26,-74.48401426,39.49493198,214 MESSINA AVE,HAMMONTON TOWN,17,1987,2,RES1,3001 -0113_2412_27,-74.38334665,39.3946836,309 W PLEASANT ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2412_28,-74.49064984,39.53450449,201 N GRAND ST,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_2412_29,-74.70457936,39.46834617,207 N GRAND ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2412_3,-74.612273,39.473932,308 13TH ST,HAMMONTON TOWN,17,1900,3,RES1,3001 -0113_2412_30,-74.9201805,39.5069575,215 N GRAND ST,HAMMONTON TOWN,17,2016,1,RES1,3001 -0113_2412_31,-74.78183311,39.60614835,217 N GRAND ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2412_33,-74.815715,39.652971,225 N GRAND ST,HAMMONTON TOWN,28,1925,1,RES1,3001 -0113_2412_34,-74.57340922,39.3617761,227 N GRAND ST,HAMMONTON TOWN,28,1925,1,RES1,3001 -0113_2412_35,-74.73177489,39.58963214,231 N GRAND ST,HAMMONTON TOWN,17,1988,1,RES1,3002 -0113_2412_36,-74.642019,39.348752,233 N GRAND ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_2412_37,-74.51381964,39.32666903,239 N GRAND ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2412_38,-74.49036854,39.47799227,245 N GRAND ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2412_39,-74.7902255,39.630672,251 N GRAND ST,HAMMONTON TOWN,17,2008,1,RES1,3001 -0113_2412_40,-74.38229129,39.41607107,265 N GRAND ST,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_2412_42,-74.72518934,39.45998423,275 N GRAND ST,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_2412_43,-74.71021539,39.50069643,279 N GRAND ST,HAMMONTON TOWN,17,1969,1,RES3A,3002 -0113_2412_44,-74.547475,39.471666,285 N GRAND ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_2412_45,-74.6191445,39.438767,291 N GRAND ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_2412_5,-74.86938764,39.49260126,304 MESSINA AVE,HAMMONTON TOWN,17,1939,1,RES1,3001 -0113_2412_7,-74.45394696,39.49044527,300 MESSINA AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2412_8,-74.75256136,39.44886978,296 MESSINA AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_2412_9,-74.951136,39.513333,290 MESSINA AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2413_1,-74.84963843,39.60889505,303 MESSINA AVE,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_2413_13,-74.51176045,39.44432617,250 WEST END AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2413_17,-74.35689122,39.41394419,213 W PLEASANT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2413_18,-74.69260338,39.44870476,215 MESSINA AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_2413_19,-74.58123376,39.33991708,223 MESSINA AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2413_20,-74.55113889,39.38335232,227 MESSINA AVE,HAMMONTON TOWN,17,1925,1,REL1,3004 -0113_2413_20.01,-74.825051,39.6387745,233 MESSINA AVE,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_2413_21,-74.75918982,39.44506137,235 MESSINA AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2413_21.01,-74.504492,39.4358395,253 MESSINA AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_2413_23,-74.94199759,39.54489883,257 MESSINA AVE,HAMMONTON TOWN,,1926,1,RES1,3001 -0113_2413_24,-74.6085505,39.347804,263 MESSINA AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2413_25,-74.468997,39.4815025,265 MESSINA AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2413_26,-74.5966855,39.4357145,269 MESSINA AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2413_27,-74.5020625,39.329682,273 MESSINA AVE,HAMMONTON TOWN,17,1927,1,RES1,3001 -0113_2413_29,-74.54845497,39.54892798,287 MESSINA AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2413_30,-74.83769978,39.53740855,295 MESSINA AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2413_31,-74.68844649,39.35879019,299 MESSINA AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2413_5,-74.8067445,39.633387,200 13TH ST AT WEST END,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_2413_6,-74.6013515,39.329026,298 WEST END AVE,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_2413_8,-74.6363965,39.38648614,284 WEST END AVE,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2413_9,-74.78719682,39.60981551,280 WEST END AVE,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2414_11,-74.360828,39.4112975,209 JACOBS ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2414_12,-74.87965628,39.44198853,215 JACOBS ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2414_13,-74.57290842,39.35160473,221 JACOBS ST,HAMMONTON TOWN,17,1957,1,GOV1,3004 -0113_2414_14,-74.59582131,39.36443781,311 JACOBS ST,HAMMONTON TOWN,17,1960,1,GOV1,3004 -0113_2414_15,-74.81519697,39.63324588,317 JACOBS ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2414_2,-74.59368698,39.34177089,314 W PLEASANT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2414_3,-74.47085461,39.34242666,312 W PLEASANT ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2414_4,-74.74213625,39.39858509,306 W PLEASANT ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2414_5,-74.57661486,39.5289849,212 W PLEASANT ST,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_2414_9,-74.36527584,39.40990052,122 WEST END AVE,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2415_1,-74.51392042,39.32826684,113 N GRAND ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2415_10,-74.5071305,39.461439,211 W ORCHARD ST,HAMMONTON TOWN,17,1953,2,RES1,3001 -0113_2415_11,-74.62958314,39.3907142,215 W ORCHARD ST,HAMMONTON TOWN,17,1922,1,RES1,3001 -0113_2415_12,-74.653761,39.3688535,219 W ORCHARD ST,HAMMONTON TOWN,,1900,1,RES1,3001 -0113_2415_13,-74.894146,39.500433,309 W ORCHARD ST,HAMMONTON TOWN,17,1929,1,RES1,3001 -0113_2415_14,-74.59630634,39.35666433,311 W ORCHARD ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2415_15,-74.523091,39.4276845,319 W ORCHARD ST AT GRAND,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2415_2,-74.4742968,39.48682675,310 JACOBS ST,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_2415_3,-74.51206835,39.42902124,218 JACOBS ST,HAMMONTON TOWN,17,1929,1,RES1,3001 -0113_2415_4,-74.60446071,39.40654516,214 JACOBS ST,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_2415_6,-74.7114125,39.640308,210 JACOBS ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2415_8,-74.60996982,39.44169497,100 WEST END AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2415_9,-74.64607961,39.52890187,207 W ORCHARD ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2416_10,-74.62786,39.4204385,240 N WASHINGTON ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2416_11,-74.77742818,39.62036768,236 N WASHINGTON ST,HAMMONTON TOWN,17,2007,1,GOV1,3004 -0113_2416_12,-74.60122397,39.39168934,232 N WASHINGTON ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2416_13,-74.405459,39.3897885,230 N WASHINGTON ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2416_14,-74.51931086,39.39008468,220 N WASHINGTON ST,HAMMONTON TOWN,17,1930,2,GOV1,3004 -0113_2416_15,-74.605255,39.3708605,216 N WASHINGTON ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2416_16,-74.7118045,39.4304015,214 N WASHINGTON ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2416_17,-74.916864,39.4815915,210-212 N WASHINGTON ST,HAMMONTON TOWN,17,1900,3,RES1,3001 -0113_2416_18,-74.63251596,39.41782729,202 N WASHINGTON ST,HAMMONTON TOWN,17,1875,3,RES1,3001 -0113_2416_19,-74.489052,39.4787905,111 W PLEASANT ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2416_3,-74.51615324,39.41107139,334 N WASHINGTON ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2416_7,-74.45340276,39.35371734,318 N WASHINGTON ST,HAMMONTON TOWN,16,1940,1,GOV1,3004 -0113_2416_8_C0001,-74.63277967,39.38748593,306 N WASHINGTON ST,HAMMONTON TOWN,28,2005,1,RES1,3001 -0113_2416_8_C0002,-74.63653656,39.38836554,302 N WASHINGTON ST,HAMMONTON TOWN,28,2005,1,RES3A,3001 -0113_2416_9,-74.4791835,39.346479,246 N WASHINGTON ST,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_2416_9.01,-74.8734845,39.493248,242 N WASHINGTON ST,HAMMONTON TOWN,,1945,1,RES1,3001 -0113_2417_1,-74.53841316,39.40246102,101 WEST END AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2418_2,-74.573591,39.4290275,120 N WASHINGTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2418_5,-74.4618005,39.345743,110 N WASHINGTON ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2418_6,-74.64946,39.521957,100 N WASHINGTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2418_8,-74.3816565,39.398147,112 W PLEASANT ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2419_1,-74.622107,39.365382,50 13TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2419_10,-74.509988,39.473159,317 N WASHINGTON ST,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_2419_11,-74.45175263,39.49213372,319 N WASHINGTON ST,HAMMONTON TOWN,17,1925,2,GOV1,3004 -0113_2419_12,-74.5164085,39.4701905,323 N WASHINGTON ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2419_13,-74.50592883,39.33264453,331 N WASHINGTON ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2419_2,-74.70441864,39.63902988,350 RAILROAD AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2419_3,-74.504358,39.3325955,333 N WASHINGTON ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2419_4,-74.586158,39.425841,322 RAILROAD AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2419_6,-74.421775,39.3721825,320 RAILROAD AVE,HAMMONTON TOWN,17,1914,1,RES1,3004 -0113_2419_7,-74.49793255,39.47063434,310 RAILROAD AVE,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2419_8,-74.381959,39.400453,300 RAILROAD AVE,HAMMONTON TOWN,,1957,1,RES1,3001 -0113_2419_9,-74.62419551,39.46186138,303 N WASHINGTON ST,HAMMONTON TOWN,17,1925,3,RES1,3001 -0113_2420_1,-74.39202802,39.39240333,241 N WASHINGTON ST,HAMMONTON TOWN,17,1942,1,RES1,3001 -0113_2420_10,-74.389006,39.3921305,206 RAILROAD AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2420_11,-74.57753748,39.33142018,15 W PLEASANT ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2420_12,-74.62140559,39.62540313,21 W PLEASANT ST,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_2420_13,-74.542053,39.455053,213 N WASHINGTON ST,HAMMONTON TOWN,28,1900,2,GOV1,3004 -0113_2420_14,-74.79764794,39.5448338,219 N WASHINGTON ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2420_15,-74.5118949,39.44133914,223 N WASHINGTON ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2420_16,-74.521989,39.3938135,227 N WASHINGTON ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2420_17,-74.52473758,39.39928881,233 N WASHINGTON ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2420_18,-74.63058597,39.43373582,239 N WASHINGTON ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2420_2,-74.6063355,39.490973,114-116 SOMERBY ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2420_3,-74.550813,39.4735495,240 RAILROAD AVE,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2420_4_C0001,-74.64222667,39.37714524,230 RAILROAD AVE,HAMMONTON TOWN,28,2003,1,RES1,3001 -0113_2420_4_C0002,-74.625807,39.3935435,228 RAILROAD AVE,HAMMONTON TOWN,28,2003,1,RES1,3001 -0113_2420_5,-74.658486,39.432826,226 RAILROAD AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2420_6,-74.9113565,39.514099,224 RAILROAD AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2420_7,-74.53462057,39.38709634,220 RAILROAD AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2420_8,-74.600995,39.4365145,218 RAILROAD AVE,HAMMONTON TOWN,17,1880,1,RES1,3001 -0113_2420_9,-74.60107784,39.38279402,214 RAILROAD AVE,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2421_1,-74.52616384,39.31365603,133 N WASHINGTON ST,HAMMONTON TOWN,28,2008,2,RES1,3001 -0113_2421_10,-74.712889,39.439533,121 N WASHINGTON ST,HAMMONTON TOWN,17,1900,4,RES1,3001 -0113_2421_2.01,-74.6074,39.32158,18 W PLEASANT ST,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_2421_2.03,-74.36865261,39.41534372,130 RAILROAD AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2421_5,-74.36608957,39.42269358,110 RAILROAD AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2421_6,-74.59263328,39.53737986,11A & 11B W ORCHARD ST,HAMMONTON TOWN,28,1995,2,RES1,3001 -0113_2421_7,-74.45463135,39.35280698,21 W ORCHARD ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2421_8,-74.4916871,39.43320373,109 N WASHINGTON ST,HAMMONTON TOWN,17,1932,1,RES1,3001 -0113_2421_9,-74.61172484,39.42210317,113 N WASHINGTON ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2501_1,-74.8058935,39.629802,622 W ORCHARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2501_2,-74.70545065,39.42239873,616 W ORCHARD ST,HAMMONTON TOWN,17,1950,1,REL1,3004 -0113_2501_3,-74.94492074,39.51735208,606 W ORCHARD ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2501_4,-74.52952648,39.47419878,18 N MONROE AVE,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_2501_5,-74.80615508,39.62705336,605 12TH ST,HAMMONTON TOWN,,1972,1,RES1,3001 -0113_2501_6,-74.57472977,39.33934046,617 12TH ST,HAMMONTON TOWN,,2012,1,RES1,3001 -0113_2501_7,-74.5064945,39.424002,627 12TH ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_2502_1,-74.521085,39.3161185,626 12TH ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2502_10,-74.5163295,39.387772,28 S MONROE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2502_11,-74.359598,39.413194,42 S MONROE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2502_12,-74.804436,39.646465,611 PASSMORE AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_2502_13,-74.6677995,39.415946,617 PASSMORE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2502_14,-74.518797,39.397929,621 PASSMORE AVE,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_2502_15,-74.63273778,39.34692295,625 PASSMORE AT S 1ST RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_2502_16,-74.444493,39.3741235,29 S 1ST RD,HAMMONTON TOWN,17,1936,1,GOV1,3004 -0113_2502_18,-74.597449,39.3176585,19 S 1ST RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2502_19,-74.82335657,39.41299468,17 S 1ST RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2502_2,-74.5104115,39.3363015,618 12TH ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2502_3,-74.4520135,39.3703065,610 12TH ST,HAMMONTON TOWN,17,1938,1,RES1,3001 -0113_2502_4,-74.61782208,39.3716568,600 12TH ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2502_5,-74.37724994,39.41862759,16 S MONROE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2502_6,-74.547425,39.372252,18 S MONROE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2502_7,-74.77834093,39.63395671,20 S MONROE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2502_8,-74.62282362,39.61961837,22 S MONROE AVE,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_2502_9,-74.43034854,39.37342806,24 S MONROE AVE,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2503_1,-74.46491924,39.49304468,103 S 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2503_10,-74.7731745,39.620215,140 S MONROE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2503_11,-74.50566533,39.32973852,603 LINE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2503_12,-74.95705165,39.50373975,159 S 1ST RD,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_2503_14,-74.37237616,39.40547901,135 S 1ST RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2503_15,-74.50013972,39.41756992,127 S 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2503_16,-74.6321405,39.5307045,119 S 1ST RD,HAMMONTON TOWN,17,1950,1,RES3A,3001 -0113_2503_17,-74.36753715,39.41399076,113 S 1ST RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2503_2,-74.46481254,39.45568883,610 PASSMORE AVE,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_2503_3,-74.74965968,39.45239808,606 PASSMORE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2503_4,-74.55499331,39.46773979,102 S MONROE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2503_5,-74.5379995,39.4621465,104 S MONROE AVE,HAMMONTON TOWN,17,1948,1,GOV1,3004 -0113_2503_6,-74.45864732,39.35088302,120 S MONROE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2503_8,-74.600427,39.315895,124 S MONROE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2503_9,-74.758846,39.4330925,132 S MONROE AVE,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_2504_1,-74.52589963,39.38422717,528 W ORCHARD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2504_2,-74.805052,39.6367965,520 W ORCHARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2504_3,-74.36088169,39.41178856,16 N MADISON AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2504_4,-74.51741962,39.32003587,505 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2504_4.01,-74.63289,39.511245,"501 12TH ST, ETC",HAMMONTON TOWN,17,1905,2,RES1,3001 -0113_2504_6,-74.50960979,39.32219997,525 12TH ST,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_2504_7,-74.51428886,39.44259152,527 12TH ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_2504_8,-74.42491515,39.37502298,19 N MONROE AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2505_1,-74.69341009,39.35464488,528 12TH ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2505_10,-74.963938,39.521741,20 S MADISON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2505_11,-74.79791728,39.63746752,22 S MADISON AVE,HAMMONTON TOWN,17,1940,1,GOV1,3004 -0113_2505_12,-74.49042232,39.45764061,24 S MADISON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2505_13,-74.63968518,39.52593935,26 S MADISON AVE,HAMMONTON TOWN,17,1930,1,RES3A,3001 -0113_2505_14,-74.63216808,39.4341868,28 S MADISON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2505_15,-74.60329325,39.32676464,30 S MADISON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2505_16,-74.84005836,39.39683074,32 S MADISON AVE,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_2505_17,-74.5354715,39.3134515,36 S MADISON AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2505_18,-74.61133455,39.48890366,509 PASSMORE AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2505_19,-74.63982533,39.41234388,511 PASSMORE AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2505_2,-74.51653795,39.3265201,516 12TH ST,HAMMONTON TOWN,,1960,1,RES3A,3001 -0113_2505_20,-74.59502,39.379469,515 PASSMORE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2505_21,-74.82660357,39.64855115,519 PASSMORE AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2505_22,-74.52114834,39.47306583,523 PASSMORE AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2505_23,-74.87561634,39.59097069,529 PASSMORE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2505_24,-74.577772,39.3329165,27 S MONROE AVE,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_2505_25,-74.586248,39.3757,23 S MONROE AVE,HAMMONTON TOWN,16,1950,1,RES1,3001 -0113_2505_26,-74.371229,39.4017765,17 S MONROE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2505_27,-74.6087751,39.31824063,15 S MONROE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2505_28,-74.51637565,39.32536879,13 S MONROE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2505_3,-74.57043432,39.35393783,512 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2505_4,-74.5194175,39.320642,510 12TH ST,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_2505_6,-74.39451088,39.38817951,500 12TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2505_7,-74.50091465,39.45203354,14 S MADISON AVE,HAMMONTON TOWN,,1955,1,RES1,3001 -0113_2505_8,-74.47612685,39.49333153,16 S MADISON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2505_9,-74.60796956,39.50528035,18 S MADISON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2506_10,-74.5395535,39.38192,134 S MADISON AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2506_11,-74.37305629,39.42068925,501 LINE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2506_12,-74.5931217,39.37660959,505 LINE ST,HAMMONTON TOWN,17,1950,1,RES3A,3001 -0113_2506_13,-74.51072292,39.38567718,521 LINE ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_2506_14,-74.67014885,39.38433451,529 LINE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2506_15,-74.44931521,39.37412116,135 S MONROE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2506_16,-74.4714815,39.443813,131 S MONROE AVE,HAMMONTON TOWN,17,1930,1,RES3A,3001 -0113_2506_17,-74.79971343,39.6604695,123 S MONROE AVE,HAMMONTON TOWN,17,1946,1,GOV1,3004 -0113_2506_18,-74.44271571,39.35893416,119 S MONROE AVE,HAMMONTON TOWN,17,1948,2,RES1,3001 -0113_2506_19,-74.50365815,39.46549005,115 S MONROE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2506_3,-74.64914704,39.45592319,518 PASSMORE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2506_4,-74.50077391,39.43448846,508 PASSMORE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2506_5,-74.63570977,39.43260443,502 PASSMORE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2506_6,-74.493793,39.3331245,108 S MADISON AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_2506_7,-74.70426491,39.59015802,114 S MADISON AVE,HAMMONTON TOWN,17,1955,1,RES3A,3001 -0113_2506_8,-74.3603995,39.4134575,120 S MADISON AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2506_9,-74.74305699,39.4939,130 S MADISON AVE,HAMMONTON TOWN,17,1962,1,RES3A,3001 -0113_2507_1,-74.602682,39.367998,428 W ORCHARD ST,HAMMONTON TOWN,17,1925,2,RES3B,3001 -0113_2507_10,-74.76652295,39.61636711,425 12TH ST,HAMMONTON TOWN,,1925,1,RES1,3001 -0113_2507_2,-74.84221032,39.4803961,420 W ORCHARD ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2507_3,-74.5071395,39.4042885,412 W ORCHARD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2507_4,-74.469532,39.506538,410 W ORCHARD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2507_5,-74.5856165,39.3251125,400 W ORCHARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2507_6,-74.77393279,39.63272804,12 N GRAND ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2507_7,-74.59642724,39.38385544,401 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2507_8,-74.63184134,39.52870601,409 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2507_9,-74.523766,39.399721,417 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2508_1,-74.49746176,39.44502345,426 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2508_10,-74.515004,39.326697,28 S GRAND ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_2508_11,-74.5079765,39.4362365,411 PASSMORE AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_2508_12,-74.59375297,39.36021132,417 PASSMORE AVE,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2508_13,-74.9734325,39.507923,41 S MADISON AVE,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2508_14,-74.36728796,39.40773315,27 S MADISON AVE,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_2508_15,-74.67186552,39.54172417,23 S MADISON AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2508_16,-74.3628785,39.4136145,21 S MADISON AVE,HAMMONTON TOWN,17,1941,1,RES1,3001 -0113_2508_17,-74.6389875,39.3652645,15 S MADISON AVE,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_2508_2,-74.50470175,39.32986299,412 12TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2508_4,-74.64369557,39.43604374,408 12TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2508_5,-74.782817,39.6746575,400 12TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2508_6,-74.60873534,39.31443001,6 S GRAND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2508_7,-74.641011,39.5282345,10 S GRAND ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2508_8,-74.52343369,39.39451242,14 S GRAND ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2508_9,-74.5883525,39.32550539,20 S GRAND ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_2509_1,-74.50816733,39.32714104,426 PASSMORE AVE,HAMMONTON TOWN,17,1967,1,GOV1,3004 -0113_2509_10,-74.6101205,39.594889,120 S GRAND ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2509_11,-74.36760349,39.41747333,124 S GRAND ST,HAMMONTON TOWN,17,1927,1,RES1,3001 -0113_2509_12,-74.83350563,39.37963255,128 S GRAND ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2509_13,-74.536884,39.3974345,132 S GRAND ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2509_14,-74.814344,39.412206,136 S GRAND ST,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_2509_15,-74.67468181,39.37491006,140 S GRAND ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2509_17,-74.49128432,39.44118859,405 LINE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2509_18,-74.4601365,39.346639,425 LINE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2509_2,-74.65150119,39.35798743,422 PASSMORE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2509_20,-74.676899,39.549656,125 S MADISON AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_2509_21,-74.78783939,39.61728441,121 S MADISON AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2509_22,-74.484465,39.4358295,119 S MADISON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2509_23,-74.578819,39.3376325,115 S MADISON AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2509_3,-74.878236,39.4901035,418 PASSMORE AVE,HAMMONTON TOWN,17,1905,1,RES1,3001 -0113_2509_4,-74.6000729,39.34372311,414 PASSMORE AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2509_5,-74.52331654,39.31442667,410 PASSMORE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2509_6,-74.56944752,39.37364759,406 PASSMORE AVE,HAMMONTON TOWN,17,1903,1,RES3A,3001 -0113_2509_7,-74.5075815,39.337221,102 S GRAND ST,HAMMONTON TOWN,17,1905,1,RES1,3001 -0113_2509_8,-74.52305,39.3878915,114 S GRAND ST,HAMMONTON TOWN,17,1921,1,RES1,3001 -0113_2509_9,-74.5172385,39.399969,116 S GRAND ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2510_1,-74.44205354,39.37068618,21 N GRAND ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2510_10,-74.61073996,39.31076027,296 W ORCHARD ST,HAMMONTON TOWN,17,1953,2,RES1,3001 -0113_2510_11,-74.36846319,39.41501545,22 WEST END AVE,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2510_12,-74.79098945,39.62853417,18 WEST END AVE,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2510_13,-74.513004,39.448466,8 WEST END AVE,HAMMONTON TOWN,,1965,1,RES1,3001 -0113_2510_14,-74.59049243,39.39240847,201 12TH ST,HAMMONTON TOWN,,1960,1,COM1,3004 -0113_2510_15,-74.75995258,39.43148315,211 12TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2510_16,-74.4696479,39.34584382,215 12TH ST,HAMMONTON TOWN,17,1910,1,RES3A,3001 -0113_2510_17,-74.974646,39.510753,303 12TH ST,HAMMONTON TOWN,,1920,1,RES3A,3001 -0113_2510_18,-74.760792,39.3469355,307 12TH ST,HAMMONTON TOWN,,1960,1,RES3B,3001 -0113_2510_19,-74.79830133,39.63324249,311 12TH ST,HAMMONTON TOWN,17,1900,2,RES3A,3001 -0113_2510_2,-74.86515456,39.59737229,322 W ORCHARD ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_2510_20,-74.73053687,39.57931164,317 12TH ST,HAMMONTON TOWN,17,1900,2,RES1,3002 -0113_2510_21,-74.56815321,39.37307212,327 12TH ST AT GRAND,HAMMONTON TOWN,,1970,1,RES1,3001 -0113_2510_3,-74.63075167,39.42949302,316 W ORCHARD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2510_4,-74.63149483,39.60717599,312 W ORCHARD ST,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_2510_6,-74.63155392,39.37001064,306 W ORCHARD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2510_7,-74.60167229,39.43690114,304 W ORCHARD ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2510_8,-74.635291,39.529606,300 W ORCHARD ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2510_9,-74.78074079,39.6252181,298 W ORCHARD ST,HAMMONTON TOWN,17,1929,1,RES1,3001 -0113_2511_1,-74.62747183,39.35483949,328 12TH ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2511_10,-74.36566182,39.40481903,323 PASSMORE AVE,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_2511_11,-74.56949557,39.35557086,19 S GRAND ST,HAMMONTON TOWN,17,1940,1,COM1,3004 -0113_2511_12,-74.36197058,39.41706224,17 S GRAND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2511_13,-74.361107,39.4169435,15 S GRAND ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2511_14,-74.63799537,39.53136263,11 S GRAND ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_2511_2,-74.47240791,39.34258283,322 12TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2511_3,-74.7937461,39.64086532,320 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2511_4,-74.63104265,39.44575816,318 12TH ST,HAMMONTON TOWN,,1960,1,COM1,3004 -0113_2511_5,-74.854265,39.441119,14 WOODMAN AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2511_6,-74.40085651,39.38431433,20 WOODMAN AVE,HAMMONTON TOWN,17,1960,1,RES3A,3001 -0113_2511_7,-74.81840407,39.39732317,26 WOODMAN AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2511_8,-74.48517115,39.34833177,30 WOODMAN AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2511_9,-74.3641165,39.4189185,315 PASSMORE AVE,HAMMONTON TOWN,17,1940,1,RES3A,3001 -0113_2512_1,-74.63782516,39.53849376,328 PASSMORE AVE,HAMMONTON TOWN,17,1920,1,RES3A,3001 -0113_2512_10,-74.74377026,39.45243821,141 S GRAND ST,HAMMONTON TOWN,17,1945,1,RES1,3002 -0113_2512_2,-74.8073915,39.6428985,324 PASSMORE AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2512_3,-74.48212787,39.35056904,320 PASSMORE AVE,HAMMONTON TOWN,17,1939,1,RES1,3002 -0113_2512_4,-74.51500738,39.33036347,316 PASSMORE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2512_5,-74.7362285,39.4488865,113 S GRAND ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_2512_6,-74.518121,39.39593967,115 S GRAND ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2512_7,-74.80231972,39.5448288,123 S GRAND ST,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_2512_7.01,-74.62708754,39.52742766,131 S GRAND ST,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_2512_8,-74.49872201,39.44178213,135 S GRAND ST,HAMMONTON TOWN,17,1900,1,RES1,3004 -0113_2512_9,-74.52710452,39.52083966,137 S GRAND ST,HAMMONTON TOWN,17,1940,1,RES3A,3001 -0113_2513_1,-74.4749323,39.48635919,306 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2513_10,-74.586923,39.325853,35 WOODMAN AVE,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_2513_2,-74.629769,39.423051,300 12TH ST,HAMMONTON TOWN,,1960,1,RES3B,3001 -0113_2513_3,-74.496979,39.331736,9 WOODMAN AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2513_4,-74.8051135,39.6375455,11 WOODMAN AVE,HAMMONTON TOWN,17,1914,1,RES1,3001 -0113_2513_5,-74.58560449,39.53745617,15 WOODMAN AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2513_6,-74.58604226,39.32169185,19 WOODMAN AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2513_7,-74.73348379,39.65339815,27 WOODMAN AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2513_8,-74.52122,39.405946,31 WOODMAN AVE,HAMMONTON TOWN,17,1930,1,RES1,3002 -0113_2513_9,-74.8738667,39.60328703,305 PASSMORE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2514_1,-74.44903032,39.35463854,306 PASSMORE AVE,HAMMONTON TOWN,17,1900,1,COM1,3004 -0113_2514_10,-74.853351,39.4844925,311 LINE ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2514_4,-74.7505055,39.4170005,114 LINCOLN AVE,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_2514_5,-74.58054595,39.43125114,116 LINCOLN AVE,HAMMONTON TOWN,17,1946,1,RES3A,3001 -0113_2514_6,-74.57404554,39.42827416,118 LINCOLN AVE,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_2514_7,-74.85163494,39.53555778,124 LINCOLN AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2514_8,-74.7106409,39.4343802,130 LINCOLN AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2514_9,-74.41282617,39.36892342,140 LINCOLN AVE,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_2515_1,-74.36921671,39.41382214,13 LINCOLN AVE,HAMMONTON TOWN,,1920,1,RES1,3001 -0113_2515_2,-74.579556,39.3363675,200 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2515_4,-74.49289631,39.33914772,11 LINCOLN AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2515_6,-74.438221,39.366634,25 LINCOLN AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2515_7,-74.59265,39.343951,95 LINCOLN AVE,HAMMONTON TOWN,,0,1,RES3A,3001 -0113_2516_1,-74.6044885,39.508057,214 PASSMORE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2516_2.01,-74.5555315,39.478593,208 PASSMORE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2516_2.02,-74.78315098,39.65529567,125 LINCOLN AVE,HAMMONTON TOWN,,1970,1,RES1,3001 -0113_2516_4,-74.5647465,39.3532195,131 LINCOLN AVE,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_2516_5,-74.441327,39.367939,137 LINCOLN AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2516_6,-74.57876074,39.33080688,139 LINCOLN AVE,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_2518_1,-74.53174183,39.38727346,115 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2519_1,-74.512405,39.330605,26 W ORCHARD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2519_2,-74.50648194,39.32378584,109 12TH ST,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2519_3,-74.52420685,39.31869414,111 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3002 -0113_2519_5,-74.873816,39.5887265,"103 12TH ST, ETC",HAMMONTON TOWN,,1933,1,RES1,3001 -0113_2519_7,-74.5023058,39.43188294,REAR 101-103 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2520_1,-74.60665247,39.32774256,100 12TH ST AT WASHINGTON,HAMMONTON TOWN,,2007,1,RES1,3001 -0113_2520_3,-74.534065,39.306672,26 S WASHINGTON ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2521_11,-74.50370841,39.44481419,206 PASSMORE AVE,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_2521_2,-74.65266216,39.35393681,116 S WASHINGTON ST,HAMMONTON TOWN,17,1924,1,RES1,3001 -0113_2521_3,-74.36806366,39.40482896,120 S WASHINGTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2521_4,-74.7306865,39.454208,126 S WASHINGTON ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2521_5,-74.701254,39.425676,130 S WASHINGTON ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2521_6,-74.500317,39.469049,136 S WASHINGTON ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2522_1,-74.8721295,39.5998025,20 W ORCHARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2522_10,-74.629368,39.3558315,17 12TH ST,HAMMONTON TOWN,,1960,1,RES3A,3001 -0113_2522_11,-74.523539,39.3982055,15 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2522_12,-74.36931396,39.40581213,11 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2522_13,-74.3985003,39.38527343,7 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2522_14,-74.582266,39.47463383,"1 12TH ST AT RAILROAD,ETC",HAMMONTON TOWN,,1960,1,RES3B,3001 -0113_2522_2,-74.4503655,39.4951305,18 W ORCHARD ST,HAMMONTON TOWN,17,1900,1,COM1,3004 -0113_2522_3,-74.5982055,39.4937445,16 W ORCHARD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2522_4,-74.40371218,39.38448563,14 W ORCHARD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2522_7,-74.56696876,39.36721903,11 N WASHINGTON ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2522_8,-74.63312383,39.38767157,61 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2522_9,-74.63886749,39.53040017,19 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2523_1,-74.524125,39.3157965,9 S WASHINGTON ST,HAMMONTON TOWN,,1886,1,RES1,3001 -0113_2523_2,-74.68051486,39.44618129,20 12TH ST ETC,HAMMONTON TOWN,,0,1,AGR1,3001 -0113_2523_3,-74.66227093,39.63299275,11 S WASHINGTON ST,HAMMONTON TOWN,17,1900,3,COM1,3004 -0113_2523_4,-74.49770017,39.33681948,15 S WASHINGTON ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2523_5,-74.6419425,39.3771385,21 S WASHINGTON ST,HAMMONTON TOWN,,1960,1,RES1,3004 -0113_2523_6,-74.51512333,39.3947614,25 S WASHINGTON ST,HAMMONTON TOWN,17,1906,1,RES1,3001 -0113_2523_7,-74.8230005,39.3846275,29 S WASHINGTON ST,HAMMONTON TOWN,,1931,1,RES3A,3001 -0113_2524_1,-74.8745455,39.5977475,22 PASSMORE AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2524_2,-74.7970864,39.63203835,20 PASSMORE AVE,HAMMONTON TOWN,17,1960,3,RES1,3001 -0113_2524_3,-74.4673435,39.3570095,113 S WASHINGTON ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2524_4,-74.67225551,39.45888854,117 S WASHINGTON ST,HAMMONTON TOWN,17,1994,2,RES1,3001 -0113_2524_5,-74.53653375,39.41116264,125 S WASHINGTON ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2524_6,-74.5259675,39.384676,129 S WASHINGTON ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_2524_8,-74.809841,39.4495045,141 S WASHINGTON ST,HAMMONTON TOWN,17,1920,1,RES3A,3001 -0113_2525_1,-74.551792,39.3617805,18 RAILROAD AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2525_3,-74.45081473,39.37064593,14 RAILROAD AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2526_1,-74.50236,39.4164745,14 12TH ST,HAMMONTON TOWN,,1938,1,RES1,3001 -0113_2526_4,-74.91321727,39.51112184,18 FRONT ST,HAMMONTON TOWN,,0,1,COM3,3004 -0113_2526_6,-74.950584,39.5167655,30 FRONT ST,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2526_7,-74.5268765,39.312409,36 FRONT ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2526_8,-74.50236738,39.34331995,40 FRONT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2526_9,-74.6389705,39.429674,44 FRONT ST,HAMMONTON TOWN,17,1930,1,RES3A,3004 -0113_2527_1,-74.4880505,39.332438,108 FRONT ST,HAMMONTON TOWN,,1973,1,REL1,3004 -0113_2527_3,-74.79715316,39.64212099,120 FRONT ST,HAMMONTON TOWN,17,1920,1,RES3A,3001 -0113_2527_4,-74.38381008,39.39463835,126 FRONT ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_2527_5,-74.65175291,39.6257501,130 FRONT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2527_6,-74.8507715,39.457261,136 FRONT ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2527_7,-74.6410102,39.53675445,142 FRONT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2527_8,-74.5586248,39.47485122,13 LINE ST,HAMMONTON TOWN,17,1907,1,RES1,3001 -0113_2601_1,-74.78654543,39.60748529,626 LINE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2601_11,-74.6877385,39.5557175,226 PRICE ST,HAMMONTON TOWN,17,2017,1,RES1,3001 -0113_2601_12,-74.77126459,39.3206197,606 LINE ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2601_14,-74.6176895,39.390764,530 LINE ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2601_15,-74.602154,39.4331035,510 LINE ST,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_2601_16,-74.59358633,39.32799228,211 PRICE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2601_17,-74.59599988,39.31749152,217 PRICE ST,HAMMONTON TOWN,17,2016,1,RES1,3001 -0113_2601_19,-74.59150711,39.39306128,225 PRICE ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2601_2,-74.45985227,39.34585855,620 LINE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2601_20,-74.71803562,39.57925575,229 PRICE ST,HAMMONTON TOWN,17,1987,1,GOV1,3004 -0113_2601_21,-74.4980537,39.43319143,222 ROCCO DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_2601_22,-74.56607705,39.3885401,226 ROCCO DR,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_2601_23,-74.50534027,39.45441155,230 ROCCO DR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_2601_24.01,-74.68745903,39.55617715,261 S 1ST RD,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_2601_24.02,-74.596595,39.357814,267 S 1ST RD,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_2601_25,-74.49220214,39.33748039,271 S 1ST RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2601_26,-74.4997655,39.411261,277 S 1ST RD,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2601_27,-74.5133337,39.43740104,479 11TH ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2601_27.01,-74.61960407,39.43035832,481 11TH ST,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2601_27.02,-74.7336934,39.46269466,285 S 1ST RD,HAMMONTON TOWN,17,1999,1,GOV1,3004 -0113_2601_28,-74.55318005,39.38026284,289 S 1ST RD,HAMMONTON TOWN,17,1956,1,COM1,3004 -0113_2601_29,-74.794328,39.536135,477 11TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2601_30,-74.51273926,39.38503066,471 11TH ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2601_31,-74.53847472,39.40753795,455 11TH ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_2601_33,-74.49960918,39.4346283,246 S GRAND ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_2601_34,-74.52550018,39.39763457,245 ROCCO DR,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2601_35,-74.50176993,39.50311249,450 BERNSHOUSE AVE,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_2601_37,-74.49027571,39.52595328,440 BERNSHOUSE AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2601_38,-74.814451,39.646148,430 BERNSHOUSE AVE,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2601_38.01,-74.50916076,39.43230407,420 BERNSHOUSE AVE,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2601_38.02,-74.3955373,39.38664419,414 BERNSHOUSE AVE,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2601_39,-74.72730839,39.45619518,230 S GRAND ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_2601_4,-74.57464285,39.35969269,235 S 1ST RD,HAMMONTON TOWN,17,1947,1,RES1,3001 -0113_2601_40,-74.48832265,39.46620605,236 S GRAND ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2601_5,-74.37644188,39.41501639,239 S 1ST RD,HAMMONTON TOWN,17,1850,1,RES1,3001 -0113_2601_6,-74.5446275,39.378923,241 S 1ST RD,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2601_7,-74.52580267,39.39723433,618 LINE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2601_8,-74.4934945,39.332939,612 LINE ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2601_9,-74.60625779,39.33321868,212 PRICE ST,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2602_10,-74.48552033,39.34660706,431 BERNSHOUSE AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2602_11,-74.80835745,39.37901259,421 BERNSHOUSE AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2602_12,-74.63204674,39.36943088,415 BERNSHOUSE AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2602_13,-74.6524545,39.5272185,214 S GRAND ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2602_14,-74.875393,39.4612425,220 S GRAND ST,HAMMONTON TOWN,17,1939,1,RES1,3001 -0113_2602_2.01,-74.50769447,39.44715458,506 LINE ST,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_2602_2.02,-74.49832662,39.33129816,504 LINE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2602_3,-74.5527375,39.3645645,426 LINE ST,HAMMONTON TOWN,17,1942,1,RES1,3001 -0113_2602_4,-74.47363389,39.44414953,420 LINE ST,HAMMONTON TOWN,17,1900,2,GOV1,3004 -0113_2602_4.01,-74.4831315,39.3481225,422 LINE ST,HAMMONTON TOWN,17,1982,1,RES3A,3001 -0113_2602_5,-74.49602815,39.49911118,402 LINE ST,HAMMONTON TOWN,17,1942,1,RES1,3001 -0113_2602_6,-74.92796726,39.48917704,200 S GRAND ST,HAMMONTON TOWN,17,1920,1,IND1,3004 -0113_2602_7,-74.56599978,39.47448094,449 BERNSHOUSE AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2602_8,-74.59242782,39.37206394,443 BERNSHOUSE AVE,HAMMONTON TOWN,17,1965,1,GOV1,3004 -0113_2602_9,-74.59071951,39.32636151,437 BERNSHOUSE AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2603_1,-74.5289715,39.3820605,326 LINE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2603_10,-74.61272021,39.32206626,220 LINCOLN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2603_2,-74.55075648,39.47572788,320 LINE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2603_3,-74.79536184,39.65166065,316 LINE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2603_4,-74.64652469,39.43078404,312 LINE ST,HAMMONTON TOWN,17,1945,1,COM3,3004 -0113_2603_5,-74.59723084,39.36801932,218 LINCOLN AVE,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_2603_6,-74.7662504,39.63559985,223 S GRAND ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2603_6.01,-74.63222968,39.42067962,218A LINCOLN AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2603_7,-74.631991,39.3993265,235 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_2603_8,-74.45595252,39.48457403,241 S GRAND ST,HAMMONTON TOWN,17,1968,2,RES1,3001 -0113_2603_9,-74.54654816,39.38095298,245 S GRAND ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_2604_1,-74.65276055,39.59434765,302 LINE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2604_2,-74.452897,39.480109,214 LINE ST,HAMMONTON TOWN,17,1925,1,AGR1,3001 -0113_2604_4,-74.651807,39.521707,210 LINE ST,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_2604_6,-74.51977717,39.39735654,217 LINCOLN AVE,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_2604_7,-74.48653023,39.53514688,219 LINCOLN AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2605_1,-74.58615658,39.45824238,301 11TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2605_3,-74.45214966,39.47808448,260 S WASHINGTON ST,HAMMONTON TOWN,18,2006,1,RES1,3001 -0113_2605_3.01,-74.62619365,39.37691003,268 S WASHINGTON ST,HAMMONTON TOWN,18,2006,1,RES1,3001 -0113_2605_5,-74.5751231,39.42653292,201 11TH ST,HAMMONTON TOWN,,1960,1,GOV1,3004 -0113_2606_11,-74.79415753,39.37525276,250 S WASHINGTON ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2606_5,-74.7152235,39.415488,220 S WASHINGTON ST,HAMMONTON TOWN,17,2003,1,GOV1,3004 -0113_2606_7,-74.3729715,39.404929,232 S WASHINGTON ST,HAMMONTON TOWN,17,2003,1,GOV1,3004 -0113_2606_9,-74.47926497,39.47862221,244 S WASHINGTON ST,HAMMONTON TOWN,17,2003,1,GOV1,3004 -0113_2607_1,-74.644555,39.3694645,24 LINE ST,HAMMONTON TOWN,17,1922,1,RES1,3001 -0113_2607_1.01,-74.82885955,39.47589655,18 LINE ST,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_2607_10,-74.61826692,39.37230969,249 S WASHINGTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2607_12,-74.37029976,39.40604956,261 S WASHINGTON ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2607_2,-74.514704,39.403411,12 LINE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2607_3,-74.5030268,39.40921745,209 S WASHINGTON ST,HAMMONTON TOWN,17,1922,1,RES1,3001 -0113_2607_4,-74.4914395,39.4211255,211 S WASHINGTON ST,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_2607_5,-74.5240775,39.394229,221 S WASHINGTON ST,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_2607_7,-74.6906123,39.63667696,231 S WASHINGTON ST,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_2607_8,-74.85140483,39.615269,235 S WASHINGTON ST,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2608_1,-74.6408765,39.5309245,151 11TH ST AT WASHINGTON,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2609_7,-74.80223445,39.53983317,276 S GRAND ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2701_1,-74.70432974,39.44015889,100-106 FAIRVIEW AVE,HAMMONTON TOWN,,1957,1,RES1,3001 -0113_2701_10,-74.57511475,39.33569265,412 N 2ND ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2701_11,-74.86885917,39.59383986,408 N 2ND ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2701_12,-74.70330264,39.56697803,400 N 2ND ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2701_13,-74.518043,39.4378295,115 PRATT ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2701_14,-74.5078385,39.4724215,407 N EGG HARBOR RD,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2701_15,-74.4632471,39.49404226,415 N EGG HARBOR RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2701_16,-74.65259869,39.3536329,421 N EGG HARBOR RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2701_17,-74.48979723,39.44540059,425 N EGG HARBOR RD,HAMMONTON TOWN,17,1920,2,RES3A,3001 -0113_2701_18,-74.626808,39.3934385,431 N EGG HARBOR RD,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_2701_19,-74.74908492,39.44576724,433 N EGG HARBOR RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2701_3,-74.515273,39.3861335,450 N 2ND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2701_4,-74.48293398,39.44491579,440 N 2ND ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2701_5,-74.50515616,39.41388531,438 N 2ND ST,HAMMONTON TOWN,17,1940,1,GOV1,3004 -0113_2701_6,-74.80337651,39.64326556,434 N 2ND ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2701_7,-74.44817742,39.35304783,426 N 2ND ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2701_8,-74.48223168,39.4353063,420 N 2ND ST,HAMMONTON TOWN,17,1923,2,GOV1,3004 -0113_2701_9,-74.74525795,39.63682903,416 N 2ND ST,HAMMONTON TOWN,17,1910,1,GOV1,3004 -0113_2702_2,-74.59449256,39.36281226,316 N 2ND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2702_3,-74.942753,39.5266575,312 N 2ND ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_2702_4,-74.52852257,39.40220419,300 N 2ND ST,HAMMONTON TOWN,17,1908,1,RES1,3001 -0113_2702_5,-74.50514184,39.33995054,101 FRENCH ST,HAMMONTON TOWN,,1979,1,RES1,3001 -0113_2703_1,-74.58778292,39.42988718,100 FRENCH ST,HAMMONTON TOWN,,2000,1,GOV1,3004 -0113_2703_2,-74.556759,39.359015,202 N 2ND ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2703_3,-74.619566,39.3725585,201-203 N EGG HARBOR RD,HAMMONTON TOWN,28,1900,2,GOV1,3004 -0113_2703_4,-74.673348,39.3656155,205-207 N EGG HARBOR RD,HAMMONTON TOWN,28,1900,2,RES1,3001 -0113_2704_1,-74.81340283,39.46968898,200 FAIRVIEW AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2704_10,-74.64957106,39.35014284,433 N 2ND ST,HAMMONTON TOWN,17,1949,1,GOV1,3004 -0113_2704_11,-74.7177625,39.461373,439 N 2ND ST,HAMMONTON TOWN,17,1930,1,RES3A,3001 -0113_2704_12,-74.36900711,39.41508639,441 N 2ND ST,HAMMONTON TOWN,17,1935,1,RES3A,3001 -0113_2704_13,-74.541274,39.374993,447 N 2ND ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2704_2,-74.64572874,39.35791033,206 FAIRVIEW AVE,HAMMONTON TOWN,17,1935,2,RES1,3001 -0113_2704_3,-74.4838225,39.336259,210 FAIRVIEW AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2704_4,-74.71832868,39.46180802,212 FAIRVIEW AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2704_5,-74.60880981,39.41828957,450 ELM ST,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_2704_6,-74.42732017,39.37134243,442 ELM ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_2704_7,-74.4412782,39.35824866,217 COTTAGE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2704_8,-74.57631818,39.34348005,215 COTTAGE AVE,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_2704_9,-74.50321061,39.33086364,431 N 2ND ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2705_1,-74.5939795,39.3271415,220 FAIRVIEW AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2705_10,-74.4927715,39.428175,433 ELM ST,HAMMONTON TOWN,17,1890,1,RES1,3001 -0113_2705_11,-74.51212,39.3387375,443 ELM ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_2705_12,-74.78969273,39.63607927,449 ELM ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2705_2,-74.47373965,39.34199552,230 FAIRVIEW AVE,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_2705_3,-74.52287307,39.47041136,454 N 3RD ST,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_2705_4,-74.56809581,39.41334172,450 N 3RD ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2705_5,-74.79959666,39.64430597,448 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2705_6,-74.59186196,39.41668419,442 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2705_7,-74.8351335,39.610798,436-440 N THIRD ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2705_9,-74.5100215,39.4285095,239 COTTAGE AVE,HAMMONTON TOWN,17,1895,1,RES1,3001 -0113_2706_1,-74.60623538,39.40902932,423 N 2ND ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2706_10,-74.47450337,39.49175923,406 N 3RD ST,HAMMONTON TOWN,47,1940,3,RES1,3001 -0113_2706_11,-74.49985368,39.41252851,400-402 N 3RD ST,HAMMONTON TOWN,17,1910,4,IND2,3004 -0113_2706_12,-74.77402278,39.61087036,223 PRATT ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_2706_13,-74.49119397,39.42979167,221 PRATT ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_2706_14,-74.63784392,39.34104848,219 PRATT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2706_15,-74.63826051,39.34096083,215 PRATT ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2706_16,-74.5698935,39.345965,401 N 2ND ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2706_17,-74.63625358,39.42911267,411 N 2ND ST,HAMMONTON TOWN,17,1920,1,COM5,3004 -0113_2706_18,-74.49498314,39.32926168,415 N 2ND ST,HAMMONTON TOWN,17,1920,1,RES3B,3001 -0113_2706_19,-74.6711795,39.3914295,419 N 2ND ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2706_2,-74.508484,39.43055,214 COTTAGE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2706_3,-74.56484753,39.34726511,216 COTTAGE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2706_4,-74.47454326,39.44570413,218 COTTAGE AVE,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2706_5,-74.4798855,39.336429,224 COTTAGE AVE,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2706_6,-74.623019,39.3837455,230 COTTAGE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2706_7,-74.48409277,39.51465186,416 N 3RD ST,HAMMONTON TOWN,47,1946,2,RES1,3001 -0113_2706_8,-74.5348335,39.3050615,414 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2706_9,-74.5018275,39.4115515,412 N 3RD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2707_1,-74.75223173,39.44864443,317 N 2ND ST,HAMMONTON TOWN,17,1915,1,RES1,3001 -0113_2707_10,-74.53606979,39.39724942,231 FRENCH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2707_11,-74.520383,39.40135183,227 FRENCH ST,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_2707_12,-74.406424,39.378432,221 FRENCH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2707_13,-74.884746,39.46002367,215 FRENCH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_2707_14,-74.86365329,39.44850455,303 N 2ND ST,HAMMONTON TOWN,17,1875,1,RES1,3001 -0113_2707_15,-74.59620707,39.38207373,309 N 2ND ST,HAMMONTON TOWN,17,1915,1,RES1,3001 -0113_2707_16,-74.6026025,39.352905,313 N 2ND ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2707_2,-74.65576088,39.36590984,214 PRATT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2707_3,-74.52306065,39.31498516,216 PRATT ST,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_2707_4,-74.487558,39.3363995,220 PRATT ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2707_5,-74.66875963,39.35324584,226 PRATT ST,HAMMONTON TOWN,,1925,1,RES1,3001 -0113_2707_6,-74.3728674,39.4053388,320 N 3RD ST,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2707_7,-74.59644735,39.31205945,314 N 3RD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2707_8,-74.5952455,39.344042,308 N 3RD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2707_9,-74.53809313,39.46367876,300 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2708_1,-74.481573,39.429979,221-223 N 2ND ST,HAMMONTON TOWN,17,1879,2,RES1,3001 -0113_2708_10,-74.50267376,39.41753672,225 E PLEASANT ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2708_11,-74.70119195,39.4251154,219 E PLEASANT ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2708_13,-74.71668249,39.45160416,219 N 2ND ST,HAMMONTON TOWN,17,1910,4,RES1,3001 -0113_2708_2,-74.50519938,39.34134379,215 E PLEASANT ST,HAMMONTON TOWN,,1910,1,RES1,3001 -0113_2708_3,-74.57709871,39.52903484,214 FRENCH ST,HAMMONTON TOWN,17,1926,2,RES1,3001 -0113_2708_4,-74.37914415,39.39983733,218 FRENCH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2708_5,-74.49384801,39.41975359,222 FRENCH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2708_6,-74.71817712,39.57270637,"226 FRENCH ST, 222 N 3RD",HAMMONTON TOWN,,1960,1,GOV1,3004 -0113_2709_1,-74.50760191,39.43120234,447 N 3RD ST,HAMMONTON TOWN,17,1900,3,GOV1,3004 -0113_2709_10,-74.487758,39.3476935,417 N 3RD ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2709_11,-74.5084645,39.3326535,415 N 3RD ST,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_2709_12,-74.78075701,39.52997884,413 N 3RD ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2709_14,-74.583401,39.432607,401 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2709_15,-74.76031772,39.63618141,312 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,3,GOV1,3004 -0113_2709_16,-74.37468874,39.41721362,316 FAIRVIEW AVE,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2709_17,-74.38949824,39.39020132,318 FAIRVIEW AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2709_18,-74.500414,39.427513,330 FAIRVIEW AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2709_19,-74.54487187,39.37496915,315 PRATT ST,HAMMONTON TOWN,,1960,1,GOV1,3004 -0113_2709_2,-74.7515205,39.4518055,445 N 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2709_21,-74.370959,39.406394,360 FAIRVIEW AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2709_22,-74.4758225,39.344422,370 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2709_24,-74.50216317,39.3320075,380 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2709_25,-74.59911383,39.312655,386 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2709_26,-74.49272153,39.40573424,390 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2709_28,-74.48468119,39.49697973,400 FAIRVIEW AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2709_29,-74.75713952,39.30758582,408 FAIRVIEW AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2709_3,-74.664792,39.461925,443 N 3RD ST,HAMMONTON TOWN,17,1920,3,GOV1,3004 -0113_2709_30.01,-74.5661125,39.414375,448 N PACKARD ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_2709_30.02,-74.81135533,39.63115614,440 N PACKARD ST,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_2709_31,-74.383633,39.3939085,432 N PACKARD ST,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_2709_32,-74.71301743,39.47186001,430 N PACKARD ST,HAMMONTON TOWN,17,1970,1,GOV1,3004 -0113_2709_33,-74.870128,39.503427,426 N PACKARD ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_2709_34,-74.599736,39.411276,420 N PACKARD ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_2709_35,-74.46933454,39.36434484,408 N PACKARD ST,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_2709_36,-74.757816,39.636795,400 N PACKARD ST,HAMMONTON TOWN,17,1959,2,RES1,3001 -0113_2709_37,-74.71960982,39.64007666,435 PRATT ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2709_38,-74.66164484,39.54461497,429 PRATT ST,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_2709_39,-74.44934413,39.38165748,425 PRATT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2709_4,-74.7489015,39.60762888,437 N 3RD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2709_40,-74.49037919,39.43824204,421 PRATT ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2709_41,-74.52549372,39.31674815,413 PRATT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2709_43,-74.5201145,39.3993965,405 PRATT ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2709_45,-74.65182367,39.52281551,343 PRATT ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2709_46,-74.50519957,39.47797799,335 PRATT ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2709_47,-74.924253,39.5048555,329 PRATT ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2709_5,-74.5075915,39.4512515,435 N 3RD ST,HAMMONTON TOWN,,1913,2,RES1,3001 -0113_2709_7,-74.5661585,39.414489,427 N 3RD ST,HAMMONTON TOWN,,1915,1,RES1,3001 -0113_2709_8,-74.45276486,39.37408269,425 N 3RD ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2709_9,-74.61093082,39.31564699,421 N 3RD ST,HAMMONTON TOWN,17,1915,2,GOV1,3004 -0113_2710_1,-74.62987512,39.35328136,321 N 3RD ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2710_2,-74.56526165,39.36102582,317 N 3RD ST,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_2710_6,-74.77894415,39.62121347,2 MT CARMEL LANE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2711_1,-74.69340732,39.49690413,"219 N 3RD ST ""CONVENT""",HAMMONTON TOWN,16,1900,1,GOV1,3004 -0113_2711_10,-74.80962384,39.63402181,216 TILTON ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2711_11,-74.62795165,39.50596747,212 TILTON ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2711_12,-74.882854,39.554663,339 E PLEASANT ST,HAMMONTON TOWN,17,1890,1,RES1,3001 -0113_2711_13,-74.79828484,39.63948151,345 E PLEASANT ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2711_14,-74.57168662,39.34212771,335 E PLEASANT ST,HAMMONTON TOWN,17,1910,1,GOV1,3004 -0113_2711_15,-74.53855901,39.37553433,327 E PLEASANT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2711_16,-74.74077947,39.59390682,321-323 E PLEASANT ST,HAMMONTON TOWN,28,1900,2,RES1,3001 -0113_2711_17,-74.501081,39.4274575,315 E PLEASANT ST,HAMMONTON TOWN,17,1905,1,GOV1,3004 -0113_2711_18,-74.64595733,39.4618425,203 N 3RD ST,HAMMONTON TOWN,17,1893,1,RES1,3001 -0113_2711_2,-74.4478302,39.37129822,314 FRENCH ST,HAMMONTON TOWN,17,1880,2,RES1,3001 -0113_2711_3,-74.53393826,39.47017604,318 FRENCH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2711_4,-74.4372735,39.3770915,320 FRENCH ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2711_5,-74.48697104,39.52452476,324 FRENCH ST,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_2711_6,-74.59782677,39.38392595,328 FRENCH ST,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_2711_7,-74.78927434,39.5198063,330 FRENCH ST,HAMMONTON TOWN,17,1935,2,RES1,3001 -0113_2711_9,-74.36594328,39.41619531,220 TILTON ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2712_1,-74.8073565,39.6338395,1 MT CARMEL LN,HAMMONTON TOWN,,1965,1,GOV1,3004 -0113_2712_10,-74.48899681,39.44640805,360 N PACKARD ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2712_11,-74.4375408,39.36848092,330 N PACKARD ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2712_12,-74.78136769,39.67311107,300 N PACKARD ST,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_2712_13,-74.85180658,39.4907433,451 FRENCH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2712_14,-74.96387825,39.51270094,443 FRENCH ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_2712_15,-74.52784205,39.44906234,435 FRENCH ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_2712_16,-74.636787,39.3615485,427 FRENCH ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_2712_17,-74.79904816,39.4358055,421 FRENCH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_2712_18,-74.58830337,39.33200268,417 FRENCH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_2712_19,-74.45717817,39.47446904,411 FRENCH ST,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_2712_2,-74.48689622,39.33617083,410 PRATT ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_2712_3,-74.7578615,39.3043445,422 PRATT ST,HAMMONTON TOWN,17,1955,1,GOV1,3004 -0113_2712_4,-74.76558576,39.65070848,424 PRATT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2712_5,-74.57049829,39.34946505,426 PRATT ST,HAMMONTON TOWN,17,1949,1,RES1,3004 -0113_2712_6,-74.78350437,39.65194319,428 PRATT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2712_7,-74.4980075,39.3385445,432 PRATT ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2712_8,-74.5902985,39.380384,434 PRATT ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_2712_9,-74.487931,39.514975,438 PRATT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2713_1,-74.53965133,39.38042149,410 FRENCH ST,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_2713_10,-74.50258593,39.4442298,449 E PLEASANT ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2713_11,-74.61271115,39.34185044,447 E PLEASANT ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_2713_12,-74.70821646,39.57517334,445 E PLEASANT ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2713_13,-74.48962672,39.33577701,423 E PLEASANT ST,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_2713_13.01,-74.585125,39.3258345,425 E PLEASANT ST,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_2713_14,-74.93421271,39.52614891,421 E PLEASANT ST,HAMMONTON TOWN,17,1896,1,RES1,3001 -0113_2713_15,-74.487565,39.4377,411 E PLEASANT ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2713_16,-74.61354625,39.31828722,403 E PLEASANT ST,HAMMONTON TOWN,47,1920,2,GOV1,3004 -0113_2713_17,-74.5146655,39.3854885,207 TILTON ST,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_2713_18,-74.48721149,39.33318148,209-213 TILTON ST,HAMMONTON TOWN,47,1965,2,RES1,3001 -0113_2713_19,-74.48811219,39.44484169,215 TILTON ST,HAMMONTON TOWN,17,1945,3,RES1,3001 -0113_2713_2,-74.381684,39.3954565,415 E PLEASANT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_2713_2.01,-74.7150755,39.4336055,416 FRENCH ST,HAMMONTON TOWN,17,1995,1,GOV1,3004 -0113_2713_3,-74.4633755,39.4938545,420 FRENCH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2713_4,-74.581544,39.4108435,426 FRENCH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_2713_5,-74.79578892,39.43513173,428 FRENCH ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_2713_6,-74.3900235,39.3896115,430 FRENCH ST,HAMMONTON TOWN,17,1981,1,RES1,3001 -0113_2713_6.01,-74.5543919,39.36002687,432 FRENCH ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_2713_7,-74.5804995,39.3437355,460 FRENCH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2713_8,-74.4210765,39.371698,214 N PACKARD ST,HAMMONTON TOWN,17,1896,2,RES1,3001 -0113_2713_9,-74.74753603,39.45144866,200 N PACKARD ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_2801_1,-74.4898575,39.44067,127 N EGG HARBOR RD,HAMMONTON TOWN,,1930,1,RES1,3001 -0113_2801_10,-74.52419104,39.31536455,115 E ORCHARD ST,HAMMONTON TOWN,17,1930,3,RES1,3001 -0113_2801_11,-74.49715824,39.47022894,109 E ORCHARD ST,HAMMONTON TOWN,17,1940,3,RES1,3001 -0113_2801_13,-74.87331976,39.60295514,101-103 N EGG HARBOR RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2801_14,-74.37831617,39.40135986,103 N EGG HARBOR RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2801_2,-74.88378984,39.5973695,120 E PLEASANT ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2801_3,-74.5786515,39.3339895,150 N 2ND ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2801_5,-74.87482892,39.59453711,120 N 2ND ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2801_6,-74.87069666,39.48815226,116 N 2ND ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2801_7,-74.495166,39.4481655,112 N 2ND ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2801_8,-74.46730672,39.49615078,121 E ORCHARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2801_9,-74.49001625,39.44788237,117 E ORCHARD ST,HAMMONTON TOWN,17,1900,3,RES1,3001 -0113_2802_1,-74.4889025,39.472381,15 N EGG HARBOR RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2802_10,-74.57269744,39.33941776,117-119 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2802_11,-74.3995605,39.3866385,115 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2802_12,-74.45027516,39.354267,109 BELLEVUE/111 BELLEVUE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2802_13,-74.71976569,39.4499046,107 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2802_14,-74.44386038,39.35504316,5 N EGG HARBOR RD,HAMMONTON TOWN,,1951,1,RES1,3001 -0113_2802_14.01,-74.4017077,39.38941996,101 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2802_2,-74.472681,39.3422825,110 E ORCHARD ST,HAMMONTON TOWN,16,1800,1,RES1,3001 -0113_2802_3,-74.3713755,39.4049875,114 E ORCHARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2802_4,-74.88597874,39.5951881,116 E ORCHARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2802_5,-74.48387685,39.53779847,10 N 2ND ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2802_6,-74.620053,39.425043,"127-129 BELLEVUE AVE, ETC",HAMMONTON TOWN,,1921,1,RES1,3001 -0113_2802_7,-74.46394893,39.35693301,133 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2802_9,-74.43391256,39.36199651,125 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_10,-74.79194264,39.63474281,12 S 2ND ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_11,-74.69340235,39.56224295,14 S 2ND ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_12,-74.51016646,39.45600584,18 S 2ND ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_13,-74.5842786,39.3767722,20 S 2ND ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_14,-74.606356,39.502756,100 S 2ND ST AT VINE ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_15,-74.46323427,39.46557595,117 VINE ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_17,-74.41402399,39.36422516,113-115 VINE ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2803_18,-74.6280105,39.438572,111 VINE ST RR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2803_19,-74.6170546,39.31959081,19 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_2803_2,-74.55246084,39.43663744,104 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_20,-74.50007653,39.47145783,15 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2803_3,-74.60624558,39.31657416,106 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_4,-74.3712505,39.4100645,108 BELLEVUE AVE,HAMMONTON TOWN,,1896,1,RES1,3001 -0113_2803_5,-74.48584855,39.49784477,110 BELLEVUE AVE,HAMMONTON TOWN,,1896,1,RES3A,3001 -0113_2803_6,-74.59547351,39.37860494,112 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_7,-74.49932487,39.42896923,116 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_8,-74.87963843,39.46105516,118-124 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2803_9,-74.47427223,39.49417678,"126-128 BELLEVUE AVE, ETC",HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2804_2,-74.63522588,39.39176616,104 S EGG HARBOR RD,HAMMONTON TOWN,,1965,1,RES1,3001 -0113_2804_3,-74.63859131,39.52784627,112 S EGG HARBOR RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2804_4,-74.78022918,39.62250548,122 S EGG HARBOR RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2805_1,-74.49407965,39.44700781,111 S EGG HARBOR RD,HAMMONTON TOWN,,1946,1,RES1,3001 -0113_2805_10,-74.5898285,39.332599,109 PEACH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2805_11,-74.5052615,39.3318155,107 PEACH ST & 119 S EH R,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2805_12,-74.49812284,39.33653749,115 S EGG HARBOR RD,HAMMONTON TOWN,28,1930,2,RES1,3001 -0113_2805_13,-74.608673,39.489474,113 S EGG HARBOR RD,HAMMONTON TOWN,28,1930,2,RES1,3001 -0113_2805_2,-74.75316268,39.45156306,108 VINE ST,HAMMONTON TOWN,28,1930,2,RES1,3001 -0113_2805_4,-74.83783882,39.47946491,118-120 VINE ST,HAMMONTON TOWN,17,1913,3,RES1,3001 -0113_2805_5,-74.617551,39.3394495,110-112 S 2ND ST,HAMMONTON TOWN,28,1920,2,RES1,3001 -0113_2805_6,-74.6842745,39.549248,114 S 2ND ST,HAMMONTON TOWN,28,1930,1,RES1,3001 -0113_2805_7,-74.5241124,39.31608564,116 S 2ND ST,HAMMONTON TOWN,28,1930,1,RES1,3001 -0113_2805_8,-74.3665745,39.406527,117-119 PEACH ST,HAMMONTON TOWN,28,1930,2,RES1,3001 -0113_2805_9,-74.59851105,39.37409573,113 PEACH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2806_1,-74.5541695,39.426694,200 S EGG HARBOR RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2806_2,-74.76977187,39.61305906,212-214-216 S E H RD,HAMMONTON TOWN,,1921,1,RES1,3001 -0113_2806_3,-74.62300386,39.51348855,220 S EGG HARBOR RD,HAMMONTON TOWN,15,1925,1,RES1,3001 -0113_2807_1,-74.48802372,39.49313128,203 S EGG HARBOR RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2807_10,-74.45149734,39.35381782,209 S EGG HARBOR RD,HAMMONTON TOWN,16,1960,1,RES1,3001 -0113_2807_2,-74.531001,39.390616,110 PEACH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2807_3,-74.58882641,39.43153529,202 S 2ND ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2807_4,-74.44056568,39.37026249,206 S 2ND ST,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_2807_5,-74.38936921,39.39411219,212 S 2ND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2807_6,-74.62079512,39.43176172,115 GRAPE ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_2807_7,-74.82785,39.6491815,111 GRAPE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2807_8,-74.43389653,39.49149388,221 S EGG HARBOR RD,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_2808_1,-74.5405685,39.391211,131 N 2ND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2808_10,-74.79962132,39.46455245,215 E ORCHARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2808_11,-74.50603559,39.45049786,201-211 E ORCHARD ST,HAMMONTON TOWN,,1925,2,RES1,3001 -0113_2808_12,-74.5060555,39.42480617,101 N 2ND ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2808_13,-74.59945696,39.41694169,113 N 2ND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2808_14,-74.528465,39.395573,117 N 2ND ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2808_15,-74.59199612,39.3490985,121 N 2ND ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_2808_16,-74.608681,39.4184895,125 N 2ND ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2808_2,-74.9203005,39.51482,210 E PLEASANT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2808_3,-74.47093935,39.34309849,218 E PLEASANT ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_2808_4,-74.525699,39.416325,126 HORTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2808_5,-74.60925255,39.51446828,124 HORTON ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2808_6,-74.38733984,39.39231249,120 HORTON ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2808_7,-74.654052,39.3993855,116 HORTON ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2808_8,-74.6406415,39.5256795,114 HORTON ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2808_9,-74.94587356,39.53094035,219 E ORCHARD ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2809_1,-74.5014955,39.41671,9 N 2ND/10 HORTON STS,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2809_13,-74.64545847,39.52750247,201-205 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2809_7,-74.52382685,39.31354297,221-225 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2809_8,-74.485102,39.3471905,219 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2809_9,-74.60207993,39.36751302,215 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_1,-74.57476411,39.36609695,200 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_10,-74.63214573,39.39068988,10 CENTRAL AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_11,-74.614979,39.3231035,14 CENTRAL AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_12,-74.6839065,39.558181,16-18 CENTRAL AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_13,-74.7383415,39.453398,24 CENTRAL AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2810_14,-74.66363303,39.53088282,30 CENTRAL AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2810_15,-74.58107397,39.42306517,223 VINE ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2810_18,-74.51306632,39.41846002,201 VINE ST AT S 2ND,HAMMONTON TOWN,,1931,1,RES1,3001 -0113_2810_19,-74.50072714,39.32709066,17 S 2ND ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_2,-74.49900359,39.4328045,206-208 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_3,-74.641128,39.5295985,210 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_4,-74.46030173,39.35565975,212 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_5,-74.481261,39.3357615,214 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_6,-74.43055569,39.36546296,216 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_7,-74.51346862,39.33015597,218 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_8,-74.815939,39.613876,"224 BELLEVUE AVE, ETC",HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2810_9,-74.5420375,39.4357305,8 CENTRAL AVE,HAMMONTON TOWN,,1901,1,RES1,3001 -0113_2811_1,-74.9352353,39.52546803,200 VINE ST,HAMMONTON TOWN,17,1920,4,RES1,3001 -0113_2811_10,-74.41548037,39.50478146,217 PEACH ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2811_11,-74.57260224,39.35258843,213 PEACH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2811_12,-74.52393716,39.44640636,209 PEACH ST,HAMMONTON TOWN,17,1900,2,COM1,3004 -0113_2811_13,-74.41902517,39.36966941,115 S 2ND ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2811_2,-74.617953,39.43946967,208 VINE ST,HAMMONTON TOWN,,1955,1,RES1,3001 -0113_2811_3,-74.37050418,39.41032235,212 VINE ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2811_4,-74.4635876,39.34791917,218 VINE ST,HAMMONTON TOWN,,2002,1,RES1,3001 -0113_2811_5,-74.62165896,39.51252879,220 VINE ST,HAMMONTON TOWN,,1940,1,RES3A,3001 -0113_2811_6,-74.40379566,39.38151789,224 VINE ST,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2811_7,-74.75072248,39.44721954,100 CENTRAL AVE,HAMMONTON TOWN,,2007,1,RES1,3001 -0113_2811_8,-74.41682008,39.50540738,114 S 3RD ST,HAMMONTON TOWN,,1958,1,RES1,3001 -0113_2812_1,-74.67255942,39.3476247,200 PEACH ST,HAMMONTON TOWN,17,1900,2,IND1,3004 -0113_2812_10,-74.50165452,39.33298236,220 S 3RD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2812_11,-74.4760684,39.33844732,227 GRAPE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2812_13,-74.856688,39.4386845,217 GRAPE ST,HAMMONTON TOWN,17,1937,1,RES1,3001 -0113_2812_14,-74.6651955,39.3587755,213 GRAPE ST,HAMMONTON TOWN,17,1924,1,RES1,3001 -0113_2812_15,-74.90147665,39.53943522,209 GRAPE ST,HAMMONTON TOWN,17,1909,1,RES1,3001 -0113_2812_16,-74.76612656,39.30896736,201 GRAPE ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2812_17,-74.62884552,39.43938178,215 S 2ND ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2812_18,-74.8135983,39.64076264,209 S 2ND ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2812_2,-74.84288084,39.55667664,206 PEACH ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2812_3,-74.5703435,39.3626365,208 PEACH ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2812_4,-74.5067635,39.435434,214 PEACH ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2812_5,-74.50164768,39.41053902,218 PEACH ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2812_6,-74.92481691,39.48340711,222 PEACH ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2812_7,-74.87745585,39.47661368,230 PEACH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2812_8,-74.40826102,39.37996839,202 S 3RD ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2812_9,-74.7591327,39.44583431,210 S 3RD ST,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_2813_1,-74.939395,39.51644,228 E PLEASANT ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2813_10,-74.53106758,39.39901396,235 E ORCHARD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2813_11,-74.46226424,39.49685295,227 E ORCHARD ST,HAMMONTON TOWN,17,1900,1,COM4,3004 -0113_2813_12,-74.91727688,39.47402076,113 HORTON ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2813_13,-74.861316,39.485505,117 HORTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2813_14,-74.5683135,39.3640265,121 HORTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2813_15,-74.47136214,39.49420706,127 HORTON ST,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2813_16,-74.7480075,39.4526235,129 HORTON ST,HAMMONTON TOWN,17,1920,1,RES1,3004 -0113_2813_2,-74.36628465,39.41312018,232 E PLEASANT ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2813_3,-74.43206651,39.36680734,136 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2813_4,-74.61162182,39.48669118,128 N 3RD ST,HAMMONTON TOWN,,0,1,REL1,3004 -0113_2813_5,-74.87326114,39.45878414,122 N 3RD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2813_7,-74.749474,39.4518815,116 N 3RD ST,HAMMONTON TOWN,17,1920,2,GOV1,3004 -0113_2813_8,-74.61792226,39.32100852,112 N 3RD ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2813_9,-74.43975268,39.36551549,102 N 3RD ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2814_1,-74.59079938,39.32695719,19 HORTON ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2814_10,-74.82137597,39.62697739,17 HORTON ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2814_2,-74.56129605,39.37150865,22 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2814_4,-74.50791451,39.33702734,251 BELLEVUE AVE,HAMMONTON TOWN,,1963,1,RES1,3001 -0113_2814_5,-74.50723616,39.47424925,245-249 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2814_8,-74.58756333,39.31487708,237 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_2814_9,-74.8062405,39.6298995,"231 BELLEVUE AVE, ETC",HAMMONTON TOWN,,0,1,RES1,3001 -0113_2815_1,-74.5345345,39.3054695,"236 BELLEVUE AVE, ETC",HAMMONTON TOWN,,0,1,RES1,3001 -0113_2815_2,-74.6392415,39.4011575,254 BELLEVUE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2815_3,-74.61763311,39.37831416,"249 VINE ST, ETC",HAMMONTON TOWN,,0,1,RES1,3001 -0113_2816_1,-74.40390262,39.38050791,133 N 3RD ST (SCHOOL),HAMMONTON TOWN,,1965,1,RES1,3001 -0113_2816_11,-74.61468864,39.39101231,116 TILTON ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_2816_12,-74.72131031,39.64423131,108 TILTON ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2816_14,-74.57539193,39.40896116,327 E ORCHARD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2816_15,-74.80277873,39.51870399,325 E ORCHARD ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_2816_16,-74.64722269,39.43477496,321 E ORCHARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2816_17,-74.64051521,39.52686931,317 E ORCHARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2816_18,-74.60110934,39.4972466,315 E ORCHARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2816_19,-74.514092,39.4145115,311 E ORCHARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2816_20,-74.41393086,39.37023833,103 N 3RD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2816_21,-74.81487082,39.63202483,107 N 3RD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2816_22,-74.78536209,39.37177115,111-115 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2816_4,-74.6287913,39.41731743,330 E PLEASANT ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2816_5,-74.53634315,39.30403078,336 E PLEASANT ST,HAMMONTON TOWN,17,1940,1,COM1,3004 -0113_2816_6,-74.89031,39.4786205,338 E PLEASANT ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2816_7,-74.70394,39.4771775,342 E PLEASANT ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2816_8,-74.62885751,39.41381797,344 E PLEASANT ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2816_9,-74.60899754,39.48969416,124 TILTON ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2817_1,-74.6169532,39.32071908,21 N 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2817_10,-74.37731327,39.41334312,325 BELLEVUE AVE,HAMMONTON TOWN,16,1925,1,RES1,3001 -0113_2817_11,-74.64787884,39.51415148,317 BELLEVUE AVE,HAMMONTON TOWN,16,1920,1,RES1,3001 -0113_2817_12,-74.60731085,39.32732675,313 BELLEVUE AVE,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2817_13,-74.51088538,39.40681779,309 BELLEVUE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2817_14,-74.5304775,39.3851,301 BELLEVUE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2817_15,-74.882878,39.5985005,9 N 3RD ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2817_16,-74.48075583,39.34032404,11 N 3RD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2817_17,-74.7915775,39.632461,15 N 3RD ST,HAMMONTON TOWN,17,1900,3,RES1,3001 -0113_2817_2,-74.59901807,39.3652779,310 E ORCHARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2817_3,-74.6361245,39.3648325,314 E ORCHARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2817_4,-74.8762083,39.48617288,316 E ORCHARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2817_5,-74.809477,39.375001,320 E ORCHARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2817_5.01,-74.71093415,39.47091505,326 E ORCHARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2817_6,-74.51594433,39.32145751,337 BELLEVUE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2817_8,-74.6383272,39.38198554,351 BELLEVUE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2818_1,-74.619845,39.43871,131 TILTON ST,HAMMONTON TOWN,,1965,1,RES1,3001 -0113_2818_15,-74.62951668,39.43978933,447 BELLEVUE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2818_16,-74.62447165,39.37541417,441 BELLEVUE AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2818_17,-74.45955567,39.348906,433 BELLEVUE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2818_18,-74.60014387,39.32606667,429 BELLEVUE AVE,HAMMONTON TOWN,18,1929,1,RES1,3001 -0113_2818_19,-74.4970206,39.45601942,415 BELLEVUE AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_2818_2,-74.77504866,39.59369152,444 E PLEASANT ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2818_20,-74.5177825,39.4454625,409 BELLEVUE AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2818_21,-74.80780166,39.64141402,405 BELLEVUE AVE,HAMMONTON TOWN,17,1932,2,RES1,3001 -0113_2818_22,-74.523668,39.3979155,401 BELLEVUE AVE,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2818_23,-74.47474434,39.3407915,15 TILTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2818_24,-74.68031,39.635279,19 TILTON ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2818_25,-74.60145698,39.32657467,23 TILTON ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2818_26,-74.73247302,39.45424454,25 TILTON ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2818_27,-74.80243851,39.62551379,101 TILTON ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2818_29,-74.75003317,39.45006631,121 TILTON ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_2818_3,-74.521695,39.39923,54 N PACKARD ST,HAMMONTON TOWN,17,1925,1,RES1,3004 -0113_2818_30,-74.37020477,39.40373286,125 TILTON ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2818_7,-74.57101076,39.34390017,50 N PACKARD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2818_8,-74.48289709,39.47935246,48 N PACKARD ST,HAMMONTON TOWN,17,1920,1,COM4,3004 -0113_2818_9,-74.66866733,39.35411738,44 N PACKARD ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2901_1,-74.8540885,39.4450275,300 S EGG HARBOR RD,HAMMONTON TOWN,,1970,1,RES1,3001 -0113_2901_3,-74.524357,39.3124185,310 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2902_1,-74.81674093,39.62544087,2 LINE ST AT S EGG HARBOR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2902_10,-74.92399242,39.47214197,S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2902_11,-74.68465099,39.55428867,392 S EGG HARBOR RD,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_2902_12,-74.51510896,39.45658016,394 S EGG HARBOR RD,HAMMONTON TOWN,,1945,1,RES1,3001 -0113_2902_13,-74.77323799,39.42742217,398 S EGG HARBOR RD,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2902_2,-74.502508,39.342132,320 S EGG HARBOR RD,HAMMONTON TOWN,,1930,1,RES1,3001 -0113_2902_3,-74.52510483,39.38309242,340 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2902_5,-74.52259882,39.3904334,350 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2902_6,-74.7604095,39.43002122,362 S EGG HARBOR RD,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_2902_7,-74.5439185,39.387238,364 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2902_9,-74.63077294,39.35594828,390 S EGG HARBOR RD,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_2903_1,-74.406325,39.378878,102 GRAPE ST,HAMMONTON TOWN,17,1928,2,GOV1,3004 -0113_2903_2,-74.50696274,39.33590368,108 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2903_3,-74.61141678,39.3200196,302 S 2ND ST,HAMMONTON TOWN,17,1920,2,RES3A,3001 -0113_2903_4,-74.82804349,39.65020117,308 S 2ND ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_2903_5,-74.63783836,39.44474968,115 CHERRY ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2903_6,-74.7573885,39.44597924,105 CHERRY ST,HAMMONTON TOWN,17,1929,1,RES1,3001 -0113_2903_7,-74.51882834,39.39545715,323 S EGG HARBOR RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_2903_8,-74.63162046,39.44008334,315 S EGG HARBOR RD,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2904_1,-74.558944,39.370074,202 GRAPE ST,HAMMONTON TOWN,17,1940,1,GOV1,3004 -0113_2904_10,-74.50380794,39.33236383,320 S 3RD ST,HAMMONTON TOWN,17,1840,3,RES1,3001 -0113_2904_11,-74.5906805,39.4278245,227 CHERRY ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2904_12,-74.5085583,39.42968379,223 CHERRY ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2904_13,-74.51905484,39.32272504,219 CHERRY ST,HAMMONTON TOWN,17,1959,2,RES1,3001 -0113_2904_14,-74.92703879,39.53466503,211 CHERRY ST,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_2904_15,-74.567473,39.35683,321 S 2ND ST,HAMMONTON TOWN,17,1900,4,RES1,3001 -0113_2904_16,-74.48778286,39.34946071,317 S 2ND ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2904_2,-74.7336265,39.4487185,210 GRAPE ST,HAMMONTON TOWN,17,1898,1,RES1,3001 -0113_2904_3,-74.79110733,39.63308822,212 GRAPE ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2904_4,-74.79316186,39.63375669,218 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES3B,3001 -0113_2904_5,-74.53030002,39.38012673,224 GRAPE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2904_6,-74.5965945,39.3117995,230 GRAPE ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2904_7,-74.775236,39.4947965,232 GRAPE ST,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_2904_8,-74.91085226,39.48897646,236 GRAPE ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_2904_9,-74.50420118,39.41118103,308 S 3RD ST,HAMMONTON TOWN,17,1907,2,RES1,3001 -0113_2905_1,-74.65259796,39.52255694,333 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,COM1,3004 -0113_2905_10,-74.43102289,39.37473809,28 PRESSEY ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_2905_11,-74.71323,39.470193,30 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_12,-74.49310445,39.43080233,32 PRESSEY ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2905_13,-74.56332162,39.36112738,36 PRESSEY ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_2905_14,-74.75126997,39.44572883,38 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_15,-74.46369468,39.34919574,42 PRESSEY ST,HAMMONTON TOWN,17,1915,1,RES1,3001 -0113_2905_16,-74.52081606,39.38812532,46 PRESSEY ST,HAMMONTON TOWN,17,1915,1,RES1,3001 -0113_2905_17,-74.79371316,39.64337753,50 PRESSEY ST,HAMMONTON TOWN,17,1934,1,RES1,3001 -0113_2905_18,-74.917319,39.4754935,54 PRESSEY ST,HAMMONTON TOWN,16,1920,1,RES3B,3001 -0113_2905_19,-74.70125416,39.5769686,56 PRESSEY ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2905_2,-74.45778294,39.35396932,112 CHERRY ST,HAMMONTON TOWN,17,1925,1,RES3A,3001 -0113_2905_20,-74.750289,39.602131,58 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_21,-74.64505258,39.53338239,60 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_22,-74.48661,39.476581,61 PRESSEY ST,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_2905_23,-74.609482,39.3837875,57 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_24,-74.43973868,39.36899941,53 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_25,-74.53172608,39.40126317,29 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_26,-74.7071885,39.5612715,27 PRESSEY ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2905_27,-74.61343328,39.3192234,23 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_28,-74.80781076,39.52278672,19 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_29,-74.568418,39.36318614,15 PRESSEY ST,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_2905_3,-74.9744125,39.5092235,114 CHERRY ST,HAMMONTON TOWN,17,1920,1,COM3,3004 -0113_2905_30,-74.49142,39.333494,220 CHERRY ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2905_31,-74.570779,39.4131115,222 CHERRY ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2905_32,-74.42825507,39.37131084,226 CHERRY ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2905_33,-74.93160925,39.52769212,328 S 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2905_34,-74.487402,39.3367715,334 S 3RD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2905_35,-74.5943055,39.316345,336 S 3RD ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2905_36,-74.6376715,39.3812355,340 S 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2905_37,-74.6315105,39.408638,348 S 3RD ST,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_2905_38,-74.93711517,39.523698,356 S 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2905_4,-74.4980195,39.3371285,116 CHERRY ST,HAMMONTON TOWN,17,1927,1,RES1,3001 -0113_2905_40,-74.496573,39.3291145,360 S 3RD ST,HAMMONTON TOWN,17,1914,1,RES1,3001 -0113_2905_42,-74.62914265,39.42280079,362 S 3RD ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2905_43,-74.57362072,39.35758871,368 S 3RD ST,HAMMONTON TOWN,17,1910,1,GOV1,3004 -0113_2905_44,-74.61883033,39.49383749,163 MAPLE ST,HAMMONTON TOWN,17,1939,1,RES1,3001 -0113_2905_45,-74.50315323,39.44450117,157 MAPLE ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_2905_46,-74.60068083,39.32833045,155 MAPLE ST,HAMMONTON TOWN,17,1910,1,IND1,3004 -0113_2905_47,-74.46694477,39.45662106,145 MAPLE ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_2905_48,-74.49113167,39.33143549,143 MAPLE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2905_49,-74.39904751,39.38434493,139 MAPLE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2905_5,-74.80073475,39.63433525,200 CHERRY ST,HAMMONTON TOWN,17,2018,1,RES1,3001 -0113_2905_50,-74.36240385,39.40791918,135 MAPLE ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2905_51,-74.78766187,39.64335812,131 MAPLE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2905_52,-74.944464,39.5245695,127 MAPLE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2905_53,-74.5673845,39.54081,123 MAPLE ST,HAMMONTON TOWN,17,1915,1,RES1,3001 -0113_2905_54,-74.72111107,39.43056968,115 MAPLE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2905_55,-74.47547461,39.49282102,395 S EGG HARBOR RD,HAMMONTON TOWN,17,1940,2,EDU1,3004 -0113_2905_56,-74.5001655,39.3273115,373 & 369 S EGG HARBOR RD,HAMMONTON TOWN,17,1920,3,RES1,3001 -0113_2905_57,-74.60387881,39.41000347,365 S EGG HARBOR RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2905_58,-74.64021363,39.52566383,363 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2905_59,-74.618251,39.3710215,361 S EGG HARBOR RD,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_2905_6,-74.4429535,39.356648,14 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_60,-74.67085014,39.38336568,355 S EGG HARBOR RD,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_2905_61,-74.496131,39.4274905,351 S EGG HARBOR RD,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_2905_7,-74.83751526,39.64000123,18 PRESSEY ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_2905_8,-74.6058085,39.3492995,22 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2905_9,-74.5800207,39.36250521,26 PRESSEY ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2906_1,-74.40778319,39.38232744,112 MAPLE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_2906_10,-74.8422261,39.47466287,160 MAPLE ST,HAMMONTON TOWN,17,1908,1,RES1,3001 -0113_2906_11,-74.4852735,39.4720385,166 MAPLE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2906_12,-74.8116895,39.627834,170 MAPLE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2906_13,-74.53500845,39.52894466,174 MAPLE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2906_14,-74.4589867,39.47196278,410 S 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_2906_15,-74.92199728,39.50869064,185 WALMER ST,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_2906_16,-74.5408065,39.4130565,183 WALMER ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_2906_17,-74.648056,39.549024,181 WALMER ST,HAMMONTON TOWN,17,1948,1,GOV1,3004 -0113_2906_18,-74.65775494,39.53629316,177 WALMER ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2906_19,-74.3760845,39.39722,163 WALMER ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2906_2,-74.49490339,39.34233456,114 MAPLE ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2906_20,-74.5579405,39.475086,157 WALMER ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2906_21,-74.4660575,39.344653,151 WALMER ST,HAMMONTON TOWN,17,1954,1,GOV1,3004 -0113_2906_22,-74.597787,39.319017,145 WALMER ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2906_23,-74.62631752,39.62045058,139 WALMER ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2906_24,-74.590434,39.3656065,137 WALMER ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2906_25,-74.518686,39.410433,"135 WALMER, 421 S EH RD",HAMMONTON TOWN,,1972,1,RES1,3001 -0113_2906_26,-74.63805189,39.36544898,417 S EGG HARBOR RD,HAMMONTON TOWN,17,1938,1,RES1,3001 -0113_2906_27,-74.38676186,39.39182565,415 S EGG HARBOR RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2906_28,-74.64823818,39.45902718,411 S EGG HARBOR RD,HAMMONTON TOWN,17,1896,2,RES1,3001 -0113_2906_3,-74.51294034,39.32727771,118 MAPLE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2906_4,-74.55666392,39.36187295,126 MAPLE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2906_5,-74.75039767,39.60321049,132 MAPLE ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2906_6,-74.57834563,39.35239325,136 MAPLE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2906_7,-74.66017981,39.59124466,140 MAPLE ST,HAMMONTON TOWN,17,1927,1,RES1,3001 -0113_2906_8,-74.43806028,39.51743668,144 MAPLE ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2906_9,-74.61740633,39.35182415,150 MAPLE ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2907_1,-74.362927,39.4113255,302 GRAPE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2907_10,-74.493846,39.430721,315 MAPLE ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2907_11,-74.6234145,39.420915,369 S 3RD ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2907_12,-74.4846491,39.35004264,363 S 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2907_13,-74.50530118,39.49312065,361 S 3RD ST,HAMMONTON TOWN,17,1923,1,RES1,3001 -0113_2907_14,-74.38894346,39.39377934,345 S 3RD ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_2907_15,-74.50611457,39.48033593,341 S 3RD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2907_16,-74.6049345,39.4070325,335 S 3RD ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_2907_17,-74.65322949,39.52570783,331 S 3RD ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2907_18,-74.42779266,39.37274337,327 S 3RD ST,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_2907_19,-74.62655557,39.43728511,323 S 3RD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2907_2,-74.48272003,39.42974516,314 GRAPE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2907_20,-74.39061357,39.38957065,321 S 3RD ST,HAMMONTON TOWN,17,1906,3,RES1,3001 -0113_2907_21,-74.55735559,39.47571118,317 S 3RD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_2907_22,-74.500061,39.4978955,313 S 3RD ST,HAMMONTON TOWN,17,1920,1,RES4,3001 -0113_2907_23,-74.37434059,39.41727924,309 S 3RD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_2907_3,-74.8528555,39.3696975,302 CENTRAL AVE,HAMMONTON TOWN,18,1900,2,RES1,3001 -0113_2907_4,-74.49120734,39.334551,316 CENTRAL AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_2907_5,-74.63048434,39.47384744,318 CENTRAL AVE,HAMMONTON TOWN,17,1931,1,RES1,3001 -0113_2907_6,-74.4642035,39.4930265,332 CENTRAL AVE,HAMMONTON TOWN,18,1911,1,RES1,3001 -0113_2907_8,-74.4817325,39.339016,348 CENTRAL AVE,HAMMONTON TOWN,18,1920,1,RES1,3001 -0113_2907_9,-74.59144496,39.33521537,327 MAPLE ST,HAMMONTON TOWN,17,1930,2,RES1,3001 -0113_2908_1,-74.51512753,39.3913247,300 MAPLE ST,HAMMONTON TOWN,18,1885,2,GOV1,3004 -0113_2908_2,-74.530241,39.529857,350 MAPLE ST,HAMMONTON TOWN,17,1945,2,RES1,3001 -0113_2908_3,-74.5229281,39.32274165,400 CENTRAL AVE,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_2908_4,-74.7008055,39.486873,420 CENTRAL AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_2908_5,-74.7031695,39.3528855,426 CENTRAL AVE,HAMMONTON TOWN,,1863,1,RES1,3001 -0113_2908_6,-74.46428676,39.49444593,321 WALMER ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_2908_7,-74.57121394,39.42741842,311 WALMER ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_2908_8,-74.45521432,39.35332473,305 WALMER ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_2908_9,-74.6000566,39.35812926,411 S 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3001_1,-74.62378494,39.31472007,425 S EGG HARBOR RD,HAMMONTON TOWN,,1992,1,RES1,3001 -0113_3001_1.01_C0011,-74.40139436,39.38601376,11 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0012,-74.37507905,39.39782917,12 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0013,-74.66249904,39.41698541,13 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0014,-74.623125,39.4231815,14 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0015,-74.5273875,39.4504695,15 HARBOR DR,HAMMONTON TOWN,37,1988,1,GOV1,3004 -0113_3001_1.01_C0016,-74.65189322,39.40016681,16 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0017,-74.56233582,39.36118684,17 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0021,-74.51531193,39.45679684,21 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0022,-74.60389477,39.32010077,22 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0023,-74.880711,39.470207,23 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0024,-74.63484475,39.62060547,24 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0025,-74.58058565,39.34047902,25 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0026,-74.5593765,39.3658745,26 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0031,-74.53258832,39.40118648,31 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0032,-74.79610574,39.62285448,32 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0033,-74.6517484,39.4074182,33 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0034,-74.4923055,39.5217465,34 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0035,-74.63191973,39.35883963,35 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0036,-74.44073483,39.35756083,36 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0037,-74.57723834,39.33269954,37 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0038,-74.65145268,39.41159753,38 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0041,-74.55640964,39.39052573,41 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0042,-74.50003697,39.33350983,42 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0043,-74.60884782,39.31569978,43 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0044,-74.378201,39.3982445,44 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0045,-74.64924628,39.46782552,45 HARBOR DR,HAMMONTON TOWN,37,1988,1,GOV1,3004 -0113_3001_1.01_C0051,-74.37112346,39.40219217,51 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0052,-74.86134879,39.59523897,52 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0053,-74.50960136,39.43478031,53 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0054,-74.80834541,39.66270732,54 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0055,-74.62834086,39.35142577,55 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0056,-74.8733549,39.59351315,56 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0061,-74.478612,39.341829,61 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0062,-74.82757516,39.41003045,62 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0063,-74.8709325,39.4917595,63 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0064,-74.5880571,39.32539115,64 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0065,-74.50352,39.4184265,65 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_1.01_C0066,-74.364144,39.4149435,66 HARBOR DR,HAMMONTON TOWN,37,1988,1,RES1,3001 -0113_3001_10,-74.5184365,39.3226375,190 WALMER ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3001_11,-74.608547,39.393601,192 WALMER ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3001_12,-74.70355934,39.56196483,194 WALMER ST,HAMMONTON TOWN,17,1938,1,IND2,3002 -0113_3001_14,-74.61710155,39.322115,198 WALMER ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3001_15,-74.40537168,39.38274794,200 WALMER ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3001_16,-74.63012201,39.43868073,510 S 3RD ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3001_17,-74.49521413,39.52822683,530 S 3RD ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3001_18,-74.5019655,39.337012,536 S 3RD ST,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_3001_19,-74.52555696,39.38692117,542 S 3RD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3001_2,-74.8751825,39.595352,136 WALMER ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3001_20,-74.789671,39.446628,544 S 3RD ST,HAMMONTON TOWN,17,1955,2,RES1,3001 -0113_3001_21,-74.45664116,39.3496135,546 S 3RD ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3001_22,-74.86682038,39.57065757,548 S 3RD ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3001_23,-74.56938769,39.34360431,556 S 3RD ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3001_24,-74.586644,39.375267,562 S 3RD ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3001_25,-74.5600275,39.5341875,576 S 3RD ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_3001_26,-74.76614734,39.66768849,299 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3001_27,-74.62521051,39.36141465,297 CHESTNUT ST,HAMMONTON TOWN,17,1948,1,GOV1,3004 -0113_3001_28,-74.83565094,39.48540569,295 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3001_29,-74.648073,39.4607585,293 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3001_3,-74.50028658,39.33452266,138 WALMER ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_3001_30,-74.601277,39.360365,291 CHESTNUT ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3001_31,-74.81561,39.654708,289 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3001_32,-74.49009869,39.33225546,287 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3001_33,-74.48338252,39.45644779,285 CHESTNUT ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3001_34,-74.9388982,39.52941833,283 CHESTNUT ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3001_35,-74.50616186,39.33493606,281 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3001_36,-74.3755185,39.4138485,275 CHESTNUT ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3001_37,-74.7947603,39.63618644,271 CHESTNUT ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3001_38,-74.60853221,39.48702088,267 CHESTNUT ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3001_39,-74.50864825,39.40409975,261 CHESTNUT ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3001_4,-74.73393376,39.44758013,146 WALMER ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3001_41,-74.48152553,39.34012535,499 S EGG HARBOR RD,HAMMONTON TOWN,,1957,1,RES1,3001 -0113_3001_41.01,-74.64069159,39.46411628,451 S EGG HARBOR RD,HAMMONTON TOWN,,1981,1,RES1,3001 -0113_3001_5,-74.6376665,39.3440245,150 WALMER ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3001_6,-74.63564968,39.43444972,156 WALMER ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3001_7,-74.5352825,39.385442,184 WALMER ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3001_8,-74.47466838,39.34065314,186 WALMER ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3001_9,-74.77901432,39.63446264,188 WALMER ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3002_1,-74.51770248,39.43622698,300 WALMER ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3002_10,-74.91704282,39.52548348,538 CENTRAL AVE,HAMMONTON TOWN,17,1939,1,RES1,3001 -0113_3002_11,-74.61513408,39.51322639,311 LOCUST ST,HAMMONTON TOWN,17,1958,1,GOV1,3004 -0113_3002_12,-74.5173165,39.3201685,309 LOCUST ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3002_13,-74.50820063,39.43552544,307 LOCUST ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3002_14,-74.37436386,39.39826698,305 LOCUST ST,HAMMONTON TOWN,17,1938,1,RES3A,3001 -0113_3002_15,-74.59351813,39.32042741,303 LOCUST ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3002_16,-74.4047704,39.38997879,301 LOCUST ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_3002_17,-74.3753824,39.41115349,521 S 3RD ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3002_18,-74.81948146,39.36272629,515 S 3RD ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3002_19,-74.59950925,39.5124777,507 S 3RD ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3002_2,-74.79092842,39.63360521,304 WALMER ST,HAMMONTON TOWN,17,1946,1,RES3A,3001 -0113_3002_3,-74.6307665,39.4217605,306 WALMER ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3002_4,-74.631818,39.5401045,308 WALMER ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3002_5,-74.79180169,39.65538518,310 WALMER ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3002_6,-74.5579125,39.398995,312 WALMER ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3002_7,-74.89688859,39.48369816,500 CENTRAL AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3002_8,-74.68690955,39.4974302,516 CENTRAL AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3002_9,-74.50164535,39.43233635,526 CENTRAL AVE,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_3003_1,-74.91540818,39.53787838,300 LOCUST ST,HAMMONTON TOWN,17,1947,1,RES1,3001 -0113_3003_10,-74.3775395,39.416218,558 CENTRAL AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_3003_12,-74.573287,39.371979,570 CENTRAL AVE,HAMMONTON TOWN,18,1932,1,RES1,3001 -0113_3003_12.01,-74.6083659,39.30632029,311 CHESTNUT ST REAR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3003_13,-74.815096,39.6553595,578 CENTRAL AVE,HAMMONTON TOWN,17,1935,4,RES3B,3001 -0113_3003_14,-74.71885823,39.57431005,586 CENTRAL AVE,HAMMONTON TOWN,18,1880,1,RES1,3001 -0113_3003_15,-74.648073,39.4725255,313 CHESTNUT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3003_16,-74.58323569,39.5141997,309 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3003_17,-74.50553677,39.33840137,307 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3003_18,-74.58122454,39.36011604,305 CHESTNUT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3003_19,-74.46651673,39.35610362,301 CHESTNUT ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3003_2,-74.508368,39.454668,304 LOCUST ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3003_20,-74.512417,39.437801,577 S 3RD ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3003_21,-74.454551,39.3744975,571 S 3RD ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3003_22,-74.57501919,39.41804059,565 S 3RD ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3003_3,-74.68906643,39.35863615,306 LOCUST ST,HAMMONTON TOWN,17,1948,2,RES1,3001 -0113_3003_4,-74.569944,39.3726645,308 LOCUST ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3003_5,-74.36769672,39.41160004,310 LOCUST ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3003_6,-74.5928875,39.537397,312 LOCUST ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3003_7,-74.600928,39.32024,550 CENTRAL AVE,HAMMONTON TOWN,17,1937,1,RES1,3001 -0113_3003_8,-74.63319065,39.36388272,554 CENTRAL AVE,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_3003_9,-74.6317354,39.51848713,556 CENTRAL AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3004_1,-74.46338544,39.49583852,256 CHESTNUT ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3004_10,-74.50470553,39.53034524,292 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3004_11,-74.537348,39.3138435,294 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3004_12,-74.6332585,39.6130945,296 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3004_13,-74.3675135,39.417201,298 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3004_14,-74.5770299,39.35126112,300 CHESTNUT ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3004_15,-74.6356635,39.625213,304 CHESTNUT ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3004_16,-74.50162174,39.43520914,306 CHESTNUT ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_3004_17,-74.8378805,39.388676,312 CHESTNUT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3004_18,-74.37199567,39.403838,326 CHESTNUT ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3004_19,-74.5841249,39.36358695,330 CHESTNUT ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3004_2,-74.571126,39.4145285,264 CHESTNUT ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3004_20,-74.5685615,39.4138495,596 CENTRAL AVE,HAMMONTON TOWN,17,1945,1,RES3A,3001 -0113_3004_21,-74.51314976,39.43007393,602 CENTRAL AVE,HAMMONTON TOWN,17,1885,2,COM1,3004 -0113_3004_22,-74.51298345,39.40310918,608 CENTRAL AVE,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_3004_23,-74.5951015,39.3133325,708 CENTRAL AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3004_24,-74.45383073,39.49708713,281 PARK AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3004_25,-74.60615011,39.48228115,277 PARK AVE,HAMMONTON TOWN,17,1961,1,RES1,3002 -0113_3004_26,-74.70691119,39.47372791,273 PARK AVE,HAMMONTON TOWN,17,1916,1,RES1,3002 -0113_3004_27,-74.499849,39.4459905,267 PARK AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3004_28,-74.56621,39.5126165,259 PARK AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3004_29,-74.4879458,39.33440667,251 PARK AVE,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3004_3,-74.511827,39.4393555,278 CHESTNUT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3004_30,-74.38250532,39.39506735,247 PARK AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3004_31,-74.87357836,39.59185512,235 PARK AVE,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3004_32,-74.4279485,39.369379,229 PARK AVE,HAMMONTON TOWN,17,1955,1,RES3A,3001 -0113_3004_33,-74.8094185,39.6429355,225 PARK AVE,HAMMONTON TOWN,17,1953,1,RES3A,3001 -0113_3004_34,-74.56686923,39.38705179,221 PARK AVE,HAMMONTON TOWN,17,1952,1,RES3A,3001 -0113_3004_35,-74.5713685,39.3406485,217 PARK AVE,HAMMONTON TOWN,17,1955,1,RES3B,3001 -0113_3004_36,-74.607705,39.3211045,213 PARK AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3004_37,-74.90382083,39.50340776,209 PARK AVE,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3004_38,-74.64321864,39.53387495,203 PARK AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3004_39,-74.52131365,39.31480396,197 PARK AVE,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_3004_4,-74.736687,39.720664,280 CHESTNUT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3004_41,-74.37392009,39.40095855,191 PARK AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3004_5,-74.51666435,39.32497198,282 CHESTNUT ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3004_6,-74.46322219,39.3530638,284 CHESTNUT ST,HAMMONTON TOWN,17,1945,2,RES1,3001 -0113_3004_7,-74.6308515,39.390962,286 CHESTNUT ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3004_8,-74.80767137,39.55356033,288 CHESTNUT ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3004_9,-74.38984,39.3935225,290 CHESTNUT ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_301_5,-74.5828535,39.4145825,971 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_301_6,-74.81153238,39.65059318,977 12TH ST,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_301_7,-74.718222,39.441296,975 12TH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_302_2,-74.60679068,39.32152256,951 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_303_10,-74.5029025,39.450268,481 N 2ND RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_303_11,-74.9400225,39.519857,485 N 2ND RD,HAMMONTON TOWN,17,1875,1,RES1,3001 -0113_303_12,-74.5851715,39.373883,932 13TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_303_13,-74.49669414,39.43411651,934 13TH ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_303_15,-74.505879,39.4919875,946 13TH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_303_16,-74.64506266,39.55013026,950 13TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_303_2,-74.672703,39.369839,945 12TH ST,HAMMONTON TOWN,,1958,1,RES3A,3001 -0113_303_5,-74.44168318,39.36964294,901 12TH ST,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_303_5.02,-74.42700046,39.36814932,407 N 2ND RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_303_5.04,-74.5422215,39.456242,401 N 2ND RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_303_7,-74.61973159,39.53685285,455 N 2ND RD,HAMMONTON TOWN,17,1968,1,RES1,3002 -0113_303_9,-74.56846421,39.36183814,473 N 2ND RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3101_1,-74.46031635,39.49770433,112 N LIBERTY ST,HAMMONTON TOWN,17,2002,1,GOV1,3004 -0113_3101_10,-74.80127206,39.64767561,64 N LIBERTY ST,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_3101_13,-74.63337847,39.6218366,681 E PLEASANT ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3101_14,-74.53095106,39.30779466,671 E PLEASANT ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3101_17,-74.7673975,39.645525,651 E PLEASANT ST,HAMMONTON TOWN,17,1966,1,RES3A,3001 -0113_3101_18,-74.904957,39.540537,641 E PLEASANT ST,HAMMONTON TOWN,17,1965,2,RES3A,3001 -0113_3101_19,-74.5627415,39.361359,631 E PLEASANT ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3101_2,-74.48514519,39.51932385,108 N LIBERTY ST,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_3101_21,-74.52733001,39.38988433,203 4TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3101_22,-74.86553029,39.49407792,209 4TH ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3101_23,-74.45053798,39.49210884,215 4TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3101_24,-74.56520044,39.34503526,301 4TH ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3101_25,-74.9490925,39.496852,305 4TH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3101_26,-74.4420298,39.35735064,309 4TH ST,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_3101_27,-74.36598389,39.41414657,355 4TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3101_28,-74.944206,39.499511,375 4TH ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3101_29,-74.640296,39.4224035,401 4TH ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3101_3,-74.618016,39.6011885,104 N LIBERTY ST,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_3101_30,-74.91234248,39.49950716,405 4TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3101_31,-74.3859715,39.392218,409 4TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3101_32,-74.47482703,39.4865014,415 4TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3101_33,-74.593198,39.3277295,417 4TH ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3101_34,-74.49513076,39.38094366,419 4TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3101_35,-74.65159885,39.37134831,421 4TH ST,HAMMONTON TOWN,17,1971,1,RES3A,3001 -0113_3101_36.01,-74.5387715,39.3826015,437 4TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3101_37,-74.49146104,39.52703118,600 FAIRVIEW AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3101_38,-74.811111,39.643957,604 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,COM1,3004 -0113_3101_39,-74.52993813,39.39968781,608 FAIRVIEW AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3101_4,-74.93302621,39.48936782,100 N LIBERTY ST,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_3101_40,-74.50139329,39.43380992,620 FAIRVIEW AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3101_41,-74.54835607,39.38491925,634 FAIRVIEW AVE,HAMMONTON TOWN,17,1915,1,RES1,3001 -0113_3101_41.01,-74.64256616,39.51924702,628 FAIRVIEW AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3101_42,-74.63535117,39.34391551,644 FAIRVIEW AVE,HAMMONTON TOWN,17,1881,1,RES1,3002 -0113_3101_43,-74.50979805,39.33665185,650 FAIRVIEW AVE,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3101_5,-74.47421061,39.48217445,98 N LIBERTY ST,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_3101_6,-74.5266485,39.489977,90 N LIBERTY ST,HAMMONTON TOWN,17,1985,2,RES1,3001 -0113_3101_7,-74.46624954,39.49304096,86 N LIBERTY ST,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_3101_8,-74.693632,39.4482205,80 N LIBERTY ST,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_3101_9,-74.93893254,39.52594268,74 N LIBERTY ST,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_3102_1,-74.60735986,39.61899042,678 E PLEASANT ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3102_11,-74.4514733,39.50142961,631 BELLEVUE AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3102_12,-74.51099841,39.44070515,619 BELLEVUE AVE,HAMMONTON TOWN,18,1975,1,RES1,3001 -0113_3102_13,-74.509108,39.4007155,611 BELLEVUE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3102_14,-74.4642405,39.3471365,603 BELLEVUE AVE,HAMMONTON TOWN,17,1902,1,RES1,3001 -0113_3102_15,-74.52117984,39.31715911,601 BELLEVUE AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3102_16,-74.749057,39.4473805,25 4TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3102_17,-74.500406,39.4200415,27 4TH ST,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_3102_18,-74.55595454,39.40547732,31 4TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3102_19,-74.56955147,39.36572186,35 4TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3102_2,-74.378908,39.3978255,40 N LIBERTY ST,HAMMONTON TOWN,17,1973,1,RES1,3002 -0113_3102_20,-74.52115036,39.44776996,45 4TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3102_21,-74.63021172,39.43152573,55 4TH ST,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_3102_21.01,-74.65522343,39.5517688,610 E PLEASANT ST,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_3102_22,-74.6156075,39.3231915,57 4TH ST,HAMMONTON TOWN,17,1900,1,RES1,3004 -0113_3102_23,-74.596832,39.3139025,65 4TH ST,HAMMONTON TOWN,17,1940,1,RES1,3004 -0113_3102_24,-74.5278475,39.382578,620 E PLEASANT ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3102_25,-74.52228241,39.42086033,630 E PLEASANT ST,HAMMONTON TOWN,17,2001,1,COM4,3004 -0113_3102_26,-74.501853,39.3376895,640 E PLEASANT ST,HAMMONTON TOWN,17,1968,2,RES1,3001 -0113_3102_27,-74.523178,39.38586,650 E PLEASANT ST,HAMMONTON TOWN,17,1978,1,RES3A,3001 -0113_3102_28,-74.52643051,39.39122193,660 E PLEASANT ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3102_29,-74.461924,39.350021,670 E PLEASANT ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3102_3,-74.50342373,39.4337816,30 N LIBERTY ST,HAMMONTON TOWN,17,1958,1,EDU1,3004 -0113_3102_4,-74.792969,39.650669,20 N LIBERTY ST,HAMMONTON TOWN,17,1970,1,RES3A,3001 -0113_3102_5,-74.50271533,39.3374617,673 BELLEVUE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3102_6,-74.36703803,39.41728354,665 BELLEVUE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3102_7,-74.58268488,39.42050833,655 BELLEVUE AVE,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_3102_8,-74.52354421,39.41815723,651 BELLEVUE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3102_9,-74.60445996,39.35689481,643 BELLEVUE AVE,HAMMONTON TOWN,17,1910,1,COM1,3004 -0113_3103_1,-74.6062485,39.421937,576 FAIRVIEW AVE,HAMMONTON TOWN,18,2004,1,COM4,3004 -0113_3103_10,-74.61236229,39.31216984,543 PRATT ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3103_11,-74.55772755,39.39611516,529 PRATT ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3103_12,-74.5931635,39.311574,517 PRATT ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3103_13,-74.61385434,39.38370233,515 PRATT ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3103_14,-74.824352,39.4890895,513 PRATT ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3103_15,-74.37274159,39.40090866,505 PRATT ST AT PACKARD,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3103_16,-74.50083534,39.45950252,407 N PACKARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3103_17,-74.530124,39.4626235,419 N PACKARD ST,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_3103_18,-74.61269572,39.31937685,425 N PACKARD ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3103_19,-74.7351705,39.4492915,427 N PACKARD ST,HAMMONTON TOWN,17,1953,1,RES1,3004 -0113_3103_2,-74.39728023,39.38712968,438 4TH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3103_20,-74.50905034,39.43901196,437 N PACKARD ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3103_21,-74.63628054,39.36966939,447 N PACKARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3103_22,-74.951586,39.518885,449 N PACKARD ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3103_23,-74.55693948,39.39713016,514 FAIRVIEW AVE,HAMMONTON TOWN,17,1900,3,GOV1,3004 -0113_3103_24,-74.41503,39.368486,500 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3103_25,-74.50363485,39.42447296,504 FAIRVIEW AVE,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_3103_26,-74.458096,39.4607175,520 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3103_26.01,-74.51732023,39.39987917,535 PRATT ST,HAMMONTON TOWN,17,1986,1,COM1,3004 -0113_3103_27,-74.798278,39.6434105,528 FAIRVIEW AVE,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3103_28,-74.51908733,39.40299349,532 FAIRVIEW AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3103_29,-74.67858114,39.44570197,540 FAIRVIEW AVE,HAMMONTON TOWN,17,1996,1,GOV1,3004 -0113_3103_3,-74.60256231,39.32742594,430 4TH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3103_30,-74.50567506,39.40770857,552 FAIRVIEW AVE,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_3103_31,-74.91444637,39.49478887,564 FAIRVIEW AVE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3103_4,-74.7386768,39.64186469,422 4TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3103_5,-74.652189,39.3976085,420 4TH ST,HAMMONTON TOWN,17,1972,1,GOV1,3004 -0113_3103_6,-74.7866365,39.6348095,416 4TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3103_7,-74.3634465,39.4176825,412 4TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3103_8,-74.80581266,39.36918223,555 PRATT ST,HAMMONTON TOWN,17,1960,1,GOV1,3004 -0113_3103_9,-74.6319285,39.389964,551 PRATT ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3104_1,-74.592995,39.349677,322 4TH ST,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_3104_10,-74.809084,39.640119,515 FRENCH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3104_11,-74.59358534,39.38237499,301 N PACKARD ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_3104_12,-74.500099,39.4156345,331 N PACKARD ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3104_13,-74.60418467,39.39232345,359 N PACKARD ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3104_14,-74.70414329,39.35306793,518 PRATT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3104_15,-74.59937237,39.43641519,524 PRATT ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_3104_16,-74.58170491,39.3723397,528 PRATT ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3104_17,-74.46604882,39.35823573,530 PRATT ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3104_18,-74.83984747,39.4441622,550 PRATT ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3104_2,-74.572968,39.513961,316 4TH ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3104_3,-74.4897885,39.3377815,308 4TH ST,HAMMONTON TOWN,17,1929,1,RES1,3001 -0113_3104_4,-74.94685808,39.51762931,551 FRENCH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3104_5,-74.5234995,39.3949465,545 FRENCH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3104_6,-74.84016,39.4813135,539 FRENCH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3104_7,-74.54324391,39.39130072,533 FRENCH ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3104_8,-74.60782999,39.37366517,527 FRENCH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3104_9,-74.6291635,39.4374705,521 FRENCH ST,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_3105_1,-74.75651026,39.43210211,224 4TH ST,HAMMONTON TOWN,18,1996,1,RES1,3001 -0113_3105_10,-74.508047,39.43476199,517 E PLEASANT ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3105_11,-74.60730378,39.31728805,105 N PACKARD ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3105_12,-74.5335585,39.3063765,107 N PACKARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3105_13,-74.52398955,39.44358843,109 N PACKARD ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_3105_14,-74.57010781,39.35652347,113 N PACKARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3105_15,-74.4927755,39.3343315,117 N PACKARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3105_17,-74.6004645,39.51145567,514 FRENCH ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3105_18,-74.80287616,39.63530592,516 FRENCH ST,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_3105_19,-74.491166,39.337296,526 FRENCH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3105_2,-74.968685,39.505091,216 4TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3105_20,-74.88060879,39.48380777,534 FRENCH ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3105_21,-74.7591285,39.430601,540 FRENCH ST,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_3105_22,-74.74857562,39.45176969,546 FRENCH ST,HAMMONTON TOWN,17,1963,2,GOV1,3004 -0113_3105_23,-74.5511435,39.3746785,552 FRENCH ST,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_3105_3,-74.662401,39.3608015,210 4TH ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3105_4,-74.5046805,39.4098655,202 4TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3105_5,-74.5260455,39.385675,555 E PLEASANT ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3105_6,-74.44805527,39.49652493,545 E PLEASANT ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3105_7,-74.79572055,39.63190878,539 E PLEASANT ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3105_8,-74.51881034,39.40026043,525 E PLEASANT ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3105_9,-74.63543503,39.30805166,521 E PLEASANT ST,HAMMONTON TOWN,17,1962,1,GOV1,3004 -0113_3106_1,-74.638383,39.5220995,64 4TH ST,HAMMONTON TOWN,17,1940,2,RES1,3001 -0113_3106_10,-74.46156208,39.47068371,527 BELLEVUE AVE,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3106_11,-74.51412085,39.32791148,517 BELLEVUE AVE,HAMMONTON TOWN,18,1890,1,RES1,3001 -0113_3106_12,-74.77028885,39.6626036,509 BELLEVUE AVE,HAMMONTON TOWN,17,1902,1,RES1,3001 -0113_3106_13,-74.7556435,39.4328025,503 BELLEVUE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3106_14,-74.5985985,39.4344665,19 N PACKARD ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_3106_15,-74.80763488,39.4627322,25 N PACKARD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3106_16,-74.6865035,39.5722295,37 N PACKARD ST,HAMMONTON TOWN,17,1920,1,RES1,3002 -0113_3106_17,-74.607019,39.501676,41 N PACKARD ST,HAMMONTON TOWN,17,1940,1,COM1,3004 -0113_3106_18,-74.57431173,39.3834773,43 N PACKARD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3106_19,-74.37053725,39.40647867,45 N PACKARD ST,HAMMONTON TOWN,17,1945,1,AGR1,3001 -0113_3106_2,-74.48618973,39.45221662,54 4TH ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3106_20,-74.812632,39.62846999,49 N PACKARD ST,HAMMONTON TOWN,17,1940,1,AGR1,3001 -0113_3106_21,-74.3634805,39.4179525,55 N PACKARD ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3106_23,-74.7889303,39.44286791,518 E PLEASANT ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3106_24,-74.561576,39.4113165,522 E PLEASANT ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3106_25,-74.60684667,39.32754201,1 GIRARD LN,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3106_26,-74.43423727,39.36211964,582 E PLEASANT ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3106_26.01,-74.49768027,39.32778516,2 GIRARD LN,HAMMONTON TOWN,17,1994,1,AGR1,3001 -0113_3106_27,-74.40175801,39.38828133,544 E PLEASANT ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_3106_3,-74.5112935,39.3328465,48 4TH ST,HAMMONTON TOWN,17,1945,1,RES3A,3001 -0113_3106_4,-74.5611465,39.41603423,42 4TH ST,HAMMONTON TOWN,17,1861,1,RES1,3001 -0113_3106_5,-74.63818615,39.39983407,32 4TH ST,HAMMONTON TOWN,17,1958,1,COM1,3004 -0113_3106_7,-74.66712634,39.46229897,553 BELLEVUE AVE,HAMMONTON TOWN,18,1925,2,RES1,3001 -0113_3106_8,-74.6385015,39.4289305,543 BELLEVUE AVE,HAMMONTON TOWN,17,1947,1,RES1,3001 -0113_3106_9,-74.5909025,39.350703,531 BELLEVUE AVE,HAMMONTON TOWN,18,1910,1,GOV1,3004 -0113_3201_1,-74.65030705,39.53335429,300 BELLEVUE AVE,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_3201_12,-74.60686505,39.51692065,11 S 3RD ST,HAMMONTON TOWN,,1956,1,RES1,3001 -0113_3201_14,-74.5018884,39.46525922,5 S 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3201_2,-74.503194,39.411689,310 BELLEVUE AVE,HAMMONTON TOWN,,1970,1,RES1,3001 -0113_3201_3,-74.701504,39.6334725,326 BELLEVUE AVE,HAMMONTON TOWN,,1968,1,RES1,3001 -0113_3201_4,-74.48212782,39.43987984,333 VINE ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3201_5,-74.5003185,39.435239,329 VINE ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3201_6,-74.576175,39.5120295,325 VINE ST,HAMMONTON TOWN,,1925,2,RES1,3001 -0113_3201_9,-74.6208065,39.3696045,19 S 3RD ST,HAMMONTON TOWN,,1950,1,RES1,3001 -0113_3202_1,-74.48431994,39.43387531,398 BELLEVUE AVE,HAMMONTON TOWN,,1935,1,RES1,3001 -0113_3202_10,-74.47423768,39.44427942,450 BELLEVUE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3202_11,-74.6097945,39.342581,458 BELLEVUE AVE,HAMMONTON TOWN,19,1890,1,RES1,3001 -0113_3202_12,-74.75256484,39.45260154,22 S PACKARD ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3202_13,-74.52941667,39.39948658,50 S PACKARD ST,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_3202_14,-74.49264035,39.3388862,102 S PACKARD ST,HAMMONTON TOWN,17,1946,1,RES1,3004 -0113_3202_15,-74.4551095,39.3529755,106 S PACKARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3202_16,-74.51302387,39.45639404,112 S PACKARD ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3202_17,-74.50383299,39.32541605,116 S PACKARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3202_18,-74.49632642,39.52799999,120 S PACKARD ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3202_19,-74.49068804,39.33389164,443 PEACH ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3202_2,-74.52711884,39.38315892,400 BELLEVUE AVE,HAMMONTON TOWN,17,1900,2,GOV1,3004 -0113_3202_20,-74.54069328,39.5249419,441 PEACH ST,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_3202_21,-74.3618265,39.4105295,439 PEACH ST,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_3202_22,-74.812217,39.6288075,433 PEACH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3202_23,-74.55164273,39.4020133,431 PEACH ST,HAMMONTON TOWN,17,1890,1,GOV1,3004 -0113_3202_24,-74.4480948,39.37516441,429 PEACH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3202_25,-74.60861497,39.39229029,425 PEACH ST,HAMMONTON TOWN,,1954,1,RES1,3001 -0113_3202_26,-74.673394,39.48055086,101 CENTRAL AVE,HAMMONTON TOWN,,1925,1,GOV1,3004 -0113_3202_3,-74.51806134,39.38741374,404 BELLEVUE AVE,HAMMONTON TOWN,17,1884,1,RES1,3001 -0113_3202_4,-74.5691995,39.411972,408 BELLEVUE AVE,HAMMONTON TOWN,17,1860,1,GOV1,3004 -0113_3202_5,-74.81572874,39.65522008,412 BELLEVUE AVE,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_3202_6,-74.63310322,39.43405269,416 BELLEVUE AVE,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_3202_7,-74.57565157,39.35715889,420 BELLEVUE AVE,HAMMONTON TOWN,18,1940,1,RES1,3001 -0113_3202_8,-74.48910916,39.33627101,430 BELLEVUE AVE,HAMMONTON TOWN,17,1864,1,RES1,3001 -0113_3202_9,-74.51288451,39.53416633,442 BELLEVUE AVE,HAMMONTON TOWN,18,1890,1,RES1,3001 -0113_3203_1,-74.53602156,39.31386329,500 BELLEVUE AVE,HAMMONTON TOWN,18,1947,2,RES1,3001 -0113_3203_10,-74.642679,39.5315245,554 BELLEVUE AVE,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_3203_11,-74.57407666,39.42634807,560 BELLEVUE AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3203_12,-74.4387925,39.365303,20 VALLEY AVE,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3203_13,-74.54346,39.3975125,102 VALLEY AVE,HAMMONTON TOWN,17,1933,1,RES1,3001 -0113_3203_13.01,-74.66844397,39.35977382,80 VALLEY AVE,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_3203_15,-74.52378064,39.38481132,106 VALLEY AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3203_16,-74.853403,39.4881135,110 VALLEY AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3203_17,-74.56667349,39.35658234,116 VALLEY AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3203_18,-74.75487492,39.45275397,120 VALLEY AVE,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_3203_19,-74.60720476,39.45954059,563 PEACH ST,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_3203_2,-74.451336,39.489127,508 BELLEVUE AVE,HAMMONTON TOWN,18,1934,1,RES1,3001 -0113_3203_20,-74.622264,39.3655815,557 PEACH ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3203_21,-74.47577842,39.4476237,553 PEACH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3203_22,-74.49614,39.5288885,545 PEACH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3203_23,-74.701054,39.637778,535 PEACH ST,HAMMONTON TOWN,17,1951,1,GOV1,3004 -0113_3203_24,-74.6038235,39.4110185,525 PEACH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3203_25,-74.6280065,39.440042,515 PEACH ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3203_26,-74.5005336,39.33630433,115 S PACKARD ST,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_3203_27,-74.59253502,39.32025266,109 S PACKARD ST,HAMMONTON TOWN,17,1955,2,RES1,3001 -0113_3203_28,-74.55606,39.399562,101 S PACKARD ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3203_29,-74.65711883,39.34609299,97 S PACKARD ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_3203_3,-74.795088,39.638987,516 BELLEVUE AVE,HAMMONTON TOWN,17,1910,3,RES1,3001 -0113_3203_30,-74.789178,39.647478,95 S PACKARD ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3203_4,-74.58980686,39.34792178,522 BELLEVUE AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3203_5,-74.57102062,39.47469684,526 BELLEVUE AVE,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_3203_6,-74.7647864,39.45284791,530 BELLEVUE AVE,HAMMONTON TOWN,18,1920,1,GOV1,3004 -0113_3203_7,-74.37223208,39.41061327,542 BELLEVUE AVE,HAMMONTON TOWN,17,1866,3,RES1,3001 -0113_3203_8,-74.63530319,39.38426091,550 BELLEVUE AVE,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_3203_9,-74.62257836,39.38397678,552 BELLEVUE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3204_1,-74.64808334,39.53027334,CENTRAL AVE & 3RD ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_3205_1,-74.5790635,39.35022343,300 PEACH ST,HAMMONTON TOWN,,1870,1,RES1,3001 -0113_3205_2,-74.60167858,39.32991665,206 CENTRAL AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3205_3,-74.6344235,39.4221295,215 S 3RD ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3205_4,-74.48603805,39.46569433,313 GRAPE ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3205_5,-74.608698,39.317668,222 CENTRAL AVE,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_3206_1,-74.81403282,39.55975455,205 CENTRAL AVE,HAMMONTON TOWN,,1950,1,RES1,3001 -0113_3206_10,-74.70603518,39.58433514,428 PEACH ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_3206_11,-74.362755,39.4152345,430 PEACH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3206_12,-74.75794145,39.43330677,432 PEACH ST,HAMMONTON TOWN,17,1929,1,RES1,3001 -0113_3206_13,-74.6486655,39.526342,434 PEACH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3206_14,-74.57214815,39.47889765,436 PEACH ST,HAMMONTON TOWN,17,1941,1,RES1,3001 -0113_3206_15,-74.80196639,39.6348111,446 PEACH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3206_16,-74.51549709,39.38743465,454 PEACH ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3206_16.01,-74.48046148,39.33934033,448 PEACH ST,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_3206_17,-74.6861585,39.3570835,449 GRAPE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3206_18,-74.52530234,39.39317986,437 GRAPE ST,HAMMONTON TOWN,17,1947,1,RES1,3001 -0113_3206_19,-74.5162795,39.473702,435 GRAPE ST,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3206_2,-74.52532684,39.3947705,390 PEACH ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3206_20,-74.82658278,39.38594143,431 GRAPE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3206_21,-74.93888501,39.52610017,423 GRAPE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3206_22,-74.5334297,39.45101425,415 GRAPE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3206_23,-74.6013977,39.39907854,405 GRAPE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3206_24,-74.58957321,39.35032104,401 GRAPE ST,HAMMONTON TOWN,17,1908,1,RES1,3001 -0113_3206_25,-74.550486,39.465945,347 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3206_26,-74.49395167,39.33165097,339 GRAPE ST,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_3206_27,-74.515758,39.3277975,227 CENTRAL AVE,HAMMONTON TOWN,18,1910,1,RES1,3001 -0113_3206_28,-74.80537564,39.63748855,215 CENTRAL AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3206_4,-74.52637448,39.38242017,400 PEACH ST,HAMMONTON TOWN,17,1914,1,RES1,3001 -0113_3206_5,-74.49458399,39.44567223,408 PEACH ST,HAMMONTON TOWN,17,1910,1,GOV1,3004 -0113_3206_6,-74.78106729,39.67925802,414 PEACH ST,HAMMONTON TOWN,17,1935,1,GOV1,3004 -0113_3206_7,-74.56867609,39.36457433,418 PEACH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3206_8,-74.5887355,39.3313995,420 PEACH ST,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_3206_9,-74.58551673,39.42648561,422 PEACH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3207_1,-74.51805381,39.44467054,203 S PACKARD ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_3207_10,-74.751785,39.4537105,552 PEACH ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_3207_11,-74.6141205,39.3250785,556 PEACH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3207_12,-74.50979506,39.43692174,204 VALLEY AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3207_13,-74.810872,39.629802,200 VALLEY AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3207_14,-74.73131282,39.45483038,561 GRAPE ST,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_3207_15,-74.48588468,39.51865684,559 GRAPE ST,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3207_16,-74.60844735,39.32748064,557 GRAPE ST,HAMMONTON TOWN,17,1942,1,RES1,3001 -0113_3207_17,-74.51923446,39.38870874,555 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3207_18,-74.61324449,39.32071761,551 GRAPE ST,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_3207_19,-74.46754617,39.34646849,547 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3207_2,-74.46092478,39.4629012,508 PEACH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3207_20,-74.62755902,39.40583115,543 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3207_21,-74.59601117,39.36388823,537 GRAPE ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3207_22,-74.48533645,39.46143445,531 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3207_23,-74.48357197,39.34418432,525 GRAPE ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3207_24,-74.7029938,39.58421802,519 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3207_25,-74.837784,39.4102855,517 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3207_26,-74.71513,39.4338995,515 GRAPE ST,HAMMONTON TOWN,17,1910,2,GOV1,3004 -0113_3207_27,-74.5386995,39.3859525,513 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3207_28,-74.48926344,39.49679576,509 GRAPE ST,HAMMONTON TOWN,17,2015,1,GOV1,3004 -0113_3207_29,-74.72619399,39.4550282,503 GRAPE ST,HAMMONTON TOWN,17,1928,1,IND2,3004 -0113_3207_3,-74.5924435,39.3263085,512 PEACH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3207_4,-74.53059414,39.38956252,516 PEACH ST,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_3207_5,-74.42942065,39.37235678,520 PEACH ST,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_3207_6,-74.70020197,39.57812391,530 PEACH ST,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_3207_7,-74.61764892,39.45421318,540 PEACH ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3207_8,-74.57415382,39.34781898,546 PEACH ST,HAMMONTON TOWN,17,1960,1,IND1,3002 -0113_3301_1,-74.79666567,39.63358728,305 CENTRAL AVE,HAMMONTON TOWN,17,1906,1,GOV1,3004 -0113_3301_10,-74.59420501,39.33379284,434 GRAPE ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3301_11,-74.57051104,39.42748735,436 GRAPE ST,HAMMONTON TOWN,17,1920,1,GOV1,3004 -0113_3301_12,-74.5228755,39.3902145,442 GRAPE ST,HAMMONTON TOWN,17,1915,1,RES1,3001 -0113_3301_13,-74.9446955,39.4909615,452 GRAPE ST,HAMMONTON TOWN,17,1940,1,GOV1,3004 -0113_3301_14,-74.55297557,39.39878717,504 GRAPE ST,HAMMONTON TOWN,17,1900,3,RES1,3001 -0113_3301_14.01,-74.84491291,39.55977589,508 GRAPE ST,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_3301_15,-74.6156075,39.3238475,512 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3301_16,-74.53892651,39.38406683,520 GRAPE ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3301_17,-74.55587182,39.50865295,524 GRAPE ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3301_18,-74.72716253,39.45140214,526 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3301_19,-74.5031405,39.3382475,532 GRAPE ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3301_20,-74.4819885,39.3513145,542 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3301_22,-74.6003555,39.3318145,550 GRAPE ST,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_3301_23,-74.4964175,39.521497,556 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3301_24,-74.629037,39.363632,560 GRAPE ST,HAMMONTON TOWN,17,1931,1,RES1,3001 -0113_3301_25,-74.49153258,39.44457227,572 GRAPE ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3301_27,-74.7080225,39.6392635,320 VALLEY AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_3301_28,-74.51249339,39.46240002,322 VALLEY AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3301_29,-74.38013073,39.40185596,330 VALLEY AVE,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_3301_3,-74.50355745,39.32950915,352 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3301_30,-74.6529615,39.523749,334 VALLEY AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3301_31,-74.45892715,39.35146824,344 VALLEY AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3301_32,-74.5737725,39.4101145,352 VALLEY AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3301_33,-74.645256,39.373457,360 VALLEY AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3301_34,-74.5282885,39.492106,384 VALLEY AVE,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_3301_35,-74.501831,39.4125665,392 VALLEY AVE,HAMMONTON TOWN,17,1908,1,RES1,3001 -0113_3301_36,-74.5612345,39.4121045,396 VALLEY AVE,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3301_37,-74.7568105,39.3514655,400 VALLEY AVE,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3301_38,-74.8081822,39.62879806,408 VALLEY AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3301_39,-74.79041149,39.61601069,420 VALLEY AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3301_4,-74.5909985,39.380499,400 GRAPE ST,HAMMONTON TOWN,17,1908,1,RES1,3001 -0113_3301_40,-74.485074,39.339229,55 BROADWAY,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_3301_41,-74.490887,39.469422,599 GREENWOOD DR,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3301_42,-74.5974004,39.3660185,591 GREENWOOD DR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3301_43,-74.807298,39.62145833,585 GREENWOOD DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_3301_44,-74.60578355,39.32246416,583 GREENWOOD DR,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3301_45,-74.4948945,39.3372115,575 GREENWOOD DR,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3301_46,-74.57695723,39.34405322,565 GREENWOOD DR,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3301_47,-74.748308,39.452198,559 GREENWOOD DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3301_48,-74.62845259,39.46447942,551 GREENWOOD DR,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3301_49,-74.95191492,39.51880583,545 GREENWOOD DR,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_3301_5,-74.548746,39.378407,402 GRAPE ST,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_3301_50,-74.51675519,39.41053656,539 GREENWOOD DR,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3301_51,-74.4684445,39.4929695,535 GREENWOOD DR,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3301_52,-74.62918799,39.41440754,521 GREENWOOD DR,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3301_53,-74.64895048,39.45785122,530 GREENWOOD DR,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3301_54,-74.80113854,39.63397534,540 GREENWOOD DR,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3301_55,-74.36672536,39.40671084,546 GREENWOOD DR,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_3301_57,-74.7141105,39.4647695,35 ALLEN LN,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3301_58,-74.65105972,39.39833261,25 ALLEN LN,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_3301_59,-74.68026571,39.63674738,567 CENTRAL AVE,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_3301_6,-74.62274913,39.51329444,408 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3301_60,-74.35492,39.4142205,565 CENTRAL AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3301_61,-74.548552,39.378746,563 CENTRAL AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3301_63,-74.67511865,39.35770735,549 CENTRAL AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3301_64,-74.4998815,39.336436,543 CENTRAL AVE,HAMMONTON TOWN,17,1860,1,GOV1,3004 -0113_3301_65,-74.37290513,39.41600124,537 CENTRAL AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3301_66,-74.83115922,39.39426609,527 CENTRAL AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3301_68,-74.441185,39.368437,515 CENTRAL AVE,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3301_69,-74.55278865,39.37425397,503 CENTRAL AVE,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_3301_7,-74.4980375,39.3364485,410 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3301_71,-74.49241378,39.51990611,425 CENTRAL AVE,HAMMONTON TOWN,17,1881,1,RES1,3004 -0113_3301_72,-74.8849355,39.463221,401 CENTRAL AVE,HAMMONTON TOWN,18,1996,1,RES1,3001 -0113_3301_73,-74.57715168,39.35569285,375 CENTRAL AVE,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3301_74,-74.89029001,39.55643116,349 CENTRAL AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3301_75,-74.6378075,39.399293,345 CENTRAL AVE,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_3301_76,-74.6393606,39.38360982,339 CENTRAL AVE,HAMMONTON TOWN,17,1890,1,RES1,3001 -0113_3301_77,-74.65932751,39.51073361,325 CENTRAL AVE,HAMMONTON TOWN,18,1901,1,RES1,3001 -0113_3301_78,-74.5367615,39.379356,319 CENTRAL AVE,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_3301_79,-74.81202766,39.63562153,313 CENTRAL AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3301_8,-74.46440812,39.34469455,420 GRAPE ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3301_80,-74.4934996,39.33252166,309 CENTRAL AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_3301_9,-74.3704755,39.417361,426 GRAPE ST,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_3302_1,-74.449114,39.497717,585 CENTRAL AVE,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_3302_10,-74.88361285,39.59449024,593 CENTRAL AVE,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_3302_2,-74.523917,39.4289515,22 ALLEN LN,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3302_3,-74.4623685,39.3501065,36 ALLEN LN,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3302_4,-74.571903,39.36557,590 GREENWOOD DR,HAMMONTON TOWN,17,1968,1,RES2,3005 -0113_3302_5,-74.639197,39.380782,25 BROADWAY,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3302_6,-74.49376516,39.34330748,21 BROADWAY,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_3302_7,-74.8035018,39.6456204,15 BROADWAY,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_3302_8,-74.59760053,39.31970632,599 CENTRAL AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3302_9,-74.88392116,39.46965246,597 CENTRAL AVE,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3401_1,-74.39077748,39.38924233,674 BELLEVUE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3401_10,-74.94678984,39.52430289,635 PEACH ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3401_11,-74.51755943,39.39436563,633 PEACH ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3401_12,-74.49291,39.432447,625 PEACH ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3401_13,-74.9018,39.5468235,611 PEACH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3401_14,-74.44800596,39.3719317,609 PEACH ST,HAMMONTON TOWN,17,1960,3,GOV1,3004 -0113_3401_15,-74.48592854,39.35035918,605 PEACH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3401_16,-74.73630071,39.46085302,115 VALLEY AVE,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3401_17,-74.9258285,39.5111675,111 VALLEY AVE,HAMMONTON TOWN,17,1938,2,RES1,3001 -0113_3401_18,-74.59546939,39.42212053,105 VALLEY AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3401_19,-74.79109786,39.41793134,27 VALLEY AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3401_2,-74.491974,39.336264,90 S LIBERTY ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3401_21,-74.50590733,39.3390885,600 BELLEVUE AVE,HAMMONTON TOWN,17,1943,1,RES1,3001 -0113_3401_22,-74.63010602,39.52205174,614 BELLEVUE AVE,HAMMONTON TOWN,17,1858,2,GOV1,3004 -0113_3401_23,-74.57752033,39.43192163,630 BELLEVUE AVE,HAMMONTON TOWN,18,1980,2,RES1,3001 -0113_3401_24,-74.41854683,39.36844701,640 BELLEVUE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3401_25,-74.71214226,39.46715289,642 BELLEVUE AVE,HAMMONTON TOWN,,1937,1,RES1,3001 -0113_3401_26,-74.7540115,39.447336,646 BELLEVUE AVE,HAMMONTON TOWN,17,1880,1,RES1,3001 -0113_3401_27,-74.914484,39.473359,656 BELLEVUE AVE,HAMMONTON TOWN,17,1928,2,RES1,3001 -0113_3401_28,-74.48013483,39.338878,660 BELLEVUE AVE,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3401_29,-74.97047182,39.51728104,670 BELLEVUE AVE,HAMMONTON TOWN,17,1942,1,RES1,3001 -0113_3401_3,-74.503756,39.418478,100 S LIBERTY ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3401_30,-74.5864365,39.31973,672 BELLEVUE AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3401_4,-74.535405,39.3044225,120 S LIBERTY ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3401_5,-74.489974,39.46744474,126-128 S LIBERTY ST,HAMMONTON TOWN,17,1920,1,RES1,3004 -0113_3401_6,-74.746407,39.4469885,130 S LIBERTY ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3401_7,-74.577107,39.432074,647 PEACH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3401_8,-74.50918989,39.32960185,643 PEACH ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3401_9,-74.59194483,39.31643848,639 PEACH ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3402_1,-74.92092126,39.48905944,200 S LIBERTY ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3402_10,-74.54691887,39.40223127,639 GRAPE ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3402_11,-74.5952195,39.3802035,633 GRAPE ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3402_12,-74.3675892,39.40513077,627 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3402_13,-74.69391217,39.585838,621 GRAPE ST,HAMMONTON TOWN,17,1947,1,RES1,3001 -0113_3402_14,-74.508065,39.335069,615 GRAPE ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3402_15,-74.49640333,39.33360353,221 VALLEY AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3402_16,-74.46141356,39.45393213,211 VALLEY AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3402_17,-74.5997935,39.32060183,205 VALLEY AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3402_18,-74.92825799,39.50775547,201 VALLEY AVE,HAMMONTON TOWN,17,1900,2,GOV1,3004 -0113_3402_19,-74.572001,39.427697,610 PEACH ST,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_3402_2,-74.56749752,39.34980424,216 S LIBERTY ST,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_3402_20,-74.4794645,39.348976,612 PEACH ST,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_3402_21,-74.48310879,39.47875713,618 PEACH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3402_22,-74.78527913,39.64990804,624 PEACH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3402_23,-74.51176146,39.4552886,630 PEACH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3402_24,-74.434819,39.376718,650 PEACH ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3402_25,-74.506928,39.336821,654 PEACH ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3402_26,-74.6855255,39.651937,656 PEACH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3402_27,-74.5025255,39.3381255,662 PEACH ST,HAMMONTON TOWN,17,1957,1,GOV1,3004 -0113_3402_3,-74.47334831,39.44594841,679 GRAPE ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3402_4,-74.79728964,39.64084435,669 GRAPE ST,HAMMONTON TOWN,17,1947,1,COM3,3004 -0113_3402_5,-74.55870672,39.47451203,667 GRAPE ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_3402_6,-74.96778887,39.5135971,663 GRAPE ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3402_7,-74.71284606,39.57979389,661 GRAPE ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3402_8,-74.38915235,39.39035144,655 GRAPE ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3402_9,-74.550943,39.368023,645 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3403_1,-74.5357641,39.37353997,680 GRAPE ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3403_10,-74.62026434,39.53062501,356 S LIBERTY ST,HAMMONTON TOWN,17,1952,2,RES1,3001 -0113_3403_11,-74.538449,39.373393,360 S LIBERTY ST,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_3403_12,-74.36998417,39.41723456,370 S LIBERTY ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3403_13,-74.4407545,39.3698375,394 S LIBERTY ST,HAMMONTON TOWN,17,1955,1,GOV1,3004 -0113_3403_14,-74.51959282,39.38856292,400 S LIBERTY ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3403_15,-74.55557825,39.38652974,406 S LIBERTY ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3403_17,-74.6364818,39.34397769,418 S LIBERTY ST,HAMMONTON TOWN,,1962,1,RES1,3001 -0113_3403_18,-74.44527872,39.35557334,157 BROADWAY,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3403_19,-74.49032758,39.43875873,143 BROADWAY,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3403_2,-74.7241235,39.456421,302 S LIBERTY ST,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_3403_20,-74.54660816,39.38619593,139 BROADWAY,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3403_21,-74.372311,39.4071545,121 BROADWAY,HAMMONTON TOWN,17,1953,1,GOV1,3004 -0113_3403_22,-74.52354915,39.32185671,115 BROADWAY,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3403_23,-74.4139865,39.3712455,101 BROADWAY,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3403_24,-74.49857582,39.41236233,75 BROADWAY,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3403_25,-74.4927995,39.33562,71 BROADWAY,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3403_26,-74.61978206,39.43799055,437 VALLEY AVE,HAMMONTON TOWN,17,2011,1,RES1,3001 -0113_3403_27,-74.4967233,39.49984963,433 VALLEY AVE,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3403_28,-74.48127463,39.44053372,425 VALLEY AVE,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3403_29,-74.57966067,39.34160951,389 VALLEY AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3403_29.01,-74.48824766,39.33475866,3 CARA LANE,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_3403_29.02,-74.57644485,39.33513549,7 CARA LANE,HAMMONTON TOWN,17,2004,1,GOV1,3004 -0113_3403_29.03,-74.581339,39.3343485,11 CARA LANE,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_3403_29.04,-74.577702,39.3371745,15 CARA LANE,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_3403_29.05,-74.57779511,39.33974166,19 CARA LANE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_29.06,-74.575906,39.348998,23 CARA LANE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_29.07,-74.59315633,39.34548545,20 CARA LANE,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_3403_29.08,-74.56460563,39.3621012,18 CARA LANE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_29.09,-74.56430842,39.3632236,16 CARA LANE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_29.10,-74.57256182,39.36169814,14 CARA LANE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_3,-74.53511505,39.38082183,324 S LIBERTY ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3403_30,-74.49820732,39.32785054,383 VALLEY AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3403_31,-74.4861405,39.4346125,377 VALLEY AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3403_32,-74.52835227,39.39756347,371 VALLEY AVE,HAMMONTON TOWN,17,1925,2,RES1,3004 -0113_3403_33,-74.55425159,39.35635399,365 VALLEY AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3403_34,-74.83062955,39.48874171,359 VALLEY AVE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_34.01,-74.56475417,39.36126789,1 CARA LANE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3403_34.02,-74.58188772,39.34490064,27 CARA LANE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_34.03,-74.5824405,39.3441265,31 CARA LANE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_34.04,-74.59451061,39.34658834,32 CARA LANE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3403_34.05,-74.58669655,39.34996489,26 CARA LANE,HAMMONTON TOWN,17,2004,1,GOV1,3004 -0113_3403_35,-74.7232882,39.46263053,355 VALLEY AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3403_36,-74.43688107,39.3689742,351 VALLEY AVE,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3403_37,-74.483822,39.3413445,345 VALLEY AVE,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_3403_38,-74.59708406,39.37872798,341 VALLEY AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3403_39,-74.5232775,39.319036,335 VALLEY AVE,HAMMONTON TOWN,17,1907,1,RES1,3001 -0113_3403_4,-74.6376875,39.411886,330 S LIBERTY ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3403_40,-74.50909368,39.32164597,331 VALLEY AVE,HAMMONTON TOWN,17,1880,1,RES1,3001 -0113_3403_41,-74.591241,39.324041,325 VALLEY AVE,HAMMONTON TOWN,17,1910,4,GOV1,3004 -0113_3403_42,-74.430968,39.4925255,321 VALLEY AVE,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3403_43,-74.49943432,39.41536241,315 VALLEY AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3403_44,-74.6200234,39.46222089,305 VALLEY AVE,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_3403_45,-74.78615131,39.64927029,608 GRAPE ST,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3403_46,-74.48998,39.3504715,614 GRAPE ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3403_47,-74.6566805,39.6274845,620 GRAPE ST,HAMMONTON TOWN,17,1950,1,COM1,3004 -0113_3403_48,-74.4924255,39.335177,626 GRAPE ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3403_49,-74.49598063,39.49038529,632 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3403_5,-74.502744,39.327137,332 S LIBERTY ST,HAMMONTON TOWN,17,1928,2,RES1,3001 -0113_3403_50,-74.576258,39.357344,638 GRAPE ST,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3403_51,-74.75697951,39.65048333,644 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3403_52,-74.92898159,39.5084014,650 GRAPE ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3403_53,-74.486003,39.34655317,656 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3403_54,-74.51872135,39.38694968,662 GRAPE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3403_55,-74.79507201,39.64049167,668 GRAPE ST,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_3403_56,-74.48151325,39.35151934,672 GRAPE ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3403_6,-74.38618216,39.39512646,336 S LIBERTY ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3403_7,-74.60562869,39.32029961,338 S LIBERTY ST,HAMMONTON TOWN,17,1953,2,RES1,3001 -0113_3403_8,-74.74858406,39.63716849,344 S LIBERTY ST,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_3403_9,-74.610509,39.327536,348 S LIBERTY ST,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3501_1,-74.61180751,39.32194748,707 BELLEVUE AVE,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_3501_2,-74.48439199,39.34109633,5 N LIBERTY ST,HAMMONTON TOWN,17,1930,1,RES3A,3001 -0113_3501_23,-74.51426991,39.40221492,730 VIRGINIA AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3501_24,-74.60260874,39.41071272,738 VIRGINIA AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_3501_25,-74.73451162,39.44047316,742 VIRGINIA AVE,HAMMONTON TOWN,17,1967,1,COM4,3004 -0113_3501_26,-74.7828095,39.663506,746 VIRGINIA AVE,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3501_27,-74.51112162,39.34024014,750 VIRGINIA AVE,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3501_28,-74.76253168,39.64041355,754 VIRGINIA AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3501_29,-74.6715535,39.366694,760 VIRGINIA AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3501_3,-74.65130137,39.45629648,15 N LIBERTY ST,HAMMONTON TOWN,17,1960,1,IND1,3002 -0113_3501_30,-74.50612647,39.32732241,770 VIRGINIA AVE,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_3501_31,-74.4528372,39.37228753,774 VIRGINIA AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3501_32,-74.61952047,39.43579468,26 ELVINS AVE,HAMMONTON TOWN,17,1980,1,RES1,3004 -0113_3501_33,-74.52217781,39.38332594,24 ELVINS AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3501_34,-74.488348,39.4391005,20 ELVINS AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3501_35,-74.626174,39.4339155,799 BELLEVUE AVE,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_3501_36,-74.83299343,39.40788182,787 BELLEVUE AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3501_38.01,-74.63957515,39.51661514,781 BELLEVUE AVE,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_3501_38.02,-74.38801501,39.39345117,777 BELLEVUE AVE,HAMMONTON TOWN,17,1960,1,GOV1,3004 -0113_3501_39,-74.37527741,39.41285483,751 BELLEVUE AVE,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_3501_40,-74.78721495,39.63248757,747 BELLEVUE AVE,HAMMONTON TOWN,17,1863,1,RES1,3001 -0113_3501_41,-74.45393998,39.47892545,735 BELLEVUE AVE,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3501_42,-74.3971245,39.390447,733 BELLEVUE AVE,HAMMONTON TOWN,18,1900,1,RES1,3001 -0113_3501_43,-74.81799445,39.4978977,717 BELLEVUE AVE,HAMMONTON TOWN,17,1950,1,COM3,3004 -0113_3501_45,-74.81799492,39.39440733,711 BELLEVUE AVE,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_3501_47,-74.36562882,39.41023236,710 VIRGINIA AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3501_48,-74.78486421,39.66044927,712 VIRGINIA AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_3501_49,-74.921069,39.4965395,714 VIRGINIA AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_3501_50,-74.537932,39.4600335,716 VIRGINIA AVE,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3501_51,-74.81659,39.6424755,718 VIRGINIA AVE,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_3501_52,-74.60061123,39.32107836,720 VIRGINIA AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_3502_3,-74.45062742,39.49108022,10 N WHITE HORSE PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3503_1,-74.71223517,39.42119674,40 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3503_10,-74.634571,39.423206,2 SINDONI LN,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3503_2,-74.80312326,39.63949469,30 N WHITE HORSE PK,HAMMONTON TOWN,,1980,1,RES1,3001 -0113_3503_4,-74.60746636,39.31482306,91 LINDA AVE,HAMMONTON TOWN,17,1980,2,RES1,3001 -0113_3503_5,-74.5066675,39.495304,90 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3503_7,-74.60144121,39.30837247,118 N WHITE HORSE PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3503_8,-74.61683004,39.31990251,120 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_3504_10,-74.533912,39.306124,804 FAIRVIEW AVE,HAMMONTON TOWN,47,1920,2,RES1,3001 -0113_3504_11,-74.46282868,39.35912197,214 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3504_12,-74.59935755,39.37887093,200 N WHITE HORSE PK,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3504_13,-74.4513545,39.3535705,188 N WHITE HORSE PK,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3504_14,-74.691506,39.6320655,184 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3504_15,-74.617147,39.373567,182 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3504_16,-74.80170499,39.63220903,1 SINDONI LN,HAMMONTON TOWN,,2007,1,RES1,3001 -0113_3504_17.01,-74.38158741,39.41670488,186 N WHITE HORSE PK,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_3504_2,-74.588314,39.3203015,184 LINDA AVE,HAMMONTON TOWN,17,1965,1,COM3,3004 -0113_3504_3,-74.60298836,39.4085397,186 LINDA AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3504_4,-74.83080683,39.49087,768 FAIRVIEW AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3504_5,-74.49967983,39.32875301,770 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_3504_6,-74.6202444,39.43433264,784 FAIRVIEW AVE,HAMMONTON TOWN,17,1905,1,RES1,3001 -0113_3504_6.01,-74.5999275,39.31901,776 FAIRVIEW AVE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3504_7,-74.57101296,39.35744233,788 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,COM1,3004 -0113_3504_8,-74.3601865,39.41636533,794 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3504_9,-74.65808867,39.538192,800 FAIRVIEW AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3505_1,-74.628658,39.3548075,721 VIRGINIA AVE,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_3505_10,-74.53642037,39.47154711,736 FAIRVIEW AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3505_12,-74.58196818,39.33280888,775 VIRGINIA AVE,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_3505_13,-74.51376,39.3265935,771 VIRGINIA AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3505_14,-74.83004223,39.64675785,767 VIRGINIA AVE,HAMMONTON TOWN,17,1971,1,GOV1,3004 -0113_3505_15,-74.78346312,39.65539588,761 VIRGINIA AVE,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3505_16,-74.63562,39.3926695,755 VIRGINIA AVE,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3505_17,-74.514445,39.321296,743 VIRGINIA AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3505_18,-74.94237175,39.49631558,739 VIRGINIA AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3505_19,-74.79203677,39.64871827,735 VIRGINIA AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3505_2,-74.51391743,39.4726696,717 VIRGINIA AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_3505_20,-74.8751275,39.521656,731 VIRGINIA AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3505_21,-74.52171901,39.32123311,725 VIRGINIA AVE,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_3505_3,-74.3903305,39.391211,713 VIRGINIA AVE,HAMMONTON TOWN,18,1998,1,RES1,3001 -0113_3505_4,-74.68547021,39.51552981,31 N LIBERTY ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3505_5,-74.55120727,39.47128044,39 N LIBERTY ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3505_6,-74.4052425,39.383342,45 N LIBERTY ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3505_7,-74.61075248,39.34152415,55 N LIBERTY ST,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3505_8,-74.6014635,39.4099835,69 N LIBERTY ST,HAMMONTON TOWN,,0,1,RES3A,3004 -0113_3505_9,-74.5547395,39.3581685,75 N LIBERTY ST,HAMMONTON TOWN,,1965,1,RES1,3002 -0113_3601_1,-74.8029695,39.666617,161 BROADWAY,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3601_10,-74.81158418,39.65028357,367 S LIBERTY ST,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_3601_11,-74.85926085,39.60886493,353 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3601_12,-74.4822135,39.4348385,349 S LIBERTY ST,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3601_13,-74.36736717,39.42247827,345 S LIBERTY ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3601_14,-74.8169255,39.371035,339 S LIBERTY ST,HAMMONTON TOWN,17,1948,1,COM1,3004 -0113_3601_15,-74.594884,39.328976,333 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3601_16,-74.51702752,39.39688916,720 WOODLAWN AVE,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3601_17,-74.543178,39.372425,420 MARLYN AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3601_18,-74.46499331,39.49741407,436 MARLYN AVE,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_3601_19,-74.7581975,39.3002055,700 WAYNE AVE,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_3601_2,-74.87360917,39.595573,417 S LIBERTY ST,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_3601_21,-74.37643802,39.39759893,710 WAYNE AVE,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3601_22,-74.460561,39.347874,720 WAYNE AVE,HAMMONTON TOWN,17,1965,1,REL1,3003 -0113_3601_23,-74.887808,39.595298,750 WAYNE AVE,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_3601_24,-74.8385745,39.4795535,136 BRYNMAUR AVE,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_3601_25,-74.5069445,39.436016,142 BRYNMAUR AVE,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3601_26,-74.51429,39.398805,721 CAMPANELLA TERR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3601_27,-74.60636842,39.32564189,711 CAMPANELLA TERR,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3601_28,-74.4589015,39.353808,505 MARLYN AVE,HAMMONTON TOWN,18,2004,1,RES1,3001 -0113_3601_3,-74.49378246,39.43175424,415 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3601_31,-74.64597003,39.5339682,179 BROADWAY,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3601_32,-74.46121575,39.34552416,710 CAMPANELLA TERR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3601_33,-74.854498,39.4399155,720 CAMPANELLA TERR,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_3601_34,-74.52351594,39.38846969,150 BRYNMAUR AVE,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_3601_35,-74.5506545,39.372864,156 BRYNMAUR AVE,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3601_36,-74.36396133,39.40637683,217 BROADWAY,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_3601_37,-74.77861018,39.62384409,215 BROADWAY,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3601_38,-74.5131055,39.3258575,211 BROADWAY,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3601_39,-74.76842,39.492381,207 BROADWAY,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_3601_4,-74.7173295,39.3912475,411 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3601_40,-74.491631,39.3329755,205 BROADWAY,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_3601_42,-74.63611314,39.38299317,173 BROADWAY,HAMMONTON TOWN,17,1911,1,COM4,3004 -0113_3601_43,-74.59094844,39.41051119,171 BROADWAY,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3601_5,-74.604142,39.407615,383 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3601_6,-74.79480731,39.61883555,381 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3601_7,-74.65826085,39.36675346,379 S LIBERTY ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3601_7.01,-74.5315105,39.4507735,450 MARLYN AVE,HAMMONTON TOWN,17,1988,1,RES1,3002 -0113_3601_8,-74.50590432,39.33441832,377 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3601_9,-74.5470794,39.37525937,373 S LIBERTY ST,HAMMONTON TOWN,17,1895,1,RES1,3001 -0113_3602_1,-74.41906934,39.36870849,443 MARLYN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3602_12,-74.58294331,39.35656253,709 WAYNE AVE,HAMMONTON TOWN,17,1986,1,REL1,3004 -0113_3602_2,-74.47542902,39.48292016,431 MARLYN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3602_3,-74.6686307,39.45687336,419 MARLYN AVE,HAMMONTON TOWN,17,1957,2,COM1,3004 -0113_3602_4,-74.566882,39.353865,405 MARLYN AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3602_5,-74.57188484,39.36155001,740 WOODLAWN AVE,HAMMONTON TOWN,17,1968,1,GOV1,3004 -0113_3602_6,-74.7257983,39.45878244,754 WOODLAWN AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3602_7,-74.45475422,39.50227814,104 BRYNMAUR AVE,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3603_1,-74.50630441,39.49192628,219 BROADWAY,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3603_10,-74.52795518,39.38213206,790 WOODLAWN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3603_11,-74.58542703,39.32617681,110 BERWYN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3603_12,-74.51419479,39.39547134,116 BERWYN AVE,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3603_13,-74.57028,39.364829,122 BERWYN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3603_14,-74.83512322,39.40630162,128 BERWYN AVE,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3603_15,-74.53423681,39.31288288,134 BERWYN AVE,HAMMONTON TOWN,17,1983,1,RES1,3002 -0113_3603_16,-74.6254073,39.37981585,140 BERWYN AVE,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3603_17,-74.50667444,39.33161733,146 BERWYN AVE,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3603_18,-74.5121405,39.486386,150 BERWYN AVE,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_3603_19,-74.8219425,39.6235245,221 BROADWAY,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_3603_2,-74.489497,39.461516,157 BRYNMAUR AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_3603_3,-74.5802935,39.332973,151 BRYNMAUR AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3603_4,-74.51382864,39.32860171,145 BRYNMAUR AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3603_5,-74.6987385,39.3506115,139 BRYNMAUR AVE,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3603_6,-74.58206629,39.36453511,131 BRYNMAUR AVE,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3603_7,-74.805239,39.5542465,129 BRYNMAUR AVE,HAMMONTON TOWN,17,1970,1,GOV1,3004 -0113_3603_8,-74.55037659,39.38151425,774 WOODLAWN AVE,HAMMONTON TOWN,18,1955,1,GOV1,3004 -0113_3603_9,-74.5034705,39.417321,784 WOODLAWN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3604_1,-74.744356,39.451201,225 BROADWAY,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3604_2,-74.636685,39.4442655,150 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3604_3,-74.51862693,39.48471492,130 S WHITE HORSE PK,HAMMONTON TOWN,,1961,1,RES1,3001 -0113_3604_4,-74.59173208,39.4228523,120 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3604_5,-74.81933511,39.64002977,115 BERWYN AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3604_6,-74.651425,39.533427,800 WOODLAWN AVE,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3604_7,-74.50365,39.466338,810 WOODLAWN AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3604_8,-74.94213488,39.53278524,100 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3604_9,-74.50936433,39.33663601,110 S WHITE HORSE PK,HAMMONTON TOWN,,2011,1,RES1,3001 -0113_3605_1,-74.59386103,39.38093543,233 S LIBERTY ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_10,-74.51174444,39.33230114,201 S LIBERTY ST,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3605_11,-74.94953938,39.516677,119 S LIBERTY ST,HAMMONTON TOWN,17,1948,1,GOV1,3004 -0113_3605_12,-74.530737,39.307546,113 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3605_13,-74.76340324,39.63689026,107 S LIBERTY ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3605_14,-74.50227716,39.33551901,15 S LIBERTY ST,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_3605_15,-74.79998793,39.41794117,13 S LIBERTY ST,HAMMONTON TOWN,17,1945,2,RES1,3001 -0113_3605_16,-74.50521147,39.43138868,11 S LIBERTY ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3605_17,-74.5149283,39.38498087,700 BELLEVUE AVE,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_3605_18,-74.6905005,39.4982275,710 BELLEVUE AVE,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_3605_19,-74.835121,39.4044605,720 BELLEVUE AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3605_2,-74.62213812,39.41960594,231 S LIBERTY ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_20,-74.8319303,39.63414481,70 MARLYN AVE,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3605_21,-74.49960366,39.44726172,104 MARLYN AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3605_22,-74.46318899,39.49586832,106 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_23,-74.72602363,39.45970398,112 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_24,-74.61978227,39.52676613,118 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_25,-74.7530295,39.636507,200 MARLYN AVE,HAMMONTON TOWN,17,1954,1,COM1,3004 -0113_3605_26,-74.62239797,39.3818179,204 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_27,-74.84163993,39.37327679,210 MARLYN AVE,HAMMONTON TOWN,17,1954,1,GOV1,3004 -0113_3605_28,-74.6248605,39.438868,216 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_29,-74.55923534,39.39757711,220 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_3,-74.46068742,39.52364577,229 S LIBERTY ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_30,-74.44738289,39.35651287,226 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3605_31,-74.45161994,39.48956319,230 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_32,-74.53618825,39.48918355,236 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_33,-74.37550432,39.41248668,240 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_34,-74.56590604,39.47061474,244 MARLYN AVE,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_4,-74.519964,39.388986,227 S LIBERTY ST,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3605_5,-74.57619671,39.35880558,225 S LIBERTY ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3605_6,-74.8208201,39.38428794,223 S LIBERTY ST,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3605_7,-74.38981217,39.39287599,217 S LIBERTY ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3605_8,-74.65846448,39.36386245,211 S LIBERTY ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3605_9,-74.450687,39.4954225,205 S LIBERTY ST,HAMMONTON TOWN,17,1948,1,GOV1,3004 -0113_3606_10,-74.7549555,39.4328285,119 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3606_11,-74.48837253,39.33543818,115 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3606_12,-74.501399,39.495443,101 MARLYN AVE,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_3606_13,-74.64746201,39.52830151,23 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3606_14,-74.811024,39.6360045,17 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3606_15,-74.366829,39.408001,740 BELLEVUE AVE,HAMMONTON TOWN,17,1976,2,RES1,3001 -0113_3606_16,-74.649083,39.628167,748 BELLEVUE AVE,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3606_16.01,-74.56331428,39.35757205,22 MARDOR AVE,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_3606_16.02,-74.57128663,39.35646407,26 MARDOR AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3606_16.03,-74.55529284,39.35595249,30 MARDOR AVE,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_3606_16.04,-74.56541806,39.35973482,34 MARDOR AVE,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_3606_16.05,-74.57002435,39.35573668,38 MARDOR AVE,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_3606_16.06,-74.575059,39.353573,42 MARDOR AVE,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_3606_17,-74.82962717,39.4069975,770 BELLEVUE AVE,HAMMONTON TOWN,17,1880,1,RES1,3001 -0113_3606_18,-74.38670367,39.3961235,782 BELLEVUE AVE,HAMMONTON TOWN,17,1886,2,RES1,3001 -0113_3606_19,-74.88459,39.5964145,786 BELLEVUE AVE,HAMMONTON TOWN,17,1886,2,RES1,3001 -0113_3606_20,-74.56425125,39.36445063,RT 54 & WHP,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3606_21,-74.55218581,39.48938497,10 S WHITE HORSE PIKE,HAMMONTON TOWN,,1950,1,RES1,3001 -0113_3606_22,-74.8961155,39.483424,44 S WHITE HORSE PK,HAMMONTON TOWN,,1980,1,RES1,3001 -0113_3606_24,-74.46990645,39.48868321,"80 S WHP, 74 S WHP",HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3606_25,-74.48054141,39.33849269,96 S WHITE HORSE PK,HAMMONTON TOWN,,2010,1,RES1,3001 -0113_3606_26,-74.63132655,39.3898687,805 WOODLAWN AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3606_27,-74.50311033,39.3272375,801 WOODLAWN AVE,HAMMONTON TOWN,17,1957,1,GOV1,3004 -0113_3606_28,-74.5896995,39.32634,789 WOODLAWN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3606_29,-74.56179765,39.35849141,783 WOODLAWN AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_3606_30,-74.50459566,39.33937895,777 WOODLAWN AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_3606_31,-74.41507606,39.36049889,771 WOODLAWN AVE,HAMMONTON TOWN,17,1956,1,GOV1,3004 -0113_3606_32,-74.50759249,39.32298717,763 WOODLAWN AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3606_33,-74.8288725,39.389702,759 WOODLAWN AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_3606_34,-74.56882918,39.3506999,10 MARDOR AVE,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_3606_35,-74.89773069,39.51403496,14 MARDOR AVE,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_3606_36,-74.82427305,39.40025523,18 MARDOR AVE,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_3606_5,-74.36940421,39.41588998,223 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3606_6,-74.445414,39.3722155,217 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3606_7,-74.838283,39.4913245,211 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3606_8,-74.62894429,39.35595753,205 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3606_9,-74.63995782,39.53327117,201 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3607_2,-74.5995755,39.32930333,800 BELLEVUE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3607_3,-74.42432492,39.36527963,2 S WHITE HORSE PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3608_1,-74.49697,39.33547,313 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3608_2,-74.600408,39.38281765,307 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3608_3,-74.45270695,39.35634468,301 MARLYN AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3608_39,-74.52423016,39.31954703,751 WOODLAWN AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3608_4,-74.5608535,39.364888,43 MARDOR AVE,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_3608_40,-74.48492012,39.33582766,745 WOODLAWN AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3608_41,-74.38119319,39.40035007,741 WOODLAWN AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3608_42,-74.49848441,39.33468984,737 WOODLAWN AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_3608_5,-74.56472333,39.36696217,39 MARDOR AVE,HAMMONTON TOWN,17,2007,1,COM8,3004 -0113_3608_6,-74.55573952,39.36118909,33 MARDOR AVE,HAMMONTON TOWN,17,2007,1,GOV1,3004 -0113_3608_7,-74.56871572,39.36633479,23 MARDOR AVE,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_3608_8,-74.75556028,39.42959797,19 MARDOR AVE,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_3608_9,-74.49545671,39.33433784,15 MARDOR AVE,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_3701_1,-74.71207584,39.46594253,422 S EGG HARBOR RD,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_3701_10,-74.42295281,39.37388441,442 S EGG HARBOR RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3701_11,-74.52105783,39.39595843,444 S EGG HARBOR RD,HAMMONTON TOWN,17,1920,1,REL1,3004 -0113_3701_12,-74.5327155,39.470543,446 S EGG HARBOR RD,HAMMONTON TOWN,,1955,1,RES1,3001 -0113_3701_2,-74.6996435,39.644346,24 11TH ST REAR,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3701_4,-74.50505864,39.3242683,424 S EGG HARBOR RD,HAMMONTON TOWN,17,1879,1,RES1,3001 -0113_3701_5,-74.80495277,39.6358372,426 S EGG HARBOR RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3701_6,-74.883475,39.598404,428 S EGG HARBOR RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3701_7,-74.4530975,39.4990025,434 S EGG HARBOR RD,HAMMONTON TOWN,,1962,1,RES1,3001 -0113_3701_8,-74.65448532,39.46489297,438 S EGG HARBOR RD,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3701_9,-74.640075,39.5295885,440 S EGG HARBOR RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_3702_1,-74.80703066,39.63056398,500 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3702_10,-74.46081581,39.46592359,650 S EGG HARBOR RD,HAMMONTON TOWN,,2003,1,RES1,3001 -0113_3702_2,-74.81713151,39.37661556,530 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3702_3,-74.50871886,39.32189296,550 S EGG HARBOR RD,HAMMONTON TOWN,,1950,1,RES1,3001 -0113_3702_4,-74.5341845,39.387661,570 S EGG HARBOR RD,HAMMONTON TOWN,,1956,1,RES1,3001 -0113_3702_4.01,-74.50489513,39.32804665,570A S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3702_5,-74.61939137,39.48794764,582 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3702_6,-74.86678765,39.59440445,590 S EGG HARBOR RD,HAMMONTON TOWN,,1975,1,RES1,3001 -0113_3702_7,-74.56216401,39.3711771,600 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3704_1,-74.80204848,39.63131317,150 11TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3704_3,-74.78218197,39.63649768,200 11TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3704_4,-74.82099221,39.49302841,202 11TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3704_5,-74.437781,39.3652505,250 11TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3705_1,-74.5224675,39.389052,40 VETERANS PLACE,HAMMONTON TOWN,17,2005,1,GOV1,3004 -0113_3705_2,-74.53031736,39.46239844,50 VETERANS PLACE,HAMMONTON TOWN,17,1938,1,RES1,3001 -0113_3706_1.01,-74.58874225,39.42841373,347 S GRAND ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3706_1.02,-74.5874479,39.4285133,351 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3706_1.03,-74.62941117,39.35471999,355 S GRAND ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3706_1.04,-74.5924525,39.429073,359 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3706_2,-74.60222077,39.41885875,375 S GRAND ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3706_3,-74.5057965,39.332754,363 S GRAND ST,HAMMONTON TOWN,17,2008,1,RES1,3001 -0113_3706_3.01,-74.497772,39.4663575,367 S GRAND ST,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_3706_4,-74.4806275,39.44158,999 S GRAND ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3706_4.02,-74.39459008,39.38741665,975 S GRAND ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3706_6,-74.88440233,39.59270677,1001 S GRAND ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3707_1,-74.3669815,39.4063025,302 11TH ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_3707_2,-74.708862,39.6402555,314 11TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3707_4,-74.5104995,39.4016795,340 11TH ST,HAMMONTON TOWN,17,1958,2,RES1,3001 -0113_3707_5.01,-74.61202187,39.42922787,301 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES3B,3001 -0113_3707_5.02,-74.61194743,39.42963918,305 S GRAND ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3707_5.03,-74.60424478,39.42859837,309 S GRAND ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3707_5.04,-74.59822089,39.43055334,313 S GRAND ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3707_5.05,-74.6041875,39.432268,317 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3707_5.06,-74.5997455,39.432299,321 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3707_5.07,-74.59961341,39.4355152,325 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3707_5.08,-74.5881723,39.42833255,329 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3707_5.09,-74.61195172,39.42123203,333 S GRAND ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3708_1,-74.74023852,39.63735016,300 S GRAND ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3708_2,-74.5561082,39.55004484,404 11TH ST,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_3708_3,-74.48650269,39.42310659,410 11TH ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3708_4,-74.87995003,39.48413286,430 11TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3708_5,-74.363966,39.4199045,438 11TH ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3709_1,-74.46532,39.4958605,308 S GRAND ST,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_3711_2,-74.4979095,39.33702217,460 11TH ST,HAMMONTON TOWN,17,1938,1,COM1,3004 -0113_3711_3,-74.72826106,39.45100125,464 11TH ST,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_3711_4,-74.6090002,39.41785258,472 11TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3711_5,-74.60010315,39.37869605,476 11TH ST,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_3711_6,-74.4900465,39.3331165,484 11TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3711_7,-74.5085835,39.4750325,492 11TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3712_5,-74.497786,39.333969,309 S 1ST RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_3713_2,-74.368092,39.4057055,327 S 1ST RD,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_3714_10,-74.638004,39.434018,375 S 1ST RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_3714_11,-74.88142124,39.59264895,397 S 1ST RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_3714_12.03,-74.546138,39.403562,144 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.04,-74.58931867,39.425214,140 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.05,-74.536655,39.414415,136 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.06,-74.544984,39.413813,134 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.07,-74.573186,39.403589,130 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.08,-74.5630001,39.4155848,128 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.09,-74.5599595,39.414849,124 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.10,-74.55867,39.4143725,120 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.11,-74.56995,39.418682,118 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.12,-74.56971907,39.41187415,114 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.13,-74.5731345,39.413531,108 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.14,-74.5705075,39.4277,106 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_12.15,-74.55414,39.42117267,102 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_13,-74.5887005,39.433491,415 S 1ST RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3714_14,-74.63315238,39.36710925,417 S 1ST RD,HAMMONTON TOWN,17,1905,1,RES1,3001 -0113_3714_15,-74.5971585,39.434806,421 S 1ST RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_3714_2,-74.86523697,39.44113863,320 S GRAND ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3714_3,-74.64026173,39.43568444,335 S 1ST RD,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_3714_4,-74.517975,39.4637475,339 S 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3714_5,-74.48701083,39.33354705,341 S 1ST RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3714_6,-74.8261152,39.64090124,345 S 1ST RD,HAMMONTON TOWN,,1972,1,RES1,3004 -0113_3714_7,-74.39918189,39.38713096,349 S 1ST RD,HAMMONTON TOWN,17,1968,1,RES3A,3001 -0113_3714_7.01,-74.66998184,39.35368508,340 S GRAND ST,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3714_8,-74.64063514,39.53213221,371 S 1ST RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3714_8.01,-74.48581487,39.46159606,348 S GRAND ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3714_8.02,-74.53717383,39.3883305,350 S GRAND ST,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_3714_8.03,-74.55193494,39.3820739,352 S GRAND ST,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_3714_8.04,-74.68738343,39.62990727,363 S 1ST RD,HAMMONTON TOWN,17,2001,1,GOV1,3004 -0113_3714_9,-74.61014867,39.3191795,391 S 1ST RD,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3715_10,-74.80303416,39.520565,914 S GRAND ST,HAMMONTON TOWN,17,1970,1,GOV1,3004 -0113_3715_11,-74.808376,39.6413915,525 S 1ST RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3715_12,-74.6692495,39.4177715,545 S 1ST RD,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_3715_12.01,-74.631752,39.53106833,920 S GRAND ST,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_3715_13,-74.602235,39.3956355,555 S 1ST RD,HAMMONTON TOWN,17,1985,1,RES3A,3001 -0113_3715_13.01,-74.49311237,39.44755688,940 S GRAND ST,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_3715_14.01,-74.357047,39.412599,571 S 1ST RD,HAMMONTON TOWN,17,1978,1,RES3A,3001 -0113_3715_15,-74.46426314,39.4615639,561 S 1ST RD,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_3715_16,-74.4201005,39.3713295,960 S GRAND ST,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_3715_17,-74.591657,39.318588,575 S 1ST RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_3715_19,-74.449158,39.373972,966 S GRAND ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3715_2,-74.50024927,39.33683516,404 10TH ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_3715_20,-74.641462,39.5304105,639 S 1ST RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3715_21,-74.52393068,39.38901457,970 S GRAND ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3715_22,-74.4988645,39.4307745,641 S 1ST RD,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3715_23,-74.506713,39.3265835,976 S GRAND ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3715_24,-74.57743275,39.3387988,431 9TH ST,HAMMONTON TOWN,16,1940,1,RES1,3001 -0113_3715_24.01,-74.63261629,39.36302049,575 9TH ST,HAMMONTON TOWN,17,1988,1,COM1,3004 -0113_3715_24.02,-74.5715454,39.48833888,643 S 1ST RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_3715_24.03,-74.55773147,39.36320371,425 9TH ST,HAMMONTON TOWN,17,1985,1,GOV1,3004 -0113_3715_24.04,-74.5974675,39.43500185,984 S GRAND ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3715_24.05,-74.8058325,39.640607,401 9TH ST,HAMMONTON TOWN,18,2006,1,RES1,3001 -0113_3715_3,-74.55464814,39.3560579,406 10TH ST,HAMMONTON TOWN,17,2000,1,GOV1,3004 -0113_3715_3.01,-74.53348379,39.47479151,410 10TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3715_4.02,-74.56699757,39.47993418,430 10TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3715_4.03,-74.761365,39.4308555,505 S 1ST RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3715_7.01,-74.59410606,39.43349468,517 S 1ST RD,HAMMONTON TOWN,18,2004,1,RES1,3001 -0113_3715_7.02,-74.8736275,39.439566,880 S GRAND ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_3715_8,-74.56101985,39.36323341,515 S 1ST RD,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3715_9,-74.6362115,39.5380375,521 S 1ST RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3716_1,-74.66591993,39.56878747,101 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_10,-74.60740429,39.41732046,139 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_11,-74.60520415,39.4169398,145 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_12,-74.811814,39.52043,445 S 1ST RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3716_12.01,-74.585476,39.423066,149 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_12.02,-74.91465885,39.53073205,439 S 1ST RD,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_3716_16,-74.4739612,39.48438203,450 S GRAND ST,HAMMONTON TOWN,,1997,1,RES1,3001 -0113_3716_18.01,-74.492988,39.3322595,401 10TH ST,HAMMONTON TOWN,17,1983,1,RES3A,3001 -0113_3716_18.02,-74.7136793,39.46974185,403 10TH ST,HAMMONTON TOWN,17,2006,1,RES3A,3001 -0113_3716_18.03,-74.55707245,39.38965497,405 10TH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3716_18.04,-74.68848801,39.49695533,407 10TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3716_18.05,-74.5110705,39.40413683,409 10TH ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_3716_18.06,-74.38210025,39.41684837,411 10TH ST,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_3716_18.07,-74.51584543,39.43243805,413 10TH ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3716_18.08,-74.92475872,39.50967007,415 10TH ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3716_19,-74.5349521,39.39698195,449 S 1ST RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3716_19.01,-74.73129872,39.46054841,451 S 1ST RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_3716_19.02,-74.64766141,39.37713486,453 S 1ST RD,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_3716_2,-74.573471,39.4273885,105 BIRCH DR,HAMMONTON TOWN,17,2002,1,GOV1,3004 -0113_3716_20,-74.81225473,39.60769467,481 S 1ST RD,HAMMONTON TOWN,17,1940,1,RES3A,3001 -0113_3716_21,-74.60262143,39.40713421,14 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_22,-74.60393626,39.40899462,20 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_23,-74.6008365,39.4095515,24 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_24,-74.60301449,39.41044484,28 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,GOV1,3004 -0113_3716_25,-74.58796339,39.41302919,32 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_26,-74.575573,39.413884,36 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_27,-74.582918,39.417859,40 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_28,-74.595465,39.4066335,48 MAGNOLIA COURT,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3716_29,-74.5795565,39.404928,39 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_3,-74.57266122,39.42614403,109 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_30,-74.583171,39.4052245,35 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_31,-74.58250204,39.40669577,23 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_4,-74.572472,39.4288115,115 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_5,-74.57141158,39.4281819,119 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_6,-74.5758626,39.4097833,123 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_7,-74.57532488,39.40963946,127 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_8,-74.59984369,39.41810566,10 MAGNOLIA COURT,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3716_9,-74.603196,39.406865,135 BIRCH DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_1,-74.54640384,39.37150702,720 CENTRAL AVE,HAMMONTON TOWN,17,1945,1,GOV1,3004 -0113_3801_10,-74.44983211,39.49099425,246 PARK AVE,HAMMONTON TOWN,17,1955,1,COM1,3004 -0113_3801_11,-74.64514458,39.53876367,242 PARK AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3801_13,-74.361261,39.412876,236 PARK AVE,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_3801_15,-74.5002225,39.4588645,"100 SPORTS DR, 150 SPORTS",HAMMONTON TOWN,,2009,1,RES1,3001 -0113_3801_16,-74.57611197,39.35123324,762 CENTRAL AVE,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3801_17.01,-74.56908855,39.47888034,750 CENTRAL AVE,HAMMONTON TOWN,,0,1,RES1,3002 -0113_3801_17.02,-74.37020752,39.40617735,1 SAMUEL DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_17.03,-74.56235666,39.35868795,7 SAMUEL DR,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3801_17.04,-74.49198842,39.33810181,13 SAMUEL DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_17.05,-74.6956445,39.6314745,21 SAMUEL DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_17.06,-74.91884404,39.56114128,31 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_17.07,-74.5680464,39.35243421,37 SAMUEL DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_17.08,-74.8181505,39.632556,43 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_17.09,-74.50829472,39.43586321,49 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3002 -0113_3801_17.10,-74.946922,39.524704,57 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3002 -0113_3801_17.11,-74.60935096,39.41896719,63 SAMUEL DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_17.12,-74.59908437,39.43070388,67 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_17.13,-74.6378545,39.400917,68 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_17.14,-74.69628031,39.63351821,62 SAMUEL DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_17.15,-74.63216155,39.34656433,56 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_17.16,-74.59296201,39.32194016,48 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_17.17,-74.4980215,39.4711705,42 SAMUEL DR,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3801_17.18,-74.51101147,39.40691767,36 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_17.19,-74.52862076,39.39355585,32 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_17.20,-74.511989,39.4856275,30 SAMUEL DR,HAMMONTON TOWN,17,2001,1,RES3A,3001 -0113_3801_17.21,-74.498125,39.4217505,28 SAMUEL DR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3801_17.22,-74.5019795,39.4270785,24 SAMUEL DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_17.23,-74.52300353,39.31464784,20 SAMUEL DR,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3801_17.24,-74.42185516,39.373947,14 SAMUEL DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3801_18,-74.53519561,39.37319092,782 CENTRAL AVE,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_3801_18.01,-74.8400845,39.4406805,784 CENTRAL AVE,HAMMONTON TOWN,18,2002,1,RES1,3001 -0113_3801_19,-74.66225093,39.40137319,135 BATCHELOR LN,HAMMONTON TOWN,17,1972,1,RES3A,3001 -0113_3801_2,-74.36507031,39.41667905,728 CENTRAL AVE,HAMMONTON TOWN,17,1865,1,RES1,3001 -0113_3801_20,-74.7394225,39.6508485,131 BATCHELOR LN,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3801_21,-74.70998754,39.47131084,134 BATCHELOR LN,HAMMONTON TOWN,17,1988,1,COM1,3004 -0113_3801_21.01,-74.51854937,39.32058945,126 BATCHELOR LANE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3801_23,-74.536935,39.468236,128 BATCHELOR LN,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3801_25,-74.49598147,39.43168568,786 CENTRAL AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3801_26,-74.50622531,39.42446192,794 CENTRAL AVE,HAMMONTON TOWN,17,1946,1,RES1,3001 -0113_3801_3,-74.57206654,39.34042467,736 CENTRAL AVE,HAMMONTON TOWN,17,1927,1,RES1,3001 -0113_3801_30,-74.61978782,39.37512884,101 BATCHELOR LN,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3801_31,-74.4955175,39.3346335,115 BATCHELOR LN,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_3801_32,-74.93215315,39.49666641,121 BATCHELOR LN,HAMMONTON TOWN,17,1989,2,RES1,3001 -0113_3801_33,-74.5847675,39.3275875,124 BATCHELOR LN,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3801_34,-74.6373305,39.43091282,122 BATCHELOR LN,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3801_35,-74.52519642,39.43010475,118 BATCHELOR LN,HAMMONTON TOWN,18,1950,1,RES1,3001 -0113_3801_35.01,-74.84411392,39.56009065,114 BATCHELOR LN,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3801_35.02,-74.5166395,39.4623735,120 BATCHELOR LANE,HAMMONTON TOWN,18,2002,1,RES1,3001 -0113_3801_36,-74.9192725,39.5231335,820 CENTRAL AVE,HAMMONTON TOWN,17,1956,1,RES1,3002 -0113_3801_37,-74.756474,39.431832,828 CENTRAL AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3801_38.01,-74.52567703,39.31239934,832 CENTRAL AVE,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_3801_39,-74.59419967,39.42153337,836 CENTRAL AVE,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_3801_40,-74.515615,39.3268305,834 CENTRAL AVE,HAMMONTON TOWN,17,1910,1,RES3A,3001 -0113_3801_41,-74.46501699,39.34853066,842 CENTRAL AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3801_42,-74.53956147,39.37471116,846 CENTRAL AVE,HAMMONTON TOWN,17,1978,1,RES1,3002 -0113_3801_43,-74.63230578,39.35604613,850 CENTRAL AVE,HAMMONTON TOWN,17,1960,1,RES1,3002 -0113_3801_44,-74.45192868,39.37261145,856 CENTRAL AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3801_44.01,-74.77127069,39.60841543,854 CENTRAL AVE,HAMMONTON TOWN,17,1988,1,RES1,3002 -0113_3801_44.02,-74.44754215,39.35823561,852 CENTRAL AVE,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_3801_45,-74.77989,39.5201155,862 CENTRAL AVE,HAMMONTON TOWN,17,1950,1,RES3A,3001 -0113_3801_46,-74.6231165,39.424794,860 CENTRAL AVE,HAMMONTON TOWN,18,2000,1,RES1,3001 -0113_3801_46.02,-74.70216173,39.57363291,860A CENTRAL AVE,HAMMONTON TOWN,17,2001,1,RES3B,3001 -0113_3801_47,-74.51403367,39.32519998,870 CENTRAL AVE,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_3801_49,-74.6460645,39.434081,870B CENTRAL AVE,HAMMONTON TOWN,17,1980,1,RES3A,3001 -0113_3801_5,-74.71944312,39.44308123,740 CENTRAL AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3801_50,-74.46833741,39.34601432,870C CENTRAL AVE,HAMMONTON TOWN,18,2011,1,RES1,3001 -0113_3801_51,-74.75881,39.4327455,876 CENTRAL AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3801_52,-74.49643262,39.44278928,872 CENTRAL AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3801_53,-74.57239361,39.33927933,878 CENTRAL AVE,HAMMONTON TOWN,17,1871,1,RES1,3001 -0113_3801_54,-74.8073715,39.3644795,884 CENTRAL AVE,HAMMONTON TOWN,18,1999,1,GOV1,3004 -0113_3801_55,-74.45535218,39.35368499,888 CENTRAL AVE,HAMMONTON TOWN,17,1900,1,RES3A,3001 -0113_3801_56,-74.50399196,39.32911683,890 CENTRAL AVE,HAMMONTON TOWN,17,1860,1,RES3A,3001 -0113_3801_57.01,-74.49594133,39.33226251,892 CENTRAL AVE,HAMMONTON TOWN,17,1999,1,RES3A,3001 -0113_3801_58.01,-74.751867,39.2991495,894 CENTRAL AVE,HAMMONTON TOWN,17,1999,1,COM1,3004 -0113_3801_59,-74.49111,39.3400375,29 WATERFRONT WAY,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3801_59.01,-74.68423825,39.35505218,5 WATERFRONT WAY,HAMMONTON TOWN,18,2013,1,RES1,3001 -0113_3801_6,-74.498686,39.328099,262 PARK AVE,HAMMONTON TOWN,17,1946,2,RES1,3001 -0113_3801_60.01,-74.45928267,39.3541055,50 WATERFRONT WAY,HAMMONTON TOWN,19,2002,2,RES1,3001 -0113_3801_60.02,-74.37412279,39.40932839,100 WATERFRONT WAY,HAMMONTON TOWN,18,1997,2,RES1,3001 -0113_3801_60.03,-74.61721198,39.38983668,51 WATERFRONT WAY,HAMMONTON TOWN,18,2004,1,RES1,3001 -0113_3801_60.04,-74.8793566,39.59152331,41 WATERFRONT WAY,HAMMONTON TOWN,18,1998,1,RES1,3001 -0113_3801_60.05,-74.71659565,39.43889805,898 CENTRAL AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3801_60.06,-74.62550064,39.38062377,896 CENTRAL AVE,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_3801_60.07,-74.8028965,39.646263,14 WATERFRONT WAY,HAMMONTON TOWN,18,2001,1,RES1,3001 -0113_3801_60.08,-74.46078211,39.35381524,22 WATERFRONT WAY,HAMMONTON TOWN,19,1999,2,RES1,3001 -0113_3801_60.09,-74.64716896,39.53445905,30 WATERFRONT WAY,HAMMONTON TOWN,19,2007,1,RES1,3001 -0113_3801_61.01,-74.51872017,39.31935597,910 CENTRAL AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3801_62,-74.59624854,39.3326054,914 CENTRAL AVE,HAMMONTON TOWN,18,1995,1,RES1,3001 -0113_3801_65,-74.920798,39.4746625,920 CENTRAL AVE,HAMMONTON TOWN,18,2004,1,RES1,3001 -0113_3801_66,-74.56414718,39.35884559,922 CENTRAL AVE,HAMMONTON TOWN,17,2016,1,COM1,3004 -0113_3801_67,-74.88001306,39.44796674,926 CENTRAL AVE,HAMMONTON TOWN,,1890,1,RES1,3001 -0113_3801_69,-74.5295665,39.40399,932 CENTRAL AVE,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3801_70,-74.37768738,39.41907042,608 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES3A,3001 -0113_3801_71,-74.585989,39.375552,934 CENTRAL AVE,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_3801_73,-74.64214599,39.53069883,1000 CENTRAL AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3801_75,-74.853556,39.617085,610 S WHITE HORSE PK,HAMMONTON TOWN,,1990,1,RES1,3001 -0113_3801_76,-74.64283586,39.34762826,620 S WHITE HORSE PK,HAMMONTON TOWN,,1990,1,RES1,3001 -0113_3801_77,-74.60547777,39.36508661,630 S WHITE HORSE PK,HAMMONTON TOWN,,1990,1,RES1,3001 -0113_3801_78,-74.85000817,39.58933103,640 S WHITE HORSE PK,HAMMONTON TOWN,,1990,1,RES1,3001 -0113_3801_79,-74.69097,39.448723,660 S WHITE HORSE PK,HAMMONTON TOWN,15,1946,1,RES1,3001 -0113_3801_8,-74.8245365,39.3133405,256 PARK AVE,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_3801_81,-74.57638699,39.33207182,682 S WHITE HORSE PK,HAMMONTON TOWN,16,1950,1,RES1,3001 -0113_3801_82,-74.36984931,39.40690132,688 S WHITE HORSE PK,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_3801_83,-74.879947,39.570948,720 S WHITE HORSE PK,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3801_84,-74.567106,39.4800845,700 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3801_86,-74.5809035,39.473135,555 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3801_9,-74.46067067,39.35293399,250 PARK AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3901_1,-74.48464475,39.47318012,227 S WHITE HORSE PK,HAMMONTON TOWN,,1930,1,RES1,3001 -0113_3901_11,-74.50408648,39.33265283,52 MAIN RD,HAMMONTON TOWN,17,1959,2,RES1,3001 -0113_3901_12,-74.45295206,39.50117705,54 MAIN RD,HAMMONTON TOWN,17,1963,1,COM1,3004 -0113_3901_13,-74.4907685,39.336758,325 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3901_14,-74.61196505,39.32367819,56 MAIN RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_3901_15,-74.48747167,39.4391336,60 MAIN RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3901_17,-74.72343168,39.43788214,345 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3901_18,-74.49692688,39.32894821,347 S WHITE HORSE PK,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3901_19,-74.44935769,39.48316149,84 MAIN RD,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3901_22,-74.5816395,39.423439,357 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3901_4,-74.586432,39.487169,245 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,GOV1,3004 -0113_3901_7,-74.5919051,39.33337288,40 MAIN RD,HAMMONTON TOWN,17,1943,1,RES1,3001 -0113_3901_8,-74.36679177,39.40361334,301 S WHITE HORSE PIKE,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_3902_1,-74.52146985,39.31469558,134 MAIN RD,HAMMONTON TOWN,17,1988,1,RES3A,3001 -0113_3902_2,-74.50464011,39.4319284,503 S WHITE HORSE PK,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3902_3,-74.55310036,39.47532819,469 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3902_4,-74.93859069,39.51982296,142 MAIN RD,HAMMONTON TOWN,17,1965,1,RES3A,3001 -0113_3902_5,-74.51081189,39.53396114,525 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES3B,3001 -0113_3903_1,-74.403702,39.38788,541 S WHITE HORSE PK,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3903_11,-74.65466806,39.36633439,55 PLEASANT MILLS RD,HAMMONTON TOWN,,1970,1,GOV1,3004 -0113_3903_12,-74.56606757,39.34947562,55 PLEASANT MILLS RD,HAMMONTON TOWN,,1994,1,RES1,3001 -0113_3903_2,-74.5127615,39.442511,22 SEA GROVE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3903_3,-74.53798709,39.37267312,24 SEA GROVE AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3903_4,-74.536667,39.3998475,30 SEAGROVE AVE,HAMMONTON TOWN,,1971,1,RES1,3001 -0113_3903_5,-74.45688765,39.34804967,545 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3903_7,-74.56889,39.4174995,9 PLEASANT MILLS RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3903_8.01,-74.58632532,39.40824091,32 SEA GROVE AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3904_1,-74.78340862,39.64348501,70 BROADWAY,HAMMONTON TOWN,17,1930,1,AGR1,3001 -0113_3904_10,-74.8921255,39.4998265,80 BROADWAY,HAMMONTON TOWN,,1970,1,RES1,3001 -0113_3904_108,-74.3718775,39.410562,42 GOLF DR,HAMMONTON TOWN,,0,1,RES3A,3001 -0113_3904_109,-74.876051,39.5935625,40 GOLF DR,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_3904_11,-74.74628961,39.63724149,90 BROADWAY,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3904_11.01,-74.62977725,39.35253466,94 BROADWAY,HAMMONTON TOWN,28,1986,2,RES1,3001 -0113_3904_110,-74.59558417,39.38366496,38 GOLF DR,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_3904_112,-74.49850132,39.45272367,34 GOLF DR,HAMMONTON TOWN,18,2013,1,RES3A,3001 -0113_3904_113,-74.50805471,39.43157269,30 GOLF DR,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_3904_114,-74.63115602,39.4178939,24 GOLF DR,HAMMONTON TOWN,17,1996,1,RES3A,3001 -0113_3904_115,-74.471724,39.481603,22 GOLF DR,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_3904_116,-74.57612369,39.40921006,20 GOLF DR,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_3904_117,-74.931515,39.514677,18 GOLF DR,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_3904_118,-74.64625976,39.53774469,16 GOLF DR,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_3904_119,-74.36704017,39.42230898,14 GOLF DR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3904_12,-74.63769491,39.36546827,96 BROADWAY,HAMMONTON TOWN,17,1906,1,RES1,3001 -0113_3904_120,-74.5651335,39.3690745,10 GOLF DR,HAMMONTON TOWN,17,1996,1,RES3A,3001 -0113_3904_121,-74.63301067,39.54092702,8 GOLF DR,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_3904_122,-74.7113775,39.412785,6 GOLF DR,HAMMONTON TOWN,17,1997,1,AGR1,3001 -0113_3904_123,-74.58857847,39.41368719,4 GOLF DR,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_3904_124,-74.86596184,39.59382314,891 CENTRAL AVE,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3904_13,-74.59497724,39.31215715,100 BROADWAY,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3904_14,-74.69370292,39.36097468,120 BROADWAY,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_3904_15,-74.56417339,39.35822676,156 BROADWAY,HAMMONTON TOWN,17,1903,1,GOV1,3004 -0113_3904_16,-74.4633515,39.4689535,162 BROADWAY,HAMMONTON TOWN,17,1916,1,GOV1,3004 -0113_3904_17,-74.50208567,39.4157105,168 BROADWAY,HAMMONTON TOWN,17,1991,1,GOV1,3004 -0113_3904_18,-74.596625,39.312758,172 BROADWAY,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3904_19,-74.44488251,39.37325871,176 BROADWAY,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_3904_20,-74.61642504,39.42902233,180 BROADWAY,HAMMONTON TOWN,17,1972,1,GOV1,3004 -0113_3904_21,-74.88625,39.565383,194 BROADWAY,HAMMONTON TOWN,17,1950,1,GOV1,3004 -0113_3904_22,-74.65289519,39.54029337,198 BROADWAY,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3904_23,-74.947415,39.5336525,200 BROADWAY,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3904_24,-74.63994281,39.3809302,204 BROADWAY,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3904_25,-74.8400905,39.5415875,206 BROADWAY,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_3904_26,-74.60753036,39.31450037,212 BROADWAY,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3904_27,-74.38986904,39.38852434,216 BROADWAY,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_3904_28,-74.57447454,39.35618818,220 BROADWAY,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3904_29,-74.57825532,39.3832661,240 S WHITE HORSE PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3904_29.01,-74.48268516,39.34026601,222 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3904_29.02,-74.558938,39.358217,234 S WHITE HORSE PIKE,HAMMONTON TOWN,,2005,1,COM3,3004 -0113_3904_3,-74.60446369,39.38493347,74 BROADWAY,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3904_32,-74.36670045,39.42164157,256 S WHITE HORSE PK,HAMMONTON TOWN,,1940,1,RES1,3001 -0113_3904_33,-74.60119997,39.37993944,260 S WHITE HORSE PK,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3904_34,-74.753098,39.4496885,264 S WHITE HORSE PK,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_3904_35,-74.50608571,39.32596994,272 S WHITE HORSE PK,HAMMONTON TOWN,16,1920,1,RES1,3001 -0113_3904_37,-74.496648,39.4590125,280 S WHITE HORSE PK,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3904_4,-74.62874689,39.42791976,713 VALLEY AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3904_40,-74.8851915,39.55957746,308 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3904_42,-74.56434885,39.36843322,460 S WHITE HORSE PK,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3904_44,-74.52435802,39.38835032,470 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3904_45,-74.55887483,39.433595,500 S WHITE HORSE PK,HAMMONTON TOWN,,1950,1,RES1,3001 -0113_3904_46,-74.563233,39.361551,510 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3904_49,-74.9500315,39.512232,949 CENTRAL AVE,HAMMONTON TOWN,17,1935,1,RES1,3001 -0113_3904_5,-74.4758685,39.479697,719 VALLEY AVE,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3904_50,-74.49960633,39.33206151,947 CENTRAL AVE,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_3904_51,-74.7658995,39.4519405,931 CENTRAL AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3904_52,-74.48987382,39.33469672,921 CENTRAL AVE,HAMMONTON TOWN,19,1999,1,RES1,3001 -0113_3904_53,-74.48836312,39.44439615,929 CENTRAL AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_3904_54,-74.52688169,39.39501834,927 CENTRAL AVE,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_3904_55,-74.38279489,39.40014733,923 CENTRAL AVE,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_3904_58,-74.47045415,39.44370431,901 CENTRAL AVE,HAMMONTON TOWN,17,1959,1,RES3A,3001 -0113_3904_6,-74.59690019,39.31213002,727 VALLEY AVE,HAMMONTON TOWN,17,1964,2,RES1,3001 -0113_3904_7,-74.9561105,39.5215715,733 VALLEY AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3904_75.01,-74.6478475,39.5316325,103 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3904_76,-74.5643295,39.3651265,105 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3904_77,-74.61183737,39.38750418,109 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3904_78,-74.374276,39.417962,115 WINDING WAY,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_3904_79,-74.51433696,39.53034643,119 WINDING WAY,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3904_8,-74.498571,39.334785,741 VALLEY AVE,HAMMONTON TOWN,17,1962,1,GOV1,3004 -0113_3904_80,-74.6274505,39.557061,123 WINDING WAY,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_3904_82,-74.56954104,39.34037539,131 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3904_83,-74.3700279,39.40411434,135 WINDING WAY,HAMMONTON TOWN,18,1990,2,RES1,3001 -0113_3904_84,-74.6481225,39.5319615,139 WINDING WAY,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_3904_85,-74.50656022,39.44822831,205 WINDING WAY,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3904_87,-74.6247395,39.6224915,215 WINDING WAY,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3904_88,-74.5016195,39.501409,305 WINDING WAY,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_3904_89,-74.74374118,39.39778141,309 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3904_9,-74.42379098,39.35948482,745 VALLEY AVE,HAMMONTON TOWN,17,1955,1,GOV1,3004 -0113_3904_90,-74.4491059,39.49745994,313 WINDING WAY,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3904_91,-74.60788964,39.43915978,317 WINDING WAY,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_3904_92,-74.7577855,39.430526,321 WINDING WAY,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3904_93,-74.48891751,39.35086974,325 WINDING WAY,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3904_94,-74.44322371,39.49112029,329 WINDING WAY,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3905_1,-74.653261,39.5462345,60 BROADWAY,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_3905_10,-74.53440649,39.53212866,721 CENTRAL AVE,HAMMONTON TOWN,17,1922,1,RES1,3001 -0113_3905_11,-74.65141573,39.35679769,739 CENTRAL AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3905_12,-74.9455615,39.5118905,741 CENTRAL AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3905_13,-74.63578123,39.3497234,749 CENTRAL AVE,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_3905_14,-74.62566403,39.43511013,763 CENTRAL AVE,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_3905_15,-74.62426308,39.41175784,767 CENTRAL AVE,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_3905_16,-74.50459302,39.34110377,769 CENTRAL AVE,HAMMONTON TOWN,17,1971,1,RES3A,3001 -0113_3905_16.01,-74.50470614,39.33614706,770 VALLEY AVE,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_3905_17,-74.48335927,39.34544316,779 CENTRAL AVE,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_3905_18,-74.572409,39.372704,795 CENTRAL AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3905_2,-74.6023985,39.3263635,54 BROADWAY,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3905_20,-74.92637337,39.48810096,764 VALLEY AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3905_21,-74.51045094,39.44125977,756 VALLEY AVE,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_3905_22,-74.6005725,39.3293425,748 VALLEY AVE,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_3905_23,-74.64346035,39.4111967,740 VALLEY AVE,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_3905_24,-74.80838434,39.64071347,736 VALLEY AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_3905_25,-74.60195434,39.48071267,730 VALLEY AVE,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3905_3,-74.52664162,39.38328059,30 BROADWAY,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_3905_4,-74.45240059,39.35319018,26 BROADWAY,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3905_5,-74.525223,39.3849175,24 BROADWAY,HAMMONTON TOWN,17,1929,1,RES3A,3001 -0113_3905_6,-74.6028725,39.484593,20 BROADWAY,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3905_7,-74.526653,39.3128105,707 CENTRAL AVE,HAMMONTON TOWN,17,1902,1,RES1,3001 -0113_3905_8,-74.64353468,39.43336353,711 CENTRAL AVE,HAMMONTON TOWN,17,1910,1,REL1,3004 -0113_3905_9,-74.49351388,39.49538773,717 CENTRAL AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3906_1,-74.89846086,39.52683557,100 MAIN RD,HAMMONTON TOWN,17,1982,1,IND1,3004 -0113_3906_2,-74.75513344,39.59955366,110 MAIN RD,HAMMONTON TOWN,17,1975,1,GOV1,3004 -0113_3907_5,-74.40346846,39.38166183,124 MAIN RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_3908_2,-74.71926662,39.63243181,128 MAIN RD,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_3908_4,-74.61815945,39.43857202,132 MAIN RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_3914_1,-74.980498,39.512644,373 S WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_3914_3,-74.62523662,39.36541495,383/405 S WHITE HORSE PK,HAMMONTON TOWN,17,1925,1,GOV1,3004 -0113_3915_3,-74.61090716,39.32393196,425 S WHITE HORSE PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_3917_1,-74.62801635,39.43315203,757 VALLEY AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_3917_10,-74.6051537,39.40977705,112 WINDING WAY,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_3917_11,-74.54479856,39.38775844,108 WINDING WAY,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3917_2,-74.726044,39.4552845,763 VALLEY AVE,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_3917_3,-74.51313266,39.47012278,765 VALLEY AVE,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_3917_4,-74.8129095,39.645683,105 FOREST DR,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_3917_5,-74.3880245,39.39097,109 FOREST DR,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3917_6,-74.488026,39.336972,115 FOREST DR,HAMMONTON TOWN,17,1990,1,AGR1,3001 -0113_3917_7,-74.5145865,39.4654445,119 FOREST DR,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_3917_8,-74.63330694,39.36427256,120 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3917_9,-74.51300533,39.32072054,116 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3918_1,-74.484164,39.3356475,401 WINDING WAY,HAMMONTON TOWN,17,1999,2,AGR1,3001 -0113_3918_10,-74.59938905,39.43715748,312 WINDING WAY,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_3918_2,-74.37625,39.4150845,409 WINDING WAY,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3918_3,-74.85328719,39.48631159,413 WINDING WAY,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3918_4,-74.5775195,39.351148,417 WINDING WAY,HAMMONTON TOWN,17,1993,1,COM1,3004 -0113_3918_5,-74.4750145,39.4862295,421 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3918_6,-74.482625,39.4792385,425 WINDING WAY,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3918_7,-74.58378593,39.33033017,324 WINDING WAY,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_3918_8,-74.8387825,39.541269,320 WINDING WAY,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3918_9,-74.49981341,39.33455884,316 WINDING WAY,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_3919_1,-74.63712181,39.36147987,1 GOLF DR,HAMMONTON TOWN,17,1996,1,GOV1,3004 -0113_3919_10,-74.511705,39.429541,31 GOLF DR,HAMMONTON TOWN,17,2000,1,GOV1,3004 -0113_3919_100,-74.5090819,39.49372721,208 WINDING WAY,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_3919_101,-74.518939,39.32162,120 FOREST DR,HAMMONTON TOWN,18,1991,1,RES1,3001 -0113_3919_102,-74.79763211,39.63312086,110 FOREST DR,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_3919_103,-74.48585003,39.45735722,130 CEDAR COURT,HAMMONTON TOWN,18,1996,1,RES1,3001 -0113_3919_105,-74.81599024,39.64158371,122 CEDAR COURT,HAMMONTON TOWN,17,1989,1,GOV1,3004 -0113_3919_106,-74.48371551,39.33430469,114 CEDAR COURT,HAMMONTON TOWN,18,1994,1,GOV1,3004 -0113_3919_11,-74.5264355,39.3987705,35 GOLF DR,HAMMONTON TOWN,17,1999,1,GOV1,3004 -0113_3919_12,-74.5051995,39.330381,41 GOLF DR,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3919_2,-74.54826546,39.47482494,3 GOLF DR,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_3919_3,-74.77875663,39.62540585,5 GOLF DR,HAMMONTON TOWN,17,1996,1,GOV1,3004 -0113_3919_4,-74.5145425,39.4036005,15 GOLF DR,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_3919_5,-74.401518,39.384322,19 GOLF DR,HAMMONTON TOWN,17,1999,1,GOV1,3004 -0113_3919_6,-74.44722329,39.51506153,21 GOLF DR,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3919_61,-74.811807,39.616983,879 CENTRAL AVE,HAMMONTON TOWN,17,1949,1,RES1,3001 -0113_3919_62,-74.6449555,39.544583,877 CENTRAL AVE,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_3919_63,-74.5274645,39.3887095,875 CENTRAL AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_3919_64,-74.93478815,39.49736432,865 CENTRAL AVE,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_3919_65,-74.50919561,39.33257517,855 CENTRAL AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_3919_68,-74.512005,39.4423475,845 CENTRAL AVE,HAMMONTON TOWN,17,1929,1,RES1,3001 -0113_3919_7,-74.8562835,39.623689,23 GOLF DR,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_3919_70,-74.71875048,39.38695969,835 CENTRAL AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3919_71,-74.563829,39.3625245,825 CENTRAL AVE,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_3919_72,-74.46859732,39.34268652,821 CENTRAL AVE,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_3919_73,-74.63095221,39.42728156,817 CENTRAL AVE,HAMMONTON TOWN,17,1910,1,RES1,3001 -0113_3919_74,-74.514825,39.408551,789 VALLEY AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_3919_75.05,-74.502963,39.4572905,775 VALLEY AVE,HAMMONTON TOWN,18,2003,1,RES1,3001 -0113_3919_8,-74.78692246,39.45843718,25 GOLF DR,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_3919_9,-74.4601015,39.4947125,27 GOLF DR,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_3919_96,-74.916223,39.49833,410 WINDING WAY,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_3919_97,-74.72302831,39.45961376,406 WINDING WAY,HAMMONTON TOWN,18,2002,1,RES1,3001 -0113_3919_99,-74.46885748,39.45991699,212 WINDING WAY,HAMMONTON TOWN,18,1998,1,RES1,3001 -0113_4001_1.01,-74.688183,39.358735,710 MOSS MILL RD,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_4001_1.02,-74.81084115,39.55980155,720 MOSS MILL RD,HAMMONTON TOWN,17,1989,1,GOV1,3004 -0113_4001_1.03,-74.62046751,39.52723086,730 MOSS MILL RD,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_4001_2,-74.591895,39.311853,811 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4001_2.01,-74.881989,39.451937,815 S EGG HARBOR RD,HAMMONTON TOWN,17,1970,2,RES1,3001 -0113_4001_3,-74.49030059,39.33344317,742 MOSS MILL RD,HAMMONTON TOWN,17,1976,1,GOV1,3004 -0113_4001_4,-74.538758,39.373042,750 MOSS MILL RD,HAMMONTON TOWN,17,1978,1,GOV1,3004 -0113_4001_6,-74.561427,39.4158655,766 MOSS MILL RD,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_4001_7,-74.601366,39.430276,774 MOSS MILL RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4001_8,-74.77414274,39.62545817,782 MOSS MILL RD,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_4001_9.01,-74.46133246,39.3499812,857 S EGG HARBOR RD,HAMMONTON TOWN,17,1905,2,RES1,3001 -0113_4001_9.02,-74.51748068,39.41130752,856 MOSS MILL RD,HAMMONTON TOWN,17,1987,2,RES1,3001 -0113_4001_9.03,-74.51126721,39.42854696,844 MOSS MILL RD,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4001_9.04,-74.49892722,39.33105113,832 MOSS MILL RD,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_4001_9.05,-74.587405,39.3525735,820 MOSS MILL RD,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4001_9.06,-74.38086181,39.40120235,800-812 MOSS MILL RD,HAMMONTON TOWN,17,1990,2,RES1,3001 -0113_4001_9.07,-74.51573198,39.32747333,796 MOSS MILL RD,HAMMONTON TOWN,17,2003,1,GOV1,3004 -0113_4003_1,-74.75019028,39.44674378,654 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4003_10,-74.49945502,39.44600648,21 8TH ST,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_4003_11,-74.5069195,39.339579,27 8TH ST,HAMMONTON TOWN,17,2010,1,RES1,3001 -0113_4003_2,-74.68406,39.396394,660 S EGG HARBOR RD,HAMMONTON TOWN,,1970,1,RES1,3001 -0113_4003_3,-74.49320664,39.33251818,810 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4003_8,-74.76561513,39.63518511,862 S EGG HARBOR RD,HAMMONTON TOWN,16,1935,1,GOV1,3004 -0113_4003_9,-74.50969611,39.43553457,15 8TH ST,HAMMONTON TOWN,,0,1,RES3A,3001 -0113_4004_1,-74.87007944,39.56132829,21 WEYMOUTH RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4005_1,-74.64782266,39.51984599,900 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4005_2,-74.48916267,39.4652565,950 S EGG HARBOR RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4005_6,-74.66492343,39.46247617,1124 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4006_2,-74.59109508,39.32605027,1168 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4006_3,-74.57757741,39.53634883,1170 S WHITE HORSE PK,HAMMONTON TOWN,,1968,1,RES1,3001 -0113_4009_1,-74.8871115,39.557249,100 9TH ST,HAMMONTON TOWN,,1992,1,RES1,3001 -0113_401_2,-74.51546518,39.33008902,970 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_401_3,-74.80941985,39.62994496,958 12TH ST,HAMMONTON TOWN,,0,1,RES3A,3001 -0113_401_8,-74.50384274,39.33366817,977 11TH ST,HAMMONTON TOWN,14,2000,1,RES1,3001 -0113_4010_1,-74.46940838,39.53970952,51 MAXWELL ST,HAMMONTON TOWN,17,1860,1,RES1,3001 -0113_4010_2,-74.87474337,39.49626936,55 WEYMOUTH RD,HAMMONTON TOWN,17,1960,1,RES1,3004 -0113_4010_3,-74.52126134,39.39860194,60 8TH ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_4011_5,-74.76234284,39.43031701,28 MAXWELL ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4011_6,-74.5657044,39.35340049,1011 READING AVE,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_4011_8,-74.516603,39.439249,1111 READING AVE,HAMMONTON TOWN,,1969,1,RES1,3001 -0113_4012_1,-74.86340417,39.43851149,705 S 1ST RD,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4012_11,-74.7715815,39.3158845,101 8TH ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_4012_12,-74.49746172,39.42573885,111 8TH ST,HAMMONTON TOWN,,1970,1,GOV1,3004 -0113_4012_13,-74.48083143,39.35006982,137 8TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4012_16,-74.67513368,39.37468744,165 8TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_4012_17,-74.63093194,39.41199667,831 S 1ST RD,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4012_18,-74.596116,39.3111105,827 S 1ST RD,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_4012_19,-74.46857042,39.456343,821 S 1ST RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4012_21,-74.55461403,39.47340096,813 S 1ST RD,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4012_25,-74.42171,39.3729925,801 S 1ST RD,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_4012_26,-74.53654341,39.40743978,777 S 1ST RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_4012_26.03,-74.607116,39.393577,10 SAMANTHA DR,HAMMONTON TOWN,17,2017,1,RES1,3001 -0113_4012_26.04,-74.72944082,39.45325149,14 SAMANTHA DR,HAMMONTON TOWN,17,2015,1,GOV1,3004 -0113_4012_26.05,-74.60484996,39.38650384,18 SAMANTHA DR,HAMMONTON TOWN,18,2008,1,GOV1,3004 -0113_4012_26.06,-74.610615,39.3918785,22 SAMANTHA DR,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4012_27,-74.61919262,39.43937454,767 S 1ST RD,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_4012_28,-74.69806657,39.57712584,755 S 1ST RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_4012_29,-74.46539518,39.34528193,745 S 1ST RD,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_4012_4,-74.63714163,39.36465582,480 9TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4012_6,-74.379834,39.4171545,466 9TH ST,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4012_7.01,-74.94972922,39.50822379,460 9TH ST,HAMMONTON TOWN,17,1992,1,GOV1,3004 -0113_4012_7.02,-74.3749015,39.417504,452 9TH ST,HAMMONTON TOWN,17,1993,1,GOV1,3004 -0113_4012_7.03,-74.46214865,39.54608768,444 9TH ST,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_4012_7.04,-74.56562,39.542318,436 9TH ST,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_4012_7.06,-74.50390887,39.40982495,414 9TH ST,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_4012_7.07,-74.53647142,39.4041254,23 SAMANTHA DR,HAMMONTON TOWN,18,2007,1,RES1,3001 -0113_4012_8,-74.55097,39.3633405,300 9TH ST,HAMMONTON TOWN,,1992,1,RES1,3001 -0113_4013_1,-74.93638925,39.51868418,951 READING AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4013_10,-74.6106895,39.380422,847 S 1ST RD,HAMMONTON TOWN,17,1973,1,RES1,3002 -0113_4013_10.01,-74.52649185,39.49006919,849 S 1ST RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4013_11,-74.81838589,39.39168098,851 S 1ST RD,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4013_12,-74.75629982,39.4536161,855 S 1ST RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4013_13,-74.87766991,39.59162484,875 S 1ST RD,HAMMONTON TOWN,17,1948,1,GOV1,3004 -0113_4013_14,-74.71444733,39.46514306,881 S 1ST RD,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_4013_16,-74.89049663,39.4730588,175 WEYMOUTH RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4013_17,-74.604797,39.3216065,885 S 1ST RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4013_18,-74.6385005,39.343933,191 WEYMOUTH RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4013_2,-74.59999914,39.32235646,111 WEYMOUTH RD,HAMMONTON TOWN,,1969,1,RES1,3001 -0113_4013_3,-74.38979034,39.39073553,118 8TH ST,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_4013_9,-74.48244093,39.33974384,843 S 1ST RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4014_10,-74.74956499,39.39095483,182 WEYMOUTH RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_4014_11,-74.55460968,39.36963153,190 WEYMOUTH RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_4014_12,-74.5384792,39.37151829,192 WEYMOUTH RD,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4014_13,-74.50814914,39.38507599,194 WEYMOUTH RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_4014_14,-74.54552699,39.38444834,196 WEYMOUTH RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4014_15,-74.49751216,39.32967901,200 WEYMOUTH RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_4014_16,-74.59703115,39.37956674,184 WEYMOUTH RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4014_16.02,-74.50139653,39.50207026,10 BOWLING LN,HAMMONTON TOWN,18,2006,1,RES1,3001 -0113_4014_16.03,-74.69643985,39.63453728,5 BOWLING LN,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_4014_16.04,-74.4358985,39.371065,3 BOWLING LN,HAMMONTON TOWN,17,2017,1,RES1,3001 -0113_4014_17.01,-74.59999648,39.3792025,1104 READING AVE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4014_17.02,-74.6174865,39.370244,1108 READING AVE,HAMMONTON TOWN,17,2004,1,REL1,3004 -0113_4014_17.03,-74.5792895,39.3825075,1112 READING AVE,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4014_17.04,-74.44101345,39.37150925,1120 READING AVE,HAMMONTON TOWN,17,2003,1,GOV1,3004 -0113_4014_2,-74.3664525,39.4077055,104 WEYMOUTH RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4014_3.01,-74.60575069,39.37260629,1014 READING AVE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4014_3.02,-74.59321266,39.37793128,1018 READING AVE,HAMMONTON TOWN,17,2004,1,GOV1,3004 -0113_4014_3.03,-74.601395,39.3831075,1022 READING AVE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4014_3.04,-74.5997575,39.371331,1026 READING AVE,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4014_3.05,-74.61657645,39.37405254,1030 READING AVE,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4014_4,-74.61206239,39.38424304,160 WEYMOUTH RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4014_6,-74.437158,39.368862,166 WEYMOUTH RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4014_7,-74.6445342,39.37783758,170 WEYMOUTH RD,HAMMONTON TOWN,17,1966,1,RES3A,3001 -0113_4014_8,-74.7691245,39.3300995,176 WEYMOUTH RD,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_4014_9,-74.606377,39.386699,180 WEYMOUTH RD,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_403_1,-74.52799333,39.46311398,900 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_403_10,-74.821506,39.6532905,948 12TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_403_11,-74.92412846,39.50769372,100 TROOPER LN,HAMMONTON TOWN,,1965,1,RES1,3001 -0113_403_2,-74.83186301,39.64392433,130 S 2ND RD,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_403_3,-74.53325413,39.30552344,140-150 S 2ND RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_403_4,-74.53334272,39.38626947,160 S 2ND RD {DUMP},HAMMONTON TOWN,,1955,2,RES1,3001 -0113_403_5,-74.41563665,39.36663977,190 S 2ND RD,HAMMONTON TOWN,,1958,1,RES1,3001 -0113_403_6,-74.54864754,39.36938013,202 S 2ND RD,HAMMONTON TOWN,17,1958,2,RES1,3001 -0113_403_7,-74.6018005,39.410533,208 S 2ND RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_403_8,-74.40363969,39.38177962,909 11TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_403_9,-74.80056329,39.38011903,935 11TH ST,HAMMONTON TOWN,,1985,1,RES1,3001 -0113_4101_1,-74.4299695,39.3646205,HAM LAKE & W H PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4102_10,-74.6027174,39.31898418,340 LAKEVIEW DR,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_4102_11,-74.364947,39.40925,350 LAKEVIEW DR,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_4102_14,-74.52586848,39.39774217,800 S WHITE HORSE PK,HAMMONTON TOWN,,1998,1,RES1,3001 -0113_4102_15,-74.505498,39.4321205,820 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4102_2,-74.4888135,39.451791,140 CYPRESS CT,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_4102_3.02,-74.490261,39.4361115,5 MILL RUN DR,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_4102_3.03,-74.507849,39.32912,801 MOSS MILL RD,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4102_3.04,-74.75391708,39.35174315,811 MOSS MILL RD,HAMMONTON TOWN,17,1987,2,RES1,3001 -0113_4102_3.05,-74.8815945,39.598048,7 WEYMOUTH RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4102_3.06,-74.880172,39.594061,5 WEYMOUTH RD,HAMMONTON TOWN,,1979,1,RES1,3001 -0113_4102_3_C0001,-74.405973,39.382356,860A S WHITE HORSE PK,HAMMONTON TOWN,,1999,1,RES1,3001 -0113_4102_3_C0002,-74.5358485,39.3907615,858 S WHITE HORSE PIKE-#6,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0003,-74.5240228,39.3864975,858 S WHITE HORSE PIKE-#5,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0004,-74.5383715,39.3912635,858 S WHITE HORSE PIKE-#4,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0005,-74.51987668,39.44431712,858 S WHITE HORSE PIKE-#3,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0006,-74.92426027,39.50668386,858 S WHITE HORSE PIKE-#2,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0007,-74.53164614,39.38800532,858 S WHITE HORSE PIKE-#1,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0008,-74.63905266,39.52310602,856 S WHITE HORSE PIKE-#1,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0009,-74.51292795,39.43466935,"856 S WHITE HORSE PK,#5/6",HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0010,-74.72601967,39.586268,"856 S WHITE HORSE PK,#3/4",HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0011,-74.51587454,39.32280352,"856 S WHITE HORSE PK, #2",HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0012,-74.7922665,39.64142133,854 S WHITE HORSE PIKE,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0013,-74.54023015,39.5349351,854 S WHITE HORSE PK,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0014,-74.642529,39.5335065,854 S WHITE HORSE PIKE,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_3_C0020,-74.861237,39.597607,852 S WHITE HORSE PK,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4102_4,-74.55137613,39.40022999,146 CYPRESS CT,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4102_5.01,-74.4004035,39.391539,288 LAKEVIEW DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_4102_5.02,-74.710341,39.5720625,294 LAKEVIEW DR,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_4102_6,-74.7757555,39.668044,850 S WHITE HORSE PK,HAMMONTON TOWN,,1965,1,RES1,3001 -0113_4102_7,-74.366809,39.4227405,280 LAKEVIEW DR,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_4102_8,-74.83278209,39.37992217,320 LAKEVIEW DR,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4102_9,-74.55011755,39.36175158,330 LAKEVIEW DR,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4103_1,-74.8446355,39.5594585,880 S WHITE HORSE PK,HAMMONTON TOWN,,1961,1,RES1,3001 -0113_4104_1,-74.604083,39.329304,893 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4104_14,-74.5178685,39.3954065,849 S WHITE HORSE PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4104_16,-74.49697242,39.33313034,847 S WHITE HORSE PK,HAMMONTON TOWN,,2008,1,RES1,3001 -0113_4104_19,-74.51071077,39.32681817,821 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4104_2,-74.84004343,39.4189567,885 S WHITE HORSE PK,HAMMONTON TOWN,,1980,1,RES1,3001 -0113_4104_8,-74.6738205,39.4575265,851 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES3A,3001 -0113_4110_1,-74.67138281,39.46430606,777 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4110_3,-74.90595433,39.4867365,771 S WHITE HORSE PK,HAMMONTON TOWN,45,1964,4,RES1,3001 -0113_4110_4,-74.481688,39.443159,663 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4110_4.01,-74.69256246,39.4482648,755 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4111_1,-74.89890799,39.5385621,5 LAKESHORE DR,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4111_10,-74.60522563,39.34385471,69 LAKESHORE DR,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4111_13,-74.81627184,39.65337332,73 LAKESHORE DR,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_4111_13.01,-74.56766976,39.35489362,75 LAKESHORE DR,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4111_14,-74.50672242,39.33992633,77 LAKESHORE DR,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_4111_15,-74.3996992,39.38510518,83 LAKESHORE DR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4111_16,-74.616527,39.3124405,97 LAKESHORE DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4111_18,-74.52404084,39.31814405,101 LAKESHORE DR,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4111_19,-74.80452687,39.35377289,105 LAKESHORE DR,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4111_2,-74.63022367,39.36143956,7 LAKESHORE DR,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4111_20,-74.4480195,39.37092,109 LAKESHORE DR,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_4111_21,-74.470086,39.3451175,113 LAKESHORE DR,HAMMONTON TOWN,17,1978,1,GOV1,3004 -0113_4111_22,-74.8035595,39.6380695,119 LAKESHORE DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4111_23,-74.50522434,39.33369449,145 LAKESHORE DR,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_4111_24,-74.53318968,39.3794492,149 LAKESHORE DR,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_4111_28,-74.63472637,39.3600523,169 LAKESHORE DR,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4111_29,-74.503467,39.5033085,173 LAKESHORE DR,HAMMONTON TOWN,17,1984,1,RES1,3004 -0113_4111_3,-74.5240395,39.38303033,11 LAKESHORE DR,HAMMONTON TOWN,17,1968,1,GOV1,3004 -0113_4111_4,-74.69086027,39.43828871,17 LAKESHORE DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4111_6,-74.6446945,39.368038,25 LAKESHORE DR,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4111_8,-74.60412833,39.31598689,37 LAKESHORE DR,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4111_9,-74.57451312,39.35676068,47 LAKESHORE DR,HAMMONTON TOWN,17,1981,1,GOV1,3004 -0113_4112_1,-74.6834565,39.4992565,110 LAKESHORE DR,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4112_10,-74.64410616,39.53313598,170 LAKESHORE DR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4112_11,-74.585907,39.35981,137 FERNWOOD DR,HAMMONTON TOWN,16,1978,1,RES1,3001 -0113_4112_13,-74.5706245,39.3603025,133 FERNWOOD DR,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4112_14,-74.46691955,39.48958971,131 FERNWOOD DR,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_4112_15,-74.51701034,39.39759443,129 FERNWOOD DR,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4112_16,-74.48452931,39.33597485,125 FERNWOOD DR,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4112_18,-74.50776759,39.33573466,100 LAKESHORE DR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4112_2,-74.61785683,39.459425,116 LAKESHORE DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4112_3,-74.923807,39.507392,122 LAKESHORE DR,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_4112_4,-74.37375928,39.41804159,128 LAKESHORE DR,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4112_5,-74.553455,39.357713,132 LAKESHORE DR,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_4112_6,-74.70705317,39.36086312,136 LAKESHORE DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4112_7,-74.79897687,39.62915891,140 LAKESHORE DR,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_4112_8,-74.5208935,39.4461625,150 LAKESHORE DR,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4113_1,-74.5065845,39.4788965,68 LAKESHORE DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4113_10,-74.80483935,39.63158853,119 WEST LN,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_4113_11,-74.529523,39.4000045,20 LAKESHORE DR,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4113_12,-74.45524116,39.4992482,32 LAKESHORE DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4113_13,-74.648354,39.4022335,40 LAKESHORE DR,HAMMONTON TOWN,17,2013,1,RES1,3001 -0113_4113_13.01,-74.87224738,39.52857437,46 LAKESHORE DR,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4113_14,-74.79693315,39.63555681,50 LAKESHORE DR,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4113_15,-74.702065,39.634951,56 LAKESHORE DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4113_16,-74.8775125,39.5982485,58 LAKESHORE DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4113_2,-74.5534245,39.392478,126 FERNWOOD DR,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4113_3,-74.49011384,39.33413257,130 FERNWOOD DR,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_4113_4,-74.61984546,39.36527715,134 FERNWOOD DR,HAMMONTON TOWN,17,1980,1,GOV1,3004 -0113_4113_5,-74.62389857,39.38281857,138 FERNWOOD DR,HAMMONTON TOWN,17,1970,1,GOV1,3004 -0113_4113_6,-74.61753065,39.62170527,139 WEST LN,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_4113_7,-74.51977267,39.39667502,131 WEST LN,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4113_8,-74.80072867,39.61510551,129 WEST LN,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4113_9,-74.60774614,39.38556095,121 WEST LN,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_4114_1,-74.50259281,39.32787667,100 WEST LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4114_10,-74.59334,39.3160025,239 LAKEVIEW DR,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4114_11,-74.58040688,39.44512144,235 LAKEVIEW DR,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4114_13,-74.67242697,39.6147487,233 LAKEVIEW DR,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4114_2,-74.56577234,39.47610757,106 WEST LN,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4114_4,-74.449275,39.3724995,120 WEST LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4114_5,-74.47750551,39.34140684,130 WEST LN,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4114_6,-74.57929211,39.33582505,140 WEST LN,HAMMONTON TOWN,17,1971,1,COM3,3004 -0113_4114_7,-74.518135,39.3980105,265 LAKEVIEW DR,HAMMONTON TOWN,17,1959,1,RES1,3001 -0113_4114_8,-74.7038965,39.5720545,255 LAKEVIEW DR,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_4114_9,-74.63278886,39.36750247,245 LAKEVIEW DR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4115_1,-74.81020335,39.63332532,200 LAKESHORE DR,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_4115_10,-74.59531055,39.50990034,301 LAKEVIEW DR,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_4115_11,-74.87859003,39.44422624,1 KINGS LN,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4115_12,-74.52351299,39.39519028,3 KINGS LN,HAMMONTON TOWN,17,1984,1,COM4,3004 -0113_4115_13,-74.518004,39.390652,7 KINGS LN,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4115_14,-74.52489745,39.46565232,9 KINGS LN,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_4115_15,-74.602602,39.39166902,11 KINGS LN,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_4115_16,-74.55796708,39.47739177,15 KINGS LN,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4115_17.01,-74.42837917,39.36684371,206 LAKESHORE DR,HAMMONTON TOWN,,1972,1,RES1,3001 -0113_4115_2,-74.56964445,39.50017484,204 LAKESHORE DR,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_4115_3,-74.80870021,39.6404407,12 QUEENS LN,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_4115_4,-74.4871236,39.33640518,16 QUEENS LN,HAMMONTON TOWN,17,1968,1,GOV1,3004 -0113_4115_5,-74.75434623,39.43165672,18 QUEENS LN,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_4115_6,-74.37364184,39.40068049,22 QUEENS LN,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_4115_7,-74.7227775,39.458586,319 LAKEVIEW DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4115_8,-74.51049336,39.40092026,305 LAKEVIEW DR,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_4115_9,-74.880133,39.450618,303 LAKEVIEW DR,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4116_1,-74.6402969,39.3798932,199 LAKESHORE DR,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_4116_2,-74.57661867,39.5431675,205 LAKESHORE DR,HAMMONTON TOWN,18,2005,1,RES1,3001 -0113_4116_3,-74.49840461,39.32965467,213 LAKESHORE DR,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4116_4,-74.83085738,39.39356176,222 LAKE TERR,HAMMONTON TOWN,18,1990,1,RES1,3004 -0113_4116_5,-74.46592279,39.54107245,221 LAKE TERR,HAMMONTON TOWN,18,1975,1,RES1,3001 -0113_4116_6,-74.768881,39.32233,225 LAKE TERR,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4117_1,-74.57551584,39.41678497,11 QUEENS LN,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4117_10,-74.82763058,39.41134718,349 EAST LN,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_4117_11,-74.80965508,39.59094623,341 EAST LN,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_4117_2,-74.65754104,39.36175933,214 LAKESHORE DR,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_4117_4,-74.83144835,39.3757978,230 LAKESHORE DR,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_4117_6,-74.92372971,39.50802511,240 LAKESHORE DR,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_4117_7,-74.51214734,39.38578674,250 LAKESHORE DR,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4117_8,-74.510778,39.333279,260 LAKESHORE DR,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4117_9,-74.589563,39.4908485,367 EAST LN,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_4118_1,-74.7913315,39.64341333,21 QUEENS LN,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4118_10,-74.55007058,39.54374302,355 LAKEVIEW DR,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_4118_11,-74.59663763,39.35943631,345 LAKEVIEW DR,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_4118_12,-74.5042679,39.33250885,341 LAKEVIEW DR,HAMMONTON TOWN,17,1969,1,GOV1,3004 -0113_4118_12.01,-74.49664104,39.46448038,337 LAKEVIEW DR,HAMMONTON TOWN,17,1969,1,RES3A,3001 -0113_4118_13,-74.8167165,39.641863,325 LAKEVIEW DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4118_2,-74.88546597,39.46288665,338 EAST LN,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4118_3,-74.3815915,39.415609,344 EAST LN,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_4118_4,-74.60431806,39.42790978,350 EAST LN,HAMMONTON TOWN,17,1963,1,REL1,3003 -0113_4118_6,-74.4879835,39.4313805,360 EAST LN,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4118_7,-74.78812865,39.63485297,364 EAST LN,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_4118_8,-74.57087715,39.35103576,367 LAKEVIEW DR,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4118_9,-74.77829516,39.62580449,361 LAKEVIEW DR,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4119_1,-74.56731943,39.47764364,260 LAKEVIEW DR,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_4119_2,-74.55956349,39.36955788,250 LAKEVIEW DR,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_4119_3,-74.459403,39.3531695,240 LAKEVIEW DR,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4119_4,-74.515997,39.32902776,220 LAKEVIEW DR,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4119_5,-74.49290031,39.44673824,125 CYPRESS CT,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4119_6,-74.39113967,39.39227049,129 CYPRESS CT,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4119_7,-74.6091195,39.3258945,133 CYPRESS CT,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4120_1,-74.56348681,39.47778404,136 CYPRESS CT,HAMMONTON TOWN,17,1975,1,IND2,3002 -0113_4120_10,-74.47614469,39.34011348,14 MILL RUN DR,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4120_11,-74.68604233,39.49596227,16 MILL RUN DR,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4120_12,-74.9275135,39.509745,18 MILL RUN DR,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4120_13,-74.5851711,39.42336042,20 MILL RUN DR,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4120_2,-74.51385844,39.40112366,132 CYPRESS CT,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4120_3,-74.5581955,39.54553,124 CYPRESS CT,HAMMONTON TOWN,17,1974,1,RES3A,3001 -0113_4120_4,-74.63041552,39.4332425,116 CYPRESS CT,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4120_5,-74.59115749,39.33469437,108 CYPRESS CT,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_4120_6,-74.93047377,39.5129461,100 CYPRESS CT,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4120_7,-74.4608871,39.34568067,121 POPLAR ST,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4120_9,-74.75894704,39.43261691,9 MOSS VIEW LN,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_4121_1,-74.643381,39.366756,216 LAKEVIEW DR,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_4121_2,-74.639854,39.5301715,208 LAKEVIEW DR,HAMMONTON TOWN,17,1977,1,COM3,3004 -0113_4121_3,-74.45161033,39.47895726,200 LAKEVIEW DR,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4121_4,-74.51563233,39.44345301,109 POPLAR ST,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_4121_5,-74.527169,39.3959215,113 CYPRESS CT,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_4121_6,-74.60489734,39.32524296,117 CYPRESS CT,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4122_1,-74.7595578,39.44554015,118 POPLAR ST,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_4122_10,-74.60900503,39.32630482,707 MOSS MILL RD,HAMMONTON TOWN,17,1965,1,RES3A,3001 -0113_4122_11,-74.8297545,39.391684,713 MOSS MILL RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4122_13,-74.59916649,39.37325972,725 MOSS MILL RD,HAMMONTON TOWN,17,1975,1,RES1,3004 -0113_4122_14,-74.638626,39.5311785,731 MOSS MILL RD,HAMMONTON TOWN,17,1975,1,RES3A,3001 -0113_4122_15,-74.5038495,39.429994,735 MOSS MILL RD,HAMMONTON TOWN,17,1980,1,COM1,3004 -0113_4122_16,-74.511132,39.328243,1 MOSS VIEW LN,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_4122_17,-74.62620937,39.46292269,122 POPLAR ST,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_4122_18,-74.714296,39.464689,120 POPLAR ST,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4122_2,-74.605814,39.3329715,116 POPLAR ST,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_4122_3,-74.55952704,39.39751038,114 POPLAR ST,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_4122_4,-74.59789646,39.38111704,112 POPLAR ST,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_4122_5,-74.502361,39.41175,110 POPLAR ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4122_6,-74.5353007,39.45165625,124 LAKEVIEW DR,HAMMONTON TOWN,17,1971,1,GOV1,3004 -0113_4122_7,-74.80423398,39.64447668,120 LAKEVIEW DR,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_4122_8,-74.7262105,39.454066,112 LAKEVIEW DR,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4122_9,-74.64820034,39.53386047,100 LAKEVIEW DR,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4123_1,-74.52839792,39.38487567,751 MOSS MILL RD,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4123_10,-74.8345025,39.4039205,8 MOSS VIEW LN,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_4123_11,-74.5454045,39.4717745,6 MOSS VIEW LN,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4123_12,-74.6316815,39.352365,4 MOSS VIEW LN,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_4123_2,-74.50534259,39.32752134,755 MOSS MILL RD,HAMMONTON TOWN,17,1981,1,RES1,3001 -0113_4123_3,-74.75547768,39.45334256,759 MOSS MILL RD,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4123_4,-74.59963369,39.32248872,763 MOSS MILL RD,HAMMONTON TOWN,17,1988,1,RES1,3001 -0113_4123_6,-74.6814805,39.492761,6 MILL RUN DR,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4123_7,-74.92082121,39.48990375,8 MILL RUN DR,HAMMONTON TOWN,17,1983,1,REL1,3003 -0113_4123_8,-74.38385215,39.39684884,10 MILL RUN DR,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_4123_9,-74.67495958,39.35896178,12 MILL RUN DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4201_1,-74.6239825,39.3811065,2 8TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4201_3,-74.52962999,39.51135178,950 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4202_4,-74.4715265,39.3408045,1051 S WHP/1130 MOSS MILL,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4202_5,-74.93435228,39.49676417,1145 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4203_1,-74.37335425,39.4169774,1147 S WHITE HORSE PK,HAMMONTON TOWN,,1930,1,RES1,3001 -0113_4203_11,-74.9519035,39.496772,1181 S WHITE HORSE PK,HAMMONTON TOWN,,1991,1,RES1,3001 -0113_4203_3,-74.52069068,39.39966037,1144 MOSS MILL RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4203_4,-74.557297,39.508382,1150 MOSS MILL RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4203_5,-74.62664143,39.4234452,1151 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4203_6,-74.63226206,39.3611752,1155 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4204_10,-74.590375,39.3697865,502 BOYER AVE,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4204_10.01,-74.491914,39.477115,514 BOYER AVE,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4204_10.02,-74.62857323,39.35176031,510 BOYER AVE,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_4204_10.03,-74.550405,39.4067695,506 BOYER AVE,HAMMONTON TOWN,17,2004,1,GOV1,3004 -0113_4204_16,-74.79953628,39.62136574,251 7TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4204_18,-74.50910965,39.41843861,1137 MOSS MILL RD,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_4204_18.01,-74.72861646,39.45325385,1141 MOSS MILL RD,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4204_19,-74.43905756,39.36940843,1151 MOSS MILL RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_4204_19.01,-74.52389567,39.38535032,1159 MOSS MILL RD,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_4204_20,-74.50742502,39.32930084,1161 MOSS MILL RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4204_21,-74.74770698,39.63631244,1165 MOSS MILL RD,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4204_21.01,-74.883983,39.5660075,1171 MOSS MILL RD,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4204_22,-74.50133968,39.41562203,1181 MOSS MILL RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_4204_23,-74.51375428,39.43924418,1185 MOSS MILL RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4204_24,-74.80524864,39.64486595,1191 MOSS MILL RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4204_25,-74.509113,39.406474,1199 MOSS MILL RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_4204_28,-74.71092598,39.42893374,201 7TH ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_4204_3,-74.4775315,39.341091,584 BOYER AVE,HAMMONTON TOWN,17,1953,1,RES1,3001 -0113_4204_4,-74.50541877,39.53006767,580 BOYER AVE,HAMMONTON TOWN,17,1988,1,GOV1,3004 -0113_4204_5,-74.4986785,39.329248,574 BOYER AVE,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_4204_6,-74.48948532,39.43893879,568 BOYER AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_4204_7,-74.6487291,39.43223522,562 BOYER AVE,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_4204_9.01,-74.62775794,39.43262444,520 BOYER AVE,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_4204_9.03,-74.76465423,39.35015589,526 BOYER AVE,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4301_1,-74.5895415,39.347736,151 MAIN RD,HAMMONTON TOWN,,1970,1,RES1,3001 -0113_4301_2_C0171,-74.49361912,39.49398524,171 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0172,-74.58938102,39.3548674,172 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0173,-74.58202797,39.34146608,173 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0174,-74.62826615,39.43221496,174 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0175,-74.5124215,39.324342,175 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0176,-74.7719801,39.32474831,176 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0177,-74.5221555,39.419955,177 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0178,-74.69069557,39.35485335,178 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0181,-74.509334,39.4376665,181 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,IND2,3004 -0113_4301_2_C0182,-74.59385017,39.34795502,182 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0183,-74.90560318,39.53481498,183 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0184,-74.5127535,39.4048875,184 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0185,-74.64219732,39.43342078,185 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0186,-74.48701427,39.4419354,186 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0187,-74.80092553,39.63448349,187 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0188,-74.57102913,39.36706639,188 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0191,-74.81812543,39.65002578,191 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0192,-74.58019511,39.31156135,192 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0193,-74.48657924,39.33755133,193 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0194,-74.63525622,39.39026146,194 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0195,-74.59806822,39.32420246,195 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0196,-74.59014412,39.33390032,196 YORKTOWN BLVD,HAMMONTON TOWN,17,1987,1,GOV1,3004 -0113_4301_2_C0201,-74.59833756,39.36476769,201 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0202,-74.5032025,39.326425,202 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0203,-74.8815105,39.59765,203 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0204,-74.50138703,39.41168482,204 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0205,-74.87183666,39.59303047,205 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0206,-74.6498825,39.349705,206 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,GOV1,3004 -0113_4301_2_C0207,-74.745405,39.446227,207 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_2_C0208,-74.607176,39.3988555,208 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4301_3.01,-74.60557767,39.37157519,11 DOGWOOD LANE,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_4301_3.02,-74.47250592,39.49321169,15 DOGWOOD LANE,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_4301_3.03,-74.470962,39.4921395,19 DOGWOOD LANE,HAMMONTON TOWN,17,2011,1,RES1,3001 -0113_4301_3.04,-74.467854,39.4907855,21 DOGWOOD LANE,HAMMONTON TOWN,17,2008,1,RES1,3001 -0113_4301_3.05,-74.4729015,39.4905255,23 DOGWOOD LANE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4301_3.06,-74.46833433,39.48901629,25 DOGWOOD LANE,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_4301_3.07,-74.48653369,39.49579352,27 DOGWOOD LANE,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_4301_3.08,-74.49546983,39.47033349,31 DOGWOOD LANE,HAMMONTON TOWN,17,2011,1,RES1,3001 -0113_4301_3.09,-74.50742892,39.48353096,35 DOGWOOD LANE,HAMMONTON TOWN,17,2010,1,RES1,3001 -0113_4301_3.10,-74.50452736,39.48075182,39 DOGWOOD LANE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4301_3.11,-74.5203204,39.471478,41 DOGWOOD LANE,HAMMONTON TOWN,17,2011,1,RES1,3001 -0113_4301_3.15,-74.50972027,39.48682636,61 DOGWOOD LANE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4301_4,-74.51041885,39.4034539,195 PLEASANT MILLS RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_4301_5,-74.50684106,39.32281236,169 PLEASANT MILLS RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4301_6,-74.51834716,39.32308301,163 PLEASANT MILLS RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4301_7,-74.78240716,39.6566063,153 PLEASANT MILLS RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4301_8,-74.37543502,39.41924343,151 PLEASANT MILLS RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_4301_9.01,-74.6120628,39.32389312,240 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.02,-74.60440152,39.32191616,238 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.03,-74.605453,39.322226,236 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.04,-74.605856,39.325564,234 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.05,-74.59280791,39.32806183,232 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.06,-74.59358875,39.32899895,230 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.07,-74.58942924,39.32984098,228 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.08,-74.586686,39.3318125,226 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.09,-74.576917,39.3325925,224 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,COM1,3004 -0113_4301_9.11,-74.57936241,39.33311068,220 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.12,-74.5958955,39.3177945,218 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.13,-74.58879977,39.32037584,216 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.14,-74.5905835,39.3227065,206 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.15,-74.58655905,39.32315332,204 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.16,-74.589349,39.325351,202 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4301_9.17,-74.591575,39.32127,200 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,GOV1,3004 -0113_4301_9.18,-74.587617,39.325578,23 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4302_1,-74.51252508,39.40525534,218 PLEASANT MILLS,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_4302_1.01,-74.511057,39.4777645,220 PLEASANT MILLS RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4302_10,-74.57476024,39.35581818,14 PLEASANT MILLS RD,HAMMONTON TOWN,17,1836,1,RES1,3001 -0113_4302_11,-74.51702543,39.31845413,8 PLEASANT MILLS RD,HAMMONTON TOWN,17,1818,1,RES1,3001 -0113_4302_14,-74.83055812,39.63603986,649-655 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4302_17,-74.49268213,39.33240916,475 BOYER AVE,HAMMONTON TOWN,17,1981,1,RES1,3001 -0113_4302_18.01,-74.59790077,39.3643744,471 BOYER AVE,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_4302_2,-74.50833834,39.43457954,212 PLEASANT MILLS RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4302_20,-74.55250056,39.43631184,465 BOYER AVE,HAMMONTON TOWN,13,1975,1,RES1,3001 -0113_4302_24,-74.56757229,39.55613679,417 BOYER AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4302_26,-74.510338,39.322959,405 BOYER AVE,HAMMONTON TOWN,,1980,1,GOV1,3004 -0113_4302_27,-74.46275087,39.46596431,391 BOYER AVE,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_4302_28,-74.577237,39.3844785,401 BOYER AVE,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4302_29,-74.790365,39.6443055,383 BOYER AVE,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_4302_3,-74.7509165,39.5969775,206 PLEASANT MILLS RD,HAMMONTON TOWN,17,1954,1,GOV1,3004 -0113_4302_30,-74.6141025,39.4095415,375 BOYER AVE,HAMMONTON TOWN,17,2018,1,RES1,3001 -0113_4302_31,-74.49088633,39.33949455,353 BOYER AVE,HAMMONTON TOWN,50,1964,1,RES1,3001 -0113_4302_32,-74.57594778,39.33940365,331 BOYER AVE,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_4302_34,-74.6100354,39.3836329,321 BOYER AVE,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_4302_35,-74.58964645,39.45765071,301 BOYER AVE,HAMMONTON TOWN,14,1940,1,RES1,3001 -0113_4302_4,-74.4966375,39.335877,200 PLEASANT MILLS RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4302_6,-74.8309025,39.387966,114 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4302_8,-74.503278,39.4097725,32 PLEASANT MILLS RD,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_4302_9,-74.8934325,39.479958,24 PLEASANT MILLS RD,HAMMONTON TOWN,17,1875,1,RES1,3001 -0113_4303_1,-74.635595,39.6255455,238 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4303_10,-74.61411315,39.52493115,358 BOYER AVE,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_4303_11,-74.44786,39.375416,370 BOYER AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4303_12,-74.4628575,39.347035,380 BOYER AVE,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_4303_13,-74.45049581,39.35709074,420 BOYER AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4303_16,-74.55516226,39.39014337,470 BOYER AVE,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_4303_17,-74.4441275,39.3699205,462 BOYER AVE,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_4303_20,-74.50355104,39.33998885,BOYER AVE REAR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4303_3,-74.49223098,39.43413701,312 BOYER AVE,HAMMONTON TOWN,16,1937,1,RES1,3001 -0113_4303_3.01,-74.93913783,39.52327564,326 BOYER AVE,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_4303_3.02,-74.84075112,39.63436971,308 BOYER AVE,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_4303_4,-74.494187,39.419734,310 BOYER AVE,HAMMONTON TOWN,16,1957,1,RES1,3001 -0113_4303_5,-74.75389397,39.45274118,318 BOYER AVE,HAMMONTON TOWN,16,1969,1,RES1,3001 -0113_4303_6,-74.4998855,39.4697455,332 BOYER AVE,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_4303_7,-74.50006552,39.38186791,344 BOYER AVE,HAMMONTON TOWN,17,1930,1,GOV1,3004 -0113_4304_1,-74.46921923,39.53873755,34 ROCHA CT,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4304_10,-74.50875121,39.49110903,205 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_11,-74.49120826,39.49788383,207 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_12,-74.51051589,39.48820466,209 JAMESTOWN BLVD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4304_13,-74.48352698,39.51289701,211 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_14,-74.52948733,39.51109381,213 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_15,-74.48890461,39.52292814,215 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_16,-74.50985024,39.51343172,217 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_17,-74.4948965,39.5305105,219 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_18,-74.5363299,39.31451373,36 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_19,-74.5336834,39.31379166,38 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_2,-74.49240188,39.52681319,32 ROCHA CT,HAMMONTON TOWN,17,2004,1,GOV1,3004 -0113_4304_20,-74.53171049,39.30778238,40 ROCHA CT,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4304_21,-74.53568612,39.31454774,41 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_22,-74.6098565,39.316208,39 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_23,-74.60700425,39.30772341,37 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_24,-74.53475172,39.31318646,35 ROCHA CT,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4304_25,-74.53384064,39.31370143,33 ROCHA CT,HAMMONTON TOWN,17,2003,1,GOV1,3004 -0113_4304_26,-74.598295,39.3129155,29 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_27,-74.61865,39.3124675,23 ROCHA COURT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_28,-74.596287,39.31718,5 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES3A,3001 -0113_4304_29,-74.5968745,39.31699867,3 CENTENNIAL DR,HAMMONTON TOWN,47,2003,1,RES1,3001 -0113_4304_3,-74.49070488,39.5189694,30 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_30,-74.60586,39.307925,1 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_31,-74.5926474,39.3118461,243 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_32,-74.60669784,39.31683901,239 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_4,-74.499206,39.4994095,28 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_5,-74.50916082,39.48878453,26 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_6,-74.5069575,39.491821,24 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_7,-74.50818778,39.49351086,22 ROCHA CT,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_8,-74.62715612,39.35471482,201 JAMESTOWN BLVD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4304_9,-74.505781,39.4934435,203 JAMESTOWN BLVD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4305_1,-74.4655175,39.494067,10 DOGWOOD LANE,HAMMONTON TOWN,17,2015,1,GOV1,3004 -0113_4305_11,-74.4513525,39.5019125,58 DOGWOOD LANE,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_4305_2,-74.45150233,39.49574466,14 DOGWOOD LANE,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_4305_3,-74.45288652,39.49886831,18 DOGWOOD LANE,HAMMONTON TOWN,17,2015,1,RES1,3001 -0113_4305_6,-74.45243157,39.49995836,36 DOGWOOD LANE,HAMMONTON TOWN,17,2017,1,RES1,3001 -0113_4401_1,-74.4845395,39.3360905,699 N WHITE HORSE PK,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4401_10,-74.37231786,39.41576426,15 OAK RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4401_11.01,-74.4618778,39.35457316,17 OAK RD,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4401_12,-74.48400124,39.33648993,137 OAK RD,HAMMONTON TOWN,14,1960,1,RES1,3001 -0113_4401_13,-74.39404652,39.38881109,223 OAK RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4401_15,-74.4693865,39.3460755,351 OAK RD,HAMMONTON TOWN,17,2008,1,RES1,3001 -0113_4401_17,-74.82426783,39.573609,401 OAK RD,HAMMONTON TOWN,16,1900,1,RES1,3001 -0113_4401_18,-74.80168453,39.63721734,413 OAK RD,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_4401_3,-74.46684184,39.34654499,697 N WHITE HORSE PK,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_4401_4,-74.48475702,39.33622036,683 N WHITE HORSE PK,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_4401_6,-74.688381,39.3583195,625 N WHITE HORSE PK,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_4401_8,-74.4947105,39.3358165,11 OAK RD,HAMMONTON TOWN,17,1945,1,GOV1,3004 -0113_4402_1,-74.75540021,39.43219639,14 OAK RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4402_10,-74.67807455,39.35246703,287 PINE RD,HAMMONTON TOWN,17,1900,3,EDU1,3004 -0113_4402_11,-74.55291,39.3604315,281 PINE RD,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_4402_13,-74.44814885,39.49543855,235 PINE RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_4402_14,-74.36679912,39.41631121,205 PINE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4402_16,-74.92595259,39.52578405,181 PINE RD,HAMMONTON TOWN,17,1927,1,RES1,3001 -0113_4402_18,-74.7979833,39.53722884,163 PINE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4402_19,-74.497798,39.3369255,157 PINE RD,HAMMONTON TOWN,15,1960,1,RES1,3001 -0113_4402_20,-74.74390131,39.65661544,155 PINE RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4402_21,-74.92799082,39.50763101,149 PINE RD,HAMMONTON TOWN,17,1957,1,RES1,3001 -0113_4402_22,-74.67005328,39.54220724,145 PINE RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_4402_24.01,-74.5930865,39.326685,115 PINE RD,HAMMONTON TOWN,18,2005,1,RES1,3001 -0113_4402_24.02,-74.7530075,39.475195,131 PINE RD,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_4402_24.03,-74.52963368,39.39841658,137 PINE RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4402_25.01,-74.56518788,39.41339897,63 PINE RD,HAMMONTON TOWN,18,2004,1,RES1,3001 -0113_4402_25.02,-74.609185,39.3264475,49 PINE RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4402_25.03,-74.5719985,39.3374035,35 PINE RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4402_25.04,-74.56887131,39.35111543,21 PINE RD,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4402_26,-74.5628505,39.3641715,17 PINE RD,HAMMONTON TOWN,17,1954,1,GOV1,3004 -0113_4402_27,-74.421202,39.371235,15 PINE RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4402_28,-74.4905895,39.433353,11 PINE RD,HAMMONTON TOWN,17,1950,1,COM4,3004 -0113_4402_29,-74.5438165,39.3862815,9 PINE RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4402_3.01,-74.61197234,39.34214275,220 OAK RD,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4402_3.02,-74.4880845,39.337937,250 OAK RD,HAMMONTON TOWN,18,2009,2,RES1,3001 -0113_4402_31,-74.39023985,39.39204645,385 N WHITE HORSE PK,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_4402_33,-74.72382183,39.45957336,409 N WHITE HORSE PK,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4402_35,-74.4989425,39.3359815,423 N WHITE HORSE PK,HAMMONTON TOWN,,1964,1,RES1,3001 -0113_4402_36,-74.52429348,39.39523318,443 N WHITE HORSE PK,HAMMONTON TOWN,16,1900,1,RES1,3001 -0113_4402_38,-74.634835,39.5334125,463 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4402_39,-74.888657,39.47349116,475 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4402_4,-74.72641,39.4558755,234 OAK RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4402_40,-74.69333415,39.44713665,487 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4402_42.01,-74.50236765,39.41748701,507 N WHITE HORSE PK,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_4402_42.02,-74.86783046,39.45106575,515 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4402_43,-74.5121605,39.4484175,575 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4402_43.02,-74.56778995,39.34719589,20 OAK RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_4402_43.03,-74.57092284,39.34884849,28 OAK RD,HAMMONTON TOWN,17,2002,1,COM1,3004 -0113_4402_43.04,-74.57277644,39.34936913,36 OAK RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_4402_5,-74.60175871,39.32690773,276 OAK RD,HAMMONTON TOWN,17,2002,1,RES3A,3001 -0113_4402_5.01,-74.52951529,39.3956346,340 OAK RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_4402_5.02,-74.6103125,39.3286665,268 OAK RD,HAMMONTON TOWN,18,2007,1,RES1,3001 -0113_4402_6,-74.60911495,39.32377953,384 OAK RD,HAMMONTON TOWN,17,1998,1,RES3B,3001 -0113_4402_7,-74.5000495,39.3274365,390 OAK RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_4402_8,-74.66907281,39.41809043,410 N UNION RD AT PINE,HAMMONTON TOWN,14,1970,1,RES1,3001 -0113_4402_9,-74.494009,39.4950925,311 PINE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4501_1,-74.60082032,39.32946756,325 N WHITE HORSE PK,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_4501_1.03,-74.60362602,39.32928519,106 PINE RD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4501_10,-74.55735343,39.40730919,184 PINE RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4501_11,-74.5455915,39.3755845,200 PINE RD,HAMMONTON TOWN,18,1996,1,RES1,3001 -0113_4501_12,-74.4863612,39.35094082,232 PINE RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_4501_13,-74.67434733,39.5569115,282 PINE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4501_15,-74.468856,39.344097,304 PINE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4501_16,-74.55037834,39.47094868,310 PINE RD,HAMMONTON TOWN,17,1900,2,RES1,3002 -0113_4501_17,-74.63405131,39.42292345,312 PINE RD,HAMMONTON TOWN,17,1945,1,RES1,3001 -0113_4501_19,-74.48436784,39.33741492,334 PINE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4501_22,-74.86231833,39.56688351,296 N UNION RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4501_24,-74.48395881,39.43138847,375 BASIN RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4501_25,-74.9417259,39.52502331,351 BASIN RD,HAMMONTON TOWN,17,1964,2,RES1,3001 -0113_4501_26,-74.63474082,39.41851699,263 BASIN RD,HAMMONTON TOWN,17,1900,1,RES3A,3001 -0113_4501_27,-74.51533277,39.40270145,239 BASIN RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4501_27.01,-74.5761485,39.445277,235 BASIN RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4501_28,-74.60782793,39.47497685,233 BASIN RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4501_29,-74.8397175,39.6002225,225 BASIN RD,HAMMONTON TOWN,17,1971,1,RES3A,3001 -0113_4501_3,-74.51064779,39.44201285,134 PINE RD,HAMMONTON TOWN,17,1967,1,RES1,3001 -0113_4501_30,-74.49499183,39.331662,175 BASIN RD,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_4501_31,-74.5293195,39.452709,155 BASIN RD,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_4501_32,-74.57566254,39.41013575,151 BASIN RD,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_4501_33,-74.66430316,39.37120444,65 BASIN RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4501_33.01,-74.63151953,39.44604426,133 BASIN RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4501_33.02,-74.69932261,39.43994322,129 BASIN RD,HAMMONTON TOWN,17,2002,1,RES1,3001 -0113_4501_33.03,-74.93917898,39.51732268,119 BASIN RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4501_33.04,-74.520831,39.320667,115 BASIN RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4501_33.05,-74.60346501,39.32950667,105 BASIN RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4501_33.06,-74.82181685,39.62882853,95 BASIN RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4501_34.01,-74.73528051,39.43423272,85 BASIN RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4501_34.02,-74.67775662,39.3437085,79 BASIN RD,HAMMONTON TOWN,17,2002,1,GOV1,3004 -0113_4501_36,-74.518657,39.400191,219 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4501_37,-74.7622875,39.3516755,225 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4501_39,-74.492073,39.333655,229 N WHITE HORSE PK,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4501_4,-74.67327088,39.45796892,138 PINE RD,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_4501_40,-74.49955885,39.42965688,237 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4501_41,-74.4868225,39.346518,247 N WHITE HORSE PK,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4501_42,-74.40388179,39.38313881,253-257 N WHITE HORSE PK,HAMMONTON TOWN,16,1925,2,RES1,3001 -0113_4501_44,-74.6396935,39.359293,275 N WHITE HORSE PK,HAMMONTON TOWN,17,1905,1,RES1,3001 -0113_4501_45,-74.78636077,39.63454642,285 N WHITE HORSE PK,HAMMONTON TOWN,17,1840,1,RES1,3001 -0113_4501_46,-74.50561395,39.41264639,301 N WHITE HORSE PK,HAMMONTON TOWN,,1960,2,RES1,3001 -0113_4501_5,-74.49117184,39.33272684,142 PINE RD,HAMMONTON TOWN,17,1890,1,RES3A,3001 -0113_4501_7,-74.72551555,39.58828645,160 PINE RD,HAMMONTON TOWN,17,1920,1,RES3A,3001 -0113_4501_8,-74.61769974,39.32138588,164 PINE RD,HAMMONTON TOWN,17,1905,1,RES1,3001 -0113_4601_10,-74.63366133,39.36050513,124 BASIN RD,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_4601_11,-74.50380204,39.32447367,126 BASIN RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4601_17,-74.50437891,39.33475532,177 RT 206,HAMMONTON TOWN,17,1952,1,RES1,3001 -0113_4601_19,-74.64968477,39.35768056,89 RT 206,HAMMONTON TOWN,16,1972,1,RES1,3001 -0113_4601_19.01,-74.6138325,39.421554,75 RT 206,HAMMONTON TOWN,16,1982,1,RES3A,3001 -0113_4601_22,-74.60920693,39.36816768,1 N WHITE HORSE PK,HAMMONTON TOWN,,1980,1,GOV1,3004 -0113_4601_26,-74.5091975,39.4500155,43 N WHITE HORSE PK,HAMMONTON TOWN,,1980,1,RES1,3001 -0113_4601_26.01,-74.5583772,39.39358125,45 RT 206,HAMMONTON TOWN,,0,1,RES3B,3001 -0113_4601_27,-74.505067,39.492306,51 N WHITE HORSE PK,HAMMONTON TOWN,,1970,1,RES1,3001 -0113_4601_29,-74.59195431,39.3233151,101 N WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4601_3,-74.44754663,39.35483202,165 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4601_30,-74.76052309,39.42970579,105 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4601_31,-74.541062,39.374837,111 N WHITE HORSE PK,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4601_32,-74.79084556,39.64482905,117 N WHITE HORSE PK,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4601_33,-74.52628668,39.45180198,121 N WHITE HORSE PK,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4601_4,-74.4864255,39.527636,129 N WHITE HORSE PK,HAMMONTON TOWN,,0,,RES1,3001 -0113_4601_4.01,-74.70434944,39.48184314,50 BASIN RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4601_5,-74.5484796,39.37152986,66 BASIN RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4601_6,-74.7963765,39.642557,76 BASIN RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4601_7,-74.5995575,39.36628796,80 BASIN RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4601_8,-74.60077604,39.42248381,96 BASIN RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4602_10,-74.5143565,39.3255405,100 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4602_10.01,-74.91442233,39.500545,110 RT 206,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4602_11,-74.61138758,39.34609134,174 RT 206,HAMMONTON TOWN,17,1981,1,RES1,3001 -0113_4602_13,-74.573724,39.428694,177 MIDDLE RD,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_4602_13.01,-74.79671617,39.673217,178 RT 206,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_4602_14,-74.9370405,39.4888405,196 RT 206,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4602_15,-74.497717,39.3371665,200 RT 206,HAMMONTON TOWN,17,1995,1,RES3A,3001 -0113_4602_16,-74.45448604,39.35369135,195 MIDDLE RD,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_4602_17,-74.363612,39.413283,175 MIDDLE RD,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_4602_18,-74.55555655,39.47394033,155 MIDDLE RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4602_19,-74.63757124,39.34072651,151 MIDDLE RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4602_2,-74.78826549,39.61760817,19 MIDDLE RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4602_20,-74.54017192,39.46832972,143 MIDDLE RD,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4602_21,-74.52239534,39.3219255,135 MIDDLE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4602_22,-74.59945469,39.42915953,125 MIDDLE RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_4602_24,-74.766841,39.606966,121 MIDDLE RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4602_3,-74.5024055,39.419352,53 MIDDLE RD,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_4602_4,-74.5996185,39.3184755,57 MIDDLE RD,HAMMONTON TOWN,17,1933,1,RES1,3001 -0113_4602_4.01,-74.77456837,39.62305744,55 MIDDLE RD,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4602_5,-74.53660704,39.37892284,59 MIDDLE RD,HAMMONTON TOWN,17,1960,1,RES1,3002 -0113_4602_7,-74.8049665,39.5247805,63 MIDDLE RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_4602_8,-74.569334,39.3713525,66 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4602_8.01,-74.35840538,39.41479548,65 MIDDLE RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_4602_9,-74.516886,39.4389085,70 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4603_1,-74.5243365,39.319652,11 S WHITE HORSE PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4604_1,-74.55978009,39.47853576,21 S WHITE HORSE PIKE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4604_11,-74.60704705,39.33298682,176 MIDDLE RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_4604_12,-74.56322,39.3628005,194 MIDDLE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4604_14,-74.8823715,39.5682885,167 PLYMOUTH RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4604_15,-74.46858993,39.54015836,91-101 PLYMOUTH RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4604_19,-74.62383923,39.31447561,59 PLYMOUTH RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4604_19.01,-74.52924868,39.49839254,63 PLYMOUTH RD,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_4604_2.01,-74.956352,39.5191085,65 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4604_2.02,-74.55966985,39.37302193,55 S WHITE HORSE PIKE,HAMMONTON TOWN,,1995,1,COM1,3004 -0113_4604_2.03,-74.59991668,39.3301654,47 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4604_20,-74.895168,39.511498,55 PLYMOUTH RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4604_21,-74.93831082,39.52423601,23 PLYMOUTH RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4604_21.01,-74.63576539,39.38385647,51 PLYMOUTH RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_4604_23,-74.3829335,39.4164015,7 MAIN RD AT PLYMOUTH,HAMMONTON TOWN,,1965,1,RES1,3001 -0113_4604_24,-74.84836221,39.61139699,5 MAIN RD,HAMMONTON TOWN,16,1920,1,RES1,3001 -0113_4604_25,-74.531139,39.4707235,215 S WHITE HORSE PK,HAMMONTON TOWN,17,1927,1,RES1,3004 -0113_4604_26,-74.3598555,39.4159695,209 S WHITE HORSE PK,HAMMONTON TOWN,16,1900,1,RES1,3001 -0113_4604_27,-74.5053895,39.437293,137 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,COM1,3004 -0113_4604_29.01,-74.61183223,39.50718706,117 S WHITE HORSE PK,HAMMONTON TOWN,,1976,1,RES1,3001 -0113_4604_29.02,-74.36179344,39.41158284,121 S WHITE HORSE PK,HAMMONTON TOWN,,1981,1,RES1,3001 -0113_4604_3,-74.45530479,39.46827897,62 MIDDLE RD,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4604_30,-74.52439312,39.40008695,97 S WHITE HORSE PK,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4604_32,-74.4696365,39.345465,71 S WHITE HORSE PK 75-87,HAMMONTON TOWN,,1995,1,RES1,3001 -0113_4604_4,-74.927883,39.50975749,64 MIDDLE RD,HAMMONTON TOWN,17,1905,1,RES1,3001 -0113_4604_5,-74.768713,39.4878955,84 MIDDLE RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_4604_6.01,-74.58385857,39.43188042,104 MIDDLE RD,HAMMONTON TOWN,16,1900,2,RES1,3001 -0113_4604_6.02,-74.83770668,39.47780454,100 MIDDLE RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4604_8,-74.6492025,39.4000205,134 MIDDLE RD,HAMMONTON TOWN,17,1951,1,RES1,3001 -0113_4604_9,-74.7774335,39.5953045,136 MIDDLE RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4701_10,-74.6020275,39.3228785,267 RT 206,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_4701_11,-74.59682338,39.43545893,261 RT 206,HAMMONTON TOWN,17,1920,1,RES1,3002 -0113_4701_12,-74.46551603,39.47693902,257 RT 206,HAMMONTON TOWN,17,1925,1,RES1,3001 -0113_4701_13,-74.39140567,39.392878,255 RT 206,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4701_17,-74.63449269,39.35128351,206 BASIN RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4701_3,-74.5642145,39.3480128,285 RT 206,HAMMONTON TOWN,,1965,1,RES1,3001 -0113_4701_4,-74.79084304,39.62000984,275 RT 206,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_4701_5,-74.43554032,39.36707755,370 BASIN RD,HAMMONTON TOWN,17,1930,2,RES1,3002 -0113_4701_5.01,-74.42816617,39.37459742,350 BASIN RD,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_4701_6,-74.482766,39.433081,330 BASIN RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_4701_7,-74.6760935,39.377096,302 BASIN RD,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_4701_8,-74.79208191,39.63580272,250 BASIN RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4701_8.01,-74.4127986,39.36855852,264 BASIN RD,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4701_9,-74.4850315,39.341085,265 RT 206,HAMMONTON TOWN,17,1900,1,RES3A,3001 -0113_4702_10,-74.378732,39.4148095,282 RT 206,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_4702_12,-74.456383,39.351753,351 MIDDLE RD,HAMMONTON TOWN,17,1929,1,RES4,3001 -0113_4702_13,-74.54526183,39.37392899,311 MIDDLE RD,HAMMONTON TOWN,16,1950,2,RES3A,3001 -0113_4702_14,-74.573201,39.5020315,272 RT 206,HAMMONTON TOWN,,1978,1,RES3A,3001 -0113_4702_14.01,-74.60877177,39.32407325,281 MIDDLE RD,HAMMONTON TOWN,17,1880,1,RES1,3001 -0113_4702_14.02,-74.37314728,39.40627535,261 MIDDLE RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_4702_15,-74.57942862,39.34151533,252 RT 206,HAMMONTON TOWN,17,1969,1,RES3A,3001 -0113_4702_17,-74.523681,39.400065,241 MIDDLE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4702_18,-74.40806776,39.38212868,250 RT 206,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_4702_19,-74.500006,39.4876655,230 RT 206,HAMMONTON TOWN,16,1955,1,RES1,3001 -0113_4702_20.01,-74.41874013,39.36869403,212 RT 206,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4702_20.02,-74.606006,39.3321535,214 RT 206,HAMMONTON TOWN,18,2006,1,RES1,3001 -0113_4702_21,-74.6114245,39.3791025,229 MIDDLE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4702_22,-74.602843,39.434558,215 MIDDLE RD,HAMMONTON TOWN,17,1931,2,RES1,3001 -0113_4702_23,-74.86883677,39.49034912,199 MIDDLE RD,HAMMONTON TOWN,17,1952,1,RES3A,3001 -0113_4702_3,-74.59197251,39.38065793,40 S UNION RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4702_4,-74.7578365,39.4338365,50 S UNION RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_4702_5,-74.47450146,39.48128167,453 MIDDLE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4702_6,-74.80340154,39.64670527,449 MIDDLE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4702_6.01,-74.59263202,39.31639966,435 MIDDLE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4702_6.02,-74.724999,39.444366,421 MIDDLE RD,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_4702_8,-74.47419517,39.34262445,381 MIDDLE RD,HAMMONTON TOWN,17,1974,1,RES1,3001 -0113_4702_9,-74.45227169,39.37544403,286 RT 206,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_4703_1,-74.3766268,39.39773761,354 MIDDLE RD,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_4703_10,-74.7986965,39.6346615,214 MIDDLE RD,HAMMONTON TOWN,17,1977,2,RES1,3001 -0113_4703_12,-74.648195,39.532977,216 MIDDLE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4703_19,-74.8071605,39.6387445,399 PLYMOUTH RD,HAMMONTON TOWN,15,1970,2,RES1,3001 -0113_4703_2,-74.52479316,39.52794199,344 MIDDLE RD,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_4703_21,-74.5270825,39.421528,420 MIDDLE RD,HAMMONTON TOWN,17,1954,1,RES1,3002 -0113_4703_22,-74.586697,39.4322735,400 MIDDLE RD,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_4703_3,-74.38052079,39.41563816,366 MIDDLE RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_4703_4,-74.5406255,39.4687945,308 MIDDLE RD,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_4703_5,-74.605618,39.331369,300 MIDDLE RD,HAMMONTON TOWN,17,1977,2,RES3A,3001 -0113_4703_7,-74.5101755,39.385848,232 MIDDLE RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_4703_7.01,-74.52818354,39.38266732,250 MIDDLE RD,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_4703_8,-74.47415147,39.44329386,226 MIDDLE RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4703_9,-74.44851713,39.3576935,218 MIDDLE RD,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_4801_1,-74.50179991,39.32993786,25 MAIN RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4801_10,-74.79859417,39.63227502,107 MAIN RD,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_4801_12,-74.6278555,39.361313,119 MAIN RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4801_14,-74.4997335,39.431032,127 MAIN RD,HAMMONTON TOWN,17,1950,5,RES1,3001 -0113_4801_15,-74.46191984,39.34885885,131 MAIN RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_4801_17,-74.6436962,39.32662211,100 BRIDGE AVE,HAMMONTON TOWN,15,1960,1,RES1,3001 -0113_4801_18,-74.584723,39.323677,78-98 BRIDGE AVE,HAMMONTON TOWN,15,1970,2,RES1,3001 -0113_4801_2,-74.4984245,39.334141,27 MAIN RD,HAMMONTON TOWN,17,1916,1,RES1,3001 -0113_4801_22,-74.44291604,39.37147868,132 PLYMOUTH RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4801_23,-74.77889863,39.50065672,90 PLYMOUTH RD,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4801_23.01,-74.6103015,39.3200255,102 PLYMOUTH RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4801_23.02,-74.6165715,39.322313,114 PLYMOUTH RD,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_4801_23.03,-74.6180205,39.3190125,126 PLYMOUTH RD,HAMMONTON TOWN,17,2004,1,RES1,3002 -0113_4801_3,-74.64922299,39.45544188,50 PLYMOUTH RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4801_4,-74.36687083,39.42238056,70 PLYMOUTH RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4801_4.01,-74.8073945,39.630654,60 PLYMOUTH RD,HAMMONTON TOWN,17,1979,1,RES1,3001 -0113_4801_5,-74.7655315,39.6502115,33 MAIN RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_4801_6,-74.68488516,39.38243366,35 MAIN RD,HAMMONTON TOWN,17,1986,3,RES1,3001 -0113_4801_8,-74.61924798,39.46321426,75 MAIN RD REAR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4801_9,-74.80844842,39.64190565,51 MAIN RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_4802_1,-74.49745078,39.42602696,200 PLYMOUTH RD,HAMMONTON TOWN,16,1931,1,RES1,3001 -0113_4802_14,-74.49340818,39.44666427,75 BRIDGE AVE,HAMMONTON TOWN,17,1960,2,GOV1,3003 -0113_4802_16.01,-74.602066,39.3111835,35 BRIDGE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4802_3,-74.5894392,39.43102146,25 BRIDGE AVE,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4802_4,-74.6470095,39.4122055,350 PLYMOUTH RD,HAMMONTON TOWN,17,1960,1,GOV1,3004 -0113_4802_6,-74.51925766,39.44324904,370 PLYMOUTH RD,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_4802_9,-74.531172,39.4037355,402 PLYMOUTH RD,HAMMONTON TOWN,16,1960,1,RES1,3001 -0113_4901_1,-74.517921,39.40037,581 PLEASANT MILLS RD,HAMMONTON TOWN,17,1985,1,COM1,3004 -0113_4901_10,-74.5899285,39.411801,533 PLEASANT MILLS RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_4901_10.01,-74.64653912,39.43036051,535 PLEASANT MILLS RD,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_4901_12,-74.518307,39.401688,487 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4901_13,-74.63203301,39.36263631,457 PLEASANT MILLS,HAMMONTON TOWN,17,1960,2,RES1,3001 -0113_4901_14,-74.5018445,39.4473585,451 PLEASANT MILLS RD,HAMMONTON TOWN,16,1920,1,COM7,3004 -0113_4901_15,-74.62871197,39.39214213,423 PLEASANT MILLS RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4901_16,-74.57097739,39.41790217,363 PLEASANT MILLS RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_4901_17,-74.69004917,39.36283055,375 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4901_18,-74.5649615,39.36757517,331 PLEASANT MILLS RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_4901_2,-74.4195985,39.368135,579 PLEASANT MILLS RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_4901_20,-74.51641783,39.43646857,343 PLEASANT MILLS RD,HAMMONTON TOWN,17,1970,1,RES3A,3001 -0113_4901_21.01,-74.4639084,39.49468874,98 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.02,-74.45183006,39.49117213,96 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4901_21.03,-74.45231618,39.49211759,94 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.04,-74.4476255,39.4934635,92 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.05,-74.4749645,39.4796845,90 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.06,-74.46739633,39.48099704,88 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4901_21.07,-74.47202258,39.48646256,86 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.08,-74.473468,39.4754475,84 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.09,-74.45770475,39.48541172,82 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.10,-74.4609415,39.470306,80 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.11,-74.4623255,39.4723355,78 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3002 -0113_4901_21.12,-74.46311434,39.47383649,76 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.13,-74.45629917,39.47438854,74 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.14,-74.5285125,39.464156,72 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,AGR1,3001 -0113_4901_21.15,-74.52656068,39.46739219,70 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.16,-74.51451807,39.45534533,68 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4901_21.17,-74.5197473,39.45895014,66 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,REL1,3004 -0113_4901_21.18,-74.5095796,39.46133585,64 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.19,-74.503399,39.4683345,62 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4901_21.20,-74.5019445,39.46961,60 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.21,-74.4934775,39.46245,58 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.22,-74.49413284,39.46616415,56 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4901_21.23,-74.497313,39.4689835,54 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.24,-74.5075895,39.453453,52 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.25,-74.50853766,39.45533052,50 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.26,-74.50018155,39.45837163,48 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.27,-74.49158914,39.45775301,46 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.28,-74.52810833,39.44845199,44 CENTENNIAL DR,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4901_21.29,-74.5225925,39.4525205,42 CENTENNIAL DR,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_4901_21.30,-74.5225525,39.442784,40 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.31,-74.52905306,39.4441249,38 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,GOV1,3004 -0113_4901_21.32,-74.518469,39.438497,36 CENTENNIAL DR,HAMMONTON TOWN,17,2003,1,GOV1,3004 -0113_4901_21.33,-74.512717,39.4395535,34 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_21.34,-74.51197865,39.4434712,32 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,GOV1,3004 -0113_4901_21.35,-74.45443023,39.49253905,30 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4901_25,-74.611512,39.3504495,170-202 BRIDGE AVE,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_4901_3,-74.79529073,39.63883131,575 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES3A,3001 -0113_4901_4,-74.51054482,39.43904614,567 PLEASANT MILLS RD,HAMMONTON TOWN,17,1974,1,GOV1,3004 -0113_4901_6,-74.49412705,39.33883726,553 PLEASANT MILLS RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4901_8,-74.3646302,39.41538735,537 PLEASANT MILLS,HAMMONTON TOWN,17,1954,1,RES1,3001 -0113_4902_1,-74.79255381,39.66568839,650 PLEASANT MILLS RD,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_4902_10,-74.71495666,39.46522398,530 PLEASANT MILLS RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_4902_12,-74.365574,39.4156555,450/490 PLEASANT MILLS RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4902_13,-74.54771049,39.39606448,486 PLEASANT MILLS RD,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_4902_14,-74.4572255,39.3491395,418 PLEASANT MILLS RD,HAMMONTON TOWN,17,1935,2,RES1,3001 -0113_4902_14.01,-74.50987171,39.33222229,436 PLEASANT MILLS RD,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_4902_15,-74.78899261,39.66757038,378 PLEASANT MILLS RD,HAMMONTON TOWN,16,1930,1,RES1,3001 -0113_4902_16,-74.501936,39.45738633,372 PLEASANT MILLS RD,HAMMONTON TOWN,16,1930,1,RES1,3001 -0113_4902_19,-74.42288967,39.37259941,314 PLEASANT MILLS RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4902_2,-74.48946023,39.35082984,640 PLEASANT MILLS RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4902_20,-74.52800372,39.46578577,320 PLEASANT MILLS RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_4902_21,-74.40255162,39.38906421,300 PLEASANT MILLS RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_4902_22,-74.9239495,39.509118,290 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4902_23,-74.3652575,39.413165,280 PLEASANT MILLS RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_4902_24,-74.60767469,39.33053003,278 PLEASANT MILLS RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_4902_28,-74.87669496,39.60173216,100 CREEK RD OFF PLST MLS,HAMMONTON TOWN,15,1945,1,RES1,3001 -0113_4902_3,-74.5001405,39.451383,600 PLEASANT MILLS RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_4902_5,-74.84292534,39.39061449,578 PLEASANT MILLS RD,HAMMONTON TOWN,17,2013,1,RES1,3001 -0113_4902_6,-74.80506498,39.62975867,548 PLEASANT MILLS RD,HAMMONTON TOWN,16,1965,5,RES1,3001 -0113_4902_7,-74.83606625,39.63006198,560 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_4902_8,-74.58469833,39.33122795,544 PLEASANT MILLS RD,HAMMONTON TOWN,16,1960,2,RES1,3001 -0113_4902_9,-74.67295758,39.38999987,540 PLEASANT MILLS RD,HAMMONTON TOWN,15,1960,1,RES1,3001 -0113_4903_1,-74.50795421,39.43672637,77 CENTENNIAL DR,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_10,-74.51794,39.410009,45 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_11,-74.461964,39.3507295,41 CENTENNIAL DR,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_13,-74.46214088,39.35095434,37 CENTENNIAL DR,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_14,-74.5106195,39.327149,35 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_15,-74.5136315,39.327422,33 CENTENNIAL DR,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_16,-74.515033,39.327527,97 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_17,-74.5128965,39.327599,95 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_18,-74.509395,39.3284125,93 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_19,-74.50577451,39.44806256,8 DE MARCO CT,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_2,-74.48943919,39.43756234,75 CENTENNIAL DR,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_20,-74.509626,39.3295975,10 DE MARCO CT,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_21,-74.5135035,39.328277,12 DE MARCO CT,HAMMONTON TOWN,17,2005,1,GOV1,3004 -0113_4903_22,-74.4529515,39.348656,14 DE MARCO CT,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_23,-74.4615647,39.3491199,15 DE MARCO CT,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_24,-74.5167615,39.4027595,13 DE MARCO CT,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_25,-74.5141945,39.417886,11 DE MARCO CT,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_26,-74.50682,39.42631,9 DE MARCO CT,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_27,-74.492928,39.448117,7 DE MARCO CT,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_28,-74.49448975,39.44804522,5 DE MARCO CT,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_3,-74.5053666,39.42474981,73 CENTENNIAL DR,HAMMONTON TOWN,17,2006,1,RES1,3001 -0113_4903_4,-74.4936278,39.42684192,69 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,AGR1,3001 -0113_4903_5,-74.5178805,39.4115655,65 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_6,-74.521771,39.404746,61 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_7,-74.516597,39.4024485,57 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4903_8,-74.51295868,39.40456009,55 CENTENNIAL DR,HAMMONTON TOWN,17,2006,1,AGR1,3001 -0113_4903_9,-74.5109627,39.40782487,51 CENTENNIAL DR,HAMMONTON TOWN,17,2005,1,RES1,3001 -0113_4908_2_C0011,-74.7199035,39.6325705,11 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0012,-74.3861688,39.3917908,12 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0013,-74.81703974,39.6537204,13 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0014,-74.56420785,39.35482669,14 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0015,-74.92463932,39.50541181,15 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0016,-74.63080413,39.54046694,16 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0017,-74.5139065,39.431154,17 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0018,-74.7613085,39.6409615,18 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0021,-74.94378925,39.5190884,21 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0022,-74.81179536,39.4688831,22 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0023,-74.9353165,39.4970675,23 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0024,-74.55295071,39.36541238,24 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0025,-74.57097015,39.35644132,25 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0026,-74.37313872,39.41705347,26 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0031,-74.63162855,39.41684621,31 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0032,-74.60742346,39.50566689,32 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,GOV1,3004 -0113_4908_2_C0033,-74.72082159,39.44931669,33 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0034,-74.52045203,39.39076365,34 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0035,-74.48814139,39.46168118,35 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0036,-74.56862532,39.47696799,36 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0041,-74.60397125,39.59519057,41 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0042,-74.791699,39.447084,42 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0043,-74.65142316,39.35398079,43 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,GOV1,3004 -0113_4908_2_C0044,-74.96173676,39.5292644,44 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0045,-74.74886131,39.44574632,45 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0046,-74.57491632,39.36791674,46 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0051,-74.60428967,39.32640751,51 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0052,-74.5120255,39.3381645,52 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,COM1,3004 -0113_4908_2_C0053,-74.84703826,39.4823897,53 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0054,-74.8681085,39.5919275,54 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0055,-74.561588,39.5267045,55 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4908_2_C0056,-74.50789763,39.32625476,56 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,AGR1,3001 -0113_4912_1,-74.60152371,39.31763458,1 JAMESTOWN BLVD,HAMMONTON TOWN,,2000,1,RES1,3001 -0113_4912_1.02,-74.5089455,39.4942355,YORKTOWN-JAMESTOWN BLVD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_4912_1_C0061,-74.60948883,39.39174664,61 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0062,-74.44921039,39.4962418,62 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0063,-74.819017,39.39635817,63 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0064,-74.501621,39.488468,64 JAMESTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0071,-74.4465985,39.350717,71 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0072,-74.48488643,39.47263176,72 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0073,-74.63423913,39.5239607,73 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3002 -0113_4912_1_C0074,-74.64854356,39.53482878,74 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0075,-74.54483948,39.39832967,75 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0076,-74.83741503,39.63293545,76 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES3A,3001 -0113_4912_1_C0077,-74.48728235,39.33841848,77 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0078,-74.6060008,39.39263654,78 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0081,-74.50589994,39.42428069,81 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0082,-74.4957575,39.4347925,82 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0083,-74.49682917,39.43468206,83 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0084,-74.488363,39.432664,84 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0085,-74.49372702,39.4314204,85 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0086,-74.49846795,39.433606,86 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0091,-74.49884052,39.43315781,91 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0092,-74.49937259,39.43061519,92 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0093,-74.530438,39.4249435,93 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0094,-74.512822,39.431066,94 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0095,-74.44232901,39.48786195,95 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0096,-74.47972,39.4433695,96 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0101,-74.488835,39.437983,101 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0102,-74.51535792,39.32207146,102 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0103,-74.50439994,39.32699283,103 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0104,-74.51224027,39.32578256,104 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0105,-74.51116686,39.32444789,105 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0106,-74.51182398,39.32425094,106 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0107,-74.512983,39.324073,107 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0108,-74.5182331,39.32319968,108 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0111,-74.51347138,39.32163194,111 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0112,-74.524407,39.317766,112 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0113,-74.51689858,39.32093537,113 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0114,-74.52189727,39.32009634,114 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0115,-74.5171815,39.319513,115 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0116,-74.52452711,39.31788321,116 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0121,-74.47437393,39.4490856,121 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0122,-74.47182961,39.44657031,122 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0123,-74.47900786,39.44834373,123 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0124,-74.462778,39.4551955,124 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0125,-74.461901,39.463234,125 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0126,-74.46746517,39.45672262,126 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0127,-74.46560386,39.45581882,127 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0128,-74.48970786,39.44113726,128 JAMESTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0131,-74.9593465,39.4980115,131 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,GOV1,3004 -0113_4912_1_C0132,-74.94823984,39.51735277,132 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0133,-74.604411,39.4833125,133 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0134,-74.70404,39.367436,134 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0135,-74.8046815,39.63952424,135 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0136,-74.42760232,39.36743083,136 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,GOV1,3004 -0113_4912_1_C0141,-74.52333373,39.45235481,141 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0142,-74.49396028,39.44332479,142 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0143,-74.793487,39.640753,143 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0144,-74.51150934,39.32578798,144 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0145,-74.93686009,39.48955669,145 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0146,-74.52273466,39.31391551,146 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0147,-74.64391865,39.32688073,147 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0148,-74.37469779,39.39864755,148 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0151,-74.642991,39.5264395,151 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0152,-74.558518,39.4728065,152 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0153,-74.79400768,39.57526226,153 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0154,-74.48604796,39.46291621,154 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0155,-74.8271845,39.399853,155 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,GOV1,3004 -0113_4912_1_C0156,-74.58603996,39.32483318,156 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0157,-74.64952089,39.35447845,157 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0158,-74.60200691,39.43265904,158 YORKTOWN BLVD,HAMMONTON TOWN,37,2004,1,RES1,3001 -0113_4912_1_C0161,-74.59168082,39.41568652,161 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0162,-74.57049808,39.3559037,162 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0163,-74.37391979,39.4115006,163 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0164,-74.94800174,39.5163685,164 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0165,-74.86604,39.5457545,165 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0166,-74.5809897,39.44547739,166 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0167,-74.46951956,39.48534269,167 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,RES1,3001 -0113_4912_1_C0168,-74.59941479,39.32886857,168 YORKTOWN BLVD,HAMMONTON TOWN,37,1987,1,GOV1,3004 -0113_4912_2,-74.57526469,39.54002883,223 PLEASANT MILLS RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_4912_2.01,-74.51010902,39.48348747,219 PLEASANT MILLS RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_4912_2.02,-74.4964675,39.493754,215 PLEASANT MILLS RD,HAMMONTON TOWN,17,2006,1,GOV1,3004 -0113_4912_2.03,-74.502272,39.494665,10 YORKTOWN BLVD,HAMMONTON TOWN,,1960,1,GOV1,3004 -0113_5001_2,-74.48536045,39.34686955,541 OAK RD,HAMMONTON TOWN,17,1925,2,RES1,3001 -0113_5001_3.01,-74.48572939,39.34517297,557 OAK RD,HAMMONTON TOWN,16,1950,1,RES1,3001 -0113_5002_1,-74.60095,39.443445,500 OAK RD AT N UNION RD,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_5002_10,-74.4870405,39.3474535,625 PINE RD,HAMMONTON TOWN,17,1986,1,RES1,3001 -0113_5002_11,-74.481447,39.347516,450 N MYRTLE ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5002_12,-74.50223079,39.50140926,545 PINE RD,HAMMONTON TOWN,17,1870,1,RES1,3001 -0113_5002_12.01,-74.88150216,39.59624352,555 PINE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5002_13,-74.66774491,39.36022831,537 PINE RD,HAMMONTON TOWN,17,1984,1,RES1,3001 -0113_5002_14,-74.57409891,39.42927612,357 PINE RD,HAMMONTON TOWN,17,1890,1,RES1,3001 -0113_5002_15,-74.5718664,39.35163395,417 N UNION RD,HAMMONTON TOWN,16,1950,2,RES1,3001 -0113_5002_2,-74.73766469,39.59167149,536 OAK RD,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_5002_3,-74.50379013,39.34243124,544 OAK RD,HAMMONTON TOWN,16,1960,3,RES1,3001 -0113_5002_5,-74.524164,39.384547,584 OAK RD,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_5002_6,-74.53838139,39.46112821,600 OAK RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_5002_7,-74.74974277,39.45150055,610 OAK RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_5002_8,-74.723495,39.575814,517 PINE RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_5002_9,-74.56907189,39.41221333,630 OAK RD,HAMMONTON TOWN,16,1960,2,GOV1,3004 -0113_501_3,-74.57788419,39.34189644,950 11TH ST,HAMMONTON TOWN,13,1960,1,RES1,3001 -0113_501_5,-74.616953,39.321718,951 10TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_501_6,-74.8133685,39.3872315,959 10TH ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_502_2,-74.567571,39.4778745,914 11TH ST,HAMMONTON TOWN,,1980,1,RES1,3001 -0113_502_4,-74.75165847,39.60197316,304 S 2ND RD AT 11TH ST,HAMMONTON TOWN,17,1958,1,GOV1,3004 -0113_502_4.01,-74.56672751,39.36555503,312 S 2ND RD,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_502_6,-74.54833501,39.47698716,911 10TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_502_8,-74.6098746,39.31974264,907 10TH ST,HAMMONTON TOWN,17,1971,3,RES1,3001 -0113_5101_1,-74.48890182,39.43963599,370 PINE RD,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_5101_10,-74.65130485,39.45521401,427 BASIN RD,HAMMONTON TOWN,17,1920,1,RES1,3004 -0113_5101_11.01,-74.786792,39.6580285,451 BASIN RD,HAMMONTON TOWN,17,1992,1,RES1,3001 -0113_5101_12,-74.916791,39.480445,555 BASIN RD,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_5101_15,-74.51690181,39.41026433,375 RT 206,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_5101_16.01,-74.39708274,39.39484796,361 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5101_16.02,-74.8068046,39.64079214,391 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5101_16.03,-74.61987976,39.37195008,250 N MYRTLE ST,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_5101_18.01,-74.58138882,39.33255795,279 N MYRTLE ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5101_18.02,-74.516866,39.410422,290 N MYRTLE ST,HAMMONTON TOWN,18,2001,2,GOV1,3004 -0113_5101_19,-74.55786994,39.47358272,618 PINE RD,HAMMONTON TOWN,,1960,1,RES1,3001 -0113_5101_19.01,-74.5467475,39.378925,630 PINE RD,HAMMONTON TOWN,17,2014,1,RES1,3001 -0113_5101_2,-74.538956,39.462708,313 N UNION RD,HAMMONTON TOWN,17,2011,1,RES1,3001 -0113_5101_2.01,-74.7176095,39.6454145,350 PINE RD,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_5101_21,-74.876909,39.5948165,596 PINE RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_5101_22,-74.623867,39.424234,576 PINE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5101_23,-74.64582483,39.35865466,590 PINE RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_5101_24,-74.459384,39.3508975,540 PINE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_5101_3,-74.61779844,39.50214217,309 N UNION RD,HAMMONTON TOWN,14,1946,1,RES1,3001 -0113_5101_5,-74.50558244,39.3283313,223 N UNION RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_5101_6,-74.4870765,39.349599,221 N UNION RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_5101_7,-74.626608,39.393446,219 N UNION RD,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_5101_8,-74.5025335,39.431754,209 N UNION RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_5101_9,-74.96271166,39.50385405,201 N UNION RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_5201_5,-74.452786,39.3530315,584 BASIN RD,HAMMONTON TOWN,17,1977,1,RES1,3001 -0113_5201_6,-74.3618335,39.41206567,588 BASIN RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_5201_7,-74.521353,39.3948915,315 RT 206,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_5201_8,-74.491956,39.3355215,315 RT 206,HAMMONTON TOWN,53,1981,1,GOV1,3004 -0113_5201_9,-74.88043078,39.47364745,355 RT 206,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_5202_11,-74.35442867,39.4149855,94 S MYRTLE ST,HAMMONTON TOWN,16,1920,1,RES1,3001 -0113_5202_12,-74.83247483,39.37291441,100 S MYRTLE ST AT MIDDLE,HAMMONTON TOWN,16,1920,1,RES1,3001 -0113_5202_13,-74.53057604,39.44489615,713 MIDDLE RD,HAMMONTON TOWN,17,1936,1,GOV1,3004 -0113_5202_15,-74.823376,39.4007395,93 COLUMBIA RD,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_5202_16,-74.78235962,39.65850044,63 COLUMBIA RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_5202_2,-74.95114699,39.53386584,19 COLUMBIA RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_5202_3,-74.38473774,39.39808949,308 RT 206,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_5202_4,-74.88989756,39.5576104,310 RT 206,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_5202_5,-74.3604159,39.41683075,316 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5202_6,-74.7938385,39.63897,320 RT 206,HAMMONTON TOWN,17,1926,1,RES1,3001 -0113_5202_6.01,-74.44917221,39.4966412,356 RT 206,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_5202_6.02,-74.5119395,39.4664065,344 RT 206,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_5202_6.03,-74.46172067,39.35279843,332 RT 206,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_5202_7,-74.5879485,39.3489145,370 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5202_7.01,-74.87760178,39.54101547,72 S MYRTLE ST,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_5202_8,-74.51862116,39.32012716,50 S MYRTLE ST,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_5202_9,-74.48177366,39.34187443,66 S MYRTLE ST,HAMMONTON TOWN,17,1887,1,RES1,3001 -0113_5203_1,-74.63219725,39.54571618,485 MIDDLE RD,HAMMONTON TOWN,15,1960,1,RES1,3001 -0113_5203_10,-74.50103678,39.38343095,601 MIDDLE RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_5203_12,-74.4898009,39.33158284,663 MIDDLE RD,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_5203_2,-74.5011885,39.474951,53 S UNION RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_5203_3,-74.577831,39.3499945,31 S UNION RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_5203_4,-74.622876,39.314611,39 S UNION RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_5203_5,-74.64572306,39.55042965,505 MIDDLE RD,HAMMONTON TOWN,17,1925,2,GOV1,3004 -0113_5203_6,-74.58906189,39.50445662,521 MIDDLE RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_5203_7,-74.60299168,39.31692208,531 MIDDLE RD,HAMMONTON TOWN,17,1860,1,GOV1,3004 -0113_5203_9,-74.80827233,39.49197716,561 MIDDLE RD,HAMMONTON TOWN,17,1963,1,GOV1,3004 -0113_5204_1,-74.80983532,39.63678842,708 MIDDLE RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_5204_2,-74.80817401,39.64832647,718 MIDDLE RD,HAMMONTON TOWN,17,1920,2,RES1,3001 -0113_5204_3,-74.7467925,39.4452265,150 S MYRTLE ST,HAMMONTON TOWN,17,1963,1,RES1,3001 -0113_5204_4,-74.59804208,39.42922529,191 COLUMBIA RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_5204_5,-74.51149063,39.46246913,175 COLUMBIA RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_5301_1,-74.58212854,39.38011003,476 MIDDLE RD,HAMMONTON TOWN,17,1910,2,RES1,3001 -0113_5301_11,-74.49060801,39.33951917,520 MIDDLE RD,HAMMONTON TOWN,17,1936,1,RES1,3001 -0113_5301_13,-74.8181865,39.654073,528 MIDDLE RD,HAMMONTON TOWN,17,1939,1,RES1,3001 -0113_5301_14,-74.6343595,39.3677585,550 MIDDLE RD,HAMMONTON TOWN,17,1958,1,GOV1,3004 -0113_5301_15,-74.5006055,39.487477,570 MIDDLE RD,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_5301_16,-74.63678044,39.43161898,600 MIDDLE RD,HAMMONTON TOWN,17,1929,1,RES1,3001 -0113_5301_21,-74.498444,39.431997,622 MIDDLE RD REAR,HAMMONTON TOWN,13,1960,1,RES1,3001 -0113_5301_23,-74.49199833,39.33101402,604 MIDDLE RD REAR,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5301_24,-74.4549905,39.3746255,606 MIDDLE RD,HAMMONTON TOWN,17,1900,2,RES1,3001 -0113_5301_27,-74.802352,39.638576,642 MIDDLE RD,HAMMONTON TOWN,17,1974,1,GOV1,3004 -0113_5301_3,-74.68144035,39.55648645,125 LAUREL AVE,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_5301_30,-74.695074,39.420129,242-294 COLUMBIA RD,HAMMONTON TOWN,,0,1,GOV1,3004 -0113_5301_31,-74.64456652,39.62277483,300 COLUMBIA RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5301_38,-74.62746261,39.35429783,551 LAUREL AVE,HAMMONTON TOWN,18,2007,1,RES1,3001 -0113_5301_39,-74.48436585,39.3477546,499-501 LAUREL AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5301_4,-74.60599984,39.32114391,161 LAUREL AVE,HAMMONTON TOWN,17,1947,1,RES1,3001 -0113_5301_5,-74.45859961,39.49537336,177 LAUREL AVE,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_5301_7,-74.56983416,39.41193552,490 MIDDLE RD,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_5301_8,-74.80388662,39.63395051,500 MIDDLE RD,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_5301_9,-74.693745,39.4473465,508 MIDDLE RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_5302_2,-74.36902543,39.41643477,530 LAUREL AVE,HAMMONTON TOWN,16,1965,1,RES1,3001 -0113_5302_6,-74.95338659,39.52115975,640 LAUREL AVE,HAMMONTON TOWN,14,1970,2,RES1,3001 -0113_5302_8,-74.6535645,39.534862,726 LAUREL AVE,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_5402_1,-74.73734259,39.46849073,169 BRIDGE AVENUE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5402_4,-74.4926095,39.431301,832 LAUREL AVE,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_5402_5,-74.46850889,39.48839052,780 LAUREL AVE,HAMMONTON TOWN,15,1960,1,GOV1,3004 -0113_5402_6,-74.45006826,39.3727183,760 LAUREL AVE,HAMMONTON TOWN,16,1960,1,RES1,3001 -0113_5402_7,-74.74505914,39.4449428,750 LAUREL AVE,HAMMONTON TOWN,15,1960,1,RES1,3001 -0113_5403_7,-74.47988417,39.3401,801 LAUREL AVE,HAMMONTON TOWN,15,1960,1,RES1,3001 -0113_5501_1,-74.3688605,39.407109,REAR PLEASANT MILLS RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5501_10,-74.50760569,39.4828792,705 PLEASANT MILLS RD,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_5501_12,-74.67577585,39.56899453,725 PLEASANT MILLS RD,HAMMONTON TOWN,17,1901,1,RES1,3001 -0113_5501_13,-74.76345006,39.60998963,729 PLEASANT MILLS RD,HAMMONTON TOWN,17,1955,1,RES1,3001 -0113_5501_15,-74.87958665,39.48373602,739 PLEASANT MILLS RD,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_5501_2,-74.46975322,39.38656907,252 BRIDGE AVE,HAMMONTON TOWN,15,1965,1,GOV1,3004 -0113_5501_5,-74.45503108,39.48950171,653 PLEASANT MILLS RD,HAMMONTON TOWN,17,1958,2,RES1,3001 -0113_5501_7,-74.51764906,39.41103144,695 PLEASANT MILLS RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_5501_8,-74.62805734,39.60693901,701 PLEASANT MILLS RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_5502_10,-74.50396176,39.43135627,850 PLEASANT MILLS RD,HAMMONTON TOWN,17,2008,1,GOV1,3004 -0113_5502_11,-74.46635933,39.4928715,864 PLEASANT MILLS RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_5502_12,-74.62867633,39.43566041,870 PLEASANT MILLS RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_5502_13,-74.42055607,39.35981311,876 PLEASANT MILLS RD,HAMMONTON TOWN,17,1968,1,RES1,3001 -0113_5502_14,-74.72349827,39.45663763,880 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_5502_16,-74.61988818,39.37107753,886 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_5502_17,-74.60230854,39.32393582,890 PLEASANT MILLS RD,HAMMONTON TOWN,17,1958,2,RES1,3001 -0113_5502_2,-74.64322287,39.42990498,660 PLEASANT MILLS RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_5502_3,-74.7524185,39.4535255,668 PLEASANT MILLS RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5502_4,-74.38028819,39.41539344,700 PLEASANT MILLS RD,HAMMONTON TOWN,17,1948,1,RES1,3001 -0113_5502_6.01,-74.49851016,39.33396102,708 PLEASANT MILLS RD,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_5502_7,-74.7605285,39.345178,710 PLEASANT MILLS RD,HAMMONTON TOWN,17,1964,1,RES1,3001 -0113_5502_8,-74.5999185,39.3673375,712 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_5502_9,-74.9347875,39.504214,750 PLEASANT MILLS RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_5504_12,-74.51825294,39.46084705,532 COLUMBIA RD,HAMMONTON TOWN,18,1995,1,GOV1,3004 -0113_5504_13,-74.52243169,39.40204506,542 COLUMBIA RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5504_15,-74.7546495,39.3030595,891 PLEASANT MILLS RD,HAMMONTON TOWN,14,1958,1,RES1,3001 -0113_5504_16,-74.65281448,39.52780816,893 PLEASANT MILLS RD,HAMMONTON TOWN,17,1985,1,RES1,3001 -0113_5504_18,-74.52129917,39.31862048,901 PLEASANT MILLS RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_5504_3,-74.47336303,39.44666255,375 BRIDGE AVE,HAMMONTON TOWN,14,1960,2,RES1,3001 -0113_5504_6,-74.56744106,39.40570931,854 LAUREL AVE,HAMMONTON TOWN,15,1970,2,RES1,3001 -0113_5504_8,-74.91194884,39.51522202,10 AMANDA LN,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_5601_2,-74.46580021,39.34341674,401 N MYRTLE ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5602_1,-74.62139881,39.36889353,401-499 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5602_2.01,-74.57943996,39.33786593,251 N MYRTLE ST,HAMMONTON TOWN,17,1999,2,RES1,3001 -0113_5602_2.02,-74.82946937,39.41124193,301 N MYRTLE ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_5602_4.01,-74.52730855,39.45779933,8 SANDY CAUSEWAY,HAMMONTON TOWN,16,1960,1,RES1,3001 -0113_5603_1,-74.4492705,39.356427,51 S MYRTLE ST & RT 206,HAMMONTON TOWN,17,1935,2,RES1,3001 -0113_5603_3,-74.36941732,39.41404152,410 RT 206,HAMMONTON TOWN,18,2005,1,RES1,3001 -0113_5603_4,-74.59547715,39.31315257,69 S MYRTLE ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_5604_1,-74.46628656,39.34312713,501-587 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5605_2,-74.48262279,39.34859967,589-595 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5701_1,-74.86708976,39.59792387,771 MIDDLE RD,HAMMONTON TOWN,17,1860,1,RES1,3001 -0113_5701_2,-74.3768104,39.40221685,819 MIDDLE RD,HAMMONTON TOWN,17,1900,1,GOV1,3004 -0113_5701_3,-74.45375602,39.37252188,821 MIDDLE RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_5701_5,-74.58876133,39.31927648,881 MIDDLE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5702_1,-74.85326743,39.36979072,199 S MYRTLE ST,HAMMONTON TOWN,15,1956,1,RES1,3001 -0113_5702_10,-74.49477621,39.33172665,76 HANGER RD,HAMMONTON TOWN,,1968,1,RES1,3001 -0113_5702_11,-74.36855953,39.40499858,251-273 COLUMBIA RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5702_12,-74.52374951,39.41873883,221 COLUMBIA RD,HAMMONTON TOWN,15,1940,1,RES1,3001 -0113_5702_14,-74.62670816,39.3614743,5-75 ACADEMY DR,HAMMONTON TOWN,,1970,1,GOV1,3004 -0113_5702_15,-74.4909795,39.4361195,345 COLUMBIA RD,HAMMONTON TOWN,17,2007,1,RES1,3001 -0113_5702_15.01,-74.7107445,39.4718875,309 COLUMBIA RD,HAMMONTON TOWN,,1968,1,RES1,3001 -0113_5702_17,-74.525123,39.4213585,375 COLUMBIA RD,HAMMONTON TOWN,14,1950,1,RES1,3001 -0113_5702_2,-74.44902469,39.49150294,790 MIDDLE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5702_20,-74.63362819,39.53562985,55 TAYLOR AVE,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5702_23,-74.414421,39.364631,860 MIDDLE & 450 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5702_4,-74.75925976,39.63118263,828 MIDDLE RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_5702_5,-74.46392387,39.34594284,834 MIDDLE RD,HAMMONTON TOWN,17,1940,3,RES1,3001 -0113_5702_6,-74.60452221,39.30816597,842 MIDDLE RD,HAMMONTON TOWN,17,1940,1,RES1,3001 -0113_5702_8,-74.48459804,39.34764068,848 MIDDLE RD,HAMMONTON TOWN,16,1934,1,RES1,3001 -0113_5801_1,-74.74800147,39.4453747,429 COLUMBIA RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5801_2,-74.4428535,39.371896,439-469 COLUMBIA RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5801_5,-74.52199783,39.39707899,491 COLUMBIA RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5801_7,-74.63599686,39.38197209,450 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5802_4,-74.40510635,39.37865353,1 GATTO RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5802_5,-74.51546182,39.32797754,13 GATTO RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_5802_8,-74.57948464,39.33242729,19 GATTO RD,HAMMONTON TOWN,17,1900,1,REL1,3004 -0113_5802_9,-74.50985602,39.32539273,25 GATTO RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_5803_4,-74.5959508,39.43324694,2 NEIL RD,HAMMONTON TOWN,16,1922,1,RES1,3001 -0113_5803_7,-74.46982334,39.4851314,585 COLUMBIA RD,HAMMONTON TOWN,15,1950,2,RES2,3005 -0113_5803_8,-74.54353535,39.38826796,599 COLUMBIA RD,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_5901_2,-74.48016183,39.34923656,625 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5901_3,-74.484109,39.3497615,631 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5901_7,-74.4807655,39.35109,721-799 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5903_1,-74.48451964,39.3342135,SYCAMORE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5904_3,-74.525793,39.3964725,ROCKWOOD RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5905_2,-74.542654,39.3818505,51 ROCKWOOD RD,HAMMONTON TOWN,17,1948,2,RES1,3001 -0113_5906_1,-74.77639022,39.66428384,642-660 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5906_5,-74.49545857,39.50071168,88 DAVES RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5907_11,-74.46212134,39.352486,798 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5907_2,-74.37046563,39.41845765,720 RT 206,HAMMONTON TOWN,16,1965,1,RES1,3001 -0113_5907_3,-74.4915633,39.33464917,724 RT 206,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_5907_4,-74.49087542,39.47225005,730 RT 206,HAMMONTON TOWN,,0,1,RES1,3001 -0113_5907_5,-74.7276725,39.6413,734 RT 206,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_5907_6,-74.4849405,39.3390505,738 RT 206,HAMMONTON TOWN,16,1925,1,RES1,3001 -0113_5907_7,-74.50838175,39.33064903,744 RT 206,HAMMONTON TOWN,16,1950,1,RES1,3001 -0113_5907_8,-74.46030167,39.34796448,746 RT 206,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_5907_9,-74.58762079,39.41579093,750 RT 206,HAMMONTON TOWN,,1936,1,RES1,3001 -0113_6001_1,-74.5841372,39.35300849,WEST MILL,HAMMONTON TOWN,,0,1,RES1,3001 -0113_6001_2,-74.5974076,39.43043136,100 PARADISE DR,HAMMONTON TOWN,,1955,1,RES1,3001 -0113_6002_1,-74.778967,39.5151035,DAVES RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_602_1,-74.55772,39.3963905,948 10TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_602_12,-74.55463311,39.35980763,750 S 2ND RD,HAMMONTON TOWN,14,1900,1,RES1,3001 -0113_602_14,-74.47212316,39.340679,961 9TH ST,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_602_15,-74.52188784,39.31874444,965 9TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_602_16,-74.5687355,39.3619105,957 9TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_602_16.01,-74.83462473,39.38918658,969 9TH ST,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_602_4,-74.579507,39.430092,608 S 2ND RD,HAMMONTON TOWN,17,2018,1,RES1,3001 -0113_6101_1,-74.8115955,39.373219,WEST MILL,HAMMONTON TOWN,,0,1,RES1,3001 -0113_6102_1,-74.5264445,39.3828655,ATSION BATSTO RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_6102_3,-74.5790995,39.3436975,ATSION BATSTO RD(REAR),HAMMONTON TOWN,,0,1,RES1,3001 -0113_701_5,-74.52032657,39.46516484,955 8TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_701_8,-74.569764,39.4272765,975 8TH ST,HAMMONTON TOWN,17,1999,1,RES1,3001 -0113_702_1,-74.7420555,39.491933,839 SERVICE RD,HAMMONTON TOWN,,0,1,RES1,3001 -0113_703_1.01,-74.482709,39.336406,924 9TH ST,HAMMONTON TOWN,17,1993,1,RES1,3001 -0113_703_1.03,-74.64946058,39.35167236,790 S 2ND RD,HAMMONTON TOWN,17,1995,1,RES1,3001 -0113_703_1.04,-74.4511505,39.3724565,902 9TH ST,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_703_10,-74.4937095,39.331356,934 S 2ND RD,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_703_11,-74.67064208,39.49944432,905 8TH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_703_15,-74.524598,39.445712,925 8TH ST,HAMMONTON TOWN,17,1966,1,RES1,3001 -0113_703_16,-74.59545436,39.41985632,931 8TH ST,HAMMONTON TOWN,17,1950,2,RES1,3001 -0113_703_2,-74.60027386,39.3287731,786 S 2ND RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_703_4,-74.77475598,39.66057675,810 S 2ND RD,HAMMONTON TOWN,17,1890,1,RES1,3001 -0113_703_5,-74.58926683,39.33124645,822 S 2ND RD,HAMMONTON TOWN,17,1969,1,RES1,3001 -0113_703_6,-74.6118095,39.3507595,830 S 2ND RD,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_703_7,-74.446437,39.355708,840 S 2ND RD,HAMMONTON TOWN,17,1998,1,RES1,3001 -0113_802_1,-74.4891675,39.467619,950 S 2ND RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_802_10,-74.5325755,39.454085,984 S 2ND RD,HAMMONTON TOWN,17,1972,1,GOV1,3004 -0113_802_11,-74.4016356,39.38877093,988 S 2ND RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_802_16,-74.51218296,39.33036883,945 7TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_802_2,-74.545272,39.378907,952 S 2ND RD,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_802_3,-74.77673201,39.64256748,954 S 2ND RD,HAMMONTON TOWN,17,1972,1,RES1,3001 -0113_802_6,-74.45202285,39.49643063,914 8TH ST,HAMMONTON TOWN,15,1963,1,GOV1,3004 -0113_802_7,-74.596846,39.3712865,978 S 2ND RD,HAMMONTON TOWN,17,1982,1,RES1,3001 -0113_802_8,-74.74739669,39.44601467,980 S 2ND RD,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_802_9,-74.891711,39.472886,982 S 2ND RD,HAMMONTON TOWN,17,1946,1,GOV1,3004 -0113_901_1,-74.39176983,39.392223,505 W 15TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_901_1.01,-74.57074563,39.36814574,563 W 15TH ST AT N 2ND RD,HAMMONTON TOWN,17,1978,1,RES1,3001 -0113_901_10,-74.58880534,39.32530137,381 W 15TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_901_12,-74.60379655,39.54645493,317 W 15TH ST,HAMMONTON TOWN,,0,1,RES1,3001 -0113_901_15,-74.48346747,39.34405533,13 BAIRDMORE AVE,HAMMONTON TOWN,,1955,1,RES1,3001 -0113_901_6,-74.5986625,39.3156735,475 W 15TH ST,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_901_7,-74.54811336,39.46261623,451 W 15TH ST,HAMMONTON TOWN,17,1961,1,RES1,3001 -0113_901_9,-74.623025,39.4316855,401 W 15TH ST,HAMMONTON TOWN,17,1962,1,RES1,3001 -0113_902_1,-74.52609633,39.40278646,10 BAIRDMORE AVE,HAMMONTON TOWN,17,2009,1,RES1,3001 -0113_902_2,-74.517877,39.410781,269 W 15TH ST,HAMMONTON TOWN,17,1994,1,RES1,3001 -0113_902_3,-74.4901565,39.421298,255 W 15TH ST,HAMMONTON TOWN,17,1971,1,RES1,3001 -0113_902_5,-74.59081482,39.42256446,245 W 15TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_902_6,-74.5923475,39.421823,225 W 15TH ST,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_902_7,-74.52033431,39.4036064,211 W 15TH ST,HAMMONTON TOWN,17,1996,1,RES1,3001 -0113_903_10,-74.60291251,39.4847852,400 W 15TH ST,HAMMONTON TOWN,17,1958,1,RES1,3001 -0113_903_11,-74.8230085,39.630069,310 W 15TH ST,HAMMONTON TOWN,,0,2,RES1,3001 -0113_903_12,-74.71142533,39.43225932,302 W 15TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_903_13,-74.5895445,39.320006,278 W 15TH ST,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_903_14,-74.9123655,39.5137555,270 W 15TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_903_15,-74.699623,39.5739055,264 W 15TH ST,HAMMONTON TOWN,17,1928,1,RES1,3001 -0113_903_15.01,-74.77979381,39.64436067,260 W 15TH ST,HAMMONTON TOWN,17,1983,1,RES1,3001 -0113_903_16,-74.50537977,39.43237679,248 W 15TH ST,HAMMONTON TOWN,17,1920,1,RES1,3001 -0113_903_17,-74.59889098,39.34165432,1040 N 1ST RD,HAMMONTON TOWN,17,1965,1,RES1,3001 -0113_903_17.02,-74.489275,39.3371175,776 N 1ST RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_903_17.03,-74.80199614,39.63794706,770 N 1ST RD,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_903_17.11,-74.584348,39.485731,900 N 1ST RD,HAMMONTON TOWN,17,2004,1,RES1,3001 -0113_903_17.12,-74.806275,39.3658405,824 N 1ST RD,HAMMONTON TOWN,19,2004,1,RES1,3001 -0113_903_18,-74.448184,39.481847,210 W 15TH ST,HAMMONTON TOWN,17,1956,1,RES1,3001 -0113_903_19,-74.472214,39.44423217,208 W 15TH ST,HAMMONTON TOWN,17,1930,1,RES1,3001 -0113_903_2,-74.80371957,39.60418189,990 N 2ND RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_903_2.01,-74.61515837,39.48692113,530 W 15TH ST,HAMMONTON TOWN,17,2001,1,RES1,3001 -0113_903_20,-74.54358383,39.5166185,768 N 1ST RD,HAMMONTON TOWN,17,1950,1,RES1,3001 -0113_903_21,-74.63195556,39.36585824,766 N 1ST RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_903_23,-74.51888633,39.38674347,758 N 1ST RD,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_903_24,-74.7786155,39.5934015,754 N 1ST RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_903_25,-74.79656617,39.64148553,746 N 1ST RD,HAMMONTON TOWN,17,1975,1,RES1,3001 -0113_903_26,-74.77608151,39.61618216,738 N 1ST RD,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_903_27,-74.48592564,39.46189185,714 N 1ST RD,HAMMONTON TOWN,17,1991,1,RES1,3001 -0113_903_27.01,-74.59751203,39.38369325,724 N 1ST RD,HAMMONTON TOWN,17,1980,1,RES1,3001 -0113_903_28,-74.87915131,39.47611502,523 14TH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_903_29,-74.64651208,39.35834822,527 14TH ST,HAMMONTON TOWN,17,1973,1,RES1,3001 -0113_903_3,-74.449051,39.3733665,500 W 15TH ST,HAMMONTON TOWN,17,1900,1,RES1,3001 -0113_903_30,-74.567229,39.479295,553 14TH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_903_31,-74.50713492,39.49421431,565 14TH ST,HAMMONTON TOWN,17,1970,1,RES1,3001 -0113_903_32,-74.67511427,39.50888453,567 14TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_903_33,-74.73465121,39.46165258,575 14TH ST,HAMMONTON TOWN,17,1989,1,RES1,3001 -0113_903_35,-74.91126095,39.50754424,605 14TH ST,HAMMONTON TOWN,17,1990,1,RES1,3001 -0113_903_36,-74.499758,39.333979,657 14TH ST,HAMMONTON TOWN,17,1960,1,RES1,3001 -0113_903_4,-74.77854268,39.63297301,450 W 15TH ST,HAMMONTON TOWN,17,1987,1,RES1,3001 -0113_903_40,-74.50355,39.3312165,701 14TH ST,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_903_42,-74.48647138,39.33469721,775 14TH ST,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_903_44,-74.67171185,39.39384374,801 14TH ST,HAMMONTON TOWN,17,1997,1,RES1,3001 -0113_903_46,-74.923538,39.5094825,843 14TH ST,HAMMONTON TOWN,17,2003,1,RES1,3001 -0113_903_47,-74.62345496,39.41920147,700 N 2ND RD,HAMMONTON TOWN,17,2000,1,RES1,3001 -0113_903_48,-74.5068185,39.4542235,800 N 2ND RD,HAMMONTON TOWN,17,1994,1,COM3,3004 -0113_903_49,-74.7028915,39.5775075,940 N 2ND RD,HAMMONTON TOWN,17,1976,1,RES1,3001 -0113_903_5,-74.52036444,39.46221866,446 W 15TH ST,HAMMONTON TOWN,17,1992,1,RES1,3001 -0114_1_1.03,-74.61780162,39.55574007,2143 WEST AVE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_1_1.04,-74.86682612,39.49292783,2149 WEST AVENUE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_1_10,-74.79813209,39.65425484,2109 WEST AVE,LINWOOD CITY,16,1913,1,RES1,3001 -0114_1_11.01,-74.82696733,39.64927649,2105 WEST AVE,LINWOOD CITY,16,1930,1,RES3A,3001 -0114_1_11.02,-74.794845,39.599254,2101 WEST AVE,LINWOOD CITY,16,1985,1,RES1,3001 -0114_1_11.03,-74.79653197,39.63814667,3 HENNINGS WAY,LINWOOD CITY,17,1979,1,RES1,3001 -0114_1_13,-74.95407504,39.49814644,4 HENNINGS WAY,LINWOOD CITY,16,1963,1,RES1,3001 -0114_1_14.01,-74.78038005,39.63317201,2047 WEST AVE,LINWOOD CITY,16,1905,1,RES1,3001 -0114_1_14.02,-74.8042075,39.638128,2 HENNINGS WAY,LINWOOD CITY,15,1983,1,RES1,3001 -0114_1_15,-74.93939465,39.51809478,2039 WEST AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_1_16,-74.80779133,39.63609812,2037 WEST AVE REAR,LINWOOD CITY,15,1950,1,RES1,3001 -0114_1_17,-74.79445372,39.63405553,2037 WEST AVE,LINWOOD CITY,16,1922,1,RES1,3001 -0114_1_18,-74.80597122,39.63905482,2033 WEST AVE,LINWOOD CITY,15,1880,1,RES1,3001 -0114_1_19,-74.832954,39.6116775,2031 WEST AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_1_2,-74.62520306,39.4159213,646 OCEAN HTGS AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_1_20.01,-74.81163783,39.63405286,2019 WEST AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_1_20.02,-74.78594138,39.6610459,2025 WEST AVE,LINWOOD CITY,18,1999,1,RES1,3001 -0114_1_22,-74.90550196,39.49354602,2015 WEST AVE,LINWOOD CITY,16,1900,1,RES1,3004 -0114_1_23,-74.925184,39.5111315,2013 WEST AVE,LINWOOD CITY,14,1935,1,RES1,3001 -0114_1_26.03,-74.5566595,39.3752465,1801 NEW ROAD,LINWOOD CITY,,0,1,RES3A,3001 -0114_1_27,-74.50956543,39.3388922,1777 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_1_28,-74.556769,39.3695055,1711 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_1_29.02,-74.523409,39.3842485,1707 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_1_3,-74.548986,39.3811745,616 OCEAN HTGS AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_1_32.01,-74.51781155,39.40253665,505 W HAMILTON AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_1_32.02,-74.62907293,39.42969467,515 W HAMILTON AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_1_33,-74.50858592,39.38533569,1703 NEW ROAD,LINWOOD CITY,16,1961,1,RES3A,3001 -0114_1_34,-74.48271732,39.43276491,1701 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_1_35,-74.56425027,39.37344405,550 HAMILTON AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_1_38,-74.5756815,39.429476,520 HAMILTON AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_1_39,-74.64016158,39.36889071,1601 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_1_4,-74.5413355,39.376841,606 OCEAN HTGS AVE,LINWOOD CITY,16,1860,1,GOV1,3004 -0114_1_43.01,-74.49226122,39.42789856,501 W PATCONG AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_1_43.02,-74.52349459,39.44328922,503 W PATCONG AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_1_45.04,-74.63138849,39.41537053,1 FALLING WATER DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.05,-74.65260803,39.40694899,3 FALLING WATER DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_1_45.06,-74.62683319,39.43506716,5 FALLING WATER DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.07,-74.63230154,39.42048131,6 SPATTERDOCK LANE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.09,-74.6338535,39.4307045,7 FALLING WATER DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_1_45.11,-74.3773215,39.397336,11 FALLING WATER DRIVE,LINWOOD CITY,16,2000,1,RES1,3001 -0114_1_45.12,-74.3908085,39.388315,13 FALLING WATER DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_1_45.13,-74.66484242,39.41845428,15 FALLING WATER DRIVE,LINWOOD CITY,16,2000,1,RES1,3001 -0114_1_45.14,-74.4960645,39.3329815,17 FALLING WATER DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.15,-74.500812,39.328905,19 FALLING WATER DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.16,-74.70257587,39.42878294,16 FALLING WATER DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.17,-74.38623236,39.39616678,14 FALLING WATER DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_1_45.18,-74.3984885,39.3861245,12 FALLING WATER DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_1_45.19,-74.3698415,39.4007485,10 FALLING WATER DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.21,-74.64140596,39.43467651,6 FALLING WATER DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.22,-74.6593355,39.41964033,4 FALLING WATER DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_1_45.23,-74.6385185,39.429493,2 FALLING WATER DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.24,-74.37595084,39.39952527,1 ARROWHEAD DRIVE,LINWOOD CITY,16,2001,1,GOV1,3004 -0114_1_45.25,-74.39698626,39.39185455,3 ARROWHEAD DRIVE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_1_45.26,-74.38175216,39.39649253,5 ARROWHEAD DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_1_46.02,-74.5150895,39.45188,1413 NEW ROAD,LINWOOD CITY,,0,1,GOV1,3004 -0114_1_47,-74.65195015,39.35639604,1407 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_1_48,-74.57526566,39.4196432,1401 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_1_5,-74.8321235,39.3900575,600 OCEAN HTGS AVE,LINWOOD CITY,14,1900,1,RES1,3001 -0114_1_6.01,-74.62379061,39.51404528,2133 WEST AVE,LINWOOD CITY,16,1978,1,RES1,3001 -0114_1_6.02,-74.63896967,39.529821,2131 WEST AVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_1_7.01,-74.6269245,39.614746,2129 WEST AVENUE,LINWOOD CITY,17,1996,1,RES1,3001 -0114_1_7.02,-74.72735822,39.59017453,2127 WEST AVENUE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_1_8,-74.8128989,39.65610126,2123 WEST AVE,LINWOOD CITY,17,1900,1,RES1,3001 -0114_1_9.01,-74.72708419,39.5872232,2119 WEST AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_10_1.01,-74.53288658,39.382347,2218 WABASH AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_10_1.02,-74.55023866,39.36934776,20 W ROYAL AVE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_10_10,-74.8060275,39.362808,13 W FRANCES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_10_11,-74.58754504,39.41382881,11 W FRANCES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_10_12,-74.56936775,39.41356273,9 W FRANCES AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_10_13,-74.5746141,39.41066897,7 W FRANCES AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_10_14,-74.56170725,39.40915012,5 W FRANCES AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_10_15,-74.53310512,39.38119263,3 W FRANCES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_10_16,-74.53227125,39.37986836,1 W FRANCES AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_10_17,-74.551602,39.36960669,2231 SHORE ROAD,LINWOOD CITY,16,1955,1,RES1,3001 -0114_10_18,-74.5587805,39.405684,2249 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_10_19,-74.604847,39.368959,2263 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3002 -0114_10_4,-74.568961,39.4182185,2216 WABASH AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_10_6,-74.76487166,39.3410565,2214 WABASH AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_10_7,-74.61318549,39.37358067,2212 WABASH AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_10_8,-74.5465665,39.3695455,17 W FRANCES AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_10_9,-74.53687659,39.37259859,15 W FRANCES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_100_1,-74.4216461,39.36890743,334 W VAN SANT AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_100_10,-74.5156691,39.43456159,379 W POPLAR AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_100_11,-74.4944505,39.4298775,377 W POPLAR AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_100_12,-74.50645984,39.40363491,947 BRYANT AVE,LINWOOD CITY,17,1990,1,RES1,3001 -0114_100_13,-74.51351734,39.39888124,949 BRYANT AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_100_14,-74.52668915,39.38361456,951 BRYANT AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_100_15,-74.80851317,39.66233401,953 BRYANT AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_100_16,-74.78578824,39.64415284,955 BRYANT AVE,LINWOOD CITY,16,1960,1,COM4,3004 -0114_100_17,-74.37089151,39.41734521,957 BRYANT AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_100_18,-74.365048,39.4153525,332 W VAN SANT AVE,LINWOOD CITY,16,1935,1,RES1,3001 -0114_100_19,-74.43504,39.371358,959 BRYANT AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_100_2,-74.37623343,39.41703528,920 OAK AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_100_20,-74.50185761,39.33507867,330 W VAN SANT AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_100_3,-74.79452266,39.64023215,916 OAK AVE,LINWOOD CITY,15,1929,1,GOV1,3004 -0114_100_4,-74.80744685,39.64120073,914 OAK AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_100_5,-74.43307843,39.35884182,908 OAK AVE,LINWOOD CITY,15,1925,1,RES1,3001 -0114_100_6,-74.5269315,39.3907985,906 OAK AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_100_7,-74.52151907,39.39376987,904 OAK AVE,LINWOOD CITY,16,1960,1,RES1,3004 -0114_100_8,-74.489739,39.426532,902 OAK AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_100_9,-74.51987813,39.44386212,391 W POPLAR AVE,LINWOOD CITY,16,1924,1,RES1,3001 -0114_101_1,-74.5192005,39.400441,954 BRYANT AVE,LINWOOD CITY,17,1972,1,RES1,3001 -0114_101_2,-74.50501082,39.42415498,361 W POPLAR AVE,LINWOOD CITY,16,1938,1,RES1,3001 -0114_101_3,-74.5021355,39.4134105,351 W POPLAR AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_101_4,-74.44137344,39.36706932,336 MURPHY'S WAY,LINWOOD CITY,17,1990,1,RES1,3001 -0114_101_5,-74.49205718,39.41866908,347 W POPLAR AVE,LINWOOD CITY,16,1908,1,RES1,3001 -0114_101_6,-74.42403,39.3664245,330 MURPHY'S WAY,LINWOOD CITY,17,2004,1,RES3A,3001 -0114_101_7,-74.5262585,39.398253,341 W POPLAR AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_101_8,-74.834306,39.641958,324 MURPHY'S WAY,LINWOOD CITY,17,2005,1,RES1,3001 -0114_101_9.01,-74.51706903,39.39976732,333 W POPLAR AVE,LINWOOD CITY,15,1900,1,RES3A,3001 -0114_101_9.02,-74.4515415,39.3723065,333 W POPLAR AVE (REAR),LINWOOD CITY,,0,1,RES1,3001 -0114_102_10,-74.4021685,39.391348,921 OAK GROVE AVE,LINWOOD CITY,16,1918,1,GOV1,3004 -0114_102_11,-74.356229,39.4151035,917 OAK GROVE AVE,LINWOOD CITY,16,1933,1,RES1,3001 -0114_102_12,-74.36879778,39.41470805,913 OAK GROVE AVE,LINWOOD CITY,15,1923,1,RES1,3001 -0114_102_13,-74.45235665,39.37487931,909 OAK GROVE AVE,LINWOOD CITY,15,1935,1,COM1,3004 -0114_102_15,-74.7969305,39.6419875,903 OAK GROVE AVE,LINWOOD CITY,17,1928,1,RES1,3001 -0114_102_16,-74.51053832,39.38522498,317 W POPLAR AVE,LINWOOD CITY,16,1984,1,RES1,3001 -0114_102_17,-74.43838569,39.36759266,311 W POPLAR AVE,LINWOOD CITY,16,1933,1,RES1,3001 -0114_102_18,-74.41863604,39.36804565,303 W POPLAR AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_102_2,-74.359035,39.414758,958 BRYANT AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_102_3,-74.4077695,39.3803265,314 W VAN SANT AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_102_4,-74.51201662,39.33891128,308 W VAN SANT AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_102_5,-74.4016678,39.38741484,302 W VAN SANT AVE,LINWOOD CITY,18,1886,1,RES1,3001 -0114_102_6,-74.6305769,39.61811805,228 W VAN SANT AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_102_7,-74.6870735,39.5558205,947 OAK GROVE AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_102_8,-74.77729246,39.51705231,933 OAK GROVE AVE,LINWOOD CITY,15,1925,2,RES1,3001 -0114_102_9,-74.41386965,39.37129092,929 OAK GROVE AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_103_1,-74.56163525,39.5326372,214 W VAN SANT AVE,LINWOOD CITY,16,1918,1,RES1,3001 -0114_103_10,-74.4994205,39.334889,920 OAK GROVE AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_103_11,-74.36595716,39.40883852,811 MAPLE AVE,LINWOOD CITY,15,1930,1,RES1,3001 -0114_103_12,-74.39888,39.384972,911 WABASH AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_103_13,-74.88493495,39.59735174,912 OAK GROVE AVE,LINWOOD CITY,16,1971,1,GOV1,3004 -0114_103_14,-74.3713405,39.4115685,805 MAPLE AVE,LINWOOD CITY,16,1938,1,RES1,3001 -0114_103_2,-74.643755,39.5324265,940 OAK GROVE AVE,LINWOOD CITY,16,1974,1,RES1,3001 -0114_103_3,-74.8524365,39.4728915,208 W VAN SANT AVE,LINWOOD CITY,16,1923,1,COM1,3004 -0114_103_4,-74.8805265,39.4927665,925 WABASH AVE,LINWOOD CITY,,0,1,RES3A,3001 -0114_103_5,-74.63685683,39.5300205,919 WABASH AVE,LINWOOD CITY,15,1981,1,RES1,3001 -0114_103_6,-74.65565898,39.54986126,932 OAK GROVE AVE,LINWOOD CITY,16,1931,1,RES1,3001 -0114_103_7.01,-74.6746367,39.51500032,917 WABASH AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_103_8,-74.65502423,39.62367794,924 OAK GROVE AVE,LINWOOD CITY,16,1943,1,RES1,3001 -0114_103_9,-74.702319,39.578141,915 WABASH AVE,LINWOOD CITY,15,1930,1,RES1,3001 -0114_104_2,-74.39245916,39.39499983,822 MAPLE AVE,LINWOOD CITY,16,2011,1,RES1,3001 -0114_104_5,-74.37361624,39.41294628,808 MAPLE AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_104_6.01,-74.8021545,39.640826,225 W POPLAR AVE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_104_6.02,-74.9560055,39.5379105,223 W POPLAR AVE,LINWOOD CITY,16,1984,1,RES1,3001 -0114_104_7,-74.36961193,39.41435527,203 W POPLAR AVE,LINWOOD CITY,16,1876,1,RES1,3001 -0114_105_1,-74.5529665,39.464951,108 W EDGEWOOD AVE,LINWOOD CITY,16,1940,1,RES1,3001 -0114_105_10,-74.57183813,39.47920042,1021 MAPLE AVE,LINWOOD CITY,17,1840,1,RES1,3001 -0114_105_11,-74.60902004,39.44006082,1011 MAPLE AVE,LINWOOD CITY,16,1820,1,RES1,3001 -0114_105_12,-74.60831831,39.50380253,1007 MAPLE AVE,LINWOOD CITY,16,1850,1,RES1,3001 -0114_105_13.01,-74.69012589,39.44785857,1005 MAPLE AVE,LINWOOD CITY,17,1883,1,RES1,3001 -0114_105_13.02,-74.678472,39.4837205,105 W VAN SANT AVE,LINWOOD CITY,16,1971,1,RES1,3001 -0114_105_13.03,-74.71279309,39.43574678,107 W VAN SANT AVE,LINWOOD CITY,17,1971,1,RES1,3001 -0114_105_2,-74.4860025,39.335048,104 W EDGEWOOD AVE,LINWOOD CITY,15,1945,1,RES1,3001 -0114_105_3,-74.47511094,39.33889274,30 W EDGEWOOD AVE,LINWOOD CITY,15,1945,1,RES1,3001 -0114_105_4,-74.4613835,39.347748,26 W EDGEWOOD AVE,LINWOOD CITY,16,1945,1,RES1,3001 -0114_105_5,-74.4560135,39.35026,22 W EDGEWOOD AVE,LINWOOD CITY,16,1940,1,RES1,3001 -0114_105_6,-74.519314,39.3221855,14 W EDGEWOOD AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_105_7.01,-74.461187,39.3526765,1049 MAPLE AVE,LINWOOD CITY,45,1870,2,RES1,3001 -0114_105_7.02,-74.50040329,39.32965776,1047 MAPLE AVE,LINWOOD CITY,17,1991,1,RES1,3001 -0114_105_8.01,-74.46714683,39.346341,1031 MAPLE AVE,LINWOOD CITY,16,1820,1,RES1,3001 -0114_105_8.02,-74.5536075,39.475324,1024 WABASH AVE,LINWOOD CITY,17,2002,1,RES1,3001 -0114_106_2,-74.74933638,39.44646333,100 W VAN SANT AVE,LINWOOD CITY,17,1929,1,RES1,3001 -0114_106_3,-74.75249,39.451834,104 W VAN SANT AVE,LINWOOD CITY,18,1982,1,RES1,3001 -0114_107_1,-74.50082802,39.33211489,1043-1055 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_107_10,-74.68356826,39.44447155,1014 MAPLE AVE,LINWOOD CITY,17,1860,1,RES1,3001 -0114_107_11,-74.7104935,39.4304745,1010 MAPLE AVE,LINWOOD CITY,15,1954,1,RES1,3001 -0114_107_12,-74.71393797,39.43070984,27 ELM AVE,LINWOOD CITY,16,1920,2,GOV1,3004 -0114_107_14,-74.702956,39.4848605,19 ELM AVE,LINWOOD CITY,16,1908,1,RES1,3001 -0114_107_15,-74.626915,39.5035766,15 ELM AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_107_16,-74.68890103,39.44761769,11 ELM AVE,LINWOOD CITY,17,1952,1,RES1,3001 -0114_107_17,-74.6304,39.467856,9 ELM AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_107_18.01,-74.60603,39.4928085,1003 SHORE ROAD,LINWOOD CITY,17,2003,1,RES1,3001 -0114_107_18.02,-74.53911127,39.47255195,1005 SHORE ROAD,LINWOOD CITY,17,1989,1,RES1,3001 -0114_107_18.03,-74.603791,39.499571,5 ELM AVE,LINWOOD CITY,16,1992,1,RES1,3001 -0114_107_2,-74.51787219,39.32137313,1037 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_107_3,-74.47175193,39.34102588,1040 MAPLE AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_107_4,-74.46207592,39.34905233,1031 SHORE RD,LINWOOD CITY,,0,1,RES1,3001 -0114_107_5,-74.48254692,39.34008303,1023 SHORE ROAD,LINWOOD CITY,16,1910,1,RES1,3001 -0114_107_6,-74.48671833,39.33438,1019 SHORE ROAD,LINWOOD CITY,16,1910,1,RES1,3001 -0114_107_7,-74.55300779,39.46479741,1015 SHORE ROAD,LINWOOD CITY,16,1911,1,AGR1,3001 -0114_107_8,-74.54408195,39.4578383,1036 MAPLE AVE,LINWOOD CITY,18,1860,1,RES1,3001 -0114_107_9,-74.55262278,39.47040893,1022 MAPLE AVE,LINWOOD CITY,17,1860,1,RES1,3001 -0114_108_1,-74.6218245,39.5131585,900 MAPLE AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_108_10,-74.76618127,39.45166794,17 W LAUREL AVE,LINWOOD CITY,17,1940,1,IND2,3002 -0114_108_11,-74.8607355,39.4362465,21 W LAUREL AVE,LINWOOD CITY,17,1940,1,RES1,3001 -0114_108_12,-74.8255797,39.48601347,25 W LAUREL AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_108_13,-74.85660638,39.48689768,29 W LAUREL AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_108_14,-74.5476565,39.504959,33 W LAUREL AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_108_15,-74.615295,39.516986,37 W LAUREL AVE,LINWOOD CITY,17,1920,1,RES1,3001 -0114_108_16,-74.62928763,39.52389344,41 W LAUREL AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_108_17,-74.656245,39.5409045,45 W LAUREL AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_108_2,-74.73064061,39.45389335,34 ELM AVE,LINWOOD CITY,18,2017,1,RES1,3001 -0114_108_3,-74.85746,39.4448465,14 ELM AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_108_4,-74.726163,39.4506385,12 ELM AVE,LINWOOD CITY,16,1959,1,COM1,3004 -0114_108_5,-74.83862546,39.4094583,10 ELM AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_108_6,-74.821695,39.3802175,911 SHORE ROAD,LINWOOD CITY,17,1900,1,RES1,3001 -0114_108_7,-74.8665515,39.435362,901 SHORE ROAD,LINWOOD CITY,17,1967,1,RES1,3001 -0114_108_8,-74.7202215,39.467578,11 W LAUREL AVE,LINWOOD CITY,15,1954,1,RES1,3001 -0114_108_9,-74.7530135,39.4510535,13 W LAUREL AVE,LINWOOD CITY,16,1974,1,RES1,3001 -0114_109_1,-74.49121034,39.33512849,44 W LAUREL AVE,LINWOOD CITY,16,1947,1,RES1,3001 -0114_109_10,-74.87267203,39.45673711,4 W LAUREL AVE,LINWOOD CITY,16,1956,1,COM4,3004 -0114_109_11,-74.71243482,39.47143331,803 SHORE ROAD,LINWOOD CITY,16,1954,1,RES1,3001 -0114_109_13,-74.509554,39.3368155,125 W POPLAR AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_109_14,-74.5022789,39.33609622,113 W POPLAR AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_109_15,-74.790161,39.5309415,111 W POPLAR AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_109_16,-74.6745677,39.61441938,25 W POPLAR AVE,LINWOOD CITY,16,1979,1,RES1,3001 -0114_109_17,-74.704545,39.5856985,7 W POPLAR AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_109_18.01,-74.65035383,39.52318098,801 SHORE ROAD,LINWOOD CITY,16,1883,1,RES1,3001 -0114_109_18.02,-74.68217384,39.52037353,5 W POPLAR AVE,LINWOOD CITY,16,1987,1,RES1,3001 -0114_109_2,-74.65402905,39.62476984,42 W LAUREL AVE,LINWOOD CITY,16,1933,1,RES1,3001 -0114_109_3,-74.66401301,39.59117108,38 W LAUREL AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_109_4,-74.67525194,39.55512636,34 W LAUREL AVE,LINWOOD CITY,16,1990,1,RES1,3001 -0114_109_5,-74.6420025,39.5299085,22 W LAUREL AVE,LINWOOD CITY,16,1926,1,RES1,3001 -0114_109_6,-74.643658,39.512984,18 W LAUREL AVE,LINWOOD CITY,16,1926,1,RES1,3001 -0114_109_7,-74.6312485,39.512481,16 W LAUREL AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_109_8,-74.5508736,39.53000118,10 W LAUREL AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_11_1,-74.5997515,39.4164315,20 W FRANCES AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_11_10,-74.57372635,39.41777556,2 W FRANCES AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_11_11.01,-74.55343759,39.40327382,2211 SHORE ROAD,LINWOOD CITY,16,1953,1,RES1,3001 -0114_11_11.02,-74.599414,39.4177525,17 W KIRKLIN AVE,LINWOOD CITY,16,1983,1,RES1,3001 -0114_11_13,-74.53604275,39.37370167,19 W KIRKLIN AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_11_14,-74.54938735,39.37614004,21 W KIRKLIN AVE,LINWOOD CITY,16,1924,1,RES1,3001 -0114_11_15,-74.599261,39.4115915,25 W KIRKLIN AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_11_16,-74.6088789,39.38209755,29 W KIRKLIN AVE,LINWOOD CITY,16,1924,1,RES1,3001 -0114_11_17,-74.53760932,39.41235239,105 W KIRKLIN AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_11_18,-74.5716295,39.428814,109 W KIRKLIN AVE,LINWOOD CITY,16,1930,2,RES1,3001 -0114_11_19,-74.590056,39.415049,115 W KIRKLIN AVE,LINWOOD CITY,16,1956,2,RES1,3001 -0114_11_2,-74.573342,39.4281165,18 W FRANCES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_11_22,-74.60335569,39.43224205,121 W KIRKLIN AVE,LINWOOD CITY,16,1940,1,RES1,3001 -0114_11_3,-74.56672183,39.41123477,16 W FRANCES AVE,LINWOOD CITY,16,1955,1,COM3,3004 -0114_11_4,-74.61579895,39.3948757,14 W FRANCES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_11_5,-74.5972372,39.38450313,12 W FRANCES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_11_6,-74.54815397,39.37138108,10 W FRANCES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_11_7,-74.5485015,39.376357,8 W FRANCES AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_11_8,-74.79426156,39.36107307,6 W FRANCES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_11_9,-74.59132974,39.41389312,4 W FRANCES AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_110_1,-74.3689198,39.40187936,2 E GLENSIDE AVE,LINWOOD CITY,15,1970,1,RES1,3001 -0114_110_2,-74.39069584,39.39106564,3 E MONROE AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_111_1.01,-74.7006402,39.41968395,2 E MONROE AVE,LINWOOD CITY,17,1954,1,RES1,3001 -0114_111_1.02,-74.38632706,39.39695715,6 E MONROE AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_111_2,-74.4977715,39.3308815,1104 SHORE ROAD,LINWOOD CITY,19,1900,1,RES1,3001 -0114_111_3,-74.3893399,39.38953886,1107 WOODE-LYNNE BLVD,LINWOOD CITY,18,1950,1,RES1,3001 -0114_111_4,-74.53797158,39.45985727,1101 WOODE-LYNNE BLVD,LINWOOD CITY,19,2005,1,RES1,3001 -0114_112_1,-74.48217,39.348044,1050 SHORE ROAD,LINWOOD CITY,,0,1,GOV1,3004 -0114_112_2,-74.49898792,39.33238734,10 E EDGEWOOD AVE,LINWOOD CITY,16,1880,1,RES1,3001 -0114_112_4,-74.49511716,39.33094004,1049 WOODE-LYNNE BLVD,LINWOOD CITY,19,2009,1,RES1,3001 -0114_112_5,-74.44728885,39.35269802,1038 SHORE ROAD,LINWOOD CITY,17,1800,1,RES1,3001 -0114_112_6,-74.486127,39.3467025,1011 WOODE-LYNNE BLVD,LINWOOD CITY,17,1962,1,RES1,3001 -0114_112_7.01,-74.49864145,39.32999032,1 E DELMAR AVE,LINWOOD CITY,16,2005,1,RES1,3001 -0114_112_7.02,-74.49771462,39.33775554,3 E DELMAR AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_112_8.01,-74.45388966,39.35352994,5 E DELMAR AVE,LINWOOD CITY,17,1991,1,RES1,3001 -0114_112_8.02,-74.4770045,39.343111,7 E DELMAR AVE,LINWOOD CITY,18,2008,1,RES1,3001 -0114_113_1,-74.480641,39.335879,1010 SHORE ROAD,LINWOOD CITY,18,1951,1,RES1,3001 -0114_113_2,-74.46133123,39.35056283,1019 WOODE-LYNNE BLVD,LINWOOD CITY,17,1950,1,GOV1,3004 -0114_113_3,-74.5552635,39.4752855,1000 SHORE ROAD,LINWOOD CITY,17,1956,1,RES1,3001 -0114_113_4,-74.57998541,39.44412723,5 COUNTRY CLUB DR,LINWOOD CITY,17,1956,1,RES1,3001 -0114_113_5,-74.5528526,39.46950564,1001 WOODE-LYNNE BLVD,LINWOOD CITY,19,2008,1,RES1,3001 -0114_114_1,-74.69909467,39.48162735,2 COUNTRY CLUB DRIVE,LINWOOD CITY,19,2009,1,RES1,3001 -0114_114_2,-74.55309327,39.49794305,8 COUNTRY CLUB DR,LINWOOD CITY,15,1945,1,RES1,3001 -0114_114_3,-74.6263525,39.437554,999 WOODE-LYNNE BLVD,LINWOOD CITY,17,1960,1,RES3A,3001 -0114_114_5,-74.63506883,39.50275179,931 WOODE-LYNNE BLVD,LINWOOD CITY,17,1957,1,COM1,3004 -0114_114_7,-74.867546,39.4976305,SHORE & POPLAR AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_114_8.01,-74.7510465,39.448792,901 WOODE-LYNNE BLVD,LINWOOD CITY,17,1975,1,RES1,3001 -0114_114_8.02,-74.835272,39.4149975,905 WOODE-LYNNE BLVD,LINWOOD CITY,17,1974,1,GOV1,3004 -0114_114_8.03,-74.7353285,39.433537,909 WOODE-LYNNE BLVD,LINWOOD CITY,18,1974,1,RES1,3001 -0114_115_1,-74.46291565,39.35771011,1020 WOODE-LYNNE BLVD,LINWOOD CITY,19,2001,1,RES1,3001 -0114_115_10,-74.51471422,39.32756783,102 DAIRY LANE,LINWOOD CITY,17,1971,1,RES1,3001 -0114_115_11,-74.47960433,39.3391613,103 COUNTRY CLUB DR,LINWOOD CITY,17,1970,1,RES1,3001 -0114_115_12,-74.52001217,39.31811249,106 DAIRY LANE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_115_13,-74.4647905,39.3476155,105 COUNTRY CLUB DR,LINWOOD CITY,18,1969,1,RES1,3001 -0114_115_14,-74.52270494,39.32174833,107 COUNTRY CLUB DR,LINWOOD CITY,17,1973,1,RES1,3001 -0114_115_15,-74.49435967,39.3414915,109 COUNTRY CLUB DRIVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_115_16,-74.48577604,39.34589824,111 COUNTRY CLUB DRIVE,LINWOOD CITY,18,1986,1,RES1,3001 -0114_115_17,-74.49869693,39.33255284,117 COUNTRY CLUB DRIVE,LINWOOD CITY,20,1979,1,RES1,3001 -0114_115_2,-74.502661,39.326685,1008 WOODE-LYNNE BLVD,LINWOOD CITY,17,1955,1,RES1,3001 -0114_115_3,-74.4965045,39.335266,105 DAIRY LANE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_115_4,-74.4830455,39.3450405,104 E DELMAR AVE,LINWOOD CITY,17,1957,1,RES1,3001 -0114_115_5,-74.462186,39.353778,109 DAIRY LANE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_115_6,-74.482718,39.344216,114 E DELMAR AVE,LINWOOD CITY,18,1958,1,RES1,3001 -0114_115_7,-74.48450983,39.34357958,116 E DELMAR AVE,LINWOOD CITY,18,1987,1,RES1,3001 -0114_115_8,-74.47435217,39.33959549,100 DAIRY LANE,LINWOOD CITY,17,1972,1,COM1,3004 -0114_115_9,-74.53908378,39.46835641,101 COUNTRY CLUB DR,LINWOOD CITY,17,1973,1,RES1,3001 -0114_116_10,-74.54733378,39.47221744,535 W BARR AVE,LINWOOD CITY,15,1932,1,RES1,3001 -0114_116_11,-74.54861191,39.4670688,531 W BARR AVE,LINWOOD CITY,15,1926,1,RES1,3001 -0114_116_12,-74.54091323,39.45918603,527 W BARR AVE,LINWOOD CITY,15,1932,1,RES1,3001 -0114_116_13,-74.66058492,39.40349765,510 W DAVIS AVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_116_14,-74.57021134,39.451545,523 W BARR AVE,LINWOOD CITY,15,1927,1,RES3A,3001 -0114_116_15,-74.70569383,39.42615577,519 W BARR AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_116_16,-74.63720538,39.42990286,515 W BARR AVE,LINWOOD CITY,15,1920,1,RES1,3001 -0114_116_17,-74.62495884,39.41714034,508 W DAVIS AVE,LINWOOD CITY,16,1968,1,GOV1,3004 -0114_116_18,-74.6440975,39.3823775,506 W DAVIS AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_116_19.02,-74.63726861,39.43220675,507 W BARR AVE,LINWOOD CITY,15,1954,1,RES1,3001 -0114_116_20,-74.59867464,39.43159628,504 W DAVIS AVE,LINWOOD CITY,16,1965,1,RES3A,3001 -0114_116_21,-74.60516688,39.41394527,502 W DAVIS AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_116_22,-74.58786129,39.4069651,500 W DAVIS AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_116_3,-74.62906462,39.48363714,555 W BARR AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_116_4,-74.54605216,39.47506228,717 RIVER DRIVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_116_5,-74.53976482,39.45951996,715 RIVER DRIVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_116_6,-74.63271396,39.46195724,549 W BARR AVE,LINWOOD CITY,16,1984,1,RES1,3001 -0114_116_7,-74.66552296,39.42135526,711 RIVER DRIVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_116_8,-74.6061685,39.4847295,543 W BARR AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_116_9,-74.6207437,39.43081687,512 W DAVIS AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_117_1,-74.56050041,39.36599386,730 RIVER DRIVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_117_10,-74.60409112,39.33274197,505 W STERLING AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_117_11,-74.58522918,39.32345003,504 W POPLAR AVE,LINWOOD CITY,17,1962,1,RES3A,3001 -0114_117_12,-74.60412633,39.32022099,503 W STERLING AVE,LINWOOD CITY,17,1963,1,RES1,3001 -0114_117_13,-74.59966509,39.31495768,502 W POPLAR AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_117_14,-74.58939419,39.33286853,501 W STERLING AVE,LINWOOD CITY,16,1964,1,REL1,3004 -0114_117_2,-74.5851486,39.35928785,513 W STERLING AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_117_3,-74.56540967,39.3479895,512 W POPLAR AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_117_4,-74.59677406,39.34978311,511 W STERLING AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_117_5,-74.61638709,39.31904668,510 W POPLAR AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_117_6,-74.5569025,39.366513,509 W STERLING AVE,LINWOOD CITY,17,1964,1,RES3A,3001 -0114_117_7,-74.6001185,39.3222705,508 W POPLAR AVE,LINWOOD CITY,16,1962,1,RES3A,3001 -0114_117_8,-74.56804065,39.34513522,507 W STERLING AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_117_9,-74.5941175,39.33421093,506 W POPLAR AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_118_1,-74.76457107,39.35136177,724 RIVER DRIVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_118_10,-74.6160923,39.36466933,505 W WILSON AVE,LINWOOD CITY,16,1965,1,GOV1,3004 -0114_118_11,-74.57240177,39.35330392,504 W STERLING AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_118_12,-74.58911781,39.35655392,503 W WILSON AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_118_13,-74.57281725,39.34473429,502 W STERLING AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_118_14,-74.5810015,39.341487,501 W WILSON AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_118_2,-74.5741795,39.4302825,722 RIVER DRIVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_118_3,-74.65354289,39.36808955,512 W STERLING AVE,LINWOOD CITY,16,1962,1,RES3A,3001 -0114_118_4,-74.60769204,39.39520179,511 W WILSON AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_118_5,-74.63971291,39.33860236,510 W STERLING AVE,LINWOOD CITY,17,1963,1,RES1,3001 -0114_118_6,-74.8050981,39.31440836,509 W WILSON AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_118_7,-74.58250721,39.36760553,508 W STERLING AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_118_8,-74.64194518,39.36127185,507 W WILSON AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_118_9,-74.5790835,39.3429355,506 W STERLING AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_119_1,-74.63614081,39.38432612,720 RIVER DRIVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_119_10,-74.59130825,39.40872555,503 W DAVIS AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_119_11,-74.75630564,39.30935489,504 W WILSON AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_119_12,-74.6399335,39.366858,502 W WILSON AVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_119_13,-74.56552325,39.41590259,501 W DAVIS AVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_119_2,-74.68345,39.3974285,718 RIVER DRIVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_119_3,-74.57907516,39.43038977,512 W WILSON AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_119_4,-74.65225393,39.36905926,509 W DAVIS AVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_119_5,-74.57828452,39.41738968,510 W WILSON AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_119_6,-74.6043765,39.431834,507 W DAVIS AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_119_7,-74.57098826,39.42903609,508 W WILSON AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_119_8,-74.60312054,39.41024481,505 W DAVIS AVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_119_9,-74.60194696,39.38800806,506 W WILSON AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_12_1,-74.6738895,39.413931,118 W KIRKLIN AVE,LINWOOD CITY,17,2005,1,RES1,3001 -0114_12_10,-74.59025,39.429576,34 W KIRKLIN AVE,LINWOOD CITY,16,1934,1,RES1,3001 -0114_12_11,-74.59747025,39.4184453,22 W KIRKLIN AVE,LINWOOD CITY,16,1946,1,RES1,3001 -0114_12_12,-74.57292287,39.42047088,20 W KIRKLIN AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_12_13,-74.57158495,39.4272944,18 W KIRKLIN AVE,LINWOOD CITY,15,1929,2,RES1,3001 -0114_12_14,-74.5352505,39.4151675,2161 SHORE ROAD,LINWOOD CITY,16,1930,2,RES1,3001 -0114_12_15,-74.61478004,39.39387431,2155 SHORE ROAD,LINWOOD CITY,16,1834,1,RES1,3001 -0114_12_16.01,-74.59465671,39.43438679,2149 SHORE ROAD,LINWOOD CITY,17,1992,1,RES1,3001 -0114_12_17,-74.605886,39.434092,2143 SHORE ROAD,LINWOOD CITY,16,1927,1,RES1,3001 -0114_12_18,-74.642504,39.392595,2139 SHORE ROAD,LINWOOD CITY,16,1859,1,RES1,3001 -0114_12_21.01,-74.5457895,39.4759825,2102 WABASH AVE,LINWOOD CITY,16,1973,1,RES3A,3001 -0114_12_21.02,-74.60852727,39.48998382,115 W GARFIELD AVE,LINWOOD CITY,16,1974,1,RES3A,3001 -0114_12_22,-74.56522607,39.47955668,109 W GARFIELD AVE,LINWOOD CITY,16,1942,1,RES1,3001 -0114_12_24,-74.78435347,39.64019184,31 W GARFIELD AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_12_25,-74.8858143,39.56315893,29 W GARFIELD AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_12_26,-74.9398655,39.519605,15 W GARFIELD AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_12_27,-74.9182085,39.491858,11 W GARFIELD AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_12_28,-74.7986635,39.6010785,2101 SHORE ROAD,LINWOOD CITY,16,1969,1,RES1,3001 -0114_12_4,-74.63126916,39.42354117,114 W KIRKLIN AVE,LINWOOD CITY,17,2017,1,RES1,3001 -0114_12_5,-74.65374865,39.40441199,112 W KIRKLIN AVE,LINWOOD CITY,16,1932,2,RES1,3001 -0114_12_7,-74.62513092,39.4142415,108 W KIRKLIN AVE,LINWOOD CITY,16,1929,1,RES1,3001 -0114_12_9,-74.6198745,39.38198,100 W KIRKLIN AVE,LINWOOD CITY,16,1929,1,RES1,3001 -0114_120_1,-74.48745282,39.49636182,500 W POPLAR AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_120_2,-74.61495277,39.3167999,726 BRIGHTON DRIVE,LINWOOD CITY,16,1963,1,RES1,3002 -0114_120_4,-74.60980877,39.31779134,722 BRIGHTON DRIVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_120_5,-74.56941419,39.35398504,720 BRIGHTON DRIVE,LINWOOD CITY,17,2004,1,RES1,3001 -0114_120_6,-74.584749,39.3577365,718 BRIGHTON DRIVE,LINWOOD CITY,16,2002,1,RES1,3001 -0114_120_7,-74.62396437,39.35628222,716 BRIGHTON DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_121_10.01,-74.63947144,39.4363329,537 OAK AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_121_10.02,-74.63111945,39.48129335,1 LIBERTY LANE,LINWOOD CITY,16,1979,1,RES1,3001 -0114_121_10.03,-74.699364,39.4914065,2 LIBERTY LANE,LINWOOD CITY,16,1975,1,RES1,3001 -0114_121_11.01,-74.6779545,39.49915,535 OAK AVE,LINWOOD CITY,16,1979,1,GOV1,3004 -0114_121_11.02,-74.72115937,39.39126371,533 OAK AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_121_12,-74.81784729,39.39181135,427 OAK AVE,LINWOOD CITY,17,1817,1,RES1,3001 -0114_121_13,-74.7239695,39.440659,417 OAK AVE,LINWOOD CITY,16,1975,1,RES1,3001 -0114_121_14,-74.8118525,39.4699545,411 OAK AVE,LINWOOD CITY,16,1974,1,RES1,3001 -0114_121_15,-74.65410993,39.55310485,409 OAK AVE,LINWOOD CITY,17,1975,1,RES1,3001 -0114_121_16,-74.53800001,39.53732966,505 CEDARBROOK LA,LINWOOD CITY,16,1978,1,RES1,3002 -0114_121_17,-74.75524,39.4536375,509 CEDARBROOK LANE,LINWOOD CITY,16,1975,1,RES1,3002 -0114_121_18,-74.7494327,39.44711767,1 SANDY COURT,LINWOOD CITY,17,1978,1,RES1,3001 -0114_121_19,-74.82234384,39.39113799,3 SANDY COURT,LINWOOD CITY,16,1978,1,RES1,3001 -0114_121_20,-74.711028,39.4343615,5 SANDY COURT,LINWOOD CITY,16,1978,1,RES1,3001 -0114_121_21,-74.807958,39.379206,4 SANDY COURT,LINWOOD CITY,16,1975,1,RES1,3001 -0114_121_22,-74.8248805,39.4121325,2 SANDY COURT,LINWOOD CITY,16,1977,1,GOV1,3004 -0114_121_23,-74.82964033,39.40848054,521 CEDARBROOK LANE S,LINWOOD CITY,18,1978,1,COM1,3004 -0114_121_24,-74.736014,39.465399,525 CEDARBROOK LANE,LINWOOD CITY,18,1976,1,RES3B,3001 -0114_121_25,-74.68946096,39.51096844,417 CEDARBROOK LANE W,LINWOOD CITY,16,1977,1,RES1,3001 -0114_121_26,-74.68541077,39.58326992,411 CEDARBROOK LANE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_121_27,-74.825639,39.538318,409 CEDARBROOK LANE W,LINWOOD CITY,17,1977,1,RES3A,3001 -0114_121_28,-74.7767545,39.6207585,403 CEDARBROOK LANE W,LINWOOD CITY,18,1978,1,RES1,3001 -0114_121_29,-74.8210625,39.6213925,401 CEDARBROOK LANE W,LINWOOD CITY,18,1977,1,RES1,3001 -0114_121_3,-74.75831,39.431705,546 W BARR AVE,LINWOOD CITY,16,1932,1,RES1,3001 -0114_121_4,-74.7135555,39.4204405,540 W BARR AVE,LINWOOD CITY,15,1932,1,RES1,3001 -0114_121_6,-74.66469411,39.4545251,534 W BARR AVE,LINWOOD CITY,15,1927,1,RES1,3001 -0114_121_7,-74.676917,39.4474485,522 W BARR AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_121_8,-74.6096935,39.5015945,510 W BARR AVE,LINWOOD CITY,15,1927,1,RES1,3001 -0114_121_9.01,-74.617025,39.4597375,502 W BARR AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_121_9.02,-74.53861681,39.45934346,539 OAK AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_122_1,-74.86840363,39.56015014,408 CEDARBROOK LANE W,LINWOOD CITY,17,1978,1,RES3B,3001 -0114_122_2,-74.69233503,39.63656404,412 CEDARBROOK LANE W,LINWOOD CITY,17,1980,1,RES1,3001 -0114_122_3,-74.6872357,39.5514394,416 CEDARBROOK LANE W,LINWOOD CITY,18,1978,1,RES1,3001 -0114_122_4,-74.8434455,39.4809125,524 CEDARBROOK LA,LINWOOD CITY,17,1979,1,RES1,3001 -0114_122_5,-74.6662765,39.5596545,520 CEDARBROOK LANE,LINWOOD CITY,17,1980,1,RES3A,3001 -0114_122_6,-74.59104381,39.51049234,411 DANIELLE DRIVE,LINWOOD CITY,17,1977,1,RES1,3001 -0114_122_7,-74.60639471,39.58886291,409 DANIELLE DRIVE,LINWOOD CITY,17,2007,1,RES1,3001 -0114_122_8,-74.8560591,39.55737114,407 DANIELLE DRIVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_123_1,-74.882099,39.596291,404 CEDARBROOK LANE WEST,LINWOOD CITY,17,1976,1,RES3A,3001 -0114_123_3,-74.77497221,39.63244891,404 DANIELLE DR,LINWOOD CITY,16,1978,1,RES1,3001 -0114_123_4,-74.86550609,39.60029684,635 CENTRAL AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_123_5,-74.87593031,39.59697548,631 CENTRAL AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_123_6,-74.76908841,39.60860838,408 DANIELLE DR,LINWOOD CITY,16,1977,1,RES1,3001 -0114_123_7,-74.77665166,39.62099637,405 LEENIE LANE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_123_8,-74.791102,39.6391555,401 LEENIE LANE,LINWOOD CITY,16,1979,1,RES1,3001 -0114_124_1,-74.62392758,39.60939284,412 LEENIE LANE,LINWOOD CITY,16,1978,1,COM1,3004 -0114_124_2,-74.773825,39.5210045,408 LEENIE LANE,LINWOOD CITY,16,1978,1,COM1,3004 -0114_124_3,-74.86533574,39.55936171,404 LEENIE LANE,LINWOOD CITY,17,1979,1,COM4,3004 -0114_124_4,-74.78849983,39.61123403,400 LEENIE LANE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_124_5,-74.6667897,39.52164971,512 CEDARBROOK LANE,LINWOOD CITY,17,1991,1,RES3A,3001 -0114_124_6,-74.604871,39.5916405,508 CEDARBROOK LA S,LINWOOD CITY,16,1979,1,RES1,3002 -0114_124_7,-74.62694367,39.60711252,504 CEDARBROOK LANE S,LINWOOD CITY,17,1980,1,RES3A,3001 -0114_124_8,-74.80913828,39.55342381,500 CEDARBROOK LANE S,LINWOOD CITY,17,1975,1,RES1,3001 -0114_124_9,-74.79253435,39.60220548,401 OAK AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_125_1,-74.689079,39.36238,609 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_125_10,-74.604882,39.486917,535 MAPLE AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_125_12,-74.67494099,39.41260627,601 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_125_3,-74.59286856,39.43036406,614 OAK AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_125_4,-74.64169613,39.379146,602 OAK AVE,LINWOOD CITY,16,1905,1,RES1,3001 -0114_125_5,-74.59158886,39.43152317,605 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_125_6,-74.65705007,39.41431174,542 OAK AVE,LINWOOD CITY,16,1903,1,RES1,3001 -0114_125_7,-74.6992472,39.42313469,540 OAK AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_125_8,-74.56604012,39.47398489,538 OAK AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_125_9.01,-74.64227241,39.46210417,524 OAK AVE,LINWOOD CITY,16,1985,1,RES1,3002 -0114_125_9.02,-74.79041993,39.38118077,502 OAK AVE,LINWOOD CITY,16,1883,1,RES3A,3001 -0114_126_1,-74.6085045,39.324887,400 W POPLAR AVENUE,LINWOOD CITY,,0,1,RES1,3001 -0114_127_11,-74.49605079,39.44187009,328 W POPLAR AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_127_12,-74.51070016,39.41877451,318 W POPLAR AVE,LINWOOD CITY,16,1926,1,RES1,3002 -0114_127_13,-74.50591741,39.40805136,306 W POPLAR AVE,LINWOOD CITY,16,1901,1,RES1,3001 -0114_127_3,-74.4570655,39.474822,3 CEDAR PLACE,LINWOOD CITY,15,1933,1,RES1,3001 -0114_127_4,-74.59413499,39.37851303,717 CEDAR PLACE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_127_5,-74.487857,39.5002035,719 CEDAR PLACE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_127_6,-74.51318655,39.44125079,360 W POPLAR AVE,LINWOOD CITY,15,1937,1,RES1,3001 -0114_127_7.01,-74.546123,39.38834233,2 CEDAR PLACE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_127_7.02,-74.49857967,39.47119984,4 CEDAR PLACE,LINWOOD CITY,16,1974,1,RES1,3001 -0114_127_8,-74.4652635,39.49419046,719 MAPLE AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_127_9,-74.591154,39.375741,721 MAPLE AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_128_10,-74.591818,39.366305,637 MAPLE AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_128_11.01,-74.59572037,39.41934935,600 NEW ROAD,LINWOOD CITY,,0,1,RES1,3002 -0114_128_11.02,-74.60097031,39.38731668,650 NEW ROAD,LINWOOD CITY,,0,1,RES3A,3001 -0114_128_3,-74.60331317,39.32795105,406 W EDNA AVE,LINWOOD CITY,16,1932,1,RES1,3002 -0114_128_4,-74.602079,39.3243035,408 W EDNA AVE,LINWOOD CITY,16,1943,1,COM1,3004 -0114_128_5,-74.57752521,39.33281534,659 MAPLE AVE,LINWOOD CITY,16,1918,1,RES1,3001 -0114_128_6,-74.59819884,39.31854933,645 MAPLE AVE,LINWOOD CITY,16,1938,1,RES1,3001 -0114_128_7.01,-74.6076495,39.326971,641 MAPLE AVE,LINWOOD CITY,16,1938,1,RES1,3001 -0114_128_8,-74.61146533,39.32714247,643 MAPLE AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_128_9,-74.56441832,39.36159096,639 MAPLE AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_129_1,-74.60320564,39.37131836,720 MAPLE AVE,LINWOOD CITY,16,1960,1,RES1,3002 -0114_129_2,-74.5072937,39.49288465,303 W WILSON AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_129_3,-74.468797,39.491848,301 W WILSON AVE,LINWOOD CITY,16,1954,1,RES1,3002 -0114_13_1,-74.73460404,39.45245782,2001 BURWICK AVE,LINWOOD CITY,17,1930,1,RES1,3002 -0114_13_10,-74.6249855,39.4366245,24 W GARFIELD AVE,LINWOOD CITY,16,1869,1,RES1,3002 -0114_13_11,-74.60661766,39.48162217,14 W GARFIELD AVE,LINWOOD CITY,16,1919,1,RES1,3001 -0114_13_13,-74.94375956,39.5332507,2047 SHORE ROAD,LINWOOD CITY,16,1930,1,RES1,3001 -0114_13_14,-74.55507679,39.47781944,2037 SHORE ROAD,LINWOOD CITY,16,1900,1,RES1,3001 -0114_13_16,-74.79696404,39.63615829,2025 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_13_17,-74.806662,39.6370165,2009 SHORE ROAD,LINWOOD CITY,16,1937,1,RES1,3001 -0114_13_18,-74.903598,39.4722785,2001 SHORE ROAD,LINWOOD CITY,16,1884,1,RES1,3001 -0114_13_19,-74.79818587,39.6357646,2009 KENT LANE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_13_20,-74.82424335,39.40197548,15 GREENWICH RD,LINWOOD CITY,16,1953,1,RES3A,3001 -0114_13_21,-74.79890333,39.41911306,21 GREENWICH RD,LINWOOD CITY,16,1955,1,RES1,3001 -0114_13_22,-74.81709402,39.41085217,25 GREENWICH RD,LINWOOD CITY,14,1951,1,RES3A,3001 -0114_13_23,-74.80356668,39.37583499,2002 BURWICK LANE,LINWOOD CITY,17,1970,1,COM1,3004 -0114_13_4,-74.70824428,39.36941408,120 W GARFIELD AVE,LINWOOD CITY,16,1859,1,RES3A,3001 -0114_13_5,-74.68234143,39.49759165,112 W GARFIELD AVE,LINWOOD CITY,16,1860,1,RES1,3001 -0114_13_6,-74.69305785,39.44794641,108 W GARFIELD AVE,LINWOOD CITY,16,1884,1,RES3A,3001 -0114_13_7,-74.68241559,39.49438097,104 W GARFIELD AVE,LINWOOD CITY,15,1925,1,RES1,3001 -0114_13_8,-74.68674194,39.47933088,100 W GARFIELD AVE,LINWOOD CITY,16,1900,1,COM4,3004 -0114_13_9,-74.6687135,39.457675,30 W GARFIELD AVE,LINWOOD CITY,16,1949,1,RES1,3001 -0114_130_1,-74.56777466,39.34756983,301 W DAVIS AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_131_10,-74.6273475,39.36403646,309 W BARR AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_131_12,-74.59854639,39.35885954,305 W BARR AVE,LINWOOD CITY,17,2004,1,RES1,3001 -0114_131_14,-74.615011,39.3378795,303 W BARR AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_131_15,-74.5707385,39.3671155,601 GRAMMERCY AVE,LINWOOD CITY,15,1964,1,RES3A,3001 -0114_131_2,-74.60498372,39.35078707,330 W DAVIS AVE,LINWOOD CITY,16,1955,1,RES3B,3001 -0114_131_3,-74.59442844,39.34935128,326 W DAVIS AVE,LINWOOD CITY,16,1923,1,RES1,3001 -0114_131_4,-74.56570315,39.35997621,322 W DAVIS AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_131_5,-74.56116153,39.35997788,318 W DAVIS AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_131_6,-74.55050926,39.36040111,300 W DAVIS AVE,LINWOOD CITY,16,1935,1,RES1,3001 -0114_131_7,-74.61684656,39.39299429,321 W BARR AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_131_8,-74.70784958,39.36673417,319 W BARR AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_131_9,-74.65776666,39.36711273,317 W BARR AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_132_1,-74.62856666,39.41662432,598 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_132_10,-74.68172043,39.38953282,317 W HAINES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_132_11,-74.6515095,39.3701185,315 W HAINES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_132_12,-74.602384,39.4317255,313 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_132_13,-74.59705719,39.42054226,311 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_132_14,-74.594474,39.4150265,309 W HAINES AVE,LINWOOD CITY,16,2011,1,RES3A,3001 -0114_132_15,-74.57723817,39.40811895,307 W HAINES AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_132_16,-74.54190722,39.42303356,305 W HAINES AVE,LINWOOD CITY,15,1954,1,RES1,3001 -0114_132_17,-74.6014885,39.38867019,303 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_132_18,-74.804713,39.313862,301 W HAINES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_132_2,-74.59089069,39.43397486,316 W BARR AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_132_3,-74.58316288,39.41633019,314 W BARR AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_132_4,-74.5712335,39.428225,312 W BARR AVE,LINWOOD CITY,17,2006,1,GOV1,3004 -0114_132_5,-74.53925372,39.40696841,310 W BARR AVE,LINWOOD CITY,16,1957,1,GOV1,3004 -0114_132_6,-74.5413745,39.3757465,306 W BARR AVE,LINWOOD CITY,16,1957,1,GOV1,3004 -0114_132_7,-74.76542176,39.30121396,304 W BARR AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_132_8,-74.65220229,39.35701003,302 W BARR AVE,LINWOOD CITY,16,1957,1,RES3A,3001 -0114_132_9,-74.62556,39.3587185,300 W BARR AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_133_1,-74.53186935,39.40218718,724 MAPLE AVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_133_2,-74.52843,39.3996225,222 W POPLAR AVE,LINWOOD CITY,16,1945,1,RES1,3001 -0114_133_3,-74.5168425,39.3992655,220 W POPLAR AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_133_4,-74.47401691,39.48155236,233 W WILSON AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_133_5,-74.58996076,39.37638561,231 W WILSON AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_133_6,-74.5443085,39.3908195,225 W WILSON AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_133_7,-74.522932,39.4532015,221 W WILSON AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_133_8,-74.5291215,39.4491415,701 WABASH AVE,LINWOOD CITY,16,1956,1,RES1,3002 -0114_134_1,-74.5038835,39.4906435,234 W WILSON AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_134_10,-74.47030333,39.493277,207 W DAVIS AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_134_11.01,-74.451132,39.494935,201 W DAVIS AVE,LINWOOD CITY,17,1948,1,RES1,3001 -0114_134_11.02,-74.558546,39.398052,200 W WILSON AVE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_134_2,-74.49108839,39.47698118,232 W WILSON AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_134_3,-74.46752561,39.49307637,224 W WILSON AVE,LINWOOD CITY,18,2005,1,RES1,3001 -0114_134_4,-74.59842535,39.37124355,212 W WILSON AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_134_5,-74.6029685,39.310871,235 W DAVIS AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_134_6,-74.5024827,39.51953234,231 W DAVIS AVE,LINWOOD CITY,16,1946,1,RES1,3001 -0114_134_7,-74.509996,39.4877215,217 W DAVIS AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_134_8,-74.506583,39.4926405,215 W DAVIS AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_134_9,-74.52486784,39.47337096,213 W DAVIS AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_135_1,-74.60061576,39.32306418,234 W DAVIS AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_135_11,-74.5865355,39.321292,205 W BARR AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_135_12,-74.61150436,39.31577519,201 W BARR AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_135_2,-74.5856662,39.32889055,230 W DAVIS AVE,LINWOOD CITY,17,1928,1,RES1,3001 -0114_135_3,-74.61471733,39.3110655,214 W DAVIS AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_135_4,-74.59503346,39.31176735,212 W DAVIS AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_135_5,-74.4802085,39.538195,208 W DAVIS AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_135_6,-74.52349567,39.50831293,200 W DAVIS AVE,LINWOOD CITY,16,1940,1,RES1,3001 -0114_135_7,-74.56626933,39.34240848,215 W BARR AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_135_8,-74.61856713,39.3192052,211 W BARR AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_135_9,-74.60563283,39.32385149,209 W BARR AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_136_1,-74.61593817,39.34121445,214 W BARR AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_136_10,-74.5772165,39.3534475,207 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_136_11,-74.593404,39.348815,205 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_136_12,-74.56540534,39.36613044,203 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_136_13,-74.57226273,39.35648205,201 W HAINES AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_136_14,-74.6087245,39.3281295,403 WABASH AVE,LINWOOD CITY,27,1952,1,RES1,3001 -0114_136_15,-74.5570185,39.35825,401 WABASH AVE,LINWOOD CITY,27,1952,1,RES1,3001 -0114_136_2,-74.5719735,39.3662,210 W BARR AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_136_3,-74.55596668,39.35741441,208 W BARR AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_136_4,-74.55216371,39.36312388,206 W BARR AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_136_5,-74.60935526,39.32904593,204 W BARR AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_136_6,-74.61781061,39.31935532,202 W BARR AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_136_7,-74.6036595,39.3220035,200 W BARR AVE,LINWOOD CITY,16,1955,1,GOV1,3004 -0114_136_8,-74.63203729,39.35741077,211 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_136_9,-74.60503102,39.35764021,209 W HAINES AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_137_1,-74.882876,39.597097,136 W POPLAR AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_137_11,-74.41601184,39.36719535,133 W STERLING AVE,LINWOOD CITY,16,1961,1,RES1,3004 -0114_137_12,-74.806688,39.6484645,131 STERLING AVE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_137_13,-74.80361496,39.64647914,801 LINCOLN AVE,LINWOOD CITY,17,1956,1,RES1,3001 -0114_137_2,-74.82598575,39.64807629,132 W POPLAR AVE,LINWOOD CITY,16,1910,1,RES1,3004 -0114_137_3,-74.77374489,39.67559469,126 W POPLAR AVE,LINWOOD CITY,15,1930,1,COM1,3004 -0114_137_4,-74.78498604,39.63983834,118 W POPLAR AVE,LINWOOD CITY,16,1938,1,RES1,3001 -0114_137_5,-74.89797695,39.53801125,114 W POPLAR AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_137_6,-74.44592113,39.37497063,110 W POPLAR AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_137_7,-74.37211908,39.41369915,106 W POPLAR AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_137_8,-74.3741745,39.4182845,104 W POPLAR AVE,LINWOOD CITY,15,1928,1,RES3A,3001 -0114_138_1,-74.5170215,39.415309,136 W STERLING AVE,LINWOOD CITY,17,1954,1,AGR1,3001 -0114_138_2,-74.50308244,39.4179922,134 W STERLING AVE,LINWOOD CITY,17,1959,1,RES1,3001 -0114_138_3,-74.48325253,39.43555591,132 W STERLING AVE,LINWOOD CITY,16,1964,1,AGR1,3001 -0114_138_4,-74.52239249,39.38334717,130 W STERLING AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_138_5,-74.51846,39.3945215,719 LINCOLN AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_138_6,-74.5183742,39.42439319,133 W WILSON AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_138_7,-74.49690902,39.43105136,123 W WILSON AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_138_8,-74.513111,39.40275,711 LINCOLN AVE,LINWOOD CITY,17,1982,1,RES1,3001 -0114_139_1,-74.50101271,39.46537434,132 W WILSON AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_139_3,-74.4911456,39.44579928,122 W WILSON AVE,LINWOOD CITY,17,1956,1,RES1,3001 -0114_139_4,-74.46530431,39.45717059,631 LINCOLN AVE,LINWOOD CITY,17,1956,1,GOV1,3004 -0114_139_5,-74.54612329,39.39549352,135 W DAVIS AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_139_6,-74.51160601,39.46191989,115 W DAVIS AVE,LINWOOD CITY,16,1954,1,GOV1,3004 -0114_139_7,-74.49366916,39.45949377,611 LINCOLN AVE,LINWOOD CITY,17,1958,1,RES1,3001 -0114_14_1,-74.5459645,39.3779175,2410 SHORE RD,LINWOOD CITY,16,1983,1,RES1,3001 -0114_14_2,-74.55417203,39.38078093,2406 SHORE ROAD,LINWOOD CITY,16,1921,1,RES1,3001 -0114_14_3,-74.553564,39.378157,2404 SHORE ROAD,LINWOOD CITY,16,1916,1,RES1,3001 -0114_14_4,-74.534294,39.39006,2400 SHORE ROAD,LINWOOD CITY,15,1918,1,RES1,3001 -0114_14_5,-74.5495375,39.377802,11 E OCEAN HEIGHTS AVE,LINWOOD CITY,16,1920,1,AGR1,3001 -0114_140_1,-74.45495183,39.48962259,132 W DAVIS AVE,LINWOOD CITY,17,2003,1,RES2,3005 -0114_140_2,-74.577527,39.38335967,114 W DAVIS AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_140_3,-74.557672,39.3970075,102 W DAVIS AVE,LINWOOD CITY,16,1954,1,COM4,3004 -0114_140_4,-74.50482,39.4922515,107 W BARR AVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_140_5,-74.50478473,39.47956844,105 W BARR AVE,LINWOOD CITY,16,1955,1,RES1,3002 -0114_140_7,-74.45183061,39.4872482,101 W BARR AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_141_1,-74.5926115,39.323166,116 W BARR AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_141_2,-74.60690707,39.31697734,110 W BARR AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_141_3,-74.491224,39.5192085,407 LINCOLN AVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_141_4,-74.60702431,39.32260852,406 WABASH AVE,LINWOOD CITY,17,1997,1,RES1,3001 -0114_141_5,-74.585089,39.3280165,111 W HAINES AVE,LINWOOD CITY,16,1927,1,RES1,3001 -0114_141_6,-74.59303998,39.32209885,107 W HAINES AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_141_7,-74.591699,39.3235825,103 W HAINES AVE,LINWOOD CITY,17,1932,1,RES1,3001 -0114_142_1.01,-74.80699221,39.53127684,16 W POPLAR AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_142_1.02,-74.42264316,39.37267251,750 LINCOLN AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_142_2.01,-74.8058315,39.520969,1 W POPLAR AVE,LINWOOD CITY,17,1938,1,RES1,3001 -0114_142_3,-74.49268188,39.33458534,767 SHORE ROAD,LINWOOD CITY,17,1922,1,GOV1,3004 -0114_142_4,-74.366587,39.42336183,7 W STERLING AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_142_5,-74.36037902,39.41136116,5 W STERLING AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_142_6,-74.36824794,39.40839534,747 SHORE ROAD,LINWOOD CITY,18,1925,1,GOV1,3004 -0114_143_1,-74.81235004,39.65828655,10 W STERLING AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_143_2,-74.806955,39.6433125,4 W STERLING AVE,LINWOOD CITY,17,1988,1,GOV1,3004 -0114_143_3,-74.751274,39.6521165,721 SHORE ROAD,LINWOOD CITY,17,1910,1,GOV1,3004 -0114_143_4,-74.531088,39.3802095,718 LINCOLN AVE,LINWOOD CITY,17,1964,1,RES1,3004 -0114_143_5,-74.43436009,39.36794012,717 SHORE ROAD,LINWOOD CITY,16,1925,1,RES1,3001 -0114_143_6,-74.48308868,39.43107507,21 W WILSON AVE,LINWOOD CITY,16,1963,1,GOV1,3004 -0114_143_7,-74.529176,39.399002,15 W WILSON AVE,LINWOOD CITY,17,1952,1,RES1,3001 -0114_143_8,-74.5260845,39.3858535,705 SHORE ROAD,LINWOOD CITY,16,1910,1,RES1,3001 -0114_144_1,-74.49617316,39.43145228,20 W WILSON AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_144_2,-74.5193715,39.413187,4 W WILSON AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_144_4,-74.50436349,39.41471918,615 SHORE ROAD,LINWOOD CITY,16,1957,1,RES1,3001 -0114_144_5,-74.4869725,39.464789,610 LINCOLN AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_144_6,-74.50151158,39.42967432,7 W DAVIS AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_144_7,-74.49916555,39.43187543,5 W DAVIS AVE,LINWOOD CITY,17,2008,1,GOV1,3004 -0114_144_8,-74.488667,39.421517,1 W DAVIS AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_145_1,-74.4594227,39.47398067,10 W DAVIS AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_145_10,-74.5086055,39.4624905,1 W BARR AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_145_2,-74.49090073,39.46751453,8 W DAVIS AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_145_4,-74.5141635,39.438003,4 W DAVIS AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_145_5,-74.4633175,39.464951,2 W DAVIS AVE,LINWOOD CITY,16,1948,1,GOV1,3004 -0114_145_6,-74.511523,39.4420395,605 SHORE ROAD,LINWOOD CITY,16,1948,1,RES1,3001 -0114_145_7,-74.589093,39.3688995,21 W BARR AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_145_8,-74.562161,39.387213,7 W BARR AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_145_9,-74.4459745,39.4861,5 W BARR AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_146_1,-74.49336674,39.49402314,20 W BARR AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_146_2,-74.45354364,39.49801006,16 W BARR AVE,LINWOOD CITY,17,1993,1,RES1,3001 -0114_146_4,-74.47687866,39.48033701,4 W BARR AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_146_5,-74.5985045,39.372964,521 SHORE ROAD,LINWOOD CITY,17,1955,1,RES1,3001 -0114_146_6,-74.5109296,39.53333783,17 W HAINES AVE,LINWOOD CITY,17,1951,1,RES1,3001 -0114_146_7,-74.50163683,39.50125973,15 W HAINES AVE,LINWOOD CITY,17,1928,1,RES1,3001 -0114_146_8,-74.52683215,39.47033951,5 W HAINES AVE,LINWOOD CITY,17,1986,1,GOV1,3004 -0114_146_9,-74.45501746,39.48936967,1 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_147_1,-74.4700073,39.34502553,9 LAKE DR,LINWOOD CITY,16,1960,1,RES1,3001 -0114_147_2,-74.55049264,39.37721007,1 LAKE DRIVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_147_3,-74.48603547,39.34877815,2277 W BURROUGHS AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_147_4,-74.46870584,39.34387499,2275 W BURROUGHS AVE,LINWOOD CITY,16,1960,1,GOV1,3004 -0114_148.01_1,-74.49556617,39.33148496,4 EVERGREEN ROAD,LINWOOD CITY,18,1988,1,RES1,3001 -0114_148.01_2,-74.4979205,39.328961,6 EVERGREEN ROAD,LINWOOD CITY,19,1983,1,RES1,3001 -0114_148.01_3,-74.5055355,39.332147,8 EVERGREEN ROAD,LINWOOD CITY,18,1987,1,RES1,3001 -0114_148.01_4,-74.50065,39.3308785,10 EVERGREEN ROAD,LINWOOD CITY,19,2005,1,RES1,3001 -0114_148.01_6,-74.50025943,39.32859933,3 FISCHER ROAD,LINWOOD CITY,17,1984,1,RES1,3001 -0114_148.01_7,-74.50779506,39.32872467,1 FISCHER ROAD,LINWOOD CITY,17,1985,1,GOV1,3004 -0114_148.02_1,-74.5201248,39.32084584,2 FISCHER ROAD,LINWOOD CITY,16,1987,1,RES1,3001 -0114_148.02_10,-74.4841407,39.34017734,2221 BURROUGHS AVE,LINWOOD CITY,17,1982,1,RES1,3001 -0114_148.02_11,-74.484034,39.341072,2219 BURROUGHS AVE,LINWOOD CITY,17,1982,1,RES1,3001 -0114_148.02_12,-74.4602295,39.345288,2217 BURROUGHS AVE,LINWOOD CITY,17,1981,1,RES1,3001 -0114_148.02_13,-74.45681884,39.34951548,2215 BURROUGHS AVE,LINWOOD CITY,18,1981,1,RES1,3001 -0114_148.02_14,-74.50953095,39.33153345,2213 BURROUGHS AVE,LINWOOD CITY,16,1981,1,RES1,3001 -0114_148.02_15,-74.52204244,39.31935381,2211 BURROUGHS AVE,LINWOOD CITY,18,1981,1,RES1,3001 -0114_148.02_16,-74.517379,39.3187875,2209 BURROUGHS AVE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_148.02_2,-74.51404317,39.320021,4 FISCHER ROAD,LINWOOD CITY,19,1989,1,RES1,3001 -0114_148.02_3,-74.51783293,39.31804612,6 FISCHER ROAD,LINWOOD CITY,19,1989,1,RES1,3001 -0114_148.02_5,-74.51043386,39.33245069,10 FISCHER ROAD,LINWOOD CITY,17,1984,1,RES1,3001 -0114_148.02_6,-74.51206188,39.32824654,12 FISCHER ROAD,LINWOOD CITY,18,1983,1,RES1,3001 -0114_148.02_7,-74.46300085,39.34967469,14 FISCHER ROAD,LINWOOD CITY,16,1987,1,RES1,3001 -0114_148.02_8,-74.47041527,39.34100585,16 FISCHER ROAD,LINWOOD CITY,17,1989,1,RES1,3001 -0114_148.02_9,-74.48364221,39.33724416,2223 BURROUGHS AVE,LINWOOD CITY,18,1988,1,RES1,3001 -0114_148.03_1,-74.44911814,39.35539068,1 WEXFORD LANE,LINWOOD CITY,18,1999,1,RES1,3001 -0114_148.03_2,-74.88483516,39.59589748,13 WEXFORD LANE,LINWOOD CITY,18,1996,1,RES1,3001 -0114_148.03_3,-74.970329,39.511881,11 WEXFORD LANE,LINWOOD CITY,18,2003,1,RES1,3001 -0114_148.03_4,-74.959922,39.519811,9 WEXFORD LANE,LINWOOD CITY,18,2005,1,RES1,3001 -0114_148.03_5,-74.88583834,39.55717645,7 WEXFORD LANE,LINWOOD CITY,18,1999,1,RES1,3001 -0114_148.03_6,-74.78089844,39.64231857,5 WEXFORD LANE,LINWOOD CITY,18,1995,1,RES1,3001 -0114_148.03_7,-74.46396333,39.35236203,3 WEXFORD LANE,LINWOOD CITY,18,1997,1,RES1,3001 -0114_148_10,-74.47986456,39.33995184,15 LAKE DRIVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_148_11,-74.48609483,39.33550101,5 PARK RD,LINWOOD CITY,17,1964,1,RES1,3001 -0114_148_12,-74.4665765,39.3452945,3 PARK ROAD,LINWOOD CITY,17,1965,1,RES1,3001 -0114_148_13,-74.47016067,39.345209,2273 BURROUGHS AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_148_14.01,-74.51344239,39.32231006,2 ASHBRIDGE LANE,LINWOOD CITY,17,1993,1,RES1,3001 -0114_148_14.02,-74.51907177,39.32056469,4 ASHBRIDGE LANE,LINWOOD CITY,18,2000,1,RES1,3001 -0114_148_14.03,-74.5097315,39.324256,6 ASHBRIDGE LANE,LINWOOD CITY,17,1981,1,RES1,3001 -0114_148_14.04,-74.5076155,39.328457,8 ASHBRIDGE LANE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_148_14.05,-74.5028085,39.3292585,10 ASHBRIDGE LANE,LINWOOD CITY,18,1987,1,RES1,3001 -0114_148_14.07,-74.491126,39.3326555,7 ASHBRIDGE LANE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_148_14.08,-74.50835871,39.33255738,5 ASHBRIDGE LANE,LINWOOD CITY,18,1986,1,RES1,3001 -0114_148_14.09,-74.50396133,39.33166854,3 ASHBRIDGE LANE,LINWOOD CITY,18,1986,1,RES1,3001 -0114_148_14.10,-74.50002,39.3318785,1 ASHBRIDGE LANE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_148_14.11,-74.50772241,39.32314096,1 EVERGREEN ROAD,LINWOOD CITY,19,1992,1,RES1,3001 -0114_148_14.13,-74.4838863,39.3342264,5 SPRING LANE,LINWOOD CITY,17,1987,1,RES1,3001 -0114_148_14.14,-74.7973645,39.6525895,1 SPRING LANE,LINWOOD CITY,17,1987,1,RES1,3001 -0114_148_14.15,-74.8170645,39.652651,3 SPRING LANE,LINWOOD CITY,18,1983,1,RES1,3001 -0114_148_14.16,-74.52646653,39.31570984,7 EVERGREEN ROAD,LINWOOD CITY,18,1983,1,GOV1,3004 -0114_148_14.17,-74.49772083,39.33311601,1 MILL LANE,LINWOOD CITY,18,1983,1,RES1,3001 -0114_148_14.18,-74.438212,39.367374,3 MILL LANE,LINWOOD CITY,13,1983,1,GOV1,3004 -0114_148_14.19,-74.442108,39.3587925,5 MILL LANE,LINWOOD CITY,18,1989,1,RES1,3001 -0114_148_14.20,-74.81400516,39.647492,7 MILL LANE,LINWOOD CITY,19,1993,1,RES1,3001 -0114_148_14.21,-74.4879245,39.3373805,9 MILL LANE,LINWOOD CITY,18,1996,1,RES1,3001 -0114_148_14.22,-74.46380782,39.35372002,12 MILL LANE,LINWOOD CITY,20,1983,1,RES1,3001 -0114_148_14.23,-74.49176105,39.33856517,10 MILL LANE,LINWOOD CITY,19,1997,1,RES1,3001 -0114_148_14.24,-74.78573696,39.66091631,8 MILL LANE,LINWOOD CITY,19,1990,1,GOV1,3004 -0114_148_14.25,-74.41436067,39.36623203,6 MILL LANE,LINWOOD CITY,19,1982,1,GOV1,3004 -0114_148_14.26,-74.52369501,39.31648944,4 MILL LANE,LINWOOD CITY,18,1994,1,GOV1,3004 -0114_148_14.27,-74.4916545,39.33200433,2 MILL LANE,LINWOOD CITY,19,1988,1,RES1,3001 -0114_148_14.29,-74.51563815,39.32030303,1 POND LANE,LINWOOD CITY,17,1982,1,RES1,3001 -0114_148_14.30,-74.511628,39.3249135,3 POND LANE,LINWOOD CITY,18,1983,1,GOV1,3002 -0114_148_14.31,-74.50820347,39.32663332,5 POND LANE,LINWOOD CITY,19,1984,1,RES1,3001 -0114_148_14.32,-74.50961088,39.32376434,7 POND LANE,LINWOOD CITY,19,1985,1,RES1,3001 -0114_148_14.34,-74.524601,39.3201935,11 POND LANE,LINWOOD CITY,20,2006,1,RES1,3001 -0114_148_14.35,-74.45613417,39.3499303,13 POND LANE,LINWOOD CITY,19,1983,1,RES1,3001 -0114_148_14.36,-74.48068007,39.34021134,10 POND LANE,LINWOOD CITY,18,1994,1,RES1,3001 -0114_148_14.37,-74.45656165,39.35010567,5 POND LANE,LINWOOD CITY,17,1983,1,GOV1,3004 -0114_148_14.38,-74.52296,39.318206,6 POND LANE,LINWOOD CITY,19,1988,1,RES1,3001 -0114_148_14.39,-74.51816934,39.31929951,4 POND LANE,LINWOOD CITY,18,1985,1,RES1,3001 -0114_148_14.40,-74.5210965,39.321832,9 FISCHER ROAD,LINWOOD CITY,18,1992,1,RES1,3001 -0114_148_14.41,-74.5165573,39.32688349,11 FISCHER ROAD,LINWOOD CITY,18,1984,1,RES1,3001 -0114_148_14.42,-74.475935,39.341512,13 FISCHER ROAD,LINWOOD CITY,17,1994,1,RES1,3001 -0114_148_14.43,-74.48038847,39.33889333,15 FISCHER ROAD,LINWOOD CITY,18,1990,1,GOV1,3004 -0114_148_14.44,-74.48484954,39.33529836,17 FISCHER ROAD,LINWOOD CITY,18,1988,1,RES1,3001 -0114_148_15.02,-74.9046615,39.505483,24 WEXFORD LANE,LINWOOD CITY,18,1999,1,RES1,3001 -0114_148_15.03,-74.89301306,39.51277234,22 WEXFORD LANE,LINWOOD CITY,18,1992,1,RES1,3001 -0114_148_15.04,-74.9099065,39.5152455,20 WEXFORD LANE,LINWOOD CITY,19,2000,1,RES1,3001 -0114_148_15.05,-74.920789,39.5319285,18 WEXFORD LANE,LINWOOD CITY,19,1999,1,RES1,3001 -0114_148_15.06,-74.93895826,39.5163844,16 WEXFORD LANE,LINWOOD CITY,20,1998,1,RES1,3001 -0114_148_15.08,-74.444642,39.3585225,12 WEXFORD LANE,LINWOOD CITY,19,1995,1,RES1,3001 -0114_148_15.09,-74.4670325,39.3562035,10 WEXFORD LANE,LINWOOD CITY,17,1995,1,RES1,3001 -0114_148_15.11,-74.78084102,39.67199871,6 WEXFORD LANE,LINWOOD CITY,18,1997,1,RES1,3001 -0114_148_15.12,-74.8045835,39.64753,4 WEXFORD LANE,LINWOOD CITY,18,2001,1,RES1,3001 -0114_148_15.13,-74.49297207,39.33701373,1 ROSE LANE,LINWOOD CITY,18,1998,1,RES1,3001 -0114_148_15.14,-74.80786719,39.64254739,3 ROSE LANE,LINWOOD CITY,19,2002,1,RES1,3001 -0114_148_15.15,-74.42153468,39.36724999,5 ROSE LANE,LINWOOD CITY,18,2013,1,RES1,3001 -0114_148_15.16,-74.49481183,39.33421,6 ROSE LANE,LINWOOD CITY,17,1997,1,RES1,3001 -0114_148_15.17,-74.5055569,39.32573683,4 ROSE LANE,LINWOOD CITY,19,2002,1,RES1,3001 -0114_148_15.18,-74.52312251,39.31663934,2 ROSE LANE,LINWOOD CITY,19,2000,1,RES1,3001 -0114_148_17,-74.96319143,39.50374276,630 CENTRAL AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_148_18.01,-74.80629468,39.63812538,622 CENTRAL AVE,LINWOOD CITY,17,1880,1,RES1,3001 -0114_148_18.03,-74.81481283,39.6337295,624 CENTRAL AVE,LINWOOD CITY,18,1980,1,RES1,3001 -0114_148_18.04,-74.8824195,39.599966,399 OAK AVE,LINWOOD CITY,17,2003,1,RES1,3001 -0114_148_18.05,-74.79670334,39.6332962,397 OAK AVE,LINWOOD CITY,18,1989,1,GOV1,3004 -0114_148_18.06,-74.84857163,39.62084368,395 OAK AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_148_18.07,-74.890195,39.467394,3 MEETINGHOUSE LANE,LINWOOD CITY,18,1986,1,RES1,3001 -0114_148_18.08,-74.91724988,39.49601898,4 MEETING HOUSE LANE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_148_18.09,-74.89002866,39.49894382,393 OAK AVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_148_2,-74.4800335,39.3468735,2 LAKE DRIVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_148_3,-74.485542,39.3487615,4 LAKE DR,LINWOOD CITY,18,1960,1,RES1,3001 -0114_148_4,-74.4858005,39.350227,6 LAKE DR,LINWOOD CITY,18,1961,1,GOV1,3004 -0114_148_5,-74.47075796,39.34481864,8 LAKE DR,LINWOOD CITY,17,2015,1,RES1,3001 -0114_148_6,-74.48537568,39.33505396,10 LAKE DR,LINWOOD CITY,17,1964,1,GOV1,3004 -0114_148_7,-74.479114,39.3386065,12 LAKE DRIVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_148_8,-74.481335,39.3409235,14 LAKE DRIVE,LINWOOD CITY,18,1990,1,RES1,3001 -0114_148_9,-74.46281016,39.34888201,16 LAKE DRIVE,LINWOOD CITY,18,1975,1,RES1,3001 -0114_149_1,-74.6705937,39.46269604,524 MAPLE AVE,LINWOOD CITY,,1990,1,RES1,3001 -0114_149_2,-74.59991731,39.49945117,536 MAPLE AVE,LINWOOD CITY,16,1932,1,RES1,3001 -0114_149_3,-74.54715238,39.47068422,599 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_149_4.01,-74.7172705,39.586049,563 CENTRAL AVE,LINWOOD CITY,16,1924,2,RES1,3001 -0114_149_4.03,-74.716212,39.410426,401 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_149_4.05,-74.83012961,39.38572368,500 MAPLE AVE,LINWOOD CITY,15,1884,1,RES1,3001 -0114_149_4.06,-74.61791558,39.50846099,400 OAK AVE,LINWOOD CITY,16,1954,1,GOV1,3004 -0114_149_5,-74.66216673,39.57355897,201 NEW ROAD,LINWOOD CITY,,1963,1,COM1,3004 -0114_15_1,-74.5425375,39.38622,2322 SHORE ROAD,LINWOOD CITY,16,1956,1,RES1,3001 -0114_15_2.02,-74.55235191,39.38526519,1 E ROYAL AVE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_15_3,-74.54739321,39.39549107,2300 SHORE ROAD,LINWOOD CITY,16,1955,1,RES1,3001 -0114_15_4,-74.55009254,39.39259635,3 E ROYAL AVE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_15_5,-74.54183382,39.38886147,14 E OCEAN HGTS AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_15_6,-74.536203,39.3920915,16 E OCEAN HEIGHTS AVE,LINWOOD CITY,17,1963,1,RES1,3001 -0114_15_7,-74.539208,39.387444,23 E ROYAL AVE,LINWOOD CITY,17,1960,1,RES1,3001 -0114_15_8,-74.5390983,39.38868576,33 E ROYAL AVE,LINWOOD CITY,19,1994,1,RES1,3001 -0114_150_1.01,-74.87340701,39.5928864,570 CENTRAL AVE,LINWOOD CITY,16,1947,1,RES1,3001 -0114_150_1.02,-74.80381665,39.63441797,140 OAK AVE,LINWOOD CITY,17,2010,1,RES1,3001 -0114_150_13,-74.76721152,39.62575349,432 CENTRAL AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_150_14.01,-74.6234785,39.6239635,199 NEW ROAD,LINWOOD CITY,,0,1,GOV1,3004 -0114_150_14.02,-74.75847663,39.60623956,199 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_150_14.03,-74.88286365,39.48418767,199 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_150_15,-74.8700382,39.59402922,199 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_150_8.01,-74.7289437,39.64439711,627 LEXINGTON CT,LINWOOD CITY,17,1994,1,RES1,3001 -0114_150_8.02,-74.95552,39.537849,625 LEXINGTON CT,LINWOOD CITY,17,1993,1,RES1,3001 -0114_150_8.03,-74.95136348,39.5131029,623 LEXINGTON CT,LINWOOD CITY,17,1993,1,GOV1,3004 -0114_150_8.04,-74.96425771,39.50482944,621 LEXINGTON CT,LINWOOD CITY,17,1996,1,RES1,3001 -0114_150_8.05,-74.931612,39.5152075,619 LEXINGTON CT,LINWOOD CITY,17,1993,1,RES1,3001 -0114_150_8.06,-74.9273735,39.5072155,617 LEXINGTON CT,LINWOOD CITY,17,1989,1,RES1,3001 -0114_150_8.07,-74.94596626,39.51191685,615 LEXINGTON CT,LINWOOD CITY,17,2000,1,RES1,3001 -0114_150_8.08,-74.9616265,39.518884,613 LEXINGTON CT,LINWOOD CITY,17,1993,1,RES1,3001 -0114_150_8.09,-74.95356901,39.51684601,611 BRANDYWINE CT,LINWOOD CITY,17,2000,1,RES1,3001 -0114_150_8.11,-74.9190295,39.506667,607 BRANDYWINE CT,LINWOOD CITY,17,1997,1,GOV1,3004 -0114_150_8.12,-74.9145425,39.508232,605 BRANDYWINE CT,LINWOOD CITY,17,1994,1,RES1,3001 -0114_150_8.13,-74.92548872,39.51127991,603 BRANDYWINE CT,LINWOOD CITY,17,1998,1,RES1,3001 -0114_150_8.14,-74.91607156,39.51814738,601 BRANDYWINE CT,LINWOOD CITY,17,1999,1,RES1,3001 -0114_150_8.15,-74.912077,39.4963715,101 PARKWOOD PLACE,LINWOOD CITY,17,1993,1,RES1,3001 -0114_150_8.16,-74.895679,39.4829875,103 PARKWOOD PLACE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_150_8.17,-74.84473153,39.63391416,105 PARKWOOD PLACE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_150_8.18,-74.8219825,39.638859,107 PARKWOOD PLACE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_150_8.19,-74.81653688,39.63586978,109 PARKWOOD PLACE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_150_8.21,-74.79678234,39.61941504,113 PARKWOOD PLACE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_150_8.22,-74.874655,39.5906895,115 PARKWOOD PLACE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_150_8.23,-74.8831585,39.5014615,100 PARKWOOD PLACE,LINWOOD CITY,17,1992,1,RES1,3001 -0114_150_8.24,-74.88600437,39.48318777,102 PARKWOOD PLACE,LINWOOD CITY,17,1992,1,GOV1,3004 -0114_150_8.25,-74.80965328,39.63238268,104 PARKWOOD PLACE,LINWOOD CITY,17,1992,1,RES1,3001 -0114_150_8.26,-74.80710046,39.63892916,106 PARKWOOD PLACE,LINWOOD CITY,17,1999,1,GOV1,3004 -0114_150_8.27,-74.802075,39.638997,108 PARKWOOD PLACE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_150_8.28,-74.772281,39.6332885,110 PARKWOOD PLACE,LINWOOD CITY,17,1993,1,RES1,3001 -0114_150_8.29,-74.7512395,39.6039455,112 PARKWOOD PLACE,LINWOOD CITY,17,1992,1,RES1,3001 -0114_150_8.31,-74.821936,39.5263195,116 PARKWOOD PLACE,LINWOOD CITY,17,1992,1,RES1,3001 -0114_150_8.32,-74.66273559,39.63900584,118 PARKWOOD PLACE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_151_1,-74.78500934,39.66895951,612 OAKCREST AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_151_10,-74.81601418,39.65344616,608 W REVERE AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_151_11,-74.79861779,39.64174548,606 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_151_12,-74.78530041,39.66481165,604 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_151_13,-74.7884467,39.64149632,602 W REVERE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_151_15,-74.46086554,39.35315472,596 REVERE AVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_151_16,-74.58740081,39.41104498,600 OAKCREST AVE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_151_17,-74.482914,39.346618,602 OAKCREST AVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_151_18,-74.46078488,39.35624974,604 OAKCREST AVE,LINWOOD CITY,17,1987,1,RES1,3001 -0114_151_19,-74.4452695,39.359949,606 OAKCREST AVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_151_2,-74.80955944,39.64222935,614 OAKCREST AVE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_151_20,-74.4896841,39.33765967,608 OAKCREST AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_151_21,-74.488489,39.3361985,610 OAKCREST AVE,LINWOOD CITY,18,1988,1,RES1,3001 -0114_151_3.01,-74.8031965,39.6665925,616 OAKCREST AVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_151_3.03,-74.4418509,39.3579155,34 OAK AVE,LINWOOD CITY,16,1985,1,RES1,3001 -0114_151_4,-74.50648808,39.32344366,620 W REVERE AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_151_5,-74.52276046,39.31615208,618 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3004 -0114_151_6,-74.43558746,39.36412719,616 W REVERE AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_151_7,-74.43020159,39.36340851,614 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_151_8,-74.43731535,39.358072,612 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_151_9,-74.81228863,39.65824402,610 W REVERE AVE,LINWOOD CITY,17,1961,1,RES1,3001 -0114_152_1,-74.5063915,39.33159934,627 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_152_10,-74.43650301,39.35978105,609 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_152_11,-74.8122375,39.651234,607 W REVERE AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_152_12,-74.363383,39.4197485,605 W REVERE AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_152_13,-74.77400903,39.66525317,603 W REVERE AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_152_14,-74.7839159,39.66451308,601 W REVERE AVE,LINWOOD CITY,17,1963,1,RES1,3001 -0114_152_2,-74.49670682,39.33197152,625 W REVERE AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_152_3,-74.4964456,39.33254069,623 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_152_4,-74.4981065,39.333029,621 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_152_5,-74.509272,39.3253745,619 W REVERE AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_152_6,-74.5264245,39.314715,617 W REVERE AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_152_7,-74.53051572,39.30868873,615 W REVERE AVE,LINWOOD CITY,16,1962,1,GOV1,3004 -0114_152_8,-74.42634327,39.36070765,613 W REVERE AVE,LINWOOD CITY,17,1961,1,RES1,3001 -0114_152_9,-74.42143372,39.36822119,611 W REVERE AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_153_1.02,-74.791412,39.6427195,618 W VERNON AVE,LINWOOD CITY,17,1997,1,RES1,3001 -0114_153_1.03,-74.739404,39.6507255,616 W VERNON AVE,LINWOOD CITY,16,2004,1,RES1,3001 -0114_153_10,-74.490856,39.3371365,615 OAKCREST AVE,LINWOOD CITY,18,2002,1,RES1,3001 -0114_153_11,-74.7798025,39.654744,617 OAKCREST AVE,LINWOOD CITY,17,2003,1,RES1,3001 -0114_153_12,-74.48845615,39.33804402,80 OAK AVE,LINWOOD CITY,17,2006,1,RES1,3001 -0114_153_13,-74.44642976,39.35740935,90 OAK AVE,LINWOOD CITY,17,1998,1,RES1,3001 -0114_153_2,-74.8847075,39.560951,614 W VERNON AVE,LINWOOD CITY,15,1917,1,RES1,3001 -0114_153_3,-74.94607817,39.52781498,610 W VERNON AVE,LINWOOD CITY,15,1917,1,RES1,3001 -0114_153_4,-74.9350365,39.523718,606 W VERNON AVE,LINWOOD CITY,15,1917,1,RES1,3001 -0114_153_5,-74.7799175,39.644038,605 OAKCREST AVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_153_6,-74.44438032,39.35874157,607 OAKCREST AVENUE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_153_7,-74.46435222,39.35444257,609 OAKCREST AVE,LINWOOD CITY,18,1991,1,RES1,3001 -0114_153_8,-74.49199967,39.3404515,611 OAKCREST AVE,LINWOOD CITY,16,1987,1,RES1,3001 -0114_153_9,-74.4905915,39.3401125,613 OAKCREST AVE,LINWOOD CITY,17,1991,1,RES1,3001 -0114_155_1,-74.8902275,39.5572605,530 W VERNON AVE,LINWOOD CITY,15,1917,1,RES1,3001 -0114_155_2,-74.92692432,39.50686307,522 W VERNON AVE,LINWOOD CITY,17,2007,1,RES1,3001 -0114_155_3,-74.90715829,39.53652828,514 W VERNON AVE,LINWOOD CITY,14,1927,1,RES1,3001 -0114_155_4,-74.57345882,39.37078516,506 W VERNON AVE,LINWOOD CITY,15,1927,1,RES1,3001 -0114_155_5,-74.57384983,39.36836727,601 OAKCREST AVE,LINWOOD CITY,17,1991,1,RES1,3001 -0114_155_6,-74.95121566,39.52234799,603 OAKCREST AVE,LINWOOD CITY,17,1998,1,RES1,3001 -0114_158_1,-74.94424469,39.49747875,426 W VERNON AVE,LINWOOD CITY,16,1927,1,RES1,3001 -0114_158_2,-74.93221927,39.49687937,422 W VERNON AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_158_3,-74.920519,39.489027,412 W VERNON AVE,LINWOOD CITY,15,1948,1,RES1,3001 -0114_158_4.01,-74.9258525,39.4836255,410 W VERNON AVE,LINWOOD CITY,16,2010,1,RES1,3001 -0114_158_4.03,-74.88600725,39.48331923,402 W VERNON AVE,LINWOOD CITY,16,1959,2,RES1,3001 -0114_158_5,-74.88962355,39.47565978,11 NEW ROAD,LINWOOD CITY,16,1922,1,RES1,3001 -0114_159_1,-74.63219305,39.43024003,490 NEW ROAD,LINWOOD CITY,,1955,1,RES1,3001 -0114_159_10.01,-74.7318265,39.4401815,212 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_159_10.02,-74.838352,39.3749885,214 NEW ROAD,LINWOOD CITY,,1976,1,RES1,3001 -0114_159_10.03,-74.61988265,39.43897418,297 GRAMMERCY AVE,LINWOOD CITY,16,1930,2,RES1,3001 -0114_159_10.04,-74.77820435,39.37855845,222 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_159_10.05,-74.67330147,39.46232142,295 GRAMMERCY AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_159_11,-74.754276,39.4321875,216 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_159_12,-74.83390897,39.39756129,327 CENTRAL AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_159_2,-74.6342718,39.43267287,314 W HAINES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_159_3,-74.62117817,39.43310105,312 W HAINES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_159_4,-74.66099106,39.40374777,310 W HAINES AVE,LINWOOD CITY,15,2001,1,RES1,3001 -0114_159_5,-74.63276703,39.41853831,308 W HAINES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_159_6,-74.70176893,39.37064538,306 W HAINES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_159_7,-74.6449105,39.3708165,304 W HAINES AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_159_8,-74.58917376,39.4282951,302 W HAINES AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_159_9,-74.57533132,39.42287469,300 W HAINES AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_16.01_1.06,-74.550917,39.3701805,12 SEAGARDEN DR,LINWOOD CITY,17,1985,1,GOV1,3004 -0114_16.01_1.07,-74.611727,39.3892725,14 SEAGARDEN DR,LINWOOD CITY,18,1986,1,RES1,3001 -0114_16.01_1.08,-74.59131097,39.37729915,17 SEAGARDEN DRIVE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_16.01_1.09,-74.5978835,39.3703045,15 SEAGARDEN DRIVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_16.01_1.10,-74.596158,39.3792955,13 SEAGARDEN DR,LINWOOD CITY,17,1984,1,RES1,3001 -0114_16.01_1.11,-74.60492124,39.37587747,11 SEAGARDEN DR,LINWOOD CITY,17,1987,1,RES1,3001 -0114_16.01_1.12,-74.6088645,39.3758145,9 SEAGARDEN DR,LINWOOD CITY,17,1985,1,RES1,3001 -0114_16.01_1.13,-74.60095908,39.38003019,7 SEAGARDEN DR,LINWOOD CITY,18,1987,1,RES1,3001 -0114_16.01_1.14,-74.60534576,39.39226532,5 SEAGARDEN DR,LINWOOD CITY,17,1985,1,RES1,3001 -0114_16.01_1.15,-74.61896949,39.3769145,3 SEAGARDEN DRIVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_16.01_1.16,-74.53702147,39.41271534,1 SEAGARDEN DR,LINWOOD CITY,17,1987,1,RES1,3001 -0114_16.01_1.17,-74.6133535,39.3742325,2252 SHORE ROAD,LINWOOD CITY,18,1986,1,RES1,3001 -0114_16.01_1.18,-74.596318,39.374388,4 E ROYAL AVE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_16.01_1.19,-74.5751765,39.390468,6 E ROYAL AVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_16.01_1.20,-74.56173768,39.38979177,8 E ROYAL AVE,LINWOOD CITY,18,1985,1,RES1,3001 -0114_16.01_1.21,-74.53199751,39.39891184,10 E ROYAL AVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_16.01_1.22,-74.5429685,39.388797,12 E ROYAL AVE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_16.01_10,-74.56450727,39.38840288,2262 SHORE ROAD,LINWOOD CITY,16,1900,3,RES1,3001 -0114_16.01_23,-74.58258317,39.42311252,2 E BERKLEY STREET,LINWOOD CITY,17,1976,1,RES1,3001 -0114_16.01_24,-74.57047863,39.40581975,1 HIGHLAND CT,LINWOOD CITY,17,1963,1,RES1,3001 -0114_16.01_25,-74.538416,39.3756225,10 E BERKLEY STREET,LINWOOD CITY,17,1961,1,RES1,3001 -0114_16.01_26,-74.6187725,39.384531,3 HIGHLAND CT,LINWOOD CITY,17,1959,1,RES1,3001 -0114_16.01_27,-74.6047305,39.40854,18 E BERKLEY ST,LINWOOD CITY,17,1945,1,RES1,3001 -0114_16.01_28,-74.54516242,39.3719566,5 HIGHLAND CT,LINWOOD CITY,17,1960,1,RES1,3001 -0114_16.01_29,-74.56900167,39.41381617,20 E BERKLEY ST,LINWOOD CITY,17,1960,1,GOV1,3004 -0114_16.01_30,-74.541297,39.376119,7 HIGHLAND COURT,LINWOOD CITY,17,1960,1,RES1,3001 -0114_16.01_31.01,-74.57636826,39.40882263,5 CANDLEWOOD DRIVE,LINWOOD CITY,18,1952,1,RES1,3001 -0114_16.01_31.02,-74.68533709,39.3608165,8 CANDLEWOOD DRIVE,LINWOOD CITY,18,1999,1,RES1,3001 -0114_16.01_31.03,-74.53820416,39.38440702,4 CANDLEWOOD DRIVE,LINWOOD CITY,18,1989,1,RES1,3001 -0114_16.01_31.05,-74.53203157,39.38051584,2 CANDLEWOOD DRIVE,LINWOOD CITY,18,1987,1,RES1,3001 -0114_16.01_31.06,-74.6013385,39.415675,3 CANDLEWOOD DRIVE,LINWOOD CITY,18,1990,1,RES1,3001 -0114_16.01_32,-74.60168502,39.38906588,6 HIGHLAND CT,LINWOOD CITY,17,1960,1,GOV1,3004 -0114_16.01_33,-74.56250432,39.41166211,4 HIGHLAND CT,LINWOOD CITY,17,1961,1,RES1,3001 -0114_16.01_34,-74.59045434,39.40462801,2 HIGHLAND CT,LINWOOD CITY,17,1973,1,RES1,3001 -0114_16.01_35,-74.588208,39.4289915,2124 SHORE ROAD,LINWOOD CITY,16,1930,1,RES1,3001 -0114_16.01_36,-74.701929,39.3704845,2120 SHORE ROAD,LINWOOD CITY,16,1910,2,RES1,3001 -0114_16.01_37,-74.63059071,39.42025037,2114 SHORE ROAD,LINWOOD CITY,17,1880,1,RES1,3001 -0114_16.01_38.01,-74.5973605,39.4359115,101 ARBOR COURT WEST,LINWOOD CITY,18,1979,1,IND2,3002 -0114_16.01_38.02,-74.59634327,39.41082294,103 ARBOR CT W,LINWOOD CITY,18,1980,1,RES1,3001 -0114_16.01_38.03,-74.5734187,39.42659412,105 ARBOR COURT WEST,LINWOOD CITY,17,1998,1,RES1,3001 -0114_16.01_38.04,-74.531476,39.4065865,107 ARBOR CT W,LINWOOD CITY,17,1977,1,RES1,3001 -0114_16.01_38.05,-74.6009575,39.3833697,201 ARBOR CT E,LINWOOD CITY,18,1978,1,RES1,3001 -0114_16.01_38.06,-74.597398,39.4175145,203 ARBOR CT EAST,LINWOOD CITY,18,1978,1,RES1,3001 -0114_16.01_38.07,-74.5853705,39.407877,205 ARBOR COURT EAST,LINWOOD CITY,19,2007,1,RES1,3001 -0114_16.01_38.08,-74.55139251,39.37279089,204 ARBOR COURT EAST,LINWOOD CITY,19,1981,1,RES1,3001 -0114_16.01_38.09,-74.62550069,39.41376658,102 ARBOR COURT WEST,LINWOOD CITY,18,1995,1,RES1,3001 -0114_16.01_38.11,-74.617363,39.4294145,108 ARBOR COURT,LINWOOD CITY,17,1985,1,RES1,3001 -0114_16.01_38.12,-74.63334018,39.43014647,9 SUNSET AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_16.01_38.13,-74.655183,39.405286,11 SUNSET AVE,LINWOOD CITY,18,1978,1,RES1,3001 -0114_16.01_38.14,-74.68312907,39.39028518,15 SUNSET AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_16.01_39.01,-74.53740164,39.4621613,2056 SHORE ROAD,LINWOOD CITY,17,1950,1,RES1,3001 -0114_16.01_39.02,-74.534663,39.4701035,7 SUNSET AVE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_16.01_40,-74.74284794,39.63408914,2052 SHORE ROAD,LINWOOD CITY,16,1927,1,RES1,3001 -0114_16.01_41.01,-74.6035348,39.40712797,200 ARBOR COURT EAST,LINWOOD CITY,17,1987,1,GOV1,3004 -0114_16.01_41.02,-74.63200726,39.39192511,1 HOLLYCROFT LANE,LINWOOD CITY,18,1984,1,RES1,3001 -0114_16.01_41.03,-74.56324377,39.41512704,202 ARBOR COURT EAST,LINWOOD CITY,18,1985,1,RES1,3001 -0114_16.01_41.04,-74.623047,39.3809075,3 HOLLYCROFT LANE,LINWOOD CITY,18,1995,1,RES1,3001 -0114_16.01_41.05,-74.537232,39.4564875,2051 ARBOR DRIVE,LINWOOD CITY,18,1987,1,RES3A,3001 -0114_16.01_41.06,-74.63431523,39.42937433,8 HOLLYCROFT LANE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_16.01_41.07,-74.64637406,39.40562649,2 HOLLYCROFT LANE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_16.01_41.08,-74.64304339,39.39815176,4 HOLLYCROFT LANE,LINWOOD CITY,18,1988,1,RES1,3001 -0114_16.01_41.09,-74.56754923,39.42388516,6 HOLLYCROFT LANE,LINWOOD CITY,18,2000,1,RES1,3001 -0114_16.01_60,-74.92785197,39.50693981,200 E IONA AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_16.01_61,-74.55240628,39.47557092,2000 FRANKLIN BLVD,LINWOOD CITY,16,1955,1,COM4,3004 -0114_16.01_62,-74.60921827,39.49273617,1998 FRANKLIN BLVD,LINWOOD CITY,17,1980,1,RES1,3001 -0114_16.01_63.01,-74.71302317,39.41973597,1990 FRANKLIN BLVD,LINWOOD CITY,16,1982,1,RES1,3001 -0114_16.01_63.02,-74.8303765,39.6114325,1900 FRANKLIN BLVD,LINWOOD CITY,17,1989,1,IND1,3002 -0114_16.01_64.01,-74.7540595,39.4309945,211 E SEAVIEW AVE,LINWOOD CITY,17,1927,1,RES1,3001 -0114_16.01_64.02,-74.7937265,39.422589,209 E SEAVIEW AVE,LINWOOD CITY,17,1994,1,COM1,3004 -0114_16.01_65,-74.698763,39.488712,213 E SEAVIEW AVE,LINWOOD CITY,17,1970,1,RES1,3001 -0114_16.01_9,-74.559294,39.395766,2254 SHORE ROAD,LINWOOD CITY,16,1917,2,RES1,3001 -0114_16.02_38.15,-74.68557,39.412789,2052 ARBOR DR,LINWOOD CITY,17,1978,1,RES1,3001 -0114_16.02_38.16,-74.71384488,39.63853724,2050 ARBOR DRIVE,LINWOOD CITY,18,1989,1,RES1,3001 -0114_16.02_42,-74.5507995,39.469056,10 SUNSET AVE,LINWOOD CITY,17,1961,1,RES1,3001 -0114_16.02_43,-74.71831116,39.57765653,8 SUNSET AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_16.02_44,-74.77441158,39.6271847,6 SUNSET AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_16.02_45,-74.9218535,39.4722825,4 SUNSET AVE,LINWOOD CITY,17,1965,1,GOV1,3004 -0114_16.02_46,-74.9480705,39.516544,2046 SHORE ROAD,LINWOOD CITY,16,1890,1,RES1,3001 -0114_16.02_47,-74.8846055,39.599568,2040 SHORE ROAD,LINWOOD CITY,16,1864,1,RES1,3001 -0114_16.02_48,-74.78701089,39.66088007,2036 SHORE ROAD,LINWOOD CITY,16,1910,1,RES1,3001 -0114_16.02_49,-74.95184445,39.53104072,95 E MYRTLE AVE,LINWOOD CITY,17,1961,1,RES1,3001 -0114_16.02_50,-74.955397,39.498017,97 E MYRTLE AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_16.02_51,-74.87202979,39.59317707,99 E MYRTLE AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_16.02_52,-74.7565315,39.6343115,101 E MYRTLE AVE,LINWOOD CITY,17,1956,1,RES1,3001 -0114_160_1,-74.8554953,39.45215251,318 CENTRAL AVE,LINWOOD CITY,,2011,1,RES1,3001 -0114_160_12,-74.82980425,39.52812572,208 NEW ROAD,LINWOOD CITY,,1920,1,RES1,3001 -0114_160_13,-74.58891491,39.50444736,109 WARREN AVE,LINWOOD CITY,15,1958,1,RES1,3001 -0114_160_15,-74.7551475,39.599694,200 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_160_16,-74.71016053,39.58020968,329 W MARVIN AVE,LINWOOD CITY,17,1925,1,RES1,3001 -0114_160_17,-74.85434313,39.53545876,311 W MARVIN AVE,LINWOOD CITY,16,1979,1,RES1,3001 -0114_160_19,-74.62336673,39.60692215,307 W MARVIN AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_160_20,-74.6299845,39.612137,303 W MARVIN AVE,LINWOOD CITY,16,1926,1,RES1,3001 -0114_160_4,-74.7533455,39.4535635,312 CENTRAL AVE,LINWOOD CITY,16,1953,1,RES1,3004 -0114_160_5,-74.7528585,39.4527275,310 CENTRAL AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_160_6,-74.730202,39.4549955,308 CENTRAL AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_160_7,-74.730278,39.456517,306 CENTRAL AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_160_8,-74.72836237,39.45954397,304 CENTRAL AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_160_9,-74.7263775,39.4597795,302 CENTRAL AVE,LINWOOD CITY,16,1953,1,GOV1,3004 -0114_161_1,-74.795718,39.6385115,100 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_161_11,-74.87092877,39.59203669,315 W VERNON AVE,LINWOOD CITY,16,1980,1,RES1,3001 -0114_161_13,-74.781299,39.62678573,305 W VERNON AVE,LINWOOD CITY,16,2004,1,RES1,3001 -0114_161_14,-74.762608,39.639144,303 W VERNON AVE,LINWOOD CITY,16,1924,1,RES1,3001 -0114_161_2,-74.84664281,39.6053289,330 W MARVIN AVE,LINWOOD CITY,15,1981,1,GOV1,3004 -0114_161_3,-74.76185712,39.63555875,318 W MARVIN AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_161_4,-74.779209,39.60795983,314 W MARVIN AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_161_5,-74.7775515,39.594111,310 W MARVIN AVE,LINWOOD CITY,16,1971,1,RES1,3001 -0114_161_6,-74.73229999,39.5900092,111 WARREN AVE,LINWOOD CITY,15,1975,1,RES1,3001 -0114_161_7,-74.7969156,39.6251955,329 W VERNON AVE,LINWOOD CITY,14,1927,1,RES1,3001 -0114_161_8,-74.86102273,39.597804,323 W VERNON AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_162_2,-74.82118444,39.63661341,330 W VERNON AVE,LINWOOD CITY,15,1924,1,RES1,3001 -0114_162_3,-74.8154621,39.63348612,322 W VERNON AVE,LINWOOD CITY,15,1962,1,RES1,3001 -0114_162_4,-74.8130665,39.636363,320 W VERNON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_162_6,-74.79930935,39.63416555,314 W VERNON AVE,LINWOOD CITY,16,1974,1,RES1,3001 -0114_162_7,-74.80449468,39.62364021,308 W VERNON AVE,LINWOOD CITY,16,1912,1,RES1,3001 -0114_162_8,-74.79528632,39.62948764,300 W VERNON AVE,LINWOOD CITY,16,1985,1,RES1,3002 -0114_163.01_1,-74.692322,39.449138,19 CRESTWOOD AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163.01_10,-74.662362,39.4012375,1 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.01_11,-74.66185089,39.40402101,3 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.01_12,-74.63501579,39.43293372,1 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.01_2,-74.634917,39.46877,17 CRESTWOOD AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163.01_3,-74.56612294,39.47957582,15 CRESTWOOD AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163.01_4,-74.54343324,39.45738759,13 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.01_5,-74.67163509,39.41480667,11 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.01_6,-74.62945,39.4328905,9 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,GOV1,3004 -0114_163.01_7,-74.63059889,39.41771642,7 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.01_8,-74.6516045,39.370669,5 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.01_9,-74.60490304,39.4245793,3 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,COM1,3004 -0114_163.02_1,-74.624152,39.4175085,2 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.02_10,-74.8125105,39.378924,19 CROSSING DRIVE,LINWOOD CITY,17,2000,1,GOV1,3004 -0114_163.02_11,-74.74556008,39.41915689,17 CROSSING DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163.02_12,-74.81237608,39.37218132,15 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.02_2,-74.627174,39.42062083,4 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.02_3,-74.642755,39.4353985,6 CRESTWOOD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163.02_4,-74.53346267,39.45373321,8 CRESTWOOD AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163.02_5,-74.56120477,39.47933647,10 CRESTWOOD AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163.02_6,-74.62776251,39.43856458,12 CRESTWOOD AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163.02_7,-74.62988122,39.47211278,14 CRESTWOOD AVENUE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_163.02_8,-74.6853465,39.4879635,16 CRESTWOOD AVENUE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_163.02_9,-74.81201837,39.38453644,21 CROSSING DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_163_1,-74.5738985,39.4289725,212 W HAINES AVE,LINWOOD CITY,15,1954,1,RES1,3001 -0114_163_10,-74.571448,39.4133815,311 WABASH AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_11,-74.59302881,39.41906683,309 WABASH AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_12,-74.6269675,39.3799305,307 WABASH AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_13,-74.62636347,39.40740568,305 WABASH AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_14,-74.63924906,39.42710321,303 WABASH AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_15,-74.682941,39.4169325,301 WABASH AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_16,-74.5316915,39.4694245,211 WABASH AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_17,-74.59214745,39.47868535,209 WABASH AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_18,-74.65167141,39.45331351,207 WABASH AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_19,-74.6487375,39.485319,205 WABASH AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_2,-74.609183,39.3931245,210 W HAINES AVE,LINWOOD CITY,15,1954,1,RES1,3001 -0114_163_20,-74.76635648,39.38571359,203 WABASH AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_21,-74.7111765,39.429779,201 WABASH AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_22,-74.75809129,39.43138148,2 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_23,-74.78297997,39.38271125,4 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_24,-74.65121926,39.47188397,6 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_25,-74.6307375,39.445517,8 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_26,-74.5659571,39.47811521,10 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_27,-74.53314255,39.45439641,12 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_28,-74.6332505,39.4307605,14 CROSSING DRIVE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_163_29,-74.64508665,39.4085688,16 CROSSING DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_3,-74.798333,39.367873,208 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_163_30,-74.642811,39.401842,18 CROSSING DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_31,-74.586673,39.4288475,20 CROSSING DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_32,-74.5908135,39.4034495,22 CROSSING DRIVE,LINWOOD CITY,17,2000,1,GOV1,3004 -0114_163_33,-74.55471557,39.42523883,24 CROSSING DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_34,-74.61203711,39.39015578,26 CROSSING DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_35,-74.56756514,39.41173381,28 CROSSING DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_36,-74.57590004,39.40958181,30 CROSSING DRIVE,LINWOOD CITY,17,2001,1,RES1,3004 -0114_163_37,-74.58872924,39.41602954,32 CROSSING DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_163_38,-74.59365615,39.42545935,34 CROSSING DRIVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_163_4,-74.70368428,39.35319151,206 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_163_5,-74.630205,39.3605515,204 W HAINES AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_163_6,-74.63334026,39.34727236,202 W HAINES AVE,LINWOOD CITY,16,2004,1,RES1,3001 -0114_163_8,-74.58389969,39.36024952,315 WABASH AVE,LINWOOD CITY,16,1954,1,GOV1,3004 -0114_163_9,-74.78441008,39.31373368,313 WABASH AVENUE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_164_1,-74.7353755,39.4400595,216 CENTRAL AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_164_10,-74.8372705,39.488,215 W MARVIN AVE,LINWOOD CITY,15,1940,1,RES3A,3001 -0114_164_11,-74.855323,39.4409995,201 W MARVIN AVE,LINWOOD CITY,17,1981,1,RES1,3001 -0114_164_2,-74.7170945,39.4513385,214 CENTRAL AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_164_3,-74.8325505,39.407092,212 CENTRAL AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_164_4,-74.75056357,39.4694906,210 CENTRAL AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_164_5,-74.74864382,39.45272648,208 CENTRAL AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_164_6.01,-74.8249848,39.41248559,111 WABASH AVE,LINWOOD CITY,16,1950,1,RES3A,3001 -0114_164_6.02,-74.72979517,39.45329631,109 WABASH AVE,LINWOOD CITY,16,1980,1,RES1,3001 -0114_164_7.01,-74.8549365,39.43992567,108 WARREN AVE,LINWOOD CITY,16,1974,1,RES1,3001 -0114_164_7.02,-74.6754635,39.508576,106 WARREN AVE,LINWOOD CITY,16,1974,1,RES1,3001 -0114_164_8,-74.7013185,39.566752,235 MARVIN AVE,LINWOOD CITY,14,1940,1,RES1,3001 -0114_164_9,-74.650436,39.538415,221 MARVIN AVE,LINWOOD CITY,15,1977,1,RES1,3001 -0114_165_1,-74.84077103,39.52836619,110 WARREN AVE,LINWOOD CITY,15,1980,1,RES1,3001 -0114_165_10,-74.8456055,39.538248,223 W VERNON AVE,LINWOOD CITY,14,1926,1,RES1,3001 -0114_165_11,-74.70191706,39.63722545,211 W VERNON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_165_2,-74.702265,39.633933,222 W MARVIN AVE,LINWOOD CITY,16,1937,1,RES1,3001 -0114_165_3,-74.6460696,39.62326061,218 W MARVIN AVE,LINWOOD CITY,16,1993,1,RES1,3001 -0114_165_4,-74.68943534,39.57358749,210 W MARVIN AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_165_5,-74.69372034,39.50596198,200 W MARVIN AVE,LINWOOD CITY,16,1978,1,COM1,3004 -0114_165_6,-74.65337865,39.5502134,19 WABASH AVE,LINWOOD CITY,15,1998,1,RES1,3001 -0114_165_7,-74.756772,39.6111165,233 W VERNON AVE,LINWOOD CITY,15,1963,1,RES1,3001 -0114_165_8,-74.71707472,39.58126581,231 W VERNON AVE,LINWOOD CITY,16,1922,1,RES1,3001 -0114_165_9,-74.8593955,39.5557445,227 W VERNON AVE,LINWOOD CITY,14,1922,1,RES1,3001 -0114_166_1,-74.87295659,39.58883208,230 W VERNON AVE,LINWOOD CITY,15,1973,1,RES1,3001 -0114_166_2,-74.78479265,39.6315842,228 W VERNON AVE,LINWOOD CITY,17,1922,1,RES1,3001 -0114_166_3,-74.7732255,39.6337085,222 W VERNON AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_166_4,-74.76676804,39.61191216,212 W VERNON AVE,LINWOOD CITY,16,1922,1,RES1,3001 -0114_166_5.01,-74.7451165,39.5924855,210 W VERNON AVE,LINWOOD CITY,16,1940,1,RES1,3001 -0114_166_5.02,-74.86303549,39.56487839,208 W VERNON AVE,LINWOOD CITY,16,1985,1,RES1,3004 -0114_167_1,-74.568777,39.35337,120 W HAINES AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_167_2,-74.574503,39.348847,110 W HAINES AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_167_3,-74.59893884,39.32861401,100 W HAINES AVE,LINWOOD CITY,15,1960,2,RES1,3001 -0114_167_4,-74.63632042,39.34278902,105 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3004 -0114_167_5,-74.6056625,39.3443585,103 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_167_6,-74.58158517,39.34237675,101 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_168_1,-74.6024875,39.322998,14 W HAINES AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_168_10,-74.55413764,39.35753933,303 SHORE ROAD,LINWOOD CITY,16,1951,1,RES1,3001 -0114_168_11,-74.5958765,39.345567,302 SHORE ROAD,LINWOOD CITY,19,1953,1,RES1,3001 -0114_168_12,-74.64119617,39.34104647,301 SHORE ROAD,LINWOOD CITY,15,1955,1,RES1,3001 -0114_168_13,-74.68902986,39.35896748,300 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_168_14,-74.61086539,39.36708727,302 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_168_15,-74.60793946,39.34185285,304 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_168_16,-74.5537135,39.3565435,306 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_168_17,-74.5733794,39.34137273,308 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_168_18,-74.60167031,39.32939221,310 STEVEN DRIVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_168_19,-74.60352409,39.33077184,312 STEVEN DR,LINWOOD CITY,16,1955,1,COM1,3004 -0114_168_20,-74.55010085,39.36316655,314 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_168_3,-74.587862,39.320521,12 W HAINES AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_168_4,-74.590844,39.3227945,10 W HAINES AVE,LINWOOD CITY,17,1927,1,GOV1,3004 -0114_168_5,-74.50019705,39.4997933,315 SHORE ROAD,LINWOOD CITY,15,1956,1,RES1,3001 -0114_168_6,-74.608168,39.3171065,313 SHORE ROAD,LINWOOD CITY,15,1957,1,RES1,3001 -0114_168_7,-74.58990092,39.32274119,311 SHORE ROAD,LINWOOD CITY,15,1956,1,RES1,3001 -0114_168_8,-74.60276547,39.3242282,307 SHORE ROAD,LINWOOD CITY,16,1950,1,RES1,3001 -0114_168_9,-74.60293809,39.33133533,305 SHORE ROAD,LINWOOD CITY,16,1952,1,RES1,3001 -0114_169_1,-74.60621831,39.39756409,104 STEVEN DR,LINWOOD CITY,15,1955,1,RES1,3001 -0114_169_2,-74.77753725,39.30421935,102 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_169_3,-74.6276135,39.360239,100 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_169_4,-74.58393869,39.41718052,105 W STATE ST,LINWOOD CITY,16,1955,1,RES1,3001 -0114_169_5,-74.574464,39.4221335,103 W STATE ST,LINWOOD CITY,17,1955,1,RES1,3001 -0114_169_6,-74.539909,39.3720535,101 W STATE ST,LINWOOD CITY,16,1955,1,RES1,3001 -0114_17_2,-74.67885095,39.44699686,2024 SHORE ROAD,LINWOOD CITY,17,1914,1,GOV1,3004 -0114_17_3,-74.67004775,39.49344684,2020 SHORE ROAD,LINWOOD CITY,17,1917,1,RES1,3001 -0114_17_4,-74.55741762,39.47102625,96 E MYRTLE AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_17_5,-74.6199425,39.437835,11 E IONA AVE,LINWOOD CITY,16,1917,1,GOV1,3004 -0114_17_6,-74.55473665,39.46632731,2023 WOODE-LYNNE BLVD,LINWOOD CITY,16,1957,1,RES1,3001 -0114_17_7,-74.60174983,39.4755315,2021 WOODE-LYNNE BLVD,LINWOOD CITY,16,1955,1,RES1,3001 -0114_170_1,-74.58868544,39.35468628,309 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_170_2,-74.6061918,39.34469534,307 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_170_3,-74.61443264,39.35186974,305 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_170_4,-74.6655228,39.36386681,303 STEVEN DRIVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_170_5,-74.56291849,39.41515989,301 STEVEN DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_170_6,-74.64270387,39.35819766,304 LINCOLN AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_170_7,-74.598928,39.380392,302 LINCOLN AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_170_8,-74.5789255,39.4073355,7 W DEE DR,LINWOOD CITY,15,1955,1,RES1,3001 -0114_171_1,-74.6305185,39.392941,104 W STATE ST,LINWOOD CITY,17,1955,1,RES1,3001 -0114_171_2,-74.618417,39.432452,102 W STATE ST,LINWOOD CITY,16,1955,1,RES1,3001 -0114_171_3,-74.6054685,39.4071175,100 W STATE ST,LINWOOD CITY,16,1955,1,RES1,3001 -0114_171_4,-74.65588637,39.40277958,105 W DEE DR,LINWOOD CITY,17,1967,1,RES1,3001 -0114_171_5,-74.63630458,39.41041092,103 W DEE DR,LINWOOD CITY,15,1955,1,RES1,3001 -0114_171_6,-74.64332794,39.36949651,303 LINCOLN AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_172_1,-74.5420412,39.45925869,104 W DEE DR,LINWOOD CITY,18,2005,1,RES1,3001 -0114_172_2,-74.6614475,39.419438,102 W DEE DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_172_3,-74.619262,39.432131,100 W DEE DR,LINWOOD CITY,16,1955,1,GOV1,3004 -0114_172_4,-74.55602884,39.47225818,105 W WOOD ST,LINWOOD CITY,17,1978,1,GOV1,3004 -0114_172_5,-74.55058546,39.46393942,103 W WOOD ST,LINWOOD CITY,16,1970,1,RES1,3001 -0114_172_6,-74.70127,39.4203275,101 W WOOD ST,LINWOOD CITY,17,2008,1,RES1,3001 -0114_173_1,-74.688108,39.4429845,102 W WOOD ST,LINWOOD CITY,17,1965,1,GOV1,3004 -0114_173_2,-74.6240575,39.439415,100 W WOOD ST,LINWOOD CITY,16,1955,1,RES1,3001 -0114_173_3,-74.63382,39.4931435,103 CENTRAL AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_173_4,-74.628083,39.4863525,101 CENTRAL AVE,LINWOOD CITY,15,1955,1,RES1,3001 -0114_174_1,-74.6364335,39.3848425,8 W DEE DR,LINWOOD CITY,16,1962,1,RES1,3001 -0114_174_10,-74.63593814,39.43485884,207 STEVEN DR,LINWOOD CITY,16,1964,1,RES1,3001 -0114_174_11,-74.53875522,39.46106706,205 STEVEN DR,LINWOOD CITY,17,1970,1,RES1,3004 -0114_174_12,-74.55608438,39.47390672,203 STEVEN DR,LINWOOD CITY,16,1962,1,RES1,3001 -0114_174_13,-74.62457405,39.46295859,201 STEVEN DR,LINWOOD CITY,16,1958,1,RES1,3001 -0114_174_2,-74.62050402,39.40425008,288 LINCOLN AVE,LINWOOD CITY,15,1985,1,RES1,3001 -0114_174_3,-74.6273035,39.421562,286 LINCOLN AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_174_4,-74.6476926,39.43319181,208 LINCOLN AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_174_5,-74.53999843,39.46904972,204 LINCOLN AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_174_6,-74.581734,39.501796,202 LINCOLN AVE,LINWOOD CITY,15,1961,1,RES1,3001 -0114_174_7,-74.68323331,39.44365048,100 LINCOLN AVE,LINWOOD CITY,16,1952,1,GOV1,3004 -0114_174_8,-74.62105948,39.38279061,215 STEVEN DR,LINWOOD CITY,16,1958,1,GOV1,3004 -0114_174_9,-74.628507,39.414515,209 STEVEN DR,LINWOOD CITY,16,1966,1,RES1,3001 -0114_175_1,-74.572199,39.428205,2 W DEE DR,LINWOOD CITY,16,1958,1,RES1,3001 -0114_175_2,-74.614834,39.4302735,208 STEVEN DRIVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_175_3,-74.660262,39.4038395,204 STEVEN DR,LINWOOD CITY,17,1967,1,RES1,3001 -0114_175_4,-74.60150737,39.37831571,289 SHORE ROAD,LINWOOD CITY,16,1954,1,RES1,3001 -0114_175_5.01,-74.59655065,39.41092258,213 SHORE RD,LINWOOD CITY,16,1968,1,RES1,3001 -0114_175_5.02,-74.62986918,39.40706051,203 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_175_6,-74.60831955,39.48704277,201 SHORE ROAD,LINWOOD CITY,,1961,1,RES1,3001 -0114_176_1,-74.79882825,39.36935166,124 WABASH AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_176_2,-74.83841984,39.39439149,106 WABASH AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_176_3,-74.73819277,39.45193687,19 MARVIN AVE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_176_4,-74.7556255,39.430445,20 CENTRAL AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_176_5,-74.82610861,39.38763732,16 CENTRAL AVE,LINWOOD CITY,16,1946,1,RES1,3001 -0114_176_8,-74.8124075,39.4074535,CENTRAL & SHORE,LINWOOD CITY,17,1968,1,GOV1,3004 -0114_177_1,-74.86275301,39.43961169,20 W MARVIN AVE,LINWOOD CITY,15,1951,1,RES1,3001 -0114_177_10,-74.63192915,39.54694405,SHORE ROAD (REAR),LINWOOD CITY,,0,1,RES1,3001 -0114_177_2,-74.60382751,39.59406422,8 WABASH AVE,LINWOOD CITY,15,1952,1,RES1,3001 -0114_177_3,-74.853563,39.4405975,18 W MARVIN AVE,LINWOOD CITY,16,1947,1,RES1,3001 -0114_177_4,-74.78884522,39.44257395,16 W MARVIN AVE,LINWOOD CITY,16,1949,1,RES1,3001 -0114_177_5,-74.72207441,39.45788868,14 W MARVIN AVE,LINWOOD CITY,17,1947,1,RES1,3001 -0114_177_6,-74.72631031,39.45022796,12 W MARVIN AVE,LINWOOD CITY,15,1947,1,RES1,3001 -0114_177_8.02,-74.82446407,39.4692593,15 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_177_9.01,-74.7827605,39.4575115,3 SHORE ROAD,LINWOOD CITY,17,1927,1,RES1,3001 -0114_177_9.02,-74.853698,39.4910785,16 W OAKCREST AVE,LINWOOD CITY,14,1954,1,RES1,3001 -0114_178_1,-74.72535244,39.59014616,1704 FRANKLIN BLVD,LINWOOD CITY,17,1964,1,RES1,3001 -0114_178_2,-74.442191,39.355472,204 E MEADOWVIEW AVE,LINWOOD CITY,17,1967,1,RES1,3004 -0114_178_3,-74.81321747,39.65026615,208 W MEADOWVIEW AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_178_4,-74.787101,39.67718,1705 SOMERSET BLVD,LINWOOD CITY,16,1967,1,RES1,3001 -0114_178_5,-74.8007295,39.614686,1700 FRANKLIN BLVD,LINWOOD CITY,17,1967,1,COM4,3004 -0114_178_6,-74.78532314,39.63668919,205 E HEMLOCK DR,LINWOOD CITY,17,1967,1,RES1,3001 -0114_178_7,-74.74456452,39.63636234,209 E HEMLOCK DR,LINWOOD CITY,17,1967,1,RES1,3001 -0114_178_8,-74.525436,39.317188,1701 SOMERSET AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_18_1,-74.93405181,39.52491656,100 E MYRTLE AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_18_2,-74.5477575,39.4749755,101 E IONA AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_18_3,-74.8957125,39.5267585,102 E MYRTLE AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_18_4,-74.79193753,39.63967016,103 E IONA AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_18_5,-74.91501688,39.48046666,104 E MYRTLE AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_18_6,-74.89117191,39.55805456,105 E IONA AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_18_7,-74.7939601,39.63404756,106 E MYRTLE AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_18_8,-74.9471815,39.5198075,121 E IONA AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_18_9.01,-74.86349562,39.56374278,108 E MYRTLE AVE,LINWOOD CITY,16,1989,1,IND1,3002 -0114_18_9.02,-74.91961576,39.48934645,109 E IONA AVE,LINWOOD CITY,17,1987,1,RES3A,3001 -0114_18_9.03,-74.83548852,39.59235985,111 E IONA AVE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_18_9.04,-74.53873278,39.46360393,112 E MYRTLE AVE,LINWOOD CITY,17,1987,1,RES1,3001 -0114_18_9.05,-74.78214818,39.60630673,113 E IONA AVE,LINWOOD CITY,16,1987,1,RES1,3001 -0114_18_9.06,-74.69357947,39.41932125,114 E MYRTLE AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_18_9.07,-74.825484,39.567466,115 E IONA AVE,LINWOOD CITY,18,1988,1,RES1,3001 -0114_18_9.08,-74.5350375,39.469716,1 BONNIE DRIVE,LINWOOD CITY,18,1997,1,RES1,3001 -0114_181_10,-74.638474,39.3997845,204 LANDING LANE,LINWOOD CITY,18,1974,1,RES1,3001 -0114_181_11,-74.63819901,39.40036463,206 LANDING LANE,LINWOOD CITY,18,1967,1,RES1,3001 -0114_181_12,-74.638895,39.3804025,222 LANDING LANE,LINWOOD CITY,18,1974,1,RES1,3001 -0114_181_13,-74.5612843,39.39127032,221 LANDING LANE,LINWOOD CITY,17,1946,1,COM3,3004 -0114_181_14,-74.55333654,39.37784634,1156 FRANKLIN BLVD,LINWOOD CITY,17,1985,1,RES1,3001 -0114_181_16.02,-74.6318305,39.3649935,225 LANDING LANE,LINWOOD CITY,17,1975,1,COM1,3004 -0114_181_16.03,-74.625445,39.380095,229 LANDING LANE,LINWOOD CITY,18,1977,1,RES1,3001 -0114_181_2,-74.37616451,39.40094583,1130 WOODE-LYNNE BLVD,LINWOOD CITY,17,1950,1,RES1,3001 -0114_181_3,-74.380402,39.3983195,1102 WOODE-LYNNE BLVD,LINWOOD CITY,17,1957,1,RES1,3001 -0114_181_4,-74.64934629,39.40381052,112 E GLENSIDE AVE,LINWOOD CITY,18,2013,1,RES1,3001 -0114_181_5,-74.37441883,39.39907352,121 E EDGEWOOD AVE,LINWOOD CITY,18,1980,1,RES1,3001 -0114_181_6,-74.54049958,39.38831781,114 E GLENSIDE AVE,LINWOOD CITY,17,1959,1,RES1,3001 -0114_181_7,-74.63319,39.4198365,1155 FRANKLIN BLVD,LINWOOD CITY,18,1961,1,RES1,3001 -0114_181_9,-74.68184625,39.38587584,200 LANDING LANE,LINWOOD CITY,18,1978,1,RES1,3001 -0114_182.01_1,-74.48956158,39.33303695,1060 WOODE-LYNNE BLVD,LINWOOD CITY,17,1956,1,RES1,3001 -0114_182.01_2,-74.46620011,39.34483517,1040 WOODE-LYNNE BLVD,LINWOOD CITY,17,1955,1,RES3A,3001 -0114_182.01_3,-74.49902691,39.33294284,103 E DELMAR AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_182.01_4,-74.495475,39.3326035,109 E DELMAR AVE,LINWOOD CITY,19,2007,1,RES1,3001 -0114_182.01_5,-74.50295458,39.32556285,113 E DELMAR AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_182.01_6.01,-74.50791817,39.32488847,117 E DELMAR AVE,LINWOOD CITY,19,2008,1,RES1,3001 -0114_182.01_6.02,-74.492697,39.3337005,119 E DELMAR AVE,LINWOOD CITY,18,1980,1,RES1,3001 -0114_182.01_8,-74.6689111,39.41541877,123 E DELMAR AVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_182.01_9.01,-74.539551,39.460284,200 COUNTRY CLUB DRIVE,LINWOOD CITY,18,1987,1,GOV1,3004 -0114_182.02_10,-74.48510209,39.34757844,118 COUNTRY CLUB DR,LINWOOD CITY,18,1963,1,RES1,3001 -0114_182.02_11,-74.44952046,39.35560682,116 COUNTRY CLUB DRIVE,LINWOOD CITY,18,1991,1,RES1,3001 -0114_182.02_12,-74.4891575,39.3358845,114 COUNTRY CLUB DR,LINWOOD CITY,17,1979,1,RES1,3001 -0114_182.02_13,-74.52477055,39.31847252,112 COUNTRY CLUB DR,LINWOOD CITY,17,1966,1,RES1,3001 -0114_182.02_14,-74.48333133,39.33473701,110 COUNTRY CLUB DR,LINWOOD CITY,17,1994,1,RES1,3001 -0114_182.02_15,-74.5565275,39.467591,108 COUNTRY CLUB DR,LINWOOD CITY,17,1960,1,RES3A,3001 -0114_182.02_16,-74.557728,39.47594,104 COUNTRY CLUB DR,LINWOOD CITY,16,1964,1,RES1,3001 -0114_182.02_17,-74.5804755,39.4738175,100 COUNTRY CLUB DRIVE,LINWOOD CITY,17,1960,1,RES1,3001 -0114_182.02_9.04,-74.49591885,39.32862046,124 COUNTRY CLUB DRIVE,LINWOOD CITY,19,2001,1,RES1,3001 -0114_184_10,-74.602243,39.4889145,114 SHORE ROAD,LINWOOD CITY,16,1923,1,RES1,3001 -0114_184_11,-74.65175254,39.45485727,112 SHORE ROAD,LINWOOD CITY,16,1950,1,RES1,3001 -0114_184_12,-74.6383665,39.501784,104 SHORE ROAD,LINWOOD CITY,16,1920,1,RES1,3001 -0114_184_14,-74.7348595,39.4355785,6 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_184_16,-74.5715032,39.42951679,1 GAIL AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_184_17,-74.597052,39.405322,105 CAROL RD,LINWOOD CITY,16,1961,1,RES1,3001 -0114_184_18,-74.6359905,39.384144,107 CAROL RD,LINWOOD CITY,16,1958,1,RES1,3001 -0114_184_19,-74.63617372,39.38375305,109 CAROL RD,LINWOOD CITY,16,1959,1,RES1,3001 -0114_184_2,-74.63116444,39.53314265,10 POPLAR AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_184_20,-74.5487935,39.371386,111 CAROL RD,LINWOOD CITY,16,1961,1,RES1,3001 -0114_184_21,-74.63406,39.3573785,115 CAROL RD,LINWOOD CITY,16,1959,1,RES1,3001 -0114_184_22,-74.61535593,39.34056072,112 CAROL RD,LINWOOD CITY,16,1970,1,RES1,3001 -0114_184_23,-74.624775,39.358186,110 CAROL RD,LINWOOD CITY,16,1967,1,RES1,3001 -0114_184_24,-74.77912,39.3158505,108 CAROL RD,LINWOOD CITY,16,1965,1,RES1,3001 -0114_184_25,-74.65146929,39.3548518,106 CAROL RD,LINWOOD CITY,16,1959,1,RES1,3001 -0114_184_26,-74.64092669,39.33128417,104 CAROL RD,LINWOOD CITY,16,1959,1,RES1,3001 -0114_184_27,-74.58915648,39.35275232,102 CAROL RD,LINWOOD CITY,16,1961,1,RES1,3001 -0114_184_28,-74.57796402,39.33468896,100 CAROL RD,LINWOOD CITY,16,1960,1,RES1,3001 -0114_184_3,-74.48926341,39.35129882,744 SHORE ROAD,LINWOOD CITY,18,1945,2,GOV1,3004 -0114_184_30,-74.85156936,39.36621384,2 GAIL AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_184_31,-74.57185221,39.37101274,101 CAROL ROAD,LINWOOD CITY,16,1958,1,RES1,3001 -0114_184_4.01,-74.63592519,39.38270043,500 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_184_4.02,-74.4835265,39.3391865,E POPLAR AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_184_5,-74.61898819,39.37369605,520 SHORE ROAD,LINWOOD CITY,17,1900,1,RES1,3001 -0114_184_7,-74.596776,39.411013,300 SHORE ROAD,LINWOOD CITY,18,1977,1,RES1,3001 -0114_184_8,-74.64430204,39.41463527,200 SHORE ROAD,LINWOOD CITY,16,1964,1,RES1,3001 -0114_19_1.01,-74.59785618,39.59296049,512 W GARFIELD AVENUE,LINWOOD CITY,17,1999,1,RES1,3001 -0114_19_1.02,-74.6544445,39.5321295,510 W GARFIELD AVENUE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_19_1.03,-74.6452935,39.53216717,508 W GARFIELD AVENUE,LINWOOD CITY,17,2002,1,RES1,3001 -0114_19_2,-74.574053,39.544324,504 W GARFIELD AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_19_3,-74.64683153,39.55178716,502 W GARFIELD AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_19_4,-74.67256969,39.51012805,500 W GARFIELD AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_19_5,-74.8575248,39.56778469,2048 WEST AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_19_6,-74.41837767,39.36816942,2021 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_19_7,-74.79815125,39.6348217,2020 WEST AVE,LINWOOD CITY,17,1900,1,RES1,3001 -0114_2_1,-74.84167633,39.635447,2190 WEST AVENUE,LINWOOD CITY,16,2008,2,RES1,3001 -0114_2_10,-74.54333518,39.47551754,403 W FRANCES AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_2_11,-74.5661545,39.47079,405 W FRANCES AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_2_13.01,-74.7133128,39.44774747,509 KIRKLIN AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_2_13.02,-74.82510985,39.40287012,507 KIRKLIN AVE,LINWOOD CITY,17,1978,1,RES3A,3001 -0114_2_13.03,-74.81328383,39.38711854,505 KIRKLIN AVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_2_13.04,-74.8163205,39.6349425,503 KIRKLIN AVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_2_13.05,-74.80706317,39.6307535,501 KIRKLIN AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_2_13.06,-74.83735195,39.39304204,500 KIRKLIN AVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_2_13.07,-74.8068085,39.435609,502 KIRKLIN AVE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_2_14.01,-74.781468,39.457483,506 KIRKLIN AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_2_14.02,-74.74959875,39.44713191,504 KIRKLIN AVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_2_14.03,-74.87269332,39.44834945,2188 WEST AVE,LINWOOD CITY,18,1990,1,RES1,3001 -0114_2_15,-74.6017425,39.5004085,2209 BRIGHTON DR,LINWOOD CITY,17,1965,1,RES1,3001 -0114_2_16,-74.66527176,39.45613758,2207 BRIGHTON DR,LINWOOD CITY,17,1964,1,RES1,3001 -0114_2_17,-74.72253183,39.43068673,2205 BRIGHTON DR,LINWOOD CITY,16,1964,1,RES1,3002 -0114_2_18,-74.80791715,39.62965346,2203 BRIGHTON DR,LINWOOD CITY,17,1964,1,RES1,3001 -0114_2_19,-74.80786204,39.63393784,2201 BRIGHTON DR,LINWOOD CITY,17,1963,1,RES1,3001 -0114_2_2,-74.53678188,39.38044715,580 OCEAN HEIGHTS AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_2_20.01,-74.6080065,39.5149595,508 DUSTY LANE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_2_20.02,-74.8764745,39.4788755,506 DUSTY LANE,LINWOOD CITY,18,1998,1,RES1,3001 -0114_2_20.03,-74.82636352,39.46606997,502 DUSTY LANE,LINWOOD CITY,17,1996,1,RES1,3001 -0114_2_20.04,-74.71269756,39.46658034,500 DUSTY LANE,LINWOOD CITY,18,1997,1,RES1,3002 -0114_2_20.05,-74.80486482,39.40880203,501 DUSTY LANE,LINWOOD CITY,16,2001,1,RES1,3001 -0114_2_20.06,-74.723417,39.4574755,503 DUSTY LANE,LINWOOD CITY,17,1995,1,RES1,3001 -0114_2_21,-74.81075908,39.63296947,404 W KIRKLIN AVE,LINWOOD CITY,16,1964,1,RES1,3002 -0114_2_22,-74.87269278,39.60417324,402 W KIRKLIN AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_2_23,-74.734466,39.4342575,400 W KIRKLIN AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_2_24,-74.64042187,39.53562874,2115 NEW ROAD,LINWOOD CITY,17,1987,2,REL1,3004 -0114_2_28,-74.76013993,39.44643354,2101 NEW ROAD,LINWOOD CITY,16,1965,1,RES1,3002 -0114_2_29,-74.87553517,39.44404099,503 GARFIELD AVE,LINWOOD CITY,16,1987,1,RES1,3001 -0114_2_30,-74.82517065,39.49180671,505 GARFIELD AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_2_31.01,-74.55814504,39.50910485,507 GARFIELD AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_2_31.02,-74.621174,39.51292,509 GARFIELD AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_2_31.03,-74.62122334,39.53165648,161 GARFIELD AVE,LINWOOD CITY,16,1989,1,RES1,3001 -0114_2_32,-74.6559698,39.52118201,513 GARFIELD AVE,LINWOOD CITY,16,1961,1,GOV1,3004 -0114_2_33.01,-74.6866945,39.518531,515 GARFIELD AVE,LINWOOD CITY,17,1990,1,RES1,3001 -0114_2_33.02,-74.66259592,39.55502989,517 GARFIELD AVE,LINWOOD CITY,17,1999,1,COM1,3004 -0114_2_4,-74.5482255,39.473037,534 W OCEAN HTGS AVE,LINWOOD CITY,15,1960,1,RES3A,3001 -0114_2_5,-74.609959,39.502183,532 OCEAN HEIGHTS AVE,LINWOOD CITY,16,1994,1,RES3B,3001 -0114_2_9,-74.76082869,39.64087154,401 W FRANCES AVE,LINWOOD CITY,17,1966,1,COM1,3004 -0114_21_1.01,-74.50888788,39.32628177,1917 WEST AVE,LINWOOD CITY,16,1953,1,RES3A,3001 -0114_21_1.02,-74.49574358,39.32839067,1919 WEST AVE,LINWOOD CITY,17,1978,1,RES3A,3001 -0114_21_1.03,-74.43277772,39.36522565,1921 WEST AVE,LINWOOD CITY,16,1978,1,RES1,3001 -0114_21_1.04,-74.51675518,39.31786033,1915 WEST AVE,LINWOOD CITY,16,1989,1,RES1,3001 -0114_21_1.05,-74.51014133,39.33059953,1804 NEW ROAD,LINWOOD CITY,16,1985,1,RES1,3001 -0114_21_2,-74.5685685,39.414095,1913 WEST AVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_21_3,-74.5746425,39.409187,301 W FOREST DR,LINWOOD CITY,17,1969,1,RES1,3001 -0114_21_4,-74.5717555,39.4133725,303 W FOREST DR,LINWOOD CITY,17,1985,1,RES1,3001 -0114_21_5,-74.57498493,39.42785838,305 W FOREST DR,LINWOOD CITY,16,1969,1,RES1,3001 -0114_21_6,-74.59697675,39.40599735,307 W FOREST DRIVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_21_7,-74.4586735,39.3503295,309 W FOREST DRIVE,LINWOOD CITY,16,1980,1,RES1,3001 -0114_21_8,-74.48232857,39.34127271,311 W FOREST DRIVE,LINWOOD CITY,16,1986,1,RES1,3001 -0114_22_1,-74.466272,39.3434565,308 W FOREST DRIVE,LINWOOD CITY,16,1979,1,RES1,3001 -0114_22_10,-74.46260064,39.35230201,309 W KIE-TRO DR,LINWOOD CITY,17,1972,1,RES1,3001 -0114_22_2,-74.48183144,39.34067033,306 W FOREST DR,LINWOOD CITY,17,1969,1,RES1,3001 -0114_22_3,-74.4612835,39.3498805,304 W FOREST DR,LINWOOD CITY,16,1970,1,RES1,3001 -0114_22_4,-74.599631,39.410085,302 W FOREST DRIVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_22_5,-74.5820895,39.406957,300 W FOREST DRIVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_22_6,-74.5130395,39.3276985,301 W KIE-TRO DR,LINWOOD CITY,16,1972,1,RES3A,3002 -0114_22_7,-74.4615615,39.34727104,303 W KIE-TRO DR,LINWOOD CITY,16,1971,1,RES1,3001 -0114_22_8,-74.47913183,39.33740551,305 W KIE-TRO DR,LINWOOD CITY,17,1970,1,RES3B,3001 -0114_22_9,-74.44770784,39.35846517,307 W KIE-TRO DR,LINWOOD CITY,17,1970,1,RES1,3001 -0114_23_1,-74.46197418,39.35322398,312 W FOREST DRIVE,LINWOOD CITY,17,2001,1,RES1,3001 -0114_23_10,-74.4933365,39.3392965,306 W KIETRO DRIVE,LINWOOD CITY,17,1971,1,RES1,3001 -0114_23_11,-74.452745,39.3538985,304 W KIE-TRO DR,LINWOOD CITY,17,1971,1,RES1,3001 -0114_23_12,-74.48594001,39.34977117,302 W KIE-TRO DR,LINWOOD CITY,17,1971,1,RES1,3001 -0114_23_13,-74.4802935,39.3387925,300 W KIE TRO DR,LINWOOD CITY,17,1974,1,RES1,3001 -0114_23_14,-74.47659053,39.34280635,1801 WEST AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_23_15,-74.45106513,39.35388668,303 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES1,3002 -0114_23_16,-74.4923635,39.3370955,305 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES3A,3001 -0114_23_17,-74.50463815,39.34055513,307 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_23_18,-74.37736559,39.39908633,309 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES3A,3004 -0114_23_19,-74.38036375,39.39874,401 W JOSEPH AVE,LINWOOD CITY,15,1963,1,RES1,3001 -0114_23_2,-74.4436725,39.3562095,320 W KIE-TRO DRIVE,LINWOOD CITY,17,1997,1,RES3A,3001 -0114_23_20,-74.4177085,39.36948,403 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES3A,3001 -0114_23_21,-74.4416878,39.37245278,405 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_23_22,-74.36330733,39.4175165,407 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_23_23,-74.35723038,39.41395587,409 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_23_24,-74.3766682,39.41730481,411 W JOSEPH AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_23_3,-74.50825133,39.33585001,1714 NEW ROAD,LINWOOD CITY,16,2005,1,RES1,3001 -0114_23_4,-74.4924805,39.3361435,318 W KIE-TRO DRIVE,LINWOOD CITY,17,2000,1,RES3A,3001 -0114_23_5.01,-74.37832677,39.39767023,1710 NEW ROAD,LINWOOD CITY,16,1959,1,RES1,3001 -0114_23_5.02,-74.387709,39.3916155,316 KIE TRO DR,LINWOOD CITY,17,1978,1,RES1,3002 -0114_23_6,-74.42266621,39.37345489,1708 NEW ROAD,LINWOOD CITY,16,1960,1,RES1,3002 -0114_23_7,-74.398742,39.386396,312 W KIE-TRO DRIVE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_23_8,-74.5099228,39.33545593,310 W KIE-TRO DR,LINWOOD CITY,17,1973,1,RES1,3001 -0114_23_9,-74.48930608,39.33434166,308 W KIE-TRO DR,LINWOOD CITY,17,1972,1,RES1,3001 -0114_24_10,-74.387419,39.393979,310 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_11,-74.39267851,39.38826043,308 W JOSEPH AVE,LINWOOD CITY,16,1963,1,COM1,3004 -0114_24_12,-74.370522,39.400917,306 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_24_13,-74.50880652,39.33629481,304 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_24_14,-74.49322147,39.33521983,302 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3004 -0114_24_15,-74.4926215,39.338547,1705 WEST AVE,LINWOOD CITY,16,1962,1,GOV1,3004 -0114_24_17,-74.51936668,39.38921583,409 W HAMILTON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_18,-74.5430035,39.3908425,407 W HAMILTON AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_24_19,-74.54065388,39.39266783,405 W HAMILTON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_24_2,-74.551844,39.3811925,408 W JOSEPH AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_24_20,-74.5486235,39.382554,403 W HAMILTON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_24_21,-74.4507475,39.3711595,401 W HAMILTON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_24_22,-74.3661409,39.42141198,309 W HAMILTON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_24_23,-74.37355786,39.4140348,307 W HAMILTON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_24_24,-74.36584255,39.41306321,305 W HAMILTON AVE,LINWOOD CITY,15,1961,1,RES1,3001 -0114_24_25,-74.36443577,39.41537249,303 W HAMILTON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_26,-74.43629479,39.36922278,301 W HAMILTON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_27,-74.41403926,39.3693617,209 W HAMILTON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_28,-74.38340163,39.39530638,207 W HAMILTON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_29,-74.39513433,39.38903551,205 W HAMILTON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_24_3,-74.449272,39.3716735,406 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_30,-74.3977165,39.384562,203 W HAMILTON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_31,-74.50532375,39.3396046,1701 WEST AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_4,-74.368048,39.4226485,404 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_5,-74.37633812,39.41438797,402 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_6,-74.361259,39.412151,400 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_24_7,-74.36358705,39.41491999,316 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_24_8,-74.40991247,39.39092483,314 W JOSEPH AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_24_9,-74.40830294,39.38118791,312 W JOSEPH AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_25_1,-74.81486234,39.64150444,232 W SEAVIEW AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_25_10.01,-74.88515463,39.4697408,200 W SEAVIEW AVE,LINWOOD CITY,17,1956,1,RES1,3001 -0114_25_10.02,-74.93036167,39.51872349,200 W SEAVIEW REAR,LINWOOD CITY,17,1987,1,RES1,3001 -0114_25_11,-74.81687433,39.64715916,201 W FOREST DR,LINWOOD CITY,16,1963,1,RES1,3001 -0114_25_12,-74.8166975,39.6543575,211 W FOREST DR,LINWOOD CITY,17,1962,1,RES1,3001 -0114_25_13,-74.44284583,39.35349551,215 W FOREST DR,LINWOOD CITY,16,1965,1,RES1,3001 -0114_25_14,-74.436509,39.364788,217 W FOREST DR,LINWOOD CITY,16,1970,1,RES1,3001 -0114_25_15,-74.4960301,39.33369484,219 W FOREST DR,LINWOOD CITY,16,1967,1,RES1,3001 -0114_25_16.01,-74.50241405,39.33057136,221 W FOREST DR,LINWOOD CITY,16,1968,1,RES1,3001 -0114_25_16.02,-74.5053185,39.3301295,1912 WEST AVE,LINWOOD CITY,16,1968,1,COM5,3004 -0114_25_2,-74.8187335,39.654235,1920 WEST AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_25_3.01,-74.4304595,39.364345,1918 WEST AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_25_3.02,-74.522734,39.316761,1916 WEST AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_25_3.03,-74.49217655,39.33214419,1914 WEST AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_25_4,-74.819381,39.6542555,230 W SEAVIEW AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_25_5,-74.81801765,39.64158817,320 W SEAVIEW AVE,LINWOOD CITY,17,1960,1,RES1,3001 -0114_25_6,-74.80902396,39.64766534,222 W SEAVIEW AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_25_7,-74.7880515,39.676975,220 W SEAVIEW AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_25_8,-74.8841465,39.542259,214 W SEAVIEW AVE,LINWOOD CITY,16,1959,1,GOV1,3004 -0114_25_9,-74.9528405,39.5137765,210 W SEAVIEW AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_26_1,-74.51788766,39.31837545,222 W FOREST DR,LINWOOD CITY,17,1967,1,RES1,3001 -0114_26_10,-74.46588917,39.3466265,1704 WEST AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_26_11,-74.48047629,39.34630667,1702 WEST AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_26_12,-74.4840305,39.3516275,1700 WEST AVE,LINWOOD CITY,18,2007,1,RES1,3001 -0114_26_2,-74.51254765,39.33112647,1820 WEST AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_26_3,-74.51722764,39.32077961,220 W FOREST DR,LINWOOD CITY,16,1967,1,RES3A,3001 -0114_26_4,-74.51760707,39.32254268,218 W FOREST DR,LINWOOD CITY,16,1960,1,RES1,3001 -0114_26_5,-74.50526534,39.32797349,212 W FOREST DRIVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_26_6,-74.50893169,39.33191563,210 W FOREST DR,LINWOOD CITY,16,1959,1,RES1,3001 -0114_26_7,-74.49501154,39.33380687,208 W FOREST DR,LINWOOD CITY,16,1960,1,RES1,3001 -0114_26_8.01,-74.58151933,39.40657785,204 ROSS LANE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_26_8.02,-74.56057862,39.42124028,202 ROSS LANE,LINWOOD CITY,16,1988,1,RES1,3001 -0114_26_8.03,-74.51279625,39.33141868,200 ROSS LANE,LINWOOD CITY,18,1993,1,RES1,3001 -0114_26_8.04,-74.51171479,39.32439898,201 ROSS LANE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_26_8.05,-74.520842,39.318988,203 ROSS LANE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_26_8.06,-74.5315449,39.41867156,205 ROSS LANE,LINWOOD CITY,18,1995,1,RES3A,3001 -0114_26_8.07,-74.569336,39.411739,1814 WEST AVE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_26_9.01,-74.463239,39.348648,1 KINGSBROOK COURT,LINWOOD CITY,17,1987,1,RES1,3001 -0114_26_9.02,-74.511905,39.3265445,3 KINGSBROOK COURT,LINWOOD CITY,17,1986,1,GOV1,3004 -0114_26_9.03,-74.57518282,39.42975754,5 KINGSBROOK COURT,LINWOOD CITY,18,1986,1,GOV1,3004 -0114_26_9.04,-74.48383334,39.3390181,7 KINGSBROOK COURT,LINWOOD CITY,17,1985,1,RES1,3001 -0114_27_1,-74.62563576,39.5273677,1920 WABASH AVE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_27_10,-74.79761752,39.46006571,24 W GREENWICH ROAD,LINWOOD CITY,16,1955,1,RES1,3001 -0114_27_12,-74.72471613,39.45873807,18 W GREENWICH RD,LINWOOD CITY,16,1950,1,RES1,3001 -0114_27_13,-74.72430631,39.44108461,4 W GREENWICH ROAD,LINWOOD CITY,16,1980,1,GOV1,3004 -0114_27_14,-74.83739472,39.4061733,2 W GREENWICH RD,LINWOOD CITY,16,1953,1,RES1,3001 -0114_27_15,-74.8714315,39.4422905,1937 SHORE ROAD,LINWOOD CITY,16,1909,1,RES1,3001 -0114_27_18,-74.547508,39.5450635,1919 SHORE RD,LINWOOD CITY,16,1922,1,RES1,3001 -0114_27_19,-74.58215765,39.53547884,1913 SHORE ROAD,LINWOOD CITY,16,1926,1,RES1,3001 -0114_27_2,-74.57793097,39.52119934,102 W GREENWICH RD,LINWOOD CITY,16,1964,1,RES1,3001 -0114_27_20,-74.664666,39.544782,15 W SEAVIEW AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_27_21,-74.64234066,39.52617104,13 W SEAVIEW AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_27_22,-74.63920548,39.53571474,9 W SEAVIEW AVE,LINWOOD CITY,15,1970,1,RES1,3001 -0114_27_23,-74.58732485,39.53287514,1909 SHORE ROAD,LINWOOD CITY,17,1987,1,RES1,3001 -0114_27_3,-74.80323725,39.49906187,100 W GREENWICH RD,LINWOOD CITY,16,1948,1,RES1,3001 -0114_27_4.01,-74.63610669,39.52403285,1914 WABASH AVENUE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_27_5,-74.622756,39.623938,1910 WABASH AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_27_6,-74.81096195,39.64696934,129 W SEAVIEW AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_27_7,-74.8647065,39.5656165,121 W SEAVIEW AVE,LINWOOD CITY,16,1963,1,RES1,3002 -0114_27_8,-74.80913263,39.55411428,115 W SEAVIEW AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_27_9,-74.63294641,39.61962561,113 W SEAVIEW AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_28.01_1.01,-74.86495065,39.59598429,130 W SEAVIEW AVE,LINWOOD CITY,16,1905,1,RES1,3001 -0114_28.01_1.02,-74.9342115,39.488798,33 W ASBURY AVE,LINWOOD CITY,17,1997,1,RES1,3002 -0114_28.01_10,-74.81549769,39.64817915,1803 SHORE ROAD,LINWOOD CITY,15,1922,1,RES1,3001 -0114_28.01_11,-74.5196178,39.31698937,13 W ASBURY AVE,LINWOOD CITY,16,1917,1,RES1,3001 -0114_28.01_12,-74.75756391,39.63708687,17 W ASBURY AVE,LINWOOD CITY,17,2007,1,RES1,3001 -0114_28.01_2,-74.77511281,39.62002426,122 W SEAVIEW AVE,LINWOOD CITY,16,1925,1,RES1,3001 -0114_28.01_3.01,-74.78470166,39.59220998,114 W SEAVIEW AVE,LINWOOD CITY,16,1867,1,RES1,3001 -0114_28.01_3.02,-74.79980995,39.63592766,29 W ASBURY AVE,LINWOOD CITY,16,1978,1,RES1,3001 -0114_28.01_3.03,-74.80608886,39.62911748,25 W ASBURY AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_28.01_3.04,-74.78641491,39.63284422,21 W ASBURY AVE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_28.01_3.05,-74.42810132,39.3604395,32 W SEAVIEW AVE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_28.01_4,-74.8166685,39.654697,18 W SEAVIEW AVE,LINWOOD CITY,16,1941,1,RES1,3001 -0114_28.01_5,-74.71722,39.578877,14 W SEAVIEW AVE,LINWOOD CITY,16,1923,1,RES1,3001 -0114_28.01_6,-74.806902,39.553972,8 W SEAVIEW AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_28.01_7,-74.6445535,39.5310565,2 W SEAVIEW AVE,LINWOOD CITY,17,1926,1,RES1,3001 -0114_28.01_8,-74.715182,39.5624255,1813 SHORE ROAD,LINWOOD CITY,16,1895,1,RES1,3001 -0114_28.01_9,-74.86517082,39.56980237,1811 SHORE ROAD,LINWOOD CITY,17,1890,1,RES1,3001 -0114_28.02_13.01,-74.95160416,39.491355,26 W ASBURY AVE,LINWOOD CITY,16,1922,1,RES1,3001 -0114_28.02_13.02,-74.93098585,39.51782697,28 W ASBURY AVE,LINWOOD CITY,16,1975,1,GOV1,3004 -0114_28.02_13.03,-74.95444225,39.51743197,30 W ASBURY AVE,LINWOOD CITY,17,1975,1,RES1,3001 -0114_28.02_13.04,-74.93832089,39.52713282,32 W ASBURY AVE,LINWOOD CITY,16,1974,1,GOV1,3004 -0114_28.02_14,-74.88957181,39.47284863,18 W ASBURY AVE,LINWOOD CITY,16,1915,1,RES1,3001 -0114_28.02_15,-74.7969915,39.6382405,14 W ASBURY AVE,LINWOOD CITY,17,2004,1,RES1,3001 -0114_28.02_16,-74.8811865,39.590323,1761 SHORE ROAD,LINWOOD CITY,16,1900,1,GOV1,3004 -0114_28.02_17,-74.80195615,39.63538325,1743 SHORE ROAD,LINWOOD CITY,16,1957,1,RES1,3001 -0114_28.02_18,-74.9028445,39.481742,1741 SHORE ROAD,LINWOOD CITY,16,1927,1,RES1,3001 -0114_28.02_19,-74.90301221,39.49949388,15 WENDY DR,LINWOOD CITY,16,1978,1,RES1,3001 -0114_28.02_20,-74.92414396,39.50961572,17 WENDY DR,LINWOOD CITY,16,1977,1,RES3A,3001 -0114_28.02_21,-74.95779925,39.51190456,19 WENDY DR,LINWOOD CITY,16,1971,1,RES1,3001 -0114_28.02_22,-74.94929755,39.52362915,21 WENDY DR,LINWOOD CITY,17,1971,1,RES1,3001 -0114_28.02_23,-74.77555032,39.64314012,23 WENDY DRIVE,LINWOOD CITY,17,1987,1,COM4,3004 -0114_28.02_24,-74.7860795,39.651241,25 WENDY DR,LINWOOD CITY,17,1971,1,RES1,3001 -0114_29.01_1,-74.42479596,39.36587032,24 WENDY DR,LINWOOD CITY,17,1972,1,RES1,3001 -0114_29.01_10.01,-74.50314491,39.32546683,1703 SHORE ROAD,LINWOOD CITY,16,1957,1,RES1,3001 -0114_29.01_10.02,-74.50008792,39.33309034,202 ALEXANDER DR,LINWOOD CITY,18,1983,1,RES3B,3001 -0114_29.01_10.03,-74.5072855,39.3300845,204 ALEXANDER DR,LINWOOD CITY,17,1980,1,RES1,3001 -0114_29.01_10.04,-74.517478,39.322646,206 ALEXANDER DRIVE,LINWOOD CITY,17,1980,1,GOV1,3004 -0114_29.01_10.05,-74.50997564,39.33335662,208 ALEXANDER DRIVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_29.01_10.06,-74.57462508,39.4209158,210 ALEXANDER DRIVE,LINWOOD CITY,18,1980,1,RES1,3001 -0114_29.01_11.02,-74.48148197,39.35090082,212 ALEXANDER DRIVE,LINWOOD CITY,18,1980,1,RES1,3001 -0114_29.01_11.03,-74.51011729,39.32625317,211 ALEXANDER DR,LINWOOD CITY,17,1980,1,RES1,3001 -0114_29.01_2,-74.81498971,39.65594554,22 WENDY DR,LINWOOD CITY,17,1972,1,RES1,3001 -0114_29.01_3,-74.81286664,39.64643404,20 WENDY DR,LINWOOD CITY,17,1970,1,RES1,3001 -0114_29.01_4,-74.8058455,39.641902,18 WENDY DR,LINWOOD CITY,16,1978,1,RES3A,3001 -0114_29.01_5,-74.76580938,39.6454387,16 WENDY DR,LINWOOD CITY,17,1978,1,RES1,3001 -0114_29.01_6.01,-74.78426149,39.64221141,14 WENDY DR,LINWOOD CITY,16,1974,1,RES1,3001 -0114_29.01_6.02,-74.93690301,39.52418467,1727 SHORE ROAD,LINWOOD CITY,17,1800,1,AGR1,3004 -0114_29.01_7.01,-74.43859599,39.36651316,14 GEORGETOWN COURT,LINWOOD CITY,17,1984,1,GOV1,3004 -0114_29.01_7.02,-74.52229517,39.315019,16 GEORGETOWN COURT,LINWOOD CITY,17,1983,1,RES1,3001 -0114_29.01_7.03,-74.49657133,39.3327385,18 GEORGETOWN COURT,LINWOOD CITY,17,1983,1,RES1,3001 -0114_29.01_7.04,-74.5033485,39.331521,20 GEORGETOWN COURT,LINWOOD CITY,17,1983,1,RES1,3001 -0114_29.01_7.05,-74.513092,39.324188,22 GEORGETOWN COURT,LINWOOD CITY,18,1983,1,RES1,3001 -0114_29.01_7.06,-74.524739,39.3174345,24 GEORGETOWN COURT,LINWOOD CITY,17,1984,1,RES1,3001 -0114_29.01_7.07,-74.508826,39.3307505,23 GEORGETOWN COURT,LINWOOD CITY,17,1984,1,RES1,3001 -0114_29.01_7.08,-74.4376615,39.3664725,21 GEORGETOWN COURT,LINWOOD CITY,18,1983,1,RES1,3001 -0114_29.01_7.09,-74.42901568,39.36718097,19 GEORGETOWN CT,LINWOOD CITY,17,1983,1,RES1,3001 -0114_29.01_7.11,-74.80929642,39.64045489,15 GEORGETOWN COURT,LINWOOD CITY,17,1982,1,GOV1,3004 -0114_29.01_8,-74.8115702,39.64691115,1715 SHORE ROAD,LINWOOD CITY,16,1906,1,RES1,3001 -0114_29.01_9.02,-74.81838529,39.65086008,1709 SHORE ROAD,LINWOOD CITY,16,1920,1,GOV1,3004 -0114_29.02_11.01,-74.458405,39.349216,16 HAMILTON AVE,LINWOOD CITY,17,1984,1,RES1,3001 -0114_29.02_11.04,-74.58807727,39.4067944,209 ALEXANDER DR,LINWOOD CITY,18,1982,1,RES1,3001 -0114_29.02_11.05,-74.574542,39.4257085,207 ALEXANDER DR,LINWOOD CITY,18,1982,1,RES3A,3001 -0114_29.02_11.06,-74.574595,39.4171445,205 ALEXANDER DR,LINWOOD CITY,18,1982,1,RES1,3001 -0114_29.02_11.07,-74.52328966,39.32157253,203 ALEXANDER DR,LINWOOD CITY,17,1980,1,RES3A,3001 -0114_29.02_11.08,-74.50387209,39.32725182,201 ALEXANDER DR,LINWOOD CITY,16,1913,1,RES1,3001 -0114_29.02_12,-74.604155,39.410618,14 HAMILTON AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_29.02_13,-74.57251434,39.42777123,12 HAMILTON AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_29.02_14,-74.57241984,39.41275929,10 HAMILTON AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_29.02_15,-74.55885331,39.40729585,4 HAMILTON AVENUE,LINWOOD CITY,18,1984,1,RES1,3001 -0114_3_1,-74.63302027,39.46331252,404 W FRANCES AVE,LINWOOD CITY,16,1963,1,AGR1,3001 -0114_3_2,-74.62261,39.439302,402 W FRANCES AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_3_3,-74.5804525,39.474189,400 W FRANCES AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_3_4,-74.63240177,39.46067031,401 W KIRKLIN AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_3_5,-74.64965818,39.48444687,403 W KIRKLIN AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_3_6,-74.78856803,39.36998223,405 W KIRKLIN AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_31_1,-74.62351915,39.43891179,100 E IONA AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_31_10,-74.66550162,39.46262696,103 E DAWN DR,LINWOOD CITY,15,1962,1,RES1,3001 -0114_31_11,-74.685314,39.4910395,101 E DAWN DR,LINWOOD CITY,16,1960,1,RES1,3001 -0114_31_2,-74.6101175,39.48462083,102 E IONA AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_31_3,-74.57515831,39.48008794,104 E IONA AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_31_4,-74.55806672,39.47459308,106 E IONA AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_31_5,-74.79056954,39.65525684,108 E IONA AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_31_6.01,-74.95354348,39.54117859,110 E IONA AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_31_6.02,-74.55482328,39.46861122,2001 FRANKLIN BLVD,LINWOOD CITY,15,1977,1,GOV1,3004 -0114_31_7,-74.57392984,39.48067002,109 E DAWN DR,LINWOOD CITY,16,1968,1,COM1,3004 -0114_31_8,-74.59701782,39.49819833,107 E DAWN DR,LINWOOD CITY,16,1962,1,RES1,3001 -0114_31_9,-74.66102503,39.44607625,105 E DAWN DR,LINWOOD CITY,16,1963,1,RES1,3001 -0114_32_1,-74.88057522,39.60519457,2016 SHORE ROAD,LINWOOD CITY,16,1907,1,RES1,3001 -0114_32_10,-74.72745955,39.45022366,1926 SHORE ROAD,LINWOOD CITY,16,1873,4,RES1,3001 -0114_32_11,-74.73517,39.4482045,12 E DAWN DR,LINWOOD CITY,16,1964,1,RES1,3001 -0114_32_12,-74.816331,39.398597,46 E DAWN DR,LINWOOD CITY,16,1962,1,RES1,3001 -0114_32_13.01,-74.85752016,39.62011683,100 E DAWN DR,LINWOOD CITY,17,1968,1,RES1,3001 -0114_32_13.02,-74.72403867,39.45899866,103 E SEAVIEW AVE,LINWOOD CITY,16,1907,1,RES1,3001 -0114_32_14,-74.80060555,39.63355534,104 E DAWN DR,LINWOOD CITY,16,1960,1,RES1,3001 -0114_32_15,-74.79830981,39.61841406,106 E DAWN DR,LINWOOD CITY,17,1962,1,RES1,3001 -0114_32_16,-74.7620864,39.42965075,108 E DAWN DR,LINWOOD CITY,16,1963,1,RES1,3001 -0114_32_17,-74.7168285,39.40575,110 E DAWN DR,LINWOOD CITY,17,1968,1,RES1,3001 -0114_32_18,-74.68977973,39.48162848,1905 FRANKLIN BLVD,LINWOOD CITY,17,1968,1,RES1,3001 -0114_32_19.01,-74.83493429,39.37408106,139 E SEAVIEW AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_32_19.02,-74.81867586,39.63468163,1901 FRANKLIN BLVD,LINWOOD CITY,16,1978,1,RES1,3001 -0114_32_19.03,-74.878011,39.5973095,1903 FRANKLIN BLVD,LINWOOD CITY,17,1987,1,RES1,3001 -0114_32_2,-74.81113545,39.62803235,2000 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_32_20,-74.824689,39.400123,137 E SEAVIEW AVE,LINWOOD CITY,18,2005,1,RES1,3001 -0114_32_21,-74.84308043,39.4022578,127 E SEAVIEW AVE,LINWOOD CITY,16,1920,1,GOV1,3004 -0114_32_22,-74.72771997,39.44875478,105 E SEAVIEW AVE,LINWOOD CITY,17,1996,1,RES1,3001 -0114_32_23,-74.71118476,39.46716344,31 E SEAVIEW AVE,LINWOOD CITY,16,2014,1,RES1,3001 -0114_32_24,-74.76007349,39.44465583,27 E SEAVIEW AVE,LINWOOD CITY,16,1910,1,GOV1,3004 -0114_32_25,-74.86480055,39.44314732,23 E SEAVIEW AVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_32_26,-74.711804,39.474694,1918 SHORE ROAD,LINWOOD CITY,16,1930,1,RES1,3001 -0114_32_27,-74.87038575,39.49151074,1910 SHORE ROAD,LINWOOD CITY,16,1915,1,RES1,3001 -0114_32_28,-74.63805542,39.52896365,1904 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_32_3,-74.739702,39.4305895,10 E IONA AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_32_4,-74.691296,39.4944955,2019 WOODE-LYNNE BLVD,LINWOOD CITY,16,1955,1,RES1,3001 -0114_32_5,-74.75426554,39.4325958,15 E DAWN DR,LINWOOD CITY,16,1962,1,GOV1,3004 -0114_32_6,-74.797911,39.6217785,43 E DAWN DR,LINWOOD CITY,17,1962,1,RES1,3001 -0114_32_7,-74.80428413,39.63743586,9 E DAWN DR,LINWOOD CITY,17,1964,1,RES1,3001 -0114_32_9,-74.83449316,39.41183891,1930 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_33_1,-74.70200631,39.57461052,1838 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_33_10,-74.87157479,39.49189494,132 E SEAVIEW AVE,LINWOOD CITY,16,1924,1,RES1,3001 -0114_33_11,-74.81971519,39.47207406,136 E SEAVIEW AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_33_12.02,-74.64214771,39.56557325,1803 FRANKLIN BLVD,LINWOOD CITY,17,1965,1,RES1,3001 -0114_33_13,-74.630966,39.5342325,101 EAST DR,LINWOOD CITY,17,1949,1,RES1,3001 -0114_33_14,-74.6378245,39.517322,1803 DEVON AVE,LINWOOD CITY,17,1978,1,GOV1,3004 -0114_33_15,-74.60731396,39.59263993,1801 DEVON AVE,LINWOOD CITY,17,1987,1,RES3A,3001 -0114_33_16,-74.66229276,39.63367076,27 EAST DR,LINWOOD CITY,16,1927,1,RES1,3001 -0114_33_17,-74.794824,39.674832,15 EAST DR,LINWOOD CITY,17,1952,1,RES1,3001 -0114_33_18,-74.80833269,39.64865264,13 EAST DR,LINWOOD CITY,17,2003,1,GOV1,3004 -0114_33_19,-74.7978845,39.672274,7 EAST DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_33_2,-74.81265215,39.64165603,1828 SHORE ROAD,LINWOOD CITY,17,1877,1,RES1,3001 -0114_33_20,-74.5224925,39.3169195,5 EAST DR,LINWOOD CITY,16,1965,1,RES1,3001 -0114_33_21,-74.766397,39.6067325,3 EAST DR,LINWOOD CITY,16,1958,1,RES1,3001 -0114_33_22,-74.87856621,39.59119831,1804 SHORE ROAD,LINWOOD CITY,17,1880,1,RES1,3001 -0114_33_3,-74.77620799,39.59348581,1812 SHORE ROAD,LINWOOD CITY,16,1890,1,GOV1,3004 -0114_33_4,-74.6336635,39.533838,16 E SEAVIEW AVE,LINWOOD CITY,16,1922,2,RES1,3001 -0114_33_6,-74.64829316,39.52958585,100 E SEAVIEW AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_33_8,-74.64706716,39.51842353,110 E SEAVIEW AVE,LINWOOD CITY,16,1923,1,COM1,3004 -0114_33_9,-74.57866049,39.53367967,114 E SEAVIEW AVE,LINWOOD CITY,16,1922,1,RES1,3001 -0114_34_1,-74.8102315,39.6334965,2 EAST DR,LINWOOD CITY,17,1957,1,RES1,3001 -0114_34_3,-74.92715465,39.50689305,1730 SHORE ROAD,LINWOOD CITY,16,1890,1,RES1,3001 -0114_34_4,-74.9193508,39.56559147,1720 SHORE ROAD,LINWOOD CITY,16,1954,1,RES1,3001 -0114_34_5,-74.92811654,39.50955635,1711 WOODE-LYNNE BLVD,LINWOOD CITY,16,1959,1,GOV1,3004 -0114_34_6,-74.83406539,39.6273841,1715 WOODE-LYNNE BLVD,LINWOOD CITY,16,1959,1,RES1,3001 -0114_34_7,-74.81748615,39.61725818,6 EAST DR,LINWOOD CITY,16,1959,1,RES1,3001 -0114_35_1,-74.765027,39.637857,12 EAST DR,LINWOOD CITY,16,1957,1,RES1,3001 -0114_35_2,-74.81163572,39.62632118,1720 WOODE-LYNNE BLVD,LINWOOD CITY,17,1959,1,RES1,3001 -0114_35_3,-74.88325791,39.48568133,1714 WOODE-LYNNE BLVD,LINWOOD CITY,17,1959,1,RES1,3001 -0114_35_4,-74.8010655,39.631275,1709 DIANNE CT,LINWOOD CITY,17,1960,1,RES1,3001 -0114_35_5,-74.88056824,39.59554265,1717 DIANNE CT,LINWOOD CITY,17,1960,1,RES1,3001 -0114_35_6,-74.6272835,39.4152885,16 EAST DR,LINWOOD CITY,17,1957,1,RES1,3001 -0114_36_1,-74.82012569,39.64245493,18 EAST DR,LINWOOD CITY,17,1968,1,RES1,3001 -0114_36_2,-74.7858775,39.59321,1720 DIANNE CT,LINWOOD CITY,17,1960,1,RES1,3001 -0114_36_3,-74.8055777,39.62240582,1714 DIANNE CT,LINWOOD CITY,17,1963,1,RES1,3001 -0114_36_4,-74.78281928,39.63684687,1711 DEVON CT,LINWOOD CITY,17,1960,1,RES1,3001 -0114_36_5,-74.44128734,39.36630066,1717 DEVON AVE,LINWOOD CITY,17,1971,1,RES1,3001 -0114_36_6,-74.80060684,39.64491596,20 EAST DR,LINWOOD CITY,16,1955,1,GOV1,3004 -0114_37_1,-74.6482945,39.6248735,1799 FRANKLIN BLVD,LINWOOD CITY,18,1980,1,GOV1,3004 -0114_37_2,-74.80036232,39.64424454,1720 DEVON AVE,LINWOOD CITY,17,1959,1,RES1,3001 -0114_37_3,-74.88211412,39.56741138,1717 FRANKLIN BLVD,LINWOOD CITY,18,1965,1,RES1,3001 -0114_37_4,-74.53035022,39.30910425,1714 DEVON AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_37_5,-74.4173705,39.3661695,1711 FRANKLIN BLVD,LINWOOD CITY,16,1959,1,RES1,3001 -0114_39_1,-74.9532245,39.5121705,1704 WOODE-LYNNE BLVD,LINWOOD CITY,18,1995,1,RES1,3001 -0114_39_10,-74.82938985,39.63784695,1701 FRANKLIN BLVD,LINWOOD CITY,17,1962,1,RES1,3001 -0114_39_2,-74.79163716,39.64193052,1700 WOODE-LYNNE BLVD,LINWOOD CITY,16,1960,1,RES1,3001 -0114_39_3,-74.9257105,39.5102955,104 E MEADOWVIEW AVE,LINWOOD CITY,17,1961,1,RES1,3001 -0114_39_4,-74.90751541,39.47984576,108 E MEADOWVIEW AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_39_5.01,-74.93204812,39.52195974,105 E HEMLOCK DR,LINWOOD CITY,17,1970,1,RES1,3001 -0114_39_5.02,-74.9412905,39.5196395,111 HEMLOCK DR,LINWOOD CITY,17,1981,1,RES1,3001 -0114_39_6,-74.8152155,39.63518,112 E MEADOWVIEW AVE,LINWOOD CITY,17,1970,1,RES1,3001 -0114_39_7,-74.9464685,39.4950875,117 E HEMLOCK DR,LINWOOD CITY,17,1960,1,RES1,3001 -0114_39_8,-74.8161055,39.625707,116 E MEADOWVIEW AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_39_9,-74.87406026,39.59778108,1705 FRANKLIN BLVD,LINWOOD CITY,17,1950,1,GOV1,3004 -0114_4_1,-74.5313685,39.3824505,2306 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_4_10,-74.5379682,39.3736119,2323 GRAMMERCY AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_4_11,-74.604232,39.387179,2321 GRAMMERCY AVE,LINWOOD CITY,16,1965,1,GOV1,3004 -0114_4_12,-74.61451102,39.41010261,2319 GRAMMERCY AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_4_13,-74.64121523,39.3876484,2317 GRAMMERCY AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_4_14,-74.6196102,39.42494554,301 W FRANCES AVE,LINWOOD CITY,16,1964,1,GOV1,3004 -0114_4_15,-74.64769609,39.43072531,303 W FRANCES AVE,LINWOOD CITY,16,1965,1,GOV1,3004 -0114_4_16,-74.54076,39.465961,307 W FRANCES AVE,LINWOOD CITY,17,1965,1,GOV1,3004 -0114_4_17,-74.85354086,39.56152155,311 W FRANCES AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_4_18,-74.78469536,39.60681596,313 W FRANCES AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_4_19,-74.8795885,39.5941855,315 W FRANCES AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_4_2,-74.53836301,39.38295117,440 W OCEAN HEIGHTS AVE,LINWOOD CITY,16,1964,1,GOV1,3004 -0114_4_20,-74.94799792,39.49417502,2200 NEW ROAD,LINWOOD CITY,17,1963,2,RES1,3001 -0114_4_5,-74.5321405,39.45563459,412 W OCEAN HEIGHTS AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_4_6,-74.62422533,39.43315478,404 W OCEAN HEIGHTS AVE,LINWOOD CITY,16,1910,1,RES1,3001 -0114_4_7,-74.6275131,39.43578006,400 W OCEAN HEIGHTS AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_40_10,-74.8158925,39.646414,108 E HEMLOCK DR,LINWOOD CITY,17,1960,1,RES1,3001 -0114_40_11,-74.79902632,39.6428905,112 E HEMLOCK DR,LINWOOD CITY,16,1972,1,RES1,3001 -0114_40_12,-74.94369991,39.54530877,116 E HEMLOCK DR,LINWOOD CITY,18,1965,1,RES1,3001 -0114_40_13,-74.93662044,39.52422681,1637 FRANKLIN BLVD,LINWOOD CITY,18,1970,1,RES1,3004 -0114_40_14,-74.4432535,39.354679,112 HOLLY LANE,LINWOOD CITY,16,1988,1,RES1,3001 -0114_40_15,-74.52202032,39.31722051,110 HOLLY LANE,LINWOOD CITY,18,1989,1,RES1,3001 -0114_40_16,-74.49516648,39.33418317,108 HOLLY LANE,LINWOOD CITY,18,1988,1,RES1,3001 -0114_40_17,-74.50186053,39.33207838,104 HOLLY LANE,LINWOOD CITY,17,1988,1,GOV1,3004 -0114_40_18,-74.50287637,39.32866076,1610 WOODE-LYNNE BLVD,LINWOOD CITY,16,1957,1,RES1,3001 -0114_40_19,-74.569861,39.4145385,101 E PATCONG AVENUE,LINWOOD CITY,16,2010,1,RES1,3001 -0114_40_20,-74.5181035,39.322833,107 E PATCONG AVE,LINWOOD CITY,18,1965,1,RES1,3001 -0114_40_21,-74.503253,39.33057183,109 E PATCONG AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_40_22,-74.48968122,39.33172692,111 E PATCONG AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_40_23,-74.5213375,39.321209,112 E PATCONG AVE,LINWOOD CITY,17,1957,1,RES1,3001 -0114_40_24,-74.56678497,39.41859882,110 E PATCONG AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_40_25,-74.564704,39.4119495,108 E PATCONG AVE,LINWOOD CITY,17,1956,1,RES1,3001 -0114_40_26,-74.584649,39.406852,106 E PATCONG AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_40_27,-74.51224792,39.32981884,1550 WOODE-LYNNE BLVD,LINWOOD CITY,17,1957,1,RES1,3001 -0114_40_28,-74.47521433,39.34135107,1538 WOODE-LYNNE BLVD,LINWOOD CITY,17,1958,1,RES1,3001 -0114_40_29,-74.4820581,39.34791626,1536 WOODE-LYNNE BLVD,LINWOOD CITY,17,1958,1,RES1,3001 -0114_40_30,-74.46483832,39.35423311,1534 WOODE-LYNNE BLVD,LINWOOD CITY,16,1957,1,RES1,3001 -0114_40_31,-74.50465967,39.33777699,1530 WOODE-LYNNE BLVD,LINWOOD CITY,16,1957,1,RES1,3001 -0114_40_32,-74.37854486,39.3991522,1528 WOODE-LYNNE BLVD,LINWOOD CITY,17,1958,1,GOV1,3004 -0114_40_33,-74.5055875,39.3364755,105 E CHELTENHAM BLVD,LINWOOD CITY,16,1958,1,RES1,3001 -0114_40_34,-74.4926505,39.3400985,109 E CHELTENHAM BLVD,LINWOOD CITY,16,1956,1,RES1,3001 -0114_40_35,-74.45085317,39.3561065,111 E CHELTENHAM BLVD,LINWOOD CITY,17,1953,1,RES1,3001 -0114_40_36,-74.4861555,39.347455,113 E CHELTENHAM BLVD,LINWOOD CITY,17,1959,1,GOV1,3004 -0114_40_37.01,-74.468929,39.341895,1 HEATHER LANE,LINWOOD CITY,19,1991,1,GOV1,3004 -0114_40_37.02,-74.4722895,39.343557,115 E CHELTENHAM BLVD,LINWOOD CITY,17,1976,1,RES1,3001 -0114_40_37.03,-74.4626795,39.347914,1500 FRANKLIN BLVD,LINWOOD CITY,18,1990,1,RES1,3001 -0114_40_38.01,-74.82280796,39.40598783,1840 FRANKLIN BLVD,LINWOOD CITY,16,1958,1,RES1,3001 -0114_40_38.03,-74.896024,39.482646,1860 FRANKLIN BLVD,LINWOOD CITY,17,1989,1,RES1,3001 -0114_40_39,-74.81403554,39.40536717,210 E SEAVIEW AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_40_4.03,-74.52533884,39.31384801,103 HOLLY LANE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_40_4.04,-74.430601,39.3616395,105 HOLLY LANE,LINWOOD CITY,18,1990,1,RES1,3001 -0114_40_4.05,-74.82712195,39.64149062,107 HOLLY LANE,LINWOOD CITY,18,1988,1,RES1,3001 -0114_40_4.06,-74.80972372,39.64309031,109 HOLLY LANE,LINWOOD CITY,18,1987,1,RES1,3001 -0114_40_4.07,-74.80206766,39.64102942,111 HOLLY LANE,LINWOOD CITY,17,1987,1,RES1,3001 -0114_40_4.08,-74.94265672,39.53211924,201 HOLLY LANE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_40_4.09,-74.89627692,39.53948877,203 HOLLY LANE,LINWOOD CITY,18,1987,1,RES1,3001 -0114_40_42.01,-74.88153211,39.49646455,1812 FRANKLIN BLVD,LINWOOD CITY,17,1979,1,RES1,3001 -0114_40_42.02,-74.71309466,39.47400603,1820 FRANKLIN BLVD,LINWOOD CITY,18,1970,1,GOV1,3004 -0114_40_44,-74.6510245,39.52209,1800 FRANKLIN BLVD,LINWOOD CITY,16,1960,1,RES1,3001 -0114_40_45,-74.63479396,39.51868734,203 EAST DR,LINWOOD CITY,17,1964,1,GOV1,3004 -0114_40_46,-74.87631569,39.49149654,205 EAST DR,LINWOOD CITY,16,1961,1,RES1,3001 -0114_40_47,-74.86519246,39.44903733,207 EAST DR,LINWOOD CITY,17,1964,1,RES1,3001 -0114_40_48,-74.7341305,39.461395,209 EAST DR,LINWOOD CITY,17,1965,1,RES1,3001 -0114_40_51,-74.62056219,39.51046019,212 EAST DRIVE,LINWOOD CITY,16,1983,1,RES1,3001 -0114_40_52,-74.62641271,39.52956619,208 EAST DR,LINWOOD CITY,17,1964,1,RES1,3001 -0114_40_53,-74.69429204,39.50480662,206 EAST DR,LINWOOD CITY,17,1963,1,RES1,3001 -0114_40_54,-74.5761145,39.523712,204 EAST DR,LINWOOD CITY,16,1961,1,RES1,3002 -0114_40_55,-74.6516355,39.511413,200 EAST DR,LINWOOD CITY,16,1962,1,RES1,3001 -0114_40_56,-74.66643232,39.50943766,1712 FRANKLIN BLVD,LINWOOD CITY,17,1968,1,GOV1,3004 -0114_40_57,-74.639461,39.531082,201 E HELENA DR,LINWOOD CITY,16,1972,1,RES1,3001 -0114_40_58,-74.62086804,39.51222999,203 E HELENA DR,LINWOOD CITY,17,1974,1,RES1,3001 -0114_40_59,-74.6469106,39.55029735,205 E HELENA DRIVE,LINWOOD CITY,17,1978,1,COM3,3004 -0114_40_60,-74.65145105,39.52203584,207 E HELENA DR,LINWOOD CITY,16,1976,1,RES1,3001 -0114_40_61,-74.726397,39.586419,1710 FRANKLIN BLVD,LINWOOD CITY,17,1967,1,RES1,3001 -0114_40_62,-74.83110614,39.53402895,202 E HELENA DR,LINWOOD CITY,17,1972,1,RES1,3001 -0114_40_63,-74.6503265,39.5746665,204 E HELENA DR,LINWOOD CITY,17,1972,1,RES1,3001 -0114_40_64,-74.64305534,39.53130397,206 E HELENA DR,LINWOOD CITY,17,1973,1,COM4,3004 -0114_40_65,-74.63593434,39.52176047,208 E HELENA DR,LINWOOD CITY,17,1973,1,RES1,3001 -0114_40_67,-74.64118993,39.6229834,1704 SOMERSET BLVD,LINWOOD CITY,18,2009,1,RES1,3001 -0114_40_68,-74.80336411,39.64136787,1700 SOMERSET BLVD,LINWOOD CITY,18,1974,1,RES1,3001 -0114_40_70.02,-74.771655,39.632897,1634 SOMERSET BLVD,LINWOOD CITY,19,2010,1,RES1,3001 -0114_40_71,-74.9258995,39.525056,200 E HEMLOCK DR,LINWOOD CITY,16,1955,1,RES1,3001 -0114_40_72,-74.857198,39.6237455,204 E HEMLOCK DR,LINWOOD CITY,17,1961,1,RES1,3001 -0114_40_73,-74.798433,39.636314,208 E HEMLOCK DR,LINWOOD CITY,18,1973,1,GOV1,3004 -0114_40_74,-74.813315,39.63084433,212 HEMLOCK DRIVE,LINWOOD CITY,18,1979,1,RES1,3001 -0114_40_75.01,-74.5232385,39.31491,201 E PATCONG AVENUE,LINWOOD CITY,17,1998,1,RES1,3001 -0114_40_75.02,-74.81797197,39.65147118,200 HOLLY LANE,LINWOOD CITY,18,1996,1,RES1,3001 -0114_40_75.04,-74.802935,39.656314,204 HOLLY LANE,LINWOOD CITY,19,1998,1,RES1,3001 -0114_40_76.01,-74.5196955,39.3230945,200 E PATCONG AVENUE,LINWOOD CITY,18,2003,1,RES1,3001 -0114_40_76.02,-74.524611,39.3171355,206 E PATCONG AVENUE,LINWOOD CITY,18,2006,1,RES1,3001 -0114_40_76.03,-74.42549175,39.35857615,208 E PATCONG AVENUE,LINWOOD CITY,20,2001,1,RES1,3001 -0114_40_76.05,-74.5082865,39.322378,204 E PATCONG AVENUE,LINWOOD CITY,19,2003,1,RES1,3001 -0114_40_77.01,-74.5800875,39.416676,117 CHELTENHAM BLVD,LINWOOD CITY,18,1981,1,RES1,3001 -0114_40_77.02,-74.57496657,39.42628535,201 CHELTENHAM BLVD,LINWOOD CITY,17,1953,1,RES1,3001 -0114_40_77.03,-74.5716985,39.4207815,119 CHELTENHAM AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_40_77.06,-74.51543783,39.32005403,203 CHELTENHAM BLVD,LINWOOD CITY,20,1990,1,RES4,3001 -0114_40_9,-74.79500076,39.67495078,100 E HEMLOCK DR,LINWOOD CITY,16,1960,1,RES1,3001 -0114_41_1,-74.6071388,39.41583141,432 W HAMILTON AVE,LINWOOD CITY,17,1959,1,RES1,3001 -0114_41_2,-74.51566114,39.40272714,420 W HAMILTON AVE,LINWOOD CITY,17,1970,1,RES1,3001 -0114_41_3,-74.5069235,39.4070905,414 W HAMILTON AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_41_4,-74.52940303,39.39523832,410 W HAMILTON AVE,LINWOOD CITY,16,1924,1,RES1,3001 -0114_41_5,-74.510314,39.4008735,402 W HAMILTON AVE,LINWOOD CITY,16,1945,1,RES1,3001 -0114_41_6,-74.58599295,39.42748031,1600 NEW ROAD,LINWOOD CITY,16,1953,1,RES1,3001 -0114_41_7,-74.53200819,39.44901342,405 W PATCONG AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_41_8,-74.62423256,39.42029729,403 W PATCONG AVE,LINWOOD CITY,15,1966,1,RES1,3001 -0114_41_9,-74.60807393,39.4186477,401 W PATCONG AVE,LINWOOD CITY,16,1922,1,GOV1,3004 -0114_42_1,-74.53527775,39.3918227,314 W HAMILTON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_42_10,-74.52541042,39.38318368,1607 GRANT AVE,LINWOOD CITY,16,1961,1,COM10,3003 -0114_42_11,-74.536305,39.387674,1603 GRANT AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_42_12,-74.52035256,39.38719182,301 W PATCONG AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_42_2,-74.5191875,39.3890005,1606 ADAMS AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_42_3,-74.52919,39.3978845,1602 ADAMS AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_42_4,-74.4983225,39.412698,315 W PATCONG AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_42_5,-74.53856384,39.38552852,308 W HAMILTON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_42_6,-74.48485101,39.43550683,309 W PATCONG AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_42_7,-74.5687575,39.369522,304 W HAMILTON AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_42_8,-74.5180585,39.39475833,305 W PATCONG AVE,LINWOOD CITY,16,1960,1,GOV1,3004 -0114_42_9,-74.37760336,39.41636889,300 W HAMILTON AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_43_1,-74.38301526,39.41653053,1608 GRANT AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_43_10,-74.519897,39.383885,235 W PATCONG AVE,LINWOOD CITY,17,1962,1,GOV1,3004 -0114_43_12,-74.4486625,39.3740575,217 W PATCONG AVE,LINWOOD CITY,18,2006,1,RES1,3001 -0114_43_13,-74.36876867,39.41336096,215 W PATCONG AVE,LINWOOD CITY,17,2003,1,RES1,3001 -0114_43_15,-74.42083405,39.37098719,1609 WEST AVE,LINWOOD CITY,16,1931,1,RES1,3001 -0114_43_16,-74.36029412,39.41558435,1605 WEST AVE,LINWOOD CITY,16,1931,1,RES1,3001 -0114_43_17,-74.362169,39.4135875,201 W PATCONG AVE,LINWOOD CITY,15,1960,1,RES1,3001 -0114_43_3,-74.360023,39.4130735,214 W HAMILTON AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_43_4,-74.36949178,39.40227316,210 HAMILTON AVE,LINWOOD CITY,16,1936,1,RES1,3001 -0114_43_5,-74.408245,39.378456,206 W HAMILTON AVE,LINWOOD CITY,16,1935,1,RES1,3001 -0114_43_6,-74.3827395,39.397968,1617 WEST AVE,LINWOOD CITY,16,1920,1,COM1,3004 -0114_43_7,-74.40897968,39.38062599,1613 WEST AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_43_8,-74.5406785,39.3855905,239 W PATCONG AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_43_9,-74.57063651,39.37113266,237 W PATCONG AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_45_1,-74.4915605,39.474246,SCHOOLHOUSE & BELHAVEN,LINWOOD CITY,17,1986,1,RES1,3001 -0114_45_10,-74.50713159,39.43469285,219 W BELHAVEN AVE,LINWOOD CITY,17,1972,1,RES1,3001 -0114_45_11,-74.48920883,39.42269591,217 W BELHAVEN AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_45_12,-74.62106369,39.37109452,211 W BELHAVEN AVE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_45_13.01,-74.58087,39.446452,334 W PATCONG AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_45_13.02,-74.64806383,39.429886,320 W PATCONG AVE,LINWOOD CITY,16,1980,1,RES1,3001 -0114_45_14,-74.58827734,39.42743751,209 W BELHAVEN AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_45_15,-74.624862,39.4202425,306 W PATCONG AVE,LINWOOD CITY,16,1972,1,RES1,3001 -0114_45_16,-74.597593,39.4159645,302 W PATCONG AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_45_17,-74.5132965,39.405546,300 W PATCONG AVE,LINWOOD CITY,16,1967,1,GOV1,3004 -0114_45_18,-74.53804209,39.46619478,207 W BELHAVEN AVE,LINWOOD CITY,17,1972,1,RES1,3001 -0114_45_19,-74.6331056,39.4296263,205 W BELHAVEN AVE,LINWOOD CITY,17,1971,1,RES1,3001 -0114_45_2,-74.45435532,39.49087612,223 W BELHAVEN AVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_45_20,-74.50901379,39.40792212,240 W PATCONG AVE,LINWOOD CITY,16,1949,1,RES1,3001 -0114_45_21,-74.51642731,39.39634091,234 W PATCONG AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_45_22,-74.52847495,39.38841718,230 W PATCONG AVE,LINWOOD CITY,17,1996,1,RES1,3001 -0114_45_23,-74.54561,39.39035,222 W PATCONG AVE,LINWOOD CITY,16,1922,1,RES1,3001 -0114_45_24,-74.5726223,39.36944745,210 W PATCONG AVE,LINWOOD CITY,16,1922,1,RES1,3001 -0114_45_25,-74.52659051,39.38293433,1529 WABASH AVENUE,LINWOOD CITY,17,2005,1,RES1,3001 -0114_45_27,-74.64889111,39.43180827,203 W BELHAVEN AVE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_45_3,-74.48974377,39.45442224,1400 NEW ROAD,LINWOOD CITY,16,1987,1,RES1,3001 -0114_45_30,-74.48964818,39.41906557,103 W BELHAVEN AVE,LINWOOD CITY,17,1970,1,RES1,3001 -0114_45_31,-74.635903,39.3840485,1427 GRANT AVE,LINWOOD CITY,17,1992,1,RES1,3001 -0114_45_32,-74.50420065,39.42910004,1421 GRANT AVE,LINWOOD CITY,17,1970,1,RES1,3001 -0114_45_33,-74.5191475,39.4457945,207 W SCHOOLHOUSE DR,LINWOOD CITY,16,1968,1,GOV1,3004 -0114_45_34.01,-74.48929667,39.44010612,205 W SCHOOLHOUSE DR,LINWOOD CITY,18,1999,1,RES1,3001 -0114_45_34.02,-74.61832716,39.43382974,112 W BELHAVEN AVE,LINWOOD CITY,18,1988,1,RES1,3001 -0114_45_35,-74.65570617,39.433761,110 W BELHAVEN AVE,LINWOOD CITY,17,1972,1,RES1,3001 -0114_45_36,-74.6422825,39.402726,100 W BELHAVEN AVE,LINWOOD CITY,17,1970,1,RES1,3001 -0114_45_37,-74.66299779,39.40094198,102 W MORRIS AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_45_38,-74.5031915,39.4340315,203 W SCHOOLHOUSE DR,LINWOOD CITY,17,1965,1,RES1,3001 -0114_45_39,-74.589936,39.428912,100 W MORRIS AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_45_40,-74.51123889,39.41809341,201 W SCHOOLHOUSE DR,LINWOOD CITY,18,1973,1,RES1,3001 -0114_45_5,-74.52837515,39.41947296,414 W PATCONG AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_45_6,-74.49279522,39.4345369,412 W PATCONG AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_45_7,-74.51047516,39.40247609,410 W PATCONG AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_45_8,-74.62212206,39.37468457,400 W PATCONG AVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_45_9,-74.487438,39.4529485,221 W BELHAVEN AVE,LINWOOD CITY,17,1974,1,RES1,3001 -0114_46_1,-74.47923427,39.47785147,222 W BELHAVEN AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_46_10,-74.50798867,39.46160007,217 W MORRIS AVE,LINWOOD CITY,18,1987,1,RES1,3001 -0114_46_11,-74.49574923,39.44689404,215 W MORRIS AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_46_12,-74.48130344,39.43872166,213 MORRIS AVE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_46_13,-74.490046,39.4307435,211 MORRIS AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_46_14,-74.62279318,39.40543777,201 W MORRIS AVE,LINWOOD CITY,17,1970,1,GOV1,3004 -0114_46_2,-74.506141,39.453408,220 W BELHAVEN AVE,LINWOOD CITY,17,1970,1,RES1,3001 -0114_46_3,-74.518714,39.441981,218 W BELHAVEN AVE,LINWOOD CITY,17,1971,1,RES1,3001 -0114_46_4,-74.47913834,39.43944201,216 W BELHAVEN AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_46_5,-74.49351236,39.43193472,214 W BELHAVEN AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_46_6,-74.67281231,39.37700407,204 W BELHAVEN AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_46_7,-74.601932,39.4346195,200 W BELHAVEN AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_46_8,-74.45066753,39.49269668,301 W SCHOOLHOUSE DR,LINWOOD CITY,17,1966,1,RES1,3001 -0114_46_9,-74.52246482,39.46350202,219 W MORRIS AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_47_1,-74.63399068,39.36417951,219 W SCHOOLHOUSE DR,LINWOOD CITY,17,1971,1,RES1,3001 -0114_47_10,-74.52574795,39.46416616,209 W SCHOOLHOUSE DR,LINWOOD CITY,16,1965,1,RES1,3001 -0114_47_2,-74.63643678,39.36160904,217 W SCHOOLHOUSE DR,LINWOOD CITY,17,1966,1,RES1,3001 -0114_47_3,-74.44822208,39.49308475,214 W MORRIS AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_47_4,-74.5120079,39.46456314,212 W MORRIS AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_47_5,-74.49348126,39.45503894,206 W MORRIS AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_47_6,-74.48886157,39.45156111,200 W MORRIS AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_47_7,-74.63840263,39.36194565,215 W SCHOOLHOUSE DR,LINWOOD CITY,17,1965,1,RES1,3001 -0114_47_8,-74.4715315,39.4892085,213 W SCHOOLHOUSE DR,LINWOOD CITY,17,1965,1,RES1,3001 -0114_47_9,-74.45076779,39.48945985,211 W SCHOOLHOUSE DR,LINWOOD CITY,17,1967,1,RES1,3001 -0114_48_1,-74.54575086,39.39985723,260 SCHOOLHOUSE DR,LINWOOD CITY,18,1991,1,RES1,3001 -0114_48_10,-74.64488829,39.37911104,3 DARTMOUTH LANE,LINWOOD CITY,17,1974,1,RES1,3001 -0114_48_11,-74.5981852,39.43164257,214 W SCHOOLHOUSE DR,LINWOOD CITY,17,1968,1,RES1,3001 -0114_48_12,-74.53658326,39.39136475,1 YALE LANE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_48_14,-74.55906394,39.37208109,2 YALE LANE,LINWOOD CITY,18,1974,1,RES1,3001 -0114_48_15,-74.68279733,39.35552692,210 W SCHOOLHOUSE DR,LINWOOD CITY,18,1971,1,RES1,3001 -0114_48_16,-74.55622555,39.3866587,206 W SCHOOLHOUSE DR,LINWOOD CITY,18,1974,1,RES1,3001 -0114_48_17,-74.6469955,39.3570925,208 W SCHOOLHOUSE DR,LINWOOD CITY,16,1966,1,RES1,3001 -0114_48_19,-74.45173747,39.49307649,204 W SCHOOLHOUSE DR,LINWOOD CITY,18,1970,1,RES1,3001 -0114_48_2,-74.62282319,39.37753253,250 W SCHOOLHOUSE DR,LINWOOD CITY,17,1974,1,RES1,3001 -0114_48_20,-74.61772153,39.43315947,1 HARVARD LANE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_48_22,-74.635565,39.3660155,4 HARVARD LANE,LINWOOD CITY,17,1977,1,RES1,3001 -0114_48_23,-74.4960955,39.472001,200 W SCHOOLHOUSE DR,LINWOOD CITY,17,2010,1,RES1,3001 -0114_48_24,-74.66757301,39.46190266,1301 OAK AVENUE,LINWOOD CITY,,0,1,RES1,3001 -0114_48_25,-74.60647108,39.43791329,1217 OAK AVE,LINWOOD CITY,17,1800,1,RES1,3001 -0114_48_26,-74.481768,39.340601,1129 OAK AVE,LINWOOD CITY,15,1930,1,RES1,3001 -0114_48_3,-74.6059185,39.42527242,220 W SCHOOLHOUSE DR,LINWOOD CITY,16,1970,1,RES1,3001 -0114_48_4,-74.62140561,39.38768475,6 PRINCETON LANE,LINWOOD CITY,18,1973,1,RES1,3001 -0114_48_6,-74.62939234,39.40879602,4 PRINCETON LANE,LINWOOD CITY,18,1967,1,RES1,3001 -0114_48_7,-74.61332016,39.42829835,2 PRINCETON LANE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_48_8,-74.61766432,39.43263108,216 W SCHOOLHOUSE DR,LINWOOD CITY,17,1967,1,GOV1,3004 -0114_48_9,-74.64875515,39.38574058,9 DARTMOUTH LANE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_5_1,-74.78740166,39.66043938,314 W FRANCES AVE,LINWOOD CITY,17,1963,1,RES1,3001 -0114_5_10,-74.95132321,39.52130764,307 W KIRKLIN AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_5_11,-74.69216392,39.65180886,309 W KIRKLIN AVE,LINWOOD CITY,17,1961,1,RES1,3001 -0114_5_12,-74.79244832,39.64819429,311 W KIRKLIN AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_5_13,-74.55877568,39.47423878,313 W KIRKLIN AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_5_14,-74.55161399,39.49092134,315 W KIRKLIN AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_5_2,-74.885768,39.5589515,310 W FRANCES AVE,LINWOOD CITY,17,1963,1,RES1,3001 -0114_5_3,-74.9346635,39.4812725,308 W FRANCES AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_5_4,-74.87539003,39.5955163,306 W FRANCES AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_5_5,-74.7859225,39.6132515,304 W FRANCES AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_5_6,-74.8257275,39.5671175,300 W FRANCES AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_5_7,-74.84566006,39.58680328,301 W KIRKLIN AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_5_8,-74.924934,39.481765,303 W KIRKLIN AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_5_9,-74.93558127,39.51166054,305 W KIRKLIN AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_500_8,-74.3664025,39.4127325,WABASH & MAPLE AVES,LINWOOD CITY,,0,1,RES1,3001 -0114_51_1,-74.49183771,39.33267821,1220 OAK AVE,LINWOOD CITY,15,1930,1,RES1,3001 -0114_51_11,-74.49308952,39.33144217,1219 WABASH AVE,LINWOOD CITY,17,1961,1,RES1,3001 -0114_51_2,-74.50390233,39.32458504,218 W ESSEX AVE,LINWOOD CITY,16,1938,1,RES1,3001 -0114_51_3,-74.5406885,39.457683,216 W ESSEX AVE,LINWOOD CITY,16,1935,1,RES1,3001 -0114_51_4,-74.57173949,39.44839983,214 W ESSEX AVE,LINWOOD CITY,16,1940,1,RES1,3001 -0114_51_5,-74.66363134,39.4174136,1221 WABASH AVE,LINWOOD CITY,45,1966,2,RES1,3001 -0114_51_6,-74.50305164,39.33337915,1206 OAK AVE,LINWOOD CITY,16,1950,1,GOV1,3004 -0114_51_7,-74.4692456,39.34539218,1204 OAK AVE,LINWOOD CITY,16,1936,1,RES1,3001 -0114_51_8,-74.4435305,39.358642,1200 OAK AVE,LINWOOD CITY,16,1978,1,RES1,3001 -0114_51_9,-74.48335309,39.34948882,223 W TABOR AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_52_1,-74.52471538,39.38638015,1500 WABASH AVENUE,LINWOOD CITY,,0,1,RES1,3001 -0114_52_10,-74.36277398,39.40758648,1515 SHORE ROAD,LINWOOD CITY,18,1905,1,RES1,3001 -0114_52_11,-74.37236295,39.41105417,1511 SHORE ROAD,LINWOOD CITY,16,1827,1,RES1,3001 -0114_52_6,-74.49357322,39.33876286,1545 SHORE ROAD,LINWOOD CITY,16,1917,1,RES1,3001 -0114_52_7,-74.38914887,39.39397987,1525 SHORE ROAD,LINWOOD CITY,17,1910,2,RES1,3001 -0114_52_9,-74.44506931,39.3742824,15 W BELHAVEN AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_53_1,-74.48442423,39.33875068,1550 SHORE ROAD,LINWOOD CITY,17,1960,1,RES1,3001 -0114_53_10,-74.37944192,39.40137575,1536 SHORE ROAD,LINWOOD CITY,16,1951,1,IND1,3004 -0114_53_11,-74.405493,39.3829,1532 SHORE ROAD,LINWOOD CITY,16,1875,1,RES1,3001 -0114_53_12,-74.3725505,39.4168435,1526 SHORE ROAD,LINWOOD CITY,17,1880,1,RES1,3001 -0114_53_13,-74.424988,39.374922,1525 WOODE-LYNNE BLVD,LINWOOD CITY,16,1950,1,RES1,3001 -0114_53_14,-74.36695601,39.41048727,99 E CHELTENHAM BLVD,LINWOOD CITY,16,1958,1,COM4,3004 -0114_53_15,-74.35652617,39.4142085,95 E CHELTENHAM AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_53_17,-74.44685891,39.3706422,93 CHELTENHAM AVE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_53_2,-74.46067357,39.34731779,6 E PATCONG AVE,LINWOOD CITY,17,1954,1,RES1,3001 -0114_53_3,-74.46172204,39.34565285,10 E PATCONG AVE,LINWOOD CITY,15,1954,1,RES1,3001 -0114_53_4,-74.46788503,39.34360528,14 E PATCONG AVE,LINWOOD CITY,17,1957,1,RES1,3001 -0114_53_5,-74.48545951,39.35023043,1551 WOODE-LYNNE BLVD,LINWOOD CITY,16,1960,1,RES1,3001 -0114_53_6,-74.46131792,39.35695783,1548 SHORE ROAD,LINWOOD CITY,17,1968,1,RES1,3001 -0114_53_7,-74.50934271,39.33799937,1544 SHORE ROAD,LINWOOD CITY,16,1900,1,RES1,3001 -0114_53_8,-74.4622355,39.3586595,1543 WOODE-LYNNE BLVD,LINWOOD CITY,17,1955,1,RES1,3001 -0114_53_9,-74.50999307,39.34036599,1533 WOODE-LYNNE BLVD,LINWOOD CITY,16,1959,1,RES1,3001 -0114_54_1,-74.53149615,39.45420105,1410 WABASH AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_56_1.01,-74.52570733,39.39537738,32 W BELHAVEN AVE,LINWOOD CITY,16,1929,1,RES3A,3001 -0114_56_1.02,-74.49846787,39.41696817,34 W BELHAVEN AVE,LINWOOD CITY,16,1985,1,RES1,3001 -0114_56_2,-74.52956679,39.3874526,30 W BELHAVEN AVE,LINWOOD CITY,17,1961,1,COM1,3004 -0114_56_3,-74.5173,39.393462,26 W BELHAVEN AVE,LINWOOD CITY,16,1907,1,COM1,3004 -0114_56_4.01,-74.53869636,39.38853118,24 W BELHAVEN AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_56_4.02,-74.523325,39.38419633,1451 SHORE ROAD,LINWOOD CITY,16,1919,1,RES1,3001 -0114_56_5,-74.5191985,39.3902555,1445 SHORE ROAD,LINWOOD CITY,14,1922,1,RES1,3001 -0114_56_6,-74.5109235,39.39916,1 W MORRIS AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_56_7.01,-74.48310212,39.43458031,5 W MORRIS AVE,LINWOOD CITY,17,1986,1,RES1,3001 -0114_56_7.02,-74.51460694,39.41040569,7 W MORRIS AVE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_56_8,-74.60928968,39.40711909,15 W MORRIS AVE,LINWOOD CITY,16,1963,1,RES3A,3001 -0114_56_9,-74.63060755,39.42274431,17 W MORRIS AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_57_1,-74.61860137,39.43379329,1402 OAK AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_57_10,-74.54649407,39.46909828,13 SOMERS AVE,LINWOOD CITY,16,1989,1,RES1,3001 -0114_57_11,-74.591683,39.434164,15 SOMERS AVE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_57_12,-74.62323178,39.38189765,19 SOMERS AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_57_13,-74.48896572,39.42221919,21 SOMERS AVE,LINWOOD CITY,14,1952,1,RES1,3001 -0114_57_14,-74.50566024,39.43663839,1400 OAK AVE,LINWOOD CITY,17,2007,1,GOV1,3004 -0114_57_2,-74.610654,39.4161565,16 W MORRIS AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_57_3,-74.53827622,39.46157656,14 W MORRIS AVE,LINWOOD CITY,16,1958,1,GOV1,3004 -0114_57_4,-74.62476894,39.4204267,12 W MORRIS AVE,LINWOOD CITY,17,1958,1,RES1,3001 -0114_57_5,-74.60311837,39.40804767,2 W MORRIS AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_57_6,-74.50353465,39.4153338,1439 SHORE ROAD,LINWOOD CITY,16,1920,1,RES1,3001 -0114_57_8,-74.50125589,39.41351839,1435 SHORE ROAD,LINWOOD CITY,15,1961,1,RES1,3001 -0114_57_9,-74.62924117,39.42044421,1425 SHORE ROAD,LINWOOD CITY,16,1962,1,RES1,3001 -0114_58_1.01,-74.4510335,39.4963635,28 SOMERS AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_58_1.02,-74.64437522,39.36479438,28 IRELAND AVE,LINWOOD CITY,16,1983,1,RES1,3001 -0114_58_10,-74.59921405,39.4121133,1419 SHORE RD,LINWOOD CITY,15,1895,2,GOV1,3004 -0114_58_11,-74.48886264,39.43154228,1401 SHORE RD,LINWOOD CITY,16,1969,1,RES1,3001 -0114_58_3,-74.52524704,39.45246216,22 SOMERS AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_58_4,-74.4695415,39.4924305,22 IRELAND AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_58_5,-74.52112047,39.46302434,20 IRELAND AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_58_6.01,-74.48156527,39.44401861,14 SOMERS AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_58_6.02,-74.5079765,39.4662025,18 IRELAND AVE,LINWOOD CITY,17,1994,1,RES1,3001 -0114_58_7,-74.51230317,39.439709,12 IRELAND AVE,LINWOOD CITY,17,1990,1,RES1,3001 -0114_58_8,-74.523127,39.402464,10 SOMERS AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_58_9,-74.46447168,39.45625139,10 IRELAND AVE,LINWOOD CITY,18,1993,1,RES1,3001 -0114_59_1.01,-74.64152428,39.37280549,12 WOODSTOCK DR,LINWOOD CITY,17,1984,1,RES1,3001 -0114_59_1.02,-74.536323,39.386703,10 WOODSTOCK DRIVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_59_1.03,-74.561848,39.371755,8 WOODSTOCK DR,LINWOOD CITY,17,1981,1,RES1,3001 -0114_59_1.04,-74.5596055,39.393698,6 WOODSTOCK DR,LINWOOD CITY,17,1989,1,RES1,3001 -0114_59_1.05,-74.6179135,39.4327245,4 WOODSTOCK DRIVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_59_1.06,-74.5969845,39.4359855,2 WOODSTOCK DR,LINWOOD CITY,17,1987,1,RES1,3001 -0114_59_1.07,-74.5455115,39.399425,11 WOODSTOCK DR,LINWOOD CITY,17,1985,1,RES1,3001 -0114_59_1.08,-74.61278258,39.42205934,9 WOODSTOCK DR,LINWOOD CITY,17,1985,1,RES1,3001 -0114_59_1.09,-74.600291,39.4153565,7 WOODSTOCK DRIVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_59_1.10,-74.65115828,39.35504796,5 WOODSTOCK DR,LINWOOD CITY,17,1985,1,RES1,3001 -0114_59_1.11,-74.47180033,39.49175249,3 WOODSTOCK DRIVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_59_10,-74.56868201,39.37064565,29 W DEVONSHIRE AVE,LINWOOD CITY,17,2004,1,RES1,3001 -0114_59_11,-74.54895694,39.39350988,31 W DEVONSHIRE AVE,LINWOOD CITY,16,1940,1,RES1,3001 -0114_59_12,-74.63511744,39.38773626,99 W DEVONSHIRE AVE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_59_13,-74.682154,39.3906585,115 W DEVONSHIRE AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_59_14,-74.6301395,39.418689,117 W DEVONSHIRE AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_59_3,-74.52478923,39.45809581,1333 SHORE ROAD,LINWOOD CITY,16,1948,1,RES1,3001 -0114_59_4,-74.453187,39.48904,1331 SHORE ROAD,LINWOOD CITY,16,1958,1,RES1,3001 -0114_59_5,-74.65187847,39.35246384,1305 SHORE ROAD,LINWOOD CITY,16,1960,1,RES1,3001 -0114_59_6,-74.60120771,39.42521654,1303 SHORE ROAD,LINWOOD CITY,16,1920,1,RES1,3001 -0114_59_7,-74.62341397,39.38244853,17 W DEVONSHIRE AVE,LINWOOD CITY,16,1961,1,RES1,3002 -0114_59_9,-74.56456388,39.37288876,27 W DEVONSHIRE AVE,LINWOOD CITY,15,1930,1,RES1,3001 -0114_6_1,-74.66481833,39.461303,312 W KIRKLIN AVENUE,LINWOOD CITY,,0,1,RES1,3001 -0114_6_10,-74.567695,39.4784485,2100 GRAMMERCY AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_6_11,-74.7926915,39.646539,2102 GRAMMERCY AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_6_12,-74.93936382,39.52016505,214 W KIRKLIN AVE,LINWOOD CITY,16,1959,1,COM4,3004 -0114_6_13,-74.90896801,39.49613304,212 W KIRKLIN AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_6_14,-74.7911213,39.65600582,210 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_6_15,-74.97200107,39.51743717,208 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_6_16,-74.9500432,39.51205075,206 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_6_17,-74.9268265,39.481766,204 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_6_18,-74.86341824,39.5983826,202 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,COM4,3004 -0114_6_19,-74.637851,39.433934,200 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES3A,3001 -0114_6_2,-74.6258875,39.4403735,310 W KIRKLIN AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_6_20,-74.537735,39.4650825,2121 WABASH AVE,LINWOOD CITY,15,1957,1,RES1,3001 -0114_6_21,-74.77843736,39.63133809,2117 WABASH AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_6_22,-74.78631708,39.63672915,2113 WABASH AVE,LINWOOD CITY,15,1900,1,RES1,3001 -0114_6_23,-74.954798,39.517451,2111 WABASH AVE,LINWOOD CITY,15,1900,1,RES1,3001 -0114_6_27,-74.9546046,39.53970375,2109 WABASH AVE,LINWOOD CITY,16,1900,1,COM7,3004 -0114_6_3,-74.60327018,39.48414222,308 W KIRKLIN AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_6_30,-74.79118,39.635774,2015 WABASH AVE,LINWOOD CITY,,0,1,RES1,3001 -0114_6_31,-74.88044853,39.45345289,319 MELODY LANE,LINWOOD CITY,16,1965,2,RES1,3001 -0114_6_32,-74.5576895,39.528713,305 MELODY LANE,LINWOOD CITY,16,1971,1,RES1,3001 -0114_6_33,-74.63545717,39.5246075,315 MELODY LANE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_6_34,-74.643941,39.5309135,313 MELODY LANE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_6_35,-74.64877307,39.54674834,311 MELODY LANE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_6_37,-74.64730417,39.533709,2024 NEW ROAD REAR,LINWOOD CITY,17,1965,1,RES3A,3004 -0114_6_39,-74.829365,39.535398,2018 NEW ROAD (REAR),LINWOOD CITY,17,1957,1,RES1,3001 -0114_6_4,-74.70019051,39.48473933,306 W KIRKLIN AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_6_40,-74.819479,39.6521765,2018 NEW ROAD,LINWOOD CITY,16,1900,1,RES1,3001 -0114_6_41,-74.76522214,39.62647513,499 SARA ANN CT,LINWOOD CITY,16,1964,1,RES1,3001 -0114_6_42,-74.6385885,39.407866,497 SARA ANN CT,LINWOOD CITY,17,1965,1,RES1,3001 -0114_6_43,-74.83308713,39.6444825,495 SARA ANN CT,LINWOOD CITY,17,1965,1,RES1,3001 -0114_6_44,-74.80282901,39.64248067,493 SARA ANN CT,LINWOOD CITY,17,1965,1,COM4,3004 -0114_6_45,-74.8613985,39.566968,491 SARA ANN CT,LINWOOD CITY,16,1967,1,RES1,3001 -0114_6_46,-74.7495095,39.5681125,489 SARA ANN CT,LINWOOD CITY,16,1965,1,RES1,3001 -0114_6_47,-74.64086189,39.40682426,492 SARA ANN CT,LINWOOD CITY,17,1966,1,RES1,3001 -0114_6_48,-74.794902,39.627855,494 SARA ANN CT,LINWOOD CITY,17,1965,1,RES1,3001 -0114_6_49,-74.87642824,39.59723332,496 SARA ANN CT,LINWOOD CITY,17,1966,1,RES1,3001 -0114_6_5,-74.6487225,39.454025,304 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_6_50,-74.80433534,39.63717697,498 SARA ANN CT,LINWOOD CITY,17,1965,1,RES1,3001 -0114_6_51.01,-74.92590733,39.53412952,1928 MARY JANE LANE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_6_51.02,-74.9402935,39.516636,1924 MARY JANE LANE,LINWOOD CITY,16,1978,1,RES1,3001 -0114_6_51.03,-74.81009716,39.63139402,1930 MARY JANE LANE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_6_52.02,-74.784878,39.6407735,1922 WEST AVE,LINWOOD CITY,16,1979,1,COM1,3004 -0114_6_52.03,-74.78932328,39.64411009,231 W SEAVIEW AVE,LINWOOD CITY,17,1920,1,RES1,3001 -0114_6_53,-74.9628725,39.519332,229 W SEAVIEW AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_6_54,-74.95595185,39.5031976,225 W SEAVIEW AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_6_55,-74.81192083,39.6393485,217 W SEAVIEW AVE,LINWOOD CITY,17,1959,1,RES1,3001 -0114_6_57,-74.78557951,39.63645991,207 W SEAVIEW AVE,LINWOOD CITY,17,1960,1,RES1,3001 -0114_6_58,-74.80130205,39.64315316,1903 WABASH AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_6_6,-74.79116579,39.64871021,302 W KIRKLIN AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_6_60,-74.77932532,39.58416223,201 W SEAVIEW AVE,LINWOOD CITY,17,1959,1,RES1,3001 -0114_6_7,-74.88622793,39.59757688,2121 GRAMMERCY AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_6_8,-74.535905,39.489431,2105 GRAMMERCY AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_6_9,-74.62063335,39.43709152,2101 GRAMMERCY AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_60_1,-74.52829116,39.392795,1444 SHORE ROAD,LINWOOD CITY,17,1800,1,RES1,3001 -0114_60_10,-74.60173219,39.43582553,1406 SHORE ROAD,LINWOOD CITY,16,1926,1,RES1,3001 -0114_60_11.01,-74.692653,39.4159395,5 E BERKSHIRE AVE,LINWOOD CITY,16,1968,1,RES3A,3001 -0114_60_11.02,-74.6549615,39.4052145,1401 WOODE-LYNNE BLVD,LINWOOD CITY,17,1968,1,RES1,3001 -0114_60_2,-74.5488935,39.3770975,96 CHELTENHAM BLVD,LINWOOD CITY,18,1995,1,RES1,3001 -0114_60_3,-74.457164,39.373877,1437 WOODE-LYNNE BLVD,LINWOOD CITY,16,1955,1,RES1,3001 -0114_60_4,-74.50736465,39.40581518,1426 SHORE ROAD,LINWOOD CITY,17,1905,1,RES1,3001 -0114_60_5,-74.5168215,39.4010625,1411 WOODE-LYNNE BLVD,LINWOOD CITY,19,2009,1,RES1,3001 -0114_60_6,-74.620904,39.433746,1418 SHORE ROAD,LINWOOD CITY,17,1875,1,RES1,3001 -0114_60_7,-74.48578116,39.43552847,1405 WOODE-LYNNE BLVD,LINWOOD CITY,16,1952,1,RES1,3001 -0114_60_8,-74.50323605,39.41249016,1403 WOODE-LYNNE BLVD,LINWOOD CITY,17,1970,1,RES1,3001 -0114_60_9,-74.538481,39.464456,1410 SHORE ROAD,LINWOOD CITY,17,1910,1,RES1,3001 -0114_61_1.01,-74.498752,39.433961,1330 SHORE ROAD,LINWOOD CITY,17,1880,1,RES1,3001 -0114_61_1.02,-74.51471753,39.40239057,6 E BERKSHIRE AVE,LINWOOD CITY,17,1980,1,RES3A,3001 -0114_61_3,-74.61548839,39.42863579,8 E BERKSHIRE AVE,LINWOOD CITY,18,1992,1,RES1,3001 -0114_61_4,-74.50473332,39.42463598,17 E CAMBRIDGE AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_61_5,-74.58031912,39.4256916,1325 WOODE-LYNNE BLVD,LINWOOD CITY,18,1951,1,RES1,3001 -0114_61_6,-74.683338,39.393123,1315 WOODE-LYNNE BLVD,LINWOOD CITY,18,1949,1,RES1,3001 -0114_62_1,-74.45423248,39.50315888,2 E CAMBRIDGE AVE,LINWOOD CITY,18,1989,1,RES1,3001 -0114_62_2,-74.6434155,39.366425,3 E DEVONSHIRE AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_62_3,-74.52191998,39.45574888,20 E CAMBRIDGE AVE,LINWOOD CITY,18,1974,1,REL1,3004 -0114_62_4,-74.4760445,39.4938805,33 E DEVONSHIRE AVE,LINWOOD CITY,17,1956,1,RES1,3001 -0114_62_5,-74.49076004,39.44722968,24 E CAMBRIDGE AVE,LINWOOD CITY,19,1957,1,RES1,3001 -0114_62_6,-74.51379844,39.46703861,21 E DEVONSHIRE AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_63_1,-74.42179095,39.37377181,105 E BALFOUR AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_63_2.01,-74.39242318,39.3885133,111 E BALFOUR AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_63_2.02,-74.48740636,39.35045532,108 E CHELTENHAM AVE,LINWOOD CITY,18,1997,1,RES1,3001 -0114_63_3,-74.49759275,39.33825733,116 E CHELTENHAM AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_63_4,-74.50085504,39.33720484,115 E BALFOUR AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_63_5,-74.4531194,39.35378458,124 E CHELTENHAM AVE,LINWOOD CITY,17,1961,1,RES1,3001 -0114_63_6,-74.49545303,39.33780535,121 E BALFOUR AVE,LINWOOD CITY,17,1963,1,RES1,3001 -0114_64_1.01,-74.5529405,39.3789675,101 E ARLINGTON AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_64_1.02,-74.3727706,39.42079279,100 E BALFOUR AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_64_3,-74.45217481,39.37566597,103 E ARLINGTON AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_64_5,-74.37339626,39.41627177,105 E ARLINGTON AVE,LINWOOD CITY,17,1952,1,RES1,3001 -0114_64_6,-74.40594844,39.38035106,120 E BALFOUR AVE,LINWOOD CITY,18,2006,1,RES1,3001 -0114_64_7,-74.368216,39.409272,109 E ARLINGTON AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_64_8,-74.3891675,39.3921675,1441 FRANKLIN BLVD,LINWOOD CITY,19,1951,1,RES1,3001 -0114_64_9,-74.40421911,39.38023769,1407 FRANKLIN BLVD,LINWOOD CITY,17,2004,1,RES1,3001 -0114_65_1,-74.51470977,39.40199635,100 E ARLINGTON AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_65_10,-74.3805555,39.4188575,1405 FRANKLIN BLVD,LINWOOD CITY,16,1952,1,RES1,3001 -0114_65_12,-74.54529748,39.37721121,1403 FRANKLIN AVE,LINWOOD CITY,18,1926,1,RES1,3001 -0114_65_2,-74.50119567,39.40942564,101 E BERKSHIRE AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_65_3,-74.550192,39.386889,104 E ARLINGTON AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_65_4,-74.51475693,39.39568318,105 E BERKSHIRE AVE,LINWOOD CITY,17,2009,1,RES1,3001 -0114_65_5,-74.55554321,39.38135321,108 E ARLINGTON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_65_6,-74.52302659,39.39366334,109 E BERKSHIRE AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_65_7,-74.51157931,39.38519795,110 E ARLINGTON AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_65_8,-74.53663802,39.38726183,115 E BERKSHIRE AVE,LINWOOD CITY,17,1953,1,RES1,3001 -0114_66_1,-74.63759023,39.43505842,1324 WOODE-LYNNE BLVD,LINWOOD CITY,18,2009,1,RES1,3001 -0114_66_10,-74.5273725,39.395094,1317 FRANKLIN BLVD,LINWOOD CITY,16,1950,1,RES1,3001 -0114_66_2,-74.60813932,39.44075798,101 E CAMBRIDGE AVE,LINWOOD CITY,17,1959,1,RES1,3001 -0114_66_3,-74.60735856,39.40704631,106 E BERKSHIRE AVE,LINWOOD CITY,17,1927,1,RES1,3001 -0114_66_4,-74.6475615,39.433447,109 S CAMBRIDGE AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_66_5,-74.5000145,39.413221,114 E BERKSHIRE AVE,LINWOOD CITY,19,2016,1,RES1,3001 -0114_66_6,-74.6376485,39.4112735,111 E CAMBRIDGE AVE,LINWOOD CITY,16,1927,1,RES1,3001 -0114_66_7,-74.51820273,39.39519437,118 BERKSHIRE AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_66_8,-74.5130185,39.407365,119 E CAMBRIDGE AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_66_9,-74.530083,39.388996,1323 FRANKLIN BLVD,LINWOOD CITY,16,1954,1,COM4,3004 -0114_67_1,-74.4915375,39.4346245,1300 WOODE-LYNNE BLVD,LINWOOD CITY,17,1954,1,RES1,3001 -0114_67_10,-74.6216205,39.431598,120 E CAMBRIDGE AVE,LINWOOD CITY,18,1975,1,RES1,3001 -0114_67_11.02,-74.55485629,39.46847447,1301 FRANKLIN BLVD,LINWOOD CITY,17,1955,1,RES1,3001 -0114_67_2,-74.489027,39.4415195,101 E DEVONSHIRE AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_67_3,-74.62306611,39.38427918,106 E CAMBRIDGE AVE,LINWOOD CITY,17,1922,1,RES1,3001 -0114_67_4,-74.501812,39.436177,111 E DEVONSHIRE AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_67_5,-74.595262,39.4331525,110 E CAMBRIDGE AVE,LINWOOD CITY,17,1922,1,RES1,3001 -0114_67_7,-74.63871475,39.40058024,117 E DEVONSHIRE AVE,LINWOOD CITY,17,1922,1,RES1,3001 -0114_67_8,-74.5474337,39.46538778,118 E CAMBRIDGE AVE,LINWOOD CITY,18,2000,1,RES1,3001 -0114_67_9,-74.6054195,39.4210715,119 E DEVONSHIRE AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_68_1.01,-74.4668795,39.346914,1450 FRANKLIN BLVD,LINWOOD CITY,18,1957,1,RES1,3001 -0114_68_1.02,-74.462556,39.3491945,210 E BALFOUR AVE,LINWOOD CITY,16,1978,1,RES1,3001 -0114_68_1.03,-74.5803895,39.412411,222 E BALFOUR AVE,LINWOOD CITY,17,1985,1,RES1,3001 -0114_7_1,-74.71173639,39.63801733,215 W KIRKLIN AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_7_10,-74.6193285,39.404443,206 W FRANCES AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_7_11,-74.6435254,39.41189415,205 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_7_12,-74.66277346,39.40188246,204 W FRANCES AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_7_13,-74.62821266,39.4136236,203 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_7_14,-74.63900306,39.40092011,202 W FRANCES AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_7_15,-74.68163569,39.39095208,2201 WABASH AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_7_16,-74.5913708,39.42779199,200 W FRANCES AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_7_2,-74.56982439,39.45216589,214 W FRANCES AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_7_3,-74.55277468,39.46381267,213 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_7_4,-74.623428,39.4350765,212 W FRANCES AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_7_5,-74.5413755,39.4658335,211 W KIRKLIN AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_7_6,-74.65871118,39.41682908,210 W FRANCES AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_7_7,-74.6779287,39.41594071,209 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_7_8,-74.648291,39.402457,208 W FRANCES AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_7_9,-74.6272775,39.435229,207 W KIRKLIN AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_70_1,-74.4323035,39.3705075,1404 FRANKLIN BLVD,LINWOOD CITY,16,1946,1,RES1,3001 -0114_70_2,-74.363683,39.410876,1400 FRANKLIN BLVD,LINWOOD CITY,16,1970,1,RES1,3001 -0114_70_3,-74.38306085,39.39830739,218 E ARLINGTON AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_70_4,-74.3674801,39.40684567,209 E BERKSHIRE AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_70_5,-74.37079752,39.40019984,220 E ARLINGTON AVE,LINWOOD CITY,17,1978,1,RES1,3001 -0114_70_6,-74.38425657,39.39397966,215 E BERKSHIRE AVE,LINWOOD CITY,17,1993,1,RES1,3001 -0114_70_7,-74.49262149,39.33509528,222 E ARLINGTON AVE,LINWOOD CITY,18,1995,1,RES1,3001 -0114_70_8,-74.39671325,39.39065553,221 E BERKSHIRE AVE,LINWOOD CITY,18,1956,1,RES1,3001 -0114_70_8.01,-74.48919704,39.35053718,223 E BERKSHIRE AVE,LINWOOD CITY,17,2002,1,RES1,3001 -0114_71_1,-74.55074844,39.37872335,1398 FRANKLIN BLVD,LINWOOD CITY,17,1947,1,RES1,3001 -0114_71_2,-74.52155319,39.38210456,201 E CAMBRIDGE AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_71_3,-74.44557605,39.37321379,210 E BERKSHIRE AVE,LINWOOD CITY,18,1989,1,RES1,3001 -0114_71_4,-74.56171824,39.37082808,205 E CAMBRIDGE AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_71_5,-74.36757077,39.41210389,214 E BERKSHIRE AVE,LINWOOD CITY,16,1983,1,RES1,3001 -0114_71_6,-74.455782,39.371715,229 E CAMBRIDGE AVE,LINWOOD CITY,16,1958,1,RES1,3004 -0114_71_7.01,-74.3558385,39.4146845,220 E BERKSHIRE AVE,LINWOOD CITY,18,1954,1,RES1,3004 -0114_71_7.02,-74.40707107,39.37824074,224 E BERKSHIRE AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_71_9,-74.374408,39.4175385,235 E CAMBRIDGE AVE,LINWOOD CITY,17,1956,1,RES1,3001 -0114_72_1,-74.50093836,39.40935903,1314 FRANKLIN BLVD,LINWOOD CITY,17,1997,1,RES1,3001 -0114_72_2,-74.61215346,39.40296883,209 E DEVONSHIRE AVE,LINWOOD CITY,19,2002,1,RES1,3001 -0114_72_3,-74.5156765,39.3938725,210 E CAMBRIDGE AVE,LINWOOD CITY,16,1927,1,RES1,3001 -0114_72_4,-74.48317454,39.43033501,215 E DEVONSHIRE AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_72_5,-74.52078654,39.38757032,214 E CAMBRIDGE AVE,LINWOOD CITY,16,1947,1,GOV1,3004 -0114_72_6,-74.54838664,39.38754117,232 E CAMBRIDGE AVE,LINWOOD CITY,18,2004,1,RES1,3001 -0114_72_7,-74.569085,39.371729,234 E CAMBRIDGE AVE,LINWOOD CITY,18,1965,1,RES1,3001 -0114_72_8,-74.45050569,39.37285203,236 E CAMBRIDGE AVE,LINWOOD CITY,17,1996,1,RES1,3001 -0114_72_9,-74.522137,39.3981255,225 E DEVONSHIRE AVE,LINWOOD CITY,18,2011,1,RES1,3001 -0114_73_1,-74.63817965,39.43408001,118 W DEVONSHIRE AVE,LINWOOD CITY,16,1956,1,GOV1,3004 -0114_73_10,-74.5698675,39.3719255,1235 SHORE ROAD,LINWOOD CITY,16,1915,2,RES1,3001 -0114_73_11,-74.49940498,39.32826216,SHORE RD,LINWOOD CITY,,0,1,RES1,3001 -0114_73_12,-74.47446763,39.34123666,107 W EDGEWOOD AVE,LINWOOD CITY,16,1952,1,RES1,3001 -0114_73_13.01,-74.4578325,39.3492835,105 W EDGEWOOD AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_73_13.02,-74.51123893,39.32878383,103 W EDGEWOOD AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_73_14,-74.5209215,39.322491,33 W EDGEWOOD AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_73_15,-74.50315112,39.32760117,29 W EDGEWOOD AVE,LINWOOD CITY,17,1952,1,RES1,3001 -0114_73_16,-74.50269644,39.32999063,25 W EDGEWOOD AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_73_18,-74.45877904,39.35385835,17 W EDGEWOOD AVE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_73_19,-74.50891096,39.33223819,1123 SHORE ROAD,LINWOOD CITY,17,1860,1,RES1,3001 -0114_73_2,-74.62175649,39.43338066,120 W DEVONSHIRE AVE,LINWOOD CITY,16,1979,1,RES1,3001 -0114_73_20,-74.480696,39.346198,1117 - 1119 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_73_22,-74.48105633,39.34584853,1105 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_73_23,-74.465781,39.344583,1101 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_73_3,-74.62570105,39.43568359,116 W DEVONSHIRE AVE,LINWOOD CITY,16,1948,1,COM1,3004 -0114_73_4,-74.63243085,39.41489542,30 W DEVONSHIRE AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_73_5,-74.63432535,39.40832969,28 W DEVONSHIRE AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_73_6,-74.63447133,39.3971559,26 W DEVONSHIRE AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_73_7,-74.628183,39.3924485,22 W DEVONSHIRE AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_73_8,-74.6386565,39.3825485,20 W DEVONSHIRE AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_73_9,-74.53879086,39.38536855,18 W DEVONSHIRE AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_74_1.01,-74.62655894,39.37495917,1236 SHORE ROAD,LINWOOD CITY,17,1916,1,RES1,3001 -0114_74_1.02,-74.59214636,39.42982882,16 E DEVONSHIRE AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_74_2,-74.56979231,39.37298243,1230 SHORE ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_74_3,-74.534264,39.397157,5 E ESSEX AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_74_4,-74.65871102,39.36763881,18 E DEVONSHIRE AVE,LINWOOD CITY,16,1956,1,GOV1,3004 -0114_74_5,-74.6189245,39.4241,7 E ESSEX AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_74_6,-74.47666904,39.49371766,22 E DEVONSHIRE AVE,LINWOOD CITY,17,1927,1,RES1,3001 -0114_74_7,-74.61283275,39.41390955,11 E ESSEX AVE,LINWOOD CITY,16,1948,1,GOV1,3004 -0114_75_1,-74.62377787,39.41823788,1212 SHORE RD,LINWOOD CITY,17,1950,1,RES1,3001 -0114_75_2,-74.62215393,39.42417343,1210 SHORE RD,LINWOOD CITY,16,1924,1,RES1,3001 -0114_75_3,-74.62372371,39.43327046,1202 SHORE ROAD,LINWOOD CITY,17,1863,1,RES1,3001 -0114_75_5,-74.64606402,39.41000832,9 E GLENSIDE AVE,LINWOOD CITY,16,1925,1,COM1,3004 -0114_75_7,-74.54485961,39.38459824,1221 WOODE-LYNNE BLVD,LINWOOD CITY,17,1960,1,RES1,3001 -0114_75_8,-74.6372725,39.3811115,1211 WOODE-LYNNE BLVD,LINWOOD CITY,17,1970,1,RES1,3001 -0114_75_9,-74.67374938,39.38840377,1201 WOODE-LYNNE BLVD,LINWOOD CITY,17,1986,1,RES1,3001 -0114_76_1,-74.47516813,39.48539748,100 E DEVONSHIRE AVE,LINWOOD CITY,17,1950,1,RES1,3001 -0114_76_2,-74.64102102,39.36273304,101 E ESSEX AVE,LINWOOD CITY,16,1949,1,RES1,3001 -0114_76_3,-74.4982065,39.4676025,106 E DEVONSHIRE AVE,LINWOOD CITY,17,1927,1,RES1,3001 -0114_76_5.01,-74.5171455,39.452681,110 E DEVONSHIRE AVE,LINWOOD CITY,18,1990,1,RES1,3001 -0114_76_5.02,-74.51122788,39.46966512,115 E ESSEX AVE,LINWOOD CITY,18,1984,1,EDU1,3004 -0114_76_6,-74.52527153,39.44320369,121 E ESSEX AVE,LINWOOD CITY,18,1952,1,RES1,3004 -0114_76_7,-74.6404775,39.371605,1255 FRANKLIN BLVD,LINWOOD CITY,19,2002,1,RES1,3001 -0114_76_9,-74.4638155,39.462414,1251 FRANKLIN BLVD,LINWOOD CITY,18,2000,1,RES1,3001 -0114_77_1,-74.604733,39.4317587,1250 WOODE-LYNNE BLVD,LINWOOD CITY,16,1948,1,RES1,3001 -0114_77_2,-74.5545235,39.371777,1210 WOODE-LYNNE BLVD,LINWOOD CITY,17,1959,1,RES3A,3001 -0114_77_3,-74.67755229,39.35448346,106 E ESSEX AVE,LINWOOD CITY,19,2006,1,GOV1,3004 -0114_77_6.01,-74.45562389,39.50171855,130 E ESSEX AVE,LINWOOD CITY,18,1974,1,RES1,3001 -0114_77_6.02,-74.58241482,39.42327346,122 ESSEX AVE,LINWOOD CITY,19,1997,1,RES1,3001 -0114_79_1.01,-74.57978448,39.44357303,1262 FRANKLIN BLVD,LINWOOD CITY,19,1998,1,COM1,3004 -0114_79_1.02,-74.656038,39.396284,201 E ESSEX AVE,LINWOOD CITY,18,1997,1,RES1,3001 -0114_79_2,-74.63860343,39.4293422,210 E DEVONSHIRE AVE,LINWOOD CITY,17,1960,1,RES1,3001 -0114_79_3,-74.61836,39.424453,203 E ESSEX AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_79_4,-74.6035467,39.41724757,218 E DEVONSHIRE AVE,LINWOOD CITY,18,2013,1,COM1,3004 -0114_8.01_1,-74.63048604,39.41040189,2222 GRAMMERCY AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_8.01_10,-74.53661467,39.41037877,201 W FRANCES AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_8.01_11.01,-74.572186,39.412991,308 ROYAL AVE,LINWOOD CITY,16,1980,1,RES3A,3001 -0114_8.01_11.02,-74.615298,39.377823,306 ROYAL AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_8.01_11.03,-74.58336512,39.42019695,304 ROYAL AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_8.01_11.04,-74.54768416,39.37586497,302 ROYAL AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_8.01_2,-74.59261882,39.42801625,312 ROYAL AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_8.01_3,-74.671156,39.3693285,213 W FRANCES AVE,LINWOOD CITY,16,1960,1,GOV1,3004 -0114_8.01_4,-74.583313,39.419202,310 ROYAL AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_8.01_5,-74.637468,39.4003955,211 W FRANCES AVE,LINWOOD CITY,17,1960,1,RES1,3001 -0114_8.01_6,-74.6126575,39.4212455,209 W FRANCES AVE,LINWOOD CITY,16,1959,1,RES1,3001 -0114_8.01_7,-74.58884376,39.42982595,207 W FRANCES AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_8.01_8,-74.5701625,39.427819,205 W FRANCES AVE,LINWOOD CITY,16,1960,1,GOV1,3004 -0114_8.01_9,-74.5528131,39.42653034,203 W FRANCES AVE,LINWOOD CITY,16,1960,1,RES3A,3001 -0114_8.02_11.05,-74.54741,39.375545,306 BEECH AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_8.02_12,-74.59762712,39.38193297,309 ROYAL AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_8.02_13,-74.5519915,39.427694,311 ROYAL AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_8.02_14,-74.59121169,39.42174454,312 BEECH AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_8.02_15,-74.547637,39.37646,310 BEECH AVE,LINWOOD CITY,16,1964,1,GOV1,3004 -0114_8.03_11.06,-74.67654725,39.36026405,301 BEECH AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_8.03_11.07,-74.59363024,39.41811335,305 ROYAL AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_8.03_11.08,-74.5412155,39.3809405,303 ROYAL AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_8.03_11.09,-74.54832132,39.37091956,301 ROYAL AVE,LINWOOD CITY,17,1980,1,RES1,3001 -0114_8.03_11.10,-74.56408369,39.40857833,303 BEECH AVE,LINWOOD CITY,17,1979,1,RES1,3001 -0114_8.03_16,-74.761785,39.307349,314 W OCEAN HEIGHTS AVE,LINWOOD CITY,17,1900,1,RES1,3001 -0114_8.03_17,-74.54602405,39.41369349,310 W OCEAN HEIGHTS AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_8.03_18,-74.55586407,39.41930961,309 BEECH AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_8.03_19,-74.53919515,39.38446896,220 W OCEAN HGTS AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_8.03_20,-74.5361205,39.3810085,305 BEECH AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_8.03_21,-74.53727455,39.37846717,216 W OCEAN HGTS AVE,LINWOOD CITY,15,1920,1,RES1,3001 -0114_8.03_22,-74.55042199,39.36940305,214 W OCEAN HGTS AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_8.03_24,-74.53467207,39.41532195,202 W OCEAN HEIGHTS AVE,LINWOOD CITY,15,1890,1,RES1,3001 -0114_80_1.01,-74.628478,39.409842,210 E ESSEX AVE,LINWOOD CITY,19,1963,1,RES1,3001 -0114_80_1.02,-74.51289377,39.45695951,1210 FRANKLIN BLVD,LINWOOD CITY,19,1997,1,RES1,3001 -0114_80_2,-74.5044105,39.443302,203 E FRANKFORD AVE,LINWOOD CITY,17,1949,1,RES1,3001 -0114_81_1,-74.7764515,39.517233,1100 BARTLETT AVE,LINWOOD CITY,17,1963,1,RES1,3001 -0114_81_2,-74.4134875,39.370496,1011 BARTLETT AVE,LINWOOD CITY,17,1970,1,RES1,3001 -0114_81_3.01,-74.522934,39.3882455,1050 BARTLETT DR,LINWOOD CITY,17,1980,1,RES1,3001 -0114_81_3.02,-74.79733513,39.65156414,1007 BARTLETT AVE,LINWOOD CITY,17,2004,1,RES3A,3001 -0114_81_4,-74.50243702,39.41386582,1026 BARTLETT DR,LINWOOD CITY,16,1960,1,RES1,3001 -0114_81_5,-74.4423577,39.49155437,1001 BARTLETT DRIVE,LINWOOD CITY,17,1971,1,RES1,3001 -0114_82_1,-74.52442635,39.4631516,911 BARTLETT AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_82_2,-74.557672,39.3963275,909 BARTLETT AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_82_3,-74.450498,39.492328,907 BARTLETT AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_82_4,-74.507462,39.4927505,905 BARTLETT AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_82_5,-74.59402182,39.31226792,903 BARTLETT AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_82_6,-74.593777,39.3296135,901 BARTLETT AVE,LINWOOD CITY,17,1969,1,RES1,3001 -0114_83_1,-74.53095134,39.38708538,1005 BARTLETT AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_83_2,-74.52521284,39.39376744,1003 BARTLETT AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_83_3,-74.51376888,39.41751847,509 W VAN SANT AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_84_1,-74.86358534,39.49573402,1018 BARTLETT AVE,LINWOOD CITY,16,1966,1,GOV1,3004 -0114_84_10,-74.48756683,39.34917255,1011 RICHARD DR,LINWOOD CITY,16,1967,1,RES3A,3001 -0114_84_11,-74.37730686,39.41593906,1008 BARTLETT AVE,LINWOOD CITY,17,1966,1,GOV1,3004 -0114_84_12,-74.36752009,39.40563971,1009 RICHARD DR,LINWOOD CITY,17,1966,1,COM8,3004 -0114_84_13,-74.79246266,39.66479599,1006 BARTLETT AVE,LINWOOD CITY,16,1967,1,RES3A,3001 -0114_84_14,-74.4527322,39.37498203,1007 RICHARD DR,LINWOOD CITY,16,1966,1,RES1,3001 -0114_84_15,-74.430868,39.367765,1004 BARTLETT AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_84_16,-74.82869565,39.64324747,1005 RICHARD DR,LINWOOD CITY,17,1966,1,RES3A,3001 -0114_84_17,-74.53106934,39.38629455,1002 BARTLETT AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_84_18,-74.48858861,39.37823611,1003 RICHARD DR,LINWOOD CITY,16,1966,1,RES1,3001 -0114_84_19,-74.50068031,39.41028847,1000 BARTLETT AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_84_2,-74.856886,39.459884,1019 RICHARD DR,LINWOOD CITY,17,1967,1,RES1,3001 -0114_84_20,-74.513943,39.39472117,1001 RICHARD DR,LINWOOD CITY,17,1966,1,RES1,3001 -0114_84_3,-74.65137804,39.53078634,1016 BARTLETT AVE,LINWOOD CITY,17,1964,1,COM1,3004 -0114_84_4,-74.64837853,39.51841833,1017 RICHARD DR,LINWOOD CITY,17,1966,1,RES1,3001 -0114_84_5,-74.6974465,39.5942365,1014 BARTLETT AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_84_6,-74.6659172,39.54537992,1015 RICHARD DR,LINWOOD CITY,17,1967,1,RES3A,3001 -0114_84_7,-74.80999131,39.52488254,1012 BARTLETT AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_84_8,-74.69362768,39.63847337,1013 RICHARD DR,LINWOOD CITY,17,1966,1,RES1,3001 -0114_84_9,-74.4068054,39.37817137,1010 BARTLETT AVE,LINWOOD CITY,17,2006,1,RES1,3001 -0114_85_1,-74.75039988,39.45351711,1018 RICHARD DR,LINWOOD CITY,17,1967,1,RES1,3001 -0114_85_11,-74.38193028,39.3941941,1008 RICHARD DR,LINWOOD CITY,17,1965,1,GOV1,3004 -0114_85_12,-74.505013,39.3387155,1009 NEW ROAD,LINWOOD CITY,15,1965,1,RES1,3001 -0114_85_13,-74.3605647,39.41299268,1006 RICHARD DR,LINWOOD CITY,17,1966,1,EDU1,3004 -0114_85_14,-74.43243483,39.36921367,1007 NEW ROAD,LINWOOD CITY,16,1965,1,RES1,3001 -0114_85_15,-74.974248,39.5112205,1004 RICHARD DRIVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_85_16,-74.37817025,39.41859255,1005 NEW ROAD,LINWOOD CITY,16,1965,1,RES1,3002 -0114_85_17,-74.81069858,39.66123335,1002 RICHARD DR,LINWOOD CITY,16,1965,1,RES1,3001 -0114_85_18,-74.80683991,39.64557551,1003 NEW ROAD,LINWOOD CITY,16,1965,1,RES1,3001 -0114_85_19,-74.5130134,39.38665686,1000 RICHARD DR,LINWOOD CITY,17,1968,1,RES1,3001 -0114_85_2,-74.72427534,39.45313773,500 W MONROE AVE,LINWOOD CITY,16,1967,1,RES1,3001 -0114_85_20,-74.43520036,39.36764024,501 W VAN SANT AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_85_3,-74.85579666,39.47057283,1016 RICHARD DR,LINWOOD CITY,16,1967,1,RES1,3001 -0114_85_4,-74.7104555,39.473939,1017 NEW ROAD,LINWOOD CITY,16,1970,1,RES1,3001 -0114_85_5,-74.64710725,39.52459375,1014 RICHARD DR,LINWOOD CITY,16,1967,1,RES1,3001 -0114_85_6,-74.5562481,39.53044726,1015 NEW ROAD,LINWOOD CITY,17,1993,1,RES1,3001 -0114_85_7,-74.70123289,39.58846524,1012 RICHARD DR,LINWOOD CITY,17,1966,1,RES1,3001 -0114_85_8,-74.68398385,39.50985204,1013 NEW ROAD,LINWOOD CITY,17,1968,1,RES1,3001 -0114_85_9,-74.68781873,39.63284555,1010 RICHARD DR,LINWOOD CITY,17,1966,1,RES1,3001 -0114_86_1,-74.487342,39.439969,512 W VAN SANT AVE,LINWOOD CITY,17,1967,1,RES1,3001 -0114_86_10,-74.50140795,39.43026866,505 W PIERCE AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_86_11,-74.503083,39.4078315,502 W VAN SANT AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_86_12,-74.4990545,39.4253185,503 W PIERCE AVE,LINWOOD CITY,15,1964,1,RES1,3001 -0114_86_13,-74.52568966,39.3966815,500 W VAN SANT AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_86_14,-74.51583643,39.41015893,501 W PIERCE AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_86_2,-74.51317522,39.46300471,513 W PIERCE AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_86_3,-74.47988563,39.43950238,510 W VAN SANT AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_86_4,-74.527207,39.4500665,511 W PIERCE AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_86_5,-74.50406917,39.43113303,508 W VAN SANT AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_86_6,-74.48915362,39.45312629,509 W PIERCE AVE,LINWOOD CITY,16,2014,1,RES3A,3001 -0114_86_7,-74.503669,39.4262085,506 W VAN SANT AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_86_8,-74.47187086,39.44583117,507 W PIERCE AVE,LINWOOD CITY,17,1964,1,COM1,3004 -0114_86_9,-74.50464983,39.41177967,504 W VAN SANT AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_87_1,-74.58734413,39.38019554,512 W PIERCE AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_87_10,-74.55199814,39.39197444,505 W MARIE AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_87_11,-74.50468326,39.43645145,502 W PIERCE AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_87_12,-74.4525815,39.474935,503 W MARIE AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_87_13,-74.471222,39.451733,500 W PIERCE AVE,LINWOOD CITY,15,1966,1,RES1,3001 -0114_87_14,-74.508527,39.458576,501 W MARIE AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_87_2,-74.49389623,39.47736905,513 W MARIE AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_87_3,-74.55963116,39.39748315,510 W PIERCE AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_87_4,-74.451041,39.492505,511 W MARIE AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_87_5,-74.47234501,39.48689734,508 W PIERCE AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_87_6,-74.5945615,39.3817015,509 W MARIE AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_87_7,-74.5231358,39.45950227,506 W PIERCE AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_87_8,-74.55675683,39.3975765,507 W MARIE AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_87_9,-74.52118941,39.44233733,504 W PIERCE AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_88_1,-74.61666406,39.30934183,517 W POPLAR AVE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_88_2,-74.53703791,39.30505281,515 W POPLAR AVE,LINWOOD CITY,16,1970,1,RES1,3001 -0114_88_3,-74.502128,39.505528,513 W POPLAR AVE,LINWOOD CITY,17,1968,1,RES1,3001 -0114_88_4,-74.4929635,39.491828,511 W POPLAR AVE,LINWOOD CITY,16,1967,1,RES1,3002 -0114_88_5,-74.48508239,39.49651488,509 W POPLAR AVE,LINWOOD CITY,16,1968,1,RES1,3002 -0114_88_6,-74.45375122,39.50045499,507 W POPLAR AVE,LINWOOD CITY,16,1950,1,RES1,3001 -0114_88_8,-74.59484915,39.37856519,503 W POPLAR AVE,LINWOOD CITY,15,1930,1,RES3A,3004 -0114_89_1,-74.8102948,39.43456958,414 W MONROE AVE,LINWOOD CITY,16,1968,1,RES1,3001 -0114_89_10,-74.62680996,39.49122218,406 W MONROE AVE,LINWOOD CITY,17,1964,1,RES3A,3001 -0114_89_11,-74.755421,39.431308,407 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES3A,3001 -0114_89_12,-74.65312017,39.45990067,404 W MONROE AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_89_13,-74.70996802,39.42931931,405 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_89_14,-74.60806666,39.47833599,402 W MONROE AVE,LINWOOD CITY,17,1964,1,RES1,3001 -0114_89_15,-74.68564847,39.49674616,403 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_89_16,-74.68026,39.48583,401 W EDGEWOOD AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_89_18,-74.58251559,39.44786573,1023 OAK AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_89_19,-74.56336033,39.50304345,1021 OAK AVE,LINWOOD CITY,15,1953,1,RES1,3001 -0114_89_2,-74.8656105,39.4432285,417 W EDGEWOOD AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_89_20,-74.63543105,39.48668484,1019 OAK AVE,LINWOOD CITY,16,1953,1,RES1,3002 -0114_89_3,-74.81950705,39.39079975,412 W MONROE AVE,LINWOOD CITY,17,1965,1,RES1,3001 -0114_89_4,-74.75290123,39.44664233,415 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_89_5,-74.7110578,39.43255253,410 W MONROE AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_89_6,-74.71533386,39.46466222,413 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_89_7,-74.71867285,39.44183504,411 W EDGEWOOD AVE,LINWOOD CITY,16,1954,1,RES1,3001 -0114_89_8,-74.70539164,39.48462885,408 W MONROE AVE,LINWOOD CITY,17,1954,1,RES1,3001 -0114_89_9,-74.85285781,39.39136807,409 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES3A,3001 -0114_9_1,-74.60038731,39.370073,2306 WABASH AVENUE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_9_10,-74.53465584,39.38502103,18 W OCEAN HTGS AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_9_11,-74.53558814,39.38432706,22 W OCEAN HTGS AVE,LINWOOD CITY,16,1925,1,COM1,3004 -0114_9_12,-74.535439,39.3842155,106 OCEAN HGTS AVE,LINWOOD CITY,16,1978,1,RES1,3001 -0114_9_13,-74.5910685,39.369824,108 W OCEAN HGTS AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_9_2,-74.61815279,39.38124713,2304 WABASH AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_9_3,-74.5366315,39.4132035,2300 WABASH AVE,LINWOOD CITY,16,1966,1,RES1,3001 -0114_9_4,-74.60546182,39.38713297,21 W ROYAL AVE,LINWOOD CITY,17,1987,1,RES3A,3001 -0114_9_5,-74.616347,39.3710915,19 W ROYAL AVE,LINWOOD CITY,18,1984,1,RES1,3001 -0114_9_6,-74.5918075,39.3725795,15 W ROYAL AVE,LINWOOD CITY,17,1930,1,RES1,3001 -0114_9_8,-74.55593876,39.39945636,2303 SHORE ROAD,LINWOOD CITY,18,1920,1,RES1,3001 -0114_9_9,-74.54367618,39.39953808,2321 SHORE ROAD,LINWOOD CITY,45,1982,2,RES1,3001 -0114_90_1.01,-74.740188,39.5592585,425 W JEFFERSON AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_90_1.02,-74.68227585,39.55451999,420 W EDGEWOOD AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_90_10,-74.87507647,39.46095082,406 W EDGEWOOD AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_90_11,-74.64500979,39.53291068,405 W JEFFERSON AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_90_12,-74.785983,39.4401805,404 W EDGEWOOD AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_90_13,-74.63649334,39.52301952,403 W JEFFERSON AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_90_14,-74.7523695,39.4512525,402 W EDGEWOOD AVE,LINWOOD CITY,16,1963,1,RES1,3001 -0114_90_15,-74.55447585,39.53210255,401 W JEFFERSON AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_90_16,-74.838171,39.3930765,1017 OAK AVE,LINWOOD CITY,16,1953,1,RES1,3002 -0114_90_17,-74.727034,39.4586355,1016 OAK AVE,LINWOOD CITY,16,1974,1,RES1,3001 -0114_90_18,-74.88013531,39.47238143,1015 OAK AVE,LINWOOD CITY,16,1953,1,RES1,3001 -0114_90_2,-74.64140234,39.53107578,414 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES1,3002 -0114_90_3,-74.6877675,39.6306055,417 W JEFFERSON AVE,LINWOOD CITY,16,1960,1,RES1,3001 -0114_90_4,-74.6317305,39.5215205,412 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_90_5,-74.62234109,39.60715987,411 W JEFFERSON AVE,LINWOOD CITY,16,1957,1,RES1,3002 -0114_90_6,-74.60755707,39.5112167,410 W EDGEWOOD AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_90_7,-74.62123962,39.60006144,409 W JEFFERSON AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_90_8,-74.88268014,39.48597463,408 W EDGEWOOD AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_90_9,-74.6312375,39.5400965,407 W JEFFERSON AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_91_1.01,-74.69963219,39.64367582,423 W VAN SANT AVE,LINWOOD CITY,15,1927,1,RES1,3001 -0114_91_1.02,-74.81776778,39.65607809,425 W VAN SANT AVE,LINWOOD CITY,17,1992,1,RES1,3001 -0114_91_10,-74.3673711,39.40288815,1001 OAK AVE,LINWOOD CITY,16,1930,1,REL1,3004 -0114_91_2.01,-74.890116,39.5573795,1002 NEW ROAD,LINWOOD CITY,17,1991,1,RES3B,3001 -0114_91_3.01,-74.37063167,39.41904953,420 W JEFFERSON AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_91_3.02,-74.3620505,39.4101555,416 W JEFFERSON AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_91_4,-74.4090455,39.379635,412 W JEFFERSON AVE,LINWOOD CITY,16,1959,1,COM1,3004 -0114_91_5,-74.40318583,39.38041114,410 W JEFFERSON AVE,LINWOOD CITY,16,1978,1,RES3A,3001 -0114_91_6,-74.378059,39.417168,409 W VAN SANT AVE,LINWOOD CITY,16,1910,1,RES1,3001 -0114_91_7,-74.501022,39.337381,406 W JEFFERSON AVE,LINWOOD CITY,16,1973,1,RES1,3001 -0114_91_8,-74.69543547,39.59107279,1011 OAK AVE,LINWOOD CITY,17,1954,1,RES1,3001 -0114_91_9,-74.49781779,39.33505917,1007 OAK AVE,LINWOOD CITY,16,1925,1,RES1,3001 -0114_92_1,-74.51228632,39.41141623,900 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_92_2,-74.52724157,39.3999037,418 W VAN SANT AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_92_3,-74.524658,39.3829215,412 W VAN SANT AVE,LINWOOD CITY,16,1927,1,GOV1,3004 -0114_92_4,-74.44536114,39.37414677,400 W VAN SANT AVE,LINWOOD CITY,16,1979,1,RES1,3001 -0114_92_5,-74.80014245,39.65945785,913 OAK AVE,LINWOOD CITY,15,1930,1,RES1,3001 -0114_92_6,-74.52762581,39.38200743,905 OAK AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_92_7,-74.51533072,39.39844034,901 OAK AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_93_1,-74.5107795,39.4396215,810 NEW ROAD,LINWOOD CITY,,0,1,RES1,3001 -0114_93_10,-74.45529101,39.47628968,401 W POPLAR AVE,LINWOOD CITY,16,1947,1,RES1,3001 -0114_93_2,-74.56165766,39.38870319,413 W POPLAR AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_93_3,-74.45005718,39.4799293,409 W POPLAR AVE,LINWOOD CITY,16,1924,1,RES1,3001 -0114_93_6,-74.500729,39.4143535,815 OAK AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_93_7,-74.49312433,39.43110451,811 OAK AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_93_8,-74.46597269,39.45570972,809 OAK AVE,LINWOOD CITY,16,1926,1,RES1,3001 -0114_94_1,-74.4830025,39.341546,1116 OAK AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_94_10.01,-74.451187,39.357442,218 W TABOR AVE,LINWOOD CITY,17,2000,1,RES1,3001 -0114_94_10.02,-74.48584553,39.34533567,1133 WABASH AVE,LINWOOD CITY,16,1990,1,RES1,3001 -0114_94_11,-74.49292052,39.33543267,209 W MONROE AVE,LINWOOD CITY,16,1935,1,RES1,3001 -0114_94_13,-74.46054735,39.35497448,201 W MONROE AVE,LINWOOD CITY,17,1952,1,RES1,3004 -0114_94_2,-74.520953,39.32335817,1122 OAK AVE,LINWOOD CITY,15,1930,1,RES1,3001 -0114_94_3,-74.46403585,39.34903309,309 W MONROE AVE,LINWOOD CITY,15,1940,1,RES1,3001 -0114_94_4,-74.500815,39.3297145,230 W TABOR AVE,LINWOOD CITY,16,1960,1,GOV1,3004 -0114_94_5,-74.511059,39.3281635,305 W MONROE AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_94_6,-74.496472,39.3359675,224 W TABOR AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_94_7,-74.52342434,39.3195032,225 W MONROE AVE,LINWOOD CITY,16,1925,1,RES1,3001 -0114_94_8,-74.46215375,39.35693711,220 W TABOR AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_94_9,-74.51665705,39.32218285,217 W MONROE AVE,LINWOOD CITY,17,1989,1,RES1,3001 -0114_95_1,-74.56291692,39.46906083,1022 OAK AVE,LINWOOD CITY,16,1956,1,REL1,3004 -0114_95_11,-74.5549045,39.4683435,229 W EDGEWOOD AVE,LINWOOD CITY,16,1940,1,RES1,3001 -0114_95_12,-74.4846975,39.340941,220 W MONROE AVE,LINWOOD CITY,16,1935,1,RES1,3001 -0114_95_13,-74.54871578,39.46871694,221 W EDGEWOOD AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_95_15,-74.48465433,39.33459156,213 W EDGEWOOD AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_95_16,-74.46382895,39.34822416,208 W MONROE AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_95_17,-74.48301638,39.34030432,211 W EDGEWOOD AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_95_18,-74.51003525,39.33202935,204 W MONROE AVE,LINWOOD CITY,17,1988,1,RES1,3001 -0114_95_19,-74.50652156,39.32735691,200 W MONROE AVE,LINWOOD CITY,17,1966,1,RES1,3001 -0114_95_2,-74.54317322,39.4737276,1020 OAK AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_95_20,-74.51518514,39.32859954,1103 WABASH AVE,LINWOOD CITY,16,1969,1,RES1,3001 -0114_95_21,-74.47524736,39.33899867,201 W EDGEWOOD AVE,LINWOOD CITY,16,1935,1,COM1,3004 -0114_95_3,-74.680232,39.4448185,1018 OAK AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_95_4,-74.6050805,39.486975,307 W EDGEWOOD AVE,LINWOOD CITY,15,1956,1,RES1,3001 -0114_95_5,-74.55865539,39.47233622,305 W EDGEWOOD AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0114_95_6,-74.56023802,39.45984267,304 W MONROE AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_95_7,-74.5582665,39.476263,303 W EDGEWOOD AVE,LINWOOD CITY,16,1962,1,RES1,3001 -0114_95_8,-74.4852825,39.3344505,300 W MONROE AVE,LINWOOD CITY,17,1935,1,RES1,3001 -0114_95_9,-74.6047572,39.43723456,301 W EDGEWOOD AVE,LINWOOD CITY,16,1927,1,RES1,3001 -0114_96_1,-74.719345,39.449781,1024 OAK AVE,LINWOOD CITY,17,1997,1,RES1,3001 -0114_96_2,-74.84957534,39.44249184,1010 OAK AVE,LINWOOD CITY,16,1958,1,RES1,3001 -0114_96_3,-74.756578,39.432489,310 W EDGEWOOD AVE,LINWOOD CITY,17,1952,1,RES1,3001 -0114_96_4,-74.7341575,39.4502375,315 W JEFFERSON AVE,LINWOOD CITY,17,1925,1,RES1,3001 -0114_96_5,-74.68535888,39.49852872,302 W EDGEWOOD AVE,LINWOOD CITY,17,1925,1,RES1,3001 -0114_96_6,-74.83024001,39.38804153,309 W JEFFERSON AVE,LINWOOD CITY,17,1962,1,RES1,3001 -0114_96_7,-74.7603557,39.43134238,301 W JEFFERSON AVE,LINWOOD CITY,16,1962,1,GOV1,3004 -0114_97_1,-74.62722079,39.46285699,220 W EDGEWOOD AVE,LINWOOD CITY,16,1926,1,RES1,3001 -0114_97_2,-74.68771749,39.49820583,213 W JEFFERSON AVE,LINWOOD CITY,16,1949,1,RES1,3001 -0114_97_3,-74.56851237,39.47439506,212 W EDGEWOOD AVE,LINWOOD CITY,16,1951,1,RES1,3001 -0114_97_4,-74.63257713,39.49012393,211 W JEFFERSON AVE,LINWOOD CITY,16,1965,1,RES1,3001 -0114_97_5,-74.54534167,39.47564568,204 W EDGEWOOD AVE,LINWOOD CITY,17,1973,1,RES1,3001 -0114_97_6,-74.62491094,39.46515787,207 W JEFFERSON AVE,LINWOOD CITY,16,1928,1,RES1,3001 -0114_97_7,-74.55529984,39.46684552,200 W EDGEWOOD AVE,LINWOOD CITY,17,1971,1,COM1,3004 -0114_97_9,-74.59415788,39.49268734,1025 WABASH AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_98_1,-74.78060256,39.52105667,331 W VAN SANT AVE,LINWOOD CITY,15,1910,1,RES1,3001 -0114_98_3,-74.64821422,39.52437089,318 W JEFFERSON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_98_4,-74.62727992,39.51362808,316 W JEFFERSON AVE,LINWOOD CITY,16,1961,1,RES1,3001 -0114_98_5,-74.6219595,39.605031,321 W VAN SANT AVE,LINWOOD CITY,16,1895,1,RES1,3001 -0114_98_6,-74.65225126,39.53462825,311 VAN SANT AVENUE,LINWOOD CITY,15,1980,1,RES1,3001 -0114_98_7,-74.8779505,39.470512,310 W JEFFERSON AVE,LINWOOD CITY,16,1880,1,AGR1,3001 -0114_98_8,-74.755154,39.445594,306 W JEFFERSON AVE,LINWOOD CITY,16,1930,1,AGR1,3001 -0114_98_9,-74.65149634,39.52796052,303 W VAN SANT AVE,LINWOOD CITY,16,1920,1,RES1,3001 -0114_99_1,-74.8181195,39.498131,219 W VAN SANT AVE,LINWOOD CITY,16,1900,1,RES1,3001 -0114_99_11,-74.8564665,39.4290695,201 W VAN SANT AVE,LINWOOD CITY,16,1957,1,RES1,3001 -0114_99_2,-74.721092,39.448981,220 W JEFFERSON AVE,LINWOOD CITY,16,1964,1,RES1,3001 -0114_99_5,-74.751666,39.44771,215 W VAN SANT AVE,LINWOOD CITY,16,1930,1,RES1,3001 -0114_99_7,-74.72225765,39.45843533,211 W VAN SANT AVE,LINWOOD CITY,16,1956,1,RES1,3001 -0114_99_8,-74.757395,39.43203,208 W JEFFERSON AVE,LINWOOD CITY,17,1955,1,RES1,3001 -0114_99_9,-74.70582229,39.50004243,1023 WABASH AVE,LINWOOD CITY,16,1955,1,RES1,3001 -0115_1_1,-74.55149118,39.37293804,100 SO 11TH AVE,LONGPORT BORO,22,2002,1,RES1,3001 -0115_1_10,-74.64831215,39.35551355,10 POINT DRIVE,LONGPORT BORO,20,1965,1,RES1,3001 -0115_1_11,-74.77778469,39.30445472,11 POINT DRIVE,LONGPORT BORO,22,2001,1,RES1,3001 -0115_1_12,-74.769305,39.3175945,12 POINT DRIVE,LONGPORT BORO,22,1992,1,RES1,3001 -0115_1_2,-74.542029,39.3749565,2 POINT DRIVE,LONGPORT BORO,22,2009,1,RES1,3001 -0115_1_3,-74.531757,39.376013,3 POINT DRIVE,LONGPORT BORO,21,1983,1,RES1,3001 -0115_1_4,-74.819379,39.3612855,4 POINT DRIVE,LONGPORT BORO,21,1985,1,RES1,3001 -0115_1_6,-74.76287114,39.35003788,6 POINT DRIVE,LONGPORT BORO,23,1999,1,RES1,3001 -0115_1_7,-74.62960573,39.3620821,7 POINT DRIVE,LONGPORT BORO,22,1986,1,RES1,3001 -0115_1_8,-74.63418362,39.36191724,8 POINT DRIVE,LONGPORT BORO,21,1974,1,RES1,3001 -0115_1_9,-74.64256694,39.35924129,9 POINT DRIVE,LONGPORT BORO,21,1993,1,RES1,3001 -0115_10_1,-74.55463765,39.43256826,15TH TO 16TH & BEACH,LONGPORT BORO,,0,1,RES1,3001 -0115_10_10,-74.80718078,39.64151477,106 SO 16TH AVE,LONGPORT BORO,,1900,1,GOV1,3004 -0115_10_3,-74.57138199,39.42856783,107 SO 15TH AVE,LONGPORT BORO,19,1965,1,RES1,3001 -0115_10_4,-74.58349937,39.40887019,105 SO 15TH AVE,LONGPORT BORO,18,1900,1,IND2,3002 -0115_10_5,-74.57631889,39.4080414,103 SO 15TH AVE,LONGPORT BORO,19,1983,1,RES1,3001 -0115_10_6,-74.62484817,39.36451495,101 SO 15TH AVE.,LONGPORT BORO,20,2015,1,RES1,3001 -0115_10_7,-74.804425,39.6398455,1502 ATLANTIC AVE,LONGPORT BORO,20,2018,1,RES1,3002 -0115_100_1,-74.67033093,39.34985885,3301 AMHERST AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_100_2,-74.75470722,39.30000198,3305 AMHERST AVE,LONGPORT BORO,22,2014,1,RES1,3001 -0115_100_3.02,-74.8177555,39.362882,302 NO 34TH AVE,LONGPORT BORO,20,1987,1,RES1,3001 -0115_102_1,-74.80175837,39.63167579,103 SO 35TH AVE,LONGPORT BORO,20,1969,1,RES1,3001 -0115_102_2,-74.546208,39.40017,101 S 35TH AVE,LONGPORT BORO,20,1950,1,RES1,3001 -0115_102_3,-74.82470679,39.63905569,3504 ATLANTIC AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_102_4,-74.532675,39.389424,104 SO 36TH AV,LONGPORT BORO,21,1998,1,RES1,3001 -0115_103_1,-74.79399467,39.6398435,105 SO 36TH AV,LONGPORT BORO,20,1980,1,RES1,3001 -0115_103_2,-74.59596198,39.34689982,103 SO 36TH AVE,LONGPORT BORO,18,1958,1,RES1,3001 -0115_103_3,-74.59281475,39.36615174,101 SO 36TH AVE,LONGPORT BORO,18,1954,1,RES1,3001 -0115_104_1,-74.59121935,39.34909093,3403 ATLANTIC AVE,LONGPORT BORO,21,2016,1,GOV1,3004 -0115_104_2,-74.53284862,39.40125049,29 SO 34TH AVE,LONGPORT BORO,19,1950,1,RES1,3001 -0115_104_3,-74.60601712,39.37657731,27 SO 34TH AVE,LONGPORT BORO,49,1950,2,RES1,3001 -0115_104_4,-74.78852788,39.64093069,3400 PACIFIC AVE,LONGPORT BORO,,1950,1,RES1,3001 -0115_104_5,-74.57692725,39.36700087,3402 PACIFIC AV,LONGPORT BORO,19,1986,1,RES1,3001 -0115_104_6,-74.52572944,39.45215824,26 SO 35TH AV,LONGPORT BORO,18,1950,1,RES1,3001 -0115_105_1,-74.55120419,39.36137715,3503 ATLANTIC AVE,LONGPORT BORO,18,1953,1,RES1,3001 -0115_105_2,-74.59883842,39.36494477,3501 ATLANTIC AVE,LONGPORT BORO,,1950,1,RES1,3001 -0115_105_3,-74.57264755,39.33888747,27 SO 35TH AVE,LONGPORT BORO,22,2004,1,RES1,3001 -0115_105_4,-74.5681764,39.35506769,25 SO 35TH AVE,LONGPORT BORO,18,1950,1,GOV1,3004 -0115_106_1,-74.57564561,39.35906534,29 SO 36TH AVE.,LONGPORT BORO,21,2014,1,RES1,3001 -0115_106_2,-74.6324055,39.3555945,25 SO 36TH AVE,LONGPORT BORO,20,2013,1,RES1,3001 -0115_107_1,-74.57625247,39.33659413,3407 PACIFIC AVE,LONGPORT BORO,20,1995,1,RES1,3001 -0115_107_10,-74.5042705,39.324403,3 SO 34TH AVE.,LONGPORT BORO,18,1960,1,RES1,3001 -0115_107_11,-74.50242407,39.50219156,3402 VENTNOR AVE,LONGPORT BORO,20,2008,1,RES1,3001 -0115_107_12,-74.496527,39.537452,3406 VENTNOR AVE,LONGPORT BORO,20,2008,1,RES1,3001 -0115_107_13,-74.4985335,39.470645,4 SO 35TH AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_107_14,-74.49134134,39.3335443,6 SO 35TH AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_107_15,-74.44181518,39.36767996,8 SO 35TH AVE,LONGPORT BORO,19,1960,1,GOV1,3004 -0115_107_18,-74.59681225,39.35987494,20 SO 35TH AVE,LONGPORT BORO,19,1960,1,RES1,3001 -0115_107_2,-74.56838212,39.34473718,23 SO 34TH AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_107_3,-74.5593695,39.3642305,21 SO 34TH AVE,LONGPORT BORO,20,2014,1,RES1,3001 -0115_107_4,-74.59996096,39.34221333,19 SO 34TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_107_5,-74.58522568,39.36014102,15 SO 34TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_107_6,-74.50229335,39.46795695,13 SO 34TH AVE,LONGPORT BORO,18,1960,1,GOV1,3004 -0115_107_7,-74.47183572,39.48278789,11 SO 34TH AVE,LONGPORT BORO,21,2018,1,RES1,3001 -0115_107_8,-74.6442735,39.326161,7 SO 34TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_107_9,-74.63046362,39.35157543,5 SO 34TH AVE.,LONGPORT BORO,20,2009,1,RES1,3001 -0115_108_1,-74.52225645,39.46233519,3507 PACIFIC AVE,LONGPORT BORO,21,1994,1,RES1,3001 -0115_108_10,-74.50389954,39.32903367,3500 VENTNOR AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_108_11,-74.52099743,39.31996882,3504 VENTNOR AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_108_12,-74.498426,39.332279,4 SO 36TH AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_108_13,-74.536408,39.3046235,8 SO 36TH AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_108_14,-74.51155002,39.48544769,12 SO 36TH AVE,LONGPORT BORO,20,2006,1,RES1,3001 -0115_108_15,-74.43668083,39.3650265,16 SO 36TH AVE,LONGPORT BORO,20,1995,1,RES1,3001 -0115_108_16,-74.60950432,39.36691732,20 SO 36TH AVE,LONGPORT BORO,20,2013,1,RES1,3001 -0115_108_17,-74.47615807,39.47999187,22 SO 36TH AVE,LONGPORT BORO,18,1945,1,COM3,3004 -0115_108_2,-74.501895,39.4690555,3505 PACIFIC AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_108_3,-74.64627206,39.34310974,3503 PACIFIC AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_108_4,-74.58215442,39.36678427,3501 PACIFIC AVE,LONGPORT BORO,19,1960,1,RES1,3001 -0115_108_5,-74.4755005,39.4842585,19 SO 35TH AVE,LONGPORT BORO,,1955,1,RES1,3001 -0115_108_7,-74.82760656,39.64928933,11 SO 35TH AVE,LONGPORT BORO,20,2003,1,RES1,3001 -0115_108_8,-74.47024995,39.49376402,9 SO 35TH AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_109_1,-74.63340632,39.34850676,3603 PACIFIC AVE,LONGPORT BORO,20,2018,1,RES1,3001 -0115_109_11,-74.55423763,39.38142081,3 SO 36TH AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_109_13,-74.55900614,39.39793029,3600 VENTNOR AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_109_2,-74.6345639,39.34802561,3601 PACIFIC AVE,LONGPORT BORO,20,1983,1,GOV1,3004 -0115_109_3,-74.52138741,39.31703432,19 SO 36TH AVE,LONGPORT BORO,21,2011,1,RES1,3001 -0115_109_3.01,-74.48465472,39.49606998,17 SO 36TH AVE,LONGPORT BORO,20,1955,1,RES1,3001 -0115_109_4,-74.49937366,39.50032095,15 SO 36TH AVE,LONGPORT BORO,18,1935,1,RES1,3001 -0115_109_5,-74.5966705,39.3106585,11 SO 36TH AVE,LONGPORT BORO,19,1950,1,AGR1,3001 -0115_109_8,-74.49908096,39.33376614,9 SO 36TH AVE,LONGPORT BORO,19,1935,1,RES1,3001 -0115_109_9,-74.5186875,39.3180705,5 SO 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_110_10,-74.37726623,39.40022485,18 NO 35TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_110_11,-74.4901335,39.338571,16 NO 35TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_110_12,-74.46326325,39.35910745,12 NO 35TH AVE,LONGPORT BORO,,1949,1,RES1,3001 -0115_110_13,-74.51400876,39.33068725,10 NO 35TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_110_14,-74.59849131,39.36886442,6 NO 35TH AVE,LONGPORT BORO,20,2013,1,RES1,3001 -0115_110_15,-74.54843898,39.40192567,4 NO 35TH AVE,LONGPORT BORO,18,1956,1,RES1,3001 -0115_110_16.01,-74.55442346,39.38017998,2 NO 35TH AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_110_17.01,-74.51608551,39.31941883,3405 VENTNOR AVE,LONGPORT BORO,19,1984,1,RES1,3001 -0115_110_2,-74.53753343,39.39157616,3 NO 34TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_110_3,-74.585692,39.375129,7 NO 34TH AVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_110_4,-74.6183183,39.37968426,11 NO 34TH AVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_110_5,-74.468682,39.341586,13 NO 34TH AVE,LONGPORT BORO,20,2017,1,GOV1,3004 -0115_110_6,-74.45945058,39.35354263,17 NO 34TH AVE,LONGPORT BORO,20,2010,1,GOV1,3004 -0115_110_7,-74.4881975,39.3358345,19 NO 34TH AVE,LONGPORT BORO,17,1950,1,GOV1,3004 -0115_110_8,-74.39032601,39.39213533,3400 WINCHESTER AVE,LONGPORT BORO,18,1957,1,GOV1,3004 -0115_110_9,-74.38007224,39.39961397,3402 WINCHESTER AVE,LONGPORT BORO,18,1948,1,GOV1,3004 -0115_111_1,-74.51200316,39.32762717,3505 VENTNOR AV,LONGPORT BORO,18,1942,1,RES1,3001 -0115_111_10,-74.4380265,39.3686075,23 NO 35TH AVE,LONGPORT BORO,18,1944,1,GOV1,3004 -0115_111_11,-74.37492002,39.41039754,24 NO 36TH AVE,LONGPORT BORO,18,1942,1,RES1,3001 -0115_111_12,-74.443274,39.3701385,20 NO 36TH AVE,LONGPORT BORO,19,1947,1,RES1,3001 -0115_111_13,-74.39225899,39.39505267,18 NO 36TH AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_111_14,-74.39669164,39.3895999,14 NO 36TH AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_111_15,-74.38513283,39.39365884,10 NO 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_111_16,-74.48899817,39.33721246,8 NO 36TH AVE,LONGPORT BORO,20,2014,1,RES1,3001 -0115_111_17,-74.4483355,39.35517,4 NO 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_111_2,-74.5957825,39.3825045,3501 VENTNOR AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_111_3,-74.61193137,39.38312312,3 NO 35TH AVE,LONGPORT BORO,19,2015,1,RES1,3001 -0115_111_4,-74.46487002,39.34592767,5 NO 35TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_111_5,-74.46274718,39.35750347,7 NO 35TH AVE,LONGPORT BORO,19,2005,1,RES1,3001 -0115_111_6,-74.50273754,39.33914818,11 NO 35TH AVE,LONGPORT BORO,19,2005,1,RES1,3001 -0115_111_7,-74.38529767,39.3928465,15 NO 35TH AVE,LONGPORT BORO,21,2007,1,GOV1,3004 -0115_111_8,-74.38339029,39.39754101,17 NO 35TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_111_9,-74.40587203,39.37929968,21 NO 35TH AVE,LONGPORT BORO,18,1942,1,RES1,3001 -0115_112_1,-74.451126,39.3573435,1 NO 36TH AVE,LONGPORT BORO,18,1973,1,RES1,3001 -0115_112_1.01,-74.48121417,39.3524495,1B NO 36TH AVE,LONGPORT BORO,18,1970,1,GOV1,3004 -0115_112_2,-74.50984275,39.33751635,3 NO 36TH AVE,LONGPORT BORO,18,1947,1,RES1,3001 -0115_112_3,-74.39565729,39.38697186,7 NO 36TH AVE,LONGPORT BORO,18,1975,1,GOV1,3004 -0115_112_4,-74.37953166,39.39566901,11 NO 36TH AVE,LONGPORT BORO,18,1929,1,RES1,3001 -0115_112_5,-74.43724303,39.36900972,15 NO 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_112_6,-74.37281603,39.40648059,19 NO 36TH AVE,LONGPORT BORO,20,2008,1,RES1,3001 -0115_112_7,-74.3616985,39.4124425,21 NO 36TH AVE,LONGPORT BORO,18,1970,1,RES1,3001 -0115_113_1,-74.44197526,39.37134475,100 NO 35TH AVE,LONGPORT BORO,19,2006,1,RES1,3001 -0115_113_10,-74.5161705,39.395188,123 NO 34TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_113_11,-74.50130215,39.40972597,127 NO 34TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_113_12,-74.49336945,39.41866284,124 NO 35TH AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_113_13,-74.5262025,39.394703,122 NO 35TH AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_113_14,-74.52219299,39.39910817,120 NO 35TH AVE,LONGPORT BORO,18,1900,1,RES1,3001 -0115_113_15,-74.5194915,39.4021515,118 NO 35TH AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_113_16,-74.52017858,39.38946732,116 N 35TH AVE,LONGPORT BORO,18,1900,1,GOV1,3004 -0115_113_17,-74.3826855,39.415589,112 NO 35TH AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_113_18,-74.367296,39.4164185,110 NO 35TH AVE,LONGPORT BORO,18,1927,1,RES1,3001 -0115_113_19,-74.36003783,39.413549,108 NO 35TH AVE,LONGPORT BORO,18,1950,1,GOV1,3004 -0115_113_2,-74.40780492,39.37874281,3401 WINCHESTER AVE,LONGPORT BORO,18,1950,1,GOV1,3004 -0115_113_20,-74.362178,39.418875,104 NO 35TH AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_113_21,-74.40454507,39.39066105,102 NO 35TH AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_113_3,-74.40793618,39.39186645,105 NO 34TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_113_4,-74.37160487,39.40643818,109 NO 34TH AVE,LONGPORT BORO,20,2013,1,GOV1,3004 -0115_113_6,-74.36349049,39.41144378,113 NO 34TH AVE,LONGPORT BORO,20,2004,1,RES1,3001 -0115_113_7,-74.37891385,39.41384769,115 NO 34TH AVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_113_8,-74.5275815,39.3833095,119 NO 34TH AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_113_9,-74.51340182,39.38529194,121 NO 34TH AVE,LONGPORT BORO,19,1974,1,RES1,3001 -0115_114_1,-74.36676831,39.4160286,3503 WINCHESTER AVE,LONGPORT BORO,20,2018,1,GOV1,3004 -0115_114_10,-74.6060085,39.3110215,127 NO 35TH AVE,LONGPORT BORO,18,1936,1,RES1,3001 -0115_114_11,-74.58792355,39.32579414,3502 MONMOUTH AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_114_12,-74.604556,39.310653,130 NO 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_114_13,-74.4955385,39.4269375,122 NO 36TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_114_14,-74.51420378,39.40997184,118 NO 36TH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_114_15,-74.50505837,39.40785269,116 NO 36TH AVE,LONGPORT BORO,19,2010,1,RES1,3001 -0115_114_16,-74.48454489,39.43103926,112 NO 36TH AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_114_17,-74.52025833,39.39564126,108 NO 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_114_18,-74.45529136,39.37300351,106 NO 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_114_19,-74.364063,39.4200335,104 NO 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_114_2,-74.373511,39.40486517,3501 WINCHESTER AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_114_3,-74.35838015,39.41370596,103 NO 35TH AVE,LONGPORT BORO,18,1954,1,GOV1,3004 -0115_114_4,-74.37063937,39.41563887,105 NO 35TH AVE,LONGPORT BORO,18,1955,1,RES1,3002 -0115_114_5,-74.45318731,39.37418297,109 NO 35TH AVE,LONGPORT BORO,20,2007,1,GOV1,3004 -0115_114_6,-74.521069,39.3906925,111 NO 35TH AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_114_7,-74.52222103,39.39588319,117 NO 35TH AVE,LONGPORT BORO,21,2014,1,RES1,3001 -0115_114_8,-74.50810333,39.40563636,121 NO 35TH AVE,LONGPORT BORO,18,1955,1,GOV1,3004 -0115_114_9,-74.50183309,39.41876925,123 NO 35TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_115_1,-74.44681995,39.37453469,101 NO 36TH AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_115_2,-74.523238,39.388365,103 NO 36TH AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_115_4,-74.5088155,39.4068145,109 NO 36TH AVE,LONGPORT BORO,,1950,1,RES1,3001 -0115_115_5,-74.51223153,39.40463482,115 NO 36TH AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_115_6,-74.606473,39.310725,119 NO 36TH AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_115_7,-74.58499967,39.32604632,123 NO 36TH AVE,LONGPORT BORO,21,2006,1,GOV1,3004 -0115_115_8,-74.587225,39.3278745,129 N 36TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_115_9,-74.5977285,39.318615,3600 MONMOUTH AVE,LONGPORT BORO,20,2012,1,RES1,3001 -0115_116_1.01,-74.603028,39.310667,200 NO 35TH AVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_116_10.01,-74.80169846,39.36535532,228 NO 35TH AVE,LONGPORT BORO,19,1976,1,RES1,3001 -0115_116_11.01,-74.764635,39.3076525,224 NO 35TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_12.01,-74.6521665,39.357931,220 NO 35TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_13.01,-74.58341535,39.34261624,216 NO 35TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_14.01,-74.60273785,39.31760524,212 NO 35TH AVE,LONGPORT BORO,18,1975,1,GOV1,3004 -0115_116_15.01,-74.605917,39.324212,208 NO 35TH AVE,LONGPORT BORO,18,1975,1,GOV1,3004 -0115_116_16.01,-74.59336438,39.32125393,204 NO 35TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_2.01,-74.520963,39.407711,201 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_4.01,-74.5916365,39.324584,209 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_6.01,-74.60811183,39.31783697,217 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_7.01,-74.56499282,39.36000823,219 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_8.01,-74.6329915,39.360393,223 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_116_9.01,-74.755734,39.300909,227 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_117_1.01,-74.60418474,39.3175428,200 NO 36TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_117_10.01,-74.66692822,39.35966141,213 NO 35TH AVE,LONGPORT BORO,18,1999,1,RES1,3001 -0115_117_11.01,-74.682657,39.3582495,217 NO 35TH AVE,LONGPORT BORO,19,1960,1,RES1,3001 -0115_117_12.01,-74.8027605,39.367681,216 NO 36TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_117_13.01,-74.76568159,39.35079326,212 NO 36TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_117_14.01,-74.64531199,39.36361693,208 NO 36TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_117_15.01,-74.62659356,39.36094372,204 NO 36TH AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_117_2,-74.5903315,39.33123067,201 NO 35TH AVE,LONGPORT BORO,18,1960,1,GOV1,3004 -0115_117_5.01,-74.63539347,39.3656207,209 NO 35TH AVE,LONGPORT BORO,19,1950,1,RES1,3001 -0115_117_7.01,-74.54097967,39.3761735,227 NO 35TH AVE,LONGPORT BORO,29,1982,1,RES1,3001 -0115_117_8.01,-74.54076902,39.3737288,226 NO 36TH AVE,LONGPORT BORO,29,1982,1,RES1,3001 -0115_118_1,-74.63522424,39.36491295,201 NO 36TH AVE,LONGPORT BORO,21,2008,1,RES1,3001 -0115_118_2.01,-74.673471,39.3539425,205 NO 36TH AVE,LONGPORT BORO,19,1985,1,RES1,3002 -0115_118_3.01,-74.768331,39.349184,209 NO 36TH AVE,LONGPORT BORO,18,1942,1,RES1,3001 -0115_118_4.01,-74.82419574,39.36688699,213 NO 36TH AVE,LONGPORT BORO,20,2008,1,RES1,3001 -0115_118_6.01,-74.85465796,39.36780878,217 NO 36TH AVE,LONGPORT BORO,18,1980,1,RES1,3001 -0115_119_1,-74.54200985,39.37359653,3501 AMHERST AVE.,LONGPORT BORO,,0,1,GOV1,3004 -0115_121_1,-74.64205766,39.37927428,17TH TO 18TH & ATL,LONGPORT BORO,,0,1,RES1,3001 -0115_122_21,-74.67954918,39.38106311,18-19TH AV,LONGPORT BORO,,0,1,RES1,3001 -0115_123_8.01,-74.63535931,39.42232456,19-20TH AVE,LONGPORT BORO,,0,1,RES1,3001 -0115_124_12.01,-74.6353595,39.4283705,20-21ST AVE,LONGPORT BORO,,0,1,RES1,3001 -0115_125_2.01,-74.62728824,39.43609338,RIP GR OFF BEACH AVE,LONGPORT BORO,,0,1,RES1,3001 -0115_127_1,-74.55762,39.3969345,33RD TO 36TH AVES,LONGPORT BORO,,0,1,RES1,3001 -0115_13_1.01,-74.82936301,39.64410383,118 SO 18TH AVE,LONGPORT BORO,22,2007,1,RES1,3001 -0115_13_10,-74.60336389,39.40981958,103 SO 17TH AV,LONGPORT BORO,19,1987,1,RES1,3001 -0115_13_11,-74.588609,39.415588,101 SO 17TH AVE,LONGPORT BORO,21,1988,1,RES1,3001 -0115_13_12,-74.6093345,39.405842,1702 ATLANTIC AVE,LONGPORT BORO,21,2007,1,RES1,3001 -0115_13_14,-74.59999998,39.41586808,106 SO 18TH AVE,LONGPORT BORO,22,1989,1,GOV1,3004 -0115_13_15,-74.59801234,39.40906546,108 SO 18TH AV,LONGPORT BORO,,1964,1,RES1,3001 -0115_13_16,-74.57837811,39.41251179,110 SO 18TH AVE,LONGPORT BORO,17,1949,1,RES1,3001 -0115_13_18,-74.58570658,39.40709781,114 SO 18TH AVE,LONGPORT BORO,19,1951,1,GOV1,3004 -0115_13_19,-74.81734051,39.65608039,116 SO 18TH AVE,LONGPORT BORO,21,2014,1,RES1,3001 -0115_13_21.01,-74.59414481,39.42408395,1706 ATLANTIC AVE,LONGPORT BORO,21,1988,1,RES1,3001 -0115_13_4.01,-74.81598267,39.65376176,121 SO 17TH AVE,LONGPORT BORO,22,1999,1,RES1,3001 -0115_13_5,-74.82052597,39.64161364,117 SO 17TH AV,LONGPORT BORO,23,2009,1,RES1,3001 -0115_13_7,-74.8171585,39.6551145,111 SO 17TH AVE,LONGPORT BORO,18,1920,1,RES1,3001 -0115_13_8,-74.5858435,39.402844,109 SO 17TH AV,LONGPORT BORO,21,2015,1,RES1,3001 -0115_14_1,-74.60007031,39.41869143,1809 BEACH TERRACE,LONGPORT BORO,21,1989,1,RES1,3001 -0115_14_1.01,-74.60027575,39.40984794,1807 BEACH TERRACE,LONGPORT BORO,22,1988,1,RES1,3001 -0115_14_10,-74.59673155,39.42949131,105 SO 18TH AVE,LONGPORT BORO,21,2013,1,RES1,3001 -0115_14_11,-74.590928,39.4285195,103 SO 18TH AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_14_13,-74.60207241,39.43339017,1804 ATLANTIC AV,LONGPORT BORO,18,1955,1,RES1,3002 -0115_14_14,-74.62023914,39.36916387,102 SO 19TH AVE,LONGPORT BORO,,1894,1,RES1,3001 -0115_14_15,-74.5973555,39.4295265,104 SO 19TH AVE,LONGPORT BORO,22,2001,1,RES1,3001 -0115_14_16,-74.60125914,39.43412227,106 SO 19TH AV,LONGPORT BORO,18,1947,1,RES1,3004 -0115_14_17,-74.61265134,39.42297217,108 SO 19TH AV,LONGPORT BORO,22,2004,1,RES1,3001 -0115_14_18.01,-74.59159924,39.42919146,110 SO 19TH AVE,LONGPORT BORO,,1900,1,RES1,3001 -0115_14_19,-74.592214,39.4340695,114 SO 19TH AVE,LONGPORT BORO,21,1990,1,RES1,3001 -0115_14_2,-74.58348432,39.41647054,1805 BEACH TERRACE,LONGPORT BORO,22,1996,1,RES1,3001 -0115_14_20,-74.6071435,39.4133065,116 SO 19TH AVE,LONGPORT BORO,21,2006,1,RES1,3001 -0115_14_21.01,-74.59547163,39.42934979,1800 ATLANTIC AVE,LONGPORT BORO,21,1987,1,RES1,3001 -0115_14_22.01,-74.5967005,39.4303075,112 SO 19TH AVE,LONGPORT BORO,19,1981,1,RES1,3001 -0115_14_3,-74.5862955,39.403171,1803 BEACH TERRACCE,LONGPORT BORO,22,1998,1,GOV1,3004 -0115_14_5,-74.60424447,39.41042283,115 SO 18TH AV,LONGPORT BORO,21,1997,1,RES1,3001 -0115_14_6,-74.6026825,39.418996,113 SO 18TH AV,LONGPORT BORO,20,1997,1,RES1,3001 -0115_14_7,-74.60044061,39.41499927,109 S 18TH AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_14_9,-74.58757916,39.43246325,107 SO 18TH AVE,LONGPORT BORO,18,1986,1,RES1,3001 -0115_15_10,-74.6574745,39.400355,20TH & ATLANTIC AVES,LONGPORT BORO,,0,1,RES1,3001 -0115_15_11,-74.62005104,39.38166495,112 SO 20TH AVE,LONGPORT BORO,19,1960,1,RES1,3001 -0115_15_12,-74.62532,39.3846055,114 SO 20TH AVE,LONGPORT BORO,19,1971,1,RES1,3001 -0115_15_13,-74.59775216,39.43159632,116 SO 20TH AVE,LONGPORT BORO,21,2006,1,RES1,3001 -0115_15_3,-74.61867066,39.42481122,115 SO 19TH AVE,LONGPORT BORO,22,2007,1,GOV1,3004 -0115_15_4,-74.6136285,39.422086,113 SO 19TH AV,LONGPORT BORO,21,2003,1,RES1,3001 -0115_15_6,-74.61383678,39.42879517,109 SO 19TH AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_15_7,-74.64581884,39.3765974,105 SO 19TH AV,LONGPORT BORO,18,1955,1,RES1,3001 -0115_15_8,-74.65369549,39.37058722,101 SO 19TH AVE,LONGPORT BORO,22,1993,1,RES1,3001 -0115_15_9,-74.62654264,39.39271833,1904 ATLANTIC AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_16_1,-74.64393791,39.37765292,2009 BEACH TERRACE,LONGPORT BORO,22,1988,1,RES1,3001 -0115_16_10.01,-74.6303025,39.4097775,2004 ATLANTIC AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_16_11,-74.62711769,39.42506209,2006 ATLANTIC AVE,LONGPORT BORO,17,1950,1,RES1,3001 -0115_16_12,-74.62273925,39.42350955,102 SO 21ST AVE,LONGPORT BORO,22,1979,1,COM1,3004 -0115_16_14,-74.62487208,39.418368,104 SO 21ST AVE,LONGPORT BORO,22,1997,1,RES1,3001 -0115_16_15.01,-74.68306199,39.38953916,106 SO 21ST AVE,LONGPORT BORO,21,1998,1,RES1,3001 -0115_16_16.01,-74.63861724,39.40037824,112 SO 21ST AVE,LONGPORT BORO,20,1990,1,RES1,3001 -0115_16_17.01,-74.62868648,39.38531251,109 SO 20TH AVE,LONGPORT BORO,20,1990,1,RES1,3001 -0115_16_18.01,-74.66852448,39.38686214,2002 ATLANTIC AVE,LONGPORT BORO,22,1996,1,RES1,3001 -0115_16_2,-74.649378,39.37624067,2007 BEACH TERRACE,LONGPORT BORO,21,1999,1,RES1,3001 -0115_16_20.01,-74.65691968,39.39697897,110 SO 21ST AVE,LONGPORT BORO,23,1995,1,RES1,3001 -0115_16_3,-74.63973417,39.3841215,2005 BEACH TERRACE,LONGPORT BORO,21,1989,1,RES1,3001 -0115_16_4,-74.62771217,39.3840985,2003 BEACH TERRCE,LONGPORT BORO,22,1989,1,RES1,3001 -0115_16_5,-74.61147086,39.43130422,2001 BEACH TERRACE,LONGPORT BORO,21,1989,1,RES1,3001 -0115_16_7,-74.6278845,39.3859785,111 SO 20TH AVE,LONGPORT BORO,20,1997,1,RES1,3001 -0115_16_8,-74.6628995,39.396268,107 SO 20TH AVE,LONGPORT BORO,22,1999,1,RES1,3001 -0115_17_1,-74.62548795,39.41830519,116 SO 22ND AVE,LONGPORT BORO,,1982,1,RES1,3001 -0115_17_10,-74.61967188,39.43359767,102 SO 22ND AVE,LONGPORT BORO,20,2009,1,RES1,3001 -0115_17_12,-74.62400121,39.41937358,110 SO 22ND AVE,LONGPORT BORO,,1895,1,RES1,3001 -0115_17_13,-74.6212195,39.4241245,112 SO 22ND AVE,LONGPORT BORO,,1901,1,RES1,3001 -0115_17_2,-74.66347679,39.39290553,2104 BEACH TERRACE,LONGPORT BORO,23,2000,1,RES1,3001 -0115_17_4,-74.6338618,39.41045247,111 SO 21ST AVE,LONGPORT BORO,20,1896,1,RES1,3001 -0115_17_5,-74.62508095,39.41696431,109 SO 21ST AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_17_7,-74.6308483,39.42506495,105 SO 21ST AVE,LONGPORT BORO,17,1890,1,RES1,3001 -0115_17_9,-74.6327125,39.420718,101 SO 21ST AVE,LONGPORT BORO,18,1940,1,GOV1,3004 -0115_18_10,-74.6455125,39.4332565,2206 ATLANTIC AVE,LONGPORT BORO,,1955,1,RES1,3001 -0115_18_11,-74.63628381,39.42831783,102 SO 23RD AVE,LONGPORT BORO,22,2017,1,RES1,3001 -0115_18_12,-74.6381701,39.43085976,104 SO 23RD STREET,LONGPORT BORO,22,2018,1,RES1,3001 -0115_18_13,-74.63401981,39.43393107,108 SO 23RD AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_18_15,-74.62365836,39.43276674,112 SO 23RD AVE,LONGPORT BORO,19,1900,1,RES1,3001 -0115_18_4,-74.63121382,39.42147697,113 SO 22ND AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_18_9,-74.63237696,39.42970147,2200 ATLANTIC AVE,LONGPORT BORO,22,2001,1,RES1,3001 -0115_19_1.01,-74.4787485,39.347003,2199 ATLANTIC AVE,LONGPORT BORO,21,1950,1,RES1,3001 -0115_19_10,-74.47167361,39.34280766,2207 ATLANTIC AVE,LONGPORT BORO,19,1955,1,RES1,3001 -0115_19_11,-74.53435007,39.44863563,2301 ATLANTIC AV,LONGPORT BORO,,0,1,RES1,3001 -0115_19_12,-74.92754294,39.48194164,2305 ATLANTIC AVE,LONGPORT BORO,,0,1,RES1,3001 -0115_19_2,-74.4855455,39.336201,2203 ATLANTIC AV,LONGPORT BORO,,1987,1,GOV1,3004 -0115_19_3,-74.47641689,39.33977989,2205 ATLANTIC AV,LONGPORT BORO,20,2018,1,RES1,3001 -0115_19_4,-74.4863095,39.3364665,6 BAY HAVEN DR,LONGPORT BORO,,1970,1,RES1,3001 -0115_19_5,-74.48124601,39.34904334,4 BAY HAVEN DR,LONGPORT BORO,18,1970,1,RES1,3001 -0115_19_7,-74.53907065,39.4598178,BAY HAVEN DR,LONGPORT BORO,,0,1,RES1,3001 -0115_19_8,-74.480496,39.3430845,3 BAY HAVEN DR,LONGPORT BORO,18,1970,1,RES1,3001 -0115_19_9,-74.48128352,39.34846117,5 BAY HAVEN DR,LONGPORT BORO,20,2015,1,RES1,3001 -0115_2_1,-74.81257394,39.3534323,122 SO 12TH AVE.,LONGPORT BORO,23,2009,1,RES1,3001 -0115_2_10,-74.5514675,39.371523,107 SO 11TH AVE,LONGPORT BORO,21,2001,1,RES1,3001 -0115_2_11,-74.5388635,39.384741,105 SO 11TH AVE,LONGPORT BORO,22,2004,1,RES1,3001 -0115_2_12,-74.54002541,39.38217112,103 SO 11TH AVE,LONGPORT BORO,22,1998,1,RES1,3001 -0115_2_13,-74.53477354,39.38322434,1100 ATLANTIC AVE,LONGPORT BORO,18,1973,1,RES1,3001 -0115_2_14,-74.5388595,39.3799205,1102 ATLANTIC AVE,LONGPORT BORO,18,1973,1,RES2,3005 -0115_2_15,-74.55239105,39.37728319,1106 ATLANTIC AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_2_16,-74.54956024,39.37901411,104 SO 12TH AVE,LONGPORT BORO,19,1960,1,RES1,3001 -0115_2_17,-74.5334195,39.3770375,106 SO 12TH AVE,LONGPORT BORO,18,1899,1,RES1,3001 -0115_2_19,-74.5368525,39.381413,110 SO 12TH AVE,LONGPORT BORO,22,2016,1,RES1,3001 -0115_2_2,-74.8237685,39.3674385,1107 BEACH TERRACE,LONGPORT BORO,22,1984,1,RES1,3001 -0115_2_20,-74.53415489,39.38404387,112 SO 12TH AVE,LONGPORT BORO,20,1920,1,RES1,3001 -0115_2_21,-74.54038613,39.38520842,114 SO 12TH AVE,LONGPORT BORO,18,1957,1,RES1,3001 -0115_2_22,-74.53667356,39.37197523,116 SO 12TH AVE,LONGPORT BORO,21,2015,1,RES1,3001 -0115_2_23,-74.53558957,39.37298235,118 SO 12TH AVE,LONGPORT BORO,21,2013,1,RES1,3001 -0115_2_3.01,-74.69540546,39.35174117,1105 BEACH AVE,LONGPORT BORO,22,1986,1,RES1,3001 -0115_2_4.01,-74.885355,39.4638595,121 S 11TH AVE,LONGPORT BORO,22,1980,1,RES1,3001 -0115_2_5,-74.76753738,39.32930322,117 SO 11TH AVE,LONGPORT BORO,19,1888,1,RES1,3001 -0115_2_6,-74.768329,39.3488265,115 SO 11TH AVE,LONGPORT BORO,19,1979,1,RES1,3001 -0115_2_8,-74.53935564,39.37484795,111 SO 11TH AVE,LONGPORT BORO,22,2018,1,RES1,3001 -0115_2_9,-74.536447,39.372702,109 S 11TH AVE,LONGPORT BORO,22,2004,1,RES1,3001 -0115_20_10,-74.48480082,39.33566317,102 SO 24TH AV,LONGPORT BORO,21,2016,1,RES1,3001 -0115_20_11,-74.484518,39.3377325,104 SO 24TH AV,LONGPORT BORO,21,2014,1,RES1,3001 -0115_20_2,-74.63661348,39.43156555,2303 BEACH TERRACE,LONGPORT BORO,23,2006,1,RES1,3001 -0115_20_3,-74.61943443,39.43027112,2301 BEACH TERRACE,LONGPORT BORO,23,1988,1,GOV1,3004 -0115_20_5,-74.643911,39.428592,105 SO 23RD AVE,LONGPORT BORO,19,1920,1,RES1,3001 -0115_20_6.01,-74.48341762,39.34078716,103 SO 23RD AVE,LONGPORT BORO,19,1890,1,RES1,3001 -0115_20_7.01,-74.48337628,39.33930767,2300 ATLANTIC AVE,LONGPORT BORO,18,1985,1,RES1,3001 -0115_20_8,-74.48695645,39.33707865,2304 ATLANTIC AVE,LONGPORT BORO,17,1925,1,RES1,3001 -0115_20_9,-74.481501,39.348747,2308 ATLANTIC AVE,LONGPORT BORO,18,1979,1,RES1,3001 -0115_21_1,-74.48527,39.339484,24TH TO 25TH AVES,LONGPORT BORO,,0,1,RES1,3001 -0115_21_12.01,-74.482468,39.350618,112 SO 25TH AVE,LONGPORT BORO,20,1975,1,RES1,3001 -0115_21_13.01,-74.48312017,39.34916027,2405 BEACH AVE,LONGPORT BORO,20,1985,1,RES1,3001 -0115_21_2,-74.66832458,39.41578431,115 SO 24TH AVE,LONGPORT BORO,20,1990,1,RES1,3001 -0115_21_3,-74.4792505,39.3402395,113 SO 24TH AVE,LONGPORT BORO,20,1992,1,RES1,3001 -0115_21_4,-74.4855595,39.335739,109 SO 24TH AVE,LONGPORT BORO,21,2005,1,RES1,3001 -0115_21_5,-74.48082,39.348455,105 SO 24TH AVE,LONGPORT BORO,20,1990,1,RES1,3001 -0115_21_7,-74.53232059,39.46699127,2404 ATLANTIC AVE,LONGPORT BORO,22,2004,1,RES1,3001 -0115_21_8,-74.53837372,39.46922957,102 SO 25TH AV,LONGPORT BORO,18,1940,1,RES1,3001 -0115_21_9,-74.68859946,39.41241201,104 SO 25TH AVE,LONGPORT BORO,18,1900,1,RES1,3001 -0115_22_1,-74.9156786,39.50183166,2409 ATLANTIC AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_22_2,-74.88541216,39.47126179,2407 ATLANTIC AV,LONGPORT BORO,18,1928,1,RES1,3001 -0115_22_5,-74.93168,39.489186,2406 OBERON AVE,LONGPORT BORO,18,1940,1,RES4,3001 -0115_22_6,-74.923841,39.5100485,2408 OBERON AV,LONGPORT BORO,18,1940,1,RES1,3001 -0115_23_1,-74.950264,39.508582,2409 OBERON AVE,LONGPORT BORO,17,1920,1,RES1,3001 -0115_23_10,-74.5779815,39.343231,2409 OBERON AVE,LONGPORT BORO,21,1997,1,RES1,3001 -0115_23_2,-74.9478415,39.5185825,2407 OBERON AV,LONGPORT BORO,20,2007,1,RES1,3001 -0115_23_3,-74.92868735,39.50718408,2405 OBERON AVE,LONGPORT BORO,17,1920,1,RES1,3001 -0115_23_4,-74.92378019,39.50762238,2403 OBERON AVE,LONGPORT BORO,19,2006,1,RES1,3001 -0115_23_5,-74.92418394,39.5107172,2401 OBERON AV,LONGPORT BORO,21,2008,1,RES1,3001 -0115_23_6,-74.91532563,39.53107983,OBERON AV,LONGPORT BORO,17,1900,1,RES1,3001 -0115_23_7,-74.9399295,39.519323,2403 OBERON AVE,LONGPORT BORO,17,1900,1,GOV1,3004 -0115_23_8,-74.959002,39.5046555,2405 OBERON AVE BAY FRONT,LONGPORT BORO,21,1985,1,RES1,3001 -0115_23_9,-74.59403756,39.34093224,2407 OBERON BAY FRONT,LONGPORT BORO,35,1940,1,RES1,3001 -0115_23_9.01,-74.83615737,39.37101162,2407 OBERON AVE UNIT B,LONGPORT BORO,35,1940,1,RES1,3001 -0115_24_1,-74.70577493,39.42311603,25TH TO 26TH AVES,LONGPORT BORO,,0,1,RES1,3001 -0115_24_13.01,-74.9159525,39.503376,2506 ATLANTIC AVE,LONGPORT BORO,18,1976,1,RES1,3001 -0115_24_14.01,-74.547478,39.4673435,2500 ATLANTIC AVE,LONGPORT BORO,21,2017,1,RES1,3001 -0115_24_2.01,-74.48560362,39.3471424,110 SO 26TH AVE,LONGPORT BORO,,1950,1,RES1,3001 -0115_24_3,-74.53717459,39.46721927,107 SO 25TH AVE,LONGPORT BORO,20,1897,1,RES1,3001 -0115_24_4,-74.537686,39.4652515,103 SO 25TH AVE,LONGPORT BORO,20,1984,1,RES1,3001 -0115_24_5.01,-74.55775157,39.46951324,2502 ATLANTIC AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_24_6.01,-74.902059,39.4733835,2504 ATLANTIC AVE,LONGPORT BORO,20,1996,1,RES1,3001 -0115_24_7.01,-74.883935,39.461973,102 SO 26TH AVE,LONGPORT BORO,18,1978,1,RES1,3001 -0115_24_8.01,-74.5493425,39.46626,104 SO 26TH AVE,LONGPORT BORO,20,1989,1,RES1,3001 -0115_25_1,-74.9462305,39.5174945,2509 ATLANTIC AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_25_10,-74.57525868,39.34979151,2506 OBERON AVE,LONGPORT BORO,17,1893,1,RES1,3001 -0115_25_12,-74.5753175,39.338142,4 SO 26TH AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_25_2,-74.93756444,39.51829829,2507 ATLANTIC AVE,LONGPORT BORO,20,2018,1,RES1,3001 -0115_25_3.01,-74.920912,39.5191465,2505 ATLANTIC AVE,LONGPORT BORO,21,2017,1,RES1,3001 -0115_25_5.01,-74.93315602,39.49604227,2501 ATLANTIC AVE,LONGPORT BORO,21,2018,1,RES1,3001 -0115_25_6,-74.9210545,39.531838,3 SO 25TH AVE,LONGPORT BORO,20,2015,1,RES3A,3001 -0115_25_7,-74.93111,39.5147225,2500 OBERON AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_25_8,-74.9483465,39.5163815,2502 OBERON AVE,LONGPORT BORO,27,1925,1,RES1,3001 -0115_25_9,-74.578538,39.335192,2504 OBERON AVE,LONGPORT BORO,27,1925,1,RES1,3001 -0115_26_1,-74.75833005,39.43326771,2507 OBERON AVE,LONGPORT BORO,21,2007,1,RES1,3001 -0115_26_2,-74.79245002,39.41720393,2505 OBERON AVE,LONGPORT BORO,20,2007,1,RES1,3001 -0115_26_5.01,-74.94254229,39.5260379,5 NO 25TH AVE UNIT #1,LONGPORT BORO,39,1979,1,RES1,3001 -0115_27_1,-74.55347823,39.46529158,26TH TO 27TH AVES,LONGPORT BORO,,0,1,RES1,3001 -0115_27_10,-74.9071095,39.486841,108 SO 27TH AVE,LONGPORT BORO,21,1995,1,RES1,3001 -0115_27_11,-74.5515835,39.466241,109 SO 26TH AVE,LONGPORT BORO,23,1990,1,RES1,3001 -0115_27_2,-74.8933615,39.479434,107 SO 26TH AVE,LONGPORT BORO,21,2000,1,RES1,3001 -0115_27_4,-74.888786,39.505704,103 S 26TH AVE,LONGPORT BORO,19,1970,1,RES1,3001 -0115_27_5,-74.92321529,39.52145085,2600 ATLANTIC AVE,LONGPORT BORO,21,1998,1,RES1,3001 -0115_27_7,-74.91578655,39.51489481,102 SO 27TH AVE,LONGPORT BORO,21,1965,1,RES1,3001 -0115_27_8,-74.89804617,39.51219137,104 SO 27TH AVE,LONGPORT BORO,20,2006,1,RES1,3001 -0115_27_9,-74.91647228,39.49819572,106 SO 27TH AVE,LONGPORT BORO,21,2015,1,RES1,3001 -0115_28_10,-74.7586772,39.43026676,4 SO 27TH AVE,LONGPORT BORO,16,1920,4,GOV1,3004 -0115_28_3,-74.59341834,39.349396,2603 ATLANTIC AVE,LONGPORT BORO,18,1970,1,GOV1,3004 -0115_28_7,-74.8252105,39.3761135,2604 OBERON AVE,LONGPORT BORO,20,2018,1,RES1,3001 -0115_28_8,-74.8193923,39.37830879,2606 OBERON AVE,LONGPORT BORO,20,2018,1,RES1,3001 -0115_28_9,-74.82978134,39.39861548,2608 OBERON AVE,LONGPORT BORO,20,1996,1,RES1,3001 -0115_29_1,-74.74652445,39.44612636,2 NO 27TH AVE,LONGPORT BORO,18,1939,1,RES1,3001 -0115_29_2,-74.72684803,39.44941076,2607 OBERON AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_29_3,-74.807959,39.429889,2605 OBERON AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_29_4,-74.8185799,39.40967895,2603 OBERON AVE,LONGPORT BORO,19,2007,1,GOV1,3004 -0115_29_5,-74.84431972,39.37288691,2601 OBERON AVE,LONGPORT BORO,18,1937,1,RES1,3001 -0115_29_6,-74.713843,39.4417995,3 NO 26TH AVE,LONGPORT BORO,19,1925,1,RES1,3001 -0115_29_7,-74.72688497,39.46025319,5 NO 26TH AVE,LONGPORT BORO,18,2014,1,RES1,3001 -0115_29_8,-74.75350906,39.44706243,4 NO 27TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_29_9,-74.71206709,39.46536816,2602 ABSEQUAN AVE,LONGPORT BORO,20,2004,1,RES1,3001 -0115_3_1,-74.57302867,39.37608021,1101 ATLANTIC AVE,LONGPORT BORO,19,1979,1,RES1,3001 -0115_3_2,-74.55675048,39.38330298,1103 ATLANTIC AVE,LONGPORT BORO,21,1980,1,RES1,3001 -0115_3_3,-74.5382225,39.3871055,1105 ATLANTIC AVE,LONGPORT BORO,21,2013,1,RES1,3001 -0115_3_4,-74.5457995,39.388622,1107 ATLANTIC AVE,LONGPORT BORO,,1987,1,RES1,3001 -0115_32_1,-74.84342416,39.37775797,2707 ATLANTIC AVE,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_10,-74.73194372,39.45360413,2704 OBERON AV,LONGPORT BORO,18,2010,1,RES1,3001 -0115_32_11,-74.78013773,39.44329546,2706 OBERON AVE,LONGPORT BORO,20,2013,1,RES1,3001 -0115_32_12,-74.72807399,39.45347418,4 SO 28TH AV,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_13,-74.7501805,39.451669,6 SO 28TH AV,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_14,-74.71539,39.4507035,8 SO 28TH AVE,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_2,-74.8320905,39.386241,2705 ATLANTIC AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_32_3,-74.8300155,39.376601,2703 ATLANTIC AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_32_4,-74.75405398,39.43253584,2701 ATLANTIC AV,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_5,-74.82302833,39.38930256,7 SO 27TH AV,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_6,-74.84522663,39.39063669,5 SO 27TH AV,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_7,-74.82489895,39.41091583,3 SO 27TH AV,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_8,-74.71522053,39.43640967,2700 OBERON AVE,LONGPORT BORO,18,1938,1,RES1,3001 -0115_32_9,-74.7449913,39.45237182,2702 OBERON AVE,LONGPORT BORO,18,1938,1,RES1,3001 -0115_33_10.01,-74.6154818,39.45942703,18 N 28TH AVE,LONGPORT BORO,45,1967,2,RES1,3001 -0115_33_11,-74.7770554,39.64290938,12 NO 28TH AV,LONGPORT BORO,45,1967,2,RES1,3001 -0115_33_12,-74.74009417,39.63997265,8 NO 28TH AVE,LONGPORT BORO,45,1967,2,RES1,3001 -0115_33_15.01,-74.577842,39.4478145,14 NO 28TH AVE,LONGPORT BORO,45,1967,2,RES1,3001 -0115_33_5,-74.53528413,39.47117931,2700 SUNSET AV,LONGPORT BORO,45,1965,2,RES1,3001 -0115_33_6,-74.60560548,39.49070789,2710 SUNSET AVE,LONGPORT BORO,18,1970,1,RES1,3001 -0115_33_7,-74.56495168,39.4791954,30 NO 28TH AVE,LONGPORT BORO,45,1967,2,RES1,3001 -0115_33_8,-74.53976032,39.47875914,24 NO 28TH AV,LONGPORT BORO,45,1967,2,GOV1,3004 -0115_33_9,-74.55208878,39.47675707,20 NO 28TH AVE,LONGPORT BORO,45,1967,2,RES1,3001 -0115_34_1,-74.5468525,39.474229,2701 SUNSET AVE,LONGPORT BORO,19,1991,1,RES1,3001 -0115_34_2,-74.5669368,39.47472367,2703 SUNSET AV,LONGPORT BORO,,1955,1,RES1,3001 -0115_34_3,-74.58284307,39.49422485,2707 SUNSET AVE,LONGPORT BORO,20,1981,1,RES1,3001 -0115_34_4,-74.62726234,39.44006776,2711 SUNSET AVE,LONGPORT BORO,20,1991,1,RES1,3001 -0115_34_5,-74.68614857,39.49898992,2717 SUNSET AVE,LONGPORT BORO,,1928,1,RES1,3001 -0115_35_1,-74.8350715,39.427788,111 SO 28TH AVE.,LONGPORT BORO,22,2013,1,RES1,3001 -0115_36_1,-74.9516255,39.51762,2809 ATLANTIC AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_36_10,-74.9480935,39.5280145,6 S 29TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_36_2,-74.73771393,39.46922343,2805 ATLANTIC AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_36_3,-74.727974,39.4567745,2803 ATLANTIC AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_36_4,-74.720381,39.4492215,2801 ATLANTIC AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_36_5,-74.755795,39.447241,7 SO 28TH AVE,LONGPORT BORO,18,1944,1,RES1,3001 -0115_36_6.01,-74.93354871,39.52144317,5 SO 28TH AVE,LONGPORT BORO,18,1990,1,RES1,3001 -0115_37_1,-74.680758,39.4448095,29TH & VENTNOR AVES,LONGPORT BORO,,0,1,RES1,3001 -0115_37_10,-74.6870475,39.500033,32 NO 29TH AVE,LONGPORT BORO,19,2016,1,RES1,3001 -0115_37_2,-74.626152,39.44171,25 NO 28TH AVE,LONGPORT BORO,18,1956,1,RES1,3001 -0115_37_3,-74.67866553,39.44684566,31 NO 28TH AVE,LONGPORT BORO,18,1956,1,RES1,3001 -0115_37_4,-74.67861852,39.49515933,37 NO 28TH AVE,LONGPORT BORO,18,1954,1,RES1,3001 -0115_37_5.01,-74.5020365,39.4269715,2800 SUNSET AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_37_6.01,-74.48442353,39.44206031,2808 SUNSET AVE,LONGPORT BORO,18,2016,1,RES1,3001 -0115_37_7,-74.755605,39.4017045,46 NO 29TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_37_8,-74.52357696,39.42961369,42 NO 29TH AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_37_9,-74.48796781,39.42073054,38 NO 29TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_38_1,-74.46888705,39.443468,2801 SUNSET AVE,LONGPORT BORO,20,1979,1,RES1,3001 -0115_38_2,-74.515439,39.437932,2805 SUNSET AVE,LONGPORT BORO,19,1978,1,RES1,3001 -0115_39_10,-74.73173798,39.45998633,102 SO PELHAM AVE,LONGPORT BORO,21,1989,1,RES1,3004 -0115_39_11,-74.73625041,39.44805725,104 SO PELHAM AVE,LONGPORT BORO,22,2008,1,RES1,3001 -0115_39_2,-74.84334064,39.40200303,111 SO 29TH AVE,LONGPORT BORO,22,1993,1,RES1,3001 -0115_39_3,-74.83970108,39.41447072,107 SO 29TH AVE,LONGPORT BORO,18,1956,1,RES1,3001 -0115_39_4,-74.7200915,39.449404,105 SO 29TH AVE,LONGPORT BORO,,1960,1,COM7,3004 -0115_39_5,-74.72363631,39.45668593,103 SO 29TH AVE,LONGPORT BORO,22,2011,1,RES1,3001 -0115_39_8,-74.785588,39.444488,2902 ATLANTIC AVE,LONGPORT BORO,18,1938,1,RES1,3001 -0115_39_9,-74.9641135,39.5180495,100 SO PELHAM AVE,LONGPORT BORO,19,1953,1,RES1,3001 -0115_4_10,-74.54750135,39.39236949,101 S 12TH AVE,LONGPORT BORO,21,1993,1,RES1,3001 -0115_4_11,-74.5329425,39.399664,1204 ATLANTIC AVE,LONGPORT BORO,16,1940,1,RES1,3001 -0115_4_12,-74.584658,39.3762905,102 SO 13TH AVE,LONGPORT BORO,21,2013,1,RES1,3001 -0115_4_13,-74.5680049,39.38810279,104 SO 13TH AVE,LONGPORT BORO,20,1990,1,RES1,3001 -0115_4_14,-74.54015461,39.38818782,108 SO 13TH AVE,LONGPORT BORO,,1900,1,RES1,3001 -0115_4_16,-74.57480532,39.37044648,112 SO 13TH AVE,LONGPORT BORO,20,1980,1,RES1,3001 -0115_4_18.01,-74.54615284,39.38491252,116 SO 13TH AVE,LONGPORT BORO,19,1950,1,RES1,3001 -0115_4_19.01,-74.53337874,39.37906484,118 SO 13TH AVE,LONGPORT BORO,19,1975,1,RES1,3001 -0115_4_20.01,-74.53143793,39.38491067,117 SO 12TH AVE,LONGPORT BORO,21,2001,1,RES1,3001 -0115_4_4,-74.53607935,39.38039304,113 SO 12TH AVE,LONGPORT BORO,17,1950,1,RES1,3001 -0115_4_5,-74.53288093,39.37767629,111 SO 12TH AVE,LONGPORT BORO,22,1990,1,RES1,3001 -0115_4_6,-74.546962,39.37911,109 SO 12TH AVE,LONGPORT BORO,17,1950,1,RES1,3001 -0115_4_7,-74.5597165,39.3708645,107 SO 12TH AVE,LONGPORT BORO,22,2007,1,RES1,3001 -0115_4_9,-74.5325805,39.388969,103 SO 12TH AVE,LONGPORT BORO,22,2012,1,RES1,3001 -0115_40_1,-74.97134196,39.51689668,2909 ATLANTIC AVE,LONGPORT BORO,19,1951,1,RES1,3001 -0115_40_2,-74.8906155,39.557925,2903 ATLANTIC AVE,LONGPORT BORO,19,1955,1,RES1,3001 -0115_40_3,-74.95175,39.5374685,2901 ATLANTIC AVE,LONGPORT BORO,20,2000,1,RES1,3001 -0115_40_4,-74.88356259,39.59340673,5 SO 29TH AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_40_5,-74.88348127,39.5986297,3 SO 29TH AVE,LONGPORT BORO,,1952,1,RES1,3001 -0115_40_6,-74.78914988,39.64428631,2904 PACIFIC AVE,LONGPORT BORO,20,2015,1,RES3A,3001 -0115_40_7,-74.5357875,39.4737835,6 SO PELHAM AVE,LONGPORT BORO,21,2018,1,RES1,3001 -0115_40_8,-74.776858,39.6453335,8 SO PELHAM AVE,LONGPORT BORO,20,2013,1,RES3A,3001 -0115_42_1,-74.581434,39.473243,1 NO 29TH AVE,LONGPORT BORO,19,2017,1,RES1,3001 -0115_42_2,-74.60354033,39.49941448,3 NO 29TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_42_3,-74.63360664,39.45695901,5 NO 29TH AVE,LONGPORT BORO,19,2011,1,RES1,3001 -0115_42_4,-74.63807828,39.48415871,7 NO 29TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_42_5,-74.71698204,39.39758953,11 NO 29TH AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_42_7,-74.4896345,39.429849,2900 LONGPORT DRIVE,LONGPORT BORO,18,1950,1,COM4,3004 -0115_42_8,-74.4914045,39.437696,2904 LONGPORT DRIVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_43_1,-74.7133094,39.3778859,2 NO PELHAM AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_43_10,-74.5108375,39.4290165,4 NO PELHAM AVE,LONGPORT BORO,20,2018,1,RES1,3001 -0115_43_2,-74.68293114,39.44019676,1 NO OVERBROOK AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_43_3,-74.69077253,39.4940188,3 NO OVERBROOK AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_43_5,-74.49721423,39.43446397,13 NO OVERBROOK AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_43_6.01,-74.49640675,39.45130604,17 NO OVERBROOK AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_43_7,-74.71206294,39.42892579,2906 LONGPORT DRIVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_43_8,-74.765017,39.403683,2908 LONGPORT DRIVE,LONGPORT BORO,19,1981,1,RES1,3001 -0115_43_9,-74.735952,39.434782,18 NO PELHAM AVE,LONGPORT BORO,,1951,1,RES1,3001 -0115_43_9.01,-74.50465713,39.4454158,10 NO PELHAM AVE,LONGPORT BORO,19,1990,1,RES1,3001 -0115_44_1,-74.55918606,39.35865654,2905 LONGPORT DRIVE,LONGPORT BORO,19,2011,1,RES1,3001 -0115_44_2,-74.55066834,39.36049447,21 NORTH 29TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_44_3,-74.56511164,39.35275082,25 NO 29TH AVE,LONGPORT BORO,20,2015,1,RES4,3001 -0115_44_4,-74.847051,39.4408165,2900 SUNSET AVE,LONGPORT BORO,20,1987,1,RES1,3001 -0115_44_5,-74.84242077,39.48123954,36 NO OVERBROOK AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_44_6,-74.57172076,39.36492993,26 NO OVERBROOK AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_45_1,-74.83141767,39.45312264,24 NO PELHAM AVE,LONGPORT BORO,18,1947,1,RES1,3001 -0115_45_10,-74.63999746,39.53158834,40 NO PELHAM AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_45_11,-74.56181717,39.52668553,32 NO PELHAM AVE,LONGPORT BORO,18,1950,1,REL1,3004 -0115_45_12,-74.83732869,39.48193516,26 NO PELHAM AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_45_2,-74.575133,39.3662625,2909 LONGPORT DRIVE,LONGPORT BORO,18,1950,1,COM3,3004 -0115_45_3,-74.581293,39.342068,29 NO OVERBROOK AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_45_4,-74.817367,39.4715325,33 NO OVERBROOK AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_45_5,-74.53417615,39.52800065,39 NO OVERBROOK AVE,LONGPORT BORO,18,1949,1,RES1,3001 -0115_45_6,-74.63417473,39.51898644,45 NO OVERBROOK AVE,LONGPORT BORO,20,2001,1,RES1,3001 -0115_45_7,-74.61860222,39.60163905,2906 SUNSET AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_45_8,-74.80442167,39.55625851,2908 SUNSET AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_45_9,-74.646212,39.550354,46 NO PELHAM AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_46_3,-74.73198984,39.58707202,2917 SUNSET AVE,LONGPORT BORO,21,1994,1,COM8,3004 -0115_46_6,-74.564823,39.372672,2931 SUNSET AVE,LONGPORT BORO,21,1985,1,RES1,3001 -0115_46_7.02,-74.62576539,39.5045054,2901 SUNSET AVE,LONGPORT BORO,22,1992,1,COM7,3004 -0115_46_8.01,-74.63598484,39.53013552,2905 SUNSET AVE,LONGPORT BORO,20,1980,1,RES1,3001 -0115_47_1,-74.7519675,39.447687,105 SO PELHAM AVE,LONGPORT BORO,22,2017,1,RES1,3001 -0115_47_2,-74.9641975,39.5129705,103 SO PELHAM AVE,LONGPORT BORO,20,2010,1,RES1,3001 -0115_47_3,-74.88736302,39.55843283,101 SO PELHAM AVE,LONGPORT BORO,21,2005,1,RES1,3001 -0115_47_4,-74.97104325,39.51147165,100 SO MANOR AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_47_5,-74.955398,39.533324,102 SO MANOR AVE,LONGPORT BORO,19,1950,1,RES1,3001 -0115_47_6,-74.949972,39.5160885,104 SO MANOR AVE,LONGPORT BORO,22,1999,1,RES1,3001 -0115_48_1,-74.9650635,39.530868,105 SO MANOR AVE,LONGPORT BORO,20,1990,1,RES1,3001 -0115_48_2,-74.97248967,39.50830797,103 SO MANOR AVE,LONGPORT BORO,19,1970,1,RES1,3001 -0115_48_3,-74.75336924,39.65182099,101 SO MANOR AVE,LONGPORT BORO,18,1970,1,RES1,3001 -0115_48_4,-74.617701,39.449848,100 SO 30TH AVE,LONGPORT BORO,19,1970,1,RES1,3001 -0115_48_5,-74.72535268,39.64312034,102 SO 30TH AVE,LONGPORT BORO,21,2005,1,RES1,3001 -0115_48_6,-74.890106,39.5576925,104 SO 30TH AVE,LONGPORT BORO,19,1975,1,RES1,3001 -0115_49_1,-74.54962145,39.47374468,2921 ATLANTIC AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_49_2,-74.59048082,39.45904948,2915 ATLANTIC AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_49_4,-74.60718356,39.48195034,10 SO MANOR AVE,LONGPORT BORO,18,1956,1,RES1,3001 -0115_49_5,-74.563333,39.471106,20 SO. MANOR AVE.,LONGPORT BORO,21,2004,1,RES1,3001 -0115_5_1,-74.58711552,39.37110382,1201 ATLANTIC AVE,LONGPORT BORO,22,1978,1,RES1,3001 -0115_5_2,-74.58232016,39.37791899,1203 ATLANTIC AVE,LONGPORT BORO,22,2008,1,RES1,3001 -0115_5_3,-74.60067946,39.38689916,1205 ATLANTIC AVE,LONGPORT BORO,22,1997,1,RES1,3001 -0115_5_4,-74.60733994,39.39856809,1207 ATLANTIC AVE,LONGPORT BORO,21,1978,1,RES1,3001 -0115_50_1,-74.60359836,39.50053033,2933 ATLANTIC AVE,LONGPORT BORO,21,2006,1,RES1,3001 -0115_50_2,-74.554249,39.5032315,2927 ATLANTIC AVE,LONGPORT BORO,,1948,1,RES1,3001 -0115_50_3,-74.6097845,39.4902325,19 SO MANOR AVE,LONGPORT BORO,18,1948,1,GOV1,3004 -0115_50_4,-74.61966788,39.4635669,2928 PACIFIC AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_50_5,-74.629825,39.4925495,22 SO 30TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_50_5.01,-74.625283,39.439217,24 SO 30TH AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_51_1,-74.6691221,39.4626628,2921 PACIFIC AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_51_2,-74.6832295,39.450848,2913 PACIFIC AVE,LONGPORT BORO,18,1953,1,RES1,3001 -0115_51_3,-74.68951304,39.49839734,1 SO PELHAM AVE,LONGPORT BORO,18,1953,1,RES1,3001 -0115_51_4,-74.49207047,39.43084296,2 SO MANOR AVE,LONGPORT BORO,21,2015,1,RES1,3001 -0115_51_5,-74.6897842,39.49754866,4 SO MANOR AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_52_1,-74.5249365,39.419407,2931 PACIFIC AVE,LONGPORT BORO,18,1950,1,COM1,3004 -0115_52_2,-74.49270035,39.42143452,15 SO MANOR AVE,LONGPORT BORO,20,2013,1,RES3A,3001 -0115_52_3,-74.49088759,39.43221916,11 SO MANOR AVE,LONGPORT BORO,18,1955,1,GOV1,3004 -0115_52_4,-74.51089494,39.43648634,7 SO MANOR AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_52_5,-74.55606099,39.35791854,1 SO MANOR AVE,LONGPORT BORO,20,2014,1,RES1,3001 -0115_52_6,-74.8316201,39.44317847,2 SO 30TH AVE,LONGPORT BORO,21,2006,1,RES1,3001 -0115_52_7,-74.55594,39.359053,8 SO 30TH AVE,LONGPORT BORO,20,2006,1,GOV1,3004 -0115_52_8,-74.51192296,39.43643116,14 SO 30TH AVE,LONGPORT BORO,20,2005,1,RES1,3001 -0115_52_9,-74.50610944,39.44403217,18 SO 30TH AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_53_1,-74.5527625,39.3662225,2 NO MANOR AVE,LONGPORT BORO,18,1953,1,RES1,3001 -0115_53_2,-74.51949498,39.44239952,2915 VENTNOR AVE,LONGPORT BORO,18,1953,1,RES1,3001 -0115_53_3,-74.71244735,39.43105614,5 NO PELHAM AVE,LONGPORT BORO,19,2017,1,RES1,3001 -0115_53_4,-74.57268238,39.3439712,9 NO PELHAM AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_53_5,-74.55826917,39.35750667,15 NO PELHAM AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_53_6,-74.5704165,39.3653115,2918 LONGPORT DRIVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_53_7,-74.8302775,39.4450545,2924 LONGPORT DRIVE,LONGPORT BORO,18,1958,1,RES1,3001 -0115_53_8,-74.56107695,39.36011784,8 NO MANOR AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_53_9,-74.55651783,39.35808699,4 NO MANOR AVE,LONGPORT BORO,19,2012,1,RES3A,3001 -0115_54_1,-74.86413251,39.43638667,1 NO MANOR AVE,LONGPORT BORO,,1953,1,RES1,3001 -0115_54_2,-74.53924382,39.50483062,5 NO MANOR AVE,LONGPORT BORO,18,1953,1,RES1,3001 -0115_54_3,-74.60919687,39.5225538,2 NO 30TH AVE,LONGPORT BORO,18,1953,1,RES1,3001 -0115_55_1,-74.56566866,39.53310298,2927 LONGPORT DRIVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_55_10,-74.865101,39.5966315,53 NO PELHAM AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_55_11,-74.80314038,39.62553524,2910 SUNSET AVE,LONGPORT BORO,19,1974,1,RES1,3001 -0115_55_12,-74.57434931,39.36913749,2912 WINCHESTER AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_55_14,-74.881993,39.5931255,44 NO MANOR AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_55_15,-74.79470331,39.62808069,36 NO MANOR AVE,LONGPORT BORO,19,1975,1,RES1,3001 -0115_55_16,-74.80392776,39.52130054,32 NO MANOR AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_55_17,-74.69630206,39.58103606,28 NO MANOR AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_55_18,-74.68700358,39.51315064,22 NO MANOR AVE,LONGPORT BORO,18,1950,1,COM1,3004 -0115_55_19,-74.63927277,39.53554419,16 NO MANOR AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_55_2,-74.85430391,39.48477918,2921 LONGPORT DRIVE,LONGPORT BORO,,1950,1,RES1,3001 -0115_55_20.01,-74.70670738,39.58375452,37 NO PELHAM AVE,LONGPORT BORO,20,1988,1,RES1,3001 -0115_55_3,-74.53465562,39.53098203,21 NO PELHAM AVE,LONGPORT BORO,,1950,1,RES1,3001 -0115_55_5,-74.638465,39.5303085,29 NO PELHAM AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_55_6,-74.69107712,39.51503127,31 NO PELHAM AVE,LONGPORT BORO,19,2006,1,RES1,3001 -0115_55_7.01,-74.79088976,39.51825854,41 NO PELHAM AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_55_8,-74.84933483,39.56328547,45 NO PELHAM AVE,LONGPORT BORO,19,2017,1,RES1,3001 -0115_55_9,-74.77610133,39.62548454,49 NO PELHAM AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_56_1,-74.67484855,39.56460684,2939 LONGPORT DRIVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_56_10,-74.589739,39.348434,38 NO 30TH AVE,LONGPORT BORO,18,1964,1,GOV1,3004 -0115_56_11.01,-74.53545016,39.39188843,30 NO 30TH AVE,LONGPORT BORO,20,2014,1,RES1,3001 -0115_56_12,-74.80334679,39.62710268,26 NO 30TH AVE,LONGPORT BORO,20,2007,1,RES1,3001 -0115_56_13,-74.8775855,39.5933445,22 NO 30TH AVE,LONGPORT BORO,20,1986,1,RES1,3001 -0115_56_14,-74.83631659,39.59136581,18 NO 30TH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_56_15,-74.72704,39.589317,14 N 30TH AVE,LONGPORT BORO,20,1990,1,RES1,3001 -0115_56_16,-74.8338025,39.5341955,6 NO 30TH AVE,LONGPORT BORO,19,1952,1,RES1,3001 -0115_56_17.01,-74.5930926,39.37037759,34 NO 30TH AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_56_2,-74.66738271,39.51708718,2933 LONGPORT DRIVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_56_3,-74.6249922,39.62134754,11 NO MANOR AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_56_4,-74.7239845,39.588527,19 NO MANOR AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_56_5,-74.78943663,39.63568111,25 NO MANOR AVE,LONGPORT BORO,,1968,1,RES1,3001 -0115_56_6,-74.88072421,39.59691297,27 NO MANOR AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_56_7,-74.80483052,39.63650433,33 NO MANOR AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_56_8,-74.539487,39.3859935,39 NO MANOR AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_56_9,-74.8087885,39.6342465,2914 WINCHESTER AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_57_1,-74.54818319,39.37014354,2930 SUNSET AVE,LONGPORT BORO,19,1965,1,RES1,3001 -0115_57_2,-74.59467596,39.34067568,102 NO 30TH AVE,LONGPORT BORO,19,1988,1,RES1,3001 -0115_58_3,-74.54586328,39.37230301,2939 SUNSET AVE,LONGPORT BORO,20,1980,1,RES1,3001 -0115_58_4.02,-74.56816455,39.36306381,2945 SUNSET AVE,LONGPORT BORO,19,1986,1,RES1,3001 -0115_58_5,-74.50124494,39.46598067,2955 SUNSET AVE,LONGPORT BORO,19,1920,2,RES1,3001 -0115_58_6.02,-74.59513446,39.35886324,2951 SUNSET AVE,LONGPORT BORO,20,1986,1,RES1,3001 -0115_59_1,-74.534185,39.470132,103 S 30TH AVE,LONGPORT BORO,21,1980,1,RES1,3001 -0115_59_2,-74.553575,39.4707965,101 SO 30TH AVE,LONGPORT BORO,19,1970,1,RES1,3001 -0115_59_3,-74.57741176,39.48100618,100 SO EVERGREEN AVE,LONGPORT BORO,19,1956,1,RES1,3001 -0115_59_4,-74.55498538,39.47817971,102 SO EVERGREEN AVE,LONGPORT BORO,21,2014,1,RES1,3001 -0115_59_5,-74.78886945,39.64381844,104 SO EVERGREEN AVE,LONGPORT BORO,22,1992,1,RES1,3001 -0115_6_1,-74.54341024,39.37711562,1301 BEACH TERRACE,LONGPORT BORO,21,2001,1,RES1,3001 -0115_6_14,-74.5906754,39.37112371,112 SO 14TH AV,LONGPORT BORO,21,2004,1,RES1,3001 -0115_6_15,-74.5594215,39.3975395,114 SO 14TH AVE,LONGPORT BORO,21,2013,1,RES1,3001 -0115_6_16,-74.5448035,39.398203,116 SO 14TH AV,LONGPORT BORO,19,1960,1,RES1,3001 -0115_6_16.01,-74.546928,39.3887395,118 SO 14TH AVE,LONGPORT BORO,21,1970,1,RES1,3001 -0115_6_17,-74.5381552,39.38925968,120 S 14TH AVE,LONGPORT BORO,22,2018,1,RES1,3001 -0115_6_2,-74.572013,39.3702295,117 SO 13TH AVE,LONGPORT BORO,21,1998,1,RES1,3001 -0115_6_4,-74.533452,39.386646,113 SO 13TH AVE,LONGPORT BORO,20,1970,1,GOV1,3004 -0115_6_5,-74.54405067,39.38554889,111 SO 13TH AVE,LONGPORT BORO,21,2009,1,RES1,3001 -0115_6_5.01,-74.55848516,39.39904516,109 SO 13TH AVE,LONGPORT BORO,19,1895,1,COM1,3004 -0115_6_6,-74.59024004,39.37137966,107 SO 13TH AVE,LONGPORT BORO,20,2006,1,COM3,3004 -0115_6_7,-74.5951235,39.370514,105 SO 13TH AV,LONGPORT BORO,18,1950,1,RES1,3001 -0115_6_8,-74.60662033,39.37156921,103 SO 13TH AV,LONGPORT BORO,21,1998,1,RES1,3001 -0115_6_9,-74.59916871,39.38074395,1300 ATLANTIC AVE,LONGPORT BORO,20,1975,1,RES1,3001 -0115_60_1,-74.555044,39.4737565,105 SO EVERGREEN AVE,LONGPORT BORO,23,1997,1,RES1,3001 -0115_60_2,-74.613969,39.486773,103 SO EVERGREEN AVE,LONGPORT BORO,21,2001,1,RES1,3001 -0115_60_3,-74.62648871,39.436378,101 SO EVERGREEN AVE,LONGPORT BORO,18,1970,1,RES1,3001 -0115_60_4,-74.67048649,39.46208438,3006 ATLANTIC AVE,LONGPORT BORO,18,1962,1,RES3A,3001 -0115_60_5,-74.619959,39.4369765,102 SO 31ST AVE,LONGPORT BORO,18,1970,1,RES1,3001 -0115_60_6,-74.61356364,39.48662634,104 SO 31ST AVE,LONGPORT BORO,22,1987,1,RES1,3001 -0115_61_1,-74.50643799,39.44538117,3019 ATLANTIC AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_61_3,-74.67892064,39.44515297,3005 ATLANTIC AVE,LONGPORT BORO,21,2017,1,RES1,3001 -0115_61_4,-74.69050627,39.50034116,23 SO 30TH AVE,LONGPORT BORO,18,1951,1,GOV1,3004 -0115_61_5,-74.49850852,39.42339126,3000 PACIFIC AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_61_6,-74.4420865,39.4887545,3006 PACIFIC AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_62_1,-74.71310516,39.47230852,3021 PACIFIC AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_62_2,-74.56991673,39.36772996,3017 PACIFIC AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_62_3,-74.559284,39.3662875,3011 PACIFIC AVE,LONGPORT BORO,20,2012,1,RES1,3001 -0115_62_4,-74.56329848,39.35904769,3009 PACIFIC AVE,LONGPORT BORO,18,2013,1,RES1,3001 -0115_62_6,-74.57027583,39.35272027,9 SO 30TH AVE,LONGPORT BORO,21,2009,1,RES1,3001 -0115_62_7,-74.83999879,39.44034603,5 SO 30TH AVE,LONGPORT BORO,19,1950,1,RES1,3001 -0115_62_8,-74.83392265,39.48741142,3002 DEVON AVE,LONGPORT BORO,18,1967,1,RES1,3001 -0115_62_9,-74.643737,39.53408,8 SO 31ST AVE.,LONGPORT BORO,,0,1,RES1,3001 -0115_63_1,-74.7974845,39.5315115,4 SO 31ST AVE,LONGPORT BORO,19,1965,1,RES1,3001 -0115_63_10,-74.7759765,39.6251475,2 SO 31ST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_63_11,-74.85704042,39.56468166,3016 VENTNOR AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_63_2,-74.6922405,39.597587,3021 DEVON AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_63_3,-74.6456865,39.550654,3013 DEVON AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_63_4,-74.65104256,39.52313559,3011 DEVON AVE,LONGPORT BORO,18,1956,1,RES1,3001 -0115_63_7,-74.6240649,39.51422414,1 SO 30TH AVE,LONGPORT BORO,19,2000,1,RES1,3001 -0115_63_7.01,-74.63679302,39.53448617,3002 VENTNOR AVE,LONGPORT BORO,18,1955,1,GOV1,3004 -0115_63_8,-74.65923227,39.55099124,3008 VENTNOR AVE,LONGPORT BORO,18,1955,1,RES3A,3001 -0115_63_9,-74.698029,39.633783,3014 VENTNOR AVE,LONGPORT BORO,18,1955,1,RES1,3004 -0115_64_1,-74.78708156,39.63294278,3009 LONGPORT DRIVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_64_10,-74.53767197,39.37096088,37 NO 30TH AVE,LONGPORT BORO,18,1956,1,COM1,3004 -0115_64_11,-74.56196731,39.35550984,3004 WINCHESTER AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_64_12,-74.49318764,39.45433722,32 NO EVERGREEN AVE,LONGPORT BORO,18,1950,1,COM1,3004 -0115_64_13,-74.6058895,39.3498365,28 NO EVERGREEN AVE,LONGPORT BORO,18,1950,1,COM1,3004 -0115_64_14,-74.794016,39.6435465,24 NO EVERGREEN AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_64_15,-74.5835175,39.376995,20 NO EVERGREEN AVE,LONGPORT BORO,,1950,1,RES1,3001 -0115_64_16,-74.541645,39.3855365,16 NO EVERGREEN AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_64_17,-74.5533852,39.36956731,10 NO EVERGREEN AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_64_18,-74.80186232,39.6058045,2 NO EVERGREEN AVE,LONGPORT BORO,,1977,1,RES1,3001 -0115_64_2,-74.776252,39.594796,3005 LONGPORT DRIVE,LONGPORT BORO,19,2016,1,RES1,3001 -0115_64_3,-74.8060685,39.5586245,3001 LONGPORT DRIVE,LONGPORT BORO,19,1984,1,REL1,3004 -0115_64_4,-74.8759255,39.595599,3 NO 30TH AVE,LONGPORT BORO,20,1921,1,RES1,3001 -0115_64_5,-74.87199749,39.60215087,11 NO 30TH AVE,LONGPORT BORO,20,1991,1,RES1,3001 -0115_64_6,-74.55772946,39.37677379,15 N 30TH AVE,LONGPORT BORO,19,1998,1,RES1,3001 -0115_64_7,-74.5691175,39.387178,23 NO 30TH AVE,LONGPORT BORO,20,2004,1,RES1,3001 -0115_64_9,-74.59781594,39.34208815,33 NO 30TH AVE,LONGPORT BORO,18,1950,1,IND2,3002 -0115_65_1,-74.5549275,39.372426,3019 VENTNOR AVE,LONGPORT BORO,18,1969,1,RES1,3001 -0115_65_10,-74.5949327,39.33993441,3010 WINCHESTER AVE.,LONGPORT BORO,19,2002,1,GOV1,3004 -0115_65_11,-74.57722855,39.3516303,3016 WINCHESTER AVE,LONGPORT BORO,18,2013,1,RES1,3001 -0115_65_12,-74.62543545,39.31453298,3022 WINCHESTER AVE.,LONGPORT BORO,,0,1,RES1,3001 -0115_65_13,-74.5846207,39.36082692,16 NO 31ST AVE,LONGPORT BORO,20,2006,1,RES1,3001 -0115_65_14,-74.59226897,39.3479394,12 NO 31ST AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_65_15,-74.82304081,39.63861416,8 NO 31ST AVE,LONGPORT BORO,,1952,1,GOV1,3004 -0115_65_16,-74.56001233,39.3970877,4 NO 31ST AVE,LONGPORT BORO,17,1954,1,RES1,3001 -0115_65_17,-74.56324379,39.37068012,3 NO EVERGREEN AVE,LONGPORT BORO,19,1972,1,RES1,3001 -0115_65_2,-74.808545,39.613378,3017 VENTNOR AVE,LONGPORT BORO,18,1971,1,RES1,3001 -0115_65_3,-74.87298053,39.59321073,1 NO EVERGREEN AVE,LONGPORT BORO,19,1970,1,RES1,3001 -0115_65_4,-74.55727806,39.39755988,7 N EVERGREEN AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_65_5,-74.5977795,39.368643,11 NO EVERGREEN AVE,LONGPORT BORO,19,2007,1,RES1,3001 -0115_65_6,-74.58823902,39.34800915,13 NO EVERGREEN AVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_65_9,-74.563525,39.355277,21 NO EVERGREEN AVE,LONGPORT BORO,19,1959,1,RES1,3001 -0115_66_1,-74.61931119,39.31427203,3005 WINCHESTER AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_66_2,-74.60939632,39.34181745,3001 WINCHESTER AVE,LONGPORT BORO,19,2017,1,RES1,3001 -0115_66_3,-74.62354902,39.35837832,105 NO 30TH AVE,LONGPORT BORO,18,1961,1,RES1,3004 -0115_66_4,-74.62745262,39.31509907,3000 SUNSET AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_66_5,-74.50921818,39.32562873,3002 SUNSET AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_66_6,-74.610963,39.367576,108 NO EVERGREEN AVE,LONGPORT BORO,19,1970,1,RES1,3001 -0115_66_7,-74.45532309,39.47833788,102 NO EVERGREEN AVE,LONGPORT BORO,18,1960,1,RES3A,3001 -0115_67_1,-74.452518,39.491094,3015 WINCHESTER AVE,LONGPORT BORO,19,1949,1,RES1,3001 -0115_67_10,-74.49176433,39.3331495,120 NO 31ST AVE,LONGPORT BORO,18,1956,1,RES1,3001 -0115_67_11,-74.49329668,39.52524583,118 NO 31ST AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_67_12,-74.5009915,39.4929765,112 NO 31ST AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_67_13.01,-74.62812797,39.35559766,102 NO 31ST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_67_14.01,-74.52629538,39.31165415,106 NO 31ST AVE,LONGPORT BORO,19,1985,1,RES1,3001 -0115_67_2,-74.47576686,39.48376599,3011 WINCHESTER AVE,LONGPORT BORO,19,1980,1,RES1,3001 -0115_67_3,-74.51446162,39.46943935,101 NO EVERGREEN AVE,LONGPORT BORO,19,1965,1,RES1,3001 -0115_67_6,-74.50470163,39.47861516,117 NO EVERGREEN AVE,LONGPORT BORO,19,1982,1,RES1,3001 -0115_67_7,-74.4979595,39.328109,125 NO EVERGREEN AVE,LONGPORT BORO,18,1952,1,RES3A,3001 -0115_67_8,-74.52379912,39.31987165,3006 SUNSET AVE,LONGPORT BORO,19,1952,1,RES1,3001 -0115_67_9,-74.49976743,39.33220614,128 NO 31ST AVE,LONGPORT BORO,19,1948,1,RES1,3001 -0115_68_1,-74.48951384,39.33347783,3001 SUNSET AVE,LONGPORT BORO,22,2002,1,GOV1,3004 -0115_68_2,-74.49968116,39.33269213,3007 SUNSET AVE,LONGPORT BORO,23,2001,1,RES1,3001 -0115_69_1,-74.66361617,39.44506266,107 SO 31ST AVE,LONGPORT BORO,21,1991,1,RES1,3001 -0115_69_2,-74.68903829,39.49276618,103 SO 31ST AVE,LONGPORT BORO,20,1992,1,RES1,3001 -0115_69_2.01,-74.666727,39.45456,105 SO 31ST AVE,LONGPORT BORO,21,1990,1,RES1,3001 -0115_69_3,-74.5043055,39.4268385,101 SO 31ST AVE,LONGPORT BORO,20,2010,1,GOV1,3004 -0115_69_4,-74.48109596,39.44365822,100 SO WOODCREST AVE,LONGPORT BORO,20,2013,1,RES1,3001 -0115_69_5,-74.49154969,39.42233691,102 SO WOODCREST AVE,LONGPORT BORO,22,2004,1,RES1,3001 -0115_69_6,-74.70582505,39.48173415,104 SO WOODCREST AVE,LONGPORT BORO,22,1992,1,RES1,3001 -0115_7_1,-74.56351556,39.41783418,1301 ATLANTIC AVE,LONGPORT BORO,22,1992,1,RES1,3001 -0115_7_1.01,-74.5626885,39.4131855,1303 ATLANTIC AVE,LONGPORT BORO,21,1990,1,RES1,3001 -0115_7_2,-74.55252569,39.42242145,1305 ATLANTIC AVE,LONGPORT BORO,,1982,1,RES1,3001 -0115_7_3,-74.57563378,39.40906711,1307 ATLANTIC AVE,LONGPORT BORO,20,1988,1,RES1,3001 -0115_70_1,-74.50042691,39.42724874,105 SO WOODCREST AVE,LONGPORT BORO,23,2017,1,RES1,3001 -0115_70_2,-74.48184235,39.44061183,103 SO WOODCREST AVE,LONGPORT BORO,22,2000,1,RES1,3001 -0115_70_3,-74.76405129,39.38645902,101 SO WOODCREST AVE,LONGPORT BORO,19,1975,1,RES1,3001 -0115_70_4,-74.54485951,39.36387451,100 SO 32ND AVE,LONGPORT BORO,21,1988,1,RES1,3001 -0115_70_6,-74.43536889,39.49279643,104 SO 32ND AVE,LONGPORT BORO,22,1947,1,RES1,3001 -0115_71_1,-74.879658,39.4607905,3113 ATLANTIC AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_71_2,-74.577566,39.342632,3111 ATLANTIC AVE,LONGPORT BORO,47,1964,2,RES1,3001 -0115_71_3.01,-74.87867647,39.46303522,3108 PACIFIC AVE,LONGPORT BORO,18,2008,1,RES1,3001 -0115_71_4,-74.56412739,39.36549811,3107 ATLANTIC AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_71_6,-74.8610615,39.4374965,3106 PACIFIC AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_71_7,-74.84069173,39.48087352,3110 PACIFIC AVE,LONGPORT BORO,18,1899,2,RES1,3001 -0115_71_8,-74.55089946,39.52536434,36 SO 32ND AVE,LONGPORT BORO,19,1992,1,RES1,3001 -0115_71_9.01,-74.56993246,39.36183197,3109 ATLANTIC AVE,LONGPORT BORO,19,1976,1,RES1,3001 -0115_72_1,-74.540414,39.5278425,3109 PACIFIC AVE,LONGPORT BORO,20,2008,1,RES1,3002 -0115_72_10,-74.75614119,39.61058339,5 SO 31ST AVE,LONGPORT BORO,20,2006,1,RES1,3001 -0115_72_12,-74.571372,39.374167,3104 VENTNOR AVE,LONGPORT BORO,18,1949,1,RES1,3001 -0115_72_13,-74.8769752,39.59461808,6 SO WOODCREST AVE,LONGPORT BORO,18,1949,1,RES1,3001 -0115_72_14,-74.71567826,39.63845747,8 SO WOODCREST AVE,LONGPORT BORO,20,2006,1,RES1,3001 -0115_72_15,-74.70419395,39.63716091,12 SO WOODCREST AVE,LONGPORT BORO,19,2013,1,RES1,3001 -0115_72_16,-74.6756325,39.5861,16 SO WOODCREST AVE,LONGPORT BORO,20,2005,1,RES1,3001 -0115_72_17,-74.69329469,39.50660734,20 SO WOODCREST AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_72_18,-74.63471577,39.53356786,24 SO WOODCREST AVE,LONGPORT BORO,20,2008,1,RES1,3001 -0115_72_19,-74.63647919,39.51131434,28 SO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_72_2,-74.56511734,39.50758502,3105 PACIFIC AVE,LONGPORT BORO,20,2007,1,RES3A,3001 -0115_72_3,-74.82691483,39.4796654,31 SO 31ST AVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_72_4,-74.5324235,39.529384,25 SO 31ST AVE,LONGPORT BORO,20,2007,1,RES1,3001 -0115_72_6,-74.6392233,39.52211347,19 SO 31ST AVE,LONGPORT BORO,18,1925,1,RES1,3001 -0115_72_8,-74.62394858,39.62492714,7 SO 31ST AVE,LONGPORT BORO,47,1922,3,RES3A,3001 -0115_73_1,-74.68871425,39.51312968,3119 PACIFIC AVE,LONGPORT BORO,18,1970,1,RES1,3001 -0115_73_10,-74.558605,39.399434,3106 VENTNOR AVE,LONGPORT BORO,20,2013,1,RES1,3001 -0115_73_11,-74.8601635,39.617912,2 SO 32ND AVE,LONGPORT BORO,19,2013,1,RES1,3001 -0115_73_12,-74.56405751,39.39024313,4 SO 32ND AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_73_13,-74.797135,39.636238,12 SO 32ND AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_73_14,-74.87305397,39.59258467,16 SO 32ND AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_73_15,-74.84840803,39.58787988,20 SO 32ND AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_73_16,-74.72487983,39.58848415,26 SO 32ND AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_73_17,-74.804409,39.5249,28 S 32ND AVE,LONGPORT BORO,19,1985,1,RES1,3001 -0115_73_2,-74.64291011,39.52838342,3117 PACIFIC AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_73_3,-74.63741933,39.5277405,3113 PACIFIC AVE,LONGPORT BORO,18,1952,1,GOV1,3004 -0115_73_4,-74.6686885,39.5807995,29 SO WOODCREST AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_73_7,-74.86341067,39.59566577,15 SO WOODCREST AVE,LONGPORT BORO,18,1950,1,GOV1,3004 -0115_73_8,-74.80110606,39.60592286,9 SO WOODCREST AVE,LONGPORT BORO,18,1952,1,RES3A,3001 -0115_73_9,-74.56678894,39.37337367,3 SO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES3B,3001 -0115_74_1,-74.5893715,39.3644485,3105 VENTNOR AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_74_10,-74.44757673,39.49299671,3104 WINCHESTER AV,LONGPORT BORO,18,1950,1,RES1,3001 -0115_74_11,-74.62492,39.31472976,34 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_74_12,-74.52874548,39.45338701,30 NO WOODCREST AVE,LONGPORT BORO,18,1951,1,RES1,3001 -0115_74_13,-74.63860655,39.33892984,26 NO WOODCREST AVE,LONGPORT BORO,18,1951,1,RES1,3002 -0115_74_14,-74.6102125,39.3409825,20 NO WOODCREST AVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_74_15,-74.55872289,39.36146807,12 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_74_16,-74.60372634,39.32915018,8 NO WOODCREST AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_74_2,-74.85783589,39.61987436,3103 VENTNOR AVE,LONGPORT BORO,20,2009,1,RES1,3001 -0115_74_4,-74.60837019,39.34583979,5 NO 31ST AVE,LONGPORT BORO,21,2017,1,RES1,3001 -0115_74_5,-74.59337995,39.36609136,9 NO 31ST AV,LONGPORT BORO,20,2017,1,RES1,3001 -0115_74_6,-74.60757656,39.32824883,11 NO 31ST AV,LONGPORT BORO,18,1950,1,RES1,3001 -0115_74_7,-74.5944757,39.34826977,17 NO 31ST AV,LONGPORT BORO,19,1960,1,RES1,3001 -0115_74_8,-74.62625978,39.35672161,27 NO 31ST AV,LONGPORT BORO,18,1951,1,RES1,3001 -0115_74_9,-74.44903948,39.48045283,3100 WINCHESTER AV,LONGPORT BORO,18,1947,1,RES1,3001 -0115_75_1,-74.56927681,39.34270588,3115 VENTNOR AVE,LONGPORT BORO,18,1930,1,RES1,3001 -0115_75_10,-74.52043053,39.31695235,3112 WINCHESTER AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_75_11,-74.50377213,39.47227188,40 NO 32ND AVE,LONGPORT BORO,18,1953,1,GOV1,3004 -0115_75_12,-74.4223395,39.365146,32 NO 32ND AVE,LONGPORT BORO,20,2016,1,GOV1,3004 -0115_75_13,-74.45614786,39.49602621,28 NO 32ND AVE,LONGPORT BORO,20,2006,1,RES3A,3001 -0115_75_14,-74.459555,39.4828215,22 NO 32ND AVE,LONGPORT BORO,19,2014,1,RES3B,3001 -0115_75_15,-74.622348,39.353825,16 NO 32ND AVE,LONGPORT BORO,19,1991,1,RES3A,3001 -0115_75_16,-74.60806693,39.34549478,10 NO 32ND AVE,LONGPORT BORO,19,2013,1,RES1,3004 -0115_75_17,-74.56368921,39.3629599,4 NO 32ND AVE,LONGPORT BORO,19,1987,1,RES1,3001 -0115_75_3,-74.60965291,39.31961501,3 NO WOODCREST AVE,LONGPORT BORO,18,2009,1,RES1,3001 -0115_75_4,-74.55662882,39.35892243,7 NO WOODCREST AVE,LONGPORT BORO,18,1958,1,RES1,3001 -0115_75_5,-74.565296,39.360147,11 NO WOODCREST AVE,LONGPORT BORO,19,1950,1,RES1,3001 -0115_75_6,-74.60409913,39.34532966,15 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_75_7,-74.63906517,39.34366851,21 NO WOODCREST AVE,LONGPORT BORO,20,2006,1,RES1,3001 -0115_75_8,-74.45217649,39.47756367,25 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_75_9,-74.633291,39.31976,31 NO WOODCREST AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_76_1,-74.48487981,39.52038996,3105 WINCHESTER AVE,LONGPORT BORO,18,1966,1,RES1,3001 -0115_76_10,-74.5797405,39.3861305,136 NO WOODCREST AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_76_11.01,-74.5581765,39.3988845,124 NO WOODCREST AVE,LONGPORT BORO,20,2004,1,RES1,3001 -0115_76_13,-74.517577,39.3243395,118 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_76_14,-74.5045959,39.33115589,114 NO WOODCREST AVE,LONGPORT BORO,18,1946,1,RES3A,3001 -0115_76_15,-74.49230219,39.33286898,110 NO WOODCREST AVE,LONGPORT BORO,19,1960,1,RES1,3001 -0115_76_17.01,-74.6160085,39.372008,128 NO WOODCREST AVE,LONGPORT BORO,20,2001,1,RES1,3001 -0115_76_2,-74.49851303,39.50080966,3101 WINCHESTER AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_76_3,-74.50355806,39.48798575,103 NO 31ST AVE,LONGPORT BORO,18,1950,1,COM1,3004 -0115_76_4,-74.488909,39.333326,107 NO 31ST AVE,LONGPORT BORO,21,2015,1,RES1,3001 -0115_76_5,-74.50585284,39.32859599,115 NO 31ST AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_76_6,-74.52575129,39.31764989,123 NO 31ST AVE,LONGPORT BORO,21,2006,1,RES1,3001 -0115_76_7,-74.56365395,39.39868265,127 NO 31ST AVE,LONGPORT BORO,18,1930,1,RES1,3001 -0115_76_8,-74.6186775,39.386694,3100 SUNSET AVE,LONGPORT BORO,18,1950,1,RES3A,3001 -0115_76_9,-74.473361,39.341486,138 NO WOODCREST AVE,LONGPORT BORO,19,1955,1,RES1,3001 -0115_77_1,-74.498177,39.331474,100 N 32ND AVE,LONGPORT BORO,19,1988,1,RES1,3001 -0115_77_10.01,-74.496175,39.336075,3106 MONMOUTH AVE,LONGPORT BORO,20,1989,1,RES1,3001 -0115_77_11,-74.4941545,39.3427405,134 NO 32ND AVE,LONGPORT BORO,18,1950,1,COM1,3004 -0115_77_12,-74.44429117,39.35678449,130 NO 32ND AVE,LONGPORT BORO,21,2018,1,RES1,3001 -0115_77_13,-74.5154435,39.32987417,124 NO 32ND AVE,LONGPORT BORO,18,1940,1,RES1,3001 -0115_77_14,-74.5908175,39.3769155,118 NO 32ND AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_77_15,-74.540397,39.393979,108 NO 32ND AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_77_16,-74.51622986,39.32031404,106 NO 32ND AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_77_17,-74.50865736,39.32955646,102 NO 32ND AVE,LONGPORT BORO,18,1938,1,RES1,3001 -0115_77_18.01,-74.50317,39.343148,138 NO 32ND AVE,LONGPORT BORO,20,1990,1,RES1,3001 -0115_77_2,-74.48256129,39.53849543,3107 WINCHESTER AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_77_3,-74.5013955,39.33161721,105 NO WOODCREST AVE,LONGPORT BORO,20,2003,1,RES1,3001 -0115_77_4,-74.5203639,39.32193585,111 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_77_5,-74.5321263,39.38974201,117 NO WOODCREST AVE,LONGPORT BORO,19,2004,1,RES1,3001 -0115_77_6,-74.590928,39.376489,121 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_77_7,-74.6106455,39.3846595,127 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_77_8,-74.51644682,39.32719771,131 NO WOODCREST AVE,LONGPORT BORO,18,1985,1,RES1,3001 -0115_77_9,-74.47595238,39.33911183,135 NO WOODCREST AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_78_1,-74.46321363,39.35364069,3101 MONMOUTH AVE,LONGPORT BORO,20,2010,1,RES1,3001 -0115_78_2,-74.503742,39.3351395,3105 MONMOUTH AVE,LONGPORT BORO,21,2013,1,RES1,3001 -0115_78_3,-74.3820155,39.3952195,3113 MONMOUTH AVE,LONGPORT BORO,19,1972,1,RES1,3001 -0115_78_4,-74.3686094,39.40929723,200 NO 32ND AVE,LONGPORT BORO,21,1920,1,RES1,3001 -0115_79_2,-74.56486192,39.36041779,3204 ATLANTIC AVE,LONGPORT BORO,,0,1,RES1,3001 -0115_79_3,-74.85503,39.441548,3210 ATLANTIC AVE,LONGPORT BORO,21,1996,1,RES1,3001 -0115_79_4,-74.54352766,39.53231003,33RD & ATLANTIC AVES,LONGPORT BORO,,0,1,RES1,3001 -0115_8_1,-74.6084405,39.386303,15TH & BEACH TERRACE,LONGPORT BORO,,0,1,REL1,3004 -0115_8_10,-74.5613559,39.40968597,107 SO 14TH AV,LONGPORT BORO,22,2018,1,GOV1,3004 -0115_8_11,-74.563604,39.4155345,105 S 14TH AVE,LONGPORT BORO,21,1993,1,RES1,3001 -0115_8_12,-74.5723215,39.412969,103 S 14TH AVE,LONGPORT BORO,20,1978,1,REL1,3004 -0115_8_13,-74.58565264,39.4105756,101 SO 14TH AVE,LONGPORT BORO,22,2006,1,RES1,3001 -0115_8_17,-74.57450366,39.42675083,108 S 15TH AVE,LONGPORT BORO,21,1999,1,RES3A,3001 -0115_8_18,-74.5615815,39.4116335,112 SO 15TH AV,LONGPORT BORO,22,2016,1,RES1,3001 -0115_8_19,-74.5603265,39.416018,114 SO 15TH AV,LONGPORT BORO,22,2001,1,RES3A,3001 -0115_8_2,-74.58931218,39.37734434,1407 BEACH TERRACE,LONGPORT BORO,22,2016,1,RES3A,3001 -0115_8_20,-74.53595697,39.41201731,116 SO 15TH AV,LONGPORT BORO,21,2013,1,GOV1,3004 -0115_8_21,-74.532403,39.4045655,118 SO 15TH AVE,LONGPORT BORO,22,1990,1,COM4,3004 -0115_8_4,-74.579675,39.376714,1403 BEACH TERRACE,LONGPORT BORO,22,2004,1,COM3,3004 -0115_8_5,-74.5439075,39.3955665,1401 BEACH TERRACE,LONGPORT BORO,19,1947,1,RES1,3001 -0115_8_6,-74.5925725,39.378958,117 SO 14TH AVE,LONGPORT BORO,23,2006,1,RES1,3001 -0115_8_7,-74.6076953,39.38673243,113 S 14TH AVE,LONGPORT BORO,17,1970,1,RES1,3001 -0115_8_8,-74.53762046,39.40727979,111 SO 14TH AV,LONGPORT BORO,20,1970,1,RES1,3001 -0115_8_9,-74.53162732,39.40442165,109 SO 14TH AVE,LONGPORT BORO,20,1993,1,RES1,3001 -0115_80_1.01,-74.7021235,39.585101,44 SO 33RD AVE,LONGPORT BORO,19,1986,1,RES1,3001 -0115_80_10.01,-74.65726354,39.52074083,37 SO 32ND ST,LONGPORT BORO,18,1960,1,RES1,3001 -0115_80_11.01,-74.77619125,39.59791279,40 SO 33RD AVE,LONGPORT BORO,19,1955,1,RES1,3001 -0115_80_12.01,-74.8097275,39.534989,42 SO 33RD AVE,LONGPORT BORO,18,1950,1,AGR1,3001 -0115_80_2,-74.61738547,39.61960074,3217 ATLANTIC AVE,LONGPORT BORO,21,2006,1,RES1,3001 -0115_80_4,-74.62505334,39.52905797,3207 ATLANTIC AVE,LONGPORT BORO,21,2014,1,RES1,3001 -0115_80_5,-74.53741017,39.53734051,3201 ATLANTIC AVE,LONGPORT BORO,19,2009,1,RES1,3001 -0115_80_6.01,-74.6744315,39.5078105,35 SO 32ND AVE,LONGPORT BORO,21,2015,1,RES1,3001 -0115_80_7,-74.62256907,39.55082581,3208 PACIFIC AVE,LONGPORT BORO,19,1945,1,RES1,3001 -0115_80_8,-74.64174266,39.62491195,3214 PACIFIC AVE,LONGPORT BORO,19,2011,1,RES1,3001 -0115_80_9,-74.82587717,39.53929551,3216 PACIFIC AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_81_1,-74.77993439,39.62512066,32 SO YARMOUTH AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_81_10,-74.57426871,39.33900103,2 SO YARMOUTH AVE,LONGPORT BORO,21,2018,1,RES1,3001 -0115_81_11,-74.58920384,39.35623453,4 SO YARMOUTH AVE,LONGPORT BORO,18,1945,1,RES1,3001 -0115_81_12,-74.81947033,39.636105,12 SO YARMOUTH AVE,LONGPORT BORO,18,1957,1,RES1,3002 -0115_81_13,-74.54720297,39.38967784,18 SO YARMOUTH AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_81_14,-74.80456048,39.63761857,24 SO YARMOUTH AVE,LONGPORT BORO,19,1952,1,RES1,3001 -0115_81_15,-74.87632404,39.59447781,30 SO YARMOUTH AVE,LONGPORT BORO,19,1957,1,RES1,3001 -0115_81_2,-74.71893434,39.57803103,3201 PACIFIC AVE,LONGPORT BORO,21,2016,1,RES1,3001 -0115_81_3,-74.79272109,39.63468093,29 S 32ND AVE,LONGPORT BORO,18,1935,1,GOV1,3004 -0115_81_4,-74.7983405,39.632289,23 SO 32ND AVE,LONGPORT BORO,20,2005,1,RES1,3001 -0115_81_5,-74.55452071,39.38140391,15 SO 32ND AVE,LONGPORT BORO,18,1920,1,AGR1,3001 -0115_81_6,-74.54277556,39.38824184,13 SO 32ND AVE,LONGPORT BORO,18,1920,1,RES1,3001 -0115_81_7,-74.60559662,39.37205578,7 SO 32ND AVE,LONGPORT BORO,20,2009,1,AGR1,3001 -0115_81_8,-74.78896726,39.64847227,3 SO 32ND AVE,LONGPORT BORO,19,1947,1,COM1,3004 -0115_81_9,-74.523662,39.4419595,1 SO 32ND AVE,LONGPORT BORO,20,2013,1,COM3,3004 -0115_82_1,-74.7978227,39.6383064,36 SO 33RD AVE,LONGPORT BORO,19,1960,1,RES1,3001 -0115_82_10,-74.58915,39.353428,3218 VENTNOR AVE,LONGPORT BORO,20,1955,1,RES1,3001 -0115_82_11,-74.56682651,39.35641033,8 SO 33RD AVE,LONGPORT BORO,18,1956,1,RES1,3001 -0115_82_13,-74.814665,39.6378925,24 SO 33RD AVE,LONGPORT BORO,18,1958,1,RES1,3001 -0115_82_14,-74.53314031,39.39974997,28 SO 33RD AVE,LONGPORT BORO,21,2018,1,RES1,3001 -0115_82_2,-74.8702705,39.6040935,35 SO YARMOUTH AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_82_3,-74.57230824,39.37362613,29 SO YARMOUTH AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_82_4,-74.54897863,39.3922094,25 SO YARMOUTH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_82_5,-74.56124875,39.39412376,21 SO YARMOUTH AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_82_6,-74.804369,39.645828,15 SO YARMOUTH AVE,LONGPORT BORO,18,1957,1,RES1,3001 -0115_82_7,-74.57876944,39.36046018,11 SO YARMOUTH AVE,LONGPORT BORO,20,2008,1,RES1,3001 -0115_82_8,-74.5484197,39.36809281,5 SO YARMOUTH AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_82_9,-74.58585,39.336547,3212 VENTNOR AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_83_1,-74.61512372,39.36358023,3201 VENTNOR AVE,LONGPORT BORO,20,2014,1,RES1,3001 -0115_83_10,-74.492508,39.330424,3206 WINCHESTER AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_83_11,-74.48869466,39.52097879,30 NO YARMOUTH AVE,LONGPORT BORO,,1948,1,AGR1,3001 -0115_83_12,-74.46863068,39.49289575,24 NO YARMOUTH AVE,LONGPORT BORO,18,2000,1,RES1,3001 -0115_83_13,-74.42981199,39.36813483,18 NO YARMOUTH AVE,LONGPORT BORO,19,2009,1,RES1,3001 -0115_83_14,-74.60784255,39.36390621,12 NO YARMOUTH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_83_15,-74.51563657,39.46704003,4 NO YARMOUTH AVE,LONGPORT BORO,19,2015,1,RES1,3001 -0115_83_2,-74.60790199,39.34161071,1 NO 32ND AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_83_3,-74.60538969,39.35541294,3 NO 32ND AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_83_4,-74.51956838,39.4566405,7 NO 32ND AVE,LONGPORT BORO,20,2008,1,RES1,3001 -0115_83_5,-74.45081,39.48888,13 NO 32ND AVE,LONGPORT BORO,20,2014,1,RES1,3001 -0115_83_6,-74.6280995,39.3550905,19 NO 32ND AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_83_7,-74.49547841,39.33366619,25 NO 32ND AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_83_8,-74.51321095,39.48481232,31 NO 32ND AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_83_9,-74.59055892,39.31404903,3200 WINCHESTER AVE,LONGPORT BORO,18,1960,1,GOV1,3004 -0115_84_1,-74.46302908,39.49597356,3219 VENTNOR AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_84_10,-74.5215745,39.3205345,3212 WINCHESTER AVE,LONGPORT BORO,18,1954,1,RES1,3001 -0115_84_11,-74.57005463,39.37247475,3216 WINCHESTER AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_84_12,-74.53249446,39.38741468,3220 WINCHESTER AVE,LONGPORT BORO,19,2011,1,RES1,3001 -0115_84_13,-74.517971,39.324852,32 NO 33RD AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_84_14,-74.493864,39.3311745,24 NO 33RD AVE,LONGPORT BORO,20,2016,1,RES1,3001 -0115_84_15,-74.49802824,39.52005754,20 NO 33RD AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_84_16,-74.48954805,39.49808346,14 NO 33RD AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_84_17,-74.4980725,39.333801,8 NO 33RD AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_84_18,-74.62450365,39.35585623,4 NO 33RD AVE,LONGPORT BORO,19,2009,1,RES1,3001 -0115_84_2,-74.47517504,39.48333819,3217 VENTNOR AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_84_3,-74.530055,39.46178,3213 VENTNOR AVE,LONGPORT BORO,15,1953,1,RES1,3001 -0115_84_4,-74.638682,39.3244745,3 NO YARMOUTH AVE,LONGPORT BORO,,1960,1,RES1,3001 -0115_84_5,-74.434561,39.367374,9 NO YARMOUTH AVE,LONGPORT BORO,20,2014,1,RES1,3001 -0115_84_6,-74.469989,39.4899875,17 NO YARMOUTH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_84_7,-74.501742,39.5068645,23 NO YARMOUTH AVE,LONGPORT BORO,21,2004,1,RES1,3001 -0115_84_8,-74.590561,39.311955,27 NO YARMOUTH AVE,LONGPORT BORO,20,2017,1,GOV1,3004 -0115_84_9,-74.49931949,39.3323521,31 NO YARMOUTH AVE,LONGPORT BORO,18,1989,1,RES1,3001 -0115_85_1,-74.5414965,39.3853715,3207 WINCHESTER AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_85_10,-74.40856026,39.37892675,3206 MONMOUTH AVE,LONGPORT BORO,19,2015,1,RES1,3001 -0115_85_11,-74.39331484,39.39144947,132 NO YARMOUTH AVE,LONGPORT BORO,18,1964,1,RES1,3001 -0115_85_12,-74.37148,39.401328,124 NO YARMOUTH AVE,LONGPORT BORO,19,1970,1,RES1,3001 -0115_85_13,-74.465861,39.35783,116 NO YARMOUTH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_85_14,-74.45697366,39.348172,110 NO YARMOUTH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_85_15,-74.60045879,39.38124598,106 NO YARMOUTH AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_85_16,-74.56022259,39.39753735,102 NO YARMOUTH AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_85_2,-74.52348295,39.32040633,101 NO 32ND AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_85_3,-74.5319025,39.399272,103 NO 32ND AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_85_5,-74.461593,39.3459745,113 NO 32ND AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_85_6,-74.448539,39.354535,121 NO 32ND AVE,LONGPORT BORO,19,2014,1,RES1,3001 -0115_85_7,-74.4876385,39.3370515,125 NO 32ND AVE,LONGPORT BORO,18,2013,1,RES1,3001 -0115_86_1,-74.51214967,39.32682849,3217 WINCHESTER AVE,LONGPORT BORO,,1965,1,RES1,3004 -0115_86_10,-74.41110062,39.39106683,3212 MONMOUTH AVE,LONGPORT BORO,20,2005,1,RES1,3001 -0115_86_11,-74.36793484,39.40732149,3216 MONMOUTH AVE,LONGPORT BORO,19,1978,1,RES1,3001 -0115_86_12,-74.37163935,39.40342051,3220 MONMOUTH AVE,LONGPORT BORO,18,1955,1,GOV1,3004 -0115_86_13,-74.43698768,39.36859244,130 NO 33RD AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_86_14,-74.41863126,39.36849985,124 NO 33RD AVE,LONGPORT BORO,18,1951,1,GOV1,3004 -0115_86_15,-74.39299383,39.3912335,120 NO 33RD AVE,LONGPORT BORO,19,2007,1,RES1,3001 -0115_86_16,-74.385565,39.3929415,114 NO 33RD AVE,LONGPORT BORO,18,1965,1,RES1,3001 -0115_86_17,-74.50863806,39.33847487,108 NO 33RD AVE,LONGPORT BORO,20,2005,1,RES1,3001 -0115_86_18,-74.46206265,39.35813842,102 NO 33RD AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_86_2,-74.60205928,39.37763163,3213 WINCHESTER AVE,LONGPORT BORO,20,2011,1,RES1,3001 -0115_86_3,-74.46789284,39.342742,103 NO YARMOUTH AVE,LONGPORT BORO,19,1950,1,RES1,3001 -0115_86_4,-74.4625095,39.3568775,109 NO YARMOUTH AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_86_5,-74.50500768,39.33980987,115 NO YARMOUTH AVE,LONGPORT BORO,19,2005,1,RES1,3001 -0115_86_6,-74.510013,39.339358,119 NO YARMOUTH AVE,LONGPORT BORO,19,2016,1,RES1,3001 -0115_86_7,-74.39855115,39.39058983,123 NO YARMOUTH AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_86_8,-74.38062518,39.39676034,131 NO YARMOUTH AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_86_9,-74.40846722,39.37876301,133 NO YARMOUTH AVE,LONGPORT BORO,19,1960,1,AGR1,3001 -0115_87_1,-74.3674445,39.40552,3200 SUNSET AVE.,LONGPORT BORO,21,2008,1,AGR1,3001 -0115_88_1.01,-74.37357589,39.41624877,3215 MONMOUTH AVE,LONGPORT BORO,20,2013,1,RES1,3001 -0115_88_2.01,-74.44928299,39.37367193,205 NO YARMOUTH AVE,LONGPORT BORO,19,1990,1,RES1,3001 -0115_88_5.01,-74.5047625,39.4071315,216 NO 33RD AVE,LONGPORT BORO,19,1974,1,RES1,3001 -0115_88_6.01,-74.522308,39.39932383,212 NO 33RD AVE,LONGPORT BORO,20,1988,1,RES1,3001 -0115_88_7.01,-74.52269309,39.38775331,208 NO 33RD AVE,LONGPORT BORO,19,1978,1,RES1,3001 -0115_88_8.01,-74.525202,39.38400333,204 NO 33RD AVE,LONGPORT BORO,21,2008,1,GOV1,3004 -0115_88_9.01,-74.3825345,39.416748,3219 MONMOUTH AVE,LONGPORT BORO,18,1976,1,RES1,3001 -0115_89_1,-74.52971402,39.38186682,3201 SUNSET AVE,LONGPORT BORO,20,1978,1,RES1,3001 -0115_89_2,-74.4809653,39.43119259,3203 SUNSET AVE,LONGPORT BORO,22,2009,1,RES1,3001 -0115_89_3.02,-74.509221,39.404801,3207 SUNSET AVE,LONGPORT BORO,22,2015,1,RES1,3001 -0115_89_4.02,-74.51332343,39.41133919,3211 SUNSET AVE,LONGPORT BORO,20,1978,1,GOV1,3004 -0115_89_5.02,-74.58635683,39.32863194,300 NO 33RD AVE,LONGPORT BORO,19,1946,1,RES1,3001 -0115_9_1,-74.79936765,39.63994045,1401 ATLANTIC AVE,LONGPORT BORO,18,1971,1,GOV1,3004 -0115_9_2,-74.80644009,39.64238485,1403 ATLANTIC AVE,LONGPORT BORO,21,2006,1,GOV1,3004 -0115_9_3,-74.81681051,39.64069648,1405 ATLANTIC AVE,LONGPORT BORO,21,2010,1,RES1,3001 -0115_9_4,-74.8115645,39.63969,1407 ATLANTIC AVE,LONGPORT BORO,21,1990,1,RES1,3001 -0115_90_1,-74.83788023,39.5645483,3300 ATLANTIC AVE.,LONGPORT BORO,,0,1,RES1,3001 -0115_91_1,-74.80054026,39.6271107,3315 ATLANTIC AV,LONGPORT BORO,18,1959,1,RES1,3001 -0115_91_2,-74.864353,39.5996805,3311 ATLANTIC AVE,LONGPORT BORO,20,2007,1,RES1,3001 -0115_91_3,-74.8445653,39.60152127,3307 ATLANTIC AVE,LONGPORT BORO,,1951,1,RES1,3001 -0115_91_4,-74.77081268,39.63227834,3301 ATLANTIC AVE,LONGPORT BORO,19,1955,1,RES1,3001 -0115_91_5,-74.8814115,39.5924205,35 S 33RD AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_91_6,-74.79615299,39.61995783,3304 PACIFIC AVE,LONGPORT BORO,20,2008,1,RES1,3001 -0115_91_7,-74.57033318,39.37145108,3310 PACIFIC AVE,LONGPORT BORO,20,2006,1,RES1,3001 -0115_91_8,-74.5580385,39.3987395,26 SO 34TH AVE,LONGPORT BORO,20,1980,1,RES1,3001 -0115_91_9,-74.55376324,39.37955892,28 SO 34TH AVE,LONGPORT BORO,19,1968,1,RES1,3001 -0115_92_1,-74.82871556,39.6330445,3305 PACIFIC AVE,LONGPORT BORO,18,1948,1,RES1,3001 -0115_92_10,-74.64198432,39.33921247,3 SO 33RD AVE,LONGPORT BORO,20,2014,1,GOV1,3004 -0115_92_11,-74.51997385,39.46831526,3300 VENTNOR AVE,LONGPORT BORO,,1960,1,GOV1,3004 -0115_92_12,-74.45150931,39.49464134,2 SO COLGATE AVE,LONGPORT BORO,19,1960,1,RES1,3001 -0115_92_13,-74.49878716,39.45475449,4 SO COLGATE AVE,LONGPORT BORO,18,1950,1,GOV1,3004 -0115_92_14,-74.57890645,39.36767963,10 SO COLGATE AVE,LONGPORT BORO,19,1955,1,GOV1,3004 -0115_92_15,-74.57734326,39.34003879,18 SO COLGATE AV,LONGPORT BORO,18,1955,1,RES1,3001 -0115_92_16,-74.57479584,39.34407048,22 SO COLGATE AVE,LONGPORT BORO,21,2013,1,RES1,3001 -0115_92_17,-74.57554101,39.36638733,30 SO COLGATE AV,LONGPORT BORO,18,1952,1,RES1,3001 -0115_92_2,-74.53759501,39.39385433,3301 PACIFIC AVE,LONGPORT BORO,19,2004,1,RES1,3001 -0115_92_3,-74.60142619,39.37378676,31 SO 33RD AVE,LONGPORT BORO,18,1960,1,RES1,3001 -0115_92_4,-74.77714557,39.65808915,27 SO 33RD AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_92_5,-74.58671181,39.35504548,25 SO 33RD AVE,LONGPORT BORO,18,1954,1,RES1,3001 -0115_92_6,-74.61562664,39.32073556,21 SO 33RD AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_92_7,-74.5521535,39.3625675,15 SO 33RD AVE,LONGPORT BORO,20,2017,1,GOV1,3004 -0115_92_8,-74.57331437,39.36718589,11 SO 33RD AV,LONGPORT BORO,18,1963,1,RES1,3001 -0115_92_9,-74.59068752,39.35521909,5 SO 33RD AV,LONGPORT BORO,18,1997,1,RES1,3001 -0115_93_2,-74.56803366,39.34419476,20 SO 34TH AVENUE,LONGPORT BORO,21,2007,1,RES1,3001 -0115_93_3,-74.55584543,39.36199185,17 SO COLGATE AVE,LONGPORT BORO,,1955,1,RES1,3001 -0115_93_4,-74.60893203,39.34698131,15 SO COLGATE AVE,LONGPORT BORO,18,1949,1,RES1,3001 -0115_93_5,-74.63377771,39.35193215,9 SO COLGATE AVE,LONGPORT BORO,18,1950,1,COM1,3004 -0115_93_6,-74.48525709,39.47344129,7 SO COLGATE AV,LONGPORT BORO,20,2014,1,RES1,3001 -0115_93_7,-74.616429,39.3670955,3 SO COLGATE AV,LONGPORT BORO,18,1954,1,RES1,3001 -0115_93_8,-74.82783166,39.64848194,3310 VENTNOR AV,LONGPORT BORO,,2017,1,GOV1,3004 -0115_94_1,-74.46948288,39.49178739,3307 VENTNOR AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_94_10,-74.6024185,39.377158,3300 WINCHESTER AVE,LONGPORT BORO,18,1960,1,GOV1,3004 -0115_94_11,-74.46300978,39.34722635,3306 WINCHESTER AV,LONGPORT BORO,18,1950,1,RES1,3001 -0115_94_12,-74.578873,39.38189,32 NO COLGATE AV,LONGPORT BORO,19,1950,1,RES1,3001 -0115_94_13,-74.54277834,39.38601497,28 NO COLGATE AV,LONGPORT BORO,19,2006,1,RES1,3001 -0115_94_14,-74.55490972,39.38516206,24 NO COLGATE AVE,LONGPORT BORO,19,2005,1,RES1,3001 -0115_94_15,-74.5157145,39.3210795,20 NO COLGATE AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_94_16,-74.5007695,39.3305575,16 NO COLGATE AV,LONGPORT BORO,18,1952,1,RES1,3001 -0115_94_17,-74.49155319,39.33287333,12 NO COLGATE AV,LONGPORT BORO,19,2008,1,RES1,3001 -0115_94_18,-74.5357995,39.3052975,8 NO COLGATE AVE,LONGPORT BORO,18,1946,1,RES1,3001 -0115_94_2,-74.437198,39.3657825,3301 VENTNOR AVE,LONGPORT BORO,18,1945,1,GOV1,3004 -0115_94_3.01,-74.4703305,39.507107,4 N COLGATE AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_94_4,-74.515261,39.5017175,7 NO 33RD AVE,LONGPORT BORO,18,2008,1,RES1,3001 -0115_94_5,-74.5928055,39.316453,11 NO 33RD AVE,LONGPORT BORO,18,1949,1,RES1,3001 -0115_94_6,-74.49438384,39.3309355,17 NO 33RD AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_94_7,-74.5058095,39.3275895,21 NO 33RD AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_94_8,-74.5712845,39.372712,27 NO 33RD AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_94_9,-74.5526865,39.392947,31 NO 33RD AVE,LONGPORT BORO,20,2017,1,RES1,3001 -0115_95_1,-74.59727659,39.31651025,3311 VENTNOR AV,LONGPORT BORO,18,1948,1,RES1,3001 -0115_95_2,-74.50023439,39.32820733,4 NO 34TH AV,LONGPORT BORO,20,2008,1,RES1,3001 -0115_95_3,-74.52310691,39.31915878,8 NO 34TH AVE,LONGPORT BORO,20,2004,1,GOV1,3004 -0115_95_4,-74.53148967,39.40075955,12 NO 34TH AV,LONGPORT BORO,20,2005,1,RES1,3001 -0115_95_5,-74.59738857,39.37023078,14 NO 34TH AVE,LONGPORT BORO,18,1968,1,RES1,3001 -0115_95_6,-74.544358,39.4068635,18 NO 34TH AVE,LONGPORT BORO,20,2012,1,RES1,3001 -0115_95_7,-74.4702165,39.341093,22 NO 34TH AVE,LONGPORT BORO,,1952,1,RES1,3001 -0115_95_8,-74.487903,39.3386055,24 NO 34TH AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_96_1,-74.5007497,39.33709961,100 NO COLGATE AVE,LONGPORT BORO,21,2013,1,RES1,3001 -0115_96_10,-74.3613205,39.4114745,132 NO COLGATE AV,LONGPORT BORO,18,1957,1,RES1,3001 -0115_96_11,-74.36047915,39.41587304,128 NO COLGATE AVE,LONGPORT BORO,18,1962,1,RES1,3001 -0115_96_12,-74.37373074,39.40657606,124 NO COLGATE AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_96_13,-74.40562791,39.39285176,120 NO COLGATE AV,LONGPORT BORO,18,1950,1,RES1,3001 -0115_96_14,-74.43872695,39.37186199,116 NO COLGATE AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_96_15,-74.38894938,39.39425765,110 NO COLGATE AV,LONGPORT BORO,,1950,1,COM3,3004 -0115_96_16,-74.39033896,39.38982784,106 NO COLGATE AVE,LONGPORT BORO,19,1996,1,RES1,3001 -0115_96_17,-74.38771093,39.39074783,102 NO COLGATE AVE,LONGPORT BORO,18,1950,1,RES1,3004 -0115_96_18.01,-74.4514975,39.376241,3302 MONMOUTH AVE,LONGPORT BORO,19,1978,1,COM8,3004 -0115_96_2,-74.45686886,39.35172697,3301 WINCHESTER AVE,LONGPORT BORO,20,2014,1,RES1,3001 -0115_96_3,-74.49862662,39.33511119,103 NO 33RD AV,LONGPORT BORO,19,2009,1,GOV1,3004 -0115_96_4,-74.39049163,39.39182787,109 NO 33RD AVE,LONGPORT BORO,19,2016,1,RES1,3004 -0115_96_5,-74.38257197,39.39724893,115 NO 33RD AV,LONGPORT BORO,18,1945,1,GOV1,3004 -0115_96_6,-74.40796469,39.37799944,119 NO 33RD AV,LONGPORT BORO,20,2008,1,RES1,3001 -0115_96_7,-74.3659819,39.40850578,125 NO 33RD AV,LONGPORT BORO,18,1950,1,GOV1,3004 -0115_96_8,-74.36351626,39.41599689,131 NO 33RD AVE,LONGPORT BORO,20,2009,1,GOV1,3004 -0115_96_9.01,-74.36805,39.4133065,137 NO 33RD AVE,LONGPORT BORO,18,1952,1,RES1,3001 -0115_97_1,-74.38976266,39.39340702,101 NO COLGATE AVE,LONGPORT BORO,19,2004,1,RES1,3001 -0115_97_2,-74.37957585,39.39731047,102 NO 34TH AVE,LONGPORT BORO,20,2004,1,RES1,3001 -0115_97_5,-74.36358824,39.41531811,114 NO 34TH AV,LONGPORT BORO,21,2010,1,GOV1,3004 -0115_97_6,-74.367403,39.4169535,118 NO 34TH AV,LONGPORT BORO,18,1950,1,RES1,3001 -0115_97_7,-74.37384,39.4122345,120 NO 34TH AVE,LONGPORT BORO,18,1948,1,GOV1,3004 -0115_97_8,-74.44894665,39.37161887,122 NO 34TH AV,LONGPORT BORO,18,1952,1,RES1,3001 -0115_97_9,-74.51657033,39.40202299,3304 MONMOUTH AVE,LONGPORT BORO,18,1974,1,GOV1,3004 -0115_98_1,-74.52148968,39.39711001,3305 MONMOUTH AV,LONGPORT BORO,20,2010,1,GOV1,3004 -0115_98_10.01,-74.60305433,39.31107205,214 NO COLGATE AVE,LONGPORT BORO,20,1989,1,RES1,3001 -0115_98_11.01,-74.52687107,39.4076916,210 NO COLGATE AVE,LONGPORT BORO,19,1984,1,RES1,3001 -0115_98_15,-74.500175,39.41011,202 NO COLGATE AVE,LONGPORT BORO,18,1955,1,RES1,3001 -0115_98_2,-74.529402,39.3873865,3301 MONMOUTH AV,LONGPORT BORO,20,2013,1,RES1,3001 -0115_98_3,-74.523693,39.39557,203 NO 33RD AV,LONGPORT BORO,21,2008,1,RES1,3001 -0115_98_4,-74.5069095,39.405101,209 NO 33RD AVE,LONGPORT BORO,20,2015,1,RES1,3001 -0115_98_5,-74.51993795,39.4065952,217 N 33RD AVE,LONGPORT BORO,18,1950,1,GOV1,3004 -0115_98_6,-74.604982,39.3147965,221 NO 33RD AVE,LONGPORT BORO,18,1950,1,RES1,3001 -0115_98_7,-74.58331427,39.3259978,3300 AMHERST AVE,LONGPORT BORO,18,1930,1,GOV1,3004 -0115_98_8,-74.60302518,39.31863552,3306 AMHERST AV,LONGPORT BORO,18,1951,1,RES1,3001 -0115_98_9.01,-74.61371095,39.3165684,218 NO COLGATE AVE,LONGPORT BORO,20,1989,1,GOV1,3004 -0115_99_1.01,-74.50420212,39.40838528,200 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_99_2.01,-74.49781384,39.41222217,204 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_99_3.01,-74.52974327,39.40257959,208 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_99_4.01,-74.60547594,39.31051769,212 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_99_5.01,-74.58631749,39.32066257,216 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_99_6.01,-74.6040785,39.3229655,220 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_99_7.01,-74.60825815,39.32455186,224 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0115_99_8.01,-74.62468,39.360669,228 NO 34TH AVE,LONGPORT BORO,18,1975,1,RES1,3001 -0116_1.01_1,-74.6391955,39.5273705,101 S ANDOVER AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_1.01_10,-74.64472213,39.53430893,104 S FREDERICKSBURG AVE,MARGATE CITY CITY,21,1925,1,RES1,3001 -0116_1.01_11,-74.64204317,39.53321898,106 S FREDERICKSBURG AVE,MARGATE CITY CITY,20,1926,1,RES1,3001 -0116_1.01_12,-74.81596297,39.61315631,108 S FREDERICKSBURG AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_1.01_13,-74.64300612,39.53238324,110 S FREDERICKSBURG AVE,MARGATE CITY CITY,21,2009,1,RES1,3001 -0116_1.01_2,-74.63627114,39.53310232,103 S ANDOVER AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_1.01_4,-74.64300957,39.52472735,107 S ANDOVER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_1.01_5,-74.643658,39.5242835,109 S ANDOVER AVE,MARGATE CITY CITY,21,1932,1,RES1,3001 -0116_1.01_8,-74.65645533,39.52149098,7400 ATLANTIC AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_1.01_9,-74.64734916,39.53528604,102 S FREDERICKSBURG AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_1.02_1,-74.64647084,39.53111802,101 S ARGYLE AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_1.02_10,-74.68646166,39.50968817,104 S ANDOVER AVE,MARGATE CITY CITY,22,2004,1,RES1,3001 -0116_1.02_11,-74.69030166,39.51291498,106 S ANDOVER AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_1.02_12,-74.69869946,39.51952459,110 S ANDOVER AVE,MARGATE CITY CITY,20,1997,1,RES1,3001 -0116_1.02_2,-74.64672378,39.53092419,103 S ARGYLE AVE,MARGATE CITY CITY,19,1925,1,GOV1,3004 -0116_1.02_4,-74.6497106,39.53089478,107 S ARGYLE AVE,MARGATE CITY CITY,20,1925,1,GOV1,3004 -0116_1.02_6,-74.646961,39.5303225,109 S ARGYLE AVE,MARGATE CITY CITY,22,1983,1,RES1,3001 -0116_1.02_8,-74.66090105,39.53698264,100 S ANDOVER AVE,MARGATE CITY CITY,22,2005,1,RES1,3001 -0116_1.02_9,-74.6570425,39.534535,102 S ANDOVER AVE,MARGATE CITY CITY,22,2018,1,RES1,3001 -0116_10.01_1,-74.6274715,39.4381,100 S IROQUOIS AVE,MARGATE CITY CITY,19,1970,1,RES1,3001 -0116_10.01_11,-74.67794681,39.44920287,8310 ATLANTIC AVE,MARGATE CITY CITY,20,1997,1,GOV1,3004 -0116_10.01_12,-74.67939955,39.44638364,103 S JEROME AVE,MARGATE CITY CITY,19,1966,1,GOV1,3004 -0116_10.01_2,-74.62674193,39.43798165,102 S IROQUOIS AVE,MARGATE CITY CITY,20,1961,1,RES1,3001 -0116_10.01_5,-74.64044217,39.44867317,8302 ATLANTIC AVE,MARGATE CITY CITY,17,1956,1,GOV1,3004 -0116_10.01_7,-74.63950161,39.44505024,8306 ATLANTIC AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_10.01_9,-74.65055555,39.45739793,8308 ATLANTIC AVE,MARGATE CITY CITY,22,2017,1,RES1,3001 -0116_10.02_13,-74.684118,39.4448055,8307 SALEM RD,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_10.02_14,-74.69219346,39.44416014,8305 SALEM RD,MARGATE CITY CITY,19,1968,1,RES1,3001 -0116_10.02_15,-74.69119595,39.44871027,8303 SALEM RD,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_10.02_16,-74.48568706,39.34791369,8301 SALEM RD,MARGATE CITY CITY,20,1967,1,RES1,3001 -0116_10.03_17,-74.485284,39.346316,106 S IROQUOIS AVE,MARGATE CITY CITY,20,1998,1,RES1,3001 -0116_10.03_18,-74.4828395,39.3443465,110 S IROQUOIS AVE,MARGATE CITY CITY,20,1962,1,RES1,3001 -0116_10.03_20,-74.48411955,39.34375891,112 S IROQUOIS AVE,MARGATE CITY CITY,20,1965,1,GOV1,3004 -0116_10.03_21,-74.48311613,39.3436404,111 PLYMOUTH RD,MARGATE CITY CITY,20,1984,1,RES1,3001 -0116_10.04_24,-74.45209562,39.35695168,8302 SALEM RD,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_10.04_26,-74.44729915,39.35601133,110 PLYMOUTH RD,MARGATE CITY CITY,20,1987,1,RES1,3001 -0116_10.04_29,-74.4624705,39.355321,107 S JEROME AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_1001_1,-74.71955847,39.43985334,616 N FREDERICKSBURG AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_1001_12,-74.7480218,39.4461078,7506 BAYSHORE DR,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_1001_14,-74.7462595,39.4460095,7502 BAYSHORE DR,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_1001_15,-74.7229285,39.461217,7500 BAYSHORE DR,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_1001_16,-74.72546073,39.45949839,2 ARGYLE COURT,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_1001_17,-74.72642846,39.45741218,3 ARGYLE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_1001_18,-74.714484,39.464226,4 ARGYLE COURT,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_1001_19,-74.73000747,39.45677958,5 ARGYLE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_1001_20,-74.7304635,39.455281,6 ARGYLE COURT,MARGATE CITY CITY,18,1985,1,RES1,3001 -0116_1001_21,-74.7606928,39.44768471,7 ARGYLE COURT,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_1001_22,-74.75838717,39.44667949,8 ARGYLE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_1001_23,-74.762583,39.4461145,7402 BAYSHORE DR,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_1001_24,-74.75388273,39.45359203,7400 BAYSHORE DR,MARGATE CITY CITY,19,1983,1,RES1,3001 -0116_1001_25,-74.73503155,39.47693672,618 N FREDERICKSBURG AVE,MARGATE CITY CITY,20,1997,1,RES1,3001 -0116_1001_3,-74.7159172,39.45062209,7403 BURK AVE,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_1001_4,-74.72723,39.4512,7405 BURK AVE,MARGATE CITY CITY,18,1989,1,RES1,3001 -0116_1001_5,-74.727531,39.4499565,7501 BURK AVE,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_1001_6,-74.72795934,39.44957422,7503 BURK AVE,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_1001_7,-74.71918856,39.4493948,7505 BURK AVE,MARGATE CITY CITY,18,1985,1,RES1,3001 -0116_1001_8,-74.734328,39.436316,7507 BURK AVE,MARGATE CITY CITY,19,1984,1,RES1,3001 -0116_1001_9,-74.736923,39.4498505,615 N BARCLAY AVE,MARGATE CITY CITY,20,1988,1,RES1,3001 -0116_1001_9.01,-74.75065731,39.44889256,617 N BARCLAY AVE,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_1001_9.03,-74.7459575,39.446344,621 N BARCLAY AVE,MARGATE CITY CITY,20,1994,1,RES1,3001 -0116_1002_1,-74.7083575,39.501317,7609 BAYSHORE DR,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_1002_10,-74.86881764,39.4443532,7509 BAYSHORE DR,MARGATE CITY CITY,19,1984,1,RES1,3001 -0116_1002_11,-74.487768,39.3341265,7507 BAYSHORE DR,MARGATE CITY CITY,20,1984,1,RES1,3001 -0116_1002_13,-74.87345906,39.44087379,7503 BAYSHORE DR,MARGATE CITY CITY,21,1987,1,RES1,3001 -0116_1002_15,-74.4968915,39.333327,7405 BAYSHORE DR,MARGATE CITY CITY,20,1984,1,RES1,3001 -0116_1002_16,-74.4901825,39.332941,7403 BAYSHORE DR,MARGATE CITY CITY,19,1984,1,RES1,3001 -0116_1002_17,-74.4917521,39.33258816,7401 BAYSHORE DR,MARGATE CITY CITY,20,1985,1,RES1,3001 -0116_1002_2,-74.76175627,39.48394007,7607 BAYSHORE DR,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_1002_4,-74.7977805,39.442246,7603 BAYSHORE DR,MARGATE CITY CITY,20,1987,1,RES1,3001 -0116_1002_5,-74.826675,39.4657095,7515 BAYSHORE DR,MARGATE CITY CITY,21,1995,1,GOV1,3004 -0116_1002_7.01,-74.517415,39.320892,7513 BAYSHORE DR,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_1002_9.01,-74.85326115,39.44057852,7511 BAYSHORE DR,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_1004.01_1,-74.86965079,39.45590802,615 N CLERMONT AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_1004.01_10,-74.841237,39.47978233,6 BRUNSWICK COURT,MARGATE CITY CITY,19,1980,1,RES1,3001 -0116_1004.01_11,-74.876882,39.477585,7 BRUNSWICK COURT,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_1004.01_12,-74.8776645,39.4763962,7602 BAYSHORE DR,MARGATE CITY CITY,20,1990,1,RES1,3001 -0116_1004.01_13,-74.88201866,39.4863889,7600 BAYSHORE DR,MARGATE CITY CITY,19,1981,1,RES1,3001 -0116_1004.01_14,-74.88101602,39.48472561,7510 BAYSHORE DR,MARGATE CITY CITY,20,1981,1,RES1,3001 -0116_1004.01_15,-74.87448968,39.49319254,7508 BAYSHORE DR,MARGATE CITY CITY,20,1986,1,RES1,3001 -0116_1004.01_16,-74.8634105,39.498852,620 N BARCLAY AVE,MARGATE CITY CITY,20,1988,1,RES1,3001 -0116_1004.01_18,-74.86763282,39.49799051,616 N BARCLAY AVE,MARGATE CITY CITY,20,1995,1,RES1,3001 -0116_1004.01_19,-74.54085063,39.50446172,7509 BURK AVE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_1004.01_2,-74.88157134,39.4610187,617 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_1004.01_20,-74.545305,39.517279,7601 BURK AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_1004.01_21,-74.56026014,39.50468508,7603 BURK AVE,MARGATE CITY CITY,19,1991,1,RES1,3001 -0116_1004.01_22,-74.55947166,39.52617954,7605 BURK AVE,MARGATE CITY CITY,19,1983,1,RES1,3001 -0116_1004.01_23,-74.5595585,39.5349085,7607 BURK AVE,MARGATE CITY CITY,18,1986,1,EDU1,3004 -0116_1004.01_24,-74.5987345,39.511904,7609 BURK AVE,MARGATE CITY CITY,18,1984,1,RES1,3001 -0116_1004.01_3,-74.87257104,39.45650566,7608 BAYSHORE DR,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_1004.01_4,-74.82609777,39.47373158,7606 BAYSHORE DR,MARGATE CITY CITY,19,1984,1,RES1,3001 -0116_1004.01_5,-74.82967816,39.47210153,7604 BAYSHORE DR,MARGATE CITY CITY,20,1990,1,RES1,3001 -0116_1004.01_7,-74.833347,39.4717805,3 BRUNSWICK COURT,MARGATE CITY CITY,19,1980,1,RES1,3001 -0116_1004.01_8,-74.82014493,39.49379602,4 BRUNSWICK COURT,MARGATE CITY CITY,19,1980,1,RES1,3001 -0116_1004.01_9,-74.84838651,39.48262616,5 BRUNSWICK COURT,MARGATE CITY CITY,19,1981,1,RES1,3001 -0116_1004.02_1,-74.60700934,39.50599997,7907 BAYSHORE DR,MARGATE CITY CITY,19,1975,1,RES1,3001 -0116_1004.02_10,-74.61702907,39.56239246,7801 BAYSHORE DR,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_1004.02_11,-74.64776616,39.51108796,7711 BAYSHORE DR,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_1004.02_13,-74.64673977,39.5159122,7707 BAYSHORE DR,MARGATE CITY CITY,19,1963,1,RES1,3001 -0116_1004.02_14,-74.6435235,39.513097,7705 BAYSHORE DR,MARGATE CITY CITY,22,1997,1,RES1,3001 -0116_1004.02_15,-74.66112149,39.51889567,7703 BAYSHORE DR,MARGATE CITY CITY,21,1964,1,RES1,3001 -0116_1004.02_16,-74.63554392,39.52944266,7701 BAYSHORE DR,MARGATE CITY CITY,20,1964,1,RES1,3001 -0116_1004.02_17,-74.63899284,39.52926182,7909 BAYSHORE DR,MARGATE CITY CITY,19,1979,1,RES1,3001 -0116_1004.02_3,-74.6149385,39.5205115,7903 BAYSHORE DR,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_1004.02_5,-74.57839332,39.52887116,7901 BAYSHORE DR,MARGATE CITY CITY,22,2003,1,RES1,3001 -0116_1004.02_6,-74.6007425,39.530587,7809 BAYSHORE DR,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_1004.02_7,-74.57510071,39.54346142,7807 BAYSHORE DR,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_1004.02_8,-74.543282,39.566921,7805 BAYSHORE DR,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_1004.02_9,-74.58767342,39.54401736,7803 BAYSHORE DR,MARGATE CITY CITY,20,2008,1,GOV1,3004 -0116_1005_1,-74.3656845,39.4168405,7813 BURK AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_1005_10,-74.5018305,39.3256645,7802 BAYSHORE DR,MARGATE CITY CITY,19,1964,1,RES1,3001 -0116_1005_11,-74.3697513,39.41576157,1 BAYSHORE CT,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_1005_12,-74.37556007,39.41523956,2 BAYSHORE CT,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_1005_13,-74.36708653,39.41161884,3 BAYSHORE CT,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_1005_14,-74.3785515,39.4029195,4 BAYSHORE CT,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_1005_15,-74.3794595,39.4178145,5 BAYSHORE CT,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_1005_16,-74.56899103,39.34116997,6 BAYSHORE CT,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_1005_17,-74.573991,39.3409015,7 BAYSHORE CT,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_1005_18,-74.57003846,39.34086759,7906 LAGOON DRIVE,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_1005_19,-74.5681645,39.340766,7904 LAGOON DRIVE,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_1005_2,-74.35870354,39.41451284,7811 BURK AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_1005_20,-74.57289176,39.33814777,7902 LAGOON DRIVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_1005_21,-74.570011,39.3512615,624 BAYSHORE CT,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_1005_23,-74.56648336,39.34788906,10 BAYSHORE CT,MARGATE CITY CITY,19,1972,1,RES1,3001 -0116_1005_24,-74.5690335,39.3446275,9 BAYSHORE CT,MARGATE CITY CITY,19,1965,1,RES1,3001 -0116_1005_25,-74.56806031,39.34459111,8 BAYSHORE CT,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_1005_3,-74.35872084,39.41401897,7809 BURK AVE,MARGATE CITY CITY,18,1969,1,GOV1,3004 -0116_1005_4,-74.35808641,39.41292485,7807 BURK AVE,MARGATE CITY CITY,18,1969,1,IND1,3002 -0116_1005_5,-74.360239,39.4127435,7805 BURK AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_1005_6,-74.361294,39.4124475,7803 BURK AVE,MARGATE CITY CITY,17,1970,1,RES1,3001 -0116_1005_7,-74.3593065,39.4120015,616 N DOUGLAS AVE,MARGATE CITY CITY,17,1968,1,RES1,3001 -0116_1005_8,-74.37456207,39.41752024,618 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_1005_9,-74.3672255,39.415849,7800 BAYSHORE DR,MARGATE CITY CITY,19,1964,1,RES1,3001 -0116_101.01_1,-74.62375607,39.54977315,7400 VENTNOR AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_101.01_10,-74.51335585,39.46993006,17 S ANDOVER AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_101.01_11,-74.51661809,39.46519785,19 S ANDOVER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_101.01_12,-74.5219745,39.4695455,21 S ANDOVER AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_101.01_14,-74.524035,39.4682895,7401 ATLANTIC AVE,MARGATE CITY CITY,19,1945,1,RES1,3001 -0116_101.01_15,-74.45261146,39.47883299,20 S FREDERICKSBURG AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_101.01_16,-74.45540278,39.4844141,18 S FREDERICKSBURG AVE,MARGATE CITY CITY,19,1938,1,RES1,3001 -0116_101.01_18,-74.460811,39.4837155,16 S FREDERICKSBURG AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_101.01_19,-74.4861025,39.473056,14 S FREDERICKSBURG AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_101.01_2,-74.63178164,39.54683635,7404 VENTNOR AVE,MARGATE CITY CITY,19,1927,1,RES1,3001 -0116_101.01_20,-74.47620225,39.48342748,10 S FREDERICKSBURG AVE,MARGATE CITY CITY,18,1938,1,RES1,3001 -0116_101.01_21,-74.478349,39.479488,8 S FREDERICKSBURG AVE,MARGATE CITY CITY,47,1930,2,RES1,3001 -0116_101.01_22,-74.45213017,39.49155466,6 S FREDERICKSBURG AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_101.01_23,-74.4640425,39.492746,4 S FREDERICKSBURG AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_101.01_3,-74.64278437,39.53923457,3 S ANDOVER AVE,MARGATE CITY CITY,19,1945,1,GOV1,3004 -0116_101.01_4,-74.654926,39.544506,5 S ANDOVER AVE,MARGATE CITY CITY,19,1945,1,RES1,3001 -0116_101.01_5,-74.64548371,39.5509418,7 S ANDOVER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_101.01_6,-74.64686319,39.54898528,9 S ANDOVER AVE,MARGATE CITY CITY,19,1945,1,RES1,3001 -0116_101.01_7,-74.66850521,39.55893981,11 S ANDOVER AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_101.01_9,-74.527536,39.4568765,15 S ANDOVER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_101.02_1,-74.45764377,39.49177724,7406 VENTNOR AVE,MARGATE CITY CITY,22,2016,1,RES1,3001 -0116_101.02_11,-74.46990212,39.49074926,19 S ARGYLE AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_101.02_12,-74.47020884,39.48846446,21 S ARGYLE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_101.02_13,-74.48365989,39.49545407,7409 ATLANTIC AVE,MARGATE CITY CITY,19,1919,1,RES1,3001 -0116_101.02_14,-74.48613644,39.49635566,22 S ANDOVER AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_101.02_15,-74.49768073,39.47266327,20 S ANDOVER AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_101.02_16,-74.75892334,39.3001052,18 S ANDOVER AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_101.02_18,-74.753181,39.299443,14 S ANDOVER AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_101.02_19,-74.7675168,39.32880547,12 S ANDOVER AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_101.02_2,-74.45444029,39.49167915,7408 VENTNOR AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_101.02_20,-74.76501293,39.35125319,10 S ANDOVER AVE,MARGATE CITY CITY,22,2018,1,RES1,3001 -0116_101.02_21,-74.7677035,39.349198,8 S ANDOVER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_101.02_22,-74.8155962,39.36088496,6 S ANDOVER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_101.02_23,-74.5420395,39.3765655,4 S ANDOVER AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_101.02_3,-74.4501015,39.5002395,3 S ARGYLE AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_101.02_4,-74.4551135,39.499791,5 S ARGYLE AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_101.02_5,-74.4636415,39.497713,7 S ARGYLE AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_101.02_7,-74.4600309,39.49582638,11 S ARGYLE AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_101.02_8,-74.47158956,39.49359891,13 S ARGYLE AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_101.02_9,-74.46829,39.491094,15 S ARGYLE AVE,MARGATE CITY CITY,20,1988,1,RES1,3001 -0116_1012.01_14,-74.37105047,39.40404169,809 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_1012.01_2,-74.37259331,39.41069291,801 N JEROME AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_1012.01_6,-74.37021169,39.40493296,805 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_1012.01_9,-74.3711625,39.4046975,807 N JEROME AVE,MARGATE CITY CITY,18,1957,1,RES1,3001 -0116_1012.02_38,-74.365546,39.4082615,JEROME AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_1012.02_39,-74.36500732,39.40780402,JEROME AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_1012.02_43,-74.36482667,39.40757798,JEROME AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_102.01_1,-74.53877704,39.37123417,7500 VENTNOR AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.01_10,-74.5473245,39.3721765,17 S BARCLAY AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_102.01_11,-74.54941816,39.37180237,19 S BARCLAY AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_102.01_12,-74.54729188,39.37079055,7505 ATLANTIC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.01_13,-74.54844987,39.36937836,7503 ATLANTIC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.01_14,-74.54919975,39.36856698,7501 ATLANTIC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.01_15,-74.53150333,39.38292252,20 S ARGYLE AVE,MARGATE CITY CITY,20,1985,1,RES1,3001 -0116_102.01_16,-74.5385625,39.381906,18 S ARGYLE AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_102.01_17,-74.53259489,39.38002877,16 S ARGYLE AVE,MARGATE CITY CITY,19,1923,1,RES1,3001 -0116_102.01_18,-74.54580264,39.38514686,14 S ARGYLE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.01_19,-74.5523172,39.38484684,12 S ARGYLE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.01_2,-74.5432469,39.37640924,7502 VENTNOR AVE,MARGATE CITY CITY,19,1936,1,RES1,3001 -0116_102.01_20,-74.5477308,39.38235964,10 S ARGYLE AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_102.01_21,-74.54927375,39.38178232,8 S ARGYLE AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_102.01_22,-74.55118916,39.3809416,6 S ARGYLE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.01_23,-74.58305067,39.42261188,4 S ARGYLE AVE,MARGATE CITY CITY,19,1980,1,RES1,3001 -0116_102.01_4,-74.55040049,39.37524787,5 S BARCLAY AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_102.01_5,-74.54957067,39.37514633,7 S BARCLAY AVE,MARGATE CITY CITY,19,1928,1,RES2,3005 -0116_102.01_6,-74.54557739,39.37505336,9 S BARCLAY AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_102.01_7,-74.5425285,39.374623,11 S BARCLAY AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_102.01_8,-74.54456535,39.37411154,15 S BARCLAY AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_102.02_1,-74.58301503,39.4216814,2 S BARCLAY AVE,MARGATE CITY CITY,20,1987,1,RES1,3001 -0116_102.02_10,-74.58898025,39.43393161,17 S BRUNSWICK AVE,MARGATE CITY CITY,20,1933,1,RES1,3001 -0116_102.02_11,-74.58875928,39.42863194,19 S BRUNSWICK AVE,MARGATE CITY CITY,19,1945,1,RES1,3001 -0116_102.02_12,-74.59361647,39.42832166,21 S BRUNSWICK AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.02_14.01,-74.63430717,39.5281815,24 S BARCLAY AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_102.02_14.02,-74.64109657,39.52745457,22 S BARCLAY AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_102.02_16,-74.605301,39.4213185,18 S BARCLAY AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_102.02_17,-74.61257483,39.41996846,16 S BARCLAY AVE,MARGATE CITY CITY,19,1961,1,RES1,3001 -0116_102.02_18,-74.60207604,39.4331712,14 S BARCLAY AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_102.02_19,-74.618875,39.4337445,12 S BARCLAY AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_102.02_2,-74.59224964,39.42609701,7506 VENTNOR AVE,MARGATE CITY CITY,19,1926,1,RES1,3001 -0116_102.02_20,-74.618318,39.4317235,10 S BARCLAY AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_102.02_21,-74.617444,39.430877,8 S BARCLAY AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_102.02_22,-74.610532,39.4292065,6 S BARCLAY AVE,MARGATE CITY CITY,19,1939,1,RES1,3001 -0116_102.02_23,-74.62597741,39.37097884,4 S BARCLAY AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_102.02_3,-74.58654075,39.42374,3 S BRUNSWICK AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_102.02_5,-74.59477618,39.42359111,7 S BRUNSWICK AVE,MARGATE CITY CITY,20,2010,1,RES1,3002 -0116_102.02_6,-74.5959008,39.4213482,9 S BRUNSWICK AVE,MARGATE CITY CITY,20,1937,1,GOV1,3004 -0116_102.02_7,-74.584004,39.432056,11 S BRUNSWICK AVE,MARGATE CITY CITY,18,1935,1,RES1,3001 -0116_102.02_9,-74.59426601,39.43459777,15 S BRUNSWICK AVE,MARGATE CITY CITY,19,1943,1,IND2,3002 -0116_103.01_1,-74.63837234,39.37073997,7601 ATLANTIC AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_103.01_12,-74.63866289,39.38133196,11 S CLARENDON AVE,MARGATE CITY CITY,21,1930,1,RES1,3001 -0116_103.01_13,-74.6414385,39.37152436,8 S BRUNSWICK AVE,MARGATE CITY CITY,19,1941,1,RES1,3001 -0116_103.01_14,-74.6319705,39.3911565,9 S CLARENDON AVE,MARGATE CITY CITY,21,1991,1,RES1,3001 -0116_103.01_16,-74.6444825,39.3892485,7 S CLARENDON AVE,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_103.01_17,-74.68060425,39.38004284,6 S BRUNSWICK AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_103.01_19,-74.674719,39.389071,4 S BRUNSWICK AVE,MARGATE CITY CITY,19,1953,1,RES1,3001 -0116_103.01_2,-74.6235017,39.38352195,14 S BRUNSWICK AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_103.01_21,-74.67851367,39.38600366,2 S BRUNSWICK AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_103.01_23,-74.63492162,39.41003327,3 S CLARENDON AVE,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_103.01_24,-74.62367514,39.41842191,7602 VENTNOR AVE,MARGATE CITY CITY,18,1954,1,RES1,3001 -0116_103.01_3,-74.62573774,39.38267538,7603 ATLANTIC AVE,MARGATE CITY CITY,20,1955,1,RES1,3001 -0116_103.01_4,-74.6246681,39.38150935,19 S CLARENDON AVE,MARGATE CITY CITY,20,1965,1,RES1,3001 -0116_103.01_5,-74.62017113,39.38125927,12 S BRUNSWICK AVE,MARGATE CITY CITY,18,1952,1,COM3,3004 -0116_103.01_6,-74.6250015,39.3811425,17 S CLARENDON AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_103.01_8,-74.622444,39.38073264,15 S CLARENDON AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_103.01_9,-74.62489513,39.37992566,10 S BRUNSWICK AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_103.02_1,-74.62601041,39.41831067,7605 ATLANTIC AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_103.02_11,-74.62280093,39.41414272,10 S CLARENDON AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_103.02_12,-74.63093519,39.41826859,9 S CLERMONT AVE,MARGATE CITY CITY,19,1948,1,RES1,3001 -0116_103.02_13,-74.6314885,39.417075,8 S CLARENDON AVE,MARGATE CITY CITY,20,1948,1,RES1,3001 -0116_103.02_14,-74.63120263,39.41641809,7 S CLERMONT AVE,MARGATE CITY CITY,20,2003,1,RES1,3001 -0116_103.02_17,-74.6479905,39.4060475,6 S CLARENDON AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_103.02_19,-74.64749669,39.40309856,4 S CLARENDON AVE,MARGATE CITY CITY,20,1951,1,RES1,3001 -0116_103.02_21,-74.64488333,39.41228899,2 S CLARENDON AVE,MARGATE CITY CITY,21,2008,1,RES1,3001 -0116_103.02_23,-74.6236015,39.4239505,1 S CLERMONT AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_103.02_3,-74.627359,39.4178115,7607 ATLANTIC AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_103.02_4,-74.622903,39.4176885,15 S CLERMONT AVE,MARGATE CITY CITY,21,2007,1,GOV1,3004 -0116_103.02_5,-74.62614847,39.41716718,16 S CLARENDON AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_103.02_7,-74.62812843,39.41672319,14 S CLARENDON AVE,MARGATE CITY CITY,19,1948,1,RES1,3001 -0116_104_1_C0004,-74.597808,39.311756,1 S DOUGLAS AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_104_2_C041F,-74.60370627,39.31040745,7701 ATLANTIC AVE,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_104_3.01_C0001,-74.61716134,39.30889847,2 S CLERMONT AVE,MARGATE CITY CITY,21,2000,1,RES1,3001 -0116_104_3_C0007,-74.6134299,39.31613703,2 S CLERMONT AVE,MARGATE CITY CITY,21,2000,1,RES1,3001 -0116_105_1,-74.5852035,39.324212,7801 ATLANTIC AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_105_10,-74.5829027,39.32979373,15-A S ESSEX AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_105_17,-74.5809885,39.330953,7 S ESSEX AVE,MARGATE CITY CITY,,1945,1,RES1,3001 -0116_105_2,-74.58500984,39.32283785,7805 ATLANTIC AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_105_2.01,-74.5904868,39.32498526,22 S DOUGLAS AVE,MARGATE CITY CITY,,1954,1,GOV1,3004 -0116_105_20,-74.589228,39.330243,5 S ESSEX AVE,MARGATE CITY CITY,,1930,1,RES1,3004 -0116_105_24,-74.5873795,39.3334035,8-10 S DOUGLAS AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_105_25,-74.5901235,39.3327135,7800 VENTNOR AVE,MARGATE CITY CITY,,1940,1,RES1,3001 -0116_105_28,-74.59680959,39.33033036,7806 VENTNOR AVE,MARGATE CITY CITY,,1967,1,RES1,3001 -0116_105_3_C000C,-74.5901755,39.3235715,7811 ATLANTIC AVE,MARGATE CITY CITY,19,1973,1,RES1,3001 -0116_105_5,-74.58879702,39.32255215,7807 ATLANTIC AVE,MARGATE CITY CITY,,1930,1,RES1,3001 -0116_105_7,-74.58224968,39.33327653,20 S DOUGLAS AVE,MARGATE CITY CITY,21,2017,1,GOV1,3004 -0116_105_8,-74.58790257,39.3196984,17 S ESSEX AVE,MARGATE CITY CITY,,1930,3,GOV1,3004 -0116_106_15,-74.60460766,39.32387969,23 S FRANKLIN AVE,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_106_19_C021B,-74.60165612,39.31984888,21 S FRANKLIN AVE,MARGATE CITY CITY,21,1990,1,RES1,3001 -0116_106_20,-74.602424,39.3203715,14 S ESSEX AVE,MARGATE CITY CITY,43,1952,1,RES1,3001 -0116_106_28,-74.6005465,39.3203415,8-12 S ESSEX AVE,MARGATE CITY CITY,,1955,1,RES1,3001 -0116_106_31_C0008,-74.61403802,39.32448716,7 S FRANKLIN AVE,MARGATE CITY CITY,20,1973,1,RES1,3001 -0116_106_35,-74.61588987,39.32008979,5 S FRANKLIN AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_106_39,-74.60312051,39.33315167,3 S FRANKLIN AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_106_45,-74.6001675,39.3320215,7838 VENTNOR AVE,MARGATE CITY CITY,,1986,1,RES1,3001 -0116_106_47,-74.60014131,39.3314632,7828-34 VENTNOR AVE,MARGATE CITY CITY,,1930,1,GOV1,3004 -0116_106_7,-74.60477781,39.32465746,20 S ESSEX AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_107_1,-74.60355271,39.3285183,7913 ATLANTIC AVE,MARGATE CITY CITY,,1915,1,RES1,3001 -0116_107_10,-74.56713061,39.36216528,28 S FRANKLIN AVE,MARGATE CITY CITY,28,1923,2,RES1,3001 -0116_107_10.01,-74.57449065,39.34662964,26 S FRANKLIN AVE,MARGATE CITY CITY,28,1923,2,RES1,3001 -0116_107_13_C000A,-74.5704588,39.34411617,15 S FRONTENAC AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_107_14,-74.5709735,39.3446315,24 S FRANKLIN AVE,MARGATE CITY CITY,17,1928,1,RES1,3001 -0116_107_17,-74.550401,39.366632,13 S FRONTENAC AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_107_18,-74.55262433,39.36074599,20 S FRANKLIN AVE,MARGATE CITY CITY,28,1928,2,RES1,3001 -0116_107_18.01,-74.55140933,39.36045931,18 S FRANKLIN AVE,MARGATE CITY CITY,28,1928,2,RES1,3001 -0116_107_2,-74.6080545,39.3272215,7911 ATLANTIC AVE,MARGATE CITY CITY,27,1925,2,RES1,3001 -0116_107_2.01,-74.57404413,39.34168384,7909 ATLANTIC AVE,MARGATE CITY CITY,27,1925,2,RES1,3001 -0116_107_21,-74.55794404,39.36664432,11 S FRONTENAC AVE,MARGATE CITY CITY,19,1939,1,RES1,3001 -0116_107_22,-74.55496211,39.3586768,16 S FRANKLIN AVE,MARGATE CITY CITY,28,1928,2,RES1,3001 -0116_107_22.01,-74.57213837,39.35711095,14 S FRANKLIN AVE,MARGATE CITY CITY,28,1928,2,RES1,3001 -0116_107_25,-74.56292432,39.36510502,9 S FRONTENAC AVE,MARGATE CITY CITY,20,2001,1,RES1,3001 -0116_107_26,-74.56438752,39.35368546,12 S FRANKLIN AVE,MARGATE CITY CITY,28,1928,2,GOV1,3004 -0116_107_26.01,-74.56684541,39.35258206,10 S FRANKLIN AVE,MARGATE CITY CITY,28,1928,2,RES1,3001 -0116_107_3.01,-74.57170816,39.33727885,7905 ATLANTIC AVE,MARGATE CITY CITY,33,1930,1,RES1,3001 -0116_107_30,-74.56917167,39.364379,2 S FRANKLIN AVE,MARGATE CITY CITY,,1960,1,RES1,3001 -0116_107_33,-74.55388541,39.36509773,5 S FRONTENAC AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_107_4,-74.573485,39.3365855,7903 ATLANTIC AVE,MARGATE CITY CITY,33,1930,1,RES1,3001 -0116_107_4.01_C0002,-74.56838691,39.35014788,7901 ATLANTIC,MARGATE CITY CITY,21,1930,1,RES1,3001 -0116_107_41,-74.55973937,39.36233666,7950 VENTNOR AVE,MARGATE CITY CITY,,1953,1,RES1,3004 -0116_107_44,-74.55486888,39.36217497,FRANKLIN & VENTNOR AVES,MARGATE CITY CITY,,0,1,RES1,3001 -0116_107_9,-74.5683949,39.34956816,17 S FRONTENAC AVE,MARGATE CITY CITY,17,1922,2,RES1,3001 -0116_108.01_11,-74.54873768,39.37733879,15 S GLADSTONE AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_108.01_12,-74.55580254,39.3751909,14 S FRONTENAC AVE,MARGATE CITY CITY,,1925,1,REL1,3004 -0116_108.01_15_C0002,-74.55623023,39.3691553,12 S FRONTENAC AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_108.01_17,-74.56908283,39.37411047,11 S GLADSTONE AVE,MARGATE CITY CITY,45,1938,2,RES1,3001 -0116_108.01_18_C0002,-74.5649145,39.3731885,10 S FRONTENAC AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_108.01_20_C000A,-74.56501182,39.37245856,9 S GLADSTONE AVE,MARGATE CITY CITY,20,1925,1,COM5,3004 -0116_108.01_21,-74.57000818,39.36972443,8008 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_108.01_23,-74.55323955,39.37844222,7 S GLADSTONE AVE,MARGATE CITY CITY,45,1930,2,GOV1,3004 -0116_108.01_3,-74.5339415,39.3817405,8009 ATLANTIC AVE,MARGATE CITY CITY,,1986,1,RES1,3001 -0116_108.01_30,-74.5418305,39.3922055,2 S FRONTENAC AVE,MARGATE CITY CITY,,1950,1,RES1,3001 -0116_108.01_35.01,-74.53879716,39.39022357,8000 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_108.01_4,-74.540553,39.3817075,8007 ATLANTIC AVE,MARGATE CITY CITY,45,1930,4,RES1,3001 -0116_108.01_5,-74.53369715,39.37766405,8005 ATLANTIC AVE,MARGATE CITY CITY,,1955,1,RES1,3001 -0116_108.01_6_C0007,-74.55234072,39.38430286,8001 ATLANTIC AVE,MARGATE CITY CITY,21,1980,1,RES1,3001 -0116_108.01_8,-74.54484975,39.37877617,17 S GLADSTONE AVE,MARGATE CITY CITY,45,1938,2,RES1,3001 -0116_108.01_9,-74.545158,39.3779855,16 S FRONTENAC AVE,MARGATE CITY CITY,17,1925,1,RES1,3002 -0116_108.02_1,-74.540517,39.389388,GRANVILLE & ATLANTIC,MARGATE CITY CITY,,0,1,RES1,3001 -0116_108.02_19,-74.540816,39.3884605,9 S GRANVILLE AVE,MARGATE CITY CITY,49,2017,4,EDU1,3004 -0116_108.02_22,-74.53748716,39.38779677,7 S GRANVILLE-8 S GLADSTN,MARGATE CITY CITY,,0,1,RES1,3001 -0116_108.02_24,-74.5339955,39.386865,GLADSTONE AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_108.02_25,-74.53718074,39.38652635,3 S GRANVILLE AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_108.02_26,-74.5433455,39.392319,GLADSTONE AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_108.02_28,-74.53876598,39.38635216,1 S GRANVILLE AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_108.02_31,-74.54125903,39.38577383,8016-18 VENTNOR AVE,MARGATE CITY CITY,,0,1,COM1,3004 -0116_108.02_32,-74.54974193,39.39358073,8012-14 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_109.01_1,-74.5492055,39.388314,20 S GRANVILLE AVE,MARGATE CITY CITY,20,1964,1,RES1,3001 -0116_109.01_10,-74.58230296,39.37114194,5 S HAVERFORD AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_109.01_11,-74.59146386,39.3726036,3 S HAVERFORD AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_109.01_12,-74.59321699,39.36854421,1 S HAVERFORD AVE,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_109.01_14,-74.595725,39.3821275,8100 VENTNOR AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_109.01_15,-74.608357,39.376527,4 S GRANVILLE AVE,MARGATE CITY CITY,20,1962,1,RES1,3001 -0116_109.01_16,-74.61785366,39.37427482,6 S GRANVILLE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_109.01_17,-74.61701,39.3738945,8 S GRANVILLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_109.01_18,-74.61894161,39.37292854,10 S GRANVILLE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_109.01_19,-74.61393329,39.36992703,12 S GRANVILLE AVE,MARGATE CITY CITY,20,1957,1,RES1,3001 -0116_109.01_2,-74.54953351,39.38709938,8103 ATLANTIC AVE,MARGATE CITY CITY,20,2009,1,RES1,3001 -0116_109.01_20,-74.61687821,39.36875237,14 S GRANVILLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_109.01_21,-74.617942,39.3810625,16 S GRANVILLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_109.01_22,-74.61630683,39.38066217,18 S GRANVILLE AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_109.01_3,-74.54530308,39.38689285,19 S HAVERFORD AVE,MARGATE CITY CITY,19,1962,1,RES1,3001 -0116_109.01_4,-74.55154817,39.38574849,17 S HAVERFORD AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_109.01_5,-74.53330068,39.40099692,15 S HAVERFORD AVE,MARGATE CITY CITY,17,1937,1,RES1,3001 -0116_109.01_6,-74.53174635,39.40086293,13 S HAVERFORD AVE,MARGATE CITY CITY,20,1980,1,RES1,3001 -0116_109.01_7,-74.5455185,39.3986155,11 S HAVERFORD AVE,MARGATE CITY CITY,18,1930,1,RES3A,3001 -0116_109.01_8,-74.5501576,39.39419508,9 S HAVERFORD AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_109.01_9,-74.56375583,39.39006666,7 S HAVERFORD AVE,MARGATE CITY CITY,18,1930,1,COM5,3004 -0116_109.02_1,-74.61869994,39.37812358,8107 ATLANTIC AVE,MARGATE CITY CITY,20,2009,1,RES1,3001 -0116_109.02_10,-74.61424192,39.39480106,5 S HUNTINGTON AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_109.02_11,-74.53872203,39.40834325,3 S HUNTINGTON AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_109.02_12,-74.536332,39.404927,8112 VENTNOR AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_109.02_13,-74.56386294,39.40960968,8110 VENTNOR AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_109.02_14,-74.560902,39.4084755,8106 VENTNOR AVE,MARGATE CITY CITY,,1925,4,RES1,3001 -0116_109.02_15,-74.56468768,39.41006214,4 S HAVERFORD AVE,MARGATE CITY CITY,21,2007,1,RES1,3001 -0116_109.02_16,-74.56191418,39.41499052,6 S HAVERFORD AVE,MARGATE CITY CITY,21,1987,1,RES1,3001 -0116_109.02_17,-74.56987954,39.41353073,8 S HAVERFORD AVE,MARGATE CITY CITY,18,1945,1,RES1,3001 -0116_109.02_18,-74.5687085,39.413303,10 S HAVERFORD AVE,MARGATE CITY CITY,18,1936,1,RES1,3001 -0116_109.02_19,-74.536995,39.4255105,12 S HAVERFORD AVE,MARGATE CITY CITY,21,1986,1,RES1,3001 -0116_109.02_2,-74.5845555,39.400703,20 S HAVERFORD AVE,MARGATE CITY CITY,18,1940,1,RES1,3001 -0116_109.02_20,-74.55779656,39.43304371,14 S HAVERFORD AVE,MARGATE CITY CITY,18,1935,1,RES1,3001 -0116_109.02_21,-74.57218761,39.42789541,16 S HAVERFORD AVE,MARGATE CITY CITY,21,1980,1,RES1,3001 -0116_109.02_22,-74.58412858,39.4084433,18 S HAVERFORD AVE,MARGATE CITY CITY,18,1915,1,RES1,3001 -0116_109.02_3,-74.6038075,39.39195728,8111 ATLANTIC AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_109.02_4,-74.60246382,39.38987002,17 S HUNTINGTON AVE,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_109.02_5,-74.60646907,39.38652607,15 S HUNTINGTON AVE,MARGATE CITY CITY,20,2009,1,RES1,3001 -0116_109.02_6,-74.61892748,39.38844324,13 S HUNTINGTON AVE,MARGATE CITY CITY,18,1927,1,GOV1,3004 -0116_109.02_7,-74.61871555,39.38705731,11 S HUNTINGTON AVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_109.02_8,-74.60824695,39.38671313,9 S HUNTINGTON AVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_109.02_9,-74.60856307,39.38611802,7 S HUNTINGTON AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_11.01_1,-74.4639205,39.3538755,101 S KNIGHT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_11.01_11,-74.49342081,39.33813046,104 S JEROME AVE,MARGATE CITY CITY,20,1991,1,RES1,3001 -0116_11.01_12,-74.49195082,39.33756352,106 S JEROME AVE,MARGATE CITY CITY,20,1944,1,GOV1,3004 -0116_11.01_13,-74.49803538,39.33751249,110 S JEROME AVE,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_11.01_14,-74.49438948,39.33667066,112 S JEROME AVE,MARGATE CITY CITY,20,1962,1,RES1,3001 -0116_11.01_2,-74.4553182,39.35323793,103 S KNIGHT AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_11.01_3,-74.46262603,39.35293185,105 S KNIGHT AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_11.01_4,-74.4548755,39.3520485,107 S KNIGHT AVE,MARGATE CITY CITY,22,2003,1,RES1,3002 -0116_11.01_5,-74.46054754,39.35147491,109 S KNIGHT AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_11.01_6,-74.48119826,39.35204216,111 S KNIGHT AVE,MARGATE CITY CITY,19,1964,1,RES1,3001 -0116_11.01_9,-74.49036428,39.33926878,8400 ATLANTIC AVE,MARGATE CITY CITY,19,1945,1,RES1,3001 -0116_11.02_11,-74.66567441,39.46133244,106 S KNIGHT AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_11.02_12,-74.6663315,39.456084,108 S KNIGHT AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_11.02_13,-74.66700189,39.45591507,110 S KNIGHT AVE,MARGATE CITY CITY,18,1951,1,GOV1,3004 -0116_11.02_14,-74.61939083,39.50316649,112 S KNIGHT AVE,MARGATE CITY CITY,20,1980,1,RES1,3001 -0116_11.02_2,-74.48771659,39.33656455,103 S KENYON AVE,MARGATE CITY CITY,19,1963,1,RES1,3001 -0116_11.02_3,-74.48839113,39.33649167,105 S KENYON AVE,MARGATE CITY CITY,19,1948,1,RES1,3001 -0116_11.02_4,-74.4968675,39.336355,107 S KENYON AVE,MARGATE CITY CITY,20,1948,1,RES1,3001 -0116_11.02_5,-74.49035841,39.33566733,109 S KENYON AVE,MARGATE CITY CITY,19,1948,1,RES3A,3001 -0116_11.02_6,-74.49165,39.335636,111 S KENYON AVE,MARGATE CITY CITY,22,1999,1,RES1,3001 -0116_11.02_9,-74.48979585,39.33558248,8406 ATLANTIC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_110.01_1,-74.5787585,39.4183765,8201 ATLANTIC AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_110.01_10,-74.596122,39.410737,5 S HANOVER AVE,MARGATE CITY CITY,18,1926,1,RES1,3001 -0116_110.01_12,-74.6052345,39.4087605,1 S HANOVER AVE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_110.01_15,-74.60377109,39.40797556,6 S HUNTINGTON AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_110.01_16,-74.60380999,39.41800917,8 S HUNTINGTON AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_110.01_17,-74.60084013,39.4172623,10 S HUNTINGTON AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_110.01_18,-74.61007944,39.41640022,12 S HUNTINGTON AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_110.01_20,-74.69768592,39.35555356,30 S HUNTINGTON AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_110.01_5,-74.59317957,39.41899178,15 S HANOVER AVE,MARGATE CITY CITY,20,1983,1,RES1,3001 -0116_110.01_6,-74.59052625,39.41847237,13 S HANOVER AVE,MARGATE CITY CITY,18,1940,1,RES1,3001 -0116_110.01_7,-74.5951978,39.41817242,11 S HANOVER AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_110.01_8,-74.586992,39.411809,9 S HANOVER AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_110.01_9,-74.59616862,39.41120931,7 S HANOVER AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_110.02_1.01,-74.50260016,39.32937251,14 S HANOVER AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_110.02_1.02,-74.50641694,39.32920408,16 S HANOVER AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_110.02_10,-74.63833182,39.43412771,3 S IROQUOIS AVE,MARGATE CITY CITY,18,1937,1,GOV1,3004 -0116_110.02_11,-74.63208355,39.43330698,8208 VENTNOR AVE,MARGATE CITY CITY,18,1954,1,RES1,3001 -0116_110.02_12,-74.63588876,39.43053906,1 S IROQUOIS AVE,MARGATE CITY CITY,20,1960,1,RES1,3001 -0116_110.02_13,-74.63876121,39.42999968,2 S HANOVER AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_110.02_15.01,-74.5018971,39.33086366,4 S HANOVER AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_110.02_15.02,-74.5034555,39.329426,4A S HANOVER AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_110.02_16,-74.64369452,39.43350108,6 S HANOVER AVE,MARGATE CITY CITY,18,1940,1,RES1,3001 -0116_110.02_17,-74.65662182,39.43312497,8 S HANOVER AVE,MARGATE CITY CITY,18,1938,1,GOV1,3004 -0116_110.02_18,-74.69266014,39.41390114,10 S HANOVER AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_110.02_19,-74.69146328,39.41295811,12 S HANOVER AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_110.02_3,-74.63596565,39.42730843,8221 ATLANTIC AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_110.02_5,-74.63078619,39.42238456,15 S IROQUOIS AVE,MARGATE CITY CITY,18,1935,1,RES1,3001 -0116_110.02_6,-74.63506381,39.41981759,13 S IROQUOIS AVE,MARGATE CITY CITY,19,1954,1,COM1,3004 -0116_110.02_7,-74.61961368,39.4331395,11 S IROQUOIS AVE,MARGATE CITY CITY,21,1965,1,RES1,3001 -0116_110.02_8,-74.62028055,39.4319237,9 S IROQUOIS AVE,MARGATE CITY CITY,20,1940,1,RES1,3001 -0116_110.02_9,-74.63449679,39.43485291,7 S IROQUOIS AVE,MARGATE CITY CITY,21,1930,1,RES3C,3004 -0116_1105_1,-74.87671821,39.59540959,7900 BAYSHORE DR,MARGATE CITY CITY,20,1967,1,RES1,3001 -0116_1105_2,-74.8756435,39.5938125,7903 LAGOON DRIVE,MARGATE CITY CITY,17,1967,1,GOV1,3004 -0116_111.01_10,-74.84079431,39.52662175,5 S JASPER AVE,MARGATE CITY CITY,19,1981,1,RES1,3001 -0116_111.01_11,-74.841837,39.541574,3 S JASPER AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_111.01_12,-74.85596106,39.54261544,1 S JASPER AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_111.01_13,-74.85890167,39.56452149,8302 VENTNOR AVE,MARGATE CITY CITY,19,1977,1,RES1,3001 -0116_111.01_14,-74.71880035,39.57664895,2 S IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_111.01_15,-74.72020797,39.57299034,4 S IROQUOIS AVE,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_111.01_16,-74.73781319,39.5881184,6 S IROQUOIS AVE,MARGATE CITY CITY,18,1944,1,RES1,3001 -0116_111.01_17,-74.7509305,39.60401083,8 S IROQUOIS AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_111.01_18,-74.76362505,39.60350334,10 S IROQUOIS AVE,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_111.01_19,-74.78747379,39.60437214,12 S IROQUOIS AVE,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_111.01_20,-74.715079,39.634888,14 S IROQUOIS AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_111.01_21,-74.7457795,39.6373425,16 S IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_111.01_22,-74.76666849,39.61264156,18 S IROQUOIS AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_111.01_3,-74.78876266,39.54770042,8305 ATLANTIC AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_111.01_4,-74.81093871,39.52045396,17 S JASPER AVE,MARGATE CITY CITY,18,1933,1,RES1,3001 -0116_111.01_5,-74.80698149,39.53539314,15 S JASPER AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_111.01_7,-74.8200885,39.52812,11 S JASPER AVE,MARGATE CITY CITY,20,1946,1,RES1,3001 -0116_111.01_9,-74.833358,39.5299565,7 S JASPER AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_111.02_1,-74.770664,39.619518,8307 ATLANTIC AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_111.02_10,-74.78275198,39.63594509,5 S JEROME AVE,MARGATE CITY CITY,21,1938,1,RES1,3001 -0116_111.02_11,-74.79146326,39.6376832,3 S JEROME AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_111.02_12.01,-74.815156,39.6359975,8310 VENTNOR AVE,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_111.02_12.02,-74.81443684,39.63546853,8308 VENTNOR AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_111.02_14,-74.78671,39.637378,2 S JASPER AVE,MARGATE CITY CITY,20,1979,1,GOV1,3004 -0116_111.02_15,-74.78777955,39.6342453,4 S JASPER AVE,MARGATE CITY CITY,20,1988,1,GOV1,3004 -0116_111.02_18,-74.79075816,39.63420279,10 S JASPER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_111.02_20,-74.79222673,39.63318036,14 S JASPER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_111.02_21,-74.8344453,39.59102419,16 S JASPER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_111.02_22,-74.87134543,39.57376915,18 S JASPER AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_111.02_3,-74.787417,39.6099655,17 S JEROME AVE,MARGATE CITY CITY,21,1958,1,GOV1,3004 -0116_111.02_4,-74.7808769,39.61440514,17 S JEROME AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_111.02_5,-74.78860897,39.62006932,15 S JEROME AVE,MARGATE CITY CITY,19,1948,1,RES1,3001 -0116_111.02_6,-74.76497148,39.63737433,13 S JEROME AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_111.02_7,-74.77247834,39.63406954,11 S JEROME AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_111.02_8,-74.769539,39.631908,9 S JEROME AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_111.02_9,-74.7793945,39.624616,7 S JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_1112.01_2,-74.8779905,39.5909415,8301 LAGOON DRIVE,MARGATE CITY CITY,,2008,1,RES1,3001 -0116_112.01_1,-74.8391275,39.5975715,8401 ATLANTIC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_112.01_11,-74.8738112,39.59571234,3 S KNIGHT AVE,MARGATE CITY CITY,18,1954,1,RES1,3001 -0116_112.01_12,-74.8827976,39.59370023,1 S KNIGHT AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_112.01_13,-74.87569024,39.59364949,8404 VENTNOR AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_112.01_14,-74.54766066,39.38077052,2 S JEROME AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_112.01_15,-74.55080215,39.38063036,4 S JEROME AVE,MARGATE CITY CITY,17,1942,1,RES1,3001 -0116_112.01_16,-74.545826,39.3797235,6 S JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_112.01_17,-74.54349832,39.37860797,8 S JEROME AVE,MARGATE CITY CITY,21,2018,1,GOV1,3004 -0116_112.01_18,-74.54762852,39.37848312,10 S JEROME AVE,MARGATE CITY CITY,18,1938,1,RES1,3001 -0116_112.01_19.01,-74.55714498,39.37592067,12 S JEROME AVE,MARGATE CITY CITY,18,1915,1,RES1,3001 -0116_112.01_19.02,-74.55839349,39.37567048,14 S JEROME AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_112.01_20,-74.5602945,39.3737495,16 S JEROME AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_112.01_3,-74.866915,39.5938215,19 S KNIGHT AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_112.01_7,-74.86966428,39.59258182,11 S KNIGHT AVE,MARGATE CITY CITY,18,1968,1,COM8,3004 -0116_112.01_8,-74.88278784,39.59589703,9 S KNIGHT AVE .,MARGATE CITY CITY,20,1920,1,RES1,3001 -0116_112.01_9,-74.8766075,39.5957565,7 S KNIGHT AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_112.02_1,-74.553417,39.3725925,8405 ATLANTIC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_112.02_10,-74.57366102,39.37047518,7 S KENYON AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_112.02_11,-74.56866988,39.36976283,5 S KENYON AVE,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_112.02_12,-74.57493429,39.37751973,8410 VENTNOR AVE,MARGATE CITY CITY,17,1950,1,RES3B,3001 -0116_112.02_13,-74.5370395,39.391046,8408 VENTNOR AVE,MARGATE CITY CITY,16,1950,1,RES1,3001 -0116_112.02_14,-74.53762,39.3881205,8406 VENTNOR AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_112.02_15,-74.533596,39.3873505,4 S KNIGHT AVE,MARGATE CITY CITY,19,1948,1,RES1,3001 -0116_112.02_16,-74.55037698,39.39048216,6 S KNIGHT AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_112.02_17,-74.53589463,39.39870771,8 S KNIGHT AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_112.02_18,-74.5635275,39.387906,10 S KNIGHT AVE,MARGATE CITY CITY,18,1961,1,RES1,3001 -0116_112.02_2,-74.55376189,39.37135979,8407 ATLANTIC AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_112.02_20,-74.55900649,39.39851916,16 S KNIGHT AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_112.02_21,-74.55937211,39.39779253,18 S KNIGHT AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_112.02_22,-74.88134812,39.59098022,20 S KNIGHT AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_112.02_3,-74.5607925,39.3699265,8409 ATLANTIC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_112.02_4,-74.56002903,39.36942825,19 S KENYON AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_112.02_5,-74.55370501,39.36856881,17 S KENYON AVE,MARGATE CITY CITY,18,1953,1,RES1,3001 -0116_112.02_6,-74.571294,39.373695,15 S KENYON AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_112.02_7,-74.57144573,39.37346096,13 S KENYON AVE,MARGATE CITY CITY,19,1954,1,COM1,3004 -0116_112.02_8,-74.5659865,39.373297,11 S KENYON AVE,MARGATE CITY CITY,21,1935,1,RES1,3001 -0116_112.02_9,-74.57217451,39.37294533,9 S KENYON AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_113.01_1,-74.87215883,39.58943402,8510 VENTNOR AVE,MARGATE CITY CITY,,1932,1,RES1,3001 -0116_113.01_10,-74.800639,39.635274,17 S LANCASTER AVE,MARGATE CITY CITY,18,1953,1,RES1,3001 -0116_113.01_11,-74.80121549,39.63145115,4 S KENYON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_113.01_12,-74.8076065,39.6394115,6 S KENYON AVE,MARGATE CITY CITY,19,1949,1,RES1,3001 -0116_113.01_13,-74.8134485,39.637691,8 S KENYON AVE,MARGATE CITY CITY,21,2013,1,RES3A,3001 -0116_113.01_14,-74.822243,39.6308405,10 S KENYON AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_113.01_15,-74.8263865,39.6273165,12 S KENYON AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_113.01_16,-74.83436235,39.62478804,14 S KENYON AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_113.01_17.01,-74.82413198,39.63793617,16 S KENYON AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_113.01_17.02,-74.85426831,39.61990535,18 S KENYON AVE,MARGATE CITY CITY,18,1951,1,RES1,3001 -0116_113.01_18,-74.85320893,39.61797346,8501 ATLANTIC AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_113.01_19,-74.85280381,39.61537239,8507 ATLANTIC AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_113.01_2,-74.881057,39.5888575,8508 VENTNOR AVE,MARGATE CITY CITY,,1932,1,GOV1,3004 -0116_113.01_20,-74.883513,39.4634435,19 S LANCASTER AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_113.01_3,-74.86799051,39.60248083,8506 VENTNOR AVE,MARGATE CITY CITY,,1932,1,GOV1,3004 -0116_113.01_4.01,-74.79597545,39.62217056,8504 VENTNOR AVE,MARGATE CITY CITY,,1932,1,RES1,3001 -0116_113.01_4.02,-74.8145905,39.6162495,3 S LANCASTER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_113.01_5.01,-74.82777217,39.60643951,8502 VENTNOR AVE,MARGATE CITY CITY,,1932,1,RES1,3001 -0116_113.01_5.02,-74.80552094,39.62888134,5 S LANCASTER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_113.01_6.01,-74.79747534,39.62297197,8500 VENTNOR AVE,MARGATE CITY CITY,,1932,1,RES1,3001 -0116_113.01_6.02,-74.8080615,39.630386,7 S LANCASTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_113.01_8,-74.81211415,39.63024475,11 S LANCASTER AVE,MARGATE CITY CITY,21,1945,1,RES1,3001 -0116_113.01_9,-74.79758086,39.63566473,15 S LANCASTER AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_113.02_1,-74.8841412,39.47805808,1 S MANSFIELD AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_113.02_10,-74.907073,39.493213,10 S LANCASTER AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_113.02_11,-74.925671,39.49864437,12 S LANCASTER AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_113.02_13,-74.92737534,39.48933974,14 S LANCASTER AVE,MARGATE CITY CITY,19,1927,1,COM1,3004 -0116_113.02_14,-74.943095,39.491001,16 S LANCASTER AVE,MARGATE CITY CITY,21,1983,1,RES1,3001 -0116_113.02_15,-74.931598,39.497507,18 S LANCASTER AVE,MARGATE CITY CITY,20,1945,1,RES1,3001 -0116_113.02_16,-74.93187116,39.49747777,15 S MANSFIELD AVE,MARGATE CITY CITY,20,1989,1,RES1,3001 -0116_113.02_17,-74.93099029,39.49704317,8509 ATLANTIC AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_113.02_2,-74.89217472,39.47326168,3 S MANSFIELD AVE,MARGATE CITY CITY,19,1955,1,RES4,3001 -0116_113.02_3,-74.9173435,39.4757475,5 S MANSFIELD AVE,MARGATE CITY CITY,20,1962,1,COM4,3004 -0116_113.02_4,-74.91870306,39.48049068,7 S MANSFIELD AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_113.02_5,-74.90284683,39.48970501,9 S MANSFIELD AVE,MARGATE CITY CITY,19,1953,1,RES1,3001 -0116_113.02_7_C000A,-74.88705613,39.50200863,8512 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_113.02_9,-74.88953051,39.49959282,8 S LANCASTER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_114_1,-74.9520885,39.496921,8602 VENTNOR AVE,MARGATE CITY CITY,19,1947,1,RES1,3001 -0116_114_10,-74.92577035,39.52040135,4 S MANSFIELD AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_114_11,-74.9224575,39.5128795,6 S MANSFIELD AVE,MARGATE CITY CITY,20,2011,1,COM1,3004 -0116_114_12,-74.9111105,39.5261245,8 S MANSFIELD AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_114_13,-74.93600773,39.51246289,10 S MANSFIELD AVE,MARGATE CITY CITY,20,2011,1,COM1,3004 -0116_114_2,-74.88861181,39.51017718,3 S NASSAU AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_114_3,-74.89706322,39.51369409,5 S NASSAU AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_114_6,-74.92469781,39.5100811,11 S NASSAU AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_114_7,-74.9263395,39.5067965,8605 ATLANTIC AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_114_8,-74.92575034,39.50582901,8600 VENTNOR AVE,MARGATE CITY CITY,19,1952,1,RES1,3001 -0116_114_9,-74.9115175,39.5155435,2 S MANSFIELD AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_115_1,-74.92771021,39.50789248,8606 VENTNOR AVE,MARGATE CITY CITY,20,1939,1,RES1,3001 -0116_115_10,-74.94859925,39.52023196,4 S NASSAU AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_115_11,-74.94155783,39.5200861,6 S NASSAU AVE,MARGATE CITY CITY,19,1954,1,RES1,3001 -0116_115_12,-74.93974,39.519385,8 S NASSAU AVE,MARGATE CITY CITY,18,1953,1,RES1,3001 -0116_115_14,-74.938559,39.518868,8607 ATLANTIC AVE,MARGATE CITY CITY,19,1930,1,RES3A,3001 -0116_115_3,-74.94009107,39.51124424,5 S OSBORNE AVE,MARGATE CITY CITY,20,1940,1,RES1,3001 -0116_115_6,-74.94120086,39.50448632,9 S OSBORNE AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_115_9,-74.9342035,39.5198195,2 S NASSAU AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_116_1,-74.9432145,39.5178565,8702 VENTNOR AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_116_10,-74.95045625,39.51305667,6 S OSBORNE AVE,MARGATE CITY CITY,19,1960,1,RES1,3001 -0116_116_11,-74.96214,39.5186395,8 S OSBORNE AVE,MARGATE CITY CITY,19,1960,1,RES1,3001 -0116_116_12,-74.9317075,39.5259905,10 S OSBORNE AVE,MARGATE CITY CITY,19,1920,1,RES3B,3001 -0116_116_14,-74.93680123,39.52406068,8701 ATLANTIC AVE,MARGATE CITY CITY,18,1951,1,RES1,3001 -0116_116_2,-74.947376,39.516485,5 S PEMBROKE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_116_3.01,-74.497769,39.331874,7 S PEMBROKE AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_116_3.02,-74.4935655,39.331719,9 S PEMBROKE AVE,MARGATE CITY CITY,22,2006,1,RES3A,3001 -0116_116_5,-74.9390335,39.515505,11 S PEMBROKE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_116_7,-74.95066773,39.52081193,8703 ATLANTIC AVE,MARGATE CITY CITY,20,1923,1,RES1,3001 -0116_116_8,-74.949228,39.518792,8700 VENTNOR AVE,MARGATE CITY CITY,20,1938,1,RES1,3004 -0116_117_1,-74.937513,39.521721,8706 VENTNOR AVE,MARGATE CITY CITY,20,1930,1,RES1,3001 -0116_117_13,-74.938604,39.5318395,10 S PEMBROKE AVE,MARGATE CITY CITY,21,2009,1,RES1,3001 -0116_117_14,-74.94899777,39.52359146,12 S PEMBROKE AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_117_15,-74.96102563,39.52770027,14 S PEMBROKE AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_117_16,-74.95119123,39.53102709,8705 ATLANTIC AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_117_2,-74.9465134,39.5267638,5 S QUINCY AVE,MARGATE CITY CITY,19,1910,1,GOV1,3004 -0116_117_3,-74.944848,39.526321,7 S QUINCY AVE,MARGATE CITY CITY,19,1966,1,RES1,3001 -0116_117_4,-74.942156,39.525715,9 S QUINCY AVE,MARGATE CITY CITY,19,1968,1,RES3A,3001 -0116_117_6,-74.947687,39.5239975,11 S QUINCY AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_117_7,-74.94541734,39.52292007,15 S QUINCY AVE,MARGATE CITY CITY,21,2009,1,GOV1,3004 -0116_117_8,-74.94189668,39.52278547,8707 ATLANTIC AVE,MARGATE CITY CITY,19,1941,1,RES1,3001 -0116_117_9,-74.9461085,39.5378975,2 S PEMBROKE AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_118_1,-74.9166372,39.55359247,8802 VENTNOR AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_118_10,-74.8835255,39.599548,4 S QUINCY AVE,MARGATE CITY CITY,19,1930,1,RES3A,3001 -0116_118_12,-74.741203,39.640013,6 S QUINCY AVE,MARGATE CITY CITY,20,1986,1,RES1,3001 -0116_118_13,-74.79224364,39.64758579,8 S QUINCY AVE,MARGATE CITY CITY,19,1939,1,RES1,3001 -0116_118_14,-74.79067233,39.64334497,10 S QUINCY AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_118_15,-74.78527805,39.64020484,12 S QUINCY AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_118_16,-74.78593965,39.63981296,8801 ATLANTIC AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_118_2,-74.88784726,39.56960094,3 S RUMSON AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_118_3,-74.94419281,39.54415807,5 S RUMSON AVE,MARGATE CITY CITY,19,1935,1,EDU1,3004 -0116_118_4,-74.93975461,39.54864988,9 S RUMSON AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_118_6,-74.973447,39.510274,15 S RUMSON AVE,MARGATE CITY CITY,20,2008,1,RES3A,3001 -0116_118_8,-74.8870345,39.59702137,17 S RUMSON AVE,MARGATE CITY CITY,18,1959,1,GOV1,3004 -0116_118_9,-74.88326929,39.59479035,8800 VENTNOR AVE,MARGATE CITY CITY,21,2008,1,RES3A,3001 -0116_119_1,-74.78820783,39.65169047,1 S SUMNER AVE,MARGATE CITY CITY,21,1998,1,RES1,3001 -0116_119_10,-74.802643,39.646659,8806 VENTNOR AVE,MARGATE CITY CITY,20,1945,1,RES1,3001 -0116_119_11,-74.8158395,39.642542,4 S RUMSON AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_119_13,-74.82601748,39.64684884,12 S RUMSON AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_119_16,-74.818193,39.6429145,14 S RUMSON AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_119_18,-74.82854332,39.64252246,16 S RUMSON AVE,MARGATE CITY CITY,18,1950,1,RES3B,3001 -0116_119_2,-74.79128399,39.6497056,3 S SUMNER AVE,MARGATE CITY CITY,22,2015,1,GOV1,3004 -0116_119_4,-74.78789355,39.65921565,5 S SUMNER AVE,MARGATE CITY CITY,22,2017,1,RES1,3001 -0116_119_6,-74.78123203,39.67302369,9 S SUMNER AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_119_7,-74.73158922,39.68819317,11 S SUMNER AVE,MARGATE CITY CITY,19,1926,1,RES1,3001 -0116_119_9,-74.79451818,39.67529165,8807 ATLANTIC AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_12_10,-74.710335,39.42586015,102 S KENYON AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_12_11,-74.7143945,39.4344165,104 S KENYON AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_12_12,-74.71163934,39.43011153,106 S KENYON AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_12_13,-74.724652,39.43231,108 S KENYON AVE,MARGATE CITY CITY,19,1937,1,RES1,3001 -0116_12_14,-74.790051,39.417526,110 S KENYON AVE,MARGATE CITY CITY,23,2003,1,RES1,3001 -0116_12_15,-74.75904019,39.43246338,112 S KENYON AVE,MARGATE CITY CITY,22,2001,1,RES1,3001 -0116_12_16,-74.75330648,39.43015027,116 S KENYON AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_12_17,-74.75506795,39.42966323,114 S KENYON AVE,MARGATE CITY CITY,22,2004,1,RES1,3001 -0116_12_2,-74.69389008,39.47825352,103 S LANCASTER AVE,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_12_3,-74.66355292,39.4943514,105 S LANCASTER AVE,MARGATE CITY CITY,19,1930,1,COM1,3004 -0116_12_4,-74.68055013,39.49413499,107 S LANCASTER AVE,MARGATE CITY CITY,20,1936,1,RES1,3001 -0116_12_5,-74.68184808,39.49203186,109 S LANCASTER AVE,MARGATE CITY CITY,19,1938,1,RES1,3001 -0116_12_6,-74.68165589,39.50223621,111 S LANCASTER AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_12_7,-74.69115933,39.49607643,113 S LANCASTER AVE,MARGATE CITY CITY,18,1952,1,COM1,3004 -0116_12_8,-74.789299,39.374226,115 S LANCASTER AVE,MARGATE CITY CITY,21,2008,1,RES1,3001 -0116_12_9,-74.7420538,39.40998256,100 S KENYON AVE,MARGATE CITY CITY,19,1951,1,RES1,3001 -0116_120_1,-74.82738407,39.64961489,8902 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_120_14,-74.42658625,39.36819363,8 S SUMNER AVE,MARGATE CITY CITY,20,1951,1,RES1,3001 -0116_120_17,-74.42797032,39.36711102,12 S SUMNER AVE,MARGATE CITY CITY,19,1937,1,RES1,3001 -0116_120_18,-74.4250255,39.36309,8901 ATLANTIC AVE,MARGATE CITY CITY,22,1998,1,RES1,3001 -0116_120_5,-74.4152835,39.3664375,9 S THURLOW AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_120_6,-74.41397951,39.36403378,11 S THURLOW AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_120_7,-74.42745969,39.35912111,15 S THURLOW AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_120_8,-74.42689437,39.35711907,17 S THURLOW AVE,MARGATE CITY CITY,19,1949,1,RES1,3001 -0116_120_9,-74.441649,39.3551335,19 S THURLOW AVE,MARGATE CITY CITY,23,2015,1,RES1,3001 -0116_1200_1,-74.86826889,39.60293332,7911 BAYSHORE DR,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_1200_10,-74.5064135,39.324723,8105 BAYSHORE DR,MARGATE CITY CITY,22,1990,1,RES1,3001 -0116_1200_11,-74.509193,39.323718,8107 BAYSHORE DR,MARGATE CITY CITY,20,1986,1,RES1,3001 -0116_1200_12,-74.5136355,39.330883,8109 BAYSHORE DR,MARGATE CITY CITY,22,1998,1,RES1,3001 -0116_1200_13,-74.516109,39.329407,8110 BAYSHORE DR,MARGATE CITY CITY,20,1971,1,RES1,3001 -0116_1200_15,-74.51345983,39.32621801,8104 BAYSHORE DR,MARGATE CITY CITY,20,1970,1,RES1,3001 -0116_1200_16,-74.51083,39.326198,8102 BAYSHORE DR,MARGATE CITY CITY,19,1983,1,RES1,3002 -0116_1200_17,-74.45923924,39.34999866,8100 BAYSHORE DR,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_1200_18,-74.45634672,39.34918404,8010 BAYSHORE DR,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_1200_19,-74.46196,39.344791,8008 BAYSHORE DR,MARGATE CITY CITY,19,1972,1,RES1,3001 -0116_1200_2,-74.86553707,39.60131719,8001 BAYSHORE DR,MARGATE CITY CITY,20,1968,1,RES1,3001 -0116_1200_20,-74.4705525,39.3422635,8006 BAYSHORE DR,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_1200_21,-74.4706055,39.3412405,8004 BAYSHORE DR,MARGATE CITY CITY,20,1975,1,RES1,3001 -0116_1200_22,-74.47764016,39.34268894,8002 BAYSHORE DR,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_1200_23,-74.47721981,39.34256953,8000 BAYSHORE DR,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_1200_24,-74.48296317,39.34116999,7910 BAYSHORE DR,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_1200_25,-74.48351317,39.33956493,7908 BAYSHORE DR,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_1200_26,-74.48116682,39.33903136,7906 BAYSHORE DR,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_1200_28,-74.48304107,39.33816969,7904 BAYSHORE DR,MARGATE CITY CITY,19,1968,1,GOV1,3004 -0116_1200_29,-74.478222,39.3380135,7905 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,COM10,3003 -0116_1200_3,-74.87295454,39.60406879,8003 BAYSHORE DR,MARGATE CITY CITY,20,2003,1,RES3A,3001 -0116_1200_30,-74.48063283,39.33736701,7907 LAGOON DRIVE,MARGATE CITY CITY,18,1976,1,RES3A,3001 -0116_1200_31,-74.48319184,39.3372745,7909 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,RES3A,3001 -0116_1200_32,-74.4871965,39.3364825,7911 LAGOON DRIVE,MARGATE CITY CITY,20,1976,1,RES1,3001 -0116_1200_34,-74.48618876,39.33558935,8003 LAGOON DRIVE,MARGATE CITY CITY,19,1974,1,RES1,3001 -0116_1200_35,-74.46567734,39.34869028,8005 LAGOON DRIVE,MARGATE CITY CITY,20,2003,1,RES1,3001 -0116_1200_36,-74.46691912,39.34663467,8007 LAGOON DRIVE,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_1200_37,-74.46784591,39.34632684,8009 LAGOON DRIVE,MARGATE CITY CITY,20,1976,1,RES1,3001 -0116_1200_38,-74.46649234,39.34560705,8011 LAGOON DRIVE,MARGATE CITY CITY,19,1976,1,RES3A,3001 -0116_1200_39,-74.4808285,39.3511695,8013 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,RES3A,3001 -0116_1200_4,-74.8768952,39.59924027,8005 BAYSHORE DR,MARGATE CITY CITY,,1969,1,RES1,3001 -0116_1200_40,-74.48579317,39.35063948,8015 LAGOON DRIVE,MARGATE CITY CITY,19,1988,1,RES3A,3002 -0116_1200_41,-74.48147782,39.34934245,8101 LAGOON DRIVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_1200_42,-74.80279266,39.64051698,8201 LAGOON DRIVE,MARGATE CITY CITY,19,1973,1,RES1,3001 -0116_1200_43,-74.79642257,39.65213184,8203 LAGOON DRIVE,MARGATE CITY CITY,19,1974,1,RES1,3001 -0116_1200_44,-74.7953845,39.6510835,8205 LAGOON DRIVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_1200_45,-74.81565373,39.65576154,8207 LAGOON DRIVE,MARGATE CITY CITY,20,1975,1,RES1,3001 -0116_1200_46,-74.81386433,39.64948448,8209 LAGOON DRIVE,MARGATE CITY CITY,20,1974,1,RES1,3001 -0116_1200_47,-74.8195705,39.6437365,8212 BAYSHORE DR WEST,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_1200_48,-74.83226667,39.64387401,8210 BAYSHORE DR WEST,MARGATE CITY CITY,20,1986,1,RES1,3002 -0116_1200_49,-74.8224525,39.6547925,8208 BAYSHORE DR WEST,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_1200_5,-74.8779403,39.59798373,8007 BAYSHORE DR,MARGATE CITY CITY,22,2014,1,GOV1,3004 -0116_1200_50,-74.81868671,39.65408897,8206 BAYSHORE DR WEST,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_1200_51,-74.82872964,39.6498509,8204 BAYSHORE DR WEST,MARGATE CITY CITY,20,1983,1,RES3A,3001 -0116_1200_52,-74.80490035,39.65853194,8202 BAYSHORE DR WEST,MARGATE CITY CITY,20,1989,1,RES1,3001 -0116_1200_54,-74.427885,39.366987,8201 BAYSHORE DR WEST,MARGATE CITY CITY,20,1981,1,RES1,3001 -0116_1200_55,-74.42772234,39.36460248,8203 BAYSHORE DR WEST,MARGATE CITY CITY,19,1971,1,RES3B,3001 -0116_1200_56,-74.43008669,39.36448846,8205 BAYSHORE DR WEST,MARGATE CITY CITY,18,1971,1,RES3A,3001 -0116_1200_57,-74.43627868,39.36807194,8207 BAYSHORE DR WEST,MARGATE CITY CITY,19,1972,1,RES3A,3001 -0116_1200_58,-74.440009,39.3664815,8209 BAYSHORE DR WEST,MARGATE CITY CITY,17,1975,1,RES1,3001 -0116_1200_59,-74.43839014,39.36589117,8211 BAYSHORE DR WEST,MARGATE CITY CITY,19,1972,1,RES1,3001 -0116_1200_60,-74.51949866,39.3170793,8213 BAYSHORE DR WEST,MARGATE CITY CITY,20,2003,1,RES1,3001 -0116_1200_61,-74.52001132,39.31559386,8215 BAYSHORE DR WEST,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_1200_7,-74.52434323,39.31798679,8011 BAYSHORE DR,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_1200_8,-74.52400425,39.31769864,8101 BAYSHORE DR,MARGATE CITY CITY,20,2006,1,RES1,3004 -0116_1200_9,-74.509507,39.3329305,8103 BAYSHORE DR,MARGATE CITY CITY,22,1990,1,RES1,3001 -0116_121_1,-74.43687004,39.36750368,8906 VENTNOR AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_121_10,-74.5265295,39.3155385,25 S UNION AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_121_11,-74.5218285,39.314215,8904 VENTNOR AVE,MARGATE CITY CITY,21,2008,1,RES1,3001 -0116_121_12,-74.5228385,39.313686,2 S THURLOW AVE,MARGATE CITY CITY,21,2007,1,RES3A,3001 -0116_121_13,-74.52753301,39.31204047,4 S THURLOW AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_121_15,-74.52511044,39.31204234,12 S THURLOW AVE,MARGATE CITY CITY,23,2016,1,RES3A,3001 -0116_121_17,-74.526388,39.311792,14 S THURLOW AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_121_18,-74.50805047,39.32442816,16 S THURLOW AVE,MARGATE CITY CITY,20,1986,1,RES1,3001 -0116_121_19,-74.50354216,39.32434501,18 S THURLOW AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_121_20,-74.5088895,39.32241883,20 S THURLOW AVE,MARGATE CITY CITY,23,2014,1,RES1,3002 -0116_121_3,-74.43492428,39.36648666,5 S UNION AVE,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_121_4,-74.435706,39.3649995,7 S UNION AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_121_5,-74.4852925,39.3341105,9 S UNION AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_121_7,-74.48694,39.3337705,15 S UNION AVE,MARGATE CITY CITY,22,2012,1,RES3A,3001 -0116_121_9,-74.522108,39.316992,23 S UNION AVE,MARGATE CITY CITY,20,1951,1,RES1,3001 -0116_122_1,-74.48820316,39.33404351,9000 VENTNOR AVE,MARGATE CITY CITY,20,1926,1,RES1,3001 -0116_122_10,-74.49493233,39.33069251,9003 ATLANTIC AVE,MARGATE CITY CITY,19,1954,1,RES1,3001 -0116_122_12,-74.50377715,39.3331913,2 S UNION AVE,MARGATE CITY CITY,19,1915,1,RES1,3001 -0116_122_14,-74.50152035,39.33236886,6 S UNION AVE,MARGATE CITY CITY,20,1997,1,RES1,3001 -0116_122_16,-74.49877801,39.3317748,10 S UNION AVE,MARGATE CITY CITY,19,1915,1,RES1,3001 -0116_122_18,-74.49929024,39.33165418,12 S UNION AVE,MARGATE CITY CITY,19,1946,1,RES1,3001 -0116_122_2,-74.494374,39.3329765,1 S VENDOME AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_122_3,-74.492768,39.332872,3 S VENDOME AVE,MARGATE CITY CITY,20,1946,1,COM1,3002 -0116_122_4,-74.49315,39.332446,5 S VENDOME AVE,MARGATE CITY CITY,22,2005,1,RES1,3001 -0116_122_5,-74.4892134,39.33205583,7 S VENDOME AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_122_7.01,-74.49042655,39.49479295,11 S VENDOME AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_122_7.02,-74.49567726,39.33193927,13 S VENDOME AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_122_9,-74.497883,39.331749,17 S VENDOME AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_123_1,-74.49919612,39.33158516,9004 VENTNOR AVE,MARGATE CITY CITY,22,2018,1,RES1,3001 -0116_123_10,-74.51282017,39.32341149,20 S VENDOME AVE,MARGATE CITY CITY,19,1969,1,RES1,3004 -0116_123_2,-74.50400144,39.33136214,4 S VENDOME AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_123_205,-74.5177435,39.323367,9007 ATLANTIC AVE,MARGATE CITY CITY,23,2017,1,RES1,3001 -0116_123_207,-74.5179045,39.323267,9009 ATLANTIC AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_123_209,-74.51480916,39.32302551,29 S CEDAR GROVE AVE,MARGATE CITY CITY,17,1955,1,RES3A,3001 -0116_123_211,-74.5704225,39.4103895,27 S CEDAR GROVE AVE,MARGATE CITY CITY,21,2010,1,RES1,3001 -0116_123_213,-74.56519819,39.4104291,25 S CEDAR GROVE AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_123_215,-74.5626179,39.41560917,23 S CEDAR GROVE AVE,MARGATE CITY CITY,23,2018,1,RES1,3001 -0116_123_217,-74.56048191,39.41513933,21 S CEDAR GROVE AVE,MARGATE CITY CITY,22,2012,1,COM1,3004 -0116_123_219,-74.5622905,39.4141915,19 S CEDAR GROVE AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_123_221,-74.5691375,39.413282,17 S CEDAR GROVE AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_123_233,-74.56936898,39.41324079,15 S CEDAR GROVE AVE,MARGATE CITY CITY,20,1946,1,RES1,3001 -0116_123_239.01,-74.56913622,39.41307128,9 S CEDAR GROVE AVE,MARGATE CITY CITY,21,2007,1,RES1,3001 -0116_123_245,-74.57360932,39.42135084,7 S CEDAR GROVE AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_123_251,-74.5732618,39.42916662,9010 VENTNOR AVE,MARGATE CITY CITY,19,1945,1,COM3,3004 -0116_123_3,-74.5066961,39.32996386,6 S VENDOME AVE,MARGATE CITY CITY,19,2009,1,RES1,3001 -0116_123_5,-74.50262846,39.32989133,10 S VENDOME AVE,MARGATE CITY CITY,20,1951,1,RES1,3001 -0116_123_6,-74.49898571,39.32728471,12 S VENDOME AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_123_7,-74.50441123,39.32614103,14 S VENDOME AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_123_8,-74.51331153,39.32491017,16 S VENDOME AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_123_9,-74.512874,39.32462,18 S VENDOME AVE,MARGATE CITY CITY,19,1923,1,RES1,3001 -0116_124_204_C0104,-74.6055695,39.41296516,9101 ATLANTIC AVE,MARGATE CITY CITY,20,1985,1,RES1,3001 -0116_124_214,-74.58139305,39.42336498,22 S CEDAR GROVE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_124_218,-74.57566068,39.41981695,20 S CEDAR GROVE AVE,MARGATE CITY CITY,20,1995,1,RES1,3001 -0116_124_222,-74.5836055,39.431984,18 S CEDAR GROVE AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_124_228,-74.58244541,39.43195408,16 S CEDAR GROVE AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_124_23.23,-74.57291,39.428987,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.24,-74.60928066,39.32482747,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.25,-74.61298552,39.32487017,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,AGR1,3001 -0116_124_23.26,-74.6126585,39.325386,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.27,-74.6017615,39.3182875,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.28,-74.59790268,39.31840702,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,GOV1,3004 -0116_124_23.29,-74.60068431,39.32095091,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES3A,3001 -0116_124_23.30,-74.60737634,39.32231599,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.31,-74.6023427,39.32317307,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.32,-74.59191898,39.32603934,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,COM1,3004 -0116_124_23.33,-74.58625474,39.32647116,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.34,-74.5896415,39.3282195,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.35,-74.59527772,39.32771709,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.36,-74.58815517,39.330155,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.37,-74.584594,39.3307005,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.38,-74.5828085,39.332304,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.39,-74.59456,39.3174035,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.40,-74.59188632,39.31873548,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.41,-74.58942049,39.32038734,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,GOV1,3004 -0116_124_23.42,-74.58920635,39.32165125,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_124_23.43,-74.59219217,39.32483558,9105 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3004 -0116_124_234,-74.580872,39.430119,14 S CEDAR GROVE AVE,MARGATE CITY CITY,18,1953,1,RES1,3001 -0116_124_238,-74.580408,39.42975,12 S CEDAR GROVE AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_124_244,-74.59346131,39.43311412,10 S CEDAR GROVE AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_124_252,-74.51785669,39.39578259,2 S CEDAR GROVE AVE,MARGATE CITY CITY,18,1959,1,RES1,3001 -0116_124_27_C02,-74.5716198,39.42852514,33 S BENSON AVE,MARGATE CITY CITY,20,1890,1,RES1,3001 -0116_124_29,-74.57248232,39.42808101,31 S BENSON AVE,MARGATE CITY CITY,20,1930,1,RES1,3001 -0116_124_31,-74.5825645,39.405895,29 S BENSON AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_124_35,-74.58070675,39.40459043,27 S BENSON AVE,MARGATE CITY CITY,21,1950,1,RES1,3001 -0116_124_37,-74.57660422,39.41803261,25 S BENSON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_124_39,-74.57703234,39.41758657,23 S BENSON AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_124_43,-74.57616672,39.41626782,21 S BENSON AVE,MARGATE CITY CITY,18,1985,1,RES1,3001 -0116_124_45,-74.58472621,39.41431508,19 S BENSON AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_124_47,-74.58511485,39.41316322,17 S BENSON AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_124_49,-74.60374694,39.4104327,15 S BENSON AVE,MARGATE CITY CITY,19,1981,1,RES1,3001 -0116_124_55,-74.61363838,39.41011933,7 S BENSON AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_124_57,-74.60179502,39.41869048,3 S BENSON AVE,MARGATE CITY CITY,19,2009,1,RES1,3001 -0116_124_61,-74.59849899,39.41532523,9108 VENTNOR AVE,MARGATE CITY CITY,19,1965,1,RES1,3001 -0116_125_28.01,-74.51914572,39.3948289,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.02,-74.58351446,39.32405591,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.03,-74.61662799,39.30888817,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.04,-74.61022472,39.31509254,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.05,-74.60866834,39.31522702,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.06,-74.61310967,39.31577622,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.07,-74.60465219,39.31661731,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.08,-74.60570131,39.3167828,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.09,-74.609174,39.306676,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,GOV1,3004 -0116_125_28.10,-74.59597666,39.31102804,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.11,-74.5870435,39.316902,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.12,-74.57460865,39.33351124,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.13,-74.536279,39.304525,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.14,-74.53393435,39.30677205,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.15,-74.47404195,39.53984636,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.16,-74.46017431,39.54670948,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.17,-74.4956355,39.5218665,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.18,-74.4921585,39.5222875,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,GOV1,3004 -0116_125_28.19,-74.4921505,39.5248405,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_28.20,-74.5252935,39.5058795,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,GOV1,3004 -0116_125_28.21,-74.491176,39.520541,9201 ATLANTIC AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_125_30,-74.51400583,39.39433941,30 S BENSON AVE,MARGATE CITY CITY,18,1956,1,RES1,3004 -0116_125_30.01,-74.52950899,39.3969616,27 S DECATUR AVE,MARGATE CITY CITY,18,1956,1,RES1,3001 -0116_125_32,-74.483819,39.4357225,28 S BENSON AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_125_34,-74.4849355,39.43157182,24-26 S BENSON AVE,MARGATE CITY CITY,45,1948,2,RES1,3001 -0116_125_40,-74.48211246,39.43108478,16-18 S BENSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_125_43,-74.48562776,39.42860886,14 S BENSON AVE,MARGATE CITY CITY,17,1957,1,COM3,3004 -0116_125_44,-74.50392225,39.4080819,15 S DECATUR AVE,MARGATE CITY CITY,47,1972,2,RES1,3001 -0116_125_45,-74.506633,39.4064855,12 S BENSON AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_125_50,-74.50270081,39.41888576,13 S DECATUR AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_125_53,-74.49983709,39.41849478,10 S BENSON AVE,MARGATE CITY CITY,47,1961,2,RES1,3001 -0116_125_54,-74.50290535,39.4179484,5 & 7 S DECATUR AVE,MARGATE CITY CITY,47,1965,2,RES1,3001 -0116_125_55,-74.499601,39.416977,8 S BENSON AVE,MARGATE CITY CITY,49,1988,2,RES3B,3001 -0116_125_56,-74.50387496,39.41543819,3 S DECATUR AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_125_57,-74.50518785,39.41290886,4 S BENSON AVE,MARGATE CITY CITY,17,1925,1,COM10,3003 -0116_125_58,-74.498736,39.412105,1 S DECATUR AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_125_58.01,-74.4991875,39.4111725,2 S BENSON AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_125_59,-74.59509248,39.3598975,9202 VENTNOR AVE,MARGATE CITY CITY,,1950,1,RES1,3001 -0116_125_60,-74.59093131,39.35987268,9200 VENTNOR AVE,MARGATE CITY CITY,,1954,1,RES1,3001 -0116_125_62,-74.6104745,39.3679105,9208-9210 VENTNOR AVE,MARGATE CITY CITY,,1950,1,RES1,3001 -0116_126_100,-74.62315028,39.36301403,20 S DECATUR AVE,MARGATE CITY CITY,20,2008,1,COM1,3004 -0116_126_101,-74.600205,39.423037,22 S DECATUR AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_126_105,-74.61302591,39.42026319,9 S WASHINGTON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_126_106,-74.60094839,39.43370106,11 S WASHINGTON AVE,MARGATE CITY CITY,45,1948,2,GOV1,3004 -0116_126_107,-74.5989,39.432143,13 S WASHINGTON AVE,MARGATE CITY CITY,45,1930,3,RES1,3001 -0116_126_108_C0001,-74.4950255,39.3355725,15 S WASHINGTON AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_126_110_C003C,-74.50069917,39.32785548,23 S WASHINGTON AVE,MARGATE CITY CITY,22,2007,1,RES1,3001 -0116_126_4_C0004,-74.61067728,39.36627056,9219 ATLANTIC AVE,MARGATE CITY CITY,39,2006,1,RES1,3001 -0116_126_85.01,-74.63512041,39.31836559,9218 VENTNOR AVE,MARGATE CITY CITY,,1990,1,GOV1,3004 -0116_126_90,-74.63734704,39.34320465,1 S WASHINGTON AVE,MARGATE CITY CITY,,1903,1,RES1,3001 -0116_126_93_C000A,-74.64263324,39.33452561,6 S DECATUR AVE,MARGATE CITY CITY,19,1962,1,RES1,3001 -0116_126_94,-74.65245321,39.34989885,8 S DECATUR AVE,MARGATE CITY CITY,47,1961,2,RES1,3001 -0116_126_95,-74.65422216,39.34904446,10 S DECATUR AVE,MARGATE CITY CITY,47,1961,2,RES1,3001 -0116_126_96.01,-74.500848,39.4958785,12-14 S DECATUR AVE,MARGATE CITY CITY,20,1962,1,RES1,3001 -0116_126_96.02,-74.49972913,39.49751364,12-14 S DECATUR AVE,MARGATE CITY CITY,20,1962,1,RES1,3001 -0116_126_96.03,-74.50274845,39.50130377,12-14 S DECATUR AVE,MARGATE CITY CITY,20,1962,1,RES1,3001 -0116_126_96.04,-74.50229098,39.50172538,12-14 S DECATUR AVE,MARGATE CITY CITY,20,1962,1,RES1,3001 -0116_126_99,-74.6333725,39.3596245,18 S DECATUR AVE,MARGATE CITY CITY,21,2014,1,RES3A,3001 -0116_127_104_C06,-74.49220893,39.33487567,30 S WASHINGTON AVE,MARGATE CITY CITY,19,1954,1,RES1,3001 -0116_127_201_C000A,-74.49205144,39.33468168,23 S ADAMS AVE,MARGATE CITY CITY,18,1940,1,RES1,3001 -0116_127_202,-74.50692596,39.33736268,24 S WASHINGTON AVE,MARGATE CITY CITY,,1925,1,RES1,3001 -0116_127_203_C0005,-74.50393066,39.33698595,21 S ADAMS AVE,MARGATE CITY CITY,20,1993,1,RES1,3001 -0116_127_204_C0002,-74.50806662,39.33693504,22 S WASHINGTON AVE,MARGATE CITY CITY,20,1989,1,RES1,3001 -0116_127_208,-74.506876,39.3364355,18 S WASHINGTON AVE,MARGATE CITY CITY,16,1915,1,RES1,3001 -0116_127_210,-74.49937115,39.33643902,16 S WASHINGTON AVE,MARGATE CITY CITY,17,1925,3,RES1,3001 -0116_127_211_C005,-74.49893715,39.3363571,11 S ADAMS AVE,MARGATE CITY CITY,20,1985,1,RES1,3001 -0116_127_212,-74.50809041,39.33605783,14 S WASHINGTON AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_127_214,-74.50449384,39.33534773,12 S WASHINGTON AVE,MARGATE CITY CITY,20,1920,2,RES1,3001 -0116_127_217,-74.5000499,39.33479734,5 S ADAMS AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_127_85,-74.48887934,39.335525,9312 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_127_92_C06,-74.495913,39.335119,25 S ADAMS AVE,MARGATE CITY CITY,21,1982,1,RES1,3001 -0116_127_94_C000A,-74.49117488,39.49571529,9307 PACIFIC AVE,MARGATE CITY CITY,19,2005,1,RES1,3001 -0116_127_94_C000B,-74.5078405,39.491839,9307 PACIFIC AVE,MARGATE CITY CITY,19,2005,1,RES1,3001 -0116_127_94_C000C,-74.50865011,39.49230269,9307 PACIFIC AVE,MARGATE CITY CITY,19,2005,1,GOV1,3004 -0116_127_94_C000D,-74.5087405,39.4928585,9307 PACIFIC AVE,MARGATE CITY CITY,19,2005,1,RES1,3001 -0116_127_94_C000E,-74.507066,39.494038,9307 PACIFIC AVE,MARGATE CITY CITY,19,2005,1,RES1,3001 -0116_127_94_C000F,-74.50815725,39.49417608,9307 PACIFIC AVE,MARGATE CITY CITY,19,2005,1,GOV1,3004 -0116_127_99,-74.49659484,39.33507949,9300 VENTNOR AVE,MARGATE CITY CITY,,2002,1,GOV1,3004 -0116_128_200.01,-74.37335726,39.41598107,25 S JEFFERSON AVE,MARGATE CITY CITY,21,1981,1,RES1,3001 -0116_128_200.02,-74.37705276,39.41645427,25 S JEFFERSON AVE,MARGATE CITY CITY,21,1981,1,RES1,3001 -0116_128_200.03,-74.37274627,39.41779405,25 S JEFFERSON AVE,MARGATE CITY CITY,21,1981,1,RES1,3001 -0116_128_201_C0001,-74.38807556,39.39137216,23 S JEFFERSON AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_128_202,-74.38769102,39.39105017,24 S ADAMS AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_128_205,-74.38715784,39.39055698,19 S JEFFERSON AVE,MARGATE CITY CITY,19,1940,2,RES1,3001 -0116_128_207,-74.3887375,39.3935835,17 S JEFFERSON AVE,MARGATE CITY CITY,16,1915,1,RES1,3001 -0116_128_208,-74.397821,39.3926215,18 S ADAMS AVE,MARGATE CITY CITY,16,1983,1,RES1,3001 -0116_128_210,-74.39042538,39.39221712,16 S ADAMS AVE,MARGATE CITY CITY,17,1988,1,RES1,3001 -0116_128_211,-74.393542,39.391579,13 S JEFFERSON AVE,MARGATE CITY CITY,16,1925,2,RES1,3001 -0116_128_212_C000A,-74.38902879,39.39078134,14 S ADAMS AVE,MARGATE CITY CITY,21,1915,1,RES1,3001 -0116_128_213,-74.3937945,39.388113,11 S JEFFERSON AVE,MARGATE CITY CITY,18,1902,2,RES1,3001 -0116_128_214_C000A,-74.3947129,39.38728784,12 S ADAMS AVE,MARGATE CITY CITY,21,1940,1,RES1,3001 -0116_128_215,-74.37958771,39.40105416,9 S JEFFERSON AVE,MARGATE CITY CITY,17,1930,2,RES1,3001 -0116_128_216_C0200,-74.39742617,39.38530377,10 S ADAMS AVE,MARGATE CITY CITY,20,1910,1,RES1,3001 -0116_128_217,-74.38975307,39.39384016,7 S JEFFERSON AVE,MARGATE CITY CITY,15,1960,1,RES1,3001 -0116_128_218,-74.41343632,39.37113803,8 S ADAMS AVE,MARGATE CITY CITY,17,1987,3,RES1,3001 -0116_128_219,-74.41971595,39.37061918,5 S JEFFERSON AVE,MARGATE CITY CITY,43,1949,4,RES1,3001 -0116_128_220,-74.41395901,39.36924987,6 S ADAMS AVE,MARGATE CITY CITY,19,1993,1,RES1,3001 -0116_128_222,-74.41369994,39.3688584,4 S ADAMS AVE,MARGATE CITY CITY,16,1925,1,GOV1,3004 -0116_128_224,-74.49247864,39.33250618,2 S ADAMS AVE,MARGATE CITY CITY,47,1962,2,RES1,3001 -0116_128_226,-74.40612533,39.3828815,6 S ADAMS AVE REAR,MARGATE CITY CITY,16,1925,1,RES1,3001 -0116_128_65,-74.4879455,39.346443,9416 VENTNOR AVE,MARGATE CITY CITY,,1988,1,RES1,3001 -0116_128_66.31,-74.42304138,39.37834245,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.32,-74.36207218,39.41774732,9401 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.33,-74.3676505,39.4032865,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,GOV1,3004 -0116_128_66.34,-74.3679865,39.40364,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.35,-74.37333495,39.40443464,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.36,-74.37219952,39.40530437,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,GOV1,3004 -0116_128_66.37,-74.373444,39.4097135,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.38,-74.3998005,39.3900565,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.39,-74.36441,39.4069865,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.40,-74.36361142,39.40826434,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.41,-74.36182899,39.40953933,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.42,-74.4014095,39.386518,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.43,-74.405395,39.389416,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,GOV1,3004 -0116_128_66.44,-74.36789914,39.41035627,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_66.45,-74.39979094,39.38970587,9415-19 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,COM1,3004 -0116_128_72.46,-74.36711226,39.41891005,9413 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_72.47,-74.359671,39.4121395,9413 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_72.48,-74.36372719,39.41368174,9413 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_72.49,-74.48842577,39.35239061,9413 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.01,-74.4340015,39.368843,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,GOV1,3004 -0116_128_74.02,-74.43800519,39.37130364,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.03,-74.42802768,39.36884492,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.04,-74.42228868,39.36918893,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.05,-74.42618193,39.37078734,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.06,-74.426245,39.370872,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,GOV1,3004 -0116_128_74.07,-74.42995321,39.37117777,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.08,-74.42364866,39.3717845,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.09,-74.4072405,39.378431,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.10,-74.40154387,39.38502764,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.11,-74.4203285,39.3684225,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.12,-74.41829367,39.3685525,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.13,-74.4141355,39.371019,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.14,-74.38762233,39.39415602,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.15,-74.38295342,39.39436115,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.16,-74.383154,39.394516,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.17,-74.38265297,39.39522034,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.18,-74.39086033,39.392989,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.19,-74.37922966,39.39528934,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.20,-74.3857262,39.39571458,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.21,-74.37790713,39.39602804,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.22,-74.3817505,39.3971745,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,GOV1,3004 -0116_128_74.23,-74.3832405,39.3973945,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,GOV1,3004 -0116_128_74.24,-74.381446,39.397918,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.25,-74.38604788,39.39800336,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.26,-74.38382407,39.3983844,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.27,-74.38241096,39.39968782,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.28,-74.3821606,39.40065482,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.29,-74.3777105,39.401452,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.30A,-74.3944347,39.38758367,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_128_74.30B,-74.3896745,39.388753,9401-11 PACIFIC AVE,MARGATE CITY CITY,21,1957,1,GOV1,3004 -0116_128_77,-74.37135699,39.40189483,9404 VENTNOR AVE,MARGATE CITY CITY,,1920,1,RES1,3001 -0116_128_79,-74.3762005,39.39908034,9402 VENTNOR AVE,MARGATE CITY CITY,,1925,1,RES1,3001 -0116_128_83_C000B,-74.38233,39.3932745,9400 VENTNOR AVE,MARGATE CITY CITY,,0,1,GOV1,3004 -0116_128_84_C000A,-74.38529962,39.3919979,26 S ADAMS AVE,MARGATE CITY CITY,22,2005,1,GOV1,3004 -0116_129_201_C0001,-74.44147682,39.36911701,21 SO MADISON AVE,MARGATE CITY CITY,20,1965,1,RES1,3001 -0116_129_202,-74.43518096,39.36882082,24 S JEFFERSON AVE,MARGATE CITY CITY,18,1924,1,RES1,3001 -0116_129_204_C0002,-74.4060264,39.39341662,22 S JEFFERSON AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_129_205,-74.4017165,39.391517,17 S MADISON AVE,MARGATE CITY CITY,19,1938,1,RES1,3001 -0116_129_207,-74.40574613,39.38905087,15 S MADISON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_129_208,-74.399749,39.388556,18 S JEFFERSON AVE,MARGATE CITY CITY,17,1926,1,RES1,3001 -0116_129_211,-74.4001705,39.387812,11 S MADISON AVE,MARGATE CITY CITY,43,1950,2,RES1,3001 -0116_129_213,-74.4008607,39.38721507,9 S MADISON AVE,MARGATE CITY CITY,43,1937,2,GOV1,3004 -0116_129_217,-74.401958,39.3862085,7 S MADISON AVE,MARGATE CITY CITY,20,2014,2,REL1,3004 -0116_129_218,-74.400039,39.3941545,10 S JEFFERSON AVE,MARGATE CITY CITY,43,1953,2,RES1,3001 -0116_129_221,-74.40057,39.3941295,3 S MADISON AVE,MARGATE CITY CITY,43,1930,2,RES1,3001 -0116_129_45,-74.40883481,39.38202241,9510 VENTNOR AVE,MARGATE CITY CITY,,1952,1,RES1,3001 -0116_129_46,-74.40850581,39.3803811,25 S MADISON AVE,MARGATE CITY CITY,45,1945,2,RES1,3001 -0116_129_48.01,-74.4075037,39.37830197,29 S MADISON AVE,MARGATE CITY CITY,21,2003,1,GOV1,3004 -0116_129_48.02,-74.422263,39.3716235,31 S MADISON AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_129_52.23A,-74.37023786,39.41464875,9511 PACIFIC AVE,MARGATE CITY CITY,20,1948,1,RES1,3001 -0116_129_52.23B,-74.3737475,39.415262,9511 PACIFIC AVE,MARGATE CITY CITY,20,1948,1,GOV1,3004 -0116_129_53.01,-74.37488235,39.39886459,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.02,-74.3769575,39.4011465,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.03,-74.50602134,39.33505149,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.04,-74.48829425,39.35117308,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.05,-74.4987574,39.33526965,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.06,-74.50795983,39.33592201,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.07,-74.3858205,39.3921035,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,GOV1,3004 -0116_129_53.08,-74.4991535,39.336207,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.09,-74.5065845,39.3364845,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.10,-74.50271342,39.33656558,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.11,-74.50845112,39.33856081,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.12,-74.5057395,39.340598,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.13,-74.48810518,39.33457865,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.14,-74.49663334,39.33462399,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.15,-74.493788,39.3347245,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_53.16,-74.38734052,39.39242967,9506 VENTNOR AVE,MARGATE CITY CITY,21,1963,1,RES1,3001 -0116_129_59,-74.4414947,39.37222493,9504 VENTNOR AVE,MARGATE CITY CITY,47,1930,2,RES1,3001 -0116_129_60.01,-74.4406425,39.370868,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.02,-74.454684,39.3726385,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.03,-74.44409339,39.37135864,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.04,-74.45406518,39.37129251,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.05,-74.44673581,39.37236195,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.06,-74.44572381,39.37265539,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.07,-74.44717435,39.3728441,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3002 -0116_129_60.08,-74.449163,39.3730465,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,GOV1,3004 -0116_129_60.09,-74.44621392,39.37314669,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.10,-74.44351617,39.374402,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.11,-74.44954021,39.37466853,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.12,-74.45089988,39.37514368,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,COM1,3004 -0116_129_60.14,-74.45062881,39.37528998,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,GOV1,3004 -0116_129_60.15,-74.36770592,39.42281591,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.16,-74.3641655,39.42014,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,GOV1,3004 -0116_129_60.17,-74.38066521,39.41691197,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.18,-74.37904818,39.41857933,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.19,-74.37817322,39.41898567,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.20,-74.37521404,39.41090778,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.21,-74.3737535,39.4114445,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.22,-74.36718853,39.41175406,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_60.24,-74.37262001,39.41459741,9507 PACIFIC AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_129_61,-74.4405875,39.370676,9500 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_129_64,-74.4376305,39.37069,26 S JEFFERSON AVE,MARGATE CITY CITY,45,1930,2,RES1,3001 -0116_13_1,-74.83038175,39.37527808,101 S MANSFIELD AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_13_10,-74.8237775,39.407122,102 S LANCASTER AVE,MARGATE CITY CITY,20,1945,1,RES1,3001 -0116_13_11,-74.82753983,39.40348863,104 S LANCASTER AVE,MARGATE CITY CITY,20,1945,1,RES1,3001 -0116_13_12,-74.37954364,39.41652328,106 S LANCASTER AVE,MARGATE CITY CITY,20,1948,1,GOV1,3004 -0116_13_13,-74.38072476,39.41488026,108 S LANCASTER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_13_14,-74.36642052,39.42177768,110 S LANCASTER AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_13_15,-74.36400172,39.41946555,112 S LANCASTER AVE,MARGATE CITY CITY,20,1970,1,COM3,3004 -0116_13_16,-74.452999,39.3753125,114 S LANCASTER AVE,MARGATE CITY CITY,18,1977,1,GOV1,3004 -0116_13_17,-74.45424433,39.37504458,116 S LANCASTER AVE,MARGATE CITY CITY,22,2014,1,GOV1,3004 -0116_13_2,-74.81439515,39.40107761,103 S MANSFIELD AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_13_3,-74.81681851,39.398996,105 S MANSFIELD AVE,MARGATE CITY CITY,20,1925,1,RES1,3001 -0116_13_4,-74.81875766,39.39252426,107 S MANSFIELD AVE,MARGATE CITY CITY,20,1921,1,RES1,3001 -0116_13_5,-74.81939333,39.40189062,109 S MANSFIELD AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_13_6,-74.83409821,39.39823491,111 S MANSFIELD AVE,MARGATE CITY CITY,20,1968,1,RES1,3001 -0116_13_7,-74.8326135,39.3979115,113 S MANSFIELD AVE,MARGATE CITY CITY,20,1968,1,COM7,3004 -0116_13_8,-74.8438985,39.3862195,117 S MANSFIELD AVE,MARGATE CITY CITY,23,2017,1,RES1,3001 -0116_13_9,-74.8079985,39.4110135,8510 ATLANTIC AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_130_202,-74.3759135,39.415159,26 S MADISON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_130_206,-74.37860617,39.40258247,MADISON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_130_208,-74.38101109,39.4179007,MADISON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_130_213,-74.3663225,39.422985,11 S MONROE AVE,MARGATE CITY CITY,43,1950,2,RES1,3001 -0116_130_214,-74.36563047,39.42236682,16 S MADISON AVE,MARGATE CITY CITY,49,1962,4,RES1,3001 -0116_130_215_C000A,-74.3649106,39.42195621,7 S MONROE AVE,MARGATE CITY CITY,21,2004,2,RES1,3001 -0116_130_218,-74.3745125,39.419669,14 S MADISON AVE,MARGATE CITY CITY,43,1945,2,RES1,3001 -0116_130_219_C000B,-74.4461005,39.3727585,5 S MONROE AVE,MARGATE CITY CITY,21,2006,2,RES1,3001 -0116_130_220_C00A,-74.4484225,39.3716835,12 S MADISON AVE,MARGATE CITY CITY,20,1986,1,RES1,3001 -0116_130_222_C000A,-74.443942,39.369632,2 S MADISON AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_130_25,-74.36912313,39.40696754,9614 VENTNOR AVE,MARGATE CITY CITY,,1957,1,RES1,3001 -0116_130_26,-74.36713409,39.40649084,9619 PACIFIC AVE,MARGATE CITY CITY,18,1944,1,RES1,3001 -0116_130_30,-74.37222136,39.40449391,9617 PACIFIC AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_130_31_C000A,-74.37177529,39.40358999,9612 VENTNOR AVE,MARGATE CITY CITY,20,2002,1,RES1,3001 -0116_130_35,-74.36945578,39.40344353,9608 VENTNOR AVE,MARGATE CITY CITY,,1960,1,RES1,3001 -0116_130_36_C005,-74.36920768,39.41462694,9609-9613 PACIFIC AVE,MARGATE CITY CITY,21,1984,1,RES1,3001 -0116_130_37,-74.3631425,39.4159735,9606 VENTNOR AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_130_38_C01,-74.37391925,39.41182012,9607 PACIFIC AVE,MARGATE CITY CITY,22,1983,1,RES1,3001 -0116_130_39,-74.3576515,39.4146215,9604 VENTNOR AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_130_43,-74.35786353,39.41345684,9600 VENTNOR AVE,MARGATE CITY CITY,,1950,1,RES1,3001 -0116_130_44.01,-74.36204751,39.41224583,34 S MADISON AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_130_44.02,-74.3668325,39.416586,32 S MADISON AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_130_44.03,-74.37018393,39.41554079,30 S MADISON AVE,MARGATE CITY CITY,39,2003,1,GOV1,3004 -0116_131_10.01,-74.51847272,39.38982532,9717 PACIFIC AVE,MARGATE CITY CITY,30,1996,2,RES1,3001 -0116_131_10.02,-74.528313,39.384963,9715 PACIFIC AVE,MARGATE CITY CITY,30,1996,1,RES1,3001 -0116_131_11,-74.52973535,39.38472242,9708-9710 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_131_16.01,-74.52406,39.3835825,9707A PACIFIC AVE,MARGATE CITY CITY,17,1978,1,EDU1,3004 -0116_131_16.02,-74.50474252,39.3846892,9707B PACIFIC AVE,MARGATE CITY CITY,17,1978,1,RES1,3001 -0116_131_17_C000B,-74.5264406,39.38446394,9706 VENTNOR AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_131_18.03,-74.507554,39.3846315,9703 PACIFIC AVE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_131_18.04,-74.49002331,39.37889963,9703 PACIFIC AVE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_131_19_C03,-74.52228039,39.38383587,9704 VENTNOR AVE,MARGATE CITY CITY,20,1947,1,RES1,3001 -0116_131_203_C000A,-74.524933,39.39267,23 S COOLIDGE AVE,MARGATE CITY CITY,21,2001,1,RES1,3001 -0116_131_204,-74.52223932,39.39152198,14 S MONROE AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_131_208,-74.526394,39.3904815,12 S MONROE AVE,MARGATE CITY CITY,17,1954,2,RES1,3001 -0116_131_21,-74.52597516,39.38296695,9700 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_131_21.01,-74.51670866,39.39361428,4 S MONROE AVE,MARGATE CITY CITY,49,1967,4,RES1,3001 -0116_131_211,-74.52863901,39.38846633,11 S COOLIDGE AVE,MARGATE CITY CITY,16,1927,1,RES1,3001 -0116_131_215,-74.51726767,39.4009511,9 S COOLIDGE AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_131_217,-74.51413833,39.40041144,7 S COOLIDGE AVE,MARGATE CITY CITY,27,1950,2,GOV1,3004 -0116_131_219,-74.528414,39.401706,5 S COOLIDGE AVE,MARGATE CITY CITY,27,1950,2,RES1,3001 -0116_131_22.01,-74.52464978,39.39332167,22 S MONROE AVE,MARGATE CITY CITY,45,1952,3,RES1,3001 -0116_131_24.01,-74.51947336,39.38907718,26 S MONROE AVE,MARGATE CITY CITY,30,1998,2,RES1,3001 -0116_131_24.02,-74.51130469,39.38564104,24 S MONROE AVE,MARGATE CITY CITY,30,1998,2,RES1,3001 -0116_131_5,-74.493945,39.3796625,9712 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_131_7,-74.48856578,39.37744852,3 S COOLIDGE AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_132_1.01,-74.528868,39.398664,2C S COOLIDGE AVE,MARGATE CITY CITY,22,2001,1,RES1,3001 -0116_132_1.02,-74.5239799,39.39833688,2B S COOLIDGE AVE,MARGATE CITY CITY,22,2001,1,RES1,3001 -0116_132_1.03,-74.52212483,39.3951679,2A S COOLIDGE AVE,MARGATE CITY CITY,21,2001,1,RES1,3001 -0116_132_202,-74.506546,39.4045255,24 S COOLIDGE AVE,MARGATE CITY CITY,20,1930,1,RES1,3001 -0116_132_204,-74.50687781,39.40419131,22 S COOLIDGE AVE,MARGATE CITY CITY,17,1922,1,RES1,3001 -0116_132_206,-74.49963782,39.41248933,20 S COOLIDGE AVE,MARGATE CITY CITY,17,1922,1,GOV1,3004 -0116_132_210,-74.5020415,39.4122285,18 S COOLIDGE AVE,MARGATE CITY CITY,30,1940,2,RES1,3001 -0116_132_212,-74.50629644,39.41107097,16 S COOLIDGE AVE,MARGATE CITY CITY,30,1940,2,RES1,3001 -0116_132_214,-74.516126,39.410526,14 S COOLIDGE AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_132_4.01,-74.48320553,39.43206592,26 S COOLIDGE AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_132_4.02,-74.48163234,39.43136768,28 S COOLIDGE AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_132_4.03,-74.50251745,39.40924385,30 S COOLIDGE AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_132_4.04,-74.50784316,39.40750206,32 S COOLIDGE AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_132_4.05,-74.50645213,39.40729632,34 S COOLIDGE AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_14_1,-74.44706969,39.37461253,101 S NASSAU AVE,MARGATE CITY CITY,19,1957,1,RES1,3001 -0116_14_10,-74.5207245,39.382732,102 S MANSFIELD AVE,MARGATE CITY CITY,19,1965,1,RES1,3001 -0116_14_11,-74.5311165,39.3827195,106 S MANSFIELD AVE,MARGATE CITY CITY,21,1958,1,RES1,3001 -0116_14_12,-74.52920368,39.38263159,108 S MANSFIELD AVE,MARGATE CITY CITY,18,1925,1,COM1,3004 -0116_14_13,-74.5266705,39.382556,110 S MANSFIELD AVE,MARGATE CITY CITY,20,1987,1,RES1,3001 -0116_14_14,-74.53102146,39.38180224,110A S MANSFIELD AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_14_15,-74.51115028,39.38672968,112 S MANSFIELD AVE,MARGATE CITY CITY,19,1966,1,RES1,3001 -0116_14_16,-74.51322762,39.38562089,114 S MANSFIELD AVE,MARGATE CITY CITY,20,1939,1,RES1,3001 -0116_14_17,-74.52092,39.39065983,116 S MANSFIELD AVE,MARGATE CITY CITY,20,1920,2,RES1,3001 -0116_14_2,-74.445425,39.3735345,103 S NASSAU AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_14_3,-74.44662112,39.37175981,105 S NASSAU AVE,MARGATE CITY CITY,20,1994,1,GOV1,3004 -0116_14_4,-74.45008723,39.3710844,107 S NASSAU AVE,MARGATE CITY CITY,19,1961,1,RES1,3001 -0116_14_6,-74.4436735,39.3699295,111 S NASSAU AVE,MARGATE CITY CITY,23,2016,1,RES1,3001 -0116_14_7,-74.48925459,39.37695849,113 S NASSAU AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_14_8,-74.526639,39.38454,115 S NASSAU AVE,MARGATE CITY CITY,22,1990,1,RES1,3001 -0116_14_9,-74.52762,39.3844185,8600 ATLANTIC AVE,MARGATE CITY CITY,20,2011,1,RES1,3004 -0116_15_1,-74.5223475,39.39039093,8608 ATLANTIC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_15_10,-74.51479924,39.40010739,8604 ATLANTIC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_15_11,-74.5176701,39.40002784,102 S NASSAU AVE,MARGATE CITY CITY,19,1954,1,RES1,3001 -0116_15_12,-74.72316764,39.43723559,104 S NASSAU AVE,MARGATE CITY CITY,19,1962,1,RES1,3001 -0116_15_14,-74.71606847,39.45298918,108 S NASSAU AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_15_16,-74.73455397,39.45284466,114 S NASSAU AVE,MARGATE CITY CITY,19,1953,1,RES1,3001 -0116_15_17,-74.735169,39.4497075,116 S NASSAU AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_15_18,-74.74811503,39.45051466,118 S NASSAU AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_15_19,-74.74981832,39.44999144,120 S NASSAU AVE,MARGATE CITY CITY,20,1979,1,RES1,3001 -0116_15_2,-74.52661934,39.39014617,105 S OSBORNE AVE,MARGATE CITY CITY,20,2013,1,RES3A,3001 -0116_15_3,-74.5304195,39.389502,107 S OSBORNE AVE,MARGATE CITY CITY,,1925,1,RES1,3001 -0116_15_4,-74.52830303,39.38870381,109 S OSBORNE AVE,MARGATE CITY CITY,21,2001,1,RES1,3001 -0116_15_5,-74.52343018,39.38685566,111 S OSBORNE AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_15_6,-74.5246205,39.386451,113 S OSBORNE AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_15_7,-74.52664784,39.38546641,115 S OSBORNE AVE,MARGATE CITY CITY,20,1993,1,RES1,3001 -0116_15_8,-74.51606545,39.40124335,117 S OSBORNE AVE,MARGATE CITY CITY,21,1965,1,COM1,3004 -0116_15_9,-74.51091017,39.40032855,OSBORNE AVE,MARGATE CITY CITY,,1950,1,RES1,3001 -0116_16_1,-74.727408,39.4600905,101 S PEMBROKE AVE,MARGATE CITY CITY,22,2017,1,RES1,3001 -0116_16_10,-74.73210794,39.46172849,100 S OSBORNE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_16_11,-74.752658,39.45129,102 S OSBORNE AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_16_12,-74.783486,39.4434745,104 S OSBORNE AVE,MARGATE CITY CITY,18,1945,1,RES1,3001 -0116_16_13,-74.75118282,39.45368195,108 S OSBORNE AVE,MARGATE CITY CITY,22,1945,1,RES1,3001 -0116_16_17,-74.70789116,39.47524532,114 S OSBORNE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_16_2,-74.72670768,39.45828301,103 S PEMBROKE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_16_3,-74.7242805,39.456897,105 S PEMBROKE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_16_4,-74.71399124,39.46905536,107 S PEMBROKE AVE,MARGATE CITY CITY,20,1925,1,RES1,3001 -0116_16_7,-74.71181642,39.46619287,109 S PEMBROKE AVE,MARGATE CITY CITY,20,1925,1,RES1,3001 -0116_17_1,-74.710016,39.474169,101 S QUINCY AVE,MARGATE CITY CITY,22,2016,1,RES1,3001 -0116_17_10,-74.834199,39.4476585,100 S PEMBROKE AVE,MARGATE CITY CITY,22,2016,1,RES1,3001 -0116_17_11,-74.81009229,39.45904201,102 S PEMBROKE AVE,MARGATE CITY CITY,21,1935,1,RES1,3001 -0116_17_12,-74.8521353,39.43977585,106 S PEMBROKE AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_17_14,-74.8543635,39.4456495,108 S PEMBROKE AVE,MARGATE CITY CITY,20,2008,1,RES1,3004 -0116_17_15,-74.8555195,39.4450785,110 S PEMBROKE AVE,MARGATE CITY CITY,17,1935,1,GOV1,3004 -0116_17_16,-74.8710345,39.444278,112 S PEMBROKE AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_17_17,-74.869917,39.453516,114 S PEMBROKE AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_17_3,-74.71020933,39.47329351,103 S QUINCY AVE,MARGATE CITY CITY,19,1934,1,RES1,3001 -0116_17_4,-74.70745543,39.47319835,107 S QUINCY AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_17_5,-74.713973,39.4711905,109 S QUINCY AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_17_6,-74.75424813,39.47493698,111 S QUINCY AVE,MARGATE CITY CITY,20,1930,1,RES1,3001 -0116_17_8,-74.83823783,39.4522405,115 S QUINCY AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_18_1,-74.8205025,39.4950895,8802 ATLANTIC AVE,MARGATE CITY CITY,19,1938,1,RES1,3001 -0116_18_10,-74.876287,39.488773,8800 ATLANTIC AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_18_11,-74.515388,39.3227715,102 S QUINCY AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_18_12,-74.518978,39.3227645,104 S QUINCY AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_18_13,-74.5111523,39.3223612,106 S QUINCY AVE,MARGATE CITY CITY,19,1932,1,RES1,3001 -0116_18_16,-74.51979441,39.32100684,112 S QUINCY AVE,MARGATE CITY CITY,21,1951,1,RES1,3002 -0116_18_17,-74.51481396,39.32094457,114 S QUINCY AVE,MARGATE CITY CITY,20,1955,1,RES1,3001 -0116_18_2,-74.82040856,39.49395622,103 S RUMSON AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_18_3,-74.83108359,39.4877527,105 S RUMSON AVE,MARGATE CITY CITY,19,1963,1,COM1,3004 -0116_18_4,-74.88157983,39.47666521,107 S RUMSON AVE,MARGATE CITY CITY,19,1970,1,RES1,3001 -0116_18_5,-74.8672432,39.49212463,109 S RUMSON AVE,MARGATE CITY CITY,20,1978,1,RES1,3001 -0116_18_6,-74.86617311,39.49163883,111 S RUMSON AVE,MARGATE CITY CITY,20,2009,1,RES1,3001 -0116_18_8,-74.880984,39.4955405,113 S RUMSON AVE,MARGATE CITY CITY,21,1936,1,RES1,3001 -0116_19_1,-74.52236417,39.3222835,8806 ATLANTIC AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_19_10,-74.51039874,39.33085521,8804 ATLANTIC AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_19_11,-74.516161,39.3299065,102 S RUMSON AVE,MARGATE CITY CITY,19,1932,1,GOV1,3004 -0116_19_12,-74.51620558,39.32973157,104 S RUMSON AVE,MARGATE CITY CITY,21,2000,1,RES1,3001 -0116_19_13,-74.51166113,39.32722854,108 S RUMSON AVE,MARGATE CITY CITY,19,1949,1,RES1,3001 -0116_19_14,-74.5118205,39.3264555,110 S RUMSON AVE,MARGATE CITY CITY,19,1965,1,RES1,3001 -0116_19_15,-74.5093615,39.32587317,112 S RUMSON AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_19_17,-74.4603535,39.35045,114 S RUMSON AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_19_2,-74.52376215,39.32073041,103 S SUMNER AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_19_3,-74.50932718,39.33321045,105 S SUMNER AVE,MARGATE CITY CITY,21,2011,1,GOV1,3004 -0116_19_4,-74.51404587,39.33124136,107 S SUMNER AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_19_5.01,-74.5186165,39.3191115,109 S SUMNER AVE,MARGATE CITY CITY,23,2005,1,RES1,3001 -0116_19_5.02,-74.5188395,39.318583,109A S SUMNER AVE,MARGATE CITY CITY,23,2006,1,RES1,3001 -0116_19_7,-74.50029356,39.33276768,111 S SUMNER AVE,MARGATE CITY CITY,20,1949,1,RES1,3001 -0116_2.01_1,-74.61936812,39.42099378,7502 ATLANTIC AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_2.01_10,-74.4975305,39.502028,104 S ARGYLE AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_2.01_11,-74.49404723,39.50028739,106 S ARGYLE AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_2.01_12,-74.49010913,39.49751244,108 S ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_2.01_2,-74.5193292,39.47563067,103 S BARCLAY AVE,MARGATE CITY CITY,21,1987,1,RES1,3001 -0116_2.01_3,-74.51514245,39.47279267,105 S BARCLAY AVE,MARGATE CITY CITY,21,1979,1,RES1,3001 -0116_2.01_4,-74.5156787,39.4721359,107 S BARCLAY AVE,MARGATE CITY CITY,23,2016,1,RES1,3001 -0116_2.01_5,-74.48776607,39.49437738,109 S BARCLAY AVE,MARGATE CITY CITY,21,1987,1,RES1,3001 -0116_2.01_6,-74.49284361,39.49453772,111 S BARCLAY AVE,MARGATE CITY CITY,21,1977,1,RES1,3001 -0116_2.01_8,-74.49480088,39.49421178,100 S ARGYLE AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_2.01_9,-74.507756,39.4936615,102 S ARGYLE AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_2.02_10,-74.49276478,39.51495793,104 S BARCLAY AVE,MARGATE CITY CITY,19,1964,1,RES1,3001 -0116_2.02_11,-74.5026675,39.517172,106 S BARCLAY AVE,MARGATE CITY CITY,23,2003,1,RES1,3001 -0116_2.02_13,-74.52104943,39.50940014,114 S BARCLAY AVE,MARGATE CITY CITY,22,1966,1,RES1,3001 -0116_2.02_2.01,-74.48938037,39.49589825,101 S BRUNSWICK AVE,MARGATE CITY CITY,22,2004,1,RES1,3001 -0116_2.02_2.02,-74.49925504,39.49741553,103 S BRUNSWICK AVE,MARGATE CITY CITY,22,2004,1,RES1,3001 -0116_2.02_4,-74.48470853,39.52419603,107 S BRUNSWICK AVE,MARGATE CITY CITY,20,1977,1,RES1,3001 -0116_2.02_8,-74.48529353,39.53702335,7504 ATLANTIC AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_2.02_9,-74.48903893,39.51773802,102 S BARCLAY AVE,MARGATE CITY CITY,21,2001,1,RES3A,3001 -0116_20_1,-74.45623835,39.35005998,8902 ATLANTIC AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_20_10,-74.47530185,39.34209934,8900 ATLANTIC AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_20_11,-74.46799967,39.34193842,102 S SUMNER AVE,MARGATE CITY CITY,20,2002,1,RES1,3001 -0116_20_13,-74.47397685,39.34146648,104 S SUMNER AVE,MARGATE CITY CITY,19,1948,1,RES1,3001 -0116_20_14,-74.47384155,39.34121317,110 S SUMNER AVE,MARGATE CITY CITY,23,2013,1,RES1,3001 -0116_20_2,-74.4569815,39.350054,103 S THURLOW AVE,MARGATE CITY CITY,22,2000,1,RES1,3001 -0116_20_3,-74.46312463,39.34989767,105 S THURLOW AVE,MARGATE CITY CITY,21,1987,1,RES1,3001 -0116_20_4,-74.45929466,39.34986351,107 S THURLOW AVE,MARGATE CITY CITY,20,1960,1,RES1,3001 -0116_20_5,-74.46110119,39.34971483,109 S THURLOW AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_20_6,-74.46048713,39.34893667,111 S THURLOW AVE,MARGATE CITY CITY,20,1985,1,COM1,3004 -0116_201.01_71,-74.51565333,39.4104635,21 WEST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.01_72,-74.51842472,39.40664177,19 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.01_73,-74.51235357,39.40544416,17 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.01_74,-74.51271894,39.40232889,15 WEST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.01_75,-74.52244025,39.40256082,13 WEST DRIVE,MARGATE CITY CITY,18,1926,1,COM1,3004 -0116_201.01_76,-74.52727939,39.4025287,12 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.01_77,-74.52990832,39.40239999,14 EAST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.01_78,-74.51451135,39.41512266,16 EAST DRIVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_201.01_79,-74.49632211,39.42623068,18 EAST DRIVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_201.01_80,-74.496251,39.425383,20 EAST DRIVE,MARGATE CITY CITY,19,1927,1,RES1,3001 -0116_201.01_81,-74.49615647,39.42448888,22 EAST DRIVE,MARGATE CITY CITY,19,1927,1,RES1,3001 -0116_201.01_82,-74.48856673,39.42280524,7502 WINCHESTER AVE,MARGATE CITY CITY,19,1927,1,RES1,3001 -0116_201.01_83,-74.50041477,39.42713839,7504 WINCHESTER AVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_201.01_84,-74.50046035,39.42652695,7506 WINCHESTER AVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_201.01_85,-74.50440248,39.42524418,7508 WINCHESTER AVE,MARGATE CITY CITY,19,1927,1,RES1,3001 -0116_201.02_1,-74.5046835,39.423102,1 EAST DRIVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_201.02_10,-74.53488284,39.45294902,19 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_11,-74.5739175,39.4504665,21 EAST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.02_12,-74.541967,39.459419,23 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_13,-74.54533054,39.46085718,25 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_14,-74.5442517,39.45821373,27 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_15,-74.5325305,39.4686875,29 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_16,-74.548531,39.469473,31 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_17.01,-74.548872,39.468086,33 EAST DRIVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_201.02_17.02,-74.5528475,39.4651745,35 EAST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.02_18,-74.5504555,39.46434,37 EAST DRIVE,MARGATE CITY CITY,19,1929,1,RES1,3001 -0116_201.02_19,-74.56038694,39.46962772,28 N FREDERICKSBURG AVE,MARGATE CITY CITY,19,1929,1,RES1,3001 -0116_201.02_2,-74.49600705,39.43475873,3 EAST DRIVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_201.02_20,-74.55594166,39.46813033,26 N FREDERICKSBURG AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_201.02_21,-74.55686219,39.46617252,24 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_201.02_22,-74.58322099,39.44433634,22 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_201.02_23,-74.60098639,39.43691718,20 N FREDERICKSBURG AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_201.02_24,-74.534224,39.471254,18 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_201.02_25,-74.54846228,39.47648194,16 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_201.02_26,-74.545746,39.4762025,14 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1929,1,COM3,3004 -0116_201.02_27,-74.54594972,39.47539656,12 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_28,-74.54481329,39.47529763,10 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_201.02_29,-74.55193195,39.47344971,8 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_201.02_3,-74.497481,39.4321055,5 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_30,-74.54631927,39.47192388,6 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_201.02_31,-74.801373,39.622258,4 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_201.02_32,-74.5565272,39.47471009,2 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_4,-74.4924315,39.431319,7 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_5,-74.64699268,39.43439196,9 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_6,-74.645678,39.433701,11 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_7,-74.6555855,39.4335205,13 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.02_8,-74.6935825,39.416969,15 EAST DRIVE,MARGATE CITY CITY,18,1925,1,GOV1,3004 -0116_201.02_9,-74.70671308,39.41863208,17 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_33,-74.5578,39.473959,7401 VENTNOR AVE,MARGATE CITY CITY,19,1927,1,RES1,3001 -0116_201.03_34,-74.5544,39.4721065,2 EAST DRIVE,MARGATE CITY CITY,19,1929,1,RES1,3001 -0116_201.03_35,-74.57040296,39.47821194,4 EAST DRIVE,MARGATE CITY CITY,19,2012,1,RES1,3001 -0116_201.03_36,-74.570987,39.4775435,6 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_37,-74.570053,39.4768965,8 EAST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_39,-74.55974557,39.47883128,11 WEST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.03_40,-74.5532965,39.4786435,9 WEST DRIVE,MARGATE CITY CITY,18,1926,1,RES1,3001 -0116_201.03_41,-74.54805507,39.50393234,7 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_42,-74.555444,39.5028085,5 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_43,-74.6071165,39.4778345,3 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_44,-74.601326,39.47541192,7509 VENTNOR AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.03_45,-74.507865,39.3320295,7507 VENTNOR AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_201.03_46,-74.50161137,39.33168586,7505 VENTNOR AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_47,-74.50067269,39.33167981,7503 VENTNOR AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_48,-74.49901765,39.33144652,7501 VENTNOR AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.03_49,-74.50846461,39.32783916,7407 VENTNOR AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_50,-74.501894,39.3275605,7405 VENTNOR AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.03_51,-74.51410082,39.32484609,7403 VENTNOR AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_106,-74.510493,39.329002,21 N BRUNSWICK AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_201.04_107,-74.5127745,39.32854,19 N BRUNSWICK AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_201.04_108,-74.51070715,39.32723603,17 N BRUNSWICK AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_201.04_109,-74.510508,39.327056,15 N BRUNSWICK AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_201.04_110,-74.51344989,39.32678985,13 N BRUNSWICK AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_201.04_111,-74.45971555,39.34988618,11 N BRUNSWICK AVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_201.04_112,-74.4635415,39.349625,9 N BRUNSWICK AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_201.04_113,-74.46200925,39.34965885,7 N BRUNSWICK AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_201.04_114,-74.45732289,39.34955084,5 N BRUNSWICK AVE,MARGATE CITY CITY,18,1928,1,RES1,3004 -0116_201.04_115,-74.460677,39.348478,3 N BRUNSWICK AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_201.04_201,-74.58075754,39.34005212,23 N BRUNSWICK AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_201.04_202,-74.57897817,39.33549551,25 N BRUNSWICK AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_201.04_204,-74.59025132,39.33616311,29 N BRUNSWICK AVE,MARGATE CITY CITY,18,1958,1,RES1,3001 -0116_201.04_205,-74.59658965,39.3348612,33 N BRUNSWICK AVE,MARGATE CITY CITY,18,1940,1,RES1,3001 -0116_201.04_207,-74.591368,39.334404,7510 WINCHESTER AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_201.04_52,-74.5180675,39.324152,2 WEST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.04_53,-74.5096946,39.32387459,4 WEST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.04_54,-74.5141685,39.3236155,6 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_55,-74.51026682,39.32238721,8 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_56,-74.5117635,39.3223235,10 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_58,-74.51197196,39.32196618,14 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_59,-74.5134229,39.32157035,16 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_60,-74.51870263,39.3202143,18 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_61,-74.518902,39.32010047,20 WEST DRIVE,MARGATE CITY CITY,18,1926,1,RES1,3001 -0116_201.04_62,-74.51939115,39.3189761,22 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_63,-74.52140061,39.32216684,24 WEST DRIVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_201.04_64,-74.52218533,39.3217025,26 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3004 -0116_201.04_65,-74.5222325,39.3204625,28 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_66,-74.5093068,39.33267805,30 WEST DRIVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_201.04_67,-74.51096415,39.33198503,32 WEST DRIVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_201.04_68,-74.5094575,39.331423,34 WEST DRIVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_201.04_69,-74.5129144,39.33017733,36 WEST DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.04_70,-74.51236489,39.32902721,38 WEST DRIVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_201.05_100,-74.46666195,39.45388796,4 CIRCLE DRIVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_201.05_101,-74.586642,39.375528,5 CIRCLE DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.05_102,-74.57758379,39.38465996,6 CIRCLE DRIVE,MARGATE CITY CITY,18,1923,1,RES1,3001 -0116_201.05_103,-74.5965315,39.3808685,7 CIRCLE DRIVE,MARGATE CITY CITY,20,2012,1,RES3A,3004 -0116_201.05_104,-74.589769,39.3803015,8 CIRCLE DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.05_105,-74.59469843,39.37899138,9 CIRCLE DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.05_86,-74.4979795,39.4310835,10 CIRCLE DRIVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_201.05_87,-74.49538306,39.4282128,11 CIRCLE DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.05_88,-74.49620245,39.42782383,12 CIRCLE DRIVE,MARGATE CITY CITY,18,1927,1,RES1,3001 -0116_201.05_89,-74.50223364,39.43497783,13 CIRCLE DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.05_90,-74.50507792,39.43059035,14 CIRCLE DRIVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_201.05_91,-74.52018433,39.42713959,15 CIRCLE DRIVE,MARGATE CITY CITY,19,1927,1,RES1,3001 -0116_201.05_92,-74.52514749,39.42066623,16 CIRCLE DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.05_93,-74.51461686,39.4319908,17 CIRCLE DRIVE,MARGATE CITY CITY,18,1926,1,RES1,3001 -0116_201.05_94,-74.526618,39.4288875,18 CIRCLE DRIVE,MARGATE CITY CITY,18,1926,1,RES1,3001 -0116_201.05_95,-74.43835884,39.48758465,19 CIRCLE DRIVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_201.05_96,-74.471994,39.4434665,20 CIRCLE DRIVE,MARGATE CITY CITY,18,1926,1,RES1,3001 -0116_201.05_97,-74.48103067,39.4409433,1 CIRCLE DRIVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_201.05_98,-74.48578471,39.439643,2 CIRCLE DRIVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_201.05_99,-74.47221786,39.44492723,3 CIRCLE DRIVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_203_1,-74.59183816,39.37815067,27 N CLARENDON AVE,MARGATE CITY CITY,18,1935,1,RES1,3001 -0116_203_11,-74.61493618,39.3713171,32 N BRUNSWICK AVE,MARGATE CITY CITY,18,1935,1,GOV1,3004 -0116_203_12,-74.609324,39.37759,30 N BRUNSWICK AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_203_13,-74.60220151,39.39082268,28 N BRUNSWICK AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_203_14,-74.60768776,39.38598887,26 N BRUNSWICK AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_203_15,-74.61884782,39.38679273,24 N BRUNSWICK AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_203_16,-74.60870061,39.3857146,22 N BRUNSWICK AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_203_17,-74.60339671,39.39529091,20 N BRUNSWICK AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_203_2,-74.58836915,39.3771183,29 N CLARENDON AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_203_20,-74.61312995,39.39659186,12 N BRUNSWICK AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_203_21,-74.532612,39.4046165,10 N BRUNSWICK AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_203_23,-74.547789,39.404373,6 N BRUNSWICK AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_203_24,-74.5492755,39.4043345,4 N BRUNSWICK AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_203_25,-74.561417,39.410216,2 N BRUNSWICK AVE,MARGATE CITY CITY,17,1930,1,GOV1,3004 -0116_203_26,-74.56182168,39.40582763,7601 VENTNOR AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_203_28,-74.554572,39.4191375,1 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_203_29,-74.56107323,39.41360383,3 N CLARENDON AVE,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_203_30,-74.56555956,39.41654721,5 N CLARENDON AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_203_31,-74.56479827,39.41622466,7 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_203_32,-74.5691565,39.41483,9 N CLARENDON AVE,MARGATE CITY CITY,18,1939,1,RES1,3001 -0116_203_33,-74.49010983,39.440811,11 N CLARENDON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_203_34,-74.4875955,39.439266,13 N CLARENDON AVE,MARGATE CITY CITY,18,1940,1,RES1,3001 -0116_203_37,-74.50341885,39.44417452,19 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_203_38,-74.50498976,39.44291722,21 N CLARENDON AVE,MARGATE CITY CITY,18,1939,1,RES1,3001 -0116_203_39,-74.49697,39.4513145,23 N CLARENDON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_203_4,-74.59799562,39.37004769,31 N CLARENDON AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_203_5,-74.5986765,39.3694355,33 N CLARENDON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_203_8,-74.60287,39.3690722,7600 WINCHESTER AVE,MARGATE CITY CITY,18,1935,1,RES1,3001 -0116_203_9,-74.61369427,39.37433657,34 N BRUNSWICK AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_204.01_1,-74.4981095,39.447919,25 N CLERMONT AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_204.01_10,-74.51147688,39.44319611,40 N CLARENDON AVE,MARGATE CITY CITY,19,1939,1,RES1,3001 -0116_204.01_11,-74.518246,39.4430545,38 N CLARENDON AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_204.01_15,-74.52014597,39.43957848,30 N CLARENDON AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_204.01_16,-74.51253448,39.43846393,28 N CLARENDON AVE,MARGATE CITY CITY,17,1942,1,RES1,3001 -0116_204.01_17,-74.52315442,39.4439866,24 N CLARENDON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_204.01_18,-74.50944376,39.45260787,20 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.01_19,-74.51705843,39.44707737,18 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_204.01_2,-74.49129716,39.44512306,27 N CLERMONT AVE,MARGATE CITY CITY,17,1953,1,GOV1,3004 -0116_204.01_20,-74.50941474,39.4459616,12 N CLARENDON AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_204.01_21,-74.529163,39.4524675,10 N CLARENDON AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_204.01_22,-74.52754949,39.45150094,8 N CLARENDON AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_204.01_23,-74.497889,39.460642,6 N CLARENDON AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_204.01_24,-74.4908141,39.45900323,4 N CLARENDON AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_204.01_26,-74.48881563,39.45789699,2A N CLARENDON AVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_204.01_27,-74.49878466,39.4565911,2 N CLARENDON AVE,MARGATE CITY CITY,18,1950,1,GOV1,3004 -0116_204.01_3,-74.503503,39.4512435,29 N CLERMONT AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_204.01_30,-74.4947125,39.4697955,3 N CLERMONT AVE,MARGATE CITY CITY,18,1950,1,COM8,3004 -0116_204.01_32,-74.49809433,39.46523597,5 N CLERMONT AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_204.01_33,-74.50023118,39.46967149,7 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.01_34,-74.50026696,39.46844917,9 N CLERMONT AVE,MARGATE CITY CITY,18,2012,1,RES1,3001 -0116_204.01_35,-74.51248204,39.45972832,11 N CLERMONT AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_204.01_36,-74.51391337,39.45499011,15 N CLERMONT AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_204.01_37,-74.52764634,39.45802366,17 N CLERMONT AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_204.01_38,-74.524279,39.4541255,19 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.01_39,-74.515982,39.4664085,23 N CLERMONT AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_204.01_5,-74.50706216,39.44857249,33 N CLERMONT AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_204.01_7,-74.506287,39.448419,37 N CLERMONT AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_204.01_8,-74.499023,39.4470845,39 N CLERMONT AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_204.01_9,-74.50629275,39.44619044,7604 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.02_1,-74.52173942,39.46406339,23 N DELAVAN AVE,MARGATE CITY CITY,18,1940,1,RES3B,3001 -0116_204.02_10,-74.470865,39.483761,13 N DELAVAN AVE,MARGATE CITY CITY,45,1929,2,COM7,3004 -0116_204.02_11,-74.44858566,39.49453824,15 N DELAVAN AVE,MARGATE CITY CITY,45,1929,2,RES1,3001 -0116_204.02_13,-74.45901068,39.49487264,19 N DELAVAN AVE,MARGATE CITY CITY,45,1929,2,RES1,3001 -0116_204.02_14.02_C000B,-74.458634,39.494883,20 N CLERMONT AVE,MARGATE CITY CITY,21,1929,1,RES1,3001 -0116_204.02_15,-74.45626866,39.4892347,18 N CLERMONT AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_204.02_16,-74.45454505,39.48817787,16 N CLERMONT AVE,MARGATE CITY CITY,45,1929,2,RES1,3001 -0116_204.02_17,-74.45173875,39.50253886,14 N CLERMONT AVE,MARGATE CITY CITY,19,1929,1,RES1,3001 -0116_204.02_18,-74.4530618,39.5016184,12 N CLERMONT AVE,MARGATE CITY CITY,18,1960,1,RES1,3001 -0116_204.02_19,-74.4543236,39.50160797,10 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_204.02_2,-74.45792403,39.47294116,26 N CLERMONT AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_204.02_20,-74.4518655,39.496444,8 N CLERMONT AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_204.02_21,-74.45479514,39.50291375,6 N CLERMONT AVE,MARGATE CITY CITY,17,1954,1,GOV1,3004 -0116_204.02_22,-74.46524712,39.49669199,4 N CLERMONT AVE,MARGATE CITY CITY,18,1939,1,RES1,3001 -0116_204.02_23,-74.47461836,39.49261116,2 N CLERMONT AVE,MARGATE CITY CITY,18,1960,1,RES1,3001 -0116_204.02_3,-74.44356675,39.48671963,7701 VENTNOR AVE,MARGATE CITY CITY,,1966,1,RES1,3001 -0116_204.02_4,-74.4489655,39.48591368,1 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_204.02_5,-74.479344,39.4781715,3 N DELAVAN AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_204.02_6,-74.47863771,39.47809257,5 N DELAVAN AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_204.02_7,-74.4780263,39.47772269,7 N DELAVAN AVE,MARGATE CITY CITY,18,1981,1,GOV1,3004 -0116_204.02_8,-74.48379234,39.47115269,9 N DELAVAN AVE,MARGATE CITY CITY,17,1955,1,IND2,3002 -0116_204.02_9,-74.47067634,39.48695147,11 N DELAVAN AVE,MARGATE CITY CITY,45,1929,2,RES1,3001 -0116_204.03_1,-74.484071,39.495108,21 N DOUGLAS AVE,MARGATE CITY CITY,17,1933,1,RES1,3001 -0116_204.03_10,-74.49488921,39.49064847,15 N DOUGLAS AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_204.03_11,-74.50224915,39.48760504,17 N DOUGLAS AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_204.03_12,-74.49751047,39.49843177,19 N DOUGLAS AVE,MARGATE CITY CITY,47,1925,2,RES1,3001 -0116_204.03_13,-74.49875558,39.50105101,20 N DELAVAN AVE,MARGATE CITY CITY,28,1925,2,RES1,3001 -0116_204.03_14,-74.48247343,39.5190888,18 N DELAVAN AVE,MARGATE CITY CITY,28,1925,2,RES1,3001 -0116_204.03_15,-74.462792,39.525633,16 N DELAVAN AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_204.03_16,-74.4918685,39.519535,14 N DELAVAN AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_204.03_17,-74.49488184,39.5142622,12 N DELAVAN AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_204.03_19,-74.49969737,39.5193758,10 N DELAVAN AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_204.03_2,-74.4834565,39.4949915,23 N DOUGLAS AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_204.03_20,-74.4912605,39.5245745,6 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.03_21,-74.48752713,39.53140713,4 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.03_22,-74.52683231,39.52110112,2 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_204.03_4,-74.48609255,39.4968982,1 N DOUGLAS AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_204.03_5,-74.4856642,39.49648792,3 N DOUGLAS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.03_6,-74.48741942,39.47938465,5 N DOUGLAS AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_204.03_7,-74.50252316,39.48684969,7 N DOUGLAS AVE,MARGATE CITY CITY,18,1949,1,RES1,3001 -0116_204.03_8,-74.49240043,39.49428633,9 N DOUGLAS AVE,MARGATE CITY CITY,19,1979,1,RES1,3001 -0116_204.03_9,-74.4911215,39.492405,11 N DOUGLAS AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_204.04_1,-74.5149535,39.5352405,25 N DELAVAN AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_204.04_10,-74.49114632,39.33550584,32 N CLERMONT AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_204.04_11,-74.4934155,39.335465,30 N CLERMONT AVE,MARGATE CITY CITY,17,1937,1,RES1,3001 -0116_204.04_12,-74.4972375,39.335252,28 N CLERMONT AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_204.04_2,-74.52126196,39.53133634,27 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.04_4,-74.53206016,39.30827752,31 N DELAVAN AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_204.04_5,-74.53383279,39.31517025,33 N DELAVAN AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_204.04_6,-74.53655,39.313042,7702 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.04_7,-74.5796955,39.311518,38 N CLERMONT AVE,MARGATE CITY CITY,20,2007,1,COM4,3004 -0116_204.04_8,-74.59938006,39.31632784,36 N CLERMONT AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_204.04_9,-74.60639719,39.31616348,34 N CLERMONT AVE,MARGATE CITY CITY,19,2012,1,RES1,3001 -0116_204.05_1,-74.491533,39.334937,25 N DOUGLAS AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_204.05_10,-74.50785274,39.33582617,30 N DELAVAN AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_204.05_11,-74.5041235,39.3349415,28 N DELAVAN AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_204.05_12,-74.4881844,39.34926312,7705 OAK GROVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_204.05_2,-74.492488,39.3348675,27 N DOUGLAS AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_204.05_3,-74.50625693,39.34055697,35 N DOUGLAS AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_204.05_4,-74.50640317,39.339862,37 N DOUGLAS AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_204.05_5,-74.50596116,39.33970751,39 N DOUGLAS AVE,MARGATE CITY CITY,19,2014,1,RES1,3001 -0116_204.05_6,-74.50766901,39.33871984,41 N DOUGLAS AVE,MARGATE CITY CITY,17,1952,1,RES4,3001 -0116_204.05_7,-74.50755323,39.33794166,36 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_204.05_8,-74.4987305,39.3377085,34 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_204.05_9,-74.50125625,39.33624216,32 N DELAVAN AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_205.01_1,-74.494084,39.3433345,25 N ESSEX AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_205.01_10,-74.3770427,39.39752128,36 N DOUGLAS AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_205.01_11,-74.38704833,39.39206883,34 N DOUGLAS AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_205.01_12,-74.376938,39.39863,7801 OAK GROVE,MARGATE CITY CITY,17,1928,1,RES1,3001 -0116_205.01_2,-74.50359781,39.34302637,27 N ESSEX AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_205.01_3,-74.51053415,39.34069179,29 N ESSEX AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_205.01_4,-74.50955871,39.34063853,31 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_205.01_5,-74.51173803,39.33735204,39 N ESSEX AVE,MARGATE CITY CITY,21,1950,1,RES1,3001 -0116_205.01_6,-74.35525233,39.4142135,41 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_205.01_7,-74.37423317,39.39937697,40 N DOUGLAS AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_205.01_9,-74.375627,39.3991865,38 N DOUGLAS AVE,MARGATE CITY CITY,20,2009,1,COM1,3004 -0116_205.02_1,-74.3860565,39.391718,7801 VENTNOR AVE,MARGATE CITY CITY,,1945,1,RES1,3001 -0116_205.02_10,-74.6931027,39.44865189,24 N DOUGLAS AVE,MARGATE CITY CITY,17,1928,1,RES1,3001 -0116_205.02_12,-74.669864,39.457319,3 N ESSEX AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_205.02_15,-74.6272235,39.4882285,5 N ESSEX AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_205.02_18,-74.68130758,39.49472735,7 N ESSEX AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_205.02_2,-74.38733341,39.39045864,4 N DOUGLAS AVE,MARGATE CITY CITY,17,1955,1,IND2,3004 -0116_205.02_24,-74.67864534,39.49408403,9 N ESSEX AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_205.02_27,-74.67951533,39.487416,11 N ESSEX AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_205.02_30,-74.674059,39.496218,13 N ESSEX AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_205.02_32,-74.712637,39.3773825,15 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_205.02_34,-74.78658625,39.37339423,2 N DOUGLAS AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_205.02_4,-74.38831215,39.38982753,8 N DOUGLAS AVE,MARGATE CITY CITY,21,2015,1,COM1,3004 -0116_205.02_5,-74.39010584,39.39247333,7805 VENTNOR AVE,MARGATE CITY CITY,,1954,1,RES1,3001 -0116_205.02_7,-74.68029286,39.44440372,23 N ESSEX AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_205.02_8,-74.68215343,39.44554479,26 N DOUGLAS AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_206.01_1,-74.7151835,39.4102625,20 N ESSEX AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_206.01_10,-74.7808175,39.4215465,40 N ESSEX AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_206.01_11,-74.80184784,39.38025852,41 N EXETER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_206.01_12,-74.8007195,39.3772825,39 N EXETER AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_206.01_13,-74.8142295,39.3779095,37 N EXETER AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_206.01_14,-74.8140345,39.388032,35 N EXETER AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_206.01_15,-74.81033,39.398759,33 N EXETER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_206.01_16,-74.81738099,39.38783242,29 N EXETER AVE,MARGATE CITY CITY,17,1964,1,RES3A,3002 -0116_206.01_18,-74.81886008,39.39720868,27 N EXETER AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_206.01_19,-74.79596515,39.41408389,25 N EXETER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_206.01_2,-74.73528325,39.43394639,22 N ESSEX AVE,MARGATE CITY CITY,17,1917,1,RES1,3001 -0116_206.01_21,-74.600259,39.315405,21 N EXETER AVE,MARGATE CITY CITY,18,1982,1,RES1,3001 -0116_206.01_22,-74.597923,39.315393,19 N EXETER AVE,MARGATE CITY CITY,18,1922,1,EDU1,3004 -0116_206.01_3,-74.75836587,39.43378935,24 N ESSEX AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_206.01_4,-74.7570235,39.433098,26 N ESSEX AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_206.01_5,-74.75770655,39.43172523,28 N ESSEX AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_206.01_6,-74.7614475,39.431706,32 N ESSEX AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_206.01_7,-74.761425,39.429984,34 N ESSEX AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_206.01_8,-74.754175,39.4299655,36 N ESSEX AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_206.01_9,-74.758356,39.429946,38 N ESSEX AVE,MARGATE CITY CITY,17,1935,1,RES3A,3001 -0116_206.02_1,-74.60178286,39.31503751,7817 VENTNOR AVE,MARGATE CITY CITY,,1928,1,RES1,3001 -0116_206.02_13,-74.59303324,39.32520245,7 N EXETER AVE,MARGATE CITY CITY,17,1925,1,RES1,3004 -0116_206.02_17.01,-74.58778067,39.32377101,8 N ESSEX AVE,MARGATE CITY CITY,18,1988,1,GOV1,3004 -0116_206.02_17.02,-74.58666992,39.32302967,10 N ESSEX AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_206.02_19,-74.58962,39.322322,11 N EXETER AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_206.02_2,-74.5981315,39.3142105,7811 VENTNOR AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_206.02_22,-74.59291086,39.31837877,13 N EXETER AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_206.02_23,-74.5895575,39.3178725,14 N ESSEX AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_206.02_25,-74.5769835,39.3338735,15 N EXETER AVE,MARGATE CITY CITY,18,1952,1,RES3A,3001 -0116_206.02_26,-74.59283872,39.49008317,16 N ESSEX AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_206.02_28,-74.58301,39.5019015,17 N EXETER AVE,MARGATE CITY CITY,17,1964,1,RES3A,3001 -0116_206.02_29,-74.607247,39.491559,18 N ESSEX AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_206.02_3,-74.6019095,39.3129685,7809 VENTNOR AVE,MARGATE CITY CITY,,1961,1,RES1,3001 -0116_206.02_31,-74.60536758,39.49024393,18A N ESSEX AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_206.02_4,-74.59730212,39.31283281,7807 VENTNOR AVE,MARGATE CITY CITY,,1932,1,RES1,3001 -0116_206.02_7,-74.611199,39.3168495,3 N EXETER AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_206.02_8,-74.6184765,39.3112445,4 N ESSEX AVE,MARGATE CITY CITY,,1960,1,RES1,3001 -0116_207.01_10,-74.62981366,39.44513,14 N EXETER AVE,MARGATE CITY CITY,18,1925,1,GOV1,3004 -0116_207.01_11,-74.64759703,39.45015939,12 N EXETER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_207.01_12,-74.6460595,39.448289,10 N EXETER AVE,MARGATE CITY CITY,21,1962,1,RES1,3001 -0116_207.01_13,-74.64434411,39.44657292,8 N EXETER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_207.01_14,-74.66254064,39.4467317,6 N EXETER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_207.01_15,-74.62510989,39.46289493,4 N EXETER AVE,MARGATE CITY CITY,18,1986,1,RES1,3001 -0116_207.01_16,-74.64662279,39.4615103,21 N FRONTENAC AVE,MARGATE CITY CITY,17,1954,1,COM1,3004 -0116_207.01_17,-74.644674,39.4670055,23 N FRONTENAC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_207.01_18,-74.69418849,39.44826364,7901 WINCHESTER RD,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_207.01_19,-74.69253562,39.44804625,25 N FRONTENAC AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_207.01_20,-74.69409033,39.44669901,19 N FRONTENAC AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_207.01_21,-74.6649855,39.4608635,27 N FRONTENAC AVE,MARGATE CITY CITY,18,1935,1,RES1,3001 -0116_207.01_22,-74.66608266,39.46217949,29A N FRONTENAC AVE,MARGATE CITY CITY,17,1957,1,RES3A,3001 -0116_207.01_23,-74.68551605,39.4607312,29 N FRONTENAC AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_207.01_29,-74.67588407,39.48267181,33 N FRONTENAC AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_207.01_3,-74.60641857,39.49008115,7901 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_207.01_30,-74.69792954,39.48154219,31 N FRONTENAC AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_207.01_31,-74.6807735,39.4933945,7902 WINCHESTER AVE,MARGATE CITY CITY,17,1980,1,RES1,3001 -0116_207.01_33,-74.68992053,39.49565533,7900 WINCHESTER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_207.01_34,-74.716851,39.4128675,38 N EXETER AVE,MARGATE CITY CITY,18,1988,1,RES1,3001 -0116_207.01_35,-74.71090077,39.43195783,36 N EXETER AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_207.01_36,-74.74551915,39.42044182,34 N EXETER AVE,MARGATE CITY CITY,17,1936,1,RES1,3001 -0116_207.01_37,-74.76619345,39.40492476,32 N EXETER AVE,MARGATE CITY CITY,17,1937,1,RES1,3001 -0116_207.01_38,-74.79293741,39.41692285,30 N EXETER AVE,MARGATE CITY CITY,17,1937,1,RES1,3001 -0116_207.01_39,-74.76216831,39.42727689,28 N EXETER AVE,MARGATE CITY CITY,17,1937,1,RES1,3001 -0116_207.01_4,-74.606078,39.489671,3 N FRANKLIN AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_207.01_40,-74.75693223,39.43400247,26 N EXETER AVE,MARGATE CITY CITY,17,1937,1,RES1,3001 -0116_207.01_41,-74.7580795,39.433934,24 N EXETER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_207.01_42,-74.75616,39.4334525,22 N EXETER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_207.01_43,-74.756654,39.4314295,20 N EXETER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_207.01_44,-74.75553076,39.43014403,18 N EXETER AVE,MARGATE CITY CITY,17,1930,2,RES1,3001 -0116_207.01_45,-74.76098548,39.42955802,16 N EXETER AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_207.01_5,-74.60740629,39.48718215,5 N FRANKLIN AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_207.01_6,-74.6057665,39.487147,7 N FRANKLIN AVE,MARGATE CITY CITY,17,1930,1,RES3B,3001 -0116_207.01_7,-74.60204684,39.50241753,9 N FRANKLIN AVE,MARGATE CITY CITY,17,1928,1,RES3B,3001 -0116_207.01_8,-74.6250135,39.4371515,11 N FRANKLIN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_207.02_1,-74.79490765,39.43477051,8003 WINCHESTER RD,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_207.02_10,-74.83922061,39.37499521,24 N FRONTENAC AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_207.02_12,-74.84604539,39.37163679,26 N FRONTENAC AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_207.02_13,-74.84862959,39.39491406,28 N FRONTENAC AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_207.02_15,-74.8081805,39.403354,34 N FRONTENAC AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_207.02_16,-74.81799834,39.41039849,36 N FRONTENAC AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_207.02_25,-74.821639,39.414054,8002 WINCHESTER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_207.02_29,-74.810439,39.433965,37 N GLADSTONE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_207.02_3,-74.80699632,39.37824404,22 N FRONTENAC AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_207.02_30,-74.84875066,39.41902094,33 N GLADSTONE AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_207.02_32,-74.84678441,39.42636808,31 N GLADSTONE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_207.02_33,-74.8389651,39.41935087,29 N GLADSTONE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_207.02_34,-74.71106416,39.43735798,27 N GLADSTONE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_207.02_35,-74.73274278,39.44205565,21 N GLADSTONE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_207.02_37,-74.73109916,39.44001133,19 N GLADSTONE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_207.02_38,-74.73079482,39.45284949,17 N GLADSTONE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_207.02_39,-74.736711,39.448939,15 N GLADSTONE AVE,MARGATE CITY CITY,17,1945,1,RES1,3002 -0116_207.02_4,-74.818117,39.3875045,8001 WINCHESTER RD,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_207.02_41,-74.7472217,39.45168354,13 N GLADSTONE AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_207.02_42,-74.750256,39.45075,11 N GLADSTONE AVE,MARGATE CITY CITY,17,1915,1,GOV1,3004 -0116_207.02_42.01,-74.75023775,39.44632063,10 N FRONTENAC AVE,MARGATE CITY CITY,18,1988,1,RES1,3001 -0116_207.02_43.01,-74.7497389,39.44576972,8 N FRONTENAC AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_207.02_43.02,-74.745846,39.44502,6 N FRONTENAC AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_207.02_45,-74.7119462,39.46521097,4 N FRONTENAC AVE,MARGATE CITY CITY,17,1921,1,RES1,3001 -0116_207.02_46,-74.71188373,39.46505596,2 N FRONTENAC AVE,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_207.02_47,-74.807972,39.6333045,8001-11 VENTNOR AVE,MARGATE CITY CITY,,1947,1,RES1,3001 -0116_207.02_51,-74.806845,39.6354495,1 N GLADSTONE AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_207.02_52,-74.625898,39.360201,5 N GLADSTONE AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_207.02_54,-74.62641319,39.36012743,7 N GLADSTONE AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_207.02_9,-74.84103552,39.37596742,22-1/2 N FRONTENAC,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_207.03_10,-74.65008066,39.35663794,12 N FRANKLIN AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_207.03_11,-74.65269718,39.35510795,10 N FRANKLIN AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_207.03_12,-74.6455075,39.366991,8 N FRANKLIN AVE,MARGATE CITY CITY,17,1949,1,RES1,3002 -0116_207.03_13,-74.64438527,39.3630645,6 N FRANKLIN AVE,MARGATE CITY CITY,18,1925,1,RES3A,3001 -0116_207.03_14,-74.66844227,39.35027945,2 N FRANKLIN AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_207.03_4,-74.630944,39.366331,7903 VENTNOR AVE,MARGATE CITY CITY,,1979,1,RES1,3001 -0116_207.03_5,-74.63271244,39.36579185,3 N FRONTENAC AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_207.03_6,-74.63555087,39.36506518,5 N FRONTENAC AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_207.03_7,-74.6319115,39.3622235,7 N FRONTENAC AVE,MARGATE CITY CITY,18,1925,1,RES3A,3001 -0116_207.03_8,-74.63598329,39.36113504,9 N FRONTENAC AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_208_1,-74.664301,39.3587505,31 N GRANVILLE AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_208_10,-74.81997239,39.36605578,13 N GRANVILLE AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_208_11,-74.5408125,39.376452,11 N GRANVILLE AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_208_12,-74.54908585,39.37619153,9 N GRANVILLE AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_208_13,-74.54949005,39.37373816,7 N GRANVILLE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_208_14,-74.54234416,39.37319062,5 N GRANVILLE AVE,MARGATE CITY CITY,17,1954,1,RES3A,3001 -0116_208_15,-74.54883515,39.37034984,3 N GRANVILLE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_208_16.01,-74.54879919,39.3684344,1 N GRANVILLE AVE,MARGATE CITY CITY,22,1920,1,RES3A,3001 -0116_208_16.02,-74.5417125,39.3846675,8019 VENTNOR AVE,MARGATE CITY CITY,20,2005,1,COM4,3004 -0116_208_18.01,-74.50667217,39.3275195,8016 WINCHESTER AVE,MARGATE CITY CITY,20,2006,1,COM1,3004 -0116_208_18.02,-74.50216183,39.32697374,38 N GLADSTONE AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_208_2,-74.668515,39.356178,29 N GRANVILLE AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_208_20,-74.53796077,39.3838997,34 N GLADSTONE AVE,MARGATE CITY CITY,21,2014,1,RES3A,3001 -0116_208_21,-74.73485678,39.45977234,32 N GLADSTONE AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_208_22,-74.7318995,39.4594765,30 N GLADSTONE AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_208_23,-74.60079399,39.43030657,28 N GLADSTONE AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_208_24,-74.6150185,39.4303535,26 N GLADSTONE AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_208_25,-74.619915,39.370364,24 N GLADSTONE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_208_26,-74.62910316,39.36993387,20 N GLADSTONE AVE,MARGATE CITY CITY,17,1923,1,RES1,3001 -0116_208_27,-74.62402409,39.38039805,16 N GLADSTONE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_208_29,-74.635712,39.3848345,14 N GLADSTONE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_208_3,-74.68846953,39.35930829,27 N GRANVILLE AVE,MARGATE CITY CITY,19,1928,1,GOV1,3004 -0116_208_30,-74.645494,39.3687845,10 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_208_31,-74.64267769,39.36848936,8 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_208_32,-74.64652332,39.37718253,6 N GLADSTONE AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_208_33,-74.6236345,39.3931955,4 N GLADSTONE AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_208_35,-74.6275337,39.39096497,2 N GLADSTONE AVE,MARGATE CITY CITY,21,2014,1,GOV1,3004 -0116_208_36,-74.61955792,39.3871997,8017 VENTNOR AVE,MARGATE CITY CITY,,1955,1,RES1,3001 -0116_208_37,-74.62883493,39.38600583,8015 VENTNOR AVE,MARGATE CITY CITY,,1955,1,RES1,3001 -0116_208_4,-74.702727,39.366218,25 N GRANVILLE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_208_5,-74.76560718,39.30697822,23 N GRANVILLE AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_208_6,-74.7645495,39.310974,21 N GRANVILLE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_208_7,-74.77372387,39.30221922,19 N GRANVILLE AVE,MARGATE CITY CITY,17,1968,1,RES1,3001 -0116_208_8,-74.767376,39.34862,17 N GRANVILLE AVE,MARGATE CITY CITY,18,1922,1,RES1,3001 -0116_209.01_1,-74.6344915,39.393008,8102 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_209.01_10,-74.6824174,39.38863712,13 N HAVERFORD AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_209.01_11,-74.665884,39.39566683,11 N HAVERFORD AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_209.01_12,-74.63005494,39.40897031,9 N HAVERFORD AVE,MARGATE CITY CITY,18,1928,1,RES3A,3001 -0116_209.01_13,-74.63027099,39.4107285,7 N HAVERFORD AVE,MARGATE CITY CITY,18,1925,1,REL1,3004 -0116_209.01_14,-74.6350835,39.409296,5 N HAVERFORD AVE,MARGATE CITY CITY,19,1925,1,GOV1,3004 -0116_209.01_15,-74.63392015,39.40254619,3 N HAVERFORD AVE,MARGATE CITY CITY,18,1937,1,COM3,3004 -0116_209.01_16,-74.62353718,39.41881806,32 N GRANVILLE AVE,MARGATE CITY CITY,18,1947,1,RES1,3001 -0116_209.01_17,-74.62847687,39.41236845,30 N GRANVILLE AVE,MARGATE CITY CITY,17,1932,1,RES1,3001 -0116_209.01_18,-74.6380165,39.411983,28 N GRANVILLE AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_209.01_19,-74.65130662,39.40352544,26 N GRANVILLE AVE,MARGATE CITY CITY,18,1932,1,COM1,3004 -0116_209.01_2,-74.63482294,39.39123378,29 N HAVERFORD AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_209.01_20,-74.623521,39.425218,24 N GRANVILLE AVE,MARGATE CITY CITY,17,1949,1,RES3A,3001 -0116_209.01_21,-74.6290875,39.424786,22 N GRANVILLE AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_209.01_22,-74.62834623,39.42218545,20 N GRANVILLE AVE,MARGATE CITY CITY,17,1943,1,RES1,3001 -0116_209.01_23,-74.6275955,39.421117,16 N GRANVILLE AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_209.01_24,-74.62914676,39.42062692,14 N GRANVILLE AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_209.01_25,-74.62789663,39.41925275,12 N GRANVILLE AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_209.01_27,-74.6313825,39.427577,8 N GRANVILLE AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_209.01_29,-74.634853,39.421348,4 N GRANVILLE AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_209.01_3,-74.6381105,39.4017915,27 N HAVERFORD AVE,MARGATE CITY CITY,17,1949,1,RES1,3004 -0116_209.01_30,-74.62793635,39.43494438,2 N GRANVILLE AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_209.01_31,-74.62266858,39.43488119,8105 VENTNOR AVE,MARGATE CITY CITY,18,1937,1,RES1,3001 -0116_209.01_33,-74.62746078,39.43486839,8101 VENTNOR AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_209.01_4,-74.648777,39.39757483,25 N HAVERFORD AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_209.01_5,-74.64392643,39.39710379,23 N HAVERFORD AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_209.01_6,-74.67382454,39.37287902,21 N HAVERFORD AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_209.01_7,-74.676099,39.380937,19 N HAVERFORD AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_209.01_8,-74.6675345,39.3931615,17 N HAVERFORD AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_209.01_9,-74.67526647,39.38905314,15 N HAVERFORD AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_209.02_11,-74.6391058,39.43359614,9 N HUNTINGTON AVE,MARGATE CITY CITY,20,2012,1,RES3B,3001 -0116_209.02_12,-74.63278604,39.43350032,7 N HUNTINGTON AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_209.02_13,-74.63465614,39.43246257,5-A N HUNTINGTON AVE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_209.02_14,-74.63642445,39.43150268,5 N HUNTINGTON AVE,MARGATE CITY CITY,17,1926,1,RES1,3001 -0116_209.02_15,-74.6361805,39.430054,3 N HUNTINGTON AVE,MARGATE CITY CITY,18,1926,1,RES3A,3001 -0116_209.02_16,-74.63432825,39.42896777,32 N HAVERFORD AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_209.02_17,-74.60256888,39.48389774,30 N HAVERFORD AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_209.02_18,-74.603914,39.482421,28 N HAVERFORD AVE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_209.02_19,-74.5873385,39.4949615,26 N HAVERFORD AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_209.02_2,-74.61937395,39.43319679,27 N HUNTINGTON AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_209.02_20,-74.59533963,39.49335038,24 N HAVERFORD AVE,MARGATE CITY CITY,17,1920,1,COM1,3004 -0116_209.02_22,-74.73904679,39.45687154,20 N HAVERFORD AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_209.02_23,-74.73022378,39.45568312,18 N HAVERFORD AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_209.02_24.01,-74.732512,39.4536415,14 N HAVERFORD AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_209.02_24.02,-74.73714423,39.46685641,16 N HAVERFORD AVE,MARGATE CITY CITY,19,1989,1,RES1,3002 -0116_209.02_26,-74.752379,39.4495715,12 N HAVERFORD AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_209.02_28,-74.7520985,39.4493525,8 N HAVERFORD AVE,MARGATE CITY CITY,19,1973,1,RES1,3001 -0116_209.02_3,-74.62145683,39.43272793,25 N HUNTINGTON AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_209.02_30,-74.7577895,39.449047,4 N HAVERFORD AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_209.02_31,-74.75514993,39.44657114,8111 VENTNOR AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_209.02_32,-74.754805,39.44654,8109 VENTNOR AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_209.02_33,-74.75901521,39.44639847,2 N HAVERFORD AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_209.02_4,-74.62999238,39.43260997,23 N HUNTINGTON AVE,MARGATE CITY CITY,19,1920,1,RES1,3001 -0116_209.02_6,-74.62322657,39.43224381,19 N HUNTINGTON AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_209.02_7,-74.62943292,39.42901319,17 N HUNTINGTON AVE,MARGATE CITY CITY,17,1941,1,RES1,3001 -0116_209.02_8,-74.63641256,39.43455859,15 N HUNTINGTON AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_209.02_9,-74.6352665,39.4340765,13 N HUNTINGTON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_21_1,-74.48451027,39.34160735,8906 ATLANTIC AVE,MARGATE CITY CITY,19,1954,1,RES1,3001 -0116_21_12,-74.478751,39.3386875,104 S THURLOW AVE,MARGATE CITY CITY,20,1989,1,RES1,3001 -0116_21_13,-74.48488421,39.33853598,108 S THURLOW AVE,MARGATE CITY CITY,19,1950,1,RES1,3002 -0116_21_14,-74.484078,39.3375565,110 S THURLOW AVE,MARGATE CITY CITY,21,1992,1,RES1,3001 -0116_21_2,-74.47682286,39.34107575,103 S UNION AVE,MARGATE CITY CITY,19,1955,1,RES1,3001 -0116_21_3,-74.4827408,39.34033702,105 S UNION AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_21_5,-74.4850205,39.3400695,109 S UNION AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_21_6,-74.4850315,39.3395975,111 S UNION AVE,MARGATE CITY CITY,20,1948,1,RES1,3004 -0116_210.01_1,-74.756136,39.445498,31 N HANOVER AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_210.01_11,-74.61758888,39.31174041,11 N HANOVER AVE,MARGATE CITY CITY,18,1930,1,RES1,3004 -0116_210.01_12,-74.58617275,39.32490934,9 N HANOVER AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_210.01_13,-74.585246,39.32415,7 N HANOVER AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_210.01_14,-74.58668912,39.32518023,5 N HANOVER AVE,MARGATE CITY CITY,17,1930,1,RES1,3004 -0116_210.01_16,-74.588987,39.323096,8200 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_210.01_17,-74.58770318,39.32245736,30 N HUNTINGTON AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_210.01_18,-74.5899785,39.322425,28 N HUNTINGTON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_210.01_19,-74.591383,39.3200505,26 N HUNTINGTON AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_210.01_2,-74.785837,39.4432145,29 N HANOVER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_210.01_20,-74.5825715,39.3329915,24 N HUNTINGTON AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_210.01_21,-74.584382,39.3305965,22 N HUNTINGTON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_210.01_22,-74.58398368,39.33041051,20 N HUNTINGTON AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_210.01_23,-74.58301051,39.32894435,18 N HUNTINGTON AVE,MARGATE CITY CITY,18,1925,1,GOV1,3004 -0116_210.01_24,-74.5860115,39.3285135,16 N HUNTINGTON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_210.01_25,-74.58882981,39.33298298,14 N HUNTINGTON AVE,MARGATE CITY CITY,19,2012,1,RES1,3001 -0116_210.01_26,-74.59080826,39.33065712,12 N HUNTINGTON AVE,MARGATE CITY CITY,17,1933,1,RES1,3001 -0116_210.01_27,-74.5884405,39.3297875,10 N HUNTINGTON AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_210.01_28,-74.605384,39.324745,8 N HUNTINGTON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_210.01_3,-74.75445067,39.45420509,27 N HANOVER AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_210.01_30,-74.60578516,39.32130604,4 N HUNTINGTON AVE,MARGATE CITY CITY,17,1925,1,AGR1,3001 -0116_210.01_31,-74.60683074,39.31993762,1 N HANOVER AVE,MARGATE CITY CITY,18,1950,1,AGR1,3001 -0116_210.01_33,-74.60284008,39.31811131,8201 VENTNOR AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_210.01_4,-74.59859768,39.31521704,25 N HANOVER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_210.01_5,-74.6042645,39.3147475,23 N HANOVER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_210.01_6,-74.60815304,39.31064785,21 N HANOVER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_210.01_7,-74.60202327,39.31064957,19 N HANOVER AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_210.01_8,-74.6150835,39.3161995,17 N HANOVER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_210.01_9.01,-74.60967395,39.31504721,15 N HANOVER AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_210.02_11,-74.47356917,39.44707984,9 N IROQUOIS AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_210.02_12,-74.469816,39.4452815,7 N IROQUOIS AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_210.02_13,-74.47413808,39.44469378,5 N IROQUOIS AVE,MARGATE CITY CITY,21,2014,1,RES1,3002 -0116_210.02_14,-74.45789894,39.46660733,3 N IROQUOIS AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_210.02_16,-74.46837345,39.45936941,28 N HANOVER AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_210.02_17,-74.48365824,39.45622893,26 N HANOVER AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_210.02_18,-74.49795,39.4419315,24 N HANOVER AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_210.02_19,-74.49197211,39.44100584,22 N HANOVER AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_210.02_2,-74.60503683,39.31772638,27 N IROQUOIS AVE,MARGATE CITY CITY,17,1922,1,RES1,3001 -0116_210.02_20,-74.48747983,39.43839057,20 N HANOVER AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_210.02_21,-74.50527503,39.44305229,18 N HANOVER AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_210.02_22,-74.50843142,39.43667415,16 N HANOVER AVE,MARGATE CITY CITY,18,1935,1,RES1,3001 -0116_210.02_23,-74.49355611,39.44607618,14 N HANOVER AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_210.02_24,-74.48900078,39.44491748,12 N HANOVER AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_210.02_25,-74.50626889,39.44804601,10 N HANOVER AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_210.02_26,-74.508572,39.4477645,8 N HANOVER AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_210.02_27,-74.50496151,39.44617157,6 N HANOVER AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_210.02_28,-74.51865434,39.44267397,4 N HANOVER AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_210.02_29,-74.5124115,39.441278,8211 VENTNOR AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_210.02_3,-74.60302119,39.31766555,25 N IROQUOIS AVE,MARGATE CITY CITY,18,1925,1,GOV1,3004 -0116_210.02_30,-74.510767,39.438235,8209 VENTNOR AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_210.02_31,-74.51741616,39.45062283,8207 VENTNOR AVE,MARGATE CITY CITY,17,1945,1,GOV1,3004 -0116_210.02_4,-74.61047613,39.32527455,23 N IROQUOIS AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_210.02_5,-74.61242699,39.32525609,21 N IROQUOIS AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_210.02_6,-74.61158146,39.32089873,19 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_210.02_7,-74.6138165,39.3197845,17 N IROQUOIS AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_210.02_8,-74.6177585,39.318905,15 N IROQUOIS AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_210.02_9,-74.61354026,39.31853215,13 N IROQUOIS AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_211_1,-74.517028,39.446648,31 N JASPER AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_211_10,-74.50436922,39.45502036,11 N JASPER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_211_11,-74.4976675,39.4689535,9 N JASPER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_211_12,-74.5018405,39.468413,7 N JASPER AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_211_13,-74.50921701,39.46733983,5 N JASPER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_211_14,-74.49979269,39.46648398,3 N JASPER AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_211_15,-74.50219996,39.46424551,30 N IROQUOIS AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_211_17,-74.50519587,39.46273877,26 N IROQUOIS AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_211_18,-74.78941582,39.46038648,24 N IROQUOIS AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_211_19,-74.837148,39.4450745,22 N IROQUOIS AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_211_20,-74.7960755,39.46506,20 N IROQUOIS AVE,MARGATE CITY CITY,18,1961,1,RES1,3001 -0116_211_21,-74.8808815,39.443878,18 N IROQUOIS AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_211_22,-74.838218,39.473387,16 N IROQUOIS AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_211_23,-74.826806,39.4825235,14 N IROQUOIS AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_211_24,-74.8526485,39.4727315,12 N IROQUOIS AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_211_25,-74.851024,39.4836085,10 N IROQUOIS AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_211_26,-74.88174867,39.4743065,8 N IROQUOIS AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_211_27,-74.87044468,39.48849807,6 N IROQUOIS AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_211_28,-74.53885497,39.51438968,4 N IROQUOIS AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_211_29,-74.55006579,39.51963002,8305 VENTNOR AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_211_3,-74.52916338,39.45064916,25 N JASPER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_211_30,-74.53290625,39.52427901,8303 VENTNOR AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_211_31,-74.56370289,39.52427297,8301 VENTNOR AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_211_4,-74.52229804,39.44778366,23 N JASPER AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_211_6,-74.5258235,39.447681,19 N JASPER AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_211_7,-74.53043954,39.446777,17 N JASPER AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_211_8,-74.52786062,39.44497377,15 N JASPER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_211_9,-74.50129045,39.4590723,13 N JASPER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_212.01_1,-74.568778,39.5267265,30 N JASPER AVE,MARGATE CITY CITY,17,1940,1,GOV1,3004 -0116_212.01_10,-74.59691425,39.54793129,10 N JASPER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_212.01_11,-74.60326266,39.54710448,8 N JASPER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_212.01_12,-74.633354,39.5043435,6 N JASPER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_212.01_15,-74.6407625,39.5189985,8401 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_212.01_18,-74.651864,39.511346,8411 VENTNOR AVE,MARGATE CITY CITY,,1930,1,RES1,3001 -0116_212.01_2,-74.56155654,39.53391334,28 N JASPER AVE,MARGATE CITY CITY,17,1935,1,AGR1,3004 -0116_212.01_28,-74.6614547,39.51735071,3 N JEROME AVE,MARGATE CITY CITY,15,1930,3,COM4,3004 -0116_212.01_3,-74.60036775,39.52879577,26 N JASPER AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_212.01_36,-74.6539627,39.51434819,5 N JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_212.01_37,-74.64108734,39.52799999,7 N JEROME AVE,MARGATE CITY CITY,17,1943,1,RES1,3001 -0116_212.01_39,-74.63610556,39.52739415,9 N JEROME AVE,MARGATE CITY CITY,17,1943,1,RES1,3001 -0116_212.01_4.01,-74.6046065,39.52552433,22 N JASPER AVE,MARGATE CITY CITY,18,1985,1,RES1,3001 -0116_212.01_40,-74.63767366,39.52694652,11 N JEROME AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_212.01_43,-74.63549991,39.52541365,23 N JEROME AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_212.01_45,-74.637793,39.5251885,25 N JEROME AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_212.01_54,-74.6352895,39.5348075,29 N JEROME AVE,MARGATE CITY CITY,17,1943,1,GOV1,3004 -0116_212.01_55,-74.63562416,39.53216146,27 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_212.01_6,-74.61225245,39.52771834,18 N JASPER AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_212.01_7,-74.559275,39.5382965,16 N JASPER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_212.01_8,-74.5379768,39.55887743,14 N JASPER AVE,MARGATE CITY CITY,18,1987,1,GOV1,3004 -0116_212.01_9,-74.54398189,39.56568673,12 N JASPER AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_212.02_17,-74.6388105,39.531047,17 N KENYON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_212.02_19,-74.64531433,39.52927351,19 N KENYON AVE,MARGATE CITY CITY,17,1951,1,GOV1,3004 -0116_212.02_21,-74.65028149,39.52841633,21 N KENYON AVE,MARGATE CITY CITY,20,2006,1,GOV1,3004 -0116_212.02_48,-74.64342512,39.5277006,25 N KENYON AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_212.02_49,-74.641191,39.5266105,29 N KENYON AVE,MARGATE CITY CITY,18,1935,1,RES1,3001 -0116_212.02_50,-74.65132506,39.52353064,30 N JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_212.02_51,-74.6447075,39.5349665,28 N JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_213.01_1,-74.64561845,39.53245684,8506 WINCHESTER AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_213.01_10,-74.64584709,39.54905736,3 N MANSFIELD AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_213.01_11,-74.64931558,39.54719424,8515 VENTNOR AVE,MARGATE CITY CITY,19,2003,1,AGR1,3004 -0116_213.01_12,-74.662536,39.5479575,8504 WINCHESTER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_213.01_13,-74.6485625,39.5592645,22 N LANCASTER AVE,MARGATE CITY CITY,17,1940,1,RES3A,3001 -0116_213.01_14,-74.65718019,39.55676027,20 N LANCASTER AVE,MARGATE CITY CITY,17,1981,1,RES1,3001 -0116_213.01_15,-74.67168611,39.54205187,18 N LANCASTER AVE,MARGATE CITY CITY,17,1983,1,RES1,3001 -0116_213.01_16,-74.66466,39.540147,16 N LANCASTER AVE,MARGATE CITY CITY,19,1947,1,RES1,3001 -0116_213.01_17,-74.67354977,39.57107223,14 N LANCASTER AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_213.01_18,-74.68636145,39.55538234,12 N LANCASTER AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_213.01_2,-74.6528405,39.5355295,19 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_213.01_20,-74.60398219,39.59231559,8 N LANCASTER AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_213.01_21,-74.6630655,39.590433,6 N LANCASTER AVE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_213.01_23,-74.69615783,39.58850725,4 N LANCASTER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_213.01_24,-74.6992603,39.58797075,2 N LANCASTER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_213.01_4,-74.67464459,39.50936783,15 N MANSFIELD AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_213.01_5,-74.6932925,39.5124295,11 N MANSFIELD AVE,MARGATE CITY CITY,17,1951,1,GOV1,3004 -0116_213.01_7,-74.68791867,39.51122895,9 N MANSFIELD AVE,MARGATE CITY CITY,18,1930,1,GOV1,3004 -0116_213.01_8,-74.64546839,39.55138613,7 N MANSFIELD AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_213.01_9,-74.64559385,39.55108496,5 N MANSFIELD AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_213.02_1,-74.636497,39.609331,8502 WINCHESTER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_213.02_10,-74.6802705,39.6081615,7 N LANCASTER AVE,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_213.02_12,-74.66864064,39.6208211,3 N LANCASTER AVE,MARGATE CITY CITY,19,1936,1,RES1,3001 -0116_213.02_13,-74.7854695,39.504864,28 N KENYON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_213.02_14,-74.790941,39.528548,26 N KENYON AVE,MARGATE CITY CITY,19,1936,1,RES1,3001 -0116_213.02_15,-74.807101,39.5263015,22 N KENYON AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_213.02_16,-74.797378,39.5374805,20 N KENYON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_213.02_17,-74.81408637,39.53200681,18 N KENYON AVE,MARGATE CITY CITY,17,1948,1,GOV1,3004 -0116_213.02_18,-74.840652,39.5292205,16 N KENYON AVE,MARGATE CITY CITY,17,1948,1,GOV1,3004 -0116_213.02_2,-74.61935433,39.62008478,23 N LANCASTER AVE,MARGATE CITY CITY,18,1957,1,RES1,3001 -0116_213.02_20,-74.8456345,39.537848,14 N KENYON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_213.02_21,-74.8532612,39.53734542,12 N KENYON AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_213.02_22,-74.80618329,39.5481056,10 N KENYON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_213.02_23,-74.87634166,39.54095417,8A N KENYON AVE,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_213.02_3,-74.638111,39.6215755,21 N LANCASTER AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_213.02_4,-74.62076611,39.62387731,19 N LANCASTER AVE,MARGATE CITY CITY,19,1948,1,RES1,3001 -0116_213.02_5,-74.63546958,39.6256861,17 N LANCASTER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_213.02_6,-74.64079282,39.62272448,15 N LANCASTER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_213.02_7,-74.6579221,39.63072887,13 N LANCASTER AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_213.02_8,-74.66058928,39.63910361,11 N LANCASTER AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_213.02_9,-74.66301575,39.63443392,9 N LANCASTER AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_214_1,-74.7181195,39.5790175,8604 WINCHESTER AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_214_10,-74.79180803,39.60352066,8603 VENTNOR AVE,MARGATE CITY CITY,18,1959,1,RES1,3001 -0116_214_12,-74.73994869,39.6376349,18 N MANSFIELD AVE,MARGATE CITY CITY,17,1936,1,RES1,3001 -0116_214_13,-74.77120862,39.61402812,16 N MANSFIELD AVE,MARGATE CITY CITY,17,1930,1,GOV1,3004 -0116_214_14,-74.7634735,39.610342,14 N MANSFIELD AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_214_15,-74.77812869,39.60667156,12 N MANSFIELD AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_214_18.01,-74.77887593,39.62237939,10 N MANSFIELD AVE,MARGATE CITY CITY,23,2015,1,GOV1,3004 -0116_214_18.02,-74.75919381,39.63412849,6 N MANSFIELD AVE,MARGATE CITY CITY,19,1929,1,RES1,3001 -0116_214_19,-74.7638125,39.6371475,2 N MANSFIELD AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_214_2,-74.73075867,39.58819934,19 N NASSAU AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_214_20,-74.79074,39.630916,8601 VENTNOR AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_214_3,-74.72633114,39.59085645,17 N NASSAU AVE,MARGATE CITY CITY,19,1956,1,RES1,3001 -0116_214_4,-74.72528709,39.58940186,15 N NASSAU AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_214_5,-74.750879,39.602416,11 N NASSAU AVE,MARGATE CITY CITY,20,1997,1,RES1,3001 -0116_214_7,-74.7790505,39.6028245,7 N NASSAU AVE,MARGATE CITY CITY,18,1948,1,GOV1,3004 -0116_214_8,-74.7760995,39.599267,5 N NASSAU AVE,MARGATE CITY CITY,17,1924,1,RES1,3001 -0116_214_9,-74.7781405,39.598475,3 N NASSAU AVE,MARGATE CITY CITY,18,1946,1,RES1,3001 -0116_215_1,-74.77350075,39.63373202,17 N OSBORNE AVE,MARGATE CITY CITY,17,1942,1,GOV1,3004 -0116_215_10,-74.83362945,39.59298783,1 N OSBORNE AVE,MARGATE CITY CITY,19,1925,1,GOV1,3004 -0116_215_11,-74.87057599,39.57735184,8606 WINCHESTER AVE,MARGATE CITY CITY,17,1928,1,RES1,3001 -0116_215_12,-74.87493456,39.57352605,20 N NASSAU AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_215_13,-74.839156,39.594747,16 N NASSAU AVE,MARGATE CITY CITY,17,1969,1,GOV1,3004 -0116_215_14,-74.86802952,39.59218283,14 N NASSAU AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_215_15,-74.88075,39.5945055,12 N NASSAU AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_215_16,-74.8802175,39.593531,10 N NASSAU AVE,MARGATE CITY CITY,18,1942,1,RES1,3001 -0116_215_17,-74.87837164,39.59273507,8 N NASSAU AVE,MARGATE CITY CITY,20,1998,1,RES1,3001 -0116_215_18,-74.88000807,39.59048264,6 N NASSAU AVE,MARGATE CITY CITY,17,1935,1,GOV1,3004 -0116_215_19,-74.87080176,39.60403155,4 N NASSAU AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_215_3,-74.77823271,39.63286016,15 N OSBORNE AVE,MARGATE CITY CITY,18,1939,1,GOV1,3004 -0116_215_5,-74.78820095,39.63937066,11 N OSBORNE AVE,MARGATE CITY CITY,18,1915,2,GOV1,3004 -0116_215_6,-74.78924434,39.6373145,9 N OSBORNE AVE,MARGATE CITY CITY,22,2016,1,GOV1,3004 -0116_215_7,-74.784879,39.6348935,7 N OSBORNE AVE,MARGATE CITY CITY,17,1925,2,RES1,3001 -0116_215_8,-74.790829,39.632076,5 N OSBORNE AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_215_9,-74.7961685,39.5988875,3 N OSBORNE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_216_1,-74.87659241,39.59903944,8702 WINCHESTER AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_216_10,-74.81253867,39.63053651,8703 VENTNOR AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_216_11,-74.8091545,39.6297625,18 N OSBORNE AVE,MARGATE CITY CITY,22,2016,1,RES1,3001 -0116_216_13,-74.79840178,39.6349853,16 N OSBORNE AVE,MARGATE CITY CITY,19,1950,1,GOV1,3004 -0116_216_14,-74.7998015,39.632974,12 N OSBORNE AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_216_15,-74.79522732,39.63273295,10 N OSBORNE AVE,MARGATE CITY CITY,19,1948,1,RES1,3001 -0116_216_16,-74.8013575,39.63201,8 N OSBORNE AVE,MARGATE CITY CITY,17,1949,1,GOV1,3004 -0116_216_17,-74.80739666,39.63785619,6 N OSBORNE AVE,MARGATE CITY CITY,18,1983,1,RES1,3001 -0116_216_18,-74.80883998,39.63617384,4 N OSBORNE AVE,MARGATE CITY CITY,19,1991,1,RES1,3001 -0116_216_19,-74.8165745,39.6345925,2 N OSBORNE AVE,MARGATE CITY CITY,17,1943,1,RES1,3001 -0116_216_2,-74.8821555,39.5987555,15 N PEMBROKE AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_216_20,-74.80975235,39.63439454,8701 VENTNOR AVE,MARGATE CITY CITY,22,2018,1,RES1,3001 -0116_216_3,-74.882154,39.5985145,11 N PEMBROKE AVE,MARGATE CITY CITY,17,1959,1,GOV1,3004 -0116_216_5,-74.88105343,39.5972788,9 N PEMBROKE AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_216_6,-74.8071075,39.6157985,7 N PEMBROKE AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_216_7,-74.83236762,39.62136037,5 N PEMBROKE AVE,MARGATE CITY CITY,18,1930,1,GOV1,3004 -0116_216_8,-74.80510155,39.6270878,3 N PEMBROKE AVE,MARGATE CITY CITY,18,1930,1,GOV1,3004 -0116_216_9,-74.80258494,39.62325367,1 N PEMBROKE AVE,MARGATE CITY CITY,17,1936,1,RES1,3001 -0116_217_1,-74.81638434,39.63395098,17 N QUINCY AVE,MARGATE CITY CITY,18,1942,1,RES1,3001 -0116_217_10,-74.8616455,39.6199105,8704 WINCHESTER AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_217_11,-74.8899055,39.467393,14 N PEMBROKE AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_217_12,-74.89287336,39.47650426,12 N PEMBROKE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_217_13,-74.915655,39.4727035,10 N PEMBROKE AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_217_15,-74.9098425,39.4870665,6 N PEMBROKE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_217_16,-74.908302,39.4798445,4 N PEMBROKE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_217_17,-74.90586577,39.47952527,2 N PEMBROKE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_217_18,-74.88990339,39.49996468,8705 VENTNOR AVE,MARGATE CITY CITY,20,1930,1,RES1,3001 -0116_217_2,-74.80712295,39.63304315,15 N QUINCY AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_217_3,-74.81347545,39.63245616,13 N QUINCY AVE,MARGATE CITY CITY,17,1910,1,GOV1,3004 -0116_217_4,-74.80635483,39.6320665,11 N QUINCY AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_217_5,-74.812148,39.6317795,9 N QUINCY AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_217_6,-74.83708526,39.62660775,7 N QUINCY AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_217_7,-74.8337429,39.62492864,5 N QUINCY AVE,MARGATE CITY CITY,17,1932,1,RES1,3001 -0116_217_8,-74.81980664,39.63187805,3 N QUINCY AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_217_9,-74.8557265,39.6103575,8707 VENTNOR AVE,MARGATE CITY CITY,20,1925,1,RES1,3001 -0116_218_1,-74.9078578,39.49506457,15 N RUMSON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_218_10,-74.892458,39.528461,18 N QUINCY AVE,MARGATE CITY CITY,22,2017,1,RES1,3001 -0116_218_11,-74.90399036,39.53528131,16 N QUINCY AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_218_12,-74.92285475,39.52241666,14 N QUINCY AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_218_13,-74.9051585,39.5347,12 N QUINCY AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_218_14,-74.93787209,39.5121392,10 N QUINCY AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_218_15,-74.9303475,39.516103,8 N QUINCY AVE,MARGATE CITY CITY,19,1992,1,GOV1,3004 -0116_218_16,-74.9391025,39.5207245,6 N QUINCY AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_218_17,-74.948056,39.519429,4 N QUINCY AVE,MARGATE CITY CITY,18,1938,1,GOV1,3004 -0116_218_18,-74.9398,39.5166255,8801 VENTNOR AVE,MARGATE CITY CITY,20,1940,1,RES1,3001 -0116_218_2,-74.91167927,39.48844472,15A N RUMSON AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_218_3,-74.91555959,39.50305858,13 N RUMSON AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_218_4,-74.939922,39.4972655,11 N RUMSON AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_218_5,-74.8974766,39.50857999,9 N RUMSON AVE,MARGATE CITY CITY,18,1940,1,GOV1,3004 -0116_218_6,-74.9124685,39.510822,7 N RUMSON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_218_7,-74.9238885,39.5067665,5 N RUMSON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_218_8,-74.92457462,39.50575682,3 N RUMSON AVE,MARGATE CITY CITY,17,1941,1,RES1,3001 -0116_218_9,-74.924686,39.5048905,1 N RUMSON AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_219_1,-74.9514815,39.519305,8806 WINCHESTER AVE,MARGATE CITY CITY,19,1945,1,RES1,3001 -0116_219_10,-74.948993,39.5272945,14 N RUMSON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_219_12,-74.96272821,39.52579456,12 N RUMSON AVE,MARGATE CITY CITY,17,1945,1,GOV1,3004 -0116_219_13,-74.96668984,39.52130546,10 N RUMSON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_219_14,-74.94373466,39.54425951,8 N RUMSON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_219_15,-74.98172174,39.5135164,6 N RUMSON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_219_17,-74.884619,39.595791,2 N RUMSON AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_219_18,-74.884067,39.59536304,8805 VENTNOR AVE,MARGATE CITY CITY,21,2008,1,RES1,3001 -0116_219_2,-74.95054442,39.51927106,15 N SUMNER AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_219_3,-74.96893191,39.51883392,13 N SUMNER AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_219_4,-74.9359945,39.5287175,11 N SUMNER AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_219_5,-74.93761353,39.5279157,9 N SUMNER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_219_6,-74.94715275,39.52794393,7 N SUMNER AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_219_7,-74.942515,39.524107,5 N SUMNER AVE,MARGATE CITY CITY,17,1931,1,RES1,3001 -0116_219_8,-74.9486245,39.5311325,3 N SUMNER AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_219_9,-74.94930266,39.52741591,8807 VENTNOR AVE,MARGATE CITY CITY,21,1971,1,RES1,3001 -0116_22_1,-74.4791635,39.3367895,9006 ATLANTIC AVE,MARGATE CITY CITY,19,1921,1,RES1,3001 -0116_22_10,-74.48669067,39.33533966,9000 ATLANTIC AVE,MARGATE CITY CITY,19,1940,1,GOV1,3004 -0116_22_11,-74.49842669,39.33258098,102 S UNION AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_22_13,-74.46602,39.34740257,106 S UNION AVE,MARGATE CITY CITY,21,1996,1,RES1,3001 -0116_22_14,-74.46638167,39.34449499,110 S UNION AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_22_2,-74.48661314,39.33666267,101 S VENDOME AVE,MARGATE CITY CITY,20,1990,1,RES1,3001 -0116_22_3,-74.48063558,39.33648016,103 S VENDOME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_22_4,-74.48542772,39.33646029,105 S VENDOME AVE,MARGATE CITY CITY,21,2000,1,RES1,3001 -0116_22_5,-74.48101361,39.33637162,107 S VENDOME AVE,MARGATE CITY CITY,21,1988,1,RES1,3001 -0116_22_6,-74.4853855,39.33606,109 S VENDOME AVE,MARGATE CITY CITY,19,1950,1,GOV1,3004 -0116_220_1,-74.717064,39.639873,15 N THURLOW AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_220_11,-74.79292381,39.64975517,12 N SUMNER AVE,MARGATE CITY CITY,18,1955,1,GOV1,3004 -0116_220_12,-74.77114394,39.67176483,10 N SUMNER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_220_13,-74.7764804,39.6654782,8 N SUMNER AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_220_15,-74.79165832,39.66660933,2 N SUMNER AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_220_16,-74.79235557,39.66584834,8901 VENTNOR AVE,MARGATE CITY CITY,20,1958,1,GOV1,3004 -0116_220_3,-74.765574,39.6454015,11 N THURLOW AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_220_4,-74.79484585,39.64269231,9 N THURLOW AVE,MARGATE CITY CITY,17,1941,1,GOV1,3004 -0116_220_5,-74.79350308,39.64184699,7 N THURLOW AVE,MARGATE CITY CITY,21,2010,1,GOV1,3004 -0116_220_8,-74.7913925,39.641467,1 N THURLOW AVE,MARGATE CITY CITY,22,2018,1,RES1,3001 -0116_221_10,-74.79496634,39.64116696,12 N THURLOW AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_221_11,-74.81543481,39.64605213,10 N THURLOW AVE,MARGATE CITY CITY,21,1935,1,RES1,3001 -0116_221_12,-74.809027,39.640743,8 N THURLOW AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_221_15,-74.80219144,39.65525685,2 N THURLOW AVE,MARGATE CITY CITY,22,2018,1,RES1,3001 -0116_221_16,-74.80364024,39.65050707,8905 VENTNOR AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_221_2,-74.78648376,39.67747463,13 N UNION AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_221_3,-74.79723459,39.64510954,11 N UNION AVE,MARGATE CITY CITY,20,2009,1,RES1,3001 -0116_221_4,-74.79939715,39.64418635,9 N UNION AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_221_5,-74.80213435,39.6423596,7 N UNION AVE,MARGATE CITY CITY,19,1994,1,RES1,3001 -0116_221_6,-74.7999525,39.642164,5 N UNION AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_221_7,-74.803464,39.642002,3 N UNION AVE,MARGATE CITY CITY,19,1953,1,RES1,3001 -0116_221_8,-74.801521,39.641995,1 N UNION AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_221_9,-74.80034468,39.64180733,14 N THURLOW AVE,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_222_1,-74.79920566,39.64936404,15 N VENDOME AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_222_10,-74.41757382,39.36589148,14 N UNION AVE,MARGATE CITY CITY,20,2009,1,IND2,3002 -0116_222_12,-74.44132983,39.35359632,10 N UNION AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_222_13,-74.4217951,39.36759668,8 N UNION AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_222_15,-74.4255279,39.36586398,2 N UNION AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_222_16,-74.43932806,39.36811727,9001 VENTNOR AVE,MARGATE CITY CITY,19,1905,1,RES1,3001 -0116_222_3,-74.81893469,39.64334521,9 N VENDOME AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_222_4,-74.82712844,39.64074265,11 N VENDOME AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_222_6,-74.833285,39.6441395,3 N VENDOME AVE,MARGATE CITY CITY,19,1951,1,RES1,3001 -0116_222_8,-74.81841,39.6559665,9003 VENTNOR AVE,MARGATE CITY CITY,19,1965,1,RES1,3001 -0116_222_9,-74.73616922,39.71961908,9000 WINCHESTER AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_223_1,-74.43366659,39.36777942,15 N WILSON AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_223_10,-74.52227899,39.31423616,14 N VENDOME AVE,MARGATE CITY CITY,17,1942,1,GOV1,3004 -0116_223_11,-74.524968,39.313397,12 N VENDOME AVE,MARGATE CITY CITY,17,1942,1,AGR1,3001 -0116_223_12,-74.52723985,39.31121602,10 N VENDOME AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_223_13,-74.5031535,39.324934,6 N VENDOME AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_223_14,-74.5074515,39.3244035,2 N VENDOME AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_223_15,-74.49651233,39.33293453,9005 VENTNOR AVE,MARGATE CITY CITY,22,2017,1,RES1,3001 -0116_223_2,-74.44147117,39.36571018,9 N WILSON AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_223_3,-74.4341746,39.36444983,7 N WILSON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_223_5,-74.52536756,39.31711416,5 N WILSON AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_223_6,-74.525067,39.3170855,3 N WILSON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_223_8.01,-74.5217955,39.316147,1 N WILSON AVE,MARGATE CITY CITY,18,1985,1,RES1,3001 -0116_223_8.02,-74.52313216,39.31588832,9007 VENTNOR AVE,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_223_9,-74.521632,39.314859,9002 WINCHESTER AVE,MARGATE CITY CITY,19,1951,1,RES1,3001 -0116_224.01_1,-74.4919165,39.332778,16 N HARDING AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_224.01_2,-74.48905173,39.33243743,14 N HARDING AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_224.01_3,-74.4955505,39.3323315,12 N HARDING AVE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_224.01_4,-74.498288,39.3316415,10 N HARDING AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_224.01_5,-74.49022843,39.33153382,8 N HARDING AVE,MARGATE CITY CITY,18,1956,1,RES1,3001 -0116_224.01_7.01,-74.49669885,39.32992098,4 N HARDING AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_224.01_7.02,-74.50387794,39.33327733,2 N HARDING AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_224.01_71,-74.502235,39.333132,5 N BENSON AVE,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_224.01_73,-74.5035745,39.332944,7 N BENSON AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_224.01_75,-74.50041734,39.33286036,9 N BENSON AVE,MARGATE CITY CITY,47,1920,2,RES1,3001 -0116_224.01_77,-74.50390916,39.33243952,11 N BENSON AVE,MARGATE CITY CITY,17,1978,1,RES1,3001 -0116_224.01_8.01,-74.8017695,39.638549,2A N HARDING AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_224.01_8.02,-74.79637446,39.63802954,9101 VENTNOR AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_224.01_8.03,-74.79575338,39.63304823,1 N BENSON AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_224.01_8.04,-74.79724414,39.63259637,3 N BENSON AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_224.01_85,-74.50643446,39.33230598,17 N BENSON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_224.01_89,-74.50051615,39.33134565,21 N BENSON AVE,MARGATE CITY CITY,21,1957,1,RES1,3001 -0116_224.01_91,-74.50705191,39.33124381,9108 WINCHESTER AVE,MARGATE CITY CITY,19,1951,1,RES1,3001 -0116_224.01_93,-74.50503055,39.33104347,25 N BENSON AVE,MARGATE CITY CITY,17,1952,1,GOV1,3004 -0116_224.02_1,-74.5048395,39.330853,9100 WINCHESTER AVE,MARGATE CITY CITY,17,1940,1,GOV1,3004 -0116_224.02_11,-74.5110095,39.3252485,9 N HARDING AVE,MARGATE CITY CITY,17,1958,1,GOV1,3004 -0116_224.02_12,-74.5166874,39.32290511,6 N WILSON AVE,MARGATE CITY CITY,18,1958,1,RES1,3001 -0116_224.02_13.01,-74.5155555,39.3229045,7 N HARDING AVE,MARGATE CITY CITY,17,1957,1,GOV1,3004 -0116_224.02_13.02,-74.52024483,39.32229102,5 N HARDING AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_224.02_14,-74.514882,39.322252,4 N WILSON AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_224.02_15,-74.51952571,39.32077328,3 N HARDING AVE,MARGATE CITY CITY,18,1957,1,RES1,3001 -0116_224.02_16,-74.5177595,39.319211,2 N WILSON AVE,MARGATE CITY CITY,21,2010,1,RES1,3001 -0116_224.02_17,-74.51947808,39.31834605,9011 VENTNOR AVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_224.02_18,-74.52281456,39.32236766,9009 VENTNOR AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_224.02_2,-74.5015635,39.3296925,9102 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_224.02_3,-74.50114416,39.328406,9104 WINCHESTER AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_224.02_4,-74.499135,39.327768,9105 JEFFERSON CT,MARGATE CITY CITY,17,1940,1,GOV1,3004 -0116_224.02_5,-74.5065455,39.327776,9103 JEFFERSON CT,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_224.02_6,-74.5024995,39.327399,9101 JEFFERSON CT,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_224.02_7,-74.503517,39.3271715,9100 JEFFERSON CT,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_224.02_8,-74.5010909,39.32597826,9102 JEFFERSON CT,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_225_68,-74.520985,39.3208065,9201 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_225_71,-74.5211095,39.317593,8 N BENSON AVE,MARGATE CITY CITY,18,1942,1,RES1,3001 -0116_225_76,-74.51027783,39.333309,12 N BENSON AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_225_82,-74.51167613,39.33026511,13 N DECATUR AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_225_84,-74.512734,39.3303665,16 N BENSON AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_225_86,-74.51205216,39.33025106,15 N DECATUR AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_225_88,-74.5146605,39.3294055,18 N BENSON AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_225_92.01,-74.50482842,39.32658226,28 N BENSON AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_225_92.02,-74.504886,39.3260615,30 N BENSON AVE,MARGATE CITY CITY,19,2006,1,RES1,3001 -0116_225_94,-74.5150905,39.3279615,29 N DECATUR AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_226_1,-74.5095525,39.3276265,9205-1/2 VENTNOR AVE,MARGATE CITY CITY,,1954,1,RES1,3001 -0116_226_13,-74.461402,39.3493765,23 N WASHINGTON AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_226_14_C0002,-74.46331791,39.34874485,25 N WASHINGTON AVE,MARGATE CITY CITY,21,2006,1,REL1,3003 -0116_226_16,-74.464386,39.348254,9214 WINCHESTER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_226_22,-74.4642185,39.3480845,28 N DECATUR AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_226_23,-74.460999,39.347252,24 N DECATUR AVE,MARGATE CITY CITY,27,1950,2,RES1,3001 -0116_226_24,-74.46156225,39.34664685,22 N DECATUR AVE,MARGATE CITY CITY,27,1950,1,RES1,3001 -0116_226_27,-74.460687,39.346202,16 N DECATUR AVE,MARGATE CITY CITY,49,2014,2,RES1,3001 -0116_226_3,-74.51491633,39.3269045,9207-9215 VENTNOR AVE,MARGATE CITY CITY,,1956,1,RES1,3001 -0116_226_30,-74.46338657,39.34452721,4 N DECATUR AVE,MARGATE CITY CITY,47,1965,2,RES1,3001 -0116_226_6,-74.451976,39.349668,5 N WASHINGTON AVE,MARGATE CITY CITY,,1930,1,GOV1,3004 -0116_226_7.01,-74.45115517,39.349693,7 N WASHINGTON AVE,MARGATE CITY CITY,,1930,1,RES1,3001 -0116_226_8.01,-74.462589,39.3506645,9 N WASHINGTON AVE,MARGATE CITY CITY,,1930,1,RES1,3001 -0116_226_8.02,-74.45890089,39.35062319,11 N WASHINGTON AVE,MARGATE CITY CITY,,1930,1,RES1,3001 -0116_226_83,-74.48003706,39.34249219,9223-9219 VENTNOR AVE,MARGATE CITY CITY,,1925,1,RES1,3001 -0116_227_100,-74.52243,39.45971,9305 VENTNOR AVE,MARGATE CITY CITY,,1920,1,RES1,3001 -0116_227_104,-74.51215666,39.46572349,9301-03 VENTNOR AVE,MARGATE CITY CITY,,1986,1,RES1,3001 -0116_227_301,-74.52603336,39.46707865,5 N ADAMS AVE,MARGATE CITY CITY,17,1928,1,RES1,3001 -0116_227_307_C0003,-74.52552745,39.46311907,9 N ADAMS AVE,MARGATE CITY CITY,20,2000,1,RES1,3001 -0116_227_316,-74.4520535,39.4753535,18 N WASHINGTON AVE,MARGATE CITY CITY,47,1956,2,RES1,3001 -0116_227_85.01,-74.48147528,39.34143156,21 N ADAMS AVE,MARGATE CITY CITY,20,2004,1,GOV1,3004 -0116_227_85.02,-74.483057,39.3412625,23 N ADAMS AVE,MARGATE CITY CITY,20,2004,1,GOV1,3004 -0116_227_85.03,-74.47847218,39.33774798,25 N ADAMS AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_227_86,-74.4813835,39.3364995,9319 VENTNOR AVE,MARGATE CITY CITY,,1881,1,RES1,3001 -0116_227_89,-74.46619842,39.34660568,9316 WINCHESTER AVE,MARGATE CITY CITY,16,1930,1,RES1,3001 -0116_227_90,-74.46808088,39.34380883,9315 VENTNOR AVE,MARGATE CITY CITY,47,2014,1,RES1,3001 -0116_227_92,-74.48570595,39.35010133,9313 VENTNOR AVE,MARGATE CITY CITY,,1920,1,RES1,3001 -0116_227_93,-74.48257667,39.34958294,9310 WINCHESTER AVE,MARGATE CITY CITY,49,2005,2,RES1,3001 -0116_227_94,-74.48065475,39.34937103,9309-11 VENTNOR AVE,MARGATE CITY CITY,,1979,1,RES1,3001 -0116_227_95.01,-74.4841395,39.349369,28A N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_227_95.02,-74.48137132,39.34703055,26A N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_227_95.03,-74.4828975,39.3459495,24A N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_227_95.04,-74.47755301,39.34593734,22A N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_227_95.05,-74.4488015,39.354891,20A N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,GOV1,3004 -0116_227_95.06,-74.44698499,39.35477116,28B N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_227_95.07,-74.45379305,39.35319007,26B N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_227_95.08,-74.4625825,39.3554495,24B N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_227_95.09,-74.46156091,39.35397315,22B N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,COM1,3004 -0116_227_95.10,-74.45872183,39.35399205,20B N WASHINGTON AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_227_98,-74.51455215,39.45464704,9307 VENTNOR AVE,MARGATE CITY CITY,,1947,1,RES1,3001 -0116_228_302_C0006,-74.46398133,39.502442,6 N ADAMS AVE,MARGATE CITY CITY,20,1927,1,RES1,3001 -0116_228_303,-74.463688,39.4972285,7 N JEFFERSON AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_228_304_C0001,-74.4645735,39.49582317,10 N ADAMS AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_228_305,-74.4708885,39.4938815,9 N JEFFERSON AVE,MARGATE CITY CITY,47,1925,2,RES1,3001 -0116_228_307,-74.46837718,39.49207722,11 N JEFFERSON AVE,MARGATE CITY CITY,18,1954,2,RES1,3001 -0116_228_308,-74.46957585,39.49194204,12 N ADAMS AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_228_310,-74.46934605,39.49147584,14 N ADAMS AVE,MARGATE CITY CITY,49,1930,4,RES1,3001 -0116_228_312.02,-74.46795524,39.49127511,18 N ADAMS AVE,MARGATE CITY CITY,47,2004,2,GOV1,3004 -0116_228_313,-74.472099,39.488262,13 N JEFFERSON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_228_320_C000C,-74.47111917,39.48760723,24 N ADAMS AVE.,MARGATE CITY CITY,18,1918,1,IND2,3002 -0116_228_321_C000C,-74.48549283,39.49534572,25 N JEFFERSON AVE,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_228_65.01,-74.455397,39.4797875,33 N JEFFERSON AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_228_65.02,-74.4595663,39.4842013,31 N JEFFERSON AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_228_65.03,-74.4754765,39.4865335,29 N JEFFERSON AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_228_70,-74.47516543,39.4796,9415 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_228_71,-74.47771056,39.47885608,9412 WINCHESTER AVE,MARGATE CITY CITY,43,1921,5,RES1,3001 -0116_228_76,-74.45417258,39.48874301,9407 VENTNOR AVE,MARGATE CITY CITY,,1987,1,RES1,3001 -0116_228_80,-74.46398416,39.49446833,9403 VENTNOR AVE,MARGATE CITY CITY,,1968,1,RES1,3001 -0116_228_81.01,-74.45799155,39.4943445,26 N ADAMS AVE,MARGATE CITY CITY,39,2002,1,RES1,3001 -0116_228_81.02,-74.45924515,39.49144416,28 N ADAMS AVE,MARGATE CITY CITY,39,2002,1,RES1,3001 -0116_228_81.03,-74.452726,39.496056,30 N ADAMS AVE,MARGATE CITY CITY,39,2002,1,RES1,3001 -0116_228_84,-74.4522671,39.49594875,9401 VENTNOR AVE,MARGATE CITY CITY,,1988,1,RES1,3001 -0116_229_301_C005,-74.48877518,39.33881977,7 N MADISON AVE,MARGATE CITY CITY,21,1986,1,RES1,3001 -0116_229_307_C000B,-74.4952875,39.3370385,11 N MADISON AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_229_311,-74.49515235,39.33755847,15 N MADISON AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_229_312,-74.49160236,39.33671834,14 N JEFFERSON AVE,MARGATE CITY CITY,45,1922,2,RES1,3001 -0116_229_313,-74.49653833,39.3364585,17 N MADISON AVE,MARGATE CITY CITY,20,1925,1,RES1,3001 -0116_229_314,-74.4938885,39.3351675,16 N JEFFERSON AVE,MARGATE CITY CITY,47,1922,2,COM3,3004 -0116_229_315_C000B,-74.488802,39.334831,19-21 N MADISON AVE,MARGATE CITY CITY,20,2000,1,RES1,3001 -0116_229_316,-74.503794,39.3385325,18-20 N JEFFERSON AVE,MARGATE CITY CITY,45,1925,4,RES1,3001 -0116_229_322,-74.50425344,39.33848607,24 N JEFFERSON AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_229_324,-74.50097,39.337596,26 N JEFFERSON AVE,MARGATE CITY CITY,18,2015,2,RES1,3001 -0116_229_45_C06B,-74.484861,39.495162,25 N MADISON AVE,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_229_50.01,-74.49351183,39.33998502,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,COM4,3004 -0116_229_50.02,-74.4931842,39.3415183,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.03,-74.4607131,39.35524632,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.04,-74.4535275,39.354121,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.05,-74.4439175,39.366066,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.06,-74.48907152,39.33683017,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.07,-74.4470681,39.35503362,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.08,-74.49362236,39.33754045,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.09,-74.45270865,39.35527971,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.10,-74.4832081,39.34417587,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.11,-74.49160548,39.33784033,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.12,-74.48851235,39.33811047,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.14,-74.4934565,39.337648,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.15,-74.4884815,39.338966,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.16,-74.4611315,39.3539625,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.17,-74.49326454,39.33587468,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.18,-74.49109,39.336113,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.19,-74.48739766,39.3361855,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_50.20,-74.49794426,39.33636533,9505 VENTNOR AVE,MARGATE CITY CITY,21,1954,1,RES1,3001 -0116_229_57,-74.46185962,39.35296946,9504 WINCHESTER AVE,MARGATE CITY CITY,30,2002,2,RES1,3001 -0116_229_59,-74.4610746,39.35272471,9502 WINCHESTER AVE,MARGATE CITY CITY,30,2002,2,RES1,3001 -0116_229_60,-74.46738532,39.3573341,9503 VENTNOR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_229_61,-74.48585456,39.35161509,9500 WINCHESTER AVE,MARGATE CITY CITY,45,1930,2,RES1,3001 -0116_23_1,-74.46700566,39.34432951,100 S VENDOME AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_23_10_C0228,-74.47785044,39.34714814,9010 ATLANTIC AVE,MARGATE CITY CITY,21,1955,1,RES1,3001 -0116_23_2,-74.46778837,39.34419234,102 S VENDOME AVE,MARGATE CITY CITY,22,2014,1,RES1,3001 -0116_23_3,-74.4805325,39.3508035,104 S VENDOME AVE,MARGATE CITY CITY,20,1945,1,RES1,3001 -0116_23_4,-74.485872,39.350791,106 S VENDOME AVE,MARGATE CITY CITY,20,1945,1,RES1,3001 -0116_23_5,-74.47932317,39.34923898,108 S VENDOME AVE,MARGATE CITY CITY,20,1945,1,GOV1,3004 -0116_23_6,-74.48540417,39.34864348,110 S VENDOME AVE,MARGATE CITY CITY,20,1945,1,RES1,3001 -0116_230_28,-74.50441349,39.33751,9615 VENTNOR AVE,MARGATE CITY CITY,,1990,1,RES1,3001 -0116_230_303,-74.38663221,39.39221018,5 N MONROE AVE,MARGATE CITY CITY,17,1927,3,RES1,3001 -0116_230_305_C000A,-74.38646266,39.39158901,7 N MONROE AVE,MARGATE CITY CITY,20,2000,1,RES1,3001 -0116_230_308_C000A,-74.38864559,39.39251886,12 N MADISON AVE,MARGATE CITY CITY,20,1988,1,RES1,3001 -0116_230_312,-74.38854952,39.39183834,14 N MADISON AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_230_313,-74.38863695,39.39142534,17 N MONROE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_230_314_C000A,-74.39861719,39.38927994,18 N MADISON AVE,MARGATE CITY CITY,20,1948,1,RES1,3001 -0116_230_315,-74.394723,39.3877815,19 N MONROE AVE,MARGATE CITY CITY,17,1928,2,RES1,3001 -0116_230_318_C000A,-74.39583403,39.38679922,20 N MADISON AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_230_319,-74.38061118,39.40093146,21 N MONROE AVE,MARGATE CITY CITY,45,1952,2,RES1,3001 -0116_230_32_C000B,-74.50092067,39.335553,9613 VENTNOR AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_230_33,-74.5050545,39.3353855,9612 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3004 -0116_230_34_C0A1,-74.3935095,39.382687,9609 VENTNOR AVE,MARGATE CITY CITY,19,1956,1,RES1,3001 -0116_230_37,-74.37087916,39.40072612,9606 WINCHESTER AVE,MARGATE CITY CITY,47,1979,2,RES1,3001 -0116_230_40_C0001,-74.37141902,39.39951838,9605 VENTNOR AVE,MARGATE CITY CITY,21,1947,1,GOV1,3004 -0116_230_41,-74.37643471,39.39936414,24 N MADISON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_230_42,-74.38150397,39.39306683,9601 VENTNOR AVE,MARGATE CITY CITY,47,1964,4,RES1,3001 -0116_231_13,-74.38495349,39.39615699,9720 WINCHESTER AVE,MARGATE CITY CITY,45,1985,2,RES1,3001 -0116_231_15,-74.383816,39.3950805,9704 WINCHESTER AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_231_16,-74.396701,39.3948385,9701-9707 VENTNOR AVE,MARGATE CITY CITY,,1951,1,RES1,3001 -0116_231_21,-74.42056182,39.37061027,9700 WINCHESTER AVE,MARGATE CITY CITY,49,1961,2,RES1,3001 -0116_231_23,-74.4153225,39.3688645,24 N MONROE AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_231_304_C000D,-74.510795,39.3253605,4 N MONROE AVE,MARGATE CITY CITY,19,2007,1,RES1,3001 -0116_231_307_C03,-74.4175366,39.36872469,11 N COOLIDGE AVE,MARGATE CITY CITY,20,1984,1,RES1,3001 -0116_231_308,-74.41616093,39.36847016,10 N MONROE AVE,MARGATE CITY CITY,18,1988,1,RES1,3001 -0116_231_310,-74.40184338,39.38247231,12 N MONROE AVE,MARGATE CITY CITY,47,1930,3,RES1,3001 -0116_231_311,-74.4056045,39.379938,15 N COOLIDGE AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_231_314,-74.42332018,39.37379544,14 N MONROE AVE,MARGATE CITY CITY,18,2012,1,RES1,3001 -0116_231_316_C00B5,-74.4221215,39.371922,16 N MONROE AVE,MARGATE CITY CITY,21,1988,1,RES1,3001 -0116_231_317,-74.4285795,39.371661,21 N COOLIDGE AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_231_319,-74.42440332,39.37124201,23 N COOLIDGE AVE,MARGATE CITY CITY,17,1923,1,RES1,3004 -0116_231_321,-74.42832082,39.36874106,25 N COOLIDGE AVE,MARGATE CITY CITY,45,1923,2,RES1,3004 -0116_231_6_C002B,-74.38195438,39.39737815,9711 VENTNOR AVE,MARGATE CITY CITY,21,1964,1,GOV1,3004 -0116_232_1,-74.433491,39.3691725,28-30 N COOLIDGE AVE,MARGATE CITY CITY,45,1962,4,RES1,3001 -0116_232_2,-74.401687,39.391338,9803 VENTNOR AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_232_3,-74.40084796,39.3892618,26 N COOLIDGE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_232_302,-74.3661285,39.409968,6 N COOLIDGE AVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_232_306,-74.36377416,39.40964298,8-10 N COOLIDGE AVE,MARGATE CITY CITY,30,1932,4,RES1,3001 -0116_232_314,-74.36425134,39.4089397,20 N COOLIDGE AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_232_316,-74.36573665,39.40685903,22 N COOLIDGE AVE,MARGATE CITY CITY,17,1922,1,RES1,3001 -0116_232_4.01,-74.36125615,39.41053355,4 N COOLIDGE AVE,MARGATE CITY CITY,19,2004,1,RES1,3001 -0116_232_4_C0B2,-74.41179856,39.39077718,9801 VENTNOR AVE,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_24_1.301,-74.48237428,39.3463719,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.302,-74.7034917,39.3531964,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.303,-74.5356235,39.3921045,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.304,-74.61883673,39.30650797,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.305,-74.57123992,39.36911776,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.306,-74.63226464,39.36531572,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.307,-74.60250919,39.31213104,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.308,-74.57032333,39.37209514,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.309,-74.625378,39.3525035,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.401,-74.56656118,39.37423241,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.402,-74.60744634,39.31684602,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.403,-74.63151244,39.36502626,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.404,-74.56069507,39.37346633,9100 BEACH,MARGATE CITY CITY,21,1973,1,GOV1,3004 -0116_24_1.405,-74.598664,39.3103745,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.406,-74.55139509,39.37896816,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.407,-74.55224507,39.38102006,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.408,-74.5515255,39.3839785,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.409,-74.5334745,39.3785385,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.501,-74.53647094,39.38008065,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.502,-74.53790571,39.3819357,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.503,-74.5348135,39.385119,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.504,-74.544576,39.373453,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.505,-74.63894948,39.36710813,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.506,-74.55077366,39.37389653,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.507,-74.59540959,39.31035435,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.508,-74.63338624,39.35909946,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.509,-74.80445768,39.31250538,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.601,-74.548625,39.3683705,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.602,-74.5468385,39.374179,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.603,-74.5403296,39.37221183,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.604,-74.62591044,39.3536823,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.605,-74.62753988,39.35533841,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.606,-74.54200357,39.37344658,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.607,-74.531862,39.376103,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.608,-74.617726,39.3133555,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.609,-74.76221517,39.35136698,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.701,-74.76248043,39.35056131,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.702,-74.76802885,39.32862426,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.703,-74.7852475,39.3096415,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.704,-74.77737857,39.30386981,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.705,-74.60193154,39.31205882,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.706,-74.7642855,39.307495,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.707,-74.60297254,39.31215052,9100 BEACH,MARGATE CITY CITY,21,1973,1,EDU1,3004 -0116_24_1.708,-74.62961696,39.35637051,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.709,-74.76185914,39.30789207,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.801,-74.7560255,39.3001115,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.802,-74.627975,39.359093,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.803,-74.594383,39.314328,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.804,-74.65043681,39.33802828,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.805,-74.597751,39.3105605,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.806,-74.68808632,39.35948258,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.807,-74.64181785,39.33858253,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.808,-74.679512,39.3413905,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.809,-74.63183,39.3458135,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.901,-74.653476,39.35349,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.902,-74.61991296,39.36568728,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.903,-74.6508224,39.35814028,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.904,-74.6466225,39.3586335,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.905,-74.63992288,39.36279877,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.906,-74.58942391,39.3250788,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES3A,3001 -0116_24_1.907,-74.63213608,39.36308457,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.908,-74.638625,39.3633515,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_1.909,-74.6143305,39.3117835,9100 BEACH,MARGATE CITY CITY,21,1973,1,RES1,3001 -0116_24_10_C0003,-74.48250557,39.34393728,9100 ATLANTIC AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_25_14,-74.44952167,39.3541275,106 S BENSON AVE,MARGATE CITY CITY,,1910,1,RES1,3001 -0116_25_8.02_C000B,-74.444806,39.355833,111 S DECATUR AVE,MARGATE CITY CITY,20,1987,1,RES1,3001 -0116_26_1_C0203,-74.46313583,39.35794555,9220 ATLANTIC AVE,MARGATE CITY CITY,21,1987,1,RES1,3001 -0116_26_2,-74.460787,39.3545,9210 ATLANTIC AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_27.01_110.101,-74.4624775,39.3522505,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.102,-74.59338183,39.31671449,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.103,-74.58929417,39.317283,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.104,-74.63049203,39.34775547,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.105,-74.63657749,39.33778366,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.106,-74.64055604,39.34137364,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.107,-74.63856676,39.34234749,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,COM1,3004 -0116_27.01_110.109,-74.64168613,39.33023821,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.110,-74.62301218,39.31386166,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.111,-74.61156071,39.36514569,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,GOV1,3004 -0116_27.01_110.113,-74.611692,39.3656515,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES3A,3001 -0116_27.01_110.114,-74.597646,39.363847,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.116,-74.60296227,39.36712508,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.117,-74.59998458,39.36818325,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.118,-74.59861212,39.35368682,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.119,-74.600497,39.3596695,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.120,-74.5968216,39.36228119,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.121,-74.5962665,39.362864,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.123,-74.59610247,39.36343792,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.125,-74.58897951,39.35163957,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.127,-74.59614598,39.35971976,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.129,-74.61042772,39.34906758,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.131,-74.598052,39.344828,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.201,-74.60571905,39.34500266,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.202,-74.597428,39.349507,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.203,-74.61357269,39.33812859,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.204,-74.59655558,39.34378427,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.205,-74.58811,39.3472925,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.206,-74.5921965,39.35059783,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.207,-74.57645803,39.34978705,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.209,-74.57847668,39.35120609,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,GOV1,3004 -0116_27.01_110.210,-74.59442725,39.34107867,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.211,-74.58122028,39.33518419,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.213,-74.5755265,39.3361755,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.214,-74.580077,39.3365615,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.215,-74.5790345,39.336768,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.216,-74.5791065,39.3377595,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.217,-74.5779457,39.34028031,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.218,-74.58318491,39.34107549,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.219,-74.56628319,39.36020106,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.220,-74.56869476,39.36326098,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.221,-74.571614,39.36394462,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.223,-74.57042533,39.36761755,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.225,-74.5618845,39.361458,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.227,-74.5586795,39.364306,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.229,-74.55966663,39.3668523,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.231,-74.5592943,39.36746286,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.301,-74.563406,39.3675505,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.302,-74.5751185,39.35192,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.303,-74.57313,39.357196,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.304,-74.563332,39.356166,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.305,-74.55521529,39.35632936,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.306,-74.56287591,39.35674552,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.307,-74.56038181,39.35908896,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.309,-74.55569314,39.35940983,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.310,-74.5518885,39.3625555,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.311,-74.54932755,39.36656555,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.313,-74.55019893,39.35843523,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.314,-74.56737962,39.34420716,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.315,-74.56568109,39.34504961,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.316,-74.57367691,39.3479438,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.317,-74.571926,39.3364855,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.318,-74.610223,39.328269,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.319,-74.6027795,39.326043,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.320,-74.601989,39.329087,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.321,-74.60455511,39.33227184,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.323,-74.6114813,39.31882184,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.325,-74.613477,39.3189975,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.327,-74.60929857,39.32154178,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.329,-74.61534945,39.3215604,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_110.331,-74.61370128,39.32269373,9300 ATLANTIC AVE,MARGATE CITY CITY,20,1966,1,RES1,3001 -0116_27.01_86,-74.4642795,39.352768,PUBLIC BEACH,MARGATE CITY CITY,16,2017,1,RES1,3001 -0116_27.02_91,-74.46785,39.357214,9313 ATLANTIC AVE,MARGATE CITY CITY,17,1953,1,GOV1,3004 -0116_27.02_91.01,-74.48057065,39.35149362,9314 PACIFIC AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_27.02_93_C000C,-74.49076218,39.33934008,9309 ATLANTIC AVE,MARGATE CITY CITY,21,1998,1,RES1,3001 -0116_28.01_101_C0A1,-74.4946805,39.33763,9400 ATLANTIC AVE,MARGATE CITY CITY,20,1963,1,GOV1,3004 -0116_28.02_64_C01,-74.48800245,39.33657217,9415 ATLANTIC AVE,MARGATE CITY CITY,21,1982,1,RES1,3001 -0116_28.02_70,-74.48897,39.336092,9418 PACIFIC AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_28.02_71,-74.882749,39.48783683,PACIFIC AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_28.02_73,-74.86709046,39.50028322,PACIFIC AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_28.02_75,-74.566574,39.5121155,9408 PACIFIC AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_28.02_77,-74.53500719,39.5292352,9406 PACIFIC AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_28.02_79,-74.53420085,39.53204917,9405 ATLANTIC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_28.02_81,-74.54311134,39.53076302,32 S ADAMS AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_28.02_83,-74.58504875,39.53481575,9401 ATLANTIC AVE,MARGATE CITY CITY,17,1953,2,RES1,3001 -0116_29.01_1.01,-74.575043,39.5541,9516 ATLANTIC AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_1.02,-74.61395783,39.5387442,9514 ATLANTIC AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_1.03,-74.62389609,39.50600385,9512 ATLANTIC AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_1.04,-74.65713006,39.51128765,9510 ATLANTIC AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_1.05,-74.643096,39.51806433,9508 ATLANTIC AVE,MARGATE CITY CITY,39,2007,1,RES1,3001 -0116_29.01_1.06,-74.64267957,39.51582139,9506 ATLANTIC AVE,MARGATE CITY CITY,39,2007,1,RES1,3001 -0116_29.01_1.07,-74.5123085,39.4060735,9504 ATLANTIC AVE,MARGATE CITY CITY,39,2007,1,RES1,3001 -0116_29.01_1.08,-74.52839918,39.40539024,9502 ATLANTIC AVE,MARGATE CITY CITY,39,2007,1,RES1,3001 -0116_29.01_1.09,-74.51308728,39.41701284,9500 ATLANTIC AVE,MARGATE CITY CITY,39,2007,1,RES1,3001 -0116_29.01_1.10,-74.51381673,39.41548807,9509 BEACH,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_1.11,-74.51810749,39.41486533,9511 BEACH,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_1.12,-74.51817927,39.41112318,9513 BEACH,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_1.13,-74.53065936,39.41352054,9515 BEACH,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_1.14,-74.49583929,39.42479189,9517 BEACH,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_29.01_102_C0103,-74.61569864,39.53764038,120 S JEFFERSON AVE,MARGATE CITY CITY,22,1988,1,COM1,3004 -0116_29.02_45,-74.490672,39.4214275,101 S MADISON AVE,MARGATE CITY CITY,17,1922,1,RES1,3001 -0116_29.02_51.01,-74.50257689,39.4200032,9513 ATLANTIC AVE,MARGATE CITY CITY,18,1910,2,RES1,3001 -0116_29.02_55,-74.49039975,39.43589906,9511 ATLANTIC AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_29.02_59,-74.4901495,39.4356905,9506 PACIFIC AVE,MARGATE CITY CITY,21,2018,1,GOV1,3004 -0116_29.02_59.02,-74.4918875,39.4351035,9505 ATLANTIC AVE,MARGATE CITY CITY,45,1920,2,RES1,3001 -0116_29.02_61,-74.495431,39.432623,9500 PACIFIC AVE,MARGATE CITY CITY,17,1920,1,GOV1,3004 -0116_29.02_63,-74.4966575,39.4325125,9501 ATLANTIC AVE,MARGATE CITY CITY,17,1950,2,RES1,3001 -0116_3.01_1,-74.49038271,39.52326767,7602 ATLANTIC AVE,MARGATE CITY CITY,18,1928,1,RES1,3001 -0116_3.01_2,-74.4947545,39.5211785,103 S CLARENDON AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_3.01_3,-74.52126728,39.52843704,105 S CLARENDON AVE,MARGATE CITY CITY,20,1969,1,RES1,3001 -0116_3.01_8,-74.53262514,39.31503751,100 S BRUNSWICK AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_3.01_9,-74.53614335,39.31418381,102 S BRUNSWICK AVE,MARGATE CITY CITY,22,2003,1,RES1,3001 -0116_3.02_1,-74.5879655,39.313323,101 S CLERMONT AVE,MARGATE CITY CITY,21,2011,1,RES1,3001 -0116_3.02_10,-74.5993055,39.3132365,106 S CLARENDON AVE,MARGATE CITY CITY,22,1987,1,RES1,3001 -0116_3.02_2,-74.60472393,39.31712013,103 S CLERMONT AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_3.02_3,-74.6011429,39.31577884,105 S CLERMONT AVE,MARGATE CITY CITY,21,1992,1,RES1,3001 -0116_3.02_4,-74.60057554,39.31478174,107 S CLERMONT AVE,MARGATE CITY CITY,22,2000,1,RES1,3001 -0116_3.02_8,-74.60704,39.3136285,7604 ATLANTIC AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_30.01_101.501,-74.4962555,39.430294,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.502,-74.53010622,39.47350467,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.503,-74.50718608,39.47923825,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.504,-74.50052376,39.48705049,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.505,-74.50877841,39.47171072,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.506,-74.48470571,39.49624574,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.507,-74.47065795,39.49734355,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.508,-74.48534984,39.49437291,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.509,-74.468614,39.490878,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.510,-74.472004,39.4935495,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.511,-74.454149,39.4988015,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.512,-74.462842,39.4937605,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.513,-74.45801518,39.49529966,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.514,-74.4504073,39.49416787,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.515,-74.47092748,39.48443759,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.516,-74.4710202,39.48457425,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.517,-74.47491148,39.48560445,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,GOV1,3004 -0116_30.01_101.518,-74.49098818,39.43300042,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3004 -0116_30.01_101.601,-74.45347041,39.47884468,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.602,-74.44636211,39.48187064,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.603,-74.445947,39.48335517,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,GOV1,3004 -0116_30.01_101.604,-74.45756052,39.47133083,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.605,-74.514585,39.4666595,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.606,-74.52477194,39.4588424,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.607,-74.51147483,39.45598646,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.608,-74.5042675,39.4666595,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,COM1,3004 -0116_30.01_101.609,-74.490074,39.46528086,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,COM5,3004 -0116_30.01_101.610,-74.49296077,39.46644343,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.611,-74.4974315,39.4694015,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.612,-74.4912365,39.469479,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.613,-74.50174825,39.45561143,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.614,-74.48798233,39.45861145,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.615,-74.521057,39.445202,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.616,-74.51047919,39.44907421,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.617,-74.5160515,39.45215383,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.618,-74.51670845,39.44348766,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.619,-74.5161665,39.4441175,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.701,-74.50919506,39.43812778,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES3B,3001 -0116_30.01_101.702,-74.4903315,39.4365425,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.703,-74.48821225,39.43688031,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,COM4,3004 -0116_30.01_101.704,-74.4875865,39.4374035,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.705,-74.4971393,39.44195678,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.706,-74.48540247,39.46343168,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.707,-74.466358,39.453881,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,GOV1,3004 -0116_30.01_101.708,-74.45928596,39.46174242,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.709,-74.46215087,39.46361124,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.710,-74.46417,39.47001,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3004 -0116_30.01_101.711,-74.47280647,39.44509695,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.712,-74.43534335,39.48803154,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.713,-74.5290905,39.4256355,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.714,-74.50391233,39.42831333,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.715,-74.5031515,39.429593,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.716,-74.49839578,39.43015056,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.718,-74.50199435,39.43022654,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.719,-74.50207221,39.43156559,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,GOV1,3004 -0116_30.01_101.801,-74.508342,39.4318735,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,GOV1,3004 -0116_30.01_101.802,-74.50044355,39.43339633,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.803,-74.5065075,39.4352685,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES3A,3002 -0116_30.01_101.804,-74.49315774,39.43140658,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.805,-74.49468374,39.43189197,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.806,-74.50039685,39.40914197,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.807,-74.48957208,39.43394804,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.808,-74.49170748,39.43417085,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.809,-74.495267,39.434815,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.810,-74.48904896,39.43535884,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.811,-74.50061085,39.42005232,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.812,-74.50581168,39.42391856,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,COM1,3004 -0116_30.01_101.813,-74.49967825,39.42472872,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES3A,3001 -0116_30.01_101.814,-74.49971904,39.42602224,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.815,-74.50040746,39.42605674,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,GOV1,3004 -0116_30.01_101.816,-74.49700155,39.42664703,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.817,-74.51869955,39.41174132,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,COM1,3002 -0116_30.01_101.818,-74.512258,39.412719,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.819,-74.52494324,39.40324283,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.901,-74.52111932,39.40490841,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.902,-74.5152265,39.402807,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.903,-74.5175225,39.403069,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.904,-74.516415,39.4032975,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.905,-74.515802,39.404319,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.906,-74.511914,39.4045035,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.907,-74.5162955,39.405217,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.908,-74.49892835,39.41272257,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.909,-74.5014865,39.41314,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.910,-74.4999677,39.41456681,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.911,-74.49974053,39.41495528,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,GOV1,3004 -0116_30.01_101.912,-74.4988647,39.41561518,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,GOV1,3004 -0116_30.01_101.913,-74.5032405,39.415752,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.914,-74.49903306,39.41609782,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.915,-74.499817,39.417457,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES3A,3001 -0116_30.01_101.916,-74.504069,39.418522,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.917,-74.495015,39.4184535,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.918,-74.50834883,39.40666032,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.01_101.919,-74.504061,39.4066885,9600 ATLANTIC AVE,MARGATE CITY CITY,21,1976,1,RES1,3001 -0116_30.02_1,-74.4899145,39.4284835,9621 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_10,-74.506461,39.43126,9620 PACIFIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_11,-74.50191126,39.42798287,9618 PACIFIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_12,-74.52672382,39.42943148,9616 PACIFIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_13,-74.43720374,39.49234754,9614 PACIFIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_14,-74.4349815,39.490827,9612 PACIFIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_15,-74.47071023,39.44377406,9610 PACIFIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_16,-74.47941981,39.44423534,9608 PACIFIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_2,-74.50488976,39.43616415,9619 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_3,-74.502135,39.4359085,9617 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3004 -0116_30.02_4,-74.499748,39.4350385,9615 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES3B,3001 -0116_30.02_5,-74.50772929,39.43455838,9613 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_6,-74.50227457,39.43454125,9611 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_7,-74.5008953,39.43373938,9609 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_8,-74.50422053,39.43233966,9607 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_30.02_9,-74.498735,39.4319025,9622 PACIFIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_301_10,-74.35616501,39.41490267,111 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_301_11,-74.35795184,39.41440349,113 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_301_12,-74.355655,39.41395,115 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_301_13,-74.35556966,39.41376148,7404 MONMOUTH AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_301_19,-74.36410965,39.41370121,7400 MONMOUTH AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_301_21,-74.35887598,39.41327816,114 N FREDERICKSBURG AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_301_23,-74.376569,39.4188435,112 N FREDERICKSBURG AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_301_25,-74.37541044,39.41646093,110 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_301_27,-74.3672865,39.416301,108 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_301_29,-74.37500151,39.41610223,106 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_301_3,-74.3719205,39.40743,7403 WINCHESTER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_301_31,-74.37278631,39.41532128,104 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_301_32,-74.370029,39.4135845,102 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_301_4,-74.373697,39.4064005,101A N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_301_5,-74.36682932,39.40551911,101 N ARGYLE AVE,MARGATE CITY CITY,19,2017,1,RES1,3001 -0116_301_6,-74.3699675,39.4053505,103 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_301_7,-74.37059012,39.40477984,105 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_301_8,-74.3699615,39.402835,107 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_301_9,-74.362885,39.4182675,109 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_302.01_1,-74.367151,39.412535,101 N BELMONT AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_302.01_10,-74.45013958,39.37484373,7502 MONMOUTH AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_302.01_11,-74.45246815,39.3745933,7500 MONMOUTH AVE,MARGATE CITY CITY,17,1957,1,COM1,3004 -0116_302.01_12,-74.44907169,39.37421052,116 N ARGYLE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_302.01_13,-74.4479362,39.37387906,114 N ARGYLE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_302.01_14,-74.44797218,39.37368263,112 N ARGYLE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_302.01_15,-74.4500805,39.3719205,110 N ARGYLE AVE,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_302.01_16,-74.45237816,39.37166781,108 N ARGYLE AVE,MARGATE CITY CITY,20,2003,1,RES1,3001 -0116_302.01_17,-74.44906916,39.37118621,106 N ARGYLE AVE,MARGATE CITY CITY,19,1942,1,RES1,3001 -0116_302.01_18,-74.45212573,39.37044436,104 N ARGYLE AVE,MARGATE CITY CITY,17,1960,1,RES1,3002 -0116_302.01_19,-74.4936075,39.3788455,102 N ARGYLE AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_302.01_2,-74.37578933,39.41180104,103 N BELMONT AVE,MARGATE CITY CITY,17,1979,1,RES1,3001 -0116_302.01_20,-74.526882,39.3837135,100 N ARGYLE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_302.01_3,-74.3732622,39.41159459,105 N BELMONT AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_302.01_4,-74.369781,39.4113835,107 N BELMONT AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_302.01_5,-74.3712395,39.411166,109 N BELMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_302.01_6,-74.38095085,39.41542423,111 N BELMONT AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_302.01_7,-74.37585633,39.41959759,113 N BELMONT AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_302.01_9.01,-74.44683473,39.37516844,117 N BELMONT AVE,MARGATE CITY CITY,20,2003,1,RES1,3001 -0116_302.01_9.02,-74.44611756,39.37494078,119 N BELMONT AVE,MARGATE CITY CITY,20,2003,1,RES1,3002 -0116_302.02_1,-74.51752617,39.3924048,7507 WINCHESTER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_302.02_10,-74.5204815,39.387329,119 N BARCLAY AVE,MARGATE CITY CITY,21,2017,1,RES1,3002 -0116_302.02_12,-74.5254915,39.3854385,121 N BARCLAY AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_302.02_13,-74.51984084,39.40112708,122 N BELMONT AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_302.02_14,-74.5134965,39.40014,120 N BELMONT AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_302.02_15,-74.51958933,39.39688148,118 N BELMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_302.02_16,-74.51476226,39.39502977,116 N BELMONT AVE,MARGATE CITY CITY,19,2010,1,COM1,3002 -0116_302.02_18,-74.51432433,39.39445941,112 N BELMONT AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_302.02_19,-74.523107,39.399904,110 N BELMONT AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_302.02_2,-74.5177615,39.388613,103 N BARCLAY AVE,MARGATE CITY CITY,17,1949,1,RES1,3002 -0116_302.02_20,-74.529012,39.3993485,108 N BELMONT AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_302.02_21,-74.52555787,39.39690008,106 N BELMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_302.02_22,-74.52320167,39.39673107,104 N BELMONT AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_302.02_23,-74.52245116,39.39462399,102 N BELMONT AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_302.02_24,-74.52483032,39.39394491,7505 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_302.02_4,-74.516315,39.3859995,105 N BARCLAY AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_302.02_5,-74.5260055,39.39344933,109 N BARCLAY AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_302.02_6,-74.52819134,39.39294218,111 N BARCLAY AVE,MARGATE CITY CITY,17,1949,1,RES3A,3001 -0116_302.02_7,-74.52685182,39.38885699,115 N BARCLAY AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_302.02_9,-74.52193049,39.38752167,117 N BARCLAY AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_303.01_1,-74.4854161,39.43582004,7525 WINCHESTER AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_303.01_10,-74.5020776,39.41311066,119 N BRUNSWICK AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_303.01_11,-74.50000783,39.41234092,121 N BRUNSWICK AVE,MARGATE CITY CITY,17,1948,1,RES3A,3001 -0116_303.01_12,-74.5015905,39.411086,123 N BRUNSWICK AVE,MARGATE CITY CITY,17,1950,1,RES3B,3001 -0116_303.01_13,-74.518921,39.40689117,122 N BARCLAY AVE,MARGATE CITY CITY,17,1950,1,RES3B,3001 -0116_303.01_14,-74.51021425,39.40591017,120 N BARCLAY AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_303.01_15,-74.5114472,39.4052052,118 N BARCLAY AVE,MARGATE CITY CITY,17,1930,1,EDU1,3002 -0116_303.01_17,-74.52852382,39.40363438,114 N BARCLAY AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_303.01_19,-74.52810356,39.40282482,110 N BARCLAY AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_303.01_2,-74.48233094,39.42969768,103 N BRUNSWICK AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_303.01_20,-74.51299039,39.41306037,108 N BARCLAY AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_303.01_23,-74.51488665,39.41100113,102 N BARCLAY AVE,MARGATE CITY CITY,17,1985,1,IND1,3002 -0116_303.01_24,-74.48948815,39.4268298,100 N BARCLAY AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_303.01_3,-74.502058,39.4082915,105 N BRUNSWICK AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_303.01_4,-74.50301863,39.40788996,107 N BRUNSWICK AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_303.01_5,-74.5047675,39.4077445,109 N BRUNSWICK AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_303.01_6,-74.499386,39.4173175,111 N BRUNSWICK AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_303.01_7,-74.50292723,39.41693554,113 N BRUNSWICK AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_303.01_8,-74.50127617,39.4147925,115 N BRUNSWICK AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_303.01_9,-74.50238454,39.41420932,117 N BRUNSWICK AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_303.02_1.01,-74.51137255,39.32465968,101 N CLARENDON AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_303.02_1.02,-74.50990705,39.32411338,103 N CLARENDON AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_303.02_10,-74.50454557,39.43143833,119 N CLARENDON AVE,MARGATE CITY CITY,18,1940,1,RES1,3001 -0116_303.02_11,-74.50462916,39.43007898,121 N CLARENDON AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_303.02_12,-74.5014815,39.428644,123 N CLARENDON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_303.02_13,-74.5250845,39.4269915,7600 MONMOUTH AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_303.02_14,-74.5307685,39.4249655,120 N BRUNSWICK AVE,MARGATE CITY CITY,17,1942,1,RES1,3001 -0116_303.02_17,-74.524107,39.420696,114 N BRUNSWICK AVE,MARGATE CITY CITY,17,1955,1,RES1,3004 -0116_303.02_18,-74.5258734,39.41999118,112 N BRUNSWICK AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_303.02_19,-74.51483731,39.43095215,110 N BRUNSWICK AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_303.02_20,-74.44205192,39.48749476,108 N BRUNSWICK AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_303.02_21,-74.47503545,39.44349516,106 N BRUNSWICK AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_303.02_22,-74.47356832,39.4425462,104 N BRUNSWICK AVE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_303.02_23,-74.48516681,39.44283984,102 N BRUNSWICK AVE,MARGATE CITY CITY,19,1937,1,RES1,3001 -0116_303.02_24,-74.4845035,39.438762,7601 WINCHESTER AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_303.02_3,-74.48884,39.421222,105 N CLARENDON AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_303.02_4,-74.502915,39.4238225,107 N CLARENDON AVE,MARGATE CITY CITY,19,1989,1,COM1,3004 -0116_303.02_5,-74.49625778,39.43330473,109 N CLARENDON AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_303.02_6,-74.495412,39.431096,111 N CLARENDON AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_303.02_7,-74.5015885,39.4356275,113 N CLARENDON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_303.02_8,-74.50571614,39.43267574,115 N CLARENDON AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_303.02_9,-74.50776495,39.43202134,117 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_304.01_1,-74.467832,39.4591205,101 N CLERMONT AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_304.01_10,-74.51243,39.4403505,119 N CLERMONT AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_304.01_11,-74.51081348,39.44021244,121 N CLERMONT AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_304.01_12,-74.51203343,39.43717663,123 N CLERMONT AVE,MARGATE CITY CITY,18,1988,1,RES1,3001 -0116_304.01_13,-74.51860634,39.43660351,122 N CLARENDON AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_304.01_14,-74.52407034,39.44178017,120 N CLARENDON AVE,MARGATE CITY CITY,17,1930,1,COM1,3004 -0116_304.01_16,-74.5113099,39.44870706,116 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_304.01_17,-74.51259134,39.44630952,114 N CLARENDON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_304.01_18,-74.51865983,39.445737,112 N CLARENDON AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_304.01_19,-74.52663634,39.45116048,108 N CLARENDON AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_304.01_2,-74.48845513,39.43785657,103 N CLERMONT AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_304.01_21,-74.528603,39.4483815,106 N CLARENDON AVE,MARGATE CITY CITY,19,2004,1,RES1,3001 -0116_304.01_22,-74.5217746,39.44676586,104 N CLARENDON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_304.01_24,-74.49336869,39.46144705,7605 WINCHESTER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_304.01_3,-74.490324,39.4369215,105 N CLERMONT AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_304.01_4,-74.49632994,39.44782023,107B N CLERMONT AVE,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_304.01_5,-74.496776,39.444856,107 N CLERMONT AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_304.01_6,-74.50335028,39.45132119,109 N CLERMONT AVE,MARGATE CITY CITY,18,1929,1,RES1,3001 -0116_304.01_7,-74.489606,39.4363795,111 N CLERMONT AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_304.01_8,-74.50678361,39.45070941,115 N CLERMONT AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_304.01_9,-74.50858834,39.44685402,117 N CLERMONT AVE,MARGATE CITY CITY,17,1929,1,RES3B,3001 -0116_304.02_1,-74.4959585,39.4550835,7703 WINCHESTER AVE,MARGATE CITY CITY,17,1940,1,RES1,3004 -0116_304.02_10,-74.52525687,39.45450162,7700 MONMOUTH AVE,MARGATE CITY CITY,17,1960,1,GOV1,3004 -0116_304.02_11,-74.5216188,39.45450692,112 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES3A,3001 -0116_304.02_12,-74.514633,39.4659745,110 N CLERMONT AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_304.02_13,-74.51686723,39.46563905,108 N CLERMONT AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_304.02_14,-74.44446219,39.48453508,106B N CLERMONT AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_304.02_15,-74.47715424,39.47798845,106 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_304.02_16,-74.47558511,39.48440158,104 N CLERMONT AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_304.02_17,-74.47610559,39.484344,102 N CLERMONT AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_304.02_18,-74.47751815,39.47883784,100 N CLERMONT AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_304.02_2,-74.50922834,39.45838696,103 N DELAVAN AVE,MARGATE CITY CITY,17,1945,1,COM1,3004 -0116_304.02_3,-74.499594,39.454236,105 N DELAVAN AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_304.02_4,-74.49252963,39.46912669,107 N DELAVAN AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_304.02_5,-74.48807133,39.4648195,109 N DELAVAN AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_304.02_6,-74.504752,39.467705,111 N DELAVAN AVE,MARGATE CITY CITY,45,1960,2,RES1,3001 -0116_304.02_7,-74.508428,39.462608,113 N DELAVAN AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_304.02_8,-74.51068168,39.45444995,115 N DELAVAN AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_304.02_9,-74.52195526,39.45784495,7702 MONMOUTH AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_304.03_1,-74.45122742,39.49306793,101 N DOUGLAS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_304.03_10,-74.45418961,39.50262948,114 N DELAVAN AVE,MARGATE CITY CITY,17,1942,1,COM1,3004 -0116_304.03_12,-74.45343834,39.49955074,112 N DELAVAN AVE,MARGATE CITY CITY,17,1948,1,RES1,3002 -0116_304.03_13,-74.45449407,39.50123631,110 N DELAVAN AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_304.03_14,-74.45559252,39.49875236,108 N DELAVAN AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_304.03_15,-74.4716107,39.49473768,106 N DELAVAN AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_304.03_16.01,-74.51391765,39.32327502,104 N DELAVAN AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_304.03_16.02,-74.51569117,39.32305248,102 N DELAVAN AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_304.03_18,-74.47442966,39.49340867,100 N DELAVAN AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_304.03_2,-74.45130016,39.49127113,103 N DOUGLAS AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_304.03_3,-74.4519445,39.489335,105 N DOUGLAS AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_304.03_6,-74.450777,39.4892615,109 N DOUGLAS AVE,MARGATE CITY CITY,19,1952,1,RES1,3001 -0116_304.03_7,-74.45901865,39.49428732,113 N DOUGLAS AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_305.01_1,-74.4727244,39.49199181,101 N ESSEX AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_305.01_10,-74.47046511,39.49643746,116 N DOUGLAS AVE,MARGATE CITY CITY,18,1989,1,RES1,3001 -0116_305.01_11,-74.48564221,39.49866858,114 N DOUGLAS AVE,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_305.01_12,-74.49406,39.474733,112 N DOUGLAS AVE,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_305.01_13,-74.5077865,39.4785545,110 N DOUGLAS AVE,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_305.01_14,-74.5036716,39.47434829,108 N DOUGLAS AVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_305.01_15,-74.52119,39.4712245,106 N DOUGLAS AVE,MARGATE CITY CITY,17,1978,1,COM1,3004 -0116_305.01_16,-74.51163522,39.48197904,104 N DOUGLAS AVE,MARGATE CITY CITY,17,1943,1,RES3A,3001 -0116_305.01_17,-74.4953315,39.4936665,102 N DOUGLAS AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_305.01_18,-74.50045322,39.48952785,100 N DOUGLAS AVE,MARGATE CITY CITY,18,1987,1,COM1,3004 -0116_305.01_2,-74.46873849,39.49133612,103 N ESSEX AVE,MARGATE CITY CITY,17,1936,1,COM1,3004 -0116_305.01_3,-74.483437,39.494829,105 N ESSEX AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_305.01_5,-74.4872033,39.49410431,109 N ESSEX AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_305.01_8,-74.46559596,39.49730569,115 N ESSEX AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_305.01_9,-74.46580786,39.49679397,7802 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,AGR1,3001 -0116_305.02_1.01,-74.500858,39.487118,7805 WINCHESTER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_305.02_1.02,-74.48976279,39.49682172,102 N ESSEX AVE,MARGATE CITY CITY,17,1983,1,RES1,3001 -0116_305.02_10,-74.486351,39.5257405,118 N ESSEX AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_305.02_12,-74.48965242,39.51820625,120 N ESSEX AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_305.02_13,-74.48759428,39.52150844,7804 MONMOUTH AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_305.02_14,-74.51985687,39.52681743,121 N EXETER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_305.02_15,-74.53073,39.530328,119 N EXETER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_305.02_16,-74.495454,39.5390415,117 N EXETER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_305.02_17,-74.53194965,39.30819055,115 N EXETER AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_305.02_19,-74.53460639,39.30484837,113 N EXETER AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_305.02_20,-74.58007676,39.31287956,111 N EXETER AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_305.02_21,-74.59558365,39.31364708,109 N EXETER AVE,MARGATE CITY CITY,17,1960,1,AGR1,3001 -0116_305.02_23,-74.59738233,39.31721644,107 N EXETER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_305.02_24,-74.60106866,39.31616756,105 N EXETER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_305.02_25,-74.606185,39.3160395,103 N EXETER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_305.02_26,-74.60346505,39.31566432,101 N EXETER AVE,MARGATE CITY CITY,45,1925,2,RES1,3001 -0116_305.02_3,-74.50203499,39.50245209,104 N ESSEX AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_305.02_4,-74.49888622,39.50116528,106 N ESSEX AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_305.02_5,-74.50344562,39.50101479,108 N ESSEX AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_305.02_6,-74.49987598,39.49738566,110 N ESSEX AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_305.02_8,-74.441028,39.516084,114 N ESSEX AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_305.02_9,-74.48694494,39.51582848,116 N ESSEX AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_307.01_21,-74.60296125,39.31254337,103 N FRONTENAC AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_307.01_23,-74.60285843,39.31012583,105 N FRONTENAC AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_307.01_25,-74.59718391,39.30989476,107 N FRONTENAC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_307.01_28,-74.61618332,39.31278787,109 N FRONTENAC AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_307.01_29,-74.584362,39.32399317,111 N FRONTENAC AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_307.01_31,-74.58593166,39.32123449,113 N FRONTENAC AVE,MARGATE CITY CITY,17,1956,1,GOV1,3004 -0116_307.01_38,-74.5911085,39.32396733,115 N FRONTENAC AVE,MARGATE CITY CITY,17,1956,1,GOV1,3004 -0116_307.01_40,-74.5889495,39.3223355,117 N FRONTENAC AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_307.01_41,-74.57667416,39.33167064,124 N EXETER AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_307.01_42,-74.58240817,39.32965901,7904 MONMOUTH AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_307.01_43,-74.5895345,39.3332905,122 N EXETER AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_307.01_44,-74.58675899,39.3305959,120 N EXETER AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_307.01_45,-74.591845,39.329651,114 N EXETER AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_307.01_47,-74.60218261,39.32334049,112 N EXETER AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_307.01_48,-74.5976375,39.32018367,110 N EXETER AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_307.01_5,-74.59954233,39.31374591,7903 WINCHESTER AVE,MARGATE CITY CITY,17,1954,1,RES1,3002 -0116_307.01_50,-74.602258,39.3190585,108 N EXETER AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_307.01_52,-74.60169232,39.31881769,104 N EXETER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_307.01_54,-74.59834531,39.31841447,7901 WINCHESTER AVE,MARGATE CITY CITY,17,1951,1,AGR1,3001 -0116_307.01_6,-74.6027046,39.31265328,101 N FRONTENAC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_307.02_1,-74.59760666,39.31815717,8001 WINCHESTER AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_307.02_11,-74.617215,39.3190365,106 N FRONTENAC AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_307.02_13,-74.60399816,39.33219455,108 N FRONTENAC AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_307.02_15,-74.59819916,39.32926752,110 N FRONTENAC AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_307.02_18,-74.5999275,39.3284515,112 N FRONTENAC AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_307.02_19,-74.6087295,39.3311465,114 N FRONTENAC AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_307.02_2,-74.61654918,39.32192219,102 N FRONTENAC AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_307.02_33,-74.57292804,39.33905964,116 N FRONTENAC AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_307.02_34,-74.57265532,39.33800469,118 N FRONTENAC AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_307.02_37,-74.57168453,39.33676713,105 N GLADSTONE AVE,MARGATE CITY CITY,17,1942,1,RES1,3001 -0116_307.02_39,-74.56977632,39.35029366,109 N GLADSTONE AVE,MARGATE CITY CITY,18,1941,1,RES1,3001 -0116_307.02_40,-74.57070354,39.34835244,111 N GLADSTONE AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_307.02_41,-74.5676,39.3451045,113 N GLADSTONE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_307.02_42,-74.571683,39.344644,115 N GLADSTONE AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_307.02_43,-74.54654513,39.36802467,117 N GLADSTONE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_307.02_45,-74.552873,39.367515,119 N GLADSTONE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_307.02_46,-74.55297912,39.36152676,121 N GLADSTONE AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_307.02_47,-74.5498225,39.360985,123 N GLADSTONE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_307.02_48,-74.5607655,39.35967,8010 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_307.02_9,-74.609083,39.3214095,104 N FRONTENAC AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_308_1,-74.56057318,39.35956384,8016 MONMOUTH AVE,MARGATE CITY CITY,17,1954,1,GOV1,3004 -0116_308_10,-74.56147419,39.3620891,105 N GRANVILLE AVE,MARGATE CITY CITY,47,1927,2,RES1,3001 -0116_308_11,-74.56654615,39.36242456,101 N GRANVILLE AVE,MARGATE CITY CITY,47,1927,2,RES1,3001 -0116_308_13,-74.56437725,39.36236765,8014 MONMOUTH AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_308_14,-74.56684032,39.36114591,122 N GLADSTONE AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_308_15,-74.57490427,39.36024137,120 N GLADSTONE AVE,MARGATE CITY CITY,47,1930,2,RES1,3001 -0116_308_16,-74.58515945,39.34027188,116 N GLADSTONE AVE,MARGATE CITY CITY,17,1949,1,RES3A,3001 -0116_308_17,-74.5822283,39.34026766,114 N GLADSTONE AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_308_18,-74.583382,39.339065,112 N GLADSTONE AVE,MARGATE CITY CITY,17,1954,1,COM4,3004 -0116_308_19,-74.58132912,39.33889385,110 N GLADSTONE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_308_2,-74.5688609,39.35782635,121 N GRANVILLE AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_308_21,-74.5787025,39.334963,108 N GLADSTONE AVE,MARGATE CITY CITY,17,1950,1,COM3,3004 -0116_308_22,-74.5886515,39.3368175,106 N GLADSTONE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_308_23,-74.59061855,39.33447079,104 N GLADSTONE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_308_24,-74.57845165,39.35060404,102 N GLADSTONE AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_308_25,-74.5789071,39.3504733,100 N GLADSTONE AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_308_3,-74.5673355,39.3550865,119 N GRANVILLE AVE,MARGATE CITY CITY,17,1961,1,RES1,3002 -0116_308_4,-74.56849115,39.35446331,117 N GRANVILLE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_308_5,-74.56545627,39.35330488,115 N GRANVILLE AVE,MARGATE CITY CITY,47,1927,2,RES1,3001 -0116_308_6,-74.56845643,39.35323595,113 N GRANVILLE AVE,MARGATE CITY CITY,47,1927,2,RES1,3001 -0116_308_8,-74.5564885,39.366228,109 N GRANVILLE AVE,MARGATE CITY CITY,47,1927,2,RES1,3001 -0116_308_9,-74.55694487,39.36382283,107 N GRANVILLE AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_309.01_1,-74.57598601,39.3495999,8103 WINCHESTER AVE,MARGATE CITY CITY,,0,1,IND1,3004 -0116_309.02_1,-74.58865766,39.3488742,8102 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_309.02_10,-74.60539679,39.34293166,105 N HUNTINGTON AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_309.02_11,-74.6120946,39.34705977,103 N HUNTINGTON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_309.02_12,-74.57669533,39.35747527,101 N HUNTINGTON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_309.02_13,-74.59530032,39.35709598,8100 MONMOUTH AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_309.02_14,-74.58829049,39.35499569,116 N HAVERFORD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_309.02_15,-74.58547344,39.36003393,114 N HAVERFORD AVE,MARGATE CITY CITY,17,1954,1,RES1,3004 -0116_309.02_16,-74.599491,39.356391,112 N HAVERFORD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_309.02_17,-74.60042423,39.35488039,110B N HAVERFORD AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_309.02_19,-74.61163327,39.36795535,110 N HAVERFORD AVE,MARGATE CITY CITY,17,1953,1,COM4,3004 -0116_309.02_2,-74.5922145,39.3488745,121 N HUNTINGTON AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_309.02_20,-74.6090735,39.3674685,108 N HAVERFORD AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_309.02_21,-74.6106056,39.36596021,106 N HAVERFORD AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_309.02_22,-74.6229217,39.31433562,104 N HAVERFORD AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_309.02_23,-74.6297613,39.3490224,102 N HAVERFORD AVE,MARGATE CITY CITY,17,1965,1,GOV1,3004 -0116_309.02_24,-74.63061256,39.34988815,8105 WINCHESTER AVE,MARGATE CITY CITY,18,1955,1,GOV1,3004 -0116_309.02_3,-74.58743338,39.34747634,119 N HUNTINGTON AVE,MARGATE CITY CITY,19,2009,1,RES1,3001 -0116_309.02_5,-74.61284102,39.34042886,115 N HUNTINGTON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_309.02_6,-74.60604817,39.34916097,113 N HUNTINGTON AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_309.02_9,-74.5973905,39.34418617,109 N HUNTINGTON AVE,MARGATE CITY CITY,17,1942,1,RES1,3001 -0116_31.01_1,-74.627818,39.5267355,9719 BEACH,MARGATE CITY CITY,39,1978,1,RES1,3001 -0116_31.01_10,-74.65109154,39.53168516,9701 BEACH,MARGATE CITY CITY,39,1978,1,COM3,3004 -0116_31.01_11,-74.64169483,39.530712,9718 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_31.01_12,-74.65119694,39.53027856,9716 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_31.01_13,-74.68621737,39.50902874,9714 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_31.01_14,-74.6286745,39.544779,9712 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_31.01_15,-74.6496765,39.5453675,9710 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3002 -0116_31.01_16,-74.64738532,39.53858271,9708 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_31.01_17,-74.66257883,39.54227495,9706 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_31.01_18,-74.66923534,39.54167695,9704 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3002 -0116_31.01_19,-74.68392939,39.54901774,9702 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_31.01_2,-74.63512915,39.53232655,9717 BEACH,MARGATE CITY CITY,39,1978,1,RES1,3001 -0116_31.01_20,-74.6756178,39.54791102,9700 ATLANTIC AVE,MARGATE CITY CITY,39,1979,1,RES1,3001 -0116_31.01_3,-74.64883316,39.52913897,9715 BEACH,MARGATE CITY CITY,39,1978,1,RES1,3001 -0116_31.01_4,-74.6430545,39.529077,9713 BEACH,MARGATE CITY CITY,39,1978,1,COM1,3004 -0116_31.01_5,-74.64139108,39.52879292,9711 BEACH,MARGATE CITY CITY,39,1978,1,RES1,3001 -0116_31.01_6,-74.6474215,39.5278075,9709 BEACH,MARGATE CITY CITY,39,1978,1,RES1,3001 -0116_31.01_7,-74.65125007,39.52474715,9707 BEACH,MARGATE CITY CITY,39,1978,1,RES1,3001 -0116_31.01_8,-74.65025615,39.52404035,9705 BEACH,MARGATE CITY CITY,39,1978,1,GOV1,3004 -0116_31.01_9,-74.64959848,39.52317548,9703 BEACH,MARGATE CITY CITY,39,1978,1,RES1,3001 -0116_31.02_13.101,-74.7068,39.5696505,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.102,-74.50446981,39.41017093,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.103,-74.48137936,39.43508305,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.201,-74.52597082,39.39428349,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,GOV1,3004 -0116_31.02_13.202,-74.52174124,39.39504438,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.203,-74.52283968,39.39793103,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.204,-74.5285855,39.3984135,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.205,-74.5245985,39.3986885,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.206,-74.52732501,39.39873166,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.207,-74.530153,39.4006425,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES2,3005 -0116_31.02_13.208,-74.53055597,39.40081726,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.209,-74.51583517,39.3939226,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.210,-74.51936733,39.39676048,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,GOV1,3004 -0116_31.02_13.211,-74.515887,39.3996745,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,GOV1,3004 -0116_31.02_13.212,-74.50998727,39.40073535,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,GOV1,3004 -0116_31.02_13.213,-74.52983001,39.38704056,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,GOV1,3004 -0116_31.02_13.214,-74.52727386,39.38713802,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.301,-74.5276223,39.38769017,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_13.302,-74.504833,39.409929,9711 ATLANTIC AVE,MARGATE CITY CITY,20,1954,1,RES1,3001 -0116_31.02_17.01,-74.69266847,39.57212684,9704B PACIFIC AVE,MARGATE CITY CITY,30,1985,2,GOV1,3004 -0116_31.02_19.01,-74.6181928,39.62267065,9704A PACIFIC AVE,MARGATE CITY CITY,30,1985,2,RES1,3001 -0116_31.02_19.02,-74.6922185,39.5980075,9705 ATLANTIC AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_31.02_21.01,-74.63683917,39.62298399,104 S MONROE AVE,MARGATE CITY CITY,30,1985,2,GOV1,3004 -0116_31.02_21.02,-74.62654034,39.62007902,102 S MONROE AVE,MARGATE CITY CITY,30,1985,2,GOV1,3004 -0116_31.02_21.03,-74.62138883,39.60590371,9701 ATLANTIC AVE,MARGATE CITY CITY,30,1985,2,COM1,3004 -0116_31.02_5,-74.68727892,39.54500615,103 S COOLIDGE AVE,MARGATE CITY CITY,19,1945,1,GOV1,3004 -0116_31.02_7.01,-74.6677025,39.560959,101 S COOLIDGE AVE,MARGATE CITY CITY,21,1950,1,RES1,3001 -0116_31.02_7.02,-74.52118945,39.38770479,101 S COOLIDGE AVE,MARGATE CITY CITY,21,1950,1,RES1,3001 -0116_31.02_7.03,-74.52908691,39.38770269,101 S COOLIDGE AVE,MARGATE CITY CITY,21,1950,1,RES1,3001 -0116_31.02_7.04,-74.529129,39.388648,101 S COOLIDGE AVE,MARGATE CITY CITY,21,1950,1,RES1,3001 -0116_310.01_10,-74.487534,39.472528,105 N HANOVER AVE,MARGATE CITY CITY,45,1925,2,RES1,3001 -0116_310.01_12,-74.4965735,39.470705,8203 WINCHESTER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_310.01_13,-74.50568473,39.47810408,124 N HUNTINGTON AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_310.01_15,-74.5017945,39.4756285,120 N HUNTINGTON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_310.01_16,-74.48880861,39.47924323,116 N HUNTINGTON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_310.01_17,-74.48791093,39.47868449,112 N HUNTINGTON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_310.01_18,-74.50550805,39.48207117,110 N HUNTINGTON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_310.01_19,-74.506677,39.4786985,108 N HUNTINGTON AVE,MARGATE CITY CITY,17,1945,1,GOV1,3004 -0116_310.01_2,-74.63458752,39.34752456,121 N HANOVER AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_310.01_20.01,-74.52962973,39.47300731,106B N HUNTINGTON AVE,MARGATE CITY CITY,19,2000,1,RES1,3001 -0116_310.01_20.02,-74.49067097,39.49484018,106A N HUNTINGTON AVE,MARGATE CITY CITY,19,2000,1,RES1,3001 -0116_310.01_22,-74.49671138,39.49372475,104 N HUNTINGTON AVE,MARGATE CITY CITY,17,1945,1,GOV1,3004 -0116_310.01_23,-74.496962,39.4936975,102 N HUNTINGTON AVE,MARGATE CITY CITY,17,1965,1,GOV1,3004 -0116_310.01_24,-74.4939015,39.492495,100 N HUNTINGTON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_310.01_3,-74.646934,39.3433325,119 N HANOVER AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_310.01_4,-74.6552785,39.348134,117 N HANOVER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_310.01_5,-74.65495783,39.34772701,115 N HANOVER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_310.01_6,-74.63175583,39.35174772,113 N HANOVER AVE,MARGATE CITY CITY,17,1957,1,GOV1,3004 -0116_310.01_7,-74.494753,39.4767025,111 N HANOVER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_310.01_9,-74.49144772,39.47502012,107 N HANOVER AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_310.02_1,-74.4899315,39.4917355,123 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_310.02_10,-74.51203125,39.4900556,105 N IROQUOIS AVE,MARGATE CITY CITY,45,1920,2,RES1,3001 -0116_310.02_11,-74.48359055,39.53666966,103 N IROQUOIS AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_310.02_12,-74.52132066,39.50964328,101 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_310.02_13,-74.49948038,39.5377577,8204 MONMOUTH AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_310.02_14,-74.50723528,39.53173507,120 N HANOVER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_310.02_15,-74.53256074,39.30662021,118 N HANOVER AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_310.02_16,-74.53297536,39.30648544,116 N HANOVER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_310.02_17,-74.6085465,39.30666,114 N HANOVER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_310.02_18,-74.602637,39.313538,112 N HANOVER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_310.02_19,-74.606583,39.3109255,110 N HANOVER AVE,MARGATE CITY CITY,17,1954,1,GOV1,3004 -0116_310.02_2,-74.5045869,39.49400629,121 N IROQUOIS AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_310.02_20,-74.60740267,39.31032416,108 N HANOVER AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_310.02_21,-74.58689466,39.32570503,106 N HANOVER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_310.02_22,-74.6312975,39.351464,104 N HANOVER AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_310.02_23,-74.6256355,39.360865,102 N HANOVER AVE,MARGATE CITY CITY,17,1960,1,GOV1,3004 -0116_310.02_24,-74.63624392,39.36385778,100 N HANOVER AVE,MARGATE CITY CITY,47,1925,2,RES1,3001 -0116_310.02_3,-74.50895048,39.49077983,119 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_310.02_5,-74.49126079,39.49585645,117 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_310.02_7,-74.50272332,39.50145623,113 N IROQUOIS AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_310.02_8,-74.499991,39.4995265,109 N IROQUOIS AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_310.02_9,-74.50027029,39.4972411,107 N IROQUOIS AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_311_1,-74.6520005,39.3576385,125 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_311_11,-74.66483068,39.36260885,103 N JASPER AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_311_12,-74.703424,39.368199,101 N JASPER AVE,MARGATE CITY CITY,45,1928,2,RES1,3001 -0116_311_13,-74.7776965,39.3159535,8300 MONMOUTH AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_311_14,-74.7571285,39.355571,122 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_311_15,-74.53171742,39.37643266,118 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_311_17,-74.54053495,39.37337783,116 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_311_18,-74.5451785,39.3763955,114 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_311_19,-74.5504805,39.375859,112 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_311_2,-74.651346,39.356279,121 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_311_20,-74.550621,39.375123,110 N IROQUOIS AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_311_21,-74.54559515,39.37362955,106 N IROQUOIS AVE,MARGATE CITY CITY,45,1925,2,GOV1,3004 -0116_311_22,-74.54507139,39.37240109,104 N IROQUOIS AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_311_23,-74.55206104,39.37223005,102 N IROQUOIS AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_311_24,-74.5519315,39.368345,8301 WINCHESTER AVE,MARGATE CITY CITY,17,1957,1,GOV1,3004 -0116_311_3,-74.645784,39.3561895,119 N JASPER AVE,MARGATE CITY CITY,45,1925,2,RES1,3001 -0116_311_4,-74.65326245,39.35297672,117 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_311_5,-74.65946309,39.36506263,115 N JASPER AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_311_6,-74.67344317,39.34472828,113 N JASPER AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_311_7,-74.67842733,39.3508875,111 N JASPER AVE,MARGATE CITY CITY,45,1930,2,RES1,3001 -0116_311_8,-74.6674975,39.35972347,109 N JASPER AVE,MARGATE CITY CITY,45,1930,2,RES1,3001 -0116_311_9,-74.66796874,39.3535397,107 N JASPER AVE,MARGATE CITY CITY,43,1920,2,RES1,3001 -0116_312.01_1,-74.5323405,39.381411,8304 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_312.01_10,-74.57269567,39.37306903,104 N JASPER AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_312.01_11,-74.56653271,39.37270551,102 N JASPER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_312.01_12,-74.57266057,39.37199186,8305 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_312.01_13,-74.5666029,39.37171774,101 N JEROME AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_312.01_2,-74.53463867,39.3808165,120 N JASPER AVE,MARGATE CITY CITY,18,1951,1,RES1,3001 -0116_312.01_3,-74.53506734,39.37757551,118 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_312.01_36,-74.5693535,39.370175,105 N JEROME AVE,MARGATE CITY CITY,17,1954,1,GOV1,3004 -0116_312.01_39,-74.57251826,39.36895063,107 N JEROME AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_312.01_4,-74.54890676,39.38280625,116 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_312.01_40,-74.55371256,39.37876234,111 N JEROME AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_312.01_42,-74.5534525,39.377132,119 N JEROME AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_312.01_43,-74.5415085,39.3927375,121 N JEROME AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_312.01_44,-74.5391135,39.392699,123 N JEROME AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_312.01_46,-74.54053143,39.39011578,125 N JEROME AVE,MARGATE CITY CITY,17,1954,1,GOV1,3004 -0116_312.01_5,-74.54265891,39.38232381,114 N JASPER AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_312.01_6,-74.55134884,39.37973454,112 N JASPER AVE,MARGATE CITY CITY,45,1930,2,RES1,3001 -0116_312.01_7,-74.55308646,39.37910567,110 N JASPER AVE,MARGATE CITY CITY,45,1930,2,RES1,3001 -0116_312.01_8_C000B,-74.55836717,39.36945063,108 N JASPER AVE,MARGATE CITY CITY,18,1929,1,GOV1,3004 -0116_312.01_9,-74.56852444,39.37117423,103 N JEROME AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_312.02_11.01,-74.54656632,39.39231885,105 N KENYON AVE,MARGATE CITY CITY,17,1934,1,RES1,3001 -0116_312.02_11.02,-74.545322,39.39022,107 N KENYON AVE,MARGATE CITY CITY,17,1930,1,GOV1,3004 -0116_312.02_12,-74.54797616,39.38794097,109 N KENYON AVE,MARGATE CITY CITY,17,1930,1,GOV1,3004 -0116_312.02_13,-74.5503835,39.387312,111 N KENYON AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_312.02_16,-74.54421267,39.38542149,113 N KENYON AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_312.02_19,-74.53235632,39.39943348,115 N KENYON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_312.02_2,-74.5315285,39.3895125,103 N KENYON AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_312.02_21,-74.5351585,39.397379,117 N KENYON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_312.02_25,-74.5621165,39.3910115,108 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_312.02_26,-74.56379537,39.38975183,110 N JEROME AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_312.02_28,-74.5569145,39.388854,112 N JEROME AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_312.02_3,-74.536075,39.388779,8401 WINCHESTER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_312.02_30,-74.558851,39.3991005,116 N JEROME AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_312.02_32,-74.5594075,39.3983045,118 N JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_312.02_33,-74.5586275,39.397245,120 N JEROME AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_312.02_4,-74.5385688,39.38605469,102 N JEROME AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_312.02_5,-74.5344165,39.3859725,104 N JEROME AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_312.02_50,-74.55857258,39.39716863,8400 MONMOUTH AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_312.02_51,-74.5835915,39.3761315,122 N JEROME AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_313.01_1,-74.57895509,39.37516554,125 N MANSFIELD AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_313.01_10,-74.585723,39.3812865,105 N MANSFIELD AVE,MARGATE CITY CITY,17,1926,1,GOV1,3004 -0116_313.01_12,-74.579249,39.37730967,101 N MANSFIELD AVE,MARGATE CITY CITY,19,1955,1,RES1,3001 -0116_313.01_13,-74.58487263,39.37685832,122 N LANCASTER AVE,MARGATE CITY CITY,17,1928,1,RES1,3001 -0116_313.01_14,-74.58638896,39.38062952,120 N LANCASTER AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_313.01_16,-74.58825508,39.38058265,116 N LANCASTER AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_313.01_18,-74.59538569,39.37984004,114 N LANCASTER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_313.01_19,-74.59544212,39.37911309,112 N LANCASTER AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_313.01_2,-74.59079443,39.37571574,123 N MANSFIELD AVE,MARGATE CITY CITY,17,1945,1,GOV1,3004 -0116_313.01_20,-74.59749,39.3737195,110 N LANCASTER AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_313.01_21,-74.6037365,39.3736735,106 N LANCASTER AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_313.01_22,-74.6012555,39.3731555,104 N LANCASTER AVE,MARGATE CITY CITY,20,1924,1,RES1,3001 -0116_313.01_23,-74.5998418,39.37177957,102 N LANCASTER AVE,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_313.01_24,-74.61835813,39.36946572,8505 WINCHESTER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_313.01_6,-74.59518528,39.37218263,117 N MANSFIELD AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_313.01_7,-74.58501508,39.38178479,111 N MANSFIELD AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_313.02_1,-74.616789,39.368644,123 N LANCASTER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_313.02_10,-74.5996165,39.380667,105 N LANCASTER AVE,MARGATE CITY CITY,20,1942,1,RES1,3001 -0116_313.02_11,-74.60847,39.3802775,103 N LANCASTER AVE,MARGATE CITY CITY,20,1925,1,RES1,3001 -0116_313.02_12,-74.61002983,39.3798323,101 N LANCASTER AVE,MARGATE CITY CITY,19,1945,1,GOV1,3004 -0116_313.02_13,-74.616305,39.378713,8500 MONMOUTH AVE,MARGATE CITY CITY,19,1954,1,RES1,3001 -0116_313.02_14,-74.583085,39.400579,118 N KENYON AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_313.02_15,-74.6065055,39.3886955,116 N KENYON AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_313.02_17,-74.61162726,39.39086343,114 N KENYON AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_313.02_18,-74.6187565,39.388874,112 N KENYON AVE,MARGATE CITY CITY,18,2009,1,RES1,3001 -0116_313.02_19,-74.6107675,39.388212,110 N KENYON AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_313.02_20,-74.60139014,39.39678338,108 N KENYON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_313.02_21,-74.5313855,39.4087315,106 N KENYON AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_313.02_23,-74.53519533,39.40674927,102 N KENYON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_313.02_24,-74.53334087,39.41619702,8501 WINCHESTER AVE,MARGATE CITY CITY,17,1948,1,GOV1,3004 -0116_313.02_3,-74.60987122,39.36852844,115 N LANCASTER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_313.02_4,-74.59985796,39.38361335,113 N LANCASTER AVE,MARGATE CITY CITY,17,1954,1,GOV1,3004 -0116_313.02_5,-74.60597918,39.38295733,111 N LANCASTER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_313.02_8,-74.599733,39.3811625,107 N LANCASTER AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_314_1,-74.54558843,39.41312023,123 N NASSAU AVE,MARGATE CITY CITY,19,1953,1,RES1,3001 -0116_314_10,-74.57373883,39.4138785,105 N NASSAU AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_314_12,-74.570061,39.413743,8603 WINCHESTER AVE,MARGATE CITY CITY,17,1925,2,RES1,3001 -0116_314_15,-74.5743805,39.427404,118 N MANSFIELD AVE,MARGATE CITY CITY,19,1949,1,RES1,3001 -0116_314_17,-74.5739057,39.42991352,116 N MANSFIELD AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_314_18,-74.571771,39.4287575,114 N MANSFIELD AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_314_19,-74.57316706,39.42781465,112 N MANSFIELD AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_314_2,-74.562191,39.4094225,121 N NASSAU AVE,MARGATE CITY CITY,17,1926,1,RES1,3001 -0116_314_20,-74.57939034,39.41876288,110 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_314_21,-74.5761923,39.41848547,108 N MANSFIELD AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_314_22,-74.582225,39.41792,104 N MANSFIELD AVE,MARGATE CITY CITY,17,1947,1,GOV1,3004 -0116_314_23,-74.57994889,39.41755025,102 N MANSFIELD AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_314_24,-74.5897465,39.416849,8601 WINCHESTER AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_314_5,-74.5636725,39.4159065,113 N NASSAU AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_314_6,-74.56258958,39.41475119,111 N NASSAU AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_314_9,-74.56334677,39.41160959,107 N NASSAU AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_315_1,-74.58752138,39.41597892,123 N OSBORNE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_315_10,-74.59829386,39.41567076,103 N OSBORNE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_315_12,-74.6060487,39.41203306,8607 WINCHESTER AVE,MARGATE CITY CITY,20,1949,1,RES1,3001 -0116_315_13,-74.61186678,39.41549606,8606 MONMOUTH AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_315_15,-74.58546709,39.42569726,118 N NASSAU AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_315_17,-74.586116,39.424887,114 N NASSAU AVE,MARGATE CITY CITY,21,2016,1,GOV1,3004 -0116_315_19,-74.5872023,39.42307862,112 N NASSAU AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_315_20,-74.58456262,39.43285094,110 N NASSAU AVE,MARGATE CITY CITY,20,2001,1,RES1,3001 -0116_315_21,-74.58866219,39.42990931,104 N NASSAU AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_315_23,-74.60743453,39.42433064,102 N NASSAU AVE,MARGATE CITY CITY,17,1946,1,GOV1,3004 -0116_315_24,-74.59964945,39.4195177,8605 WINCHESTER AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_315_5,-74.60640609,39.40861895,117 N OSBORNE AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_315_6,-74.6019875,39.418783,115 N OSBORNE AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_315_8,-74.60749141,39.4171552,111 N OSBORNE AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_316_1,-74.61228582,39.42059747,8702 MONMOUTH AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_316_10,-74.63720419,39.36831142,105 N PEMBROKE AVE,MARGATE CITY CITY,17,1933,1,RES1,3001 -0116_316_11,-74.62453594,39.38469267,103 N PEMBROKE AVE,MARGATE CITY CITY,17,1922,1,RES1,3001 -0116_316_12,-74.625292,39.3836605,101 N PEMBROKE AVE,MARGATE CITY CITY,20,2012,1,RES1,3004 -0116_316_14,-74.62517083,39.38240483,120 N OSBORNE AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_316_15,-74.62289212,39.38200316,118 N OSBORNE AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_316_17,-74.62375973,39.37859296,114 N OSBORNE AVE,MARGATE CITY CITY,17,1941,1,RES1,3001 -0116_316_18,-74.6362466,39.38453305,112 N OSBORNE AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_316_19,-74.6363175,39.382425,110 N OSBORNE AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_316_2,-74.59903757,39.4318728,121 N PEMBROKE AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_316_20,-74.63727849,39.38202465,108 N OSBORNE AVE,MARGATE CITY CITY,19,1991,1,RES1,3001 -0116_316_21,-74.6353965,39.382013,106 N OSBORNE AVE,MARGATE CITY CITY,19,1992,1,RES1,3001 -0116_316_22,-74.64582051,39.38125616,104 N OSBORNE AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_316_23,-74.62331778,39.39274768,102 N OSBORNE AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_316_24,-74.6282523,39.39072409,8701 WINCHESTER AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_316_3,-74.49402031,39.33138108,119 N PEMBROKE AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_316_5.01,-74.60281404,39.43090414,115 N PEMBROKE AVE,MARGATE CITY CITY,18,1921,1,RES1,3001 -0116_316_5.02,-74.5977455,39.430626,113 N PEMBROKE AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_316_7,-74.61300569,39.42782585,109 N PEMBROKE AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_316_9,-74.62100532,39.37435798,107 N PEMBROKE AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_317_1,-74.63697401,39.38715717,123 N QUINCY AVE,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_317_10,-74.62540381,39.41891743,105 N QUINCY AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_317_11,-74.62304846,39.41887261,103 N QUINCY AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_317_12,-74.62320231,39.41350046,101 N QUINCY AVE,MARGATE CITY CITY,17,1970,1,RES1,3001 -0116_317_13,-74.65045838,39.41065488,124 N PEMBROKE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_317_14,-74.64552431,39.4065894,122 N PEMBROKE AVE,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_317_15,-74.66276641,39.40328648,120 N PEMBROKE AVE,MARGATE CITY CITY,19,2001,1,RES1,3001 -0116_317_16,-74.6297912,39.42715804,116 N PEMBROKE AVE,MARGATE CITY CITY,17,1909,1,RES1,3001 -0116_317_18,-74.62778303,39.42379032,114 N PEMBROKE AVE,MARGATE CITY CITY,17,1922,1,RES1,3001 -0116_317_19,-74.62361024,39.42032089,112 N PEMBROKE AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_317_2,-74.637671,39.4009475,121 N QUINCY AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_317_20,-74.6325893,39.42394216,110 N PEMBROKE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_317_21,-74.64104021,39.4346811,108 N PEMBROKE AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_317_22,-74.63154732,39.43318558,106 N PEMBROKE AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_317_24,-74.634668,39.427806,8705 WINCHESTER AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_317_3,-74.639186,39.400346,119 N QUINCY AVE,MARGATE CITY CITY,17,1916,1,RES1,3001 -0116_317_4,-74.643081,39.3948375,117 N QUINCY AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_317_5,-74.65348352,39.39459779,115 N QUINCY AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_317_6,-74.70153215,39.37081755,113 N QUINCY AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_317_7,-74.66662016,39.39392703,111 N QUINCY AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_317_8,-74.62874348,39.40855633,109 N QUINCY AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_317_9,-74.63296832,39.40866897,107 N QUINCY AVE,MARGATE CITY CITY,18,1935,1,GOV1,3004 -0116_318_10,-74.53448388,39.44956312,105 N RUMSON AVE,MARGATE CITY CITY,,1910,1,RES1,3001 -0116_318_12.01,-74.5406835,39.4686045,103 N RUMSON AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_318_12.02,-74.53491983,39.46759628,101 N RUMSON AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_318_13,-74.5492935,39.4689545,126 N QUINCY AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_318_14,-74.54727585,39.4657552,124 N QUINCY AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_318_15,-74.54770794,39.46429323,122 N QUINCY AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_318_16,-74.549816,39.464315,120 N QUINCY AVE,MARGATE CITY CITY,22,2016,1,RES1,3001 -0116_318_18,-74.5506305,39.46374,112 N QUINCY AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_318_19,-74.55761366,39.46998751,110 N QUINCY AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_318_20,-74.55518172,39.46892153,108 N QUINCY AVE,MARGATE CITY CITY,47,1930,2,RES1,3001 -0116_318_21,-74.57845734,39.4438343,106 N QUINCY AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_318_22,-74.57988134,39.44301628,104 N QUINCY AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_318_23,-74.58102767,39.44672664,102 N QUINCY AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_318_24,-74.60962249,39.44082617,100 N QUINCY AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_318_3,-74.64408547,39.43485218,119 N RUMSON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_318_4,-74.6423105,39.434272,117 N RUMSON AVE,MARGATE CITY CITY,17,1910,1,RES1,3001 -0116_318_5,-74.643712,39.4292455,115 N RUMSON AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_318_6,-74.687331,39.4163195,113 N RUMSON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_318_7,-74.53309617,39.451782,111 N RUMSON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_318_8,-74.53464134,39.44991203,107 N RUMSON AVE,MARGATE CITY CITY,19,1941,1,RES1,3001 -0116_319_1,-74.61308103,39.43927432,123 N SUMNER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_319_10,-74.546494,39.4715395,105 N SUMNER AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_319_11,-74.55671155,39.4756463,103 N SUMNER AVE,MARGATE CITY CITY,17,1923,1,RES1,3001 -0116_319_12,-74.55929072,39.47215005,8807 WINCHESTER AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_319_13,-74.56659314,39.47664095,8804 MONMOUTH AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_319_14,-74.56941,39.4786085,122 N RUMSON AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_319_15,-74.534206,39.488982,120 N RUMSON AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_319_16,-74.579822,39.473151,118 N RUMSON AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_319_17,-74.5986435,39.47114547,114 N RUMSON AVE,MARGATE CITY CITY,20,1989,1,GOV1,3004 -0116_319_18,-74.60987677,39.48683462,112 N RUMSON AVE,MARGATE CITY CITY,19,1991,1,RES1,3001 -0116_319_19,-74.616761,39.4937715,106 N RUMSON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_319_20.01,-74.5108645,39.3229405,107 N SUMNER AVE,MARGATE CITY CITY,19,2008,1,RES1,3001 -0116_319_20.02,-74.51766658,39.32261981,104 N RUMSON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_319_22,-74.61294916,39.49001404,102 N RUMSON AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_319_24,-74.62009043,39.43809895,100 N RUMSON AVE,MARGATE CITY CITY,17,1950,1,RES4,3001 -0116_319_4.01,-74.5357455,39.473403,119 N SUMNER AVE,MARGATE CITY CITY,19,2004,1,RES1,3001 -0116_319_4.02,-74.53913722,39.47038158,117 N SUMNER AVE,MARGATE CITY CITY,20,2002,1,RES1,3001 -0116_319_5,-74.5320465,39.470204,115 N SUMNER AVE,MARGATE CITY CITY,17,1919,1,RES1,3001 -0116_319_6,-74.54540328,39.47585397,113 N SUMNER AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_319_7,-74.5466885,39.474912,111 N SUMNER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_319_8,-74.55265335,39.47458724,109 N SUMNER AVE,MARGATE CITY CITY,20,2011,1,RES1,3001 -0116_32.02_1,-74.6956865,39.6383125,9800 PACIFIC AVE,MARGATE CITY CITY,47,1979,2,RES1,3001 -0116_32.02_2,-74.6637995,39.634637,102 S COOLIDGE AVE,MARGATE CITY CITY,17,1924,1,RES1,3001 -0116_32.02_3_C0003,-74.68810002,39.6306718,9801 ATLANTIC AVE,MARGATE CITY CITY,21,1956,1,RES1,3001 -0116_320_1.01,-74.624175,39.4522745,123 N THURLOW AVE,MARGATE CITY CITY,20,2003,1,RES1,3001 -0116_320_1.02,-74.64389876,39.43672016,121 N THURLOW AVE,MARGATE CITY CITY,20,2002,1,RES1,3001 -0116_320_10,-74.68892435,39.44804811,105 N THURLOW AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_320_11,-74.66690585,39.46343628,103 N THURLOW AVE,MARGATE CITY CITY,47,1923,2,RES1,3001 -0116_320_12,-74.638289,39.482984,8903 WINCHESTER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_320_13,-74.63646255,39.48184734,8900 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_320_14,-74.6945271,39.47875339,120 N SUMNER AVE,MARGATE CITY CITY,17,1956,1,GOV1,3004 -0116_320_15,-74.69265,39.478718,118 N SUMNER AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_320_16,-74.69112916,39.48868315,116 N SUMNER AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_320_17,-74.6899705,39.5006885,114 N SUMNER AVE,MARGATE CITY CITY,17,1918,1,RES1,3001 -0116_320_18,-74.68734644,39.49903811,112 N SUMNER AVE,MARGATE CITY CITY,17,1986,1,RES1,3001 -0116_320_19,-74.70871585,39.41524516,110 N SUMNER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_320_21,-74.74251232,39.41162383,106 N SUMNER AVE,MARGATE CITY CITY,17,1924,1,RES1,3001 -0116_320_22,-74.75823799,39.43258783,104 N SUMNER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_320_23,-74.7539255,39.4314005,102 N SUMNER AVE,MARGATE CITY CITY,17,1931,1,GOV1,3004 -0116_320_24,-74.7564285,39.429614,100 N SUMNER AVE,MARGATE CITY CITY,17,1931,1,RES1,3001 -0116_320_3,-74.6416067,39.44948293,119 N THURLOW AVE,MARGATE CITY CITY,17,1912,1,RES1,3001 -0116_320_5,-74.6491311,39.44765179,115 N THURLOW AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_320_6,-74.62944319,39.45327245,113 N THURLOW AVE,MARGATE CITY CITY,17,1973,1,RES1,3004 -0116_320_7,-74.63207102,39.46112822,111 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_320_8,-74.63271511,39.45605579,109 N THURLOW AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_320_9,-74.65316003,39.45520886,107 N THURLOW AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_321_1,-74.75545773,39.42911215,8906 MONMOUTH AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_321_10,-74.82883541,39.39986083,105 N UNION AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_321_11,-74.84573446,39.38274257,103 N UNION AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_321_12,-74.81621772,39.40710979,8907 WINCHESTER AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_321_13,-74.82733925,39.4086643,124 N THURLOW AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_321_14,-74.84392514,39.40826391,122 N THURLOW AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_321_15,-74.85231462,39.4322878,120 N THURLOW AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_321_17.01,-74.521487,39.316644,118 N THURLOW AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_321_17.02,-74.52033624,39.31515716,116 N THURLOW AVE,MARGATE CITY CITY,20,2004,1,GOV1,3004 -0116_321_18,-74.71855326,39.44783906,114 N THURLOW AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_321_19,-74.71507835,39.45020333,112 N THURLOW AVE,MARGATE CITY CITY,17,1914,1,RES1,3001 -0116_321_2,-74.754344,39.429023,129 N UNION AVE,MARGATE CITY CITY,17,1933,1,RES1,3001 -0116_321_20,-74.733876,39.439702,108 N THURLOW AVE,MARGATE CITY CITY,20,1951,1,RES1,3001 -0116_321_21,-74.73825684,39.45182455,106 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_321_23,-74.734819,39.4506635,102 N THURLOW AVE,MARGATE CITY CITY,19,1951,1,RES1,3001 -0116_321_24,-74.73465568,39.44842507,100 N THURLOW AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_321_3,-74.76332,39.430212,127 N UNION AVE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_321_4,-74.8270813,39.38093703,125 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_321_5,-74.81774833,39.3790547,123 N UNION AVE,MARGATE CITY CITY,17,1931,1,RES1,3001 -0116_321_6,-74.830595,39.3810285,121 N UNION AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_321_7,-74.82827457,39.39234067,111 N UNION AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_321_8,-74.83861511,39.38686154,109 N UNION AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_321_9,-74.82576441,39.39499641,107 N UNION AVE,MARGATE CITY CITY,19,1964,1,RES1,3001 -0116_322_1,-74.73346259,39.44776071,9001 WINCHESTER AVE,MARGATE CITY CITY,,1952,1,RES1,3001 -0116_323_1,-74.74790383,39.44682263,9002 MONMOUTH AVE,MARGATE CITY CITY,19,2008,1,RES1,3001 -0116_323_10,-74.73263034,39.46257302,104 N VENDOME AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_323_11,-74.75417517,39.45305657,102 N VENDOME AVE,MARGATE CITY CITY,17,1961,1,GOV1,3004 -0116_323_12,-74.75299568,39.45068666,9005 WINCHESTER AVE,MARGATE CITY CITY,18,1956,1,RES1,3001 -0116_323_13,-74.75295778,39.44856002,119 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_323_14,-74.75622422,39.44659095,117 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_323_15,-74.759818,39.4465145,115 N WILSON AVE,MARGATE CITY CITY,45,1948,2,RES1,3001 -0116_323_16,-74.75416815,39.45389673,113 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_323_17,-74.78085146,39.45602437,111 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_323_18_C000A,-74.75903188,39.48103191,109 N WILSON AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_323_19_C0200,-74.76668296,39.48652266,107 N WILSON AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_323_2,-74.74648916,39.44514918,120 N VENDOME AVE,MARGATE CITY CITY,18,1991,1,RES1,3001 -0116_323_20,-74.78242989,39.5028253,105 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_323_21,-74.83463028,39.4476521,103 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_323_22,-74.805509,39.46734667,101 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_323_3,-74.72512619,39.45794957,118 N VENDOME AVE,MARGATE CITY CITY,19,2008,1,RES1,3001 -0116_323_4,-74.721378,39.4574815,116 N VENDOME AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_323_5,-74.72400172,39.45552955,114 N VENDOME AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_323_6,-74.7267545,39.455517,112 N VENDOME AVE,MARGATE CITY CITY,17,1957,1,IND1,3002 -0116_323_7,-74.7283595,39.454626,110 N VENDOME AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_323_9,-74.715437,39.467064,106 N VENDOME AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_324.01_1,-74.81821733,39.46860038,118 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.01_10,-74.880518,39.4528225,100 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.01_125,-74.86860613,39.46209744,N BENSON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_324.01_3,-74.85654525,39.45162545,114 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.01_5,-74.857532,39.4474975,110 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.01_6,-74.85763472,39.44604548,108 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.01_7_C000B,-74.8808105,39.443587,106 N HARDING AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_324.01_9,-74.86416812,39.44911194,102 N HARDING AVE,MARGATE CITY CITY,47,1948,2,GOV1,3004 -0116_324.02_1,-74.88070113,39.46894028,118 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_10,-74.57013869,39.35014498,100 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3004 -0116_324.02_11.01,-74.569226,39.348803,119 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_11.02,-74.54090721,39.35522136,9102 MONMOUTH AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_324.02_12_C000B,-74.55686903,39.35781782,117 N HARDING AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_324.02_15,-74.574612,39.35132,111 N HARDING AVE,MARGATE CITY CITY,47,1948,2,COM1,3004 -0116_324.02_16,-74.55954058,39.36719085,109 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_17,-74.56380951,39.36391683,107 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_19,-74.5537195,39.3629625,103 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_2,-74.8253505,39.48531,116 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES3B,3001 -0116_324.02_20,-74.5605777,39.36174262,101 N HARDING AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_3,-74.6045915,39.333059,114 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_4,-74.60483634,39.33241451,112 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_6_C000A,-74.60604917,39.33113785,108 N WILSON AVE,MARGATE CITY CITY,18,1948,1,COM1,3004 -0116_324.02_7,-74.59977784,39.33079748,106 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3001 -0116_324.02_8_C000A,-74.611603,39.3275805,104 N WILSON AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_324.02_9,-74.57051049,39.34162795,102 N WILSON AVE,MARGATE CITY CITY,47,1948,2,RES1,3004 -0116_325_126,-74.55844582,39.36135116,111 N DECATUR AVE,MARGATE CITY CITY,,0,1,COM8,3004 -0116_326_25_C000D,-74.55836251,39.36055238,9200 MONMOUTH AVE,MARGATE CITY CITY,22,1961,1,RES1,3001 -0116_326_28_C000E,-74.5715205,39.367155,127 N WASHINGTON AVE,MARGATE CITY CITY,22,1951,1,RES1,3001 -0116_326_34.03_C000B,-74.49430205,39.32989017,112 N DECATUR AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_326_35.01_C000C,-74.57423351,39.36646727,106-110 N DECATUR AVE,MARGATE CITY CITY,39,1991,1,RES1,3001 -0116_326_41,-74.5677265,39.3655235,121 N WASHINGTON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_326_42,-74.5682185,39.364811,119 N WASHINGTON AVE,MARGATE CITY CITY,19,2008,1,RES1,3001 -0116_326_43_C0002,-74.57240723,39.36463746,115 N WASHINGTON AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_326_46_C000A,-74.4960648,39.32938303,111 N WASHINGTON AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_326_54,-74.56943761,39.36406412,101 N WASHINGTON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_327_101_C000B,-74.57217266,39.50520402,126 N WASHINGTON AVE,MARGATE CITY CITY,21,1964,1,RES3A,3001 -0116_327_102_C0002,-74.55171406,39.53176933,102 N WASHINGTON AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_327_103,-74.53254733,39.52264937,128 N WASHINGTON AVE,MARGATE CITY CITY,47,1958,2,RES1,3001 -0116_327_402,-74.56401601,39.52154333,106 N WASHINGTON AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_327_404,-74.57366239,39.52373439,108 N WASHINGTON AVE,MARGATE CITY CITY,18,1954,1,RES1,3001 -0116_327_408,-74.56115,39.532391,112 N WASHINGTON AVE,MARGATE CITY CITY,45,1956,2,RES1,3001 -0116_327_413,-74.6015085,39.521223,117 N ADAMS AVE,MARGATE CITY CITY,20,2018,1,RES1,3001 -0116_327_416,-74.602615,39.53,118 N WASHINGTON AVE,MARGATE CITY CITY,19,2015,1,RES1,3001 -0116_327_417_C0001,-74.5767255,39.543034,121 N ADAMS AVE,MARGATE CITY CITY,20,2002,1,RES1,3001 -0116_327_418,-74.57794144,39.54043247,122-124 N WASHINGTON AVE,MARGATE CITY CITY,17,1923,3,RES1,3001 -0116_327_85.01,-74.56993379,39.36287951,129 N ADAMS AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_327_85.02,-74.56778102,39.36246497,127 N ADAMS AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_327_85.03,-74.5643858,39.36200966,125 N ADAMS AVE,MARGATE CITY CITY,39,2003,1,IND2,3002 -0116_327_89,-74.5643255,39.361274,9312 MONMOUTH AVE,MARGATE CITY CITY,17,1953,1,GOV1,3004 -0116_327_90,-74.5837495,39.3409625,103 N ADAMS AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_327_92_C0200,-74.82428407,39.49238471,9309 WINCHESTER AVE,MARGATE CITY CITY,18,1940,1,RES1,3001 -0116_327_93_C0001,-74.882217,39.4918755,9308 MONMOUTH AVE,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_327_96,-74.555099,39.5106105,9307 WINCHESTER AVE,MARGATE CITY CITY,45,1940,2,RES1,3001 -0116_327_99.01,-74.55763,39.508523,9304 MONMOUTH AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_327_99.02,-74.558489,39.507214,9304 MONMOUTH AVE REAR,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_328_403,-74.64551954,39.54988626,105 N JEFFERSON AVE,MARGATE CITY CITY,43,1900,4,RES1,3002 -0116_328_404_C000B,-74.65381911,39.54771859,108 N ADAMS AVE,MARGATE CITY CITY,20,1999,1,RES1,3001 -0116_328_409,-74.670294,39.5436705,115 N JEFFERSON AVE,MARGATE CITY CITY,45,1959,2,RES1,3001 -0116_328_412,-74.68495339,39.55031412,116 N ADAMS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_328_415_C000C,-74.6832245,39.5485635,119 N JEFFERSON AVE,MARGATE CITY CITY,20,2004,1,RES3B,3001 -0116_328_418_C000B,-74.6886615,39.557791,122 N ADAMS AVE,MARGATE CITY CITY,20,2005,1,GOV1,3002 -0116_328_422_C205L,-74.7049725,39.5627435,130 N ADAMS AVE,MARGATE CITY CITY,20,1957,1,RES1,3001 -0116_328_66_C000A,-74.62003499,39.50886052,9417 WINCHESTER AVE,MARGATE CITY CITY,20,1991,1,RES1,3001 -0116_328_67,-74.63256283,39.52941799,9420A MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.01,-74.63668739,39.53768363,9418A MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.02,-74.63917133,39.535269,9416A MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.03,-74.63182755,39.53040684,9414A MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.04,-74.63908953,39.52974377,9412A MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.05,-74.64579458,39.52919778,9410A MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.06,-74.64660593,39.52848665,9408A MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.07,-74.64167988,39.52695836,9408B MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.08,-74.65363767,39.52408054,9410B MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.09,-74.64199641,39.53300679,9412B MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.10,-74.64365265,39.53292516,9414B MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.11,-74.64421822,39.53207226,9416B MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.12,-74.64940481,39.53188397,9418B MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_67.13,-74.65200453,39.52957454,9420B MONMOUTH AVE,MARGATE CITY CITY,39,1984,1,RES1,3001 -0116_328_70_C000A,-74.6777035,39.5117175,9415 WINCHESTER AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_328_72.01_C000B,-74.80691373,39.62775923,9413 WINCHESTER AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_328_78.01_C000B,-74.8042195,39.6392505,9409 WINCHESTER AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_328_78.02_C000A,-74.797031,39.639,9411 WINCHESTER AVE,MARGATE CITY CITY,22,2005,1,RES1,3001 -0116_328_82,-74.6345445,39.5531045,102 N ADAMS AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_328_82.01,-74.6478014,39.53805531,9401 WINCHESTER AVE,MARGATE CITY CITY,47,1987,2,RES1,3001 -0116_329_401,-74.70186049,39.58622299,105 N MADISON AVE,MARGATE CITY CITY,30,1920,3,RES2,3005 -0116_329_402_C000B,-74.6243155,39.609732,106 N JEFFERSON AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_329_403,-74.70139276,39.58370976,107 N MADISON AVE,MARGATE CITY CITY,47,1920,1,RES1,3001 -0116_329_406_C000B,-74.65353044,39.62477967,110 N JEFFERSON AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_329_407_C0001,-74.6981175,39.62199,111 N MADISON AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_329_413,-74.778686,39.5157625,117 N MADISON AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_329_415,-74.79099844,39.53403285,119 N MADISON AVE,MARGATE CITY CITY,16,1922,1,RES1,3001 -0116_329_416,-74.7163165,39.5694555,120 N JEFFERSON AVE,MARGATE CITY CITY,18,1953,1,RES1,3001 -0116_329_420,-74.71032297,39.5673307,124 N JEFFERSON AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_329_45,-74.69539032,39.56813168,125 N MADISON AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_329_47,-74.6101975,39.5921555,123 N MADISON AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_329_48,-74.60757415,39.61794396,103 N MADISON AVE,MARGATE CITY CITY,20,2017,1,RES1,3001 -0116_329_49,-74.61780475,39.62063726,9514 MONMOUTH AVE,MARGATE CITY CITY,16,1930,1,RES1,3001 -0116_329_51,-74.66235498,39.58117455,9512 MONMOUTH AVE,MARGATE CITY CITY,43,1930,2,RES1,3001 -0116_329_53_C000A,-74.62319134,39.60562598,9510 MONMOUTH AVE,MARGATE CITY CITY,20,1989,1,RES1,3001 -0116_329_54,-74.64552348,39.60057734,9511 WINCHESTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_329_60,-74.66318097,39.58283683,9505 WINCHESTER AVE,MARGATE CITY CITY,17,1910,2,RES1,3001 -0116_329_62,-74.66945164,39.58249308,102 N JEFFERSON AVE,MARGATE CITY CITY,45,1950,2,RES1,3001 -0116_329_64,-74.68666775,39.57183294,104 N JEFFERSON AVE,MARGATE CITY CITY,43,1930,2,RES1,3001 -0116_330_25_C0006,-74.796863,39.530252,127 N MONROE AVE,MARGATE CITY CITY,19,1967,1,RES1,3001 -0116_330_27,-74.83874762,39.5298752,125 N MONROE AVE,MARGATE CITY CITY,47,1922,3,RES1,3001 -0116_330_30,-74.82778245,39.57016277,103 N MONROE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_330_31,-74.859186,39.5436335,9614 MONMOUTH AVE,MARGATE CITY CITY,17,1922,1,RES1,3001 -0116_330_32_C015A,-74.8517785,39.5507025,9615A WINCHESTER AVE,MARGATE CITY CITY,20,1960,1,RES1,3001 -0116_330_33,-74.84328227,39.55955984,9612 MONMOUTH AVE,MARGATE CITY CITY,17,1925,2,RES1,3001 -0116_330_34.01_C000B,-74.85371016,39.56015504,9611 WINCHESTER AVE,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_330_34.02_C000A,-74.856783,39.5684715,9609 WINCHESTER AVE,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_330_34.03_C000A,-74.8581595,39.5663705,9607 WINCHESTER AVE,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_330_35_C0003,-74.86370842,39.5624497,9610 MONMOUTH AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_330_39,-74.86507618,39.56596755,9606 MONMOUTH AVE,MARGATE CITY CITY,47,1972,2,RES1,3001 -0116_330_399,-74.7206055,39.572784,107 N MONROE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_330_401,-74.71637826,39.58078551,109 N MONROE AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_330_402_C000C,-74.763165,39.604321,106 N MADISON AVE,MARGATE CITY CITY,20,2001,1,RES1,3001 -0116_330_405,-74.78747731,39.59591329,111 N MONROE AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_330_407_C000B,-74.79109506,39.59584734,113 N MONROE AVE,MARGATE CITY CITY,20,2002,1,RES1,3001 -0116_330_408,-74.76951731,39.60964462,110 N MADISON AVE,MARGATE CITY CITY,45,1957,2,RES1,3001 -0116_330_411_C000B,-74.76956294,39.61448723,119 N MONROE AVE,MARGATE CITY CITY,20,2003,1,RES1,3001 -0116_330_412,-74.794576,39.6067545,112 N MADISON AVE,MARGATE CITY CITY,45,1957,2,RES1,3004 -0116_330_415,-74.77994291,39.62260602,121 N MONROE AVE,MARGATE CITY CITY,45,1954,2,RES1,3001 -0116_330_416,-74.77091637,39.63290078,116-118 N MADISON AVE,MARGATE CITY CITY,45,1957,2,RES1,3001 -0116_330_419,-74.77001202,39.63169328,123 N MONROE AVE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_330_42,-74.71769207,39.57630718,100 N MADISON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_331_11,-74.7962644,39.59605765,9712 MONMOUTH AVE,MARGATE CITY CITY,17,1880,1,RES1,3001 -0116_331_12,-74.8027287,39.60532483,9713 WINCHESTER AVE,MARGATE CITY CITY,20,2001,1,RES1,3001 -0116_331_13,-74.87204011,39.57620967,9710 MONMOUTH AVE,MARGATE CITY CITY,47,1989,3,COM3,3004 -0116_331_14,-74.8786501,39.57188889,9711 WINCHESTER AVE,MARGATE CITY CITY,19,2010,1,RES1,3001 -0116_331_16,-74.86661915,39.59424993,9709 WINCHESTER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_331_19,-74.86972982,39.59314803,9704 MONMOUTH AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_331_21,-74.869418,39.5914835,120 N MONROE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_331_22,-74.872993,39.596514,9703 WINCHESTER AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_331_23,-74.87731702,39.59544849,122 N MONROE AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_331_26,-74.879425,39.5952675,102 N MONROE AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_331_407,-74.878017,39.5948985,111 N COOLIDGE AVE,MARGATE CITY CITY,17,1906,2,RES1,3001 -0116_331_408,-74.880188,39.592916,110 N MONROE AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_331_411,-74.8719445,39.592614,115 N COOLIDGE AVE,MARGATE CITY CITY,17,1925,1,REL1,3004 -0116_331_414,-74.877711,39.5922615,114 N MONROE AVE,MARGATE CITY CITY,17,1941,1,COM3,3004 -0116_331_415,-74.880695,39.5912045,119 N COOLIDGE AVE,MARGATE CITY CITY,17,1918,1,RES1,3001 -0116_331_417,-74.87709518,39.60214931,121 N COOLIDGE AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_331_5.01,-74.77901633,39.62553799,127 N COOLIDGE AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_331_5.02,-74.79481336,39.63854235,125 N COOLIDGE AVE,MARGATE CITY CITY,39,2001,1,RES1,3001 -0116_331_5.03,-74.79012029,39.63459839,123 N COOLIDGE AVE,MARGATE CITY CITY,39,2001,1,RES1,3001 -0116_331_6,-74.79139663,39.63353128,9717 WINCHESTER AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_331_8,-74.78744635,39.63185569,103 N COOLIDGE AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_331_9,-74.83065854,39.58738902,9714 MONMOUTH AVE,MARGATE CITY CITY,18,1900,1,RES1,3001 -0116_332_3.01,-74.8764546,39.5978533,130 N COOLIDGE AVE,MARGATE CITY CITY,19,2008,1,RES1,3004 -0116_332_3.02,-74.7981474,39.62154003,128 N COOLIDGE AVE,MARGATE CITY CITY,20,2002,1,RES1,3001 -0116_332_4,-74.79963183,39.62081946,102 N COOLIDGE AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_332_402,-74.7975625,39.620628,106 N COOLIDGE AVE,MARGATE CITY CITY,20,2001,1,RES4,3001 -0116_332_404,-74.79804448,39.61899766,108 N COOLIDGE AVE,MARGATE CITY CITY,17,1926,1,RES1,3004 -0116_332_406,-74.80726231,39.62233386,110 N COOLIDGE AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_332_410,-74.83185116,39.61451953,112 N COOLIDGE AVE,MARGATE CITY CITY,20,2016,1,GOV1,3004 -0116_332_412,-74.79813288,39.6285811,116 N COOLIDGE AVE,MARGATE CITY CITY,17,1922,1,RES1,3001 -0116_332_414,-74.80965306,39.62902265,118 N COOLIDGE AVE,MARGATE CITY CITY,17,1923,1,RES1,3001 -0116_332_418,-74.813117,39.6280075,124 N COOLIDGE AVE,MARGATE CITY CITY,17,1920,3,RES1,3001 -0116_4.01_1,-74.5709865,39.361001,7702 ATLANTIC AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_4.01_10,-74.58629335,39.33715124,104 S CLERMONT AVE,MARGATE CITY CITY,22,2016,1,RES1,3001 -0116_4.01_11,-74.59549,39.335194,110 S CLERMONT AVE,MARGATE CITY CITY,16,1948,1,RES1,3001 -0116_4.01_2,-74.56998278,39.36080311,103 S DELAVAN AVE,MARGATE CITY CITY,20,1930,1,RES1,3001 -0116_4.01_3,-74.56865662,39.3608173,105 S DELAVAN AVE,MARGATE CITY CITY,20,1948,1,RES1,3001 -0116_4.01_4,-74.56727932,39.36048949,107 S DELAVAN AVE,MARGATE CITY CITY,21,1990,1,RES1,3001 -0116_4.01_8,-74.58310717,39.33933183,100 S CLERMONT AVE,MARGATE CITY CITY,20,1929,1,RES1,3001 -0116_4.01_9,-74.575329,39.337293,102 S CLERMONT AVE,MARGATE CITY CITY,21,1925,1,RES1,3001 -0116_4.02_1,-74.57669289,39.35036509,101 S DOUGLAS AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_4.02_10,-74.59619991,39.36533125,106 S DELAVAN AVE,MARGATE CITY CITY,19,1925,1,GOV1,3004 -0116_4.02_11,-74.5985865,39.3671285,108 S DELAVAN AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_4.02_12,-74.60616,39.3647145,110 S DELAVAN AVE,MARGATE CITY CITY,20,1952,1,RES1,3001 -0116_4.02_13,-74.505325,39.332798,112 S DELAVAN AVE,MARGATE CITY CITY,21,2007,1,RES1,3001 -0116_4.02_2,-74.61223319,39.3404948,103 S DOUGLAS AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_4.02_3,-74.61628053,39.34975168,105 S DOUGLAS AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_4.02_4,-74.58486266,39.35453948,107 S DOUGLAS AVE,MARGATE CITY CITY,21,2001,1,RES1,3001 -0116_4.02_5,-74.50608039,39.33393409,109 S DOUGLAS AVE,MARGATE CITY CITY,21,2007,1,RES1,3001 -0116_4.02_8,-74.58654387,39.35825581,102 S DELAVAN AVE,MARGATE CITY CITY,19,1982,1,GOV1,3004 -0116_4.02_9,-74.57634621,39.36766326,104 S DELAVAN AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_401_1,-74.80195567,39.634623,7407 MONMOUTH AVE,MARGATE CITY CITY,17,1951,1,GOV1,3004 -0116_401_10,-74.8081225,39.6342425,204 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_401_12,-74.81205345,39.63308609,206 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_401_13,-74.81427884,39.63302047,207 N ARGYLE AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_401_14,-74.825622,39.6392395,208 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_401_18,-74.8481495,39.607761,210 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_401_19,-74.522454,39.32238,213 N ARGYLE AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_401_2,-74.79971833,39.634035,7401 MONMOUTH AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_401_21,-74.858596,39.6169245,215 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_401_22,-74.85879036,39.61627092,216 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_401_24,-74.85514832,39.61524706,7402 AMHERST AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_401_25,-74.857714,39.614647,217 N ARGYLE AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_401_26,-74.90820575,39.48138545,7404 AMHERST AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_401_27,-74.918958,39.4819585,7403 MONMOUTH AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_401_28,-74.92090229,39.49653008,7405 MONMOUTH AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_401_32,-74.934569,39.4894505,201 N ARGYLE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_401_6,-74.79650477,39.63264518,202 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1926,1,RES1,3001 -0116_401_7,-74.79620803,39.63142733,203 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_401_9,-74.80625306,39.63689553,205 N ARGYLE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_402_1,-74.9318285,39.4960995,7501 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_402_2,-74.94558933,39.49566147,7503 MONMOUTH AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_402_3,-74.959516,39.4982195,7505 MONMOUTH AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_402_4,-74.88533559,39.50913509,201 N BARCLAY AVE,MARGATE CITY CITY,17,1949,1,REL1,3004 -0116_402_5,-74.88866904,39.50629749,203 N BARCLAY AVE,MARGATE CITY CITY,18,1950,1,GOV1,3004 -0116_402_6,-74.9136105,39.5114665,204 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_403_1,-74.926657,39.5103855,7509 MONMOUTH AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_403_2,-74.926473,39.509563,7511 MONMOUTH AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_403_3,-74.91879671,39.51338752,7513 MONMOUTH AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_403_4,-74.92818684,39.50910752,201 N BRUNSWICK DR,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_403_5,-74.928647,39.5090605,203 N BRUNSWICK DR,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_403_6,-74.92828908,39.50901639,204 N BARCLAY AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_404.01_1,-74.92812698,39.50749506,7607 MONMOUTH AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_404.01_11,-74.93757999,39.52327433,218 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.01_13,-74.94333318,39.52490997,216 N CLARENDON AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_404.01_14,-74.94761108,39.52434059,214 N CLARENDON AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_404.01_15,-74.9537205,39.5215715,212 N CLARENDON AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_404.01_16,-74.95082785,39.53357893,206 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.01_17,-74.89077835,39.56647568,204 N CLARENDON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_404.01_18,-74.918865,39.5622615,202 N CLARENDON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_404.01_19,-74.9208905,39.5638785,200 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.01_2,-74.94199909,39.52035669,203 N CLERMONT AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_404.01_3,-74.953864,39.511373,205 N CLERMONT AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_404.01_4,-74.9625205,39.5116635,207 N CLERMONT AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_404.01_5,-74.948918,39.5197385,215 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_404.01_6,-74.957378,39.5191365,217 N CLERMONT AVE,MARGATE CITY CITY,17,1949,1,RES1,3004 -0116_404.01_7,-74.96161498,39.52017773,219 N CLERMONT AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_404.01_9,-74.9270015,39.528742,7606 AMHERST AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_404.02_10,-74.689513,39.654368,219 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_404.02_12,-74.79059625,39.64812345,223 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_404.02_14,-74.77314475,39.6615099,7702 AMHERST AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_15,-74.77361464,39.66920198,222 N CLERMONT AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_404.02_16,-74.786781,39.6759415,220 N CLERMONT AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_404.02_17,-74.80304684,39.64775802,218 N CLERMONT AVE,MARGATE CITY CITY,17,1931,1,RES1,3001 -0116_404.02_18,-74.80486166,39.64470848,216B N CLERMONT AVE,MARGATE CITY CITY,17,1985,1,RES1,3001 -0116_404.02_19,-74.80173785,39.64280381,216 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_20,-74.8059,39.6397,214 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_21,-74.8061037,39.64337523,212 N CLERMONT AVE,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_404.02_22,-74.80913366,39.64247102,210 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_23,-74.80949483,39.64030949,208 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_24,-74.7977552,39.65300564,206 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_25,-74.79694392,39.65257166,204 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_26,-74.80060968,39.64805898,7701 MONMOUTH AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_404.02_3,-74.95342636,39.53864997,205 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_4,-74.9789445,39.512013,207 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.02_5,-74.885387,39.5836405,209 N DELAVAN AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_404.02_6,-74.89906102,39.58815666,211 N DELAVAN AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_404.02_7,-74.88701757,39.59549565,213 N DELAVAN AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_404.02_8,-74.883065,39.594117,215 N DELAVAN AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_404.02_9,-74.687617,39.6547195,217 N DELAVAN AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_404.03_1.01,-74.8076365,39.6486237,201A N DOUGLAS AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_404.03_1.02,-74.82665,39.6413795,200 N DELAVAN AVE,MARGATE CITY CITY,20,2003,1,GOV1,3004 -0116_404.03_10.02,-74.442357,39.3536815,219 N DOUGLAS AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_404.03_12,-74.43081695,39.36816018,223 N DOUGLAS AVE,MARGATE CITY CITY,17,1962,1,COM1,3004 -0116_404.03_13,-74.42386,39.367981,7706 AMHERST AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_404.03_14,-74.431756,39.3679185,226 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_15,-74.429963,39.3653035,224 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_16,-74.42237736,39.36521898,222 N DELAVAN AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_404.03_17,-74.42659276,39.36405079,220 N DELAVAN AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_404.03_18,-74.43460195,39.36675082,218 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_19,-74.4396145,39.3658365,216 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_20,-74.4346395,39.363427,214 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_21,-74.43344583,39.36219159,210 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_23,-74.48588222,39.33396533,208 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_24,-74.48606,39.333629,206 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_25,-74.52667866,39.31500897,202 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_3,-74.8177955,39.6550135,201 N DOUGLAS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_4,-74.8177305,39.653012,203 N DOUGLAS AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_404.03_5,-74.817108,39.6492,205 N DOUGLAS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_6,-74.8071085,39.6627335,207 N DOUGLAS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_404.03_7,-74.41987387,39.36807524,209 N DOUGLAS AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_404.03_8,-74.420305,39.3674335,211 N DOUGLAS AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_405.01_1.01,-74.80540985,39.62382396,200 N DOUGLAS AVE,MARGATE CITY CITY,20,2005,1,GOV1,3004 -0116_405.01_1.02,-74.810086,39.630424,201 N ESSEX AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_405.01_10,-74.49553668,39.33269548,219 N ESSEX AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_405.01_11,-74.49608337,39.33112546,221 N ESSEX AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_405.01_12,-74.4924077,39.33061139,223 N ESSEX AVE,MARGATE CITY CITY,17,1925,2,RES1,3001 -0116_405.01_14,-74.49654722,39.33010471,224 N DOUGLAS AVE,MARGATE CITY CITY,18,2000,1,RES1,3001 -0116_405.01_15,-74.49598241,39.32926594,222 N DOUGLAS AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_405.01_16,-74.49713832,39.32802953,220 N DOUGLAS AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_405.01_17,-74.50440964,39.33296303,218 N DOUGLAS AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_405.01_18,-74.5032955,39.3326545,216 N DOUGLAS AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_405.01_19,-74.503599,39.3326235,214 N DOUGLAS AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_405.01_2,-74.521006,39.3149765,203 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.01_20,-74.50864828,39.33256341,212 N DOUGLAS AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_405.01_21,-74.50182966,39.33165602,210 N DOUGLAS AVE,MARGATE CITY CITY,19,1950,1,GOV1,3004 -0116_405.01_22,-74.50505989,39.33163514,208 N DOUGLAS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.01_23,-74.50815509,39.33149484,206 N DOUGLAS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.01_24,-74.5040725,39.3309105,204 N DOUGLAS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.01_25,-74.50119838,39.33044462,202 N DOUGLAS AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_405.01_3,-74.527836,39.3129595,205 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.01_4,-74.52755014,39.31270844,207 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.01_5,-74.50848256,39.32257819,209 N ESSEX AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_405.01_7,-74.49532483,39.33347751,213 N ESSEX AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_405.01_8,-74.4954575,39.333158,215 N ESSEX AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_405.01_9,-74.48852099,39.33303688,217 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.02_1,-74.508406,39.3302855,200 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.02_2,-74.50841207,39.32972346,202 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.02_3,-74.50550498,39.32925983,212 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_405.02_7,-74.499814,39.328952,218 N ESSEX AVE,MARGATE CITY CITY,17,1966,1,RES3A,3001 -0116_407.01_10,-74.5051365,39.3259285,7804 AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_407.02_27,-74.51026759,39.32541966,AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_407.02_29,-74.518525,39.322734,225 N GLADSTONE AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_407.02_31,-74.5155685,39.320254,223 N GLADSTONE AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_407.02_32,-74.5210575,39.32263433,221 N GLADSTONE AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_407.02_33,-74.523068,39.32132067,217 N GLADSTONE AVE,MARGATE CITY CITY,47,1960,2,RES1,3001 -0116_407.02_35,-74.52485045,39.31770455,211 N GLADSTONE AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_407.02_36,-74.5105275,39.3328895,207 N GLADSTONE AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_407.02_38,-74.51317402,39.33177334,203 N GLADSTONE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_407.02_39,-74.51452545,39.32928683,8009 MONMOUTH AVE,MARGATE CITY CITY,18,1953,1,RES1,3001 -0116_408_1,-74.51363409,39.32796366,8018 AMHERST AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_408_10,-74.47460342,39.34216229,8015 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_408_11,-74.474265,39.34178688,8016 AMHERST AVE,MARGATE CITY CITY,17,1952,1,GOV1,3004 -0116_408_12,-74.4726305,39.341294,218 N GLADSTONE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_408_13,-74.47578191,39.34044483,216 N GLADSTONE AVE,MARGATE CITY CITY,17,1979,1,RES1,3001 -0116_408_14,-74.48447208,39.33984376,214 N GLADSTONE AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_408_15,-74.481199,39.3383595,212 N GLADSTONE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_408_16,-74.4870176,39.33660091,210 N GLADSTONE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_408_17,-74.48143767,39.33567899,208 N GLADSTONE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_408_18,-74.466275,39.3470685,206 N GLADSTONE AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_408_19,-74.46597039,39.34671684,204 N GLADSTONE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_408_21,-74.467911,39.3464005,200 N GLADSTONE AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_408_3,-74.51097366,39.32709401,215 N GRANVILLE AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_408_4,-74.45208283,39.35023726,211 N GRANVILLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_408_5,-74.4576495,39.3508655,209 N GRANVILLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_408_7,-74.45779327,39.35064786,207 N GRANVILLE AVE,MARGATE CITY CITY,17,1948,1,REL1,3004 -0116_408_8,-74.4614305,39.3489695,205 N GRANVILLE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_408_9,-74.4639785,39.3441955,203 N GRANVILLE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_409.01_1,-74.46734785,39.34624183,8104 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_409.01_10,-74.479472,39.342798,8103 MONMOUTH AVE,MARGATE CITY CITY,17,1958,1,COM1,3004 -0116_409.01_11,-74.44337728,39.35538883,8102 AMHERST AVE,MARGATE CITY CITY,17,1952,2,RES1,3001 -0116_409.01_12,-74.44780687,39.35520037,216 N GRANVILLE AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_409.01_13,-74.44834928,39.35507666,214 N GRANVILLE AVE,MARGATE CITY CITY,16,1950,1,RES1,3001 -0116_409.01_14,-74.44976472,39.35449514,210 N GRANVILLE AVE,MARGATE CITY CITY,16,1950,1,RES1,3001 -0116_409.01_16,-74.4507195,39.3540815,208 N GRANVILLE AVE,MARGATE CITY CITY,17,1925,2,GOV1,3004 -0116_409.01_17,-74.45101614,39.35380271,206 N GRANVILLE AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_409.01_18,-74.45149177,39.35228178,204 N GRANVILLE AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_409.01_19,-74.46192557,39.35464017,202 N GRANVILLE AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_409.01_2,-74.46913243,39.34482351,215 N HAVERFORD AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_409.01_20,-74.46350898,39.35417016,8101 MONMOUTH AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_409.01_3,-74.4686255,39.34452833,213 N HAVERFORD AVE,MARGATE CITY CITY,18,2014,1,RES1,3001 -0116_409.01_4,-74.468376,39.344187,211 N HAVERFORD AVE,MARGATE CITY CITY,16,1950,1,RES1,3001 -0116_409.01_5,-74.46656643,39.34291533,209 N HAVERFORD AVE,MARGATE CITY CITY,19,2008,1,RES3A,3001 -0116_409.01_7,-74.48229819,39.34974111,207 N HAVERFORD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_409.01_8,-74.48307167,39.3446325,205 N HAVERFORD AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_409.01_9,-74.484321,39.344443,203 N HAVERFORD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_409.02_1,-74.46031938,39.3531272,219 N HUNTINGTON AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_409.02_10,-74.493478,39.3370265,8109 MONMOUTH AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_409.02_11,-74.496387,39.3369895,218 N HAVERFORD AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_409.02_12,-74.49041083,39.336799,216 N HAVERFORD AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_409.02_13,-74.492322,39.336503,212 N HAVERFORD AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_409.02_15,-74.4918872,39.33595783,210 N HAVERFORD AVE,MARGATE CITY CITY,18,2003,1,RES3A,3001 -0116_409.02_16,-74.49322033,39.33434634,208 N HAVERFORD AVE,MARGATE CITY CITY,45,1912,2,RES1,3001 -0116_409.02_17,-74.505967,39.3394815,206 N HAVERFORD AVE,MARGATE CITY CITY,17,1972,1,RES3A,3001 -0116_409.02_18,-74.50306883,39.33894951,204 N HAVERFORD AVE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_409.02_19,-74.50224195,39.33779893,202 N HAVERFORD AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_409.02_2,-74.45892564,39.35166092,217 N HUNTINGTON AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_409.02_20,-74.5014375,39.337255,8105 MONMOUTH AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_409.02_3,-74.44388503,39.36641235,215 N HUNTINGTON AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_409.02_4,-74.4819606,39.35207518,213 N HUNTINGTON AVE,MARGATE CITY CITY,17,1956,1,RES3A,3001 -0116_409.02_5,-74.48464324,39.35130564,211 N HUNTINGTON AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_409.02_6,-74.49243215,39.34141252,209 N HUNTINGTON AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_409.02_7,-74.48834289,39.33732134,207 N HUNTINGTON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_410.01_1,-74.50136867,39.33687595,219 N HANOVER AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_410.01_10,-74.386875,39.390801,8203 MONMOUTH AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_410.01_11,-74.389183,39.393385,8200 AMHERST AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_410.01_12,-74.39145466,39.39058283,220 N HUNTINGTON AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_410.01_13,-74.3990575,39.3892285,218 N HUNTINGTON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_410.01_14,-74.390308,39.388923,216 N HUNTINGTON AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_410.01_15,-74.39864764,39.38875458,212 N HUNTINGTON AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_410.01_16,-74.391307,39.388091,210 N HUNTINGTON AVE,MARGATE CITY CITY,17,1957,1,GOV1,3004 -0116_410.01_17,-74.3809182,39.40051536,208 N HUNTINGTON AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_410.01_18,-74.38516035,39.39876294,206 N HUNTINGTON AVE,MARGATE CITY CITY,17,1957,1,RES3A,3001 -0116_410.01_19,-74.38021083,39.398546,202 N HUNTINGTON AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_410.01_2,-74.50888743,39.33488833,217 N HANOVER AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_410.01_20,-74.3776815,39.3976775,8201 MONMOUTH AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_410.01_5,-74.50910763,39.33438196,211 N HANOVER AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_410.01_6,-74.509727,39.337384,209 N HANOVER AVE,MARGATE CITY CITY,19,2006,1,RES1,3001 -0116_410.01_7,-74.48861012,39.35203024,207 N HANOVER AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_410.01_8,-74.37185264,39.40112215,205 N HANOVER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_410.01_9,-74.37652206,39.39693434,203 N HANOVER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_410.02_1,-74.3980745,39.394874,217 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_410.02_10,-74.422193,39.372028,201 N IROQUOIS AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_410.02_11,-74.44301082,39.37162456,8204 AMHERST AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_410.02_12,-74.4327335,39.369906,216 N HANOVER AVE,MARGATE CITY CITY,17,1941,1,RES1,3001 -0116_410.02_13,-74.43427003,39.36924566,212 N HANOVER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_410.02_15,-74.440115,39.36856,210 N HANOVER AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_410.02_16,-74.439074,39.3684775,208 N HANOVER AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_410.02_17,-74.40003509,39.39055726,206 N HANOVER AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_410.02_18,-74.41340946,39.39008395,204 N HANOVER AVE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_410.02_19,-74.3995105,39.394204,202 N HANOVER AVE,MARGATE CITY CITY,17,1968,1,RES1,3001 -0116_410.02_2,-74.42046627,39.37064363,215 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_410.02_20,-74.4042585,39.39415044,8205 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_410.02_4,-74.41390783,39.36916627,213 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_410.02_5,-74.41364628,39.36877401,211 N IROQUOIS AVE,MARGATE CITY CITY,19,2010,1,RES1,3001 -0116_410.02_7,-74.40768296,39.38217932,207 N IROQUOIS AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_410.02_8,-74.40516733,39.38136254,205 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_410.02_9,-74.4311,39.375275,203 N IROQUOIS AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_411_1,-74.36387501,39.40661884,215 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_10,-74.37062687,39.40657491,201 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_11,-74.36773973,39.40656933,216 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_13,-74.3729435,39.4060975,214 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_14,-74.37404368,39.40490202,212 N IROQUOIS AVE,MARGATE CITY CITY,,0,1,RES1,3002 -0116_411_15,-74.373448,39.4043515,210 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_16,-74.36803644,39.40253033,208 N IROQUOIS AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_18,-74.37030178,39.40250817,206 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_411_19,-74.37060704,39.40230367,204 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_411_2,-74.3691065,39.410609,213 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_20,-74.3660924,39.41582982,200 N IROQUOIS AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_411_4,-74.367013,39.4088145,211 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_5,-74.36776378,39.40839134,209 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_6,-74.37185057,39.40775317,207 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_8,-74.36667089,39.40714733,205 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_411_9,-74.36877967,39.40687095,203 N JASPER AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_412.01_1,-74.364804,39.4153715,8300 AMHERST AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.01_10,-74.36115105,39.41206016,200 N JASPER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.01_27,-74.3658935,39.4117595,203 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.01_29,-74.36024985,39.41129646,205 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.01_3,-74.36013,39.414698,210 N JASPER AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_412.01_31,-74.37049913,39.41714917,207 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.01_33,-74.37689205,39.41585795,209 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.01_34,-74.37201072,39.41393361,211 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES3A,3002 -0116_412.01_4,-74.35949034,39.41413298,208 N JASPER AVE,MARGATE CITY CITY,17,1955,1,RES3A,3001 -0116_412.01_43,-74.37242367,39.41357616,8302 AMHERST AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_412.01_6,-74.3644635,39.4137015,206 N JASPER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.01_7,-74.36324418,39.41325117,204 N JASPER AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_412.01_8,-74.36137108,39.41224165,202 N JASPER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.01_9,-74.35830284,39.41213383,8307 MONMOUTH AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_412.02_1,-74.3757355,39.413095,8403 MONMOUTH AVE,MARGATE CITY CITY,18,1950,1,RES3B,3001 -0116_412.02_11,-74.4529715,39.374719,207 N KENYON AVE,MARGATE CITY CITY,17,1950,1,RES3B,3001 -0116_412.02_13,-74.45346031,39.37368394,209 N KENYON AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_412.02_15,-74.4499795,39.373304,211 N KENYON AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_412.02_17,-74.45658822,39.37323393,213 N KENYON AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_412.02_19,-74.44882314,39.3824992,208 N JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_412.02_2,-74.3804835,39.414456,205 N KENYON AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_412.02_21,-74.50132405,39.38331236,210 N JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_412.02_23,-74.52345163,39.38509683,212 N JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_412.02_25,-74.52485,39.383003,214 N JEROME AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_412.02_3,-74.3790528,39.41424117,202 N JEROME AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_412.02_35,-74.5291485,39.3821045,8402 AMHERST AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_412.02_36,-74.52868529,39.38122502,217 N KENYON AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_412.02_38,-74.51533699,39.39310567,216 N JEROME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_412.02_39,-74.514776,39.3878815,218 N JEROME AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_412.02_5,-74.44734153,39.37526882,8401 MONMOUTH AVE,MARGATE CITY CITY,18,1960,1,RES1,3001 -0116_413.01_1,-74.51336167,39.38545951,221 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_413.01_10,-74.5170645,39.399373,203 N MANSFIELD AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_413.01_11,-74.5131385,39.3987605,201 N MANSFIELD AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_413.01_12,-74.5200885,39.3978995,8504 AMHERST AVE,MARGATE CITY CITY,18,1960,1,RES1,3001 -0116_413.01_14,-74.528118,39.397336,216 N LANCASTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_413.01_15,-74.527182,39.3968055,214 N LANCASTER AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_413.01_16,-74.522853,39.396218,212 N LANCASTER AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_413.01_17,-74.82090775,39.40749066,210 N LANCASTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_413.01_18,-74.82513405,39.40570986,208 N LANCASTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_413.01_19,-74.8280515,39.407889,206 N LANCASTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_413.01_2,-74.510456,39.3853455,219 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_413.01_20,-74.713625,39.44106333,204 N LANCASTER AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_413.01_21,-74.7128515,39.438941,202 N LANCASTER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_413.01_22,-74.71373564,39.44867406,8505 MONMOUTH AVE,MARGATE CITY CITY,17,1953,1,COM1,3004 -0116_413.01_3,-74.5253155,39.3927915,217 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_413.01_4,-74.53098182,39.39036998,215 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_413.01_5,-74.5210345,39.3880645,213 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_413.01_6,-74.51414922,39.40213179,211 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES3A,3001 -0116_413.01_7,-74.515629,39.4017305,209 N MANSFIELD AVE,MARGATE CITY CITY,,1950,1,RES3A,3001 -0116_413.01_8,-74.51220406,39.40166984,207 N MANSFIELD AVE,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_413.01_9,-74.516851,39.400403,205 N MANSFIELD AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_413.02_1,-74.72303757,39.4522042,221 N LANCASTER AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_413.02_11,-74.61366483,39.59919429,201 N LANCASTER AVE,MARGATE CITY CITY,17,1925,1,RES1,3004 -0116_413.02_12,-74.6204835,39.605063,218 N KENYON AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_413.02_14,-74.697903,39.5778445,216 N KENYON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_413.02_15,-74.70194779,39.57658055,214 N KENYON AVE,MARGATE CITY CITY,17,1952,1,RES3A,3001 -0116_413.02_16,-74.6951995,39.588431,212 N KENYON AVE,MARGATE CITY CITY,18,2013,1,RES1,3001 -0116_413.02_17,-74.6961705,39.5901905,210 N KENYON AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_413.02_18,-74.6970265,39.5892905,208 N KENYON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_413.02_19,-74.635366,39.6084855,206 N KENYON AVE,MARGATE CITY CITY,17,1952,1,RES3A,3001 -0116_413.02_20,-74.62285982,39.61990668,204 N KENYON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_413.02_22,-74.63116816,39.61992554,8501 MONMOUTH AVE,MARGATE CITY CITY,17,1945,1,RES3A,3001 -0116_413.02_9,-74.616347,39.60319,205 N LANCASTER AVE,MARGATE CITY CITY,17,1929,1,RES1,3001 -0116_414_1,-74.65889721,39.61998114,8602 AMHERST AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_414_10,-74.61283382,39.3385105,203 N NASSAU AVE,MARGATE CITY CITY,17,1927,1,COM1,3004 -0116_414_11,-74.61541264,39.33799482,201 N NASSAU AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_414_12,-74.602926,39.348808,8600 AMHERST AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_414_13,-74.60636048,39.34551826,216 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_414_14,-74.61028186,39.34543774,214 N MANSFIELD AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_414_15,-74.59552065,39.35673431,212 N MANSFIELD AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_414_16,-74.58701464,39.35231956,210 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_414_17,-74.59148376,39.36404282,206 N MANSFIELD AVE,MARGATE CITY CITY,17,1941,1,RES1,3002 -0116_414_18,-74.59488166,39.36386623,204 N MANSFIELD AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_414_19,-74.59630647,39.36252404,202 N MANSFIELD AVE,MARGATE CITY CITY,20,2017,1,RES1,3001 -0116_414_2,-74.621798,39.625811,221 N NASSAU AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_414_22,-74.5919485,39.3601075,8601 MONMOUTH AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_414_3,-74.65489794,39.62873254,219 N NASSAU AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_414_4,-74.685469,39.6305235,217 N NASSAU AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_414_5,-74.6939665,39.6373525,215 N NASSAU AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_414_6,-74.7900085,39.531,213 N NASSAU AVE,MARGATE CITY CITY,19,1950,1,GOV1,3004 -0116_414_7.01,-74.7107195,39.5663495,211 N NASSAU AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_414_8,-74.5288485,39.394921,209 N NASSAU AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_414_9,-74.52183647,39.39390918,207 N NASSAU AVE,MARGATE CITY CITY,17,1930,1,RES1,3002 -0116_414_9.01,-74.57526453,39.34329528,205 N NASSAU AVE,MARGATE CITY CITY,17,1927,1,RES1,3001 -0116_415_1,-74.5991009,39.35912924,8606 AMHERST AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_415_11,-74.63556654,39.34996217,8607 MONMOUTH AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_415_12,-74.63163659,39.3480993,8604 AMHERST AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_415_13,-74.6011395,39.4288915,220 N NASSAU AVE,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_415_14,-74.61772768,39.42957953,218 N NASSAU AVE,MARGATE CITY CITY,17,1951,1,RES1,3002 -0116_415_16,-74.62455483,39.3851195,216 N NASSAU AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_415_17,-74.62181855,39.38287662,210 N NASSAU AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_415_18,-74.6243885,39.382232,208 N NASSAU AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_415_19,-74.64420627,39.37435333,206 N NASSAU AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_415_20,-74.64603654,39.37294461,204 N NASSAU AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_415_21,-74.62881717,39.39275373,8605 MONMOUTH AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_415_3,-74.60419561,39.35430133,217 N OSBORNE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_415_4,-74.59963949,39.36091403,215 N OSBORNE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_415_5,-74.61105145,39.36786946,213 N OSBORNE AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_415_6,-74.60925264,39.36562539,211 N OSBORNE AVE,MARGATE CITY CITY,17,1910,1,RES3B,3001 -0116_415_7,-74.624558,39.313834,209 N OSBORNE AVE,MARGATE CITY CITY,17,1949,1,COM8,3004 -0116_415_8,-74.6373551,39.34180844,207 N OSBORNE AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_415_9,-74.63854615,39.33803704,205 N OSBORNE AVE,MARGATE CITY CITY,17,1949,1,RES3A,3001 -0116_416_1,-74.635917,39.3878415,213 N PEMBROKE AVE,MARGATE CITY CITY,18,1985,1,GOV1,3004 -0116_416_11,-74.69946109,39.37178129,200 N OSBORNE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_416_12,-74.68803843,39.38094618,202 N OSBORNE AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_416_14,-74.68879881,39.38070769,208 N OSBORNE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_416_16,-74.683762,39.3904355,210 N OSBORNE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_416_17,-74.67426948,39.39009231,212 N OSBORNE AVE,MARGATE CITY CITY,17,1978,1,RES1,3001 -0116_416_18,-74.50475973,39.41018895,214 N OSBORNE AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_416_19,-74.5040266,39.40971563,216 N OSBORNE AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_416_2,-74.62375175,39.39382522,211 N PEMBROKE AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_416_3,-74.643357,39.393155,209 N PEMBROKE AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_416_5,-74.649168,39.4020545,207 N PEMBROKE AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_416_7,-74.6526935,39.39551467,203 N PEMBROKE AVE,MARGATE CITY CITY,17,1938,1,COM3,3004 -0116_416_9,-74.6846058,39.37994604,201 N PEMBROKE AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_417_1,-74.50441392,39.40848173,217 N QUINCY AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_417_10,-74.50424105,39.41616094,203 N QUINCY AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_417_11,-74.50277567,39.41472184,201 N QUINCY AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_417_12,-74.4988796,39.41326964,220 N PEMBROKE AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_417_13,-74.51848867,39.41069955,218 N PEMBROKE AVE,MARGATE CITY CITY,17,1952,1,COM3,3004 -0116_417_14,-74.521516,39.407929,212 N PEMBROKE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_417_16,-74.51266949,39.41851865,210 N PEMBROKE AVE,MARGATE CITY CITY,19,2012,1,RES1,3001 -0116_417_17,-74.50958386,39.41714314,208 N PEMBROKE AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_417_18,-74.5094245,39.41554384,206 N PEMBROKE AVE,MARGATE CITY CITY,20,2013,1,RES3A,3001 -0116_417_19,-74.51199472,39.41431202,204 N PEMBROKE AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_417_22,-74.518103,39.411856,200 N PEMBROKE AVE,MARGATE CITY CITY,17,1932,1,RES3A,3001 -0116_417_3,-74.506852,39.4074675,215 N QUINCY AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_417_4,-74.5046035,39.407313,213 N QUINCY AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_417_6,-74.50841528,39.40685214,211 N QUINCY AVE,MARGATE CITY CITY,20,1951,1,GOV1,3004 -0116_417_7,-74.49270612,39.41718792,207 N QUINCY AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_417_9,-74.50225129,39.41823686,205 N QUINCY AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_418_1,-74.530785,39.419148,8802 AMHERST AVE,MARGATE CITY CITY,19,1940,1,GOV1,3004 -0116_418_11,-74.49842448,39.42556537,201 N RUMSON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_418_12,-74.50068442,39.41952479,8800 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_418_14,-74.4912045,39.435547,212 N QUINCY AVE,MARGATE CITY CITY,17,1952,1,GOV1,3004 -0116_418_15,-74.497723,39.4351025,210 N QUINCY AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_418_17,-74.497234,39.4350475,208 N QUINCY AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_418_18,-74.496246,39.4347365,206 N QUINCY AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_418_19,-74.49127877,39.4337361,204 N QUINCY AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_418_21,-74.490865,39.4331015,202 N QUINCY AVE,MARGATE CITY CITY,17,1952,1,COM1,3004 -0116_418_22,-74.49792646,39.4327973,200 N QUINCY AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_418_3,-74.52920313,39.4170221,215 N RUMSON AVE,MARGATE CITY CITY,19,2012,1,RES1,3001 -0116_418_5,-74.5238545,39.41396,213 N RUMSON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_418_6,-74.48801603,39.422648,211 N RUMSON AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_418_7,-74.4903915,39.420479,209 N RUMSON AVE,MARGATE CITY CITY,17,1940,1,COM1,3004 -0116_418_8,-74.4913206,39.42004716,207 N RUMSON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_418_9,-74.50426261,39.42759784,205 N RUMSON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_419_1,-74.49505868,39.43101811,8808 AMHERST AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_419_10,-74.5045075,39.430439,203 N SUMNER AVE,MARGATE CITY CITY,17,1975,1,RES1,3001 -0116_419_11,-74.5040075,39.4299115,8807 MONMOUTH AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_419_12,-74.5001875,39.429571,8804 AMHERST AVE,MARGATE CITY CITY,19,1955,1,RES1,3001 -0116_419_13,-74.51697,39.4294195,218 N RUMSON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_419_14,-74.42692754,39.49185464,216 N RUMSON AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_419_15,-74.43464005,39.49001234,214 N RUMSON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_419_17,-74.43903918,39.48846064,210 N RUMSON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_419_2,-74.4899035,39.4287535,219 N SUMNER AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_419_20,-74.47454699,39.44435188,206 N RUMSON AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_419_21,-74.48515316,39.43631747,202 N RUMSON AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_419_22,-74.475483,39.4476305,8805 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_419_4,-74.50380065,39.43533346,215 N SUMNER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_419_5,-74.50322551,39.43364568,211 N SUMNER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_419_7,-74.500586,39.432888,209 N SUMNER AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_419_8,-74.504023,39.4325065,207 N SUMNER AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_419_9,-74.49865971,39.43153574,205 N SUMNER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_420_12,-74.49669973,39.45065813,222 N SUMNER AVE,MARGATE CITY CITY,17,1945,1,GOV1,3004 -0116_420_13,-74.50733641,39.44874664,220 N SUMNER AVE,MARGATE CITY CITY,18,1950,1,GOV1,3004 -0116_420_14,-74.50129023,39.44701683,218 N SUMNER AVE,MARGATE CITY CITY,18,1945,1,RES1,3001 -0116_420_15,-74.50419934,39.44505843,216 N SUMNER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_420_16,-74.51126184,39.44183603,214 N SUMNER AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_420_17,-74.51966268,39.44182321,208 N SUMNER AVE,MARGATE CITY CITY,19,2004,1,RES1,3001 -0116_420_18,-74.515256,39.440314,206 N SUMNER AVE,MARGATE CITY CITY,18,1920,1,RES1,3001 -0116_420_19,-74.51194409,39.43843081,204 N SUMNER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_420_20,-74.52140977,39.44335869,202 N SUMNER AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_420_21,-74.52496067,39.44307703,8901 MONMOUTH AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_420_3,-74.46404047,39.4554305,217 N THURLOW AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_420_4,-74.45965383,39.46983827,213 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES3B,3001 -0116_420_6,-74.48681041,39.45631144,209 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,REL1,3004 -0116_420_7,-74.4893405,39.4415075,207 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_420_8,-74.5028385,39.443887,205 N THURLOW AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_420_9,-74.49896796,39.44190773,203 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_421_1,-74.52283237,39.44312995,8906 AMHERST AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_421_11,-74.49007949,39.46653648,8907 MONMOUTH AVE,MARGATE CITY CITY,18,1951,1,RES1,3001 -0116_421_12,-74.49763134,39.46214197,8904 AMHERST AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_421_13,-74.50116058,39.46531085,220 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_421_15,-74.51706153,39.45964866,216 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_421_16,-74.51043502,39.45527299,214 N THURLOW AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_421_17,-74.52400085,39.45827682,212 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_421_18,-74.52343994,39.45516316,210 N THURLOW AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_421_19,-74.5305955,39.4551665,208 N THURLOW AVE,MARGATE CITY CITY,19,1950,1,COM4,3004 -0116_421_2,-74.51984717,39.44989945,227 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_421_20,-74.519057,39.4684585,206 N THURLOW AVE,MARGATE CITY CITY,17,1978,1,RES1,3001 -0116_421_22,-74.45628203,39.47686423,8905 MONMOUTH AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_421_3,-74.50970862,39.44671059,225 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_421_4.01,-74.5276915,39.448795,223 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_421_4.02,-74.49215198,39.45887118,221 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_421_5,-74.487888,39.455898,219 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_421_6,-74.50888998,39.46067758,207 N UNION AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_421_7,-74.507826,39.4586555,205 N UNION AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_421_9,-74.49732958,39.46745326,203 N UNION AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_422_1,-74.4455145,39.4858165,221 N VENDOME AVE,MARGATE CITY CITY,17,1988,1,GOV1,3004 -0116_422_10,-74.44972037,39.48882192,203 N VENDOME AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_422_12,-74.45197593,39.48844451,9000 AMHERST AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_422_13,-74.45990696,39.49129853,218 N UNION AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_422_14,-74.45480409,39.49084259,216 N UNION AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_15,-74.45532713,39.49595585,214 N UNION AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_16,-74.46702466,39.48971551,212 N UNION AVE,MARGATE CITY CITY,17,1925,1,AGR1,3001 -0116_422_17,-74.47138527,39.48817891,210 N UNION AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_422_18,-74.47365656,39.48782377,208 N UNION AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_19,-74.48589269,39.49555419,206 N UNION AVE,MARGATE CITY CITY,17,1925,1,GOV1,3004 -0116_422_2,-74.45759409,39.47970461,219 N VENDOME AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_20,-74.48698448,39.4996817,204 N UNION AVE,MARGATE CITY CITY,21,2018,1,IND2,3004 -0116_422_21,-74.492949,39.4746645,202 N UNION AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_422_22,-74.49611231,39.4702916,200 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_422_3,-74.4734155,39.486879,217 N VENDOME AVE,MARGATE CITY CITY,17,1925,1,COM3,3004 -0116_422_4,-74.472968,39.485902,215 N VENDOME AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_5,-74.473295,39.4837165,213 N VENDOME AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_6,-74.47306553,39.48136634,211 N VENDOME AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_7,-74.4708955,39.481272,209 N VENDOME AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_8,-74.4728043,39.48095493,207 N VENDOME AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_422_9,-74.44373835,39.49016295,205 N VENDOME AVE,MARGATE CITY CITY,17,1988,1,RES1,3001 -0116_423_1.01,-74.50926791,39.48040475,228 N VENDOME AVE,MARGATE CITY CITY,18,1926,1,RES1,3001 -0116_423_1.02_C000A,-74.51826035,39.47177595,226 N VENDOME AVE,MARGATE CITY CITY,18,1925,1,RES1,3001 -0116_423_11,-74.5512515,39.3782865,9005 MONMOUTH AVE,MARGATE CITY CITY,19,1930,1,COM4,3004 -0116_423_12,-74.542367,39.377913,9006 AMHERST AVE,MARGATE CITY CITY,,0,1,IND2,3004 -0116_423_13,-74.81109686,39.63115005,215 N WILSON AVE,MARGATE CITY CITY,45,1950,2,RES1,3001 -0116_423_15,-74.84794487,39.60922132,211 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_423_17,-74.84958923,39.60644308,207 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3002 -0116_423_19,-74.85789431,39.60887668,203 N WILSON AVE,MARGATE CITY CITY,45,1950,2,RES1,3001 -0116_423_2.01,-74.515037,39.470259,224 N VENDOME AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_423_2.02,-74.53017928,39.47415482,222 N VENDOME AVE,MARGATE CITY CITY,29,1920,2,RES1,3001 -0116_423_20,-74.8601885,39.621342,201 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_423_3.01,-74.52207493,39.4706649,220 N VENDOME AVE,MARGATE CITY CITY,29,1920,2,RES1,3001 -0116_423_3.02,-74.51098002,39.48116456,218 N VENDOME AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_423_4.01,-74.50436809,39.49324218,216 N VENDOME AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_423_4.02,-74.5398145,39.383314,214 N VENDOME AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_423_5,-74.53192298,39.38271134,212 N VENDOME AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_423_6,-74.536282,39.3802385,210 1/2 N VENDOME AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_423_7,-74.53293484,39.38020453,210 N VENDOME AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_423_8,-74.5415985,39.377907,208 N VENDOME AVE,MARGATE CITY CITY,17,1935,1,GOV1,3004 -0116_423_9,-74.54720037,39.38050054,206 N VENDOME AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_424.01_1,-74.85703891,39.62024662,214 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.01_131,-74.9316595,39.482154,203 N BENSON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_424.01_151,-74.938813,39.4831165,9100 AMHERST AVE,MARGATE CITY CITY,,1966,1,RES1,3001 -0116_424.01_2,-74.85914265,39.61675042,212 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.01_3,-74.84113683,39.63152747,210 N HARDING AVE,MARGATE CITY CITY,45,1950,2,RES1,3001 -0116_424.01_4,-74.8970815,39.471932,208 N HARDING AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_424.01_5,-74.925261,39.4750855,206 N HARDING AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_424.01_6,-74.9084465,39.4797595,204 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.01_7,-74.92081323,39.48998651,202 N HARDING AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_424.01_8,-74.9115365,39.499399,200 N HARDING AVE,MARGATE CITY CITY,45,1950,2,RES1,3001 -0116_424.02_1,-74.93167572,39.49609117,214 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.02_10,-74.50417309,39.48951516,213 N HARDING AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_424.02_11_C000A,-74.504342,39.488148,211 N HARDING AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_424.02_13,-74.5008907,39.48803263,207 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.02_14,-74.50116079,39.48757047,205 N HARDING AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_424.02_15,-74.50008478,39.48738793,203 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.02_16,-74.503124,39.5039555,201 N HARDING AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_424.02_2,-74.932639,39.4956885,212 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.02_3,-74.95785376,39.49721358,210 N WILSON AVE,MARGATE CITY CITY,43,1950,2,RES1,3001 -0116_424.02_4,-74.90281,39.5051815,208 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.02_5,-74.9121118,39.51085334,206 N WILSON AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_424.02_6,-74.9263085,39.5104305,204 N WILSON AVE,MARGATE CITY CITY,47,1950,2,GOV1,3004 -0116_424.02_7,-74.504502,39.493099,202 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.02_8,-74.5007395,39.490345,200 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_424.02_9,-74.5066375,39.489821,215 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_425_136,-74.960064,39.53206317,209 N DECATUR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_425_140,-74.88544101,39.56442116,215 N DECATUR AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_425_148,-74.920581,39.564994,221 N DECATUR AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_425_150,-74.95651713,39.53931448,9204 AMHERST AVE,MARGATE CITY CITY,17,1932,1,RES1,3001 -0116_426_1.01,-74.95409243,39.53828105,9218 AMHERST AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_426_1.02,-74.9846425,39.5148505,9216 AMHERST AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_426_1.03,-74.8876565,39.5955925,9214 AMHERST AVE,MARGATE CITY CITY,39,2003,1,GOV1,3004 -0116_426_1.04,-74.713665,39.6475883,9212 AMHERST AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_426_1.05,-74.762278,39.639815,9210 AMHERST AVE,MARGATE CITY CITY,39,2003,1,GOV1,3004 -0116_426_1.06,-74.79018246,39.64327947,9208 AMHERST AVE,MARGATE CITY CITY,39,2003,1,GOV1,3004 -0116_426_1.07,-74.78791432,39.6432713,222 N DECATUR AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_426_1.08,-74.78984,39.6418285,220 N DECATUR AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_426_11.01,-74.76458795,39.6692687,210 N DECATUR AVE,MARGATE CITY CITY,30,1999,2,RES1,3001 -0116_426_11.02,-74.76772334,39.66500297,208 N DECATUR AVE,MARGATE CITY CITY,30,1999,2,RES1,3001 -0116_426_11.03,-74.77550712,39.6655439,206 N DECATUR AVE,MARGATE CITY CITY,30,1999,2,RES1,3001 -0116_426_11.04,-74.78356048,39.66494284,204 N DECATUR AVE,MARGATE CITY CITY,30,1999,2,RES1,3001 -0116_426_18_C0003,-74.7895633,39.6676316,200 N DECATUR AVE,MARGATE CITY CITY,20,1996,1,RES1,3001 -0116_426_21,-74.787323,39.676768,9211 MONMOUTH AVE,MARGATE CITY CITY,,1955,1,RES1,3001 -0116_426_7,-74.78645669,39.6491152,9220 AMHERST AVE,MARGATE CITY CITY,,1953,2,RES1,3001 -0116_427.01_103,-74.8039565,39.645511,9300 AMHERST AVE,MARGATE CITY CITY,,1946,1,RES1,3001 -0116_427.01_89,-74.786113,39.6764295,9314 AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_427.01_95,-74.79756308,39.64780554,9306 AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_427.02_104.01,-74.4858215,39.5200465,206 N WASHINGTON AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_427.02_104.02,-74.46258354,39.53587019,204 N WASHINGTON AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_427.02_104.03,-74.4606575,39.5306125,202 N WASHINGTON AVE,MARGATE CITY CITY,21,2003,1,RES1,3001 -0116_427.02_506,-74.4991785,39.5193115,212 N WASHINGTON AVE,MARGATE CITY CITY,,0,1,GOV1,3004 -0116_427.02_507,-74.49201779,39.52644904,9310 MASSEY AVE,MARGATE CITY CITY,,1920,1,RES1,3001 -0116_427.02_86,-74.79787044,39.64376741,203 N ADAMS AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_427.02_88,-74.80321816,39.64375681,9317 MONMOUTH AVE,MARGATE CITY CITY,17,1910,3,RES1,3001 -0116_427.02_94_C0001,-74.499954,39.501815,9311 MONMOUTH AVE,MARGATE CITY CITY,21,2000,1,RES1,3001 -0116_427.02_96,-74.49977497,39.50174368,9309 MONMOUTH AVE,MARGATE CITY CITY,17,1927,3,RES1,3001 -0116_427.02_98,-74.50337696,39.50115584,9307 MONMOUTH AVE,MARGATE CITY CITY,19,2010,1,GOV1,3004 -0116_428_502_C0003,-74.58408761,39.32588184,206 N ADAMS AVE,MARGATE CITY CITY,21,2006,1,RES1,3001 -0116_428_503,-74.591995,39.33419517,203 N JEFFERSON AVE,MARGATE CITY CITY,20,2008,2,GOV1,3004 -0116_428_510_C0004,-74.58691187,39.33114547,212 N ADAMS AVE,MARGATE CITY CITY,21,2006,1,GOV1,3004 -0116_428_66.01,-74.49356128,39.52133365,201A N JEFFERSON AVE,MARGATE CITY CITY,30,2000,2,RES1,3001 -0116_428_66.02,-74.50040166,39.5256372,201B N JEFFERSON AVE,MARGATE CITY CITY,30,2000,2,GOV1,3004 -0116_428_66.03,-74.50132988,39.52561725,201C N JEFFERSON AVE,MARGATE CITY CITY,19,2001,1,RES1,3001 -0116_428_70_C000A,-74.49857157,39.5210681,9415 MONMOUTH AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_428_78_C00C,-74.49191573,39.53329456,9409 MONMOUTH AVE,MARGATE CITY CITY,19,1986,1,COM1,3004 -0116_428_81.01,-74.53115904,39.53272425,213 N JEFFERSON AVE,MARGATE CITY CITY,39,2005,1,RES1,3001 -0116_428_81.02,-74.46221537,39.54730427,215 N JEFFERSON AVE,MARGATE CITY CITY,39,2005,1,RES1,3001 -0116_428_81.03,-74.58938154,39.3155841,9416 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.04,-74.59672757,39.3100194,9414 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.05,-74.60247098,39.31720318,9412 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.06,-74.60319876,39.31652474,9410 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.07,-74.605492,39.3152315,9408 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.08,-74.5984935,39.3094255,9406 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.09,-74.614778,39.3119625,9404 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.10,-74.61732605,39.31028291,9402 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.11,-74.592741,39.3250865,9400 AMHERST AVE,MARGATE CITY CITY,39,2004,1,RES1,3001 -0116_428_81.12,-74.58649499,39.32258817,218 N ADAMS AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_428_81.13,-74.58998136,39.32188603,216 N ADAMS AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_428_81.14,-74.58948034,39.32077902,214 N ADAMS AVE,MARGATE CITY CITY,39,2003,1,RES1,3001 -0116_428_82.01,-74.58888911,39.31962266,204 N ADAMS AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_428_82.02,-74.5900775,39.317391,202 N ADAMS AVE,MARGATE CITY CITY,17,1952,2,RES1,3001 -0116_429_45,-74.4709525,39.487313,9512 AMHERST AVE,MARGATE CITY CITY,,1930,1,RES1,3001 -0116_429_46,-74.50414342,39.47879294,201 N MADISON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_429_50,-74.5299757,39.47416849,9515 MONMOUTH AVE,MARGATE CITY CITY,17,1980,1,RES1,3001 -0116_429_57_C004B,-74.4935615,39.4943775,9500-06 AMHERST AVE,MARGATE CITY CITY,20,1956,1,RES1,3001 -0116_429_63,-74.487732,39.492577,214 N JEFFERSON AVE,MARGATE CITY CITY,,1954,4,RES1,3001 -0116_430_25.04,-74.50847506,39.49210999,9612 AMHERST AVE,MARGATE CITY CITY,39,2000,1,RES1,3001 -0116_430_25.05,-74.50800717,39.49110201,9610 AMHERST AVE,MARGATE CITY CITY,39,2000,1,RES1,3001 -0116_430_28.01,-74.5074697,39.48969332,201 N MONROE AVE,MARGATE CITY CITY,39,1981,1,RES1,3001 -0116_430_28.02,-74.49971345,39.48798918,203A N MONROE AVE,MARGATE CITY CITY,39,1981,1,RES1,3001 -0116_430_28.03,-74.48864464,39.4972867,203B N MONROE AVE,MARGATE CITY CITY,39,1981,1,GOV1,3004 -0116_430_28.04,-74.50429839,39.50310119,205A N MONROE AVE,MARGATE CITY CITY,39,1981,1,RES1,3001 -0116_430_28.05,-74.50332791,39.5014529,205B N MONROE AVE,MARGATE CITY CITY,39,1981,1,RES1,3001 -0116_430_35,-74.51457799,39.48868133,9608 AMHERST AVE,MARGATE CITY CITY,39,1999,1,RES1,3001 -0116_430_39,-74.43726681,39.51831955,9604 AMHERST AVE,MARGATE CITY CITY,39,1999,1,RES1,3001 -0116_430_42_C000A,-74.4854115,39.5075435,200 N MADISON AVE,MARGATE CITY CITY,19,1964,1,GOV1,3004 -0116_430_44,-74.48588122,39.52132757,202 N MADISON AVE,MARGATE CITY CITY,17,1959,3,RES1,3001 -0116_430_504,-74.49056948,39.52176104,206 N MADISON AVE,MARGATE CITY CITY,17,1925,2,RES1,3001 -0116_431_20,-74.5900605,39.3295735,9707 MONMOUTH AVE,MARGATE CITY CITY,16,1920,2,RES1,3001 -0116_431_21,-74.587288,39.3283755,9700 AMHERST AVE,MARGATE CITY CITY,,1937,1,RES1,3001 -0116_431_22.01,-74.592854,39.327052,200 N MONROE AVE,MARGATE CITY CITY,30,2001,2,RES1,3001 -0116_431_22.02,-74.593988,39.326951,202 N MONROE AVE,MARGATE CITY CITY,30,2001,2,GOV1,3004 -0116_431_22.03,-74.5883455,39.3260605,204 N MONROE AVE,MARGATE CITY CITY,30,2001,2,RES1,3001 -0116_431_22.04,-74.6005755,39.3251055,206 N MONROE AVE,MARGATE CITY CITY,30,2001,2,RES1,3001 -0116_431_5.01,-74.49740431,39.52966195,9716 AMHERST AVE,MARGATE CITY CITY,39,2000,1,RES1,3001 -0116_431_5.02,-74.52594318,39.54404498,9714 AMHERST AVE,MARGATE CITY CITY,39,2000,1,RES1,3001 -0116_431_5.03,-74.53345064,39.31329676,9712 AMHERST AVE,MARGATE CITY CITY,39,2000,1,GOV1,3004 -0116_431_5.04,-74.57442569,39.33381304,9710 AMHERST AVE,MARGATE CITY CITY,39,2000,1,RES1,3001 -0116_431_5.05,-74.57924861,39.31194474,223 N COOLIDGE AVE,MARGATE CITY CITY,39,2001,1,RES1,3001 -0116_431_5.06,-74.59691967,39.31478452,221 N COOLIDGE AVE,MARGATE CITY CITY,39,2001,1,RES1,3001 -0116_431_5.07,-74.60216263,39.30864352,219 N COOLIDGE AVE,MARGATE CITY CITY,39,2001,1,RES1,3001 -0116_432_1.01,-74.6003685,39.3214885,204 N COOLIDGE AVE,MARGATE CITY CITY,30,2000,2,RES1,3001 -0116_432_1.02,-74.602106,39.318982,202 N COOLIDGE AVE,MARGATE CITY CITY,30,2000,2,RES1,3001 -0116_432_2.01,-74.6054005,39.3243755,208 N COOLIDGE AVE,MARGATE CITY CITY,30,2000,2,RES1,3001 -0116_432_2.02,-74.60783977,39.32279744,206 N COOLIDGE AVE,MARGATE CITY CITY,30,2000,2,RES1,3001 -0116_432_3.01,-74.59993747,39.31813468,210 N COOLIDGE AVE,MARGATE CITY CITY,30,1997,2,GOV1,3004 -0116_432_3.02,-74.60221768,39.31788708,212 N COOLIDGE AVE,MARGATE CITY CITY,30,1997,2,GOV1,3004 -0116_432_3.03,-74.61067565,39.32423086,214 N COOLIDGE AVE,MARGATE CITY CITY,30,1997,2,RES1,3001 -0116_432_3.04,-74.6102865,39.321521,216 N COOLIDGE AVE,MARGATE CITY CITY,30,1996,2,RES1,3001 -0116_432_3.05,-74.60164467,39.33048667,218 N COOLIDGE AVE,MARGATE CITY CITY,30,1997,2,RES1,3001 -0116_432_3.06,-74.60169705,39.32782982,220 N COOLIDGE AVE,MARGATE CITY CITY,30,1997,2,RES1,3004 -0116_432_3.07,-74.80286284,39.62984251,222 N COOLIDGE AVE,MARGATE CITY CITY,30,1997,2,RES1,3001 -0116_432_3.08,-74.8049247,39.62898035,224 N COOLIDGE AVE,MARGATE CITY CITY,30,1997,2,RES1,3001 -0116_5.01_1,-74.61513584,39.36819057,101 S ESSEX AVE,MARGATE CITY CITY,21,2009,1,GOV1,3004 -0116_5.01_10,-74.63796883,39.34522731,102 S DOUGLAS AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_5.01_11,-74.64961502,39.34201168,104 S DOUGLAS AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_5.01_13,-74.64238604,39.33953766,108 S DOUGLAS AVE,MARGATE CITY CITY,21,1925,1,RES1,3001 -0116_5.01_14,-74.6443275,39.3371815,110 S DOUGLAS AVE,MARGATE CITY CITY,20,1985,1,RES1,3001 -0116_5.01_15,-74.6454325,39.336891,112 S DOUGLAS AVE,MARGATE CITY CITY,22,2018,1,RES1,3001 -0116_5.01_2,-74.61030165,39.36711622,103 S ESSEX AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_5.01_3,-74.62513447,39.31389618,105 S ESSEX AVE,MARGATE CITY CITY,18,1951,1,RES1,3001 -0116_5.01_4,-74.64274459,39.32407961,107 S ESSEX AVE,MARGATE CITY CITY,19,1938,1,RES1,3001 -0116_5.01_5,-74.6453625,39.3284435,109 S ESSEX AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_5.01_6,-74.63833211,39.33922788,111 S ESSEX AVE,MARGATE CITY CITY,19,1981,1,RES1,3001 -0116_5.01_7,-74.63735195,39.33650181,113 S ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_5.01_8,-74.6315145,39.348568,115 S ESSEX AVE,MARGATE CITY CITY,19,1977,1,RES1,3001 -0116_5.01_9,-74.633498,39.3479925,7800 ATLANTIC AVE,MARGATE CITY CITY,21,2008,1,RES1,3001 -0116_5.02_1,-74.62601292,39.35837328,7808 ATLANTIC AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_5.02_10,-74.63285072,39.36006246,102 S ESSEX AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_5.02_11,-74.650324,39.354443,104 S ESSEX AVE,MARGATE CITY CITY,18,1966,1,GOV1,3004 -0116_5.02_12,-74.64229751,39.36487867,106 S ESSEX AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_5.02_13,-74.6562845,39.3662405,108 S ESSEX AVE,MARGATE CITY CITY,18,1925,1,GOV1,3004 -0116_5.02_14,-74.67043719,39.35224308,110 S ESSEX AVE,MARGATE CITY CITY,20,1979,1,RES1,3001 -0116_5.02_15,-74.6888703,39.35471807,112 S ESSEX AVE,MARGATE CITY CITY,21,1994,1,RES1,3001 -0116_5.02_2,-74.62878813,39.3569909,103 S EXETER AVE,MARGATE CITY CITY,21,1925,1,RES1,3001 -0116_5.02_3,-74.62639518,39.35308906,105 S EXETER AVE,MARGATE CITY CITY,20,1984,1,GOV1,3004 -0116_5.02_4,-74.62650376,39.35194315,107 S EXETER AVE,MARGATE CITY CITY,21,2012,1,GOV1,3004 -0116_5.02_5,-74.63114793,39.35904326,109 S EXETER AVE,MARGATE CITY CITY,20,1983,1,RES1,3001 -0116_5.02_6,-74.6321972,39.35204847,111 S EXETER AVE,MARGATE CITY CITY,20,1984,1,RES1,3001 -0116_5.02_7.01,-74.63120779,39.3623135,113 S EXETER AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_5.02_9,-74.635162,39.360749,7804 ATLANTIC AVE,MARGATE CITY CITY,17,1925,1,RES1,3002 -0116_5.03_1,-74.53589705,39.38270034,EXETER & BEACH,MARGATE CITY CITY,,0,1,RES1,3001 -0116_501.01_12,-74.5702575,39.342275,314 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_501.01_16.01,-74.56897904,39.35077544,316 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1993,1,RES1,3001 -0116_501.01_16.02,-74.57068267,39.35047401,318 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,2000,1,GOV1,3004 -0116_501.01_16.03,-74.5746795,39.348025,320 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,2000,1,RES1,3001 -0116_501.01_16.04,-74.57385322,39.34752184,322 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1999,1,RES1,3001 -0116_501.01_16.05,-74.55180648,39.36592579,7400 FREMONT AVE,MARGATE CITY CITY,17,1987,1,RES1,3001 -0116_501.01_2,-74.605573,39.326409,7401 AMHERST AVE,MARGATE CITY CITY,18,1996,1,RES1,3001 -0116_501.01_6,-74.5751151,39.34276367,302 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1962,1,GOV1,3004 -0116_501.02_1,-74.5633555,39.3566865,301 N ARGYLE AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_501.02_11,-74.56716898,39.35649967,309 N ARGYLE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_501.02_15,-74.55364949,39.36534417,311 N ARGYLE AVE,MARGATE CITY CITY,,1948,1,RES1,3001 -0116_501.02_17,-74.5627844,39.36261828,313 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_501.02_19,-74.56186518,39.36185602,315 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_501.02_3,-74.55481333,39.35573059,303 N ARGYLE AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_501.02_7,-74.56659509,39.35787232,307 N ARGYLE AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_502.01_15,-74.55629105,39.36011535,223 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_502.01_16,-74.56709,39.365698,7512 FREMONT AVE,MARGATE CITY CITY,19,2009,1,RES1,3001 -0116_502.01_17,-74.57107158,39.3621503,7510 FREMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.01_18,-74.57471137,39.36093015,7508 FREMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.01_19,-74.573321,39.36093765,7506 FREMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.01_20,-74.57122444,39.41363012,7504 FREMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.01_21,-74.5714405,39.413082,7502 FREMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.01_22,-74.5689135,39.412935,230 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.01_46,-74.5694515,39.412391,221 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_502.01_47,-74.570189,39.412161,219 N BRUNSWICK DR,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_502.01_48,-74.5726705,39.427691,217A N BRUNSWICK DR,MARGATE CITY CITY,19,1950,1,RES1,3001 -0116_502.01_49,-74.5701705,39.4275865,224 N BELMONT DR,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_502.01_50,-74.56726562,39.41934489,226 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_23,-74.57189559,39.42800632,224 N ARGYLE AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_502.02_24,-74.57948721,39.41038797,222 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_25,-74.59064043,39.41023994,220 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_26,-74.5802162,39.41796312,218 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_27,-74.58029136,39.41676343,216 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_28,-74.57911303,39.41495832,214 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_29,-74.578861,39.4125335,212 N ARGYLE AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_502.02_30,-74.59740155,39.40997182,210 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_31,-74.606223,39.407959,208 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_32,-74.59996683,39.41129772,206 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_33,-74.61030068,39.41831601,204 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_34,-74.57804289,39.4244826,202 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_35,-74.58223269,39.42032616,200 N ARGYLE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_52,-74.590422,39.42579,223 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_53,-74.58702115,39.4203718,221 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_54,-74.587052,39.432533,219 N BELMONT DR,MARGATE CITY CITY,18,2002,1,RES1,3001 -0116_502.02_55,-74.59680285,39.43148578,217 N BELMONT DR,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_502.02_56,-74.587128,39.4303715,215 N BELMONT DR,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_502.02_57,-74.618949,39.424788,213 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_58,-74.61627861,39.42147796,211 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_59,-74.59725192,39.42981869,209 N BELMONT DR,MARGATE CITY CITY,19,2012,1,RES1,3001 -0116_502.02_60,-74.56501414,39.36094164,207 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_61,-74.56941666,39.35995038,205 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.02_62,-74.57745171,39.33594566,203 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_63,-74.57675282,39.33510945,205 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_64,-74.57877152,39.3507006,207 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_65,-74.58249205,39.34588469,209 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_66,-74.57939571,39.34382231,211 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_67,-74.58774687,39.34914759,213 N BRUNSWICK DR,MARGATE CITY CITY,19,2007,1,RES1,3001 -0116_502.03_68,-74.61303536,39.34071757,215 N BRUNSWICK DR,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_502.03_69,-74.61590314,39.34031491,217 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_70,-74.6034615,39.350067,222 N BELMONT DR,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_502.03_71,-74.605676,39.345931,220 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_72,-74.6033135,39.34443333,218 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_73,-74.59763445,39.34289008,216 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_74,-74.61218156,39.35090862,214 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_75,-74.61558337,39.34897149,212 N BELMONT DR,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_502.03_76,-74.57579182,39.35761744,210 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_77,-74.5775158,39.35530603,208 N BELMONT DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.03_78,-74.57773477,39.35323431,206 N BELMONT DR,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_502.04_1,-74.5776865,39.352428,201 N CLARENDON AVE,MARGATE CITY CITY,17,1980,1,RES1,3001 -0116_502.04_10,-74.60377682,39.35376002,219 N CLARENDON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_502.04_11,-74.60262072,39.36443767,221 N CLARENDON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_502.04_12,-74.61294926,39.36654245,223 N CLARENDON AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_502.04_13,-74.62984639,39.31524425,225 N CLARENDON AVE,MARGATE CITY CITY,18,1948,1,RES1,3001 -0116_502.04_14,-74.63345333,39.31956949,227 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.04_2,-74.59064452,39.3542042,203 N CLARENDON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_502.04_3,-74.5947918,39.35183797,205 N CLARENDON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_502.04_36,-74.6343098,39.3188151,200 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.04_37,-74.6464536,39.33058131,202 N BRUNSWICK DR,MARGATE CITY CITY,19,2006,1,RES1,3001 -0116_502.04_38,-74.63538283,39.34145607,204 N BRUNSWICK DR,MARGATE CITY CITY,19,2008,1,RES1,3001 -0116_502.04_4,-74.57610064,39.36556448,207 N CLARENDON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_502.04_40,-74.64091303,39.33798182,208 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.04_41,-74.63704967,39.34346985,210 N BRUNSWICK DR,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_502.04_42,-74.64177153,39.34044939,212 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.04_43,-74.65141,39.3471245,214 N BRUNSWICK DR,MARGATE CITY CITY,19,2013,1,RES1,3001 -0116_502.04_44,-74.63275,39.359647,216 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_502.04_45,-74.62102375,39.3677632,218 N BRUNSWICK DR,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_502.04_5,-74.579638,39.3605005,209 N CLARENDON AVE,MARGATE CITY CITY,18,2011,1,RES1,3001 -0116_502.04_6,-74.5912055,39.366864,211 N CLARENDON AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_502.04_7,-74.59648,39.3646925,213 N CLARENDON AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_502.04_8,-74.59545127,39.36410443,215 N CLARENDON AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_502.04_9,-74.59930591,39.35906138,217 N CLARENDON AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_504.01_1,-74.63010932,39.36379096,301 N CLERMONT AVE,MARGATE CITY CITY,17,1975,1,GOV1,3004 -0116_504.01_11,-74.63483792,39.36312339,318 N CLARENDON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_504.01_13,-74.6328173,39.36209929,314 N CLARENDON AVE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_504.01_14,-74.635895,39.360758,312 N CLARENDON AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_504.01_15,-74.63144306,39.36041372,310 N CLARENDON AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_504.01_16,-74.63466408,39.36038406,308 N CLARENDON AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_504.01_17,-74.65109844,39.35648635,306 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.01_19,-74.65128063,39.35364732,304 N CLARENDON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.01_2,-74.62946833,39.36267612,303 N CLERMONT AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_504.01_20,-74.650096,39.3530845,7605 AMHERST AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_504.01_3,-74.62877994,39.36007678,305 N CLERMONT AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_504.01_4,-74.63996242,39.36713075,307 N CLERMONT AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_504.01_5,-74.63086984,39.36551676,309 N CLERMONT AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_504.01_6,-74.63670816,39.36433473,311 N CLERMONT AVE,MARGATE CITY CITY,17,1956,1,GOV1,3004 -0116_504.01_7,-74.6358235,39.3634845,315 N CLERMONT AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_504.02_1,-74.65477736,39.35638846,309 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.02_10,-74.678803,39.5685315,302 N CLERMONT AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_504.02_11,-74.70598253,39.57099433,304 N CLERMONT AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_504.02_12,-74.706374,39.56469,306 N CLERMONT AVE,MARGATE CITY CITY,18,1957,1,RES1,3001 -0116_504.02_13,-74.60503606,39.59305774,308 N CLERMONT AVE,MARGATE CITY CITY,21,2018,1,GOV1,3004 -0116_504.02_14,-74.606204,39.618554,310 N CLERMONT AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_504.02_15,-74.65102966,39.57461348,312 N CLERMONT AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_504.02_2,-74.64297148,39.36533366,307 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.02_3,-74.6783048,39.560246,305 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.02_4,-74.67549389,39.55963285,303 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.02_5,-74.679597,39.556993,301 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.03_1,-74.69086417,39.58550601,311 N DOUGLAS AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_504.03_10,-74.81013584,39.53563722,308 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.03_2,-74.6955908,39.5853731,309 N DOUGLAS AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_504.03_3,-74.6998585,39.581272,307 N DOUGLAS AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_504.03_4,-74.70301757,39.58090604,305 N DOUGLAS AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_504.03_5,-74.69603446,39.59377116,303 N DOUGLAS AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_504.03_6,-74.69359086,39.59253192,300 N DELAVAN AVE,MARGATE CITY CITY,19,2007,1,GOV1,3004 -0116_504.03_6.01,-74.689779,39.638956,301 N DOUGLAS AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_504.03_7,-74.79249575,39.51899633,302 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.03_8,-74.81151455,39.52571921,304 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_504.03_9,-74.81008144,39.53718178,306 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_505.01_1,-74.8096285,39.5341655,309 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_505.01_10,-74.86444434,39.54409003,304 N DOUGLAS AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_505.01_11,-74.8666285,39.538871,302 N DOUGLAS AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_505.01_12,-74.64226267,39.36456861,300 N DOUGLAS AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_505.01_2,-74.81845416,39.52138993,307 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_505.01_3,-74.84325472,39.53693189,305 N ESSEX AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_505.01_4,-74.80137015,39.54615559,303 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_505.01_5,-74.824537,39.5455505,301 N ESSEX AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_505.01_7,-74.82451028,39.56756081,310 N DOUGLAS AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_505.01_8,-74.82817646,39.56895684,308 N DOUGLAS AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_505.01_9,-74.84319114,39.54023174,306 N DOUGLAS AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_505.02_1,-74.642246,39.3642045,300 N ESSEX AVE,MARGATE CITY CITY,18,1956,1,RES1,3001 -0116_505.02_2,-74.75986328,39.30650204,302 N ESSEX AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_505.02_3,-74.77126,39.3065565,304 N ESSEX AVE,MARGATE CITY CITY,18,1956,1,RES1,3001 -0116_505.02_4,-74.76748241,39.31460356,306 N ESSEX AVE,MARGATE CITY CITY,19,1956,1,RES1,3001 -0116_505.02_6,-74.76410285,39.31084196,308 N ESSEX AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_505.02_7,-74.76967616,39.3351925,310 N ESSEX AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_505.02_8,-74.7556515,39.351614,312 N ESSEX AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_505.02_9,-74.80147937,39.3654917,314 N ESSEX AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_507.02_1.02,-74.85399169,39.36760261,333 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_507.02_10,-74.544818,39.3722675,311 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_507.02_11,-74.54630373,39.37200851,309 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_507.02_12,-74.5490595,39.3699855,307 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_507.02_14,-74.548123,39.369631,AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_507.02_2,-74.5389975,39.3757895,331 N GLADSTONE AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_507.02_3,-74.54012215,39.37541054,329 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_507.02_4,-74.53905516,39.37432953,327 N GLADSTONE AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_507.02_5,-74.53715466,39.37155953,325 N GLADSTONE AVE,MARGATE CITY CITY,19,2007,1,RES1,3001 -0116_507.02_6,-74.54776108,39.37373914,323 N GLADSTONE AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_507.02_7,-74.55224099,39.37325517,321 N GLADSTONE AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_507.02_8,-74.54676165,39.37311704,319 N GLADSTONE AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_507.02_9,-74.5422915,39.372488,317 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_509.01_29,-74.551092,39.369018,31 N COLMAR CIRCLE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_509.01_31,-74.54897983,39.36850407,8104 FULTON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_509.01_32,-74.538925,39.383583,8102 FULTON AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_509.01_34,-74.53695602,39.38349133,8100 FULTON AVE,MARGATE CITY CITY,17,1958,1,COM1,3004 -0116_509.01_35,-74.53642056,39.38119908,8098 FULTON AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.01_37,-74.536512,39.38067,8096 FULTON AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_509.01_38,-74.53487787,39.38035536,8094 FULTON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_509.01_40,-74.5374785,39.3798905,8092 FULTON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_509.01_78,-74.54168935,39.37978546,29 N COLMAR CIRCLE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_509.01_79,-74.55287167,39.38449849,27 N COLMAR CIRCLE,MARGATE CITY CITY,17,1952,1,IND1,3002 -0116_509.01_80,-74.54910765,39.3832267,25 N COLMAR CIRCLE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_509.01_81,-74.5525505,39.3821205,23 N COLMAR CIRCLE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.01_83,-74.54588881,39.37894393,21 N COLMAR CIRCLE,MARGATE CITY CITY,18,1953,1,RES1,3001 -0116_509.01_84,-74.54946567,39.37698001,19 N COLMAR CIRCLE,MARGATE CITY CITY,19,2010,1,RES1,3001 -0116_509.02_42,-74.55525307,39.37212788,322 N GLADSTONE AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_509.02_43,-74.5595015,39.3704165,320 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_509.02_45,-74.55989264,39.36988994,318 N GLADSTONE AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_509.02_46,-74.55352903,39.36887602,316 N GLADSTONE AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_509.02_48,-74.56100385,39.36874202,314 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_509.02_49,-74.568718,39.3733235,312 N GLADSTONE AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_509.02_51,-74.56969284,39.37086118,310 N GLADSTONE AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.02_52,-74.57133547,39.36864031,308 N GLADSTONE AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_509.02_53,-74.55364103,39.37805666,306 N GLADSTONE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.02_55,-74.53811868,39.38801909,304 N GLADSTONE AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_509.02_56,-74.5377915,39.387282,1 E COLMAR CIRCLE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_509.02_85,-74.55255151,39.39261248,23 E COLMAR CIRCLE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_509.02_87,-74.54228848,39.39089503,21 E COLMAR CIRCLE,MARGATE CITY CITY,20,1956,1,RES1,3001 -0116_509.02_88,-74.54710642,39.38815715,19 E COLMAR CIRCLE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_509.02_89,-74.5341935,39.4014725,17 E COLMAR CIRCLE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_509.02_90,-74.53228232,39.39955898,15 E COLMAR CIRCLE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_509.02_91,-74.55976767,39.39359717,11 E COLMAR CIRCLE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_509.02_93,-74.560867,39.388119,9 E COLMAR CIRCLE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_509.02_94,-74.55778642,39.39619135,7 E COLMAR CIRCLE,MARGATE CITY CITY,17,1910,1,RES1,3001 -0116_509.02_95,-74.565077,39.3988695,5 E COLMAR CIRCLE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_509.02_96,-74.579953,39.37622,3 E COLMAR CIRCLE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_1,-74.59002593,39.37609374,8093 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_11,-74.58819835,39.3775087,8107 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_12,-74.59111606,39.37725778,14 S COLMAR CIRCLE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_509.03_2,-74.592709,39.3760715,8095 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_4,-74.58542686,39.38244227,8097 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_57,-74.604889,39.369238,2 S COLMAR CIRCLE,MARGATE CITY CITY,17,1915,1,RES1,3001 -0116_509.03_58,-74.60980381,39.36830234,4 S COLMAR CIRCLE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_6,-74.58627122,39.38469371,8099 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_60,-74.59806868,39.38394914,6 S COLMAR CIRCLE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_61,-74.599676,39.382128,8 S COLMAR CIRCLE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_63,-74.59948679,39.38002176,10 S COLMAR CIRCLE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_64,-74.6105725,39.3849405,12 S COLMAR CIRCLE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_509.03_7,-74.5904615,39.3806395,8101 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_8,-74.591439,39.380122,8103 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.03_9,-74.58795394,39.37948021,8105 AMHERST AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.04_13,-74.60265589,39.39211426,301 N HUNTINGTON AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_509.04_14,-74.607945,39.389183,303 N HUNTINGTON AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_509.04_16,-74.60816498,39.38690013,305 N HUNTINGTON AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.04_17,-74.61909633,39.38608671,307 N HUNTINGTON AVE,MARGATE CITY CITY,19,2001,1,RES1,3001 -0116_509.04_18,-74.60346601,39.39758141,309 N HUNTINGTON AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.04_19,-74.6127015,39.39846,311 N HUNTINGTON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_509.04_21,-74.5371469,39.40810029,313 N HUNTINGTON AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.04_23,-74.5357235,39.4046135,317 N HUNTINGTON AVE,MARGATE CITY CITY,18,1954,1,GOV1,3004 -0116_509.04_25,-74.531382,39.4153555,319 N HUNTINGTON AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.04_27,-74.56144335,39.41052577,321 N HUNTINGTON AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.04_66,-74.56279769,39.40601843,12 W COLMAR CIRCLE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_509.04_68,-74.56136166,39.4185796,14 W COLMAR CIRCLE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.04_73,-74.593675,39.325459,20 W COLMAR CIRCLE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.04_75,-74.59080232,39.32488148,22 W COLMAR CIRCLE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_509.04_76,-74.58722632,39.32327296,24 W COLMAR CIRCLE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_509.05_102,-74.57949014,39.32936241,15 W COLMAR CIRCLE,MARGATE CITY CITY,17,1952,1,COM1,3004 -0116_509.05_106,-74.5914398,39.33378778,19 W COLMAR CIRCLE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_509.05_107,-74.59262717,39.33327751,21 W COLMAR CIRCLE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_509.05_110,-74.58722921,39.33123635,22 E COLMAR CIRCLE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_509.05_111,-74.58839554,39.3310268,20 E COLMAR CIRCLE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_509.05_112,-74.58805564,39.33083108,18 E COLMAR CIRCLE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_509.05_113,-74.59413968,39.33063319,16 E COLMAR CIRCLE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_509.05_114,-74.5885305,39.326659,14 E COLMAR CIRCLE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_509.05_116,-74.60289595,39.32328068,12 E COLMAR CIRCLE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_509.05_97,-74.59363017,39.32233259,10 E COLMAR CIRCLE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_509.05_99,-74.59303,39.3209385,11 W COLMAR CIRCLE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_510.01_30,-74.60285433,39.31985793,8220 FULTON AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_510.01_32,-74.602728,39.3192635,8216 FULTON AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_510.01_34,-74.60257232,39.31919775,8212 FULTON AVE,MARGATE CITY CITY,17,1938,1,RES1,3001 -0116_510.01_35,-74.6020505,39.317814,8210 FULTON AVE,MARGATE CITY CITY,17,1970,1,RES1,3001 -0116_510.01_36,-74.60260843,39.31757734,8208 FULTON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_510.01_37,-74.60546168,39.3174044,8206 FULTON AVE,MARGATE CITY CITY,19,1957,1,GOV1,3004 -0116_510.01_38,-74.613644,39.3254385,8204 FULTON AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_510.01_39,-74.611922,39.319145,8202 FULTON AVE,MARGATE CITY CITY,17,1945,1,COM1,3004 -0116_510.01_40,-74.60710107,39.33280677,8200 FULTON AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_510.02_41,-74.6024145,39.3305175,324 N HUNTINGTON AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_510.02_42,-74.6068925,39.329195,322 N HUNTINGTON AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_510.02_44,-74.60266368,39.32723506,320 N HUNTINGTON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_510.02_45,-74.61181783,39.32631647,318 N HUNTINGTON AVE,MARGATE CITY CITY,18,1986,1,RES1,3001 -0116_510.02_47,-74.60971634,39.32630053,316 N HUNTINGTON AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_510.02_48,-74.57044551,39.33859833,314 N HUNTINGTON AVE,MARGATE CITY CITY,21,2004,1,RES1,3001 -0116_510.02_50,-74.57405771,39.33824014,312 N HUNTINGTON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_510.02_52.02,-74.49671781,39.32840136,308 N HUNTINGTON AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_510.02_53,-74.570929,39.4140915,306 N HUNTINGTON AVE,MARGATE CITY CITY,17,1930,1,RES3A,3001 -0116_510.02_54,-74.571848,39.413365,304 N HUNTINGTON AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_510.02_55,-74.57131957,39.42718858,302 N HUNTINGTON AVE,MARGATE CITY CITY,18,2011,1,RES1,3001 -0116_510.02_56,-74.57341325,39.42585894,300 N HUNTINGTON AVE,MARGATE CITY CITY,17,1935,1,RES1,3001 -0116_510.02_96,-74.57064138,39.42890332,1 E EDGMAR CIRCLE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_510.03_1.01,-74.57077184,39.42840657,8201 AMHERST AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_510.03_1.02,-74.59074968,39.40236467,8203 AMHERST AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_510.03_11,-74.5978944,39.41108001,8217 AMHERST AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_510.03_3,-74.58190064,39.41442932,8205 AMHERST AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_510.03_4,-74.588076,39.412303,8207 AMHERST AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_510.03_5,-74.6006425,39.4099545,8209 AMHERST AVE,MARGATE CITY CITY,17,1941,1,RES1,3001 -0116_510.03_57,-74.611157,39.414953,2 EAST EDGMAR CIRCLE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_510.03_59,-74.61289612,39.4115798,EDGMAR CIRCLE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_510.03_64,-74.58706876,39.42320842,12 EDGMAR CIRCLE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_510.03_7,-74.60178343,39.4191621,8211 AMHERST AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_510.03_8.01,-74.60415742,39.41139333,8213 AMHERST AVE,MARGATE CITY CITY,20,2014,1,RES1,3001 -0116_512.02_1,-74.5833025,39.431542,300 N JEROME AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_512.02_10,-74.72828373,39.44866865,307 N KENYON AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_512.02_11,-74.7180995,39.448603,305 N KENYON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_512.02_12,-74.73574997,39.44910096,303 N KENYON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_512.02_13,-74.743032,39.4471315,8403 AMHERST AVE,MARGATE CITY CITY,17,2013,1,RES1,3001 -0116_512.02_2,-74.58284903,39.43079687,302 N JEROME AVE,MARGATE CITY CITY,18,1960,1,RES1,3001 -0116_512.02_3,-74.57904805,39.43067739,304 N JEROME AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_512.02_4,-74.5909035,39.4323605,306 N JEROME AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_512.02_5,-74.59218364,39.4309762,308 N JEROME AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_512.02_6,-74.59190566,39.42915799,310 N JEROME AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_512.02_7,-74.58699139,39.4279618,313 N KENYON AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_512.02_8,-74.72751171,39.45160602,311 N KENYON AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_513.01_1,-74.75002045,39.4467433,313 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_513.01_12,-74.75470199,39.45225934,8511 AMHERST AVE,MARGATE CITY CITY,17,2006,1,RES1,3001 -0116_513.01_14,-74.7534565,39.454189,8506 FREMONT AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_513.01_15,-74.75538399,39.45349567,312 N LANCASTER AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_513.01_16,-74.70778317,39.47408789,310 N LANCASTER AVE,MARGATE CITY CITY,18,1960,1,RES1,3001 -0116_513.01_18,-74.7127092,39.47220652,308 N LANCASTER AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_513.01_20,-74.71454,39.470422,306 N LANCASTER AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_513.01_22,-74.753022,39.4860615,304 N LANCASTER AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_513.01_23,-74.798821,39.4576895,302 N LANCASTER AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_513.01_25,-74.8292615,39.46004663,8505 AMHERST AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_513.01_3,-74.72296431,39.46150798,311 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_513.01_4,-74.72425291,39.4590237,309 N MANSFIELD AVE,MARGATE CITY CITY,,1952,1,RES1,3001 -0116_513.01_6,-74.7227205,39.46225,307 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_513.01_7,-74.7366456,39.46745805,305 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_513.01_9,-74.75241517,39.43752027,303 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_513.02_1,-74.82129171,39.46484206,8502 FREMONT AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_513.02_10,-74.82241183,39.49200627,305 N LANCASTER AVE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_513.02_11,-74.817781,39.498606,303 N LANCASTER AVE,MARGATE CITY CITY,21,2017,1,RES1,3001 -0116_513.02_13,-74.8441695,39.4805095,8503 AMHERST AVE,MARGATE CITY CITY,17,1953,1,GOV1,3004 -0116_513.02_14,-74.87795513,39.47515398,312 N KENYON AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_513.02_16,-74.87575933,39.4860485,310 N KENYON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_513.02_18,-74.88134356,39.4845867,308 N KENYON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_513.02_2,-74.85220066,39.46547999,313 N LANCASTER AVE,MARGATE CITY CITY,17,1970,1,RES3A,3001 -0116_513.02_20,-74.84079628,39.49581904,306 N KENYON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_513.02_22,-74.8776855,39.499923,304 N KENYON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_513.02_24,-74.5507515,39.5079835,302 N KENYON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_513.02_26,-74.53296927,39.5291715,8501 AMHERST AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_513.02_4,-74.882473,39.457643,311 N LANCASTER AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_513.02_6,-74.83601281,39.48546296,309 N LANCASTER AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_513.02_8,-74.832364,39.480139,307 N LANCASTER AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_514_1,-74.5327584,39.52349903,317 N NASSAU AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_514_10,-74.59004199,39.52062262,305 N NASSAU AVE,MARGATE CITY CITY,19,2012,1,RES1,3001 -0116_514_11,-74.59276744,39.51893919,8603 AMHERST AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_514_13,-74.59539275,39.51294589,316 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_514_14,-74.5428208,39.54225231,314 N MANSFIELD AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_514_15,-74.563865,39.5410235,312 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_514_16,-74.55539608,39.5510971,310 N MANSFIELD AVE,MARGATE CITY CITY,21,2013,1,RES1,3001 -0116_514_18,-74.56671818,39.55750759,308 N MANSFIELD AVE,MARGATE CITY CITY,20,2018,1,RES1,3001 -0116_514_19,-74.597333,39.570002,306 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_514_21,-74.62926467,39.50421773,304 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_514_22,-74.62346938,39.52072492,302 N MANSFIELD AVE,MARGATE CITY CITY,21,2018,1,RES1,3001 -0116_514_24,-74.64854812,39.51241637,300 N MANSFIELD AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_514_4,-74.5594825,39.524316,315 N NASSAU AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_514_5,-74.56582116,39.52856907,311 N NASSAU AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_514_6,-74.5648455,39.523202,309 N NASSAU AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_514_8,-74.55403602,39.53207718,307 N NASSAU AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_515_1,-74.6527455,39.505628,500 N NASSAU AVE,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_515_11,-74.6452645,39.5276705,424 N NASSAU AVE,MARGATE CITY CITY,19,1966,1,GOV1,3004 -0116_515_13,-74.65085985,39.52326546,422 N NASSAU AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_515_15,-74.64934421,39.52277927,412 N NASSAU AVE,MARGATE CITY CITY,20,1990,1,RES1,3001 -0116_515_16,-74.65282003,39.52289084,410 N NASSAU AVE,MARGATE CITY CITY,20,1995,1,RES1,3001 -0116_515_17,-74.656019,39.5277015,408 N NASSAU AVE,MARGATE CITY CITY,20,1997,1,RES1,3001 -0116_515_21,-74.65225034,39.52284346,400 N NASSAU AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_515_23,-74.645697,39.5350725,320 N NASSAU AVE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_515_25,-74.64741371,39.53430287,316 N NASSAU AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_515_28,-74.645102,39.5339685,312 N NASSAU AVE,MARGATE CITY CITY,20,1971,1,EDU1,3004 -0116_515_29,-74.64913015,39.53376196,310 N NASSAU AVE,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_515_32,-74.64175884,39.53235252,304 N NASSAU AVE,MARGATE CITY CITY,20,1993,1,RES1,3001 -0116_515_5,-74.66156145,39.51714534,430 N NASSAU AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_515_7,-74.62690916,39.52725503,428 N NASSAU AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_515_8,-74.62976812,39.53341865,426 N NASSAU AVE,MARGATE CITY CITY,21,1995,1,RES1,3001 -0116_517_11,-74.66439759,39.54429385,8712 FREMONT AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_517_12,-74.66708734,39.54177401,315 N QUINCY AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_517_17,-74.59999676,39.42555444,303 N QUINCY AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_517_2,-74.67990483,39.51234847,8717 AMHERST AVE,MARGATE CITY CITY,18,1932,1,RES1,3001 -0116_517_3,-74.6638395,39.531444,8715 AMHERST AVE,MARGATE CITY CITY,17,1929,1,RES3A,3001 -0116_517_5,-74.63282424,39.55280818,8711 AMHERST AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_517_6,-74.64382116,39.54464001,302 N PEMBROKE AVE,MARGATE CITY CITY,17,1910,1,RES1,3001 -0116_518_1,-74.59778473,39.43571608,315 N RUMSON AVE,MARGATE CITY CITY,19,2013,1,RES1,3001 -0116_518_13,-74.62186053,39.37461833,302 N QUINCY AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_518_17,-74.62404435,39.38480075,314 N QUINCY AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_518_3,-74.59939958,39.4340403,313 N RUMSON AVE,MARGATE CITY CITY,18,1965,1,RES3B,3001 -0116_518_9.01,-74.6190255,39.436052,301 N RUMSON AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_518_9.02,-74.61909669,39.43419937,8805 AMHERST AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_518_9.03,-74.62565534,39.37675398,300 N QUINCY AVE,MARGATE CITY CITY,21,2001,1,GOV1,3004 -0116_520_11,-74.62486964,39.38258767,443 N THURLOW AVE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_520_12,-74.62363655,39.38147475,441 N THURLOW AVE,MARGATE CITY CITY,22,2013,1,RES1,3001 -0116_520_19,-74.62356517,39.37930348,435 N THURLOW AVE,MARGATE CITY CITY,17,1945,2,RES1,3001 -0116_520_21,-74.639543,39.3839155,431 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_520_27,-74.6381976,39.38113605,425 N THURLOW AVE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_520_29,-74.63914516,39.38111751,423 N THURLOW AVE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_520_31,-74.64486384,39.36977202,411 N THURLOW AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_520_34.02,-74.64445276,39.37852538,405 N THURLOW AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_520_36,-74.6265875,39.393046,403 N THURLOW AVE,MARGATE CITY CITY,22,2001,1,RES1,3001 -0116_520_38,-74.6245923,39.3927239,313 N THURLOW AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_520_4,-74.6281785,39.3847335,447 N THURLOW AVE,MARGATE CITY CITY,21,1968,1,RES1,3001 -0116_520_40,-74.62876773,39.39261396,311 N THURLOW AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_520_42,-74.632357,39.391092,309 N THURLOW AVE,MARGATE CITY CITY,17,1945,1,RES3A,3001 -0116_520_44,-74.63127595,39.38942831,307 N THURLOW AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_520_45,-74.63680596,39.38533709,305 N THURLOW AVE,MARGATE CITY CITY,19,1955,1,RES1,3001 -0116_520_47,-74.62393219,39.39387808,303 N THURLOW AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_520_51.01,-74.6422295,39.398748,301 N THURLOW AVE,MARGATE CITY CITY,19,2005,1,RES1,3001 -0116_520_51.02,-74.64601069,39.39441723,8903 AMHERST AVE,MARGATE CITY CITY,19,2005,1,COM1,3004 -0116_520_53,-74.637876,39.401552,8901 AMHERST AVE,MARGATE CITY CITY,18,1958,1,RES1,3001 -0116_520_7,-74.62383084,39.38427783,445 N THURLOW AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_521_1,-74.65637841,39.40038416,321 N UNION AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_521_10,-74.702898,39.368558,305 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_521_11,-74.6797775,39.38697,303 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_521_12,-74.67641966,39.38585347,8907 AMHERST AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_521_13,-74.62912473,39.41006222,324 N THURLOW AVE,MARGATE CITY CITY,17,1947,1,RES1,3001 -0116_521_15,-74.62242941,39.41883137,316 N THURLOW AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_521_17,-74.627394,39.416574,308 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_521_19,-74.63171543,39.4139028,306 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_521_2,-74.65718,39.3997345,319 N UNION AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_521_20,-74.6441083,39.41065942,304 N THURLOW AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_521_22,-74.65162436,39.40889526,302 N THURLOW AVE,MARGATE CITY CITY,17,1949,1,COM1,3004 -0116_521_3,-74.6589315,39.399532,317 N UNION AVE,MARGATE CITY CITY,18,1951,1,RES1,3001 -0116_521_4,-74.67118145,39.36886628,315 N UNION AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_521_6,-74.6779295,39.3809015,311 N UNION AVE,MARGATE CITY CITY,17,1951,1,GOV1,3004 -0116_521_7,-74.67875369,39.37980377,309 N UNION AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_521_9,-74.6758674,39.37942831,307 N UNION AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_522_1,-74.6415705,39.403937,9002 FREMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_522_11,-74.6322147,39.42177457,9005 AMHERST AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_522_12,-74.621573,39.432556,9003 AMHERST AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_522_13,-74.62306091,39.43250448,9001 AMHERST AVE,MARGATE CITY CITY,18,1949,1,RES1,3001 -0116_522_15,-74.6217305,39.4323695,312 N UNION AVE,MARGATE CITY CITY,17,1949,1,RES1,3001 -0116_522_16,-74.61996106,39.4323522,310 N UNION AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_522_17,-74.6382308,39.43567715,308 N UNION AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_522_18,-74.63515784,39.43512348,306 N UNION AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_522_19,-74.6316882,39.43393968,304 N UNION AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_522_2,-74.66022119,39.41796653,311 N VENDOME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_522_22,-74.63066259,39.43332232,302 N UNION AVE,MARGATE CITY CITY,19,1951,1,RES1,3001 -0116_522_3,-74.65234796,39.41082319,309 N VENDOME AVE,MARGATE CITY CITY,18,2013,1,RES1,3001 -0116_522_4,-74.6242195,39.42521,307 N VENDOME AVE,MARGATE CITY CITY,18,1952,1,RES1,3001 -0116_522_5,-74.6262675,39.4199195,305 N VENDOME AVE,MARGATE CITY CITY,20,2015,1,RES1,3001 -0116_522_6,-74.630345,39.427196,303 N VENDOME AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_523_10,-74.7069075,39.420824,316 N VENDOME AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_523_11,-74.70660476,39.42867673,314 N VENDOME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_523_12,-74.564715,39.448892,312 N VENDOME AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_523_13,-74.53562005,39.45638128,310 N VENDOME AVE,MARGATE CITY CITY,21,2016,1,GOV1,3004 -0116_523_14,-74.54358821,39.45955811,308 N VENDOME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_523_15,-74.53450395,39.46834693,306 N VENDOME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_523_16,-74.5407975,39.4682015,304 N VENDOME AVE,MARGATE CITY CITY,19,2006,1,RES1,3001 -0116_523_17,-74.53420961,39.46809557,302 N VENDOME AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_523_18,-74.53760821,39.46791559,300 N VENDOME AVE,MARGATE CITY CITY,18,1930,1,RES1,3001 -0116_523_2,-74.63771033,39.4302835,313 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_523_3,-74.64583025,39.43464999,311 N WILSON AVE,MARGATE CITY CITY,47,1950,2,COM1,3004 -0116_523_7,-74.64785431,39.43394545,303 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_523_8,-74.64284605,39.43254785,301 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_523_9,-74.69292441,39.41904566,9006 FREMONT AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_524.01_1,-74.549082,39.4672795,306 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.01_2,-74.60308732,39.44268547,304 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.01_3,-74.59905,39.45137,302 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.01_4,-74.617503,39.4546625,300 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.01_5,-74.53559292,39.47212575,9103 AMHERST AVE,MARGATE CITY CITY,49,1950,2,RES1,3001 -0116_524.01_6,-74.53635109,39.47090815,9105 AMHERST AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.01_7,-74.53408667,39.47048525,9104 FREMONT AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.01_8,-74.546605,39.475193,9102 FREMONT AVE,MARGATE CITY CITY,45,1950,2,GOV1,3004 -0116_524.02_1,-74.55149643,39.47303822,312 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.02_11,-74.58131581,39.47303417,305 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.02_12,-74.58022182,39.47293051,303 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.02_13,-74.5861065,39.484842,301 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.02_2,-74.55050041,39.47028572,310 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.02_3,-74.5546765,39.473134,308 N WILSON AVE,MARGATE CITY CITY,43,1950,2,RES1,3001 -0116_524.02_4,-74.5533625,39.471638,306 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.02_6,-74.5689615,39.476694,302 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.02_7,-74.5458285,39.503288,300 N WILSON AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_524.02_8,-74.566406,39.500666,311 N HARDING AVE,MARGATE CITY CITY,47,1950,2,RES1,3001 -0116_525_1,-74.5827625,39.478849,9205 AMHERST AVE,MARGATE CITY CITY,18,2000,1,RES1,3001 -0116_525_10,-74.64347182,39.43624254,9105 FREMONT AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_525_11,-74.6334337,39.45488672,9103 FREMONT AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_525_2,-74.60165209,39.47948073,9135 FREMONT AVE,MARGATE CITY CITY,21,2003,1,IND1,3002 -0116_525_3,-74.58430746,39.49603166,9131 FREMONT AVE,MARGATE CITY CITY,21,2000,1,EDU1,3004 -0116_525_4_C9127,-74.6056865,39.4894095,9127 FREMONT AVE,MARGATE CITY CITY,20,1997,1,RES1,3001 -0116_525_5,-74.597365,39.5027115,9125 FREMONT AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_525_6,-74.60118816,39.50169973,9121 FREMONT AVE,MARGATE CITY CITY,22,2000,1,RES1,3001 -0116_525_7,-74.60328196,39.49834264,9117 FREMONT AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_525_8_C9113,-74.61430551,39.49877567,9113 FREMONT AVE,MARGATE CITY CITY,21,1998,1,IND1,3002 -0116_525_9_C9109,-74.62785709,39.43823532,9109 FREMONT AVE,MARGATE CITY CITY,21,1998,1,RES1,3001 -0116_526_1.01,-74.63983662,39.46295744,9211 AMHERST AVE,MARGATE CITY CITY,,1955,1,RES1,3001 -0116_526_3.01_C000B,-74.648873,39.4590545,9213 AMHERST AVE,MARGATE CITY CITY,23,2005,1,RES1,3001 -0116_527_3.01,-74.64968816,39.45680443,9315 AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_529_1,-74.641968,39.463747,AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_529_4,-74.65241057,39.46803821,9511 AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_530_1,-74.79913565,39.53499026,9601 AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_530_2,-74.8095635,39.5329155,AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_530_3_C0B21,-74.819142,39.5451335,9707 AMHERST AVE,MARGATE CITY CITY,,0,1,GOV1,3004 -0116_531_1,-74.80836733,39.55941249,9707 AMHERST AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_6.01_1,-74.75574642,39.30280384,101 S FRANKLIN AVE,MARGATE CITY CITY,22,2016,1,RES1,3001 -0116_6.01_10,-74.81292689,39.3540502,106 S EXETER AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_6.01_11,-74.53774905,39.37558337,108 S EXETER AVE,MARGATE CITY CITY,19,1950,1,RES3A,3001 -0116_6.01_13,-74.54030969,39.37474928,110 S EXETER AVE,MARGATE CITY CITY,22,2016,1,RES3A,3001 -0116_6.01_2,-74.76711839,39.30843868,103 S FRANKLIN AVE,MARGATE CITY CITY,22,2016,1,RES1,3001 -0116_6.01_3,-74.77086098,39.31411836,105 S FRANKLIN AVE,MARGATE CITY CITY,19,1925,1,RES3A,3001 -0116_6.01_5,-74.76358965,39.30941973,109 S FRANKLIN AVE,MARGATE CITY CITY,19,1928,1,RES1,3001 -0116_6.01_8,-74.763685,39.351081,100 S EXETER AVE,MARGATE CITY CITY,21,2010,1,RES1,3001 -0116_6.01_9,-74.79538348,39.31321527,104 S EXETER AVE,MARGATE CITY CITY,17,1946,1,RES1,3001 -0116_6.02_1,-74.5403175,39.3733935,7906 ATLANTIC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_6.02_10,-74.537225,39.3843905,104 S FRANKLIN AVE,MARGATE CITY CITY,19,1925,1,RES3A,3001 -0116_6.02_11,-74.53433485,39.38429995,106 S FRANKLIN AVE,MARGATE CITY CITY,21,1987,1,RES1,3001 -0116_6.02_2,-74.53774184,39.37163047,103 S FRONTENAC AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_6.02_3,-74.551475,39.375806,105 S FRONTENAC AVE,MARGATE CITY CITY,19,1935,1,RES1,3001 -0116_6.02_4,-74.55163702,39.37539916,107 S FRONTENAC AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_6.02_5,-74.54560309,39.37153452,109 S FRONTENAC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_6.02_6.01,-74.54888,39.3712195,111 S FRONTENAC AVE,MARGATE CITY CITY,22,1965,1,RES1,3001 -0116_6.02_6.02,-74.55104769,39.36924108,S FRANKLIN AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_6.02_8,-74.5513527,39.36843097,7904 ATLANTIC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_601.01_12,-74.83555104,39.57124984,404 N FREDERICKSBURG AVE,MARGATE CITY CITY,19,2000,1,RES1,3001 -0116_601.01_2,-74.82733078,39.56770853,400 N FREDERICKSBURG AVE,MARGATE CITY CITY,17,1943,1,RES1,3001 -0116_601.01_41,-74.83432516,39.56731148,403 OAK TERRACE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_601.01_43,-74.85752658,39.55275459,402 N FREDERICKSBURG AVE,MARGATE CITY CITY,18,1992,1,RES1,3001 -0116_601.02_1,-74.3983381,39.39061723,7405 FREMONT AVE,MARGATE CITY CITY,17,1979,1,RES1,3001 -0116_601.02_5,-74.38946284,39.39057797,401 N ARGYLE AVE,MARGATE CITY CITY,17,1989,1,RES1,3001 -0116_602.03_1,-74.5733345,39.3500625,7501 FREMONT AVE,MARGATE CITY CITY,17,1953,1,RES3A,3001 -0116_602.03_2,-74.5719655,39.3448195,7503 FREMONT AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_602.03_3,-74.56915709,39.34296288,7505 FREMONT AVE,MARGATE CITY CITY,19,2011,1,RES1,3001 -0116_602.03_4,-74.54902805,39.36762469,7507 FREMONT AVE,MARGATE CITY CITY,17,1954,1,COM1,3004 -0116_602.03_5,-74.55558712,39.35606635,7509 FREMONT AVE,MARGATE CITY CITY,20,2018,1,RES1,3001 -0116_602.03_6,-74.5703755,39.359537,7511 FREMONT AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_602.03_7,-74.5654137,39.35762317,7513 FREMONT AVE,MARGATE CITY CITY,18,1954,1,COM1,3004 -0116_602.03_8,-74.56646156,39.35736873,7515 FREMONT AVE,MARGATE CITY CITY,18,2009,1,RES1,3001 -0116_602.05_97,-74.855311,39.5522305,405 N BRUNSWICK DR,MARGATE CITY CITY,,0,1,GOV1,3004 -0116_604.01_11,-74.87857092,39.56899115,CLARENDON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_604.01_13,-74.71540802,39.57791758,408 N CLARENDON AVE,MARGATE CITY CITY,19,2004,1,RES1,3001 -0116_604.01_15,-74.71380445,39.57546316,406 N CLARENDON AVE,MARGATE CITY CITY,19,2004,1,RES1,3001 -0116_604.01_18,-74.7233195,39.577811,402 N CLARENDON AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_604.01_20,-74.7214625,39.575922,400 N CLARENDON AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_33,-74.72593686,39.58675555,409 N CLERMONT AVE,MARGATE CITY CITY,17,1958,1,COM1,3004 -0116_604.01_34,-74.77773857,39.58793484,411 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_35,-74.768981,39.5916875,413 N CLERMONT AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_604.01_36,-74.78570054,39.59577197,415 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_37,-74.70743083,39.63435263,417 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_38,-74.718214,39.635394,419 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_39,-74.779974,39.6134725,421 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_40,-74.77944184,39.62090418,423 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3004 -0116_604.01_41,-74.75931845,39.63092251,425 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_42,-74.7632725,39.637205,427 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_43,-74.77604132,39.62618534,429 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.01_44,-74.7751075,39.6261145,431 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.01_5,-74.85670807,39.55220934,7607 FREMONT AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_604.01_6,-74.87006465,39.54708355,403 N CLERMONT AVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_604.01_7,-74.842177,39.5626985,405 N CLERMONT AVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_604.01_9,-74.86668058,39.56973235,407 N CLERMONT AVE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_604.02_1,-74.7800763,39.625303,423 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_10,-74.58858326,39.32565388,405 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_11,-74.592299,39.3245055,403 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_12,-74.587185,39.3234245,401 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES3A,3001 -0116_604.02_16,-74.591145,39.3225525,400 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.02_18,-74.5942745,39.321324,404 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_19,-74.58752809,39.32128519,406 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_2,-74.78364347,39.63635177,421 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_20,-74.59220232,39.31827447,408 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_21,-74.59659001,39.31813489,410 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_22,-74.5836935,39.3311075,412 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_23,-74.58391815,39.33084837,414 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_24,-74.58038507,39.32932101,416 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_25,-74.58997526,39.32747604,418 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES3A,3001 -0116_604.02_26,-74.58763583,39.32730844,420 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_27,-74.58787158,39.32635118,422 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_28,-74.602137,39.3224085,424 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,COM1,3004 -0116_604.02_29,-74.6006577,39.32012356,426 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_3,-74.791781,39.6349685,419 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_30,-74.6032175,39.3182595,428 N CLERMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_604.02_31,-74.615088,39.323374,430 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.02_32,-74.61231737,39.32304129,432 N CLERMONT AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_604.02_4,-74.790035,39.633967,417 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_5,-74.60377492,39.30744528,415 N DELAVAN AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_604.02_6,-74.5972175,39.3171145,413 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_7,-74.60138081,39.31672397,411 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_8,-74.597587,39.313729,409 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.02_9,-74.61748859,39.3132533,407 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_1,-74.6086825,39.3222165,427 N DOUGLAS AVE,MARGATE CITY CITY,19,2011,1,RES3B,3001 -0116_604.03_10,-74.59900285,39.32689651,409 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_604.03_11,-74.6070265,39.32660453,407 N DOUGLAS AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_604.03_12,-74.60458557,39.3261166,405 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_604.03_13.01,-74.787618,39.633601,403 N DOUGLAS AVE,MARGATE CITY CITY,18,1962,1,COM1,3002 -0116_604.03_13.02,-74.7880028,39.63142366,400 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_14.01,-74.82645311,39.58480697,401 N DOUGLAS AVE,MARGATE CITY CITY,18,1963,1,RES1,3001 -0116_604.03_14.02,-74.83704552,39.5908192,402 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_15,-74.83557925,39.59069298,404 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_16,-74.86527723,39.57432683,406 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_17,-74.8403465,39.597481,408 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_18,-74.85197654,39.59885484,410 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_19,-74.8676995,39.5935855,412 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_2,-74.6160405,39.321926,425 N DOUGLAS AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_604.03_20,-74.87544649,39.59425867,414 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_21,-74.86947784,39.59967219,416 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_22,-74.86604282,39.59841248,418 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_23,-74.878926,39.5984675,420 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_24,-74.88215138,39.59810752,422 N DELAVAN AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_604.03_3,-74.61081211,39.32162787,423 N DOUGLAS AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_604.03_4,-74.61494966,39.32075853,421 N DOUGLAS AVE,MARGATE CITY CITY,18,1979,1,GOV1,3004 -0116_604.03_5,-74.61305712,39.32010595,419 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_604.03_6,-74.60032634,39.33036497,417 N DOUGLAS AVE,MARGATE CITY CITY,18,1967,1,GOV1,3004 -0116_604.03_7,-74.6007025,39.3300665,415 N DOUGLAS AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_604.03_9,-74.60238318,39.32852756,411 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES3A,3001 -0116_605.01_1,-74.79934016,39.61651976,423 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.01_10,-74.798159,39.637289,405 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES3A,3001 -0116_605.01_11,-74.80476216,39.63606699,403 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.01_12,-74.79933117,39.6356595,401 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.01_2,-74.82831698,39.62139783,421 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,GOV1,3004 -0116_605.01_24,-74.808808,39.63869167,426 N DOUGLAS AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_605.01_25,-74.8104655,39.637786,424 N DOUGLAS AVE,MARGATE CITY CITY,18,1968,1,RES3A,3001 -0116_605.01_26,-74.80757164,39.63362744,422 N DOUGLAS AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_605.01_27,-74.80651564,39.63357997,420 N DOUGLAS AVE,MARGATE CITY CITY,18,1971,1,RES3A,3001 -0116_605.01_28,-74.80672482,39.63133627,418 N DOUGLAS AVE,MARGATE CITY CITY,18,1956,1,COM1,3004 -0116_605.01_29,-74.81861585,39.63848555,416 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,GOV1,3004 -0116_605.01_3,-74.80168601,39.62687783,419 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES3A,3001 -0116_605.01_31,-74.81759038,39.63463936,412 N DOUGLAS AVE,MARGATE CITY CITY,18,1964,1,GOV1,3004 -0116_605.01_32,-74.8296915,39.6354625,410 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_605.01_33,-74.852817,39.6084955,408 N DOUGLAS AVE,MARGATE CITY CITY,18,1963,1,RES1,3001 -0116_605.01_34,-74.884452,39.46385498,406 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_605.01_35,-74.88759984,39.47523011,404 N DOUGLAS AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_605.01_36,-74.895344,39.4731425,402 N DOUGLAS AVE,MARGATE CITY CITY,18,1962,1,RES1,3002 -0116_605.01_37,-74.9189155,39.4733205,400 N DOUGLAS AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_605.01_4,-74.8026,39.6259755,417 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3002 -0116_605.01_5,-74.80536273,39.6254246,415 N ESSEX AVE,MARGATE CITY CITY,18,1952,1,RES3A,3001 -0116_605.01_6,-74.81145097,39.63092084,413 N ESSEX AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_605.01_7,-74.8102583,39.63050427,411 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.01_8,-74.80244944,39.63848766,409 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.01_9,-74.80021649,39.63754166,407 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_1,-74.91272924,39.48195097,425 N EXETER AVE,MARGATE CITY CITY,18,1973,1,RES3A,3001 -0116_605.02_10,-74.89697142,39.51022754,409 N EXETER AVE,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_605.02_11,-74.9115255,39.5121415,407 N EXETER AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_605.02_12,-74.92578999,39.51097602,405 N EXETER AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_605.02_13.01,-74.92625725,39.51018582,403 N EXETER AVE,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_605.02_13.02,-74.92547714,39.50612079,400 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_14.01,-74.92302197,39.51455541,401 N EXETER AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_605.02_14.02,-74.9302585,39.5184065,402 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_15,-74.945356,39.5200445,404 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES3A,3001 -0116_605.02_16,-74.946433,39.517968,406 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_17,-74.9390855,39.5179685,408 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_18,-74.93941693,39.51620975,410 N ESSEX AVE,MARGATE CITY CITY,18,1952,1,RES3A,3001 -0116_605.02_19,-74.9485075,39.514771,412 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3004 -0116_605.02_2,-74.9266075,39.4834655,423 N EXETER AVE,MARGATE CITY CITY,19,2001,1,RES1,3001 -0116_605.02_20,-74.9535505,39.5121365,414 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_21,-74.953806,39.518897,416 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_22,-74.9497765,39.5146815,418 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_23,-74.9490845,39.5144445,420 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_24,-74.9346385,39.5259675,422 N ESSEX AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_605.02_4,-74.89020017,39.49903361,421 N EXETER AVE,MARGATE CITY CITY,18,1995,1,RES1,3001 -0116_605.02_5,-74.90162409,39.50351966,419 N EXETER AVE,MARGATE CITY CITY,19,1994,1,RES1,3001 -0116_605.02_6,-74.901356,39.503434,417 N EXETER AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_605.02_7,-74.907791,39.493929,415 N EXETER AVE,MARGATE CITY CITY,19,1991,1,RES1,3001 -0116_605.02_8,-74.94922259,39.49299562,413 N EXETER AVE,MARGATE CITY CITY,19,1991,1,RES1,3004 -0116_605.02_9,-74.94947992,39.49919163,411 N EXETER AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_607.01_1,-74.93933502,39.52874818,426 N EXETER AVE,MARGATE CITY CITY,19,1974,1,RES1,3001 -0116_607.01_4,-74.94501632,39.52368251,418 N EXETER AVE,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_607.02_33.01,-74.94269654,39.52293619,400 N EXETER AVE,MARGATE CITY CITY,19,1988,1,RES3A,3001 -0116_607.02_33.02,-74.94404361,39.52228667,402 N EXETER AVE,MARGATE CITY CITY,19,1988,1,COM1,3002 -0116_607.02_33.03,-74.9395655,39.532814,404 N EXETER AVE,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_607.02_33.04,-74.941526,39.532761,406 N EXETER AVE,MARGATE CITY CITY,19,1986,1,RES3C,3001 -0116_607.02_33.05,-74.94325252,39.52972716,408 N EXETER AVE,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_607.02_33.07,-74.9639285,39.529351,412 N EXETER AVE,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_607.02_33.08,-74.901903,39.5392635,414 N EXETER AVE,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_609.01_29,-74.88450366,39.56114856,8114 MARSHALL AVE,MARGATE CITY CITY,17,1974,1,RES1,3001 -0116_609.01_31,-74.88683822,39.55765685,8112 MARSHALL AVE,MARGATE CITY CITY,17,1975,1,RES1,3001 -0116_609.01_32,-74.929072,39.560051,8110 MARSHALL AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_609.01_33,-74.88732698,39.57467667,8108 MARSHALL AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_609.01_35,-74.88589194,39.59509532,8106 MARSHALL AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_609.01_36,-74.88445116,39.59449099,8104 MARSHALL AVE,MARGATE CITY CITY,17,1974,1,RES1,3001 -0116_609.01_37,-74.6871385,39.653717,8102 MARSHALL AVE,MARGATE CITY CITY,17,1974,1,RES1,3002 -0116_609.01_38,-74.707743,39.6395635,8100 MARSHALL AVE,MARGATE CITY CITY,17,1974,1,RES1,3001 -0116_609.01_77,-74.72130433,39.64709601,27 N GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.01_79,-74.79215291,39.64226948,25 N GILMAR CIRCLE,MARGATE CITY CITY,20,1965,1,RES1,3001 -0116_609.01_80,-74.791233,39.641618,23 N GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,COM1,3004 -0116_609.01_81,-74.7939027,39.64095584,21 N GILMAR CIRCLE,MARGATE CITY CITY,17,1968,1,RES1,3001 -0116_609.01_82,-74.7867535,39.6604235,19 N GILMAR CIRCLE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_609.01_84,-74.7994777,39.6422808,17 N GILMAR CIRCLE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_609.02_41,-74.81026256,39.64749785,422 N GLADSTONE AVE,MARGATE CITY CITY,19,1986,1,RES1,3001 -0116_609.02_45,-74.81021946,39.64268051,416 N GLADSTONE AVE,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_609.02_46,-74.81073966,39.65207367,414 N GLADSTONE AVE,MARGATE CITY CITY,17,1987,1,RES1,3001 -0116_609.02_47,-74.827106,39.6478605,412 N GLADSTONE AVE,MARGATE CITY CITY,18,1986,1,RES1,3001 -0116_609.02_48,-74.816991,39.6427605,410 N GLADSTONE AVE,MARGATE CITY CITY,18,1986,1,RES1,3001 -0116_609.02_50,-74.8201505,39.6413575,408 N GLADSTONE AVE,MARGATE CITY CITY,18,1989,1,RES1,3001 -0116_609.02_51,-74.83107479,39.64445454,406 N GLADSTONE AVE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_609.02_53,-74.830167,39.6437595,404B N GLADSTONE AVE,MARGATE CITY CITY,18,1985,1,RES1,3001 -0116_609.02_54,-74.83669588,39.64126387,404A N GLADSTONE AVE,MARGATE CITY CITY,18,1984,1,RES1,3001 -0116_609.02_56,-74.819157,39.6536605,402 N GLADSTONE AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_609.02_86.01,-74.80117,39.650591,420 N GLADSTONE AVE,MARGATE CITY CITY,19,2003,1,RES1,3002 -0116_609.02_86.02,-74.80083618,39.65091254,418 N GLADSTONE AVE,MARGATE CITY CITY,18,2004,1,RES1,3001 -0116_609.02_87,-74.42091109,39.3676584,13 E GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.02_88,-74.43199944,39.35888391,11 E GILMAR CIRCLE,MARGATE CITY CITY,17,1969,1,RES1,3002 -0116_609.02_90,-74.4280935,39.35843,9 E GILMAR CIRCLE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_609.02_91,-74.42273875,39.36709654,7 E GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.02_92,-74.42478018,39.36384841,5 E GILMAR CIRCLE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_609.02_94,-74.48701017,39.33299261,3 E GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.02_95,-74.53028206,39.30788732,1 E GILMAR CIRCLE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_609.03_1,-74.52322818,39.31568735,8093 FULTON AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_609.03_10,-74.50406743,39.32417283,8105 FULTON AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_609.03_12,-74.50889317,39.32321258,8107 FULTON AVE,MARGATE CITY CITY,19,2004,1,RES1,3001 -0116_609.03_3,-74.5254225,39.3137635,8095 FULTON AVE,MARGATE CITY CITY,17,1962,1,RES1,3004 -0116_609.03_4,-74.50440008,39.32516216,8097 FULTON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_609.03_57,-74.50865709,39.32281116,2 S GILMAR CIRCLE,MARGATE CITY CITY,18,1978,1,GOV1,3004 -0116_609.03_59,-74.494503,39.3338015,4 S GILMAR CIRCLE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_609.03_6,-74.50669526,39.32503767,8099 FULTON AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_609.03_60,-74.49252922,39.33345591,6 S GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,COM1,3004 -0116_609.03_61,-74.49254062,39.33260316,8 S GILMAR CIRCLE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_609.03_62,-74.4913215,39.332576,10 S GILMAR CIRCLE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_609.03_63,-74.49658055,39.33191155,12 S GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.03_7,-74.50605831,39.32495485,8101 FULTON AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_609.03_9,-74.5046065,39.3243925,8103 FULTON AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_609.04_13.02,-74.49042505,39.33145468,401 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_609.04_15,-74.49409447,39.32997003,403 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_609.04_16,-74.500031,39.3342635,405 N HUNTINGTON AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_609.04_18,-74.50350807,39.33383316,407 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_609.04_19,-74.505941,39.3338245,409 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_609.04_20,-74.502341,39.33326077,411 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_609.04_22,-74.50405943,39.33315183,413 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_609.04_23,-74.50888635,39.33310508,415 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_609.04_25,-74.50435759,39.33204716,417 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_609.04_26,-74.642014,39.339703,419 N HUNTINGTON AVE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_609.04_28,-74.65189099,39.34847455,32 W GILMAR CIRCLE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_609.04_65,-74.6252451,39.35955408,14 W GILMAR CIRCLE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_609.04_67,-74.62696986,39.35740075,16 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.04_68,-74.62730706,39.35639916,18 W GILMAR CIRCLE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_609.04_69,-74.627915,39.356199,20 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.04_71,-74.6300505,39.355708,22 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.04_72,-74.62899878,39.36114762,24 W GILMAR CIRCLE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_609.04_73,-74.4640125,39.347255,26 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.04_75,-74.4616975,39.3467875,28 W GILMAR CIRCLE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_609.04_76,-74.46505673,39.34553385,30 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.05_100,-74.46973354,39.34121361,17 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.05_101,-74.4728085,39.33999537,19 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.05_103,-74.475178,39.340029,21 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.05_104,-74.48153312,39.34121116,23 W GILMAR CIRCLE,MARGATE CITY CITY,17,1964,1,RES3A,3001 -0116_609.05_106,-74.48058081,39.33945567,25 W GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.05_108,-74.48513061,39.33931816,27 W GILMAR CIRCLE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_609.05_110,-74.476682,39.3377355,14 E GILMAR CIRCLE,MARGATE CITY CITY,17,1968,1,RES1,3001 -0116_609.05_111,-74.4788215,39.337262,12 E GILMAR CIRCLE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_609.05_112,-74.4841895,39.336385,10 E GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.05_114,-74.4815285,39.335784,8 E GILMAR CIRCLE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_609.05_115,-74.46539188,39.34838432,6 E GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_609.05_116,-74.46758714,39.34655616,4 E GILMAR CIRCLE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_609.05_98,-74.47160812,39.34211116,2 E GILMAR CIRCLE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_610.01_1,-74.4677347,39.34580665,19 SEASIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_610.01_2,-74.468872,39.345792,21 SEASIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_610.01_29,-74.48655267,39.35046349,8218 MARSHALL AVE,MARGATE CITY CITY,19,1997,1,GOV1,3004 -0116_610.01_3,-74.4674915,39.344399,23 SEASIDE COURT,MARGATE CITY CITY,19,1989,1,GOV1,3004 -0116_610.01_30,-74.48092316,39.35021377,8216 MARSHALL AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_610.01_31,-74.47958583,39.34913906,8214 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_610.01_32,-74.48000085,39.34795777,8212 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_610.01_33,-74.479196,39.3477515,8210 MARSHALL AVE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_610.01_34,-74.4826125,39.346223,8208 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_610.01_35,-74.48356367,39.34457945,8206 MARSHALL AVE,MARGATE CITY CITY,17,1970,1,RES1,3001 -0116_610.01_36,-74.48289956,39.34337806,8204 MARSHALL AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_610.01_37,-74.47812333,39.34300597,8202 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3002 -0116_610.01_38,-74.44391567,39.356381,8200 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_610.01_4,-74.46911864,39.34396966,25 SEASIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_610.01_5,-74.468469,39.3436295,27 SEASIDE COURT,MARGATE CITY CITY,17,1989,1,RES1,3001 -0116_610.01_6,-74.4700415,39.343229,29 SEASIDE COURT,MARGATE CITY CITY,19,2012,1,RES1,3001 -0116_610.01_77,-74.44774176,39.35635162,31 SEASIDE COURT,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_610.02_1,-74.4614835,39.3562005,17 SEASIDE COURT,MARGATE CITY CITY,19,1995,1,RES1,3001 -0116_610.02_2,-74.46338713,39.35477332,15 SEASIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_610.02_3,-74.460405,39.354017,13 SEASIDE COURT,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_610.02_4,-74.46271463,39.352559,11 SEASIDE COURT,MARGATE CITY CITY,18,1996,1,RES1,3001 -0116_610.02_41,-74.49469296,39.34116833,422 N HUNTINGTON AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_610.02_43,-74.49271665,39.34102976,420 N HUNTINGTON AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_610.02_44,-74.49036179,39.33986614,418 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_610.02_45,-74.488014,39.338748,416 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_610.02_47,-74.491856,39.338659,414 N HUNTINGTON AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_610.02_48,-74.48930358,39.33821635,412 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,GOV1,3004 -0116_610.02_49,-74.48887694,39.33801682,410 N HUNTINGTON AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_610.02_5,-74.46096487,39.35130358,9 SEASIDE COURT,MARGATE CITY CITY,19,1992,1,RES1,3001 -0116_610.02_50,-74.48902994,39.33786683,408 N HUNTINGTON AVE,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_610.02_52,-74.48999188,39.33738384,406 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_610.02_54,-74.49469338,39.33700335,404 N HUNTINGTON AVE,MARGATE CITY CITY,17,1963,1,GOV1,3004 -0116_610.02_56,-74.4915305,39.336639,402 N HUNTINGTON AVE,MARGATE CITY CITY,17,1964,1,GOV1,3004 -0116_610.02_6,-74.48299733,39.35371759,7 SEASIDE COURT,MARGATE CITY CITY,19,1992,1,RES1,3001 -0116_610.02_7,-74.48423414,39.35214498,5 SEASIDE COURT,MARGATE CITY CITY,19,1994,1,GOV1,3004 -0116_610.02_8,-74.4869419,39.35202723,3 SEASIDE COURT,MARGATE CITY CITY,19,1995,1,RES1,3001 -0116_610.02_9,-74.4947155,39.342414,1 SEASIDE COURT,MARGATE CITY CITY,18,1990,1,RES1,3001 -0116_610.03_10,-74.50667473,39.34109086,8219 FULTON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_610.03_11,-74.50893276,39.34092041,8221 FULTON AVE,MARGATE CITY CITY,17,1985,1,RES1,3001 -0116_610.03_12,-74.49994728,39.33827485,8223 FULTON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_610.03_13,-74.501707,39.3363925,75 SEASIDE COURT,MARGATE CITY CITY,19,1994,1,RES1,3001 -0116_610.03_14,-74.505316,39.3362175,71 SEASIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_610.03_15,-74.509092,39.3351025,69 SEASIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_610.03_16,-74.49458633,39.34297601,67 SEASIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_610.03_17,-74.51130919,39.33639163,65 SEASIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_610.03_2,-74.49047123,39.33641133,8203 FULTON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_610.03_2.01,-74.49512431,39.33622587,8201 FULTON AVE,MARGATE CITY CITY,18,2001,1,COM4,3004 -0116_610.03_3,-74.4917465,39.335783,8205 FULTON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_610.03_4,-74.493816,39.3356475,8207 FULTON AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_610.03_5,-74.49368816,39.33548901,8209 FULTON AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_610.03_58,-74.32952195,39.45445875,73 SEASIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_610.03_6,-74.49092891,39.33526633,8211 FULTON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_610.03_7,-74.4922565,39.334979,8213 FULTON AVE,MARGATE CITY CITY,20,2006,1,RES3A,3001 -0116_610.03_8,-74.49428645,39.33479132,8215 FULTON AVE,MARGATE CITY CITY,17,1940,1,RES1,3001 -0116_610.03_9,-74.49589135,39.33442269,8217 FULTON AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_610.04_1,-74.39817,39.3842585,33 SEASIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_610.04_10,-74.385928,39.3926865,53 SEASIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_610.04_11,-74.3872175,39.391173,55 SEASIDE COURT,MARGATE CITY CITY,19,1999,1,RES3B,3001 -0116_610.04_12,-74.38812068,39.39105059,57 SEASIDE COURT,MARGATE CITY CITY,19,2001,1,RES1,3001 -0116_610.04_13,-74.38862071,39.39287886,59 SEASIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_610.04_2,-74.37078641,39.40175434,35 SEASIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_610.04_3,-74.371938,39.4002205,37 SEASIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_610.04_4,-74.37409467,39.39926746,41 SEASIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_610.04_6,-74.37680663,39.39850081,43 SEASIDE COURT,MARGATE CITY CITY,19,1995,1,RES1,3001 -0116_610.04_65,-74.39053969,39.39276562,61 SEASIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_610.04_7,-74.376772,39.3979375,45 SEASIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_610.04_71,-74.393487,39.3920755,51 SEASIDE COURT,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_610.04_8,-74.38576223,39.39367279,47 SEASIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_610.04_9,-74.387221,39.3927815,49 SEASIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_610.05_1,-74.38844177,39.39079801,14 SEASIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_610.05_10,-74.382627,39.39504,46 SEASIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_610.05_100,-74.41709568,39.36918047,58 SEASIDE COURT,MARGATE CITY CITY,19,2000,1,RES3A,3001 -0116_610.05_104,-74.40866649,39.38115142,52 SEASIDE COURT,MARGATE CITY CITY,19,2001,1,RES1,3001 -0116_610.05_116,-74.40692,39.3805305,4 SEASIDE COURT,MARGATE CITY CITY,19,1990,1,AGR1,3001 -0116_610.05_2,-74.37971734,39.401184,12 SEASIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_610.05_3,-74.38276145,39.40084284,10 SEASIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_610.05_4,-74.38415454,39.3996595,8 SEASIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_610.05_5,-74.3790657,39.3972893,6 SEASIDE COURT,MARGATE CITY CITY,19,1992,1,RES1,3001 -0116_610.05_6,-74.38534327,39.39599754,56 SEASIDE COURT,MARGATE CITY CITY,19,1989,1,GOV1,3004 -0116_610.05_7,-74.37829741,39.39522027,54 SEASIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_610.05_8,-74.38696987,39.39455965,50 SEASIDE COURT,MARGATE CITY CITY,18,1988,1,COM1,3004 -0116_610.05_9,-74.39580394,39.39489817,48 SEASIDE COURT,MARGATE CITY CITY,18,1989,1,RES1,3001 -0116_610.05_97,-74.42117885,39.37220985,2 SEASIDE COURT,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_610.05_98,-74.42059831,39.37140987,62 SEASIDE COURT,MARGATE CITY CITY,19,2000,1,RES1,3001 -0116_612.02_1,-74.42247117,39.3736077,8407 FREMONT AVE,MARGATE CITY CITY,17,1962,1,GOV1,3004 -0116_612.02_12,-74.44230893,39.37339383,403 N KENYON AVE,MARGATE CITY CITY,17,1968,1,RES1,3001 -0116_612.02_14,-74.43510897,39.36934082,405 N KENYON AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_612.02_16,-74.43500253,39.36921468,407 N KENYON AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_612.02_2,-74.42257299,39.37191666,401 N KENYON AVE,MARGATE CITY CITY,17,1963,1,GOV1,3004 -0116_612.02_20,-74.4410505,39.3691765,406 N JEROME AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_612.02_22,-74.43535374,39.36907612,406A N JEROME AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_612.02_25,-74.4020445,39.38852,408 N JEROME AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_612.02_3,-74.4252634,39.37189432,8405 FREMONT AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_612.02_35,-74.4033935,39.3878665,425 N KENYON AVE,MARGATE CITY CITY,17,1925,1,RES1,3001 -0116_612.02_36,-74.363086,39.408642,427 N KENYON AVE,MARGATE CITY CITY,20,2016,1,GOV1,3004 -0116_612.02_38,-74.36335392,39.40694357,414 N JEROME AVE,MARGATE CITY CITY,17,1969,1,GOV1,3004 -0116_612.02_4,-74.4268535,39.3717525,402 N JEROME AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_613.01_1,-74.36610595,39.40606133,8510 FULTON AVE,MARGATE CITY CITY,20,2013,1,GOV1,3004 -0116_613.01_11,-74.63014333,39.41032749,407 N MANSFIELD AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_613.01_13,-74.6241395,39.4187805,405 N MANSFIELD AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_613.01_15,-74.63006316,39.41742129,403 N MANSFIELD AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_613.01_17,-74.63062829,39.41456726,401 N MANSFIELD AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_613.01_18,-74.6326895,39.41418237,8504 FULTON AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_613.01_20,-74.647902,39.404668,414 N LANCASTER AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_613.01_22,-74.65484779,39.40269697,412 N LANCASTER AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_613.01_24,-74.647792,39.4125555,410 N LANCASTER AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_613.01_26,-74.3940468,39.3905446,408 N LANCASTER AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_613.01_28,-74.3966694,39.39027279,406 N LANCASTER AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_613.01_30,-74.39429352,39.38894967,404 N LANCASTER AVE,MARGATE CITY CITY,20,2017,1,RES1,3001 -0116_613.01_32,-74.37878146,39.40140147,402 N LANCASTER AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_613.01_34,-74.38135463,39.40048964,8505 FREMONT AVE,MARGATE CITY CITY,17,1959,1,RES1,3001 -0116_613.01_4,-74.365818,39.4050145,415 N MANSFIELD AVE,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_613.01_9,-74.6275745,39.407918,409 N MANSFIELD AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_613.02_1,-74.3788595,39.3994925,415 N LANCASTER AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_613.02_11,-74.3873005,39.3939065,403 N LANCASTER AVE,MARGATE CITY CITY,19,1960,1,RES1,3001 -0116_613.02_13,-74.39688895,39.39492936,8503 FREMONT AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_613.02_15,-74.38995865,39.39404454,8500 FULTON AVE,MARGATE CITY CITY,20,2006,1,GOV1,3004 -0116_613.02_17,-74.403766,39.38192,412 N KENYON AVE,MARGATE CITY CITY,17,1970,1,RES1,3001 -0116_613.02_18,-74.406472,39.38163,410 N KENYON AVE,MARGATE CITY CITY,17,1972,1,GOV1,3004 -0116_613.02_20,-74.40569833,39.3810885,408 N KENYON AVE,MARGATE CITY CITY,17,1969,1,GOV1,3004 -0116_613.02_22,-74.40927784,39.381061,406 N KENYON AVE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_613.02_24,-74.40716,39.380531,404 N KENYON AVE,MARGATE CITY CITY,20,2018,1,RES1,3001 -0116_613.02_27,-74.40462355,39.38049999,8501 FREMONT AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_613.02_7,-74.384124,39.39868,407 N LANCASTER AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_613.02_9,-74.38249827,39.3978152,405 N LANCASTER AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_614_1,-74.40520309,39.37973852,8602 FULTON AVE,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_614_10,-74.42235,39.3747185,417 N NASSAU AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_614_11,-74.4221865,39.3727465,415 N NASSAU AVE,MARGATE CITY CITY,18,1950,1,GOV1,3004 -0116_614_13,-74.42188058,39.3688854,411 N NASSAU AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_614_14,-74.435614,39.3689535,407 N NASSAU AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_614_17,-74.40064897,39.38969441,401 N NASSAU AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_614_19,-74.400018,39.386387,8600 FULTON AVE,MARGATE CITY CITY,17,1962,1,COM1,3004 -0116_614_26,-74.6344944,39.34299136,410 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_614_29,-74.37131485,39.41048491,408 N MANSFIELD AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_614_3,-74.40799229,39.37904266,423 N NASSAU AVE,MARGATE CITY CITY,17,1963,1,RES1,3001 -0116_614_30,-74.3728547,39.41043004,406 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_614_32,-74.37233429,39.41031895,404 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_614_34,-74.36700523,39.41024656,402 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,COM1,3004 -0116_614_36,-74.36794776,39.41009592,400 N MANSFIELD AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_614_8,-74.422971,39.3765945,419 N NASSAU AVE,MARGATE CITY CITY,20,1950,1,RES1,3001 -0116_616_1,-74.52609867,39.31479449,505 N PEMBROKE AVE,MARGATE CITY CITY,17,1963,1,GOV1,3004 -0116_616_12,-74.36898917,39.406028,429 N PEMBROKE AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_616_17,-74.36825705,39.40521717,419 N PEMBROKE AVE,MARGATE CITY CITY,20,1978,1,RES1,3001 -0116_616_20,-74.372531,39.403701,405 N PEMBROKE AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_616_21,-74.37588886,39.40313003,403 N PEMBROKE AVE,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_616_22,-74.36751471,39.40263894,401 N PEMBROKE AVE,MARGATE CITY CITY,20,2008,1,RES1,3001 -0116_616_23,-74.357689,39.414153,311 N PEMBROKE AVE,MARGATE CITY CITY,21,2002,1,RES1,3001 -0116_616_24,-74.364509,39.4133435,309 N PEMBROKE AVE,MARGATE CITY CITY,19,1985,1,RES1,3001 -0116_616_25,-74.36122182,39.41316735,307 N PEMBROKE AVE,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_616_26,-74.361088,39.412823,305 N PEMBROKE AVE,MARGATE CITY CITY,19,1982,1,RES1,3001 -0116_616_27,-74.35891359,39.41268902,303 N PEMBROKE AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_616_28,-74.35845019,39.41101334,301 N PEMBROKE AVE,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_616_29,-74.36661934,39.41902834,8707 AMHERST AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_616_30,-74.37449423,39.41820539,8705 AMHERST AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_616_31,-74.3708475,39.4182165,8703 AMHERST AVE,MARGATE CITY CITY,18,1988,1,RES1,3001 -0116_616_32,-74.37081309,39.41799041,8701 AMHERST AVE,MARGATE CITY CITY,19,1981,1,RES1,3001 -0116_616_33,-74.3742185,39.4175965,8609 AMHERST AVE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_616_34,-74.3754232,39.41743794,8607 AMHERST AVE,MARGATE CITY CITY,19,1990,1,GOV1,3004 -0116_616_35,-74.3694835,39.41419,300 N NASSAU AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_616_36,-74.3740637,39.4111109,302 N NASSAU AVE,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_616_5,-74.37231333,39.40808602,439 N PEMBROKE AVE,MARGATE CITY CITY,21,2001,1,RES1,3001 -0116_616_8,-74.36854426,39.40796717,437 N PEMBROKE AVE,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_616_9,-74.37150235,39.40756743,435 N PEMBROKE AVE,MARGATE CITY CITY,21,1999,1,RES1,3001 -0116_617_1,-74.3792545,39.41900648,8706 FULTON AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_617_10,-74.44748137,39.37433575,427 N QUINCY AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_617_12,-74.45347487,39.37423704,421 N QUINCY AVE,MARGATE CITY CITY,17,1939,1,RES1,3001 -0116_617_14,-74.455495,39.3740905,415 N QUINCY AVE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_617_17,-74.49923245,39.38117335,409 N QUINCY AVE,MARGATE CITY CITY,20,2009,1,RES1,3001 -0116_617_19,-74.5244285,39.382072,407 N QUINCY AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_617_21,-74.5310905,39.3810245,401 N QUINCY AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_617_24,-74.5186325,39.38683,8704 FULTON AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_617_26,-74.52312396,39.39302519,440 N PEMBROKE AVE,MARGATE CITY CITY,17,1953,1,RES1,3001 -0116_617_30,-74.521287,39.3896135,436 N PEMBROKE AVE,MARGATE CITY CITY,17,1951,1,GOV1,3004 -0116_617_32,-74.52259742,39.38738154,432 N PEMBROKE AVE,MARGATE CITY CITY,19,1988,1,GOV1,3004 -0116_617_35,-74.51873252,39.40150982,430 N PEMBROKE AVE,MARGATE CITY CITY,17,1936,1,RES1,3001 -0116_617_38,-74.51636617,39.40143824,426 N PEMBROKE AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_617_41,-74.5155135,39.3990235,406 N PEMBROKE AVE,MARGATE CITY CITY,17,1956,1,GOV1,3004 -0116_617_42,-74.52873785,39.40179218,404 N PEMBROKE AVE,MARGATE CITY CITY,17,1957,1,RES1,3001 -0116_617_44,-74.53034311,39.40112832,402 N PEMBROKE AVE,MARGATE CITY CITY,17,1956,1,RES1,3001 -0116_617_5,-74.37836227,39.41379392,431 N QUINCY AVE,MARGATE CITY CITY,21,2014,1,GOV1,3004 -0116_617_6,-74.365528,39.4234045,429 N QUINCY AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_618_1,-74.53067908,39.39939562,8802 FULTON AVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_618_11,-74.520649,39.398207,425A N RUMSON AVE,MARGATE CITY CITY,19,1983,1,RES1,3001 -0116_618_12,-74.5254205,39.3956315,425 N RUMSON AVE,MARGATE CITY CITY,18,1982,1,RES1,3001 -0116_618_16,-74.5279285,39.395397,423 N RUMSON AVE,MARGATE CITY CITY,17,1966,1,GOV1,3004 -0116_618_17,-74.52427,39.3945885,417 N RUMSON AVE,MARGATE CITY CITY,17,1969,1,RES1,3001 -0116_618_18,-74.48177286,39.43317515,411 N RUMSON AVE,MARGATE CITY CITY,17,1969,1,GOV1,3004 -0116_618_20,-74.48682124,39.43301096,407 N RUMSON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_618_22,-74.506373,39.4105185,403 N RUMSON AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_618_24,-74.50002582,39.41052898,8800 FULTON AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_618_27,-74.5017697,39.40945611,432 N QUINCY AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_618_3,-74.5203755,39.399205,437 N RUMSON AVE,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_618_30,-74.506426,39.4094065,430 N QUINCY AVE,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_618_31,-74.503462,39.408598,426 N QUINCY AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_618_34,-74.50613118,39.40831992,424 N QUINCY AVE,MARGATE CITY CITY,21,2018,1,COM1,3004 -0116_618_37,-74.50074767,39.40827551,422 N QUINCY AVE,MARGATE CITY CITY,19,1954,1,GOV1,3004 -0116_618_39,-74.5034167,39.407474,420 N QUINCY AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_618_41,-74.50552698,39.40596718,418 N QUINCY AVE,MARGATE CITY CITY,17,1954,1,RES1,3001 -0116_618_42,-74.4903605,39.41876,406 N QUINCY AVE,MARGATE CITY CITY,18,1956,1,RES1,3001 -0116_618_44,-74.49109237,39.41861426,404 N QUINCY AVE,MARGATE CITY CITY,17,1950,1,GOV1,3004 -0116_618_46,-74.509179,39.415884,400 N QUINCY AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_618_9,-74.53090483,39.39852691,427 N RUMSON AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_619_11,-74.51853825,39.40985704,350 N RUMSON AVE,MARGATE CITY CITY,,1950,1,RES1,3001 -0116_619_12,-74.5147847,39.40404577,348 N RUMSON AVE,MARGATE CITY CITY,19,1999,1,GOV1,3004 -0116_619_14,-74.516252,39.4025685,346 N RUMSON AVE,MARGATE CITY CITY,21,2005,1,RES1,3001 -0116_619_17,-74.5204922,39.40827892,344 N RUMSON AVE,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_619_19,-74.51141425,39.41838709,342 N RUMSON AVE,MARGATE CITY CITY,22,2015,1,RES1,3001 -0116_619_22,-74.4978115,39.426557,324 N RUMSON AVE,MARGATE CITY CITY,20,1990,1,RES1,3001 -0116_619_24,-74.4935715,39.425933,320 N RUMSON AVE,MARGATE CITY CITY,20,1988,1,RES1,3001 -0116_619_25,-74.50080816,39.4261604,318 N RUMSON AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_619_27,-74.50159601,39.41940782,314 N RUMSON AVE,MARGATE CITY CITY,20,1995,1,RES1,3001 -0116_619_30,-74.49397236,39.43584135,308 N RUMSON AVE,MARGATE CITY CITY,20,1992,1,RES1,3001 -0116_619_32,-74.49154926,39.43554908,304 N RUMSON AVE,MARGATE CITY CITY,17,1951,1,RES1,3001 -0116_619_34,-74.4920605,39.4336715,8801 AMHERST AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_619_36,-74.494543,39.4326765,8807 AMHERST AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_619_38,-74.49573595,39.4290967,8809 AMHERST AVE,MARGATE CITY CITY,19,2000,1,RES1,3001 -0116_619_5,-74.50138617,39.414391,362 N RUMSON AVE,MARGATE CITY CITY,21,2016,1,RES1,3001 -0116_619_7,-74.49851566,39.41107448,354 N RUMSON AVE,MARGATE CITY CITY,19,1945,1,RES1,3001 -0116_619_9,-74.518046,39.4105145,352 N RUMSON AVE,MARGATE CITY CITY,21,2000,1,GOV1,3004 -0116_621_1,-74.50264229,39.43533075,433 N UNION AVE,MARGATE CITY CITY,17,1920,1,RES1,3001 -0116_621_16,-74.50290098,39.42951184,401 N UNION AVE,MARGATE CITY CITY,17,1961,1,RES1,3001 -0116_621_20,-74.51567183,39.43340763,432 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_621_22,-74.5157625,39.4328595,430 N THURLOW AVE,MARGATE CITY CITY,18,1951,1,GOV1,3004 -0116_621_24,-74.51631041,39.43279065,428 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_621_26,-74.51548545,39.43269616,426 N THURLOW AVE,MARGATE CITY CITY,21,2014,1,RES1,3001 -0116_621_28,-74.52691632,39.43044555,424 N THURLOW AVE,MARGATE CITY CITY,17,1939,1,GOV1,3004 -0116_621_29.01,-74.5241265,39.429832,403 N UNION AVE,MARGATE CITY CITY,20,1990,1,RES1,3001 -0116_621_29.02,-74.4331696,39.48611485,405 N UNION AVE,MARGATE CITY CITY,20,1993,1,GOV1,3004 -0116_621_29.03,-74.512492,39.3225645,420 N THURLOW AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_621_29.04,-74.51865489,39.32127676,418 N THURLOW AVE,MARGATE CITY CITY,20,2006,1,RES1,3001 -0116_621_3,-74.5009595,39.432149,423 N UNION AVE,MARGATE CITY CITY,17,1967,1,RES1,3001 -0116_621_34,-74.437464,39.4936655,402 N THURLOW AVE,MARGATE CITY CITY,17,1949,1,GOV1,3004 -0116_621_5,-74.499872,39.430981,421 N UNION AVE,MARGATE CITY CITY,17,1962,1,GOV1,3004 -0116_621_6,-74.50293043,39.43092016,419 N UNION AVE,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_621_8,-74.5026487,39.4301177,417 N UNION AVE,MARGATE CITY CITY,20,2003,1,RES1,3001 -0116_622_1,-74.43662923,39.49282503,419 N VENDOME AVE,MARGATE CITY CITY,18,1972,1,COM3,3004 -0116_622_10,-74.46428385,39.45608152,409 N VENDOME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_622_11,-74.46859565,39.45728632,405 N VENDOME AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_622_13,-74.48687172,39.45832004,403 N VENDOME AVE,MARGATE CITY CITY,17,1930,2,RES1,3001 -0116_622_14,-74.48396888,39.46281022,401 N VENDOME AVE,MARGATE CITY CITY,17,1930,1,RES1,3001 -0116_622_15,-74.49958513,39.44223953,416 N UNION AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_622_16,-74.50157788,39.44180331,414 N UNION AVE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_622_17,-74.50540243,39.43649133,412 N UNION AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_622_18,-74.4986945,39.450445,410 N UNION AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_622_20,-74.50387916,39.44774451,408 N UNION AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_622_21,-74.52015906,39.44182625,406 N UNION AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_622_22,-74.52392592,39.44444265,404 N UNION AVE,MARGATE CITY CITY,19,1955,1,RES1,3001 -0116_622_23,-74.52052399,39.44094823,9001 FREMONT AVE,MARGATE CITY CITY,17,1952,1,RES1,3001 -0116_622_5,-74.47579132,39.44409949,417 N VENDOME AVE,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_622_6,-74.47047249,39.44328735,415 N VENDOME AVE,MARGATE CITY CITY,19,1955,1,RES1,3001 -0116_622_7,-74.46874363,39.44320795,413 N VENDOME AVE,MARGATE CITY CITY,18,1955,1,RES1,3001 -0116_622_8,-74.47888731,39.44251147,411 N VENDOME AVE,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_623_1.01,-74.512416,39.4620075,9101 FREMONT AVE,MARGATE CITY CITY,22,2001,1,RES1,3001 -0116_623_1.02A,-74.519449,39.4679525,402 N VENDOME AVE,MARGATE CITY CITY,22,2003,1,RES1,3001 -0116_623_1.03,-74.51101381,39.45556768,9007 FREMONT AVE,MARGATE CITY CITY,20,2002,1,RES1,3001 -0116_623_1.04,-74.51556596,39.45701817,400 N VENDOME AVE,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_623_1.05,-74.50267005,39.46478832,412 N VENDOME AVE,MARGATE CITY CITY,22,1989,1,RES1,3001 -0116_623_11,-74.52303386,39.44566605,508 N UNION AVE,MARGATE CITY CITY,23,2016,1,RES1,3001 -0116_623_13,-74.49386651,39.4605311,504 N UNION AVE,MARGATE CITY CITY,20,1986,1,RES1,3001 -0116_623_14,-74.508826,39.4613975,500 N UNION AVE,MARGATE CITY CITY,21,2012,1,RES1,3001 -0116_623_15,-74.50497553,39.45408382,442 N VENDOME AVE,MARGATE CITY CITY,19,1981,1,RES1,3001 -0116_623_17,-74.49548426,39.46744041,440 N VENDOME AVE,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_623_20,-74.49680767,39.46731301,434 N VENDOME AVE,MARGATE CITY CITY,20,1991,1,RES1,3001 -0116_623_21,-74.49325371,39.46413168,432 N VENDOME AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_623_23,-74.49554652,39.46250204,430 N VENDOME AVE,MARGATE CITY CITY,21,1997,1,RES1,3001 -0116_623_25,-74.5026715,39.4690455,424 N VENDOME AVE,MARGATE CITY CITY,20,1982,1,RES1,3001 -0116_623_27,-74.501278,39.4658715,420 N VENDOME AVE,MARGATE CITY CITY,19,1912,1,RES1,3001 -0116_623_3,-74.5257445,39.4483155,522 N UNION AVE,MARGATE CITY CITY,22,1990,1,GOV1,3004 -0116_623_9,-74.524742,39.4477515,512 N UNION AVE,MARGATE CITY CITY,22,1982,1,RES1,3001 -0116_7.01_1,-74.69761999,39.42186833,8006 ATLANTIC AVE,MARGATE CITY CITY,19,1925,1,RES1,3001 -0116_7.01_10,-74.54086416,39.46554882,104 S FRONTENAC AVE,MARGATE CITY CITY,20,1928,1,RES1,3001 -0116_7.01_11,-74.56098719,39.4697934,106 S FRONTENAC AVE,MARGATE CITY CITY,19,1930,1,GOV1,3004 -0116_7.01_12,-74.55435413,39.46605511,108 S FRONTENAC AVE,MARGATE CITY CITY,19,1941,1,RES1,3001 -0116_7.01_13,-74.55589423,39.46600959,110 S FRONTENAC AVE,MARGATE CITY CITY,20,1953,1,RES1,3001 -0116_7.01_2,-74.70606784,39.43201149,103 S GLADSTONE AVE,MARGATE CITY CITY,20,1951,1,RES1,3001 -0116_7.01_3,-74.53467415,39.45070204,105 S GLADSTONE AVE,MARGATE CITY CITY,22,2006,1,RES1,3001 -0116_7.01_4,-74.5708876,39.44236022,107 S GLADSTONE AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_7.01_6,-74.53839671,39.46053306,111 S GLADSTONE AVE,MARGATE CITY CITY,20,1953,1,RES1,3001 -0116_7.01_8,-74.5368355,39.4580685,8000 ATLANTIC AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_7.01_9,-74.53819822,39.46568855,102 S FRONTENAC AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_7.02_1,-74.57805775,39.4480578,8010 ATLANTIC AVE,MARGATE CITY CITY,20,2007,1,GOV1,3004 -0116_7.02_10,-74.5455391,39.47700377,104 S GLADSTONE AVE,MARGATE CITY CITY,19,1926,1,RES1,3001 -0116_7.02_11,-74.55275087,39.47660172,106 S GLADSTONE AVE,MARGATE CITY CITY,19,1922,1,RES1,3001 -0116_7.02_12,-74.55317172,39.47500556,108 S GLADSTONE AVE,MARGATE CITY CITY,19,1930,1,RES1,3001 -0116_7.02_2,-74.60512728,39.43954589,103 S GRANVILLE AVE,MARGATE CITY CITY,20,1929,1,RES1,3001 -0116_7.02_4,-74.59993303,39.43750627,105 S GRANVILLE AVE,MARGATE CITY CITY,20,1987,2,RES1,3001 -0116_7.02_5,-74.60994397,39.4390512,107 S GRANVILLE AVE,MARGATE CITY CITY,20,1985,1,RES1,3001 -0116_7.02_6,-74.61893936,39.43819103,109 S GRANVILLE AVE,MARGATE CITY CITY,20,1977,1,RES1,3001 -0116_7.02_8,-74.5502965,39.477745,100 S GLADSTONE AVE,MARGATE CITY CITY,22,2017,1,RES1,3001 -0116_7.02_9,-74.55086799,39.47751,102 S GLADSTONE AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_701_20,-74.45664461,39.47600426,WELLINGTON AVE,MARGATE CITY CITY,,2014,1,RES3A,3001 -0116_704.01_16,-74.46161096,39.47169806,CLARENDON AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_704.02_1,-74.46021328,39.4817124,501 N DELAVAN AVE,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_704.02_10,-74.45399438,39.49878795,504 N CLERMONT AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_704.02_11,-74.4536915,39.496078,502 N CLERMONT AVE,MARGATE CITY CITY,18,1961,1,RES1,3001 -0116_704.02_12,-74.46176164,39.50047,500 N CLERMONT AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_704.02_2,-74.48587774,39.47071374,503 N DELAVAN AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_704.02_3,-74.47469966,39.48511858,505 N DELAVAN AVE,MARGATE CITY CITY,18,1963,1,RES1,3001 -0116_704.02_4,-74.45067504,39.49087554,507 N DELAVAN AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_704.02_5,-74.45075495,39.48989956,509 N DELAVAN AVE,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_704.02_6,-74.44368135,39.48882165,511 N DELAVAN AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_704.02_7,-74.46238733,39.49386599,510 N CLERMONT AVE,MARGATE CITY CITY,18,1988,1,RES1,3001 -0116_704.02_8,-74.45862645,39.49211466,508 N CLERMONT AVE,MARGATE CITY CITY,17,1966,1,RES1,3001 -0116_704.02_9,-74.4536865,39.4995905,506 N CLERMONT AVE,MARGATE CITY CITY,17,1962,1,RES1,3001 -0116_704.03_1,-74.4557915,39.5003215,501 N DOUGLAS AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_704.03_10,-74.51762369,39.47940286,504 N DELAVAN AVE,MARGATE CITY CITY,18,1963,1,RES1,3001 -0116_704.03_11,-74.496983,39.49333,502 N DELAVAN AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_704.03_12,-74.50195216,39.49223825,500 N DELAVAN AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_704.03_2,-74.475512,39.49409,503 N DOUGLAS AVE,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_704.03_3,-74.4680215,39.493668,505 N DOUGLAS AVE,MARGATE CITY CITY,19,1968,1,RES1,3001 -0116_704.03_4,-74.46900873,39.4911103,507 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_704.03_5,-74.47186757,39.48991628,509 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_704.03_6,-74.46651944,39.49833604,511 N DOUGLAS AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_704.03_7,-74.50720847,39.48036885,510 N DELAVAN AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_704.03_8,-74.504699,39.4788095,508 N DELAVAN AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_704.03_9,-74.5104164,39.48650424,506 N DELAVAN AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_705.01_1,-74.50400424,39.48728939,1 ESSEX CT,MARGATE CITY CITY,17,1958,1,RES1,3001 -0116_705.01_2,-74.49743873,39.49916183,2 ESSEX CT,MARGATE CITY CITY,18,1958,1,RES1,3001 -0116_705.02_12,-74.48848877,39.49866901,15 ESSEX CT,MARGATE CITY CITY,19,1959,1,RES1,3001 -0116_707.02_1,-74.48939444,39.49768475,401 N GLADSTONE AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_707.02_11,-74.4901655,39.518274,407 N GLADSTONE AVE,MARGATE CITY CITY,18,1984,1,RES1,3001 -0116_707.02_13,-74.49495082,39.52836193,409 N GLADSTONE AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_707.02_14,-74.500684,39.5262615,411 N GLADSTONE AVE,MARGATE CITY CITY,18,1989,1,RES1,3001 -0116_707.02_15,-74.840619,39.5603875,413 N GLADSTONE AVE,MARGATE CITY CITY,17,1988,1,RES1,3001 -0116_707.02_16,-74.8686562,39.57081745,415 N GLADSTONE AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_707.02_9,-74.48459247,39.51791567,403 N GLADSTONE AVE,MARGATE CITY CITY,17,1980,1,RES1,3001 -0116_709.01_1,-74.86117551,39.56394917,8016 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_709.01_10,-74.79382435,39.60322954,2 BAYCREST CT,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.01_11,-74.79488064,39.59843644,3 BAYCREST COURT,MARGATE CITY CITY,19,1977,1,RES1,3001 -0116_709.01_12,-74.710573,39.634754,4 BAYCREST COURT,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.01_13,-74.74832832,39.63483138,5 BAYCREST COURT,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_709.01_14,-74.7658945,39.613884,6 BAYCREST COURT,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.01_15,-74.78049826,39.62236308,7 BAYCREST COURT,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_709.01_17,-74.77639905,39.62221102,10 BAYCREST DRIVE,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_709.01_18,-74.779463,39.6215165,8 BAYCREST DRIVE,MARGATE CITY CITY,18,1979,1,RES2,3005 -0116_709.01_19,-74.77574945,39.61642584,6 BAYCREST DRIVE,MARGATE CITY CITY,18,1988,1,RES1,3001 -0116_709.01_2,-74.8754115,39.5667835,8014 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_709.01_20,-74.78834834,39.61849883,4 BAYCREST DRIVE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_709.01_21,-74.75436757,39.63658784,2 BAYCREST DRIVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.01_22,-74.78931298,39.62579449,9 HARBOUR LANE,MARGATE CITY CITY,18,1983,1,RES1,3001 -0116_709.01_23,-74.78091884,39.63482353,7 HARBOUR LANE,MARGATE CITY CITY,19,1983,1,RES1,3001 -0116_709.01_24,-74.78885429,39.63921574,5 HARBOUR LANE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_709.01_25,-74.78574795,39.63921027,3 HARBOUR LANE,MARGATE CITY CITY,18,1980,1,GOV1,3004 -0116_709.01_26,-74.7920685,39.636944,1 HARBOUR LANE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.01_27,-74.789516,39.635433,619 N HUNTINGTON AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_709.01_3,-74.71795586,39.57735452,8012 LAGOON DRIVE,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_709.01_4,-74.71186372,39.57316532,8010 LAGOON DRIVE,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_709.01_5,-74.71579131,39.58299235,8008 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_709.01_6,-74.7098795,39.5818595,8006 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_709.01_7,-74.724059,39.5891685,8004 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_709.01_8,-74.78197328,39.57962036,8002 LAGOON DRIVE,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_709.01_9,-74.78876067,39.57639899,1 BAYCREST COURT,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_10,-74.84030668,39.59914947,603 N HUNTINGTON AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_709.02_11,-74.4989815,39.524132,605 N HUNTINGTON AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_709.02_12,-74.53069,39.52891267,607 N HUNTINGTON AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_709.02_13,-74.52082575,39.52534671,609 N HUNTINGTON AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_709.02_14,-74.51255246,39.53531273,611 N HUNTINGTON AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_709.02_15,-74.53380482,39.30602641,613 N HUNTINGTON AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_709.02_16,-74.53501393,39.3141568,615 N HUNTINGTON AVE,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_709.02_17,-74.5791435,39.3129325,617 N HUNTINGTON AVE,MARGATE CITY CITY,19,1973,1,RES1,3001 -0116_709.02_18,-74.59533569,39.31724753,2 HARBOUR LANE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_709.02_19,-74.5970805,39.316654,4 HARBOUR LANE,MARGATE CITY CITY,18,1979,1,COM5,3004 -0116_709.02_20,-74.5868795,39.3164215,6 HARBOUR LANE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_709.02_21,-74.59366929,39.31332281,8 HARBOUR LANE,MARGATE CITY CITY,18,1984,1,RES1,3001 -0116_709.02_22,-74.594721,39.3116065,10 HARBOUR LANE,MARGATE CITY CITY,18,1984,1,RES1,3001 -0116_709.02_23,-74.60126,39.313852,12 HARBOUR LANE,MARGATE CITY CITY,18,1984,1,COM1,3004 -0116_709.02_25,-74.60760419,39.31374103,16 HARBOUR LANE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_26,-74.60113761,39.31373832,18 HARBOUR LANE,MARGATE CITY CITY,18,1982,1,RES1,3001 -0116_709.02_27,-74.6006761,39.31285614,20 HARBOUR LANE,MARGATE CITY CITY,18,1982,1,RES1,3001 -0116_709.02_28,-74.61818388,39.31203512,22 HARBOUR LANE,MARGATE CITY CITY,18,1982,1,RES1,3001 -0116_709.02_29,-74.58346241,39.32454518,24 HARBOUR LANE,MARGATE CITY CITY,18,1981,1,RES1,3001 -0116_709.02_30,-74.58604741,39.32287581,26 HARBOUR LANE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_709.02_31,-74.59443582,39.32220647,28 HARBOUR LANE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_709.02_32,-74.588115,39.3219815,27 HARBOUR LANE,MARGATE CITY CITY,18,1984,1,RES1,3001 -0116_709.02_33,-74.59335,39.320516,25 HARBOUR LANE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_34,-74.590375,39.3201735,23 HARBOUR LANE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_709.02_35,-74.58810736,39.33267645,21 HARBOUR LANE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_36,-74.59226411,39.32770935,19 HARBOUR LANE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_709.02_37,-74.58704288,39.32674779,17 HARBOUR LANE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_709.02_38,-74.59127802,39.32665968,15 HARBOUR LANE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_709.02_39,-74.59179202,39.32642017,11 HARBOUR LANE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_709.02_40,-74.60521001,39.32490114,1 BAYCREST DRIVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_41,-74.60764376,39.3232869,3 BAYCREST DRIVE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_709.02_42,-74.60177741,39.32143119,5 BAYCREST DRIVE,MARGATE CITY CITY,18,1980,1,RES1,3001 -0116_709.02_43,-74.60188331,39.32059648,7 BAYCREST DRIVE,MARGATE CITY CITY,18,1985,1,RES1,3001 -0116_709.02_44,-74.600091,39.32017,9 BAYCREST DRIVE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_709.02_45,-74.60778237,39.3199992,11 BAYCREST DRIVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_46,-74.6050265,39.3184515,13 BAYCREST DRIVE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_709.02_47,-74.60255833,39.31843599,15 BAYCREST DRIVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_48,-74.60313532,39.31837394,17 BAYCREST DRIVE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_709.02_49,-74.6109965,39.3251305,19 BAYCREST DRIVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_50,-74.61282465,39.32502365,21 BAYCREST DRIVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_709.02_51,-74.61626933,39.32152602,8000 LAGOON DRIVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_709.02_9,-74.80292216,39.60550202,601 N HUNTINGTON AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_709.03_1,-74.61668653,39.31941419,8119 MARSHALL AVE,MARGATE CITY CITY,17,1975,1,RES1,3001 -0116_709.03_10,-74.6058988,39.32612108,8101 MARSHALL AVE,MARGATE CITY CITY,18,1975,1,RES1,3001 -0116_709.03_2,-74.60855659,39.31810501,8117 MARSHALL AVE,MARGATE CITY CITY,17,1974,1,RES1,3001 -0116_709.03_3,-74.606744,39.3308665,8115 MARSHALL AVE,MARGATE CITY CITY,17,1972,1,RES1,3001 -0116_709.03_4,-74.60461204,39.33024113,8113 MARSHALL AVE,MARGATE CITY CITY,17,1973,1,COM1,3004 -0116_709.03_5,-74.59842457,39.32958891,8111 MARSHALL AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_709.03_6,-74.6044125,39.3282125,8109 MARSHALL AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_709.03_7,-74.60084911,39.32817071,8107 MARSHALL AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_709.03_8,-74.60778716,39.32804499,8105 MARSHALL AVE,MARGATE CITY CITY,17,1975,1,RES1,3001 -0116_709.03_9,-74.603047,39.3276325,8103 MARSHALL AVE,MARGATE CITY CITY,17,1975,1,RES1,3001 -0116_710.01_1,-74.60835407,39.32789323,8212 LAGOON DRIVE,MARGATE CITY CITY,18,1982,1,RES1,3001 -0116_710.01_10,-74.55512418,39.35756451,31 BAYSIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_710.01_11,-74.574208,39.3585215,27 BAYSIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_710.01_12,-74.5666,39.357193,25 BAYSIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_710.01_13,-74.57129696,39.35576368,23 BAYSIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_710.01_14,-74.56640951,39.35568266,21 BAYSIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_710.01_2,-74.56727982,39.34091202,8210 LAGOON DRIVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_710.01_3,-74.57219851,39.3406975,8208 LAGOON DRIVE,MARGATE CITY CITY,18,1978,1,RES1,3001 -0116_710.01_4,-74.5705593,39.3402781,8206 LAGOON DRIVE,MARGATE CITY CITY,18,1977,1,RES3A,3001 -0116_710.01_5,-74.57152402,39.35099632,8204 LAGOON DRIVE,MARGATE CITY CITY,18,1976,1,RES3A,3001 -0116_710.01_6,-74.56865866,39.34833299,8202 LAGOON DRIVE,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_710.01_7,-74.569654,39.342857,8200 LAGOON DRIVE,MARGATE CITY CITY,18,1979,1,RES1,3001 -0116_710.01_8,-74.5522685,39.3638155,8214 LAGOON DRIVE,MARGATE CITY CITY,19,1988,1,COM1,3004 -0116_710.01_9,-74.55946041,39.35839574,33 BAYSIDE COURT,MARGATE CITY CITY,19,1993,1,RES1,3001 -0116_710.02_1,-74.57217783,39.35178199,618 N HUNTINGTON AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_710.02_10,-74.5800805,39.3402995,17 BAYSIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_710.02_11,-74.58184144,39.34011955,15 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.02_12,-74.57810407,39.33911676,13 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.02_13,-74.583798,39.338958,11 BAYSIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_710.02_14,-74.57820089,39.33784819,9 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.02_15,-74.5804075,39.3366945,7 BAYSIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_710.02_16,-74.595733,39.3408965,5 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.02_17,-74.5881058,39.33637808,3 BAYSIDE COURT,MARGATE CITY CITY,18,1989,1,RES1,3001 -0116_710.02_18,-74.5929395,39.335115,1 BAYSIDE COURT,MARGATE CITY CITY,20,2010,1,RES1,3001 -0116_710.02_2,-74.56971563,39.35132715,616 N HUNTINGTON AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_710.02_3,-74.55873928,39.36623647,614 N HUNTINGTON AVE,MARGATE CITY CITY,17,1977,1,GOV1,3004 -0116_710.02_4,-74.55356317,39.3657695,612 N HUNTINGTON AVE,MARGATE CITY CITY,17,1977,1,RES1,3001 -0116_710.02_41,-74.57528859,39.34893229,620 N HUNTINGTON AVE,MARGATE CITY CITY,18,1987,1,RES1,3001 -0116_710.02_5,-74.5536395,39.3648565,610 N HUNTINGTON AVE,MARGATE CITY CITY,17,1976,1,RES1,3001 -0116_710.02_6,-74.55778533,39.36105517,608 N HUNTINGTON AVE,MARGATE CITY CITY,17,1976,1,RES1,3001 -0116_710.02_7,-74.56765706,39.36671376,606 N HUNTINGTON AVE,MARGATE CITY CITY,17,1976,1,RES1,3001 -0116_710.02_8,-74.5728065,39.361153,604 N HUNTINGTON AVE,MARGATE CITY CITY,17,1976,1,RES1,3001 -0116_710.02_9,-74.56957418,39.35984263,602 N HUNTINGTON AVE,MARGATE CITY CITY,19,1976,1,RES1,3001 -0116_710.03_1,-74.582031,39.34626,8201 MARSHALL AVE,MARGATE CITY CITY,17,1982,1,RES1,3001 -0116_710.03_10,-74.60509,39.349636,59 BAYSIDE COURT,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_710.03_12,-74.60376806,39.34919882,63 BAYSIDE COURT,MARGATE CITY CITY,19,1992,1,RES1,3001 -0116_710.03_13,-74.60890709,39.34671686,65 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.03_14,-74.5857967,39.35940883,67 BAYSIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_710.03_15,-74.5808581,39.35785784,69 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.03_16,-74.57637857,39.35690092,71 BAYSIDE COURT,MARGATE CITY CITY,18,1992,1,RES1,3001 -0116_710.03_17,-74.57382219,39.35730755,73 BAYSIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_710.03_2,-74.58396286,39.34330518,8203 MARSHALL AVE,MARGATE CITY CITY,17,1973,1,RES1,3001 -0116_710.03_3,-74.59311,39.3510265,8205 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_710.03_4,-74.59110959,39.34851007,8207 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_710.03_5,-74.593023,39.344915,8209 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_710.03_6,-74.6049385,39.3422395,8211 MARSHALL AVE,MARGATE CITY CITY,17,1971,1,RES1,3001 -0116_710.03_7,-74.61327488,39.34160548,8213 MARSHALL AVE,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_710.03_8,-74.61570847,39.33821083,8215 MARSHALL AVE,MARGATE CITY CITY,19,2005,1,IND2,3002 -0116_710.03_9,-74.603204,39.3504175,8217 MARSHALL AVE,MARGATE CITY CITY,19,2002,1,RES1,3001 -0116_710.04_1,-74.567669,39.357302,35 BAYSIDE COURT,MARGATE CITY CITY,20,2000,1,RES1,3001 -0116_710.04_10,-74.57452338,39.36309063,53 BAYSIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_710.04_11,-74.57404194,39.36045563,57 BAYSIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_710.04_15,-74.56924426,39.36089794,55 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.04_2,-74.56692173,39.35311766,37 BAYSIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_710.04_3,-74.57136369,39.35256008,39 BAYSIDE COURT,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_710.04_4,-74.55712013,39.36647576,41 BAYSIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_710.04_5,-74.56195951,39.36468524,43 BAYSIDE COURT,MARGATE CITY CITY,19,1995,1,RES1,3001 -0116_710.04_6,-74.5629464,39.36100819,45 BAYSIDE COURT,MARGATE CITY CITY,19,1998,1,RES1,3001 -0116_710.04_7,-74.56493428,39.36827331,47 BAYSIDE COURT,MARGATE CITY CITY,19,1995,1,RES1,3001 -0116_710.04_8,-74.565932,39.366033,49 BAYSIDE COURT,MARGATE CITY CITY,19,1996,1,RES1,3001 -0116_710.04_9,-74.57373951,39.36479019,51 BAYSIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_710.05_1,-74.579892,39.3427125,16 BAYSIDE COURT,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_710.05_10,-74.61224034,39.33943771,52 BAYSIDE COURT,MARGATE CITY CITY,19,1991,1,RES1,3001 -0116_710.05_11,-74.61364256,39.33928536,50 BAYSIDE COURT,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_710.05_113,-74.58268392,39.34384369,10 BAYSIDE COURT,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_710.05_12,-74.603501,39.3487935,48 BAYSIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_710.05_13,-74.60956074,39.34652142,46 BAYSIDE COURT,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_710.05_14,-74.61204302,39.34303417,44 BAYSIDE COURT,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_710.05_15,-74.58365592,39.35777672,42 BAYSIDE COURT,MARGATE CITY CITY,19,1990,1,GOV1,3004 -0116_710.05_16,-74.5764345,39.3540975,40 BAYSIDE COURT,MARGATE CITY CITY,20,2007,1,RES1,3001 -0116_710.05_17,-74.58772827,39.3561664,32 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.05_18,-74.5903535,39.3561345,30 BAYSIDE COURT,MARGATE CITY CITY,19,1997,1,RES1,3001 -0116_710.05_19,-74.59119152,39.35585118,28 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.05_2,-74.581044,39.33872,14 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,GOV1,3004 -0116_710.05_3,-74.58290063,39.33784632,12 BAYSIDE COURT,MARGATE CITY CITY,19,1999,1,RES1,3001 -0116_710.05_4,-74.57565262,39.3363363,6 BAYSIDE COURT,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_710.05_5,-74.59161884,39.33454373,4 BAYSIDE COURT,MARGATE CITY CITY,,1990,1,RES1,3001 -0116_710.05_6,-74.57569509,39.34953831,2 BAYSIDE COURT,MARGATE CITY CITY,19,1989,1,RES1,3001 -0116_710.05_7,-74.5909185,39.3502185,64 BAYSIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_710.05_8,-74.589289,39.3497605,62 BAYSIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_710.05_9,-74.59690197,39.34591116,60 BAYSIDE COURT,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_712.01_8,-74.59003795,39.35505159,501 N JEROME AVE,MARGATE CITY CITY,,0,1,RES1,3002 -0116_712.02_1,-74.59593374,39.35185282,JEROME AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_713_1,-74.5761255,39.3680215,8504 WELLINGTON AVE,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_713_12,-74.59668708,39.3608732,504 N KENYON AVE,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_713_15,-74.59774446,39.36805058,502 N KENYON AVE,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_713_17,-74.64041578,39.32267661,8501 FULTON AVE,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_713_2,-74.5764535,39.367245,8506 WELLINGTON AVE,MARGATE CITY CITY,17,1979,1,RES1,3001 -0116_713_4,-74.58029915,39.35983149,8508 WELLINGTON AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_713_6,-74.590968,39.3670205,508 N KENYON AVE,MARGATE CITY CITY,18,1983,1,RES1,3001 -0116_714_1,-74.64297344,39.32451159,8605 FULTON AVE,MARGATE CITY CITY,20,1960,1,RES1,3001 -0116_714_11,-74.628911,39.3505315,8519 WELLINGTON AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_714_12,-74.63206779,39.34600666,8517 WELLINGTON AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_714_13.01,-74.651854,39.3452785,8515 WELLINGTON AVE,MARGATE CITY CITY,18,1985,1,RES1,3001 -0116_714_13.02,-74.65531079,39.34828196,8513 WELLINGTON AVE,MARGATE CITY CITY,20,2004,1,RES1,3001 -0116_714_17,-74.65271709,39.34650108,8511 WELLINGTON AVE,MARGATE CITY CITY,19,1987,1,RES1,3001 -0116_714_19,-74.62647677,39.35768037,8509 WELLINGTON AVE,MARGATE CITY CITY,19,1988,1,RES1,3001 -0116_714_21,-74.62560882,39.35415193,8507 WELLINGTON AVE,MARGATE CITY CITY,17,1955,1,GOV1,3004 -0116_714_22,-74.633282,39.3587215,8505 WELLINGTON AVE,MARGATE CITY CITY,20,2013,1,RES1,3001 -0116_714_23,-74.6331195,39.351806,8407 WELLINGTON AVE,MARGATE CITY CITY,20,1988,1,RES1,3001 -0116_714_24,-74.6252036,39.36029659,8501 WELLINGTON AVE,MARGATE CITY CITY,20,1995,1,RES1,3001 -0116_714_4,-74.639778,39.340781,8601 FULTON AVE,MARGATE CITY CITY,18,1950,1,RES1,3001 -0116_714_8,-74.6372585,39.3402305,8511 FULTON AVE,MARGATE CITY CITY,17,1952,1,RES3A,3001 -0116_718_1.01,-74.630469,39.365957,8807 FULTON AVE,MARGATE CITY CITY,19,1940,1,RES1,3001 -0116_718_1.02,-74.638116,39.363637,8805 FULTON AVE,MARGATE CITY CITY,,2018,1,RES1,3001 -0116_718_12,-74.6340605,39.3613895,8703 FULTON AVE,MARGATE CITY CITY,20,2012,1,RES1,3001 -0116_718_8,-74.6328695,39.3624735,8801 FULTON AVE,MARGATE CITY CITY,17,1949,1,GOV1,3004 -0116_721_1,-74.64689724,39.35668458,514 N THURLOW AVE,MARGATE CITY CITY,20,1955,2,RES1,3001 -0116_721_13,-74.64342686,39.36746175,501 N UNION AVE,MARGATE CITY CITY,20,2017,1,RES1,3001 -0116_721_18,-74.64547137,39.36629343,512 N THURLOW AVE,MARGATE CITY CITY,18,1974,1,RES1,3001 -0116_721_20,-74.6436185,39.3660365,510 N THURLOW AVE,MARGATE CITY CITY,20,2005,1,RES1,3001 -0116_721_25,-74.65744552,39.36148601,500 N THURLOW AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_721_9.01,-74.648677,39.3558285,505 N UNION AVE,MARGATE CITY CITY,19,1990,1,RES1,3001 -0116_721_9.02,-74.6528495,39.354476,507 N UNION AVE,MARGATE CITY CITY,16,1926,2,RES1,3001 -0116_721_9.03,-74.67225967,39.34816299,509 N UNION AVE,MARGATE CITY CITY,18,1990,1,RES1,3001 -0116_8_1,-74.5623275,39.475678,8100 ATLANTIC AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_8_2,-74.5545615,39.4754965,8100 BEACH SENIOR BLDG.,MARGATE CITY CITY,,0,1,RES1,3001 -0116_804.01_1,-74.6204796,39.42409719,501 N CLERMONT AVE,MARGATE CITY CITY,20,2016,1,RES1,3001 -0116_804.01_4,-74.622215,39.4217265,507 N CLERMONT AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_804.01_5,-74.62607154,39.4217063,509 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_804.01_6,-74.62542465,39.42041774,511 N CLERMONT AVE,MARGATE CITY CITY,20,2018,1,RES1,3001 -0116_805_1,-74.626903,39.42010467,7812 MARSHALL AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_805_10,-74.63502541,39.4294053,504 N DOUGLAS AVE,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_805_11,-74.63454392,39.42938223,502 N DOUGLAS AVE,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_805_12,-74.6306255,39.42787,500 N DOUGLAS AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_805_15,-74.64348547,39.42930084,3 ESSEX CT,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_805_16,-74.69202276,39.41432325,4 ESSEX CT,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_805_17,-74.5485105,39.4421205,5 ESSEX CT,MARGATE CITY CITY,18,1971,1,RES3B,3001 -0116_805_18,-74.53332086,39.45192745,6 ESSEX CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_805_19,-74.53835457,39.46070928,7 ESSEX CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_805_20,-74.54015095,39.46004722,8 ESSEX CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_805_21,-74.538834,39.4587325,9 ESSEX CT,MARGATE CITY CITY,19,1970,1,RES1,3001 -0116_805_22,-74.53341635,39.46975375,7813 WELLINGTON AVE,MARGATE CITY CITY,18,1972,1,GOV1,3004 -0116_805_23,-74.54053272,39.4691371,7811 WELLINGTON AVE,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_805_24,-74.54023576,39.46810891,7809 WELLINGTON AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_805_26,-74.54126772,39.46624857,14 ESSEX CT,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_805_27,-74.53800539,39.46401473,12 ESSEX CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_805_28,-74.54144477,39.46563841,11 ESSEX CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_805_29,-74.53856,39.464275,10 ESSEX CT,MARGATE CITY CITY,18,1972,1,RES1,3001 -0116_805_3,-74.63218626,39.42286335,7808 MARSHALL AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_805_4,-74.63526652,39.42046482,7806 MARSHALL AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_805_5,-74.63090116,39.4195658,7804 MARSHALL AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_805_6,-74.6323832,39.41924509,7802 MARSHALL AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_805_7,-74.62569103,39.43539661,510 N DOUGLAS AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_805_8,-74.63540412,39.43448244,508 N DOUGLAS AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_805_9,-74.63243952,39.43416137,506 N DOUGLAS AVE,MARGATE CITY CITY,18,1967,1,RES1,3001 -0116_807.02_3,-74.54811118,39.46694204,421 N GLADSTONE AVE,MARGATE CITY CITY,18,1988,1,COM4,3004 -0116_807.02_4,-74.548267,39.4645125,423 N GLADSTONE AVE,MARGATE CITY CITY,18,1989,1,RES1,3001 -0116_807.02_5,-74.54862993,39.46301723,425 N GLADSTONE AVE,MARGATE CITY CITY,18,1990,1,RES1,3001 -0116_807.02_6,-74.56706999,39.46352067,427 N GLADSTONE AVE,MARGATE CITY CITY,18,1989,1,RES1,3004 -0116_807.02_7,-74.5794345,39.444248,429 N GLADSTONE AVE,MARGATE CITY CITY,17,1988,1,RES1,3001 -0116_812.02_1,-74.58050188,39.44689773,8401 WELLINGTON AVE,MARGATE CITY CITY,17,1979,1,RES1,3001 -0116_812.02_2,-74.60074868,39.44369084,8405 WELLINGTON AVE,MARGATE CITY CITY,20,1990,1,RES1,3001 -0116_812.02_3,-74.60422946,39.44012079,602 N JEROME AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_812.02_38,-74.84866034,39.59793198,606 N JEROME AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_812.02_4,-74.60195139,39.43647475,604 N JEROME AVE,MARGATE CITY CITY,19,1981,1,RES1,3001 -0116_9_1,-74.5578595,39.475365,8200 ATLANTIC AVE,MARGATE CITY CITY,45,1952,3,RES1,3001 -0116_9_10,-74.57367151,39.47987083,101 S IROQUOIS AVE,MARGATE CITY CITY,17,1948,1,RES1,3001 -0116_9_11,-74.56953761,39.47977565,103 S IROQUOIS AVE,MARGATE CITY CITY,21,2015,1,RES1,3001 -0116_9_12,-74.57184504,39.47867606,105 S IROQUOIS AVE,MARGATE CITY CITY,19,1967,1,RES1,3001 -0116_9_13,-74.53375503,39.49777675,1 DOLPHIN DR,MARGATE CITY CITY,19,1961,1,RES1,3001 -0116_9_14,-74.58003392,39.47652765,2 DOLPHIN DR,MARGATE CITY CITY,20,1964,1,RES1,3001 -0116_9_15,-74.58025633,39.47959451,3 DOLPHIN DR,MARGATE CITY CITY,18,1959,1,RES1,3001 -0116_9_16,-74.59916409,39.47191995,4 DOLPHIN DR,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_9_17,-74.60175344,39.48167763,5 DOLPHIN DR,MARGATE CITY CITY,19,1961,1,RES1,3001 -0116_9_19,-74.61044031,39.48699576,7 DOLPHIN DR,MARGATE CITY CITY,20,1999,1,RES1,3001 -0116_9_20,-74.6069485,39.4872355,8 DOLPHIN DR,MARGATE CITY CITY,19,1962,1,RES1,3001 -0116_9_21,-74.61010904,39.49047231,9 DOLPHIN DR,MARGATE CITY CITY,20,1957,1,RES1,3001 -0116_9_22,-74.6052085,39.501344,10 DOLPHIN DR,MARGATE CITY CITY,18,1959,1,RES1,3001 -0116_9_23,-74.62840356,39.43849531,111 S IROQUOIS AVE,MARGATE CITY CITY,19,1962,1,RES1,3001 -0116_9_3,-74.5546223,39.47522471,8228 ATLANTIC AVE,MARGATE CITY CITY,18,1995,1,RES1,3001 -0116_9_6,-74.558646,39.4746965,8230 ATLANTIC AVE,MARGATE CITY CITY,18,1994,1,RES1,3001 -0116_9_7,-74.554081,39.473388,8234 ATLANTIC AVE,MARGATE CITY CITY,21,2015,1,GOV1,3004 -0116_901.01_2,-74.6176775,39.4392745,610 N FREDERICKSBURG AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_904.01_1,-74.616816,39.45295133,601 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.01_2,-74.54786441,39.47212122,603 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.01_3,-74.55420168,39.47697977,605 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,GOV1,3004 -0116_904.01_4,-74.56247969,39.47620846,607 N CLERMONT AVE,MARGATE CITY CITY,18,1963,1,GOV1,3004 -0116_904.01_5,-74.568017,39.477066,609 N CLERMONT AVE,MARGATE CITY CITY,17,1950,1,RES1,3001 -0116_904.01_6,-74.5642455,39.476898,611 N CLERMONT AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_904.02_1,-74.56445269,39.47683396,601 N DELAVAN AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_904.02_10,-74.5889755,39.4920625,7702 BAYSHORE DR,MARGATE CITY CITY,17,1964,1,RES1,3001 -0116_904.02_11,-74.60962384,39.49013747,7700 BAYSHORE DR,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.02_12,-74.61325781,39.48869847,616 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.02_13,-74.607923,39.501426,614 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.02_14,-74.60263566,39.50110347,612 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.02_15,-74.605857,39.500892,610 N CLERMONT AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_904.02_16,-74.61952139,39.43720409,608 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.02_17,-74.63575252,39.44385083,606 N CLERMONT AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_904.02_18,-74.64271873,39.43655016,604 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.02_19,-74.63403376,39.45572776,602 N CLERMONT AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.02_2,-74.5686625,39.479911,603 N DELAVAN AVE,MARGATE CITY CITY,18,1963,1,RES1,3001 -0116_904.02_20,-74.61981471,39.46276063,600 N CLERMONT AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_904.02_3,-74.57341719,39.47976682,605 N DELAVAN AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.02_4,-74.57278043,39.47881252,607 N DELAVAN AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_904.02_5,-74.534906,39.4902915,609 N DELAVAN AVE,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_904.02_6,-74.54165366,39.50170036,611 N DELAVAN AVE,MARGATE CITY CITY,18,1963,1,COM4,3004 -0116_904.02_7,-74.54765848,39.49602389,613 N DELAVAN AVE,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_904.02_8,-74.56382965,39.50156777,615 N DELAVAN AVE,MARGATE CITY CITY,18,1964,1,GOV1,3004 -0116_904.02_9,-74.61500468,39.48678365,617 N DELAVAN AVE,MARGATE CITY CITY,18,1963,1,RES1,3001 -0116_904.03_1,-74.6481832,39.45806748,601 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_904.03_10,-74.6740805,39.461813,7706 BAYSHORE DR,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_904.03_11,-74.63268152,39.48398183,7704 BAYSHORE DR,MARGATE CITY CITY,17,1965,1,RES1,3001 -0116_904.03_12,-74.62097847,39.49242734,616 N DELAVAN AVE,MARGATE CITY CITY,18,1963,1,RES1,3001 -0116_904.03_13,-74.69505286,39.47732992,614 N DELAVAN AVE,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_904.03_14,-74.70136484,39.48430527,612 N DELAVAN AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_904.03_15,-74.70591781,39.50021807,610 N DELAVAN AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_904.03_16,-74.73767382,39.37843837,608 N DELAVAN AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_904.03_17,-74.71619774,39.40853753,606 N DELAVAN AVE,MARGATE CITY CITY,18,1964,1,RES1,3001 -0116_904.03_18,-74.7448805,39.412194,604 N DELAVAN AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_904.03_19,-74.7074384,39.43335881,602 N DELAVAN AVE,MARGATE CITY CITY,18,1962,1,RES1,3001 -0116_904.03_2,-74.68247115,39.44008804,603 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_904.03_20,-74.77124333,39.42528956,600 N DELAVAN AVE,MARGATE CITY CITY,18,1994,1,RES1,3001 -0116_904.03_3,-74.679447,39.4459615,605 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_904.03_5,-74.6890525,39.4493235,607 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_904.03_6,-74.6896068,39.44929176,609 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_904.03_7,-74.68941916,39.44730136,611 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_904.03_8,-74.66518327,39.45435776,613 N DOUGLAS AVE,MARGATE CITY CITY,19,1965,1,RES1,3001 -0116_904.03_9,-74.67323623,39.46250641,615 N DOUGLAS AVE,MARGATE CITY CITY,18,1965,1,RES1,3001 -0116_905_1,-74.75611018,39.43315665,7812 BURK AVE,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_905_10,-74.82588073,39.3787177,604 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_905_11,-74.8334102,39.38561107,602 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_905_12,-74.848516,39.3774275,600 N DOUGLAS AVE,MARGATE CITY CITY,18,1975,1,RES1,3001 -0116_905_13,-74.80420117,39.41049449,7803 MARSHALL AVE,MARGATE CITY CITY,18,1968,1,RES1,3001 -0116_905_14,-74.80070333,39.4073065,7807 MARSHALL AVE,MARGATE CITY CITY,18,1970,1,RES1,3004 -0116_905_16,-74.91739504,39.50997076,7809 MARSHALL AVE,MARGATE CITY CITY,18,1973,1,RES1,3001 -0116_905_17,-74.919205,39.5071485,12 EXETER CT,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_905_18,-74.92420302,39.5051327,11 EXETER CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_905_19,-74.9110643,39.53528294,10 EXETER CT,MARGATE CITY CITY,18,1977,1,RES1,3001 -0116_905_2,-74.75679157,39.43275625,7810 BURK AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_905_20,-74.91287764,39.53384284,9 EXETER CT,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_905_23,-74.929793,39.517987,8 EXETER CT,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_905_24,-74.9476255,39.516967,7 EXETER CT,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_905_25,-74.9683375,39.512483,6 EXETER CT,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_905_26,-74.961864,39.5125945,5 EXETER CT,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_905_27,-74.94480101,39.52517314,4 EXETER CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_905_28,-74.9425185,39.5239955,3 EXETER CT,MARGATE CITY CITY,18,1971,1,GOV1,3004 -0116_905_29,-74.942432,39.5215135,2 EXETER CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_905_3,-74.75531495,39.43155826,7808 BURK AVE,MARGATE CITY CITY,18,1970,1,RES1,3001 -0116_905_30,-74.93134355,39.530033,1 EXETER CT,MARGATE CITY CITY,18,1971,1,RES1,3001 -0116_905_4,-74.7548525,39.4313015,7806 BURK AVE,MARGATE CITY CITY,18,1969,1,RES1,3001 -0116_905_5,-74.75859604,39.43111629,7804 BURK AVE,MARGATE CITY CITY,18,1967,1,GOV1,3004 -0116_905_7,-74.8082618,39.36965431,610 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_905_8,-74.808934,39.3794495,608 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_905_9,-74.81874776,39.37933697,606 N DOUGLAS AVE,MARGATE CITY CITY,18,1966,1,RES1,3001 -0116_912.01_10,-74.83849671,39.40842473,707 N JEROME AVE,MARGATE CITY CITY,17,1980,1,RES1,3001 -0116_912.01_12.01,-74.8307765,39.407469,711 N JEROME AVE,MARGATE CITY CITY,17,1945,1,RES1,3001 -0116_912.01_12.02,-74.83682426,39.4034919,713 N JEROME AVE,MARGATE CITY CITY,19,2006,1,RES1,3001 -0116_912.01_3,-74.797815,39.412679,701A N JEROME AVE,MARGATE CITY CITY,17,1992,1,RES1,3001 -0116_912.01_5,-74.8175355,39.407219,703 N JEROME AVE,MARGATE CITY CITY,17,1955,1,RES1,3001 -0116_912.01_8,-74.8204069,39.40296184,705 N JEROME AVE,MARGATE CITY CITY,17,1960,1,RES1,3001 -0116_912.02_12,-74.71568843,39.44422548,JEROME AVE,MARGATE CITY CITY,,0,1,RES1,3001 -0116_912.02_2,-74.840052,39.4120765,700 N JEROME AVE,MARGATE CITY CITY,20,1997,1,RES1,3001 -0117_100_1,-74.73153209,39.45453499,RAILROAD,MULLICA TWP,,0,1,RES1,3001 -0117_10001_1,-74.571074,39.355712,715 ELWOOD ROAD,MULLICA TWP,16,1927,2,RES1,3001 -0117_10001_10,-74.55589565,39.37072856,728 COLUMBIA ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_10001_13,-74.62034663,39.4347133,720 COLUMBIA ROAD,MULLICA TWP,16,1929,1,RES1,3001 -0117_10001_14,-74.61030378,39.38543532,716 COLUMBIA ROAD,MULLICA TWP,16,1940,1,GOV1,3004 -0117_10001_15,-74.69914863,39.64046169,712 COLUMBIA ROAD,MULLICA TWP,16,1945,1,RES1,3001 -0117_10001_16,-74.52716952,39.40203783,708 COLUMBIA ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_10001_17,-74.5684125,39.4130455,700 COLUMBIA ROAD,MULLICA TWP,15,1935,1,COM1,3004 -0117_10001_18,-74.7775325,39.3039735,636 COLUMBIA ROAD,MULLICA TWP,15,1945,1,RES1,3001 -0117_10001_19,-74.8341675,39.504148,630 COLUMBIA ROAD,MULLICA TWP,16,1991,2,RES1,3001 -0117_10001_2,-74.817095,39.650241,4635 MOSS MILL ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_10001_20,-74.79897487,39.3633844,624 COLUMBIA ROAD,MULLICA TWP,16,1953,1,RES1,3001 -0117_10001_22.01,-74.36384216,39.40850003,626 COLUMBIA ROAD,MULLICA TWP,16,1989,1,RES1,3001 -0117_10001_22.02,-74.37384333,39.41256594,620 COLUMBIA ROAD,MULLICA TWP,16,1984,1,RES1,3001 -0117_10001_24,-74.70383166,39.42191337,546 COLUMBIA ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_10001_25,-74.46960274,39.53874295,538 COLUMBIA ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_10001_28,-74.440163,39.3678935,528 COLUMBIA ROAD,MULLICA TWP,16,1979,1,RES1,3001 -0117_10001_30,-74.58363258,39.43137443,510 COLUMBIA ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_10001_4,-74.46112074,39.47325156,611 SIXTY FOURTH STREET,MULLICA TWP,16,1965,1,COM1,3004 -0117_10001_5,-74.72303255,39.4573372,4720 OLD EGG HARBOR ROAD,MULLICA TWP,16,1974,1,COM1,3004 -0117_10001_6,-74.68382536,39.39123296,4701 MOSS MILL ROAD,MULLICA TWP,16,1969,1,RES1,3001 -0117_10001_9,-74.9157367,39.55170137,732 COLUMBIA ROAD,MULLICA TWP,14,1975,1,RES1,3001 -0117_10004_1,-74.400215,39.3897095,619 ELWOOD ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_1001_12,-74.528044,39.385102,3300 NESCO ROAD,MULLICA TWP,16,1956,1,RES1,3001 -0117_1001_13,-74.63795564,39.42941845,3304 NESCO ROAD,MULLICA TWP,,1974,2,RES1,3001 -0117_1001_15,-74.36789408,39.40554174,3314 NESCO ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_1001_16,-74.60812615,39.32879158,3316 NESCO ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_1001_17,-74.48669583,39.34850438,3322 NESCO ROAD,MULLICA TWP,16,1928,1,GOV1,3004 -0117_1001_29,-74.6963373,39.63425556,2259 RICHARDS AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_1001_3,-74.59075,39.4110015,3162 NEIL ROAD,MULLICA TWP,16,1979,1,RES1,3001 -0117_1001_30,-74.5141195,39.3982325,2261-2263 RICHARDS AVENUE,MULLICA TWP,15,1951,2,RES1,3001 -0117_1001_35,-74.544315,39.3911925,3340 NESCO ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_1001_36,-74.633927,39.3476165,3404 NESCO ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_1001_38.01,-74.5583805,39.473334,3416 NESCO ROAD,MULLICA TWP,16,1840,1,RES1,3001 -0117_1001_38.02,-74.5925475,39.3760285,3430 NESCO ROAD,MULLICA TWP,,1985,1,RES1,3001 -0117_1001_4,-74.4011805,39.3845915,3200 NESCO ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_1001_40,-74.50067838,39.42624172,3426 NESCO ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_1001_41,-74.58090983,39.4232305,2353 RICHARDS AVENUE,MULLICA TWP,15,1920,1,GOV1,3004 -0117_1001_42,-74.84285314,39.40787116,3438 NESCO ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_1001_43,-74.6100035,39.36908308,3434 NESCO ROAD,MULLICA TWP,16,1935,1,COM1,3004 -0117_1001_44,-74.47162931,39.34091785,2381 RICHARDS AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_1001_46,-74.549729,39.53435818,3423 HANKINS ROAD,MULLICA TWP,16,1971,2,RES1,3001 -0117_1001_47,-74.4815715,39.5191525,3451 HANKINS ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_1001_48,-74.803075,39.631032,3500 HANKINS ROAD,MULLICA TWP,16,1971,1,RES1,3001 -0117_1001_5,-74.69955,39.485213,3202 NESCO ROAD,MULLICA TWP,16,1880,1,GOV1,3004 -0117_1001_5.01,-74.50461266,39.41626392,3204 NESCO ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_1001_51,-74.78779683,39.6362045,3513 HANKINS ROAD,MULLICA TWP,14,1940,1,RES1,3001 -0117_1001_53,-74.58310629,39.40344792,3500 NESCO ROAD,MULLICA TWP,16,1954,1,RES1,3001 -0117_1001_54,-74.61790417,39.36950367,3510 NESCO ROAD,MULLICA TWP,16,1850,1,RES1,3001 -0117_1001_56,-74.463877,39.495586,3526 NESCO ROAD,MULLICA TWP,16,1960,1,RES1,3004 -0117_1001_57,-74.6778005,39.4470075,3530 NESCO ROAD,MULLICA TWP,15,1850,1,RES1,3001 -0117_1001_59,-74.5572,39.3652745,3547 HANKINS ROAD,MULLICA TWP,16,1991,1,RES1,3001 -0117_1001_6,-74.39129157,39.39278802,3216 NESCO ROAD,MULLICA TWP,15,1930,1,RES1,3001 -0117_1001_62,-74.50833184,39.45767704,3544 NESCO ROAD,MULLICA TWP,15,1860,1,GOV1,3004 -0117_1001_7,-74.656106,39.395064,3214 NESCO ROAD,MULLICA TWP,16,1940,1,RES1,3002 -0117_1001_8,-74.60054637,39.38212351,3218 NESCO ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_1001_9,-74.5661065,39.3560605,3222 NESCO ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_10017_2,-74.40159567,39.39400366,4609 OLD EGG HARBOR ROAD,MULLICA TWP,16,1974,1,COM1,3004 -0117_10022_1,-74.71112744,39.46611215,429 ELWOOD ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_10022_13,-74.64484384,39.53079955,4700 WHITE HORSE PIKE,MULLICA TWP,15,1920,1,RES1,3001 -0117_10022_14,-74.754714,39.44684,4716 WHITE HORSE PIKE,MULLICA TWP,16,1958,1,RES1,3001 -0117_10022_15,-74.6673352,39.46013441,4701 OLD EGG HARBOR ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_10022_16,-74.366615,39.412741,4721 OLD EGG HARBOR ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_10022_19,-74.491678,39.4330065,4747 OLD EGG HARBOR ROAD,MULLICA TWP,16,1954,1,RES1,3001 -0117_10022_2,-74.509463,39.5272585,425 ELWOOD ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_10022_22,-74.4905805,39.338054,414 TENTH AVENUE,MULLICA TWP,16,1962,1,RES1,3001 -0117_10022_3,-74.47755783,39.34276556,421 ELWOOD ROAD,MULLICA TWP,16,1902,1,RES1,3001 -0117_10022_4,-74.53869515,39.37981747,415 ELWOOD ROAD,MULLICA TWP,16,1860,2,RES1,3001 -0117_10022_8,-74.67972027,39.41376633,4632 WHITE HORSE PIKE,MULLICA TWP,16,1915,1,RES1,3001 -0117_10023_1,-74.62941697,39.36572336,747 COLUMBIA ROAD,MULLICA TWP,16,1913,1,RES1,3001 -0117_10023_10,-74.4968305,39.332144,639 COLUMBIA ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_10023_11,-74.76118758,39.63431887,635 COLUMBIA ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_10023_12,-74.7738705,39.622012,631 COLUMBIA ROAD,MULLICA TWP,16,1945,1,RES1,3001 -0117_10023_13,-74.59777389,39.3683475,627 COLUMBIA ROAD,MULLICA TWP,15,1950,1,RES1,3001 -0117_10023_14,-74.80152483,39.64337198,4727 MOSS MILL ROAD,MULLICA TWP,16,1945,1,RES1,3001 -0117_10023_16,-74.60258864,39.40958802,615 COLUMBIA ROAD,MULLICA TWP,15,1940,1,RES1,3001 -0117_10023_18,-74.57989135,39.54070894,601 COLUMBIA ROAD,MULLICA TWP,15,1920,1,RES1,3001 -0117_10023_19,-74.71634458,39.57875835,4757 MOSS MILL ROAD,MULLICA TWP,13,1960,1,RES3A,3001 -0117_10023_2,-74.54160814,39.38608207,733 COLUMBIA ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_10023_24,-74.54317832,39.38939957,543 COLUMBIA ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_10023_27,-74.59836269,39.323478,521 COLUMBIA ROAD,MULLICA TWP,16,1935,1,RES1,3001 -0117_10023_28,-74.6022585,39.3497155,511 COLUMBIA ROAD,MULLICA TWP,16,1988,1,RES1,3001 -0117_10023_3,-74.48652785,39.33689148,725 COLUMBIA ROAD,MULLICA TWP,16,1927,1,RES1,3001 -0117_10023_5,-74.89131234,39.50086486,713 COLUMBIA ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_10023_7,-74.83408732,39.47701394,707 COLUMBIA ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_10023_9,-74.6971775,39.3492465,701 COLUMBIA ROAD,MULLICA TWP,15,1910,1,RES1,3001 -0117_10024_11,-74.84422798,39.40211616,4822 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_10024_12,-74.5400585,39.3927965,4834 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,RES1,3001 -0117_10024_13,-74.49398137,39.33387384,4850 WHITE HORSE PIKE,MULLICA TWP,16,1964,1,RES1,3001 -0117_10024_14,-74.53296162,39.50056809,4851 OLD EGG HARBOR ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_10024_15,-74.57128614,39.36473921,446 COLUMBIA ROAD,MULLICA TWP,16,1988,1,RES1,3001 -0117_10024_3,-74.551048,39.3821605,421 TENTH AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_10024_4,-74.5515623,39.37850724,417 TENTH AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_10024_5,-74.4417965,39.3685115,413 TENTH AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_10024_6,-74.5342805,39.376559,4800 WHITE HORSE PIKE,MULLICA TWP,17,2010,1,RES1,3001 -0117_10024_8,-74.501379,39.4109915,4810 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_10101_1,-74.4379625,39.365221,4900 WHITE HORSE PIKE,MULLICA TWP,16,1960,1,RES1,3001 -0117_10102_4,-74.64290822,39.53572342,409 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_10103_1,-74.6505997,39.35415469,5000 WHITE HORSE PIKE,MULLICA TWP,16,1962,1,RES1,3001 -0117_10103_4,-74.57504767,39.47887551,5036 WHITE HORSE PIKE,MULLICA TWP,16,1924,1,RES1,3001 -0117_10103_5,-74.75728893,39.35074021,5042 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_10103_6,-74.77512804,39.63537428,5050 WHITE HORSE PIKE,MULLICA TWP,,1953,1,RES3A,3001 -0117_10103_7,-74.539174,39.388095,5058 WHITE HORSE PIKE,MULLICA TWP,16,1955,1,RES1,3001 -0117_10104_10,-74.631695,39.446346,4935 MOSS MILL ROAD,MULLICA TWP,16,1994,1,COM1,3004 -0117_10104_13,-74.542525,39.382215,4949 MOSS MILL ROAD,MULLICA TWP,15,1962,1,RES1,3001 -0117_10104_15,-74.58412259,39.40147771,4963 MOSS MILL ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_10104_17,-74.56806106,39.41227175,5009 MOSS MILL ROAD,MULLICA TWP,16,1949,1,RES3A,3001 -0117_10104_2,-74.57749446,39.38421565,4855 MOSS MILL ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_10201_1,-74.5104295,39.33391509,5100 WHITE HORSE PIKE,MULLICA TWP,16,1975,1,RES1,3001 -0117_10201_6,-74.50086833,39.46928846,5160 WHITE HORSE PIKE,MULLICA TWP,45,1940,2,GOV1,3004 -0117_10202_13,-74.562442,39.369128,440 GRAPE AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_10202_2,-74.4397227,39.37114956,5208 WHITE HORSE PIKE,MULLICA TWP,16,1965,1,RES1,3001 -0117_10202_3,-74.923967,39.50614,5212 WHITE HORSE PIKE,MULLICA TWP,45,1970,2,GOV1,3004 -0117_10202_4,-74.6376455,39.621368,5218 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,RES1,3001 -0117_10202_6,-74.615053,39.3741215,417 SIXTH AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_10203_12,-74.70692004,39.43100869,424 MELON AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_10203_2,-74.712401,39.419742,5232 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES3A,3001 -0117_10203_3,-74.69464432,39.49416137,413 GRAPE AVENUE,MULLICA TWP,16,1974,1,RES3A,3001 -0117_10203_5,-74.660531,39.5201555,425 GRAPE AVENUE,MULLICA TWP,16,1962,1,GOV1,3004 -0117_10203_6,-74.77931888,39.30545384,431 GRAPE AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_10203_7,-74.552017,39.378329,437 GRAPE AVENUE,MULLICA TWP,16,1956,1,RES3A,3001 -0117_10203_8,-74.528757,39.402266,443 GRAPE AVENUE,MULLICA TWP,16,1993,1,RES3A,3001 -0117_10204_10,-74.494472,39.33192,422 FIFTH AVENUE,MULLICA TWP,16,1960,1,COM1,3004 -0117_10204_2,-74.55755814,39.3989409,5260 WHITE HORSE PIKE,MULLICA TWP,16,1960,1,RES1,3001 -0117_10204_3,-74.688087,39.557798,5264 WHITE HORSE PIKE,MULLICA TWP,16,1920,1,GOV1,3004 -0117_10204_4,-74.714177,39.466417,5268 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_10204_5,-74.4678439,39.47413873,406 FIFTH AVENUE,MULLICA TWP,16,1948,1,COM1,3004 -0117_10204_8,-74.38858445,39.39050815,435 MELON AVENUE,MULLICA TWP,16,1963,1,RES3A,3001 -0117_10205_1,-74.50167288,39.41507076,5101 MOSS MILL ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_10205_9,-74.504519,39.530905,5201 MOSS MILL ROAD,MULLICA TWP,16,1900,1,RES1,3001 -0117_10206_1,-74.59052098,39.31901619,503 GRAPE AVENUE,MULLICA TWP,16,1990,1,GOV1,3004 -0117_10206_3,-74.7473005,39.451183,502 MELON AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_10207_10,-74.57252444,39.34372217,510 FIFTH AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_10207_2,-74.484675,39.3386525,505 MELON AVENUE,MULLICA TWP,16,1966,1,RES1,3001 -0117_10207_5,-74.449316,39.371368,600 FIFTH AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10207_6,-74.84575491,39.40728182,614 FIFTH AVENUE,MULLICA TWP,16,1959,1,RES1,3004 -0117_10207_8,-74.50851362,39.32849465,502 FIFTH AVENUE,MULLICA TWP,16,1966,1,RES1,3001 -0117_10208_8,-74.628303,39.418343,5219 MOSS MILL ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_10209_2,-74.7591383,39.44469861,700 FIFTH AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_10209_20,-74.49201719,39.33974517,1012 FIFTH AVENUE,MULLICA TWP,16,1958,1,RES1,3001 -0117_10209_4,-74.54429179,39.38988334,706 FIFTH AVENUE,MULLICA TWP,16,1956,1,RES1,3001 -0117_10209_8,-74.92707617,39.5199545,816 FIFTH AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_103_2,-74.70419475,39.5677383,3001 WEST MILL ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_10301_1,-74.5689725,39.365114,5301 DUERER STREET,MULLICA TWP,16,1988,1,RES1,3001 -0117_10301_12,-74.5521985,39.3899455,5353 DUERER STREET,MULLICA TWP,16,1989,1,RES1,3002 -0117_10301_16,-74.57447532,39.37714798,1010 FOURTH AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_10301_18,-74.62859976,39.3592776,720 FOURTH AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_10301_5,-74.5496255,39.421141,911 FIFTH AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_10301_8,-74.46964183,39.34494201,801 FIFTH AVENUE,MULLICA TWP,15,1965,1,RES1,3001 -0117_10302_12,-74.50820683,39.32448503,701 FOURTH AVENUE,MULLICA TWP,16,1991,1,RES1,3001 -0117_10302_14,-74.57152311,39.3482869,5475 DUERER STREET,MULLICA TWP,16,1987,1,RES1,3001 -0117_10302_17,-74.58722257,39.32652867,611 FOURTH AVENUE,MULLICA TWP,16,1980,1,RES1,3001 -0117_10302_20,-74.51858213,39.39576397,509 FOURTH AVENUE,MULLICA TWP,16,1974,1,RES1,3002 -0117_10302_23,-74.87899359,39.59378413,5400 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3004 -0117_10302_25,-74.6267295,39.3585525,5422 WHITE HORSE PIKE,MULLICA TWP,16,1940,1,RES1,3001 -0117_10302_3,-74.49918544,39.33656887,5421 DUERER STREET,MULLICA TWP,15,1945,1,RES1,3001 -0117_10401_14,-74.7560275,39.4911475,508 FOURTH AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_10401_16,-74.44201815,39.35395351,500 FOURTH AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10401_2,-74.9423022,39.52074014,5311 SOUTH CAROLINA AVE.,MULLICA TWP,16,1971,1,RES3A,3002 -0117_10401_26,-74.61311422,39.36328047,501 FIFTH AVENUE,MULLICA TWP,16,1991,1,RES3A,3001 -0117_10401_28,-74.4511128,39.37275997,515 FIFTH AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10401_29,-74.59259326,39.36737514,609 FIFTH AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_10401_3,-74.5721265,39.413346,5319 SOUTH CAROLINA AVE,MULLICA TWP,16,1977,1,RES1,3001 -0117_10401_30,-74.45353447,39.49159259,601 FIFTH AVENUE,MULLICA TWP,15,1930,1,RES1,3001 -0117_10402_1,-74.55076274,39.39290254,439 FIFTH AVENUE,MULLICA TWP,16,1969,1,RES1,3002 -0117_10402_10,-74.733533,39.4365515,5348 WHITE HORSE PIKE,MULLICA TWP,45,1960,2,RES1,3001 -0117_10402_12,-74.796858,39.638336,430 FOURTH AVENUE,MULLICA TWP,16,1981,1,RES1,3001 -0117_10402_13,-74.54528043,39.47635923,414 FOURTH AVENUE,MULLICA TWP,,0,1,RES1,3001 -0117_10402_4,-74.48728832,39.33330702,405 FIFTH AVENUE,MULLICA TWP,16,1964,1,RES1,3001 -0117_10402_5,-74.554805,39.372585,5310 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,COM1,3004 -0117_10402_7,-74.59292465,39.32862748,5324 WHITE HORSE PIKE,MULLICA TWP,14,1930,2,RES1,3001 -0117_10402_8,-74.49931016,39.33068051,5330 WHITE HORSE PIKE,MULLICA TWP,15,1930,1,RES1,3001 -0117_10501_1,-74.71361583,39.56486696,5500 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,COM1,3004 -0117_10501_10,-74.94379125,39.48994798,1024 DARMSTADT AVENUE,MULLICA TWP,16,1957,1,COM10,3003 -0117_10501_15,-74.46339582,39.49264096,900 DARMSTADT AVENUE,MULLICA TWP,16,1981,1,RES3B,3001 -0117_10501_16,-74.73720668,39.64065909,820 DARMSTADT AVENUE,MULLICA TWP,16,1986,1,COM1,3004 -0117_10501_17,-74.75772127,39.43305011,810 DARMSTADT AVENUE,MULLICA TWP,16,1956,1,RES3A,3001 -0117_10501_18.01,-74.57642681,39.42202203,800 DARMSTADT AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_10501_18.02,-74.503553,39.407319,720 DARMSTADT AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10501_18.03,-74.5754306,39.4219773,710 DARMSTADT AVENUE,MULLICA TWP,17,1990,1,RES1,3001 -0117_10501_19.03,-74.61970971,39.37964185,620 DARMSTADT AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_10501_2,-74.79481665,39.62953257,5520 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_10501_20,-74.35923,39.4118775,608 DARMSTADT AVENUE,MULLICA TWP,16,1994,1,RES1,3001 -0117_10501_23,-74.58342026,39.47678135,508 DARMSTADT AVENUE,MULLICA TWP,,0,1,RES1,3001 -0117_10501_27,-74.9363065,39.504323,428 DARMSTADT AVENUE,MULLICA TWP,16,1935,1,RES1,3001 -0117_10501_28,-74.56348658,39.35649144,420 DARMSTADT AVENUE,MULLICA TWP,16,1948,1,RES1,3001 -0117_10501_33,-74.74769184,39.59249803,5628 WHITE HORSE PIKE,MULLICA TWP,16,1920,1,RES1,3001 -0117_10501_34,-74.5639301,39.35489406,5624 WHITE HORSE PIKE,MULLICA TWP,16,1965,1,RES1,3001 -0117_10501_35,-74.9124135,39.4949665,5600 WHITE HORSE PIKE,MULLICA TWP,,1950,1,RES1,3001 -0117_10501_40,-74.56539692,39.35783424,5550 WHITE HORSE PIKE,MULLICA TWP,15,1990,1,RES1,3001 -0117_10501_6.02,-74.58620701,39.33122398,5519 DUERER STREET,MULLICA TWP,16,1992,1,RES1,3002 -0117_10501_7,-74.80146386,39.63440494,5539 DUERER STREET,MULLICA TWP,16,1979,1,RES1,3001 -0117_10501_8,-74.55801619,39.53894785,5601 DUERER STREET,MULLICA TWP,16,1880,1,RES1,3001 -0117_10501_9,-74.62475362,39.35141668,5623 DUERER STREET,MULLICA TWP,16,1964,1,RES1,3001 -0117_10602_1,-74.6453975,39.3966285,433 DARMSTADT AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_10602_10,-74.51840497,39.41144618,701 DARMSTADT AVENUE,MULLICA TWP,16,1950,1,COM1,3004 -0117_10602_11,-74.49670113,39.33232865,719 DARMSTADT AVENUE,MULLICA TWP,15,1900,1,GOV1,3004 -0117_10602_12,-74.50157733,39.414284,801 DARMSTADT AVENUE,MULLICA TWP,16,1965,1,RES3B,3001 -0117_10602_13,-74.387908,39.3933555,811 DARMSTADT AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10602_14,-74.38933793,39.39246184,901 DARMSTADT AVENUE,MULLICA TWP,15,1862,3,GOV1,3004 -0117_10602_15,-74.520449,39.322042,919 DARMSTADT AVENUE,MULLICA TWP,16,1982,1,RES3B,3001 -0117_10602_16,-74.5076541,39.3239949,1001 DARMSTADT AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_10602_17,-74.58754322,39.42809745,1021 DARMSTADT AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_10602_18,-74.605222,39.3837505,5651 DUERER STREET,MULLICA TWP,16,1952,1,RES1,3001 -0117_10602_19,-74.7915585,39.634067,5661 DUERER STREET,MULLICA TWP,16,1960,1,GOV1,3004 -0117_10602_2,-74.55103059,39.36183129,437 DARMSTADT AVENUE,MULLICA TWP,16,1915,1,RES1,3001 -0117_10602_25,-74.61179896,39.31587322,5741 DUERER STREET,MULLICA TWP,16,1990,1,RES1,3001 -0117_10602_26,-74.4975275,39.338161,1000 HEIDELBERG AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_10602_27.01,-74.387274,39.396058,916 HEIDELBERG AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10602_27.02,-74.4630435,39.349145,908 HEIDELBERG AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10602_27.03,-74.5216785,39.4569595,900 HEIDELBERG AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_10602_28,-74.551932,39.385029,800 HEIDELBERG AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_10602_3,-74.5977407,39.37108007,501 DARMSTADT AVENUE,MULLICA TWP,16,1926,1,RES1,3001 -0117_10602_31.01,-74.78743901,39.6359849,520 HEIDELBERG AVENUE,MULLICA TWP,17,1987,1,RES1,3001 -0117_10602_31.02,-74.75461478,39.45241572,516 HEIDELBERG AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_10602_31.03,-74.83140753,39.42471166,510 HEIDELBERG AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_10602_32,-74.554917,39.379256,500 HEIDELBERG AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_10602_33,-74.8062,39.638332,420 HEIDELBERG AVENUE,MULLICA TWP,16,1940,2,RES1,3001 -0117_10602_37,-74.5951495,39.3411305,1020 HEIDELBERG AVENUE,MULLICA TWP,16,1982,1,RES1,3001 -0117_10602_4,-74.62826949,39.52552784,505 DARMSTADT AVENUE,MULLICA TWP,16,1900,1,RES1,3001 -0117_10602_5,-74.51806209,39.45781776,511 DARMSTADT AVENUE,MULLICA TWP,16,1900,1,RES3A,3001 -0117_10602_6,-74.5061015,39.403454,5712 GLORIA LANE,MULLICA TWP,16,1982,1,RES1,3001 -0117_10602_7,-74.50321206,39.40926932,601 DARMSTADT AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_10602_8,-74.50684667,39.33458394,609 DARMSTADT AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_10602_9,-74.66353203,39.57737899,617 DARMSTADT AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_10701_1,-74.871343,39.600119,5800 WHITE HORSE PIKE,MULLICA TWP,43,1880,2,COM1,3004 -0117_10701_10,-74.50876007,39.32617017,706 HAMBURG AVENUE,MULLICA TWP,16,1890,1,RES1,3001 -0117_10701_13,-74.51068483,39.337748,801 HEIDELBERG AVENUE,MULLICA TWP,16,1956,1,RES1,3001 -0117_10701_14,-74.57737513,39.33962033,811 HEIDELBERG AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_10701_17,-74.8816255,39.598866,819 HEIDELBERG AVENUE,MULLICA TWP,16,1959,1,RES1,3001 -0117_10701_18,-74.75949541,39.44572621,901 HEIDELBERG AVENUE,MULLICA TWP,16,1949,1,RES1,3001 -0117_10701_19,-74.36857574,39.41177108,911 HEIDELBERG AVENUE,MULLICA TWP,16,1962,1,RES1,3001 -0117_10701_2,-74.58561376,39.38047296,511 HEIDELBERG AVENUE,MULLICA TWP,16,1983,1,RES1,3001 -0117_10701_20,-74.55241866,39.38144094,921 HEIDELBERG AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_10701_3,-74.52884822,39.47087561,519 HEIDELBERG AVENUE,MULLICA TWP,16,1930,2,RES1,3001 -0117_10701_7,-74.5617855,39.40711867,601 HEIDELBERG AVENUE,MULLICA TWP,45,1930,2,RES3A,3001 -0117_10701_8,-74.500565,39.341987,701 HEIDELBERG AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_10702_1,-74.62386339,39.41806,5902 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,RES1,3001 -0117_10702_2,-74.61861783,39.42439229,5906 WHITE HORSE PIKE,MULLICA TWP,16,1956,1,RES1,3001 -0117_10702_4,-74.77193365,39.63740349,5930 WHITE HORSE PIKE,MULLICA TWP,16,1937,1,RES1,3001 -0117_10702_5,-74.44670087,39.3721367,5940 WHITE HORSE PIKE,MULLICA TWP,16,1900,1,RES1,3002 -0117_10703_3,-74.546238,39.375983,5930 GEORGINE STREET,MULLICA TWP,,0,1,RES3A,3002 -0117_10703_4,-74.601674,39.434101,412 HAMBURG AVENUE,MULLICA TWP,16,1964,1,RES1,3001 -0117_10703_5,-74.65851082,39.55235647,418 HAMBURG AVENUE,MULLICA TWP,16,1930,1,RES1,3002 -0117_10703_6,-74.4907275,39.5211825,420 HAMBURG AVENUE,MULLICA TWP,16,1951,1,RES3A,3001 -0117_10704_1,-74.58779766,39.32766152,426 HAMBURG AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_10706_3,-74.88844419,39.59808084,820 HAMBURG AVENUE,MULLICA TWP,16,1953,1,GOV1,3004 -0117_10706_4,-74.6120805,39.320444,900 HAMBURG AVENUE,MULLICA TWP,,0,1,RES1,3001 -0117_10706_6,-74.60284688,39.32199845,904 HAMBURG AVENUE,MULLICA TWP,16,1890,1,RES1,3001 -0117_10801_5,-74.46708483,39.34324501,400 PRINCE ALBERT STREET,MULLICA TWP,15,1955,1,RES1,3001 -0117_10802_1,-74.35830168,39.41516266,4619 WHITE HORSE PIKE,MULLICA TWP,,1920,1,RES1,3001 -0117_10802_10,-74.7582995,39.3441295,4725 WHITE HORSE PIKE,MULLICA TWP,15,1963,1,RES3A,3001 -0117_10802_12,-74.63911145,39.5323136,4733 WHITE HORSE PIKE,MULLICA TWP,16,1920,1,RES1,3001 -0117_10802_3,-74.64834731,39.53011635,4673 WHITE HORSE PIKE,MULLICA TWP,15,1904,1,RES1,3001 -0117_10802_4,-74.588723,39.368889,4701 WHITE HORSE PIKE,MULLICA TWP,15,1904,1,RES1,3004 -0117_10802_5,-74.567684,39.4162115,4707 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,RES1,3001 -0117_10802_6,-74.538896,39.383056,4713-4715 WHITE HORSE PK.,MULLICA TWP,16,1940,1,RES1,3001 -0117_10802_7,-74.52586608,39.39716886,4717 WHITE HORSE PIKE,MULLICA TWP,15,1930,1,RES1,3001 -0117_10802_8,-74.90961223,39.51464223,4719 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES3A,3001 -0117_10802_9,-74.5246155,39.413214,4723 WHITE HORSE PIKE,MULLICA TWP,15,1930,1,RES1,3001 -0117_10803_1,-74.58316763,39.51655495,4763 WHITE HORSE PIKE,MULLICA TWP,16,1952,1,GOV1,3004 -0117_10803_10,-74.6392655,39.3815315,4845 WHITE HORSE PIKE,MULLICA TWP,16,1900,1,RES1,3001 -0117_10803_12,-74.50575319,39.42537803,4857 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_10803_2,-74.50451724,39.41565306,4801 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,RES1,3001 -0117_10803_3,-74.3810575,39.41468817,4805 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_10803_4,-74.6849375,39.501347,4809 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,RES1,3001 -0117_10803_5,-74.49280226,39.40345678,4815 WHITE HORSE PIKE,MULLICA TWP,16,1978,1,RES1,3001 -0117_10803_7,-74.52464616,39.31636501,4831 WHITE HORSE PIKE,MULLICA TWP,15,1960,1,RES1,3001 -0117_10803_8,-74.43347766,39.36391125,4835 WHITE HORSE PIKE,MULLICA TWP,15,1929,1,RES1,3001 -0117_10803_9,-74.61305183,39.32566313,4839 WHITE HORSE PIKE,MULLICA TWP,16,2010,1,AGR1,3001 -0117_10805_1,-74.5997035,39.370447,317 WEYMOUTH ROAD,MULLICA TWP,,1870,1,RES1,3001 -0117_10805_2,-74.63035064,39.42487625,313 WEYMOUTH ROAD,MULLICA TWP,,1957,1,RES1,3001 -0117_10805_3,-74.53210468,39.38283995,305 WEYMOUTH ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_10807_4,-74.5985165,39.4098465,4644 READING AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_10807_7,-74.94828758,39.53151875,4658 READING AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10809_1,-74.48497749,39.34527033,307 TWENTY-THIRD AVENUE,MULLICA TWP,16,1984,1,RES1,3001 -0117_10810_10,-74.46516638,39.34865163,4736 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_10810_13,-74.912771,39.5139975,4750 READING AVENUE,MULLICA TWP,15,1966,1,RES1,3001 -0117_10810_14,-74.5004975,39.332947,4756 READING AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_10810_15,-74.49224244,39.34072083,4762 READING AVENUE,MULLICA TWP,16,1958,1,RES1,3001 -0117_10811_3,-74.4922235,39.339373,4810 READING AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_10811_4,-74.4852695,39.471374,4816 READING AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_10811_6,-74.745576,39.4197875,4826 READING AVENUE,MULLICA TWP,16,1975,1,AGR1,3001 -0117_10811_8,-74.61181827,39.52795278,4836 READING AVENUE,MULLICA TWP,16,1958,1,RES1,3001 -0117_10811_9,-74.920358,39.4704815,4840 READING AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_10812_2,-74.5595215,39.3571415,4611 READING AVENUE,MULLICA TWP,15,1965,1,IND1,3004 -0117_10812_3,-74.5445445,39.399912,285 WEYMOUTH ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_10812_4,-74.4627625,39.353245,281 WEYMOUTH ROAD,MULLICA TWP,16,1969,1,RES1,3001 -0117_10814_12,-74.71242195,39.46680616,272 TWENTY-FOURTH AVENUE,MULLICA TWP,14,1942,1,RES1,3001 -0117_10814_5,-74.4323151,39.36877309,4647 READING AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_10814_9,-74.7942755,39.634057,4667 READING AVENUE,MULLICA TWP,15,1964,1,RES1,3001 -0117_10816_15,-74.814228,39.646636,276 TWENTY-THIRD AVENUE,MULLICA TWP,16,1994,1,RES1,3001 -0117_10816_4,-74.5085885,39.494507,4743 READING AVENUE,MULLICA TWP,14,1960,1,RES1,3001 -0117_10816_5,-74.7532185,39.300997,4740 PITTSBURG AVENUE,MULLICA TWP,16,1984,1,RES1,3001 -0117_10816_7,-74.590471,39.3324285,4753 READING AVENUE,MULLICA TWP,16,1961,1,RES1,3001 -0117_10817_1,-74.5442405,39.376621,4801 READING AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_10818_10,-74.38849917,39.3938455,229 WEYMOUTH ROAD,MULLICA TWP,16,1967,1,RES1,3001 -0117_10818_12,-74.79901317,39.64141,211 WEYMOUTH ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_10818_14,-74.3716235,39.4014195,240 TWENTY-FOURTH AVENUE,MULLICA TWP,15,1968,2,REL1,3004 -0117_10818_15,-74.65699879,39.63068299,236 TWENTY-FOURTH AVENUE,MULLICA TWP,15,1961,2,AGR1,3001 -0117_10818_16,-74.527327,39.31294,230 TWENTY-FOURTH AVENUE,MULLICA TWP,15,1950,1,RES1,3001 -0117_10818_17,-74.89747348,39.51296832,220 TWENTY-FOURTH AVENUE,MULLICA TWP,,0,1,RES1,3002 -0117_10818_18,-74.51331967,39.32710649,210 TWENTY-FOURTH AVENUE,MULLICA TWP,16,2013,1,COM1,3004 -0117_10818_21,-74.55896176,39.39937997,258 TWENTY-FOURTH AVENUE,MULLICA TWP,16,1968,1,RES1,3001 -0117_10818_5,-74.50674625,39.32469233,4565 PITTSBURG AVENUE,MULLICA TWP,15,1975,1,RES1,3001 -0117_10818_9,-74.59736592,39.38421817,235 WEYMOUTH ROAD,MULLICA TWP,16,1984,1,RES1,3001 -0117_10820_1,-74.55512313,39.37153783,261 TWENTY-THIRD AVENUE,MULLICA TWP,15,1935,1,RES1,3001 -0117_10822_7,-74.58988517,39.42230134,201 TWENTY-THIRD AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_10901_12,-74.93395,39.5388567,101 WEYMOUTH ROAD,MULLICA TWP,16,1991,1,RES1,3001 -0117_10901_6,-74.554509,39.4670825,158 TWENTY-FOURTH AVENUE,MULLICA TWP,16,2010,1,RES1,3001 -0117_10902_6,-74.81373731,39.64842436,144 TWENTY-THIRD AVENUE,MULLICA TWP,16,1964,1,RES1,3001 -0117_10903_1,-74.44613739,39.35770874,145 TWENTY-THIRD AVENUE,MULLICA TWP,16,1971,1,RES1,3001 -0117_11003_7,-74.63504877,39.5282568,241 TWENTY-SECOND AVENUE,MULLICA TWP,15,1965,1,RES1,3001 -0117_11004_1,-74.56851935,39.47584604,251 TWENTY-SECOND AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_11004_5,-74.5532218,39.38096377,4908 TREMONT AVENUE,MULLICA TWP,16,1956,1,GOV1,3004 -0117_11004_6,-74.56379768,39.35438904,263 TWENTY-SECOND AVENUE,MULLICA TWP,16,1985,1,RES1,3001 -0117_11005_12,-74.56028161,39.4029491,4901 READING AVENUE,MULLICA TWP,16,1968,1,RES1,3001 -0117_11005_17,-74.4821605,39.4346845,4937 READING AVENUE,MULLICA TWP,15,1960,1,RES1,3001 -0117_11005_18,-74.51050338,39.32763332,4941 READING AVENUE,MULLICA TWP,16,1962,1,RES1,3001 -0117_11008_2,-74.50225919,39.41190943,4909 WHITE HORSE PIKE,MULLICA TWP,,1954,1,GOV1,3004 -0117_1101_1,-74.4955926,39.3394291,3537 NESCO ROAD,MULLICA TWP,16,1880,1,RES1,3001 -0117_1101_10,-74.3937485,39.3933605,3624 MOORES AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_1101_11,-74.63370584,39.53448398,3565 NESCO ROAD,MULLICA TWP,16,1972,1,GOV1,3004 -0117_1101_12,-74.38112813,39.40159267,3571 NESCO ROAD,MULLICA TWP,16,1957,1,RES1,3001 -0117_1101_13,-74.4935705,39.4276805,3601 NESCO ROAD,MULLICA TWP,16,1957,1,RES1,3001 -0117_1101_16,-74.5956115,39.317768,3638 MOORES AVENUE,MULLICA TWP,16,2010,1,RES1,3001 -0117_1101_17,-74.6227295,39.6238165,3642 MOORES AVENUE,MULLICA TWP,16,1952,1,RES1,3001 -0117_1101_19,-74.50902588,39.32603319,2338 COLUMBIA ROAD,MULLICA TWP,14,1955,1,RES1,3001 -0117_1101_2,-74.522774,39.319696,2251 WESCOAT AVENUE,MULLICA TWP,16,1966,1,RES1,3001 -0117_1101_20,-74.50768584,39.33841298,2332 COLUMBIA ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_1101_21,-74.83357485,39.49012926,2328 COLUMBIA ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_1101_22,-74.57285892,39.34217203,2324 COLUMBIA ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_1101_23,-74.75327266,39.44706504,2320 COLUMBIA ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_1101_24,-74.50645539,39.33703083,2316 COLUMBIA ROAD,MULLICA TWP,16,1952,1,RES1,3001 -0117_1101_25,-74.870261,39.5775125,2312 COLUMBIA ROAD,MULLICA TWP,16,1940,1,COM1,3004 -0117_1101_26,-74.53560977,39.40510911,2308 COLUMBIA ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_1101_27,-74.8739866,39.59398172,3652 MOORES AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_1101_28,-74.75016697,39.45091118,3660 MOORES AVENUE,MULLICA TWP,16,1960,1,IND1,3002 -0117_1101_29,-74.4968396,39.33156967,3670 MOORES AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_1101_3,-74.54804542,39.37393186,2243 WESCOAT AVENUE,MULLICA TWP,16,1986,1,AGR1,3001 -0117_1101_4,-74.75454417,39.44621733,2221 WESCOAT AVENUE,MULLICA TWP,16,1850,1,RES1,3001 -0117_1101_5,-74.54354672,39.39131727,3608 MOORES AVENUE,MULLICA TWP,16,1940,1,IND2,3002 -0117_1101_6,-74.55243994,39.36907597,3543 NESCO ROAD,MULLICA TWP,,1930,1,RES1,3001 -0117_1101_7,-74.63286466,39.41016374,3545 NESCO ROAD,MULLICA TWP,16,1940,1,RES3A,3001 -0117_1101_9,-74.563541,39.409258,3559 NESCO ROAD,MULLICA TWP,16,1900,1,GOV1,3004 -0117_11014_5,-74.73230093,39.45458969,5035 READING AVENUE,MULLICA TWP,,1920,1,RES1,3001 -0117_11015_10,-74.59732486,39.37824529,5048 READING AVENUE,MULLICA TWP,16,2009,1,RES1,3001 -0117_11015_4,-74.55209037,39.38224141,5014 READING AVENUE,MULLICA TWP,15,1950,1,RES1,3001 -0117_11015_5,-74.5224835,39.530855,5020 READING AVENUE,MULLICA TWP,15,1935,1,RES1,3001 -0117_11015_6,-74.61764792,39.37000675,5026 READING AVENUE,MULLICA TWP,15,1985,1,RES1,3001 -0117_11015_8,-74.65358,39.5254075,5036 READING AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_1102_1,-74.4576675,39.5120605,3617 NESCO ROAD,MULLICA TWP,16,1989,1,RES3A,3001 -0117_1102_10,-74.891755,39.5613245,2301 COLUMBIA ROAD,MULLICA TWP,16,1988,1,RES1,3001 -0117_1102_11,-74.36946056,39.41514486,3714 MOORES AVENUE,MULLICA TWP,15,1980,1,RES1,3001 -0117_1102_12,-74.933152,39.4837215,3720 MOORES AVENUE,MULLICA TWP,15,1952,1,RES1,3001 -0117_1102_14,-74.4937965,39.332818,3730 MOORES AVENUE,MULLICA TWP,16,1965,1,GOV1,3004 -0117_1102_15,-74.7021505,39.4862045,3738 MOORES AVENUE,MULLICA TWP,16,1991,1,GOV1,3004 -0117_1102_16,-74.76733,39.646058,3665 NESCO ROAD,MULLICA TWP,16,1900,1,RES1,3001 -0117_1102_17.01,-74.802737,39.6403805,3703 NESCO ROAD,MULLICA TWP,16,1948,1,RES1,3001 -0117_1102_17.03,-74.61829,39.4936965,3814 MOORES AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_1102_17.04,-74.65559731,39.34477513,3820 MOORES AVENUE,MULLICA TWP,16,1991,1,RES1,3001 -0117_1102_18.01,-74.69345094,39.44702369,3715 NESCO ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_1102_19,-74.7961245,39.6516135,3811 NESCO ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_1102_22,-74.64562311,39.53601458,3858 MOORES AVENUE,MULLICA TWP,15,1974,1,RES1,3001 -0117_1102_23,-74.60681457,39.37635879,3866 MOORES AVENUE,MULLICA TWP,16,1979,1,RES1,3001 -0117_1102_24,-74.81918996,39.5296238,3823 NESCO ROAD,MULLICA TWP,16,1895,1,RES1,3001 -0117_1102_26,-74.58960947,39.41169521,3831 NESCO ROAD,MULLICA TWP,16,1929,2,RES1,3004 -0117_1102_27,-74.6255665,39.3923225,3835 NESCO ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_1102_28,-74.59317556,39.37695378,3845 NESCO ROAD,MULLICA TWP,15,1900,1,RES1,3001 -0117_1102_3,-74.54757116,39.38852547,3645 NESCO ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_1102_4,-74.6120295,39.386586,3651 NESCO ROAD,MULLICA TWP,16,1965,1,GOV1,3004 -0117_1102_5,-74.638882,39.4000265,3653 NESCO ROAD,MULLICA TWP,16,1924,1,RES1,3001 -0117_1102_7,-74.7870025,39.6776365,2321 COLUMBIA ROAD,MULLICA TWP,16,1952,1,RES1,3001 -0117_1102_8,-74.80580547,39.63166184,2317 COLUMBIA ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_1102_9,-74.84233072,39.44409192,2313 COLUMBIA ROAD,MULLICA TWP,16,1956,1,RES1,3001 -0117_11020_1,-74.78011527,39.58835673,5001 WHITE HORSE PIKE,MULLICA TWP,15,1930,2,RES1,3001 -0117_11020_10,-74.7670322,39.31388091,5041 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_11020_11,-74.54795326,39.46342098,5045 WHITE HORSE PIKE,MULLICA TWP,15,1953,1,RES1,3001 -0117_11020_12,-74.37616504,39.40154017,5055 WHITE HORSE PIKE,MULLICA TWP,16,1916,1,RES1,3001 -0117_11020_2,-74.49193435,39.41890373,5009 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11020_3,-74.88181355,39.49601419,5011 WHITE HORSE PIKE,MULLICA TWP,15,1965,1,RES1,3001 -0117_11020_5,-74.80471703,39.60158979,5021 WHITE HORSE PIKE,MULLICA TWP,15,1949,1,RES1,3001 -0117_11020_6,-74.64253047,39.39982419,5027 WHITE HORSE PIKE,MULLICA TWP,16,1938,1,GOV1,3004 -0117_11020_9,-74.3823635,39.397664,5037 WHITE HORSE PIKE,MULLICA TWP,16,1943,1,RES1,3001 -0117_11108_5,-74.5204065,39.395708,5141 READING AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_11108_6,-74.6235895,39.4235445,5151 READING AVENUE,MULLICA TWP,16,1978,1,GOV1,3004 -0117_11108_8,-74.499812,39.328545,5163 READING AVENUE,MULLICA TWP,16,1978,1,GOV1,3004 -0117_11111_2,-74.77235932,39.63393703,5105 WHITE HORSE PIKE,MULLICA TWP,,0,1,GOV1,3004 -0117_11111_3,-74.71404634,39.46432652,5107 WHITE HORSE PIKE,MULLICA TWP,16,1938,1,RES1,3001 -0117_11111_4,-74.556818,39.3762215,5111 WHITE HORSE PIKE,MULLICA TWP,16,1954,1,RES1,3001 -0117_11111_5,-74.806008,39.62764667,5117 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11119_1,-74.40285346,39.38068151,5200 READING AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_11122_10,-74.529883,39.4001595,5243 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,RES1,3001 -0117_11122_11,-74.75449901,39.30186886,5251 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,GOV1,3004 -0117_11122_12,-74.5059695,39.4061555,5257 WHITE HORSE PIKE,MULLICA TWP,,1946,1,RES1,3001 -0117_11122_13,-74.40413012,39.39090544,5221 WHITE HORSE PIKE,MULLICA TWP,16,1940,1,RES1,3001 -0117_11122_14,-74.61623864,39.50910652,5217 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,GOV1,3004 -0117_11122_2,-74.57592396,39.36614464,5163 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11122_3,-74.5541385,39.466697,5169 WHITE HORSE PIKE,MULLICA TWP,16,1954,1,RES1,3001 -0117_11122_7,-74.71247974,39.46761116,5229 WHITE HORSE PIKE,MULLICA TWP,15,1960,1,RES1,3001 -0117_11122_8,-74.6170334,39.46139914,5233 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,RES1,3001 -0117_11122_9,-74.8856215,39.583078,5235 WHITE HORSE PIKE,MULLICA TWP,16,1990,1,RES1,3001 -0117_11204_4,-74.36862046,39.41446232,240 FOURTH AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_11204_5,-74.90380042,39.49251001,220 FOURTH AVENUE,MULLICA TWP,15,1920,1,RES1,3001 -0117_11206_1,-74.7813785,39.499931,271 FIFTH AVENUE,MULLICA TWP,16,1980,1,RES1,3001 -0117_11206_3,-74.63927557,39.53062785,5319 READING AVENUE,MULLICA TWP,16,1979,1,RES1,3001 -0117_11206_4,-74.50163172,39.40811478,5325 READING AVENUE,MULLICA TWP,16,1979,1,RES1,3001 -0117_11206_5,-74.36984628,39.41616445,5331 READING AVENUE,MULLICA TWP,16,1979,1,RES1,3001 -0117_11206_6,-74.38114598,39.39905135,270 FOURTH AVENUE,MULLICA TWP,15,1977,1,RES1,3001 -0117_11206_9,-74.60608884,39.40983501,280 FOURTH AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_11207_1,-74.77718673,39.59620404,5300 READING AVENUE,MULLICA TWP,16,1981,1,RES1,3001 -0117_11207_10.01,-74.63011959,39.39309631,5352 READING AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_11207_10.02,-74.42172589,39.37232221,5356 READING AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_11207_10.03,-74.81315923,39.60450188,5362 READING AVENUE,MULLICA TWP,16,1985,1,RES1,3001 -0117_11207_2,-74.72934878,39.45578299,5306 READING AVENUE,MULLICA TWP,16,1995,1,RES1,3001 -0117_11207_7,-74.65369834,39.55721745,5330 READING AVENUE,MULLICA TWP,16,1991,1,RES1,3001 -0117_11207_9.01,-74.83585054,39.4850103,5340 READING AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_11207_9.02,-74.80107709,39.64271917,5346 READING AVENUE,MULLICA TWP,15,1986,1,RES1,3001 -0117_11209_1,-74.79529684,39.60936202,5263 WHITE HORSE PIKE,MULLICA TWP,16,1960,1,RES1,3001 -0117_11209_11,-74.464031,39.470179,5345 WHITE HORSE PIKE,MULLICA TWP,16,1935,1,RES1,3001 -0117_11209_2,-74.939408,39.5267185,5301 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,GOV1,3004 -0117_11209_3,-74.9583715,39.4983545,5311 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11209_4,-74.38247958,39.39666086,5317 WHITE HORSE PIKE,MULLICA TWP,15,1920,1,RES1,3001 -0117_11209_5,-74.54533304,39.38011191,5321 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11209_6,-74.495864,39.337055,5325 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11209_7,-74.50385241,39.34159888,5329 WHITE HORSE PIKE,MULLICA TWP,15,1925,1,RES1,3001 -0117_11209_8,-74.50921615,39.32726281,5333 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_11215_11,-74.60051724,39.51946381,5427 READING AVENUE,MULLICA TWP,16,1960,1,REL1,3004 -0117_11215_13,-74.40446799,39.39329834,5451 READING AVENUE,MULLICA TWP,16,1982,1,RES1,3001 -0117_11215_15,-74.56368971,39.36613256,5463 READING AVENUE,MULLICA TWP,16,1979,1,GOV1,3004 -0117_11216_1,-74.50403869,39.41111753,5400 READING AVENUE,MULLICA TWP,15,1959,1,GOV1,3004 -0117_11216_3,-74.58953632,39.32267694,5432 READING AVENUE,MULLICA TWP,16,1968,1,COM4,3004 -0117_11216_5,-74.71195733,39.63994483,5460 READING AVENUE,MULLICA TWP,,1940,1,RES1,3001 -0117_11218_1,-74.55757991,39.5015978,331 FOURTH AVENUE,MULLICA TWP,15,1950,1,GOV1,3004 -0117_11218_11,-74.70843797,39.43023639,5459 WHITE HORSE PIKE,MULLICA TWP,15,1960,2,RES1,3001 -0117_11218_12,-74.71449974,39.63487904,5471 WHITE HORSE PIKE,MULLICA TWP,16,1870,2,GOV1,3004 -0117_11218_4,-74.56632704,39.54133376,5425 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11218_6,-74.60147073,39.32106439,5435 WHITE HORSE PIKE,MULLICA TWP,16,1961,1,RES1,3001 -0117_11218_7,-74.79754889,39.5378363,5439 WHITE HORSE PIKE,MULLICA TWP,14,1964,1,GOV1,3004 -0117_11218_9,-74.5102055,39.4661745,5445 WHITE HORSE PIKE,MULLICA TWP,16,1919,1,RES1,3001 -0117_11306_9,-74.76138382,39.43038309,5501 READING AVENUE,MULLICA TWP,16,1982,1,RES1,3001 -0117_11309_4,-74.43237197,39.37027292,5521 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_11317_1,-74.85969122,39.44514189,5600 FRAZIER AVENUE,MULLICA TWP,14,1935,1,GOV1,3004 -0117_11317_2,-74.836968,39.532634,5610 FRAZIER AVENUE,MULLICA TWP,16,1890,1,IND2,3004 -0117_11317_7,-74.45644,39.374409,5658 FRAZIER AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_11318_3,-74.52977071,39.3984469,5610 ATLANTIC AVENUE,MULLICA TWP,16,1964,1,RES1,3001 -0117_11318_4,-74.593036,39.3782445,5614 ATLANTIC AVENUE,MULLICA TWP,16,1963,1,RES1,3001 -0117_11318_7,-74.83649071,39.49525557,340 DARMSTADT AVENUE,MULLICA TWP,16,1925,1,RES1,3001 -0117_11318_8,-74.39219851,39.38837117,334 DARMSTADT AVENUE,MULLICA TWP,16,1932,1,RES1,3001 -0117_11319_1,-74.43812421,39.36874862,5547 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11319_2,-74.386839,39.3919125,5551 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11319_3,-74.92983235,39.50801137,5555 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_11319_4,-74.55939616,39.362622,5601 WHITE HORSE PIKE,MULLICA TWP,16,1940,2,RES1,3001 -0117_11319_5,-74.4963055,39.4325525,5605 WHITE HORSE PIKE,MULLICA TWP,,1943,1,RES1,3001 -0117_11319_6,-74.54473342,39.38311835,5613 WHITE HORSE PIKE,MULLICA TWP,16,1940,1,RES1,3001 -0117_11319_8,-74.56174786,39.37198555,5625 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,RES1,3001 -0117_11321_11,-74.50774752,39.40547634,5741 WHITE HORSE PIKE,MULLICA TWP,15,1900,1,RES1,3001 -0117_11321_2,-74.68986963,39.58455092,5645 WHITE HORSE PIKE,MULLICA TWP,16,1954,1,RES1,3001 -0117_11321_4,-74.74257609,39.39916973,5655 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,GOV1,3004 -0117_11321_5,-74.531661,39.3868895,5661 WHITE HORSE PIKE,MULLICA TWP,16,1922,1,RES1,3001 -0117_11321_8,-74.79709674,39.63812858,5715-5717 WHITE HORSE PK.,MULLICA TWP,16,1920,1,RES1,3001 -0117_11410_4,-74.37464273,39.41003536,5825 GARDEN ALLEY,MULLICA TWP,16,1990,1,GOV1,3004 -0117_11410_5,-74.807565,39.6308215,5829 GARDEN ALLEY,MULLICA TWP,15,1964,1,RES1,3001 -0117_11410_6,-74.57372688,39.41851476,5835 GARDEN ALLEY,MULLICA TWP,15,1890,1,RES1,3001 -0117_11411_1,-74.630608,39.429666,5801 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_11411_2,-74.71779999,39.64097511,5813 WHITE HORSE PIKE,MULLICA TWP,16,1996,1,RES1,3001 -0117_11411_3,-74.75688717,39.30695829,5819 WHITE HORSE PIKE,MULLICA TWP,15,1950,2,RES1,3001 -0117_11411_7,-74.6411645,39.5316675,5839 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,RES1,3001 -0117_11411_8,-74.57783689,39.4763588,5841 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,RES1,3001 -0117_11412_2,-74.51634082,39.40300125,332 HAMBURG AVENUE,MULLICA TWP,15,1945,1,RES1,3001 -0117_11412_4,-74.5703455,39.4275405,5937 GARDEN ALLEY,MULLICA TWP,16,1900,1,RES1,3001 -0117_11412_5,-74.663626,39.401039,340 HAMBURG AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_11413_1,-74.5618255,39.37004,5921 WHITE HORSE PIKE,MULLICA TWP,16,1960,1,RES1,3001 -0117_11413_4,-74.65272684,39.52297953,5931 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,RES1,3001 -0117_11413_6,-74.520525,39.399283,5937 WHITE HORSE PIKE,MULLICA TWP,16,1950,1,RES1,3001 -0117_11413_7,-74.64850325,39.52898939,5943 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_1201_1,-74.7816605,39.5425155,3901 NESCO ROAD,MULLICA TWP,16,1979,2,RES1,3001 -0117_1201_2,-74.94293008,39.5453907,3909 NESCO ROAD,MULLICA TWP,16,1975,1,RES1,3001 -0117_1201_3,-74.585537,39.327332,3915 NESCO ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_1201_4,-74.52139533,39.40394026,3965 MOORES AVENUE,MULLICA TWP,16,1971,1,RES1,3001 -0117_1201_5,-74.55511483,39.36077492,3955 MOORES AVENUE,MULLICA TWP,16,1968,1,RES1,3001 -0117_1401_12,-74.5998645,39.4185585,2330 ELWOOD ROAD,MULLICA TWP,16,1979,1,RES1,3001 -0117_1401_16,-74.51641851,39.31921484,2302 ELWOOD ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_1401_19,-74.62530536,39.39327855,2244 ELWOOD ROAD,MULLICA TWP,16,1986,1,RES1,3001 -0117_1401_20,-74.64084456,39.52986635,2238 ELWOOD ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_1401_21,-74.62682354,39.38467274,2230 ELWOOD ROAD,MULLICA TWP,16,1961,1,RES1,3001 -0117_1501_1,-74.606121,39.3180805,3001 NEIL ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_1501_2,-74.51515091,39.43771822,3021 NEIL ROAD,MULLICA TWP,16,1936,1,RES1,3001 -0117_1501_4,-74.49986951,39.42431867,3035 NEIL ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_1501_7,-74.639979,39.5300605,3045 NEIL ROAD,MULLICA TWP,16,1942,1,RES1,3001 -0117_1501_8,-74.51594865,39.47013276,3057 NEIL ROAD,MULLICA TWP,16,1968,1,RES1,3001 -0117_1501_9.02,-74.801794,39.60585868,3115 NEIL ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_1502_5,-74.80805316,39.64232747,3112 NESCO ROAD,MULLICA TWP,15,1818,3,RES1,3001 -0117_1502_7,-74.62892352,39.34917726,3160 NESCO ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_1502_8,-74.37309674,39.40689487,3180 NESCO ROAD,MULLICA TWP,,1968,1,RES1,3001 -0117_1503_3,-74.59250539,39.45579926,2019 AIRPORT ROAD,MULLICA TWP,16,1970,1,GOV1,3004 -0117_1503_6,-74.51602355,39.44352734,3024 NESCO ROAD,MULLICA TWP,15,1950,1,RES1,3001 -0117_1503_9,-74.46320416,39.34999552,3020 NESCO ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_1504_10,-74.57019567,39.37550659,3061 NESCO ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_1504_12,-74.72484526,39.45104631,3159 NESCO ROAD,MULLICA TWP,16,1940,1,GOV1,3004 -0117_1504_13,-74.92782983,39.51991784,3163 NESCO ROAD,MULLICA TWP,,0,1,GOV1,3004 -0117_1504_14,-74.52005051,39.38428832,3185 NESCO ROAD,MULLICA TWP,,0,1,GOV1,3004 -0117_1504_15,-74.380681,39.414526,3191 NESCO ROAD,MULLICA TWP,16,1963,1,RES1,3001 -0117_1504_16,-74.79399469,39.65047351,3211 NESCO ROAD,MULLICA TWP,17,2008,1,RES1,3001 -0117_1504_17,-74.58870128,39.37893438,2050 CHESTNUT STREET,MULLICA TWP,16,1970,1,RES1,3001 -0117_1504_3,-74.63653893,39.38230236,3001 NESCO ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_1504_4,-74.94645275,39.51973391,3009 NESCO ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_1504_8,-74.47737625,39.34011235,3053 NESCO ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_1601_1.02,-74.46188015,39.34696667,2115 CHESTNUT STREET,MULLICA TWP,16,1992,1,GOV1,3004 -0117_1601_12,-74.5013915,39.335157,3427 NESCO ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_1601_13,-74.45054081,39.49125639,3431 NESCO ROAD,MULLICA TWP,16,1929,1,RES1,3001 -0117_1601_14,-74.49646924,39.47202557,3441 NESCO ROAD,MULLICA TWP,16,1968,1,RES1,3001 -0117_1601_15,-74.6372275,39.469589,2130 WOODLAND AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_1601_17,-74.568636,39.3515085,3460 MOORES AVENUE,MULLICA TWP,15,1940,1,RES1,3001 -0117_1601_18,-74.5350655,39.3812005,3453 NESCO ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_1601_19,-74.449492,39.37348,3463 NESCO ROAD,MULLICA TWP,16,1981,1,RES1,3001 -0117_1601_20,-74.7141965,39.4704255,2150 WOODLAND AVENUE,MULLICA TWP,16,1980,1,RES1,3001 -0117_1601_21,-74.4645595,39.354671,2140 WOODLAND AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_1601_23,-74.64003484,39.4343413,2112 WOODLAND AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_1601_3,-74.40425664,39.39329206,3380 MOORES AVENUE,MULLICA TWP,15,1924,1,RES1,3001 -0117_1601_4,-74.67215064,39.61505445,3341 NESCO ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_1601_5,-74.65975488,39.6320022,3388 MOORES AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_1601_6,-74.597903,39.38083945,3410 MOORES AVENUE,MULLICA TWP,16,1997,1,RES1,3001 -0117_1601_7,-74.5738837,39.4113328,3403 NESCO ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_1601_8.01,-74.5732415,39.426639,3411 NESCO ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_1601_8.02,-74.49198088,39.33287372,3421 NESCO ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_1602_1,-74.59559631,39.43162942,3501 NESCO ROAD,MULLICA TWP,,1940,1,RES1,3001 -0117_1602_10,-74.53962806,39.47045928,2242 WESCOAT AVENUE,MULLICA TWP,16,1969,1,GOV1,3004 -0117_1602_11,-74.60938793,39.38629574,2236 WESCOAT AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_1602_12,-74.5466345,39.372407,2230 WESCOAT AVENUE,MULLICA TWP,16,1977,1,GOV1,3004 -0117_1602_14,-74.63828049,39.36116023,2220 WESCOAT AVENUE,MULLICA TWP,16,1955,1,RES1,3001 -0117_1602_17,-74.71410335,39.3762208,2210 WESCOAT AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_1602_2,-74.54206088,39.39209823,3505 NESCO ROAD,MULLICA TWP,16,1780,1,RES1,3001 -0117_1602_4,-74.45398818,39.35272117,3513 NESCO ROAD,MULLICA TWP,16,1908,1,RES1,3001 -0117_1602_5,-74.80294491,39.63825086,3517 NESCO ROAD,MULLICA TWP,16,1895,1,RES1,3001 -0117_1602_6,-74.38825637,39.39532086,2101 WOODLAND AVENUE,MULLICA TWP,16,1956,1,RES1,3001 -0117_1602_8,-74.556615,39.3977,3527 NESCO ROAD,MULLICA TWP,16,1959,1,RES1,3001 -0117_1602_9,-74.62477352,39.38393432,2246 WESCOAT AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_1603_1,-74.60449771,39.40611716,3325 MOORES AVENUE,MULLICA TWP,16,1850,1,RES1,3001 -0117_1603_11,-74.836355,39.485491,3405 MOORES AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_1603_13,-74.45170161,39.49233319,3425 MOORES AVENUE,MULLICA TWP,16,1967,1,RES1,3001 -0117_1603_15,-74.63725861,39.36864047,3435 MOORES AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_1603_16,-74.4794865,39.346251,3443 MOORES AVENUE,MULLICA TWP,16,1979,1,RES1,3001 -0117_1603_18,-74.64015716,39.52827296,3455 MOORES AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_1603_19,-74.707217,39.4332785,3459 MOORES AVENUE,MULLICA TWP,16,1973,1,RES1,3001 -0117_1603_20,-74.6612125,39.6352595,3463 MOORES AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_1603_21,-74.42304107,39.37554519,3471 MOORES AVENUE,MULLICA TWP,16,1928,1,RES1,3001 -0117_1603_3,-74.58090361,39.40715453,3339 MOORES AVENUE,MULLICA TWP,16,1890,1,RES1,3001 -0117_1603_5,-74.49698903,39.466032,3347 MOORES AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_1603_6,-74.854813,39.4469075,3355 MOORES AVENUE,MULLICA TWP,16,1890,1,RES1,3001 -0117_1603_8,-74.63231724,39.38959211,3377 MOORES AVENUE,MULLICA TWP,16,1939,1,RES1,3001 -0117_1701_10,-74.64847193,39.53275615,3633 MOORES AVENUE,MULLICA TWP,16,1973,1,RES1,3001 -0117_1701_13,-74.54840422,39.46998307,2201 MICKEL DRIVE,MULLICA TWP,16,1969,1,RES1,3001 -0117_1701_14,-74.53261767,39.40189608,2200 THE LANE,MULLICA TWP,16,1960,1,RES1,3001 -0117_1701_2,-74.7070635,39.4327635,3531 MOORES AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_1701_3,-74.59665853,39.34088166,3535 MOORES AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_1701_4,-74.46712301,39.34391297,3607 MOORES AVENUE,MULLICA TWP,16,1978,2,RES1,3001 -0117_1701_5,-74.88365774,39.48546318,3601 MOORES AVENUE,MULLICA TWP,16,1949,1,RES1,3001 -0117_1701_6,-74.43721162,39.36568353,3615 MOORES AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_1701_7,-74.50636917,39.40681809,3623 MOORES AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_1701_8,-74.689162,39.511168,3627 MOORES AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_1702_1,-74.613067,39.4286515,3659 MOORES AVENUE,MULLICA TWP,16,1959,1,RES1,3001 -0117_1801_10,-74.60470437,39.43968928,3867 MOORES AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_1801_4,-74.7966665,39.635185,2201 COLUMBIA ROAD,MULLICA TWP,16,1988,1,RES1,3001 -0117_1801_6,-74.6316338,39.39201959,3801 MOORES AVENUE,MULLICA TWP,15,1885,1,RES1,3001 -0117_1801_7.01,-74.67376433,39.51622156,3817 MOORES AVENUE,MULLICA TWP,16,1994,1,RES1,3001 -0117_1801_7.02,-74.4893385,39.336379,3831 MOORES AVENUE,MULLICA TWP,16,1994,1,GOV1,3004 -0117_1801_8,-74.76152131,39.43031223,3845 MOORES AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_1901_5,-74.55063529,39.37651052,2170 ELWOOD ROAD,MULLICA TWP,16,1935,1,RES1,3001 -0117_1901_7,-74.68671898,39.55644217,2212 ELWOOD ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_2001_2,-74.5166195,39.326262,2022 BOREAS ROAD,MULLICA TWP,16,1870,1,RES1,3001 -0117_2001_4,-74.3598697,39.41537968,2008 BOREAS ROAD,MULLICA TWP,16,1890,1,GOV1,3004 -0117_2003_1,-74.69181292,39.44904381,3041 HEMLOCK STREET,MULLICA TWP,,0,1,RES1,3001 -0117_2134_1,-74.51486864,39.50695917,1627 EIGHTY SEVENTH ST,MULLICA TWP,,0,1,RES1,3001 -0117_2134_2,-74.549167,39.4694325,1619 EIGHTY SEVENTH ST,MULLICA TWP,,0,1,RES1,3001 -0117_2134_3,-74.52133223,39.40171272,1611 EIGHTY SEVENTH ST,MULLICA TWP,,0,1,RES1,3001 -0117_2134_4,-74.50334633,39.3301615,1601 EIGHTY SEVENTH ST,MULLICA TWP,,0,1,RES1,3001 -0117_2301_7,-74.5338975,39.469757,2000 COLUMBIA ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_2401_12,-74.6822135,39.4436405,2046 ELWOOD ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2401_14,-74.8284815,39.405146,2064 ELWOOD ROAD,MULLICA TWP,14,1940,1,GOV1,3004 -0117_2401_15,-74.6338812,39.38276191,2001 COLUMBIA ROAD,MULLICA TWP,16,1997,1,GOV1,3004 -0117_2401_16,-74.81326233,39.38279854,2084 ELWOOD ROAD,MULLICA TWP,16,1994,1,RES1,3001 -0117_2401_2.01,-74.6251945,39.3616615,1630 ELWOOD ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_2401_2.02,-74.35936483,39.41468952,1700 ELWOOD ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_2401_3,-74.6043959,39.48174245,1732 ELWOOD ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_2501_14,-74.45088923,39.37478393,1400 ELWOOD ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_2501_15,-74.5894518,39.37707947,1338 ELWOOD ROAD,MULLICA TWP,16,1993,1,RES1,3001 -0117_2501_18,-74.36648127,39.41673105,1238 ELWOOD ROAD,MULLICA TWP,16,1996,1,RES1,3001 -0117_2501_2,-74.492426,39.4329255,1608 ELWOOD ROAD,MULLICA TWP,16,1983,1,RES1,3001 -0117_2501_20,-74.604606,39.5923965,1208 ELWOOD ROAD,MULLICA TWP,16,1936,1,RES1,3001 -0117_2501_21,-74.59888418,39.31766503,1200 ELWOOD ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_2501_22,-74.568791,39.411654,1138 ELWOOD ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_2501_23,-74.49204192,39.43562379,1100 ELWOOD ROAD,MULLICA TWP,16,1900,1,RES1,3001 -0117_2501_24,-74.6396495,39.3623525,1010 ELWOOD ROAD,MULLICA TWP,15,1900,1,RES1,3001 -0117_2501_25,-74.817756,39.368989,1419 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_26,-74.63907022,39.40058199,1415 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_27,-74.788165,39.634385,1411 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_28,-74.54961085,39.46768718,1407 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_29,-74.610838,39.32774967,1401 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_30,-74.50110957,39.4123022,1351 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_31,-74.6337352,39.53662361,1345 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_32,-74.8756715,39.598057,1339 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_33,-74.50146672,39.50164532,1333 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_34,-74.51217,39.330782,1327 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_35,-74.519773,39.3945675,1323 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_36,-74.56860807,39.35758735,1319 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_37,-74.37607318,39.41901544,1315 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_38,-74.63852252,39.4021322,1311 COLUMBIA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2501_39,-74.660799,39.5161575,1301 COLUMBIA ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_2501_4,-74.4485825,39.35350667,1534 ELWOOD ROAD,MULLICA TWP,16,1982,1,RES1,3001 -0117_2501_41,-74.59500794,39.40577443,1241 COLUMBIA ROAD,MULLICA TWP,16,1984,1,RES1,3001 -0117_2501_44.01,-74.80420375,39.62962443,1201 COLUMBIA ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_2501_44.02,-74.64428685,39.39873271,1215 COLUMBIA ROAD,MULLICA TWP,16,1984,1,RES1,3001 -0117_2501_5,-74.60963017,39.44193986,1530 ELWOOD ROAD,MULLICA TWP,16,1982,1,RES1,3001 -0117_2606_1,-74.58922088,39.31896388,1128 COLUMBIA ROAD,MULLICA TWP,16,1969,1,RES1,3001 -0117_2606_10,-74.918014,39.5664195,800 ELWOOD ROAD,MULLICA TWP,16,1924,1,RES1,3001 -0117_2606_4,-74.36970586,39.40662767,1034 COLUMBIA ROAD,MULLICA TWP,16,1963,1,RES1,3001 -0117_2606_5.03,-74.88742558,39.55801878,1000 ELWOOD ROAD,MULLICA TWP,16,1865,1,RES1,3001 -0117_2606_7.02,-74.50301732,39.32565753,916 ELWOOD ROAD,MULLICA TWP,16,1900,1,RES1,3001 -0117_2606_7.03,-74.703983,39.492473,900 ELWOOD ROAD,MULLICA TWP,16,1991,1,RES1,3001 -0117_2606_9,-74.604967,39.4391795,820 ELWOOD ROAD,MULLICA TWP,16,1894,1,RES1,3001 -0117_2611_3,-74.55626385,39.3701297,4500 MOSS MILL ROAD,MULLICA TWP,16,1964,1,RES1,3001 -0117_2611_4,-74.571088,39.41364,4514 MOSS MILL ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_2701_1,-74.50991622,39.33190642,3000 WHITE HORSE PIKE,MULLICA TWP,16,1955,1,RES1,3001 -0117_2701_10,-74.50816704,39.46305785,3030 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES3A,3004 -0117_2701_2,-74.60411001,39.32143128,409 SEVENTH STREET,MULLICA TWP,16,1959,1,RES1,3001 -0117_2701_3,-74.62480983,39.39312407,3001 MOSS MILL ROAD,MULLICA TWP,14,1960,1,RES1,3001 -0117_2701_4,-74.55344643,39.47560854,3008 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_2701_5,-74.60111094,39.4305572,3012 WHITE HORSE PIKE,MULLICA TWP,16,1960,1,RES1,3001 -0117_2701_6,-74.557161,39.4783725,3016 WHITE HORSE PIKE,MULLICA TWP,15,1940,1,RES2,3005 -0117_2701_9,-74.57858905,39.34046955,3024 WHITE HORSE PIKE,MULLICA TWP,16,1952,1,RES1,3001 -0117_2702_1,-74.8464765,39.6079565,3000 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_2702_2,-74.58636816,39.35495614,3014 MOSS MILL ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_2702_3,-74.56572759,39.34993782,3020 MOSS MILL ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_2707_1,-74.88718934,39.59469661,3040 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_2707_3,-74.63618638,39.50908715,3057 MOSS MILL ROAD,MULLICA TWP,,1975,1,RES1,3001 -0117_2821_2,-74.523895,39.4480545,3222 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_2841_1,-74.53776027,39.40475209,3238 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_2841_2,-74.48056776,39.53842732,408 EIGHTY SECOND STREET,MULLICA TWP,16,1973,1,RES1,3001 -0117_2851_1,-74.4993815,39.4111115,3300 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_2901_1,-74.65870091,39.3659543,420 BURDICK AVENUE,MULLICA TWP,16,1956,1,RES1,3001 -0117_2901_2,-74.63179968,39.42966625,432 CLARK DRIVE,MULLICA TWP,16,1955,1,RES3A,3001 -0117_2901_3,-74.60496158,39.32768283,434 CLARK DRIVE,MULLICA TWP,16,1970,1,RES1,3001 -0117_2901_4,-74.59375405,39.36603579,436 CLARK DRIVE,MULLICA TWP,16,1956,1,RES1,3001 -0117_2901_5,-74.8343305,39.6415745,438 CLARK DRIVE,MULLICA TWP,16,1956,1,RES1,3001 -0117_2901_6,-74.58926413,39.31987033,440 CLARK DRIVE,MULLICA TWP,16,1956,1,RES1,3001 -0117_2901_7,-74.95691268,39.51230025,442 CLARK DRIVE,MULLICA TWP,16,1956,1,RES1,3001 -0117_2902_1,-74.918346,39.478151,435 CLARK DRIVE,MULLICA TWP,16,1954,1,RES1,3001 -0117_2902_10,-74.7990707,39.65065206,3411 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_2902_11,-74.444955,39.373169,3415 MOSS MILL ROAD,MULLICA TWP,16,1958,1,RES1,3001 -0117_2902_12,-74.59266343,39.34347365,3421 MOSS MILL ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_2902_2,-74.501851,39.3291185,428 BURDICK AVENUE,MULLICA TWP,16,1958,1,RES1,3001 -0117_2902_3,-74.950973,39.518645,432 BURDICK AVENUE,MULLICA TWP,16,1958,1,RES1,3001 -0117_2902_4,-74.39839565,39.38792543,439 CLARK DRIVE,MULLICA TWP,16,1957,1,RES1,3001 -0117_2902_5,-74.872298,39.604227,436 BURDICK AVENUE,MULLICA TWP,16,1955,1,RES1,3004 -0117_2902_6,-74.587134,39.4127825,441 CLARK DRIVE,MULLICA TWP,16,1956,1,GOV1,3004 -0117_2902_7,-74.43343427,39.36955033,438 BURDICK AVENUE,MULLICA TWP,15,1956,1,RES1,3001 -0117_2902_8,-74.60633712,39.42063181,443 CLARK DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_2902_9,-74.44820085,39.35485499,440 BURDICK AVENUE,MULLICA TWP,15,1954,1,RES1,3001 -0117_2903_10,-74.5091715,39.400388,419 CLARK DRIVE,MULLICA TWP,16,1950,1,RES1,3001 -0117_2903_11,-74.7655,39.637559,429 BURDICK AVENUE,MULLICA TWP,16,1966,1,RES1,3001 -0117_2903_12,-74.5037375,39.4327225,433 BURDICK AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_2903_13,-74.572662,39.3569195,435 BURDICK AVENUE,MULLICA TWP,16,1957,1,GOV1,3004 -0117_2903_15,-74.63792953,39.41137165,439 BURDICK AVENUE,MULLICA TWP,16,1964,1,RES1,3001 -0117_2903_16,-74.52034583,39.32011702,441 BURDICK AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_2903_17,-74.615323,39.395903,443 BURDICK AVENUE,MULLICA TWP,16,1958,1,RES1,3001 -0117_2903_3,-74.38013568,39.41389607,407 BURDICK AVENUE,MULLICA TWP,16,1944,1,RES1,3001 -0117_2903_4,-74.504017,39.4319385,412 CLARK DRIVE,MULLICA TWP,16,1962,1,RES1,3001 -0117_2903_5,-74.57427756,39.41005966,416 CLARK DRIVE,MULLICA TWP,16,1966,1,RES1,3001 -0117_2903_6,-74.45415926,39.37196864,422 CLARK DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_2903_7,-74.664927,39.4602725,410 CLARK DRIVE,MULLICA TWP,16,1958,1,RES1,3001 -0117_2903_8,-74.36642534,39.40882649,411 CLARK DRIVE,MULLICA TWP,16,1957,1,RES1,3001 -0117_2903_9,-74.50149793,39.45762735,415 CLARK DRIVE,MULLICA TWP,16,1960,1,COM3,3004 -0117_2914_2,-74.482602,39.434343,3730 WHITE HORSE PIKE,MULLICA TWP,16,1982,1,RES1,3001 -0117_2915_2,-74.6155223,39.39556893,3750 WHITE HORSE PIKE,MULLICA TWP,,1902,1,RES1,3001 -0117_2917_3,-74.82614433,39.393236,3816 WHITE HORSE PIKE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3017_1,-74.37337407,39.40091868,3838 WHITE HORSE PIKE,MULLICA TWP,16,1947,1,COM1,3004 -0117_3025_1,-74.95007913,39.49235292,3954 PATRICIA COURT,MULLICA TWP,16,1965,1,RES1,3001 -0117_3025_10,-74.948249,39.524702,3918 PATRICIA COURT,MULLICA TWP,16,1960,1,RES1,3001 -0117_3025_2,-74.60121519,39.37977087,3950 PATRICIA COURT,MULLICA TWP,16,1964,1,RES1,3001 -0117_3025_3,-74.5887905,39.3715885,3946 PATRICIA COURT,MULLICA TWP,16,1964,1,GOV1,3004 -0117_3025_4,-74.87124563,39.49235645,3942 PATRICIA COURT,MULLICA TWP,16,1964,1,RES1,3001 -0117_3025_5,-74.796156,39.364683,3938 PATRICIA COURT,MULLICA TWP,16,1964,1,RES1,3001 -0117_3025_6,-74.66188016,39.51377885,3934 PATRICIA COURT,MULLICA TWP,16,1960,1,RES1,3001 -0117_3025_7,-74.53465264,39.41514003,3930 PATRICIA COURT,MULLICA TWP,16,1964,1,RES1,3001 -0117_3025_8,-74.38288488,39.39536603,3926 PATRICIA COURT,MULLICA TWP,16,1964,1,RES1,3004 -0117_3025_9,-74.54936374,39.3736107,3922 PATRICIA COURT,MULLICA TWP,16,1964,1,RES1,3001 -0117_3026_1,-74.57015599,39.54559406,512 ARROW ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3026_10,-74.643219,39.3704575,4064 ADAMS CIRCLE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3026_11,-74.49998615,39.43269232,4062 ADAMS CIRCLE,MULLICA TWP,16,1959,1,RES1,3004 -0117_3026_12,-74.9410025,39.49617066,434 WHARTON PARK BLVD,MULLICA TWP,16,1966,1,RES1,3001 -0117_3026_13,-74.3877725,39.3911295,432 WHARTON PARK BLVD,MULLICA TWP,16,1965,1,RES1,3001 -0117_3026_2,-74.56923797,39.36937819,508 ARROW ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_3026_3,-74.64859211,39.52131706,504 ARROW ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_3026_5,-74.6049145,39.331789,4080 ADAMS CIRCLE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3026_6,-74.535229,39.3805085,4076 ADAMS CIRCLE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3026_7,-74.43836932,39.36869154,4074 ADAMS CIRCLE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3026_8,-74.59229033,39.35930597,4070 ADAMS CIRCLE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3026_9,-74.74866591,39.45156079,4068 ADAMS CIRCLE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3027_1,-74.57327132,39.34329299,513 ARROW ROAD,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_10,-74.52664219,39.418669,4049 MOSS MILL ROAD,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_11,-74.4998142,39.4306728,4101 MOSS MILL ROAD,MULLICA TWP,16,1961,1,RES1,3001 -0117_3027_12,-74.78151589,39.54307988,4105 MOSS MILL ROAD,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_13,-74.59103656,39.32435128,4109 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3027_14,-74.63739617,39.34136201,4118 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3027_15,-74.56068302,39.35920782,4114 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_16,-74.55474629,39.40769834,4110 ADAMS CIRCLE,MULLICA TWP,16,1964,1,RES1,3001 -0117_3027_17,-74.73883286,39.46845827,4108 ADAMS CIRCLE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3027_18,-74.587537,39.427426,4104 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_19,-74.490598,39.49571,4102 ADAMS CIRCLE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3027_2,-74.631432,39.349389,4023 MOSS MILL ROAD,MULLICA TWP,16,1961,1,RES1,3001 -0117_3027_20,-74.5042175,39.409932,4100 ADAMS CIRCLE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3027_21,-74.82101342,39.61993025,4098 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_22,-74.630824,39.356217,4094 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_23,-74.51279594,39.48431532,4092 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3027_24,-74.57596827,39.36022296,4090 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_25,-74.570026,39.3476615,4088 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3027_3,-74.5683645,39.351406,4027 MOSS MILL ROAD,MULLICA TWP,16,1961,1,RES1,3001 -0117_3027_4,-74.58933267,39.42993083,4031 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3027_5,-74.609593,39.392267,4033 MOSS MILL ROAD,MULLICA TWP,16,1966,1,RES1,3001 -0117_3027_6,-74.6539385,39.3538525,4037 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3027_7,-74.50982672,39.41052787,4039 MOSS MILL ROAD,MULLICA TWP,16,1962,1,RES3A,3001 -0117_3027_8,-74.50587743,39.34102326,4043 MOSS MILL ROAD,MULLICA TWP,16,1966,1,RES1,3001 -0117_3027_9,-74.66216791,39.39672323,4045 MOSS MILL ROAD,MULLICA TWP,16,1962,1,GOV1,3004 -0117_3028_10,-74.615793,39.381784,4142 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3028_11,-74.5327925,39.3903515,4138 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3028_12,-74.489089,39.3386715,4132 ADAMS CIRCLE,MULLICA TWP,16,1964,1,GOV1,3004 -0117_3028_13,-74.8438339,39.58674909,4130 ADAMS CIRCLE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3028_14,-74.3664755,39.4106055,4128 ADAMS CIRCLE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3028_15,-74.64913767,39.54719204,4124 ADAMS CIRCLE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3028_2,-74.50495217,39.3281485,4123 MOSS MILL ROAD,MULLICA TWP,16,1962,1,RES1,3001 -0117_3028_3,-74.58780016,39.42505126,4127 MOSS MILL ROAD,MULLICA TWP,16,1997,1,RES1,3001 -0117_3028_4,-74.3548198,39.41432319,4131 MOSS MILL ROAD,MULLICA TWP,16,1966,1,GOV1,3004 -0117_3028_5,-74.56941949,39.3460757,4137 MOSS MILL ROAD,MULLICA TWP,16,1962,1,RES1,3001 -0117_3028_6,-74.5396975,39.3818285,4143 MOSS MILL ROAD,MULLICA TWP,16,1966,1,RES1,3001 -0117_3028_8,-74.819544,39.3866485,4155 MOSS MILL ROAD,MULLICA TWP,16,1954,1,RES1,3001 -0117_3028_9,-74.51917611,39.32260505,4146 ADAMS CIRCLE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3029_1,-74.86831851,39.57798827,440 WHARTON PARK BLVD,MULLICA TWP,16,1955,1,RES1,3001 -0117_3029_10,-74.593533,39.31238283,4111 ANNA DRIVE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3029_11,-74.65541322,39.36782319,4115 ANNA DRIVE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3029_12,-74.55911985,39.39761417,448 WHARTON PARK BLVD.,MULLICA TWP,16,1960,1,RES1,3001 -0117_3029_13,-74.60314783,39.41709319,444 WHARTON PARK BLVD,MULLICA TWP,16,1955,1,RES1,3001 -0117_3029_2,-74.600209,39.415517,4067 ADAMS CIRCLE,MULLICA TWP,16,1955,1,RES1,3001 -0117_3029_3,-74.6235985,39.514414,4071 ADAMS CIRCLE,MULLICA TWP,16,1955,1,RES1,3001 -0117_3029_4,-74.62659955,39.43408408,4075 ADAMS CIRCLE,MULLICA TWP,16,2002,1,RES1,3001 -0117_3029_5,-74.792771,39.639675,4077 ADAMS CIRCLE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3029_6,-74.52414646,39.39653183,4081 ADAMS CIRCLE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3029_7,-74.4928245,39.4269785,4085 ADAMS CIRCLE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3029_8,-74.60038317,39.32182606,4089 ADAMS CIRCLE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3029_9,-74.59124479,39.3793484,4107 ANNA DRIVE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3030_1,-74.6628445,39.443806,4100 ANNA DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_10,-74.617858,39.4315295,522 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_11,-74.5724725,39.429435,518 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_12,-74.55410132,39.36980549,516 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_13,-74.50270131,39.41332096,512 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_14,-74.468925,39.3454865,510 WHARTON PARK BLVD,MULLICA TWP,16,1961,1,RES1,3001 -0117_3030_15,-74.52249014,39.3988131,506 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_16,-74.85506097,39.43699115,500 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_17,-74.477255,39.341075,4108 ANNA DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_18,-74.65049042,39.53262265,4104 ANNA DRIVE,MULLICA TWP,16,1962,1,RES1,3001 -0117_3030_2,-74.700434,39.4443795,4101 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_3,-74.36702411,39.42263156,4103 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_4,-74.6394235,39.4358155,4105 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_5,-74.56268639,39.36043077,4107 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3030_6,-74.50225093,39.41876332,4111 ADAMS CIRCLE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3030_7,-74.60211656,39.38855304,4115 ADAMS CIRCLE,MULLICA TWP,16,1964,1,RES1,3001 -0117_3030_8,-74.58674283,39.32177498,4119 ADAMS CIRCLE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3030_9,-74.58248303,39.42363984,524 WHARTON PARK BLVD,MULLICA TWP,16,1962,1,RES1,3001 -0117_3031_1,-74.55292479,39.47783897,4125 ADAMS CIRCLE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3031_15,-74.46518517,39.34746899,534 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3031_16,-74.482294,39.340327,530 WHARTON PARK BLVD,MULLICA TWP,16,1961,1,RES1,3001 -0117_3031_2,-74.3703195,39.404483,4129 ADAMS CIRCLE,MULLICA TWP,16,1966,1,RES1,3001 -0117_3031_3,-74.61622087,39.50659064,4131 ADAMS CIRCLE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3031_5,-74.8111325,39.633922,4139 ADAMS CIRCLE,MULLICA TWP,16,1979,1,RES1,3001 -0117_3033_1,-74.570664,39.414979,501 WHARTON PARK BLVD,MULLICA TWP,16,1963,1,RES1,3001 -0117_3033_10,-74.50429835,39.32691234,531 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_11,-74.51253811,39.3307507,535 WHARTON PARK BLVD,MULLICA TWP,16,1965,1,RES1,3001 -0117_3033_12,-74.888328,39.56333733,537 WHARTON PARK BLVD,MULLICA TWP,16,1965,1,RES1,3001 -0117_3033_19,-74.40954911,39.38199426,4156 ANNA DRIVE,MULLICA TWP,16,1957,1,RES1,3001 -0117_3033_2,-74.52537752,39.39815332,505 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_20,-74.58396617,39.36294495,4152 ANNA DRIVE,MULLICA TWP,16,1957,1,RES1,3001 -0117_3033_21,-74.619335,39.390024,4148 ANNA DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_22,-74.489449,39.430891,4146 ANNA DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_23,-74.5452295,39.3862755,4144 ANNA DRIVE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3033_24,-74.5273125,39.399595,4142 ANNA DRIVE,MULLICA TWP,16,1967,1,RES1,3001 -0117_3033_25,-74.54317,39.4607255,4138 ANNA DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_26,-74.443975,39.3709045,4136 ANNA DRIVE,MULLICA TWP,16,1961,1,RES1,3001 -0117_3033_27,-74.727271,39.4595135,4134 ANNA DRIVE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3033_28,-74.51442546,39.40306892,4130 ANNA DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_29,-74.55411049,39.4645861,4126 ANNA DRIVE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3033_3,-74.541398,39.5350325,509 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_4,-74.49917612,39.33087018,513 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_5,-74.55262153,39.37829283,517 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_6,-74.523433,39.3185515,519 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_7,-74.48457585,39.33867858,523 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_8,-74.6854665,39.554461,525 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3033_9,-74.4840395,39.3543565,529 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3034_1,-74.93626552,39.49618627,449 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3034_10,-74.63557265,39.41879378,4025 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3034_11,-74.8044355,39.6248475,4029 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3034_12,-74.4998815,39.3354115,4031 ADAMS CIRCLE,MULLICA TWP,,0,1,RES1,3001 -0117_3034_13,-74.53477685,39.38567537,4035 ADAMS CIRCLE,MULLICA TWP,16,1968,1,RES1,3001 -0117_3034_14,-74.50259079,39.41823845,4037 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3034_15,-74.48094983,39.35131254,4041 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3034_16,-74.61372821,39.37264194,4045 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3034_17,-74.6671195,39.561456,4049 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3034_18,-74.711175,39.572688,439 WHARTON PARK BLVD,MULLICA TWP,16,1964,1,RES1,3001 -0117_3034_19,-74.80246484,39.63514852,445 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3034_2,-74.6050345,39.328906,4125 ANNA DRIVE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3034_3,-74.59731196,39.41013368,4127 ANNA DRIVE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3034_4,-74.39168752,39.38757188,4129 ANNA DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3034_5,-74.56891725,39.34987496,4131 ANNA DRIVE,MULLICA TWP,16,1992,1,RES1,3001 -0117_3034_6,-74.58998219,39.4191506,4135 ANNA DRIVE,MULLICA TWP,16,1991,1,RES1,3001 -0117_3034_7,-74.7508435,39.41938,4137 ANNA DRIVE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3034_8,-74.50570578,39.33960634,430 ARCH LANE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3034_9,-74.4064618,39.3773819,4019 ADAMS CIRCLE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3035_1,-74.5240215,39.3974105,4145 ANNA DRIVE,MULLICA TWP,16,1957,1,RES1,3001 -0117_3035_10,-74.7821235,39.637342,4011 ADAMS CIRCLE,MULLICA TWP,16,1964,1,RES1,3001 -0117_3035_11,-74.491489,39.4296485,4013 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3035_12,-74.53841,39.469025,431 ARCH LANE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3035_2,-74.822611,39.629879,4149 ANNA DRIVE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3035_3,-74.8290165,39.464626,4153 ANNA DRIVE,MULLICA TWP,16,1963,1,RES3A,3001 -0117_3035_4,-74.59885279,39.36270203,4157 ANNA DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3035_5,-74.60110815,39.39057221,4161 ANNA DRIVE,MULLICA TWP,16,1964,1,RES1,3001 -0117_3035_7,-74.71866415,39.48034698,4001 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3035_8,-74.54553679,39.37874613,4005 ADAMS CIRCLE,MULLICA TWP,16,1950,1,RES1,3001 -0117_3035_9,-74.55792922,39.39803234,4007 ADAMS CIRCLE,MULLICA TWP,16,1964,1,RES1,3001 -0117_3036_1,-74.42903213,39.37130689,4012 MULLICA COURT,MULLICA TWP,16,1955,1,RES1,3001 -0117_3036_10,-74.9505188,39.49148628,433 WHARTON PARK BLVD,MULLICA TWP,16,1963,1,RES1,3001 -0117_3036_11,-74.5161215,39.3244345,4048 ADAMS CIRCLE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3036_12,-74.5432224,39.3919293,4046 ADAMS CIRCLE,MULLICA TWP,17,1956,1,RES1,3001 -0117_3036_13,-74.4459275,39.371923,4042 ADAMS CIRCLE,MULLICA TWP,16,1966,1,RES1,3001 -0117_3036_14,-74.422248,39.3728295,4040 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3036_15,-74.64605235,39.41265741,4036 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3036_16,-74.51818915,39.44871896,4034 ADAMS CIRCLE,MULLICA TWP,16,1956,1,RES1,3001 -0117_3036_17,-74.719226,39.4413775,4030 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3036_18,-74.60560329,39.5926934,4028 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3036_19,-74.50932389,39.32344934,4024 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3036_2,-74.5184045,39.400042,4016 MULLICA COURT,MULLICA TWP,16,1960,1,RES1,3001 -0117_3036_20,-74.7643581,39.63638133,4022 ADAMS CIRCLE,MULLICA TWP,16,1960,1,GOV1,3004 -0117_3036_21,-74.54732371,39.46825503,4018 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3036_3,-74.51598333,39.40197597,4020 MULLICA COURT,MULLICA TWP,16,1952,1,RES1,3001 -0117_3036_4,-74.6487398,39.40118745,4024 MULLICA COURT,MULLICA TWP,16,1952,1,RES1,3001 -0117_3036_5,-74.60127622,39.4970392,4028 MULLICA COURT,MULLICA TWP,16,1952,1,RES1,3001 -0117_3036_6,-74.4458732,39.37453503,4032 MULLICA COURT,MULLICA TWP,16,1952,1,RES1,3001 -0117_3036_8,-74.60552584,39.32588671,421 WHARTON PARK BLVD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3036_9,-74.3902065,39.388825,427 WHARTON PARK BLVD,MULLICA TWP,16,1963,1,RES1,3001 -0117_3037_1,-74.50630226,39.3281365,4012 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3037_2,-74.56103784,39.36108122,4010 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3037_3,-74.492259,39.432542,4006 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3004 -0117_3037_4,-74.4559625,39.35314,4004 ADAMS CIRCLE,MULLICA TWP,16,1963,1,RES1,3001 -0117_3037_5,-74.79587596,39.63915966,4000 ADAMS CIRCLE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3038_2,-74.5861965,39.4111245,4124 WHITE HORSE PIKE,MULLICA TWP,,1960,1,RES1,3001 -0117_3038_3,-74.52247383,39.39642723,4200 WHITE HORSE PIKE,MULLICA TWP,16,1932,1,RES1,3001 -0117_3040_2,-74.5885455,39.3293005,416 POPLAR STREET,MULLICA TWP,16,1930,1,RES1,3001 -0117_3040_3,-74.60050984,39.38771568,408 POPLAR STREET,MULLICA TWP,16,1932,1,RES1,3001 -0117_3040_4,-74.509507,39.323666,4216 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_3127_4,-74.539684,39.3888825,704 SYKES AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3127_6,-74.684199,39.4418855,701 POPLAR STREET,MULLICA TWP,16,1960,1,RES1,3001 -0117_3127_7,-74.4513595,39.4889335,700 SYKES AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3127_9,-74.53394777,39.38539522,4304 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3133_1,-74.8085385,39.636447,4213 MOSS MILL ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_3206_3,-74.52997221,39.5318834,430 LOCUST STREET,MULLICA TWP,16,1972,1,RES1,3001 -0117_3206_6,-74.72221879,39.58701883,446 LOCUST STREET,MULLICA TWP,16,1970,1,RES1,3001 -0117_3207_2,-74.93618863,39.50306271,500 LOCUST STREET,MULLICA TWP,,0,1,RES1,3001 -0117_3207_6,-74.53219799,39.38608467,506 LOCUST STREET,MULLICA TWP,16,1954,1,RES1,3001 -0117_3208_1,-74.62283129,39.37999097,4414 ABSECON ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_3208_10,-74.81572333,39.63416696,4417 MOSS MILL ROAD,MULLICA TWP,16,1986,1,RES1,3001 -0117_3208_12,-74.87996298,39.48465418,4423 MOSS MILL ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_3208_2,-74.80148392,39.37270734,608 LOCUST STREET,MULLICA TWP,16,1959,1,RES1,3001 -0117_3208_3,-74.807833,39.641063,600 LOCUST STREET,MULLICA TWP,16,1950,1,RES1,3001 -0117_3208_5,-74.53880283,39.38451151,610 LOCUST STREET,MULLICA TWP,16,2001,1,RES1,3001 -0117_3208_8,-74.48246852,39.43116568,700 LOCUST STREET,MULLICA TWP,16,1982,1,RES1,3001 -0117_3301_1,-74.49557962,39.32878193,4502 ANDERSON AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_3301_10,-74.63428496,39.45489646,448 ELM STREET,MULLICA TWP,,0,1,RES1,3001 -0117_3301_15,-74.80578484,39.64249352,500 ELM STREET,MULLICA TWP,16,1978,2,RES1,3001 -0117_3301_2,-74.6930965,39.561228,4504 ANDERSON AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_3301_3,-74.519419,39.321457,4510 ANDERSON AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_3301_4,-74.5154225,39.32713,430 ELM STREET,MULLICA TWP,16,1975,1,RES1,3001 -0117_3301_5,-74.7177815,39.442284,441 LOCUST STREET,MULLICA TWP,16,1975,1,RES1,3001 -0117_3301_6,-74.49517112,39.32949667,449 LOCUST STREET,MULLICA TWP,16,1975,1,RES1,3001 -0117_3301_7,-74.63971535,39.53414105,436 ELM STREET,MULLICA TWP,16,1958,1,GOV1,3004 -0117_3301_8,-74.45792717,39.349402,440 ELM STREET,MULLICA TWP,16,1955,1,RES1,3001 -0117_3301_9,-74.51729704,39.39951135,444 ELM STREET,MULLICA TWP,16,1975,1,RES1,3001 -0117_3302_1,-74.6932243,39.44725666,4500 ABSECON ROAD,MULLICA TWP,16,1982,1,RES1,3001 -0117_3302_10,-74.38652992,39.39640727,620 ELM STREET,MULLICA TWP,16,1930,1,RES1,3001 -0117_3302_11,-74.59718436,39.36180159,4501 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_3302_12,-74.8760375,39.604157,4505 MOSS MILL ROAD,MULLICA TWP,16,1975,1,RES1,3001 -0117_3302_7,-74.9319025,39.496082,607 LOCUST STREET,MULLICA TWP,16,1963,1,RES1,3001 -0117_3303_1,-74.502973,39.3328455,431 ELM STREET,MULLICA TWP,15,1940,1,RES1,3001 -0117_3303_12,-74.36817783,39.40762601,630 ELWOOD ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_3303_13,-74.81700402,39.53294374,700 ELWOOD ROAD,MULLICA TWP,16,2013,1,RES1,3001 -0117_3303_3,-74.51233361,39.32991816,435 ELM STREET,MULLICA TWP,16,1965,1,RES1,3001 -0117_3303_4,-74.37105647,39.41533853,4534 ANDERSON AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_3303_5,-74.62799537,39.391884,430 ELWOOD ROAD,MULLICA TWP,15,1898,1,RES1,3001 -0117_3303_6,-74.59980617,39.49756134,434 ELWOOD ROAD,MULLICA TWP,16,1880,1,RES1,3001 -0117_3303_7,-74.851956,39.4390035,440 ELWOOD ROAD,MULLICA TWP,14,1960,1,RES1,3001 -0117_3303_8,-74.835418,39.4283575,446 ELWOOD ROAD,MULLICA TWP,16,1985,1,RES1,3001 -0117_3401_2,-74.79952273,39.43242057,411 POPLAR STREET,MULLICA TWP,16,1934,1,RES1,3001 -0117_3401_3,-74.42397067,39.36720438,4300 WHITE HORSE PIKE,MULLICA TWP,15,1935,1,RES1,3001 -0117_3401_4,-74.3977325,39.3884345,4308 WHITE HORSE PIKE,MULLICA TWP,16,1960,1,RES1,3001 -0117_3401_5,-74.49509328,39.52112847,4318 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_3401_6,-74.48777846,39.45575674,4310 WHITE HORSE PIKE,MULLICA TWP,16,1939,1,RES1,3001 -0117_3402_1,-74.51364533,39.32559651,4326 WHITE HORSE PIKE,MULLICA TWP,14,1930,1,RES1,3001 -0117_3403_1,-74.6529195,39.4061485,4416 WHITE HORSE PIKE,MULLICA TWP,15,1905,1,RES1,3001 -0117_3404_10,-74.36266435,39.41706335,4520 WHITE HORSE PIKE,MULLICA TWP,15,1950,2,RES1,3001 -0117_3404_11,-74.6297655,39.428345,410 ELM STREET,MULLICA TWP,15,1960,1,RES1,3001 -0117_3404_2,-74.8914285,39.499412,4505 ANDERSON AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_3404_3,-74.59537135,39.40299051,4507 ANDERSON AVENUE,MULLICA TWP,16,1935,1,RES1,3001 -0117_3404_4,-74.42246034,39.37311483,417 LOCUST STREET,MULLICA TWP,16,1951,1,GOV1,3004 -0117_3404_5,-74.624859,39.363003,407 LOCUST STREET,MULLICA TWP,16,1980,1,RES1,3001 -0117_3404_6,-74.67076039,39.36505073,4500 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_3404_8,-74.5572565,39.365657,418 ELM STREET,MULLICA TWP,16,1969,1,RES1,3001 -0117_3405_1,-74.60899305,39.44179881,425 ELM STREET,MULLICA TWP,16,1930,1,RES1,3001 -0117_3405_2,-74.882014,39.4474555,4531 ANDERSON AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3405_3,-74.6862375,39.3563645,423 ELM STREET,MULLICA TWP,16,1920,1,RES1,3001 -0117_3405_7,-74.79138038,39.6321937,404 ELWOOD ROAD,MULLICA TWP,,1950,1,RES1,3001 -0117_3406_2,-74.5171115,39.3247355,4307 WHITE HORSE PIKE,MULLICA TWP,16,1930,1,RES1,3001 -0117_3407_2,-74.36958082,39.40757376,4401 WHITE HORSE PIKE,MULLICA TWP,,0,1,GOV1,3004 -0117_3408_1,-74.58291196,39.34230622,4413 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_3408_2,-74.39465962,39.38830099,4423 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_3408_3,-74.82368928,39.49389456,346 LOCUST STREET,MULLICA TWP,16,1978,1,RES1,3001 -0117_3408_4,-74.4957585,39.336952,344 LOCUST STREET,MULLICA TWP,15,1935,1,RES1,3001 -0117_3408_5,-74.3722465,39.4009035,334 LOCUST STREET,MULLICA TWP,16,1890,1,RES1,3001 -0117_3409_1,-74.35948845,39.41611116,4501 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_3409_2,-74.63157053,39.34739359,349 LOCUST STREET,MULLICA TWP,,0,1,RES1,3001 -0117_3409_3,-74.64304659,39.53028326,345 LOCUST STREET,MULLICA TWP,16,1954,1,RES1,3001 -0117_3409_4,-74.49274585,39.34168998,341 LOCUST STREET,MULLICA TWP,16,1890,1,GOV1,3004 -0117_3409_6,-74.54808009,39.38737664,4506 ATLANTIC AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_3409_8,-74.540639,39.39092,360 ELM STREET,MULLICA TWP,16,1975,1,RES1,3001 -0117_3409_9,-74.883487,39.5977285,334 ELM STREET,MULLICA TWP,16,1935,1,RES1,3001 -0117_3410_12,-74.5034825,39.457032,350 ELWOOD ROAD,MULLICA TWP,16,1944,1,RES1,3001 -0117_3410_14,-74.5144955,39.4534715,340 ELWOOD ROAD,MULLICA TWP,15,1950,1,GOV1,3004 -0117_3410_15,-74.647279,39.328096,4530 ATLANTIC AVENUE,MULLICA TWP,16,1886,1,RES1,3001 -0117_3410_2,-74.429262,39.36023,353 ELM STREET,MULLICA TWP,15,1960,1,GOV1,3004 -0117_3410_4,-74.56308717,39.38838297,4531 WHITE HORSE PIKE,MULLICA TWP,16,1940,1,RES1,3001 -0117_3410_5,-74.48654545,39.43451484,351 ELM STREET,MULLICA TWP,16,1940,1,RES1,3001 -0117_3410_6,-74.54519382,39.39841749,349 ELM STREET,MULLICA TWP,15,1950,1,RES1,3001 -0117_3410_7,-74.5145752,39.32624765,345 ELM STREET,MULLICA TWP,16,1985,1,RES1,3001 -0117_3410_8,-74.9551865,39.530043,1622 ATLANTIC AVENUE,MULLICA TWP,16,1929,1,COM4,3004 -0117_3502_1,-74.55521197,39.36630435,3033 WHITE HORSE PIKE,MULLICA TWP,15,1960,2,RES1,3001 -0117_3511_1,-74.536705,39.3868515,3000 READING AVENUE,MULLICA TWP,16,1952,1,RES1,3001 -0117_3511_11,-74.79180567,39.64396252,3140 READING AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_3511_2,-74.59208902,39.3126825,3016 READING AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_3511_3,-74.63516008,39.34836914,3030 READING AVENUE,MULLICA TWP,16,1890,1,RES1,3001 -0117_3511_5,-74.5864375,39.331735,3100 READING AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_3511_6,-74.81177391,39.63324116,3106 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3512_2,-74.73656338,39.72038386,3204 READING AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_3512_4,-74.51088026,39.33384555,3210 READING AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_3512_9.01,-74.60981597,39.34840255,3316 READING AVENUE,MULLICA TWP,16,1992,1,RES1,3001 -0117_3512_9.02,-74.536018,39.386589,3330 READING AVENUE,MULLICA TWP,16,1992,1,RES1,3001 -0117_3513_10,-74.37072971,39.41108343,3141 READING AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_3513_12,-74.56653019,39.47898946,3149 READING AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_3513_16,-74.65564064,39.53398138,3000 FIRST ROAD,MULLICA TWP,16,1959,1,RES1,3001 -0117_3513_17,-74.825136,39.3655285,3030 FIRST ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_3513_2,-74.456755,39.3494445,3017 READING AVENUE,MULLICA TWP,16,1991,1,RES1,3001 -0117_3513_3,-74.69875825,39.49585594,3031 READING AVENUE,MULLICA TWP,,1960,1,RES1,3001 -0117_3513_5,-74.808756,39.35262717,3101 READING AVENUE,MULLICA TWP,16,1981,1,GOV1,3004 -0117_3513_6,-74.51018413,39.43723734,3115 READING AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_3513_8,-74.62919957,39.36400827,3133 READING AVENUE,MULLICA TWP,16,1979,1,RES1,3001 -0117_3514_11,-74.90988018,39.49408185,3212 FIRST ROAD,MULLICA TWP,,0,1,GOV1,3004 -0117_3514_3,-74.46871306,39.54184385,3209 READING AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_3514_4,-74.53996136,39.4672247,3207 READING AVENUE,MULLICA TWP,15,1990,1,RES1,3001 -0117_3514_6,-74.3909765,39.38889217,3227 READING AVENUE,MULLICA TWP,16,1984,1,RES1,3001 -0117_3601_1,-74.51982031,39.44290963,140 DACOSTA ROAD,MULLICA TWP,16,1925,1,RES1,3001 -0117_3601_3,-74.61119165,39.34116403,125 SEVENTH STREET,MULLICA TWP,16,1975,1,GOV1,3004 -0117_3602_11,-74.4969765,39.3375765,COUNTRY LANE,MULLICA TWP,,0,1,RES1,3001 -0117_3602_2,-74.47134435,39.34494635,3019 FIRST ROAD,MULLICA TWP,16,1894,1,RES1,3001 -0117_3602_3,-74.944269,39.510694,145 DACOSTA ROAD,MULLICA TWP,16,1951,1,COM1,3004 -0117_3602_4,-74.55419196,39.39048796,113 DACOSTA ROAD,MULLICA TWP,16,1890,1,RES1,3001 -0117_3602_5,-74.8102255,39.616413,119 DACOSTA ROAD,MULLICA TWP,16,1958,1,RES1,3001 -0117_3602_7,-74.54078386,39.38264493,109 DACOSTA ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_3602_8,-74.59906532,39.34191674,101 DACOSTA ROAD,MULLICA TWP,,1940,1,RES1,3001 -0117_3602_9,-74.56842474,39.37289003,7670 WEYMOUTH ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_3702_1,-74.62873544,39.42672719,3417 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_3704_1,-74.46640933,39.34689,3437 WHITE HORSE PIKE,MULLICA TWP,16,1968,1,RES1,3001 -0117_3719_1,-74.89860375,39.48035548,3400 READING AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_3719_10,-74.70296,39.3517375,3506 READING AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_3719_11,-74.83402658,39.64088262,3512 READING AVENUE,MULLICA TWP,15,1950,1,RES1,3001 -0117_3719_12,-74.93788633,39.527809,3518 READING AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_3719_13,-74.4590891,39.35007131,3524 READING AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_3719_3,-74.600732,39.4097755,3426 READING AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_3719_8,-74.75510245,39.42909123,3456 READING AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_3720_10,-74.56072044,39.37075394,3644 READING AVENUE,MULLICA TWP,16,1983,1,RES1,3001 -0117_3720_12,-74.4912165,39.43013483,3700 READING AVENUE,MULLICA TWP,16,1985,1,RES3A,3001 -0117_3720_13,-74.73323584,39.46385867,3704 READING AVENUE,MULLICA TWP,16,1983,1,RES1,3001 -0117_3720_14,-74.58602258,39.32910917,3708 READING AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_3720_16,-74.57591394,39.42935732,3716 READING AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_3720_17,-74.81111246,39.63053078,3720 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3720_2,-74.554987,39.3595825,3606 READING AVENUE,MULLICA TWP,16,1976,1,COM1,3004 -0117_3720_22,-74.5105485,39.401369,3740 READING AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_3720_5,-74.5339998,39.30624293,3624 READING AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_3720_6,-74.4075865,39.3820285,3628 READING AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_3720_8,-74.59272199,39.35180577,3636 READING AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_3720_9,-74.951134,39.534545,3640 READING AVENUE,MULLICA TWP,16,1978,1,IND1,3002 -0117_3721_1,-74.56087454,39.37260334,3401 READING AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_3721_3,-74.551564,39.382204,3427 READING AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_3721_5,-74.63095944,39.40814577,3453 READING AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_3722_10,-74.60762869,39.38049402,3649 READING AVENUE,MULLICA TWP,16,1982,1,COM1,3004 -0117_3722_11,-74.50398774,39.41815227,3701 READING AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_3722_12,-74.5204485,39.321711,3705 READING AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_3722_13,-74.60220562,39.32711746,3709 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3722_14,-74.596159,39.366181,3713 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3722_15,-74.947725,39.517648,3717 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3722_16,-74.65498972,39.41881867,3721 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3722_19,-74.875157,39.590776,3733 READING AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_3722_3,-74.6437155,39.3686275,3613 READING AVENUE,MULLICA TWP,16,1994,1,RES1,3001 -0117_3722_5,-74.57858719,39.36687044,3627 READING AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_3722_6,-74.39325,39.3941145,3631 READING AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_3722_7,-74.527373,39.545206,3635 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3722_8,-74.62498994,39.38070203,3639 READING AVENUE,MULLICA TWP,16,1978,1,COM1,3004 -0117_3722_9,-74.60846723,39.39339487,3643 READING AVENUE,MULLICA TWP,16,1982,1,RES1,3001 -0117_3910_1,-74.60574066,39.4910167,4013 WHITE HORSE PIKE,MULLICA TWP,15,1945,1,RES1,3001 -0117_3915_1,-74.7139363,39.47254941,4133 WHITE HORSE PIKE,MULLICA TWP,,0,1,RES1,3001 -0117_3917_2,-74.38028433,39.41844011,3800 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3917_6,-74.592474,39.3717585,3811 RAILROAD AVENUE,MULLICA TWP,16,2003,1,RES1,3001 -0117_3917_8,-74.50999103,39.40041318,3815 RAILROAD AVENUE,MULLICA TWP,16,1959,1,RES1,3001 -0117_3917_9,-74.49351342,39.33524318,3819 RAILROAD AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_3918_3,-74.54063216,39.38670498,3829 RAILROAD AVENUE,MULLICA TWP,16,1967,1,RES1,3001 -0117_3922_1.02,-74.54065917,39.38839508,4130 READING AVENUE,MULLICA TWP,16,1994,1,RES1,3001 -0117_3923_1,-74.5931009,39.42815859,3801 READING AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_3923_3,-74.686051,39.3934575,3803 READING AVENUE,MULLICA TWP,16,1973,1,RES1,3001 -0117_3923_8,-74.80606566,39.55341067,3823 READING AVENUE,MULLICA TWP,15,1978,1,RES1,3001 -0117_3924_1,-74.36253113,39.41546426,4001 READING AVENUE,MULLICA TWP,,1997,1,RES1,3001 -0117_406_11,-74.48531819,39.34746794,3500 TOMOCOMO DRIVE,MULLICA TWP,16,1960,1,RES3A,3001 -0117_406_12,-74.48352646,39.34781082,3502 TOMOCOMO DRIVE,MULLICA TWP,16,1957,1,RES1,3001 -0117_406_13,-74.56144591,39.41037579,3504 TOMOCOMO DRIVE,MULLICA TWP,16,1997,1,RES1,3001 -0117_406_14,-74.596112,39.3569135,3506 TOMOCOMO DRIVE,MULLICA TWP,16,1968,1,RES1,3001 -0117_406_15,-74.5992095,39.317919,3508 TOMOCOMO DRIVE,MULLICA TWP,16,1957,1,RES1,3001 -0117_406_16,-74.65187478,39.3570676,3510 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_406_17,-74.95167334,39.53704253,3512 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_406_19,-74.59966096,39.31806078,3516 TOMOCOMO DRIVE,MULLICA TWP,16,1957,1,RES1,3001 -0117_406_2,-74.93991267,39.52299567,3408 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_406_4,-74.47353135,39.48260656,3414 TOMOCOMO DRIVE,MULLICA TWP,16,1956,1,RES1,3001 -0117_406_6,-74.3557055,39.41555967,3418 TOMOCOMO DRIVE,MULLICA TWP,16,1959,1,RES1,3001 -0117_406_7,-74.9562605,39.5122975,3420 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,GOV1,3004 -0117_406_8,-74.36530998,39.4130128,3422 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_406_9,-74.79261727,39.64455828,3424 TOMOCOMO DRIVE,MULLICA TWP,16,1957,1,GOV1,3004 -0117_407_10,-74.3592629,39.4144563,3429 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_407_11,-74.79413951,39.64141533,2418 S LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_407_12,-74.826123,39.376614,2416 S LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_407_14,-74.5049655,39.477957,3422 EAST LAKEVIEW DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_407_16,-74.57046701,39.34991267,3418 EAST LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_407_18,-74.654602,39.357539,3414 EAST LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_407_20,-74.55724929,39.46752595,3410 EAST LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_407_22,-74.502681,39.3311655,3406 EAST LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_407_23,-74.5117196,39.41885748,3404 E LAKEVIEW DR,MULLICA TWP,16,1955,1,RES1,3001 -0117_408_1,-74.5194995,39.3969815,3501 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_408_10,-74.604808,39.3684365,3508 RICHARDS AVENUE,MULLICA TWP,16,2009,1,RES1,3001 -0117_408_11,-74.56940716,39.34225949,3511 TOMOCOMO DRIVE,MULLICA TWP,16,1959,1,RES1,3001 -0117_408_14,-74.62447073,39.31293303,3512 RICHARDS AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_408_15,-74.3852427,39.39527383,3515 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_408_16,-74.368005,39.409766,3514 RICHARDS AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_408_2,-74.56475457,39.41419734,2417 S LAKEVIEW DR,MULLICA TWP,16,1958,1,RES3A,3001 -0117_408_22,-74.59209,39.4282795,3520 RICHARDS AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_408_24,-74.483897,39.3450195,RICHARDS AVENUE,MULLICA TWP,,0,1,RES1,3001 -0117_408_25,-74.480316,39.3468025,3524 RICHARDS AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_408_3,-74.53377216,39.38168811,3503 TOMOCOMO DRIVE,MULLICA TWP,16,1960,1,RES3A,3001 -0117_408_4,-74.51146709,39.40214033,3502 RICHARDS AVENUE,MULLICA TWP,16,1955,1,RES1,3001 -0117_408_5,-74.61067959,39.37299816,3505 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_408_6,-74.5265035,39.394251,3504 RICHARDS AVENUE,MULLICA TWP,16,1955,1,RES1,3001 -0117_408_7,-74.660719,39.632654,3507 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_408_8,-74.5381595,39.4591745,3506 RICHARDS AVENUE,MULLICA TWP,16,1992,1,RES1,3001 -0117_408_9,-74.63624234,39.36070278,3509 TOMOCOMO DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_409_11,-74.57947784,39.34301283,2622 RICHARDS AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_409_14,-74.62094518,39.3721056,2649 N LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_409_15,-74.574528,39.358162,3403 E LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_409_16,-74.6340765,39.3483395,3405 E LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_41109_3,-74.6021865,39.330069,4421 RAILROAD AVENUE,MULLICA TWP,16,1870,1,RES1,3001 -0117_41121_2,-74.5174365,39.409631,308 OAK STREET,MULLICA TWP,16,1890,1,RES1,3001 -0117_41121_3,-74.832195,39.3905335,315 LOCUST STREET,MULLICA TWP,15,1880,1,RES1,3001 -0117_41121_5,-74.50629266,39.33533108,4505 RAILROAD AVENUE,MULLICA TWP,15,1900,1,RES1,3001 -0117_41131_2,-74.45490545,39.48974015,4511 READING AVENUE,MULLICA TWP,15,1946,1,RES1,3001 -0117_41131_4,-74.83836235,39.47725781,4515 READING AVENUE,MULLICA TWP,16,1900,1,RES1,3001 -0117_41132_1,-74.51947825,39.40447465,4510 READING AVENUE,MULLICA TWP,,0,1,RES3A,3001 -0117_41133_1,-74.51167905,39.32534616,308-312 ELM ST,MULLICA TWP,,0,1,GOV1,3004 -0117_41133_2,-74.8093855,39.3794135,4511 RAILROAD AVENUE,MULLICA TWP,,1975,1,RES1,3001 -0117_41133_3,-74.63809359,39.34375215,314 ELM STREET,MULLICA TWP,16,1981,1,RES1,3001 -0117_41140_1,-74.55753194,39.43524794,220 WEYMOUTH ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_41141_1,-74.553032,39.3933225,247 ELM STREET,MULLICA TWP,16,1900,1,RES1,3001 -0117_41142_1,-74.52202717,39.31889096,253 ELM STREET,MULLICA TWP,15,1930,1,RES1,3001 -0117_41156_1,-74.972838,39.5083195,300 WEYMOUTH ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_412_10,-74.75040617,39.59666004,2608 NORTH LAKEVIEW DRIVE,MULLICA TWP,16,1959,1,RES1,3001 -0117_412_11,-74.797105,39.6338825,2610 N LAKEVIEW DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_412_12,-74.5769255,39.3380625,2612 N LAKEVIEW DR,MULLICA TWP,16,1955,1,RES1,3004 -0117_412_7,-74.67054519,39.34922609,2600 N LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_412_8,-74.9400911,39.49710541,2604 N LAKEVIEW DR,MULLICA TWP,16,1960,1,RES1,3001 -0117_412_9,-74.527771,39.394367,2606 N LAKEVIEW DRIVE,MULLICA TWP,16,1964,1,RES1,3001 -0117_413_1,-74.50255788,39.3384453,2601 N LAKEVIEW DR,MULLICA TWP,16,1955,1,RES1,3001 -0117_413_12,-74.57384247,39.35960952,3415 W LAKEVIEW DR,MULLICA TWP,16,1955,1,RES1,3001 -0117_413_2,-74.50230437,39.41041118,2605 NORTH LAKEVIEW DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_413_3,-74.52202692,39.31532934,2607 N LAKEVIEW DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_413_4,-74.88390425,39.46220938,2609 N LAKEVIEW DRIVE,MULLICA TWP,16,1952,1,RES1,3001 -0117_413_5,-74.63678176,39.3813876,2604 RICHARDS AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_413_6,-74.54210946,39.45692046,2606 RICHARDS AVENUE,MULLICA TWP,16,1959,1,RES1,3001 -0117_413_7,-74.636312,39.531592,3411 W LAKEVIEW DR,MULLICA TWP,16,1960,1,RES1,3001 -0117_413_9,-74.6137715,39.59609817,3413 W LAKEVIEW DR,MULLICA TWP,16,1955,1,RES1,3001 -0117_4158_1,-74.5223945,39.395506,253 CEDAR STREET,MULLICA TWP,16,1950,1,RES1,3001 -0117_4183_3,-74.56814555,39.35753357,4405 READING AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_4194_4,-74.5490685,39.368977,260 MULBERRY STREET,MULLICA TWP,16,1940,1,RES1,3001 -0117_4201_1,-74.81040032,39.53827635,2800 CYPRESS LANE,MULLICA TWP,16,1950,1,RES1,3001 -0117_4201_10,-74.47024136,39.34530485,2820 CYPRESS LANE,MULLICA TWP,16,1993,1,RES1,3001 -0117_4201_13,-74.904155,39.5046685,2820 MULLICA RIVER DRIVE,MULLICA TWP,16,1998,1,RES1,3001 -0117_4201_14,-74.48122932,39.33544104,2824 MULLICA RIVER DRIVE,MULLICA TWP,16,2014,1,RES1,3001 -0117_4201_15,-74.81555494,39.65306916,2826 MULLICA RIVER DRIVE,MULLICA TWP,15,1956,1,RES1,3001 -0117_4201_17,-74.62670048,39.60502465,2830 MULLICA RIVER DRIVE,MULLICA TWP,16,1995,1,RES1,3001 -0117_4201_18,-74.92523078,39.50191874,2832 MULLICA RIVER DRIVE,MULLICA TWP,16,1958,1,RES1,3001 -0117_4201_19,-74.60051248,39.3801025,2834 MULLICA RIVER DRIVE,MULLICA TWP,16,1958,1,RES3A,3001 -0117_4201_20,-74.85773321,39.44576191,2836 MULLICA RIVER DRIVE,MULLICA TWP,16,1955,1,RES1,3001 -0117_4201_21,-74.57512419,39.41002204,2840 MULLICA RIVER DRIVE,MULLICA TWP,16,1962,1,RES1,3001 -0117_4201_22,-74.64921705,39.4308388,2844 MULLICA RIVER DRIVE,MULLICA TWP,16,1960,1,RES1,3001 -0117_4201_23,-74.36741928,39.40955896,2848 MULLICA RIVER DRIVE,MULLICA TWP,17,1975,1,RES1,3001 -0117_4201_3,-74.66214,39.444811,2804 CYPRESS LANE,MULLICA TWP,16,1948,1,RES1,3001 -0117_4201_4,-74.79009633,39.36788403,2806 CYPRESS LANE,MULLICA TWP,16,1994,1,RES1,3001 -0117_4201_5,-74.42040816,39.37178401,2808 CYPRESS LANE,MULLICA TWP,16,1960,1,RES1,3001 -0117_4201_8,-74.46394899,39.35757768,2814 CYPRESS LANE,MULLICA TWP,16,1948,1,RES1,3001 -0117_4202_1,-74.650754,39.4110915,2849 MULLICA RIVER DRIVE,MULLICA TWP,17,2013,1,RES1,3001 -0117_4202_16,-74.52256432,39.39266898,2840 CEDAR LANE,MULLICA TWP,16,1978,1,RES1,3001 -0117_4202_2,-74.61412263,39.59632194,2845 MULLICA RIVER DRIVE,MULLICA TWP,16,1958,1,RES1,3001 -0117_4202_3,-74.46266606,39.35242518,2843 MULLICA RIVER DRIVE,MULLICA TWP,17,2016,1,RES1,3001 -0117_4202_6,-74.50986903,39.40634565,2837 MULLICA RIVER DRIVE,MULLICA TWP,16,1991,1,RES1,3001 -0117_4203_1,-74.5760025,39.5269565,5006 NEW HAMPSHIRE AVENUE,MULLICA TWP,15,1923,1,RES1,3001 -0117_4203_2,-74.4809005,39.3496665,2810 CYPRESS LANE,MULLICA TWP,16,1990,1,RES1,3001 -0117_4203_4,-74.62224802,39.35405037,2816 CYPRESS LANE,MULLICA TWP,13,1950,1,RES1,3001 -0117_4204_3,-74.52241134,39.40953139,2815 CEDAR LANE,MULLICA TWP,16,1970,1,RES1,3001 -0117_4204_5,-74.50436978,39.41124484,2819 CEDAR LANE,MULLICA TWP,16,1970,1,RES1,3001 -0117_4204_7,-74.54399252,39.46009731,5026 NEW HAMPSHIRE AVENUE,MULLICA TWP,16,1961,1,RES1,3001 -0117_4204_8,-74.59901144,39.38010174,5030 NEW HAMPSHIRE AVENUE,MULLICA TWP,16,1973,1,RES1,3001 -0117_4204_9,-74.51268604,39.41787357,5036 NEW HAMPSHIRE AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_4301_1,-74.59476034,39.31313046,2841 SEVENTH AVENUE,MULLICA TWP,16,1954,2,RES1,3001 -0117_4301_10,-74.94325493,39.50018673,5148 VENICE AVENUE,MULLICA TWP,16,1968,1,RES1,3001 -0117_4301_11,-74.70586891,39.42348171,5152 VENICE AVENUE,MULLICA TWP,17,1974,1,RES1,3001 -0117_4301_2,-74.6335705,39.3638475,5116 VENICE AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_4301_3,-74.38617256,39.3907099,5120 VENICE AVENUE,MULLICA TWP,16,1963,1,RES1,3001 -0117_4301_4,-74.61588485,39.47713031,5124 VENICE AVENUE,MULLICA TWP,15,1958,1,RES1,3001 -0117_4301_5,-74.6333245,39.391627,5128 VENICE AVENUE,MULLICA TWP,16,1968,1,RES1,3001 -0117_4301_6,-74.86740659,39.49800719,5132 VENICE AVENUE,MULLICA TWP,17,1990,1,RES1,3001 -0117_4301_8,-74.526762,39.457433,5140 VENICE AVENUE,MULLICA TWP,17,1994,1,RES1,3001 -0117_4301_9,-74.795258,39.63824,5144 VENICE AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_4302_1,-74.7914245,39.4481685,5113 VENICE AVENUE,MULLICA TWP,17,1990,1,RES1,3001 -0117_4302_10,-74.46367436,39.34857383,5139 VENICE AVENUE,MULLICA TWP,16,1968,1,RES1,3001 -0117_4302_11,-74.64213436,39.41076483,5143 VENICE AVENUE,MULLICA TWP,47,1975,2,RES1,3001 -0117_4302_12,-74.81300407,39.37788715,5147 VENICE AVENUE,MULLICA TWP,16,1975,1,RES3A,3001 -0117_4302_5,-74.38515536,39.39406607,2820 SMUGGLERS LANE,MULLICA TWP,18,1990,1,RES3A,3001 -0117_4302_6,-74.60886916,39.32677349,2821 SMUGGLERS LANE,MULLICA TWP,17,1979,1,RES1,3001 -0117_4302_8,-74.84101441,39.39248233,2800 SMUGGLERS LANE,MULLICA TWP,16,1980,1,RES1,3001 -0117_4302_9,-74.5232945,39.3916105,5135 VENICE AVENUE,MULLICA TWP,16,1985,1,RES3A,3001 -0117_4303_1,-74.5686925,39.412498,5130 NEW HAMPSHIRE AVENUE,MULLICA TWP,17,1994,1,RES3A,3001 -0117_4303_2,-74.74597018,39.44686988,5126 NEW HAMPSHIRE AVENUE,MULLICA TWP,17,1981,1,RES1,3001 -0117_4303_3,-74.776688,39.6005375,5120 NEW HAMPSHIRE AVENUE,MULLICA TWP,17,1992,1,RES3A,3001 -0117_4303_4,-74.88253621,39.59445504,5121 QUARTERMASTER COURT,MULLICA TWP,17,1987,1,RES1,3001 -0117_4303_5,-74.6031002,39.48527997,5129 QUARTERMASTER COURT,MULLICA TWP,16,1981,1,RES3A,3001 -0117_4303_6,-74.6214235,39.3806155,5135 QUARTERMASTER COURT,MULLICA TWP,17,1978,1,RES3A,3001 -0117_4303_8,-74.53581606,39.38126235,5120 QUARTERMASTER COURT,MULLICA TWP,17,1990,1,GOV1,3004 -0117_4304_1,-74.6229435,39.3779015,2800 SCHOONER LANE,MULLICA TWP,17,1989,1,RES3A,3001 -0117_4304_2,-74.7659245,39.3495435,2810 SCHOONER LANE,MULLICA TWP,17,1984,1,RES1,3001 -0117_4304_3,-74.60272937,39.32263857,2818 SCHOONER LANE,MULLICA TWP,17,1989,1,RES1,3001 -0117_4304_4,-74.74338716,39.63369647,2826 SCHOONER LANE,MULLICA TWP,17,1976,1,RES1,3001 -0117_4304_5,-74.8616535,39.4789325,2829 SCHOONER LANE,MULLICA TWP,17,1980,1,RES1,3001 -0117_4304_6,-74.38832615,39.39118554,2823 SCHOONER LANE,MULLICA TWP,17,1978,1,RES1,3001 -0117_4304_7,-74.6072198,39.39037056,2815 SCHOONER LANE,MULLICA TWP,17,1976,1,RES3B,3001 -0117_4304_8,-74.3798791,39.41727924,2809 SCHOONER LANE,MULLICA TWP,17,1980,1,RES1,3001 -0117_4304_9,-74.499223,39.416843,2801 SCHOONER LANE,MULLICA TWP,17,1978,1,COM1,3004 -0117_4305_1,-74.520092,39.404765,2800 MUSKET LANE,MULLICA TWP,17,1987,1,RES1,3001 -0117_4305_11,-74.55635931,39.36228393,2813 MUSKET LANE,MULLICA TWP,17,1987,1,RES1,3001 -0117_4305_3,-74.56923168,39.36480703,2810 MUSKET LANE,MULLICA TWP,17,1986,1,RES1,3001 -0117_4305_7,-74.6246005,39.393183,2824 MUSKET LANE,MULLICA TWP,17,1987,1,RES1,3001 -0117_4305_8,-74.4712778,39.48830808,2825 MUSKET LANE,MULLICA TWP,17,1991,1,RES1,3001 -0117_4402_10,-74.7980925,39.434256,5324 RIVER DRIVE,MULLICA TWP,16,1959,1,RES1,3001 -0117_4402_12,-74.5712955,39.369338,5328 RIVER DRIVE,MULLICA TWP,16,2007,1,RES1,3001 -0117_4402_13,-74.45667787,39.34783182,5330 RIVER DRIVE,MULLICA TWP,16,1950,1,RES1,3001 -0117_4402_14,-74.4857095,39.335896,5334 RIVER DRIVE,MULLICA TWP,16,1954,1,COM1,3004 -0117_4402_16,-74.808221,39.6412795,5340 RIVER DRIVE,MULLICA TWP,16,1974,1,RES1,3001 -0117_4402_17,-74.81755968,39.38205946,5344 RIVER DRIVE,MULLICA TWP,16,1972,1,RES1,3001 -0117_4402_2,-74.60950242,39.39245669,5302 IROQUOIS WAY,MULLICA TWP,16,1964,1,RES1,3001 -0117_4402_3,-74.5164205,39.3238525,5304 IROQUOIS WAY,MULLICA TWP,16,2016,1,RES1,3001 -0117_4402_5,-74.754295,39.429405,5310 RIVER DRIVE,MULLICA TWP,16,2016,1,RES1,3001 -0117_4402_6,-74.6711425,39.37915534,5316 RIVER DRIVE,MULLICA TWP,16,1950,1,RES1,3001 -0117_4402_8,-74.5986859,39.32414806,5320 RIVER DRIVE,MULLICA TWP,16,1950,1,RES1,3001 -0117_4402_9,-74.71504074,39.43717757,5322 RIVER DRIVE,MULLICA TWP,16,1950,1,RES3A,3001 -0117_4404_1,-74.618833,39.4491325,2869 FIFTH AVENUE,MULLICA TWP,16,1976,1,RES1,3004 -0117_4404_3,-74.5685975,39.3490545,5312 LINDA AVENUE,MULLICA TWP,16,1950,1,COM1,3004 -0117_4405_1,-74.368115,39.403297,2861 FIFTH AVENUE,MULLICA TWP,16,1983,1,RES1,3001 -0117_4405_2,-74.718621,39.6404355,5305 LINDA AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_4405_3,-74.870622,39.59288,5309 LINDA AVENUE,MULLICA TWP,15,1960,1,RES1,3001 -0117_4405_4,-74.518767,39.395037,5313 LINDA AVENUE,MULLICA TWP,15,1959,1,RES3A,3001 -0117_4405_5,-74.6554422,39.34722138,5317 LINDA AVENUE,MULLICA TWP,15,1950,1,RES1,3001 -0117_4405_6,-74.578938,39.4307265,5319 LINDA AVENUE,MULLICA TWP,14,1948,1,RES1,3001 -0117_4405_7,-74.8318426,39.40613531,5325 LINDA AVENUE,MULLICA TWP,15,1940,1,RES3A,3001 -0117_4601_4,-74.4517548,39.35419607,2779 GREEN BANK ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_4701_1,-74.48376346,39.42997933,4500 PLEASANT MILLS ROAD,MULLICA TWP,16,1865,1,RES1,3001 -0117_4701_10,-74.5682085,39.4159115,4528 INDIAN CABIN TERRACE,MULLICA TWP,15,1965,1,RES1,3001 -0117_4701_11,-74.79732217,39.65216151,4532 INDIAN CABIN TERRACE,MULLICA TWP,15,1950,1,RES1,3001 -0117_4701_13,-74.9268575,39.4821015,4538 INDIAN CABIN TERRACE,MULLICA TWP,16,1971,1,RES1,3001 -0117_4701_15,-74.797892,39.651068,4548 INDIAN CABIN TERRACE,MULLICA TWP,16,1956,2,RES1,3001 -0117_4701_16,-74.37339817,39.40343047,4550 INDIAN CABIN TERRACE,MULLICA TWP,17,1965,1,RES1,3001 -0117_4701_18,-74.87617456,39.59710978,4600 PLEASANT MILLS ROAD,MULLICA TWP,15,1953,1,RES1,3001 -0117_4701_19,-74.72850029,39.45572525,4606 PLEASANT MILLS ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_4701_2,-74.756089,39.635781,4506 PLEASANT MILLS ROAD,MULLICA TWP,16,1962,1,RES1,3001 -0117_4701_20,-74.601519,39.3249825,4610 PLEASANT MILLS ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_4701_21,-74.54349026,39.37271135,4614 PLEASANT MILLS ROAD,MULLICA TWP,16,1957,1,RES1,3001 -0117_4701_23,-74.5689335,39.4367885,4624 PLEASANT MILLS ROAD,MULLICA TWP,16,1955,1,RES1,3002 -0117_4701_24,-74.49507468,39.33616414,4632 PLEASANT MILLS ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_4701_26,-74.6860235,39.490477,2658 THURSTON AVENUE,MULLICA TWP,16,1930,1,RES1,3001 -0117_4701_27,-74.9546685,39.5306265,2654 THURSTON AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_4701_33,-74.92594138,39.50735634,2620 THURSTON AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_4701_34,-74.79123226,39.64772113,2614 THURSTON AVENUE,MULLICA TWP,16,1956,1,RES1,3001 -0117_4701_36,-74.69612835,39.59164997,2608 THURSTON AVENUE,MULLICA TWP,16,1961,1,RES1,3001 -0117_4701_37,-74.82226483,39.6172785,2604 THURSTON AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_4701_38,-74.45847795,39.34821896,2600 THURSTON AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_4701_4,-74.55009035,39.37388755,2614 BETHESDA ROAD,MULLICA TWP,15,1941,1,RES1,3001 -0117_4701_5,-74.94408025,39.50464053,2610 FORD AVENUE,MULLICA TWP,16,1951,1,RES1,3002 -0117_4701_7,-74.53444333,39.45088198,4520 INDIAN CABIN TERRACE,MULLICA TWP,16,1960,1,RES1,3001 -0117_4701_8,-74.566051,39.3709555,4524 INDIAN CABIN TERRACE,MULLICA TWP,16,1970,1,RES1,3001 -0117_4702_1,-74.6700355,39.542609,2611 FORD AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_4702_2,-74.61528383,39.44125086,4530 PLEASANT MILLS ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_4702_3,-74.51382182,39.46754616,4540 PLEASANT MILLS ROAD,MULLICA TWP,16,1962,1,RES1,3001 -0117_4703_1,-74.88597875,39.5074258,2661 THURSTON AVENUE,MULLICA TWP,16,2014,1,RES1,3001 -0117_4703_3,-74.62599142,39.3739217,4646 RIVERSIDE DRIVE,MULLICA TWP,16,1933,1,RES1,3002 -0117_4703_4,-74.68539784,39.51062661,4648 RIVERSIDE DRIVE,MULLICA TWP,16,1947,1,RES1,3001 -0117_4703_5,-74.44359967,39.3706334,4652 RIVERSIDE DRIVE,MULLICA TWP,16,1993,1,RES1,3001 -0117_4703_6,-74.519158,39.3969965,4656 RIVERSIDE DRIVE,MULLICA TWP,16,1940,1,RES1,3001 -0117_4703_7,-74.62627303,39.45815592,4662 RIVERSIDE DRIVE,MULLICA TWP,16,1991,1,RES1,3001 -0117_4704_1,-74.78316334,39.64100551,2653 THURSTON AVENUE,MULLICA TWP,16,1955,1,RES1,3001 -0117_4704_2,-74.4656835,39.3584415,2649 THURSTON AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_4704_3,-74.597225,39.434679,2647 THURSTON AVENUE,MULLICA TWP,15,1950,1,RES1,3001 -0117_4704_4,-74.6174655,39.384279,2643 THURSTON AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_4705_10,-74.54779,39.3851105,2601 THURSTON AVENUE,MULLICA TWP,16,1930,1,RES1,3001 -0117_4705_13,-74.60223362,39.43293698,2630 CIRCLE DRIVE,MULLICA TWP,15,1954,1,RES1,3001 -0117_4705_2,-74.60326942,39.43112442,2635 THURSTON AVENUE,MULLICA TWP,16,1977,1,GOV1,3004 -0117_4705_6,-74.89498635,39.50185443,2621 THURSTON AVENUE,MULLICA TWP,15,1960,1,RES1,3001 -0117_4705_7,-74.58803312,39.3495493,2617 THURSTON AVENUE,MULLICA TWP,16,1980,1,RES1,3001 -0117_4705_9,-74.6970565,39.356311,2611 THURSTON AVENUE,MULLICA TWP,16,1966,1,RES1,3001 -0117_4706_1,-74.51044069,39.32599397,4663 RIVERSIDE DRIVE,MULLICA TWP,16,1920,1,RES1,3001 -0117_4801_1,-74.512938,39.4111925,4670 RIVERSIDE DRIVE,MULLICA TWP,16,1950,1,REL1,3004 -0117_4801_10,-74.572225,39.479482,4760 PLEASANT MILLS ROAD,MULLICA TWP,16,1949,1,RES1,3001 -0117_4801_11,-74.58837214,39.42522283,4762 PLEASANT MILLS ROAD,MULLICA TWP,15,1949,1,RES1,3001 -0117_4801_12,-74.39302605,39.38710919,4768 PLEASANT MILLS ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_4801_13,-74.5973325,39.434419,2668 CAMP SWISS AVENUE,MULLICA TWP,16,1999,1,RES1,3001 -0117_4801_14,-74.48801005,39.52008072,2670 CAMP SWISS AVENUE,MULLICA TWP,16,1948,1,RES1,3001 -0117_4801_15,-74.6137055,39.3518665,2664 CAMP SWISS AVENUE,MULLICA TWP,16,1960,1,RES3B,3001 -0117_4801_17,-74.81144324,39.63420161,4800 PLEASANT MILLS ROAD,MULLICA TWP,18,1900,1,COM3,3004 -0117_4801_18,-74.588088,39.412163,4802 PLEASANT MILLS ROAD,MULLICA TWP,13,1960,1,COM1,3004 -0117_4801_19,-74.8127775,39.4371875,4812 PLEASANT MILLS ROAD,MULLICA TWP,16,1972,2,RES1,3001 -0117_4801_2,-74.61661366,39.43711076,4680 RIVERSIDE DRIVE,MULLICA TWP,16,1964,1,RES1,3001 -0117_4801_21,-74.602699,39.435851,4814 PLEASANT MILLS ROAD,MULLICA TWP,16,1949,1,COM1,3004 -0117_4801_22,-74.5998165,39.3608405,4818 PLEASANT MILLS ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_4801_24,-74.9556575,39.5206725,4828 PLEASANT MILLS ROAD,MULLICA TWP,16,1964,1,RES1,3001 -0117_4801_25,-74.66873473,39.4551098,4832 PLEASANT MILLS ROAD,MULLICA TWP,16,1987,1,REL1,3004 -0117_4801_26,-74.49962839,39.33304882,4838 PLEASANT MILLS ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_4801_28,-74.63187006,39.39150971,4852 PLEASANT MILLS ROAD,MULLICA TWP,16,1969,1,RES1,3001 -0117_4801_5,-74.67360047,39.38473085,4720 PLEASANT MILLS ROAD,MULLICA TWP,16,1963,1,RES1,3001 -0117_4801_6,-74.4871286,39.33729016,4730 PLEASANT MILLS ROAD,MULLICA TWP,17,1979,1,GOV1,3004 -0117_4801_7,-74.8084255,39.6141655,4738 PLEASANT MILLS ROAD,MULLICA TWP,16,1969,1,RES1,3001 -0117_4801_8,-74.6184495,39.4366255,4744 PLEASANT MILLS ROAD,MULLICA TWP,15,1950,1,RES1,3001 -0117_4801_9,-74.52382326,39.45622297,4750 PLEASANT MILLS ROAD,MULLICA TWP,16,1935,1,RES1,3001 -0117_4901_1,-74.68358085,39.35516297,4854 PLEASANT MILLS ROAD,MULLICA TWP,16,1928,1,RES1,3001 -0117_4901_10,-74.62543119,39.54842718,2690 MCCORMICK AVENUE,MULLICA TWP,16,1920,2,RES1,3001 -0117_4901_11,-74.7927415,39.535253,2700 MCCORMICK AVENUE,MULLICA TWP,16,1928,1,RES1,3001 -0117_4901_12,-74.76928348,39.66262406,2702 MCCORMICK AVENUE,MULLICA TWP,16,1953,1,RES1,3001 -0117_4901_13,-74.48590067,39.34860393,2704 MCCORMICK AVENUE,MULLICA TWP,16,1950,1,GOV1,3004 -0117_4901_14,-74.71150004,39.57294316,2708 MCCORMICK AVENUE,MULLICA TWP,16,1932,1,RES1,3001 -0117_4901_16,-74.65405073,39.52587251,2720 MCCORMICK AVENUE,MULLICA TWP,15,1965,1,RES1,3001 -0117_4901_17,-74.6446695,39.381564,2724 MCCORMICK AVENUE,MULLICA TWP,16,2016,1,RES1,3001 -0117_4901_18,-74.5625715,39.416923,2730 MCCORMICK AVENUE,MULLICA TWP,16,1890,1,RES1,3002 -0117_4901_19,-74.75346127,39.44848253,2736 MCCORMICK AVENUE,MULLICA TWP,16,2004,1,RES1,3001 -0117_4901_2,-74.533531,39.3791925,4856 PLEASANT MILLS ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_4901_20,-74.7119685,39.467091,2742 MCCORMICK AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_4901_21,-74.6310716,39.43429431,2746 MCCORMICK AVENUE,MULLICA TWP,16,1967,1,RES1,3001 -0117_4901_22,-74.52416032,39.31755472,2750 MCCORMICK AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_4901_23,-74.61756635,39.43746389,2756 MCCORMICK AVENUE,MULLICA TWP,16,1985,1,RES1,3001 -0117_4901_3,-74.42346581,39.37235244,4860 PLEASANT MILLS ROAD,MULLICA TWP,16,1949,1,RES1,3001 -0117_4901_4,-74.540152,39.4083045,4870 PLEASANT MILLS ROAD,MULLICA TWP,16,1974,1,RES1,3001 -0117_4901_5,-74.80477266,39.62744998,2670 MCCORMICK AVENUE,MULLICA TWP,18,2008,1,RES1,3001 -0117_4901_6,-74.59806207,39.37823495,2680 MCCORMICK AVENUE,MULLICA TWP,16,1942,1,RES1,3001 -0117_4901_7,-74.6054303,39.32277231,2684 MCCORMICK AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_4901_8,-74.5215375,39.3175165,2686 MCCORMICK AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_4901_9,-74.61135819,39.36936801,2688 MCCORMICK AVENUE,MULLICA TWP,16,1927,1,RES1,3001 -0117_4902_1,-74.63481635,39.60925345,2771 MCCORMICK AVENUE,MULLICA TWP,16,1951,1,RES1,3001 -0117_4903_6,-74.378413,39.39972067,2755 MCCORMICK AVENUE,MULLICA TWP,16,2004,1,RES1,3001 -0117_4903_7,-74.54168977,39.50287662,2711 MCCORMICK AVENUE,MULLICA TWP,16,1962,1,COM1,3004 -0117_4903_8,-74.51811517,39.3250535,2753 MCCORMICK AVENUE,MULLICA TWP,15,1920,1,GOV1,3004 -0117_4904_1,-74.62856877,39.41374839,2661 MCCORMICK AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_4904_12,-74.60664628,39.39051524,4940 PLEASANT MILLS ROAD,MULLICA TWP,17,1972,1,RES1,3001 -0117_4904_2,-74.54925634,39.37630303,4904 PLEASANT MILLS ROAD,MULLICA TWP,16,1964,1,RES1,3001 -0117_4904_3,-74.49076668,39.42202202,4908 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_4904_4,-74.8308225,39.4622845,4912 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_4904_6,-74.60449,39.3198775,2701 MCCORMICK AVENUE,MULLICA TWP,16,1955,1,RES1,3001 -0117_4904_7,-74.6309475,39.3899745,2755 LEONA LANE,MULLICA TWP,16,1992,1,RES1,3001 -0117_4905_2,-74.48441695,39.34521032,4941 PLEASANT MILLS ROAD,MULLICA TWP,16,1927,1,RES1,3001 -0117_4905_3,-74.56614177,39.36224641,4955 PLEASANT MILLS ROAD,MULLICA TWP,17,1998,1,RES1,3001 -0117_5001_1,-74.53886548,39.38796637,5001 PLEASANT MILLS ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_5001_2,-74.59470087,39.32935725,5007 PLEASANT MILLS ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_5002_10,-74.42389706,39.35759866,5038 PLEASANT MILLS ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_5002_11,-74.502408,39.4183075,5040 PLEASANT MILLS ROAD,MULLICA TWP,15,1940,1,RES1,3001 -0117_5002_14,-74.58832004,39.32854064,2720 SEVENTH AVENUE,MULLICA TWP,15,1940,2,RES1,3001 -0117_5002_15,-74.55927608,39.37059069,2738 SEVENTH AVENUE,MULLICA TWP,16,2008,1,RES1,3001 -0117_5002_16,-74.56910758,39.34095322,2740 SEVENTH AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_5002_17,-74.5040885,39.407285,2744 SEVENTH AVENUE,MULLICA TWP,16,1925,1,RES1,3001 -0117_5002_18,-74.55817918,39.4075424,2748 SEVENTH AVENUE,MULLICA TWP,17,1998,1,RES1,3001 -0117_5002_19,-74.56983875,39.4130468,2758 SEVENTH AVENUE,MULLICA TWP,17,2004,1,RES1,3001 -0117_5002_2,-74.55978049,39.37027797,5004 PLEASANT MILLS ROAD,MULLICA TWP,16,1942,1,RES1,3001 -0117_5002_20,-74.4623183,39.49701653,2762 SEVENTH AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_5002_21,-74.63982219,39.42752849,2766 SEVENTH AVENUE,MULLICA TWP,16,1947,1,RES1,3001 -0117_5002_22,-74.5959445,39.3092345,2770 SEVENTH AVENUE,MULLICA TWP,16,1929,1,RES1,3001 -0117_5002_25,-74.60975964,39.32172537,2796 CEDAR LANE,MULLICA TWP,16,1940,1,RES1,3001 -0117_5002_26,-74.8761853,39.49882897,5001 NEW HAMPSHIRE AVENUE,MULLICA TWP,16,1930,1,RES1,3001 -0117_5002_29,-74.50318246,39.40840067,5021 NEW HAMPSHIRE AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_5002_3,-74.4478495,39.3578665,5010 PLEASANT MILLS ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_5002_4,-74.620817,39.4247895,5012 PLEASANT MILLS ROAD,MULLICA TWP,16,1942,1,RES1,3001 -0117_5002_5,-74.62544592,39.41152576,5014 PLEASANT MILLS ROAD,MULLICA TWP,15,1950,1,RES1,3001 -0117_5002_6,-74.51424567,39.32056053,5018 PLEASANT MILLS ROAD,MULLICA TWP,16,1951,1,RES1,3001 -0117_5002_7,-74.646682,39.4321165,5022 PLEASANT MILLS ROAD,MULLICA TWP,16,1991,1,RES1,3001 -0117_5002_8,-74.5900759,39.42595526,5026 PLEASANT MILLS ROAD,MULLICA TWP,16,1945,1,RES1,3001 -0117_5002_9,-74.550304,39.40136183,5032 PLEASANT MILLS ROAD,MULLICA TWP,17,1984,1,RES1,3001 -0117_502_1,-74.79265899,39.64029117,3700 RICHARDS AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_502_4,-74.581795,39.3573375,3730 RICHARDS AVENUE,MULLICA TWP,,2012,1,RES1,3001 -0117_5101_1,-74.64702475,39.52810162,2785 SEVENTH AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_5101_10,-74.83516335,39.40390419,2721 SEVENTH AVENUE,MULLICA TWP,,0,1,RES1,3001 -0117_5101_11,-74.76346626,39.48489232,2735 SEVENTH AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_5101_2,-74.93322082,39.5095333,5121 NEW HAMPSHIRE AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_5101_3,-74.557721,39.3589775,2765 SEVENTH AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_5301_13,-74.5049425,39.333704,2670 GREEN BANK ROAD,MULLICA TWP,16,1968,1,RES1,3001 -0117_5301_14,-74.84161886,39.54142332,2610 BACK ROAD,MULLICA TWP,16,1983,1,COM4,3004 -0117_5301_15,-74.5177725,39.4029025,5600 PLEASANT MILLS ROAD,MULLICA TWP,16,1992,1,RES1,3001 -0117_5301_7,-74.54284957,39.38240783,2712 GREEN BANK ROAD,MULLICA TWP,16,1994,1,RES1,3001 -0117_5302_1,-74.4835295,39.3549095,2601 BACK ROAD,MULLICA TWP,16,1986,1,RES1,3001 -0117_5302_2,-74.6035645,39.349345,5644 PLEASANT MILLS ROAD,MULLICA TWP,16,1959,2,RES1,3001 -0117_5302_4,-74.52990117,39.40096001,5658 PLEASANT MILLS ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_5302_5,-74.69914267,39.48051786,2627 BACK ROAD,MULLICA TWP,16,1975,1,RES1,3001 -0117_5302_6,-74.812731,39.4134685,5662 PLEASANT MILLS ROAD,MULLICA TWP,16,1925,1,RES3B,3001 -0117_5302_7,-74.74897511,39.3915964,5668 PLEASANT MILLS ROAD,MULLICA TWP,16,2007,1,RES1,3001 -0117_5303_1,-74.6113033,39.34008095,5672 PLEASANT MILLS ROAD,MULLICA TWP,15,1930,1,RES3A,3001 -0117_5303_2,-74.4704105,39.4905215,5700 PLEASANT MILLS ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_5303_3.01,-74.84937679,39.42742015,5710 PLEASANT MILLS ROAD,MULLICA TWP,15,1900,1,COM4,3004 -0117_5303_3.02,-74.5701685,39.4128115,2665 BACK ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_5303_4,-74.65649235,39.40237489,2620 GREEN BANK ROAD,MULLICA TWP,16,1917,1,RES1,3001 -0117_5303_5,-74.519842,39.3187215,2640 GREEN BANK ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_5303_6,-74.63763424,39.36366896,2650 GREEN BANK ROAD,MULLICA TWP,16,1972,1,COM4,3004 -0117_5303_7,-74.50709233,39.33448154,2656 GREEN BANK ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_5401_2,-74.644803,39.5281255,2713 GREEN BANK ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_5501_1,-74.6842466,39.55786957,2697 GREEN BANK ROAD,MULLICA TWP,16,2009,2,RES1,3001 -0117_5502_10,-74.86056202,39.56514711,5736 PLEASANT MILLS ROAD,MULLICA TWP,15,1850,1,RES1,3001 -0117_5502_12,-74.75597326,39.43347313,2610-2616 PINE CREEK ROAD,MULLICA TWP,15,1924,1,GOV1,3004 -0117_5502_13,-74.7906316,39.44199151,2624 PINE CREEK ROAD,MULLICA TWP,16,1960,1,GOV1,3004 -0117_5502_15,-74.56364652,39.41389478,2601 SILVER MAPLE FARM RD,MULLICA TWP,16,1959,1,RES1,3001 -0117_5502_18,-74.76440425,39.65308975,5900 PLEASANT MILLS ROAD,MULLICA TWP,16,1948,1,RES1,3001 -0117_5502_19,-74.39116463,39.39084262,5914 PLEASANT MILLS ROAD,MULLICA TWP,16,1982,1,RES1,3001 -0117_5502_2,-74.37917884,39.41472654,2655 GREEN BANK ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_5502_20,-74.69018262,39.48806506,5920 PLEASANT MILLS ROAD,MULLICA TWP,16,1984,1,RES1,3001 -0117_5502_3,-74.45633625,39.34982333,2649 GREEN BANK ROAD,MULLICA TWP,15,1948,1,RES1,3001 -0117_5502_4,-74.5617555,39.5205895,2643 GREEN BANK ROAD,MULLICA TWP,16,1940,1,RES1,3001 -0117_5502_5,-74.59939046,39.41716547,2637 GREEN BANK ROAD,MULLICA TWP,16,1952,1,RES1,3001 -0117_5502_7,-74.47411394,39.34059887,2614 SILVER MAPLE FARM RD,MULLICA TWP,15,1946,1,RES1,3001 -0117_5502_8,-74.52007895,39.39543946,2621 GREEN BANK ROAD,MULLICA TWP,16,1928,1,RES1,3001 -0117_5502_9,-74.562341,39.3661465,5732 PLEASANT MILLS ROAD,MULLICA TWP,16,1935,2,RES1,3001 -0117_5601_1,-74.568553,39.4136375,4529 INDIAN CABIN ROAD,MULLICA TWP,16,1958,1,RES1,3001 -0117_5601_13,-74.55403082,39.40757692,2419 ELWOOD ROAD,MULLICA TWP,16,1942,1,RES1,3001 -0117_5601_14,-74.51207425,39.45475855,2377 ELWOOD ROAD,MULLICA TWP,16,1992,1,RES1,3001 -0117_5601_15,-74.55658613,39.36529219,4601 INDIAN CABIN ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_5601_17,-74.49713466,39.33358797,4623 INDIAN CABIN ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_5601_19,-74.6275465,39.417424,2367 ELWOOD ROAD,MULLICA TWP,16,1979,1,RES1,3001 -0117_5601_2,-74.64457863,39.40142734,4511 INDIAN CABIN ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_5601_20,-74.6954615,39.515366,2359 ELWOOD ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_5601_21,-74.5717443,39.34088759,2353 ELWOOD ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_5601_22,-74.610319,39.4391205,2345 ELWOOD ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_5601_23,-74.49315886,39.4703725,2331 ELWOOD ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_5601_24,-74.81072,39.452323,2341 ELWOOD ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_5601_25,-74.408294,39.3794815,2323 ELWOOD ROAD,MULLICA TWP,16,1978,1,GOV1,3004 -0117_5601_3,-74.53974701,39.53528631,4501 INDIAN CABIN ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_5601_4,-74.85602896,39.56183334,4557 PLEASANT MILLS ROAD,MULLICA TWP,16,1966,1,RES1,3001 -0117_5601_6,-74.596762,39.435587,4541 PLEASANT MILLS ROAD,MULLICA TWP,15,1978,1,RES1,3001 -0117_5601_7,-74.79009989,39.65701204,4525 PLEASANT MILLS ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_5601_8,-74.83113195,39.54126724,4515 PLEASANT MILLS ROAD,MULLICA TWP,15,1970,1,RES1,3001 -0117_5601_9,-74.64129653,39.37855066,4501 PLEASANT MILLS ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_5701_1,-74.36748762,39.40881866,4607 PLEASANT MILLS ROAD,MULLICA TWP,16,1949,2,GOV1,3004 -0117_5701_10,-74.8620259,39.55698786,4643 PLEASANT MILLS ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_5701_11,-74.54000716,39.39308248,4649 PLEASANT MILLS ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_5701_13,-74.84637461,39.39593816,4530 INDIAN CABIN ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_5701_15,-74.808923,39.6295635,4546 INDIAN CABIN ROAD,MULLICA TWP,16,1980,1,GOV1,3004 -0117_5701_16,-74.63328998,39.43410418,4556 INDIAN CABIN ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_5701_17,-74.77454439,39.66134613,4566 INDIAN CABIN ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_5701_19,-74.46157537,39.3495743,4655 PLEASANT MILLS ROAD,MULLICA TWP,16,1989,1,RES1,3001 -0117_5701_20,-74.8115365,39.372217,4665 PLEASANT MILLS ROAD,MULLICA TWP,16,1954,1,RES1,3001 -0117_5701_27.01,-74.63990816,39.53677105,4749 PLEASANT MILLS ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_5701_27.02,-74.63175541,39.4237007,4755 PLEASANT MILLS ROAD,MULLICA TWP,16,1970,1,GOV1,3004 -0117_5701_27.03,-74.80365883,39.64057466,4757 PLEASANT MILLS ROAD,MULLICA TWP,16,1972,1,GOV1,3004 -0117_5701_27.04,-74.74923652,39.44708782,4759 PLEASANT MILLS ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_5701_29,-74.4888615,39.4318085,4763 PLEASANT MILLS ROAD,MULLICA TWP,16,1942,1,RES1,3001 -0117_5701_33,-74.516603,39.3184675,4805 PLEASANT MILLS ROAD,MULLICA TWP,16,1966,1,RES1,3001 -0117_5701_34,-74.85947821,39.59416637,4815 PLEASANT MILLS ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_5701_36,-74.44549436,39.35986033,4819 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_5701_37,-74.36659962,39.40902367,4823 PLEASANT MILLS ROAD,MULLICA TWP,16,1969,1,RES1,3001 -0117_5701_39,-74.62668467,39.43571351,4831 PLEASANT MILLS ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_5701_41,-74.94641973,39.50362994,4835 PLEASANT MILLS ROAD,MULLICA TWP,16,1964,1,REL1,3004 -0117_5701_42,-74.63582551,39.34323867,4855 PLEASANT MILLS ROAD,MULLICA TWP,16,1967,1,RES1,3001 -0117_5701_44,-74.74496397,39.44568096,4873 PLEASANT MILLS ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_5701_7,-74.78045381,39.63522527,4625 PLEASANT MILLS ROAD,MULLICA TWP,16,1986,1,RES1,3001 -0117_5701_8,-74.583727,39.406282,4633 PLEASANT MILLS ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_5701_9,-74.64598444,39.38967135,4639 PLEASANT MILLS ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_5801_14,-74.55867513,39.47194388,4925 PLEASANT MILLS ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_5801_16,-74.62237338,39.41902561,2688 EIGHTH AVENUE,MULLICA TWP,,0,1,GOV1,3004 -0117_5901_1,-74.64865032,39.53255372,5045 PLEASANT MILLS ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_5901_10,-74.80523938,39.64224648,2630 SEVENTH AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_5901_11,-74.80684645,39.62937435,5040 CONNECTICUT AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_5901_12,-74.63687287,39.43488316,5056 CONNECTICUT AVENUE,MULLICA TWP,15,1950,1,RES1,3001 -0117_5901_4,-74.92574845,39.50673424,2610 SEVENTH AVENUE,MULLICA TWP,16,1980,1,RES1,3001 -0117_5901_5,-74.507075,39.334841,5057 PLEASANT MILLS ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_5902_1,-74.8064898,39.63871365,5044 PLEASANT MILLS ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_5903_6,-74.365161,39.4088815,5150 PLEASANT MILLS ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_5904_11.01,-74.50950149,39.33848783,2600 SIXTH AVENUE,MULLICA TWP,17,1994,1,GOV1,3004 -0117_5904_11.02,-74.5749305,39.40994,2606 SIXTH AVENUE,MULLICA TWP,17,1994,1,RES1,3001 -0117_5904_12,-74.64987699,39.52374967,2620 SIXTH AVENUE,MULLICA TWP,16,1990,1,GOV1,3004 -0117_5904_15,-74.83332037,39.47019874,5135 PLEASANT MILLS ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_5904_16,-74.5510545,39.373217,5139 PLEASANT MILLS ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_5904_17,-74.60913442,39.38684622,5145 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_5904_19,-74.53760984,39.38358652,5159 PLEASANT MILLS ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_5904_2,-74.7809935,39.6530215,2657 SEVENTH AVENUE,MULLICA TWP,15,1931,1,RES1,3001 -0117_5904_3,-74.36233371,39.41358344,2651 SEVENTH AVENUE,MULLICA TWP,16,1963,1,RES1,3001 -0117_5904_4,-74.5694285,39.41443,2641 SEVENTH AVENUE,MULLICA TWP,15,1960,1,GOV1,3004 -0117_5904_6,-74.56925506,39.36312299,2631 SEVENTH AVENUE,MULLICA TWP,16,1980,1,RES1,3001 -0117_5904_8,-74.6440126,39.52818846,2611 SEVENTH AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_5904_9,-74.38222,39.398896,2601 SEVENTH AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_5905_4,-74.48406055,39.42760214,5200 PLEASANT MILLS ROAD,MULLICA TWP,15,1945,1,RES1,3001 -0117_5905_5,-74.6289355,39.3932255,5204 PLEASANT MILLS ROAD,MULLICA TWP,16,1945,1,RES1,3001 -0117_5905_6,-74.58528736,39.35306015,5208 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_5905_7,-74.39121134,39.38770017,5212 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_5905_8,-74.6150678,39.37360947,5216 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_5905_9,-74.55558479,39.46722335,5220 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_5906_6,-74.51713766,39.31960401,5240 PLEASANT MILLS ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_5907_13,-74.63119602,39.39170518,5262 PLEASANT MILLS ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_5907_16,-74.6018157,39.37016763,5258 PLEASANT MILLS ROAD,MULLICA TWP,15,1960,1,RES1,3001 -0117_5907_3,-74.61283501,39.41944462,5244 PLEASANT MILLS ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_5908_4,-74.64440166,39.53455147,5253 PLEASANT MILLS ROAD,MULLICA TWP,15,1954,1,RES1,3001 -0117_5908_5,-74.79945429,39.53029969,5257 PLEASANT MILLS ROAD,MULLICA TWP,16,1953,1,RES1,3001 -0117_5908_7,-74.624072,39.4388745,5265 PLEASANT MILLS ROAD,MULLICA TWP,16,1962,1,RES1,3001 -0117_5909_11,-74.64186831,39.41135918,5229 PLEASANT MILLS ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_5909_12,-74.56911123,39.41359668,5237 PLEASANT MILLS ROAD,MULLICA TWP,16,1972,1,COM1,3004 -0117_5909_15,-74.49687339,39.51890178,2630 EMPIRE AVENUE,MULLICA TWP,16,1956,1,RES1,3001 -0117_5909_30,-74.77843915,39.63374931,5255 PENN AVENUE,MULLICA TWP,15,1960,1,RES1,3001 -0117_5909_4,-74.52149267,39.3222615,2633 SIXTH AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_5909_5,-74.44226,39.3705105,2629 SIXTH AVENUE,MULLICA TWP,16,1977,1,GOV1,3004 -0117_5909_6,-74.53912791,39.41564169,5209 PLEASANT MILLS ROAD,MULLICA TWP,16,1983,1,RES1,3001 -0117_5909_8,-74.53787328,39.40383255,5217 PLEASANT MILLS ROAD,MULLICA TWP,16,2016,1,GOV1,3004 -0117_5909_9,-74.94015348,39.52390963,5221 PLEASANT MILLS ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_5911_1,-74.50938784,39.32936699,2600 FIFTH AVENUE,MULLICA TWP,16,1973,1,RES1,3001 -0117_6001_3,-74.83500926,39.37709206,2641 FIFTH AVENUE,MULLICA TWP,16,1968,1,RES1,3001 -0117_6001_6,-74.58875087,39.37230091,5312 PLEASANT MILLS ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_6001_9,-74.61815713,39.31969275,5330 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_6003_10,-74.49938196,39.41656518,5444 PLEASANT MILLS ROAD,MULLICA TWP,16,1969,1,RES3A,3001 -0117_6003_12,-74.95135576,39.51263369,5456 PLEASANT MILLS ROAD,MULLICA TWP,16,1961,1,RES1,3001 -0117_6003_13,-74.54644792,39.40314235,5460 PLEASANT MILLS ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_6003_14,-74.6057165,39.5051325,5466 PLEASANT MILLS ROAD,MULLICA TWP,16,1991,1,RES1,3001 -0117_6003_16,-74.5754025,39.3557595,5478 PLEASANT MILLS ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_6003_3,-74.50136128,39.33265946,5412 PLEASANT MILLS ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_6003_4,-74.462371,39.3520845,5416 PLEASANT MILLS ROAD,MULLICA TWP,16,1989,1,RES1,3001 -0117_6003_5,-74.750491,39.4472865,5420 PLEASANT MILLS ROAD,MULLICA TWP,16,1964,1,RES1,3001 -0117_6003_7,-74.59352685,39.37676068,5430 PLEASANT MILLS ROAD,MULLICA TWP,16,1964,1,RES1,3001 -0117_6004_1,-74.53764697,39.39808768,5401 PLEASANT MILLS ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_6004_13,-74.4973535,39.4356005,5457 PLEASANT MILLS ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_6004_15,-74.81233724,39.64107753,5467 PLEASANT MILLS ROAD,MULLICA TWP,16,1971,1,RES1,3001 -0117_6004_17,-74.788066,39.6364005,5479 PLEASANT MILLS ROAD,MULLICA TWP,16,1971,1,RES1,3001 -0117_6004_2,-74.60235527,39.38362737,2601 FOURTH AVENUE,MULLICA TWP,16,1980,1,RES1,3001 -0117_6004_5,-74.714353,39.466321,5413 PLEASANT MILLS ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_6004_6,-74.62406095,39.43956119,5419 PLEASANT MILLS ROAD,MULLICA TWP,16,1950,1,GOV1,3004 -0117_6004_7,-74.58410732,39.32826347,5423 PLEASANT MILLS ROAD,MULLICA TWP,,0,1,GOV1,3004 -0117_6004_8,-74.531387,39.469447,5429 PLEASANT MILLS ROAD,MULLICA TWP,13,1960,1,RES1,3001 -0117_6005_1,-74.6038037,39.30723811,5301 PLEASANT MILLS ROAD,MULLICA TWP,16,1974,1,RES1,3001 -0117_6005_11,-74.82010729,39.65639057,2605 FIFTH AVENUE,MULLICA TWP,16,1982,1,RES1,3001 -0117_6005_15,-74.58834559,39.4312102,2604 FOURTH AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_6005_16,-74.60983017,39.37351712,5356 CONNECTICUT AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_6005_17,-74.60495936,39.48162568,2600 FOURTH AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_6005_2,-74.86620233,39.45098076,5305 PLEASANT MILLS ROAD,MULLICA TWP,16,1990,1,RES1,3001 -0117_6005_5,-74.58152635,39.37900528,5321 PLEASANT MILLS ROAD,MULLICA TWP,16,1966,1,GOV1,3004 -0117_6005_8,-74.76810097,39.32849059,2615 FIFTH AVENUE,MULLICA TWP,16,1977,1,GOV1,3004 -0117_601_4,-74.68278533,39.54801599,3856 NESCO ROAD,MULLICA TWP,16,1890,1,RES1,3001 -0117_601_5,-74.50054682,39.41461498,3900 NESCO ROAD,MULLICA TWP,,1950,1,RES1,3001 -0117_6101_3,-74.600791,39.37161,5045 CONNECTICUT AVENUE,MULLICA TWP,16,1930,1,RES3A,3001 -0117_6101_4,-74.46468017,39.3457215,2580 SEVENTH AVENUE,MULLICA TWP,15,1942,1,RES1,3001 -0117_6101_6,-74.653334,39.4185435,2570 SEVENTH AVENUE,MULLICA TWP,16,1984,1,RES1,3001 -0117_6101_7,-74.7828513,39.63651689,2554 SEVENTH AVENUE,MULLICA TWP,15,1900,1,GOV1,3004 -0117_6101_8,-74.7639477,39.35115918,2550 SEVENTH AVENUE,MULLICA TWP,16,1972,1,RES1,3001 -0117_6101_9,-74.74720369,39.44668604,2546 SEVENTH AVENUE,MULLICA TWP,16,1963,1,RES1,3001 -0117_6102_1,-74.50818682,39.40615689,2580 SIXTH AVENUE,MULLICA TWP,16,1993,1,RES1,3001 -0117_6102_13,-74.39554816,39.38761853,2574 SIXTH AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_6102_18,-74.52662049,39.38760034,2430 SIXTH AVENUE,MULLICA TWP,16,1957,1,RES1,3001 -0117_6102_3,-74.6058865,39.382229,2571 SEVENTH AVENUE,MULLICA TWP,16,1918,1,RES1,3001 -0117_6102_4,-74.84217922,39.37887782,2551 SEVENTH AVENUE,MULLICA TWP,17,2010,1,RES1,3001 -0117_6102_5,-74.4480955,39.354718,2541 SEVENTH AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_6103_1,-74.547121,39.4708695,2581 SIXTH AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_6103_2,-74.5809715,39.4732345,5209 CONNECTICUT AVENUE,MULLICA TWP,16,1984,1,GOV1,3004 -0117_6201_1,-74.63889877,39.36498258,2585 FIFTH AVENUE,MULLICA TWP,16,1978,1,GOV1,3004 -0117_6201_22,-74.94360983,39.54400368,2541 FIFTH AVENUE,MULLICA TWP,16,1985,1,GOV1,3004 -0117_6201_3,-74.83935104,39.59923779,5309 CONNECTICUT AVENUE,MULLICA TWP,16,1992,1,RES1,3001 -0117_6201_7,-74.569471,39.36992,2580 FOURTH AVENUE,MULLICA TWP,16,1980,1,GOV1,3004 -0117_6201_9,-74.68998033,39.417409,2530 FOURTH AVENUE,MULLICA TWP,16,1963,1,RES1,3001 -0117_6202_7,-74.64934394,39.35293108,2565 FOURTH AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_6301_10,-74.9434131,39.52523768,5629 PLEASANT MILLS ROAD,MULLICA TWP,15,1926,1,RES1,3001 -0117_6301_2,-74.92631181,39.53372652,5509 PLEASANT MILLS ROAD,MULLICA TWP,16,1989,1,RES1,3001 -0117_6301_7,-74.92265996,39.5182343,5617 PLEASANT MILLS ROAD,MULLICA TWP,16,1956,1,GOV1,3004 -0117_6301_9,-74.6041565,39.408427,5625 PLEASANT MILLS ROAD,MULLICA TWP,16,1949,1,RES1,3001 -0117_6401_10,-74.63645032,39.5337048,5741 CRANBERRY COURT,MULLICA TWP,16,1989,1,RES1,3001 -0117_6401_13,-74.6901805,39.353823,2559 WEEKSTOWN ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_6401_18,-74.56697067,39.34717429,2565 WEEKSTOWN ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_6401_19,-74.53601351,39.38185667,2591 WEEKSTOWN ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_6401_21,-74.3711615,39.410166,5645 PLEASANT MILLS ROAD,MULLICA TWP,16,1970,1,GOV1,3004 -0117_6401_22,-74.7918475,39.677059,5649 PLEASANT MILLS ROAD,MULLICA TWP,16,1940,1,GOV1,3004 -0117_6401_23,-74.596127,39.418892,5655 PLEASANT MILLS ROAD,MULLICA TWP,16,1963,1,RES1,3001 -0117_6401_24,-74.55311178,39.42756796,5659 PLEASANT MILLS ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_6401_27,-74.62970393,39.35104335,5729 CRANBERRY COURT,MULLICA TWP,16,1993,1,RES1,3001 -0117_6401_28,-74.75675227,39.43247414,5675 PLEASANT MILLS ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_6401_29,-74.750718,39.4523835,5712 CRANBERRY COURT,MULLICA TWP,,1950,1,RES1,3001 -0117_6401_3,-74.417426,39.3696395,5745 PLEASANT MILLS ROAD,MULLICA TWP,15,1940,1,RES1,3001 -0117_6401_30,-74.61625175,39.31969893,5701 PLEASANT MILLS ROAD,MULLICA TWP,16,1936,1,RES1,3001 -0117_6401_31,-74.60255544,39.35265341,5705 PLEASANT MILLS ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_6401_34,-74.653378,39.344254,5711 PLEASANT MILLS ROAD,MULLICA TWP,16,1947,1,RES1,3001 -0117_6401_36,-74.6298228,39.42050812,5721 PLEASANT MILLS ROAD,MULLICA TWP,15,1984,1,RES1,3001 -0117_6401_38,-74.5331095,39.376858,5725 PLEASANT MILLS ROAD,MULLICA TWP,16,1960,1,GOV1,3004 -0117_6401_4,-74.38966396,39.3917128,5901 PLEASANT MILLS ROAD,MULLICA TWP,16,2009,1,RES3A,3001 -0117_6401_40,-74.557661,39.3981765,5737 PLEASANT MILLS ROAD,MULLICA TWP,16,1974,1,RES1,3001 -0117_6401_5,-74.80814264,39.62984766,5904 PLEASANT MILLS ROAD,MULLICA TWP,15,1965,1,RES1,3001 -0117_6501_8,-74.82665995,39.63841354,2300 EIGHTH AVENUE,MULLICA TWP,14,1944,1,RES1,3001 -0117_6601_10,-74.5163687,39.40488669,2350 SEVENTH AVENUE,MULLICA TWP,16,1983,1,RES1,3001 -0117_6701_13,-74.60193695,39.32521217,2351 FIFTH AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_701_12,-74.525293,39.3117585,4133 NESCO ROAD,MULLICA TWP,16,1967,1,RES1,3001 -0117_701_15,-74.60977851,39.38469303,4141 NESCO ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_701_16,-74.82830036,39.64145152,4145 NESCO ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_701_17,-74.77029544,39.63512766,4155 NESCO ROAD,MULLICA TWP,17,2015,1,RES1,3001 -0117_701_18,-74.79823019,39.60058723,4157 NESCO ROAD,MULLICA TWP,16,1954,1,RES1,3001 -0117_701_20,-74.9342591,39.52283479,4205 PLEASANT MILLS ROAD,MULLICA TWP,16,1762,1,GOV1,3004 -0117_701_22,-74.5064265,39.493354,4219 PLEASANT MILLS ROAD,MULLICA TWP,16,1800,1,RES1,3001 -0117_701_24,-74.5940155,39.31587,4352 LAKE NESCOCHAGUE DR.,MULLICA TWP,16,1978,1,GOV1,3004 -0117_701_26,-74.5016538,39.43002382,4342 LAKE NESCOCHAGUE DR,MULLICA TWP,45,1987,2,RES1,3001 -0117_701_30,-74.637546,39.401202,4334 LAKE NESCOCHAGUE DR,MULLICA TWP,16,1969,1,GOV1,3004 -0117_701_31,-74.59541103,39.40706029,4330 LAKE NESCOCHAGUE DR,MULLICA TWP,16,1960,1,RES1,3001 -0117_701_35,-74.63928222,39.42884951,4306 LAKE NESCOCHAGUE DR.,MULLICA TWP,16,1960,1,RES1,3001 -0117_701_36,-74.824984,39.6434955,4302 LAKE NESCOCHAGUE DR,MULLICA TWP,16,1969,1,RES1,3001 -0117_701_4,-74.478583,39.3472305,4035 NESCO ROAD,MULLICA TWP,16,1920,1,RES1,3002 -0117_701_6,-74.499449,39.333667,4101 NESCO ROAD,MULLICA TWP,16,1974,1,GOV1,3004 -0117_701_9,-74.494915,39.494723,4119 NESCO ROAD,MULLICA TWP,17,1971,1,RES1,3001 -0117_702_1,-74.79507327,39.31303078,4337 LAKE NESCOCHAGUE DR,MULLICA TWP,16,1968,1,RES1,3001 -0117_702_2,-74.92438977,39.50588163,4323 LAKE NESCOCHAGUE DR,MULLICA TWP,16,1960,1,RES1,3001 -0117_703_1,-74.72183634,39.58747512,4302 ONEHAHA TRAIL,MULLICA TWP,16,1974,1,RES1,3001 -0117_703_2,-74.5619235,39.3661485,4303 PLEASANT MILLS ROAD,MULLICA TWP,16,1974,1,RES1,3001 -0117_704_2,-74.71751456,39.45400566,4311 ONEHAHA TRAIL,MULLICA TWP,16,1970,1,RES1,3001 -0117_705_1,-74.9049205,39.4885555,4314 ONEHAHA TRAIL,MULLICA TWP,16,1980,1,RES1,3001 -0117_705_3,-74.78666233,39.63393985,4317 PLEASANT MILLS ROAD,MULLICA TWP,16,1964,1,RES1,3001 -0117_705_5,-74.68172572,39.44605658,4327 PLEASANT MILLS ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_705_6,-74.50206834,39.33529699,4324 JACKSON ROAD,MULLICA TWP,16,1967,1,RES1,3001 -0117_706_10,-74.45178581,39.37284691,4304 PLEASANT MILLS ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_706_11,-74.545089,39.3904835,4312 PLEASANT MILLS ROAD,MULLICA TWP,16,1957,1,RES1,3001 -0117_706_12,-74.75497065,39.44853651,4320 PLEASANT MILLS ROAD,MULLICA TWP,,0,1,GOV1,3004 -0117_706_13,-74.66625528,39.45699005,4326 PLEASANT MILLS ROAD,MULLICA TWP,16,1919,1,RES1,3001 -0117_706_15,-74.52286086,39.38922783,4400 PLEASANT MILLS ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_706_16,-74.83151442,39.48326069,4410 PLEASANT MILLS ROAD,MULLICA TWP,16,1955,1,COM4,3004 -0117_706_17,-74.64031898,39.36097782,4420 PLEASANT MILLS ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_706_18,-74.87654351,39.59243317,4430 PLEASANT MILLS ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_706_2,-74.62303932,39.41235846,4178 PLEASANT MILLS ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_706_5,-74.57821586,39.4311468,4192 PLEASANT MILLS ROAD,MULLICA TWP,16,1821,1,RES1,3001 -0117_706_6,-74.52002566,39.44305807,4196 PLEASANT MILLS ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_706_7,-74.78317166,39.66384602,4200 PLEASANT MILLS ROAD,MULLICA TWP,15,1750,1,RES1,3001 -0117_706_8,-74.7954875,39.6462425,4218 PLEASANT MILLS ROAD,MULLICA TWP,17,1972,1,RES1,3001 -0117_706_9,-74.80801051,39.62891899,4230 PLEASANT MILLS ROAD,MULLICA TWP,17,1984,1,RES1,3001 -0117_707_2,-74.5758362,39.47737777,4323 JACKSON ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_707_3,-74.51183711,39.32176555,4333 JACKSON ROAD,MULLICA TWP,16,1979,1,RES1,3001 -0117_7101_13,-74.78375703,39.60957085,2301 ELWOOD ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_7101_3,-74.63286944,39.4318656,2169 ELWOOD ROAD,MULLICA TWP,15,1927,1,RES1,3001 -0117_7101_5,-74.5400925,39.4731745,2201 ELWOOD ROAD,MULLICA TWP,,1953,1,RES1,3001 -0117_7101_6,-74.46125821,39.35591347,2219 ELWOOD ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_7201_9,-74.50269317,39.32490961,4846 INDIAN CABIN ROAD,MULLICA TWP,16,1995,1,RES1,3001 -0117_7302_12,-74.84532977,39.37903484,2161 SEVENTH AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_7302_2,-74.57865392,39.3388651,2251 SEVENTH AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_7302_9,-74.65024285,39.40469637,2175 SEVENTH AVENUE,MULLICA TWP,16,1978,1,RES1,3001 -0117_7403_25,-74.8023165,39.633849,1831 FOURTH AVENUE,MULLICA TWP,16,2010,1,GOV1,3004 -0117_7501_3,-74.65610568,39.55946668,1651 ELWOOD ROAD,MULLICA TWP,16,1987,1,RES1,3001 -0117_7703_13,-74.75466639,39.42995355,2060 SEVENTH AVENUE,MULLICA TWP,15,1983,1,RES1,3001 -0117_7703_4,-74.55015367,39.3673155,2150 SEVENTH AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_7703_5,-74.5973135,39.3800085,2140 SEVENTH AVENUE,MULLICA TWP,16,1995,1,RES1,3001 -0117_7703_9,-74.71179713,39.64542719,2110 SEVENTH AVENUE,MULLICA TWP,15,2000,1,RES1,3001 -0117_7704_10,-74.74695116,39.64224799,2081 SEVENTH AVENUE,MULLICA TWP,16,1986,1,RES1,3001 -0117_7704_11,-74.53600966,39.40633889,2071 SEVENTH AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_7704_3,-74.45283823,39.3531339,2137 SEVENTH AVENUE,MULLICA TWP,16,1984,1,RES1,3001 -0117_7704_4,-74.7969025,39.4583935,2131 SEVENTH AVENUE,MULLICA TWP,16,1984,1,COM1,3004 -0117_7704_5.01,-74.933363,39.496052,2127 SEVENTH AVENUE,MULLICA TWP,16,1980,1,GOV1,3004 -0117_7704_6,-74.87925045,39.59679086,2121 SEVENTH AVENUE,MULLICA TWP,16,1984,1,RES1,3001 -0117_7704_9,-74.4941035,39.3377435,2087 SEVENTH AVENUE,MULLICA TWP,16,1981,1,RES1,3001 -0117_801_10.01,-74.8182355,39.6534485,3606 NESCO ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_801_10.02,-74.81432038,39.64128971,3600 NESCO ROAD,MULLICA TWP,16,1974,1,GOV1,3004 -0117_801_11,-74.4804544,39.33745983,3610 NESCO ROAD,MULLICA TWP,16,1770,1,RES1,3001 -0117_801_12,-74.5440687,39.38323489,3616 NESCO ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_801_13,-74.48149149,39.33828066,3626 NESCO ROAD,MULLICA TWP,15,1950,1,RES1,3001 -0117_801_14,-74.637792,39.4081945,3636 NESCO ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_801_15,-74.4439655,39.3718725,3644 NESCO ROAD,MULLICA TWP,15,1700,1,RES1,3001 -0117_801_16,-74.78355,39.609795,3650 NESCO ROAD,MULLICA TWP,15,1925,1,RES1,3001 -0117_801_18,-74.85340118,39.44195746,3704 NESCO ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_801_19,-74.514585,39.319899,3710 NESCO ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_801_20,-74.52701945,39.3905462,3720 NESCO ROAD,MULLICA TWP,16,1800,1,RES1,3001 -0117_801_21,-74.58040563,39.33734417,3740 NESCO ROAD,MULLICA TWP,16,1989,1,RES1,3001 -0117_801_22,-74.656957,39.5919075,3760 NESCO ROAD,MULLICA TWP,16,1964,1,RES1,3001 -0117_801_22.01,-74.82774263,39.53417826,3762 NESCO ROAD,MULLICA TWP,16,1995,1,RES1,3001 -0117_801_5,-74.60277777,39.37046158,3440 HANKINS ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_801_7,-74.51058486,39.32260359,3510 HANKINS ROAD,MULLICA TWP,16,1950,1,RES3A,3001 -0117_8203_1,-74.59934062,39.41793479,2020 SEVENTH AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_8203_10,-74.5190465,39.323357,2000 SEVENTH AVENUE,MULLICA TWP,13,1960,1,RES1,3001 -0117_8203_3,-74.50569866,39.45924303,5018 INDIAN CABIN ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_8203_4,-74.52071246,39.38971479,5022 INDIAN CABIN ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_8203_9,-74.82843365,39.38841387,2010 SEVENTH AVENUE,MULLICA TWP,16,1991,1,RES1,3001 -0117_8204_1,-74.70170962,39.41959837,5001 INDIAN CABIN ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_8204_3,-74.7168925,39.3965795,5021 INDIAN CABIN ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_8301_9,-74.50035178,39.43387639,1830 FOURTH AVENUE,MULLICA TWP,16,1952,1,RES1,3001 -0117_8404_13,-74.363774,39.4149385,1620 SEVENTH AVENUE,MULLICA TWP,16,1974,1,RES1,3001 -0117_8404_14,-74.5119,39.48452,1610 SEVENTH AVENUE,MULLICA TWP,16,1992,1,RES1,3001 -0117_8404_7,-74.55340475,39.37173263,1736 SEVENTH AVENUE,MULLICA TWP,16,2000,1,RES1,3001 -0117_8404_8,-74.57907332,39.38280393,1730 SEVENTH AVENUE,MULLICA TWP,16,1968,1,RES1,3001 -0117_8406_1,-74.61486703,39.37253112,1821 SEVENTH AVENUE,MULLICA TWP,16,1958,1,RES1,3001 -0117_8406_3,-74.63301403,39.41540193,5100 INDIAN CABIN ROAD,MULLICA TWP,16,1969,1,RES1,3001 -0117_8406_4,-74.53957865,39.38697104,5136 INDIAN CABIN ROAD,MULLICA TWP,16,1993,1,RES1,3001 -0117_8407_1,-74.82214746,39.60532885,5101 INDIAN CABIN ROAD,MULLICA TWP,16,2005,1,RES1,3001 -0117_8407_10,-74.83640561,39.45469732,5133 INDIAN CABIN ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_8407_13,-74.81557056,39.63600966,5137 INDIAN CABIN ROAD,MULLICA TWP,16,1953,1,RES1,3001 -0117_8407_2,-74.4931115,39.3359955,1723 SEVENTH AVENUE,MULLICA TWP,15,1960,1,RES1,3001 -0117_8407_3,-74.5693948,39.36658152,1715 SEVENTH AVENUE,MULLICA TWP,16,1959,1,RES1,3001 -0117_8407_4,-74.76314785,39.35125371,1701 SEVENTH AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_8407_5,-74.75376581,39.30021082,1631 SEVENTH AVENUE,MULLICA TWP,16,1979,1,RES1,3001 -0117_8407_7,-74.807779,39.535412,1621 SEVENTH AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_8407_8,-74.587941,39.326597,1611 SEVENTH AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_8410_1,-74.67633172,39.38729359,5218 INDIAN CABIN ROAD,MULLICA TWP,15,1980,1,RES1,3001 -0117_8411_2,-74.69184944,39.35294817,5211 INDIAN CABIN ROAD,MULLICA TWP,14,1958,1,RES1,3001 -0117_8411_3,-74.91796602,39.49239377,5219 INDIAN CABIN ROAD,MULLICA TWP,16,1987,1,REL1,3004 -0117_8411_4,-74.5090695,39.3290525,5227 INDIAN CABIN ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_8411_6,-74.37752653,39.41669078,1610 FIFTH AVENUE,MULLICA TWP,16,1992,1,RES1,3001 -0117_8411_7,-74.57653061,39.41739718,1700 FIFTH AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_8501_4,-74.80871325,39.6137949,1820 FOURTH AVENUE,MULLICA TWP,16,1993,1,RES1,3001 -0117_8501_6,-74.62392844,39.31379678,1800 FOURTH AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_8501_7,-74.62786257,39.43346491,1730 FOURTH AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_8502_1,-74.5018548,39.33593348,1821 FOURTH AVENUE,MULLICA TWP,16,1981,1,RES1,3001 -0117_8502_2,-74.46282764,39.34816053,1801 FOURTH AVENUE,MULLICA TWP,16,1925,2,RES1,3001 -0117_8503_1,-74.43925616,39.3655819,5421 INDIAN CABIN ROAD,MULLICA TWP,16,1972,2,RES1,3001 -0117_8503_2,-74.6127462,39.31845313,1701 FOURTH AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_8503_5,-74.51012751,39.33649034,1712 HANOVER AVENUE,MULLICA TWP,16,1970,1,RES1,3001 -0117_8503_6,-74.57216309,39.35248265,1700 HANOVER AVENUE,MULLICA TWP,16,1943,1,RES1,3001 -0117_8504_4,-74.580728,39.4735515,1611 FIFTH AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_8504_7,-74.5940715,39.328253,1710 FOURTH AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_8601_1,-74.563278,39.3632565,1701 HANOVER AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_8601_11,-74.64166,39.426485,1550 DARMSTADT AVENUE,MULLICA TWP,16,1985,1,COM1,3004 -0117_8601_12,-74.50731697,39.40725835,1551 HANOVER AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8601_8,-74.36329358,39.40980315,1700 DARMSTADT AVENUE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8701_1,-74.65012802,39.34329483,1533 DARMSTADT AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_8701_10,-74.5172445,39.401812,1801 DARMSTADT AVENUE,MULLICA TWP,16,1964,1,RES1,3001 -0117_8701_2,-74.57086588,39.36839018,1629 DARMSTADT AVENUE,MULLICA TWP,16,1940,1,GOV1,3004 -0117_8701_5.01,-74.64564288,39.43429745,1701 DARMSTADT AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_8701_5.02,-74.75934524,39.42951462,1711 DARMSTADT AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_8701_6,-74.562035,39.415235,1721 DARMSTADT AVENUE,MULLICA TWP,16,1964,1,RES1,3001 -0117_8701_7,-74.5105945,39.409302,1729 DARMSTADT AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_8801_10,-74.54435984,39.38532003,1608 HAMBURG AVENUE,MULLICA TWP,16,1920,1,GOV1,3004 -0117_8801_11,-74.81821146,39.62276636,1602 HAMBURG AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_8801_9,-74.49251385,39.34019056,1616 HAMBURG AVENUE,MULLICA TWP,16,1980,1,RES1,3001 -0117_8901_1,-74.36152919,39.41129582,4656 AVENUE A,MULLICA TWP,,0,1,RES1,3001 -0117_8901_2,-74.470868,39.491428,1611 ELWOOD ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_8901_9,-74.71077331,39.47077445,4624 AVENUE A,MULLICA TWP,,0,1,RES1,3001 -0117_8902_1,-74.3772425,39.396483,4657 AVENUE A,MULLICA TWP,,0,1,GOV1,3004 -0117_8902_2,-74.56127,39.359825,1531 ELWOOD ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_8902_26,-74.48338959,39.35171677,4616 SOCCER LANE,MULLICA TWP,,0,1,RES1,3001 -0117_8902_9,-74.65249,39.3446885,4625 AVENUE A,MULLICA TWP,,0,1,RES1,3001 -0117_8903_1,-74.75455252,39.44636892,1513 ELWOOD ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_8904_1,-74.5931985,39.3446345,4609 BASEBALL LANE,MULLICA TWP,,0,1,RES1,3001 -0117_8904_20,-74.804337,39.6580725,1340 WEEKSTOWN ROAD,MULLICA TWP,17,2015,1,RES1,3001 -0117_8904_22,-74.51354134,39.3311518,1320 WEEKSTOWN ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_8904_23,-74.59188692,39.36543547,1314 WEEKSTOWN ROAD,MULLICA TWP,16,1984,1,RES1,3001 -0117_8904_24,-74.86353263,39.43889353,1308 WEEKSTOWN ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_8904_25,-74.83037397,39.61176253,1270 WEEKSTOWN ROAD,MULLICA TWP,,0,1,RES1,3001 -0117_8904_26,-74.58101839,39.42549653,1252 WEEKSTOWN ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_8904_31,-74.55042284,39.47744421,1247 ELWOOD ROAD,MULLICA TWP,15,1870,1,RES1,3001 -0117_8904_32,-74.503301,39.417645,1237 ELWOOD ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_8905_10,-74.55171031,39.36684746,1342 WHITE OAK CIRCLE,MULLICA TWP,16,1984,1,RES1,3001 -0117_8905_11,-74.38291645,39.39930372,1346 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8905_12,-74.53494357,39.38335035,1348 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8905_13,-74.81874147,39.54025055,1352 WHITE OAK CIRCLE,MULLICA TWP,16,1986,1,RES1,3001 -0117_8905_14,-74.52228069,39.39566003,1356 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,GOV1,3004 -0117_8905_16,-74.515684,39.403914,1380 WHITE OAK CIRCLE,MULLICA TWP,16,1998,1,RES1,3001 -0117_8905_17,-74.5792659,39.31176749,1384 WHITE OAK CIRCLE,MULLICA TWP,16,1988,1,RES1,3001 -0117_8905_19,-74.831701,39.6094345,1392 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8905_20,-74.48226,39.352444,1396 WHITE OAK CIRCLE,MULLICA TWP,16,1986,1,RES1,3001 -0117_8905_21,-74.90819269,39.49371397,1400 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8905_22,-74.60958201,39.48626775,1406 WHITE OAK CIRCLE,MULLICA TWP,16,1986,1,RES1,3001 -0117_8905_23,-74.69033421,39.52047429,1408 WHITE OAK CRICLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8905_24,-74.45041369,39.37257953,4651 BLACK OAK DR SOUTH,MULLICA TWP,16,1987,1,RES1,3001 -0117_8905_25,-74.8767245,39.4990135,1326 ELWOOD ROAD,MULLICA TWP,16,1973,1,RES1,3001 -0117_8905_26,-74.51811433,39.40308594,1317 ELWOOD ROAD,MULLICA TWP,16,1985,1,RES1,3001 -0117_8905_27,-74.43974209,39.36857819,1311 ELWOOD ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_8905_4,-74.4705212,39.49403973,4648 BLACK OAK DR NORTH,MULLICA TWP,16,1986,1,RES1,3001 -0117_8905_5,-74.80658254,39.63511751,1324 WHITE OAK CIRCLE,MULLICA TWP,16,1980,1,GOV1,3004 -0117_8905_6,-74.81162466,39.63532297,1328 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8905_7,-74.623628,39.491471,1330 WHITE OAK CIRCLE,MULLICA TWP,16,1988,1,RES1,3001 -0117_8905_8,-74.54484933,39.37384483,1334 WHITE OAK CIRCLE,MULLICA TWP,16,1988,1,RES1,3001 -0117_8905_9,-74.7287925,39.4528905,1338 WHITE OAK CIRCLE,MULLICA TWP,16,1988,1,RES1,3001 -0117_8906_1,-74.59033126,39.35320355,1335 WHITE OAK CIRCLE,MULLICA TWP,15,1986,1,RES1,3001 -0117_8906_10,-74.6272316,39.43902202,1313 WHITE OAK CIRCLE,MULLICA TWP,16,1989,1,RES1,3001 -0117_8906_11,-74.819756,39.6434715,1371 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_12,-74.53860075,39.37355168,1309 WHITE OAK CIRCLE,MULLICA TWP,16,1988,1,RES1,3001 -0117_8906_13,-74.6117699,39.31850164,1375 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_14,-74.5580195,39.375482,1305 WHITE OAK CIRCLE,MULLICA TWP,16,1982,1,RES1,3001 -0117_8906_15,-74.553326,39.372163,1379 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_16,-74.87344493,39.59204468,1301 WHITE OAK CIRCLE,MULLICA TWP,16,1980,1,RES1,3001 -0117_8906_17,-74.9774545,39.5122015,1393 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_18,-74.59748947,39.35712635,1401 WHITE OAK CIRCLE,MULLICA TWP,16,1986,1,RES1,3001 -0117_8906_2,-74.57100206,39.41401089,1343 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_3,-74.518249,39.3976945,1355 WHITE OAK CIRCLE,MULLICA TWP,16,1986,1,RES1,3001 -0117_8906_4,-74.88071994,39.47043851,1325 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_5,-74.72471317,39.45095378,1359 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_6,-74.37906289,39.39922972,1321 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_7,-74.75527469,39.42910737,1363 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8906_8,-74.52351955,39.41771082,1317 WHITE OAK CIRCLE,MULLICA TWP,16,1984,1,RES1,3001 -0117_8906_9,-74.51255471,39.40481849,1367 WHITE OAK CIRCLE,MULLICA TWP,16,1987,1,RES1,3001 -0117_8907_1,-74.66341787,39.63838943,1314 WHITE OAK CIRCLE,MULLICA TWP,16,1980,1,RES1,3001 -0117_8907_2,-74.48808307,39.45723005,4649 BLACK OAK DR NORTH,MULLICA TWP,16,1982,1,RES1,3001 -0117_8907_3,-74.556534,39.4762595,1347 ELWOOD ROAD,MULLICA TWP,16,1975,1,RES1,3001 -0117_8907_4,-74.4933515,39.332338,1341 ELWOOD ROAD,MULLICA TWP,16,1975,1,RES1,3001 -0117_8907_5,-74.6045903,39.32743388,1308 WHITE OAK CIRCLE,MULLICA TWP,16,1980,1,RES1,3001 -0117_8907_6,-74.4984785,39.331863,1335 ELWOOD ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_8907_7,-74.4851145,39.522727,1304 WHITE OAK CIRCLE,MULLICA TWP,16,1982,1,RES1,3001 -0117_8907_8,-74.738017,39.656017,4646 BLACK OAK DR SOUTH,MULLICA TWP,16,1982,1,RES1,3001 -0117_8907_9,-74.81459,39.6261225,4640 BLACK OAK DR SOUTH,MULLICA TWP,16,1989,1,RES1,3001 -0117_8908_3,-74.60042056,39.37191035,1345 WEEKSTOWN ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_8908_4,-74.6127375,39.425779,1337 WEEKSTOWN ROAD,MULLICA TWP,16,1984,1,RES1,3001 -0117_8908_6,-74.73948287,39.43034867,1315 WEEKSTOWN ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_8908_8,-74.79098642,39.53224976,4760 BAREMORE ROAD,MULLICA TWP,15,1960,1,RES1,3001 -0117_9003_1,-74.61706995,39.43744111,1600 WEEKSTOWN ROAD,MULLICA TWP,15,1976,1,RES1,3001 -0117_902_11,-74.5522265,39.406478,2172 RICHARDS AVENUE,MULLICA TWP,16,1976,1,RES1,3004 -0117_902_12,-74.572074,39.3416895,2178 RICHARDS AVENUE,MULLICA TWP,16,1977,1,RES1,3001 -0117_902_15,-74.45072323,39.37097181,2190 RICHARDS AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_902_16,-74.90931583,39.49425817,2204 RICHARDS AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_902_2,-74.6804295,39.5046,3040 NEIL ROAD,MULLICA TWP,15,1930,1,RES1,3001 -0117_902_3,-74.87790387,39.59153595,3044 NEIL ROAD,MULLICA TWP,16,1945,1,RES1,3001 -0117_902_4,-74.49914471,39.53708243,3048 NEIL ROAD,MULLICA TWP,16,1978,1,RES1,3001 -0117_902_6,-74.63963883,39.32763424,3060 NEIL ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_902_9,-74.6686822,39.50989393,3120 NEIL ROAD,MULLICA TWP,16,1880,1,RES1,3001 -0117_903_2,-74.46907834,39.34604986,2240 RICHARDS AVENUE,MULLICA TWP,,0,1,RES1,3001 -0117_903_4,-74.60913269,39.39239455,2266 RICHARDS AVENUE,MULLICA TWP,,1960,1,RES1,3001 -0117_9201_3,-74.51116256,39.33027017,1401 FIFTH AVENUE,MULLICA TWP,15,1955,1,RES1,3001 -0117_9301_1,-74.59841495,39.31165918,1221 ELWOOD ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_9301_2,-74.58167791,39.364637,1215 ELWOOD ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_9301_4,-74.6508235,39.467056,1131 ELWOOD ROAD,MULLICA TWP,16,1955,1,RES1,3001 -0117_9301_5,-74.63591532,39.41919038,1127 ELWOOD ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_9301_6,-74.56721538,39.40735626,1121 ELWOOD ROAD,MULLICA TWP,16,1975,1,RES1,3001 -0117_9301_7.01,-74.63111922,39.36179896,1111 ELWOOD ROAD,MULLICA TWP,16,1998,1,RES1,3001 -0117_9301_8,-74.611277,39.326256,1013 ELWOOD ROAD,MULLICA TWP,16,1907,1,RES1,3001 -0117_9301_9,-74.5492015,39.4692705,1001 COLUMBIA ROAD,MULLICA TWP,16,1984,2,RES1,3001 -0117_9302_10,-74.7371555,39.453511,1305 WEEKSTOWN ROAD,MULLICA TWP,16,1979,1,GOV1,3004 -0117_9302_3,-74.57041399,39.42701983,1017 WEEKSTOWN ROAD,MULLICA TWP,16,2008,1,RES1,3004 -0117_9302_5,-74.5958765,39.3707045,901 COLUMBIA ROAD,MULLICA TWP,15,1860,1,RES1,3001 -0117_9302_8,-74.57212767,39.37251103,4700 BAREMORE ROAD,MULLICA TWP,15,1910,1,RES1,3001 -0117_9304_3,-74.49485767,39.34088735,923 ELWOOD ROAD,MULLICA TWP,16,1971,1,RES1,3001 -0117_9304_4,-74.51889373,39.40577386,901 ELWOOD ROAD,MULLICA TWP,15,1920,1,RES1,3001 -0117_9305_1,-74.49853714,39.33555104,819 ELWOOD ROAD,MULLICA TWP,16,1963,1,RES1,3001 -0117_9305_2,-74.661698,39.609292,811 ELWOOD ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_9305_3,-74.947072,39.5303355,801 ELWOOD ROAD,MULLICA TWP,16,1910,1,RES1,3001 -0117_9306_10,-74.484602,39.337842,4701 BAREMORE ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_9306_11,-74.57282936,39.35539118,4709 BAREMORE ROAD,MULLICA TWP,16,1975,1,RES1,3001 -0117_9306_13,-74.51706541,39.4579905,4749 BAREMORE ROAD,MULLICA TWP,16,1980,1,RES1,3001 -0117_9306_18.02,-74.81910504,39.64389307,4808 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_9306_19,-74.77547998,39.61456723,4744 MOSS MILL ROAD,MULLICA TWP,16,1972,1,GOV1,3004 -0117_9306_2,-74.72002133,39.48105175,827 COLUMBIA ROAD,MULLICA TWP,16,1910,1,RES1,3001 -0117_9306_21,-74.52287482,39.54047833,4764 MOSS MILL ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_9306_22,-74.46094504,39.35549147,4770 MOSS MILL ROAD,MULLICA TWP,16,1986,1,RES1,3001 -0117_9306_6,-74.70108333,39.51094355,801 COLUMBIA ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_9306_8,-74.5425835,39.3780575,4695 BAREMORE ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_9401_10,-74.82934036,39.56693247,4944 MOSS MILL ROAD,MULLICA TWP,16,1988,1,RES1,3001 -0117_9401_11,-74.59146434,39.32730245,4948 MOSS MILL ROAD,MULLICA TWP,16,1960,2,RES1,3001 -0117_9401_12,-74.5075865,39.3402935,4952 MOSS MILL ROAD,MULLICA TWP,16,1970,1,RES1,3001 -0117_9401_14,-74.77346789,39.66068655,4964 MOSS MILL ROAD,MULLICA TWP,14,1970,1,RES1,3001 -0117_9401_17,-74.490571,39.3354445,5006 MOSS MILL ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_9401_18,-74.58405149,39.48666829,5012 MOSS MILL ROAD,MULLICA TWP,13,1970,1,RES1,3001 -0117_9401_4,-74.88398915,39.59907468,4912 MOSS MILL ROAD,MULLICA TWP,16,1965,1,RES1,3001 -0117_9401_6,-74.4792685,39.3384295,4916 MOSS MILL ROAD,MULLICA TWP,16,1960,1,RES1,3001 -0117_9401_7,-74.754557,39.433248,4926 MOSS MILL ROAD,MULLICA TWP,16,1985,1,RES1,3001 -0117_9401_9,-74.36871806,39.41458068,4940 MOSS MILL ROAD,MULLICA TWP,16,1971,1,RES1,3001 -0117_9502_2,-74.40075723,39.38998104,5018 MOSS MILL ROAD,MULLICA TWP,16,1959,1,RES1,3001 -0117_9502_4,-74.547636,39.4711285,5036 MOSS MILL ROAD,MULLICA TWP,16,1982,1,RES1,3001 -0117_9502_7,-74.51455468,39.40284301,5044 MOSS MILL ROAD,MULLICA TWP,16,1961,1,RES1,3001 -0117_9502_9,-74.76091316,39.65508701,5056 MOSS MILL ROAD,MULLICA TWP,16,1985,1,RES1,3001 -0117_9503_13,-74.53214368,39.38842457,1210 SIXTH AVENUE,MULLICA TWP,16,1920,1,RES1,3001 -0117_9503_14,-74.609892,39.324367,1200 SIXTH AVENUE,MULLICA TWP,16,1930,1,RES1,3001 -0117_9503_15,-74.60911865,39.37822623,1124 SIXTH AVENUE,MULLICA TWP,14,1970,1,RES1,3001 -0117_9503_16,-74.58518501,39.36126283,1120 SIXTH AVENUE,MULLICA TWP,16,1965,1,GOV1,3004 -0117_9503_17,-74.80765399,39.61320215,1112 SIXTH AVENUE,MULLICA TWP,16,1954,2,RES1,3001 -0117_9503_4,-74.79171651,39.64429133,1221 SEVENTH AVENUE,MULLICA TWP,16,1991,1,RES1,3001 -0117_9504_4,-74.61809867,39.31027868,5110 MOSS MILL ROAD,MULLICA TWP,15,1964,1,RES1,3001 -0117_9504_5,-74.54287715,39.37753538,5114 MOSS MILL ROAD,MULLICA TWP,16,1976,1,RES1,3001 -0117_9504_6,-74.8910925,39.55814,5120 MOSS MILL ROAD,MULLICA TWP,15,1965,1,RES1,3001 -0117_9504_7,-74.51080048,39.33815066,5130 MOSS MILL ROAD,MULLICA TWP,16,1975,1,RES1,3001 -0117_9504_8,-74.54716572,39.46652607,5136 MOSS MILL ROAD,MULLICA TWP,16,1989,1,RES1,3001 -0117_9505_10,-74.86241266,39.49528467,1320 FIFTH AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_9505_11,-74.76232003,39.42974266,1310 FIFTH AVENUE,MULLICA TWP,16,1965,1,RES1,3001 -0117_9505_13,-74.77979282,39.66061995,1200 FIFTH AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_9505_6,-74.56573579,39.37460161,1121 SIXTH AVENUE,MULLICA TWP,16,1961,1,RES1,3004 -0117_9505_8,-74.603442,39.3277745,1330 FIFTH AVENUE,MULLICA TWP,16,1989,1,RES1,3001 -0117_9601_1,-74.5695875,39.411686,1331 FIFTH AVENUE,MULLICA TWP,16,1966,1,RES1,3001 -0117_9601_2,-74.4320335,39.366979,1321 FIFTH AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_9601_8,-74.50223713,39.40833071,5300 MOSS MILL ROAD,MULLICA TWP,15,1940,1,RES1,3001 -0117_9602_5,-74.37981805,39.41784317,5416 MOSS MILL ROAD,MULLICA TWP,16,1981,1,RES1,3001 -0117_9603_3,-74.915498,39.5514325,5423 MOSS MILL ROAD,MULLICA TWP,16,1976,1,COM3,3004 -0117_9604_2,-74.63433254,39.36568592,5350 DUERER STREET,MULLICA TWP,16,1990,1,COM4,3004 -0117_9701_1,-74.55643698,39.39780565,5500 MOSS MILL ROAD,MULLICA TWP,16,1968,1,RES1,3001 -0117_9701_11,-74.52422483,39.31588651,1318 DARMSTADT AVENUE,MULLICA TWP,16,1935,1,RES1,3001 -0117_9701_13,-74.5794965,39.3597665,5614 MOSS MILL ROAD,MULLICA TWP,16,1977,1,RES1,3001 -0117_9701_14,-74.79336457,39.6179769,5600 MOSS MILL ROAD,MULLICA TWP,16,1982,1,RES1,3001 -0117_9701_2,-74.81092483,39.52488279,5520 MOSS MILL ROAD,MULLICA TWP,15,1896,1,RES1,3001 -0117_9701_3.01,-74.62803364,39.41403543,1230 WILLARTZ STREET,MULLICA TWP,16,1995,1,RES1,3001 -0117_9701_3.02,-74.75857859,39.4309579,1238 WILLARTZ STREET,MULLICA TWP,16,1985,1,RES1,3001 -0117_9701_4,-74.5470791,39.37800387,1248 WILLARTZ STREET,MULLICA TWP,16,1930,1,RES1,3001 -0117_9701_6,-74.62267451,39.60624503,1416 DARMSTADT AVENUE,MULLICA TWP,16,1920,2,RES1,3001 -0117_9701_8,-74.54580618,39.37373468,1408 DARMSTADT AVENUE,MULLICA TWP,16,1976,1,RES1,3001 -0117_9701_9,-74.56053332,39.54338814,1400 DARMSTADT AVENUE,MULLICA TWP,16,1985,1,RES1,3001 -0117_9702_11,-74.76062303,39.64073833,1112 DARMSTADT AVENUE,MULLICA TWP,16,1926,1,GOV1,3004 -0117_9702_3,-74.811675,39.64158,5521 MOSS MILL ROAD,MULLICA TWP,16,1991,1,RES1,3001 -0117_9702_7,-74.57446037,39.41301932,5541 MOSS MILL ROAD,MULLICA TWP,16,1981,1,RES1,3001 -0117_9702_8,-74.75661496,39.30401716,1200 DARMSTADT AVENUE,MULLICA TWP,16,1900,1,RES1,3001 -0117_9801_1,-74.5554355,39.3580865,5634 DUERER STREET,MULLICA TWP,16,1994,1,RES1,3001 -0117_9801_11,-74.498594,39.4131985,1201 DARMSTADT AVENUE,MULLICA TWP,,1920,1,RES1,3001 -0117_9801_13,-74.53606785,39.38337346,1217 DARMSTADT AVENUE,MULLICA TWP,16,1935,1,RES1,3001 -0117_9801_14,-74.68965074,39.44942997,1223 DARMSTADT AVENUE,MULLICA TWP,16,2006,1,RES1,3001 -0117_9801_16,-74.45680034,39.35030407,5715 MOSS MILL ROAD,MULLICA TWP,16,1987,1,RES1,3002 -0117_9801_18.02,-74.5486444,39.38576702,1200 HEIDELBERG AVENUE,MULLICA TWP,16,1988,1,RES1,3001 -0117_9801_18.03,-74.61388769,39.31952561,1220 HEIDELBERG AVENUE,MULLICA TWP,16,1990,1,RES1,3001 -0117_9801_2,-74.63149098,39.4895337,5646 DUERER STREET,MULLICA TWP,16,1950,1,RES1,3001 -0117_9801_6,-74.78062193,39.44477382,5660 DUERER STREET,MULLICA TWP,16,1934,1,RES1,3001 -0117_9802_10,-74.613928,39.4245085,5740 MOSS MILL ROAD,MULLICA TWP,15,1930,2,COM1,3004 -0117_9802_11,-74.90304201,39.54703872,5734 MOSS MILL ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_9802_12,-74.69581904,39.58369564,5728 MOSS MILL ROAD,MULLICA TWP,16,1935,1,COM4,3004 -0117_9802_13,-74.50525303,39.32637917,5720 MOSS MILL ROAD,MULLICA TWP,16,1966,1,RES1,3001 -0117_9802_3,-74.63374337,39.48270624,1401 DARMSTADT AVENUE,MULLICA TWP,16,1850,1,GOV1,3004 -0117_9802_6,-74.5394575,39.4606375,1410 HEIDELBERG AVENUE,MULLICA TWP,16,1940,1,RES1,3001 -0117_9802_7,-74.372109,39.414479,1334 HEIDELBERG AVENUE,MULLICA TWP,16,1964,1,RES1,3001 -0117_9802_8,-74.618068,39.319891,5716 MOSS MILL ROAD,MULLICA TWP,16,1937,1,RES1,3001 -0117_9802_9,-74.60208233,39.31432995,1326 HEIDELBERG AVENUE,MULLICA TWP,,0,1,COM1,3004 -0117_9901_1,-74.63693158,39.59215322,5800 MOSS MILL ROAD,MULLICA TWP,16,1950,1,RES1,3001 -0117_9901_2,-74.7919725,39.416752,5844 MOSS MILL ROAD,MULLICA TWP,16,1920,1,RES1,3001 -0117_9901_3,-74.61305808,39.42087673,1526 HAMBURG AVENUE,MULLICA TWP,15,1946,1,RES1,3001 -0117_9901_4,-74.5696415,39.4121655,1520-1524 HAMBURG AVENUE,MULLICA TWP,15,1900,1,RES1,3001 -0117_9901_5,-74.63958906,39.47240094,1510 HAMBURG AVENUE,MULLICA TWP,16,1880,1,RES1,3001 -0117_9901_6,-74.54470353,39.37299584,1500 HAMBURG AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_9901_8,-74.51347507,39.41101631,5840 MOSS MILL ROAD,MULLICA TWP,16,1930,1,RES1,3001 -0117_9902_1,-74.926078,39.508163,5800 DUERER STREET,MULLICA TWP,16,1965,1,RES1,3001 -0117_9902_10.01,-74.60468141,39.4095885,5911-5913 MOSS MILL ROAD,MULLICA TWP,47,1989,2,RES1,3001 -0117_9902_10.02,-74.575222,39.4114485,1330 HAMBURG AVENUE,MULLICA TWP,15,1970,1,RES1,3001 -0117_9902_11,-74.59956433,39.40968744,1120 HAMBURG AVENUE,MULLICA TWP,16,1950,1,RES1,3001 -0117_9902_12,-74.5357833,39.40754777,1110 HAMBURG AVENUE,MULLICA TWP,16,1975,1,RES1,3001 -0117_9902_13,-74.86400216,39.56688053,5942 DUERER STREET,MULLICA TWP,,0,1,RES1,3001 -0117_9902_14,-74.4710735,39.4939955,5930 DUERER STREET,MULLICA TWP,16,1750,1,RES1,3001 -0117_9902_15,-74.44657,39.3573645,5926 DUERER STREET,MULLICA TWP,16,1954,1,RES1,3001 -0117_9902_16,-74.761261,39.308399,5916 DUERER STREET,MULLICA TWP,16,1985,1,RES1,3001 -0117_9902_2,-74.54882837,39.40197518,1115 HEIDELBERG AVENUE,MULLICA TWP,16,1960,1,RES1,3001 -0117_9902_3,-74.53607984,39.30496647,5812 DUERER STREET,MULLICA TWP,16,1970,1,RES1,3001 -0117_9902_4,-74.68810426,39.59789603,5820 DUERER STREET,MULLICA TWP,16,1960,1,RES1,3001 -0117_9902_5,-74.63941594,39.45770684,5830 DUERER STREET,MULLICA TWP,16,1950,1,RES1,3001 -0117_9902_6,-74.5971825,39.4435005,1201 HEIDELBERG AVENUE,MULLICA TWP,,0,1,GOV1,3004 -0117_9902_7,-74.64346817,39.534325,1311 HEIDELBERG AVENUE,MULLICA TWP,16,1996,1,RES1,3001 -0117_9902_9,-74.58828319,39.43004844,5901 MOSS MILL ROAD,MULLICA TWP,16,1972,1,RES1,3001 -0117_9905_3,-74.54621,39.495784,1226 HAMBURG AVENUE,MULLICA TWP,16,2001,1,RES1,3001 -0118_1_11,-74.47880915,39.34598251,2701 ZION RD,NORTHFIELD CITY,17,1890,1,RES1,3001 -0118_1_12.01,-74.398383,39.394226,2615 ZION RD,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_1_12.02,-74.46337088,39.35323021,2613 ZION RD,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_1_2.01,-74.463357,39.3502035,2 CEDAR SPRINGS DRIVE,NORTHFIELD CITY,17,2014,1,RES1,3001 -0118_1_2.03,-74.50226578,39.33730399,6 CEDAR SPRINGS DR,NORTHFIELD CITY,17,2016,1,RES1,3001 -0118_1_2.04,-74.43151465,39.37279037,8 CEDAR SPRINGS DR,NORTHFIELD CITY,17,2014,1,RES1,3001 -0118_1_2.08,-74.48281909,39.34189752,1 CEDAR SPRINGS DRIVE,NORTHFIELD CITY,17,2014,1,RES1,3001 -0118_1_5,-74.57942507,39.44600921,2819 ZION RD,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_1_6,-74.6563855,39.432499,2801 ZION RD,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_1_7,-74.581343,39.475241,2717 ZION RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_1_9,-74.51950101,39.40271433,2713 ZION RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_10_1,-74.55726492,39.46909521,2300 RAYMOND DR,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_10_10,-74.5656523,39.47862834,2300 ZION RD,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_10_2,-74.4847302,39.33557933,2302 RAYMOND DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_10_3,-74.5122315,39.323792,2304 RAYMOND DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_10_4,-74.41551116,39.36031195,2306 RAYMOND DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_10_5,-74.89193034,39.55864244,2308 RAYMOND DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_10_7,-74.61518382,39.338888,2303 OAK AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_10_8,-74.540017,39.472323,2304 ZION RD,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_10_9,-74.559491,39.4777815,2302 ZION RD,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_100_1,-74.967585,39.5056205,1707 SHORE RD,NORTHFIELD CITY,17,1926,1,COM8,3004 -0118_101_1,-74.86716482,39.49482693,15 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_101_2,-74.84116949,39.47699668,21 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_102_1,-74.648143,39.528793,37 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1934,1,RES1,3001 -0118_102_16,-74.808536,39.613482,1607 SHORE RD,NORTHFIELD CITY,17,1870,1,RES1,3001 -0118_102_17,-74.90070167,39.49084995,2 OAKVIEW DR,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_102_18,-74.64219324,39.37053546,4 OAKVIEW DR,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_102_19,-74.65029994,39.39732365,6 OAKVIEW DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_102_20,-74.62279332,39.43366643,8 OAKVIEW DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_102_21,-74.94975494,39.51309922,10 OAKVIEW AVE,NORTHFIELD CITY,17,1981,1,RES1,3001 -0118_102_22,-74.973049,39.5078505,12 OAKVIEW DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_102_23,-74.78805632,39.67631836,14 OAKVIEW DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_102_24,-74.42997134,39.36374015,16 OAKVIEW DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_102_25,-74.44071271,39.36812434,1708 TILTON RD,NORTHFIELD CITY,17,1787,1,RES1,3001 -0118_102_26,-74.93708538,39.52741205,1712 TILTON RD,NORTHFIELD CITY,17,1780,1,RES1,3001 -0118_102_27,-74.68305959,39.38847018,1724 TILTON RD,NORTHFIELD CITY,17,1880,1,RES1,3001 -0118_102_3,-74.877728,39.598694,1730 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_102_4,-74.87792,39.592157,35 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_102_5,-74.8301605,39.539518,31 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_102_6,-74.647049,39.5447955,25 NORTHFIELD PLAZA,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_102_7,-74.63659658,39.53101327,19 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1938,1,GOV1,3004 -0118_102_9,-74.59460976,39.36053454,3 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1901,1,RES1,3001 -0118_103_1,-74.58039974,39.33482941,15 OAKVIEW DR,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_103_10,-74.5937241,39.34897482,8 HOLLY DR,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_103_11,-74.48024096,39.34058083,10 HOLLY DR,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_103_12,-74.47927748,39.34815383,12 HOLLY DR,NORTHFIELD CITY,17,1979,1,GOV1,3004 -0118_103_2,-74.5070249,39.32987113,11 OAKVIEW DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_103_3,-74.52355101,39.31470367,9 OAKVIEW DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_103_4,-74.82014271,39.65661547,7 OAKVIEW DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_103_5,-74.80199272,39.64385264,5 OAKVIEW DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_103_6,-74.74280718,39.6438863,3 OAKVIEW DR,NORTHFIELD CITY,17,1981,1,RES1,3001 -0118_103_7,-74.415608,39.3668545,2 HOLLY DR,NORTHFIELD CITY,17,1979,1,RES1,3004 -0118_103_8,-74.49457254,39.33391383,4 HOLLY DR,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_103_9,-74.51270586,39.32509019,6 HOLLY DR,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_104_1,-74.602642,39.4824735,11 HOLLY DRIVE,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_104_10,-74.52485,39.316864,1409 SHORE RD,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_104_11,-74.56458917,39.36400543,1401 SHORE RD,NORTHFIELD CITY,16,1897,1,RES1,3001 -0118_104_12,-74.58823465,39.34681697,12 FIFIELD AVE,NORTHFIELD CITY,17,1997,1,RES1,3001 -0118_104_13,-74.59141639,39.36636319,14 FIFIELD AVE,NORTHFIELD CITY,16,1925,1,GOV1,3004 -0118_104_14,-74.480789,39.33663983,18 FIFIELD AVE,NORTHFIELD CITY,17,1915,1,RES1,3001 -0118_104_15,-74.46755817,39.34503449,30 FIFIELD AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_104_17,-74.64575781,39.43183495,34 FIFIELD AVE,NORTHFIELD CITY,17,1921,1,RES1,3001 -0118_104_2,-74.601473,39.44271766,9 HOLLY DR,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_104_20,-74.568767,39.476012,42 FIFIELD AVE,NORTHFIELD CITY,17,1934,1,RES1,3001 -0118_104_21,-74.48369,39.3436875,72 FIFIELD AVE,NORTHFIELD CITY,17,1910,1,GOV1,3004 -0118_104_23,-74.50287767,39.34267974,110 FIFIELD AVE,NORTHFIELD CITY,16,1929,1,RES1,3001 -0118_104_24,-74.50959333,39.3391575,114 FIFIELD AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_104_25,-74.384201,39.3927725,120 FIFIELD AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_104_26,-74.491747,39.3362735,1410 WABASH AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_104_27,-74.3699355,39.402118,124 FIFIELD AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_104_3,-74.64660893,39.43159369,7 HOLLY DR,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_104_4,-74.46601362,39.34493717,5 HOLLY DR,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_104_6,-74.57988402,39.33914084,1 HOLLY DR,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_104_7.01,-74.63251721,39.43173764,1512 HOLLY LN,NORTHFIELD CITY,17,1994,1,RES1,3001 -0118_104_7.02,-74.77974698,39.64205284,1510 HOLLY LN,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_104_7.03,-74.63552569,39.43521644,1513 SHORE RD,NORTHFIELD CITY,17,1860,1,RES1,3001 -0118_104_8,-74.9466867,39.52800323,1501 SHORE RD,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_104_9,-74.501124,39.3269185,1413 SHORE RD,NORTHFIELD CITY,17,1790,1,RES1,3001 -0118_105_1,-74.37252031,39.41670966,121 FIFIELD AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_105_10,-74.50213291,39.34297419,27 FIFIELD AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_105_11,-74.49716466,39.33489151,23 FIFIELD AVE,NORTHFIELD CITY,17,1902,1,RES1,3001 -0118_105_12,-74.4925725,39.33786217,17 FIFIELD AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_105_13,-74.4435835,39.357604,15 FIFIELD AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_105_15,-74.55251773,39.47506905,11 FIFIELD AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_105_16,-74.4661975,39.3457355,5 FIFIELD AVE,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_105_17,-74.55046177,39.46473692,1315 SHORE RD,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_105_18,-74.559184,39.472644,1307 SHORE RD,NORTHFIELD CITY,16,1946,1,RES1,3001 -0118_105_19,-74.489979,39.33465,12 NORTHFIELD AVE,NORTHFIELD CITY,16,1945,1,GOV1,3004 -0118_105_2,-74.36192924,39.4186953,117 FIFIELD AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_105_20,-74.36976669,39.40134176,18 NORTHFIELD AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_105_21,-74.37887189,39.39829318,26 NORTHFIELD AVE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_105_24,-74.40598,39.383283,32 NORTHFIELD AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_105_25,-74.434573,39.3690805,34 NORTHFIELD AVE,NORTHFIELD CITY,17,1890,1,COM1,3004 -0118_105_26,-74.36757185,39.40699659,36 NORTHFIELD AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_105_28,-74.36851713,39.41514169,46 NORTHFIELD AVE,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_105_29,-74.36670358,39.41969075,100 NORTHFIELD AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_105_3,-74.40737924,39.39278477,109 FIFIELD AVE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_105_31,-74.51487033,39.3990329,106 NORTHFIELD AVE,NORTHFIELD CITY,17,1946,1,RES1,3004 -0118_105_33,-74.50807968,39.40761469,116 NORTHFIELD AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_105_4,-74.40596904,39.38275467,105 FIFIELD AVE,NORTHFIELD CITY,16,1925,1,COM1,3004 -0118_105_5,-74.62785561,39.35546332,43 FIFIELD AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_105_8,-74.37930234,39.39872322,31 FIFIELD AVE,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_106_1,-74.606221,39.310686,1408 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_106_11,-74.47396041,39.4813813,206 INFIELD AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_106_12,-74.50487446,39.48012705,208 INFIELD AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_106_13,-74.49211749,39.5276918,210 INFIELD AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_106_15,-74.5864575,39.3296375,220 INFIELD AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_106_16,-74.56790098,39.34154017,222 INFIELD AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_106_17,-74.55613365,39.36217871,224 INFIELD AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_106_2,-74.562944,39.3559495,228 INFIELD AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_106_3,-74.603191,39.310501,237 NORTHFIELD AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_106_4,-74.53217576,39.3074303,231 NORTHFIELD AVE,NORTHFIELD CITY,17,1960,1,RES3A,3001 -0118_106_6,-74.45858761,39.52418909,225 NORTHFIELD AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_106_8,-74.46802168,39.49170651,207 NORTHFIELD AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_106_9,-74.387328,39.392724,1245 FUAE AVE,NORTHFIELD CITY,16,1926,1,EDU1,3004 -0118_107_1,-74.629527,39.3931655,1202 FIRST ST,NORTHFIELD CITY,17,1915,1,RES1,3001 -0118_107_10,-74.54595813,39.38044223,1220 FIRST ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_107_11,-74.6702039,39.3503732,1224 FIRST ST,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_107_12,-74.56845653,39.36683863,215 INFIELD AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_107_13,-74.572617,39.3434255,1225 LITTLEFIELD AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_107_14,-74.7933275,39.362488,1221 LITTLEFIELD AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_107_15,-74.59158379,39.38117755,1217 LITTLEFIELD AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_107_16,-74.57143698,39.42709924,1200 LITTLEFIELD AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_107_18,-74.76890362,39.31646896,1216 LITTLEFIELD AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_107_19,-74.6127825,39.320056,1220 LITTLEFIELD AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_107_20,-74.59955274,39.31728411,203 INFIELD AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_107_21,-74.48725656,39.53197823,201 INFIELD AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_107_22,-74.585043,39.323359,1221 FUAE AVE,NORTHFIELD CITY,17,1958,1,RES1,3004 -0118_107_24,-74.62653728,39.36069412,1205 FUAE AVE,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_107_25,-74.65297478,39.36746681,1201 FUAE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_107_26,-74.5468835,39.373209,202 DAVIS AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_107_27,-74.57434773,39.36879925,212 DAVIS AVE,NORTHFIELD CITY,17,1924,1,RES3B,3001 -0118_107_30,-74.564572,39.411134,222 DAVIS AVE,NORTHFIELD CITY,16,1924,1,RES3A,3001 -0118_107_6,-74.58045746,39.53897808,1206 FIRST ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_107_7,-74.85717471,39.48319897,1208 FIRST ST,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_107_8,-74.579787,39.4137815,1212 FIRST ST,NORTHFIELD CITY,17,1962,1,RES1,3002 -0118_107_9,-74.596214,39.384309,1216 FIRST ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_108_1,-74.94953218,39.53525526,1200 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_108_13,-74.83925929,39.59528437,414 DAVIS AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_108_15,-74.7976514,39.54464521,400 DAVIS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_108_19,-74.67923148,39.54484317,1211 SECOND ST,NORTHFIELD CITY,17,1922,1,COM1,3004 -0118_108_25,-74.78948367,39.63305772,1202 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_108_30,-74.7038585,39.477483,1224 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_108_32,-74.5380265,39.472391,1226 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_108_33,-74.63413999,39.43402416,1324 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_108_34,-74.5984285,39.411887,1332 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_108_35,-74.83034933,39.46172197,1334 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_108_36,-74.56329,39.416369,1338 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_108_37,-74.6349245,39.5187615,1219 PARKER AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_38,-74.6268875,39.4186665,1217 PARKER AVE,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_108_39,-74.53241199,39.45329517,1213 PARKER AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_108_40,-74.632108,39.43973,1209-11 PARKER AVE,NORTHFIELD CITY,17,1958,2,RES1,3001 -0118_108_41,-74.75361916,39.44649182,1206 PARKER AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_42,-74.62967732,39.42142499,1208 PARKER AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_43,-74.62724588,39.39225818,1212 PARKER AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_44,-74.5748855,39.554157,1216 PARKER AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_45,-74.58912269,39.41525805,1220 PARKER AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_46,-74.59569842,39.37862075,1224 PARKER AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_47,-74.5362765,39.390413,335 INFIELD AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_108_48,-74.54408223,39.38417282,1225 FIRST ST,NORTHFIELD CITY,17,1957,1,RES3A,3001 -0118_108_49,-74.59956678,39.37956297,1221 FIRST ST,NORTHFIELD CITY,17,1957,1,GOV1,3004 -0118_108_50,-74.71162485,39.4716323,1217 FIRST ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_51,-74.62458948,39.52627417,1213 FIRST ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_108_52,-74.59825917,39.43540451,1209 FIRST ST,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_108_53,-74.67349546,39.39009783,1207 FIRST ST,NORTHFIELD CITY,17,1939,1,RES1,3001 -0118_108_54,-74.723011,39.45549,1205 FIRST ST,NORTHFIELD CITY,17,1930,1,RES1,3001 -0118_108_55,-74.724907,39.4553555,300 DAVIS AVE,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_108_56,-74.7579575,39.447901,304 DAVIS AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_108_57,-74.70493701,39.43016084,306 DAVIS AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_108_58,-74.5789965,39.443286,308 DAVIS AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_108_6,-74.66604412,39.54452043,1200 TILTON ROAD,NORTHFIELD CITY,,1970,1,RES1,3001 -0118_108_60,-74.56363356,39.47712218,314 DAVIS AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_108_64,-74.6365237,39.45067883,318 DAVIS AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_108_66,-74.66866618,39.46302652,324 DAVIS AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_108_68,-74.69200243,39.5106398,1206 SECOND ST,NORTHFIELD CITY,17,2007,1,RES1,3001 -0118_108_71,-74.81679242,39.39776766,1208 SECOND ST,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_108_72,-74.67355585,39.48447254,1212 SECOND ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_108_9,-74.828501,39.625633,420 DAVIS AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_109_1,-74.44106484,39.36679857,1122 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_109_10,-74.9293255,39.5132965,419 DAVIS AVE,NORTHFIELD CITY,17,1966,1,RES3A,3001 -0118_109_15.01,-74.80260479,39.63448559,401 DAVIS AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_109_16.01,-74.668062,39.5592645,1117 SECOND ST,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_109_16.02,-74.94749577,39.51981299,1115 SECOND ST,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_109_22,-74.78837,39.643992,400 MT VERNON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_109_23,-74.783723,39.66469,414 MT VERNON AVE,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_109_28,-74.521823,39.3144955,420 MT VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_109_3,-74.82364847,39.63967065,431 DAVIS AVE,NORTHFIELD CITY,16,1922,1,RES3A,3001 -0118_109_32,-74.449977,39.3538665,1102 NEW RD,NORTHFIELD CITY,,0,1,RES3A,3001 -0118_109_6,-74.783662,39.6500775,427 DAVIS AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_109_7,-74.884261,39.5946315,425 DAVIS AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_11_1.01,-74.6027705,39.420468,2138 SUTTON AVE,NORTHFIELD CITY,17,1992,1,RES1,3001 -0118_11_1.02,-74.49713199,39.33658383,2140 SUTTON AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_11_10,-74.63693366,39.34009394,2407 ZION RD,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_11_11,-74.62303554,39.36973767,2329 ZION RD,NORTHFIELD CITY,17,1922,2,RES1,3001 -0118_11_12,-74.48132495,39.4338368,2327 ZION RD,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_11_13,-74.52080434,39.40667001,2325 ZION RD,NORTHFIELD CITY,17,1981,1,GOV1,3004 -0118_11_14,-74.43609095,39.36896432,2323 ZION RD,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_11_15,-74.41405019,39.37089496,2215 GROVE RD,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_11_16,-74.37445013,39.40295385,2213 GROVE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_11_17,-74.51740608,39.40186969,2211 GROVE RD,NORTHFIELD CITY,17,1964,1,RES3A,3001 -0118_11_18,-74.52991,39.403171,2209 GROVE RD,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_11_19,-74.67617914,39.44755792,2207 GROVE RD W,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_11_2,-74.365106,39.4149285,2136 SUTTON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_11_20,-74.4604723,39.46644057,2205 GROVE RD,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_11_21,-74.49931017,39.33587695,2203 GROVE RD,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_11_22,-74.38858128,39.39449181,2012 GLENWOOD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_11_23,-74.459197,39.489487,2040 SUTTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_11_24,-74.3755635,39.398392,2042 SUTTON AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_11_26,-74.47959395,39.43970266,2112 SUTTON AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_11_27.01,-74.6709075,39.455095,2 RICK LANE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_11_27.02,-74.50710892,39.43511016,4 RICK LANE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_11_27.03,-74.50597489,39.40384887,3 RICK LANE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_11_27.04,-74.516745,39.413873,1 RICK LANE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_11_28,-74.528227,39.3975195,5 RICK LANE,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_11_3,-74.52051454,39.39890915,2134 SUTTON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_11_4,-74.503459,39.338483,2135 STEVEN DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_11_5,-74.60295106,39.43065186,2133 STEVEN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_11_6,-74.37135922,39.40561396,2131 STEVEN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_11_7,-74.52920732,39.39031462,2129 STEVEN DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_11_8,-74.37975,39.4144815,2130 STEVEN DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_11_9,-74.637438,39.37061548,2134 STEVEN DR,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_110_1,-74.380745,39.4159655,1004 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_110_10,-74.51690877,39.32228534,415 MT VERNON AVE,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_110_12,-74.81772577,39.65392696,401 MT VERNON AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_110_15,-74.505381,39.323605,1011 SECOND ST,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_110_18,-74.5135175,39.325141,1005 SECOND ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_110_2,-74.37367,39.4106825,431 MT VERNON AVE,NORTHFIELD CITY,17,1956,1,REL1,3004 -0118_110_22,-74.453603,39.3526785,400 ROOSEVELT AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_110_23,-74.48337495,39.33628582,412 ROOSEVELT AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_110_25,-74.41377244,39.36897009,414 ROOSEVELT AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_110_26,-74.43759121,39.36951829,416 ROOSEVELT AVE,NORTHFIELD CITY,17,1924,1,RES3A,3001 -0118_110_27,-74.363746,39.407985,422 ROOSEVELT AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_110_29,-74.37672241,39.41927414,426 ROOSEVELT AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_110_3,-74.4046065,39.379191,429 MT VERNON AVE,NORTHFIELD CITY,16,1924,1,GOV1,3004 -0118_110_30,-74.51140451,39.39803933,430 ROOSEVELT AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_110_31,-74.5217245,39.398406,1002 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_110_4,-74.5029745,39.3274275,427 MT VERNON AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_110_8,-74.486984,39.335347,417 MT VERNON AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_111_1,-74.9471105,39.5287385,914 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_111_13,-74.5271365,39.3968765,419 ROOSEVELT AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_111_16,-74.52748583,39.38383394,415 ROOSEVELT AVE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_111_18,-74.40433453,39.38010733,921 SECOND ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_111_21,-74.36712502,39.40780217,911 SECOND ST,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_111_25,-74.4518415,39.3744235,400 JACKSON AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_111_26,-74.51115713,39.40088533,404 JACKSON AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_111_27,-74.52163918,39.39991654,408 JACKSON AVE,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_111_28,-74.5032855,39.415634,412 JACKSON AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_111_32,-74.664988,39.3600615,424 JACKSON AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_111_36,-74.5345705,39.39097,426 JACKSON AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_111_38,-74.5359215,39.393757,428 JACKSON AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_111_4,-74.534223,39.387831,437 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES3A,3001 -0118_111_42,-74.7458861,39.44808744,900 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_111_46,-74.7354765,39.4507045,910 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_111_9,-74.8318695,39.40594,423 ROOSEVELT AVE,NORTHFIELD CITY,16,1924,1,COM3,3004 -0118_112_1,-74.93308152,39.49572226,332 MT VERNON AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_112_12,-74.63788243,39.36225308,317 DAVIS AVE,NORTHFIELD CITY,17,1958,1,RES3A,3001 -0118_112_16,-74.65357184,39.52581902,315 DAVIS AVE,NORTHFIELD CITY,17,1992,1,RES1,3001 -0118_112_18,-74.8085005,39.42952216,313 DAVIS AVE,NORTHFIELD CITY,16,1926,1,RES3A,3001 -0118_112_2,-74.79519288,39.63315071,326 MT VERNON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_112_20,-74.602554,39.4970605,1119 FIRST ST,NORTHFIELD CITY,17,1980,1,GOV1,3004 -0118_112_22,-74.68462059,39.44434923,1117 FIRST ST,NORTHFIELD CITY,16,1926,1,RES3B,3001 -0118_112_24,-74.82986726,39.40290367,1115 FIRST ST,NORTHFIELD CITY,16,1924,1,RES3A,3001 -0118_112_25,-74.8353995,39.374281,1111 FIRST ST,NORTHFIELD CITY,16,1924,1,GOV1,3004 -0118_112_26,-74.714655,39.440549,1107 FIRST ST,NORTHFIELD CITY,16,1924,1,RES3A,3001 -0118_112_27,-74.6431365,39.52731417,1103 FIRST ST,NORTHFIELD CITY,16,1924,1,RES3A,3002 -0118_112_29,-74.63635396,39.34864482,312 MT VERNON AVE,NORTHFIELD CITY,16,1918,1,RES1,3001 -0118_112_3,-74.81064605,39.63067763,1110 SECOND ST,NORTHFIELD CITY,17,1958,1,RES3A,3001 -0118_112_30,-74.6234755,39.54908183,318 MT VERNON AVE,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_112_31,-74.62202266,39.62573648,320 MT VERNON AVE,NORTHFIELD CITY,16,1929,1,RES1,3001 -0118_112_32,-74.72801,39.5886015,322 MT VERNON AVE,NORTHFIELD CITY,16,1956,1,RES1,3001 -0118_112_33,-74.79410215,39.63350036,324 MT VERNON AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_112_6,-74.77811582,39.62296755,1112 SECOND ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_112_9,-74.655811,39.6290695,321 DAVIS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_113_1,-74.48745445,39.33342933,1000 SECOND ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_113_10,-74.94102516,39.52866511,1022 SECOND ST,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_113_13,-74.65224,39.626703,321 MT VERNON AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_113_17,-74.885604,39.4722855,317 MT VERNON AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_113_19,-74.80343952,39.63286533,315 MT VERNON AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_113_21,-74.786908,39.6096415,313 MT VERNON AVE,NORTHFIELD CITY,17,1987,1,RES1,3002 -0118_113_22,-74.661516,39.6095245,1021 FIRST ST,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_113_25,-74.7867745,39.63361771,1009 FIRST ST,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_113_28,-74.81439767,39.63572303,1005 FIRST ST,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_113_31,-74.93779,39.496972,302 ROOSEVELT AVE,NORTHFIELD CITY,17,2007,1,RES1,3001 -0118_113_33,-74.70660663,39.56828194,312 ROOSEVELT AVE,NORTHFIELD CITY,16,1945,1,RES1,3001 -0118_113_35,-74.940867,39.518841,328 ROOSEVELT AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_113_39,-74.71463,39.640214,332 ROOSEVELT AVE,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_113_6,-74.78275112,39.67470594,1018 SECOND ST,NORTHFIELD CITY,17,1947,1,RES3B,3001 -0118_114_1,-74.36680856,39.40609168,340 JACKSON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_114_11,-74.50537244,39.32612114,327 ROOSEVELT AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_114_13,-74.49761308,39.32911513,323 ROOSEVELT AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_114_15,-74.43737899,39.35987385,315 ROOSEVELT AVE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_114_19,-74.9506295,39.5188425,921 FIRST ST,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_114_2,-74.43126244,39.37700522,326 JACKSON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_114_22,-74.693251,39.651541,919 FIRST ST,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_114_24,-74.7975535,39.6429485,911 FIRST ST,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_114_26,-74.81731945,39.64290655,909 FIRST ST,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_114_27,-74.505386,39.3246285,901 FIRST ST,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_114_28,-74.49847134,39.33087067,312 JACKSON AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_114_29,-74.51724822,39.32351562,314 JACKSON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_114_30,-74.51517027,39.32957267,316 JACKSON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_114_31,-74.466296,39.345318,320 JACKSON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_114_32,-74.48252304,39.34846068,324 JACKSON AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_114_4,-74.41382332,39.37098804,908 SECOND ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_114_5,-74.5096095,39.325745,910 SECOND ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_114_6,-74.5039304,39.33044734,912 SECOND ST,NORTHFIELD CITY,16,1924,1,RES3A,3001 -0118_114_7,-74.46637834,39.34538549,914 SECOND ST,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_114_9,-74.51555139,39.31911395,916 SECOND ST,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_115_1,-74.69397233,39.44716251,238 MT VERNON AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_115_11,-74.63694555,39.40915285,237 DAVIS AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_115_13,-74.6321894,39.43133634,225 DAVIS AVE,NORTHFIELD CITY,17,1948,1,RES1,3002 -0118_115_18,-74.6389485,39.535876,215 DAVIS AVE,NORTHFIELD CITY,16,1950,1,RES1,3001 -0118_115_2,-74.609316,39.489906,234 MT VERNON AVE,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_115_23,-74.8606755,39.478138,211 DAVIS AVE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_115_25,-74.58278106,39.41473621,201 DAVIS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_115_28,-74.5888745,39.3782915,1121 FUAE AVE,NORTHFIELD CITY,17,1978,1,RES1,3001 -0118_115_30,-74.564725,39.409828,1113 FUAE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_115_32,-74.70814955,39.47261171,1111 FUAE AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_115_34,-74.59505343,39.50662186,200 MT VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_115_35,-74.634759,39.52441633,202 MT VERNON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_115_36,-74.604833,39.4083425,212 MT VERNON AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_115_38,-74.63504435,39.38387708,214 MT VERNON AVE,NORTHFIELD CITY,17,1952,1,RES3A,3001 -0118_115_42.01,-74.57358865,39.45310061,226 W MT VERNON AVE,NORTHFIELD CITY,17,1902,1,RES3A,3001 -0118_115_42.02,-74.73111898,39.45965622,220 MT VERNON AVE,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_115_43,-74.55580338,39.46868872,230 MT VERNON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_115_5,-74.55830857,39.47361526,1112 FIRST ST,NORTHFIELD CITY,17,1951,1,RES1,3001 -0118_115_7,-74.53885423,39.46727508,1114 FIRST ST,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_115_9,-74.72780927,39.45378161,1122 FIRST ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_116_10,-74.6263175,39.41175867,207 MT VERNON AVE,NORTHFIELD CITY,17,1953,1,RES1,3002 -0118_116_11,-74.6298185,39.42993,201 MT VERNON AVE,NORTHFIELD CITY,16,1944,1,RES1,3001 -0118_116_12,-74.69961532,39.42332614,1015 FUAE AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_116_13,-74.546315,39.473988,1011 FUAE AVE,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_116_14,-74.60318188,39.4854408,1001 FUAE AVE,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_116_15,-74.63986317,39.43645975,212 ROOSEVELT AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_116_3,-74.62965891,39.35740552,1014 FIRST ST,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_116_5,-74.66103418,39.53782559,1018 FIRST ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_116_7,-74.72535863,39.45255516,239 MT VERNON AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_117_1,-74.8844115,39.5968755,242 JACKSON AVE,NORTHFIELD CITY,17,1915,1,RES1,3001 -0118_117_10,-74.8606905,39.608873,922 FIRST ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_117_11,-74.86381003,39.57334906,239 ROOSEVELT AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_117_12,-74.80875435,39.61797599,235 ROOSEVELT AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_117_16,-74.71670344,39.5776616,223 ROOSEVELT AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_117_18,-74.63423138,39.61129634,221 ROOSEVELT AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_117_2,-74.93875216,39.5187885,240 JACKSON AVE,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_117_20,-74.65325334,39.35398729,219 ROOSEVELT AVE,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_117_22,-74.59727926,39.35925906,217 ROOSEVELT AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_117_24,-74.83491779,39.43212053,213 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_117_25,-74.7547355,39.4293975,211 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_117_26,-74.68084545,39.49563616,207 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_117_27,-74.68120832,39.44384743,203 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_117_28,-74.7479445,39.450638,913 FUAE AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_117_31,-74.60352954,39.35320719,909 FUAE AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_117_32,-74.63253441,39.35292465,200 JACKSON AVE,NORTHFIELD CITY,,0,1,RES3A,3001 -0118_117_33,-74.68200644,39.563848,208 JACKSON AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_117_34,-74.80677511,39.55218789,210 JACKSON AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_117_36,-74.761113,39.6354445,218 JACKSON AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_117_39,-74.821126,39.620498,222 JACKSON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_117_42,-74.91641136,39.48177086,226 JACKSON AVE,NORTHFIELD CITY,17,1906,1,RES1,3001 -0118_117_6,-74.63826362,39.62093436,910 FIRST ST,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_117_8,-74.91345374,39.51064504,912 FIRST ST,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_118_1,-74.49419142,39.4495047,1257 ZION RD,NORTHFIELD CITY,17,1901,1,RES1,3001 -0118_118_2,-74.51066919,39.33849888,1253 ZION RD,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_118_3,-74.37927552,39.40122517,1249 ZION RD,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_118_4,-74.528692,39.458776,1245 ZION RD,NORTHFIELD CITY,17,1956,1,AGR1,3001 -0118_118_5.01,-74.51598565,39.46196965,1209 ZION RD,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_118_6,-74.50992365,39.45773605,1205 ZION RD,NORTHFIELD CITY,17,1830,1,RES3A,3001 -0118_118_7,-74.52481449,39.46733431,1203 ZION RD,NORTHFIELD CITY,17,1890,1,RES1,3001 -0118_118_8,-74.451866,39.4775425,38 DAVIS AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_118_9,-74.46632062,39.49076522,42 DAVIS AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_119_1,-74.54679236,39.37105129,115 DAVIS AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_119_10,-74.77456521,39.30566361,1101 BROAD ST,NORTHFIELD CITY,16,1915,1,COM1,3004 -0118_119_11,-74.547325,39.368361,106 MT VERNON AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_12,-74.54993585,39.37736396,108 MT VERNON AVE,NORTHFIELD CITY,16,1925,1,GOV1,3004 -0118_119_13,-74.55341251,39.38316034,110 MT VERNON AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_14,-74.5597875,39.3971505,112 MT VERNON AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_15,-74.6155195,39.385233,114 MT VERNON AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_2,-74.6307238,39.35713934,113 DAVIS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_119_3,-74.557903,39.367079,111 DAVIS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_119_4,-74.60071411,39.3154503,1125 BROAD ST,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_5,-74.5765075,39.332854,1121 BROAD ST,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_6,-74.60079155,39.31898826,1117 BROAD ST,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_7,-74.56561271,39.348416,1113 BROAD ST,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_8,-74.5536195,39.3638535,1109 BROAD ST,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_119_9,-74.6244675,39.354648,1105 BROAD ST,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_12_1,-74.64129352,39.33918958,2301 ZION RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_12_10,-74.3745585,39.39919967,2027 OAK DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_12_11,-74.71273806,39.40867511,2119 OAK AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_12_12,-74.4776025,39.4434015,2121 OAK AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_12_13,-74.499152,39.415842,2123 OAK AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_12_14,-74.44524335,39.37433239,2125 OAK AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_12_15,-74.402803,39.385806,2127 OAK AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_12_2,-74.4513255,39.3728145,2106 GROVE RD,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_12_3,-74.50280822,39.4119785,2104 GROVE RD,NORTHFIELD CITY,17,1963,1,COM1,3004 -0118_12_4,-74.47990862,39.44217766,2102 GROVE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_12_5,-74.735189,39.4352535,2100 GROVE RD,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_12_6.01,-74.52205,39.4430785,2029 OAK AVE,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_12_6.02,-74.50375844,39.4554834,2004 GROVE RD,NORTHFIELD CITY,17,1999,1,RES1,3001 -0118_12_7,-74.382916,39.3975865,2002 GROVE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_12_8,-74.49451253,39.47393361,2000 GROVE RD,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_12_9,-74.453379,39.496064,2021 OAK AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_120_1,-74.65983821,39.51609744,115 MT VERNON AVE,NORTHFIELD CITY,16,1950,1,RES1,3001 -0118_120_10,-74.621301,39.3856525,112 ROOSEVELT AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_120_11,-74.6612465,39.4028,116 ROOSEVELT AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_120_2,-74.61435901,39.50827466,113 MT VERNON AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_120_3,-74.8437334,39.48083677,111 MT VERNON AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_120_4,-74.5959131,39.37963577,1021-3 BROAD ST,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_120_5,-74.570747,39.414909,1015 BROAD ST,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_120_6,-74.86726211,39.44256401,1009 BROAD ST,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_120_7,-74.59436557,39.51756113,1001 BROAD ST,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_120_9,-74.587705,39.427788,110 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_121_10,-74.70479648,39.42621349,100 JACKSON AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_121_11,-74.54157689,39.47328754,104 JACKSON AVE,NORTHFIELD CITY,16,1932,1,RES1,3001 -0118_121_12,-74.55969015,39.4792256,108 JACKSON AVE,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_121_13.01,-74.78455,39.382445,112 JACKSON AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_121_13.02,-74.663089,39.444344,110 JACKSON AVE,NORTHFIELD CITY,17,1990,1,GOV1,3004 -0118_121_2,-74.55849036,39.4729787,113 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_121_3,-74.60843603,39.43853933,111 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_121_4,-74.64380452,39.52759683,109 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_121_6,-74.66253354,39.39501267,101 ROOSEVELT AVE,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_121_7,-74.6809605,39.385805,917 BROAD ST,NORTHFIELD CITY,17,1900,1,GOV1,3004 -0118_121_9,-74.7114875,39.4674015,913 BROAD ST,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_122_1,-74.6086785,39.490103,117 NORTHFIELD AVE,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_122_11,-74.5133555,39.400291,29 NORTHFIELD AVE,NORTHFIELD CITY,16,1900,1,RES1,3001 -0118_122_12,-74.5275935,39.382889,25 NORTHFIELD AVE,NORTHFIELD CITY,17,1925,2,RES1,3001 -0118_122_13,-74.380957,39.414188,21 NORTHFIELD AVE,NORTHFIELD CITY,17,1978,2,RES1,3001 -0118_122_14,-74.37046684,39.41645748,19 NORTHFIELD AVE,NORTHFIELD CITY,17,1904,1,RES1,3001 -0118_122_15,-74.37558346,39.41920082,15 NORTHFIELD AVE,NORTHFIELD CITY,17,1902,1,RES1,3001 -0118_122_16,-74.6149745,39.4298075,11 NORTHFIELD AVE,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_122_17,-74.43680918,39.37069291,1229 SHORE RD,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_122_18,-74.52532117,39.38495858,1227 SHORE RD,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_122_19,-74.3668365,39.411058,1225 SHORE RD,NORTHFIELD CITY,17,1914,1,RES1,3001 -0118_122_2,-74.62427559,39.43887552,109 NORTHFIELD AVE,NORTHFIELD CITY,17,1920,1,RES3A,3001 -0118_122_20,-74.52962015,39.39909114,1223 SHORE RD,NORTHFIELD CITY,17,1850,1,RES1,3001 -0118_122_21.01,-74.47858368,39.44301951,1203 SHORE RD,NORTHFIELD CITY,16,1901,1,RES1,3001 -0118_122_21.02,-74.5001735,39.4141385,1205 SHORE RD,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_122_21.03,-74.68953344,39.44843875,1210 ZION RD,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_122_21.04,-74.67037769,39.49428383,1212 ZION RD,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_122_21.05,-74.70511629,39.49884784,1214 ZION RD,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_122_21.06,-74.71798817,39.39032517,1216 ZION RD,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_122_21.07,-74.7488815,39.390278,1218 ZION RD,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_122_23,-74.68932098,39.48104528,1236 ZION RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_122_24,-74.66457665,39.46057405,1238 ZION RD,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_122_3,-74.65086213,39.46805107,105 NORTHFIELD AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_122_4,-74.58757345,39.49366666,101 NORTHFIELD AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_122_5,-74.52363092,39.42215994,49 NORTHFIELD AVE,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_122_7,-74.51428006,39.4168063,43 NORTHFIELD AVE,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_122_8,-74.50110118,39.41143251,39 NORTHFIELD AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_122_9,-74.48688,39.4342795,37 NORTHFIELD AVE,NORTHFIELD CITY,17,1945,1,RES1,3001 -0118_123_1,-74.61177302,39.32419067,28 MT VERNON AVE,NORTHFIELD CITY,17,1955,1,GOV1,3004 -0118_123_10,-74.507031,39.4925655,20 MT VERNON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_123_11,-74.5801835,39.313419,22 MT VERNON AVE,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_123_2,-74.53716167,39.30396442,1108 BROAD ST,NORTHFIELD CITY,17,1955,1,GOV1,3004 -0118_123_3,-74.525009,39.472821,1112 BROAD ST,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_123_4,-74.45443575,39.48944154,21 DAVIS AVE,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_123_6,-74.3724585,39.4012015,19 ZION RD,NORTHFIELD CITY,17,1925,1,GOV1,3004 -0118_123_7.01,-74.5302661,39.44881185,1109 ZION RD,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_123_7.02,-74.48025798,39.45527575,1107 ZION RD,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_123_7.03,-74.47341057,39.44526728,1105 SHORE RD,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_123_7.04,-74.5100425,39.4386825,2 MT VERNON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_123_7.05,-74.53053213,39.4607652,4 MT VERNON AVE,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_123_7.06,-74.37739429,39.401101,6 MT VERNON AVE,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_123_8,-74.5016255,39.3308805,10 MT VERNON AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_123_9,-74.47098554,39.49438134,14 MT VERNON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_124_1,-74.60426736,39.37106131,34 ROOSEVELT AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_124_10,-74.52117244,39.5299215,15 MT VERNON AVE,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_124_12,-74.5047655,39.4934485,11 MT VERNON AVE,NORTHFIELD CITY,17,2005,1,COM6,3002 -0118_124_13,-74.39874667,39.38745337,1021 SHORE RD,NORTHFIELD CITY,17,1920,1,RES1,3004 -0118_124_14,-74.46145981,39.47054696,1015 SHORE RD,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_124_16,-74.494796,39.491081,1007 SHORE RD,NORTHFIELD CITY,17,1897,1,RES1,3001 -0118_124_18,-74.536926,39.3043365,1001 SHORE RD,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_124_19,-74.586775,39.332616,12 ROOSEVELT AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_124_2,-74.54491429,39.38846669,1006 BROAD ST,NORTHFIELD CITY,16,1940,1,RES3A,3001 -0118_124_20,-74.6122925,39.320591,16 ROOSEVELT AVE,NORTHFIELD CITY,17,1915,1,RES1,3001 -0118_124_21,-74.57153886,39.35380908,20 ROOSEVELT AVE,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_124_22,-74.56896637,39.36384668,24 ROOSEVELT AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_124_23,-74.64601676,39.35653042,28 ROOSEVELT AVE,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_124_24,-74.54572204,39.37312084,30 ROOSEVELT AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_124_3,-74.5476145,39.37821,1008 BROAD ST,NORTHFIELD CITY,16,1939,1,RES1,3001 -0118_124_5,-74.670383,39.3466565,39 MT VERNON AVE,NORTHFIELD CITY,17,1930,1,RES1,3001 -0118_124_6,-74.55860879,39.36706506,25 MT VERNON AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_124_7,-74.557332,39.358555,21 MT VERNON AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_124_9,-74.59075308,39.32130059,17 MT VERNON AVE,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_125_1,-74.62177713,39.40512967,900 BROAD ST,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_125_10,-74.7670165,39.348991,17 ROOSEVELT AVE,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_125_11,-74.626294,39.3522735,13 ROOSEVELT AVE,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_125_12,-74.5737555,39.350259,921 SHORE RD,NORTHFIELD CITY,17,1955,1,GOV1,3004 -0118_125_13,-74.577223,39.3367365,915 SHORE RD,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_125_14,-74.62576643,39.36351083,905 SHORE RD,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_125_15,-74.55685814,39.37574104,2 JACKSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_125_16,-74.6124653,39.37604989,10 JACKSON AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_125_17,-74.55319594,39.42162945,20 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_125_19,-74.82876519,39.46447655,30 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3004 -0118_125_21,-74.5757624,39.54438499,36 JACKSON AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_125_3,-74.603787,39.407141,38 JACKSON AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_125_4,-74.59819693,39.4104762,914 BROAD ST,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_125_8,-74.57418584,39.42524099,31 ROOSEVELT AVE,NORTHFIELD CITY,17,1890,1,RES1,3001 -0118_125_9.01,-74.563006,39.4135065,29 ROOSEVELT AVE,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_125_9.02,-74.543125,39.39907699,27 ROOSEVELT AVE,NORTHFIELD CITY,17,1994,1,RES1,3001 -0118_126_1,-74.66031274,39.6392634,800 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_126_10,-74.76826826,39.34948315,407 JACKSON AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_126_11,-74.839541,39.3996435,401 JACKSON AVE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_126_12,-74.54165343,39.39233533,819 SECOND ST,NORTHFIELD CITY,17,1956,1,GOV1,3004 -0118_126_14,-74.53314689,39.40090817,809 SECOND ST,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_126_16,-74.83114183,39.42465401,805 SECOND ST,NORTHFIELD CITY,16,1952,1,RES1,3001 -0118_126_18,-74.727973,39.4587155,400 FAIRBANKS AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_126_2,-74.7726015,39.493978,423 JACKSON AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_126_20,-74.78571211,39.45901447,412 FAIRBANKS AVE,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_126_22,-74.82732667,39.46154301,414 FAIRBANKS AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_126_23,-74.86693505,39.45196676,416 FAIRBANKS AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_126_24,-74.81546132,39.49204543,420 FAIRBANKS AVE,NORTHFIELD CITY,17,1948,1,GOV1,3004 -0118_126_3,-74.7144655,39.4643695,421 JACKSON AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_126_5,-74.73487606,39.44440786,419 JACKSON AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_126_7,-74.964175,39.519006,415 JACKSON AVE,NORTHFIELD CITY,16,1944,1,RES1,3001 -0118_126_9,-74.54232664,39.37594353,409 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_127_1.01,-74.82309852,39.56915946,425 FAIRBANKS AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_127_2.01,-74.63558946,39.53049914,423 W FAIRBANKS AVE,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_127_2.02,-74.60763685,39.53782803,421 W FAIRBANKS,NORTHFIELD CITY,17,1983,1,RES1,3001 -0118_127_4,-74.877884,39.489669,717 SECOND ST,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_127_5,-74.623778,39.520903,715 SECOND ST,NORTHFIELD CITY,17,1968,1,EDU1,3004 -0118_127_6,-74.64176546,39.52400616,713 SECOND ST,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_127_7,-74.6950133,39.63801044,402 ALBERT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_127_8,-74.87173639,39.54518009,404 ALBERT AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_127_9,-74.7761215,39.598959,406 ALBERT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_128_10,-74.49636304,39.49493609,408 CHESTNUT AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_128_11,-74.50008044,39.51843593,600 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_128_2,-74.80196167,39.626666,407 ALBERT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_128_3,-74.79181723,39.63690405,405 ALBERT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_128_4,-74.77547574,39.61676681,403 ALBERT AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_128_5,-74.79674672,39.53868559,401 ALBERT AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_128_6,-74.72057892,39.57612487,400 CHESTNUT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_128_7,-74.761272,39.639449,402 CHESTNUT AVE,NORTHFIELD CITY,17,1938,1,GOV1,3004 -0118_128_8,-74.78806444,39.63504276,404 CHESTNUT AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_128_9,-74.81142194,39.62952785,406 CHESTNUT AVE,NORTHFIELD CITY,17,1965,1,GOV1,3004 -0118_129_1,-74.95223737,39.53664487,508-512 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_129_10,-74.97434336,39.51345431,406 FRANKLIN AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_129_11,-74.50632635,39.4471566,502 NEW RD,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_129_13,-74.4829195,39.4415175,506 NEW RD,NORTHFIELD CITY,17,1930,1,RES1,3001 -0118_129_2,-74.81553112,39.63382613,425 CHESTNUT AVE,NORTHFIELD CITY,17,1942,1,GOV1,3004 -0118_129_3,-74.48835159,39.53282716,407 CHESTNUT AVE,NORTHFIELD CITY,17,1959,1,GOV1,3004 -0118_129_4,-74.50145369,39.50266574,405 CHESTNUT AVE,NORTHFIELD CITY,17,1959,1,GOV1,3004 -0118_129_5,-74.79738816,39.63891902,403 CHESTNUT AVE,NORTHFIELD CITY,17,1960,1,RES1,3004 -0118_129_6,-74.83236303,39.61331116,503 SECOND ST,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_129_7,-74.49525766,39.49854092,400 FRANKLIN AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_129_8,-74.51794878,39.53673806,402 FRANKLIN AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_129_9,-74.93944558,39.52387219,404 FRANKLIN AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_13_1,-74.46281822,39.46558003,2202 GROVE RD,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_13_2,-74.50611466,39.33574495,2200 GROVE RD,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_13_3,-74.47384467,39.48361837,2006 GLENWOOD DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_13_4,-74.50257401,39.50265817,2004 GLENWOOD DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_130_1,-74.51610482,39.44528982,412 NEW RD,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_130_10,-74.78767208,39.65909769,193 SECOND ST,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_130_11,-74.7862075,39.6776655,400 DOLPHIN AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_130_13,-74.46129265,39.34561031,418 DOLPHIN AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_130_14,-74.482126,39.338548,300 NEW RD,NORTHFIELD CITY,,1955,1,RES1,3001 -0118_130_15,-74.45626088,39.34866283,314 NEW RD,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_130_17,-74.81350815,39.64899747,318 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_130_18,-74.8026944,39.63992638,318 NEW ROAD,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_130_19,-74.78126216,39.65966062,400 NEW RD,NORTHFIELD CITY,16,1932,1,RES1,3001 -0118_130_2,-74.52053343,39.46053365,427 W FRANKLIN AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_130_21,-74.51987578,39.45610876,408 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_130_3,-74.53029732,39.44810385,425 W FRANKLIN AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_130_4,-74.5130365,39.4426835,FRANKLIN AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_130_5,-74.9473105,39.547541,415 FRANKLIN AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_130_6,-74.8855365,39.5770565,419 FRANKLIN AVE,NORTHFIELD CITY,16,1927,1,RES1,3001 -0118_130_7,-74.5031955,39.4291175,403 SECOND ST,NORTHFIELD CITY,16,1900,1,RES1,3001 -0118_130_8.02,-74.501688,39.467513,397 SECOND ST,NORTHFIELD CITY,16,1938,1,RES1,3001 -0118_130_9,-74.79324712,39.64404292,395 SECOND ST,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_131_1,-74.54712684,39.37390547,330 FAIRBANKS AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_131_10,-74.382234,39.41828425,323 JACKSON AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_131_14,-74.3661185,39.409065,317 JACKSON AVE,NORTHFIELD CITY,17,1927,1,RES1,3001 -0118_131_15,-74.40684374,39.37950802,315 JACKSON AVE,NORTHFIELD CITY,16,1930,1,GOV1,3004 -0118_131_16,-74.4870985,39.35118,313 JACKSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_131_17,-74.46237691,39.34644533,817 FIRST ST,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_131_20,-74.518581,39.324783,811 FIRST ST,NORTHFIELD CITY,17,1997,1,RES1,3001 -0118_131_21,-74.42241798,39.37203933,809 FIRST ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_131_23,-74.40222435,39.38957868,805 FIRST ST,NORTHFIELD CITY,17,1930,1,RES1,3001 -0118_131_25,-74.37291817,39.40270648,801 FIRST ST,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_131_27,-74.369574,39.413651,314 FAIRBANKS AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_131_29,-74.51068796,39.40096818,318 FAIRBANKS AVE,NORTHFIELD CITY,16,1940,1,GOV1,3004 -0118_131_3,-74.76035918,39.36361298,804 SECOND ST,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_131_30,-74.51764086,39.39512225,320 FAIRBANKS AVE,NORTHFIELD CITY,17,1980,1,GOV1,3004 -0118_131_32,-74.50364221,39.41677705,326 FAIRBANKS AVE,NORTHFIELD CITY,17,1931,1,RES1,3001 -0118_131_5,-74.8441485,39.395729,808 SECOND ST,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_131_6,-74.81805723,39.37641949,810 SECOND ST,NORTHFIELD CITY,16,1929,1,RES1,3001 -0118_131_7,-74.5085095,39.407224,812 SECOND ST,NORTHFIELD CITY,16,1929,1,RES1,3001 -0118_131_9,-74.5165145,39.400517,339 JACKSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_132_1,-74.72074406,39.45013881,329 FAIRBANKS AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_132_10,-74.85314851,39.39272267,315 FAIRBANKS AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_132_12,-74.80693523,39.37986681,311 FAIRBANKS AVE,NORTHFIELD CITY,17,1926,1,GOV1,3004 -0118_132_13,-74.44442521,39.37541443,725 FIRST ST,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_132_14,-74.518484,39.387321,719 FIRST ST,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_132_17,-74.54235382,39.39291268,711 FIRST ST,NORTHFIELD CITY,16,1926,2,RES1,3001 -0118_132_18,-74.59250839,39.37091957,709 FIRST ST,NORTHFIELD CITY,16,1920,1,GOV1,3004 -0118_132_19,-74.85137906,39.43436518,707 FIRST ST,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_132_20,-74.78524185,39.45886773,705 FIRST ST,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_132_21,-74.83492,39.4038955,703 FIRST ST,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_132_22,-74.748998,39.45269,619 FIRST ST,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_132_23,-74.7527105,39.453966,617 FIRST ST,NORTHFIELD CITY,16,1936,1,RES1,3001 -0118_132_24,-74.80188871,39.44026594,613 FIRST ST,NORTHFIELD CITY,16,1932,1,RES1,3001 -0118_132_25,-74.86279618,39.4369864,310 BOOYE TERRACE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_132_27,-74.5548475,39.5508955,314 BOOYE TERRACE,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_132_28,-74.80917023,39.56169495,317 BOOYE TERRACE,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_132_29,-74.5453715,39.547213,315 BOOYE TERRACE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_132_30,-74.5558597,39.52868273,311 BOOYE TERRACE,NORTHFIELD CITY,16,1920,1,GOV1,3004 -0118_132_31,-74.861215,39.4456385,605 FIRST ST,NORTHFIELD CITY,17,1912,1,RES1,3001 -0118_132_34,-74.65739783,39.52087699,300 W FRANKLIN AVE,NORTHFIELD CITY,17,1963,1,GOV1,3004 -0118_132_35,-74.69760838,39.63800746,302 W FRANKLIN AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_132_36,-74.72950091,39.58137963,304 FRANKLIN AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_132_37,-74.77324493,39.62761509,306 FRANKLIN AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_132_38,-74.84671784,39.59925198,308 FRANKLIN AVE,NORTHFIELD CITY,17,1963,1,GOV1,3004 -0118_132_39.01,-74.86679812,39.44818174,714 SECOND ST,NORTHFIELD CITY,17,1963,1,GOV1,3004 -0118_132_39.02,-74.57159939,39.53661298,712 SECOND ST,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_132_39.03,-74.631456,39.52159,710 SECOND ST,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_132_39.04,-74.83205435,39.56571196,708 SECOND ST,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_132_39.05,-74.78714717,39.61653,706 SECOND ST,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_132_4,-74.592937,39.3765655,325 FAIRBANKS AVE,NORTHFIELD CITY,17,1940,1,GOV1,3004 -0118_132_40,-74.75215012,39.44695601,716 SECOND ST,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_132_8,-74.77545724,39.30506366,319 FAIRBANKS AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_133_1.01,-74.48458338,39.53731394,408 SECOND ST,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_133_11,-74.8780912,39.59570229,399 FIRST ST,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_133_12,-74.52185069,39.52471235,397 FIRST ST,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_133_13,-74.81183714,39.63548266,395 FIRST ST,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_133_14,-74.53417206,39.30631436,301 FIRST ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_133_15,-74.9457785,39.524952,310 DOLPHIN AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_133_16,-74.95175166,39.53165103,316 DOLPHIN AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_133_17,-74.6612485,39.6411695,318 DOLPHIN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_133_18,-74.45672588,39.46425669,320 DOLPHIN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_133_19,-74.50940612,39.44111335,322 DOLPHIN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_133_2,-74.49960566,39.50168036,401 IRELAND AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_133_20,-74.50634633,39.461391,324 DOLPHIN AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_133_22,-74.51428405,39.43237549,398 SECOND ST,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_133_23,-74.8856765,39.559103,400 SECOND ST,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_133_24,-74.61862249,39.30664912,402 SECOND ST,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_133_3,-74.81024661,39.63550967,399 IRELAND AVE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_133_4,-74.49728019,39.49925162,500 IRELAND AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_133_5,-74.8812235,39.6019845,402 IRELAND AVE,NORTHFIELD CITY,16,1928,1,GOV1,3004 -0118_133_6,-74.83612785,39.59760343,309 FRANKLIN AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_133_7,-74.86112999,39.55641483,301 FRANKLIN AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_133_8,-74.72941563,39.58924148,411 FIRST ST,NORTHFIELD CITY,16,1926,1,GOV1,3004 -0118_133_9,-74.77937915,39.62205648,409 FIRST ST,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_134_1,-74.4833185,39.3507415,232 FAIRBANKS AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_134_10,-74.80829217,39.6399905,231 JACKSON AVE,NORTHFIELD CITY,16,1940,1,GOV1,3004 -0118_134_12,-74.78003067,39.65382164,227 JACKSON AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_134_14,-74.88294238,39.56028957,223 JACKSON AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_134_16,-74.95591859,39.51587979,219 JACKSON AVE,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_134_18,-74.90210784,39.53466726,217 JACKSON AVE,NORTHFIELD CITY,17,1942,1,RES1,3001 -0118_134_21,-74.86600633,39.597851,821 FUAE AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_134_23,-74.8071815,39.634062,817 FUAE AVE,NORTHFIELD CITY,16,1946,1,RES1,3001 -0118_134_25,-74.89560784,39.50187501,813 FUAE AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_134_29,-74.93455349,39.50611384,805 FUAE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_134_31,-74.93561162,39.52686847,801 FUAE AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_134_33,-74.9556425,39.538073,210 FAIRBANKS AVE,NORTHFIELD CITY,17,1926,1,GOV1,3004 -0118_134_36,-74.79656157,39.64093908,216 FAIRBANKS AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_134_38,-74.42795423,39.35821892,218 FAIRBANKS AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_134_40,-74.52634058,39.31493861,222 FAIRBANKS AVE,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_134_42,-74.5054585,39.330663,226 FAIRBANKS AVE,NORTHFIELD CITY,16,1954,1,RES1,3001 -0118_134_5,-74.5171279,39.32256294,810 FIRST ST,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_134_7,-74.49978064,39.33164003,814 FIRST ST,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_134_8,-74.52330194,39.31315985,245 JACKSON AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_134_9,-74.81281823,39.65488641,243 JACKSON AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_135_1,-74.37368199,39.4166599,712 FIRST ST,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_135_10,-74.51856263,39.31995443,215 FAIRBANKS AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_135_14,-74.80758318,39.64273784,203 FAIRBANKS AVE,NORTHFIELD CITY,16,1931,1,RES1,3001 -0118_135_16,-74.42488894,39.36600482,721 FUAE AVE,NORTHFIELD CITY,16,1944,1,RES1,3001 -0118_135_19,-74.49057828,39.33286618,717 FUAE AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_135_2,-74.40542,39.388797,227 FAIRBANKS AVE,NORTHFIELD CITY,17,1965,1,RES1,3004 -0118_135_21,-74.47532085,39.34179272,715 FUAE AVE,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_135_22,-74.47201994,39.34337782,212 BATES AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_135_24,-74.40998699,39.38112817,216 BATES AVE,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_135_25,-74.36513485,39.40675168,222 BATES AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_135_26,-74.52636031,39.39278421,710 FIRST ST,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_135_3,-74.3900735,39.3941275,225 FAIRBANKS AVE,NORTHFIELD CITY,16,1942,1,RES1,3001 -0118_135_5,-74.5026215,39.3290815,221 FAIRBANKS AVE,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_135_8,-74.485419,39.3355795,219 FAIRBANKS AVE,NORTHFIELD CITY,17,1997,1,RES1,3001 -0118_136_1,-74.68001166,39.34139214,626 FIRST ST,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_136_10,-74.7462932,39.44559767,614 FIRST ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_136_11,-74.5843325,39.381748,616 FIRST ST,NORTHFIELD CITY,16,1947,1,RES1,3001 -0118_136_14,-74.53939774,39.37338394,624 FIRST ST,NORTHFIELD CITY,17,1936,1,RES1,3001 -0118_136_2,-74.50735634,39.40768572,223 BATES AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_136_3,-74.37675833,39.41416001,221 BATES AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_136_4,-74.55029689,39.37371113,613 PINE ST,NORTHFIELD CITY,16,1950,1,RES1,3001 -0118_136_5,-74.82160958,39.36892347,609 PINE ST,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_136_6,-74.53447655,39.37668784,603 PINE ST,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_136_7,-74.53688338,39.38781017,228 ST JAMES PL,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_136_9,-74.59022829,39.37192761,232 ST JAMES PL,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_137_1,-74.37013887,39.41539703,614 PINE ST,NORTHFIELD CITY,17,1971,1,RES1,3001 -0118_137_2,-74.40717254,39.39284085,201 BATES AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_137_3,-74.51484066,39.38516583,601 FUAE AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_137_4,-74.52105517,39.39512458,202 ST JAMES PL,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_138_1,-74.8129355,39.4531145,600 FIRST ST,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_138_10,-74.85729112,39.43931652,411 FUAE AVE,NORTHFIELD CITY,16,1923,1,RES1,3001 -0118_138_12,-74.54267616,39.50526745,405 FUAE AVE,NORTHFIELD CITY,16,1921,1,RES1,3001 -0118_138_13,-74.580065,39.52422,401 FUAE AVE,NORTHFIELD CITY,17,1910,1,COM4,3004 -0118_138_14,-74.79132369,39.53444122,315 FUAE AVE,NORTHFIELD CITY,17,1950,1,GOV1,3004 -0118_138_16,-74.69623021,39.63396393,200 DOLPHIN AVE,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_138_17,-74.71583644,39.57985851,220 DOLPHIN AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_138_18,-74.7496445,39.6034475,222 DOLPHIN AVE,NORTHFIELD CITY,16,1900,1,RES1,3001 -0118_138_2,-74.73470445,39.43820125,223 ST JAMES PL,NORTHFIELD CITY,16,1949,1,RES1,3001 -0118_138_20,-74.79233882,39.6393208,230 DOLPHIN AVE,NORTHFIELD CITY,16,1948,1,RES1,3001 -0118_138_21,-74.8823175,39.594461,232 DOLPHIN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_138_22,-74.81081049,39.62917433,234 DOLPHIN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_138_23,-74.50899428,39.49405046,236 DOLPHIN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_138_24,-74.8525015,39.6003415,396 FIRST ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_138_26,-74.77566008,39.60904128,398 FIRST ST,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_138_28,-74.71707497,39.57769875,400 FIRST ST,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_138_30.02,-74.5388563,39.54348867,219 FRANKLIN AVE,NORTHFIELD CITY,17,2000,1,RES1,3001 -0118_138_30.03,-74.54555665,39.52383296,217 FRANKLIN AVE,NORTHFIELD CITY,17,2000,1,RES1,3001 -0118_138_31,-74.76022716,39.44449039,218 FRANKLIN AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_138_32,-74.86769263,39.44255373,220 FRANKLIN AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_138_33,-74.86273621,39.48562188,222 FRANKLIN AVE,NORTHFIELD CITY,17,1966,1,IND6,3002 -0118_138_4,-74.549232,39.3890995,521 PINE ST,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_138_5,-74.58857837,39.37672268,519 PINE ST,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_138_6,-74.69004241,39.35955678,525 FUAE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_138_7.01,-74.74730785,39.44724709,517 PINE ST,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_138_7.02,-74.54328173,39.37320819,521 FUAE AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_138_8,-74.54107052,39.38520318,519 FUAE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_138_9,-74.71109695,39.47395234,501 FUAE AVE,NORTHFIELD CITY,16,1941,1,RES1,3001 -0118_139_11,-74.62562837,39.36449597,807 BROAD ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_139_13,-74.64814396,39.53456352,805 BROAD ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_139_15,-74.63477141,39.36130233,110 FAIRWAY AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_139_17,-74.615179,39.597635,112 FAIRWAY AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_139_19,-74.74655267,39.63465497,116 FAIRWAY AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_139_2,-74.66495334,39.56156601,113 JACKSON AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_139_21,-74.80615692,39.63190385,122 FAIRWAY AVE,NORTHFIELD CITY,17,1938,1,RES1,3001 -0118_139_4,-74.6341675,39.3189335,111 JACKSON AVE,NORTHFIELD CITY,16,1950,1,RES1,3001 -0118_139_6,-74.6445675,39.5324205,109 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_139_8.01,-74.73087716,39.4527375,107 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_139_8.02,-74.812029,39.37365167,105 JACKSON AVE,NORTHFIELD CITY,17,1995,1,RES1,3001 -0118_139_9,-74.62448515,39.49079396,101 JACKSON AVE,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_14_1,-74.5890985,39.3152055,2013 GLENWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_14_10.02,-74.55966267,39.37346201,2032 SUTTON AVE,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_14_10.03,-74.56898697,39.41023582,2030 SUTTON AVE,NORTHFIELD CITY,17,1984,1,RES1,3004 -0118_14_10.04,-74.58879084,39.51241798,2028 SUTTON AVE,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_14_10.05,-74.62140436,39.37031699,2026 SUTTON AVE,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_14_11.01,-74.78578762,39.44003778,1200 MILL RD,NORTHFIELD CITY,,1972,1,RES1,3001 -0118_14_11.02,-74.63741382,39.51766417,1909 OAK AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.03,-74.57090043,39.42868779,1911 OAK AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.04,-74.56885234,39.49848949,2 MADISON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.05,-74.68716733,39.41659948,4 MADISON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.06,-74.64266401,39.37710568,6 MADISON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.07,-74.61820267,39.41871683,8 MADISON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.08,-74.64427619,39.38348653,7 MADISON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.09,-74.640701,39.529926,5 MADISON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.10,-74.57547208,39.48111584,3 MADISON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.11,-74.624732,39.488986,1 MADISON AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_14_11.12,-74.57957536,39.44231884,1206 MILL RD,NORTHFIELD CITY,17,1928,1,GOV1,3004 -0118_14_12,-74.75171755,39.45151182,1918 SUTTON AVE,NORTHFIELD CITY,17,1930,1,RES1,3001 -0118_14_14,-74.8299165,39.4066335,1224 MILL RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_14_2,-74.60422185,39.32588694,2036 SUTTON AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_14_3,-74.63416966,39.35948811,2034 SUTTON AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_14_4,-74.4151465,39.504696,2011 GLENWOOD DR,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_14_5,-74.5976545,39.3235955,2009 GLENWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_14_6,-74.55430886,39.36136567,2007 GLENWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_14_7,-74.5502476,39.36124563,2005 GLENWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_14_8,-74.59945863,39.31882883,2003 GLENWOOD DR,NORTHFIELD CITY,17,1966,1,GOV1,3004 -0118_14_9,-74.58494133,39.32918417,2001 GLENWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_140_1,-74.95565475,39.52061651,714 CECIL LANE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_140_11,-74.7754085,39.628048,717 BROAD ST,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_140_13,-74.79557815,39.63129768,715 BROAD ST,NORTHFIELD CITY,17,1951,1,RES1,3001 -0118_140_14,-74.836693,39.6265495,711 BROAD ST,NORTHFIELD CITY,17,1954,1,RES1,3004 -0118_140_17,-74.91155946,39.51070231,701 BROAD ST,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_140_2,-74.7001509,39.57363276,121 FAIRWAY AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_140_20,-74.9295285,39.518756,102 PUTTING GREEN AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_140_22,-74.94347806,39.5220357,104 PUTTING GREEN AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_140_24,-74.80402583,39.6453225,106 PUTTING GREEN AVE,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_140_25,-74.442354,39.3552035,124 PUTTING GREEN AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_140_26,-74.78525948,39.64328539,710 FUAE AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_140_3,-74.62523808,39.61804967,119 FAIRWAY AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_140_5,-74.92350945,39.50968974,117 FAIRWAY AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_140_7,-74.905189,39.47254123,111 FAIRWAY AVE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_140_9,-74.85554219,39.56222791,721 BROAD ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_141_1,-74.45907918,39.34781597,107 PUTTING GREEN AVENUE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_141_10,-74.47990664,39.34781658,104 HADDON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_141_11,-74.4217471,39.37136183,106 HADDON AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_141_2,-74.49630246,39.32876881,105 PUTTING GREEN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_141_3,-74.43981321,39.36565564,103 PUTTING GREEN AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_141_4,-74.9539445,39.519634,101 PUTTING GREEN AVE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_141_6,-74.78433973,39.65336888,609 BROAD ST,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_141_7,-74.512215,39.3246185,605 BROAD ST,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_141_8,-74.49419763,39.33191787,100 HADDON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_142_1,-74.52904151,39.38256717,107 HADDON AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_142_10,-74.753489,39.4311025,106 W FRANKLIN AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_142_2,-74.3610735,39.411099,105 HADDON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_142_3,-74.403354,39.3900895,103 HADDON AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_142_4,-74.46179553,39.34487117,101 HADDON AVE,NORTHFIELD CITY,17,1971,1,RES1,3001 -0118_142_5,-74.5023344,39.32911208,509 BROAD ST,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_142_6,-74.43118976,39.36979614,100 FRANKLIN AVE,NORTHFIELD CITY,17,1956,1,GOV1,3004 -0118_142_7,-74.37373406,39.41692324,102 W FRANKLIN AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_142_8,-74.3810224,39.41825731,104 W FRANKLIN AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_143_1,-74.54407953,39.38970032,107 W FRANKLIN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_143_10,-74.82714391,39.48580379,312 FUAE AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_143_11.01,-74.5460159,39.3861974,311 BROAD ST,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_143_11.02,-74.84743633,39.4062655,313 BROAD ST,NORTHFIELD CITY,17,1999,1,RES1,3001 -0118_143_12,-74.53516517,39.38487866,112 DOLPHIN AVE,NORTHFIELD CITY,17,1902,1,RES1,3001 -0118_143_13,-74.73498,39.4603305,114 DOLPHIN AVE,NORTHFIELD CITY,17,1954,1,RES1,3004 -0118_143_15,-74.58599625,39.5354545,130 DOLPHIN AVE,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_143_2,-74.76272275,39.35119641,105 FRANKLIN AVE,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_143_3,-74.50774568,39.41882916,103 FRANKLIN AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_143_4,-74.49301804,39.4022036,101 FRANKLIN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_143_6,-74.82632176,39.37569654,411 BROAD ST,NORTHFIELD CITY,27,1924,2,RES1,3001 -0118_143_7,-74.8421065,39.3731835,409 BROAD ST,NORTHFIELD CITY,27,1924,1,RES1,3001 -0118_143_9,-74.75280168,39.45215115,407 BROAD ST,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_144_1,-74.60166036,39.47929029,804 BROAD ST,NORTHFIELD CITY,17,1972,1,COM1,3004 -0118_144_11,-74.60500352,39.38669017,811 SHORE RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_144_12,-74.57145665,39.42761849,809 SHORE RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_144_13,-74.86329067,39.43662799,807 SHORE RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_144_14,-74.60116778,39.50994968,805 SHORE RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_144_15,-74.63613033,39.53411099,801 SHORE RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_144_16,-74.70360995,39.36900538,16 FAIRWAY AVE,NORTHFIELD CITY,17,1982,1,RES1,3001 -0118_144_18,-74.62863581,39.42697841,18 FAIRWAY AVE,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_144_2,-74.5511245,39.4657995,41 JACKSON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_144_20,-74.549109,39.467117,22 FAIRWAY AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_144_21,-74.5744515,39.481412,34 FAIRWAY AVE,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_144_24,-74.710233,39.41397,44 FAIRWAY AVE,NORTHFIELD CITY,17,1912,1,RES1,3001 -0118_144_3,-74.537356,39.4559535,37 JACKSON AVE,NORTHFIELD CITY,17,1912,1,RES1,3001 -0118_144_5,-74.7277764,39.45730368,29 JACKSON AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_144_6,-74.63047052,39.40341668,25 JACKSON AVE,NORTHFIELD CITY,17,1912,1,RES1,3001 -0118_144_7,-74.64364227,39.37447445,23 JACKSON AVE,NORTHFIELD CITY,17,1912,1,RES1,3001 -0118_144_8,-74.5990485,39.4115385,21 JACKSON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_144_9,-74.64627154,39.51740916,17 JACKSON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_145_1,-74.629974,39.3659875,31 FAIRWAY AVE,NORTHFIELD CITY,17,1923,1,RES1,3001 -0118_145_10,-74.67018937,39.38994074,711 SHORE RD,NORTHFIELD CITY,17,1942,1,RES1,3001 -0118_145_12,-74.7381305,39.453346,707 SHORE RD,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_145_16,-74.6487835,39.4696495,10 PUTTING GREEN AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_145_18,-74.7596375,39.4321865,16 PUTTING GREEN AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_145_21,-74.63374515,39.31815897,30 PUTTING GREEN AVE,NORTHFIELD CITY,17,1936,1,RES1,3001 -0118_145_22,-74.66314618,39.53150634,32 PUTTING GREEN AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_145_24,-74.71865855,39.57682334,36 PUTTING GREEN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_145_3,-74.65208993,39.52244799,37 FAIRWAY AVE,NORTHFIELD CITY,17,1923,1,COM4,3004 -0118_145_4,-74.837863,39.37418681,29 FAIRWAY AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_145_7,-74.55484759,39.47036677,13 FAIRWAY AVE,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_146_1,-74.68600414,39.55483927,37 PUTTING GREEN AVE,NORTHFIELD CITY,17,1948,1,COM1,3004 -0118_146_11,-74.6652075,39.4610125,607 SHORE RD,NORTHFIELD CITY,17,1946,1,COM1,3004 -0118_146_14,-74.73247735,39.43988479,605 SHORE RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_146_16,-74.66210678,39.34824189,601 SHORE RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_146_18,-74.82524585,39.52641828,10 HADDON AVE,NORTHFIELD CITY,17,1945,1,RES1,3001 -0118_146_19,-74.78104117,39.62181449,12 HADDON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_146_20,-74.8041545,39.630127,14 HADDON AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_146_21,-74.92601074,39.50183453,16 HADDON AVE,NORTHFIELD CITY,17,1955,1,COM1,3004 -0118_146_22,-74.92512771,39.50547695,18 HADDON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_146_23,-74.92722334,39.52541205,30 HADDON AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_146_24,-74.79238114,39.64207356,32 HADDON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_146_3,-74.819421,39.632216,31 PUTTING GREEN AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_146_4,-74.80138878,39.62761979,29 PUTTING GREEN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_146_5,-74.87795834,39.59648645,9 PUTTING GREEN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_146_7,-74.779165,39.514245,7 PUTTING GREEN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_146_9,-74.62464623,39.35719792,5 PUTTING GREEN AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_147_10,-74.65918984,39.55111052,509 SHORE RD,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_147_11,-74.83434655,39.62445134,501 SHORE RD,NORTHFIELD CITY,17,1926,2,RES1,3001 -0118_147_13,-74.92014708,39.52131275,12 FRANKLIN AVE,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_147_15,-74.88393248,39.54288878,20 FRANKLIN AVE,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_147_17,-74.81148685,39.64077102,24 FRANKLIN AVE,NORTHFIELD CITY,16,1938,1,RES1,3001 -0118_147_18,-74.43060513,39.36735718,28 FRANKLIN AVE,NORTHFIELD CITY,16,1945,1,RES1,3001 -0118_147_19,-74.4937565,39.3309965,38 FRANKLIN AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_147_2,-74.43698981,39.36534943,23 HADDON AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_147_20,-74.50340683,39.32669451,40 FRANKLIN AVE,NORTHFIELD CITY,16,1900,1,COM4,3004 -0118_147_21,-74.51862113,39.32077704,44 FRANKLIN AVE,NORTHFIELD CITY,16,1900,1,RES1,3001 -0118_147_3,-74.42282636,39.36586197,17 HADDON AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_147_4,-74.769241,39.6632785,15 HADDON AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_147_5,-74.9506055,39.527119,13 HADDON AVE,NORTHFIELD CITY,17,1955,1,RES1,3002 -0118_147_6,-74.9341285,39.5126635,11 HADDON AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_147_7,-74.79986267,39.62217451,9 HADDON AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_147_9,-74.80804004,39.55204734,513 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_148_10,-74.43743009,39.36597189,15 FRANKLIN AVE,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_148_12,-74.88524687,39.58371214,417 SHORE RD,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_148_13,-74.7299885,39.6877595,413 SHORE RD,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_148_14,-74.81888972,39.65228544,409 SHORE RD,NORTHFIELD CITY,17,1900,1,COM4,3004 -0118_148_15,-74.49423425,39.33105326,405 SHORE RD,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_148_16,-74.5172735,39.3183155,8 VIRGINIA AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_148_18,-74.514496,39.3222895,28 VIRGINIA AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_148_19,-74.43509276,39.36985536,34 VIRGINIA AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_148_2,-74.40133287,39.38202976,414 BROAD ST,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_148_20.01,-74.446829,39.373547,38 VIRGINIA AVE,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_148_20.02,-74.3584145,39.412206,36 VIRGINIA AVE,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_148_21,-74.36400473,39.41793595,412 BROAD ST,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_148_4,-74.48682766,39.335544,31 FRANKLIN AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_148_6,-74.510643,39.3232835,27 FRANKLIN AVE,NORTHFIELD CITY,16,1949,1,RES1,3001 -0118_148_8,-74.50605828,39.32784415,19 FRANKLIN AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_148_9,-74.49371417,39.3319025,11 FRANKLIN AVE,NORTHFIELD CITY,16,1902,1,RES1,3001 -0118_149_1,-74.820848,39.371928,39 VIRGINIA AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_149_11,-74.36571666,39.40741301,40 DOLPHIN AVE,NORTHFIELD CITY,17,1995,1,RES1,3001 -0118_149_12.01,-74.36800654,39.42215829,46 DOLPHIN AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_149_12.02,-74.50418082,39.41009644,48 DOLPHIN AVE,NORTHFIELD CITY,17,1978,1,RES1,3001 -0118_149_13,-74.84966541,39.40038046,50 DOLPHIN AVE,NORTHFIELD CITY,17,1964,1,COM5,3004 -0118_149_14,-74.81192702,39.36619805,52 DOLPHIN AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_149_2,-74.52750482,39.39879989,35 VIRGINIA AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_149_3,-74.4499495,39.373198,31 VIRGINIA AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_149_4,-74.37093665,39.41508677,27 VIRGINIA AVE,NORTHFIELD CITY,16,1926,1,RES3A,3001 -0118_149_5,-74.36726983,39.40853952,25 VIRGINIA AVE,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_149_6,-74.400345,39.385029,1 VIRGINIA AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_149_7,-74.4814495,39.3405545,313 SHORE RD,NORTHFIELD CITY,17,1912,1,RES1,3001 -0118_149_8,-74.482737,39.3491215,309 SHORE RD,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_149_9,-74.510141,39.3227725,305 SHORE RD,NORTHFIELD CITY,17,1908,1,COM4,3004 -0118_15_1,-74.6270505,39.36004,21 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_15_2,-74.838375,39.408092,27 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_15_3,-74.62731114,39.43862669,29 HENRY DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_15_4,-74.6834846,39.39749125,1 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_15_5,-74.64242418,39.43612853,3 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_15_6,-74.5881515,39.503925,5 HENRY DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_15_7,-74.75822666,39.43081873,9 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_15_8,-74.69581547,39.51029684,11 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_15_9,-74.6697395,39.5664815,13 HENRY DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_150_1,-74.37712382,39.40007051,NEW RD & DOLPHIN AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_151_1,-74.50725599,39.43620387,101-201 SHORE RD,NORTHFIELD CITY,,0,1,IND2,3002 -0118_152_1,-74.81317323,39.64902467,2800 SHORE RD,NORTHFIELD CITY,,1975,1,RES1,3001 -0118_152_10,-74.8091065,39.6471575,44 E VERNON AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_152_12,-74.80374054,39.63954223,46 E VERNON AVE,NORTHFIELD CITY,16,1936,1,RES1,3001 -0118_152_13,-74.80005,39.6435545,48 E VERNON AVE,NORTHFIELD CITY,16,1921,2,RES1,3001 -0118_152_14,-74.8050075,39.6451595,50 E VERNON AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_152_2,-74.8091465,39.6497865,2 E VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_152_3,-74.8115675,39.653517,4 E VERNON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_152_4,-74.79700956,39.65119981,6 E VERNON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_152_5,-74.80638831,39.64005496,8 E VERNON AVE,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_152_7,-74.80713439,39.64104556,12 E VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_152_8,-74.80663259,39.64254275,14 E VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_152_9,-74.8073775,39.6433625,40 E VERNON AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_153_1,-74.53439324,39.30712381,2712 SHORE RD,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_153_10,-74.50135866,39.32677351,41 E VERNON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_153_11,-74.5014015,39.3272485,43 E VERNON AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_153_12,-74.501652,39.3292395,45 E VERNON AVE,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_153_13,-74.504862,39.332573,49 E VERNON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_153_14,-74.503588,39.3272605,52 E OAKCREST AVE,NORTHFIELD CITY,16,1905,1,RES1,3001 -0118_153_15,-74.50968118,39.32517859,50 E OAKCREST AVE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_153_16,-74.510777,39.322825,46 E OAKCREST AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_153_17,-74.514747,39.321064,38 E OAKCREST AVE,NORTHFIELD CITY,17,1903,1,RES1,3001 -0118_153_2,-74.59528003,39.31394491,2710 SHORE RD,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_153_20,-74.523064,39.3173325,30 E OAKCREST AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_153_21,-74.514925,39.32741633,26 E OAKCREST AVE,NORTHFIELD CITY,17,1905,1,RES1,3001 -0118_153_22,-74.4909735,39.526746,24 E OAKCREST AVE,NORTHFIELD CITY,17,1956,1,COM1,3004 -0118_153_24,-74.58028617,39.31072803,14 E OAKCREST AVE,NORTHFIELD CITY,17,1901,1,RES1,3001 -0118_153_27,-74.886628,39.469152,2706 SHORE RD,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_153_3,-74.512855,39.32715667,7 E VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_153_4,-74.51484281,39.33020182,11 E VERNON AVE,NORTHFIELD CITY,17,1968,1,COM1,3004 -0118_153_5,-74.52340666,39.3178525,13 E VERNON AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_153_6,-74.52235817,39.32003923,15 E VERNON AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_153_7,-74.51757,39.3185955,31 E VERNON AVE,NORTHFIELD CITY,17,1950,1,COM1,3004 -0118_153_8,-74.5144186,39.32253888,33 E VERNON AVE,NORTHFIELD CITY,17,1945,1,RES1,3001 -0118_153_9,-74.51605299,39.32365605,39 E VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_154_1,-74.5923745,39.3433195,2600 SHORE RD,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_154_11,-74.515574,39.330939,43 E OAKCREST AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_154_12,-74.4955995,39.5226405,2601 SWILKEY AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_154_13,-74.53283659,39.30635967,44 E REVERE AVE,NORTHFIELD CITY,16,1934,1,RES1,3001 -0118_154_14,-74.80614666,39.63234553,40 E REVERE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_154_15,-74.84408283,39.63350101,38 E REVERE AVE,NORTHFIELD CITY,17,1937,1,RES1,3001 -0118_154_16,-74.89319322,39.47930208,26 E REVERE AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_154_17,-74.91070174,39.47988102,24 E REVERE AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_154_18,-74.93259357,39.48400693,20 E REVERE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_154_19,-74.56181434,39.36520383,16 E REVERE AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_154_2,-74.58091917,39.34259079,2610 SHORE RD,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_154_20,-74.56685797,39.36470698,14 E REVERE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_154_4,-74.91748475,39.47576155,19 E OAKCREST AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_154_5,-74.8880142,39.47817615,23 E OAKCREST AVE,NORTHFIELD CITY,17,1923,1,COM1,3004 -0118_154_6,-74.8481045,39.609517,27 E OAKCREST AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_154_7,-74.64168062,39.53338682,31 E OAKCREST AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_154_9,-74.4962685,39.523227,39 E OAKCREST AVE,NORTHFIELD CITY,17,1907,1,RES1,3001 -0118_155_1,-74.58960162,39.35536545,2552 SHORE RD,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_155_10,-74.93664225,39.49737284,43 E REVERE AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_155_11,-74.92442524,39.49514482,47 E REVERE AVE,NORTHFIELD CITY,17,1930,1,RES1,3001 -0118_155_15,-74.5839885,39.363966,26 E. GLENCOVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_155_3,-74.61185483,39.34963197,15 E REVERE AVE,NORTHFIELD CITY,16,1928,1,GOV1,3004 -0118_155_4,-74.6041095,39.349891,25 E REVERE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_155_6,-74.58955711,39.34868888,27 E REVERE AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_155_7,-74.57832616,39.33824494,29 E REVERE AVE,NORTHFIELD CITY,16,1928,1,RES1,3004 -0118_155_8,-74.57260049,39.36213664,37 E REVERE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_155_9,-74.554904,39.364323,39 E REVERE AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_156_1,-74.78787468,39.67648164,100 E VERNON AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_156_10,-74.7798675,39.6401135,2801 GAIL AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_156_3,-74.79038066,39.65663704,106 E VERNON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_156_5,-74.78616,39.6612525,108 E VERNON AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_156_7,-74.75937923,39.66822296,110 E VERNON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_156_8,-74.7923407,39.64029932,112 E VERNON AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_156_9,-74.787466,39.646303,114 E VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_157_1,-74.77931328,39.64174669,2800 GAIL AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_10,-74.4121735,39.366029,135 E VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_157_11,-74.44176132,39.35763934,133 E VERNON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_12,-74.42742481,39.36716583,131 E VERNON AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_157_13,-74.43752084,39.36626849,129 E VERNON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_14,-74.436402,39.364594,127 E VERNON AVE,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_157_16,-74.5199635,39.315852,119 E VERNON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_17,-74.525293,39.3161955,117 E VERNON AVE,NORTHFIELD CITY,16,1933,1,RES1,3001 -0118_157_18,-74.5032295,39.32559,111 E VERNON AVE,NORTHFIELD CITY,17,1934,1,RES1,3001 -0118_157_19,-74.494942,39.332819,109 E VERNON AVE,NORTHFIELD CITY,16,1936,1,RES1,3001 -0118_157_2,-74.7183165,39.643131,122 E VERNON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_157_20,-74.49447818,39.33138095,101 E VERNON AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_157_21,-74.50121563,39.32922336,110 E OAKCREST AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_157_24,-74.4985385,39.3332195,114 E OAKCREST AVE,NORTHFIELD CITY,16,1950,1,RES1,3001 -0118_157_25,-74.4951595,39.3327545,116 E OAKCREST AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_26,-74.52501484,39.31537599,120 E OAKCREST AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_157_27,-74.530844,39.307392,122 E OAKCREST AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_157_28,-74.44083774,39.36572219,124 E OAKCREST AVE,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_157_29,-74.42368064,39.36714903,126 E OAKCREST AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_157_3,-74.723723,39.647642,126 E VERNON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_157_30,-74.4419485,39.353836,128 E OAKCREST AVE,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_157_31,-74.42764745,39.35939668,130 E OAKCREST AVE,NORTHFIELD CITY,17,1992,1,RES1,3001 -0118_157_33,-74.81997616,39.64745684,E VERNON AVE,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_157_35,-74.52000086,39.31644363,135 E OAKCREST AVE,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_157_37,-74.52693765,39.31263496,131 E OAKCREST AVE,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_157_38,-74.50892769,39.32212932,129 E OAKCREST AVE,NORTHFIELD CITY,17,1989,1,GOV1,3004 -0118_157_4,-74.688487,39.6545955,VERNON AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_157_40,-74.49808785,39.32926298,127 E OAKCREST AVE,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_157_41,-74.503226,39.333083,125 E OAKCREST AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_43,-74.50493,39.329768,117 E OAKCREST AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_157_44,-74.50170643,39.32765433,115 E OAKCREST AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_157_45,-74.50422618,39.32682233,113 E OAKCREST AVE,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_157_46,-74.5138382,39.32451265,111 E OAKCREST,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_157_47,-74.51218949,39.32279093,103 E OAKCREST AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_48,-74.5150324,39.31966184,101 E OAKCREST AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_49,-74.51147867,39.32766653,2600 SWILKEY AVE,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_157_5,-74.79616947,39.66378621,155 E VERNON AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_157_51,-74.52318259,39.31979966,106-8 E REVERE AVE,NORTHFIELD CITY,47,1960,2,RES1,3001 -0118_157_52,-74.51513234,39.31996555,112-14 E REVERE AVE,NORTHFIELD CITY,47,1958,2,RES1,3001 -0118_157_53,-74.512293,39.3229425,124 E REVERE AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_157_54,-74.50227983,39.32619951,126 E REVERE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_56,-74.50624926,39.32801267,128 E REVERE AVE,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_157_57,-74.49967663,39.33213004,138 E REVERE AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_157_58,-74.50571749,39.33259861,140 E REVERE AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_157_60,-74.49805327,39.33096088,142 E REVERE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_157_62,-74.49819557,39.33312216,144 REVERE AVE,NORTHFIELD CITY,17,1995,1,RES1,3001 -0118_157_65,-74.50124983,39.33255251,145 E REVERE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_66,-74.50311417,39.32907,141 E REVERE AVE,NORTHFIELD CITY,17,2001,1,RES1,3001 -0118_157_69,-74.519507,39.32319033,137 E REVERE AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_157_7,-74.830551,39.6443715,151 E VERNON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_71,-74.518406,39.3176925,135 E REVERE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_157_72,-74.52403252,39.31742395,125 E REVERE AVE,NORTHFIELD CITY,16,1898,1,GOV1,3004 -0118_157_73,-74.51318691,39.32791234,123 E REVERE AVE,NORTHFIELD CITY,16,1935,1,RES1,3001 -0118_157_74,-74.52483723,39.50565316,115 E REVERE AVE,NORTHFIELD CITY,16,1936,1,RES1,3001 -0118_157_75,-74.5047825,39.5290165,113 E REVERE AVE,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_157_76,-74.53494013,39.30514169,111 E REVERE AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_157_77,-74.58854629,39.31378253,107 E REVERE AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_157_78,-74.81960705,39.63599366,105 E REVERE AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_157_8,-74.82249037,39.65228883,149 E VERNON AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_157_80,-74.88547269,39.46335499,101 E REVERE AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_157_81.01,-74.9207175,39.4887675,100 E GLENCOVE AVE,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_157_9,-74.81060998,39.66105767,147 E VERNON AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_158_1,-74.57108568,39.41991476,2510 SHORE RD,NORTHFIELD CITY,17,1951,1,RES1,3001 -0118_158_2,-74.53743367,39.41109497,2530 SHORE RD,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_158_26,-74.49047743,39.33998012,2418 SHORE RD,NORTHFIELD CITY,16,1936,1,RES1,3001 -0118_158_28,-74.63572733,39.34252675,2408 SHORE RD,NORTHFIELD CITY,17,1930,1,RES1,3001 -0118_158_29,-74.63734827,39.36205906,2404 SHORE RD,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_158_3.01,-74.64512343,39.54952137,27 E GLENCOVE AVE,NORTHFIELD CITY,17,1981,1,RES1,3001 -0118_158_30,-74.51223982,39.32649952,2 COVE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_158_31.01,-74.55080485,39.36355899,16 COVE AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_158_31.02,-74.6186998,39.3196965,18 COVE AVE,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_158_34,-74.84769333,39.60998654,300 E ROSEDALE AVE,NORTHFIELD CITY,18,1973,1,RES1,3001 -0118_158_4,-74.59106536,39.35388547,35 E GLENCOVE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_158_5.01,-74.59055884,39.35061018,103 E GLENCOVE AVE,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_158_5.02,-74.603781,39.3505405,101 E GLENCOVE AVE,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_158_51,-74.89967,39.4795685,2204 BAY DR,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_158_54,-74.5642465,39.3611065,2200 BAY DR,NORTHFIELD CITY,,1966,1,COM4,3004 -0118_158_58,-74.5928085,39.359072,2010 BAY DR,NORTHFIELD CITY,17,1982,1,RES1,3001 -0118_158_60,-74.64627311,39.52955251,2008 BAY DR,NORTHFIELD CITY,17,1982,1,RES1,3001 -0118_158_63,-74.59745825,39.31257723,2006 BAY DR,NORTHFIELD CITY,17,1983,1,RES1,3001 -0118_158_68,-74.4563755,39.3485725,300 E MILL RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_159_14.01,-74.578322,39.3363185,228 E ROSEDALE AVE,NORTHFIELD CITY,18,1985,1,RES1,3001 -0118_159_14.02,-74.56277489,39.36180468,230 E ROSEDALE AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_159_3,-74.69387257,39.51182314,206 E ROSEDALE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_159_5,-74.64915853,39.32913676,208 E ROSEDALE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_159_7,-74.589233,39.3552775,220 E ROSEDALE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_159_9,-74.6053395,39.3495525,224 E ROSEDALE AVE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_16.01_11,-74.4424995,39.358096,1505 MILL RD,NORTHFIELD CITY,17,2005,1,RES1,3001 -0118_16.01_12.01,-74.50765289,39.33097634,1507 MILL RD,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.01_12.02,-74.52413884,39.31945248,2 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.01_12.03,-74.50470849,39.32646664,4 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.01_12.04,-74.378368,39.4172925,6 MAZZA DR,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_16.01_12.05,-74.3807925,39.4173525,8 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3004 -0118_16.01_12.06,-74.51810372,39.32085678,10 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.01_12.07,-74.470976,39.344493,12 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.01_14.01,-74.64951486,39.56617111,1321 W MILL RD,NORTHFIELD CITY,16,1941,1,RES1,3001 -0118_16.01_14.02,-74.4251775,39.3644345,14 MAZZA DR,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_16.01_14.03,-74.88666834,39.54233082,16 MAZZA DR,NORTHFIELD CITY,17,1992,1,RES1,3001 -0118_16.01_16,-74.78175116,39.68028654,1317 MILL RD,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_16.01_17,-74.48468033,39.33614935,1311 W MILL RD,NORTHFIELD CITY,17,1876,1,RES1,3001 -0118_16.01_18,-74.4832415,39.3418245,1225 MILL RD,NORTHFIELD CITY,,1980,1,RES1,3001 -0118_16.01_20,-74.82321629,39.38478785,1203 MILL RD,NORTHFIELD CITY,17,1900,1,IND2,3002 -0118_16.01_22,-74.64596109,39.47256404,28 HENRY DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_16.01_23,-74.646163,39.533019,26 HENRY DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_16.01_24,-74.87871,39.5986585,24 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_16.01_25,-74.81101134,39.63482748,22 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_16.01_26,-74.86021606,39.61025665,20 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_16.01_27,-74.679558,39.551466,18 HENRY DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_16.01_28,-74.88134786,39.60216877,16 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_16.01_29,-74.706964,39.579408,14 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_16.01_30,-74.64660435,39.53099953,12 HENRY DR,NORTHFIELD CITY,17,2005,1,RES1,3001 -0118_16.01_31,-74.692043,39.4892845,10 HENRY DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_16.01_32,-74.5555445,39.4715675,8 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_16.01_33,-74.7312844,39.45554078,6 HENRY DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_16.01_34,-74.672597,39.376198,4 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_16.01_35,-74.661003,39.5185135,2 HENRY DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_16.01_36.01,-74.577869,39.416693,903 MILL RD,NORTHFIELD CITY,17,2000,1,RES1,3001 -0118_16.01_36.04,-74.57536966,39.42903273,106 NORTHWOOD COURT,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_16.01_36.07,-74.62179511,39.46167608,109 NORTHWOOD COURT,NORTHFIELD CITY,17,1978,1,COM1,3004 -0118_16.01_38.01,-74.5342235,39.3855175,815 MILL RD,NORTHFIELD CITY,,1968,1,RES1,3001 -0118_16.01_38.02,-74.607713,39.51751,1776 BURTON AVE,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_16.01_39,-74.58805005,39.42517398,1786 BURTON AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_16.01_40,-74.72267182,39.45678598,1473 BURTON AVE,NORTHFIELD CITY,,1970,1,RES1,3001 -0118_16.01_41,-74.44347919,39.36963695,1475 BURTON AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_44,-74.7986595,39.6545495,BURTON AVE,NORTHFIELD CITY,,1968,1,RES1,3001 -0118_16.01_45,-74.70065866,39.64688788,810 TILTON RD,NORTHFIELD CITY,,1964,1,RES1,3001 -0118_16.01_46.03,-74.46523159,39.34712217,802 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_46.04,-74.60722366,39.38034558,798 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_47,-74.42171192,39.37203494,631 TILTON ROAD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_48,-74.37163,39.4058845,500 TILTON RD,NORTHFIELD CITY,,0,1,COM1,3004 -0118_16.01_49,-74.3797125,39.415984,450 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_51,-74.52764867,39.38709305,430 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_53.01,-74.5071965,39.40577633,376 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_53.02,-74.5291295,39.399922,410 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_54,-74.509968,39.4054955,320 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_55,-74.51246794,39.40848169,330 TILTON RD,NORTHFIELD CITY,,0,1,COM1,3004 -0118_16.01_57,-74.4960391,39.42768282,TILTON RD,NORTHFIELD CITY,,0,1,COM1,3004 -0118_16.01_59,-74.49226506,39.42034847,332 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_60,-74.49539,39.4342375,250 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.01_62,-74.496435,39.4321925,200 TILTON RD,NORTHFIELD CITY,,0,1,COM1,3004 -0118_16.01_63.01,-74.4987988,39.43017553,TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_16.02_1,-74.78451943,39.64177866,1 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.02_2,-74.52697493,39.31164385,3 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.02_3,-74.521612,39.3184425,5 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.02_4,-74.50733,39.326391,7 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.02_5,-74.81644172,39.6533349,9 MAZZA DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_16.02_6,-74.938649,39.5234895,11 MAZZA DR,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_160_1,-74.5528055,39.3840935,15 COVE AVE,NORTHFIELD CITY,17,1900,1,RES3A,3001 -0118_160_11,-74.58301267,39.32591557,34 E ROSEDALE AVE,NORTHFIELD CITY,17,1856,1,RES1,3001 -0118_160_12,-74.48911433,39.33743701,100 E ROSEDALE AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_160_15,-74.4811518,39.34680885,104 E ROSEDALE AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_160_18,-74.4859305,39.3352585,134 E ROSEDALE AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_160_2,-74.531855,39.386613,2300 SHORE RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_160_21,-74.59055869,39.41795759,144 E ROSEDALE AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_160_23,-74.562076,39.40367933,152 E ROSEDALE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_160_3,-74.5435475,39.376945,6 E ROSEDALE AVE,NORTHFIELD CITY,17,1945,1,RES1,3001 -0118_160_4,-74.54208088,39.37428964,8 E ROSEDALE AVE,NORTHFIELD CITY,17,1945,1,RES1,3001 -0118_160_5,-74.57230455,39.35947031,10 E ROSEDALE AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_160_6,-74.51154259,39.32675566,12 E ROSEDALE AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_160_7,-74.5539804,39.35791499,14 E ROSEDALE AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_160_8,-74.610944,39.320467,21 COVE AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_161_1,-74.5346175,39.404378,2200 SHORE RD,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_161_12,-74.56107177,39.37137196,25 E ROSEDALE AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_161_13,-74.550919,39.373446,29 E ROSEDALE AVE,NORTHFIELD CITY,17,1929,1,RES1,3001 -0118_161_15,-74.63709926,39.3628098,33 E ROSEDALE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_161_17,-74.62555002,39.35351198,101 E ROSEDALE AVE,NORTHFIELD CITY,16,1934,1,RES1,3001 -0118_161_19,-74.6036175,39.3175975,133 E ROSEDALE AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_161_25,-74.470308,39.34539,141 E ROSEDALE AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_161_27,-74.462217,39.3504085,2217 CORNWALL AVE,NORTHFIELD CITY,17,1960,1,RES3A,3001 -0118_161_29,-74.47072603,39.34349197,2201 CORNWALL AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_161_31,-74.48325017,39.3453005,114 E YORKSHIRE AVE,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_161_33,-74.45708623,39.35193641,112 E YORKSHIRE AVE,NORTHFIELD CITY,17,1952,1,GOV1,3004 -0118_161_35,-74.5983525,39.319474,110 E YORKSHIRE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_161_37,-74.62316,39.3569705,108 E YORKSHIRE AVE,NORTHFIELD CITY,17,1948,1,RES3A,3001 -0118_161_4,-74.58979798,39.33126117,2216 SHORE ROAD,NORTHFIELD CITY,17,1917,1,RES1,3001 -0118_161_40,-74.70385383,39.3677075,100 E YORKSHIRE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_161_42,-74.560128,39.3702065,12 E YORKSHIRE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_161_44,-74.585476,39.3757875,8 E YORKSHIRE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_161_46,-74.47165568,39.48872046,4 E YORKSHIRE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_161_47,-74.61283278,39.32448488,2 E. YORKSHIRE AVE,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_161_7,-74.60558617,39.3869512,9 E ROSEDALE AVE,NORTHFIELD CITY,16,1936,1,GOV1,3004 -0118_161_8,-74.59924941,39.37350954,15 E ROSEDALE AVE,NORTHFIELD CITY,16,1938,1,RES1,3001 -0118_161_9,-74.58727073,39.38076988,17 E ROSEDALE AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_162_1,-74.63885452,39.3994781,2100 SHORE RD,NORTHFIELD CITY,17,1850,1,RES1,3001 -0118_162_10,-74.60309552,39.32571516,7 E YORKSHIRE AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_162_12,-74.453525,39.4960795,15 E YORKSHIRE AVE,NORTHFIELD CITY,16,1953,1,RES1,3001 -0118_162_13,-74.574474,39.3419895,2101 AMHERST AVE,NORTHFIELD CITY,17,1950,1,GOV1,3004 -0118_162_14,-74.6094438,39.38944497,6 E SURREY AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_162_16,-74.57515358,39.41126965,4 E SURREY AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_162_18,-74.61300169,39.41906403,2 E SURREY AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_162_3,-74.62680868,39.37609394,2104 SHORE RD,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_162_4,-74.5758795,39.429761,2106 SHORE RD,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_162_5,-74.5886857,39.40774153,1 E YORKSHIRE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_162_6,-74.57409733,39.40902777,5 E YORKSHIRE AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_163_1,-74.48045268,39.35132845,2000 SHORE RD,NORTHFIELD CITY,17,1920,1,COM1,3004 -0118_163_10,-74.599965,39.4071905,2015 AMHERST AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_163_11,-74.62600597,39.39238419,20 E STEELMAN AVE,NORTHFIELD CITY,17,1945,1,RES1,3001 -0118_163_13,-74.63223169,39.42734106,12 STEELMAN AVE,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_163_3,-74.59626414,39.35048345,2004 SHORE RD,NORTHFIELD CITY,17,1941,1,RES1,3001 -0118_163_4,-74.679032,39.4136255,2006 SHORE RD,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_163_5,-74.63450169,39.4209366,2008 SHORE RD,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_163_6,-74.65114025,39.41155209,3 E SURREY AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_163_9,-74.59924,39.433287,9 E SURREY AVE,NORTHFIELD CITY,16,1958,1,RES1,3001 -0118_164_1,-74.56808745,39.47661316,2 E MILL RD,NORTHFIELD CITY,18,1919,1,COM1,3004 -0118_164_10,-74.5952225,39.3495035,21 STEELMAN AVE,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_164_13,-74.6202385,39.4232575,27 STEELMAN AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_164_14,-74.70091602,39.42038357,20 E. MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_164_15,-74.61095217,39.34092844,18 E MILL RD,NORTHFIELD CITY,17,2007,1,RES3A,3001 -0118_164_16,-74.4590151,39.35427725,16 E MILL RD,NORTHFIELD CITY,17,1963,1,RES3A,3001 -0118_164_17,-74.48868034,39.33832199,12 E MILL RD,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_164_19,-74.50379067,39.33684446,8 E MILL RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_164_21,-74.59428751,39.35723733,6 E MILL RD,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_164_22,-74.564502,39.44879383,4 E MILL RD,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_164_6,-74.4893855,39.3355245,11 E STEELMAN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_164_7,-74.49204029,39.33825339,17 E STEELMAN AVE,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_165_1,-74.59031822,39.3776091,2110 AMHERST AVE,NORTHFIELD CITY,17,1954,1,RES3A,3001 -0118_165_11,-74.58348822,39.33335928,119 E YORKSHIRE AVE,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_165_12,-74.45522875,39.35250917,2107 CORNWALL AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_165_13,-74.5711115,39.339224,128 E SURREY AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_165_15,-74.46052846,39.34712397,122 E SURREY AVE,NORTHFIELD CITY,17,2008,1,RES1,3001 -0118_165_17,-74.54492367,39.3741815,116 E SURREY AVE,NORTHFIELD CITY,16,1929,1,RES1,3001 -0118_165_19,-74.5412905,39.3930685,112 E SURREY AVE,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_165_22,-74.60241189,39.37149628,108 E SURREY AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_165_24,-74.50430661,39.4801411,2100 AMHERST AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_165_3,-74.53161681,39.38912519,105 E YORKSHIRE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_165_5,-74.536116,39.3842425,107 E YORKSHIRE AVE,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_165_7,-74.65080514,39.35728503,113 E YORKSHIRE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_165_8,-74.5682395,39.3593065,117 E YORKSHIRE AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_166_1,-74.56902624,39.41249423,2014 AMHERST AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_166_10,-74.5430265,39.3920745,121 E SURREY AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_166_12,-74.56414172,39.37185376,125 E SURREY AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_166_14,-74.5827055,39.371873,128 E STEELMAN AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_166_16,-74.45600109,39.48980841,124 E STEELMAN AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_166_17,-74.5104525,39.4731405,120 E STEELMAN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_166_20,-74.56562864,39.34756415,114 E STEELMAN AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_166_22,-74.554633,39.4037225,108 E STEELMAN AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_166_24,-74.5850789,39.40662167,102 E STEELMAN AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_166_3,-74.56843283,39.3452904,109 E SURREY AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_166_5,-74.59404936,39.32887387,113 E SURREY AVE,NORTHFIELD CITY,16,1929,1,RES1,3001 -0118_166_8,-74.601745,39.3730465,119 E SURREY AVE,NORTHFIELD CITY,17,1954,1,COM1,3004 -0118_167_1,-74.601871,39.43293,101 E STEELMAN AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_167_3,-74.55782825,39.43377027,101 OXFORD CIRCLE,NORTHFIELD CITY,17,1944,1,COM10,3003 -0118_168_1,-74.62469544,39.41093969,100 OXFORD CIRCLE,NORTHFIELD CITY,17,1975,1,GOV1,3004 -0118_168_11,-74.523503,39.470766,208 OXFORD CIRCLE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_168_12,-74.614467,39.3247665,120 E MILL RD,NORTHFIELD CITY,17,1962,1,COM1,3004 -0118_168_17,-74.58869961,39.41232331,110 E MILL RD,NORTHFIELD CITY,17,1927,1,RES1,3001 -0118_168_2,-74.61485873,39.4311052,102 OXFORD CIRCLE,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_168_3,-74.56741359,39.41177878,106 OXFORD CIRCLE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_168_6,-74.60066567,39.32765105,110 OXFORD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_168_7,-74.58561948,39.32949612,202 OXFORD CIRCLE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_168_9,-74.465585,39.4706725,206 OXFORD CIRCLE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_169_1,-74.58370545,39.4061467,2206 CORNWALL AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_169_10,-74.64298352,39.53311734,225 E ROSEDALE AVE,NORTHFIELD CITY,17,1951,1,RES1,3001 -0118_169_13,-74.57591067,39.35472501,227 E ROSEDALE AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_169_15,-74.6071165,39.341559,229 E ROSEDALE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_169_18,-74.58222969,39.35827862,216 E YORKSHIRE AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_169_20,-74.6168865,39.3682145,214 E YORKSHIRE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_169_22,-74.664382,39.528501,212 E YORKSHIRE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_169_24,-74.59227633,39.32574475,210 E YORKSHIRE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_169_25,-74.571687,39.412667,208 E YORKSHIRE AVE,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_169_26,-74.52056944,39.31737183,202 E YORKSHIRE AVE,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_169_27,-74.514531,39.32798,2200 CORNWALL AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_169_3,-74.5592045,39.4064975,213 E ROSEDALE AVE,NORTHFIELD CITY,17,1927,1,COM5,3004 -0118_169_6,-74.65001757,39.54951567,217 E ROSEDALE AVE,NORTHFIELD CITY,17,1900,1,RES3A,3001 -0118_17_2,-74.50380616,39.42954255,201 TILTON RD,NORTHFIELD CITY,,0,1,RES3A,3001 -0118_17_3.01,-74.50181844,39.43236312,231 TILTON RD,NORTHFIELD CITY,,0,1,RES3A,3001 -0118_17_3.02,-74.4913865,39.4318945,221 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_17_5,-74.49010773,39.43391892,301 TILTON RD,NORTHFIELD CITY,,0,1,IND2,3002 -0118_17_6.01,-74.4938555,39.4344385,333 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_170_1,-74.48324228,39.34377306,2110 CORNWALL AVE,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_170_12,-74.6077945,39.310361,217 E YORKSHIRE AVE,NORTHFIELD CITY,17,2000,1,RES1,3001 -0118_170_14,-74.66144562,39.54515791,219 E YORKSHIRE AVE,NORTHFIELD CITY,17,1959,1,RES1,3002 -0118_170_15,-74.59788282,39.31435643,2111 BAY DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_170_16,-74.56229244,39.41007077,222 E SURREY AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_170_17,-74.56994277,39.41275402,218 E SURREY AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_170_19,-74.51554611,39.32239764,216 E SURREY AVE,NORTHFIELD CITY,17,1959,1,RES1,3004 -0118_170_21,-74.50950035,39.32594097,214 E SURREY AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_170_23,-74.4872725,39.335101,210 E SURREY AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_170_26,-74.44910738,39.35787588,206 E SURREY AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_170_27,-74.48334602,39.35379734,204 E SURREY AVE,NORTHFIELD CITY,17,1942,1,RES1,3001 -0118_170_28,-74.585741,39.3317755,2100 CORNWALL AVE,NORTHFIELD CITY,17,1956,1,RES1,3002 -0118_170_4,-74.45938836,39.34817547,207 E YORKSHIRE AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_170_7,-74.5154175,39.320895,211 E YORKSHIRE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_170_9,-74.56950058,39.41217363,213 E YORKSHIRE AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_171_1,-74.54804286,39.3603385,2006 CORNWALL AVE,NORTHFIELD CITY,17,1959,1,RES3A,3001 -0118_171_13,-74.45838467,39.34913949,2003 BAY DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_171_14,-74.48589533,39.34641389,2001 BAY DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_171_15,-74.45427286,39.35319747,222 E STEELMAN AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_171_17,-74.57746443,39.33358728,220 E STEELMAN AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_171_19,-74.60414457,39.33111334,206 E STEELMAN AVE,NORTHFIELD CITY,17,1952,1,RES3A,3001 -0118_171_21,-74.63078678,39.35394698,204 E STEELMAN AVE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_171_23,-74.6524445,39.3560235,202 E STEELMAN AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_171_25,-74.53640457,39.38075185,200 E STEELMAN AVE,NORTHFIELD CITY,17,1955,1,RES1,3002 -0118_171_3,-74.569862,39.3549115,207 E SURREY AVE,NORTHFIELD CITY,17,1958,1,RES1,3002 -0118_171_5,-74.6047145,39.322822,209 E SURREY AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_171_7,-74.462228,39.352586,213 E SURREY AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_171_9,-74.47977668,39.34309483,215 E SURREY AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_172_1,-74.53817085,39.38309262,211 OXFORD CR,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_172_10,-74.54389039,39.37293062,202 E MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_172_2,-74.6774625,39.357355,215 E STEELMAN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_172_3,-74.632865,39.3582285,217 E STEELMAN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_172_4.01,-74.59960354,39.32649482,225 E STEELMAN AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_172_5,-74.4611175,39.35575,227 E STEELMAN AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_172_6,-74.58863667,39.33215951,1905 BAY DR,NORTHFIELD CITY,17,1958,1,RES1,3002 -0118_172_7,-74.65703,39.3465965,1901 BAY DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_173_1,-74.413261,39.3649425,1728 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_173_11.02,-74.796297,39.367148,213 E MILL RD,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_173_14,-74.71320499,39.40861888,12 ARGO LANE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_173_15,-74.81125798,39.56083031,8 ARGO LANE,NORTHFIELD CITY,17,1943,1,RES1,3001 -0118_173_16,-74.78958574,39.63504407,1802 SHORE RD,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_173_17,-74.7380265,39.5922115,1806 SHORE RD,NORTHFIELD CITY,16,1912,1,RES1,3001 -0118_173_18,-74.81237623,39.40022568,1810 SHORE RD,NORTHFIELD CITY,,1972,1,RES1,3001 -0118_173_19,-74.63996419,39.47301355,1826 SHORE RD,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_173_2,-74.60518881,39.48356147,5 E MILL RD,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_173_3,-74.443023,39.366099,15 E MILL RD,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_173_5,-74.50656005,39.33751733,29 E MILL RD,NORTHFIELD CITY,,0,1,REL1,3004 -0118_173_6,-74.49137931,39.33846172,101 E MILL RD,NORTHFIELD CITY,17,1972,1,RES3A,3001 -0118_173_7,-74.4646665,39.358073,103 E MILL RD,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_173_8,-74.6962272,39.42025451,105 E MILL RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_173_9,-74.672685,39.369731,107 E MILL RD,NORTHFIELD CITY,17,2003,1,RES1,3001 -0118_174_1.01,-74.57134179,39.47990825,2 GOLF VIEW DR,NORTHFIELD CITY,17,1978,1,RES3B,3001 -0118_174_1.02,-74.48614519,39.34629994,4 GOLF VIEW DR,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_174_1.03,-74.50273011,39.32916416,6 GOLF VIEW DR,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_174_1.04,-74.595894,39.3572705,8 GOLF VIEW DR,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_175_1.02,-74.631279,39.3921535,3 CASEY DR,NORTHFIELD CITY,,2015,1,RES1,3001 -0118_175_1.03,-74.8157215,39.6352785,5 CASEY DR,NORTHFIELD CITY,18,1987,1,RES1,3004 -0118_175_1.04,-74.6411799,39.53063515,7 CASEY DR,NORTHFIELD CITY,18,1988,1,GOV1,3004 -0118_175_1.05,-74.50474617,39.33985994,1000 ARGO LANE,NORTHFIELD CITY,18,1992,1,RES1,3001 -0118_175_1.06,-74.6552795,39.629551,9 CASEY DR,NORTHFIELD CITY,18,1994,1,RES1,3001 -0118_175_1.07,-74.51935237,39.31620789,300 ARGO LANE,NORTHFIELD CITY,18,1996,1,RES1,3001 -0118_175_1.08,-74.71316733,39.37569972,400 ARGO LANE,NORTHFIELD CITY,18,1995,1,RES1,3001 -0118_175_10,-74.36037535,39.41449055,1202 SHORE RD,NORTHFIELD CITY,17,1903,1,RES1,3001 -0118_175_11,-74.60045582,39.43003949,1212 SHORE RD,NORTHFIELD CITY,18,1998,1,RES1,3001 -0118_175_12,-74.39492045,39.38765484,1 GOLF VIEW DR,NORTHFIELD CITY,17,1980,1,COM1,3004 -0118_175_13,-74.4526235,39.3569735,3 GOLF VIEW DR,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_175_14,-74.46933647,39.34357515,5 GOLF VIEW DR,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_175_15,-74.567709,39.361479,7 GOLF VIEW DR,NORTHFIELD CITY,17,1983,1,RES1,3001 -0118_175_16,-74.43452618,39.36663794,9 GOLF VIEW DR,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_175_18,-74.88398149,39.59422183,1 CASEY DR,NORTHFIELD CITY,18,1981,1,RES1,3001 -0118_175_19,-74.52393834,39.31405904,1400 SHORE RD,NORTHFIELD CITY,17,1925,1,RES1,3001 -0118_175_20,-74.812258,39.6581725,1404 SHORE RD,NORTHFIELD CITY,,1939,1,RES1,3002 -0118_175_21,-74.80740164,39.64932255,1406-08 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_175_23,-74.79922216,39.64409103,1410 SHORE RD,NORTHFIELD CITY,,1920,1,RES1,3001 -0118_175_25,-74.761926,39.6403475,1414 SHORE RD,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_175_26,-74.9411615,39.524945,1420 SHORE RD,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_175_28,-74.6257895,39.4167475,1500 SHORE RD,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_175_29,-74.63512144,39.39279818,1504 SHORE RD,NORTHFIELD CITY,17,1968,2,GOV1,3004 -0118_175_3,-74.51005517,39.32558089,122 HEMSLEY PL,NORTHFIELD CITY,17,1900,2,RES1,3001 -0118_175_30,-74.8891325,39.4778935,1510 SHORE RD,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_175_31,-74.8773615,39.601998,1512 SHORE RD,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_175_32,-74.65490955,39.59417566,1600 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_175_34,-74.95611051,39.51248428,1622 SHORE RD,NORTHFIELD CITY,16,1905,1,RES3A,3001 -0118_175_35.01,-74.78998696,39.44756388,1706 SHORE RD,NORTHFIELD CITY,18,1988,1,RES1,3001 -0118_175_36,-74.59709048,39.31022366,1712 SHORE RD,NORTHFIELD CITY,17,1867,1,RES1,3001 -0118_175_37.01,-74.48406461,39.53324023,9 ARGO LANE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_175_37.02,-74.87683821,39.59500004,11 ARGO LANE,NORTHFIELD CITY,17,1995,1,RES1,3001 -0118_175_37.03,-74.7791495,39.6018375,13 ARGO LANE,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_175_38,-74.5749305,39.480746,1300 ARGO LANE,NORTHFIELD CITY,20,1984,1,RES1,3001 -0118_175_48,-74.82108447,39.64530034,900 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_175_48.01,-74.39076217,39.3919935,101 HEMSLEY PL,NORTHFIELD CITY,18,1988,1,RES1,3001 -0118_175_48.02,-74.49097867,39.33990649,103 HEMSLEY PL,NORTHFIELD CITY,18,1987,1,RES1,3002 -0118_175_49,-74.51299,39.4036395,1128 SHORE RD,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_175_50,-74.511964,39.431043,1124 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_175_53,-74.71442755,39.41545927,1100 SHORE RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_175_55,-74.5440054,39.38586165,716 SHORE RD,NORTHFIELD CITY,17,2017,1,RES1,3001 -0118_175_56,-74.6053555,39.3902595,714 SHORE RD,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_175_57,-74.58965792,39.41454269,712 SHORE RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_175_58,-74.61851701,39.50902367,710 SHORE RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_175_59,-74.60139257,39.4161078,706 SHORE RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_175_60,-74.54567967,39.52445501,24 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_175_61,-74.61615609,39.37310806,147 BONNIE LEE DR,NORTHFIELD CITY,17,2017,1,RES1,3004 -0118_175_62,-74.59260885,39.37727222,1 LIDO DR,NORTHFIELD CITY,17,2018,1,RES1,3001 -0118_175_63,-74.77357932,39.31942107,145 BONNIE LEE DR,NORTHFIELD CITY,17,2018,1,RES1,3001 -0118_175_64,-74.75837765,39.30507384,143 BONNIE LEE DR,NORTHFIELD CITY,17,2017,1,GOV1,3004 -0118_175_65,-74.56911679,39.36122073,141 BONNIE LEE DR,NORTHFIELD CITY,17,2017,1,RES1,3001 -0118_175_67,-74.600086,39.3194575,137 BONNIE LEE DR,NORTHFIELD CITY,17,1951,1,RES1,3001 -0118_175_68,-74.58963178,39.31946233,135 BONNIE LEE DR,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_175_70,-74.5088655,39.4932145,1 HEATHER DR,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_175_71,-74.4592468,39.49102236,3 HEATHER DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_175_72,-74.51909295,39.53817317,2 HEATHER DR,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_175_74,-74.5733403,39.35232643,198 ENGLISH LANE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_175_75,-74.50433017,39.50263308,4 HEATHER DR,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_175_76,-74.5843055,39.3268945,200 ENGLISH LANE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_175_77,-74.51121019,39.48895525,202 ENGLISH LANE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_175_78,-74.45912715,39.47276046,204 ENGLISH LANE,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_176_1,-74.62019883,39.43302157,612 SHORE RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_10,-74.70846002,39.44106584,600 SHORE RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_11,-74.741196,39.4302875,602 SHORE RD,NORTHFIELD CITY,17,1948,1,GOV1,3004 -0118_176_12,-74.64827917,39.46731949,604 SHORE RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_13,-74.57526333,39.50167999,606 SHORE RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_14,-74.5554765,39.4656495,608 SHORE RD,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_176_15,-74.73503946,39.46567633,610 SHORE RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_2,-74.62406128,39.38352258,23 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_3,-74.64992,39.403084,21 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_4,-74.7906535,39.459482,17 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_5,-74.54990864,39.46390577,15 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_6,-74.54539011,39.50207816,13 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,AGR1,3001 -0118_176_7,-74.620896,39.437251,9 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_8,-74.81729484,39.40519021,5 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_176_9,-74.6851575,39.508827,510 SHORE RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_1,-74.82559813,39.4917107,22 COUNTRY CLUB,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_12,-74.71219066,39.47307551,126 BONNIE LEE DR,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_177_13,-74.578355,39.546427,120 BONNIE LEE DR,NORTHFIELD CITY,17,1956,1,AGR1,3001 -0118_177_14,-74.64553469,39.37030061,116 BONNIE LEE DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_177_15,-74.63414519,39.43200736,114 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_16,-74.75757187,39.44790279,112 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES3A,3001 -0118_177_17,-74.66550836,39.41864091,110 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_18,-74.64912444,39.52942358,12 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_19,-74.62988409,39.41379364,14 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_2,-74.59397,39.377245,144 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_20,-74.61245711,39.42886682,102 CIRCLE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_21,-74.60735554,39.42094834,104 CIRCLE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_22,-74.87926575,39.4726083,105 CIRCLE DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_177_24,-74.57367158,39.40972773,103 CIRCLE DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_177_25,-74.58959872,39.41378166,101 CIRCLE DR,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_177_26,-74.6473787,39.51866182,18 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_27,-74.58504947,39.5197622,20 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_3,-74.535052,39.398926,142 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_4,-74.56839476,39.37157611,140 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_5,-74.5477855,39.369496,138 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,GOV1,3004 -0118_177_6,-74.5477565,39.3752305,136 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_177_7,-74.54069431,39.37533976,134 BONNIE LEE DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_177_9,-74.56151756,39.37302134,130 BONNIE LEE DR,NORTHFIELD CITY,17,1961,1,GOV1,3004 -0118_178_1,-74.724798,39.5878405,506 SHORE RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_178_10,-74.649087,39.528472,119 BONNIE LEE DR,NORTHFIELD CITY,17,1982,1,RES1,3001 -0118_178_11,-74.635583,39.412124,503 BLUE BELL DR,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_178_13,-74.5523695,39.465447,16 WILSON DR,NORTHFIELD CITY,17,1984,1,AGR1,3001 -0118_178_14,-74.60301115,39.49983367,14 WILSON DR,NORTHFIELD CITY,17,1965,1,AGR1,3001 -0118_178_15,-74.69856714,39.43908982,12 WILSON DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_178_16,-74.81908618,39.38760494,10 WILSON DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_178_17,-74.59714407,39.36407732,8 WILSON DR,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_178_18,-74.777738,39.5970525,9 WILSON DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_178_19,-74.63307664,39.36787186,11 WILSON DR,NORTHFIELD CITY,17,1968,1,RES3B,3001 -0118_178_2,-74.654377,39.550911,3 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_178_20,-74.73349531,39.44067003,13 WILSON DR,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_178_21,-74.735189,39.4360055,15 WILSON DR,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_178_22,-74.63263784,39.45745626,17 WILSON DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_178_23,-74.5624095,39.476052,19 WILSON DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_178_24,-74.69075568,39.42084156,21 WILSON DR,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_178_25,-74.64969416,39.4545566,20 CATHERINE PL,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_178_26,-74.7982425,39.412704,16 CATHERINE PL,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_178_27,-74.6283631,39.35819024,12 CATHERINE PL,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_178_28,-74.8789895,39.560658,10 CATHERINE PL,NORTHFIELD CITY,17,1975,1,REL1,3004 -0118_178_29,-74.81012321,39.63307821,6 CATHERINE PL,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_178_3,-74.6563225,39.5332,7 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_178_30.01,-74.94360116,39.53060483,408 SHORE RD,NORTHFIELD CITY,17,1880,1,RES1,3001 -0118_178_31,-74.68128503,39.55340333,414 SHORE RD,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_178_32,-74.79715285,39.63909496,502 SHORE RD,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_178_33,-74.79021161,39.61131237,504 SHORE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_178_4,-74.754493,39.4326505,11 COUNTRY CLUB DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_178_6,-74.85204016,39.4019829,111 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_178_7,-74.67079984,39.46172982,113 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_178_8,-74.62879552,39.4381523,115 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_178_9,-74.60955163,39.43649018,117 BONNIE LEE DR,NORTHFIELD CITY,17,1948,1,GOV1,3004 -0118_179.01_1.02,-74.606536,39.3187735,10 ST ANDREWS DR,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_179.01_1.03,-74.54123283,39.38143598,9 ST ANDREWS DR,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_179.01_1.04,-74.59658314,39.38241575,8 ST ANDREWS DR,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_179.01_1.05,-74.53478406,39.53185915,7 ST ANDREWS DR,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_179.01_1.06,-74.57853891,39.5284166,6 ST ANDREWS DR,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_179.01_1.07,-74.533324,39.4049715,5 ST ANDREWS DR,NORTHFIELD CITY,18,1993,1,RES1,3001 -0118_179.01_1.08,-74.63287519,39.35203371,4 ST ANDREWS DR,NORTHFIELD CITY,18,1987,1,RES1,3001 -0118_179.01_1.09,-74.55088843,39.36229372,3 ST ANDREWS DR,NORTHFIELD CITY,18,1986,1,RES1,3001 -0118_179.01_10,-74.63046505,39.42046057,18 WILSON DR,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_179.01_11,-74.6561255,39.3684415,20 WILSON DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_179.01_12,-74.6259015,39.528353,22 WILSON DR,NORTHFIELD CITY,17,1964,1,RES3B,3001 -0118_179.01_13,-74.86145456,39.48478307,24 WILSON DR,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_179.01_14,-74.5547996,39.42167591,26 WILSON DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_179.01_2,-74.46551423,39.53409697,1 ST ANDREWS DR,NORTHFIELD CITY,18,1985,1,GOV1,3004 -0118_179.01_20,-74.6232285,39.512957,27 WILSON DR,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_179.01_21,-74.58831496,39.4262353,25 WILSON DR,NORTHFIELD CITY,17,1965,1,GOV1,3004 -0118_179.01_22,-74.635647,39.41019,23 WILSON DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_179.01_23,-74.6382905,39.530458,100 CATHERINE PL,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_179.01_24,-74.63385669,39.41852406,102 CATHERINE PL,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_179.01_25,-74.62003556,39.37039931,104 CATHERINE PL,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_179.01_4,-74.55569775,39.35983719,201 ENGLISH LANE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_179.01_5,-74.5472215,39.37564908,129 BONNIE LEE DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_179.01_6,-74.5653385,39.414428,127 BONNIE LEE DR,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_179.01_7,-74.807189,39.467213,504 BLUE BELL DR,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_179.01_8,-74.63393096,39.51893634,502 BLUE BELL DR,NORTHFIELD CITY,17,1983,1,RES1,3001 -0118_179.01_9,-74.62485044,39.38308234,500 BLUE BELL DR,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_179.02_34,-74.67050685,39.38353399,109 CATHERINE PL,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_179.02_35,-74.7289195,39.454335,107 CATHERINE PL,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_179.02_36,-74.53823028,39.46738441,105 CATHERINE PL,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_179.02_37,-74.6050615,39.4898035,103 CATHERINE PL,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_179.02_38,-74.6774175,39.4474215,101 CATHERINE PL,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_179.02_39,-74.64200881,39.5359037,15 CATHERINE PL,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_179.02_40,-74.675371,39.567574,13 CATHERINE PL,NORTHFIELD CITY,17,1978,1,RES1,3001 -0118_179.02_41,-74.88011262,39.59474064,11 CATHERINE PL,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_179.02_42,-74.90920325,39.4930801,9 CATHERINE PL,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_179.02_43,-74.77147229,39.66977877,7 CATHERINE PL,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_179.02_44.01,-74.79068869,39.6442162,3 CATHERINE PL,NORTHFIELD CITY,17,1995,1,RES1,3001 -0118_179.02_45,-74.5255965,39.316564,316 SHORE RD,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_179.02_46,-74.50563817,39.33170098,312 SHORE RD,NORTHFIELD CITY,17,1904,1,RES1,3001 -0118_179.02_47_C2101,-74.7163875,39.5707255,2101 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,GOV1,3004 -0118_179.02_47_C2102,-74.69006556,39.55637765,2102 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2103,-74.63638421,39.36292246,2103 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,GOV1,3004 -0118_179.02_47_C2104,-74.64142626,39.55006985,2104 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES3A,3001 -0118_179.02_47_C2105,-74.70100324,39.57039389,2105 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2106,-74.7765016,39.61918732,2106 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2107,-74.85919679,39.59400476,2107 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2108,-74.7641355,39.637252,2108 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2109,-74.71750593,39.57647038,2109 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2110,-74.83438645,39.53213379,2110 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2201,-74.6266305,39.6097135,2201 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2202,-74.6649256,39.53958431,2202 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,COM3,3004 -0118_179.02_47_C2203,-74.62536035,39.35551429,2203 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2204,-74.6483325,39.35263077,2204 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2205,-74.67766218,39.55970723,2205 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,GOV1,3004 -0118_179.02_47_C2206,-74.72759006,39.58790586,2206 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2207,-74.78113727,39.63516237,2207 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2208,-74.775619,39.60433,2208 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2209,-74.85405008,39.54120896,2209 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2210,-74.6359101,39.62473104,2210 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2301,-74.61727623,39.60016081,2301 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2302,-74.642625,39.3674195,2302 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2303,-74.63558293,39.30816866,2303 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2304,-74.6355785,39.364885,2304 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2305,-74.64516681,39.55076201,2305 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2306,-74.85701053,39.56400848,2306 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2307,-74.7532415,39.6345915,2307 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2308,-74.72726418,39.58830791,2308 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2309,-74.71898033,39.56603933,2309 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_47_C2310,-74.630133,39.607659,2310 DOLPHIN AVE,NORTHFIELD CITY,35,1989,1,RES1,3001 -0118_179.02_50,-74.7375865,39.453552,100 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_18_2,-74.532654,39.3791015,500 VERNON AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_18_3,-74.55436537,39.38099178,2703 LEEDS AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_18_6,-74.59197385,39.3778737,2701 LEEDS AVE,NORTHFIELD CITY,17,1982,1,RES1,3001 -0118_19_1,-74.6092533,39.39052343,503 W OAKCREST AVE,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_19_2,-74.6081341,39.32778033,2605 LEEDS AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_19_3,-74.55135282,39.40248548,2601 LEEDS AVE,NORTHFIELD CITY,17,1972,2,GOV1,3004 -0118_21_1,-74.478339,39.3388795,430 W VERNON AVE,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_21_10,-74.56235519,39.37163354,426 W OAKCREST AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_21_14,-74.5403337,39.3755902,414 W OAKCREST AVE,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_21_17,-74.57440874,39.35333953,412 W OAKCREST AVE,NORTHFIELD CITY,16,1925,1,GOV1,3004 -0118_21_19,-74.5505535,39.365694,410 W OAKCREST AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_21_3,-74.48002685,39.33877097,2702 LEEDS AVE,NORTHFIELD CITY,17,1984,1,GOV1,3004 -0118_21_7,-74.57247226,39.37332937,430 W OAKCREST AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_22_1,-74.473651,39.485423,431 W OAKCREST AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_22_11,-74.47332866,39.48501048,415 W OAKCREST AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_22_15,-74.6053812,39.37637955,413 W OAKCREST AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_22_19,-74.53776256,39.38538841,403 W OAKCREST AVE,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_22_26,-74.61285637,39.31818551,424 W REVERE AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_22_31,-74.45479345,39.49821374,418 W REVERE AVE,NORTHFIELD CITY,16,1988,1,RES1,3001 -0118_22_33,-74.47963827,39.47802639,2501-3-5-7 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_22_5,-74.56814684,39.34899411,2602 LEEDS AVE,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_22_8,-74.5628105,39.4109555,428 W REVERE AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_23_1,-74.646154,39.37260475,427 W REVERE AVE,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_23_11,-74.5614545,39.4106945,2405 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_23_16,-74.64440485,39.41157359,2403 NEW RD #701,NORTHFIELD CITY,,0,1,RES1,3001 -0118_23_17,-74.58143677,39.34436595,2401 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_23_2,-74.6270095,39.376005,425 W REVERE AVE,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_23_3,-74.5844125,39.4205415,423 W REVERE AVE,NORTHFIELD CITY,17,1959,1,RES1,3004 -0118_23_8,-74.57431345,39.42652772,421 W REVERE AVE,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_24_1,-74.70541188,39.42141739,2508 LEEDS AVE,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_24_2,-74.45985949,39.35364883,2506 LEEDS AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_24_3,-74.50098624,39.33680248,512 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_24_5.01,-74.464587,39.356201,508 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_25_1,-74.52601138,39.39701334,540 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_25_10,-74.647039,39.53354,522 MARITA ANN DR,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_25_11,-74.64436234,39.53422452,520 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3004 -0118_25_12,-74.4628935,39.354344,518 MARITA ANN DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_25_13,-74.5970139,39.34297624,516 MARITA ANN DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_25_14,-74.69217861,39.4209512,514 MARITA ANN DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_25_2,-74.524127,39.3974365,538 MARITA ANN DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_25_3,-74.515569,39.3280805,536 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_25_4,-74.8053525,39.6519825,534 MARITA ANN DR,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_25_5,-74.5828515,39.4039805,532 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_25_6,-74.57634847,39.40672269,530 MARITA ANN DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_25_7,-74.57649765,39.40956531,528 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_25_8,-74.57352457,39.42838094,526 MARITA ANN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_25_9,-74.76512826,39.35097255,524 MARITA ANN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_1,-74.7607405,39.6315305,541 MARITA ANN DR,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_26_10,-74.53266028,39.47175893,523 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_11,-74.53890813,39.46288884,521 MARITA ANN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_12,-74.57564692,39.35877268,519 MARITA ANN DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_26_13,-74.60088051,39.34945134,517 MARITA ANN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_14,-74.49103937,39.33650183,515 MARITA ANN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_15,-74.57590373,39.36658131,514 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_16,-74.5496845,39.4673645,516 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_17,-74.5639335,39.478534,518 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_18,-74.5685705,39.4785105,520 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_19,-74.623074,39.439285,522 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_2,-74.82997811,39.40740866,539 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_20,-74.80062715,39.66794355,524 RIDGEWOOD DR,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_26_21,-74.43517859,39.36719431,526 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_22,-74.491312,39.332893,528 RIDGEWOOD DRIVE,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_26_23,-74.701431,39.4894875,530 RIDGEWOOD DR,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_26_24,-74.7454215,39.422312,532 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_25,-74.82381,39.3998605,534 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_26_26,-74.862225,39.563742,536 RIDGEWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_26_27,-74.775729,39.608549,538 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_28,-74.86506028,39.59314983,540 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_29,-74.49734883,39.49742958,542 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_3,-74.75468927,39.43021703,537 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_30,-74.59298434,39.31293646,2500 OAK AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_26_4,-74.7125835,39.4055855,535 MARITA ANN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_5,-74.49694916,39.33136401,533 MARITA ANN DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_26_6,-74.4858965,39.334295,531 MARITA ANN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_26_7,-74.42082282,39.36761084,529 MARITA ANN DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_26_8,-74.60341733,39.49952449,527 MARITA ANN DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_26_9,-74.56385816,39.47185684,525 MARITA ANN DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_1,-74.55082836,39.37934018,543 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_10,-74.81519747,39.38880024,525 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_27_11,-74.71394867,39.43014129,523 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_27_12,-74.66634413,39.45545694,521 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_13,-74.50910358,39.32323867,519 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,GOV1,3004 -0118_27_14,-74.425415,39.364348,517 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_27_15,-74.68204332,39.44458254,515 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_27_16,-74.6063695,39.5012665,513 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_27_17,-74.55520783,39.4755907,511 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_27_18,-74.53144988,39.47188071,509 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_27_19,-74.5372545,39.462669,507 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_27_2,-74.91713773,39.52659813,541 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_20,-74.59669458,39.35598781,505 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_27_21,-74.57301781,39.44772265,2327 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_27_22.03,-74.50293198,39.32522933,2494 HERBERT DR,NORTHFIELD CITY,17,2000,1,RES1,3001 -0118_27_22.04,-74.55392,39.476233,2495 HERBERT DR,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_27_22.05,-74.6934415,39.490815,2496 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_22.06,-74.64482361,39.44633555,2497 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES3A,3001 -0118_27_22.07,-74.7578185,39.4310465,2498 HERBERT DR,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_27_22.08,-74.42729879,39.35618258,2499 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_23,-74.71601682,39.3836489,2311 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_27_24,-74.7336605,39.434743,2421 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_25,-74.83084084,39.39005714,2423 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3004 -0118_27_26,-74.85511284,39.55958745,2425 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_27,-74.74911363,39.60328981,2427 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_28,-74.7775295,39.62325,2429 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_27_29,-74.84846393,39.39351261,2431 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_3,-74.73513589,39.46103932,539 RIDGEWOOD DR,NORTHFIELD CITY,17,1947,1,GOV1,3004 -0118_27_30,-74.50285545,39.32543919,2501 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_31,-74.6743185,39.4963535,2503 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_32,-74.758401,39.4324855,2505 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_33,-74.83092225,39.39523404,2507 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_34,-74.75384817,39.59614687,2509 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_35,-74.791197,39.6327345,2511 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_36,-74.498,39.495905,2513 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_37,-74.59377116,39.31251004,2515 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_38,-74.75048532,39.45107394,2517 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_39,-74.75341507,39.44746719,2519 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_4,-74.734658,39.4493025,537 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_40,-74.931618,39.51317826,2521 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_41,-74.5611995,39.3718065,2523 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_42,-74.8606735,39.479106,2525 HERBERT DR,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_27_43,-74.5836715,39.364904,2527 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_5,-74.5954925,39.3169865,535 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_6,-74.53011606,39.49835738,533 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_27_7,-74.81221686,39.60409655,531 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_27_8,-74.77858021,39.612983,529 RIDGEWOOD DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_27_9,-74.87831173,39.54119458,527 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_28_1,-74.552895,39.377653,2512 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_10,-74.72243651,39.45938044,2437 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_28_11,-74.8130035,39.43747142,2439 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_12,-74.94962747,39.50856471,2441 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_13,-74.8069025,39.466149,2443 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_14,-74.53440741,39.52795707,2445 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_2,-74.9290795,39.5086355,2510 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_3,-74.71981754,39.45382363,2508 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_4,-74.73060885,39.4531413,2506 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_5,-74.5190955,39.530672,2504 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_6,-74.51345303,39.48380184,2502 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_7,-74.78510469,39.60835969,2500 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_28_8,-74.4999415,39.5361545,2433 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_28_9,-74.723173,39.4391535,2435 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_29_1,-74.61673366,39.31210895,2410 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_29_10,-74.92516278,39.50945343,2408 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_29_2,-74.51248463,39.53400003,2412 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_29_3,-74.51779997,39.47910362,2414 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_29_4,-74.79273373,39.63505065,2416 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_29_5,-74.79340815,39.60186255,2307 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_29_6,-74.50782982,39.52829357,2400 SHEPHERD CIRCLE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_29_7,-74.60161565,39.3075682,2402 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_29_8,-74.748207,39.4516045,2404 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_29_9,-74.72702,39.456557,2406 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_1,-74.87559365,39.59324805,2548 CEDARBRIDGE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_30_10,-74.59095709,39.43043666,2520 CEDARBRIDGE RD,NORTHFIELD CITY,17,1950,1,RES1,3004 -0118_30_11.01,-74.55589864,39.37249935,2434 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_30_11.02,-74.60464241,39.4164097,2512 CEDARBRIDGE RD,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_30_12.01,-74.60349123,39.40865116,2510 CEDARBRIDGE RD,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_30_12.02,-74.7327832,39.45955924,2430 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_30_13,-74.72844198,39.45278411,2417 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_14,-74.91350638,39.51173019,2415 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_15,-74.8216915,39.4651145,2413 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_16,-74.62295752,39.50506866,2504 CEDARBRIDGE RD,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_30_17,-74.5388355,39.561982,2411 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_18,-74.54002733,39.50548632,2409 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_19,-74.86982482,39.44767199,2407 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_2,-74.6779553,39.54857247,2520 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_20,-74.53176213,39.37699147,2405 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_21,-74.94554187,39.5209674,2403 SHEPHERD CIRCLE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_22,-74.71447838,39.47099224,2303 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_30_23,-74.6241745,39.505643,2408 CEDARBRIDGE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_30_3,-74.63977459,39.53247335,2518 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_4,-74.6055185,39.4082725,2516 HERBERT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_30_5,-74.53709966,39.52619567,2514 HERBERT DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_30_6.01,-74.696683,39.638636,2544 CEDARBRIDGE RD,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_30_6.02,-74.68948986,39.57306505,2542 CEDARBRIDGE RD,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_30_6.03,-74.5931185,39.434841,2501 SHEPHERD CIRCLE WEST,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_30_6.04,-74.6532085,39.595125,2540 CEDARBRIDGE RD,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_30_7,-74.679097,39.5587045,2534 CEDARBRIDGE RD,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_30_8.01,-74.652358,39.531603,2530 CEDARBRIDGE RD,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_30_8.02,-74.67478192,39.54603417,2532 CEDARBRIDGE RD,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_30_9,-74.6499465,39.5288235,2524 CEDARBRIDGE RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_31_1,-74.429188,39.3658245,6 LESLEY LANE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_31_2,-74.7836455,39.673958,8 LESLEY LANE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_31_3,-74.79418284,39.64124403,10 LESLEY LANE,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_31_4,-74.52055159,39.31536315,2 LESLEY LANE,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_31_5,-74.52044425,39.31558416,4 LESLEY LANE,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_32_1,-74.80971865,39.64162605,2518 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_32_2,-74.955199,39.5277925,2514 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_32_3,-74.62492434,39.43269805,2510 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_32_4,-74.63213726,39.38964361,2501 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_32_5,-74.63631887,39.43439049,2503 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_32_6,-74.78455735,39.65055102,2505 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_32_7,-74.81022,39.643222,2522 HELEN DR WEST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_33_1,-74.63534417,39.41160853,2547 CEDARBRIDGE RD,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_33_10,-74.48366933,39.35333358,2218 ZION RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_33_11,-74.49277,39.3377665,2216 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_33_12,-74.49301954,39.33588118,2214 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_33_13,-74.492146,39.334459,2110 ZION RD,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_33_14,-74.50370617,39.33793694,2108 ZION RD,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_33_15,-74.48957406,39.35055458,2104 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_33_16,-74.469706,39.345934,1 LESLEY LANE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_33_18,-74.477974,39.3376855,5 LESLEY LANE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_33_19,-74.4830645,39.341616,7 LESLEY LANE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_33_20,-74.59670888,39.36608714,9 LESLEY LANE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_33_21,-74.574435,39.3523085,11 LESLEY LANE,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_33_22,-74.81774592,39.6533207,2545 CEDARBRIDGE RD,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_33_24,-74.9145815,39.5327355,2537 CEDARBRIDGE RD,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_33_25,-74.63748915,39.41227179,2531 CEDARBRIDGE RD,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_33_26,-74.56719235,39.36605355,19 LESLEY LANE,NORTHFIELD CITY,17,1971,1,RES1,3001 -0118_33_27,-74.44288067,39.35455248,17 LESLEY LANE,NORTHFIELD CITY,17,1971,1,RES1,3001 -0118_33_28,-74.88694582,39.57908991,15 LESLEY LANE,NORTHFIELD CITY,17,1971,1,RES1,3001 -0118_33_29,-74.624487,39.4209795,13 LESLEY LANE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_33_3,-74.88664017,39.5821741,2308 OAK AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_33_30.01,-74.925874,39.5113695,2515 CEDARBRIDGE RD,NORTHFIELD CITY,17,1934,1,RES1,3001 -0118_33_31,-74.7044735,39.6382695,2511 CEDARBRIDGE RD,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_32,-74.82181253,39.53611953,2507 CEDARBRIDGE RD,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_33,-74.88884445,39.48366782,2509 HELEN DR WEST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_33_34,-74.91819881,39.5233925,2511 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_35,-74.63142296,39.41863819,2513 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_36,-74.9509045,39.528818,2515 HELEN DR WEST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_33_37,-74.81389351,39.64509294,2517 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_38,-74.50512283,39.33359254,2519 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_39,-74.478539,39.3375575,2521 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_4,-74.4246495,39.3661,2306 OAK AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_33_40,-74.472322,39.341797,2523 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_41,-74.5700865,39.363892,2525 HELEN DR WEST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_42,-74.50069148,39.32635683,2527 HELEN DR WEST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_33_43,-74.52043754,39.31723317,2510 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_44,-74.788963,39.6677085,2508 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_33_45,-74.95071775,39.51469245,2506 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_46,-74.66336054,39.39576267,2504 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_47,-74.962432,39.499051,2502 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_48,-74.80345715,39.54389702,2500 HELEN DR EAST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_49,-74.7963695,39.6100245,2501 CEDARBRIDGE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_33_5,-74.55529168,39.36189503,2304 OAK AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_50.01,-74.79760611,39.66030749,2423 CEDARBRIDGE RD,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_33_51,-74.69022685,39.6326478,2419 CEDARBRIDGE RD,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_33_52,-74.62581508,39.62071368,2417 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_33_53,-74.65660691,39.59068694,2415 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_33_54,-74.7813266,39.54295589,2201 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_33_55,-74.755862,39.6613,2111 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_33_56,-74.583258,39.3647555,2101 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_33_57,-74.52461656,39.31366334,2097 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_33_58,-74.6436315,39.432008,1907 & 1909 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_33_59,-74.57431632,39.36696735,1935 NEW RD,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_33_6,-74.482943,39.3494055,2302 OAK AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_33_60,-74.46832434,39.3451976,1921 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_33_61,-74.56591344,39.4648423,1915 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_33_63,-74.40509433,39.38245153,1964 ZION RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_33_65.01,-74.6055485,39.428373,1 JENNY LYN DR,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_33_65.02,-74.495451,39.3353565,3 JENNY LYN DR,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_33_65.03,-74.548761,39.462582,5 JENNY LYN DR,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_33_65.04,-74.4790262,39.34063883,7 JENNY LYN DR,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_33_66.01,-74.3787155,39.395526,2022 ZION RD,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_33_66.02,-74.39907741,39.38677718,2024 ZION RD,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_33_66.03,-74.556762,39.471088,2 JENNY LYN DR,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_33_66.04,-74.48264287,39.35014271,4 JENNY LYN DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_33_67.01,-74.35518172,39.41457269,2100 ZION RD,NORTHFIELD CITY,17,1828,1,RES1,3001 -0118_33_67.02,-74.393775,39.39046,2060 ZION RD,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_33_67.03,-74.48229017,39.35030692,21 LESLEY LANE,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_33_67.04,-74.5543441,39.47447277,23 LESLEY LANE,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_33_7,-74.567208,39.499882,2300 OAK AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_33_8,-74.5849155,39.4861335,2222 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_33_9,-74.46320766,39.35680946,2220 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_34_1,-74.62127828,39.37876654,2221 ZION RD,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_34_10,-74.529347,39.402942,1941 ZION RD,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_34_11,-74.50066584,39.41629836,1933 ZION RD,NORTHFIELD CITY,17,1923,1,RES1,3001 -0118_34_13,-74.610498,39.487375,700 MILL RD,NORTHFIELD CITY,17,1906,1,RES1,3001 -0118_34_14,-74.62477117,39.48925051,704 MILL RD,NORTHFIELD CITY,16,1927,1,RES1,3001 -0118_34_15,-74.46449477,39.46792591,720 MILL RD,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_34_16,-74.52633558,39.46568971,730 MILL RD,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_34_17,-74.39360742,39.3949777,800 MILL RD,NORTHFIELD CITY,16,1924,1,RES1,3002 -0118_34_18.01,-74.47108144,39.49453657,806 W MILL RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_34_18.02,-74.505456,39.3329175,802 W MILL RD,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_34_2,-74.400463,39.3845855,2217 ZION RD,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_34_20.01,-74.77082889,39.42662311,1 ATRIUM CT,NORTHFIELD CITY,,0,1,RES1,3001 -0118_34_20.09,-74.4688975,39.490669,10 ATRIUM CT,NORTHFIELD CITY,,0,1,RES1,3001 -0118_34_21.01,-74.551344,39.3701285,2 MEREDITH CT,NORTHFIELD CITY,17,1992,1,GOV1,3004 -0118_34_21.03,-74.569721,39.3617315,4 MEREDITH CT,NORTHFIELD CITY,17,1997,1,RES1,3001 -0118_34_21.04,-74.616291,39.321973,6 MEREDITH CT,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_34_21.05,-74.57050859,39.33943582,8 MEREDITH CT,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_34_21.06,-74.56157691,39.36826995,10 MEREDITH CT,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_34_21.07,-74.53930355,39.38379416,9 MEREDITH CT,NORTHFIELD CITY,17,1999,1,RES1,3001 -0118_34_21.08,-74.5439996,39.39037986,1906 OAK AVE,NORTHFIELD CITY,17,1995,1,RES1,3001 -0118_34_21.09,-74.56903898,39.42407132,1904 OAK AVE,NORTHFIELD CITY,17,1994,1,RES1,3001 -0118_34_21.14,-74.59073704,39.41565134,1100 W MILL RD,NORTHFIELD CITY,17,1995,1,RES1,3001 -0118_34_21.15,-74.5972349,39.38015631,1 MEREDITH CT,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_34_21.16,-74.5508825,39.379773,3 MEREDITH CT,NORTHFIELD CITY,17,1997,1,RES1,3001 -0118_34_21.17,-74.59642172,39.37057803,5 MEREDITH CT,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_34_21.18,-74.57505777,39.41228455,7 MEREDITH CT,NORTHFIELD CITY,17,2000,1,RES1,3001 -0118_34_22.02,-74.56985633,39.3637915,1908 OAK AVE,NORTHFIELD CITY,17,1991,1,GOV1,3004 -0118_34_22.03,-74.59717865,39.31049697,1910 OAK AVE,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_34_23,-74.47012802,39.49855057,2020 OAK AVE,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_34_24,-74.4441225,39.492532,2100 OAK AVE,NORTHFIELD CITY,,0,1,RES2,3005 -0118_34_26,-74.51664748,39.39642268,2122 OAK AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_34_27,-74.3749485,39.4181075,2124 OAK AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_34_3.01,-74.3683855,39.41003,2213 ZION RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_34_3.02,-74.36691876,39.41064388,2211 ZION RD,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_34_4,-74.529017,39.4027915,2151 ZION RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_34_5.01,-74.5078005,39.425909,2103 ZION RD,NORTHFIELD CITY,17,1930,1,COM1,3004 -0118_34_5.02,-74.497327,39.4327955,2027 ZION RD,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_34_6,-74.51241483,39.39844691,2025 ZION RD,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_34_7.01,-74.524781,39.3954185,2021 ZION RD,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_34_7.02,-74.52592956,39.40013382,2023 ZION RD,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_34_8,-74.4855445,39.4345385,2009 ZION RD,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_34_9,-74.51381093,39.40578167,2007 ZION RD,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_35_1,-74.62759831,39.35347047,W MILL RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_36_1,-74.54490908,39.37176614,1800 BIRCH GROVE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_10,-74.49428294,39.45989574,700 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_11,-74.4987235,39.3361175,710 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_12,-74.398643,39.3947715,720 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,GOV1,3004 -0118_36_13,-74.465073,39.495824,730 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_14,-74.4883025,39.520985,740 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_15,-74.5928365,39.330503,750 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_16,-74.58131091,39.34074863,760 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_17,-74.5477725,39.369771,770 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_18,-74.54781931,39.37797882,750 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_2,-74.579757,39.3379495,1810 BIRCH GROVE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_3,-74.60630429,39.32320431,1820 BIRCH GROVE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_4,-74.5088775,39.5303315,1830 BIRCH GROVE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_5,-74.45370524,39.48722333,741 W MILL RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_6,-74.3821929,39.39947534,731 W MILL RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_7,-74.527777,39.46836683,721 W MILL RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_8,-74.51266534,39.43796729,711 W MILL RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_36_9,-74.755437,39.433535,701 W MILL RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_37_1,-74.604137,39.5007555,605 W MILL RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_37_10,-74.67193545,39.45500618,1701 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_37_11,-74.75621362,39.43443511,510 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_37_12,-74.517798,39.443425,520 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_37_13,-74.71157099,39.4190283,600 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_37_14,-74.67094565,39.45650505,610 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,GOV1,3004 -0118_37_15,-74.4358705,39.492234,620 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_37_16,-74.58831203,39.49276416,630 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_37_17,-74.703817,39.4682255,640 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_37_18,-74.70873344,39.42836925,650 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_37_2,-74.49207493,39.42810222,603 W MILL RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_37_3,-74.509399,39.405277,601 W MILL RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_37_5,-74.49231856,39.41907016,1809 ZION RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_37_6,-74.49787864,39.41110832,1807 ZION RD,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_37_7,-74.51791131,39.40590939,1805 ZION RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_38_1,-74.35774845,39.41357516,503 MILL RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_38_2,-74.366407,39.408201,1815 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_38_3,-74.358671,39.412304,1807 NEW RD,NORTHFIELD CITY,,0,1,RES3A,3001 -0118_38_4,-74.37366054,39.41831874,1805 NEW RD,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_39_1,-74.654441,39.355712,720 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_10,-74.5125526,39.46494336,621 HOLLYWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_39_11,-74.52121525,39.46202815,601 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_12,-74.5107,39.3405375,600 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_13,-74.4997665,39.3327785,620 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_14,-74.47403648,39.49414354,640 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_39_15,-74.49920589,39.49809533,660 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_39_16,-74.59986362,39.31596282,680 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_39_17,-74.50798,39.489562,1701 PHILMAR CIRCLE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_18,-74.60447734,39.31487701,1703 PHILMAR CIRCLE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_19,-74.561702,39.36264,700 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_2,-74.573417,39.3512685,741 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_20,-74.57902668,39.33616958,710 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_3,-74.59673361,39.309615,731 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_4,-74.49879783,39.49299826,721 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_5,-74.4661645,39.4926615,711 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_6,-74.4541525,39.4757195,701 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,COM1,3004 -0118_39_7,-74.378006,39.39570083,661 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,COM1,3004 -0118_39_8,-74.493955,39.342842,651 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_39_9,-74.53035496,39.46156917,641 HOLLYWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_1,-74.56946295,39.42738663,751 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_10,-74.5202045,39.526714,641 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_40_11,-74.51421582,39.48606252,621 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_12,-74.4483865,39.4912595,601 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_13,-74.5004265,39.333676,531 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_40_14,-74.51149255,39.33772907,521 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_15,-74.488965,39.467826,511 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_40_16,-74.514909,39.4421185,1637 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_40_2,-74.56572202,39.41783168,741 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_21,-74.5974265,39.3140575,1633 NEW RD,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_40_22,-74.4555425,39.48952934,1631 NEW RD,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_40_27,-74.60172365,39.40899231,1511 NEW RD,NORTHFIELD CITY,,1984,1,RES1,3001 -0118_40_29,-74.49770353,39.32991839,1421 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_40_3,-74.59732579,39.36904684,731 PASADENA DR,NORTHFIELD CITY,17,1966,1,GOV1,3004 -0118_40_30,-74.733648,39.435902,1417 NEW RD,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_40_32,-74.71185667,39.43828304,1411 NEW RD,NORTHFIELD CITY,,1926,1,RES1,3001 -0118_40_33,-74.763024,39.427633,1409 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_40_34,-74.7229475,39.4590245,510 BANNING AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_35,-74.65490716,39.53579802,516 BANNING AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_40_36,-74.659894,39.3473015,520 BANNING AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_40_37,-74.68994151,39.51266633,524 BANNING AVE,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_40_38,-74.8394205,39.570875,528 BANNING AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_40_39,-74.85926496,39.58604171,600 BANNING AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_40_4,-74.586046,39.375125,721 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_41,-74.8896225,39.467392,604 BANNING AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_42,-74.703808,39.578558,608 BANNING AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_40_43,-74.93469619,39.54789717,612 BANNING AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_40_45,-74.50725584,39.32456649,616 BANNING AVE,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_40_46,-74.517494,39.323041,618 BANNING AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_40_47,-74.44862313,39.35459653,620 BANNING AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_40_5,-74.55339467,39.38157472,711 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_6,-74.5386295,39.383868,701 PASADENA DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_40_7,-74.57254629,39.36511738,691 PASADENA DR,NORTHFIELD CITY,17,1963,1,COM5,3004 -0118_40_8,-74.616489,39.320545,681 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_40_9,-74.6169985,39.3135995,661 PASADENA DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_41_1,-74.8453785,39.6242285,1200 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_41_10,-74.83678858,39.48585129,1442 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_41_11,-74.55887483,39.41305951,415 NORTHFIELD AVE,NORTHFIELD CITY,,1950,1,RES1,3001 -0118_41_16,-74.5391753,39.37332096,1423 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_41_2,-74.8717015,39.602924,1201 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_41_21.01,-74.75535965,39.30306141,1401 TILTON RD,NORTHFIELD CITY,,0,1,COM1,3004 -0118_41_21.02,-74.55857451,39.3975101,1337 TILTON RD,NORTHFIELD CITY,,1975,1,RES1,3001 -0118_41_24,-74.595237,39.4058625,1335 TILTON RD,NORTHFIELD CITY,,1974,1,RES1,3001 -0118_41_3,-74.62711472,39.3603094,1203 TILTON RD,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_41_6,-74.57949881,39.442935,1418 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_42_1.03,-74.37364239,39.40919582,621 BANNING AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_42_1.05,-74.47081815,39.34489452,617 BANNING AVE,NORTHFIELD CITY,17,1981,1,RES1,3001 -0118_42_1.07,-74.50452557,39.33347116,613 BANNING AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_42_1.10,-74.525221,39.3834915,620 HERZEL AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_42_1.11,-74.37597614,39.41667431,618 HERZEL AVE,NORTHFIELD CITY,17,1980,1,COM7,3004 -0118_42_1.12,-74.4057195,39.378038,616 HERZEL AVE,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_42_1.13,-74.49911394,39.33043683,614 HERZEL AVE,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_42_1.14,-74.4598365,39.3487405,612 HERZEL AVE,NORTHFIELD CITY,17,1984,1,RES1,3001 -0118_42_1.15,-74.50769181,39.33059438,610 HERZEL AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_42_1.16,-74.79831816,39.65143404,608 HERZEL AVE,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_42_1.17,-74.97912353,39.51320727,606 HERZEL AVE,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_42_1.18,-74.9515025,39.520551,604 HERZEL AVE,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_42_1.19,-74.940421,39.511019,602 HERZEL AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_42_1.20,-74.81254409,39.64221136,605 HERZEL AVE,NORTHFIELD CITY,17,1990,1,RES3B,3004 -0118_42_1.22,-74.50420297,39.32708275,609 HERZEL AVE,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_42_1.23,-74.48530151,39.34790167,611 HERZEL AVE,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_42_1.25,-74.3602205,39.413436,615 HERZEL AVE,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_42_1.26,-74.523624,39.3837955,617 HERZEL AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_42_1.27,-74.50721716,39.41912742,619 HERZEL AVE,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_42_1.28,-74.64462071,39.36702141,621 HERZEL AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_42_12,-74.80039807,39.63460985,1001 BURTON AVE,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_42_18.01,-74.66556316,39.34946117,1141 TILTON RD,NORTHFIELD CITY,,0,1,COM8,3004 -0118_42_18.02,-74.644983,39.3612725,1121 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_42_2,-74.88905384,39.56822045,607 BANNING AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_42_22,-74.54850373,39.38613254,1100 MAPLE AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_42_25,-74.6561265,39.5177775,1003 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_42_26,-74.77798815,39.60361226,1001 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_42_27,-74.80886492,39.63070546,950 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_42_3,-74.93727399,39.52019812,605 BANNING AVE,NORTHFIELD CITY,17,1942,1,RES1,3001 -0118_42_30,-74.484665,39.438317,900 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_42_4,-74.6805945,39.546855,603 BANNING AVE,NORTHFIELD CITY,16,1910,1,RES1,3001 -0118_42_5,-74.81700816,39.63422148,529 BANNING AVE,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_42_7,-74.86946584,39.60150717,521 BANNING AVE,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_42_9,-74.62233033,39.62380301,1337A NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_43_1,-74.52317744,39.31845234,815 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_44_1,-74.48630902,39.45910783,901 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_44_13,-74.50330789,39.48675082,607 ROOSEVELT AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_44_14,-74.80808594,39.62949897,605 ROOSEVELT AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_44_15,-74.78027594,39.62381299,601 ROOSEVELT AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_44_16,-74.79953095,39.59972617,917 MAPLE AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_44_17,-74.8104185,39.628293,600 JACKSON AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_44_18,-74.80431595,39.63282916,610 JACKSON AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_44_23,-74.5027583,39.51938507,612 JACKSON AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_44_26,-74.53619497,39.31360431,614 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_44_30,-74.9384655,39.529636,616 JACKSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_44_35,-74.49218928,39.43650515,618 JACKSON AVE,NORTHFIELD CITY,17,1951,1,GOV1,3004 -0118_45_1,-74.76530641,39.60570464,1000 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_45_3,-74.64676219,39.52431817,1003 MAPLE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_45_4,-74.70278549,39.63826942,600 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_1,-74.859658,39.44423129,1112 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_46_13,-74.50917653,39.40797215,1023 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_46_17,-74.76974432,39.33536553,1013 NEW RD,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_46_18,-74.55386088,39.38084584,1001 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_46_2,-74.755161,39.4522755,1114 TILTON RD,NORTHFIELD CITY,,0,1,AGR1,3001 -0118_46_20,-74.55636643,39.3973162,504 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_21,-74.53151434,39.37900446,506 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_22,-74.73519332,39.4475233,508 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_23,-74.75409522,39.44832697,510 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_24,-74.83852676,39.43999413,512 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,GOV1,3004 -0118_46_25,-74.87326448,39.44068527,514 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_26,-74.838293,39.487811,516 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_27,-74.59047885,39.50646253,518 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_28,-74.865665,39.4970505,1002 MAPLE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_29,-74.81008371,39.49829542,1004 MAPLE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_46_3,-74.5592165,39.397305,1116 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_46_4,-74.54020338,39.37656065,1118 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_47_1,-74.64909559,39.53539264,519 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_10,-74.8151175,39.469521,505 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_11,-74.715313,39.4481635,919 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_47_18,-74.60701231,39.51346376,514 JACKSON AVE,NORTHFIELD CITY,17,1924,1,GOV1,3004 -0118_47_2,-74.68896241,39.63257815,920 MAPLE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_21,-74.65285382,39.51677632,522 JACKSON AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_47_23,-74.70115223,39.6383128,524 JACKSON AVE,NORTHFIELD CITY,16,1980,1,RES1,3001 -0118_47_24,-74.727298,39.587082,526 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_25,-74.76631309,39.63651774,916 MAPLE AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_47_3,-74.82432631,39.54499102,918 MAPLE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_4,-74.64396065,39.53564097,517 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_5,-74.58937672,39.54458784,515 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_6,-74.5963615,39.5151295,513 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_7,-74.54703792,39.51721289,511 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_8,-74.87980364,39.4759488,509 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_47_9,-74.86594107,39.45076192,507 ROOSEVELT AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_48_1,-74.81127947,39.62706225,531 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3004 -0118_48_11,-74.79111995,39.63429876,508 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_48_13,-74.80966343,39.63721327,514 FAIRBANKS AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_48_14,-74.48902021,39.49577653,518 FAIRBANKS AVE,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_48_15,-74.49686475,39.5241221,802 MAPLE AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_48_16,-74.49095535,39.49730637,804 MAPLE AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_48_2,-74.8648965,39.6009385,527 JACKSON AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_48_3,-74.79274416,39.62985256,525 JACKSON AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_48_4,-74.7707693,39.63260655,515 JACKSON AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_49_1,-74.9403285,39.5222475,515 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_14,-74.8892545,39.563152,603 NEW RD,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_49_17,-74.482586,39.4547205,518 CHESTNUT AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_49_19,-74.51512248,39.44125934,520 CHESTNUT AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_49_2,-74.93798725,39.52577018,513 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_22,-74.5267885,39.44821251,522 CHESTNUT AVE,NORTHFIELD CITY,16,1924,1,GOV1,3004 -0118_49_25,-74.76270191,39.64027417,702 MAPLE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_3,-74.53655097,39.30471957,511 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_4,-74.4912065,39.5243045,509 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_5,-74.4846865,39.523493,507 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_6,-74.494915,39.4951035,505 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_7,-74.8069605,39.6279725,503 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_8,-74.7888445,39.6332435,501 FAIRBANKS AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_49_9,-74.81906604,39.62060437,615 NEW RD,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_5_1,-74.45647659,39.35087692,2278 BURROUGHS AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_5_10,-74.6226595,39.4320105,3106 CEDARBRIDGE RD,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_5_11,-74.64309616,39.41107095,3100 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_5_2,-74.597252,39.357391,2276 BURROUGHS AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_5_3.01,-74.59444956,39.36306903,2274 BURROUGHS AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_5_3.02,-74.899591,39.5386825,3114 CEDARBRIDGE RD,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_5_4,-74.62894642,39.41705012,2272 BURROUGHS AVE,NORTHFIELD CITY,17,1957,1,GOV1,3004 -0118_5_5.02,-74.690309,39.6370855,2701 BURROUGHS AVE,NORTHFIELD CITY,17,1978,1,COM1,3004 -0118_5_6,-74.95149971,39.53579857,3112 CEDARBRIDGE RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_5_7,-74.9502975,39.515654,3110 CEDARBRIDGE RD,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_5_8,-74.63759752,39.43373675,3108 CEDARBRIDGE RD,NORTHFIELD CITY,17,1959,1,COM3,3004 -0118_5_9,-74.919861,39.506628,2500 SUTTON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_50_1,-74.52062234,39.31820443,533 CHESTNUT AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_50_14,-74.51219087,39.43621524,505 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_50_18,-74.67829705,39.64834381,514 SPRUCE AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_50_2,-74.80600035,39.64036753,529 CHESTNUT AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_50_20,-74.78684854,39.64049252,518 SPRUCE AVE,NORTHFIELD CITY,16,1929,1,RES1,3001 -0118_50_22,-74.7872435,39.6768095,522 SPRUCE AVE,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_50_24,-74.801465,39.6490905,524 SPRUCE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_50_26,-74.52053133,39.31781853,526 SPRUCE AVE,NORTHFIELD CITY,17,1963,1,IND1,3004 -0118_50_28,-74.51176066,39.32910797,500 MAPLE AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_50_5,-74.7917155,39.6769685,527 CHESTNUT AVE,NORTHFIELD CITY,17,1993,1,RES3A,3001 -0118_50_7,-74.78900183,39.64362548,519 CHESTNUT AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_50_8,-74.50452434,39.46682403,511 CHESTNUT AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_51_1,-74.47729971,39.34305464,525 SPRUCE AVE,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_51_10,-74.50939682,39.33074752,515 SPRUCE AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_51_12,-74.51765772,39.31878015,513 SPRUCE AVE,NORTHFIELD CITY,17,1964,1,COM10,3003 -0118_51_22,-74.4625375,39.350295,516 WALNUT AVE,NORTHFIELD CITY,16,1912,1,RES1,3001 -0118_51_25,-74.484516,39.340825,520 WALNUT ST,NORTHFIELD CITY,17,1970,1,RES3A,3001 -0118_51_27,-74.48485624,39.33481567,524 WALNUT ST,NORTHFIELD CITY,17,1991,1,RES1,3001 -0118_51_30,-74.48266996,39.34675176,528 WALNUT ST,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_51_32,-74.462628,39.3561585,538 WALNUT ST,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_51_5,-74.48072037,39.33870134,523 SPRUCE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_51_8,-74.47127898,39.34032933,517 SPRUCE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_52_1,-74.50446617,39.45857251,617 JACKSON AVE,NORTHFIELD CITY,17,1964,1,REL1,3004 -0118_52_10,-74.52228217,39.539457,810 MAPLE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_52_11,-74.809044,39.633477,808 MAPLE AVE,NORTHFIELD CITY,17,1958,1,REL1,3004 -0118_52_14,-74.8985114,39.55327334,602 FAIRBANKS AVE,NORTHFIELD CITY,17,1971,1,RES1,3001 -0118_52_19,-74.459024,39.4633195,604 FAIRBANKS AVE,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_52_2,-74.52740003,39.45212586,615 JACKSON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_52_24,-74.5209205,39.4431895,606 FAIRBANKS AVE,NORTHFIELD CITY,16,1975,1,RES1,3001 -0118_52_29,-74.53010265,39.46000004,802 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_52_4,-74.50784684,39.45236696,611 JACKSON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_52_5,-74.97231133,39.51651,609 JACKSON AVE,NORTHFIELD CITY,17,1954,1,COM1,3004 -0118_52_6,-74.941433,39.5221855,607 JACKSON AVE,NORTHFIELD CITY,16,2011,1,RES1,3001 -0118_52_9,-74.48774501,39.52013265,601 JACKSON AVE,NORTHFIELD CITY,17,1954,1,COM1,3004 -0118_53_1,-74.780827,39.672759,607 FAIRBANKS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_53_10,-74.47872064,39.34021264,602 LAKE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_11,-74.483053,39.347197,604 LAKE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_12,-74.45489735,39.35310698,606 LAKE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_13,-74.50743989,39.3385192,608 LAKE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_14,-74.60061719,39.37980111,610 LAKE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_53_15,-74.60518311,39.38431117,600 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_16,-74.504551,39.3401895,602 BURTON AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_53_17,-74.4515275,39.356048,606 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_18,-74.48523282,39.33985152,700 BURTON AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_53_19,-74.50975254,39.32722267,702 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_2,-74.50864536,39.46205005,605 FAIRBANKS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_53_20,-74.52149284,39.32189699,704 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_21,-74.81636133,39.6473865,706 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_3,-74.51830906,39.44612731,603 FAIRBANKS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_53_4,-74.501036,39.4468215,601 FAIRBANKS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_5,-74.488915,39.4587845,707 MAPLE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_53_6,-74.78355627,39.6423801,705 MAPLE AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_53_7,-74.80446633,39.64500744,703 MAPLE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_8,-74.51842038,39.32047635,701 MAPLE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_53_9,-74.50936673,39.33239165,600 LAKE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_54_2,-74.46935753,39.34419585,501 MAPLE AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_55_1,-74.48283266,39.35408942,409 MAPLE AVE,NORTHFIELD CITY,17,1973,1,COM1,3004 -0118_55_2,-74.496251,39.335,407 MAPLE AVE,NORTHFIELD CITY,16,1918,1,RES1,3001 -0118_55_4.01,-74.60946134,39.36924898,608 WALNUT AVE,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_56_1,-74.80338835,39.64389172,825 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_56_10,-74.81972465,39.64055947,803 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_56_13,-74.52461384,39.31878399,700 FAIRBANKS AVE,NORTHFIELD CITY,17,1992,1,RES1,3001 -0118_56_19,-74.47668667,39.3418009,800 ADELE ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_56_20,-74.4638825,39.3465205,802 ADELE ST,NORTHFIELD CITY,17,1960,1,RES3A,3001 -0118_56_21,-74.51093808,39.32752629,804 ADELE ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_56_22,-74.51648203,39.33093867,705 JACKSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_56_7,-74.81405517,39.6461625,813 BURTON AVE,NORTHFIELD CITY,17,1990,1,RES1,3001 -0118_57_10,-74.488782,39.338469,603 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_57_11,-74.594894,39.3806435,600 EVERGREEN AVE,NORTHFIELD CITY,17,1963,1,RES3A,3001 -0118_57_12,-74.59476034,39.38265882,602 EVERGREEN AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_57_13,-74.49460275,39.33448548,604 EVERGREEN AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_57_14,-74.48786515,39.33767066,606 EVERGREEN AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_57_2,-74.460645,39.3565925,704 ADELE ST,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_57_3,-74.485741,39.3494605,702 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_57_4,-74.483318,39.3392285,700 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_57_5,-74.51406466,39.32844051,701 FAIRBANKS AVE,NORTHFIELD CITY,17,1958,1,RES3A,3001 -0118_57_6,-74.46166634,39.3460655,705 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_57_7,-74.48357333,39.34129759,703 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_57_8,-74.4808795,39.346462,701 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_57_9,-74.46439023,39.35904983,605 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_58_1,-74.4829545,39.334906,813 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_58_10,-74.49010853,39.33960517,800 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES3A,3001 -0118_58_11,-74.45747622,39.35405982,802 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_58_2,-74.48486455,39.33449285,807 ADELE ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_58_3,-74.48237884,39.34831957,805 ADELE ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_58_4,-74.44960334,39.3574795,803 ADELE ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_58_5,-74.462195,39.358403,801 ADELE ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_58_6,-74.46222817,39.355376,701 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES3A,3001 -0118_58_7,-74.49598065,39.33596529,703 DEBORA ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_58_8,-74.497816,39.3347845,705 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_58_9,-74.49140113,39.33692766,707 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_1,-74.3699705,39.4185795,801 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_59_10,-74.55219958,39.40279832,712 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_11,-74.54799816,39.40526747,710 DEBORA ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_12,-74.6080521,39.3764323,708 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_14,-74.6183465,39.3850745,529 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_15,-74.53479411,39.4149976,527 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_16,-74.50325465,39.3357324,525 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_17,-74.5105513,39.33603516,523 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_18,-74.3970565,39.3915315,521 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_19,-74.39535801,39.38679034,519 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_2.02,-74.378616,39.4153835,803 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_59_2.03,-74.389549,39.394289,805 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_59_2.04,-74.5053505,39.33589067,809 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_59_20,-74.38285816,39.39641251,517 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_21,-74.4027275,39.381666,515 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_22,-74.4076185,39.3775415,513 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_23,-74.42408779,39.37204239,511 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_24,-74.410377,39.3907405,509 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_25,-74.37317667,39.403192,507 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_26,-74.37344026,39.41533609,505 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_27,-74.45074855,39.37406781,503 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_28,-74.52938967,39.38105448,501 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_29,-74.52296286,39.38573618,200 CRESSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_30,-74.52730154,39.39025781,702 CRESSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_31,-74.5088845,39.3849265,704 CRESSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_32,-74.45336474,39.37283238,706 CRESSON AVE,NORTHFIELD CITY,17,1997,1,COM1,3004 -0118_59_5,-74.58980104,39.37748081,803 DEBORA ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_59_6,-74.602259,39.38237312,801 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_7,-74.6105885,39.377218,718 DEBORA ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_59_8,-74.614883,39.3942445,716 DEBORA ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_59_9,-74.53459468,39.41050495,714 DEBORA ST,NORTHFIELD CITY,17,1997,1,COM1,3004 -0118_6_1,-74.644452,39.528819,2501 SUTTON AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_6_11,-74.60020954,39.31194732,2505 OAK AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_6_12,-74.75795341,39.44492865,902 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_6_13,-74.946235,39.5118545,906 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_6_14,-74.54883076,39.3779422,908 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES3A,3001 -0118_6_15,-74.83585386,39.47791352,910 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES3A,3001 -0118_6_16,-74.6189995,39.5092385,912 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_6_17,-74.588369,39.412234,914 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_6_18,-74.5902287,39.4245053,916 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_6_19,-74.643004,39.530727,918 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_6_2,-74.59793157,39.41317799,2321 BURROUGHS AVE,NORTHFIELD CITY,17,1974,1,RES3A,3001 -0118_6_20,-74.6244725,39.6045925,920 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_6_21,-74.77812601,39.51738746,922 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_6_22,-74.80315356,39.62647384,924 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_6_3,-74.646599,39.5067815,2323 BURROUGHS AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_6_4,-74.88115744,39.49515718,2317 BURROUGHS AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_6_5,-74.9465645,39.5195055,2313 BURROUGHS AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_6_6,-74.7509915,39.4534065,2311 BURROUGHS AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_6_7,-74.74466026,39.44769427,2309 BURROUGHS AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_6_8,-74.60231781,39.31661294,2307 BURROUGHS AVE,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_6_9,-74.48515951,39.53015657,2305 BURROUGHS AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_60_1,-74.38080623,39.41411236,503 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_60_10,-74.3793815,39.3970785,514 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_60_11,-74.39131333,39.39102599,516 PINCUS AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_60_12,-74.37731754,39.39981944,518 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_60_13,-74.5157808,39.33815067,520 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_60_14,-74.507436,39.336007,522 PINCUS AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_60_15,-74.53500203,39.40338144,524 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_60_16,-74.5628275,39.410553,527 BURTON AVE,NORTHFIELD CITY,17,1960,1,COM1,3004 -0118_60_17,-74.4888685,39.349041,525 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_60_18,-74.36827867,39.40215646,523 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_60_19,-74.3929135,39.3911415,521 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_60_2,-74.3802545,39.4160055,501 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_60_20,-74.37924944,39.39751183,519 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_60_21,-74.4195061,39.37033931,517 BURTON AVE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_60_22,-74.4094965,39.3803865,515 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_60_23,-74.44318102,39.37000218,513 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_60_24,-74.364383,39.40806,511 BURTON AVE,NORTHFIELD CITY,17,1964,1,RES3A,3001 -0118_60_25,-74.37009142,39.40420383,509 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_60_26,-74.36015108,39.41363615,507 BURTON AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_60_27,-74.37359827,39.41170997,505 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_60_3,-74.3765175,39.41449,500 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES3A,3001 -0118_60_4,-74.35811764,39.41383813,502 PINCUS AVE,NORTHFIELD CITY,17,1960,1,COM3,3004 -0118_60_5,-74.3615465,39.416807,504 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_60_6,-74.37044884,39.40640349,506 PINCUS AVE,NORTHFIELD CITY,17,1958,1,EDU1,3004 -0118_60_7,-74.43495206,39.36838917,508 PINCUS AVE,NORTHFIELD CITY,17,1959,1,RES3A,3001 -0118_60_8,-74.40586434,39.38019799,510 PINCUS AVE,NORTHFIELD CITY,17,1960,1,RES3A,3001 -0118_60_9,-74.40652802,39.38212934,512 PINCUS AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_61_1,-74.40701593,39.39226708,518 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES3A,3001 -0118_61_10,-74.427446,39.371613,704 WALNUT AVE,NORTHFIELD CITY,17,2018,1,RES1,3001 -0118_61_11,-74.3687605,39.4052215,400 DAHLIA ST,NORTHFIELD CITY,17,1960,1,RES3A,3001 -0118_61_12,-74.41212408,39.39061618,402 DAHLIA ST,NORTHFIELD CITY,17,1962,1,RES3A,3001 -0118_61_13,-74.40930499,39.39124483,404 DAHLIA ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_61_2,-74.4077305,39.3815195,520 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_61_3,-74.390158,39.3945595,522 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3002 -0118_61_4,-74.39258417,39.390938,524 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_61_5,-74.39744058,39.38470135,526 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_61_6,-74.50753782,39.33535655,528 BURTON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_61_7,-74.49477043,39.3428933,401 EVERGREEN AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_61_8.01,-74.3881765,39.3941915,700 WALNUT AVE,NORTHFIELD CITY,17,1880,1,RES1,3001 -0118_61_8.02,-74.3772306,39.39893567,698 WALNUT AVE,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_61_9,-74.40724734,39.38154601,702 WALNUT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_62_1,-74.38038832,39.41477298,400 ELDER ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_62_2,-74.37117542,39.4115552,402 ELDER ST,NORTHFIELD CITY,17,1960,1,RES3B,3001 -0118_62_3,-74.3748355,39.4121845,404 ELDER ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_62_4,-74.36941082,39.41602241,512 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES3A,3004 -0118_62_5,-74.36943433,39.40470851,514 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES3A,3001 -0118_62_6,-74.35662528,39.41534093,405 DAHLIA ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_62_7,-74.365865,39.414223,403 DAHLIA ST,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_62_8,-74.3767635,39.417008,401 DAHLIA ST,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_63_1,-74.514687,39.3939015,400 ASTER ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_63_2,-74.5145715,39.401884,402 ASTER ST,NORTHFIELD CITY,17,1961,1,RES1,3002 -0118_63_3,-74.52523632,39.38582744,404 ASTER ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_63_4,-74.52812819,39.38770073,506 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_63_5,-74.44578,39.374339,508 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_63_6,-74.45329637,39.37134322,405 ELDER ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_63_7,-74.52962383,39.37973421,403 ELDER ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_63_8,-74.52498251,39.39064916,401 ELDER ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_64_1,-74.50317625,39.41846654,400 CRESSON AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_64_10,-74.52102065,39.39917235,409 ASTER ST,NORTHFIELD CITY,17,1960,1,RES1,3002 -0118_64_11,-74.5278055,39.3984895,407 ASTER ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_64_12,-74.52948069,39.39836293,405 ASTER ST,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_64_13,-74.52594715,39.39623624,403 ASTER ST,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_64_14,-74.48415906,39.43596557,401 ASTER ST,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_64_2,-74.4980735,39.4125995,402 CRESSON AVE,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_64_3,-74.50369782,39.40833929,404 CRESSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_64_4,-74.4831744,39.43080979,406 CRESSON AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_64_5,-74.5243235,39.397968,408 CRESSON AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_64_7,-74.53065567,39.39959257,500 BURTON AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_64_9,-74.51636067,39.39664608,502 BURTON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_65_1,-74.518292,39.410198,320 CRESSON AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_65_10,-74.3714995,39.4115985,901 WALNUT AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_65_12,-74.37214668,39.40814144,897 WALNUT ST,NORTHFIELD CITY,,1910,1,RES1,3001 -0118_65_14,-74.514709,39.3993605,128 FABIAN AVENUE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_65_15,-74.521929,39.3989515,160 FABIAN AVE,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_65_17,-74.49761976,39.4123928,136 FABIAN AVE,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_65_18,-74.50067422,39.41344915,138 FABIAN AVE,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_65_19.01,-74.53014,39.418649,300 CRESSON AVE,NORTHFIELD CITY,17,2000,1,RES1,3001 -0118_65_19.02,-74.5140695,39.411242,302 CRESSON AVE,NORTHFIELD CITY,16,1938,1,RES1,3001 -0118_65_19.03,-74.52183717,39.40896575,304 CRESSON AVE,NORTHFIELD CITY,17,1998,1,RES1,3001 -0118_65_19.04,-74.50979841,39.40378626,306 CRESSON AVE,NORTHFIELD CITY,17,1998,1,RES1,3001 -0118_65_2,-74.5049615,39.41441682,1105 WALNUT AVE,NORTHFIELD CITY,17,1959,1,COM10,3003 -0118_65_3,-74.5019725,39.4145735,1103 WALNUT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_65_4,-74.50706417,39.40515101,1101 WALNUT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_65_5,-74.52322573,39.39417835,1005 WALNUT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_65_6,-74.530736,39.3988225,1003 WALNUT AVE,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_65_7,-74.5153825,39.4004755,1001 WALNUT AVE,NORTHFIELD CITY,17,1959,1,GOV1,3004 -0118_65_8,-74.51673211,39.38637582,905 WALNUT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_65_9,-74.44934019,39.37343845,903 WALNUT AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_66_10,-74.369736,39.4025535,117 HARVEY DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_66_13.01,-74.5267275,39.386704,616 DOLPHIN AVE,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_66_13.02,-74.52207285,39.39823604,618 DOLPHIN AVE,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_66_13.03,-74.81782616,39.64050353,620 DOLPHIN AVE,NORTHFIELD CITY,17,1997,1,RES1,3001 -0118_66_2,-74.48169092,39.33959133,137 FABIAN AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_66_7,-74.47578923,39.37105064,127 FABIAN AVE,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_66_8.01,-74.3735805,39.4109595,125 FABIAN AVE,NORTHFIELD CITY,17,1994,1,RES1,3001 -0118_66_8.02,-74.36578609,39.4134357,123 FABIAN AVE,NORTHFIELD CITY,17,1994,1,RES1,3001 -0118_66_9,-74.36978243,39.40515183,117 FABIAN AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_67_1.01,-74.39089278,39.38933631,703 LAKE AVE,NORTHFIELD CITY,17,1924,1,RES1,3004 -0118_67_1.03,-74.50353033,39.33432003,701 LAKE AVE,NORTHFIELD CITY,17,1985,1,RES1,3001 -0118_67_5,-74.50422309,39.33675906,603 WALNUT ST,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_67_7,-74.54944795,39.40560935,601 WALNUT ST,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_68_1,-74.615221,39.3838375,311 MAPLE AVE,NORTHFIELD CITY,16,1928,1,RES1,3001 -0118_68_10,-74.46301167,39.35509849,515 WALNUT AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_68_11,-74.44740283,39.35549832,511 WALNUT AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_68_14,-74.47829947,39.34198715,319 NEW RD,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_68_15,-74.48193104,39.34116918,317 NEW RD,NORTHFIELD CITY,16,1922,2,RES1,3001 -0118_68_17,-74.4807285,39.336025,311 NEW RD,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_68_19,-74.4727675,39.343518,305 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_68_22,-74.4615475,39.354729,301 NEW RD,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_68_23,-74.49526303,39.34257467,522 DOLPHIN AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_68_25,-74.49654502,39.33576617,524 DOLPHIN AVE,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_68_26,-74.50596436,39.33690669,526 DOLPHIN AVE,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_68_27,-74.5907279,39.37926209,528 DOLPHIN AVE,NORTHFIELD CITY,17,1993,1,AGR1,3001 -0118_68_3,-74.60984075,39.37370264,529 WALNUT ST,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_68_30,-74.616582,39.3730495,532 DOLPHIN AVE,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_68_31,-74.60136733,39.38828309,534 DOLPHIN AVE,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_68_33,-74.53465269,39.40515721,536 DOLPHIN AVE,NORTHFIELD CITY,17,1993,1,RES1,3002 -0118_68_35,-74.53698594,39.41076129,538 DOLPHIN AVE,NORTHFIELD CITY,17,1993,1,RES1,3002 -0118_68_37,-74.555069,39.4059015,540 DOLPHIN AVE,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_68_8,-74.49068238,39.33667834,523 WALNUT AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_69_2,-74.3914075,39.3901685,603 DOLPHIN AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_69_4,-74.4268235,39.3723925,NEW RD & DOLPHIN AV,NORTHFIELD CITY,,0,1,RES1,3001 -0118_7_1,-74.685245,39.392612,921 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_10,-74.53560799,39.52983667,905 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_7_11,-74.86830929,39.48914896,901 RIDGEWOOD DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_7_12,-74.63647335,39.52959794,2415 OAK AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_7_13,-74.65032215,39.57627121,2411 OAK AVE,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_7_14,-74.80155796,39.54001986,2407 OAK AVE,NORTHFIELD CITY,16,1930,1,RES1,3001 -0118_7_15,-74.81719955,39.61555734,2403 OAK AVE,NORTHFIELD CITY,16,1942,1,RES1,3001 -0118_7_16,-74.81386321,39.63635483,2604 CEDARBRIDGE RD,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_7_17,-74.83061945,39.63514173,2 CEDARBRIDGE CIRCL,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_18,-74.696543,39.562316,4 CEDARBRIDGE CIRCL,NORTHFIELD CITY,17,1963,1,GOV1,3004 -0118_7_19,-74.80561632,39.547139,3 CEDARBRIDGE CIRCL,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_2,-74.63297218,39.38969358,923 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_20,-74.920417,39.4776605,1 CEDARBRIDGE CIRCL,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_21,-74.907792,39.4933835,2900 CEDARBRIDGE RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_22,-74.92570367,39.50691457,3000 CEDARBRIDGE RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_23,-74.64396322,39.37855575,3002 CEDARBRIDGE RD,NORTHFIELD CITY,17,1971,1,RES1,3001 -0118_7_3,-74.8562545,39.62102384,919 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_4,-74.88146122,39.6041781,917 RIDGEWOOD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_7_5,-74.69689342,39.63586878,915 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_6,-74.59822831,39.59184165,913 RIDGEWOOD DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_7_7,-74.66034315,39.52475496,911 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_8,-74.5845685,39.4206265,909 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_7_9,-74.59805318,39.40989958,907 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_70_1,-74.6061,39.3189085,334 W OAKCREST AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_70_11,-74.481124,39.349363,306 W OAKCREST AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_70_13,-74.466126,39.346886,300 W OAKCREST AVE,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_70_3,-74.5923085,39.3238225,328 W OAKCREST AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_70_4,-74.46152714,39.35564154,326 W OAKCREST AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_70_6,-74.4528775,39.3537165,316 W OAKCREST AVE,NORTHFIELD CITY,16,1925,1,RES1,3001 -0118_70_9,-74.48177632,39.34861104,312 W OAKCREST AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_71_1,-74.53918948,39.37158947,2600 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_71_10,-74.60411509,39.33054243,311 W OAKCREST AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_71_17,-74.56897936,39.34821127,304 W REVERE AVE,NORTHFIELD CITY,16,1946,1,GOV1,3004 -0118_71_20,-74.50970072,39.32617662,306 W REVERE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_71_23,-74.65340619,39.35841173,322 W REVERE AVE,NORTHFIELD CITY,17,1999,1,RES1,3001 -0118_71_25.01,-74.53568839,39.37787116,326 W REVERE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_71_25.02,-74.573385,39.3770185,330 W REVERE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_71_4,-74.56599231,39.35750697,327 W OAKCREST AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_71_5,-74.46250065,39.34912402,321 W OAKCREST AVE,NORTHFIELD CITY,16,1954,1,RES1,3001 -0118_71_8,-74.63807036,39.34317028,317 W OAKCREST AVE,NORTHFIELD CITY,17,1957,1,REL1,3004 -0118_72_1,-74.5109355,39.3284625,248 W OAKCREST AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_72_11,-74.56371313,39.41054625,222 W OAKCREST AVE,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_72_13,-74.61099969,39.31106281,208 W OAKCREST AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_72_18,-74.646245,39.5508525,200 W OAKCREST AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_72_3,-74.5241045,39.319085,242 W OAKCREST AVE,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_72_5,-74.58492142,39.41533849,240 W OAKCREST AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_72_7.01,-74.57948284,39.40941579,226 W. OAKCREST AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_72_7.02,-74.56825711,39.4138773,224 W. OAKCREST AVE,NORTHFIELD CITY,17,1925,1,GOV1,3004 -0118_73_1,-74.44442212,39.35643454,249 W OAKCREST AVE,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_73_10,-74.5112529,39.32940314,217 W OAKCREST AVE,NORTHFIELD CITY,17,1938,1,RES1,3001 -0118_73_11,-74.520396,39.3176855,215 W OAKCREST AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_73_12,-74.58124915,39.4114617,213 W OAKCREST AVE,NORTHFIELD CITY,16,1934,1,RES1,3001 -0118_73_14,-74.58474911,39.32570025,201 W OAKCREST AVE,NORTHFIELD CITY,17,1974,1,GOV1,3004 -0118_73_17,-74.58613051,39.40621015,2607 WABASH AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_73_19,-74.5101255,39.3315355,200 W REVERE AVE,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_73_2,-74.48521811,39.34732602,245 W OAKCREST AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_73_21,-74.4649835,39.3478505,212 W REVERE AVE,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_73_22,-74.484982,39.350683,214 W REVERE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_73_23,-74.48230773,39.34934728,216 W REVERE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_73_26,-74.477792,39.346325,218 W REVERE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_73_28,-74.462489,39.3565905,222 W REVERE AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_73_3,-74.48363933,39.34920507,233 W OAKCREST AVE,NORTHFIELD CITY,16,1958,1,RES1,3001 -0118_73_31,-74.59392383,39.3223845,224 W REVERE AVE,NORTHFIELD CITY,17,1958,1,IND2,3002 -0118_73_33,-74.5994395,39.317988,228 W REVERE AVE,NORTHFIELD CITY,17,1965,1,RES3A,3001 -0118_73_5,-74.4698075,39.3451105,229 W OAKCREST AVE,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_73_7,-74.4582721,39.34858667,227 W OAKCREST AVE,NORTHFIELD CITY,16,1927,1,RES3A,3002 -0118_73_8,-74.46443734,39.34952099,219 W OAKCREST AVE,NORTHFIELD CITY,16,1990,1,RES1,3001 -0118_74_1,-74.60410684,39.32475396,2406 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_74_11,-74.594388,39.3805675,303 W REVERE AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_74_14,-74.531297,39.3871755,301 W REVERE AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_74_19,-74.66509117,39.36049854,231 W REVERE AVE,NORTHFIELD CITY,17,1963,1,GOV1,3004 -0118_74_2,-74.4689115,39.491956,2408 NEW RD,NORTHFIELD CITY,,0,1,AGR1,3001 -0118_74_21,-74.5593585,39.357985,223 W REVERE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_74_22,-74.462242,39.3492485,221 W REVERE AVE,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_74_25,-74.56590068,39.35454702,219 W REVERE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_74_26,-74.60294516,39.33332752,215 W REVERE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_74_27,-74.60382049,39.32431867,211 W REVERE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_74_28,-74.5907365,39.3179965,207 W REVERE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_74_29,-74.46174417,39.35502297,203 W REVERE AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_74_32,-74.45045876,39.35646724,201 REVERE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_74_33,-74.48724625,39.34875015,2535 WABASH AVE,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_74_36,-74.4924925,39.339319,200 W GLENCOVE AVE,NORTHFIELD CITY,17,1958,1,GOV1,3004 -0118_74_37,-74.58904822,39.33273583,202 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_38,-74.60645405,39.33139848,204 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_39,-74.6431045,39.342125,206 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_40,-74.51498767,39.32617198,208 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_41,-74.62987606,39.36337002,210 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_42,-74.54015835,39.37603161,212 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_43,-74.5528123,39.38311141,214 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,GOV1,3004 -0118_74_44,-74.5700445,39.3699695,216 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_45,-74.54389411,39.38633963,218 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_46,-74.59249872,39.37922604,220 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_47,-74.61843433,39.38233873,222 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_48,-74.46440492,39.49361104,224 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_49,-74.5054485,39.4780425,226 W GLENCOVE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_74_5,-74.46288186,39.49604044,333 W REVERE RD,NORTHFIELD CITY,17,1981,1,RES1,3001 -0118_74_50,-74.61032596,39.3244841,228 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_74_51,-74.532393,39.4049555,230 GLENCOVE AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_74_8,-74.61265856,39.37444481,325 W REVERE AVE,NORTHFIELD CITY,16,1944,1,RES1,3001 -0118_75_1,-74.613079,39.4110005,231 W GLENCOVE AVENUE,NORTHFIELD CITY,,1976,1,RES1,3001 -0118_75_10,-74.6047295,39.37628,213 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,GOV1,3004 -0118_75_11,-74.55660032,39.39688256,211 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_12,-74.531306,39.3898375,209 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_13,-74.55748371,39.37611317,207 W GLENCOVE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_75_14,-74.549468,39.376075,205 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_15,-74.65062466,39.35614356,203 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_16,-74.46499536,39.34823263,201 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_17,-74.55129545,39.37644884,200 RIDGEWOOD DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_18,-74.55110646,39.37961084,202 RIDGEWOOD DR,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_75_19,-74.53199006,39.39025127,204 RIDGEWOOD DR,NORTHFIELD CITY,17,1958,1,RES3A,3001 -0118_75_2,-74.57055743,39.42029017,229 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_20,-74.55653016,39.38771971,206 RIDGEWOOD DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_21,-74.5928005,39.3773135,208 RIDGEWOOD DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_75_22,-74.6072965,39.3914595,210 RIDGEWOOD DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_75_23,-74.46495452,39.49626457,212 RIDGEWOOD DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_75_24,-74.530601,39.470724,214 RIDGEWOOD DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_25,-74.61386466,39.32463005,216 RIDGEWOOD DR,NORTHFIELD CITY,17,1959,1,RES1,3004 -0118_75_26,-74.5749295,39.3365,218 RIDGEWOOD DR,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_75_27,-74.53330906,39.40416374,220 RIDGEWOOD DR,NORTHFIELD CITY,17,1955,1,GOV1,3004 -0118_75_28,-74.57423869,39.41227205,222 RIDGEWOOD DR,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_75_29,-74.570615,39.428486,224 RIDGEWOOD DR,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_75_3,-74.57478722,39.42946381,227 W GLENCOVE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_75_30,-74.61141718,39.41633262,226 RIDGEWOOD DR,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_75_31,-74.6007045,39.4360545,228 RIDGEWOOD DR,NORTHFIELD CITY,17,1955,1,GOV1,3004 -0118_75_32,-74.6355165,39.382165,230 RIDGEWOOD DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_33,-74.65433017,39.4161395,234 RIDGEWOOD DR,NORTHFIELD CITY,,0,1,RES1,3001 -0118_75_4,-74.54439034,39.40668819,225 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_5,-74.57262474,39.34414537,223 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_6,-74.61165225,39.32402489,221 W GLENCOVE AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_75_7,-74.59084052,39.32732633,219 W GLENCOVE AVE,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_75_8,-74.475758,39.49376817,217 W GLENCOVE AVE,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_75_9,-74.4668125,39.4737805,215 W GLENCOVE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_76_1,-74.6028825,39.3549775,124 W OAKCREST AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_76_11,-74.56847945,39.36112883,16 W OAKCREST AVE,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_76_14,-74.5561685,39.3672635,12 W OAKCREST AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_76_18,-74.89608477,39.48231821,2707 SHORE RD,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_76_2,-74.58528213,39.35422621,2700 WABASH AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_76_3,-74.57575958,39.35325234,120 W OAKCREST AVE,NORTHFIELD CITY,17,1957,1,GOV1,3004 -0118_76_4,-74.5997155,39.340479,116 W OAKCREST AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_76_5,-74.59343951,39.34443544,110 W OAKCREST AVE,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_76_7,-74.58374691,39.33804668,108 W OAKCREST AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_77_1,-74.5643045,39.4138385,2600 WABASH AVE,NORTHFIELD CITY,16,1933,1,GOV1,3004 -0118_77_10,-74.6746295,39.5099685,115 W OAKCREST AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_77_12,-74.65177,39.53246733,109 W OAKCREST AVE,NORTHFIELD CITY,17,1944,2,RES1,3001 -0118_77_15,-74.57955786,39.36068068,105 W OAKCREST AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_77_17,-74.5962547,39.35621205,103 W OAKCREST AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_77_18,-74.64827834,39.5328825,2705 ERIE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_77_22,-74.60301715,39.31643431,114 W REVERE AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_77_24,-74.61451767,39.31061851,118 W REVERE AVE,NORTHFIELD CITY,16,1940,1,RES1,3001 -0118_77_3,-74.58883367,39.32475954,2604 WABASH AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_77_4,-74.6078885,39.3151215,2606 WABASH AVE,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_77_6,-74.6339044,39.54015626,121 W OAKCREST AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_77_8,-74.64898294,39.53850031,119 W OAKCREST AVE,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_78_1,-74.46088233,39.3494335,123 W REVERE AVE,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_78_11,-74.5727505,39.4130065,105 W REVERE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_78_18,-74.56429531,39.3678379,SHORE RD & OAKCREST,NORTHFIELD CITY,,0,1,RES1,3001 -0118_78_20,-74.581719,39.3439375,2609 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_78_22,-74.48215867,39.35017343,2535 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_78_23,-74.46259946,39.35458332,2501 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_78_5,-74.51122583,39.32832151,121 W REVERE AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_78_6,-74.5217649,39.32074419,117 W REVERE AVE,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_78_8,-74.57829393,39.41552094,109 W REVERE AVE,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_79_1,-74.57092646,39.37068069,17 RIDGEWOOD DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_79_10,-74.6082495,39.376061,2410 WABASH AVE,NORTHFIELD CITY,17,1969,1,RES1,3001 -0118_79_11.01,-74.51512187,39.32711718,2419 SHORE RD,NORTHFIELD CITY,17,1870,1,GOV1,3004 -0118_79_11.02,-74.65741873,39.36725372,2 MIMI CT,NORTHFIELD CITY,17,1989,1,GOV1,3004 -0118_79_11.03,-74.54776126,39.37303448,4 MIMI CT,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_79_11.04,-74.55062287,39.38013353,6 MIMI CT,NORTHFIELD CITY,17,1979,1,RES1,3001 -0118_79_11.05,-74.60092818,39.38253348,8 MIMI CT,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_79_11.06,-74.584679,39.3270785,2406 WABASH AVE,NORTHFIELD CITY,17,1978,1,RES1,3001 -0118_79_12.01,-74.55516863,39.3851798,2401 SHORE RD,NORTHFIELD CITY,17,1890,1,RES1,3004 -0118_79_12.02,-74.58173398,39.3810438,3 MIMI CT,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_79_12.03,-74.47046592,39.48573692,5 MIMI CT,NORTHFIELD CITY,17,1982,1,GOV1,3004 -0118_79_12.04,-74.57888689,39.33040447,7 MIMI CT,NORTHFIELD CITY,17,1980,1,RES1,3004 -0118_79_13,-74.50970329,39.48616431,2404 WABASH AVE,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_79_14,-74.5543105,39.4274215,2400 WABASH AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_79_15,-74.591937,39.4314555,114 W ROSEDALE AVE,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_79_18,-74.5750158,39.4284018,112 W ROSEDALE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_79_2,-74.54355366,39.37400653,15 RIDGEWOOD DR,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_79_25,-74.603258,39.3310505,26 W ROSEDALE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_79_26,-74.60131084,39.31778901,20 W ROSEDALE AVE,NORTHFIELD CITY,17,1904,1,RES1,3001 -0118_79_29,-74.50484214,39.48082768,16 W ROSEDALE AVE,NORTHFIELD CITY,17,1850,1,RES1,3001 -0118_79_3,-74.64960516,39.35499487,11 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_79_30,-74.44975169,39.49810785,14 W ROSEDALE AVE,NORTHFIELD CITY,17,1996,1,RES1,3001 -0118_79_33,-74.53353057,39.38720764,2303 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_79_4,-74.5154145,39.326613,9 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_79_5,-74.57368282,39.34127248,7 RIDGEWOOD DR,NORTHFIELD CITY,17,1956,1,GOV1,3004 -0118_79_6,-74.58669161,39.33140282,5 RIDGEWOOD DR,NORTHFIELD CITY,17,1952,1,GOV1,3004 -0118_79_8,-74.48647739,39.35147662,2431 SHORE RD,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_79_9,-74.683378,39.363351,2427 SHORE RD,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_8_1,-74.8875275,39.57511696,4 DELMAR DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_8_2,-74.98174009,39.51280575,6 DELMAR DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_80_1,-74.6258495,39.4130415,2204 WABASH AVE,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_80_10,-74.58070181,39.41250648,21 W ROSEDALE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_80_12,-74.57005825,39.41934182,11 W ROSEDALE AVE,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_80_15,-74.538443,39.41261,7 W ROSEDALE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_80_16,-74.60055978,39.32245669,1 W ROSEDALE AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_80_18,-74.67130425,39.37167456,2207 SHORE RD,NORTHFIELD CITY,17,1910,1,RES1,3001 -0118_80_19,-74.6015185,39.433612,2 W YORKSHIRE AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_80_2,-74.64270461,39.39404613,111 W ROSEDALE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_80_20,-74.61969086,39.37232524,4 W YORKSHIRE AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_80_22,-74.64762832,39.3786896,12 W YORKSHIRE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_80_23,-74.64470672,39.40206903,18 W YORKSHIRE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_80_24,-74.64776114,39.40368464,20 W YORKSHIRE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_80_25,-74.62661454,39.42461281,24 W YORKSHIRE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_80_26,-74.638897,39.4298295,26 W YORKSHIRE AVE,NORTHFIELD CITY,17,1988,1,RES1,3001 -0118_80_28,-74.64701692,39.43093669,28 W. YORKSHIRE AVE,NORTHFIELD CITY,17,1991,1,GOV1,3004 -0118_80_29,-74.59341212,39.35036238,2200 WABASH AVE,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_80_4,-74.65143671,39.36895274,109 W ROSEDALE AVE,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_80_5,-74.63751,39.3815325,107 W ROSEDALE AVE,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_80_6,-74.6345401,39.38423908,105 W ROSEDALE AVE,NORTHFIELD CITY,17,1927,1,RES1,3001 -0118_80_7,-74.61725198,39.43296081,101 W ROSEDALE AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_80_9,-74.59497595,39.42263496,25 W ROSEDALE AVE,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_81_1,-74.62769684,39.43551083,231 RIDGEWOOD DR,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_81_10,-74.56140582,39.41506438,213 RIDGEWOOD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_81_11,-74.60825642,39.39296401,211 RIDGEWOOD DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_81_12,-74.608614,39.3228545,209 RIDGEWOOD DR,NORTHFIELD CITY,17,1959,1,GOV1,3004 -0118_81_13,-74.59302135,39.32766531,207 RIDGEWOOD DR,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_81_14,-74.4697615,39.4873265,205 RIDGEWOOD DR,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_81_15,-74.44892334,39.48780371,203 RIDGEWOOD DR,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_81_16,-74.59881758,39.37019572,201 RIDGEWOOD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_81_18.01,-74.46194015,39.35819228,2318 MERRITT DR,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_81_18.02,-74.62460155,39.38420533,2417 WABASH AVE,NORTHFIELD CITY,17,1984,1,AGR1,3004 -0118_81_18.03,-74.5777845,39.4070385,2419 WABASH AVE,NORTHFIELD CITY,17,1928,1,GOV1,3004 -0118_81_18.04,-74.5331785,39.450836,2330 MERRITT DR,NORTHFIELD CITY,17,1980,1,RES1,3001 -0118_81_18.05,-74.61598285,39.32229428,2421 WABASH AVE,NORTHFIELD CITY,17,1995,1,GOV1,3004 -0118_81_22,-74.70472348,39.41772927,2403 WABASH AVE,NORTHFIELD CITY,17,1941,1,RES1,3001 -0118_81_24,-74.68177944,39.41412145,2311 WABASH AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_81_25,-74.590982,39.3468265,2309 WABASH AVE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_81_26,-74.49365768,39.34217948,2305 WABASH AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_81_27,-74.60415376,39.34295131,2301 WABASH AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_81_29,-74.505433,39.33920627,2306 MERRITT DR,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_81_3,-74.6312945,39.4277805,227 RIDGEWOOD DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_81_30,-74.49628174,39.33474114,2308 MERRITT DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_81_31,-74.4903085,39.337288,2310 MERRITT DR,NORTHFIELD CITY,17,1967,1,REL1,3004 -0118_81_32,-74.48896908,39.33777717,2312 MERRITT DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_81_33,-74.49062015,39.33921792,2314 MERRITT DR,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_81_34,-74.458359,39.3536925,2316 MERRITT DR,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_81_4,-74.6283705,39.427507,225 RIDGEWOOD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_81_5,-74.67825896,39.37948309,223 RIDGEWOOD DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_81_6,-74.62289986,39.39348019,221 RIDGEWOOD DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_81_7,-74.62378033,39.38371401,219 RIDGEWOOD DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_81_8,-74.5906859,39.4296791,217 RIDGEWOOD DR,NORTHFIELD CITY,17,2012,1,RES1,3001 -0118_81_9,-74.5868785,39.413604,215 RIDGEWOOD DR,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_82_10,-74.56228097,39.44775168,2315 MERRITT DR,NORTHFIELD CITY,17,1972,1,RES1,3001 -0118_82_11,-74.55085921,39.46887103,2313 MERRITT DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_82_12,-74.5835395,39.443418,2311 MERRITT DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_82_13,-74.60808236,39.44048036,2309 MERRITT DR,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_82_14,-74.54785641,39.47459074,2307 MERRITT DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_82_15,-74.5548442,39.47683406,2305 MERRITT DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_82_16,-74.5622985,39.475884,2303 MERRITT DR,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_82_17,-74.568883,39.478239,2301 MERRITT DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_82_18,-74.4908415,39.3331855,2121 WABASH AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_82_19,-74.50843534,39.32384899,2302 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_82_20,-74.52305348,39.31638783,2304 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_82_21,-74.68449609,39.44377523,2306 SHEPHERD DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_82_22,-74.62468103,39.45869704,2308 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_82_23,-74.6231345,39.438915,2310 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_82_24,-74.6060505,39.5019595,2312 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_82_25,-74.58185246,39.47307464,2314 SHEPHERD DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_82_26,-74.55448192,39.47184373,2316 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_82_27,-74.58730323,39.48722723,2318 SHEPHERD DR,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_82_28,-74.663041,39.445382,2320 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_82_29,-74.431187,39.3657495,2322 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_82_3,-74.49234247,39.33672732,2331 MERRITT DR,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_82_30,-74.50567671,39.32395065,2324 SHEPHERD DR,NORTHFIELD CITY,17,1969,1,GOV1,3004 -0118_82_31,-74.68546015,39.49549015,2326 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_82_32,-74.73597041,39.43466273,2328 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_82_33,-74.825626,39.4117585,2330 SHEPHERD DR,NORTHFIELD CITY,,0,1,RES1,3001 -0118_82_4,-74.54101789,39.46017473,2322 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_82_5,-74.59998054,39.49262983,2320 NEW RD,NORTHFIELD CITY,,0,1,RES1,3002 -0118_82_6,-74.50904217,39.33801847,2329 MERRITT DR,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_82_7,-74.6240785,39.444684,2320 NEW RD REAR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_82_8.01,-74.4273125,39.3600825,2318 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_82_8.02,-74.663058,39.445798,2318 NEW RD REAR,NORTHFIELD CITY,17,1982,1,RES1,3001 -0118_82_9,-74.5873795,39.355241,2319 MERRITT DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_83_1,-74.70720411,39.42632075,2317 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_83_10,-74.85957646,39.56500416,2046 N SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_83_11,-74.70862375,39.58120577,2048 N SHEPHERD DR,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_83_12,-74.776506,39.600376,2052 N SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_83_3,-74.70177753,39.47799116,2315 SHEPHERD DR,NORTHFIELD CITY,17,1965,1,IND2,3002 -0118_83_4,-74.67496261,39.48441943,2313 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_83_5,-74.66380569,39.44806012,2311 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_83_6,-74.827919,39.3981975,2309 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_83_7,-74.80752898,39.38077583,2036 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_83_8,-74.75474784,39.43070164,2301 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_83_9,-74.81251207,39.41158465,2040 N SHEPHERD DR,NORTHFIELD CITY,17,1964,1,IND2,3002 -0118_84_1,-74.74991512,39.45206772,2306 NEW RD,NORTHFIELD CITY,,1968,1,RES1,3001 -0118_84_10,-74.51874399,39.5320199,2045 N SHEPHERD DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_84_11,-74.4913535,39.519737,2043 N SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_12,-74.494541,39.4923415,2041 N SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_14,-74.88143604,39.59345036,2037 N SHEPHERD DR,NORTHFIELD CITY,17,1960,1,REL1,3004 -0118_84_15,-74.84826623,39.59791946,2009 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_16,-74.7902835,39.6385905,2007 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_17,-74.7772845,39.6245385,2005 SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_18,-74.7818504,39.60991314,2001 SHEPHERD DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_84_2,-74.59624597,39.31039284,2061 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,GOV1,3004 -0118_84_20,-74.489055,39.4952805,2020 CEDARBRIDGE RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_84_22,-74.50766575,39.52712306,2024 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_23,-74.5369016,39.31296371,2026 CEDARBRIDGE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_84_24,-74.5955045,39.310192,2028 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_25,-74.60834915,39.31410345,2030 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_26,-74.734851,39.4400945,2038 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_27,-74.74800805,39.45189382,2040 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_28,-74.747527,39.446339,2042 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_29,-74.72663358,39.45927489,2044 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_3,-74.4608211,39.51155496,2059 SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_84_30,-74.75726873,39.44857547,2046 CEDARBRIDGE RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_84_31,-74.7125759,39.47407875,2048 CEDARBRIDGE RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_84_32,-74.9121225,39.5133335,2050 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_33,-74.93878069,39.51826758,2300 CEDARBRIDGE RD,NORTHFIELD CITY,17,1899,1,RES1,3001 -0118_84_34,-74.963744,39.5121735,2320 CEDARBRIDGE RD,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_84_35,-74.53546213,39.37774607,2322 CEDARBRIDGE RD,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_84_36,-74.5426635,39.3776115,2324 CEDARBRIDGE RD,NORTHFIELD CITY,16,1924,1,RES1,3001 -0118_84_37,-74.80755632,39.46421198,2300 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_84_4,-74.86507704,39.59266421,2057 SHEPHERD DR,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_84_5,-74.7555145,39.4300095,2055 N SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_6,-74.76092163,39.60786009,2053 N SHEPHERD DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_84_7,-74.71808839,39.43871265,2051 N SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_8,-74.59649564,39.30888017,2049 N SHEPHERD DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_84_9,-74.57713674,39.31273985,2047 N SHEPHERD DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_85_1,-74.56468008,39.44715769,2130 MERRITT DR,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_85_10,-74.6433149,39.43297089,5 W YORKSHIRE AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_85_11,-74.62697354,39.42091281,2115 SHORE RD,NORTHFIELD CITY,17,1860,1,RES1,3001 -0118_85_12,-74.580217,39.4435125,2126 MERRITT DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_85_13,-74.60667179,39.4379602,2124 MERRITT DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_85_15,-74.54124875,39.47551471,2120 MERRITT DR,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_85_16,-74.61220344,39.34730732,2015 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_85_18.01,-74.53790908,39.46251927,2005 SHORE RD,NORTHFIELD CITY,17,1866,1,RES1,3001 -0118_85_18.02,-74.58620366,39.48757802,2110 MERRITT DR,NORTHFIELD CITY,17,1973,1,RES1,3001 -0118_85_18.03,-74.55819929,39.47230092,2112 MERRITT DR,NORTHFIELD CITY,17,1974,1,RES1,3001 -0118_85_18.04,-74.5575105,39.476847,2114 MERRITT DR,NORTHFIELD CITY,17,1976,1,RES1,3001 -0118_85_2,-74.60708467,39.3452165,2104 WABASH AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_85_3,-74.4920326,39.33765867,57 W YORKSHIRE AVE,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_85_4,-74.50472399,39.34122267,55 YORKSHIRE AVE,NORTHFIELD CITY,17,1962,1,GOV1,3004 -0118_85_5,-74.4932805,39.337749,35 W YORKSHIRE AVE,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_85_6,-74.46107417,39.35696295,25 W YORKSHIRE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_85_7,-74.6021315,39.349912,21 W YORKSHIRE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_85_8,-74.5966418,39.34572497,15 W YORKSHIRE AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_85_9,-74.54232896,39.43632379,11 W YORKSHIRE AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_86_1,-74.87740348,39.59374834,1924 CEDARBRIDGE RD,NORTHFIELD CITY,17,1944,1,RES1,3001 -0118_86_10,-74.71941601,39.43032947,2115 MERRITT DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_86_11,-74.68617653,39.50047967,2113 MERRITT DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_86_12,-74.49737814,39.33139129,1915 MERRITT DR,NORTHFIELD CITY,17,1923,1,RES1,3001 -0118_86_13,-74.76236886,39.43106185,1907 MERRITT DR,NORTHFIELD CITY,17,1820,1,RES1,3001 -0118_86_14,-74.72046791,39.57795564,1900 CEDARBRIDGE RD,NORTHFIELD CITY,17,1914,1,RES1,3001 -0118_86_15,-74.719297,39.638932,1904 CEDARBRIDGE RD,NORTHFIELD CITY,17,1997,1,RES1,3001 -0118_86_16,-74.775261,39.6076005,1908 CEDARBRIDGE RD,NORTHFIELD CITY,17,1927,1,RES1,3001 -0118_86_17,-74.7748615,39.6251465,1912 CEDARBRIDGE RD,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_86_2,-74.83711257,39.41567519,2004 WABASH AVE,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_86_4,-74.489391,39.333118,2008 WABASH AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_86_5,-74.83286157,39.64256785,2125 MERRITT DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_86_6,-74.442804,39.366786,2123 MERRITT DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_86_7,-74.52593127,39.3128357,2121 MERRITT DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_86_8,-74.81194948,39.37815337,2119 MERRITT DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_86_9,-74.8126935,39.3732875,2117 MERRITT DR,NORTHFIELD CITY,17,1951,1,RES1,3001 -0118_87_2,-74.5808305,39.312551,1905 CEDARBRIDGE RD,NORTHFIELD CITY,17,1930,1,RES1,3001 -0118_87_4,-74.95055656,39.49271334,100 W MILL RD,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_88_1,-74.648465,39.3774425,20 JUNIPER AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_10,-74.6353175,39.5324715,2035 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_11,-74.57055268,39.54745864,2033 CEDARBRIDGE RD,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_88_12,-74.57365864,39.50758495,2031 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_13,-74.85186781,39.48519534,2029 CEDARBRIDGE RD,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_88_14,-74.86048988,39.43674035,2027 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_15,-74.53241102,39.37846516,2025 CEDARBRIDGE RD,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_88_16,-74.54847099,39.37983553,2023 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_17,-74.949055,39.5049595,2021 CEDARBRIDGE RD,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_88_18,-74.92661551,39.51955783,1901 WABASH AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_88_19,-74.53707185,39.52695103,210 WEST MILL RD,NORTHFIELD CITY,17,1932,1,RES1,3001 -0118_88_2,-74.798348,39.6336225,22 JUNIPER AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_88_20,-74.602857,39.418729,220 W MILL RD,NORTHFIELD CITY,17,1924,1,RES1,3001 -0118_88_21,-74.64853816,39.53780182,230 W MILL RD,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_88_22,-74.60836216,39.59324482,232 MILL RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_88_23,-74.64297461,39.62229159,244 W MILL RD,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_88_25,-74.6718555,39.5466025,2 FORREST DR,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_88_26,-74.59036934,39.42905199,4 FORREST DR,NORTHFIELD CITY,17,1950,1,IND2,3004 -0118_88_27,-74.60458013,39.4069398,6 FORREST DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_88_28,-74.582322,39.363253,8 FORREST DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_88_29,-74.60320782,39.36466152,10 FORREST DR,NORTHFIELD CITY,17,1949,1,RES1,3001 -0118_88_3,-74.64930219,39.62747842,24 JUNIPER AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_88_30,-74.61168845,39.40232319,12 FORREST DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_88_31,-74.57903846,39.42433284,14 FORREST DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_88_32,-74.64096438,39.53210637,16 FORREST DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_88_33,-74.650598,39.534106,18 FORREST DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_88_34,-74.60777982,39.58890756,20 FORREST DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_35,-74.73606659,39.55150484,22 FORREST DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_36,-74.80307941,39.63049815,24 FORREST DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_37,-74.8831605,39.4880465,26 FORREST DR,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_4,-74.65168982,39.52966122,28 JUNIPER AVE,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_88_5,-74.58140656,39.3607258,30 JUNIPER AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_88_6,-74.8721505,39.4560445,32 JUNIPER AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_88_7,-74.87588,39.44410527,2041 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_88_8,-74.61309163,39.41895232,2039 CEDARBRIDGE RD,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_88_9,-74.59735689,39.36334843,2037 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,COM3,3004 -0118_89_1,-74.7393085,39.6506095,10 JUNIPER AVE,NORTHFIELD CITY,17,1953,1,RES1,3001 -0118_89_10,-74.81614444,39.5210079,1 FORREST DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_89_11,-74.92522124,39.47558051,246 MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_89_12,-74.9156765,39.5137995,248 MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_89_13,-74.6328465,39.3891605,250 MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_89_14,-74.63233666,39.41702835,252 MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_89_15,-74.62866071,39.43190086,254 MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_89_16,-74.93723295,39.52500081,256 MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_89_17,-74.887668,39.5680755,258 MILL RD,NORTHFIELD CITY,17,1947,1,RES1,3001 -0118_89_18,-74.782174,39.6569405,260 MILL RD,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_89_19,-74.80143034,39.65751996,262 MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_89_2,-74.95095033,39.51822724,17 FORREST DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_89_3,-74.62417044,39.4237966,15 FORREST DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_89_4,-74.63135482,39.4090089,13 FORREST DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_89_5,-74.62828615,39.39291419,11 FORREST DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_89_6,-74.90691891,39.49299717,9 FORREST DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_89_7,-74.895923,39.48285,7 FORREST DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_89_8,-74.82175219,39.63777822,5 FORREST DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_89_9,-74.86497897,39.60222815,3 FORREST DR,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_9.01_1,-74.493551,39.33381,3111 CEDARBRIDGE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_9.01_10,-74.78352108,39.64737703,3015 CEDARBRIDGE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_11,-74.43160413,39.36701334,11 DELMAR DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_12,-74.52657992,39.31523964,9 DELMAR DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_13,-74.5061455,39.3313565,7 DELMAR DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_14,-74.51851157,39.32457886,5 DELMAR DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_15,-74.79895458,39.64917734,3 DELMAR DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_16,-74.949476,39.512093,3001 CEDARBRIDGE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_18,-74.56276551,39.3622237,2700 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_19,-74.59678113,39.34200985,2620 ZION RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_9.01_2,-74.49279825,39.33094545,3109 CEDARBRIDGE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_20,-74.5944085,39.3444265,2618 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_21,-74.59610631,39.35156393,2606 ZION RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_9.01_22,-74.4825295,39.341521,2604 ZION RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_9.01_23,-74.479443,39.336814,2602 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_25,-74.468994,39.345566,2506 ZION RD,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_9.01_26,-74.4687495,39.3434935,2504 ZION RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_27,-74.48438583,39.34888606,2500 ZION RD,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_9.01_28.01,-74.486242,39.346444,2424 ZION RD,NORTHFIELD CITY,17,1934,1,RES1,3001 -0118_9.01_28.02,-74.5568676,39.36246471,1 CEDAR DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_9.01_28.03,-74.4270955,39.3674635,3 CEDAR DR,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_9.01_29,-74.9754285,39.513217,2611 CEDARBRIDGE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_3,-74.50586793,39.33161232,3107 CEDARBRIDGE RD,NORTHFIELD CITY,17,1966,1,RES3A,3004 -0118_9.01_4,-74.4990515,39.3306805,3105 CEDARBRIDGE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_9.01_5,-74.420952,39.36776,3103 CEDARBRIDGE RD,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.01_6,-74.818203,39.653117,3101 CEDARBRIDGE RD,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_9.01_7,-74.44320213,39.35671979,3023 CEDARBRIDGE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_9.01_8,-74.8170715,39.6532555,3021 CEDARBRIDGE RD,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_9.01_9,-74.8101875,39.6421015,3019 CEDARBRIDGE RD,NORTHFIELD CITY,17,1968,1,RES1,3001 -0118_9.02_30.01,-74.64877792,39.43133581,2414 ZION RD,NORTHFIELD CITY,16,1935,1,RES1,3001 -0118_9.02_30.02,-74.6027109,39.34967568,2 CEDAR DR,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_9.02_30.03,-74.496223,39.333161,4 CEDAR DR,NORTHFIELD CITY,17,1987,1,RES1,3001 -0118_9.02_30.04,-74.79178176,39.67701346,6 CEDAR DR,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_9.02_30.05,-74.63129014,39.4339637,8 CEDAR DR,NORTHFIELD CITY,17,1986,1,RES1,3001 -0118_9.02_31,-74.54344144,39.45832304,2301 RAYMOND DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_9.02_32,-74.47142098,39.34133126,2303 RAYMOND DR,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_9.02_33,-74.49631718,39.32908398,2305 RAYMOND DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.02_34,-74.8063821,39.64419493,2307 RAYMOND DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.02_35,-74.9357815,39.521425,2309 RAYMOND DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_9.02_36,-74.64555933,39.39070402,2311 RAYMOND DR,NORTHFIELD CITY,17,1964,1,RES1,3001 -0118_90_1,-74.45537833,39.35273451,2000 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_90_10,-74.8279085,39.6063305,27 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_11,-74.9252242,39.50772888,25 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_12,-74.633516,39.39835133,23 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_13,-74.656779,39.402514,21 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_14,-74.94449565,39.5117476,19 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_15,-74.9497675,39.530894,17 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_16,-74.794198,39.6648795,15 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_17,-74.8191135,39.64871587,13 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_18,-74.49256135,39.33408898,11 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_19,-74.558448,39.3635045,300 W MILL RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_90_4,-74.53853483,39.5621905,2055 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_90_5,-74.60089235,39.51011645,2051 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_90_6,-74.87548595,39.49028315,2045 CEDARBRIDGE RD,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_90_7,-74.60116608,39.41550813,33 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_8,-74.6422065,39.5264945,31 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_90_9,-74.8087628,39.55446314,29 JUNIPER DR,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_91_1,-74.37548876,39.41671541,1800 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_92_1,-74.51950618,39.38900283,1700 ZION RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_92_10,-74.39413364,39.39158896,306 CLARK PLC,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_92_11,-74.61167024,39.36539606,308 CLARK PLC,NORTHFIELD CITY,17,1967,1,RES1,3001 -0118_92_12,-74.51004165,39.33771452,310 JUNIPER AVE,NORTHFIELD CITY,17,1960,1,COM3,3004 -0118_92_13,-74.552469,39.470945,263 W MILL RD,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_92_14,-74.703961,39.429672,261 W MILL RD,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_92_15,-74.4823465,39.344213,303 W MILL RD,NORTHFIELD CITY,17,1884,1,RES1,3001 -0118_92_16,-74.46903734,39.34509699,301 MILL RD,NORTHFIELD CITY,17,1929,1,RES1,3001 -0118_92_17,-74.48370564,39.33614331,299 MILL RD,NORTHFIELD CITY,17,1929,1,RES1,3001 -0118_92_18,-74.4733385,39.3411415,259 W MILL RD,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_92_19,-74.59530435,39.34047505,257 MILL RD,NORTHFIELD CITY,16,1934,1,RES1,3001 -0118_92_2,-74.380512,39.413944,309 CLARK PLC,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_20,-74.5575195,39.3675555,251 W MILL RD,NORTHFIELD CITY,16,1907,1,RES1,3001 -0118_92_21,-74.49237393,39.33115733,247 W MILL RD,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_92_22,-74.4300695,39.3648055,243 W MILL RD,NORTHFIELD CITY,16,1926,1,REL1,3004 -0118_92_23,-74.82767224,39.64193469,241 W MILL RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_92_25,-74.4954965,39.3286675,1823 WABASH AVE,NORTHFIELD CITY,,0,1,RES1,3001 -0118_92_26,-74.94912099,39.49926976,227 MILL RD,NORTHFIELD CITY,16,1922,1,RES1,3001 -0118_92_27,-74.69579769,39.61957307,211 MILL RD,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_92_3,-74.3677325,39.403373,307 CLARK PLC,NORTHFIELD CITY,17,1963,1,RES3A,3001 -0118_92_35,-74.57733155,39.35228927,1 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_36,-74.5997901,39.34346275,3 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_37,-74.4839985,39.338814,5 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_38,-74.466536,39.344689,7 LOCUST DR,NORTHFIELD CITY,17,1952,1,COM4,3004 -0118_92_39,-74.47961017,39.345923,9 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_4,-74.66214133,39.34802232,305 CLARK PLC,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_92_41,-74.55259819,39.47475265,13 LOCUST DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_92_42,-74.5824635,39.4756235,17 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_43,-74.4886205,39.337351,19 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_44,-74.38079673,39.40166036,23 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_45,-74.6268345,39.356865,25 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_46,-74.3677645,39.407854,27 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_47,-74.3812211,39.41472732,29 LOCUST DR,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_48,-74.5207755,39.39942,1606 ZION RD,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_92_49.01,-74.51745253,39.39611932,1622 ZION RD,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_92_49.02,-74.52534607,39.40047786,1620 ZION RD,NORTHFIELD CITY,17,1989,1,RES1,3001 -0118_92_5,-74.391215,39.3890465,303 CLARK PLC,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_92_50,-74.51699387,39.40169911,1626 ZION RD,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_92_6,-74.497476,39.336939,301 CLARK PLC,NORTHFIELD CITY,17,1963,1,RES1,3001 -0118_92_7,-74.48178473,39.33786265,300 CLARK PLC,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_92_8,-74.55692974,39.46839594,302 CLARK PLC,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_92_9,-74.466407,39.3568135,304 CLARK PLC,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_93_1,-74.39950266,39.3883123,20 LOCUST DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_10,-74.37719,39.398427,1 WILLOW DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_11,-74.607737,39.4219775,3 WILLOW DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_12,-74.63751559,39.3823343,7 WILLOW DR,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_93_13,-74.42313644,39.37567182,9 WILLOW DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_14,-74.36598192,39.40712116,11 WILLOW DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_15,-74.37051327,39.41867671,15 WILLOW DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_16,-74.38203373,39.41833158,17 WILLOW DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_17,-74.51493981,39.38762546,22 LOCUST DR,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_93_2,-74.63961234,39.33778897,18 LOCUST DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_3,-74.60265031,39.43207992,16 LOCUST DR,NORTHFIELD CITY,17,1954,1,GOV1,3004 -0118_93_4,-74.3820825,39.39469983,14 LOCUST DR,NORTHFIELD CITY,17,1957,1,RES1,3001 -0118_93_5,-74.3855155,39.3934135,12 LOCUST DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_6,-74.49963683,39.33621104,10 LOCUST DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_7,-74.494905,39.3414555,6 LOCUST DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_8,-74.56530963,39.50121964,4 LOCUST DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_93_9,-74.54165044,39.4938713,2 LOCUST DR,NORTHFIELD CITY,17,1959,1,RES1,3001 -0118_94_1,-74.5042039,39.41054781,14 WILLOW DR,NORTHFIELD CITY,17,1952,1,GOV1,3004 -0118_94_2,-74.5224875,39.3977315,12 WILLOW DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_94_3,-74.5295725,39.389736,10 WILLOW DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_94_4,-74.45080485,39.37393768,6 WILLOW DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_94_5,-74.38134391,39.41866089,4 WILLOW DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_94_6,-74.374161,39.417309,2 WILLOW DR,NORTHFIELD CITY,17,1952,1,RES1,3001 -0118_95_1,-74.71698455,39.3814524,1650 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_95_10,-74.4968735,39.331269,1605 WELLS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_95_11,-74.4556658,39.49599547,1603 WELLS AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_95_12,-74.49096137,39.53395095,1601 WELLS AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_95_14,-74.4718915,39.482168,1630 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_95_15,-74.48780567,39.49408273,1602 NEW RD,NORTHFIELD CITY,,1965,1,GOV1,3004 -0118_95_16,-74.59314392,39.32876018,1600 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_95_17,-74.668497,39.3564355,1520 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_95_18,-74.612002,39.321178,407 PARK LANE,NORTHFIELD CITY,17,1950,1,RES1,3001 -0118_95_19,-74.58923782,39.33355748,405 PARK LANE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_95_2,-74.6482595,39.455185,1717 ZION RD,NORTHFIELD CITY,17,1850,1,RES1,3001 -0118_95_20,-74.60763916,39.31697248,403 PARK LANE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_95_21,-74.49534353,39.52442361,401 PARK LANE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_95_22,-74.5038375,39.3306385,400 PARK LANE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_95_23,-74.46675946,39.49257456,404 PARK LANE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_95_24,-74.50843083,39.33131954,1602 WELLS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_95_25,-74.49949107,39.33577229,1604 WELLS AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_95_26,-74.52711305,39.44929959,1606 WELLS AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_95_32,-74.62485294,39.48733735,1629 ZION RD,NORTHFIELD CITY,17,1920,1,RES1,3001 -0118_95_34,-74.489869,39.4566695,1611 ZION RD,NORTHFIELD CITY,17,1940,1,RES1,3001 -0118_95_35.01,-74.38276841,39.39370735,1601 ZION RD,NORTHFIELD CITY,17,1975,1,RES1,3001 -0118_95_36,-74.3754155,39.398215,1501 ZION RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_95_38,-74.46670445,39.49237264,1501 TIN RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_95_44,-74.507723,39.4941705,318 NORTHFIELD AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_95_47,-74.6022275,39.3124785,322 NORTHFIELD AVE,NORTHFIELD CITY,17,1924,2,RES1,3001 -0118_95_48,-74.59856654,39.32332963,402 NORTHFIELD AVE,NORTHFIELD CITY,16,1926,1,RES1,3004 -0118_95_49,-74.56715206,39.34675671,406 NORTHFIELD AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_95_5,-74.43287818,39.49389735,1615 WELLS AVE,NORTHFIELD CITY,17,1962,1,RES1,3001 -0118_95_50,-74.55365957,39.36088889,414 NORTHFIELD AVE,NORTHFIELD CITY,16,1929,1,RES1,3001 -0118_95_51,-74.7520183,39.29900114,418 NORTHFIELD AVE,NORTHFIELD CITY,16,1920,1,RES1,3001 -0118_95_52.01,-74.53534739,39.37278963,428 NORTHFIELD AVE,NORTHFIELD CITY,17,1965,1,RES1,3001 -0118_95_52.02,-74.55991054,39.37201048,430 NORTHFIELD AVE,NORTHFIELD CITY,17,1954,1,RES1,3001 -0118_95_54,-74.578642,39.3824815,1506 NEW RD,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_95_55,-74.53456243,39.40687214,1500 NEW RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_95_6,-74.6854925,39.4898045,1613 WELLS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_95_7,-74.46299074,39.45533832,1611 WELLS AVE,NORTHFIELD CITY,17,1961,1,RES1,3001 -0118_95_8,-74.51203525,39.45179853,1609 WELLS AVE,NORTHFIELD CITY,17,1960,1,GOV1,3004 -0118_95_9,-74.49836949,39.33644266,1607 WELLS AVE,NORTHFIELD CITY,17,1960,1,RES1,3001 -0118_96_1,-74.48669698,39.44012016,1524 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_96_2,-74.38583347,39.39260398,1500 TILTON RD,NORTHFIELD CITY,,1970,1,RES1,3001 -0118_96_6,-74.51904813,39.44344499,216 NORTHFIELD AVE,NORTHFIELD CITY,,1952,1,RES1,3001 -0118_97_1,-74.4333303,39.48677266,1400 ZION RD,NORTHFIELD CITY,17,1920,1,GOV1,3004 -0118_97_10,-74.37658291,39.41701471,1612 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_97_11,-74.36552357,39.40723885,1620 TILTON RD,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_97_12.01,-74.622763,39.382975,1622 TILTON RD,NORTHFIELD CITY,,1950,2,RES1,3001 -0118_97_13,-74.50284783,39.33794152,1630 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_97_14,-74.44663422,39.35435705,1640 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_97_16,-74.36224766,39.40804697,1413 WABASH AVE,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_97_17,-74.3662525,39.413436,1411 WABASH AVE,NORTHFIELD CITY,17,1946,1,RES1,3001 -0118_97_18,-74.52822894,39.39081996,1407 WABASH AVE,NORTHFIELD CITY,17,1970,1,RES1,3001 -0118_97_19,-74.524123,39.3951645,1405 WABASH AVE,NORTHFIELD CITY,17,1966,1,RES1,3001 -0118_97_6,-74.50622192,39.43203488,1410 ZION RD,NORTHFIELD CITY,17,1894,1,RES1,3001 -0118_97_7,-74.49756,39.4306505,1416 ZION RD,NORTHFIELD CITY,17,1948,1,RES1,3001 -0118_97_8,-74.49437555,39.42584459,TILTON & ZION RDS,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_98_1,-74.6362085,39.5290715,47 MILL RD,NORTHFIELD CITY,,0,1,GOV1,3004 -0118_98_12,-74.64116864,39.37672467,1723 TILTON RD,NORTHFIELD CITY,16,1926,1,RES1,3001 -0118_98_14,-74.6335845,39.4237875,1715 TILTON RD,NORTHFIELD CITY,17,1926,1,RES1,3001 -0118_98_15,-74.94979818,39.53548699,1711 TILTON RD,NORTHFIELD CITY,,0,1,RES1,3001 -0118_98_2,-74.924781,39.5108885,31 W MILL RD,NORTHFIELD CITY,17,1956,1,RES1,3001 -0118_98_3,-74.72446806,39.45832171,29 W MILL RD,NORTHFIELD CITY,17,1956,1,REL1,3004 -0118_98_4,-74.5342605,39.30471,27 MILL RD,NORTHFIELD CITY,17,1928,1,GOV1,3004 -0118_98_5.01,-74.51307189,39.48464271,17 W. MILL RD,NORTHFIELD CITY,17,1993,1,RES1,3001 -0118_98_6,-74.78495054,39.61203527,11 MILL RD,NORTHFIELD CITY,17,1894,1,GOV1,3004 -0118_98_7,-74.910046,39.5360895,1821 TILTON RD,NORTHFIELD CITY,17,1918,1,RES1,3001 -0118_98_8,-74.86955137,39.45374484,1805 TILTON RD,NORTHFIELD CITY,17,1922,1,RES1,3001 -0118_98_9,-74.60167734,39.53219348,1801 TILTON RD,NORTHFIELD CITY,17,1900,1,RES1,3001 -0118_99_1,-74.587442,39.52105686,32 NORTHFIELD PLAZA,NORTHFIELD CITY,16,1923,1,RES1,3001 -0118_99_10,-74.7923645,39.616273,1823 SHORE RD,NORTHFIELD CITY,17,1928,1,COM1,3004 -0118_99_13,-74.74772709,39.44678595,1818 TILTON RD,NORTHFIELD CITY,17,1932,1,RES1,3001 -0118_99_2,-74.5660405,39.37634,24 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1958,1,RES1,3001 -0118_99_4,-74.72535689,39.45654019,18 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1955,1,RES1,3001 -0118_99_5,-74.72308519,39.45696055,4 NORTHFIELD PLAZA,NORTHFIELD CITY,17,1928,1,RES1,3001 -0118_99_7,-74.53434918,39.31338747,1807 SHORE RD,NORTHFIELD CITY,17,1948,1,GOV1,3004 -0118_99_9,-74.53060955,39.51214278,1811 SHORE RD,NORTHFIELD CITY,,0,1,RES1,3001 -0119_1_2.01,-74.78996926,39.64314662,1010 CRESSON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_1_2.02,-74.48954029,39.42012583,1001 FABIAN AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_1_2.03,-74.57982468,39.33086392,1007 FABIAN AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_10_1,-74.79779098,39.62581166,918 W ASHLAND AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_10_10,-74.50593476,39.43591032,1300 GARFIELD AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_10_11,-74.81862767,39.63573852,912 W ASHLAND AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_10_12,-74.75802,39.634186,911 FERNWOOD AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_10_17,-74.53562623,39.40422548,906 W ASHLAND AVE,PLEASANTVILLE CITY,15,1990,1,RES1,3001 -0119_10_18,-74.6355605,39.531125,907 FERNWOOD AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_10_23,-74.8092683,39.6512076,900 W ASHLAND AVE,PLEASANTVILLE CITY,15,1987,1,RES1,3001 -0119_10_28,-74.91890426,39.54052133,1309 MCCLELLAN AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_10_29,-74.57431332,39.41024454,1305 MCCLELLAN AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_10_3,-74.57670064,39.53319455,916 W ASHLAND AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_10_31,-74.94268325,39.51903504,901 FERNWOOD AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_10_5,-74.7245473,39.58294284,1308 GARFIELD AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_10_8,-74.50882566,39.45146046,1304 GARFIELD AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_100_1,-74.6824405,39.563634,242 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_10,-74.50740789,39.44787404,22 N THIRD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_11,-74.48619019,39.43834102,24 N THIRD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_12,-74.869502,39.489746,29 VOLA LANE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_100_13,-74.71584093,39.5783874,226 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_100_14,-74.7752655,39.5919925,222 W WASHINGTON AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_100_15,-74.76055733,39.63885267,210 W WASHINGTON AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_100_16,-74.79459185,39.62780146,208 W WASHINGTON AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_100_17,-74.87730515,39.59704855,206 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_100_18,-74.880749,39.592226,204 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_100_19,-74.78629634,39.63583048,200 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_100_2,-74.65767983,39.552137,236 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_100_20,-74.660875,39.5489425,211 ABBEY LANE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_21,-74.68284262,39.55748758,209 ABBEY LANE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_22,-74.596604,39.586592,207 ABBEY LANE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_23,-74.6953205,39.5879365,205 ABBEY LANE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_100_24,-74.7764295,39.62025194,5 N SECOND ST,PLEASANTVILLE CITY,,1924,1,RES1,3001 -0119_100_25,-74.7952775,39.538158,9 N SECOND ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_100_26,-74.663771,39.6343655,15 N SECOND ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_29,-74.48960907,39.33881167,218 ABBEY LANE,PLEASANTVILLE CITY,15,1915,1,IND2,3002 -0119_100_3,-74.67295842,39.5551197,232 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_100_30,-74.493579,39.3353305,214 ABBEY LANE,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_100_31,-74.50418655,39.33807935,212 ABBEY LANE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_100_32,-74.569353,39.527259,210 ABBEY LANE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_100_33,-74.64903232,39.51202412,208 ABBEY LANE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_34,-74.64771823,39.5411009,19 N SECOND ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_35,-74.6391615,39.524939,23 N SECOND ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_100_36,-74.6537995,39.5256285,6 N THIRD ST,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_100_37,-74.4981115,39.334321,12 N THIRD ST,PLEASANTVILLE CITY,27,1905,2,RES1,3001 -0119_100_38,-74.683981,39.50855,11 VOLA LANE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_100_39,-74.65042332,39.52740353,13 VOLA LANE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_100_4,-74.69954358,39.63352429,230 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_100_40,-74.84445433,39.54084378,218 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1870,1,RES1,3001 -0119_100_41,-74.79173563,39.61040758,212 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_100_42,-74.6434331,39.52874431,223 ABBEY LANE,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_100_43,-74.61464548,39.59916666,6 VOLA LANE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_100_44,-74.64177634,39.52646853,219 ABBEY LANE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_100_45,-74.64710877,39.53024669,217 ABBEY LANE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_100_46,-74.6907555,39.5148975,215 ABBEY LANE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_100_47,-74.47877595,39.34749015,222 ABBEY LANE,PLEASANTVILLE CITY,27,1920,2,RES3A,3001 -0119_100_48,-74.46413693,39.35435138,220 ABBEY LANE,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_100_49,-74.69451764,39.63242275,4 VOLA LANE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_100_5,-74.636685,39.5097925,8 N THIRD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_100_50,-74.60198077,39.53211482,17 VOLA LANE,PLEASANTVILLE CITY,27,1900,2,RES3B,3002 -0119_100_51,-74.37394772,39.40029001,10 N THIRD ST,PLEASANTVILLE CITY,27,1905,2,RES1,3002 -0119_100_52,-74.640262,39.5264505,15 VOLA LANE,PLEASANTVILLE CITY,27,1900,2,RES1,3001 -0119_100_53,-74.69921785,39.57772702,9 VOLA LANE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_100_54,-74.61967315,39.53100249,225 ABBEY LANE,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_100_7,-74.46239785,39.35649702,14 N THIRD ST,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_100_7.01,-74.49400314,39.33437916,21 VOLA LANE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_100_8,-74.482188,39.349598,18 N THIRD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_100_9,-74.5250275,39.452593,20 N THIRD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_101_1,-74.82363244,39.56758767,100-32 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3004 -0119_101_2,-74.86196551,39.59603833,8 N SECOND ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_101_3,-74.78867578,39.62571662,10 N SECOND ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_101_4,-74.801819,39.5448955,18 N SECOND ST,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_101_7,-74.7507905,39.60415,14 N SECOND ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_101_8,-74.6604044,39.63769149,22 N SECOND ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_102_1,-74.88452152,39.46343121,36 W WASHINGTON AVE,PLEASANTVILLE CITY,,1888,1,RES1,3001 -0119_102_10,-74.780964,39.672846,3 N MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_102_12,-74.7277785,39.458418,11 N MAIN ST & REAR,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_14,-74.91523449,39.50299917,23-25 N MAIN ST,PLEASANTVILLE CITY,,1905,1,RES1,3001 -0119_102_15,-74.89673601,39.48333083,31-35 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_16,-74.80265102,39.62677834,15 MARTIN LUTHER KING AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_18,-74.90593638,39.53845972,21 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_20,-74.82519412,39.62894412,37-39 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_21,-74.80927112,39.63645212,41-45 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_22,-74.8093805,39.6320725,27 N MAIN ST (R),PLEASANTVILLE CITY,15,1865,1,RES1,3001 -0119_102_23,-74.8029385,39.638449,35 N MAIN ST (R),PLEASANTVILLE CITY,15,1870,1,RES1,3001 -0119_102_24,-74.79189807,39.64070262,6 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_26,-74.7796105,39.6403235,8 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_27,-74.93260033,39.52043666,21 N MAIN ST (R),PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_28,-74.94487596,39.5370672,15 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_31,-74.9331385,39.4969905,29 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_5,-74.94041514,39.51794449,12 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_102_8,-74.71582967,39.57016088,18 N FIRST ST,PLEASANTVILLE CITY,,0,1,RES3B,3001 -0119_103_1,-74.80018111,39.64726137,2 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_103_16,-74.91825908,39.51029583,36-40 N MAIN ST,PLEASANTVILLE CITY,,1925,1,RES1,3001 -0119_103_18.01,-74.9074905,39.487167,44 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_103_2,-74.77956612,39.67117962,10-12 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_103_28,-74.897339,39.4792315,23 OLD TURNPIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_103_3,-74.7697755,39.6631725,16-18 N MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_103_30,-74.810547,39.6321315,11 OLD TURNPIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_103_31,-74.815023,39.6327975,50-52 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_103_34,-74.80084969,39.63366983,54 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_103_4,-74.7922835,39.640757,20 N MAIN ST,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_103_5,-74.699178,39.6401945,26 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_103_6,-74.88857488,39.54226128,30 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_104_1,-74.5016868,39.32578473,40 E WASHINGTON AVE,PLEASANTVILLE CITY,43,1910,3,RES1,3001 -0119_104_10,-74.50017985,39.32849675,64 E WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_104_11,-74.79507365,39.6397421,7 N FRANKLIN BLVD,PLEASANTVILLE CITY,,1900,1,RES1,3001 -0119_104_2,-74.4973792,39.33224996,52 E WASHINGTON AVE,PLEASANTVILLE CITY,43,1923,3,RES1,3001 -0119_104_3,-74.5127525,39.3254995,68 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_104_4,-74.463639,39.3466975,72 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_104_5,-74.47094416,39.3410872,76 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_104_6,-74.508523,39.462427,82 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_104_7,-74.50928783,39.3306515,3 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_105_1,-74.46153265,39.34847192,2 N FRANKLIN BLVD,PLEASANTVILLE CITY,,1995,1,RES1,3001 -0119_105_11,-74.523111,39.31752167,9 N CHESTER AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_105_2,-74.519041,39.31969517,10 N FRANKLIN BLVD,PLEASANTVILLE CITY,43,1900,2,RES1,3001 -0119_105_9,-74.4740015,39.485072,112 E WASHINGTON AVE,PLEASANTVILLE CITY,45,1922,2,RES1,3001 -0119_106_1,-74.39132584,39.38914052,2 N CHESTER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_106_10,-74.52636446,39.45527126,12 N CHESTER AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_106_2,-74.63134447,39.39019128,4 N CHESTER AVE,PLEASANTVILLE CITY,15,1915,1,RES3A,3001 -0119_106_3,-74.62159435,39.3745184,8 N CHESTER AVE,PLEASANTVILLE CITY,15,1951,1,RES3A,3001 -0119_106_4,-74.47126588,39.48490532,10 N CHESTER AVE,PLEASANTVILLE CITY,15,1945,1,COM1,3004 -0119_106_5,-74.40139932,39.38772247,1 N HAMPDEN CT,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_106_6,-74.40339147,39.38028123,3 N HAMPDEN CT,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_106_7,-74.63806427,39.40794164,5 N HAMPDEN CT,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_106_8,-74.64247272,39.37923004,7 N HAMPDEN CT,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_106_9,-74.59782729,39.43489943,11 N HAMPDEN CT,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_107_1,-74.36466305,39.41330253,2 N HAMPDEN CT,PLEASANTVILLE CITY,15,1903,1,RES1,3001 -0119_107_13,-74.49675103,39.43507436,300 E WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_107_3,-74.37165183,39.40778321,6 N HAMPDEN CT,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_107_4,-74.44320703,39.37192268,8 N HAMPDEN CT,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_107_5,-74.68121412,39.38602319,12 N HAMPDEN CT,PLEASANTVILLE CITY,15,1955,1,RES1,3001 -0119_108_11,-74.51363136,39.44210155,907 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_108_13,-74.60107285,39.36056391,65 SOMERSET AVE,PLEASANTVILLE CITY,16,1969,1,RES1,3001 -0119_109_14,-74.5283345,39.3883505,908 WESLEY AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_109_17,-74.82341093,39.38535233,902 WESLEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_109_21,-74.389457,39.3910655,901-923 W ADAMS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_11_1,-74.48356392,39.42944641,1214 GARFIELD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_11_10,-74.453201,39.3747875,1200 GARFIELD AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_11_11,-74.53084469,39.40355152,910 FERNWOOD AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_11_17,-74.47224704,39.45647451,904 FERNWOOD AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_11_20,-74.504784,39.4144655,907 TREMONT AVE,PLEASANTVILLE CITY,15,1938,1,RES1,3001 -0119_11_24,-74.5686665,39.5107905,1215 MCCLELLAN AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_11_26,-74.78167519,39.63181413,1213 MCCLELLAN AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_11_32,-74.8000865,39.4372535,1201 MCCLELLAN AVE,PLEASANTVILLE CITY,16,1948,1,RES3A,3002 -0119_11_4,-74.51356281,39.39520693,1208 GARFIELD AVE,PLEASANTVILLE CITY,15,2000,1,RES1,3001 -0119_110_1,-74.59294559,39.33177003,50 SOMERSET AVE,PLEASANTVILLE CITY,,1994,1,RES1,3001 -0119_110_23,-74.66345572,39.34431255,825 WESLEY AVE,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_110_27,-74.605153,39.428215,817 WESLEY AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_110_29,-74.63287394,39.41489482,811 WESLEY AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_110_32,-74.63530533,39.43033677,807 WESLEY AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_110_33,-74.64852503,39.34461134,805 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES3A,3004 -0119_110_34,-74.62668049,39.3612158,801 WESLEY AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_110_36,-74.55225042,39.46770322,727 WESLEY AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_110_38,-74.52943878,39.4630045,723 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES3A,3001 -0119_110_40,-74.58974185,39.32930702,717 WESLEY AVE,PLEASANTVILLE CITY,15,1927,1,RES3A,3001 -0119_110_43,-74.6118795,39.322636,711 WESLEY AVE,PLEASANTVILLE CITY,16,1930,1,RES3A,3001 -0119_110_45,-74.60118053,39.32693619,709 WESLEY AVE,PLEASANTVILLE CITY,15,1922,1,COM1,3004 -0119_110_46,-74.61163283,39.32593953,707 WESLEY AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_110_48,-74.5627053,39.35957285,701 WESLEY AVE,PLEASANTVILLE CITY,15,1916,1,RES1,3001 -0119_110_49,-74.52495421,39.31833865,623 WESLEY AVE,PLEASANTVILLE CITY,14,1910,1,RES3A,3001 -0119_110_5,-74.6371285,39.381804,56 SOMERSET AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_110_52,-74.5100455,39.329113,617 WESLEY AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_110_53,-74.5149054,39.32775781,615 WESLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_110_54,-74.51001892,39.32613183,613 WESLEY AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_110_56,-74.462667,39.3493425,609 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_110_57,-74.46149,39.347159,607 WESLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3002 -0119_110_58,-74.47558508,39.34020532,605 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_110_59,-74.47976279,39.34267624,603 WESLEY AVE,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_110_60,-74.48137019,39.33924633,519 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_110_61,-74.479541,39.3369285,515 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_110_62,-74.48676785,39.33545148,513 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_110_63,-74.48391414,39.33511216,511 WESLEY AVE,PLEASANTVILLE CITY,15,1935,1,RES3A,3001 -0119_110_65,-74.46553897,39.34557246,507 WESLEY AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_110_66,-74.46704085,39.345333,505 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_110_67,-74.4661605,39.343311,123 N NEW RD,PLEASANTVILLE CITY,14,1927,1,RES1,3001 -0119_110_69,-74.46542089,39.34328833,111 N NEW RD,PLEASANTVILLE CITY,14,1875,1,RES1,3001 -0119_110_70,-74.63752878,39.62259206,35 N NEW RD,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_110_73,-74.484883,39.3473975,600 MARTIN LUTHER KING AV,PLEASANTVILLE CITY,,0,1,RES1,3002 -0119_111_1,-74.4432925,39.492767,828 WESLEY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_111_10,-74.636937,39.3606045,810 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_111_11,-74.75248811,39.29890598,806 WESLEY AVE,PLEASANTVILLE CITY,16,2003,1,COM1,3004 -0119_111_14,-74.59888441,39.4358837,101 CHALFONTE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_111_14.01,-74.64481721,39.39590009,802 WESLEY AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_111_15,-74.5130805,39.399996,110 SOMERSET AVE,PLEASANTVILLE CITY,16,1999,1,RES3A,3001 -0119_111_18,-74.5071299,39.44772641,107 CHALFONTE AVE,PLEASANTVILLE CITY,16,1990,1,RES3A,3001 -0119_111_21,-74.37067737,39.40612935,835 W ADAMS AVE,PLEASANTVILLE CITY,16,1973,1,COM1,3004 -0119_111_27,-74.52870316,39.38239112,825 W ADAMS AVE,PLEASANTVILLE CITY,16,1980,1,COM1,3004 -0119_111_3,-74.51179891,39.44316384,824 WESLEY AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_111_30,-74.484769,39.431772,819 W ADAMS AVE,PLEASANTVILLE CITY,16,1976,1,RES1,3001 -0119_111_33,-74.52701101,39.41021783,811 W ADAMS AVE,PLEASANTVILLE CITY,16,1980,1,RES3A,3001 -0119_111_36,-74.50313568,39.43147628,807 W ADAMS AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_111_38,-74.49097934,39.44795085,803 W ADAMS AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_111_4,-74.49455452,39.42007425,822 WESLEY AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_111_5,-74.6025175,39.3658125,818 WESLEY AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_111_8,-74.62676021,39.35159934,816 WESLEY AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_111_9,-74.626469,39.3604005,812 WESLEY AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_112_11,-74.52094343,39.45870765,708 WESLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_112_12,-74.59334,39.3293625,101 BELMONT AVE,PLEASANTVILLE CITY,16,1976,1,RES1,3001 -0119_112_15,-74.64933939,39.39670015,103 OAK TERR,PLEASANTVILLE CITY,27,1930,2,RES1,3001 -0119_112_16,-74.6167015,39.4305815,105 OAK TERR,PLEASANTVILLE CITY,27,1930,2,RES1,3001 -0119_112_17,-74.75254615,39.30159908,107 OAK TERR,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_112_2,-74.63603932,39.41895088,726 WESLEY AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_112_29,-74.63253355,39.36252932,723 W ADAMS AVE,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_112_3,-74.59855368,39.36320245,720 WESLEY AVE,PLEASANTVILLE CITY,16,1997,1,RES3A,3001 -0119_112_31,-74.596514,39.429272,717 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_112_32,-74.61785646,39.43048187,715 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_112_33,-74.639575,39.38354457,713 W ADAMS AVE,PLEASANTVILLE CITY,43,1923,2,RES1,3001 -0119_112_36,-74.627315,39.4190725,705 W ADAMS AVE,PLEASANTVILLE CITY,16,1972,1,RES3B,3001 -0119_112_39,-74.63203071,39.42103457,111 BELMONT AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_112_40,-74.63720094,39.43047748,105-7 BELMONT AVE,PLEASANTVILLE CITY,45,1922,4,RES1,3001 -0119_112_44,-74.65680958,39.36751484,109 BELMONT AVE,PLEASANTVILLE CITY,45,1925,3,RES3A,3001 -0119_112_8,-74.629972,39.3647105,714 WESLEY AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_112_9,-74.53922142,39.46773273,712 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_113_1,-74.61171648,39.31969616,622 WESLEY AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_113_11,-74.51006528,39.32853363,600 WESLEY AVE,PLEASANTVILLE CITY,15,1928,1,COM1,3004 -0119_113_12,-74.60089769,39.31744903,104 BELMONT AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_113_16,-74.602427,39.330172,107 GLADSTONE AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_113_20,-74.638498,39.362506,625 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_113_20.01,-74.64556634,39.32755404,112 BELMONT AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3002 -0119_113_22,-74.758653,39.30546,619 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_113_25,-74.556207,39.469349,615 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_113_28,-74.59060232,39.33138244,609 W ADAMS AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3002 -0119_113_30,-74.593659,39.326464,605 W ADAMS AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_113_32,-74.61334569,39.32511318,601 W ADAMS AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_113_4,-74.6065275,39.326759,614 WESLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_113_5,-74.56769316,39.34446537,612 WESLEY AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_113_6,-74.5508235,39.367536,610 WESLEY AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_113_8,-74.556773,39.358632,606 WESLEY AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_114_1,-74.50962365,39.32772716,100 GLADSTONE AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_114_11,-74.604842,39.3331175,523 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_114_12,-74.60656722,39.33258467,517 W ADAMS AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_114_16,-74.72758021,39.44717131,511 W ADAMS AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_114_19,-74.730042,39.457585,505 W ADAMS AVE,PLEASANTVILLE CITY,15,1921,1,RES3A,3001 -0119_114_20,-74.57549959,39.35251935,125-127 N NEW RD,PLEASANTVILLE CITY,16,1947,1,RES1,3001 -0119_114_27,-74.520595,39.3194995,135-139 N NEW RD,PLEASANTVILLE CITY,,1920,1,RES1,3001 -0119_114_3,-74.4626565,39.3498645,512 WESLEY AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_114_4,-74.46451962,39.34785616,510 WESLEY AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_114_5,-74.47583008,39.34233189,508 WESLEY AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_114_7,-74.5748825,39.367059,504 WESLEY AVE,PLEASANTVILLE CITY,43,1928,2,RES1,3001 -0119_115_10,-74.56318032,39.40639007,401 W PLEASANT AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_115_3,-74.494629,39.3420155,36 N NEW RD,PLEASANTVILLE CITY,15,1924,1,RES3A,3001 -0119_115_4,-74.3998335,39.3872625,38 N NEW RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_115_6,-74.5138245,39.324966,415-17 W PLEASANT AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_115_7,-74.51103283,39.3207995,413 W PLEASANT AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_115_8,-74.60437181,39.38919593,409 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_115_9,-74.61238959,39.39879284,407 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_10,-74.76518944,39.3129307,120 N NEW RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_19,-74.55056283,39.359881,148 N NEW RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_2,-74.5535976,39.37759084,102 N NEW RD,PLEASANTVILLE CITY,14,1905,1,RES1,3001 -0119_116_21,-74.60405602,39.37233576,101 N FOURTH ST,PLEASANTVILLE CITY,16,1976,1,RES1,3001 -0119_116_23,-74.59719011,39.34142158,401 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_24,-74.550118,39.3836475,115 N FOURTH ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_25,-74.5466495,39.3730295,117 N FOURTH ST,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_116_28,-74.62945082,39.35412886,123 N FOURTH ST,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_116_3,-74.5466102,39.40112203,104 N NEW RD,PLEASANTVILLE CITY,15,1900,1,RES3A,3001 -0119_116_30,-74.63281938,39.36390772,127 N FOURTH ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_116_31,-74.62565816,39.35737772,129 N FOURTH ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_32,-74.61757847,39.36093547,131 N FOURTH ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_33,-74.55334433,39.36563699,411 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_116_34,-74.56405368,39.36185689,409 W ADAMS AVE,PLEASANTVILLE CITY,16,2000,1,RES3A,3001 -0119_116_36,-74.58272876,39.34132249,405 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_116_39,-74.5882565,39.377383,414 W PLEASANT AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_116_4,-74.56984135,39.3753604,106 N NEW RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_40,-74.53179372,39.38778801,412 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_116_42,-74.59061517,39.37570584,408 W PLEASANT AVE,PLEASANTVILLE CITY,14,1935,1,RES1,3001 -0119_116_45,-74.55327807,39.36878819,105 N FOURTH ST,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_116_52,-74.771018,39.3155005,119 N FOURTH ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_116_6,-74.57080536,39.37204443,110 N NEW RD,PLEASANTVILLE CITY,15,1908,1,RES1,3001 -0119_116_7,-74.5421815,39.381545,112 N NEW RD,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_116_8,-74.5433819,39.37332362,114 N NEW RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_116_9,-74.76633914,39.30793578,116 N NEW RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_117_1,-74.55527441,39.47706852,316 MARTIN LUTHER KING AV,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_117_13,-74.6182945,39.43711,309 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES3C,3001 -0119_117_15,-74.5827235,39.4758515,305 W PLEASANT AVE,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_117_16,-74.64548308,39.45114972,301 W PLEASANT AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_117_6,-74.762491,39.3516885,323 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_117_8,-74.54305833,39.37250999,319 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_117_9,-74.531947,39.3891445,317 W PLEASANT AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_118_1,-74.500688,39.329918,322 W PLEASANT AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_118_11,-74.57470412,39.42886849,103 N THIRD ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_118_12,-74.58973274,39.37104429,106 N FOURTH ST,PLEASANTVILLE CITY,15,2000,1,GOV1,3004 -0119_118_15,-74.5458765,39.3873065,114 N FOURTH ST,PLEASANTVILLE CITY,16,1969,1,RES1,3001 -0119_118_16,-74.55573566,39.37086724,116 N FOURTH ST,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_118_17,-74.54646529,39.37285263,118 N FOURTH ST,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_118_18,-74.54543,39.37814,120 N FOURTH ST,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_118_20,-74.76533738,39.3500578,124 N FOURTH ST,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_118_21,-74.80619478,39.36326437,126 N FOURTH ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_118_22,-74.63068714,39.35757521,128 N FOURTH ST,PLEASANTVILLE CITY,15,1922,1,GOV1,3004 -0119_118_24,-74.51523614,39.33058164,107 N THIRD ST,PLEASANTVILLE CITY,15,1927,1,GOV1,3004 -0119_118_27,-74.54171267,39.38173736,111 N THIRD ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_118_3,-74.5047975,39.3259495,318 W PLEASANT AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_118_33,-74.54498694,39.37454134,135 N THIRD ST,PLEASANTVILLE CITY,45,1928,2,RES1,3001 -0119_118_34,-74.57635122,39.36586996,325 W ADAMS AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_118_35,-74.59947744,39.36297134,323 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_118_37,-74.63178964,39.35103405,319 W ADAMS AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_118_39,-74.62498422,39.36360944,311 W ADAMS AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_118_40,-74.61684456,39.36427723,305 W ADAMS AVE,PLEASANTVILLE CITY,15,1924,1,GOV1,3004 -0119_118_41,-74.63406309,39.36561222,303 W ADAMS AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_118_42,-74.69698566,39.35606402,137 N THIRD ST,PLEASANTVILLE CITY,45,1925,3,GOV1,3004 -0119_118_46,-74.6104335,39.371256,310 W PLEASANT AVE (R),PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_118_8,-74.55509853,39.40691489,308 W PLEASANT AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_118_9,-74.56142851,39.41467137,306 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_119_10,-74.755216,39.4322125,219 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_119_11,-74.820296,39.3761845,217 W PLEASANT AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_119_12,-74.85262129,39.39119032,215 W PLEASANT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_119_13,-74.79718684,39.41946449,213 W PLEASANT AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_119_14,-74.71129705,39.43620466,211 W PLEASANT AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_119_18,-74.751897,39.4512155,205 W PLEASANT AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_119_19,-74.870431,39.5033625,27 N SECOND ST,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_119_2,-74.76850536,39.45962231,32 N THIRD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_119_21,-74.63189531,39.48328712,225 W PLEASANT AVE,PLEASANTVILLE CITY,27,1910,1,RES1,3001 -0119_119_22,-74.74880878,39.4521964,34 N THIRD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_119_26,-74.76228979,39.44626453,218 MARTIN LUTHER KING AV,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_119_27,-74.472414,39.4450915,31 N SECOND ST,PLEASANTVILLE CITY,14,1905,1,RES1,3001 -0119_119_3,-74.71811983,39.44173351,36 N THIRD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_119_5,-74.5193645,39.445589,25 N SECOND ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_119_7,-74.710173,39.471444,35 N SECOND ST,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_119_8,-74.67749771,39.4921935,223 W PLEASANT AVE,PLEASANTVILLE CITY,27,1910,1,RES1,3001 -0119_12_12,-74.39279894,39.38789585,815 W ASHLAND AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_12_18,-74.36979669,39.41464992,807 W ASHLAND AVE,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_12_21,-74.51242727,39.40534432,804 TILTON RD,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_12_23,-74.5876555,39.330754,800 TILTON RD,PLEASANTVILLE CITY,15,1999,1,COM3,3004 -0119_12_24,-74.46314134,39.46653271,1415 LINCOLN AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_12_28,-74.53891422,39.4077884,1407 LINCOLN AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_12_30,-74.48852903,39.42372927,1405 LINCOLN AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_12_31,-74.5206665,39.3989645,801 W ASHLAND AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3004 -0119_12_33,-74.60590813,39.4218233,802 TILTON RD,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_12_7,-74.4923536,39.33601817,819 W ASHLAND AVE,PLEASANTVILLE CITY,16,1981,1,RES1,3001 -0119_120_1,-74.60022993,39.41664088,226 W PLEASANT AVE,PLEASANTVILLE CITY,16,1981,1,RES1,3001 -0119_120_10,-74.44281526,39.37064137,114 N THIRD ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_120_12,-74.57753286,39.36843785,124 N THIRD ST,PLEASANTVILLE CITY,15,1903,1,RES1,3001 -0119_120_14,-74.541617,39.393345,130 N THIRD ST,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_120_15,-74.85326228,39.36754454,134 N THIRD ST,PLEASANTVILLE CITY,15,1914,1,RES1,3001 -0119_120_16,-74.53823192,39.38623814,107 N SECOND ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_120_17,-74.60049207,39.41670284,111 N SECOND ST,PLEASANTVILLE CITY,15,1918,1,IND2,3002 -0119_120_18,-74.554696,39.4065015,113 N SECOND ST,PLEASANTVILLE CITY,15,1949,1,RES1,3001 -0119_120_19,-74.52216091,39.32206033,117 N SECOND ST,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_120_2,-74.545245,39.3747075,222 W PLEASANT AVE,PLEASANTVILLE CITY,45,1880,2,RES1,3001 -0119_120_20,-74.50139843,39.32951885,123 N SECOND ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_120_21,-74.60225374,39.37023541,127 N SECOND ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_120_22,-74.59164389,39.38160674,133 N SECOND ST,PLEASANTVILLE CITY,15,1922,1,COM1,3004 -0119_120_24,-74.53712543,39.37386618,219 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_120_25,-74.76830138,39.3310438,217 W ADAMS AVE,PLEASANTVILLE CITY,45,1905,2,RES1,3001 -0119_120_26,-74.54396799,39.37511233,209 W ADAMS AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_120_28,-74.5553345,39.374434,205 W ADAMS AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_120_29,-74.54524484,39.38489232,207 W ADAMS AVE,PLEASANTVILLE CITY,15,1905,1,GOV1,3004 -0119_120_3,-74.56317,39.369894,218 W PLEASANT AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_120_32,-74.55253494,39.38519333,138 N THIRD ST,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_120_34,-74.5642135,39.3704095,137 N SECOND ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_120_37,-74.68311523,39.44486004,103 N SECOND ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_120_38,-74.76761729,39.31007932,140 N THIRD ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_120_39,-74.54957844,39.39422539,141 N SECOND ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_120_4,-74.541837,39.396487,214 W PLEASANT AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_120_42,-74.6431135,39.462857,210 W PLEASANT AVE,PLEASANTVILLE CITY,15,1875,1,RES1,3001 -0119_120_45,-74.54453709,39.37965256,109 N SECOND ST,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_120_46,-74.53164034,39.38403397,109.5 N SECOND ST,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_120_6,-74.59719969,39.43705646,204 W PLEASANT AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_120_7,-74.62654044,39.4924233,200 W PLEASANT AVE,PLEASANTVILLE CITY,45,1905,2,RES1,3001 -0119_120_8,-74.56377834,39.40824598,108 N THIRD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_120_9,-74.51583967,39.32106144,110 N THIRD ST,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_121_1,-74.4622685,39.352143,28 N SECOND ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_121_11,-74.4676835,39.3446205,33 N FIRST ST,PLEASANTVILLE CITY,15,1985,1,RES1,3001 -0119_121_12,-74.84873284,39.44180955,119 W PLEASANT AVE,PLEASANTVILLE CITY,15,1980,1,RES1,3001 -0119_121_14,-74.8731345,39.4822765,115 W PLEASANT AVE,PLEASANTVILLE CITY,15,1900,1,GOV1,3004 -0119_121_15,-74.6037025,39.377641,111 W PLEASANT AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_121_16,-74.6072395,39.391855,109 W PLEASANT AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_121_17,-74.5334145,39.4113535,107 W PLEASANT AVE,PLEASANTVILLE CITY,15,1903,1,RES1,3001 -0119_121_2,-74.49495907,39.45317405,30 N SECOND ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_121_20,-74.47963002,39.45486216,101 W PLEASANT AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_121_4,-74.46051817,39.35453305,110 MARTIN LUTHER KING AV,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_121_7,-74.63972634,39.5170603,25 N FIRST ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_121_8,-74.51272734,39.33784659,27 N FIRST ST,PLEASANTVILLE CITY,15,1922,1,GOV1,3004 -0119_121_9,-74.49684717,39.33532948,31 N FIRST ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_122_1,-74.66775412,39.46174511,104 N SECOND ST,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_122_10,-74.51679,39.322389,128 N SECOND ST,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_122_11,-74.50375012,39.33055366,132 N SECOND ST,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_122_12,-74.6045647,39.38310531,136 N SECOND ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_122_16,-74.53269817,39.3810054,123 N FIRST ST,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_122_17,-74.813575,39.3653375,125 N FIRST ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_122_18,-74.53568636,39.41407002,129 N FIRST ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_122_19,-74.519651,39.3217225,135 N FIRST ST,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_122_2,-74.70160457,39.49478785,116 W PLEASANT AVE,PLEASANTVILLE CITY,43,1900,2,RES1,3001 -0119_122_20,-74.50679366,39.32962601,139 N FIRST ST,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_122_21,-74.57311257,39.37265841,117 W ADAMS AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_122_23,-74.5638145,39.38906,113 W ADAMS AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_122_24,-74.58852733,39.37804883,111 W ADAMS AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_122_25,-74.5326822,39.38711609,109 W ADAMS AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_122_27,-74.5579905,39.3992545,105 W ADAMS AVE,PLEASANTVILLE CITY,45,1925,2,RES1,3001 -0119_122_28,-74.60317581,39.37356974,101 W ADAMS AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_122_29,-74.62860876,39.43807796,108 N SECOND ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_122_31,-74.5879782,39.41425004,127 N FIRST ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_122_34,-74.537765,39.3818715,118 N SECOND ST,PLEASANTVILLE CITY,27,1910,2,RES1,3001 -0119_122_35,-74.82151215,39.39004989,118 W PLEASANT AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_122_5,-74.55744215,39.3978387,101 N FIRST ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_122_6,-74.59982813,39.46195075,112 N SECOND ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_122_7,-74.53996843,39.38611565,114 N SECOND ST,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_122_8,-74.81590884,39.36055467,120 N SECOND ST,PLEASANTVILLE CITY,27,1910,2,RES1,3001 -0119_122_9,-74.56947239,39.41773247,122 N SECOND ST,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_123_1,-74.644713,39.5390755,40 MARTIN LUTHER KING AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_123_10,-74.66734071,39.5818922,28-30 MARTIN LUTHER KING,PLEASANTVILLE CITY,,1880,1,RES1,3001 -0119_123_11,-74.80949034,39.53086902,67 N MAIN ST (R),PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_123_12,-74.64783945,39.57020816,69 N MAIN ST,PLEASANTVILLE CITY,,1900,1,REL1,3004 -0119_123_16,-74.68488884,39.55012603,85-91 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_123_17,-74.50519293,39.33861466,33 W PLEASANT AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_123_18,-74.657427,39.6303915,26 MARTIN LUTHER KING AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_123_19,-74.69962632,39.63858916,24 MARTIN LUTHER KING AVE,PLEASANTVILLE CITY,45,1905,2,RES1,3001 -0119_123_2,-74.481618,39.347319,41 W PLEASANT AVE,PLEASANTVILLE CITY,15,1916,1,COM1,3004 -0119_123_20,-74.799672,39.520733,22 MARTIN LUTHER KING AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_123_21,-74.80935863,39.56247705,18 MARTIN LUTHER KING AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_123_23,-74.85248923,39.59073138,10 MARTIN LUTHER KING AVE,PLEASANTVILLE CITY,,1950,1,RES1,3001 -0119_123_24,-74.8076704,39.61647575,47-51 N MAIN ST,PLEASANTVILLE CITY,,1920,1,RES1,3001 -0119_123_27,-74.8704975,39.603202,53 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_123_28,-74.78848888,39.63203329,61 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_123_29,-74.60578853,39.50732966,30 N FIRST ST,PLEASANTVILLE CITY,45,1948,2,RES1,3001 -0119_123_3,-74.49590953,39.33774184,37 W PLEASANT AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_123_30,-74.761232,39.630443,67 N MAIN ST,PLEASANTVILLE CITY,,1920,1,RES1,3001 -0119_123_31,-74.78144766,39.63647002,10 MARTIN LUTHER KING (R),PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_123_4,-74.373746,39.3983495,31 W PLEASANT AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3004 -0119_123_5,-74.59811,39.523454,27 W PLEASANT AVE,PLEASANTVILLE CITY,43,1910,3,RES1,3001 -0119_123_6,-74.63832593,39.52809989,23 W PLEASANT AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_123_7,-74.65060649,39.52378984,15 W PLEASANT AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_123_8,-74.65289665,39.53221446,11 W PLEASANT AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_123_9,-74.64670792,39.54911935,9 W PLEASANT AVE,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_124_1,-74.59767375,39.38239739,36 W PLEASANT AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_124_10,-74.755616,39.433525,25 LAKE PL,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_124_11,-74.83654068,39.38185194,23 LAKE PL,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_124_12,-74.8426756,39.39773719,21 LAKE PL,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_124_13,-74.80523882,39.43036678,19 LAKE PL,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_124_14,-74.7232055,39.43697443,17 LAKE PL,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_124_15,-74.7549715,39.44910717,106 N FIRST ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_124_16,-74.7509665,39.452705,108 N FIRST ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_124_17,-74.72751641,39.45150071,112 N FIRST ST,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_124_18,-74.61876835,39.37864824,105 LINDEN AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_124_2,-74.6155125,39.3961145,40 W PLEASANT AVE,PLEASANTVILLE CITY,15,1939,1,RES1,3001 -0119_124_22,-74.8606545,39.485883,102 N FIRST ST,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_124_23,-74.72740914,39.48589245,104 N FIRST ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_124_24,-74.5837455,39.4022415,42 W PLEASANT AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_124_28,-74.511345,39.442857,103 LINDEN AVE,PLEASANTVILLE CITY,45,1920,2,RES1,3002 -0119_124_3,-74.571622,39.4053615,30 W PLEASANT AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_124_4,-74.47189661,39.34436516,24 W PLEASANT AVE,PLEASANTVILLE CITY,45,1900,2,RES1,3001 -0119_124_5,-74.731366,39.453844,109 LINDEN AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_124_7,-74.69209187,39.4482568,33 LAKE PL,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_124_9,-74.68304547,39.49820516,27 LAKE PL,PLEASANTVILLE CITY,45,1932,2,RES1,3001 -0119_125_1,-74.60552605,39.38288582,102-110 LINDEN AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_125_11,-74.54363983,39.51852873,141 N MAIN ST,PLEASANTVILLE CITY,,1955,1,RES1,3001 -0119_125_13,-74.4892305,39.336449,10 W PLEASANT AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_125_2,-74.732597,39.453671,13 LAKE PL,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_125_3,-74.755315,39.4484785,9 LAKE PL,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_125_6,-74.49504,39.3346605,6 W PLEASANT AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_125_7,-74.488095,39.348718,101-109 N MAIN ST,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_125_8,-74.4816045,39.34655,111-117 N MAIN ST,PLEASANTVILLE CITY,,1940,1,GOV1,3004 -0119_126_1,-74.54362505,39.38386289,32 LAKE PL,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_126_10,-74.66844753,39.46177216,14 LAKE PL,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_126_12,-74.55811585,39.41420917,132 N FIRST ST,PLEASANTVILLE CITY,43,1910,4,RES1,3001 -0119_126_14,-74.4088505,39.3914395,43 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_126_15,-74.712712,39.4655155,37-39 W ADAMS AVE,PLEASANTVILLE CITY,45,1900,2,GOV1,3004 -0119_126_16,-74.507258,39.326561,35 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_126_17,-74.5165105,39.3220455,31 W ADAMS AVE,PLEASANTVILLE CITY,45,1910,2,GOV1,3004 -0119_126_18,-74.61565531,39.38254342,27 W ADAMS AVE,PLEASANTVILLE CITY,45,1930,2,RES1,3001 -0119_126_19,-74.5400795,39.4124045,21 W ADAMS AVE,PLEASANTVILLE CITY,16,1940,1,RES3A,3001 -0119_126_2,-74.5365005,39.390027,30 LAKE PL,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_126_20,-74.57076738,39.42915267,15 W ADAMS AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_126_21,-74.764509,39.3503975,11 W ADAMS AVE,PLEASANTVILLE CITY,15,1940,1,GOV1,3004 -0119_126_22,-74.534187,39.3833095,7 W ADAMS AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_126_24,-74.6837895,39.441594,163 N MAIN ST,PLEASANTVILLE CITY,15,1940,1,GOV1,3004 -0119_126_25,-74.5785125,39.476716,175 N MAIN ST,PLEASANTVILLE CITY,,1950,1,RES1,3001 -0119_126_28,-74.5640765,39.4130675,19 W ADAMS AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_126_30,-74.58348279,39.3743084,189-191 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_126_31,-74.564064,39.4828735,181-187 N MAIN ST,PLEASANTVILLE CITY,,1922,1,RES1,3001 -0119_126_32,-74.8108585,39.3725445,8 LAKE PL,PLEASANTVILLE CITY,45,1940,3,GOV1,3004 -0119_126_33,-74.690444,39.4968265,12 LAKE PL,PLEASANTVILLE CITY,16,1946,1,RES1,3001 -0119_126_35,-74.691557,39.449469,179 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_126_4,-74.55739146,39.39664999,26 LAKE PL,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_126_5,-74.54747006,39.36965419,24 LAKE PL,PLEASANTVILLE CITY,45,1930,2,RES1,3001 -0119_126_6,-74.55102868,39.47272616,22 LAKE PL,PLEASANTVILLE CITY,16,1936,1,RES1,3001 -0119_126_7,-74.6145387,39.47687679,20 LAKE PL,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_126_8,-74.6521096,39.45555625,18 LAKE PL,PLEASANTVILLE CITY,15,1930,1,GOV1,3004 -0119_126_9,-74.69263797,39.4489198,16 LAKE PL,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_128_1.01,-74.785531,39.6114795,7 E PLEASANT AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_1.02,-74.83790496,39.59340832,100-104 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_1.03,-74.78229807,39.63715815,108 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_1.04,-74.85889715,39.56573104,110-118 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_1.05,-74.8646865,39.59206117,10-12 OLD TURNPIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_13,-74.7922572,39.51851064,1-21 BROOKVILLE TERR,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_2,-74.86211859,39.59538745,18-28 OLD TURNPIKE,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_128_24,-74.6859045,39.571502,2 E PLEASANT AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_25,-74.66110827,39.54765367,120-136 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_4.01,-74.86598047,39.60056785,103-05 MADISON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_8,-74.487694,39.3381055,140 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_128_9,-74.71594125,39.63520027,107 MADISON AVE,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_13_1,-74.49305595,39.44612424,818 W ASHLAND AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_13_10,-74.800891,39.644059,817 FERNWOOD AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_13_11,-74.4886945,39.466743,812 W ASHLAND AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_13_12,-74.68543802,39.55825967,815 FERNWOOD AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_13_17,-74.4824845,39.343594,808 W ASHLAND AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3004 -0119_13_20,-74.50889728,39.43735667,807 FERNWOOD AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_13_24,-74.49881532,39.3362357,1315 LINCOLN AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3002 -0119_13_28,-74.4777035,39.3429245,1305 LINCOLN AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_13_32,-74.52567827,39.45396104,803 FERNWOOD AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_13_4,-74.6596095,39.618565,1312 MCCLELLAN AVE,PLEASANTVILLE CITY,16,2006,1,GOV1,3004 -0119_13_6,-74.62984243,39.54372216,1306 MCCLELLAN AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_13_8,-74.44300169,39.35371448,1302 MCCLELLAN AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_130_3,-74.8075375,39.628582,40 OLD TURNPIKE,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_130_5,-74.73331324,39.43708561,111 N FRANKLIN BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_130_7,-74.81644179,39.61462488,106 MADISON AVE,PLEASANTVILLE CITY,43,1900,3,RES1,3001 -0119_131_9,-74.4992586,39.33318716,211 OLD TURNPIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_132_11,-74.79129933,39.64222128,122 OLD TURNPIKE,PLEASANTVILLE CITY,,1950,1,RES1,3001 -0119_132_14,-74.92895,39.508734,112 E PLEASANT AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_132_19,-74.80450895,39.62775488,125 PENNY LANE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_132_23,-74.9471235,39.52522,105 PENNY LANE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_132_30,-74.912968,39.5115895,115 HARRIS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_132_33,-74.79713838,39.62537418,128 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1943,1,GOV1,3004 -0119_132_34,-74.8154015,39.6157495,132 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_132_36,-74.802575,39.6379455,131 HARRIS AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_132_4,-74.90131764,39.47225876,118 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_132_9,-74.7932245,39.6333125,136 N FRANKLIN BLVD,PLEASANTVILLE CITY,13,1925,1,RES1,3001 -0119_133_12,-74.92480429,39.50945839,222 OLD TURNPIKE,PLEASANTVILLE CITY,,1987,1,RES1,3001 -0119_134_16,-74.821606,39.626707,139 INGERSOLL AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_135_11,-74.86790932,39.44731745,168 N MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_135_15,-74.54788186,39.40323045,156 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_135_21,-74.56207639,39.40721366,133 MADISON AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_135_5,-74.63560154,39.44398561,188 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_135_6,-74.7111335,39.412969,9 E ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_135_7,-74.81444579,39.37037672,11 E ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_135_8,-74.8148595,39.3771955,172-186 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_138_5,-74.88541333,39.46907276,1027 WOODLAND AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_138_9,-74.81691743,39.63774933,1023 WOODLAND AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_139_10,-74.843899,39.5590405,1010 WOODLAND AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3004 -0119_139_14,-74.46680602,39.34596284,1000 WOODLAND AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_139_18,-74.88016509,39.50739342,1015 SPRUCE AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_139_26,-74.8100965,39.521021,1013 SPRUCE AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_139_27,-74.78237182,39.50942955,1001 SPRUCE AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_14_1,-74.577251,39.400576,822 FERNWOOD AVE,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_14_1.01,-74.85145549,39.43240266,818 FERNWOOD AVE,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_14_11,-74.7237925,39.6503685,814 FERNWOOD AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_14_12,-74.924291,39.5112365,815 TREMONT AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_14_17,-74.441404,39.3673075,804 FERNWOOD AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_14_23,-74.52148,39.4267295,800 FERNWOOD AVE,PLEASANTVILLE CITY,16,1982,1,GOV1,3004 -0119_14_26,-74.65506115,39.59236267,1215 LINCOLN AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_14_29,-74.52678234,39.31474624,1207 LINCOLN AVE,PLEASANTVILLE CITY,14,1905,1,GOV1,3004 -0119_14_30,-74.43949,39.3658445,1201 LINCOLN AVE,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_14_4,-74.81240064,39.63773978,1210 MCCLELLAN AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_14_7,-74.86428359,39.60036166,823 TREMONT AVE,PLEASANTVILLE CITY,16,2004,1,GOV1,3004 -0119_14_9,-74.8120485,39.4512285,819 TREMONT AVE,PLEASANTVILLE CITY,16,2004,1,GOV1,3004 -0119_140_1,-74.57278833,39.55278471,1008 SPRUCE AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_143_1,-74.83368095,39.48865629,925 WOODLAND AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_143_10,-74.8816135,39.473889,907 WOODLAND AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_143_15,-74.882656,39.4638705,200-214 CAMBRIA AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_143_4,-74.84905216,39.48121499,915 WOODLAND AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_143_7,-74.859928,39.4869775,911 WOODLAND AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_144_1,-74.8679845,39.491951,924 WOODLAND AVE,PLEASANTVILLE CITY,15,2001,1,RES1,3001 -0119_144_13,-74.55906835,39.50737153,900 WOODLAND AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_144_15,-74.607853,39.5136175,939 SPRUCE AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_144_15.01,-74.592456,39.5187375,935 SPRUCE AVE,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_144_19,-74.58854293,39.51045861,931 SPRUCE AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_144_22,-74.566329,39.530998,927 SPRUCE AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_144_22.01,-74.55556734,39.53327455,921 SPRUCE AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_144_26,-74.5382755,39.522387,911 SPRUCE AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_144_27,-74.54051043,39.52577821,909 SPRUCE AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_144_29,-74.5334235,39.528789,907 SPRUCE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_144_3,-74.87176253,39.49145926,922 WOODLAND AVE,PLEASANTVILLE CITY,15,2005,1,RES1,3001 -0119_144_32,-74.572594,39.5136325,905 SPRUCE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_144_34,-74.5655179,39.50801083,901 SPRUCE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_144_5,-74.862641,39.487492,916 WOODLAND AVE,PLEASANTVILLE CITY,15,2005,1,RES1,3001 -0119_144_7,-74.88139655,39.4925498,912 WOODLAND AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_144_9,-74.87469651,39.49146169,906 WOODLAND AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_145_1,-74.48821868,39.33806892,835 ONEIDA AVE,PLEASANTVILLE CITY,16,1969,1,RES1,3001 -0119_145_11,-74.7161577,39.41399892,815 ONEIDA AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_145_17,-74.822924,39.3943025,805 ONEIDA AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_145_18,-74.42979834,39.37239723,801 ONEIDA AVE,PLEASANTVILLE CITY,15,1925,1,COM1,3004 -0119_145_20,-74.62022159,39.50138387,200 SOMERSET AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_145_22,-74.71315581,39.42910679,832 W ADAMS AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_145_24,-74.82004025,39.38692477,828 W ADAMS AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_145_26,-74.84539195,39.41169674,824 W ADAMS AVE,PLEASANTVILLE CITY,16,1974,1,RES1,3001 -0119_145_28,-74.41656716,39.36836683,820 W ADAMS AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_145_30,-74.40194128,39.38786291,814 W ADAMS AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_145_33,-74.370818,39.416271,810 W ADAMS AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_145_35,-74.38117678,39.41693858,806 W ADAMS AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3004 -0119_145_37,-74.446141,39.370637,802 W ADAMS AVE,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_145_4,-74.5087735,39.3347855,831 ONEIDA AVE,PLEASANTVILLE CITY,16,1969,1,RES1,3001 -0119_145_6,-74.392077,39.391525,825 ONEIDA AVE,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_145_9,-74.3851312,39.39692118,821 ONEIDA AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_146_1,-74.57035281,39.35512193,837 SENECA AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_146_15,-74.4869299,39.33465183,807 SENECA AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_146_19,-74.44678118,39.35835516,803 SENECA AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_146_20,-74.52326519,39.31932294,836 ONEIDA AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_146_22,-74.51340603,39.32718235,830 ONEIDA AVE,PLEASANTVILLE CITY,16,1967,1,RES1,3001 -0119_146_28,-74.477262,39.3395095,822 ONEIDA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_146_30,-74.46391205,39.35464722,816 ONEIDA AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_146_33,-74.50352253,39.33657867,814 ONEIDA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_146_35,-74.50306037,39.3428001,808 ONEIDA AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_146_36,-74.39155503,39.39296191,800 ONEIDA AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_146_6,-74.602694,39.350164,827 SENECA AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_146_8,-74.5195355,39.3189055,823 SENECA AVE,PLEASANTVILLE CITY,16,1973,1,GOV1,3004 -0119_146_8.01,-74.57512,39.5394065,815 SENECA AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_147_20,-74.57872443,39.36091219,830 SENECA AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_147_26,-74.52354117,39.3137165,824 SENECA AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_147_26.01,-74.93740209,39.48256841,826 SENECA AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_147_29,-74.50771463,39.32609167,818 SENECA AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_147_31,-74.571425,39.351663,812 SENECA AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_147_33,-74.58133163,39.34324036,806 SENECA AVE,PLEASANTVILLE CITY,16,1983,1,GOV1,3004 -0119_147_36,-74.61756327,39.36744957,800 SENECA AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_148_1,-74.85203205,39.61838219,234 SOMERSET AVE,PLEASANTVILLE CITY,16,1986,1,COM4,3004 -0119_148_12,-74.9509865,39.5308255,817 WOODLAND AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_148_14,-74.8838145,39.5933675,813 WOODLAND AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_148_15,-74.78957985,39.642313,811 WOODLAND AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_148_19,-74.80185899,39.64716525,803 WOODLAND AVE,PLEASANTVILLE CITY,16,1967,1,RES1,3001 -0119_148_31,-74.809456,39.6417595,225 CHALFONTE AVE,PLEASANTVILLE CITY,16,2010,1,RES1,3001 -0119_148_5,-74.914798,39.512543,831 WOODLAND AVE,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_148_8,-74.96740205,39.51196824,823 WOODLAND AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_149_10,-74.78656643,39.60799139,815 SPRUCE AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_149_14,-74.8518603,39.59848012,811 SPRUCE AVE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_149_16,-74.87647525,39.60451637,809 SPRUCE AVE,PLEASANTVILLE CITY,16,1993,1,GOV1,3004 -0119_149_19,-74.797491,39.6338265,307 CHALFONTE AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_149_22,-74.77085799,39.61933417,836 WOODLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_149_26,-74.791627,39.636379,830 WOODLAND AVE,PLEASANTVILLE CITY,15,1994,1,RES1,3001 -0119_149_28,-74.87926676,39.59245317,822 WOODLAND AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_149_34,-74.79580128,39.63599439,812 WOODLAND AVE,PLEASANTVILLE CITY,15,1920,1,RES4,3001 -0119_149_35,-74.883829,39.5018665,810 WOODLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_149_37,-74.92215007,39.51805131,806 WOODLAND AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_149_38,-74.92804952,39.51378561,800 WOODLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_149_5,-74.79639237,39.54387696,827 SPRUCE AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_15_1,-74.52195172,39.44567931,1106 MCCLELLAN AVE,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_15_11,-74.61772913,39.3786151,1111 LINCOLN AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_15_16,-74.8025186,39.6308636,1105 LINCOLN AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_15_3,-74.456546,39.463038,815 W PARK AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_15_6,-74.7731682,39.6382628,811 W PARK AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_15_8,-74.55294122,39.52653748,809 W PARK AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_150_12,-74.513575,39.4024035,715 ONEIDA AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_150_14,-74.49647791,39.43514228,709 ONEIDA AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_150_18,-74.5129635,39.4308495,705 ONEIDA AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_150_18.01,-74.5001665,39.447925,207 BELMONT AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_150_20,-74.4827195,39.4303305,200 CHALFONTE AVE,PLEASANTVILLE CITY,16,1979,1,RES1,3001 -0119_150_23,-74.52799439,39.40237718,730 W ADAMS AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_150_24,-74.4991485,39.423732,728 W ADAMS AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_150_27,-74.48048349,39.43906191,718 W ADAMS AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_150_3,-74.36906506,39.41091196,733 ONEIDA AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_150_30,-74.51756265,39.44302654,716 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_150_32,-74.53045401,39.45000213,712 W ADAMS AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_150_34,-74.63868,39.341953,708 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_150_38,-74.62837806,39.36069272,702 W ADAMS AVE,PLEASANTVILLE CITY,45,1910,2,RES1,3001 -0119_150_38.01,-74.62549178,39.3584466,704 W ADAMS AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_150_7,-74.5284045,39.3890365,725 ONEIDA AVE,PLEASANTVILLE CITY,15,1970,1,RES1,3001 -0119_150_9,-74.515599,39.3967345,721 ONEIDA AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_151_1,-74.50465446,39.33519981,735 SENECA AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_151_14,-74.83576682,39.41102606,711 SENECA AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_151_17,-74.3665705,39.4099815,703 SENECA AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_151_20,-74.7935585,39.380923,734 ONEIDA AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_151_24,-74.81394241,39.38250803,728 ONEIDA AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_151_27,-74.4226845,39.375133,722 ONEIDA AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_151_28,-74.40935996,39.39185582,720 ONEIDA AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_151_3,-74.37432355,39.40142497,733 SENECA AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_151_31,-74.37088175,39.41876453,714 ONEIDA AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_151_34,-74.363085,39.41928,706 ONEIDA AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_151_36,-74.5218163,39.39218158,704 ONEIDA AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_151_5,-74.38276543,39.39914802,729 SENECA AVE,PLEASANTVILLE CITY,16,1974,1,RES1,3001 -0119_151_7,-74.67026216,39.49454049,725 SENECA AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_151_9,-74.76107715,39.43053442,721 SENECA AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_152_1,-74.58563055,39.35115554,206 CHALFONTE AVE,PLEASANTVILLE CITY,16,2010,1,RES1,3001 -0119_152_19,-74.49377131,39.33557267,703 CAYUGA AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_152_20,-74.4606055,39.346091,732 SENECA AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_152_25,-74.4844285,39.334874,724 SENECA AVE,PLEASANTVILLE CITY,15,1937,1,RES1,3001 -0119_152_26,-74.48074482,39.34731706,722 SENECA AVE,PLEASANTVILLE CITY,16,1984,1,GOV1,3004 -0119_152_29,-74.4569265,39.352579,718 SENECA AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_152_32,-74.48851143,39.35184582,712 SENECA AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_152_36,-74.62476334,39.48857102,704 SENECA AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_152_37,-74.70664671,39.47962915,702 SENECA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_153_1,-74.51970444,39.31689315,224 CHALFONTE AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_153_1.01,-74.57078911,39.36063979,735 WOODLAND AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_153_1.02,-74.60976834,39.34323049,725 WOODLAND AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_153_1.03,-74.815927,39.378747,222 CHALFONTE AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_153_10,-74.522966,39.314037,719 WOODLAND AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_153_12,-74.4975125,39.3312845,715 WOODLAND AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_153_15,-74.500899,39.3297995,711 WOODLAND AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_153_17,-74.54986707,39.36163184,705 WOODLAND AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3004 -0119_153_19,-74.56920116,39.36394899,701 WOODLAND AVE,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_153_33,-74.600899,39.3673295,708 CAYUGA AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_153_36,-74.52288691,39.31950718,225 BELMONT AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_154_14,-74.60400564,39.34585242,712 WOODLAND AVE,PLEASANTVILLE CITY,15,1930,1,GOV1,3004 -0119_154_17,-74.59400383,39.36650151,702 WOODLAND AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_154_20,-74.91561495,39.50122363,306 CHALFONTE AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_154_22,-74.93314966,39.50995653,733 SPRUCE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_154_24,-74.9416725,39.5126215,723 SPRUCE AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_154_3,-74.94859664,39.52360191,732 WOODLAND AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_154_30,-74.81373209,39.37719721,717 SPRUCE AVE,PLEASANTVILLE CITY,,0,1,COM1,3004 -0119_154_31,-74.72038962,39.64422569,713 SPRUCE AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_154_34,-74.79378829,39.65011937,709 SPRUCE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_154_36,-74.82995203,39.64256641,701 SPRUCE AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_154_7,-74.7824685,39.6803145,724 WOODLAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_155_1,-74.63656691,39.30841816,210 BELMONT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_155_12,-74.58980666,39.42846299,615 ONEIDA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_155_14,-74.67499344,39.3846232,611 ONEIDA AVE,PLEASANTVILLE CITY,45,1915,2,RES1,3001 -0119_155_18,-74.6174605,39.433059,640 W ADAMS AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_155_20,-74.62866178,39.35956112,636 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_155_20.01,-74.60947654,39.5612466,633 ONEIDA AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_155_23,-74.67283938,39.36874556,632 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_155_24,-74.82749689,39.3758218,628 W ADAMS AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_155_26,-74.63770785,39.43383696,622 W ADAMS AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_155_28,-74.599708,39.36037991,620 W ADAMS AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_155_30,-74.6256158,39.3551166,616 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_155_33,-74.75759742,39.30594162,610 W ADAMS AVE,PLEASANTVILLE CITY,14,1920,1,RES1,3001 -0119_155_34,-74.67770631,39.41326429,604 W ADAMS AVE,PLEASANTVILLE CITY,16,2012,1,RES1,3001 -0119_155_37,-74.62749229,39.43451819,605 ONEIDA AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_155_38,-74.63687657,39.33926115,601 ONEIDA AVE,PLEASANTVILLE CITY,15,1915,1,RES3A,3001 -0119_155_41,-74.5080455,39.4621105,602 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_155_42,-74.46481773,39.47244757,600 W ADAMS AVE,PLEASANTVILLE CITY,15,1975,1,RES1,3001 -0119_155_8,-74.6888385,39.36104,623 ONEIDA AVE,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_156_1,-74.50964167,39.4089744,634 ONEIDA AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_156_10,-74.59823181,39.36084856,614 ONEIDA AVE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_156_12,-74.6277756,39.35497101,610 ONEIDA AVE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_156_16,-74.65799172,39.36692137,219 MILL RD,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_156_18,-74.37655561,39.40019966,627 CAYUGA AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_156_22,-74.686441,39.49753233,619 CAYUGA AVE,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_156_26,-74.481237,39.340242,224 BELMONT AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_156_29,-74.4656945,39.343315,614 CAYUGA AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_156_32,-74.61250814,39.35326128,617 WOODLAND AVE,PLEASANTVILLE CITY,15,1986,1,RES1,3004 -0119_156_36.01,-74.38132611,39.41737967,214 BELMONT AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_156_36.02,-74.407383,39.3790885,218 BELMONT AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_156_36.03,-74.36810156,39.41154441,216 BELMONT AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_156_37.01,-74.4912634,39.45833075,221 MILL RD,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_156_37.02,-74.49049951,39.42167516,225 MILL RD,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_156_38,-74.512743,39.327434,601 WOODLAND AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_156_39,-74.7206445,39.4305655,220 BELMONT AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_156_4,-74.49835675,39.43109481,630 ONEIDA AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_156_6,-74.46590603,39.45642884,624 ONEIDA AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_156_8,-74.52667773,39.44335588,620 ONEIDA AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_157_15,-74.48670633,39.4713136,205 N NEW RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_157_16,-74.51108546,39.45465106,207 N NEW RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_157_2,-74.490885,39.497452,201 N NEW RD,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_157_27,-74.37589085,39.39875516,507 WOODLAND AVE,PLEASANTVILLE CITY,16,1920,2,RES1,3001 -0119_157_29,-74.84147678,39.42094097,253 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_157_34,-74.5212019,39.39922703,235 N NEW RD,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_157_36,-74.4746183,39.44346375,233 N NEW RD,PLEASANTVILLE CITY,14,1928,1,RES1,3001 -0119_157_4,-74.63138048,39.36010818,206 MILL RD,PLEASANTVILLE CITY,15,1995,1,REL1,3004 -0119_157_6,-74.64891024,39.34106147,212 MILL RD,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_158_1,-74.59737415,39.34165486,218 W ADAMS AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_158_10,-74.64759587,39.34048908,200 W ADAMS AVE,PLEASANTVILLE CITY,43,1942,3,RES1,3001 -0119_158_11,-74.62354814,39.35705717,203 N SECOND ST,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_158_12,-74.56743538,39.36582436,204 N THIRD ST,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_158_14,-74.56538361,39.35485918,208 N THIRD ST,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_158_15,-74.57133416,39.34977066,210 N THIRD ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_158_16,-74.60389212,39.3186497,212 N THIRD ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_158_17,-74.6043135,39.323206,214 N THIRD ST,PLEASANTVILLE CITY,45,1930,2,RES1,3001 -0119_158_18,-74.869873,39.4540285,216 N THIRD ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_158_2,-74.606377,39.3458585,216 W ADAMS AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_158_20,-74.5878205,39.3161895,218 N THIRD ST,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_158_23.01,-74.65071234,39.52386898,226 N THIRD ST,PLEASANTVILLE CITY,37,2006,1,RES1,3001 -0119_158_23.02,-74.6418668,39.52424815,228 N THIRD ST,PLEASANTVILLE CITY,37,2006,1,RES1,3001 -0119_158_23.03,-74.645577,39.5278445,230 N THIRD ST,PLEASANTVILLE CITY,37,2006,1,RES1,3001 -0119_158_23.04,-74.64473695,39.52827215,232 N THIRD ST,PLEASANTVILLE CITY,37,2006,1,RES1,3001 -0119_158_23.05,-74.6457945,39.528313,234 N THIRD ST,PLEASANTVILLE CITY,37,2006,1,RES1,3001 -0119_158_25,-74.57781574,39.34405317,205 N SECOND ST,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_158_27,-74.55732838,39.3668971,211 N SECOND ST,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_158_29,-74.60665655,39.33105981,215 N SECOND ST,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_158_32,-74.60584762,39.31871116,219 N SECOND ST,PLEASANTVILLE CITY,14,1895,1,RES1,3001 -0119_158_34,-74.79343001,39.46090716,223 N SECOND ST,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_158_37,-74.725666,39.4513,229 N SECOND ST,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_158_40,-74.64750958,39.43109331,217 WOODLAND AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_158_42,-74.52729906,39.46962729,211 WOODLAND AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_158_43,-74.46340721,39.49165269,201 WOODLAND AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_158_44,-74.50656196,39.47455074,233 N SECOND ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_158_7,-74.61615055,39.36548806,208 W ADAMS AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_158_8,-74.64304773,39.33550776,204 W ADAMS AVE,PLEASANTVILLE CITY,,0,1,COM4,3004 -0119_158_9,-74.608968,39.3669395,202 W ADAMS AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_159_1,-74.82010419,39.36547891,126 W ADAMS AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_159_10,-74.76721703,39.33300971,208 N FIRST ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_159_12,-74.67795881,39.34371454,212 N FIRST ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_159_13,-74.629527,39.366439,214 N FIRST ST,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_159_14,-74.62884181,39.35610958,216 N FIRST ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_159_15,-74.63461275,39.31778092,220 N FIRST ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_159_16,-74.59445501,39.36098308,224 N FIRST ST,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_159_17,-74.60156605,39.34769483,228 N FIRST ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_159_18,-74.53466345,39.38225316,207 LINDEN AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_159_19,-74.81603851,39.36086163,211 LINDEN AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_159_2,-74.54212324,39.38342198,122 W ADAMS AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_159_20,-74.686891,39.361947,215 LINDEN AVE,PLEASANTVILLE CITY,15,1903,1,RES1,3001 -0119_159_21,-74.63233861,39.35921831,221 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_159_23,-74.65342337,39.34657519,225 LINDEN AVE,PLEASANTVILLE CITY,16,1922,1,RES1,3001 -0119_159_24,-74.57143783,39.34296604,232 N FIRST ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_159_25,-74.565769,39.354492,117 WOODLAND AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_159_26,-74.55727652,39.36296832,115 WOODLAND AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_159_27,-74.57247874,39.36049062,109-11 WOODLAND AVE,PLEASANTVILLE CITY,43,1925,3,RES1,3001 -0119_159_28,-74.59172594,39.34352013,107 WOODLAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_159_29,-74.5760745,39.3544345,231 LINDEN AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_159_3,-74.758813,39.346708,116 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_159_30,-74.56578584,39.37574802,203 LINDEN AVE 106R ADAMS,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_159_4,-74.795354,39.3644865,112 W ADAMS AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_159_5,-74.54293416,39.37260697,108 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_159_6,-74.5534895,39.399379,104 W ADAMS AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_159_7,-74.541604,39.3893415,102 W ADAMS AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_159_8,-74.5324195,39.3834235,202 N FIRST ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_159_9,-74.54049088,39.37671935,206 N FIRST ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_16_1,-74.5378975,39.3795085,1418 LINCOLN AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_16_10,-74.53146683,39.40337643,1402 LINCOLN AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_16_11,-74.5925525,39.3326315,711 W ASHLAND AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_16_14,-74.5483155,39.384073,707 W ASHLAND AVE,PLEASANTVILLE CITY,16,1984,1,COM1,3004 -0119_16_2,-74.59942222,39.31752716,1410 LINCOLN AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_16_24,-74.57619384,39.33812455,1409 JEFFERSON AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_16_25,-74.546098,39.4010145,701 W ASHLAND AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_16_25.01,-74.63083094,39.43428864,703 W ASHLAND AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_16_29,-74.62598738,39.35578167,1417 JEFFERSON AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_16_31,-74.62856334,39.34888198,1415 JEFFERSON AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_16_34,-74.76792162,39.49114196,708 WOODSIDE AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_16_6,-74.4955265,39.4989745,1408 LINCOLN AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_160_1,-74.54630506,39.37700535,200 N MAIN ST,PLEASANTVILLE CITY,,1953,1,RES1,3001 -0119_160_10,-74.56957009,39.47765664,20 E ADAMS AVE,PLEASANTVILLE CITY,43,1925,3,COM4,3002 -0119_160_11,-74.6316085,39.4460755,22 E ADAMS AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_160_12,-74.60083969,39.37973424,5 COLLINS AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_160_13,-74.536681,39.4062625,9 COLLINS AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_160_14,-74.5635067,39.41510569,11 COLLINS AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_160_15,-74.55324103,39.42714535,19 COLLINS AVE,PLEASANTVILLE CITY,43,1915,3,RES1,3001 -0119_160_16,-74.75449562,39.30155919,21 COLLINS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_160_17,-74.5520997,39.37354439,25 COLLINS AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_160_18,-74.82794699,39.40932952,203 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_160_19,-74.742203,39.4106915,207 N FRANKLIN BLVD,PLEASANTVILLE CITY,43,1925,3,RES1,3001 -0119_160_2,-74.60574108,39.40940133,206 N MAIN ST,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_160_20,-74.68794128,39.44480838,209 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_160_21,-74.63304941,39.4564132,211 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_160_22,-74.55231031,39.47848185,217 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_160_23,-74.54188866,39.38573447,39 COLLINS AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_160_26,-74.5699525,39.3757915,31 COLLINS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_160_3,-74.53740617,39.41219197,212 N MAIN ST,PLEASANTVILLE CITY,15,1900,1,COM3,3004 -0119_160_4,-74.505753,39.330587,220 N MAIN ST,PLEASANTVILLE CITY,,1888,1,RES1,3001 -0119_160_8,-74.56361158,39.38706029,16 E ADAMS AVE,PLEASANTVILLE CITY,43,1855,2,RES1,3001 -0119_160_9,-74.5841405,39.4566485,18 E ADAMS AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_161_1,-74.53142645,39.38559667,300 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_161_10,-74.401114,39.3887655,30 COLLINS AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_161_11,-74.56542187,39.37378777,9 E MERION AVE,PLEASANTVILLE CITY,43,1935,2,RES1,3001 -0119_161_13,-74.534319,39.377113,13 E MERION AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_161_15,-74.5402135,39.3909695,17 E MERION AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_161_16,-74.5448635,39.386418,19 E MERION AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_161_17,-74.55984,39.397415,21 E MERION AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_161_18,-74.535423,39.3899155,23 E MERION AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_161_19,-74.54114636,39.39518745,25 E MERION AVE,PLEASANTVILLE CITY,43,1923,2,RES1,3001 -0119_161_20,-74.56941081,39.41285373,38 COLLINS AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_161_21,-74.61731268,39.39125811,307 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_161_22,-74.518158,39.323331,311 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_161_23,-74.502571,39.3324425,315 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_161_24,-74.59057933,39.37221204,321 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1910,1,COM7,3004 -0119_161_26,-74.51787418,39.3189622,32-34 COLLINS AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_161_3,-74.5571255,39.376404,310 N MAIN ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_161_4,-74.55067606,39.37571684,314 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_161_5,-74.55401829,39.38108453,8 COLLINS AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_161_7,-74.55755752,39.39806136,16 COLLINS AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_161_8,-74.606341,39.371518,20 COLLINS AVE,PLEASANTVILLE CITY,15,1930,1,GOV1,3004 -0119_161_9,-74.59816739,39.38087097,24 COLLINS AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_162_1,-74.8675225,39.449192,102 E ADAMS AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_162_10,-74.6170055,39.384231,118 E ADAMS AVE,PLEASANTVILLE CITY,16,1920,1,COM1,3004 -0119_162_11,-74.54643668,39.40383589,124 E ADAMS AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_162_12,-74.50382002,39.43704311,128 E ADAMS AVE,PLEASANTVILLE CITY,15,1927,1,IND2,3004 -0119_162_13,-74.5125294,39.44909548,130 E ADAMS AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_162_14,-74.50230467,39.45983422,136 E ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_162_15,-74.4787565,39.346373,138 E ADAMS AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_162_16,-74.4929675,39.3419725,144 E ADAMS AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_162_17,-74.49219991,39.33582283,148 E ADAMS AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_162_18,-74.50191867,39.33829999,152 E ADAMS AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_162_2,-74.73725,39.4694465,206 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_162_21,-74.7596885,39.42934,105 COLLINS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_162_22,-74.82836382,39.40531817,111 COLLINS AVE,PLEASANTVILLE CITY,15,1956,1,RES1,3001 -0119_162_23,-74.7207135,39.4427905,117 COLLINS AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_162_24,-74.72120154,39.4477087,121 COLLINS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_162_25,-74.73395218,39.46113148,125 COLLINS AVE,PLEASANTVILLE CITY,15,1925,1,REL1,3004 -0119_162_26,-74.75430471,39.44723491,127 COLLINS AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_162_27,-74.809163,39.4427595,129 COLLINS AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_162_28,-74.8349725,39.495607,137 COLLINS AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_162_29,-74.60319888,39.37041276,143 COLLINS AVE,PLEASANTVILLE CITY,43,1940,3,RES1,3001 -0119_162_3,-74.72298899,39.45253067,208-10 N FRANKLIN BLVD,PLEASANTVILLE CITY,43,1934,2,RES1,3001 -0119_162_30,-74.61071169,39.38962453,145 COLLINS AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_162_31,-74.47016254,39.46054902,149 COLLINS AVE,PLEASANTVILLE CITY,15,1936,1,GOV1,3004 -0119_162_32.01,-74.51542116,39.43840803,153 COLLINS AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_162_34,-74.64159942,39.46288458,101 COLLINS AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_162_4,-74.8278235,39.3877625,214 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_162_6,-74.68156414,39.50046846,103 COLLINS AVE,PLEASANTVILLE CITY,43,1950,3,GOV1,3004 -0119_162_7,-74.71218843,39.47152069,108 E ADAMS AVE,PLEASANTVILLE CITY,43,1930,2,RES3A,3001 -0119_162_8,-74.86269199,39.44846316,112 E ADAMS AVE,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_162_9,-74.8680857,39.49334606,116 E ADAMS AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_163_1,-74.77092987,39.31401403,310 N FRANKLIN BLVD,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_163_11,-74.62916597,39.48561967,136 COLLINS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_163_12,-74.6954835,39.49818,140 COLLINS AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_163_13,-74.80607267,39.37531048,144 COLLINS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_163_14,-74.80541485,39.40555898,148 COLLINS AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_163_15,-74.86216388,39.43564734,152 COLLINS AVE,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_163_17,-74.599698,39.3788415,314 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_163_18,-74.5028735,39.32934,316 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1956,1,GOV1,3004 -0119_163_19,-74.520269,39.322893,105 E MERION AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_163_20,-74.60894845,39.38721868,109 E MERION AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_163_21,-74.56685014,39.41871177,113 E MERION AVE,PLEASANTVILLE CITY,16,1955,1,GOV1,3004 -0119_163_22,-74.58768766,39.41294981,117 E MERION AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_163_23,-74.5495965,39.3765875,121 E MERION AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_163_24,-74.56254093,39.37091216,123 E MERION AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_163_25,-74.54240597,39.39402633,127 E MERION AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_163_26,-74.61868824,39.43661979,131 E MERION AVE,PLEASANTVILLE CITY,16,1972,1,GOV1,3004 -0119_163_27,-74.61099608,39.48867493,135 E MERION AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_163_3,-74.56596233,39.41735459,312 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_163_32,-74.5666785,39.388987,100 COLLINS AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_163_4,-74.55139348,39.38072434,108 COLLINS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_163_5,-74.55589,39.3697805,112 COLLINS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_163_6,-74.5440689,39.39473034,116 COLLINS AVE,PLEASANTVILLE CITY,16,1946,1,RES1,3001 -0119_163_7,-74.612805,39.4404875,120 COLLINS AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_163_8,-74.54645822,39.47580608,126 COLLINS AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_163_9,-74.62371235,39.43888209,128 COLLINS AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_164_1,-74.58614768,39.42771651,701-801 MILL RD,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_164_10,-74.58853328,39.35205427,745 W DELILAH RD,PLEASANTVILLE CITY,,1996,1,RES1,3001 -0119_164_15,-74.63490857,39.51532138,601 MILL RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_164_5,-74.5446515,39.3911375,701 W DELILAH RD,PLEASANTVILLE CITY,,1976,1,RES1,3001 -0119_164_5.01,-74.81418352,39.3648622,723-725 W DELILAH RD,PLEASANTVILLE CITY,,2001,1,RES1,3001 -0119_164_8,-74.6353805,39.527237,603 MILL RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_164_9,-74.55000758,39.36686079,755 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_165_2,-74.81218366,39.63131204,516 MARTIN TERR,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_165_3,-74.95144721,39.50491621,512 MARTIN TERR,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_165_33,-74.88416471,39.54316243,508 MARTIN TERR,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_165_4,-74.4991475,39.5013865,510 MARTIN TERR,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_165_5,-74.95359335,39.53320543,711 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_166_1_B01,-74.52366417,39.32219498,621 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_166_12,-74.70805801,39.41642167,509 RICHMOND AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_166_13,-74.62217135,39.45267102,515 RICHMOND AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_166_2.02,-74.63983302,39.41076264,615 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_166_4,-74.6016224,39.33212335,801 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_166_5,-74.55349836,39.36649719,815 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_166_8,-74.80669363,39.36870319,825 N NEW RD,PLEASANTVILLE CITY,16,1915,1,RES1,3001 -0119_17_1,-74.48257469,39.43300659,1314 LINCOLN AVE,PLEASANTVILLE CITY,15,1966,1,RES1,3001 -0119_17_11,-74.49789907,39.43065319,710 W ASHLAND AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_17_12,-74.51162502,39.39896566,715 FERNWOOD AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_17_18,-74.49223705,39.42252618,709 FERNWOOD AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_17_19,-74.58894616,39.4310646,706 W ASHLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_17_21,-74.47562033,39.49302049,704 W ASHLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_17_23,-74.56372343,39.37107617,700 W ASHLAND AVE,PLEASANTVILLE CITY,16,1995,1,GOV1,3004 -0119_17_26,-74.5838755,39.328081,1313 JEFFERSON AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_17_28,-74.50865622,39.47409803,1311 JEFFERSON AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_17_32,-74.4737225,39.44699267,1301 JEFFERSON AVE,PLEASANTVILLE CITY,,2013,1,RES1,3001 -0119_17_8,-74.36821618,39.41465948,1304 LINCOLN AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_17_9,-74.41053976,39.38321354,717 FERNWOOD AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_170_10,-74.60121578,39.3276172,831-845 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_170_18,-74.573431,39.3589135,504 RICHMOND AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_170_21,-74.4035045,39.3812365,508-510 RICHMOND AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_170_30.02,-74.50741416,39.33463395,513 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_170_6,-74.887552,39.5766815,855 N NEW RD,PLEASANTVILLE CITY,,2007,1,RES1,3001 -0119_171_1,-74.780123,39.6268315,326 WOODLAND AVE,PLEASANTVILLE CITY,37,2007,1,RES1,3001 -0119_171_10,-74.77894481,39.63410049,315 HENDRICKS ST,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_171_11,-74.78334591,39.63518874,316 N FOURTH ST,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_171_12,-74.77918405,39.62298322,314 N FOURTH ST,PLEASANTVILLE CITY,28,2008,2,RES1,3001 -0119_171_13,-74.77822391,39.62401262,312 N FOURTH ST,PLEASANTVILLE CITY,28,2008,2,RES1,3001 -0119_171_2,-74.79469932,39.63276934,324 WOODLAND AVE,PLEASANTVILLE CITY,37,2007,1,RES1,3001 -0119_171_3,-74.79776868,39.60122053,322 WOODLAND AVE,PLEASANTVILLE CITY,37,2007,1,COM1,3004 -0119_171_4,-74.85943446,39.58558371,320 WOODLAND AVE,PLEASANTVILLE CITY,37,2007,1,RES1,3001 -0119_171_5,-74.8623895,39.585799,301 HENDRICKS ST,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_171_6,-74.84798979,39.58904061,305 HENDRICKS ST,PLEASANTVILLE CITY,28,2008,2,RES1,3001 -0119_171_7,-74.8529755,39.60083,307 HENDRICKS ST,PLEASANTVILLE CITY,28,2008,2,RES1,3001 -0119_171_8,-74.7868705,39.633388,309 HENDRICKS ST,PLEASANTVILLE CITY,28,2008,2,RES1,3001 -0119_171_9,-74.79441727,39.63898501,311 HENDRICKS ST,PLEASANTVILLE CITY,28,2008,2,RES1,3001 -0119_172_10,-74.7073166,39.63812727,312 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_11,-74.73964289,39.63541489,308 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_12,-74.76946755,39.61288665,306 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_13,-74.76712902,39.61231183,304 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_14,-74.78383038,39.60858295,302 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_15,-74.78699916,39.61210498,300 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_16,-74.7939705,39.611646,210 W MERION AVE,PLEASANTVILLE CITY,37,2007,1,RES1,3001 -0119_172_17,-74.78027904,39.62134423,208 W MERION AVE,PLEASANTVILLE CITY,27,2007,2,RES1,3001 -0119_172_18,-74.76125863,39.63364672,206 W MERION AVE,PLEASANTVILLE CITY,37,2008,1,RES1,3001 -0119_172_19,-74.762355,39.6389715,204 W MERION AVE,PLEASANTVILLE CITY,37,2008,1,RES1,3001 -0119_172_2,-74.499839,39.4981575,328 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_20,-74.77765179,39.63036742,202 W MERION AVE,PLEASANTVILLE CITY,37,2008,1,RES1,3001 -0119_172_21,-74.77470971,39.62734662,200 W MERION AVE,PLEASANTVILLE CITY,37,2008,1,RES1,3001 -0119_172_3,-74.48660846,39.53482812,326 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_4,-74.70733906,39.63938543,324 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_5,-74.79175887,39.59074107,322 W MERION AVE,PLEASANTVILLE CITY,37,2007,1,GOV1,3004 -0119_172_6,-74.78033823,39.5939586,320 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_7,-74.78313109,39.57882692,318 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_8,-74.74889282,39.59466149,316 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_172_9,-74.73202612,39.58981819,314 W MERION AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_173_1,-74.50767646,39.46208184,150 WOODLAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_173_11,-74.760528,39.445061,116 WOODLAND AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_173_15,-74.6315205,39.430029,312 N SECOND ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_173_16,-74.62242785,39.36359407,139 W MERION AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_173_18,-74.5924645,39.31799,110 WOODLAND AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_173_19,-74.54808271,39.46726611,131 W MERION AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_173_2,-74.449952,39.4784015,148 WOODLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_173_20,-74.52808,39.456495,125 W MERION AVE,PLEASANTVILLE CITY,37,2006,1,RES1,3001 -0119_173_21,-74.47557994,39.4847084,123 W MERION AVE,PLEASANTVILLE CITY,15,1956,1,RES1,3001 -0119_173_23,-74.51768857,39.47386779,109 W MERION AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_173_25,-74.50245153,39.52066583,107 W MERION AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_173_28,-74.57681355,39.33226827,309 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_173_3,-74.4621735,39.489891,144 WOODLAND AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_173_3.01,-74.6585325,39.54846167,140 WOODLAND AVE,PLEASANTVILLE CITY,16,2012,1,RES1,3001 -0119_173_31,-74.72455,39.4463455,101 W MERION AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_173_32,-74.5931535,39.315443,126 WOODLAND AVE,PLEASANTVILLE CITY,27,1905,2,RES1,3001 -0119_173_34,-74.5997605,39.3537015,143 W MERION AVE,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_173_35,-74.62807616,39.34902005,141 W MERION AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_173_36,-74.64891161,39.35563052,137 W MERION AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_173_37,-74.6382085,39.430033,135 W MERION AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_173_38,-74.55160227,39.44251056,133 W MERION AVE,PLEASANTVILLE CITY,16,1900,1,RES1,3001 -0119_173_39,-74.55359767,39.35775256,305 LINDEN AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_173_40,-74.60612336,39.32715645,106 WOODLAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_173_6,-74.50474388,39.47834873,136 WOODLAND AVE,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_173_7,-74.59249182,39.31627177,128 WOODLAND AVE,PLEASANTVILLE CITY,27,1905,2,RES1,3001 -0119_173_9,-74.61644197,39.30901556,122 WOODLAND AVE,PLEASANTVILLE CITY,15,1929,1,GOV1,3004 -0119_174_1,-74.627226,39.392923,142 W MERION AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_174_19,-74.4730911,39.49009436,403 LINDEN AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_174_2,-74.59027016,39.42873101,138 W MERION AVE,PLEASANTVILLE CITY,15,1960,1,RES1,3001 -0119_174_24,-74.46262178,39.4926602,409 LINDEN AVE,PLEASANTVILLE CITY,16,1953,1,GOV1,3004 -0119_174_26,-74.6838315,39.3606195,402 N SECOND ST,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_174_3,-74.63620292,39.38384408,136 W MERION AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_174_4,-74.676617,39.378774,134 W MERION AVE,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_174_5,-74.63927483,39.41619039,132 W MERION AVE,PLEASANTVILLE CITY,15,1908,1,RES3A,3001 -0119_174_6,-74.62433119,39.43222698,130 W MERION AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_174_7,-74.60604908,39.36500826,128 W MERION AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_174_8,-74.627983,39.3565475,120 W MERION AVE,PLEASANTVILLE CITY,,1950,1,RES1,3001 -0119_175_10,-74.5949725,39.3649085,427 W MULBERRY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_175_11,-74.52978636,39.30866694,423 W MULBERRY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_175_14,-74.525191,39.315642,415 W MULBERRY AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_175_14.01,-74.93967202,39.4958668,419 W MULBERRY AVE,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_175_15,-74.50874799,39.33170114,411 W MULBERRY AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_175_16,-74.50440315,39.32719816,409 W MULBERRY AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3004 -0119_175_17,-74.5659505,39.356253,403 W MULBERRY AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_175_18,-74.58107762,39.3406614,401 W MULBERRY AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_175_20,-74.5848205,39.3587305,325 W MULBERRY AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_175_21.01,-74.64464577,39.53091048,311 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.02,-74.64257265,39.53068316,307 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.03,-74.64164156,39.53023409,305 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES3A,3001 -0119_175_21.04,-74.66719849,39.50884617,303 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.05,-74.4871816,39.33741617,301 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.08,-74.49827201,39.33834588,211 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.09,-74.67998803,39.50498783,209 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.10,-74.68084734,39.51283749,207 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.11,-74.68204006,39.49660795,205 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.12,-74.652529,39.540742,203 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_175_21.13,-74.649906,39.533137,201 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_176_1,-74.47356356,39.35399834,140 W MULBERRY AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_176_10,-74.37915485,39.39488243,108 W MULBERRY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_176_11,-74.40622474,39.37820337,106 W MULBERRY AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_176_12,-74.40000257,39.38971872,104 W MULBERRY AVE,PLEASANTVILLE CITY,43,1928,2,RES1,3001 -0119_176_13.02,-74.45210331,39.49487998,213 BRIGHTON AVE,PLEASANTVILLE CITY,16,2006,1,GOV1,3004 -0119_176_13.03,-74.44942904,39.49404003,211 BRIGHTON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_176_17,-74.5126085,39.324543,207 BRIGHTON AVE,PLEASANTVILLE CITY,14,1915,1,RES1,3001 -0119_176_20,-74.51189784,39.32903475,201 BRIGHTON AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_176_21,-74.470692,39.342212,145 BRIGHTON AVE,PLEASANTVILLE CITY,15,1927,1,GOV1,3004 -0119_176_22,-74.48195063,39.34081865,143 BRIGHTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_176_23,-74.47760066,39.33955601,141 BRIGHTON AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_176_26,-74.48483,39.3490155,131 BRIGHTON AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_176_28,-74.481862,39.3513815,129 BRIGHTON AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_176_29,-74.489342,39.334972,127 BRIGHTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_176_32,-74.50179784,39.33687054,123 BRIGHTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_176_34,-74.38697734,39.39355397,119 BRIGHTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_176_35,-74.38346939,39.39700788,115 BRIGHTON AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_176_35.01,-74.75421434,39.45156103,111 BRIGHTON AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_176_39,-74.76278215,39.43092091,107 BRIGHTON AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_176_4,-74.51101502,39.33728184,132 W MULBERRY AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_176_41,-74.85433304,39.36974969,103 BRIGHTON AVE,PLEASANTVILLE CITY,15,1933,1,COM1,3004 -0119_176_42,-74.44427367,39.369136,601 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3004 -0119_176_43,-74.37390635,39.41106023,603 LINDEN AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_176_44,-74.368536,39.406262,605 LINDEN AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_176_45,-74.3712475,39.404781,611 LINDEN AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_176_47,-74.3823726,39.39494002,101 BRIGHTON AVE,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_176_5,-74.39927909,39.38537384,128 W MULBERRY AVE,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_176_6,-74.7021918,39.48465912,124 W MULBERRY AVE,PLEASANTVILLE CITY,16,2009,1,RES3A,3001 -0119_176_7,-74.7129293,39.42977313,120 W MULBERRY AVE,PLEASANTVILLE CITY,15,1913,1,RES1,3001 -0119_176_8,-74.82276855,39.39052384,116 W MULBERRY AVE,PLEASANTVILLE CITY,15,1903,1,GOV1,3004 -0119_176_9,-74.8477,39.401572,112 W MULBERRY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_178_1,-74.71721017,39.57672151,204 W READING AVE,PLEASANTVILLE CITY,15,1959,1,RES1,3001 -0119_178_105,-74.38836139,39.39271253,856 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_178_107,-74.63064283,39.61363201,848 N NEW RD,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_178_11,-74.89717738,39.51073016,114 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_178_110,-74.56537285,39.35802301,838 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_178_112,-74.68514377,39.49635524,836 N NEW RD,PLEASANTVILLE CITY,14,1930,1,RES1,3001 -0119_178_113,-74.709685,39.414714,834 N NEW RD,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_178_115,-74.7557865,39.430104,828 N NEW RD,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_178_12,-74.9320865,39.5203675,112 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_178_120,-74.7497775,39.3915885,445 W WINDSOR AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_178_121,-74.7147632,39.43202564,441 W WINDSOR AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_178_123,-74.7596715,39.4317925,433 W WINDSOR AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_178_126,-74.72314188,39.43966116,820 N NEW RD,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_178_127,-74.5524745,39.3627835,421 W DELILAH RD,PLEASANTVILLE CITY,15,1924,1,RES3A,3001 -0119_178_133,-74.514982,39.3298005,824 N NEW RD,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_178_14,-74.77144241,39.61057368,148 W READING AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_178_15,-74.779158,39.632463,136 W READING AVE,PLEASANTVILLE CITY,15,1870,1,RES1,3001 -0119_178_16,-74.93910829,39.51529797,108 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_178_18,-74.48021352,39.35103217,210 W READING AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_178_19,-74.4808095,39.337289,214 W READING AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_178_194,-74.798109,39.6365755,829 LINDEN AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_178_195,-74.8089485,39.6129275,831 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_178_199,-74.88494386,39.46270706,825 LINDEN AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_178_2,-74.77716119,39.62021717,140 W READING AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_178_200,-74.67119475,39.45603335,409-419 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_178_200.01,-74.504755,39.4793825,411B W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_178_200.02,-74.523859,39.4709305,411A W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3002 -0119_178_202,-74.745198,39.4126105,407 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_178_204,-74.97058629,39.51112893,821 LINDEN AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_178_208,-74.63708716,39.53089398,312 W READING AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_178_21,-74.46397967,39.34665199,216 W READING AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_178_212,-74.97570585,39.51296913,809 LINDEN AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_178_213,-74.78633282,39.64178031,807 LINDEN AVE,PLEASANTVILLE CITY,16,1947,1,RES1,3001 -0119_178_214,-74.81313198,39.66295617,805 LINDEN AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_178_215,-74.56422595,39.36266333,803 LINDEN AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3002 -0119_178_216,-74.5995925,39.34326,102 W READING AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3002 -0119_178_219,-74.83942682,39.41813052,427 W WINDSOR AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_178_220,-74.80125907,39.63085234,200 W READING AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_178_26,-74.66206,39.635178,226 W READING AVE,PLEASANTVILLE CITY,14,1928,1,RES1,3001 -0119_178_28,-74.60884843,39.59441481,300 W READING AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_178_29,-74.86570019,39.59240088,835 LINDEN AVE,PLEASANTVILLE CITY,15,1913,1,RES1,3001 -0119_178_30,-74.78149801,39.63716817,837 LINDEN AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_178_31,-74.775981,39.6066425,839 LINDEN AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_178_32,-74.84093,39.559394,843 LINDEN AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_178_33,-74.48706517,39.334835,845 LINDEN AVE,PLEASANTVILLE CITY,16,1950,1,GOV1,3004 -0119_178_35,-74.47175252,39.34170384,847 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_178_36,-74.52233017,39.31834348,849 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_178_38,-74.6332887,39.61252497,851 LINDEN AVE,PLEASANTVILLE CITY,15,1920,1,RES3A,3001 -0119_178_39,-74.912579,39.479709,824 FLORENCE AVE,PLEASANTVILLE CITY,16,2008,1,RES3A,3001 -0119_178_4,-74.8820575,39.5946605,134 W READING AVE,PLEASANTVILLE CITY,15,1870,1,RES3A,3001 -0119_178_43,-74.77967568,39.62387795,830 FLORENCE AVE,PLEASANTVILLE CITY,15,1930,1,RES3B,3001 -0119_178_44,-74.80165841,39.54449019,834 FLORENCE AVE,PLEASANTVILLE CITY,16,1988,1,RES3A,3001 -0119_178_47,-74.843955,39.531511,840 FLORENCE AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_178_50,-74.7928205,39.526607,846 FLORENCE AVE,PLEASANTVILLE CITY,14,1940,1,RES1,3001 -0119_178_52,-74.6454395,39.5504265,850 FLORENCE AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_178_54,-74.650937,39.5219875,101 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_178_57,-74.626751,39.5303815,107 W DELILAH RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_178_58,-74.63477117,39.51939,111 W DELILAH RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_178_59,-74.53674688,39.53468311,115 W DELILAH RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_178_6,-74.94773756,39.4889886,130 W READING AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_178_60,-74.48443615,39.33588016,815 FLORENCE AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3002 -0119_178_61,-74.66644217,39.54386991,841 FLORENCE AVE,PLEASANTVILLE CITY,14,1922,1,RES1,3001 -0119_178_61.01,-74.4654965,39.3433825,833 FLORENCE AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_178_63.01,-74.74834734,39.45078347,301 W DELILAH RD,PLEASANTVILLE CITY,,1980,1,RES1,3001 -0119_178_64,-74.68127192,39.55284885,304 W READING AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_178_65,-74.643591,39.538163,308 W READING AVE,PLEASANTVILLE CITY,15,1935,1,RES3A,3001 -0119_178_69,-74.576541,39.3520255,400 W READING AVE,PLEASANTVILLE CITY,43,1925,3,RES1,3001 -0119_178_7,-74.93103,39.5248105,126 W READING AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_178_71,-74.59777927,39.34046891,402 W READING AVE,PLEASANTVILLE CITY,16,1976,1,RES1,3001 -0119_178_75,-74.56542507,39.36241148,418 W READING AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_178_76,-74.55455172,39.36436447,420 W READING AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_178_78,-74.56588392,39.50626957,440 W READING AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_178_8,-74.820276,39.6375315,124 W READING AVE,PLEASANTVILLE CITY,15,1895,1,RES3A,3001 -0119_178_84,-74.57328448,39.34389454,425 W DELILAH RD,PLEASANTVILLE CITY,43,1920,1,RES3A,3001 -0119_178_86,-74.6032697,39.33066179,433 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_178_87,-74.62053212,39.43845275,439 W DELILAH RD,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_178_9,-74.89094883,39.47682082,122 W READING AVE,PLEASANTVILLE CITY,15,1895,1,RES3A,3001 -0119_178_96,-74.632317,39.462435,430 W WINDSOR AVE,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_179_1,-74.57438014,39.36544681,22 WOODLAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_179_10,-74.59901544,39.3195126,29 W MERION AVE,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_179_11,-74.61617383,39.31921246,25 W MERION AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_179_12,-74.56970691,39.34585639,23 W MERION AVE,PLEASANTVILLE CITY,15,1889,1,RES1,3001 -0119_179_14,-74.56077233,39.3589095,19 W MERION AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_179_15,-74.55504318,39.36271441,17 W MERION AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_179_17,-74.5965225,39.3499735,5 W MERION AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_179_18,-74.5957265,39.341737,7 W MERION AVE,PLEASANTVILLE CITY,,1940,1,RES1,3004 -0119_179_2,-74.59002051,39.33625217,20 WOODLAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_179_20,-74.65977,39.366568,307 N MAIN ST,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_179_21,-74.62315761,39.33805728,311 N MAIN ST,PLEASANTVILLE CITY,15,1908,1,RES1,3001 -0119_179_23,-74.61966133,39.36502823,8 WOODLAND AVE,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_179_25,-74.61411722,39.36680742,10.5 WOODLAND AVE,PLEASANTVILLE CITY,45,1922,2,RES1,3001 -0119_179_26,-74.63128132,39.34662548,313 N MAIN ST,PLEASANTVILLE CITY,45,1925,2,RES1,3001 -0119_179_27,-74.595816,39.35875933,323 N MAIN ST,PLEASANTVILLE CITY,45,1925,2,RES1,3001 -0119_179_28,-74.633206,39.3600205,6 WOODLAND AVE,PLEASANTVILLE CITY,45,1915,2,RES1,3001 -0119_179_3,-74.59769806,39.34596167,18 WOODLAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_179_4,-74.5886215,39.3550975,16 WOODLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_179_5,-74.60236783,39.36701256,14 WOODLAND AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_179_6,-74.63707875,39.30941826,12 WOODLAND AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_179_8,-74.62511998,39.35582518,10 WOODLAND AVE,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_18_2,-74.4829305,39.354507,1216 LINCOLN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_18_25,-74.67938938,39.64932376,701 W PARK AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_18_4,-74.45638943,39.47906604,1210 LINCOLN AVE,PLEASANTVILLE CITY,15,1928,2,RES1,3001 -0119_18_6,-74.49048342,39.45936747,1208 LINCOLN AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_18_7,-74.47367238,39.44537942,1200 LINCOLN AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3002 -0119_180_1,-74.49573183,39.53091449,400 LINDEN AVE,PLEASANTVILLE CITY,16,1954,1,REL1,3004 -0119_180_19,-74.61455021,39.32147162,407 N MAIN ST,PLEASANTVILLE CITY,45,1925,3,RES1,3001 -0119_180_24,-74.549643,39.3614725,401 N MAIN ST,PLEASANTVILLE CITY,,1955,1,RES1,3001 -0119_180_4,-74.7490025,39.446531,22 W MERION AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_180_5,-74.71336042,39.46934882,18 W MERION AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_180_7,-74.809854,39.4592595,14 W MERION AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_180_8,-74.59350706,39.32740483,10 W MERION AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_181_10,-74.6690851,39.35251141,21 W MULBERRY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_181_11,-74.59575872,39.42921027,19 W MULBERRY AVE,PLEASANTVILLE CITY,15,1930,1,GOV1,3004 -0119_181_12,-74.62057235,39.38246454,17 W MULBERRY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_181_13,-74.64538693,39.3899664,15 W MULBERRY AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_181_14,-74.6633645,39.401322,13 W MULBERRY AVE,PLEASANTVILLE CITY,15,1910,1,COM1,3004 -0119_181_15,-74.62390058,39.42281333,11 W MULBERRY AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_181_16,-74.62348125,39.4332924,9 W MULBERRY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_181_17,-74.5953632,39.3582594,7 W MULBERRY AVE,PLEASANTVILLE CITY,16,2011,1,RES1,3001 -0119_181_18,-74.648224,39.3284655,5 W MULBERRY AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_181_21,-74.4578035,39.4909975,511 N MAIN ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_181_23,-74.55091238,39.46663616,513-525 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_181_25,-74.6263315,39.4086145,512 LINDEN AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_181_27,-74.62896222,39.36088941,3 W MULBERRY AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_182_1,-74.63237775,39.34733317,600 LINDEN AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_182_10,-74.63706477,39.34273342,6-14 W MULBERRY AVE,PLEASANTVILLE CITY,,1948,1,RES3A,3001 -0119_182_14,-74.36495551,39.42237028,31 BRIGHTON AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_182_15,-74.44718959,39.37134082,27 BRIGHTON AVE,PLEASANTVILLE CITY,43,1923,2,RES1,3001 -0119_182_16,-74.53061786,39.39013318,23 BRIGHTON AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_182_17,-74.5185925,39.400603,17 BRIGHTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_182_18,-74.5124605,39.408049,5 BRIGHTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_182_19,-74.66020396,39.41832685,601-603 N MAIN ST,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_182_2,-74.49546892,39.45611021,606 LINDEN AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_182_21,-74.61988081,39.38728597,605 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_182_22,-74.58205791,39.43208907,611 N MAIN ST,PLEASANTVILLE CITY,15,1850,1,RES1,3001 -0119_182_23,-74.63226542,39.35879878,615 N MAIN ST,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_182_25,-74.52953162,39.42397251,627 N MAIN ST,PLEASANTVILLE CITY,33,1920,1,RES1,3001 -0119_182_26,-74.49078684,39.43479526,633 N MAIN ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_182_27,-74.50959903,39.40718831,619 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_182_28,-74.50332003,39.42943132,625 N MAIN ST,PLEASANTVILLE CITY,43,1922,4,COM4,3004 -0119_182_29,-74.52745081,39.38880947,618 LINDEN AVE,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_182_3,-74.50487,39.449833,610 LINDEN AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_182_30,-74.49592418,39.43112813,629 N MAIN ST,PLEASANTVILLE CITY,33,1920,1,RES1,3001 -0119_182_31,-74.5123355,39.4043055,627 N MAIN ST (R),PLEASANTVILLE CITY,43,1925,4,RES1,3001 -0119_182_4,-74.48556999,39.43847134,614 LINDEN AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_182_7,-74.3721735,39.40401,35 BRIGHTON AVE,PLEASANTVILLE CITY,15,1928,1,IND2,3002 -0119_182_8,-74.5161735,39.4520605,18 W MULBERRY AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_182_9,-74.50892365,39.45748196,16 W MULBERRY AVE,PLEASANTVILLE CITY,15,1926,1,GOV1,3004 -0119_183_1,-74.464455,39.348342,32 W WINDSOR AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_183_12,-74.48668104,39.33798517,857 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_183_13,-74.51083604,39.32835317,7 W DELILAH RD,PLEASANTVILLE CITY,15,1928,1,RES1,3004 -0119_183_14,-74.710235,39.638825,12 W WINDSOR AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_183_2,-74.631179,39.5981955,29 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_183_3,-74.4805125,39.339971,26 W WINDSOR AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_183_4,-74.62296537,39.62452377,25 W DELILAH RD,PLEASANTVILLE CITY,15,1935,1,GOV1,3004 -0119_183_6,-74.69872599,39.6332618,21 W DELILAH RD,PLEASANTVILLE CITY,,1950,1,RES1,3001 -0119_183_7,-74.48533014,39.34968164,20 W WINDSOR AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_183_9,-74.877338,39.5702455,16 W WINDSOR AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_184_1,-74.67371368,39.35784455,400 N MAIN ST,PLEASANTVILLE CITY,43,1910,3,GOV1,3004 -0119_184_10,-74.5607455,39.3756745,24 E MERION AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_184_12,-74.53816849,39.38771817,401 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_184_13,-74.54179962,39.3826665,405 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_184_21,-74.63305834,39.3615241,30 EVANS LANE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_184_22,-74.54758416,39.37162997,413 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_184_23,-74.7078561,39.36011921,417 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_184_25,-74.58352116,39.33947732,418 N MAIN ST,PLEASANTVILLE CITY,,1980,1,RES1,3001 -0119_184_26,-74.63882233,39.34512726,8 EVANS LANE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_184_29,-74.68779122,39.35938662,20 EVANS LANE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_184_3,-74.539214,39.375053,10 E MERION AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_184_4,-74.64769069,39.3532621,12 E MERION AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_184_5,-74.7654785,39.3077975,14 E MERION AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_184_6,-74.80925981,39.31295004,16 E MERION AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_184_7,-74.5453045,39.37343921,18 E MERION AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_184_8,-74.54032017,39.384105,20 E MERION AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_184_9,-74.537835,39.378787,22 E MERION AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_185_15,-74.55881542,39.38825521,400 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_185_17,-74.59578184,39.38387152,106 E MERION AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_185_18,-74.43601539,39.36881935,110 E MERION AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_185_19,-74.4999715,39.3312725,118 E MERION AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_185_20,-74.50577373,39.32596391,120 E MERION AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_185_21,-74.60676199,39.39129832,122 E MERION AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_186_12,-74.4732925,39.4933695,522 N MAIN ST,PLEASANTVILLE CITY,33,1973,1,RES1,3001 -0119_186_13,-74.47474686,39.47981981,524-26 N MAIN ST,PLEASANTVILLE CITY,43,1900,2,RES1,3001 -0119_186_21,-74.51587416,39.53373985,7 E MULBERRY AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_186_22,-74.60225548,39.31673968,11 E MULBERRY AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_186_23,-74.736911,39.449306,15 E MULBERRY AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_186_30,-74.60451089,39.32794626,523 N EDGELEY AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_186_32,-74.585301,39.332267,527 N EDGELEY AVE,PLEASANTVILLE CITY,14,1939,1,RES1,3001 -0119_186_33,-74.84751,39.462941,19 E MULBERRY AVE,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_186_44,-74.50545624,39.47848869,516-520 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_187_10,-74.49620869,39.49143718,605 N EDGELEY AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_187_13,-74.733424,39.438403,602 N EDGELEY AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_187_18,-74.602607,39.367732,608 N MAIN ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_187_19,-74.63040771,39.42309489,612 N MAIN ST,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_187_20,-74.63407964,39.35902349,5 LORAINE AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_187_21,-74.6338345,39.3619655,7 LORAINE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_187_23,-74.69241543,39.41338429,9 LORAINE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_187_24,-74.5381385,39.4658555,11 LORAINE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_187_25,-74.55614343,39.46704271,13 LORAINE AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_187_27,-74.5138015,39.4648575,15 LORAINE AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_187_28,-74.451602,39.49507,19 LORAINE AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_187_29,-74.45297571,39.49650832,21 LORAINE AVE,PLEASANTVILLE CITY,15,1922,1,AGR1,3001 -0119_187_32,-74.49079802,39.47247343,25 LORAINE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_187_36,-74.68979011,39.35445769,4 E MULBERRY AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_187_4,-74.76197895,39.44585357,10 E MULBERRY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_187_5,-74.46485125,39.49835584,12 E MULBERRY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_187_7,-74.47423042,39.49377921,16 E MULBERRY AVE,PLEASANTVILLE CITY,15,1964,1,RES1,3001 -0119_187_8,-74.53653457,39.31354003,20 E MULBERRY AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_188_1,-74.621855,39.382266,614 N MAIN ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_188_10,-74.6295045,39.365279,22 LORAINE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_188_11,-74.6517895,39.357981,24 LORAINE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_188_13,-74.69416188,39.43139391,28 LORAINE AVE,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_188_14,-74.55272736,39.46790131,32 LORAINE AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_188_2,-74.63425074,39.36373243,620 N MAIN ST,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_188_20,-74.49529545,39.43300226,630 N MAIN ST,PLEASANTVILLE CITY,43,1908,3,AGR1,3001 -0119_188_21,-74.51292737,39.40539166,634 N MAIN ST,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_188_23,-74.461648,39.454063,7 WALNUT AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_188_24,-74.51812365,39.44361354,11 WALNUT AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_188_25,-74.52002306,39.44552933,15 WALNUT AVE,PLEASANTVILLE CITY,15,1905,1,GOV1,3004 -0119_188_26,-74.63508144,39.34252735,17 WALNUT AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_188_27,-74.62877766,39.35752702,23 WALNUT AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_188_28,-74.63197552,39.35148333,25 WALNUT AVE,PLEASANTVILLE CITY,16,1950,1,GOV1,3004 -0119_188_29,-74.63836743,39.36171326,33 WALNUT AVE,PLEASANTVILLE CITY,15,1940,1,IND1,3002 -0119_188_3,-74.52226067,39.44290958,626 N MAIN ST,PLEASANTVILLE CITY,43,1923,2,RES1,3001 -0119_188_31,-74.65911866,39.34707011,622 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_188_32,-74.62600826,39.42472036,4 LORAINE AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_188_33,-74.6253975,39.3529975,626 N MAIN ST (R),PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_188_4,-74.6760362,39.37745795,6 LORAINE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_188_5,-74.62353306,39.4205068,14 LORAINE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_188_8,-74.63579453,39.30766732,18 LORAINE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_189_1,-74.367489,39.403108,700 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_189_10,-74.51323409,39.44319061,24 WALNUT AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_189_10.01,-74.50787597,39.40295893,717 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1998,1,GOV1,3004 -0119_189_14,-74.399932,39.3831225,710 N MAIN ST,PLEASANTVILLE CITY,15,1885,1,RES1,3001 -0119_189_16,-74.39434728,39.38850118,720 N MAIN ST,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_189_2,-74.5225985,39.3820595,8 WALNUT AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_189_24,-74.4503395,39.3749,6 WALNUT AVE,PLEASANTVILLE CITY,15,1850,1,RES1,3001 -0119_189_3,-74.37893119,39.41573973,10 WALNUT AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_189_4,-74.447325,39.3719315,12 WALNUT AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_189_5,-74.527478,39.3935765,14 WALNUT AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_189_6,-74.52494598,39.38687419,16 WALNUT AVE,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_189_7,-74.48499993,39.42772844,18 WALNUT AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_189_8,-74.5028295,39.4129725,20 WALNUT AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_189_9,-74.5279199,39.38530135,22 WALNUT AVE,PLEASANTVILLE CITY,16,1953,1,RES3A,3001 -0119_19_1,-74.7590135,39.304579,1408 JEFFERSON AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_19_17,-74.45145869,39.37254457,650 TILTON RD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_19_18,-74.5648045,39.388752,1414 JEFFERSON AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_19_20,-74.5577495,39.3762845,1412 JEFFERSON AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_19_4,-74.64112147,39.32339715,617 W ASHLAND AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_19_4.01,-74.9744995,39.51061,619 W ASHLAND AVE,PLEASANTVILLE CITY,16,2008,1,GOV1,3004 -0119_19_7,-74.54552148,39.37991567,615 W ASHLAND AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_19_9,-74.55795638,39.38715737,613 W ASHLAND AVE,PLEASANTVILLE CITY,15,1930,1,GOV1,3004 -0119_190_13,-74.4784785,39.34106,700 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_190_14,-74.499033,39.42985,977 MILL RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_190_15,-74.58448359,39.33148397,750 W DELILAH RD,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_190_4,-74.6053815,39.3211095,740 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_190_5,-74.5506055,39.36349083,710 W DELILAH RD,PLEASANTVILLE CITY,,1962,1,RES1,3001 -0119_190_8,-74.47114,39.340398,933 MILL RD,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_190_9,-74.47172732,39.34056004,943 MILL RD,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_191_1,-74.46060855,39.34506718,900-922 MILL RD,PLEASANTVILLE CITY,,1965,1,GOV1,3004 -0119_191_14,-74.5162585,39.3245695,610 W DELILAH RD,PLEASANTVILLE CITY,,1986,1,RES1,3001 -0119_191_20,-74.59076166,39.4143421,600 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_191_21,-74.4643965,39.447439,921 W LEEDS AVE,PLEASANTVILLE CITY,14,1922,1,RES1,3001 -0119_191_23,-74.50099134,39.43111748,980 MILL RD,PLEASANTVILLE CITY,,2004,1,RES1,3001 -0119_191_25.01,-74.49655961,39.44439379,901 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_191_26,-74.58769224,39.3807796,1001 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_191_3,-74.50495018,39.32903552,614 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_191_56,-74.47281,39.492712,521 W LEEDS AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_57,-74.51414452,39.47080143,1039 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_58,-74.58205442,39.32762696,1037 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,GOV1,3004 -0119_191_59,-74.60527566,39.33264449,1035 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_6,-74.58026633,39.31089449,701 W LEEDS AVE,PLEASANTVILLE CITY,,2003,1,RES1,3001 -0119_191_60,-74.450173,39.354153,1033 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,GOV1,3004 -0119_191_61,-74.4914715,39.3345495,1031 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_62,-74.57231107,39.36628281,1029 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_63,-74.61586759,39.3385333,1027 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_64,-74.60122735,39.36289534,1025 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_65,-74.6514165,39.352862,1023 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_66,-74.53373435,39.38497293,1021 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_67,-74.55995567,39.37106243,1019 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_68,-74.58456162,39.37641083,1017 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_69,-74.6090315,39.376716,1015 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_7,-74.49195839,39.46954821,601 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_191_70,-74.50044784,39.33020298,1013 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_191_72,-74.49656533,39.42854448,950 MILL RD,PLEASANTVILLE CITY,,1968,1,GOV1,3004 -0119_192_1,-74.6347423,39.42831594,914 N NEW RD,PLEASANTVILLE CITY,,2010,1,RES1,3001 -0119_192_10,-74.38603416,39.39550302,410 W DELILAH RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_192_11,-74.5656855,39.4776645,907 HOMER AVE,PLEASANTVILLE CITY,,1990,1,RES1,3001 -0119_192_5,-74.375511,39.399113,430 W DELILAH RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_192_9,-74.51256961,39.33817623,414 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_193_1_C0509,-74.56512105,39.47341244,509 SASSAFRAS RUN,PLEASANTVILLE CITY,33,1989,1,RES1,3001 -0119_193_12_C0120,-74.57251285,39.42749601,120 ORCHARDS,PLEASANTVILLE CITY,33,1988,1,RES1,3001 -0119_193_13,-74.5948105,39.4347265,1038 MALLARD PL,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_193_14.01,-74.5069415,39.491139,1042 MALLARD PL,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_193_15,-74.5354425,39.416423,237 W LEEDS AVE,PLEASANTVILLE CITY,16,1957,1,IND1,3002 -0119_193_19,-74.635668,39.418382,141 W LEEDS AVE,PLEASANTVILLE CITY,15,1966,1,RES1,3001 -0119_193_20,-74.56835014,39.50209836,125 W LEEDS AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_193_21,-74.60947596,39.49064384,119 W LEEDS AVE,PLEASANTVILLE CITY,16,1900,1,RES1,3001 -0119_193_23,-74.61107164,39.32146735,400 W DELILAH RD,PLEASANTVILLE CITY,15,1945,1,RES1,3001 -0119_193_23.01,-74.51084588,39.4824143,910 HOMER AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_193_3,-74.8291555,39.3910125,112 MAXWELL AVE,PLEASANTVILLE CITY,16,1992,1,GOV1,3004 -0119_193_5,-74.7156465,39.449159,925 LINDEN AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_193_6,-74.479686,39.342041,927 LINDEN AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_193_7,-74.80520557,39.40883919,929 LINDEN AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_193_8,-74.757255,39.4313795,931 LINDEN AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_193_9,-74.71223639,39.40816099,933 LINDEN AVE,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_194_1,-74.609044,39.3174685,100 W THOMPSON AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_194_13,-74.386704,39.3975515,126 W THOMPSON AVE,PLEASANTVILLE CITY,16,1988,1,COM8,3004 -0119_194_16,-74.48770498,39.34931711,132 W THOMPSON AVE,PLEASANTVILLE CITY,15,1930,1,GOV1,3004 -0119_194_18,-74.493615,39.3357215,134 W THOMPSON AVE,PLEASANTVILLE CITY,15,1930,1,COM4,3004 -0119_194_19,-74.54886922,39.47680211,136 W THOMPSON AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_194_20,-74.53821922,39.46551555,138 W THOMPSON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_194_20.01,-74.90130174,39.53926246,144 W THOMPSON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_194_4,-74.6030435,39.4993355,108 W THOMPSON AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_194_43,-74.631566,39.428521,141 W LINDLEY AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_194_47,-74.56868545,39.44597481,121 W LINDLEY AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_194_51,-74.5702775,39.4700305,119 W LINDLEY AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_194_57,-74.39674487,39.39089174,107 W LINDLEY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_194_62,-74.56932996,39.48012916,101 W LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_194_65,-74.380842,39.3957655,105 W LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_194_7,-74.57034114,39.47711015,112 W THOMPSON AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_195_1,-74.818453,39.387592,1001 N MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_195_11,-74.717892,39.38626079,6 W THOMPSON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_195_14,-74.6353705,39.486975,16 W THOMPSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_195_18,-74.63865943,39.46817815,18 W THOMPSON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_195_19,-74.5751604,39.35839359,20 W THOMPSON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_195_22,-74.5511499,39.36762588,28 W THOMPSON AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_195_25,-74.60628247,39.48960882,1010 LINDEN AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_195_27,-74.61781006,39.32119877,23 W LINDLEY AVE,PLEASANTVILLE CITY,43,1920,3,GOV1,3004 -0119_195_28,-74.60929861,39.32820319,19 W LINDLEY AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_195_3,-74.75722005,39.43203923,1005 N MAIN ST,PLEASANTVILLE CITY,17,1987,1,GOV1,3004 -0119_195_32,-74.57296422,39.33569982,15 W LINDLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_195_34,-74.5565105,39.3572415,13 W LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_195_7,-74.65458981,39.45813809,1015 N MAIN ST,PLEASANTVILLE CITY,43,1922,3,RES1,3001 -0119_196_1,-74.56967182,39.338873,925 CRESSON AVE,PLEASANTVILLE CITY,16,1996,1,GOV1,3004 -0119_196_1.01,-74.77856834,39.65506698,920 FABIAN AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_196_2,-74.59822,39.317943,935 CRESSON AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_196_3,-74.7938395,39.664671,1621 DOLPHIN AVE,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_196_4,-74.77072919,39.66159919,1611 DOLPHIN AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_196_5,-74.54631247,39.37024651,1601 DOLPHIN AVE,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_197_1_C019,-74.40374345,39.3870925,19 CRESSON WOODS,PLEASANTVILLE CITY,33,1983,1,RES1,3001 -0119_197_17,-74.46510937,39.49557455,1505 DOLPHIN AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_197_20,-74.51142339,39.3365752,1520 GARFIELD AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_197_22,-74.44482161,39.49277474,1516 GARFIELD AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3004 -0119_197_32,-74.356474,39.413643,1521 DOLPHIN AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_197_35,-74.3759915,39.40076067,1511 DOLPHIN AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_198_12,-74.8116675,39.663511,1505 GARFIELD AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_198_4,-74.52051863,39.46484096,1521 GARFIELD AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_198_9,-74.61032732,39.59361557,1509 GARFIELD AVE,PLEASANTVILLE CITY,15,1955,1,GOV1,3004 -0119_2_1,-74.92647734,39.51902999,248 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1970,1,GOV1,3004 -0119_2_10,-74.519251,39.411002,230 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_11,-74.5141456,39.4311408,228 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_12,-74.52453014,39.38374987,226 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,GOV1,3004 -0119_2_13,-74.5190896,39.39606215,224 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_14,-74.523404,39.4002985,222 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_15,-74.501379,39.408546,220 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,GOV1,3004 -0119_2_16,-74.55760964,39.41813426,218 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_17,-74.55494594,39.42554518,216 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_18,-74.599008,39.4100035,214 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_19,-74.58815427,39.42460146,212 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_2,-74.9660065,39.519377,246 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1969,1,RES1,3002 -0119_2_20,-74.58854465,39.43115656,210 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,GOV1,3004 -0119_2_21,-74.6137955,39.4214235,208 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_22,-74.51823731,39.40798498,206 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_23,-74.52998,39.402289,204 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_24,-74.49324024,39.42131597,202 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_2_25,-74.4879565,39.4311075,200 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,GOV1,3004 -0119_2_26,-74.59034398,39.43262068,201 TILTON RD,PLEASANTVILLE CITY,16,1988,1,GOV1,3004 -0119_2_27,-74.6043213,39.40684796,215 TILTON RD,PLEASANTVILLE CITY,16,1995,1,RES3A,3001 -0119_2_29,-74.57234605,39.41544277,289 TILTON RD,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_2_3,-74.89105,39.5578945,244 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_2_30,-74.50817765,39.41893833,291 TILTON RD,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_2_31,-74.53036968,39.40031154,295 TILTON RD,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_2_32,-74.523709,39.3859965,297 TILTON RD,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_2_33,-74.50671529,39.43736669,299 TILTON RD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_2_34,-74.495833,39.4329605,301 TILTON RD,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_2_36,-74.53031967,39.39508094,303 TILTON RD,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_2_37,-74.52404252,39.38450382,305 TILTON RD,PLEASANTVILLE CITY,15,1999,1,GOV1,3004 -0119_2_38,-74.82626494,39.64893185,307 TILTON RD,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_2_4,-74.79328424,39.64712793,242 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_2_40,-74.95093804,39.53411526,311 TILTON RD,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_2_41,-74.95576505,39.51949025,401 TILTON RD,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_2_42,-74.81188,39.6315515,403 TILTON RD,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_2_43,-74.792319,39.635554,1500 S NEW RD,PLEASANTVILLE CITY,,2000,1,RES1,3001 -0119_2_5,-74.80499341,39.64782086,240 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_2_6,-74.36200514,39.41211856,238 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_2_7,-74.52395382,39.38486642,236 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_2_8,-74.52791128,39.39777691,234 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1985,2,RES1,3001 -0119_2_9,-74.50239868,39.40939503,232 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_20_1,-74.64234871,39.43238244,618 W ASHLAND AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_20_12,-74.62014634,39.43387777,611 FERNWOOD AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_20_15,-74.5969019,39.34442167,614 W ASHLAND AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_20_17,-74.6239109,39.35783897,608 W ASHLAND AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_20_18,-74.56028008,39.35945794,605 FERNWOOD AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_20_2,-74.5544392,39.36247835,616 W ASHLAND AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3002 -0119_20_23,-74.53880219,39.38525768,1311 HARRISON AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_20_27,-74.79354186,39.36224411,1309 HARRISON AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_20_29,-74.6355379,39.36431378,1307 HARRISON AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_20_30,-74.633501,39.3679515,1305 HARRISON AVE,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_20_31,-74.58875297,39.35366146,603 FERNWOOD AVE,PLEASANTVILLE CITY,15,1968,1,RES1,3001 -0119_20_5,-74.53980128,39.38807803,1310 JEFFERSON AVE,PLEASANTVILLE CITY,16,1992,1,GOV1,3004 -0119_20_8,-74.6173375,39.3200785,619 FERNWOOD AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_20_8.01,-74.5433325,39.3827125,615 FERNWOOD AVE,PLEASANTVILLE CITY,16,1998,1,GOV1,3004 -0119_200_1.01,-74.51365517,39.39810503,920 W LEEDS AVE,PLEASANTVILLE CITY,,1975,1,GOV1,3004 -0119_200_1.03,-74.515514,39.398914,700 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_200_12,-74.5050091,39.40747117,507 W CALIFORNIA AVE,PLEASANTVILLE CITY,43,1900,3,RES1,3001 -0119_200_12.01,-74.502911,39.413393,1232 MOORES LANE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_200_13,-74.519849,39.4015095,701 W CALIFORNIA AVE,PLEASANTVILLE CITY,,1986,1,RES1,3001 -0119_200_19,-74.51073626,39.40145084,635 W CALIFORNIA AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_200_22,-74.50825882,39.40681146,1231 MOORES LANE,PLEASANTVILLE CITY,14,1930,1,RES1,3001 -0119_200_23,-74.522616,39.39715,531 W CALIFORNIA AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_200_24,-74.5218955,39.3962135,527 W CALIFORNIA AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_200_29,-74.515132,39.400388,605 W CALIFORNIA AVE,PLEASANTVILLE CITY,,1991,1,RES1,3001 -0119_200_30,-74.50483981,39.41079943,580 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_200_34,-74.52205488,39.40478948,564 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_200_36,-74.52179575,39.40254083,560 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_200_39,-74.50316667,39.424475,552 W LEEDS AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_200_40,-74.49293626,39.43443503,532-44 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_200_46,-74.66073717,39.518432,1125-1131 N NEW RD,PLEASANTVILLE CITY,,1985,1,RES1,3001 -0119_200_55,-74.626342,39.5266015,1147 N NEW RD,PLEASANTVILLE CITY,,1984,1,GOV1,3004 -0119_200_62,-74.50440833,39.40974923,511 W CALIFORNIA AVE,PLEASANTVILLE CITY,43,1953,1,RES1,3001 -0119_200_62.01,-74.50111,39.4137285,1230 MOORES LANE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_200_65,-74.503536,39.455722,524 W LEEDS AVE,PLEASANTVILLE CITY,16,1967,1,RES1,3001 -0119_200_8_C0018,-74.489,39.4370725,18 PLEASANT VILLAS,PLEASANTVILLE CITY,33,1987,1,RES1,3001 -0119_200_9,-74.59893374,39.31968857,1211 N NEW RD,PLEASANTVILLE CITY,,1990,1,RES1,3001 -0119_201_1,-74.56267408,39.38709768,238 W LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_201_11,-74.50261099,39.5031621,1109 N MAIN ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_201_11.01,-74.37332683,39.39962752,1107 N MAIN ST,PLEASANTVILLE CITY,15,1949,1,RES1,3001 -0119_201_12,-74.62831588,39.43274015,1121 N MAIN ST,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_201_14.02_X,-74.52056444,39.32213412,1153 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_201_15,-74.6131845,39.3912845,1159 N MAIN ST,PLEASANTVILLE CITY,,1906,1,RES1,3001 -0119_201_17,-74.555152,39.3579725,1167 N MAIN ST,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_201_18_C007,-74.62838162,39.60814481,7 FOX RUN,PLEASANTVILLE CITY,35,1983,1,RES1,3001 -0119_201_19.02,-74.51475969,39.43998598,1160 N NEW RD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_201_22,-74.502186,39.415567,1228 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_201_36,-74.46535996,39.47286935,1154 N NEW RD,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_201_37,-74.4541405,39.499297,1152 N NEW RD,PLEASANTVILLE CITY,43,1933,2,RES1,3001 -0119_201_38,-74.38982556,39.39395202,2-4 W LEEDS AVE,PLEASANTVILLE CITY,,1988,1,RES1,3001 -0119_201_44,-74.46321768,39.35534945,1301 N MAIN ST,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_201_45,-74.37169753,39.40217635,1117 N MAIN ST,PLEASANTVILLE CITY,15,1850,1,RES1,3001 -0119_201_5,-74.59568655,39.37961227,1100 SHANE CT,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_201_5.01,-74.53044566,39.51133944,1102 SHANE CT,PLEASANTVILLE CITY,16,2005,1,GOV1,3004 -0119_201_5.02,-74.48636086,39.52105921,1104 SHANE CT,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_201_5.03,-74.46428653,39.53566517,1106 SHANE CT,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_201_5.04,-74.4566335,39.515745,1108 SHANE CT,PLEASANTVILLE CITY,16,2005,1,GOV1,3004 -0119_201_5.06,-74.49998283,39.49597387,1105 SHANE CT,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_201_5.07,-74.49890309,39.49777883,1103 SHANE CT,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_201_5.08,-74.50152267,39.50283533,1101 SHANE CT,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_201_50,-74.58874694,39.37203419,1155 N MAIN ST,PLEASANTVILLE CITY,16,1955,1,GOV1,3004 -0119_201_54,-74.48579914,39.34804577,11 UTAH AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_201_8,-74.76072184,39.44602729,100 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_201_9,-74.51028042,39.33456819,16 W LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_204_11,-74.59109899,39.31765084,15 W REDWOOD AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_205_11.01,-74.49625715,39.47255825,1311 N MAIN ST,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_205_14,-74.46079565,39.49951489,1321-23 N MAIN ST,PLEASANTVILLE CITY,43,1914,2,RES1,3001 -0119_205_17,-74.45956451,39.49215747,1323 N MAIN ST (R),PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_205_9,-74.48374404,39.34766868,1303 N MAIN ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_206_10,-74.59531732,39.31190469,1411 N MAIN ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_206_12,-74.46153931,39.46678201,1425 N MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_206_7,-74.4969985,39.449349,1401 N MAIN ST,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_206_9,-74.59743035,39.30953142,1409 N MAIN ST,PLEASANTVILLE CITY,16,1890,1,RES1,3001 -0119_209_3,-74.5298735,39.308193,1414 GARFIELD AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_209_4,-74.519946,39.4241625,914 WOODSIDE AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_21_1,-74.65267784,39.39583942,1318 HARRISON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_21_10,-74.54908903,39.38170814,1300 HARRISON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_21_11,-74.62601572,39.41233155,1307 S NEW RD,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_21_4,-74.3725816,39.4114333,1310 HARRISON AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_21_7,-74.5910835,39.378628,1304 HARRISON AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_211_1,-74.4945435,39.4502705,1400 N MAIN ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_211_11,-74.49859143,39.52618297,5 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_211_12,-74.59395391,39.31412669,9 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_211_13,-74.60220953,39.30746842,11 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_211_5,-74.47023728,39.5076507,1 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_211_6,-74.5915325,39.3120425,1416 N MAIN ST,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_211_7.01,-74.45778449,39.47110034,22 E REDWOOD AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_211_7.02,-74.4995995,39.468585,1409 EIGHTH AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_212_10,-74.52212855,39.41289688,1514 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_212_11,-74.49368643,39.43313692,1500 N MAIN ST,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_212_12,-74.49752627,39.43274543,4 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_212_13,-74.49615856,39.43070872,8 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_212_14,-74.49766128,39.4340776,12 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_212_15,-74.4695745,39.453555,16 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1956,1,RES2,3005 -0119_212_16,-74.51151691,39.40874582,5 NEVADA AVE,PLEASANTVILLE CITY,16,1964,1,RES3A,3001 -0119_212_4,-74.50196506,39.41125749,1524 N MAIN ST,PLEASANTVILLE CITY,16,1955,1,GOV1,3004 -0119_212_6,-74.511928,39.407318,23 NEVADA AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_212_7,-74.52707382,39.40296549,1525 EIGHTH AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_212_8,-74.5116335,39.418117,1521 EIGHTH AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_213_1,-74.46707188,39.48898434,108 E REDWOOD AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_213_10,-74.51847605,39.44636965,131 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_213_11,-74.51285987,39.46055878,1421 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_213_12,-74.5265232,39.46581332,1419 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_213_14,-74.45247526,39.49908926,1405 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_213_15,-74.48407189,39.49602228,1403 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_213_16,-74.59598675,39.32297353,1401 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_213_3,-74.52040692,39.45518416,1408 EIGHTH AVE,PLEASANTVILLE CITY,16,1979,1,RES1,3001 -0119_213_8,-74.5783195,39.3315915,101 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_213_9,-74.49137141,39.45972981,1429 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_214_1,-74.4857011,39.52208976,100 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_214_10,-74.4968575,39.4328555,1525 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_214_11,-74.49019617,39.43215547,1521 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_214_12,-74.4359055,39.492981,1517 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_214_13,-74.49903823,39.49887981,1515 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1935,1,RES1,3001 -0119_214_14,-74.52288781,39.52986605,1507 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_214_15,-74.594779,39.3140025,1505 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_214_16,-74.599929,39.3170295,112 E CALIFORNIA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_214_2,-74.58110876,39.31139738,104 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_214_3,-74.47199502,39.44407214,1508 EIGHTH AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_214_4,-74.49393,39.4327645,1516 EIGHTH AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_214_6,-74.49305265,39.43504018,1524 EIGHTH AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_214_8,-74.513851,39.4111585,1528 EIGHTH AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_214_9,-74.49463788,39.43576997,1529 N FRANKLIN BLVD,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_215_1,-74.48401612,39.34734099,1400 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_215_12,-74.48839014,39.4996874,1419 SEVENTH AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_215_14,-74.59945632,39.32841498,1411 SEVENTH AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_215_15,-74.4524645,39.356681,1405 SEVENTH AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_215_2,-74.59717867,39.31877601,1404 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_215_3,-74.58737683,39.32076892,1408 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_215_4,-74.489051,39.4703635,1426 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_215_5,-74.46938964,39.48977322,1428 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_215_6,-74.45920369,39.49171169,1430 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1953,1,GOV1,3004 -0119_215_7,-74.5122845,39.4647715,1432 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_215_8,-74.52764381,39.46665664,207 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1956,1,COM1,3004 -0119_215_9,-74.44531049,39.49423073,1425 SEVENTH AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_216_1,-74.49752938,39.44899273,200 E CALIFORNIA AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_216_10,-74.59304153,39.31502765,1521 SEVENTH AVE,PLEASANTVILLE CITY,15,1995,1,RES1,3001 -0119_216_13,-74.594833,39.321569,1513 SEVENTH AVE,PLEASANTVILLE CITY,16,1981,1,RES1,3001 -0119_216_14,-74.51298446,39.4397692,222 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1851,1,RES1,3001 -0119_216_15,-74.49502172,39.44684732,214 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_216_2,-74.6069925,39.3144325,208 E CALIFORNIA AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_216_3,-74.59102434,39.3245475,1508 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_216_4,-74.59654181,39.30991329,1512 N FRANKLIN BLVD,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_216_6,-74.460629,39.5226835,1520 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_216_7,-74.46156841,39.45449333,1524 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_216_8,-74.499793,39.4341795,1528 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_216_9,-74.49420515,39.4425351,223 NEVADA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_217_10,-74.58661115,39.3278724,1427 OCEAN AVE,PLEASANTVILLE CITY,14,1856,1,RES1,3001 -0119_217_11,-74.5723565,39.336987,1421 OCEAN AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_217_12,-74.45173916,39.35369105,1413 OCEAN AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_217_14,-74.55822996,39.36734989,1409 OCEAN AVE,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_217_2,-74.46253467,39.35300495,1400 SEVENTH AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_217_4,-74.61475394,39.31993452,1412 SEVENTH AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_217_6,-74.51305531,39.48684904,1424 SEVENTH AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_217_8,-74.4667235,39.4893405,1428 SEVENTH AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_218_1,-74.5260015,39.458881,302 E CALIFORNIA AVE,PLEASANTVILLE CITY,43,1930,2,RES1,3001 -0119_218_10,-74.59541444,39.31806118,1525 OCEAN AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_218_12,-74.492199,39.461427,1517 OCEAN AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_218_13,-74.503772,39.468546,1513 OCEAN AVE,PLEASANTVILLE CITY,16,1972,1,GOV1,3004 -0119_218_14,-74.52155228,39.45765921,1509 OCEAN AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_218_15,-74.4750845,39.4827125,1505 OCEAN AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_218_16,-74.4520165,39.495701,322 E CALIFORNIA AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_218_2,-74.51347702,39.46470767,310 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_218_4,-74.52101417,39.44053053,1508 SEVENTH AVE,PLEASANTVILLE CITY,15,1933,1,RES1,3001 -0119_218_8,-74.5356765,39.305551,1522 SEVENTH AVE,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_218_9,-74.60873779,39.30627909,1529 OCEAN AVE,PLEASANTVILLE CITY,15,1922,1,GOV1,3004 -0119_219_1,-74.62492134,39.35255029,1400 OCEAN AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_219_11,-74.586994,39.3360465,1421 SIXTH AVE,PLEASANTVILLE CITY,16,2002,1,RES3A,3001 -0119_219_4,-74.589019,39.3473695,1414 OCEAN AVE,PLEASANTVILLE CITY,15,1910,1,RES4,3001 -0119_219_5,-74.56291059,39.36663845,1418 OCEAN AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_219_6,-74.49799541,39.33495234,1420 OCEAN AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_219_7,-74.44652484,39.35847599,407 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_219_8,-74.5718885,39.349017,405 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_219_9,-74.49163916,39.33875649,423 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_22_1,-74.7091795,39.5665395,1420 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_22_17,-74.7039394,39.46804388,1400 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_22_18,-74.61772749,39.43097886,409 FERNWOOD AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_22_23,-74.50568517,39.44579549,1423 COLUMBIA AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_22_25,-74.76392209,39.63527592,1417 COLUMBIA AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_22_28,-74.64350586,39.62298043,1413 COLUMBIA AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_22_29,-74.64155505,39.53254811,1411 COLUMBIA AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_22_32,-74.71932866,39.48074089,1403 COLUMBIA AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_22_44,-74.70535742,39.42955103,1301 COLUMBIA AVE,PLEASANTVILLE CITY,15,1924,1,COM3,3004 -0119_22_5,-74.40467038,39.38259007,1410 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_220_1,-74.49343607,39.47722623,1500 OCEAN AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_220_10,-74.50092677,39.46550469,505 NEVADA AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_220_11,-74.53060118,39.46223713,1521 SIXTH AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_220_12,-74.4507472,39.49067816,1515 SIXTH AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_220_17,-74.51512277,39.45568152,507 NEVADA AVE,PLEASANTVILLE CITY,43,1958,2,RES1,3001 -0119_220_18,-74.59204164,39.32227916,412 E CALIFORNIA AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_220_2,-74.49986132,39.48752634,408 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_220_3,-74.46464641,39.49952363,1508 OCEAN AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_220_5,-74.52777454,39.45539608,1516 OCEAN AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_220_7,-74.49517046,39.45985006,501 NEVADA AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_220_8,-74.50840476,39.44620669,401 NEVADA AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_221_1,-74.598663,39.3193665,1604 S MAIN ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_221_10,-74.875541,39.596856,39 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_221_2,-74.610296,39.3251385,7 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_221_3,-74.60984107,39.32401784,11 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_221_35,-74.87725643,39.59622065,101 E RIDGEWOOD AVE,PLEASANTVILLE CITY,15,1975,1,RES1,3001 -0119_221_4,-74.6096435,39.323341,15 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_221_5,-74.6140345,39.3229685,19 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_221_6,-74.61006196,39.32167368,23 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_221_7,-74.4963068,39.49817568,27 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_221_8,-74.57645556,39.35791849,31 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_221_9,-74.87090827,39.59249305,35 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_222_1,-74.56741376,39.50238508,1 PLAZA PL,PLEASANTVILLE CITY,16,1985,1,GOV1,3004 -0119_222_10,-74.6453365,39.4735355,31 PLAZA PL,PLEASANTVILLE CITY,16,1924,1,RES1,3001 -0119_222_11,-74.696592,39.4909335,35 PLAZA PL,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_222_13,-74.71744286,39.3884167,39 PLAZA PL,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_222_14,-74.71498549,39.4343977,41 PLAZA PL,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_222_15,-74.5993565,39.498882,1520 S MAIN ST,PLEASANTVILLE CITY,,1910,1,COM1,3004 -0119_222_16,-74.62110874,39.46347454,1522 S MAIN ST,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_222_2,-74.6023345,39.481742,1504 S MAIN ST,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_222_24,-74.588498,39.49262767,3 PLAZA PL,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_222_25,-74.6836925,39.441777,6 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_222_26,-74.69360251,39.44774382,10 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_222_27,-74.70382066,39.44526882,14 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_222_28,-74.697903,39.480841,18 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3004 -0119_222_29,-74.68243716,39.50303948,22 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_222_3,-74.6260575,39.4380045,5 PLAZA PL,PLEASANTVILLE CITY,16,1925,1,COM1,3004 -0119_222_30,-74.71334957,39.37641521,26 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_222_31,-74.7148846,39.4354341,30 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1967,1,RES1,3001 -0119_222_32,-74.7544905,39.433062,34 E RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_222_33,-74.75622201,39.43028178,1515 CLEMATIS AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_222_4,-74.68298611,39.4440198,9 PLAZA PL,PLEASANTVILLE CITY,16,1952,1,GOV1,3004 -0119_222_6,-74.6842465,39.44343917,15 PLAZA PL,PLEASANTVILLE CITY,16,1918,1,RES1,3001 -0119_222_8,-74.69411467,39.44705199,23 PLAZA PL,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_223_1,-74.75947376,39.43047547,101 PLAZA PL,PLEASANTVILLE CITY,15,1925,2,RES1,3001 -0119_223_10,-74.59935984,39.38279349,137 PLAZA PL,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_223_11,-74.60337444,39.3820342,141 PLAZA PL,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_223_12,-74.618685,39.38073,155 PLAZA PL,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_223_15,-74.59947712,39.39069585,157 PLAZA PL,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_223_17,-74.60868926,39.38929438,165 PLAZA PL,PLEASANTVILLE CITY,16,1955,1,GOV1,3004 -0119_223_3,-74.562537,39.40111,109 PLAZA PL,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_223_4,-74.58517277,39.38111479,115 PLAZA PL,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_223_5,-74.59498148,39.37903911,117 PLAZA PL,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_223_6,-74.59032906,39.37717079,121 PLAZA PL,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_223_7,-74.60518935,39.37058531,125 PLAZA PL,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_223_8,-74.6017895,39.3699065,129 PLAZA PL,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_224_12,-74.684401,39.4409165,49 E ASHLAND AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_224_13,-74.60190934,39.4419612,1402 S MAIN ST,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_224_14,-74.53796988,39.47155621,1406 S MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_224_15,-74.547694,39.47281,2 PLAZA PL,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_224_17,-74.54954137,39.49275205,6 PLAZA PL,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_224_18,-74.57432067,39.50055442,10 PLAZA PL,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_224_19,-74.60508406,39.48466519,14 PLAZA PL,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_224_2,-74.54606383,39.4732001,9 E ASHLAND AVE,PLEASANTVILLE CITY,16,1927,1,RES1,3001 -0119_224_20,-74.60623388,39.4901257,18 PLAZA PL,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_224_21,-74.645759,39.4464635,22 PLAZA PL,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_224_22,-74.64230504,39.46611235,26 PLAZA PL,PLEASANTVILLE CITY,15,1917,1,COM1,3004 -0119_224_24,-74.68361966,39.44486624,34 PLAZA PL,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_224_26,-74.6934334,39.44765599,38 PLAZA PL,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_224_28,-74.68172519,39.49494024,40 PLAZA PL,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_224_29,-74.5643895,39.4732635,4 PLAZA PL,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_224_4,-74.56867,39.4776005,17 E ASHLAND AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_224_6,-74.60814794,39.47690575,25 E ASHLAND AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_224_7,-74.58759052,39.48809216,31 E ASHLAND AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_224_8,-74.6469938,39.45299693,33 E ASHLAND AVE,PLEASANTVILLE CITY,16,1924,1,RES1,3001 -0119_224_9,-74.64561584,39.45632598,37 E ASHLAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_225_1,-74.69666655,39.47804368,103 E ASHLAND AVE,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_225_20,-74.60698134,39.3862641,170 PLAZA PL,PLEASANTVILLE CITY,16,1982,2,RES1,3001 -0119_225_23,-74.71006445,39.38536977,104 PLAZA PL,PLEASANTVILLE CITY,45,1926,2,GOV1,3004 -0119_225_23.01,-74.71835475,39.43580487,110 PLAZA PL,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_225_27,-74.7600795,39.430724,120 PLAZA PL,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_225_29,-74.578237,39.375066,126 PLAZA PL,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_225_30,-74.5944997,39.38145923,132 PLAZA PL,PLEASANTVILLE CITY,16,1958,1,GOV1,3004 -0119_225_32,-74.60380534,39.37603813,140 PLAZA PL,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_225_35,-74.60881068,39.37340481,144 PLAZA PL,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_225_37,-74.5989555,39.382469,148 PLAZA PL,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_225_38,-74.60168327,39.37810168,152 PLAZA PL,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_225_4,-74.688871,39.501145,115 E ASHLAND AVE,PLEASANTVILLE CITY,15,1935,1,RES3A,3001 -0119_225_6,-74.712511,39.4201595,127 E ASHLAND AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_225_8,-74.7540665,39.4317855,131 E ASHLAND AVE,PLEASANTVILLE CITY,16,1922,1,RES1,3001 -0119_226_1,-74.452498,39.4964565,1304 S MAIN ST,PLEASANTVILLE CITY,15,1956,1,RES1,3001 -0119_226_12,-74.51037086,39.48691936,7 E FLORAL AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_226_13,-74.43968404,39.5156942,9 E FLORAL AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_226_15,-74.53352811,39.30529995,19 E FLORAL AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_226_16,-74.603129,39.443658,25 E FLORAL AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_226_17,-74.5343115,39.4749985,29 E FLORAL AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_226_19,-74.54773514,39.47683918,35 E FLORAL AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_226_20,-74.55548591,39.47438822,39 E FLORAL AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_226_21,-74.5662695,39.480762,43 E FLORAL AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_226_23,-74.5206745,39.5094955,4 E ASHLAND AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_226_25,-74.5369115,39.3134245,12 E ASHLAND AVE,PLEASANTVILLE CITY,16,1926,1,RES1,3001 -0119_226_26,-74.53602127,39.47525945,16 E ASHLAND AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_226_27,-74.55072665,39.47782285,20 E ASHLAND AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_226_28,-74.55297413,39.47157628,24 E ASHLAND AVE,PLEASANTVILLE CITY,16,1927,1,RES1,3001 -0119_226_29,-74.55681071,39.47089761,28 E ASHLAND AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_226_30,-74.53575562,39.48873713,34 E ASHLAND AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_226_32,-74.58108097,39.47285265,40 E ASHLAND AVE,PLEASANTVILLE CITY,16,1923,1,RES1,3001 -0119_226_33,-74.58557277,39.48768629,48 E ASHLAND AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_226_5,-74.506657,39.4781495,1310 S MAIN ST,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_226_9,-74.48747336,39.49528318,1316 S MAIN ST,PLEASANTVILLE CITY,15,1949,1,RES1,3001 -0119_228_10,-74.47041737,39.4961839,18 E FLORAL AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_228_11,-74.51227651,39.48263676,22 E FLORAL AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_228_13,-74.49062042,39.51549635,30 E FLORAL AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_228_15,-74.553149,39.4662605,38 E FLORAL AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_228_17,-74.45760458,39.512527,1201 CLEMATIS AVE,PLEASANTVILLE CITY,16,1969,1,RES1,3001 -0119_228_17.02,-74.494985,39.4719475,33 INDIAN LANE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_228_17.03,-74.45486301,39.50131498,25 INDIAN LANE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_228_19,-74.50331425,39.45761287,1210 S MAIN ST,PLEASANTVILLE CITY,,1910,1,RES1,3001 -0119_228_20,-74.52363646,39.44424066,1208 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_228_37,-74.49050105,39.44959941,1204 S MAIN ST,PLEASANTVILLE CITY,15,1865,1,RES1,3001 -0119_228_5,-74.527509,39.455235,2 E FLORAL AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_228_7,-74.45157681,39.49416997,6 E FLORAL AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_228_8,-74.45901373,39.49543207,10 E FLORAL AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_228_9,-74.46793911,39.49381183,16 E FLORAL AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_23_10,-74.63590358,39.43406392,1200 HARRISON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_23_12,-74.76832731,39.3493311,500 FERNWOOD AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_23_13,-74.57790147,39.35459873,505 TREMONT AVE,PLEASANTVILLE CITY,16,2006,1,RES3A,3001 -0119_23_4,-74.59494567,39.3633163,1212 HARRISON AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_23_6,-74.59368206,39.34600199,1208 HARRISON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_23_7,-74.56087638,39.36228193,1206 HARRISON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_230_1,-74.52583596,39.42140867,1202 S MAIN ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_230_11,-74.45123996,39.49373225,35 VAN MAR AVE,PLEASANTVILLE CITY,16,1924,1,RES1,3001 -0119_230_12,-74.474342,39.4874145,41 VAN MAR AVE,PLEASANTVILLE CITY,15,1953,1,GOV1,3004 -0119_230_3,-74.51376569,39.44354299,3 VAN MAR AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_230_4,-74.51624596,39.45157466,7 VAN MAR AVE,PLEASANTVILLE CITY,15,1939,1,RES1,3001 -0119_230_5,-74.4994455,39.4679485,13 VAN MAR AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_230_6,-74.51820901,39.46496617,19 VAN MAR AVE,PLEASANTVILLE CITY,16,1923,1,RES1,3001 -0119_230_8,-74.47166935,39.48452569,23 VAN MAR AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_230_9,-74.45217667,39.49441129,27 VAN MAR AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_232_1,-74.49237133,39.42187953,4 VAN MAR AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_232_10,-74.51619886,39.45652293,34 VAN MAR AVE,PLEASANTVILLE CITY,16,1919,1,GOV1,3004 -0119_232_12,-74.47156184,39.48255498,36 VAN MAR AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_232_14,-74.57039047,39.41439932,1104 S MAIN ST,PLEASANTVILLE CITY,,1950,1,RES1,3001 -0119_232_17,-74.515126,39.402907,1112 S MAIN ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_232_19,-74.6046125,39.423728,1106 S MAIN ST,PLEASANTVILLE CITY,15,1845,1,GOV1,3004 -0119_232_4,-74.50517007,39.42981439,10 VAN MAR AVE,PLEASANTVILLE CITY,16,1925,1,COM3,3004 -0119_232_5,-74.483466,39.44434,14 VAN MAR AVE,PLEASANTVILLE CITY,15,1925,1,COM1,3004 -0119_232_6,-74.4892275,39.4525295,16 VAN MAR AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3004 -0119_232_7,-74.510662,39.437541,22 VAN MAR AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_232_8,-74.52618353,39.44965498,26 VAN MAR AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_232_9,-74.50086086,39.46778974,30 VAN MAR AVE,PLEASANTVILLE CITY,16,1923,1,RES1,3001 -0119_237_1,-74.366852,39.4127565,1000 S MAIN ST,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_237_11,-74.51138577,39.39768485,39 FRAMBES AVE,PLEASANTVILLE CITY,16,1926,1,RES1,3001 -0119_237_12,-74.48197026,39.43272581,1006 S MAIN ST,PLEASANTVILLE CITY,,1950,1,RES1,3001 -0119_237_2,-74.524759,39.3935655,1004 S MAIN ST,PLEASANTVILLE CITY,15,1913,1,RES1,3001 -0119_237_3,-74.520371,39.3967475,7 FRAMBES AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_237_4,-74.517479,39.4102915,9 FRAMBES AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_237_6,-74.49489955,39.43266823,15 FRAMBES AVE,PLEASANTVILLE CITY,16,1918,1,RES1,3001 -0119_237_8,-74.4999965,39.4411635,25 FRAMBES AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_237_9,-74.52173097,39.38780902,37 FRAMBES AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_238_10,-74.359995,39.41240717,22 FRAMBES AVE,PLEASANTVILLE CITY,15,1919,1,RES1,3001 -0119_238_11,-74.51818866,39.38870949,24 FRAMBES AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_238_12,-74.51723211,39.39532919,28 FRAMBES AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_238_14,-74.49125598,39.41837717,38 FRAMBES AVE,PLEASANTVILLE CITY,16,1922,1,RES1,3001 -0119_238_15,-74.9517525,39.519398,9 RYON AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_238_16,-74.9289185,39.5226,15 RYON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_238_17,-74.95102049,39.52171367,17 RYON AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_238_18,-74.8841205,39.5956225,21 RYON AVE,PLEASANTVILLE CITY,15,1928,1,GOV1,3004 -0119_238_19,-74.78498262,39.65027787,25 RYON AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_238_2,-74.80165938,39.62613888,932 S MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_238_20,-74.7748681,39.66625758,29 RYON AVE,PLEASANTVILLE CITY,16,1926,1,RES1,3001 -0119_238_21,-74.79611414,39.65207458,33 RYON AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_238_22,-74.369825,39.4164835,37 RYON AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_238_23,-74.912196,39.515504,5 RYON AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_238_24,-74.9152655,39.4670215,3 RYON AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_238_6,-74.7837085,39.640892,6 FRAMBES AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_238_7,-74.78558185,39.65979116,10 FRAMBES AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_239_1,-74.7735125,39.6050185,912-918 S MAIN ST,PLEASANTVILLE CITY,,1971,1,RES1,3001 -0119_239_10,-74.79786734,39.63283963,24 RYON AVE,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_239_11,-74.85656751,39.61078232,28 RYON AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_239_12,-74.92435017,39.50607953,32 RYON AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_239_13,-74.9285285,39.519507,36 RYON AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_239_15,-74.82602481,39.57008899,11 E PARK AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_239_16,-74.71434463,39.63506426,15 E PARK AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_239_17,-74.78105916,39.63567513,17 E PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_239_18,-74.50782417,39.44632249,21 E PARK AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_239_19,-74.49391817,39.45372901,25 E PARK AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_239_20,-74.45824535,39.48424497,29 E PARK AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_239_21,-74.87233884,39.60366967,33 E PARK AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_239_22,-74.65679634,39.53018847,3 E PARK AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_239_4,-74.64717841,39.53109914,902 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_239_5,-74.56304433,39.50501899,900 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_239_6,-74.50101004,39.44825944,8 RYON AVE,PLEASANTVILLE CITY,15,1938,1,RES1,3001 -0119_239_8,-74.87244633,39.59500261,16 RYON AVE,PLEASANTVILLE CITY,43,1940,2,RES1,3001 -0119_239_9,-74.80217052,39.60723865,20 RYON AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_24_1,-74.54451791,39.38388616,1118 HARRISON AVE,PLEASANTVILLE CITY,15,1906,1,RES1,3001 -0119_24_10,-74.49135214,39.43554525,1100 HARRISON AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_24_12,-74.520112,39.417536,1014 HARRISON AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_24_14,-74.49487,39.4254805,1012 HARRISON AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_24_18,-74.5388045,39.3909845,1119 S NEW RD,PLEASANTVILLE CITY,43,1920,1,RES1,3001 -0119_24_22,-74.59864445,39.33005684,1113 S NEW RD,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_24_24,-74.56527367,39.40880175,1103 S NEW RD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_24_25,-74.51440269,39.41186855,1011 S NEW RD,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_24_29,-74.4965095,39.4347185,1005 S NEW RD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_24_3,-74.60672267,39.32346948,1114 HARRISON AVE,PLEASANTVILLE CITY,15,1913,1,GOV1,3004 -0119_24_30,-74.3635585,39.410314,1004 HARRISON AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_24_30.01,-74.82859625,39.44419855,515 W PARK AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_24_31,-74.3597205,39.4118525,513 W PARK AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_24_32,-74.455897,39.379394,509 W PARK AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_24_34,-74.5230445,39.394336,501 W PARK AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_24_36,-74.51744848,39.39958934,505 W PARK AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_24_5,-74.59316594,39.4212202,1108 HARRISON AVE,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_24_8,-74.5728915,39.429863,1104 HARRISON AVE,PLEASANTVILLE CITY,16,2016,1,RES1,3001 -0119_240_1,-74.48160702,39.43470932,1000 CLEMATIS AVE,PLEASANTVILLE CITY,16,1922,1,RES1,3001 -0119_240_3,-74.4988463,39.41634648,113 FRAMBES AVE,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_240_5,-74.57507155,39.42945586,121 FRAMBES AVE,PLEASANTVILLE CITY,16,1947,1,RES1,3001 -0119_240_7,-74.59838469,39.41246956,127 FRAMBES AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_240_9,-74.59182545,39.4332958,137 FRAMBES AVE,PLEASANTVILLE CITY,16,1960,1,GOV1,3004 -0119_241_1,-74.495855,39.424931,922 CLEMATIS AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_241_11,-74.51514745,39.38730445,101 RYON AVE,PLEASANTVILLE CITY,16,1920,1,RES3A,3001 -0119_241_12,-74.51938477,39.39586625,105 RYON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_241_13,-74.48670531,39.42252755,109 RYON AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_241_14,-74.50922801,39.40838766,115 RYON AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_241_15,-74.5110235,39.402755,117 RYON AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_241_16,-74.505071,39.424924,121 RYON AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_241_17_BLDG,-74.50121403,39.43200867,125 RYON AVE 2F,PLEASANTVILLE CITY,,1900,1,RES1,3001 -0119_241_18,-74.48810027,39.43854282,129 RYON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_241_19,-74.52930298,39.38218268,133 RYON AVE,PLEASANTVILLE CITY,15,1930,3,RES1,3001 -0119_241_2,-74.50282722,39.43473008,104 FRAMBES AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_241_3,-74.47828449,39.45694571,112 FRAMBES AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_241_5,-74.51594837,39.40133868,120 FRAMBES AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_241_6,-74.51544028,39.39487511,122 FRAMBES AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_241_9,-74.504868,39.408289,136 FRAMBES AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_242_1,-74.81396786,39.63594955,101 E PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_242_10,-74.83046309,39.6429656,137 E PARK AVE,PLEASANTVILLE CITY,15,1925,1,COM1,3004 -0119_242_11,-74.95591487,39.52803253,102 RYON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3004 -0119_242_12,-74.8843955,39.5963075,106 RYON AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_242_13,-74.78964205,39.64169874,110 RYON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_242_15,-74.8063845,39.645137,118 RYON AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_242_16,-74.43517141,39.35890537,122 RYON AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_242_17,-74.3810125,39.4162325,126 RYON AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_242_18,-74.51770762,39.38871082,130 RYON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_242_19,-74.51945763,39.3966597,134 RYON AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_242_2,-74.928245,39.480449,105 E PARK AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_242_3,-74.90597177,39.53539765,109 E PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_242_4,-74.95043674,39.51363104,113 E PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_242_5,-74.9541635,39.5285305,117 E PARK AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_242_6,-74.89100125,39.557523,121 E PARK AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_242_7,-74.76168938,39.64042981,125 E PARK AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_242_9,-74.77061523,39.66230296,133 E PARK AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_243_1,-74.75620026,39.3020359,614 S MAIN ST,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_243_11,-74.57137968,39.37103199,16 OAKLAND AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_243_13,-74.59440708,39.35865812,7 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1885,1,COM1,3002 -0119_243_14,-74.612665,39.365515,9 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1906,1,RES1,3001 -0119_243_16,-74.6326665,39.3508355,13 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_243_17,-74.62723059,39.36086081,15 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_243_19,-74.5646555,39.368215,3 E EDGEWATER AVE,PLEASANTVILLE CITY,43,1929,4,RES1,3001 -0119_243_2,-74.63405884,39.3190375,610 S MAIN ST,PLEASANTVILLE CITY,,1928,1,RES1,3001 -0119_243_3,-74.60040524,39.34133154,604 S MAIN ST,PLEASANTVILLE CITY,15,1886,1,RES1,3001 -0119_243_5,-74.782275,39.31481,8 OAKLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_243_8,-74.55034469,39.36854663,10 OAKLAND AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_243_9,-74.548965,39.38254,12 OAKLAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_244_1,-74.5826945,39.4324655,16 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_244_10,-74.50325883,39.43141105,414 PROSPECT AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_244_12,-74.50948837,39.47250068,421 S EDGELEY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_244_13,-74.5964555,39.41968,419 S EDGELEY AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_244_14,-74.5705999,39.41178839,417 S EDGELEY AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_244_15,-74.43728304,39.48880466,401 S EDGELEY AVE,PLEASANTVILLE CITY,16,1979,1,RES1,3001 -0119_244_17,-74.503164,39.4111645,17 E WRIGHT ST,PLEASANTVILLE CITY,16,1953,1,COM1,3004 -0119_244_2,-74.60351628,39.43368307,18 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_244_3,-74.50497688,39.4784307,20 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_244_5,-74.59111268,39.33308251,24 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_244_6,-74.6091305,39.321916,26 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_244_7,-74.56717572,39.3501087,28 E BAYVIEW AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_244_8,-74.531338,39.3850195,30 E BAYVIEW AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_245_18,-74.60687565,39.33067875,418 S EDGELEY AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_245_2,-74.56764566,39.36889673,100 E BAYVIEW AVE,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_245_20,-74.57440187,39.33431021,71 E WRIGHT ST,PLEASANTVILLE CITY,16,1968,1,IND2,3004 -0119_245_22,-74.5474115,39.3889485,73 E WRIGHT ST,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_245_25,-74.586033,39.423393,47 E WRIGHT ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_245_27,-74.63657883,39.43123947,75 E WRIGHT ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_245_3,-74.63306532,39.4201254,108 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1987,1,RES3A,3001 -0119_245_30,-74.5066325,39.493021,69 E WRIGHT ST,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_245_5,-74.56454502,39.35785608,126 E BAYVIEW AVE,PLEASANTVILLE CITY,14,1915,1,RES1,3001 -0119_245_7,-74.61237331,39.34638506,130 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_245_7.01,-74.56878968,39.35410601,77 E WRIGHT ST,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_245_8,-74.6370342,39.34221216,136 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1900,1,COM1,3004 -0119_246_1,-74.81763016,39.53752703,354 S MAIN ST,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_246_2,-74.4902273,39.43792957,5 ANSLEY BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_246_4,-74.530919,39.469932,2 E WRIGHT ST,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_247_1,-74.3673085,39.406124,25 ANSLEY BLVD,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_247_3,-74.515027,39.400505,30 E WRIGHT ST,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_247_4,-74.43546866,39.36869766,23 ANSLEY BLVD,PLEASANTVILLE CITY,16,1947,1,RES1,3001 -0119_247_5,-74.3883345,39.390718,19 ANSLEY BLVD,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_247_6,-74.4596375,39.353857,15 ANSLEY BLVD,PLEASANTVILLE CITY,16,1927,1,RES1,3001 -0119_247_8,-74.45451173,39.37375968,24 E WRIGHT ST,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_247_9,-74.36732682,39.41313266,20 E WRIGHT ST,PLEASANTVILLE CITY,16,1960,2,RES1,3001 -0119_248_10,-74.5233935,39.395306,350 S EDGELEY AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_248_11,-74.5985505,39.3289825,68 E WRIGHT ST,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_248_12,-74.46695785,39.4888368,62 E WRIGHT ST,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_248_14,-74.552574,39.4210565,58 E WRIGHT ST,PLEASANTVILLE CITY,16,1948,1,GOV1,3004 -0119_248_15,-74.5124715,39.4341835,52 E WRIGHT ST,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_248_2,-74.55166809,39.36857132,353 S FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3004 -0119_248_3,-74.54225946,39.3891182,355 S FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_248_4,-74.60130805,39.4348278,69 ROOSEVELT DR,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_248_5,-74.53657698,39.41558141,63 ROOSEVELT DR,PLEASANTVILLE CITY,16,1950,1,GOV1,3004 -0119_248_7,-74.51904888,39.41363782,59 ROOSEVELT DR,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_248_8,-74.50522928,39.42627828,53 ANSLEY BLVD,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_249_1,-74.52878845,39.44478685,331 S EDGELEY AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_249_3,-74.482883,39.3478215,28 ANSLEY BLVD,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_249_4,-74.49788105,39.44259126,23 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_249_5,-74.50273242,39.43020486,19 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES3B,3001 -0119_249_6,-74.493293,39.4340135,15 TUNIS AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_249_9,-74.4670268,39.45634513,11 TUNIS AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_25_1,-74.9206035,39.477117,1422 COLUMBIA AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_25_11,-74.808161,39.534095,1400 COLUMBIA AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_25_12,-74.9188389,39.51965721,314 TILTON RD,PLEASANTVILLE CITY,15,1948,1,RES1,3001 -0119_25_13,-74.44760457,39.48449025,315 W ASHLAND AVE,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_25_15,-74.876392,39.594276,311 W ASHLAND AVE,PLEASANTVILLE CITY,16,2014,1,RES1,3001 -0119_25_16,-74.93307554,39.52659068,310 TILTON RD,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_25_20,-74.8828525,39.596685,306 TILTON RD,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_25_23,-74.9252055,39.5092505,305 W ASHLAND AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_25_24,-74.736641,39.7210575,1415 MCKINLEY AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_25_28,-74.7715225,39.6591415,1411 MCKINLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_25_30,-74.729277,39.64418,1407 MCKINLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_25_32,-74.9483195,39.523606,1403 MCKINLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_25_4,-74.79898607,39.6284113,1414 COLUMBIA AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_25_6,-74.52764596,39.46251167,1410 COLUMBIA AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_25_9,-74.78072744,39.62501416,1404 COLUMBIA AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_250_10,-74.368236,39.4064385,56 ANSLEY BLVD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_250_11,-74.4016725,39.391162,52 ANSLEY BLVD,PLEASANTVILLE CITY,16,1948,1,RES3A,3001 -0119_250_12,-74.4587505,39.354275,48 ANSLEY BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_250_15,-74.384114,39.3916705,44 ANSLEY BLVD,PLEASANTVILLE CITY,16,1920,1,RES3A,3001 -0119_250_3,-74.40806739,39.38087916,65 TUNIS AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_250_4,-74.39531724,39.38822292,61 TUNIS AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_250_5,-74.49262679,39.33451786,59 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_250_6,-74.49342548,39.34036383,53 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_250_9,-74.36026534,39.41626653,62 ANSLEY BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_254_1,-74.7585673,39.44581805,300 S FRANKLIN BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_257_2,-74.5283105,39.4006535,300 S CHESTER AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_258_1.01,-74.6277175,39.4139275,320 S HAMPDEN CT,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_258_1.02,-74.56415925,39.3691751,310 S HAMPDEN CT,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_258_10,-74.83405567,39.41192021,324 E BAYVIEW AVE,PLEASANTVILLE CITY,14,1928,1,RES1,3001 -0119_258_12,-74.42268715,39.37274502,328 E BAYVIEW AVE,PLEASANTVILLE CITY,14,1910,1,RES1,3001 -0119_258_14,-74.3654591,39.40714064,332 E BAYVIEW AVE,PLEASANTVILLE CITY,14,1910,1,RES1,3001 -0119_258_16,-74.64667447,39.53482334,344 E BAYVIEW AVE,PLEASANTVILLE CITY,,0,1,COM1,3004 -0119_258_5,-74.53159174,39.47069394,312 E BAYVIEW AVE,PLEASANTVILLE CITY,13,1912,1,RES1,3001 -0119_259_10,-74.50667093,39.32402117,348 S MAIN ST,PLEASANTVILLE CITY,,1950,1,RES1,3001 -0119_259_11_B01,-74.81048266,39.64262802,334 S MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_259_12,-74.79340166,39.63980447,332 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_259_13,-74.70872658,39.64029416,326 S MAIN ST,PLEASANTVILLE CITY,,1955,1,RES1,3001 -0119_259_15,-74.64547967,39.529341,306 S MAIN ST,PLEASANTVILLE CITY,,2010,1,COM1,3004 -0119_259_17,-74.4942205,39.3307255,45 E DECATUR AVE,PLEASANTVILLE CITY,16,1956,1,GOV1,3004 -0119_259_18,-74.64909898,39.53049667,49 E DECATUR AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_259_20,-74.460234,39.3552585,305 S FRANKLIN BLVD,PLEASANTVILLE CITY,16,1947,1,RES1,3001 -0119_259_21,-74.4973755,39.336813,66 TUNIS AVE,PLEASANTVILLE CITY,16,1945,2,RES1,3001 -0119_259_22,-74.46046643,39.47120055,62 TUNIS AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_259_23,-74.5083255,39.462302,58 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_259_24,-74.52260765,39.44424503,54 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_259_25,-74.4823875,39.44084,50 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_259_26,-74.50149827,39.43332808,44 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_259_27,-74.65308082,39.62342257,38 TUNIS AVE,PLEASANTVILLE CITY,15,1948,1,COM1,3004 -0119_259_29,-74.70188345,39.56610851,32 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_259_30,-74.647837,39.529601,28 TUNIS AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_259_32,-74.423201,39.357232,26 TUNIS AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_259_34,-74.74205,39.64055,22 TUNIS AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_259_36,-74.645688,39.5529835,6 TUNIS AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_259_37,-74.52228243,39.31637088,10 TUNIS AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_259_38,-74.52341165,39.31709744,39 E DECATUR AVE,PLEASANTVILLE CITY,15,1926,1,RES3A,3001 -0119_259_39,-74.7851967,39.64267015,31 E DECATUR AVE,PLEASANTVILLE CITY,16,1946,1,RES1,3001 -0119_259_4,-74.58657697,39.3861667,13 E DECATUR AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_259_40,-74.67791398,39.55926582,55 E DECATUR AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_259_41,-74.49371873,39.44797902,301 S FRANKLIN BLVD,PLEASANTVILLE CITY,43,1951,2,RES1,3001 -0119_259_42,-74.512656,39.4292925,63 E DECATUR AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_259_43,-74.83944869,39.52677132,61 E DECATUR AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_259_44,-74.70213563,39.57426824,59 E DECATUR AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_259_5,-74.55138737,39.42674583,17 E DECATUR AVE,PLEASANTVILLE CITY,43,1938,2,RES1,3001 -0119_259_6,-74.958329,39.511555,21 E DECATUR AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_259_7,-74.88384382,39.5839279,25 E DECATUR AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3002 -0119_259_8,-74.78530482,39.66163645,33 E DECATUR AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_259_9,-74.41472394,39.3677998,37 E DECATUR AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_26_1,-74.605833,39.5050385,318 W ASHLAND AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_26_11,-74.680113,39.545438,314 W ASHLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_26_12,-74.73071517,39.45356158,313 FERNWOOD AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_26_13,-74.6450315,39.623543,312 W ASHLAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_26_16,-74.82455,39.4936875,311 FERNWOOD AVE,PLEASANTVILLE CITY,15,1964,1,RES1,3001 -0119_26_17,-74.7847165,39.6086935,308 W ASHLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_26_18,-74.5386745,39.533605,309 FERNWOOD AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_26_19,-74.79474224,39.63593216,306 W ASHLAND AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_26_22,-74.65186729,39.53031837,307 FERNWOOD AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_26_23,-74.80461147,39.63560166,300 W ASHLAND AVE,PLEASANTVILLE CITY,16,1979,1,RES1,3001 -0119_26_27,-74.504854,39.44489467,1311 MCKINLEY AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_26_3,-74.839575,39.479151,1314 COLUMBIA AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_26_30,-74.76262553,39.62966565,1301 MCKINLEY AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_26_30.01,-74.70563191,39.63567238,303 FERNWOOD AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_26_5,-74.73292406,39.45406382,1310 COLUMBIA AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_26_6,-74.3732855,39.403292,1308 COLUMBIA AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_26_8,-74.44091734,39.37140524,1304 COLUMBIA AVE,PLEASANTVILLE CITY,16,2001,1,RES3A,3001 -0119_26_9,-74.83990278,39.37315288,319 FERNWOOD AVE,PLEASANTVILLE CITY,16,1983,1,GOV1,3004 -0119_260_1,-74.93964248,39.52164674,303 E BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1920,1,RES3B,3001 -0119_260_12,-74.526826,39.404688,213 LYONS CT,PLEASANTVILLE CITY,15,1928,1,COM1,3004 -0119_260_16,-74.43724764,39.49199071,215 LYONS CT,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_260_19,-74.427841,39.373009,218 S HAMPDEN CT,PLEASANTVILLE CITY,15,1890,1,RES3A,3001 -0119_260_20,-74.52090533,39.4489395,217 LYONS CT,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_260_21,-74.514444,39.38582102,220 S HAMPDEN CT,PLEASANTVILLE CITY,15,1885,1,RES3A,3001 -0119_260_26,-74.49266504,39.45472684,223 LYONS CT,PLEASANTVILLE CITY,15,1920,1,RES3A,3001 -0119_260_27,-74.52592211,39.39437481,224 S HAMPDEN CT,PLEASANTVILLE CITY,16,1905,1,RES1,3001 -0119_260_28,-74.508275,39.415555,302 TUNIS AVE,PLEASANTVILLE CITY,16,1930,1,RES1,3001 -0119_260_5,-74.52478143,39.46243474,204 S HAMPDEN CT,PLEASANTVILLE CITY,45,1915,3,RES1,3001 -0119_260_6,-74.5160885,39.392945,207 LYONS CT,PLEASANTVILLE CITY,43,1915,2,RES1,3001 -0119_260_7,-74.482804,39.3458335,206 S HAMPDEN CT,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_260_9,-74.461808,39.3533215,208 S HAMPDEN CT,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_261_1,-74.80228183,39.64684499,300 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_261_11,-74.60009355,39.37087931,116 S HAMPDEN CT,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_261_14,-74.4342895,39.36969383,111 LYONS CT,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_261_15,-74.909869,39.486965,112 S HAMPDEN CT,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_261_16,-74.44235467,39.36990649,109 LYONS CT,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_261_17,-74.80138554,39.62645646,110 S HAMPDEN CT,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_261_18,-74.93688118,39.52205198,107 LYONS CT,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_261_19,-74.57194055,39.51088987,108 S HAMPDEN CT,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_261_22,-74.95769067,39.512682,103 LYONS CT,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_261_23,-74.74727294,39.63547967,102 S HAMPDEN CT,PLEASANTVILLE CITY,15,1920,1,RES1,3002 -0119_261_24,-74.59435045,39.37938023,101 LYONS CT,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_261_3,-74.52614431,39.38346944,310 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,2015,1,RES1,3001 -0119_261_5,-74.787913,39.6436795,122 S HAMPDEN CT,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_261_7,-74.55280333,39.42812101,118 S HAMPDEN CT,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_262_1,-74.59094117,39.37767134,1425 JEFFERSON AVE,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_262_12,-74.64279565,39.43148581,730 TILTON RD,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_262_12.01,-74.80613652,39.40482108,736 TILTON RD,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_262_6,-74.81922464,39.36376287,710 TILTON RD,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_262_8,-74.64358534,39.36822863,714 TILTON RD,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_262_9,-74.59394337,39.36510263,718 TILTON RD,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_266_1,-74.50285408,39.3392952,15 CHARLES AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_266_2,-74.5719715,39.5050135,17 CHARLES AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_266_3,-74.61312915,39.53963454,21 CHARLES AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_266_4,-74.63988166,39.52674597,25 CHARLES AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_266_5,-74.638096,39.537554,31 CHARLES AVE,PLEASANTVILLE CITY,15,1938,1,RES1,3001 -0119_266_6,-74.64414,39.5247745,33 CHARLES AVE,PLEASANTVILLE CITY,45,1938,2,RES3B,3001 -0119_266_7,-74.6975405,39.51920317,39 CHARLES AVE,PLEASANTVILLE CITY,15,1915,1,RES3A,3001 -0119_267_1,-74.72236782,39.45275799,15 E ADAMS AVE,PLEASANTVILLE CITY,43,1893,2,COM4,3004 -0119_267_10,-74.49879734,39.44803074,142 MADISON AVE,PLEASANTVILLE CITY,15,1935,1,RES3A,3001 -0119_267_11,-74.507476,39.45403583,138 MADISON AVE,PLEASANTVILLE CITY,43,1932,2,RES1,3001 -0119_267_12,-74.5187975,39.437798,18 CHARLES AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_267_13,-74.52310287,39.45197605,24 CHARLES AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3004 -0119_267_14,-74.46830215,39.34408616,149 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_267_15,-74.4958305,39.34195,145 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_267_16,-74.50817883,39.3382845,139 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_267_2,-74.734815,39.4405565,19 E ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_267_3,-74.725702,39.456037,21-23 E ADAMS AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_267_5,-74.79404617,39.45873707,25 E ADAMS AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_267_7,-74.84717831,39.48196198,153 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1955,1,RES3A,3001 -0119_267_8,-74.50909583,39.4472045,151 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1956,1,RES1,3004 -0119_267_9,-74.60660981,39.39345597,144 MADISON AVE,PLEASANTVILLE CITY,15,1934,1,RES1,3001 -0119_268_1,-74.64697163,39.62452761,140 N FRANKLIN BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_268_10,-74.8813775,39.5913865,137 CHARLES AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_268_11,-74.79689,39.6095355,141 CHARLES AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_268_14,-74.80090684,39.63867347,155 CHARLES AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_268_3,-74.80432175,39.52366123,109 CHARLES AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_268_4,-74.8470415,39.540102,113 CHARLES AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3002 -0119_268_6,-74.7740565,39.6159525,121 CHARLES AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_268_7,-74.77762754,39.6257596,125 CHARLES AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_268_8,-74.77974898,39.63510615,129 CHARLES AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_269_1,-74.4918015,39.4438955,164 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_269_11,-74.64344209,39.53202341,120 CHARLES AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_269_12,-74.6464975,39.550649,124 CHARLES AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3002 -0119_269_14,-74.61753693,39.59955687,132 CHARLES AVE,PLEASANTVILLE CITY,16,1946,1,RES1,3001 -0119_269_15,-74.64787913,39.62473093,138 CHARLES AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_269_17,-74.8143345,39.534123,144 CHARLES AVE,PLEASANTVILLE CITY,15,1925,1,RES3A,3001 -0119_269_19,-74.71639655,39.57736234,148 CHARLES AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_269_20,-74.73975479,39.63848534,150 CHARLES AVE,PLEASANTVILLE CITY,15,1946,1,RES1,3001 -0119_269_23,-74.63070011,39.61129986,165 E ADAMS AVE,PLEASANTVILLE CITY,16,1997,1,GOV1,3004 -0119_269_25,-74.6293265,39.55693604,161 E ADAMS AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_269_27,-74.6489825,39.521616,155 E ADAMS AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_269_28,-74.63979834,39.53113352,145 E ADAMS AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_269_29,-74.6398947,39.52760029,141 E ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_269_3,-74.52972553,39.44926538,105 E ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_269_30,-74.60806783,39.50520001,139 E ADAMS AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_269_31,-74.35535915,39.41428654,135 E ADAMS AVE,PLEASANTVILLE CITY,43,1929,2,RES1,3001 -0119_269_32,-74.50338161,39.34262839,129 E ADAMS AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_269_33,-74.4906305,39.336584,127 E ADAMS AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_269_34,-74.48221534,39.35332708,123 E ADAMS AVE,PLEASANTVILLE CITY,43,1915,2,GOV1,3004 -0119_269_4,-74.47022184,39.34284149,107 E ADAMS AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_269_5,-74.46284143,39.35853133,109 E ADAMS AVE,PLEASANTVILLE CITY,43,1928,2,RES1,3001 -0119_269_6,-74.50125183,39.33763552,160 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_269_7,-74.6363485,39.528657,154 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_269_9,-74.63251813,39.52535936,112 CHARLES AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_27_1,-74.60832145,39.50354866,318 FERNWOOD AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_27_12,-74.62320462,39.43335243,315 TREMONT AVE,PLEASANTVILLE CITY,15,1900,1,RES3A,3001 -0119_27_13,-74.709501,39.429268,314 FERNWOOD AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_27_18,-74.61652105,39.48800666,309 TREMONT AVE,PLEASANTVILLE CITY,15,1920,1,RES3A,3001 -0119_27_19,-74.4230394,39.37488282,306 FERNWOOD AVE,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_27_23,-74.63147786,39.60817769,1219 MCKINLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_27_24,-74.855043,39.452095,1215 MCKINLEY AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_27_26,-74.73409472,39.45326686,1213 MCKINLEY AVE,PLEASANTVILLE CITY,15,1910,1,RES3A,3001 -0119_27_28,-74.43696602,39.37092568,1207 MCKINLEY AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_27_3,-74.54139608,39.45898378,1212 COLUMBIA AVE,PLEASANTVILLE CITY,15,1996,1,RES3A,3001 -0119_27_31,-74.81196,39.406557,301-305 TREMONT AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_27_33,-74.62504051,39.50519317,304 FERNWOOD AVE,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_27_5,-74.6216681,39.43355581,1210 COLUMBIA AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_27_6,-74.6375045,39.400951,1208 COLUMBIA AVE,PLEASANTVILLE CITY,45,1920,2,GOV1,3004 -0119_27_8,-74.6293405,39.3690325,1204 COLUMBIA AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_27_9,-74.37662656,39.41406483,1202 COLUMBIA AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_270_1,-74.50077484,39.45107053,800 CLEARVIEW AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_270_4_B01,-74.495783,39.3329815,201 E DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_272_22,-74.59867008,39.33922991,520 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_272_23,-74.56124182,39.36120253,526 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_273_1,-74.873245,39.4426695,602 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_273_37,-74.593476,39.3222435,105 LORAINE AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_273_39,-74.72436653,39.46146929,111 LORAINE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_273_4,-74.60728307,39.32191867,110 E MULBERRY AVE,PLEASANTVILLE CITY,15,1971,1,RES1,3001 -0119_273_40,-74.7246575,39.454417,113 LORAINE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_273_41,-74.75931359,39.44843933,115 LORAINE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_273_42,-74.7929895,39.460583,117 LORAINE AVE,PLEASANTVILLE CITY,43,1926,2,RES1,3001 -0119_273_43,-74.87071038,39.45348532,119 LORAINE AVE,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_273_45,-74.60006198,39.31990968,123 LORAINE AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_273_49,-74.60667638,39.32605559,127 LORAINE AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_273_54,-74.5815415,39.3408605,141 LORAINE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_273_9,-74.568993,39.3515915,120 E MULBERRY AVE,PLEASANTVILLE CITY,15,1971,1,RES1,3001 -0119_274_1,-74.46001404,39.48201526,104 LORAINE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_274_10,-74.5948695,39.311678,122 LORAINE AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_274_11,-74.58964667,39.32222534,124 LORAINE AVE,PLEASANTVILLE CITY,15,1928,1,GOV1,3004 -0119_274_13,-74.727055,39.455175,128 LORAINE AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_274_14,-74.7117825,39.4655185,130 LORAINE AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_274_17,-74.5830455,39.333582,136 LORAINE AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_274_19,-74.59941617,39.32291702,140 LORAINE AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_274_27,-74.6350615,39.318044,119 WALNUT AVE,PLEASANTVILLE CITY,15,1923,1,AGR1,3001 -0119_274_28,-74.63244377,39.36213434,123 WALNUT AVE,PLEASANTVILLE CITY,14,1930,1,RES1,3001 -0119_274_29,-74.689358,39.361539,127 WALNUT AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_274_3,-74.4521265,39.4983295,108 LORAINE AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_274_30,-74.5353025,39.4501905,131 WALNUT AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_274_32,-74.498593,39.50028983,135 WALNUT AVE (R),PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_274_4,-74.47484179,39.49421353,110 LORAINE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_274_43,-74.632546,39.426749,111 WALNUT AVE,PLEASANTVILLE CITY,16,1958,1,RES3A,3001 -0119_274_5,-74.47274272,39.49322404,112 LORAINE AVE,PLEASANTVILLE CITY,15,1930,1,GOV1,3004 -0119_274_7,-74.50426419,39.49340054,116 LORAINE AVE,PLEASANTVILLE CITY,14,1920,1,RES1,3003 -0119_274_8,-74.493152,39.5367915,118 LORAINE AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_275_28_C0302,-74.3570625,39.4146235,302 SKYLINE CONDOS,PLEASANTVILLE CITY,33,1989,1,RES1,3001 -0119_276_10,-74.63133529,39.36124304,714 CLEARVIEW AVE,PLEASANTVILLE CITY,15,2007,1,RES1,3001 -0119_276_16,-74.64459767,39.39434054,724 CLEARVIEW AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_276_17,-74.6217528,39.36281725,730 CLEARVIEW AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_276_3,-74.45189257,39.49532417,208 WALNUT AVE,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_276_8,-74.56766151,39.44968724,710 CLEARVIEW AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_277_1,-74.5132415,39.3256535,812-16 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_277_10,-74.47920829,39.34091961,17 CHATHAM AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_277_15,-74.4672655,39.3446955,27 CHATHAM AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_277_16,-74.388525,39.3913545,36 E READING AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_277_18,-74.49493253,39.33669917,33 CHATHAM AVE,PLEASANTVILLE CITY,16,1955,1,COM1,3004 -0119_277_2,-74.469125,39.345184,14 E READING AVE,PLEASANTVILLE CITY,43,1930,3,GOV1,3004 -0119_277_21,-74.59732707,39.34892516,808 N MAIN ST,PLEASANTVILLE CITY,15,1875,1,RES1,3001 -0119_277_22,-74.523438,39.317562,802 N MAIN ST,PLEASANTVILLE CITY,43,1875,3,RES1,3001 -0119_277_4,-74.462219,39.35954817,20 E READING AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_277_5,-74.49232,39.341287,24 E READING AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_277_6,-74.504035,39.3387985,26 E READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_277_9,-74.60035033,39.35823897,9 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_278_1,-74.84143585,39.42776697,100 E READING AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_278_11,-74.379406,39.418597,118 E READING AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_278_13,-74.528491,39.3847235,122 E READING AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_278_15,-74.5107135,39.4021925,126 E READING AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_278_19,-74.49033157,39.43566429,801 CLEARVIEW AVE,PLEASANTVILLE CITY,15,1960,1,RES1,3002 -0119_278_20,-74.71489268,39.40676704,105 CHATHAM AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_278_21,-74.82676572,39.3873374,107 CHATHAM AVE,PLEASANTVILLE CITY,16,1950,1,GOV1,3004 -0119_278_22,-74.79854055,39.41823461,109 CHATHAM AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_278_23,-74.4197605,39.3702,111 CHATHAM AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_278_24,-74.43013718,39.36935149,113 CHATHAM AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_278_25,-74.37264233,39.40932861,115 CHATHAM AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_278_26,-74.36717678,39.41385346,117 CHATHAM AVE,PLEASANTVILLE CITY,16,1950,1,GOV1,3004 -0119_278_27,-74.36605838,39.42364125,119 CHATHAM AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_278_28,-74.51800601,39.38359294,121 CHATHAM AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_278_29,-74.527785,39.387371,123 CHATHAM AVE,PLEASANTVILLE CITY,16,1975,1,GOV1,3004 -0119_278_3,-74.3898445,39.38992,101 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_278_4,-74.63427257,39.49199532,103 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_278_5,-74.39848781,39.39477314,106 E READING AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_278_7,-74.44093413,39.37054825,110 E READING AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_278_9,-74.35821517,39.41505901,114 E READING AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_28_1,-74.5821855,39.3772795,1116 COLUMBIA AVE,PLEASANTVILLE CITY,16,1981,1,RES1,3001 -0119_28_11,-74.60965278,39.39210108,312 TREMONT AVE,PLEASANTVILLE CITY,15,1999,1,GOV1,3004 -0119_28_12,-74.55297539,39.37401793,313 W GLENDALE AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_28_15,-74.36842018,39.42243252,308 TREMONT AVE,PLEASANTVILLE CITY,15,2000,1,RES1,3001 -0119_28_16,-74.55330375,39.36843207,311 W GLENDALE AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_28_19,-74.62291489,39.38151379,304 TREMONT AVE,PLEASANTVILLE CITY,15,2000,1,RES1,3001 -0119_28_20,-74.59213038,39.36983577,305 W GLENDALE AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_28_23,-74.63258217,39.45691748,1119-21 MCKINLEY AVE,PLEASANTVILLE CITY,45,1927,2,RES1,3001 -0119_28_24,-74.737049,39.4477205,1117 MCKINLEY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_28_25,-74.557022,39.476674,1115 MCKINLEY AVE,PLEASANTVILLE CITY,15,1909,1,RES1,3001 -0119_28_26,-74.63839657,39.43575421,1113 MCKINLEY AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_28_27,-74.74670447,39.45166034,1111 MCKINLEY AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_28_28,-74.66446316,39.40016706,1109 MCKINLEY AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_28_3,-74.56141363,39.36839682,1114 COLUMBIA AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_28_32,-74.36725654,39.41987768,1101 MCKINLEY AVE,PLEASANTVILLE CITY,16,1940,1,COM3,3004 -0119_28_4,-74.544061,39.3745235,1112 COLUMBIA AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_28_6,-74.65465177,39.36737117,1108 COLUMBIA AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_28_9,-74.5935805,39.3676455,1102 COLUMBIA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_283_1,-74.524679,39.315081,818 N MAIN ST,PLEASANTVILLE CITY,43,1956,4,RES1,3001 -0119_283_11,-74.47146487,39.34254384,815 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_283_12,-74.60529576,39.35083294,822 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_283_14,-74.44138106,39.3539782,11 STENTON PL,PLEASANTVILLE CITY,15,1840,1,RES1,3001 -0119_283_15,-74.48844955,39.33391284,13 STENTON PL,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_283_17,-74.50775743,39.33005734,17 STENTON PL,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_283_19,-74.563927,39.3554375,21 STENTON PL,PLEASANTVILLE CITY,16,1955,1,GOV1,3004 -0119_283_2,-74.50045945,39.33121283,6 CHATHAM AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_283_20,-74.56418493,39.36807371,23 STENTON PL,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_283_22,-74.57641501,39.3534803,29 STENTON PL,PLEASANTVILLE CITY,16,1952,1,GOV1,3004 -0119_283_5,-74.78259429,39.44366604,14 CHATHAM AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_283_7,-74.57679748,39.3656338,22 CHATHAM AVE,PLEASANTVILLE CITY,43,1925,2,GOV1,3004 -0119_283_9,-74.5141435,39.3277445,26 CHATHAM AVE,PLEASANTVILLE CITY,16,1965,1,AGR1,3001 -0119_284_1,-74.470548,39.3451255,100 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_284_10,-74.38232049,39.39548917,118 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_284_11,-74.40335593,39.38151687,120 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,COM4,3004 -0119_284_12,-74.3611705,39.4100385,122 CHATHAM AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_284_18,-74.51034291,39.32846233,824 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_284_2,-74.45903522,39.35462164,102 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_284_3,-74.50491822,39.34178405,104 CHATHAM AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_284_4,-74.50933517,39.33735799,106 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_284_5,-74.38444812,39.39306466,108 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_284_6,-74.3824251,39.39820461,110 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,GOV1,3004 -0119_284_7,-74.71137028,39.37202024,112 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_284_8,-74.75580924,39.4335094,114 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_284_9,-74.8244755,39.3979465,116 CHATHAM AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_289_1,-74.80536274,39.65888661,832 N MAIN ST,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_289_10,-74.5943125,39.36390554,16 STENTON PL,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_289_12,-74.5213665,39.3165705,20 STENTON PL,PLEASANTVILLE CITY,16,1960,1,GOV1,3004 -0119_289_14,-74.49356084,39.33104484,24 STENTON PL,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_289_2,-74.94957,39.5141195,840 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_289_21,-74.55618087,39.36104062,21 E WINDSOR AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_289_23,-74.5923675,39.343786,23 E WINDSOR AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_289_25,-74.59267084,39.35808387,845 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1982,1,GOV1,3004 -0119_289_4,-74.8247797,39.64757321,4 STENTON PL,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_289_5,-74.42111389,39.36325583,6 STENTON PL,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_289_7,-74.582703,39.345296,10 STENTON PL,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_289_7.01,-74.65259855,39.57324683,15 E WINDSOR AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_289_9,-74.57603768,39.35600001,12 STENTON PL,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_29_1,-74.526292,39.426794,1418 MCKINLEY AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_29_11,-74.47525019,39.44524369,208 TILTON RD,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_29_14,-74.52767315,39.39458333,209 W ASHLAND AVE,PLEASANTVILLE CITY,15,1936,1,RES1,3001 -0119_29_15,-74.5110295,39.401939,204 TILTON RD,PLEASANTVILLE CITY,15,1995,1,GOV1,3004 -0119_29_16,-74.5096575,39.415096,205 W ASHLAND AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_29_19,-74.52721784,39.39448218,1417 LANGSTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_29_23,-74.52831667,39.40119707,1409 LANGSTON AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_29_24,-74.51359515,39.3997799,1407 LANGSTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_29_25,-74.4407955,39.48723,203 W ASHLAND AVE,PLEASANTVILLE CITY,15,1928,1,GOV1,3004 -0119_29_26,-74.51794661,39.39724184,1405 LANGSTON AVE,PLEASANTVILLE CITY,16,1930,1,RES1,3001 -0119_29_27,-74.52696651,39.38263566,1401 LANGSTON AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_29_28,-74.45591348,39.37181783,1416 MCKINLEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_29_9,-74.3752604,39.41370085,215 W ASHLAND AVE,PLEASANTVILLE CITY,15,1989,1,GOV1,3004 -0119_290_29,-74.431624,39.364714,145 E DELILAH RD,PLEASANTVILLE CITY,,1955,1,RES1,3001 -0119_290_30,-74.78941817,39.64277103,850 N FRANKLIN BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_291_1,-74.93655813,39.48161325,850 N MAIN ST,PLEASANTVILLE CITY,,1920,1,RES1,3001 -0119_291_2,-74.85409836,39.61539391,858 N MAIN ST,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_291_4,-74.78783126,39.61420284,864 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_291_5,-74.82708009,39.61633459,19 E DELILAH RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_291_6,-74.88859115,39.46780102,23 E DELILAH RD,PLEASANTVILLE CITY,15,1905,1,GOV1,3004 -0119_292_1,-74.4744806,39.33969748,900 N MAIN ST,PLEASANTVILLE CITY,,1998,1,RES1,3001 -0119_292_11_C079A,-74.51335644,39.32613184,79A ATLANTIC AVE,PLEASANTVILLE CITY,33,1950,1,RES1,3001 -0119_292_4,-74.51282637,39.3294611,910 N MAIN ST,PLEASANTVILLE CITY,,1990,1,RES1,3001 -0119_292_6,-74.6254745,39.6060785,914 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_292_9,-74.7601875,39.6391825,26 E DELILAH RD,PLEASANTVILLE CITY,43,1900,2,GOV1,3004 -0119_294_12,-74.807295,39.5215055,33 PACIFIC AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_294_14,-74.5223325,39.318039,35 PACIFIC AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_294_18,-74.48091433,39.34229484,43 PACIFIC AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_294_2,-74.64328785,39.54459519,21 PACIFIC AVE,PLEASANTVILLE CITY,16,1952,1,GOV1,3004 -0119_294_20,-74.46639658,39.34359368,47-51 PACIFIC AVE,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_294_25,-74.72108,39.573276,53 PACIFIC AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_294_27_C032A,-74.6395375,39.5269995,32A ATLANTIC AVE,PLEASANTVILLE CITY,33,1950,1,GOV1,3004 -0119_294_28,-74.62600253,39.53037367,15 PACIFIC AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_294_4,-74.68229516,39.55566803,27 PACIFIC AVE,PLEASANTVILLE CITY,16,1940,1,GOV1,3004 -0119_294_6,-74.61589559,39.59904047,29 PACIFIC AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_294_8,-74.6963345,39.58878,25 E PACIFIC AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_294_9,-74.6513075,39.625274,31 PACIFIC AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_295_1_C078B,-74.75510966,39.63481596,78B ATLANTIC AVE,PLEASANTVILLE CITY,33,1950,1,RES1,3001 -0119_295_10,-74.92387223,39.48098689,141 PACIFIC AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_295_2,-74.7950298,39.60722767,127 PACIFIC AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_295_4,-74.79644033,39.61859901,131 PACIFIC AVE,PLEASANTVILLE CITY,15,1905,1,COM1,3004 -0119_296_1,-74.537681,39.5153595,2 PACIFIC AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_296_10,-74.56591925,39.35809138,12 PACIFIC AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_296_12,-74.56068632,39.36016748,14 PACIFIC AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_296_14,-74.56594782,39.36077842,18 PACIFIC AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_296_16,-74.57871668,39.34446023,22 PACIFIC AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_296_19,-74.59731682,39.34082449,24 PACIFIC AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_296_20,-74.57745237,39.5322273,28 PACIFIC AVE,PLEASANTVILLE CITY,15,1940,1,GOV1,3004 -0119_296_22,-74.64649145,39.51732016,30 PACIFIC AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_296_23,-74.64490017,39.527964,34 PACIFIC AVE,PLEASANTVILLE CITY,15,1920,1,COM1,3004 -0119_296_24,-74.649865,39.524259,36 PACIFIC AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_296_25,-74.64730006,39.53206412,42 PACIFIC AVE,PLEASANTVILLE CITY,16,1969,1,RES1,3001 -0119_296_26,-74.6425745,39.5390545,44 PACIFIC AVE,PLEASANTVILLE CITY,14,1950,1,RES1,3001 -0119_296_28,-74.6722715,39.5466375,46 PACIFIC AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_296_3,-74.86181162,39.43721217,940 N MAIN ST,PLEASANTVILLE CITY,14,1928,1,RES1,3001 -0119_296_30,-74.64947799,39.59855633,50 PACIFIC AVE,PLEASANTVILLE CITY,16,2006,1,GOV1,3004 -0119_296_33,-74.69467402,39.63802032,58 PACIFIC AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_296_37,-74.83886472,39.52779387,108 PACIFIC AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_296_39,-74.462248,39.3456625,112 PACIFIC AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_296_40,-74.4692305,39.3458935,122 PACIFIC AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_296_44,-74.80889279,39.5302731,65 E THOMPSON AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_296_45,-74.693538,39.58952,61 E THOMPSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_296_46,-74.5984469,39.59185969,59 E THOMPSON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_296_49,-74.64743167,39.5498525,53 E THOMPSON AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_296_51,-74.64655921,39.53577821,51 E THOMPSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_296_53,-74.62016015,39.531261,45 E THOMPSON AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_296_55,-74.61892809,39.55401593,43 E THOMPSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_296_57,-74.58785781,39.35838623,41 E THOMPSON AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_296_62,-74.5782945,39.3499,39 E THOMPSON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_296_65,-74.558532,39.3676225,27 E THOMPSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_296_71,-74.53730418,39.51563119,19 E THOMPSON AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_296_72,-74.85836729,39.48652501,17 E THOMPSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3004 -0119_296_75,-74.85827687,39.45290583,11 E THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_296_77,-74.74318535,39.49409422,7 E THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_296_78,-74.6329385,39.625927,63 E THOMPSON AVE,PLEASANTVILLE CITY,16,1974,1,GOV1,3004 -0119_296_8,-74.7473795,39.446717,952-54 N MAIN ST,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_298_1,-74.4759615,39.34217567,4 E THOMPSON AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_298_10,-74.7088245,39.42803973,1 E LINDLEY AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_298_11,-74.48555821,39.33446584,6 E THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_298_12,-74.47079586,39.34425685,8 E THOMPSON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_298_15,-74.4823875,39.34871,14 E THOMPSON AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_298_16,-74.72798743,39.44721547,16 E THOMPSON AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_298_18,-74.72798906,39.45894781,20 E THOMPSON AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_298_20,-74.7137863,39.46908915,24 E THOMPSON AVE,PLEASANTVILLE CITY,16,1950,1,GOV1,3004 -0119_298_22,-74.75364545,39.44910219,30 E THOMPSON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_298_23,-74.82606834,39.46423691,34 E THOMPSON AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_298_24,-74.87305527,39.43936312,38 E THOMPSON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_298_25,-74.87024174,39.4931683,42 E THOMPSON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_298_26,-74.55500862,39.35665482,46 E THOMPSON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_298_27,-74.573708,39.353055,50 E THOMPSON AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_298_28,-74.5743096,39.36494801,56 E THOMPSON AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_298_30,-74.58225041,39.33667386,60 E THOMPSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_298_32,-74.59028779,39.34860831,102 E THOMPSON AVE,PLEASANTVILLE CITY,16,2004,1,GOV1,3004 -0119_298_34,-74.61051903,39.34234621,106 E THOMPSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3004 -0119_298_36,-74.59472016,39.50574251,110 E THOMPSON AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_298_37,-74.64905649,39.53118004,1001 IOWA AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_298_39,-74.5818195,39.3466015,1015 IOWA AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_298_40,-74.55345421,39.36448629,109 E LINDLEY AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_298_43,-74.57085145,39.35527213,55 E LINDLEY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_298_45,-74.8608701,39.48629328,53 E LINDLEY AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_298_48,-74.85878689,39.447836,51 E LINDLEY AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_298_5,-74.4621595,39.35033,1008 N MAIN ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_298_52,-74.71158247,39.47251234,45 E LINDLEY AVE,PLEASANTVILLE CITY,16,1963,1,GOV1,3004 -0119_298_53,-74.73592371,39.4673765,43 E LINDLEY AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_298_54,-74.72524246,39.45682169,39 E LINDLEY AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_298_55,-74.7346985,39.4488055,35 E LINDLEY AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_298_56,-74.71196179,39.44728768,29 E LINDLEY AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_298_58,-74.485202,39.3488505,19 E LINDLEY AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_298_60,-74.4798445,39.337279,17 E LINDLEY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_298_61,-74.4745575,39.341359,15 E LINDLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_298_65,-74.46036695,39.35115064,7 E LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_298_67,-74.806351,39.432838,5 E LINDLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_298_8,-74.80662735,39.37512197,1012 N MAIN ST,PLEASANTVILLE CITY,15,1923,1,GOV1,3004 -0119_3_1,-74.43528679,39.49308294,134 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_3_10,-74.52304688,39.4675624,1527 BROAD ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_3_11,-74.501194,39.4650185,1505 BROAD ST,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_3_12,-74.51429028,39.44803531,1503 BROAD ST,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_3_13,-74.51213,39.441094,1501 BROAD ST,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_3_14.01,-74.4932495,39.426829,123 TILTON RD,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_3_14.02,-74.49016785,39.42952117,117 TILTON RD,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_3_14.03,-74.52362754,39.41973731,111 TILTON RD,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_3_2,-74.48692694,39.43961418,128 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_3_3,-74.51626156,39.44004903,122 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,GOV1,3004 -0119_3_4,-74.4902437,39.45392516,116 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_3_5,-74.50785343,39.46220485,110 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_3_6,-74.4560421,39.4852314,104 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,GOV1,3004 -0119_3_7,-74.461663,39.4920435,1531 BROAD ST,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_3_9,-74.47238917,39.48177607,1529 BROAD ST,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_30_1,-74.78121383,39.64318549,1318 MCKINLEY AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_30_10,-74.87618246,39.5948752,1300 MCKINLEY AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_30_12,-74.927108,39.508638,219 FERNWOOD AVE,PLEASANTVILLE CITY,16,1976,1,RES1,3001 -0119_30_17,-74.38301032,39.41735962,212 W ASHLAND AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_30_18,-74.9745025,39.5103795,213 FERNWOOD AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_30_2,-74.9707116,39.51708462,222 W ASHLAND AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_30_21,-74.52089017,39.39136656,206 W ASHLAND AVE,PLEASANTVILLE CITY,16,1979,1,RES1,3001 -0119_30_22,-74.75566449,39.66133884,209 FERNWOOD AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_30_24,-74.780353,39.6724415,207 FERNWOOD AVE,PLEASANTVILLE CITY,15,1922,1,GOV1,3004 -0119_30_25,-74.48702285,39.43353377,204 W ASHLAND AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_30_27,-74.500304,39.415031,202 W ASHLAND AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_30_28,-74.3576315,39.412214,205 FERNWOOD AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_30_6,-74.88446979,39.51143453,1308 MCKINLEY AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_300_1,-74.65052358,39.45631962,1020 N MAIN ST,PLEASANTVILLE CITY,,1945,1,RES1,3001 -0119_300_16,-74.75055939,39.40055426,16 E LINDLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_300_17,-74.75345974,39.43126863,18 E LINDLEY AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_300_19,-74.75784999,39.42992823,20 E LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_300_21,-74.83175827,39.38606504,22 E LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_300_22,-74.51228658,39.32793166,24 E LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_300_23,-74.4690325,39.34202,40 E LINDLEY AVE,PLEASANTVILLE CITY,45,1955,2,RES1,3001 -0119_300_25,-74.4816825,39.3413965,44 E LINDLEY AVE,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_300_29,-74.84292474,39.41606539,46 E LINDLEY AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_300_3,-74.62423987,39.45887382,1026 N MAIN ST,PLEASANTVILLE CITY,14,1930,1,RES1,3001 -0119_300_31,-74.72561695,39.44805308,48 E LINDLEY AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_300_34,-74.73152653,39.45340063,52 E LINDLEY AVE,PLEASANTVILLE CITY,15,1927,1,GOV1,3004 -0119_300_35,-74.73350451,39.47328666,56 E LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_300_39,-74.822782,39.4919475,120 E LINDLEY AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_300_4,-74.55208717,39.36143823,1028 N MAIN ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_300_6,-74.63392443,39.46167317,1 PRINCETON AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_300_8,-74.6833795,39.4407145,3 PRINCETON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_300_9,-74.7167265,39.413087,6 E LINDLEY AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_302_10,-74.78825835,39.61054453,202 PACIFIC AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_304_1,-74.385386,39.392765,1050 N MAIN ST,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_304_11,-74.6098952,39.48743723,17 E LEEDS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_304_14,-74.6096506,39.32864174,23 E LEEDS AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_304_16,-74.57317,39.336959,27 E LEEDS AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_304_18,-74.55119567,39.3651035,31 E LEEDS AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_304_2,-74.55873189,39.47437769,1048 N MAIN ST,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_304_20,-74.608757,39.327197,6 PRINCETON AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_304_22,-74.572698,39.335903,10 PRINCETON AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_304_26,-74.54859474,39.36125882,18 PRINCETON AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_304_29,-74.6237145,39.4583765,22 PRINCETON AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_304_34,-74.68409675,39.49359159,1033 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_304_35,-74.55549872,39.47418108,1 E LEEDS AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_304_5,-74.5815845,39.472737,1034 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_304_6,-74.54683167,39.49991696,3 E LEEDS AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_304_8,-74.60662666,39.48999473,9 E LEEDS AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_305_1,-74.63160274,39.44630832,1044 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_305_11,-74.734985,39.433853,1036 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_305_12,-74.8086695,39.3984415,110 PRINCETON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_305_14,-74.82830655,39.40448237,112 PRINCETON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_305_17,-74.46199691,39.34895833,120 PRINCETON AVE,PLEASANTVILLE CITY,16,1980,1,COM1,3004 -0119_305_19,-74.76291601,39.38648921,117 E LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_305_23,-74.4758075,39.338922,124 PRINCETON AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_305_26,-74.46642433,39.346363,130 PRINCETON AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_305_31,-74.513172,39.3269525,135 E LEEDS AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_305_5,-74.62793706,39.49256662,109 E LEEDS AVE,PLEASANTVILLE CITY,15,1945,1,RES1,3001 -0119_307_2,-74.46702936,39.34496233,201 E LEEDS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_31_11,-74.51162099,39.44018545,218 FERNWOOD AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_31_14,-74.62807929,39.61241536,215 TREMONT AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_31_15,-74.8797615,39.594979,214 FERNWOOD AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_31_16,-74.7283905,39.590325,213 TREMONT AVE,PLEASANTVILLE CITY,15,1914,1,RES1,3001 -0119_31_17,-74.87940144,39.59730335,212 FERNWOOD AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_31_18,-74.76366944,39.63746468,211 TREMONT AVE,PLEASANTVILLE CITY,45,1925,3,RES1,3001 -0119_31_2,-74.77941633,39.6275535,1216 MCKINLEY AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_31_21,-74.8073375,39.631725,208 FERNWOOD AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_31_22,-74.51068338,39.44107737,207 TREMONT AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_31_24,-74.4931655,39.464503,205 TREMONT AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_31_25,-74.91299037,39.53301092,204 FERNWOOD AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_31_26,-74.86372007,39.59707494,201 TREMONT AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_31_3,-74.81450044,39.52831059,1214 MCKINLEY AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_31_5,-74.61802861,39.61978603,1210 MCKINLEY AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_31_7,-74.6446362,39.52936739,1208 MCKINLEY AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_31_8,-74.55784412,39.50786508,1204 MCKINLEY AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_31_9,-74.7641,39.4851425,219 TREMONT AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_312_1,-74.65139775,39.45954496,1106 MCCONNELL DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_312_10,-74.646825,39.434893,1142 MCCONNELL DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_312_11,-74.64002864,39.43373356,1146 MCCONNELL DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_312_12,-74.64915011,39.4481813,1150 MCCONNELL DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_312_13,-74.39077265,39.38870906,1154 MCCONNELL DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_312_14,-74.3736182,39.40119276,1158 MCCONNELL DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_312_15,-74.50122253,39.33702417,1162 MCCONNELL DR,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_312_16,-74.60170158,39.50132385,101 CEDARCREST AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_312_17,-74.644039,39.43641,1175 IOWA AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_312_2,-74.67503474,39.50331861,134 E LEEDS AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_312_21,-74.3908955,39.3878865,1169 IOWA AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_312_25,-74.63516912,39.43469252,1163 IOWA AVE,PLEASANTVILLE CITY,15,1948,1,RES1,3001 -0119_312_27,-74.642176,39.434673,1155 IOWA AVE,PLEASANTVILLE CITY,16,1950,1,COM1,3004 -0119_312_3,-74.54931334,39.36010326,1110 MCCONNELL DR,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_312_31,-74.58288132,39.44777866,1145 IOWA AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_312_32,-74.5116265,39.337246,1141 IOWA AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_312_33,-74.42924102,39.37273164,1135 IOWA AVE,PLEASANTVILLE CITY,16,1994,1,IND2,3002 -0119_312_36,-74.594102,39.492915,1131 IOWA AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_312_37,-74.6001085,39.331106,1129 IOWA AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_312_39,-74.5655475,39.352151,1117 IOWA AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_312_4,-74.57264598,39.34099332,1114 MCCONNELL DR,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_312_41,-74.64705,39.461498,1107 IOWA AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_312_45,-74.71424346,39.4304222,140 E LEEDS AVE,PLEASANTVILLE CITY,15,1985,1,RES1,3001 -0119_312_5,-74.60785177,39.48710474,1118 MCCONNELL DR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_312_6,-74.5706655,39.477347,1126 MCCONNELL DR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_312_7,-74.39663685,39.38872831,1130 MCCONNELL DR,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_312_8,-74.49331886,39.3363774,1134 MCCONNELL DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_312_9,-74.53747864,39.46611121,1138 MCCONNELL DR,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_313_11,-74.3919358,39.39049967,1146 IOWA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_313_13,-74.503031,39.3360565,1150 IOWA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_313_15,-74.53215559,39.47096223,1152 IOWA AVE,PLEASANTVILLE CITY,15,1920,2,RES1,3001 -0119_313_16,-74.53910528,39.46201595,1156 IOWA AVE,PLEASANTVILLE CITY,15,1923,1,GOV1,3004 -0119_313_18,-74.69228206,39.41287072,1160 IOWA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_313_2,-74.5692685,39.3484805,1126 IOWA AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_313_21,-74.63637756,39.43267259,1164 IOWA AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_313_23,-74.63202179,39.48415086,1170 IOWA AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_313_27,-74.38736,39.3912625,1180 IOWA AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_313_4,-74.6099705,39.3280375,1130 IOWA AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_313_53,-74.38760497,39.39586866,1175 PENNSYLVANIA AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_313_6,-74.6126255,39.488505,1134 IOWA AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_313_8,-74.61036192,39.48619238,1140 IOWA AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_313_9,-74.43654168,39.37095347,1142 IOWA AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_314_10,-74.65000274,39.45398266,1118 IOWA AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_314_11,-74.843881,39.3797325,204 E LEEDS AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_314_13,-74.4620085,39.3508055,206 E LEEDS AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_314_22,-74.48066232,39.33776454,216 E LEEDS AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_314_3,-74.81985131,39.40380251,1106 IOWA AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_314_8,-74.7724155,39.384925,1114 IOWA AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_315_1.01,-74.63945503,39.43407585,301 CEDARCREST AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_315_1.02,-74.64704805,39.43485206,303 CEDARCREST AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_315_2,-74.634921,39.59701032,305 CEDARCREST AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_316_1,-74.5319765,39.384396,1 MONTCLAIR DR,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_316_2,-74.53769285,39.39055332,4 ALLEN PL,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_316_4,-74.5505847,39.37915618,6 ALLEN PL,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_317_1,-74.44851833,39.355285,1308 N MAIN ST,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_317_10,-74.59667116,39.34721504,21 LARCHMONT DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_317_12,-74.57524792,39.36301812,29 LARCHMONT DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_317_13,-74.66048116,39.36511654,35 LARCHMONT DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_317_14,-74.54162107,39.38310234,38 MONTCLAIR DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_317_15,-74.56896166,39.36869553,34 MONTCLAIR DR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_317_16,-74.547466,39.376388,26 MONTCLAIR DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_317_17,-74.79589268,39.36322599,22 MONTCLAIR DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_317_18,-74.63389981,39.36377264,18 MONTCLAIR DR,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_317_19,-74.62902125,39.36481109,12 MONTCLAIR DR,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_317_20,-74.6184965,39.3681305,10 MONTCLAIR DR,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_317_21,-74.57664806,39.36487429,6 MONTCLAIR DR,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_317_3,-74.488175,39.335119,1300 N MAIN ST,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_317_5,-74.634795,39.348789,2 MONTCLAIR DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_317_6,-74.50636833,39.340109,5 LARCHMONT DR,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_317_7,-74.56729503,39.35632319,9 LARCHMONT DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_317_8,-74.560493,39.360413,13 LARCHMONT DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_317_9,-74.58463277,39.34366897,17 LARCHMONT DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_318_1,-74.47349259,39.49333478,1320 N MAIN ST,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_318_3,-74.58638903,39.32270833,1312 N MAIN ST,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_318_4,-74.59655787,39.31852217,10 LARCHMONT DR,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_319_1,-74.5688735,39.4138175,3 ALLEN PL,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_319_10,-74.51511637,39.32048235,1209 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1952,1,COM1,3004 -0119_319_11,-74.4986515,39.3287505,1213 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_319_12,-74.57514459,39.41188657,29 MONTCLAIR DR,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_319_13,-74.58595009,39.4013206,25 MONTCLAIR DR,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_319_15,-74.59882447,39.37967881,17 MONTCLAIR DR,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_319_16,-74.61063212,39.36873171,15 ALLEN PL,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_319_2,-74.570973,39.406803,8 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_319_3,-74.50855915,39.33044702,10 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_319_4,-74.499744,39.328854,14 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_319_5,-74.50200787,39.32585984,18 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_319_7,-74.522934,39.320356,26 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_319_8,-74.5923145,39.4288055,30 CEDARCREST AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_319_9,-74.60513309,39.40856236,1205 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_32_1,-74.362628,39.410656,1118 MCKINLEY AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_32_11,-74.74884871,39.44698704,216 TREMONT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_32_12,-74.82889334,39.37635277,215 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_32_15,-74.85818002,39.43835468,212 TREMONT AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_32_16,-74.8160678,39.42926252,211 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_32_19,-74.59597304,39.50895884,206 TREMONT AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_32_2,-74.40739,39.381723,1114 MCKINLEY AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_32_20,-74.41273843,39.39033781,207 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_32_24,-74.722473,39.45710667,203 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_32_25,-74.648808,39.575429,202 TREMONT AVE,PLEASANTVILLE CITY,15,1995,1,RES1,3001 -0119_32_26,-74.7943885,39.458211,201 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_32_5,-74.8110145,39.383957,1110 MCKINLEY AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_32_6,-74.68114054,39.4924938,1108 MCKINLEY AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_32_8,-74.6034705,39.485887,1104 MCKINLEY AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_32_9,-74.53336363,39.44911637,221 W GLENDALE AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_320_1,-74.46788156,39.49045937,2 STUART PL,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_320_11,-74.57388138,39.35600691,1313 N FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_320_13,-74.58422962,39.35837512,1301 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_320_15,-74.57110232,39.35533698,36 LARCHMONT DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_320_16,-74.5089715,39.338531,30 LARCHMONT DR,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_320_17,-74.45833967,39.35450264,26 LARCHMONT DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_320_18,-74.47665909,39.34333231,24 LARCHMONT DR,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_320_19,-74.5646214,39.34396825,18 LARCHMONT DR,PLEASANTVILLE CITY,16,1926,1,RES1,3001 -0119_320_2,-74.492374,39.477121,11 E REDWOOD AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_320_20,-74.593914,39.3266205,6 STUART PL,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_320_3,-74.493136,39.4940905,15 E REDWOOD AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_320_4,-74.59493983,39.32244812,19 E REDWOOD AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_320_5,-74.585772,39.326345,101 E REDWOOD AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_320_6,-74.6018265,39.323792,105 E REDWOOD AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_320_7,-74.6119065,39.319837,109 E REDWOOD AVE,PLEASANTVILLE CITY,15,1954,1,RES1,3001 -0119_320_8,-74.5698455,39.346897,113 E REDWOOD AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_320_9,-74.48557749,39.34500633,115 E REDWOOD AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_321_1,-74.5375876,39.41481372,201 BELLEVUE PKWY,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_321_10,-74.62583781,39.41538584,1205 ELMHURST AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_321_11,-74.6294146,39.420044,218 CEDARCREST AVE,PLEASANTVILLE CITY,16,1953,1,GOV1,3004 -0119_321_12,-74.64540537,39.41181189,214 CEDARCREST AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_321_14,-74.637888,39.402142,210 CEDARCREST AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_321_15,-74.664321,39.4003165,104 CEDARCREST AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_321_16,-74.6712075,39.3738765,1200 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_321_18,-74.591142,39.4328615,1212 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_321_19,-74.51679933,39.32210803,1216 N FRANKLIN BLVD,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_321_2,-74.56599232,39.41692651,205 BELLEVUE PKWY,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_321_4,-74.5065085,39.328318,215 BELLEVUE PKWY,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_321_5,-74.51150967,39.32479948,219 BELLEVUE PKWY,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_321_7,-74.5219565,39.320967,1217 ELMHURST AVE,PLEASANTVILLE CITY,16,1952,1,RES3A,3001 -0119_321_8,-74.5915818,39.43112903,1215 ELMHURST AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_321_9,-74.62564525,39.39312702,1211 ELMHURST AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_322_1,-74.569999,39.3560685,1322 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_322_10,-74.59254632,39.37251652,220 BELLEVUE PKWY,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_322_11,-74.75741635,39.34278217,1313 ELMHURST AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_322_14,-74.62337861,39.35873965,1319 ELMHURST AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_322_15,-74.57852053,39.35215235,213 E REDWOOD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_322_15.01,-74.75196899,39.45413884,211 E REDWOOD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_322_2,-74.59183943,39.35051975,1318 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_322_4,-74.60794531,39.34623951,1310 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_322_6,-74.54526395,39.3766524,1302 N FRANKLIN BLVD,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_322_8,-74.540589,39.3805205,210 BELLEVUE PKWY,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_322_9,-74.55072654,39.37992715,212 BELLEVUE PKWY,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_323_1,-74.602287,39.4321345,1218 ELMHURST AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_323_10,-74.4999495,39.334678,322 CEDARCREST AVE,PLEASANTVILLE CITY,15,1960,1,RES1,3001 -0119_323_13,-74.38192613,39.39300564,400 CEDARCREST AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_323_15,-74.39939155,39.38570484,410 CEDARCREST AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_323_17,-74.64860651,39.45727687,416 CEDARCREST AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_323_22,-74.49017136,39.35161798,417 MONTCLAIR DR,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_323_23,-74.50890585,39.3364594,411 MONTCLAIR DR,PLEASANTVILLE CITY,16,1953,1,GOV1,3004 -0119_323_25,-74.6237665,39.439561,407 MONTCLAIR DR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_323_26,-74.6099295,39.487611,333 MONTCLAIR DR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_323_28,-74.59016503,39.48932966,331 MONTCLAIR DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_323_29,-74.54660214,39.50061456,323 MONTCLAIR DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_323_3,-74.6469164,39.40706625,1208 ELMHURST AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_323_30,-74.62736724,39.43293314,317 MONTCLAIR DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_323_31,-74.66228515,39.40246607,313 MONTCLAIR DR,PLEASANTVILLE CITY,16,1954,1,RES2,3005 -0119_323_5,-74.56361365,39.48890347,1200 ELMHURST AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_323_8,-74.629351,39.4402575,316 CEDARCREST AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_324_1,-74.50257255,39.32749484,307 LARCHMONT DR,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_324_10,-74.66588539,39.39608586,408 MONTCLAIR DR,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_324_11,-74.63051655,39.41398701,410 MONTCLAIR DR,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_324_12,-74.64861719,39.40488016,414 MONTCLAIR DR,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_324_24,-74.59626929,39.43164635,413 LARCHMONT DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_324_25,-74.58689409,39.42343788,407 LARCHMONT DR,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_324_26,-74.6068405,39.412981,333 LARCHMONT DR,PLEASANTVILLE CITY,16,1956,1,IND2,3002 -0119_324_27,-74.58649418,39.41191458,331 LARCHMONT DR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_324_29,-74.5119425,39.3225195,325 LARCHMONT DR,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_324_30,-74.51835208,39.32491484,321 LARCHMONT DR,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_324_4,-74.57481997,39.42815084,300 MONTCLAIR DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_324_5,-74.59924,39.4325025,306 MONTCLAIR DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_324_6,-74.62786883,39.37673073,324 MONTCLAIR DR,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_324_7,-74.628703,39.3911695,332 MONTCLAIR DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_324_8,-74.6873533,39.38212433,334 MONTCLAIR DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_325_1,-74.622992,39.313995,1320 ELMHURST AVE,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_325_11,-74.58948345,39.38015521,326 LARCHMONT DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_325_13,-74.61035528,39.38392742,406 LARCHMONT DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_325_14,-74.56846145,39.41331755,408 LARCHMONT DR,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_325_15,-74.5029839,39.32943484,412 LARCHMONT DR,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_325_22,-74.55691316,39.39731573,411 E REDWOOD AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_325_23,-74.5347925,39.3999915,403 E REDWOOD AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_325_25,-74.54535058,39.38434914,329 E REDWOOD AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_325_27,-74.5528485,39.373853,315 E REDWOOD AVE,PLEASANTVILLE CITY,16,1960,1,GOV1,3004 -0119_325_3,-74.6766165,39.35813583,1316 ELMHURST AVE,PLEASANTVILLE CITY,16,1953,1,COM8,3004 -0119_325_4,-74.5339545,39.3820725,1314 ELMHURST AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_325_5,-74.58425672,39.37607716,1308 ELMHURST AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_325_8,-74.571587,39.3708015,314 LARCHMONT DR,PLEASANTVILLE CITY,16,1995,1,IND2,3002 -0119_325_9,-74.554589,39.395119,320 LARCHMONT DR,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_33_1,-74.64830119,39.37772357,1018 MCKINLEY AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_33_12,-74.37108901,39.40321084,215 SHADELAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_33_13,-74.641757,39.4035645,212 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_33_14,-74.37047776,39.41780891,213 SHADELAND AVE,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_33_17,-74.53239616,39.46661174,208 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_33_18,-74.51969851,39.38231483,209 SHADELAND AVE,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_33_2,-74.5989865,39.4313105,1016 MCKINLEY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_33_21,-74.6499692,39.45648214,204 W GLENDALE AVE,PLEASANTVILLE CITY,15,1910,1,COM1,3004 -0119_33_22,-74.6402617,39.41014231,205 SHADELAND AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_33_23,-74.70195851,39.49825377,200 W GLENDALE AVE,PLEASANTVILLE CITY,16,1984,1,GOV1,3004 -0119_33_27,-74.37265341,39.40380423,1014 MCKINLEY AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_33_3,-74.63643738,39.36998633,1015 MCKINLEY PL,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_33_6,-74.60933873,39.36869444,1008 MCKINLEY AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_33_8,-74.5359323,39.39242091,1004 MCKINLEY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_33_9,-74.5713545,39.3715045,217 SHADELAND AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_333_6,-74.60262839,39.36633828,1420 SIXTH AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_333_8,-74.57564283,39.350578,501 E CALIFORNIA AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_334_1_C0110,-74.4448255,39.4867705,502 E CALIFORNIA AVE,PLEASANTVILLE CITY,33,1988,1,RES1,3001 -0119_337_11,-74.59012042,39.32286564,508 NEVADA AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_337_2,-74.48917356,39.49719775,408 NEVADA AVE,PLEASANTVILLE CITY,16,1957,1,GOV1,3004 -0119_337_3,-74.46246036,39.53129181,410 NEVADA AVE,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_337_6,-74.46897964,39.54046038,412 NEVADA AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_337_8,-74.59304767,39.31372408,414 NEVADA AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_337_9,-74.5997855,39.3161165,500 NEVADA AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_338_1,-74.53885609,39.45438366,801 TILTON RD,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_338_2,-74.53435052,39.3979793,806 CRESSON AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_338_4,-74.55199887,39.35977523,815 TILTON RD,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_338_8,-74.510057,39.4073965,829 TILTON RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_339_10,-74.63572933,39.36559751,805 CRESSON AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_339_11,-74.70253363,39.35326109,801 CRESSON AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_339_12,-74.82406682,39.31259767,755 CRESSON AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_339_14,-74.5697845,39.3761775,749 CRESSON AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_339_16,-74.5326195,39.388293,745 CRESSON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_339_17,-74.40126325,39.38612843,733 CRESSON AVE,PLEASANTVILLE CITY,16,1981,1,RES1,3001 -0119_339_19,-74.45290362,39.37209932,725 CRESSON AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_339_22,-74.64739683,39.40626448,713 CRESSON AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_339_23,-74.68603655,39.41375648,709 CRESSON AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_339_25,-74.56592591,39.47908381,653 CRESSON AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_339_27,-74.71574733,39.39365346,645 CRESSON AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_339_29,-74.83142682,39.41215363,637 CRESSON AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_339_32,-74.3641785,39.409602,625 CRESSON AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_339_34,-74.8395577,39.44160087,621 CRESSON AVE,PLEASANTVILLE CITY,16,2016,1,RES1,3001 -0119_339_35,-74.825587,39.488879,617 CRESSON AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_339_36,-74.6264171,39.52872001,615 CRESSON AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_339_37,-74.6528955,39.5250625,609 CRESSON AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_339_4,-74.56644039,39.35399822,1614 DOLPHIN AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_339_4.01,-74.53721578,39.37946916,833 CRESSON AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3001 -0119_339_42,-74.81821189,39.52049239,1509 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_339_44,-74.58684479,39.38012845,1511 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_339_5,-74.57476552,39.35344083,825 CRESSON AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_339_50,-74.7692425,39.6707485,1620 DOLPHIN AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_339_6,-74.57708401,39.33918259,821 CRESSON AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_339_8,-74.594367,39.3633375,809 CRESSON AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_34_1,-74.60557452,39.34942917,1118 S NEW RD,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_34_11,-74.538205,39.469829,1101 COLUMBIA AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_34_14,-74.70336117,39.42279384,1108 S NEW RD,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_34_15,-74.62247953,39.43314082,1104 S NEW RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_34_16,-74.54476,39.3904765,1100 S NEW RD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_34_18,-74.575625,39.428911,1008 S NEW RD,PLEASANTVILLE CITY,,1959,1,RES1,3001 -0119_34_25,-74.590391,39.4182905,329 W PARK AVE,PLEASANTVILLE CITY,15,2001,1,RES1,3001 -0119_34_26,-74.61205909,39.42097812,327 W PARK AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_34_27,-74.578572,39.331374,317 W PARK AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_34_28,-74.54670995,39.37446335,313 W PARK AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_34_29,-74.54849968,39.39315872,305 W PARK AVE,PLEASANTVILLE CITY,16,1915,1,RES1,3001 -0119_34_3,-74.657361,39.358588,400 TREMONT AVE,PLEASANTVILLE CITY,15,1925,1,COM1,3004 -0119_34_30,-74.64731858,39.40612384,233 W PARK AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_34_31,-74.66666138,39.41886954,227 W PARK AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_34_32,-74.56011671,39.36595627,225 W PARK AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_34_33,-74.58389947,39.34070068,221 W PARK AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_34_34,-74.60888168,39.34905898,217 W PARK AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_34_35,-74.64540711,39.33173531,207 W PARK AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_34_36,-74.59844261,39.3437046,300 SHADELAND AVE,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_34_37,-74.6537705,39.3534663,203 W PARK AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_34_38,-74.53262,39.3839115,311 W PARK AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_34_39,-74.62661077,39.41666737,1017 COLUMBIA AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_34_4,-74.656661,39.346637,1117 COLUMBIA AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_34_40,-74.561109,39.3623605,1018 COLUMBIA AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_34_41,-74.5527115,39.46993,1016 COLUMBIA AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_34_44,-74.5973655,39.344819,314 W GLENDALE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_34_47,-74.63856557,39.34448581,304 W GLENDALE AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_34_51,-74.56262046,39.39276081,302 W GLENDALE AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_34_52,-74.62989428,39.52315481,300 W GLENDALE AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_34_54,-74.54984332,39.37029799,1011 MCKINLEY AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_34_56,-74.6881075,39.358998,1009 MCKINLEY AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_34_57,-74.64309268,39.36397944,1007 MCKINLEY AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_34_58,-74.53523244,39.45997871,308 SHADELAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_34_59,-74.56479579,39.36085154,304 SHADELAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_34_61,-74.63586846,39.52824966,224 SHADELAND AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_34_62,-74.7932735,39.31312,218 SHADELAND AVE,PLEASANTVILLE CITY,15,1907,1,RES1,3001 -0119_34_65,-74.542097,39.3908545,210 SHADELAND AVE,PLEASANTVILLE CITY,15,2001,1,RES1,3001 -0119_34_66,-74.55449235,39.38669559,206 SHADELAND AVE,PLEASANTVILLE CITY,16,1979,1,RES1,3001 -0119_34_68,-74.61772793,39.37993841,204 SHADELAND AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_34_69,-74.36916933,39.40726002,202 SHADELAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_34_7,-74.5972515,39.367744,1111 COLUMBIA AVE,PLEASANTVILLE CITY,15,1926,1,GOV1,3004 -0119_34_71,-74.54240449,39.37521817,1016 S NEW RD,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_34_72,-74.604868,39.32652343,1014 S NEW RD,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_34_74.01,-74.5136405,39.4312105,335 W PARK AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_34_76,-74.5744965,39.390896,1114 S NEW RD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_34_77,-74.58594687,39.36767518,213 W PARK AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_34_9,-74.60695606,39.3501322,1107 COLUMBIA AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_340_1,-74.5963595,39.3490825,748 CRESSON AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_340_11,-74.44799669,39.37307331,704 CRESSON AVE,PLEASANTVILLE CITY,16,2016,1,RES1,3001 -0119_340_14,-74.60838668,39.43463808,653 TILTON RD,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_340_15,-74.63209601,39.43039369,644 CRESSON AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_340_16,-74.55689507,39.46871913,649 TILTON RD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_340_17,-74.5567925,39.4752365,633 TILTON RD,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_340_20,-74.75813,39.433288,627 TILTON RD,PLEASANTVILLE CITY,16,1990,1,COM3,3004 -0119_340_22,-74.7351795,39.448555,619 TILTON RD,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_340_25,-74.71167,39.466304,605 TILTON RD,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_340_26,-74.81955535,39.46699959,603 TILTON RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_340_29,-74.64216344,39.62250417,1501 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_340_4,-74.771763,39.3246325,732 CRESSON AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_340_5,-74.55192255,39.38421031,728 CRESSON AVE,PLEASANTVILLE CITY,15,1995,1,GOV1,3004 -0119_340_8,-74.59286294,39.37872178,715 TILTON RD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_340_9,-74.6089155,39.393641,711 TILTON RD,PLEASANTVILLE CITY,15,1988,1,RES1,3001 -0119_341_1,-74.5045469,39.33404497,1114 LINCOLN AVE,PLEASANTVILLE CITY,16,2010,1,RES1,3001 -0119_341_3,-74.4228757,39.36768237,1112 LINCOLN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_341_4,-74.78450881,39.64286948,1106 LINCOLN AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_342_1,-74.46783792,39.49409922,618 FERNWOOD AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_342_15,-74.6438011,39.4316903,600 FERNWOOD AVE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_342_18,-74.62343778,39.43286804,1211 HARRISON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_342_20,-74.538918,39.387385,1209 HARRISON AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_342_22,-74.54290616,39.3766715,1205 HARRISON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_342_6,-74.504662,39.472908,614 FERNWOOD AVE,PLEASANTVILLE CITY,16,1992,1,GOV1,3004 -0119_342_9,-74.56761794,39.34875928,612 FERNWOOD AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_343_1,-74.9566225,39.5185375,1117 HARRISON AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_343_11,-74.949223,39.5181205,1011 HARRISON AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_343_11.01,-74.948745,39.5180725,1007 HARRISON AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_343_15,-74.9269335,39.512725,601 W PARK AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_343_17,-74.93621582,39.51774652,605 W PARK AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_343_18,-74.929421,39.5182705,611 W PARK AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_343_19,-74.939243,39.520194,604 TREMONT AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_343_5,-74.95085228,39.51952798,1111 HARRISON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_343_7,-74.9520185,39.5120545,1107 HARRISON AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_344_10,-74.3610775,39.412451,1211 COLUMBIA AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_344_13,-74.5424135,39.3904325,1207 COLUMBIA AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_344_14,-74.5723355,39.3699305,1203 COLUMBIA AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_344_16,-74.54387564,39.37094258,1201 COLUMBIA AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_344_2,-74.539746,39.390609,404 FERNWOOD AVE,PLEASANTVILLE CITY,16,1978,1,RES1,3001 -0119_344_8,-74.6184945,39.430751,400 FERNWOOD AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_344_9,-74.375054,39.4198715,1215 COLUMBIA AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_345_1,-74.7824845,39.6528435,249 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_345_10,-74.78445041,39.66280187,231 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,GOV1,3004 -0119_345_11,-74.78650686,39.66129355,229 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_12,-74.77489091,39.66986868,227 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_13,-74.781718,39.665366,225 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_14,-74.80263125,39.64580157,223 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_15,-74.80213037,39.64304647,221 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_16,-74.796661,39.6396895,219 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_17,-74.80498637,39.65039649,217 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_18,-74.8185905,39.653805,215 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,EDU1,3004 -0119_345_19,-74.810219,39.6605555,213 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_2,-74.79697759,39.64279822,247 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_345_20,-74.41971269,39.35816489,211 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_21,-74.41582315,39.36803251,209 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_22,-74.441963,39.3551855,207 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_23,-74.44259518,39.35402146,205 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_24,-74.44116221,39.35336964,203 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_25,-74.4250705,39.3662725,201 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_345_3,-74.3678005,39.4111635,245 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_345_4,-74.5177825,39.386622,243 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_345_6,-74.51300097,39.40778168,239 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_345_7,-74.4909755,39.433159,237 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_345_8,-74.478676,39.439988,235 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1967,1,RES1,3001 -0119_345_9,-74.52377568,39.38777507,233 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,REL1,3004 -0119_346_1,-74.4274679,39.36076762,139 W RIDGEWOOD AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_346_3,-74.43655,39.3679625,127 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_346_4,-74.43693144,39.36501182,121 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_346_5,-74.43500616,39.3635548,115 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_346_6,-74.43442431,39.36346686,109 W RIDGEWOOD AVE,PLEASANTVILLE CITY,45,1969,2,RES1,3001 -0119_346_7,-74.525365,39.312243,107 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1970,1,COM4,3004 -0119_346_8,-74.60174703,39.31235132,103 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_346_9,-74.6071787,39.31125903,101 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_347_1,-74.63446154,39.45445581,1 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1940,1,RES1,3001 -0119_347_10,-74.599891,39.321317,27 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_347_12,-74.60378166,39.32331291,33 W RIDGEWOOD AVE,PLEASANTVILLE CITY,15,1955,1,RES1,3001 -0119_347_13,-74.5850685,39.3272435,37 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1926,1,RES1,3001 -0119_347_14,-74.59631133,39.31791749,39 W RIDGEWOOD AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_347_15,-74.5897805,39.3233525,45 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1998,1,COM1,3004 -0119_347_17,-74.618034,39.309565,47 W RIDGEWOOD AVE,PLEASANTVILLE CITY,15,1955,2,RES1,3001 -0119_347_3,-74.5979885,39.319956,1603 S MAIN ST,PLEASANTVILLE CITY,16,1940,1,RES1,3001 -0119_347_5,-74.60358393,39.32009324,5 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_347_7,-74.6055545,39.3209625,11 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_347_8,-74.60651614,39.32109143,17 W RIDGEWOOD AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_348_1,-74.55263396,39.49231384,1525 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_348_10,-74.596109,39.313487,30 W RIDGEWOOD AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_348_12,-74.49837729,39.51381664,38 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1927,1,RES1,3001 -0119_348_14,-74.4378235,39.519188,48 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_348_17,-74.535462,39.470817,1511 S MAIN ST,PLEASANTVILLE CITY,,1921,1,RES1,3001 -0119_348_18,-74.61869528,39.43841359,1507 S MAIN ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_348_19,-74.60943731,39.43950497,1501 S MAIN ST,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_348_20,-74.4809535,39.5188,9 TILTON RD,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_348_21,-74.48864475,39.49744246,11 TILTON RD,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_348_22,-74.51168072,39.48507156,13 TILTON RD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_348_23,-74.47345672,39.48733085,15 TILTON RD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_348_24,-74.4437355,39.4926075,19 TILTON RD,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_348_25,-74.48661912,39.4792098,21 TILTON RD,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_348_26,-74.472234,39.4818705,23 TILTON RD,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_348_27,-74.45274552,39.48701919,1500 BROAD ST,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_348_28,-74.4672105,39.4817085,1502 BROAD ST,PLEASANTVILLE CITY,15,1950,1,RES4,3001 -0119_348_29,-74.45098484,39.49047181,1504 BROAD ST,PLEASANTVILLE CITY,15,1950,1,GOV1,3004 -0119_348_30,-74.47037676,39.48898884,1506 BROAD ST,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_348_31,-74.51007575,39.48130078,1507 MONARCH PL,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_348_32,-74.487085,39.494802,1505 MONARCH PL,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_348_33,-74.46441135,39.49700165,1503 MONARCH PL,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_348_34,-74.49765246,39.50036519,1502 MONARCH PL,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_348_35,-74.46060784,39.5301025,1504 MONARCH PL,PLEASANTVILLE CITY,15,1952,1,RES3A,3001 -0119_348_36,-74.5281775,39.5234405,1506 MONARCH PL,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_348_38,-74.577152,39.3136045,5 TILTON RD,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_348_39,-74.5107925,39.5195795,7 TILTON RD,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_348_4,-74.66891107,39.56064761,6 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,2006,1,COM1,3004 -0119_348_6,-74.564046,39.4769915,14 W RIDGEWOOD AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_348_8,-74.6173875,39.452622,22 W RIDGEWOOD AVE,PLEASANTVILLE CITY,15,1928,1,RES3A,3001 -0119_349_1,-74.51685833,39.39529747,128 W FLORAL AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_349_2,-74.48520051,39.43184798,126 W FLORAL AVE,PLEASANTVILLE CITY,16,1977,1,RES3B,3001 -0119_349_3,-74.49379883,39.43027279,122 W FLORAL AVE,PLEASANTVILLE CITY,16,1978,1,RES3A,3001 -0119_349_5,-74.5202485,39.390382,112 W FLORAL AVE,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_349_6,-74.51375,39.3998515,110 W FLORAL AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_349_8,-74.5249475,39.3939805,1301 BROAD ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_35_10,-74.590986,39.4342055,1317 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_35_12,-74.58635197,39.41301868,1315 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_35_13,-74.56116472,39.42097842,105 W FLORAL AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_35_15,-74.56951842,39.41355615,109 W FLORAL AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_35_18,-74.52718527,39.40015439,115 W FLORAL AVE,PLEASANTVILLE CITY,16,1922,1,RES1,3001 -0119_35_2,-74.49515637,39.43340127,1415 BROAD ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_35_21,-74.51821518,39.40130409,121 W FLORAL AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_35_24,-74.52636801,39.38395666,127 W FLORAL AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_35_3,-74.498154,39.420615,1411 BROAD ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_35_4,-74.49359241,39.4264922,1407 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_35_5,-74.5304115,39.402455,1403 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_35_6,-74.51530784,39.40414693,1329 BROAD ST,PLEASANTVILLE CITY,15,1925,1,EDU1,3004 -0119_35_7,-74.5112965,39.4093205,1325 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_35_8,-74.60783111,39.42295172,1321 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_35_9,-74.5900735,39.4304495,1319 BROAD ST,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_351_1.01,-74.58344231,39.32920997,1025 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_351_1.03,-74.51217058,39.32490646,1045 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,2000,1,RES1,3001 -0119_351_1.04,-74.46374152,39.34501758,1001 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,1996,1,RES1,3001 -0119_351_12,-74.59998849,39.31526034,601 RISLEY AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_351_12.01,-74.59931713,39.31242966,605 RISLEY AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_351_13,-74.595388,39.32337417,615 RISLEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_351_15,-74.84169887,39.630808,617 RISLEY AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_351_16,-74.81501315,39.63406422,803 CEDAR LANE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_351_17,-74.79688466,39.63297649,805 CEDAR LANE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_351_18,-74.80299816,39.62375498,807 CEDAR LANE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_351_19,-74.58450105,39.32289332,809 CEDAR LANE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_351_2,-74.514705,39.3212215,935 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_351_20,-74.61218711,39.31231727,811 CEDAR LANE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_351_21,-74.60043154,39.31256713,813 CEDAR LANE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_351_22,-74.59566917,39.31178704,615 CEDAR CT,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_351_23,-74.60232305,39.3086277,617 CEDAR CT,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_351_24,-74.75112327,39.60380098,619 CEDAR CT,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_351_25,-74.79441935,39.62147746,817 CEDAR LANE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_351_26,-74.78853769,39.6338023,821 CEDAR LANE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_351_27,-74.81057988,39.6082496,823 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_28,-74.81495854,39.62579298,825 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_29,-74.80315567,39.63269701,827 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_30,-74.8543235,39.6095585,829 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_31,-74.8840665,39.501821,831 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_32,-74.94483919,39.51181978,833 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_33,-74.9520215,39.5276165,835 CEDAR LANE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_351_34,-74.78933566,39.64151704,837 CEDAR LANE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_351_35,-74.786143,39.6610615,839 CEDAR LANE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_351_36,-74.8172285,39.6546125,736 NEW MAPLE RD,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_351_37,-74.52192353,39.31523026,841 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_38,-74.50177641,39.33105533,843 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_39,-74.51038684,39.33348054,845 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_40,-74.46608117,39.34502599,847 CEDAR LANE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_351_41,-74.59789367,39.4354965,849 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_351_42,-74.521409,39.3212825,920 CHURCH ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_351_43,-74.78280842,39.65999013,930 CHURCH ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_351_44,-74.5044535,39.326563,1000 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_351_5,-74.624186,39.624336,825 NOAHS RD,PLEASANTVILLE CITY,,1985,1,RES1,3001 -0119_353_1,-74.512214,39.4406045,903 HARRISON AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_353_2,-74.62488558,39.60888162,901 HARRISON AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_353_5,-74.49945123,39.43036855,614 W PARK AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_353_6,-74.63151408,39.53986264,603 SHAW AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_353_7,-74.63660928,39.62318046,616 W PARK AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_353_8,-74.504324,39.3250245,605 SHAW AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_354_10,-74.563915,39.4134505,603 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_354_14,-74.6027415,39.3720915,605 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1966,1,GOV1,3004 -0119_354_17,-74.956478,39.5113425,616 SHAW AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_354_2,-74.75677818,39.65296427,801 HARRISON AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_354_6,-74.953159,39.5163175,601 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1967,1,RES1,3001 -0119_355_1,-74.3903977,39.38816081,504 W PARK AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_355_10,-74.46188936,39.35430743,509 SHAW AVE,PLEASANTVILLE CITY,14,1927,1,RES1,3001 -0119_355_11,-74.50707934,39.33563104,510 W PARK AVE,PLEASANTVILLE CITY,16,1993,1,RES1,3001 -0119_355_14,-74.4780135,39.4775045,513 SHAW AVE,PLEASANTVILLE CITY,16,1927,1,RES1,3001 -0119_355_18,-74.505275,39.4597615,517 SHAW AVE,PLEASANTVILLE CITY,14,1927,1,COM1,3004 -0119_355_18.01,-74.46423817,39.49070491,904 HARRISON AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_355_3,-74.49023984,39.33499149,501 SHAW AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_355_6,-74.48938924,39.33774034,505 SHAW AVE,PLEASANTVILLE CITY,14,1927,1,RES1,3001 -0119_355_8,-74.4569689,39.35239182,507 SHAW AVE,PLEASANTVILLE CITY,14,1927,1,COM1,3004 -0119_356_1.01,-74.48264724,39.4377317,501 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_356_1.02,-74.4684805,39.47470417,502 SHAW AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_356_11,-74.857712,39.4370565,508 SHAW AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_356_15,-74.50024678,39.43436038,512 SHAW AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_356_16,-74.68758792,39.54505876,515 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_356_21,-74.697594,39.6385725,520 SHAW AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_356_23,-74.60459,39.593948,522 SHAW AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_356_25,-74.66712647,39.5108824,524 SHAW AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_356_28,-74.80102103,39.67040264,525 LAFAYETTE AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_356_7,-74.85763392,39.44030092,504 SHAW AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_356_9,-74.8583025,39.438826,506 SHAW AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_358_2,-74.47979061,39.34062999,1034 NOAHS RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_358_5,-74.65882931,39.45479906,1000 NOAHS RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_358_7,-74.59179581,39.36942338,111 DEVINS LANE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_358_9,-74.60287014,39.37102511,101 DEVINS LANE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_359_10,-74.56792931,39.36632693,110 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_359_12,-74.677313,39.3569045,729 BROAD ST,PLEASANTVILLE CITY,45,1925,2,RES1,3001 -0119_359_14,-74.57541183,39.36010547,719 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_359_15,-74.532545,39.377991,107 WILLARD AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_359_16,-74.5605265,39.372929,801 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_359_18,-74.569117,39.4499005,137 MAPLE AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_359_19,-74.6459115,39.433694,139 MAPLE AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_359_2,-74.58867724,39.37660067,108 W PARK AVE,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_359_20,-74.633942,39.434467,143 MAPLE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_359_21,-74.55313847,39.40099687,145 MAPLE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_359_22,-74.550853,39.3907105,149 MAPLE AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_359_23,-74.554242,39.3764275,151 MAPLE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_359_24,-74.531848,39.384737,153 MAPLE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_359_25,-74.48980979,39.49762384,155 MAPLE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_359_3,-74.37094932,39.41081515,104 W PARK AVE,PLEASANTVILLE CITY,16,1900,1,RES1,3001 -0119_359_4,-74.615582,39.4305865,815 BROAD ST,PLEASANTVILLE CITY,15,1948,1,RES1,3001 -0119_359_5,-74.69793309,39.35677767,115 WILLARD AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_359_6,-74.55160604,39.37590166,111 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_359_7,-74.37242104,39.40489867,809 BROAD ST,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_359_8,-74.5813765,39.369513,805 BROAD ST,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_359_9,-74.54866427,39.46894292,114 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_36_1,-74.51724669,39.38861905,1215 BROAD ST,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_36_15,-74.85249202,39.61824468,121 TREMONT AVE,PLEASANTVILLE CITY,16,1992,1,RES1,3002 -0119_36_17,-74.9508345,39.516111,117 TREMONT AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3004 -0119_36_19,-74.72143,39.647694,115 TREMONT AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_36_22,-74.38034873,39.41721843,105 TREMONT AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_36_26,-74.48479012,39.43038932,1207 BROAD ST,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_36_28,-74.5174705,39.4009995,103 TREMONT AVE,PLEASANTVILLE CITY,16,2016,1,RES3B,3001 -0119_36_34,-74.50158226,39.41543994,1205 BROAD ST,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_36_7,-74.49199355,39.43257023,1213 BROAD ST,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_360_1,-74.75040196,39.45122018,815 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_360_10,-74.635914,39.3847165,808 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_360_11,-74.444332,39.3713805,804 BROAD ST,PLEASANTVILLE CITY,45,1925,2,RES1,3001 -0119_360_12,-74.37308359,39.41694707,800 BROAD ST,PLEASANTVILLE CITY,45,1925,2,RES1,3001 -0119_360_13,-74.63470774,39.39082046,19 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_360_14,-74.62292269,39.41401152,17 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_360_15,-74.62268197,39.43419875,15 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_360_16,-74.5522855,39.4364335,13 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_360_17,-74.60893769,39.44022203,11 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_360_18,-74.56447574,39.47943715,9 WILLARD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_360_2,-74.8321305,39.384392,14 W PARK AVE,PLEASANTVILLE CITY,15,1946,1,RES1,3001 -0119_360_21,-74.837746,39.41154,809 S MAIN ST,PLEASANTVILLE CITY,45,1900,2,RES1,3001 -0119_360_3,-74.7886635,39.376926,16 W PARK AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_360_4,-74.70456821,39.46745931,18 W PARK AVE,PLEASANTVILLE CITY,15,1980,1,RES1,3001 -0119_360_5,-74.6253485,39.442495,20 W PARK AVE,PLEASANTVILLE CITY,16,1928,1,RES1,3002 -0119_360_6,-74.55330859,39.47614073,22 W PARK AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_360_7,-74.583611,39.4476055,24 W PARK AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_360_8,-74.62529019,39.41931056,812 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_360_9,-74.6290435,39.4088475,810 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_361_10,-74.67247319,39.37840012,725 S MAIN ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_361_11,-74.71198347,39.43702716,701 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_361_2,-74.53311466,39.38386352,26 WILLARD AVE,PLEASANTVILLE CITY,15,1947,1,RES1,3001 -0119_361_28,-74.62047044,39.43343575,605 S MAIN ST,PLEASANTVILLE CITY,45,1890,2,RES1,3001 -0119_361_29,-74.6274525,39.41759,601 S MAIN ST,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_361_3,-74.57054375,39.37188513,24 WILLARD AVE,PLEASANTVILLE CITY,16,1947,1,RES1,3001 -0119_361_30,-74.5422275,39.385839,5 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_361_31,-74.54483734,39.37978589,7 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1928,1,RES3A,3001 -0119_361_32,-74.5475755,39.373714,11 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1840,1,RES1,3001 -0119_361_4,-74.55034341,39.39334594,20 WILLARD AVE,PLEASANTVILLE CITY,16,1946,1,RES1,3001 -0119_361_40,-74.60755541,39.42232858,111 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_361_42,-74.6025575,39.4080415,115 W EDGEWATER AVE,PLEASANTVILLE CITY,16,2005,1,RES3A,3001 -0119_361_45,-74.50997074,39.43413295,121 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_361_46,-74.51045823,39.41297326,600 BROAD ST,PLEASANTVILLE CITY,15,2002,1,GOV1,3004 -0119_361_5,-74.60731625,39.3717872,16 WILLARD AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_361_6,-74.60897297,39.393459,14 WILLARD AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_361_7,-74.35824184,39.41376702,10 WILLARD AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_361_8,-74.368343,39.413695,6 WILLARD AVE,PLEASANTVILLE CITY,15,1928,1,RES3A,3001 -0119_361_9,-74.62199581,39.43200906,729 S MAIN ST,PLEASANTVILLE CITY,,1925,1,RES1,3001 -0119_362_1,-74.60044019,39.42015253,154 MAPLE AVE,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_362_14,-74.48510359,39.43796581,153 W GREENFIELD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_362_16,-74.57170371,39.42647902,145 W GREENFIELD AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_362_2,-74.46691676,39.4985932,152 MAPLE AVE,PLEASANTVILLE CITY,16,2002,1,RES3A,3001 -0119_362_22,-74.5144485,39.486443,135 W GREENFIELD AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_362_22.01,-74.94608001,39.4975507,137 W GREENFIELD AVE,PLEASANTVILLE CITY,16,2006,1,RES3A,3001 -0119_362_23,-74.60877,39.3174575,131 W GREENFIELD AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_362_25,-74.54856054,39.36635274,125 W GREENFIELD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_362_4,-74.59322232,39.33324772,148 MAPLE AVE,PLEASANTVILLE CITY,16,1940,1,RES1,3004 -0119_362_5,-74.613503,39.324397,146 MAPLE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_362_6,-74.60935457,39.32660076,142 MAPLE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_362_8,-74.53803735,39.38481595,138 MAPLE AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_362_9,-74.55015395,39.37996335,136 MAPLE AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_363_1,-74.5104715,39.4062525,142 W GREENFIELD AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_363_1.01,-74.8838705,39.595235,146 W GREENFIELD AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_363_1.02,-74.8841835,39.601948,150 W GREENFIELD AVE,PLEASANTVILLE CITY,16,2007,1,RES3A,3001 -0119_363_11,-74.588859,39.4261805,609 BROAD ST,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_363_13,-74.36674705,39.41742293,145 W EDGEWATER AVE,PLEASANTVILLE CITY,45,1930,3,RES1,3001 -0119_363_15,-74.53073066,39.38923192,137 W EDGEWATER AVE,PLEASANTVILLE CITY,43,1915,2,RES1,3004 -0119_363_16,-74.5269045,39.3992085,135 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1960,1,RES1,3001 -0119_363_17,-74.48359885,39.43130119,133 W EDGEWATER AVE,PLEASANTVILLE CITY,16,2010,1,RES1,3001 -0119_363_20,-74.50090968,39.42530999,127 W EDGEWATER AVE,PLEASANTVILLE CITY,45,1920,3,RES1,3001 -0119_363_5,-74.51108822,39.41420752,140 W GREENFIELD AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_363_7,-74.50125064,39.42998084,136 W GREENFIELD AVE,PLEASANTVILLE CITY,15,1940,1,RES3A,3001 -0119_363_9,-74.55901,39.415394,130 W GREENFIELD AVE,PLEASANTVILLE CITY,15,1928,1,COM1,3004 -0119_364_1,-74.40452866,39.38391051,126 W EDGEWATER AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_364_12,-74.46357852,39.49580642,136 W EDGEWATER AVE,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_364_12.01,-74.63802148,39.52400267,144 W EDGEWATER AVE,PLEASANTVILLE CITY,16,2005,1,COM1,3004 -0119_364_12.02,-74.63898541,39.52486665,140 W EDGEWATER AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_364_13,-74.50818824,39.43688168,131 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3002 -0119_364_4,-74.50587617,39.33679549,132 W EDGEWATER AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_364_6,-74.46174267,39.3579725,121 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_364_7,-74.45484492,39.49592078,123 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1958,1,RES1,3001 -0119_364_9,-74.52579296,39.45931384,125 W BAYVIEW AVE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_365_1,-74.46814866,39.45367051,517 CHESTNUT ST,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_365_10,-74.3684695,39.40654,105 W BAYVIEW AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_365_13,-74.52696567,39.39379559,114 W EDGEWATER AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_365_14,-74.36453561,39.40723415,109 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_365_16,-74.4290655,39.3737385,111 W BAYVIEW AVE,PLEASANTVILLE CITY,17,1910,1,COM1,3004 -0119_365_19,-74.519638,39.3870215,120 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1928,1,GOV1,3004 -0119_365_20,-74.37636986,39.3980183,115 W BAYVIEW AVE,PLEASANTVILLE CITY,43,1900,2,RES1,3001 -0119_365_21,-74.44994185,39.37478519,122 W EDGEWATER AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_365_22,-74.50711386,39.33977169,119 W BAYVIEW AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_365_3,-74.51090033,39.40912199,513 CHESTNUT ST,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_365_6,-74.53037403,39.39875032,507 CHESTNUT ST,PLEASANTVILLE CITY,15,1915,1,COM1,3004 -0119_365_8,-74.44695931,39.37482948,503 CHESTNUT ST,PLEASANTVILLE CITY,43,1928,4,RES1,3001 -0119_365_9,-74.5124239,39.40591069,110 W EDGEWATER AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_366_10,-74.505121,39.4309045,507 S MAIN ST,PLEASANTVILLE CITY,16,1853,1,GOV1,3004 -0119_366_11,-74.57307389,39.42892358,8 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_366_2,-74.5644355,39.4153065,10 W EDGEWATER AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_366_4,-74.50321281,39.41310547,11 W BAYVIEW AVE,PLEASANTVILLE CITY,16,1976,1,RES1,3001 -0119_366_6,-74.50519818,39.41183709,7 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_366_7,-74.51935705,39.40264481,5 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_366_8,-74.59122053,39.42149032,511 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_367_1,-74.61463134,39.32459997,210 DOUGHTY RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_367_10,-74.52420623,39.39477299,616 PORTLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_367_11,-74.52001255,39.38890969,608 PORTLAND AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_367_13,-74.38541667,39.3976785,604 PORTLAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_367_14,-74.49610431,39.33533092,600 PORTLAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_367_15,-74.4499204,39.35729656,520 PORTLAND AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_367_17,-74.524249,39.455998,518 PORTLAND AVE,PLEASANTVILLE CITY,16,1915,1,RES1,3001 -0119_367_18,-74.50381811,39.4364359,512 PORTLAND AVE,PLEASANTVILLE CITY,16,1915,1,RES1,3001 -0119_367_19,-74.4965065,39.4328205,508-10 PORTLAND AVE,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_367_2,-74.50716672,39.48130499,214 DOUGHTY RD,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_367_20,-74.4923365,39.3323185,211 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_367_21,-74.67013181,39.51779991,209 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_367_23,-74.50867383,39.33728687,519 RAVELING AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_367_24,-74.37327014,39.41014812,605 RAVELING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_367_25,-74.54982434,39.37268048,206 DOUGHTY RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_367_27,-74.678095,39.586704,207 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_367_3,-74.57362208,39.42855364,218 DOUGHTY RD,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_367_37,-74.49120717,39.46240402,514 PORTLAND AVE,PLEASANTVILLE CITY,14,1928,1,RES1,3001 -0119_367_4,-74.51210164,39.43558186,224 DOUGHTY RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_367_5,-74.50029373,39.43411812,632 PORTLAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_367_6,-74.49436355,39.42711139,630 PORTLAND AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_367_8,-74.51930318,39.40673092,622 PORTLAND AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_367_9,-74.5008535,39.4273285,620 PORTLAND AVE,PLEASANTVILLE CITY,16,1940,1,RES1,3001 -0119_368_1,-74.50541553,39.33117167,328 W WRIGHT ST,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_368_10,-74.4464513,39.37224831,212 W WRIGHT ST,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_368_11,-74.443375,39.371473,208 W WRIGHT ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_368_13,-74.52556617,39.3845546,204 W WRIGHT ST,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_368_15,-74.52899583,39.38417699,200 W WRIGHT ST,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_368_2,-74.50258541,39.33019934,326 W WRIGHT ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_368_28,-74.5017385,39.331572,330 ELM AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_368_29,-74.500924,39.3322385,328 ELM AVE,PLEASANTVILLE CITY,15,1915,1,COM1,3004 -0119_368_3,-74.506024,39.330144,322 W WRIGHT ST,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_368_31,-74.500433,39.3334985,324 ELM AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_368_32,-74.507547,39.334216,322 ELM AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_368_33,-74.49580318,39.32902047,411 SHEFFIELD AVE,PLEASANTVILLE CITY,16,2008,1,EDU1,3004 -0119_368_34,-74.50101198,39.33234908,409 SHEFFIELD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_368_35,-74.50205567,39.33229133,407 SHEFFIELD AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_368_35.01,-74.508537,39.331902,401 SHEFFIELD AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_368_39,-74.3594735,39.414608,309 SHEFFIELD AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_368_41,-74.3605465,39.4110335,305 SHEFFIELD AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_368_43,-74.375593,39.4164325,301 SHEFFIELD AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_368_45,-74.37385,39.4159245,209 SHEFFIELD AVE,PLEASANTVILLE CITY,15,1997,1,COM1,3004 -0119_368_46,-74.37939058,39.41552269,207 SHEFFIELD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_368_47,-74.4478075,39.375088,205 SHEFFIELD AVE,PLEASANTVILLE CITY,15,1999,1,RES1,3002 -0119_368_5,-74.50130374,39.32942935,312 W WRIGHT ST,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_368_6,-74.503809,39.328937,310 W WRIGHT ST,PLEASANTVILLE CITY,,1910,1,RES1,3001 -0119_368_7,-74.45224081,39.37509746,306 W WRIGHT ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_368_8,-74.44670832,39.3747494,304 W WRIGHT ST,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_368_9,-74.4528375,39.3738345,214 W WRIGHT ST,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_369_1,-74.59236678,39.32525667,733 NOAHS RD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_369_10,-74.9541915,39.527865,624 RISLEY AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_369_12,-74.589818,39.333785,618 RISLEY AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_369_18,-74.7424055,39.652105,710 OHIO AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_369_2,-74.590784,39.318785,725 NOAHS RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_369_4,-74.5851925,39.332498,721 NOAHS RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_369_5,-74.58193456,39.33101031,719 NOAHS RD,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_369_6,-74.602154,39.315432,713 NOAHS RD,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_369_7,-74.60102196,39.31498682,601 NEW JERSEY AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3002 -0119_369_8,-74.526068,39.3118635,603 NEW JERSEY AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_37_10,-74.508728,39.436759,115 W GLENDALE AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_37_11,-74.91461275,39.49450892,112 TREMONT AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_37_12,-74.50392405,39.46265389,107 W GLENDALE AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_37_13,-74.93962179,39.50429092,110 TREMONT AVE,PLEASANTVILLE CITY,15,1988,1,RES1,3001 -0119_37_14,-74.79580293,39.63456168,105 W GLENDALE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_37_16,-74.8128585,39.651321,100 TREMONT AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_37_18,-74.7852495,39.641913,1117 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_37_2.01,-74.77697633,39.59475041,117 W GLENDALE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_37_2.02,-74.63647393,39.53031016,129 W GLENDALE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_37_2.03,-74.61789306,39.62133966,121 W GLENDALE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_37_21,-74.8829005,39.599918,1113 BROAD ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_37_24,-74.97028525,39.51760351,1105 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_37_26,-74.9189545,39.487624,1101 BROAD ST,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_37_5,-74.503143,39.444048,124 TREMONT AVE,PLEASANTVILLE CITY,45,1989,2,RES1,3001 -0119_370_1,-74.41759238,39.36881286,670 CHURCH ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_370_10,-74.49883463,39.33377716,639 NOAHS RD,PLEASANTVILLE CITY,16,1925,1,COM1,3004 -0119_370_11,-74.50828499,39.33163016,631 NOAHS RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_370_12,-74.50285193,39.33133433,623 NOAHS RD,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_370_13,-74.38538802,39.39855734,621 NOAHS RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_370_16,-74.39318865,39.39504483,650 CHURCH ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_370_2,-74.38786672,39.39382468,658 CHURCH ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_370_4,-74.44180082,39.37105106,646 CHURCH ST,PLEASANTVILLE CITY,15,1926,1,COM1,3004 -0119_370_4.01,-74.4382675,39.3695805,605 NOAHS RD,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_370_4.02,-74.43944368,39.36915049,636 CHURCH ST,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_370_7,-74.3968685,39.3942565,710 NEW JERSEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_370_8,-74.38435867,39.39778549,702 NEW JERSEY AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_370_9,-74.50328511,39.33095265,604 NEW JERSEY AVE,PLEASANTVILLE CITY,15,1900,1,AGR1,3001 -0119_371_10,-74.75422344,39.35212439,128 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,RES3A,3001 -0119_371_11,-74.57734808,39.36770302,212 N SECOND ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_371_16,-74.58451531,39.33981496,216 N SECOND ST,PLEASANTVILLE CITY,15,1958,1,RES1,3001 -0119_371_18,-74.54801522,39.36475319,222 N SECOND ST,PLEASANTVILLE CITY,15,1920,1,RES1,3002 -0119_371_19,-74.60681248,39.31789168,226 N SECOND ST,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_371_2,-74.66103776,39.34787573,144 W ADAMS AVE,PLEASANTVILLE CITY,15,1919,1,RES1,3001 -0119_371_20,-74.57804335,39.33261473,230 N SECOND ST,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_371_21,-74.7260455,39.49409467,232 N SECOND ST,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_371_22,-74.63434621,39.36086049,205 N FIRST ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_371_23,-74.63722989,39.34064418,207 N FIRST ST,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_371_24,-74.62419008,39.36315474,209 N FIRST ST,PLEASANTVILLE CITY,15,1930,1,GOV1,3004 -0119_371_25,-74.63436204,39.31801767,213 N FIRST ST,PLEASANTVILLE CITY,16,1940,1,RES1,3001 -0119_371_27,-74.58540663,39.3494898,217 N FIRST ST,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_371_29,-74.57265961,39.36636953,221 N FIRST ST,PLEASANTVILLE CITY,15,1940,1,GOV1,3004 -0119_371_3,-74.64723821,39.3585639,142 W ADAMS AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_371_30,-74.573959,39.3522045,223 N FIRST ST,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_371_31,-74.5744015,39.338736,227 N FIRST ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_371_32.01,-74.632717,39.529647,155 WOODLAND AVE,PLEASANTVILLE CITY,35,2006,1,RES1,3001 -0119_371_32.02,-74.52089723,39.52822241,153 WOODLAND AVE,PLEASANTVILLE CITY,35,2006,1,RES1,3001 -0119_371_34,-74.711742,39.4375755,145 WOODLAND AVE,PLEASANTVILLE CITY,15,1920,1,IND1,3002 -0119_371_35,-74.7488015,39.450007,141 WOODLAND AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_371_37,-74.58717926,39.33201317,125 WOODLAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_371_38,-74.75576968,39.45291058,234 N SECOND ST,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_371_39,-74.75247144,39.4542933,131 WOODLAND AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_371_4,-74.646665,39.3578665,140 W ADAMS AVE,PLEASANTVILLE CITY,27,1905,2,COM1,3004 -0119_371_40,-74.65620989,39.36206398,140 W ADAMS AVE (R),PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_371_5,-74.7585445,39.306178,138 W ADAMS AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_371_6,-74.77766961,39.30521815,136 W ADAMS AVE,PLEASANTVILLE CITY,16,1840,1,RES1,3001 -0119_371_6.01,-74.64061283,39.53078848,132 W ADAMS AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_372_1,-74.55531867,39.38529099,30-32 W ADAMS AVE,PLEASANTVILLE CITY,45,1923,4,RES1,3001 -0119_372_10,-74.53652851,39.38368333,210 LINDEN AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_372_11,-74.545979,39.3784805,216 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_372_12,-74.539663,39.374246,220 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_372_13,-74.6522155,39.356233,224 LINDEN AVE,PLEASANTVILLE CITY,15,1920,1,IND1,3002 -0119_372_14,-74.75233848,39.30127015,228 LINDEN AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_372_16,-74.6435194,39.33423553,21 WOODLAND AVE,PLEASANTVILLE CITY,15,1850,1,RES1,3001 -0119_372_17,-74.63493137,39.36364318,19 WOODLAND AVE,PLEASANTVILLE CITY,16,1970,1,RES1,3001 -0119_372_18,-74.56733,39.368457,217 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_19,-74.53670978,39.37812146,219 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_2,-74.5313795,39.3867705,28 W ADAMS AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_372_20,-74.5448895,39.374426,221 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_21,-74.56328224,39.36921048,223 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_22,-74.55168319,39.38238513,225 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_23,-74.539194,39.3837095,227 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_24,-74.55240443,39.37421609,229 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_25,-74.76866138,39.34785431,231 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_26,-74.75241905,39.29842768,233 GUARD PL,PLEASANTVILLE CITY,27,1925,2,GOV1,3004 -0119_372_27,-74.7644918,39.3510292,235 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_28,-74.7652359,39.30788913,237 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_29,-74.64551425,39.35509699,239 GUARD PL,PLEASANTVILLE CITY,27,1935,2,GOV1,3004 -0119_372_30,-74.62613385,39.36565035,241 GUARD PL,PLEASANTVILLE CITY,16,1935,1,RES1,3001 -0119_372_31,-74.56535724,39.37090663,218 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_32,-74.56279145,39.38899453,220 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_33,-74.5389141,39.38861182,222 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_34,-74.56479671,39.36853887,224 GUARD PL,PLEASANTVILLE CITY,27,1935,2,GOV1,3004 -0119_372_35,-74.538139,39.381704,226 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_36,-74.540454,39.373997,228 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_37,-74.56047114,39.37061481,230 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_38,-74.5513355,39.383687,232 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_39,-74.5524675,39.369326,234 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_4,-74.49957885,39.33281919,20 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_372_40,-74.54380133,39.37473499,236 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_41,-74.76338554,39.34999824,238 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3004 -0119_372_42,-74.65216232,39.3548154,240 GUARD PL,PLEASANTVILLE CITY,27,1935,2,RES1,3001 -0119_372_43,-74.71167467,39.366261,242 GUARD PL,PLEASANTVILLE CITY,16,1935,1,RES1,3001 -0119_372_47,-74.62711725,39.35584652,230 LINDEN AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_372_5,-74.50861236,39.32950547,14-16 W ADAMS AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_372_6,-74.50271997,39.32583227,10 W ADAMS AVE,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_372_7,-74.518072,39.320294,6 W ADAMS AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_372_8,-74.6064695,39.397065,201-215 N MAIN ST,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_372_9,-74.57098467,39.3718927,204 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_374_1,-74.59127967,39.32445151,416 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_374_14,-74.6229555,39.3142095,222 N NEW RD,PLEASANTVILLE CITY,,1998,1,RES1,3001 -0119_374_17,-74.8135845,39.534293,226-238 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_374_2,-74.73588458,39.45175832,412 W ADAMS AVE,PLEASANTVILLE CITY,16,1941,1,GOV1,3004 -0119_374_24,-74.72585636,39.58924256,244 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_374_25,-74.51962162,39.41215362,252 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_374_3,-74.71352967,39.46991021,410 W ADAMS AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_374_30,-74.44993072,39.37304684,258 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_374_34,-74.51076333,39.489152,211 N FOURTH ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_374_44,-74.8389314,39.52872323,229 N FOURTH ST,PLEASANTVILLE CITY,35,2006,1,RES1,3001 -0119_374_45,-74.8406425,39.53598,231 N FOURTH ST,PLEASANTVILLE CITY,35,2006,1,RES1,3001 -0119_374_46,-74.8736455,39.5229265,233 N FOURTH ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_374_47,-74.804575,39.553095,235 N FOURTH ST,PLEASANTVILLE CITY,35,2007,1,GOV1,3004 -0119_374_48,-74.80445926,39.55698903,237 N FOURTH ST,PLEASANTVILLE CITY,35,2006,1,RES1,3001 -0119_374_49,-74.8019615,39.5549785,239 N FOURTH ST,PLEASANTVILLE CITY,35,2006,1,RES1,3001 -0119_374_50,-74.84605211,39.53832011,243 N FOURTH ST,PLEASANTVILLE CITY,35,2006,1,RES1,3001 -0119_374_51,-74.70932953,39.58308407,245 N FOURTH ST,PLEASANTVILLE CITY,35,2006,1,RES1,3001 -0119_374_52,-74.72876882,39.58820557,405 WOODLAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_374_53,-74.72571288,39.58658555,401 WOODLAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_374_7,-74.83328206,39.48465009,402 W ADAMS AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_374_8,-74.58232327,39.33145363,400 W ADAMS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_375_12,-74.76814537,39.46024396,206 N FOURTH ST,PLEASANTVILLE CITY,,1968,1,GOV1,3004 -0119_375_13,-74.72869453,39.45670728,208 N FOURTH ST,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_375_15,-74.59888883,39.3153454,212 N FOURTH ST,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_375_18,-74.49683923,39.47204025,218 N FOURTH ST,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_375_18.01,-74.4475555,39.5152425,214 N FOURTH ST,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_375_19,-74.4637445,39.495825,220 N FOURTH ST,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_375_2,-74.61104654,39.32263666,314 W ADAMS AVE,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_375_2.01,-74.734725,39.4603235,202 N FOURTH ST,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_375_21,-74.5530325,39.466743,224 N FOURTH ST,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_375_21.01,-74.447958,39.486752,222 N FOURTH ST,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_375_22,-74.60856209,39.32706052,205 N THIRD ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_375_26,-74.75515733,39.45304492,211 N THIRD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_375_27,-74.46373135,39.53340165,215 N THIRD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_375_27.01,-74.65075666,39.53730498,219 N THIRD ST,PLEASANTVILLE CITY,16,2006,1,RES3B,3001 -0119_375_31.01,-74.48740122,39.49315453,223 N THIRD ST,PLEASANTVILLE CITY,16,2000,1,GOV1,3004 -0119_375_31.02,-74.45325536,39.50351589,225 N THIRD ST,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_375_33,-74.805152,39.637348,228 N FOURTH ST,PLEASANTVILLE CITY,37,2007,1,RES1,3001 -0119_375_34,-74.80131099,39.63527405,227 HENDRICKS ST,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_375_35,-74.79804597,39.63268584,229 HENDRICKS ST,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_375_36,-74.8016075,39.632272,231 HENDRICKS ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_37,-74.80357683,39.63132949,233 HENDRICKS ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_38,-74.834144,39.6308445,235 HENDRICKS ST,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_375_39,-74.82656579,39.6373508,239 HENDRICKS ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_40,-74.85727291,39.60892166,241 HENDRICKS ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_41,-74.88408802,39.46385187,315 WOODLAND AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_375_42,-74.887115,39.4778125,317 WOODLAND AVE,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_43,-74.89672259,39.47202961,319 WOODLAND AVE,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_44,-74.88959369,39.48226774,321 WOODLAND AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_375_45,-74.89117576,39.47898161,323 WOODLAND AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_375_46,-74.9084696,39.47407242,327 WOODLAND AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_375_47,-74.913107,39.479388,242 N FOURTH ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_48,-74.91899,39.4821385,240 N FOURTH ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_49,-74.88944097,39.50339491,236 N FOURTH ST,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_375_5,-74.5679786,39.35536632,310 W ADAMS AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_375_50,-74.8932825,39.502508,234 N FOURTH ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_51,-74.89184308,39.49986332,232 N FOURTH ST,PLEASANTVILLE CITY,35,2007,1,RES1,3001 -0119_375_7,-74.55963917,39.3649568,306 W ADAMS AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_375_8,-74.5945895,39.349788,304 W ADAMS AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_375_8.01,-74.5619015,39.3622755,203 N THIRD ST,PLEASANTVILLE CITY,14,1935,1,RES1,3001 -0119_376_17,-74.50517425,39.42480599,135 MARTIN TERR,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_376_19,-74.48525529,39.45558638,125 MARTIN TERR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_376_21,-74.5226065,39.4473791,117 MARTIN TERR,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_376_21.01,-74.6650155,39.618035,121 MARTIN TERR,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_376_22,-74.62713474,39.35417391,111 MARTIN TERR,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_376_23,-74.62634478,39.3598676,109 MARTIN TERR,PLEASANTVILLE CITY,43,1928,2,RES1,3001 -0119_376_27,-74.61374818,39.42183166,511 LINDEN AVE,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_377_10,-74.49524045,39.44542385,108 MARTIN TERR,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_377_14,-74.75540275,39.43283007,137 W MULBERRY AVE,PLEASANTVILLE CITY,43,1965,2,RES1,3001 -0119_377_16,-74.41815751,39.36954506,135 W MULBERRY AVE,PLEASANTVILLE CITY,16,1964,1,GOV1,3004 -0119_377_17,-74.36901108,39.40798066,127 W MULBERRY AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_377_18,-74.3755985,39.415979,123 W MULBERRY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_377_19,-74.38148452,39.41646456,119 W MULBERRY AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_377_20,-74.452441,39.371556,115 W MULBERRY AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_377_21,-74.52488141,39.38864895,111 W MULBERRY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_377_22,-74.51676468,39.39646057,107 W MULBERRY AVE,PLEASANTVILLE CITY,15,1952,1,RES1,3001 -0119_377_23,-74.6355445,39.3586305,515 LINDEN AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_377_24,-74.63336866,39.35060698,517 LINDEN AVE,PLEASANTVILLE CITY,15,1870,1,RES1,3001 -0119_377_26,-74.47079107,39.44602924,525 LINDEN AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_377_30,-74.50372182,39.41147192,529 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_377_4,-74.36365754,39.40955512,132 MARTIN TERR,PLEASANTVILLE CITY,16,1964,2,GOV1,3004 -0119_377_6,-74.501005,39.41157,122 MARTIN TERR,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_377_7,-74.4970327,39.42476705,120 MARTIN TERR,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_377_8,-74.49100153,39.43391446,116 MARTIN TERR,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_377_9,-74.523068,39.4198945,110 MARTIN TERR,PLEASANTVILLE CITY,15,1929,1,RES1,3004 -0119_378_6.01,-74.783361,39.664806,426 W MULBERRY AVE,PLEASANTVILLE CITY,15,1994,1,RES1,3001 -0119_378_6.02,-74.97289216,39.5129025,411 BRIGHTON AVE,PLEASANTVILLE CITY,,1978,1,RES1,3001 -0119_378_7,-74.810324,39.6402465,418 W MULBERRY AVE,PLEASANTVILLE CITY,15,1928,1,GOV1,3004 -0119_378_8,-74.44248228,39.35532403,416 W MULBERRY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_378_9,-74.58266895,39.34086617,412 W MULBERRY AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_379_11.01,-74.51230467,39.33051946,210 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_379_11.02,-74.6640655,39.5447595,208 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_379_11.03,-74.47210375,39.48198144,206 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_379_11.04,-74.46741092,39.48130931,204 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_379_11.05,-74.452574,39.356041,202 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_379_11.06,-74.47089855,39.4810892,200 W MULBERRY AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_379_5,-74.5959685,39.3610645,319 BRIGHTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_38_1,-74.72705572,39.44984004,126 W GLENDALE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_38_10,-74.4022985,39.392059,117 SHADELAND AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_38_11,-74.646473,39.5457585,110 W GLENDALE AVE,PLEASANTVILLE CITY,15,1901,1,RES1,3001 -0119_38_12,-74.370587,39.4077865,115 SHADELAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_38_13,-74.79269137,39.60301162,104 W GLENDALE AVE (R),PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_38_14,-74.715387,39.464366,113 SHADELAND AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_38_15,-74.83923237,39.49979079,107 SHADELAND AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_38_17,-74.875182,39.5960265,1021 BROAD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_38_18,-74.784423,39.63374,1019 BROAD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_38_2,-74.60172233,39.488375,133 SHADELAND AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_38_25,-74.69086175,39.51317471,1005 BROAD ST,PLEASANTVILLE CITY,15,1885,1,RES1,3001 -0119_38_27,-74.64473397,39.53519717,1001 BROAD ST,PLEASANTVILLE CITY,45,1925,2,RES1,3001 -0119_38_31,-74.8368663,39.53641503,106 W GLENDALE AVE,PLEASANTVILLE CITY,15,1922,1,GOV1,3004 -0119_38_32,-74.799615,39.6007835,104 W GLENDALE AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_38_4,-74.6801535,39.479892,129 SHADELAND AVE,PLEASANTVILLE CITY,45,1915,2,RES1,3001 -0119_38_5,-74.3607325,39.4106635,122 W GLENDALE AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_38_7,-74.868188,39.4509915,116 W GLENDALE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_38_8,-74.715838,39.4522715,125 SHADELAND AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_38_9,-74.705845,39.5643045,114 W GLENDALE AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_380_1,-74.82706593,39.40714042,700 LINDEN AVE,PLEASANTVILLE CITY,15,1964,1,RES1,3001 -0119_380_10,-74.40758451,39.38138559,22 BRIGHTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_380_11,-74.40262857,39.38921317,18 BRIGHTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_380_12,-74.37241297,39.40995534,14 BRIGHTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_380_13,-74.36040645,39.41148684,10 BRIGHTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_380_14,-74.3745495,39.411728,4 BRIGHTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_380_2,-74.7901445,39.4173585,706 LINDEN AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_380_21,-74.52323364,39.39055698,701 N MAIN ST,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_380_22,-74.36576683,39.4228305,705 N MAIN ST,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_380_23,-74.49390633,39.33646903,711 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_380_3,-74.48733333,39.35145303,710 LINDEN AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_380_5,-74.50417316,39.34117794,712 LINDEN AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_380_6,-74.4622195,39.357013,714 LINDEN AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_380_8,-74.83004994,39.40250682,30 BRIGHTON AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_380_9,-74.38414803,39.39387467,26 BRIGHTON AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_381_1,-74.49911316,39.3293265,21 W READING AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3004 -0119_381_12,-74.45888485,39.34928644,722 LINDEN AVE,PLEASANTVILLE CITY,16,1946,1,RES1,3001 -0119_381_13,-74.51821835,39.32297548,726 LINDEN AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_381_14,-74.60659094,39.34032472,730 LINDEN AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_381_15,-74.51803343,39.32160905,7 W READING AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_381_16,-74.51398783,39.32869905,5 W READING AVE,PLEASANTVILLE CITY,16,1949,1,GOV1,3004 -0119_381_18,-74.483215,39.347445,739 N MAIN ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_381_19,-74.48489733,39.339432,743 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_381_2,-74.5018035,39.325934,19 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_381_4,-74.58401367,39.338274,15 W READING AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_381_6,-74.5908855,39.347923,11 W READING AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_381_7,-74.5168415,39.3246495,9 W READING AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_381_9,-74.45119135,39.35134578,729 N MAIN ST,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_382_20,-74.723521,39.5881335,714 N NEW RD,PLEASANTVILLE CITY,,1970,1,GOV1,3004 -0119_383_7,-74.9454085,39.5406625,319 WELLINGTON AVE,PLEASANTVILLE CITY,16,1975,1,GOV1,3004 -0119_384_1,-74.44821361,39.35494184,101 WELLINGTON AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_384_11,-74.587658,39.3523595,141 WELLINGTON AVE,PLEASANTVILLE CITY,16,1945,1,RES1,3001 -0119_384_12,-74.57766518,39.3354231,145 WELLINGTON AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_384_13,-74.55968164,39.36015133,147 WELLINGTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_384_14,-74.56818584,39.35683991,153 WELLINGTON AVE,PLEASANTVILLE CITY,15,1919,1,RES1,3001 -0119_384_15,-74.5058535,39.3280455,157 WELLINGTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_384_17,-74.4924445,39.3316075,165 WELLINGTON AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_384_2,-74.47255533,39.34312457,103 WELLINGTON AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_384_21,-74.57524757,39.35206632,207 WELLINGTON AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_384_23.01,-74.45267134,39.48974021,221 WELLINGTON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_384_23.02,-74.48464444,39.47985014,225 WELLINGTON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_384_26,-74.48940914,39.34975388,711 LINDEN AVE,PLEASANTVILLE CITY,43,1920,2,GOV1,3004 -0119_384_27,-74.37200805,39.40063618,707 LINDEN AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_384_27.01,-74.73573652,39.46026167,701 LINDEN AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_384_3,-74.46701384,39.34618249,105 WELLINGTON AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_384_30,-74.50018701,39.34275754,102 BRIGHTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_384_30.01,-74.50848664,39.48102079,106 BRIGHTON AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_384_37,-74.48591423,39.33580083,120 BRIGHTON AVE,PLEASANTVILLE CITY,43,1905,2,GOV1,3004 -0119_384_4,-74.48139003,39.33762867,113 WELLINGTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_384_40,-74.4618305,39.350587,124 BRIGHTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_384_40.01,-74.50035915,39.47565577,126 BRIGHTON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_384_43,-74.523226,39.317649,130 BRIGHTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_384_45,-74.51742722,39.3195461,132 BRIGHTON AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_384_46,-74.51924286,39.32330841,134 BRIGHTON AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_384_47,-74.59989919,39.35986097,138 BRIGHTON AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_384_49,-74.60605118,39.34455885,142 BRIGHTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_384_50,-74.58140938,39.34037518,200 BRIGHTON AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_384_52,-74.56737156,39.3532962,202 BRIGHTON AVE,PLEASANTVILLE CITY,16,2005,1,RES3B,3004 -0119_384_55.01,-74.46459955,39.49742852,206 BRIGHTON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_384_55.02,-74.46942106,39.49006231,208 BRIGHTON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_384_55.03,-74.45321245,39.48884812,210 BRIGHTON AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_384_6,-74.477911,39.3408455,121 WELLINGTON AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_384_7,-74.51437033,39.32635303,125 WELLINGTON AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_384_8,-74.52191117,39.31942843,129 WELLINGTON AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_384_9,-74.5195125,39.3234985,133 WELLINGTON AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_385_1,-74.467444,39.3456365,401 W READING AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_385_10,-74.65585086,39.62681145,419 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_385_11,-74.6923525,39.592249,421 W READING AVE,PLEASANTVILLE CITY,15,1920,1,IND2,3002 -0119_385_15,-74.64730759,39.54942536,427 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_385_16,-74.79371634,39.62136997,400 WELLINGTON AVE,PLEASANTVILLE CITY,16,1972,1,GOV1,3004 -0119_385_19,-74.71813993,39.57597535,408 WELLINGTON AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_385_24,-74.4863079,39.34868535,416 WELLINGTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_385_25,-74.48350436,39.35010183,418 WELLINGTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_385_26,-74.47704701,39.33916867,422 WELLINGTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_385_29,-74.46471287,39.34751233,426 WELLINGTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_385_31,-74.64033566,39.53139752,736 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_385_4,-74.464818,39.3468835,405 W READING AVE,PLEASANTVILLE CITY,15,1997,1,GOV1,3004 -0119_385_5,-74.460819,39.3493375,411 W READING AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_385_8,-74.79683019,39.53110848,415 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_386_1,-74.871599,39.593327,301 W READING AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_386_11,-74.91086691,39.50639815,300 WELLINGTON AVE,PLEASANTVILLE CITY,16,1979,1,RES1,3001 -0119_386_17,-74.80086781,39.61456658,312 WELLINGTON AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_387_1,-74.9415005,39.515295,727 STRATFORD AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_387_1.01,-74.92048982,39.54237352,725 STRATFORD AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_387_11,-74.56297668,39.36146596,721 STRATFORD AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_387_11.01,-74.7948305,39.6410525,723 STRATFORD AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_387_13,-74.88562365,39.60097947,210 WELLINGTON AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_387_3,-74.921887,39.5181375,213 W READING AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_387_5,-74.81144084,39.63587547,221 W READING AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_387_5.01,-74.7896078,39.64481681,216 WELLINGTON AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_387_5.02,-74.93436005,39.53218871,222 WELLINGTON AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_387_5.03,-74.7303015,39.454335,219 W READING AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_387_5.04,-74.72921017,39.454151,217 W READING AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_388_1,-74.5545755,39.361919,139 W READING AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_388_11,-74.59068866,39.35720555,146 WELLINGTON AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_388_12,-74.59345058,39.35880895,150 WELLINGTON AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_388_13,-74.60369313,39.34342389,154 WELLINGTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_388_14,-74.5811139,39.34024731,158 WELLINGTON AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_388_15,-74.56531817,39.3650035,162 WELLINGTON AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_388_16,-74.55921383,39.36502375,166 WELLINGTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_388_17,-74.948123,39.532735,165 W READING AVE,PLEASANTVILLE CITY,16,1922,1,RES1,3001 -0119_388_2,-74.42068699,39.36725816,141 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_388_3,-74.79549055,39.64013233,145 W READING AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_388_4,-74.76705662,39.66579097,149 W READING AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_388_5,-74.792621,39.6431295,153 W READING AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_388_6,-74.883719,39.59784158,157 W READING AVE,PLEASANTVILLE CITY,16,1923,1,RES1,3001 -0119_388_7,-74.97291941,39.51158536,161 W READING AVE,PLEASANTVILLE CITY,16,1915,1,RES1,3001 -0119_388_8,-74.81226703,39.64529734,726 STRATFORD AVE,PLEASANTVILLE CITY,16,1930,1,RES1,3001 -0119_388_9,-74.43174873,39.36489835,138 WELLINGTON AVE,PLEASANTVILLE CITY,15,1960,1,RES1,3001 -0119_389_1,-74.49653233,39.33171852,733 LINDEN AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_389_10,-74.56613153,39.36139495,106 WELLINGTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_389_11,-74.58255005,39.34665228,723 LINDEN AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_389_12,-74.57447026,39.35921073,114 WELLINGTON AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_389_13,-74.55876,39.363378,118 WELLINGTON AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_389_14,-74.556969,39.35908,122 WELLINGTON AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_389_15,-74.4999704,39.32822683,126 WELLINGTON AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_389_16,-74.49744844,39.33283983,726 OXFORD AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_389_3,-74.43272086,39.36692466,107 W READING AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_389_5,-74.59567617,39.3649955,119 W READING AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_389_6,-74.57574496,39.35591171,125 W READING AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_389_7,-74.59685337,39.33748187,127 W READING AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_389_8,-74.43394484,39.36465285,730 OXFORD AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_389_9,-74.51655865,39.31938527,721 LINDEN AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_39_11,-74.71199174,39.47074357,927 BROAD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_39_12,-74.37092917,39.40509647,923 BROAD ST,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_39_16,-74.750043,39.452609,913 BROAD ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_39_18,-74.83028699,39.38189331,909 BROAD ST,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_39_20,-74.815981,39.372034,907 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_39_22,-74.55247182,39.38367958,121 W PARK AVE,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_39_23,-74.448535,39.3714485,117 W PARK AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_39_24,-74.636334,39.38404,115 W PARK AVE,PLEASANTVILLE CITY,45,1885,2,RES1,3001 -0119_39_25,-74.628629,39.4191765,109 W PARK AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_39_26,-74.6471805,39.430993,107 W PARK AVE,PLEASANTVILLE CITY,16,1865,1,RES1,3001 -0119_39_27,-74.57086262,39.47906464,101 W PARK AVE,PLEASANTVILLE CITY,15,1875,1,RES1,3001 -0119_39_29,-74.5997764,39.43653318,120.5 SHADELAND AVE,PLEASANTVILLE CITY,33,1930,1,RES1,3001 -0119_39_3,-74.62051494,39.42514326,124-128 SHADELAND AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_39_30,-74.5316915,39.4709615,120 SHADELAND AVE,PLEASANTVILLE CITY,33,1930,1,COM4,3004 -0119_39_31,-74.60172268,39.44219707,103 W PARK AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_39_34,-74.43670615,39.36987027,918 PROBST WAY,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_39_4,-74.547804,39.463667,122 SHADELAND AVE,PLEASANTVILLE CITY,33,1910,1,GOV1,3004 -0119_39_5,-74.57525514,39.48159006,118 SHADELAND AVE,PLEASANTVILLE CITY,16,1976,1,GOV1,3004 -0119_39_6,-74.63324472,39.4831122,114 SHADELAND AVE,PLEASANTVILLE CITY,15,1990,1,RES1,3001 -0119_39_7,-74.8285365,39.384556,110 SHADELAND AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_39_8,-74.800495,39.434192,106 SHADELAND AVE,PLEASANTVILLE CITY,15,1885,1,GOV1,3004 -0119_390_1,-74.597896,39.341477,22 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_390_13,-74.883405,39.596497,820 LINDEN AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_390_14,-74.497143,39.3283235,801-815 N MAIN ST,PLEASANTVILLE CITY,,1964,1,RES1,3001 -0119_390_16,-74.60239411,39.34540748,819 N MAIN ST,PLEASANTVILLE CITY,43,1863,2,COM4,3004 -0119_390_17,-74.8007155,39.645044,821 N MAIN ST,PLEASANTVILLE CITY,,1977,1,RES1,3001 -0119_390_2,-74.599388,39.3430295,18 W READING AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_390_22,-74.91180484,39.48137675,845 N MAIN ST,PLEASANTVILLE CITY,,1991,1,RES1,3001 -0119_390_24,-74.877137,39.5932535,21 W WINDSOR AVE,PLEASANTVILLE CITY,15,1850,1,RES1,3001 -0119_390_25,-74.7898363,39.63394182,23 W WINDSOR AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_390_26,-74.7776545,39.626102,25 W WINDSOR AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_390_27,-74.78776353,39.61013391,29 W WINDSOR AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_390_28,-74.8548965,39.6185375,832 LINDEN AVE,PLEASANTVILLE CITY,43,1925,2,RES1,3001 -0119_390_29,-74.908175,39.50601,835 N MAIN ST,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_390_33,-74.9528735,39.5115715,831 N MAIN ST,PLEASANTVILLE CITY,16,1890,1,RES1,3001 -0119_390_34,-74.93999034,39.525539,822 LINDEN AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_390_35,-74.9498345,39.5150975,824 LINDEN AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_390_36,-74.94051101,39.49731982,828 LINDEN AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_390_4,-74.58824962,39.36411141,16 W READING AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_390_5,-74.59597449,39.35613003,14 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_390_6,-74.43190235,39.36737049,12 W READING AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_390_7,-74.53062248,39.30763093,10 W READING AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_390_8,-74.5266315,39.315127,6 W READING AVE,PLEASANTVILLE CITY,15,1922,1,COM1,3004 -0119_390_9,-74.56064486,39.36052937,810 LINDEN AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_391_19,-74.61853195,39.38733669,560-570 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_391_23,-74.60214659,39.48276354,580-590 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_391_3,-74.53727671,39.40871329,901-915 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_392_1,-74.85023546,39.47984006,202 W DELILAH RD,PLEASANTVILLE CITY,15,1910,1,COM4,3004 -0119_392_12,-74.748437,39.450254,911 FLORENCE AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_392_14,-74.472781,39.343018,923 FLORENCE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_392_2,-74.794581,39.4613645,206 W DELILAH RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_392_3,-74.81344176,39.46987113,210 W DELILAH RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_393_1,-74.58499623,39.3379143,102 W DELILAH RD,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_393_10,-74.56787136,39.35453146,907 LINDEN AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_393_11,-74.8295955,39.462882,911 LINDEN AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_393_12,-74.75578593,39.45434065,915 LINDEN AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_393_13,-74.81208212,39.46958969,919 LINDEN AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_393_2,-74.56543627,39.35284032,106 W DELILAH RD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_393_4,-74.569694,39.3548285,116 W DELILAH RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_393_5,-74.8315315,39.487648,904 FLORENCE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_393_9,-74.72661032,39.45746989,923 LINDEN AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_394_1,-74.62405484,39.51308852,28 W DELILAH RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_394_10,-74.7054615,39.5696505,8 W DELILAH RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_394_11,-74.608145,39.6184265,4 W DELILAH RD,PLEASANTVILLE CITY,15,1925,1,RES1,3004 -0119_394_12,-74.81377193,39.52719895,901-911 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_394_14,-74.64713992,39.53225089,913 N MAIN ST,PLEASANTVILLE CITY,,1963,1,RES1,3001 -0119_394_17_C0004,-74.86896355,39.49009031,HERITAGE SQUARE D,PLEASANTVILLE CITY,,1990,1,RES1,3004 -0119_394_2,-74.58758584,39.34691651,906 LINDEN AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_394_20,-74.462016,39.345388,939 N MAIN ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_394_21,-74.70732882,39.43399689,27 W THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_394_25,-74.7617105,39.4309995,21 W THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_394_3,-74.57613,39.3349285,910 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_394_33,-74.45963654,39.34846333,7 W THOMPSON AVE,PLEASANTVILLE CITY,16,1924,1,RES1,3001 -0119_394_34,-74.47542767,39.34005121,5 W THOMPSON AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_394_35,-74.48677217,39.35034646,947 N MAIN ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_394_38_B01,-74.48079254,39.33791668,951 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_394_39,-74.8292665,39.3904475,19 W THOMPSON AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_394_4,-74.5632045,39.3624145,914 LINDEN AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_394_40,-74.8429455,39.40324,17 W THOMPSON AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_394_42,-74.765571,39.4524295,926 LINDEN AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_394_43,-74.746543,39.446585,928 LINDEN AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_394_44,-74.616156,39.5085775,930 LINDEN AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_394_45,-74.47561412,39.33866216,932 LINDEN AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_394_46,-74.51649889,39.32703021,934 LINDEN AVE,PLEASANTVILLE CITY,15,1950,1,RES1,3004 -0119_394_49,-74.66235855,39.51656445,18 W DELILAH RD,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_394_5,-74.88031321,39.44371676,918 LINDEN AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_394_7,-74.53695487,39.52796793,32 W DELILAH RD,PLEASANTVILLE CITY,43,1925,2,GOV1,3004 -0119_394_8,-74.64170284,39.52747598,14 W DELILAH RD,PLEASANTVILLE CITY,15,1823,1,RES1,3001 -0119_394_9,-74.68369588,39.52135424,12 W DELILAH RD,PLEASANTVILLE CITY,15,1925,1,RES2,3005 -0119_395_10,-74.56908867,39.34950158,119 W THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_395_12,-74.56893544,39.34034383,123 W THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_395_14,-74.59745224,39.32821467,127 W THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_395_16,-74.61176453,39.32141705,129 W THOMPSON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_395_18,-74.58011732,39.47342241,135 W THOMPSON AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_395_2,-74.68990658,39.4464372,939 LINDEN AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_395_24,-74.42455788,39.37147452,147 W THOMPSON AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_395_27,-74.39672526,39.39045075,149 W THOMPSON AVE,PLEASANTVILLE CITY,16,2011,1,RES1,3001 -0119_395_5,-74.63910869,39.44475254,105 W THOMPSON AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_395_6,-74.5525985,39.361284,111 W THOMPSON AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_396_14,-74.62003522,39.46377527,116 W LINDLEY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_396_16,-74.3881425,39.3962535,120 W LINDLEY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_396_18,-74.37346198,39.39975402,136 W LINDLEY AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_396_18.01,-74.50845334,39.3350925,144 W LINDLEY AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_396_2,-74.549609,39.4652635,102 W LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_396_5,-74.55471104,39.43701524,106 W LINDLEY AVE,PLEASANTVILLE CITY,16,2003,1,RES3A,3001 -0119_396_6,-74.68679684,39.41367251,108 W LINDLEY AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_396_8,-74.6370911,39.43117875,110 W LINDLEY AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_397_1,-74.5083585,39.3349135,1024 LINDEN AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_397_12,-74.6155231,39.48518385,8 W LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_397_15,-74.614506,39.4986035,1021 N MAIN ST,PLEASANTVILLE CITY,15,1885,1,RES1,3001 -0119_397_19,-74.53965428,39.47263995,1031-37 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_397_22,-74.6440895,39.480413,25 W LEEDS AVE,PLEASANTVILLE CITY,14,1910,1,RES1,3001 -0119_397_23,-74.640218,39.434428,23 W LEEDS AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_397_26,-74.63053104,39.43274235,15 W LEEDS AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_397_27,-74.55908929,39.44417507,9 W LEEDS AVE,PLEASANTVILLE CITY,43,1927,3,RES1,3001 -0119_397_28,-74.541849,39.4599255,5 W LEEDS AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_397_29,-74.55647546,39.46829895,3 W LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_397_3,-74.407138,39.3778445,28 W LINDLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_397_30,-74.6114179,39.49332415,6 W LINDLEY AVE,PLEASANTVILLE CITY,16,2011,1,RES1,3001 -0119_397_32,-74.59957192,39.43647577,1039 N MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_397_5,-74.37817512,39.39581598,20 W LINDLEY AVE,PLEASANTVILLE CITY,33,1925,1,RES1,3001 -0119_397_6,-74.42101233,39.37174708,18 W LINDLEY AVE,PLEASANTVILLE CITY,33,1925,1,RES1,3001 -0119_397_7,-74.44294097,39.37349932,16 W LINDLEY AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_398_1,-74.60108697,39.34853164,403 W LEEDS AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_398_13,-74.5924505,39.3477155,409 W LEEDS AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_398_14,-74.57035499,39.36679152,413 W LEEDS AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_398_15,-74.5976193,39.35962305,1046 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_398_16,-74.62716707,39.36058936,1044 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_398_17,-74.54040966,39.37514155,1042 KLINE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_398_18,-74.5363905,39.377936,1040 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,COM1,3004 -0119_398_19,-74.5437075,39.3920605,1038 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_398_20,-74.5855185,39.375133,1036 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_398_21,-74.60682869,39.37715431,1034 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_398_22,-74.50309626,39.32991218,1032 KLINE AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_398_23,-74.510076,39.3233165,1030 KLINE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_398_24,-74.59981119,39.41044396,1028 KLINE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_398_25,-74.5815265,39.429662,1026 KLINE AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_398_26,-74.61893225,39.43111007,1024 KLINE AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_398_27,-74.6482015,39.4020855,1022 KLINE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_398_28,-74.63217342,39.41729482,1020 KLINE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_398_3,-74.6742745,39.359249,1041 ELKTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_398_5,-74.5523545,39.375032,1035 ELKTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_399_1,-74.62884,39.365909,341 W LEEDS AVE,PLEASANTVILLE CITY,16,1940,1,RES1,3001 -0119_399_10,-74.59394866,39.36954658,1034 ELKTON AVE,PLEASANTVILLE CITY,16,1974,1,RES1,3001 -0119_399_5,-74.54948016,39.37438203,325 W LEEDS AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_399_8,-74.5535935,39.380416,1040 ELKTON AVE,PLEASANTVILLE CITY,15,1948,1,RES1,3001 -0119_4_1,-74.79131594,39.64404766,105 E RIDGEWOOD AVE,PLEASANTVILLE CITY,,1989,1,RES1,3001 -0119_4_26.01,-74.59974992,39.40951869,1100 CLEMATIS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_4_26.02,-74.4938085,39.466479,1104 CLEMATIS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_4_34,-74.4697415,39.482948,1122 CLEMATIS AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_4_38,-74.49331771,39.49442795,1200 CLEMATIS AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_4_6,-74.4533795,39.371185,201 E PARK AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_40_10,-74.52158088,39.44475396,1309 S MAIN ST,PLEASANTVILLE CITY,18,1900,1,RES1,3001 -0119_40_12,-74.5022985,39.4486985,1410 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_40_13,-74.478832,39.444074,1406 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_40_14,-74.43829434,39.48928497,1402 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_40_15,-74.5060305,39.432487,1326 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_40_16,-74.5034425,39.435659,1322 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_40_17,-74.50006593,39.42572382,1318 BROAD ST,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_40_19,-74.513494,39.4103875,1310 BROAD ST,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_40_2,-74.50484436,39.42863145,34 TILTON RD,PLEASANTVILLE CITY,45,1870,2,RES1,3001 -0119_40_20,-74.49586187,39.42699151,31 W FLORAL AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_40_22,-74.4962445,39.435124,17 W FLORAL AVE,PLEASANTVILLE CITY,45,1924,2,RES1,3001 -0119_40_25,-74.49959989,39.45908849,1418 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_40_26,-74.52130051,39.44302983,1414 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_40_27,-74.52309255,39.41766232,1316 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_40_30,-74.5145455,39.402295,35 W FLORAL AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_40_33,-74.49795711,39.4485628,1301 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_40_5,-74.47298973,39.44413458,1311 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_40_8,-74.4724105,39.4444625,9 W FLORAL AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_400_1,-74.54468137,39.37770352,319 W LEEDS AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_400_16,-74.5019405,39.330025,1051 MALLARD PL,PLEASANTVILLE CITY,16,2007,1,COM1,3004 -0119_400_16.01,-74.50195931,39.49109751,1045 MALLARD PL,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_400_16.02,-74.48763184,39.4949897,1039 MALLARD PL,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_400_3,-74.5569845,39.396526,1055 MALLARD PL,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_400_3.01,-74.758947,39.4467925,307 W LEEDS AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_402_10,-74.57024585,39.34067629,420 W LEEDS AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_402_13,-74.602079,39.3202885,428 W LEEDS AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_402_14,-74.46216067,39.34556999,1110 N NEW RD,PLEASANTVILLE CITY,,1995,1,RES1,3001 -0119_402_16,-74.47424334,39.49302198,1138 N NEW RD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_402_19,-74.58857705,39.33287761,430 W LEEDS AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_402_2,-74.49089876,39.33811859,402 W LEEDS AVE,PLEASANTVILLE CITY,16,1966,1,RES3A,3001 -0119_402_4,-74.46161723,39.35612865,410 W LEEDS AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_403_1,-74.4765975,39.3462755,338 W LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_403_10,-74.53495166,39.37801454,302 W LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_403_12,-74.4505305,39.355667,333 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_403_14,-74.4895899,39.33529883,329 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_403_16,-74.56961044,39.34320333,325 MALLARD CT,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_403_18,-74.57295427,39.35519135,321 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_403_2,-74.5898805,39.349034,334 W LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_403_20,-74.56669869,39.36163841,317 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_403_22,-74.59392843,39.34456194,313 MALLARD CT,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_403_24,-74.57626183,39.35531855,309 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES3A,3004 -0119_403_26,-74.60552744,39.35900521,305 MALLARD CT,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_403_28,-74.6623737,39.34670019,301 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_403_3,-74.59960123,39.34235526,330 W LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_403_4,-74.60643806,39.34957668,326 W LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_403_5,-74.6254175,39.358197,324 W LEEDS AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_403_5.01,-74.759192,39.44670303,318 W LEEDS AVE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_403_6,-74.6260155,39.3607645,314 W LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_403_8,-74.76648566,39.33557202,310 W LEEDS AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_403_9,-74.5517885,39.373037,306 W LEEDS AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_404_1,-74.496968,39.4983085,336 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_404_10,-74.59733251,39.31761632,324 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_404_12,-74.575028,39.3379865,320 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_404_14,-74.4773555,39.3458605,316 MALLARD CT,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_404_16,-74.4622945,39.3579005,312 MALLARD CT,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_404_18,-74.49398276,39.33807437,306 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_404_23,-74.55277755,39.36194715,302 MALLARD CT,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_404_26,-74.56205087,39.36196027,300 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_404_7,-74.5991445,39.3140325,332 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_404_8,-74.4895725,39.497193,328 MALLARD CT,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_41_13,-74.60384165,39.41647166,22 W FLORAL AVE,PLEASANTVILLE CITY,16,1992,1,RES3A,3001 -0119_41_14,-74.50070872,39.41812721,27 TREMONT AVE,PLEASANTVILLE CITY,16,1919,1,RES1,3001 -0119_41_16,-74.56548892,39.41623553,23 TREMONT AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_41_17,-74.59399954,39.42866287,18 W FLORAL AVE,PLEASANTVILLE CITY,15,1994,1,RES1,3001 -0119_41_18,-74.58152419,39.40243102,19 TREMONT AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_41_19,-74.61293215,39.42049881,14 W FLORAL AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_41_2,-74.5692445,39.411453,1220 BROAD ST,PLEASANTVILLE CITY,16,1955,1,GOV1,3004 -0119_41_20,-74.60483964,39.40618863,15 TREMONT AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_41_21,-74.52002648,39.40666218,10 W FLORAL AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_41_22,-74.581425,39.4321295,11 TREMONT AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_41_23,-74.501427,39.4288395,1219 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_41_23.02,-74.4949935,39.4260465,8 W FLORAL AVE,PLEASANTVILLE CITY,16,1998,1,GOV1,3004 -0119_41_24,-74.591151,39.430799,7 TREMONT AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_41_25,-74.50368202,39.43327209,1211 S MAIN ST,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_41_27,-74.51403612,39.41064315,1201 S MAIN ST,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_41_4,-74.602256,39.4193025,30 W FLORAL AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_41_5,-74.50604632,39.40474201,1212 BROAD ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_41_8,-74.52222951,39.39758357,1208 BROAD ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_41_9,-74.52739166,39.392902,1206 BROAD ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_410_1,-74.50319166,39.33908645,427 W LEEDS AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_10,-74.548979,39.380235,1037 KLINE AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_410_11,-74.5561201,39.39746434,1035 KLINE AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_410_12,-74.5836395,39.380699,1033 KLINE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_410_13,-74.50432984,39.33083404,426 SUNSET CT,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_14,-74.60481436,39.39257449,430 SUNSET CT,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_15,-74.615509,39.370472,434 SUNSET CT,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_16,-74.596011,39.3724645,438 SUNSET CT,PLEASANTVILLE CITY,16,1956,1,COM4,3004 -0119_410_17,-74.570985,39.343051,1040 N NEW RD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_18,-74.56489303,39.36620472,1038 N NEW RD,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_410_19,-74.61186068,39.34175455,1036 N NEW RD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_2,-74.49756577,39.3375761,431 W LEEDS AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_20,-74.597446,39.355003,1034 N NEW RD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_21,-74.63328499,39.3657486,1032 N NEW RD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_22,-74.54977252,39.37530016,1030 N NEW RD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_410_23,-74.53529045,39.37770466,1028 N NEW RD,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_410_24,-74.559125,39.3988165,1026 N NEW RD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_3,-74.461615,39.3570325,435 W LEEDS AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_4,-74.48087033,39.347888,439 W LEEDS AVE,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_410_5,-74.56611959,39.36531972,1047 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_6,-74.6048325,39.350342,1045 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,GOV1,3004 -0119_410_7,-74.59777667,39.36285343,1043 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_8,-74.634123,39.3632325,1041 KLINE AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_410_9,-74.5518675,39.3741145,1039 KLINE AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_411_1,-74.51086672,39.3234655,1020 N NEW RD,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_411_2,-74.57382291,39.42883887,435 SUNSET CT,PLEASANTVILLE CITY,16,1952,1,GOV1,3004 -0119_411_3,-74.597504,39.4097645,427 SUNSET CT,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_411_4,-74.5999525,39.42367533,1021 KLINE AVE,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_411_5,-74.637381,39.402157,1017 KLINE AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_412_1_B01,-74.62576632,39.41440168,1012 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_413_1,-74.38934385,39.39051545,29 MAGNOLIA PL,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_413_10,-74.53888808,39.46053928,48 LAUREL DR,PLEASANTVILLE CITY,16,1975,1,REL1,3004 -0119_413_11,-74.64735319,39.42947303,44 LAUREL DR,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_413_12,-74.63492842,39.43272065,40 LAUREL DR,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_413_13,-74.69105161,39.44827861,36 LAUREL DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_413_2,-74.39671703,39.38738731,35 MAGNOLIA PL,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_413_3,-74.389461,39.394192,39 MAGNOLIA PL,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_413_4,-74.68863732,39.4433836,43 MAGNOLIA PL,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_413_5,-74.63130007,39.43416456,47 MAGNOLIA PL,PLEASANTVILLE CITY,16,1955,1,COM4,3003 -0119_413_6,-74.63315298,39.43167096,1139 MCCONNELL DR,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_413_7,-74.70687191,39.42168651,1135 MCCONNELL DR,PLEASANTVILLE CITY,15,1954,1,RES1,3001 -0119_413_8,-74.55359,39.4692505,1131 MCCONNELL DR,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_413_9,-74.5478195,39.476518,52 LAUREL DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_414_12,-74.3873425,39.394464,24 E LEEDS AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_414_14,-74.55008333,39.47604036,26 E LEEDS AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_414_16,-74.55140299,39.48830567,32 E LEEDS AVE,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_414_2,-74.69147376,39.41667849,1108 N MAIN ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_414_25,-74.6183615,39.320251,1111 MCCONNELL DR,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_414_27,-74.5662905,39.4749585,1119 MCCONNELL DR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_414_28,-74.3891085,39.395344,47 LAUREL DR,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_414_29,-74.39003184,39.39009047,43 LAUREL DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_414_30,-74.55256029,39.4773819,39 LAUREL DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_414_31,-74.53418296,39.45345715,35 LAUREL DR,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_414_32,-74.64402479,39.42282109,31 LAUREL DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_414_33,-74.6262465,39.4904,27 LAUREL DR,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_414_34,-74.378213,39.399658,23 LAUREL DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_414_35,-74.38682802,39.39307834,19 LAUREL DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_414_36,-74.5064795,39.3374035,15 LAUREL DR,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_414_44,-74.630862,39.4453515,1130 N MAIN ST,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_414_45,-74.37245672,39.40065533,1128 N MAIN ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_414_47,-74.380306,39.4011225,1120 N MAIN ST,PLEASANTVILLE CITY,,1924,1,RES1,3001 -0119_414_5,-74.54136555,39.47425078,10 E LEEDS AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_414_9,-74.377198,39.4008595,18 E LEEDS AVE,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_415_1,-74.62729944,39.42328906,1142 N MAIN ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_415_10,-74.50375574,39.33455817,44 MAGNOLIA PL,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_415_11,-74.38180016,39.39335447,48 MAGNOLIA PL,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_415_12,-74.38278734,39.39421351,1147 MCCONNELL DR,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_415_13,-74.38961334,39.39208248,1151 MCCONNELL DR,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_415_14,-74.48744657,39.35118204,1155 MCCONNELL DR,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_415_15,-74.6318045,39.4458665,1159 MCCONNELL DR,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_415_16,-74.60526873,39.49009498,1163 MCCONNELL DR,PLEASANTVILLE CITY,15,1955,1,RES1,3001 -0119_415_17,-74.53375728,39.50250868,55 CEDARCREST AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_415_18,-74.623704,39.423238,51 CEDARCREST AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3001 -0119_415_19,-74.6292735,39.426907,47 CEDARCREST AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_415_2,-74.63697246,39.41140145,1146 N MAIN ST,PLEASANTVILLE CITY,16,1950,1,RES1,3004 -0119_415_20,-74.630649,39.4188475,45 CEDARCREST AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_415_21,-74.66931233,39.39295151,35 CEDARCREST AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_415_22,-74.6373635,39.400059,31 CEDARCREST AVE,PLEASANTVILLE CITY,15,1951,1,RES1,3001 -0119_415_23,-74.62220031,39.37513984,27 CEDARCREST AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_415_24,-74.61295371,39.42219711,25 CEDARCREST AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_415_25,-74.590551,39.4331565,21 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_415_26,-74.5880335,39.4273625,15 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_415_27,-74.5998843,39.41062364,11 CEDARCREST AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_415_28,-74.51239335,39.32246918,7 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_415_29,-74.50570435,39.32749596,1 CEDARCREST AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_415_3,-74.62073296,39.43288534,12 MAGNOLIA PL,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_415_30,-74.60404581,39.40677398,1160 N MAIN ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_415_32,-74.61186458,39.42719795,1156 N MAIN ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_415_33,-74.62117502,39.37718534,1150 N MAIN ST,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_415_4,-74.59244663,39.48988657,20 MAGNOLIA PL,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_415_5,-74.62910287,39.43155829,24 MAGNOLIA PL,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_415_6,-74.57833834,39.48103351,28 MAGNOLIA PL,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_415_7,-74.624138,39.4343815,32 MAGNOLIA PL,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_415_8,-74.60742436,39.50034583,36 MAGNOLIA PL,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_415_9,-74.6279,39.4374475,40 MAGNOLIA PL,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_417_1,-74.50418775,39.32526864,618 WOODLAND AVE,PLEASANTVILLE CITY,16,1918,1,RES1,3001 -0119_417_3,-74.49821628,39.32980937,614 WOODLAND AVE,PLEASANTVILLE CITY,16,1980,1,RES1,3001 -0119_417_5,-74.61180751,39.35024248,307 MILL RD,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_417_6,-74.578253,39.344154,611 SPRUCE AVE,PLEASANTVILLE CITY,16,1960,1,GOV1,3004 -0119_418_1,-74.77953636,39.62642395,734 SPRUCE AVE,PLEASANTVILLE CITY,15,1919,1,RES1,3001 -0119_418_3,-74.79993884,39.60198215,728 SPRUCE AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_418_6,-74.8010065,39.638412,718 SPRUCE AVE,PLEASANTVILLE CITY,15,1999,1,RES3A,3001 -0119_418_8,-74.971025,39.5153615,700 SPRUCE AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_418_8.01,-74.92348928,39.48164812,710 SPRUCE AVE,PLEASANTVILLE CITY,16,1997,1,GOV1,3004 -0119_418_8.02,-74.948225,39.5175205,706 SPRUCE AVE,PLEASANTVILLE CITY,16,1997,1,GOV1,3004 -0119_418_8.03,-74.938093,39.527731,702 SPRUCE AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_419_1,-74.50211746,39.32938133,508 SUNSET CT,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_10,-74.558381,39.35799,1034 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_11,-74.46311083,39.35520854,1036 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES3A,3001 -0119_419_12,-74.5722714,39.33494613,1038 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,COM1,3004 -0119_419_13,-74.58737581,39.33167597,1040 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3004 -0119_419_14,-74.51160961,39.48320658,1042 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_15,-74.5164865,39.323048,502 SUNSET CT,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_16,-74.50061537,39.32957419,1019 N NEW RD,PLEASANTVILLE CITY,16,1959,1,COM1,3004 -0119_419_17,-74.5977115,39.3803875,1021 N NEW RD,PLEASANTVILLE CITY,16,1959,1,RES3A,3001 -0119_419_18,-74.5823165,39.3764175,1023 N NEW RD,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_19,-74.56580552,39.37484372,1025 N NEW RD,PLEASANTVILLE CITY,16,1959,1,RES3A,3001 -0119_419_2,-74.61574037,39.38392805,1018 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_20,-74.53862005,39.38327465,1027 N NEW RD,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_419_21,-74.641219,39.3664785,1029 N NEW RD,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_419_22,-74.61304166,39.36704896,1031 N NEW RD,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_419_23,-74.61478426,39.33837323,1033 N NEW RD,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_419_24,-74.57287182,39.36595897,1035 N NEW RD,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_25,-74.50646167,39.33939399,1037 N NEW RD,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_26,-74.45079784,39.35348633,1039 N NEW RD,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_27,-74.59875934,39.32882599,1041 N NEW RD,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_28,-74.58154465,39.32952124,1043 N NEW RD,PLEASANTVILLE CITY,16,1958,1,RES1,3001 -0119_419_3,-74.5910135,39.37616,1020 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_4,-74.55384373,39.37836223,1022 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_5,-74.53565363,39.38251964,1024 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_6,-74.7717141,39.32397909,1026 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES3A,3001 -0119_419_7,-74.63035506,39.3493869,1028 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_8,-74.61113219,39.34987731,1030 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_419_9,-74.5678136,39.3629339,1032 NEUMARK AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_42_1,-74.49698378,39.42598151,1120 BROAD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_42_11,-74.80507867,39.64443151,27 W GLENDALE AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_42_13,-74.464326,39.463436,28 TREMONT AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_42_14,-74.52349,39.3958765,21 W GLENDALE AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_42_15,-74.53034,39.3876745,24 TREMONT AVE,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_42_16,-74.51047125,39.40330866,19 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_42_17,-74.5170715,39.39509,20 TREMONT AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_42_18,-74.49433769,39.43102078,15 W GLENDALE AVE,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_42_19,-74.5263675,39.3956255,16 TREMONT AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_42_2,-74.45899655,39.4563941,30 TREMONT AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_42_20,-74.5084205,39.4432665,11 W GLENDALE AVE,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_42_22,-74.51636554,39.40051831,7 W GLENDALE AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_42_23,-74.5640615,39.4142565,8 TREMONT AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_42_24,-74.5834835,39.4320105,1123 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_42_25,-74.61296032,39.41920061,1117 S MAIN ST,PLEASANTVILLE CITY,15,1908,1,RES1,3001 -0119_42_26.01,-74.57647965,39.41075968,1115 S MAIN ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_42_26.02,-74.584487,39.403481,1113 S MAIN ST,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_42_27,-74.56010244,39.4140867,1109 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_42_29,-74.52745968,39.39490651,1101 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_42_3,-74.512762,39.4055685,1118 BROAD ST,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_42_6,-74.5296215,39.3961075,1116 BROAD ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_42_7,-74.51969441,39.3989856,1112 BROAD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_42_8,-74.52759032,39.38102299,1108 BROAD ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_42_9,-74.4463807,39.37285455,1106 BROAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_420_11,-74.61844569,39.33925195,920 SPRUCE AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_420_13,-74.576871,39.3521185,914 SPRUCE AVE,PLEASANTVILLE CITY,16,1984,1,RES3A,3001 -0119_420_19,-74.5383985,39.5617295,904 SPRUCE AVE,PLEASANTVILLE CITY,15,1915,1,RES3A,3001 -0119_420_19.01,-74.8197962,39.39278153,910 SPRUCE AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_420_2,-74.61220932,39.35038909,940 SPRUCE AVE,PLEASANTVILLE CITY,15,1929,1,GOV1,3004 -0119_420_20,-74.64707399,39.53384452,902 SPRUCE AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_420_9,-74.82537587,39.37681937,926 SPRUCE AVE,PLEASANTVILLE CITY,16,1965,1,RES3A,3001 -0119_421_1,-74.68117717,39.51285847,834 SPRUCE AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_421_11,-74.664534,39.62106233,816 SPRUCE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_421_13,-74.78931032,39.51994351,812 SPRUCE AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_421_14,-74.84163252,39.52463781,810 SPRUCE AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_421_21,-74.47576757,39.34104768,802 SPRUCE AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_421_7,-74.58055902,39.59856844,830 SPRUCE AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_421_8,-74.65871216,39.60404603,820 SPRUCE AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_422_10,-74.59476433,39.31584701,508 CHURCH ST,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_422_17,-74.53391328,39.30746396,505 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_422_18,-74.49158526,39.51956587,351 S NEW RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_422_5,-74.5342045,39.305724,626 DOUGHTY RD,PLEASANTVILLE CITY,15,1862,1,RES1,3001 -0119_422_6,-74.53223681,39.31521964,622 DOUGHTY RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_422_7,-74.536848,39.3141005,620 DOUGHTY RD,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_422_8,-74.5934035,39.31612517,610 DOUGHTY RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_423_1,-74.80197638,39.64831858,834 CEDAR LANE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_423_10,-74.81219334,39.63752365,818 CEDAR LANE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_423_11,-74.81444286,39.63648986,814 CEDAR LANE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_423_12,-74.8250295,39.626873,701 NEW MAPLE RD,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_423_13,-74.931737,39.482956,703 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_423_14,-74.94347175,39.51196247,705 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES3A,3001 -0119_423_15,-74.95457255,39.51640987,707 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_423_16,-74.97503131,39.51186782,709 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_423_18,-74.7945245,39.639767,713 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_423_19,-74.86761498,39.45271677,715 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_423_2,-74.78075534,39.66894201,832 CEDAR LANE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_423_20,-74.7953532,39.63954161,717 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_423_21,-74.82096,39.6450205,719 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_423_22,-74.73589283,39.72005318,721 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_423_3,-74.7825375,39.6531645,830 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_423_4,-74.91808598,39.56514944,828 CEDAR LANE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_423_5,-74.9491905,39.5041205,826 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_423_6,-74.9048455,39.505634,824 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_423_7,-74.889875,39.4591335,822 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_423_8,-74.52206419,39.38794854,820 CEDAR LANE,PLEASANTVILLE CITY,16,1971,1,RES1,3001 -0119_424_1,-74.53050147,39.30942466,842 CEDAR LANE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_424_11,-74.486443,39.3356255,820 CHURCH ST,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_424_12,-74.4851185,39.336077,816 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_424_13,-74.4844495,39.3375865,812 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3002 -0119_424_14,-74.879665,39.448089,808 CHURCH ST,PLEASANTVILLE CITY,16,1956,1,COM1,3004 -0119_424_15,-74.4771615,39.3409105,804 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,COM3,3002 -0119_424_16,-74.469162,39.345816,800 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_424_17,-74.51294819,39.32958864,729 RISLEY AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_424_18,-74.50111566,39.32954651,725 RISLEY AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_424_19,-74.5056135,39.3234725,721 RISLEY AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_424_2,-74.52537486,39.31881243,844 CEDAR LANE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_424_20,-74.44138413,39.36674618,717 RISLEY AVE,PLEASANTVILLE CITY,16,1956,1,RES3A,3001 -0119_424_21,-74.4133468,39.36358834,713 RISLEY AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_424_22,-74.80674983,39.64455549,709 RISLEY AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_424_23,-74.7800095,39.672254,705 RISLEY AVE,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_424_24,-74.972185,39.5075755,800 CEDAR LANE,PLEASANTVILLE CITY,16,1957,1,RES3A,3001 -0119_424_25,-74.939799,39.5113085,804 CEDAR LANE,PLEASANTVILLE CITY,16,1961,1,RES1,3001 -0119_424_26,-74.908566,39.5661935,702 NEW MAPLE RD,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_424_27,-74.72715085,39.64495794,704 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES3A,3001 -0119_424_28,-74.7834725,39.6615935,706 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_424_29,-74.7807745,39.6719515,708 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_424_30,-74.81626171,39.6557604,710 NEW MAPLE RD,PLEASANTVILLE CITY,16,1963,1,RES3A,3001 -0119_424_31,-74.42774773,39.3599961,712 NEW MAPLE RD,PLEASANTVILLE CITY,16,1963,1,RES3A,3002 -0119_424_32,-74.4903665,39.333185,714 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES3A,3001 -0119_424_33,-74.50468966,39.33240901,716 NEW MAPLE RD,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_424_34,-74.494293,39.3333665,718 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_424_35,-74.43168738,39.3610337,720 NEW MAPLE RD,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_424_36,-74.494054,39.3339705,722 NEW MAPLE RD,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_424_37,-74.501755,39.332595,724 NEW MAPLE RD,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_424_38,-74.50146166,39.33043551,726 NEW MAPLE RD,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_424_39,-74.4998815,39.3317665,728 NEW MAPLE RD,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_424_4,-74.44761854,39.48027584,846 CEDAR LANE,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_424_40,-74.496008,39.3320225,730 NEW MAPLE RD,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_424_5,-74.485106,39.339679,844 CHURCH ST,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_424_6,-74.50333466,39.46446027,840 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_424_7,-74.46984318,39.34618124,836 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_424_8,-74.46812107,39.34627489,832 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_424_9,-74.4654215,39.347829,828 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_425_1,-74.44843729,39.37379395,1522 DOLPHIN AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_425_6,-74.4234785,39.374706,901 WOODSIDE AVE,PLEASANTVILLE CITY,15,1945,1,RES1,3001 -0119_425_7,-74.5076515,39.3376135,905 WOODSIDE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_426_1,-74.40245366,39.38386028,417 CHESTNUT ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_426_10,-74.81755556,39.65504821,115 W WRIGHT ST,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_426_11,-74.79280825,39.66235894,117 W WRIGHT ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_426_12,-74.779474,39.6446605,123 W WRIGHT ST,PLEASANTVILLE CITY,43,1920,2,RES3A,3001 -0119_426_13,-74.9748325,39.508548,127 W WRIGHT ST,PLEASANTVILLE CITY,16,1935,1,RES1,3001 -0119_426_14,-74.955216,39.5122495,129 W WRIGHT ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_426_15,-74.558512,39.4136515,135 W WRIGHT ST,PLEASANTVILLE CITY,16,1935,1,RES1,3001 -0119_426_16,-74.53750284,39.40434867,137 W WRIGHT ST,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_426_17,-74.60006356,39.38018993,139 W WRIGHT ST,PLEASANTVILLE CITY,27,1920,2,RES1,3002 -0119_426_18,-74.59563806,39.38173498,141 W WRIGHT ST,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_426_19,-74.94391698,39.51741836,143 W WRIGHT ST,PLEASANTVILLE CITY,27,1920,2,RES1,3001 -0119_426_20,-74.93431183,39.51796499,145 W WRIGHT ST,PLEASANTVILLE CITY,27,1920,2,RES3A,3001 -0119_426_21,-74.9382775,39.4823855,147 W WRIGHT ST,PLEASANTVILLE CITY,27,1920,2,GOV1,3004 -0119_426_23,-74.6664978,39.61850731,114-118 W BAYVIEW AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_426_3,-74.46281393,39.35634733,415 CHESTNUT ST,PLEASANTVILLE CITY,15,1915,1,COM1,3004 -0119_426_4,-74.52701093,39.4700207,413 CHESTNUT ST,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_426_5,-74.5020137,39.45146671,409 CHESTNUT ST,PLEASANTVILLE CITY,15,1910,1,RES3A,3001 -0119_426_6,-74.670535,39.619118,405 CHESTNUT ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_426_7,-74.80725422,39.53198743,403 CHESTNUT ST,PLEASANTVILLE CITY,14,1930,1,RES1,3001 -0119_426_8,-74.52593738,39.31224535,101 W WRIGHT ST,PLEASANTVILLE CITY,15,1908,1,RES1,3001 -0119_426_9,-74.52128095,39.31724814,109 W WRIGHT ST,PLEASANTVILLE CITY,16,1955,1,COM1,3004 -0119_427_11,-74.83485789,39.59172262,213 W WRIGHT ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_427_13,-74.751049,39.6033425,305 W WRIGHT ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_427_14,-74.8648045,39.544891,307 W WRIGHT ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_427_16,-74.50733383,39.32736602,311 W WRIGHT ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_427_19,-74.50038975,39.32782006,323 W WRIGHT ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_427_21,-74.499462,39.3284665,400 ELM AVE,PLEASANTVILLE CITY,16,2002,1,RES1,3001 -0119_427_23,-74.70706149,39.63431922,404 ELM AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_427_24,-74.87927294,39.59338891,408 ELM AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_427_25,-74.605848,39.5291155,318 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1932,1,RES1,3001 -0119_427_27,-74.795071,39.620927,314 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1925,1,RES3A,3001 -0119_427_28,-74.80757461,39.62303432,312 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_427_30,-74.921986,39.4818585,308 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1900,1,COM1,3004 -0119_427_32,-74.59925343,39.38004354,304 W BAYVIEW AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_427_35,-74.79505177,39.63534693,298 W BAYVIEW AVE,PLEASANTVILLE CITY,16,2011,1,RES1,3001 -0119_427_8,-74.55265412,39.53890027,207 W WRIGHT ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_427_9,-74.6034965,39.508734,209 W WRIGHT ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_428_11,-74.450753,39.371748,405 ELM AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3002 -0119_428_13,-74.50011984,39.53750599,407 W WRIGHT ST,PLEASANTVILLE CITY,15,1963,1,RES1,3001 -0119_428_14,-74.51838077,39.52571507,405 W WRIGHT ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_428_15,-74.46272538,39.54648815,401 W WRIGHT ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_428_16,-74.45046119,39.37342903,404 ALDER AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_428_3,-74.52921508,39.38167133,412 W BAYVIEW AVE,PLEASANTVILLE CITY,16,1965,1,RES1,3001 -0119_428_5,-74.867037,39.564296,406 W BAYVIEW AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_428_6,-74.7157835,39.634996,404 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_428_9,-74.44921429,39.37188965,409 ELM AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_429_11_C102,-74.971864,39.5116675,102 NOAHS LANDING,PLEASANTVILLE CITY,33,1986,1,RES1,3001 -0119_429_12,-74.41929013,39.36959027,626 CHURCH ST,PLEASANTVILLE CITY,43,1952,2,RES1,3001 -0119_429_13,-74.40668843,39.37710066,624 CHURCH ST,PLEASANTVILLE CITY,16,1955,1,RES1,3001 -0119_429_15,-74.42966413,39.3727548,620 CHURCH ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_429_16,-74.38433794,39.39406615,618 CHURCH ST,PLEASANTVILLE CITY,14,1890,1,RES1,3001 -0119_429_17,-74.49206646,39.33078291,610 CHURCH ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_429_19,-74.53388601,39.31299568,600 CHURCH ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_429_20,-74.49433245,39.3311915,611 DOUGHTY RD,PLEASANTVILLE CITY,,0,1,RES3A,3002 -0119_429_21,-74.494725,39.334108,613 DOUGHTY RD,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_429_23,-74.50548833,39.323722,625 DOUGHTY RD,PLEASANTVILLE CITY,15,1920,1,RES1,3002 -0119_429_24,-74.52778764,39.31173364,631-37 DOUGHTY RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_429_27,-74.525685,39.3121305,643 DOUGHTY RD,PLEASANTVILLE CITY,15,1935,1,RES3A,3001 -0119_429_29,-74.5975025,39.316111,601 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_429_3,-74.51350009,39.32031869,921 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_429_30,-74.49001652,39.33419067,621 DOUGHTY RD,PLEASANTVILLE CITY,15,1940,1,RES1,3002 -0119_429_5,-74.51776312,39.31888033,881 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,2017,1,RES1,3001 -0119_429_6,-74.51989692,39.31800033,795 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_429_7.01_C406,-74.5968921,39.31010385,406 NEWTOWNE SQ,PLEASANTVILLE CITY,33,1983,1,RES1,3001 -0119_429_7.02,-74.64643245,39.62361842,701-11 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_429_9,-74.6107756,39.30643072,615 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_43_1,-74.94229474,39.52308375,28 W GLENDALE AVE,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_43_1.01,-74.69452555,39.55531884,1020 BROAD ST,PLEASANTVILLE CITY,16,2005,1,RES1,3001 -0119_43_10,-74.869663,39.602446,1004 BROAD ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_43_11,-74.48766306,39.46478088,27 SHADELAND AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3002 -0119_43_12,-74.8050112,39.63074115,25 SHADELAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_43_13,-74.79687732,39.63133166,23 SHADELAND AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_43_15,-74.92677491,39.50954548,15-17 SHADELAND AVE,PLEASANTVILLE CITY,45,1900,2,RES1,3001 -0119_43_16,-74.93502657,39.52509969,11 SHADELAND AVE,PLEASANTVILLE CITY,45,1910,2,RES3A,3001 -0119_43_17,-74.776188,39.658626,22 W GLENDALE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_43_18,-74.7782985,39.643916,1001 S MAIN ST,PLEASANTVILLE CITY,15,1905,1,RES4,3002 -0119_43_19.01,-74.93529945,39.52415239,1007 S MAIN ST,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_43_19.02,-74.416783,39.365794,1009 S MAIN ST,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_43_20,-74.79728649,39.66010067,18 W GLENDALE AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_43_21,-74.5304687,39.3833984,1021 S MAIN ST,PLEASANTVILLE CITY,,1885,1,RES1,3001 -0119_43_22,-74.88312181,39.56010196,7 SHADELAND AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_43_5,-74.5989675,39.594589,1014 BROAD ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_43_8,-74.8116435,39.6363935,1008 BROAD ST,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_430_1,-74.73006602,39.58768938,140 W WRIGHT ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_430_10,-74.61057142,39.36845227,104 W WRIGHT ST,PLEASANTVILLE CITY,15,1938,1,RES1,3001 -0119_430_11,-74.866676,39.5364515,102 W WRIGHT ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_430_12,-74.931983,39.482794,327 CHESTNUT ST,PLEASANTVILLE CITY,14,1930,1,RES1,3001 -0119_430_13,-74.649393,39.534178,325 CHESTNUT ST,PLEASANTVILLE CITY,15,1910,2,RES3A,3001 -0119_430_14,-74.52376348,39.38900018,321 CHESTNUT ST,PLEASANTVILLE CITY,15,1937,1,EDU1,3004 -0119_430_15,-74.50290007,39.42560915,317 CHESTNUT ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_430_15.01,-74.5166045,39.4387165,319 CHESTNUT ST,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_430_16,-74.51729955,39.41054852,311 CHESTNUT ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_430_17,-74.50196218,39.40921904,301 CHESTNUT ST,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_430_18,-74.52320024,39.39564465,103 W DECATUR AVE,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_430_19,-74.51021955,39.40049969,105 W DECATUR AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_430_2,-74.76447877,39.63755906,136 W WRIGHT ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_430_25,-74.37221783,39.4033775,115-123 W DECATUR AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_430_3,-74.80671721,39.48778741,130 W WRIGHT ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_430_4,-74.5801165,39.527752,128 W WRIGHT ST,PLEASANTVILLE CITY,15,1911,1,RES1,3001 -0119_430_5,-74.6355795,39.5244685,126 W WRIGHT ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_430_6,-74.65303106,39.52644765,124 W WRIGHT ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_430_7,-74.8166176,39.62557397,116 W WRIGHT ST,PLEASANTVILLE CITY,15,1922,1,RES3A,3002 -0119_430_8,-74.9060635,39.4968755,112 W WRIGHT ST,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_430_9,-74.93836389,39.51846633,108 W WRIGHT ST,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_432_1,-74.51134634,39.33242419,11 DEVINS LANE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_433_1.01,-74.759478,39.4317945,240 OLD TURNPIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_433_1.02,-74.51841584,39.46736253,260 OLD TURNPIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_433_2_B02,-74.508541,39.327907,300 OLD TURNPIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_435_2,-74.64113907,39.36980681,12 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,REL1,3004 -0119_437_1_B01,-74.5149085,39.441482,ELDER CREEK & OLD TPK,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_44_1,-74.8431294,39.55688697,924 BROAD ST,PLEASANTVILLE CITY,15,1900,1,RES3A,3001 -0119_44_12,-74.3571215,39.4150575,904 BROAD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_44_14,-74.829508,39.423209,902 BROAD ST,PLEASANTVILLE CITY,16,1946,1,RES1,3001 -0119_44_15,-74.77980157,39.62686488,22 SHADELAND AVE,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_44_17,-74.51543448,39.43991516,12 SHADELAND AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_44_21,-74.96140793,39.52736374,915-917 S MAIN ST,PLEASANTVILLE CITY,,2000,1,RES1,3001 -0119_44_22,-74.74851486,39.45262521,23 W PARK AVE,PLEASANTVILLE CITY,45,1930,2,RES1,3001 -0119_44_23,-74.362721,39.410548,17 W PARK AVE,PLEASANTVILLE CITY,43,1905,2,GOV1,3004 -0119_44_24,-74.6367615,39.5334105,909 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_44_26,-74.441435,39.3686745,21 W PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_44_27,-74.92101619,39.48159321,6 SHADELAND AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_44_28,-74.95359609,39.51738299,929 S MAIN ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_44_30,-74.83283051,39.38598933,29 W PARK AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_44_4,-74.646318,39.5484405,920 BROAD ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_44_6,-74.63919599,39.53402717,916 BROAD ST,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_44_9,-74.766388,39.4862535,910 BROAD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_444_1,-74.365879,39.4070335,122 W DECATUR AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_444_10,-74.386945,39.391413,205-207 CHESTNUT ST,PLEASANTVILLE CITY,43,1900,4,GOV1,3004 -0119_444_11,-74.638576,39.4000285,201 CHESTNUT ST,PLEASANTVILLE CITY,43,1890,2,RES1,3001 -0119_444_14,-74.6221495,39.3693945,105 W BLACK HORSE PIKE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_444_15,-74.60108027,39.43072062,109 W BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1920,1,RES1,3002 -0119_444_2,-74.39101649,39.39339504,116 W DECATUR AVE,PLEASANTVILLE CITY,15,1997,1,RES1,3001 -0119_444_3,-74.40585488,39.37860821,112 W DECATUR AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_444_4,-74.40432868,39.39123449,110 W DECATUR AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_444_6,-74.44896318,39.37357161,221 CHESTNUT ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_444_7,-74.36480746,39.41373114,217 CHESTNUT ST,PLEASANTVILLE CITY,15,1898,1,RES1,3001 -0119_444_8,-74.3625495,39.413217,215 CHESTNUT ST,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_445_2,-74.72256711,39.46074382,106 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_445_3,-74.511095,39.327278,113 CHESTNUT ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_447_3,-74.95257848,39.52152794,711 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2011,1,RES1,3002 -0119_45_10,-74.51623146,39.32570733,1000 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,1991,1,RES1,3001 -0119_45_3,-74.54929665,39.38045116,1012 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_45_5,-74.5678332,39.37159662,1019 NOAHS RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_45_6,-74.5679215,39.480458,1010 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_46_1,-74.48858984,39.33856799,600-800 W BLACK HORSE,PLEASANTVILLE CITY,,1958,1,RES1,3001 -0119_46_3,-74.515967,39.324282,776 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_47_1,-74.40479874,39.39035977,931 CHURCH ST,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_47_1.01,-74.8770645,39.443879,925 CHURCH ST,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_47_1.02,-74.44156654,39.36946818,919 CHURCH ST,PLEASANTVILLE CITY,16,1991,1,RES1,3001 -0119_47_1.03,-74.40039157,39.39138547,960 W PARK AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_47_1.04,-74.366569,39.4124015,956 W PARK AVE,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_47_13,-74.40444032,39.37934,901 CHURCH ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_47_18,-74.414271,39.370747,849 CHURCH ST,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_47_19,-74.52157373,39.39696364,830 W PARK AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_47_20,-74.47979289,39.43202629,828 W PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_47_21,-74.48707633,39.44365237,800 W PARK AVE,PLEASANTVILLE CITY,16,1954,1,GOV1,3004 -0119_47_22,-74.4807518,39.43611513,821 RISLEY AVE,PLEASANTVILLE CITY,16,1976,1,GOV1,3004 -0119_47_23,-74.44857196,39.37443419,815 RISLEY AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_47_25,-74.36835713,39.41490668,813 RISLEY AVE,PLEASANTVILLE CITY,14,1924,1,RES1,3001 -0119_47_27,-74.391529,39.390075,801 CHURCH ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_47_3,-74.452081,39.3753895,952 W PARK AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_47_30,-74.50193879,39.41815438,824 W PARK AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_47_33,-74.51752687,39.40600065,812 W PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_47_37,-74.44702932,39.37277742,946 W PARK AVE,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_47_39,-74.50976396,39.40823936,829 RISLEY AVE,PLEASANTVILLE CITY,16,1974,1,RES1,3001 -0119_47_4,-74.44194522,39.37285651,913 CHURCH ST,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_47_42,-74.38490366,39.39397603,831 CHURCH ST,PLEASANTVILLE CITY,16,1962,1,GOV1,3004 -0119_47_43,-74.38294146,39.40001188,829 CHURCH ST,PLEASANTVILLE CITY,16,1962,1,GOV1,3004 -0119_47_6,-74.42155845,39.37069663,909 CHURCH ST,PLEASANTVILLE CITY,16,1974,1,RES1,3001 -0119_47_7,-74.50838081,39.38505647,950 W PARK AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_478_1,-74.73726461,39.5914451,301 WOODLAND AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_48_11,-74.37512282,39.41939406,521 NOAHS RD,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_48_16,-74.59325263,39.37779718,619 S NEW RD,PLEASANTVILLE CITY,14,1928,1,COM3,3004 -0119_48_17,-74.9481175,39.5091475,617 S NEW RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_48_18,-74.87691383,39.60201215,613 S NEW RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_48_20,-74.8310185,39.426122,601 S NEW RD,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_48_22,-74.5600315,39.4145495,708 W PARK AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_48_23,-74.823032,39.497523,704 W PARK AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_48_24,-74.5525105,39.4266605,700 W PARK AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_48_25.01,-74.53065678,39.30819281,622 W PARK AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_48_25.02,-74.88409622,39.59479521,703 SHAW AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_48_25.03,-74.86828719,39.49126305,705 SHAW AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_48_25.04,-74.87494961,39.49059626,704 SHAW AVE,PLEASANTVILLE CITY,16,1986,1,COM1,3004 -0119_48_25.05,-74.63932367,39.53226599,700 SHAW AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_48_26,-74.80323066,39.64074053,618 W PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_48_29,-74.36976052,39.40798184,639 CHURCH ST,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_48_3,-74.94652,39.537106,712 W PARK AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3004 -0119_48_30,-74.366612,39.409193,641 CHURCH ST,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_48_31,-74.92419677,39.50913337,705 CHURCH ST,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_48_31.01,-74.92517067,39.50811635,701 CHURCH ST,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_48_31.02,-74.90432484,39.53753782,718 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_48_31.03,-74.92592689,39.51481725,720 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2008,1,GOV1,3004 -0119_48_31.05,-74.9103165,39.536018,724 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2008,1,GOV1,3004 -0119_48_32,-74.36418309,39.40755162,697 CHURCH ST,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_48_33,-74.91281957,39.53301785,702 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_48_33.02,-74.9332345,39.509678,706 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_48_33.03,-74.9281055,39.507896,708 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2009,1,GOV1,3004 -0119_48_33.04,-74.9443385,39.5119155,710 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2010,1,RES1,3001 -0119_48_33.05,-74.92958657,39.52077667,712 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_48_33.06,-74.92935052,39.52064558,714 LAFAYETTE CIR,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_48_34,-74.36547533,39.40533351,643 CHURCH ST,PLEASANTVILLE CITY,15,1998,1,GOV1,3004 -0119_48_35,-74.36296133,39.40741805,647 CHURCH ST,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_48_36,-74.36606423,39.41030557,651 CHURCH ST,PLEASANTVILLE CITY,15,1945,1,RES1,3001 -0119_48_37,-74.4413375,39.368371,657 CHURCH ST,PLEASANTVILLE CITY,15,1945,1,RES1,3001 -0119_48_38,-74.363454,39.4106655,661 CHURCH ST,PLEASANTVILLE CITY,15,1999,1,RES1,3001 -0119_48_44,-74.64519044,39.53456142,532 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1971,1,RES3A,3001 -0119_48_51,-74.5747415,39.40949,518 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1967,1,RES1,3001 -0119_48_53,-74.972754,39.5167445,514 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_48_54,-74.71805213,39.64434821,508 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_48_56,-74.81769421,39.64752966,504 LAFAYETTE AVE,PLEASANTVILLE CITY,16,1968,1,RES1,3001 -0119_48_60,-74.37782944,39.40085933,800 RISLEY AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_48_61,-74.35647564,39.4146203,804 RISLEY AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_62,-74.36729524,39.42027891,808 RISLEY AVE,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_48_63,-74.51866584,39.39290402,812 RISLEY AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_64,-74.49879267,39.4128595,820 RISLEY AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_65,-74.4613629,39.46963169,824 RISLEY AVE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_66,-74.75518525,39.60919935,828 RISLEY AVE,PLEASANTVILLE CITY,16,1973,1,COM1,3004 -0119_48_67,-74.631057,39.533223,726 W PARK AVE,PLEASANTVILLE CITY,16,1977,1,RES1,3001 -0119_48_68,-74.807779,39.631806,722 W PARK AVE,PLEASANTVILLE CITY,16,1974,1,RES1,3001 -0119_48_69,-74.51478341,39.41467118,733 JOHNSON DR,PLEASANTVILLE CITY,16,1972,1,GOV1,3004 -0119_48_7,-74.62470643,39.41767786,713 CHURCH ST,PLEASANTVILLE CITY,15,1988,1,IND1,3004 -0119_48_70,-74.49218786,39.42857483,729 JOHNSON DR,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_71,-74.51317272,39.4313599,725 JOHNSON DR,PLEASANTVILLE CITY,16,1973,1,GOV1,3004 -0119_48_72,-74.50623026,39.44330903,721 JOHNSON DR,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_73,-74.50843135,39.43257926,717 JOHNSON DR,PLEASANTVILLE CITY,16,1973,1,GOV1,3004 -0119_48_74,-74.51399267,39.39771188,718 JOHNSON DR,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_75,-74.527049,39.3958885,722 JOHNSON DR,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_76,-74.52390948,39.39509818,726 JOHNSON DR,PLEASANTVILLE CITY,16,1974,1,RES1,3001 -0119_48_77,-74.5283685,39.395691,730 JOHNSON DR,PLEASANTVILLE CITY,16,1972,1,GOV1,3004 -0119_48_78,-74.51840567,39.40138358,734 JOHNSON DR,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_79,-74.4470305,39.3741905,805 BROWN LANE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_8.01,-74.36877,39.402786,535 NOAHS RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_48_80,-74.86761613,39.43726416,801 BROWN LANE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_81,-74.392907,39.3880625,737 CHURCH ST,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_82,-74.38783766,39.39004735,729 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_48_83,-74.3872205,39.3922435,725 CHURCH ST,PLEASANTVILLE CITY,16,1972,1,RES1,3001 -0119_48_84,-74.36582869,39.41721046,800 BROWN LANE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_85,-74.44646542,39.37150069,804 BROWN LANE,PLEASANTVILLE CITY,16,1973,1,RES1,3001 -0119_48_9,-74.37642667,39.3963535,719 CHURCH ST,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_480_10,-74.82550053,39.61366879,210 WOODLAND AVE,PLEASANTVILLE CITY,35,2008,1,GOV1,3004 -0119_480_11,-74.819768,39.620005,208 WOODLAND AVE,PLEASANTVILLE CITY,35,2008,1,GOV1,3004 -0119_480_12,-74.79819491,39.62922215,206 WOODLAND AVE,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_13,-74.7984355,39.6261755,202 WOODLAND AVE,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_14,-74.81248254,39.63105416,200 WOODLAND AVE,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_15,-74.80943389,39.63047988,307 N SECOND ST,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_480_16,-74.80653543,39.62947764,309 N SECOND ST,PLEASANTVILLE CITY,35,2008,1,GOV1,3004 -0119_480_17,-74.810293,39.628194,311 N SECOND ST,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_18,-74.81528175,39.62542796,315 N SECOND ST,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_19,-74.79545949,39.63922667,317 N SECOND ST,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_2,-74.8615976,39.59527696,302 N THIRD ST,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_3,-74.8674915,39.592729,304 N THIRD ST,PLEASANTVILLE CITY,35,2008,1,GOV1,3004 -0119_480_4,-74.8821005,39.596497,306 N THIRD ST,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_5,-74.881446,39.592829,308 N THIRD ST,PLEASANTVILLE CITY,35,2008,1,GOV1,3004 -0119_480_6,-74.8699998,39.60413169,310 N THIRD ST,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_7,-74.86412,39.5995415,312 N THIRD ST,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_480_8,-74.80801454,39.62150466,314 N THIRD ST,PLEASANTVILLE CITY,35,2008,1,GOV1,3004 -0119_480_9,-74.81001707,39.62016184,316 N THIRD ST,PLEASANTVILLE CITY,35,2008,1,RES1,3001 -0119_49_1,-74.47515981,39.34058367,744 CHURCH ST,PLEASANTVILLE CITY,16,1996,1,GOV1,3004 -0119_49_11,-74.42757661,39.35808161,709 OHIO AVE,PLEASANTVILLE CITY,16,1950,1,GOV1,3004 -0119_49_14,-74.50285892,39.32963584,707 NEW JERSEY AVE,PLEASANTVILLE CITY,16,2007,1,RES1,3001 -0119_49_16,-74.51693244,39.31899183,700 CHURCH ST,PLEASANTVILLE CITY,16,2006,1,RES3A,3001 -0119_49_17,-74.5108801,39.33369624,708 CHURCH ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_49_19,-74.5050805,39.328272,720 CHURCH ST,PLEASANTVILLE CITY,15,1870,1,GOV1,3004 -0119_49_2,-74.50214731,39.32637274,724 RISLEY AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_49_21,-74.464384,39.347086,738 CHURCH ST,PLEASANTVILLE CITY,15,1906,1,RES1,3001 -0119_49_3,-74.499523,39.3319915,720 RISLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_49_4,-74.5061717,39.32406897,714 RISLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_49_5,-74.43296912,39.36425338,708 RISLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_49_6,-74.42465589,39.3597466,706 RISLEY AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_49_7,-74.7990739,39.6469006,721 OHIO AVE,PLEASANTVILLE CITY,16,1965,1,GOV1,3004 -0119_49_8,-74.78194678,39.66571597,725 OHIO AVE,PLEASANTVILLE CITY,16,1966,1,RES1,3001 -0119_49_9,-74.815077,39.655042,717 OHIO AVE,PLEASANTVILLE CITY,16,2010,1,GOV1,3004 -0119_5_1,-74.834945,39.38862107,1407 GARFIELD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_5_1.01,-74.83486585,39.40030699,1403 GARFIELD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_50_1,-74.37045188,39.40374585,619 CHURCH ST,PLEASANTVILLE CITY,,1975,1,RES1,3001 -0119_50_2,-74.37358486,39.4036971,521 DOUGHTY RD,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_50_3,-74.373201,39.4027735,520-24 NOAHS RD,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_50_6,-74.36988536,39.40768819,633 CHURCH ST,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_50_7,-74.37928266,39.41433118,501 S NEW RD,PLEASANTVILLE CITY,,1900,1,GOV1,3004 -0119_50_8,-74.37697139,39.41702082,505 DOUGHTY RD,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_51_1,-74.39815664,39.38909414,910 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_51_10,-74.58966582,39.41065792,232 W PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_51_11,-74.569412,39.414125,230 W PARK AVE,PLEASANTVILLE CITY,16,2016,1,RES1,3001 -0119_51_12,-74.5725055,39.35061917,228 W PARK AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_51_13,-74.60443281,39.41672696,226 W PARK AVE,PLEASANTVILLE CITY,45,1925,2,RES1,3001 -0119_51_15,-74.48863505,39.49776827,218 W PARK AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_51_16,-74.64734709,39.43103581,210 W PARK AVE,PLEASANTVILLE CITY,16,1990,1,RES1,3001 -0119_51_17,-74.6917015,39.419703,204 W PARK AVE,PLEASANTVILLE CITY,16,1987,1,RES1,3001 -0119_51_18,-74.57098617,39.34050463,213 DOUGHTY RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_51_19,-74.380492,39.400807,317 DOUGHTY RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_51_2,-74.45057839,39.35641953,800 S NEW RD,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_51_20,-74.49428083,39.33834871,319 DOUGHTY RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_51_21,-74.44686487,39.48808118,323 DOUGHTY RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_51_22,-74.48822118,39.44048402,401 DOUGHTY RD,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_51_23,-74.68390615,39.55457154,411 DOUGHTY RD,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_51_25,-74.58198151,39.38167967,429 DOUGHTY RD,PLEASANTVILLE CITY,15,1916,1,RES1,3001 -0119_51_26,-74.8025954,39.62709696,433 DOUGHTY RD,PLEASANTVILLE CITY,15,1914,1,RES1,3001 -0119_51_27,-74.802257,39.5397065,500 S NEW RD,PLEASANTVILLE CITY,,1972,1,GOV1,3004 -0119_51_28,-74.62484785,39.51975704,600 S NEW RD,PLEASANTVILLE CITY,,2017,1,RES1,3001 -0119_51_3,-74.5192405,39.39743,326 W PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_51_30,-74.44971112,39.37114194,307-11 DOUGHTY RD,PLEASANTVILLE CITY,43,1900,3,RES1,3001 -0119_51_31,-74.367894,39.4067655,315 DOUGHTY RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_51_32,-74.63725365,39.52789797,303 DOUGHTY RD,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_51_33,-74.52767255,39.40504507,305 DOUGHTY RD,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_51_34,-74.49418904,39.33676385,804 S NEW RD,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_51_36,-74.62762265,39.4327238,214 W PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_51_37,-74.605087,39.3237025,220 W PARK AVE,PLEASANTVILLE CITY,43,1890,2,RES1,3001 -0119_51_39,-74.521645,39.473171,217 DOUGHTY RD,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_51_4,-74.44240838,39.36829915,322 W PARK AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_51_40,-74.5894235,39.427684,219 DOUGHTY RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_51_41,-74.48993341,39.42991317,710 S NEW RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_51_42,-74.37020414,39.40110181,806 S NEW RD,PLEASANTVILLE CITY,14,1930,1,GOV1,3004 -0119_51_5,-74.3662329,39.42182282,320 W PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_51_7,-74.51963926,39.41041064,316 W PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_51_8,-74.50265158,39.42916584,308 W PARK AVE,PLEASANTVILLE CITY,15,1850,1,RES1,3001 -0119_51_9,-74.5925295,39.429335,234 W PARK AVE,PLEASANTVILLE CITY,16,1925,1,RES1,3001 -0119_52_10,-74.38385,39.395773,312 DOUGHTY RD,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_52_11,-74.36291383,39.41166899,308 DOUGHTY RD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_52_12,-74.511229,39.385794,304 DOUGHTY RD,PLEASANTVILLE CITY,15,1895,1,GOV1,3004 -0119_52_13,-74.50353724,39.41601615,300 DOUGHTY RD,PLEASANTVILLE CITY,45,1905,4,RES1,3001 -0119_52_14,-74.37632098,39.39675683,633 PORTLAND AVE,PLEASANTVILLE CITY,16,1940,1,RES1,3001 -0119_52_16,-74.38140404,39.41613119,619 PORTLAND AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_52_17,-74.38909767,39.39226199,611 PORTLAND AVE,PLEASANTVILLE CITY,15,1995,1,RES1,3001 -0119_52_19,-74.49708209,39.33559262,607 PORTLAND AVE,PLEASANTVILLE CITY,15,1995,1,RES1,3001 -0119_52_2,-74.87827,39.567536,429 W BAYVIEW AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_52_20,-74.47447222,39.48009554,601 PORTLAND AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_52_21,-74.50436016,39.45833801,521 PORTLAND AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_52_22,-74.50376682,39.42862797,517 PORTLAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_52_23,-74.70206533,39.57718489,511 PORTLAND AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_52_24,-74.81017701,39.64052149,501-7 PORTLAND AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_52_25,-74.7764985,39.6560925,305 W BAYVIEW AVE,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_52_28,-74.51285324,39.44162395,402 DOUGHTY RD,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_52_29,-74.45359713,39.49054069,320 DOUGHTY RD,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_52_3.01,-74.973817,39.5090985,416 DOUGHTY RD,PLEASANTVILLE CITY,45,1900,4,RES1,3001 -0119_52_3.02,-74.8089025,39.63043,421 W BAYVIEW AVE,PLEASANTVILLE CITY,16,1982,1,RES1,3001 -0119_52_30,-74.56491575,39.41785588,401 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_52_4,-74.67095233,39.54472348,406 DOUGHTY RD,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_52_5,-74.4623865,39.35348083,316 DOUGHTY RD,PLEASANTVILLE CITY,15,1885,1,RES1,3001 -0119_52_6,-74.69893908,39.58090639,515 PORTLAND AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_52_7,-74.94005919,39.50120436,415 W BAYVIEW AVE,PLEASANTVILLE CITY,43,1890,2,RES1,3001 -0119_52_8,-74.60332978,39.38693692,407 W BAYVIEW AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_52_9,-74.9515856,39.52117775,309 W BAYVIEW AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_53_2,-74.59242169,39.31170519,513 CHURCH ST,PLEASANTVILLE CITY,16,1928,1,RES1,3001 -0119_53_4,-74.529111,39.5112345,507 CHURCH ST,PLEASANTVILLE CITY,15,1905,1,GOV1,3004 -0119_53_5,-74.51217797,39.50476132,407 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_54_1,-74.44125357,39.35347719,500 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_55_1,-74.3779845,39.4140565,420 S NEW RD,PLEASANTVILLE CITY,,1983,1,GOV1,3004 -0119_55_3,-74.44818294,39.37219919,413 ALDER AVE,PLEASANTVILLE CITY,15,1985,1,RES1,3001 -0119_55_5,-74.3818165,39.4159,409 ALDER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_56_1,-74.49016055,39.52365064,392 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_56_11,-74.48825035,39.51797266,350 S NEW RD,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_57_1,-74.59320896,39.31306535,316 S NEW RD,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_57_17,-74.4363245,39.368858,201 W DECATUR AVE,PLEASANTVILLE CITY,,1966,1,GOV1,3004 -0119_57_23,-74.59480212,39.31131441,310 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_57_4,-74.5909185,39.313649,312 S NEW RD,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_57_5,-74.4917796,39.33069571,408 SHEFFIELD AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_58_3,-74.37933796,39.40004126,401 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_58_40_B01,-74.37940216,39.39959594,200 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_58_41,-74.95065638,39.52108373,407 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_58_8,-74.3855115,39.3984345,400 W DECATUR AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_59_19,-74.4934215,39.3324285,400 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,1988,1,RES1,3001 -0119_59_23.02,-74.4915,39.330935,210 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_59_25,-74.49541707,39.33224768,444 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,1986,1,RES1,3001 -0119_59_28,-74.78621083,39.67640083,200 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_59_32,-74.5181521,39.32290544,W BLACK HORSE PIKE BRIDGE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_6_1,-74.81210099,39.40575641,1317 GARFIELD AVE,PLEASANTVILLE CITY,16,1983,1,RES1,3001 -0119_6_13,-74.49508376,39.43387859,1309 GARFIELD AVE,PLEASANTVILLE CITY,16,2009,1,RES1,3001 -0119_6_17,-74.5160725,39.3969405,1301 GARFIELD AVE,PLEASANTVILLE CITY,16,1989,1,RES1,3001 -0119_6_8,-74.78394956,39.59683672,1319 GARFIELD AVE,PLEASANTVILLE CITY,15,1928,1,GOV1,3004 -0119_600_2,-74.612795,39.322608,EXPRESSWAY PARKING LOT,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_61_10,-74.36434453,39.42021166,416 CHESTNUT ST,PLEASANTVILLE CITY,45,1940,2,RES1,3001 -0119_61_11,-74.3713635,39.406837,414 CHESTNUT ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_61_12,-74.38874346,39.39405234,412 CHESTNUT ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_61_13,-74.50903383,39.33710103,410 CHESTNUT ST,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_61_14,-74.45649341,39.35129383,408 CHESTNUT ST,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_61_15,-74.479298,39.440436,11 W WRIGHT ST,PLEASANTVILLE CITY,16,1896,1,RES1,3001 -0119_61_16,-74.3815539,39.41539054,421 S MAIN ST,PLEASANTVILLE CITY,43,1938,3,RES1,3001 -0119_61_17,-74.3824801,39.40107015,417 S MAIN ST,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_61_2,-74.4716965,39.482665,404 CHESTNUT ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_61_3,-74.69820646,39.5890268,19 W WRIGHT ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_61_4,-74.7089395,39.5663215,17 W WRIGHT ST,PLEASANTVILLE CITY,15,1905,1,GOV1,3004 -0119_61_5,-74.500882,39.431213,15 W WRIGHT ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_61_6,-74.53106268,39.39965524,425 S MAIN ST,PLEASANTVILLE CITY,,1910,1,RES1,3001 -0119_61_6.01,-74.51271673,39.40157101,6 W BAYVIEW AVE,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_61_6.02,-74.51740557,39.38690616,10 W BAYVIEW AVE,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_61_8,-74.481073,39.3522555,413 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_61_9,-74.49901912,39.46925518,401 S MAIN ST,PLEASANTVILLE CITY,,1959,1,RES1,3001 -0119_62_1,-74.8175115,39.652678,340 CHESTNUT ST,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_62_10,-74.49482565,39.43135778,23 W DECATUR AVE,PLEASANTVILLE CITY,45,1928,2,RES1,3001 -0119_62_11,-74.48103552,39.44393546,17 W DECATUR AVE,PLEASANTVILLE CITY,43,1922,3,RES1,3001 -0119_62_15,-74.613985,39.5059285,316 CHESTNUT ST,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_62_16,-74.7912825,39.6305985,314 CHESTNUT ST,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_62_18,-74.7909525,39.643162,363 S MAIN ST,PLEASANTVILLE CITY,,0,1,REL1,3004 -0119_62_2,-74.79621057,39.65183284,10 W WRIGHT ST,PLEASANTVILLE CITY,15,1935,1,RES1,3001 -0119_62_22,-74.92583226,39.47548249,322 CHESTNUT ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_62_23,-74.64376153,39.53157822,318 CHESTNUT ST,PLEASANTVILLE CITY,45,1928,2,GOV1,3004 -0119_62_25,-74.5774265,39.550743,321-23 S MAIN ST,PLEASANTVILLE CITY,,1955,1,COM3,3004 -0119_62_29,-74.70200921,39.57842593,375 S MAIN ST,PLEASANTVILLE CITY,,1955,1,GOV1,3004 -0119_62_33,-74.764571,39.6362335,301 S MAIN ST,PLEASANTVILLE CITY,,1930,1,RES1,3001 -0119_62_36,-74.9752185,39.5127965,332 CHESTNUT ST,PLEASANTVILLE CITY,16,1996,1,RES1,3001 -0119_62_4,-74.52801502,39.31074666,365 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_62_5,-74.5901385,39.377579,326 CHESTNUT ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_62_6,-74.845155,39.4828375,333 S MAIN ST,PLEASANTVILLE CITY,,2015,1,GOV1,3004 -0119_62_8,-74.51204883,39.40693949,29 W DECATUR AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_62_9,-74.52574131,39.41317305,25 W DECATUR AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_63_1,-74.40573555,39.38956815,25 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_63_12,-74.503973,39.4062405,201 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES2,3005 -0119_63_15,-74.49495346,39.42736019,231-33 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_63_3,-74.51745954,39.39454769,16 W DECATUR AVE,PLEASANTVILLE CITY,43,1910,3,RES1,3001 -0119_63_9,-74.49178845,39.4331903,235-239 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_11,-74.5097424,39.32819384,45 W WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_14,-74.4458905,39.485255,15 W WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_16,-74.366335,39.4067785,129 S MAIN ST,PLEASANTVILLE CITY,,1924,1,RES1,3001 -0119_64_17,-74.6377685,39.4023935,123 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_18,-74.61237919,39.42033203,105 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3002 -0119_64_19,-74.6201855,39.3827895,113 S MAIN ST,PLEASANTVILLE CITY,,1920,1,RES1,3001 -0119_64_20,-74.63220372,39.38749436,111 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_22,-74.51006989,39.32952335,50 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_23,-74.63928621,39.36990875,20 W BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1938,1,RES1,3001 -0119_64_25,-74.652977,39.3988345,16 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_28,-74.379989,39.4007555,10 W BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1905,1,GOV1,3004 -0119_64_30,-74.423511,39.374076,2-8 W BLACK HORSE PIKE,PLEASANTVILLE CITY,,1924,1,RES1,3001 -0119_64_32,-74.64009696,39.39221739,117 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_33,-74.59935726,39.42849799,107 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_34,-74.6183093,39.42980372,109 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_64_35,-74.37299915,39.40369252,125-27 S MAIN ST,PLEASANTVILLE CITY,,1924,1,RES1,3001 -0119_65_1,-74.71271689,39.4686996,820 S MAIN ST,PLEASANTVILLE CITY,,1947,1,RES1,3001 -0119_65_10,-74.77355294,39.6205571,44 E PARK AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_65_101,-74.778559,39.6226965,107 E GREENFIELD AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_65_102,-74.49707197,39.44747449,109 E GREENFIELD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_65_104,-74.6407375,39.528997,33 E GREENFIELD AVE,PLEASANTVILLE CITY,16,1955,1,RES3A,3001 -0119_65_105,-74.64156299,39.53369567,37 E GREENFIELD AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_65_11,-74.51369978,39.43725268,50 E PARK AVE,PLEASANTVILLE CITY,16,1963,1,RES1,3001 -0119_65_12,-74.704076,39.567672,43 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_65_13,-74.5008215,39.466228,52 E PARK AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_65_15,-74.8096375,39.6345725,108 E PARK AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_65_16,-74.95626233,39.50300973,112 E PARK AVE,PLEASANTVILLE CITY,14,1860,1,RES1,3001 -0119_65_18,-74.529844,39.4503305,113 E GREENFIELD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_65_19,-74.9238903,39.53318554,122 E PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_3,-74.70010607,39.50184192,9 E GREENFIELD AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_65_4,-74.82989332,39.40041604,17 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_65_5,-74.74869887,39.45051664,24 E PARK AVE,PLEASANTVILLE CITY,14,1870,1,RES1,3001 -0119_65_59,-74.80924483,39.39744972,810 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_65_60,-74.43583133,39.36856757,6 E PARK AVE,PLEASANTVILLE CITY,15,1918,1,RES1,3001 -0119_65_62,-74.36677886,39.40841122,16 E PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_63,-74.7813465,39.445122,18 E PARK AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_65_65,-74.74664367,39.44518535,23 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_65_68,-74.75397218,39.44556059,25 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_65_69,-74.8730475,39.44296684,29 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_65_7,-74.40678264,39.37884637,19 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1996,1,RES1,3001 -0119_65_70,-74.86779208,39.49396985,31 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_65_71,-74.789819,39.5188885,45 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_65_72,-74.81908215,39.56776625,101 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_65_73,-74.76551267,39.60626793,103 E GREENFIELD AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_65_74,-74.80977078,39.63009802,56 E PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_75,-74.8761013,39.60400593,100 E PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_76,-74.52321558,39.46236929,115 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_65_77,-74.93820719,39.48294498,131 E GREENFIELD AVE,PLEASANTVILLE CITY,16,2003,1,RES1,3001 -0119_65_79,-74.881819,39.6027815,102 E PARK AVE,PLEASANTVILLE CITY,15,1927,1,COM4,3004 -0119_65_8,-74.6932475,39.51429,32 E PARK AVE,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_65_80,-74.81468694,39.62577485,104 E PARK AVE,PLEASANTVILLE CITY,16,1950,1,GOV1,3004 -0119_65_87,-74.8721465,39.5924235,119 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_65_89,-74.80177041,39.63439014,125 E GREENFIELD AVE,PLEASANTVILLE CITY,14,1900,1,RES1,3001 -0119_65_91,-74.81256254,39.63533762,129 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_92,-74.51806166,39.39713155,200 E PARK AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_65_95,-74.698989,39.6378665,805 KNOLL PL,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_96,-74.82950105,39.45212819,21 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_97,-74.65048887,39.52249556,28 E PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_98,-74.64622799,39.53236817,30 E PARK AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_65_99,-74.94218517,39.524756,116 E PARK AVE,PLEASANTVILLE CITY,14,1940,1,RES1,3001 -0119_66_1,-74.62043946,39.38345619,712 S MAIN ST,PLEASANTVILLE CITY,43,1922,3,RES1,3001 -0119_66_10,-74.35747953,39.41350266,7 OAKLAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_66_11,-74.3767735,39.414902,9 OAKLAND AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_66_12,-74.45369889,39.37316525,11 OAKLAND AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_66_13,-74.4557641,39.3734909,15 OAKLAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_66_17,-74.86189864,39.43366947,709 PROSPECT AVE,PLEASANTVILLE CITY,16,1959,1,RES1,3001 -0119_66_2,-74.37028346,39.41146722,708 S MAIN ST,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_66_3,-74.41241369,39.39044896,706 S MAIN ST,PLEASANTVILLE CITY,15,1875,1,RES1,3001 -0119_66_4,-74.56951324,39.36874845,700 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_66_6,-74.6621398,39.41689096,8 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_66_7,-74.64703729,39.43051985,12 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_66_8,-74.6408277,39.47481734,16 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_66_9,-74.36705892,39.40712377,5 OAKLAND AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_67_11,-74.6154916,39.32428571,503 PROSPECT AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_67_14,-74.54675266,39.38522299,512-18 S MAIN ST,PLEASANTVILLE CITY,43,1920,4,RES1,3001 -0119_67_16,-74.62596511,39.41658788,520 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_67_3,-74.6023835,39.414355,500 S MAIN ST,PLEASANTVILLE CITY,,1968,1,RES1,3001 -0119_67_4,-74.62354318,39.41133357,4 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_67_5,-74.62486694,39.42152235,2 E EDGEWATER AVE,PLEASANTVILLE CITY,14,1890,1,RES1,3001 -0119_67_6,-74.63127969,39.41996662,8 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_67_7,-74.63728853,39.43306294,10 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1913,1,RES1,3001 -0119_67_8,-74.6748355,39.4139865,12 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_67_9,-74.59164196,39.32786186,5 E BAYVIEW AVE,PLEASANTVILLE CITY,,1945,1,RES1,3001 -0119_68_1,-74.654733,39.4875315,714 PROSPECT AVE,PLEASANTVILLE CITY,15,1885,1,RES1,3001 -0119_68_100,-74.79024367,39.63150705,211 OAKLAND AVE,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_68_104,-74.50406484,39.46496847,221 OAKLAND AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_68_126,-74.8193275,39.6541215,321 OAKLAND AVE,PLEASANTVILLE CITY,16,2016,1,RES1,3001 -0119_68_13,-74.50717263,39.4595302,132-200 E GREENFIELD AVE,PLEASANTVILLE CITY,,1920,1,COM3,3004 -0119_68_130,-74.51173864,39.38502621,329 OAKLAND AVE,PLEASANTVILLE CITY,16,2015,1,RES1,3001 -0119_68_132,-74.41349141,39.36958099,36 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_68_133,-74.4013435,39.38847776,40 E GREENFIELD AVE,PLEASANTVILLE CITY,16,1956,1,RES1,3001 -0119_68_14,-74.5096975,39.4579455,202 E GREENFIELD AVE,PLEASANTVILLE CITY,14,1915,1,RES1,3001 -0119_68_19,-74.64564373,39.40736708,19 OAKLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_2,-74.68208001,39.44639783,22 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_20,-74.631571,39.423059,21 OAKLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_21,-74.69472746,39.42152588,23 OAKLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_22,-74.538055,39.4615445,25 OAKLAND AVE,PLEASANTVILLE CITY,15,1916,1,COM1,3004 -0119_68_23,-74.60559204,39.44047994,27 OAKLAND AVE,PLEASANTVILLE CITY,15,1941,1,RES1,3001 -0119_68_24,-74.53320222,39.47058218,29 OAKLAND AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_68_25,-74.6054565,39.490403,31 OAKLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_68_26,-74.62603433,39.44232752,33 OAKLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_27,-74.51964114,39.40030036,333 OAKLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3004 -0119_68_28,-74.63083555,39.49026866,37 OAKLAND AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_68_29,-74.73978016,39.43111903,39 OAKLAND AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_68_3,-74.80323917,39.43033549,28 E GREENFIELD AVE,PLEASANTVILLE CITY,14,1912,1,RES1,3001 -0119_68_30,-74.80931866,39.37809804,41 OAKLAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_68_34,-74.8059485,39.4316145,105 OAKLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_37,-74.74678537,39.44586836,111 OAKLAND AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_68_39,-74.78261486,39.45796324,113 OAKLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_68_4,-74.37163188,39.40709384,42 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_41,-74.86614837,39.457205,117 OAKLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_68_43,-74.5568985,39.5075595,121 OAKLAND AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_68_45,-74.65087651,39.52539129,125 OAKLAND AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_68_46,-74.648828,39.532385,127 OAKLAND AVE,PLEASANTVILLE CITY,14,1930,1,RES1,3001 -0119_68_47,-74.65801416,39.53826453,129 OAKLAND AVE,PLEASANTVILLE CITY,14,1930,1,RES1,3001 -0119_68_5,-74.73526628,39.46147588,46 E GREENFIELD AVE,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_68_52,-74.85804,39.55645633,207 OAKLAND AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_68_54,-74.7169005,39.395562,24 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_59,-74.69095426,39.5066523,112 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_68_7,-74.8754345,39.489719,106 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_68_88,-74.52813932,39.39950943,316 E GREENFIELD AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_68_9,-74.65263756,39.5251558,110 E GREENFIELD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_69_1,-74.59107232,39.38131897,18 OAKLAND AVE,PLEASANTVILLE CITY,43,1915,2,RES1,3001 -0119_69_10,-74.62163791,39.3795203,36 OAKLAND AVE,PLEASANTVILLE CITY,15,1922,1,COM1,3004 -0119_69_11,-74.65169828,39.39653625,38 OAKLAND AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_69_12,-74.63998619,39.40849501,40 OAKLAND AVE,PLEASANTVILLE CITY,15,1926,1,COM1,3004 -0119_69_14,-74.7693805,39.3004635,17 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_69_16,-74.54418038,39.37256211,21 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3002 -0119_69_17,-74.5395165,39.3848135,23 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_69_18,-74.5493649,39.38117576,25 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_69_19,-74.5604985,39.3698825,27 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_69_20,-74.57100894,39.36986372,29 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_69_21,-74.53464613,39.38908372,31 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_69_22,-74.581548,39.369857,33 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,2,RES1,3001 -0119_69_23,-74.59277186,39.377968,35 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_69_25,-74.36845891,39.40965821,39 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_69_26,-74.36335026,39.41560943,41 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_69_3,-74.6003453,39.36916593,22 OAKLAND AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_69_4,-74.365894,39.417328,24 OAKLAND AVE,PLEASANTVILLE CITY,16,1986,1,RES1,3001 -0119_69_8,-74.4553715,39.372833,32 OAKLAND AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_70_1,-74.56360339,39.35581693,16 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_70_11,-74.65340405,39.35451821,34 E EDGEWATER AVE,PLEASANTVILLE CITY,16,1929,1,RES1,3001 -0119_70_12,-74.6758065,39.356155,605 S EDGELEY AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_70_14,-74.55559568,39.37173417,13 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_70_17,-74.62449774,39.41681193,19 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1914,1,GOV1,3004 -0119_70_19,-74.6335934,39.42978304,23 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_70_20,-74.696928,39.408713,25 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1915,1,RES3A,3001 -0119_70_21,-74.5436495,39.456772,27 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1898,1,RES1,3001 -0119_70_23,-74.5515665,39.3645595,31 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_70_24,-74.559347,39.361707,33 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1920,1,RES3A,3001 -0119_70_26,-74.6111605,39.341793,37 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_70_5,-74.58589936,39.35879502,22 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_70_7,-74.613465,39.3669245,26 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_70_8,-74.637085,39.337909,28 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1895,1,COM1,3004 -0119_70_9,-74.6416685,39.340656,30 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_700_4.01,-74.94032868,39.52279896,23 S SECOND ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_700_7.01_B01,-74.697029,39.577005,S FRANKLIN BLV TO AC LINE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_71_10,-74.83146059,39.37874017,118 OAKLAND AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_71_102,-74.8046745,39.6291415,308 OAKLAND AVE,PLEASANTVILLE CITY,15,1953,1,RES1,3001 -0119_71_108,-74.926563,39.5329245,320 OAKLAND AVE,PLEASANTVILLE CITY,15,1953,1,RES1,3001 -0119_71_119,-74.81235784,39.64545554,342 OAKLAND AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_71_12,-74.798063,39.433168,122 OAKLAND AVE,PLEASANTVILLE CITY,16,1998,1,GOV1,3004 -0119_71_2,-74.5526705,39.470099,104 OAKLAND AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_71_26,-74.44757804,39.38388151,600 S EDGELEY AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_71_28,-74.63225329,39.39353357,109 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_71_30,-74.6222706,39.42303107,113 E EDGEWATER AVE,PLEASANTVILLE CITY,14,1926,1,RES1,3001 -0119_71_31,-74.63686416,39.43302502,115 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_71_32,-74.57189837,39.45087433,117 E EDGEWATER AVE,PLEASANTVILLE CITY,14,1920,1,RES1,3001 -0119_71_33,-74.58397477,39.44752007,119 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_71_35,-74.54967595,39.47601771,125 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1998,1,RES1,3001 -0119_71_38,-74.64616184,39.46063515,129 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_71_4,-74.6096445,39.50269,106 OAKLAND AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_71_41,-74.83329378,39.38963836,203 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,COM1,3004 -0119_71_42,-74.83616466,39.40218269,205 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_71_5,-74.64073946,39.46188997,108 OAKLAND AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_71_52,-74.73797794,39.46420648,225 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_71_62,-74.80625373,39.53561537,303 E EDGEWATER AVE,PLEASANTVILLE CITY,14,1922,1,RES1,3001 -0119_71_64,-74.79453266,39.59822984,307 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_71_67,-74.50731312,39.44401789,313 E EDGEWATER AVE,PLEASANTVILLE CITY,14,1923,1,RES1,3001 -0119_71_7,-74.681968,39.500797,112 OAKLAND AVE,PLEASANTVILLE CITY,16,1998,1,RES1,3001 -0119_71_83,-74.941971,39.5319995,345 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_71_85,-74.636404,39.5279885,214 OAKLAND AVE,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_71_86,-74.6481565,39.533542,216 OAKLAND AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_71_87,-74.69351581,39.50551485,218 OAKLAND AVE,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_71_88,-74.69899756,39.56660757,222 OAKLAND AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_71_90,-74.810974,39.5221875,224 OAKLAND AVE,PLEASANTVILLE CITY,15,1921,1,RES1,3001 -0119_71_92,-74.77761264,39.59362121,226 OAKLAND AVE,PLEASANTVILLE CITY,16,1985,1,RES1,3001 -0119_72_10,-74.36499005,39.41651984,120 E EDGEWATER AVE,PLEASANTVILLE CITY,16,1988,1,RES1,3001 -0119_72_102,-74.8370075,39.483667,308 E EDGEWATER AVE,PLEASANTVILLE CITY,13,1915,1,RES1,3001 -0119_72_103,-74.87847266,39.50015878,310 E EDGEWATER AVE,PLEASANTVILLE CITY,13,1915,1,RES1,3001 -0119_72_105,-74.63584481,39.52753468,312 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_72_110,-74.7747196,39.51494259,322 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_72_112,-74.86819151,39.56457459,328 E EDGEWATER AVE,PLEASANTVILLE CITY,14,1915,1,RES1,3001 -0119_72_113,-74.7754605,39.608706,330 E EDGEWATER AVE,PLEASANTVILLE CITY,14,1920,1,RES1,3001 -0119_72_118,-74.49635236,39.45409573,340 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_72_120,-74.45775401,39.48606413,344 E EDGEWATER AVE,PLEASANTVILLE CITY,,1955,1,RES1,3001 -0119_72_13,-74.45019314,39.37335196,124 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_72_16,-74.64213931,39.37420324,130 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_72_17,-74.64297304,39.39423633,200 E EDGEWATER AVE,PLEASANTVILLE CITY,16,1910,1,RES1,3001 -0119_72_18,-74.6351125,39.4033435,202 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_72_2,-74.5521205,39.37008,102 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_72_24,-74.59578026,39.36219315,101 E BAYVIEW AVE,PLEASANTVILLE CITY,16,1949,1,RES1,3004 -0119_72_27,-74.6276765,39.360507,107 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_72_3,-74.552274,39.3784955,104 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_72_31,-74.684149,39.3556025,111 E BAYVIEW AVE,PLEASANTVILLE CITY,16,1997,1,RES1,3001 -0119_72_32,-74.55081903,39.37173752,117 E BAYVIEW AVE,PLEASANTVILLE CITY,16,1995,1,GOV1,3004 -0119_72_33,-74.5564636,39.37550602,125 E BAYVIEW AVE,PLEASANTVILLE CITY,16,1996,1,GOV1,3004 -0119_72_39,-74.5320035,39.38635,127 E BAYVIEW AVE,PLEASANTVILLE CITY,16,1994,1,RES1,3001 -0119_72_40,-74.59750844,39.36939681,201 E BAYVIEW AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_72_42,-74.359048,39.4142755,205 E BAYVIEW AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_72_50,-74.70269308,39.36983464,223 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_72_55,-74.53380692,39.47296975,227 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_72_6,-74.53832306,39.39215565,108 E EDGEWATER AVE,PLEASANTVILLE CITY,16,1995,1,RES1,3001 -0119_72_60,-74.626604,39.503855,237 E BAYVIEW AVE,PLEASANTVILLE CITY,14,1915,1,RES1,3004 -0119_72_66,-74.7140023,39.44883695,311 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_72_72,-74.75314846,39.44663583,323 E BAYVIEW AVE,PLEASANTVILLE CITY,,1920,1,RES1,3001 -0119_72_73,-74.822287,39.465135,325 E BAYVIEW AVE,PLEASANTVILLE CITY,,1918,1,RES1,3001 -0119_72_74,-74.86153548,39.44913335,327 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_72_76,-74.8773327,39.48010546,331 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_72_79,-74.64235234,39.52684501,335 E BAYVIEW AVE,PLEASANTVILLE CITY,14,1910,1,RES1,3001 -0119_72_81,-74.60464041,39.59201141,341 E BAYVIEW AVE,PLEASANTVILLE CITY,16,2017,1,RES1,3001 -0119_72_86,-74.65287746,39.44850258,218 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_72_9,-74.58194975,39.40177586,116 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_72_91,-74.82899129,39.39739256,228 E EDGEWATER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_73_1,-74.49951081,39.41076741,420-424 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_73_16,-74.4627475,39.35986584,400 S MAIN ST,PLEASANTVILLE CITY,,1940,1,RES1,3001 -0119_73_17,-74.4132325,39.390182,7 E WRIGHT ST,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_73_18,-74.36172315,39.41146165,9 E WRIGHT ST,PLEASANTVILLE CITY,16,1945,1,RES1,3002 -0119_73_19,-74.44383066,39.37103837,401 PROSPECT AVE,PLEASANTVILLE CITY,16,1951,1,RES1,3001 -0119_73_2,-74.52600551,39.38651466,414 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_73_3,-74.37306,39.405027,410 S MAIN ST,PLEASANTVILLE CITY,,1987,1,RES1,3001 -0119_73_4,-74.50542503,39.42512273,6 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_73_5,-74.50579984,39.43010151,8 E BAYVIEW AVE,PLEASANTVILLE CITY,43,1905,2,RES1,3001 -0119_73_6,-74.48625133,39.46368614,10 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1906,1,COM1,3004 -0119_73_7,-74.51617603,39.41164331,413 PROSPECT AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_73_8,-74.523077,39.3964765,407 PROSPECT AVE,PLEASANTVILLE CITY,16,1952,1,RES1,3001 -0119_73_9,-74.48961943,39.43825699,4 E BAYVIEW AVE,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_74_1,-74.72724975,39.58639297,226 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_10,-74.8793465,39.591985,27 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_12,-74.63646898,39.52373608,39 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_13,-74.869174,39.6034515,43 E BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1943,1,RES1,3001 -0119_74_14,-74.8070995,39.628871,45 E BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_74_15,-74.749258,39.4467095,214 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_16,-74.91390443,39.48851504,49 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,1924,1,RES1,3001 -0119_74_17,-74.61084386,39.36969678,55 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,1973,1,RES1,3001 -0119_74_2,-74.51113217,39.44307057,222 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_20,-74.76528016,39.62455953,6 E DECATUR AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_74_21,-74.72619195,39.58874739,10 E DECATUR AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_74_22,-74.78700485,39.63758253,16 E DECATUR AVE,PLEASANTVILLE CITY,15,1913,1,RES1,3002 -0119_74_23,-74.60761037,39.51517696,22 E DECATUR AVE,PLEASANTVILLE CITY,15,1900,2,RES1,3001 -0119_74_24,-74.6487525,39.5324745,28 E DECATUR AVE,PLEASANTVILLE CITY,16,1969,1,RES1,3001 -0119_74_25,-74.805523,39.6329825,32 E DECATUR AVE,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_74_26,-74.597047,39.382918,40 E DECATUR AVE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_74_27,-74.56700615,39.41431865,44 E DECATUR AVE,PLEASANTVILLE CITY,16,1954,1,RES1,3001 -0119_74_28,-74.7607345,39.6085265,12 E DECATUR AVE,PLEASANTVILLE CITY,43,1920,2,RES1,3001 -0119_74_29,-74.944989,39.5175425,38 E DECATUR AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_3,-74.50497224,39.41123432,210 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_30,-74.8875475,39.5424225,50 E DECATUR AVE,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_74_33,-74.52500463,39.31392699,211 S FRANKLIN BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_34,-74.82549921,39.64817281,207 S FRANKLIN BLVD,PLEASANTVILLE CITY,16,1940,1,RES1,3001 -0119_74_36,-74.5164509,39.43506066,216 S MAIN ST,PLEASANTVILLE CITY,,1918,1,RES1,3001 -0119_74_37,-74.47805715,39.44276937,218 S MAIN ST,PLEASANTVILLE CITY,,1922,1,RES1,3001 -0119_74_39,-74.47297264,39.44457564,11-13 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_4,-74.50078518,39.41783183,200 S MAIN ST,PLEASANTVILLE CITY,,1925,1,RES1,3001 -0119_74_40,-74.50369948,39.44227713,15 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_43,-74.57331747,39.42948922,48 E DECATUR AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_74_48,-74.85317455,39.48783831,18 E DECATUR AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_74_6,-74.4920885,39.4313755,9 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_8,-74.5241545,39.448304,21 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_74_9,-74.76093474,39.61487349,23 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_10,-74.5294565,39.383677,75 E WEST JERSEY AVE,PLEASANTVILLE CITY,45,1915,2,RES1,3001 -0119_75_11,-74.52104457,39.3875223,81 E WEST JERSEY AVE,PLEASANTVILLE CITY,15,1980,1,RES1,3001 -0119_75_12,-74.5300085,39.3866835,87-89 E WEST JERSEY AVE,PLEASANTVILLE CITY,43,1915,2,RES1,3001 -0119_75_13,-74.52846719,39.39915408,103 S FRANKLIN BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_16,-74.4983635,39.424082,105 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES3A,3001 -0119_75_17,-74.498819,39.429829,107 S FRANKLIN BLVD,PLEASANTVILLE CITY,,1904,1,RES1,3001 -0119_75_18,-74.52345816,39.40492833,54 LENOX AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_75_19,-74.5143315,39.4088615,52 LENOX AVE,PLEASANTVILLE CITY,15,1907,1,RES1,3001 -0119_75_20,-74.50459331,39.41437689,46 LENOX AVE,PLEASANTVILLE CITY,14,1928,1,RES1,3001 -0119_75_21,-74.5007985,39.415653,44 LENOX AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_75_25,-74.50318971,39.41727303,30 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_26,-74.516798,39.4091205,32 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,1910,1,RES1,3001 -0119_75_27,-74.5139435,39.4154145,36 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,1910,1,RES1,3001 -0119_75_3,-74.39052284,39.38807052,106 S MAIN ST,PLEASANTVILLE CITY,,1920,1,RES1,3001 -0119_75_31,-74.4944755,39.448671,119 S FRANKLIN BLVD,PLEASANTVILLE CITY,,1925,1,RES1,3001 -0119_75_32,-74.358517,39.4153385,118-24 S MAIN ST,PLEASANTVILLE CITY,,1928,1,RES1,3001 -0119_75_33,-74.4523175,39.370818,10 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_35,-74.381806,39.398265,9 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_36,-74.35987873,39.41098219,26 GREEN ST,PLEASANTVILLE CITY,14,1925,1,RES1,3001 -0119_75_37,-74.37166933,39.40532365,29 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_38,-74.36219631,39.41179868,43 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_4,-74.66965,39.390439,100 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_40,-74.452028,39.3713195,73 E WEST JERSEY AVE,PLEASANTVILLE CITY,,1928,1,RES1,3001 -0119_75_41,-74.37785229,39.41905406,2 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,1970,1,RES1,3001 -0119_75_43,-74.3670515,39.4217235,19 GREEN ST,PLEASANTVILLE CITY,27,1910,2,RES1,3001 -0119_75_44,-74.40084866,39.38767647,25 E WEST JERSEY AVE,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_75_45,-74.38021178,39.41891107,15 GREEN ST,PLEASANTVILLE CITY,27,1900,2,RES1,3001 -0119_75_46,-74.37907884,39.41344997,17 GREEN ST,PLEASANTVILLE CITY,27,1910,2,RES1,3001 -0119_75_47,-74.36022253,39.41569684,31 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_48,-74.37616376,39.41941121,21 GREEN ST,PLEASANTVILLE CITY,27,1900,2,RES1,3001 -0119_75_5,-74.400955,39.391799,23 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_50,-74.43466892,39.36919859,17 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_75_6,-74.35728892,39.41383423,35-37 E WEST JERSEY AVE,PLEASANTVILLE CITY,45,1915,4,RES1,3001 -0119_75_9,-74.37002243,39.4151163,53 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_76_1,-74.9510495,39.5146285,101 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_76_11,-74.69564135,39.58806504,210 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_76_12,-74.490282,39.430921,211 S CHESTER AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_76_14,-74.4941879,39.45310744,213 S CHESTER AVE,PLEASANTVILLE CITY,16,1960,1,RES1,3001 -0119_76_15,-74.48362294,39.44115532,214 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_76_16,-74.5033655,39.4693795,215 S CHESTER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_76_18,-74.52281366,39.46700348,217 S CHESTER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_76_2,-74.93426826,39.52199401,105 E BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_76_21,-74.52009366,39.44610899,220 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_76_22,-74.48498168,39.34857943,219 S CHESTER AVE,PLEASANTVILLE CITY,15,1923,1,RES1,3001 -0119_76_24,-74.48993591,39.33513818,223 S CHESTER AVE,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_76_4,-74.94393939,39.52555982,113 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_76_7,-74.649139,39.531086,206 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_76_8,-74.60171495,39.59230535,205 S CHESTER AVE,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_77_1,-74.64178195,39.53516066,100 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,GOV1,3004 -0119_77_10,-74.86831896,39.49288785,115 S CHESTER AVE,PLEASANTVILLE CITY,45,1910,2,RES1,3001 -0119_77_11,-74.51422934,39.44664297,112 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_77_12,-74.77830839,39.62514168,113 S CHESTER AVE,PLEASANTVILLE CITY,28,1900,2,RES1,3001 -0119_77_13,-74.50675353,39.43780848,110 S FRANKLIN BLVD,PLEASANTVILLE CITY,45,1910,2,GOV1,3004 -0119_77_14,-74.61908045,39.60171606,111 S CHESTER AVE,PLEASANTVILLE CITY,28,1900,2,RES1,3001 -0119_77_16,-74.515765,39.439038,109 S CHESTER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_77_17,-74.49954516,39.42235379,106 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_77_18,-74.4644365,39.467587,107 S CHESTER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_77_19,-74.52260152,39.40683882,104 S FRANKLIN BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_77_20,-74.4903745,39.4361435,105 S CHESTER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_77_21,-74.50080605,39.41640132,101 E WEST JERSEY AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_77_22,-74.5197425,39.4064425,103 S CHESTER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_77_23,-74.5106015,39.4345715,108 S FRANKLIN BLVD,PLEASANTVILLE CITY,43,1923,2,RES1,3001 -0119_77_3,-74.8572565,39.6118745,108 E BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_77_4,-74.92265979,39.51430702,110 E BLACK HORSE PIKE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_77_6,-74.88111835,39.60259821,119-121 S CHESTER AVE,PLEASANTVILLE CITY,45,1910,2,RES1,3001 -0119_77_7,-74.841867,39.599207,116-18 S FRANKLIN BLVD,PLEASANTVILLE CITY,,1920,1,RES1,3001 -0119_77_8,-74.53932607,39.55908934,117 S CHESTER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_77_9,-74.75684701,39.60017783,114 S FRANKLIN BLVD,PLEASANTVILLE CITY,45,1926,2,RES1,3001 -0119_78_1,-74.94100366,39.5215498,201 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_78_10,-74.52198899,39.46862872,207 S HAMPDEN CT,PLEASANTVILLE CITY,45,1923,2,RES1,3001 -0119_78_11,-74.5227248,39.4583581,210 S CHESTER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_78_16,-74.44785021,39.35251545,215 S HAMPDEN CT,PLEASANTVILLE CITY,16,1924,1,RES1,3001 -0119_78_17,-74.46454303,39.35767018,214 S CHESTER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_78_18,-74.369341,39.4020935,217 S HAMPDEN CT,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_78_19,-74.49071334,39.3345105,218 S CHESTER AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_78_22,-74.36833117,39.4091625,221 S HAMPDEN CT,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_78_23,-74.40283336,39.39361378,222 S CHESTER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_78_24,-74.37696249,39.41426866,223 S HAMPDEN CT,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_78_25,-74.3716465,39.4048285,224 S CHESTER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_78_26,-74.49956845,39.38212204,225 S HAMPDEN CT,PLEASANTVILLE CITY,15,1912,1,RES1,3001 -0119_78_4,-74.94712925,39.52431246,213 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,1927,1,RES1,3001 -0119_78_5,-74.8257492,39.53543546,204 S CHESTER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_78_6,-74.50224115,39.44359298,205 S HAMPDEN CT,PLEASANTVILLE CITY,45,1923,2,RES1,3001 -0119_78_7,-74.48325757,39.44386287,206 S CHESTER AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_79_1,-74.537226,39.4048405,200 E BLACK HORSE PIKE,PLEASANTVILLE CITY,16,1910,1,GOV1,3004 -0119_79_11,-74.63961816,39.53433019,114 S CHESTER AVE,PLEASANTVILLE CITY,15,1907,1,RES1,3001 -0119_79_12,-74.8101025,39.634944,115 S HAMPDEN CT,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_79_13,-74.5914765,39.507234,112 S CHESTER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_79_14,-74.8736645,39.59085464,111 S HAMPDEN CT,PLEASANTVILLE CITY,15,1915,1,GOV1,3004 -0119_79_15,-74.77636283,39.63779141,110 S CHESTER AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_79_17,-74.74561525,39.59228175,108 S CHESTER AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_79_18,-74.84067558,39.47506272,109 S HAMPDEN CT,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_79_19,-74.5221045,39.43937,106 S CHESTER AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_79_2,-74.55951103,39.42376737,206 E BLACK HORSE PIKE,PLEASANTVILLE CITY,45,1910,2,RES1,3001 -0119_79_20,-74.77263674,39.62964485,107 S HAMPDEN CT,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_79_21,-74.500599,39.428008,102 S CHESTER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_79_22,-74.859364,39.555229,103 S HAMPDEN CT,PLEASANTVILLE CITY,45,1915,2,RES1,3001 -0119_79_24,-74.4918065,39.448612,101 S HAMPDEN CT,PLEASANTVILLE CITY,45,1900,2,RES1,3001 -0119_79_3,-74.95366967,39.51841625,210 E BLACK HORSE PIKE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_79_4,-74.706071,39.6472155,212 E BLACK HORSE PIKE,PLEASANTVILLE CITY,45,1900,2,RES1,3001 -0119_79_7,-74.91963723,39.48903964,118 S CHESTER AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_79_8,-74.61681081,39.37178547,119-21 S HAMPDEN CT,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_79_9,-74.80676532,39.63070367,116 S CHESTER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_80_13,-74.46184695,39.35582133,18 DEVINS LANE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_80_15,-74.46178206,39.35873668,16 DEVINS LANE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_80_21,-74.54827714,39.38180358,20 DEVINS LANE,PLEASANTVILLE CITY,16,1950,1,RES1,3001 -0119_80_3,-74.46679567,39.34682899,923 W WASHINGTON AVE,PLEASANTVILLE CITY,,1965,1,RES1,3001 -0119_80_4,-74.48061118,39.34710833,907 W WASHINGTON AVE,PLEASANTVILLE CITY,43,1900,2,RES1,3001 -0119_80_5,-74.4835865,39.345296,803 DOUGHTY RD,PLEASANTVILLE CITY,,1984,1,RES1,3001 -0119_81_14,-74.36875117,39.40191246,806 DOUGHTY RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_81_17,-74.46728373,39.35672663,501 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_81_9,-74.49643605,39.33489266,816 DOUGHTY RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_82_2,-74.52865886,39.30948875,6 S NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_82_3,-74.52638973,39.31083921,423 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_83_10,-74.87353227,39.59616584,5 S THIRD ST,PLEASANTVILLE CITY,27,1910,2,RES1,3001 -0119_83_11,-74.50357383,39.32508152,321 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_83_12,-74.50328801,39.32504745,319 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_83_13,-74.698813,39.572543,313 W WASHINGTON AVE,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_83_14,-74.66443732,39.63304169,311 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_83_15,-74.79249319,39.53357404,305 W WASHINGTON AVE,PLEASANTVILLE CITY,16,2000,1,RES1,3001 -0119_83_16,-74.86850333,39.53887499,301 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_83_17,-74.491012,39.332355,27 S THIRD ST,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_83_2,-74.49087888,39.33293783,22 S FOURTH ST,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_83_20,-74.49489778,39.33293996,314 W WEST JERSEY AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_83_21,-74.48852,39.332699,28 S FOURTH ST,PLEASANTVILLE CITY,15,1880,1,RES1,3001 -0119_83_23,-74.867843,39.6026345,7 S THIRD ST,PLEASANTVILLE CITY,27,1910,2,RES1,3001 -0119_83_24,-74.5075075,39.323495,6 S FOURTH ST,PLEASANTVILLE CITY,27,1928,2,RES1,3001 -0119_83_25,-74.507856,39.3233025,8 S FOURTH ST,PLEASANTVILLE CITY,27,1928,2,RES1,3001 -0119_83_26,-74.50621466,39.32505801,4 S FOURTH ST,PLEASANTVILLE CITY,16,1948,1,RES1,3001 -0119_83_3,-74.48998483,39.33303381,18 S FOURTH ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_83_4,-74.49471408,39.33344866,14 S FOURTH ST,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_83_5,-74.49383933,39.33352449,10 S FOURTH ST,PLEASANTVILLE CITY,15,1927,1,COM1,3004 -0119_83_7,-74.800312,39.632721,17 S THIRD ST,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_83_9,-74.8058608,39.63081231,9 S THIRD ST,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_84_1,-74.77777745,39.62677371,225 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_84_13,-74.79738,39.6375735,211 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3004 -0119_84_15,-74.78643684,39.64893798,21 S SECOND ST,PLEASANTVILLE CITY,15,1888,1,RES1,3001 -0119_84_18,-74.90672006,39.49639139,7-9 S SECOND ST,PLEASANTVILLE CITY,43,1924,3,COM1,3004 -0119_84_19,-74.856126,39.619871,3 S SECOND ST,PLEASANTVILLE CITY,45,1900,2,COM1,3004 -0119_84_20,-74.81206181,39.63499888,201 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_84_21,-74.94319367,39.51737326,11 S SECOND ST,PLEASANTVILLE CITY,16,2010,1,GOV1,3004 -0119_84_23,-74.88620976,39.59844846,15 S SECOND ST,PLEASANTVILLE CITY,45,1915,2,RES1,3001 -0119_85_10,-74.68583759,39.65354736,33 W WASHINGTON AVE,PLEASANTVILLE CITY,,2017,1,RES1,3001 -0119_85_14,-74.91809152,39.52442682,117 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,COM1,3004 -0119_85_28,-74.7900005,39.659074,20 W MILAN AVE,PLEASANTVILLE CITY,,2015,1,GOV1,3004 -0119_85_5,-74.80798098,39.65026067,1-49 S MAIN ST,PLEASANTVILLE CITY,,2015,1,RES1,3001 -0119_86_12,-74.734345,39.453006,53 E WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_86_13,-74.52003032,39.45573144,55 E WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_86_15,-74.475259,39.4828235,67 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_86_18,-74.6217855,39.3806295,79 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_86_19,-74.6308235,39.3918225,83 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_86_2,-74.50125198,39.33132933,24 S MAIN ST,PLEASANTVILLE CITY,,0,1,REL1,3004 -0119_86_22.01,-74.46883465,39.34177877,45 E WASHINGTON AVE,PLEASANTVILLE CITY,,1950,1,RES3A,3001 -0119_86_27,-74.527076,39.4583455,48 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_86_29,-74.51269233,39.32932402,36 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_86_31,-74.51100613,39.32193264,26 S MAIN ST,PLEASANTVILLE CITY,,1928,1,RES1,3001 -0119_86_35,-74.3611785,39.417433,5 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1940,1,RES1,3001 -0119_86_36,-74.68066604,39.38840432,89 E WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_86_47,-74.49506805,39.32936518,18 S MAIN ST,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_87_1,-74.40229976,39.38558767,12 S FRANKLIN BLVD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_87_10,-74.40742993,39.37739377,119 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_87_2,-74.38549,39.392241,4 S FRANKLIN BLVD,PLEASANTVILLE CITY,15,1930,1,RES1,3001 -0119_87_3,-74.44441927,39.37425718,15 S CHESTER AVE,PLEASANTVILLE CITY,43,1922,2,RES1,3001 -0119_87_4,-74.38083182,39.41829362,11 S CHESTER AVE,PLEASANTVILLE CITY,16,2008,1,RES1,3001 -0119_87_5,-74.3582705,39.413156,9 S CHESTER AVE,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_87_7,-74.6461005,39.3718885,2 S FRANKLIN BLVD,PLEASANTVILLE CITY,,1925,1,RES1,3001 -0119_87_8,-74.63542,39.409394,111 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_87_9,-74.39271643,39.38779197,115 E WASHINGTON AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_88_1,-74.35612416,39.41389002,2 S CHESTER AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_88_11,-74.52389235,39.39851267,11 S HAMPDEN CT,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_88_2,-74.37756506,39.41332146,8 S CHESTER AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_88_5,-74.51976365,39.38769517,14 S CHESTER AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_88_6,-74.368815,39.4112895,1 S HAMPDEN CT,PLEASANTVILLE CITY,15,1906,1,RES1,3001 -0119_88_8,-74.3763495,39.419379,9 S HAMPDEN CT,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_89_1,-74.52579066,39.38420912,2 S HAMPDEN CT,PLEASANTVILLE CITY,15,1924,1,RES1,3001 -0119_89_2,-74.513262,39.400024,6 S HAMPDEN CT,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_89_3,-74.52705383,39.3947495,8 S HAMPDEN CT,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_89_4,-74.5015405,39.419198,12 S HAMPDEN CT,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_89_7,-74.51930011,39.38685932,4 S HAMPDEN CT,PLEASANTVILLE CITY,45,1929,2,RES1,3001 -0119_9_13,-74.49992181,39.43146963,904 TILTON RD,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_9_14,-74.79315838,39.63995589,915 W ASHLAND AVE,PLEASANTVILLE CITY,16,1984,1,RES1,3001 -0119_9_17,-74.5234042,39.31588542,909 W ASHLAND AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_9_2,-74.78479518,39.65100064,1410 GARFIELD AVE,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_9_21,-74.50987951,39.44718367,1415 MCCLELLAN AVE,PLEASANTVILLE CITY,16,2001,1,RES1,3001 -0119_9_5,-74.847148,39.53525624,919 W ASHLAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_9_7,-74.7804905,39.455819,917 W ASHLAND AVE,PLEASANTVILLE CITY,16,2006,1,RES1,3001 -0119_90_1,-74.61530078,39.31982208,1000 W WASHINGTON AVE,PLEASANTVILLE CITY,,1985,1,RES1,3001 -0119_90_41,-74.4648765,39.3471405,916 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_90_42.01,-74.36852273,39.41216908,1101 DOUGHTY RD,PLEASANTVILLE CITY,,2000,1,RES1,3001 -0119_90_44,-74.5229085,39.388664,908-12 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1944,1,RES1,3001 -0119_92_8,-74.63292604,39.31892512,35 CAMBRIA AVE,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_92_9,-74.52953355,39.38880482,1000-1120 DOUGHTY RD,PLEASANTVILLE CITY,,1990,1,COM1,3004 -0119_93_10,-74.48307717,39.34037498,9 SOMERSET AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_93_11,-74.45982631,39.3500246,916 DOUGHTY RD,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_93_17,-74.523824,39.317504,18-40 CAMBRIA AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_93_24,-74.52029546,39.32157182,21 SOMERSET AVE,PLEASANTVILLE CITY,15,1904,1,RES3A,3001 -0119_93_28,-74.56856223,39.35103565,27 SOMERSET AVE,PLEASANTVILLE CITY,15,1910,1,RES3A,3001 -0119_93_30,-74.604984,39.321444,29 SOMERSET AVE,PLEASANTVILLE CITY,16,1990,1,RES3A,3001 -0119_93_41,-74.63307723,39.35263984,42 CAMBRIA AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_93_42,-74.64328954,39.43537635,41 SOMERSET AVE,PLEASANTVILLE CITY,16,1962,1,RES1,3001 -0119_93_50,-74.631965,39.420063,47 SOMERSET AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_93_53,-74.60544262,39.41100474,54 CAMBRIA AVE,PLEASANTVILLE CITY,15,1920,1,GOV1,3004 -0119_93_54,-74.48433517,39.33505699,900 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_93_6,-74.47921385,39.33995613,3 SOMERSET AVE (R),PLEASANTVILLE CITY,15,1961,1,RES3B,3001 -0119_93_8,-74.485945,39.3370855,5 SOMERSET AVE,PLEASANTVILLE CITY,15,1909,1,RES1,3001 -0119_94_11,-74.48159559,39.33896867,10 SOMERSET AVE,PLEASANTVILLE CITY,16,1975,1,RES1,3001 -0119_94_18,-74.51589646,39.33046134,26 SOMERSET AVE,PLEASANTVILLE CITY,16,1964,1,RES1,3001 -0119_94_21,-74.56174917,39.35948647,30 SOMERSET AVE,PLEASANTVILLE CITY,16,1977,1,RES3A,3001 -0119_94_22,-74.60067332,39.31914198,34 SOMERSET AVE,PLEASANTVILLE CITY,,1991,1,RES1,3001 -0119_94_33,-74.48650009,39.33747367,17 LEHIGH AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_94_8,-74.47125955,39.34548437,4 SOMERSET AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_95_11,-74.4835915,39.335096,22 LEHIGH AVE,PLEASANTVILLE CITY,15,1920,1,RES1,3004 -0119_95_12,-74.55298917,39.36245487,23 CLINTON AVE,PLEASANTVILLE CITY,,2011,1,GOV1,3004 -0119_95_21,-74.485481,39.345459,15 CLINTON AVE,PLEASANTVILLE CITY,15,1929,1,RES1,3001 -0119_95_22,-74.481841,39.350929,17 CLINTON AVE,PLEASANTVILLE CITY,15,1928,1,RES1,3001 -0119_95_3,-74.47649493,39.34293333,712 W WASHINGTON AVE,PLEASANTVILLE CITY,43,1910,2,RES1,3001 -0119_95_8,-74.47793167,39.34642849,10 LEHIGH AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_97_1,-74.5111709,39.33681467,516-520 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES3A,3001 -0119_97_14,-74.39391286,39.39260364,504 W WASHINGTON AVE,PLEASANTVILLE CITY,16,2004,1,RES1,3001 -0119_97_15,-74.43770058,39.35857493,1 N NEW RD,PLEASANTVILLE CITY,15,1905,1,IND2,3002 -0119_97_16,-74.50360574,39.33950905,527 BRAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3001 -0119_97_18,-74.50013475,39.33671618,517 BRAD ST,PLEASANTVILLE CITY,15,1925,1,RES1,3004 -0119_97_19,-74.49928025,39.33556044,515 BRAD ST,PLEASANTVILLE CITY,15,1920,1,COM1,3004 -0119_97_20,-74.35453267,39.415098,513 BRAD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_97_23,-74.38820592,39.39017885,11 N NEW RD,PLEASANTVILLE CITY,45,1890,2,RES1,3004 -0119_97_24,-74.3742665,39.400149,17 N NEW RD,PLEASANTVILLE CITY,45,1885,2,RES1,3001 -0119_97_25,-74.493361,39.3398605,526 BRAD ST,PLEASANTVILLE CITY,15,1947,1,RES1,3001 -0119_97_26,-74.49353809,39.33956167,524 BRAD ST,PLEASANTVILLE CITY,15,1926,1,RES1,3001 -0119_97_27,-74.48990688,39.33824962,520 BRAD ST,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_97_29,-74.48972115,39.33654793,512 BRAD ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_97_30,-74.49740358,39.33433285,508 BRAD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_97_31,-74.508059,39.3404545,504 BRAD ST,PLEASANTVILLE CITY,15,1925,1,GOV1,3004 -0119_97_32,-74.48198224,39.35245708,527 MARTIN LUTHER KING AV,PLEASANTVILLE CITY,15,1910,1,RES3A,3001 -0119_97_36,-74.4913895,39.340002,511 MARTIN LUTHER KING AV,PLEASANTVILLE CITY,15,1922,1,RES1,3001 -0119_97_39,-74.4999585,39.3365245,21 N NEW RD,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_97_41,-74.49404151,39.33660834,29 N NEW RD,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_97_42,-74.49107009,39.33876244,33 N NEW RD,PLEASANTVILLE CITY,15,1910,1,RES1,3004 -0119_97_44,-74.374658,39.400583,514 W WASHINGTON AVE,PLEASANTVILLE CITY,,1960,1,RES1,3001 -0119_97_45,-74.3938615,39.388016,5 N NEW RD,PLEASANTVILLE CITY,15,1927,1,RES1,3001 -0119_97_46,-74.390579,39.3901165,9 N NEW RD,PLEASANTVILLE CITY,15,1915,1,RES1,3002 -0119_97_8,-74.46290891,39.35186083,535 MARTIN LUTHER KING AV,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_98_1,-74.5225655,39.313789,1 N FOURTH ST,PLEASANTVILLE CITY,16,1953,1,RES1,3001 -0119_98_10,-74.37544225,39.40141117,20 N NEW RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_98_11,-74.510517,39.33449878,24 N NEW RD,PLEASANTVILLE CITY,45,1920,2,RES1,3001 -0119_98_12,-74.5017485,39.3375805,30 N NEW RD,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_98_13,-74.37993169,39.40189739,7 N FOURTH ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_98_14,-74.39334208,39.38770212,9 N FOURTH ST,PLEASANTVILLE CITY,15,1895,1,RES1,3001 -0119_98_15,-74.3950435,39.3895265,11 N FOURTH ST,PLEASANTVILLE CITY,15,1910,1,GOV1,3004 -0119_98_16,-74.38356475,39.39227718,15 N FOURTH ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_98_17,-74.75834823,39.43203778,21 N FOURTH ST,PLEASANTVILLE CITY,15,1920,1,RES1,3001 -0119_98_18,-74.6718309,39.4621275,23 N FOURTH ST,PLEASANTVILLE CITY,15,1950,1,RES1,3001 -0119_98_19,-74.534668,39.4708765,25 N FOURTH ST,PLEASANTVILLE CITY,16,1957,1,RES1,3001 -0119_98_2,-74.48702131,39.33428106,406 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_98_20,-74.42739,39.3678835,5 N FOURTH ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_98_24,-74.525864,39.3155675,3 N FOURTH ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_98_25,-74.3752035,39.3992135,16 N NEW RD,PLEASANTVILLE CITY,15,1905,1,RES1,3001 -0119_98_3,-74.44231319,39.36721045,410 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_98_4,-74.423383,39.366616,414 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_98_6,-74.43642594,39.35845189,420 W WASHINGTON AVE,PLEASANTVILLE CITY,,1992,1,RES1,3001 -0119_98_7,-74.39244394,39.38803135,8 N NEW RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_98_8,-74.3904475,39.39127983,12 N NEW RD,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_98_9,-74.38703616,39.39149351,14 N NEW RD,PLEASANTVILLE CITY,14,1930,1,RES3A,3001 -0119_99_1,-74.63380342,39.55299079,300 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_99_10,-74.7559134,39.44808676,18 N FOURTH ST,PLEASANTVILLE CITY,15,1910,1,RES3A,3001 -0119_99_11,-74.7369135,39.44903,22 N FOURTH ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_99_12,-74.84138451,39.40814317,26 N FOURTH ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_99_13,-74.724811,39.432991,30 N FOURTH ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_99_14,-74.49212933,39.34055901,7 N THIRD ST,PLEASANTVILLE CITY,15,1910,1,RES1,3001 -0119_99_15,-74.48884335,39.46109743,11 N THIRD ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_99_16,-74.463457,39.464932,15 N THIRD ST,PLEASANTVILLE CITY,15,1910,1,RES3A,3001 -0119_99_17,-74.88163317,39.49708501,19 N THIRD ST,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_99_18,-74.870384,39.4537545,21 N THIRD ST,PLEASANTVILLE CITY,16,1998,1,RES3A,3001 -0119_99_19,-74.74639831,39.44655083,25 N THIRD ST,PLEASANTVILLE CITY,16,1999,1,RES1,3001 -0119_99_2_C0002,-74.5739415,39.5214525,306 W WASHINGTON AVE (R),PLEASANTVILLE CITY,14,1935,1,COM10,3003 -0119_99_20.01,-74.7192995,39.44945183,311 MARTIN LUTHER KING AV,PLEASANTVILLE CITY,16,1999,1,RES3A,3001 -0119_99_21,-74.63672166,39.52773753,5 N THIRD ST,PLEASANTVILLE CITY,16,1920,1,RES1,3001 -0119_99_3,-74.49954724,39.33608517,310 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1900,1,RES1,3001 -0119_99_4,-74.49806834,39.33504248,314 W WASHINGTON AVE,PLEASANTVILLE CITY,15,1890,1,RES1,3001 -0119_99_5,-74.461553,39.3569645,316-322 W WASHINGTON AVE,PLEASANTVILLE CITY,,0,1,RES1,3001 -0119_99_7,-74.5163515,39.4385435,6 N FOURTH ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_99_8,-74.6048475,39.3910665,10 N FOURTH ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0119_99_9,-74.80708454,39.5006642,16 N FOURTH ST,PLEASANTVILLE CITY,15,1915,1,RES1,3001 -0120_1_11,-74.45934673,39.35120614,380 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1970,1,GOV1,3004 -0120_1_12,-74.4229125,39.3721645,265 SOOYS LANDING RD,PORT REPUBLIC CITY,16,1910,1,RES1,3001 -0120_1_15,-74.78886,39.6677755,280 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_1_16,-74.48895691,39.33561585,250 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_1_7.02,-74.51520718,39.46140005,317 SOOYS LANDING RD,PORT REPUBLIC CITY,16,1934,1,COM1,3002 -0120_11_1.01,-74.4550835,39.37476317,616 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1982,1,RES1,3001 -0120_11_1.02,-74.49762884,39.33170174,648 CHESTNUT NECK RD,PORT REPUBLIC CITY,14,1900,1,RES1,3001 -0120_11_1.03,-74.49904818,39.33753749,650 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_11_1.04,-74.43567547,39.36781982,45 NEW YORK RD,PORT REPUBLIC CITY,,0,1,RES1,3002 -0120_11_10.01,-74.41743984,39.36912667,456 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1850,1,RES1,3001 -0120_11_10.02,-74.47152651,39.48806436,444 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_11_10.03,-74.51100169,39.40359789,462 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_11_12.01,-74.36719224,39.42312914,1 NEW YORK RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_11_12.02,-74.80912454,39.66173868,7 NEW YORK RD,PORT REPUBLIC CITY,,1950,1,RES1,3001 -0120_11_13,-74.49906676,39.43263104,424 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1995,1,RES1,3001 -0120_11_14.01,-74.38932502,39.39305538,326 OLD NEW YORK RD,PORT REPUBLIC CITY,16,1970,1,RES1,3001 -0120_11_14.02,-74.3986055,39.389437,330 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_11_15,-74.5247625,39.459945,298 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_11_17,-74.45136,39.355869,292 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1900,1,RES3A,3001 -0120_11_18,-74.43856,39.3654845,286 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1977,1,RES1,3001 -0120_11_19,-74.4979845,39.4278415,280 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1977,1,RES3A,3001 -0120_11_20,-74.4899945,39.49804551,274 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1981,1,RES1,3001 -0120_11_24,-74.774096,39.6663055,216 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1850,1,RES1,3001 -0120_11_26,-74.52912092,39.39340749,202 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1875,1,RES3A,3001 -0120_11_27,-74.49180615,39.42276532,7 BATES LANE,PORT REPUBLIC CITY,16,1787,1,RES1,3001 -0120_11_3,-74.81713177,39.65339105,29 NEW YORK RD,PORT REPUBLIC CITY,16,1952,1,RES1,3001 -0120_11_31,-74.36425,39.4156505,158 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_11_33,-74.443966,39.3552175,150 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1920,1,COM1,3004 -0120_11_34.02,-74.53066712,39.47129228,138 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1930,1,RES1,3001 -0120_11_34.03,-74.88391365,39.59798845,144 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_11_36,-74.4864882,39.33321363,SHELL LANDING RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_11_38,-74.49002213,39.43740472,128 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1945,1,RES1,3001 -0120_11_39,-74.41964314,39.36657952,118 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1955,1,RES1,3001 -0120_11_4,-74.5190208,39.32025912,39 NEW YORK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3004 -0120_11_40,-74.483604,39.3405055,15 SHELL LANDING RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_11_41,-74.37234283,39.3992775,114 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_11_43,-74.50079449,39.40926052,38 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_11_44,-74.44699769,39.3718596,34 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1925,1,RES1,3001 -0120_11_45,-74.50735432,39.46598282,28 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1853,1,RES1,3002 -0120_11_46,-74.483062,39.444181,26 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1865,1,RES1,3001 -0120_11_47,-74.49364156,39.33180182,22 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1875,1,RES1,3001 -0120_11_51,-74.443767,39.3693455,23 ST JOHNS LANE,PORT REPUBLIC CITY,17,2007,1,RES1,3001 -0120_11_53,-74.808752,39.6398555,44 ST JOHNS LANE,PORT REPUBLIC CITY,17,1750,1,RES1,3001 -0120_11_54,-74.92251459,39.51063297,6 ST JOHNS LANE,PORT REPUBLIC CITY,17,1972,1,RES3A,3002 -0120_11_55,-74.50094,39.3307285,4 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1792,1,RES1,3001 -0120_11_56,-74.51441076,39.40369833,14 ST JOHNS LANE,PORT REPUBLIC CITY,17,1963,1,RES1,3001 -0120_11_57,-74.4693075,39.3459845,20 ST JOHNS LANE,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_11_58,-74.949264,39.5177105,30 ST JOHNS LANE,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_11_62,-74.5227535,39.390169,540 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2017,1,RES1,3001 -0120_11_7,-74.93939502,39.51886118,486 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_11_8,-74.48646991,39.46527041,470 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_11_9,-74.467569,39.357507,476 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1996,1,RES1,3001 -0120_12_1,-74.44170624,39.36783885,246 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_13_1,-74.49635156,39.52190955,224 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_13_2,-74.79077517,39.64304999,178 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_13_3,-74.46400589,39.34552937,166 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1947,1,RES1,3001 -0120_14_1,-74.40220993,39.39118727,378 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_14_13.01,-74.452822,39.4964765,300 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2000,1,RES1,3001 -0120_14_13.02,-74.91374102,39.50915182,290 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2000,1,RES1,3004 -0120_14_13.03,-74.9359405,39.497334,280 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2000,1,RES1,3001 -0120_14_13.04,-74.93456873,39.48151253,270 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_14_16,-74.48732942,39.33470083,250 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1920,1,RES1,3002 -0120_14_17.03,-74.405541,39.378207,52 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,1992,1,RES1,3001 -0120_14_17.04,-74.523727,39.4293195,46 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,1994,1,RES1,3001 -0120_14_17.05,-74.48422983,39.43164353,40 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,2003,1,RES1,3001 -0120_14_17.06,-74.926379,39.5126045,34 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,2005,1,RES1,3001 -0120_14_17.07,-74.462913,39.3495645,28 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,1995,1,RES1,3001 -0120_14_17.08,-74.41466186,39.50415844,22 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,2000,1,RES1,3001 -0120_14_17.09,-74.94031995,39.52718626,16 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,2000,1,RES1,3001 -0120_14_17.10,-74.36227876,39.41132274,10 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,2000,1,RES1,3001 -0120_14_17.11,-74.812388,39.6621725,4 MAPLE BRANCH CT,PORT REPUBLIC CITY,17,2000,1,COM1,3004 -0120_14_18.01,-74.512746,39.463351,239 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1978,1,RES1,3001 -0120_14_18.02,-74.50440025,39.43213907,233 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_14_18.03,-74.943884,39.517955,227 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_14_18.04,-74.51917588,39.32200195,219 OLD NEW YORK RD,PORT REPUBLIC CITY,17,2000,1,RES3A,3001 -0120_14_18.05,-74.45808302,39.34836635,42 ADAMS AVE,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_14_18.06,-74.46933409,39.34508117,32 ADAMS AVE (R),PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_14_2.01,-74.96761394,39.5132703,358 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1971,1,RES1,3001 -0120_14_2.02,-74.46502298,39.34682051,354 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_14_20.01,-74.4963895,39.4945515,204 SANFORD LANE,PORT REPUBLIC CITY,17,1968,1,RES1,3001 -0120_14_20.02,-74.833639,39.64359,158 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_14_20.03,-74.52070168,39.31494947,152 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_14_24,-74.51724987,39.39385956,122 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1983,1,RES1,3001 -0120_14_25,-74.4935505,39.34205,86 ADAMS AVE,PORT REPUBLIC CITY,17,1990,1,RES3A,3001 -0120_14_26,-74.528593,39.397684,ADAMS AVE,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_14_28,-74.5158505,39.32531867,201 COUNTRY LANE,PORT REPUBLIC CITY,17,2002,1,RES1,3001 -0120_14_29,-74.52552533,39.45819941,48 ADAMS AVE,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_14_3,-74.88290223,39.53645714,327 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_14_30,-74.4656115,39.343199,28 ADAMS AVE,PORT REPUBLIC CITY,17,1978,1,RES1,3001 -0120_14_31.01,-74.525708,39.38253983,18 ADAMS AVE,PORT REPUBLIC CITY,17,2001,1,RES1,3001 -0120_14_31.02,-74.45467334,39.47758243,201 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1997,1,RES1,3001 -0120_14_32,-74.48423974,39.34034911,215 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_14_4,-74.47144422,39.44568901,350 CHESTNUT NECK RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_14_5,-74.51614495,39.31876614,340 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1991,1,RES1,3001 -0120_14_6,-74.49381961,39.37853097,344 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2005,1,RES1,3001 -0120_14_7,-74.51375909,39.46403003,295 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1997,1,RES1,3001 -0120_14_8,-74.48887979,39.35011743,291 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1970,1,RES3A,3001 -0120_14_8.01,-74.8197185,39.644904,297 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1988,1,RES1,3001 -0120_14_8.02,-74.47710517,39.34146799,305 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_14_9,-74.51724937,39.39233119,299 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_15_2,-74.52645604,39.42471755,299 CLARKS LANDING RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_15_5.01,-74.51441056,39.46365048,356 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1994,1,GOV1,3004 -0120_15_5.02,-74.5173055,39.396022,350 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1987,1,RES1,3001 -0120_15_5.03,-74.78812924,39.64380553,344 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_15_5.04,-74.4846375,39.4365185,338 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_15_5.05,-74.50234843,39.32721683,332 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_15_5.06,-74.48930772,39.4391411,326 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1999,1,RES1,3001 -0120_15_5.07,-74.50523851,39.33313617,320 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1989,1,RES1,3001 -0120_15_5.08,-74.4511285,39.3546215,279 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1990,1,RES1,3002 -0120_16_1,-74.75895677,39.66093865,244 ALLGEYER LANE,PORT REPUBLIC CITY,17,1993,1,RES1,3001 -0120_16_2,-74.52730833,39.38278426,234 ALLGEYER LANE,PORT REPUBLIC CITY,17,1993,1,RES1,3001 -0120_16_5,-74.42845168,39.37487246,261 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1962,1,RES1,3001 -0120_16_7,-74.50677497,39.41905308,224 ALLGEYER LANE,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_17_3,-74.51658018,39.41080906,177 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1971,1,RES1,3001 -0120_17_4,-74.51249453,39.32912917,179 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_17_5,-74.7910695,39.656945,183 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_17_7,-74.50208292,39.42844772,191 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_18_1,-74.88411308,39.59811483,201 CLARKS LANDING RD,PORT REPUBLIC CITY,,0,1,AGR1,3001 -0120_19_1.01,-74.48926945,39.45934934,177 CLARKS LANDING RD,PORT REPUBLIC CITY,17,2014,1,RES1,3001 -0120_19_1.02,-74.814073,39.6572085,188 MILL ST,PORT REPUBLIC CITY,17,1998,1,RES1,3001 -0120_19_1.03,-74.51449669,39.39086255,167 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1998,1,RES1,3001 -0120_19_1.04,-74.49518866,39.33627914,187 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1998,1,RES1,3001 -0120_19_10,-74.7111868,39.64975256,147 CENTRAL AVE,PORT REPUBLIC CITY,17,1974,1,RES1,3001 -0120_19_11.01,-74.51649115,39.39485736,133 CENTRAL AVE (R),PORT REPUBLIC CITY,17,1988,1,RES1,3001 -0120_19_11.02,-74.47169802,39.34013567,133 CENTRAL AVE,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_19_12.01,-74.48529495,39.52489687,110 MILL ST,PORT REPUBLIC CITY,17,1800,1,RES1,3001 -0120_19_12.02,-74.507916,39.4945625,170 MILL ST,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_19_12.03,-74.47272565,39.4466248,130 MILL ST,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_19_12.04,-74.4672405,39.3440935,160 POMONA AVE,PORT REPUBLIC CITY,17,1988,1,GOV1,3004 -0120_19_12.05,-74.47848601,39.33683434,122 MILL ST,PORT REPUBLIC CITY,17,1986,1,RES1,3001 -0120_19_12.06,-74.484963,39.436106,128 MILL ST,PORT REPUBLIC CITY,17,1990,1,GOV1,3004 -0120_19_12.07,-74.46176302,39.52498667,132 MILL ST,PORT REPUBLIC CITY,17,1986,1,RES1,3001 -0120_19_12.08,-74.4991785,39.3305275,134 MILL ST,PORT REPUBLIC CITY,17,2003,1,RES1,3001 -0120_19_13,-74.4817215,39.347863,125 CENTRAL AVE,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_19_14,-74.36926775,39.41300674,115 CENTRAL AVE,PORT REPUBLIC CITY,17,1982,1,RES1,3001 -0120_19_15,-74.51706017,39.4158275,102 MILL ST,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_19_16,-74.49301851,39.33927467,107 CENTRAL AVE,PORT REPUBLIC CITY,17,1915,1,RES1,3001 -0120_19_2,-74.45526371,39.49739485,161 CLARKS LANDING RD,PORT REPUBLIC CITY,16,1910,1,GOV1,3004 -0120_19_3,-74.785347,39.64169517,157 CLARKS LANDING RD,PORT REPUBLIC CITY,16,1920,1,RES1,3001 -0120_19_4,-74.488981,39.4343375,151 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_19_5,-74.39599784,39.38960698,147 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_19_6,-74.521657,39.3165555,180 MILL ST,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_19_7,-74.52779797,39.38929786,157 CENTRAL AVE,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_19_8,-74.51728282,39.31749812,178 MILL ST,PORT REPUBLIC CITY,17,1995,1,RES1,3001 -0120_19_9,-74.45666582,39.35303648,153 CENTRAL AVE,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_2_4,-74.51786464,39.32123554,300 SOOYS LANDING RD,PORT REPUBLIC CITY,17,1931,1,RES1,3001 -0120_2_5,-74.974535,39.508851,322 SOOYS LANDING RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_2_7,-74.91916641,39.51804156,268 SOOYS LANDING RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_2_8,-74.4137215,39.3704005,240 SOOYS LANDING RD,PORT REPUBLIC CITY,17,1856,1,IND2,3002 -0120_20_1,-74.52689435,39.46013272,137 CLARKS LANDING RD,PORT REPUBLIC CITY,17,2005,1,RES1,3001 -0120_20_10,-74.52565742,39.45009576,138 CENTRAL AVE,PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_20_11,-74.47633714,39.3429414,126 CENTRAL AVE,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_20_13.01,-74.35921907,39.41538885,108 POMONA AVE,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_20_14,-74.51465482,39.47026153,113 BLAKES LANE,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_20_15,-74.51045738,39.32389785,114 CENTRAL AVE,PORT REPUBLIC CITY,17,1950,1,AGR1,3001 -0120_20_16,-74.48141209,39.34819215,144 POMONA AVE,PORT REPUBLIC CITY,17,2017,1,RES1,3001 -0120_20_17,-74.37907898,39.39523249,140 POMONA AVE,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_20_18,-74.3609065,39.412829,134 POMONA AVE,PORT REPUBLIC CITY,17,2018,1,RES1,3001 -0120_20_19,-74.40752929,39.39266965,128 POMONA AVE,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_20_2,-74.47506038,39.34047234,158 CENTRAL AVE,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_20_20,-74.49272633,39.49532745,122 POMONA AVE,PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_20_21,-74.48153028,39.34835485,114 POMONA AVE,PORT REPUBLIC CITY,17,1963,1,GOV1,3004 -0120_20_22,-74.9630615,39.5128865,102 POMONA AVE,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_20_3,-74.9476895,39.519843,154 CENTRAL AVE,PORT REPUBLIC CITY,17,1973,1,GOV1,3004 -0120_20_5,-74.9502345,39.542534,148 CENTRAL AVE,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_20_7,-74.36664671,39.40966362,121 CLARKS LANDING RD,PORT REPUBLIC CITY,16,1920,1,RES1,3001 -0120_20_9,-74.81164626,39.65234926,144 CENTRAL AVE,PORT REPUBLIC CITY,17,1967,1,REL1,3004 -0120_21_10.01,-74.4461612,39.37220361,157 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1875,1,RES1,3001 -0120_21_10.02,-74.456165,39.37203483,153 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_21_11.01,-74.42410756,39.36289011,80 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_21_11.02,-74.94953328,39.51984524,90 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1993,1,RES1,3001 -0120_21_12,-74.5192135,39.390476,70 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1958,1,RES3B,3001 -0120_21_13,-74.4043425,39.3871745,64 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1952,1,COM1,3004 -0120_21_14,-74.473914,39.44256142,62 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1840,1,RES3A,3004 -0120_21_15,-74.95267403,39.51727628,52 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1972,1,RES1,3001 -0120_21_16,-74.455938,39.349717,123 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_21_18,-74.471797,39.4838495,135 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1981,1,RES1,3001 -0120_21_19,-74.47861893,39.4436597,137 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_21_2,-74.79237584,39.64472847,83 ADAMS AVE,PORT REPUBLIC CITY,17,1955,1,RES1,3001 -0120_21_20,-74.528799,39.4485675,145 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_21_21,-74.4899705,39.336893,46 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_21_22,-74.5112525,39.336942,38 CLARKS LANDING RD,PORT REPUBLIC CITY,17,2003,1,RES1,3001 -0120_21_23,-74.37178747,39.40407725,92 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_21_25,-74.48065201,39.34878384,121 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_21_26,-74.4875715,39.437904,16 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_21_27,-74.39916905,39.3877403,117 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1820,1,RES1,3001 -0120_21_28.01,-74.948175,39.527293,4 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1860,1,RES1,3001 -0120_21_28.02,-74.50476762,39.4817923,10 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_21_3,-74.92191957,39.56436375,73 ADAMS AVE,PORT REPUBLIC CITY,14,1920,1,RES1,3001 -0120_21_4,-74.39501,39.3943356,63 ADAMS AVE,PORT REPUBLIC CITY,17,1972,1,RES1,3001 -0120_21_5,-74.52592336,39.31326094,57 ADAMS AVE,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_21_6,-74.451472,39.4930735,33 ADAMS AVE,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_21_7,-74.508903,39.4101775,29 ADAMS AVE,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_21_8,-74.41544205,39.36747145,17 ADAMS AVE,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_21_9,-74.4043685,39.384459,1 ADAMS AVE,PORT REPUBLIC CITY,17,1994,1,GOV1,3004 -0120_22_1,-74.460793,39.355324,132 BLAKES LANE,PORT REPUBLIC CITY,17,2010,1,GOV1,3004 -0120_22_10,-74.48717133,39.44440883,29 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1951,1,RES1,3001 -0120_22_11,-74.49550438,39.45104229,22 POMONA AVE,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_22_14,-74.52058981,39.44463904,14 POMONA AVE,PORT REPUBLIC CITY,17,1955,1,RES1,3001 -0120_22_15,-74.46268002,39.35863072,101 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_22_16,-74.4457515,39.371408,126 BLAKES LANE,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_22_17,-74.37541149,39.41295167,122 BLAKES LANE,PORT REPUBLIC CITY,16,1900,1,RES1,3001 -0120_22_18,-74.52189808,39.44258211,116 BLAKES LANE,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_22_19,-74.50717916,39.33043902,58 POMONA AVE,PORT REPUBLIC CITY,17,1920,1,RES1,3001 -0120_22_2,-74.52026,39.4013,75 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1968,1,GOV1,3004 -0120_22_20,-74.46554884,39.34789515,66 POMONA AVE,PORT REPUBLIC CITY,16,1940,1,GOV1,3004 -0120_22_21,-74.4872485,39.4444865,56 POMONA AVE,PORT REPUBLIC CITY,16,1900,1,RES1,3001 -0120_22_22,-74.40096484,39.39221068,52 POMONA AVE,PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_22_23,-74.513321,39.325256,46 POMONA AVE,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_22_25,-74.50771669,39.4533781,40 POMONA AVE,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_22_3,-74.45091432,39.35364402,69 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_22_4,-74.384359,39.393473,65 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_22_5,-74.50072861,39.41589571,61 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1960,1,RES1,3004 -0120_22_6,-74.53024,39.3899935,53 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_22_8,-74.45141185,39.37369374,45 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_22_9,-74.48475199,39.33534866,35 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1962,1,RES1,3001 -0120_23_1,-74.9168985,39.4965085,377 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1973,1,RES1,3001 -0120_23_2,-74.49112865,39.47581742,361 COLOGNE-PORT RD,PORT REPUBLIC CITY,17,1974,1,GOV1,3004 -0120_23_4.01,-74.4882971,39.44010423,247 ALLGEYER LANE,PORT REPUBLIC CITY,17,1973,1,RES1,3001 -0120_23_4.02,-74.48670432,39.45562663,253 ALLGEYER LANE,PORT REPUBLIC CITY,17,1978,1,RES1,3001 -0120_23_5,-74.5307375,39.3821635,241 ALLGEYER LANE,PORT REPUBLIC CITY,17,1956,1,GOV1,3004 -0120_24_1,-74.489086,39.435846,170 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2014,1,RES1,3001 -0120_24_10,-74.816284,39.654741,180 CHESTNUT NECK RD (R-R,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_24_11,-74.38238779,39.39596172,161 MILL ST,PORT REPUBLIC CITY,17,1966,1,RES1,3001 -0120_24_12,-74.52144399,39.39942467,151 MILL ST,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_24_13.04,-74.524258,39.384579,127 MILL ST (R),PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_24_14.01,-74.3911615,39.3950225,262 POMONA AVE,PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_24_14.02,-74.4914395,39.3330485,268 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1987,1,RES1,3001 -0120_24_14.03,-74.4616805,39.3558615,240 POMONA AVE,PORT REPUBLIC CITY,17,1997,1,RES1,3001 -0120_24_14.04,-74.516192,39.3241265,236 POMONA AVE,PORT REPUBLIC CITY,18,1987,1,RES1,3001 -0120_24_15,-74.50551257,39.32472015,201 MILL BRIDGE CT,PORT REPUBLIC CITY,17,2008,1,RES1,3001 -0120_24_16,-74.46490334,39.49583028,150 INDIAN CABIN RD,PORT REPUBLIC CITY,17,2013,1,RES1,3001 -0120_24_17,-74.50053501,39.33068612,340 UPPER POMONA AVE,PORT REPUBLIC CITY,17,2016,1,GOV1,3004 -0120_24_20,-74.44396577,39.37037737,320 UPPER POMONA AVE,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_24_22,-74.52518817,39.38535461,230 POMONA AVE,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_24_23,-74.3726065,39.4147305,218 POMONA AVE,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_24_24,-74.50904,39.3389005,125 MILL ST,PORT REPUBLIC CITY,17,1910,1,RES1,3001 -0120_24_25,-74.77664239,39.64329038,212 POMONA AVE,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_24_26,-74.46469767,39.35868246,117 MILL ST,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_24_27,-74.50054373,39.42611193,111 MILL ST,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_24_28,-74.51637835,39.45322495,101 MILL ST,PORT REPUBLIC CITY,17,2005,1,RES3B,3001 -0120_24_29,-74.46603921,39.45804941,345 UPPER POMONA AVE,PORT REPUBLIC CITY,17,1987,1,GOV1,3004 -0120_24_3,-74.47240983,39.34435053,189 MILL ST,PORT REPUBLIC CITY,17,1920,1,GOV1,3004 -0120_24_30,-74.51132174,39.32661519,316 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1967,1,RES1,3001 -0120_24_31.01,-74.5298465,39.3847675,342 ENGLISH CREEK RD,PORT REPUBLIC CITY,16,1950,1,COM3,3004 -0120_24_32,-74.9262894,39.51279335,378 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1995,1,RES1,3001 -0120_24_33,-74.47827,39.4421515,380 ENGLISH CREEK RD,PORT REPUBLIC CITY,14,1940,1,RES1,3001 -0120_24_4,-74.43746762,39.37720709,180 CHESTNUT NECK RD (R),PORT REPUBLIC CITY,14,1960,1,RES3A,3001 -0120_24_5,-74.48501353,39.47859022,183 MILL ST,PORT REPUBLIC CITY,17,1973,1,RES1,3001 -0120_24_6,-74.520102,39.3871925,179 MILL ST,PORT REPUBLIC CITY,17,1968,1,RES1,3001 -0120_24_7,-74.52931525,39.38440555,171 MILL ST,PORT REPUBLIC CITY,17,1800,1,RES1,3001 -0120_25_10,-74.8142695,39.646031,203 POMONA AVE,PORT REPUBLIC CITY,17,1974,1,GOV1,3004 -0120_25_11,-74.91673742,39.51647733,61 MILL ST,PORT REPUBLIC CITY,17,1940,1,GOV1,3004 -0120_25_12,-74.38101507,39.41502481,55 MILL ST,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_25_13,-74.50694772,39.33548511,45 MILL ST,PORT REPUBLIC CITY,17,2010,1,GOV1,3004 -0120_25_2,-74.52777886,39.40940334,248 MAIN ST,PORT REPUBLIC CITY,17,1973,1,RES1,3001 -0120_25_3,-74.5199215,39.4436625,240 MAIN ST,PORT REPUBLIC CITY,17,1974,1,RES1,3001 -0120_25_4,-74.496319,39.335553,236 MAIN ST,PORT REPUBLIC CITY,17,1973,1,RES1,3001 -0120_25_5,-74.512239,39.418148,228 MAIN ST,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_25_6,-74.49851903,39.41917081,215 POMONA AVE,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_25_7,-74.4838815,39.3439375,222 MAIN ST,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_25_8,-74.38493638,39.39892664,211 POMONA AVE,PORT REPUBLIC CITY,17,1974,1,RES1,3001 -0120_25_9,-74.51901957,39.31786816,216 MAIN ST,PORT REPUBLIC CITY,17,1972,1,GOV1,3004 -0120_26_1,-74.48508193,39.34497198,68 MILL ST,PORT REPUBLIC CITY,17,1955,1,RES1,3001 -0120_26_12,-74.47210315,39.49431283,118 MAIN ST,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_26_2,-74.50771058,39.32666866,161 POMONA AVE,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_26_3,-74.5293585,39.3094805,188 MAIN ST,PORT REPUBLIC CITY,17,1986,1,RES1,3001 -0120_26_4,-74.51700167,39.38818717,137 POMONA AVE,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_26_7,-74.50559837,39.3349654,56 MILL ST,PORT REPUBLIC CITY,17,1830,1,RES1,3001 -0120_26_8,-74.38255094,39.39294234,52 MILL ST,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_27_1,-74.4138925,39.363902,44 CHURCH ST,PORT REPUBLIC CITY,17,2003,1,RES1,3001 -0120_27_2,-74.5268895,39.387145,65 BLAKES LANE,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_27_3,-74.88477324,39.59717078,116 MAIN ST,PORT REPUBLIC CITY,17,2015,1,RES1,3001 -0120_27_4,-74.936661,39.5226245,112 MAIN ST,PORT REPUBLIC CITY,17,1897,1,RES1,3001 -0120_27_5,-74.5214215,39.420531,106 MAIN ST,PORT REPUBLIC CITY,17,1860,1,GOV1,3004 -0120_27_6,-74.495541,39.333756,104 MAIN ST,PORT REPUBLIC CITY,17,1884,1,RES1,3001 -0120_28_1,-74.4493455,39.3746185,57 POMONA AVE,PORT REPUBLIC CITY,16,1900,1,RES1,3001 -0120_28_10,-74.94037,39.515833,80 BLAKES LANE,PORT REPUBLIC CITY,16,1952,1,RES1,3001 -0120_28_11,-74.37035256,39.41492832,66 BLAKES LANE,PORT REPUBLIC CITY,17,1952,1,RES1,3001 -0120_28_12,-74.4895785,39.43654,48 MAIN ST,PORT REPUBLIC CITY,17,1860,1,RES1,3001 -0120_28_13,-74.42582032,39.37096456,40 MAIN ST,PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_28_15,-74.52290513,39.31484233,34 MAIN ST,PORT REPUBLIC CITY,17,1989,1,RES1,3001 -0120_28_16,-74.4406255,39.368532,24 MAIN ST,PORT REPUBLIC CITY,17,1930,1,RES1,3001 -0120_28_17,-74.52921582,39.40127897,60 BLAKES LANE,PORT REPUBLIC CITY,17,1952,1,RES1,3001 -0120_28_18,-74.45263427,39.48953911,56 MAIN ST,PORT REPUBLIC CITY,17,1770,1,RES1,3001 -0120_28_2,-74.41536283,39.36592356,43 POMONA AVE,PORT REPUBLIC CITY,17,1960,1,GOV1,3004 -0120_28_3,-74.4693125,39.4894825,39 POMONA AVE,PORT REPUBLIC CITY,16,1900,1,GOV1,3004 -0120_28_4,-74.769872,39.658903,33 POMONA AVE,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_28_5,-74.48263708,39.34523269,29 POMONA AVE,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_28_5.01,-74.40744132,39.37818451,26 MAIN ST,PORT REPUBLIC CITY,17,1894,1,RES1,3001 -0120_28_7,-74.9475245,39.517662,20 MAIN ST,PORT REPUBLIC CITY,17,1880,1,RES1,3001 -0120_28_8,-74.4616685,39.3503545,14 MAIN ST,PORT REPUBLIC CITY,17,1930,1,RES1,3001 -0120_28_9,-74.444581,39.3708535,53 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1952,1,RES1,3001 -0120_29_1,-74.93914818,39.52846042,169 MAIN ST,PORT REPUBLIC CITY,17,1890,1,RES1,3001 -0120_29_10,-74.5125655,39.4075555,109 MAIN ST,PORT REPUBLIC CITY,17,1850,1,RES1,3001 -0120_29_11,-74.50245121,39.32972834,101 MAIN ST,PORT REPUBLIC CITY,17,1982,1,RES1,3001 -0120_29_12.01,-74.49938631,39.33566966,55 MAIN ST,PORT REPUBLIC CITY,17,1895,1,RES1,3001 -0120_29_12.02,-74.489418,39.431675,51 MAIN ST,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_29_12.03,-74.48346,39.3399935,49 MAIN ST,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_29_14,-74.88317106,39.6004432,41 MAIN ST,PORT REPUBLIC CITY,17,1890,1,RES1,3001 -0120_29_15,-74.80170818,39.64583081,39 MAIN ST,PORT REPUBLIC CITY,17,1710,1,RES1,3001 -0120_29_16,-74.44655977,39.49373839,27 MAIN ST,PORT REPUBLIC CITY,17,1890,1,GOV1,3004 -0120_29_17,-74.36693,39.4056635,23 MAIN ST,PORT REPUBLIC CITY,17,1885,1,GOV1,3004 -0120_29_18,-74.49366588,39.34360423,17 MAIN ST,PORT REPUBLIC CITY,17,1830,1,GOV1,3004 -0120_29_19,-74.50313616,39.33246951,13 MAIN ST,PORT REPUBLIC CITY,17,1850,1,RES1,3001 -0120_29_2,-74.37473109,39.40117994,159 MAIN ST,PORT REPUBLIC CITY,17,2018,1,GOV1,3004 -0120_29_20,-74.49914717,39.334615,1 MAIN ST,PORT REPUBLIC CITY,17,1952,1,RES1,3001 -0120_29_21,-74.47425984,39.48485902,11 KNOWLES LANE,PORT REPUBLIC CITY,17,1900,1,RES1,3004 -0120_29_22,-74.471517,39.483122,1-9 KNOWLES LANE,PORT REPUBLIC CITY,18,2000,1,RES1,3001 -0120_29_23.01,-74.5102593,39.43487068,11 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1989,1,RES1,3001 -0120_29_23.02,-74.48043924,39.34803735,7 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1989,1,GOV1,3004 -0120_29_23.03,-74.50517177,39.43861221,1 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_29_4.01,-74.769035,39.6620275,10 MILL ST,PORT REPUBLIC CITY,,1900,1,RES1,3001 -0120_29_4.02,-74.50850472,39.34143252,6 MILL ST,PORT REPUBLIC CITY,17,1983,1,RES1,3001 -0120_29_5,-74.48022342,39.44589027,2 MILL ST (R),PORT REPUBLIC CITY,17,1977,1,RES1,3001 -0120_29_7,-74.52539441,39.39096549,143 MAIN ST,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_29_9,-74.5132055,39.4866485,111 MAIN ST (R),PORT REPUBLIC CITY,17,1900,1,RES1,3001 -0120_3_1,-74.489371,39.338525,OLD NEW YORK RD & MEADOWS,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_3_2,-74.48646414,39.34930235,OLD NEW YORK RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_3_6,-74.522507,39.3190635,767 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1940,1,GOV1,3004 -0120_3_8,-74.36787633,39.40356701,755 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1930,1,RES1,3001 -0120_3_9.01,-74.46191084,39.46869174,751 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1993,1,RES1,3001 -0120_3_9.02,-74.48390026,39.3524039,747 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_3_9.03,-74.4992135,39.4301807,741 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_30_1,-74.3700035,39.4142655,321 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1968,1,RES1,3001 -0120_30_10,-74.37395216,39.39978779,233 MAIN ST,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_30_11,-74.93864333,39.52700784,227 MAIN ST,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_30_13,-74.48615559,39.53541373,15 MILL ST,PORT REPUBLIC CITY,17,1860,1,RES1,3001 -0120_30_14,-74.492972,39.3379535,11 MILL ST,PORT REPUBLIC CITY,17,1860,1,RES1,3001 -0120_30_15,-74.35708284,39.41374575,5 MILL ST,PORT REPUBLIC CITY,17,1754,1,GOV1,3004 -0120_30_2,-74.53036261,39.44612182,305 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1980,1,GOV1,3004 -0120_30_3,-74.51917569,39.40063805,295 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_30_4,-74.9461235,39.519759,289 ENGLISH CREEK RD,PORT REPUBLIC CITY,16,1940,1,RES1,3001 -0120_30_5,-74.51575038,39.38633368,281 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1949,1,RES1,3001 -0120_30_6,-74.47843667,39.33904633,269 POMONA AVE,PORT REPUBLIC CITY,17,1978,1,GOV1,3004 -0120_30_7,-74.52805002,39.39781482,279 MAIN ST,PORT REPUBLIC CITY,17,1984,1,RES1,3001 -0120_30_8,-74.43739932,39.36974909,277 MAIN ST,PORT REPUBLIC CITY,17,1960,1,GOV1,3004 -0120_30_9,-74.4862835,39.350186,237 MAIN ST,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_31_3,-74.52448836,39.31406195,385 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1995,1,RES1,3001 -0120_31_4.01,-74.45128458,39.49556217,387 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_31_5,-74.40574043,39.38247933,393 ENGLISH CREEK RD,PORT REPUBLIC CITY,17,2002,1,RES1,3001 -0120_32_1.01,-74.95103923,39.51350295,298 RIVERSIDE DR,PORT REPUBLIC CITY,17,1986,1,RES1,3001 -0120_32_1.02,-74.4686615,39.3455165,292 RIVERSIDE DR,PORT REPUBLIC CITY,17,1988,1,COM1,3004 -0120_32_1.03,-74.824827,39.64728823,286 RIVERSIDE DR,PORT REPUBLIC CITY,18,2010,1,RES1,3001 -0120_32_1.04,-74.42096265,39.37124973,280 RIVERSIDE DR,PORT REPUBLIC CITY,17,1988,1,RES1,3001 -0120_32_2,-74.4913155,39.331669,224 RIVERSIDE DR,PORT REPUBLIC CITY,16,1862,1,RES1,3001 -0120_32_2.01,-74.82764176,39.64797195,234 RIVERSIDE DR,PORT REPUBLIC CITY,17,1950,1,RES1,3001 -0120_32_3,-74.50780934,39.40641674,216 RIVERSIDE DR,PORT REPUBLIC CITY,17,1977,1,RES1,3001 -0120_32_4,-74.47366817,39.34258747,200 RIVERSIDE DR,PORT REPUBLIC CITY,17,1980,1,GOV1,3004 -0120_33_2,-74.48681195,39.52168819,102 RIVERSIDE DR,PORT REPUBLIC CITY,17,1992,1,RES1,3001 -0120_33_3,-74.515243,39.385778,68 RIVERSIDE DR,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_33_4,-74.45645099,39.49172483,62 RIVERSIDE DR,PORT REPUBLIC CITY,17,1957,1,RES1,3001 -0120_33_5,-74.47869301,39.43963206,58 RIVERSIDE DR,PORT REPUBLIC CITY,15,1930,1,RES1,3001 -0120_33_6,-74.909854,39.514467,54 RIVERSIDE DR,PORT REPUBLIC CITY,14,1930,1,RES1,3001 -0120_33_8,-74.4516265,39.4805005,40 RIVERSIDE DR,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_33_9,-74.78074536,39.6716293,82 RIVERSIDE DR,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_34_10,-74.51349652,39.39791916,147 OLD RIVERSIDE DR,PORT REPUBLIC CITY,17,1952,1,RES1,3001 -0120_34_17,-74.91965,39.48066,201 MOSS MILL RD,PORT REPUBLIC CITY,18,2013,1,RES1,3001 -0120_34_18,-74.461685,39.49256033,223 MOSS MILL RD,PORT REPUBLIC CITY,18,1991,1,RES1,3001 -0120_34_19,-74.90565997,39.4800764,217 MOSS MILL RD,PORT REPUBLIC CITY,17,1971,1,RES1,3001 -0120_34_20,-74.8484465,39.611847,213 MOSS MILL RD,PORT REPUBLIC CITY,17,1978,1,RES1,3001 -0120_34_21,-74.917725,39.48142,207 MOSS MILL RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_34_23,-74.92659367,39.48382833,259 MOSS MILL RD,PORT REPUBLIC CITY,17,1976,1,RES1,3001 -0120_34_4,-74.95003885,39.52370373,69 RIVERSIDE DR,PORT REPUBLIC CITY,14,1900,1,RES1,3001 -0120_34_6.01,-74.489399,39.333376,59 RIVERSIDE DR,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_34_6.02,-74.45692857,39.46061376,57 RIVERSIDE DR,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_34_7,-74.3885955,39.3939645,43 RIVERSIDE DR,PORT REPUBLIC CITY,17,2013,1,RES1,3001 -0120_34_9,-74.472914,39.4465455,211 RIVERSIDE DR,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_35_1.01,-74.48085562,39.33676116,1 S OLD NEW YORK RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_35_1.02,-74.47456759,39.49153226,3 S OLD NEW YORK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_35_1.03,-74.88467869,39.49680965,18 PITNEY RD,PORT REPUBLIC CITY,17,1990,1,GOV1,3004 -0120_35_1.04,-74.89147444,39.5009219,20 PITNEY RD,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_37_3,-74.9077035,39.4781615,355 RIVERSIDE DR,PORT REPUBLIC CITY,18,2003,1,RES1,3001 -0120_37_4,-74.91212775,39.51318546,345 RIVERSIDE DR,PORT REPUBLIC CITY,17,2007,1,RES1,3001 -0120_38_1,-74.48734593,39.33878137,33 WRANGLEBORO RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_41_5,-74.49269918,39.33549046,316 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_41_9,-74.501707,39.3320125,312 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1903,1,RES1,3001 -0120_42_1,-74.452181,39.4986525,321 CLARKS LANDING RD,PORT REPUBLIC CITY,15,1940,1,RES1,3001 -0120_47_1,-74.5052325,39.423654,335 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_47_11,-74.50473466,39.33455151,333 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1998,1,RES1,3001 -0120_47_23,-74.9430335,39.521737,329 CLARKS LANDING RD,PORT REPUBLIC CITY,17,2016,1,RES1,3001 -0120_5_2,-74.5257035,39.4464495,840 CHESTNUT NECK RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_5_22,-74.45163278,39.35396685,780 CHESTNUT NECK RD,PORT REPUBLIC CITY,14,1956,1,RES1,3001 -0120_5_24,-74.4735895,39.341289,758 OLD NEW YORK RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_5_25,-74.497568,39.44594,762 OLD NEW YORK RD,PORT REPUBLIC CITY,16,1950,1,RES1,3001 -0120_5_26,-74.5140785,39.4116405,754 OLD NEW YORK RD,PORT REPUBLIC CITY,17,1940,1,RES1,3001 -0120_5_27,-74.51277132,39.33194036,11 RIVER RD,PORT REPUBLIC CITY,16,1975,1,RES1,3001 -0120_5_28,-74.51820146,39.38719538,15 RIVER RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_5_29,-74.38026853,39.39818785,17 RIVER RD,PORT REPUBLIC CITY,16,1975,1,RES1,3001 -0120_5_31,-74.80462757,39.64553513,21 RIVER RD,PORT REPUBLIC CITY,16,1975,1,RES1,3001 -0120_5_33,-74.5035135,39.3308595,27 RIVER RD,PORT REPUBLIC CITY,16,2014,1,RES1,3001 -0120_52_1,-74.49507261,39.44872119,372 CLARKS LANDING RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_52_10,-74.46167185,39.35341892,356 CLARKS LANDING RD,PORT REPUBLIC CITY,16,1908,1,RES1,3001 -0120_52_6,-74.4875435,39.339033,364 CLARKS LANDING RD,PORT REPUBLIC CITY,16,1970,1,RES1,3001 -0120_53_1,-74.4938085,39.495208,375 CLARKS LANDING RD,PORT REPUBLIC CITY,17,2010,1,RES1,3001 -0120_53_16,-74.50789064,39.44887639,355 CLARKS LANDING RD,PORT REPUBLIC CITY,17,2000,1,RES1,3001 -0120_6_10,-74.51624,39.324394,631 CHESTNUT NECK RD,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_6_11,-74.4881065,39.4708665,639 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1930,1,RES1,3001 -0120_6_14,-74.3687121,39.41298219,615 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1987,1,RES1,3001 -0120_6_15,-74.4991865,39.3338965,609 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1988,1,RES1,3001 -0120_6_16,-74.78478925,39.67797168,601 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1985,1,GOV1,3004 -0120_6_17,-74.38097415,39.40006471,555 CHESTNUT NECK RD,PORT REPUBLIC CITY,,0,1,GOV1,3004 -0120_6_19,-74.36517249,39.40862266,505 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_6_20,-74.45358795,39.50258031,501 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2017,1,RES1,3001 -0120_6_21,-74.53098784,39.30907047,499 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1986,1,RES1,3001 -0120_6_22,-74.48966143,39.33232984,487 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2017,1,RES1,3001 -0120_6_23,-74.43091,39.3692205,473 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1972,1,RES1,3001 -0120_6_24,-74.807096,39.643201,467 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_6_25,-74.525885,39.31156817,463 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_6_26,-74.37089199,39.41757229,457 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_6_27,-74.79490307,39.67396077,453 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_6_28,-74.52579752,39.31625434,445 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_6_29.01,-74.3661925,39.4091805,439 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_6_29.02,-74.9377125,39.5248575,429 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2004,1,RES1,3001 -0120_6_32,-74.38558165,39.39656685,381 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1968,1,RES1,3001 -0120_6_33,-74.47078549,39.48803262,367 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_6_34.01,-74.360884,39.4131235,355 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1986,1,RES1,3001 -0120_6_35.01,-74.50034958,39.33009616,353 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,2006,1,RES1,3001 -0120_6_35.02,-74.4799645,39.444895,347 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1995,1,RES1,3001 -0120_6_36,-74.517477,39.4045225,341 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1995,1,RES1,3001 -0120_6_37,-74.37276754,39.4179363,331 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1850,1,RES1,3001 -0120_6_38,-74.4907501,39.49759334,325 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_6_39,-74.44355939,39.35518382,319 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1987,1,RES1,3001 -0120_6_40.01,-74.4489965,39.3560455,295 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1986,1,RES1,3001 -0120_6_40.02,-74.5092495,39.432536,301 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1985,1,RES1,3001 -0120_6_40.03,-74.40650282,39.38317652,311 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_6_40.04,-74.381978,39.416237,315 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_6_42,-74.48980062,39.33190168,275 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1976,1,RES1,3001 -0120_6_43,-74.36657498,39.42202997,271 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_6_44,-74.364999,39.4224945,267 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1987,1,RES1,3001 -0120_6_45,-74.48728433,39.4407,263 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1977,1,RES1,3001 -0120_6_46,-74.38862816,39.39462903,257 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1970,1,RES1,3001 -0120_6_47,-74.82557799,39.65182667,247 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_6_48,-74.51339676,39.32812534,239 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1980,1,RES1,3001 -0120_6_49,-74.5059925,39.323232,233 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_6_50,-74.94560743,39.52286081,225 CHESTNUT NECK RD,PORT REPUBLIC CITY,17,1875,1,RES1,3001 -0120_6_7,-74.5038765,39.4288725,689 CHESTNUT NECK RD,PORT REPUBLIC CITY,16,1940,1,RES1,3001 -0120_6_9,-74.46531374,39.49571394,687 CHESTNUT NECK RD,PORT REPUBLIC CITY,16,1960,1,RES1,3001 -0120_8_12,-74.9118675,39.5351775,12 WILSON AVE,PORT REPUBLIC CITY,17,1990,1,RES1,3001 -0120_8_13,-74.909451,39.488503,16 WILSON AVE,PORT REPUBLIC CITY,16,1930,1,RES1,3001 -0120_8_15,-74.9251555,39.499193,22-24 WILSON AVE,PORT REPUBLIC CITY,,0,1,RES1,3001 -0120_8_18,-74.52113759,39.44684886,8 BOAT AVE,PORT REPUBLIC CITY,17,1960,1,RES1,3001 -0120_8_19,-74.51086683,39.3289945,4 BOAT AVE,PORT REPUBLIC CITY,16,1960,1,IND2,3002 -0120_8_6,-74.50249476,39.4333874,33 WILSON AVE,PORT REPUBLIC CITY,,0,1,RES1,3002 -0120_8_8,-74.43779741,39.36664618,32 NEW YORK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0120_8_9,-74.51364289,39.40956919,26 NEW YORK RD,PORT REPUBLIC CITY,17,1975,1,RES1,3001 -0121_1007_1,-74.7142535,39.46805375,100 E MARYLAND AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1007_10,-74.6146765,39.4865815,108 E MARYLAND AVE,SOMERS POINT CITY,15,1946,1,RES1,3001 -0121_1007_12,-74.82307664,39.40746337,549 LAUNCH AVE,SOMERS POINT CITY,43,1922,3,RES1,3001 -0121_1007_6,-74.7062555,39.6433455,15 KAPPELLA AVE,SOMERS POINT CITY,16,1922,1,RES1,3001 -0121_1007_7,-74.93719298,39.52437233,16 KAPPELLA AVE,SOMERS POINT CITY,16,1921,1,EDU1,3004 -0121_1007_8,-74.93424477,39.51242607,551 LAUNCH & 18 KAPPELLA,SOMERS POINT CITY,16,1940,2,RES1,3001 -0121_1008_4,-74.75708782,39.44505325,11 KAPPELLA AVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1008_5,-74.54674122,39.47471704,10 KAPPELLA AVE,SOMERS POINT CITY,,1949,1,GOV1,3004 -0121_1008_6,-74.54948243,39.4657757,9 KAPPELLA AVE,SOMERS POINT CITY,16,1907,1,RES1,3001 -0121_1008_8,-74.63080986,39.4173378,557 LAUNCH AVE,SOMERS POINT CITY,17,1998,1,RES1,3001 -0121_1008_9.01,-74.94777303,39.51808143,553 LAUNCH AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1008_9.02,-74.95029607,39.51742616,555 LAUNCH AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1012_1,-74.87360786,39.59437038,520 SUNSET AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1012_2,-74.80975294,39.62007385,516 SUNSET AVE,SOMERS POINT CITY,,1940,1,RES1,3001 -0121_1012_3,-74.79665903,39.64541957,514 SUNSET AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_1012_4,-74.42999357,39.36809718,510 SUNSET AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1012_5,-74.5040895,39.3338175,26 E MARYLAND AVE,SOMERS POINT CITY,,1988,1,RES1,3001 -0121_1012_6,-74.8168225,39.642085,28 E MARYLAND AVE,SOMERS POINT CITY,,1950,1,RES1,3001 -0121_1012_7,-74.7813245,39.6600525,535 SUNNY AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1012_8,-74.87826407,39.59396774,517 SUNNY AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1012_9,-74.7712858,39.61521589,525 SUNNY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1013_1,-74.4924515,39.3321265,520 SHORE RD,SOMERS POINT CITY,,1936,1,RES1,3001 -0121_1013_3,-74.4837165,39.339457,502 SHORE RD,SOMERS POINT CITY,,1983,1,RES1,3001 -0121_1013_4,-74.463262,39.3468745,12 E MARYLAND AVE,SOMERS POINT CITY,,1948,1,RES1,3001 -0121_1013_5,-74.520247,39.3178155,509 SUNSET AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1013_7,-74.4909075,39.3342125,513 SUNSET AVE,SOMERS POINT CITY,16,1920,2,RES1,3004 -0121_1013_8,-74.8201555,39.645073,13 PLEASANT AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1016_1.01,-74.8102795,39.6297445,520 NEW RD,SOMERS POINT CITY,,1978,1,RES1,3001 -0121_1016_1.02,-74.683421,39.553321,715 NEW HAMPSHIRE AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1016_10,-74.80454275,39.63047869,688 W MARYLAND AVE,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_1016_10.01,-74.84297328,39.53560652,680 W MARYLAND AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1016_12,-74.63227534,39.55314598,MARKS RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1016_13,-74.73044781,39.45494381,450 SEVENTH ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1016_14,-74.5317735,39.4034495,429 SEVENTH ST,SOMERS POINT CITY,15,1956,1,RES1,3001 -0121_1016_15,-74.6145467,39.37401542,427 SEVENTH ST,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_1016_16,-74.5403925,39.39147,425 SEVENTH ST,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_1016_18.01,-74.577177,39.355213,613 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1996,1,RES1,3001 -0121_1016_18.02,-74.56771274,39.36803711,611 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_1016_18.03,-74.57205233,39.34314096,609 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_1016_18.04,-74.62571058,39.35561572,556 SEVENTH ST,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1016_2,-74.65413384,39.54760898,701 NEW HAMPSHIRE AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1016_20,-74.37167838,39.4116785,515 FOURTH ST,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_1016_21,-74.45057236,39.37146463,530 FOURTH ST,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1016_22,-74.3634365,39.414891,MARKS RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1016_23,-74.44466596,39.35513303,524 FOURTH ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1016_24,-74.3647415,39.4084525,589 MARKS RD,SOMERS POINT CITY,15,1940,1,RES1,3001 -0121_1016_25,-74.48869587,39.35225276,587 MARKS RD,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1016_26,-74.41773982,39.36893905,591 MARKS RD,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1016_3,-74.4303725,39.365185,510 NEW RD,SOMERS POINT CITY,,1998,1,RES1,3001 -0121_1016_4,-74.5164715,39.409428,506 NEW RD,SOMERS POINT CITY,,1959,1,RES1,3001 -0121_1016_7,-74.63755876,39.41003916,500 NEW RD,SOMERS POINT CITY,,1973,1,RES1,3001 -0121_1016_8,-74.528647,39.401371,698 W MARYLAND AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1016_9.01,-74.91825655,39.52440082,694 W MARYLAND AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1016_9.02,-74.8111735,39.633226,690 W MARYLAND AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1017_1,-74.50446615,39.33185452,515 NEW RD,SOMERS POINT CITY,,1968,1,RES1,3001 -0121_1017_2.02,-74.5017465,39.431501,507-509 NEW RD,SOMERS POINT CITY,,1970,1,RES1,3001 -0121_1017_3,-74.5645495,39.415182,505 NEW RD,SOMERS POINT CITY,,1954,1,RES1,3001 -0121_1017_5,-74.76057897,39.43079165,501 NEW RD,SOMERS POINT CITY,,1973,1,RES1,3001 -0121_110_1.01,-74.83287414,39.38375665,2 WARWICK AVE,SOMERS POINT CITY,18,2004,1,RES1,3004 -0121_110_1.02,-74.51892239,39.32181167,4 WARWICK AVE,SOMERS POINT CITY,18,1999,1,RES1,3001 -0121_110_1.03,-74.4818405,39.3497505,6 WARWICK AVE,SOMERS POINT CITY,18,1999,1,RES1,3001 -0121_111_1,-74.49188934,39.3344875,103 E OCEAN AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_111_2,-74.4854385,39.344834,105 E OCEAN AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_111_3.01,-74.6360055,39.5334755,107 E OCEAN AVE,SOMERS POINT CITY,16,1993,1,RES1,3001 -0121_111_3.02,-74.69983972,39.57278838,221 E OCEAN AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_111_6,-74.491639,39.334748,137 E OCEAN AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1114_10,-74.36001104,39.41547116,24 W MARYLAND AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1114_11,-74.37762595,39.41859303,20 W MARYLAND AVE,SOMERS POINT CITY,16,1926,2,RES1,3001 -0121_1114_12,-74.3795695,39.3990785,501 SHORE RD,SOMERS POINT CITY,,1957,1,RES1,3001 -0121_1114_2,-74.5712898,39.52586274,593 SHORE RD,SOMERS POINT CITY,,1955,1,GOV1,3004 -0121_1114_3,-74.7870585,39.6779505,555 SHORE RD,SOMERS POINT CITY,,1971,1,RES1,3001 -0121_1114_5,-74.36771814,39.41336061,519 SHORE RD,SOMERS POINT CITY,,1990,1,RES1,3001 -0121_1114_6,-74.4835098,39.42798358,40 W MARYLAND AVE,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_1114_7,-74.514927,39.3999865,36 W MARYLAND AVE,SOMERS POINT CITY,15,1926,1,RES1,3001 -0121_1114_8,-74.4494195,39.374811,32 W MARYLAND AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1114_9,-74.37357507,39.41805572,26 W MARYLAND AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1115_4,-74.47914777,39.47814315,446 BETHEL RD,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1115_5,-74.51791276,39.52840855,116 W MARYLAND AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1115_6.01,-74.7075,39.4208315,507 FIRST ST,SOMERS POINT CITY,16,1995,1,COM1,3004 -0121_1115_6.02,-74.5052614,39.4254837,509 FIRST ST,SOMERS POINT CITY,16,1982,1,RES1,3001 -0121_1115_7,-74.47783269,39.44370015,501 FIRST ST,SOMERS POINT CITY,16,1936,1,RES1,3001 -0121_1116_1,-74.60193923,39.30823878,447 BETHEL RD,SOMERS POINT CITY,,1965,1,RES1,3001 -0121_1116_4,-74.592087,39.325934,445 BETHEL RD,SOMERS POINT CITY,15,1928,1,COM1,3004 -0121_1116_6,-74.5267545,39.3957225,441 BETHEL RD,SOMERS POINT CITY,15,1928,1,REL1,3004 -0121_1122_1,-74.59310794,39.36981977,558-560 NEW RD,SOMERS POINT CITY,,1985,1,RES1,3001 -0121_1122_11,-74.5703255,39.412786,414 SEVENTH ST,SOMERS POINT CITY,15,1928,1,COM1,3004 -0121_1122_13,-74.63254493,39.38734482,426 SEVENTH ST,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_1122_14,-74.6333165,39.420611,428 SEVENTH ST,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_1122_2,-74.808248,39.4304395,715 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_1122_3,-74.56173079,39.37312546,553 SEVENTH ST,SOMERS POINT CITY,16,1993,1,RES1,3001 -0121_1122_4,-74.65597823,39.39978116,550 NEW RD,SOMERS POINT CITY,,1928,1,RES1,3004 -0121_1122_5,-74.57860847,39.41670484,555 SEVENTH ST,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_1122_7,-74.773106,39.612763,602-606 NEW RD,SOMERS POINT CITY,,1964,1,RES1,3001 -0121_1122_9,-74.547915,39.385744,557 SEVENTH ST,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_1123_12.01,-74.5877131,39.42484515,819 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1123_12.02,-74.585983,39.411598,821 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1123_12.03,-74.64620258,39.3902506,1 JEFFERSON AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1123_12.04,-74.544237,39.460619,3 JEFFERSON AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1123_2_C0005,-74.6239548,39.43500891,549 NEW RD SUITE-E,SOMERS POINT CITY,,1984,1,RES1,3001 -0121_1123_2_C0006,-74.64421907,39.43616948,549 NEW RD SUITE-F,SOMERS POINT CITY,,1984,1,RES1,3001 -0121_1123_2_C0007,-74.70181647,39.42395367,549 NEW RD SUITE-G,SOMERS POINT CITY,,1984,1,RES1,3001 -0121_1123_2_C0008,-74.72781079,39.45030096,549 NEW RD SUITE-H,SOMERS POINT CITY,,1984,1,RES1,3001 -0121_1123_2_C0009,-74.53940609,39.46083278,549 NEW RD SUITE-I,SOMERS POINT CITY,,1984,1,RES1,3001 -0121_1123_2_C0010,-74.6469845,39.4312655,549 NEW RD SUITE-J,SOMERS POINT CITY,,1984,1,RES1,3001 -0121_1123_2_C0011,-74.62328906,39.43412576,549 NEW RD SUITE-K,SOMERS POINT CITY,,1984,1,RES1,3001 -0121_1123_2_C0012,-74.70054619,39.37027589,549 NEW RD SUITE-L,SOMERS POINT CITY,,1984,1,COM1,3004 -0121_1123_4,-74.78491609,39.6395017,11 JEFFERSON AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1123_5,-74.77511411,39.51500279,9 JEFFERSON AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1123_6,-74.64392282,39.52492215,7 JEFFERSON AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1123_7,-74.78774641,39.61097333,5 JEFFERSON AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1123_8_C0001,-74.60750574,39.39069144,551 NEW RD SUITE-A,SOMERS POINT CITY,,1982,1,RES1,3001 -0121_1123_8_C0002,-74.55433587,39.4069828,551 NEW RD SUITE-B,SOMERS POINT CITY,,1982,1,RES1,3001 -0121_1123_8_C0003,-74.60799955,39.39164281,551 NEW RD SUITE-C,SOMERS POINT CITY,,1982,1,RES1,3001 -0121_1123_8_C0004,-74.56385729,39.4093886,551 NEW RD SUITE-D,SOMERS POINT CITY,,1982,1,RES1,3001 -0121_1125_1,-74.9484825,39.510508,163 JORDAN RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1125_10,-74.634418,39.5237805,1003 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1125_11,-74.65655486,39.62142822,1005 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1125_12,-74.84085083,39.60444001,1007 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1125_2,-74.86036416,39.61980667,4 HAVERFORD RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1125_3,-74.8590928,39.58648822,6 HAVERFORD RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1125_4,-74.71590472,39.58213611,8 HAVERFORD RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1125_5,-74.618002,39.6219845,10 HAVERFORD RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1125_6,-74.87327166,39.49426717,6 JEFFERSON AVE,SOMERS POINT CITY,16,1965,1,RES3B,3001 -0121_1125_7,-74.7123145,39.466234,4 JEFFERSON AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1125_8,-74.62710569,39.42181759,2 JEFFERSON AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1125_9,-74.5522075,39.468034,1001 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1126_1,-74.46961467,39.44591632,169 JORDAN RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1126_10,-74.4813435,39.33556,167 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1126_2,-74.46589218,39.34539449,4 SWARTHMORE RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1126_3,-74.49207423,39.33202733,6 SWARTHMORE RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1126_4,-74.50100048,39.40838381,14 JEFFERSON AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1126_5,-74.94507411,39.50953857,12 JEFFERSON AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1126_6,-74.8087205,39.639107,7 HAVERFORD RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1126_7,-74.36904145,39.41658479,5 HAVERFORD RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1126_8,-74.483909,39.433084,3 HAVERFORD RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1126_9,-74.4916765,39.332486,165 JORDAN RD,SOMERS POINT CITY,16,1965,1,GOV1,3004 -0121_1127_1,-74.6380855,39.4006095,2 BRYN MAWR RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1127_2,-74.58168755,39.40584846,4 BRYN MAWR RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1127_3,-74.60691719,39.38780691,6 BRYN MAWR RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1127_4,-74.58715593,39.37247178,18 JEFFERSON AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1127_5,-74.51225567,39.42900503,16 JEFFERSON AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1127_6,-74.55043129,39.38228264,5 SWARTHMORE RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1127_7,-74.58901589,39.3707565,3 SWARTHMORE RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1127_8,-74.61354727,39.3693031,1 SWARTHMORE RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1127_9,-74.5828965,39.422779,173 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1128_1,-74.71124666,39.47242452,183 JORDAN RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1128_10,-74.50187786,39.42728368,179 JORDAN RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1128_11,-74.51003206,39.33046417,181 JORDAN RD,SOMERS POINT CITY,16,1961,1,GOV1,3004 -0121_1128_2.02,-74.834616,39.4267325,808 W GROVELAND AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1128_3,-74.50114405,39.33007079,26 JEFFERSON AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1128_4,-74.50727392,39.41873316,24 JEFFERSON AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1128_5,-74.6203035,39.4386715,22 JEFFERSON AVE,SOMERS POINT CITY,16,1965,1,GOV1,3004 -0121_1128_6,-74.63140204,39.39282714,20 JEFFERSON AVE,SOMERS POINT CITY,16,1966,1,RES1,3002 -0121_1128_7,-74.6444935,39.432896,5 BRYN MAWR RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1128_8,-74.57173701,39.49627433,3 BRYN MAWR RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1128_9,-74.70983034,39.43123106,177 JORDAN RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1129_1,-74.9341397,39.52515794,162 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_10,-74.54846722,39.47396757,115 OSBORNE RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1129_11,-74.71866576,39.39034602,117 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_12,-74.52489616,39.41101325,119 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_13,-74.51478719,39.32165583,121 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_14,-74.714623,39.4669995,123 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_15,-74.5970165,39.514636,125 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_16,-74.47276634,39.36511916,127 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_17,-74.649223,39.5343275,1004 W GROVELAND AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_18,-74.4974335,39.33807,190 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_19,-74.56618072,39.5102859,188 JORDAN RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1129_2,-74.518615,39.3955635,1009 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1129_20,-74.74953384,39.45259375,186 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_21,-74.50826033,39.32624302,184 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_22,-74.52059553,39.40855265,182 JORDAN RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1129_23,-74.6628,39.447295,180 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_24,-74.5393395,39.466696,178 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_25,-74.62828423,39.39352391,176 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_26,-74.558346,39.434905,174 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_27,-74.59802195,39.37358648,172 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_28,-74.56047183,39.3702282,170 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_29,-74.5304425,39.4199475,168 JORDAN RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1129_3,-74.50629564,39.32424839,101 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_30,-74.46085034,39.34642999,166 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_31,-74.43245103,39.36196541,164 JORDAN RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_4,-74.484257,39.3374765,103 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_5,-74.4809,39.4557275,105 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_6,-74.56532182,39.37054421,107 OSBORNE RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1129_7,-74.5785468,39.40076284,109 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_8,-74.59126772,39.4262394,111 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1129_9,-74.62534723,39.41660339,113 OSBORNE RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_113_1,-74.46749847,39.49346508,100 SHORE RD,SOMERS POINT CITY,,1970,1,RES1,3001 -0121_1130_1,-74.49468056,39.42673981,1107 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1130_10,-74.52142247,39.31876582,115 PRINCETON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_11,-74.71350816,39.46636199,117 PRINCETON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_12,-74.61156559,39.52777628,119 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1130_13,-74.49379806,39.33980849,121 PRINCETON RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1130_14,-74.64215724,39.53240688,123 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1130_15,-74.69406132,39.59101453,125 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1130_16,-74.557322,39.475846,127 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1130_17,-74.581824,39.4428305,1008 W GROVELAND AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_18,-74.82551896,39.56868617,128 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_19,-74.64832634,39.52170467,126 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_2,-74.49851206,39.44216944,1109 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1130_20,-74.46360783,39.35496904,124 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_21,-74.53745217,39.53379094,122 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_22,-74.74772394,39.45233519,120 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_23,-74.50695444,39.32722983,118 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_24,-74.51949703,39.41664832,116 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_25,-74.65098059,39.45601718,114 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_26,-74.60664489,39.43888671,112 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_27,-74.6467655,39.376302,110 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_28,-74.57261002,39.42643567,108 OSBORNE RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_29,-74.60292547,39.37647784,106 OSBORNE RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1130_3,-74.57194315,39.3697251,101 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1130_30,-74.56229808,39.37258368,104 OSBORNE RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1130_4,-74.60196412,39.3895269,103 PRINCETON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_5,-74.58586124,39.42088339,105 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1130_6,-74.62334449,39.4181072,107 PRINCETON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_7,-74.54875555,39.475337,109 PRINCETON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_8,-74.7135721,39.41579593,111 PRINCETON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1130_9,-74.490339,39.422413,113 PRINCETON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1131_1,-74.574138,39.4175435,100 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3004 -0121_1131_10,-74.48924045,39.3381214,115 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_11,-74.6602928,39.53616182,117 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_12,-74.62764284,39.61753252,119 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_13,-74.541137,39.4668585,121 HADDON RD,SOMERS POINT CITY,16,1966,1,COM1,3004 -0121_1131_14,-74.4858212,39.43923404,123 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_15,-74.46306717,39.49654362,125 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_16,-74.52076842,39.45785658,127 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_17,-74.46334343,39.49632723,126 PRINCETON RD,SOMERS POINT CITY,16,1965,1,GOV1,3004 -0121_1131_18,-74.51429272,39.43055133,124 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_19,-74.6452591,39.4313418,122 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_2,-74.59285855,39.43416355,1203 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_20,-74.6842309,39.58421385,120 PRINCETON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_21,-74.64566306,39.52401869,118 PRINCETON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_22,-74.46173169,39.35894296,116 PRINCETON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_23,-74.56285015,39.50483647,114 PRINCETON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_24,-74.73354912,39.4483716,112 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_25,-74.5036185,39.326989,110 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_26,-74.51204284,39.40241027,108 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_27,-74.6434765,39.4367605,106 PRINCETON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_28,-74.5436765,39.45806,104 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_29,-74.635819,39.385093,102 PRINCETON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_3,-74.63033131,39.41670793,101 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_30,-74.46116328,39.54762304,1014 W GROVELAND AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_4,-74.55150883,39.47080666,103 HADDON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_5,-74.76830098,39.38573905,105 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_6,-74.49004412,39.42234403,107 HADDON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1131_7,-74.52244281,39.32016686,109 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_8,-74.73166961,39.46075027,111 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1131_9,-74.55640366,39.55061247,113 HADDON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1132_1,-74.4958578,39.42673847,1021 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1965,1,GOV1,3004 -0121_1132_10,-74.45190386,39.49744555,119 N AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1132_11,-74.4947025,39.4621575,121 N AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1132_12,-74.46261763,39.49621918,123 N AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1132_13,-74.58492587,39.33265615,125 N AMBLER RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1132_14,-74.56901558,39.35040232,1020 W GROVELAND AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1132_15,-74.58332508,39.33008978,1018 W GROVELAND AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1132_16,-74.452031,39.4920045,124 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1132_17,-74.51679,39.533758,122 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1132_18,-74.44885106,39.48929628,120 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1132_19,-74.53041366,39.41937647,118 HADDON RD,SOMERS POINT CITY,16,1966,1,GOV1,3004 -0121_1132_2,-74.52448895,39.31863752,103 N AMBLER RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1132_20,-74.64616008,39.4336567,116 HADDON RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1132_21,-74.62734779,39.6035977,114 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1132_22,-74.6423785,39.526329,112 HADDON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1132_23,-74.44342111,39.35442898,110 HADDON RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1132_24,-74.8642745,39.48723619,108 HADDON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1132_25,-74.73455373,39.43990981,106 HADDON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1132_26,-74.50205197,39.32884466,104 HADDON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1132_27,-74.5157145,39.4044875,102 HADDON RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1132_3,-74.73785991,39.46263312,105 N AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1132_4,-74.575765,39.5437755,107 N AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1132_5,-74.48987916,39.33681151,109 N AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1132_6,-74.68691687,39.5182408,111 N AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1132_7,-74.65139943,39.62616224,113 N AMBLER RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1132_8,-74.55604158,39.46786168,115 N AMBLER RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1132_9,-74.480195,39.439284,117 N AMBLER RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1133_1,-74.4435915,39.515153,1419 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1960,1,GOV1,3004 -0121_1133_10,-74.71102863,39.47485726,1401 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1133_11,-74.4640755,39.35855967,2 STANFORD RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1133_12,-74.63797334,39.53343298,4 STANFORD RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1133_13,-74.70505067,39.5709625,6 STANFORD RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1133_14,-74.687145,39.636618,8 STANFORD RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1133_15,-74.53655548,39.45478576,10 STANFORD RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1133_16,-74.56926753,39.47793634,12 STANFORD RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1133_17,-74.5010075,39.441491,14 STANFORD RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1133_18,-74.492037,39.4726355,16 STANFORD RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1133_19,-74.5200817,39.46032077,18 STANFORD RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1133_2,-74.50660877,39.44489626,1417 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1133_20,-74.461828,39.499332,20 STANFORD RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1133_3,-74.4694721,39.44360934,1415 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1133_4,-74.5520315,39.4663565,1413 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1133_5,-74.7907655,39.5331935,1411 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1133_6,-74.6073495,39.5930905,1409 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1133_7,-74.63592,39.531948,1407 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1133_8,-74.46197586,39.35675098,1405 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1133_9,-74.58673317,39.52990452,1403 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1134_1,-74.56854782,39.35021546,19 STANFORD RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1134_10,-74.80893913,39.55265598,1 STANFORD RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1134_11,-74.469409,39.443029,2 DARTMOUTH RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1134_12,-74.46673729,39.48073439,4 DARTMOUTH RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1134_13,-74.50735654,39.48196883,6 DARTMOUTH RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1134_14,-74.5186065,39.45822416,8 DARTMOUTH RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1134_15,-74.4517265,39.4925435,10 DARTMOUTH RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1134_16,-74.586843,39.3167275,12 DARTMOUTH RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1134_17,-74.59327756,39.32827684,14 DARTMOUTH RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1134_18,-74.60412106,39.3277232,16 DARTMOUTH RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1134_19,-74.564663,39.367218,18 DARTMOUTH RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1134_2,-74.5912615,39.333979,17 STANFORD RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1134_20,-74.57614532,39.36722602,20 DARTMOUTH RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1134_3,-74.589163,39.317038,15 STANFORD RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1134_4,-74.47582066,39.48612697,13 STANFORD RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1134_5,-74.50525068,39.45714754,11 STANFORD RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1134_6,-74.4850995,39.495707,9 STANFORD RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1134_7,-74.4961705,39.452786,7 STANFORD RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1134_8,-74.50369088,39.4287742,5 STANFORD RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1134_9,-74.549524,39.4680085,3 STANFORD RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1135_1,-74.53447247,39.37772234,17 DARTMOUTH RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1135_10,-74.5093005,39.473175,2 RUTGERS RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1135_11,-74.59655168,39.31759082,4 RUTGERS RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1135_12,-74.61169354,39.31897034,6 RUTGERS RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1135_13,-74.56213806,39.36113861,8 RUTGERS RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1135_14,-74.60629518,39.34902646,10 RUTGERS RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1135_15,-74.65643082,39.34785898,12 RUTGERS RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1135_16,-74.82406386,39.36712573,14 RUTGERS RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1135_17,-74.56145208,39.37117834,16 RUTGERS RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1135_18,-74.58906,39.3778635,18 RUTGERS RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1135_2,-74.6688155,39.3556615,15 DARTMOUTH RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1135_3,-74.59248162,39.36620776,13 DARTMOUTH RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1135_4,-74.56715317,39.363116,11 DARTMOUTH RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1135_5,-74.5664057,39.35015935,9 DARTMOUTH RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1135_6,-74.58754742,39.32801372,7 DARTMOUTH RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1135_7,-74.59409887,39.31551382,5 DARTMOUTH RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1135_8,-74.44905837,39.49401091,3 DARTMOUTH RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1135_9,-74.50765,39.4552865,1 DARTMOUTH RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1136_1,-74.5727185,39.4280305,17 RUTGERS RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1136_10,-74.60999094,39.34280872,1022 W GROVELAND AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1136_11,-74.63356495,39.3599927,1024 W GROVELAND AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1136_12,-74.53585016,39.37279297,1026 W GROVELAND AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1136_13,-74.56449139,39.37210707,1028 W GROVELAND AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1136_14,-74.61189658,39.3745586,1030 W GROVELAND AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1136_15,-74.5542935,39.407252,1032 W GROVELAND AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1136_16,-74.5709885,39.419594,1034 W GROVELAND AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1136_17,-74.57568351,39.42909984,1036 W GROVELAND AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1136_18,-74.6157037,39.43169333,1038 W GROVELAND AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1136_2,-74.5637325,39.4142795,15 RUTGERS RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1136_3,-74.6078015,39.3936655,13 RUTGERS RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1136_4,-74.53216631,39.38717347,11 RUTGERS RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1136_5,-74.5368155,39.379637,9 RUTGERS RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1136_6,-74.6850122,39.35549941,7 RUTGERS RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1136_7,-74.60013142,39.35929031,5 RUTGERS RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1136_8,-74.56564407,39.36120397,3 RUTGERS RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1136_9,-74.55639833,39.35886342,1 RUTGERS RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1137_1,-74.54799223,39.37499946,174 EXTON RD,SOMERS POINT CITY,16,1978,1,GOV1,3004 -0121_1137_10,-74.5999587,39.36788239,27 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_11,-74.5694101,39.37427132,29 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1137_12,-74.5626345,39.416022,31 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1137_13,-74.57215558,39.42954979,33 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1137_14,-74.581489,39.4141285,35 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1137_15,-74.58820615,39.40868047,37 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_16,-74.563973,39.4120685,39 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1137_17,-74.59681522,39.3794848,41 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_18,-74.547566,39.3815445,43 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1137_19,-74.76842548,39.31538482,45 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1137_2,-74.63237161,39.31604192,172 EXTON RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_20,-74.59196748,39.35459603,47 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_21,-74.55693059,39.36152777,49 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_22,-74.61094101,39.32338784,51 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_23,-74.5939165,39.3122075,53 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_24,-74.45615561,39.48018696,55 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_3,-74.59492234,39.34194244,170 EXTON RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_4,-74.6009405,39.3279745,168 EXTON RD,SOMERS POINT CITY,16,1977,1,RES3A,3001 -0121_1137_5,-74.5882035,39.3204115,166 EXTON RD,SOMERS POINT CITY,16,1977,1,RES3A,3001 -0121_1137_6,-74.464983,39.4944625,164 EXTON RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1137_7,-74.58479037,39.32323577,21 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,IND1,3004 -0121_1137_8,-74.59824084,39.32973097,23 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,GOV1,3004 -0121_1137_9,-74.56960923,39.36368676,25 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,REL1,3004 -0121_1138_1,-74.49055616,39.49556371,18 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1138_10,-74.55506773,39.36175355,36 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1138_11,-74.60507533,39.32308196,38 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1138_2,-74.5879745,39.327489,20 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES3A,3002 -0121_1138_3,-74.57230974,39.35413363,22 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1138_4,-74.61529737,39.34882868,24 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,IND2,3002 -0121_1138_5,-74.6661235,39.3608775,26 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1138_6,-74.5354759,39.39156061,28 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1138_7,-74.540257,39.392453,30 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1138_8,-74.76654034,39.31197547,32 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1138_9,-74.58775863,39.35729273,34 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,GOV1,3004 -0121_114_1,-74.48641519,39.43623271,1 & 3 E OCEAN AVE,SOMERS POINT CITY,45,2005,2,RES1,3001 -0121_115_1,-74.45902531,39.49395246,35 SHORE RD,SOMERS POINT CITY,,1966,1,RES1,3001 -0121_115_2,-74.60182341,39.3160193,206 COLUMBUS PLACE,SOMERS POINT CITY,17,1950,1,RES1,3001 -0121_115_3,-74.6095,39.321626,204 COLUMBUS PLACE,SOMERS POINT CITY,16,1999,1,GOV1,3004 -0121_115_4,-74.57742829,39.34335079,202 COLUMBUS PLACE,SOMERS POINT CITY,16,1998,1,RES1,3001 -0121_115_5,-74.54975212,39.36759999,19 SHORE RD,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_115_6,-74.58036925,39.33109913,25 SHORE RD,SOMERS POINT CITY,16,1870,1,RES1,3001 -0121_115_7,-74.5373905,39.3130645,29 SHORE RD,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_116_1,-74.59024619,39.35091104,206 BLISS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_116_2,-74.64104133,39.33878799,204 BLISS AVE,SOMERS POINT CITY,16,1974,1,GOV1,3004 -0121_116_3,-74.54716694,39.3712817,202 BLISS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_116_4,-74.6318016,39.36176685,203 COLUMBUS PLACE,SOMERS POINT CITY,16,1998,1,RES1,3001 -0121_116_7,-74.58164411,39.33045925,25 W OCEAN AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_116_8,-74.61052052,39.32017183,33 W OCEAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_116_9,-74.5651465,39.3583995,35 W OCEAN AVE,SOMERS POINT CITY,16,1935,1,RES1,3001 -0121_117_1,-74.63451714,39.35946536,206 PHILADELPHIA AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_117_2,-74.5403395,39.381826,204 PHILADELPHIA AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_117_3,-74.560312,39.3977485,202 PHILADELPHIA AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_117_4,-74.564063,39.417161,200 PHILADELPHIA AVE,SOMERS POINT CITY,16,1986,1,RES1,3001 -0121_117_5,-74.5914745,39.3777845,203 BLISS AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_117_6,-74.54314944,39.38216867,205 BLISS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_117_7,-74.652893,39.35156,207 BLISS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_117_8,-74.607072,39.3500305,209 BLISS AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_118_1,-74.7478187,39.6026604,104 EUCLID AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_118_2,-74.61153374,39.40272405,106 EUCLID AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_118_3,-74.564318,39.417801,103 W OCEAN AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_118_4,-74.5697705,39.4144645,105 W OCEAN AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_119.01_1,-74.78110881,39.50238608,218 W OCEAN HEIGHTS AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_119.01_2.02,-74.6321395,39.430067,135 LASHLEY AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_119.01_3,-74.546903,39.4673385,214 W OCEAN HEIGHTS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_119_1,-74.64882663,39.37725392,202 BUFFALO AVE,SOMERS POINT CITY,16,1991,1,RES1,3001 -0121_119_2,-74.82045284,39.62054683,103 EUCLID AVE,SOMERS POINT CITY,16,1993,1,RES1,3001 -0121_119_3,-74.78805699,39.63609217,105 EUCLID AVE,SOMERS POINT CITY,16,1991,1,RES1,3001 -0121_119_4,-74.79856931,39.62185276,204 BUFFALO AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_119_5,-74.76137358,39.61202905,111 W OCEAN AVE,SOMERS POINT CITY,16,1993,1,GOV1,3004 -0121_119_6,-74.5891413,39.42980394,109 EUCLID AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_120.01_4,-74.5556315,39.467038,111 BUFFALO AVE,SOMERS POINT CITY,15,1926,1,GOV1,3004 -0121_120.01_4.01,-74.53884162,39.47131627,200 STEELMAN AVE,SOMERS POINT CITY,16,1997,1,RES3A,3001 -0121_120_1.01,-74.550047,39.4679935,202 STEELMAN AVE,SOMERS POINT CITY,15,1900,1,RES1,3001 -0121_120_1.02,-74.628667,39.421593,204 STEELMAN AVE,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_120_3,-74.63854401,39.40178169,117 W OCEAN AVE,SOMERS POINT CITY,16,1986,1,RES1,3001 -0121_120_4,-74.61765485,39.43002902,115 W OCEAN AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_120_5,-74.61289839,39.42855111,209 BUFFALO AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_120_7,-74.633645,39.3910935,207 BUFFALO AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_120_8,-74.68160932,39.38741355,203 BUFFALO AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_120_9,-74.62724919,39.43355012,201 BUFFALO AVE,SOMERS POINT CITY,16,1990,1,RES3A,3001 -0121_1209_2_C0901,-74.51544319,39.46244221,901 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0902,-74.47511922,39.48610005,902 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0903,-74.461982,39.4732455,903 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0904,-74.446892,39.493396,904 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0905,-74.47442649,39.4802797,905 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0906,-74.44913465,39.49715786,906 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0907,-74.45161749,39.50201564,907 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0908,-74.47123275,39.49179654,908 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0909,-74.45384286,39.48968023,909 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0910,-74.4626359,39.49992752,910 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0911,-74.45266595,39.49648648,911 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES3A,3001 -0121_1209_2_C0912,-74.46819881,39.49050698,912 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0913,-74.46560532,39.49950922,913 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3002 -0121_1209_2_C0914,-74.48629,39.49683217,914 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C0915,-74.48670993,39.49963425,915 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,GOV1,3004 -0121_1209_2_C0916,-74.48896946,39.47903399,916 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1001,-74.52040469,39.47291952,1001 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1002,-74.496264,39.518152,1002 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1003,-74.49693946,39.49886442,1003 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1004,-74.50007404,39.52413119,1004 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1005,-74.49413938,39.53091234,1005 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1006,-74.59263295,39.31619319,1006 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1007,-74.53382307,39.3142717,1007 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1008,-74.617711,39.3137725,1008 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1009,-74.61339837,39.31649415,1009 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1010,-74.58345479,39.3337304,1010 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1011,-74.57550648,39.33408084,1011 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1012,-74.51608211,39.43924641,1012 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1013,-74.51055495,39.43654267,1013 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES3A,3001 -0121_1209_2_C1014,-74.4740317,39.48357259,1014 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1015,-74.4858885,39.47264411,1015 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1016,-74.58320936,39.33978783,1016 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1101,-74.6130935,39.348531,1101 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1102,-74.5935516,39.32949034,1102 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1103,-74.5886315,39.329917,1103 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1104,-74.60293547,39.32848918,1104 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1105,-74.61519771,39.31899766,1105 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1106,-74.59911618,39.35684744,1106 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1107,-74.599956,39.356342,1107 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1108,-74.62811084,39.35154845,1108 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1109,-74.6262673,39.35934745,1109 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1209_2_C1110,-74.65269252,39.35185831,1110 HARBOUR COVE,SOMERS POINT CITY,37,1986,1,RES1,3001 -0121_1211_1_C2401,-74.55239171,39.36771955,401 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2402,-74.57513163,39.34188859,402 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2403,-74.606579,39.317841,403 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2404,-74.60142868,39.31998109,404 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2405,-74.592041,39.3281165,405 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2406,-74.58764422,39.33216504,406 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2407,-74.590311,39.3236145,407 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2408,-74.58644041,39.32549425,408 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2409,-74.46188395,39.4706247,409 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2410,-74.625236,39.351347,410 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2411,-74.63633358,39.30802711,411 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,GOV1,3004 -0121_1211_1_C2412,-74.611476,39.3643795,412 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2413,-74.61702577,39.33961764,413 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2414,-74.59512197,39.34685559,414 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2415,-74.58321083,39.34150631,415 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C2416,-74.6065425,39.3332135,416 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3301,-74.60837115,39.32591189,301 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3002 -0121_1211_1_C3302,-74.82046983,39.637309,302 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3303,-74.8083855,39.633517,303 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3304,-74.79539159,39.63150163,304 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3305,-74.80209884,39.63450752,305 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES3B,3001 -0121_1211_1_C3306,-74.53950183,39.37990444,306 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3307,-74.67290544,39.36536072,307 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3308,-74.66724673,39.35039792,308 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3309,-74.65511473,39.36702669,309 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3310,-74.64978928,39.35137029,310 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3311,-74.630608,39.3627835,311 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3312,-74.63705535,39.36426579,312 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3313,-74.62574745,39.35965578,313 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3314,-74.652649,39.350338,314 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C3315,-74.61723024,39.36530145,315 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES3A,3001 -0121_1211_1_C3316,-74.61601437,39.3653663,316 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C4101,-74.59703483,39.42985194,101 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C4102,-74.6105975,39.425514,102 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES3A,3001 -0121_1211_1_C4103,-74.60179584,39.4154045,103 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C4104,-74.5868117,39.42153729,104 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C4105,-74.5531095,39.4279855,105 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES3A,3001 -0121_1211_1_C4106,-74.5729599,39.42860909,106 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C4107,-74.61088145,39.38377071,107 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C4108,-74.54513,39.404512,108 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C4109,-74.36756699,39.40757483,109 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C4110,-74.59790851,39.37085002,110 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5201,-74.372548,39.403134,201 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5202,-74.3563355,39.415021,202 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5203,-74.36902583,39.40676153,203 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5204,-74.36825883,39.40590455,204 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5205,-74.36285296,39.40992134,205 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5206,-74.37027833,39.40838756,206 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5207,-74.40160884,39.38816501,207 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5208,-74.40509231,39.39379366,208 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5209,-74.427895,39.373222,209 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5210,-74.4356225,39.3683275,210 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES3A,3001 -0121_1211_1_C5211,-74.7097385,39.36604928,211 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3002 -0121_1211_1_C5212,-74.42826665,39.37323168,212 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,REL1,3002 -0121_1211_1_C5213,-74.950235,39.4967745,213 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5214,-74.55065001,39.37056433,214 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5215,-74.81644571,39.63712316,215 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_1_C5216,-74.92969954,39.48088397,216 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_2,-74.5556675,39.475768,520 BAY AVE,SOMERS POINT CITY,17,2008,1,RES1,3002 -0121_1211_3_C1801,-74.52585668,39.46621418,801 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C1802,-74.51170634,39.46526752,802 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C1803,-74.4886815,39.4537835,803 HARBOUR COVE,SOMERS POINT CITY,37,1984,1,RES1,3001 -0121_1211_3_C1804,-74.48801013,39.45515351,804 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C1805,-74.46263341,39.47325658,805 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C1806,-74.459513,39.478186,806 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES3A,3001 -0121_1211_3_C1807,-74.60535209,39.33342017,807 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,COM1,3004 -0121_1211_3_C1808,-74.60840784,39.31921601,808 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,COM3,3004 -0121_1211_3_C1809,-74.59752667,39.318278,809 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES3A,3001 -0121_1211_3_C1810,-74.6011995,39.31842,810 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES3A,3001 -0121_1211_3_C1811,-74.58146267,39.33042358,811 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C1812,-74.58480154,39.33160682,812 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES3A,3001 -0121_1211_3_C1813,-74.52553576,39.46395599,813 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES3A,3001 -0121_1211_3_C1814,-74.527382,39.4650175,814 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES3A,3001 -0121_1211_3_C1815,-74.51338116,39.44047298,815 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C1816,-74.5169035,39.444124,816 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6501,-74.8604865,39.6091695,501 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6502,-74.905933,39.496209,502 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6503,-74.92193015,39.48154576,503 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6504,-74.92998361,39.48244963,504 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6505,-74.9032985,39.5042665,505 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6506,-74.76255934,39.30746508,506 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6507,-74.75881416,39.30482953,507 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6508,-74.531916,39.376575,508 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6509,-74.80124866,39.36481395,509 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C6510,-74.55137165,39.37193132,510 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES3B,3001 -0121_1211_3_C6511,-74.54146248,39.37384537,511 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,GOV1,3004 -0121_1211_3_C6512,-74.55226152,39.37129479,512 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C7601,-74.54588653,39.36899641,601 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C7602,-74.5332505,39.3812995,602 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C7603,-74.5323925,39.3846315,603 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C7604,-74.544916,39.385199,604 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C7605,-74.53318107,39.37737934,605 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C7606,-74.55461092,39.36886486,606 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C7607,-74.55957291,39.36992167,607 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C7608,-74.43098823,39.37226765,608 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8701,-74.5492975,39.3617385,701 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8702,-74.61285306,39.32324474,702 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,COM1,3004 -0121_1211_3_C8703,-74.6110355,39.319228,703 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8704,-74.588281,39.330507,704 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8705,-74.5926465,39.330056,705 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8706,-74.603312,39.34971,706 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8707,-74.6158732,39.33907434,707 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8708,-74.57944,39.3396435,708 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8709,-74.58448156,39.33858642,709 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8710,-74.45650141,39.48047266,710 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8711,-74.59106143,39.33022539,711 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8712,-74.52059442,39.44935188,712 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8713,-74.48970135,39.45891146,713 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1211_3_C8714,-74.57716889,39.33229919,714 HARBOUR COVE,SOMERS POINT CITY,37,1985,1,RES1,3001 -0121_1213_1,-74.913841,39.4814385,538 SUNNY AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1213_2,-74.84827506,39.4828592,112 PLEASANT AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1213_3,-74.7148585,39.408716,537 SUNRISE AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1213_4.01,-74.7278405,39.4592455,118 PLEASANT AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1214_1.01,-74.6380626,39.44527781,580 SHORE RD,SOMERS POINT CITY,17,1886,1,RES1,3001 -0121_1214_10,-74.77439533,39.61618595,538 SHORE RD,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1214_11,-74.7937885,39.633461,532 SHORE RD,SOMERS POINT CITY,16,1915,1,RES1,3001 -0121_1214_12,-74.74033679,39.63979848,528 SHORE RD,SOMERS POINT CITY,16,1920,3,RES1,3001 -0121_1214_16,-74.83018687,39.52901015,536 SUNSET AVE,SOMERS POINT CITY,15,1954,2,RES1,3001 -0121_1214_17.01,-74.63964448,39.53162004,531 SUNNY AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_1214_17.02,-74.647032,39.5306175,533 SUNNY AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_1214_18,-74.7232225,39.452541,547 SUNNY AVE,SOMERS POINT CITY,16,1954,1,RES3A,3001 -0121_1214_19,-74.7078525,39.4336015,549 SUNNY AVE,SOMERS POINT CITY,16,1956,1,RES1,3004 -0121_1214_2,-74.69289004,39.48248184,570 SHORE RD,SOMERS POINT CITY,16,1920,1,RES3B,3001 -0121_1214_20.01,-74.60206821,39.48105196,563 SUNNY AVE,SOMERS POINT CITY,16,1954,1,RES1,3004 -0121_1214_20.02,-74.667789,39.462879,561 SUNNY AVE,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1214_21,-74.86688096,39.56115634,571 SUNNY AVE,SOMERS POINT CITY,16,1956,1,RES3A,3001 -0121_1214_22,-74.9478495,39.515949,33 HARBOR LN,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1214_23,-74.94591732,39.5253299,31 HARBOR LN,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1214_3,-74.78920662,39.41989428,564 SHORE RD,SOMERS POINT CITY,16,1941,1,RES1,3001 -0121_1214_4,-74.80137565,39.63734046,562 SHORE RD,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1214_5,-74.83197682,39.48097541,560 SHORE RD,SOMERS POINT CITY,,1980,1,RES3A,3001 -0121_1214_7,-74.6027865,39.509329,552 SHORE RD,SOMERS POINT CITY,,1930,1,RES1,3001 -0121_1214_8,-74.66078423,39.51664824,548 SHORE RD,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1214_9,-74.67397056,39.61493964,542 SHORE RD,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_1216_1,-74.841409,39.6027175,219 RHODE ISLAND AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1216_3,-74.74930931,39.63670869,211 RHODE ISLAND AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1216_4,-74.84458376,39.54259451,201 RHODE ISLAND AVE,SOMERS POINT CITY,15,1900,1,RES1,3001 -0121_1216_5,-74.37350919,39.41244755,FIRST ST,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1216_6,-74.69849378,39.51295437,582 SECOND ST,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1218.01_1,-74.3743933,39.41168759,594 MARKS RD,SOMERS POINT CITY,15,1946,1,COM4,3004 -0121_1218_1,-74.50200408,39.32620523,323 RHODE ISLAND AVE,SOMERS POINT CITY,15,1930,1,AGR1,3001 -0121_1218_2,-74.43460819,39.36352351,317 RHODE ISLAND AVE,SOMERS POINT CITY,15,1910,1,RES1,3001 -0121_1218_3,-74.82690216,39.64046384,315 RHODE ISLAND AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1218_4,-74.80087845,39.64213334,303 RHODE ISLAND AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1218_5,-74.79324536,39.64203496,301 RHODE ISLAND AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1218_6,-74.638086,39.444827,586 MARKS RD,SOMERS POINT CITY,,1966,1,RES1,3001 -0121_1218_7,-74.46048256,39.35267384,575 THIRD ST,SOMERS POINT CITY,,1940,1,RES1,3001 -0121_1219_1.01,-74.75116735,39.42187304,415 RHODE ISLAND AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1219_1.02,-74.45012266,39.35402151,520 FIFTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1219_10.01,-74.5243705,39.3854145,514 FIFTH ST,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_1219_10.02,-74.36266315,39.41118509,411 TUDOR TERRACE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1219_12.01,-74.37694104,39.3993512,518 FIFTH ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1219_12.02,-74.36603981,39.41060727,516 FIFTH ST,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1219_3,-74.48463367,39.33646644,413 RHODE ISLAND AVE,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_1219_4,-74.75802195,39.43234753,411 RHODE ISLAND AVE,SOMERS POINT CITY,16,1924,1,RES1,3001 -0121_1219_5,-74.6659767,39.45695498,407 RHODE ISLAND AVE,SOMERS POINT CITY,15,1924,1,RES1,3001 -0121_1219_6,-74.5120777,39.32770383,401 RHODE ISLAND AVE,SOMERS POINT CITY,15,1930,1,COM3,3004 -0121_1219_8,-74.50688259,39.33981816,517 FOURTH ST,SOMERS POINT CITY,16,1989,1,RES1,3001 -0121_1220_1,-74.375633,39.4166965,523 RHODE ISLAND AVE,SOMERS POINT CITY,16,1916,1,RES1,3001 -0121_1220_10,-74.486512,39.43896211,523 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1220_11,-74.5295515,39.452907,510 SIXTH ST,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1220_12,-74.71428709,39.41737108,512 SIXTH ST,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1220_13,-74.51502784,39.41103691,514 SIXTH ST,SOMERS POINT CITY,16,1921,1,RES1,3001 -0121_1220_2,-74.37126033,39.404238,524 SIXTH ST,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1220_3,-74.4421705,39.3703635,519 RHODE ISLAND AVE,SOMERS POINT CITY,16,1941,1,RES1,3001 -0121_1220_4,-74.359767,39.4109095,515 RHODE ISLAND AVE,SOMERS POINT CITY,15,1920,1,GOV1,3004 -0121_1220_5,-74.433485,39.368818,511 RHODE ISLAND AVE,SOMERS POINT CITY,16,1921,1,RES1,3001 -0121_1220_6,-74.39880843,39.38815969,505 RHODE ISLAND AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1220_8,-74.3673345,39.420416,517 FIFTH ST,SOMERS POINT CITY,16,1952,1,COM1,3004 -0121_1220_9.02,-74.7817935,39.420207,513 FIFTH ST,SOMERS POINT CITY,16,1978,1,GOV1,3004 -0121_1221_1.01,-74.525225,39.397477,615 RHODE ISLAND AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1221_1.02,-74.5114175,39.385498,611 RHODE ISLAND AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1221_1.03,-74.50192565,39.42717983,619 RHODE ISLAND AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1221_1.04,-74.7604405,39.429886,516 SEVENTH ST,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1221_1.05,-74.51202655,39.45552934,514 SEVENTH ST,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1221_1.06,-74.50252088,39.41463778,521 SIXTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1221_10.01,-74.5204895,39.4687415,616 JESSE'S ALLEY,SOMERS POINT CITY,15,1945,1,REL1,3004 -0121_1221_10.02,-74.59425134,39.31328645,616A MASSACHUSETTS AVE,SOMERS POINT CITY,15,1945,1,RES1,3001 -0121_1221_11.01,-74.524513,39.4723825,508 SEVENTH ST,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1221_11.02,-74.60208853,39.31998119,500 SEVENTH ST,SOMERS POINT CITY,16,1986,1,RES1,3001 -0121_1221_3,-74.37303753,39.41530905,603 RHODE ISLAND AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1221_5,-74.4385395,39.4880215,519 SIXTH ST,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1221_6,-74.83355683,39.413526,515 SIXTH ST,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1221_7.01,-74.50295469,39.45939585,513 SIXTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1221_7.02,-74.46742507,39.49227674,511 SIXTH ST,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1221_8,-74.48693522,39.51954495,610 MASSACHUSETTS AVE,SOMERS POINT CITY,15,1938,1,RES1,3001 -0121_1222_1,-74.495358,39.4719665,518 NEW RD,SOMERS POINT CITY,,1970,1,RES1,3001 -0121_1222_2,-74.76037621,39.43015353,715 RHODE ISLAND AVE,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_1222_3,-74.74249066,39.40564644,527 SEVENTH ST,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1222_4,-74.50493,39.449654,519 SEVENTH ST,SOMERS POINT CITY,16,1977,1,GOV1,3004 -0121_1222_5.01,-74.4592505,39.485585,517 SEVENTH ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1222_5.02,-74.5080955,39.5307965,515 SEVENTH ST,SOMERS POINT CITY,16,1972,1,COM1,3004 -0121_1222_6.03,-74.608766,39.3218,513 SEVENTH ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1222_6.04,-74.574097,39.343735,511 SEVENTH ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1222_8,-74.52414681,39.39328847,514 NEW RD,SOMERS POINT CITY,,1972,1,RES1,3001 -0121_1223_1.01,-74.61406584,39.32075947,526 NINTH ST,SOMERS POINT CITY,16,1989,1,RES1,3001 -0121_1223_1.02,-74.5137235,39.400261,518 NINTH ST,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_1223_3,-74.58544364,39.33210219,521 NEW RD,SOMERS POINT CITY,,1962,1,RES1,3001 -0121_1223_4,-74.58075807,39.343552,575 NEW RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1223_7.01,-74.7301705,39.4580035,806 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1989,1,RES1,3001 -0121_1223_9.01,-74.60196039,39.36707676,514 NINTH ST,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1223_9.02,-74.554629,39.3786195,512 NINTH ST,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1223_9.03,-74.801132,39.659031,812 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1225_1,-74.569278,39.4128665,172 BALA DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1225_10,-74.7938605,39.5371155,190 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1225_11,-74.86754435,39.59821779,2 YALE BLVD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1225_12,-74.924998,39.49959986,4 YALE BLVD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1225_13,-74.51196681,39.38503101,6 YALE BLVD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1225_14,-74.50261732,39.32572102,8 YALE BLVD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1225_15,-74.48190216,39.34165001,10 YALE BLVD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1225_16,-74.51527831,39.43425446,12 YALE BLVD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1225_17,-74.557669,39.375301,14 YALE BLVD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1225_18,-74.59463607,39.37870283,16 YALE BLVD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1225_19,-74.57297798,39.42751712,18 YALE BLVD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1225_2,-74.581512,39.369236,174 BALA DR,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1225_20,-74.6311685,39.387231,20 YALE BLVD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1225_3,-74.53326339,39.37990613,176 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1225_4,-74.51153876,39.41722622,178 BALA DR,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1225_5,-74.49993915,39.33119964,180 BALA DR,SOMERS POINT CITY,16,1955,1,RES3A,3001 -0121_1225_6,-74.48300393,39.43358239,182 BALA DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1225_7,-74.95504,39.511335,184 BALA DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1225_8,-74.8198095,39.634435,186 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1225_9,-74.75674823,39.60999644,188 BALA DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1226_1,-74.6839545,39.498662,19 YALE BLVD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_10,-74.5031145,39.4134815,1 YALE BLVD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1226_11,-74.4852445,39.3359,2 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_12,-74.46204083,39.46329339,4 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_13,-74.57248267,39.37216053,6 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_14,-74.60234463,39.37109413,8 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_15,-74.57296663,39.42657432,10 COLGATE RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1226_16,-74.61514206,39.42896883,12 COLGATE RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1226_17,-74.63902481,39.43607639,14 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_18,-74.60099943,39.47520717,16 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_19,-74.7566545,39.4318035,18 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_2,-74.60614662,39.43761572,17 YALE BLVD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1226_20,-74.49037336,39.42967408,20 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_3,-74.63890745,39.41054219,15 YALE BLVD,SOMERS POINT CITY,16,1971,1,GOV1,3004 -0121_1226_4,-74.61241954,39.41419333,13 YALE BLVD,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_1226_5,-74.60732413,39.39571389,11 YALE BLVD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_6,-74.53983581,39.39184398,9 YALE BLVD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_7,-74.540039,39.3844605,7 YALE BLVD,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_1226_8,-74.51708447,39.41081568,5 YALE BLVD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1226_9,-74.4609055,39.3512075,3 YALE BLVD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1227_1,-74.87078735,39.44107743,19 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_10,-74.58256728,39.37881677,1 COLGATE RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1227_11,-74.60004417,39.41702851,2 CORNELL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1227_12,-74.63400996,39.39100295,4 CORNELL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1227_13,-74.66825127,39.4159426,6 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_14,-74.61229584,39.50038766,8 CORNELL RD,SOMERS POINT CITY,16,1970,1,AGR1,3001 -0121_1227_15,-74.76004096,39.43008479,10 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3004 -0121_1227_16,-74.49109727,39.43044717,12 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_17,-74.50977935,39.33211225,14 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES3A,3001 -0121_1227_18,-74.713852,39.4652665,16 CORNELL RD,SOMERS POINT CITY,16,1971,1,AGR1,3001 -0121_1227_19,-74.5740379,39.5345865,18 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_2,-74.82746517,39.41145949,17 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES3B,3001 -0121_1227_20,-74.462525,39.354488,20 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_3,-74.4998,39.330406,15 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_4,-74.50385281,39.4130048,13 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_5,-74.6694689,39.46330669,11 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_6,-74.537228,39.4722825,9 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_7,-74.63213607,39.41651103,7 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_8,-74.5917515,39.4306625,5 COLGATE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1227_9,-74.5650975,39.418094,3 COLGATE RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1228_1,-74.62917535,39.61910204,21 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1228_10,-74.7549365,39.453535,1402 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1228_11,-74.55557752,39.54089011,1410 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1228_12,-74.46423572,39.35486399,1412 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1228_13,-74.64921316,39.52929197,1414 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_1228_14,-74.658533,39.5768025,1416 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1228_15,-74.82415888,39.56703612,1418 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_1228_16,-74.55422663,39.47682828,153 EXTON RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1228_2,-74.69547393,39.5062187,19 CORNELL RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1228_3,-74.49498034,39.33534856,17 CORNELL RD,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_1228_4,-74.4847745,39.347257,15 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1228_5,-74.81800408,39.47177696,13 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1228_6,-74.7224415,39.45073,11 CORNELL RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1228_7,-74.502505,39.3292795,1 CORNELL RD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1229_1.02,-74.65023117,39.5328555,180 EXTON RD,SOMERS POINT CITY,,1971,1,RES1,3001 -0121_1230.01_1,-74.46998,39.4902935,162 EXTON RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1230.01_10,-74.80726659,39.5251795,11 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_11,-74.49037867,39.33516649,152 EXTON RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_12,-74.6295555,39.555256,9 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_13,-74.63952804,39.52666334,150 EXTON RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1230.01_14,-74.49399911,39.33498717,7 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_15,-74.7125005,39.470945,148 EXTON RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_16,-74.4830141,39.34840347,5 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_17,-74.84836889,39.37580158,146 EXTON RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_18,-74.73309178,39.4727829,3 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_19,-74.49404927,39.43534355,144 EXTON RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_2,-74.52339649,39.46035217,19 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_20,-74.81040706,39.46704121,1 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,GOV1,3004 -0121_1230.01_21,-74.63269166,39.51177866,69 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_3,-74.48312017,39.43841491,160 EXTON RD,SOMERS POINT CITY,16,1979,1,GOV1,3004 -0121_1230.01_4,-74.47537205,39.49268118,17 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_5,-74.5822358,39.44151352,158 EXTON RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_6,-74.48129276,39.44891574,15 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_7,-74.77813383,39.51401245,156 EXTON RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1230.01_8,-74.53570625,39.47303093,13 BUCKNELL RD,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_1230.01_9,-74.632515,39.542892,154 EXTON RD,SOMERS POINT CITY,16,1979,1,GOV1,3004 -0121_1231.01_1,-74.4876333,39.53148384,16 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,IND1,3002 -0121_1231.01_10,-74.532866,39.4506185,48 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1231.01_11,-74.65152784,39.52193502,6 BUCKNELL RD,SOMERS POINT CITY,16,1980,1,GOV1,3004 -0121_1231.01_12,-74.7007038,39.57305198,50 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1231.01_2,-74.47336687,39.48416791,40 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1231.01_3,-74.47789884,39.47888968,14 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1231.01_4,-74.50093144,39.46066634,42 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1231.01_5,-74.5019355,39.4338045,12 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1231.01_6,-74.4633825,39.4946685,44 BUCKNELL RD,SOMERS POINT CITY,16,1978,1,COM1,3004 -0121_1231.01_7,-74.646581,39.43448,10 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1231.01_8,-74.47017018,39.44326655,46 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1231.01_9,-74.6654565,39.5830835,8 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1232_1,-74.52301452,39.52447436,57 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,GOV1,3004 -0121_1232_2,-74.45120054,39.49146149,59 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES3A,3001 -0121_1232_3,-74.47486644,39.44445695,61 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1232_4,-74.6925575,39.419784,63 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1232_5,-74.64302296,39.52740666,65 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1232_6,-74.49570889,39.34181185,67 BUCKNELL RD,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1313_1,-74.6849025,39.4131405,624 SHORE RD,SOMERS POINT CITY,,1956,1,RES1,3001 -0121_1313_10,-74.94036191,39.5191354,32 HARBOR LN,SOMERS POINT CITY,16,1935,1,GOV1,3004 -0121_1313_11,-74.53891628,39.46708193,26 HARBOR LN,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1313_12,-74.7553885,39.4527395,22 HARBOR LN,SOMERS POINT CITY,15,1945,1,RES1,3001 -0121_1313_2,-74.55822739,39.45948083,620 SHORE RD,SOMERS POINT CITY,,1930,1,GOV1,3004 -0121_1313_3,-74.5383125,39.4585205,17 E CONNECTICUT,SOMERS POINT CITY,43,1940,2,RES1,3001 -0121_1313_4,-74.56014779,39.44249484,15 E CONNECTICUT AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1313_5,-74.631687,39.4206235,27 E CONNECTICUT AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1313_6,-74.630012,39.411403,37 E CONNECTICUT AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1313_8.02,-74.641737,39.3870365,613 SUNNY AVE,SOMERS POINT CITY,16,1926,1,RES3A,3001 -0121_1313_9,-74.6319962,39.42943566,601 SUNNY AVE,SOMERS POINT CITY,16,1935,1,RES1,3001 -0121_1314_1,-74.894271,39.526657,9 W CONNECTICUT AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1314_2,-74.73844479,39.46742104,629 SHORE RD,SOMERS POINT CITY,16,1930,2,RES1,3001 -0121_1314_3,-74.93721734,39.522582,623 SHORE RD,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1314_4,-74.82235915,39.41472567,617 SHORE RD,SOMERS POINT CITY,,1958,1,RES1,3001 -0121_1314_5,-74.56835635,39.47679498,615 SHORE RD,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1314_6,-74.59344634,39.49285498,611 SHORE RD,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_1314_7,-74.605539,39.502052,605 SHORE RD,SOMERS POINT CITY,15,1896,1,RES1,3001 -0121_1314_8,-74.69201984,39.49239846,601 SHORE RD,SOMERS POINT CITY,17,1920,1,RES1,3001 -0121_1315_1,-74.949206,39.5130395,15 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1315_2,-74.53551477,39.49737599,615 CENTRE ST,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1315_3,-74.638422,39.4604395,611 CENTRE ST,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1315_4,-74.71897837,39.39097535,602 CENTRE ST,SOMERS POINT CITY,16,1945,1,RES1,3001 -0121_1315_5,-74.81958583,39.61500549,600 CENTRE ST,SOMERS POINT CITY,16,1960,1,GOV1,3004 -0121_1316_1,-74.64088737,39.46688437,121 W CONNECTICUT AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1316_10,-74.7524255,39.45198,601 FIRST ST,SOMERS POINT CITY,16,1920,1,GOV1,3004 -0121_1316_11,-74.9061115,39.4800695,605 FIRST ST,SOMERS POINT CITY,15,1900,1,RES1,3001 -0121_1316_12,-74.81543014,39.37751642,611 FIRST ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1316_13,-74.682427,39.495557,615 FIRST ST,SOMERS POINT CITY,16,1940,1,GOV1,3004 -0121_1316_14,-74.54397191,39.50383014,623 FIRST ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1316_15,-74.55854,39.475187,101 W CONNECTICUT AVE,SOMERS POINT CITY,16,1934,1,RES1,3001 -0121_1316_2,-74.668132,39.4558095,620 SECOND ST,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1316_3,-74.667234,39.4932785,618 SECOND ST,SOMERS POINT CITY,16,1924,1,RES1,3001 -0121_1316_4,-74.73946903,39.38829267,616 SECOND ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1316_5,-74.801541,39.6384735,614 SECOND ST,SOMERS POINT CITY,15,1923,1,RES1,3001 -0121_1316_6,-74.72522,39.461193,610 SECOND ST,SOMERS POINT CITY,16,1930,1,GOV1,3004 -0121_1316_7,-74.86848932,39.46058026,606 SECOND ST,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1316_8,-74.861191,39.479023,600 SECOND ST,SOMERS POINT CITY,15,1940,1,RES1,3001 -0121_1316_9,-74.83027004,39.48390337,118 RHODE ISLAND AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1317_1,-74.879534,39.4750345,223 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,GOV1,3004 -0121_1317_11,-74.847997,39.535469,222 RHODE ISLAND AVE,SOMERS POINT CITY,16,1950,1,GOV1,3004 -0121_1317_13,-74.53388485,39.54716754,616 THIRD ST,SOMERS POINT CITY,16,1937,1,RES1,3001 -0121_1317_2,-74.7301239,39.45644578,219 W CONNECTICUT AVE,SOMERS POINT CITY,16,1946,1,GOV1,3004 -0121_1317_3,-74.8505625,39.437251,215 W CONNECTICUT AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1317_4,-74.72792788,39.45705476,207 W CONNECTICUT AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1317_5,-74.80643659,39.37590383,201 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1317_6,-74.8711735,39.4425565,617 SECOND ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1317_7,-74.59735375,39.52081266,605 SECOND ST,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1317_8,-74.6322035,39.525606,601 SECOND ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1317_9,-74.70089693,39.569908,212 RHODE ISLAND AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1318_1,-74.602856,39.593652,321 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,GOV1,3004 -0121_1318_10,-74.8785878,39.59183528,322 RHODE ISLAND AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1318_12,-74.79410637,39.59961129,616 FOURTH ST,SOMERS POINT CITY,16,1911,1,GOV1,3004 -0121_1318_2,-74.8814456,39.50763374,317 W CONNECTICUT AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1318_3,-74.69999489,39.51229188,309 W CONNECTICUT AVE,SOMERS POINT CITY,15,1958,1,RES1,3001 -0121_1318_4,-74.63705492,39.52498887,305 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1318_5,-74.64834901,39.62586917,615 THIRD ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1318_6,-74.88222024,39.50566238,613 THIRD ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1318_7,-74.75659978,39.63606952,300 RHODE ISLAND AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_1318_8,-74.78249118,39.57373057,303 GARDEN TERRACE,SOMERS POINT CITY,16,1948,1,GOV1,3004 -0121_1318_9,-74.8688425,39.5918325,310 RHODE ISLAND AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1319_1,-74.72900889,39.64587142,419 W CONNECTICUT AVE,SOMERS POINT CITY,15,1918,1,RES1,3001 -0121_1319_10.01,-74.5230314,39.31675078,600 FIFTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1319_10.02,-74.500452,39.3272125,418 RHODE ISLAND AVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1319_11,-74.8025115,39.6475185,618 FIFTH ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1319_3,-74.79320207,39.63498877,413 W CONNECTICUT AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1319_4,-74.79176314,39.62024828,625 FOURTH ST,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1319_5,-74.8710725,39.604034,623 FOURTH ST,SOMERS POINT CITY,14,1918,1,RES1,3001 -0121_1319_6,-74.72123275,39.64024659,621 FOURTH ST,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1319_7,-74.79738776,39.64175596,619 FOURTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1319_8,-74.82897481,39.64313617,408 RHODE ISLAND AVE,SOMERS POINT CITY,15,1919,1,RES1,3001 -0121_1320_1,-74.42778967,39.367708,503 W CONNECTICUT AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1320_10,-74.47356,39.340871,508 RHODE ISLAND AVE,SOMERS POINT CITY,15,1932,1,RES1,3001 -0121_1320_11,-74.634855,39.4620525,510 RHODE ISLAND AVE,SOMERS POINT CITY,16,1924,1,RES1,3001 -0121_1320_12,-74.68163813,39.48892538,512 RHODE ISLAND AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1320_13,-74.482491,39.3409235,522 RHODE ISLAND AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1320_14,-74.4846645,39.3448895,524 RHODE ISLAND AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1320_15,-74.46839994,39.34248298,612 SIXTH ST,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1320_2.01,-74.50076633,39.3300085,620 SIXTH ST,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_1320_2.02,-74.52276571,39.32305664,618 SIXTH ST,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1320_3,-74.81141302,39.64723003,509 W CONNECTICUT AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1320_4,-74.77416488,39.6620472,515 W CONNECTICUT AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1320_5,-74.800445,39.647424,501 W CONNECTICUT AVE,SOMERS POINT CITY,15,1916,1,RES1,3001 -0121_1320_7,-74.49860267,39.334029,621 FIFTH ST,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1320_8,-74.50794877,39.32982218,619 FIFTH ST,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_1320_9,-74.45984796,39.34982282,617 FIFTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1321_1,-74.48686133,39.33789958,625 W CONNECTICUT AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1321_3,-74.51033441,39.32646534,601 W CONNECTICUT AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1321_4,-74.4729295,39.343234,617 SIXTH ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1321_6,-74.488486,39.3353805,600 RHODE ISLAND AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1321_7.01,-74.41016245,39.38251032,612 RHODE ISLAND AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1321_7.02,-74.37461414,39.39979718,606 RHODE ISLAND AVE,SOMERS POINT CITY,16,1921,1,RES1,3001 -0121_1321_8.01,-74.367348,39.4134645,618 RHODE ISLAND AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1321_9,-74.45826481,39.35440687,612 SEVENTH ST,SOMERS POINT CITY,16,1974,1,GOV1,3004 -0121_1322_1,-74.36062427,39.41058981,624 NEW RD,SOMERS POINT CITY,,1966,1,RES1,3001 -0121_1322_10,-74.48469501,39.43441226,724 RHODE ISLAND AVE,SOMERS POINT CITY,15,1939,1,RES1,3001 -0121_1322_11,-74.4900715,39.435268,600 NEW RD,SOMERS POINT CITY,,1968,1,RES1,3001 -0121_1322_2,-74.50439666,39.33861129,721 W CONNECTICUT AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1322_3,-74.4810125,39.3492,621 SEVENTH ST,SOMERS POINT CITY,16,1985,1,GOV1,3004 -0121_1322_4,-74.49555317,39.33496295,619 SEVENTH ST,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_1322_5,-74.42597182,39.37042102,617 SEVENTH ST,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1322_6,-74.362533,39.4110935,609 SEVENTH ST,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_1322_8,-74.36994862,39.41141877,718 RHODE ISLAND AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1322_9,-74.51999118,39.40201155,720 RHODE ISLAND AVE,SOMERS POINT CITY,15,1958,1,RES1,3001 -0121_1323_2,-74.51171313,39.40110582,819 W CONNECTICUT AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1323_4,-74.52216071,39.38898007,625 NEW RD,SOMERS POINT CITY,,2017,1,RES1,3001 -0121_1323_5,-74.50628049,39.40627484,611 NEW RD,SOMERS POINT CITY,,1966,1,RES1,3001 -0121_1323_6,-74.7560195,39.4325355,603 NEW RD,SOMERS POINT CITY,,1971,1,RES1,3001 -0121_1408_1,-74.879833,39.5905255,680 BAY AVE,SOMERS POINT CITY,,1957,1,RES1,3001 -0121_1408_2.01,-74.49429701,39.49538267,BAY AVE,SOMERS POINT CITY,,1987,1,RES1,3001 -0121_1408_2.03,-74.60037168,39.31876752,600 BAY AVE,SOMERS POINT CITY,,1986,1,RES1,3001 -0121_1408_2.04,-74.405855,39.382614,S E OF BAY AVE-SLIPS,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1410_13.01,-74.58669496,39.4320702,610 SUNNY AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1410_13.02,-74.60798814,39.38058131,618 SUNNY AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1410_14.02,-74.64310627,39.37386024,600 SUNNY AVE,SOMERS POINT CITY,15,1932,1,RES1,3001 -0121_1410_2,-74.59477128,39.42915365,110 HARBOR LN,SOMERS POINT CITY,,1976,1,RES1,3001 -0121_1412_10,-74.624767,39.383623,636 SHORE RD,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1412_11,-74.63038025,39.39012789,634 SHORE RD,SOMERS POINT CITY,,1952,1,RES1,3001 -0121_1412_5.01,-74.40088,39.385718,26 E CONNECTICUT AVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1412_6,-74.59940576,39.38332522,24 E CONNECTICUT AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1412_8,-74.60451202,39.40992203,20 E CONNECTICUT AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1412_9,-74.6181405,39.4328285,18 E CONNECTICUT,SOMERS POINT CITY,16,1948,2,GOV1,3004 -0121_1414_2,-74.66994486,39.38657627,647 SHORE RD,SOMERS POINT CITY,,1956,1,RES1,3001 -0121_1414_3,-74.92454354,39.50928064,637 SHORE RD,SOMERS POINT CITY,,1955,1,GOV1,3004 -0121_1415_4,-74.59811179,39.44333788,10 W CONNECTICUT AVE,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1416_1,-74.64923433,39.41370403,123 W NEW YORK AVE,SOMERS POINT CITY,16,1920,1,GOV1,3004 -0121_1416_10,-74.9379915,39.511545,645 FIRST ST,SOMERS POINT CITY,16,1974,1,COM7,3002 -0121_1416_11,-74.62763335,39.43566233,647 FIRST ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1416_12,-74.93755843,39.52081379,121 W NEW YORK AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1416_13,-74.88668834,39.59786996,118 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,GOV1,3004 -0121_1416_2,-74.53816572,39.46779163,644 SECOND ST,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1416_3,-74.75323166,39.45461482,640 SECOND ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1416_4,-74.9403515,39.516037,638 SECOND ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1416_5,-74.71228,39.645936,632 SECOND ST,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_1416_6,-74.8707815,39.4445545,630 SECOND ST,SOMERS POINT CITY,16,1930,1,GOV1,3004 -0121_1416_7,-74.949532,39.5191735,631 FIRST ST,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1416_8,-74.944036,39.498023,635 FIRST ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1416_9,-74.61748046,39.46075032,639 FIRST ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1417_1,-74.54396235,39.4576153,221 W NEW YORK AVE,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1417_10,-74.61601248,39.48362792,212 W CONNECTICUT AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1417_11,-74.62673014,39.46289914,216 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1417_12,-74.5715345,39.478426,215 FOX TERRACE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1417_13,-74.63101594,39.49148292,218 W CONNECTICUT AVE,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1417_14,-74.60227802,39.49754067,648 THIRD ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1417_15,-74.88146025,39.48380497,650 THIRD ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1417_16,-74.7173515,39.441204,658 COTTAGE TERRACE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1417_17,-74.959926,39.529265,660 THIRD ST,SOMERS POINT CITY,16,1946,1,GOV1,3004 -0121_1417_2,-74.93002355,39.48817207,662 THIRD ST,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1417_3,-74.5555025,39.4658655,217 W NEW YORK AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1417_4,-74.942945,39.5246055,213 W NEW YORK AVE,SOMERS POINT CITY,16,1953,2,RES1,3001 -0121_1417_6,-74.96949896,39.50601529,661 SECOND ST,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1417_7,-74.9248805,39.5054625,651 SECOND ST,SOMERS POINT CITY,16,1995,1,RES1,3001 -0121_1417_7.01,-74.9075415,39.538186,647-649 SECOND ST,SOMERS POINT CITY,43,1930,3,RES1,3001 -0121_1417_8,-74.60423022,39.50063724,200 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1417_9,-74.53300176,39.49780625,208 FOX TERRACE,SOMERS POINT CITY,15,1930,1,GOV1,3004 -0121_1418_11,-74.60263815,39.49901555,653 THIRD ST REAR,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_1418_12,-74.6617985,39.444868,649 THIRD ST,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_1418_13,-74.81370592,39.3837953,645 THIRD ST,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_1418_14,-74.80275317,39.62525151,306 W CONNECTICUT AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1418_15,-74.8569415,39.6194455,310 W CONNECTICUT AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1418_16,-74.72614516,39.45131475,316 W CONNECTICUT AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1418_17,-74.73225299,39.46199473,318 W CONNECTICUT AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1418_19,-74.816103,39.6248385,644 FOURTH ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1418_2,-74.573568,39.494763,321 W NEW YORK AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1418_20,-74.68139633,39.50227732,648 FOURTH ST,SOMERS POINT CITY,16,1920,1,COM4,3004 -0121_1418_21,-74.6332955,39.465994,660 FOURTH ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1418_3,-74.5655985,39.475894,317 W NEW YORK AVE,SOMERS POINT CITY,15,1930,1,GOV1,3004 -0121_1418_6,-74.8711445,39.4566645,311 W NEW YORK AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1418_7,-74.946378,39.5186375,301 W NEW YORK AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1418_8,-74.82525385,39.39478648,655 THIRD ST,SOMERS POINT CITY,16,1942,1,RES1,3001 -0121_1419_1,-74.7546995,39.4326165,415 W NEW YORK AVE,SOMERS POINT CITY,16,1921,3,RES1,3001 -0121_1419_10,-74.74283341,39.40823085,651 FOURTH ST,SOMERS POINT CITY,16,2007,1,RES1,3001 -0121_1419_11,-74.798404,39.6370605,649 FOURTH ST,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1419_12,-74.5979428,39.50516481,400 W CONNECTICUT AVE,SOMERS POINT CITY,16,1991,1,RES1,3001 -0121_1419_14.02,-74.6378355,39.5181795,410 W CONNECTICUT AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1419_15,-74.753856,39.4512545,415 FOX TERRACE,SOMERS POINT CITY,15,1925,3,RES1,3001 -0121_1419_16,-74.64589633,39.5331965,418 W CONNECTICUT AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1419_17.02,-74.64627665,39.60197297,644 FIFTH ST,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1419_18,-74.83124906,39.49366436,648 FIFTH ST,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1419_19,-74.71427319,39.46521991,650 FIFTH ST,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1419_2,-74.8211588,39.63779272,652 FIFTH ST,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1419_3,-74.67130884,39.49900797,413 W NEW YORK AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1419_5,-74.63983409,39.44443931,411 W NEW YORK AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1419_6,-74.60717174,39.48261638,403 W NEW YORK AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1419_7,-74.60141798,39.49909081,401 W NEW YORK AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1419_8,-74.64789215,39.4561428,655 FOURTH ST,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1419_9,-74.62991606,39.48422694,653 FOURTH ST,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1420_1,-74.866722,39.444253,525 W NEW YORK AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1420_10,-74.63989,39.5641255,653 FIFTH ST,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1420_11,-74.82585432,39.5681095,641 FIFTH ST,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1420_12,-74.7266594,39.59102863,508 W CONNECTICUT AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1420_13,-74.78603815,39.62412208,516 W CONNECTICUT AVE,SOMERS POINT CITY,16,1968,1,GOV1,3004 -0121_1420_14,-74.88213878,39.59587424,522 W CONNECTICUT AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1420_15,-74.7251925,39.5874935,644 SIXTH ST,SOMERS POINT CITY,16,1920,1,GOV1,3004 -0121_1420_17,-74.63604313,39.62445869,646 SIXTH ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1420_18,-74.64688817,39.55312055,650 SIXTH ST,SOMERS POINT CITY,15,1926,1,RES1,3001 -0121_1420_19,-74.623065,39.514037,652 SIXTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1420_2,-74.73385894,39.45951575,521 W NEW YORK AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1420_3,-74.861526,39.481071,654 SIXTH ST,SOMERS POINT CITY,16,1920,1,GOV1,3004 -0121_1420_4.01,-74.80482142,39.44231037,519 W NEW YORK AVE,SOMERS POINT CITY,43,1973,2,RES1,3001 -0121_1420_4.02,-74.73470152,39.46117411,505 W NEW YORK AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_1420_7,-74.8289525,39.493221,659 FIFTH ST,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1420_8,-74.61813878,39.52434581,657 FIFTH ST,SOMERS POINT CITY,15,1912,1,RES1,3001 -0121_1420_9,-74.64612619,39.5257573,655 FIFTH ST,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1421_1,-74.6919315,39.5979465,623 W NEW YORK AVE,SOMERS POINT CITY,16,1928,1,GOV1,3004 -0121_1421_11,-74.8070365,39.6401215,616 W CONNECTICUT AVE,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_1421_12,-74.42634299,39.35889211,618 W CONNECTICUT AVE,SOMERS POINT CITY,16,1932,1,RES1,3001 -0121_1421_13,-74.4938659,39.33209083,622 W CONNECTICUT AVE,SOMERS POINT CITY,15,1932,1,RES1,3001 -0121_1421_14,-74.8641525,39.5973205,652 SEVENTH ST,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1421_15,-74.7670235,39.6148165,654 SEVENTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1421_3,-74.64924843,39.5349199,607 W NEW YORK AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1421_4,-74.864714,39.49011,601 W NEW YORK AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1421_5,-74.64702323,39.52881728,651 SIXTH ST,SOMERS POINT CITY,16,1922,1,RES1,3001 -0121_1421_6,-74.76189556,39.6371033,655 SIXTH ST,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1421_7,-74.78756132,39.63671335,645 SIXTH ST,SOMERS POINT CITY,16,1924,1,RES1,3001 -0121_1421_8,-74.76968334,39.65461449,639 SIXTH ST,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1421_9,-74.7907535,39.656333,612 W CONNECTICUT AVE,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1422_1,-74.77585339,39.64179905,668 NEW RD,SOMERS POINT CITY,,1965,1,IND2,3002 -0121_1422_10,-74.51941034,39.317501,706 W CONNECTICUT AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1422_11,-74.67579118,39.49608841,650 NEW RD,SOMERS POINT CITY,,1964,1,RES1,3001 -0121_1422_12,-74.50364283,39.33184701,660 NEW RD,SOMERS POINT CITY,,1959,1,RES1,3001 -0121_1422_3,-74.78848469,39.54929423,701 W NEW YORK AVE,SOMERS POINT CITY,16,1967,1,GOV1,3004 -0121_1422_4,-74.78334434,39.59897797,657 SEVENTH ST,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1422_5,-74.7777855,39.6242715,655 SEVENTH ST,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1422_6,-74.8060825,39.607172,653 SEVENTH ST,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1422_7,-74.76521597,39.66930568,651 SEVENTH ST,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1422_8,-74.8086414,39.63977262,649 SEVENTH ST,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1422_9.02,-74.50702175,39.32786007,700 W CONNECTICUT AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1423_2,-74.81446437,39.65355787,661 NEW RD,SOMERS POINT CITY,,1951,1,RES1,3001 -0121_1423_3,-74.683099,39.444445,657 NEW RD,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1423_7,-74.5058395,39.335149,816 W CONNECTICUT AVE,SOMERS POINT CITY,16,1920,2,RES1,3001 -0121_1423_8.04,-74.3965485,39.3949085,824 W CONNECTICUT AVE,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_1424_1,-74.66777261,39.4552885,923 W NEW YORK AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1424_11,-74.38000343,39.41382119,900 W CONNECTICUT AVE,SOMERS POINT CITY,16,1969,1,COM4,3004 -0121_1424_14,-74.51405359,39.32742066,901 W NEW YORK AVE,SOMERS POINT CITY,17,1978,1,RES1,3001 -0121_1424_15,-74.52083555,39.31926117,911 W NEW YORK AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1424_16,-74.4646345,39.344579,905 W NEW YORK AVE,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_1424_3.01,-74.472818,39.3435995,650 TENTH ST,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1424_3.02,-74.466851,39.3569505,648 TENTH ST,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1424_4,-74.37207336,39.40013641,646 TENTH ST,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1424_5,-74.44136703,39.37112718,644 TENTH ST,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1424_6,-74.3658225,39.422953,640 TENTH ST,SOMERS POINT CITY,15,1900,2,RES1,3001 -0121_1424_7,-74.53098042,39.40008682,920 W CONNECTICUT AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1424_8,-74.44645849,39.37344084,918 W CONNECTICUT AVE,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_1424_9,-74.36252052,39.41358982,910 W CONNECTICUT AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1425_2,-74.7307005,39.588955,1003 DOBBS AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1425_3,-74.606266,39.5943345,1002 PENNSYLVANIA AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1425_4,-74.49673208,39.44511777,121 JORDAN RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1426_1,-74.52515717,39.448773,1 NASSAU RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1426_10,-74.61877925,39.3790899,19 NASSAU RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1426_11,-74.566646,39.4144575,21 NASSAU RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1426_12,-74.73562496,39.43269208,903 W CONNECTICUT AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_1426_13,-74.4393485,39.487171,623 NINTH ST,SOMERS POINT CITY,16,1995,1,RES1,3001 -0121_1426_14.01,-74.49727825,39.47065446,621 NINTH ST,SOMERS POINT CITY,16,1994,1,RES1,3001 -0121_1426_14.02,-74.60730426,39.32416769,619 NINTH ST,SOMERS POINT CITY,16,1993,1,RES1,3002 -0121_1426_15.01,-74.85440036,39.36829636,913 W CONNECTICUT AVE,SOMERS POINT CITY,16,1996,1,RES1,3001 -0121_1426_15.02,-74.472132,39.446565,915 W CONNECTICUT AVE,SOMERS POINT CITY,16,1996,1,RES1,3001 -0121_1426_15.03,-74.51466289,39.43935328,917 W CONNECTICUT AVE,SOMERS POINT CITY,15,1910,1,RES1,3001 -0121_1426_16.01,-74.55541971,39.35639816,527 NINTH ST,SOMERS POINT CITY,16,1989,1,RES1,3001 -0121_1426_16.03,-74.59995061,39.35937075,519 NINTH ST,SOMERS POINT CITY,16,1989,1,RES1,3001 -0121_1426_16.04,-74.7634465,39.3511755,515 NINTH ST,SOMERS POINT CITY,16,1989,1,RES1,3003 -0121_1426_2,-74.4523129,39.49889325,3 NASSAU RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1426_3,-74.592158,39.3119825,5 NASSAU RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1426_4,-74.49297011,39.4018629,7 NASSAU RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1426_5,-74.5566185,39.3585095,9 NASSAU RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1426_6,-74.57773413,39.36142989,11 NASSAU RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1426_7,-74.80377512,39.31111674,13 NASSAU RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1426_8,-74.82808139,39.40713083,15 NASSAU RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1426_9,-74.8141305,39.644445,17 NASSAU RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1427_1,-74.5740935,39.333615,133 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_10,-74.59528688,39.42890765,151 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1427_11,-74.66111915,39.40252656,153 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_12,-74.54080093,39.46575072,155 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_13,-74.76692901,39.45242068,157 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1427_14,-74.65377122,39.52611128,159 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_15,-74.76280735,39.63615012,902 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_16,-74.62286256,39.41945181,24 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_17,-74.62548654,39.3928162,22 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_18,-74.58265173,39.40398215,20 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_19,-74.60166139,39.38762934,18 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_2,-74.526598,39.3820465,135 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1427_20,-74.73711332,39.72039249,16 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_21,-74.73553226,39.4472497,14 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_22,-74.548683,39.3744995,12 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_23,-74.6475985,39.3396175,10 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_24,-74.56611535,39.36824873,8 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_25,-74.52510832,39.38616341,6 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_26,-74.57576534,39.33382336,4 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES2,3005 -0121_1427_27,-74.45501971,39.49690097,2 NASSAU RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_3,-74.56225364,39.35640565,137 JORDAN RD,SOMERS POINT CITY,16,2009,1,RES1,3001 -0121_1427_4,-74.591659,39.356379,139 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1427_5,-74.771191,39.3136495,141 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1427_6,-74.80644732,39.37947104,143 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1427_7,-74.73119024,39.64241556,145 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1427_8,-74.59552714,39.38072929,147 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1427_9,-74.57095274,39.41345,149 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1428_1,-74.5278015,39.386799,214 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1428_10,-74.663558,39.3716495,13 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_11,-74.66614753,39.41877476,15 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_12,-74.7572435,39.4482045,17 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_13,-74.86814384,39.49144341,19 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_14,-74.65732546,39.53621934,21 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_15,-74.79018116,39.52106488,23 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_16,-74.76329216,39.62781927,25 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_17,-74.85803194,39.61506695,27 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_18,-74.77848822,39.62646224,160 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_19,-74.645574,39.549497,158 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_2,-74.566159,39.354333,212 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1428_20,-74.55759234,39.52578582,156 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_21,-74.75469805,39.44571915,154 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_22,-74.6013126,39.43660532,152 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1428_23,-74.6277255,39.425463,150 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_24,-74.61689847,39.43113176,148 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_25,-74.55251932,39.42781902,146 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1428_26,-74.60552091,39.37599469,144 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_27,-74.80527893,39.64793646,142 JORDAN RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_28,-74.8235445,39.4062355,140 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1428_29,-74.54079904,39.37584315,138 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1428_3,-74.60889823,39.36667293,210 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1428_30,-74.63345934,39.31770761,136 JORDAN RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1428_4,-74.54271368,39.37601433,208 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1428_5,-74.8152585,39.372189,3 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_6,-74.88456918,39.56021771,5 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_7,-74.586465,39.3751315,7 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_8,-74.544323,39.4123855,9 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1428_9,-74.5840705,39.431818,11 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_1,-74.7905755,39.628888,1 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1429_10,-74.92487361,39.50889391,19 PRINCETON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_11,-74.51590667,39.38607601,21 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1429_12,-74.45626862,39.34976605,1114 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1429_13,-74.5033905,39.3251735,1112 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_14,-74.51514816,39.39408378,26 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_15,-74.890144,39.471061,24 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_16,-74.84989346,39.59831677,22 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_17,-74.83193388,39.57018691,20 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_18,-74.68408678,39.55763218,18 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_19,-74.5523605,39.5388595,16 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_2,-74.723343,39.462499,3 PRINCETON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_20,-74.75379278,39.44696639,14 OSBORNE RD,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1429_21,-74.538714,39.4678755,12 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_22,-74.63012319,39.42113295,10 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_23,-74.63843161,39.38341003,8 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_24,-74.60281583,39.414802,6 OSBORNE RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_25,-74.56788881,39.418614,4 OSBORNE RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1429_26,-74.60305928,39.37253387,206 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1429_27,-74.59336,39.431613,204 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1429_28,-74.64734304,39.39560997,202 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1429_29,-74.62692053,39.42116681,200 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1429_3,-74.719385,39.439904,5 PRINCETON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_30,-74.72831261,39.45483443,7 HADDON RD,SOMERS POINT CITY,16,1962,1,COM3,3004 -0121_1429_4,-74.72484289,39.45618919,7 PRINCETON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_5,-74.76397075,39.63753605,9 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1429_6,-74.6341695,39.537222,11 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1429_7,-74.66307231,39.59092152,13 PRINCETON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_8,-74.76968662,39.59153829,15 PRINCETON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1429_9,-74.79854834,39.63402398,17 PRINCETON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1430_1,-74.803539,39.5466335,2 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_10,-74.53463163,39.38157538,20 PRINCETON RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1430_11,-74.4838032,39.33979463,18 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_12,-74.50864098,39.32565733,16 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_13,-74.52561296,39.3896602,14 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_14,-74.9466235,39.5091975,12 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_15,-74.82349213,39.63793285,10 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_16,-74.77891542,39.60207747,8 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_17,-74.70088436,39.57627127,6 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_18,-74.726121,39.587431,4 PRINCETON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_2,-74.85079154,39.61221769,13 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_3,-74.45371,39.3746595,15 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_4,-74.50601864,39.41274898,17 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_5,-74.51304587,39.32677536,19 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_6,-74.51761778,39.41319111,21 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_7,-74.506802,39.436861,23 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1430_8,-74.60533074,39.37112244,25 HADDON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1430_9,-74.57310567,39.37687798,1212 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1433_1,-74.650587,39.5242505,192 BALA DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1433_10,-74.566189,39.373067,17 AMBLER RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1433_11,-74.61625471,39.37150743,19 AMBLER RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1433_12,-74.57637381,39.4092891,21 AMBLER RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1433_13,-74.64045125,39.37105659,23 AMBLER RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_14,-74.61215797,39.44053168,25 AMBLER RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_15,-74.6217315,39.4245405,1312 MASSACHUSETTS AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_16,-74.6141045,39.4230825,24 HADDON RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_17,-74.56743582,39.41806348,22 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1433_18,-74.58367168,39.37965573,20 HADDON RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_19,-74.55025962,39.3806539,18 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1433_2,-74.63133517,39.62004565,1 AMBLER RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1433_20,-74.48893341,39.42935735,16 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1433_21,-74.4551375,39.348566,14 HADDON RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_22,-74.439794,39.366171,12 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1433_23,-74.51919217,39.38362209,10 HADDON RD,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1433_24,-74.921148,39.5092875,8 HADDON RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_25,-74.87874866,39.59581985,6 HADDON RD,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_26,-74.69953085,39.58063071,4 HADDON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1433_27,-74.63878435,39.53003903,2 HADDON RD,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1433_28,-74.75427568,39.45289356,198 BALA DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1433_29,-74.76532777,39.61005869,196 BALA DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1433_3,-74.783874,39.607644,3 AMBLER RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1433_30,-74.5602725,39.536952,194 BALA DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1433_4,-74.846529,39.6082515,5 AMBLER RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1433_5,-74.96142452,39.51207593,7 AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1433_6,-74.52116817,39.39967153,9 AMBLER RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1433_7,-74.501046,39.333024,11 AMBLER RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1433_8,-74.48507373,39.33722335,13 AMBLER RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1433_9,-74.4842215,39.438781,15 AMBLER RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1510_1,-74.4733005,39.4441425,718 BAY AVE,SOMERS POINT CITY,,1950,1,COM7,3004 -0121_1510_10,-74.52104355,39.38996131,138 DECATUR AVE,SOMERS POINT CITY,18,1930,1,RES1,3001 -0121_1510_12,-74.52408913,39.39814016,136 DECATUR AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1510_13,-74.49975108,39.41223893,114 DECATUR AVE,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1510_14,-74.493627,39.434033,112 DECATUR AVE,SOMERS POINT CITY,16,1996,1,RES3A,3004 -0121_1510_15,-74.498711,39.4334975,110 DECATUR AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1510_16,-74.47314272,39.44518042,100 DECATUR AVE,SOMERS POINT CITY,15,1935,1,RES1,3001 -0121_1510_17,-74.45729127,39.46967895,714 BAY AVE,SOMERS POINT CITY,17,2005,1,RES1,3001 -0121_1510_18,-74.54827883,39.47467622,708 BAY AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1510_2,-74.503926,39.4357435,111 GIBBS AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1510_3,-74.529069,39.403293,117 GIBBS AVE,SOMERS POINT CITY,18,1928,1,RES1,3001 -0121_1510_4,-74.52958091,39.40043218,125 GIBBS AVE,SOMERS POINT CITY,43,1930,2,RES1,3001 -0121_1510_5,-74.51315082,39.39838395,131 GIBBS AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1510_6,-74.51424869,39.38557103,137 GIBBS AVE,SOMERS POINT CITY,16,1950,2,RES1,3001 -0121_1510_8,-74.36484779,39.42281919,142 DECATUR AVE,SOMERS POINT CITY,19,2015,1,RES1,3001 -0121_1510_9,-74.52989977,39.38245626,140 DECATUR AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1511_1,-74.51927066,39.387703,101 HIGBEE AVE,SOMERS POINT CITY,,1936,1,RES1,3001 -0121_1511_10,-74.371591,39.4111975,124 GIBBS AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1511_11,-74.45243594,39.37515878,122 GIBBS AVE,SOMERS POINT CITY,16,1935,1,RES1,3001 -0121_1511_12,-74.52797817,39.39270859,118 GIBBS AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1511_13,-74.51299498,39.39766884,110 GIBBS AVE,SOMERS POINT CITY,,1935,1,RES1,3001 -0121_1511_14,-74.526702,39.398472,106 GIBBS AVE,SOMERS POINT CITY,16,1921,1,RES1,3001 -0121_1511_2,-74.3779285,39.414674,111 HIGBEE AVE,SOMERS POINT CITY,43,1930,2,RES1,3001 -0121_1511_3,-74.36084816,39.41077098,121 HIGBEE AVE,SOMERS POINT CITY,16,1930,1,RES1,3004 -0121_1511_4,-74.36162982,39.41187717,123 HIGBEE AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1511_5,-74.3682795,39.4077095,127 HIGBEE AVE,SOMERS POINT CITY,17,1930,1,RES1,3001 -0121_1511_7,-74.37371319,39.40446624,126 GIBBS AVE,SOMERS POINT CITY,14,1930,1,RES1,3001 -0121_1511_9,-74.36994425,39.41746411,130 GIBBS AVE,SOMERS POINT CITY,16,1929,1,RES1,3001 -0121_1512_1,-74.48852239,39.5221044,712 SHORE RD,SOMERS POINT CITY,45,1950,4,RES1,3001 -0121_1512_10,-74.55321101,39.36061083,47 GIBBS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1512_11,-74.57439534,39.34729538,55 GIBBS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1512_12,-74.595071,39.3818085,59 GIBBS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1512_13,-74.5562645,39.397418,67 GIBBS AVE,SOMERS POINT CITY,16,1916,1,RES1,3001 -0121_1512_14,-74.87227196,39.59912204,71 GIBBS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1512_15,-74.48906811,39.45196042,73 GIBBS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1512_16,-74.62023369,39.43753251,75 GIBBS AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1512_17,-74.588639,39.490581,77 GIBBS AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1512_18,-74.56761,39.479778,79 GIBBS AVE,SOMERS POINT CITY,15,1920,2,RES1,3001 -0121_1512_19.01,-74.55416956,39.47306926,83 GIBBS AVE,SOMERS POINT CITY,43,1935,4,RES1,3001 -0121_1512_19.02,-74.39776356,39.38962907,719 BAY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1512_2,-74.4042785,39.379477,15 GIBBS AVE,SOMERS POINT CITY,16,1945,1,RES1,3001 -0121_1512_22,-74.586942,39.3700655,56 E NEW YORK AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_1512_23,-74.60478575,39.32802217,54 E NEW YORK AVE,SOMERS POINT CITY,18,2018,1,RES1,3001 -0121_1512_26,-74.56282751,39.36053382,48 E NEW YORK AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1512_27,-74.5203385,39.4463055,46 E NEW YORK AVE,SOMERS POINT CITY,,0,1,RES3A,3001 -0121_1512_29,-74.35542475,39.41385435,28 E NEW YORK AVE,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_1512_3,-74.3978565,39.3873945,19 GIBBS AVE,SOMERS POINT CITY,16,1920,2,RES1,3001 -0121_1512_30,-74.38561328,39.39459904,26 E NEW YORK AVE,SOMERS POINT CITY,15,1945,1,RES1,3001 -0121_1512_31,-74.461237,39.4958965,24 E NEW YORK AVE,SOMERS POINT CITY,15,1946,1,RES1,3001 -0121_1512_32,-74.50904,39.49389,20 E NEW YORK AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1512_33,-74.50572803,39.52869531,18 E NEW YORK AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_1512_34,-74.5763475,39.333026,10 E NEW YORK AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1512_35,-74.61387537,39.32392382,700 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1512_4,-74.370136,39.4006085,23 GIBBS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1512_5,-74.50366275,39.4579328,27 GIBBS AVE,SOMERS POINT CITY,43,1945,2,RES1,3001 -0121_1512_6,-74.51024689,39.43886565,29 GIBBS AVE,SOMERS POINT CITY,16,1926,1,GOV1,3004 -0121_1512_7,-74.81912796,39.62204084,35-37 GIBBS AVE,SOMERS POINT CITY,16,1930,2,RES1,3001 -0121_1512_9,-74.56255451,39.36214288,43 GIBBS AVE,SOMERS POINT CITY,16,1930,1,GOV1,3004 -0121_1513_10,-74.6132495,39.48968,45 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_11,-74.397724,39.38885,53 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_12,-74.37508001,39.39904165,55 HIGBEE AVE,SOMERS POINT CITY,16,2007,1,RES1,3001 -0121_1513_13,-74.47094411,39.44379796,59 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_14.02,-74.523408,39.420057,63 HIGBEE AVE,SOMERS POINT CITY,15,1920,1,GOV1,3004 -0121_1513_15,-74.49123119,39.43460486,67 HIGBEE AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_1513_17,-74.50368599,39.43590149,731 BAY AVE,SOMERS POINT CITY,,1983,1,RES1,3001 -0121_1513_19,-74.460654,39.4534815,78 GIBBS AVE,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_1513_2,-74.60518502,39.32751315,9 HIGBEE AVE,SOMERS POINT CITY,17,1920,1,RES1,3001 -0121_1513_20,-74.564232,39.4832335,56 GIBBS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_21,-74.6063275,39.50073,50 GIBBS AVE,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_1513_22,-74.39669522,39.38719018,48 GIBBS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_23,-74.38753317,39.39467224,44 GIBBS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1513_24,-74.4100325,39.3827205,42 GIBBS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1513_25,-74.871708,39.60412,38 GIBBS AVE,SOMERS POINT CITY,16,1930,1,GOV1,3004 -0121_1513_26,-74.5906825,39.370841,30 GIBBS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1513_27,-74.6065855,39.328171,26 GIBBS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1513_28,-74.55138189,39.36332152,18 GIBBS AVE,SOMERS POINT CITY,16,1915,1,RES1,3001 -0121_1513_29,-74.39157149,39.38929867,718 SHORE RD,SOMERS POINT CITY,,1930,1,RES1,3001 -0121_1513_3,-74.59645493,39.38335882,15 HIGBEE AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1513_30,-74.51677334,39.45113405,720 SHORE RD,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1513_4,-74.59330079,39.37664917,17 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_5,-74.536742,39.3976815,21 HIGBEE AVE,SOMERS POINT CITY,16,1910,1,GOV1,3004 -0121_1513_6,-74.3825655,39.3939585,29 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_7,-74.38053371,39.40011227,33 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_8,-74.68128672,39.4914783,39 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1513_9,-74.61941398,39.46245929,43 HIGBEE AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1514_1,-74.5098075,39.484057,721 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1514_2,-74.60204182,39.30753019,717 SHORE RD,SOMERS POINT CITY,,1965,1,RES1,3001 -0121_1514_6,-74.6501765,39.359028,701 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1515_2,-74.51766385,39.45083754,721 CENTRE ST,SOMERS POINT CITY,16,1900,1,COM3,3004 -0121_1515_4,-74.69423186,39.36105302,18 W NEW YORK AVE,SOMERS POINT CITY,,1966,1,RES1,3001 -0121_1515_5,-74.8021685,39.628173,16 W NEW YORK AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1516_1,-74.63259405,39.31854201,123 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1516_10,-74.68709592,39.35730109,715 FIRST ST,SOMERS POINT CITY,15,1920,2,RES1,3001 -0121_1516_11,-74.63796907,39.34205818,721 FIRST ST,SOMERS POINT CITY,16,1939,1,RES1,3001 -0121_1516_12,-74.58570532,39.32273197,723 FIRST ST,SOMERS POINT CITY,16,1938,1,RES1,3001 -0121_1516_2,-74.6574935,39.363716,722 SECOND ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1516_3,-74.36848395,39.40858814,714 SECOND ST,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1516_4,-74.43852433,39.36896408,710 SECOND ST,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1516_5,-74.59088386,39.41214012,122 W NEW YORK AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1516_6,-74.5615065,39.4109995,120 W NEW YORK AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1516_7,-74.53741294,39.40733627,118 W NEW YORK AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1516_8,-74.40219028,39.39460106,701 FIRST ST,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1516_9,-74.43664168,39.37313818,711 FIRST ST,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1517_1.01,-74.606675,39.3757945,722 THIRD ST,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1517_1.02,-74.4031595,39.389772,215 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1517_10,-74.63530376,39.39064704,216 W NEW YORK AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1517_12,-74.677459,39.387502,710 THIRD ST,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1517_13,-74.61149283,39.42024237,716 THIRD ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1517_2,-74.5388015,39.418285,720 THIRD ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1517_3,-74.36026937,39.40964537,213 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1517_4,-74.42183509,39.36920318,211 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1517_5,-74.3714064,39.40233053,207 PENNSYLVANIA AVE,SOMERS POINT CITY,15,1946,1,RES1,3001 -0121_1517_6,-74.3672525,39.4060285,203 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1900,1,COM1,3002 -0121_1517_7,-74.5621495,39.415945,715 SECOND ST,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1517_8,-74.61818972,39.43233432,202 W NEW YORK AVE,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1517_9,-74.63454947,39.38350532,208 W NEW YORK AVE,SOMERS POINT CITY,16,1940,1,IND1,3002 -0121_1518_1,-74.64822255,39.37797051,321 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1518_10,-74.6354395,39.428695,300 W NEW YORK AVE,SOMERS POINT CITY,16,1945,1,RES1,3001 -0121_1518_11,-74.9287285,39.519286,310 W NEW YORK AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1518_12,-74.5411945,39.4579005,318 W NEW YORK AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1518_13,-74.61837236,39.43874241,392 W NEW YORK AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1518_15,-74.6307775,39.411719,716 FOURTH ST,SOMERS POINT CITY,16,1945,1,COM1,3004 -0121_1518_2,-74.67447735,39.38420225,718 FOURTH ST,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1518_5,-74.63065318,39.39278952,315 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1518_7.01,-74.58043095,39.41313719,725 THIRD ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1518_7.02,-74.6404255,39.3707795,721 THIRD ST,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1518_9,-74.642434,39.400173,717 THIRD ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1519_1,-74.9421215,39.5109225,419 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1519_10,-74.87251,39.444427,414 W NEW YORK AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1519_11,-74.75421938,39.45373287,716 FIFTH ST,SOMERS POINT CITY,15,1940,1,RES1,3001 -0121_1519_2,-74.54842514,39.46515929,720 FIFTH ST,SOMERS POINT CITY,16,1932,1,RES1,3001 -0121_1519_3,-74.89450483,39.52790907,411 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1519_4,-74.63412659,39.43125129,407 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1519_5,-74.64042866,39.42211267,400 PENNSYLVANIA AVE,SOMERS POINT CITY,15,1950,1,RES1,3001 -0121_1519_6,-74.9366455,39.5243355,711 FOURTH ST,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1519_7,-74.9250515,39.5108505,402 W NEW YORK AVE,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1519_8,-74.9454235,39.509145,406 W NEW YORK AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1519_9,-74.88494839,39.54092028,410 W NEW YORK AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1520_1,-74.826665,39.4067095,726 SIXTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1520_10,-74.62810383,39.46279,516 W NEW YORK AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1520_11,-74.66590159,39.46148584,518 W NEW YORK AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1520_12,-74.6277625,39.4882835,702 SIXTH ST,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1520_14,-74.57446461,39.48103337,714 SIXTH ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1520_2,-74.88656765,39.59733655,517 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1520_3,-74.9700555,39.516597,505 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1520_4,-74.54023329,39.47034237,503 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1520_5,-74.54107,39.467031,721 FIFTH ST,SOMERS POINT CITY,16,1960,1,GOV1,3004 -0121_1520_7,-74.8233455,39.3958005,715 FIFTH ST,SOMERS POINT CITY,,2011,1,RES1,3001 -0121_1520_9,-74.6319025,39.4458865,502 W NEW YORK AVE,SOMERS POINT CITY,16,1952,1,COM1,3004 -0121_1521_1.01,-74.69004076,39.44848606,625 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1521_1.02,-74.7164435,39.3863135,704 SEVENTH ST,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1521_11,-74.8119115,39.6284725,604 W NEW YORK AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1521_12,-74.8962745,39.471888,612 W NEW YORK AVE,SOMERS POINT CITY,15,1926,1,RES1,3001 -0121_1521_13,-74.74873343,39.45235469,614 W NEW YORK AVE,SOMERS POINT CITY,16,1955,3,RES1,3001 -0121_1521_14,-74.85851816,39.4481541,622 W NEW YORK AVE,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1521_3,-74.59967712,39.47944924,613 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1521_4,-74.629307,39.444924,609 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_1521_5,-74.87671056,39.46279829,607 PENNSYLVANIA AVE,SOMERS POINT CITY,43,1936,2,RES1,3001 -0121_1521_6,-74.8549075,39.4413545,605 PENNSYLVANIA AVE,SOMERS POINT CITY,15,1926,1,RES1,3001 -0121_1521_7,-74.79871312,39.43400058,727 SIXTH ST,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1522_1,-74.8897968,39.4710235,715 PENNSYLVANIA AVE,SOMERS POINT CITY,,1956,1,RES1,3001 -0121_1522_10,-74.6086425,39.5145975,710 W NEW YORK AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1522_11,-74.64857463,39.51404104,712 W NEW YORK AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1522_12,-74.649398,39.5286095,714 W NEW YORK AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_1522_13,-74.6928305,39.589332,700 NEW RD,SOMERS POINT CITY,,1963,1,RES1,3001 -0121_1522_2,-74.73813435,39.46573047,704 NEW RD,SOMERS POINT CITY,,1977,1,RES1,3001 -0121_1522_3,-74.86100493,39.61745032,713 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1522_4,-74.8139165,39.627379,709 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1522_5,-74.627982,39.4927835,707 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1522_7,-74.8150125,39.369987,705 SEVENTH ST,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_1522_8,-74.78607324,39.44463948,703 SEVENTH ST,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1522_9,-74.844357,39.48965,701 SEVENTH ST,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1523_1,-74.65577498,39.55160967,821 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_1523_2,-74.54543897,39.54083643,819 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1523_4,-74.87284117,39.48185339,717 NEW RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1523_7,-74.77368929,39.59583785,701 NEW RD,SOMERS POINT CITY,,1962,1,RES1,3001 -0121_1523_8,-74.77891698,39.63495838,802 W NEW YORK AVE,SOMERS POINT CITY,,1967,1,RES1,3001 -0121_1523_9.02,-74.87845806,39.59411234,822 W NEW YORK AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1524_1,-74.79218373,39.60493131,913 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1524_11.01,-74.82827398,39.57183568,703 TENTH ST,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1524_11.02,-74.79018043,39.64792837,705 TENTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1524_2,-74.832336,39.570688,909 PENNSYLVANIA AVE,SOMERS POINT CITY,16,2007,1,RES1,3001 -0121_1524_3,-74.77968075,39.51878215,905 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1970,1,RES3B,3001 -0121_1524_4.01,-74.6598315,39.52013017,901 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1940,1,GOV1,3004 -0121_1524_4.02,-74.60510452,39.61795883,903 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_1524_6,-74.78306411,39.6640394,900 W NEW YORK AVE,SOMERS POINT CITY,16,1945,1,RES1,3001 -0121_1524_7,-74.79513334,39.64127344,916 W NEW YORK AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1524_8,-74.415554,39.366344,922 W NEW YORK AVE,SOMERS POINT CITY,16,1974,1,RES3A,3001 -0121_1524_9,-74.49561869,39.33399135,948 W NEW YORK AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1526_1,-74.47797438,39.34609334,118 JORDAN RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_10,-74.52772406,39.38745525,24 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_11,-74.56655942,39.36748816,22 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES3A,3001 -0121_1526_12,-74.75964282,39.30343959,20 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_13,-74.5559628,39.36897033,18 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_14,-74.94872949,39.53472466,16 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_15,-74.5457307,39.40587549,201 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_16,-74.58679493,39.37881322,203 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_17,-74.83396953,39.6431619,205 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_18,-74.7342927,39.43710188,207 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_19,-74.5500195,39.374698,209 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_2,-74.495965,39.3365955,57 COLWICK DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_20,-74.63485913,39.34819021,211 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_21,-74.566296,39.35795,213 BALA DR,SOMERS POINT CITY,16,1959,1,RES3A,3001 -0121_1526_22,-74.52135715,39.3916767,215 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_23,-74.60205667,39.31272405,217 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_24,-74.48784359,39.4782299,219 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_25,-74.5043435,39.4490305,130 JORDAN RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_26,-74.79196171,39.3814094,128 JORDAN RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_27,-74.50803168,39.40520552,126 JORDAN RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_28,-74.35689929,39.41267556,124 JORDAN RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_29,-74.367394,39.4105425,122 JORDAN RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_3,-74.39183284,39.38854648,38 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES3A,3001 -0121_1526_30,-74.5034619,39.33936061,120 JORDAN RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_4,-74.37231075,39.42100716,36 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_5,-74.5309722,39.37964862,34 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_6,-74.49596907,39.42489841,32 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_7,-74.8364465,39.3756845,30 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_8,-74.45191378,39.4890339,28 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1526_9,-74.60441121,39.31020454,26 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_1,-74.80427428,39.43029254,1 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES3B,3001 -0121_1527_10,-74.48469865,39.43505454,19 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES3A,3001 -0121_1527_11,-74.3599715,39.4160705,29 LEHIGH DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_12,-74.51477594,39.39816066,27 LEHIGH DR,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1527_13,-74.49817425,39.43011695,25 LEHIGH DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_14,-74.4826948,39.44132446,23 LEHIGH DR,SOMERS POINT CITY,16,1958,1,RES3A,3001 -0121_1527_15,-74.4593035,39.4787165,21 LEHIGH DR,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_1527_16,-74.53301596,39.31469881,19 LEHIGH DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_17,-74.609383,39.3198375,17 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_18,-74.61060897,39.32635884,15 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_19,-74.582204,39.339795,13 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_2,-74.5061485,39.447378,3 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_20,-74.6315335,39.3462285,11 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_21,-74.75643936,39.30387054,9 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_22,-74.75582164,39.30404079,7 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_23,-74.577687,39.350902,5 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_24,-74.48064682,39.43161347,3 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_25,-74.5979507,39.3204651,1 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1527_3,-74.49150932,39.47226028,5 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_4,-74.48637815,39.43305124,7 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES3A,3001 -0121_1527_5,-74.4844635,39.4336665,9 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_6,-74.60083248,39.31604428,11 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_7,-74.45648476,39.49655296,13 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_8,-74.50791134,39.45745205,15 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1527_9,-74.513389,39.430228,17 OXFORD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1528_1,-74.77975353,39.31596034,119 AMBLER RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1528_10,-74.64142915,39.37888884,183 BALA DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1528_11,-74.59456267,39.42048058,197 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1528_12,-74.59813981,39.38246302,14 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES3A,3001 -0121_1528_13,-74.60995607,39.3927378,12 LEHIGH DR,SOMERS POINT CITY,16,1957,1,RES4,3004 -0121_1528_14,-74.61710581,39.3924789,10 LEHIGH DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1528_15,-74.9574155,39.5287195,8 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES3A,3001 -0121_1528_16,-74.5497187,39.37719582,6 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1528_17,-74.64826738,39.35614916,4 LEHIGH DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1528_18,-74.58814924,39.34859078,2 LEHIGH DR,SOMERS POINT CITY,16,1959,1,RES3A,3001 -0121_1528_2,-74.8278095,39.4065205,121 AMBLER RD,SOMERS POINT CITY,16,1958,1,RES1,3002 -0121_1528_3,-74.8032925,39.6421075,123 AMBLER RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1528_4,-74.59984333,39.37950531,125 AMBLER RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1528_5,-74.570871,39.427548,127 AMBLER RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1528_6,-74.64211299,39.38519767,129 AMBLER RD,SOMERS POINT CITY,16,1966,1,RES1,3004 -0121_1528_7,-74.631511,39.43042717,131 AMBLER RD,SOMERS POINT CITY,16,1973,1,GOV1,3004 -0121_1528_8,-74.55382182,39.46988984,133 AMBLER RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1528_9,-74.62989431,39.41093346,181 BALA DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1529_1,-74.9493975,39.5354415,118 AMBLER RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_10,-74.79473895,39.63872134,133 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_11,-74.89816091,39.48560871,135 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3002 -0121_1529_12,-74.51418639,39.40076737,137 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_13,-74.4949315,39.3310105,139 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_14,-74.4720055,39.344416,135 EXTON RD,SOMERS POINT CITY,16,1958,1,RES1,3002 -0121_1529_15,-74.54616242,39.37818035,137 EXTON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_16,-74.50166029,39.43306941,161 BALA DR,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_17,-74.463622,39.349249,163 BALA DR,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_18,-74.44295981,39.35836702,165 BALA DR,SOMERS POINT CITY,16,1958,1,GOV1,3004 -0121_1529_19,-74.4494395,39.3725615,167 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1529_2,-74.558854,39.3982955,103 COLWICK DR,SOMERS POINT CITY,16,1958,1,RES3A,3001 -0121_1529_20,-74.844096,39.623774,169 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3002 -0121_1529_21,-74.79191945,39.63312736,171 BALA DR,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_1529_22,-74.71823796,39.56789536,173 BALA DR,SOMERS POINT CITY,16,1958,1,RES3A,3001 -0121_1529_23,-74.64439709,39.52954586,175 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1529_24,-74.8655775,39.4914105,130 AMBLER RD,SOMERS POINT CITY,16,1959,1,RES3A,3001 -0121_1529_25,-74.72598872,39.45643785,128 AMBLER RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_26,-74.63486721,39.42815186,126 AMBLER RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1529_27,-74.6488755,39.376911,124 AMBLER RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_28,-74.57338436,39.42878161,122 AMBLER RD,SOMERS POINT CITY,16,1959,1,COM10,3003 -0121_1529_29,-74.60500781,39.39217247,120 AMBLER RD,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1529_3,-74.60026713,39.38765386,119 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_4,-74.6098685,39.416131,121 DEVON RD,SOMERS POINT CITY,16,1958,1,RES3A,3001 -0121_1529_5,-74.68465886,39.39202624,123 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_6,-74.7277125,39.4506835,125 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_7,-74.75211782,39.45240652,127 DEVON RD,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1529_8,-74.69890315,39.57738391,129 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1529_9,-74.663348,39.638627,131 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1530_1,-74.58082554,39.42971404,109 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_10,-74.87110078,39.59884947,130 DEVON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_11,-74.79829918,39.53181797,128 DEVON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_12,-74.6421885,39.5348285,126 DEVON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_13,-74.72573577,39.58973449,124 DEVON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_14,-74.71608213,39.45025459,122 DEVON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_15,-74.62734942,39.43507215,120 DEVON RD,SOMERS POINT CITY,16,1957,1,RES1,3004 -0121_1530_2,-74.62404118,39.43259253,111 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_3,-74.69100294,39.41190529,113 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3004 -0121_1530_4,-74.880285,39.570858,121 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3004 -0121_1530_5,-74.70474102,39.56813582,123 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_6,-74.74969618,39.60292898,125 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1530_7,-74.910792,39.488799,127 EXTON RD,SOMERS POINT CITY,16,1957,1,RES3A,3001 -0121_1530_8,-74.518245,39.4004995,129 EXTON RD,SOMERS POINT CITY,16,1956,1,RES3A,3001 -0121_1530_9,-74.89628034,39.510741,132 DEVON RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1531_1,-74.7879665,39.6103135,119 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES3A,3001 -0121_1531_10,-74.56448317,39.37096125,137 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_11,-74.60033762,39.37865075,139 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_12,-74.6041245,39.4060275,141 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_13,-74.67554793,39.38513251,143 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_14,-74.55288891,39.42608183,138 EXTON RD,SOMERS POINT CITY,16,1957,1,RES3A,3001 -0121_1531_15,-74.59565475,39.38194411,136 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_16,-74.54385684,39.37718453,134 EXTON RD,SOMERS POINT CITY,16,1957,1,RES3B,3004 -0121_1531_17,-74.5028795,39.4286235,132 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_18,-74.4730185,39.341793,130 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_19,-74.5259085,39.311377,128 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_2,-74.64685454,39.54949816,121 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1531_20,-74.941591,39.5211975,126 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_21,-74.792789,39.5913645,124 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_22,-74.704435,39.567939,122 EXTON RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_3,-74.77914422,39.60469594,123 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_4,-74.77494095,39.62170738,125 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_5,-74.9171825,39.4983835,127 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_6,-74.51554696,39.39924467,129 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_7,-74.49379061,39.33199218,131 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_8,-74.47987,39.3367615,133 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1531_9,-74.48993946,39.43797824,135 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_1,-74.517163,39.400621,133 BALA DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_10,-74.7071793,39.42890398,151 BALA DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1532_11,-74.61957601,39.43779395,153 BALA DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_12,-74.538344,39.4583575,144 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_13,-74.6237085,39.393055,142 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_14,-74.5824785,39.414072,140 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_15,-74.59760805,39.38092396,138 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_16,-74.57010743,39.37170552,136 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_17,-74.45890195,39.4640302,134 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_18,-74.487176,39.338277,132 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_19,-74.527945,39.399451,130 COLWICK DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_2,-74.4985554,39.33195233,135 BALA DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_20,-74.45136225,39.37112565,2 FARRAGUT RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_3,-74.51338179,39.40517961,137 BALA DR,SOMERS POINT CITY,16,1957,1,RES1,3002 -0121_1532_4,-74.5353175,39.3822595,139 BALA DR,SOMERS POINT CITY,16,1957,1,COM10,3003 -0121_1532_5,-74.55096893,39.39313463,141 BALA DR,SOMERS POINT CITY,16,1957,1,REL1,3004 -0121_1532_6,-74.53523084,39.4123843,143 BALA DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_7,-74.5924715,39.4308315,145 BALA DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_8,-74.64100513,39.41117156,147 BALA DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1532_9,-74.55652035,39.47041321,149 BALA DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1612_1,-74.3683075,39.4046755,MUNICIPAL BEACH & PIER,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1613_1,-74.5668655,39.473315,750 SHORE RD,SOMERS POINT CITY,,1961,1,RES1,3001 -0121_1613_10,-74.5177065,39.396133,37 E NEW JERSEY AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1613_11,-74.52397339,39.39359417,43 E NEW JERSEY AVE,SOMERS POINT CITY,15,1920,2,RES1,3001 -0121_1613_12,-74.51102726,39.38500764,45 E NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1613_13,-74.378832,39.415595,49 E NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1613_14,-74.3704455,39.415064,57 E NEW JERSEY AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1613_15,-74.377127,39.40263,63 E NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1613_16,-74.36631811,39.40747331,751 BAY AVE,SOMERS POINT CITY,18,2002,1,RES1,3001 -0121_1613_17,-74.36687558,39.42078373,749 BAY AVE,SOMERS POINT CITY,17,2004,1,RES1,3001 -0121_1613_2,-74.68428173,39.44072512,746 SHORE RD,SOMERS POINT CITY,,1920,1,RES1,3001 -0121_1613_20,-74.519331,39.3876215,741 BAY AVE,SOMERS POINT CITY,18,2011,1,RES1,3001 -0121_1613_22,-74.52967868,39.40005473,60 HIGBEE AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1613_23,-74.48523734,39.43529006,58 HIGBEE AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1613_24,-74.51309447,39.41085718,56 HIGBEE AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_1613_25,-74.49683875,39.43434942,50 HIGBEE AVE,SOMERS POINT CITY,17,2012,1,RES1,3001 -0121_1613_26,-74.50356507,39.43517434,48 HIGBEE AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1613_27,-74.48023173,39.44364758,38 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1613_28,-74.38610965,39.39137245,34 HIGBEE AVE,SOMERS POINT CITY,16,1993,1,RES1,3001 -0121_1613_3,-74.39312233,39.39219849,7 E NEW JERSEY AVE,SOMERS POINT CITY,,1961,1,RES1,3001 -0121_1613_30,-74.56198314,39.47873724,32 HIGBEE AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1613_31,-74.62390534,39.43887671,20 HIGBEE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1613_32,-74.3976255,39.38624833,14 HIGBEE AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1613_33,-74.383684,39.394979,12 HIGBEE AVE,SOMERS POINT CITY,16,1903,1,RES1,3001 -0121_1613_34,-74.38521737,39.39630828,744 SHORE RD,SOMERS POINT CITY,16,1915,2,RES1,3001 -0121_1613_35,-74.49766295,39.44455982,738 SHORE RD,SOMERS POINT CITY,43,1900,3,RES1,3001 -0121_1613_4,-74.4796435,39.442473,9 E NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1613_5,-74.47267303,39.44401785,11 E NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1613_6,-74.3917845,39.3899045,13 E NEW JERSEY AVE,SOMERS POINT CITY,15,1930,2,RES1,3001 -0121_1613_7,-74.50133468,39.41989525,25 E NEW JERSEY AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1613_8,-74.50047,39.41727933,31 E NEW JERSEY AVE,SOMERS POINT CITY,16,1920,2,RES1,3001 -0121_1613_9,-74.47968107,39.43137522,33 E NEW JERSEY AVE,SOMERS POINT CITY,16,1920,2,RES1,3001 -0121_1614_1,-74.555628,39.366008,1 W NEW JERSEY AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1614_5,-74.57234083,39.34497948,741 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1614_6,-74.569802,39.3650385,737 SHORE RD,SOMERS POINT CITY,16,1900,3,RES1,3001 -0121_1614_7,-74.513049,39.43720808,729 SHORE RD,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1614_8,-74.37349403,39.39940434,727 SHORE RD,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1615_6,-74.50649456,39.45884927,737 CENTRE & 730 FIRST ST,SOMERS POINT CITY,16,1930,2,RES1,3001 -0121_1615_7,-74.381793,39.400303,728 FIRST ST,SOMERS POINT CITY,16,1962,2,RES1,3001 -0121_1615_8,-74.51566603,39.46350684,726 FIRST ST,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_1616_1,-74.52219307,39.44122265,115 W NEW JERSEY AVE,SOMERS POINT CITY,45,1965,4,RES1,3001 -0121_1616_10,-74.51065367,39.4508435,749 FIRST ST,SOMERS POINT CITY,16,1900,2,RES1,3001 -0121_1616_11.01,-74.574853,39.342621,105 W NEW JERSEY AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1616_11.02,-74.5572445,39.3679515,753 FIRST ST,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1616_2,-74.38425217,39.3917795,748 SECOND ST,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1616_3,-74.51898336,39.4584949,744 SECOND ST,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1616_4,-74.51127766,39.48163848,740 SECOND ST,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1616_5,-74.60461569,39.31406713,734 SECOND ST,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1616_6,-74.59972647,39.32481708,730 SECOND ST,SOMERS POINT CITY,16,1923,1,RES1,3001 -0121_1616_7,-74.5982445,39.315235,733 FIRST ST,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1616_8,-74.51665465,39.45699246,737 FIRST ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1616_9,-74.38840442,39.38974915,741 FIRST ST,SOMERS POINT CITY,16,1930,1,COM1,3004 -0121_1617_1,-74.60551769,39.31696455,221 W NEW JERSEY AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1617_10.02,-74.616751,39.321842,200 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1617_11,-74.57545,39.36825541,210 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1617_12,-74.64172241,39.32299216,212 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1617_13,-74.63128314,39.36632448,214 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1933,1,RES1,3001 -0121_1617_2,-74.52020652,39.53303367,215 W NEW JERSEY AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1617_3,-74.49574006,39.50157573,213 W NEW JERSEY AVE,SOMERS POINT CITY,15,1935,1,RES1,3001 -0121_1617_4,-74.51623426,39.45755229,209 W NEW JERSEY AVE,SOMERS POINT CITY,16,1980,1,GOV1,3004 -0121_1617_5,-74.5018565,39.4746705,206 PENNY LN,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1617_6,-74.52237785,39.46095402,205 W NEW JERSEY AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1617_7,-74.422739,39.3735695,201 W NEW JERSEY AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1617_8,-74.53491118,39.31481533,753 SECOND ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1617_9,-74.58812551,39.31983633,749 SECOND ST,SOMERS POINT CITY,16,2001,1,RES1,3001 -0121_1618_1.01,-74.61304396,39.34137582,323 W NEW JERSEY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1618_1.02,-74.59594431,39.36080362,754 FOURTH ST,SOMERS POINT CITY,16,1997,1,RES1,3001 -0121_1618_10,-74.3649765,39.408736,310 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1973,1,GOV1,3004 -0121_1618_11,-74.60290748,39.37728267,740 FOURTH ST,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1618_12,-74.3732845,39.4091942,746 FOURTH ST,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1618_13,-74.92301608,39.4964033,750 FOURTH ST,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1618_2,-74.6811865,39.5036805,311 W NEW JERSEY AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1618_3,-74.58200747,39.33212967,303 W NEW JERSEY AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1618_4,-74.60958396,39.32454816,757 THIRD ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1618_5,-74.6246546,39.36036269,753 THIRD ST,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1618_6,-74.64309634,39.3636401,747 THIRD ST,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1618_7,-74.37385602,39.41072968,302 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1618_8,-74.364136,39.4186445,306 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1974,1,RES1,3004 -0121_1618_9,-74.44281646,39.37133331,308 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1619_1,-74.42647158,39.36853909,425 W NEW JERSEY AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1619_10,-74.5816515,39.4296475,402 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1619_11,-74.60066251,39.4202282,406 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1619_12,-74.6359845,39.383564,412 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1619_13,-74.63196028,39.3907226,416 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1619_14,-74.58844622,39.43285482,742 FIFTH ST,SOMERS POINT CITY,16,1916,1,RES1,3001 -0121_1619_15,-74.562182,39.416182,744 FIFTH ST,SOMERS POINT CITY,16,1986,1,COM1,3004 -0121_1619_3,-74.90071086,39.4804241,419 W NEW JERSEY AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1619_4,-74.55934367,39.37114524,415 W NEW JERSEY AVE,SOMERS POINT CITY,15,1960,1,RES1,3001 -0121_1619_5,-74.6356735,39.3586145,407 W NEW JERSEY AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1619_6,-74.59557376,39.36350842,403 W NEW JERSEY AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1619_7,-74.5744415,39.341236,401 W NEW JERSEY AVE,SOMERS POINT CITY,15,1926,1,RES1,3001 -0121_1619_8,-74.79775141,39.63304266,755 FOURTH ST,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1620_1,-74.58868305,39.41694931,758 SIXTH ST,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1620_10,-74.63917257,39.38313426,743 FIFTH ST,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1620_11,-74.62751812,39.41419976,500 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1620_12,-74.62056532,39.43230894,518 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1958,1,COM1,3004 -0121_1620_14.01,-74.63258554,39.41993831,748 SIXTH ST,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_1620_14.02,-74.9515655,39.5112535,516 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1922,1,RES1,3001 -0121_1620_16,-74.6522867,39.36838138,752 SIXTH ST,SOMERS POINT CITY,16,1972,1,GOV1,3004 -0121_1620_2,-74.6010195,39.42994967,754 SIXTH ST,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1620_4,-74.60578697,39.39005383,507 W NEW JERSEY AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1620_5,-74.57448626,39.41171006,505 W NEW JERSEY AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_1620_6,-74.43571913,39.37067568,503 W NEW JERSEY AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1620_7,-74.36404578,39.41805954,501 W NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1620_8,-74.60678249,39.39063233,749 FIFTH ST,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1621_1,-74.63294521,39.41512987,756 SEVENTH ST,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_1621_10,-74.9412295,39.5153075,620 PENNSYLVANIA AVE,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_1621_11,-74.9199945,39.565247,654 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1621_12,-74.931888,39.527562,752 SEVENTH ST,SOMERS POINT CITY,15,1943,2,RES1,3001 -0121_1621_2,-74.66483558,39.39975737,611 W NEW JERSEY AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1621_3.01,-74.6728705,39.3721625,737 SIXTH ST,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_1621_3.02,-74.6191595,39.3713405,739 SIXTH ST,SOMERS POINT CITY,16,1986,1,RES1,3001 -0121_1621_4,-74.6245117,39.41804006,735 SIXTH ST,SOMERS POINT CITY,16,1928,1,AGR1,3001 -0121_1621_5,-74.93752965,39.50432308,731 SIXTH ST,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_1621_7.01,-74.9329815,39.496768,604 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1621_7.02,-74.55396956,39.47597688,729 SIXTH ST,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1621_9,-74.93867795,39.51103627,618 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1622_1,-74.717512,39.6402935,720 NEW RD,SOMERS POINT CITY,,1975,1,RES1,3001 -0121_1622_5,-74.86678654,39.54652736,757 SEVENTH ST,SOMERS POINT CITY,16,1986,1,RES1,3001 -0121_1622_6,-74.837485,39.4828385,741 SEVENTH ST,SOMERS POINT CITY,43,1966,4,RES1,3001 -0121_1622_7,-74.62215005,39.45134032,712 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1622_8,-74.63188679,39.44616705,710 NEW RD,SOMERS POINT CITY,,0,1,AGR1,3001 -0121_1623_1,-74.68224474,39.4459719,745 NINTH ST,SOMERS POINT CITY,16,2007,1,RES1,3001 -0121_1623_4,-74.63127877,39.44019826,803 NEW RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1623_5,-74.68310857,39.49379185,802 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1953,1,GOV1,3004 -0121_1623_6,-74.79584387,39.63011454,808 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1920,1,GOV1,3004 -0121_1623_7,-74.71779922,39.43703404,820 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1955,1,GOV1,3004 -0121_1623_8,-74.6264583,39.4368116,747 NINTH ST,SOMERS POINT CITY,16,1986,1,GOV1,3004 -0121_1624_1,-74.63669167,39.52450351,922 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1934,1,GOV1,3004 -0121_1624_2,-74.56569067,39.53160901,918 PENNSYLVANIA AVE,SOMERS POINT CITY,16,1977,1,GOV1,3004 -0121_1624_6.01,-74.7372795,39.462335,804 TENTH ST,SOMERS POINT CITY,16,1993,1,RES1,3001 -0121_1624_6.02,-74.7456195,39.4222625,805 NINTH ST,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1626_1,-74.50311759,39.32669567,51 W LAUREL DR,SOMERS POINT CITY,,1959,1,GOV1,3004 -0121_1626_2,-74.4650515,39.347381,7 VASSAR DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1626_3,-74.71297516,39.43553175,9 VASSAR DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1626_4,-74.44699664,39.35733653,11 VASSAR DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1626_5.01,-74.6283445,39.4724355,8 COLWICK DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1626_5.02,-74.46206052,39.34640734,6 COLWICK DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1626_5.03,-74.51770472,39.32455983,4 COLWICK DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1626_6,-74.52515487,39.31609084,131 JORDAN RD,SOMERS POINT CITY,,1969,1,RES1,3001 -0121_1626_7,-74.82427566,39.61878302,45 W LAUREL DR,SOMERS POINT CITY,,1958,1,GOV1,3004 -0121_1627_1,-74.60796161,39.33100681,23 MERION DR,SOMERS POINT CITY,16,1962,1,COM1,3004 -0121_1627_10,-74.4022785,39.3918705,5 MERION DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_11,-74.50756471,39.33521824,3 MERION DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1627_12,-74.4535303,39.35305444,1 MERION DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_13,-74.39239861,39.39075388,12 COLWICK DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1627_14,-74.373306,39.416695,14 COLWICK DR,SOMERS POINT CITY,16,1963,1,GOV1,3004 -0121_1627_15,-74.36139983,39.41374149,16 COLWICK DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1627_16,-74.5160625,39.400266,18 COLWICK DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1627_17,-74.50563783,39.42407247,20 COLWICK DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1627_18,-74.75929047,39.43286615,22 COLWICK DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_19,-74.47710244,39.44868455,24 COLWICK DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1627_2,-74.59160935,39.31252046,21 MERION DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1627_20,-74.51406789,39.46505434,26 COLWICK DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_21,-74.493799,39.495681,28 COLWICK DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_22,-74.59220116,39.32340958,30 COLWICK DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_23,-74.52165127,39.38876956,32 COLWICK DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_24,-74.56348132,39.35895397,34 COLWICK DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_3,-74.4548026,39.50009114,19 MERION DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_4,-74.502305,39.4649215,17 MERION DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_5,-74.82499989,39.42745829,15 MERION DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1627_6,-74.43458806,39.49119134,13 MERION DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1627_7,-74.5094465,39.4037835,11 MERION DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1627_8,-74.447414,39.376349,9 MERION DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1627_9,-74.44345981,39.37112154,7 MERION DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1628_1,-74.51541033,39.440905,93 W LAUREL DR,SOMERS POINT CITY,16,1966,1,GOV1,3004 -0121_1628_10,-74.71448867,39.43541551,75 W LAUREL DR,SOMERS POINT CITY,16,1964,1,AGR1,3004 -0121_1628_11,-74.45996141,39.3464034,73 W LAUREL DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1628_12,-74.51688267,39.323532,71 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1628_13,-74.64964977,39.45271229,2 MERION DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1628_14,-74.4825065,39.34062,4 MERION DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1628_15,-74.45323504,39.35281983,6 MERION DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1628_16,-74.48866416,39.34983749,8 MERION DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1628_17,-74.400662,39.3871605,10 MERION DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1628_18,-74.36754816,39.40810951,12 MERION DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1628_19,-74.365088,39.422628,14 MERION DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1628_2,-74.82416252,39.37343318,91 W LAUREL DR,SOMERS POINT CITY,16,1966,1,GOV1,3004 -0121_1628_20,-74.5035115,39.4136515,16 MERION DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1628_21,-74.68244516,39.49681953,18 MERION DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1628_22,-74.84487107,39.40825559,20 MERION DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1628_23,-74.51559333,39.45995765,22 MERION DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1628_24,-74.45932176,39.49246947,24 MERION DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1628_3,-74.50251362,39.43248247,89 W LAUREL DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1628_4,-74.52461883,39.3949624,87 W LAUREL DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1628_5,-74.36763683,39.41187928,85 W LAUREL DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1628_6,-74.37918466,39.41528701,83 W LAUREL DR,SOMERS POINT CITY,16,1965,1,GOV1,3004 -0121_1628_7,-74.40675,39.379103,81 W LAUREL DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1628_8,-74.502687,39.342059,79 W LAUREL DR,SOMERS POINT CITY,16,1966,1,GOV1,3004 -0121_1628_9,-74.450216,39.35604,77 W LAUREL DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1629_1,-74.8324405,39.5297975,131 BALA DR,SOMERS POINT CITY,16,1937,1,RES1,3001 -0121_1629_10,-74.55475254,39.39544217,113 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_11,-74.9181645,39.5654485,111 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_12,-74.80622582,39.37908207,109 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_13,-74.549703,39.37666,107 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_14,-74.6507695,39.3382755,105 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_15,-74.5780305,39.338136,101 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_16,-74.7572415,39.3040315,100 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_17,-74.53751297,39.38303566,104 COLWICK DR,SOMERS POINT CITY,16,1955,1,GOV1,3004 -0121_1629_18,-74.7368575,39.4486275,106 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_19,-74.80572782,39.64824281,108 COLWICK DR,SOMERS POINT CITY,16,1955,1,GOV1,3004 -0121_1629_2,-74.60418204,39.50879116,129 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_20,-74.59050456,39.37762927,110 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_21,-74.5616595,39.414078,112 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_22,-74.5976845,39.4118675,114 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_23,-74.639049,39.402124,116 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_24,-74.63412328,39.43018035,118 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_25,-74.72667758,39.45154943,120 COLWICK DR,SOMERS POINT CITY,16,1955,1,IND1,3002 -0121_1629_26,-74.75616863,39.44637439,122 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_27,-74.58527008,39.51788847,124 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_28,-74.655107,39.5317945,126 COLWICK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_29,-74.85445585,39.55948495,128 COLWICK DR,SOMERS POINT CITY,16,1955,1,GOV1,3004 -0121_1629_3,-74.7615365,39.629435,127 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_30,-74.8224765,39.569702,3 FARRAGUT RD,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_4,-74.729623,39.4570875,125 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_5,-74.691791,39.413778,123 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_6,-74.645433,39.410548,121 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_7,-74.63824332,39.36994911,119 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_8,-74.55528375,39.43549045,117 BALA DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1629_9,-74.60923683,39.39102715,115 BALA DR,SOMERS POINT CITY,16,1955,1,GOV1,3004 -0121_1630_1.01,-74.54448411,39.37422087,112 BALA DR,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1630_1.02,-74.60413757,39.30830147,101 W LAUREL DR,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_1630_1.03,-74.62920447,39.35494709,110 BALA DR,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_1630_1.04,-74.60276082,39.34698703,107 W LAUREL DR,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_1630_1.05,-74.57048269,39.34827055,106 BALA DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1630_1.06,-74.60784473,39.32834844,103 W LAUREL DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1631_1,-74.5893745,39.4121445,116 BALA DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1631_10,-74.492857,39.432859,134 BALA DR,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_1631_11,-74.55734744,39.36902136,136 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_12,-74.6161525,39.3744605,138 BALA DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1631_13,-74.58140169,39.40680607,140 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_14,-74.63234279,39.3906536,142 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_15,-74.55111771,39.4700727,144 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_16,-74.6193685,39.451785,146 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_17,-74.51772971,39.40994795,148 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_18,-74.51690325,39.32372647,150 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_19,-74.71367534,39.46821573,152 BALA DR,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_1631_2,-74.638789,39.3998125,118 BALA DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1631_20,-74.450905,39.35628333,154 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_21,-74.44862122,39.35760781,156 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_22,-74.76733578,39.45211863,158 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_23,-74.5092979,39.3292706,160 BALA DR,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_1631_24,-74.5034035,39.425805,162 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_25,-74.75383577,39.43023953,164 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_26,-74.59786172,39.50117332,166 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_27,-74.53133898,39.46037679,168 BALA DR,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_1631_28,-74.66869638,39.39118081,170 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_3,-74.64753561,39.43066225,120 BALA DR,SOMERS POINT CITY,16,1966,1,GOV1,3004 -0121_1631_4,-74.76162226,39.44628227,122 BALA DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1631_5,-74.65124158,39.52691264,124 BALA DR,SOMERS POINT CITY,16,1967,2,GOV1,3004 -0121_1631_6,-74.79170066,39.53412702,126 BALA DR,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_1631_7,-74.81566,39.6393005,128 BALA DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1631_8,-74.360047,39.411598,130 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1631_9,-74.4960255,39.3323515,132 BALA DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1712_10,-74.3658895,39.407551,21 DELAWARE AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1712_11,-74.36627256,39.41588966,26 ANCHORAGE LN,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1712_12,-74.42360753,39.37804643,27 DELAWARE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1712_14,-74.866444,39.594099,29 DELAWARE AVE,SOMERS POINT CITY,16,1900,3,RES1,3001 -0121_1712_15,-74.3683615,39.4099015,30 ANCHORAGE LN,SOMERS POINT CITY,16,1900,1,GOV1,3004 -0121_1712_16,-74.87258853,39.59298083,35 DELAWARE & ANCHORAGE,SOMERS POINT CITY,16,1920,2,RES1,3001 -0121_1712_2,-74.5292915,39.384546,818 SHORE RD,SOMERS POINT CITY,17,1900,2,RES1,3004 -0121_1712_20,-74.48249602,39.34886117,823 BAY AVE,SOMERS POINT CITY,,1886,1,RES1,3001 -0121_1712_21,-74.7906125,39.632826,801 BAY AVE,SOMERS POINT CITY,,1865,1,RES1,3001 -0121_1712_22,-74.881371,39.591599,54 E NEW JERSEY AVE,SOMERS POINT CITY,17,2005,1,RES1,3001 -0121_1712_23,-74.40466732,39.38880979,50 E NEW JERSEY AVE,SOMERS POINT CITY,16,1915,1,GOV1,3004 -0121_1712_24,-74.78481496,39.63569332,45 ANCHORAGE LN,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1712_25,-74.36852437,39.40744218,46 E NEW JERSEY AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1712_26,-74.36090396,39.41224184,42 E NEW JERSEY AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1712_28,-74.36684469,39.41757742,38 E NEW JERSEY AVE,SOMERS POINT CITY,16,1890,1,RES1,3001 -0121_1712_29,-74.36127984,39.41384034,33 ANCHORAGE LN,SOMERS POINT CITY,16,1920,1,GOV1,3004 -0121_1712_3,-74.51384917,39.40032306,814 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1712_30,-74.3731285,39.41155,34 E NEW JERSEY AVE,SOMERS POINT CITY,16,1918,1,RES1,3001 -0121_1712_31,-74.44800596,39.3751367,30 E NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1712_32,-74.519585,39.388851,20 E NEW JERSEY AVE (GAR),SOMERS POINT CITY,,0,1,RES1,3001 -0121_1712_33,-74.5179685,39.4006855,20 E NEW JERSEY AVE,SOMERS POINT CITY,28,1870,1,RES1,3001 -0121_1712_34,-74.50794111,39.40554862,18 E NEW JERSEY AVE,SOMERS POINT CITY,28,1925,1,RES1,3001 -0121_1712_35,-74.5042892,39.43077402,800 SHORE RD,SOMERS POINT CITY,,1898,1,RES1,3001 -0121_1712_36,-74.49050987,39.41843158,808 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1712_37,-74.79250644,39.63322966,805 BAY AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1712_38,-74.49379985,39.33746005,807 BAY AVE,SOMERS POINT CITY,,1910,1,RES1,3001 -0121_1712_4,-74.3653028,39.42150356,12 ANCHORAGE LN,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1712_5,-74.3696185,39.417224,11 DELAWARE AVE,SOMERS POINT CITY,16,1816,1,RES1,3001 -0121_1712_6.01,-74.37567905,39.41341053,16 ANCHORAGE LN,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1712_6.02,-74.359406,39.4120605,13 DELAWARE AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1712_7,-74.3620605,39.4191335,17 DELAWARE AVE,SOMERS POINT CITY,15,1900,1,RES1,3001 -0121_1712_8,-74.37465248,39.40428409,19 DELAWARE AVE,SOMERS POINT CITY,16,1900,1,GOV1,3004 -0121_1712_9,-74.36068143,39.41110635,20 ANCHORAGE LN,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1713_10,-74.355041,39.415009,837 BAY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1713_11.01,-74.40823432,39.38037642,7 MILLER LN,SOMERS POINT CITY,16,1920,1,GOV1,3004 -0121_1713_11.02,-74.390637,39.3886445,833 BAY AVE,SOMERS POINT CITY,16,1981,1,GOV1,3004 -0121_1713_12,-74.6508635,39.356664,827 BAY AVE REAR,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_1713_13,-74.45859242,39.35023482,40 DELAWARE AVE,SOMERS POINT CITY,16,1920,2,RES1,3001 -0121_1713_14,-74.45974736,39.34617934,36 DELAWARE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1713_15,-74.48392837,39.35041147,32 DELAWARE AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1713_16,-74.462632,39.358282,28 DELAWARE AVE,SOMERS POINT CITY,16,1892,2,RES1,3001 -0121_1713_17,-74.48451384,39.334975,24 MILLER LN,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1713_18,-74.48204717,39.35218349,24 DELAWARE AVE,SOMERS POINT CITY,15,1892,1,RES1,3001 -0121_1713_2,-74.46430389,39.34816284,19 SOMERS AVE,SOMERS POINT CITY,16,1900,3,RES1,3001 -0121_1713_20,-74.780829,39.637102,16 DELAWARE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1713_21,-74.77340267,39.6334314,14 DELAWARE AVE,SOMERS POINT CITY,16,1920,1,GOV1,3004 -0121_1713_22,-74.44019439,39.36868982,908 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1713_23,-74.36358384,39.4077257,900 SHORE RD,SOMERS POINT CITY,,1908,1,RES1,3001 -0121_1713_24,-74.398813,39.3948315,829 BAY AVE,SOMERS POINT CITY,17,1905,1,RES1,3001 -0121_1713_25,-74.7601444,39.30148718,825 BAY AVE,SOMERS POINT CITY,16,1905,1,RES1,3001 -0121_1713_3,-74.6188462,39.43757283,25 SOMERS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1713_4,-74.6540405,39.3562595,27 SOMERS AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_1713_5,-74.6331615,39.3626135,31 SOMERS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1713_7,-74.39198291,39.39143626,37 SOMERS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1713_8,-74.35486796,39.41492173,841 BAY AVE,SOMERS POINT CITY,16,1920,3,RES1,3001 -0121_1713_9,-74.37516258,39.39741868,839 BAY AVE,SOMERS POINT CITY,16,1925,2,RES1,3001 -0121_1714_4,-74.49968103,39.38194082,829 SHORE RD,SOMERS POINT CITY,,1920,1,RES1,3001 -0121_1714_5.01,-74.52012618,39.40124659,821 SHORE RD,SOMERS POINT CITY,,1934,1,RES1,3001 -0121_1714_5.02,-74.520761,39.3968015,819 SHORE RD,SOMERS POINT CITY,16,1900,2,RES1,3001 -0121_1714_6,-74.51778837,39.40538119,817 SHORE RD,SOMERS POINT CITY,16,1891,1,RES1,3001 -0121_1714_7,-74.49730523,39.43099562,811 SHORE RD,SOMERS POINT CITY,17,1891,1,RES1,3001 -0121_1714_8,-74.39609893,39.38782455,801 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1715_3,-74.36823041,39.42258479,833 CENTRE ST,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1715_6.01,-74.48002137,39.44284801,809 CENTRE ST,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1715_7,-74.66340518,39.46097898,20 W NEW JERSEY AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1716_1,-74.50328085,39.42839654,820 SECOND ST,SOMERS POINT CITY,15,1910,1,RES1,3001 -0121_1716_10,-74.567157,39.478182,810 SECOND ST,SOMERS POINT CITY,13,1930,2,RES1,3001 -0121_1716_11,-74.68090434,39.49446202,835 CENTRE ST,SOMERS POINT CITY,,0,1,GOV1,3004 -0121_1716_2,-74.47396962,39.44496664,814 SECOND ST,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1716_3,-74.38960595,39.39265736,FIRST ST + RR,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1716_4,-74.38297516,39.39388915,102 W NEW JERSEY AVE,SOMERS POINT CITY,,1963,1,RES1,3001 -0121_1716_5,-74.79650578,39.62188628,110 W NEW JERSEY AVE,SOMERS POINT CITY,16,1900,1,GOV1,3004 -0121_1716_7.01,-74.56152214,39.38822145,802 SECOND ST,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1716_8,-74.49074265,39.44114277,804 SECOND ST,SOMERS POINT CITY,16,1936,1,RES1,3001 -0121_1716_9,-74.63165864,39.4509666,808 SECOND ST,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_1717_11,-74.83197893,39.6140334,218 W NEW JERSEY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1717_12,-74.5078065,39.448535,220 W NEW JERSEY AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_1717_13,-74.52194139,39.44293102,222 W NEW JERSEY AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1717_14,-74.52244081,39.44883867,224 W NEW JERSEY AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1717_15,-74.5631915,39.3556285,810 THIRD ST,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_1717_2,-74.60920165,39.32951557,814 THIRD ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1717_3,-74.64726157,39.47017289,815 SECOND ST,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_1717_4,-74.690578,39.4481085,811 SECOND ST,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_1717_5,-74.38925284,39.39404198,809 SECOND ST,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_1717_6,-74.55464715,39.39890861,805 SECOND ST,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_1717_7,-74.59121569,39.37077129,803 SECOND ST,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1717_8,-74.56901254,39.34693513,200 W NEW JERSEY AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_1717_9,-74.5636625,39.3545445,206 W NEW JERSEY AVE,SOMERS POINT CITY,16,1954,1,RES4,3001 -0121_1718_2,-74.48915819,39.45857341,317 DOBBS AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1718_3,-74.5118435,39.4403485,315 DOBBS AVE,SOMERS POINT CITY,13,1920,1,RES1,3001 -0121_1718_4,-74.5689377,39.36054106,307 DOBBS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1718_5,-74.56529183,39.35253792,823 THIRD ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1718_7,-74.4317782,39.37305716,302 W NEW JERSEY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1718_8,-74.50717707,39.47905953,316 W NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1718_9.01,-74.5289805,39.5440415,320 W NEW JERSEY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1718_9.02,-74.52275998,39.46099484,806 FOURTH ST,SOMERS POINT CITY,16,1991,1,GOV1,3004 -0121_1719_1,-74.4951188,39.46465837,413 DOBBS AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1719_10,-74.5880665,39.3225905,418 W NEW JERSEY AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1719_11,-74.608956,39.330328,424 W NEW JERSEY AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1719_2,-74.5907425,39.32316,411 DOBBS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1719_3,-74.60157421,39.31544491,409 DOBBS AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1719_4,-74.536701,39.30434231,407 DOBBS AVE,SOMERS POINT CITY,16,1918,1,RES1,3001 -0121_1719_5,-74.5016235,39.49283,403 DOBBS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1719_6,-74.5890375,39.3254415,406 W NEW JERSEY AVE,SOMERS POINT CITY,16,1932,1,RES1,3001 -0121_1719_8,-74.52952709,39.45376144,408 W NEW JERSEY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1719_9,-74.5829634,39.34140857,412 W NEW JERSEY AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1720_1,-74.40026206,39.3870478,524 W NEW JERSEY AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1720_3,-74.8164955,39.63374117,514 W NEW JERSEY AVE,SOMERS POINT CITY,16,1947,1,RES1,3001 -0121_1720_4,-74.8243705,39.6189945,510 W NEW JERSEY AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1720_5,-74.65332018,39.35728022,508 W NEW JERSEY AVE,SOMERS POINT CITY,16,1932,2,RES1,3001 -0121_1720_6,-74.58517059,39.33098307,501 DOBBS AVE,SOMERS POINT CITY,,1964,1,RES1,3001 -0121_1720_7,-74.6416839,39.33951661,500 W NEW JERSEY AVE,SOMERS POINT CITY,16,1964,3,RES1,3001 -0121_1721_1,-74.57746211,39.41712352,604 W NEW JERSEY AVE,SOMERS POINT CITY,15,1953,1,RES1,3001 -0121_1810_13,-74.49970656,39.33315416,910 BAY AVE,SOMERS POINT CITY,,1969,1,RES1,3001 -0121_1810_15.02,-74.50204641,39.3361805,830 BAY AVE,SOMERS POINT CITY,,1968,1,RES1,3001 -0121_1810_17,-74.61863169,39.43848339,820 BAY AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1810_18,-74.70337302,39.36687384,816 BAY AVE,SOMERS POINT CITY,15,1908,1,RES1,3001 -0121_1810_19,-74.81054908,39.36733717,814 BAY AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_1810_20,-74.51242314,39.32668466,812 BAY AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1810_21,-74.460528,39.353467,800 BAY AVE .,SOMERS POINT CITY,,1876,1,RES1,3001 -0121_1810_8,-74.49176888,39.3312932,924 BAY AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1812_1,-74.38649,39.3938655,1 ANNIE AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_1812_10,-74.51123987,39.33552333,22 SOMERS AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_1812_11,-74.39259006,39.38719765,20 SOMERS AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_1812_12,-74.55521977,39.47324338,2 SOMERS AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1812_2,-74.49922213,39.33575401,7 ANNIE AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_1812_3,-74.4903942,39.35198562,17 ANNIE AVE,SOMERS POINT CITY,16,1950,1,RES3A,3001 -0121_1812_4,-74.50782991,39.33540301,23 ANNIE AVE,SOMERS POINT CITY,16,1920,1,COM4,3004 -0121_1812_5,-74.50811017,39.337618,29 ANNIE AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1812_8,-74.5111485,39.3374425,26 SOMERS AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1812_9,-74.37653733,39.40072852,24 SOMERS AVE,SOMERS POINT CITY,16,1945,1,RES1,3001 -0121_1813_1,-74.51252673,39.32021727,930 SHORE RD,SOMERS POINT CITY,16,1922,1,RES1,3001 -0121_1813_10,-74.4997945,39.328022,917 BAY AVE,SOMERS POINT CITY,16,1908,1,RES1,3001 -0121_1813_11,-74.50474812,39.32784546,915 BAY AVE,SOMERS POINT CITY,16,1908,1,RES1,3001 -0121_1813_12,-74.51240207,39.32397216,911 BAY AVE,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_1813_13,-74.51691469,39.32180283,30 ANNIE AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1813_14,-74.51107082,39.32061903,28 ANNIE AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1813_15,-74.52167184,39.32207399,24 ANNIE AVE,SOMERS POINT CITY,16,1860,1,RES1,3001 -0121_1813_16,-74.492135,39.3367105,22 ANNIE AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_1813_17,-74.4903423,39.33667287,18 ANNIE AVE,SOMERS POINT CITY,16,1920,2,RES1,3001 -0121_1813_18,-74.50741776,39.33734083,14 ANNIE AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_1813_19,-74.50359316,39.33779995,920 SHORE RD,SOMERS POINT CITY,,1910,1,RES1,3001 -0121_1813_2,-74.52492757,39.31992037,928 SHORE RD,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_1813_4,-74.51175115,39.32159197,7 GEORGE ST,SOMERS POINT CITY,16,1935,1,RES1,3001 -0121_1813_5,-74.510886,39.325488,15 GEORGE ST,SOMERS POINT CITY,16,1931,1,RES1,3001 -0121_1813_6,-74.50878959,39.32684016,17 GEORGE ST,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_1813_7,-74.50216094,39.32975683,927 BAY AVE,SOMERS POINT CITY,,1964,1,RES1,3001 -0121_1813_8,-74.5048815,39.3305775,921 BAY AVE,SOMERS POINT CITY,16,1907,1,RES1,3001 -0121_1813_9,-74.50826042,39.33013933,919 BAY AVE,SOMERS POINT CITY,16,1907,1,RES1,3001 -0121_1815_1.01,-74.7643535,39.3068935,1 BRADDOCK AVE,SOMERS POINT CITY,43,1940,5,RES1,3001 -0121_1815_1.02,-74.4614755,39.3546655,11 MACARTHUR BLVD,SOMERS POINT CITY,,1950,1,GOV1,3004 -0121_1815_10,-74.5137955,39.32909,905 SHORE RD,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_1815_5,-74.86917415,39.60141558,25 MACARTHUR BLVD,SOMERS POINT CITY,,1950,1,RES1,3001 -0121_1815_9.02,-74.76049234,39.30377903,909 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1816_1,-74.91460125,39.49634796,33 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1816_2,-74.76007827,39.42937347,31 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1816_3,-74.67156854,39.46200991,29 W LAUREL DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1816_4,-74.60622293,39.48724176,27 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1816_5,-74.573735,39.5010355,25 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1816_6,-74.85598621,39.43997714,23 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1816_7,-74.94147972,39.52344963,21 W LAUREL DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1816_8,-74.92369969,39.50822038,19 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1816_9,-74.75259449,39.45244967,17 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1817_1,-74.72329937,39.58735158,43 W LAUREL DR,SOMERS POINT CITY,16,1966,1,GOV1,3004 -0121_1817_2,-74.6313045,39.6129195,41 W LAUREL DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1817_3,-74.6426345,39.5283605,39 W LAUREL DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1817_4,-74.61154092,39.50702665,37 W LAUREL DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1817_5,-74.86941249,39.45599516,35 W LAUREL DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1912_1,-74.50458403,39.32665225,939 BAY AVE,SOMERS POINT CITY,,1910,1,RES1,3001 -0121_1912_7_C0022,-74.49926104,39.33425517,22 GEORGE ST,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1912_7_C0024,-74.49396183,39.33039051,24 GEORGE ST,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_1914_2,-74.502471,39.333551,301 MAYS LANDING,SOMERS POINT CITY,,1959,1,RES1,3001 -0121_1914_4,-74.51747203,39.31799671,27 WOODLAND AVE,SOMERS POINT CITY,15,1959,1,RES1,3001 -0121_1914_8,-74.51839811,39.31810764,10 MACARTHUR BLVD,SOMERS POINT CITY,,1971,1,RES1,3001 -0121_1914_9,-74.50285935,39.32841656,8 MACARTHUR BLVD,SOMERS POINT CITY,,1941,1,RES1,3001 -0121_1915_10,-74.49734564,39.33796483,102 BRADDOCK AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1915_11,-74.48128932,39.35214311,104 BRADDOCK AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_1915_12,-74.4473455,39.356082,106 WOODLAND AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1915_14.01,-74.38817665,39.39353016,110 WOODLAND AVE,SOMERS POINT CITY,,1993,1,RES1,3001 -0121_1915_5,-74.40576111,39.38006413,109 HOLLY HILLS DR,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1915_6,-74.76954017,39.33491097,107 HOLLY HILLS DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1915_7,-74.480612,39.336735,105 HOLLY HILLS DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1915_8,-74.458095,39.3538275,103 HOLLY HILLS DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1915_9,-74.84377418,39.58751372,101 HOLLY HILLS DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1916_1,-74.35959584,39.41421134,18 BRADDOCK DR,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1916_2,-74.37447057,39.41613174,16 BRADDOCK DR,SOMERS POINT CITY,16,1953,1,GOV1,3004 -0121_1916_3,-74.44908181,39.37281289,14 BRADDOCK DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1916_4,-74.52839,39.38615,12 BRADDOCK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1916_5,-74.52622242,39.39521435,10 BRADDOCK DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1916_7,-74.38617337,39.39284317,2 BRADDOCK DR,SOMERS POINT CITY,,1950,1,RES1,3001 -0121_1916_8.01,-74.365499,39.407796,105 BRADDOCK AVE,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_1916_8.02,-74.372229,39.404109,103 BRADDOCK AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1917_1,-74.52839574,39.38231745,15 BRADDOCK DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1917_10,-74.60770459,39.33095882,52 E LAUREL DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1917_11,-74.54325809,39.40056288,54 E LAUREL DR,SOMERS POINT CITY,16,1975,1,GOV1,3004 -0121_1917_12,-74.4574245,39.4618235,56 E LAUREL DR,SOMERS POINT CITY,15,1945,1,RES1,3001 -0121_1917_13,-74.67052517,39.4561499,1 BRADDOCK DR,SOMERS POINT CITY,16,1972,1,GOV1,3004 -0121_1917_14,-74.534181,39.5017275,3 BRADDOCK DR,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_1917_15,-74.4826125,39.45275783,7 BRADDOCK DR,SOMERS POINT CITY,16,1917,1,RES1,3001 -0121_1917_16,-74.50233764,39.41406332,9 BRADDOCK DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1917_17,-74.52782731,39.39977898,11 BRADDOCK DR,SOMERS POINT CITY,16,1942,2,RES1,3001 -0121_1917_2,-74.35941388,39.41162114,99 HOLLY HILLS DR,SOMERS POINT CITY,16,1942,1,RES1,3001 -0121_1917_3.01,-74.498781,39.423349,93 HOLLY HILLS DR,SOMERS POINT CITY,16,1994,1,RES1,3001 -0121_1917_3.02,-74.51577739,39.39500159,95 HOLLY HILLS DR,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_1917_4.01,-74.52297085,39.4247648,91 HOLLY HILLS DR,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1917_4.02,-74.39132084,39.39054097,10 PAR DR,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1917_6,-74.62803319,39.43831203,8 PAR DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1917_7,-74.3817275,39.3996915,6 PAR DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1917_8,-74.80939343,39.61382588,4 PAR DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1917_9,-74.554073,39.3562715,50 E LAUREL DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1918_1,-74.705709,39.446604,40 HOLLY HILLS DR,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_1918_10,-74.38266537,39.39807218,7 E VILLAGE DR,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1918_11,-74.39141034,39.39192147,5 E VILLAGE DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1918_12,-74.3860614,39.39230985,1 E VILLAGE DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1918_14,-74.52219492,39.44812637,1 PAR DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1918_16,-74.59319289,39.36921687,3 PAR DR,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1918_17,-74.40542771,39.38085142,5 PAR DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1918_2,-74.59054925,39.37921539,50 HOLLY HILLS DR,SOMERS POINT CITY,16,1944,1,RES1,3001 -0121_1918_3,-74.57461522,39.33852923,52 HOLLY HILLS DR,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1918_4,-74.56308191,39.35523645,54 HOLLY HILLS DR,SOMERS POINT CITY,16,1978,1,IND1,3002 -0121_1918_5,-74.569164,39.36349753,56 HOLLY HILLS DR,SOMERS POINT CITY,17,1960,1,RES1,3001 -0121_1918_6,-74.4894932,39.45614713,58 HOLLY HILLS DR,SOMERS POINT CITY,16,1979,1,IND1,3002 -0121_1918_7,-74.50818064,39.46244607,62 HOLLY HILLS DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1918_8,-74.40498739,39.38145074,11 E VILLAGE DR,SOMERS POINT CITY,16,1961,1,COM1,3004 -0121_1918_9,-74.414342,39.370854,9 E VILLAGE DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1919_1.01,-74.60127821,39.31915318,76 E LAUREL DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_1919_1.02,-74.59616168,39.31739401,2 E VILLAGE DR,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_1919_10,-74.80384095,39.62929107,68 E LAUREL DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1919_11,-74.6430648,39.34698238,72 E LAUREL DR,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1919_3,-74.50808609,39.46166364,8 E VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1919_4,-74.57784568,39.33684351,10 E VILLAGE DR,SOMERS POINT CITY,16,1969,1,COM4,3004 -0121_1919_5,-74.5940995,39.328055,906 NEW RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1919_6,-74.618233,39.320435,904 NEW RD,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_1919_7,-74.7966525,39.6311675,902 NEW RD,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_1919_8,-74.59724522,39.37291258,66 E LAUREL DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1920_1,-74.8134,39.62808,1 HOLLY HILLS DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1920_10,-74.60748073,39.50125133,25 HOLLY HILLS DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1920_11,-74.58362915,39.49552151,5 DOGWOOD DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1920_12,-74.60273,39.4972325,32 W LAUREL DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1920_13,-74.566753,39.475677,30 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1920_14,-74.71341238,39.47333931,28 W LAUREL DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1920_15,-74.94136717,39.52800499,26 W LAUREL DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1920_16,-74.93198156,39.49564625,24 W LAUREL DR,SOMERS POINT CITY,16,1963,1,RES1,3004 -0121_1920_17,-74.5832455,39.447692,22 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1920_18,-74.95127644,39.51123501,20 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1920_19,-74.62695712,39.4338609,18 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1920_2,-74.61855471,39.37098495,5 HOLLY HILLS DR,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_1920_20,-74.62510978,39.41066193,16 W LAUREL DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1920_21,-74.6377095,39.402151,14 W LAUREL DR,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1920_22,-74.6250885,39.3849545,12 W LAUREL DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1920_23,-74.58306708,39.42022592,10 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1920_3,-74.54720509,39.40579664,7 HOLLY HILLS DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1920_4,-74.60882564,39.42103317,9 HOLLY HILLS DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1920_5.01,-74.63454032,39.39198459,11 HOLLY HILLS DR,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_1920_5.02,-74.62298292,39.41906171,13 HOLLY HILLS DR,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_1920_5.03,-74.92841466,39.5088683,15 HOLLY HILLS DR,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_1920_6,-74.5546961,39.46685928,17 HOLLY HILLS DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1920_7,-74.910797,39.535181,19 HOLLY HILLS DR,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_1920_8,-74.8486795,39.38757,21 HOLLY HILLS DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1920_9,-74.8191175,39.4678955,23 HOLLY HILLS DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1921_1,-74.86913377,39.49534055,1 DOGWOOD LN,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1921_2,-74.84133151,39.48067491,10 LAUREL DR SOUTH,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1922_1,-74.52730707,39.52084031,1 VILLAGE DR NORTH,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1922_10,-74.6182031,39.37177403,17 VILLAGE DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1922_11,-74.572763,39.4279405,19 VILLAGE DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1922_12,-74.599146,39.435388,21 VILLAGE DR,SOMERS POINT CITY,16,1961,1,GOV1,3004 -0121_1922_13,-74.63971999,39.38290666,23 VILLAGE DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1922_14,-74.67391633,39.37902592,25 VILLAGE DR,SOMERS POINT CITY,16,1961,1,RES1,3002 -0121_1922_15,-74.62691901,39.41613815,27 VILLAGE DR,SOMERS POINT CITY,16,1960,1,RES3A,3004 -0121_1922_16,-74.62708783,39.42205786,29 VILLAGE DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1922_17,-74.53437055,39.45243934,31 VILLAGE DR,SOMERS POINT CITY,16,1960,1,GOV1,3004 -0121_1922_18,-74.945518,39.519543,33 VILLAGE DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1922_19,-74.9513415,39.51413,35 VILLAGE DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1922_20,-74.75618983,39.45378846,18 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1922_21,-74.93814594,39.52670214,16 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1922_22,-74.70961283,39.49850549,12 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1922_23,-74.85081,39.551754,10 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1922_24,-74.57433293,39.47948819,8 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1922_25,-74.57517719,39.49547418,34 VILLAGE DR NORTH,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1922_26,-74.9710855,39.512307,32 VILLAGE DR NORTH,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1922_28,-74.93046714,39.51224027,30 VILLAGE DR NORTH,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_1922_29,-74.55108004,39.47258929,28 VILLAGE DR NORTH,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1922_3,-74.59302018,39.32481656,3 VILLAGE DR,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_1922_30,-74.94568243,39.51756274,26 VILLAGE DR NORTH,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1922_31,-74.62127341,39.43519781,24 VILLAGE DR NORTH,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1922_32,-74.6375985,39.4094315,22 VILLAGE DR NORTH,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_1922_33,-74.6377395,39.401186,20 VILLAGE DR NORTH,SOMERS POINT CITY,16,1962,1,GOV1,3004 -0121_1922_35,-74.58947733,39.4249885,16 VILLAGE DR NORTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1922_36.01,-74.42376364,39.36970857,12 VILLAGE DR NORTH,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1922_36.02,-74.54145079,39.40929702,14 VILLAGE DR NORTH,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1922_37,-74.4095265,39.391762,10 VILLAGE DR NORTH,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1922_38,-74.80472131,39.62689483,8 VILLAGE DR NORTH,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1922_39,-74.64211033,39.3341033,6 VILLAGE DR NORTH,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1922_4,-74.473972,39.480706,5 VILLAGE DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1922_40,-74.5894069,39.32181494,4 VILLAGE DR NORTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1922_41,-74.57998694,39.32941318,2 VILLAGE DR NORTH,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1922_5,-74.58619757,39.33405571,7 VILLAGE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1922_6,-74.58129783,39.36279435,9 VILLAGE DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1922_7,-74.6583173,39.36461797,11 VILLAGE DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1922_8,-74.5514855,39.385161,13 VILLAGE DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1922_9,-74.3614945,39.412313,15 VILLAGE DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1923_1,-74.36745572,39.40912891,20 VILLAGE DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1924_1,-74.563938,39.3605225,1 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1924_10,-74.5879235,39.321482,19 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_11,-74.5871195,39.321092,21 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_12,-74.592355,39.3354025,16 VILLAGE DR,SOMERS POINT CITY,16,1956,1,GOV1,3004 -0121_1924_13,-74.52090093,39.46256115,14 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_14,-74.61829785,39.31345639,12 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_15,-74.4962955,39.5226415,10 VILLAGE DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1924_16,-74.52184061,39.46704813,8 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_17,-74.39433151,39.38802275,6 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_18,-74.50408992,39.45520105,4 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_19,-74.496129,39.448324,2 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_2,-74.56972653,39.34617294,3 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_3,-74.5729745,39.355473,5 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_4,-74.57020818,39.36350651,7 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_1924_5,-74.49539234,39.44748233,9 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_1924_6,-74.49809767,39.46201401,11 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_7,-74.391318,39.3950945,13 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1924_8,-74.47180686,39.49259377,15 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1924_9,-74.519972,39.532689,17 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1925_1,-74.59209722,39.31849567,25 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1925_2,-74.5877415,39.353022,23 VILLAGE DR SOUTH,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1926_1,-74.42449293,39.37031132,27 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1926_10,-74.6306315,39.381302,22 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1926_11,-74.62812655,39.4186968,42 VILLAGE DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1926_12,-74.638683,39.3994825,40 VILLAGE DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1926_13,-74.63836916,39.38134901,38 VILLAGE DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1926_14,-74.61226161,39.42878231,36 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1926_15,-74.60670763,39.42166532,34 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1926_16,-74.5831309,39.4232308,32 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1926_17,-74.558764,39.434571,30 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1926_18,-74.60677758,39.37999469,28 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1926_19,-74.44282219,39.37015494,26 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1926_2,-74.885177,39.4638565,29 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1926_3,-74.41058786,39.39129326,31 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1926_4,-74.361186,39.413947,33 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1926_5,-74.39943199,39.38714758,35 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1926_6,-74.3718117,39.40524585,37 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1926_7,-74.5884648,39.37819047,39 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1926_8,-74.4025262,39.39457915,41 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1926_9,-74.60580321,39.40975747,24 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_1927_1,-74.59823171,39.37217969,43 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1927_3,-74.61866552,39.43253999,47 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1927_4,-74.5862165,39.4279505,23 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1927_5,-74.62427498,39.381503,46 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1927_6,-74.62737106,39.39549065,44 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1928_1,-74.7968295,39.4150795,56 VILLAGE DR NORTH,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1928_2,-74.91429499,39.52790929,19 SOUTH HOLLY HILLS DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1928_3,-74.8312255,39.483453,54 VILLAGE DR NORTH,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1928_4,-74.57518565,39.48093497,52 VILLAGE DR NORTH,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1929_1,-74.8165022,39.62435398,34 W LAUREL DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1929_10,-74.80275079,39.59515469,28 DOGWOOD DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_11,-74.764451,39.653182,30 DOGWOOD DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_12,-74.79959092,39.64131311,32 DOGWOOD DR,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1929_13,-74.49283523,39.33205984,34 DOGWOOD DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1929_14,-74.51368917,39.32385299,36 DOGWOOD DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_15,-74.4624375,39.349038,38 DOGWOOD DR,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1929_16,-74.67494455,39.48246936,40 DOGWOOD DR,SOMERS POINT CITY,16,1960,1,RES1,3004 -0121_1929_17,-74.48403843,39.34515732,42 DOGWOOD DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_18,-74.50371273,39.34181412,44 DOGWOOD DR,SOMERS POINT CITY,16,1956,1,COM1,3004 -0121_1929_19,-74.370287,39.403584,46 DOGWOOD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1929_2,-74.82681668,39.40051526,12 DOGWOOD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1929_20,-74.40422014,39.38474357,64 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_21,-74.49217,39.3353995,62 W LAUREL DR,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1929_22,-74.481236,39.3512065,60 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_23,-74.67756199,39.44688134,58 W LAUREL DR,SOMERS POINT CITY,16,1923,1,RES1,3001 -0121_1929_24,-74.51219301,39.32946503,56 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1929_25,-74.50337135,39.33103848,54 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_26,-74.41499694,39.3649313,52 W LAUREL DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1929_27,-74.79040098,39.65568634,50 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_28,-74.8715555,39.6032095,48 W LAUREL DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1929_29,-74.7926305,39.627449,46 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_3,-74.90479097,39.49804934,14 DOGWOOD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1929_30,-74.85218143,39.55955634,44 W LAUREL DR,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1929_31,-74.621164,39.6069495,42 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_32,-74.637037,39.534218,40 W LAUREL DR,SOMERS POINT CITY,16,1956,1,GOV1,3004 -0121_1929_33,-74.86848764,39.4949963,38 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_34,-74.79004637,39.44369881,36 W LAUREL DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1929_4,-74.7115055,39.4731815,16 DOGWOOD DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1929_5,-74.881275,39.4737125,18 DOGWOOD DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1929_6,-74.62254641,39.51367717,20 DOGWOOD DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1929_7,-74.68015032,39.55837228,22 DOGWOOD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1929_8,-74.81417398,39.56033932,24 DOGWOOD DR,SOMERS POINT CITY,16,1966,1,COM1,3004 -0121_1929_9,-74.77862495,39.60664014,26 DOGWOOD DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1930_1,-74.66297049,39.63562762,5 LAUREL DR SOUTH,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1930_2,-74.7926615,39.612061,4 ROSE LN,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1930_3,-74.80143697,39.64428184,2 ROSE LN,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1930_4,-74.77620258,39.62634771,3 DOGWOOD DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1930_5,-74.874692,39.5402635,1 LAUREL DR SOUTH,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1930_6,-74.62594105,39.61131315,3 LAUREL DR SOUTH,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1931_1,-74.82281821,39.54080693,18 VIOLET LN,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1931_10,-74.4962642,39.42517659,49 DOGWOOD DR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1931_11,-74.3661049,39.4222052,47 DOGWOOD DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1931_12,-74.50773571,39.34083004,45 DOGWOOD DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1931_13,-74.46904087,39.34387734,43 DOGWOOD DR,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1931_14,-74.46111034,39.34897999,41 DOGWOOD DR,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1931_15,-74.499995,39.329134,39 DOGWOOD DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1931_16,-74.80938837,39.64730494,1 ROSE LN,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1931_17,-74.87575934,39.59744419,3 ROSE LN,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1931_18,-74.77792251,39.6206818,5 ROSE LN,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1931_19,-74.696981,39.639014,7 LAUREL DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1931_2,-74.78200509,39.63432126,16 VIOLET LN,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1931_20,-74.83299672,39.52427385,9 LAUREL DR SOUTH,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1931_3,-74.78727543,39.64284773,14 VIOLET LN,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1931_4,-74.433344,39.36588217,12 VIOLET LN,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1931_5,-74.5181015,39.3182605,10 VIOLET LN,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1931_6,-74.70225561,39.49512085,8 VIOLET LN,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1931_7,-74.4601465,39.353672,6 VIOLET LN,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1931_8,-74.394562,39.3943145,4 VIOLET LN,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1931_9,-74.3588195,39.413578,2 VIOLET LN,SOMERS POINT CITY,16,1960,1,GOV1,3004 -0121_1932_1,-74.95341972,39.51891826,45 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1932_10,-74.96301883,39.50471534,63 VILLAGE DR,SOMERS POINT CITY,18,2006,1,RES1,3001 -0121_1932_11,-74.83789271,39.45187487,65 VILLAGE DR,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1932_12,-74.7982975,39.434052,67 VILLAGE DR,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1932_13,-74.721011,39.6470995,69 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1932_14,-74.96208124,39.51147958,71 VILLAGE DR,SOMERS POINT CITY,16,1957,1,GOV1,3004 -0121_1932_15,-74.9241785,39.5072985,73 VILLAGE DR,SOMERS POINT CITY,16,1956,1,GOV1,3004 -0121_1932_16,-74.7584292,39.44897522,75 VILLAGE DR,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1932_17,-74.54970789,39.46472365,77 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1932_2,-74.63292141,39.43401568,47 VILLAGE DR,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1932_3,-74.63168086,39.42977785,49 VILLAGE DR,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1932_4,-74.53893,39.4603625,51 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_1932_5,-74.9286135,39.5185305,53 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1932_6,-74.96598545,39.5128391,55 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1932_7,-74.9390565,39.5222455,57 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1932_8,-74.69325769,39.41919803,59 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1932_9,-74.56388337,39.47754882,61 VILLAGE DR SOUTH,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1933_1,-74.8180165,39.377994,1 LANTERN LN,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1934_1,-74.78444392,39.63685832,17 VIOLET LN,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1934_10,-74.491689,39.420224,4 WISTERIA WALK,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1934_11,-74.755744,39.4318925,2 WISTERIA WALK,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_1934_12,-74.47522134,39.45701211,100 W LAUREL DR,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1934_14,-74.5043085,39.4291675,3 VIOLET LN,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1934_15,-74.36894498,39.41355183,5 VIOLET LN,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1934_16,-74.5072145,39.337118,7 VIOLET LN,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1934_17,-74.46974933,39.3436225,9 VIOLET LN,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_1934_18,-74.5127035,39.327957,11 VIOLET LN,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1934_19,-74.5086641,39.32474374,13 VIOLET LN,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_1934_2,-74.76151669,39.64007134,15 LAUREL DR SOUTH,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_1934_20,-74.79157185,39.64131696,15 VIOLET LN,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_1934_3,-74.80574481,39.65166244,18 WISTERIA WALK,SOMERS POINT CITY,16,1957,1,GOV1,3004 -0121_1934_4,-74.501179,39.328801,16 WISTERIA WALK,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_1934_5,-74.62232234,39.46005501,14 WISTERIA WALK,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1934_6,-74.449643,39.355172,12 WISTERIA WALK,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1934_7,-74.3802705,39.40054727,10 WISTERIA WALK,SOMERS POINT CITY,16,1967,1,GOV1,3004 -0121_1934_8,-74.45179032,39.37455494,8 WISTERIA WALK,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1934_9,-74.5189282,39.38996567,6 WISTERIA WALK,SOMERS POINT CITY,16,1966,1,GOV1,3004 -0121_1935_1,-74.64839634,39.47007697,17 LAUREL DR SOUTH,SOMERS POINT CITY,17,1960,1,RES1,3001 -0121_1935_10,-74.4608065,39.546744,35 LAUREL DR SOUTH,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1935_11,-74.59596234,39.31295113,37 LAUREL DR SOUTH,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1935_12,-74.59247343,39.31289387,39 LAUREL DR SOUTH,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1935_13,-74.52549379,39.47455696,1 WISTERIA WALK,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1935_14,-74.49797493,39.46718919,3 WISTERIA WALK,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1935_15,-74.81733802,39.39143356,5 WISTERIA WALK,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1935_16,-74.5020954,39.43246972,7 WISTERIA WALK,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1935_17,-74.52816915,39.38829475,9 WISTERIA WALK,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1935_18,-74.38174694,39.4155318,11 WISTERIA WALK,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1935_19,-74.462463,39.3527095,15 WISTERIA WALK,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1935_2,-74.4547524,39.35257833,19 LAUREL DR SOUTH,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1935_3,-74.3861721,39.39237233,21 LAUREL DR SOUTH,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_1935_4,-74.41046051,39.39139768,23 LAUREL DR SOUTH,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1935_5,-74.37513566,39.41233499,25 LAUREL DR SOUTH,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1935_6,-74.510048,39.4128545,27 LAUREL DR SOUTH,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1935_7,-74.755256,39.431937,29 LAUREL DR SOUTH,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_1935_8,-74.5043781,39.44579955,31 LAUREL DR SOUTH,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1935_9,-74.450367,39.4950115,33 LAUREL DR SOUTH,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_1936_1,-74.4845135,39.349096,5 FRESH SPRING COVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1936_2,-74.68355576,39.44216399,1 FRESH SPRING COVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1936_3,-74.75574655,39.43417963,3 FRESH SPRING COVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1937.01_1,-74.5243143,39.38730547,6 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,GOV1,3004 -0121_1937.01_10,-74.51119953,39.46595441,4 MALVERN RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937.01_11,-74.49075852,39.49633219,6 MALVERN RD,SOMERS POINT CITY,16,1967,1,COM1,3004 -0121_1937.01_12,-74.5920495,39.3276095,4 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937.01_2,-74.55145913,39.36563394,8 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937.01_3,-74.6095185,39.345739,10 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937.01_4,-74.5644395,39.3569625,44 LAUREL DR SOUTH,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_1937.01_5,-74.56154,39.3651025,42 LAUREL DR SOUTH,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1937.01_6,-74.51292993,39.39992417,40 LAUREL DR SOUTH,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1937.01_7,-74.58970467,39.32938851,38 LAUREL DR SOUTH,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1937.01_8,-74.4994636,39.5248467,36 LAUREL DR SOUTH,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1937.01_9,-74.51180989,39.43698514,34 LAUREL DR SOUTH,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1937_1,-74.49417806,39.33415016,20 LAUREL DR SOUTH,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_1937_10,-74.50735468,39.33531986,16 FRESH SPRING COVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1937_11,-74.50833359,39.33629888,14 FRESH SPRING COVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1937_12,-74.47536831,39.33834289,12 FRESH SPRING COVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_1937_13,-74.5164065,39.320507,10 FRESH SPRING COVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1937_14,-74.4952515,39.329614,8 FRESH SPRING COVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_1937_15,-74.43171082,39.36710949,6 FRESH SPRING COVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1937_16,-74.528153,39.310893,4 FRESH SPRING COVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1937_17,-74.49575462,39.33352716,2 FRESH SPRING COVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1937_18,-74.504291,39.3253745,60 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,GOV1,3004 -0121_1937_19,-74.82033178,39.65459172,58 GULPH MILL RD,SOMERS POINT CITY,16,1969,1,RES3B,3001 -0121_1937_2,-74.5150985,39.32112,22 LAUREL DR SOUTH,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_1937_20,-74.49387067,39.3336705,56 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1937_21,-74.501733,39.330141,54 GULPH MILL RD,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1937_22,-74.51633521,39.32326926,50 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1937_24,-74.48010907,39.33854274,48 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,GOV1,3004 -0121_1937_25,-74.4975492,39.33600852,46 GULPH MILL RD,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1937_26,-74.40968017,39.38299101,44 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1937_27,-74.455512,39.3799615,42 GULPH MILL RD,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1937_28,-74.5228905,39.3878305,40 GULPH MILL RD,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1937_29,-74.4909145,39.435566,38 GULPH MILL RD,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_1937_3,-74.64800779,39.45951935,24 LAUREL DR SOUTH,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_1937_30,-74.83852265,39.39299977,36 GULPH MILL RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1937_31,-74.5108965,39.4567675,34 GULPH MILL RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1937_32,-74.50010033,39.499653,32 GULPH MILL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1937_33,-74.5864045,39.329208,30 GULPH MILL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1937_34,-74.57490299,39.33603784,28 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_35,-74.577032,39.353732,26 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_36,-74.54730334,39.37267947,24 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_37,-74.8853135,39.5988965,22 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_38,-74.59215695,39.3808265,20 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_39,-74.53503019,39.40353967,18 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_4,-74.48569162,39.34831658,26 LAUREL DR SOUTH,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1937_40,-74.563609,39.4134725,16 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_41,-74.5588475,39.413526,14 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_42,-74.53852943,39.40909969,12 GULPH MILL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1937_45,-74.70859821,39.43085397,68 GULPH MILL RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1937_46,-74.5309365,39.4246735,3 MALVERN RD,SOMERS POINT CITY,16,1965,1,COM1,3004 -0121_1937_47,-74.52061314,39.40475471,32 LAUREL DR SOUTH,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1937_5,-74.51178966,39.33908637,28 LAUREL DR SOUTH,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1937_6,-74.50025518,39.38151859,30 LAUREL DR SOUTH,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_1937_7,-74.51440979,39.39854165,66 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1937_8,-74.37211427,39.40325767,64 GULPH MILL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1937_9,-74.406662,39.3778455,18 FRESH SPRING COVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1938_1,-74.52364406,39.39564932,23 GULPH MILL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1938_10,-74.6088425,39.3464155,5 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1938_11,-74.57057594,39.34505412,3 GULPH MILL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1938_12.01,-74.5930885,39.3233965,8 MALVERN RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1938_13,-74.60025083,39.32821746,10 MALVERN RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1938_2,-74.605961,39.343684,21 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES3A,3001 -0121_1938_3,-74.7707465,39.3142285,19 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1938_4,-74.56447448,39.37148523,17 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,GOV1,3004 -0121_1938_5,-74.72113792,39.44245247,15 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1938_6,-74.73493097,39.43966619,13 GULPH MILL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1938_7,-74.83018563,39.41078206,11 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1938_8,-74.5558215,39.3714005,9 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1938_9,-74.61018623,39.36654841,7 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,GOV1,3004 -0121_1939_1,-74.45979833,39.48070051,25 GULPH MILL RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1939_10,-74.62019164,39.4630392,41 GULPH MILL RD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_1939_11,-74.48106583,39.34091551,39 GULPH MILL RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1939_12,-74.48754169,39.33722933,37 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1939_13,-74.38274054,39.39696879,35 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1939_14,-74.4482065,39.3751915,33 GULPH MILL RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1939_15,-74.51855322,39.39056984,31 GULPH MILL RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1939_16,-74.50925922,39.41951718,29 GULPH MILL RD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_1939_17,-74.78372569,39.42079266,27 GULPH MILL RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1939_2,-74.51032834,39.45818347,9 MALVERN RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1939_3,-74.4875395,39.4381195,57 GULPH MILL RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1939_4,-74.49354534,39.43135005,53 GULPH MILL RD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_1939_5,-74.51260794,39.39813474,51 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1939_6,-74.370708,39.4024045,49 GULPH MILL RD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_1939_7,-74.436055,39.3712955,47 GULPH MILL RD,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_1939_8,-74.50207632,39.34271089,45 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1939_9,-74.47311017,39.3434585,43 GULPH MILL RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_1941.01_1,-74.5182095,39.4033435,991 MAYS LANDING RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1941.01_5.01,-74.50000986,39.46725764,901 MAYS LANDING RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1941_5.02_C0001,-74.50954867,39.33821196,1 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0002,-74.5102075,39.337239,2 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0003,-74.50789883,39.33647952,3 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0004,-74.51091696,39.33525185,4 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0005,-74.389627,39.389292,5 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0006,-74.4135655,39.3706175,6 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0007,-74.45820533,39.35147651,7 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0008,-74.44827589,39.35674375,8 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0009,-74.4747455,39.339703,9 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0010,-74.45593422,39.35019812,10 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0011,-74.5666915,39.478441,11 GREATE BAY DR,SOMERS POINT CITY,29,1978,1,RES1,3001 -0121_1941_5.02_C0012,-74.67040054,39.3532168,12 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0013,-74.42800479,39.37216764,13 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0014,-74.37875885,39.40006668,14 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0015,-74.398608,39.389896,15 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0016,-74.3882755,39.390281,16 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0017,-74.3887335,39.3905865,17 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0018,-74.3925925,39.3923795,18 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0019,-74.49921356,39.33744467,19 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0020,-74.37217185,39.40081797,20 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0021,-74.48870784,39.34884359,21 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0022,-74.48763434,39.34753855,22 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0023,-74.5032065,39.338005,23 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0024,-74.50773878,39.33687525,24 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0025,-74.49988809,39.33489966,25 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0026,-74.3758915,39.3969625,26 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0027,-74.4217975,39.370601,27 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0028,-74.4317164,39.37049742,28 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0029,-74.63354724,39.36112542,29 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0030,-74.64130888,39.35919627,30 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0031,-74.5528892,39.47195228,31 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0032,-74.556003,39.474428,32 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0033,-74.76435812,39.3354801,33 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0034,-74.8534381,39.3674148,34 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0035,-74.51165,39.3262685,35 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES3B,3001 -0121_1941_5.02_C0036,-74.4585105,39.3509865,36 FAIRVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0037,-74.39725078,39.38642863,37 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,GOV1,3004 -0121_1941_5.02_C0038,-74.39416133,39.38836974,38 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0039,-74.38335655,39.39326785,39 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0040,-74.37741739,39.39619919,40 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0041,-74.37179517,39.40026715,41 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0042,-74.51230418,39.33753038,42 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0043,-74.442431,39.3700745,43 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0044,-74.40765426,39.37910057,44 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0045,-74.3838185,39.3990485,45 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0046,-74.6371959,39.36330139,46 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0047,-74.55005657,39.47456278,47 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0048,-74.537597,39.372354,48 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0049,-74.45677611,39.34979773,49 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0050,-74.462151,39.3463245,50 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0051,-74.484759,39.334707,51 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3002 -0121_1941_5.02_C0052,-74.48068058,39.35098582,52 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0053,-74.48665079,39.35020075,53 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3002 -0121_1941_5.02_C0054,-74.4824615,39.34944167,54 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0055,-74.48381274,39.34894463,55 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,COM1,3004 -0121_1941_5.02_C0056,-74.483467,39.3444485,56 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,GOV1,3004 -0121_1941_5.02_C0057,-74.4848355,39.3381035,57 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0058,-74.4867475,39.337185,58 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0059,-74.79568113,39.36033821,59 GREATE BAY CT,SOMERS POINT CITY,29,1977,1,RES3B,3001 -0121_1941_5.02_C0060,-74.53232688,39.47020069,60 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0061,-74.53538406,39.38506516,61 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0062,-74.50968827,39.32968417,62 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0063,-74.4867195,39.3367975,63 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0065,-74.44504567,39.36148133,65 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0066,-74.465729,39.3568,66 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0067,-74.4940955,39.341629,67 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0068,-74.49212676,39.33988219,68 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0069,-74.49626076,39.3374699,69 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES3B,3001 -0121_1941_5.02_C0070,-74.4365045,39.369082,70 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0071,-74.79482174,39.63928577,71 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES3B,3001 -0121_1941_5.02_C0072,-74.77568742,39.63260774,72 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0073,-74.88071055,39.59512282,73 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES3A,3001 -0121_1941_5.02_C0074,-74.88017615,39.59596051,74 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0075,-74.84101928,39.585475,75 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0076,-74.79418021,39.63414657,76 BAYVIEW DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0077,-74.46130396,39.35262559,77 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0078,-74.46334929,39.35526989,78 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,GOV1,3004 -0121_1941_5.02_C0079,-74.4811425,39.3504895,79 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0080,-74.46674256,39.34549731,80 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0081,-74.463985,39.3484245,81 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0082,-74.46435846,39.34887565,82 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1941_5.02_C0083,-74.502352,39.338241,83 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,GOV1,3004 -0121_1941_5.02_C0084,-74.5027325,39.342236,84 GREATE BAY DR,SOMERS POINT CITY,29,1977,1,RES1,3001 -0121_1943_2,-74.38177038,39.40097437,31 MAYS LANDING RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_1943_5,-74.39705683,39.38801818,23 MAYS LANDING RD,SOMERS POINT CITY,,1956,1,RES1,3001 -0121_1944_1,-74.50818795,39.46729884,49 MAYS LANDING RD,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_1944_2,-74.51828631,39.44409807,43 MAYS LANDING RD,SOMERS POINT CITY,,1972,1,RES1,3001 -0121_1945_1,-74.50947147,39.43931832,99 MAYS LANDING RD,SOMERS POINT CITY,,1961,1,RES1,3001 -0121_1953_1.01,-74.55919482,39.41453102,95 MAYS LANDING RD,SOMERS POINT CITY,18,1973,1,RES1,3001 -0121_2012_1,-74.4375165,39.366171,50 BROADWAY,SOMERS POINT CITY,,0,1,RES3A,3001 -0121_2012_11,-74.56413062,39.36865488,4 BROADWAY,SOMERS POINT CITY,,1948,1,RES3A,3001 -0121_2012_12,-74.3635515,39.418395,1 MACARTHUR BLVD,SOMERS POINT CITY,,1960,1,GOV1,3004 -0121_2012_2,-74.43504485,39.3657557,42 BROADWAY,SOMERS POINT CITY,16,1951,1,RES3A,3001 -0121_2012_3,-74.52023644,39.31706514,38 BROADWAY,SOMERS POINT CITY,20,2005,1,COM1,3004 -0121_2012_5,-74.52550058,39.31644059,40 BROADWAY,SOMERS POINT CITY,19,1992,1,RES3B,3001 -0121_2012_5.02,-74.5243525,39.3142285,30 BROADWAY,SOMERS POINT CITY,17,2009,1,RES1,3001 -0121_2012_6,-74.52357215,39.31335655,26 BROADWAY,SOMERS POINT CITY,16,1955,1,GOV1,3004 -0121_2012_7,-74.50700882,39.32436001,24 BROADWAY,SOMERS POINT CITY,17,1940,1,RES1,3001 -0121_2012_8,-74.5069785,39.322952,1 LANDING LN,SOMERS POINT CITY,18,1980,1,RES1,3001 -0121_2012_9.03,-74.49410066,39.33310093,2 LANDING LN,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_2012_9.04,-74.52490617,39.31385151,6 LANDING LN,SOMERS POINT CITY,16,1988,1,RES1,3002 -0121_2012_9.06,-74.43453926,39.36605925,11 LANDING LN,SOMERS POINT CITY,17,1987,1,RES1,3001 -0121_2013_1.01,-74.49104355,39.33130835,11 BROADWAY,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_2013_1.02,-74.5400005,39.3906015,9 BROADWAY,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_2014_1.01,-74.53090453,39.30829884,59 BROADWAY,SOMERS POINT CITY,18,1988,1,RES1,3001 -0121_2014_1.02,-74.52595333,39.31716735,57 BROADWAY,SOMERS POINT CITY,18,1990,1,RES1,3001 -0121_2014_11.01,-74.53985584,39.39323752,21 BROADWAY,SOMERS POINT CITY,18,1990,1,RES1,3001 -0121_2014_13.01,-74.53849758,39.38662015,19 BROADWAY,SOMERS POINT CITY,17,1994,1,RES3A,3002 -0121_2014_13.02,-74.54649026,39.3897043,17 BROADWAY,SOMERS POINT CITY,17,1994,1,RES1,3001 -0121_2014_13.03,-74.54531416,39.38961851,15 BROADWAY,SOMERS POINT CITY,16,1986,1,RES1,3001 -0121_2014_13.04,-74.54637941,39.38818714,13 BROADWAY,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_2014_2,-74.521543,39.316755,55 BROADWAY,SOMERS POINT CITY,18,1990,1,RES1,3001 -0121_2014_3,-74.52256084,39.31528749,51 BROADWAY,SOMERS POINT CITY,18,2009,1,RES1,3001 -0121_2014_4,-74.50653454,39.32576873,45 BROADWAY,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_2014_5,-74.49696908,39.33415556,41 BROADWAY,SOMERS POINT CITY,16,1950,1,RES3A,3001 -0121_2014_6,-74.4904615,39.3332565,39 BROADWAY,SOMERS POINT CITY,16,1970,1,RES1,3002 -0121_2014_7,-74.4964,39.3316435,35 BROADWAY,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_2014_8.01,-74.3684666,39.40296716,33 BROADWAY,SOMERS POINT CITY,18,1957,1,RES1,3001 -0121_2014_8.02,-74.35799934,39.41486748,29 BROADWAY,SOMERS POINT CITY,17,1981,1,RES1,3001 -0121_2014_9,-74.569429,39.3727115,27 BROADWAY,SOMERS POINT CITY,17,1995,1,RES1,3001 -0121_2018_1.01,-74.46700046,39.3439888,90 BROADWAY-BLDG C,SOMERS POINT CITY,43,1953,4,RES1,3001 -0121_2018_1.02,-74.47922831,39.34987108,90 BROADWAY-BLDG A,SOMERS POINT CITY,43,1949,4,RES1,3001 -0121_2018_1.03,-74.473317,39.343801,90 BROADWAY-BLDG B,SOMERS POINT CITY,43,1957,2,RES1,3001 -0121_2018_1.04,-74.42189812,39.36429039,BROADWAY,SOMERS POINT CITY,,1960,1,RES1,3001 -0121_2020_1.01,-74.514163,39.3285155,600 MAYS LANDING RD,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_2026_1,-74.48386441,39.34176564,1246 ATKINSON AVE,SOMERS POINT CITY,43,1930,2,RES1,3001 -0121_2026_3,-74.557097,39.4739915,1254 ATKINSON AVE,SOMERS POINT CITY,16,1920,2,RES1,3001 -0121_2026_4,-74.37960621,39.40154145,1260 ATKINSON AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_2031_11,-74.405877,39.3934695,1231 ATKINSON AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_2031_15,-74.50701266,39.40662958,1-3 SEASHORE LN,SOMERS POINT CITY,43,1964,2,RES1,3001 -0121_2031_16.01,-74.52218895,39.38950654,7 SEASHORE LN,SOMERS POINT CITY,27,1964,1,RES1,3001 -0121_2031_16.02,-74.52838201,39.40210383,5 SEASHORE LN,SOMERS POINT CITY,27,1966,1,RES1,3001 -0121_2031_17,-74.51595373,39.38979985,9 SEASHORE LN,SOMERS POINT CITY,27,1966,1,RES1,3001 -0121_2031_18,-74.44575053,39.37110631,11 SEASHORE LN,SOMERS POINT CITY,27,1966,1,RES1,3001 -0121_2031_19,-74.379422,39.413593,13-15 SEASHORE LN,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_2031_2,-74.553178,39.4711385,30 MAYS LANDING RD,SOMERS POINT CITY,,1962,1,RES1,3001 -0121_2031_20,-74.36714211,39.41266987,17-19 SEASHORE LN,SOMERS POINT CITY,43,1964,2,RES1,3001 -0121_2031_21,-74.520901,39.3823515,18-20 SEASHORE LN,SOMERS POINT CITY,43,1966,2,RES1,3002 -0121_2031_22,-74.5089584,39.40625366,14-16 SEASHORE LN,SOMERS POINT CITY,43,1966,2,COM1,3004 -0121_2031_23,-74.49491629,39.43124179,26 MAYS LANDING RD,SOMERS POINT CITY,,1965,1,RES1,3001 -0121_2031_24,-74.5140855,39.4157515,24 MAYS LANDING RD,SOMERS POINT CITY,27,1964,1,RES1,3001 -0121_2031_25,-74.50182767,39.41482301,22 MAYS LANDING RD,SOMERS POINT CITY,27,1965,1,RES1,3001 -0121_2031_8,-74.8415565,39.603938,1245 ATKINSON AVE,SOMERS POINT CITY,15,1926,1,RES1,3001 -0121_2031_9,-74.374021,39.4107515,1233 ATKINSON AVE REAR,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_2032_1,-74.39127047,39.38864834,90 MAYS LANDING RD,SOMERS POINT CITY,,1971,1,RES1,3001 -0121_2032_10,-74.4642675,39.467189,74 MAYS LANDING RD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_2032_12.02,-74.496247,39.4523295,50 MAYS LANDING RD,SOMERS POINT CITY,,1973,1,RES1,3001 -0121_2032_4,-74.60303555,39.3267062,84 MAYS LANDING RD,SOMERS POINT CITY,,1964,1,RES1,3001 -0121_2032_8,-74.59114572,39.37219196,80 MAYS LANDING RD,SOMERS POINT CITY,16,1965,4,RES1,3001 -0121_2032_9,-74.87566312,39.6030164,76 MAYS LANDING RD,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_2040_1.01,-74.57324592,39.33739467,101 HARLAN AVE,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_2040_1.02,-74.57184164,39.3419465,11 HORTER AVE,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_2040_1.03,-74.8072265,39.6165005,13 HORTER AVE,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_2040_2.01,-74.3877865,39.394263,7 HORTER AVE,SOMERS POINT CITY,16,1979,1,RES3A,3001 -0121_2041_1,-74.51633916,39.45174004,15 CLIVEDEN AVE,SOMERS POINT CITY,15,1962,1,RES1,3001 -0121_2041_10,-74.5581286,39.36672031,8 HARLAN AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_2041_11,-74.55008,39.3606105,10 HORTER AVE,SOMERS POINT CITY,15,1969,1,RES1,3001 -0121_2041_2,-74.37480199,39.39946916,13 CLIVEDEN AVE,SOMERS POINT CITY,15,1904,1,RES1,3001 -0121_2041_3,-74.40616424,39.38415284,11 CLIVEDEN AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_2041_4,-74.45837868,39.49364677,9 CLIVEDEN AVE,SOMERS POINT CITY,16,1965,1,GOV1,3004 -0121_2041_5,-74.598527,39.3159395,7 CLIVEDEN AVE,SOMERS POINT CITY,16,1955,1,RES3A,3001 -0121_2041_6.01,-74.67801516,39.49119048,3 CLIVEDEN AVE,SOMERS POINT CITY,17,2008,1,RES3A,3001 -0121_2041_6.02,-74.59534472,39.34353664,96 MAYS LANDING RD,SOMERS POINT CITY,16,2004,1,RES1,3001 -0121_2041_7.01,-74.39819721,39.38823509,6 HORTER AVE,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_2041_7.02,-74.4918627,39.44657527,8 HORTER AVE,SOMERS POINT CITY,16,1976,1,COM10,3003 -0121_2042_1.04,-74.60918601,39.32076373,1 WOODLAWN AVE,SOMERS POINT CITY,17,2005,1,RES1,3001 -0121_2042_2,-74.5751765,39.367984,20 CLIVEDEN AVE,SOMERS POINT CITY,15,1960,1,RES1,3001 -0121_2042_4,-74.5019685,39.46988,16 CLIVEDEN AVE,SOMERS POINT CITY,15,1972,1,RES1,3001 -0121_2042_5,-74.37791839,39.39727145,14 CLIVEDEN AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_2042_6,-74.52399832,39.46107982,12 CLIVEDEN AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_2042_7,-74.49722562,39.49330631,10 CLIVEDEN AVE,SOMERS POINT CITY,16,1954,1,AGR1,3001 -0121_2042_9,-74.60435685,39.32251846,2 CLIVEDEN AVE,SOMERS POINT CITY,15,1938,1,RES1,3001 -0121_211_1,-74.7536325,39.4320995,122 CAMPBELL AVE,SOMERS POINT CITY,16,1939,1,RES1,3001 -0121_211_10,-74.643715,39.431843,1 BAY AVE,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_211_11,-74.55587132,39.49990833,132 E OCEAN AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_211_12,-74.74815466,39.39974489,130 E OCEAN AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_211_13,-74.517836,39.4160835,124 E OCEAN AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_211_14,-74.50302059,39.33067467,118 E OCEAN AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_211_15,-74.523536,39.3184865,102 E OCEAN AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_211_16,-74.7473825,39.4463035,100 E OCEAN AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_211_2,-74.50770204,39.43608683,104 CAMPBELL AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_211_3,-74.78456637,39.43487778,3 HARNED AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_211_4,-74.70489214,39.47752131,5 HARNED AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_211_5,-74.5578035,39.4756395,7 HARNED AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_211_6,-74.62205855,39.43282324,9 HARNED AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_211_7,-74.66266244,39.40095638,11 HARNED AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_211_8,-74.5872725,39.432815,15 BAY AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_212_1,-74.53140102,39.40470082,101 E WILMONT AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_212_10,-74.5663145,39.416661,8 HARNED AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_212_11,-74.58193765,39.42377036,6 HARNED AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_212_12,-74.6195183,39.37176542,4 HARNED AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_212_13,-74.62703355,39.42227021,2 HARNED AVE,SOMERS POINT CITY,45,1965,4,RES1,3001 -0121_212_3,-74.53578603,39.39170572,109 E WILMONT AVE,SOMERS POINT CITY,17,1935,1,RES1,3001 -0121_212_4,-74.53291966,39.37881398,119 E WILMONT AVE,SOMERS POINT CITY,16,2008,1,RES1,3001 -0121_212_5,-74.50181368,39.42746994,123 E WILMONT AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_212_6.01,-74.47868009,39.33857417,127 E WILMONT AVE,SOMERS POINT CITY,16,1947,1,RES1,3001 -0121_212_6.02,-74.49875983,39.331229,23 BAY AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_212_8,-74.55355425,39.38090071,12 HARNED AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_212_9,-74.592854,39.378283,10 HARNED AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_213_10,-74.81405365,39.39933631,115 CAMPBELL AVE,SOMERS POINT CITY,16,1921,1,RES1,3001 -0121_213_11,-74.49196884,39.42121682,121 CAMPBELL AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_213_12,-74.71139625,39.42920497,127 CAMPBELL AVE,SOMERS POINT CITY,16,1928,1,GOV1,3004 -0121_213_13,-74.53189715,39.45379556,129 CAMPBELL AVE,SOMERS POINT CITY,15,1926,1,RES1,3001 -0121_213_3.01,-74.50267031,39.32800459,116 CLEVELAND AVE,SOMERS POINT CITY,15,1939,1,COM1,3004 -0121_213_5,-74.72340979,39.45225694,112 CLEVELAND AVE,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_213_6,-74.75835703,39.44541292,110 CLEVELAND AVE,SOMERS POINT CITY,17,2017,1,RES1,3001 -0121_213_7,-74.85967786,39.48951828,106 CLEVELAND AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_213_8,-74.49364805,39.33672367,104 CLEVELAND AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_213_9,-74.727907,39.453463,111 CAMPBELL AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_2131_1.03,-74.48789351,39.34785017,1302 ATKINSON AVE,SOMERS POINT CITY,16,2008,1,RES1,3001 -0121_2132_1,-74.50241536,39.33564696,1323 ATKINSON AVE,SOMERS POINT CITY,16,1922,1,RES1,3001 -0121_2133_3,-74.4528655,39.356849,2 CHESTNUT ST,SOMERS POINT CITY,,1973,1,RES1,3001 -0121_214_1,-74.75369609,39.44607475,128 SHORE RD,SOMERS POINT CITY,,1970,1,RES1,3001 -0121_2142.01_1,-74.81035062,39.63770788,120 MAYS LANDING RD,SOMERS POINT CITY,15,1945,1,RES1,3001 -0121_215_4,-74.5060165,39.445991,101 SHORE RD,SOMERS POINT CITY,,1964,1,RES1,3001 -0121_215_5,-74.63609785,39.59600696,115 SHORE RD,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_215_6,-74.68658085,39.54971004,119 SHORE RD,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_215_7,-74.50693155,39.33801535,121 SHORE RD,SOMERS POINT CITY,16,2017,1,RES1,3001 -0121_215_8,-74.5616058,39.52540376,123 SHORE RD,SOMERS POINT CITY,16,1945,1,RES1,3001 -0121_216_1,-74.46098317,39.49555575,300 BLISS AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_216_2,-74.48852464,39.49837112,302 BLISS AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_216_3,-74.48899811,39.44365866,306 BLISS AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_216_4,-74.59048274,39.45666753,308 BLISS AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_216_5,-74.8027263,39.54006857,307 HARRISON AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_216_7,-74.56865208,39.47807685,305 HARRISON AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_216_8,-74.45140283,39.48847651,303 HARRISON AVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_216_9,-74.5066255,39.45432,301 HARRISON AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_217_1,-74.569491,39.3440335,300 PHILADELPHIA AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_217_2,-74.59862366,39.31440017,302 PHILADELPHIA AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_217_3,-74.45741033,39.47410899,304 PHILADELPHIA AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_217_4,-74.49945355,39.48723786,306 PHILADELPHIA AVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_217_5,-74.49798595,39.45045973,307 BLISS AVE,SOMERS POINT CITY,16,1969,1,GOV1,3004 -0121_217_6,-74.50954275,39.51135339,305 BLISS AVE,SOMERS POINT CITY,16,1969,1,GOV1,3004 -0121_217_7,-74.44981557,39.49171625,303 BLISS AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_217_8,-74.58871284,39.32858651,301 BLISS AVE,SOMERS POINT CITY,16,1968,1,RES3A,3001 -0121_218_1,-74.55110272,39.37692147,106 W OCEAN AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_218_2,-74.81246622,39.35493853,104 W OCEAN AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_218_3,-74.6001607,39.36025644,101 ATLANTIC AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_218_4,-74.57537604,39.34000067,103 ATLANTIC AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_218_5,-74.60863167,39.32426138,105 ATLANTIC AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_218_7,-74.5651555,39.3542945,206 EUCLID AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_218_8,-74.6051095,39.3503885,204 EUCLID AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_218_9,-74.63357515,39.35140372,304 EUCLID AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_219_1,-74.57462325,39.4165654,112 W OCEAN AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_219_2,-74.60759048,39.38689563,110 W OCEAN AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_219_3,-74.5506925,39.383788,303 EUCLID AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_219_4,-74.6275555,39.359968,205 EUCLID AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_219_5,-74.5486225,39.375816,306 BUFFALO AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_219_6,-74.54846426,39.3873591,302 BUFFALO AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_220_1,-74.79271124,39.61751347,116 W OCEAN AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_220_2,-74.60787927,39.41974884,301 BUFFALO AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_220_3,-74.57481177,39.41230405,303 BUFFALO AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_220_4,-74.6137125,39.373669,305 BUFFALO AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_220_5,-74.5615645,39.411763,306 STEELMAN AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_220_6,-74.58987971,39.43291854,304 STEELMAN AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_2231_1.01,-74.54250729,39.39141404,1422 ATKINSON AVE,SOMERS POINT CITY,16,1982,1,GOV1,3004 -0121_2231_1.02,-74.57490331,39.36889535,1409 ROBERTS AVE,SOMERS POINT CITY,16,1982,1,RES1,3001 -0121_2231_1.03,-74.53486249,39.38618817,1407 ROBERTS AVE,SOMERS POINT CITY,16,1982,1,RES1,3001 -0121_2231_1.04,-74.53644341,39.39811867,1405 ROBERTS AVE,SOMERS POINT CITY,16,1982,1,RES1,3001 -0121_2231_1.05,-74.5530095,39.3894615,1428 ATKINSON AVE,SOMERS POINT CITY,16,1982,1,RES1,3001 -0121_2231_2,-74.4925655,39.33157,1418 ATKINSON AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_2231_3,-74.49639,39.3288795,1414 ATKINSON AVE,SOMERS POINT CITY,15,1925,1,GOV1,3004 -0121_2231_4,-74.50252268,39.32777848,1400 ATKINSON AVE,SOMERS POINT CITY,15,1950,1,GOV1,3004 -0121_2231_5,-74.49865165,39.33330996,1401 ROBERTS AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_2231_6.02,-74.50446817,39.33328948,1408 ATKINSON AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_2232_1.02,-74.49437957,39.33000618,1425 ATKINSON AVE,SOMERS POINT CITY,15,1906,1,RES1,3001 -0121_2232_2,-74.49936249,39.33118616,1409 ATKINSON AVE,SOMERS POINT CITY,15,1900,1,RES1,3001 -0121_2232_3,-74.51823066,39.31972551,1401 ATKINSON AVE,SOMERS POINT CITY,16,2008,1,RES1,3001 -0121_224_1,-74.68206856,39.51356793,100 NEW RD,SOMERS POINT CITY,,1968,1,RES1,3001 -0121_224_5.01,-74.81234415,39.65836851,401 OCEAN HEIGHTS AVE,SOMERS POINT CITY,,1972,1,RES1,3001 -0121_224_6.01,-74.8441631,39.62342967,112 NEW RD,SOMERS POINT CITY,,2008,1,RES3A,3001 -0121_2332_1.01,-74.52032952,39.31624534,1512 ATKINSON AVE,SOMERS POINT CITY,17,1994,1,RES1,3001 -0121_2332_1.03,-74.37053795,39.40380333,1504 ATKINSON AVE,SOMERS POINT CITY,16,1994,1,RES1,3001 -0121_2332_2,-74.49563128,39.33278531,1000 SPRUCE ST,SOMERS POINT CITY,18,1996,1,RES1,3004 -0121_250_1.01,-74.8844605,39.493839,195 NEW RD,SOMERS POINT CITY,,1974,1,RES1,3001 -0121_250_2,-74.4430405,39.358568,535 W OCEAN HTS AVE,SOMERS POINT CITY,,2011,1,RES1,3001 -0121_250_3,-74.59849046,39.3145214,2 BETHEL RD,SOMERS POINT CITY,,2006,1,RES1,3001 -0121_251_1,-74.43183778,39.36631369,OCEAN HEIGHTS PLAZA,SOMERS POINT CITY,,2004,1,RES1,3001 -0121_251_2.01,-74.5988045,39.3132225,615 W OCEAN HEIGHTS AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_251_2.02,-74.80861914,39.66013797,416 W OCEAN HEIGHTS AVE,SOMERS POINT CITY,15,1900,1,RES1,3001 -0121_251_3,-74.598726,39.3141135,400 W OCEAN HEIGHTS,SOMERS POINT CITY,16,1903,2,GOV1,3004 -0121_251_4.03,-74.647436,39.5446925,321 NEW RD,SOMERS POINT CITY,,1980,1,RES1,3001 -0121_310_1.01,-74.53028457,39.3095387,152 SUNNY AVE,SOMERS POINT CITY,16,1978,1,RES3A,3001 -0121_310_1.02,-74.5017361,39.4149401,105 E MEYRAN AVE,SOMERS POINT CITY,16,1932,1,RES1,3001 -0121_310_10.01,-74.50531022,39.41012447,114 E WILMONT AVE,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_310_10.02,-74.52633434,39.31256253,116 E WILMONT AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_310_11,-74.50102789,39.33187185,112 E WILMONT AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_310_12,-74.46313884,39.34790183,110 E WILMONT AVE,SOMERS POINT CITY,16,1928,1,GOV1,3004 -0121_310_13,-74.485202,39.335801,104 E WILMONT AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_310_14,-74.498044,39.430612,150 SUNNY AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_310_2,-74.51724744,39.38711969,109 E MEYRAN AVE,SOMERS POINT CITY,15,1932,1,GOV1,3004 -0121_310_3,-74.929664,39.507772,119 E MEYRAN AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_310_4,-74.80815334,39.63855353,123 E MEYRAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_310_5,-74.72825006,39.58713495,129 E MEYRAN AVE,SOMERS POINT CITY,16,1972,1,GOV1,3004 -0121_310_6,-74.890142,39.47296,103 BAY AVE,SOMERS POINT CITY,17,1981,1,GOV1,3004 -0121_310_8,-74.94074675,39.5257804,120 E WILMONT AVE,SOMERS POINT CITY,17,1929,1,RES1,3001 -0121_310_9,-74.4548857,39.37405816,118 E WILMONT AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_311.01_1.01,-74.75472124,39.42953403,132 SHORE RD,SOMERS POINT CITY,16,1953,1,GOV1,3004 -0121_311.01_1.02,-74.50536291,39.33055884,130 SHORE RD,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_311.01_2,-74.83437085,39.38445748,1 E WILMONT AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_311.01_3,-74.7094266,39.41364683,3 E WILMONT AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_311.01_4,-74.606092,39.4995555,5 E WILMONT AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_311.01_5,-74.549838,39.4753315,7 E WILMONT AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_311.01_6,-74.62377695,39.43200178,9 E WILMONT AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_311.01_7,-74.62261822,39.41825337,11 E WILMONT AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_311.01_8,-74.6096625,39.4229515,13 E WILMONT AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_311.01_9,-74.60048484,39.41402269,15 E WILMONT AVE,SOMERS POINT CITY,15,1950,1,GOV1,3004 -0121_311_1,-74.60016807,39.4196273,160 SHORE RD,SOMERS POINT CITY,,1935,1,RES1,3001 -0121_311_10,-74.57226117,39.37128354,14 E WILMONT AVE,SOMERS POINT CITY,16,1953,1,GOV1,3004 -0121_311_11,-74.5897792,39.37021502,12 E WILMONT AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_311_12,-74.61702818,39.37008958,10 E WILMONT AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_311_13,-74.57493031,39.41624976,8 E WILMONT AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_311_14,-74.57164685,39.42946757,6 E WILMONT AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_311_15,-74.60197682,39.41989343,4 E WILMONT AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_311_2,-74.63181531,39.41061528,156 SHORE RD,SOMERS POINT CITY,15,1947,1,RES1,3001 -0121_311_3,-74.64520459,39.4314728,2 E WILMONT AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_311_5,-74.55340932,39.37693814,17 E MEYRAN AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_311_6,-74.56183,39.3744425,19 E MEYRAN AVE,SOMERS POINT CITY,16,1961,1,RES3A,3001 -0121_311_7,-74.43334933,39.49182948,23 E MEYRAN AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_311_8,-74.497182,39.420357,153 SUNNY AVE,SOMERS POINT CITY,16,1929,1,RES1,3001 -0121_311_9,-74.5526005,39.3806975,151 SUNNY AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_312.01_1,-74.50105106,39.42942734,33 W WILMONT AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_312.01_10,-74.82702617,39.49577833,141 SHORE RD,SOMERS POINT CITY,,1928,1,RES1,3001 -0121_312.01_2,-74.53970274,39.46821362,31 W WILMONT AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_312.01_3,-74.8063095,39.5285,29 W WILMONT AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_312.01_4,-74.60836171,39.59198148,27 W WILMONT AVE,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_312.01_5,-74.64576785,39.53338355,25 W WILMONT AVE,SOMERS POINT CITY,16,1960,1,GOV1,3004 -0121_312.01_6,-74.491808,39.334394,23 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_312.01_7,-74.466293,39.35722,21 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_312.01_8,-74.4845475,39.346975,19 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_312.01_9,-74.617505,39.5081795,15 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,COM1,3004 -0121_312_1,-74.71031322,39.47076772,35 W MEYRAN AVE,SOMERS POINT CITY,17,2017,1,RES1,3001 -0121_312_10,-74.50890594,39.40738784,157 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_312_11,-74.51111517,39.323106,16 W WILMONT AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_312_12,-74.8130045,39.405598,24 W WILMONT AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_312_13,-74.74948388,39.44569633,26 W WILMONT AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_312_14,-74.71364034,39.47041596,28 W WILMONT AVE,SOMERS POINT CITY,16,1951,1,GOV1,3004 -0121_312_15,-74.5922035,39.51753,30 W WILMONT AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_312_2,-74.50927297,39.33882416,34 W WILMONT AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_312_3,-74.73300314,39.44287451,33 W MEYRAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_312_4,-74.45180263,39.35534529,32 W WILMONT AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_312_5,-74.51208746,39.32734748,31 W MEYRAN AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_312_6,-74.4927625,39.431439,29 W MEYRAN AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_312_7,-74.79363694,39.41669116,19 W MEYRAN AVE,SOMERS POINT CITY,16,1969,1,GOV1,3004 -0121_312_8,-74.63025385,39.47392403,17 W MEYRAN AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_313.01_1,-74.80683739,39.35384531,130 MONTGOMERY AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_313.01_2,-74.634082,39.3178685,145 W WILMONT AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_313.01_3,-74.5958193,39.3492252,141 W WILMONT AVE,SOMERS POINT CITY,16,1956,1,GOV1,3004 -0121_313.01_4,-74.563985,39.3622315,137 W WILMONT AVE,SOMERS POINT CITY,16,1965,1,GOV1,3004 -0121_313.01_5,-74.60616402,39.32278867,123 W WILMONT AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_313.01_6,-74.59394083,39.32767423,119 W WILMONT AVE,SOMERS POINT CITY,16,1930,1,GOV1,3004 -0121_313.01_7,-74.508422,39.483017,101 W WILMONT AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_313.01_8,-74.47501716,39.48374441,107 ATLANTIC AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_313_1,-74.57934488,39.31110375,197 W MEYRAN AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_313_10,-74.701993,39.576897,101 W MEYRAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_313_11,-74.5522675,39.4760475,201 ATLANTIC AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_313_12.01,-74.50940283,39.461842,140 W WILMONT AVE,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_313_12.02,-74.53048985,39.46116195,138 W WILMONT AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_313_12.04,-74.46528625,39.49654355,120 W WILMONT AVE,SOMERS POINT CITY,16,1927,1,RES1,3001 -0121_313_15,-74.5940665,39.3116715,142 W WILMONT AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_313_16,-74.56700733,39.35088197,150 W WILMONT AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_313_2,-74.52648182,39.46450505,141 W MEYRAN AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_313_3,-74.4401224,39.5162388,137 W MEYRAN AVE,SOMERS POINT CITY,16,1951,1,GOV1,3004 -0121_313_4,-74.451114,39.5017765,133 W MEYRAN AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_313_5,-74.470012,39.4516455,131 W MEYRAN AVE,SOMERS POINT CITY,16,1974,1,GOV1,3004 -0121_313_7,-74.55657386,39.47838167,127 W MEYRAN AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_313_8,-74.5409835,39.467399,123 W MEYRAN AVE,SOMERS POINT CITY,16,1956,1,RES1,3004 -0121_313_9,-74.8543245,39.542158,107 W MEYRAN AVE,SOMERS POINT CITY,16,1958,1,COM10,3003 -0121_314.01_1,-74.73702371,39.48991718,98 NEW RD,SOMERS POINT CITY,,1952,1,RES1,3001 -0121_314.01_10,-74.5889215,39.4323005,213 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_314.01_11,-74.58984345,39.4033272,211 W WILMONT AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_314.01_12,-74.56818207,39.41227811,209 W WILMONT AVE,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_314.01_13,-74.5858895,39.3731635,203 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_314.01_2,-74.56392765,39.46999538,229 W WILMONT AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_314.01_3,-74.64381733,39.43571903,227 W WILMONT AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_314.01_4,-74.62133364,39.42344776,225 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_314.01_5,-74.67461148,39.37823332,223 W WILMONT AVE,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_314.01_6,-74.64349886,39.37918529,221 W WILMONT AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_314.01_7,-74.81247843,39.61629965,219 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_314.01_8,-74.87131717,39.57288451,217 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_314.01_9,-74.7473035,39.5918995,215 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_314_1,-74.63203888,39.39268529,100 BETHEL RD,SOMERS POINT CITY,16,1958,1,GOV1,3004 -0121_314_10,-74.563467,39.3709785,221 W MEYRAN AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_314_11,-74.5388815,39.376251,219 W MEYRAN AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_314_12,-74.63512306,39.34897777,215 W MEYRAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_314_13,-74.5722114,39.36349628,209 W MEYRAN AVE,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_314_14.01,-74.606536,39.325461,317 MONTGOMERY AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_314_14.02,-74.60865248,39.32761367,207 W MEYRAN AVE,SOMERS POINT CITY,16,1926,1,RES3A,3001 -0121_314_15,-74.60012642,39.42965568,216 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_314_16,-74.5970255,39.435064,214 W WILMONT AVE,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_314_17,-74.5532335,39.436017,212 W WILMONT AVE,SOMERS POINT CITY,16,1962,1,COM5,3004 -0121_314_18,-74.54058274,39.40977662,210 W WILMONT AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_314_19,-74.58799469,39.37235477,208 W WILMONT AVE,SOMERS POINT CITY,16,1961,1,GOV1,3004 -0121_314_2,-74.8746645,39.59312033,106 BETHEL RD,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_314_20,-74.56023731,39.37170946,206 W WILMONT AVE,SOMERS POINT CITY,16,1960,1,GOV1,3004 -0121_314_21,-74.80439208,39.36633537,204 W WILMONT AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_314_22,-74.5819915,39.366135,315 MONTGOMERY AVE,SOMERS POINT CITY,16,1956,1,RES3A,3001 -0121_314_3,-74.59895992,39.43500769,118 BETHEL RD,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_314_4,-74.59625669,39.40824813,235 W MEYRAN AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_314_5,-74.87547936,39.59141069,218 W WILMONT AVE,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_314_6,-74.60641379,39.40934711,231 W MEYRAN AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_314_7,-74.561048,39.412789,229 W MEYRAN AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_314_8,-74.60406419,39.38955127,227 W MEYRAN AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_314_9,-74.59722665,39.38031678,225 W MEYRAN AVE,SOMERS POINT CITY,16,1946,1,RES1,3001 -0121_315_1,-74.9668715,39.512636,199 NEW RD,SOMERS POINT CITY,,1972,1,RES1,3001 -0121_410_1.01,-74.7012157,39.63876392,101 E DAWES AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_410_10,-74.64503488,39.55042041,122 E MEYRAN AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_410_11,-74.67081466,39.6192245,118 E MEYRAN AVE,SOMERS POINT CITY,16,1950,1,GOV1,3004 -0121_410_12,-74.71540296,39.57723334,108 E MEYRAN AVE,SOMERS POINT CITY,16,1951,1,GOV1,3004 -0121_410_13,-74.76299602,39.61008183,106 E MEYRAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_410_14,-74.87923534,39.59131353,104 E MEYRAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_410_15,-74.83585016,39.62642398,102 E MEYRAN AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_410_3,-74.6413985,39.5345545,107 E DAWES AVE,SOMERS POINT CITY,16,1955,2,RES1,3001 -0121_410_4,-74.8827405,39.56051,109 E DAWES AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_410_5,-74.73063927,39.45491562,111 E DAWES AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_410_6,-74.6453938,39.43108646,113 E DAWES AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_410_7,-74.621576,39.4248585,211 BAY AVE,SOMERS POINT CITY,17,1966,1,RES1,3001 -0121_410_8,-74.71368633,39.4646905,209 BAY AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_410_9.01,-74.63627068,39.52550556,124 E MEYRAN AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_410_9.02,-74.8585513,39.48777096,207 BAY AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_411_10,-74.52312632,39.38874998,34 E MEYRAN AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_411_11,-74.44050908,39.36595815,26 E MEYRAN AVE,SOMERS POINT CITY,16,1930,1,EDU1,3004 -0121_411_12,-74.496595,39.3318085,22 E MEYRAN AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_411_13,-74.457188,39.3493845,18 E MEYRAN AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_411_14,-74.4793425,39.3370125,16 E MEYRAN AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_411_2,-74.48054731,39.44375647,11 E DAWES AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_411_3,-74.522955,39.384941,23 E DAWES AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_411_4,-74.93937619,39.52127696,25 E DAWES AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_411_5,-74.92086277,39.51982328,27 E DAWES AVE,SOMERS POINT CITY,15,1923,1,RES1,3001 -0121_411_6,-74.85784165,39.61584502,33 E DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_411_7,-74.80103135,39.63682523,35 E DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_411_8,-74.78960269,39.63456612,37 E DAWES AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_411_9,-74.93778732,39.52638151,40 E MEYRAN AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_412_1,-74.6302057,39.40688956,49 W DAWES AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_412_10,-74.56224713,39.40908571,207 SHORE RD,SOMERS POINT CITY,,1928,1,GOV1,3004 -0121_412_11,-74.55402737,39.42714639,16 W MEYRAN AVE,SOMERS POINT CITY,16,1941,1,GOV1,3004 -0121_412_12,-74.59226178,39.43432144,22 W MEYRAN AVE,SOMERS POINT CITY,16,1955,1,RES1,3002 -0121_412_13,-74.59979381,39.43596896,24 W MEYRAN AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_412_14,-74.62261418,39.41456829,26 W MEYRAN AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_412_15,-74.62171724,39.43114094,28 W MEYRAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_412_16,-74.57564408,39.47769136,30 W MEYRAN AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_412_2.01,-74.54049815,39.4693293,212 ATLANTIC AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_412_2.02,-74.6030425,39.485117,210 ATLANTIC AVE,SOMERS POINT CITY,15,1962,1,RES1,3001 -0121_412_3,-74.51662741,39.41166259,34 W MEYRAN AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_412_4,-74.71404,39.4314015,32 W MEYRAN AVE,SOMERS POINT CITY,15,1948,1,RES1,3001 -0121_412_5,-74.623187,39.3792725,15 W DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_412_6,-74.57487818,39.41189407,9 W DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_412_7,-74.605712,39.3867515,7 W DAWES AVE,SOMERS POINT CITY,16,1949,1,RES1,3004 -0121_412_8,-74.59460144,39.38208487,19 W DAWES AVE,SOMERS POINT CITY,16,1949,1,RES3C,3001 -0121_412_9,-74.569484,39.376044,215 SHORE RD,SOMERS POINT CITY,,2001,1,RES1,3001 -0121_413_1,-74.547374,39.4766189,157 W DAWES AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_413_10,-74.5171303,39.40293559,101 W DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_413_11,-74.50999276,39.32807333,207 ATLANTIC AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_413_13.01,-74.75793957,39.44855777,102 W MEYRAN AVE,SOMERS POINT CITY,16,1950,1,GOV1,3004 -0121_413_13.02,-74.8719715,39.4897045,104 W MEYRAN AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_413_14,-74.48097927,39.35190329,122 W MEYRAN AVE,SOMERS POINT CITY,16,1935,1,RES1,3001 -0121_413_15,-74.6438835,39.53896,126 W MEYRAN AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_413_17,-74.7002728,39.58212197,134 W MEYRAN AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_413_18,-74.6835085,39.414115,176 W MEYRAN AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_413_19,-74.55778595,39.47377472,180 W MEYRAN AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_413_2,-74.8247647,39.56662734,153 W DAWES AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_413_20,-74.48459498,39.46178294,182 W MEYRAN AVE,SOMERS POINT CITY,16,1966,1,GOV1,3004 -0121_413_21,-74.45642689,39.48925118,184 W MEYRAN AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_413_3,-74.69500435,39.63828127,151 W DAWES AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_413_4,-74.6346675,39.5551325,149 W DAWES AVE,SOMERS POINT CITY,16,1952,1,GOV1,3004 -0121_413_5,-74.50809416,39.3393555,145 W DAWES AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_413_6,-74.44734217,39.35540399,125 W DAWES AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_413_7,-74.5935685,39.5198815,123 W DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_413_8,-74.83333171,39.48451182,121 W DAWES AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_413_9,-74.7586335,39.448269,117 W DAWES AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_414_1,-74.5343385,39.3907985,200 BETHEL RD,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_414_10,-74.490404,39.5192325,215 W DAWES AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_414_11,-74.45959925,39.49189072,201 W DAWES AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_414_12,-74.60129192,39.34696134,222 W MEYRAN AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_414_13,-74.582005,39.3410505,220 W MEYRAN AVE,SOMERS POINT CITY,16,1947,1,RES1,3001 -0121_414_14,-74.5551066,39.36295618,218 W MEYRAN AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_414_15,-74.57326455,39.35051405,216 W MEYRAN AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_414_16,-74.59215634,39.33312748,214 W MEYRAN AVE,SOMERS POINT CITY,16,1958,1,GOV1,3004 -0121_414_17,-74.57514813,39.3332768,212 W MEYRAN AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_414_19,-74.462841,39.4922205,204 W MEYRAN AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_414_2,-74.6251665,39.360876,206 BETHEL RD,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_414_3,-74.5949285,39.3408865,218 BETHEL RD,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_414_4,-74.61060366,39.31841504,225 W DAWES AVE,SOMERS POINT CITY,16,1959,1,GOV1,3004 -0121_414_5,-74.68797284,39.35885756,224 W MEYRAN AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_414_6,-74.609463,39.3274555,223 W DAWES AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_414_7,-74.5893303,39.32430813,221 W DAWES AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_414_8,-74.469495,39.4884385,219 W DAWES AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_414_9,-74.5310435,39.45387197,217 W DAWES AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_42_1.01,-74.66921588,39.41502058,104 W OCEAN HEIGHTS AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_42_1.02,-74.62749212,39.43376668,102 W OCEAN HEIGHTS AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_42_1.03,-74.63901674,39.41125695,3 ABBEY RD,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_42_1.04,-74.6260085,39.3934685,5 ABBEY RD,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_42_1.05,-74.65504706,39.40041664,2 ABBEY RD,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_42_1.06,-74.6136745,39.4277745,4 ABBEY RD,SOMERS POINT CITY,16,1984,1,GOV1,3004 -0121_42_1.07,-74.85021,39.598782,6 ABBEY RD,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_499_14.02,-74.8789025,39.5956925,210 NEW RD,SOMERS POINT CITY,,1974,1,RES1,3001 -0121_499_15.01,-74.66970891,39.49806215,325 W GROVELAND AVE,SOMERS POINT CITY,,0,1,RES1,3001 -0121_499_15.02,-74.51462989,39.32842977,420 NEW RD,SOMERS POINT CITY,,1994,1,RES1,3001 -0121_499_16,-74.63642282,39.38547726,200 NEW RD,SOMERS POINT CITY,,1983,1,RES1,3001 -0121_499_6,-74.518959,39.4086875,401-405 BETHEL RD,SOMERS POINT CITY,,2002,1,RES1,3001 -0121_510_1,-74.58591185,39.40877593,101 E PIERSON AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_510_10,-74.5811595,39.430086,112 E DAWES AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_510_11,-74.6241615,39.3861215,110 E DAWES AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_510_12,-74.62071412,39.43511355,108 E DAWES AVE,SOMERS POINT CITY,16,1957,1,GOV1,3004 -0121_510_13,-74.663901,39.405839,106 E DAWES AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_510_14,-74.749918,39.446276,104 E DAWES AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_510_15,-74.75650071,39.44801446,100 E DAWES AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_510_16,-74.62632442,39.41488482,210 SUNNY AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_510_2,-74.63514719,39.38406116,292 SUNNY AVE,SOMERS POINT CITY,16,1960,1,RES1,3001 -0121_510_3,-74.56398366,39.41386323,115 E PIERSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_510_4,-74.5883175,39.379548,123 E PIERSON AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_510_5,-74.548256,39.388322,125 E PIERSON AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_510_6,-74.718955,39.4496535,217 BAY AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_510_7,-74.42531929,39.35912685,215 BAY AVE,SOMERS POINT CITY,18,2006,1,RES1,3001 -0121_510_8,-74.58637067,39.38286983,213 BAY AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_510_9,-74.574895,39.4110205,114 E DAWES AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_511_10,-74.6384165,39.5373085,34 E DAWES AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_511_11,-74.66531531,39.51576396,30 E DAWES AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_511_12,-74.70181562,39.57792582,28 E DAWES AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_511_13,-74.79873583,39.53579,22 E DAWES AVE,SOMERS POINT CITY,16,1935,1,RES1,3001 -0121_511_14,-74.74899056,39.60145039,20 E DAWES AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_511_15,-74.7779559,39.63274992,18 E DAWES AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_511_16,-74.919379,39.513986,4 E DAWES AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_511_5,-74.7625634,39.63543087,21 E PIERSON AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_511_6,-74.6363491,39.42999153,27 E PIERSON AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_511_9.02,-74.88262665,39.49720788,201 SUNNY AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_512_3,-74.44718631,39.37169241,29 W PIERSON AVE,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_512_4,-74.93375081,39.52214914,27 W PIERSON AVE,SOMERS POINT CITY,15,1924,1,RES1,3001 -0121_512_5,-74.92134285,39.5081186,25 W PIERSON AVE,SOMERS POINT CITY,15,1935,2,IND2,3002 -0121_512_7,-74.80619046,39.63884634,235 SHORE RD,SOMERS POINT CITY,,2004,1,RES1,3001 -0121_512_8,-74.950445,39.516477,229 SHORE RD,SOMERS POINT CITY,,1950,1,RES1,3001 -0121_512_9,-74.53070273,39.38619888,223 SHORE RD,SOMERS POINT CITY,,1954,1,RES1,3001 -0121_513_1,-74.7616995,39.428347,171 W PIERSON AVE,SOMERS POINT CITY,16,2008,1,RES1,3001 -0121_513_10,-74.56530698,39.37353434,105 W PIERSON AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_513_11,-74.53466684,39.37680701,103 W PIERSON AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_513_12,-74.49719095,39.43463568,101 W PIERSON AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_513_13,-74.5530645,39.3777445,100 DORAN AVE,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_513_14,-74.5394835,39.412026,102 DORAN AVE,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_513_15,-74.60689571,39.42212716,110 DORAN AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_513_16,-74.662706,39.404547,112 DORAN AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_513_17,-74.61094744,39.48673226,123 DORAN AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_513_18.01,-74.48906388,39.42002598,152 DORAN AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_513_18.02,-74.8377575,39.3703885,150 DORAN AVE,SOMERS POINT CITY,16,1905,1,RES1,3001 -0121_513_19,-74.50458151,39.34136467,296 BETHEL RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_513_2,-74.62090549,39.43672393,167 W PIERSON AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_513_21,-74.50355867,39.33035499,298 BETHEL RD,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_513_3,-74.54028578,39.47237395,159 W PIERSON AVE,SOMERS POINT CITY,16,1963,1,RES1,3001 -0121_513_4,-74.6449775,39.408854,143 W PIERSON AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_513_5,-74.59843812,39.43505965,139 W PIERSON AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_513_6,-74.606512,39.413151,129 W PIERSON AVE,SOMERS POINT CITY,16,1923,1,RES1,3001 -0121_513_7.01,-74.5983575,39.3797665,125 W PIERSON AVE,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_513_7.02,-74.57438782,39.41827444,127 W PIERSON AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_513_8,-74.594833,39.382874,123 W PIERSON AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_513_9,-74.53229216,39.38613776,121 W PIERSON AVE,SOMERS POINT CITY,16,1964,1,RES1,3001 -0121_514_1.01,-74.63429303,39.51151073,503 MONTGOMERY AVE,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_514_1.03,-74.71589739,39.45123355,149 DORAN AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_514_10,-74.644359,39.43578,100 W DAWES AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_514_11,-74.56796565,39.47866946,108 W DAWES AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_514_12,-74.6320105,39.445928,114 W DAWES AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_514_13,-74.8188815,39.3808135,116 W DAWES AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_514_14,-74.49449919,39.43134211,120 W DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_514_15,-74.516769,39.319144,138 W DAWES AVE,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_514_16,-74.72725834,39.45319775,142 W DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_514_17,-74.628016,39.505877,148 W DAWES AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_514_18,-74.459008,39.353743,150 W DAWES AVE,SOMERS POINT CITY,16,1964,1,GOV1,3004 -0121_514_19,-74.646299,39.5353895,156 W DAWES AVE,SOMERS POINT CITY,16,1953,1,RES1,3001 -0121_514_2,-74.50385692,39.32745741,147 DORAN AVE,SOMERS POINT CITY,16,2005,1,RES1,3001 -0121_514_3,-74.49473055,39.42969866,145 DORAN AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_514_4,-74.8260785,39.376921,143 DORAN AVE,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_514_5,-74.68896231,39.44846876,115 DORAN AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_514_6,-74.53902127,39.47086244,113 DORAN AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_514_7,-74.68028315,39.38793421,107 DORAN AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_514_8.01,-74.599916,39.41737517,105 DORAN AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_514_8.02,-74.56663903,39.41827007,225 ATLANTIC AVE,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_514_9,-74.620212,39.377936,223 ATLANTIC AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_515_1.01,-74.451168,39.4880995,222 W DAWES AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_515_2.01,-74.5553815,39.4663875,230 BETHEL RD,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_515_2.02,-74.857628,39.553649,221 DORAN AVE,SOMERS POINT CITY,16,1968,1,RES2,3005 -0121_515_3,-74.45410038,39.50000832,216 W DAWES AVE,SOMERS POINT CITY,15,1953,1,RES1,3001 -0121_515_4.01,-74.67678938,39.55332892,215 DORAN AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_515_4.02,-74.71564885,39.55887194,217 DORAN AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_515_6,-74.50765065,39.43546579,212 W DAWES AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_515_8.02,-74.63484736,39.52999104,502 MONTGOMERY AVE,SOMERS POINT CITY,16,1994,1,RES1,3001 -0121_515_8.03,-74.69297002,39.41666518,208 W DAWES AVE,SOMERS POINT CITY,16,1994,1,RES1,3001 -0121_516_1,-74.585489,39.40727942,17 CHAPMAN BLVD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_516_10,-74.79849893,39.44108403,19 CRESTVIEW DR,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_516_11,-74.82447081,39.49716627,21 CRESTVIEW DR,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_516_12,-74.57115819,39.54641892,23 CRESTVIEW DR,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_516_13,-74.88208753,39.48210048,331 NEW RD,SOMERS POINT CITY,,1997,1,RES1,3001 -0121_516_13.01,-74.60563118,39.39170446,399 NEW RD,SOMERS POINT CITY,,1994,1,RES1,3001 -0121_516_2,-74.60063155,39.41975266,3 CRESTVIEW DR,SOMERS POINT CITY,16,1966,1,COM1,3004 -0121_516_3,-74.78889641,39.61866176,5 CRESTVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_516_4,-74.86569764,39.60042077,7 CRESTVIEW DR,SOMERS POINT CITY,16,1966,1,COM1,3004 -0121_516_5,-74.61388435,39.43048317,9 CRESTVIEW DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_516_6,-74.64962938,39.39850513,11 CRESTVIEW DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_516_7,-74.6234375,39.4245665,13 CRESTVIEW DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_516_8,-74.6477315,39.4318695,15 CRESTVIEW DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_516_9,-74.5543049,39.46632172,17 CRESTVIEW DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_517_1,-74.81049185,39.61954245,21 CHAPMAN BLVD,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_517_10,-74.63783765,39.53353772,17 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_517_11,-74.64126288,39.53355073,19 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_517_12,-74.65714515,39.52523156,24 CRESTVIEW DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_517_13,-74.5913205,39.5392125,22 CRESTVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_517_14,-74.877324,39.4953495,20 CRESTVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_517_15,-74.824082,39.492042,18 CRESTVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_517_16,-74.7690635,39.4598135,16 CRESTVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_517_17,-74.54915877,39.46695594,14 CRESTVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_517_18,-74.63606918,39.43416594,12 CRESTVIEW DR,SOMERS POINT CITY,16,1967,1,COM1,3004 -0121_517_19,-74.62612236,39.41592769,10 CRESTVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_517_2,-74.63501867,39.3844839,1 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_517_20,-74.63091105,39.3922522,8 CRESTVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_517_21,-74.79532633,39.62985798,6 CRESTVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_517_22,-74.85100767,39.59808682,4 CRESTVIEW DR,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_517_23,-74.7167055,39.57518638,19 CHAPMAN BLVD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_517_3,-74.67575269,39.3887843,3 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_517_4,-74.62105,39.43419758,5 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,GOV1,3004 -0121_517_5,-74.53816237,39.46109422,7 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_517_6,-74.58839011,39.45802249,9 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_517_7,-74.88227451,39.45750007,11 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_517_8,-74.86217622,39.48093209,13 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_517_9,-74.53164355,39.52117673,15 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_519_1,-74.7022955,39.6358545,31 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_519_2,-74.630461,39.616773,29 DEFEO LN,SOMERS POINT CITY,16,1994,1,RES1,3001 -0121_519_3,-74.79049743,39.6441087,27 DEFEO LN,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_519_4,-74.7096645,39.5669825,25 DEFEO LN,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_519_5,-74.70709961,39.56980341,23 DEFEO LN,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_519_6,-74.886596,39.598889,21 DEFEO LN,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_520_1,-74.66098704,39.40309654,27 CHAPMAN BLVD,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_520_10,-74.9495015,39.5146785,19 EDGEWOOD DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_520_11,-74.67609856,39.55832046,20 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_520_12,-74.646641,39.5300935,18 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_520_13,-74.6512295,39.5293475,16 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_520_14,-74.5603745,39.544232,14 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_520_15,-74.84538605,39.48882097,12 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_520_16,-74.8327293,39.47951558,10 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_520_17,-74.61766673,39.46212443,8 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_520_18,-74.70177386,39.42051325,6 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1968,1,GOV1,3004 -0121_520_19,-74.629958,39.4215085,4 SCHOOLHOUSE DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_520_2,-74.69000181,39.41763276,3 EDGEWOOD DR,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_520_20,-74.62034651,39.38229402,23 CHAPMAN BLVD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_520_21,-74.64475867,39.39417054,25 CHAPMAN BLVD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_520_3,-74.6188039,39.43654319,5 EDGEWOOD DR,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_520_4,-74.87269522,39.44405882,7 EDGEWOOD DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_520_5,-74.8633845,39.486279,9 EDGEWOOD DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_520_6,-74.5314715,39.527676,11 EDGEWOOD DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_520_7,-74.63566856,39.53375396,13 EDGEWOOD DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_520_8,-74.64753053,39.53512516,15 EDGEWOOD DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_520_9,-74.6821271,39.55381949,17 EDGEWOOD DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_521_1,-74.53919716,39.47019032,33 CHAPMAN BLVD,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_521_10,-74.94015055,39.52106371,18 EDGEWOOD DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_521_11,-74.9316515,39.5271135,16 EDGEWOOD DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_521_12,-74.6445665,39.538386,14 EDGEWOOD DR,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_521_13,-74.65600503,39.52199766,12 EDGEWOOD DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_521_14,-74.65938217,39.51545499,10 EDGEWOOD DR,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_521_15,-74.56038968,39.50501425,8 EDGEWOOD DR,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_521_16,-74.8477405,39.482544,6 EDGEWOOD DR,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_521_17,-74.834977,39.4495075,4 EDGEWOOD DR,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_521_18,-74.65724932,39.43244934,29 CHAPMAN BLVD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_521_19,-74.557507,39.468141,31 CHAPMAN BLVD,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_521_2,-74.831946,39.489756,3 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_521_3,-74.54632898,39.50692947,5 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_521_4,-74.6543624,39.5068571,7 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_521_5,-74.65216074,39.52434483,9 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_521_6,-74.669872,39.517831,11 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_521_7,-74.949329,39.5167195,13 CRESTMONT DR,SOMERS POINT CITY,43,1979,2,RES1,3001 -0121_521_8,-74.94507563,39.53257468,15 CRESTMONT DR,SOMERS POINT CITY,43,1979,2,RES1,3001 -0121_521_9,-74.88701656,39.59846903,17 CRESTMONT DR,SOMERS POINT CITY,43,1979,2,RES3A,3001 -0121_522_1,-74.53514149,39.53154867,39 CHAPMAN BLVD,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_522_10,-74.68674511,39.65297283,14 CRESTMONT DR,SOMERS POINT CITY,43,1979,2,RES1,3001 -0121_522_11,-74.94743275,39.52617257,12 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_522_12,-74.605151,39.593315,10 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_522_14,-74.64423098,39.52805355,6 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_522_15,-74.6198025,39.510322,4 CRESTMONT DR,SOMERS POINT CITY,43,1966,2,RES1,3001 -0121_522_17,-74.867549,39.495312,37 CHAPMAN BLVD,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_522_2,-74.645479,39.5282615,3 WAYNE DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_522_3,-74.652233,39.5327995,5 WAYNE DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_522_4,-74.60826504,39.5929557,7 WAYNE DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_522_5,-74.94041049,39.52530266,9 WAYNE DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_522_6,-74.7255851,39.64385519,11 WAYNE DR,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_522_7,-74.77884935,39.5153519,13 WAYNE DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_522_8,-74.80812078,39.52860267,15 WAYNE DR,SOMERS POINT CITY,16,1979,1,RES1,3001 -0121_522_9,-74.6498605,39.6272015,16 CRESTMONT DR,SOMERS POINT CITY,43,1979,2,RES1,3001 -0121_523_1,-74.88301,39.4685485,14 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_10,-74.65695639,39.59289227,45 CHAPMAN BLVD,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_11,-74.94225653,39.52690018,47 CHAPMAN BLVD,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_12,-74.95495193,39.53806077,49 CHAPMAN BLVD,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_13,-74.635308,39.611998,51 CHAPMAN BLVD,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_14,-74.7916645,39.532872,53 CHAPMAN BLVD,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_15,-74.80425319,39.5493536,55 CHAPMAN BLVD,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_16,-74.92547,39.475834,3 WHITMAN DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_17,-74.93726565,39.48867902,16 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_2,-74.83962066,39.52380219,12 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_3,-74.79294043,39.52676672,10 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_4,-74.70384721,39.59330563,8 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_5,-74.95000017,39.5431918,6 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_6,-74.93888732,39.52742401,4 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_523_7,-74.67468,39.5570605,4 WAYNE DR,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_523_8,-74.6488675,39.533883,41 CHAPMAN BLVD,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_523_9,-74.6427505,39.56212,43 CHAPMAN BLVD,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_524_1,-74.88816606,39.57345309,6 WAYNE DR,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_524_10,-74.80601905,39.63922263,13 WHITMAN DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_524_11,-74.80702808,39.63206079,56 DEFEO LN,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_524_2,-74.6509445,39.6270475,3 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_524_3,-74.83846843,39.52898979,5 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_524_4,-74.886766,39.477643,7 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_524_5,-74.933114,39.48210524,9 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_524_6,-74.9043635,39.5367235,11 WILSON AVE,SOMERS POINT CITY,16,1981,1,COM4,3004 -0121_524_7,-74.870505,39.544824,13 WILSON AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_524_8,-74.80130775,39.62331244,9 WHITMAN DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_524_9,-74.80434295,39.63800734,11 WHITMAN DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_525.01_1,-74.94891761,39.51729731,18 WILSON AVE,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_525.01_10,-74.8073555,39.632263,34 WILSON AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_525.01_13,-74.81523433,39.6344629,28 WILSON AVE,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_525.01_14,-74.801004,39.633547,26 WILSON AVE,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_525.01_15,-74.8039865,39.637706,24 WILSON AVE,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_525.01_16,-74.80771239,39.63035588,22 WILSON AVE,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_525.01_17,-74.49855069,39.49362283,20 WILSON AVE,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_525.01_2,-74.9089516,39.50611252,4 WHITMAN DR,SOMERS POINT CITY,16,1983,1,RES1,3004 -0121_525.01_3,-74.92630793,39.48730775,57 CHAPMAN BLVD,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_525.01_4,-74.92839779,39.50761273,59 CHAPMAN BLVD,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_525.01_5,-74.94042976,39.51563196,61 CHAPMAN BLVD,SOMERS POINT CITY,16,1985,1,RES1,3004 -0121_525.01_6,-74.49119094,39.49350874,63 CHAPMAN BLVD,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_525.01_7,-74.8017905,39.6227245,40 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_525.01_8,-74.80527887,39.63824664,38 WILSON AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_525.01_9,-74.79725122,39.63619321,36 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_525.02_1,-74.8728365,39.5287705,6 FOX TAIL CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.02_2,-74.6922469,39.59770072,4 FOX TAIL CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.02_3,-74.946649,39.5246875,13 CEDAR CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.02_4,-74.88688347,39.55776167,15 CEDAR CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.02_5,-74.88397463,39.59658443,17 CEDAR CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.02_6,-74.7774955,39.643524,19 CEDAR CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.02_7,-74.78155914,39.54265493,11 CEDAR CT,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_525.02_8,-74.66644852,39.58226783,14 PACIFIC AVE,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.02_9,-74.64707943,39.5496309,12 PACIFIC AVE,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.04_10,-74.641825,39.518955,6 CEDAR CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.04_11,-74.8364795,39.4933775,184 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.04_12,-74.88059094,39.48502168,186 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.04_13,-74.5452405,39.5175895,188 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.04_14,-74.57672648,39.51500652,190 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.04_8,-74.63508796,39.53256716,10 CEDAR CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525.04_9,-74.6406125,39.527636,8 CEDAR CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_525_10,-74.48719145,39.53144275,19 WHITMAN DR,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_525_11,-74.506175,39.4923345,57 DEFEO LN,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_525_12,-74.92957096,39.48854473,2 WOODLOT CT,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_525_13,-74.946609,39.5096875,4 WOODLOT CT,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_525_14,-74.85960417,39.55522143,6 WOODLOT CT,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_525_15,-74.811876,39.6309815,8 WOODLOT CT,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_525_16,-74.79540711,39.63482338,10 WOODLOT CT,SOMERS POINT CITY,16,1991,1,RES1,3001 -0121_525_17,-74.82626303,39.63763516,12 WOODLOT CT,SOMERS POINT CITY,16,1993,1,RES1,3001 -0121_525_18,-74.48781983,39.49244049,7 WOODLOT CT,SOMERS POINT CITY,16,1990,1,GOV1,3004 -0121_525_19,-74.91359086,39.53474445,5 WOODLOT CT,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_525_20,-74.90528634,39.48734461,1 WOODLOT CT,SOMERS POINT CITY,16,1995,1,RES1,3001 -0121_525_21,-74.90433091,39.47254995,39 DEFEO LN,SOMERS POINT CITY,16,1989,1,RES1,3001 -0121_525_22,-74.8856718,39.47846192,37 DEFEO LN,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_525_23,-74.870834,39.546075,35 DEFEO LN,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_525_24,-74.82880817,39.53923462,33 DEFEO LN,SOMERS POINT CITY,16,1987,1,RES1,3001 -0121_525_8,-74.59432904,39.31372915,23 WHITMAN DR,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_525_9,-74.53382963,39.30543757,21 WHITMAN DR,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_527_1,-74.80220535,39.63870554,15 WILSON AVE,SOMERS POINT CITY,16,1980,1,GOV1,3004 -0121_527_10,-74.82819335,39.63605559,68 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_527_12,-74.8244395,39.638874,19 WILSON AVE,SOMERS POINT CITY,16,1983,1,GOV1,3004 -0121_527_13,-74.81044474,39.63557639,17 WILSON AVE,SOMERS POINT CITY,16,1983,1,RES1,3001 -0121_527_2,-74.80520076,39.63688389,10 WHITMAN DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_527_3,-74.8149788,39.63534976,12 WHITMAN DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_527_4,-74.819946,39.6367475,14 WHITMAN DR,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_527_5,-74.86029509,39.60913451,58 DEFEO LN,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_527_6,-74.4904025,39.497249,60 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_527_7,-74.49033095,39.49620459,62 DEFEO LN,SOMERS POINT CITY,16,1984,1,GOV1,3004 -0121_527_8,-74.50202996,39.5021534,64 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_527_9,-74.41481983,39.504335,66 DEFEO LN,SOMERS POINT CITY,16,1984,1,GOV1,3004 -0121_528_1,-74.5953325,39.313467,22 WHITMAN DR,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_528_10,-74.534404,39.3065145,73 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_528_11,-74.4899055,39.4960885,75 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_528_12,-74.48578939,39.50742774,27 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_528_2,-74.58641546,39.31664989,20 WHITMAN DR,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_528_3,-74.52689,39.524251,59 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_528_4,-74.60389472,39.30831532,61 DEFEO LN,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_528_5,-74.601135,39.3170355,63 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_528_7,-74.59662096,39.31327116,67 DEFEO LN,SOMERS POINT CITY,16,1984,1,GOV1,3004 -0121_528_8,-74.600203,39.31628,69 DEFEO LN,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_529_1,-74.50682242,39.51623632,29 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_529_10,-74.94577476,39.50483998,47 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_529_11,-74.9079475,39.530409,49 WILSON AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_529_12,-74.885803,39.5023215,214 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_13,-74.86083642,39.61974172,212 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_14,-74.86513912,39.53686227,210 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_15,-74.72017591,39.56665539,208 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_19,-74.94341253,39.52258477,200 EXTON RD,SOMERS POINT CITY,27,1987,1,COM1,3004 -0121_529_2,-74.50529951,39.52883399,31 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_529_21,-74.68304647,39.55642804,196 EXTON RD,SOMERS POINT CITY,27,1988,1,RES1,3001 -0121_529_23,-74.64472173,39.53588291,192 EXTON RD,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_25,-74.61858976,39.62143786,3 FOX TAIL CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_26,-74.935124,39.5252495,5 FOX TAIL CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_27,-74.95460033,39.52794518,7 FOX TAIL CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_28,-74.69249653,39.58985643,9 FOX TAIL CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_29,-74.883927,39.467776,11 FOX TAIL CT,SOMERS POINT CITY,27,1987,1,RES1,3001 -0121_529_3,-74.596783,39.31495,33 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_529_31,-74.931079,39.4892765,15 FOX TAIL CT,SOMERS POINT CITY,27,1987,1,GOV1,3004 -0121_529_4,-74.52118754,39.52641447,35 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_529_5,-74.8493775,39.6090195,37 WILSON AVE,SOMERS POINT CITY,16,1984,1,GOV1,3004 -0121_529_6,-74.80797895,39.63692682,39 WILSON AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_529_7,-74.79787,39.6372155,41 WILSON AVE,SOMERS POINT CITY,16,1984,1,RES1,3001 -0121_529_8,-74.80977717,39.63073901,43 WILSON AVE,SOMERS POINT CITY,16,1985,1,COM4,3004 -0121_529_9,-74.86186,39.567265,45 WILSON AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_610_10,-74.62072595,39.36766478,124 E PIERSON AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_610_12,-74.5484185,39.368402,118 E PIERSON AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_610_13,-74.55375851,39.38408759,114 E PIERSON AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_610_14,-74.72011094,39.44730768,112 E PIERSON AVE,SOMERS POINT CITY,45,1925,2,RES1,3001 -0121_610_15,-74.94927853,39.53160881,106 E PIERSON AVE,SOMERS POINT CITY,15,1920,1,RES1,3001 -0121_610_16,-74.803379,39.641543,308 SUNNY AVE,SOMERS POINT CITY,15,1950,1,RES1,3001 -0121_610_17,-74.5388645,39.3809005,310 SUNNY AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_610_2,-74.77096336,39.31442184,314 SUNNY AVE,SOMERS POINT CITY,15,1930,2,RES1,3001 -0121_610_3,-74.57392583,39.36168063,107 E JOHNSON AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_610_4,-74.50324133,39.40944357,109 E JOHNSON AVE,SOMERS POINT CITY,16,1990,1,RES1,3001 -0121_610_5,-74.5252495,39.3884535,111 E JOHNSON AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_610_6,-74.58498966,39.32536037,113 E JOHNSON AVE,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_610_7,-74.6093575,39.320342,313 BAY AVE,SOMERS POINT CITY,16,1961,1,RES1,3001 -0121_610_8,-74.51735567,39.40039701,311 BAY AVE,SOMERS POINT CITY,45,1952,2,RES1,3001 -0121_610_9,-74.57538458,39.35529847,301 BAY AVE,SOMERS POINT CITY,18,1959,1,RES1,3001 -0121_611_1,-74.543287,39.418296,320 SHORE RD,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_611_10,-74.60048174,39.38701827,307 SUNNY AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_611_11,-74.5725045,39.413294,24 E PIERSON AVE,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_611_12,-74.583707,39.413688,22 E PIERSON AVE,SOMERS POINT CITY,16,1950,2,RES1,3001 -0121_611_13,-74.5761015,39.429633,20 E PIERSON AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_611_14,-74.62963427,39.3927201,18 E PIERSON AVE,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_611_15,-74.67620612,39.38017558,14 E PIERSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_611_16,-74.72585004,39.46083461,304 SHORE RD,SOMERS POINT CITY,,1928,1,RES1,3001 -0121_611_2,-74.58652495,39.41350396,318 SHORE RD,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_611_3,-74.63895241,39.38088795,312 SHORE RD,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_611_4,-74.56060548,39.41587757,15 E JOHNSON AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_611_5,-74.58728798,39.37086267,23 E JOHNSON AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_611_6,-74.533183,39.389678,27 E JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_611_7,-74.69239753,39.65122768,31 E JOHNSON AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_611_8,-74.84407633,39.40231855,35 E JOHNSON AVE,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_611_9,-74.5849574,39.37673717,309 SUNNY AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_612_1,-74.66013456,39.57914782,35 W JOHNSON AVE,SOMERS POINT CITY,16,1955,1,RES1,3001 -0121_612_10,-74.5407281,39.5638685,301 SHORE RD,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_612_12,-74.65304117,39.57356501,18 W PIERSON AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_612_13,-74.6498735,39.6281495,24 W PIERSON AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_612_14,-74.85507511,39.56186289,28 W PIERSON AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_612_15,-74.76599469,39.60512977,30 W PIERSON AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_612_16,-74.76038819,39.63899618,32 W PIERSON AVE,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_612_17,-74.87275543,39.58907985,40 W PIERSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_612_18,-74.85035452,39.61240768,250 ATLANTIC AVE,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_612_19,-74.85487,39.559772,252 ATLANTIC AVE,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_612_2,-74.6459839,39.53214565,33 W JOHNSON AVE,SOMERS POINT CITY,16,1955,1,COM1,3004 -0121_612_4,-74.5519595,39.531455,25 W JOHNSON AVE,SOMERS POINT CITY,16,1924,1,RES1,3001 -0121_612_5,-74.71492262,39.63473676,23 W JOHNSON AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_612_6,-74.73786909,39.46471284,19 W JOHNSON AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_612_7,-74.63820359,39.42169029,315-321 SHORE RD,SOMERS POINT CITY,,1927,1,RES1,3001 -0121_612_9,-74.76159583,39.63904508,307 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_613_1.01,-74.72749132,39.59092592,101 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_613_1.02,-74.80635362,39.63025937,253 FIRST ST,SOMERS POINT CITY,16,1990,1,GOV1,3004 -0121_613_10,-74.46754439,39.34682984,151 W JOHNSON AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_613_11,-74.437812,39.487342,155 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_613_12,-74.507611,39.4374055,163 W JOHNSON AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_613_13,-74.5377695,39.38755417,169 W JOHNSON AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_613_14,-74.57016015,39.41470208,171 W JOHNSON AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_613_15.01,-74.60001491,39.43328186,336 BETHEL RD,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_613_15.02,-74.627011,39.425307,168 1/2 PIERSON AVE,SOMERS POINT CITY,16,1986,1,RES1,3001 -0121_613_15.03,-74.613212,39.42766978,168 W PIERSON AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_613_15.04,-74.5538695,39.472243,170 W PIERSON AVE,SOMERS POINT CITY,16,1977,1,RES3A,3001 -0121_613_16,-74.5964998,39.41815057,162 W PIERSON AVE,SOMERS POINT CITY,16,1945,1,RES1,3001 -0121_613_17,-74.55459231,39.40680243,160 W PIERSON AVE,SOMERS POINT CITY,15,1960,1,RES1,3001 -0121_613_18,-74.60528506,39.38298346,158 W PIERSON AVE,SOMERS POINT CITY,16,1928,2,RES1,3001 -0121_613_19,-74.53832686,39.38618256,134 W PIERSON AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_613_2,-74.88641514,39.47769181,115 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_613_20,-74.551791,39.3787155,132 W PIERSON AVE,SOMERS POINT CITY,16,1925,1,RES3A,3001 -0121_613_21,-74.53374923,39.3822977,130 W PIERSON AVE,SOMERS POINT CITY,15,1925,1,RES3A,3001 -0121_613_22,-74.48655878,39.44308836,128 W PIERSON AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_613_23,-74.5096685,39.408201,118 W PIERSON AVE,SOMERS POINT CITY,45,1964,2,RES1,3001 -0121_613_24,-74.4574005,39.349675,116 W PIERSON AVE,SOMERS POINT CITY,15,1924,1,RES1,3001 -0121_613_25,-74.52652131,39.31070134,110 W PIERSON AVE,SOMERS POINT CITY,16,1925,1,GOV1,3004 -0121_613_26,-74.5044198,39.41435192,104 W PIERSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_613_27,-74.51351035,39.38584309,100 W PIERSON AVE,SOMERS POINT CITY,16,1926,1,COM1,3004 -0121_613_3,-74.94297751,39.52383443,117 W JOHNSON AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_613_5,-74.50084238,39.41181868,125 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_613_7,-74.497614,39.327984,129 W JOHNSON AVE,SOMERS POINT CITY,16,1937,1,RES1,3001 -0121_613_8,-74.45960238,39.35046091,137 W JOHNSON AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_613_9,-74.4843865,39.3414705,147 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_710_1,-74.50733067,39.48626068,101 E CEDAR AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_710_10,-74.48577846,39.47029479,126 E JOHNSON AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_710_11,-74.512486,39.4408045,325 BAY AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_710_2,-74.52609666,39.45510398,109 E CEDAR AVE,SOMERS POINT CITY,15,1920,1,COM1,3004 -0121_710_3,-74.52587583,39.453018,115 E CEDAR AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_710_4,-74.82458563,39.38362067,123 E CEDAR AVE,SOMERS POINT CITY,17,2004,1,RES1,3001 -0121_710_5,-74.51811315,39.40497916,129 E CEDAR AVE,SOMERS POINT CITY,16,1925,2,RES1,3001 -0121_710_6,-74.441477,39.48698,333 BAY AVE,SOMERS POINT CITY,17,1925,1,RES1,3001 -0121_710_7,-74.52744365,39.38429983,324 SUNNY AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_710_8,-74.60997382,39.30655133,112 E JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_710_9.01,-74.52527372,39.52125203,116 E JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_710_9.02,-74.4708625,39.49104,118 E JOHNSON AVE,SOMERS POINT CITY,15,1972,1,RES3A,3001 -0121_711_1,-74.62345417,39.3560405,340 SHORE RD,SOMERS POINT CITY,15,1918,1,RES1,3001 -0121_711_10,-74.56983785,39.34294375,329 SUNNY AVE,SOMERS POINT CITY,16,1917,1,RES1,3001 -0121_711_11,-74.59901429,39.34494513,325 SUNNY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_711_12,-74.6449365,39.3280095,28 E JOHNSON AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_711_13,-74.66109886,39.36189645,20 E JOHNSON AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_711_14,-74.53950659,39.37537485,18 E JOHNSON AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_711_15,-74.5498565,39.377283,14 E JOHNSON AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_711_16,-74.82386129,39.39884109,10 E JOHNSON AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_711_17,-74.78076,39.6727135,322 SHORE RD,SOMERS POINT CITY,,1984,1,GOV1,3004 -0121_711_2,-74.54618838,39.37649477,338 SHORE RD,SOMERS POINT CITY,16,1918,1,RES1,3001 -0121_711_4.01,-74.61063,39.349279,15 E CEDAR AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_711_4.02,-74.6219775,39.313717,11 E CEDAR AVE,SOMERS POINT CITY,16,1978,1,RES1,3001 -0121_711_5,-74.561247,39.3620105,17 E CEDAR AVE,SOMERS POINT CITY,16,1951,1,RES1,3001 -0121_711_7,-74.5232965,39.396769,25 E CEDAR AVE,SOMERS POINT CITY,16,1925,1,RES3A,3001 -0121_711_8,-74.60354887,39.33003417,333 SUNNY AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_712_1,-74.62311517,39.38049567,324 ATLANTIC AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_712_10,-74.60183184,39.38438749,329 SHORE RD,SOMERS POINT CITY,45,1926,2,RES1,3001 -0121_712_11,-74.55980968,39.41425598,327 SHORE RD,SOMERS POINT CITY,16,1925,2,RES1,3001 -0121_712_12,-74.5735775,39.4275425,12 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_712_13,-74.61330219,39.40994105,16 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_712_14,-74.63795468,39.38166249,20 W JOHNSON AVE,SOMERS POINT CITY,15,1926,1,GOV1,3004 -0121_712_15,-74.663848,39.395437,30 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_712_16,-74.63534709,39.43475116,32 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_712_17,-74.72813446,39.45144712,36 W JOHNSON AVE,SOMERS POINT CITY,15,1924,1,RES1,3001 -0121_712_2,-74.595822,39.408693,23 W CEDAR AVE,SOMERS POINT CITY,16,1985,1,RES1,3001 -0121_712_4,-74.5989775,39.3792305,19 W CEDAR AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_712_5,-74.584363,39.3752305,17 W CEDAR AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_712_6,-74.82133267,39.65533889,7 W CEDAR AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_712_7,-74.81484139,39.40133933,337 SHORE RD,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_712_8,-74.735118,39.459836,335 SHORE RD,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_712_9,-74.83449519,39.64168867,333 SHORE RD,SOMERS POINT CITY,16,1949,1,RES1,3001 -0121_713_1,-74.53073018,39.38738908,388 BETHEL RD,SOMERS POINT CITY,,1958,1,RES1,3001 -0121_713_10,-74.6489732,39.52228611,110 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_713_11,-74.617768,39.602112,114 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES3A,3001 -0121_713_12,-74.6973045,39.588993,122 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_713_13,-74.72818001,39.58983117,130 W JOHNSON AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_713_15,-74.8762935,39.591608,132 W JOHNSON AVE,SOMERS POINT CITY,16,1962,1,GOV1,3004 -0121_713_16,-74.808444,39.63591,134 W JOHNSON AVE,SOMERS POINT CITY,15,1956,1,GOV1,3004 -0121_713_17,-74.90132153,39.49939633,138 W JOHNSON AVE,SOMERS POINT CITY,15,1946,1,RES1,3001 -0121_713_18,-74.374672,39.4125785,140 W JOHNSON AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_713_19.01,-74.51215467,39.39983706,162 W JOHNSON AVE,SOMERS POINT CITY,16,1997,1,RES3A,3001 -0121_713_19.02,-74.5247555,39.31589,164 W JOHNSON AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_713_2.05,-74.6412485,39.534663,129 W CEDAR AVE,SOMERS POINT CITY,16,1997,1,RES1,3001 -0121_713_20,-74.46484127,39.34826116,168 W JOHNSON AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_713_7,-74.77807239,39.62465901,335 FIRST ST,SOMERS POINT CITY,16,1980,1,RES1,3001 -0121_713_8,-74.88211493,39.50163943,100 W JOHNSON AVE,SOMERS POINT CITY,16,1956,1,RES1,3001 -0121_713_9,-74.63154194,39.51651866,104 W JOHNSON AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_719_1,-74.53932749,39.39262584,18 CHAPMAN BLVD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_719_10,-74.50294223,39.50401409,15 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_719_11,-74.487428,39.4386695,17 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_719_12,-74.5461685,39.472448,19 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,COM1,3004 -0121_719_13,-74.88234419,39.50614962,21 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_719_14,-74.645352,39.5419435,23 SOUTHVIEW DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_719_16,-74.61551367,39.620518,425 NEW RD,SOMERS POINT CITY,,1998,1,RES1,3001 -0121_719_19,-74.5367726,39.38478913,401 NEW RD,SOMERS POINT CITY,,1999,1,RES1,3001 -0121_719_2,-74.59613407,39.37973696,20 CHAPMAN BLVD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_719_3,-74.60721271,39.3889451,22 CHAPMAN BLVD,SOMERS POINT CITY,43,1967,2,RES1,3001 -0121_719_4,-74.55220036,39.38172809,3 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_719_5,-74.6136155,39.3646575,5 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES3A,3001 -0121_719_6,-74.5664715,39.3610615,7 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_719_7,-74.60666,39.332096,9 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_719_8,-74.59619189,39.31186165,11 SOUTHVIEW DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_719_9,-74.5235861,39.46263009,13 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_720_1,-74.61302569,39.42161871,24 CHAPMAN BLVD,SOMERS POINT CITY,16,1969,1,RES1,3001 -0121_720_10,-74.49732817,39.51477049,18 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_720_11,-74.4945855,39.4476175,20 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_12,-74.61440553,39.43639969,22 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES3A,3001 -0121_720_13,-74.43980097,39.48772743,1005 W GROVELAND AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_14,-74.487604,39.436859,23 NORTHVIEW DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_720_15,-74.503258,39.505051,21 NORTHVIEW DR,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_720_16,-74.47160728,39.48390739,19 NORTHVIEW DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_720_17,-74.59853993,39.31673719,17 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_18,-74.60389167,39.3289285,15 NORTHVIEW DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_720_19,-74.5795055,39.3383365,13 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_2,-74.563427,39.4167425,2 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_20,-74.64001799,39.33843134,11 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_21,-74.54526065,39.37123954,9 NORTHVIEW DR,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_720_22,-74.5578315,39.397218,7 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_23,-74.575046,39.4082675,5 NORTHVIEW DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_720_24,-74.6099485,39.4046815,3 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_25,-74.7620609,39.63499922,26 CHAPMAN BLVD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_720_3,-74.5584615,39.397026,4 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_720_4,-74.53178181,39.37914167,6 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_5,-74.62803999,39.36419707,8 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_720_6,-74.578539,39.346065,10 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_7,-74.602941,39.3258795,12 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_8,-74.609958,39.315037,14 SOUTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_720_9,-74.47140368,39.48299236,16 SOUTHVIEW DR,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_721_1,-74.61540341,39.43139371,28 CHAPMAN BLVD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_721_10,-74.61330224,39.31966189,20 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_721_11,-74.6005129,39.30817078,22 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_721_12,-74.52694385,39.46404804,24 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_721_13,-74.4874895,39.4977515,26 NORTHVIEW DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_721_14,-74.5298845,39.468466,1011 W GROVELAND AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_721_15,-74.59277783,39.31358999,23 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3002 -0121_721_16,-74.6104535,39.321364,21 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,COM1,3004 -0121_721_17,-74.566064,39.3643695,19 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_721_18,-74.5995265,39.3641255,17 FRANKLIN DR,SOMERS POINT CITY,16,1970,1,GOV1,3004 -0121_721_19,-74.5380865,39.371251,15 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_721_2,-74.80446106,39.60164584,4 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_721_20,-74.53179451,39.38537333,13 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES3A,3001 -0121_721_21,-74.60863033,39.39412688,11 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_721_22,-74.58226881,39.41457447,9 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_721_23,-74.6106185,39.420978,5 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_721_24,-74.7910624,39.63547284,3 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_721_25,-74.80369586,39.62848042,1 FRANKLIN DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_721_3,-74.599046,39.435543,6 NORTHVIEW DR,SOMERS POINT CITY,16,1967,1,RES3A,3001 -0121_721_4,-74.58771006,39.41561241,8 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,COM1,3004 -0121_721_5,-74.5453095,39.405304,10 NORTHVIEW DR,SOMERS POINT CITY,16,1967,1,RES3A,3001 -0121_721_6,-74.544471,39.3904165,12 NORTHVIEW DR,SOMERS POINT CITY,16,1968,1,RES3A,3001 -0121_721_7,-74.54656588,39.37414753,14 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3002 -0121_721_8,-74.61144477,39.36462913,16 NORTHVIEW DR,SOMERS POINT CITY,16,1967,1,RES3A,3001 -0121_721_9,-74.56833884,39.36219794,18 NORTHVIEW DR,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_722_1,-74.62840513,39.43208534,32 CHAPMAN BLVD,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_722_10,-74.64629444,39.32837041,20 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_722_11,-74.58426958,39.34018765,22 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_722_12,-74.60141468,39.31799852,24 FRANKLIN DR,SOMERS POINT CITY,16,1968,1,RES3A,3001 -0121_722_13,-74.5658975,39.356827,1015 W GROVELAND AVE,SOMERS POINT CITY,16,1967,1,RES1,3001 -0121_722_14,-74.57130824,39.3621527,1017 W GROVELAND AVE,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_722_15,-74.60034802,39.36020014,21 COOPER DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_722_16,-74.54398677,39.37463497,19 COOPER DR,SOMERS POINT CITY,16,1971,1,RES1,3001 -0121_722_17,-74.5524635,39.3918365,17 COOPER DR,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_722_18,-74.53234419,39.40372952,15 COOPER DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_722_19,-74.5811725,39.4116675,13 COOPER DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_722_2,-74.6717902,39.38319365,4 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3001 -0121_722_20,-74.59897795,39.43571919,11 COOPER DR,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_722_21,-74.79196209,39.63497243,9 COOPER DR,SOMERS POINT CITY,16,1970,1,RES3A,3001 -0121_722_22,-74.7995365,39.626948,7 COOPER DR,SOMERS POINT CITY,16,1976,1,RES3A,3001 -0121_722_23,-74.66179791,39.40223994,5 COOPER DR,SOMERS POINT CITY,16,1955,1,RES1,3004 -0121_722_24,-74.63185703,39.42140955,3 COOPER DR,SOMERS POINT CITY,16,1968,1,RES1,3001 -0121_722_25,-74.551385,39.4649725,34 CHAPMAN BLVD,SOMERS POINT CITY,16,1968,1,RES1,3002 -0121_722_3,-74.7982195,39.626034,6 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES3A,3001 -0121_722_4,-74.79060256,39.63463328,8 FRANKLIN DR,SOMERS POINT CITY,16,1973,1,RES1,3002 -0121_722_5,-74.6022935,39.4355745,10 FRANKLIN DR,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_722_6,-74.58629069,39.41251353,12 FRANKLIN DR,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_722_7,-74.562799,39.405033,14 FRANKLIN DR,SOMERS POINT CITY,16,1974,1,RES1,3002 -0121_722_8,-74.542855,39.398869,16 FRANKLIN DR,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_722_9,-74.5482165,39.373469,18 FRANKLIN DR,SOMERS POINT CITY,16,1974,1,RES1,3001 -0121_723_1,-74.82732686,39.48528879,36-38 CHAPMAN BLVD,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_10,-74.6104385,39.3774735,20 COOPER DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_11,-74.55099993,39.37681237,22 COOPER DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_12,-74.63286824,39.36107097,1019 W GROVELAND AVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_723_13,-74.53950185,39.37661603,1021 W GROVELAND AVE,SOMERS POINT CITY,16,1972,1,COM1,3004 -0121_723_14,-74.5514625,39.380207,1023 W GROVELAND AVE,SOMERS POINT CITY,16,1972,1,RES1,3001 -0121_723_15,-74.6005327,39.37906882,21 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES3B,3001 -0121_723_16,-74.57474114,39.41859918,19 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_17,-74.60321618,39.41471654,17 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES3A,3001 -0121_723_18,-74.77712524,39.59678554,15 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_19,-74.862076,39.598293,13 HAMILTON DR,SOMERS POINT CITY,43,1970,2,COM3,3004 -0121_723_2,-74.59710628,39.43775967,4 COOPER DR,SOMERS POINT CITY,43,1970,2,GOV1,3004 -0121_723_20,-74.62178084,39.37919775,11 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES3A,3001 -0121_723_21,-74.63200145,39.40927981,9 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_22,-74.6308819,39.43290721,7 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_23,-74.582192,39.4429835,5 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_24,-74.84567392,39.46547461,3 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_25,-74.8645667,39.49745424,1 HAMILTON DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_3,-74.64297915,39.43229564,6 COOPER DR,SOMERS POINT CITY,43,1974,2,RES1,3001 -0121_723_4,-74.62485245,39.41857069,8 COOPER DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_5,-74.64391931,39.37916456,10 COOPER DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_6,-74.8803969,39.60427569,12 COOPER DR,SOMERS POINT CITY,43,1970,2,RES3A,3001 -0121_723_7,-74.76553665,39.61023143,14 COOPER DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_723_9,-74.56601,39.4128855,18 COOPER DR,SOMERS POINT CITY,43,1970,2,RES1,3001 -0121_810_1,-74.386109,39.397105,426 SUNNY AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_810_10,-74.5221945,39.402074,114 E CEDAR AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_810_11,-74.50734607,39.38447431,126 E CEDAR AVE,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_810_12,-74.50368591,39.34222249,121 E GROVELAND AVE,SOMERS POINT CITY,16,1977,1,RES1,3001 -0121_810_13,-74.3655685,39.4163115,126 1/2 E CEDAR AVE,SOMERS POINT CITY,43,1925,2,RES1,3001 -0121_810_16,-74.37153958,39.40633816,128 E CEDAR AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_810_2,-74.37591451,39.41906567,420 SUNNY AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_810_3,-74.36121484,39.41648398,416 SUNNY AVE,SOMERS POINT CITY,15,1900,1,RES1,3001 -0121_810_4,-74.38107432,39.41553686,414 SUNNY AVE,SOMERS POINT CITY,16,1952,1,RES1,3001 -0121_810_5,-74.500902,39.416242,412 SUNNY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_810_6,-74.756966,39.4327395,100 E CEDAR AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_810_7,-74.50138373,39.4282018,106 E CEDAR AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_810_8.01,-74.4023665,39.3945535,115 E GROVELAND AVE,SOMERS POINT CITY,15,1910,1,RES1,3001 -0121_810_8.02,-74.378602,39.4011695,117 E GROVELAND AVE,SOMERS POINT CITY,16,1993,1,RES1,3001 -0121_810_9,-74.51145375,39.40473636,112 E CEDAR AVE,SOMERS POINT CITY,16,1928,1,RES1,3002 -0121_811_1,-74.5072606,39.43683085,426 SHORE RD,SOMERS POINT CITY,,1928,1,RES1,3001 -0121_811_10,-74.48432124,39.43667929,411 SUNNY AVE,SOMERS POINT CITY,16,1932,1,RES1,3001 -0121_811_11,-74.447167,39.484993,30 E CEDAR AVE,SOMERS POINT CITY,16,1951,1,RES1,3002 -0121_811_12,-74.48376573,39.52166593,22 E CEDAR AVE,SOMERS POINT CITY,16,1925,1,GOV1,3004 -0121_811_13,-74.5919485,39.3255565,16 E CEDAR AVE,SOMERS POINT CITY,15,1945,1,RES1,3002 -0121_811_14,-74.60890869,39.32229585,10 E CEDAR AVE,SOMERS POINT CITY,15,1940,1,GOV1,3004 -0121_811_15,-74.611436,39.32773867,400 SHORE RD,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_811_16,-74.6063875,39.327276,404 SHORE RD,SOMERS POINT CITY,16,1961,1,RES1,3002 -0121_811_17,-74.58342362,39.32501727,408 SHORE RD,SOMERS POINT CITY,16,1890,1,RES1,3001 -0121_811_18,-74.48415702,39.5102967,410 SHORE RD,SOMERS POINT CITY,16,1970,1,RES1,3001 -0121_811_2,-74.47834154,39.47933526,416 SHORE RD,SOMERS POINT CITY,,1962,1,RES1,3001 -0121_811_3,-74.50687266,39.44753161,19 E GROVELAND AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_811_4,-74.71613917,39.44149677,21 E GROVELAND AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_811_5,-74.75753472,39.43174241,25 E GROVELAND AVE,SOMERS POINT CITY,15,1922,1,GOV1,3004 -0121_811_7,-74.51374,39.3980265,27 E GROVELAND AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_811_8,-74.44624431,39.37375145,31 E GROVELAND AVE,SOMERS POINT CITY,16,1940,1,RES1,3001 -0121_811_9,-74.71265831,39.37818003,417 SUNNY AVE,SOMERS POINT CITY,16,1924,1,RES1,3001 -0121_812_1,-74.5151885,39.3987565,35 W GROVELAND AVE,SOMERS POINT CITY,,1910,1,RES1,3001 -0121_812_10,-74.558597,39.368215,419 SHORE RD,SOMERS POINT CITY,15,1924,1,RES1,3001 -0121_812_11,-74.522827,39.39697766,417 SHORE RD,SOMERS POINT CITY,,0,1,RES1,3001 -0121_812_13,-74.621651,39.3641525,401 SHORE RD,SOMERS POINT CITY,,1961,1,RES1,3001 -0121_812_14,-74.54526134,39.37287203,6 W CEDAR AVE,SOMERS POINT CITY,16,1958,1,RES1,3001 -0121_812_15,-74.85122147,39.37469332,12 W CEDAR AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_812_16,-74.7450435,39.445082,14 W CEDAR AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_812_17,-74.78332995,39.64194334,16 W CEDAR AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_812_18,-74.55246889,39.39128313,18 W CEDAR AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_812_19,-74.59253377,39.37909923,400 ATLANTIC AVE,SOMERS POINT CITY,16,1965,1,RES1,3001 -0121_812_2,-74.58889971,39.33631512,428 ATLANTIC AVE,SOMERS POINT CITY,15,1929,1,RES1,3001 -0121_812_20,-74.72655644,39.46163935,414 ATLANTIC AVE,SOMERS POINT CITY,16,1924,1,RES1,3001 -0121_812_3,-74.67536635,39.36576502,418 ATLANTIC AVE,SOMERS POINT CITY,16,1949,1,RES3A,3001 -0121_812_4,-74.52630527,39.39381614,25 W GROVELAND AVE,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_812_5,-74.5103646,39.40012533,23 W GROVELAND AVE,SOMERS POINT CITY,15,1927,1,RES1,3001 -0121_812_6,-74.5309255,39.3813885,15 W GROVELAND AVE,SOMERS POINT CITY,15,1940,1,RES1,3001 -0121_812_7,-74.47209452,39.48522094,429 SHORE RD,SOMERS POINT CITY,16,1900,1,AGR1,3001 -0121_812_8,-74.50343886,39.50268204,427 SHORE RD,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_812_9,-74.60965082,39.31470899,421 SHORE RD,SOMERS POINT CITY,16,1925,1,AGR1,3004 -0121_813_1.02,-74.53973889,39.41251719,420 BETHEL RD,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_813_2,-74.6008735,39.419858,418 BETHEL RD,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_813_3,-74.63591704,39.43068052,410 BETHEL RD,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_813_4,-74.5721305,39.412634,131 W GROVELAND AVE,SOMERS POINT CITY,15,1940,1,RES1,3001 -0121_813_5,-74.60852532,39.38690121,129 W GROVELAND AVE,SOMERS POINT CITY,16,1957,1,RES1,3001 -0121_813_6,-74.58460603,39.379811,119 W GROVELAND AVE,SOMERS POINT CITY,15,1945,1,RES1,3002 -0121_813_7,-74.53409176,39.38739853,115 W GROVELAND AVE,SOMERS POINT CITY,15,1935,1,RES1,3001 -0121_813_8,-74.78225439,39.64288667,113 W GROVELAND AVE,SOMERS POINT CITY,16,1925,2,RES3A,3001 -0121_814_1.02,-74.78579056,39.60822611,410 GOULD AVE,SOMERS POINT CITY,15,1900,1,RES1,3001 -0121_814_3.02,-74.692278,39.632939,213 W GROVELAND AVE,SOMERS POINT CITY,45,1936,2,RES1,3001 -0121_814_4,-74.77863973,39.63840605,207 W GROVELAND AVE,SOMERS POINT CITY,16,1910,1,RES1,3001 -0121_814_5,-74.7520767,39.45101554,419 BETHEL RD,SOMERS POINT CITY,,1875,1,RES1,3001 -0121_910_1,-74.5039285,39.329823,101 E MARYLAND AVE,SOMERS POINT CITY,,1960,1,RES1,3001 -0121_910_2,-74.46799233,39.34252052,438 SUNNY AVE,SOMERS POINT CITY,15,1925,1,RES1,3001 -0121_910_3.02,-74.48331997,39.34158765,116 E GROVELAND AVE,SOMERS POINT CITY,16,1995,1,RES1,3001 -0121_910_4,-74.64696769,39.47008332,118 E GROVELAND AVE,SOMERS POINT CITY,16,1982,1,RES1,3001 -0121_910_5,-74.46378691,39.34640682,120 E GROVELAND AVE,SOMERS POINT CITY,16,1925,1,GOV1,3004 -0121_910_6,-74.5116355,39.3278105,124 E GROVELAND AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_910_7,-74.51014648,39.32245766,126 E GROVELAND AVE,SOMERS POINT CITY,16,1925,2,RES1,3001 -0121_910_9.01,-74.50402667,39.3288241,128 E GROVELAND AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_910_9.02,-74.49380017,39.33143799,130 E GROVELAND AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_911_1,-74.37476581,39.40197719,450 SHORE RD,SOMERS POINT CITY,,1971,1,RES1,3001 -0121_911_10,-74.44446196,39.35590981,437 SUNNY AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_911_11,-74.49020949,39.33975283,435 SUNNY AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_911_12,-74.38349409,39.39323187,431 SUNNY AVE,SOMERS POINT CITY,15,1928,1,RES1,3001 -0121_911_13,-74.41785143,39.36868508,28 E GROVELAND AVE,SOMERS POINT CITY,15,1945,1,RES1,3001 -0121_911_15,-74.36949734,39.40480049,22-24 E GROVELAND AVE,SOMERS POINT CITY,16,1904,2,RES1,3001 -0121_911_17,-74.36018933,39.4117445,16 E GROVELAND AVE,SOMERS POINT CITY,16,1925,1,RES1,3001 -0121_911_18,-74.5204115,39.383887,12 E GROVELAND AVE,SOMERS POINT CITY,16,1920,1,RES1,3002 -0121_911_2,-74.42845746,39.36868732,444 SHORE RD,SOMERS POINT CITY,16,1928,1,RES1,3002 -0121_911_20,-74.35673116,39.41291247,438 SHORE RD,SOMERS POINT CITY,16,1900,2,RES1,3001 -0121_911_3,-74.380326,39.4151815,442 SHORE RD,SOMERS POINT CITY,16,1928,1,RES1,3001 -0121_911_4,-74.38562038,39.39348199,15 E MARYLAND AVE,SOMERS POINT CITY,16,1962,1,COM3,3004 -0121_911_9,-74.76026935,39.43094609,445 SUNNY AVE,SOMERS POINT CITY,16,1900,1,RES1,3001 -0121_912_1,-74.841715,39.3964375,27 W MARYLAND AVE,SOMERS POINT CITY,16,1948,1,RES1,3001 -0121_912_10,-74.4622679,39.45445518,14 W GROVELAND AVE,SOMERS POINT CITY,16,1950,1,RES1,3001 -0121_912_11,-74.49329285,39.45947153,20 W GROVELAND AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_912_12,-74.5128655,39.46512,24 W GROVELAND AVE,SOMERS POINT CITY,16,1954,1,RES1,3001 -0121_912_13,-74.45778694,39.4878064,28 W GROVELAND AVE,SOMERS POINT CITY,14,1954,1,RES1,3001 -0121_912_15,-74.4989725,39.5379665,454 ATLANTIC AVE,SOMERS POINT CITY,16,1949,2,RES1,3001 -0121_912_16,-74.51146978,39.45518177,458 ATLANTIC AVE,SOMERS POINT CITY,15,1930,1,RES1,3001 -0121_912_2,-74.71151046,39.41831792,25 W MARYLAND AVE,SOMERS POINT CITY,16,1926,1,RES1,3001 -0121_912_3,-74.693846,39.4913865,21 W MARYLAND AVE,SOMERS POINT CITY,16,1920,1,RES1,3001 -0121_912_4,-74.50295034,39.4195197,17 W MARYLAND AVE,SOMERS POINT CITY,16,1915,1,RES1,3001 -0121_912_5,-74.50929438,39.40249245,15 W MARYLAND AVE,SOMERS POINT CITY,14,1900,1,RES1,3001 -0121_912_6,-74.36970734,39.40749119,443 SHORE RD,SOMERS POINT CITY,,2011,1,RES1,3001 -0121_912_7,-74.36943967,39.41354848,453 SHORE RD,SOMERS POINT CITY,,1900,1,RES1,3001 -0121_913_1.01,-74.884403,39.560438,424 BETHEL RD,SOMERS POINT CITY,,1975,1,RES1,3001 -0121_913_1.02,-74.5996982,39.35991546,442 BETHEL RD,SOMERS POINT CITY,,1978,1,RES1,3001 -0121_913_10,-74.64179182,39.33907912,122 W GROVELAND AVE,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_913_11,-74.536306,39.3835185,126 W GROVELAND AVE,SOMERS POINT CITY,15,1948,1,RES1,3001 -0121_913_3,-74.52513941,39.39012843,103 W MARYLAND AVE,SOMERS POINT CITY,16,1981,1,RES1,3001 -0121_913_4,-74.451359,39.48872872,459 FIRST ST,SOMERS POINT CITY,16,1930,1,RES1,3001 -0121_913_5,-74.58400188,39.32389227,455 FIRST ST,SOMERS POINT CITY,16,1976,1,RES1,3001 -0121_913_9,-74.57602684,39.35631927,120 W GROVELAND AVE,SOMERS POINT CITY,16,1966,1,RES1,3001 -0121_914_11,-74.60970183,39.41826119,208 W GROVELAND AVE,SOMERS POINT CITY,16,1962,1,RES1,3001 -0121_914_12,-74.53585704,39.41071984,421 BETHEL RD,SOMERS POINT CITY,,1990,1,RES1,3001 -0121_914_14,-74.72677882,39.46049305,423 BETHEL RD,SOMERS POINT CITY,16,1988,1,RES1,3001 -0121_914_16,-74.54651264,39.376175,425 BETHEL RD,SOMERS POINT CITY,,1980,1,RES1,3001 -0121_914_2.01,-74.53413046,39.46779266,216 W GROVELAND AVE,SOMERS POINT CITY,,1972,1,RES1,3001 -0121_914_9,-74.64525569,39.37313654,210 W GROVELAND AVE,SOMERS POINT CITY,16,1959,1,RES1,3001 -0121_915_1,-74.497316,39.4324695,222 W GROVELAND AVE,SOMERS POINT CITY,,1972,1,RES1,3001 -0121_915_10,-74.933136,39.5209355,W GROVELAND AVE,SOMERS POINT CITY,16,1975,1,RES1,3001 -0121_915_2,-74.53383493,39.37731084,450 ADAMS AVE,SOMERS POINT CITY,,1965,1,RES1,3001 -0122_1_1,-74.591812,39.5070515,4800 BOARDWALK,VENTNOR CITY,,1963,1,GOV1,3004 -0122_1_2,-74.77602174,39.66606841,4800 ATLANTIC AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_1_3,-74.9639575,39.5054735,102 S JACKSON AVE,VENTNOR CITY,17,1910,3,RES1,3001 -0122_10_2,-74.532768,39.381783,105 S LITTLE ROCK AVE,VENTNOR CITY,,1918,3,REL1,3004 -0122_10_3,-74.59035417,39.32857956,103 S LITTLE ROCK AV,VENTNOR CITY,,1938,1,RES1,3001 -0122_10_4,-74.53856398,39.38761067,5216 ATLANTIC AVE,VENTNOR CITY,,1940,3,RES1,3001 -0122_10_5,-74.59516481,39.37980244,5214 ATLANTIC AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_10_6,-74.56996021,39.4789786,5206 ATLANTIC AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_10_7,-74.593325,39.33004,106 S WEYMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_100_1,-74.6218407,39.3139505,5001 WINCHESTER AVE,VENTNOR CITY,16,1926,1,RES1,3001 -0122_100_10,-74.60856322,39.31425627,5021 WINCHESTER AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_100_11,-74.6011342,39.31475137,5103 WINCHESTER AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_100_12,-74.53479834,39.30564799,5105 WINCHESTER AVE,VENTNOR CITY,17,2016,1,RES1,3001 -0122_100_13,-74.45383748,39.49875968,5107 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_100_14,-74.51639916,39.45679746,5109 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_100_15,-74.5140095,39.4384555,5111 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_100_16,-74.48137784,39.44995745,5113 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_100_18,-74.50910456,39.40514682,5125 WINCHESTER AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_100_19,-74.6425795,39.431867,5127 WINCHESTER AVE,VENTNOR CITY,17,1909,1,RES1,3001 -0122_100_2,-74.59623851,39.3592518,5003 WINCHESTER AVE,VENTNOR CITY,15,1926,1,RES1,3001 -0122_100_21,-74.37224835,39.40946133,5207 WINCHESTER AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_100_24,-74.48856233,39.470252,5217 WINCHESTER AVE,VENTNOR CITY,16,1978,1,RES1,3001 -0122_100_26,-74.48798294,39.35191883,105-107 N LITTLE ROCK AVE,VENTNOR CITY,17,1982,1,RES1,3001 -0122_100_27,-74.67462234,39.36128928,36 N WEYMOUTH AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_100_28.01,-74.50709978,39.33671842,32A N WEYMOUTH AVE,VENTNOR CITY,16,1980,1,RES1,3001 -0122_100_28.02,-74.4545936,39.35362504,32 N WEYMOUTH AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_100_28.03,-74.51028833,39.32578757,30 N WEYMOUTH AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_100_29,-74.5210205,39.31584,28 N WEYMOUTH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_100_3,-74.609847,39.342026,5005 WINCHESTER AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_100_30,-74.81900278,39.64406679,26 N WEYMOUTH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_100_31,-74.80039091,39.64131161,5251 WINCHESTER AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_100_32,-74.9519905,39.5182555,101 N LITTLE ROCK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_100_33,-74.88599929,39.55958999,103 N LITTLE ROCK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_100_9,-74.5938285,39.3203445,5019 WINCHESTER AVE,VENTNOR CITY,,1926,2,RES1,3002 -0122_101_1,-74.7896095,39.6325755,5207 VENTNOR AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_101_10,-74.9511485,39.5166795,5210 WINCHESTER AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_101_11,-74.62955798,39.43913105,16 N WEYMOUTH AVE,VENTNOR CITY,28,1940,1,RES1,3001 -0122_101_12,-74.927074,39.5156655,14 N WEYMOUTH AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_101_13,-74.884324,39.4704065,12 N WEYMOUTH AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_101_2,-74.441247,39.3703825,5213 VENTNOR AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_101_3,-74.859194,39.554113,5217 VENTNOR AVE,VENTNOR CITY,,1940,2,RES1,3001 -0122_101_4,-74.65531983,39.35772231,5223 VENTNOR AVE,VENTNOR CITY,,1940,2,RES1,3001 -0122_101_5,-74.363404,39.409353,7 N LITTLE ROCK AVE,VENTNOR CITY,18,1930,1,GOV1,3004 -0122_101_6,-74.748635,39.592954,15 N LITTLE ROCK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_101_7,-74.78844598,39.63665085,17 N LITTLE ROCK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_101_8,-74.83204867,39.62432701,19 N LITTLE ROCK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_102_1,-74.65229509,39.36873741,5301 VENTNOR AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_102_2,-74.64896351,39.53379983,5303 VENTNOR AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_102_3,-74.63122155,39.4176913,1 N VICTORIA AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_102_4,-74.629477,39.355402,3 N VICTORIA AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_102_5,-74.842732,39.5395855,5 N VICTORIA AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_102_6,-74.4135675,39.390041,7 N VICTORIA AVE,VENTNOR CITY,17,1935,1,GOV1,3004 -0122_102_7,-74.71854228,39.6356629,11 N VICTORIA AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_102_8,-74.80767276,39.61577864,13-15 N VICTORIA AVE,VENTNOR CITY,,1972,1,RES1,3001 -0122_102_9,-74.91673138,39.48176031,5300 WINCHESTER AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_103_2,-74.77868258,39.62501417,5319 WINCHESTER AVE,VENTNOR CITY,18,2007,1,RES1,3001 -0122_104_1,-74.8553305,39.450457,5307 VENTNOR AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_104_10,-74.64660032,39.33075766,11 N SURREY AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_104_11,-74.6512486,39.62315273,15 N SURREY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_104_12,-74.369432,39.405245,14 N VICTORIA AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_104_14,-74.63119807,39.35932687,10 N VICTORIA AVE,VENTNOR CITY,,1936,1,RES1,3001 -0122_104_15,-74.61335118,39.35182785,8 N VICTORIA AVE,VENTNOR CITY,17,1917,2,RES1,3001 -0122_104_16,-74.63473975,39.39067396,6 N VICTORIA AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_104_17,-74.64292797,39.53002885,4 N VICTORIA AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_104_18,-74.6332905,39.5123155,2 N VICTORIA AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_104_2,-74.712172,39.466346,5309 VENTNOR AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_104_3,-74.62245775,39.42348805,5311 VENTNOR AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_104_4,-74.7485245,39.436517,1 N SURREY AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_104_5,-74.75933921,39.44457114,3A N SURREY AVE,VENTNOR CITY,17,1949,1,RES1,3001 -0122_104_6,-74.88240487,39.48260633,3 N SURREY AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_104_7,-74.642034,39.5288515,5 N SURREY AVE,VENTNOR CITY,17,1928,2,RES1,3001 -0122_104_8,-74.68887295,39.55692566,7 N SURREY AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_104_9,-74.629188,39.406854,9 N SURREY AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_105_1,-74.6119375,39.3272615,5401 VENTNOR AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_105_2,-74.73344945,39.43289335,5403 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_105_3,-74.69913367,39.43987546,5405 VENTNOR AVE,VENTNOR CITY,17,1919,1,RES1,3001 -0122_105_4,-74.61466622,39.48447431,5407 VENTNOR AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_105_5,-74.7605435,39.4312515,1 N SUFFOLK AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_105_6,-74.57032637,39.34103082,5404 WINCHESTER AVE,VENTNOR CITY,17,1912,1,IND6,3004 -0122_105_8,-74.62616915,39.43479774,4 N SURREY AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_106_1,-74.6247315,39.3592855,5401 WINCHESTER AVE,VENTNOR CITY,18,1940,1,REL1,3004 -0122_106_2,-74.58316036,39.36000313,5403 WINCHESTER AVE,VENTNOR CITY,18,1900,1,RES1,3001 -0122_106_3,-74.647831,39.507882,5405 WINCHESTER AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_106_4,-74.67170127,39.37131141,5405 1/2 WINCHESTER,VENTNOR CITY,16,1900,1,RES1,3001 -0122_106_5,-74.627675,39.3957685,5407 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_106_6.01,-74.59770956,39.59788434,5409 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_106_6.02,-74.58685242,39.54014333,5411 WINCHESTER AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_106_7,-74.62531888,39.41744218,5415 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_106_8,-74.813481,39.4435635,7 N SUFFOLK AVE,VENTNOR CITY,17,1999,1,GOV1,3004 -0122_107_1,-74.601824,39.4330065,5501 VENTNOR AVE,VENTNOR CITY,18,1922,1,RES1,3001 -0122_107_2,-74.6357958,39.42930953,5503 VENTNOR AVE,VENTNOR CITY,17,1918,1,GOV1,3004 -0122_107_3,-74.68092792,39.3861854,5505 VENTNOR AVE,VENTNOR CITY,17,1982,1,RES1,3001 -0122_107_4,-74.6131525,39.4207235,1 N SOMERSET AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_107_5,-74.7008075,39.425453,3 N SOMERSET AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_107_6,-74.6260595,39.376485,5504 WINCHESTER AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_107_7,-74.61860251,39.43671982,5502 WINCHESTER AVE,VENTNOR CITY,17,1919,1,RES1,3002 -0122_107_8,-74.60826102,39.50165867,2 N SUFFOLK AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_108_1,-74.66855229,39.39259786,5501 WINCHESTER AVE,VENTNOR CITY,18,1936,1,RES1,3001 -0122_108_2,-74.8530975,39.3685605,5503 WINCHESTER AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_108_3,-74.56749315,39.34046741,5507 WINCHESTER AVE,VENTNOR CITY,18,1980,1,RES1,3001 -0122_108_4,-74.71684942,39.3998767,5511 WINCHESTER AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_108_5,-74.60635201,39.47580883,5513 WINCHESTER AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_108_6,-74.55536947,39.47464659,5515 WINCHESTER AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_108_7,-74.67249466,39.45530192,7 N SOMERSET AVE,VENTNOR CITY,18,2005,1,RES1,3001 -0122_109_1,-74.60889459,39.39170046,5601 VENTNOR AVE,VENTNOR CITY,17,1877,1,RES1,3001 -0122_109_2,-74.571233,39.47825605,5603 VENTNOR AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_109_3,-74.559289,39.3914585,5605 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_109_4,-74.6129784,39.3237081,5607 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_109_5,-74.6073105,39.4753485,1 N OXFORD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_109_6,-74.6026055,39.3953515,5604 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_109_7,-74.60433837,39.41026643,5602 WINCHESTER AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_109_8,-74.60909245,39.42118283,5600 WINCHESTER AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_11_1,-74.51301135,39.53456403,5300 BOARDWALK,VENTNOR CITY,,1960,1,RES1,3001 -0122_11_10,-74.5684875,39.363665,110 S LITTLE ROCK AVE,VENTNOR CITY,,1890,1,RES1,3001 -0122_11_11,-74.59002082,39.32925795,112 S LITTLE ROCK AVE,VENTNOR CITY,45,1950,4,RES1,3001 -0122_11_3,-74.61329294,39.32130416,109 S VICTORIA AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_11_4,-74.58174084,39.33891633,107 S VICTORIA AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_11_5,-74.6300085,39.356578,105 S VICTORIA AVE,VENTNOR CITY,,1900,1,RES1,3001 -0122_11_6,-74.59686424,39.34056707,101 S VICTORIA AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_11_7,-74.57111421,39.3730461,100 S LITTLE ROCK AVE,VENTNOR CITY,,1952,1,RES1,3001 -0122_11_8,-74.75613855,39.30423681,106 S LITTLE ROCK AVE,VENTNOR CITY,,1890,1,RES1,3001 -0122_11_9,-74.58155769,39.36050967,108 S LITTLE ROCK AVE,VENTNOR CITY,,1890,1,RES1,3001 -0122_110_1,-74.618725,39.4363515,4 N SOMERSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_110_2,-74.61892808,39.43615356,5607 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_110_3,-74.68681879,39.41283153,5609 WINCHESTER AVE,VENTNOR CITY,19,2018,1,RES1,3001 -0122_110_4,-74.622475,39.431935,5611 WINCHESTER AVE,VENTNOR CITY,18,1910,1,RES1,3001 -0122_110_5,-74.62809218,39.42417409,5613 WINCHESTER AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_110_6,-74.59070965,39.43182271,5 N OXFORD AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_110_7,-74.64081317,39.37328455,7 N OXFORD AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_111_1.01,-74.564837,39.35466758,3 N DUDLEY AVE,VENTNOR CITY,18,1986,1,RES1,3001 -0122_111_1.02,-74.54626586,39.38213536,5702 WINCHESTER AVE,VENTNOR CITY,17,1988,1,RES1,3001 -0122_111_1.03,-74.6108658,39.32217767,2 N OXFORD AVE,VENTNOR CITY,18,1988,1,RES1,3001 -0122_111_1.04,-74.564569,39.360278,5701 VENTNOR AVE,VENTNOR CITY,18,1988,1,RES1,3001 -0122_111_1.05,-74.61334206,39.32326669,5703 VENTNOR AVE,VENTNOR CITY,17,1989,1,RES1,3001 -0122_111_1.06,-74.605597,39.36051,5705 VENTNOR AVE,VENTNOR CITY,17,1987,1,RES1,3001 -0122_112_1,-74.59926803,39.40912082,5701 WINCHESTER AVE,VENTNOR CITY,18,2004,1,RES1,3001 -0122_112_2,-74.60555287,39.39156485,5705 WINCHESTER AVE,VENTNOR CITY,16,1930,1,GOV1,3004 -0122_112_3,-74.60876094,39.48697328,5707 WINCHESTER AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_112_4,-74.56842323,39.47627481,5709 WINCHESTER AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_112_5,-74.63269573,39.43023328,5711 WINCHESTER AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_112_6,-74.57616058,39.37108776,5713 WINCHESTER AVE,VENTNOR CITY,20,2014,1,RES1,3001 -0122_113_1,-74.57739651,39.34069152,5801 VENTNOR AVE,VENTNOR CITY,19,1900,1,RES1,3001 -0122_113_3,-74.57475816,39.34746782,5 N DORSET AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_113_4.01,-74.59546534,39.34891683,7 N DORSET AVE,VENTNOR CITY,17,1988,1,GOV1,3004 -0122_113_4.02,-74.61603857,39.32165145,19 N DORSET AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_113_5,-74.56523203,39.37656918,10 N DUDLEY AVE,VENTNOR CITY,18,1995,1,RES1,3001 -0122_113_6,-74.56134222,39.36602728,8 N DUDLEY AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_113_7,-74.59888226,39.36636383,6 N DUDLEY AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_113_8,-74.59814019,39.36796419,4 N DUDLEY AVE,VENTNOR CITY,18,1920,1,GOV1,3004 -0122_114_1,-74.49610993,39.45575072,5901 VENTNOR AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_114_2,-74.63363735,39.40814745,5903 VENTNOR AVE,VENTNOR CITY,18,1900,1,RES1,3001 -0122_114_3,-74.50389657,39.40617414,1 N DERBY AVE,VENTNOR CITY,18,1940,1,RES1,3001 -0122_114_4,-74.63015427,39.4166398,3 N DERBY AVE,VENTNOR CITY,18,1962,1,RES1,3001 -0122_114_5,-74.48929,39.4583105,5908 WINCHESTER AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_114_6,-74.5062693,39.33885986,5904 WINCHESTER AVE,VENTNOR CITY,18,1950,1,GOV1,3004 -0122_114_7,-74.47297059,39.48087527,4 N DORSET AVE,VENTNOR CITY,18,1915,1,RES1,3004 -0122_115_1,-74.57896704,39.33846234,5901 WINCHESTER AVE,VENTNOR CITY,17,1907,1,RES1,3001 -0122_115_2.01,-74.5669584,39.36430619,5903 WINCHESTER AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_115_2.02,-74.5482916,39.36150135,5905 WINCHESTER AVE,VENTNOR CITY,18,1980,1,GOV1,3004 -0122_115_2.03,-74.60198367,39.32614229,5907 WINCHESTER AVE,VENTNOR CITY,18,1980,1,RES1,3001 -0122_115_2.04,-74.59825427,39.31973586,5909 WINCHESTER AVE,VENTNOR CITY,18,1980,1,RES1,3001 -0122_115_2.05,-74.52964266,39.46195203,5911 WINCHESTER AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_115_3,-74.58753852,39.32033982,11 N DERBY AVE,VENTNOR CITY,17,1907,1,GOV1,3004 -0122_116_1,-74.49742348,39.52567568,6001 VENTNOR AVE,VENTNOR CITY,19,1913,1,RES1,3001 -0122_116_2,-74.582,39.367397,6003 VENTNOR AVE,VENTNOR CITY,19,1920,1,RES1,3001 -0122_116_3,-74.36860759,39.40312118,6005 VENTNOR AVE,VENTNOR CITY,18,1920,1,GOV1,3004 -0122_116_4,-74.610436,39.3676345,1 N CORNWALL AVE,VENTNOR CITY,18,1923,1,RES1,3001 -0122_116_5,-74.59294734,39.32556808,15 N CORNWALL AVE,VENTNOR CITY,19,1900,1,RES1,3001 -0122_116_6,-74.49022894,39.43457077,6010 WINCHESTER AVE,VENTNOR CITY,18,1960,1,RES1,3001 -0122_116_7,-74.5198756,39.44163441,6 N DERBY AVE,VENTNOR CITY,18,1915,1,RES1,3001 -0122_116_8,-74.46207519,39.46991165,4 N DERBY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_116_9,-74.50729376,39.41122085,2 N DERBY AVE,VENTNOR CITY,18,1900,1,GOV1,3004 -0122_117_1,-74.516147,39.474532,6001 WINCHESTER AVE,VENTNOR CITY,18,1890,1,GOV1,3004 -0122_117_2,-74.4498786,39.48027565,6003 WINCHESTER AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_117_3,-74.50574025,39.49398868,6005 WINCHESTER AVE,VENTNOR CITY,19,2018,1,RES1,3001 -0122_117_4,-74.5042075,39.479558,6007 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_117_5,-74.63075349,39.42100518,6009 WINCHESTER AVE,VENTNOR CITY,18,1926,1,RES3A,3001 -0122_117_6,-74.46146355,39.3571265,21 N CORNWALL AVE,VENTNOR CITY,18,1926,1,RES1,3001 -0122_117_7,-74.48808683,39.35127312,23 N CORNWALL AVE,VENTNOR CITY,19,2016,1,RES1,3001 -0122_117_8,-74.46044149,39.50034722,25 N CORNWALL AVE,VENTNOR CITY,20,2015,1,RES1,3001 -0122_118_1,-74.4724795,39.3437885,6101 VENTNOR AVE,VENTNOR CITY,19,1939,1,RES1,3001 -0122_118_10,-74.48821331,39.42231632,25 N CAMBRIDGE AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_118_11,-74.4689305,39.4453625,6104 WINCHESTER AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_118_12,-74.62089551,39.43450852,6102 WINCHESTER AVE,VENTNOR CITY,18,1903,1,GOV1,3004 -0122_118_13,-74.4599535,39.3557615,24 N CORNWALL AVE,VENTNOR CITY,17,1903,1,RES1,3001 -0122_118_14,-74.62954393,39.40693436,22 N CORNWALL AVE,VENTNOR CITY,18,1992,1,RES1,3001 -0122_118_15,-74.52278,39.4186975,10 N CORNWALL AVE,VENTNOR CITY,18,1962,1,GOV1,3004 -0122_118_16,-74.51726617,39.53039406,8 N CORNWALL AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_118_17,-74.52140275,39.38999487,6 N CORNWALL AVE,VENTNOR CITY,18,1927,1,RES1,3001 -0122_118_18,-74.40048266,39.38638253,4 N CORNWALL AVE,VENTNOR CITY,18,1926,1,RES1,3001 -0122_118_19,-74.495296,39.336661,2 N CORNWALL AVE,VENTNOR CITY,18,1909,1,RES1,3001 -0122_118_2,-74.51139516,39.32796952,6103 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_118_3,-74.503174,39.327334,6105 VENTNOR AVE,VENTNOR CITY,18,1932,1,RES1,3001 -0122_118_4,-74.497536,39.3332255,6115 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_118_5,-74.46295829,39.34904717,3 N CAMBRIDGE AVE,VENTNOR CITY,18,1915,1,RES1,3001 -0122_118_6,-74.4504495,39.35557,5 N CAMBRIDGE AVE,VENTNOR CITY,19,1989,1,RES1,3001 -0122_118_7,-74.38751565,39.39258695,7 N CAMBRIDGE AVE,VENTNOR CITY,18,1915,1,RES1,3001 -0122_118_8,-74.3613925,39.4132035,9 N CAMBRIDGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_118_9,-74.62905026,39.34998663,11 N CAMBRIDGE AVE,VENTNOR CITY,18,1924,1,RES1,3001 -0122_119_1,-74.92561598,39.51963127,6201 VENTNOR AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_119_10,-74.68771098,39.65418766,7 N SACRAMENTO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_119_11,-74.81301848,39.63973174,9 N SACRAMENTO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_12,-74.49366221,39.33311312,11 N SACRAMENTO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_13,-74.45901879,39.35036695,15 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_119_14,-74.4823965,39.3413775,17 N SACRAMENTO AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_119_15,-74.4850955,39.345405,19 N SACRAMENTO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_119_16,-74.489065,39.3382275,21 N SACRAMENTO AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_119_17,-74.37051899,39.40034866,6210 WINCHESTER AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_119_18,-74.4318025,39.368529,6208 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_19,-74.3692561,39.40339372,6206 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_2,-74.92556396,39.47986174,6203 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_20,-74.5269155,39.3850225,6204 WINCHESTER AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_119_21,-74.79589604,39.59994253,24 N CAMBRIDGE AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_119_22,-74.6100275,39.3528835,22 N CAMBRIDGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_119_23,-74.359983,39.413228,20 N CAMBRIDGE AVE,VENTNOR CITY,17,1900,2,COM1,3004 -0122_119_24,-74.41783994,39.36908431,18 N CAMBRIDGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_119_25,-74.49560664,39.33615188,16 N CAMBRIDGE AVE,VENTNOR CITY,17,1919,1,RES1,3001 -0122_119_26,-74.45181627,39.35657768,14 N CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_119_27,-74.45730429,39.34921317,12 N CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_28,-74.49928,39.3313265,10 N CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_29,-74.43482579,39.36595718,8 N CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_3,-74.81766975,39.63101345,6209 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_30,-74.80485044,39.64980116,6 N CAMBRIDGE AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_119_31,-74.78189758,39.65333607,2 N CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_4,-74.87404099,39.59454817,6211 VENTNOR AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_119_5,-74.77703032,39.62152817,6215 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_119_6,-74.62241469,39.37774052,6223 VENTNOR AVE,VENTNOR CITY,,1950,1,GOV1,3004 -0122_119_7,-74.51374124,39.3284889,13 N SACRAMENTO AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_119_8,-74.82843335,39.62176054,3 N SACRAMENTO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_119_9,-74.926806,39.4839185,5 N SACRAMENTO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_12_1,-74.51370332,39.48609854,111 S SURREY AVE,VENTNOR CITY,,1962,1,RES1,3001 -0122_12_2,-74.46911666,39.47723809,109 S SURREY AVE,VENTNOR CITY,,1900,1,RES1,3001 -0122_12_3,-74.60399243,39.32057919,105 S SURREY AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_12_4,-74.59903587,39.36798575,5312 ATLANTIC AVE,VENTNOR CITY,,1980,1,COM1,3004 -0122_12_6,-74.57562712,39.36427787,VICTORIA AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_120_10,-74.80819702,39.63143499,15 N PORTLAND AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_120_11,-74.88827833,39.59840773,17 N PORTLAND AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_120_12,-74.79032314,39.64527969,6310 WINCHESTER AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_120_13,-74.7988506,39.65500885,6308 WINCHESTER AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_120_14,-74.43523762,39.3643085,6306 WINCHESTER AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_120_15,-74.50309167,39.3315915,6304 WINCHESTER AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_120_16,-74.51522704,39.31935535,6302 WINCHESTER AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_120_18,-74.501222,39.3296155,16 N SACRAMENTO AVE,VENTNOR CITY,,1953,1,RES1,3001 -0122_120_19,-74.441077,39.367991,14 N SACRAMENTO AVE,VENTNOR CITY,,1950,1,GOV1,3004 -0122_120_2,-74.60159787,39.34677679,6303 VENTNOR AVE,VENTNOR CITY,,1900,1,RES1,3001 -0122_120_20,-74.72297613,39.64736745,12 N SACRAMENTO AVE,VENTNOR CITY,,1922,1,RES1,3001 -0122_120_21,-74.82780656,39.63535563,8 N SACRAMENTO AVE,VENTNOR CITY,,1960,1,GOV1,3004 -0122_120_22,-74.6390615,39.3806445,6 N SACRAMENTO AVE,VENTNOR CITY,17,1940,2,RES1,3001 -0122_120_23,-74.84843123,39.53986222,4 N SACRAMENTO AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_120_24,-74.67553493,39.55684567,2 N SACRAMENTO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_120_3,-74.64627754,39.53285934,6305 VENTNOR AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_120_4,-74.790662,39.6326475,6307 VENTNOR AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_120_5,-74.45583276,39.49661764,6309 VENTNOR AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_120_8,-74.6196115,39.369305,9 N PORTLAND AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_120_9,-74.7745975,39.631218,11 N PORTLAND AVE,VENTNOR CITY,47,1950,2,RES1,3001 -0122_121_1,-74.5996365,39.34140183,6401 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_121_10,-74.50932321,39.32774143,11 N NEWPORT AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_121_11,-74.48807135,39.47900612,13 N NEWPORT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_121_12,-74.46938166,39.34317904,15 N NEWPORT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_121_13,-74.79490244,39.63486219,17 N NEWPORT AVE,VENTNOR CITY,27,1900,1,RES1,3001 -0122_121_14,-74.48519584,39.33433348,19 N NEWPORT AVE,VENTNOR CITY,27,1900,1,RES1,3001 -0122_121_15,-74.64693683,39.52269649,21 N NEWPORT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_121_16,-74.60233408,39.34718918,23 N NEWPORT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_121_17,-74.62889401,39.5557905,25 N NEWPORT AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_121_18,-74.836755,39.5294305,6416 WINCHESTER AVE,VENTNOR CITY,17,1925,2,RES1,3001 -0122_121_19,-74.87503399,39.56284184,6414 WINCHESTER AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_121_2,-74.8155465,39.4696685,6409 VENTNOR AVE,VENTNOR CITY,,1930,4,RES1,3001 -0122_121_20,-74.6227644,39.38254897,6412 WINCHESTER AVE,VENTNOR CITY,17,1941,1,RES1,3001 -0122_121_21,-74.63400982,39.38823207,6410 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_121_22,-74.7803019,39.63579173,6408 WINCHESTER AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_121_23,-74.80713934,39.63747498,30 N PORTLAND AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_121_24,-74.86579108,39.59624934,28 N PORTLAND AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_121_25.01,-74.62849967,39.39313955,26 N PORTLAND AVE,VENTNOR CITY,17,1890,1,RES1,3001 -0122_121_25.02,-74.72612535,39.59071005,24 N PORTLAND AVE,VENTNOR CITY,17,1890,3,RES1,3001 -0122_121_25.03,-74.62221984,39.5511144,18 N PORTLAND AVE,VENTNOR CITY,18,1901,1,RES1,3001 -0122_121_25.04,-74.65307565,39.52787281,12 N PORTLAND AVE,VENTNOR CITY,16,1890,1,RES1,3001 -0122_121_26,-74.48683889,39.49842346,6 N PORTLAND AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_121_27,-74.6402835,39.5273765,4 N PORTLAND AVE,VENTNOR CITY,17,1915,3,RES1,3001 -0122_121_3,-74.72213608,39.45671543,6411 VENTNOR AVE,VENTNOR CITY,,1920,3,RES1,3001 -0122_121_4.01,-74.8259485,39.4024,6413 VENTNOR AVE,VENTNOR CITY,,1920,3,GOV1,3004 -0122_121_4.02,-74.756848,39.4331235,6417 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_121_6,-74.75194032,39.45243899,3 N NEWPORT AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_121_7,-74.6047075,39.3507335,5 N NEWPORT AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_121_8,-74.8027045,39.49905561,7 N NEWPORT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_121_9,-74.650827,39.512937,9 N NEWPORT AVE,VENTNOR CITY,47,1940,1,RES1,3001 -0122_122_1,-74.63168117,39.41981867,6501 VENTNOR AVE,VENTNOR CITY,,1902,1,RES1,3001 -0122_122_10,-74.38774699,39.39217066,6519 VENTNOR AVE,VENTNOR CITY,,1912,3,RES1,3001 -0122_122_11,-74.63810479,39.38097705,6521 VENTNOR AVE,VENTNOR CITY,,1912,1,COM1,3004 -0122_122_12,-74.6114885,39.422018,6523-25 VENTNOR AVE,VENTNOR CITY,,2006,4,RES1,3001 -0122_122_13,-74.42275,39.37526,1 N NEW HAVEN AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_122_14,-74.63143763,39.42112275,231/2 N NEW HAVEN REAR,VENTNOR CITY,17,1900,1,RES1,3001 -0122_122_15,-74.64354445,39.39535918,3 N NEW HAVEN AVE,VENTNOR CITY,,1910,1,RES1,3001 -0122_122_16,-74.54366344,39.46604376,5 N NEW HAVEN AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_122_17,-74.6508955,39.457779,7 N NEW HAVEN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_122_18,-74.69009016,39.49160049,9 N NEW HAVEN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_122_19,-74.76505621,39.40452006,11 N NEW HAVEN AVE,VENTNOR CITY,28,1920,1,RES1,3001 -0122_122_20,-74.71694495,39.4047327,13 N NEW HAVEN AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_122_21,-74.7355752,39.45377258,15 N NEW HAVEN AVE,VENTNOR CITY,28,1920,2,RES1,3001 -0122_122_22,-74.59537066,39.3482045,17 N NEW HAVEN AVE,VENTNOR CITY,,1926,1,RES1,3001 -0122_122_23,-74.55958501,39.36522576,19 N NEW HAVEN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_122_24,-74.60703567,39.34712199,21 N NEW HAVEN AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_122_25,-74.8287655,39.4847445,25 N NEW HAVEN AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_122_26,-74.53161618,39.53030819,6518 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_122_27,-74.652262,39.5069345,6516 WINCHESTER AVE,VENTNOR CITY,,1950,1,RES1,3001 -0122_122_28,-74.6335049,39.53620288,6514 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_122_29,-74.509656,39.3326595,6512 WINCHESTER AVE,VENTNOR CITY,17,1928,1,GOV1,3004 -0122_122_30,-74.45989616,39.34817567,6510 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_122_31,-74.48463213,39.4958882,6508 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_122_32,-74.64165035,39.5252062,26 N NEWPORT AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_122_33,-74.500189,39.494014,24 N NEWPORT AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_122_34,-74.469183,39.3414745,22 N NEWPORT AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_122_35,-74.63041485,39.52435405,18-20 N NEWPORT AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_122_36,-74.8551915,39.4416185,16 N NEWPORT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_122_37,-74.5756775,39.351704,14 N NEWPORT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_122_38,-74.58281996,39.33921516,10 N NEWPORT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_122_39,-74.75920729,39.42987374,8 N NEWPORT AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_122_40,-74.68080751,39.48865987,6 N NEWPORT AVE,VENTNOR CITY,,1965,1,RES1,3001 -0122_122_41,-74.53870357,39.46123878,2 N NEWPORT AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_122_8,-74.64175637,39.38731357,6515 VENTNOR AVE,VENTNOR CITY,,1912,2,RES1,3001 -0122_122_9,-74.5718,39.413574,6517 VENTNOR AVE,VENTNOR CITY,,1912,2,RES1,3001 -0122_123_1,-74.58228953,39.47359378,6601 VENTNOR AVE,VENTNOR CITY,,1932,1,RES1,3001 -0122_123_2,-74.74596875,39.4179998,20 N NEW HAVEN AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_124_1,-74.5705155,39.367132,6701 VENTNOR AVE,VENTNOR CITY,,1998,1,RES1,3001 -0122_124_10,-74.400656,39.3832165,22 N TROY AVE,VENTNOR CITY,17,1935,1,EDU1,3004 -0122_124_11,-74.53688438,39.38038313,14 N TROY AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_124_12,-74.65926912,39.35817031,12 N TROY AVE,VENTNOR CITY,17,1935,1,GOV1,3004 -0122_124_13,-74.6377795,39.336624,10 N TROY AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_124_14,-74.61376149,39.35037258,8 N TROY AVE,VENTNOR CITY,16,1920,1,RES1,3001 -0122_124_2,-74.56515846,39.35317103,7 N RICHARDS AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_124_3,-74.589356,39.3489125,9 N RICHARDS AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_124_4,-74.6397575,39.342682,11 N RICHARDS AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_124_5,-74.5365435,39.383169,15 N RICHARDS AVE,VENTNOR CITY,20,1920,1,RES1,3001 -0122_124_7.01,-74.61219263,39.42071381,23 N RICHARDS AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_124_7.02,-74.638671,39.4015275,21 N RICHARDS AVE,VENTNOR CITY,17,1991,1,RES1,3002 -0122_124_8,-74.56203808,39.41400335,25 N RICHARDS AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_124_9,-74.68023862,39.38785753,24 N TROY AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_125_1,-74.50482179,39.43843135,6725 VENTNOR AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_125_10,-74.63366075,39.34746169,23 N BUFFALO AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_125_11,-74.6350515,39.3623705,25 N BUFFALO AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_125_12,-74.54107231,39.37346937,27 N BUFFALO AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_125_13,-74.58176498,39.4296337,29 N BUFFALO AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_125_14,-74.62553563,39.38090837,26 N RICHARDS AVE,VENTNOR CITY,17,1925,1,EDU1,3004 -0122_125_15,-74.56629817,39.37471916,24 N RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_125_16,-74.53809885,39.37937904,22 N RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_125_17,-74.63447374,39.3660966,18 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_125_18,-74.5862105,39.353209,16 N RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_125_19,-74.58763106,39.33720719,14 N RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_125_2,-74.4817735,39.4448955,1 N BUFFALO AVE,VENTNOR CITY,17,1920,2,RES1,3001 -0122_125_20,-74.56269591,39.35624579,12 N RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_125_21,-74.60470356,39.32344629,10 N RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_125_22,-74.584258,39.325641,6 N RICHARDS AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_125_23,-74.492631,39.4739305,4 N RICHARDS AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_125_24,-74.49185995,39.46761184,2 N RICHARDS AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_125_3,-74.46060119,39.49171475,3 N BUFFALO AVE,VENTNOR CITY,,1980,1,RES1,3001 -0122_125_4,-74.4854165,39.5240545,9 N BUFFALO AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_125_5,-74.6001615,39.312521,11 N BUFFALO AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_125_6,-74.59371961,39.32754042,15 N BUFFALO AVE,VENTNOR CITY,18,1932,1,RES1,3001 -0122_125_7,-74.5705102,39.33768144,17 N BUFFALO AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_125_8,-74.56697878,39.36388925,19 N BUFFALO AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_125_9,-74.61305151,39.35008103,21 N BUFFALO AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_126_1,-74.5906257,39.37689364,1 N WISSAHICKON AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_126_10,-74.58917811,39.33571535,23 N WISSAHICKON AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_126_11,-74.62814769,39.35383603,6802 WINCHESTER AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_126_12,-74.81307153,39.35611719,30 N BUFFALO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_126_13,-74.601222,39.3599255,28 N BUFFALO AVE,VENTNOR CITY,18,1932,1,RES1,3001 -0122_126_14,-74.5873295,39.348758,26 N BUFFALO AVE,VENTNOR CITY,18,1940,1,RES1,3001 -0122_126_15,-74.56381908,39.36491435,24 N BUFFALO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_126_16,-74.61401164,39.31906623,22 N BUFFALO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_126_17,-74.58796008,39.3151548,18 N BUFFALO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_126_18,-74.47144825,39.48517394,10 N BUFFALO AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_126_19,-74.51310425,39.44173782,8 N BUFFALO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_126_2,-74.54869003,39.40316884,3 N WISSAHICKON AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_126_20,-74.4887685,39.433496,6 N BUFFALO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_126_21,-74.57370538,39.3569447,4 N BUFFALO AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_126_22,-74.50135873,39.42973691,2 N BUFFALO AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_126_3,-74.49096946,39.44944132,7 N WISSAHICKON AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_126_4,-74.479327,39.43928,9 N WISSAHICKON AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_126_5,-74.51571458,39.46179385,13 N WISSAHICKON AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_126_6,-74.52256735,39.47110203,15 N WISSAHICKON AVE,VENTNOR CITY,17,1936,1,GOV1,3004 -0122_126_7,-74.57777818,39.33371651,20 N BUFFALO AVE,VENTNOR CITY,18,2016,1,RES1,3001 -0122_126_8,-74.5884875,39.3236665,19 N WISSAHICKON AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_126_9,-74.5671585,39.3580485,21 N WISSAHICKON AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_127_1,-74.5862285,39.3843435,6815 VENTNOR AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_127_10,-74.6101725,39.325573,29 N NEWARK AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_127_11,-74.57000431,39.36806816,6804 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_127_12,-74.6042925,39.3330305,22 N WISSAHICKON AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_127_13,-74.58269675,39.32779017,20 N WISSAHICKON AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_127_14,-74.4606195,39.5465655,18 N WISSAHICKON AVE,VENTNOR CITY,18,1940,1,RES1,3001 -0122_127_15,-74.45548459,39.48939671,16 N WISSAHICKON AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_127_16,-74.48790292,39.45311644,14 N WISSAHICKON AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_127_17,-74.57511566,39.35145853,12 N WISSAHICKON AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_127_18,-74.433463,39.49211,10 N.WISSAHICKON AVE,VENTNOR CITY,17,1940,1,COM4,3004 -0122_127_19,-74.573755,39.40357,8 N WISSAHICKON AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_127_20,-74.59027143,39.37567924,4 N WISSAHICKON AVE,VENTNOR CITY,20,1920,1,GOV1,3004 -0122_127_21,-74.50544564,39.40764958,6811 VENTNOR AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_127_3,-74.545486,39.400236,9 N NEWARK AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_127_6,-74.5277602,39.42001793,17 N NEWARK AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_127_7,-74.514097,39.4409235,21 N NEWARK AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_127_8,-74.48919298,39.49583676,25 N NEWARK AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_127_9,-74.5941795,39.31236,27 N NEWARK AVE,VENTNOR CITY,17,1929,1,COM1,3004 -0122_128_1,-74.49134483,39.3402736,6901 VENTNOR AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_128_10,-74.601947,39.382594,13 N ROSBOROUGH AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_128_11,-74.55370377,39.42769566,15 N ROSBOROUGH AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_128_12,-74.48543438,39.43810018,17 N ROSBOROUGH AVE,VENTNOR CITY,17,1940,1,RES3A,3001 -0122_128_13,-74.52139701,39.40875866,19 N ROSBOROUGH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_128_14,-74.51358983,39.44311281,21 N ROSBOROUGH AVE,VENTNOR CITY,45,1935,1,RES1,3001 -0122_128_15,-74.4842015,39.473147,23 N ROSBOROUGH AVE,VENTNOR CITY,45,1935,2,RES1,3001 -0122_128_16,-74.49004462,39.53317206,20 N NEWARK AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_128_17,-74.46391037,39.4958217,18 N NEWARK AVE,VENTNOR CITY,39,1940,1,RES1,3001 -0122_128_18,-74.51904684,39.43764028,16 N NEWARK AVE,VENTNOR CITY,17,1940,2,RES1,3001 -0122_128_19,-74.4960635,39.425791,14 N NEWARK AVE,VENTNOR CITY,18,2008,1,RES1,3001 -0122_128_2,-74.516957,39.399708,6903 VENTNOR AVE,VENTNOR CITY,,1966,1,RES1,3001 -0122_128_20,-74.506527,39.4376245,12 N NEWARK AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_128_21,-74.60110073,39.41668589,10 N NEWARK AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_128_22,-74.54714326,39.3971971,6-8 N NEWARK AVE,VENTNOR CITY,,1962,1,RES1,3001 -0122_128_23,-74.533023,39.404632,4 N NEWARK AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_128_24,-74.50347294,39.40690268,2 N NEWARK AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_128_3,-74.37851967,39.41738701,6905 VENTNOR AVE,VENTNOR CITY,,1966,1,RES1,3001 -0122_128_4,-74.3649025,39.4058275,6907 VENTNOR AVE,VENTNOR CITY,17,1900,1,RES3A,3001 -0122_128_5,-74.5161135,39.396219,3 N ROSBOROUGH AVE,VENTNOR CITY,17,1928,1,GOV1,3004 -0122_128_6,-74.50754992,39.33458738,5 N ROSBOROUGH AVE,VENTNOR CITY,45,1966,2,RES1,3001 -0122_128_7,-74.578239,39.382429,7 N ROSBOROUGH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_128_8,-74.535095,39.405144,9 N ROSBOROUGH AVE,VENTNOR CITY,,1930,4,RES1,3001 -0122_128_9,-74.490919,39.4195325,11 N ROSBOROUGH AVE,VENTNOR CITY,17,1935,1,REL1,3004 -0122_129_1,-74.498557,39.335939,6923 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_129_10,-74.6073765,39.3929355,15 N WYOMING AVE,VENTNOR CITY,17,1903,1,RES1,3001 -0122_129_12,-74.58743067,39.37272005,19 N WYOMING AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_129_13,-74.5380587,39.40446523,21 N WYOMING AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_129_14,-74.600818,39.411524,23 N WYOMING AVE,VENTNOR CITY,17,1940,1,RES1,3004 -0122_129_15,-74.56645203,39.35323682,24 N ROSBOROUGH AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_129_16,-74.51362612,39.43035944,20 N ROSBOROUGH AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_129_17,-74.56952947,39.41284877,18 N ROSBOROUGH AVE,VENTNOR CITY,45,1920,2,RES1,3001 -0122_129_18,-74.59659161,39.37943028,16 N ROSBOROUGH AVE,VENTNOR CITY,17,1940,2,RES1,3001 -0122_129_19,-74.49219383,39.42090853,14 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_129_2,-74.60559654,39.32145978,6925 VENTNOR AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_129_20,-74.60622531,39.38863598,12 N ROSBOROUGH AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_129_21,-74.51923,39.41026,10 N ROSBOROUGH AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_129_22,-74.49129824,39.33901103,8 N ROSBOROUGH AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_129_23,-74.44669147,39.3812769,6 N ROSBOROUGH AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_129_24,-74.4428565,39.372965,4 N ROSBOROUGH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_129_3,-74.59520038,39.32313667,6927 VENTNOR AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_129_4,-74.4769235,39.540192,6929 VENTNOR AVE,VENTNOR CITY,,1950,3,RES1,3001 -0122_129_5,-74.38243158,39.40037938,5 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_129_6,-74.375508,39.4033825,7 N WYOMING AVE,VENTNOR CITY,17,1927,1,COM1,3004 -0122_129_7,-74.5269317,39.39022256,7 1/2 N WYOMING AVE,VENTNOR CITY,45,1966,2,RES1,3001 -0122_129_8,-74.4919625,39.335123,9 N WYOMING AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_129_9,-74.497205,39.411517,11 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_13_1,-74.522253,39.382913,115 S SUFFOLK AVE,VENTNOR CITY,19,1920,1,RES1,3001 -0122_13_10,-74.4705185,39.4894665,106 S SURREY AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_13_11,-74.37606348,39.40139362,108 S SURREY AVE,VENTNOR CITY,20,2016,1,RES1,3001 -0122_13_12.01,-74.48969523,39.45477511,110 S SURREY AVE,VENTNOR CITY,,1900,1,RES1,3001 -0122_13_12.02,-74.511847,39.4428465,112 S SURREY AVE,VENTNOR CITY,20,2012,1,RES1,3001 -0122_13_13,-74.512616,39.405739,114 S SURREY AVE,VENTNOR CITY,20,1999,1,RES1,3001 -0122_13_14.01,-74.61029854,39.31594545,5401 BOARDWALK,VENTNOR CITY,19,1999,1,GOV1,3004 -0122_13_14.02,-74.633048,39.357302,5403 BOARDWALK,VENTNOR CITY,20,2006,1,RES1,3001 -0122_13_2,-74.513866,39.397374,111 S SUFFOLK AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_13_3,-74.4995375,39.429526,109 S SUFFOLK AVE,VENTNOR CITY,17,1904,1,RES1,3001 -0122_13_4,-74.62604513,39.43401296,107 S SUFFOLK AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_13_5,-74.49434492,39.33604034,105 S SUFFOLK AVE,VENTNOR CITY,17,1913,1,RES1,3001 -0122_13_6,-74.47385913,39.48689554,103 S SUFFOLK AVE,VENTNOR CITY,17,1926,2,RES1,3001 -0122_13_7,-74.49624354,39.53880715,101 S SUFFOLK AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_13_8,-74.572996,39.3443745,102 S SURREY AVE,VENTNOR CITY,17,1989,1,RES1,3001 -0122_13_9,-74.5978255,39.3097085,104 S SURREY AVE,VENTNOR CITY,19,2006,1,RES1,3001 -0122_130_1,-74.48355917,39.34355643,7001 VENTNOR AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_130_10,-74.4022745,39.3861925,11 N LAFAYETTE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_130_11,-74.4525945,39.37378,13 N LAFAYETTE AVE,VENTNOR CITY,17,1924,1,GOV1,3004 -0122_130_12,-74.485302,39.34466817,15 N LAFAYETTE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_130_13,-74.51726229,39.39486783,17 N LAFAYETTE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_130_14,-74.59033522,39.37993657,19 N LAFAYETTE AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_130_15,-74.50028194,39.41605369,21 N LAFAYETTE AVE,VENTNOR CITY,17,1929,1,COM3,3004 -0122_130_16,-74.4942005,39.4300785,24-26 N WYOMING AVE,VENTNOR CITY,45,1962,2,RES1,3001 -0122_130_17,-74.51089046,39.40348569,20-22 N WYOMING AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_130_18,-74.61250647,39.37004128,18 N WYOMING AVE,VENTNOR CITY,17,1944,1,RES1,3001 -0122_130_19,-74.52527772,39.39485631,16 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_130_2,-74.48395769,39.33798452,7003 VENTNOR AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_130_20,-74.44758125,39.35491316,14 N WYOMING AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_130_21,-74.5288695,39.382502,12 N WYOMING AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_130_22,-74.36215803,39.4098873,10 N WYOMING AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_130_23,-74.38944133,39.39196796,8 N WYOMING AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_130_24,-74.489743,39.334759,6 N WYOMING AVE,VENTNOR CITY,17,1940,1,RES4,3001 -0122_130_25,-74.6127223,39.31676037,4 N WYOMING AVE,VENTNOR CITY,45,1940,3,RES1,3001 -0122_130_26,-74.49008537,39.33530883,2 N WYOMING AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_130_3,-74.514765,39.325952,7005 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_130_4,-74.520816,39.3215465,7007 VENTNOR AVE,VENTNOR CITY,20,2009,1,RES1,3001 -0122_130_5,-74.48608555,39.34774468,1 N LAFAYETTE AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_130_6,-74.4928625,39.33878067,3 N LAFAYETTE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_130_7,-74.53363666,39.31441283,5 N LAFAYETTE AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_130_8,-74.6047155,39.319127,7 N LAFAYETTE AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_130_9,-74.38779394,39.39083534,9 N LAFAYETTE AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_131_1,-74.52046433,39.31636403,7101 VENTNOR AVE,VENTNOR CITY,17,1930,1,COM4,3004 -0122_131_10,-74.48715708,39.51977631,11 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_131_11,-74.59277831,39.31768497,13 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,COM4,3004 -0122_131_12,-74.504172,39.339785,15 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_131_13,-74.38257272,39.39574048,17 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_131_14,-74.36328802,39.41367182,19 N MELBOURNE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_131_15,-74.52415,39.388727,21 N MELBOURNE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_131_16,-74.499903,39.336222,7100 WINCHESTER AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_131_17,-74.51696318,39.39931524,20 N LAFAYETTE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_131_18,-74.36704771,39.41106828,18 N LAFAYETTE AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_131_19,-74.44269838,39.37000674,16 N LAFAYETTE AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_131_2,-74.63071887,39.40073389,7103 VENTNOR AVE,VENTNOR CITY,17,1918,1,RES1,3001 -0122_131_20,-74.488897,39.3497145,14 N LAFAYETTE AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_131_21,-74.59252057,39.32585283,12 N LAFAYETTE AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_131_22,-74.52964322,39.51192955,10 N LAFAYETTE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_131_23,-74.462831,39.352497,8 N LAFAYETTE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_131_24,-74.4689655,39.3437815,6 N LAFAYETTE AVE,VENTNOR CITY,18,2017,1,RES1,3001 -0122_131_25,-74.51463676,39.32809657,4 N LAFAYETTE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_131_26,-74.50786265,39.33071002,2 N LAFAYETTE AVE,VENTNOR CITY,17,1934,1,RES1,3001 -0122_131_3,-74.60924043,39.43976837,7105 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_131_4,-74.4795858,39.34740118,7107 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_131_5,-74.4851811,39.33398367,1 N MELBOURNE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_131_6,-74.493885,39.331563,3 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_131_7,-74.5105125,39.329826,5 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_131_8,-74.4851725,39.3397615,7 N MELBOURNE AVE,VENTNOR CITY,17,1918,1,RES1,3001 -0122_131_9,-74.45153581,39.35390252,9 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_132_1,-74.4819975,39.3399835,7117 VENTNOR AVE,VENTNOR CITY,,1926,1,RES1,3001 -0122_132_10,-74.49076384,39.33873248,17 N BALTIMORE AVE,VENTNOR CITY,17,1902,1,COM1,3004 -0122_132_11,-74.58016163,39.3118703,19 N BALTIMORE AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_132_12,-74.6068945,39.3238725,7114 WINCHESTER AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_132_13,-74.38982108,39.39232503,7110 WINCHESTER AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_132_14,-74.49500262,39.33477381,20 N MELBOURNE AVE,VENTNOR CITY,17,1933,1,RES1,3001 -0122_132_15,-74.61544804,39.30994716,18 N MELBOURNE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_132_16,-74.502875,39.503523,16 N MELBOURNE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_132_17,-74.4481545,39.3547855,14 N MELBOURNE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_132_18,-74.4740725,39.3418635,12 N MELBOURNE AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_132_2,-74.699917,39.640045,1 N BALTIMORE AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_132_20,-74.440445,39.367458,6 N MELBOURNE AVE,VENTNOR CITY,18,1940,1,RES1,3001 -0122_132_21,-74.53696386,39.45543657,4 N MELBOURNE AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_132_3,-74.464889,39.3450065,3 N BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_132_4,-74.4822965,39.3452065,5 N BALTIMORE AVE,VENTNOR CITY,19,2009,1,RES1,3001 -0122_132_5,-74.556415,39.4751475,7 N BALTIMORE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_132_6,-74.49185918,39.33408398,9 N BALTIMORE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_132_7,-74.503071,39.32869,11 N BALTIMORE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_132_8,-74.46061389,39.34839582,13 N BALTIMORE AVE,VENTNOR CITY,18,1935,1,RES1,3001 -0122_132_9,-74.47856197,39.34676283,15 N BALTIMORE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_133_1,-74.5902442,39.41466206,7207 VENTNOR AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_133_10,-74.51334165,39.32764003,17 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_133_11,-74.48637622,39.34915314,19 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_133_12,-74.48633239,39.35322596,20 N BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_133_13,-74.48602086,39.35050912,18 N BALTIMORE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_133_14,-74.51527337,39.32912235,16 N BALTIMORE AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_133_15,-74.498162,39.3310675,14 N BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_133_16,-74.43967318,39.36545599,12 N BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_133_18,-74.50949687,39.32990246,6 N BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_133_19,-74.94905571,39.51465775,4 N BALTIMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_133_2,-74.55283565,39.37752305,1 N SWARTHMORE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_133_20,-74.55523415,39.39049669,2 N BALTIMORE AVE,VENTNOR CITY,45,1925,2,RES1,3001 -0122_133_21,-74.537734,39.380121,7201 VENTNOR AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_133_3,-74.936863,39.4972005,3 N SWARTHMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_133_4,-74.969279,39.5131535,5 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_133_5,-74.51220135,39.32836997,7 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_133_6,-74.47046234,39.34444249,9 N SWARTHMORE AVE,VENTNOR CITY,,1925,1,RES1,3001 -0122_133_7,-74.60873802,39.44081863,11 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_133_8,-74.4867025,39.333502,13 N SWARTHMORE AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_133_9,-74.497265,39.328154,15 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_1,-74.36685434,39.42187558,7223-25-27 VENTNOR,VENTNOR CITY,,1930,1,RES1,3001 -0122_134_10,-74.50527016,39.32543051,18 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_11,-74.55098886,39.47072832,16 N SWARTHMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_134_12,-74.48156917,39.3475645,14 N SWARTHMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_134_13,-74.458633,39.348397,12 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_14,-74.9452915,39.537804,10 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_15,-74.9033515,39.537641,8 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_16,-74.54118367,39.39211447,6 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_17,-74.58859117,39.425333,4 N SWARTHMORE AVE,VENTNOR CITY,18,2014,1,RES1,3001 -0122_134_18,-74.90983375,39.49459687,2 N SWARTHMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_134_19,-74.80912482,39.63724555,7209 VENTNOR AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_134_2,-74.79510305,39.61918189,1 N WASHINGTON AVE,VENTNOR CITY,45,1920,2,RES1,3001 -0122_134_3,-74.576193,39.417769,3 N WASHINGTON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_4,-74.54475211,39.38562562,5 N WASHINGTON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_5,-74.95037,39.5209155,7A N WASHINGTON AVE,VENTNOR CITY,28,1950,1,RES1,3001 -0122_134_6,-74.97136673,39.51229942,7B N WASHINGTON AVE,VENTNOR CITY,28,1950,1,RES1,3001 -0122_134_7,-74.4796405,39.3496615,9 N WASHINGTON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_134_9,-74.49834466,39.32955401,20 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_135_1,-74.87786763,39.59300094,7301 VENTNOR AVE,VENTNOR CITY,,1950,3,RES1,3001 -0122_135_10,-74.80785309,39.63875565,15-17 N MARTINDALE AVE,VENTNOR CITY,45,1908,2,GOV1,3004 -0122_135_11,-74.56636737,39.41287346,21 N MARTINDALE AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_135_12,-74.59966918,39.41347806,23 N MARTINDALE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_135_13,-74.5483657,39.38467098,25 N MARTINDALE AVE,VENTNOR CITY,17,2018,1,RES1,3001 -0122_135_14,-74.53941433,39.3875714,27 N MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_135_15,-74.93594048,39.5178929,29 N MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_135_16,-74.9454795,39.5249315,31 N MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_135_17,-74.743291,39.643698,33 N MARTINDALE AVE,VENTNOR CITY,17,1925,1,EDU1,3004 -0122_135_18,-74.46641778,39.34268766,35 N MARTINDALE AVE,VENTNOR CITY,17,1910,2,RES1,3001 -0122_135_19,-74.48518517,39.34452245,28 N WASHINGTONA AVE,VENTNOR CITY,,1925,1,RES1,3001 -0122_135_2,-74.86808077,39.59453065,7303 VENTNOR AVE,VENTNOR CITY,,1950,1,RES1,3001 -0122_135_20,-74.48074617,39.33967419,26 N WASHINGTON AVE,VENTNOR CITY,,1925,1,RES1,3001 -0122_135_21,-74.46507718,39.34818913,24 N WASHINGTON AVE,VENTNOR CITY,29,1925,1,RES1,3004 -0122_135_22,-74.72365943,39.65158579,22 N WASHINGTON AVE,VENTNOR CITY,29,1925,1,RES1,3001 -0122_135_23,-74.95113675,39.52717534,20 N WASHINGTON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_135_24,-74.95063492,39.51860225,18 N WASHINGTON AVE,VENTNOR CITY,45,1925,2,RES1,3001 -0122_135_25,-74.58591354,39.38326042,16 N WASHINGTON AVE,VENTNOR CITY,45,1925,2,RES1,3001 -0122_135_26,-74.55653257,39.36887312,14 N WASHINGTON AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_135_27,-74.5833235,39.4312265,12 N WASHINGTON AVE,VENTNOR CITY,29,1925,1,GOV1,3004 -0122_135_28,-74.59105725,39.41768361,10 N WASHINGTON AVE,VENTNOR CITY,29,1925,1,RES1,3001 -0122_135_29,-74.568467,39.411979,8 N WASHINGTON AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_135_3,-74.79115988,39.63838641,7305 VENTNOR AVE,VENTNOR CITY,,1950,1,RES1,3001 -0122_135_30,-74.80998706,39.63553233,6 N WASHINGTON AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_135_31,-74.44786759,39.37892767,4 N WASHINGTON AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_135_32,-74.3749265,39.4130535,2 N WASHINGTON AVE,VENTNOR CITY,45,1940,2,GOV1,3004 -0122_135_4,-74.776669,39.6258825,7307 VENTNOR AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_135_5,-74.75718166,39.60032125,7309 VENTNOR AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_135_6,-74.48730122,39.34989769,7311 VENTNOR AVE,VENTNOR CITY,,1920,3,GOV1,3004 -0122_135_7,-74.85293076,39.59193139,5 N MARTINDALE AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_135_8,-74.35906872,39.41375167,7 N MARTINDALE AVE,VENTNOR CITY,45,1908,2,RES1,3001 -0122_135_9,-74.4458024,39.3724722,11-13 N MARTINDALE,VENTNOR CITY,,0,1,RES1,3001 -0122_136_1,-74.75476876,39.45288206,7319 VENTNOR AVE,VENTNOR CITY,,1960,1,GOV1,3004 -0122_136_10,-74.5522025,39.3841105,22 N MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_136_11,-74.6060192,39.41346808,20 N MARTINDALE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_136_12,-74.57477531,39.42131903,16 N MARTINDALE AVE,VENTNOR CITY,17,1926,1,GOV1,3004 -0122_136_13,-74.85466759,39.61866293,12 N MARTINDALE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_136_14,-74.45070198,39.37290983,10 N MARTINDALE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_136_15,-74.366786,39.4134765,8 N MARTINDALE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_136_16,-74.878049,39.5992715,6 N MARTINDALE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_136_17,-74.82834238,39.60184378,4 N MARTINDALE AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_136_19,-74.478291,39.340381,7313 VENTNOR AVE,VENTNOR CITY,,1912,1,RES1,3001 -0122_136_2,-74.75209622,39.45169165,5 N FREDERICKSBURG,VENTNOR CITY,20,2005,1,RES1,3001 -0122_136_20,-74.47128519,39.34237556,7315 VENTNOR AVE,VENTNOR CITY,,1920,3,RES1,3001 -0122_136_3.01,-74.75812843,39.44941062,9 N FREDERICKSBURG AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_136_3.02,-74.75734832,39.44558557,11 N FREDERICKSBURG AVE,VENTNOR CITY,17,1984,1,RES1,3001 -0122_136_4,-74.7778625,39.444254,13 N FREDERICKSBURG AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_136_5,-74.785791,39.4387505,15 N FREDERICKSBURG AVE,VENTNOR CITY,17,1949,1,RES1,3001 -0122_136_6,-74.7804345,39.4555505,19 N FREDERICKSBURG AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_136_7,-74.76986381,39.48947254,21 N FREDERICKSBURG AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_136_8,-74.96312294,39.51267143,26 N MARTINDALE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_136_9,-74.533124,39.388816,24 N MARTINDALE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_145_2,-74.53152903,39.39914368,MEDITERRANEAN AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_149_10,-74.50579179,39.33589884,129 N SURREY AVE,VENTNOR CITY,16,1929,1,RES1,3001 -0122_149_11,-74.75939438,39.30442814,135 N SURREY AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_149_13,-74.75060664,39.45093724,139 N SURREY AVE,VENTNOR CITY,,2006,1,RES1,3001 -0122_149_15,-74.65288094,39.4088787,223 N SURREY AVE,VENTNOR CITY,16,1951,1,RES1,3001 -0122_149_16,-74.64668488,39.43084174,225 N SURREY AVE,VENTNOR CITY,17,2007,1,RES3A,3001 -0122_149_17,-74.5260675,39.3955235,227 N SURREY AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_149_18,-74.511251,39.4359595,229 N SURREY AVE,VENTNOR CITY,17,1982,1,RES1,3001 -0122_149_19,-74.4943545,39.4467985,231 N SURREY AVE,VENTNOR CITY,18,2008,1,RES1,3001 -0122_149_2,-74.85060986,39.59876405,105 N SURREY AVE,VENTNOR CITY,17,2011,1,RES1,3001 -0122_149_20,-74.4486366,39.48816587,233 N SURREY AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_149_3,-74.81272218,39.63646719,107 N SURREY AVE,VENTNOR CITY,16,1900,1,RES1,3001 -0122_149_4,-74.926803,39.5201395,109 N SURREY AVE,VENTNOR CITY,15,1940,1,RES1,3001 -0122_149_5,-74.62688683,39.43866175,111 N SURREY AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_149_6,-74.89765245,39.53988527,113 N SURREY AVE,VENTNOR CITY,18,2018,1,RES1,3001 -0122_149_9,-74.50515285,39.32790536,125 N SURREY AVE,VENTNOR CITY,16,1930,1,GOV1,3004 -0122_15_1.05,-74.79395133,39.66326755,5601 BOARDWALK,VENTNOR CITY,18,1989,1,RES1,3001 -0122_15_10,-74.5068665,39.326772,110 S SOMERSET AVE,VENTNOR CITY,18,1900,1,RES1,3001 -0122_15_11,-74.4387085,39.3657375,112 S SOMERSET AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_15_3,-74.4615455,39.3512445,105 S OXFORD AVE,VENTNOR CITY,17,1910,1,RES1,3004 -0122_15_4,-74.451425,39.3569775,103 S OXFORD AVE,VENTNOR CITY,17,1911,1,RES1,3001 -0122_15_5,-74.48968283,39.35070906,101 S OXFORD AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_15_6,-74.36704688,39.4175881,100 S SOMERSET AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_15_7,-74.390743,39.3914675,104 S SOMERSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_15_8,-74.46256484,39.35820534,106 S SOMERSET AVE,VENTNOR CITY,16,1960,1,GOV1,3004 -0122_15_9,-74.4563785,39.348135,108 S SOMERSET AVE,VENTNOR CITY,17,1913,1,RES1,3001 -0122_150_10,-74.6628868,39.44664253,5608 EDGEWATER AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_150_11,-74.69716387,39.44129425,5604 EDGEWATER AVE,VENTNOR CITY,45,1990,2,GOV1,3004 -0122_150_14,-74.573738,39.342018,5600 EDGEWATER AVE,VENTNOR CITY,43,1992,2,RES1,3001 -0122_150_15,-74.82820324,39.39906086,5510 EDGEWATER AVE,VENTNOR CITY,,1985,1,RES1,3001 -0122_150_16,-74.71838429,39.45324901,5508 EDGEWATER AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_150_17,-74.63715593,39.43162119,5502 EDGEWATER AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_150_18,-74.75818358,39.48005681,5500 EDGEWATER AVE,VENTNOR CITY,17,1920,2,RES1,3001 -0122_150_19,-74.64076775,39.53104039,5410 EDGEWATER AVE,VENTNOR CITY,18,2016,1,RES1,3001 -0122_150_2,-74.61699586,39.42028419,5800 EDGEWATER AVE,VENTNOR CITY,16,1909,1,RES1,3001 -0122_150_20,-74.68411952,39.57041529,5404 EDGEWATER AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_150_21,-74.706791,39.581448,5402 EDGEWATER AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_150_22,-74.65400451,39.35750233,5400 EDGEWATER AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_150_4,-74.6347605,39.4229825,5708 EDGEWATER AVE,VENTNOR CITY,16,1906,1,RES1,3001 -0122_150_5,-74.5329965,39.453374,5706 EDGEWATER AVE,VENTNOR CITY,16,1910,1,RES1,3001 -0122_150_8.01,-74.55615779,39.46750622,5700 EDGEWATER AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_150_9,-74.59849685,39.49846213,5610 EDGEWATER AVE,VENTNOR CITY,16,1928,1,RES1,3001 -0122_151_1,-74.598038,39.363364,5405 EDGEWATER AVE,VENTNOR CITY,47,1980,3,RES1,3001 -0122_151_10,-74.50114583,39.33752553,5402 MONMOUTH AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_151_11,-74.54693684,39.37147648,5400 MONMOUTH AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_151_12,-74.5036475,39.336708,132 N SURREY AVE,VENTNOR CITY,17,1951,1,COM1,3004 -0122_151_13,-74.51667667,39.31928155,128 N SURREY AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_151_14,-74.4410305,39.3674545,126 N SURREY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_151_15,-74.78077658,39.65831527,124 N SURREY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_151_16,-74.7034955,39.4843355,116 N SURREY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_151_17,-74.93979198,39.49606345,112 N SURREY AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_151_18,-74.78863703,39.63621579,110 N SURREY AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_151_2,-74.61991157,39.36379918,101 N SUFFOLK AVE,VENTNOR CITY,17,1960,1,RES1,3004 -0122_151_20,-74.8064965,39.5523945,5401-5403 EDGEWATER AVE,VENTNOR CITY,47,1970,2,RES1,3001 -0122_151_3,-74.7877339,39.54973944,103 N SUFFOLK AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_151_5,-74.8871185,39.4775515,111 N SUFFOLK AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_151_6,-74.69021314,39.49453055,115 N SUFFOLK AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_151_7,-74.7740795,39.658532,117 N SUFFOLK AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_151_8,-74.439373,39.3658735,119 N SUFFOLK AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_151_9,-74.52207919,39.32248964,121 N SUFFOLK AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_152_1,-74.8622955,39.43914633,101 N SOMERSET AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_152_12.01,-74.50504864,39.33076267,114 N SUFFOLK AVE,VENTNOR CITY,17,1952,1,GOV1,3004 -0122_152_13,-74.9509215,39.515226,112 N SUFFOLK AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_152_14,-74.91883084,39.53671217,110 N SUFFOLK AVE,VENTNOR CITY,17,1951,1,RES1,3001 -0122_152_15,-74.79124399,39.62852684,108 N SUFFOLK AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_152_16,-74.37342686,39.41015683,106 N SUFFOLK AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_152_17,-74.649711,39.356942,104 N SUFFOLK AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_152_18,-74.6740975,39.377476,102 N SUFFOLK AVE,VENTNOR CITY,17,1961,1,RES1,3001 -0122_152_19,-74.642085,39.5355095,5501 EDGEWATER AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_152_2,-74.65481645,39.52586584,103 N SOMERSET AVE,VENTNOR CITY,16,1950,1,RES1,3001 -0122_152_3,-74.63234135,39.40899072,105 N SOMERSET AVE,VENTNOR CITY,17,1945,1,RES1,3004 -0122_152_4,-74.6953565,39.5902605,107 N SOMERSET AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_152_5,-74.37206002,39.40641367,109 N SOMERSET AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_152_6,-74.8519705,39.604135,111 N SOMERSET AVE,VENTNOR CITY,17,1940,1,COM1,3004 -0122_152_7,-74.94039,39.516455,115 N SOMERSET AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_152_8,-74.96485195,39.51904699,117 N SOMERSET AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_152_9,-74.81631934,39.65285032,5504 MONMOUTH AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_153_10,-74.42993966,39.37402246,129 N OXFORD AVE,VENTNOR CITY,43,1929,2,RES1,3001 -0122_153_11,-74.372432,39.4068155,131 N OXFORD AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_153_13,-74.908665,39.4810015,137 N OXFORD AVE,VENTNOR CITY,,1970,4,RES1,3001 -0122_153_14,-74.93089115,39.51814204,5604 MONMOUTH AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_153_15,-74.60074714,39.500647,5602 MONMOUTH AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_153_16,-74.6811135,39.446637,5600 MONMOUTH AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_153_17,-74.81664784,39.62504784,128 N SOMERSET AVE,VENTNOR CITY,16,1935,1,RES1,3001 -0122_153_18,-74.776679,39.6256625,126 N SOMERSET AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_153_19,-74.7199202,39.57783833,124 N SOMERSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_153_2,-74.7284257,39.44905719,103 N OXFORD AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_153_20,-74.3696185,39.4086655,122 N SOMERSET AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_153_21,-74.429605,39.375162,120 N SOMERSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_153_22,-74.6919505,39.597773,118 N SOMERSET AVE,VENTNOR CITY,16,1940,1,RES3A,3001 -0122_153_23,-74.65579633,39.3451865,116 N SOMERSET AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_153_24,-74.59299732,39.36461793,114 N SOMERSET AVE,VENTNOR CITY,16,1920,1,RES1,3001 -0122_153_27,-74.857547,39.4391495,106 N SOMERSET AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_153_28,-74.633844,39.422246,104 N SOMERSET AVE,VENTNOR CITY,16,1940,1,GOV1,3004 -0122_153_29,-74.74724287,39.44561371,5601 EDGEWATER AVE,VENTNOR CITY,17,1940,1,RES3A,3001 -0122_153_3,-74.62678366,39.4243796,105 N OXFORD AVE,VENTNOR CITY,18,2014,1,RES1,3001 -0122_153_4,-74.7148585,39.4691055,109 N OXFORD AVE,VENTNOR CITY,17,1962,1,GOV1,3004 -0122_153_5,-74.78029397,39.49921932,113 N OXFORD AVE,VENTNOR CITY,16,1929,1,RES1,3001 -0122_153_6,-74.65013305,39.52304734,115 N OXFORD AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_153_7,-74.63852504,39.40057925,117 N OXFORD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_153_8,-74.63447823,39.34858103,121 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_153_9,-74.624053,39.621018,127 N OXFORD AVE,VENTNOR CITY,45,1929,2,RES3A,3001 -0122_154_1,-74.53691233,39.50370775,5709 EDGEWATER AVE,VENTNOR CITY,47,1960,2,COM1,3004 -0122_154_10,-74.7022385,39.5758735,133 N DUDLEY AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_154_11,-74.79135374,39.51809846,5708-5710 MONMOUTH AVE,VENTNOR CITY,45,1976,2,RES1,3001 -0122_154_12,-74.44110882,39.37043367,5704-5706 MONMOUTH AVE,VENTNOR CITY,45,1976,2,RES1,3001 -0122_154_13,-74.8656055,39.565497,5700-5702 MONMOUTH AVE,VENTNOR CITY,45,1976,2,RES1,3001 -0122_154_14,-74.692464,39.5951655,132 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_154_15,-74.62690562,39.41461091,130 N OXFORD AVE,VENTNOR CITY,17,1909,1,RES1,3001 -0122_154_16,-74.69331416,39.51332976,122 N OXFORD AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_154_17,-74.63717895,39.53230185,120 N OXFORD AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_154_18,-74.86962828,39.44432116,118 N OXFORD AVE,VENTNOR CITY,17,1946,1,RES3A,3001 -0122_154_19,-74.70557411,39.41888795,112 N OXFORD AVE,VENTNOR CITY,45,1975,2,RES1,3001 -0122_154_2,-74.63092,39.4382085,103 N DUDLEY AVE,VENTNOR CITY,16,1950,1,RES1,3001 -0122_154_20,-74.8589595,39.434869,110 N OXFORD AVE,VENTNOR CITY,45,1987,2,RES1,3001 -0122_154_21,-74.60304018,39.32925256,104 N OXFORD AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_154_22,-74.68281535,39.49467553,100 N OXFORD AVE,VENTNOR CITY,16,1940,2,RES1,3001 -0122_154_3,-74.68318166,39.44023329,105 N DUDLEY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_154_5.01,-74.55144395,39.36155144,111 N DUDLEY AVE,VENTNOR CITY,17,1989,1,RES3A,3001 -0122_154_5.02,-74.72539366,39.45091912,113 N DUDLEY AVE,VENTNOR CITY,17,1949,1,RES3A,3001 -0122_154_6,-74.62255701,39.41844162,115 N DUDLEY AVE,VENTNOR CITY,17,2014,1,RES1,3001 -0122_154_7,-74.72957664,39.46370809,117 N DUDLEY AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_154_9,-74.633031,39.390994,129 N DUDLEY AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_155_1,-74.6283505,39.419684,101 N DORSET AVE,VENTNOR CITY,,1925,1,RES1,3001 -0122_155_10,-74.66048134,39.53634547,134-136 N DUDLEY AVE,VENTNOR CITY,45,1930,2,RES3A,3001 -0122_155_11,-74.56471,39.523432,130 N DUDLEY AVE,VENTNOR CITY,16,1930,1,RES3A,3001 -0122_155_12,-74.7528223,39.44585499,128 N DUDLEY AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_155_13,-74.62391231,39.42391009,126 N DUDLEY AVE,VENTNOR CITY,16,1924,1,RES1,3001 -0122_155_14,-74.83045637,39.40632485,124 N DUDLEY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_155_15,-74.57022394,39.34939261,120 N DUDLEY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_155_16,-74.83532353,39.40163466,118 N DUDLEY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_155_17,-74.76102785,39.43191648,116 N DUDLEY AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_155_18,-74.69639207,39.48614635,114 N DUDLEY AVE,VENTNOR CITY,17,1992,1,RES1,3001 -0122_155_19,-74.68504972,39.44389342,110-112 N DUDLEY AVE,VENTNOR CITY,,1992,1,RES1,3001 -0122_155_2,-74.6070969,39.43898769,103 N DORSET AVE,VENTNOR CITY,,1926,1,RES1,3001 -0122_155_20,-74.5626135,39.4707995,106-108 N DUDLEY AVE,VENTNOR CITY,45,1945,2,RES1,3001 -0122_155_21,-74.62723422,39.37639738,104 N DUDLEY AVE,VENTNOR CITY,47,2008,2,RES1,3001 -0122_155_3,-74.6197002,39.43850508,107 N DORSET AVE,VENTNOR CITY,,1915,1,RES3A,3001 -0122_155_4,-74.69283596,39.47821772,109 N DORSET AVE,VENTNOR CITY,,1940,2,RES3A,3001 -0122_155_5,-74.60350199,39.33332034,111 N DORSET AVE,VENTNOR CITY,,1920,1,RES3A,3001 -0122_155_6,-74.80568225,39.40600534,113 N DORSET AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_155_7,-74.6488795,39.431644,133 N DORSET AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_155_8.01,-74.86663435,39.49338804,137 N DORSET AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_155_8.02,-74.64718611,39.53017399,139-141 N DORSET AVE,VENTNOR CITY,,1957,1,RES3A,3001 -0122_155_9,-74.638915,39.402376,5808 MONMOUTH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_156_1.02,-74.5442635,39.407192,101 N DERBY AVE,VENTNOR CITY,28,1915,1,RES1,3001 -0122_156_11,-74.60581975,39.33252017,137 N DERBY AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_156_12,-74.82602,39.4057215,139 N DERBY AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_156_13,-74.63186173,39.43203017,118 N DORSET AVE,VENTNOR CITY,,1980,1,RES1,3001 -0122_156_14,-74.8208985,39.4086715,116 N DORSET AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_156_15,-74.600874,39.33053542,114 N DORSET AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_156_16,-74.65752211,39.47909933,110 N DORSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_156_17,-74.62841578,39.43800124,108 N DORSET AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_156_18,-74.6163035,39.441301,106 N DORSET AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_156_19,-74.6310605,39.427095,104 N DORSET AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_156_2,-74.59875766,39.41094109,103 N DERBY AVE,VENTNOR CITY,28,1915,1,RES1,3001 -0122_156_3,-74.61641033,39.43046549,107 N DERBY AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_156_4,-74.63107382,39.43171673,109 N DERBY AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_156_5,-74.551515,39.4690395,113 N DERBY AVE,VENTNOR CITY,47,1962,2,RES1,3001 -0122_156_6,-74.55182388,39.47836622,125 N DERBY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_156_7,-74.55749015,39.47254731,127 N DERBY AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_156_8,-74.62792026,39.4389643,129 N DERBY AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_157_1,-74.58026719,39.37438977,104 N DERBY AVE,VENTNOR CITY,16,1907,1,RES1,3001 -0122_157_10,-74.68346116,39.44376796,152 N DERBY AVE,VENTNOR CITY,15,1940,1,COM1,3004 -0122_157_11,-74.759109,39.4312255,158 N DERBY AVE,VENTNOR CITY,14,1920,1,RES3A,3002 -0122_157_12,-74.54977416,39.36290803,162 N DERBY AVE,VENTNOR CITY,,1910,1,RES1,3001 -0122_157_13,-74.8332515,39.402302,164 N DERBY AVE,VENTNOR CITY,17,2014,1,RES1,3001 -0122_157_14,-74.63796143,39.43516118,166 N DERBY AVE,VENTNOR CITY,15,1910,1,RES1,3001 -0122_157_15,-74.573422,39.5238735,212 N DERBY AVE,VENTNOR CITY,16,1907,1,RES1,3001 -0122_157_16,-74.6389095,39.5305465,214 N DERBY AVE,VENTNOR CITY,16,1900,1,RES1,3001 -0122_157_17,-74.68877148,39.49913706,236 N DERBY AVE,VENTNOR CITY,,1972,1,RES1,3001 -0122_157_19,-74.72291518,39.57067123,6110 CALVERT AVE,VENTNOR CITY,18,2000,1,RES1,3001 -0122_157_20,-74.62265319,39.35850026,6114 CALVERT AVE,VENTNOR CITY,17,2003,1,RES1,3001 -0122_157_21,-74.59815584,39.36362155,6116 CALVERT AVE,VENTNOR CITY,17,1998,1,RES1,3001 -0122_157_22,-74.62638055,39.39253816,6208 CALVERT AVE,VENTNOR CITY,17,1999,1,RES1,3001 -0122_157_23,-74.8211055,39.489368,6214 CALVERT AVE,VENTNOR CITY,19,2017,1,RES1,3001 -0122_157_24,-74.6474959,39.43357569,6302 CALVERT AVE,VENTNOR CITY,17,1958,1,GOV1,3004 -0122_157_3,-74.61825,39.31952,110 N DERBY AVE,VENTNOR CITY,17,2000,1,RES1,3001 -0122_157_4,-74.6075585,39.375848,108 N DERBY AVE,VENTNOR CITY,16,1945,1,RES3A,3001 -0122_157_5,-74.56282116,39.40906825,130 N DERBY AVE,VENTNOR CITY,17,1998,1,RES1,3001 -0122_157_6,-74.57982014,39.43121185,134 N DERBY AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_157_7,-74.6435348,39.43291905,136 N DERBY AVE,VENTNOR CITY,15,1943,1,RES1,3001 -0122_157_8,-74.62197453,39.37951169,144 N DERBY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_157_9,-74.61831963,39.43811908,148 N DERBY AVE,VENTNOR CITY,17,1960,1,RES3A,3001 -0122_158_1,-74.6327665,39.430112,121 N CORNWALL AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_158_10,-74.6091048,39.38142041,101 N CORNWALL AVE,VENTNOR CITY,,1980,1,RES1,3001 -0122_158_2,-74.610417,39.383689,123 N CORNWALL AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_158_3,-74.563215,39.410564,6110 MONMOUTH AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_158_4,-74.56859347,39.41331278,6108 MONMOUTH AVE,VENTNOR CITY,17,1925,1,EDU1,3004 -0122_158_5,-74.58813188,39.41467383,6106 MONMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_158_7,-74.67391046,39.3849801,6100 MONMOUTH AVE,VENTNOR CITY,17,1970,1,RES3A,3001 -0122_158_8,-74.58731607,39.42814028,6102 MONMOUTH AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_158_9,-74.58756917,39.40983101,6104A MONMOUTH AVE,VENTNOR CITY,17,1970,1,RES3A,3001 -0122_159_1,-74.63997645,39.38333811,6101 MONMOUTH AVE,VENTNOR CITY,,1965,1,RES1,3001 -0122_16_1,-74.623354,39.377692,111 S DUDLEY AVE,VENTNOR CITY,,1965,1,RES1,3001 -0122_16_2,-74.8165515,39.6368845,107 S DUDLEY AVE,VENTNOR CITY,16,1950,1,RES1,3001 -0122_16_3,-74.9746395,39.5123115,105 S DUDLEY AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_16_5,-74.46302079,39.34480204,5700 ATLANTIC AVE,VENTNOR CITY,17,1918,1,RES1,3001 -0122_16_6,-74.517735,39.322449,104 S OXFORD AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_16_7,-74.52528887,39.31702434,106 S OXFORD AVE,VENTNOR CITY,16,1928,1,RES1,3002 -0122_16_9,-74.9298515,39.516982,112 S OXFORD AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_160_1,-74.4541065,39.352909,6115 WINCHESTER AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_160_10,-74.55568629,39.36937542,121 N CAMBRIDGE AVE,VENTNOR CITY,17,1940,1,RES1,3002 -0122_160_11,-74.61145451,39.32385617,123 N CAMBRIDGE AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_160_12,-74.55345969,39.37734437,6122 MONMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_160_13,-74.5434985,39.3876785,6120 MONMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_160_14,-74.5933272,39.32680717,122 N CORNWALL AVE,VENTNOR CITY,17,1969,1,RES3A,3001 -0122_160_15,-74.548526,39.3847635,120 N CORNWALL AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_160_16,-74.55657131,39.36377998,118 N CORNWALL AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_160_17,-74.820915,39.310911,116 1/2 N CORNWALL,VENTNOR CITY,17,1925,1,RES1,3001 -0122_160_18,-74.6367751,39.36470137,116 N CORNWALL AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_160_19,-74.64867645,39.35112886,114 N CORNWALL AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_160_2,-74.36861053,39.40195784,103 N CAMBRIDGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_160_20,-74.59080032,39.34955113,112 N CORNWALL AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_160_21,-74.5574555,39.3576115,110 N CORNWALL AVE,VENTNOR CITY,16,1925,1,RES1,3001 -0122_160_22,-74.5771949,39.33176519,108 1/2 N CORNWALL AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_160_23,-74.60789188,39.31384248,108 N CORNWALL AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_160_24,-74.535902,39.305384,106 N CORNWALL AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_160_25,-74.4632412,39.49078689,102 N CORNWALL AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_160_26,-74.501274,39.3353465,6111 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_160_3,-74.45572605,39.50143605,105 N CAMBRIDGE AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_160_4,-74.53771285,39.31370086,107 N CAMBRIDGE AVE,VENTNOR CITY,17,1929,2,GOV1,3004 -0122_160_5.01,-74.58702135,39.33271009,109 N CAMBRIDGE AVE,VENTNOR CITY,17,1984,1,RES1,3001 -0122_160_5.02,-74.57013532,39.35206297,111 N CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_160_6,-74.60788615,39.34851952,113 N CAMBRIDGE AVE,VENTNOR CITY,28,1930,2,RES1,3001 -0122_160_7,-74.6265725,39.358016,115 N CAMBRIDGE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_160_8,-74.6002645,39.3325285,117 N CAMBRIDGE AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_160_9,-74.56866835,39.36282826,119 N CAMBRIDGE AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_161_1,-74.49645019,39.42654804,6203 WINCHESTER AVE,VENTNOR CITY,20,2017,1,RES1,3001 -0122_161_10,-74.57418316,39.34435299,117 N HARVARD AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_161_11,-74.5837925,39.3403325,119 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_161_12,-74.58721727,39.35208915,121 N HARVARD AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_161_13,-74.6517188,39.34211063,125 N HARVARD AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_161_14,-74.62425727,39.36342859,127 N HARVARD AVE,VENTNOR CITY,28,1920,1,RES1,3001 -0122_161_15,-74.76498768,39.29956987,129 N HARVARD AVE,VENTNOR CITY,28,1920,1,RES1,3001 -0122_161_16,-74.57001182,39.34493049,131 N HARVARD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_161_17,-74.5435644,39.37343437,132 N CAMBRIDGE AVE,VENTNOR CITY,28,1923,1,GOV1,3004 -0122_161_18,-74.5717555,39.3682295,130 N CAMBRIDGE AVE,VENTNOR CITY,28,1923,1,RES3B,3002 -0122_161_19,-74.56625695,39.35641469,128 N CAMBRIDGE AVE,VENTNOR CITY,17,1929,1,COM1,3004 -0122_161_2,-74.50289045,39.45076416,101 N HARVARD AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_161_20,-74.54716498,39.37478217,126 N CAMBRIDGE AVE,VENTNOR CITY,16,1930,1,RES3B,3001 -0122_161_21,-74.638324,39.340675,124 N CAMBRIDGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_161_22,-74.59608233,39.34149447,122 N CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_161_23,-74.57188058,39.35393937,120 N CAMBRIDGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_161_24,-74.61756454,39.32155331,118 N CAMBRIDGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_161_25,-74.58983873,39.31420149,114 N CAMBRIDGE AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_161_26,-74.45289843,39.50282443,112 N CAMBRIDGE AVE,VENTNOR CITY,17,1919,1,RES1,3001 -0122_161_27,-74.48745445,39.46587157,110 N CAMBRIDGE AVE,VENTNOR CITY,17,1919,1,RES1,3001 -0122_161_28,-74.4909975,39.334867,108 N CAMBRIDGE AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_161_29,-74.62995711,39.42796579,104 N CAMBRIDGE AVE,VENTNOR CITY,17,1926,2,RES1,3001 -0122_161_3,-74.6277923,39.42073289,103 N HARVARD AVE,VENTNOR CITY,28,1910,1,RES1,3001 -0122_161_30,-74.4715285,39.445476,102 N CAMBRIDGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_161_4,-74.517134,39.4386745,105 N HARVARD AVE,VENTNOR CITY,28,1910,1,RES1,3001 -0122_161_5,-74.48160933,39.35198651,107 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_161_6,-74.50935021,39.33687044,109 N HARVARD AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_161_7,-74.47079101,39.48316363,111 N HARVARD AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_161_8,-74.59694132,39.31040015,113 N HARVARD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_161_9,-74.58794866,39.33156646,115 N HARVARD AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_162_1,-74.59030105,39.32237733,201 N HARVARD AVE,VENTNOR CITY,17,1925,2,RES1,3001 -0122_162_10,-74.5842975,39.432141,210 N CAMBRIDGE AVE,VENTNOR CITY,17,1927,1,RES1,3002 -0122_162_11,-74.563261,39.4110395,208 N CAMBRIDGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_162_12,-74.60258201,39.38409775,206 N CAMBRIDGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_162_13,-74.58465873,39.3803162,202 N CAMBRIDGE AVE,VENTNOR CITY,16,1925,1,RES1,3001 -0122_162_14,-74.61012053,39.31952484,200 N CAMBRIDGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_162_2,-74.61342758,39.32350309,203 N HARVARD AVE,VENTNOR CITY,17,1925,2,RES1,3001 -0122_162_3,-74.54846143,39.40138017,205 N HARVARD AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_162_4.01,-74.63455024,39.42899054,207 N HARVARD AVE,VENTNOR CITY,16,1954,1,RES1,3001 -0122_162_4.02,-74.60277076,39.48288005,209 N HARVARD AVE,VENTNOR CITY,17,2016,1,RES1,3001 -0122_162_6,-74.640063,39.3798745,215 N HARVARD AVE,VENTNOR CITY,16,1962,1,RES1,3001 -0122_162_9,-74.62409801,39.41897632,214 N CAMBRIDGE AVE,VENTNOR CITY,16,1954,1,RES1,3001 -0122_163_1,-74.5148715,39.3862285,6223 WINCHESTER AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_10,-74.49808725,39.49990082,119 N SACRAMENTO AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_163_13,-74.6027895,39.3286645,125 N SACRAMENTO AVE,VENTNOR CITY,27,1925,1,RES1,3001 -0122_163_14,-74.5654635,39.3568405,127 N SACRAMENTO AVE,VENTNOR CITY,27,1925,1,RES1,3001 -0122_163_15,-74.58039313,39.34796149,129 N SACRAMENTO AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_163_16,-74.61437226,39.36368504,134 N HARVARD AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_163_17,-74.61329816,39.34093988,132 N HARVARD AVE,VENTNOR CITY,45,1925,2,RES1,3001 -0122_163_18,-74.57258726,39.36374076,130 N HARVARD AVE,VENTNOR CITY,27,1920,1,RES1,3001 -0122_163_19,-74.5719555,39.3432265,128B N HARVARD AVE,VENTNOR CITY,27,1920,1,RES1,3001 -0122_163_2,-74.798918,39.6008095,101 N SACRAMENTO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_163_20,-74.60511875,39.33211135,128 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_21,-74.61491083,39.30939099,126 N HARVARD AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_163_22,-74.6015407,39.30802948,124 N HARVARD AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_163_23,-74.53468454,39.30554865,122 N HARVARD AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_163_24,-74.46588467,39.49584025,120 N HARVARD AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_163_25,-74.45492805,39.49773328,118 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_26,-74.5171905,39.46654717,116 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_27,-74.4905835,39.334822,114 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_28,-74.52697225,39.44764281,112 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_29,-74.50214975,39.44944175,108 N HARVARD AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_163_3,-74.59714117,39.32370551,103 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_30,-74.50076313,39.42507209,106 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_31,-74.5232395,39.39977808,104 N HARVARD AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_163_32,-74.5354115,39.313957,102 N HARVARD AVE,VENTNOR CITY,17,1920,1,AGR1,3001 -0122_163_33,-74.64513706,39.32823671,6221 WINCHESTER AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_163_5,-74.63102797,39.40887416,107 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_6,-74.51868484,39.44618897,109 N SACRAMENTO AVE,VENTNOR CITY,17,2014,1,RES1,3001 -0122_163_7,-74.48751478,39.33783618,111 N SACRAMENTO AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_163_8,-74.374446,39.40031167,113 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_163_9,-74.45961748,39.49101457,117 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_164_1,-74.55303126,39.361023,6217 MONMOUTH AVE,VENTNOR CITY,37,1950,1,RES1,3001 -0122_164_10,-74.56532819,39.47819797,211 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_164_11,-74.59335843,39.42824267,215 N SACRAMENTO AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_164_15,-74.5378495,39.386,208 N HARVARD AVE,VENTNOR CITY,17,1981,1,RES1,3001 -0122_164_16,-74.60713983,39.3243175,206 N HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_164_17,-74.549104,39.370758,202 N HARVARD AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_164_18,-74.55919903,39.36670938,200 N HARVARD AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_164_2,-74.60989863,39.32747812,6219 MONMOUTH AVE,VENTNOR CITY,37,1950,1,RES1,3001 -0122_164_3,-74.6034925,39.3326615,6221 MONMOUTH AVE,VENTNOR CITY,37,1950,1,RES1,3001 -0122_164_4,-74.76838445,39.34901167,6223 MONMOUTH AVE,VENTNOR CITY,,1920,1,GOV1,3004 -0122_164_5,-74.57589917,39.33790354,201 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_164_6,-74.55557709,39.37495688,203 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_164_7,-74.58979349,39.32797917,205 N SACRAMENTO AVE,VENTNOR CITY,18,1925,1,RES1,3001 -0122_164_8,-74.574539,39.368333,207 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_164_9,-74.58787865,39.3785662,209 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_165_1,-74.4611455,39.35493,101 N PRINCETON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_165_10,-74.50358063,39.43209113,117 N PRINCETON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_165_11,-74.62696232,39.41986217,121 N PRINCETON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_165_12,-74.52161424,39.45009448,123 N PRINCETON AVE,VENTNOR CITY,27,1925,1,RES1,3001 -0122_165_13,-74.464667,39.3583715,123 1/2 N PRINCETON AVE,VENTNOR CITY,27,1925,1,RES1,3001 -0122_165_14,-74.50840669,39.33609907,125 N PRINCETON AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_165_15,-74.45693289,39.48081482,127 N PRINCETON AVE,VENTNOR CITY,17,1930,1,AGR1,3001 -0122_165_16,-74.46679881,39.48947447,129 N PRINCETON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_165_17,-74.5935985,39.3117905,131 N PRINCETON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_165_18,-74.60124083,39.32575799,134 N SACRAMENTO AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_165_19,-74.604792,39.310319,132 N SACRAMENTO AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_165_2,-74.5035197,39.33911632,103 N PRINCETON AVE,VENTNOR CITY,17,1925,1,RES1,3002 -0122_165_20,-74.530775,39.470269,130 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_165_21,-74.45090839,39.49028131,128 N SACRAMENTO AVE,VENTNOR CITY,17,1925,2,RES1,3001 -0122_165_22,-74.50420416,39.34213748,122 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_165_23,-74.50988748,39.44632666,120 N SACRAMENTO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_165_24,-74.43317686,39.48639754,116 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_165_25,-74.49063031,39.42249147,114 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_165_26,-74.5267855,39.3882275,112 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_165_27,-74.4705581,39.50905173,110 N SACRAMENTO AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_165_28,-74.59882511,39.36068259,108 N SACRAMENTO AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_165_29,-74.374822,39.4111715,106 N SACRAMENTO AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_165_3,-74.39389761,39.39188164,105 N PRINCETON AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_165_30,-74.4002875,39.3861695,104 N SACRAMENTO AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_165_31,-74.37247664,39.39995702,102 N SACRAMENTO AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_165_4,-74.43367919,39.36909546,105 1/2 N PRINCETON,VENTNOR CITY,28,1925,1,RES1,3001 -0122_165_5,-74.36956699,39.41878666,107 N PRINCETON AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_165_6,-74.5932126,39.36662935,109 N PRINCETON AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_165_7,-74.63619939,39.36523016,111 N PRINCETON AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_165_8,-74.5854585,39.3233705,113 N PRINCETON AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_165_9,-74.5192765,39.40627,115 N PRINCETON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_166_1,-74.59581861,39.34974167,6305 MONMOUTH AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_166_10,-74.5325865,39.381045,206 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_166_11,-74.563439,39.362882,204 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_166_12,-74.6102735,39.3272035,202 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,IND1,3002 -0122_166_13,-74.64578492,39.35748372,200 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_166_14,-74.64215045,39.33375985,6301 MONMOUTH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_166_15,-74.5947365,39.351362,6303 MONMOUTH AVE,VENTNOR CITY,16,1920,1,RES1,3001 -0122_166_2,-74.59740778,39.35968955,203 N PRINCETON AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_166_3,-74.63284873,39.35308981,205 N PRINCETON AVE,VENTNOR CITY,16,1935,1,COM1,3004 -0122_166_4,-74.614265,39.3211205,207 N PRINCETON AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_166_6,-74.58374885,39.33300307,208 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_166_8,-74.57033294,39.47869866,212 N SACRAMENTO AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_166_9,-74.612159,39.3216735,210 N SACRAMENTO AVE,VENTNOR CITY,47,1925,2,RES1,3001 -0122_167_1,-74.5076975,39.327995,101 N PORTLAND AVE,VENTNOR CITY,27,1970,2,RES1,3001 -0122_167_10,-74.4960928,39.52617292,119 N PORTLAND AVE,VENTNOR CITY,17,1940,2,RES1,3001 -0122_167_11,-74.49025019,39.41999257,123 N PORTLAND AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_167_12,-74.48604442,39.4431026,125 N PORTLAND AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_167_13,-74.497729,39.4479075,127 N PORTLAND AVE,VENTNOR CITY,28,1940,2,RES1,3001 -0122_167_14,-74.66036904,39.40340165,129 N PORTLAND AVE,VENTNOR CITY,28,1940,2,AGR1,3001 -0122_167_15,-74.64077702,39.43388165,131 N PORTLAND AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_167_16,-74.44463784,39.35718861,133 N PORTLAND AVE,VENTNOR CITY,28,1940,2,RES1,3001 -0122_167_17,-74.49617424,39.33491133,135 N PORTLAND AVE,VENTNOR CITY,28,1940,1,RES1,3001 -0122_167_18,-74.51871716,39.46356854,132 N PRINCETON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_167_19,-74.4906425,39.3343685,130 N PRINCETON AVE,VENTNOR CITY,17,1984,1,RES3B,3001 -0122_167_2,-74.52417896,39.31788934,103 N PORTLAND AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_167_21,-74.46650452,39.45826514,122 N PRINCETON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_167_22,-74.5226995,39.396491,120 N PRINCETON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_167_23,-74.60247421,39.31487126,118 N PRINCETON AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_167_24,-74.6424223,39.33487545,116 N PRINCETON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_167_25,-74.51708661,39.39339833,114 N PRINCETON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_167_26,-74.37297129,39.40413834,112 N PRINCETON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_167_27,-74.38352201,39.39486284,110 N PRINCETON AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_167_28,-74.49230833,39.33464401,108 N PRINCETON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_167_29,-74.4509765,39.3544815,102 N PRINCETON AVE,VENTNOR CITY,17,1935,1,RES3A,3001 -0122_167_3,-74.48103115,39.33822403,105 N PORTLAND AVE,VENTNOR CITY,17,1921,1,GOV1,3004 -0122_167_4,-74.4848685,39.348428,107 N PORTLAND AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_167_5,-74.49210941,39.33924662,109 N PORTLAND AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_167_6,-74.388138,39.3905635,111 N PORTLAND AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_167_7,-74.36143473,39.41668329,113 N PORTLAND AVE,VENTNOR CITY,17,2016,1,RES3A,3001 -0122_167_8,-74.52894134,39.38157601,115 N PORTLAND AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_167_9,-74.6008125,39.3605435,117 N PORTLAND AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_168_1,-74.59038345,39.32620635,202 N PRINCETON AVE,VENTNOR CITY,17,2014,1,RES1,3001 -0122_168_10,-74.5795405,39.3359355,204 N PRINCETON AVE,VENTNOR CITY,17,1949,1,RES1,3001 -0122_168_11,-74.55598503,39.35996111,220 N PRINCETON AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_168_13,-74.56946,39.3551215,209 N PORTLAND AVE,VENTNOR CITY,14,1920,1,COM1,3004 -0122_168_14,-74.55688938,39.36781757,6403 SUNSET AVE,VENTNOR CITY,,1930,2,RES1,3001 -0122_168_15,-74.60847465,39.32900857,6405 SUNSET AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_168_16,-74.57919948,39.33346985,6409 SUNSET AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_168_2,-74.59360077,39.3177007,6313 MONMOUTH AVE,VENTNOR CITY,18,2017,1,RES1,3001 -0122_168_3,-74.6050215,39.310383,6315 MONMOUTH AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_168_4,-74.51796555,39.53467184,6317 MONMOUTH AVE,VENTNOR CITY,17,1932,1,GOV1,3004 -0122_168_5,-74.470814,39.489787,6319 MONMOUTH AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_168_6,-74.60945232,39.31562398,201 N PORTLAND AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_168_7,-74.60791433,39.327661,203 N PORTLAND AVE,VENTNOR CITY,47,1932,2,RES1,3001 -0122_168_9,-74.59245032,39.35874094,207 N PORTLAND AVE,VENTNOR CITY,17,2014,1,GOV1,3004 -0122_169_1,-74.817288,39.654253,6401 WINCHESTER AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_169_10,-74.9125835,39.514796,103 N NEWPORT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_169_11,-74.94972,39.5167105,105 N NEWPORT AVE,VENTNOR CITY,28,1925,1,GOV1,3004 -0122_169_12,-74.95308707,39.53962902,107 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_13,-74.77146059,39.66134064,109 N NEWPORT AVE,VENTNOR CITY,28,1925,1,GOV1,3004 -0122_169_14,-74.80362491,39.64341291,111 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_16,-74.52599226,39.31531189,115 N NEWPORT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_169_17,-74.5150263,39.32323425,115 NEWPORT COURT,VENTNOR CITY,,1920,2,RES1,3001 -0122_169_18,-74.49842364,39.33076819,117 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_19,-74.51744186,39.32291037,119 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_2,-74.49630667,39.33350447,6403 WINCHESTER AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_169_20,-74.52384946,39.31803686,121 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_21,-74.50929888,39.32735184,123 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_22,-74.47961835,39.33735732,117 N NEWPORT CT,VENTNOR CITY,17,1925,2,RES1,3001 -0122_169_23,-74.48289712,39.35002159,6405 NEWPORT COURT,VENTNOR CITY,17,1918,2,RES1,3001 -0122_169_24,-74.50484257,39.33769317,125 N NEWPORT AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_169_25,-74.37307877,39.40650209,127 N NEWPORT AVE,VENTNOR CITY,,1900,1,RES1,3001 -0122_169_26,-74.391261,39.392396,129 N NEWPORT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_169_28,-74.39964141,39.38717229,133 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_29,-74.35699865,39.41361246,135 N NEWPORT AVE,VENTNOR CITY,28,1925,1,GOV1,3004 -0122_169_3,-74.42342903,39.35793687,6405 WINCHESTER AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_169_30,-74.44712,39.3748665,137 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_31,-74.60544729,39.36489157,139 N NEWPORT AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_32,-74.63392322,39.31799667,6416 MONMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_169_35,-74.64080699,39.36540412,6414 MONMOUTH AVE,VENTNOR CITY,28,1925,1,RES1,3001 -0122_169_38,-74.51029879,39.50464152,6412 MONMOUTH AVE,VENTNOR CITY,28,1925,1,GOV1,3004 -0122_169_4,-74.8164665,39.6547465,6407 WINCHESTER AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_169_42,-74.5038585,39.4151115,6410 MONMOUTH AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_169_43,-74.4904375,39.4282785,6404 MONMOUTH AVE,VENTNOR CITY,17,1900,2,RES1,3001 -0122_169_44,-74.6820695,39.3881765,140 N PORTLAND AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_169_45,-74.43369,39.486513,138 N PORTLAND AVE,VENTNOR CITY,28,1930,1,GOV1,3004 -0122_169_46,-74.4950265,39.4322955,136 N PORTLAND AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_169_47,-74.52685563,39.40247137,134 N PORTLAND AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_169_48,-74.5214925,39.39775,132 N PORTLAND AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_169_49,-74.5929275,39.3242495,130 N PORTLAND AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_169_5,-74.7799425,39.6414475,6409 WINCHESTER AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_169_50,-74.61025308,39.30614353,128 N PORTLAND AVE,VENTNOR CITY,17,1940,2,RES1,3001 -0122_169_51,-74.6518095,39.3473865,126A&B N PORTLAND AVE,VENTNOR CITY,,1935,1,RES1,3001 -0122_169_52,-74.4409955,39.369104,124 N PORTLAND AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_169_53,-74.36974774,39.40187618,120 N PORTLAND AVE,VENTNOR CITY,17,1924,1,GOV1,3004 -0122_169_54,-74.4544005,39.353283,118 N PORTLAND AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_169_55,-74.48420866,39.34498555,116 N PORTLAND AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_169_56,-74.4840635,39.337071,114 N PORTLAND AVE,VENTNOR CITY,27,1930,1,RES1,3001 -0122_169_58,-74.499225,39.3306105,102 N PORTLAND AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_169_6,-74.9493415,39.521807,6411 WINCHESTER AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_169_7,-74.79736366,39.63655098,6417 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_169_8,-74.87668066,39.59638048,6419 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_169_9,-74.7731032,39.6371748,6421 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_17_2,-74.4870545,39.3384325,109 S DORSET AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_17_3,-74.6070065,39.3486975,107 S DORSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_17_4,-74.87253522,39.52669825,105 S DORSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_17_5,-74.7873235,39.6322865,101 S DORSET AVE,VENTNOR CITY,18,1905,1,RES1,3001 -0122_17_6.01,-74.94581382,39.52593753,100 S DUDLEY AVE,VENTNOR CITY,20,2005,1,GOV1,3004 -0122_17_6.03,-74.750237,39.5940745,104 S DUDLEY AVE,VENTNOR CITY,20,2005,1,RES1,3001 -0122_17_7.01,-74.64515231,39.54208532,106 S DUDLEY AVE,VENTNOR CITY,19,1986,1,RES1,3001 -0122_170_1,-74.5234485,39.4539325,6401 MONMOUTH AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_170_10,-74.62811469,39.4280231,6421 MONMOUTH AVE,VENTNOR CITY,28,1945,1,RES1,3001 -0122_170_11,-74.62847281,39.42197392,6423 MONMOUTH AVE,VENTNOR CITY,28,1945,1,RES1,3001 -0122_170_12,-74.66401567,39.40057852,6425 MONMOUTH AVE,VENTNOR CITY,28,1945,1,GOV1,3004 -0122_170_13,-74.47603466,39.45796589,6427 MONMOUTH AVE,VENTNOR CITY,28,1945,1,RES1,3001 -0122_170_14,-74.48565985,39.44159788,6429 MONMOUTH AVE,VENTNOR CITY,28,1945,1,RES1,3001 -0122_170_15,-74.51463,39.4870275,204 N PORTLAND AVE,VENTNOR CITY,,1945,1,GOV1,3004 -0122_170_16,-74.45083622,39.48870699,202 N PORTLAND AVE,VENTNOR CITY,,1945,1,RES1,3001 -0122_170_2,-74.50130933,39.336001,6403 MONMOUTH AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_170_3,-74.52209752,39.46727633,6405 MONMOUTH AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_170_4,-74.50327981,39.46638552,6407 MONMOUTH AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_170_6,-74.63194999,39.43418018,6411 MONMOUTH AVE,VENTNOR CITY,28,1945,1,GOV1,3004 -0122_170_7,-74.45951977,39.35449367,6415 MONMOUTH AVE,VENTNOR CITY,28,1945,1,RES1,3001 -0122_170_8,-74.452222,39.354173,6417 MONMOUTH AVE,VENTNOR CITY,28,1945,1,GOV1,3004 -0122_170_9,-74.52449463,39.44931895,6419 MONMOUTH AVE,VENTNOR CITY,28,1945,1,RES1,3001 -0122_171_1,-74.61904061,39.43012622,6501 WINCHESTER AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_171_10,-74.434892,39.367867,113 N BRYANT AVE,VENTNOR CITY,17,1919,1,GOV1,3004 -0122_171_11,-74.5084115,39.33177,115 N BRYANT AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_171_12,-74.51967367,39.31943699,117 N BRYANT AVE,VENTNOR CITY,17,1928,1,GOV1,3004 -0122_171_13,-74.51129184,39.32690349,119 N BRYANT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_171_14,-74.47049635,39.34504699,121 N BRYANT AVE,VENTNOR CITY,17,1943,1,RES1,3001 -0122_171_15,-74.46112609,39.35718723,123 N BRYANT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_171_16,-74.48876684,39.3370214,125 N BRYANT AVE,VENTNOR CITY,17,1942,1,GOV1,3004 -0122_171_17,-74.40515897,39.38059955,128 N NEWPORT AVE,VENTNOR CITY,16,1928,1,RES1,3001 -0122_171_18,-74.5050545,39.3365175,126 N NEWPORT AVE,VENTNOR CITY,17,1928,1,GOV1,3004 -0122_171_19,-74.4543755,39.353732,124 N NEWPORT AVE,VENTNOR CITY,17,2009,1,RES1,3001 -0122_171_2,-74.8035175,39.549191,6503 WINCHESTER AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_171_20,-74.48688367,39.35089442,122 N NEWPORT AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_171_21,-74.46188482,39.34717802,120 N NEWPORT AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_171_22,-74.5240835,39.3213165,118 N NEWPORT AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_171_23,-74.50481,39.330488,116 N NEWPORT AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_171_24,-74.43558539,39.36746723,114 N NEWPORT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_171_25,-74.80063,39.6437305,112 N NEWPORT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_171_26,-74.97420777,39.51177712,110 N NEWPORT AVE,VENTNOR CITY,17,1918,1,RES1,3004 -0122_171_27,-74.920515,39.4919595,108 N NEWPORT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_171_28,-74.8686095,39.6013015,106 N NEWPORT AVE,VENTNOR CITY,18,2018,1,RES1,3001 -0122_171_29,-74.785421,39.60858891,104 N NEWPORT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_171_3,-74.6040665,39.591814,6507 WINCHESTER AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_171_4,-74.763027,39.6132115,101 N BRYANT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_171_5,-74.77934247,39.60715609,103 N BRYANT AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_171_6,-74.87980333,39.593774,105 N BRYANT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_171_7,-74.90770177,39.47937198,107 N BRYANT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_171_8,-74.89005426,39.56143004,109 N BRYANT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_171_9,-74.80411177,39.64600337,111 N BRYANT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_172_10,-74.80005581,39.64773352,6625 MONMOUTH AVE,VENTNOR CITY,16,1948,1,RES1,3001 -0122_172_11,-74.95074826,39.51415297,6701 MONMOUTH AVE,VENTNOR CITY,16,1928,1,RES1,3001 -0122_172_14,-74.64130748,39.37796362,6711 MONMOUTH AVE,VENTNOR CITY,19,2015,1,RES1,3001 -0122_172_15,-74.77659473,39.59859814,6713 MONMOUTH AVE,VENTNOR CITY,47,1980,2,RES1,3001 -0122_172_16,-74.71008902,39.57181466,6715 MONMOUTH AVE,VENTNOR CITY,47,1960,2,RES1,3001 -0122_172_17,-74.67014603,39.51835623,6717 MONMOUTH AVE,VENTNOR CITY,47,1960,2,RES1,3001 -0122_172_18,-74.7982345,39.5375925,6801 MONMOUTH AVE,VENTNOR CITY,47,1920,2,RES1,3001 -0122_172_19,-74.638489,39.5968225,6803 MONMOUTH AVE,VENTNOR CITY,45,1960,1,RES1,3001 -0122_172_2,-74.62191749,39.43119585,6501 MONMOUTH AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_172_20,-74.61302319,39.34765709,6805 MONMOUTH AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_172_21,-74.86668644,39.53676019,VENTNOR GARDENS PLAZA,VENTNOR CITY,,1980,1,RES1,3001 -0122_172_22,-74.4748095,39.4932765,6807 MONMOUTH AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_172_23,-74.57563811,39.35832839,6806 VENTNOR GARDENS PL,VENTNOR CITY,17,1966,1,RES1,3001 -0122_172_24,-74.5225915,39.3225005,6809 MONMOUTH AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_172_25,-74.77697868,39.62290516,6808 VENTNOR GDNS PL,VENTNOR CITY,17,1966,1,RES1,3001 -0122_172_26,-74.60346747,39.51841666,6811 MONMOUTH AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_172_27,-74.486304,39.334895,203 N NEWARK AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_172_3.02,-74.5115015,39.403425,6503 MONMOUTH AVE,VENTNOR CITY,45,1964,2,RES1,3001 -0122_172_3.03,-74.58888596,39.32350566,6505 MONMOUTH AVE,VENTNOR CITY,45,1968,2,RES1,3001 -0122_172_4,-74.60734779,39.31367447,6507 MONMOUTH AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_172_6,-74.50244862,39.33658578,6601 MONMOUTH AVE,VENTNOR CITY,,1990,1,RES1,3001 -0122_172_7.01,-74.47774554,39.34620783,6605 MONMOUTH AVE,VENTNOR CITY,18,2000,1,GOV1,3004 -0122_172_8,-74.49803533,39.33265501,1727 MONMOUTH AVE,VENTNOR CITY,47,1990,2,RES1,3001 -0122_172_9,-74.801758,39.6589695,6619 MONMOUTH AVE,VENTNOR CITY,18,2011,1,RES1,3001 -0122_173_1,-74.4797278,39.33626439,6509 WINCHESTER AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_173_10,-74.88809321,39.46081481,115 N NEW HAVEN AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_173_11,-74.93105765,39.52786167,117 N NEW HAVEN AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_173_12,-74.7884455,39.643129,121 N NEW HAVEN AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_173_13,-74.79399684,39.66492208,123 N NEW HAVEN AVE,VENTNOR CITY,28,1920,1,RES1,3001 -0122_173_14,-74.81902289,39.64089565,125 N NEW HAVEN AVE,VENTNOR CITY,28,1920,1,RES1,3001 -0122_173_15,-74.49726717,39.332934,127 N NEW HAVEN AVE,VENTNOR CITY,17,2012,1,GOV1,3004 -0122_173_16,-74.51772078,39.31794983,129 N NEW HAVEN AVE,VENTNOR CITY,17,1886,1,RES1,3001 -0122_173_17,-74.47184482,39.34033266,128 N BRYANT AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_173_18,-74.52433454,39.31881067,126 N BRYANT AVE,VENTNOR CITY,16,1933,1,RES1,3001 -0122_173_19,-74.50176998,39.32836116,124 N BRYANT AVE,VENTNOR CITY,28,1928,1,RES1,3001 -0122_173_2,-74.46798883,39.34536076,6515 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_173_20,-74.49465041,39.32975233,122 N BRYANT AVE,VENTNOR CITY,28,1928,1,RES1,3001 -0122_173_21,-74.5059195,39.323815,120 N BRYANT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_173_22,-74.82908538,39.64873438,118 1/2 N BRYANT AVE,VENTNOR CITY,28,1928,1,RES1,3001 -0122_173_23,-74.8077708,39.64072303,118 N BRYANT AVE,VENTNOR CITY,29,1928,1,RES1,3001 -0122_173_24,-74.79360973,39.6702162,116 N BRYANT AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_173_25,-74.93968,39.517287,114 N BRYANT AVE,VENTNOR CITY,17,1919,1,RES1,3001 -0122_173_26,-74.80389197,39.63103916,112 N BRYANT AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_173_27,-74.7894895,39.6365615,110 N BRYANT AVE,VENTNOR CITY,,1924,1,RES1,3001 -0122_173_28,-74.64820641,39.3749502,108 N BRYANT AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_173_29,-74.5975395,39.435435,106 N BRYANT AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_173_3,-74.6456845,39.531861,6517 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_173_30,-74.84230035,39.52668917,104 N BRYANT AVE,VENTNOR CITY,16,1947,1,RES1,3001 -0122_173_31,-74.62117084,39.55230996,102 N BRYANT AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_173_32,-74.786597,39.6345645,100 N BRYANT AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_173_4.01,-74.4538716,39.48903091,6519 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_173_4.02,-74.4684135,39.346097,101 N NEW HAVEN AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_173_5,-74.585461,39.353995,103 N NEW HAVEN AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_173_6,-74.6600585,39.635605,105 N NEW HAVEN AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_173_7,-74.6230083,39.36840582,107 N NEW HAVEN AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_173_8,-74.76755233,39.6259557,109 N NEW HAVEN AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_173_9,-74.87495901,39.59129337,111 N NEW HAVEN AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_174_1,-74.873834,39.44028,6605 WINCHESTER AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_174_10,-74.83106653,39.60036684,127 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_174_11,-74.800456,39.635434,129 N AVOLYN AVE,VENTNOR CITY,14,1930,1,RES1,3001 -0122_174_12,-74.918784,39.5655675,131 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_174_13,-74.790989,39.6754005,135 N AVOLYN AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_174_14,-74.440224,39.367976,130 N NEW HAVEN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_174_15,-74.80786393,39.64151486,128 1/2 N NEW HAVEN AVE,VENTNOR CITY,28,1940,1,RES1,3001 -0122_174_16,-74.7812995,39.6730675,128 N NEW HAVEN AVE,VENTNOR CITY,28,1940,1,RES1,3001 -0122_174_17,-74.76091392,39.65489027,126 N NEW HAVEN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_174_18,-74.80349818,39.63340634,124 N NEW HAVEN AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_174_19,-74.86521001,39.59602611,120 N NEW HAVEN AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_174_2,-74.602013,39.508396,103-105 N AVOLYN AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_174_20,-74.6625905,39.401089,118 N NEW HAVEN AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_174_21,-74.64028805,39.36948561,116 N NEW HAVEN AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_174_22,-74.79838464,39.54294337,114 N NEW HAVEN AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_174_23,-74.64654088,39.55950274,112 N NEW HAVEN AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_174_24,-74.64222514,39.52539644,110 N NEW HAVEN AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_174_25,-74.5010878,39.48769695,108 N NEW HAVEN AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_174_26,-74.47058473,39.49328744,106 N NEW HAVEN AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_174_27,-74.52247759,39.32096778,104 N NEW HAVEN AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_174_28,-74.544008,39.5488245,100 N NEW HAVEN AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_174_3,-74.63550643,39.53013266,107 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_174_4,-74.45366966,39.48956352,109 N AVOLYN AVE,VENTNOR CITY,28,1938,1,RES1,3001 -0122_174_5,-74.5049055,39.49330267,111 N AVOLYN AVE,VENTNOR CITY,28,1938,2,RES1,3001 -0122_174_6,-74.61384237,39.33962149,115 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_174_7,-74.6555305,39.5940405,119 N AVOLYN AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_174_8,-74.61521013,39.43043414,823 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_174_9,-74.642114,39.369768,125 N AVOLYN AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_175_1,-74.72940773,39.45667911,6611 WINCHESTER AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_175_10,-74.7657265,39.6359345,119 N TROY AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_175_11,-74.61648728,39.35048585,121 N TROY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_175_12,-74.6064722,39.592228,123 N TROY AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_175_13,-74.80959132,39.55376334,125 N TROY AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_175_14,-74.77997967,39.62176101,127 N TROY AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_175_15,-74.87960113,39.5956224,131 N TROY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_175_16,-74.88802477,39.47271549,130 N AVOLYN AVE,VENTNOR CITY,17,1916,1,RES1,3001 -0122_175_17,-74.8731855,39.603938,128 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_175_18,-74.76619685,39.62389366,126 N AVOLYN AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_175_19,-74.637486,39.3810255,124 N AVOLYN AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_175_2,-74.74615283,39.44588449,103 N TROY AVE,VENTNOR CITY,17,1940,2,RES1,3001 -0122_175_20,-74.8684095,39.569883,122 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_175_21,-74.6933005,39.590095,120 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_175_22,-74.6433225,39.5304125,118 N AVOLYN AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_175_23,-74.467777,39.346251,116 N AVOLYN AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_175_24,-74.497385,39.474466,114 N AVOLYN AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_175_25,-74.51486633,39.32606753,112 N AVOLYN AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_175_26,-74.635021,39.527521,110 N AVOLYN AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_175_27,-74.88038053,39.49453081,108 N AVOLYN AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_175_28,-74.71383904,39.47162379,106 N AVOLYN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_175_3,-74.57714267,39.34378461,105 N TROY AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_175_4,-74.75659971,39.45416086,107 N TROY AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_175_5,-74.826487,39.491121,109 N TROY AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_175_6,-74.63502593,39.52030986,111 N TROY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_175_7,-74.52332234,39.31775149,113 N TROY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_175_8,-74.4705375,39.48822,115 N TROY AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_175_9,-74.4836447,39.34022164,117 N TROY AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_176_1,-74.5412928,39.45769669,101 N RICHARDS AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_176_10,-74.62847194,39.5280359,119 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_176_11,-74.45941566,39.34870301,121 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_176_12,-74.49936013,39.47196944,123 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_176_13,-74.46570866,39.34517545,125 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_176_14,-74.78844116,39.63745552,127 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_176_15,-74.6340484,39.54080166,129 N RICHARDS AVE,VENTNOR CITY,17,1903,1,RES1,3001 -0122_176_16,-74.78112,39.509665,131 N RICHARDS AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_176_17,-74.59728938,39.43455052,6700 MONMOUTH AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_176_18,-74.6523095,39.5935565,126 N TROY AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_176_19,-74.60805929,39.347665,122 N TROY AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_176_2,-74.565413,39.4772165,103 N RICHARDS AVE,VENTNOR CITY,17,1941,1,RES1,3001 -0122_176_20,-74.52445155,39.47362818,120 N TROY AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_176_21,-74.47753871,39.3412168,118 N TROY AVE,VENTNOR CITY,17,1948,1,IND2,3002 -0122_176_22,-74.63614715,39.53301234,116 N TROY AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_176_23,-74.6032735,39.5089635,114 N TROY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_176_24,-74.85207853,39.44247544,112 N TROY AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_176_25,-74.61853939,39.35085096,110 N TROY AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_176_26,-74.562892,39.3598215,108 N TROY AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_176_27,-74.73294727,39.44249314,106 N TROY AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_176_28,-74.715314,39.4059745,104 N TROY AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_176_29,-74.667507,39.4602185,102 N TROY AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_176_3,-74.65177275,39.45994204,105 N RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_176_30,-74.55962582,39.50205519,6701 WINCHESTER AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_176_4,-74.68858476,39.50382394,107 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_176_5,-74.8229944,39.40155833,109 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_176_6,-74.73363672,39.46201944,111 N RICHARDS AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_176_7,-74.5877085,39.347639,113 N RICHARDS AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_176_8,-74.802313,39.439894,115 N RICHARDS AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_176_9,-74.87469131,39.48460396,117 N RICHARDS AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_177_10,-74.47695634,39.33800484,128 N RICHARDS AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_177_11,-74.50979284,39.3302232,112 N RICHARDS AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_177_12,-74.5587685,39.53816038,110 N RICHARDS AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_177_13,-74.5809475,39.3619095,108 N RICHARDS AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_177_14,-74.722613,39.45607,106 N RICHARDS AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_177_15,-74.67105622,39.49418657,104 N RICHARDS AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_177_16,-74.55362463,39.47486992,102 N RICHARDS AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_177_17,-74.62534646,39.42361969,6705 WINCHESTER AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_177_2,-74.64684348,39.43337833,103 N BUFFALO AVE,VENTNOR CITY,17,2008,1,RES1,3001 -0122_177_3,-74.606933,39.4914595,105 N BUFFALO AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_177_4,-74.70722665,39.41713773,107 N BUFFALO AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_177_5,-74.58190117,39.34188309,109 N BUFFALO AVE,VENTNOR CITY,17,1952,1,GOV1,3004 -0122_177_6,-74.851622,39.458338,111 N BUFFALO AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_177_7,-74.64095135,39.52980204,115 N BUFFALO AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_177_8,-74.48809079,39.49193621,119 N BUFFALO AVE,VENTNOR CITY,17,2002,1,RES1,3001 -0122_177_9,-74.76322834,39.63073601,130 N RICHARDS AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_178_1,-74.53532109,39.38907565,6803 WINCHESTER AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_178_10,-74.632231,39.4459595,119 N WISSAHICKON AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_11,-74.6457679,39.47304619,121 N WISSAHICKON AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_12,-74.7610375,39.4310275,123 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_178_13,-74.72661734,39.45843305,125 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3004 -0122_178_14,-74.5820459,39.34301681,127 N WISSAHICKON AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_178_15,-74.761172,39.4452255,129 N WISSAHICKON AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_16,-74.8273555,39.485956,135 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_178_17,-74.624856,39.5292215,130 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_18,-74.87246836,39.49116369,128 N BUFFALO AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_178_19,-74.7699825,39.498163,126 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_2,-74.602295,39.432039,105 N WISSAHICKON AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_178_20,-74.61455902,39.33935433,124 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_21,-74.73871252,39.46766334,122 N BUFFALO AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_178_22,-74.81945182,39.38528902,120 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_23,-74.67490027,39.49593075,118 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_24,-74.56655246,39.47823782,114 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_25,-74.53247567,39.45150051,112 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_26,-74.62477237,39.43334474,110 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_27,-74.62369044,39.41692579,108 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_28,-74.60268834,39.40928368,106 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_29,-74.5636015,39.4163445,104 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_3,-74.372646,39.400114,107 N WISSAHICKON AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_178_30,-74.39614716,39.38828818,102 N BUFFALO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_178_31,-74.6373287,39.36962036,6801 WINCHESTER AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_178_6,-74.6490974,39.39825135,111 N WISSAHICKON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_178_7,-74.626874,39.4241045,113 N WISSAHICKON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_178_8,-74.64856214,39.43107434,115 N WISSAHICKON AVE,VENTNOR CITY,17,2008,1,RES1,3001 -0122_178_9.01,-74.54532308,39.47127326,117 N WISSAHICKON AVE,VENTNOR CITY,17,1903,1,RES1,3001 -0122_179_1,-74.6505369,39.35461153,6807 WINCHESTER AVE,VENTNOR CITY,17,1954,1,GOV1,3004 -0122_179_10,-74.62996908,39.44051692,127 N NEWARK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_11,-74.68266808,39.49788536,129 N NEWARK AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_179_12,-74.810195,39.382926,131 N NEWARK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_13,-74.75156913,39.44569172,130 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_14,-74.8278835,39.403419,128 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_15,-74.70572901,39.49944284,126 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_16,-74.63669198,39.46146404,122 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_17,-74.54253771,39.45918809,120 N WISSAHICKON AVE,VENTNOR CITY,45,1940,3,RES1,3001 -0122_179_18,-74.61986685,39.43390977,114 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_179_19,-74.56123569,39.41440693,112 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_2,-74.5551835,39.3728445,103 N NEWARK AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_179_20,-74.3796535,39.3985535,110 N WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_21,-74.64601709,39.37842763,108 N WISSAHICKON AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_179_22,-74.555235,39.379791,106 N WISSAHICKON AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_179_23,-74.550087,39.384898,104 N WISSAHICKON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_179_24,-74.6889045,39.3591985,6805 WINCHESTER AVE,VENTNOR CITY,17,1941,1,RES1,3001 -0122_179_3,-74.5990455,39.4248955,107 N NEWARK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_4,-74.63641391,39.38413666,115 N NEWARK AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_179_5,-74.3858939,39.39582178,117 N NEWARK AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_179_6,-74.57587218,39.40819155,119 N NEWARK AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_179_7,-74.6228073,39.41787008,121 N NEWARK AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_179_8,-74.63648721,39.43567883,123 N NEWARK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_179_9,-74.56220232,39.46988913,125 N NEWARK AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_18_10,-74.8767545,39.470155,110 S DORSET AVE,VENTNOR CITY,19,1920,1,RES3A,3001 -0122_18_2,-74.56407,39.3610705,109 S DERBY AVE,VENTNOR CITY,21,2007,1,RES1,3001 -0122_18_3,-74.8778575,39.478456,107 S DERBY AVE,VENTNOR CITY,20,1915,1,RES1,3001 -0122_18_4,-74.51382984,39.32718198,105 S DERBY AVE,VENTNOR CITY,20,1920,1,RES1,3001 -0122_18_5,-74.46856,39.346275,5910 ATLANTIC AVE,VENTNOR CITY,18,1912,1,RES1,3001 -0122_18_6,-74.6492935,39.5590205,5900 ATLANTIC AVE,VENTNOR CITY,18,1927,1,RES1,3001 -0122_18_7,-74.77636743,39.63920701,102 S DORSET AVE,VENTNOR CITY,18,1925,1,GOV1,3004 -0122_18_8,-74.492526,39.492584,104 S DORSET AVE,VENTNOR CITY,19,1920,1,RES1,3001 -0122_18_9,-74.52059158,39.32000067,106 S DORSET AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_180_1,-74.5936841,39.34845033,6901 WINCHESTER AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_180_10,-74.39084596,39.3905765,121 N ROSBOROUGH AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_180_11,-74.55398906,39.41949712,123 N ROSBOROUGH AVE,VENTNOR CITY,16,1950,1,RES1,3001 -0122_180_12,-74.631847,39.4172105,125 N ROSBOROUGH AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_180_13,-74.7069275,39.42364533,6902 MONMOUTH AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_180_14,-74.5992805,39.4978195,6900 MONMOUTH AVE,VENTNOR CITY,17,2015,1,RES1,3001 -0122_180_15,-74.6433565,39.4296375,118 N NEWARK AVE,VENTNOR CITY,17,1943,1,RES1,3001 -0122_180_16,-74.6297085,39.4181665,114 N NEWARK AVE,VENTNOR CITY,17,1943,1,RES1,3001 -0122_180_17,-74.41292117,39.36906742,112 N NEWARK AVE,VENTNOR CITY,17,1940,2,RES1,3001 -0122_180_18,-74.63616324,39.36839299,110 N NEWARK AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_180_19,-74.58101616,39.43010575,108 N NEWARK AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_180_2,-74.582232,39.33946,6903 WINCHESTER AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_180_20,-74.54853128,39.38219503,106 N NEWARK AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_180_21,-74.6524898,39.35259638,104 N NEWARK AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_180_3,-74.55806611,39.35871057,6905 WINCHESTER AVE,VENTNOR CITY,45,1958,2,RES1,3001 -0122_180_4,-74.59744677,39.31938437,6915 WINCHESTER AVE,VENTNOR CITY,,1925,1,RES1,3001 -0122_180_5.01,-74.57525969,39.35091902,101 N ROSBOROUGH AVE,VENTNOR CITY,17,1985,1,COM1,3004 -0122_180_5.02,-74.6418875,39.3245415,103 N ROSBOROUGH AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_180_6,-74.63097947,39.3608002,113 N ROSBOROUGH AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_180_7,-74.53551992,39.37802814,115 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_180_8,-74.59508913,39.42736576,117 N ROSBOROUGH AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_180_9,-74.61823158,39.43082497,119 N ROSBOROUGH AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_181_1,-74.59578782,39.35959722,6901 MONMOUTH AVE,VENTNOR CITY,17,2014,1,RES1,3001 -0122_181_2,-74.57623904,39.34914371,6903 MONMOUTH AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_181_3,-74.7280231,39.45599826,6905 MONMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_181_4,-74.82892189,39.39796277,6907 MONMOUTH AVE,VENTNOR CITY,17,2014,1,RES1,3004 -0122_181_5,-74.56516878,39.50580096,203 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_181_6,-74.51629177,39.33012689,6900 VENTNOR GDNS PL,VENTNOR CITY,17,1958,1,RES1,3001 -0122_181_7,-74.8725087,39.49920155,202 N NEWARK AVE,VENTNOR CITY,17,1998,1,RES1,3001 -0122_182_1,-74.53315053,39.31405566,100 N ROSBOROUGH AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_182_10,-74.62950207,39.3623714,117 N WYOMING AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_182_11,-74.652432,39.3554565,119 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3004 -0122_182_12,-74.54793541,39.37004781,121 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_182_13,-74.54791722,39.37955031,123 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_182_14,-74.5941315,39.424358,125 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_182_15,-74.60167773,39.43507338,127 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_182_16,-74.635052,39.391154,129 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_182_17,-74.39826795,39.39396731,6906 MONMOUTH AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_182_18,-74.59693248,39.41873199,6904 MONMOUTH AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_182_19,-74.4049285,39.3811935,126 N ROSBOROUGH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_182_2,-74.50374894,39.48880174,6925 WINCHESTER AVE,VENTNOR CITY,,1948,1,RES1,3001 -0122_182_20.01,-74.3848655,39.3928325,124 N ROSBOROUGH AVE,VENTNOR CITY,29,1938,1,RES1,3001 -0122_182_20.02,-74.635583,39.3846435,124-A N ROSBOROUGH AVE,VENTNOR CITY,29,1938,1,RES1,3001 -0122_182_21,-74.59773661,39.4352333,122 N ROSBOROUGH AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_182_22,-74.56718958,39.37202372,120 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_182_23,-74.54268,39.3728285,118 N ROSBOROUGH AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_182_24,-74.63308085,39.36338779,116 N ROSBOROUGH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_182_25,-74.592278,39.3641725,108 N ROSBOROUGH AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_182_26,-74.59516967,39.3423964,106 N ROSBOROUGH AVE,VENTNOR CITY,45,1929,3,RES1,3001 -0122_182_27,-74.56988982,39.34923527,104 N ROSBOROUGH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_182_28,-74.58818596,39.31927986,102 N ROSBOROUGH AVE,VENTNOR CITY,17,2010,1,RES1,3001 -0122_182_3,-74.46133526,39.49218585,6927 WINCHESTER AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_182_4,-74.5294705,39.450019,6929 WINCHESTER AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_182_5,-74.51263716,39.5069543,101 N WYOMING AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_182_6,-74.5892325,39.3255395,103 N WYOMING AVE,VENTNOR CITY,17,1992,1,RES1,3001 -0122_182_7,-74.613522,39.322054,105 N WYOMING AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_182_8,-74.56625976,39.36799488,107 N WYOMING AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_182_9,-74.5782365,39.353091,109 N WYOMING AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_183_1.01,-74.5539315,39.464328,6911 MONMOUTH AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_183_1.02,-74.68166073,39.44569841,202 N ROSBOROUGH AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_183_2,-74.60786928,39.44039464,6929 MONMOUTH AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_183_3,-74.69050083,39.41541838,201 N WYOMING AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_183_5,-74.75562795,39.42912023,203 N WYOMING AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_183_6,-74.57986537,39.34169773,6904 VENTNOR GDNS PL,VENTNOR CITY,17,1952,1,RES1,3001 -0122_184_1,-74.55837705,39.36778383,7001 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_184_10,-74.59263046,39.32739135,119 N LAFAYETTE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_184_11,-74.55475801,39.35524991,121-123 N LAFAYETTE AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_184_12,-74.7679665,39.3490545,125 N LAFAYETTE AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_184_15,-74.60331233,39.34614906,126 N WYOMING AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_184_16,-74.56902532,39.35493276,124 N WYOMING AVE,VENTNOR CITY,27,1910,1,GOV1,3004 -0122_184_17,-74.570189,39.3414165,122 N WYOMING AVE,VENTNOR CITY,27,1910,1,RES1,3001 -0122_184_18,-74.60802166,39.32164279,120 N WYOMING AVE,VENTNOR CITY,27,1935,1,RES1,3001 -0122_184_19,-74.58518927,39.3287031,118 N WYOMING AVE,VENTNOR CITY,27,1955,1,RES1,3001 -0122_184_2,-74.46686983,39.45861236,7003 WINCHESTER AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_184_20,-74.6073503,39.31096797,116 N WYOMING AVE,VENTNOR CITY,27,1935,1,RES1,3001 -0122_184_21,-74.58080261,39.31273026,110 N WYOMING AVE,VENTNOR CITY,27,1935,1,RES1,3001 -0122_184_22,-74.50224279,39.50282531,108 N WYOMING AVE,VENTNOR CITY,27,1935,1,RES1,3001 -0122_184_23,-74.47019729,39.48905309,106 N WYOMING AVE,VENTNOR CITY,27,1935,1,RES1,3001 -0122_184_24,-74.450294,39.48471852,104 N WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_184_25,-74.4910015,39.440264,102 N WYOMING AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_184_3,-74.614598,39.411791,7005 WINCHESTER AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_184_4,-74.56747156,39.41264725,7007 WINCHESTER AVE,VENTNOR CITY,45,1935,2,RES1,3001 -0122_184_5,-74.57331907,39.35585532,101 N LAFAYETTE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_184_6,-74.460753,39.4696165,109 N LAFAYETTE AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_184_7,-74.5079805,39.4588745,111 N LAFAYETTE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_184_8,-74.50411424,39.49409968,115 N LAFAYETTE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_184_9,-74.59077098,39.31194463,117 N LAFAYETTE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_185_1,-74.3784315,39.3978215,201 N LAFAYETTE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_185_2,-74.60848556,39.4188603,203 N LAFAYETTE AVE,VENTNOR CITY,17,1962,1,COM1,3004 -0122_185_3,-74.63045378,39.43185958,205 N LAFAYETTE AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_185_4,-74.5705605,39.4788615,7000 VENTNOR GDNS PL,VENTNOR CITY,17,1965,1,RES1,3001 -0122_185_5,-74.636379,39.431942,204 N WYOMING AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_185_6,-74.55858533,39.413186,202 N WYOMING AVE,VENTNOR CITY,20,2017,1,IND2,3004 -0122_186_1,-74.53385779,39.38653652,7101 WINCHESTER AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_186_10,-74.50892689,39.45224537,111 N MELBOURNE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_186_11,-74.47483529,39.48085024,113 N MELBOURNE AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_186_12,-74.50724622,39.51745531,115 N MELBOURNE AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_186_13,-74.58393255,39.32428318,117 N MELBOURNE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_186_14,-74.60749517,39.31820909,119 N MELBOURNE AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_186_15,-74.56166712,39.36218658,121-123 N MELBOURNE,VENTNOR CITY,45,1931,2,RES1,3001 -0122_186_16,-74.58145737,39.36342546,132 N LAFAYETTE AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_186_17,-74.580979,39.3346025,130 N LAFAYETTE AVE,VENTNOR CITY,17,2016,1,RES1,3001 -0122_186_18,-74.60930113,39.32602877,128 N LAFAYETTE AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_186_19,-74.58628884,39.32282652,126 N LAFAYETTE AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_186_2,-74.49716477,39.42652858,7103 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_186_20,-74.53693944,39.31426579,124 N LAFAYETTE AVE,VENTNOR CITY,17,1936,1,RES1,3001 -0122_186_21,-74.4684525,39.489387,122 N LAFAYETTE AVE,VENTNOR CITY,45,1938,2,RES1,3001 -0122_186_22,-74.51810096,39.43731012,118 N LAFAYETTE AVE,VENTNOR CITY,17,1914,1,RES1,3001 -0122_186_23,-74.49424007,39.43233195,116 N LAFAYETTE AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_186_24,-74.49268336,39.44499515,114 N LAFAYETTE AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_186_25,-74.59637607,39.40858527,112 N LAFAYETTE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_186_26,-74.6096876,39.37693872,110 N LAFAYETTE AVE,VENTNOR CITY,45,1898,2,RES1,3001 -0122_186_3,-74.49974632,39.41589307,7105 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_186_4,-74.60470718,39.38381544,7107 WINCHESTER AVE,VENTNOR CITY,,1958,1,RES1,3001 -0122_186_5,-74.50614211,39.42465667,101 N MELBOURNE AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_186_6,-74.60146709,39.37929885,103 N MELBOURNE AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_186_7,-74.57345862,39.42941228,105 N MELBOURNE AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_186_8,-74.4842445,39.46305554,107 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,COM4,3004 -0122_186_9,-74.5172295,39.4165795,109 N MELBOURNE AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_187_2,-74.3871575,39.392604,205 N MELBOURNE AVE,VENTNOR CITY,17,1955,1,RES3A,3001 -0122_187_3,-74.563487,39.42445,7100 VENTNOR GDNS PL,VENTNOR CITY,17,1956,1,RES1,3001 -0122_187_4,-74.39163661,39.39211303,204 N LAFAYETTE AVE,VENTNOR CITY,16,1965,1,RES3A,3001 -0122_187_5,-74.600268,39.419408,200 N LAFAYETTE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_188_1,-74.50278537,39.3360667,100 N MELBOURNE AVE,VENTNOR CITY,17,1922,1,RES1,3002 -0122_188_10,-74.59966436,39.38722943,111 N BALTIMORE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_188_11,-74.60007837,39.4157121,113 N BALTIMORE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_188_12,-74.51314,39.4403085,129 N BALTIMORE AVE,VENTNOR CITY,17,2016,1,RES1,3001 -0122_188_13,-74.4847805,39.4392735,131 N BALTIMORE AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_188_14,-74.49290348,39.45939606,133 N BALTIMORE AVE,VENTNOR CITY,45,1942,2,RES1,3001 -0122_188_15,-74.4985715,39.470925,135 N BALTIMORE AVE,VENTNOR CITY,17,1942,2,RES1,3001 -0122_188_16,-74.61719566,39.30830954,122 N MELBOURNE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_188_17,-74.49138347,39.49614574,120 N MELBOURNE AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_188_18,-74.460989,39.4716575,118 N MELBOURNE AVE,VENTNOR CITY,,1940,1,COM1,3004 -0122_188_19,-74.48811532,39.44130398,116 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_188_2,-74.44675508,39.35705384,7111 WINCHESTER AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_188_20,-74.566107,39.352798,114 N MELBOURNE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_188_21,-74.50115571,39.42854853,112 N MELBOURNE AVE,VENTNOR CITY,17,1925,1,RES1,3002 -0122_188_22,-74.563969,39.410561,110 N MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_188_23,-74.59502023,39.38156942,108 N MELBOURNE AVE,VENTNOR CITY,18,2016,1,RES3A,3001 -0122_188_24,-74.49759657,39.42483958,106 N MELBOURNE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_188_25,-74.60592252,39.39021317,104 N MELBOURNE AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_188_26,-74.500865,39.410825,102 N MELBOURNE AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_188_3,-74.523331,39.39245,7113 WINCHESTER AVE,VENTNOR CITY,17,1924,1,COM3,3004 -0122_188_4,-74.370201,39.4110325,7115 WINCHESTER AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_188_5,-74.489631,39.3380015,101 N BALTIMORE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_188_6,-74.506123,39.406773,103 N BALTIMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_188_7,-74.58159512,39.40168174,105 N BALTIMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_188_8,-74.517009,39.402878,107 N BALTIMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_188_9,-74.58155376,39.37076905,109 N BALTIMORE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_189_1,-74.63475118,39.3500148,7115 MONMOUTH AVE,VENTNOR CITY,45,1902,2,GOV1,3004 -0122_189_2,-74.5756495,39.35458,7117 MONMOUTH AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_189_3,-74.5955,39.3420875,7121 MONMOUTH AVE,VENTNOR CITY,17,1930,1,RES1,3004 -0122_189_4,-74.5997504,39.32753832,7125 MONMOUTH AVE,VENTNOR CITY,17,1960,1,GOV1,3004 -0122_189_5,-74.58994567,39.33108254,7112 VENTNOR GARDENS,VENTNOR CITY,17,1963,1,RES1,3001 -0122_189_6,-74.57555328,39.34254233,7110 VENTNOR GARDENS,VENTNOR CITY,17,1960,1,COM1,3004 -0122_189_7,-74.648843,39.356455,7108 VENTNOR GARDENS,VENTNOR CITY,17,1960,1,RES1,3001 -0122_189_8,-74.54333426,39.36835472,7106 VENTNOR GARDENS,VENTNOR CITY,17,1960,1,GOV1,3004 -0122_189_9,-74.55437312,39.36878824,204 N MELBOURNE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_19_1,-74.62221973,39.43373747,111 S CORNWALL AVE,VENTNOR CITY,19,1925,1,RES1,3001 -0122_19_10,-74.6581307,39.43312105,112 S DERBY AVE,VENTNOR CITY,22,1992,1,RES1,3001 -0122_19_11,-74.577965,39.418369,6003 BOARDWALK,VENTNOR CITY,20,1920,1,RES1,3001 -0122_19_12,-74.62866662,39.41422709,6001 BOARDWALK,VENTNOR CITY,19,2008,1,RES1,3001 -0122_19_2,-74.61890642,39.44932597,107 S CORNWALL AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_19_3,-74.6790205,39.4455735,105 S CORNWALL AVE,VENTNOR CITY,17,1914,1,RES1,3001 -0122_19_4,-74.82385873,39.37355314,103 S CORNWALL AVE,VENTNOR CITY,17,1914,1,RES1,3001 -0122_19_5,-74.58074268,39.33682201,6006 ATLANTIC AVE,VENTNOR CITY,18,1951,1,RES1,3001 -0122_19_6,-74.55013014,39.50770696,102 S DERBY AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_19_8,-74.686175,39.49803,108 S DERBY AVE,VENTNOR CITY,19,1920,1,RES1,3001 -0122_19_9,-74.60424618,39.50376365,110 S DERBY AVE,VENTNOR CITY,21,2009,1,RES1,3001 -0122_190_1,-74.599334,39.3145855,101 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_190_10,-74.51884348,39.41085067,121 N SWARTHMORE AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_190_11,-74.53564637,39.41993731,123 N SWARTHMORE AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_190_12,-74.54164815,39.41384702,7200 MONMOUTH AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_190_13,-74.562838,39.4052,120 N BALTIMORE AVE,VENTNOR CITY,17,1948,1,GOV1,3004 -0122_190_14,-74.551286,39.390468,118 N BALTIMORE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_190_15,-74.50253319,39.4151009,116 N BALTIMORE AVE,VENTNOR CITY,45,1927,2,RES1,3001 -0122_190_17,-74.529457,39.399115,112 N BALTIMORE AVE,VENTNOR CITY,27,1930,1,RES1,3001 -0122_190_18,-74.488659,39.3363635,110 N BALTIMORE AVE,VENTNOR CITY,45,1930,2,GOV1,3004 -0122_190_19,-74.52970868,39.38922653,108 N BALTIMORE AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_190_2,-74.59910857,39.32547883,103 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_190_20,-74.379063,39.4190145,106 N BALTIMORE AVE,VENTNOR CITY,28,1930,2,RES1,3001 -0122_190_21,-74.368927,39.4068575,104 N BALTIMORE AVE,VENTNOR CITY,17,1930,2,RES1,3001 -0122_190_22,-74.389255,39.3904265,102 N BALTIMORE AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_190_23,-74.59849017,39.31760911,100 N BALTIMORE AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_190_3,-74.508658,39.3346805,105 N SWARTHMORE AVE,VENTNOR CITY,17,1928,1,GOV1,3004 -0122_190_4,-74.40204766,39.38404347,107 N SWARTHMORE AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_190_5,-74.37189782,39.40549653,109 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_190_6,-74.4526068,39.37113269,111 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_190_7,-74.5192155,39.395134,115 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_190_8,-74.50321381,39.33740489,117 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_190_9,-74.59663457,39.38353635,119 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_191_1,-74.4848395,39.3393415,7211 WINCHESTER AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_10,-74.50120614,39.41572598,112 N SWARTHMORE AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_11,-74.4507835,39.35678384,110 N SWARTHMORE AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_12,-74.365921,39.4116355,108 N SWARTHMORE AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_13,-74.3980646,39.39361446,106 N SWARTHMORE AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_14,-74.58784367,39.32926558,104 N SWARTHMORE AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_15,-74.497904,39.335153,102 N SWARTHMORE AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_191_16,-74.44926883,39.354585,100 N SWARTHMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_191_2,-74.46351168,39.35269499,103 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_3,-74.5966325,39.313835,105 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,GOV1,3004 -0122_191_4,-74.50554356,39.34067017,107 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_6,-74.43527031,39.36895407,109 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,GOV1,3004 -0122_191_7,-74.4498565,39.370795,111 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_191_8,-74.50475057,39.41101432,115 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_191_9,-74.61517874,39.39137768,114 N SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_192_1,-74.43938882,39.36548361,101 N MARTINDALE AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_192_10,-74.37000322,39.41879442,123 N MARTINDALE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_192_11,-74.515591,39.399952,114 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_192_12,-74.3694615,39.4106065,112 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_192_13,-74.38832804,39.39320566,110 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES3A,3001 -0122_192_14,-74.58746367,39.32358202,108 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_192_15,-74.48767751,39.33835867,106 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_192_16,-74.48511565,39.3365499,104 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_192_17,-74.516411,39.321516,100 N WASHINGTON AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_192_2,-74.49192562,39.33241666,103 N MARTINDALE AVE,VENTNOR CITY,17,1922,1,REL1,3004 -0122_192_3,-74.50724209,39.3282595,105 N MARTINDALE AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_192_4,-74.50969582,39.32711058,107 N MARTINDALE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_192_5,-74.4655575,39.3449475,109 N MARTINDALE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_192_6,-74.50280362,39.50100612,111 N MARTINDALE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_192_7,-74.596527,39.311963,115 N MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_192_8,-74.3766465,39.3990145,119 N MARTINDALE AVE,VENTNOR CITY,17,2013,1,RES1,3001 -0122_192_9,-74.443147,39.3738105,121 N MARTINDALE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_193_1,-74.7795469,39.50064538,101 N FREDERICKSBURG AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_193_10,-74.53023277,39.52168926,118 N MARTINDALE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_193_11,-74.4480597,39.35683103,114 N MARTINDALE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_193_12,-74.50947341,39.32944836,110 N MARTINDALE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_193_13,-74.50311416,39.33078051,108 N MARTINDALE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_193_14,-74.52250839,39.31490151,106 N MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_193_15,-74.55632,39.472977,104 N MARTINDALE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_193_16,-74.5375805,39.4681215,102 N MARTINDALE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_193_17,-74.481466,39.349762,100 N MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_193_2,-74.595666,39.5105085,103 N FREDERICKSBURG AVE,VENTNOR CITY,17,1960,1,GOV1,3004 -0122_193_3,-74.82154872,39.46446785,105 N FREDERICKSBURG,VENTNOR CITY,17,1962,1,RES1,3001 -0122_193_4,-74.51887232,39.32238539,107 N FREDERICKSBURG,VENTNOR CITY,17,1972,1,RES1,3001 -0122_193_5,-74.513605,39.326945,109 N FREDERICKSBURG,VENTNOR CITY,17,1965,1,RES1,3001 -0122_193_6,-74.4598533,39.35691013,115 N FREDERICKSBURG,VENTNOR CITY,,1965,1,RES1,3001 -0122_193_7,-74.58691516,39.32482136,117 N FREDERICKSBURG AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_193_8,-74.50393136,39.34040712,122 N MARTINDALE AVE,VENTNOR CITY,18,2017,1,RES1,3001 -0122_193_9,-74.58788829,39.33180459,120 N MARTINDALE AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_194_1,-74.4964465,39.3341195,NE BATON ROUGE AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_196_4,-74.950686,39.4977275,NW LANCASTER AVENUE,VENTNOR CITY,,0,1,GOV1,3004 -0122_199_1,-74.75547878,39.44882604,5403 MONMOUTH AVE,VENTNOR CITY,17,1959,1,RES1,3001 -0122_199_10,-74.56135528,39.36403539,5402 CALVERT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_199_12,-74.6072575,39.314646,218 N SURREY AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_199_13,-74.46899098,39.4927528,216 N SURREY AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_199_14,-74.50205916,39.45006904,214 N SURREY AVE,VENTNOR CITY,,1945,1,RES1,3001 -0122_199_15,-74.5253655,39.40358,210 N SURREY AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_199_16,-74.367331,39.4205395,206 N SURREY AVE,VENTNOR CITY,,1965,1,RES1,3001 -0122_199_17,-74.37733391,39.40283587,204 N SURREY AVE,VENTNOR CITY,45,1980,2,RES1,3001 -0122_199_18,-74.4241115,39.37078,202 N SURREY AVE,VENTNOR CITY,45,1980,2,RES1,3001 -0122_199_2,-74.3616555,39.4178495,205 N SUFFOLK AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_199_3.01,-74.63682615,39.43574727,211 N SUFFOLK AVE,VENTNOR CITY,45,1900,3,RES1,3001 -0122_199_3.02,-74.5248325,39.3917605,213 N SUFFOLK AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_199_4,-74.505209,39.425624,215 N SUFFOLK AVE,VENTNOR CITY,17,1952,1,RES1,3004 -0122_199_5,-74.5219022,39.44740442,217 N SUFFOLK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_199_6,-74.47215409,39.48928531,219 N SUFFOLK AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_199_7,-74.60671564,39.31112278,221 N SUFFOLK AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_199_8,-74.6164761,39.32138105,5406 CALVERT AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_199_9,-74.61098156,39.32709429,5404 CALVERT AVE,VENTNOR CITY,14,1930,1,RES1,3001 -0122_2_1,-74.62887254,39.41851731,115 S BATON ROUGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_2_10,-74.61440587,39.53637934,114 S VASSAR SQUARE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_2_11,-74.72480886,39.46193425,116 S VASSAR SQUARE,VENTNOR CITY,14,1905,1,RES1,3001 -0122_2_2,-74.7566585,39.4456825,113 S BATON ROUGE AVE,VENTNOR CITY,17,1924,1,RES1,3001 -0122_2_3,-74.65708897,39.51590366,111 S BATON ROUGE AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_2_4,-74.62534432,39.39237958,109 S BATON ROUGE AVE,VENTNOR CITY,18,1907,1,RES1,3001 -0122_2_5,-74.60969635,39.36773181,107 S BATON ROUGE AVE,VENTNOR CITY,17,1898,1,RES1,3001 -0122_2_7,-74.79142955,39.63201479,101 S BATON ROUGE AVE,VENTNOR CITY,17,1910,3,RES1,3001 -0122_20_1,-74.54775285,39.37966555,6100 BOARDWALK,VENTNOR CITY,,1940,1,RES1,3001 -0122_20_2,-74.6295735,39.364803,111 S CAMBRIDGE AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_200_1,-74.5477485,39.3724735,5501 MONMOUTH AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_200_10,-74.53614585,39.38479004,207 N SOMERSET AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_200_11,-74.75113757,39.45022499,211 N SOMERSET AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_200_12,-74.38750761,39.39243138,213 N SOMERSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_13,-74.4137935,39.371156,215 N SOMERSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_14,-74.40217,39.388149,217 N SOMERSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_15,-74.370507,39.4152445,219 N SOMERSET AVE,VENTNOR CITY,17,1932,1,RES3A,3001 -0122_200_16,-74.63254657,39.43153659,221 N SOMERSET AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_200_17,-74.44623795,39.37336919,223 N SOMERSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_18,-74.526785,39.3981595,225 N SOMERSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_19,-74.51436232,39.40972348,227 N SOMERSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_2,-74.677402,39.3512385,5503 MONMOUTH AVE,VENTNOR CITY,17,1929,1,RES1,3004 -0122_200_20,-74.501907,39.432056,229 N SOMERSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_200_21,-74.5239455,39.441677,5510 CALVERT AVE,VENTNOR CITY,45,1929,2,RES1,3001 -0122_200_22,-74.5269815,39.454873,5508 CALVERT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_200_23,-74.52014274,39.46196731,5506 CALVERT AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_200_24,-74.46402861,39.49708897,5504 CALVERT AVE,VENTNOR CITY,17,1929,1,RES1,3004 -0122_200_25,-74.48570227,39.52438841,5502 CALVERT AVE,VENTNOR CITY,45,1929,2,COM1,3004 -0122_200_26,-74.53318411,39.30608766,5500 CALVERT AVE,VENTNOR CITY,45,1929,2,COM1,3004 -0122_200_27,-74.50580695,39.46225408,228 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_28,-74.4854435,39.4586705,226 N SUFFOLK AVE,VENTNOR CITY,17,1950,1,COM1,3004 -0122_200_29,-74.5013125,39.4342745,224 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_3,-74.5110415,39.3383045,5505 MONMOUTH AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_200_30,-74.49952101,39.41286622,222 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_31,-74.52267284,39.39899695,220 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_32,-74.45579886,39.37927202,218 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_33,-74.64389108,39.4355801,216 N SUFFOLK AVE,VENTNOR CITY,17,1925,1,RES1,3004 -0122_200_34,-74.37731673,39.41417598,214 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_35,-74.36134114,39.41061705,212 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_36,-74.41300947,39.36884582,210 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_37,-74.38971278,39.39274331,208 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_38,-74.75136875,39.4476871,206 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_39,-74.5371335,39.38446148,204 N SUFFOLK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_200_4,-74.50787167,39.33854299,5507 MONMOUTH AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_200_40,-74.507723,39.473897,202 N SUFFOLK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_200_5,-74.48769775,39.3371367,5509 MONMOUTH AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_200_6,-74.45368733,39.35346703,5511 MONMOUTH AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_200_7,-74.65932066,39.36699754,201 N SOMERSET AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_200_8,-74.55078214,39.37270523,203 N SOMERSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_200_9,-74.50436297,39.47800134,205 N SOMERSET AVE,VENTNOR CITY,17,1934,1,RES1,3001 -0122_201_1,-74.50565835,39.32584547,5601 MONMOUTH AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_201_10,-74.47168908,39.48757643,211 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_201_11,-74.73364287,39.46123717,215 N OXFORD AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_201_12,-74.38240322,39.39387417,217 N OXFORD AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_201_13,-74.62341794,39.43182771,225 N OXFORD AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_201_14,-74.51533684,39.4001705,231 N OXFORD AVE,VENTNOR CITY,18,2016,1,RES3A,3001 -0122_201_15,-74.492929,39.4319885,5600 N CALVERT AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_201_16,-74.51712168,39.40088156,234 N SOMERSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_201_17,-74.3610665,39.413167,228 N SOMERSET AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_201_18,-74.38426527,39.39552109,226 N SOMERSET AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_201_19,-74.7090855,39.5018195,222 N SOMERSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_201_2,-74.50145797,39.3327728,5603 MONMOUTH AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_201_20,-74.49770462,39.49635716,220 N SOMERSET AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_201_21,-74.78224808,39.30660972,210 N SOMERSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_201_22,-74.494973,39.3348805,208 N SOMERSET AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_201_3,-74.43503148,39.36476732,5605 MONMOUTH AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_201_4,-74.79925203,39.64276095,5607 MONMOUTH AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_201_5,-74.78709201,39.64896233,5609 MONMOUTH AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_201_6,-74.88895465,39.55636195,5611 MONMOUTH AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_201_7,-74.493455,39.334296,205 N OXFORD AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_201_9,-74.35431346,39.41472066,209 N OXFORD AVE,VENTNOR CITY,17,1959,1,RES1,3001 -0122_202_1,-74.87923136,39.59594895,201 N DUDLEY AVE,VENTNOR CITY,17,1929,1,RES3A,3001 -0122_202_11,-74.83210152,39.45449326,239 N DUDLEY AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_202_12,-74.38582512,39.39643203,5706 CALVERT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_202_13,-74.359896,39.4140055,5700 CALVERT AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_202_14,-74.378075,39.398088,228 N OXFORD AVE,VENTNOR CITY,19,2018,1,RES1,3001 -0122_202_15,-74.74978432,39.45299844,226 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_202_16,-74.5079135,39.4889745,224 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_202_17,-74.47100085,39.48851504,222 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_202_18,-74.68863636,39.35574626,220 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_202_19,-74.48899715,39.35025985,218 N OXFORD AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_202_2,-74.80907358,39.63396615,203 N DUDLEY AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_202_20,-74.49514626,39.33526958,216 N OXFORD AVE,VENTNOR CITY,17,1978,1,RES3A,3001 -0122_202_21,-74.50326637,39.32742882,212 N OXFORD AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_202_22,-74.41518167,39.36520899,208 N OXFORD AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_202_23,-74.80037601,39.64325883,206 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_202_24,-74.9192725,39.566647,204 N OXFORD AVE,VENTNOR CITY,,1940,1,RES1,3001 -0122_202_25,-74.62650593,39.46353166,5701 MONMOUTH AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_202_26,-74.9401915,39.5152705,5703 MONMOUTH AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_202_27,-74.91977285,39.49873725,5707 MONMOUTH AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_202_5,-74.80417509,39.66518004,209 N DUDLEY AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_202_6,-74.50846277,39.32754912,211 N DUDLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_202_7,-74.49618297,39.33563516,215 N DUDLEY AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_202_8,-74.764458,39.2994955,217 N DUDLEY AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_202_9,-74.4998235,39.4908655,219 N DUDLEY AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_203_1,-74.626265,39.3620865,201 N DORSET AVE,VENTNOR CITY,17,2003,2,RES1,3001 -0122_203_10,-74.677255,39.355527,219 N DORSET AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_203_11,-74.4967435,39.4933565,5800 CALVERT AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_203_13,-74.48913482,39.33829802,228 N DUDLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_203_14,-74.50198533,39.330124,226 N DUDLEY AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_203_16,-74.94367068,39.52355944,220 N DUDLEY AVE,VENTNOR CITY,45,1962,2,RES1,3002 -0122_203_17,-74.9659852,39.51251301,218 N DUDLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_203_18,-74.62259398,39.43957996,214 N DUDLEY AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_203_19,-74.91345863,39.51397982,212 N DUDLEY AVE,VENTNOR CITY,16,1950,1,RES1,3001 -0122_203_2,-74.4384435,39.3691945,203 N DORSET AVE,VENTNOR CITY,45,1925,2,RES1,3001 -0122_203_20,-74.8626335,39.595508,210 N DUDLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_203_21,-74.77609233,39.62790759,204 N DUDLEY AVE,VENTNOR CITY,45,1940,1,RES1,3001 -0122_203_22,-74.44145446,39.37125782,5803 MONMOUTH AVE,VENTNOR CITY,16,1955,1,RES1,3001 -0122_203_3,-74.7652945,39.6377045,205 N DORSET AVE,VENTNOR CITY,45,1925,2,RES1,3001 -0122_203_5,-74.6251595,39.441142,209 N DORSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_203_6,-74.943107,39.524968,211 N DORSET AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_203_7,-74.827784,39.64962,213 N DORSET AVE,VENTNOR CITY,17,1963,2,RES1,3001 -0122_203_8,-74.50417283,39.3301765,215 N DORSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_203_9,-74.48838852,39.33739336,217 N DORSET AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_204_1,-74.8677585,39.498281,201 N DERBY AVE,VENTNOR CITY,,1958,1,RES1,3002 -0122_204_11,-74.5033365,39.328946,220 N DORSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_204_12,-74.818703,39.649621,218 N DORSET AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_204_13,-74.94187401,39.52636667,216 N DORSET AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_204_14,-74.62919762,39.43965833,214 N DORSET AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_204_15,-74.80670037,39.63839664,212 N DORSET AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_204_16,-74.79089016,39.61095599,210 N DORSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_204_17,-74.43714658,39.37001519,208 N DORSET AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_204_18,-74.65660423,39.35919639,206 N DORSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_204_19,-74.6329325,39.4079505,202 N DORSET AVE,VENTNOR CITY,,1980,1,RES1,3001 -0122_204_2,-74.6582675,39.511221,205 N DERBY AVE,VENTNOR CITY,16,1929,1,RES1,3001 -0122_204_20,-74.64568777,39.53094118,200 N DORSET AVE,VENTNOR CITY,,1980,1,RES1,3001 -0122_204_3,-74.6278005,39.3919305,207 N DERBY AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_204_4,-74.62833868,39.41489852,211 N DERBY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_204_6,-74.37286013,39.40602266,223 N DERBY AVE,VENTNOR CITY,47,1940,2,RES1,3001 -0122_204_7,-74.78697912,39.60710436,225 N DERBY AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_204_8,-74.908173,39.4801245,229 N DERBY AVE,VENTNOR CITY,45,1915,2,RES1,3001 -0122_204_9,-74.6947015,39.449209,233 N DERBY AVE,VENTNOR CITY,17,1945,2,RES3A,3002 -0122_205_1,-74.58180223,39.59921466,NE BATON ROUGE AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_207_2,-74.65718476,39.55192492,N AUSTIN AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_21_2,-74.418571,39.369028,105 S CAMBRIDGE AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_21_3,-74.5811352,39.42395304,103 S CAMBRIDGE AVE,VENTNOR CITY,16,1927,1,RES1,3001 -0122_21_4,-74.62285002,39.43209551,101 S CAMBRIDGE AVE,VENTNOR CITY,18,1890,1,RES1,3001 -0122_21_5,-74.628263,39.4623245,100 S CORNWALL AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_21_6,-74.54570655,39.46133825,102 S CORNWALL AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_21_7,-74.654361,39.4054015,104 S CORNWALL AVE,VENTNOR CITY,19,2012,1,RES1,3001 -0122_211_1,-74.625931,39.358102,5403 CALVERT AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_211_10,-74.64519372,39.37241519,5400 BALFOUR AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_211_11,-74.59369236,39.43239878,316 N SURREY AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_211_12,-74.5904065,39.407664,314 N SURREY AVE,VENTNOR CITY,17,1962,1,RES3A,3001 -0122_211_13,-74.70700438,39.48159301,312 N SURREY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_211_14,-74.63714624,39.44444693,310 N SURREY AVE,VENTNOR CITY,17,2016,1,RES1,3001 -0122_211_15,-74.5487035,39.47549,308 N SURREY AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_211_17,-74.59957244,39.3707067,304 N SURREY AVE,VENTNOR CITY,18,2006,1,RES1,3001 -0122_211_18,-74.54243255,39.39185158,302 N SURREY AVE,VENTNOR CITY,16,1962,1,RES1,3001 -0122_211_19,-74.80787982,39.31763892,5401 CALVERT AVE,VENTNOR CITY,17,1960,1,RES3A,3001 -0122_211_2,-74.76972676,39.31143486,303 N SUFFOLK AVE,VENTNOR CITY,,1950,1,RES3A,3001 -0122_211_3,-74.55262488,39.38981135,305 N SUFFOLK AVE,VENTNOR CITY,17,2014,1,RES1,3001 -0122_211_4,-74.603658,39.370234,307 N SUFFOLK AVE,VENTNOR CITY,17,1969,1,RES1,3001 -0122_211_5,-74.561569,39.4114955,309 N SUFFOLK AVE,VENTNOR CITY,17,2001,1,RES1,3001 -0122_211_6,-74.56003143,39.47759118,311 N SUFFOLK AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_211_7,-74.63115409,39.43829381,313 N SUFFOLK AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_211_8,-74.5884895,39.4113645,317 N SUFFOLK AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_211_9,-74.59353118,39.43509843,5402 BALFOUR AVE,VENTNOR CITY,17,1960,1,RES1,3004 -0122_212_1,-74.566036,39.3604985,5501 CALVERT AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_212_10,-74.66598753,39.35952334,309 N SOMERSET AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_212_11,-74.54234148,39.38164617,311 N SOMERSET AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_212_13,-74.58148116,39.36879864,315 N SOMERSET AVE,VENTNOR CITY,45,1945,2,RES1,3001 -0122_212_14,-74.6095455,39.383547,317 N SOMERSET AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_212_15,-74.53315657,39.46982232,323 N SOMERSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_212_16,-74.56828921,39.47988403,325 N SOMERSET AVE,VENTNOR CITY,16,1958,1,RES1,3001 -0122_212_17,-74.6785775,39.447305,327 N SOMERSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_212_19,-74.54748287,39.40424787,316 N SUFFOLK AVE,VENTNOR CITY,17,2016,1,RES1,3001 -0122_212_2,-74.56439065,39.35977119,5505 CALVERT AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_212_20,-74.60276851,39.37396014,314 N SUFFOLK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_212_21,-74.54247812,39.39630915,312 N SUFFOLK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_212_22,-74.540646,39.389774,310 N SUFFOLK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_212_23,-74.53867287,39.38201738,308 N SUFFOLK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_212_25,-74.59865292,39.3455015,302 N SUFFOLK AVE,VENTNOR CITY,45,1928,2,RES1,3001 -0122_212_3,-74.6153378,39.32020384,5507 CALVERT AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_212_4,-74.60260676,39.32234366,5509 CALVERT AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_212_5,-74.59197485,39.32656894,5511-13 CALVERT AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_212_6,-74.56818698,39.35356579,301 N SOMERSET AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_212_7,-74.58288194,39.34007477,303 N SOMERSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_212_8,-74.58856379,39.35304609,305 N SOMERSET AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_212_9,-74.6313595,39.3654525,307 N SOMERSET AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_213_1,-74.51745784,39.46408697,301 N OXFORD AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_213_10,-74.533104,39.470203,328 N SOMERSET AVE,VENTNOR CITY,17,1962,1,RES1,3002 -0122_213_11,-74.5376345,39.4071025,326 N SOMERSET AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_213_12,-74.58619006,39.38133134,324 N SOMERSET AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_213_13,-74.5516285,39.381259,322 N SOMERSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_213_14,-74.6344415,39.364628,316 N SOMERSET AVE,VENTNOR CITY,17,1960,1,COM1,3004 -0122_213_17,-74.61067146,39.3061374,304 N SOMERSET AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_213_18,-74.47120917,39.49411544,5601 CALVERT AVE,VENTNOR CITY,17,1971,1,RES1,3001 -0122_213_2,-74.60501107,39.31506123,305 N OXFORD AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_213_3.01,-74.5869225,39.328199,307 N OXFORD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_213_4,-74.6089819,39.32309964,309 N OXFORD AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_213_5,-74.597457,39.340668,311 N OXFORD AVE,VENTNOR CITY,17,1970,1,RES1,3004 -0122_213_6,-74.67409738,39.34510115,321 N OXFORD AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_213_7,-74.53201409,39.38736631,323 N OXFORD AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_213_8,-74.5980392,39.37164581,325 N OXFORD AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_213_9,-74.60142196,39.39875465,327 N OXFORD AVE,VENTNOR CITY,18,1958,1,RES1,3001 -0122_214_1,-74.5208795,39.3879655,5709 CALVERT AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_214_10,-74.61932238,39.36311547,326 N OXFORD AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_214_11,-74.58552515,39.33493939,324 N OXFORD AVE,VENTNOR CITY,17,1945,1,RES3A,3001 -0122_214_12,-74.6063925,39.3302275,322 N OXFORD AVE,VENTNOR CITY,17,1990,1,RES3B,3001 -0122_214_13,-74.591494,39.325295,318 N OXFORD AVE,VENTNOR CITY,16,1946,1,RES1,3001 -0122_214_14,-74.4642775,39.5469065,316 N OXFORD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_214_15,-74.4554689,39.48965445,314 N OXFORD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_214_16,-74.52022565,39.46856696,312 N OXFORD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_214_17,-74.50678585,39.44529196,310 N OXFORD AVE,VENTNOR CITY,17,2015,1,RES1,3001 -0122_214_18,-74.47393609,39.44426578,308 N OXFORD AVE,VENTNOR CITY,17,2017,1,RES1,3001 -0122_214_19,-74.5163685,39.413886,5707 CALVERT AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_214_3,-74.593089,39.3129925,311 N DUDLEY AVE,VENTNOR CITY,17,1959,1,RES1,3001 -0122_214_4,-74.61075998,39.32837334,321 N DUDLEY AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_214_5,-74.59266964,39.3352114,323 N DUDLEY AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_214_6,-74.62617426,39.3564266,325 N DUDLEY AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_214_7,-74.545844,39.37578,327 N DUDLEY AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_214_8,-74.53236133,39.40020333,5700 BALFOUR AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_214_9,-74.548008,39.3718525,328 N OXFORD AVE,VENTNOR CITY,19,2018,1,RES1,3001 -0122_215_1,-74.4100565,39.3830595,301 N DORSET AVE,VENTNOR CITY,,1975,1,RES1,3001 -0122_215_3.01,-74.471205,39.4867385,313 N DORSET AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_215_3.03,-74.60033986,39.34704051,5800 BALFOUR AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_215_4,-74.5991393,39.32387216,324 N DUDLEY AVE,VENTNOR CITY,17,2016,1,RES1,3001 -0122_215_5,-74.59357479,39.31567761,312 N DUDLEY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_215_7,-74.38104621,39.41651196,302 N DUDLEY AVE,VENTNOR CITY,17,1957,1,RES1,3001 -0122_216_1,-74.4661925,39.358177,5903 CALVERT AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_216_10,-74.520379,39.4085515,320 N DORSET AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_216_11,-74.42375832,39.37101705,306 N DORSET AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_216_12,-74.79143193,39.44157627,304 N DORSET AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_216_13,-74.507022,39.4830665,302 N DORSET AVE,VENTNOR CITY,,1915,1,RES1,3001 -0122_216_2,-74.51816877,39.31875374,5905 CALVERT AVE,VENTNOR CITY,45,1952,2,RES1,3001 -0122_216_4,-74.53351246,39.38351184,311 N DERBY AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_216_5.01,-74.4048157,39.3800688,313 N DERBY AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_216_5.03,-74.523563,39.3847325,316 N DORSET AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_216_5.04,-74.370622,39.41075,308 N DORSET AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_216_7,-74.47436471,39.48108602,321 N DERBY AVE,VENTNOR CITY,17,1954,1,GOV1,3004 -0122_216_9,-74.497029,39.4479185,322 N DORSET AVE,VENTNOR CITY,17,1958,1,GOV1,3004 -0122_217_1,-74.76002902,39.64036184,6003 CALVERT AVE,VENTNOR CITY,17,1953,1,GOV1,3004 -0122_217_10,-74.52976863,39.38235543,316 N DERBY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_217_11,-74.3734505,39.414455,314 N DERBY AVE,VENTNOR CITY,17,1985,1,GOV1,3004 -0122_217_12,-74.37482341,39.39755016,312 N DERBY AVE,VENTNOR CITY,17,1983,1,RES1,3001 -0122_217_13,-74.4621695,39.527504,310 N DERBY AVE,VENTNOR CITY,17,1996,1,RES1,3001 -0122_217_14,-74.5483205,39.374131,308 N DERBY AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_217_2,-74.43078783,39.3675591,307 N BURGHLEY AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_217_3,-74.455625,39.353655,311 N BURGHLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_217_4,-74.5490265,39.3734185,329 N BURGHLEY AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_217_5,-74.461381,39.5230785,333 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_217_6,-74.37842685,39.40150556,335 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_217_7,-74.374899,39.416514,337 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_217_8,-74.52930572,39.39793039,339 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_217_9,-74.5035315,39.4308045,318 N DERBY AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_218_1,-74.8116185,39.6319355,301 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_10,-74.37689458,39.3980697,314 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3002 -0122_218_11,-74.5006745,39.4881435,312 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_12,-74.67053153,39.34957667,310 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,COM1,3004 -0122_218_13,-74.524092,39.317775,308 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_14,-74.52019285,39.31667494,306 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_15,-74.743074,39.643437,304 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_16,-74.62763735,39.43819186,302 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_2,-74.669161,39.453665,303 N CORNWALL AVE,VENTNOR CITY,,1958,1,RES1,3001 -0122_218_3,-74.78712847,39.67809056,305 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_4,-74.48973681,39.33378002,307 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_5,-74.46853596,39.36456502,309 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_6,-74.76669634,39.31354714,311 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_7,-74.5294315,39.4979505,315 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_8,-74.38846304,39.39441961,317 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_218_9,-74.37380065,39.4155444,316 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_1,-74.827801,39.569261,6103 CALVERT AVE,VENTNOR CITY,17,1959,1,REL1,3004 -0122_219_10,-74.3764705,39.40134413,314 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_11,-74.52080218,39.32236145,312 N CORNWALL AVE,VENTNOR CITY,17,1958,1,GOV1,3004 -0122_219_12,-74.44033507,39.35753442,310 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_13,-74.890813,39.5581125,308 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES3A,3001 -0122_219_14,-74.60494616,39.50117953,306 N CORNWALL AVE,VENTNOR CITY,17,1958,1,COM4,3004 -0122_219_15,-74.82091593,39.61756676,304 N CORNWALL AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_219_16,-74.8703189,39.56280727,302 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_2,-74.8633075,39.563655,303 N CAMBRIDGE AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_3,-74.802218,39.6349615,305 N CAMBRIDGE AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_4,-74.62309817,39.44472127,307 N CAMBRIDGE AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_5,-74.88733991,39.59784004,309 N CAMBRIDGE AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_6,-74.43704398,39.3655703,311 N CAMBRIDGE AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_7,-74.52283552,39.31808217,315 N CAMBRIDGE AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_219_8,-74.54993475,39.37633041,317 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_219_9,-74.49798292,39.50053055,316 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_22_10,-74.58889194,39.33514858,112 S CAMBRIDGE AVE,VENTNOR CITY,20,2014,1,RES1,3001 -0122_22_11,-74.60089,39.331064,114 S CAMBRIDGE AVE,VENTNOR CITY,20,1965,1,GOV1,3004 -0122_22_2,-74.60182687,39.34743339,109 S HARVARD AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_22_3,-74.62607873,39.36102414,107 S HARVARD AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_22_4,-74.5417195,39.3931725,106 S CAMBRIDGE AVE,VENTNOR CITY,17,1930,2,RES1,3001 -0122_22_5,-74.64305473,39.36914663,101 S HARVARD AVE,VENTNOR CITY,19,1917,1,RES1,3001 -0122_22_6,-74.38315755,39.39517018,102 S CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_22_7,-74.63627006,39.36936331,104 S CAMBRIDGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_22_8,-74.5387325,39.375375,108 S CAMBRIDGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_22_9,-74.65615634,39.34547901,110 S CAMBRIDGE AVE,VENTNOR CITY,20,2008,1,IND1,3002 -0122_220_1,-74.64511649,39.53298317,301 N HARVARD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_220_10,-74.52035442,39.32104683,320 N CAMBRIDGE AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_220_11,-74.44182943,39.36690182,318 N CAMBRIDGE AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_220_12,-74.79037433,39.64340519,316 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,REL1,3004 -0122_220_13,-74.6335665,39.46487,314 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_220_14,-74.8044,39.6335655,312 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_220_15,-74.756938,39.59882,308 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_220_16,-74.4372455,39.372082,306 N CAMBRIDGE AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_220_17,-74.637381,39.342418,304 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_220_18,-74.641874,39.3705555,6201 CALVERT AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_220_2,-74.60095431,39.36642835,303 N HARVARD AVE,VENTNOR CITY,18,2008,1,AGR1,3001 -0122_220_3,-74.79623863,39.53324324,305 N HARVARD AVE,VENTNOR CITY,18,2008,1,RES1,3001 -0122_220_4,-74.37201067,39.40445599,309 N HARVARD AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_220_5,-74.79256595,39.63558301,311 N HARVARD AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_220_6,-74.93282429,39.48967572,315 N HARVARD AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_220_7,-74.700295,39.487281,317 N HARVARD AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_220_8,-74.786733,39.66114,319 N HARVARD AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_220_9,-74.523515,39.3170305,321 N HARVARD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_221_14.01,-74.58988094,39.35548668,506 N HARVARD AVE,VENTNOR CITY,18,1980,1,RES1,3001 -0122_221_14.02,-74.54657427,39.37033164,508 N HARVARD AVE,VENTNOR CITY,19,1996,1,RES1,3001 -0122_221_14.04,-74.563722,39.413084,512 N HARVARD AVE,VENTNOR CITY,17,1989,1,GOV1,3004 -0122_221_14.05,-74.570232,39.474494,514 N HARVARD AVE,VENTNOR CITY,17,1965,1,EDU1,3004 -0122_221_2,-74.61701766,39.62168017,308 N HARVARD AVE,VENTNOR CITY,16,1960,1,GOV1,3004 -0122_221_3,-74.79226344,39.52763681,310 N HARVARD AVE,VENTNOR CITY,19,2006,1,RES1,3001 -0122_221_4,-74.7480085,39.5948755,316 N HARVARD AVE,VENTNOR CITY,20,2001,1,RES1,3001 -0122_221_8,-74.75517141,39.44887276,408 N HARVARD AVE,VENTNOR CITY,18,1999,1,RES1,3001 -0122_221_9.01,-74.40150182,39.38951875,410 N HARVARD AVE,VENTNOR CITY,17,1982,1,RES1,3001 -0122_221_9.02,-74.44366547,39.37190432,412 N HARVARD AVE,VENTNOR CITY,18,1982,1,RES1,3001 -0122_23_1,-74.56405841,39.4166897,119 S SACRAMENTO AVE,VENTNOR CITY,20,2007,1,RES1,3001 -0122_23_10,-74.68851501,39.36344749,104 S HARVARD AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_23_11,-74.6229935,39.3126495,106 S HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_23_12,-74.58094012,39.33917407,108 S HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_23_13,-74.60584984,39.3198705,110 S HARVARD AVE,VENTNOR CITY,18,1910,1,RES1,3001 -0122_23_14,-74.595398,39.313888,112 S HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_23_15,-74.46755817,39.49076347,114 S HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_23_2,-74.51466984,39.44042301,117 S SACRAMENTO AVE,VENTNOR CITY,20,1950,1,GOV1,3004 -0122_23_3,-74.49559043,39.49105277,115 S SACRAMENTO AVE,VENTNOR CITY,20,2007,1,RES1,3001 -0122_23_4,-74.61351272,39.31192641,109 S SACRAMENTO AVE,VENTNOR CITY,17,1927,1,AGR1,3001 -0122_23_5,-74.60800885,39.32957098,107 S SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_23_6,-74.591916,39.3346385,105 S SACRAMENTO AVE,VENTNOR CITY,20,2015,1,RES1,3001 -0122_23_7,-74.6545071,39.34464031,103 S SACRAMENTO AVE,VENTNOR CITY,17,1912,1,GOV1,3004 -0122_23_8,-74.7951435,39.3606615,101 S SACRAMENTO AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_23_9,-74.543245,39.378899,6204 ATLANTIC AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_231_1,-74.93340311,39.48877228,207 N WISSAHICKON AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_231_11,-74.50535157,39.42452181,225 N WISSAHICKON AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_231_12,-74.6240905,39.412843,227 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_231_13,-74.46283052,39.35884362,229 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_231_2,-74.7802838,39.67239693,209 N WISSAHICKON AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_231_3,-74.48746757,39.33426834,211 N WISSAHICKON AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_231_4,-74.515852,39.321878,213 N WISSAHICKON AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_231_5,-74.47905125,39.33754936,215 N WISSAHICKON AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_231_7,-74.42728562,39.37884798,219 N WISSAHICKON AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_231_8,-74.52197258,39.39189377,221 N WISSAHICKON AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_232_1,-74.70199667,39.57816816,6803 VENTNOR GARDENS,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_10,-74.3599475,39.4115285,225 N NEWARK AVE,VENTNOR CITY,17,2015,1,RES1,3001 -0122_232_11,-74.6205335,39.366569,227 N NEWARK AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_13,-74.50015688,39.5018618,226 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_14,-74.37362734,39.41555954,224 N WISSAHICKON AVE,VENTNOR CITY,16,1950,1,RES1,3001 -0122_232_15,-74.39781083,39.38759843,222 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_16,-74.44674723,39.35697263,220 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_17,-74.46027182,39.35034554,218 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3004 -0122_232_18,-74.50828462,39.32863058,216 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_19,-74.7950255,39.662111,214 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_2,-74.6389575,39.382996,209 N NEWARK AVE,VENTNOR CITY,17,1955,1,GOV1,3004 -0122_232_20,-74.88486076,39.59796104,212 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_21,-74.81387165,39.63615447,210 N WISSAHICKON AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_232_22.01,-74.76154055,39.6302098,208 N WISSAHICKON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_22.02,-74.72805115,39.58700497,206 N WISSAHICKON AVE,VENTNOR CITY,17,2003,1,GOV1,3004 -0122_232_3,-74.875347,39.5928295,211 N NEWARK AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_232_4,-74.93955674,39.51558853,213 N NEWARK AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_232_5,-74.7976905,39.640025,215 N NEWARK AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_232_6,-74.49752355,39.33245018,217 N NEWARK AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_232_7,-74.51010894,39.33115085,219 N NEWARK AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_232_8,-74.482256,39.351186,221 N NEWARK AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_232_9,-74.50391773,39.33639318,223 N NEWARK AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_233_1,-74.46358949,39.49301166,209 N ROSBOROUGH AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_233_10,-74.52362033,39.31773151,227 N ROSBOROUGH AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_233_11,-74.48131,39.353113,229 N ROSBOROUGH AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_233_12,-74.43670353,39.36870568,228 N NEWARK AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_233_13,-74.4626718,39.35389917,226 N NEWARK AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_233_14,-74.48035554,39.34049768,224 N NEWARK AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_233_15,-74.4985719,39.32799123,222 N NEWARK AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_233_16,-74.427461,39.3665995,220 N NEWARK AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_233_17,-74.722838,39.639618,218 N NEWARK AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_233_18,-74.8127366,39.63724014,216 N NEWARK AVE,VENTNOR CITY,17,2017,1,RES1,3001 -0122_233_19,-74.78641662,39.61652334,214 N NEWARK AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_233_2,-74.472666,39.3430745,211 N ROSBOROUGH AVE,VENTNOR CITY,17,1943,1,RES1,3001 -0122_233_20,-74.829058,39.567559,212 N NEWARK AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_233_21,-74.6474005,39.530323,210 N NEWARK AVE,VENTNOR CITY,17,1948,1,RES3B,3001 -0122_233_22,-74.4681565,39.34467872,208 N NEWARK AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_233_3,-74.57616078,39.35262718,213 N ROSBOROUGH AVE,VENTNOR CITY,17,1939,1,RES1,3001 -0122_233_4,-74.8256615,39.5444105,215 N ROSBOROUGH AVE,VENTNOR CITY,17,1946,1,GOV1,3004 -0122_233_5,-74.6275975,39.395686,217 N ROSBOROUGH AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_233_6,-74.81338011,39.63101691,219 N ROSBOROUGH AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_233_7,-74.94231275,39.52450264,221 N ROSBOROUGH AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_233_8,-74.814911,39.6560895,223 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_233_9,-74.5088865,39.33179567,225 N ROSBOROUGH AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_234_1,-74.84660576,39.46658887,211 N WYOMING AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_234_10,-74.50055083,39.33175452,231 N WYOMING AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_234_11,-74.5210295,39.3175085,230 N ROSBOROUGH AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_234_12,-74.50153044,39.33080234,228 N ROSBOROUGH AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_234_13,-74.82899643,39.64186064,226 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_234_14,-74.95388946,39.52997824,224 N ROSBOROUGH AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_234_15,-74.79865269,39.6351852,222 N ROSBOROUGH AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_234_16,-74.6529675,39.4008355,220 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_234_17,-74.829057,39.5691055,218 N ROSBOROUGH AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_234_18,-74.68792585,39.50623054,216 N ROSBOROUGH AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_234_19,-74.46686856,39.34296268,214 N ROSBOROUGH AVE,VENTNOR CITY,17,1941,1,RES1,3001 -0122_234_2,-74.6396365,39.5360015,213 N WYOMING AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_234_20,-74.46942174,39.49475153,212 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_234_21,-74.5417365,39.556636,208 N ROSBOROUGH AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_234_3,-74.476327,39.493426,215 N WYOMING AVE.,VENTNOR CITY,17,1946,1,RES1,3001 -0122_234_4,-74.5877885,39.3498635,217 N WYOMING AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_234_5,-74.81626794,39.52223779,221 N WYOMING AVE,VENTNOR CITY,17,2014,1,RES1,3001 -0122_234_6,-74.63783433,39.3820921,223 N WYOMING AVE,VENTNOR CITY,17,1945,1,GOV1,3004 -0122_234_7,-74.87624251,39.59616303,225 N WYOMING AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_234_8,-74.9506105,39.4975265,227 N WYOMING AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_234_9,-74.8310275,39.6451495,229 N WYOMING AVE,VENTNOR CITY,17,1941,1,RES1,3001 -0122_235_1,-74.6371998,39.52309295,7003 CALVERT AVE,VENTNOR CITY,17,1970,1,GOV1,3004 -0122_235_10.01,-74.65707297,39.54087161,222 N WYOMING AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_235_10.02,-74.79358195,39.62223384,209 1/2 N LAFAYETTE AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_235_11,-74.650408,39.5257845,220 N WYOMING AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_235_12,-74.46385177,39.49937702,218 N WYOMING AVE,VENTNOR CITY,17,1947,1,EDU1,3004 -0122_235_2,-74.5068472,39.48165297,209 N LAFAYETTE AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_235_3,-74.63576966,39.55006753,211 N LAFAYETTE AVE,VENTNOR CITY,18,2001,1,RES1,3001 -0122_235_4,-74.78872333,39.637542,215 N LAFAYETTE AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_235_5,-74.92086983,39.48953074,219 N LAFAYETTE AVE,VENTNOR CITY,17,1979,1,COM4,3004 -0122_235_6,-74.79359518,39.6402792,230 N WYOMING AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_235_7,-74.88541033,39.46197026,228 N WYOMING AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_235_8.01,-74.77482061,39.62614437,226 N WYOMING AVE,VENTNOR CITY,17,1944,1,RES1,3001 -0122_235_8.02,-74.74875984,39.63509148,213 N LAFAYETTE AVE,VENTNOR CITY,17,1965,1,GOV1,3004 -0122_235_9,-74.8691385,39.5692545,224 N WYOMING AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_236_1,-74.51053063,39.43807083,201 N SWARTHMORE AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_236_10,-74.38014181,39.40038653,7036-7038 CALVERT AVE,VENTNOR CITY,17,1969,1,RES1,3001 -0122_236_11,-74.57429824,39.42874205,7032-7034 CALVERT AVE,VENTNOR CITY,45,1964,2,GOV1,3004 -0122_236_12,-74.62514853,39.41781532,7028-7030 CALVERT AVE,VENTNOR CITY,,1990,1,RES1,3001 -0122_236_13,-74.64885821,39.43195805,7024-7026 CALVERT AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_236_14,-74.5580775,39.4728755,7020-7022 CALVERT AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_236_15,-74.69496232,39.44831592,7016-7018 CALVERT AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_236_16,-74.7553535,39.430818,7012-7014 CALVERT,VENTNOR CITY,45,1960,2,RES1,3001 -0122_236_17,-74.76194049,39.44465903,7008-7010 CALVERT AVE,VENTNOR CITY,,1960,1,IND1,3002 -0122_236_18,-74.564495,39.3659515,7004-7006 CALVERT AVE,VENTNOR CITY,45,1968,2,RES1,3001 -0122_236_19,-74.558986,39.363437,7000-7002 CALVERT AVE,VENTNOR CITY,45,1975,2,RES1,3001 -0122_236_2,-74.50732488,39.46116843,203-205 N SWARTHMORE AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_236_20,-74.71581032,39.43679101,7001-7003 VENTNOR GARDENS,VENTNOR CITY,45,1980,2,RES1,3001 -0122_236_21,-74.63644233,39.44323499,7005-7007 VENTNOR GARDENS,VENTNOR CITY,45,1968,2,GOV1,3004 -0122_236_22,-74.565014,39.474307,7009-7011 VENTNOR GARDENS,VENTNOR CITY,45,1975,2,RES1,3001 -0122_236_23,-74.69405444,39.42060665,7013-7015 VENTNOR GARDENS,VENTNOR CITY,,1964,1,GOV1,3004 -0122_236_24,-74.63197542,39.41693727,7017-7019 VENTNOR GD,VENTNOR CITY,45,1970,2,GOV1,3004 -0122_236_25,-74.58653782,39.40811248,7021-7023 VENTNOR GD,VENTNOR CITY,45,1974,2,RES1,3001 -0122_236_26,-74.395269,39.388668,7025-7027 VENTNOR GD,VENTNOR CITY,45,1970,2,RES1,3001 -0122_236_27,-74.59624233,39.42934651,7029-7031 VENTNOR GD,VENTNOR CITY,45,1970,2,RES1,3001 -0122_236_28,-74.53457908,39.37285784,7033-7035 VENTNOR GARDENS,VENTNOR CITY,45,1970,2,RES1,3001 -0122_236_29,-74.58061597,39.3442975,7037-7039 VENTNOR GARDENS,VENTNOR CITY,,1970,1,RES1,3001 -0122_236_3,-74.58204436,39.32566241,207-209 N SWARTHMORE AVE,VENTNOR CITY,45,1971,2,RES1,3001 -0122_236_30,-74.5848815,39.326156,7041-7043 VENTNOR GD,VENTNOR CITY,45,1970,2,RES1,3001 -0122_236_31,-74.44714869,39.4843863,7045-7047 VENTNOR GD,VENTNOR CITY,45,1970,2,RES1,3001 -0122_236_4,-74.608906,39.3279615,211-213 N SWARTHMORE AVE,VENTNOR CITY,,1960,1,GOV1,3004 -0122_236_5,-74.58468593,39.34343019,215-217 N SWARTHMORE AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_236_6,-74.64853496,39.34150784,219-221 N SWARTHMORE AVE,VENTNOR CITY,45,1959,2,RES1,3001 -0122_236_7,-74.5478306,39.36904475,223-225 N SWARTHMORE AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_236_8,-74.59090635,39.42761969,7044-7046 CALVERT AVE,VENTNOR CITY,45,1964,2,RES1,3001 -0122_236_9,-74.61515159,39.42972821,7040-7042 CALVERT AVE,VENTNOR CITY,45,1964,2,RES1,3001 -0122_237_1,-74.79687435,39.41412998,301 & 303 WINDSOR DR,VENTNOR CITY,45,1980,2,RES1,3001 -0122_237_10,-74.50849,39.4746035,306 N LAFAYETTE AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_237_11,-74.639712,39.5268495,304 N LAFAYETTE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_237_12,-74.86221659,39.44824282,302 N LAFAYETTE AVE,VENTNOR CITY,17,1974,1,GOV1,3004 -0122_237_13,-74.59435206,39.3404634,300 N LAFAYETTE AVE,VENTNOR CITY,17,2003,1,RES1,3001 -0122_237_2,-74.60917968,39.34894319,305 WINDSOR DRIVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_237_3,-74.59710584,39.52046053,307 WINDSOR DRIVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_237_4,-74.464341,39.3464435,309 WINDSOR DRIVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_237_5,-74.46643118,39.34510848,311 WINDSOR DRIVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_237_6,-74.69586487,39.50763477,313 WINDSOR DRIVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_237_7,-74.61649127,39.43004254,7100 BALFOUR AVE,VENTNOR CITY,17,1970,1,RES1,3004 -0122_237_8,-74.60763532,39.59246951,310 N LAFAYETTE AVE,VENTNOR CITY,17,1973,1,RES1,3001 -0122_237_9,-74.77517357,39.62695417,308 N LAFAYETTE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_238_1,-74.63539858,39.41116073,301-303 WALDON DRIVE,VENTNOR CITY,45,1990,2,RES1,3001 -0122_238_10,-74.72488318,39.45580758,306 WINDSOR DRIVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_238_11,-74.69510881,39.50398489,304 WINDSOR DRIVE,VENTNOR CITY,17,1979,1,GOV1,3004 -0122_238_12,-74.5529625,39.4711085,300 & 302 WINDSOR DR,VENTNOR CITY,45,1980,2,RES1,3001 -0122_238_2,-74.598879,39.4370185,305 WALDON DRIVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_238_3,-74.669405,39.4616945,307 WALDON DRIVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_238_4,-74.74346645,39.45272672,309 WALDON DRIVE,VENTNOR CITY,17,1988,1,RES1,3001 -0122_238_5,-74.60655932,39.34659401,311 WALDON DRIVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_238_6,-74.5878825,39.5100945,313 WALDON DRIVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_238_7,-74.468644,39.4923815,312 WINDSOR DRIVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_238_8,-74.64659744,39.51036717,310 WINDSOR DRIVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_238_9,-74.79078596,39.46118519,308 WINDSOR DRIVE,VENTNOR CITY,17,1989,1,RES1,3001 -0122_239_1,-74.62399596,39.39343369,300-302 WALDON DRIVE,VENTNOR CITY,45,1983,2,RES1,3001 -0122_239_2,-74.5534175,39.42624,304-306 WALDON DRIVE,VENTNOR CITY,,1975,1,RES1,3001 -0122_239_3,-74.62029421,39.42509705,308-310 WALDON DRIVE,VENTNOR CITY,45,1964,2,RES1,3001 -0122_239_4,-74.549483,39.468175,312-314 WALDON DRIVE,VENTNOR CITY,45,1967,2,RES1,3001 -0122_239_5,-74.691265,39.449514,316-318 WALDON DRIVE,VENTNOR CITY,,1978,1,RES1,3001 -0122_239_6,-74.853394,39.3719895,320-322 WALDON DRIVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_239_7,-74.60536769,39.35002545,324-326 WALDON DRIVE,VENTNOR CITY,,1985,1,RES1,3001 -0122_24_1,-74.5814,39.414264,115 S PRINCETON AVE,VENTNOR CITY,18,1915,1,RES1,3001 -0122_24_10,-74.4508095,39.4890755,112 S SACRAMENTO AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_24_11,-74.46193188,39.4667567,114 S SACRAMENTO AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_24_12,-74.50747353,39.44740984,116 S SACRAMENTO AVE,VENTNOR CITY,18,2014,1,RES1,3001 -0122_24_13,-74.56628731,39.41212705,118 S SACRAMENTO AVE,VENTNOR CITY,20,2007,1,RES1,3001 -0122_24_2,-74.50443,39.425705,111 S PRINCETON AVE,VENTNOR CITY,18,1917,1,RES1,3001 -0122_24_3,-74.48568164,39.49452055,107 S PRINCETON AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_24_4,-74.595041,39.3108465,105 S PRINCETON AVE,VENTNOR CITY,18,1925,1,RES1,3001 -0122_24_6,-74.59444169,39.35179447,100 S SACRAMENTO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_24_7,-74.5602431,39.3603637,104 S SACRAMENTO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_24_8,-74.60340353,39.32409284,106 S SACRAMENTO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_24_9,-74.593677,39.316364,108 S SACRAMENTO AVE,VENTNOR CITY,19,1920,1,RES1,3001 -0122_240_10,-74.54751187,39.36491886,210 N SWARTHMORE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_240_11,-74.60116221,39.30759485,208 N SWARTHMORE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_240_12,-74.45991873,39.48013505,206 N SWARTHMORE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_240_13,-74.51064299,39.41539385,204 N SWARTHMORE AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_240_14,-74.5898535,39.414803,202 N SWARTHMORE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_240_15,-74.58787695,39.37079918,200 N SWARTHMORE AVE,VENTNOR CITY,17,2007,1,RES1,3001 -0122_240_2,-74.61025148,39.37785975,203 N WASHINGTON AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_240_3,-74.46358227,39.46468285,205 N WASHINGTON AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_240_4,-74.48905539,39.4403727,207 N WASHINGTON AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_240_5,-74.48940621,39.4950583,209 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_240_6,-74.5897195,39.3197065,211 N WASHINGTON AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_240_7,-74.60388193,39.33139966,215 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_240_8,-74.57203448,39.36078552,217 N WASHINGTON AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_240_9,-74.59322,39.365197,212 N SWARTHMORE AVE,VENTNOR CITY,17,1998,1,RES1,3001 -0122_241_1,-74.54961821,39.38453799,301 N WASHINGTON AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_242_1,-74.59122722,39.3769561,204 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_242_2,-74.50659196,39.40601786,202 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_242_3,-74.49923458,39.33469465,7301 MONMOUTH AVE,VENTNOR CITY,45,1950,2,RES1,3001 -0122_242_4,-74.46428267,39.35880147,7303 MONMOUTH AVE,VENTNOR CITY,16,1950,1,RES1,3001 -0122_242_5,-74.5304075,39.4015745,7305 MONMOUTH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_242_6,-74.46206829,39.35237637,7307 MONMOUTH AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_242_7,-74.5163065,39.4019015,7309 MONMOUTH AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_242_8,-74.85563981,39.44115605,7311 MONMOUTH AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_243_1,-74.52206119,39.40819034,210 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_243_2,-74.59433146,39.38310535,212 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_243_3,-74.571726,39.412885,214 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_243_4,-74.4744445,39.4568305,216 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_243_5,-74.489595,39.4275965,218 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_243_6,-74.51022234,39.43630402,220 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_244_1,-74.50042137,39.33593163,207 N FREDERICKSBURG AVE,VENTNOR CITY,28,1915,1,GOV1,3004 -0122_244_2,-74.5236485,39.394981,209 N FREDERICKSBURG AVE,VENTNOR CITY,28,1915,1,RES1,3001 -0122_244_3,-74.5099025,39.4056005,211 N FREDERICKSBURG,VENTNOR CITY,28,1918,1,RES1,3001 -0122_244_6,-74.875311,39.490062,223 N FREDERICKSBURG,VENTNOR CITY,19,2018,1,RES1,3001 -0122_244_7,-74.88211307,39.4970083,225 N FREDERICKSBURG AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_244_8,-74.55582268,39.50950742,227 N FREDERICKSBURG,VENTNOR CITY,17,1915,1,RES1,3001 -0122_244_9,-74.55806821,39.53337951,229 N FREDERICKSBURG AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_245_1,-74.87858516,39.4631293,231 N FREDERICKSBURG AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_245_2,-74.83403431,39.48325884,237 N FREDERICKSBURG,VENTNOR CITY,18,1900,1,RES1,3001 -0122_245_3,-74.46572527,39.47289246,7314 CALVERT AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_245_4.01,-74.5051545,39.493945,7302 CALVERT AVENUE,VENTNOR CITY,17,1999,1,RES1,3001 -0122_245_4.02,-74.58553556,39.32359732,7300 CALVERT AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_245_5,-74.50044917,39.49770281,222 N WASHINGTON AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_246_1,-74.58099032,39.35753787,7301 CALVERT AVE,VENTNOR CITY,17,1962,1,RES2,3005 -0122_247_1,-74.83676869,39.48308003,301 N FREDERICKSBURG,VENTNOR CITY,17,1960,1,RES1,3001 -0122_247_2,-74.836977,39.482682,303 N FREDERICKSBURG,VENTNOR CITY,17,1963,1,RES1,3001 -0122_247_3,-74.82411429,39.49727553,305 N FREDERICKSBURG,VENTNOR CITY,17,1965,1,RES1,3001 -0122_247_4,-74.845792,39.4826445,307 N FREDERICKSBURG,VENTNOR CITY,17,1970,1,RES1,3001 -0122_247_5,-74.873027,39.4934945,309 N FREDERICKSBURG AVE,VENTNOR CITY,17,1967,1,GOV1,3004 -0122_247_6,-74.558622,39.527171,311 N FREDERICKSBURG,VENTNOR CITY,17,1970,1,RES1,3001 -0122_247_7,-74.55367879,39.52664252,313 N FREDERICKSBURG AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_247_8,-74.5597443,39.53533693,321 N FREDERICKSBURG,VENTNOR CITY,18,1962,1,RES1,3001 -0122_25_1,-74.55792846,39.41393784,114 S PRINCETON AVE,VENTNOR CITY,20,2015,1,RES1,3001 -0122_25_10,-74.52334252,39.41941132,108 S PRINCETON AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_25_11,-74.4910345,39.4381835,110 S PRINCETON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_25_2,-74.57479758,39.42900111,109 S PORTLAND AVE,VENTNOR CITY,19,2014,1,RES1,3001 -0122_25_3,-74.5078025,39.446723,107 S PORTLAND AVE.,VENTNOR CITY,20,1988,1,RES1,3001 -0122_25_4,-74.4634785,39.4645095,105 S PORTLAND AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_25_5,-74.462815,39.492092,103 S PORTLAND AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_25_6,-74.53454824,39.30601513,6306 ATLANTIC AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_25_7,-74.58130453,39.32906817,100 S PRINCETON AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_25_8,-74.51104,39.504325,102 S PRINCETON AVE,VENTNOR CITY,16,1925,1,RES1,3001 -0122_25_9,-74.44518465,39.48631696,106 S PRINCETON AVE,VENTNOR CITY,18,2012,1,RES1,3001 -0122_255_1,-74.81019933,39.37883085,5403 BALFOUR AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_255_10,-74.871361,39.5963995,5400 FREMONT AVE,VENTNOR CITY,17,1987,1,RES1,3001 -0122_255_12,-74.82057,39.5286735,412 N SURREY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_255_13,-74.698471,39.5876485,410 N SURREY AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_255_14,-74.67413384,39.51467586,408 N SURREY AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_255_15,-74.64054853,39.52915316,406 N SURREY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_255_16,-74.54923792,39.50986414,404 N SURREY AVE,VENTNOR CITY,17,1989,1,RES3A,3001 -0122_255_17,-74.83269392,39.45700219,402 N SURREY AVE,VENTNOR CITY,17,1987,1,RES1,3001 -0122_255_18,-74.8040515,39.431064,5401 BALFOUR AVE,VENTNOR CITY,17,1962,1,GOV1,3004 -0122_255_2,-74.74975895,39.44677597,409 N SUFFOLK AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_255_3,-74.81980116,39.46678002,413 N SUFFOLK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_255_4,-74.83727861,39.4837913,415 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_255_5,-74.627048,39.53094961,417 N SUFFOLK AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_255_7,-74.6554705,39.57759767,429 N SUFFOLK AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_255_8,-74.79294669,39.52518847,431 N SUFFOLK AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_255_9,-74.7299615,39.588673,5402 FREMONT AVE,VENTNOR CITY,17,1981,1,RES1,3001 -0122_256_1,-74.605988,39.420991,401 N SOMERSET AVE,VENTNOR CITY,17,1970,1,RES1,3002 -0122_256_10,-74.836874,39.485655,410 N SUFFOLK AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_256_11,-74.75064165,39.45164825,406 N SUFFOLK AVE,VENTNOR CITY,17,1969,1,RES1,3001 -0122_256_12,-74.8112436,39.40225467,404 N SUFFOLK AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_256_13,-74.70765427,39.42327446,402 N SUFFOLK AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_256_14,-74.612774,39.4195785,400 N SUFFOLK AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_256_2,-74.8276625,39.40908467,409 N SOMERSET AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_256_3,-74.72994,39.458572,411 N SOMERSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_256_4,-74.85263099,39.48423196,413 N SOMERSET AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_256_5,-74.625951,39.504465,415 N SOMERSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_256_6,-74.6692445,39.56092,417 N SOMERSET AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_256_8,-74.6445045,39.532799,414 N SUFFOLK AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_257_1,-74.5571875,39.472044,401 N OXFORD AVE,VENTNOR CITY,16,2017,1,RES1,3001 -0122_257_10,-74.558598,39.525091,435 N OXFORD AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_257_11,-74.6356988,39.53271269,424 N SOMERSET AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_257_12,-74.8710745,39.4926085,422 N SOMERSET AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_257_13,-74.78445857,39.45963613,414 N SOMERSET AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_257_14,-74.821994,39.407195,412 N SOMERSET AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_257_15,-74.74285794,39.41042879,410 N SOMERSET AVE,VENTNOR CITY,17,1978,1,GOV1,3004 -0122_257_16,-74.589074,39.425534,404 N SOMERSET AVE,VENTNOR CITY,17,1987,1,RES1,3001 -0122_257_17,-74.6308525,39.490977,400 N SOMERSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_257_2,-74.6386235,39.472448,403 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_257_3,-74.58413285,39.40571633,411 N OXFORD AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_257_4,-74.58316925,39.43564857,415 N OXFORD AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_257_5,-74.60698269,39.42497345,417 N OXFORD AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_257_6,-74.75865629,39.43152526,421 N OXFORD AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_257_7,-74.73579248,39.44978486,429 N OXFORD AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_257_8,-74.7281635,39.4551195,431 N OXFORD AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_257_9,-74.87994316,39.46946084,433 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_258_1,-74.61669008,39.37278211,401 N DUDLEY AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_258_10,-74.83304682,39.37634351,422 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_258_11,-74.6175385,39.4335885,420 N OXFORD AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_258_12,-74.70893603,39.41493581,418 N OXFORD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_258_13,-74.68984319,39.49862432,416 N OXFORD AVE,VENTNOR CITY,17,1922,1,GOV1,3004 -0122_258_14,-74.63136012,39.44532557,108 N OXFORD AVE,VENTNOR CITY,17,1986,1,RES1,3001 -0122_258_15,-74.53845633,39.47295277,400 N OXFORD AVE,VENTNOR CITY,17,1943,1,RES1,3001 -0122_258_2,-74.5718615,39.418336,403 N DUDLEY AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_258_4,-74.61956144,39.45202867,407 N DUDLEY AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_258_5,-74.697862,39.4894895,409 N DUDLEY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_258_6,-74.60189757,39.40856823,411 N DUDLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_258_7,-74.60752659,39.43384258,413 N DUDLEY AVE,VENTNOR CITY,17,1969,1,RES1,3001 -0122_258_8,-74.7554855,39.4315365,415 N DUDLEY AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_258_9.01,-74.738317,39.452734,417 N DUDLEY AVE,VENTNOR CITY,17,1994,1,RES1,3001 -0122_258_9.02,-74.7370856,39.46647198,5700 FREMONT AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_259_1,-74.6302585,39.3628315,401 N DORSET AVE,VENTNOR CITY,17,1950,1,COM1,3004 -0122_259_10,-74.59974427,39.43054745,421 N DORSET AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_259_11,-74.712236,39.431894,418 N DUDLEY AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_259_12,-74.58508375,39.42470965,416 N DUDLEY AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_259_14,-74.55571717,39.4999885,412 N DUDLEY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_259_15,-74.5588225,39.397427,5801 BALFOUR AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_259_2,-74.55440417,39.36990034,403 N DORSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_259_3.01,-74.606204,39.390508,405 N DORSET AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_259_3.02,-74.55878987,39.39628915,406 N DUDLEY AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_259_4.01,-74.605201,39.3868835,407 N DORSET AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_259_4.02,-74.53989886,39.4674122,408 N DUDLEY AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_259_5,-74.5461685,39.470091,409 N DORSET AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_259_6,-74.60272672,39.48424623,411 N DORSET AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_259_7,-74.66354952,39.46074566,415 N DORSET AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_259_8,-74.7421807,39.39812145,417 N DORSET AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_259_9,-74.610806,39.4156425,419 N DORSET AVE,VENTNOR CITY,17,1956,1,GOV1,3004 -0122_26_1,-74.49679282,39.3367752,113 S STRATFORD AVE,VENTNOR CITY,21,2014,1,RES1,3001 -0122_26_10,-74.53179297,39.40483908,108 S PORTLAND AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_26_11,-74.49837375,39.43557104,110 S PORTLAND AVE,VENTNOR CITY,17,1917,1,RES1,3001 -0122_26_12,-74.53741565,39.40933852,112 S PORTLAND AVE,VENTNOR CITY,18,1945,1,RES1,3001 -0122_26_13,-74.502211,39.4178095,114 S PORTLAND AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_26_2,-74.51883682,39.40707237,111 S STRATFORD AVE,VENTNOR CITY,18,1950,1,COM1,3004 -0122_26_3.01,-74.50336,39.411744,109 S STRATFORD AVE,VENTNOR CITY,20,1995,1,COM1,3004 -0122_26_3.02,-74.56008016,39.39734583,107 S STRATFORD AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_26_4,-74.5713285,39.4130725,105 S STRATFORD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_26_5,-74.507203,39.4393465,103 S STRATFORD AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_26_6,-74.52390746,39.42134083,101 S STRATFORD AVE,VENTNOR CITY,19,2003,1,RES1,3001 -0122_26_7,-74.5281788,39.45107999,100 S PORTLAND AVE,VENTNOR CITY,16,1945,1,RES1,3001 -0122_26_8,-74.51851515,39.41128623,104 S PORTLAND AVE,VENTNOR CITY,16,1925,1,RES1,3001 -0122_26_9,-74.42568325,39.49252047,106 S PORTLAND AVE,VENTNOR CITY,20,2014,1,RES1,3001 -0122_260_1,-74.5473655,39.3615185,400 N DORSET AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_260_10,-74.55615399,39.37493702,406 N DORSET AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_260_11,-74.63739308,39.36422635,404 N DORSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_260_2,-74.553718,39.3569755,403 N DERBY AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_260_3,-74.63085234,39.35115786,405 N DERBY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_260_4,-74.55064355,39.38119569,407 N DERBY AVE,VENTNOR CITY,17,1978,1,COM3,3004 -0122_260_5,-74.5549565,39.4681995,410 N DORSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_260_6,-74.607953,39.441501,415 N DERBY AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_260_7,-74.707207,39.418202,417 N DERBY AVE,VENTNOR CITY,17,1991,1,RES1,3001 -0122_260_8,-74.627433,39.4376495,414 N DORSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_260_9,-74.5587115,39.3991595,408 N DORSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_261_1,-74.50480143,39.4690737,401 N BURGHLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_261_11.02,-74.56641592,39.4494263,416 N DERBY AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_261_12,-74.599566,39.3684255,414 N DERBY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_261_13,-74.53225101,39.38699539,412 N DERBY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_261_16,-74.6133925,39.3230305,404 N DERBY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_261_17,-74.59941002,39.31361832,402 N DERBY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_261_18,-74.467731,39.49034849,400 N DERBY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_261_3,-74.590798,39.312093,405 N BURGHLEY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_261_6,-74.595213,39.358513,411 N BURGHLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_261_7,-74.6885685,39.358483,413 N BURGHLEY AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_261_8,-74.5319325,39.4000535,415 N BURGHLEY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_262_1,-74.55446877,39.43624158,6103 BALFOUR AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_262_10,-74.54198076,39.37548975,416 N BURGHLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_262_11,-74.59512001,39.36138876,414 N BURGHLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_262_12,-74.5628688,39.36625815,412 N BURGHLEY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_262_13,-74.57755268,39.33325252,410 N BURGHLEY AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_262_14,-74.46465926,39.50108027,408 N BURGHLEY AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_262_15,-74.51300897,39.43779284,402 N BURGHLEY AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_262_16,-74.50308754,39.41594884,400 N BURGHLEY AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_262_2,-74.512796,39.4044975,403 N CORNWALL AVE,VENTNOR CITY,17,1957,1,RES1,3001 -0122_262_3,-74.52156535,39.44281951,405 N CORNWALL AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_262_4,-74.47107978,39.48979341,407 N CORNWALL AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_262_5,-74.59085504,39.327458,409 N CORNWALL AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_262_6,-74.5534681,39.35691264,411 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_262_7,-74.59388653,39.36286591,415 N CORNWALL AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_262_8,-74.536113,39.379209,417 N CORNWALL AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_262_9,-74.54947669,39.39656893,418 N BURGHLEY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_263_1,-74.8098775,39.466928,401 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,GOV1,3004 -0122_263_10,-74.59089261,39.3557453,416 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_263_11,-74.60942663,39.32797265,414 N CORNWALL AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_263_12,-74.61609902,39.3112814,412 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_263_13,-74.47070422,39.4920365,410 N CORNWALL AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_263_14,-74.49267506,39.44596925,408 N CORNWALL AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_263_15,-74.51585438,39.40895702,406 N CORNWALL AVE,VENTNOR CITY,16,1962,1,RES1,3001 -0122_263_16,-74.53544563,39.44864136,404 N CORNWALL AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_263_17,-74.372059,39.405675,402 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_263_2,-74.42756306,39.36904279,403 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_263_3,-74.638681,39.4270015,405 N CAMBRIDGE AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_263_4,-74.51628908,39.40101684,407 N CAMBRIDGE AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_263_5,-74.50944339,39.41905326,409 N CAMBRIDGE AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_263_6,-74.49163401,39.45689619,411 N CAMBRIDGE AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_263_7,-74.46277818,39.53503718,413 N CAMBRIDGE AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_263_8,-74.592126,39.3326245,415 N CAMBRIDGE AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_263_9,-74.56171137,39.36055908,417 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_264_10,-74.585314,39.324959,416 N CAMBRIDGE AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_264_11,-74.463115,39.4945885,414 N CAMBRIDGE AVE,VENTNOR CITY,17,1963,1,RES1,3002 -0122_264_12,-74.47968995,39.4468477,412 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_264_13,-74.50050501,39.41628933,410 N CAMBRIDGE AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_264_14,-74.64482521,39.4336986,408 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_264_15,-74.3680185,39.407432,406 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_264_16,-74.39536673,39.38722199,404 N CAMBRIDGE AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_264_17,-74.53069539,39.47177972,400 N CAMBRIDGE AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_264_2,-74.52443316,39.47149998,403 N HARVARD AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_264_3,-74.71561165,39.47792979,405 N HARVARD AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_264_4,-74.42296144,39.37541971,407 N HARVARD AVE,VENTNOR CITY,17,1958,1,GOV1,3004 -0122_264_5,-74.63848339,39.41256871,409 N HARVARD AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_264_6,-74.51883056,39.38844531,411 N HARVARD AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_264_7,-74.49409599,39.42077625,413 N HARVARD AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_264_8,-74.51579754,39.44636409,415 N HARVARD AVE,VENTNOR CITY,18,1968,1,RES1,3001 -0122_264_9,-74.4891815,39.5248865,6302 FREMONT AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_27_10,-74.50369225,39.42725282,104 S STRATFORD AVE,VENTNOR CITY,16,1925,1,RES1,3001 -0122_27_11,-74.60087562,39.39050503,106 S STRATFORD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_27_12,-74.52584314,39.39446648,110 S STRATFORD AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_27_13,-74.4846915,39.3460005,112 S STRATFORD AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_27_2,-74.409632,39.3816465,113 S NEWPORT AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_27_3,-74.378143,39.413771,111 S NEWPORT AVE,VENTNOR CITY,17,1929,1,RES3A,3001 -0122_27_4,-74.44959717,39.355075,109 S NEWPORT AVE,VENTNOR CITY,20,2006,1,RES1,3001 -0122_27_5,-74.50455849,39.41862375,107 S NEWPORT AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_27_6.01,-74.537611,39.4080185,105 S NEWPORT AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_27_6.02,-74.489552,39.4303225,103 S NEWPORT AVE,VENTNOR CITY,19,1985,1,RES1,3001 -0122_27_7,-74.60345116,39.38780986,101 S NEWPORT AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_27_8,-74.60007156,39.41109479,100 S STRATFORD AVE,VENTNOR CITY,19,1990,1,RES1,3001 -0122_27_9,-74.605911,39.392298,102 S STRATFORD AVE,VENTNOR CITY,16,1925,1,RES1,3001 -0122_275_1,-74.46984016,39.34307551,301 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_10,-74.62479951,39.35529209,323 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_11,-74.4999959,39.50099766,325 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_12,-74.59885427,39.3138839,327 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_13,-74.51948007,39.40024633,329 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_14,-74.497741,39.4327985,341 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_15,-74.502672,39.4149015,343 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_16,-74.59270166,39.32541523,345 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_17,-74.53375096,39.31305478,347 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_18,-74.49901014,39.50127681,349 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_19,-74.63384423,39.35774096,351 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_2,-74.46253214,39.35667752,303 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_20,-74.59882058,39.36210731,353 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,COM7,3004 -0122_275_21,-74.45395714,39.37418386,355 HAMPSHIRE DRIVE,VENTNOR CITY,35,1972,1,RES1,3001 -0122_275_22,-74.51650045,39.38931588,7001 BALFOUR AVE,VENTNOR CITY,35,1972,1,RES1,3001 -0122_275_23,-74.372945,39.416114,7003 BALFOUR AVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_24,-74.3685145,39.409411,7005 BALFOUR AVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_25,-74.43989,39.3684395,7007 BALFOUR AVE,VENTNOR CITY,35,1972,1,RES1,3001 -0122_275_26,-74.37777483,39.39952851,7009 BALFOUR AVE,VENTNOR CITY,35,1972,1,RES1,3001 -0122_275_3,-74.463031,39.353404,305 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3004 -0122_275_4,-74.50800126,39.33811284,307 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES3A,3001 -0122_275_5,-74.51025542,39.33612615,309 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_6,-74.420716,39.371035,311 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_7,-74.3683275,39.410145,313 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_8,-74.4513283,39.37383494,315 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_275_9,-74.59739518,39.36210548,321 HAMPSHIRE DRIVE,VENTNOR CITY,35,1978,1,RES1,3001 -0122_276_1,-74.493671,39.333512,301-303 N LAFAYETTE AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_10,-74.51082807,39.40106532,307 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_11,-74.50234446,39.40839467,309 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_12,-74.520047,39.416478,311 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_13,-74.489992,39.4334015,313 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_14,-74.5033821,39.43096117,315 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_15,-74.4696485,39.4466975,317 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_16,-74.50236547,39.4508571,319 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_17,-74.59486289,39.31266187,420 ESSEX COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_18,-74.49324634,39.51948325,418 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_19,-74.487225,39.493957,416 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_2,-74.519627,39.3177105,305-307 N LAFAYETTE AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_20,-74.45531453,39.49998604,414 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_21,-74.51443184,39.50326297,412 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_22,-74.47291836,39.4896557,410 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_23,-74.45567642,39.48985012,408 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_24,-74.47447983,39.486094,406 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_25,-74.51350408,39.46270603,404 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_26,-74.5249867,39.44897806,401-403 N LAFAYETTE AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_27,-74.37293395,39.40140854,405-407 N LAFAYETTE AVE,VENTNOR CITY,45,1970,2,COM3,3004 -0122_276_28,-74.48594422,39.49578561,409-411 N LAFAYETTE AVE,VENTNOR CITY,45,1970,2,IND1,3002 -0122_276_29,-74.59285089,39.31758918,413-415 N LAFAYETTE AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_3,-74.4857935,39.3356395,309-311 N LAFAYETTE AVE,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_30,-74.57007209,39.36254632,417-419 N LAFAYETTE AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_31,-74.607614,39.3630575,421-423 N LAFAYETTE AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_276_32,-74.5734935,39.351047,401-403 BERKSHIRE DR,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_33,-74.660251,39.34828408,405-407 BERKSHIRE DR,VENTNOR CITY,45,1968,2,RES1,3001 -0122_276_34,-74.5754935,39.3403755,409-411 BERKSHIRE DR,VENTNOR CITY,45,1968,2,RES1,3001 -0122_276_35,-74.56668705,39.34145758,413-415 BERKSHIRE DR,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_36,-74.56352353,39.36441682,419 BERKSHIRE DR,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_37,-74.5763835,39.3403055,421 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_276_38,-74.595686,39.3436875,423 BERKSHIRE DRIVE,VENTNOR CITY,35,1982,1,RES1,3001 -0122_276_39,-74.59600074,39.35658765,425 BERKSHIRE DRIVE,VENTNOR CITY,35,1982,1,RES1,3001 -0122_276_4,-74.488636,39.334565,313-315 N LAFAYETTE AVE,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_40,-74.6002705,39.366534,427 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_276_41,-74.63201343,39.35928456,429 BERKSHIRE DRIVE,VENTNOR CITY,35,1982,1,COM7,3004 -0122_276_42,-74.66704904,39.36021229,431 BERKSHIRE DRIVE,VENTNOR CITY,35,1982,1,RES1,3001 -0122_276_43,-74.60945064,39.32346861,433 BERKSHIRE DRIVE,VENTNOR CITY,35,1982,1,RES1,3001 -0122_276_44,-74.56846881,39.34861847,435 BERKSHIRE DRIVE,VENTNOR CITY,35,1982,1,RES1,3001 -0122_276_45,-74.54629935,39.37329546,437-439 BERKSHIRE DR,VENTNOR CITY,45,1976,2,RES1,3001 -0122_276_46,-74.5388355,39.392526,441-443 BERKSHIRE DR,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_47,-74.59116562,39.47209049,445-447 BERKSHIRE DR,VENTNOR CITY,45,1973,2,RES1,3001 -0122_276_48,-74.58614,39.416496,449-451 BERKSHIRE DR,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_49,-74.61653361,39.43155173,453-455 BERKSHIRE DR,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_5,-74.36988717,39.405264,317-319 N LAFAYETTE AVE,VENTNOR CITY,45,1975,2,RES1,3001 -0122_276_50,-74.541225,39.4602055,420-422 N WISSAHICKON AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_51,-74.67078071,39.37005556,416-418 N WISSAHICKON AVE,VENTNOR CITY,45,1979,2,RES1,3001 -0122_276_52,-74.58601,39.4254965,412-414 N WISSAHICKON AVE,VENTNOR CITY,45,1974,2,RES1,3001 -0122_276_53,-74.60919108,39.38485225,408-410N WISSAHICKON AVE,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_54,-74.6035428,39.37662234,404-406 N WISSAHICKON AVE,VENTNOR CITY,,1970,1,RES3A,3001 -0122_276_55,-74.59140759,39.32622116,400 N WISSAHICKON AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_276_56,-74.592437,39.3219445,404 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_57,-74.55889702,39.37087169,406 CANTERBURY COURT,VENTNOR CITY,35,1979,1,GOV1,3004 -0122_276_58,-74.53742001,39.38244967,408 CANTERBURY COURT,VENTNOR CITY,35,1979,1,GOV1,3004 -0122_276_59,-74.59122919,39.35128586,410 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_6,-74.62301992,39.3136468,321-323 N LAFAYETTE AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_276_60,-74.56813052,39.36169311,412 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_61,-74.78703683,39.31309579,414 CANTERBURY COURT,VENTNOR CITY,35,1979,2,RES1,3001 -0122_276_62,-74.6312805,39.364151,416 CANTERBURY COURT,VENTNOR CITY,35,1979,1,COM10,3003 -0122_276_63,-74.62691239,39.35507717,418 CANTERBURY COURT,VENTNOR CITY,35,1979,1,GOV1,3004 -0122_276_64,-74.61018893,39.36461277,420 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_65,-74.456258,39.4965545,319 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_66,-74.504,39.472869,317 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_67,-74.53430367,39.30583149,315 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_68,-74.59648435,39.31012994,313 CANTERBURY COURT,VENTNOR CITY,35,1979,1,GOV1,3004 -0122_276_69,-74.586496,39.3219,311 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_7,-74.51517992,39.40053419,325-327 N LAFAYETTE AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_70,-74.589118,39.331427,309 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_71,-74.60839628,39.31746504,307 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_72,-74.56861367,39.347284,305 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_73,-74.55833251,39.36465757,303 CANTERBURY COURT,VENTNOR CITY,35,1979,1,RES1,3001 -0122_276_74,-74.5313685,39.375765,324-326 N WISSAHICKON AVE,VENTNOR CITY,45,1974,2,RES1,3001 -0122_276_75,-74.5796355,39.361126,320-322 N WISSAHICKON AVE,VENTNOR CITY,45,1970,2,RES1,3001 -0122_276_76,-74.55849612,39.36619377,316-318 N WISSAHICKON AVE,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_77,-74.61157816,39.31525605,312-314 N WISSAHICKON AVE,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_78,-74.46902051,39.49025147,308-310 N WISSAHICKON AV,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_79,-74.49884342,39.33535433,304-306 N WISSAHICKON AVE,VENTNOR CITY,45,1972,2,RES3A,3001 -0122_276_8,-74.50592865,39.53044266,303 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_80,-74.51346224,39.43905471,300-302 N WISSAHICKON AVE,VENTNOR CITY,45,1972,2,COM1,3004 -0122_276_81,-74.50322003,39.43259532,352-354 HAMPSHIRE DR,VENTNOR CITY,45,1972,2,COM1,3004 -0122_276_82,-74.63605996,39.42684488,348-350 HAMPSHIRE DR,VENTNOR CITY,45,1971,2,COM10,3003 -0122_276_83,-74.5071325,39.459081,344-346 HAMPSHIRE DR,VENTNOR CITY,45,1972,2,COM1,3004 -0122_276_84,-74.50878819,39.49439732,340 HAMPSHIRE DR.,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_85,-74.45408118,39.48409936,336-338 HAMPSHIRE DR,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_86,-74.47979765,39.34767907,334 HAMPSHIRE DRIVE,VENTNOR CITY,35,1978,1,RES1,3001 -0122_276_87,-74.517994,39.445291,332 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_276_88,-74.62461372,39.434702,330 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_276_89,-74.67913178,39.38653746,328 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_276_9,-74.58264661,39.32511575,305 ESSEX COURT,VENTNOR CITY,35,1970,1,RES1,3001 -0122_276_90,-74.5248,39.4300225,326 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_276_91,-74.4912715,39.431109,324 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_276_92,-74.52027058,39.40563095,322 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_276_93,-74.4868455,39.4354285,320 HAMPSHIRE DRIVE,VENTNOR CITY,35,1974,1,RES1,3001 -0122_276_94,-74.52563885,39.39676883,316-318 HAMPSHIRE DR,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_95,-74.58643171,39.35899911,312-314 HAMPSHIRE DR,VENTNOR CITY,45,1972,2,GOV1,3004 -0122_276_96,-74.504656,39.33803033,308-310 HAMPSHIRE DR,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_97,-74.48560033,39.3499499,304-306 HAMPSHIRE DR,VENTNOR CITY,45,1972,2,RES1,3001 -0122_276_98,-74.51286038,39.33049694,300-302 HAMPSHIRE DR,VENTNOR CITY,45,1972,2,RES1,3001 -0122_277_1,-74.63037966,39.35703697,414 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,GOV1,3004 -0122_277_10,-74.615639,39.323598,7006 FULTON AVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_11,-74.5722615,39.3693795,7004 FULTON AVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_12,-74.5455958,39.3912449,7002 FULTON AVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_13,-74.5990962,39.37056956,7000 FULTON AVE,VENTNOR CITY,35,1980,1,GOV1,3004 -0122_277_15,-74.5571395,39.5016435,452 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,COM1,3004 -0122_277_16,-74.55413072,39.47077306,450 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_17,-74.59899932,39.37108287,448 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,COM8,3004 -0122_277_18,-74.534915,39.385754,446 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_19,-74.56678545,39.36900024,444 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_2,-74.76819917,39.34821048,412 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_20,-74.60790587,39.32485586,442 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_21,-74.58652083,39.332096,440 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,GOV1,3004 -0122_277_22,-74.59237565,39.32259562,428 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,COM1,3004 -0122_277_23,-74.54499837,39.37720744,426 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,COM8,3004 -0122_277_24,-74.53505773,39.38477271,424 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,COM10,3003 -0122_277_25,-74.5807315,39.3438375,422 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,COM1,3004 -0122_277_26,-74.56775788,39.36380118,420 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_3,-74.573885,39.347941,410 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_4,-74.56394318,39.36676588,408 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_6,-74.54737634,39.37422649,404 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_8,-74.56454571,39.3706216,400 BERKSHIRE DRIVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_277_9,-74.59093429,39.32598327,7008 FULTON AVE,VENTNOR CITY,35,1980,1,RES1,3001 -0122_278_1,-74.5859255,39.369114,400 N LAFAYETTE AVE,VENTNOR CITY,,1980,1,RES1,3001 -0122_279_2,-74.79209584,39.64154848,505 N VICTORIA AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_279_3,-74.833563,39.642135,507 N VICTORIA AVE,VENTNOR CITY,17,1986,1,RES1,3001 -0122_279_4,-74.7586105,39.430674,509 N VICTORIA AVE,VENTNOR CITY,17,1986,1,RES1,3001 -0122_279_5,-74.720762,39.4497835,511 N VICTORIA AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_279_6,-74.49858717,39.331573,513 N VICTORIA AVE,VENTNOR CITY,17,1998,1,RES1,3001 -0122_279_7,-74.5180815,39.317847,515 N VICTORIA AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_28_1,-74.5156405,39.411897,6500 ATLANTIC AVE,VENTNOR CITY,,1964,1,RES3A,3001 -0122_280_10,-74.88552177,39.59766518,506 N VICTORIA AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_280_12,-74.9457085,39.49588,502 N VICTORIA AVE,VENTNOR CITY,,1976,1,COM1,3004 -0122_280_3,-74.95671076,39.53072885,505 N SURREY AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_280_5,-74.50348234,39.326793,516 N VICTORIA AVE,VENTNOR CITY,45,1986,2,RES1,3001 -0122_280_6,-74.4892445,39.33319,514 N VICTORIA AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_280_7,-74.83973517,39.3919175,512 N VICTORIA AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_280_9,-74.77382939,39.66523482,508 N VICTORIA AVE,VENTNOR CITY,17,1986,1,RES1,3001 -0122_281_1,-74.55025572,39.50684401,501 N SUFFOLK AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_281_2,-74.63128916,39.53257317,503 N SUFFOLK AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_281_3,-74.79681208,39.63947409,505 N SUFFOLK AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_281_4,-74.94078631,39.50017035,507 N SUFFOLK AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_281_5,-74.94812525,39.51870293,509 N SUFFOLK AVE,VENTNOR CITY,16,1975,1,RES1,3001 -0122_281_6,-74.72389966,39.64760369,511 N SUFFOLK AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_281_7,-74.80148,39.6430125,513 N SUFFOLK AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_281_8,-74.43727253,39.36809268,515 N SUFFOLK AVE,VENTNOR CITY,17,1977,1,GOV1,3004 -0122_281_9.01,-74.84726141,39.37827951,512 N SURREY AVE,VENTNOR CITY,17,1985,1,RES3A,3001 -0122_281_9.02,-74.44281563,39.35378719,510 N SURREY AVE,VENTNOR CITY,17,2006,1,REL1,3004 -0122_281_9.03,-74.76934245,39.6707799,508 N SURREY AVE,VENTNOR CITY,17,1987,1,RES1,3001 -0122_281_9.04,-74.8845783,39.59486769,506 N SURREY AVE,VENTNOR CITY,17,1986,1,RES1,3001 -0122_281_9.05,-74.93965827,39.52088043,504 N SURREY AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_281_9.06,-74.9159095,39.4888125,502 N SURREY AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_281_9.07,-74.80331234,39.62486763,500 N SURREY AVE,VENTNOR CITY,17,1988,1,RES1,3001 -0122_281_9.08,-74.63798015,39.52665687,5401 FREMONT AVE,VENTNOR CITY,18,1989,1,RES1,3001 -0122_282_1,-74.81199473,39.60357557,500 N SUFFOLK AVE,VENTNOR CITY,17,1981,1,RES1,3001 -0122_282_2,-74.8609935,39.482243,502 N SUFFOLK AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_282_3,-74.6530815,39.5203125,504 N SUFFOLK AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_282_4,-74.8040535,39.6275385,506 N SUFFOLK AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_282_5,-74.926519,39.484872,508 N SUFFOLK AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_282_6,-74.92767884,39.51878114,510 N SUFFOLK AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_282_7,-74.97444781,39.51170398,512 N SUFFOLK AVE,VENTNOR CITY,16,1975,1,RES1,3001 -0122_282_8,-74.78408117,39.65467301,514 N SUFFOLK AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_283_1,-74.818414,39.5282874,501 N SOMERSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_283_10,-74.885837,39.600512,521 N SOMERSET AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_283_2,-74.8562585,39.559668,503 N SOMERSET AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_283_3,-74.75795102,39.60087016,505 N SOMERSET AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_283_5,-74.856298,39.4385455,509 N SOMERSET AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_283_6,-74.5946435,39.5343635,511 N SOMERSET AVE,VENTNOR CITY,17,1955,1,REL1,3004 -0122_283_7,-74.80488696,39.63004434,515 N SOMERSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_283_8,-74.92281102,39.48159876,517 N SOMERSET AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_283_9,-74.93120681,39.51525289,519 N SOMERSET AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_284_1,-74.69281367,39.51908447,501 N OXFORD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_284_10,-74.8094945,39.6325575,514 N SOMERSET AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_284_11,-74.79897166,39.62090308,512 N SOMERSET AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_284_12,-74.5724877,39.54854828,510 N SOMERSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_284_13,-74.87692857,39.46238828,508 N SOMERSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_284_14,-74.77576256,39.60828927,506 N SOMERSET AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_284_15,-74.8304195,39.5402875,504 N SOMERSET AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_284_16,-74.627336,39.61958,502 N SOMERSET AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_284_2,-74.6356195,39.6247825,503 N OXFORD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_284_3,-74.8091665,39.560579,505 N OXFORD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_284_4,-74.78472235,39.61223016,507 N OXFORD AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_284_5,-74.8607995,39.485825,509 N OXFORD AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_284_6,-74.63745407,39.50526673,511 N OXFORD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_284_7,-74.80334996,39.63023116,515 N OXFORD AVE,VENTNOR CITY,17,1963,1,GOV1,3004 -0122_284_8,-74.9093232,39.49395627,517 N OXFORD AVE,VENTNOR CITY,17,1963,1,COM1,3004 -0122_284_9,-74.94863074,39.50962565,516 N SOMERSET AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_285_1,-74.87605268,39.49925403,501 N DUDLEY AVE,VENTNOR CITY,17,1963,1,RES3B,3001 -0122_285_10,-74.6027138,39.50608368,514 N OXFORD AVE,VENTNOR CITY,17,1963,1,COM1,3004 -0122_285_11,-74.85514,39.4415225,512 N OXFORD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_285_12,-74.79305644,39.60267665,510 N OXFORD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_285_13,-74.82262054,39.5359947,508 N OXFORD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_285_14,-74.69535865,39.59324097,506 N OXFORD AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_285_15,-74.69248354,39.51129481,504 N OXFORD AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_285_16,-74.62163984,39.52695402,502 N OXFORD AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_285_2,-74.638813,39.5360195,503 N DUDLEY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_285_3,-74.6872695,39.5101195,505 N DUDLEY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_285_4,-74.6941105,39.591999,507 N DUDLEY AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_285_5,-74.8493407,39.53420399,509 N DUDLEY AVE,VENTNOR CITY,17,1963,1,GOV1,3004 -0122_285_6,-74.77193592,39.60938854,511 N DUDLEY AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_285_7,-74.8827015,39.454314,515 N DUDLEY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_285_8,-74.6242225,39.51913905,517 N DUDLEY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_285_9,-74.81768,39.622549,516 N OXFORD AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_286_1,-74.7475265,39.446783,501 N DORSET AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_286_10,-74.79326364,39.53634955,510 N DUDLEY AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_286_11,-74.64721568,39.54658333,508 N DUDLEY AVE,VENTNOR CITY,17,1982,1,RES1,3001 -0122_286_12,-74.64997466,39.52535153,506 N DUDLEY AVE,VENTNOR CITY,17,1989,1,RES1,3001 -0122_286_13,-74.5417013,39.53336818,504 N DUDLEY AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_286_14,-74.77942479,39.50077428,502 N DUDLEY AVE,VENTNOR CITY,17,1971,1,RES1,3001 -0122_286_2,-74.807153,39.471771,503 N DORSET AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_286_3,-74.54173404,39.55642543,505 N DORSET AVE,VENTNOR CITY,17,2004,1,RES1,3001 -0122_286_4,-74.64965652,39.53328094,507 N DORSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_286_5,-74.63084864,39.5919109,509 N DORSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_286_6,-74.713076,39.567122,511 N DORSET AVE,VENTNOR CITY,17,2001,1,RES1,3001 -0122_286_7,-74.77486416,39.61146647,513 N DORSET AVE,VENTNOR CITY,17,2003,1,RES1,3001 -0122_286_8,-74.83941928,39.44116457,5800 FULTON AVE,VENTNOR CITY,17,1981,1,RES1,3001 -0122_286_9,-74.72645967,39.588888,512 N DUDLEY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_287_1,-74.58312158,39.43086863,501 N DERBY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_287_10,-74.68427844,39.55960087,512 N DORSET AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_287_11,-74.644578,39.5340265,510 N DORSET AVE,VENTNOR CITY,17,2017,1,RES1,3001 -0122_287_12,-74.57764611,39.52125587,508 N DORSET AVE,VENTNOR CITY,17,1972,1,RES3A,3001 -0122_287_13,-74.85492227,39.4362244,506 N DORSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_287_14,-74.74881099,39.45086005,504 N DORSET AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_287_15,-74.71041575,39.43189383,502 N DORSET AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_287_16,-74.59856584,39.43480817,5901 FREMONT AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_287_2,-74.64123759,39.37704025,503 N DERBY AVE,VENTNOR CITY,17,1957,1,RES1,3001 -0122_287_3,-74.830457,39.3920475,505 N DERBY AVE,VENTNOR CITY,17,1963,1,RES3A,3001 -0122_287_4,-74.7495385,39.451062,507 N DERBY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_287_5,-74.827276,39.462777,509 N DERBY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_287_6,-74.5667975,39.531286,511 N DERBY AVE,VENTNOR CITY,17,1957,1,RES1,3001 -0122_287_7,-74.6492325,39.523715,515 N DERBY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_287_8,-74.68126801,39.56917352,517 N DERBY AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_288_1,-74.64396418,39.45201255,501 N BURGHLEY AVE,VENTNOR CITY,17,1970,1,RES3A,3001 -0122_288_10,-74.85659265,39.48724799,512 N DERBY AVE,VENTNOR CITY,17,1962,1,RES3A,3001 -0122_288_11,-74.781401,39.456206,510 N DERBY AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_288_12,-74.83531806,39.43010372,508 N DERBY AVE,VENTNOR CITY,17,1960,1,RES3A,3001 -0122_288_13,-74.75864403,39.43040515,506 N DERBY AVE,VENTNOR CITY,17,1955,1,RES1,3001 -0122_288_14,-74.62281271,39.38413014,504 N DERBY AVE,VENTNOR CITY,17,1957,1,RES1,3001 -0122_288_15,-74.59960006,39.41096931,502 N DERBY AVE,VENTNOR CITY,17,1960,1,GOV1,3004 -0122_288_2,-74.7488945,39.391664,503 N BURGHLEY AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_288_3,-74.6128765,39.4132505,505 N BURGHLEY AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_288_4,-74.6290105,39.3802675,507 N BURGHLEY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_288_5,-74.81845341,39.36981639,509 N BURGHLEY AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_288_6,-74.736439,39.448158,511 N BURGHLEY AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_288_7,-74.71150717,39.47363077,515 N BURGHLEY AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_288_8,-74.59424623,39.51067037,517 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_288_9,-74.64570167,39.52839849,514 N DERBY AVE,VENTNOR CITY,17,1962,1,RES1,3001 -0122_289_1,-74.60842963,39.38931124,501 N CORNWALL AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_289_10,-74.82087142,39.38071724,512 N BURGHLEY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_289_11,-74.63987937,39.38340276,510 N BURGHLEY AVE,VENTNOR CITY,16,1972,1,RES1,3001 -0122_289_12,-74.58388804,39.43269039,508 N BURGHLEY AVE,VENTNOR CITY,17,1970,1,GOV1,3004 -0122_289_13,-74.71457086,39.41550409,506 N BURGHLEY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_289_14,-74.680248,39.444606,504 N BURGHLEY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_289_15,-74.558181,39.4741635,502 N BURGHLEY AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_289_2,-74.550614,39.476969,503 N CORNWALL AVE,VENTNOR CITY,17,1960,1,GOV1,3004 -0122_289_3,-74.61973379,39.43663601,505 N CORNWALL AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_289_4,-74.68799466,39.49843698,507 N CORNWALL AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_289_5,-74.60389997,39.41143264,509 N CORNWALL AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_289_6,-74.61595299,39.43074322,511 N CORNWALL AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_289_7,-74.76217685,39.43044558,515 N CORNWALL AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_289_8,-74.7336775,39.4489185,517 N CORNWALL AVE,VENTNOR CITY,17,1956,1,RES1,3001 -0122_289_9,-74.75404991,39.44617371,516 N BURGHLEY AVE,VENTNOR CITY,17,1961,1,RES1,3001 -0122_29_1,-74.48040723,39.34909341,115 S AVOLYN AVE,VENTNOR CITY,19,2005,1,RES1,3001 -0122_29_10,-74.50465653,39.33891034,102 S NEW HAVEN AVE,VENTNOR CITY,20,2016,1,RES1,3001 -0122_29_11,-74.616359,39.309154,104 S NEW HAVEN AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_29_12,-74.492478,39.339618,106 S NEW HAVEN AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_29_13,-74.483906,39.336073,108 S NEW HAVEN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_29_14,-74.51326313,39.31976491,112 S NEW HAVEN AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_29_15,-74.48978068,39.33335198,116 S NEW HAVEN AVE,VENTNOR CITY,20,2009,1,RES1,3001 -0122_29_16,-74.5469945,39.4737175,118 S NEW HAVEN AVE,VENTNOR CITY,16,1965,1,RES1,3001 -0122_29_3,-74.4923825,39.3320345,111 S AVOLYN AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_29_4,-74.51069783,39.3292295,109 S AVOLYN AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_29_5,-74.47967965,39.34812102,107 S AVOLYN AVE,VENTNOR CITY,17,1937,1,RES1,3001 -0122_29_6,-74.4917965,39.334946,105 S AVOLYN AVE,VENTNOR CITY,19,1925,1,RES1,3001 -0122_29_7,-74.58216399,39.33232849,103 S AVOLYN AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_29_8,-74.385075,39.3925405,6602 ATLANTIC AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_29_9,-74.399605,39.39057144,100 S NEW HAVEN AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_290_1,-74.66818115,39.3592523,501 N CAMBRIDGE AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_290_10,-74.72216984,39.43070497,516 N CORNWALL AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_290_11,-74.59223524,39.43141873,514 N CORNWALL AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_290_12,-74.5965965,39.4086985,512 N CORNWALL AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_290_13,-74.70042584,39.48648261,510 N CORNWALL AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_290_14,-74.58841466,39.49141716,508 N CORNWALL AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_290_15,-74.54093234,39.45965567,506 N CORNWALL AVE,VENTNOR CITY,17,2011,1,RES1,3001 -0122_290_16,-74.60397334,39.38480673,504 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_290_17,-74.5476665,39.3892815,502 N CORNWALL AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_290_3,-74.53558,39.3971395,503 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_290_4,-74.60995705,39.38386028,505 N CAMBRIDGE AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_290_5,-74.60701912,39.4393644,507 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_290_6,-74.60715434,39.50201249,509 N CAMBRIDGE AVE,VENTNOR CITY,18,1962,1,RES1,3001 -0122_290_7,-74.69856532,39.4858316,511 N CAMBRIDGE AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_290_8,-74.5984065,39.409365,513 N CAMBRIDGE AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_290_9,-74.61960622,39.38173746,519 N CAMBRIDGE AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_291_1,-74.56769969,39.35067128,6203 FREMONT AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_291_11,-74.568487,39.477947,510 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_291_12,-74.56469751,39.41380016,508 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_291_13,-74.59737458,39.37163221,506 N CAMBRIDGE AVE,VENTNOR CITY,16,1965,1,RES1,3001 -0122_291_14,-74.55538775,39.38342273,504 N CAMBRIDGE AVE,VENTNOR CITY,17,1969,1,RES1,3001 -0122_291_15,-74.64268977,39.35861604,502 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES3A,3001 -0122_291_16,-74.604502,39.3426625,500 N CAMBRIDGE AVE,VENTNOR CITY,17,1964,1,GOV1,3004 -0122_291_2,-74.58479147,39.35813333,503 N HARVARD AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_291_3,-74.66155967,39.36341851,505 N HARVARD AVE,VENTNOR CITY,17,1980,1,RES3A,3001 -0122_291_4,-74.55121089,39.39000684,507 N HARVARD AVE,VENTNOR CITY,17,1983,1,RES1,3001 -0122_291_5,-74.60132476,39.38215945,509 N HARVARD AVE,VENTNOR CITY,17,1984,1,RES1,3001 -0122_291_6,-74.54057052,39.45828646,511 N HARVARD AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_291_7,-74.58954909,39.48882942,513 N HARVARD AVE,VENTNOR CITY,17,1970,1,RES3A,3001 -0122_291_8,-74.69340164,39.49173487,6202 FULTON AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_3_10,-74.72910886,39.45456546,108 S BATON ROUGE AVE,VENTNOR CITY,19,1908,1,RES1,3001 -0122_3_2,-74.69187233,39.41948424,111 S MARION AVE,VENTNOR CITY,18,1910,1,RES1,3001 -0122_3_3,-74.641505,39.534749,105 S MARION AVE,VENTNOR CITY,17,1900,1,RES1,3004 -0122_3_4,-74.70288802,39.57727045,103 S MARION AVE,VENTNOR CITY,18,1924,1,GOV1,3004 -0122_3_5,-74.793342,39.5348655,101 S MARION AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_3_6,-74.40303407,39.39096746,100 S BATON ROUGE AVE,VENTNOR CITY,18,1905,2,RES3A,3001 -0122_3_7,-74.62543682,39.36425456,102 S BATON ROUGE AVE,VENTNOR CITY,17,1910,1,RES3A,3001 -0122_3_8,-74.649641,39.401164,104 S BATON ROUGE AVE,VENTNOR CITY,17,1910,1,RES3A,3001 -0122_3_9,-74.6405475,39.5257625,106 S BATON ROUGE AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_30_1,-74.9526625,39.5121365,117 S TROY AVE,VENTNOR CITY,19,2008,1,RES3A,3004 -0122_30_10,-74.464181,39.354456,102 S AVOLYN AVE,VENTNOR CITY,17,1922,1,RES3A,3001 -0122_30_11,-74.47844847,39.34058182,104 S AVOLYN AVE,VENTNOR CITY,17,1985,1,RES3A,3001 -0122_30_12,-74.5145255,39.3236825,108 S AVOLYN AVE,VENTNOR CITY,18,1930,1,RES3A,3001 -0122_30_13,-74.52640762,39.31586357,110 S AVOLYN AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_30_14,-74.5498195,39.466886,112 S AVOLYN AVE,VENTNOR CITY,21,2012,1,RES3A,3001 -0122_30_15,-74.48165602,39.34045136,114 S AVOLYN AVE,VENTNOR CITY,20,2005,1,RES3A,3001 -0122_30_16,-74.883875,39.600036,116 S AVOLYN AVE,VENTNOR CITY,20,1995,1,GOV1,3004 -0122_30_2,-74.692274,39.6524825,115 S TROY AVE,VENTNOR CITY,18,1960,1,RES3A,3001 -0122_30_3,-74.47199089,39.34382983,111 S TROY AVE,VENTNOR CITY,19,2018,1,RES3A,3001 -0122_30_4,-74.59910512,39.4514582,109 S TROY AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_30_5,-74.50537938,39.32426889,107 S TROY AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_30_6,-74.51436485,39.32102986,105 S TROY AVE,VENTNOR CITY,20,2015,1,RES3A,3001 -0122_30_7,-74.4839395,39.3387265,103 S TROY AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_30_8,-74.481759,39.3521735,6606 ATLANTIC AVE,VENTNOR CITY,17,1923,1,RES3A,3001 -0122_30_9,-74.531423,39.308751,6604 ATLANTIC AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_303_1,-74.912356,39.513601,4800 WELLINGTON AVE,VENTNOR CITY,,1970,1,RES3A,3001 -0122_304_1,-74.928395,39.489092,5000 WELLINGTON AVE,VENTNOR CITY,,1980,1,RES3A,3001 -0122_305_1,-74.66055308,39.54110983,601 N VICTORIA AVE,VENTNOR CITY,,1991,1,RES3A,3001 -0122_305_2,-74.93733656,39.50466742,603 N VICTORIA AVE,VENTNOR CITY,,1991,1,RES1,3001 -0122_305_3,-74.94374423,39.52192992,605 N VICTORIA AVE,VENTNOR CITY,,1991,1,RES3A,3001 -0122_305_4,-74.731764,39.6431475,607 N VICTORIA AVE,VENTNOR CITY,,1991,1,RES3A,3001 -0122_305_5,-74.78573765,39.64158156,609 N VICTORIA AVE,VENTNOR CITY,,1988,1,RES3A,3001 -0122_305_6,-74.78699873,39.67589891,611 N VICTORIA AVE,VENTNOR CITY,,1989,1,RES3A,3001 -0122_305_7,-74.80309693,39.65015309,613 N VICTORIA AVE,VENTNOR CITY,17,1986,1,RES3A,3001 -0122_306_1,-74.45915767,39.35093549,601 N SURREY AVE,VENTNOR CITY,17,1978,1,RES3A,3001 -0122_306_10,-74.80339359,39.6403722,608 N VICTORIA AVE,VENTNOR CITY,,1988,1,RES3A,3001 -0122_306_11,-74.78769247,39.64101558,606 N VICTORIA AVE,VENTNOR CITY,,1986,1,RES1,3001 -0122_306_12,-74.9734765,39.5097555,604 N VICTORIA AVE,VENTNOR CITY,,1983,1,RES3A,3001 -0122_306_13,-74.93770955,39.5233577,602 N VICTORIA AVE,VENTNOR CITY,,1983,1,RES1,3001 -0122_306_14,-74.68202,39.552198,600 N VICTORIA AVE,VENTNOR CITY,,1986,1,RES1,3001 -0122_306_2,-74.520574,39.39575983,603 N SURREY AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_306_3,-74.64191983,39.53165352,605 N SURREY AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_306_4,-74.68258855,39.55582083,607 N SURREY AVE,VENTNOR CITY,17,1975,1,EDU1,3004 -0122_306_5,-74.94608422,39.52470384,609 N SURREY AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_306_6,-74.69193032,39.65104149,611 N SURREY AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_306_7,-74.78420909,39.65393949,613 N SURREY AVE,VENTNOR CITY,17,1976,1,RES3A,3004 -0122_306_8,-74.79737167,39.65404868,615 N SURREY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_306_9,-74.82387391,39.64714522,610 N VICTORIA AVE,VENTNOR CITY,,1986,1,COM1,3004 -0122_307_1,-74.52880885,39.30960697,601 N SUFFOLK AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_307_10,-74.94704694,39.52955175,612 N SURREY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_307_11,-74.951564,39.5208645,610 N SURREY AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_307_12,-74.65792354,39.53809836,608 N SURREY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_307_13,-74.65684599,39.52449233,606 N SURREY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_307_14,-74.516803,39.3968135,604 N SURREY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_307_15,-74.52369671,39.31947066,602 N SURREY AVE,VENTNOR CITY,17,1974,1,RES3A,3001 -0122_307_16,-74.50461272,39.32975917,600 N SURREY AVE,VENTNOR CITY,17,1976,1,RES3A,3001 -0122_307_2,-74.50826631,39.32919577,603 N SUFFOLK AVE,VENTNOR CITY,17,1965,1,RES3A,3001 -0122_307_3,-74.51183285,39.33254598,605 N SUFFOLK AVE,VENTNOR CITY,17,1974,1,RES3A,3001 -0122_307_4,-74.52973801,39.39962233,607 N SUFFOLK AVE,VENTNOR CITY,17,1973,1,RES3A,3001 -0122_307_5,-74.64927,39.533643,609 N SUFFOLK AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_307_6,-74.6807165,39.5533165,611 N SUFFOLK AVE,VENTNOR CITY,17,1977,1,RES3A,3001 -0122_307_7,-74.93750861,39.52589977,613 N SUFFOLK AVE,VENTNOR CITY,17,1971,1,RES3A,3001 -0122_307_8,-74.916373,39.548633,615 N SUFFOLK AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_307_9,-74.74865526,39.65899485,614 N SURREY AVE,VENTNOR CITY,17,1974,1,RES3A,3001 -0122_308_1,-74.4182815,39.367532,601 N SOMERSET AVE,VENTNOR CITY,17,1972,1,RES3A,3001 -0122_308_10,-74.62193706,39.55050345,612 N SUFFOLK AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_308_11,-74.645417,39.5291725,610 N SUFFOLK AVE,VENTNOR CITY,16,1972,1,RES1,3001 -0122_308_12,-74.525545,39.3863405,608 N SUFFOLK AVE,VENTNOR CITY,17,1972,1,RES3A,3001 -0122_308_13,-74.5172035,39.320017,606 N SUFFOLK AVE,VENTNOR CITY,17,1971,1,RES3A,3001 -0122_308_14,-74.49862337,39.33166935,604 N SUFFOLK AVE,VENTNOR CITY,17,1972,1,RES3B,3001 -0122_308_15,-74.718129,39.4525815,602 N SUFFOLK AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_308_16,-74.759133,39.4323305,600 N SUFFOLK AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_308_2,-74.80461858,39.37675379,603 N SOMERSET AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_308_3,-74.52343258,39.31325565,605 N SOMERSET AVE,VENTNOR CITY,17,1972,1,GOV1,3004 -0122_308_4,-74.50800336,39.33028996,607 N SOMERSET AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_308_5,-74.522278,39.321799,609 N SOMERSET AVE,VENTNOR CITY,17,1972,1,COM1,3004 -0122_308_6,-74.51816843,39.39763835,611 N SOMERSET AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_308_7,-74.649785,39.5265125,613 N SOMERSET AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_308_8,-74.6466115,39.549732,615 N SOMERSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_308_9,-74.94103106,39.5043141,5500 WELLINGTON AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_309_1,-74.88499245,39.55975616,601 N OXFORD AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_309_11,-74.51569668,39.3226275,610 N SOMERSET AVE,VENTNOR CITY,17,1974,1,RES1,3004 -0122_309_12,-74.49523283,39.33105053,608 N SOMERSET AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_309_13,-74.83487755,39.42957421,606 N SOMERSET AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_309_14,-74.7087765,39.4340335,604 N SOMERSET AVE,VENTNOR CITY,17,1971,1,RES1,3001 -0122_309_15,-74.814053,39.6410685,602 N SOMERSET AVE,VENTNOR CITY,17,1971,1,RES1,3001 -0122_309_16,-74.79048,39.64655,600 N SOMERSET AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_309_2,-74.79347124,39.64392405,603 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_309_3,-74.82595883,39.64663549,605 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_309_4,-74.75737294,39.43306876,607 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_309_5,-74.86922624,39.43416501,609 N OXFORD AVE,VENTNOR CITY,17,1971,1,RES1,3004 -0122_309_6,-74.5087685,39.3329685,611 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_309_7,-74.51607305,39.32081824,613 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_309_8,-74.52542671,39.38779205,615 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_309_9,-74.47912419,39.43186355,614 N SOMERSET AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_31_1,-74.5674365,39.37366783,115 S RICHARDS AVE,VENTNOR CITY,20,1989,1,RES1,3001 -0122_31_10,-74.45125991,39.35415744,108 S TROY AVE,VENTNOR CITY,20,2006,1,RES1,3001 -0122_31_11,-74.4634515,39.3471345,110 S TROY AVE,VENTNOR CITY,18,1935,1,RES1,3001 -0122_31_12,-74.9458335,39.5333395,112 S TROY AVE,VENTNOR CITY,20,2003,1,RES1,3001 -0122_31_13,-74.939559,39.501638,114 S TROY AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_31_2.01,-74.9476275,39.516626,111 S RICHARDS AVE,VENTNOR CITY,20,1985,1,RES1,3001 -0122_31_2.02,-74.88620543,39.59460016,109 S RICHARDS AVE,VENTNOR CITY,20,1925,1,RES1,3001 -0122_31_3,-74.4729068,39.34018216,107 S RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_31_4,-74.5542635,39.466486,105 S RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_31_5,-74.522823,39.31555087,103 S RICHARDS AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_31_6,-74.512915,39.3235055,6704 ATLANTIC AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_31_7,-74.47499041,39.34262682,6700 ATLANTIC AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_31_8,-74.50138383,39.33033601,102 S TROY AVE,VENTNOR CITY,20,2015,1,RES1,3001 -0122_31_9,-74.4354895,39.3654545,106 S TROY AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_310_1,-74.82340541,39.63813183,601 N DUDLEY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_10,-74.83083118,39.40229826,610 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_11,-74.4353995,39.3653135,608 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_12,-74.804474,39.6417365,606 N OXFORD AVE,VENTNOR CITY,17,1976,1,RES1,3001 -0122_310_13,-74.7416201,39.65029877,604 N OXFORD AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_310_14,-74.94842368,39.51539744,602 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_15,-74.92566155,39.50726155,600 N OXFORD AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_2,-74.9327395,39.5099635,603 N DUDLEY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_3,-74.97559274,39.51199466,605 N DUDLEY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_4,-74.7845345,39.6497515,607 N DUDLEY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_5,-74.41737905,39.36687149,609 N DUDLEY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_310_6,-74.81564039,39.4099462,611 N DUDLEY AVE,VENTNOR CITY,17,1974,1,RES3B,3001 -0122_310_8,-74.50104491,39.3268107,614 N OXFORD AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_310_9,-74.4948725,39.331838,612 N OXFORD AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_311_1,-74.79853807,39.62545435,601 N DORSET AVE,VENTNOR CITY,,1955,1,RES1,3001 -0122_311_10,-74.8872825,39.563592,606 N DUDLEY AVE,VENTNOR CITY,17,1969,1,RES1,3001 -0122_311_11,-74.93623566,39.52098324,604 N DUDLEY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_311_12,-74.91405707,39.48010426,602 N DUDLEY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_311_2,-74.80071094,39.62343766,605 N DORSET AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_311_3,-74.9327005,39.4958935,607 N DORSET AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_311_4,-74.94760758,39.51910575,609 N DORSET AVE,VENTNOR CITY,17,2015,1,RES1,3001 -0122_311_5,-74.88694769,39.59451701,611 N DORSET AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_311_6,-74.4379949,39.36530981,615 N DORSET AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_311_8,-74.81919421,39.65469941,610 N DUDLEY AVE,VENTNOR CITY,17,1974,1,GOV1,3004 -0122_311_9,-74.79344615,39.64129346,608 N DUDLEY AVE,VENTNOR CITY,17,1970,1,RES1,3001 -0122_312_1.01,-74.863842,39.544504,601 N DERBY AVE,VENTNOR CITY,17,1986,1,RES1,3001 -0122_312_10,-74.9117625,39.4997395,608 N DORSET AVE,VENTNOR CITY,17,1952,1,RES1,3001 -0122_312_12,-74.53395207,39.52564338,602 N DORSET AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_312_13,-74.86310635,39.59669871,8.01N DORSET AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_312_2.01,-74.83603717,39.59300896,603 N DERBY AVE,VENTNOR CITY,17,1988,1,RES1,3001 -0122_312_2.02,-74.87988703,39.47727109,605 N DERBY AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_312_3,-74.5910195,39.539325,607 N DERBY AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_312_4,-74.8200711,39.61523463,609 N DERBY AVE,VENTNOR CITY,17,1983,1,RES1,3001 -0122_312_5,-74.81663749,39.63615027,611 N DERBY AVE,VENTNOR CITY,17,1973,1,RES1,3002 -0122_312_6,-74.91954501,39.53167317,613 N DERBY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_312_7,-74.8937805,39.5575255,615 N DERBY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_312_8,-74.72754068,39.64488197,620 N DORSET AVE,VENTNOR CITY,17,1949,1,RES1,3001 -0122_312_9,-74.93874968,39.51730618,610 N DORSET AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_313_1,-74.64856373,39.55388037,6003 FULTON AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_313_10,-74.63235184,39.52994552,612 N DERBY AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_313_11,-74.59298228,39.50819932,610 N DERBY AVE,VENTNOR CITY,17,1968,1,GOV1,3004 -0122_313_12,-74.8807485,39.592428,608 N DERBY AVE,VENTNOR CITY,17,1968,1,COM10,3003 -0122_313_13,-74.75562484,39.60502539,606 N DERBY AVE,VENTNOR CITY,17,1968,1,RES3A,3001 -0122_313_14,-74.79696331,39.52954608,604 N DERBY AVE,VENTNOR CITY,17,1990,1,GOV1,3004 -0122_313_2,-74.683548,39.6352075,603 N BURGHLEY AVE,VENTNOR CITY,17,1978,1,GOV1,3004 -0122_313_3,-74.863317,39.5450535,605 N BURGHLEY AVE,VENTNOR CITY,17,1973,1,COM1,3004 -0122_313_4,-74.86879483,39.57214401,607 N BURGHLEY AVE,VENTNOR CITY,17,1972,1,COM3,3004 -0122_313_5,-74.86525503,39.50024274,609 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,COM4,3004 -0122_313_6,-74.63941735,39.52887353,611 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,GOV1,3004 -0122_313_7,-74.81400941,39.63214476,6002 WELLINGTON AVE,VENTNOR CITY,17,1971,1,GOV1,3004 -0122_313_8,-74.92609847,39.52067116,616 N DERBY AVE,VENTNOR CITY,17,1968,1,COM1,3004 -0122_313_9,-74.802222,39.6381655,614 N DERBY AVE,VENTNOR CITY,17,1968,1,COM1,3004 -0122_314_1.01,-74.55171643,39.54003093,601 N CORNWALL AVE,VENTNOR CITY,17,1968,1,COM1,3004 -0122_314_2,-74.64504283,39.52730901,603 N CORNWALL AVE,VENTNOR CITY,17,1968,1,COM1,3004 -0122_314_3,-74.695193,39.5047285,605 N CORNWALL AVE,VENTNOR CITY,17,1964,1,RES1,3001 -0122_314_4,-74.7055885,39.6340465,607 N CORNWALL AVE,VENTNOR CITY,17,1964,1,COM1,3004 -0122_314_5,-74.71997286,39.57337606,609 N CORNWALL AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_314_6,-74.8724915,39.5943855,611 N CORNWALL AVE,VENTNOR CITY,17,1968,1,GOV1,3004 -0122_314_7,-74.6171,39.508532,613 N CORNWALL AVE,VENTNOR CITY,17,1995,1,GOV1,3004 -0122_314_8.01,-74.64045467,39.53024699,612 N BURGHLEY AVE,VENTNOR CITY,17,1988,1,GOV1,3004 -0122_314_8.02,-74.83619236,39.4709717,610 N BURGHLEY AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_314_8.03,-74.77830165,39.60733946,608 N BURGHLEY AVE,VENTNOR CITY,17,1981,1,GOV1,3004 -0122_314_8.04,-74.8007355,39.5554625,606 N BURGHLEY AVE,VENTNOR CITY,17,2005,1,GOV1,3004 -0122_314_8.05,-74.624242,39.624032,604 N BURGHLEY AVE,VENTNOR CITY,17,1988,1,RES1,3001 -0122_314_8.06,-74.6952645,39.504854,602 N BURGHLEY AVE,VENTNOR CITY,17,1985,1,COM1,3004 -0122_314_8.07,-74.64559467,39.52943,6005 FULTON AVE,VENTNOR CITY,17,1992,1,RES1,3001 -0122_315_1,-74.824591,39.403057,601 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_315_10,-74.8093175,39.55776,612 N CORNWALL AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_315_11,-74.6403705,39.6213205,610 N CORNWALL AVE,VENTNOR CITY,17,1965,1,COM10,3003 -0122_315_12,-74.69289,39.507993,608 N CORNWALL AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_315_13,-74.6272865,39.5298835,606 N CORNWALL AVE,VENTNOR CITY,17,1968,1,COM1,3004 -0122_315_14,-74.8613184,39.48381068,604 N CORNWALL AVE,VENTNOR CITY,17,2012,1,COM3,3004 -0122_315_15,-74.7529141,39.45202147,602 N CORNWALL AVE,VENTNOR CITY,17,1963,1,COM3,3004 -0122_315_2,-74.727622,39.45448846,603 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,COM4,3004 -0122_315_3,-74.8311315,39.490944,605 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_315_4,-74.57672406,39.55163341,607 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,COM1,3004 -0122_315_5,-74.64411917,39.53281434,609 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES3A,3001 -0122_315_6,-74.62154053,39.60509975,611 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,COM10,3003 -0122_315_7,-74.791432,39.53268567,613 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_315_8,-74.7501635,39.5930515,615 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES3B,3001 -0122_315_9,-74.87495784,39.59588696,614 N CORNWALL AVE,VENTNOR CITY,17,1972,1,GOV1,3004 -0122_316_1,-74.60646685,39.42159219,601 N HARVARD AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_316_10,-74.6313715,39.391636,602 N CAMBRIDGE AVE,VENTNOR CITY,17,1980,1,RES3A,3001 -0122_316_2.01,-74.7577205,39.43069,603 N HARVARD AVE,VENTNOR CITY,17,1986,1,RES3A,3001 -0122_316_2.02,-74.7283065,39.4471795,605 N HARVARD AVE,VENTNOR CITY,17,1986,1,RES3A,3001 -0122_316_2.03,-74.70990954,39.47488132,607 N HARVARD AVE,VENTNOR CITY,18,1985,1,RES1,3001 -0122_316_2.04,-74.55660261,39.52398159,609 N HARVARD AVE,VENTNOR CITY,,1981,1,RES1,3001 -0122_316_2.05,-74.65495709,39.52688303,611 N HARVARD AVE,VENTNOR CITY,17,1983,1,RES1,3001 -0122_316_2.06,-74.6572505,39.575727,613 N HARVARD AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_316_3,-74.787776,39.52934,616 N CAMBRIDGE AVE,VENTNOR CITY,17,1966,1,RES3B,3001 -0122_316_4,-74.65100635,39.55253607,614 N CAMBRIDGE AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_316_5,-74.65394871,39.52393164,612 N CAMBRIDGE AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_316_6,-74.60718,39.517137,610 N CAMBRIDGE AVE,VENTNOR CITY,17,1974,1,GOV1,3004 -0122_316_7,-74.8591485,39.456145,608 N CAMBRIDGE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_316_8,-74.74867693,39.44581387,606 N CAMBRIDGE AVE,VENTNOR CITY,17,1974,1,RES3A,3001 -0122_316_9,-74.84805333,39.38804101,604 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_317_10.01,-74.82479533,39.61898546,710 N HARVARD AVE,VENTNOR CITY,18,1990,1,RES1,3001 -0122_317_10.02,-74.9072415,39.493385,712 N HARVARD AVE,VENTNOR CITY,18,1985,1,RES1,3001 -0122_317_10.03,-74.9387915,39.5178735,714 N HARVARD AVE,VENTNOR CITY,18,1983,1,RES3A,3001 -0122_317_14,-74.82682567,39.39892493,802 N HARVARD AVE,VENTNOR CITY,18,1987,1,RES3A,3001 -0122_317_15.01,-74.49446835,39.33262771,808 N HARVARD AVE,VENTNOR CITY,18,2014,1,RES3A,3001 -0122_317_15.02,-74.51587095,39.32478447,806 N HARVARD AVE,VENTNOR CITY,18,1994,1,RES3A,3001 -0122_317_15.03,-74.5308865,39.3855365,804 N HARVARD AVE,VENTNOR CITY,19,1990,1,RES3A,3001 -0122_317_16,-74.649581,39.534016,812 N HARVARD AVE,VENTNOR CITY,18,1992,1,RES3A,3001 -0122_317_17,-74.69386583,39.561597,814 N HARVARD AVE,VENTNOR CITY,18,1980,1,RES3A,3001 -0122_317_18,-74.94295614,39.53329727,900 N HARVARD AVE,VENTNOR CITY,18,2001,1,RES1,3001 -0122_317_19,-74.78619214,39.64008857,902 N HARVARD AVE,VENTNOR CITY,18,2002,1,RES1,3001 -0122_317_3,-74.8078026,39.37909173,606 N HARVARD AVE,VENTNOR CITY,17,1967,1,RES3A,3001 -0122_317_8,-74.721455,39.5719295,702-04 N HARVARD AVE,VENTNOR CITY,17,1994,1,RES1,3001 -0122_317_9.02,-74.56533497,39.51036318,708 N HARVARD AVE,VENTNOR CITY,18,1987,1,GOV1,3004 -0122_32_1,-74.5625115,39.3722465,111 S BUFFALO AVE,VENTNOR CITY,,1925,1,RES1,3001 -0122_32_10,-74.53585032,39.39762716,108 S RICHARDS AVE,VENTNOR CITY,18,2006,1,RES3A,3001 -0122_32_11,-74.60033445,39.43594169,110 S RICHARDS AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_32_2,-74.9419015,39.497418,107 S BUFFALO AVE,VENTNOR CITY,17,1920,1,COM3,3004 -0122_32_3,-74.95691824,39.53561465,105 S BUFFALO AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_32_4,-74.46446294,39.34656173,103 S BUFFALO AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_32_5,-74.53578696,39.45575419,101 S BUFFALO AVE,VENTNOR CITY,18,1925,1,GOV1,3004 -0122_32_6,-74.4288415,39.360287,100 S RICHARDS AVE,VENTNOR CITY,17,1929,1,RES3A,3001 -0122_32_7,-74.48033472,39.34725179,102 S RICHARDS AVE,VENTNOR CITY,16,1925,1,RES1,3001 -0122_32_8,-74.46524634,39.34841891,104 S RICHARDS AVE,VENTNOR CITY,20,2017,1,RES1,3001 -0122_32_9,-74.93587,39.5226025,106 S RICHARDS AVE,VENTNOR CITY,18,2006,1,RES1,3001 -0122_328_1,-74.632766,39.4614815,600 KINGSLEY DR,VENTNOR CITY,17,1979,1,RES3B,3004 -0122_328_10,-74.6367121,39.43205098,612 KINGSLEY DRIVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_328_11,-74.602605,39.4321925,610 KINGSLEY DRIVE,VENTNOR CITY,17,1977,1,RES3A,3001 -0122_328_12,-74.547394,39.4720485,608 KINGSLEY DRIVE,VENTNOR CITY,17,1975,1,COM1,3004 -0122_328_13,-74.638575,39.445026,606 KINGSLEY DRIVE,VENTNOR CITY,17,1972,1,COM1,3004 -0122_328_14,-74.687951,39.496083,604 KINGSLEY DRIVE,VENTNOR CITY,17,1976,1,RES1,3001 -0122_328_15,-74.82690053,39.38416313,602 KINGSLEY DRIVE,VENTNOR CITY,17,1976,1,RES3A,3001 -0122_328_2,-74.549083,39.503979,6803 FULTON AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_328_3,-74.54993326,39.46640707,6805 FULTON AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_328_4,-74.57636977,39.42991403,6807 FULTON AVE,VENTNOR CITY,17,1973,1,RES3A,3004 -0122_328_5,-74.62614864,39.435442,6809 FULTON AVE,VENTNOR CITY,17,1984,1,RES3A,3004 -0122_328_6,-74.60109164,39.43445376,6811 FULTON AVE,VENTNOR CITY,17,1988,1,RES1,3001 -0122_328_7,-74.61131569,39.40301959,6813 FULTON AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_328_8,-74.591133,39.400297,6815 FULTON AVE,VENTNOR CITY,17,1972,1,RES3A,3001 -0122_328_9,-74.63463513,39.38433362,614 KINGSLEY DRIVE,VENTNOR CITY,17,1976,1,RES3A,3001 -0122_329_12,-74.54623157,39.49236922,625 KINSLEY DRIVE,VENTNOR CITY,17,1999,1,COM1,3004 -0122_329_13,-74.63323887,39.46785513,623 KINGSLEY DRIVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_329_14,-74.69200459,39.49596035,621 KINGSLEY DRIVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_329_15,-74.6084585,39.3306485,619 KINGSLEY DRIVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_329_16,-74.84606184,39.40020949,617 KINGSLEY DRIVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_329_17,-74.6193885,39.43238715,615 KINGSLEY DRIVE,VENTNOR CITY,17,1977,1,RES3A,3001 -0122_329_18,-74.81524644,39.44461428,613 KINGSLEY DRIVE,VENTNOR CITY,17,1974,1,RES3A,3001 -0122_329_19,-74.62050759,39.53173701,611 KINGSLEY DRIVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_329_20,-74.636944,39.3365595,609 KINGSLEY DRIVE,VENTNOR CITY,17,1986,1,RES3A,3001 -0122_329_21,-74.40375181,39.39132519,610 N BUFFALO AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_329_22,-74.61017514,39.36434487,608 N BUFFALO AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_329_23,-74.65142758,39.36837302,606 N BUFFALO AVE,VENTNOR CITY,17,1986,1,RES1,3001 -0122_329_24,-74.605251,39.525486,604 N BUFFALO AVE,VENTNOR CITY,17,1979,1,COM1,3004 -0122_329_25,-74.70507129,39.4239414,602 N BUFFALO AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_329_28,-74.7239505,39.4563695,603 KINGSLEY DRIVE,VENTNOR CITY,17,1980,1,RES3A,3001 -0122_329_29,-74.76061201,39.44555416,605 KINGSLEY DRIVE,VENTNOR CITY,17,1987,1,COM1,3004 -0122_329_3,-74.63521282,39.43048588,633 KINGSLEY DRIVE,VENTNOR CITY,17,1980,1,COM1,3004 -0122_329_30,-74.59963764,39.36166303,607 KINGSLEY DRIVE,VENTNOR CITY,17,1987,1,RES3A,3001 -0122_329_4,-74.60309483,39.32344399,635 KINGSLEY DRIVE,VENTNOR CITY,17,1994,1,RES3A,3001 -0122_329_5,-74.543771,39.3741625,601 N LAFAYETTE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_329_6,-74.58619953,39.32787788,603 N LAFAYETTE AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_329_7,-74.59494741,39.37976374,605 N LAFAYETTE AVE,VENTNOR CITY,17,1979,1,RES1,3001 -0122_329_8,-74.61069,39.368982,607 N LAFAYETTE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_33_1,-74.45328171,39.37396155,111 S WISSAHICKON AVE,VENTNOR CITY,18,2005,1,RES3B,3001 -0122_33_10,-74.5995605,39.419713,106 S BUFFALO AVE,VENTNOR CITY,16,1935,1,RES1,3001 -0122_33_11.01,-74.56877377,39.41197954,108 S BUFFALO AVE,VENTNOR CITY,19,2009,1,RES1,3001 -0122_33_11.02,-74.8057345,39.638685,110 S BUFFALO AVE,VENTNOR CITY,18,1988,1,RES1,3001 -0122_33_2,-74.8090885,39.6362235,109 S WISSAHICKON AV,VENTNOR CITY,20,1960,1,RES1,3001 -0122_33_3,-74.57242762,39.42916591,107 S WISSAHICKON AVE,VENTNOR CITY,18,1942,1,COM1,3004 -0122_33_4,-74.537806,39.3833995,105 S WISSAHICKON AVE,VENTNOR CITY,17,1900,1,RES3A,3001 -0122_33_5,-74.91805928,39.49239682,103 S WISSAHICKON AV,VENTNOR CITY,17,1945,1,RES1,3001 -0122_33_6,-74.94203657,39.52309869,6802 ATLANTIC AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_33_7,-74.45571753,39.35029585,6800 ATLANTIC AVE,VENTNOR CITY,17,1958,1,COM10,3003 -0122_33_8,-74.9534075,39.5132375,102 S BUFFALO AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_33_9,-74.54820766,39.38887752,104 S BUFFALO AVE,VENTNOR CITY,16,1925,1,COM1,3004 -0122_334_1,-74.94229753,39.49160744,NW LANCASTER AVENUE,VENTNOR CITY,,0,1,COM1,3004 -0122_337_4,-74.92749522,39.51013331,N AUSTIN AVE,VENTNOR CITY,,0,1,RES3B,3001 -0122_338_1,-74.83297733,39.61129608,5219 WELLINGTON AVE,VENTNOR CITY,,1982,1,RES3B,3001 -0122_338_10,-74.88791334,39.47413163,5215 WELLINGTON AVE,VENTNOR CITY,,1970,1,RES1,3001 -0122_338_2,-74.80234137,39.63766688,709 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_338_3,-74.7950545,39.6315455,711 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3B,3001 -0122_338_4,-74.85314406,39.6130658,713 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_338_5,-74.884633,39.463855,715 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3B,3001 -0122_338_6,-74.917579,39.4718805,717 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_338_7,-74.92549469,39.48200787,719 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_338_8,-74.9103485,39.4978835,721 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_338_9,-74.93199539,39.4820452,723 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_339_1,-74.79126853,39.61740533,5301 WELLINGTON AVE,VENTNOR CITY,,1972,1,RES3A,3001 -0122_339_10,-74.9101915,39.480976,5202 MARSHALL AVE,VENTNOR CITY,27,1980,1,COM10,3003 -0122_339_11,-74.9009545,39.502505,5200 MARSHALL AVE,VENTNOR CITY,27,1980,1,COM1,3004 -0122_339_12,-74.92444158,39.47485173,720 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_339_13,-74.884675,39.468663,718 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_339_14,-74.81902881,39.63260116,716 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_339_15,-74.79603999,39.63158217,714 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_339_16,-74.81207797,39.63076355,712 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES3B,3001 -0122_339_17,-74.80901167,39.61931925,710 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,COM3,3004 -0122_339_18,-74.8744635,39.591215,708 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_339_19,-74.85164772,39.59137809,706 N LITTLE ROCK AVE,VENTNOR CITY,27,1980,1,GOV1,3004 -0122_339_2,-74.77885433,39.62731986,707 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_339_3,-74.79456883,39.6333408,709 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_339_4,-74.86566451,39.59303068,711 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_339_5,-74.880893,39.597861,713 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3B,3001 -0122_339_6,-74.80322494,39.62463685,715 N VICTORIA AVE,VENTNOR CITY,27,1980,1,COM10,3003 -0122_339_7,-74.80144136,39.63327844,717 N VICTORIA AVE,VENTNOR CITY,27,1980,1,REL1,3004 -0122_339_8,-74.8261515,39.62785467,719 N VICTORIA AVE,VENTNOR CITY,27,1980,1,COM4,3004 -0122_339_9,-74.8476695,39.61601411,721 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_34_1,-74.787021,39.610271,111 S NEWARK AVE,VENTNOR CITY,17,1950,1,GOV1,3004 -0122_34_10,-74.833749,39.6213765,106 S WISSAHICKON AV,VENTNOR CITY,18,1925,1,RES1,3001 -0122_34_11,-74.37106428,39.411103,108 S WISSAHICKON AVE,VENTNOR CITY,19,2000,1,COM1,3004 -0122_34_12,-74.87868585,39.59591305,110 S WISSAHICKON AVE,VENTNOR CITY,18,1980,1,RES1,3001 -0122_34_2,-74.8811715,39.5928365,109 S NEWARK AVE,VENTNOR CITY,20,1965,1,GOV1,3004 -0122_34_3,-74.379479,39.415662,107 S NEWARK AVE,VENTNOR CITY,17,1920,1,COM10,3003 -0122_34_4,-74.8003038,39.63410028,105 S NEWARK AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_34_5,-74.5621078,39.42418598,103 S NEWARK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_34_6,-74.6041605,39.424277,101 S NEWARK AVE,VENTNOR CITY,17,1940,1,COM1,3004 -0122_34_7,-74.54069292,39.39180518,6808 ATLANTIC AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_34_8,-74.611495,39.418478,102 S WISSAHICKON AV,VENTNOR CITY,17,1925,1,COM1,3004 -0122_34_9,-74.9242565,39.4836705,104 S WISSAHICKON AVE,VENTNOR CITY,17,1912,1,COM10,3003 -0122_340_1,-74.6674302,39.61982319,701 N SURREY AVE,VENTNOR CITY,27,1980,1,COM10,3003 -0122_340_10,-74.8181915,39.6216335,719 N SURREY AVE,VENTNOR CITY,27,1980,1,COM10,3003 -0122_340_11,-74.8027085,39.6369935,721 N SURREY AVE,VENTNOR CITY,27,1980,1,RES4,3001 -0122_340_12,-74.8062025,39.633756,723 N SURREY AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_340_13,-74.85889165,39.61046036,722 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_340_14,-74.80809594,39.63893534,720 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_340_15,-74.8053046,39.63701314,718 N VICTORIA AVE,VENTNOR CITY,35,1980,1,RES3A,3001 -0122_340_16,-74.80419503,39.62877666,716 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3B,3001 -0122_340_17,-74.88158516,39.598673,714 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_340_18,-74.86757577,39.59342985,712 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_340_19,-74.77864073,39.62598951,710 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3B,3001 -0122_340_2,-74.78996485,39.53249596,703 N SURREY AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_340_20,-74.74322904,39.63773566,708 N VICTORIA AVE,VENTNOR CITY,17,1980,1,COM1,3004 -0122_340_21,-74.7195838,39.57370014,706 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3B,3001 -0122_340_22,-74.880968,39.5427595,704 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_340_23,-74.82244754,39.53446015,702 N VICTORIA AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_340_24,-74.71038083,39.56118451,700 N VICTORIA AVE,VENTNOR CITY,17,1980,1,GOV1,3004 -0122_340_3,-74.8186655,39.532471,705 N SURREY AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_340_4,-74.85531995,39.56017284,707 N SURREY AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_340_5,-74.72224498,39.57744866,709 N SURREY AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_340_6,-74.75967128,39.60212417,711 N SURREY AVE,VENTNOR CITY,27,1980,1,RES3A,3001 -0122_340_7,-74.77690035,39.63207802,713 N SURREY AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_340_8,-74.84408914,39.60300418,715 N SURREY AVE,VENTNOR CITY,27,1980,1,RES1,3001 -0122_340_9,-74.8695165,39.6026675,717 N SURREY AVE,VENTNOR CITY,27,1980,1,COM1,3004 -0122_341_1,-74.80506983,39.6284765,SOMERSET & MARSHALL AVES,VENTNOR CITY,,1972,1,REL1,3004 -0122_342_1,-74.8411749,39.53072675,SE OXFORD & MARSHALL AVES,VENTNOR CITY,,1965,1,RES3B,3001 -0122_343_1,-74.702334,39.5761735,705-709 N DUDLEY AVE,VENTNOR CITY,,1965,1,RES3A,3001 -0122_344_1,-74.5037545,39.3275165,701 N DORSET AVE,VENTNOR CITY,17,1950,1,RES3A,3001 -0122_344_2,-74.775683,39.666023,709 N DORSET AVE,VENTNOR CITY,,1965,1,RES3A,3001 -0122_345_10,-74.6726445,39.5576925,714 N DORSET AVE,VENTNOR CITY,17,1963,1,RES3B,3001 -0122_345_11,-74.64810178,39.53304619,712 N DORSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_345_12,-74.52920568,39.39941709,710 N DORSET AVE,VENTNOR CITY,17,1966,1,RES1,3001 -0122_345_13,-74.5098185,39.3268875,708 N DORSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_345_2,-74.822089,39.4069475,703 N DERBY AVE,VENTNOR CITY,17,1980,1,RES1,3001 -0122_345_3,-74.495359,39.333061,705 N DERBY AVE,VENTNOR CITY,17,1980,1,COM1,3004 -0122_345_4,-74.5018345,39.327473,707 N DERBY AVE,VENTNOR CITY,17,1980,1,RES3B,3001 -0122_345_5,-74.5141725,39.326121,709 N DERBY AVE,VENTNOR CITY,17,1965,1,RES3B,3001 -0122_345_6,-74.528085,39.39421667,711 N DERBY AVE,VENTNOR CITY,17,1965,1,RES3A,3001 -0122_345_7,-74.6505205,39.5315665,713 N DERBY AVE,VENTNOR CITY,17,1984,1,RES1,3001 -0122_345_8,-74.70450938,39.56756328,715 N DERBY AVE,VENTNOR CITY,17,1985,1,RES3B,3001 -0122_345_9,-74.93833905,39.5219012,716 N DORSET AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_346_1,-74.970878,39.5158475,701 N BURGHLEY AVE,VENTNOR CITY,17,1963,1,RES3A,3001 -0122_346_13,-74.52901574,39.31038484,706 N DERBY AVE,VENTNOR CITY,17,1976,1,GOV1,3004 -0122_346_14,-74.8008755,39.3683725,704 N DERBY AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_346_15,-74.797058,39.662882,702 N DERBY AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_346_16,-74.7835295,39.655147,700 N DERBY AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_346_2,-74.7719675,39.6711055,703 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_346_3,-74.4403595,39.3562055,705 N BURGHLEY AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_346_4,-74.850091,39.3711715,707 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,COM1,3004 -0122_346_5,-74.50767134,39.32270663,709 N BURGHLEY AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_346_6,-74.503253,39.328858,711 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_346_7,-74.51603051,39.32920924,713 N BURGHLEY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_346_8,-74.526784,39.396156,715 N BURGHLEY AVE,VENTNOR CITY,17,1965,1,RES3A,3001 -0122_346_9,-74.646835,39.53342091,714 N DERBY AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_347_1,-74.924434,39.4810445,701 N CORNWALL AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_347_10,-74.49939174,39.33242333,714 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,GOV1,3004 -0122_347_11,-74.72071176,39.44445455,712 N BURGHLEY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_347_12,-74.755684,39.4325665,710 N BURGHLEY AVE,VENTNOR CITY,17,1966,1,GOV1,3004 -0122_347_13,-74.81597559,39.65359665,708 N BURGHLEY AVE,VENTNOR CITY,17,1957,1,COM1,3004 -0122_347_14,-74.7919965,39.644093,706 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_347_15,-74.9469505,39.5307265,704 N BURGHLEY AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_347_16,-74.926863,39.51037517,702 N BURGHLEY AVE,VENTNOR CITY,17,1968,1,RES3A,3001 -0122_347_2,-74.93510036,39.52020217,703 N CORNWALL AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_347_3,-74.97310684,39.50833263,705 N CORNWALL AVE,VENTNOR CITY,17,1965,1,RES1,3004 -0122_347_4,-74.7790325,39.6530025,707 N CORNWALL AVE,VENTNOR CITY,17,1959,1,RES3A,3001 -0122_347_5,-74.41447054,39.36732513,709 N CORNWALL AVE,VENTNOR CITY,17,1968,1,RES3A,3001 -0122_347_6,-74.83170245,39.3936873,711 N CORNWALL AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_347_7,-74.52215,39.31455,713 N CORNWALL AVE,VENTNOR CITY,17,1980,1,COM1,3004 -0122_347_8,-74.50517316,39.32893601,715 N CORNWALL AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_347_9,-74.52045099,39.32025633,716 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,COM1,3004 -0122_348_1,-74.63532468,39.50949393,701 N CAMBRIDGE AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_348_10,-74.71939871,39.39114923,714 N CORNWALL AVE,VENTNOR CITY,17,1969,1,RES3B,3001 -0122_348_11,-74.79788216,39.63961447,712 N CORNWALL AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_348_12,-74.7921535,39.6472765,710 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3004 -0122_348_13,-74.9442105,39.5240545,708 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES3A,3001 -0122_348_14,-74.8839325,39.536936,706 N CORNWALL AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_348_15,-74.80102616,39.63408302,704 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES3A,3001 -0122_348_16,-74.8078205,39.612343,702 N CORNWALL AVE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_348_2,-74.83353539,39.6215775,703 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_348_3,-74.82904225,39.6261052,705 N CAMBRIDGE AVE,VENTNOR CITY,17,1969,1,RES3A,3001 -0122_348_4,-74.92959124,39.50804682,707 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_348_5,-74.94876081,39.52176718,709 N CAMBRIDGE AVE,VENTNOR CITY,17,1968,1,RES3A,3001 -0122_348_6,-74.78503572,39.64315634,711 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES3A,3001 -0122_348_7,-74.81290694,39.65554426,713 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,RES3B,3001 -0122_348_8,-74.753853,39.429956,715 N CAMBRIDGE AVE,VENTNOR CITY,17,1966,1,RES3A,3001 -0122_348_9,-74.70775203,39.4411767,716 N CORNWALL AVE,VENTNOR CITY,17,1968,1,RES1,3001 -0122_349_1,-74.766968,39.612901,701 N HARVARD AVE,VENTNOR CITY,17,1987,1,RES3A,3001 -0122_349_10,-74.72756008,39.65072471,714 N CAMBRIDGE AVE,VENTNOR CITY,17,1969,1,RES1,3001 -0122_349_11,-74.93738997,39.52291732,712 N CAMBRIDGE AVE,VENTNOR CITY,17,1965,1,GOV1,3004 -0122_349_12,-74.92446214,39.51067171,710 N CAMBRIDGE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_349_13,-74.80284395,39.63807135,708 N CAMBRIDGE AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_349_14,-74.87393883,39.59134403,706 N CAMBRIDGE AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_349_15,-74.58337505,39.5138047,704 N CAMBRIDGE AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_349_16,-74.82817033,39.46518243,702 N CAMBRIDGE AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_349_2,-74.875895,39.4601065,703 N HARVARD AVE,VENTNOR CITY,18,1989,1,RES1,3001 -0122_349_5,-74.79644679,39.63115042,709 N HARVARD AVE,VENTNOR CITY,17,1980,1,COM4,3004 -0122_349_6,-74.911917,39.5348535,711 N HARVARD AVE,VENTNOR CITY,17,1975,1,GOV1,3004 -0122_349_7,-74.933002,39.5316005,713 N HARVARD AVE,VENTNOR CITY,17,1986,1,RES3A,3001 -0122_349_8,-74.79371788,39.64561011,715 N HARVARD AVE,VENTNOR CITY,17,1985,1,RES1,3001 -0122_349_9,-74.8047503,39.64145568,716 N CAMBRIDGE AVE,VENTNOR CITY,17,1975,1,RES3B,3001 -0122_35_1,-74.45789124,39.34894657,109 S ROSBOROUGH AVE,VENTNOR CITY,17,1958,1,COM1,3004 -0122_35_10,-74.47535715,39.34081602,108 S NEWARK AVE,VENTNOR CITY,17,1968,1,GOV1,3004 -0122_35_2,-74.4869455,39.3379915,107 S ROSBOROUGH AVE,VENTNOR CITY,18,1962,1,RES1,3001 -0122_35_3,-74.79356644,39.63484073,105 S ROSBOROUGH AVE,VENTNOR CITY,18,1962,1,RES1,3001 -0122_35_4,-74.37089138,39.41691383,103 S ROSBOROUGH AVE,VENTNOR CITY,17,1962,1,RES3A,3001 -0122_35_5,-74.80233198,39.62733283,101 S ROSBOROUGH AVE,VENTNOR CITY,16,1960,1,RES1,3001 -0122_35_6,-74.8854635,39.4632072,100 S NEWARK AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_35_7,-74.445943,39.3710445,102 S NEWARK AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_35_8,-74.35999106,39.41647539,104 S NEWARK AVE,VENTNOR CITY,17,1965,1,RES1,3001 -0122_35_9,-74.7817585,39.6082735,106 S NEWARK AVE,VENTNOR CITY,18,1965,1,RES1,3001 -0122_36_1,-74.47945822,39.47902911,109 S PHILADELPHIA AVE,VENTNOR CITY,19,2004,1,RES3A,3001 -0122_36_10,-74.50832,39.3322245,108 S ROSBOROUGH AVE,VENTNOR CITY,20,2000,1,RES1,3001 -0122_36_2,-74.5167675,39.324182,107 S PHILADELPHIA AVE,VENTNOR CITY,20,2012,1,RES3A,3001 -0122_36_3,-74.4613025,39.3476525,105 S PHILADELPHIA AVE,VENTNOR CITY,17,1956,1,COM1,3004 -0122_36_4,-74.46891,39.3441935,103 S PHILADELPHIA AVE,VENTNOR CITY,19,2016,1,RES3B,3001 -0122_36_5,-74.840835,39.5997635,6906 ATLANTIC AVE,VENTNOR CITY,17,1962,1,RES3A,3001 -0122_36_6,-74.358937,39.4141885,6904 ATLANTIC AVE,VENTNOR CITY,16,1962,1,RES3B,3001 -0122_36_7,-74.77948208,39.62342467,102 S ROSBOROUGH AVE,VENTNOR CITY,17,1960,1,GOV1,3004 -0122_36_8,-74.484994,39.339149,104 S ROSBOROUGH AVE,VENTNOR CITY,17,1958,1,RES3A,3001 -0122_36_9,-74.8757565,39.5634445,106 S ROSBOROUGH AVE,VENTNOR CITY,20,1958,1,GOV1,3004 -0122_366_1,-74.58860471,39.43317397,707 N BALTIMORE AVE,VENTNOR CITY,17,1922,1,COM1,3004 -0122_37_1,-74.514136,39.46292283,107 S LAFAYETTE AVE,VENTNOR CITY,18,2002,1,RES3B,3001 -0122_37_2,-74.50121287,39.33323687,105 S LAFAYETTE AVE,VENTNOR CITY,17,1930,1,COM1,3004 -0122_37_3,-74.51397199,39.32085188,103 S LAFAYETTE AVE,VENTNOR CITY,20,2016,1,COM1,3004 -0122_37_4,-74.46329482,39.34578911,101 S LAFAYETTE AVE,VENTNOR CITY,17,1960,1,RES3A,3001 -0122_37_5,-74.4835385,39.3365275,100 S PHILADELPHIA AVE,VENTNOR CITY,17,1896,1,COM1,3004 -0122_37_6,-74.45606667,39.35035049,106 S PHILADELPHIA AVE,VENTNOR CITY,17,1928,2,COM1,3004 -0122_37_7,-74.49361834,39.33114799,108 S PHILADELPHIA AVE,VENTNOR CITY,20,1930,1,GOV1,3004 -0122_37_8,-74.49303716,39.4633799,110 S PHILADELPHIA AVE,VENTNOR CITY,18,1980,1,RES3A,3001 -0122_370_1,-74.53735338,39.41244453,700 N SWARTHMORE AVE,VENTNOR CITY,,1991,1,RES1,3001 -0122_378_1,-74.91299517,39.51503851,801 N LITTLE ROCK AVE,VENTNOR CITY,28,1999,1,RES1,3001 -0122_378_2,-74.9018165,39.537905,803 N LITTLE ROCK AVE,VENTNOR CITY,28,1999,1,RES1,3001 -0122_379_1,-74.949286,39.498383,801 N VICTORIA AVE,VENTNOR CITY,28,1999,1,COM1,3004 -0122_38_1,-74.50246586,39.32495347,111 S PITTSBURGH AVE,VENTNOR CITY,16,1925,1,COM1,3004 -0122_38_2,-74.81792661,39.64341651,107 S PITTSBURGH AVE,VENTNOR CITY,21,1925,1,RES1,3001 -0122_38_3,-74.5187115,39.4451285,105 S PITTSBURGH AVE,VENTNOR CITY,19,2014,1,RES1,3001 -0122_38_4,-74.49273786,39.46687685,103 S PITTSBURGH AVE,VENTNOR CITY,19,2017,1,RES1,3001 -0122_38_5,-74.49159517,39.33104798,101 S PITTSBURGH AVE,VENTNOR CITY,16,1958,1,RES1,3001 -0122_38_6,-74.50972539,39.32172172,100 S LAFAYETTE AVE,VENTNOR CITY,17,1973,1,GOV1,3004 -0122_38_7,-74.48966937,39.33323633,102 S LAFAYETTE AVE,VENTNOR CITY,17,1930,1,COM10,3003 -0122_38_8,-74.50556102,39.46099096,104 S LAFAYETTE AVE,VENTNOR CITY,17,1977,1,GOV1,3004 -0122_38_9,-74.41382,39.363771,106 S LAFAYETTE AVE,VENTNOR CITY,,1986,1,GOV1,3004 -0122_380_1,-74.937359,39.496889,801 N SURREY AVE,VENTNOR CITY,28,1980,1,GOV1,3004 -0122_381_1,-74.93607158,39.48872291,808 MARSHALL CT,VENTNOR CITY,,1972,1,COM1,3004 -0122_382_1,-74.73072274,39.64258207,5903 MARSHALL AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_382_10,-74.72679308,39.58613185,812 N DORSET AVE,VENTNOR CITY,17,1976,1,RES1,3001 -0122_382_11,-74.82749726,39.56901769,810 N DORSET AVE,VENTNOR CITY,17,1978,1,RES3A,3001 -0122_382_12,-74.79985974,39.52227969,808 DORSET AVE,VENTNOR CITY,17,1975,1,RES3A,3001 -0122_382_13,-74.6950895,39.5803875,806 N DORSET AVE,VENTNOR CITY,17,1975,1,GOV1,3004 -0122_382_14,-74.82198062,39.65325074,804 N DORSET AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_382_15,-74.80993028,39.64710838,802 N DORSET AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_382_16,-74.78646699,39.66101602,5901 MARSHALL AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_382_2,-74.7869185,39.660965,803 N DERBY AVE,VENTNOR CITY,17,1977,1,COM8,3004 -0122_382_3,-74.7990425,39.6540315,805 N DERBY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_382_4,-74.59791392,39.58741283,807 N DERBY AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_382_5,-74.778384,39.516149,809 N DERBY AVE,VENTNOR CITY,17,1974,1,GOV1,3004 -0122_382_6,-74.797745,39.5318745,811 N DERBY AVE,VENTNOR CITY,17,1968,1,COM1,3004 -0122_382_7,-74.86694874,39.55892751,813 N DERBY AVE,VENTNOR CITY,17,1974,1,GOV1,3004 -0122_382_8,-74.727596,39.584747,5902 BURK AVE,VENTNOR CITY,17,1975,1,COM1,3004 -0122_382_9,-74.77363666,39.61057827,5900 BURK AVE,VENTNOR CITY,17,1976,1,RES1,3001 -0122_383_1,-74.66411582,39.55580097,6003 MARSHALL AVENUE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_383_10,-74.724298,39.569487,812 N DERBY AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_383_11,-74.68571938,39.5845493,810 N DERBY AVE,VENTNOR CITY,17,1975,1,COM8,3004 -0122_383_12,-74.81416645,39.64824785,808 N DERBY AVE,VENTNOR CITY,16,1976,1,COM10,3003 -0122_383_13,-74.80098816,39.64220005,806 N DERBY AVE,VENTNOR CITY,17,1976,1,COM1,3004 -0122_383_14,-74.79067487,39.64204488,804 N DERBY AVE,VENTNOR CITY,17,1974,1,RES3A,3001 -0122_383_15,-74.890503,39.558017,802 N DERBY AVE,VENTNOR CITY,17,1976,1,COM1,3004 -0122_383_16,-74.93476418,39.52473244,6001 MARSHALL AVENUE,VENTNOR CITY,17,1976,1,RES1,3001 -0122_383_2,-74.947644,39.524733,803 N BURGHLEY AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_383_3,-74.98333845,39.51365216,805 N BURGHLEY AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_383_4,-74.79212765,39.63982804,807 N BURGHLEY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_383_5,-74.81424358,39.64767864,809 N BURGHLEY AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_383_6,-74.81698972,39.65514091,811 N BURGHLEY AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_383_7,-74.62303564,39.60827233,813 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_383_8,-74.79726191,39.53353481,6002 BURK AVE,VENTNOR CITY,17,1975,1,COM1,3004 -0122_383_9,-74.825938,39.571467,6000 BURK AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_384_1,-74.529159,39.4006435,6007 MARSHALL AVENUE,VENTNOR CITY,17,1976,1,RES1,3001 -0122_384_10,-74.8166305,39.653784,812 N BURGHLEY AVE,VENTNOR CITY,17,1976,1,RES3B,3001 -0122_384_11,-74.78190621,39.67346756,810 N BURGHLEY AVE,VENTNOR CITY,17,1977,1,RES3A,3001 -0122_384_12,-74.74212177,39.65204781,808 N BURGHLEY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_384_13,-74.95560876,39.52147799,806 N BURGHLEY AVE,VENTNOR CITY,17,1972,1,RES1,3001 -0122_384_14,-74.95330615,39.51839875,804 N BURGHLEY AVE,VENTNOR CITY,17,1967,1,RES1,3001 -0122_384_15,-74.6457235,39.5485845,802 N BURGHLEY AVE,VENTNOR CITY,17,1976,1,RES4,3001 -0122_384_16,-74.65357293,39.52676216,6005 MARSHALL AVENUE,VENTNOR CITY,17,1976,1,COM1,3004 -0122_384_2,-74.64686675,39.5346832,803 N CORNWALL AVE,VENTNOR CITY,17,1976,1,RES1,3001 -0122_384_3,-74.66515665,39.54444417,805 N CORNWALL AVE,VENTNOR CITY,17,2010,1,RES3A,3001 -0122_384_4,-74.95387226,39.51576539,807 N CORNWALL AVE,VENTNOR CITY,17,1976,1,COM1,3004 -0122_384_5,-74.90911265,39.53842998,809 N CORNWALL AVE,VENTNOR CITY,17,1975,1,GOV1,3004 -0122_384_6,-74.79188946,39.6437862,811 N CORNWALL AVE,VENTNOR CITY,17,1976,1,GOV1,3004 -0122_384_7,-74.7877315,39.675919,813 N CORNWALL AVE,VENTNOR CITY,17,1976,1,COM1,3004 -0122_384_8,-74.82871886,39.64720142,6006 BURK AVENUE,VENTNOR CITY,17,1986,1,GOV1,3004 -0122_384_9,-74.68862009,39.58471697,6004 BURK AVE,VENTNOR CITY,17,1976,1,GOV1,3004 -0122_385_1,-74.500046,39.331368,6103 MARSHALL AVENUE,VENTNOR CITY,17,1977,1,GOV1,3004 -0122_385_10,-74.7333515,39.653465,812 N CORNWALL AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_385_11,-74.9447165,39.537808,810 N CORNWALL AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_385_12,-74.9400025,39.51186,808 N CORNWALL AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_385_13,-74.6729105,39.510868,806 N CORNWALL AVE,VENTNOR CITY,17,1977,1,COM10,3003 -0122_385_14,-74.50563845,39.40843884,804 N CORNWALL AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_385_15,-74.526008,39.38936,802 N CORNWALL AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_385_16,-74.51147909,39.32206616,6101 MARSHALL AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_385_2,-74.5211225,39.323262,803 N CAMBRIDGE AVE,VENTNOR CITY,17,1976,1,COM1,3004 -0122_385_3,-74.5144035,39.400473,805 N CAMBRIDGE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_385_4,-74.64529809,39.52871286,807 N CAMBRIDGE AVE,VENTNOR CITY,17,1974,1,RES3A,3001 -0122_385_5,-74.6613815,39.5388895,809 N CAMBRIDGE AVE,VENTNOR CITY,17,1974,1,RES3B,3001 -0122_385_6,-74.942159,39.5178525,811 N CAMBRIDGE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_385_7,-74.9504655,39.5328495,813 N CAMBRIDGE AVE,VENTNOR CITY,17,1974,1,RES1,3001 -0122_385_8,-74.767993,39.6530685,6102 BURK AVE,VENTNOR CITY,17,1978,1,RES3A,3001 -0122_385_9,-74.79013106,39.66834876,6100 BURK AVE,VENTNOR CITY,17,1978,1,RES3A,3001 -0122_386_1,-74.75770103,39.43401234,801 N HARVARD AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_386_10,-74.696763,39.563621,812 N CAMBRIDGE AVE,VENTNOR CITY,17,1978,1,COM1,3004 -0122_386_11,-74.6508405,39.529676,810 N CAMBRIDGE AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_386_12,-74.48194354,39.43396807,808 N CAMBRIDGE AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_386_13,-74.519367,39.388866,806 N CAMBRIDGE AVE,VENTNOR CITY,17,1978,1,COM10,3003 -0122_386_14,-74.513411,39.3250265,804 N CAMBRIDGE AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_386_15,-74.4914805,39.3312695,802 N CAMBRIDGE AVE,VENTNOR CITY,17,1978,1,RES3A,3001 -0122_386_16,-74.8387455,39.4172705,6201 MARSHALL AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_386_2,-74.83902195,39.41925834,803 N HARVARD AVE,VENTNOR CITY,17,1977,1,GOV1,3004 -0122_386_3,-74.499791,39.333241,805 N HARVARD AVE,VENTNOR CITY,17,1975,1,GOV1,3004 -0122_386_4,-74.5109085,39.322164,807 N HARVARD AVE,VENTNOR CITY,17,1978,1,GOV1,3004 -0122_386_5,-74.52035824,39.39118809,809 N HARVARD AVE,VENTNOR CITY,17,1978,1,COM1,3004 -0122_386_6,-74.5047175,39.410723,811 N HARVARD AVE,VENTNOR CITY,17,1978,1,RES1,3001 -0122_386_7,-74.619553,39.554197,813 N HARVARD AVE,VENTNOR CITY,17,1977,1,RES3A,3001 -0122_386_8,-74.9466145,39.5202115,815 N HARVARD AVE,VENTNOR CITY,17,1978,1,COM1,3004 -0122_386_9,-74.938734,39.5210975,6200 BURK AVE,VENTNOR CITY,17,1978,1,COM1,3004 -0122_39_1,-74.64554694,39.62231969,111 S MELBOURNE AVE,VENTNOR CITY,17,1977,1,COM1,3004 -0122_39_10.01,-74.641629,39.39819601,106 S PITTSBURGH AVE,VENTNOR CITY,20,1995,1,RES1,3004 -0122_39_12,-74.70735745,39.56117656,110 S PITTSBURGH AVE,VENTNOR CITY,19,1990,1,RES1,3001 -0122_39_2,-74.82603253,39.56907767,109 S MELBOURNE AVE,VENTNOR CITY,20,1980,1,COM1,3004 -0122_39_3,-74.4404275,39.3658265,107 S MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_39_4,-74.78854355,39.64057393,105 S MELBOURNE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_39_5,-74.81599623,39.65629689,103 S MELBOURNE AVE,VENTNOR CITY,18,1911,1,RES3B,3001 -0122_39_6,-74.42265129,39.36759216,7106 ATLANTIC AVE,VENTNOR CITY,19,1940,1,RES3A,3001 -0122_39_7,-74.527529,39.4460485,100 S PITTSBURGH AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_39_8,-74.41039444,39.36699,102 S PITTSBURGH AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_4_1,-74.62011556,39.43630195,115 S AUSTIN AVE,VENTNOR CITY,20,1998,1,RES3A,3001 -0122_4_10,-74.6041485,39.328571,108 S MARION AVE,VENTNOR CITY,18,1910,1,RES3A,3001 -0122_4_11,-74.635379,39.4799135,110 S MARION AVE,VENTNOR CITY,18,1920,1,GOV1,3004 -0122_4_2,-74.70738733,39.42184034,109 S AUSTIN AVE,VENTNOR CITY,18,1920,1,RES3B,3001 -0122_4_3,-74.55296087,39.35757399,107 S AUSTIN AVE,VENTNOR CITY,17,1920,1,COM1,3004 -0122_4_4,-74.64663752,39.40501666,105 S AUSTIN AVE,VENTNOR CITY,17,1920,1,COM1,3004 -0122_4_5,-74.81642208,39.49833972,103 S AUSTIN AVE,VENTNOR CITY,17,1910,1,COM1,3004 -0122_4_6,-74.65432413,39.54108538,101 S AUSTIN AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_4_7,-74.67225867,39.39086865,100 S MARION AVE,VENTNOR CITY,16,1970,1,COM4,3004 -0122_4_8.01,-74.65168516,39.52454154,102 S MARION AVE,VENTNOR CITY,17,1900,1,RES3A,3001 -0122_4_8.02,-74.75233454,39.44719008,104 S MARION AVE,VENTNOR CITY,17,1990,1,COM1,3004 -0122_4_9,-74.72490465,39.45960603,106 S MARION AVE,VENTNOR CITY,17,1917,1,COM1,3004 -0122_40_1,-74.6256055,39.543965,111 S BALTIMORE AVE,VENTNOR CITY,19,1930,1,RES1,3001 -0122_40_10,-74.68799632,39.63054566,106 S MELBOURNE AVE,VENTNOR CITY,19,1930,1,RES1,3001 -0122_40_11,-74.69917254,39.57605133,108 S MELBOURNE AVE,VENTNOR CITY,20,2017,1,RES1,3001 -0122_40_12,-74.67574966,39.54760504,110 S MELBOURNE AVE,VENTNOR CITY,18,1970,1,RES3A,3001 -0122_40_2,-74.6861365,39.5552645,109 S BALTIMORE AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_40_3,-74.64336429,39.6224978,107 S BALTIMORE AVE,VENTNOR CITY,19,1946,1,RES1,3001 -0122_40_4,-74.78862086,39.55084795,105 S BALTIMORE AVE,VENTNOR CITY,17,1963,1,RES1,3001 -0122_40_5,-74.42968161,39.36554155,103 S BALTIMORE AVE,VENTNOR CITY,18,2008,1,RES3A,3001 -0122_40_6,-74.65748866,39.39736273,101 S BALTIMORE AVE,VENTNOR CITY,17,1926,1,RES3A,3001 -0122_40_7,-74.78143257,39.67315719,7110 ATLANTIC AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_40_8,-74.51275345,39.43702266,102 S MELBOURNE AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_40_9,-74.44219736,39.35899633,104 S MELBOURNE AVE,VENTNOR CITY,17,1970,1,REL1,3004 -0122_400_1,-74.89358453,39.50171097,"FRED & WASH, MARS",VENTNOR CITY,,1990,1,RES3A,3001 -0122_400_2,-74.44383818,39.36949095,7301 MARSHALL AVE,VENTNOR CITY,,1981,1,COM1,3004 -0122_41_1,-74.64448614,39.53357453,111 S SWARTHMORE AVE,VENTNOR CITY,20,1994,1,RES1,3001 -0122_41_10,-74.6581535,39.548448,106 S BALTIMORE AVE,VENTNOR CITY,18,1930,1,COM1,3004 -0122_41_11,-74.69534028,39.50608346,108 S BALTIMORE AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_41_12,-74.641558,39.529651,112 S BALTIMORE AVE,VENTNOR CITY,18,1930,1,COM3,3004 -0122_41_2,-74.64756467,39.5295765,109 S SWARTHMORE AVE,VENTNOR CITY,19,1930,1,RES3A,3001 -0122_41_3,-74.6893815,39.5135995,107 S SWARTHMORE AVE,VENTNOR CITY,19,1930,1,RES3A,3001 -0122_41_4,-74.68463509,39.55873265,105 S SWARTHMORE AVE,VENTNOR CITY,19,1920,1,RES1,3001 -0122_41_5,-74.69174609,39.58522204,103 S SWARTHMORE AVE,VENTNOR CITY,19,1920,1,RES1,3001 -0122_41_6,-74.6894773,39.63555746,7202 ATLANTIC AVE,VENTNOR CITY,17,1930,1,COM1,3004 -0122_41_7,-74.81157443,39.66168066,7200 ATLANTIC AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_41_8,-74.68024998,39.63545976,102 S BALTIMORE AVE,VENTNOR CITY,18,1925,1,RES1,3001 -0122_41_9,-74.61524243,39.62178814,104 S BALTIMORE AVE,VENTNOR CITY,18,1927,1,RES3B,3001 -0122_412_1,-74.9325962,39.48437227,EAST DRIVE,VENTNOR CITY,,1996,1,RES1,3001 -0122_42_1.01,-74.63816504,39.53633088,111 S WASHINGTON AVE,VENTNOR CITY,18,1970,1,RES1,3001 -0122_42_1.02,-74.6528715,39.5235225,109 S WASHINGTON AVE,VENTNOR CITY,20,2001,1,RES1,3001 -0122_42_2,-74.652069,39.5339455,107 S WASHINGTON AVE,VENTNOR CITY,18,1911,1,COM1,3004 -0122_42_4,-74.68336433,39.55453598,7214 ATLANTIC AVE,VENTNOR CITY,,1920,1,COM4,3004 -0122_42_5,-74.59783861,39.58768017,7212 ATLANTIC AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_42_6,-74.65118498,39.55268222,104 S SWARTHMORE AVE,VENTNOR CITY,18,1923,1,RES1,3001 -0122_42_7,-74.68245534,39.52065151,106 S SWARTHMORE AVE,VENTNOR CITY,18,1925,1,RES1,3001 -0122_42_8,-74.6472345,39.5305255,108 S SWARTHMORE AVE,VENTNOR CITY,19,1930,1,RES1,3001 -0122_43_1,-74.57525416,39.54092047,111 S MARTINDALE,VENTNOR CITY,19,1999,1,RES3A,3001 -0122_43_10,-74.63165999,39.53268117,106 S WASHINGTON AVE,VENTNOR CITY,20,1930,1,RES3A,3001 -0122_43_11,-74.641102,39.527124,108 S WASHINGTON AVE,VENTNOR CITY,19,1970,1,RES1,3001 -0122_43_12,-74.64791126,39.51899439,110 S WASHINGTON AVE,VENTNOR CITY,20,2015,1,RES1,3001 -0122_43_2,-74.62454248,39.52830034,109 S MARTINDALE AVE,VENTNOR CITY,19,1940,1,COM1,3004 -0122_43_3,-74.639113,39.524709,107 S MARTINDALE AVE,VENTNOR CITY,19,2011,1,RES1,3001 -0122_43_4,-74.634406,39.532266,105 S MARTINDALE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_43_5,-74.64970066,39.53414103,103 S MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_43_6,-74.64312485,39.53225304,7302 ATLANTIC AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_43_7,-74.65235898,39.53180734,7300 ATLANTIC AVE,VENTNOR CITY,17,1922,1,COM1,3004 -0122_43_8,-74.64147865,39.53267154,102 S WASHINGTON AVE,VENTNOR CITY,,1925,1,RES1,3001 -0122_43_9,-74.64196066,39.53506047,104 S WASHINGTON AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_44_1.01,-74.726158,39.4603155,111 S FREDERICKSBURG,VENTNOR CITY,22,2017,1,RES1,3001 -0122_44_1.02,-74.724486,39.4581655,109 S FREDERICKSBURG,VENTNOR CITY,18,1920,1,COM1,3004 -0122_44_10,-74.56573364,39.55457969,108 S MARTINDALE AVE,VENTNOR CITY,18,1922,1,RES3A,3001 -0122_44_11,-74.596547,39.5227965,110 S MARTINDALE AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_44_2,-74.71271999,39.46996317,107 S FREDERICKSBURG,VENTNOR CITY,18,1926,1,RES1,3001 -0122_44_3,-74.71302577,39.46964766,105 S FREDERICKSBURG,VENTNOR CITY,18,1925,1,RES3A,3001 -0122_44_4,-74.7129635,39.4663625,103 S FREDERICKSBURG,VENTNOR CITY,17,1935,1,RES1,3001 -0122_44_5,-74.71324755,39.46613184,7310 ATLANTIC AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_44_6,-74.64435434,39.53520597,7308 ATLANTIC AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_44_7,-74.6375235,39.533558,102 S MARTINDALE AVE,VENTNOR CITY,18,1925,1,RES3A,3001 -0122_44_8,-74.629282,39.524631,104 S MARTINDALE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_44_9,-74.5768755,39.549357,106 S MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_45_1,-74.670411,39.3471505,4803 ATLANTIC AVE,VENTNOR CITY,,1932,3,RES1,3001 -0122_45_10,-74.53005203,39.38487616,9 S VASSAR SQUARE,VENTNOR CITY,,1920,4,RES1,3001 -0122_45_11,-74.5052415,39.4079365,7 S VASSAR SQUARE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_45_12,-74.50390814,39.42647356,5 S VASSAR SQUARE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_45_13,-74.5168545,39.4598645,1 S VASSAR SQUARE,VENTNOR CITY,17,1900,1,RES3B,3001 -0122_45_14,-74.4578385,39.4739635,4802 VENTNOR AVE,VENTNOR CITY,,1928,1,COM1,3004 -0122_45_15,-74.47134151,39.49240383,4800 VENTNOR AVE,VENTNOR CITY,,1928,1,COM10,3003 -0122_45_16,-74.45931289,39.46478743,8 S JACKSON AVE,VENTNOR CITY,17,1925,1,RES3B,3001 -0122_45_17,-74.48951006,39.4348683,10 S JACKSON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_45_19,-74.5038975,39.4064035,12 S JACKSON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_45_2,-74.4952755,39.334789,4805 ATLANTIC AVE,VENTNOR CITY,47,1930,3,COM1,3004 -0122_45_20,-74.3657725,39.4220435,14 S JACKSON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_45_21,-74.655924,39.4158945,16 S JACKSON AVE,VENTNOR CITY,17,1905,1,RES3B,3001 -0122_45_22,-74.40091458,39.39114145,18 S JACKSON AVE,VENTNOR CITY,17,1907,1,RES1,3001 -0122_45_23,-74.39188615,39.39134906,20 S JACKSON AVE,VENTNOR CITY,17,1920,1,RES3B,3001 -0122_45_24,-74.72368632,39.45756049,22 S JACKSON AVE,VENTNOR CITY,47,1929,3,RES1,3001 -0122_45_25,-74.48491392,39.49699701,24 S JACKSON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_45_3,-74.46022037,39.35556332,4807 ATLANTIC AVE,VENTNOR CITY,,1922,3,RES1,3001 -0122_45_5,-74.49818677,39.47261449,21 S VASSAR SQUARE,VENTNOR CITY,17,1908,1,RES3A,3001 -0122_45_6,-74.725162,39.4545805,19 S VASSAR SQUARE,VENTNOR CITY,,1939,1,RES3A,3001 -0122_45_7,-74.39284003,39.38737316,17 S VASSAR SQUARE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_45_8,-74.4036775,39.38994036,15 S VASSAR SQUARE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_45_9,-74.62494568,39.42005759,11 S VASSAR SQUARE,VENTNOR CITY,17,1920,1,COM1,3004 -0122_46_1,-74.500884,39.33341,26 S VASSAR SQUARE,VENTNOR CITY,,1930,1,RES3A,3001 -0122_46_10,-74.386889,39.394665,9 S BATON ROUGE AVE,VENTNOR CITY,17,1925,1,RES1,3004 -0122_46_11,-74.40062432,39.38905773,7 S BATON ROUGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_46_12,-74.648606,39.406126,5 S BATON ROUGE AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_46_13,-74.37779777,39.41398627,3 S BATON ROUGE AVE,VENTNOR CITY,17,1919,1,RES1,3001 -0122_46_14,-74.52596032,39.39814539,1 S BATON ROUGE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_46_15,-74.5188072,39.41271775,4812 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_46_16,-74.52604913,39.39679832,4 S VASSAR SQUARE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_46_17,-74.57326972,39.44825368,6 S VASSAR SQUARE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_46_18,-74.62100164,39.4332644,8 S VASSAR SQUARE,VENTNOR CITY,18,1950,1,RES1,3001 -0122_46_19,-74.36868904,39.40815446,10 S VASSAR SQUARE,VENTNOR CITY,17,1928,1,GOV1,3004 -0122_46_2,-74.44200533,39.35796301,4825-4827 ATLANTIC AVE,VENTNOR CITY,,1930,1,COM10,3003 -0122_46_20,-74.3850065,39.397283,12 S VASSAR SQUARE,VENTNOR CITY,17,1930,1,COM1,3004 -0122_46_21,-74.731222,39.4551595,14 S VASSAR SQUARE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_46_22,-74.4904955,39.495419,16 S VASSAR SQUARE,VENTNOR CITY,17,1930,1,IND3,3004 -0122_46_23,-74.54354715,39.37610046,18 S VASSAR SQUARE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_46_24,-74.50541211,39.33824733,22 S VASSAR SQUARE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_46_25,-74.5225755,39.320258,24 S VASSAR SQUARE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_46_3,-74.8021925,39.6416555,4829 ATLANTIC AVE,VENTNOR CITY,,1960,4,RES1,3001 -0122_46_4,-74.500613,39.331448,25 S BATON ROUGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_46_5,-74.52444048,39.31893366,21-23 S BATON ROUGE AVE,VENTNOR CITY,45,1939,1,RES1,3001 -0122_46_6,-74.49964381,39.33760986,19 S BATON ROUGE AVE,VENTNOR CITY,17,1925,1,RES1,3004 -0122_46_7,-74.54965936,39.37592005,15 S BATON ROUGE AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_46_8,-74.5057315,39.492374,13 S BATON ROUGE AVE,VENTNOR CITY,17,1937,1,RES1,3001 -0122_46_9,-74.75718065,39.44545033,11 S BATON ROUGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_47_1,-74.95192695,39.51317624,4901 ATLANTIC AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_47_10,-74.66733168,39.36148103,9 S MARION AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_47_11,-74.48647521,39.49674012,7 S MARION AVE,VENTNOR CITY,17,1919,1,COM1,3004 -0122_47_12,-74.74765852,39.45132558,5 S MARION AVE,VENTNOR CITY,17,1910,1,RES3A,3001 -0122_47_13,-74.37534069,39.39764412,3 S MARION AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_47_14,-74.4071145,39.381046,1 S MARION AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_47_15,-74.36862623,39.41127809,2 S BATON ROUGE AVE,VENTNOR CITY,17,1905,1,COM3,3004 -0122_47_16,-74.399544,39.390051,4 S BATON ROUGE AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_47_17,-74.38068732,39.39978732,6 S BATON ROUGE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_47_18,-74.75300509,39.4518655,8 S BATON ROUGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_47_19,-74.505934,39.492676,10 S BATON ROUGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_47_2,-74.64169565,39.45692122,4903 ATLANTIC AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_47_20,-74.5501995,39.3737855,12 S BATON ROUGE AVE,VENTNOR CITY,17,1930,1,COM4,3004 -0122_47_21,-74.4997935,39.336105,14 S BATON ROUGE AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_47_23,-74.504101,39.329726,18 S BATON ROUGE AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_47_24,-74.42832222,39.35961127,20 S BATON ROUGE AVE,VENTNOR CITY,17,1930,2,COM1,3004 -0122_47_25,-74.78655771,39.66077468,22 S BATON ROUGE AVE,VENTNOR CITY,17,1920,1,RES3B,3001 -0122_47_3,-74.94615735,39.51801793,4905 ATLANTIC AVE,VENTNOR CITY,,1908,1,GOV1,3004 -0122_47_4,-74.85224713,39.61641763,4907 ATLANTIC AVE,VENTNOR CITY,17,1909,1,COM1,3004 -0122_47_5,-74.6934319,39.48391238,21 S MARION AVE,VENTNOR CITY,17,1905,1,RES3A,3001 -0122_47_6,-74.8830735,39.5851385,19 S MARION AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_47_7,-74.81845599,39.64299307,17 S MARION AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_47_8,-74.5004555,39.326727,15 S MARION AVE,VENTNOR CITY,17,1907,1,RES1,3001 -0122_47_9,-74.50757558,39.34126341,11 S MARION AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_48_1,-74.7797325,39.6083125,4909 ATLANTIC AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_48_10,-74.5065775,39.3397705,8 S MARION AVE,VENTNOR CITY,17,1902,1,RES3A,3001 -0122_48_11,-74.54957435,39.37599905,4 S MARION AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_48_12,-74.50336672,39.50389151,2 S MARION AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_48_2,-74.8550735,39.5628795,4911 ATLANTIC AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_48_3,-74.80860561,39.63034628,22 S MARION AVE,VENTNOR CITY,17,1907,2,COM8,3004 -0122_48_4,-74.923977,39.508898,20 S MARION AVE,VENTNOR CITY,17,1927,2,COM1,3004 -0122_48_5,-74.70072116,39.4437595,18 S MARION AVE,VENTNOR CITY,17,1905,1,RES1,3004 -0122_48_6,-74.9521118,39.53741816,16 S MARION AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_48_7,-74.80761722,39.64617467,14 S MARION AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_48_8,-74.5239225,39.314901,12 S MARION AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_48_9,-74.51368918,39.32150534,10 S MARION AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_49_1,-74.62614934,39.61979172,5001 ATLANTIC AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_49_10,-74.50762298,39.33483189,5000 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_49_2,-74.441711,39.3690275,27 S OAKLAND AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_49_3,-74.76908234,39.59174298,25 S OAKLAND AVE,VENTNOR CITY,17,1949,1,RES1,3001 -0122_49_4,-74.87662404,39.60413881,23 S OAKLAND AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_49_5,-74.92681856,39.48236476,21 S OAKLAND AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_49_6,-74.68886713,39.44040472,19 S OAKLAND AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_49_7,-74.88384343,39.56389584,17 S OAKLAND AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_49_8,-74.83087614,39.64627037,15 S OAKLAND AVE,VENTNOR CITY,,1928,3,RES3A,3004 -0122_49_9,-74.490642,39.3335095,11 S OAKLAND AVE,VENTNOR CITY,,1922,1,RES3A,3001 -0122_5_1,-74.7135865,39.471507,5000 BOARDWALK,VENTNOR CITY,,1960,1,COM1,3004 -0122_50_1,-74.63013083,39.39231425,5003 ATLANTIC AVE,VENTNOR CITY,,1930,1,RES3A,3004 -0122_50_10,-74.91187772,39.49971342,15 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_50_11,-74.62953978,39.46493862,11 S NASHVILLE AVE,VENTNOR CITY,,1925,1,RES1,3001 -0122_50_12,-74.78739015,39.64220096,1 S NASHVILLE AVE,VENTNOR CITY,,1929,1,RES1,3001 -0122_50_17,-74.50178614,39.33022214,2 S OAKLAND AVE,VENTNOR CITY,,1929,1,RES1,3001 -0122_50_18,-74.97516753,39.51261106,10 S OAKLAND AVE,VENTNOR CITY,,1929,1,RES1,3001 -0122_50_19,-74.67025859,39.45474429,14 S OAKLAND AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_50_2,-74.63722965,39.53484538,5007 ATLANTIC AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_50_20,-74.913852,39.5109775,16 S OAKLAND AVE,VENTNOR CITY,17,1920,2,COM1,3004 -0122_50_21,-74.79659555,39.6200951,18 S OAKLAND AVE,VENTNOR CITY,47,1955,2,RES1,3001 -0122_50_22,-74.72136188,39.57497149,20 S OAKLAND AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_50_23,-74.440499,39.370733,22 S OAKLAND AVE,VENTNOR CITY,17,1920,1,RES3B,3001 -0122_50_24,-74.69424844,39.58890485,24 S OAKLAND AVE,VENTNOR CITY,17,1925,2,GOV1,3004 -0122_50_25,-74.61053432,39.35167701,26 S OAKLAND AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_50_3,-74.54138615,39.53362893,29 S NASHVILLE AVE,VENTNOR CITY,17,1940,1,COM1,3004 -0122_50_4,-74.700927,39.5774065,27 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_50_5,-74.70648513,39.58129935,25 S NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_50_6,-74.63098542,39.36129426,23 S NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_50_7,-74.44283782,39.37334956,21 S NASHVILLE AVE,VENTNOR CITY,17,1919,1,RES1,3001 -0122_50_8,-74.86930836,39.56072336,19 S NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_50_9,-74.7928255,39.6340575,17 S NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_51_1,-74.8437591,39.37298181,5105 ATLANTIC AVE,VENTNOR CITY,45,1960,2,COM1,3004 -0122_51_10,-74.712817,39.5830625,5 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_11,-74.86446644,39.60020634,3 S HILLSIDE AVE,VENTNOR CITY,17,1925,2,RES1,3001 -0122_51_12,-74.82319704,39.62980166,1 S HILLSIDE AVE,VENTNOR CITY,,1913,1,RES1,3001 -0122_51_13,-74.66199171,39.44550946,2 S NASHVILLE AVE,VENTNOR CITY,,1918,2,RES1,3001 -0122_51_14,-74.91785662,39.52312848,4 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_51_15,-74.810598,39.6240665,6 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_16,-74.762049,39.6342985,8 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_17,-74.36932032,39.40767938,10 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_18,-74.839848,39.541909,12 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_19,-74.63100994,39.34807475,14 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_2,-74.57193304,39.33908828,5107 ATLANTIC AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_51_20,-74.63572731,39.40952299,16 S NASHVILLE AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_51_21,-74.66024594,39.54081142,18 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_22,-74.63581232,39.51590642,20 S NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_23,-74.79391399,39.44272431,22 S NASHVILLE AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_51_24.01,-74.62579561,39.4342325,5101 ATLANTIC AVE,VENTNOR CITY,19,2018,1,RES1,3001 -0122_51_24.02,-74.72686645,39.4559917,5103 ATLANTIC AVE,VENTNOR CITY,17,1903,1,RES1,3001 -0122_51_3,-74.63999975,39.41180942,23 S HILLSIDE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_51_4,-74.75855515,39.44863167,21 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_5,-74.556286,39.5333835,19 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_6,-74.64996666,39.53203595,17 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_51_7.01,-74.64487885,39.39738496,15 S HILLSIDE AVE,VENTNOR CITY,17,1900,1,GOV1,3004 -0122_51_8,-74.6355595,39.6253565,9 S HILLSIDE AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_51_9,-74.441894,39.368776,7 S HILLSIDE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_52_1,-74.66975507,39.49346465,24 S HILLSIDE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_52_10,-74.63663315,39.36555973,6 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_52_11,-74.42809232,39.36836301,4 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_52_12,-74.37126935,39.40675397,5116 VENTNOR AVE,VENTNOR CITY,49,1925,3,RES1,3001 -0122_52_2,-74.69273,39.4494405,5115 ATLANTIC AVE,VENTNOR CITY,17,1925,2,RES1,3001 -0122_52_3,-74.81167367,39.40168449,22 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_52_4,-74.55621407,39.35671399,20 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_52_5,-74.728682,39.454226,18 S HILLSIDE AVE,VENTNOR CITY,,0,1,COM1,3004 -0122_52_6,-74.5708025,39.4421585,16 S HILLSIDE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_52_7,-74.87601655,39.47538653,14 S HILLSIDE AVE,VENTNOR CITY,,0,1,RES3A,3001 -0122_52_8,-74.64506772,39.5250755,12 S HILLSIDE AVE,VENTNOR CITY,,1925,1,RES3A,3001 -0122_52_9,-74.682663,39.383744,8-10 S HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_53_10,-74.7113624,39.47058972,13 S WEYMOUTH AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_53_11,-74.5660145,39.5314815,11 S WEYMOUTH AVE,VENTNOR CITY,,2014,1,RES1,3001 -0122_53_12,-74.624391,39.3521065,5200-04 VENTNOR AVE,VENTNOR CITY,,1950,3,COM4,3004 -0122_53_2,-74.6180035,39.4374215,29 S WEYMOUTH AVE,VENTNOR CITY,,1906,1,RES1,3001 -0122_53_3,-74.64014023,39.44962018,27 S WEYMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_53_4,-74.68886288,39.44732926,25 S WEYMOUTH AVE,VENTNOR CITY,,1920,3,RES3A,3001 -0122_53_5,-74.75688644,39.43340026,23 S WEYMOUTH AVE,VENTNOR CITY,17,1925,3,RES3A,3001 -0122_53_6,-74.59981828,39.32912189,21 S WEYMOUTH AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_53_7,-74.57380391,39.35868249,19 S WEYMOUTH AVE,VENTNOR CITY,,1950,1,GOV1,3004 -0122_53_8,-74.724108,39.454689,17 S WEYMOUTH AVE,VENTNOR CITY,17,1925,2,COM1,3004 -0122_53_9,-74.68778015,39.41920778,15 S WEYMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_54_1,-74.57973966,39.43007374,5205 ATLANTIC AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_54_10,-74.5563805,39.4752815,21 S LITTLE ROCK AVE,VENTNOR CITY,35,1925,1,RES1,3001 -0122_54_11,-74.61987349,39.43649093,19 S LITTLE ROCK AVE,VENTNOR CITY,,1916,1,GOV1,3004 -0122_54_12,-74.6941525,39.447861,17 S LITTLE ROCK AVE,VENTNOR CITY,45,1890,2,RES1,3001 -0122_54_13,-74.73448539,39.43530156,15 S LITTLE ROCK AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_54_14,-74.5682771,39.35094248,11 S LITTLE ROCK AVE,VENTNOR CITY,17,1902,1,RES3A,3001 -0122_54_15,-74.65477738,39.52146128,5212 VENTNOR AVE,VENTNOR CITY,,1980,1,RES1,3001 -0122_54_16,-74.63290916,39.55533297,5206 VENTNOR AVE,VENTNOR CITY,,0,3,RES1,3001 -0122_54_17,-74.76203704,39.44626395,8 S WEYMOUTH AVE,VENTNOR CITY,,1950,1,RES1,3001 -0122_54_18,-74.6269755,39.41376,12 S WEYMOUTH AVE,VENTNOR CITY,45,1940,1,RES1,3004 -0122_54_19,-74.79837435,39.4328248,14 S WEYMOUTH AVE,VENTNOR CITY,17,1920,1,COM3,3004 -0122_54_2,-74.63369584,39.43376107,5209 ATLANTIC AVE,VENTNOR CITY,,1912,4,RES1,3001 -0122_54_20,-74.5674145,39.350182,16 S WEYMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_54_21,-74.80636583,39.37820156,18 S WEYMOUTH AVE,VENTNOR CITY,20,1925,1,RES1,3001 -0122_54_22,-74.69390798,39.49417484,20 S WEYMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_54_23,-74.6526575,39.4570115,22 S WEYMOUTH AVE,VENTNOR CITY,17,1925,2,RES3A,3001 -0122_54_24,-74.60460107,39.4837177,24 S WEYMOUTH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_54_25,-74.53219116,39.47153017,28 S WEYMOUTH AVE,VENTNOR CITY,17,1925,2,COM3,3004 -0122_54_3,-74.62509318,39.41140249,5211 ATLANTIC AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_54_4,-74.61291152,39.43302536,5215 ATLANTIC AVE,VENTNOR CITY,,1920,1,GOV1,3004 -0122_54_5,-74.63799556,39.42994633,27 S LITTLE ROCK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_54_6,-74.5879385,39.428393,25 S LITTLE ROCK AVE,VENTNOR CITY,,0,1,RES3A,3001 -0122_54_7,-74.62351312,39.38408732,23 1/2 S LITTLE ROCK AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_54_8,-74.558236,39.468179,23 S LITTLE ROCK AVE,VENTNOR CITY,33,1925,3,COM1,3004 -0122_54_9,-74.61813748,39.43688214,21 1/2 S LITTLE ROCK AVE,VENTNOR CITY,35,1925,2,GOV1,3004 -0122_55_1,-74.57230582,39.4294888,5301 ATLANTIC AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_55_10,-74.71589712,39.43618639,7 S VICTORIA AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_55_11,-74.6012578,39.3296685,5 S VICTORIA AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_55_12,-74.85403729,39.36985458,1 S VICTORIA AVE,VENTNOR CITY,,1937,2,RES3A,3001 -0122_55_13,-74.6706965,39.3698205,5300 VENTNOR AVE,VENTNOR CITY,,1920,3,RES1,3001 -0122_55_2,-74.55128685,39.40635506,5305 ATLANTIC AVE,VENTNOR CITY,,1950,1,RES1,3001 -0122_55_3,-74.60152197,39.42302768,23 S VICTORIA AVE,VENTNOR CITY,,0,1,RES3A,3001 -0122_55_4,-74.671418,39.3847225,21 S VICTORIA AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_55_5,-74.6464345,39.433082,19 S VICTORIA AVE,VENTNOR CITY,18,1925,1,COM1,3004 -0122_55_6,-74.60138523,39.42046696,17 S VICTORIA AVE,VENTNOR CITY,17,1920,1,COM10,3003 -0122_55_7,-74.6187059,39.43772524,15 S VICTORIA AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_55_8,-74.56419426,39.50241068,11 S VICTORIA AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_55_9,-74.68438513,39.44152677,9 S VICTORIA AVE,VENTNOR CITY,17,1920,1,RES3B,3001 -0122_56_1,-74.60568857,39.48148715,5307 ATLANTIC AVE,VENTNOR CITY,,1930,1,RES3B,3001 -0122_56_10,-74.62386321,39.37930699,7 S SURREY AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_56_11,-74.55297422,39.47580655,5 S SURREY AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_56_13,-74.69797423,39.43965609,5306 VENTNOR AVE,VENTNOR CITY,18,1910,1,COM1,3004 -0122_56_14,-74.75581744,39.42914124,2 S VICTORIA AVE,VENTNOR CITY,,1898,1,RES1,3001 -0122_56_15,-74.5497365,39.4672035,8 S VICTORIA AVE,VENTNOR CITY,17,1915,1,COM1,3004 -0122_56_16,-74.5888125,39.431708,10 S VICTORIA AVE,VENTNOR CITY,17,1925,4,RES1,3001 -0122_56_17,-74.62854162,39.43337129,14 S VICTORIA AVE,VENTNOR CITY,17,1920,1,COM1,3004 -0122_56_18,-74.6126935,39.4284825,16 S VICTORIA AVE,VENTNOR CITY,17,1920,1,COM10,3003 -0122_56_19,-74.58780143,39.43274111,18 S VICTORIA AVE,VENTNOR CITY,17,1900,1,COM10,3003 -0122_56_2,-74.5347793,39.40043789,5309-5315 ATLANTIC AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_56_20,-74.571148,39.4134255,20 S VICTORIA AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_56_3,-74.5877,39.329415,25 S SURREY AVE,VENTNOR CITY,,1922,1,RES1,3001 -0122_56_5,-74.56119494,39.40945376,19 S SURREY AVE,VENTNOR CITY,17,1920,1,RES4,3003 -0122_56_6,-74.6085891,39.41759441,17 S SURREY AVE,VENTNOR CITY,17,1911,1,RES1,3001 -0122_56_7,-74.60589041,39.4306888,15 S SURREY AVE,VENTNOR CITY,17,1911,1,COM10,3003 -0122_56_8,-74.63173239,39.42674075,11 S SURREY AVE,VENTNOR CITY,17,1911,1,COM1,3004 -0122_56_9,-74.54399166,39.45731171,9 S SURREY AVE,VENTNOR CITY,17,1908,1,RES3A,3001 -0122_57_1,-74.566865,39.372372,5401 ATLANTIC AVE,VENTNOR CITY,18,1927,1,COM1,3004 -0122_57_10,-74.65560946,39.36895636,5414 VENTNOR AVE,VENTNOR CITY,17,1910,1,COM1,3004 -0122_57_11,-74.63192649,39.43327147,5406 VENTNOR AVE,VENTNOR CITY,18,1918,1,RES3A,3001 -0122_57_12,-74.59528962,39.42906271,5404 VENTNOR AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_57_13,-74.6059525,39.439501,5402 VENTNOR AVE,VENTNOR CITY,17,1938,1,COM1,3003 -0122_57_14,-74.66843254,39.3726678,2 S SURREY AVE,VENTNOR CITY,17,1930,1,COM1,3004 -0122_57_15,-74.575367,39.429883,4 S SURREY AVE,VENTNOR CITY,17,1907,1,COM1,3004 -0122_57_16,-74.60839749,39.39392028,6 S SURREY AVE,VENTNOR CITY,18,1920,1,COM1,3004 -0122_57_17,-74.55385323,39.47237654,8 S SURREY AVE,VENTNOR CITY,17,1898,1,COM1,3004 -0122_57_18,-74.531891,39.38764,16 S SURREY AVE,VENTNOR CITY,18,1991,1,COM1,3004 -0122_57_2,-74.5791385,39.344428,5403 ATLANTIC AVE,VENTNOR CITY,18,1897,1,COM1,3004 -0122_57_3,-74.57355363,39.34970435,5405 ATLANTIC AVE,VENTNOR CITY,18,1927,1,COM1,3004 -0122_57_5,-74.54546159,39.3698132,5407 ATLANTIC AVE,VENTNOR CITY,18,1928,2,COM1,3003 -0122_57_6,-74.587244,39.3271035,11 S SUFFOLK AVE,VENTNOR CITY,18,1926,1,COM1,3004 -0122_57_7,-74.59181025,39.37629639,7 S SUFFOLK AVE,VENTNOR CITY,18,1926,1,COM10,3004 -0122_57_8,-74.56533188,39.50289837,5 S SUFFOLK AVE,VENTNOR CITY,18,1920,1,COM1,3004 -0122_57_9,-74.567486,39.412037,3 S SUFFOLK AVE,VENTNOR CITY,18,1920,1,COM1,3004 -0122_58_1,-74.57834873,39.33992855,5501 ATLANTIC AVE,VENTNOR CITY,18,1948,1,COM1,3004 -0122_58_10,-74.56792901,39.38693562,1 S SOMERSET AVE,VENTNOR CITY,18,1912,1,RES1,3001 -0122_58_11.01,-74.5574505,39.4708935,5504 VENTNOR AVE,VENTNOR CITY,18,1985,1,RES1,3001 -0122_58_11.02,-74.61117061,39.37608475,5502 VENTNOR AVE,VENTNOR CITY,18,1985,1,COM3,3004 -0122_58_12.01,-74.5381345,39.41949,2 S SUFFOLK AVE,VENTNOR CITY,18,1985,1,COM1,3004 -0122_58_13,-74.53143567,39.38614426,8 S SUFFOLK AVE,VENTNOR CITY,18,1912,1,RES1,3001 -0122_58_14,-74.5915945,39.3324365,12 S SUFFOLK AVE,VENTNOR CITY,18,1930,1,RES3A,3001 -0122_58_15,-74.57249181,39.33620497,14 S SUFFOLK AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_58_16,-74.62625977,39.35771106,16 S SUFFOLK AVE,VENTNOR CITY,18,1912,1,RES3A,3001 -0122_58_2,-74.57201332,39.34984697,5503 ATLANTIC AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_58_3,-74.60999058,39.3158549,5505 ATLANTIC AVE,VENTNOR CITY,18,1919,1,COM3,3004 -0122_58_4,-74.46235146,39.53608332,5515 ATLANTIC AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_58_5,-74.56159539,39.35837668,17 S SOMERSET AVE,VENTNOR CITY,18,1944,1,RES1,3001 -0122_58_6,-74.5842165,39.3579585,15 S SOMERSET AVE,VENTNOR CITY,18,1965,1,COM3,3004 -0122_58_7,-74.63304127,39.36481834,11 S SOMERSET AVE,VENTNOR CITY,18,1920,1,RES3B,3001 -0122_58_8,-74.56313683,39.35970242,5 S SOMERSET AVE,VENTNOR CITY,17,1935,1,RES3A,3001 -0122_58_9,-74.53774,39.3796665,3 S SOMERSET AVE,VENTNOR CITY,18,1938,1,RES1,3001 -0122_59_1,-74.5055501,39.33437138,5601 ATLANTIC AVE,VENTNOR CITY,18,1909,1,RES3A,3001 -0122_59_10,-74.54764214,39.37598795,5606 VENTNOR AVE,VENTNOR CITY,17,1922,1,RES3A,3001 -0122_59_11,-74.56327027,39.36379728,5604 VENTNOR AVE,VENTNOR CITY,18,1946,1,RES1,3001 -0122_59_12,-74.55292192,39.38496641,2 S SOMERSET AVE,VENTNOR CITY,18,1920,1,COM3,3004 -0122_59_14,-74.604657,39.3144915,14 S SOMERSET AVE,VENTNOR CITY,18,1939,1,RES4,3004 -0122_59_15,-74.463856,39.4976575,16 S SOMERSET AVE,VENTNOR CITY,18,1925,1,RES1,3001 -0122_59_2,-74.44976574,39.35774845,5603 ATLANTIC AVE,VENTNOR CITY,19,1922,1,RES3A,3001 -0122_59_3,-74.6555425,39.417649,5605 ATLANTIC AVE,VENTNOR CITY,18,1930,1,RES3B,3001 -0122_59_4,-74.48148654,39.44256121,5615 ATLANTIC AVE,VENTNOR CITY,17,1905,1,RES3B,3001 -0122_59_5,-74.4644546,39.3545898,11 S OXFORD AVE,VENTNOR CITY,18,1945,1,RES3B,3001 -0122_59_6,-74.46420088,39.47258022,9 S OXFORD AVE,VENTNOR CITY,18,1920,1,COM1,3004 -0122_59_7.02,-74.59234907,39.33290333,7 S OXFORD AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_59_8,-74.570569,39.3649125,3 S OXFORD AVE,VENTNOR CITY,18,1910,1,RES3B,3001 -0122_59_9,-74.65866225,39.34673166,1 S OXFORD AVE,VENTNOR CITY,18,1918,1,GOV1,3004 -0122_6_2,-74.54307273,39.43638458,109 S NASHVILLE AVE,VENTNOR CITY,17,1900,1,RES3A,3001 -0122_6_3,-74.5384755,39.4688165,107 S NASHVILLE AVE,VENTNOR CITY,18,1900,2,RES3A,3001 -0122_6_4,-74.55352725,39.49239741,105 S NASHVILLE AVE,VENTNOR CITY,17,1900,1,RES3A,3001 -0122_6_5,-74.69005279,39.44870627,103 S NASHVILLE AVE,VENTNOR CITY,18,2007,2,RES3B,3001 -0122_6_6,-74.77728,39.4234495,5010 ATLANTIC AVE,VENTNOR CITY,17,1950,1,RES3B,3001 -0122_6_7,-74.57115033,39.34282594,100 S OAKLAND AVE,VENTNOR CITY,17,1922,1,COM10,3003 -0122_6_8,-74.78678938,39.41860165,102 S OAKLAND AVE,VENTNOR CITY,,1900,1,RES3B,3001 -0122_6_9,-74.652398,39.4571235,104 S OAKLAND AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_60_1,-74.5987853,39.31018592,5701 ATLANTIC AVE,VENTNOR CITY,18,1897,1,COM3,3004 -0122_60_10,-74.61448766,39.32528652,5702 VENTNOR AVE,VENTNOR CITY,17,1978,1,RES3A,3001 -0122_60_11,-74.56215363,39.36538879,2 S OXFORD AVE,VENTNOR CITY,18,1910,1,RES1,3001 -0122_60_12,-74.47432995,39.48896822,2 1/2 S OXFORD AVE,VENTNOR CITY,17,1977,1,RES1,3001 -0122_60_13,-74.50016686,39.45987112,4 S OXFORD AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_60_14,-74.44458,39.358447,6 S OXFORD AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_60_15,-74.67570563,39.38072561,8 S OXFORD AVE,VENTNOR CITY,18,1925,1,RES3A,3001 -0122_60_16,-74.50779432,39.42495141,10 S OXFORD AVE,VENTNOR CITY,18,1906,1,RES3A,3001 -0122_60_2,-74.637902,39.3233255,5703 ATLANTIC AVE,VENTNOR CITY,19,1985,1,RES3A,3001 -0122_60_3,-74.37481484,39.41346825,5705 ATLANTIC AVE,VENTNOR CITY,19,1910,1,GOV1,3004 -0122_60_4,-74.43800009,39.37090318,17 S DUDLEY AVE,VENTNOR CITY,17,1958,1,REL1,3004 -0122_60_5,-74.63092527,39.35183368,15 S DUDLEY AVE,VENTNOR CITY,18,1896,1,RES3A,3001 -0122_60_6,-74.51523434,39.39623267,11 S DUDLEY AVE,VENTNOR CITY,,1897,1,RES3A,3001 -0122_60_7,-74.44152865,39.48657605,9 S DUDLEY AVE,VENTNOR CITY,18,1929,1,RES3A,3001 -0122_60_8,-74.6230385,39.432167,7 S DUDLEY AVE,VENTNOR CITY,18,1910,1,RES1,3001 -0122_61_1,-74.48275698,39.35028532,5801 ATLANTIC AVE,VENTNOR CITY,21,1920,1,RES3A,3001 -0122_61_10,-74.48991383,39.337299,2 S DUDLEY AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_61_11,-74.492626,39.4332525,8 S DUDLEY AVE,VENTNOR CITY,18,1925,1,RES1,3001 -0122_61_12,-74.45012374,39.37067638,20 S DUDLEY AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_61_2,-74.50240783,39.32580805,5805 ATLANTIC AVE,VENTNOR CITY,17,1985,1,RES1,3004 -0122_61_3,-74.46741634,39.34486949,15 S DORSET AVE,VENTNOR CITY,17,1957,1,RES1,3001 -0122_61_4,-74.39277686,39.38817455,9 S DORSET AVE,VENTNOR CITY,18,1965,1,RES3A,3004 -0122_61_5,-74.3670835,39.4218325,7 S DORSET AVE,VENTNOR CITY,18,1918,1,COM1,3004 -0122_61_6,-74.503384,39.487562,5 S DORSET AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_61_7,-74.4874545,39.433956,5808 VENTNOR AVE,VENTNOR CITY,18,1923,1,RES1,3001 -0122_61_8,-74.46685741,39.45469822,5806 VENTNOR AVE,VENTNOR CITY,18,1945,1,RES1,3001 -0122_61_9,-74.64049428,39.43608567,5804 VENTNOR AVE,VENTNOR CITY,18,1920,1,COM1,3004 -0122_62_1,-74.77375566,39.66539348,5901 ATLANTIC AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_62_10,-74.36924232,39.40824358,5904 VENTNOR AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_62_11,-74.510808,39.3855575,5902 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_62_12,-74.501054,39.487152,2 S DORSET AVE,VENTNOR CITY,17,1930,1,REL1,3004 -0122_62_13,-74.3935605,39.388383,6 S DORSET AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_62_14,-74.463832,39.3568655,8 S DORSET AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_62_15,-74.4651065,39.3480115,10 S DORSET AVE,VENTNOR CITY,18,1930,1,RES3B,3001 -0122_62_16,-74.51504979,39.32514801,12 S DORSET AVE,VENTNOR CITY,18,1924,1,RES1,3001 -0122_62_17,-74.51896565,39.31706147,14 S DORSET AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_62_2,-74.919732,39.4981805,5905 ATLANTIC AVE,VENTNOR CITY,17,1960,1,RES3A,3001 -0122_62_3,-74.7952185,39.5997025,19 S DERBY AVE,VENTNOR CITY,18,1965,1,RES1,3001 -0122_62_4,-74.90803536,39.5395774,17 S DERBY AVE,VENTNOR CITY,18,1912,1,COM1,3004 -0122_62_5,-74.81684718,39.65467234,15 S DERBY AVE,VENTNOR CITY,18,1915,1,RES1,3001 -0122_62_6,-74.4922475,39.330409,11 S DERBY AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_62_7,-74.52142,39.3190665,9 S DERBY AVE,VENTNOR CITY,18,1905,1,RES1,3001 -0122_62_8,-74.46544183,39.3488345,3 S DERBY AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_62_9,-74.3828085,39.392689,5906 VENTNOR AVE,VENTNOR CITY,17,1900,1,COM1,3004 -0122_63_1,-74.80935546,39.55392117,16 S DERBY AVE,VENTNOR CITY,18,1965,1,RES1,3001 -0122_63_10,-74.51054719,39.32865897,6004 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_63_11,-74.47910491,39.33725867,2 S DERBY AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_63_12,-74.5085551,39.32360916,4 S DERBY AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_63_13,-74.921954,39.5618065,10 S DERBY AVE,VENTNOR CITY,17,1916,1,RES1,3001 -0122_63_14,-74.799588,39.6223675,12 S DERBY AVE,VENTNOR CITY,19,1985,1,RES3A,3001 -0122_63_15,-74.648813,39.374933,14 S DERBY AVE,VENTNOR CITY,17,1948,1,COM10,3003 -0122_63_2,-74.645079,39.549995,6003 ATLANTIC AVE,VENTNOR CITY,18,1958,1,RES1,3001 -0122_63_3,-74.79018383,39.63887349,6005 ATLANTIC AVE,VENTNOR CITY,18,1960,1,RES1,3001 -0122_63_4,-74.48326004,39.33542102,6007 ATLANTIC AVE,VENTNOR CITY,18,1905,1,RES3B,3001 -0122_63_5,-74.61593865,39.60027146,27 S CORNWALL AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_63_6,-74.641056,39.3789,15 S CORNWALL AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_63_8,-74.973234,39.51033,5 S CORNWALL AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_63_9,-74.50420289,39.33240483,1 S CORNWALL AVE,VENTNOR CITY,17,1906,1,RES1,3001 -0122_64_1,-74.638374,39.5313895,6101 ATLANTIC AVE,VENTNOR CITY,18,1910,1,RES1,3001 -0122_64_10,-74.7709753,39.61495729,1 S CAMBRIDGE AVE,VENTNOR CITY,17,1903,1,RES1,3001 -0122_64_11,-74.876022,39.591544,6106 VENTNOR AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_64_12,-74.88324614,39.49744803,6104 VENTNOR AVE,VENTNOR CITY,18,1922,1,RES1,3001 -0122_64_13,-74.88682346,39.59564235,2 S CORNWALL AVE,VENTNOR CITY,18,1922,1,RES1,3001 -0122_64_14,-74.63016766,39.39246625,4 S CORNWALL AVE,VENTNOR CITY,18,1945,1,EDU1,3004 -0122_64_15,-74.81775754,39.5200817,6 S CORNWALL AVE,VENTNOR CITY,18,1962,1,RES3A,3001 -0122_64_16,-74.763902,39.6366325,24 S CORNWALL AVE,VENTNOR CITY,18,1910,1,RES3A,3001 -0122_64_17,-74.48787818,39.47256816,26 S CORNWALL AVE,VENTNOR CITY,18,1905,1,RES1,3001 -0122_64_2,-74.88147577,39.4711598,6103 ATLANTIC AVE,VENTNOR CITY,18,1920,1,GOV1,3004 -0122_64_3,-74.59656762,39.3563023,6105 ATLANTIC AVE,VENTNOR CITY,18,1940,1,RES1,3001 -0122_64_4,-74.56528287,39.3653536,15 S CAMBRIDGE AVE,VENTNOR CITY,18,1927,1,RES1,3001 -0122_64_5,-74.61594668,39.50938293,11 S CAMBRIDGE AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_64_6,-74.4629175,39.348244,9 S CAMBRIDGE AVE,VENTNOR CITY,18,1930,1,COM1,3004 -0122_64_7,-74.48707461,39.33721717,7 S CAMBRIDGE AVE,VENTNOR CITY,18,1946,1,RES1,3001 -0122_64_8,-74.61221893,39.34115314,5 S CAMBRIDGE AVE,VENTNOR CITY,17,1917,1,RES1,3001 -0122_64_9,-74.6939885,39.6371445,3 S CAMBRIDGE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_65_1,-74.61135044,39.48622326,6201 ATLANTIC AVE,VENTNOR CITY,,1928,1,GOV1,3004 -0122_66_1,-74.55674152,39.36663383,14 S CAMBRIDGE AVE,VENTNOR CITY,17,1955,1,GOV1,3004 -0122_66_10,-74.61426037,39.35088084,4 S CAMBRIDGE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_66_11,-74.46619472,39.34761289,6 S CAMBRIDGE AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_66_12,-74.47484818,39.34151413,8 S CAMBRIDGE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_66_13,-74.58452216,39.53627499,10 S CAMBRIDGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_66_14,-74.79230031,39.46016202,12 S CAMBRIDGE AVE,VENTNOR CITY,17,1951,1,RES1,3001 -0122_66_2,-74.8104783,39.38414143,6201 OCEAN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_66_3,-74.590037,39.33756,11 S HARVARD AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_66_4,-74.8050996,39.46638881,9 S HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_66_5,-74.65271985,39.51283195,7 S HARVARD AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_66_6,-74.46705384,39.49409301,5 S HARVARD AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_66_7,-74.63136743,39.52972735,3 S HARVARD AVE,VENTNOR CITY,15,1956,1,RES1,3001 -0122_66_8,-74.585732,39.3538195,1 S HARVARD AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_66_9,-74.80770998,39.53770302,6200 VENTNOR AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_67_1,-74.64600946,39.44884029,6205 OCEAN AVE,VENTNOR CITY,16,1952,1,RES1,3001 -0122_67_10,-74.51454263,39.32832207,4 S HARVARD AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_67_11,-74.5558805,39.5252945,8 S HARVARD AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_67_12,-74.59581036,39.35681769,10 S HARVARD AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_67_13.01,-74.7236395,39.455433,12 S HARVARD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_67_13.02,-74.78839567,39.37778536,14 S HARVARD AVE,VENTNOR CITY,18,2016,1,RES1,3001 -0122_67_2,-74.5398383,39.46759986,6207 OCEAN AVE,VENTNOR CITY,17,1902,1,RES3B,3001 -0122_67_3,-74.63363735,39.46845504,17 S SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_67_4,-74.7136715,39.4324685,9 S SACRAMENTO AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_67_5,-74.55621027,39.36324926,7 S SACRAMENTO AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_67_6,-74.71042433,39.47215616,5 S SACRAMENTO AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_67_7,-74.54505533,39.54791531,3 S SACRAMENTO AVE,VENTNOR CITY,17,1930,1,REL1,3004 -0122_67_8,-74.4753705,39.338731,1 S SACRAMENTO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_67_9,-74.5086835,39.4931095,2 S HARVARD AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_7_1.01,-74.59727,39.3684805,113 S AMHERST AVE,VENTNOR CITY,20,1989,1,RES3A,3001 -0122_7_2,-74.59935992,39.42938762,109 S AMHERST AVE,VENTNOR CITY,19,1920,1,GOV1,3004 -0122_7_3.01,-74.63097417,39.38100256,107 S AMHERST AVE,VENTNOR CITY,18,1911,1,RES1,3001 -0122_7_3.02,-74.62878745,39.42905819,108 S NASHVILLE AVE,VENTNOR CITY,18,1980,1,RES1,3001 -0122_7_4,-74.66945231,39.41677892,105 S AMHERST AVE,VENTNOR CITY,17,1911,1,RES1,3001 -0122_7_5,-74.62836899,39.37761192,103 S AMHERST AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_7_6,-74.54955789,39.49016682,101 S AMHERST AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_7_7,-74.62809537,39.46420679,5100 ATLANTIC AVE,VENTNOR CITY,17,1913,1,RES1,3004 -0122_7_8,-74.55071561,39.47138925,104 S NASHVILLE AVE,VENTNOR CITY,19,2018,1,RES1,3001 -0122_7_9,-74.613236,39.42096,106 S NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_70_10,-74.38535812,39.39709812,6426 VENTNOR AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_70_11,-74.4028435,39.382378,6418 VENTNOR AVE,VENTNOR CITY,,1920,3,RES1,3001 -0122_70_12,-74.5591648,39.41338985,6416 VENTNOR AVE,VENTNOR CITY,,1920,4,GOV1,3004 -0122_70_13,-74.67481361,39.38975015,6410-6414 VENTNOR AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_70_14,-74.554514,39.4780045,6400 VENTNOR AVE,VENTNOR CITY,,1935,1,RES1,3004 -0122_70_15,-74.62937578,39.4139791,4-6 S PORTLAND AVE,VENTNOR CITY,,1910,3,RES1,3001 -0122_70_16,-74.57640912,39.40786583,8 S PORTLAND AVE,VENTNOR CITY,,1960,1,GOV1,3004 -0122_70_3,-74.60105463,39.43350424,9-11 S NEWPORT AVE,VENTNOR CITY,,1968,1,GOV1,3004 -0122_70_6,-74.59547271,39.42637369,7 S NEWPORT AVE,VENTNOR CITY,33,1922,2,RES1,3001 -0122_70_7,-74.59056334,39.43023645,5 S NEWPORT AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_70_8,-74.61614208,39.43081832,3 S NEWPORT AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_70_9,-74.3908668,39.3888093,6428-30 VENTNOR AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_71_1,-74.51138672,39.41394552,6501 ATLANTIC AVE,VENTNOR CITY,18,1981,1,GOV1,3004 -0122_71_10,-74.598705,39.3236745,7 S NEW HAVEN AVE,VENTNOR CITY,17,1916,1,RES1,3001 -0122_71_11,-74.5669735,39.3562505,5 S NEW HAVEN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_71_12,-74.56562401,39.35667183,3 S NEW HAVEN AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_71_13,-74.599839,39.366773,6518 VENTNOR AVE,VENTNOR CITY,,1920,3,RES1,3001 -0122_71_14,-74.62670466,39.3535455,6514 VENTNOR AVE,VENTNOR CITY,,1920,1,RES3A,3001 -0122_71_15,-74.63165072,39.36264095,6512 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_71_16,-74.53434293,39.38342286,6508-10 VENTNOR AVE,VENTNOR CITY,,1952,1,GOV1,3004 -0122_71_17,-74.54856948,39.38006183,6506 VENTNOR AVE,VENTNOR CITY,,1922,3,RES1,3001 -0122_71_18,-74.53479,39.38994,6504 VENTNOR AVE,VENTNOR CITY,,1924,3,RES1,3001 -0122_71_19,-74.58403176,39.42889566,6502 VENTNOR AVE,VENTNOR CITY,,1928,3,RES1,3001 -0122_71_2,-74.50469516,39.45069752,6503 ATLANTIC AVE,VENTNOR CITY,18,1990,1,RES1,3001 -0122_71_20,-74.61466468,39.42330944,6500 VENTNOR AVE,VENTNOR CITY,,1928,3,RES1,3001 -0122_71_21,-74.76638316,39.30889702,4 S NEWPORT AVE,VENTNOR CITY,16,1910,1,GOV1,3004 -0122_71_23,-74.59056742,39.32309617,20 S NEWPORT AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_71_24,-74.503181,39.502923,22 S NEWPORT AVE,VENTNOR CITY,18,2018,1,RES1,3001 -0122_71_25,-74.52748339,39.44763716,24 S NEWPORT AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_71_3,-74.55174772,39.40658707,6505 ATLANTIC AVE,VENTNOR CITY,19,2014,1,RES1,3001 -0122_71_4,-74.4577535,39.463962,6507 ATLANTIC AVE,VENTNOR CITY,18,1940,1,RES1,3001 -0122_71_5,-74.5817535,39.407526,6509 ATLANTIC AVE,VENTNOR CITY,20,2009,1,RES3A,3001 -0122_71_6,-74.60648057,39.39035423,6511 ATLANTIC AVE,VENTNOR CITY,18,1930,1,RES3A,3001 -0122_71_7,-74.50306983,39.4287615,15 S NEW HAVEN AVE,VENTNOR CITY,17,1927,1,RES3A,3001 -0122_71_8,-74.49894333,39.46674995,11 S NEW HAVEN AVE,VENTNOR CITY,17,1902,1,RES3A,3001 -0122_71_9,-74.505014,39.5201105,9 S NEW HAVEN AVE,VENTNOR CITY,17,1916,1,RES1,3001 -0122_72_1,-74.58953,39.39108,20 S NEW HAVEN AVE,VENTNOR CITY,18,1960,1,RES3A,3001 -0122_72_10,-74.52532855,39.45824333,9 S AVOLYN AVE,VENTNOR CITY,45,1924,2,RES3A,3001 -0122_72_11,-74.54967685,39.35978853,6600 VENTNOR AVE,VENTNOR CITY,,1940,1,COM1,3004 -0122_72_12,-74.49943062,39.49965217,8 S NEW HAVEN AVE,VENTNOR CITY,17,1949,1,RES1,3001 -0122_72_13,-74.494174,39.458346,10 S NEW HAVEN AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_72_14,-74.510235,39.412732,12 S NEW HAVEN AVE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_72_15,-74.52571178,39.42870347,14 S NEW HAVEN AVE,VENTNOR CITY,17,1942,1,RES3A,3001 -0122_72_16,-74.6017455,39.398239,16 S NEW HAVEN AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_72_17,-74.54158583,39.38875949,18 S NEW HAVEN AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_72_2,-74.50669567,39.40460873,6603 ATLANTIC AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_72_3,-74.5230255,39.4138075,25 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_72_4,-74.5428955,39.3916745,23 S AVOLYN AVE,VENTNOR CITY,30,1921,1,RES3A,3001 -0122_72_5,-74.59851099,39.38210817,21 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_72_6,-74.552367,39.404352,19 S AVOLYN AVE,VENTNOR CITY,29,1921,1,GOV1,3004 -0122_72_7,-74.58593346,39.41334995,17 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_72_8,-74.486822,39.452991,15 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES3A,3001 -0122_72_9,-74.49846776,39.43398253,11-13 S AVOLYN AVE,VENTNOR CITY,45,1961,2,RES1,3001 -0122_73_1,-74.493116,39.418984,6605 ATLANTIC AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_73_10,-74.48964072,39.46022176,6622 VENTNOR AVE,VENTNOR CITY,43,1928,2,RES1,3001 -0122_73_11,-74.47203566,39.48142144,6620 VENTNOR AVE,VENTNOR CITY,,1920,2,RES3A,3001 -0122_73_12,-74.51967453,39.47380676,6618 VENTNOR AVE,VENTNOR CITY,43,1928,2,RES1,3001 -0122_73_13,-74.49967892,39.49911048,6616 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_73_15,-74.6052585,39.4075205,12 S AVOLYN AVE,VENTNOR CITY,17,1924,1,RES3A,3001 -0122_73_16,-74.60871619,39.3865294,14 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_73_17,-74.59264634,39.3788035,16 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_73_18,-74.49463574,39.4304754,18 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_73_19,-74.511309,39.4028685,20 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_73_2,-74.45089351,39.37295678,6627 ATLANTIC AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_73_20,-74.60597791,39.39785286,22 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_73_21,-74.60788436,39.37671028,24 S AVOLYN AVE,VENTNOR CITY,29,1921,1,RES1,3001 -0122_73_3,-74.37049396,39.40466033,6629 ATLANTIC AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_73_4,-74.5975475,39.3786605,19 S TROY AVE,VENTNOR CITY,17,1908,2,RES1,3001 -0122_73_5,-74.5140115,39.4033705,17 S TROY AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_73_6,-74.593751,39.376319,15 S TROY AVE,VENTNOR CITY,45,1948,2,RES3A,3001 -0122_73_7,-74.6075735,39.3861605,13 S TROY AVE,VENTNOR CITY,45,1964,2,RES1,3001 -0122_73_9,-74.50835656,39.43755284,6624 VENTNOR AVE,VENTNOR CITY,43,1928,2,COM1,3004 -0122_74_1,-74.37490872,39.39960365,6701 ATLANTIC AVE,VENTNOR CITY,43,1920,2,RES1,3001 -0122_74_10,-74.520523,39.394503,13 S RICHARDS AVE,VENTNOR CITY,17,1948,1,RES3A,3001 -0122_74_11,-74.61076581,39.37329793,11 S RICHARDS AVE,VENTNOR CITY,17,1946,1,RES1,3001 -0122_74_12,-74.517586,39.4071325,9 S RICHARDS AVE,VENTNOR CITY,17,1953,1,RES1,3001 -0122_74_13,-74.4944825,39.435297,7 S RICHARDS AVE,VENTNOR CITY,16,1900,1,RES1,3001 -0122_74_14,-74.611113,39.375046,5 S RICHARDS AVE,VENTNOR CITY,17,1948,1,RES3A,3001 -0122_74_15,-74.5644245,39.406541,3 S RICHARDS AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_74_16,-74.50248861,39.43189617,6706-08 VENTNOR AVE,VENTNOR CITY,,1920,4,RES3A,3001 -0122_74_17,-74.56950718,39.35590005,2 S TROY AVE,VENTNOR CITY,17,1948,1,RES3A,3001 -0122_74_18,-74.57505331,39.42212703,6 S TROY AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_74_19,-74.60930928,39.37885404,8 S TROY AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_74_2,-74.60334,39.3217865,6703 ATLANTIC AVE,VENTNOR CITY,,1952,2,RES1,3001 -0122_74_20,-74.531603,39.3886125,10 S TROY AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_74_21,-74.51079122,39.40437281,12 S TROY AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_74_22,-74.60683553,39.38410616,14 S TROY AVE,VENTNOR CITY,17,1906,1,RES1,3001 -0122_74_23,-74.5024683,39.40850454,16 S TROY AVE,VENTNOR CITY,17,1906,1,RES1,3001 -0122_74_24,-74.49791948,39.3374084,18 S TROY AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_74_25,-74.511283,39.4020695,20 S TROY AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_74_26,-74.36745539,39.4170725,22 S TROY AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_74_27,-74.43833897,39.3712118,24 S TROY AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_74_3,-74.50303536,39.34252638,6703B ATLANTIC AVE,VENTNOR CITY,,1952,2,RES1,3001 -0122_74_4,-74.59327758,39.32729199,6705 ATLANTIC AVE,VENTNOR CITY,43,1920,3,RES1,3001 -0122_74_5,-74.602867,39.3127235,6707 ATLANTIC AVE,VENTNOR CITY,43,1920,2,RES1,3001 -0122_74_6,-74.498718,39.3374505,25 S RICHARDS AVE,VENTNOR CITY,43,1920,2,RES1,3001 -0122_74_7,-74.40748946,39.37954961,21 S RICHARDS AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_74_8,-74.36719279,39.42223221,19 S RICHARDS AVE,VENTNOR CITY,17,1939,1,GOV1,3004 -0122_74_9,-74.49451267,39.34108938,15 S RICHARDS AVE,VENTNOR CITY,16,1938,1,RES3B,3001 -0122_75_1,-74.485965,39.3454735,6709 ATLANTIC AVE,VENTNOR CITY,33,1930,1,RES1,3001 -0122_75_10,-74.50732294,39.33780247,17 S BUFFALO AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_75_11,-74.41835191,39.36939482,15 S BUFFALO AVE,VENTNOR CITY,17,1948,1,RES1,3001 -0122_75_12,-74.35756834,39.41422203,13 S BUFFALO AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_75_13,-74.5255555,39.393653,11 S BUFFALO AVE,VENTNOR CITY,17,1938,1,RES3A,3001 -0122_75_14,-74.44886867,39.35449799,9 S BUFFALO AVE,VENTNOR CITY,16,1938,1,RES1,3001 -0122_75_15,-74.52696319,39.39795202,7 S BUFFALO AVE,VENTNOR CITY,45,1924,3,RES1,3001 -0122_75_16,-74.58780798,39.38018924,5 S BUFFALO AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_75_17,-74.5075385,39.40629933,3 S BUFFALO AVE,VENTNOR CITY,17,1912,1,RES3A,3001 -0122_75_18,-74.48771651,39.42118616,1 S BUFFALO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_75_19,-74.58844928,39.3784379,6750 VENTNOR AVE,VENTNOR CITY,,1940,3,RES1,3001 -0122_75_2,-74.4871105,39.350772,6711 ATLANTIC AVE,VENTNOR CITY,,1930,2,RES1,3001 -0122_75_20,-74.49426066,39.43350892,4 S RICHARDS AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_75_21,-74.51074186,39.40454815,6 S RICHARDS AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_75_22,-74.6046128,39.38449597,8 S RICHARDS AVE,VENTNOR CITY,15,1910,1,RES1,3001 -0122_75_23,-74.50637,39.4086915,10 S RICHARDS AVE,VENTNOR CITY,15,1910,1,RES1,3001 -0122_75_24,-74.4921505,39.3380325,12 S RICHARDS AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_75_25.01,-74.524451,39.3870735,18 S RICHARDS AVE,VENTNOR CITY,17,2007,1,RES1,3001 -0122_75_26,-74.421941,39.3729805,22 S RICHARDS AVE,VENTNOR CITY,45,1925,3,RES1,3001 -0122_75_27,-74.39821781,39.38493833,24 S RICHARDS AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_75_29,-74.49139777,39.33939717,30 S RICHARDS AVE,VENTNOR CITY,29,1904,1,RES1,3001 -0122_75_3,-74.47792813,39.33922816,6713 ATLANTIC AVE,VENTNOR CITY,33,1950,1,RES1,3001 -0122_75_30,-74.44981715,39.35456002,32 S RICHARDS AVE,VENTNOR CITY,,1935,1,RES1,3001 -0122_75_4,-74.47939032,39.34223304,6715 ATLANTIC AVE,VENTNOR CITY,,1930,2,RES1,3001 -0122_75_5,-74.46317175,39.34679533,6717 ATLANTIC AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_75_6,-74.46801433,39.34445701,6719 ATLANTIC AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_75_7,-74.48464566,39.33994101,6721-23 ATLANTIC AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_75_8,-74.46577071,39.35772063,25 S BUFFALO AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_75_9,-74.586295,39.3308605,23 S BUFFALO AVE,VENTNOR CITY,17,1946,1,RES3A,3001 -0122_76_1,-74.48925366,39.33269218,6801 ATLANTIC AVE,VENTNOR CITY,18,1982,1,RES1,3001 -0122_76_10,-74.49328091,39.39733121,1 S WISSAHICKON AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_76_11,-74.451844,39.354334,6810 VENTNOR AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_76_12,-74.500839,39.3374455,6808 VENTNOR AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_76_13,-74.48785882,39.35061303,6806 VENTNOR AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_76_14,-74.5276535,39.397671,6804 VENTNOR AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_76_15,-74.5030862,39.41628954,6802 VENTNOR AVE,VENTNOR CITY,27,1929,1,GOV1,3004 -0122_76_16,-74.51972,39.4043865,6800 VENTNOR AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_76_17,-74.46426902,39.35746331,2 S BUFFALO AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_76_18,-74.51960802,39.39717066,4 S BUFFALO AVE,VENTNOR CITY,27,1929,1,RES1,3001 -0122_76_20,-74.51813819,39.39259784,10 S BUFFALO AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_76_22,-74.40399369,39.3897036,14 S BUFFALO AVE,VENTNOR CITY,,1926,1,RES1,3001 -0122_76_24,-74.39441513,39.38648836,16 S BUFFALO AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_76_25,-74.49957023,39.33506646,22 S BUFFALO AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_76_26,-74.5867445,39.323663,24 S BUFFALO AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_76_28,-74.4886985,39.33744,26 S BUFFALO AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_76_3.01,-74.51202397,39.32440433,21 S WISSAHICKON AVE,VENTNOR CITY,16,1982,1,RES1,3001 -0122_76_3.02,-74.49129991,39.33104482,6803 ATLANTIC AVE,VENTNOR CITY,18,1905,1,RES1,3001 -0122_76_30,-74.465598,39.3435075,28 S BUFFALO AVE,VENTNOR CITY,17,1926,1,RES3A,3001 -0122_76_31,-74.52551324,39.31840392,30 S BUFFALO AVE,VENTNOR CITY,19,1983,1,RES1,3001 -0122_76_5,-74.44977815,39.35368953,19 S WISSAHICKON AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_76_6,-74.604076,39.3168485,15 S WISSAHICKON AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_76_7,-74.50157302,39.33796667,9 S WISSAHICKON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_76_8,-74.399976,39.3858265,7 S WISSAHICKON AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_76_9,-74.37039218,39.41406098,3 S WISSAHICKON AVE,VENTNOR CITY,27,1929,1,RES3A,3001 -0122_77_1,-74.56419477,39.47536095,6809 ATLANTIC AVE,VENTNOR CITY,19,1920,1,RES3A,3001 -0122_77_10,-74.60137255,39.31817481,5 S NEWARK AVE,VENTNOR CITY,18,1925,1,COM4,3004 -0122_77_11,-74.37685632,39.41921114,6816 VENTNOR AVE,VENTNOR CITY,,1940,4,RES3A,3001 -0122_77_12,-74.4547305,39.3743975,6812 VENTNOR AVE,VENTNOR CITY,,1940,2,RES1,3001 -0122_77_13,-74.39714477,39.38734754,4 S WISSAHICKON AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_77_14,-74.50413917,39.34153405,6 S WISSAHICKON AVE,VENTNOR CITY,45,1925,2,RES1,3001 -0122_77_15,-74.617998,39.3132155,8-10 S WISSAHICKON,VENTNOR CITY,45,1925,2,RES3A,3001 -0122_77_16,-74.49589652,39.33587061,12 S WISSAHICKON AVE,VENTNOR CITY,,1930,1,RES3A,3001 -0122_77_17,-74.48247782,39.34433006,14 S WISSAHICKON AVE,VENTNOR CITY,,1978,1,RES1,3001 -0122_77_18,-74.48276703,39.34216869,16 S WISSAHICKON AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_77_19,-74.50236431,39.32758504,18 S WISSAHICKON AVE,VENTNOR CITY,17,1938,1,RES1,3001 -0122_77_2,-74.77713802,39.64384299,6811 ATLANTIC AVE,VENTNOR CITY,19,1950,1,RES3A,3001 -0122_77_20,-74.50870958,39.32222417,20 S WISSAHICKON AVE,VENTNOR CITY,18,2018,1,RES1,3001 -0122_77_3,-74.4830335,39.3501475,21 S NEWARK AVE,VENTNOR CITY,20,2016,1,RES3A,3001 -0122_77_4,-74.52131815,39.3145378,17 S NEWARK AVE,VENTNOR CITY,16,1930,1,RES3A,3001 -0122_77_5,-74.50039483,39.3323755,15 S NEWARK AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_77_6,-74.52262466,39.31834501,13 S NEWARK AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_77_7,-74.48452953,39.34649817,11 S NEWARK AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_77_8,-74.49182052,39.33698135,9 S NEWARK AVE,VENTNOR CITY,17,1950,1,RES3A,3001 -0122_77_9,-74.602755,39.3147835,7 S NEWARK AVE,VENTNOR CITY,,1925,1,GOV1,3004 -0122_78_1.01,-74.9245662,39.50908082,6901 ATLANTIC AVE,VENTNOR CITY,18,1985,1,RES3A,3001 -0122_78_1.02,-74.94238578,39.52233515,24 S NEWARK AVE,VENTNOR CITY,17,1984,1,RES1,3001 -0122_78_10,-74.479463,39.346032,5 S ROSBOROUGH AVE,VENTNOR CITY,45,1930,2,RES3A,3001 -0122_78_11,-74.52802029,39.54291827,3 S ROSBOROUGH AVE,VENTNOR CITY,17,1928,1,GOV1,3004 -0122_78_12,-74.6059495,39.3235135,6900 VENTNOR AVE,VENTNOR CITY,16,1940,1,RES1,3001 -0122_78_14,-74.47074224,39.34063055,10 S NEWARK AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_78_15,-74.51672386,39.32224644,12 S NEWARK AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_78_16,-74.49765845,39.33224603,14 S NEWARK AVE,VENTNOR CITY,17,1910,1,RES3A,3001 -0122_78_17,-74.43384076,39.36555885,16 S NEWARK AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_78_18,-74.549325,39.4687915,18 S NEWARK AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_78_19,-74.47768867,39.33968469,20 S NEWARK AVE,VENTNOR CITY,17,1928,1,RES3A,3001 -0122_78_2,-74.93272923,39.49569309,6905 ATLANTIC AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_78_20,-74.51059885,39.32673934,22 S NEWARK AVE,VENTNOR CITY,45,1946,2,RES3A,3001 -0122_78_3,-74.533868,39.3904245,6907 ATLANTIC AVE,VENTNOR CITY,17,1921,1,RES3A,3001 -0122_78_4,-74.51328716,39.33050112,19 S ROSBOROUGH AVE,VENTNOR CITY,,1989,1,RES1,3001 -0122_78_5,-74.47617285,39.34139748,17 S ROSBOROUGH AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_78_6,-74.44695292,39.35836232,15 S ROSBOROUGH AVE,VENTNOR CITY,17,1928,1,GOV1,3004 -0122_78_7,-74.5581495,39.4725075,13 S ROSBOROUGH AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_78_8,-74.49518509,39.33328867,11 S ROSBOROUGH AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_78_9.01,-74.50063039,39.32868134,9 S ROSBOROUGH AVE,VENTNOR CITY,18,1984,1,RES1,3001 -0122_78_9.02,-74.471899,39.342452,7 S ROSBOROUGH AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_79_1,-74.6055565,39.4064535,6917 ATLANTIC AVE,VENTNOR CITY,17,1910,1,RES3A,3001 -0122_79_10,-74.48422509,39.34867407,9 S WYOMING AVE,VENTNOR CITY,17,1895,1,RES3A,3001 -0122_79_11,-74.549714,39.477498,7 S WYOMING AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_79_12,-74.5207465,39.3163155,5 S WYOMING AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_79_13,-74.52194294,39.32184283,3 S WYOMING AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_79_14,-74.48478814,39.33903173,2 S ROSBOROUGH AVE,VENTNOR CITY,17,1928,1,COM1,3004 -0122_79_16,-74.52824296,39.31168316,8 S ROSBOROUGH AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_79_17,-74.54783941,39.47022474,10 S ROSBOROUGH AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_79_18,-74.4842211,39.34544752,12 S ROSBOROUGH AVE,VENTNOR CITY,17,1910,1,RES3A,3001 -0122_79_19,-74.46488298,39.34534783,16 S ROSBOROUGH AVE,VENTNOR CITY,17,1911,1,RES1,3001 -0122_79_2,-74.89482656,39.47949289,6927 ATLANTIC AVE,VENTNOR CITY,19,1950,1,RES1,3001 -0122_79_20.01,-74.883476,39.5990185,18 S ROSBOROUGH AVE,VENTNOR CITY,,1910,1,RES3A,3001 -0122_79_20.02,-74.9547145,39.5184625,20 S ROSBOROUGH AVE,VENTNOR CITY,17,1989,1,RES1,3001 -0122_79_21,-74.58449787,39.37481372,22 S ROSBOROUGH AVE,VENTNOR CITY,17,1915,1,RES3A,3001 -0122_79_22,-74.55958077,39.37127912,24 S ROSBOROUGH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_79_3,-74.812661,39.633508,6929 ATLANTIC AVE,VENTNOR CITY,18,1919,1,GOV1,3004 -0122_79_4,-74.5829785,39.41246657,21 S WYOMING AVE,VENTNOR CITY,17,1926,1,RES1,3002 -0122_79_5,-74.536759,39.383362,19 S WYOMING AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_79_6,-74.54697917,39.38925566,17 S WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_79_7,-74.9393825,39.516646,15 S WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_79_8,-74.9530355,39.5381925,13 S WYOMING AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_79_9,-74.460245,39.347491,11 S WYOMING AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_8_1.01,-74.53342115,39.37753181,113 S FRANKFORT AVE,VENTNOR CITY,18,1986,1,RES3A,3001 -0122_8_10,-74.5843285,39.4795525,110 S AMHERST AVE,VENTNOR CITY,17,1913,1,RES3A,3001 -0122_8_11,-74.59252324,39.37065107,112 S AMHERST AVE,VENTNOR CITY,17,1911,1,RES1,3001 -0122_8_2,-74.6017843,39.37998948,107 S FRANKFORT AVE,VENTNOR CITY,17,1900,1,RES3A,3001 -0122_8_3,-74.603695,39.409563,105 S FRANKFORT AVE,VENTNOR CITY,,1988,1,RES1,3001 -0122_8_4,-74.6179643,39.43107507,103 S FRANKFORT AVE,VENTNOR CITY,17,1923,1,RES1,3001 -0122_8_5,-74.63449957,39.43266299,101 S FRANKFORT AVE,VENTNOR CITY,18,2014,2,RES1,3001 -0122_8_6,-74.59110907,39.42994468,100 S AMHERST AVE,VENTNOR CITY,17,1925,2,RES1,3001 -0122_8_7,-74.6229,39.434982,104 S AMHERST AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_8_8,-74.60608069,39.42080757,106 S AMHERST AVE,VENTNOR CITY,17,1902,1,RES1,3001 -0122_8_9,-74.56764062,39.42442724,108 S AMHERST AVE,VENTNOR CITY,17,1916,1,RES1,3001 -0122_80_1,-74.36650986,39.42350104,7001 ATLANTIC AVE,VENTNOR CITY,20,1945,1,RES1,3001 -0122_80_10,-74.55456286,39.38332942,11 S LAFAYETTE AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_80_11,-74.940229,39.5002745,9 S LAFAYETTE AVE,VENTNOR CITY,17,1928,1,COM1,3004 -0122_80_12,-74.967478,39.512559,7 S LAFAYETTE AVE,VENTNOR CITY,18,1924,1,RES1,3001 -0122_80_13,-74.51041291,39.32950834,12S LAFAYETTE AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_80_14,-74.477112,39.339805,1 S LAFAYETTE AVE,VENTNOR CITY,17,1954,1,RES3A,3001 -0122_80_15,-74.480317,39.3469165,7006 VENTNOR AVE,VENTNOR CITY,17,1954,1,RES1,3001 -0122_80_16,-74.639237,39.4021065,2 S WYOMING AVE,VENTNOR CITY,18,1928,1,RES1,3001 -0122_80_17,-74.59775219,39.43785869,4 S WYOMING AVE,VENTNOR CITY,17,1957,1,RES1,3001 -0122_80_18,-74.4860625,39.349907,6 S WYOMING AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_80_19,-74.45967567,39.34960496,8 S WYOMING AVE,VENTNOR CITY,,1958,1,RES1,3001 -0122_80_2,-74.360771,39.4110055,7003 ATLANTIC AVE,VENTNOR CITY,19,1954,1,RES1,3001 -0122_80_20,-74.92945431,39.53302847,10 S WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_80_21,-74.54269705,39.38834284,14 S WYOMING AVE,VENTNOR CITY,17,1927,1,RES1,3001 -0122_80_22,-74.61281693,39.42129619,16 S WYOMING AVE,VENTNOR CITY,17,1975,1,RES1,3001 -0122_80_23,-74.57325542,39.42795885,18 S WYOMING AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_80_24,-74.84939163,39.61113678,20 S WYOMING AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_80_25,-74.79856089,39.61559883,22 S WYOMING AVE,VENTNOR CITY,18,1935,1,RES1,3001 -0122_80_3,-74.3690015,39.4030305,7005 ATLANTIC AVE,VENTNOR CITY,19,1965,1,RES1,3001 -0122_80_4,-74.882122,39.59671,7015 ATLANTIC AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_80_5,-74.380855,39.417962,25 S LAFAYETTE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_80_6,-74.807583,39.6122345,21 S LAFAYETTE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_80_7,-74.810346,39.632239,19 S LAFAYETTE AVE,VENTNOR CITY,17,1921,1,RES1,3001 -0122_80_8,-74.571039,39.4274845,17 S LAFAYETTE AVE,VENTNOR CITY,,0,1,RES1,3001 -0122_80_9,-74.58342244,39.43557214,15 S LAFAYETTE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_81_1,-74.4656342,39.34758333,7101 ATLANTIC AVE,VENTNOR CITY,17,1930,1,COM8,3004 -0122_81_10,-74.5806243,39.41275442,3 S MELBOURNE AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_81_11,-74.59802157,39.43590959,1 S MELBOURNE AVE,VENTNOR CITY,18,1988,1,RES3A,3001 -0122_81_12,-74.54468364,39.38828927,7106 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_81_13,-74.91493283,39.53053599,7104 VENTNOR AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_81_14,-74.9494315,39.5156715,7102 VENTNOR AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_81_15,-74.885558,39.565474,7100 VENTNOR AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_81_16,-74.549551,39.386028,6 S LAFAYETTE AVE,VENTNOR CITY,17,1904,1,COM1,3004 -0122_81_17,-74.55198149,39.37915867,8 S LAFAYETTE AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_81_18,-74.60338213,39.4090638,10 S LAFAYETTE AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_81_19,-74.926184,39.482332,12 S LAFAYETTE AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_81_2,-74.4830785,39.3422335,7103 ATLANTIC AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_81_20,-74.800644,39.6336885,14 S LAFAYETTE AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_81_21,-74.4467275,39.371553,16 S LAFAYETTE AVE,VENTNOR CITY,17,1926,1,RES3A,3001 -0122_81_22,-74.37327143,39.41813066,18 S LAFAYETTE AVE,VENTNOR CITY,17,1922,1,RES1,3001 -0122_81_23,-74.8790435,39.5949335,20 S LAFAYETTE AVE,VENTNOR CITY,17,1947,1,GOV1,3004 -0122_81_24,-74.77819232,39.62625111,22 S LAFAYETTE AVE,VENTNOR CITY,17,1947,1,RES1,3001 -0122_81_3,-74.4644585,39.3461305,7105 ATLANTIC AVE,VENTNOR CITY,17,1920,2,RES1,3001 -0122_81_4,-74.458748,39.3491905,7107 ATLANTIC AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_81_6,-74.3571105,39.414037,15 S MELBOURNE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_81_7,-74.44790653,39.37510831,9 S MELBOURNE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_81_8,-74.80230151,39.62569583,7 S MELBOURNE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_81_9,-74.88566232,39.48338317,5 S MELBOURNE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_82_1,-74.49888265,39.33188503,7115 ATLANTIC AVE,VENTNOR CITY,18,1926,1,RES3A,3001 -0122_82_10,-74.3734441,39.41288173,3 S BALTIMORE AVE,VENTNOR CITY,17,1958,1,RES3A,3001 -0122_82_11,-74.52723943,39.38229418,1 S BALTIMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_82_12,-74.80647623,39.63164265,7118 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_82_13,-74.9210976,39.48082919,7116 VENTNOR AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_82_14,-74.576616,39.4168595,7114 VENTNOR AVE,VENTNOR CITY,43,1940,2,RES1,3001 -0122_82_15,-74.60494961,39.41075647,7112 VENTNOR AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_82_16,-74.832773,39.6341975,2 S MELBOURNE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_82_17,-74.79816,39.6157175,8 S MELBOURNE AVE,VENTNOR CITY,17,1900,2,COM8,3004 -0122_82_18,-74.380379,39.417366,10 S MELBOURNE AVE,VENTNOR CITY,17,1935,1,RES3A,3001 -0122_82_19,-74.36169753,39.41688566,12 S MELBOURNE AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_82_2,-74.495601,39.3338695,7117 ATLANTIC AVE,VENTNOR CITY,18,1920,1,RES3A,3001 -0122_82_20,-74.78604974,39.63453405,14 S MELBOURNE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_82_21,-74.71219349,39.57884493,16 S MELBOURNE AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_82_22,-74.470778,39.34236,18 S MELBOURNE AVE,VENTNOR CITY,17,1913,1,RES1,3001 -0122_82_23,-74.51978633,39.31922,20 S MELBOURNE AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_82_3,-74.51416516,39.46279299,7119 ATLANTIC AVE,VENTNOR CITY,18,1920,1,RES1,3001 -0122_82_4,-74.5089795,39.3303305,19 S BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES3A,3001 -0122_82_5,-74.84316941,39.55859565,17 S BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_82_6,-74.47138501,39.34188134,15 S BALTIMORE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_82_7,-74.48038891,39.35062083,13 S BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_82_8,-74.77681518,39.63950212,11 S BALTIMORE AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_82_9,-74.87852743,39.59236608,9 S BALTIMORE AVE,VENTNOR CITY,17,1940,1,GOV1,3004 -0122_83_1,-74.52088877,39.44214147,7201 ATLANTIC AVE,VENTNOR CITY,17,1908,1,RES1,3001 -0122_83_10,-74.5166515,39.3205765,15 S SWARTHMORE AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_83_11,-74.48354566,39.34186901,11 S SWARTHMORE AVE,VENTNOR CITY,17,1930,1,RES3B,3001 -0122_83_12,-74.74159715,39.58807346,9 S SWARTHMORE AVE,VENTNOR CITY,17,1910,1,RES1,3004 -0122_83_13,-74.85340157,39.59081383,7 S SWARTHMORE AVE,VENTNOR CITY,17,1910,1,GOV1,3004 -0122_83_14,-74.35991452,39.41346867,7208 VENTNOR AVE,VENTNOR CITY,17,1910,1,RES3A,3001 -0122_83_15,-74.44775671,39.37382298,7200 VENTNOR AVE,VENTNOR CITY,17,1955,1,COM1,3004 -0122_83_16,-74.86751015,39.59804553,2 S BALTIMORE AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_83_17,-74.78635035,39.63859964,4 S BALTIMORE AVE,VENTNOR CITY,17,1970,1,RES3A,3001 -0122_83_18,-74.48711967,39.34794594,6 S BALTIMORE AVE,VENTNOR CITY,17,1960,1,GOV1,3004 -0122_83_19,-74.479411,39.338672,8 S BALTIMORE AVE,VENTNOR CITY,17,1965,1,COM1,3004 -0122_83_2,-74.808049,39.6618085,7203 ATLANTIC AVE,VENTNOR CITY,17,1920,1,COM1,3004 -0122_83_20,-74.46216785,39.34668348,10 S BALTIMORE AVE,VENTNOR CITY,17,1910,1,GOV1,3004 -0122_83_21,-74.51957267,39.31990771,12 S BALTIMORE AVE,VENTNOR CITY,17,1927,1,COM1,3004 -0122_83_22,-74.501495,39.3273615,14 S BALTIMORE AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_83_23,-74.494918,39.3315755,16 S BALTIMORE AVE,VENTNOR CITY,18,1980,1,COM1,3004 -0122_83_24,-74.52388406,39.44993955,24 S BALTIMORE AVE,VENTNOR CITY,17,1910,1,COM1,3004 -0122_83_3,-74.83004632,39.64446014,7205 ATLANTIC AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_83_4,-74.80807195,39.64009466,7207 ATLANTIC AVE,VENTNOR CITY,17,1920,1,GOV1,3004 -0122_83_5,-74.44204772,39.35530665,25 S SWARTHMORE AVE,VENTNOR CITY,19,1948,1,COM1,3004 -0122_83_6,-74.46516272,39.47693924,22 S BALTIMORE AVE,VENTNOR CITY,17,1906,1,RES1,3001 -0122_83_7,-74.52371942,39.45928086,21 S SWARTHMORE AVE,VENTNOR CITY,17,1917,1,RES1,3001 -0122_83_8,-74.49517767,39.33218487,19 S SWARTHMORE AVE,VENTNOR CITY,17,1952,1,GOV1,3004 -0122_83_9,-74.50500735,39.32771498,17 S SWARTHMORE AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_84_1,-74.67109317,39.37081129,7209 ATLANTIC AVE,VENTNOR CITY,17,1914,1,RES1,3001 -0122_84_10,-74.45705759,39.34921667,7 S WASHINGTON AVE,VENTNOR CITY,17,1945,1,COM1,3004 -0122_84_11,-74.47587632,39.34056252,7216 VENTNOR AVE,VENTNOR CITY,17,1923,1,RES3A,3001 -0122_84_12,-74.486661,39.3349555,7214 VENTNOR AVE,VENTNOR CITY,17,1915,1,COM1,3004 -0122_84_13,-74.71697901,39.58107767,7212 VENTNOR AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_84_14,-74.79290844,39.62123268,7210 VENTNOR AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_84_16,-74.5129165,39.325691,6 S SWARTHMORE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_84_17,-74.49225541,39.33277033,8 S SWARTHMORE AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_84_18,-74.50902409,39.46649574,10 S SWARTHMORE AVE,VENTNOR CITY,17,1975,1,COM1,3004 -0122_84_19,-74.52340064,39.45315258,12 S SWARTHMORE AVE,VENTNOR CITY,19,2009,1,COM1,3004 -0122_84_2,-74.52506709,39.3119032,7215 ATLANTIC AVE,VENTNOR CITY,17,1936,1,COM1,3004 -0122_84_20,-74.418989,39.367256,14 S SWARTHMORE AVE,VENTNOR CITY,17,1950,1,COM1,3004 -0122_84_21,-74.82998734,39.64607106,16 S SWARTHMORE AVE,VENTNOR CITY,18,1928,1,COM1,3004 -0122_84_22,-74.78227282,39.6605238,18 S SWARTHMORE AVE,VENTNOR CITY,17,1925,1,GOV1,3004 -0122_84_3,-74.41577685,39.36795299,7217 ATLANTIC AVE,VENTNOR CITY,17,1910,1,COM1,3004 -0122_84_4,-74.638784,39.399266,21 S WASHINGTON AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_84_5.01,-74.79480252,39.65079698,19B S WASHINGTON AVE,VENTNOR CITY,19,1986,1,COM10,3003 -0122_84_5.02,-74.812406,39.652008,19A S WASHINGTON AVE,VENTNOR CITY,19,1986,1,RES1,3001 -0122_84_7,-74.50480164,39.46700185,13 S WASHINGTON AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_84_8,-74.49469183,39.33162301,11 S WASHINGTON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_84_9,-74.5157335,39.323422,9 S WASHINGTON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_85_1,-74.7067972,39.63932807,7301 ATLANTIC AVE,VENTNOR CITY,17,1975,1,REL1,3004 -0122_85_10,-74.5195126,39.44517303,7 S MARTINDALE AVE,VENTNOR CITY,17,1928,1,COM1,3003 -0122_85_11,-74.493113,39.45355,5 S MARTINDALE AVE,VENTNOR CITY,17,1928,1,COM3,3002 -0122_85_12,-74.47671772,39.48432399,3 S MARTINDALE AVE,VENTNOR CITY,17,1928,1,COM10,3003 -0122_85_13,-74.4981905,39.3293765,1 S MARTINDALE AVE,VENTNOR CITY,17,1928,1,COM1,3004 -0122_85_14,-74.51755916,39.3210335,7302 VENTNOR AVE,VENTNOR CITY,17,1910,1,COM1,3004 -0122_85_15,-74.45784397,39.34985564,7300 VENTNOR AVE,VENTNOR CITY,,1918,1,COM1,3004 -0122_85_16,-74.51227884,39.32165949,2 S WASHINGTON AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_85_17,-74.49778964,39.33021907,6 S WASHINGTON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_85_18,-74.4751765,39.481139,8 S WASHINGTON AVE,VENTNOR CITY,17,1925,1,COM1,3004 -0122_85_19,-74.52343863,39.44596336,10 S WASHINGTON AVE,VENTNOR CITY,19,1994,1,COM1,3004 -0122_85_2,-74.6650875,39.6195635,7303 ATLANTIC AVE,VENTNOR CITY,,1938,1,COM1,3004 -0122_85_20,-74.51246301,39.44659254,12 S WASHINGTON AVE,VENTNOR CITY,18,1930,1,COM1,3004 -0122_85_21,-74.82700439,39.64991108,14 S WASHINGTON AVE,VENTNOR CITY,17,1925,1,COM10,3003 -0122_85_22,-74.78322033,39.67422719,16 S WASHINGTON AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_85_23,-74.679959,39.3835125,18 S WASHINGTON AVE,VENTNOR CITY,17,1940,1,COM1,3004 -0122_85_24,-74.52415,39.316958,20 S WASHINGTON AVE,VENTNOR CITY,17,1942,1,COM10,3003 -0122_85_25,-74.44097172,39.35359253,22 S WASHINGTON AVE,VENTNOR CITY,18,1925,1,RES1,3001 -0122_85_3,-74.63047584,39.61868659,7305 ATLANTIC AVE,VENTNOR CITY,18,1930,1,COM1,3004 -0122_85_4,-74.85179233,39.53866483,21 S MARTINDALE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_85_5,-74.43938833,39.35621067,19 S MARTINDALE AVE,VENTNOR CITY,17,1928,1,COM1,3004 -0122_85_6,-74.52450814,39.31701533,17 S MARTINDALE AVE,VENTNOR CITY,17,1928,1,REL1,3004 -0122_85_7,-74.77615794,39.64034266,15 S MARTINDALE AVE,VENTNOR CITY,17,1928,1,COM1,3004 -0122_85_8,-74.7868645,39.6773965,13 S MARTINDALE AVE,VENTNOR CITY,17,1928,1,COM1,3004 -0122_85_9,-74.79603635,39.66172953,11 S MARTINDALE AVE,VENTNOR CITY,17,1895,1,COM1,3004 -0122_86_1,-74.6652075,39.545344,7307 ATLANTIC AVE,VENTNOR CITY,20,2017,1,RES1,3001 -0122_86_10,-74.43965831,39.36044502,13 S FREDERICKSBURG,VENTNOR CITY,29,1926,1,COM1,3004 -0122_86_11,-74.43886271,39.3656761,11 S FREDERICKSBURG,VENTNOR CITY,29,1926,1,COM1,3004 -0122_86_12,-74.6842495,39.382767,9 S FREDERICKSBURG,VENTNOR CITY,17,1925,1,COM1,3004 -0122_86_13,-74.79791766,39.64617382,7 S FREDERICKSBURG AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_86_14,-74.8119945,39.6629065,5 S FREDERICKSBURG AVE,VENTNOR CITY,19,2008,1,GOV1,3004 -0122_86_15,-74.4203655,39.36767,3 S FREDERICKSBURG,VENTNOR CITY,28,1920,1,COM1,3004 -0122_86_16,-74.73215827,39.45414285,1 S FREDERICKSBURG,VENTNOR CITY,28,1920,1,RES1,3001 -0122_86_17,-74.7307595,39.463283,7318-20 VENTNOR AVE,VENTNOR CITY,,1960,1,GOV1,3004 -0122_86_18,-74.50708231,39.45376767,7314 VENTNOR AVE,VENTNOR CITY,,1970,1,GOV1,3004 -0122_86_19,-74.498022,39.46892,7312 VENTNOR AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_86_2,-74.63834769,39.5486946,7309 ATLANTIC AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_86_20,-74.50004282,39.46334198,7310 VENTNOR AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_86_21,-74.47121723,39.48352208,7308 VENTNOR AVE,VENTNOR CITY,,1920,2,RES1,3001 -0122_86_22,-74.49722068,39.33415099,7306 VENTNOR AVE,VENTNOR CITY,,1930,3,RES1,3001 -0122_86_23,-74.5175725,39.445076,6 S MARTINDALE AVE,VENTNOR CITY,17,1940,1,COM1,3004 -0122_86_24,-74.81975612,39.65639274,10 S MARTINDALE AVE,VENTNOR CITY,28,1930,1,RES1,3001 -0122_86_25,-74.8004646,39.64967932,12 S MARTINDALE AVE,VENTNOR CITY,28,1930,1,COM1,3004 -0122_86_26,-74.786409,39.660866,14 S MARTINDALE AVE,VENTNOR CITY,17,1922,1,REL1,3004 -0122_86_27,-74.52611509,39.44360386,16 S MARTINDALE AVE,VENTNOR CITY,17,1929,1,COM1,3004 -0122_86_28,-74.4242385,39.366344,18 S MARTINDALE AVE,VENTNOR CITY,18,1929,1,RES1,3001 -0122_86_29,-74.84706767,39.53947886,20 S MARTINDALE AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_86_3,-74.715674,39.4651925,7311 ATLANTIC AVE,VENTNOR CITY,17,1920,1,COM1,3004 -0122_86_30,-74.65169766,39.62682199,22 S MARTINDALE AVE,VENTNOR CITY,29,1920,1,COM1,3004 -0122_86_31,-74.65183302,39.59417316,22 1/2 S MARTINDALE AVE,VENTNOR CITY,30,1920,1,COM1,3004 -0122_86_32,-74.703309,39.5713695,24 S MARTINDALE AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_86_4,-74.73108415,39.46062201,27 S FREDERICKSBURG AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_86_5,-74.7292925,39.4562285,25 S FREDERICKSBURG,VENTNOR CITY,20,1925,1,RES1,3001 -0122_86_6,-74.731026,39.4551965,23 S FREDERICKSBURG,VENTNOR CITY,17,1930,1,RES1,3001 -0122_86_7,-74.7301805,39.4545395,21 S FREDERICKSBURG,VENTNOR CITY,45,1937,2,GOV1,3002 -0122_86_8,-74.83916919,39.52962939,17 S FREDERICKSBURG AVE,VENTNOR CITY,29,1926,1,RES1,3001 -0122_86_9,-74.80981771,39.66170483,15 S FREDERICKSBURG AVE,VENTNOR CITY,29,1926,1,RES1,3001 -0122_87_1,-74.58691363,39.34921364,4801 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_87_3,-74.56958472,39.34201972,4805 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_88_1,-74.6031815,39.3546305,3 N VASSAR SQUARE,VENTNOR CITY,18,2004,1,RES1,3001 -0122_88_12,-74.61242952,39.48612194,28 N JACKSON AVE,VENTNOR CITY,17,1928,1,RES3A,3001 -0122_88_13,-74.55235759,39.47572427,26 N JACKSON AVE,VENTNOR CITY,17,1935,1,GOV1,3004 -0122_88_14,-74.56910277,39.41516956,24 N JACKSON AVE,VENTNOR CITY,17,1935,1,COM1,3004 -0122_88_15,-74.59198965,39.40132199,20 N JACKSON AVE,VENTNOR CITY,17,1929,1,RES1,3001 -0122_88_16,-74.59522606,39.3811156,18 N JACKSON AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_88_17,-74.543496,39.386051,16 N JACKSON AVE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_88_18,-74.55312238,39.38281695,14 N JACKSON AVE,VENTNOR CITY,45,1935,2,RES3A,3001 -0122_88_19,-74.64588618,39.35714013,12 N JACKSON AVE,VENTNOR CITY,45,1935,2,RES1,3001 -0122_88_2,-74.63371553,39.36142895,5 N VASSAR SQUARE,VENTNOR CITY,17,2012,1,RES1,3001 -0122_88_3,-74.53193692,39.38378615,7 N VASSAR SQUARE,VENTNOR CITY,45,1930,2,RES3A,3001 -0122_88_4,-74.55392998,39.39956912,11 N VASSAR SQUARE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_88_5,-74.59734141,39.37869123,21 N VASSAR SQUARE,VENTNOR CITY,18,1922,1,RES1,3001 -0122_88_6,-74.5630755,39.41393193,23 N VASSAR SQUARE,VENTNOR CITY,45,1910,2,GOV1,3004 -0122_88_7,-74.60741348,39.44001463,25 N VASSAR SQUARE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_88_8,-74.55795827,39.4732419,27 N VASSAR SQUARE,VENTNOR CITY,17,1935,1,RES1,3001 -0122_88_9,-74.603855,39.5000075,29 N VASSAR SQUARE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_89_1,-74.58997343,39.31763805,2 N VASSAR SQUARE,VENTNOR CITY,17,1958,1,RES1,3001 -0122_89_2,-74.59389317,39.31345604,4811 VENTNOR AVE,VENTNOR CITY,17,1925,1,RES3A,3001 -0122_89_3,-74.51181648,39.53471425,1 N BATON ROUGE AVE,VENTNOR CITY,17,1959,1,RES1,3001 -0122_9_1,-74.6048605,39.489472,5200 BOARDWALK,VENTNOR CITY,,1974,1,RES1,3001 -0122_9_3,-74.59964648,39.42433919,5200 ATLANTIC AVE,VENTNOR CITY,16,1930,1,RES1,3001 -0122_9_4,-74.56446503,39.41802768,104 S FRANKFORT AVE,VENTNOR CITY,,1930,1,RES1,3001 -0122_9_5,-74.535188,39.490046,106 S FRANKFORT AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_90_1,-74.6024995,39.3256055,3 N BATON ROUGE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_90_10,-74.54723069,39.38125821,21 N BATON ROUGE AVE,VENTNOR CITY,35,1952,1,RES1,3001 -0122_90_11,-74.56547375,39.36909324,23 N BATON ROUGE AVE,VENTNOR CITY,35,1950,1,RES1,3001 -0122_90_12,-74.53209947,39.40053718,25 N BATON ROUGE AVE,VENTNOR CITY,35,1950,1,RES1,3001 -0122_90_13,-74.54653638,39.39570293,27 N BATON ROUGE AVE,VENTNOR CITY,35,1952,1,RES1,3001 -0122_90_14,-74.59149839,39.38057923,29 N BATON ROUGE AVE,VENTNOR CITY,35,1920,1,RES1,3001 -0122_90_15,-74.5572525,39.476114,THORO & VASSAR SQUARE,VENTNOR CITY,,1940,1,RES3A,3001 -0122_90_16,-74.53724574,39.40360856,26 N VASSAR SQUARE,VENTNOR CITY,17,1935,1,RES3A,3001 -0122_90_17,-74.5891204,39.37610216,24 N VASSAR SQUARE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_90_18,-74.55050695,39.39232591,22 N VASSAR SQUARE,VENTNOR CITY,17,1934,1,RES1,3001 -0122_90_19,-74.548847,39.369427,20 N VASSAR SQUARE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_90_2,-74.61414902,39.32007483,5 N BATON ROUGE AVE,VENTNOR CITY,17,1930,1,RES3A,3001 -0122_90_20,-74.63877228,39.36044104,18 N VASSAR SQUARE,VENTNOR CITY,17,1935,1,RES3A,3001 -0122_90_21,-74.61178828,39.36616663,16 N VASSAR SQUARE,VENTNOR CITY,17,1932,1,RES1,3001 -0122_90_22,-74.58824942,39.34932458,14 N VASSAR SQUARE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_90_23,-74.568706,39.3564895,12 N VASSAR SQUARE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_90_3,-74.56598026,39.34773916,7 N BATON ROUGE AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_90_4,-74.5811515,39.3374845,9 N BATON ROUGE AVE,VENTNOR CITY,17,1940,1,RES3A,3001 -0122_90_5,-74.58725332,39.35283018,11 N BATON ROUGE AVE,VENTNOR CITY,45,1940,2,RES1,3001 -0122_90_6,-74.633,39.355735,13 N BATON ROUGE AVE,VENTNOR CITY,35,1930,1,RES3B,3001 -0122_90_7,-74.63816885,39.36406226,15 N BATON ROUGE AVE,VENTNOR CITY,35,1950,1,RES1,3001 -0122_90_8,-74.67123154,39.34954115,17 N BATON ROUGE AVE,VENTNOR CITY,35,1950,1,RES1,3001 -0122_90_9,-74.537072,39.3735335,19 N BATON ROUGE AVE,VENTNOR CITY,35,1950,1,RES1,3001 -0122_91_1,-74.50869,39.462556,4901 VENTNOR AVE,VENTNOR CITY,,1912,4,RES1,3001 -0122_91_2,-74.48568027,39.4385661,4915 VENTNOR AVE,VENTNOR CITY,,1925,4,RES1,3001 -0122_91_3,-74.50642,39.4241385,4917 VENTNOR AVE,VENTNOR CITY,45,1907,2,RES1,3001 -0122_92_10,-74.638806,39.3644385,23 N MARION AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_11,-74.65383248,39.35830207,25 N MARION AVE,VENTNOR CITY,28,1926,1,GOV1,3004 -0122_92_12,-74.572827,39.3684885,27 N MARION AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_92_13,-74.54744079,39.40177542,4902 WINCHESTER AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_92_14,-74.6035615,39.376111,4900 WINCHESTER AVE,VENTNOR CITY,45,1960,2,RES1,3001 -0122_92_15,-74.56621824,39.37168547,26 N BATON ROUGE AVE,VENTNOR CITY,28,1928,1,RES1,3001 -0122_92_16,-74.53632781,39.37223666,24 N BATON ROUGE AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_17,-74.65331846,39.36725842,22 N BATON ROUGE AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_18,-74.63240055,39.36441886,20 N BATON ROUGE AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_19,-74.63040978,39.35087502,18 N BATON ROUGE AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_2,-74.59290017,39.32654601,7 N MARION AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_20,-74.58501686,39.35911022,16 N BATON ROUGE AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_21,-74.5923744,39.34943332,14 N BATON ROUGE AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_22,-74.5679955,39.365623,12 N BATON ROUGE AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_23,-74.55046122,39.36144396,10 N BATON ROUGE AVE,VENTNOR CITY,28,1926,1,RES1,3004 -0122_92_24,-74.60435511,39.33122683,8 N BATON ROUGE AVE,VENTNOR CITY,28,1928,1,RES1,3001 -0122_92_3,-74.60980557,39.32526769,9 N MARION AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_4,-74.60918432,39.31947032,11 N MARION AVE,VENTNOR CITY,28,1926,1,RES3A,3001 -0122_92_5,-74.56821481,39.35044797,13 N MARION AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_6,-74.57451367,39.36783876,15 N MARION AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_7,-74.58899731,39.35122584,17 N MARION AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_8,-74.61530946,39.34940652,19 N MARION AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_92_9,-74.6273105,39.3490905,21 N MARION AVE,VENTNOR CITY,28,1926,1,RES1,3001 -0122_93_1,-74.518879,39.398011,4919 VENTNOR AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_93_2,-74.538738,39.4590865,4921 VENTNOR AVE,VENTNOR CITY,45,1905,2,RES1,3001 -0122_93_3,-74.63116543,39.43376976,4925 VENTNOR AVE,VENTNOR CITY,,1905,1,RES1,3001 -0122_94_1,-74.51366504,39.41045988,1 N AUSTIN AVE,VENTNOR CITY,,1985,1,RES1,3001 -0122_94_10,-74.60274442,39.36826127,19 N AUSTIN AVE,VENTNOR CITY,17,1990,1,RES1,3001 -0122_94_11,-74.650148,39.355784,28 N MARION AVE,VENTNOR CITY,,1960,1,RES1,3001 -0122_94_12,-74.6060905,39.3500565,26 N MARION AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_94_13,-74.5729677,39.3649805,24 N MARION AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_94_14,-74.57409254,39.34073801,22 N MARION AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_94_15,-74.61060529,39.32306592,20 N MARION AVE,VENTNOR CITY,17,1926,1,RES1,3001 -0122_94_16,-74.5899333,39.32972342,18 N MARION AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_94_17,-74.5964115,39.3106485,14 N MARION AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_94_18,-74.45532469,39.50228107,12 N MARION AVE,VENTNOR CITY,17,1960,1,RES1,3001 -0122_94_19,-74.51692916,39.45420698,4 N MARION AVE,VENTNOR CITY,17,1926,1,COM10,3003 -0122_94_2,-74.43325336,39.48664544,3 N AUSTIN AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_94_20,-74.47145041,39.45122525,2 N MARION AVE,VENTNOR CITY,47,1972,2,GOV1,3004 -0122_94_3,-74.5116764,39.43824617,5 N AUSTIN AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_94_4,-74.51735653,39.46332616,7 N AUSTIN AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_94_5,-74.4885405,39.517807,9 N AUSTIN AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_94_6,-74.59204609,39.31189278,11 N AUSTIN AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_94_7,-74.59221911,39.32619704,13 N AUSTIN AVE,VENTNOR CITY,18,1930,1,RES1,3001 -0122_94_8,-74.6014985,39.329762,15 N AUSTIN AVE,VENTNOR CITY,45,1930,2,RES1,3001 -0122_94_9,-74.58286896,39.34055569,17 N AUSTIN AVE,VENTNOR CITY,17,1942,1,RES1,3001 -0122_95_1,-74.4089245,39.3794815,5001 VENTNOR AVE,VENTNOR CITY,,1920,4,RES1,3001 -0122_95_10,-74.519193,39.465055,23 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_11,-74.51541603,39.53601562,25 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_12,-74.6069485,39.3111895,27 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_13,-74.60960711,39.32574215,29 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_14,-74.56958785,39.35058057,28 N AUSTIN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_15,-74.59746197,39.31846468,26 N AUSTIN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_16,-74.59965556,39.31298081,24 N AUSTIN AVE,VENTNOR CITY,17,1945,1,RES1,3001 -0122_95_17,-74.48978307,39.52639249,22 N AUSTIN AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_95_18,-74.51721422,39.46739933,20 N AUSTIN AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_95_19,-74.48837464,39.44325666,18 N AUSTIN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_2,-74.38929969,39.39006119,5003 VENTNOR AVE,VENTNOR CITY,,1900,1,RES3A,3001 -0122_95_20,-74.51518345,39.41244256,16 N AUSTIN AVE,VENTNOR CITY,17,1920,1,RES3A,3001 -0122_95_21,-74.51281438,39.39803217,14 N AUSTIN AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_95_22,-74.66650133,39.418201,6 N AUSTIN AVE,VENTNOR CITY,47,1950,2,RES1,3001 -0122_95_23,-74.360048,39.411146,4 N AUSTIN AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_3,-74.75801607,39.44511195,5005 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_95_4,-74.4231621,39.37634638,1 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_5,-74.36886229,39.41589955,11 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES3B,3001 -0122_95_6,-74.6923535,39.41878,15 N OAKLAND AVE,VENTNOR CITY,17,1900,1,RES1,3001 -0122_95_7,-74.51835867,39.39713202,17 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES3B,3001 -0122_95_8,-74.4957125,39.4253155,19 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_95_9,-74.509234,39.437174,21 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES3B,3001 -0122_96_10,-74.44891029,39.47952944,27 N NASHVILLE AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_96_11,-74.52227651,39.54004336,28-30 N OAKLAND AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_96_12,-74.4736909,39.48465165,26 N OAKLAND AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_96_13,-74.51050715,39.44277929,24 N OAKLAND AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_96_14,-74.48985486,39.43113555,22 N OAKLAND AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_96_15,-74.48208213,39.4324356,20 N OAKLAND AVE,VENTNOR CITY,17,1914,1,GOV1,3004 -0122_96_16,-74.53779628,39.46057343,18 N OAKLAND AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_96_17,-74.3789855,39.415,16 N OAKLAND AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_96_18,-74.43817532,39.36943906,14 N OAKLAND AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_96_19,-74.3769765,39.3962655,4 N OAKLAND AVE,VENTNOR CITY,16,1920,2,RES1,3001 -0122_96_2,-74.7354425,39.448117,3 N NASHVILLE AVE,VENTNOR CITY,,1910,1,RES1,3001 -0122_96_20,-74.486361,39.4942525,5007 VENTNOR AVE,VENTNOR CITY,,1920,1,RES1,3001 -0122_96_3,-74.38501558,39.39243966,5 N NASHVILLE AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_96_4,-74.441967,39.370062,7 N NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_96_5,-74.3795195,39.415166,9 N NASHVILLE AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_96_6,-74.531697,39.461183,11 N NASHVILLE AVE,VENTNOR CITY,17,1915,1,RES1,3001 -0122_96_7,-74.52089359,39.39472772,21 N NASHVILLE AVE,VENTNOR CITY,17,1905,1,RES1,3001 -0122_96_8,-74.49113034,39.43200354,23 N NASHVILLE AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_96_9,-74.51193774,39.44395279,25 N NASHVILLE AVE,VENTNOR CITY,17,1910,1,RES1,3001 -0122_97_1,-74.5171355,39.3211975,5101 VENTNOR AVE,VENTNOR CITY,,1920,3,RES1,3001 -0122_97_10,-74.5499135,39.373475,9 N HILLSIDE AVE,VENTNOR CITY,17,1918,2,RES1,3001 -0122_97_11,-74.509593,39.4866,11 N HILLSIDE AVE,VENTNOR CITY,17,1918,1,RES1,3001 -0122_97_12,-74.72682469,39.46112192,13 N HILLSIDE AVE,VENTNOR CITY,17,1918,1,RES1,3001 -0122_97_13,-74.37304618,39.40001035,15 N HILLSIDE AVE,VENTNOR CITY,17,1918,1,RES1,3004 -0122_97_14,-74.418196,39.368397,17 N HILLSIDE AVE,VENTNOR CITY,17,1918,1,RES1,3001 -0122_97_15,-74.37251281,39.4043322,19 N HILLSIDE AVE,VENTNOR CITY,17,1920,2,RES1,3001 -0122_97_16,-74.62319587,39.43292145,23 N HILLSIDE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_97_17,-74.538016,39.4596725,25 N HILLSIDE AVE,VENTNOR CITY,17,1916,1,RES1,3004 -0122_97_18,-74.52729,39.3959645,27 N HILLSIDE AVE,VENTNOR CITY,17,1916,1,RES1,3001 -0122_97_19,-74.4429395,39.493284,24 N NASHVILLE AVE,VENTNOR CITY,17,1920,2,RES1,3001 -0122_97_2,-74.505449,39.3333125,5105 VENTNOR AVE,VENTNOR CITY,,1920,2,RES1,3004 -0122_97_20,-74.51769473,39.40924174,22 N NASHVILLE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_97_21,-74.51066675,39.40067317,20 N NASHVILLE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_97_22,-74.70381284,39.42840988,18 N NASHVILLE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_97_23,-74.639936,39.4120925,16 N NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3004 -0122_97_24,-74.40189063,39.38971825,14 N NASHVILLE AVE,VENTNOR CITY,17,1916,1,RES1,3001 -0122_97_25,-74.382636,39.3940855,12 N NASHVILLE AVE,VENTNOR CITY,17,1912,2,RES1,3001 -0122_97_26,-74.5417151,39.45789628,10 N NASHVILLE AVE,VENTNOR CITY,17,1917,1,RES1,3001 -0122_97_27,-74.48589436,39.49647308,8 N NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_97_28,-74.80307873,39.36706894,6 N NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_97_29,-74.50090781,39.3364361,4 N NASHVILLE AVE,VENTNOR CITY,17,1952,1,RES1,3004 -0122_97_3,-74.42944582,39.35986074,5111 VENTNOR AVE,VENTNOR CITY,47,1900,2,RES1,3001 -0122_97_30,-74.48229633,39.35439059,2 N NASHVILLE AVE,VENTNOR CITY,17,1920,1,RES1,3004 -0122_97_4,-74.80011789,39.65154357,5113 VENTNOR AVE,VENTNOR CITY,,1920,3,RES1,3001 -0122_97_5,-74.78781053,39.64274701,5115 VENTNOR AVE,VENTNOR CITY,,1920,3,RES1,3001 -0122_97_6,-74.52824941,39.31195997,1 N HILLSIDE AVE,VENTNOR CITY,17,1933,2,RES1,3001 -0122_97_7,-74.51445085,39.31975508,3 N HILLSIDE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_97_8,-74.49612916,39.33652344,5 N HILLSIDE AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_97_9,-74.37283583,39.40099003,7 N HILLSIDE AVE,VENTNOR CITY,17,1926,2,RES1,3001 -0122_98_1,-74.6639455,39.461301,5117 VENTNOR AVE,VENTNOR CITY,,1922,3,RES1,3001 -0122_98_10,-74.5387945,39.384808,16 N HILLSIDE AVE,VENTNOR CITY,17,1912,1,RES1,3001 -0122_98_11,-74.49565097,39.49840581,18 N HILLSIDE AVE,VENTNOR CITY,17,1925,2,COM1,3002 -0122_98_12,-74.73172886,39.45396304,20 N HILLSIDE AVE,VENTNOR CITY,17,1920,1,COM1,3004 -0122_98_13,-74.38992465,39.3900126,22 N HILLSIDE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_98_14,-74.44176203,39.37259868,24 N HILLSIDE AVE,VENTNOR CITY,17,1950,1,RES1,3001 -0122_98_15,-74.359509,39.41309,26 N HILLSIDE AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_98_2,-74.9516745,39.5114955,5123 VENTNOR AVE,VENTNOR CITY,,1922,1,RES1,3001 -0122_98_3,-74.93312605,39.52558589,2 N HILLSIDE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_98_4,-74.7980144,39.64327866,4 N HILLSIDE AVE,VENTNOR CITY,17,1925,1,RES1,3001 -0122_98_5,-74.44161533,39.35938267,6 N HILLSIDE AVE,VENTNOR CITY,18,2009,1,RES1,3001 -0122_98_6,-74.506783,39.3305685,8 N HILLSIDE AVE,VENTNOR CITY,17,1930,1,RES1,3001 -0122_98_7,-74.52117715,39.32064592,10 N HILLSIDE AVE,VENTNOR CITY,17,1928,1,RES1,3001 -0122_98_8,-74.4917145,39.334851,12 N HILLSIDE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_98_9,-74.6578425,39.363865,14 N HILLSIDE AVE,VENTNOR CITY,17,1940,1,RES1,3001 -0122_99_1,-74.79653772,39.63496806,5201 VENTNOR AVE,VENTNOR CITY,,1922,1,RES1,3001 -0122_99_10,-74.50578663,39.33492272,27 N WEYMOUTH AVE,VENTNOR CITY,17,1930,1,GOV1,3004 -0122_99_11,-74.548872,39.376051,29 N WEYMOUTH AVE,VENTNOR CITY,45,1920,2,RES1,3001 -0122_99_12,-74.51251509,39.48647925,31 N WEYMOUTH AVE,VENTNOR CITY,45,1920,3,RES1,3001 -0122_99_13,-74.4997075,39.5012185,33 N WEYMOUTH AVE,VENTNOR CITY,29,1920,1,RES1,3001 -0122_99_14,-74.74929921,39.44659136,35 N WEYMOUTH AVE,VENTNOR CITY,29,1920,1,RES1,3001 -0122_99_2,-74.92537562,39.50594006,7 N WEYMOUTH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_99_3,-74.62333874,39.46259986,9 N WEYMOUTH AVE,VENTNOR CITY,16,1920,1,RES1,3001 -0122_99_4,-74.961966,39.5200875,11 N WEYMOUTH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_99_5,-74.78820488,39.64078512,15 N WEYMOUTH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_99_7,-74.5027615,39.3253365,19 N WEYMOUTH AVE,VENTNOR CITY,17,1920,1,RES1,3001 -0122_99_8,-74.51214958,39.32214965,23 N WEYMOUTH AVE,VENTNOR CITY,45,1920,2,RES1,3001 -0122_99_9,-74.49379318,39.34252447,25 N WEYMOUTH AVE,VENTNOR CITY,45,1920,2,RES1,3001 -0123_1_1.02,-74.488202,39.471184,1422 15TH AVENUE,WEYMOUTH TWP,16,1976,1,RES1,3001 -0123_1_13,-74.6897975,39.4786465,6 CAPE MAY AVENUE,WEYMOUTH TWP,16,2007,1,RES1,3001 -0123_1_14,-74.6112055,39.368847,8 CAPE MAY AVENUE,WEYMOUTH TWP,17,1995,1,RES1,3001 -0123_1_15,-74.60914705,39.39003667,10 CAPE MAY AVENUE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_1_16,-74.78922616,39.66789559,12 CAPE MAY AVENUE,WEYMOUTH TWP,16,1967,1,RES1,3001 -0123_1_4,-74.46956067,39.345732,1418 15TH AVENUE,WEYMOUTH TWP,16,1997,1,COM1,3004 -0123_10_1,-74.55587336,39.37430581,1433 13TH AVENUE,WEYMOUTH TWP,16,2000,1,RES1,3001 -0123_10_10,-74.484484,39.347897,1415 13TH AVENUE,WEYMOUTH TWP,15,1900,1,RES1,3001 -0123_10_12.01,-74.5060055,39.436296,1411 13TH AVENUE,WEYMOUTH TWP,16,1935,1,RES1,3001 -0123_10_12.02,-74.53888378,39.49814452,1411A 13TH AVENUE,WEYMOUTH TWP,15,1950,1,COM1,3004 -0123_10_14,-74.506711,39.409153,1407 13TH AVENUE,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_10_16,-74.50088218,39.32810548,1428 12TH AVENUE,WEYMOUTH TWP,16,1980,1,RES1,3001 -0123_10_2,-74.54111027,39.45827496,1431 13TH AVENUE,WEYMOUTH TWP,17,1970,1,RES1,3001 -0123_10_21,-74.50307964,39.46785322,1418 12TH AVENUE,WEYMOUTH TWP,17,1988,1,RES1,3002 -0123_10_22,-74.79677481,39.64451537,1416 12TH AVENUE,WEYMOUTH TWP,16,1940,1,RES1,3001 -0123_10_24,-74.66991758,39.46290082,1412 12TH AVENUE,WEYMOUTH TWP,16,1940,1,RES1,3001 -0123_10_25,-74.60480515,39.39151806,1410 12TH AVENUE,WEYMOUTH TWP,16,1981,1,RES1,3001 -0123_10_28,-74.5070595,39.493865,1403 13TH AVENUE,WEYMOUTH TWP,16,1983,1,RES3A,3001 -0123_10_29,-74.4567147,39.35250897,52 CAPE MAY AVENUE,WEYMOUTH TWP,16,2014,1,RES1,3001 -0123_10_30,-74.60382608,39.37130723,54 CAPE MAY AVENUE,WEYMOUTH TWP,16,1991,1,RES1,3001 -0123_10_31,-74.59322902,39.36096432,58 CAPE MAY AVENUE,WEYMOUTH TWP,17,1989,1,RES1,3001 -0123_10_32,-74.64250327,39.43485293,60 CAPE MAY AVENUE,WEYMOUTH TWP,17,1993,1,RES1,3001 -0123_10_33,-74.445552,39.359943,62 CAPE MAY AVENUE,WEYMOUTH TWP,16,1962,1,RES1,3001 -0123_10_34,-74.64698166,39.37651745,1402 12TH AVENUE,WEYMOUTH TWP,17,1978,1,RES1,3002 -0123_10_34.01,-74.59120028,39.37104447,1404 12TH AVENUE,WEYMOUTH TWP,16,1980,1,RES1,3001 -0123_10_5,-74.55449708,39.46988519,1423 13TH AVENUE,WEYMOUTH TWP,16,1995,1,RES1,3001 -0123_10_7,-74.49166434,39.33681899,1419-1421 13TH AVENUE,WEYMOUTH TWP,17,2002,1,RES1,3001 -0123_100_1,-74.8358948,39.39441145,1201 LORETTO AVENUE,WEYMOUTH TWP,,0,1,RES3A,3001 -0123_101_1,-74.63138744,39.39081728,1201 MADDEN AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_102_1,-74.62481,39.384829,1309 BOULEVARD ROUTE 50,WEYMOUTH TWP,,0,1,RES1,3001 -0123_102_11,-74.5067475,39.3396595,1301 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_102_5,-74.509838,39.4901045,1305 BOULEVARD ROUTE 50,WEYMOUTH TWP,,0,1,RES1,3001 -0123_102_9,-74.6675705,39.405502,1303A-1303B BLVD RT 50,WEYMOUTH TWP,45,1977,2,RES1,3002 -0123_103_1,-74.541771,39.3927265,1311 MATHEWS AVENUE,WEYMOUTH TWP,17,2003,1,RES1,3001 -0123_103_11,-74.45932325,39.34861766,1305A-1305B MATHEWS AVE,WEYMOUTH TWP,45,1917,2,RES3A,3001 -0123_103_13,-74.59047683,39.32605346,1303 MATHEWS AVENUE,WEYMOUTH TWP,17,2006,1,RES1,3001 -0123_103_15,-74.6243915,39.421163,1301 MATHEWS AVENUE,WEYMOUTH TWP,17,1999,1,RES1,3001 -0123_103_3,-74.49008415,39.33746302,1 LAFAYETTE AVENUE,WEYMOUTH TWP,27,1956,2,RES1,3001 -0123_103_4,-74.5183405,39.4708155,3 LAFAYETTE AVENUE,WEYMOUTH TWP,27,1956,2,RES1,3001 -0123_103_5,-74.586781,39.328372,1309A-1309B MATHEWS AVE,WEYMOUTH TWP,45,1917,2,RES3B,3001 -0123_103_5.01,-74.47498486,39.48451304,1312 LORETTO AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_103_7,-74.6256375,39.4866415,1307 MATHEWS AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_103_7.01,-74.4862595,39.3371455,1310 LORETTO AVENUE,WEYMOUTH TWP,27,1917,2,RES1,3002 -0123_104_1,-74.6396315,39.4629165,1313 LORETTO AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_104_12,-74.55752436,39.36172439,2 DARLINGTON AVENUE,WEYMOUTH TWP,15,1917,1,RES1,3001 -0123_104_4,-74.52571835,39.31545038,1311 LORETTO AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_104_6,-74.5076555,39.42616,1309 LORETTO AVENUE,WEYMOUTH TWP,27,1917,2,RES1,3002 -0123_104_7,-74.4834271,39.33486566,1307 LORETTO AVENUE,WEYMOUTH TWP,27,1917,2,RES1,3001 -0123_104_8,-74.537705,39.4609195,1305 LORETTO AVENUE,WEYMOUTH TWP,17,2003,1,RES1,3001 -0123_105_11,-74.45854251,39.48240474,1303 MADDEN AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_105_13,-74.55936226,39.39926335,1305 MADDEN AVENUE,WEYMOUTH TWP,16,1961,1,RES1,3001 -0123_105_15,-74.45872253,39.49197666,1307-1315 MADDEN AVENUE,WEYMOUTH TWP,16,1950,1,RES1,3001 -0123_105_17,-74.45980265,39.49875245,1309 MADDEN AVENUE,WEYMOUTH TWP,16,1961,1,RES1,3001 -0123_105_21,-74.4921245,39.3347855,4 DARLINGTON AVENUE,WEYMOUTH TWP,16,1994,1,RES1,3002 -0123_105_21.01,-74.48798634,39.43406448,6 DARLINGTON AVENUE,WEYMOUTH TWP,17,1962,1,RES1,3001 -0123_107_1,-74.88517146,39.59683966,1421 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1917,1,RES1,3002 -0123_107_10,-74.59903558,39.36108869,1403 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_107_11,-74.65161655,39.41089281,1401 BOULEVARD ROUTE 50,WEYMOUTH TWP,17,1917,1,RES1,3001 -0123_107_2,-74.6307865,39.390347,1419 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_107_3,-74.47008266,39.48857597,1417 BOULEVARD ROUTE 50,WEYMOUTH TWP,15,1917,1,RES1,3001 -0123_107_4,-74.47355118,39.48181248,1415 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_107_5,-74.92114066,39.551128,1413 BOULEVARD ROUTE 50,WEYMOUTH TWP,,0,1,RES1,3001 -0123_107_8,-74.68436216,39.44478021,1407 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1917,1,RES3A,3001 -0123_107_9,-74.56327269,39.3714683,1405 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_108_1,-74.5162833,39.46932115,1417 MATHEWS AVENUE,WEYMOUTH TWP,17,1917,1,RES1,3001 -0123_108_11,-74.63371458,39.38545796,1402 LORETTO AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_108_2,-74.483548,39.3510315,1412 LORETTO AVENUE,WEYMOUTH TWP,17,1917,1,RES1,3001 -0123_108_3,-74.77632634,39.64587847,1413-1415 MATHEWS AVENUE,WEYMOUTH TWP,15,1985,1,RES1,3001 -0123_108_3.01,-74.949712,39.5315555,1408 LORETTO AVENUE,WEYMOUTH TWP,16,1940,1,RES1,3001 -0123_108_6,-74.54102077,39.39033722,1411 MATHEWS AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_108_9,-74.560937,39.406463,1404 LORETTO AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_109_1,-74.52568028,39.31448082,1409-1411 LORETTO AVENUE,WEYMOUTH TWP,45,1917,2,RES1,3001 -0123_109_5,-74.5206205,39.46235879,1407 LORETTO AVENUE,WEYMOUTH TWP,16,1952,1,RES1,3001 -0123_109_8,-74.50123084,39.33016299,1403 LORETTO AVENUE,WEYMOUTH TWP,45,1918,4,RES1,3002 -0123_11_1,-74.4884653,39.43126118,47 CAPE MAY AVENUE,WEYMOUTH TWP,17,1972,1,RES3A,3001 -0123_11_1.02,-74.63540479,39.30769658,1309 13TH AVENUE,WEYMOUTH TWP,16,1967,1,RES1,3001 -0123_11_11,-74.56922528,39.35279735,38 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,RES1,3001 -0123_11_11.01,-74.6376229,39.34028964,1303 13TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3002 -0123_11_11.02,-74.534022,39.314208,1305 13TH AVENUE,WEYMOUTH TWP,16,1968,1,RES1,3001 -0123_11_12,-74.955601,39.5214055,40 TUCKAHOE ROAD,WEYMOUTH TWP,16,1984,1,RES1,3001 -0123_11_13,-74.52058574,39.45695264,42 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,RES1,3001 -0123_11_13.01,-74.36915363,39.4019078,44 TUCKAHOE ROAD,WEYMOUTH TWP,16,1930,1,RES1,3001 -0123_11_13.02,-74.80812541,39.37368061,1 BARTON LANE,WEYMOUTH TWP,16,1977,1,RES1,3002 -0123_11_14,-74.46809866,39.3453029,46 TUCKAHOE ROAD,WEYMOUTH TWP,16,1930,1,RES1,3004 -0123_11_14.02,-74.59872138,39.31332803,50 TUCKAHOE ROAD,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_11_14.03,-74.55422581,39.36440428,48 TUCKAHOE ROAD,WEYMOUTH TWP,16,1920,2,RES1,3001 -0123_11_15,-74.50644217,39.4911045,52 TUCKAHOE ROAD,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_11_16,-74.55791623,39.36530805,54 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,RES1,3001 -0123_11_16.01,-74.88904108,39.54084944,56 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,RES1,3001 -0123_11_17,-74.57858115,39.34383691,58 TUCKAHOE ROAD,WEYMOUTH TWP,15,1948,1,RES1,3001 -0123_11_2,-74.65046927,39.41393536,1313 13TH AVENUE,WEYMOUTH TWP,16,1930,2,RES1,3002 -0123_11_2.01,-74.50534256,39.33226031,51 CAPE MAY AVENUE,WEYMOUTH TWP,17,1982,2,RES1,3001 -0123_11_3.01,-74.477395,39.338072,55 CAPE MAY AVENUE,WEYMOUTH TWP,16,2000,1,RES1,3002 -0123_11_4,-74.513833,39.429838,57 CAPE MAY AVENUE,WEYMOUTH TWP,17,1974,1,RES1,3002 -0123_11_5,-74.55681224,39.35545767,59 CAPE MAY AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_11_6,-74.80982166,39.64237249,61 CAPE MAY AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_11_7,-74.76323967,39.3513845,1308 12TH AVENUE,WEYMOUTH TWP,16,2008,1,RES1,3004 -0123_11_8,-74.5489192,39.36212656,1307 13TH AVENUE,WEYMOUTH TWP,16,1978,1,RES3A,3001 -0123_11_9,-74.46822316,39.34399001,1306 12TH AVENUE,WEYMOUTH TWP,16,1963,1,RES1,3001 -0123_110_4,-74.76486194,39.35058886,1401 MADDEN AVENUE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_112_1,-74.48859948,39.35044383,1502 MATHEWS AVENUE,WEYMOUTH TWP,17,1920,1,RES1,3001 -0123_112_1.01,-74.612937,39.417828,1524-1526 GRACE AVENUE,WEYMOUTH TWP,43,1925,2,RES1,3001 -0123_113_1,-74.600804,39.327471,1503 MATHEWS AVENUE,WEYMOUTH TWP,16,1981,1,RES1,3001 -0123_113_3,-74.49349779,39.33722348,1502 CLEMENT STREET,WEYMOUTH TWP,15,1917,1,RES1,3002 -0123_113_4,-74.49561147,39.33683396,1500 CLEMENT STREET,WEYMOUTH TWP,16,1980,1,RES1,3001 -0123_113_6,-74.46785508,39.34428337,1501 MATHEWS AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_116_1,-74.560347,39.416373,1509 GRACE AVENUE,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_116_4,-74.60628852,39.48313522,1515 GRACE AVENUE,WEYMOUTH TWP,17,1987,1,RES1,3002 -0123_116_6,-74.504984,39.3409345,1519 GRACE AVENUE,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_116_8,-74.9513215,39.5210915,1523 GRACE AVENUE,WEYMOUTH TWP,16,1988,1,RES1,3001 -0123_117_1,-74.52212296,39.41919966,1501 GRACE AVENUE,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_117_3,-74.52095698,39.31619866,1505 GRACE AVENUE,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_118_1,-74.6861915,39.479098,1401 GRACE AVENUE,WEYMOUTH TWP,16,1980,1,RES1,3001 -0123_118_3,-74.63991661,39.44399672,1405 GRACE AVENUE,WEYMOUTH TWP,16,1984,1,RES1,3001 -0123_118_5,-74.51346664,39.43655095,1409 GRACE AVENUE,WEYMOUTH TWP,17,1980,1,RES1,3001 -0123_119.01_1,-74.7349025,39.435154,902-920 GRANT STREET,WEYMOUTH TWP,,1986,1,RES1,3001 -0123_119.02_1,-74.97446773,39.50985888,903 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3004 -0123_119.02_2,-74.50773928,39.44758118,905 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.02_3,-74.64949147,39.39957123,907 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.02_4,-74.9478025,39.531036,909 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.02_5,-74.53202619,39.38811305,911 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.02_6,-74.639401,39.382789,913 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.03_1,-74.512755,39.412274,917 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.03_2,-74.5638005,39.3586745,919 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.03_3,-74.516645,39.4106595,921 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.03_4,-74.50524105,39.33094217,923 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.03_5,-74.97386775,39.50849108,925 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.03_6,-74.7161555,39.407823,927 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3002 -0123_119.04_1,-74.47543499,39.48410713,948 GRANT AVENUE,WEYMOUTH TWP,35,1988,1,RES1,3001 -0123_119.04_10,-74.50452417,39.33593995,930 GRANT AVENUE,WEYMOUTH TWP,35,1987,1,RES1,3002 -0123_119.04_11,-74.83183323,39.37503371,928 GRANT AVENUE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.04_12,-74.5566268,39.36416867,926 GRANT AVENUE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.04_13,-74.67217272,39.34347882,924 GRANT AVENUE,WEYMOUTH TWP,35,1987,1,RES3A,3001 -0123_119.04_14,-74.81526001,39.3991559,922 GRANT AVENUE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.04_2,-74.4517883,39.48527482,946 GRANT AVENUE,WEYMOUTH TWP,35,1988,1,RES1,3001 -0123_119.04_3,-74.6141048,39.32245186,944 GRANT AVENUE,WEYMOUTH TWP,35,1988,1,RES1,3004 -0123_119.04_4,-74.48260908,39.33895417,942 GRANT AVENUE,WEYMOUTH TWP,35,1988,1,RES1,3001 -0123_119.04_5,-74.56761449,39.41202635,940 GRANT AVENUE,WEYMOUTH TWP,35,1988,1,RES1,3001 -0123_119.04_6,-74.56724112,39.34291917,938 GRANT AVENUE,WEYMOUTH TWP,35,1989,1,RES1,3001 -0123_119.04_7,-74.50932985,39.32638248,936 GRANT AVENUE,WEYMOUTH TWP,35,1989,1,RES1,3001 -0123_119.04_8,-74.50740039,39.32538689,934 GRANT AVENUE,WEYMOUTH TWP,35,1989,1,RES1,3001 -0123_119.04_9,-74.60370589,39.31742869,932 GRANT AVENUE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_13,-74.46400784,39.50263439,928 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_14,-74.6043505,39.3759085,926 BLAKE DRIVE,WEYMOUTH TWP,35,1986,1,RES1,3001 -0123_119.05_15,-74.5381865,39.4675915,924 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_16,-74.49621682,39.32896953,922 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3002 -0123_119.05_17,-74.61246969,39.35101653,920 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_18,-74.53446332,39.3855824,918 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_19,-74.75511798,39.43067938,914 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_20,-74.55110941,39.37548214,912 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_21,-74.82412443,39.37565379,910 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_22,-74.5808785,39.3421295,908 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_23,-74.5735805,39.343,906 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119.05_24,-74.59993146,39.36760841,904 BLAKE DRIVE,WEYMOUTH TWP,35,1987,1,RES1,3001 -0123_119_1,-74.62439669,39.41711772,1003 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,1974,1,RES1,3001 -0123_119_10,-74.63404164,39.34720295,1021 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,14,1946,1,COM1,3004 -0123_119_100.09,-74.48962319,39.44058454,11 LOWELL STREET,WEYMOUTH TWP,16,1991,1,RES1,3001 -0123_119_100.10,-74.50059536,39.32685933,13 LOWELL STREET,WEYMOUTH TWP,16,1955,1,RES1,3001 -0123_119_100.11,-74.5054245,39.4919825,15 LOWELL STREET,WEYMOUTH TWP,17,2003,1,RES1,3001 -0123_119_100.12,-74.88577416,39.57775387,17 LOWELL STREET,WEYMOUTH TWP,17,1991,1,RES1,3001 -0123_119_100.13,-74.48445469,39.33624864,19 LOWELL STREET,WEYMOUTH TWP,16,2001,1,RES1,3001 -0123_119_102.01,-74.736893,39.7205065,905 MORRIS LANE,WEYMOUTH TWP,18,1994,1,RES1,3001 -0123_119_102.02,-74.53218313,39.47065275,909 MORRIS LANE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_119_102.03,-74.61447829,39.34057102,911 MORRIS LANE,WEYMOUTH TWP,16,1972,1,RES1,3001 -0123_119_102.04,-74.4194285,39.3673975,901 MORRIS LANE,WEYMOUTH TWP,16,1895,1,RES1,3001 -0123_119_102.05,-74.62629846,39.41874714,908 MORRIS LANE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_119_102.06,-74.5193415,39.4688295,903 MORRIS LANE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_119_102.07,-74.535607,39.3786045,1001 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1980,1,RES1,3001 -0123_119_11,-74.62585569,39.41951459,1101 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_119_11.01,-74.54968416,39.36218748,1103 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_119_14.01,-74.7440015,39.4344405,1111 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_119_14.02,-74.5276656,39.31298012,1113 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_119_14.03,-74.80836032,39.35295054,1115 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_119_14.04,-74.61061147,39.32119409,1117 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1994,1,COM1,3002 -0123_119_15,-74.5921045,39.4166015,1119 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_119_16,-74.61412117,39.49874499,1121 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1960,1,COM1,3002 -0123_119_17,-74.60731251,39.38673433,1123 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,15,1950,1,RES1,3001 -0123_119_18,-74.46429033,39.35818739,1125 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,2005,1,RES1,3001 -0123_119_19,-74.521314,39.3217035,1127 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1957,1,RES1,3001 -0123_119_19.01,-74.63164963,39.31623556,1129 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,2004,1,RES1,3001 -0123_119_2,-74.5904,39.3251965,1005 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1966,1,RES1,3001 -0123_119_20,-74.56576536,39.47469594,1131 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,15,1960,1,COM1,3002 -0123_119_21,-74.54770181,39.36865595,1201 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1971,1,RES1,3001 -0123_119_22,-74.58835161,39.33325582,1205 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,2004,1,RES1,3001 -0123_119_23,-74.62766903,39.39126001,1207 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1971,1,RES1,3002 -0123_119_24,-74.7535148,39.43153775,1209 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,15,1968,1,RES1,3001 -0123_119_24.01,-74.47619914,39.33869868,1211 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,15,1958,1,COM1,3004 -0123_119_25,-74.687994,39.416697,1213 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1991,1,RES1,3001 -0123_119_26,-74.7632307,39.40526172,1215 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1965,1,RES1,3001 -0123_119_28,-74.611064,39.3397505,1221 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1996,1,RES1,3001 -0123_119_29,-74.51877082,39.32353153,1223 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,2014,2,RES1,3001 -0123_119_3,-74.4400622,39.48960762,1007 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,15,1957,1,RES1,3001 -0123_119_30,-74.62296495,39.43347648,1317 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1976,1,RES1,3001 -0123_119_30.01,-74.49336566,39.33180951,1303 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,1994,1,RES3A,3001 -0123_119_30.02,-74.49067546,39.45536372,1229 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,15,1980,1,RES1,3001 -0123_119_30.03,-74.520795,39.3197305,1301 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,1987,1,RES1,3001 -0123_119_30.04,-74.516686,39.3247525,1305 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,15,1940,1,RES1,3001 -0123_119_30.05,-74.6088485,39.3251805,1225 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,2001,1,RES1,3001 -0123_119_30.07,-74.75826,39.4315345,1309 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1962,1,RES1,3002 -0123_119_30.08,-74.58838879,39.43079804,1231 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1986,1,RES1,3001 -0123_119_30.10,-74.51316994,39.32311338,1311 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1993,1,RES1,3001 -0123_119_30.11,-74.487163,39.4793335,1313 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,1964,1,RES1,3001 -0123_119_30.12,-74.51743494,39.31866314,1321 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1970,1,RES1,3001 -0123_119_30.13,-74.52322954,39.41813082,1319 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1972,1,COM1,3004 -0123_119_30.14,-74.48701285,39.47804591,1315 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1956,1,RES3A,3001 -0123_119_5,-74.53812583,39.37420355,1011 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,15,1957,1,RES1,3001 -0123_119_6,-74.586521,39.3325455,1013 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1976,1,RES1,3002 -0123_119_8,-74.538142,39.371841,1017 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,16,1965,1,RES1,3001 -0123_12_1,-74.55999394,39.36633784,1517 12TH AVENUE,WEYMOUTH TWP,16,1970,2,RES1,3001 -0123_12_12,-74.49659869,39.50200886,1518 11TH AVENUE,WEYMOUTH TWP,16,1978,1,RES1,3001 -0123_12_2,-74.63239023,39.39186174,1515 12TH AVENUE,WEYMOUTH TWP,14,1980,1,RES1,3001 -0123_12_20,-74.470168,39.4996435,1502 11TH AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_12_4,-74.5013335,39.4146605,1511 12TH AVENUE,WEYMOUTH TWP,16,1986,1,RES1,3001 -0123_12_7,-74.621886,39.4527905,1505 12TH AVENUE,WEYMOUTH TWP,16,1970,1,RES3A,3001 -0123_120_1.01,-74.541269,39.45949,1600 RIVER FRONT,WEYMOUTH TWP,,1960,1,RES1,3001 -0123_120_1.05,-74.596466,39.3169015,1323 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,2014,1,RES1,3001 -0123_120_1.06,-74.78704163,39.67723207,1325 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,18,2000,1,RES1,3001 -0123_120_1.07,-74.46967672,39.44634852,1327 WEST RIVERSIDE DRIVE,WEYMOUTH TWP,17,1978,1,RES1,3001 -0123_13_10,-74.47342425,39.47130195,1411 12TH AVENUE,WEYMOUTH TWP,16,2013,1,RES1,3001 -0123_13_11,-74.6459615,39.356804,1409 12TH AVENUE,WEYMOUTH TWP,17,1920,1,RES1,3001 -0123_13_14,-74.4854866,39.34700917,1428 11TH AVENUE,WEYMOUTH TWP,15,1938,2,RES1,3001 -0123_13_15.01,-74.5840565,39.329229,1424 11TH AVENUE,WEYMOUTH TWP,16,1964,1,COM1,3004 -0123_13_16,-74.59213281,39.32664729,1422 11TH AVENUE,WEYMOUTH TWP,16,1968,1,RES3B,3001 -0123_13_19,-74.5186445,39.407001,1416 11TH AVENUE,WEYMOUTH TWP,16,1947,1,RES3A,3001 -0123_13_21,-74.8834505,39.572639,1412 11TH AVENUE,WEYMOUTH TWP,16,1976,1,RES3A,3001 -0123_13_24,-74.57438996,39.41870118,1406 11TH AVENUE,WEYMOUTH TWP,16,1948,1,RES1,3001 -0123_13_26,-74.50536493,39.48080142,66 CAPE MAY AVENUE,WEYMOUTH TWP,16,1956,2,RES1,3001 -0123_13_28,-74.70579912,39.4463621,70 CAPE MAY AVENUE,WEYMOUTH TWP,15,1947,1,RES1,3001 -0123_13_29,-74.6171685,39.381128,72 CAPE MAY AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3002 -0123_13_30,-74.60016697,39.3834582,74 CAPE MAY AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_13_31,-74.6615685,39.4462995,76 CAPE MAY AVENUE,WEYMOUTH TWP,16,1966,1,RES1,3001 -0123_13_32,-74.71797946,39.44426114,78 CAPE MAY AVENUE,WEYMOUTH TWP,15,1932,1,RES1,3001 -0123_13_4,-74.6377705,39.46803,1423 12TH AVENUE,WEYMOUTH TWP,16,1982,1,RES1,3001 -0123_13_5,-74.59116015,39.39300795,1419-1421 12TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_13_7,-74.628928,39.369382,1417 12TH AVENUE,WEYMOUTH TWP,15,1988,1,RES3A,3001 -0123_13_8,-74.4527455,39.4931045,1415 12TH AVENUE,WEYMOUTH TWP,16,1983,1,RES1,3001 -0123_13_9,-74.57420878,39.35935618,1413 12TH AVENUE,WEYMOUTH TWP,15,1956,1,RES1,3001 -0123_14_1,-74.5927725,39.430123,65 CAPE MAY AVENUE,WEYMOUTH TWP,16,1940,1,RES1,3001 -0123_14_1.01,-74.607718,39.363333,1313 12TH AVENUE,WEYMOUTH TWP,17,1966,1,RES1,3001 -0123_14_10,-74.693243,39.4478575,1305 12TH AVENUE,WEYMOUTH TWP,17,1978,1,RES3A,3001 -0123_14_10.01,-74.49407916,39.33636712,1303 12TH AVENUE,WEYMOUTH TWP,16,1980,1,RES1,3001 -0123_14_11,-74.51733985,39.32150798,1310 11TH AVENUE,WEYMOUTH TWP,16,1993,1,RES1,3001 -0123_14_12,-74.60698115,39.37571925,1308 11TH AVENUE,WEYMOUTH TWP,17,1997,1,RES1,3001 -0123_14_13,-74.82118453,39.38608961,1306 11TH AVENUE,WEYMOUTH TWP,15,1940,1,RES1,3001 -0123_14_14,-74.59677898,39.37994771,1304 11TH AVENUE,WEYMOUTH TWP,15,1940,1,RES1,3001 -0123_14_15,-74.48241086,39.34987204,60-A TUCKAHOE ROAD,WEYMOUTH TWP,16,1960,2,RES1,3001 -0123_14_16,-74.579151,39.3382195,62 TUCKAHOE ROAD,WEYMOUTH TWP,16,1990,1,RES1,3001 -0123_14_17,-74.56260014,39.50397966,64 TUCKAHOE ROAD,WEYMOUTH TWP,,1996,1,RES1,3001 -0123_14_18,-74.56011418,39.39706281,66 TUCKAHOE ROAD,WEYMOUTH TWP,16,1900,1,RES3A,3001 -0123_14_19,-74.50476736,39.49461577,68 TUCKAHOE ROAD,WEYMOUTH TWP,16,1898,1,RES3B,3001 -0123_14_20,-74.50848615,39.33544416,70 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,RES1,3001 -0123_14_21,-74.49560704,39.43072297,72 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,RES1,3001 -0123_14_3,-74.5552925,39.3661525,69 CAPE MAY AVENUE,WEYMOUTH TWP,16,1980,1,RES1,3001 -0123_14_4,-74.629817,39.4294765,73 CAPE MAY AVENUE,WEYMOUTH TWP,15,1900,1,RES1,3001 -0123_14_4.01,-74.6465515,39.4121555,71 CAPE MAY AVENUE,WEYMOUTH TWP,16,1968,1,RES1,3002 -0123_14_5,-74.5634425,39.420261,77 CAPE MAY AVENUE,WEYMOUTH TWP,16,1970,1,RES1,3001 -0123_14_6,-74.612408,39.4890415,79 CAPE MAY AVENUE,WEYMOUTH TWP,16,1961,1,RES1,3001 -0123_14_7,-74.5932505,39.3576925,81 CAPE MAY AVENUE,WEYMOUTH TWP,16,1988,1,RES3A,3001 -0123_14_9,-74.5805918,39.44148803,1309 12TH AVENUE,WEYMOUTH TWP,16,1983,1,RES1,3001 -0123_15_1,-74.47364245,39.48690404,1519 11TH AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_15_10,-74.59942705,39.3699188,1501 11TH AVENUE,WEYMOUTH TWP,16,1962,1,RES1,3001 -0123_15_11,-74.5682165,39.4129945,1512 10TH AVENUE,WEYMOUTH TWP,16,1999,1,GOV1,3004 -0123_15_13,-74.52043736,39.44767048,1510 10TH AVENUE,WEYMOUTH TWP,16,2002,1,RES3A,3001 -0123_15_15,-74.57389466,39.41380549,1504-1506 10TH AVENUE,WEYMOUTH TWP,16,1997,1,RES1,3001 -0123_15_3,-74.54516619,39.37946626,1515 11TH AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_15_4,-74.47203468,39.34055947,1513 11TH AVENUE,WEYMOUTH TWP,16,1940,1,RES1,3001 -0123_15_9,-74.58528367,39.32316109,1503 11TH AVENUE,WEYMOUTH TWP,15,1955,1,RES1,3001 -0123_16_1,-74.76507852,39.66780517,1425 11TH AVENUE,WEYMOUTH TWP,16,1968,1,GOV1,3004 -0123_16_11,-74.6003835,39.3315225,1405 11TH AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_16_13,-74.556737,39.367577,1418-1420 10TH AVENUE,WEYMOUTH TWP,17,1999,1,RES1,3001 -0123_16_15,-74.49524293,39.47677351,1416 10TH AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_16_16,-74.50178955,39.53027379,1414 10TH AVENUE,WEYMOUTH TWP,16,1976,1,RES1,3002 -0123_16_17,-74.53772227,39.47145544,1412 10TH AVENUE,WEYMOUTH TWP,16,1981,1,RES3A,3001 -0123_16_18,-74.625913,39.414976,1410 10TH AVENUE,WEYMOUTH TWP,15,1955,1,RES1,3001 -0123_16_19,-74.501441,39.332293,1408 10TH AVENUE,WEYMOUTH TWP,51,1950,1,RES1,3001 -0123_16_20,-74.568747,39.412884,1406 10TH AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_16_22,-74.58674576,39.34946319,80 CAPE MAY AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_16_24,-74.567964,39.361869,84 CAPE MAY AVENUE,WEYMOUTH TWP,16,1990,1,RES1,3001 -0123_16_25,-74.53651904,39.45507723,86 CAPE MAY AVENUE,WEYMOUTH TWP,16,1955,1,RES1,3001 -0123_16_27,-74.51409798,39.43190977,90 CAPE MAY AVENUE,WEYMOUTH TWP,15,1930,1,RES3A,3001 -0123_16_28,-74.57259627,39.41397611,92 CAPE MAY AVENUE,WEYMOUTH TWP,16,1969,1,RES1,3001 -0123_16_29,-74.4596665,39.3478945,1403 11TH AVENUE,WEYMOUTH TWP,16,1979,1,RES1,3001 -0123_16_5,-74.5587055,39.4761405,1417 11TH AVENUE,WEYMOUTH TWP,16,1994,1,RES1,3001 -0123_16_7,-74.4691835,39.344063,1413 11TH AVENUE,WEYMOUTH TWP,16,1930,1,RES1,3002 -0123_16_8,-74.59289659,39.32913735,1411 11TH AVENUE,WEYMOUTH TWP,16,1997,1,RES1,3001 -0123_17_1,-74.50829178,39.45197905,83 CAPE MAY AVENUE,WEYMOUTH TWP,16,1996,1,RES1,3001 -0123_17_10,-74.5079175,39.330214,1307 11TH AVENUE,WEYMOUTH TWP,16,1954,1,RES1,3001 -0123_17_12,-74.6115495,39.422518,1303 11TH AVENUE,WEYMOUTH TWP,15,1900,1,RES3A,3001 -0123_17_13,-74.44928954,39.35530318,1320 10TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_17_14,-74.585515,39.3514465,1318 10TH AVENUE,WEYMOUTH TWP,16,1971,1,RES1,3001 -0123_17_15,-74.48613952,39.47790385,1316 10TH AVENUE,WEYMOUTH TWP,16,1919,1,RES1,3001 -0123_17_16,-74.6586465,39.358041,1314 10TH AVENUE,WEYMOUTH TWP,16,1931,1,RES1,3001 -0123_17_17,-74.52315248,39.54188967,1312 10TH AVENUE,WEYMOUTH TWP,16,1930,1,RES1,3001 -0123_17_18,-74.8639749,39.43525884,1310 10TH AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_17_19,-74.63025,39.427391,74 TUCKAHOE ROAD,WEYMOUTH TWP,15,1955,1,RES1,3001 -0123_17_20,-74.51931923,39.46228781,76 TUCKAHOE ROAD,WEYMOUTH TWP,16,1927,1,COM3,3004 -0123_17_21,-74.8015125,39.6435605,78 TUCKAHOE ROAD,WEYMOUTH TWP,16,1974,1,RES1,3001 -0123_17_22,-74.71224528,39.41981487,80 TUCKAHOE ROAD,WEYMOUTH TWP,16,1988,1,RES1,3004 -0123_17_23,-74.84891001,39.37155517,82 TUCKAHOE ROAD,WEYMOUTH TWP,,1992,1,RES1,3001 -0123_17_24,-74.57412037,39.48133113,84 TUCKAHOE ROAD,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_17_25,-74.6840665,39.4444105,86 TUCKAHOE ROAD,WEYMOUTH TWP,16,1934,1,RES1,3004 -0123_17_29,-74.53751736,39.41270322,1308 10TH AVENUE,WEYMOUTH TWP,17,1972,1,RES1,3001 -0123_17_3,-74.48514678,39.33512417,87 CAPE MAY AVENUE,WEYMOUTH TWP,16,2002,1,RES1,3001 -0123_17_4,-74.604571,39.3919945,89 CAPE MAY AVENUE,WEYMOUTH TWP,16,1972,1,RES1,3002 -0123_17_5,-74.4631105,39.53536,91 CAPE MAY AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_17_7,-74.48611009,39.47867402,95 CAPE MAY AVENUE,WEYMOUTH TWP,16,1935,1,RES1,3001 -0123_17_8,-74.64036016,39.38026041,1311 11TH AVENUE,WEYMOUTH TWP,15,1940,1,RES1,3001 -0123_18.01_12,-74.59432304,39.34263545,1307 10TH AVENUE,WEYMOUTH TWP,15,1900,1,RES1,3001 -0123_18.01_13,-74.53979517,39.38002402,1305 10TH AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3002 -0123_18.01_19,-74.5161544,39.44311664,1306 9TH AVENUE,WEYMOUTH TWP,16,1974,1,RES1,3001 -0123_18.01_20,-74.51628221,39.47290053,1304 9TH AVENUE,WEYMOUTH TWP,17,1983,1,RES1,3001 -0123_18.01_21,-74.5883015,39.413122,88 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,RES1,3001 -0123_18.01_21.01,-74.63518747,39.39590768,1303 10TH AVENUE,WEYMOUTH TWP,16,1999,1,RES1,3001 -0123_18.01_21.02,-74.5170335,39.4532565,1301 10TH AVENUE,WEYMOUTH TWP,16,1975,1,RES1,3001 -0123_18.01_23,-74.548394,39.374289,92 TUCKAHOE ROAD,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_18.01_26,-74.5945641,39.34310831,98 TUCKAHOE ROAD,WEYMOUTH TWP,17,1989,1,RES1,3001 -0123_18.01_27,-74.537842,39.406424,1302 9TH AVENUE,WEYMOUTH TWP,16,1940,1,COM1,3004 -0123_18.01_27.01,-74.46963667,39.49116551,100 TUCKAHOE ROAD,WEYMOUTH TWP,16,1935,1,RES1,3001 -0123_18_1,-74.4874207,39.33765542,1317 10TH AVENUE,WEYMOUTH TWP,16,1965,1,REL1,3004 -0123_18_1.01,-74.6497636,39.35814578,1321 10TH AVENUE,WEYMOUTH TWP,,0,1,RES3A,3001 -0123_18_1.02,-74.62462056,39.38196643,1319 10TH AVENUE,WEYMOUTH TWP,15,1940,1,RES1,3001 -0123_18_10,-74.5249,39.3152745,1311 10TH AVENUE,WEYMOUTH TWP,16,1900,1,RES1,3001 -0123_18_2,-74.5865715,39.3848195,97 CAPE MAY AVENUE,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_18_3,-74.599065,39.430956,99 CAPE MAY AVENUE,WEYMOUTH TWP,16,1980,1,RES3A,3002 -0123_18_4,-74.56885379,39.37038394,101 CAPE MAY AVENUE,WEYMOUTH TWP,16,1961,1,RES1,3001 -0123_18_5,-74.4642575,39.3489145,103 CAPE MAY AVENUE,WEYMOUTH TWP,16,1968,1,RES1,3001 -0123_18_6,-74.80664393,39.64068136,105 CAPE MAY AVENUE,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_18_9,-74.56487725,39.35303515,1313 10TH AVENUE,WEYMOUTH TWP,16,1991,1,RES1,3001 -0123_19_2,-74.56297541,39.47528328,7 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1964,1,RES1,3001 -0123_19_2.01,-74.4519715,39.357366,5 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1950,1,RES1,3001 -0123_19_2.03,-74.694383,39.4481825,9 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1972,1,RES1,3001 -0123_19_3,-74.52746707,39.46649333,11 SOUTH JERSEY AVENUE,WEYMOUTH TWP,15,1962,3,RES1,3001 -0123_19_4,-74.47265835,39.48386041,13 SOUTH JERSEY AVENUE,WEYMOUTH TWP,17,1950,1,RES1,3001 -0123_19_7,-74.54759096,39.37503384,3 SOUTH JERSEY AVENUE,WEYMOUTH TWP,13,1920,1,RES1,3001 -0123_2_2,-74.661238,39.641027,1 CAPE MAY AVENUE,WEYMOUTH TWP,,0,1,RES1,3002 -0123_2_2.01,-74.469267,39.3449955,2 TUCKAHOE ROAD,WEYMOUTH TWP,16,1959,1,RES1,3001 -0123_2_3,-74.47409516,39.48571456,6 TUCKAHOE ROAD,WEYMOUTH TWP,16,1973,1,RES1,3001 -0123_2_4,-74.580843,39.4299565,8 TUCKAHOE ROAD,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_2_5,-74.50110764,39.40991232,10 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,RES1,3001 -0123_2_6,-74.59218406,39.32052414,12 TUCKAHOE ROAD,WEYMOUTH TWP,16,1954,1,RES1,3004 -0123_20_6,-74.65044043,39.35562835,6 ESTELLE AVENUE,WEYMOUTH TWP,16,1974,1,RES1,3001 -0123_20_7,-74.48433,39.3405115,4 ESTELLE AVENUE,WEYMOUTH TWP,15,1902,1,RES3B,3001 -0123_20_7.01,-74.53106956,39.52378872,2 ESTELLE AVENUE,WEYMOUTH TWP,16,1976,1,RES1,3001 -0123_21_1,-74.52335867,39.31612706,15 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1940,1,RES1,3001 -0123_21_10,-74.47810997,39.34618112,1214 14TH AVENUE,WEYMOUTH TWP,17,2001,1,RES1,3001 -0123_21_11,-74.491407,39.5231175,1212 14TH AVENUE,WEYMOUTH TWP,16,1990,1,RES1,3001 -0123_21_7,-74.4992955,39.43116,21 SOUTH JERSEY AVENUE,WEYMOUTH TWP,17,1995,1,RES1,3001 -0123_21_7.04,-74.59656221,39.3417384,1220 14TH AVENUE,WEYMOUTH TWP,16,1982,1,RES1,3001 -0123_21_8,-74.48618798,39.49418046,1218 14TH AVENUE,WEYMOUTH TWP,15,1947,1,COM1,3004 -0123_21_9,-74.60684,39.32590633,1216 14TH AVENUE,WEYMOUTH TWP,15,1962,2,RES1,3001 -0123_22_5,-74.43244755,39.36661583,19 MAPLE AVENUE,WEYMOUTH TWP,16,1976,1,RES1,3001 -0123_23_1,-74.43623303,39.48963884,23 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_23_1.01,-74.59942073,39.36243558,1 PENNSYLVANIA AVENUE,WEYMOUTH TWP,17,1986,1,RES1,3001 -0123_23_1.02,-74.59503484,39.31146147,3 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1986,1,RES1,3001 -0123_23_13,-74.53560121,39.31428735,29 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1975,1,RES1,3001 -0123_23_19,-74.46771006,39.49424316,1220 13TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_23_3,-74.65067391,39.45547476,27 SOUTH JERSEY AVENUE,WEYMOUTH TWP,17,1986,1,RES1,3001 -0123_23_36,-74.6389055,39.401777,5 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1940,1,RES1,3001 -0123_23_43,-74.63664848,39.4105321,7 PENNSYLVANIA AVENUE,WEYMOUTH TWP,17,1976,1,RES1,3001 -0123_23_46.01,-74.45313239,39.49021847,9 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1977,1,RES3A,3001 -0123_23_50,-74.44443452,39.35517633,11 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1950,1,RES1,3002 -0123_24_1,-74.486222,39.3496325,1217 14TH AVENUE,WEYMOUTH TWP,16,1986,1,RES1,3001 -0123_24_18,-74.56304015,39.47709125,4 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1986,1,RES1,3001 -0123_24_30,-74.50424219,39.42969725,6 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1981,1,RES1,3001 -0123_24_35,-74.469816,39.3437105,1215 14TH AVENUE,WEYMOUTH TWP,16,1990,1,RES3B,3001 -0123_24_36,-74.4781655,39.47849974,1213 14TH AVENUE,WEYMOUTH TWP,16,1928,1,RES1,3001 -0123_24_37,-74.5334285,39.471295,1211 14TH AVENUE,WEYMOUTH TWP,15,1956,1,RES1,3001 -0123_24_40,-74.55606123,39.40522388,1205 14TH AVENUE,WEYMOUTH TWP,15,1979,1,RES3A,3001 -0123_24_41,-74.50554124,39.43159436,1203 14TH AVENUE,WEYMOUTH TWP,17,1988,1,RES1,3001 -0123_24_42,-74.60763936,39.39797332,14 ESTELLE AVENUE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_24_44,-74.466679,39.3448775,1214 13TH AVENUE,WEYMOUTH TWP,15,1920,1,RES1,3001 -0123_24_45,-74.78302065,39.63981454,1212 13TH AVENUE,WEYMOUTH TWP,16,1920,1,RES1,3004 -0123_24_46,-74.51582783,39.32705352,1210 13TH AVENUE,WEYMOUTH TWP,16,1947,1,RES1,3001 -0123_24_47,-74.50760252,39.44915577,1208 13TH AVENUE,WEYMOUTH TWP,16,1947,1,RES1,3001 -0123_24_49,-74.504802,39.4245385,1204 13TH AVENUE,WEYMOUTH TWP,16,1946,1,RES1,3001 -0123_24_5,-74.53168975,39.49818627,2 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_25_3,-74.355454,39.414372,17 ESTELLE AVENUE,WEYMOUTH TWP,17,1993,1,RES1,3001 -0123_25_4.01,-74.446714,39.3572225,19 ESTELLE AVENUE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_26_11,-74.49686541,39.49496666,35 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1930,1,RES1,3001 -0123_26_17,-74.59598819,39.31763083,15 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1957,1,RES1,3001 -0123_26_2,-74.60803187,39.39270743,31 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1988,2,RES1,3001 -0123_26_22,-74.50740182,39.42669541,19 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1976,1,RES1,3001 -0123_26_24,-74.92838231,39.53317652,21 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1974,1,RES1,3001 -0123_26_26,-74.37407111,39.39798088,23 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1994,1,RES1,3001 -0123_26_30,-74.5915735,39.3594275,25 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1965,1,RES1,3001 -0123_26_7,-74.67717665,39.38220532,33 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1930,1,RES1,3001 -0123_27_1,-74.762217,39.6407105,39 SOUTH JERSEY AVENUE,WEYMOUTH TWP,15,1987,1,RES1,3001 -0123_27_21,-74.55496406,39.47636228,31 PENNSYLVANIA AVENUE,WEYMOUTH TWP,15,1960,1,RES1,3001 -0123_27_25,-74.49997919,39.43220598,35 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_27_3,-74.59330868,39.32530303,41 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1908,1,RES1,3001 -0123_27_6,-74.49784575,39.33582567,43B SOUTH JERSEY AVENUE,WEYMOUTH TWP,,0,1,RES3A,3001 -0123_27_7,-74.54378211,39.4586853,43 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_28_1,-74.6011005,39.317519,8 PENNSYLVANIA AVENUE,WEYMOUTH TWP,13,1920,1,RES1,3001 -0123_28_11,-74.48796379,39.35114585,14 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1963,1,RES1,3002 -0123_28_13,-74.4905125,39.4311025,16 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_28_20,-74.495413,39.433384,18 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1966,1,RES3A,3001 -0123_28_22,-74.47890623,39.47957354,20 PENNSYLVANIA AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_28_35,-74.6084,39.47589612,1215 13TH AVENUE,WEYMOUTH TWP,16,1930,1,RES1,3001 -0123_28_36,-74.48677284,39.47842251,1213 13TH AVENUE,WEYMOUTH TWP,16,1976,1,RES1,3001 -0123_28_37,-74.50155754,39.3274698,1211 13TH AVENUE,WEYMOUTH TWP,16,1926,1,COM1,3004 -0123_28_38,-74.64990625,39.35478897,1209 13TH AVENUE,WEYMOUTH TWP,17,1920,1,RES1,3001 -0123_28_39,-74.66339025,39.44536746,1207 13TH AVENUE,WEYMOUTH TWP,16,1983,1,RES1,3001 -0123_28_40,-74.5630195,39.4131305,1205 13TH AVENUE,WEYMOUTH TWP,16,1992,1,RES1,3001 -0123_28_41,-74.56807603,39.36677542,1203 13TH AVENUE,WEYMOUTH TWP,15,1950,1,RES1,3001 -0123_28_43,-74.5914485,39.311972,1216 12TH AVENUE,WEYMOUTH TWP,15,1920,1,RES3A,3001 -0123_28_45,-74.47311766,39.48077995,1212 12TH AVENUE,WEYMOUTH TWP,16,1991,1,RES1,3001 -0123_28_46,-74.47557227,39.48639803,1210 12TH AVENUE,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_28_47,-74.626632,39.386622,1208 12TH AVENUE,WEYMOUTH TWP,16,1930,1,RES1,3001 -0123_28_49,-74.62877859,39.40895173,1204 12TH AVENUE,WEYMOUTH TWP,15,1910,1,RES1,3001 -0123_28_5,-74.470395,39.491376,10 PENNSYLVANIA AVENUE,WEYMOUTH TWP,,0,1,COM9,3002 -0123_28_50,-74.63382881,39.43384824,18 ESTELLE AVENUE,WEYMOUTH TWP,16,1962,1,RES3A,3001 -0123_28_50.01,-74.48639272,39.33456212,16 ESTELLE AVENUE,WEYMOUTH TWP,16,2008,1,RES1,3001 -0123_28_7,-74.50068328,39.32878335,12 PENNSYLVANIA AVENUE,WEYMOUTH TWP,16,1968,1,RES1,3001 -0123_29_10,-74.5513325,39.4668195,1120 12TH AVENUE,WEYMOUTH TWP,16,1997,1,RES1,3001 -0123_29_11,-74.60163008,39.31493381,1118 12TH AVENUE,WEYMOUTH TWP,17,2003,1,RES1,3001 -0123_29_12,-74.56997156,39.41458267,1116 12TH AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_29_13,-74.61505155,39.32411621,1114 12TH AVENUE,WEYMOUTH TWP,17,1992,1,RES1,3001 -0123_29_14,-74.79828735,39.63984254,1112 12TH AVENUE,WEYMOUTH TWP,17,1989,1,RES1,3001 -0123_29_15,-74.49910689,39.32877018,1110 12TH AVENUE,WEYMOUTH TWP,16,2012,1,RES1,3001 -0123_29_16,-74.4632372,39.35758414,1108 12TH AVENUE,WEYMOUTH TWP,17,2001,1,RES1,3001 -0123_29_17,-74.7914,39.644684,1106 12TH AVENUE,WEYMOUTH TWP,17,2001,1,RES1,3001 -0123_29_8,-74.507929,39.4352565,1124 12TH AVENUE,WEYMOUTH TWP,16,1940,1,RES1,3001 -0123_29_9,-74.5753095,39.3588715,1122 12TH AVENUE,WEYMOUTH TWP,16,1990,2,RES1,3001 -0123_3_11,-74.69561182,39.47949016,1419-1421 15TH AVENUE,WEYMOUTH TWP,17,1999,1,RES1,3001 -0123_3_13,-74.80064463,39.36788419,1424 14TH AVENUE,WEYMOUTH TWP,16,1970,1,RES1,3001 -0123_3_14,-74.51999799,39.53069511,1422 14TH AVENUE,WEYMOUTH TWP,17,2016,1,COM1,3003 -0123_3_2,-74.6246915,39.419372,1442 14TH AVENUE,WEYMOUTH TWP,16,1990,1,RES1,3001 -0123_3_6,-74.51078533,39.33124802,1434 14TH AVENUE,WEYMOUTH TWP,16,1999,1,RES1,3002 -0123_3_8,-74.526653,39.450092,1426-1430 14TH AVENUE,WEYMOUTH TWP,18,2016,1,RES1,3001 -0123_30_1,-74.63697979,39.42830863,1221 12TH AVENUE,WEYMOUTH TWP,16,1900,1,RES1,3001 -0123_30_1.01,-74.605997,39.4389005,1219 12TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_30_10,-74.55802228,39.47476396,1211 12TH AVENUE,WEYMOUTH TWP,15,1950,1,RES1,3001 -0123_30_12,-74.62863663,39.42814407,1207 12TH AVENUE,WEYMOUTH TWP,15,1946,1,RES1,3001 -0123_30_13,-74.62634473,39.38122608,1205 12TH AVENUE,WEYMOUTH TWP,16,1900,1,RES1,3001 -0123_30_15,-74.7733175,39.661275,1201 12TH AVENUE,WEYMOUTH TWP,17,1950,1,RES1,3001 -0123_30_15.01,-74.49455025,39.49424844,26 ESTELLE AVENUE,WEYMOUTH TWP,17,1960,1,RES1,3001 -0123_30_15.02,-74.488414,39.435442,24 ESTELLE AVENUE,WEYMOUTH TWP,17,1970,1,RES1,3001 -0123_30_16,-74.5024825,39.3338585,1218 11TH AVENUE,WEYMOUTH TWP,16,1972,1,RES1,3001 -0123_30_17,-74.4655955,39.5024705,1214 11TH AVENUE,WEYMOUTH TWP,15,1940,1,RES1,3001 -0123_30_18,-74.6089915,39.3210395,1212 11TH AVENUE,WEYMOUTH TWP,16,1986,1,RES1,3001 -0123_30_19,-74.511196,39.326388,1210 11TH AVENUE,WEYMOUTH TWP,16,1988,1,RES1,3001 -0123_30_2,-74.446507,39.4856545,47 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1970,1,RES1,3001 -0123_30_20,-74.60784951,39.32709561,1208 11TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3002 -0123_30_3,-74.57163613,39.34013614,49 SOUTH JERSEY AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_30_4,-74.631298,39.316864,51 SOUTH JERSEY AVENUE,WEYMOUTH TWP,14,1930,1,RES1,3001 -0123_30_6,-74.50338133,39.331864,55 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3002 -0123_30_7,-74.445595,39.4901455,1220 11TH AVENUE,WEYMOUTH TWP,16,1930,1,RES1,3001 -0123_30_8,-74.60287326,39.31571362,1215 12TH AVENUE,WEYMOUTH TWP,,0,1,RES3A,3001 -0123_31_1,-74.48449376,39.43030779,25 ESTELLE AVENUE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_31_10,-74.58736109,39.43196085,1105 12TH AVENUE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_31_11,-74.680464,39.4459725,1103 12TH AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_31_13,-74.63433616,39.34341896,1124 11TH AVENUE,WEYMOUTH TWP,16,1974,1,RES1,3001 -0123_31_13.01,-74.5614845,39.3905095,29 ESTELLE AVENUE,WEYMOUTH TWP,16,1977,1,RES1,3001 -0123_31_13.02,-74.4876713,39.3514784,27 ESTELLE AVENUE,WEYMOUTH TWP,17,1986,1,RES1,3001 -0123_31_14,-74.58192177,39.44649319,1122 11TH AVENUE,WEYMOUTH TWP,16,1990,1,RES1,3001 -0123_31_15,-74.49316826,39.43443609,1120 11TH AVENUE,WEYMOUTH TWP,17,1994,1,RES1,3001 -0123_31_16,-74.60955669,39.39156655,1118 11TH AVENUE,WEYMOUTH TWP,17,1994,1,RES1,3001 -0123_31_17,-74.55505,39.3752475,1116 11TH AVENUE,WEYMOUTH TWP,16,1990,1,RES1,3002 -0123_31_18,-74.55737,39.3924525,1114 11TH AVENUE,WEYMOUTH TWP,16,2004,1,RES3A,3002 -0123_31_19,-74.61755255,39.42948578,1112 11TH AVENUE,WEYMOUTH TWP,16,1950,1,RES1,3001 -0123_31_2,-74.53369645,39.38014192,1121 12TH AVENUE,WEYMOUTH TWP,16,1959,1,RES1,3001 -0123_31_21,-74.50199957,39.33183137,1108 11TH AVENUE,WEYMOUTH TWP,16,1970,1,RES1,3001 -0123_31_22,-74.55091114,39.37126833,1106 11TH AVENUE,WEYMOUTH TWP,16,2003,1,RES1,3001 -0123_31_23,-74.5196878,39.52897831,1104 11TH AVENUE,WEYMOUTH TWP,17,1992,1,RES1,3001 -0123_31_24,-74.57029109,39.36563268,1102 11TH AVENUE,WEYMOUTH TWP,16,1999,1,RES1,3001 -0123_31_3,-74.49840427,39.42919539,1119 12TH AVENUE,WEYMOUTH TWP,16,1993,1,RES1,3001 -0123_31_4,-74.4902385,39.5149715,1117 12TH AVENUE,WEYMOUTH TWP,18,2005,1,RES1,3001 -0123_31_5,-74.62570489,39.43582873,1115 12TH AVENUE,WEYMOUTH TWP,16,1989,1,RES3A,3001 -0123_31_6,-74.591379,39.3325335,1113 12TH AVENUE,WEYMOUTH TWP,17,1991,1,RES1,3001 -0123_31_7,-74.51646901,39.33039697,1111 12TH AVENUE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_31_8,-74.48515593,39.49845371,1109 12TH AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3002 -0123_31_9,-74.46053202,39.34826567,1107 12TH AVENUE,WEYMOUTH TWP,16,1994,1,RES1,3001 -0123_32_1,-74.79685575,39.36789202,28 MAPLE AVENUE,WEYMOUTH TWP,16,1982,1,RES1,3001 -0123_32_4,-74.45117,39.3533615,30 MAPLE AVENUE,WEYMOUTH TWP,17,2015,1,RES1,3001 -0123_33_1,-74.482876,39.3410625,57 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1926,1,RES1,3001 -0123_33_10,-74.5824245,39.4142575,1211 11TH AVENUE,WEYMOUTH TWP,16,1994,1,RES3A,3004 -0123_33_11,-74.50826344,39.44755665,1209 11TH AVENUE,WEYMOUTH TWP,17,1992,1,RES1,3001 -0123_33_14,-74.54459747,39.37734917,1203 11TH AVENUE,WEYMOUTH TWP,16,1985,1,RES1,3001 -0123_33_15,-74.514102,39.330821,1201 11TH AVENUE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_33_16,-74.54428376,39.37075569,1216 10TH AVENUE,WEYMOUTH TWP,16,1936,1,RES1,3001 -0123_33_17,-74.49703927,39.47421699,1214 10TH AVENUE,WEYMOUTH TWP,17,1945,1,RES1,3001 -0123_33_18,-74.46316862,39.49718863,1212 10TH AVENUE,WEYMOUTH TWP,16,2003,1,RES1,3001 -0123_33_19,-74.566615,39.475002,1210 10TH AVENUE,WEYMOUTH TWP,16,1997,1,RES1,3001 -0123_33_2,-74.588443,39.376992,59 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,2004,1,RES1,3001 -0123_33_20,-74.52597356,39.464401,1208 10TH AVENUE,WEYMOUTH TWP,16,1997,1,RES1,3001 -0123_33_21,-74.558858,39.3650815,1206 10TH AVENUE,WEYMOUTH TWP,16,1991,1,RES1,3001 -0123_33_22,-74.7595626,39.30615236,1204 10TH AVENUE,WEYMOUTH TWP,16,1982,1,RES1,3001 -0123_33_23,-74.43417553,39.35375721,1202 10TH AVENUE,WEYMOUTH TWP,16,1999,1,RES1,3004 -0123_33_3,-74.95291671,39.54230145,61 SOUTH JERSEY AVENUE,WEYMOUTH TWP,,0,1,RES1,3002 -0123_33_4,-74.61682633,39.42236341,63 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1956,1,RES1,3001 -0123_33_5,-74.58061798,39.45342617,65 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1991,1,GOV1,3004 -0123_33_5.01,-74.53326249,39.44892134,67 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1961,1,RES1,3001 -0123_33_6,-74.79532742,39.41092225,1218 10TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_33_6.01,-74.63967932,39.43348691,69 SOUTH JERSEY AVENUE,WEYMOUTH TWP,15,1950,1,RES1,3001 -0123_33_7,-74.507303,39.408526,71 SOUTH JERSEY AVENUE,WEYMOUTH TWP,15,1947,1,RES1,3002 -0123_33_8,-74.51358652,39.32372467,1213-1215 11TH AVENUE,WEYMOUTH TWP,,1920,1,RES1,3001 -0123_34_1,-74.5284515,39.5236105,1123 11TH AVENUE,WEYMOUTH TWP,17,1947,1,RES1,3001 -0123_34_13,-74.42801731,39.36601103,1124 10TH AVENUE,WEYMOUTH TWP,16,2009,1,RES1,3001 -0123_34_14,-74.42589781,39.36644953,1122 10TH AVENUE,WEYMOUTH TWP,17,2009,1,RES1,3001 -0123_34_15,-74.44277769,39.35441945,1120 10TH AVENUE,WEYMOUTH TWP,18,2004,1,RES1,3004 -0123_34_16,-74.43161315,39.36775552,1118 10TH AVENUE,WEYMOUTH TWP,18,2004,1,RES1,3001 -0123_34_17,-74.4415975,39.3577205,1116 10TH AVENUE,WEYMOUTH TWP,17,2004,1,REL1,3004 -0123_34_18,-74.42761868,39.36822598,1114 10TH AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_34_21,-74.4379635,39.3537085,1108 10TH AVENUE,WEYMOUTH TWP,16,1978,1,RES1,3001 -0123_34_22,-74.44014007,39.36724119,1106 10TH AVENUE,WEYMOUTH TWP,16,1996,1,RES1,3002 -0123_34_23,-74.42228623,39.36413644,1104 10TH AVENUE,WEYMOUTH TWP,15,1990,1,RES1,3001 -0123_34_3,-74.54542807,39.41272718,1119 11TH AVENUE,WEYMOUTH TWP,16,1997,1,RES1,3001 -0123_34_4,-74.594156,39.346388,1117 11TH AVENUE,WEYMOUTH TWP,16,1993,1,RES3B,3001 -0123_34_5,-74.48378447,39.33586865,1115 11TH AVENUE,WEYMOUTH TWP,16,1966,1,RES1,3001 -0123_34_6,-74.6888175,39.4799475,1113 11TH AVENUE,WEYMOUTH TWP,17,2005,1,RES1,3001 -0123_35_1,-74.7417655,39.639654,1009 11TH AVENUE,WEYMOUTH TWP,16,1978,1,RES1,3001 -0123_35_11,-74.5873705,39.319554,1012 10TH AVENUE,WEYMOUTH TWP,16,1976,1,RES3A,3001 -0123_35_3,-74.620869,39.3747335,1005 11TH AVENUE,WEYMOUTH TWP,15,1960,1,RES1,3001 -0123_35_9,-74.833205,39.3990705,1016 10TH AVENUE,WEYMOUTH TWP,16,2000,1,RES1,3001 -0123_36_1,-74.512864,39.4039455,1217 10TH AVENUE,WEYMOUTH TWP,16,1973,1,RES1,3001 -0123_36_10,-74.635971,39.339925,1211 10TH AVENUE,WEYMOUTH TWP,17,2001,1,RES1,3001 -0123_36_11,-74.68141508,39.48695121,1209 10TH AVENUE,WEYMOUTH TWP,16,1947,1,RES1,3001 -0123_36_12,-74.59472359,39.3797288,1207 10TH AVENUE,WEYMOUTH TWP,16,1998,1,RES3B,3002 -0123_36_13,-74.58741097,39.35873183,1205 10TH AVENUE,WEYMOUTH TWP,16,1947,1,RES1,3001 -0123_36_2,-74.57589473,39.41800275,73 SOUTH JERSEY AVENUE,WEYMOUTH TWP,17,1995,1,RES1,3001 -0123_36_23,-74.37526733,39.40181706,36 ESTELLE AVENUE,WEYMOUTH TWP,16,1986,1,RES1,3001 -0123_36_23.02,-74.54410187,39.37523485,30 ESTELLE AVENUE,WEYMOUTH TWP,16,1980,1,REL1,3004 -0123_36_3,-74.5319415,39.4719635,75 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_36_4,-74.65340396,39.39912237,77 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1979,1,RES1,3001 -0123_36_4.01,-74.5697015,39.478813,79 SOUTH JERSEY AVENUE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_36_5,-74.49056589,39.33565258,81 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1930,1,RES1,3001 -0123_36_6,-74.79021298,39.64647767,83 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1900,1,RES1,3001 -0123_36_6.01,-74.51492656,39.4106025,85 SOUTH JERSEY AVENUE,WEYMOUTH TWP,16,1982,1,RES1,3001 -0123_36_8,-74.56449194,39.36681128,1215 10TH AVENUE,WEYMOUTH TWP,16,1950,1,RES1,3001 -0123_36_9,-74.74746533,39.45106685,1213 10TH AVENUE,WEYMOUTH TWP,16,1918,1,RES1,3001 -0123_37_8,-74.80920393,39.39887129,1111 16TH AVENUE,WEYMOUTH TWP,16,1999,1,RES1,3001 -0123_37_9,-74.55127197,39.36581133,1 ESTELLE AVENUE,WEYMOUTH TWP,17,1947,1,RES1,3001 -0123_37_9.01,-74.59136932,39.32222145,7 ESTELLE AVENUE,WEYMOUTH TWP,15,1930,1,RES1,3001 -0123_37_9.02,-74.53898928,39.45819941,3 ESTELLE AVENUE,WEYMOUTH TWP,16,1954,1,RES1,3001 -0123_37_9.03,-74.53863337,39.3889993,5 ESTELLE AVENUE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_39_10,-74.48472841,39.33800397,11 ESTELLE AVENUE,WEYMOUTH TWP,16,1982,1,RES1,3001 -0123_4_10,-74.459474,39.348811,1418 14TH AVENUE,WEYMOUTH TWP,15,1961,1,RES1,3001 -0123_4_11,-74.485237,39.521707,1416 14TH AVENUE,WEYMOUTH TWP,15,1930,1,RES3A,3001 -0123_4_12.01,-74.45610293,39.49055004,1412 14TH AVENUE,WEYMOUTH TWP,16,1966,1,RES1,3001 -0123_4_13,-74.61929878,39.43408147,1410 14TH AVENUE,WEYMOUTH TWP,16,1998,1,RES1,3001 -0123_4_13.01,-74.4697965,39.445638,1408 14TH AVENUE,WEYMOUTH TWP,16,1970,1,RES1,3002 -0123_4_15,-74.50324173,39.41699655,1404 14TH AVENUE,WEYMOUTH TWP,16,1995,1,RES1,3001 -0123_4_19,-74.50610874,39.43798324,20 CAPE MAY AVENUE,WEYMOUTH TWP,16,1930,3,RES1,3001 -0123_4_2,-74.61611723,39.31946343,1415 15TH AVENUE,WEYMOUTH TWP,16,2003,1,RES1,3001 -0123_4_21,-74.52983197,39.44777784,24 CAPE MAY AVENUE,WEYMOUTH TWP,17,1991,1,RES1,3001 -0123_4_22,-74.60147791,39.36643871,1402 14TH AVENUE,WEYMOUTH TWP,17,1999,1,RES1,3001 -0123_4_3,-74.49580846,39.33755154,1413 15TH AVENUE,WEYMOUTH TWP,16,1990,1,RES1,3001 -0123_4_4,-74.48618811,39.33739266,1411 15TH AVENUE,WEYMOUTH TWP,16,1992,1,RES3A,3001 -0123_4_5,-74.4473825,39.4902535,1409 15TH AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_4_7,-74.502479,39.4289645,1405 15TH AVENUE,WEYMOUTH TWP,16,1992,1,RES1,3001 -0123_4_8,-74.61334591,39.4865789,1403 15TH AVENUE,WEYMOUTH TWP,16,1970,1,RES1,3001 -0123_47_1,-74.61902619,39.43203029,713 16TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_47_3,-74.44692069,39.48374856,709 16TH AVENUE,WEYMOUTH TWP,14,1950,1,RES1,3001 -0123_47_3.01,-74.52033771,39.32257662,707 16TH AVENUE,WEYMOUTH TWP,14,1945,2,RES1,3001 -0123_47_4,-74.56668706,39.44326225,705 16TH AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_47_5,-74.50163173,39.33718118,703 16TH AVENUE,WEYMOUTH TWP,16,1973,1,RES1,3001 -0123_47_6,-74.50165979,39.5029711,701 16TH AVENUE,WEYMOUTH TWP,16,1955,1,RES3A,3001 -0123_5_1,-74.68726942,39.6531956,11 CAPE MAY AVENUE,WEYMOUTH TWP,16,1977,1,RES1,3001 -0123_5_1.01,-74.606404,39.397347,13 CAPE MAY AVENUE,WEYMOUTH TWP,16,1978,1,RES1,3001 -0123_5_10,-74.512766,39.486875,26 TUCKAHOE ROAD,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_5_2,-74.49058049,39.47173483,1306 14TH AVENUE,WEYMOUTH TWP,16,1930,1,GOV1,3004 -0123_5_4,-74.64714081,39.44901709,14 TUCKAHOE ROAD,WEYMOUTH TWP,16,1953,2,RES1,3001 -0123_5_5,-74.60899172,39.39272976,16 TUCKAHOE ROAD,WEYMOUTH TWP,15,1946,1,GOV1,3004 -0123_5_7,-74.449782,39.4974635,20 TUCKAHOE ROAD,WEYMOUTH TWP,16,1950,1,GOV1,3004 -0123_5_8,-74.5811075,39.331382,22 TUCKAHOE ROAD,WEYMOUTH TWP,16,2001,1,RES3A,3001 -0123_50_1,-74.55586748,39.39627369,613 16TH AVENUE,WEYMOUTH TWP,16,1950,3,RES1,3001 -0123_50_2,-74.52490893,39.31578998,611 16TH AVENUE,WEYMOUTH TWP,15,2010,1,RES1,3001 -0123_50_3,-74.52520834,39.31692604,609 16TH AVENUE,WEYMOUTH TWP,15,1950,1,RES1,3001 -0123_52_11,-74.527445,39.4292435,604 12TH AVENUE,WEYMOUTH TWP,17,1980,1,GOV1,3004 -0123_53_7.01,-74.46403565,39.49758065,604 11TH AVENUE,WEYMOUTH TWP,16,1964,1,RES1,3001 -0123_53_8.01,-74.55520158,39.37029747,14 BURNETTE AVENUE,WEYMOUTH TWP,15,1956,1,RES1,3001 -0123_53_8.02,-74.58080483,39.330564,16 BURNETTE AVENUE,WEYMOUTH TWP,16,1960,1,RES3B,3001 -0123_55_1,-74.52016066,39.31526561,503 16TH AVENUE,WEYMOUTH TWP,16,1988,1,RES3A,3001 -0123_58_10,-74.54907215,39.37939675,506 11TH AVENUE,WEYMOUTH TWP,16,2002,1,RES1,3001 -0123_58_7.01,-74.587148,39.331579,512 11TH AVENUE,WEYMOUTH TWP,15,1958,1,GOV1,3004 -0123_58_7.02,-74.5912285,39.4291875,510 11TH AVENUE,WEYMOUTH TWP,16,1956,1,RES1,3001 -0123_58_7.03,-74.67625906,39.3819904,17 BURNETTE AVENUE,WEYMOUTH TWP,16,1960,1,GOV1,3004 -0123_58_7.04,-74.60210747,39.32730168,13 BURNETTE AVENUE,WEYMOUTH TWP,16,1960,1,RES3A,3001 -0123_58_8,-74.49715321,39.43207943,508 11TH AVENUE,WEYMOUTH TWP,16,1956,1,RES1,3001 -0123_59_1,-74.58359854,39.4024928,511 11TH AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_59_1.01,-74.52236815,39.43922582,515 11TH AVENUE,WEYMOUTH TWP,15,1954,1,RES3A,3001 -0123_59_1.02,-74.54236684,39.38210901,513 11TH AVENUE,WEYMOUTH TWP,16,1958,1,RES1,3001 -0123_59_3,-74.6480839,39.45670264,507 11TH AVENUE,WEYMOUTH TWP,16,1997,1,RES1,3001 -0123_59_3.01,-74.4869815,39.338362,509 11TH AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_59_5,-74.63119254,39.41422381,503 11TH AVENUE,WEYMOUTH TWP,16,1972,1,RES1,3001 -0123_59_6,-74.7899665,39.6425215,501 11TH AVENUE,WEYMOUTH TWP,16,1976,1,COM1,3004 -0123_6_10,-74.58952338,39.42916916,1502 13TH AVENUE,WEYMOUTH TWP,16,1982,1,COM3,3004 -0123_6_5,-74.571855,39.3675725,32 ATLANTIC AVENUE,WEYMOUTH TWP,17,1994,1,COM1,3004 -0123_6_5.01,-74.53142649,39.38987767,36 ATLANTIC AVENUE,WEYMOUTH TWP,16,1997,1,GOV1,3004 -0123_62_10,-74.48458381,39.33959283,406 11TH AVENUE,WEYMOUTH TWP,16,2002,1,RES1,3001 -0123_63_1,-74.49432369,39.34223615,411 11TH AVENUE,WEYMOUTH TWP,16,1972,1,RES1,3001 -0123_63_2,-74.60248494,39.48368677,409 11TH AVENUE,WEYMOUTH TWP,16,1992,1,GOV1,3004 -0123_63_4,-74.51068033,39.4026275,405 11TH AVENUE,WEYMOUTH TWP,16,1995,1,RES1,3001 -0123_68_8,-74.492372,39.5215745,310 11TH AVENUE,WEYMOUTH TWP,16,1991,1,RES1,3001 -0123_69_3,-74.7196765,39.450091,307 11TH AVENUE,WEYMOUTH TWP,16,1995,1,RES1,3001 -0123_7_1,-74.451016,39.3562295,1433-1435 14TH AVENUE,WEYMOUTH TWP,,0,1,RES1,3001 -0123_7_10,-74.75914,39.4304495,1417 14TH AVENUE,WEYMOUTH TWP,16,1970,1,COM4,3004 -0123_7_13,-74.50433774,39.46773194,1411 14TH AVENUE,WEYMOUTH TWP,17,1990,1,RES1,3001 -0123_7_15,-74.5237435,39.44509333,1407 14TH AVENUE,WEYMOUTH TWP,16,1983,1,RES1,3001 -0123_7_17,-74.5552475,39.477314,1432 13TH AVENUE,WEYMOUTH TWP,16,1984,1,RES1,3001 -0123_7_20,-74.56351968,39.36635351,1428 13TH AVENUE,WEYMOUTH TWP,16,2008,1,RES1,3001 -0123_7_21,-74.58971328,39.32279064,1422-1424 13TH AVENUE,WEYMOUTH TWP,18,1998,1,RES1,3001 -0123_7_25,-74.485175,39.462161,1416 13TH AVENUE,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_7_27,-74.59991863,39.31365733,1412 13TH AVENUE,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_7_3,-74.47030159,39.4834323,1431 14TH AVENUE,WEYMOUTH TWP,16,1965,1,RES1,3001 -0123_7_32.02,-74.8546985,39.367965,28 CAPE MAY AVENUE,WEYMOUTH TWP,16,1971,1,RES3A,3001 -0123_7_32.03,-74.50666457,39.42833875,30 CAPE MAY AVENUE,WEYMOUTH TWP,16,1975,1,RES1,3001 -0123_7_33,-74.4661464,39.34512934,32 CAPE MAY AVENUE,WEYMOUTH TWP,16,1990,1,RES1,3001 -0123_7_34,-74.62481443,39.41313189,36 CAPE MAY AVENUE,WEYMOUTH TWP,16,1971,1,GOV1,3004 -0123_7_34.01,-74.5046345,39.326761,34 CAPE MAY AVENUE,WEYMOUTH TWP,16,1972,1,COM10,3003 -0123_7_35,-74.593731,39.3801395,38 CAPE MAY AVENUE,WEYMOUTH TWP,16,1946,3,RES3B,3001 -0123_7_36,-74.62544077,39.36907704,40 CAPE MAY AVENUE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_7_37,-74.50127687,39.41713667,42 CAPE MAY AVENUE,WEYMOUTH TWP,16,1975,1,RES1,3001 -0123_7_37.01,-74.59442234,39.31141001,44 CAPE MAY AVENUE,WEYMOUTH TWP,17,1976,1,COM1,3004 -0123_7_38,-74.52578551,39.31597595,46 CAPE MAY AVENUE,WEYMOUTH TWP,16,2007,1,RES3B,3001 -0123_7_5,-74.533703,39.3761945,1427 14TH AVENUE,WEYMOUTH TWP,16,1954,1,RES1,3001 -0123_7_6,-74.590422,39.4342675,1425 14TH AVENUE,WEYMOUTH TWP,16,1950,1,RES1,3001 -0123_7_7,-74.58849919,39.37685552,1423 14TH AVENUE,WEYMOUTH TWP,16,2001,1,COM1,3004 -0123_7_8,-74.606707,39.313772,1421 14TH AVENUE,WEYMOUTH TWP,16,1972,1,RES1,3001 -0123_7_9,-74.5702528,39.37285543,1419 14TH AVENUE,WEYMOUTH TWP,15,1966,1,RES1,3001 -0123_74_10,-74.61071713,39.48675699,206 11TH AVENUE,WEYMOUTH TWP,16,1970,1,RES3A,3001 -0123_75_3,-74.6267283,39.37661404,207 11TH AVENUE,WEYMOUTH TWP,17,2004,1,COM1,3004 -0123_75_4,-74.6454935,39.355453,205 11TH AVENUE,WEYMOUTH TWP,16,1994,1,RES3A,3001 -0123_75_6,-74.4994015,39.4875725,201 11TH AVENUE,WEYMOUTH TWP,17,1970,1,RES3B,3004 -0123_8_1,-74.7462035,39.451439,1307 14TH AVENUE,WEYMOUTH TWP,16,1965,1,RES1,3001 -0123_8_10,-74.56458186,39.36478251,1310 13TH AVENUE,WEYMOUTH TWP,16,1905,1,RES1,3001 -0123_8_11,-74.50262925,39.43623904,1306 13TH AVENUE,WEYMOUTH TWP,16,1958,1,COM1,3004 -0123_8_4,-74.82955693,39.40605795,1301 14TH AVENUE,WEYMOUTH TWP,16,2007,1,RES1,3001 -0123_8_6.01,-74.718878,39.3908655,32 TUCKAHOE ROAD,WEYMOUTH TWP,,0,1,GOV1,3004 -0123_8_9,-74.601652,39.331108,1312 13TH AVENUE,WEYMOUTH TWP,16,1989,1,RES1,3001 -0123_81_8,-74.6068695,39.372476,108-114 11TH AVENUE,WEYMOUTH TWP,,0,1,RES3B,3001 -0123_85_1,-74.5705225,39.35516,1 11TH AVENUE,WEYMOUTH TWP,,0,1,GOV1,3004 -0123_86.01_3.01,-74.600972,39.3594815,902 BOULEVARD ROUTE 50,WEYMOUTH TWP,,0,1,RES1,3001 -0123_86_3,-74.4981082,39.3361756,1200 BOULEVARD ROUTE 50,WEYMOUTH TWP,,0,1,RES1,3001 -0123_86_4,-74.57086516,39.36205838,1300 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1968,1,RES1,3001 -0123_86_6,-74.497355,39.4452815,1400 BOULEVARD ROUTE 50,WEYMOUTH TWP,14,1968,2,RES1,3001 -0123_9_10,-74.58820531,39.41531745,1510 12TH AVENUE,WEYMOUTH TWP,16,1995,1,RES1,3001 -0123_9_11,-74.5090565,39.333275,1508 12TH AVENUE,WEYMOUTH TWP,16,1977,1,RES3A,3001 -0123_9_12,-74.60873367,39.32031682,1506 12TH AVENUE,WEYMOUTH TWP,16,1980,1,COM1,3004 -0123_9_13,-74.56645652,39.36501963,1502 12TH AVENUE,WEYMOUTH TWP,16,1991,1,COM1,3004 -0123_9_3,-74.5170422,39.32394575,1509 13TH AVENUE,WEYMOUTH TWP,16,1954,1,RES1,3001 -0123_9_6,-74.51617281,39.33003328,1501 13TH AVENUE,WEYMOUTH TWP,16,1996,1,REL1,3004 -0123_9_8,-74.69614172,39.41999708,1514 12TH AVENUE,WEYMOUTH TWP,16,1987,1,RES1,3001 -0123_9_9,-74.63517063,39.47003258,1512 12TH AVENUE,WEYMOUTH TWP,16,1979,1,RES1,3001 -0123_91_1.01,-74.61283894,39.48852821,1003 BOULEVARD ROUTE 50,WEYMOUTH TWP,,0,1,RES1,3001 -0123_91_59,-74.631023,39.420474,1005 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1920,1,RES3A,3001 -0123_91_60,-74.5041395,39.417165,1007 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_92_75,-74.94952332,39.53275142,1A LOWELL STREET,WEYMOUTH TWP,27,1930,2,RES1,3001 -0123_92_76,-74.4485825,39.4849055,1 LOWELL STREET,WEYMOUTH TWP,27,1930,2,RES3A,3001 -0123_92_77,-74.506082,39.337554,1013 MATHEWS AVENUE,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_92_78,-74.60397695,39.34943182,1011-1011A MATHEWS AVENUE,WEYMOUTH TWP,45,1917,2,RES1,3001 -0123_92_80,-74.50391739,39.33127585,1009 MATHEWS AVENUE,WEYMOUTH TWP,16,1999,1,RES1,3001 -0123_92_81,-74.53889756,39.39651683,1007 MATHEWS AVENUE,WEYMOUTH TWP,16,1917,1,RES1,3001 -0123_92_82,-74.644065,39.3752865,1005 MATHEWS AVENUE,WEYMOUTH TWP,27,1917,2,RES3A,3001 -0123_92_83,-74.5112125,39.4895095,1003 MATHEWS AVENUE,WEYMOUTH TWP,27,1917,2,GOV1,3004 -0123_92_84,-74.54081815,39.41020893,1001 MATHEWS AVENUE,WEYMOUTH TWP,15,1917,1,RES1,3002 -0123_92_85,-74.6533975,39.3689415,1002 LORETTO AVENUE,WEYMOUTH TWP,15,1917,1,RES1,3001 -0123_92_86,-74.494506,39.490244,1004 LORETTO AVENUE,WEYMOUTH TWP,27,1917,2,RES3A,3001 -0123_92_87,-74.84200772,39.40368638,1006 LORETTO AVENUE,WEYMOUTH TWP,27,1917,2,RES3A,3001 -0123_92_88,-74.58261922,39.44375044,1008 LORETTO AVENUE,WEYMOUTH TWP,16,1917,1,RES3A,3001 -0123_93_1.01,-74.48778934,39.33460149,1003 LORETTO AVENUE,WEYMOUTH TWP,16,1986,1,RES3B,3001 -0123_93_1.03,-74.561586,39.3587515,7 LOWELL STREET,WEYMOUTH TWP,16,1988,1,COM1,3004 -0123_93_1.04,-74.49052603,39.42757547,5 LOWELL STREET,WEYMOUTH TWP,17,1989,1,COM10,3003 -0123_93_1.05,-74.7336415,39.450031,3 LOWELL STREET,WEYMOUTH TWP,16,1988,1,COM1,3004 -0123_93_1.06,-74.50748474,39.44831619,16 GRANT STREET,WEYMOUTH TWP,16,1988,1,RES3A,3001 -0123_93_1.07,-74.45794816,39.47427461,14 GRANT STREET,WEYMOUTH TWP,17,1988,1,RES3B,3001 -0123_94_1,-74.598194,39.315317,1 FRANCIS AVENUE,WEYMOUTH TWP,15,1960,1,RES1,3001 -0123_94_61,-74.50379806,39.34292033,1101 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1920,1,RES1,3001 -0123_94_62,-74.4654395,39.346108,1103 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1917,1,GOV1,3004 -0123_94_63,-74.4518275,39.490342,1105-1105A BLVD RT 50,WEYMOUTH TWP,45,1915,4,RES3A,3001 -0123_94_64,-74.58247625,39.37172693,1107 BOULEVARD ROUTE 50,WEYMOUTH TWP,45,1920,2,RES3B,3001 -0123_94_65,-74.496674,39.336638,1109 BOULEVARD ROUTE 50,WEYMOUTH TWP,15,1920,1,RES1,3001 -0123_94_66,-74.79487384,39.63994148,1111 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,2003,1,RES1,3001 -0123_94_67,-74.67720427,39.44706083,1113 BOULEVARD ROUTE 50,WEYMOUTH TWP,16,1917,1,COM1,3004 -0123_95_1,-74.50747595,39.45811024,3 FRANCIS AVENUE,WEYMOUTH TWP,16,1959,1,GOV1,3004 -0123_95_1.01,-74.59219049,39.36583366,1106 LORETTO AVENUE,WEYMOUTH TWP,45,1970,4,COM3,3004 -0123_95_1.02,-74.6109815,39.324533,1104 LORETTO AVENUE,WEYMOUTH TWP,16,1985,1,RES3A,3001 -0123_95_70,-74.5596054,39.36563477,1105 MATHEWS AVENUE,WEYMOUTH TWP,27,1917,2,RES3A,3001 -0123_95_71,-74.508998,39.329959,1103 MATHEWS AVENUE,WEYMOUTH TWP,27,1917,2,RES1,3001 -0123_95_72,-74.50640766,39.47138149,1101 MATHEWS AVENUE,WEYMOUTH TWP,16,1918,1,GOV1,3004 -0123_95_73,-74.58680204,39.32047582,1102 LORETTA AVENUE,WEYMOUTH TWP,16,1960,1,RES1,3001 -0123_95_75,-74.51015125,39.3402464,1108 LORETTO AVENUE,WEYMOUTH TWP,43,1970,4,RES3A,3001 -0123_95_76,-74.710073,39.436167,1110 LORETTO AVENUE,WEYMOUTH TWP,16,1960,1,COM1,3004 -0123_95_77,-74.7881299,39.64125762,1107-1109 MATHEWS AVENUE,WEYMOUTH TWP,45,1917,2,RES1,3001 -0123_96_1,-74.63416798,39.31773405,1111 LORETTO AVENUE,WEYMOUTH TWP,15,1950,1,EDU1,3004 -0123_96_1.02,-74.60704529,39.49212291,1105 LORETTO AVENUE,WEYMOUTH TWP,16,1956,1,RES1,3001 -0123_96_1.05,-74.702401,39.4274885,1103 LORETTO AVENUE,WEYMOUTH TWP,16,1977,1,RES1,3001 -0123_96_1.06,-74.5679153,39.34237438,1101 LORETTO AVENUE,WEYMOUTH TWP,16,1976,1,RES1,3001 -0123_97_1.01,-74.49641273,39.44722063,1101 MADDEN AVENUE,WEYMOUTH TWP,17,1985,1,RES1,3001 -0123_97_1.02,-74.51153843,39.43719565,1103 MADDEN AVENUE,WEYMOUTH TWP,17,2006,1,RES1,3001 -0123_97_1.03,-74.73689181,39.44772087,1105 MADDEN AVENUE,WEYMOUTH TWP,17,1991,1,RES1,3001 -0123_97_1.04,-74.49933517,39.52297391,1107 MADDEN AVENUE,WEYMOUTH TWP,16,1994,1,RES1,3001 -0123_98_1,-74.38541152,39.39183833,20 LOWELL STREET,WEYMOUTH TWP,16,2009,1,RES1,3001 -0123_99_1,-74.64639618,39.35561706,1201 BOULEVARD ROUTE 50,WEYMOUTH TWP,,0,1,RES1,3001 diff --git a/docs/_downloads/2bc4891810b89c88996fd7aa6d0e3a32/WindMSFRulesets.py b/docs/_downloads/2bc4891810b89c88996fd7aa6d0e3a32/WindMSFRulesets.py deleted file mode 100644 index 060bb9465..000000000 --- a/docs/_downloads/2bc4891810b89c88996fd7aa6d0e3a32/WindMSFRulesets.py +++ /dev/null @@ -1,229 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def MSF_config(BIM): - """ - Rules to identify a HAZUS MSF configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof-Wall Connection (RWC) - if BIM['HPR']: - RWC = 'strap' # Strap - else: - RWC = 'tnail' # Toe-nail - - # Shutters - # IRC 2000-2015: - # R301.2.1.2 in NJ IRC 2015 says protection of openings required for - # buildings located in WBD regions, mentions impact-rated protection for - # glazing, impact-resistance for garage door glazed openings, and finally - # states that wood structural panels with a thickness > 7/16" and a - # span <8' can be used, as long as they are precut, attached to the framing - # surrounding the opening, and the attachments are resistant to corrosion - # and are able to resist component and cladding loads; - # Earlier IRC editions provide similar rules. - if year >= 2000: - shutters = BIM['WBD'] - # BOCA 1996 and earlier: - # Shutters were not required by code until the 2000 IBC. Before 2000, the - # percentage of commercial buildings that have shutters is assumed to be - # 46%. This value is based on a study on preparedness of small businesses - # for hurricane disasters, which says that in Sarasota County, 46% of - # business owners had taken action to wind-proof or flood-proof their - # facilities. In addition to that, 46% of business owners reported boarding - # up their businesses before Hurricane Katrina. In addition, compliance - # rates based on the Homeowners Survey data hover between 43 and 50 percent. - else: - if BIM['WBD']: - shutters = random.random() < 0.45 - else: - shutters = False - - # Garage - # As per IRC 2015: - # Garage door glazed opening protection for windborne debris shall meet the - # requirements of an approved impact-resisting standard or ANSI/DASMA 115. - # Exception: Wood structural panels with a thickness of not less than 7/16 - # inch and a span of not more than 8 feet shall be permitted for opening - # protection. Panels shall be predrilled as required for the anchorage - # method and shall be secured with the attachment hardware provided. - # Permitted for buildings where the ultimate design wind speed is 180 mph - # or less. - # - # Average lifespan of a garage is 30 years, so garages that are not in WBD - # (and therefore do not have any strength requirements) that are older than - # 30 years are considered to be weak, whereas those from the last 30 years - # are considered to be standard. - if BIM['garage_tag'] == -1: - # no garage data, using the default "none" - garage = 'nav' - else: - if year > (datetime.datetime.now().year - 30): - if BIM['garage_tag'] < 1: - garage = 'nav' # None - else: - if shutters: - garage = 'sup' # SFBC 1994 - else: - garage = 'std' # Standard - else: - # year <= current year - 30 - if BIM['garage_tag'] < 1: - garage = 'nav' # None - else: - if shutters: - garage = 'sup' - else: - garage = 'wkd' # Weak - - # Masonry Reinforcing (MR) - # R606.6.4.1.2 Metal Reinforcement states that walls other than interior - # non-load-bearing walls shall be anchored at vertical intervals of not - # more than 8 inches with joint reinforcement of not less than 9 gage. - # Therefore this ruleset assumes that all exterior or load-bearing masonry - # walls will have reinforcement. Since our considerations deal with wind - # speed, I made the assumption that only exterior walls are being taken - # into consideration. - MR = True - - if BIM['roof_system'] == 'trs': - - # Roof Deck Attachment (RDA) - # IRC codes: - # NJ code requires 8d nails (with spacing 6”/12”) for sheathing thicknesses - # between ⅜”-1” - see Table R602.3(1) - # Fastener selection is contingent on thickness of sheathing in building - # codes. Commentary for Table R602.3(1) indicates 8d nails with 6”/6” - # spacing (enhanced roof spacing) for ultimate wind speeds greater than - # a speed_lim. speed_lim depends on the year of construction - RDA = '6d' # Default (aka A) in Reorganized Rulesets - WIND - if year >= 2016: - # IRC 2015 - speed_lim = 130.0 # mph - else: - # IRC 2000 - 2009 - speed_lim = 100.0 # mph - if BIM['V_ult'] > speed_lim: - RDA = '8s' # 8d @ 6"/6" ('D' in the Reorganized Rulesets - WIND) - else: - RDA = '8d' # 8d @ 6"/12" ('B' in the Reorganized Rulesets - WIND) - - # Secondary Water Resistance (SWR) - # Minimum drainage recommendations are in place in NJ (See below). - # However, SWR indicates a code-plus practice. - SWR = random.random() < 0.6 - - stories = min(BIM['stories'], 2) - bldg_config = f"MSF" \ - f"{int(stories)}_" \ - f"{BIM['roof_shape']}_" \ - f"{int(SWR)}_" \ - f"{RDA}_" \ - f"{RWC}_" \ - f"{garage}_" \ - f"{int(shutters)}_" \ - f"{int(MR)}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - - else: - # Roof system = OSJW - # r - # A 2015 study found that there were 750,000 metal roof installed in 2015, - # out of 5 million new roofs in the US annually. If these numbers stay - # relatively stable, that implies that roughtly 15% of roofs are smlt. - # ref. link: https://www.bdcnetwork.com/blog/metal-roofs-are-soaring- - # popularity-residential-marmet - r_option = ['smtl', 'cshl'] - r = r_option[int(random.random() < 0.85)] - - # Roof Deck Attachment (RDA) - # NJ IBC 1507.2.8.1 (for cshl) - # high wind attachments are required for DSWII > 142 mph - # NJ IBC 1507.4.5 (for smtl) - # high wind attachment are required for DSWII > 142 mph - if BIM['V_ult'] > 142.0: - RDA = 'sup' # superior - else: - RDA = 'std' # standard - - # Secondary Water Resistance (SWR) - # Minimum drainage recommendations are in place in NJ (See below). - # However, SWR indicates a code-plus practice. - SWR = False # Default - if BIM['roof_shape'] == 'flt': - SWR = True - elif BIM['roof_shape'] in ['hip', 'gab']: - SWR = random.random() < 0.6 - - stories = min(BIM['stories'], 2) - bldg_config = f"MSF" \ - f"{int(stories)}_" \ - f"{BIM['roof_shape']}_" \ - f"{int(SWR)}_" \ - f"{RDA}_" \ - f"{RWC}_" \ - f"{garage}_" \ - f"{int(shutters)}_" \ - f"{int(MR)}_" \ - f"{int(BIM['terrain'])}" - return bldg_config diff --git a/docs/_downloads/2dfb05b6a649a19456ed8ad4195653fb/SyntheticWind.zip b/docs/_downloads/2dfb05b6a649a19456ed8ad4195653fb/SyntheticWind.zip deleted file mode 100644 index 858c3013a..000000000 Binary files a/docs/_downloads/2dfb05b6a649a19456ed8ad4195653fb/SyntheticWind.zip and /dev/null differ diff --git a/docs/_downloads/2e83304a2af2f12c3dafc60bfdc0612b/Category3.zip b/docs/_downloads/2e83304a2af2f12c3dafc60bfdc0612b/Category3.zip deleted file mode 100644 index 39d118e60..000000000 Binary files a/docs/_downloads/2e83304a2af2f12c3dafc60bfdc0612b/Category3.zip and /dev/null differ diff --git a/docs/_downloads/4e34c5fca8b23a75cd5af75792e19fb9/WindSPMBRulesets.py b/docs/_downloads/4e34c5fca8b23a75cd5af75792e19fb9/WindSPMBRulesets.py deleted file mode 100644 index 033f7ad79..000000000 --- a/docs/_downloads/4e34c5fca8b23a75cd5af75792e19fb9/WindSPMBRulesets.py +++ /dev/null @@ -1,118 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - - -def SPMB_config(BIM): - """ - Rules to identify a HAZUS SPMB configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof Deck Age (~ Roof Quality) - if BIM['year_built'] >= (datetime.datetime.now().year - 50): - roof_quality = 'god' - else: - roof_quality = 'por' - - # shutters - if year >= 2000: - shutters = BIM['WBD'] - # BOCA 1996 and earlier: - # Shutters were not required by code until the 2000 IBC. Before 2000, the - # percentage of commercial buildings that have shutters is assumed to be - # 46%. This value is based on a study on preparedness of small businesses - # for hurricane disasters, which says that in Sarasota County, 46% of - # business owners had taken action to wind-proof or flood-proof their - # facilities. In addition to that, 46% of business owners reported boarding - # up their businesses before Hurricane Katrina. In addition, compliance - # rates based on the Homeowners Survey data hover between 43 and 50 percent. - else: - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - # Metal RDA - # 1507.2.8.1 High Wind Attachment. - # Underlayment applied in areas subject to high winds (Vasd greater - # than 110 mph as determined in accordance with Section 1609.3.1) shall - # be applied with corrosion-resistant fasteners in accordance with - # the manufacturer’s instructions. Fasteners are to be applied along - # the overlap not more than 36 inches on center. - if BIM['V_ult'] > 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - - if BIM['area'] <= 4000: - bldg_tag = 'SPMBS' - elif BIM['area'] <= 50000: - bldg_tag = 'SPMBM' - else: - bldg_tag = 'SPMBL' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_quality}_" \ - f"{int(shutters)}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - diff --git a/docs/_downloads/545b998e65fa603cf82d050e8d3bfefe/Category5.zip b/docs/_downloads/545b998e65fa603cf82d050e8d3bfefe/Category5.zip deleted file mode 100644 index e801e892a..000000000 Binary files a/docs/_downloads/545b998e65fa603cf82d050e8d3bfefe/Category5.zip and /dev/null differ diff --git a/docs/_downloads/56d014528366a26030914dc5b77c5b41/WindMLRMRulesets.py b/docs/_downloads/56d014528366a26030914dc5b77c5b41/WindMLRMRulesets.py deleted file mode 100644 index d8a5011f4..000000000 --- a/docs/_downloads/56d014528366a26030914dc5b77c5b41/WindMLRMRulesets.py +++ /dev/null @@ -1,220 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def MLRM_config(BIM): - """ - Rules to identify a HAZUS MLRM configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Note the only roof option for commercial masonry in NJ appraisers manual - # is OSWJ, so this suggests they do not even see alternate roof system - # ref: Custom Inventory google spreadsheet H-37 10/01/20 - # This could be commented for other regions if detailed data are available - BIM['roof_system'] = 'ows' - - # Roof cover - # Roof cover does not apply to gable and hip roofs - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # Shutters - # IRC 2000-2015: - # R301.2.1.2 in NJ IRC 2015 says protection of openings required for - # buildings located in WBD regions, mentions impact-rated protection for - # glazing, impact-resistance for garage door glazed openings, and finally - # states that wood structural panels with a thickness > 7/16" and a - # span <8' can be used, as long as they are precut, attached to the framing - # surrounding the opening, and the attachments are resistant to corrosion - # and are able to resist component and cladding loads; - # Earlier IRC editions provide similar rules. - shutters = BIM['WBD'] - - # Masonry Reinforcing (MR) - # R606.6.4.1.2 Metal Reinforcement states that walls other than interior - # non-load-bearing walls shall be anchored at vertical intervals of not - # more than 8 inches with joint reinforcement of not less than 9 gage. - # Therefore this ruleset assumes that all exterior or load-bearing masonry - # walls will have reinforcement. Since our considerations deal with wind - # speed, I made the assumption that only exterior walls are being taken - # into consideration. - MR = True - - # Wind Debris (widd in HAZSU) - # HAZUS A: Res/Comm, B: Varies by direction, C: Residential, D: None - WIDD = 'C' # residential (default) - if BIM['occupancy_class'] in ['RES1', 'RES2', 'RES3A', 'RES3B', 'RES3C', - 'RES3D']: - WIDD = 'C' # residential - elif BIM['occupancy_class'] == 'AGR1': - WIDD = 'D' # None - else: - WIDD = 'A' # Res/Comm - - if BIM['roof_system'] == 'ows': - # RDA - RDA = '6d' # HAZUS the only available option for OWSJ - - # Roof deck age (DQ) - # Average lifespan of a steel joist roof is roughly 50 years according - # to the source below. Therefore, if constructed 50 years before the - # current year, the roof deck should be considered old. - # https://www.metalroofing.systems/metal-roofing-pros-cons/ - if year >= (datetime.datetime.now().year - 50): - DQ = 'god' # new or average - else: - DQ = 'por' # old - - # RWC - RWC = 'tnail' # Toe-nail (HAZUS the only available option for OWSJ) - - # Metal RDA - # 1507.2.8.1 High Wind Attachment. - # Underlayment applied in areas subject to high winds (Vasd greater - # than 110 mph as determined in accordance with Section 1609.3.1) shall - # be applied with corrosion-resistant fasteners in accordance with - # the manufacturer’s instructions. Fasteners are to be applied along - # the overlap not more than 36 inches on center. - if BIM['V_ult'] > 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - - elif BIM['roof_system'] == 'trs': - # This clause should not be activated for NJ - # RDA - if BIM['terrain'] >= 35: # suburban or light trees - if BIM['V_ult'] > 130.0: - RDA = '8s' # 8d @ 6"/6" 'D' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - else: # light suburban or open - if BIM['V_ult'] > 110.0: - RDA = '8s' # 8d @ 6"/6" 'D' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - - # Metal RDA - MRDA = 'nav' - - # Roof deck agea (DQ) - DQ = 'nav' # not available for wood truss system - - # RWC - if BIM['V_ult'] > 110: - RWC = 'strap' # Strap - else: - RWC = 'tnail' # Toe-nail - - # shutters - if year >= 2000: - shutters = BIM['WBD'] - else: - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - if BIM['mean_roof_height'] < 15.0: - # if it's MLRM1, configure outputs - bldg_config = f"MLRM1_" \ - f"{roof_cover}_" \ - f"{RDA}_" \ - f"{DQ}_" \ - f"{BIM['roof_system']}_" \ - f"{RWC}_" \ - f"{int(shutters)}_" \ - f"{WIDD}_" \ - f"{int(MR)}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - else: - unit_tag = 'nav' - # MLRM2 needs more rulesets - if BIM['roof_system'] == 'trs': - JSPA = 0 - elif BIM['roof_system'] == 'ows': - if BIM['no_units'] == 1: - JSPA = 0 - unit_tag = 'sgl' - else: - JSPA = 4 - unit_tag = 'mlt' - - bldg_config = f"MLRM2_" \ - f"{roof_cover}_" \ - f"{RDA}_" \ - f"{DQ}_" \ - f"{BIM['roof_system']}_" \ - f"{JSPA}_" \ - f"{RWC}_" \ - f"{int(shutters)}_" \ - f"{WIDD}_" \ - f"{unit_tag}_" \ - f"{int(MR)}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - diff --git a/docs/_downloads/622f529c9c00b489955dfe71d5d095c5/WindCECBRulesets.py b/docs/_downloads/622f529c9c00b489955dfe71d5d095c5/WindCECBRulesets.py deleted file mode 100644 index d7326102f..000000000 --- a/docs/_downloads/622f529c9c00b489955dfe71d5d095c5/WindCECBRulesets.py +++ /dev/null @@ -1,130 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def CECB_config(BIM): - """ - Rules to identify a HAZUS CECB configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'bur' - # Warning: HAZUS does not have N/A option for CECB, so here we use bur - else: - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # shutters - if year >= 2000: - shutters = BIM['WBD'] - # BOCA 1996 and earlier: - # Shutters were not required by code until the 2000 IBC. Before 2000, the - # percentage of commercial buildings that have shutters is assumed to be - # 46%. This value is based on a study on preparedness of small businesses - # for hurricane disasters, which says that in Sarasota County, 46% of - # business owners had taken action to wind-proof or flood-proof their - # facilities. In addition to that, 46% of business owners reported boarding - # up their businesses before Hurricane Katrina. In addition, compliance - # rates based on the Homeowners Survey data hover between 43 and 50 percent. - else: - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - # Wind Debris (widd in HAZSU) - # HAZUS A: Res/Comm, B: Varies by direction, C: Residential, D: None - WIDD = 'C' # residential (default) - if BIM['occupancy_class'] in ['RES1', 'RES2', 'RES3A', 'RES3B', 'RES3C', - 'RES3D']: - WIDD = 'C' # residential - elif BIM['occupancy_class'] == 'AGR1': - WIDD = 'D' # None - else: - WIDD = 'A' # Res/Comm - - # Window area ratio - if BIM['window_area'] < 0.33: - WWR = 'low' - elif BIM['window_area'] < 0.5: - WWR = 'med' - else: - WWR = 'hig' - - if BIM['stories'] <= 2: - bldg_tag = 'CECBL' - elif BIM['stories'] <= 5: - bldg_tag = 'CECBM' - else: - bldg_tag = 'CECBH' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WWR}_" \ - f"{int(shutters)}_" \ - f"{WIDD}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - diff --git a/docs/_downloads/6603f4ee8ac6691d90a7bd5d78a1ec21/WindMERBRulesets.py b/docs/_downloads/6603f4ee8ac6691d90a7bd5d78a1ec21/WindMERBRulesets.py deleted file mode 100644 index 3e6bbd381..000000000 --- a/docs/_downloads/6603f4ee8ac6691d90a7bd5d78a1ec21/WindMERBRulesets.py +++ /dev/null @@ -1,133 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def MERB_config(BIM): - """ - Rules to identify a HAZUS MERB configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'bur' - # no info, using the default supoorted by HAZUS - else: - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # shutters - if year >= 2000: - shutters = BIM['WBD'] - else: - if BIM['WBD']: - shutters = random.random() < 0.45 - else: - shutters = False - - # Wind Debris (widd in HAZSU) - # HAZUS A: Res/Comm, B: Varies by direction, C: Residential, D: None - WIDD = 'C' # residential (default) - if BIM['occupancy_class'] in ['RES1', 'RES2', 'RES3A', 'RES3B', 'RES3C', - 'RES3D']: - WIDD = 'C' # residential - elif BIM['occupancy_class'] == 'AGR1': - WIDD = 'D' # None - else: - WIDD = 'A' # Res/Comm - - # Metal RDA - # 1507.2.8.1 High Wind Attachment. - # Underlayment applied in areas subject to high winds (Vasd greater - # than 110 mph as determined in accordance with Section 1609.3.1) shall - # be applied with corrosion-resistant fasteners in accordance with - # the manufacturer’s instructions. Fasteners are to be applied along - # the overlap not more than 36 inches on center. - if BIM['V_ult'] > 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - - # Window area ratio - if BIM['window_area'] < 0.33: - WWR = 'low' - elif BIM['window_area'] < 0.5: - WWR = 'med' - else: - WWR = 'hig' - - if BIM['stories'] <= 2: - bldg_tag = 'MERBL' - elif BIM['stories'] <= 5: - bldg_tag = 'MERBM' - else: - bldg_tag = 'MERBH' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WWR}_" \ - f"{int(shutters)}_" \ - f"{WIDD}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config diff --git a/docs/_downloads/747cc28228f48538e1b3c2b1a9e1feff/SyntheticStormSurge.zip b/docs/_downloads/747cc28228f48538e1b3c2b1a9e1feff/SyntheticStormSurge.zip deleted file mode 100644 index 00eb18979..000000000 Binary files a/docs/_downloads/747cc28228f48538e1b3c2b1a9e1feff/SyntheticStormSurge.zip and /dev/null differ diff --git a/docs/_downloads/7f3a993894ae74a3dddbd7ff5c59b523/full_inventories.zip b/docs/_downloads/7f3a993894ae74a3dddbd7ff5c59b523/full_inventories.zip deleted file mode 100644 index 2ba868ef2..000000000 Binary files a/docs/_downloads/7f3a993894ae74a3dddbd7ff5c59b523/full_inventories.zip and /dev/null differ diff --git a/docs/_downloads/97868372b51f075c88334b133fd96759/WindMECBRulesets.py b/docs/_downloads/97868372b51f075c88334b133fd96759/WindMECBRulesets.py deleted file mode 100644 index 86e197da8..000000000 --- a/docs/_downloads/97868372b51f075c88334b133fd96759/WindMECBRulesets.py +++ /dev/null @@ -1,133 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def MECB_config(BIM): - """ - Rules to identify a HAZUS MECB configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'bur' - # no info, using the default supoorted by HAZUS - else: - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # shutters - if year >= 2000: - shutters = BIM['WBD'] - else: - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - # Wind Debris (widd in HAZSU) - # HAZUS A: Res/Comm, B: Varies by direction, C: Residential, D: None - WIDD = 'C' # residential (default) - if BIM['occupancy_class'] in ['RES1', 'RES2', 'RES3A', 'RES3B', 'RES3C', - 'RES3D']: - WIDD = 'C' # residential - elif BIM['occupancy_class'] == 'AGR1': - WIDD = 'D' # None - else: - WIDD = 'A' # Res/Comm - - # Metal RDA - # 1507.2.8.1 High Wind Attachment. - # Underlayment applied in areas subject to high winds (Vasd greater - # than 110 mph as determined in accordance with Section 1609.3.1) shall - # be applied with corrosion-resistant fasteners in accordance with - # the manufacturer’s instructions. Fasteners are to be applied along - # the overlap not more than 36 inches on center. - if BIM['V_ult'] > 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - - # Window area ratio - if BIM['window_area'] < 0.33: - WWR = 'low' - elif BIM['window_area'] < 0.5: - WWR = 'med' - else: - WWR = 'hig' - - if BIM['stories'] <= 2: - bldg_tag = 'MECBL' - elif BIM['stories'] <= 5: - bldg_tag = 'MECBM' - else: - bldg_tag = 'MECBH' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WWR}_" \ - f"{int(shutters)}_" \ - f"{WIDD}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config diff --git a/docs/_downloads/9a7af4e0c20d489fa2045bf35d1cef94/WindMLRIRulesets.py b/docs/_downloads/9a7af4e0c20d489fa2045bf35d1cef94/WindMLRIRulesets.py deleted file mode 100644 index e8815436b..000000000 --- a/docs/_downloads/9a7af4e0c20d489fa2045bf35d1cef94/WindMLRIRulesets.py +++ /dev/null @@ -1,111 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def MLRI_config(BIM): - """ - Rules to identify a HAZUS MLRI configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # MR - MR = True - - # Shutters - shutters = False - - # Metal RDA - # 1507.2.8.1 High Wind Attachment. - # Underlayment applied in areas subject to high winds (Vasd greater - # than 110 mph as determined in accordance with Section 1609.3.1) shall - # be applied with corrosion-resistant fasteners in accordance with - # the manufacturer’s instructions. Fasteners are to be applied along - # the overlap not more than 36 inches on center. - if BIM['V_ult'] > 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'nav' - roof_quality = 'god' # default supported by HAZUS - else: - if year >= 1975: - roof_cover = 'spm' - if BIM['year_built'] >= (datetime.datetime.now().year - 35): - roof_quality = 'god' - else: - roof_quality = 'por' - else: - # year < 1975 - roof_cover = 'bur' - if BIM['year_built'] >= (datetime.datetime.now().year - 30): - roof_quality = 'god' - else: - roof_quality = 'por' - - bldg_config = f"MLRI_" \ - f"{roof_quality}_" \ - f"{int(shutters)}_" \ - f"{int(MR)}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - diff --git a/docs/_downloads/9e86c8c762ce5518a7351f56c7299926/WindEFRulesets.py b/docs/_downloads/9e86c8c762ce5518a7351f56c7299926/WindEFRulesets.py deleted file mode 100644 index 6b8b30efa..000000000 --- a/docs/_downloads/9e86c8c762ce5518a7351f56c7299926/WindEFRulesets.py +++ /dev/null @@ -1,273 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - - -def HUEFFS_config(BIM): - """ - Rules to identify a HAZUS HUEFFS/HUEFSS configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # Wind debris - WIDD = 'A' - - # Roof deck age - if year >= (datetime.datetime.now().year - 50): - DQ = 'god' # new or average - else: - DQ = 'por' # old - - # Metal-RDA - if year > 2000: - if BIM['V_ult'] <= 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - else: - MRDA = 'std' # standard - - bldg_tag = 'HUEFFS' - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WIDD}_" \ - f"{DQ}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - -def HUEFSS_config(BIM): - """ - Rules to identify a HAZUS HUEFFS/HUEFSS configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # Wind debris - WIDD = 'A' - - # Roof deck age - if year >= (datetime.datetime.now().year - 50): - DQ = 'god' # new or average - else: - DQ = 'por' # old - - # Metal-RDA - if year > 2000: - if BIM['V_ult'] <= 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - else: - MRDA = 'std' # standard - - # Shutters - shutters = BIM['WBD'] - - bldg_tag = 'HUEFSS' - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WIDD}_" \ - f"{DQ}_" \ - f"{MRDA}_" \ - f"{int(shutters)}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - - -def HUEFH_config(BIM): - """ - Rules to identify a HAZUS HUEFH configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # Wind debris - WIDD = 'A' - - # Shutters - shutters = BIM['WBD'] - - # Metal-RDA - if year > 2000: - if BIM['V_ult'] <= 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - else: - MRDA = 'std' # standard - - if BIM['stories'] <=2: - bldg_tag = 'HUEFHS' - elif BIM['stories'] <= 5: - bldg_tag = 'HUEFHM' - else: - bldg_tag = 'HUEFHL' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WIDD}_" \ - f"{MRDA}_" \ - f"{int(shutters)}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - -def HUEFS_config(BIM): - """ - Rules to identify a HAZUS HUEFS configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # Wind debris - WIDD = 'C' - - # Shutters - if year > 2000: - shutters = BIM['WBD'] - else: - # year <= 2000 - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - # Metal-RDA - if year > 2000: - if BIM['V_ult'] <= 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - else: - MRDA = 'std' # standard - - if BIM['stories'] <=2: - bldg_tag = 'HUEFSM' - else: - bldg_tag = 'HUEFSL' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WIDD}_" \ - f"{MRDA}_" \ - f"{int(shutters)}_" \ - f"{int(BIM['terrain'])}" - return bldg_config \ No newline at end of file diff --git a/docs/_downloads/a9a709b6f2f8dbf99ff032f476fc1093/WindMHRulesets.py b/docs/_downloads/a9a709b6f2f8dbf99ff032f476fc1093/WindMHRulesets.py deleted file mode 100644 index ac5b936c9..000000000 --- a/docs/_downloads/a9a709b6f2f8dbf99ff032f476fc1093/WindMHRulesets.py +++ /dev/null @@ -1,105 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def MH_config(BIM): - """ - Rules to identify a HAZUS WSF configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - if year <= 1976: - # MHPHUD - bldg_tag = 'MHPHUD' - if BIM['WBD']: - shutters = random.random() < 0.45 - else: - shutters = False - # TieDowns - TD = random.random() < 0.45 - - elif year <= 1994: - # MH76HUD - bldg_tag = 'MH76HUD' - if BIM['WBD']: - shutters = random.random() < 0.45 - else: - shutters = False - # TieDowns - TD = random.random() < 0.45 - - else: - # MH94HUD I, II, III - if BIM['V_ult'] >= 100.0: - shutters = True - else: - shutters = False - # TieDowns - if BIM['V_ult'] >= 70.0: - TD = True - else: - TD = False - bldg_tag = 'MH94HUD' + BIM['wind_zone'] - - bldg_config = f"{bldg_tag}_" \ - f"{int(shutters)}_" \ - f"{int(TD)}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - diff --git a/docs/_downloads/be1be48c944d449dff9d212769bf9086/WindSERBRulesets.py b/docs/_downloads/be1be48c944d449dff9d212769bf9086/WindSERBRulesets.py deleted file mode 100644 index 1f19814ad..000000000 --- a/docs/_downloads/be1be48c944d449dff9d212769bf9086/WindSERBRulesets.py +++ /dev/null @@ -1,143 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - - -def SERB_config(BIM): - """ - Rules to identify a HAZUS SERB configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'bur' - # Warning: HAZUS does not have N/A option for CECB, so here we use bur - else: - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # shutters - if year >= 2000: - shutters = BIM['WBD'] - # BOCA 1996 and earlier: - # Shutters were not required by code until the 2000 IBC. Before 2000, the - # percentage of commercial buildings that have shutters is assumed to be - # 46%. This value is based on a study on preparedness of small businesses - # for hurricane disasters, which says that in Sarasota County, 46% of - # business owners had taken action to wind-proof or flood-proof their - # facilities. In addition to that, 46% of business owners reported boarding - # up their businesses before Hurricane Katrina. In addition, compliance - # rates based on the Homeowners Survey data hover between 43 and 50 percent. - else: - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - # Wind Debris (widd in HAZSU) - # HAZUS A: Res/Comm, B: Varies by direction, C: Residential, D: None - WIDD = 'C' # residential (default) - if BIM['occupancy_class'] in ['RES1', 'RES2', 'RES3A', 'RES3B', 'RES3C', - 'RES3D']: - WIDD = 'C' # residential - elif BIM['occupancy_class'] == 'AGR1': - WIDD = 'D' # None - else: - WIDD = 'A' # Res/Comm - - # Window area ratio - if BIM['window_area'] < 0.33: - WWR = 'low' - elif BIM['window_area'] < 0.5: - WWR = 'med' - else: - WWR = 'hig' - - # Metal RDA - # 1507.2.8.1 High Wind Attachment. - # Underlayment applied in areas subject to high winds (Vasd greater - # than 110 mph as determined in accordance with Section 1609.3.1) shall - # be applied with corrosion-resistant fasteners in accordance with - # the manufacturer’s instructions. Fasteners are to be applied along - # the overlap not more than 36 inches on center. - if BIM['V_ult'] > 142: - MRDA = 'std' # standard - else: - MRDA = 'sup' # superior - - if BIM['stories'] <= 2: - bldg_tag = 'SERBL' - elif BIM['stories'] <= 5: - bldg_tag = 'SERBM' - else: - bldg_tag = 'SERBH' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WWR}_" \ - f"{int(shutters)}_" \ - f"{WIDD}_" \ - f"{MRDA}_" \ - f"{int(BIM['terrain'])}" - return bldg_config diff --git a/docs/_downloads/c7a15fdb055ad1b4958a48db2cece2f7/FloodRulesets.py b/docs/_downloads/c7a15fdb055ad1b4958a48db2cece2f7/FloodRulesets.py deleted file mode 100644 index 1b6a38e27..000000000 --- a/docs/_downloads/c7a15fdb055ad1b4958a48db2cece2f7/FloodRulesets.py +++ /dev/null @@ -1,195 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def FL_config(BIM): - """ - Rules to identify the flood vunerability category - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - year = BIM['year_built'] # just for the sake of brevity - - # Flood Type - if BIM['flood_zone'] in [6105, 6108]: - flood_type = 'raz' # Riverline/A-Zone - elif BIM['flood_zone'] in [6103, 6104, 6106, 6107, 6109]: - flood_type = 'cvz' # Costal-Zone - elif BIM['flood_zone'] in [6101, 6102]: - flood_type = 'cvz' # Costal-Zone - else: - flood_type = 'cvz' # Default - - # First Floor Elevation (FFE) - if flood_type in ['raz', 'caz']: - FFE = BIM['first_floor_ht1'] - else: - FFE = BIM['first_floor_ht1'] - 1.0 - - # PostFIRM - PostFIRM = False # Default - city_list = ['Absecon', 'Atlantic', 'Brigantine', 'Buena', 'Buena Vista', - 'Corbin City', 'Egg Harbor City', 'Egg Harbor', 'Estell Manor', - 'Folsom', 'Galloway', 'Hamilton', 'Hammonton', 'Linwood', - 'Longport', 'Margate City', 'Mullica', 'Northfield', - 'Pleasantville', 'Port Republic', 'Somers Point', - 'Ventnor City', 'Weymouth'] - year_list = [1976, 1971, 1971, 1983, 1979, 1981, 1982, 1983, 1978, 1982, - 1983, 1977, 1982, 1983, 1974, 1974, 1982, 1979, 1983, 1983, - 1982, 1971, 1979] - for i in range(0,22): - PostFIRM = (((BIM['city'] == city_list[i]) and (year > year_list[i])) or \ - PostFIRM) - - # Basement Type - if BIM['split_level'] and (BIM['fdtn_type'] == 3504): - bmt_type = 'spt' # Split-Level Basement - elif BIM['fdtn_type'] in [3501, 3502, 3503, 3505, 3506, 3507]: - bmt_type = 'bn' # No Basement - elif (not BIM['split_level']) and (BIM['fdtn_type'] == 3504): - bmt_type = 'bw' # Basement - else: - bmt_type = 'bw' # Default - - # Duration - dur = 'short' - - # Occupancy Type - if BIM['occupancy_class'] == 'RES1': - if BIM['stories'] == 1: - if flood_type == 'raz': - OT = 'SF1XA' - elif flood_type == 'cvz': - OT = 'SF1XV' - else: - if bmt_type == 'nav': - if flood_type == 'raz': - OT = 'SF2XA' - elif flood_type == 'cvz': - OT = 'SF2XV' - elif bmt_type == 'bmt': - if flood_type == 'raz': - OT = 'SF2BA' - elif flood_type == 'cvz': - OT = 'SF2BV' - elif bmt_type == 'spt': - if flood_type == 'raz': - OT = 'SF2SA' - elif flood_type == 'cvz': - OT = 'SF2SV' - elif 'RES3' in BIM['occupancy_class']: - OT = 'APT' - else: - ap_OT = { - 'RES2': 'MH', - 'RES4': 'HOT', - 'RES5': 'NURSE', - 'RES6': 'NURSE', - 'COM1': 'RETAL', - 'COM2': 'WHOLE', - 'COM3': 'SERVICE', - 'COM4': 'OFFICE', - 'COM5': 'BANK', - 'COM6': 'HOSP', - 'COM7': 'MED', - 'COM8': 'REC', - 'COM9': 'THEAT', - 'COM10': 'GARAGE', - 'IND1': 'INDH', - 'IND2': 'INDL', - 'IND3': 'CHEM', - 'IND4': 'PROC', - 'IND5': 'CHEM', - 'IND6': 'CONST', - 'AGR1': 'AGRI', - 'REL1': 'RELIG', - 'GOV1': 'CITY', - 'GOV2': 'EMERG', - 'EDU1': 'SCHOOL', - 'EDU2': 'SCHOOL' - } - ap_OT[BIM['occupancy_class']] - - - if not (BIM['occupancy_class'] in ['RES1', 'RES2']): - if 'RES3' in BIM['occupancy_class']: - fl_config = f"{'fl'}_" \ - f"{'RES3'}" - else: - fl_config = f"{'fl'}_" \ - f"{BIM['occupancy_class']}" - elif BIM['occupancy_class'] == 'RES2': - fl_config = f"{'fl'}_" \ - f"{BIM['occupancy_class']}_" \ - f"{flood_type}" - else: - if bmt_type == 'spt': - fl_config = f"{'fl'}_" \ - f"{BIM['occupancy_class']}_" \ - f"{'sl'}_" \ - f"{'bw'}_" \ - f"{flood_type}" - else: - st = 's'+str(np.min([BIM['stories'],3])) - fl_config = f"{'fl'}_" \ - f"{BIM['occupancy_class']}_" \ - f"{st}_" \ - f"{bmt_type}_" \ - f"{flood_type}" - - return fl_config - diff --git a/docs/_downloads/c9f7056c8b692604aafd0bb10bb3ca42/ExplorationInventory.csv b/docs/_downloads/c9f7056c8b692604aafd0bb10bb3ca42/ExplorationInventory.csv deleted file mode 100644 index 6df2e3c9d..000000000 --- a/docs/_downloads/c9f7056c8b692604aafd0bb10bb3ca42/ExplorationInventory.csv +++ /dev/null @@ -1,1001 +0,0 @@ -,BldgID,Address,City,State,Latitude,Longitude,OccupancyClass,BuildingType,UseCode,BldgClass,DesignLevel,YearBuiltNJDEP,YearBuiltMODIV,NumberofStories0,NumberofStories1,NoUnits,PlanArea0,PlanArea1,FoundationType,SplitLevel,ElevationR0,ElevationR1,FirstFloorHt0,FirstFloorHt1,FloodZone,DSWI,DSWII,DSWIII,DSWIV,WindZone,AvgJanTemp,RoofShape,RoofSlope,RoofCover,RoofSystem,MeanRoofHt,WindowArea,Garage,HazusClassW,HazusClassIN,HazusClassWA,AnalysisDefault,AnalysisAdopted,Modifications,z0,structureType,replacementCost,yearBuilt,stories,area,occupancy -1,NJBF000071434,425 N MARYLAND AVE,Atlantic City,NJ,39.37060793,-74.42564427,RES1,3001,210,NaN,NE,1969,0,3102,1,1,906.2940373,906.2940373,3505,NO,12.09,25.16,3,-0.83,6106,114.582127,124.183352,133.988734,140.212988,I,Above,Flat,0,5701,Wood,18.62778897,0,0,,,,1,1,,0.03,nav,1,1969,1,, -2,NJBF000069199,125 N FLORIDA AVE,Atlantic City,NJ,39.35914703,-74.44296699,RES3B,3001,,NaN,ME,1969,0,3301,2,1,746.77695,746.77695,3505,NO,20.8,28.38,3,-1.12,6106,114.345973,123.988371,133.764787,140.105028,I,Above,Flat,0,NaN,Wood,24.5906803,0,0,,,,1,1,,0.03,nav,1,1969,2,, -3,NJBF000073099,600 HURON AVE,Atlantic City,NJ,39.37757936,-74.4295234,GOV2,3001,,NaN,E,1969,0,3401,3,1,1513.12497,1513.12497,3507,NO,53.51,64.92,1,2.61,6102,114.419245,124.039359,133.835327,140.051978,I,Above,Hip,0,NaN,Wood,59.2178323,0,0,,,,1,1,,0.03,nav,1,1969,3,, -4,NJBF000072131,332 N RHODE ISLAND AVE,Atlantic City,NJ,39.37266302,-74.4195965,IND1,3003,100,NaN,E,1969,0,3401,1,1,1000.334181,1000.334181,3507,NO,12.94,25.08,1,0.65,6106,114.687154,124.272844,134.089421,140.279189,I,Above,Flat,0,NaN,Wood,19.01116657,0,0,,,,1,1,,0.03,nav,1,1969,1,, -5,NJBF000067530,1 ATLANTIC OCEAN,Atlantic City,NJ,39.35374924,-74.43417403,COM8,3003,738,NaN,ME,1969,0,3401,1,1,177963.6629,177963.6629,3502,NO,23.82,31.38,5,9.26,6102,114.602674,124.205439,133.996965,140.317942,I,Above,Flat,0,NaN,Wood,27.5964249,0,0,,,,1,1,,0.03,nav,1,1969,1,, -6,NJBF000067877,11 N MORRIS AVE,Atlantic City,NJ,39.35486056,-74.44795731,RES3B,3001,,45,ME,1900,1900,3301,2,3,835.133255,835.133255,3504,NO,22.28,31.19,-4,0,6106,114.290475,123.943662,133.712312,140.089522,I,Above,Hip,0,NaN,Wood,26.73550746,0,0,,,,1,1,,0.03,nav,1,1900,2,, -7,NJBF000068827,601 N ALBANY AVE,Atlantic City,NJ,39.35771681,-74.45662953,COM1,3003,,NaN,ME,1969,0,3401,1,1,654.0515616,654.0515616,3507,NO,12.92,22.85,1,0.48,6106,114.066125,123.756156,133.511018,139.908712,I,Above,Flat,0,NaN,Wood,17.88736232,0,0,,,,1,1,,0.03,nav,1,1969,1,, -8,NJBF000070418,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.36703147,-74.43394222,RES3C,3004,,NaN,ME,1969,0,3301,1,1,938.5675163,938.5675163,3505,NO,22.15,30.29,3,8.37,6106,114.446193,124.069174,133.859987,140.133075,I,Above,Gable,0,NaN,Wood,26.2188825,0,0,,,,1,1,,0.03,nav,1,1969,1,, -9,NJBF000073313,900 BEACH THOROFARE,Atlantic City,NJ,39.37975402,-74.42453449,GOV2,3001,,NaN,E,1969,0,3401,2,1,606.967372,606.967372,3507,NO,36.33,45.23,1,0.84,6106,114.501236,124.10828,133.913045,140.101152,I,Above,Flat,0,NaN,Wood,40.78026092,0,0,,,,1,1,,0.03,nav,1,1969,2,, -10,NJBF000073035,1 BORGATA WAY,Atlantic City,NJ,39.37673702,-74.43505349,COM8,3003,80,NaN,ME,1969,0,3401,1,1,1879.060694,1879.060694,3507,NO,10.76,20.42,1,-0.2,6112,114.310272,123.946858,133.732799,139.974749,I,Above,Gable,0,NaN,Wood,15.58973262,0,0,,,,1,1,,1,nav,1,1969,1,, -11,NJBF000070587,22 N VERMONT AVE,Atlantic City,NJ,39.36769548,-74.4155228,RES3D,3004,,NaN,E,1969,0,3303,4,1,665.0906288,665.0906288,3505,NO,76.24,85.91,3,5.65,6106,114.831915,124.399307,134.224762,140.410933,I,Above,Flat,0,NaN,Wood,81.0745672,0,0,,,,1,1,,0.03,nav,1,1969,4,, -12,NJBF000071302,822 ADRIATIC AVE,Atlantic City,NJ,39.37013371,-74.4249531,RES1,3001,100,NaN,NE,1969,0,3102,2,1,2115.508277,2115.508277,3505,NO,35.03,48.91,3,0.95,6106,114.602423,124.200968,134.007765,140.230525,I,Above,Flat,0,5701,Wood,41.96684013,0,0,,,,1,1,,0.03,nav,1,1969,2,, -13,NJBF000068281,1701 BOARDWALK,Atlantic City,NJ,39.35622601,-74.42913186,COM8,3003,100,NaN,ME,1969,0,3401,1,1,1182.211148,1182.211148,3507,YES,15.94,25.06,1,1.71,6106,114.680286,124.270854,134.071307,140.360231,I,Above,Hip,0,NaN,Wood,20.50057463,0,0,,,,1,1,,0.03,nav,1,1969,1,, -14,NJBF000073032,1 BORGATA WAY,Atlantic City,NJ,39.37671002,-74.43481749,COM8,3003,80,NaN,ME,1969,0,3401,2,1,1034.644393,1034.644393,3507,NO,29.16,38.09,1,-0.95,6112,114.315643,123.951461,133.737847,139.978972,I,Above,Flat,0,NaN,Wood,33.62230206,0,0,,,,1,1,,1,nav,1,1969,2,, -15,NJBF000073016,600 HURON AVE,Atlantic City,NJ,39.37654852,-74.42859749,GOV2,3001,,NaN,E,1969,0,3401,3,1,1893.761678,1893.761678,3507,NO,46.44,51.95,1,0.4,6102,114.450688,124.067108,133.865198,140.081631,I,Above,Flat,0,NaN,Wood,49.19737067,0,0,,,,1,1,,0.03,nav,1,1969,3,, -16,NJBF000072680,618 N CONNECTICUT AVE,Atlantic City,NJ,39.37449952,-74.4238115,RES1,3001,,NaN,NE,1969,0,3102,2,1,868.5192539,868.5192539,3505,NO,30.29,45.09,3,5.82,6106,114.576225,124.176314,133.984216,140.187041,I,Above,Flat,0,5701,Wood,37.69262817,0,0,,,,1,1,,0.03,nav,1,1969,2,, -17,NJBF000071245,,Atlantic City,NJ,39.36991241,-74.42513813,RES1,3001,,NaN,NE,1969,0,3102,2,1,814.36214,814.36214,3505,NO,33.93,39.75,3,3.8,6106,114.601067,124.199901,134.006394,140.230744,I,Above,Flat,0,5701,Wood,36.84013057,0,0,,,,1,1,,0.03,nav,1,1969,2,, -18,NJBF000070402,1500-1538 ADRIATIC AVE,Atlantic City,NJ,39.36696953,-74.43408199,RES3C,3004,,NaN,ME,1969,0,3301,1,1,1047.135344,1047.135344,3505,NO,20.16,34.47,3,8.14,6106,114.443902,124.067262,133.857835,140.13174,I,Above,Flat,0,NaN,Wood,27.31446286,0,0,,,,1,1,,0.03,nav,1,1969,1,, -19,NJBF000073509,5207 HARBOR BEACH BLVD,Atlantic City,NJ,39.38121603,-74.40752613,RES1,3001,,17,NE,1987,1987,3103,2,1,1585.636058,1585.636058,3505,NO,38.96,49.1,3,3.55,6110,114.844667,124.406792,134.245537,140.351043,I,Above,Gable,0,5701,Wood,44.03148628,0,0,,,,1,1,,0.35,nav,1,1987,2,, -20,NJBF000073577,5110 ONTARIO DRIVE,Atlantic City,NJ,39.381728,-74.4063255,RES1,3001,,43,NE,1985,1985,3103,2,2,1247.359049,1247.359049,3505,NO,24.54,39.02,3,-0.32,6110,114.86414,124.423747,134.264858,140.362971,I,Above,Gable,0,5701,Wood,31.77601017,0,0,,,,1,1,,0.35,nav,1,1985,2,, -21,NJBF000073745,4 MANITOBA AVE,Atlantic City,NJ,39.38288165,-74.40613562,RES3A,3001,,18,NE,2006,2006,3301,2,1,2553.805107,2553.805107,3505,NO,37.36,44.6,3,2.83,6106,114.855157,124.415388,134.256509,140.350275,I,Above,Hip,0,5701,Wood,40.98307329,0,1.1,,,,1,1,,0.03,nav,1,2006,2,, -22,NJBF000073749,4815 ROSS DRIVE SOUTH,Atlantic City,NJ,39.38290256,-74.40068093,RES3C,3001,,37,ME,1986,1986,3301,2,1,1937.55861,1937.55861,3507,NO,33.46,44.21,1,-0.7,6106,114.969196,124.516266,134.369074,140.435663,I,Above,Gable,0,NaN,Wood,38.83397853,0,0,,,,1,1,,0.03,nav,1,1986,2,, -23,NJBF000073271,29 OCEAN DRIVE WEST,Atlantic City,NJ,39.37946962,-74.40830686,RES1,3001,,16,NE,1975,1975,3103,2,1,1115.517747,1115.517747,3505,NO,37.68,49.11,3,8.66,6106,114.847969,124.410327,134.247977,140.36254,I,Above,Hip,0,5701,Wood,43.39541385,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, -24,NJBF000070632,,Atlantic City,NJ,39.36786531,-74.42736843,RES1,3001,,NaN,NE,1969,0,3103,6,1,1947.18178,1947.18178,3505,NO,79.15,92.08,3,-2.6,6106,114.577422,124.180522,133.983223,140.224622,I,Above,Hip,0,5701,Wood,85.6142264,0,0,,,,1,1,,0.03,nav,1,1969,6,, -25,NJBF000068931,2507 ARCTIC AVE,Atlantic City,NJ,39.35805361,-74.44340273,RES3B,3001,,17,ME,1969,1900,3301,2,1,2442.19065,2442.19065,3505,NO,25.82,32.05,3,2.69,6106,114.349899,123.992096,133.7679,140.114122,I,Above,Gable,0,NaN,Wood,28.93451235,0,0,,,,1,1,,0.03,nav,1,1969,2,, -26,NJBF000072197,1817 N MISSOURI AVE,Atlantic City,NJ,39.3728645,-74.4535545,RES1,3001,,17,NE,1900,1900,3101,1,1,1134.766004,1134.766004,3505,NO,25.84,32.09,3,8.88,6106,113.954306,123.650378,133.405597,139.727957,I,Above,Flat,0,5701,Wood,28.96514477,0,0,,,,1,1,,0.03,nav,1,1900,1,, -27,NJBF000072227,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37296747,-74.4191288,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6014.012796,6014.012796,3505,NO,17.37,29.2,3,3.39,6106,114.69356,124.278259,134.095682,140.282283,I,Above,Hip,0,NaN,Wood,23.28496809,0,0,,,,1,1,,0.03,nav,1,1969,1,, -28,NJBF000072895,837 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37550337,-74.42300718,RES3D,3001,,18,ME,2006,2006,3301,3,1,1357.048534,1357.048534,3507,NO,37.84,42.89,1,0.96,6106,114.581869,124.18062,133.98979,140.185651,I,Above,Hip,0,NaN,Wood,40.36492488,0,0,,,,1,1,,0.03,nav,1,2006,3,, -29,NJBF000069283,2231 ARCTIC AVE,Atlantic City,NJ,39.35950971,-74.44011018,COM1,3003,,NaN,ME,1969,0,3401,1,1,10842.04384,10842.04384,3507,NO,21.89,34.89,1,2.94,6106,114.403388,124.036401,133.817587,140.144537,I,Above,Flat,0,NaN,Wood,28.38958755,0,0,,,,1,1,,0.03,nav,1,1969,1,, -30,NJBF000068521,2807 DENNY ST,Atlantic City,NJ,39.35700017,-74.44757492,RES1,3001,,27,NE,1900,1900,3102,2,2,1447.053472,1447.053472,3505,NO,34.44,43.9,3,7.74,6106,114.2723,123.927698,133.696793,140.064021,I,Above,Hip,0,5701,Wood,39.16934775,0,0,,,,1,1,,0.03,nav,1,1900,2,, -31,NJBF000072516,538 N MASSACHUSETTS AVE,Atlantic City,NJ,39.3739549,-74.42235362,RES1,3001,,45,NE,1900,1900,3102,2,2,1562.170649,1562.170649,3505,NO,39.94,52.12,3,8.35,6106,114.613535,124.208743,134.019618,140.217751,I,Above,Hip,0,5701,Wood,46.02753727,0,0,,,,1,1,,0.03,nav,1,1900,2,, -32,NJBF000066458,4017 VENTNOR AVE,Atlantic City,NJ,39.349802,-74.45892115,COM1,3004,100,NaN,ME,1969,0,3401,2,1,2121.364634,2121.364634,3507,YES,24.17,33.17,1,1.09,6106,114.11498,123.800095,133.552295,139.99249,I,Above,Flat,0,NaN,Wood,28.67068861,0,0,,,,1,1,,0.03,nav,1,1969,2,, -33,NJBF000068201,2905 ARCTIC AVE,Atlantic City,NJ,39.355985,-74.4485495,RES3A,3001,,45,NE,1930,1930,3301,2,3,1474.77185,1474.77185,3505,NO,35.82,50.53,3,6.9,6106,114.263656,123.920912,133.68854,140.063665,I,Above,Hip,0,5701,Wood,43.17148983,0,0,,,,1,1,,0.03,nav,1,1930,2,, -34,NJBF000072280,1600 EMERSON AVE,Atlantic City,NJ,39.37314507,-74.44961931,RES1,3001,,17,NE,1959,1959,3101,1,1,2029.396069,2029.396069,3505,NO,11.94,23.73,3,0.41,6106,114.036589,123.71893,133.480575,139.789225,I,Above,Hip,0,5701,Wood,17.83627987,0,0,,,,1,1,,0.03,nav,1,1959,1,, -35,NJBF000071219,914 N INDIANA AVE,Atlantic City,NJ,39.36979733,-74.43988434,RES3A,3001,,27,NE,1953,1953,3301,2,2,1687.922785,1687.922785,3505,YES,35.33,43.04,3,5.75,6106,114.285753,123.931614,133.711171,139.998133,I,Above,Flat,0,5701,Wood,39.18497199,0,0,,,,1,1,,0.03,nav,1,1953,2,, -36,NJBF000069087,2312 ARCTIC AVE,Atlantic City,NJ,39.35871841,-74.44091582,COM1,3003,,45,ME,1920,1920,3401,3,3,1267.11776,1267.11776,3507,YES,38.45,48.45,1,1.26,6106,114.395626,124.030176,133.810075,140.143393,I,Above,Gable,0,NaN,Wood,43.45236519,0,0,,,,1,1,,0.03,nav,1,1920,3,, -37,NJBF000069314,122 N MISSISSIPPI AVE,Atlantic City,NJ,39.35963541,-74.44114268,COM1,3003,,47,ME,1900,1910,3401,2,3,3533.316075,3533.316075,3507,YES,32.4,42.97,1,1.94,6106,114.379518,124.016305,133.795728,140.126552,I,Above,Flat,0,NaN,Wood,37.68833586,0,0,,,,1,1,,0.03,nav,1,1900,2,, -38,NJBF000067661,12 N MONTPELIER AVE,Atlantic City,NJ,39.35409178,-74.450722,RES3B,3001,,45,ME,1908,1908,3301,2,3,1577.696548,1577.696548,3504,NO,36.89,50.03,-4,0,6106,114.239888,123.901876,133.666217,140.057496,I,Above,Hip,0,NaN,Wood,43.46405256,0,0,,,,1,1,,0.03,nav,1,1908,2,, -39,NJBF000067689,14 N MONTPELIER AVE,Atlantic City,NJ,39.35417434,-74.45078828,RES3B,3001,,45,ME,1900,1900,3301,2,2,1539.698677,1539.698677,3504,NO,26.13,39.84,-4,0,6106,114.237428,123.899803,133.664035,140.055243,I,Above,Hip,0,NaN,Wood,32.98710693,0,0,,,,1,1,,0.03,nav,1,1900,2,, -40,NJBF000072465,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37376697,-74.41696374,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3486.234049,3486.234049,3505,NO,33.22,42.55,3,8.11,6106,114.730283,124.309735,134.131251,140.305114,I,Above,Hip,0,NaN,Wood,37.88500131,0,0,,,,1,1,,0.03,nav,1,1969,2,, -41,NJBF000071361,141 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37036284,-74.41401886,RES3D,3004,,27,E,2000,2000,3303,2,2,1771.71857,1771.71857,3505,NO,37.97,52.11,3,4.35,6106,114.832352,124.399208,134.227272,140.397732,I,Above,Hip,0,NaN,Wood,45.03804989,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, -42,NJBF000067147,3 N ST DAVIDS PL,Atlantic City,NJ,39.35230731,-74.45456624,RES3B,3001,,45,E,1900,1900,3303,2,2,1421.969062,1421.969062,3507,NO,40.74,49.17,1,2.91,6106,114.178444,123.851606,133.610149,140.023565,I,Above,Flat,0,NaN,Wood,44.95855826,0,0,,,,1,1,,0.03,nav,1,1900,2,, -43,NJBF000072609,1404 PENROSE AVE,Atlantic City,NJ,39.37426708,-74.44507169,RES1,3001,,17,NE,1900,1900,3102,2,1,1743.978387,1743.978387,3505,NO,42.35,53.35,3,4.85,6106,114.122337,123.789865,133.558834,139.847478,I,Above,Hip,0,5701,Wood,47.84821412,0,0,,,,1,1,,0.03,nav,1,1900,2,, -44,NJBF000072085,2002 E RIVERSIDE DR,Atlantic City,NJ,39.3725323,-74.44528008,RES1,3001,,NaN,NE,1969,0,3102,2,1,4400.646067,4400.646067,3505,NO,40.28,54.56,3,3.54,6106,114.137595,123.804395,133.573665,139.869974,I,Above,Hip,0,5701,Wood,47.41756243,0,0,,,,1,1,,0.03,nav,1,1969,2,, -45,NJBF000071571,1605 W RIVERSIDE DR,Atlantic City,NJ,39.3709536,-74.45072537,RES1,3001,,17,NE,1900,1900,3101,2,1,1627.048044,1627.048044,3505,NO,44.56,58.13,3,8.2,6106,114.037623,123.722024,133.482671,139.804053,I,Above,Hip,0,5701,Wood,51.34463829,0,0,,,,1,1,,0.03,nav,1,1900,2,, -46,NJBF000068858,10 N MISSISSIPPI AVE,Atlantic City,NJ,39.357808,-74.440426,COM1,3003,,NaN,ME,1969,0,3401,3,1,1552.892811,1552.892811,3507,NO,37.39,42.62,1,-0.23,6106,114.417383,124.048753,133.829552,140.164178,I,Above,Flat,0,NaN,Wood,40.00441734,0,0,,,,1,1,,0.03,nav,1,1969,3,, -47,NJBF000068967,10 N MISSISSIPPI AVE,Atlantic City,NJ,39.358191,-74.44024029,COM1,3003,,NaN,ME,1969,0,3401,3,1,19774.75034,19774.75034,3507,NO,31.96,43.7,1,0.15,6106,114.416705,124.048057,133.829142,140.161553,I,Above,Flat,0,NaN,Wood,37.82853722,0,0,,,,1,1,,0.03,nav,1,1969,3,, -48,NJBF000067184,3029 PACIFIC AVE,Atlantic City,NJ,39.35246716,-74.44786077,COM1,3003,530,NaN,ME,1969,0,3401,2,1,4767.595549,4767.595549,3507,NO,28.01,35.63,1,1.37,6106,114.322502,123.971057,133.73994,140.126086,I,Above,Flat,0,NaN,Wood,31.82004957,0,0,,,,1,1,,0.03,nav,1,1969,2,, -49,NJBF000070051,408 N INDIANA AVE,Atlantic City,NJ,39.3656245,-74.4371055,RES1,3001,,45,NE,1920,1920,3101,2,2,1129.324234,1129.324234,3507,NO,26.5,35.41,1,0.76,6106,114.394697,124.0263,133.811762,140.103314,I,Above,Hip,0,5701,Wood,30.95482958,0,0,,,,1,1,,0.03,nav,1,1920,2,, -50,NJBF000067637,405 N ANNAPOLIS AVE,Atlantic City,NJ,39.35403396,-74.46286267,RES1,3001,,17,NE,1900,1900,3102,1,1,776.6966952,776.6966952,3505,NO,12.98,22.62,3,2.02,6106,113.975231,123.683311,133.429558,139.864088,I,Above,Flat,0,5701,Wood,17.7978336,0,0,,,,1,1,,0.03,nav,1,1900,1,, -51,NJBF000065525,1 S KINGSTON AVE,Atlantic City,NJ,39.34733604,-74.46305125,RES3A,3001,,45,NE,1925,1925,3301,2,4,1928.841921,1928.841921,3505,YES,27.4,38.24,3,-1.26,6106,114.056126,123.752489,133.498861,139.964568,I,Above,Hip,0,5701,Wood,32.81874382,0,0,,,,1,1,,0.03,nav,1,1925,2,, -52,NJBF000070898,1104 ADRIATIC AVE,Atlantic City,NJ,39.36879059,-74.42817944,RES1,3001,,33,NE,1900,1900,3103,2,1,1532.420111,1532.420111,3505,YES,23.44,32.46,3,-0.13,6106,114.549161,124.155977,133.956985,140.198798,I,Above,Gable,0,5701,Wood,27.94726262,0,0,,,,1,1,,0.03,nav,1,1900,2,, -53,NJBF000068372,2801 ARCTIC AVE,Atlantic City,NJ,39.356535,-74.446991,RES3A,3001,738,NaN,NE,1969,0,3301,3,1,947.8162957,947.8162957,3505,YES,50.3,56.84,3,8.99,6106,114.290726,123.943249,133.713326,140.08006,I,Above,Flat,0,5701,Wood,53.57119258,0,0,,,,1,1,,0.03,nav,1,1969,3,, -54,NJBF000072114,730 SEWELL AVE,Atlantic City,NJ,39.37262817,-74.42491434,RES1,3001,,27,NE,1900,1900,3102,2,2,1902.722298,1902.722298,3505,YES,45.07,51.7,3,6.65,6106,114.57426,124.175618,133.981904,140.195999,I,Above,Flat,0,5701,Wood,48.3895872,0,0,,,,1,1,,0.03,nav,1,1900,2,, -55,NJBF000066996,40 N TRENTON AVE,Atlantic City,NJ,39.35163518,-74.45705066,RES3A,3001,,17,NE,1900,1900,3301,1,1,782.4421787,782.4421787,3505,NO,20.41,25.72,3,8.31,6106,114.132631,123.814004,133.568874,139.994375,I,Above,Gable,0,5701,Wood,23.06069605,0,0,,,,1,1,,0.03,nav,1,1900,1,, -56,NJBF000067020,40 N TRENTON AVE,Atlantic City,NJ,39.3517208,-74.45687416,RES3A,3001,,17,NE,1900,1900,3301,1,1,1502.257554,1502.257554,3505,NO,14.48,20.4,3,-1.63,6106,114.135414,123.816269,133.571397,139.995882,I,Above,Hip,0,5701,Wood,17.43988439,0,0,,,,1,1,,0.03,nav,1,1900,1,, -57,NJBF000072548,1403 N OHIO AVE,Atlantic City,NJ,39.37405039,-74.44517568,RES1,3001,,17,NE,1925,1925,3102,2,1,910.6234253,910.6234253,3505,NO,42.94,57.14,3,5.66,6106,114.12255,123.79026,133.559134,139.849008,I,Above,Gable,0,5701,Wood,50.03924291,0,0,,,,1,1,,0.03,nav,1,1925,2,, -58,NJBF000065663,19 S DELANCY PL,Atlantic City,NJ,39.34775779,-74.46138687,RES3A,3001,,17,NE,1900,1900,3301,2,1,1446.51815,1446.51815,3505,NO,38.96,50.17,3,1.52,6106,114.087156,123.777841,133.526535,139.984517,I,Above,Gable,0,5701,Wood,44.5618683,0,0,,,,1,1,,0.03,nav,1,1900,2,, -59,NJBF000071438,410 DELTA AVE,Atlantic City,NJ,39.370623,-74.4251975,RES1,3001,,33,NE,1900,1900,3102,2,1,2242.951543,2242.951543,3505,YES,28.51,37.65,3,-2.69,6106,114.591502,124.191385,133.997612,140.219808,I,Above,Gable,0,5701,Wood,33.08141311,0,0,,,,1,1,,0.03,nav,1,1900,2,, -60,NJBF000069266,2 SIRACUSA TERR,Atlantic City,NJ,39.35945338,-74.44111612,COM1,3003,,45,ME,1900,1915,3401,2,3,28441.26195,28441.26195,3507,YES,34.48,44.94,1,1.89,6106,114.382321,124.01873,133.798218,140.129616,I,Above,Flat,0,NaN,Wood,39.70936894,0,0,,,,1,1,,0.03,nav,1,1900,2,, -61,NJBF000070550,2019 GRANT AVE,Atlantic City,NJ,39.36754787,-74.44211737,RES3B,3001,,33,ME,1900,1900,3301,2,1,3166.523164,3166.523164,3505,YES,20.87,26.77,3,-2.28,6106,114.263786,123.914689,133.690975,139.995288,I,Above,Flat,0,5701,Wood,23.82256008,0,0,,,,1,1,,0.03,nav,1,1900,2,, -62,NJBF000070486,1311 DREXEL AVE,Atlantic City,NJ,39.36734134,-74.43060293,RES3C,3003,,33,E,1910,1900,3305,2,1,3346.301672,3346.301672,3507,YES,24.91,31.98,1,0.48,6106,114.514269,124.126884,133.923701,140.181275,I,Above,Flat,0,NaN,Wood,28.44575062,0,0,,,,2,2,,0.03,nav,1,1910,2,, -63,NJBF000070614,908 KEENER AVE,Atlantic City,NJ,39.36778733,-74.44218013,RES3B,3001,,33,ME,1900,1900,3301,2,1,3870.477788,3870.477788,3505,YES,26.49,34.56,3,-1.63,6106,114.259619,123.911014,133.687128,139.990752,I,Above,Flat,0,5701,Wood,30.52195154,0,0,,,,1,1,,0.03,nav,1,1900,2,, -64,NJBF000067459,5 N SOVEREIGN AVE,Atlantic City,NJ,39.35355658,-74.45063378,RES3B,3001,29,NaN,ME,1969,0,3301,2,1,874.430821,874.430821,3504,YES,35.28,41.99,-4,0,6106,114.248491,123.90921,133.673715,140.066803,I,Above,Gable,0,NaN,Wood,38.63718544,0,0,,,,1,1,,0.03,nav,1,1969,2,, -65,NJBF000065893,21 S LACLEDE PL,Atlantic City,NJ,39.34837553,-74.46005095,RES3A,3001,,18,NE,1920,1920,3301,2,1,2275.432851,2275.432851,3505,NO,25.29,36.99,3,0.19,6106,114.108474,123.795185,133.545773,139.996246,I,Above,Hip,0,5701,Wood,31.13917414,0,0,,,,1,1,,0.03,nav,1,1920,2,, -66,NJBF000068434,2727 ARCTIC AVE,Atlantic City,NJ,39.35674682,-74.44661183,RES3A,3001,738,NaN,NE,1969,0,3301,3,1,966.2570403,966.2570403,3505,YES,30.18,40.04,3,-2.42,6106,114.296343,123.947851,133.718521,140.082899,I,Above,Gable,0,5701,Wood,35.10756412,0,0,,,,1,1,,0.03,nav,1,1969,3,, -67,NJBF000070576,2011 GRANT AVE,Atlantic City,NJ,39.3676691,-74.44180066,RES3B,3001,,27,ME,1915,1915,3301,2,2,1068.908825,1068.908825,3505,YES,37.91,50.74,3,-0.37,6106,114.269199,123.919163,133.695963,139.998584,I,Above,Flat,0,5701,Wood,44.32799866,0,0,,,,1,1,,0.03,nav,1,1915,2,, -68,NJBF000068885,2718 FAIRMOUNT AVE,Atlantic City,NJ,39.35793003,-74.44689837,COM1,3003,,33,ME,1900,1900,3401,2,1,3450.840733,3450.840733,3507,YES,35.26,50.18,1,1.5,6106,114.275578,123.930033,133.700124,140.06098,I,Above,Flat,0,NaN,Wood,42.7215989,0,0,,,,1,1,,0.03,nav,1,1900,2,, -69,NJBF000070300,805 FISHER AVE,Atlantic City,NJ,39.36661791,-74.44267594,RES3B,3001,,33,ME,1900,1900,3301,2,1,1552.037848,1552.037848,3505,NO,29.13,43.26,3,2.51,6106,114.262635,123.914356,133.689917,140.000019,I,Above,Flat,0,5701,Wood,36.19519283,0,0,,,,1,1,,0.03,nav,1,1900,2,, -70,NJBF000070354,416 ATLANTIC AVE,Atlantic City,NJ,39.36682316,-74.41599567,RES3D,3004,100,NaN,E,1969,0,3303,3,1,505.8592283,505.8592283,3505,YES,44.69,56.81,3,2.24,6106,114.832225,124.399702,134.224327,140.415552,I,Above,Flat,0,NaN,Wood,50.75013717,0,0,,,,1,1,,0.03,nav,1,1969,3,, -71,NJBF000067753,8 N MORRIS AVE,Atlantic City,NJ,39.35436861,-74.44873793,RES3B,3001,,45,ME,1900,1900,3301,2,3,557.9085271,557.9085271,3504,NO,34.89,49.36,-4,0,6106,114.279617,123.934797,133.702235,140.084531,I,Above,Flat,0,NaN,Wood,42.12381602,0,0,,,,1,1,,0.03,nav,1,1900,2,, -72,NJBF000069740,600 PACIFIC AVE,Atlantic City,NJ,39.36355401,-74.41713554,RES3C,3004,,NaN,E,1969,0,3303,4,1,1946.101016,1946.101016,3507,NO,50.27,61.64,1,0.28,6106,114.847121,124.412879,134.235544,140.442609,I,Above,Gable,0,NaN,Wood,55.95638044,0,0,,,,1,1,,0.03,nav,1,1969,4,, -73,NJBF000068965,708 N HARRISBURG AVE,Atlantic City,NJ,39.35818209,-74.46310583,RES1,3001,,16,NE,1918,1918,3101,1,1,1182.023123,1182.023123,3505,NO,14.28,26.67,3,-0.82,6106,113.918629,123.634215,133.379407,139.795496,I,Above,Gable,0,5701,Wood,20.47740387,0,0,,,,1,1,,0.03,nav,1,1918,1,, -74,NJBF000072640,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37436014,-74.4181724,RES3C,3001,,NaN,ME,1969,0,3301,1,1,6941.059151,6941.059151,3505,NO,17.31,26.32,3,3.29,6106,114.697804,124.281363,134.100337,140.277951,I,Above,Hip,0,NaN,Wood,21.81421115,0,0,,,,1,1,,0.03,nav,1,1969,1,, -75,NJBF000073070,1 BORGATA WAY,Atlantic City,NJ,39.37722504,-74.43746677,COM8,3003,80,NaN,ME,1969,0,3401,1,1,10337.15543,10337.15543,3507,NO,13.34,26.04,1,0.66,6112,114.252925,123.897572,133.678898,139.928327,I,Above,Flat,0,NaN,Wood,19.68832823,0,0,,,,1,1,,1,nav,1,1969,1,, -76,NJBF000072033,29 CLIPPER CT,Atlantic City,NJ,39.37236111,-74.41845336,RES3C,3001,,35,ME,1990,1990,3301,2,1,3555.125482,3555.125482,3505,NO,31.8,45.05,3,5.9,6106,114.714953,124.296981,134.115871,140.301277,I,Above,Hip,0,NaN,Wood,38.42428797,0,0,,,,1,1,,0.03,nav,1,1990,2,, -77,NJBF000069376,131 S OCEAN AVE RR,Atlantic City,NJ,39.35994131,-74.42583305,COM1,3001,,45,ME,1935,1935,3401,2,2,1254.891509,1254.891509,3507,YES,22.09,29.52,1,-0.09,6106,114.705353,124.291789,134.098198,140.359178,I,Above,Flat,0,NaN,Wood,25.8010789,0,0,,,,1,1,,0.03,nav,1,1935,2,, -78,NJBF000070765,1117 DREXEL AVE,Atlantic City,NJ,39.36835332,-74.42807996,RES1,3001,,33,NE,1900,1924,3103,2,1,2295.021468,2295.021468,3505,YES,39.16,52.8,3,3.53,6106,114.556429,124.162381,133.963662,140.206556,I,Above,Flat,0,5701,Wood,45.98146803,0,0,,,,1,1,,0.03,nav,1,1900,2,, -79,NJBF000070844,342 N PENNSYLVANIA AVE,Atlantic City,NJ,39.36860897,-74.42783422,RES1,3001,,33,NE,1924,1900,3103,2,1,4119.856207,4119.856207,3505,YES,35.49,41.09,3,6.61,6106,114.558686,124.164196,133.965885,140.206797,I,Above,Gable,0,5701,Wood,38.29342439,0,0,,,,1,1,,0.03,nav,1,1924,2,, -80,NJBF000068199,,Atlantic City,NJ,39.3559832,-74.43505302,COM8,3003,,NaN,,1969,0,3408,11,1,477977.4606,477977.4606,3507,NO,142.14,148,1,0.2,6106,114.555927,124.165747,133.955791,140.27319,I,Above,Flat,0,NaN,Wood,145.0720457,0,0,,,,2,2,,0.03,nav,1,1969,11,, -81,NJBF000067632,37 S IOWA AVE,Atlantic City,NJ,39.35401653,-74.44474056,RES4,3003,,NaN,E,1969,0,3404,7,1,7321.588788,7321.588788,3507,NO,89.12,100.32,1,2.99,6106,114.370846,124.01093,133.784778,140.151942,I,Above,Flat,0,NaN,Wood,94.72132829,0,0,,,,2,2,,0.03,nav,1,1969,7,, -82,NJBF000067858,2825 ATLANTIC AVE,Atlantic City,NJ,39.35480494,-74.44689978,COM1,3003,643,NaN,ME,1969,0,3401,3,1,1950.726698,1950.726698,3507,NO,54.22,65.33,1,0.85,6106,114.314145,123.963399,133.733739,140.106872,I,Above,Flat,0,NaN,Wood,59.77541405,0,0,,,,1,1,,0.03,nav,1,1969,3,, -83,NJBF000065105,4501 ATLANTIC C6,Atlantic City,NJ,39.34615797,-74.46263614,RES3A,3001,,39,NE,1900,1900,3301,1,1,6428.985141,6428.985141,3505,NO,15.11,28.28,3,2.97,6106,114.080451,123.77276,133.519675,139.989166,I,Above,Flat,0,5701,Wood,21.69691046,0,0,,,,1,1,,0.03,nav,1,1900,1,, -84,NJBF000068631,39 N BELLEVUE AVE,Atlantic City,NJ,39.35728377,-74.44304214,RES3B,3001,,45,ME,1900,1900,3301,3,2,1614.540465,1614.540465,3505,YES,38.44,44.82,3,3.27,6106,114.367184,124.006851,133.783318,140.130973,I,Above,Flat,0,NaN,Wood,41.63400599,0,0,,,,1,1,,0.03,nav,1,1900,3,, -85,NJBF000072617,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37429318,-74.42001403,RES3C,3001,,NaN,ME,1969,0,3301,2,1,6793.111667,6793.111667,3505,NO,28.36,42.89,3,-1.72,6106,114.659439,124.248203,134.06356,140.249915,I,Above,Hip,0,NaN,Wood,35.62310779,0,0,,,,1,1,,0.03,nav,1,1969,2,, -86,NJBF000073443,4 SURF LANE,Atlantic City,NJ,39.3807495,-74.4049225,RES1,3001,,16,NE,1975,1975,3102,2,1,1521.513966,1521.513966,3507,YES,36.2,47.19,1,-0.92,6106,114.904623,124.459759,134.304152,140.398234,I,Above,Gable,0,5701,Wood,41.69731535,0,0,,,,1,1,,0.03,nav,1,1975,2,, -87,NJBF000073405,3 SEA SPRAY COURT,Atlantic City,NJ,39.38048154,-74.40574925,RES1,3001,,17,NE,1975,1975,3102,2,1,1746.557548,1746.557548,3507,YES,27.55,37.14,1,2.37,6106,114.89029,124.44721,134.289933,140.388903,I,Above,Flat,0,5701,Wood,32.34148528,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, -88,NJBF000073424,15 OCEAN DRIVE WEST,Atlantic City,NJ,39.38061949,-74.408992,RES1,3001,,16,NE,1978,1978,3103,2,1,1594.183612,1594.183612,3505,NO,31.32,44.85,3,0.12,6106,114.820556,124.385832,134.221698,140.336114,I,Above,Gable,0,5701,Wood,38.0823233,0,0,,,,1,1,,0.03,nav,1,1978,2,, -89,NJBF000073519,4 OCEAN DRIVE EAST,Atlantic City,NJ,39.38131868,-74.40429133,RES1,3001,,16,NE,1975,1975,3102,2,1,1500.031638,1500.031638,3507,YES,27.41,33.27,1,1.32,6106,114.911436,124.465598,134.311157,140.400433,I,Above,Gable,0,5701,Wood,30.33975259,0,0,,,,1,1,,0.03,nav,1,1975,2,, -90,NJBF000073536,2 OCEAN DRIVE EAST,Atlantic City,NJ,39.38141874,-74.40443264,RES1,3001,,43,NE,1975,1975,3102,2,2,1445.322915,1445.322915,3507,NO,24.29,33.46,1,0.63,6106,114.90733,124.461943,134.307168,140.396857,I,Above,Gable,0,5701,Wood,28.87341587,0,0,,,,1,1,,0.03,nav,1,1975,2,, -91,NJBF000073448,9 SURF LANE,Atlantic City,NJ,39.38080956,-74.40428043,RES1,3001,,16,NE,1975,1975,3102,1,1,2000.807314,2000.807314,3507,NO,13.85,19.66,1,-0.77,6106,114.917414,124.471026,134.316765,140.407475,I,Above,Gable,0,5701,Wood,16.75398001,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, -92,NJBF000073488,1 BAY COURT,Atlantic City,NJ,39.38109885,-74.40898983,RES1,3001,,16,NE,1974,1974,3103,2,1,1811.807886,1811.807886,3505,NO,37.32,42.74,3,3.77,6106,114.815188,124.380925,134.216639,140.329591,I,Above,Gable,0,5701,Wood,40.03153658,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, -93,NJBF000073754,,Atlantic City,NJ,39.38294737,-74.40707927,RES1,3001,,NaN,NE,1969,0,3103,5,1,1265.817041,1265.817041,3505,NO,78.18,89.54,3,-0.44,6106,114.834628,124.397261,134.236363,140.33452,I,Above,Gable,0,5701,Wood,83.86017449,0,0,,,,1,1,,0.03,nav,1,1969,5,, -94,NJBF000073178,5207 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3786115,-74.4058745,RES1,3001,,16,NE,1975,1975,3102,1,1,1559.859327,1559.859327,3507,NO,13.48,27.91,1,2.72,6106,114.9089,124.464131,134.307127,140.412257,I,Above,Gable,0,5701,Wood,20.69681134,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, -95,NJBF000073451,14 OCEAN DRIVE WEST,Atlantic City,NJ,39.38083478,-74.40978279,RES1,3001,,19,NE,1975,2018,3103,3,1,1316.032803,1316.032803,3505,NO,43.34,56.67,3,8.37,6106,114.801466,124.368988,134.203134,140.320703,I,Above,Gable,0,5701,Wood,50.0061653,0,1.2,,,,1,1,,0.03,nav,1,1975,3,, -96,NJBF000073410,5100 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3805005,-74.4029845,RES1,3001,,16,NE,1975,1975,3102,2,1,2087.098046,2087.098046,3507,NO,33.37,43.42,1,-0.14,6106,114.948074,124.49818,134.346773,140.431896,I,Above,Gable,0,5701,Wood,38.39122853,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, -97,NJBF000073235,5118 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37917983,-74.40459451,RES1,3001,,19,NE,1975,1975,3102,2,1,2676.869282,2676.869282,3507,NO,31.16,44.8,1,2.04,6106,114.929286,124.481933,134.327474,140.424535,I,Above,Gable,0,5701,Wood,37.97826931,0,1.2,,,,1,1,,0.03,nav,1,1975,2,, -98,NJBF000073571,5213 HARBOR BEACH BLVD,Atlantic City,NJ,39.38167563,-74.40781294,RES1,3001,,17,NE,2001,2001,3103,2,1,1801.137382,1801.137382,3505,NO,28.92,43.2,3,-0.27,6110,114.833457,124.39675,134.234741,140.340261,I,Above,Hip,0,5701,Wood,36.06175017,0,1.1,,,,1,1,,0.35,nav,1,2001,2,, -99,NJBF000073580,4 SEASIDE RD,Atlantic City,NJ,39.38176113,-74.4036258,RES1,3001,,35,NE,1978,1978,3102,2,1,1898.107673,1898.107673,3507,NO,33.48,44.53,1,0.08,6106,114.920396,124.473378,134.320217,140.40489,I,Above,Gable,0,5701,Wood,39.00466222,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, -100,NJBF000073553,5220 HARBOR BEACH BLVD,Atlantic City,NJ,39.38154878,-74.40850823,RES1,3001,,16,NE,1975,1975,3103,1,1,2002.753508,2002.753508,3505,NO,12.15,26.51,3,1.09,6110,114.820268,124.385203,134.221777,140.331043,I,Above,Hip,0,5701,Wood,19.33002475,0,0,,,,1,1,,0.35,nav,1,1975,1,, -101,NJBF000073237,31 OCEAN DRIVE WEST,Atlantic City,NJ,39.37919042,-74.40811245,RES1,3001,,16,NE,1975,1975,3103,2,1,1372.682945,1372.682945,3505,YES,33.82,40.14,3,6.46,6106,114.855249,124.416813,134.254953,140.369407,I,Above,Gable,0,5701,Wood,36.98224461,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, -102,NJBF000073261,5119 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.37943174,-74.40511202,RES1,3001,,16,NE,1975,1975,3102,2,1,1859.09702,1859.09702,3507,YES,29.58,39.85,1,-0.25,6106,114.915567,124.469782,134.314159,140.413065,I,Above,Gable,0,5701,Wood,34.71648337,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, -103,NJBF000073322,5210 WATERVIEW DR,Atlantic City,NJ,39.3798177,-74.40733758,RES1,3001,,16,NE,1975,1975,3103,1,1,2131.930139,2131.930139,3505,NO,20.09,33.91,3,0.69,6106,114.864412,124.424653,134.264228,140.373003,I,Above,Gable,0,5701,Wood,27.00475849,0,0,,,,1,1,,0.03,nav,1,1975,1,, -104,NJBF000073498,2 BAY COURT,Atlantic City,NJ,39.38114589,-74.40867556,RES1,3001,,16,NE,1975,1975,3103,1,1,2039.93468,2039.93468,3505,NO,21.55,30.19,3,8.92,6106,114.821267,124.386246,134.222602,140.333896,I,Above,Gable,0,5701,Wood,25.87199222,0,1.1,,,,1,1,,0.03,nav,1,1975,1,, -105,NJBF000073220,5216 SEA SPRAY RD,Atlantic City,NJ,39.37907849,-74.407389,RES1,3001,,16,NE,1975,1975,3103,1,1,1450.50167,1450.50167,3505,NO,12.88,24.02,3,-1.16,6106,114.871734,124.431326,134.271011,140.382252,I,Above,Gable,0,5701,Wood,18.45288068,0,0,,,,1,1,,0.03,nav,1,1975,1,, -106,NJBF000073778,,Atlantic City,NJ,39.38309752,-74.40476156,RES3C,3001,,NaN,ME,1969,0,3301,1,1,10901.93127,10901.93127,3507,NO,11.52,25.99,1,-0.01,6106,114.881564,124.438619,134.282588,140.368984,I,Above,Gable,0,NaN,Wood,18.75284243,0,0,,,,1,1,,0.03,nav,1,1969,1,, -107,NJBF000073783,27 ROSS DRIVE EAST,Atlantic City,NJ,39.3831123,-74.39993189,RES3C,3001,,37,ME,1986,1986,3301,2,1,7580.684725,7580.684725,3507,NO,30.63,44.5,1,0.23,6106,114.982502,124.528023,134.382388,140.444586,I,Above,Gable,0,NaN,Wood,37.56761323,0,0,,,,1,1,,0.03,nav,1,1986,2,, -108,NJBF000073181,5202 OCEAN DRIVE SOUTH,Atlantic City,NJ,39.3786405,-74.405081,RES1,3001,,16,NE,1975,1975,3102,2,1,1657.555196,1657.555196,3507,NO,32.32,46.78,1,1.65,6106,114.925218,124.478483,134.323143,140.424223,I,Above,Gable,0,5701,Wood,39.54918826,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, -109,NJBF000073617,5232 LAGOON BLVD,Atlantic City,NJ,39.38204123,-74.40936165,RES1,3001,,16,NE,1975,1975,3103,1,1,1913.794121,1913.794121,3505,NO,16.55,27.36,3,-0.1,6106,114.796775,124.364344,134.198963,140.310844,I,Above,Gable,0,5701,Wood,21.95766587,0,0,,,,1,1,,0.03,nav,1,1975,1,, -110,NJBF000073419,6 SEA SPRAY COURT,Atlantic City,NJ,39.38058526,-74.40515535,RES1,3001,,15,NE,1975,1975,3102,1,1,1944.832693,1944.832693,3507,NO,13.21,23.24,1,2.71,6106,114.901597,124.457142,134.301091,140.396815,I,Above,Gable,0,5701,Wood,18.22528319,0,0,,,,1,1,,0.03,nav,1,1975,1,, -111,NJBF000073706,,Atlantic City,NJ,39.38261433,-74.40585642,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2116.317244,2116.317244,3505,NO,12.74,19.81,3,-1.59,6106,114.864037,124.423326,134.265133,140.358324,I,Above,Flat,0,5701,Wood,16.27454805,0,0,,,,1,1,,0.03,nav,1,1969,1,, -112,NJBF000073846,6 HARBOR BEACH COVE,Atlantic City,NJ,39.3835341,-74.41067408,RES1,3001,,37,NE,2000,2000,3103,3,1,3281.159321,3281.159321,3505,NO,63.62,71.22,3,7.15,6106,114.752473,124.324697,134.156035,140.269591,I,Above,Gable,0,5701,Wood,67.42206868,0,1.1,,,,1,1,,0.03,nav,1,2000,3,, -113,NJBF000073654,,Atlantic City,NJ,39.3822885,-74.406185,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1239.413998,1239.413998,3505,NO,38.04,51.36,3,0.14,6106,114.860776,124.420573,134.261794,140.357556,I,Above,Gable,0,5701,Wood,44.69958295,0,0,,,,1,1,,0.03,nav,1,1969,2,, -114,NJBF000073470,16 SEASIDE RD,Atlantic City,NJ,39.3809764,-74.40275024,RES1,3001,,16,NE,1975,1975,3102,2,1,2123.777245,2123.777245,3507,YES,29.47,44.2,1,1.05,6106,114.947612,124.497652,134.346606,140.429168,I,Above,Hip,0,5701,Wood,36.83454934,0,1.1,,,,1,1,,0.03,nav,1,1975,2,, -115,NJBF000073378,5203 WATERVIEW DR,Atlantic City,NJ,39.38026404,-74.40667839,RES1,3001,,16,NE,2002,2002,3103,2,1,2161.206511,2161.206511,3505,NO,27.19,35.21,3,4.61,6106,114.873238,124.432268,134.273096,140.377296,I,Above,Gable,0,5701,Wood,31.20031944,0,0,,,,1,1,,0.03,nav,1,2002,2,, -116,NJBF000073737,28 HORIZON LANE,Atlantic City,NJ,39.38281606,-74.41109681,RES1,3001,,37,NE,1987,1987,3103,2,1,2951.165276,2951.165276,3505,YES,34.25,49.25,3,2.65,6106,114.75157,124.324277,134.155002,140.272753,I,Above,Gable,0,5701,Wood,41.75055347,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, -117,NJBF000065191,2 N NEWTON AVE,Atlantic City,NJ,39.34636495,-74.46643854,RES3A,3001,,17,NE,1920,1920,3301,1,1,1942.406707,1942.406707,3505,NO,18.97,27.79,3,5.48,6106,113.994346,123.702164,133.443916,139.925407,I,Above,Flat,0,5701,Wood,23.38266905,0,0,,,,1,1,,0.03,nav,1,1920,1,, -118,NJBF000067319,3309 ATLANTIC AVE,Atlantic City,NJ,39.3530635,-74.45129435,COM1,3003,738,NaN,ME,1969,0,3401,3,1,22628.09899,22628.09899,3507,YES,46.27,61.08,1,0.94,6106,114.240303,123.902583,133.666087,140.063766,I,Above,Flat,0,NaN,Wood,53.67583644,0,0,,,,1,1,,0.03,nav,1,1969,3,, -119,NJBF000065758,49 N TALLAHASSEE AVE,Atlantic City,NJ,39.34801621,-74.46511474,RES3A,3001,,17,NE,1920,1920,3301,2,1,1329.001599,1329.001599,3505,NO,29.03,41.46,3,3.64,6106,114.002094,123.707984,133.451524,139.921047,I,Above,Hip,0,5701,Wood,35.24732064,0,0,,,,1,1,,0.03,nav,1,1920,2,, -120,NJBF000068410,124 N MORRIS AVE,Atlantic City,NJ,39.35665834,-74.44993607,RES3A,3001,,33,NE,1925,1925,3301,2,1,723.3216015,723.3216015,3505,YES,34.94,47.22,3,3.61,6106,114.225161,123.888597,133.653962,140.031796,I,Above,Hip,0,5701,Wood,41.08058552,0,0,,,,1,1,,0.03,nav,1,1925,2,, -121,NJBF000071394,1658 W RIVERSIDE DR,Atlantic City,NJ,39.370463,-74.4519915,RES1,3001,,17,NE,1930,1930,3101,3,1,1617.898158,1617.898158,3505,YES,48.03,57.12,3,2.17,6106,114.015732,123.704212,133.46295,139.790527,I,Above,Gable,0,5701,Wood,52.57445748,0,0,,,,1,1,,0.03,nav,1,1930,3,, -122,NJBF000072037,1520 N ARKANSAS AVE,Atlantic City,NJ,39.37237216,-74.44878668,RES1,3001,,16,NE,1956,1956,3102,1,1,712.9139905,712.9139905,3505,NO,17.51,28.57,3,4.27,6106,114.063446,123.742245,133.505597,139.814661,I,Above,Gable,0,5701,Wood,23.039768,0,0,,,,1,1,,0.03,nav,1,1956,1,, -123,NJBF000068266,3900 FILBERT AVE,Atlantic City,NJ,39.35618767,-74.46147956,RES1,3001,,16,NE,1900,1900,3102,1,1,979.6925798,979.6925798,3505,NO,8.55,14.49,3,-2.82,6106,113.978797,123.685017,133.432938,139.853285,I,Above,Gable,0,5701,Wood,11.51884489,0,0,,,,1,1,,0.03,nav,1,1900,1,, -124,NJBF000068284,2504 ATLANTIC AVE,Atlantic City,NJ,39.35622719,-74.44196117,COM1,3003,100,NaN,ME,1969,1920,3401,2,1,1836.229126,1836.229126,3507,YES,38.81,48.74,1,1.99,6106,114.403645,124.037727,133.816055,140.163118,I,Above,Flat,0,NaN,Wood,43.77220847,0,0,,,,1,1,,0.03,nav,1,1969,2,, -125,NJBF000068252,2510 ATLANTIC AVE,Atlantic City,NJ,39.3561485,-74.442155,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1536.984182,1536.984182,3507,YES,20.97,30.14,1,-0.44,6106,114.400408,124.03504,133.813049,140.161231,I,Above,Flat,0,NaN,Wood,25.55442012,0,0,,,,1,1,,0.03,nav,1,1969,2,, -126,NJBF000068246,2512 ATLANTIC AVE,Atlantic City,NJ,39.35613051,-74.44221506,COM1,3003,100,NaN,ME,1969,0,3401,2,1,1672.087744,1672.087744,3507,YES,28.66,40.84,1,1.07,6106,114.399331,124.034143,133.812054,140.160559,I,Above,Flat,0,NaN,Wood,34.75137794,0,0,,,,1,1,,0.03,nav,1,1969,2,, -127,NJBF000067687,100 S TEXAS AVE #A,Atlantic City,NJ,39.35417149,-74.44211367,RES3A,3004,,45,NE,1900,1900,3301,2,2,1742.609427,1742.609427,3505,YES,30.85,41.2,3,-2.23,6106,114.425874,124.056885,133.835023,140.190352,I,Above,Flat,0,5701,Wood,36.02418217,0,0,,,,1,1,,0.03,nav,1,1900,2,, -128,NJBF000072334,19 SCHOONER CT,Atlantic City,NJ,39.37332506,-74.4170291,RES3C,3001,,35,ME,1990,1990,3301,2,1,5478.790976,5478.790976,3505,NO,26.53,33.38,3,-2.69,6106,114.734014,124.31313,134.13462,140.310208,I,Above,Hip,0,NaN,Wood,29.95505923,0,0,,,,1,1,,0.03,nav,1,1990,2,, -129,NJBF000067436,401 N RICHMOND AVE,Atlantic City,NJ,39.3534895,-74.46361718,RES1,3001,,17,NE,1959,1959,3102,1,1,1592.942796,1592.942796,3505,NO,13.5,23.39,3,-1.43,6106,113.965493,123.675603,133.420849,139.860225,I,Above,Hip,0,5701,Wood,18.44984093,0,0,,,,1,1,,0.03,nav,1,1959,1,, -130,NJBF000066450,12 S ELBERON AVE,Atlantic City,NJ,39.34978029,-74.45751327,RES3A,3001,,17,NE,1900,1900,3301,2,1,2062.348224,2062.348224,3504,NO,37.61,46.01,-4,0,6106,114.146056,123.825708,133.579951,140.015062,I,Above,Hip,0,5701,Wood,41.80851738,0,0,,,,1,1,,0.03,nav,1,1900,2,, -131,NJBF000069508,1329 PACIFIC AVE,Atlantic City,NJ,39.36104582,-74.42675935,COM1,3003,29,NaN,ME,1969,0,3401,11,1,38451.84974,38451.84974,3507,YES,191.9,203.37,1,-0.58,6106,114.672074,124.263269,134.067927,140.329651,I,Above,Flat,0,NaN,Wood,197.6355138,0,0,,,,1,1,,0.03,nav,1,1969,11,, -132,NJBF000071868,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37185842,-74.43871423,RES3E,3001,,NaN,ME,1969,0,3301,2,1,4242.964188,4242.964188,3505,NO,34.49,42.66,3,2.24,6106,114.287136,123.931229,133.712233,139.986769,I,Above,Flat,0,NaN,Wood,38.57743654,0,0,,,,1,1,,0.03,nav,1,1969,2,, -133,NJBF000071902,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37194394,-74.43845757,RES3E,3001,,NaN,ME,1969,0,3301,1,1,4643.543736,4643.543736,3505,NO,11.22,22.24,3,-2.67,6106,114.291663,123.934996,133.71643,139.989642,I,Above,Flat,0,NaN,Wood,16.73303539,0,0,,,,1,1,,0.03,nav,1,1969,1,, -134,NJBF000071917,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37199452,-74.43817562,RES3E,3001,,NaN,ME,1969,0,3301,2,1,7051.045069,7051.045069,3505,NO,25.57,31.42,3,1.7,6106,114.297152,123.939607,133.721528,139.993447,I,Above,Flat,0,NaN,Wood,28.49634122,0,0,,,,1,1,,0.03,nav,1,1969,2,, -135,NJBF000071781,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37161898,-74.43790486,RES3E,3001,,NaN,ME,1969,0,3301,2,1,2846.307701,2846.307701,3505,NO,30.71,43.43,3,-2.88,6106,114.307324,123.948513,133.731037,140.003316,I,Above,Flat,0,NaN,Wood,37.06895166,0,0,,,,1,1,,0.03,nav,1,1969,2,, -136,NJBF000071693,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.3713038,-74.4379943,RES3E,3001,,NaN,ME,1969,0,3301,1,1,3289.808497,3289.808497,3505,NO,15.9,27.37,3,1.59,6106,114.309043,123.950206,133.732667,140.006488,I,Above,Flat,0,NaN,Wood,21.63293811,0,0,,,,1,1,,0.03,nav,1,1969,1,, -137,NJBF000071704,1012-1066 N KENTUCKY AVE,Atlantic City,NJ,39.37133962,-74.43871998,RES3E,3001,,NaN,ME,1969,0,3301,2,1,4734.340502,4734.340502,3505,NO,42.41,50.59,3,8.59,6106,114.292981,123.936577,133.717732,139.994262,I,Above,Gable,0,NaN,Wood,46.49979534,0,0,,,,1,1,,0.03,nav,1,1969,2,, -138,NJBF000068992,125 S DR MARTIN LUTHER K,Atlantic City,NJ,39.35828537,-74.42987958,COM1,3003,101,NaN,ME,1969,0,3401,2,1,28549.40628,28549.40628,3507,NO,36.22,44.66,1,2.11,6106,114.638842,124.23548,134.034592,140.32021,I,Above,Flat,0,NaN,Wood,40.43815579,0,0,,,,1,1,,0.03,nav,1,1969,2,, -139,NJBF000071982,1421 N ARKANSAS AVE,Atlantic City,NJ,39.37219469,-74.44694746,RES1,3001,,17,NE,1900,1900,3102,2,1,1124.751642,1124.751642,3505,NO,26.65,36.51,3,5.2,6106,114.105355,123.777602,133.54414,139.847647,I,Above,Gable,0,5701,Wood,31.58021399,0,0,,,,1,1,,0.03,nav,1,1900,2,, -140,NJBF000072623,1514 N OHIO AVE,Atlantic City,NJ,39.374313,-74.44749,RES1,3001,,17,NE,1995,1995,3102,2,1,923.0776118,923.0776118,3505,NO,40.48,46.64,3,5.27,6106,114.069488,123.745329,133.510114,139.806886,I,Above,Gable,0,5701,Wood,43.55946562,0,0,,,,1,1,,0.03,nav,1,1995,2,, -141,NJBF000067788,2919 ATLANTIC AVE,Atlantic City,NJ,39.35450865,-74.44774581,COM1,3003,560,NaN,ME,1969,0,3401,2,1,19909.52515,19909.52515,3507,YES,33.31,39.15,1,0.73,6106,114.299444,123.951251,133.720255,140.097992,I,Above,Flat,0,NaN,Wood,36.22682351,0,0,,,,1,1,,0.03,nav,1,1969,2,, -142,NJBF000067256,301 N ANNAPOLIS AVE,Atlantic City,NJ,39.35278208,-74.46172096,RES1,3001,,17,NE,1900,1900,3102,1,1,2714.72763,2714.72763,3505,NO,15.02,27.29,3,0.03,6106,114.015956,123.717417,133.46543,139.90205,I,Above,Gable,0,5701,Wood,21.15696754,0,0,,,,1,1,,0.03,nav,1,1900,1,, -143,NJBF000072184,457 N CONNECTICUT AVE,Atlantic City,NJ,39.37281658,-74.42224755,RES1,3001,,45,NE,1900,1900,3102,2,2,1403.595082,1403.595082,3505,YES,41.93,49.42,3,8.84,6106,114.628926,124.222552,134.033923,140.235381,I,Above,Hip,0,5701,Wood,45.67635197,0,0,,,,1,1,,0.03,nav,1,1900,2,, -144,NJBF000066869,136 N WINDSOR AVE,Atlantic City,NJ,39.35107768,-74.46145806,RES3A,3001,,45,NE,1900,1900,3301,2,2,798.1539234,798.1539234,3505,NO,35.1,48.97,3,4.71,6106,114.043218,123.740582,133.4891,139.932548,I,Above,Flat,0,5701,Wood,42.03639366,0,0,,,,1,1,,0.03,nav,1,1900,2,, -145,NJBF000068894,2901 SUNSET AVE,Atlantic City,NJ,39.35796091,-74.44953661,RES3A,3001,,17,NE,1925,1925,3301,2,1,1114.722612,1114.722612,3507,NO,37.09,51.49,1,-0.79,6106,114.217819,123.881883,133.647731,140.018737,I,Above,Gable,0,5701,Wood,44.29084608,0,0,,,,1,1,,0.03,nav,1,1925,2,, -146,NJBF000072420,607 SEWELL AVE,Atlantic City,NJ,39.37359362,-74.42341435,RES1,3001,,17,NE,1900,1900,3102,2,1,1210.640694,1210.640694,3505,NO,27.59,37.47,3,5.72,6106,114.595106,124.19305,134.001968,140.206084,I,Above,Flat,0,5701,Wood,32.52745329,0,0,,,,1,1,,0.03,nav,1,1900,2,, -147,NJBF000068331,3915 FILBERT AVE,Atlantic City,NJ,39.35639292,-74.46209116,RES1,3001,,17,NE,1985,1985,3101,2,1,1262.212737,1262.212737,3505,NO,29.26,39.72,3,6,6106,113.962871,123.671787,133.418788,139.840088,I,Above,Gable,0,5701,Wood,34.49000203,0,0,,,,1,1,,0.03,nav,1,1985,2,, -148,NJBF000068390,2720 ARCTIC AVE,Atlantic City,NJ,39.35659584,-74.44618353,COM1,3003,,17,ME,1900,1900,3401,2,1,801.2858077,801.2858077,3507,NO,38.26,43.62,1,1.35,6106,114.307502,123.95722,133.728596,140.091835,I,Above,Gable,0,NaN,Wood,40.93899632,0,0,,,,1,1,,0.03,nav,1,1900,2,, -149,NJBF000066524,4221 WINCHESTER AVE,Atlantic City,NJ,39.34998557,-74.46215418,RES3A,3001,,45,NE,1900,1900,3301,2,2,1697.348099,1697.348099,3505,NO,24.21,31.45,3,-0.1,6106,114.041833,123.739872,133.487459,139.938173,I,Above,Hip,0,5701,Wood,27.82789073,0,0,,,,1,1,,0.03,nav,1,1900,2,, -150,NJBF000065720,1 N BARTRAM AVE,Atlantic City,NJ,39.34791284,-74.46267903,RES3A,3001,,18,NE,1900,1900,3301,2,1,1838.192496,1838.192496,3505,NO,20.51,32.56,3,-2.04,6106,114.056851,123.752912,133.499803,139.961635,I,Above,Hip,0,5701,Wood,26.53526503,0,0,,,,1,1,,0.03,nav,1,1900,2,, -151,NJBF000067532,112 S TEXAS AVE,Atlantic City,NJ,39.35374935,-74.44195231,RES3A,3004,,45,NE,1951,1951,3301,2,2,1190.423227,1190.423227,3505,NO,30.12,41.29,3,5.53,6106,114.434654,124.064327,133.842736,140.198904,I,Above,Hip,0,5701,Wood,35.70291661,0,0,,,,1,1,,0.03,nav,1,1951,2,, -152,NJBF000070221,2015 BLAINE AVE,Atlantic City,NJ,39.36629509,-74.44132086,RES3B,3001,,45,ME,1900,1900,3301,2,4,1056.58315,1056.58315,3505,YES,34.69,41.05,3,6.32,6106,114.295754,123.94244,133.720408,140.026482,I,Above,Hip,0,5701,Wood,37.87017809,0,0,,,,1,1,,0.03,nav,1,1900,2,, -153,NJBF000070649,1724 LINCOLN AVE,Atlantic City,NJ,39.3679117,-74.43763513,RES1,3001,,17,NE,1963,1963,3102,1,1,1855.949638,1855.949638,3505,NO,19.13,25.17,3,5.6,6106,114.356292,123.992514,133.776538,140.061713,I,Above,Gable,0,5701,Wood,22.14931189,0,0,,,,1,1,,0.03,nav,1,1963,1,, -154,NJBF000072165,745 SEWELL AVE,Atlantic City,NJ,39.372762,-74.425421,RES1,3001,,17,NE,1900,1900,3102,2,1,1041.081102,1041.081102,3505,NO,29.74,44.35,3,4.17,6106,114.561888,124.164922,133.970204,140.186093,I,Above,Gable,0,5701,Wood,37.04239193,0,0,,,,1,1,,0.03,nav,1,1900,2,, -155,NJBF000070114,602 N MICHIGAN AVE,Atlantic City,NJ,39.36588118,-74.4404332,RES3B,3001,,17,ME,1925,1925,3301,3,1,1152.751649,1152.751649,3505,YES,43.79,53.66,3,0.06,6106,114.319845,123.962988,133.742585,140.04673,I,Above,Hip,0,NaN,Wood,48.72502552,0,0,,,,1,1,,0.03,nav,1,1925,3,, -156,NJBF000069946,407 N OHIO AVE,Atlantic City,NJ,39.36514647,-74.43790068,RES3B,3001,,17,ME,1900,1900,3301,2,1,953.5109226,953.5109226,3505,NO,35.08,49.68,3,3.9,6106,114.38324,124.016875,133.801034,140.097669,I,Above,Hip,0,NaN,Wood,42.37625205,0,0,,,,1,1,,0.03,nav,1,1900,2,, -157,NJBF000072164,712 SEWELL AVE,Atlantic City,NJ,39.37276139,-74.42454363,RES1,3001,,27,NE,1900,1900,3102,2,2,2185.12929,2185.12929,3505,YES,28.68,42.76,3,4.28,6106,114.580619,124.181014,133.987974,140.199967,I,Above,Flat,0,5701,Wood,35.72256404,0,0,,,,1,1,,0.03,nav,1,1900,2,, -158,NJBF000072071,,Atlantic City,NJ,39.37249911,-74.42565464,RES1,3001,,NaN,NE,2007,0,3102,2,1,2990.350868,2990.350868,3505,NO,38.14,49.08,3,-0.09,6106,114.559931,124.16338,133.968284,140.186111,I,Above,Hip,0,5701,Wood,43.61173694,0,0,,,,1,1,,0.03,nav,1,2007,2,, -159,NJBF000072708,,Atlantic City,NJ,39.37461783,-74.42387887,RES1,3001,,NaN,NE,1969,0,3102,2,1,1103.037624,1103.037624,3505,NO,45.34,52.96,3,8.72,6106,114.573421,124.173835,133.981572,140.184299,I,Above,Gable,0,5701,Wood,49.14900887,0,0,,,,1,1,,0.03,nav,1,1969,2,, -160,NJBF000065845,53 N ABERDEEN PL,Atlantic City,NJ,39.34826339,-74.46438583,RES3A,3001,,18,NE,1900,1900,3301,2,1,1863.81967,1863.81967,3505,NO,44.14,58.66,3,6.23,6106,114.014918,123.718407,133.46294,139.928941,I,Above,Hip,0,5701,Wood,51.40071018,0,0,,,,1,1,,0.03,nav,1,1900,2,, -161,NJBF000070324,3 S METROPOLITAN AVE,Atlantic City,NJ,39.366716,-74.4158625,RES3D,3004,,33,E,1900,1910,3303,2,1,515.027385,515.027385,3505,YES,40.26,48.44,3,4.88,6106,114.836321,124.403255,134.228152,140.419057,I,Above,Flat,0,NaN,Wood,44.35117475,0,0,,,,1,1,,0.03,nav,1,1900,2,, -162,NJBF000070338,1 S METROPOLITAN AVE,Atlantic City,NJ,39.36675139,-74.41588858,RES3D,3004,,33,E,1900,1900,3303,2,1,522.3925656,522.3925656,3505,YES,27.48,37.17,3,4.22,6106,114.835353,124.402414,134.227256,140.41818,I,Above,Flat,0,NaN,Wood,32.32421156,0,0,,,,1,1,,0.03,nav,1,1900,2,, -163,NJBF000067522,3827 SOUTH BLVD,Atlantic City,NJ,39.35372843,-74.45899967,RES1,3001,,17,NE,1912,1912,3102,1,1,1543.569198,1543.569198,3505,NO,18.25,25.96,3,7.43,6106,114.063696,123.756269,133.508126,139.931418,I,Above,Hip,0,5701,Wood,22.10227451,0,0,,,,1,1,,0.03,nav,1,1912,1,, -164,NJBF000072622,557 N NEW JERSEY AVE,Atlantic City,NJ,39.37431016,-74.42489505,IND3,3001,511,NaN,E,1969,0,3401,3,1,1208.937377,1208.937377,3507,NO,47.01,57.38,1,0.3,6106,114.555288,124.158404,133.964271,140.17254,I,Above,Gable,0,NaN,Wood,52.19750838,0,0,,,,1,1,,0.03,nav,1,1969,3,, -165,NJBF000071122,1048 MONROE AVE,Atlantic City,NJ,39.36949454,-74.44203123,RES3A,3001,,17,NE,1958,1958,3301,1,1,1409.055786,1409.055786,3505,NO,19.12,27.51,3,6.11,6106,114.242894,123.895671,133.671564,139.967954,I,Above,Hip,0,5701,Wood,23.31695887,0,0,,,,1,1,,0.03,nav,1,1958,1,, -166,NJBF000067861,2519 PACIFIC AVE,Atlantic City,NJ,39.35481338,-74.4418456,RES3A,3004,100,NaN,NE,1969,0,3301,3,1,1273.630688,1273.630688,3505,YES,53.33,63.05,3,-2.74,6106,114.423678,124.054892,133.833462,140.185268,I,Above,Gable,0,5701,Wood,58.18981085,0,0,,,,1,1,,0.03,nav,1,1969,3,, -167,NJBF000066495,27 TRENTON TERR,Atlantic City,NJ,39.34990576,-74.45572602,RES3A,3001,,45,NE,1920,1920,3301,2,2,2204.675112,2204.675112,3504,YES,29.24,35.18,-4,0,6106,114.183501,123.856567,133.613435,140.041258,I,Above,Flat,0,5701,Wood,32.2090212,0,0,,,,1,1,,0.03,nav,1,1920,2,, -168,NJBF000068996,104 N FLORIDA AVE,Atlantic City,NJ,39.3582907,-74.44325188,RES3B,3001,,45,ME,1900,1900,3301,3,2,658.5855177,658.5855177,3505,YES,58.4,71.03,3,2.08,6106,114.350266,123.992311,133.768343,140.113035,I,Above,Gable,0,NaN,Wood,64.71328329,0,0,,,,1,1,,0.03,nav,1,1900,3,, -169,NJBF000071091,1049 N MICHIGAN AVE,Atlantic City,NJ,39.36937249,-74.44230066,RES3A,3001,,17,NE,1958,1958,3301,1,1,1884.42707,1884.42707,3505,NO,14.5,23.64,3,3.46,6106,114.238488,123.892052,133.667512,139.965408,I,Above,Gable,0,5701,Wood,19.06718397,0,0,,,,1,1,,0.03,nav,1,1958,1,, -170,NJBF000068981,2507 ARCTIC AVE RR,Atlantic City,NJ,39.3582462,-74.44361911,RES3B,3001,100,NaN,ME,1969,0,3301,1,1,3833.76589,3833.76589,3505,NO,15.21,20.51,3,-1.54,6106,114.342863,123.986131,133.761559,140.107936,I,Above,Flat,0,NaN,Wood,17.86240512,0,0,,,,1,1,,0.03,nav,1,1969,1,, -171,NJBF000069007,106 N FLORIDA AVE,Atlantic City,NJ,39.35834562,-74.44331905,RES3B,3001,,45,ME,1900,1900,3301,3,2,1445.433898,1445.433898,3505,YES,38.78,44.05,3,4.73,6106,114.34814,123.99051,133.766425,140.111182,I,Above,Gable,0,NaN,Wood,41.41374029,0,0,,,,1,1,,0.03,nav,1,1900,3,, -172,NJBF000072024,1801 N MISSISSIPPI AVE,Atlantic City,NJ,39.37232314,-74.45433949,RES3C,3001,,NaN,ME,1969,0,3301,2,1,3513.854062,3513.854062,3505,NO,41.41,56.06,3,7.54,6106,113.943379,123.641858,133.39602,139.723085,I,Above,Gable,0,NaN,Wood,48.73710793,0,0,,,,1,1,,0.03,nav,1,1969,2,, -173,NJBF000071990,1801 N MISSISSIPPI AVE,Atlantic City,NJ,39.37220603,-74.45394119,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3298.710304,3298.710304,3505,NO,24.76,37.94,3,6.53,6106,113.953372,123.650326,133.405186,139.731532,I,Above,Gable,0,NaN,Wood,31.35135573,0,0,,,,1,1,,0.03,nav,1,1969,1,, -174,NJBF000071991,1800 N MISSOURI AVE,Atlantic City,NJ,39.37220713,-74.45333844,RES3C,3001,,NaN,ME,1969,0,3301,1,1,3200.389209,3200.389209,3505,NO,13.17,27.16,3,0.19,6106,113.966479,123.661266,133.417113,139.741591,I,Above,Gable,0,NaN,Wood,20.16162523,0,0,,,,1,1,,0.03,nav,1,1969,1,, -175,NJBF000072069,1800 N MISSOURI AVE,Atlantic City,NJ,39.37249725,-74.45374757,RES3C,3001,,NaN,ME,1969,0,3301,1,1,5050.338299,5050.338299,3505,NO,16.8,29.78,3,-0.54,6106,113.954258,123.650745,133.4058,139.730315,I,Above,Flat,0,NaN,Wood,23.28845475,0,0,,,,1,1,,0.03,nav,1,1969,1,, -176,NJBF000072157,1800 N MISSOURI AVE,Atlantic City,NJ,39.37274523,-74.45419855,RES3C,3001,,NaN,ME,1969,0,3301,2,1,1858.960468,1858.960468,3505,NO,29.96,36.78,3,-2.05,6106,113.941627,123.639925,133.394138,139.718977,I,Above,Flat,0,NaN,Wood,33.36780108,0,0,,,,1,1,,0.03,nav,1,1969,2,, -177,NJBF000068502,3803 FILBERT AVE,Atlantic City,NJ,39.35695212,-74.46107416,RES1,3001,,27,NE,1900,1900,3101,1,2,1664.183721,1664.183721,3505,NO,19.24,28.74,3,7.02,6106,113.978272,123.684117,133.432499,139.848101,I,Above,Gable,0,5701,Wood,23.9907506,0,0,,,,1,1,,0.03,nav,1,1900,1,, -178,NJBF000071013,1800 MCKINLEY AVE,Atlantic City,NJ,39.36914299,-74.43944017,RES1,3001,,15,NE,1950,1950,3102,1,1,1326.544357,1326.544357,3505,NO,24.33,32.95,3,7.93,6106,114.302951,123.946611,133.727133,140.01486,I,Above,Hip,0,5701,Wood,28.64276153,0,0,,,,1,1,,0.03,nav,1,1950,1,, -179,NJBF000067692,445 N RICHMOND AVE,Atlantic City,NJ,39.35418324,-74.46416033,RES1,3001,,17,NE,1957,1957,3102,1,1,1864.183812,1864.183812,3505,NO,20.47,25.69,3,5.58,6106,113.944912,123.658331,133.402723,139.840521,I,Above,Gable,0,5701,Wood,23.07723287,0,0,,,,1,1,,0.03,nav,1,1957,1,, -180,NJBF000065072,102 S BARTRAM AVE,Atlantic City,NJ,39.34606569,-74.46167512,RES3A,3001,,45,NE,1920,1920,3301,2,2,1527.29062,1527.29062,3504,NO,35.41,47.08,-4,0,6106,114.102698,123.791041,133.539284,140.005703,I,Above,Flat,0,5701,Wood,41.2443147,0,0,,,,1,1,,0.03,nav,1,1920,2,, -181,NJBF000065536,46 N MONTGOMERY AVE,Atlantic City,NJ,39.34737665,-74.46649104,RES3A,3001,,18,NE,1900,1900,3301,2,1,1288.076987,1288.076987,3505,YES,38.46,47.28,3,5.24,6106,113.980116,123.690206,133.431893,139.908799,I,Above,Hip,0,5701,Wood,42.86732768,0,0,,,,1,1,,0.03,nav,1,1900,2,, -182,NJBF000067623,321 N ELBERON AVE,Atlantic City,NJ,39.35400372,-74.46039539,RES1,3001,,16,NE,1900,1900,3102,1,1,956.0321482,956.0321482,3505,NO,21.76,28.96,3,6.1,6106,114.029703,123.72813,133.477924,139.904675,I,Above,Flat,0,5701,Wood,25.35763058,0,0,,,,1,1,,0.03,nav,1,1900,1,, -183,NJBF000067246,42 N HARTFORD AVE,Atlantic City,NJ,39.35272949,-74.45460033,RES3B,3001,,17,E,1915,1915,3303,2,1,1400.793799,1400.793799,3507,YES,29.03,38.87,1,1.82,6106,114.172395,123.846448,133.60492,140.016702,I,Above,Flat,0,NaN,Wood,33.95037875,0,0,,,,1,1,,0.03,nav,1,1915,2,, -184,NJBF000068503,2715 ARCTIC AVE,Atlantic City,NJ,39.3569538,-74.44627504,RES3A,3001,737,NaN,NE,1969,0,3301,1,1,5858.693372,5858.693372,3505,NO,18.56,32.06,3,5.42,6106,114.301111,123.951747,133.722945,140.085152,I,Above,Flat,0,5701,Wood,25.30995546,0,0,,,,1,1,,0.03,nav,1,1969,1,, -185,NJBF000070548,349 N OCEAN AVE,Atlantic City,NJ,39.36754266,-74.43078057,RES3C,3003,,33,E,1900,1900,3305,2,1,3380.022254,3380.022254,3507,YES,21.19,32.81,1,-0.3,6106,114.508066,124.121509,133.91796,140.175597,I,Above,Gable,0,NaN,Wood,26.99992099,0,0,,,,2,2,,0.03,nav,1,1900,2,, -186,NJBF000072121,420 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37264879,-74.42147861,RES1,3001,,45,NE,1900,1900,3102,1,2,1655.63743,1655.63743,3505,NO,15.8,29.51,3,-1.8,6106,114.647249,124.238417,134.051322,140.249828,I,Above,Flat,0,5701,Wood,22.6507185,0,0,,,,1,1,,0.03,nav,1,1900,1,, -187,NJBF000066796,117 N LACLEDE PL,Atlantic City,NJ,39.3508071,-74.46200817,RES3A,3001,,17,NE,1910,1910,3301,1,1,1168.230924,1168.230924,3505,NO,16.43,28.93,3,0.02,6106,114.034599,123.733609,133.481363,139.927879,I,Above,Hip,0,5701,Wood,22.67721739,0,0,,,,1,1,,0.03,nav,1,1910,1,, -188,NJBF000068124,23 N STENTON PL #A,Atlantic City,NJ,39.35572958,-74.4467046,RES3B,3001,,17,ME,1900,1900,3301,3,1,992.6761428,992.6761428,3504,YES,38.79,47.51,-4,0,6106,114.306896,123.957036,133.727635,140.096369,I,Above,Hip,0,NaN,Wood,43.14980704,0,0,,,,1,1,,0.03,nav,1,1900,3,, -189,NJBF000072771,701 N MARYLAND AVE,Atlantic City,NJ,39.37486869,-74.42845396,IND3,3001,511,NaN,E,1969,0,3401,1,1,1681.679039,1681.679039,3507,NO,16.77,22.82,1,1.38,6106,114.472867,124.087294,133.886206,140.107945,I,Above,Flat,0,NaN,Wood,19.79213713,0,0,,,,1,1,,0.03,nav,1,1969,1,, -190,NJBF000068689,14 N GEORGIA AVE RR #B,Atlantic City,NJ,39.35742027,-74.44138176,RES3B,3001,,45,ME,1900,1900,3301,3,2,745.4580522,745.4580522,3505,YES,57.92,65.11,3,5.32,6106,114.401465,124.035526,133.814747,140.154893,I,Above,Flat,0,NaN,Wood,61.51113628,0,0,,,,1,1,,0.03,nav,1,1900,3,, -191,NJBF000071633,512 DREXEL AVE,Atlantic City,NJ,39.371132,-74.4204805,RES1,3001,,27,NE,1900,1900,3102,2,2,1700.349124,1700.349124,3505,YES,19.97,25.24,3,-1.29,6106,114.686147,124.272561,134.087747,140.286645,I,Above,Hip,0,5701,Wood,22.60576997,0,0,,,,1,1,,0.03,nav,1,1900,2,, -192,NJBF000069953,18 N MARYLAND AVE,Atlantic City,NJ,39.36518065,-74.42235949,COM1,3003,,NaN,ME,1900,1900,3401,2,1,2976.252704,2976.252704,3507,NO,39.25,53.66,1,2.64,6106,114.716347,124.300276,134.112799,140.340059,I,Above,Flat,0,NaN,Wood,46.45476198,0,0,,,,1,1,,0.03,nav,1,1900,2,, -193,NJBF000072110,1625 BEACH AVE,Atlantic City,NJ,39.37261269,-74.45061188,RES1,3001,,17,NE,1985,1985,3102,2,1,1024.517872,1024.517872,3505,NO,30.82,39.49,3,2.7,6106,114.021093,123.706502,133.466696,139.780799,I,Above,Gable,0,5701,Wood,35.15521041,0,0,,,,1,1,,0.03,nav,1,1985,2,, -194,NJBF000069888,1953 BACHARACH BLVD,Atlantic City,NJ,39.36478494,-74.43924054,IND2,3001,959,NaN,ME,1969,0,3401,1,1,6255.550053,6255.550053,3507,NO,15.91,28.24,1,0.18,6106,114.35861,123.996288,133.77818,140.081681,I,Above,Flat,0,NaN,Wood,22.07200834,0,0,,,,1,1,,0.03,nav,1,1969,1,, -195,NJBF000070588,518 GRAMMERCY PL,Atlantic City,NJ,39.3677008,-74.41858052,RES3D,3004,,27,E,2008,2008,3303,3,2,1698.418553,1698.418553,3505,NO,43.75,52.53,3,1.07,6106,114.766871,124.343154,134.162623,140.363656,I,Above,Flat,0,NaN,Wood,48.13783376,0,0,,,,1,1,,0.03,nav,1,2008,3,, -196,NJBF000069876,1300 BALTIC AVE,Atlantic City,NJ,39.36473592,-74.42954685,RES3D,3004,29,NaN,E,1969,0,3303,3,1,7458.719202,7458.719202,3505,NO,44.27,51.41,3,4.43,6106,114.567863,124.173562,133.972747,140.234761,I,Above,Flat,0,NaN,Wood,47.84030655,0,0,,,,1,1,,0.03,nav,1,1969,3,, -197,NJBF000069933,1300 BALTIC AVE,Atlantic City,NJ,39.365063,-74.42874,RES3D,3004,29,NaN,E,1969,0,3303,3,1,7431.309388,7431.309388,3505,NO,46.57,58.76,3,0.39,6106,114.581266,124.18486,133.985479,140.242723,I,Above,Flat,0,NaN,Wood,52.66857555,0,0,,,,1,1,,0.03,nav,1,1969,3,, -198,NJBF000069996,32 BORN TERR,Atlantic City,NJ,39.36538577,-74.42295167,COM1,3003,,33,ME,1910,1910,3401,2,1,1917.797393,1917.797393,3507,YES,27.15,39.22,1,-0.17,6106,114.701242,124.28728,134.098656,140.328053,I,Above,Flat,0,NaN,Wood,33.18278106,0,0,,,,1,1,,0.03,nav,1,1910,2,, -199,NJBF000067237,3001 PACIFIC AVE,Atlantic City,NJ,39.35269649,-74.447303,COM1,3003,280,NaN,ME,1969,0,3401,2,1,6535.491012,6535.491012,3507,NO,38.46,48.94,1,2.77,6106,114.331754,123.978696,133.748459,140.131405,I,Above,Flat,0,NaN,Wood,43.69868416,0,0,,,,1,1,,0.03,nav,1,1969,2,, -200,NJBF000071047,716 GREEN ST,Atlantic City,NJ,39.36922395,-74.43704968,RES1,3001,,16,NE,1900,1900,3101,1,1,1171.794452,1171.794452,3505,NO,14.55,28.02,3,-0.21,6106,114.353539,123.98935,133.774082,140.051967,I,Above,Gable,0,5701,Wood,21.28643877,0,0,,,,1,1,,0.03,nav,1,1900,1,, -201,NJBF000072015,436 N CONNECTICUT AVE,Atlantic City,NJ,39.37229314,-74.4223875,RES1,3001,,17,NE,1930,1930,3102,2,1,1363.501655,1363.501655,3505,NO,27.16,37.24,3,-2.93,6106,114.632033,124.225465,134.036695,140.240536,I,Above,Hip,0,5701,Wood,32.19937579,0,0,,,,1,1,,0.03,nav,1,1930,2,, -202,NJBF000069992,,Atlantic City,NJ,39.36535609,-74.43955804,RES3B,3001,,NaN,ME,1969,0,3301,2,1,848.7948927,848.7948927,3505,NO,41.18,50.33,3,7.65,6106,114.344974,123.984475,133.765702,140.068329,I,Above,Flat,0,NaN,Wood,45.75372796,0,0,,,,1,1,,0.03,nav,1,1969,2,, -203,NJBF000066631,111 N RALEIGH AVE,Atlantic City,NJ,39.35030548,-74.46252867,RES3A,3001,,27,NE,1922,1922,3301,2,2,1319.849179,1319.849179,3505,YES,41.73,56.61,3,8.16,6106,114.029553,123.729664,133.47671,139.927238,I,Above,Flat,0,5701,Wood,49.17119963,0,0,,,,1,1,,0.03,nav,1,1922,2,, -204,NJBF000070623,600 BALTIC AVE,Atlantic City,NJ,39.36781752,-74.42010047,RES3D,3004,,NaN,E,1969,0,3303,4,1,3356.076699,3356.076699,3505,NO,75.36,83.19,3,3.27,6106,114.733158,124.314088,134.130597,140.338525,I,Above,Gable,0,NaN,Wood,79.27551977,0,0,,,,1,1,,0.03,nav,1,1969,4,, -205,NJBF000070585,111 N NEW JERSEY AVE,Atlantic City,NJ,39.36769058,-74.42043924,RES3D,3004,,33,E,1910,1910,3303,3,1,1176.714556,1176.714556,3505,NO,56.83,66.36,3,7.34,6106,114.72744,124.309201,134.125074,140.335026,I,Above,Flat,0,NaN,Wood,61.59424131,0,0,,,,1,1,,0.03,nav,1,1910,3,, -206,NJBF000069660,1501 ATLANTIC AVE,Atlantic City,NJ,39.36256122,-74.43079307,COM1,3003,732,NaN,ME,1969,0,3401,2,1,60007.12926,60007.12926,3507,YES,39.7,47.87,1,1.06,6106,114.567214,124.173726,133.970916,140.246103,I,Above,Flat,0,NaN,Wood,43.78570002,0,0,,,,1,1,,0.03,nav,1,1969,2,, -207,NJBF000069564,1501 ATLANTIC AVE,Atlantic City,NJ,39.36165131,-74.43059833,COM1,3003,732,NaN,ME,1969,0,3401,3,1,24432.83891,24432.83891,3507,YES,43.34,56.08,1,2.06,6106,114.582393,124.186875,133.984507,140.261964,I,Above,Flat,0,NaN,Wood,49.7113164,0,0,,,,1,1,,0.03,nav,1,1969,3,, -208,NJBF000068618,20 N FLORIDA AVE,Atlantic City,NJ,39.35725069,-74.44262118,RES3B,3001,,45,ME,1900,1900,3301,4,2,1624.692284,1624.692284,3505,YES,44.61,58.53,3,-2.52,6106,114.376713,124.014841,133.792009,140.138025,I,Above,Hip,0,NaN,Wood,51.56957256,0,0,,,,1,1,,0.03,nav,1,1900,4,, -209,NJBF000072939,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37575885,-74.42054452,COM8,3001,,NaN,ME,1969,0,3401,2,1,1516.988357,1516.988357,3505,NO,28.06,36.54,3,-1.13,6106,114.631332,124.223193,134.037103,140.221048,I,Above,Gable,0,NaN,Wood,32.29807397,0,0,,,,1,1,,0.03,nav,1,1969,2,, -210,NJBF000072913,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37561082,-74.42062772,COM8,3001,,NaN,ME,1969,0,3401,2,1,632.1218669,632.1218669,3505,NO,22.41,32.07,3,0.61,6106,114.63126,124.223207,134.036996,140.221807,I,Above,Gable,0,NaN,Wood,27.24297993,0,0,,,,1,1,,0.03,nav,1,1969,2,, -211,NJBF000073010,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37645583,-74.41996012,COM8,3001,,NaN,ME,1969,0,3401,2,1,977.2963641,977.2963641,3505,NO,29.57,41.71,3,-0.87,6106,114.635807,124.226701,134.04156,140.220551,I,Above,Gable,0,NaN,Wood,35.63743049,0,0,,,,1,1,,0.03,nav,1,1969,2,, -212,NJBF000073066,800 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37714571,-74.42018126,COM8,3001,,NaN,ME,1969,0,3401,1,1,2767.387232,2767.387232,3505,NO,14.55,28.77,3,1.31,6106,114.623255,124.215464,134.029676,140.207393,I,Above,Flat,0,NaN,Wood,21.65719884,0,0,,,,1,1,,0.03,nav,1,1969,1,, -213,NJBF000066304,41 S ELBERON AVE,Atlantic City,NJ,39.34944121,-74.45677245,RES3A,3001,,17,NE,1915,1915,3301,2,1,1521.4035,1521.4035,3504,NO,29.69,39.39,-4,0,6106,114.166573,123.842731,133.598058,140.031811,I,Above,Hip,0,5701,Wood,34.53635771,0,0,,,,1,1,,0.03,nav,1,1915,2,, -214,NJBF000071066,133 N MASSACHUSETTS AVE,Atlantic City,NJ,39.36927811,-74.41825644,RES3D,3004,,17,E,2005,2005,3303,2,1,1039.644341,1039.644341,3505,NO,38.17,44.57,3,6.9,6106,114.755173,124.332684,134.15255,140.346966,I,Above,Flat,0,NaN,Wood,41.37274737,0,0,,,,1,1,,0.03,nav,1,2005,2,, -215,NJBF000064867,38 S MONTGOMERY AVE,Atlantic City,NJ,39.34552511,-74.46505334,RES3B,3001,,17,ME,1930,1930,3301,2,1,1715.285627,1715.285627,3504,NO,23.03,33.67,-4,0,6106,114.035674,123.736215,133.479806,139.960578,I,Above,Gable,0,NaN,Wood,28.34816108,0,0,,,,1,1,,0.03,nav,1,1930,2,, -216,NJBF000070305,300 ATLANTIC AVE,Atlantic City,NJ,39.36663045,-74.41493677,RES3D,3004,29,NaN,E,1969,1984,3303,19,1,2890.203174,2890.203174,3505,NO,215.03,227.51,3,4.04,6106,114.856998,124.421135,134.247862,140.434454,I,Above,Flat,0,NaN,Wood,221.2731633,0,0,,,,1,1,,0.03,nav,1,1969,19,, -217,NJBF000070271,300 ATLANTIC AVE,Atlantic City,NJ,39.36650689,-74.41465704,RES3D,3004,29,NaN,E,1969,1984,3303,19,1,5975.451348,5975.451348,3505,NO,287.65,299.3,3,-2.7,6106,114.864402,124.42755,134.254841,140.440423,I,Above,Flat,0,NaN,Wood,293.4729792,0,0,,,,1,1,,0.03,nav,1,1969,19,, -218,NJBF000070377,300 ATLANTIC AVE,Atlantic City,NJ,39.36688788,-74.41411359,RES3D,3004,29,NaN,E,1969,1984,3303,19,1,5437.231991,5437.231991,3505,NO,220.96,227.58,3,7.9,6106,114.871384,124.433552,134.261879,140.44358,I,Above,Flat,0,NaN,Wood,224.2718321,0,0,,,,1,1,,0.03,nav,1,1969,19,, -219,NJBF000070466,300 ATLANTIC AVE,Atlantic City,NJ,39.36723738,-74.41448331,RES3E,3003,29,NaN,E,1969,1984,3305,19,1,42414.01957,42414.01957,3507,NO,207.59,219.12,1,2.24,6106,114.859411,124.423153,134.250714,140.433172,I,Above,Flat,0,NaN,Wood,213.3582675,0,0,,,,2,2,,0.03,nav,1,1969,19,, -220,NJBF000069538,1 S NEW YORK AVE,Atlantic City,NJ,39.36141009,-74.42901993,COM1,3003,101,NaN,ME,1969,0,3401,8,1,6692.80866,6692.80866,3507,YES,129.91,143.79,1,-0.12,6106,114.619187,124.21819,134.018697,140.289745,I,Above,Flat,0,NaN,Wood,136.8489383,0,0,,,,1,1,,0.03,nav,1,1969,8,, -221,NJBF000070308,410 ATLANTIC AVE RR #A,Atlantic City,NJ,39.366639,-74.415652,RES3D,3004,,17,E,1900,1900,3303,2,1,1195.623234,1195.623234,3505,YES,40.86,51.97,3,6.78,6106,114.841717,124.407926,134.233246,140.423349,I,Above,Flat,0,NaN,Wood,46.41219191,0,0,,,,1,1,,0.03,nav,1,1900,2,, -222,NJBF000067411,4202 PORTER AVE,Atlantic City,NJ,39.353381,-74.4630245,RES1,3001,,17,NE,1939,1939,3102,2,1,866.711521,866.711521,3505,NO,29.98,44.37,3,-0.3,6106,113.979847,123.687447,133.433542,139.871587,I,Above,Hip,0,5701,Wood,37.17984433,0,0,,,,1,1,,0.03,nav,1,1939,2,, -223,NJBF000068995,206 N IOWA AVE,Atlantic City,NJ,39.35829011,-74.44811134,RES3A,3001,,NaN,NE,1969,0,3301,2,1,1405.936425,1405.936425,3505,NO,33.86,48.38,3,5.57,6106,114.244805,123.904203,133.672293,140.036474,I,Above,Flat,0,5701,Wood,41.12027942,0,0,,,,1,1,,0.03,nav,1,1969,2,, -224,NJBF000067002,4309 SOUTH BLVD,Atlantic City,NJ,39.35165463,-74.46316602,RES1,3001,,16,NE,1900,1900,3102,1,1,1061.782729,1061.782729,3505,NO,24.58,38.56,3,5.7,6106,113.998471,123.703575,133.449639,139.896078,I,Above,Flat,0,5701,Wood,31.56937307,0,0,,,,1,1,,0.03,nav,1,1900,1,, -225,NJBF000070262,1930 BLAINE AVE,Atlantic City,NJ,39.36647494,-74.43998384,RES3B,3001,,16,ME,1900,1900,3301,1,1,1189.135693,1189.135693,3505,NO,17.36,25.56,3,6.63,6106,114.322522,123.964882,133.745124,140.045202,I,Above,Flat,0,NaN,Wood,21.45989942,0,0,,,,1,1,,0.03,nav,1,1900,1,, -226,NJBF000071360,800 N NEW YORK AVE,Atlantic City,NJ,39.37035,-74.4355965,IND3,3003,100,NaN,E,1969,0,3401,1,1,12279.80379,12279.80379,3507,YES,16.13,21.76,1,-0.86,6106,114.371709,124.004014,133.79105,140.058841,I,Above,Flat,0,NaN,Wood,18.94923161,0,0,,,,1,1,,0.03,nav,1,1969,1,, -227,NJBF000067887,448 N DOVER AVE,Atlantic City,NJ,39.35491364,-74.46293168,RES1,3001,,17,NE,1950,1950,3102,2,1,1932.904542,1932.904542,3505,YES,34.86,43.45,3,5.99,6106,113.962751,123.672568,133.418596,139.849279,I,Above,Hip,0,5701,Wood,39.15401297,0,0,,,,1,1,,0.03,nav,1,1950,2,, -228,NJBF000071022,1418 SEWELL AVE,Atlantic City,NJ,39.36916196,-74.43348451,RES3C,3001,,17,ME,1900,1900,3301,1,1,1218.994016,1218.994016,3505,NO,17.45,31.15,3,2.44,6106,114.430977,124.055087,133.846251,140.109662,I,Above,Flat,0,NaN,Wood,24.30077103,0,0,,,,1,1,,0.03,nav,1,1900,1,, -229,NJBF000067866,410 HARBOR RD,Atlantic City,NJ,39.35482894,-74.46211726,RES1,3001,,16,NE,1925,1925,3102,1,1,1255.556795,1255.556795,3505,NO,12.95,21.66,3,-1.22,6106,113.981682,123.688178,133.435385,139.863934,I,Above,Hip,0,5701,Wood,17.30249158,0,0,,,,1,1,,0.03,nav,1,1925,1,, -230,NJBF000068424,2812 DENNY ST,Atlantic City,NJ,39.35671878,-74.44753622,RES3A,3001,,27,NE,1900,1900,3301,2,2,1434.12817,1434.12817,3505,NO,30.18,41.94,3,1.17,6106,114.276612,123.931408,133.700592,140.068779,I,Above,Hip,0,5701,Wood,36.05593508,0,0,,,,1,1,,0.03,nav,1,1900,2,, -231,NJBF000070575,1815 LINCOLN AVE,Atlantic City,NJ,39.36766801,-74.43903859,RES1,3001,,33,NE,1900,1920,3102,2,1,5485.615705,5485.615705,3505,YES,31.77,46.67,3,-2.5,6106,114.328872,123.969493,133.751103,140.042857,I,Above,Flat,0,5701,Wood,39.21898894,0,0,,,,1,1,,0.03,nav,1,1900,2,, -232,NJBF000070500,28 N CONGRESS AVE,Atlantic City,NJ,39.36737398,-74.41817912,RES3D,3004,,17,E,1900,1900,3303,2,1,1986.008346,1986.008346,3505,YES,41.57,56.27,3,3.87,6106,114.779295,124.353933,134.174227,140.374365,I,Above,Gable,0,NaN,Wood,48.91930759,0,0,,,,1,1,,0.03,nav,1,1900,2,, -233,NJBF000071880,403 N CONNECTICUT AVE,Atlantic City,NJ,39.37189783,-74.42163186,RES1,3001,,45,NE,1900,1900,3102,1,2,1514.603687,1514.603687,3505,NO,13.94,27.04,3,-1.62,6106,114.652702,124.243438,134.05622,140.257921,I,Above,Hip,0,5701,Wood,20.49053535,0,0,,,,1,1,,0.03,nav,1,1900,1,, -234,NJBF000071696,449 N MARYLAND AVE,Atlantic City,NJ,39.37132028,-74.42610846,RES1,3001,,17,NE,1900,1900,3102,1,1,1665.38926,1665.38926,3505,NO,12.85,26.46,3,-0.24,6106,114.563922,124.167405,133.971742,140.195624,I,Above,Flat,0,5701,Wood,19.65630347,0,0,,,,1,1,,0.03,nav,1,1900,1,, -235,NJBF000071159,1633 READING AVE,Atlantic City,NJ,39.36962044,-74.43734924,RES1,3001,,16,NE,1900,1900,3101,1,1,1218.524764,1218.524764,3505,NO,21.3,32.55,3,7.43,6106,114.342479,123.97972,133.763815,140.041419,I,Above,Gable,0,5701,Wood,26.92388825,0,0,,,,1,1,,0.03,nav,1,1900,1,, -236,NJBF000070802,1922 MCKINLEY AVE,Atlantic City,NJ,39.36848342,-74.44109567,RES3B,3001,,17,ME,1920,1920,3301,2,1,710.283096,710.283096,3505,YES,36.85,41.85,3,6.17,6106,114.274901,123.923399,133.701204,139.997938,I,Above,Hip,0,5701,Wood,39.35218684,0,0,,,,1,1,,0.03,nav,1,1920,2,, -237,NJBF000067381,111 S CALIFORNIA AVE,Atlantic City,NJ,39.35328613,-74.44256608,RES4,3003,29,NaN,E,1969,1960,3404,3,1,7970.161886,7970.161886,3507,YES,56.99,67.41,1,-0.9,6106,114.427148,124.058146,133.835546,140.196086,I,Above,Flat,0,NaN,Wood,62.19789203,0,0,,,,2,2,,0.03,nav,1,1969,3,, -238,NJBF000065974,4436 WINCHESTER AVE,Atlantic City,NJ,39.34858681,-74.4641386,RES3A,3001,,17,NE,1920,1920,3301,2,1,1764.738205,1764.738205,3505,NO,34.45,45.05,3,0.86,6106,114.016179,123.719329,133.464196,139.927895,I,Above,Hip,0,5701,Wood,39.74949013,0,0,,,,1,1,,0.03,nav,1,1920,2,, -239,NJBF000067775,424 N DOVER AVE,Atlantic City,NJ,39.35447221,-74.46251985,RES1,3001,,17,NE,1900,1900,3102,1,1,810.5224054,810.5224054,3505,NO,21.04,27.37,3,4.66,6106,113.97729,123.684765,133.431443,139.862889,I,Above,Gable,0,5701,Wood,24.20481427,0,0,,,,1,1,,0.03,nav,1,1900,1,, -240,NJBF000065668,26 S RALEIGH AVE,Atlantic City,NJ,39.34776823,-74.4610617,RES3A,3001,,17,NE,1892,1892,3301,2,1,1292.489194,1292.489194,3505,NO,32.12,45.1,3,6.79,6106,114.094146,123.783581,133.532732,139.989507,I,Above,Gable,0,5701,Wood,38.61119447,0,0,,,,1,1,,0.03,nav,1,1892,2,, -241,NJBF000071074,120 N RHODE ISLAND AVE,Atlantic City,NJ,39.36932654,-74.41719436,RES3D,3004,,28,E,2000,2000,3303,2,2,2037.279167,2037.279167,3505,NO,22.13,27.19,3,-2.3,6106,114.777165,124.351663,134.173602,140.362761,I,Above,Flat,0,NaN,Wood,24.66173996,0,1.1,,,,1,1,,0.03,nav,1,2000,2,, -242,NJBF000066437,3801 ATLANTIC AVE,Atlantic City,NJ,39.34975305,-74.45524721,RES3A,3001,,NaN,NE,1969,0,3301,1,1,5216.280251,5216.280251,3504,NO,15.96,28.72,-4,0,6106,114.195909,123.866858,133.624435,140.051045,I,Above,Flat,0,5701,Wood,22.3364237,0,0,,,,1,1,,0.03,nav,1,1969,1,, -243,NJBF000068178,448 N HARRISBURG AVE,Atlantic City,NJ,39.35590267,-74.46124657,RES1,3001,,27,NE,1920,1920,3102,2,2,1296.056252,1296.056252,3505,YES,29.34,39.06,3,1.06,6106,113.987427,123.692291,133.440595,139.861509,I,Above,Flat,0,5701,Wood,34.19817378,0,0,,,,1,1,,0.03,nav,1,1920,2,, -244,NJBF000069264,161 S TENNESSEE AVE,Atlantic City,NJ,39.35942529,-74.42608073,COM1,3001,100,NaN,ME,1969,0,3401,3,30,2136.673546,2136.673546,3507,YES,59,67.87,1,1.7,6106,114.706344,124.292696,134.098664,140.36252,I,Above,Flat,0,NaN,Wood,63.43756702,0,0,,,,1,1,,0.03,nav,1,1969,3,, -245,NJBF000069200,142 S OCEAN AVE,Atlantic City,NJ,39.35914806,-74.42572119,COM1,3001,100,NaN,ME,1969,0,3401,3,1,10826.35775,10826.35775,3507,YES,49.8,55.01,1,-0.69,6106,114.71744,124.302177,134.108811,140.371847,I,Above,Flat,0,NaN,Wood,52.40475382,0,0,,,,1,1,,0.03,nav,1,1969,3,, -246,NJBF000067671,3015 ATLANTIC AVE,Atlantic City,NJ,39.35412276,-74.44864844,COM1,3003,101,NaN,ME,1969,0,3401,3,1,22861.15675,22861.15675,3507,NO,40.7,51.32,1,2.87,6106,114.284643,123.939062,133.706654,140.089559,I,Above,Flat,0,NaN,Wood,46.00928205,0,0,,,,1,1,,0.03,nav,1,1969,3,, -247,NJBF000066283,4020 VENTNOR AVE,Atlantic City,NJ,39.34936083,-74.45869061,COM1,3004,,17,ME,1900,1900,3401,2,1,1516.572153,1516.572153,3507,YES,39.12,50.63,1,0.34,6106,114.125635,123.809011,133.561548,140.002804,I,Above,Hip,0,NaN,Wood,44.87634226,0,0,,,,1,1,,0.03,nav,1,1900,2,, -248,NJBF000070171,509 N OHIO AVE,Atlantic City,NJ,39.36608182,-74.4384997,RES3B,3001,,17,ME,1910,1910,3301,2,1,1244.019148,1244.019148,3505,NO,32.95,38.93,3,1.68,6106,114.359209,123.99607,133.778989,140.074569,I,Above,Hip,0,NaN,Wood,35.93748874,0,0,,,,1,1,,0.03,nav,1,1910,2,, -249,NJBF000070126,2028 BLAINE AVE,Atlantic City,NJ,39.36593945,-74.44123551,RES3B,3001,,17,ME,1950,1950,3301,1,1,1731.001388,1731.001388,3505,NO,22.19,35.15,3,7.83,6106,114.301802,123.947755,133.725952,140.033065,I,Above,Hip,0,NaN,Wood,28.670954,0,0,,,,1,1,,0.03,nav,1,1950,1,, -250,NJBF000068909,2917 SUNSET AVE,Atlantic City,NJ,39.35799723,-74.45013344,RES3A,3001,,17,NE,1900,1900,3301,2,1,1002.220228,1002.220228,3507,NO,28.15,38.2,1,-0.91,6106,114.204406,123.870703,133.635599,140.008725,I,Above,Flat,0,5701,Wood,33.17814097,0,0,,,,1,1,,0.03,nav,1,1900,2,, -251,NJBF000067157,101 N TRENTON AVE,Atlantic City,NJ,39.35235729,-74.45696528,RES3A,3001,,45,NE,1924,1924,3301,2,2,2111.608557,2111.608557,3505,YES,24.57,37.34,3,1.28,6106,114.125409,123.807767,133.562727,139.984823,I,Above,Hip,0,5701,Wood,30.95691164,0,0,,,,1,1,,0.03,nav,1,1924,2,, -252,NJBF000066864,132 N WINDSOR AVE,Atlantic City,NJ,39.35106776,-74.46130468,RES3A,3001,,17,NE,1922,1922,3301,2,1,1034.251626,1034.251626,3505,NO,27.03,34.53,3,3.9,6106,114.046697,123.743446,133.492182,139.935159,I,Above,Gable,0,5701,Wood,30.78311706,0,0,,,,1,1,,0.03,nav,1,1922,2,, -253,NJBF000068915,2919 SUNSET AVE,Atlantic City,NJ,39.35800273,-74.45022237,RES3A,3001,,45,NE,1925,1925,3301,2,2,1160.035418,1160.035418,3507,NO,23.5,33.95,1,-0.73,6106,114.202395,123.869027,133.633781,140.00722,I,Above,Gable,0,5701,Wood,28.72227528,0,0,,,,1,1,,0.03,nav,1,1925,2,, -254,NJBF000068906,2921 SUNSET AVE,Atlantic City,NJ,39.3579885,-74.4503185,RES3A,3001,,17,NE,1900,1900,3301,2,1,911.5452656,911.5452656,3507,NO,33.85,43.75,1,1.41,6106,114.200489,123.867449,133.632053,140.005916,I,Above,Flat,0,5701,Wood,38.80098467,0,0,,,,1,1,,0.03,nav,1,1900,2,, -255,NJBF000068533,4019 CROSSAN AVE,Atlantic City,NJ,39.35703761,-74.46505884,RES1,3001,,17,NE,1962,1962,3101,1,1,1228.21847,1228.21847,3505,NO,9.64,16.71,3,-0.96,6106,113.889795,123.611318,133.353955,139.780967,I,Above,Gable,0,5701,Wood,13.17624855,0,0,,,,1,1,,0.03,nav,1,1962,1,, -256,NJBF000068202,2414 TRENWITH TERR,Atlantic City,NJ,39.35599001,-74.44079556,COM1,3003,,33,ME,1900,1900,3401,2,1,10067.4072,10067.4072,3507,YES,23.27,33.67,1,-0.46,6106,114.431799,124.061389,133.841669,140.184599,I,Above,Flat,0,NaN,Wood,28.46923639,0,0,,,,1,1,,0.03,nav,1,1900,2,, -257,NJBF000067565,110 S TEXAS AVE,Atlantic City,NJ,39.35384018,-74.44192978,RES3A,3004,,45,NE,1900,1900,3301,3,3,1174.516416,1174.516416,3505,YES,32.8,47.28,3,-0.92,6106,114.433993,124.063754,133.842199,140.197939,I,Above,Hip,0,5701,Wood,40.03827148,0,0,,,,1,1,,0.03,nav,1,1900,3,, -258,NJBF000065347,27 N NEWTON AVE,Atlantic City,NJ,39.34680663,-74.4663177,RES3A,3001,,17,NE,1900,1915,3301,2,1,1588.720986,1588.720986,3505,NO,26.15,32.59,3,3.92,6106,113.991279,123.699521,133.441441,139.920474,I,Above,Gable,0,5701,Wood,29.36950646,0,0,,,,1,1,,0.03,nav,1,1900,2,, -259,NJBF000072738,608 N MASSACHUSETTS AVE,Atlantic City,NJ,39.37474617,-74.42296768,RES1,3001,,17,NE,2000,2000,3102,2,1,1377.980462,1377.980462,3505,NO,33.09,45.18,3,-0.68,6106,114.591367,124.189226,133.99869,140.196927,I,Above,Hip,0,5701,Wood,39.13437135,0,0,,,,1,1,,0.03,nav,1,2000,2,, -260,NJBF000070790,644 GREEN ST,Atlantic City,NJ,39.368436,-74.4365195,RES1,3001,,16,NE,1962,1962,3101,1,1,1109.615187,1109.615187,3505,NO,15.47,24.01,3,0.71,6106,114.374173,124.007326,133.793203,140.071875,I,Above,Gable,0,5701,Wood,19.7410553,0,0,,,,1,1,,0.03,nav,1,1962,1,, -261,NJBF000066849,128 N WINDSOR AVE,Atlantic City,NJ,39.35100984,-74.46124726,RES3A,3001,,17,NE,1900,1900,3301,2,1,822.5547581,822.5547581,3505,NO,32.08,43.72,3,-0.68,6106,114.048703,123.745118,133.49394,139.936981,I,Above,Gable,0,5701,Wood,37.90022535,0,0,,,,1,1,,0.03,nav,1,1900,2,, -262,NJBF000072242,553 N DELAWARE AVE,Atlantic City,NJ,39.3730112,-74.42561939,RES1,3001,,16,NE,1900,1900,3102,1,1,1317.668578,1317.668578,3505,NO,19.38,33.56,3,0.27,6106,114.554785,124.15869,133.963529,140.179439,I,Above,Gable,0,5701,Wood,26.47045262,0,0,,,,1,1,,0.03,nav,1,1900,1,, -263,NJBF000068229,106 N MORRIS AVE,Atlantic City,NJ,39.35608087,-74.44962609,RES3A,3001,,45,NE,1920,1920,3301,2,2,1329.158402,1329.158402,3505,NO,39.14,53.07,3,5.88,6106,114.239036,123.900386,133.666298,140.045266,I,Above,Hip,0,5701,Wood,46.10799936,0,0,,,,1,1,,0.03,nav,1,1920,2,, -264,NJBF000068256,108 N MORRIS AVE,Atlantic City,NJ,39.35615429,-74.44965573,RES3A,3001,,17,NE,1900,1900,3301,2,1,1467.293599,1467.293599,3505,NO,25.51,31.43,3,2.22,6106,114.23748,123.899061,133.664919,140.043709,I,Above,Hip,0,5701,Wood,28.4709037,0,0,,,,1,1,,0.03,nav,1,1900,2,, -265,NJBF000070793,651 N DR MARTIN LUTHER K,Atlantic City,NJ,39.36845332,-74.43688773,RES1,3001,,16,NE,1900,1900,3101,1,1,1097.523202,1097.523202,3505,NO,16.87,21.97,3,0.19,6106,114.366046,124.000433,133.78565,140.065761,I,Above,Flat,0,5701,Wood,19.41934019,0,0,,,,1,1,,0.03,nav,1,1900,1,, -266,NJBF000068922,116 N TEXAS AVE,Atlantic City,NJ,39.3580176,-74.44469566,RES3A,3001,,17,NE,1900,1900,3301,2,1,957.1706657,957.1706657,3505,YES,20.87,32.59,3,-0.5,6106,114.322302,123.969022,133.742696,140.09436,I,Above,Hip,0,5701,Wood,26.72881575,0,0,,,,1,1,,0.03,nav,1,1900,2,, -267,NJBF000070029,514 N MICHIGAN AVE,Atlantic City,NJ,39.36554965,-74.44021098,RES3B,3001,,45,ME,1900,1900,3301,2,2,1109.049965,1109.049965,3505,NO,37.99,47.07,3,6.99,6106,114.328565,123.970532,133.750586,140.055108,I,Above,Hip,0,NaN,Wood,42.52998366,0,0,,,,1,1,,0.03,nav,1,1900,2,, -268,NJBF000066115,37 N DELANCY PL,Atlantic City,NJ,39.3489429,-74.46237136,RES3A,3001,,45,NE,1900,1900,3301,2,2,1296.485658,1296.485658,3505,NO,25.48,39.61,3,-2.87,6106,114.05039,123.747274,133.494587,139.950735,I,Above,Hip,0,5701,Wood,32.54414365,0,0,,,,1,1,,0.03,nav,1,1900,2,, -269,NJBF000068778,109 N CALIFORNIA RR,Atlantic City,NJ,39.3576065,-74.4453175,RES3A,3001,,33,NE,1900,1900,3301,2,1,542.6924166,542.6924166,3505,YES,32.39,44.11,3,0.2,6106,114.313852,123.962125,133.73482,140.090608,I,Above,Gable,0,5701,Wood,38.25052347,0,0,,,,1,1,,0.03,nav,1,1900,2,, -270,NJBF000067547,3420 WINCHESTER AVE,Atlantic City,NJ,39.35379121,-74.45329324,RES3B,3001,,45,E,1925,1925,3303,2,2,2658.04908,2658.04908,3507,YES,25.07,39.67,1,0.04,6106,114.187609,123.858632,133.619025,140.021451,I,Above,Flat,0,NaN,Wood,32.37066053,0,0,,,,1,1,,0.03,nav,1,1925,2,, -271,NJBF000068511,7 N FLORIDA AVE,Atlantic City,NJ,39.35696829,-74.44199778,COM1,3003,100,NaN,ME,1969,0,3401,4,1,1806.960633,1806.960633,3507,YES,59.42,72.48,1,-0.46,6106,114.393694,124.02916,133.807383,140.151835,I,Above,Hip,0,NaN,Wood,65.9494076,0,0,,,,1,1,,0.03,nav,1,1969,4,, -272,NJBF000068286,2601 ATLANTIC AVE,Atlantic City,NJ,39.356232,-74.4434485,COM1,3003,100,NaN,ME,1969,0,3401,1,1,2522.681306,2522.681306,3507,NO,17.39,28.22,1,0.09,6106,114.371342,124.010686,133.786553,140.1399,I,Above,Flat,0,NaN,Wood,22.80306366,0,0,,,,1,1,,0.03,nav,1,1969,1,, -273,NJBF000071895,1401 N ARKANSAS AVE,Atlantic City,NJ,39.37193,-74.4459605,RES1,3001,,17,NE,2006,2006,3102,3,1,1314.557119,1314.557119,3505,NO,60.61,69.21,3,2.44,6106,114.129769,123.798373,133.566693,139.867822,I,Above,Hip,0,5701,Wood,64.90699334,0,0,,,,1,1,,0.03,nav,1,2006,3,, -274,NJBF000070928,702 LEXINGTON AVE,Atlantic City,NJ,39.3688664,-74.42186279,RES3B,3004,,45,ME,1915,1900,3301,1,2,1261.382409,1261.382409,3507,NO,18.05,29.53,1,1.59,6106,114.683232,124.270838,134.083783,140.296591,I,Above,Flat,0,NaN,Wood,23.79180739,0,0,,,,1,1,,0.03,nav,1,1915,1,, -275,NJBF000067902,17 N MORRIS AVE,Atlantic City,NJ,39.35495011,-74.44825162,RES3B,3001,,17,ME,1900,1900,3301,2,1,1525.258582,1525.258582,3504,YES,26.34,39.83,-4,0,6106,114.282954,123.937369,133.705544,140.083591,I,Above,Hip,0,NaN,Wood,33.08329229,0,0,,,,1,1,,0.03,nav,1,1900,2,, -276,NJBF000071568,1001 CASPIAN AVE,Atlantic City,NJ,39.370942,-74.42789616,RES3C,3004,,45,ME,1900,1900,3301,1,4,2581.369778,2581.369778,3505,NO,10.21,20.92,3,-0.57,6106,114.53008,124.138614,133.939669,140.172748,I,Above,Flat,0,NaN,Wood,15.56268391,0,0,,,,1,1,,0.03,nav,1,1900,1,, -277,NJBF000071566,2116 E RIVERSIDE DR,Atlantic City,NJ,39.370941,-74.4458565,RES1,3001,,16,NE,1900,1900,3102,1,1,567.7088323,567.7088323,3505,NO,17.58,23.25,3,-0.74,6106,114.14337,123.810706,133.57955,139.884293,I,Above,Gable,0,5701,Wood,20.41348869,0,0,,,,1,1,,0.03,nav,1,1900,1,, -278,NJBF000071520,1631 W RIVERSIDE DR,Atlantic City,NJ,39.37082378,-74.45159885,RES1,3001,,16,NE,1900,1900,3101,1,1,1199.880879,1199.880879,3505,NO,18.58,29.08,3,6.59,6106,114.020124,123.707522,133.466772,139.791557,I,Above,Gable,0,5701,Wood,23.83281941,0,0,,,,1,1,,0.03,nav,1,1900,1,, -279,NJBF000070618,709 N OHIO AVE #A,Atlantic City,NJ,39.36780479,-74.43962191,RES1,3001,,17,NE,2004,2004,3102,1,1,1515.815003,1515.815003,3505,NO,22.78,30.03,3,7.78,6106,114.31468,123.957421,133.737975,140.031531,I,Above,Gable,0,5701,Wood,26.40685005,0,0,,,,1,1,,0.03,nav,1,2004,1,, -280,NJBF000068893,2909 SUNSET AVE,Atlantic City,NJ,39.35795985,-74.44985638,RES3A,3001,,17,NE,1925,1925,3301,2,1,794.6790437,794.6790437,3507,NO,24.85,30.78,1,1.22,6106,114.210889,123.876116,133.641456,140.013683,I,Above,Gable,0,5701,Wood,27.81337385,0,0,,,,1,1,,0.03,nav,1,1925,2,, -281,NJBF000066798,129 N RICHMOND AVE,Atlantic City,NJ,39.35081718,-74.46151723,RES3A,3001,,27,NE,1922,1922,3301,2,2,1038.730128,1038.730128,3505,YES,26.34,32.5,3,-0.13,6106,114.045233,123.742344,133.490792,139.935613,I,Above,Gable,0,5701,Wood,29.41996207,0,0,,,,1,1,,0.03,nav,1,1922,2,, -282,NJBF000068411,214 N MONTPELIER AVE,Atlantic City,NJ,39.35666664,-74.45245172,RES3A,3001,,45,NE,1922,1922,3301,2,2,2189.795771,2189.795771,3507,YES,28.67,34.01,1,-0.91,6106,114.17024,123.842968,133.604389,139.991701,I,Above,Flat,0,5701,Wood,31.34181209,0,0,,,,1,1,,0.03,nav,1,1922,2,, -283,NJBF000070409,1410 ADRIATIC AVE,Atlantic City,NJ,39.36699,-74.432266,RES3C,3003,,NaN,E,1969,0,3305,1,1,1665.127355,1665.127355,3507,NO,18.25,25.35,1,2.89,6106,114.482707,124.100201,133.894052,140.160107,I,Above,Flat,0,NaN,Wood,21.80463369,0,0,,,,2,2,,0.03,nav,1,1969,1,, -284,NJBF000064938,122 S BARTRAM AVE,Atlantic City,NJ,39.34571791,-74.46135037,RES3A,3001,,45,NE,1910,1910,3301,2,2,1543.122911,1543.122911,3504,NO,29.62,44.35,-4,0,6106,114.11433,123.80067,133.549347,140.016076,I,Above,Hip,0,5701,Wood,36.98293529,0,0,,,,1,1,,0.03,nav,1,1910,2,, -285,NJBF000068406,207 N MONTPELIER AVE,Atlantic City,NJ,39.35664432,-74.45189662,RES3A,3001,,45,NE,1905,1905,3301,2,2,2038.771583,2038.771583,3507,YES,33.04,47.14,1,1.95,6106,114.182621,123.853255,133.615543,140.000883,I,Above,Flat,0,5701,Wood,40.09289603,0,0,,,,1,1,,0.03,nav,1,1905,2,, -286,NJBF000071806,1619 COLUMBIA AVE,Atlantic City,NJ,39.37167978,-74.45143594,RES1,3001,,17,NE,1979,1979,3101,2,1,1182.313055,1182.313055,3505,NO,32.27,46.95,3,2.21,6106,114.013849,123.701408,133.4606,139.781268,I,Above,Gable,0,5701,Wood,39.61295033,0,0,,,,1,1,,0.03,nav,1,1979,2,, -287,NJBF000071651,709 ADRIATIC AVE,Atlantic City,NJ,39.37117729,-74.42338366,RES1,3001,,45,NE,1969,1910,3102,2,2,6156.823558,6156.823558,3505,YES,38.9,53.4,3,2.76,6106,114.623745,124.218825,134.028391,140.240511,I,Above,Flat,0,5701,Wood,46.14762848,0,0,,,,1,1,,0.03,nav,1,1969,2,, -288,NJBF000071614,518 DREXEL AVE,Atlantic City,NJ,39.371072,-74.4205935,RES1,3001,,27,NE,1900,1900,3102,2,2,1407.749972,1407.749972,3505,YES,33.05,42.06,3,-0.45,6106,114.684442,124.271113,134.086092,140.285713,I,Above,Hip,0,5701,Wood,37.55756315,0,0,,,,1,1,,0.03,nav,1,1900,2,, -289,NJBF000072776,1616 N OHIO AVE,Atlantic City,NJ,39.37487781,-74.44948567,RES1,3001,,17,NE,1900,1900,3102,2,1,1573.365617,1573.365617,3505,NO,21.86,36.65,3,-0.66,6106,114.019858,123.703023,133.46417,139.765245,I,Above,Gable,0,5701,Wood,29.2571501,0,0,,,,1,1,,0.03,nav,1,1900,2,, -290,NJBF000072524,2189 N RIVERSIDE DR,Atlantic City,NJ,39.373992,-74.45779363,RES1,3001,,17,NE,1994,1994,3103,2,1,1795.610512,1795.610512,3505,NO,31.5,43.17,3,-2.17,6106,113.849239,123.56145,133.309281,139.639247,I,Above,Gable,0,5701,Wood,37.3355386,0,0,,,,1,1,,0.03,nav,1,1994,2,, -291,NJBF000068099,26 N STENTON PL,Atlantic City,NJ,39.3556362,-74.44704936,RES3B,3001,,45,ME,1910,1910,3301,3,2,1797.872914,1797.872914,3504,YES,34.44,42.21,-4,0,6106,114.300587,123.95181,133.721862,140.092359,I,Above,Hip,0,NaN,Wood,38.32553871,0,0,,,,1,1,,0.03,nav,1,1910,3,, -292,NJBF000072278,626 SEWELL AVE,Atlantic City,NJ,39.37313732,-74.42367008,RES1,3001,,16,NE,1900,1900,3102,1,1,944.4534669,944.4534669,3505,NO,26.7,31.91,3,7.9,6106,114.594919,124.193121,134.001664,140.208471,I,Above,Gable,0,5701,Wood,29.3007195,0,0,,,,1,1,,0.03,nav,1,1900,1,, -293,NJBF000069688,27 S GORDONS ALLEY,Atlantic City,NJ,39.36293523,-74.42289478,COM1,3003,100,NaN,ME,1969,0,3401,3,1,8088.032163,8088.032163,3507,YES,43.39,51.61,1,1.85,6106,114.731863,124.313997,134.125712,140.362858,I,Above,Flat,0,NaN,Wood,47.49820008,0,0,,,,1,1,,0.03,nav,1,1969,3,, -294,NJBF000068150,444 N HARRISBURG AVE,Atlantic City,NJ,39.35581773,-74.46118401,RES1,3001,,27,NE,1900,1900,3102,2,2,1288.738345,1288.738345,3505,YES,31.13,45.52,3,3.91,6106,113.98986,123.694343,133.442752,139.863853,I,Above,Flat,0,5701,Wood,38.32606321,0,0,,,,1,1,,0.03,nav,1,1900,2,, -295,NJBF000070255,1108 CITY AVE,Atlantic City,NJ,39.36644627,-74.42734911,RES3D,3004,29,NaN,E,1969,0,3303,2,1,4786.732835,4786.732835,3505,YES,31.66,44.06,3,-1.86,6106,114.594615,124.195754,133.998735,140.244926,I,Above,Flat,0,NaN,Wood,37.86201635,0,0,,,,1,1,,0.03,nav,1,1969,2,, -296,NJBF000070288,1108 CITY AVE,Atlantic City,NJ,39.36657795,-74.42743379,RES3D,3004,29,NaN,E,1969,0,3303,2,1,5446.636614,5446.636614,3505,YES,25.58,32.45,3,1.9,6106,114.591229,124.192815,133.995617,140.241739,I,Above,Flat,0,NaN,Wood,29.0118945,0,0,,,,1,1,,0.03,nav,1,1969,2,, -297,NJBF000070378,1108 CITY AVE,Atlantic City,NJ,39.3668895,-74.42740751,RES3D,3004,29,NaN,E,1969,0,3303,2,1,8178.215303,8178.215303,3505,YES,32.89,40.78,3,-0.36,6106,114.5881,124.190027,133.992826,140.237763,I,Above,Flat,0,NaN,Wood,36.83419369,0,0,,,,1,1,,0.03,nav,1,1969,2,, -298,NJBF000068417,2814 DENNY ST,Atlantic City,NJ,39.35668287,-74.44762165,RES3A,3001,,17,NE,1900,1900,3301,2,1,661.8496441,661.8496441,3505,YES,30.67,38.04,3,5.45,6106,114.275186,123.930235,133.699285,140.067956,I,Above,Flat,0,5701,Wood,34.35502388,0,0,,,,1,1,,0.03,nav,1,1900,2,, -299,NJBF000067608,3714 SOUTH BLVD,Atlantic City,NJ,39.353949,-74.457784,RES1,3001,,27,NE,1900,1900,3102,2,2,2032.457722,2032.457722,3505,NO,41.29,53.33,3,3.55,6106,114.087539,123.775829,133.529454,139.947574,I,Above,Hip,0,5701,Wood,47.31026662,0,0,,,,1,1,,0.03,nav,1,1900,2,, -300,NJBF000068843,227 N MORRIS AVE,Atlantic City,NJ,39.35776627,-74.45022299,RES3A,3001,,33,NE,1900,1900,3301,2,1,507.7775454,507.7775454,3507,YES,35.59,47.95,1,1.32,6106,114.20528,123.871544,133.636327,140.01074,I,Above,Gable,0,5701,Wood,41.77280105,0,0,,,,1,1,,0.03,nav,1,1900,2,, -301,NJBF000072469,400 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.37377608,-74.41770049,RES3C,3001,,NaN,ME,1969,0,3301,1,1,9199.674264,9199.674264,3505,NO,21.71,32.32,3,2.85,6106,114.714559,124.296109,134.116162,140.293458,I,Above,Hip,0,NaN,Wood,27.01587578,0,0,,,,1,1,,0.03,nav,1,1969,1,, -302,NJBF000068506,548 N ELBERON AVE,Atlantic City,NJ,39.35695717,-74.46351455,RES1,3001,,17,NE,1900,1900,3101,2,1,600.3098477,600.3098477,3505,NO,31.02,45.17,3,2.6,6106,113.924685,123.640028,133.384879,139.807844,I,Above,Flat,0,5701,Wood,38.09484912,0,0,,,,1,1,,0.03,nav,1,1900,2,, -303,NJBF000070407,2021 MAGELLAN AVE RR,Atlantic City,NJ,39.36698412,-74.4419882,RES3B,3001,,17,ME,1900,1900,3301,2,1,916.7414046,916.7414046,3505,NO,30.02,42.16,3,8.22,6106,114.273206,123.923005,133.699657,140.005668,I,Above,Gable,0,NaN,Wood,36.08567827,0,0,,,,1,1,,0.03,nav,1,1900,2,, -304,NJBF000066824,4014 WINCHESTER AVE,Atlantic City,NJ,39.3508955,-74.4593925,RES3A,3001,,33,NE,1900,1900,3301,2,1,1693.007752,1693.007752,3505,YES,42.54,57.54,3,8.96,6106,114.09075,123.779758,133.531243,139.968368,I,Above,Gable,0,5701,Wood,50.03969959,0,0,,,,1,1,,0.03,nav,1,1900,2,, -305,NJBF000072605,514 MAGELLAN AVE,Atlantic City,NJ,39.37425664,-74.42285528,RES1,3001,,45,NE,1900,1900,3102,2,2,2415.406881,2415.406881,3505,YES,41.76,54.64,3,3.23,6106,114.599389,124.196397,134.006218,140.205593,I,Above,Flat,0,5701,Wood,48.19994653,0,0,,,,1,1,,0.03,nav,1,1900,2,, -306,NJBF000071059,20 N NEW HAMPSHIRE AVE,Atlantic City,NJ,39.36925657,-74.41397057,RES3D,3004,,17,E,1999,1999,3303,2,1,1325.982585,1325.982585,3505,NO,21.64,31.79,3,-0.14,6106,114.846371,124.411569,134.239896,140.413559,I,Above,Flat,0,NaN,Wood,26.71474045,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, -307,NJBF000076747,304 29TH STREET SO,Brigantine,NJ,39.3946476,-74.38335171,RES1,3001,,16,NE,1958,1958,3102,2,1,2374.401933,2374.401933,3507,NO,35.95,46.09,1,-0.48,6106,115.19865,124.720242,134.607442,140.552476,I,Above,Flat,0,5701,Wood,41.01907403,0,1.1,,,,1,1,,0.03,nav,1,1958,2,, -308,NJBF000078331,117 12TH STREET SO,Brigantine,NJ,39.40478555,-74.37292084,RES1,3001,,15,NE,1950,1950,3102,2,1,1818.980493,1818.980493,3505,NO,32.83,42.47,3,1.33,6106,115.303003,124.815139,134.721567,140.586512,I,Above,Hip,0,5701,Wood,37.65467865,0,0,,,,1,1,,0.03,nav,1,1950,2,, -309,NJBF000077993,323 12TH STREET SO,Brigantine,NJ,39.40217618,-74.37051873,RES1,3001,,19,NE,2008,2008,3102,3,1,1619.336001,1619.336001,3502,NO,40.82,51.92,5,5.55,6106,115.379617,124.886524,134.800504,140.657492,I,Above,Hip,0,5701,Wood,46.37095544,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, -310,NJBF000076799,3943 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.3948475,-74.3972315,RES1,3001,,47,NE,1997,1997,3102,3,2,3055.902695,3055.902695,3507,YES,39.42,50.64,1,0.45,6106,114.909745,124.458543,134.313859,140.330037,I,Above,Gable,0,5701,Wood,45.02992381,0,1.2,,,,1,1,,0.03,nav,1,1997,3,, -311,NJBF000074714,11 HUDSON COVE,Brigantine,NJ,39.38753797,-74.39629697,RES1,3001,,16,NE,1968,1968,3102,2,1,1582.19943,1582.19943,3507,NO,36.54,50.99,1,1.25,6112,115.008946,124.550411,134.411168,140.442525,I,Above,Hip,0,5701,Wood,43.76175332,0,0,,,,1,1,,0.35,nav,1,1968,2,, -312,NJBF000073094,5216 OCEAN DRIVE SOUTH,Brigantine,NJ,39.37750766,-74.40624347,RES1,3001,,20,NE,2008,2008,3101,3,1,2517.40494,2517.40494,3507,NO,37.32,51.39,1,0.3,6106,114.913734,124.468658,134.311167,140.421408,I,Above,Hip,0,5701,Wood,44.3589516,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, -313,NJBF000075007,4503 HARBOR BEACH BLVD,Brigantine,NJ,39.38842155,-74.39774174,RES1,3001,,16,NE,1968,1968,3102,2,1,1848.058233,1848.058233,3507,NO,27.46,34.11,1,2.6,6106,114.969107,124.51451,134.371711,140.407974,I,Above,Gable,0,5701,Wood,30.78723018,0,0,,,,1,1,,0.03,nav,1,1968,2,, -314,NJBF000076649,4116 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39420925,-74.39982597,RES1,3001,,16,NE,1957,1957,3102,1,1,1741.939084,1741.939084,3507,NO,17.4,31.86,1,0.77,6106,114.862703,124.416655,134.266537,140.297141,I,Above,Hip,0,5701,Wood,24.63089952,0,0,,,,1,1,,0.03,nav,1,1957,1,, -315,NJBF000077041,404 22ND STREET SO,Brigantine,NJ,39.39605527,-74.37686411,RES1,3001,,17,NE,1955,1955,3102,2,1,2607.634807,2607.634807,3507,NO,31.28,42.13,1,1.91,6106,115.316363,124.827938,134.729841,140.635998,I,Above,Hip,0,5701,Wood,36.70707309,0,0,,,,1,1,,0.03,nav,1,1955,2,, -316,NJBF000076014,227 39TH STREET SO,Brigantine,NJ,39.39195514,-74.39192268,RES1,3001,,45,NE,1975,1975,3102,2,2,1822.850966,1822.850966,3507,NO,37.86,47.14,1,0.03,6106,115.051174,124.587066,134.455761,140.452824,I,Above,Gable,0,5701,Wood,42.49945715,0,0,,,,1,1,,0.03,nav,1,1975,2,, -317,NJBF000076122,214 38TH STREET SO,Brigantine,NJ,39.39230634,-74.39190046,RES1,3001,,16,NE,1950,1950,3102,1,1,1452.656628,1452.656628,3507,NO,15.16,25.44,1,2.99,6106,115.047819,124.583936,134.452521,140.448547,I,Above,Hip,0,5701,Wood,20.3015897,0,0,,,,1,1,,0.03,nav,1,1950,1,, -318,NJBF000074951,36 SHIPMASTER DR,Brigantine,NJ,39.38827458,-74.40175717,RES1,3001,,16,NE,1970,1970,3102,2,1,1484.453177,1484.453177,3507,YES,25.55,36.51,1,1.24,6106,114.887002,124.441341,134.289793,140.346455,I,Above,Hip,0,5701,Wood,31.03331003,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, -319,NJBF000076280,344 32ND STREET SO,Brigantine,NJ,39.39283616,-74.38484882,RES1,3001,,16,NE,1955,1955,3102,1,1,1193.381064,1193.381064,3507,NO,12.44,26.19,1,0.15,6106,115.187619,124.710439,134.59499,140.55253,I,Above,Hip,0,5701,Wood,19.31594674,0,0,,,,1,1,,0.03,nav,1,1955,1,, -320,NJBF000077814,1905 REVERE BLVD,Brigantine,NJ,39.4010149,-74.37840223,RES1,3001,,16,NE,1956,1956,3101,2,1,2221.005922,2221.005922,3507,YES,28.16,34.5,1,2.23,6106,115.231445,124.749357,134.644867,140.548154,I,Above,Hip,0,5701,Wood,31.33017882,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, -321,NJBF000076854,2506 OCEAN AVE,Brigantine,NJ,39.39508401,-74.37938833,RES1,3001,,20,NE,2009,2009,3102,3,1,4174.045602,4174.045602,3507,NO,34.01,40.64,1,-0.62,6106,115.275264,124.790239,134.686586,140.608982,I,Above,Flat,0,5701,Wood,37.32194809,0,1.2,,,,1,1,,0.03,nav,1,2009,3,, -322,NJBF000077477,103 26TH STREET SO,Brigantine,NJ,39.39891822,-74.38374712,RES1,3001,,16,NE,1951,1951,3102,1,1,1854.784061,1854.784061,3507,NO,16.34,30.07,1,0.97,6106,115.144416,124.669854,134.553884,140.490736,I,Above,Gable,0,5701,Wood,23.20650706,0,0,,,,1,1,,0.03,nav,1,1951,1,, -323,NJBF000077411,315 20TH STREET SO,Brigantine,NJ,39.39846003,-74.37610456,RES1,3001,,16,NE,1953,1953,3102,1,1,2564.4215,2564.4215,3507,NO,19.32,25.93,1,0.91,6106,115.305812,124.818181,134.720667,140.617114,I,Above,Hip,0,5701,Wood,22.62546519,0,0,,,,1,1,,0.03,nav,1,1953,1,, -324,NJBF000074052,36 DELMAR DRIVE,Brigantine,NJ,39.3846399,-74.40300921,RES1,3001,,33,NE,1980,1980,3102,2,1,7108.155643,7108.155643,3507,YES,30.78,40.06,1,-0.9,6110,114.901062,124.455304,134.302483,140.375741,I,Above,Gable,0,5701,Wood,35.41950816,0,0,,,,1,1,,0.35,nav,1,1980,2,, -325,NJBF000076250,3119 OCEAN AVE,Brigantine,NJ,39.39273002,-74.38416265,RES1,3001,,16,NE,1960,1960,3102,2,1,1044.401088,1044.401088,3507,NO,32.69,47.12,1,0.3,6106,115.202903,124.724352,134.610549,140.564656,I,Above,Gable,0,5701,Wood,39.90304837,0,1.2,,,,1,1,,0.03,nav,1,1960,2,, -326,NJBF000076852,,Brigantine,NJ,39.39505885,-74.39231003,RES1,3001,,NaN,NE,1925,0,3102,2,1,3546.990298,3546.990298,3507,NO,27.73,35.74,1,-0.91,6106,115.009461,124.54835,134.414654,140.405609,I,Above,Flat,0,5701,Wood,31.73204006,0,0,,,,1,1,,0.03,nav,1,1925,2,, -327,NJBF000078337,1012 W BEACH AVE,Brigantine,NJ,39.40481522,-74.37167058,RES1,3001,,15,NE,1957,1957,3102,1,1,1564.582226,1564.582226,3505,NO,23.59,29.04,3,5.23,6106,115.32809,124.838495,134.747972,140.605897,I,Above,Gable,0,5701,Wood,26.31432444,0,0,,,,1,1,,0.03,nav,1,1957,1,, -328,NJBF000076809,3849 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39488223,-74.39509157,RES1,3001,,15,NE,1930,1930,3102,2,1,1890.496575,1890.496575,3507,NO,36.97,48.62,1,0.93,6106,114.953761,124.49815,134.358249,140.363707,I,Above,Hip,0,5701,Wood,42.79378687,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -329,NJBF000075780,314 37TH STREET SO,Brigantine,NJ,39.39108767,-74.38884399,RES1,3001,,15,NE,1948,1948,3102,1,1,918.5340907,918.5340907,3507,NO,19.38,31.86,1,2.78,6106,115.124361,124.653363,134.529463,140.512694,I,Above,Flat,0,5701,Wood,25.61876732,0,0,,,,1,1,,0.03,nav,1,1948,1,, -330,NJBF000075511,109 44TH STREET SO,Brigantine,NJ,39.39010841,-74.39658687,RES1,3001,,16,NE,1968,1968,3102,2,1,1637.829329,1637.829329,3507,NO,36.16,48.38,1,2.89,6106,114.974608,124.518838,134.377881,140.403693,I,Above,Gable,0,5701,Wood,42.26990101,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, -331,NJBF000075747,265 40TH STREET SO,Brigantine,NJ,39.39097078,-74.39194857,RES1,3001,,43,NE,1955,1955,3102,2,2,1110.70293,1110.70293,3507,NO,33.63,45.39,1,0.17,6106,115.061401,124.59656,134.465638,140.465416,I,Above,Gable,0,5701,Wood,39.50961694,0,0,,,,1,1,,0.03,nav,1,1955,2,, -332,NJBF000077832,1201 OCEAN AVE,Brigantine,NJ,39.40110602,-74.37023918,RES1,3001,,18,NE,1990,1990,3102,3,1,2837.2566,2837.2566,3502,NO,38.2,49.57,5,-2.19,6110,115.396783,124.902444,134.817748,140.675415,I,Above,Gable,0,5701,Wood,43.88522365,0,1.1,,,,1,1,,0.35,nav,1,1990,3,, -333,NJBF000074835,30 SHIPMASTER DR,Brigantine,NJ,39.38791493,-74.40125241,RES1,3001,,16,NE,1976,1976,3102,2,1,1344.469962,1344.469962,3507,NO,35.7,43.61,1,1.68,6106,114.901508,124.454408,134.304113,140.359311,I,Above,Gable,0,5701,Wood,39.65179435,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, -334,NJBF000075683,,Brigantine,NJ,39.39069877,-74.38885796,RES1,3001,,NaN,NE,1969,0,3102,2,1,1726.744199,1726.744199,3507,NO,29.86,34.87,1,1.31,6106,115.128346,124.657036,134.533271,140.517574,I,Above,Hip,0,5701,Wood,32.36366724,0,0,,,,1,1,,0.03,nav,1,1969,2,, -335,NJBF000077094,,Brigantine,NJ,39.39647005,-74.37721751,RES1,3001,,NaN,NE,1969,0,3102,2,1,2367.555579,2367.555579,3507,NO,27.77,37.66,1,1.96,6106,115.304614,124.817133,134.71798,140.625148,I,Above,Hip,0,5701,Wood,32.71478669,0,0,,,,1,1,,0.03,nav,1,1969,2,, -336,NJBF000074542,75 SAILFISH DRIVE,Brigantine,NJ,39.38691228,-74.40250233,RES3B,3001,,35,ME,1987,1987,3301,3,1,4209.171662,4209.171662,3507,NO,41.36,47.87,1,2.13,6106,114.886458,124.441447,134.288847,140.353063,I,Above,Gable,0,5701,Wood,44.61762323,0,0,,,,1,1,,0.03,nav,1,1987,3,, -337,NJBF000075454,4821 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.38993234,-74.41388832,RES1,3001,,18,NE,2003,2003,3103,3,1,2567.40016,2567.40016,3505,NO,59.26,67.23,3,3.44,6106,114.614599,124.199239,134.021072,140.129589,I,Above,Hip,0,5701,Wood,63.247637,0,1.1,,,,1,1,,0.03,nav,1,2003,3,, -338,NJBF000077871,348 12TH STREET SO,Brigantine,NJ,39.40136734,-74.37045688,RES1,3001,,16,NE,1950,1950,3102,2,1,1175.488689,1175.488689,3502,NO,38.06,46.79,5,6.83,6106,115.389551,124.895734,134.810348,140.668699,I,Above,Gable,0,5701,Wood,42.42410443,0,0,,,,1,1,,0.03,nav,1,1950,2,, -339,NJBF000077733,110 21ST STREET SO,Brigantine,NJ,39.40061191,-74.37986881,RES1,3001,,17,NE,2001,2001,3101,2,1,1824.327794,1824.327794,3507,NO,38.35,47.71,1,1.82,6106,115.205758,124.725767,134.618006,140.530155,I,Above,Gable,0,5701,Wood,43.0328757,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, -340,NJBF000073984,4 ALBERTA DRIVE,Brigantine,NJ,39.38430084,-74.40479836,RES3B,3001,,33,ME,1987,1987,3301,2,1,3093.153001,3093.153001,3507,NO,27.33,35.41,1,0.06,6106,114.867369,124.425608,134.269072,140.352118,I,Above,Gable,0,5701,Wood,31.36997646,0,0,,,,1,1,,0.03,nav,1,1987,2,, -341,NJBF000077868,104 19TH STREET SO,Brigantine,NJ,39.40134846,-74.3783044,RES1,3001,,16,NE,1952,1952,3101,1,1,2224.799678,2224.799678,3507,YES,16.08,30.13,1,-0.34,6106,115.22989,124.747868,134.643414,140.545416,I,Above,Gable,0,5701,Wood,23.10248787,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, -342,NJBF000075453,111 44TH STREET SO,Brigantine,NJ,39.38993033,-74.39648907,RES1,3001,,16,NE,1968,1968,3102,1,1,1690.53805,1690.53805,3507,NO,16.66,31.22,1,1.34,6106,114.978597,124.522477,134.381815,140.407617,I,Above,Hip,0,5701,Wood,23.93741673,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, -343,NJBF000074199,14 LIGHTHOUSE DR,Brigantine,NJ,39.38534212,-74.40171496,RES1,3001,,43,NE,1980,1980,3102,2,2,1541.950514,1541.950514,3507,NO,39.97,47.52,1,2.24,6110,114.920315,124.472127,134.321842,140.386662,I,Above,Gable,0,5701,Wood,43.74738025,0,0,,,,1,1,,0.35,nav,1,1980,2,, -344,NJBF000080777,716 LAFAYETTE BLVD,Brigantine,NJ,39.41626499,-74.379988,RES1,3001,,16,NE,1969,1969,3103,2,1,1689.088425,1689.088425,3505,YES,34.98,47.65,3,6.79,6106,115.04029,124.566246,134.446607,140.32547,I,Above,Gable,0,5701,Wood,41.31382648,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, -345,NJBF000081196,901 E SHORE DR,Brigantine,NJ,39.41796801,-74.36235933,RES1,3001,,16,NE,1960,1960,3102,2,1,829.2904675,829.2904675,3507,NO,31.77,44,1,1.38,6106,115.37873,124.885147,134.807476,140.588196,I,Above,Hip,0,5701,Wood,37.8821317,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, -346,NJBF000078076,1207 W BRIGANTINE AVE,Brigantine,NJ,39.40275601,-74.37182127,COM8,3001,,NaN,ME,1969,0,3401,2,1,2495.568658,2495.568658,3507,YES,28.51,40.68,1,0.66,6106,115.346961,124.856151,134.766575,140.629679,I,Above,Flat,0,NaN,Wood,34.59515936,0,0,,,,1,1,,0.03,nav,1,1969,2,, -347,NJBF000081341,1 12TH STREET NO,Brigantine,NJ,39.41873718,-74.36196055,RES1,3001,,17,NE,1985,1985,3102,2,2,2440.534385,2440.534385,3507,NO,22.55,35.09,1,-0.66,6106,115.378814,124.885157,134.807772,140.584964,I,Above,Flat,0,5701,Wood,28.82211615,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, -348,NJBF000080279,45 CUMMINGS PLACE,Brigantine,NJ,39.41454384,-74.37418003,RES1,3001,,16,NE,1972,1972,3102,2,1,1390.629121,1390.629121,3507,NO,39.15,44.69,1,0.91,6106,115.175636,124.693836,134.589766,140.441741,I,Above,Gable,0,5701,Wood,41.92054098,0,0,,,,1,1,,0.03,nav,1,1972,2,, -349,NJBF000077582,301 19TH STREET SO,Brigantine,NJ,39.3996181,-74.37606598,RES1,3001,,17,NE,1987,1987,3102,2,1,1867.112631,1867.112631,3507,NO,38.12,52.44,1,1.51,6106,115.29413,124.807345,134.709286,140.60291,I,Above,Gable,0,5701,Wood,45.28255753,0,1.1,,,,1,1,,0.03,nav,1,1987,2,, -350,NJBF000076745,2604 OCEAN AVE,Brigantine,NJ,39.39464091,-74.38018189,RES1,3001,,16,NE,1952,1952,3102,1,1,1684.201075,1684.201075,3507,NO,15.51,22.95,1,-0.73,6106,115.263815,124.779776,134.674451,140.60226,I,Above,Gable,0,5701,Wood,19.23209268,0,0,,,,1,1,,0.03,nav,1,1952,1,, -351,NJBF000074449,305 DOLPHIN DR,Brigantine,NJ,39.38647883,-74.39440413,RES1,3001,,19,NE,1997,1997,3102,3,1,2105.546319,2105.546319,3507,YES,37.53,51.54,1,2.72,6110,115.060064,124.59642,134.46179,140.48628,I,Above,Gable,0,5701,Wood,44.53359219,0,0,,,,1,1,,0.35,nav,1,1997,3,, -352,NJBF000074417,302 DOLPHIN DRIVE,Brigantine,NJ,39.38633026,-74.39413387,RES1,3001,,17,NE,2001,2001,3102,2,1,2120.174583,2120.174583,3507,NO,34.43,47.26,1,1.2,6110,115.067334,124.60296,134.468987,140.492477,I,Above,Gable,0,5701,Wood,40.8447082,0,1.1,,,,1,1,,0.35,nav,1,2001,2,, -353,NJBF000079560,114 6TH STREET NO,Brigantine,NJ,39.4116885,-74.3614065,RES1,3001,,17,NE,1956,2017,3102,2,1,840.5875329,840.5875329,3507,NO,39.64,46.33,1,2,6106,115.463031,124.965318,134.895502,140.681611,I,Above,Gable,0,5701,Wood,42.98661597,0,0,,,,1,1,,0.03,nav,1,1956,2,, -354,NJBF000076245,,Brigantine,NJ,39.39271542,-74.38836517,RES1,3001,,NaN,NE,1969,0,3102,2,1,2280.831215,2280.831215,3507,NO,31.41,39.54,1,-0.4,6106,115.116442,124.645865,134.522337,140.498885,I,Above,Flat,0,5701,Wood,35.47223587,0,0,,,,1,1,,0.03,nav,1,1969,2,, -355,NJBF000076338,3700 BAYSHORE AVE,Brigantine,NJ,39.39304327,-74.39166188,RES1,3001,,15,NE,1965,1965,3102,1,1,1451.413264,1451.413264,3507,NO,18.13,26.66,1,0.86,6106,115.044717,124.580909,134.449687,140.442564,I,Above,Hip,0,5701,Wood,22.39686321,0,0,,,,1,1,,0.03,nav,1,1965,1,, -356,NJBF000076213,224 37TH STREET SO,Brigantine,NJ,39.39260753,-74.39103316,RES1,3001,,17,NE,1954,1954,3102,2,2,2003.415394,2003.415394,3507,YES,40.26,49.3,1,2.79,6106,115.062469,124.597072,134.467487,140.458245,I,Above,Hip,0,5701,Wood,44.77818105,0,0,,,,1,1,,0.03,nav,1,1954,2,, -357,NJBF000080762,807 W SHORE DR,Brigantine,NJ,39.4162045,-74.38228683,RES1,3001,,18,NE,2012,2012,3103,3,1,1879.179481,1879.179481,3505,NO,43.21,55.4,3,5,6106,114.994196,124.523246,134.398169,140.288788,I,Above,Hip,0,5701,Wood,49.30281862,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, -358,NJBF000075131,16 GULL COVE,Brigantine,NJ,39.38879204,-74.40540304,RES3B,3001,,35,ME,1984,1984,3301,2,1,3893.368479,3893.368479,3507,YES,25.59,33.44,1,0.18,6106,114.805098,124.368316,134.208654,140.281486,I,Above,Gable,0,5701,Wood,29.51733435,0,0,,,,1,1,,0.03,nav,1,1984,2,, -359,NJBF000081006,821 W SHORE DR,Brigantine,NJ,39.41719973,-74.38247846,RES1,3001,,16,NE,1968,1968,3103,2,1,1195.800215,1195.800215,3505,YES,37.95,49.68,3,7.78,6106,114.980247,124.509569,134.383145,140.272669,I,Above,Gable,0,5701,Wood,43.81541777,0,0,,,,1,1,,0.03,nav,1,1968,2,, -360,NJBF000081000,908 SARAZEN RD,Brigantine,NJ,39.41717155,-74.37814948,RES1,3001,,16,NE,1968,1968,3103,2,1,3342.573408,3342.573408,3505,YES,31.92,39.76,3,7.01,6106,115.068398,124.592045,134.476015,140.343649,I,Above,Gable,0,5701,Wood,35.84124703,0,0,,,,1,1,,0.03,nav,1,1968,2,, -361,NJBF000074567,,Brigantine,NJ,39.38704237,-74.40024981,RES1,3001,,NaN,NE,1969,0,3102,2,1,1428.014437,1428.014437,3507,NO,24.49,37.6,1,2.21,6110,114.932061,124.481954,134.334201,140.386895,I,Above,Gable,0,5701,Wood,31.04726151,0,0,,,,1,1,,0.35,nav,1,1969,2,, -362,NJBF000076489,,Brigantine,NJ,39.39360015,-74.40278036,RES3D,3001,,NaN,E,1969,0,3303,3,1,5335.638936,5335.638936,3507,NO,34.3,46.94,1,0,6106,114.807732,124.367836,134.211537,140.258045,I,Above,Gable,0,NaN,Wood,40.62138968,0,0,,,,1,1,,0.03,nav,1,1969,3,, -363,NJBF000075299,,Brigantine,NJ,39.38940245,-74.39044085,RES1,3001,,NaN,NE,1969,0,3102,2,1,1273.312084,1273.312084,3507,NO,32.97,41.31,1,-0.53,6110,115.109885,124.640609,134.513773,140.509784,I,Above,Gable,0,5701,Wood,37.14066925,0,0,,,,1,1,,0.35,nav,1,1969,2,, -364,NJBF000075648,,Brigantine,NJ,39.39060789,-74.386062,RES3C,3001,,NaN,E,1969,0,3303,4,1,2174.650748,2174.650748,3507,NO,50,64.86,1,2.58,6106,115.187079,124.710208,134.592912,140.56254,I,Above,Flat,0,NaN,Wood,57.42737434,0,0,,,,1,1,,0.03,nav,1,1969,4,, -365,NJBF000076026,329 35TH STREET SO,Brigantine,NJ,39.3919895,-74.386935,RES1,3001,,43,NE,1954,1954,3102,2,2,1371.212016,1371.212016,3507,NO,22.77,29.68,1,1.29,6106,115.153886,124.679935,134.56003,140.530844,I,Above,Flat,0,5701,Wood,26.2252063,0,0,,,,1,1,,0.03,nav,1,1954,2,, -366,NJBF000075806,411 34TH STREET SO,Brigantine,NJ,39.39120483,-74.38476929,RES1,3001,,20,NE,2011,2011,3102,3,1,2090.078445,2090.078445,3507,NO,40.16,51.89,1,1.59,6106,115.207161,124.728371,134.613821,140.574982,I,Above,Hip,0,5701,Wood,46.02426012,0,1.1,,,,1,1,,0.03,nav,1,2011,3,, -367,NJBF000075730,,Brigantine,NJ,39.39090409,-74.38681261,RES3C,3001,,NaN,E,1969,0,3303,4,1,2479.210199,2479.210199,3507,NO,68.42,81.02,1,0.15,6106,115.168326,124.693181,134.574027,140.546935,I,Above,Flat,0,NaN,Wood,74.72048755,0,0,,,,1,1,,0.03,nav,1,1969,4,, -368,NJBF000075136,44 SHIPMASTER DR,Brigantine,NJ,39.38880584,-74.40229905,RES1,3001,,16,NE,1970,1970,3102,2,1,1428.546455,1428.546455,3507,YES,35.44,47.33,1,-0.06,6106,114.86985,124.425835,134.272879,140.330683,I,Above,Gable,0,5701,Wood,41.38813195,0,0,,,,1,1,,0.03,nav,1,1970,2,, -369,NJBF000075983,300 36TH STREET SO,Brigantine,NJ,39.39182783,-74.38855171,RES1,3001,,43,NE,1954,1954,3102,2,2,1387.16551,1387.16551,3507,NO,23.16,34.07,1,0.87,6106,115.12228,124.651336,134.527781,140.507576,I,Above,Hip,0,5701,Wood,28.6166983,0,0.1,,,,1,1,,0.03,nav,1,1954,2,, -370,NJBF000074992,4506 WHALERMAN RD,Brigantine,NJ,39.38838874,-74.39902583,RES1,3001,,16,NE,1968,1968,3102,1,1,1613.317397,1613.317397,3507,NO,12.12,23.91,1,-0.95,6106,114.942722,124.490956,134.345339,140.388143,I,Above,Hip,0,5701,Wood,18.01402781,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, -371,NJBF000075290,,Brigantine,NJ,39.38936851,-74.39483083,RES3A,3001,,NaN,NE,1969,0,3301,1,1,2717.598105,2717.598105,3507,NO,14.85,23.35,1,1.36,6106,115.019215,124.559079,134.422358,140.441245,I,Above,Gable,0,5701,Wood,19.10311401,0,0,,,,1,1,,0.03,nav,1,1969,1,, -372,NJBF000075705,109 SHIPMASTER DRIVE,Brigantine,NJ,39.39080929,-74.4030123,RES1,3001,,18,NE,1990,1990,3102,2,1,2135.836979,2135.836979,3507,YES,27.32,39.69,1,1.4,6106,114.833083,124.39208,134.236662,140.292207,I,Above,Hip,0,5701,Wood,33.50709689,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, -373,NJBF000075255,330 40TH STREET SO,Brigantine,NJ,39.3892454,-74.39023559,RES1,3001,,19,NE,2011,2011,3102,3,1,1916.943036,1916.943036,3507,NO,44.05,52.13,1,0.21,6110,115.115862,124.646024,134.519718,140.51506,I,Above,Hip,0,5701,Wood,48.0912335,0,1.1,,,,1,1,,0.35,nav,1,2011,3,, -374,NJBF000075804,253 40TH STREET SO,Brigantine,NJ,39.391201,-74.392271,RES1,3001,,45,NE,1950,1950,3102,2,2,1505.235082,1505.235082,3507,NO,38.37,50.98,1,1.1,6106,115.052211,124.588217,134.456464,140.457303,I,Above,Gable,0,5701,Wood,44.67560834,0,0,,,,1,1,,0.03,nav,1,1950,2,, -375,NJBF000075387,7 EXPLORER RD,Brigantine,NJ,39.38970295,-74.40021432,RES1,3001,,16,NE,1968,1968,3102,1,1,1822.49365,1822.49365,3507,NO,11.96,18.34,1,0.11,6106,114.903531,124.455438,134.306643,140.351677,I,Above,Gable,0,5701,Wood,15.15338525,0,0,,,,1,1,,0.03,nav,1,1968,1,, -376,NJBF000076795,2600 OCEAN AVE,Brigantine,NJ,39.39483147,-74.37976871,RES1,3001,,19,NE,2007,2007,3102,3,1,2540.671455,2540.671455,3507,NO,46.09,54.08,1,0.99,6106,115.270212,124.785622,134.681186,140.606276,I,Above,Hip,0,5701,Wood,50.08482745,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, -377,NJBF000075434,4409 HARBOR BEACH BLVD,Brigantine,NJ,39.38985809,-74.39779553,RES1,3001,,16,NE,1968,1968,3102,1,1,2539.611873,2539.611873,3507,NO,15.48,23.27,1,0.61,6106,114.9522,124.498866,134.355334,140.387911,I,Above,Hip,0,5701,Wood,19.37469397,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, -378,NJBF000075259,4417 PRIVATEER RD,Brigantine,NJ,39.3892655,-74.39861452,RES1,3001,,16,NE,1968,1968,3102,2,1,1211.24905,1211.24905,3507,NO,25.26,34.9,1,-0.72,6106,114.941642,124.489655,134.344571,140.382882,I,Above,Gable,0,5701,Wood,30.08013031,0,0,,,,1,1,,0.03,nav,1,1968,2,, -379,NJBF000075822,,Brigantine,NJ,39.39127349,-74.38799084,RES1,3001,,NaN,NE,1969,0,3102,2,1,1173.438746,1173.438746,3507,NO,28.55,40.24,1,-0.83,6106,115.139953,124.667433,134.54541,140.523654,I,Above,Gable,0,5701,Wood,34.39574797,0,0,,,,1,1,,0.03,nav,1,1969,2,, -380,NJBF000075695,319 38TH STREET SO,Brigantine,NJ,39.39076385,-74.38903586,RES1,3001,,43,NE,1952,1952,3102,1,2,1269.283297,1269.283297,3507,NO,12.39,17.4,1,0.67,6106,115.123952,124.653053,134.528853,140.51393,I,Above,Gable,0,5701,Wood,14.89645048,0,0,,,,1,1,,0.03,nav,1,1952,1,, -381,NJBF000075685,3 ATLANTIS COVE,Brigantine,NJ,39.39071945,-74.40036601,RES1,3001,,18,NE,2007,2007,3102,3,1,2297.589319,2297.589319,3507,NO,35.6,49.28,1,0.41,6106,114.889262,124.442231,134.292641,140.335578,I,Above,Gable,0,5701,Wood,42.43876557,0,1.1,,,,1,1,,0.03,nav,1,2007,3,, -382,NJBF000075653,79 LAGOON BLVD,Brigantine,NJ,39.39062143,-74.39815865,RES1,3001,,17,NE,1989,1989,3102,2,1,1967.81253,1967.81253,3507,NO,27.58,36.44,1,2.85,6106,114.936296,124.484326,134.339649,140.371941,I,Above,Gable,0,5701,Wood,32.00827008,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, -383,NJBF000075496,4408 WHALERMAN RD,Brigantine,NJ,39.3900624,-74.39902961,RES1,3001,,18,NE,2005,2005,3102,2,1,2273.735506,2273.735506,3507,NO,23.03,33.33,1,-0.42,6106,114.924274,124.473809,134.327459,140.36563,I,Above,Gable,0,5701,Wood,28.17916304,0,0,,,,1,1,,0.03,nav,1,2005,2,, -384,NJBF000075894,4205 BAYSHORE AVE,Brigantine,NJ,39.39153953,-74.39629218,COM1,3001,,NaN,ME,1969,0,3401,1,1,723.6326452,723.6326452,3507,NO,17.3,26.92,1,1.16,6106,114.965086,124.509756,134.368809,140.389245,I,Above,Gable,0,NaN,Wood,22.10931741,0,0,,,,1,1,,0.03,nav,1,1969,1,, -385,NJBF000075417,354 GULL COVE,Brigantine,NJ,39.38978394,-74.40545235,RES3B,3001,,35,ME,1984,1984,3301,2,1,4658.249074,4658.249074,3507,YES,28.79,40.07,1,2.62,6106,114.793239,124.357231,134.197012,140.267184,I,Above,Gable,0,5701,Wood,34.42835635,0,1.1,,,,1,1,,0.03,nav,1,1984,2,, -386,NJBF000075841,245 40TH STREET SO,Brigantine,NJ,39.39133047,-74.39248634,RES1,3001,,43,NE,1950,1950,3102,2,2,891.9240725,891.9240725,3507,NO,23.49,38.01,1,2.19,6106,115.046345,124.582895,134.450597,140.452207,I,Above,Gable,0,5701,Wood,30.75030283,0,0,,,,1,1,,0.03,nav,1,1950,2,, -387,NJBF000075818,249 40TH STREET SO,Brigantine,NJ,39.39125383,-74.39238801,RES1,3001,,43,NE,1969,1969,3102,2,2,897.6459203,897.6459203,3507,NO,29.02,40.1,1,-0.89,6106,115.049207,124.585495,134.453453,140.454758,I,Above,Gable,0,5701,Wood,34.56090711,0,1.2,,,,1,1,,0.03,nav,1,1969,2,, -388,NJBF000076367,,Brigantine,NJ,39.39317037,-74.40649812,RES1,3001,,NaN,NE,1969,0,3103,5,1,1394.852511,1394.852511,3505,NO,51.49,61.87,3,-2.81,6106,114.734723,124.303059,134.138912,140.204133,I,Above,Flat,0,5701,Wood,56.68060159,0,0,,,,1,1,,0.03,nav,1,1969,5,, -389,NJBF000076542,,Brigantine,NJ,39.39383956,-74.38850379,RES1,3001,,NaN,NE,2015,0,3102,2,1,2021.391509,2021.391509,3507,NO,29.49,38.28,1,1.4,6106,115.101315,124.631891,134.507512,140.481934,I,Above,Flat,0,5701,Wood,33.88716178,0,0,,,,1,1,,0.03,nav,1,2015,2,, -390,NJBF000075623,42ND STREET SO,Brigantine,NJ,39.390543,-74.394082,COM8,3001,,NaN,ME,1969,0,3401,3,1,736.972397,736.972397,3507,NO,52.55,66.38,1,1.78,6106,115.021871,124.561108,134.425561,140.437463,I,Above,Hip,0,NaN,Wood,59.46373249,0,0,,,,1,1,,0.03,nav,1,1969,3,, -391,NJBF000076536,245 34TH STREET SO,Brigantine,NJ,39.39382193,-74.38786986,RES1,3001,,43,NE,1950,1950,3102,2,2,968.8878402,968.8878402,3507,NO,28.52,36.4,1,-0.3,6106,115.114594,124.643938,134.521028,140.492167,I,Above,Hip,0,5701,Wood,32.46463306,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, -392,NJBF000076857,3633 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39509382,-74.39117343,RES1,3001,,20,NE,2008,2008,3102,3,1,1917.194587,1917.194587,3507,NO,52.57,63.44,1,1.12,6106,115.032595,124.569261,134.438138,140.423194,I,Above,Gable,0,5701,Wood,58.00537934,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, -393,NJBF000077288,2800 BAYSHORE AVE,Brigantine,NJ,39.3976765,-74.3854145,RES1,3001,,17,NE,1994,1994,3102,2,1,763.0460915,763.0460915,3507,NO,35.87,48.63,1,1.27,6106,115.123489,124.651055,134.531868,140.480521,I,Above,Hip,0,5701,Wood,42.25013001,0,0,,,,1,1,,0.03,nav,1,1994,2,, -394,NJBF000076648,4225 ATL-BRIGANTINE BLVD,Brigantine,NJ,39.39420136,-74.40393486,RES1,3001,,15,NE,1950,1950,3102,1,1,1234.785079,1234.785079,3507,NO,13.9,20.27,1,0.78,6106,114.777187,124.340178,134.181041,140.231314,I,Above,Gable,0,5701,Wood,17.08413371,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, -395,NJBF000075138,343 41ST STREET SO,Brigantine,NJ,39.38880738,-74.39020542,RES1,3001,,43,NE,1964,1964,3102,2,2,1354.381977,1354.381977,3507,NO,34.98,43.64,1,-0.95,6110,115.121344,124.651039,134.524978,140.521298,I,Above,Hip,0,5701,Wood,39.31152314,0,0,,,,1,1,,0.35,nav,1,1964,2,, -396,NJBF000076625,37TH STREET SO,Brigantine,NJ,39.39412682,-74.39178201,COM1,3001,,NaN,ME,1969,0,3401,2,1,6796.573188,6796.573188,3507,NO,30.2,43.2,1,0.81,6106,115.030464,124.567675,134.435652,140.426328,I,Above,Flat,0,NaN,Wood,36.69955602,0,0,,,,1,1,,0.03,nav,1,1969,2,, -397,NJBF000081135,830 BOBBY JONES RD,Brigantine,NJ,39.41768108,-74.3815464,RES1,3001,,16,NE,1971,1971,3103,2,1,2646.950903,2646.950903,3505,YES,24.88,38.21,3,-0.61,6106,114.994329,124.522399,134.397757,140.281638,I,Above,Gable,0,5701,Wood,31.54855126,0,1.1,,,,1,1,,0.03,nav,1,1971,2,, -398,NJBF000076824,310 28TH STREET SO,Brigantine,NJ,39.39493418,-74.38236653,RES1,3001,,19,NE,2014,2014,3102,3,1,2082.507614,2082.507614,3507,NO,46.27,55.67,1,-0.51,6106,115.215778,124.735838,134.625212,140.564233,I,Above,Hip,0,5701,Wood,50.9699019,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, -399,NJBF000081130,5 11TH STREET NO,Brigantine,NJ,39.41766752,-74.36192763,RES1,3001,,16,NE,1969,1969,3102,1,1,2037.442956,2037.442956,3507,NO,16.79,29.41,1,0.73,6106,115.390464,124.896356,134.820059,140.598828,I,Above,Gable,0,5701,Wood,23.09948379,0,0,,,,1,1,,0.03,nav,1,1969,1,, -400,NJBF000081144,3 11TH STREET NO,Brigantine,NJ,39.41775368,-74.36205815,RES1,3001,,16,NE,1975,1975,3102,2,1,1561.460824,1561.460824,3507,NO,37.46,45.75,1,-0.01,6106,115.386971,124.89302,134.816312,140.595678,I,Above,Gable,0,5701,Wood,41.60446343,0,0,,,,1,1,,0.03,nav,1,1975,2,, -401,NJBF000081528,1105 E SHORE DR,Brigantine,NJ,39.4198745,-74.362697,RES1,3001,,43,NE,1980,1980,3102,2,2,1440.734791,1440.734791,3507,NO,30.8,43.71,1,2.86,6106,115.352409,124.85982,134.779472,140.558971,I,Above,Gable,0,5701,Wood,37.25330532,0,0,,,,1,1,,0.03,nav,1,1980,2,, -402,NJBF000076260,324 33RD STREET SO,Brigantine,NJ,39.39276191,-74.38602001,RES1,3001,,15,NE,1954,1954,3102,1,1,1034.929878,1034.929878,3507,NO,14.61,19.95,1,-0.41,6106,115.164304,124.689264,134.571128,140.535125,I,Above,Hip,0,5701,Wood,17.27672628,0,0,,,,1,1,,0.03,nav,1,1954,1,, -403,NJBF000076252,,Brigantine,NJ,39.39273801,-74.39360243,RES3C,3001,,NaN,ME,1969,0,3301,2,1,4342.161506,4342.161506,3507,NO,24.36,38.54,1,1.66,6106,115.007858,124.547766,134.412295,140.41591,I,Above,Flat,0,5701,Wood,31.44930934,0,0,,,,1,1,,0.03,nav,1,1969,2,, -404,NJBF000074568,4 HUDSON COVE,Brigantine,NJ,39.38704607,-74.39651282,RES1,3001,,16,NE,1968,1968,3102,1,1,1883.918215,1883.918215,3507,NO,14.76,19.86,1,0.81,6110,115.009902,124.551402,134.411871,140.445681,I,Above,Hip,0,5701,Wood,17.30619759,0,1.1,,,,1,1,,0.35,nav,1,1968,1,, -405,NJBF000074527,4602 SCHOONER RD,Brigantine,NJ,39.38686433,-74.39844322,RES1,3001,,43,NE,1977,1977,3102,2,2,1362.861602,1362.861602,3507,NO,25.09,31.4,1,-0.46,6110,114.97172,124.517361,134.37364,140.417761,I,Above,Hip,0,5701,Wood,28.2486248,0,0,,,,1,1,,0.35,nav,1,1977,2,, -406,NJBF000078077,324 10TH STREET SO,Brigantine,NJ,39.40276203,-74.36947632,RES1,3001,,16,NE,1954,1954,3102,2,1,1477.360378,1477.360378,3502,NO,47.26,56.69,5,11.12,6110,115.394518,124.900422,134.816619,140.666454,I,Above,Gable,0,5701,Wood,51.97888342,0,0,,,,1,1,,0.35,nav,1,1954,2,, -407,NJBF000074930,4505 HARBOR BEACH BLVD,Brigantine,NJ,39.38820534,-74.39774075,RES1,3001,,16,NE,1968,1968,3102,1,1,1896.232966,1896.232966,3507,NO,16.5,25.13,1,2.87,6106,114.97152,124.516741,134.374033,140.410891,I,Above,Gable,0,5701,Wood,20.81227772,0,1.1,,,,1,1,,0.03,nav,1,1968,1,, -408,NJBF000080132,14 CUMMINGS PLACE,Brigantine,NJ,39.41402755,-74.37259327,RES1,3001,,16,NE,1974,1974,3102,2,1,1074.07577,1074.07577,3507,YES,33.24,38.96,1,-0.36,6106,115.213069,124.729162,134.629422,140.473881,I,Above,Flat,0,5701,Wood,36.10427887,0,0,,,,1,1,,0.03,nav,1,1974,2,, -409,NJBF000076340,243 36TH STREET SO,Brigantine,NJ,39.39304906,-74.38932824,RES1,3001,,45,NE,1952,1952,3102,2,3,1812.740393,1812.740393,3507,YES,24.04,37.28,1,0.67,6106,115.09291,124.624478,134.498583,140.479331,I,Above,Hip,0,5701,Wood,30.66163539,0,0,,,,1,1,,0.03,nav,1,1952,2,, -410,NJBF000078065,300 11TH STREET SO,Brigantine,NJ,39.40269343,-74.37050496,RES1,3001,,16,NE,1936,1936,3102,2,1,1327.469728,1327.469728,3502,NO,30.28,44.63,5,-1.9,6106,115.374369,124.881651,134.795351,140.651169,I,Above,Hip,0,5701,Wood,37.45309118,0,1.1,,,,1,1,,0.03,nav,1,1936,2,, -411,NJBF000074521,9 LIGHTHOUSE COVE,Brigantine,NJ,39.38683262,-74.39963533,RES1,3001,,43,NE,1987,1987,3102,2,2,1347.994479,1347.994479,3507,NO,37.99,51.59,1,-0.32,6112,114.947206,124.495519,134.349194,140.399401,I,Above,Hip,0,5701,Wood,44.78596981,0,0,,,,1,1,,0.35,nav,1,1987,2,, -412,NJBF000080751,105 MARSDEN PLACE,Brigantine,NJ,39.41616052,-74.38118049,RES1,3001,,16,NE,1976,1976,3103,2,1,1307.201013,1307.201013,3505,NO,26.19,37.25,3,-0.03,6106,115.017133,124.544675,134.422276,140.307405,I,Above,Flat,0,5701,Wood,31.71881398,0,1.1,,,,1,1,,0.03,nav,1,1976,2,, -413,NJBF000080996,809 LAFAYETTE BLVD,Brigantine,NJ,39.41715777,-74.37982632,RES1,3001,,16,NE,1975,1975,3103,2,1,1162.985003,1162.985003,3505,NO,32.03,41.01,3,6.5,6106,115.034527,124.560328,134.440277,140.316519,I,Above,Gable,0,5701,Wood,36.51972882,0,0.1,,,,1,1,,0.03,nav,1,1975,2,, -414,NJBF000076305,353 32ND STREET SO,Brigantine,NJ,39.39291261,-74.38432096,RES1,3001,,18,NE,1960,1960,3102,3,1,1352.609365,1352.609365,3507,NO,39.98,45.45,1,0.66,6106,115.197648,124.71955,134.605297,140.559804,I,Above,Flat,0,5701,Wood,42.71609028,0,0,,,,1,1,,0.03,nav,1,1960,3,, -415,NJBF000081065,813 LAFAYETTE BLVD,Brigantine,NJ,39.41741713,-74.37983891,RES1,3001,,16,NE,1974,1974,3103,2,1,1468.506087,1468.506087,3505,NO,31.07,39.64,3,7.88,6106,115.031643,124.557472,134.437154,140.312946,I,Above,Flat,0,5701,Wood,35.35302818,0,1.1,,,,1,1,,0.03,nav,1,1974,2,, -416,NJBF000080898,803 LAFAYETTE BLVD,Brigantine,NJ,39.4167822,-74.37963401,RES1,3001,,17,NE,1996,1996,3103,2,1,2343.366947,2343.366947,3505,NO,36.9,47.29,3,6.43,6106,115.042232,124.56776,134.448509,140.324526,I,Above,Hip,0,5701,Wood,42.09596779,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, -417,NJBF000080983,818 BOBBY JONES RD,Brigantine,NJ,39.41709214,-74.38210503,RES1,3001,,16,NE,1977,1977,3103,2,1,1771.591911,1771.591911,3505,NO,35.12,41.75,3,-2.91,6106,114.988917,124.517735,134.392297,140.280177,I,Above,Gable,0,5701,Wood,38.43268159,0,0,,,,1,1,,0.03,nav,1,1977,2,, -418,NJBF000080806,812 W SHORE DR,Brigantine,NJ,39.4164036,-74.38292383,RES1,3001,,17,NE,2001,2001,3103,2,1,1825.30839,1825.30839,3505,YES,33.44,41.13,3,7.34,6106,114.979218,124.509149,134.38238,140.275773,I,Above,Hip,0,5701,Wood,37.28207622,0,1.1,,,,1,1,,0.03,nav,1,2001,2,, -419,NJBF000080666,12 COLLETTE CIRCLE,Brigantine,NJ,39.41586062,-74.37687862,RES1,3001,,17,NE,1999,1999,3103,2,1,2353.67442,2353.67442,3505,NO,30.78,40.08,3,6.06,6106,115.107474,124.629348,134.517563,140.381196,I,Above,Gable,0,5701,Wood,35.43352729,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, -420,NJBF000080840,24 COLLETTE CIRCLE,Brigantine,NJ,39.41654378,-74.37757879,RES1,3001,,17,NE,1996,1996,3103,2,1,1954.223546,1954.223546,3505,NO,44.22,56.18,3,8.59,6106,115.08633,124.609189,134.495101,140.361028,I,Above,Gable,0,5701,Wood,50.20154222,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, -421,NJBF000080857,800 LAFAYETTE BLVD,Brigantine,NJ,39.41659532,-74.38009758,RES1,3001,,16,NE,1972,1972,3103,2,1,1443.567145,1443.567145,3505,YES,35.39,47.65,3,-1.19,6106,115.03471,124.560834,134.440638,140.319395,I,Above,Gable,0,5701,Wood,41.51972256,0,0,,,,1,1,,0.03,nav,1,1972,2,, -422,NJBF000080821,803 BOBBY JONES RD,Brigantine,NJ,39.41646412,-74.38147392,RES1,3001,,16,NE,1972,1972,3103,2,1,1832.919162,1832.919162,3505,NO,27.19,39.23,3,3.98,6106,115.008089,124.536043,134.412672,140.298666,I,Above,Hip,0,5701,Wood,33.21349881,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, -423,NJBF000080692,1309 DUNCAN PLACE,Brigantine,NJ,39.41592811,-74.37383028,RES1,3001,,16,NE,1975,1975,3102,1,1,1434.120079,1434.120079,3507,NO,15.77,25.4,1,1.95,6106,115.168535,124.686642,134.582223,140.429663,I,Above,Flat,0,5701,Wood,20.58622488,0,0,,,,1,1,,0.03,nav,1,1975,1,, -424,NJBF000080904,804 LAFAYETTE BLVD,Brigantine,NJ,39.41681021,-74.38021189,RES1,3001,,16,NE,1971,1971,3103,1,1,1432.510648,1432.510648,3505,NO,19.95,27.74,3,3.75,6106,115.030217,124.556504,134.435842,140.314745,I,Above,Gable,0,5701,Wood,23.84378052,0,0,,,,1,1,,0.03,nav,1,1971,1,, -425,NJBF000080673,701 SARAZEN RD,Brigantine,NJ,39.41587702,-74.37466198,RES1,3001,,17,NE,1986,1986,3102,2,1,2738.751905,2738.751905,3507,NO,29.45,41.15,1,-0.28,6106,115.15222,124.671329,134.564921,140.416874,I,Above,Gable,0,5701,Wood,35.29984812,0,1.2,,,,1,1,,0.03,nav,1,1986,2,, -426,NJBF000080624,706 LAFAYETTE BLVD,Brigantine,NJ,39.41565394,-74.37947213,RES1,3001,,16,NE,1970,1970,3103,1,1,1372.650099,1372.650099,3505,NO,12.52,18.05,3,-0.45,6106,115.056977,124.58219,134.46433,140.341789,I,Above,Gable,0,5701,Wood,15.28302025,0,0,,,,1,1,,0.03,nav,1,1970,1,, -427,NJBF000076168,245 37TH STREET SO,Brigantine,NJ,39.3924645,-74.390117,RES1,3001,,16,NE,1948,1948,3102,1,1,1577.869494,1577.869494,3507,NO,16.04,23.11,1,0.36,6106,115.082973,124.615638,134.48821,140.474577,I,Above,Gable,0,5701,Wood,19.57505733,0,0,,,,1,1,,0.03,nav,1,1948,1,, -428,NJBF000080070,29 CUMMINGS PLACE,Brigantine,NJ,39.41382542,-74.37307026,RES1,3001,,16,NE,1987,1987,3102,2,1,1659.917833,1659.917833,3507,NO,29.24,39.62,1,0.95,6106,115.205506,124.722122,134.621383,140.468806,I,Above,Gable,0,5701,Wood,34.42830436,0,1.2,,,,1,1,,0.03,nav,1,1987,2,, -429,NJBF000080187,1103 E BEACH AVE,Brigantine,NJ,39.41421109,-74.35755501,RES1,3001,,45,NE,1950,1950,3102,2,2,1419.544898,1419.544898,3507,NO,35.97,44,1,0.81,6106,115.513966,125.014013,134.951996,140.711189,I,Above,Hip,0,5701,Wood,39.98483319,0,0,,,,1,1,,0.03,nav,1,1950,2,, -430,NJBF000080071,707 E EVANS BLVD,Brigantine,NJ,39.41382787,-74.36127704,RES1,3001,,16,NE,1956,1956,3102,2,1,1569.019058,1569.019058,3507,NO,25.68,33.67,1,1.68,6106,115.443292,124.9467,134.875461,140.657036,I,Above,Hip,0,5701,Wood,29.67521168,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, -431,NJBF000079867,100 HEALD RD,Brigantine,NJ,39.4131569,-74.36122076,RES1,3001,,45,NE,1972,1972,3102,2,2,1455.478967,1455.478967,3507,NO,37.26,48.03,1,0.45,6106,115.451412,124.954385,134.883849,140.666274,I,Above,Gable,0,5701,Wood,42.64189822,0,0,,,,1,1,,0.03,nav,1,1972,2,, -432,NJBF000079790,103 QUAY BLVD,Brigantine,NJ,39.41285169,-74.36140028,RES1,3001,,43,NE,1968,1968,3102,2,2,1450.439512,1450.439512,3507,NO,25.02,31,1,0,6106,115.450998,124.953977,134.883237,140.667236,I,Above,Hip,0,5701,Wood,28.01214651,0,0,,,,1,1,,0.03,nav,1,1968,2,, -433,NJBF000079793,,Brigantine,NJ,39.4128635,-74.361251,RES1,3001,,NaN,NE,1969,0,3102,2,1,1550.871331,1550.871331,3507,NO,23.75,36.88,1,0.41,6106,115.453867,124.956701,134.886331,140.669445,I,Above,Hip,0,5701,Wood,30.3117475,0,0,,,,1,1,,0.03,nav,1,1969,2,, -434,NJBF000078221,250 10TH STREET SO,Brigantine,NJ,39.40378836,-74.37055362,RES1,3001,,16,NE,1954,1954,3102,2,1,508.3800524,508.3800524,3505,YES,26.74,41.34,3,-1.27,6106,115.361688,124.869842,134.782735,140.636535,I,Above,Flat,0,5701,Wood,34.03607817,0,0.1,,,,1,1,,0.03,nav,1,1954,2,, -435,NJBF000078426,1112 BAYSHORE AVE,Brigantine,NJ,39.40545902,-74.37337183,RES1,3001,,16,NE,1951,1951,3102,2,1,1087.113313,1087.113313,3505,NO,30.11,35.54,3,6.32,6106,115.28671,124.799899,134.704774,140.570795,I,Above,Gable,0,5701,Wood,32.82718013,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, -436,NJBF000078163,240 12TH STREET SO,Brigantine,NJ,39.40336391,-74.37224926,RES1,3001,,16,NE,1950,1950,3102,1,1,1300.693755,1300.693755,3505,NO,12.21,26.53,3,-2.3,6106,115.331776,124.84201,134.751004,140.615215,I,Above,Hip,0,5701,Wood,19.37223523,0,0,,,,1,1,,0.03,nav,1,1950,1,, -437,NJBF000078171,247 12TH STREET SO,Brigantine,NJ,39.40340744,-74.37166734,RES1,3001,,16,NE,1964,1964,3102,1,1,2256.727673,2256.727673,3505,NO,13.81,27.24,3,-1.82,6106,115.343145,124.852584,134.762979,140.623839,I,Above,Gable,0,5701,Wood,20.52706319,0,1.1,,,,1,1,,0.03,nav,1,1964,1,, -438,NJBF000078177,328 8TH STREET SO,Brigantine,NJ,39.40344437,-74.36786653,RES1,3001,,18,NE,2003,2003,3102,2,1,2346.73667,2346.73667,3502,NO,38.96,45.23,5,14.45,6110,115.419851,124.924099,134.843864,140.6831,I,Above,Hip,0,5701,Wood,42.09572556,0,0,,,,1,1,,0.35,nav,1,2003,2,, -439,NJBF000078255,200 12TH STREET SO,Brigantine,NJ,39.40412494,-74.37300452,RES1,3001,,16,NE,1951,1951,3102,1,1,999.4629264,999.4629264,3505,NO,18.94,28.41,3,5.73,6106,115.308311,124.820138,134.726794,140.593603,I,Above,Flat,0,5701,Wood,23.6758713,0,0,,,,1,1,,0.03,nav,1,1951,1,, -440,NJBF000078129,324 9TH STREET SO,Brigantine,NJ,39.4031126,-74.36863573,RES1,3001,,17,NE,1951,1951,3102,2,1,2020.77081,2020.77081,3502,NO,26.4,34.24,5,-3.56,6110,115.407802,124.912828,134.830889,140.675207,I,Above,Gable,0,5701,Wood,30.32082342,0,1.1,,,,1,1,,0.35,nav,1,1951,2,, -441,NJBF000078152,251 12TH STREET SO,Brigantine,NJ,39.40328453,-74.37153427,RES1,3001,,15,NE,1960,1960,3102,1,1,1586.696565,1586.696565,3505,NO,22.12,27.98,3,7.72,6106,115.347148,124.856312,134.767111,140.627482,I,Above,Gable,0,5701,Wood,25.05414146,0,0,,,,1,1,,0.03,nav,1,1960,1,, -442,NJBF000078063,248 13TH STREET SO,Brigantine,NJ,39.40265586,-74.37273949,RES1,3001,,NaN,NE,1946,1946,3102,2,1,1144.027479,1144.027479,3505,NO,30.64,38.8,3,-0.61,6106,115.329364,124.839802,134.748038,140.616498,I,Above,Flat,0,5701,Wood,34.72162508,0,0,,,,1,1,,0.03,nav,1,1946,2,, -443,NJBF000078168,250 11TH STREET SO,Brigantine,NJ,39.40338183,-74.37132095,RES1,3001,,15,NE,1954,1954,3102,1,1,541.1068241,541.1068241,3505,NO,17.63,26.82,3,1.82,6106,115.350441,124.859374,134.770636,140.629605,I,Above,Flat,0,5701,Wood,22.22530558,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, -444,NJBF000078174,214 13TH STREET SO,Brigantine,NJ,39.40342467,-74.3734279,RES1,3001,,16,NE,1950,1950,3102,1,1,1400.205194,1400.205194,3505,NO,24.41,31.87,3,6.05,6106,115.307152,124.819121,134.725191,140.595843,I,Above,Gable,0,5701,Wood,28.14345284,0,0,,,,1,1,,0.03,nav,1,1950,1,, -445,NJBF000078118,1119 W BRIGANTINE AVE,Brigantine,NJ,39.40305383,-74.37141046,RES1,3001,,18,NE,2005,2005,3102,3,1,1553.668593,1553.668593,3505,NO,41.09,46.53,3,-2.34,6106,115.352131,124.860954,134.772203,140.632365,I,Above,Flat,0,5701,Wood,43.80793235,0,1.1,,,,1,1,,0.03,nav,1,2005,3,, -446,NJBF000077945,1705 REVERE BLVD,Brigantine,NJ,39.40185229,-74.37691807,RES1,3001,,16,NE,1954,1954,3101,2,1,2115.075511,2115.075511,3507,YES,27.21,39.15,1,2.39,6106,115.25281,124.768951,134.667527,140.560845,I,Above,Hip,0,5701,Wood,33.18062503,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, -447,NJBF000077839,2225 BAYSHORE AVE,Brigantine,NJ,39.40115833,-74.38223547,RES1,3001,,16,NE,1950,1950,3101,1,1,1093.305644,1093.305644,3507,NO,18.88,31.25,1,2.13,6106,115.151492,124.675747,134.562034,140.485583,I,Above,Hip,0,5701,Wood,25.06526711,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, -448,NJBF000077956,,Brigantine,NJ,39.40189031,-74.37138172,RES1,3001,,NaN,NE,1950,0,3102,2,1,934.6078934,934.6078934,3502,NO,23.14,31.03,5,-1.94,6106,115.365146,124.873061,134.78509,140.647566,I,Above,Flat,0,5701,Wood,27.08461474,0,0,,,,1,1,,0.03,nav,1,1950,2,, -449,NJBF000077937,,Brigantine,NJ,39.40178598,-74.37131898,RES1,3001,,NaN,NE,2009,0,3102,2,1,2111.520632,2111.520632,3502,NO,25.79,32.62,5,1.26,6106,115.367541,124.875286,134.787532,140.649873,I,Above,Flat,0,5701,Wood,29.20381833,0,0,,,,1,1,,0.03,nav,1,2009,2,, -450,NJBF000078021,333 11TH STREET SO,Brigantine,NJ,39.40237002,-74.36959437,RES1,3001,,43,NE,1954,1954,3102,2,2,1802.00521,1802.00521,3502,NO,53.49,59.03,5,14.75,6110,115.396319,124.902082,134.818227,140.669553,I,Above,Gable,0,5701,Wood,56.26106026,0,0,,,,1,1,,0.35,nav,1,1954,2,, -451,NJBF000078061,1219 W BRIGANTINE AVE,Brigantine,NJ,39.40264731,-74.37205493,COM1,3001,,NaN,ME,1969,0,3401,1,1,7296.521855,7296.521855,3507,NO,19.82,34.11,1,1.58,6106,115.343369,124.852814,134.762731,140.62738,I,Above,Flat,0,NaN,Wood,26.96513206,0,0,,,,1,1,,0.03,nav,1,1969,1,, -452,NJBF000077994,,Brigantine,NJ,39.40218764,-74.37943758,RES1,3001,,NaN,NE,1933,0,3102,2,1,4440.744526,4440.744526,3507,NO,31.13,43.57,1,0.34,6106,115.197765,124.718078,134.610393,140.516628,I,Above,Flat,0,5701,Wood,37.34984226,0,0,,,,1,1,,0.03,nav,1,1933,2,, -453,NJBF000077855,105 20TH STREET SO,Brigantine,NJ,39.40126367,-74.37866744,RES1,3001,,16,NE,1954,1954,3101,1,1,1501.363787,1501.363787,3507,NO,11.78,20.5,1,1,6106,115.22337,124.741869,134.636595,140.540757,I,Above,Gable,0,5701,Wood,16.13695002,0,0,,,,1,1,,0.03,nav,1,1954,1,, -454,NJBF000077915,318 13TH STREET SO,Brigantine,NJ,39.4016403,-74.37183912,RES1,3001,,16,NE,1952,1952,3102,3,1,1945.323885,1945.323885,3502,NO,38.93,45.72,5,3.39,6110,115.358534,124.866916,134.777973,140.64356,I,Above,Gable,0,5701,Wood,42.32515357,0,1.1,,,,1,1,,0.35,nav,1,1952,3,, -455,NJBF000052576,7 SO MANOR AVE,Longport,NJ,39.31567939,-74.52322665,RES1,3001,,20,NE,2017,2017,3102,3,1,2323.35781,2323.35781,3505,NO,35.08,40.55,3,-2.15,6106,113.184899,123.041283,132.722556,139.276051,I,Above,Flat,0,5701,,37.81572952,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, -456,NJBF000051880,,Longport,NJ,39.31141854,-74.53899796,COM8,3001,,NaN,ME,1969,0,3401,3,1,798.0760299,798.0760299,3502,NO,41.39,50.56,5,0.62,6102,112.916335,122.816966,132.488853,139.012083,I,Above,Flat,0,NaN,,45.97546751,0,0,,,,1,1,,0.03,nav,1,1969,3,, -457,NJBF000052514,29TH & VENTNOR AVES,Longport,NJ,39.31524554,-74.52550947,RES1,3001,,NaN,NE,1969,0,3102,2,1,1171.239316,1171.239316,3505,NO,39.68,52.5,3,6.11,6106,113.142597,123.006489,132.686379,139.235529,I,Above,Gable,0,5701,,46.08932811,0,0,,,,1,1,,0.03,nav,1,1969,2,, -458,NJBF000052200,15 SUNSET BLVD.,Longport,NJ,39.31336195,-74.53710503,RES1,3001,,19,NE,2002,2002,3102,2,1,2124.248104,2124.248104,3507,NO,28.7,43.68,1,-0.42,6106,112.925035,122.826718,132.500817,139.025674,I,Above,Gable,0,5701,,36.18565677,0,0,,,,1,1,,0.03,nav,1,2002,2,, -459,NJBF000052084,42 SEAVIEW DRIVE,Longport,NJ,39.31282872,-74.53449449,RES1,3001,,19,NE,1982,1982,3102,2,1,3104.251536,3104.251536,3507,NO,34.08,42.19,1,-0.08,6106,112.988933,122.878425,132.552902,139.084941,I,Above,Hip,0,5701,,38.13761247,0,1.2,,,,1,1,,0.03,nav,1,1982,2,, -460,NJBF000052377,103 HOSPITALITY DRIVE,Longport,NJ,39.3142607,-74.53694735,RES1,3001,,18,NE,2002,2002,3102,2,1,2082.284239,2082.284239,3507,NO,28.91,35.25,1,-0.61,6106,112.913978,122.818803,132.493676,139.017477,I,Above,Hip,0,5701,,32.07957219,0,0,,,,1,1,,0.03,nav,1,2002,2,, -461,NJBF000052293,38 SUNSET BLVD.,Longport,NJ,39.31382755,-74.53475807,RES1,3001,,18,NE,1965,1965,3102,2,1,2697.972692,2697.972692,3507,NO,23.82,38.11,1,0.4,6106,112.967374,122.861997,132.5372,139.067087,I,Above,Hip,0,5701,,30.96732147,0,1.2,,,,1,1,,0.03,nav,1,1965,2,, -462,NJBF000052273,36 SUNSET BLVD.,Longport,NJ,39.31373056,-74.53493397,RES1,3001,,19,NE,2011,2011,3102,2,1,2216.564516,2216.564516,3507,NO,36.11,45.81,1,0.01,6106,112.965183,122.860085,132.535153,139.064762,I,Above,Hip,0,5701,,40.95780137,0,0,,,,1,1,,0.03,nav,1,2011,2,, -463,NJBF000052380,4 SUNSET BLVD.,Longport,NJ,39.31428544,-74.53560562,RES1,3001,,16,NE,1965,1965,3102,2,1,1416.02391,1416.02391,3507,NO,26.73,41.07,1,1.74,6106,112.942063,122.841837,132.517133,139.044228,I,Above,Gable,0,5701,,33.89735967,0,0,,,,1,1,,0.03,nav,1,1965,2,, -464,NJBF000052360,6 SUNSET BLVD.,Longport,NJ,39.31415487,-74.53551462,RES1,3001,,16,NE,1963,1959,3102,2,1,2123.515191,2123.515191,3507,NO,26.3,39.28,1,-0.67,6106,112.946072,122.844959,132.52018,139.047706,I,Above,Hip,0,5701,,32.79157971,0,0,,,,1,1,,0.03,nav,1,1963,2,, -465,NJBF000052719,,Longport,NJ,39.31671957,-74.51954135,RES1,3001,,NaN,NE,1969,0,3102,2,1,2403.074903,2403.074903,3505,NO,35.34,47.05,3,3.54,6106,113.248251,123.093603,132.777474,139.337344,I,Above,Flat,0,5701,,41.19235914,0,0,,,,1,1,,0.03,nav,1,1969,2,, -466,NJBF000052707,,Longport,NJ,39.31665904,-74.5196909,RES1,3001,,NaN,NE,2014,0,3102,2,1,1985.837954,1985.837954,3505,NO,33.63,45.48,3,4.14,6106,113.245951,123.091688,132.775439,139.335076,I,Above,Flat,0,5701,,39.55625303,0,0,,,,1,1,,0.03,nav,1,2014,2,, -467,NJBF000052922,25 SO 33RD AVE,Longport,NJ,39.31780253,-74.51968849,RES1,3001,,18,NE,1954,1954,3102,1,1,1210.608348,1210.608348,3505,NO,13.46,23.02,3,-2.05,6106,113.228412,123.078407,132.762894,139.321125,I,Above,Gable,0,5701,,18.23816976,0,1.1,,,,1,1,,0.03,nav,1,1954,1,, -468,NJBF000053108,5 SO 34TH AVE.,Longport,NJ,39.31872271,-74.51929142,RES1,3001,,20,NE,2009,2009,3102,3,1,1077.063123,1077.063123,3505,NO,30.73,43.51,3,-2.16,6106,113.222892,123.074657,132.75992,139.317782,I,Above,Flat,0,5701,,37.11978061,0,0,,,,1,1,,0.03,nav,1,2009,3,, -469,NJBF000052831,3019 VENTNOR AVE,Longport,NJ,39.31737354,-74.52295877,RES1,3001,,18,NE,1969,1969,3102,2,1,2015.42688,2015.42688,3505,NO,37.87,52.64,3,5.87,6106,113.164386,123.026148,132.70869,139.260535,I,Above,Gable,0,5701,,45.25782506,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, -470,NJBF000052862,4 NO 31ST AVE,Longport,NJ,39.31751257,-74.52313154,RES1,3001,,17,NE,1954,1954,3102,1,1,2152.148476,2152.148476,3505,NO,19.83,26.36,3,3.15,6106,113.158504,123.021498,132.704045,139.255323,I,Above,Hip,0,5701,,23.09637056,0,0,,,,1,1,,0.03,nav,1,1954,1,, -471,NJBF000053215,27 NO YARMOUTH AVE,Longport,NJ,39.31912628,-74.52178154,RES1,3001,,20,NE,2017,2017,3102,2,1,957.6481058,957.6481058,3505,NO,36.29,42.41,3,3.68,6106,113.162806,123.026326,132.710532,139.262482,I,Above,Gable,0,5701,,39.34964311,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, -472,NJBF000053157,31 NO 32ND AVE,Longport,NJ,39.3189285,-74.52235983,RES1,3001,,18,NE,1950,1950,3102,2,1,762.3913399,762.3913399,3505,NO,40.78,52.17,3,5.24,6106,113.15335,123.018509,132.70231,139.253277,I,Above,Gable,0,5701,,46.47324119,0,0,,,,1,1,,0.03,nav,1,1950,2,, -473,NJBF000053132,25 NO 32ND AVE,Longport,NJ,39.31881616,-74.52226143,RES1,3001,,18,NE,1952,1952,3102,1,1,1316.613927,1316.613927,3505,NO,18.54,26.31,3,7.55,6106,113.157213,123.021547,132.70533,139.256677,I,Above,Gable,0,5701,,22.42326628,0,0,,,,1,1,,0.03,nav,1,1952,1,, -474,NJBF000053148,12 SO 36TH AVE,Longport,NJ,39.31889574,-74.51827818,RES1,3001,,20,NE,2006,2006,3102,3,1,2099.969034,2099.969034,3505,NO,50.17,63.98,3,7.01,6106,113.242187,123.090404,132.776324,139.336072,I,Above,Flat,0,5701,,57.07244926,0,0,,,,1,1,,0.03,nav,1,2006,3,, -475,NJBF000053436,17 NO 34TH AVE,Longport,NJ,39.3199285,-74.5204575,RES1,3001,,20,NE,2010,2010,3102,3,1,1874.682071,1874.682071,3505,NO,54.39,63.1,3,0.37,6106,113.179168,123.040189,132.725534,139.279207,I,Above,Gable,0,5701,,58.7433802,0,0,,,,1,1,,0.03,nav,1,2010,3,, -476,NJBF000053405,13 NO 34TH AVE,Longport,NJ,39.31982728,-74.52032629,RES1,3001,,20,NE,2017,2017,3102,3,1,1196.715305,1196.715305,3505,NO,63,72.93,3,8.25,6106,113.183587,123.043687,132.729044,139.283153,I,Above,Gable,0,5701,,67.96630376,0,1.1,,,,1,1,,0.03,nav,1,2017,3,, -477,NJBF000051856,115 SO 24TH AVE,Longport,NJ,39.31128002,-74.52583683,RES1,3001,,20,NE,1990,1990,3102,3,1,1410.115196,1410.115196,3505,NO,34.94,45.09,3,0.63,6106,113.197886,123.04746,132.724117,139.27738,I,Above,Flat,0,5701,,40.01589725,0,0,,,,1,1,,0.03,nav,1,1990,3,, -478,NJBF000053537,102 NO 34TH AVE,Longport,NJ,39.32030672,-74.52133158,RES1,3001,,20,NE,2004,2004,3102,2,1,2412.372045,2412.372045,3505,NO,35.82,46.94,3,0.04,6106,113.154453,123.02048,132.705588,139.256772,I,Above,Hip,0,5701,,41.37930927,0,0,,,,1,1,,0.03,nav,1,2004,2,, -479,NJBF000053920,130 NO 36TH AVE,Longport,NJ,39.32177046,-74.52097961,RES1,3001,,18,NE,1950,1950,3102,1,1,749.8489177,749.8489177,3505,NO,17.48,32.43,3,-0.3,6106,113.139781,123.009682,132.695746,139.245402,I,Above,Gable,0,5701,,24.95685417,0,0,,,,1,1,,0.03,nav,1,1950,1,, -480,NJBF000051507,116 SO 18TH AVE,Longport,NJ,39.3077805,-74.530962,RES1,3001,,21,NE,2014,2014,3102,3,1,2456.693839,2456.693839,3505,NO,60.9,75.13,3,2.46,6106,113.144648,122.999817,132.671087,139.21772,I,Above,Gable,0,5701,,68.01156725,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, -481,NJBF000052688,28 SO WOODCREST AVE,Longport,NJ,39.31656583,-74.52136094,RES1,3001,,18,NE,1950,1950,3102,1,1,930.0103555,930.0103555,3505,NO,19.04,32.43,3,5.31,6106,113.211347,123.063544,132.746356,139.302662,I,Above,Gable,0,5701,,25.73256342,0,0,,,,1,1,,0.03,nav,1,1950,1,, -482,NJBF000052533,4 SO MANOR AVE,Longport,NJ,39.31538787,-74.52348076,RES1,3001,,20,NE,2016,2016,3102,3,1,1497.46202,1497.46202,3505,NO,31.8,36.92,3,0.19,6106,113.183962,123.040253,132.721198,139.27452,I,Above,Gable,0,5701,,34.36058529,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, -483,NJBF000053094,,Longport,NJ,39.31864925,-74.51836167,RES1,3001,,NaN,NE,1969,0,3102,2,1,2138.009278,2138.009278,3505,NO,34.47,45.07,3,8.9,6106,113.244142,123.091801,132.777527,139.337423,I,Above,Flat,0,5701,,39.77152958,0,0,,,,1,1,,0.03,nav,1,1969,2,, -484,NJBF000052838,10 NO EVERGREEN AVE,Longport,NJ,39.31739454,-74.52372223,RES1,3001,,18,NE,1948,1948,3102,2,1,1202.791139,1202.791139,3505,NO,35.71,41.06,3,-0.68,6106,113.147608,123.012555,132.694743,139.244894,I,Above,Gable,0,5701,,38.38668689,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, -485,NJBF000052580,2805 SUNSET AVE,Longport,NJ,39.31570594,-74.52648377,RES1,3001,,19,NE,1978,1978,3103,2,1,1318.069412,1318.069412,3505,NO,31.39,45.79,3,7.3,6106,113.114474,122.984065,132.663844,139.210227,I,Above,Flat,0,5701,,38.59002191,0,0,,,,1,1,,0.03,nav,1,1978,2,, -486,NJBF000053989,217 NO 34TH AVE,Longport,NJ,39.32202752,-74.52247651,RES1,3001,,18,NE,1975,1975,3102,1,1,1820.894936,1820.894936,3505,NO,25.68,33.23,3,7.15,6106,113.103363,122.980441,132.665892,139.21171,I,Above,Gable,0,5701,,29.45637746,0,0,,,,1,1,,0.03,nav,1,1975,1,, -487,NJBF000053960,,Longport,NJ,39.32193202,-74.52238438,RES1,3001,,NaN,NE,1975,0,3102,2,1,1804.661035,1804.661035,3505,NO,22.87,33.53,3,1.68,6106,113.106843,122.983185,132.668632,139.214827,I,Above,Gable,0,5701,,28.20121234,0,0,,,,1,1,,0.03,nav,1,1975,2,, -488,NJBF000053030,9 SO COLGATE AVE,Longport,NJ,39.31833877,-74.51947864,RES1,3001,,18,NE,1950,1950,3102,1,1,1944.313543,1944.313543,3505,NO,13.28,26.98,3,1.17,6106,113.224706,123.075829,132.760759,139.318734,I,Above,Gable,0,5701,,20.13010293,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, -489,NJBF000054055,201 NO 36TH AVE,Longport,NJ,39.32223789,-74.52096653,RES1,3001,,21,NE,2008,2008,3102,3,1,1675.50231,1675.50231,3505,NO,46.13,53.49,3,1.41,6106,113.132953,123.00449,132.690795,139.239705,I,Above,Gable,0,5701,,49.80925881,0,1.1,,,,1,1,,0.03,nav,1,2008,3,, -490,NJBF000053061,3100 WINCHESTER AV,Longport,NJ,39.31848402,-74.52352443,RES1,3001,,18,NE,1947,1947,3102,1,1,1084.071907,1084.071907,3505,NO,26.15,32.14,3,7.87,6106,113.135044,123.003307,132.686276,139.235311,I,Above,Flat,0,5701,,29.14445307,0,0,,,,1,1,,0.03,nav,1,1947,1,, -491,NJBF000051594,111 SO 19TH AV,Longport,NJ,39.30884948,-74.53004567,RES1,3001,,22,NE,1951,2003,3102,2,1,3407.542165,3407.542165,3505,NO,39.87,47.99,3,3.9,6106,113.14693,123.003007,132.675666,139.22298,I,Above,Gable,0,5701,,43.9333129,0,0,,,,1,1,,0.03,nav,1,1951,2,, -492,NJBF000052660,3002 DEVON AVE,Longport,NJ,39.31634106,-74.52261684,COM4,3001,,18,ME,1967,1967,3401,1,1,1513.732457,1513.732457,3507,NO,16.56,21.93,1,0.83,6106,113.187755,123.044202,132.726229,139.280175,I,Above,Flat,0,5701,,19.24496292,0,0,,,,1,1,,0.03,nav,1,1967,1,, -493,NJBF000052693,37 SO 32ND ST,Longport,NJ,39.31659232,-74.52008273,RES1,3001,,18,NE,1960,1960,3102,2,1,988.6354269,988.6354269,3505,NO,33.3,42.6,3,0.46,6106,113.238521,123.085607,132.769104,139.328021,I,Above,Flat,0,5701,,37.94930883,0,0,,,,1,1,,0.03,nav,1,1960,2,, -494,NJBF000052686,,Longport,NJ,39.31655159,-74.5229229,RES1,3001,,NaN,NE,1969,0,3102,2,1,1203.273764,1203.273764,3505,NO,33.27,41.4,3,5.33,6106,113.177891,123.036383,132.718402,139.271422,I,Above,Hip,0,5701,,37.33788582,0,0,,,,1,1,,0.03,nav,1,1969,2,, -495,NJBF000052421,29TH & VENTNOR AVES,Longport,NJ,39.31456761,-74.52512258,RES1,3001,,NaN,NE,1969,0,3102,2,1,2244.362303,2244.362303,3505,NO,28.04,33.13,3,0.87,6106,113.161485,123.02119,132.700764,139.251623,I,Above,Gable,0,5701,,30.58283329,0,0,,,,1,1,,0.03,nav,1,1969,2,, -496,NJBF000052422,29TH & VENTNOR AVES,Longport,NJ,39.314598,-74.5253135,RES1,3001,,NaN,NE,1969,0,3102,2,1,1004.639122,1004.639122,3505,NO,36.94,45.27,3,-0.62,6106,113.156939,123.01752,132.697029,139.247442,I,Above,Gable,0,5701,,41.10514769,0,0,,,,1,1,,0.03,nav,1,1969,2,, -497,NJBF000052461,29TH & VENTNOR AVES,Longport,NJ,39.31485974,-74.52506341,REL1,3004,,NaN,ME,1969,0,3401,1,1,11677.45836,11677.45836,3507,NO,13.12,27.45,1,-0.4,6106,113.158206,123.018809,132.698625,139.249241,I,Above,Hip,0,NaN,,20.28614163,0,0,,,,1,1,,0.03,nav,1,1969,1,, -498,NJBF000053380,11 NO 34TH AVE,Longport,NJ,39.31970981,-74.52019633,RES1,3001,,19,NE,2014,2014,3102,3,1,1543.475911,1543.475911,3505,NO,44.1,53.24,3,7.7,6106,113.188192,123.047325,132.732683,139.287244,I,Above,Gable,0,5701,,48.6737439,0,1.1,,,,1,1,,0.03,nav,1,2014,3,, -499,NJBF000053316,108 NO 32ND AVE,Longport,NJ,39.31949931,-74.52341914,RES1,3001,,20,NE,2015,2015,3102,2,1,1568.622834,1568.622834,3505,NO,27.03,38.38,3,3.89,6106,113.121673,122.993317,132.676942,139.224695,I,Above,Hip,0,5701,,32.70893913,0,0,,,,1,1,,0.03,nav,1,2015,2,, -500,NJBF000053283,106 NO 32ND AVE,Longport,NJ,39.31937747,-74.52329101,RES1,3001,,20,NE,2015,2015,3102,2,1,819.6716681,819.6716681,3505,NO,36.41,41.96,3,4.96,6106,113.126317,122.996979,132.680594,139.22882,I,Above,Hip,0,5701,,39.1850511,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, -501,NJBF000053367,3300 WINCHESTER AVE,Longport,NJ,39.31966742,-74.52147151,RES1,3001,,18,NE,1960,1960,3102,2,1,1194.347688,1194.347688,3505,NO,20.6,34,3,-2.16,6106,113.161215,123.025463,132.71014,139.261978,I,Above,Gable,0,5701,,27.30156304,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, -502,NJBF000053324,4 NO 35TH AVE,Longport,NJ,39.3195185,-74.5197665,RES1,3001,,18,NE,1956,1956,3102,2,1,946.24856,946.24856,3505,NO,39.21,53.91,3,6.22,6106,113.200406,123.057064,132.742539,139.298296,I,Above,Gable,0,5701,,46.56217924,0,0,,,,1,1,,0.03,nav,1,1956,2,, -503,NJBF000053336,124 NO WOODCREST AVE,Longport,NJ,39.31954963,-74.52421479,RES1,3001,,20,NE,2004,2004,3102,3,1,1328.04483,1328.04483,3505,NO,45.1,51.36,3,3.43,6106,113.103683,122.978788,132.662069,139.207938,I,Above,Gable,0,5701,,48.22990892,0,0,,,,1,1,,0.03,nav,1,2004,3,, -504,NJBF000052958,11 NO 31ST AV,Longport,NJ,39.31796417,-74.52300154,RES1,3001,,18,NE,1950,1950,3102,2,1,1313.535838,1313.535838,3505,NO,31.74,37.75,3,5.97,6106,113.154339,123.018508,132.701405,139.252339,I,Above,Flat,0,5701,,34.74135733,0,0,,,,1,1,,0.03,nav,1,1950,2,, -505,NJBF000053791,112 NO 36TH AVE,Longport,NJ,39.32129241,-74.52060275,RES1,3001,,18,NE,1955,1955,3102,2,1,1233.224151,1233.224151,3505,NO,38.55,46.54,3,3.33,6106,113.155236,123.021833,132.707843,139.259114,I,Above,Gable,0,5701,,42.54549422,0,0,,,,1,1,,0.03,nav,1,1955,2,, -506,NJBF000052952,27 SO 35TH AVE,Longport,NJ,39.3179506,-74.5177172,RES1,3001,,22,NE,2004,2004,3102,3,1,2432.383636,2432.383636,3505,NO,44.12,57.99,3,6.74,6106,113.268787,123.111222,132.796884,139.358973,I,Above,Flat,0,5701,,51.05456655,0,0,,,,1,1,,0.03,nav,1,2004,3,, -507,NJBF000053974,3306 AMHERST AV,Longport,NJ,39.32197619,-74.52342686,RES1,3001,,18,NE,1951,1951,3102,1,1,1198.539658,1198.539658,3505,NO,12.84,25.03,3,0.6,6106,113.083547,122.964391,132.649361,139.193071,I,Above,Gable,0,5701,,18.93671746,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, -508,NJBF000053147,24 NO YARMOUTH AVE,Longport,NJ,39.31889446,-74.52200667,RES1,3001,,18,NE,2000,2000,3102,2,1,1247.365722,1247.365722,3505,NO,41.39,49.4,3,2.71,6106,113.161504,123.025086,132.709042,139.260834,I,Above,Hip,0,5701,,45.39617919,0,0,,,,1,1,,0.03,nav,1,2000,2,, -509,NJBF000052566,2808 SUNSET AVE,Longport,NJ,39.31560504,-74.52613433,RES1,3001,,18,NE,2016,2016,3102,2,1,879.1773648,879.1773648,3505,NO,37.23,50,3,7.82,6106,113.123567,122.991362,132.671225,139.218523,I,Above,Gable,0,5701,,43.61594833,0,0,,,,1,1,,0.03,nav,1,2016,2,, -510,NJBF000051901,4 BAY HAVEN DR,Longport,NJ,39.31159937,-74.52865354,RES1,3001,,18,NE,1970,1970,3102,3,1,1338.69921,1338.69921,3505,NO,43.03,52.94,3,4.03,6106,113.132736,122.994614,132.670284,139.217265,I,Above,Flat,0,5701,,47.98364737,0,0,,,,1,1,,0.03,nav,1,1970,3,, -511,NJBF000052808,16 SO 32ND AVE,Longport,NJ,39.31724084,-74.52127695,RES1,3001,,18,NE,1950,1950,3102,1,1,1587.104637,1587.104637,3505,NO,25.28,34.87,3,8.23,6106,113.202734,123.057134,132.740432,139.296055,I,Above,Hip,0,5701,,30.07320292,0,0,,,,1,1,,0.03,nav,1,1950,1,, -512,NJBF000051678,116 SO 22ND AVE,Longport,NJ,39.30980666,-74.5276704,RES1,3001,,NaN,NE,1982,1982,3102,3,1,4064.618004,4064.618004,3505,NO,32.01,45.03,3,-3,6106,113.18214,123.032961,132.707514,139.258667,I,Above,Gable,0,5701,,38.51711035,0,0,,,,1,1,,0.03,nav,1,1982,3,, -513,NJBF000051616,105 SO 19TH AV,Longport,NJ,39.3090895,-74.53035791,RES1,3001,,18,NE,1955,1955,3102,1,1,2311.510685,2311.510685,3505,NO,17.51,24.78,3,4.98,6106,113.136475,122.994731,132.667482,139.213856,I,Above,Hip,0,5701,,21.14291867,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, -514,NJBF000051358,104 SO 13TH AVE,Longport,NJ,39.30548221,-74.53535373,RES1,3001,,20,NE,1990,1990,3103,2,1,3024.969476,3024.969476,3505,NO,41.01,47.87,3,5.83,6106,113.089168,122.95113,132.618385,139.158411,I,Above,Hip,0,5701,,44.44199119,0,1.2,,,,1,1,,0.03,nav,1,1990,2,, -515,NJBF000052352,44 SUNSET BLVD.,Longport,NJ,39.31412087,-74.53425229,RES1,3001,,16,NE,1960,1960,3102,2,1,1325.762322,1325.762322,3507,NO,32.2,46.04,1,2.9,6106,112.973462,122.867333,132.542935,139.073594,I,Above,Gable,0,5701,,39.1209743,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, -516,NJBF000052147,22 SUNSET BLVD.,Longport,NJ,39.3131265,-74.53623035,RES1,3001,,18,NE,1970,1970,3102,2,1,3100.644929,3100.644929,3507,NO,32.55,41.13,1,0.72,6102,112.947342,122.844712,132.518879,139.046266,I,Above,Flat,0,5701,,36.8413362,0,1.2,,,,1,1,,0.03,nav,1,1970,2,, -517,NJBF000052442,49 SUNSET BLVD.,Longport,NJ,39.3147155,-74.533887,RES1,3001,,18,NE,1978,1978,3102,2,1,1463.886499,1463.886499,3507,NO,27.66,41.9,1,2.81,6106,112.971779,122.866663,132.542847,139.073468,I,Above,Hip,0,5701,,34.78084371,0,0,,,,1,1,,0.03,nav,1,1978,2,, -518,NJBF000052236,32 SUNSET BLVD.,Longport,NJ,39.31354167,-74.53529031,RES1,3001,,16,NE,1960,1960,3102,1,1,2314.095729,2314.095729,3507,NO,17.47,27.61,1,-0.92,6106,112.960641,122.856132,132.530934,139.05997,I,Above,Hip,0,5701,,22.5398899,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, -519,NJBF000052432,47 SUNSET BLVD.,Longport,NJ,39.31464523,-74.53418699,RES1,3001,,18,NE,1978,1978,3102,2,1,1839.200785,1839.200785,3507,NO,23.49,30.24,1,-0.5,6106,112.966505,122.862269,132.538299,139.068301,I,Above,Gable,0,5701,,26.86228461,0,0,,,,1,1,,0.03,nav,1,1978,2,, -520,NJBF000052307,107 HOSPITALITY DRIVE,Longport,NJ,39.31387602,-74.53710139,RES1,3001,,19,NE,1999,1999,3102,2,1,2603.997942,2603.997942,3507,NO,35.64,45.77,1,-0.27,6106,112.916878,122.82069,132.49521,139.01925,I,Above,Hip,0,5701,,40.70817027,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, -521,NJBF000052118,16 SUNSET BLVD.,Longport,NJ,39.31296958,-74.5367416,RES1,3001,,18,NE,1987,1987,3102,3,1,1602.923729,1602.923729,3507,NO,39.34,53.39,1,-0.11,6106,112.939012,122.837678,132.51156,139.037934,I,Above,Flat,0,5701,,46.36448998,0,0,,,,1,1,,0.03,nav,1,1987,3,, -522,NJBF000054245,110 S SUMNER AVE,Margate City,NJ,39.32283903,-74.50745764,RES1,3001,,23,NE,2013,2013,3103,3,1,2009.454389,2009.454389,3505,NO,47.7,59.61,3,5.41,6106,113.418313,123.235066,132.929898,139.505979,I,Above,Hip,0,5701,,53.65681325,0,1.2,,,,1,1,,0.03,nav,1,2013,3,, -523,NJBF000054888,213 N JEFFERSON AVE,Margate City,NJ,39.32457089,-74.51851004,RES1,3001,,39,NE,2005,2005,3102,2,1,670.5418691,670.5418691,3507,NO,24.69,33.71,1,1.86,6106,113.151233,123.020689,132.709354,139.259736,I,Above,Flat,0,5701,,29.20168451,0,0,,,,1,1,,0.03,nav,1,2005,2,, -524,NJBF000054802,8801 ATLANTIC AVE,Margate City,NJ,39.32435205,-74.5070073,RES1,3001,,22,NE,2013,2013,3103,3,1,1346.753183,1346.753183,3505,NO,39.89,50.38,3,6.99,6106,113.4058,123.225679,132.921512,139.496372,I,Above,Hip,0,5701,,45.13416475,0,1.1,,,,1,1,,0.03,nav,1,2013,3,, -525,NJBF000053623,24 N COOLIDGE AVE,Margate City,NJ,39.32065115,-74.51914494,RES1,3001,,NaN,NE,1928,1928,3102,2,1,953.3558043,953.3558043,3507,NO,32.88,38.74,1,2.09,6106,113.196631,123.054835,132.741273,139.29673,I,Above,Gable,0,5701,,35.81051893,0,0,,,,1,1,,0.03,nav,1,1928,2,, -526,NJBF000060106,310 N ESSEX AVE,Margate City,NJ,39.33541368,-74.50221209,RES1,3001,,17,NE,1956,1956,3102,2,1,1815.813517,1815.813517,3505,NO,34.41,47.71,3,5.17,6106,113.3522,123.185014,132.887535,139.445652,I,Above,Hip,0,5701,,41.06131705,0,1.1,,,,1,1,,0.03,nav,1,1956,2,, -527,NJBF000056556,8807 AMHERST AVE,Margate City,NJ,39.32874504,-74.51236764,RES1,3001,,20,NE,2012,2012,3102,3,1,1129.20125,1129.20125,3505,NO,31.66,44.36,3,-2.58,6106,113.223847,123.080965,132.774756,139.330421,I,Above,Hip,0,5701,,38.01068065,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, -528,NJBF000054383,10 S UNION AVE,Margate City,NJ,39.32325398,-74.50973229,RES1,3001,,19,NE,2006,1915,3103,2,1,3029.666059,3029.666059,3505,NO,45.68,58.83,3,7.02,6106,113.362481,123.190249,132.883698,139.454829,I,Above,Gable,0,5701,,52.2512697,0,1.2,,,,1,1,,0.03,nav,1,2006,2,, -529,NJBF000059046,19 N BRUNSWICK AVE,Margate City,NJ,39.33343211,-74.49568604,RES1,3001,,18,NE,1928,1928,3102,2,1,1363.114083,1363.114083,3505,NO,37.01,48.44,3,5.5,6106,113.524002,123.323016,133.030775,139.606537,I,Above,Hip,0,5701,,42.7276,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, -530,NJBF000053687,13 S JEFFERSON AVE,Margate City,NJ,39.32088288,-74.51491052,RES1,3001,,16,NE,1925,1925,3102,1,2,939.9504598,939.9504598,3507,NO,19.29,30.92,1,1.64,6106,113.285105,123.126471,132.815445,139.379477,I,Above,Gable,0,5701,,25.10459601,0,0,,,,1,1,,0.03,nav,1,1925,1,, -531,NJBF000053714,13 S JEFFERSON AVE,Margate City,NJ,39.32099486,-74.51470736,RES1,3001,,16,NE,1925,1925,3102,1,2,973.7851162,973.7851162,3507,NO,15.84,28.01,1,2.36,6106,113.287852,123.12876,132.817916,139.382213,I,Above,Gable,0,5701,,21.9244761,0,0,,,,1,1,,0.03,nav,1,1925,1,, -532,NJBF000061672,7501 FREMONT AVE,Margate City,NJ,39.33804463,-74.49882726,RES1,3001,,17,NE,1953,1953,3103,1,1,2120.62408,2120.62408,3505,NO,21.94,36.68,3,3.67,6106,113.390515,123.215574,132.921177,139.475194,I,Above,Hip,0,5701,,29.31165943,0,0,,,,1,1,,0.03,nav,1,1953,1,, -533,NJBF000054278,3 S BENSON AVE,Margate City,NJ,39.32295363,-74.5122818,RES1,3001,,19,NE,2009,2009,3103,3,1,2374.62061,2374.62061,3505,NO,52.24,65.49,3,0.94,6106,113.311282,123.148811,132.840444,139.4069,I,Above,Hip,0,5701,,58.86424974,0,0,,,,1,1,,0.03,nav,1,2009,3,, -534,NJBF000056968,8008 VENTNOR AVE,Margate City,NJ,39.32963457,-74.49920073,COM1,3001,,NaN,ME,1969,0,3401,1,1,20431.67923,20431.67923,3507,NO,15.35,24.53,1,-0.5,6106,113.500356,123.303502,133.007286,139.587452,I,Above,Flat,0,NaN,,19.93927087,0,0,,,,1,1,,0.03,nav,1,1969,1,, -535,NJBF000060774,400 N DELAVAN AVE,Margate City,NJ,39.33652573,-74.50152541,RES1,3001,,17,NE,1952,1952,3102,2,1,2061.286394,2061.286394,3505,NO,36.4,42.43,3,3.43,6106,113.351866,123.18471,132.887914,139.443389,I,Above,Hip,0,5701,,39.4136746,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, -536,NJBF000054013,26 N JEFFERSON AVE,Margate City,NJ,39.322106,-74.516805,RES1,3001,,18,NE,2015,2015,3102,2,2,569.7431361,569.7431361,3507,NO,35.47,48.62,1,-0.81,6106,113.225445,123.079073,132.767562,139.325853,I,Above,Hip,0,5701,,42.04651173,0,0,,,,1,1,,0.03,nav,1,2015,2,, -537,NJBF000056894,318 N RUMSON AVE,Margate City,NJ,39.3294793,-74.51282715,RES1,3001,,17,NE,1967,1967,3102,2,1,2254.130571,2254.130571,3505,NO,28.51,35.44,3,4.94,6106,113.203059,123.064504,132.758213,139.311236,I,Above,Flat,0,5701,,31.97675941,0,1.2,,,,1,1,,0.03,nav,1,1967,2,, -538,NJBF000056548,111 N NASSAU AVE,Margate City,NJ,39.32871956,-74.50777484,RES1,3001,,17,NE,1925,1925,3102,2,1,3481.430762,3481.430762,3505,NO,33.64,46.31,3,7.01,6110,113.325062,123.162288,132.859169,139.424585,I,Above,Hip,0,5701,,39.97297345,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, -539,NJBF000056560,,Margate City,NJ,39.32875266,-74.50877809,RES1,3001,,NaN,NE,1969,0,3102,2,1,1756.584473,1756.584473,3505,NO,35.54,42.71,3,8.91,6106,113.302553,123.144206,132.840393,139.403664,I,Above,Flat,0,5701,,39.12223161,0,0,,,,1,1,,0.03,nav,1,1969,2,, -540,NJBF000057065,116 N KENYON AVE,Margate City,NJ,39.32985064,-74.50661226,RES1,3001,,17,NE,1951,1951,3102,2,1,1755.012038,1755.012038,3505,NO,35.57,47.1,3,-1.91,6106,113.334259,123.169976,132.868018,139.433286,I,Above,Hip,0,5701,,41.3337334,0,0,,,,1,1,,0.03,nav,1,1951,2,, -541,NJBF000054453,109 S RUMSON AVE,Margate City,NJ,39.32344377,-74.50648786,RES1,3001,,20,NE,1978,1978,3102,2,1,2372.815484,2372.815484,3505,NO,21.23,27.18,3,-2.13,6106,113.430554,123.245225,132.941032,139.51815,I,Above,Gable,0,5701,,24.20789586,0,0,,,,1,1,,0.03,nav,1,1978,2,, -542,NJBF000055663,19 S KNIGHT AVE,Margate City,NJ,39.32668445,-74.50266946,RES1,3001,,17,NE,1952,1952,3101,2,1,1742.06494,1742.06494,3505,NO,42.4,48.17,3,4.2,6106,113.466713,123.275637,132.975644,139.555116,I,Above,Flat,0,5701,,45.28601336,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, -543,NJBF000059602,212 N DOUGLAS AVE,Margate City,NJ,39.3345285,-74.500297,RES1,3001,,17,NE,1956,1956,3102,2,1,1249.928244,1249.928244,3505,NO,30.48,37.09,3,-2.92,6106,113.406904,123.228916,132.932882,139.497296,I,Above,Gable,0,5701,,33.78370368,0,0,,,,1,1,,0.03,nav,1,1956,2,, -544,NJBF000057905,119 N HANOVER AVE,Margate City,NJ,39.33136681,-74.50399148,RES1,3001,,17,NE,1957,1957,3102,1,1,1555.527763,1555.527763,3507,NO,14.4,25.04,1,2.04,6106,113.370182,123.199138,132.899527,139.466314,I,Above,Hip,0,5701,,19.7173477,0,1.1,,,,1,1,,0.03,nav,1,1957,1,, -545,NJBF000061283,301 N ARGYLE AVE,Margate City,NJ,39.33737339,-74.49729351,RES1,3001,,17,NE,1957,1957,3103,1,1,2429.254796,2429.254796,3505,NO,16.85,30.15,3,5.86,6106,113.433685,123.250308,132.957202,139.516037,I,Above,Hip,0,5701,,23.50074401,0,1.2,,,,1,1,,0.03,nav,1,1957,1,, -546,NJBF000058550,102 N EXETER AVE,Margate City,NJ,39.33250469,-74.50005443,RES1,3001,,NaN,NE,1952,0,3101,1,1,1218.910236,1218.910236,3505,NO,23.13,30.37,3,4.97,6106,113.440755,123.255992,132.959788,139.530908,I,Above,Hip,0,5701,,26.75294211,0,0,,,,1,1,,0.03,nav,1,1952,1,, -547,NJBF000055575,103 S JEROME AVE,Margate City,NJ,39.32646207,-74.50177033,RES1,3001,,19,NE,1966,1966,3102,2,1,1659.496657,1659.496657,3505,NO,39.21,52.89,3,3.48,6106,113.489659,123.294048,132.994682,139.576212,I,Above,Hip,0,5701,,46.04858339,0,0,,,,1,1,,0.03,nav,1,1966,2,, -548,NJBF000055669,210 N WILSON AVE,Margate City,NJ,39.32670145,-74.51468528,RES1,3001,,43,NE,1950,1950,3102,2,2,1096.406775,1096.406775,3505,NO,35.59,46.42,3,7.1,6106,113.203097,123.063504,132.755188,139.310046,I,Above,Gable,0,5701,,41.00483675,0,0,,,,1,1,,0.03,nav,1,1950,2,, -549,NJBF000057658,8102 WINCHESTER AVE,Margate City,NJ,39.3309507,-74.50195542,RES1,3001,,17,NE,1950,1950,3101,1,1,1496.364897,1496.364897,3505,NO,17.85,31.12,3,1.9,6106,113.420954,123.23987,132.941757,139.51355,I,Above,Flat,0,5701,,24.48327473,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, -550,NJBF000057601,29 N HAVERFORD AVE,Margate City,NJ,39.33086342,-74.50191049,RES1,3001,,17,NE,1949,1949,3102,2,1,1329.27816,1329.27816,3505,NO,25.54,37.8,3,-2.37,6106,113.423201,123.241661,132.943562,139.515664,I,Above,Flat,0,5701,,31.66605573,0,0,,,,1,1,,0.03,nav,1,1949,2,, -551,NJBF000057467,6 N FRANKLIN AVE,Margate City,NJ,39.33061762,-74.49899691,RES1,3001,,18,NE,1925,1925,3102,2,1,1315.782541,1315.782541,3505,NO,33.94,42.93,3,-1.23,6106,113.490817,123.296006,133.000234,139.578419,I,Above,Hip,0,5701,,38.4340862,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -552,NJBF000058405,217 N IROQUOIS AVE,Margate City,NJ,39.33225369,-74.50566476,RES1,3001,,17,NE,1950,1950,3102,2,1,1183.740608,1183.740608,3505,NO,21.6,27.3,3,-1.8,6106,113.320646,123.159494,132.858809,139.419936,I,Above,Hip,0,5701,,24.45023369,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, -553,NJBF000058579,205 N HAVERFORD AVE,Margate City,NJ,39.3325495,-74.5035065,RES1,3001,,17,NE,1961,1961,3102,2,1,1245.434042,1245.434042,3505,NO,30.13,43.91,3,6.14,6106,113.364014,123.194346,132.895369,139.459901,I,Above,Gable,0,5701,,37.01729172,0,0,,,,1,1,,0.03,nav,1,1961,2,, -554,NJBF000056990,217 N OSBORNE AVE,Margate City,NJ,39.32969084,-74.50969129,RES1,3001,,17,NE,1953,1953,3101,1,1,1504.067349,1504.067349,3505,NO,18.88,28.91,3,1.42,6106,113.26888,123.117418,132.813246,139.37251,I,Above,Gable,0,5701,,23.89353481,0,0,,,,1,1,,0.03,nav,1,1953,1,, -555,NJBF000058907,208 N GLADSTONE AVE,Margate City,NJ,39.33315925,-74.50283674,RES1,3001,,17,NE,1952,1952,3102,2,1,1206.343493,1206.343493,3505,NO,31.54,36.59,3,0.14,6106,113.37014,123.199325,132.900993,139.465048,I,Above,Hip,0,5701,,34.06606092,0,0,,,,1,1,,0.03,nav,1,1952,2,, -556,NJBF000058340,212 N HANOVER AVE,Margate City,NJ,39.33213224,-74.50524145,RES1,3001,,17,NE,1945,1945,3101,1,1,1783.027566,1783.027566,3505,NO,13.85,21.99,3,1.64,6106,113.331729,123.168374,132.867981,139.43028,I,Above,Hip,0,5701,,17.91892744,0,0,,,,1,1,,0.03,nav,1,1945,1,, -557,NJBF000058572,7507 VENTNOR AVE,Margate City,NJ,39.33253617,-74.49432759,RES1,3001,,18,NE,1969,1969,3102,2,1,2062.47846,2062.47846,3505,NO,37.05,48.52,3,8.38,6106,113.56651,123.35718,133.065977,139.646863,I,Above,Hip,0,5701,,42.78331075,0,0,,,,1,1,,0.03,nav,1,1969,2,, -558,NJBF000058198,,Margate City,NJ,39.3318855,-74.49591118,RES1,3001,,NaN,NE,1969,0,3102,2,1,1024.898019,1024.898019,3505,NO,24.67,30.89,3,2.02,6106,113.540805,123.336417,133.043636,139.623883,I,Above,Hip,0,5701,,27.77868257,0,0,,,,1,1,,0.03,nav,1,1969,2,, -559,NJBF000058148,,Margate City,NJ,39.331791,-74.49583671,RES1,3001,,NaN,NE,1969,0,3102,2,1,1120.953984,1120.953984,3505,NO,37.65,52.35,3,4.64,6106,113.543762,123.338787,133.046049,139.626698,I,Above,Flat,0,5701,,44.99999675,0,0,,,,1,1,,0.03,nav,1,1969,2,, -560,NJBF000059007,17 N BRUNSWICK AVE,Margate City,NJ,39.33335357,-74.49561834,RES1,3001,,19,NE,1928,1928,3102,2,1,1727.26068,1727.26068,3505,NO,19.19,25.46,3,-2.82,6106,113.526595,123.325099,133.032903,139.609035,I,Above,Hip,0,5701,,22.32528026,0,0,,,,1,1,,0.03,nav,1,1928,2,, -561,NJBF000053658,,Margate City,NJ,39.32077904,-74.51861208,RES1,3001,,NaN,NE,1969,0,3102,2,1,2529.008542,2529.008542,3507,NO,27.1,40.95,1,2.86,6106,113.206255,123.062702,132.749498,139.305915,I,Above,Flat,0,5701,,34.02095625,0,0,,,,1,1,,0.03,nav,1,1969,2,, -562,NJBF000053299,4 S COOLIDGE AVE,Margate City,NJ,39.31942669,-74.5179372,RES1,3001,,NaN,NE,1951,0,3102,2,1,1191.529102,1191.529102,3507,NO,36.56,45.51,1,0.74,6106,113.241475,123.090219,132.776637,139.336391,I,Above,Gable,0,5701,,41.03430972,0,0,,,,1,1,,0.03,nav,1,1951,2,, -563,NJBF000053779,12 N MADISON AVE,Margate City,NJ,39.32125811,-74.51729279,RES1,3001,,20,NE,1988,1988,3102,2,1,1649.927954,1649.927954,3507,NO,35.18,40.53,1,-0.54,6106,113.227644,123.080306,132.768087,139.326618,I,Above,Flat,0,5701,,37.85285794,0,0,,,,1,1,,0.03,nav,1,1988,2,, -564,NJBF000056625,109 S ESSEX AVE,Margate City,NJ,39.32889939,-74.4956918,RES1,3001,,21,NE,2012,2012,3102,3,1,1912.388627,1912.388627,3505,NO,35.39,46.36,3,0.17,6106,113.588026,123.373971,133.08055,139.668688,I,Above,Flat,0,5701,,40.8723587,0,0,,,,1,1,,0.03,nav,1,2012,3,, -565,NJBF000058397,104 N FRONTENAC AVE,Margate City,NJ,39.332239,-74.5009365,RES1,3001,,17,NE,1955,1955,3102,2,1,1674.087325,1674.087325,3505,NO,30.73,42.03,3,-1.07,6106,113.425081,123.243367,132.946379,139.516639,I,Above,Gable,0,5701,,36.38141939,0,1.2,,,,1,1,,0.03,nav,1,1955,2,, -566,NJBF000059098,8016 AMHERST AVE,Margate City,NJ,39.33354405,-74.50335221,RES1,3001,,17,NE,1952,1952,3101,1,1,1543.57822,1543.57822,3505,NO,14.55,21.73,3,-1.36,6106,113.353335,123.185865,132.887197,139.44914,I,Above,Flat,0,5701,,18.14117943,0,0,,,,1,1,,0.03,nav,1,1952,1,, -567,NJBF000057691,114 N HANOVER AVE,Margate City,NJ,39.33100746,-74.50416414,RES1,3001,,17,NE,1950,1950,3102,1,1,1084.861934,1084.861934,3507,NO,20.4,26.13,1,1.13,6106,113.371519,123.200151,132.900321,139.46769,I,Above,Hip,0,5701,,23.26407921,0,0,,,,1,1,,0.03,nav,1,1950,1,, -568,NJBF000060859,7 E GILMAR CIRCLE,Margate City,NJ,39.33665516,-74.50615408,RES1,3001,,17,NE,1965,1965,3101,1,1,1660.692324,1660.692324,3505,NO,13.29,23.8,3,-2,6106,113.247701,123.101232,132.800809,139.347601,I,Above,Gable,0,5701,,18.54371932,0,0,,,,1,1,,0.03,nav,1,1965,1,, -569,NJBF000059200,26 WEST DRIVE,Margate City,NJ,39.3337624,-74.49555854,RES1,3001,,18,NE,1925,1925,3102,2,1,1426.92366,1426.92366,3505,NO,33.57,41.76,3,5.87,6106,113.52218,123.321565,133.029502,139.604349,I,Above,Hip,0,5701,,37.66453794,0,0,,,,1,1,,0.03,nav,1,1925,2,, -570,NJBF000063626,5 ARGYLE COURT,Margate City,NJ,39.34223133,-74.50273838,RES1,3001,,19,NE,1990,1990,3102,2,1,1767.019506,1767.019506,3505,NO,44.65,55.96,3,7.54,6106,113.246676,123.09944,132.801744,139.333303,I,Above,Hip,0,5701,,50.30616102,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, -571,NJBF000064006,7401 BAYSHORE DR,Margate City,NJ,39.34331723,-74.50236747,RES1,3001,,20,NE,1985,1985,3102,2,1,1896.142455,1896.142455,3505,NO,33.13,39.01,3,3.5,6106,113.240259,123.093948,132.796476,139.324008,I,Above,Flat,0,5701,,36.07127228,0,0,,,,1,1,,0.03,nav,1,1985,2,, -572,NJBF000059242,8509 WELLINGTON AVE,Margate City,NJ,39.33383729,-74.51087313,RES1,3001,,19,NE,1988,1988,3102,2,1,2070.543298,2070.543298,3505,NO,24.39,30.76,3,-2.97,6106,113.18324,123.049524,132.745428,139.291487,I,Above,Hip,0,5701,,27.57297085,0,0,,,,1,1,,0.03,nav,1,1988,2,, -573,NJBF000060234,9 SEASIDE COURT,Margate City,NJ,39.33562553,-74.50804749,RES1,3001,,19,NE,1992,1992,3101,2,1,1784.176211,1784.176211,3505,NO,28.09,41.65,3,6.94,6106,113.220289,123.0793,132.777393,139.323875,I,Above,Hip,0,5701,,34.87318936,0,1.1,,,,1,1,,0.03,nav,1,1992,2,, -574,NJBF000060298,11 SEASIDE COURT,Margate City,NJ,39.33573595,-74.50814455,RES1,3001,,18,NE,1996,1996,3101,2,1,1751.977037,1751.977037,3505,NO,36.09,45.43,3,3.84,6106,113.216574,123.076327,132.774361,139.320304,I,Above,Flat,0,5701,,40.75917754,0,1.1,,,,1,1,,0.03,nav,1,1996,2,, -575,NJBF000061773,21 HARBOUR LANE,Margate City,NJ,39.33823201,-74.50780306,RES1,3001,,18,NE,1978,1978,3102,2,1,2127.157867,2127.157867,3505,NO,27.48,36.49,3,6.4,6106,113.189222,123.054323,132.752767,139.291102,I,Above,Gable,0,5701,,31.98748446,0,1.1,,,,1,1,,0.03,nav,1,1978,2,, -576,NJBF000061740,6 HARBOUR LANE,Margate City,NJ,39.33817294,-74.50916766,RES1,3001,,18,NE,1981,1981,3102,2,1,1359.160524,1359.160524,3505,NO,27.66,36.11,3,-1.25,6106,113.159814,123.030819,132.72828,139.264223,I,Above,Gable,0,5701,,31.88486071,0,1.1,,,,1,1,,0.03,nav,1,1981,2,, -577,NJBF000062956,7802 BAYSHORE DR,Margate City,NJ,39.34057593,-74.50655215,RES1,3001,,19,NE,1964,1964,3102,2,1,2711.3769,2711.3769,3505,NO,37.78,51.77,3,1.65,6106,113.184586,123.05024,132.74961,139.281716,I,Above,Hip,0,5701,,44.77241191,0,1.2,,,,1,1,,0.03,nav,1,1964,2,, -578,NJBF000060035,308 N ESSEX AVE,Margate City,NJ,39.33528082,-74.50207235,RES1,3001,,20,NE,2015,2015,3102,3,1,1849.081874,1849.081874,3505,NO,40.55,55.35,3,-1.58,6106,113.357155,123.18899,132.891607,139.450415,I,Above,Hip,0,5701,,47.95308707,0,0,,,,1,1,,0.03,nav,1,2015,3,, -579,NJBF000059299,111 N DELAVAN AVE,Margate City,NJ,39.3339615,-74.4985235,RES1,3001,,45,NE,1960,1960,3103,1,2,1270.657009,1270.657009,3505,NO,21.2,33.82,3,3.71,6110,113.453972,123.266716,132.972086,139.541403,I,Above,Hip,0,5701,,27.51041097,0,0,,,,1,1,,0.35,nav,1,1960,1,, -580,NJBF000056997,115 N LANCASTER AVE,Margate City,NJ,39.32971173,-74.50689854,RES1,3001,,17,NE,1945,1945,3102,2,1,1340.831199,1340.831199,3505,NO,30.92,37.11,3,4.87,6106,113.329954,123.166484,132.86428,139.429284,I,Above,Hip,0,5701,,34.01423113,0,0,,,,1,1,,0.03,nav,1,1945,2,, -581,NJBF000057247,19 N HUNTINGTON AVE,Margate City,NJ,39.33022291,-74.50210116,RES1,3001,,18,NE,1925,1925,3102,2,1,1248.67472,1248.67472,3505,NO,34.68,48.13,3,5.32,6106,113.428146,123.245521,132.947102,139.520414,I,Above,Hip,0,5701,,41.40785153,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -582,NJBF000057790,7801 VENTNOR AVE,Margate City,NJ,39.33117045,-74.49717666,RES1,3001,,NaN,NE,1945,1945,3102,1,1,1340.857354,1340.857354,3505,NO,21.32,26.46,3,7.06,6106,113.523039,123.322025,133.027954,139.607999,I,Above,Flat,0,5701,,23.89052593,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, -583,NJBF000056445,15 S HAVERFORD AVE,Margate City,NJ,39.32848402,-74.49971965,RES1,3001,,17,NE,1937,1937,3102,2,1,1019.893334,1019.893334,3505,NO,37.45,52.11,3,7.27,6106,113.505449,123.307345,133.010343,139.592017,I,Above,Flat,0,5701,,44.77840513,0,1.1,,,,1,1,,0.03,nav,1,1937,2,, -584,NJBF000056922,4 N HAVERFORD AVE,Margate City,NJ,39.32954187,-74.50113716,RES1,3001,,17,NE,1925,1925,3101,1,1,1321.109149,1321.109149,3505,NO,16.46,26.43,3,5.39,6106,113.459109,123.270287,132.972451,139.549193,I,Above,Gable,0,5701,,21.44311046,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, -585,NJBF000056889,2 N HAVERFORD AVE,Margate City,NJ,39.3294655,-74.501041,RES1,3001,,18,NE,1925,1925,3102,3,1,664.2603103,664.2603103,3505,NO,42.83,52.35,3,-0.66,6106,113.462325,123.272858,132.975077,139.552174,I,Above,Hip,0,5701,,47.58714996,0,1.2,,,,1,1,,0.03,nav,1,1925,3,, -586,NJBF000054730,9 S SUMNER AVE,Margate City,NJ,39.32417977,-74.50814083,RES1,3001,,18,NE,1950,1950,3101,1,1,2025.644048,2025.644048,3505,NO,19.74,32.3,3,1.68,6106,113.383533,123.207659,132.902614,139.475522,I,Above,Flat,0,5701,,26.02067676,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, -587,NJBF000058522,19 N DELAVAN AVE,Margate City,NJ,39.3324616,-74.49711615,RES1,3001,,45,NE,1929,1929,3102,2,2,1223.49583,1223.49583,3505,NO,29.14,42.01,3,1.45,6106,113.506116,123.308554,133.014844,139.591302,I,Above,Flat,0,5701,,35.57629943,0,1.2,,,,1,1,,0.03,nav,1,1929,2,, -588,NJBF000059899,114 N BARCLAY AVE,Margate City,NJ,39.33504626,-74.49708055,RES1,3001,,17,NE,1950,1950,3102,2,1,2175.061719,2175.061719,3505,NO,41.95,54.36,3,6.58,6106,113.47066,123.280146,132.986948,139.554901,I,Above,Gable,0,5701,,48.1537029,0,0,,,,1,1,,0.03,nav,1,1950,2,, -589,NJBF000062777,9 BAYSHORE CT,Margate City,NJ,39.3402065,-74.5069755,RES1,3001,,19,NE,1965,1965,3102,2,1,1569.032494,1569.032494,3505,NO,30.45,40.38,3,7.63,6106,113.18027,123.046869,132.74593,139.278682,I,Above,Flat,0,5701,,35.41506686,0,1.1,,,,1,1,,0.03,nav,1,1965,2,, -590,NJBF000061617,417 N DELAVAN AVE,Margate City,NJ,39.33795567,-74.50235311,RES1,3001,,17,NE,1952,1952,3102,1,1,2112.445629,2112.445629,3505,NO,13.92,21.24,3,-2.52,6106,113.313713,123.154,132.856638,139.405556,I,Above,Hip,0,5701,,17.58089178,0,0,,,,1,1,,0.03,nav,1,1952,1,, -591,NJBF000060219,121 N BARCLAY AVE,Margate City,NJ,39.33559867,-74.49710401,RES1,3001,,17,NE,1930,1930,3102,2,1,1243.522235,1243.522235,3505,NO,42.87,53.28,3,8.48,6106,113.462453,123.273539,132.980401,139.546307,I,Above,Hip,0,5701,,48.07237739,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -592,NJBF000060722,8202 MARSHALL AVE,Margate City,NJ,39.3364505,-74.508909,RES1,3001,,17,NE,1971,1971,3101,1,1,1596.921663,1596.921663,3505,NO,10.66,23.5,3,-1.87,6106,113.189644,123.054771,132.752324,139.294481,I,Above,Gable,0,5701,,17.07769855,0,0,,,,1,1,,0.03,nav,1,1971,1,, -593,NJBF000058475,8103 MONMOUTH AVE,Margate City,NJ,39.33237695,-74.50332773,RES1,3001,,17,NE,1958,1958,3102,2,1,1682.317567,1682.317567,3505,NO,37.07,45.54,3,4.42,6106,113.370403,123.199456,132.900583,139.465941,I,Above,Flat,0,5701,,41.30564299,0,0,,,,1,1,,0.03,nav,1,1958,2,, -594,NJBF000060629,420 N HUNTINGTON AVE,Margate City,NJ,39.33629534,-74.50833192,RES1,3001,,17,NE,1964,1964,3101,1,1,1437.90372,1437.90372,3505,NO,18.56,30.96,3,1.57,6106,113.20458,123.066725,132.764676,139.30847,I,Above,Gable,0,5701,,24.75998412,0,1.2,,,,1,1,,0.03,nav,1,1964,1,, -595,NJBF000057474,106 N HANOVER AVE,Margate City,NJ,39.33063173,-74.50384765,RES1,3001,,17,NE,1950,1950,3102,1,1,1591.749544,1591.749544,3507,NO,16.53,29.32,1,0.02,6106,113.383843,123.209985,132.910305,139.47923,I,Above,Hip,0,5701,,22.92472886,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, -596,NJBF000057792,429 N PEMBROKE AVE,Margate City,NJ,39.33117599,-74.5120297,RES1,3001,,21,NE,1999,1999,3102,2,1,2876.607077,2876.607077,3505,NO,29.01,39.49,3,6.83,6106,113.195949,123.059255,132.753899,139.304595,I,Above,Hip,0,5701,,34.24625684,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, -597,NJBF000060506,305 N DELAVAN AVE,Margate City,NJ,39.33610098,-74.50060835,RES1,3001,,17,NE,1950,1950,3102,1,1,1390.102469,1390.102469,3505,NO,19.73,31.9,3,8.21,6106,113.378052,123.205739,132.909657,139.468171,I,Above,Hip,0,5701,,25.81908789,0,0,,,,1,1,,0.03,nav,1,1950,1,, -598,NJBF000062049,5 BAYCREST COURT,Margate City,NJ,39.33870947,-74.50876246,RES1,3001,,18,NE,1977,1977,3102,1,1,4864.655182,4864.655182,3505,NO,15.25,25.84,3,2.45,6106,113.161353,123.031992,132.729752,139.264627,I,Above,Hip,0,5701,,20.54535777,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, -599,NJBF000060281,305 N DOUGLAS AVE,Margate City,NJ,39.33570963,-74.50103851,RES1,3001,,17,NE,1962,1962,3102,2,1,1915.044579,1915.044579,3505,NO,33.46,48.24,3,-2.44,6106,113.373979,123.202484,132.905998,139.465151,I,Above,Gable,0,5701,,40.85002918,0,1.2,,,,1,1,,0.03,nav,1,1962,2,, -600,NJBF000060179,110 N ARGYLE AVE,Margate City,NJ,39.33554,-74.496093,RES1,3001,,19,NE,2002,2002,3102,2,1,813.3647597,813.3647597,3505,NO,43.93,50.89,3,8.93,6106,113.4856,123.292148,132.999901,139.567533,I,Above,Gable,0,5701,,47.41077842,0,0,,,,1,1,,0.03,nav,1,2002,2,, -601,NJBF000058590,202 N GRANVILLE AVE,Margate City,NJ,39.33257411,-74.5032408,RES1,3001,,17,NE,1954,1954,3102,2,1,1252.494631,1252.494631,3505,NO,41.67,46.96,3,7.73,6106,113.369523,123.198772,132.900008,139.46498,I,Above,Hip,0,5701,,44.31407985,0,1.1,,,,1,1,,0.03,nav,1,1954,2,, -602,NJBF000058930,211 N GRANVILLE AVE,Margate City,NJ,39.33320201,-74.50332398,RES1,3001,,17,NE,1950,1950,3101,1,1,1016.220095,1016.220095,3505,NO,24.02,32.98,3,7.24,6106,113.35879,123.190217,132.891509,139.454517,I,Above,Gable,0,5701,,28.5009901,0,0,,,,1,1,,0.03,nav,1,1950,1,, -603,NJBF000056410,14 S HAVERFORD AVE,Margate City,NJ,39.32840998,-74.50014734,RES1,3001,,18,NE,1935,1935,3101,2,1,1063.264108,1063.264108,3505,NO,26.03,36.76,3,-0.11,6106,113.497131,123.300628,133.003251,139.584277,I,Above,Flat,0,5701,,31.39423159,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, -604,NJBF000057638,110 S FREDERICKSBURG AVE,Margate City,NJ,39.33092488,-74.49121063,RES1,3001,,21,NE,2009,2009,3102,3,1,1462.624653,1462.624653,3505,NO,48.06,57.2,3,-2.84,6106,113.657815,123.43061,133.141908,139.732748,I,Above,Flat,0,5701,,52.63033632,0,0,,,,1,1,,0.03,nav,1,2009,3,, -605,NJBF000058732,219 N HUNTINGTON AVE,Margate City,NJ,39.33283101,-74.5046215,RES1,3001,,17,NE,1945,1945,3102,2,1,987.9466205,987.9466205,3505,NO,33.78,45.28,3,8.28,6106,113.335448,123.171445,132.871664,139.433245,I,Above,Gable,0,5701,,39.5306336,0,0,,,,1,1,,0.03,nav,1,1945,2,, -606,NJBF000058805,218 N HAVERFORD AVE,Margate City,NJ,39.33296599,-74.50442418,RES1,3001,,17,NE,1953,1953,3101,1,1,1549.160395,1549.160395,3505,NO,17.49,31.97,3,1.11,6106,113.337876,123.173408,132.873803,139.435383,I,Above,Gable,0,5701,,24.72729809,0,0,,,,1,1,,0.03,nav,1,1953,1,, -607,NJBF000060058,120 N BARCLAY AVE,Margate City,NJ,39.33533017,-74.49734684,RES1,3001,,17,NE,1950,1950,3102,2,1,1262.955876,1262.955876,3505,NO,42.02,53.57,3,4,6110,113.46083,123.272241,132.978851,139.545367,I,Above,Hip,0,5701,,47.7986552,0,0,,,,1,1,,0.35,nav,1,1950,2,, -608,NJBF000060054,123 N BRUNSWICK AVE,Margate City,NJ,39.33532235,-74.49759983,RES1,3001,,17,NE,1950,1950,3102,2,1,1091.699622,1091.699622,3505,NO,30.54,41.73,3,-2.36,6106,113.455355,123.26784,132.974228,139.540378,I,Above,Gable,0,5701,,36.13637699,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, -609,NJBF000058647,7705 OAK GROVE,Margate City,NJ,39.33266625,-74.49777828,RES1,3001,,17,NE,1945,1945,3102,1,1,1496.320427,1496.320427,3505,NO,9.52,15.97,3,-2.02,6106,113.48865,123.29452,133.000279,139.574973,I,Above,Gable,0,5701,,12.74725083,0,1.1,,,,1,1,,0.03,nav,1,1945,1,, -610,NJBF000058257,6 N CLERMONT AVE,Margate City,NJ,39.33198551,-74.4964601,RES1,3001,,17,NE,1954,1954,3102,1,1,1573.341793,1573.341793,3505,NO,14.14,25.11,3,-0.81,6106,113.527286,123.325544,133.032301,139.611308,I,Above,Flat,0,5701,,19.62473499,0,0,,,,1,1,,0.03,nav,1,1954,1,, -611,NJBF000061168,407 N DELAVAN AVE,Margate City,NJ,39.33717856,-74.50164715,RES1,3001,,17,NE,1952,1952,3102,1,1,1583.990027,1583.990027,3505,NO,17.3,26.26,3,4.8,6106,113.340097,123.175225,132.878387,139.431315,I,Above,Hip,0,5701,,21.78058271,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, -612,NJBF000059562,8204 FULTON AVE,Margate City,NJ,39.33446737,-74.50708756,RES1,3001,,17,NE,1939,1939,3101,1,1,851.7443769,851.7443769,3505,NO,17.9,25.73,3,7.39,6106,113.25783,123.109331,132.807977,139.359926,I,Above,Hip,0,5701,,21.81567453,0,1.1,,,,1,1,,0.03,nav,1,1939,1,, -613,NJBF000059583,8202 FULTON AVE,Margate City,NJ,39.33449645,-74.50696689,RES1,3001,,17,NE,1945,1945,3101,2,1,1355.258732,1355.258732,3505,NO,45.66,60.52,3,7.3,6106,113.260091,123.111145,132.809883,139.361984,I,Above,Hip,0,5701,,53.08957167,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, -614,NJBF000058080,124 N HUNTINGTON AVE,Margate City,NJ,39.33166965,-74.50396983,RES1,3001,,17,NE,1946,1946,3102,2,1,964.2719128,964.2719128,3507,NO,30.76,36.4,1,0.97,6106,113.36632,123.196083,132.896558,139.462592,I,Above,Hip,0,5701,,33.58059091,0,0,,,,1,1,,0.03,nav,1,1946,2,, -615,NJBF000058693,217 N HUNTINGTON AVE,Margate City,NJ,39.33277004,-74.50452484,RES1,3001,,17,NE,1962,1962,3101,1,1,1397.48303,1397.48303,3505,NO,18.03,24.47,3,6.47,6106,113.338432,123.173833,132.874113,139.436054,I,Above,Hip,0,5701,,21.25134149,0,0,,,,1,1,,0.03,nav,1,1962,1,, -616,NJBF000056372,20 S GRANVILLE AVE,Margate City,NJ,39.32833174,-74.49932385,RES1,3001,,20,NE,1964,1964,3102,2,1,1448.867357,1448.867357,3505,NO,23.62,30,3,0.2,6106,113.516335,123.316074,133.019352,139.602063,I,Above,Flat,0,5701,,26.80896583,0,0,,,,1,1,,0.03,nav,1,1964,2,, -617,NJBF000058456,,Margate City,NJ,39.33235147,-74.50496447,RES1,3001,,NaN,NE,1969,0,3102,2,1,1713.480209,1713.480209,3505,NO,47.15,59.22,3,8.3,6106,113.334713,123.170798,132.870661,139.432909,I,Above,Flat,0,5701,,53.18367383,0,0,,,,1,1,,0.03,nav,1,1969,2,, -618,NJBF000056541,8007 ATLANTIC AVE,Margate City,NJ,39.32869776,-74.49850306,COM1,3001,,45,ME,1930,1930,3401,2,4,932.3200123,932.3200123,3507,NO,26.72,33.43,1,-1,6106,113.529121,123.326461,133.030545,139.614031,I,Above,Hip,0,NaN,,30.07625721,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -619,NJBF000054110,,Margate City,NJ,39.3224015,-74.515543,RES1,3001,,NaN,NE,2017,0,3102,2,1,1012.454485,1012.454485,3507,NO,35.23,43.28,1,2,6106,113.248478,123.09784,132.787206,139.347728,I,Above,Gable,0,5701,,39.25942849,0,0,,,,1,1,,0.03,nav,1,2017,2,, -620,NJBF000057270,216 N MANSFIELD AVE,Margate City,NJ,39.33026426,-74.50891589,RES1,3001,,17,NE,1952,1952,3101,1,1,1202.82736,1202.82736,3505,NO,20.99,34.39,3,7.15,6106,113.277628,123.124589,132.821102,139.38065,I,Above,Gable,0,5701,,27.69086455,0,0,,,,1,1,,0.03,nav,1,1952,1,, -621,NJBF000057907,8204 MONMOUTH AVE,Margate City,NJ,39.33136731,-74.50452626,RES1,3001,,17,NE,1955,1955,3101,1,1,1082.839926,1082.839926,3507,NO,19.66,25.5,1,2.25,6106,113.3584,123.189674,132.889653,139.455388,I,Above,Gable,0,5701,,22.58006853,0,1.1,,,,1,1,,0.03,nav,1,1955,1,, -622,NJBF000059659,,Margate City,NJ,39.334633,-74.4966495,RES1,3001,,NaN,NE,1969,0,3102,2,1,1291.749745,1291.749745,3505,NO,30.85,44.28,3,-0.59,6106,113.485935,123.292428,132.999546,139.569643,I,Above,Gable,0,5701,,37.56108831,0,0,,,,1,1,,0.03,nav,1,1969,2,, -623,NJBF000058776,111 N FRONTENAC AVE,Margate City,NJ,39.33291978,-74.50091352,RES1,3001,,17,NE,1954,1954,3102,2,1,1933.551976,1933.551976,3505,NO,29.73,38.02,3,6.81,6106,113.415927,123.236079,132.93925,139.507583,I,Above,Hip,0,5701,,33.87392213,0,1.2,,,,1,1,,0.03,nav,1,1954,2,, -624,NJBF000055707,15 S KENYON AVE,Margate City,NJ,39.32679107,-74.50349287,RES1,3001,,20,NE,2008,2008,3102,3,1,1287.156857,1287.156857,3505,NO,40.19,49.28,3,5.44,6106,113.447081,123.259862,132.959269,139.536986,I,Above,Flat,0,5701,,44.7373765,0,0,,,,1,1,,0.03,nav,1,2008,3,, -625,NJBF000058862,20 N BRUNSWICK AVE,Margate City,NJ,39.33307438,-74.49589686,RES1,3001,,21,NE,2012,2012,3102,3,1,1496.258483,1496.258483,3505,NO,39.83,50.57,3,-2.95,6106,113.524373,123.323294,133.030791,139.607389,I,Above,Gable,0,5701,,45.20457198,0,0,,,,1,1,,0.03,nav,1,2012,3,, -626,NJBF000058821,,Margate City,NJ,39.33298787,-74.49580937,RES1,3001,,NaN,NE,2012,0,3102,2,1,1170.388224,1170.388224,3505,NO,42.75,56.88,3,7.72,6106,113.527521,123.325821,133.033379,139.6104,I,Above,Gable,0,5701,,49.8176934,0,0,,,,1,1,,0.03,nav,1,2012,2,, -627,NJBF000056161,114 N PEMBROKE AVE,Margate City,NJ,39.32785959,-74.50939505,RES1,3001,,17,NE,1922,1922,3102,2,1,1518.31051,1518.31051,3505,NO,39.15,53.68,3,1.55,6106,113.302014,123.143491,132.838974,139.402836,I,Above,Hip,0,5701,,46.41352605,0,1.1,,,,1,1,,0.03,nav,1,1922,2,, -628,NJBF000055340,105 S KENYON AVE,Margate City,NJ,39.32582467,-74.5027307,RES1,3001,,19,NE,1948,1948,3102,2,1,987.6317536,987.6317536,3505,NO,25.45,30.79,3,-2.6,6106,113.477855,123.284321,132.983955,139.56471,I,Above,Flat,0,5701,,28.12272461,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, -629,NJBF000060847,67 BAYSIDE COURT,Margate City,NJ,39.33664373,-74.50978866,RES1,3001,,19,NE,1990,1990,3102,2,1,1351.87599,1351.87599,3505,NO,27.92,34.03,3,5.29,6106,113.167458,123.037019,132.73397,139.273751,I,Above,Hip,0,5701,,30.97694452,0,1.1,,,,1,1,,0.03,nav,1,1990,2,, -630,NJBF000059186,8504 WELLINGTON AVE,Margate City,NJ,39.33373106,-74.51035679,RES1,3001,,18,NE,1971,1971,3102,2,1,2969.211585,2969.211585,3505,NO,20.43,31.67,3,-2.31,6106,113.196134,123.05984,132.756077,139.30352,I,Above,Gable,0,5701,,26.04876275,0,0,,,,1,1,,0.03,nav,1,1971,2,, -631,NJBF000058938,33 N DELAVAN AVE,Margate City,NJ,39.33320954,-74.4978039,RES1,3001,,17,NE,1948,1948,3102,1,1,1470.660785,1470.660785,3505,NO,19.67,26.63,3,4.28,6106,113.480416,123.287939,132.993787,139.566751,I,Above,Gable,0,5701,,23.14894902,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, -632,NJBF000058947,34 N CLERMONT AVE,Margate City,NJ,39.33322456,-74.49756677,RES1,3001,,19,NE,2012,2012,3102,3,1,1197.63721,1197.63721,3505,NO,49.24,60.54,3,0.49,6106,113.485432,123.291973,132.99803,139.571351,I,Above,Hip,0,5701,,54.8902662,0,0,,,,1,1,,0.03,nav,1,2012,3,, -633,NJBF000058884,31 N DELAVAN AVE,Margate City,NJ,39.333119,-74.49774167,RES1,3001,,19,NE,1928,1928,3102,2,1,1054.337139,1054.337139,3505,NO,32.49,45.33,3,-1.28,6106,113.483064,123.290061,132.995946,139.569303,I,Above,Gable,0,5701,,38.90652959,0,1.1,,,,1,1,,0.03,nav,1,1928,2,, -634,NJBF000058104,211 N JASPER AVE,Margate City,NJ,39.33172362,-74.50593792,RES1,3001,,17,NE,1952,1952,3102,2,1,1239.733761,1239.733761,3505,NO,31.03,42.87,3,6.82,6106,113.322197,123.160661,132.85966,139.421658,I,Above,Hip,0,5701,,36.94928422,0,0,,,,1,1,,0.03,nav,1,1952,2,, -635,NJBF000060247,8218 MARSHALL AVE,Margate City,NJ,39.33564549,-74.51020182,RES1,3001,,19,NE,1997,1997,3101,3,1,2326.57279,2326.57279,3505,NO,43.75,49.07,3,7.7,6106,113.172399,123.040969,132.737551,139.279641,I,Above,Gable,0,5701,,46.40782346,0,1.1,,,,1,1,,0.03,nav,1,1997,3,, -636,NJBF000060553,418 N HUNTINGTON AVE,Margate City,NJ,39.33617627,-74.50819089,RES1,3001,,17,NE,1963,1963,3101,2,1,2002.229085,2002.229085,3505,NO,31.2,39.35,3,7.4,6106,113.209369,123.070559,132.768601,139.313054,I,Above,Hip,0,5701,,35.27392273,0,0,,,,1,1,,0.03,nav,1,1963,2,, -637,NJBF000058387,13 S ANDOVER AVE,Margate City,NJ,39.33222599,-74.49254305,RES1,3001,,21,NE,2014,2015,3102,2,1,1394.405579,1394.405579,3505,NO,37.11,48.11,3,-1.69,6106,113.610185,123.392346,133.102723,139.687438,I,Above,Gable,0,5701,,42.60800764,0,0,,,,1,1,,0.03,nav,1,2014,2,, -638,NJBF000056816,7 S GLADSTONE AVE,Margate City,NJ,39.32932443,-74.49909265,RES1,3001,,45,NE,1930,1930,3102,2,2,1646.85012,1646.85012,3505,NO,40.05,47.18,3,5.67,6106,113.507181,123.308932,133.012714,139.593778,I,Above,Hip,0,5701,,43.61318262,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -639,NJBF000058347,11 N DELAVAN AVE,Margate City,NJ,39.33214405,-74.49686014,RES1,3001,,45,NE,1929,1929,3102,2,2,1394.195192,1394.195192,3505,NO,32.26,39.61,3,-0.03,6106,113.516243,123.316672,133.023115,139.600965,I,Above,Hip,0,5701,,35.93320893,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, -640,NJBF000060193,102 N FREDERICKSBURG AVE,Margate City,NJ,39.33556465,-74.4950518,RES1,3001,,17,NE,1950,1950,3102,1,1,1401.632799,1401.632799,3505,NO,21.57,30.78,3,2.48,6106,113.508238,123.310354,133.019053,139.588075,I,Above,Gable,0,5701,,26.17535941,0,0,,,,1,1,,0.03,nav,1,1950,1,, -641,NJBF000057729,7 S CLERMONT AVE,Margate City,NJ,39.33105681,-74.49525659,RES1,3001,,20,NE,2003,2003,3102,3,1,1744.720958,1744.720958,3505,NO,45.14,51.05,3,8.27,6106,113.566909,123.357338,133.064932,139.648651,I,Above,Flat,0,5701,,48.09564896,0,0,,,,1,1,,0.03,nav,1,2003,3,, -642,NJBF000058997,19 CIRCLE DRIVE,Margate City,NJ,39.33332275,-74.49464941,RES1,3001,,18,NE,1925,1925,3102,2,1,1479.930869,1479.930869,3505,NO,32.95,40.7,3,3.97,6106,113.548393,123.342644,133.051318,139.629094,I,Above,Hip,0,5701,,36.82408552,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -643,NJBF000056309,19 S HAVERFORD AVE,Margate City,NJ,39.32819495,-74.49955849,RES1,3001,,19,NE,1962,1962,3102,3,1,2034.083181,2034.083181,3505,NO,53.86,61.74,3,0.1,6106,113.513165,123.313486,133.016525,139.599072,I,Above,Flat,0,5701,,57.80268958,0,1.2,,,,1,1,,0.03,nav,1,1962,3,, -644,NJBF000057542,105 N HANOVER AVE,Margate City,NJ,39.33075017,-74.50342208,RES1,3001,,45,NE,1925,1925,3102,2,2,1627.197821,1627.197821,3507,NO,34.9,46.57,1,0.06,6106,113.391531,123.216185,132.916865,139.486331,I,Above,Hip,0,5701,,40.73270543,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -645,NJBF000059986,104 N ARGYLE AVE,Margate City,NJ,39.33519278,-74.4957719,RES1,3001,,17,NE,1960,1960,3102,1,1,1764.50627,1764.50627,3505,NO,24.66,30.12,3,8.7,6106,113.497511,123.301735,133.009726,139.579126,I,Above,Gable,0,5701,,27.38843743,0,0,,,,1,1,,0.03,nav,1,1960,1,, -646,NJBF000057867,316 N MANSFIELD AVE,Margate City,NJ,39.33129146,-74.5099432,RES1,3001,,17,NE,1952,1952,3102,1,1,1370.203069,1370.203069,3505,NO,20.55,32.99,3,4.27,6106,113.240219,123.094793,132.790848,139.345717,I,Above,Gable,0,5701,,26.76756074,0,0,,,,1,1,,0.03,nav,1,1952,1,, -647,NJBF000059663,18 E COLMAR CIRCLE,Margate City,NJ,39.33463485,-74.50480598,RES1,3001,,17,NE,1952,1952,3101,1,1,1321.67158,1321.67158,3505,NO,16.35,21.91,3,-0.26,6106,113.305845,123.147827,132.848204,139.404064,I,Above,Hip,0,5701,,19.13164453,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, -648,NJBF000056884,203 N NASSAU AVE,Margate City,NJ,39.32945848,-74.50855285,RES1,3001,,17,NE,1927,1927,3102,2,1,710.9808871,710.9808871,3505,NO,31.02,42.92,3,0.9,6106,113.297267,123.140158,132.836707,139.398885,I,Above,Gable,0,5701,,36.96974619,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, -649,NJBF000056505,8009 ATLANTIC AVE,Margate City,NJ,39.32862728,-74.4986146,COM1,3001,,NaN,ME,1986,1986,3401,3,1,2470.505289,2470.505289,3507,NO,51,62.56,1,2.84,6106,113.527678,123.325282,133.029249,139.612675,I,Above,Gable,0,NaN,,56.77557499,0,0,,,,1,1,,0.03,nav,1,1986,3,, -650,NJBF000058945,210 N GLADSTONE AVE,Margate City,NJ,39.33322074,-74.50293086,RES1,3001,,17,NE,1952,1952,3101,1,1,1812.143658,1812.143658,3505,NO,18.49,29.49,3,7.94,6106,113.36719,123.196961,132.898567,139.462262,I,Above,Hip,0,5701,,23.98920667,0,0,,,,1,1,,0.03,nav,1,1952,1,, -651,NJBF000058194,8201 MONMOUTH AVE,Margate City,NJ,39.33187245,-74.5041963,RES1,3001,,17,NE,1951,1951,3101,1,1,1437.990009,1437.990009,3505,NO,20.5,35.01,3,8.85,6106,113.358461,123.1898,132.890147,139.455201,I,Above,Hip,0,5701,,27.75674833,0,1.1,,,,1,1,,0.03,nav,1,1951,1,, -652,NJBF000059345,36 WEST DRIVE,Margate City,NJ,39.33406238,-74.49608389,RES1,3001,,18,NE,1925,1925,3102,2,1,1521.013449,1521.013449,3505,NO,33.59,47.4,3,7.1,6106,113.506402,123.30888,133.016403,139.589388,I,Above,Gable,0,5701,,40.49459658,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -653,NJBF000056920,213 N OSBORNE AVE,Margate City,NJ,39.32953815,-74.50952985,RES1,3001,,17,NE,1964,1964,3101,1,1,1851.443393,1851.443393,3505,NO,24.81,39.01,3,6.04,6106,113.274636,123.122,132.817896,139.37785,I,Above,Gable,0,5701,,31.91251793,0,0,,,,1,1,,0.03,nav,1,1964,1,, -654,NJBF000058135,8203 MONMOUTH AVE,Margate City,NJ,39.33176649,-74.5043674,RES1,3001,,17,NE,1957,1957,3102,2,1,1813.208381,1813.208381,3505,NO,26.86,35.29,3,1.96,6106,113.356205,123.187973,132.888165,139.453167,I,Above,Flat,0,5701,,31.07654925,0,0,,,,1,1,,0.03,nav,1,1957,2,, -655,NJBF000063328,7909 BAYSHORE DR,Margate City,NJ,39.34142699,-74.50881381,RES1,3001,,19,NE,1979,1979,3102,2,1,3735.4839,3735.4839,3505,NO,43.01,53.46,3,8.04,6106,113.122729,123.000648,132.698298,139.223263,I,Above,Hip,0,5701,,48.23328618,0,1.1,,,,1,1,,0.03,nav,1,1979,2,, -656,NJBF000057717,106B N HUNTINGTON AVE,Margate City,NJ,39.33104584,-74.50338349,RES1,3001,,19,NE,2000,2000,3102,3,1,1568.937166,1568.937166,3507,NO,42.42,50.35,1,-0.83,6106,113.388157,123.213525,132.914309,139.483107,I,Above,Hip,0,5701,,46.38462588,0,0,,,,1,1,,0.03,nav,1,2000,3,, -657,NJBF000057881,112 N HUNTINGTON AVE,Margate City,NJ,39.33130933,-74.50364128,RES1,3001,,17,NE,1955,1955,3102,2,1,1247.834347,1247.834347,3507,NO,32.08,43.6,1,0.08,6106,113.378719,123.205986,132.906632,139.474253,I,Above,Gable,0,5701,,37.83707506,0,0,,,,1,1,,0.03,nav,1,1955,2,, -658,NJBF000058699,7404 VENTNOR AVE,Margate City,NJ,39.33277613,-74.49299174,RES1,3001,,19,NE,1927,1927,3102,2,1,1001.088509,1001.088509,3505,NO,21.24,28.7,3,-0.28,6106,113.592577,123.3782,133.088284,139.670479,I,Above,Gable,0,5701,,24.97213218,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, -659,NJBF000058530,8101 MONMOUTH AVE,Margate City,NJ,39.33247794,-74.50314791,RES1,3001,,17,NE,1963,1963,3102,2,1,1592.286428,1592.286428,3505,NO,34.56,49.34,3,6.21,6106,113.372936,123.201502,132.902791,139.468211,I,Above,Gable,0,5701,,41.95280985,0,0,,,,1,1,,0.03,nav,1,1963,2,, -660,NJBF000060130,406 N HUNTINGTON AVE,Margate City,NJ,39.33545376,-74.50750023,RES1,3001,,17,NE,1963,1963,3101,2,1,1743.996926,1743.996926,3505,NO,32.35,43.08,3,-2.77,6110,113.234799,123.090916,132.789386,139.337486,I,Above,Hip,0,5701,,37.71725621,0,1.1,,,,1,1,,0.35,nav,1,1963,2,, -661,NJBF000060069,1 SEASIDE COURT,Margate City,NJ,39.33534533,-74.50754398,RES1,3001,,18,NE,1963,1990,3101,1,1,580.9802478,580.9802478,3505,YES,22.7,37.59,3,4.91,6110,113.235363,123.091366,132.789791,139.338146,I,Above,Hip,0,5701,,30.14587083,0,0,,,,1,1,,0.35,nav,1,1963,1,, -662,NJBF000060706,23 W GILMAR CIRCLE,Margate City,NJ,39.33642629,-74.50687367,RES1,3001,,17,NE,1964,1964,3101,2,1,1475.130704,1475.130704,3505,NO,36.29,41.59,3,-1.76,6106,113.234983,123.091057,132.79008,139.33627,I,Above,Hip,0,5701,,38.94281995,0,0,,,,1,1,,0.03,nav,1,1964,2,, -663,NJBF000056570,6 S HAVERFORD AVE,Margate City,NJ,39.32877629,-74.50042401,RES1,3001,,21,NE,1987,1987,3102,3,1,1376.075351,1376.075351,3505,NO,49.73,58.63,3,4.43,6106,113.485781,123.291579,132.994092,139.573849,I,Above,Hip,0,5701,,54.18339407,0,0,,,,1,1,,0.03,nav,1,1987,3,, -664,NJBF000060242,112 N ARGYLE AVE,Margate City,NJ,39.33564128,-74.49618941,RES1,3001,,17,NE,1953,1953,3102,2,1,1204.016902,1204.016902,3505,NO,35.82,48.56,3,2.71,6106,113.482077,123.289312,132.996994,139.564105,I,Above,Hip,0,5701,,42.19361376,0,0,,,,1,1,,0.03,nav,1,1953,2,, -665,NJBF000056574,3 S HUNTINGTON AVE,Margate City,NJ,39.32878294,-74.50069801,RES1,3001,,21,NE,2012,2012,3102,3,1,1560.792222,1560.792222,3505,NO,50.49,58.34,3,0.13,6106,113.479658,123.286652,132.988943,139.56817,I,Above,Gable,0,5701,,54.41537963,0,1.1,,,,1,1,,0.03,nav,1,2012,3,, -666,NJBF000058689,7 WEST DRIVE,Margate City,NJ,39.33276024,-74.49426488,RES1,3001,,18,NE,1925,1925,3102,2,1,661.4469184,661.4469184,3505,NO,40.21,50.12,3,8.4,6106,113.564752,123.355782,133.064687,139.644947,I,Above,Gable,0,5701,,45.16582681,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, -667,NJBF000062254,511 N DOUGLAS AVE,Margate City,NJ,39.33908861,-74.50432795,RES1,3001,,18,NE,1968,1968,3102,2,1,2078.877304,2078.877304,3505,NO,29.75,36.64,3,8.66,6106,113.254335,123.106295,132.807394,139.348834,I,Above,Flat,0,5701,,33.19583515,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, -668,NJBF000056522,113 S ESSEX AVE,Margate City,NJ,39.32866427,-74.49551781,RES1,3001,,17,NE,1950,1950,3102,2,1,1641.867385,1641.867385,3505,NO,23.24,34.43,3,1.75,6106,113.595208,123.379709,133.086366,139.675291,I,Above,Flat,0,5701,,28.8350204,0,0,,,,1,1,,0.03,nav,1,1950,2,, -669,NJBF000057245,7604 ATLANTIC AVE,Margate City,NJ,39.33021776,-74.49431335,RES1,3001,,18,NE,1925,1925,3102,2,1,1709.615403,1709.615403,3505,NO,27.93,33.82,3,-2.08,6106,113.599571,123.38353,133.091745,139.679293,I,Above,Gable,0,5701,,30.87370749,0,1.2,,,,1,1,,0.03,nav,1,1925,2,, -670,NJBF000059228,14 CIRCLE DRIVE,Margate City,NJ,39.33381047,-74.49502496,RES1,3001,,17,NE,1925,1925,3102,2,1,1729.674905,1729.674905,3505,NO,30.22,38.15,3,2.24,6106,113.533285,123.330504,133.038933,139.614448,I,Above,Gable,0,5701,,34.18755408,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -671,NJBF000056651,16 S FRONTENAC AVE,Margate City,NJ,39.32897081,-74.49844333,RES1,3001,8,17,NE,1925,1925,3102,3,1,1627.852006,1627.852006,3505,NO,40.11,54.3,3,-0.17,6106,113.526526,123.324433,133.028654,139.611681,I,Above,Hip,0,5701,,47.2029136,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, -672,NJBF000056668,103 S EXETER AVE,Margate City,NJ,39.32901364,-74.49650201,RES1,3001,,21,NE,1925,1925,3102,3,1,1572.530188,1572.530188,3505,NO,46.62,56.03,3,-2.2,6106,113.568579,123.358321,133.064225,139.650679,I,Above,Hip,0,5701,,51.32805243,0,0,,,,1,1,,0.03,nav,1,1925,3,, -673,NJBF000059023,18 WEST DRIVE,Margate City,NJ,39.33338583,-74.49526354,RES1,3001,,18,NE,1925,1925,3102,2,1,1159.093985,1159.093985,3505,NO,36.05,47.3,3,2.33,6106,113.533951,123.331021,133.039151,139.615742,I,Above,Hip,0,5701,,41.67513172,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -674,NJBF000060137,103 N ARGYLE AVE,Margate City,NJ,39.33546959,-74.4955289,RES1,3001,,17,NE,1950,1950,3102,2,1,1786.241702,1786.241702,3505,NO,29.1,38.56,3,-0.78,6106,113.499026,123.302947,133.011198,139.579911,I,Above,Gable,0,5701,,33.83066626,0,0,,,,1,1,,0.03,nav,1,1950,2,, -675,NJBF000056457,112 S ESSEX AVE,Margate City,NJ,39.32850324,-74.4958197,RES1,3001,,21,NE,1994,1994,3102,3,1,1516.961827,1516.961827,3505,NO,39.65,52.57,3,6.32,6106,113.590874,123.376178,133.082516,139.671227,I,Above,Flat,0,5701,,46.10847464,0,0,,,,1,1,,0.03,nav,1,1994,3,, -676,NJBF000053956,9403 VENTNOR AVE,Margate City,NJ,39.32190647,-74.51524942,COM3,3003,,NaN,ME,1968,1968,3401,2,1,2145.38379,2145.38379,3507,YES,24.51,39.16,1,1.49,6106,113.262327,123.108718,132.798015,139.359899,I,Above,Flat,0,NaN,,31.83303632,0,0,,,,1,1,,0.03,nav,1,1968,2,, -677,NJBF000062120,503 N DELAVAN AVE,Margate City,NJ,39.33882291,-74.50326454,RES1,3001,,18,NE,1966,1966,3102,2,1,1651.275521,1651.275521,3505,NO,33.5,47.53,3,-0.17,6106,113.281549,123.128122,132.830059,139.374254,I,Above,Gable,0,5701,,40.51194235,0,0,,,,1,1,,0.03,nav,1,1966,2,, -678,NJBF000062094,500 N CLERMONT AVE,Margate City,NJ,39.33878726,-74.50295752,RES1,3001,,17,NE,1964,1964,3102,1,1,2390.775012,2390.775012,3505,NO,15.18,24.24,3,1.55,6106,113.288845,123.133969,132.836152,139.380983,I,Above,Gable,0,5701,,19.70897255,0,0,,,,1,1,,0.03,nav,1,1964,1,, -679,NJBF000060656,210 N BRUNSWICK DR,Margate City,NJ,39.336363,-74.49897159,RES1,3001,,18,NE,1950,1950,3103,2,1,1510.458086,1510.458086,3505,NO,38.21,49.91,3,8.41,6106,113.410567,123.231825,132.937155,139.497367,I,Above,Hip,0,5701,,44.06188975,0,0,,,,1,1,,0.03,nav,1,1950,2,, -680,NJBF000060585,208 N BRUNSWICK DR,Margate City,NJ,39.33623969,-74.4988338,RES1,3001,,17,NE,1950,1950,3103,2,1,835.6524513,835.6524513,3505,NO,44.76,59.23,3,7.88,6106,113.415325,123.235652,132.941087,139.501967,I,Above,Hip,0,5701,,51.99480437,0,0,,,,1,1,,0.03,nav,1,1950,2,, -681,NJBF000060535,208 N BRUNSWICK DR,Margate City,NJ,39.33614856,-74.49887434,RES1,3001,,17,NE,1950,1950,3102,2,1,511.6374976,511.6374976,3505,NO,33.05,42.69,3,1.92,6106,113.415706,123.235962,132.941352,139.502503,I,Above,Gable,0,5701,,37.8668458,0,0,,,,1,1,,0.03,nav,1,1950,2,, -682,NJBF000062816,608 N CLERMONT AVE,Margate City,NJ,39.34028984,-74.5043558,RES1,3001,,18,NE,1962,1962,3102,2,1,1654.327029,1654.327029,3505,NO,33.92,41.61,3,-1.03,6106,113.237211,123.092372,132.793449,139.330296,I,Above,Flat,0,5701,,37.76317145,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, -683,NJBF000060038,219 N DELAVAN AVE,Margate City,NJ,39.33529863,-74.49979154,RES1,3001,,17,NE,1952,1952,3103,2,1,2605.476834,2605.476834,3505,NO,28.89,37.8,3,1.63,6106,113.407266,123.229211,132.933712,139.49639,I,Above,Hip,0,5701,,33.34498634,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, -684,NJBF000054410,,Margate City,NJ,39.32332655,-74.51927584,RES3B,3001,,NaN,E,1969,0,3303,3,1,3898.391822,3898.391822,3507,NO,56.24,69.6,1,2.02,6106,113.153249,123.021579,132.709284,139.260153,I,Above,Hip,0,5701,,62.91835026,0,0,,,,1,1,,0.03,nav,1,1969,3,, -685,NJBF000060936,407 N DOUGLAS AVE,Margate City,NJ,39.33678341,-74.50206433,RES1,3001,,18,NE,1969,1969,3102,2,1,1610.10124,1610.10124,3505,NO,32.69,41.47,3,1.91,6106,113.336373,123.17227,132.875058,139.428711,I,Above,Gable,0,5701,,37.07916299,0,0,,,,1,1,,0.03,nav,1,1969,2,, -686,NJBF000061961,432 N CLERMONT AVE,Margate City,NJ,39.33855325,-74.50266389,RES1,3001,,17,NE,1960,1960,3102,2,1,1741.558161,1741.558161,3505,NO,33.94,40.51,3,-1.84,6106,113.298582,123.141802,132.844215,139.390402,I,Above,Flat,0,5701,,37.22243363,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, -687,NJBF000054394,9714 AMHERST AVE,Margate City,NJ,39.32327893,-74.52111136,RES3B,3001,,39,ME,2000,2000,3301,3,1,2553.781873,2553.781873,3507,NO,43.77,58.16,1,-0.82,6106,113.114046,122.989922,132.676653,139.22344,I,Above,Hip,0,5701,,50.96773143,0,0,,,,1,1,,0.03,nav,1,2000,3,, -688,NJBF000054030,16-18 S BENSON AVE,Margate City,NJ,39.32215657,-74.51214204,RES1,3001,,47,NE,1950,1950,3102,2,2,1382.852043,1382.852043,3505,NO,33.09,44.28,3,5.81,6106,113.32625,123.160446,132.851788,139.419673,I,Above,Gable,0,5701,,38.68712978,0,0,,,,1,1,,0.03,nav,1,1950,2,, -689,NJBF000056820,,Margate City,NJ,39.32932993,-74.49727421,COM1,3001,,NaN,ME,1969,0,3401,1,1,6027.754292,6027.754292,3507,NO,16.08,27.49,1,0.98,6106,113.547091,123.341075,133.046406,139.630787,I,Above,Flat,0,NaN,,21.78858898,0,0,,,,1,1,,0.03,nav,1,1969,1,, -690,NJBF000057067,30 N IROQUOIS AVE,Margate City,NJ,39.32985474,-74.50388979,RES1,3001,,21,NE,2015,2015,3102,3,1,1570.293862,1570.293862,3505,NO,52.32,65.7,3,3.4,6106,113.394067,123.218044,132.918125,139.488826,I,Above,Gable,0,5701,,59.01183678,0,0,,,,1,1,,0.03,nav,1,2015,3,, -691,NJBF000056600,8207 VENTNOR AVE,Margate City,NJ,39.32883965,-74.50205853,RES1,3001,,17,NE,1945,1945,3101,1,1,1834.155723,1834.155723,3505,NO,19.5,26.1,3,8.93,6106,113.448925,123.261931,132.963146,139.539663,I,Above,Hip,0,5701,,22.80228654,0,0,,,,1,1,,0.03,nav,1,1945,1,, -692,NJBF000054202,2 S BENSON AVE,Margate City,NJ,39.32270998,-74.51262845,RES1,3001,,18,NE,1925,1925,3102,2,1,1155.354747,1155.354747,3505,NO,33.51,47.15,3,2.84,6106,113.30738,123.145531,132.83683,139.402941,I,Above,Flat,0,5701,,40.32897867,0,0,,,,1,1,,0.03,nav,1,1925,2,, -693,NJBF000056993,26 N IROQUOIS AVE,Margate City,NJ,39.32970111,-74.50372621,RES1,3001,,17,NE,1925,1925,3102,2,1,1013.436493,1013.436493,3505,NO,39.5,50.84,3,5.94,6106,113.399888,123.22269,132.922854,139.494233,I,Above,Hip,0,5701,,45.16747713,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -694,NJBF000054132,5 & 7 S DECATUR AVE,Margate City,NJ,39.32248796,-74.51263703,RES1,3001,,47,NE,1965,1965,3102,2,2,1195.703154,1195.703154,3505,NO,44.09,56.66,3,8.98,6106,113.310504,123.147928,132.839115,139.405532,I,Above,Gable,0,5701,,50.37311637,0,0,,,,1,1,,0.03,nav,1,1965,2,, -695,NJBF000054908,112 N DECATUR AVE,Margate City,NJ,39.32462127,-74.51519894,RES1,3001,,20,NE,2006,2006,3103,4,1,1916.074543,1916.074543,3507,NO,55.08,64.41,1,-0.05,6106,113.222739,123.078325,132.768896,139.326509,I,Above,Gable,0,5701,,59.74464494,0,0,,,,1,1,,0.03,nav,1,2006,4,, -696,NJBF000054183,1 S DECATUR AVE,Margate City,NJ,39.32264857,-74.51276913,RES1,3001,,18,NE,1925,1925,3102,2,1,657.217724,657.217724,3505,NO,29.08,41.86,3,4.14,6106,113.305217,123.143753,132.834933,139.400847,I,Above,Flat,0,5701,,35.4680852,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -697,NJBF000059512,8206 FULTON AVE,Margate City,NJ,39.33437543,-74.50717039,RES1,3001,,19,NE,1957,1957,3101,1,1,1221.920395,1221.920395,3505,NO,15.18,28.44,3,0.83,6106,113.257321,123.108918,132.807491,139.359555,I,Above,Gable,0,5701,,21.80841272,0,0,,,,1,1,,0.03,nav,1,1957,1,, -698,NJBF000054212,,Margate City,NJ,39.32274743,-74.51603582,RES3C,3001,,NaN,ME,1969,0,3301,1,1,2276.761993,2276.761993,3505,NO,13.02,26.76,3,2.34,6106,113.232538,123.085186,132.774428,139.333363,I,Above,Flat,0,NaN,,19.89258995,0,0,,,,1,1,,0.03,nav,1,1969,1,, -699,NJBF000058711,12 N BRUNSWICK AVE,Margate City,NJ,39.33278667,-74.495657,RES1,3001,,19,NE,1935,1935,3102,2,1,1095.542428,1095.542428,3505,NO,45.4,55.21,3,8.03,6106,113.533696,123.330777,133.038428,139.616343,I,Above,Flat,0,5701,,50.30575778,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, -700,NJBF000063672,6 ARGYLE COURT,Margate City,NJ,39.34235571,-74.50247682,RES1,3001,,18,NE,1985,1985,3102,2,1,2249.972802,2249.972802,3505,NO,43.88,50.62,3,7,6106,113.250778,123.102682,132.805194,139.3366,I,Above,Gable,0,5701,,47.25300908,0,1.2,,,,1,1,,0.03,nav,1,1985,2,, -701,NJBF000055532,204 N WILSON AVE,Margate City,NJ,39.3263563,-74.51437359,RES1,3001,,47,NE,1950,1950,3102,2,2,937.8689067,937.8689067,3505,NO,30.3,35.85,3,6.97,6106,113.215005,123.072932,132.76468,139.320893,I,Above,Gable,0,5701,,33.07420543,0,0,,,,1,1,,0.03,nav,1,1950,2,, -702,NJBF000054454,9101 VENTNOR AVE,Margate City,NJ,39.32344407,-74.51262994,RES1,3001,,20,NE,2006,2006,3102,3,1,1684.127348,1684.127348,3505,NO,39.44,53.69,3,1.46,6106,113.296376,123.137052,132.828689,139.393689,I,Above,Hip,0,5701,,46.56488585,0,1.1,,,,1,1,,0.03,nav,1,2006,3,, -703,NJBF000058601,8 S FREDERICKSBURG AVE,Margate City,NJ,39.33259763,-74.49255336,RES1,3001,,47,NE,1930,1930,3102,1,2,1653.41631,1653.41631,3505,NO,23.59,34.14,3,5.52,6106,113.604744,123.387993,133.098447,139.681913,I,Above,Gable,0,5701,,28.86254248,0,1.1,,,,1,1,,0.03,nav,1,1930,1,, -704,NJBF000055717,212 N WILSON AVE,Margate City,NJ,39.3268071,-74.51480429,RES1,3001,,47,NE,1950,1950,3102,2,2,869.7126742,869.7126742,3505,NO,40.87,48,3,4.57,6106,113.198926,123.060194,132.751845,139.306231,I,Above,Hip,0,5701,,44.43589736,0,0,,,,1,1,,0.03,nav,1,1950,2,, -705,NJBF000061960,7 BAYCREST DRIVE,Margate City,NJ,39.33854812,-74.50787111,RES1,3001,,18,NE,1985,1985,3102,2,1,2106.098309,2106.098309,3505,NO,31.76,46.16,3,5.39,6106,113.183326,123.049574,132.747976,139.285085,I,Above,Gable,0,5701,,38.95933665,0,0,,,,1,1,,0.03,nav,1,1985,2,, -706,NJBF000057062,8705 AMHERST AVE,Margate City,NJ,39.32984467,-74.51052102,RES1,3001,,20,NE,2016,2016,3102,3,1,1632.519353,1632.519353,3505,NO,48.55,63.42,3,-1.66,6106,113.248404,123.101017,132.796326,139.353476,I,Above,Flat,0,5701,,55.98610353,0,0,,,,1,1,,0.03,nav,1,2016,3,, -707,NJBF000060781,5 E GILMAR CIRCLE,Margate City,NJ,39.336539,-74.5060485,RES1,3001,,17,NE,1966,1966,3101,1,1,1505.555674,1505.555674,3505,NO,19.32,24.82,3,4.46,6106,113.251646,123.104395,132.804042,139.351417,I,Above,Gable,0,5701,,22.07244436,0,0,,,,1,1,,0.03,nav,1,1966,1,, -708,NJBF000060853,408 N GLADSTONE AVE,Margate City,NJ,39.33664936,-74.50581572,RES1,3001,,18,NE,1989,1989,3101,1,1,1689.381793,1689.381793,3505,NO,20.73,29.8,3,2.82,6106,113.255261,123.107285,132.807117,139.354559,I,Above,Gable,0,5701,,25.26135602,0,0,,,,1,1,,0.03,nav,1,1989,1,, -709,NJBF000061530,424 N DOUGLAS AVE,Margate City,NJ,39.33779833,-74.50359397,RES1,3001,,18,NE,1968,1968,3102,2,1,1814.245466,1814.245466,3505,NO,24.68,34.58,3,1.18,6110,113.288433,123.133765,132.835397,139.382812,I,Above,Gable,0,5701,,29.63053161,0,1.2,,,,1,1,,0.35,nav,1,1968,2,, -710,NJBF000057405,300 N MANSFIELD AVE,Margate City,NJ,39.33051736,-74.50920896,RES1,3001,,20,NE,2016,2016,3102,3,1,2617.030083,2617.030083,3505,NO,46.02,52.45,3,5.7,6106,113.26753,123.116541,132.812915,139.371243,I,Above,Gable,0,5701,,49.23307988,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, -711,NJBF000060555,407 N EXETER AVE,Margate City,NJ,39.33617665,-74.50315743,RES1,3001,,19,NE,1989,1989,3102,2,1,1761.806359,1761.806359,3505,NO,46.63,56.92,3,8.46,6106,113.32065,123.159695,132.861546,139.415413,I,Above,Flat,0,5701,,51.77827097,0,1.1,,,,1,1,,0.03,nav,1,1989,2,, -712,NJBF000060665,406 N ESSEX AVE,Margate City,NJ,39.33636774,-74.50308665,RES1,3001,,17,NE,1952,1952,3102,2,1,1689.026072,1689.026072,3505,NO,38.07,48.82,3,8.51,6106,113.319532,123.158791,132.860717,139.414053,I,Above,Hip,0,5701,,43.44356231,0,1.1,,,,1,1,,0.03,nav,1,1952,2,, -713,NJBF000058855,11 N BRUNSWICK AVE,Margate City,NJ,39.33306937,-74.49537534,RES1,3001,,18,NE,1927,1927,3102,2,1,981.6641647,981.6641647,3505,NO,35.72,49.12,3,7.31,6106,113.53595,123.332612,133.040576,139.618041,I,Above,Gable,0,5701,,42.41890633,0,0,,,,1,1,,0.03,nav,1,1927,2,, -714,NJBF000058549,218 N HUNTINGTON AVE,Margate City,NJ,39.33250468,-74.50476956,RES1,3001,,17,NE,1952,1952,3102,2,1,1135.219598,1135.219598,3505,NO,35.49,47.32,3,4.45,6106,113.336797,123.172491,132.872532,139.434736,I,Above,Hip,0,5701,,41.40404186,0,0,,,,1,1,,0.03,nav,1,1952,2,, -715,NJBF000056571,321 N UNION AVE,Margate City,NJ,39.32878037,-74.51439262,RES1,3001,,20,NE,2005,2005,3102,2,1,1410.228703,1410.228703,3505,NO,31.73,44.48,3,-1.02,6106,113.178899,123.044872,132.73741,139.288559,I,Above,Gable,0,5701,,38.10224523,0,0,,,,1,1,,0.03,nav,1,2005,2,, -716,NJBF000055808,206 N UNION AVE,Margate City,NJ,39.32702767,-74.51325932,RES1,3001,,17,NE,1925,1925,3101,1,1,1037.633484,1037.633484,3505,NO,20.82,34.8,3,6.1,6106,113.229498,123.084874,132.777549,139.334871,I,Above,Gable,0,5701,,27.80943738,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, -717,NJBF000056209,206 N RUMSON AVE,Margate City,NJ,39.32797342,-74.51139636,RES1,3001,,21,NE,2017,2017,3102,3,1,997.1819761,997.1819761,3505,NO,44.98,51.46,3,0.71,6106,113.256462,123.106911,132.801091,139.360499,I,Above,Gable,0,5701,,48.221903,0,0,,,,1,1,,0.03,nav,1,2017,3,, -718,NJBF000055830,224 N VENDOME AVE,Margate City,NJ,39.32708011,-74.51439515,RES1,3001,,17,NE,1920,1920,3102,2,1,516.3959498,516.3959498,3505,NO,34.94,40.22,3,0.29,6106,113.20385,123.06427,132.756263,139.311002,I,Above,Gable,0,5701,,37.57888896,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, -719,NJBF000060493,7605 AMHERST AVE,Margate City,NJ,39.33606722,-74.49955105,RES1,3001,,17,NE,1956,1956,3103,2,1,1813.883145,1813.883145,3505,NO,41.86,53.12,3,7.07,6106,113.401885,123.224869,132.929672,139.49004,I,Above,Hip,0,5701,,47.48994289,0,1.2,,,,1,1,,0.03,nav,1,1956,2,, -720,NJBF000060768,310 N CLARENDON AVE,Margate City,NJ,39.33651631,-74.49995373,RES1,3001,,17,NE,1965,1965,3103,1,1,1629.993265,1629.993265,3505,NO,16.53,23.43,3,3.18,6106,113.386737,123.212686,132.917197,139.475293,I,Above,Gable,0,5701,,19.98393166,0,0,,,,1,1,,0.03,nav,1,1965,1,, -721,NJBF000055858,8905 MONMOUTH AVE,Margate City,NJ,39.32713945,-74.51249953,RES1,3001,,17,NE,1950,1950,3102,2,1,1974.292849,1974.292849,3505,NO,30.94,37.08,3,-0.61,6106,113.244493,123.096977,132.790169,139.348909,I,Above,Flat,0,5701,,34.01112785,0,0,,,,1,1,,0.03,nav,1,1950,2,, -722,NJBF000056967,216 N OSBORNE AVE,Margate City,NJ,39.32963398,-74.51019189,RES1,3001,,17,NE,1977,1977,3101,1,1,2326.96815,2326.96815,3505,NO,19.16,31.34,3,2.5,6106,113.258695,123.109224,132.804697,139.363033,I,Above,Gable,0,5701,,25.24945054,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, -723,NJBF000056204,8907 AMHERST AVE,Margate City,NJ,39.32796168,-74.51364243,RES1,3001,,17,NE,1953,1953,3102,2,1,1240.158125,1240.158125,3505,NO,31.49,37.08,3,2.49,6106,113.207368,123.067448,132.760195,139.314768,I,Above,Hip,0,5701,,34.28410125,0,1.1,,,,1,1,,0.03,nav,1,1953,2,, -724,NJBF000058388,210 N HUNTINGTON AVE,Margate City,NJ,39.33222599,-74.50450684,RES1,3001,,17,NE,1957,1957,3102,2,1,1211.96254,1211.96254,3505,NO,23.76,36.45,3,1.35,6106,113.346565,123.180297,132.880481,139.443969,I,Above,Hip,0,5701,,30.10286092,0,0,,,,1,1,,0.03,nav,1,1957,2,, -725,NJBF000058351,208 N HUNTINGTON AVE,Margate City,NJ,39.33214968,-74.50444554,RES1,3001,,17,NE,1951,1951,3101,1,1,985.7425999,985.7425999,3505,NO,23.17,31.41,3,6.34,6106,113.348992,123.182235,132.88245,139.446264,I,Above,Hip,0,5701,,27.28990594,0,0,,,,1,1,,0.03,nav,1,1951,1,, -726,NJBF000056538,217 N RUMSON AVE,Margate City,NJ,39.32869393,-74.51157195,RES1,3001,,NaN,NE,1940,0,3102,2,1,810.3466428,810.3466428,3505,NO,43.64,54.72,3,7.29,6106,113.242064,123.095583,132.789872,139.347367,I,Above,Flat,0,5701,,49.18256822,0,0,,,,1,1,,0.03,nav,1,1940,2,, -727,NJBF000059726,311 N GLADSTONE AVE,Margate City,NJ,39.33473815,-74.50335327,RES1,3001,,17,NE,1960,1960,3101,1,1,1697.257486,1697.257486,3505,NO,19.6,29.65,3,0.56,6106,113.33648,123.172399,132.873919,139.432176,I,Above,Gable,0,5701,,24.62360046,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, -728,NJBF000059017,211 N GLADSTONE AVE,Margate City,NJ,39.33337775,-74.50245789,RES1,3001,,17,NE,1956,1956,3102,2,1,2167.343459,2167.343459,3505,NO,31.04,43.62,3,-1.93,6106,113.375403,123.203568,132.905578,139.469694,I,Above,Flat,0,5701,,37.33279058,0,0,,,,1,1,,0.03,nav,1,1956,2,, -729,NJBF000058795,210 N GRANVILLE AVE,Margate City,NJ,39.33295223,-74.5035839,RES1,3001,,16,NE,1950,1950,3101,1,1,1066.804508,1066.804508,3505,NO,10.2,20.15,3,-1.52,6106,113.356598,123.188434,132.889476,139.452714,I,Above,Gable,0,5701,,15.17581707,0,0,,,,1,1,,0.03,nav,1,1950,1,, -730,NJBF000058294,213 N IROQUOIS AVE,Margate City,NJ,39.33204933,-74.50545111,RES1,3001,,17,NE,1950,1950,3102,2,1,1357.266399,1357.266399,3505,NO,43.81,58.25,3,6.43,6106,113.328285,123.165598,132.86503,139.427136,I,Above,Gable,0,5701,,51.02950424,0,1.2,,,,1,1,,0.03,nav,1,1950,2,, -731,NJBF000056115,301 N VENDOME AVE,Margate City,NJ,39.32775999,-74.51438667,RES1,3001,,NaN,NE,1930,1930,3102,2,1,695.5932615,695.5932615,3505,NO,44.11,57.91,3,5.7,6106,113.194007,123.056632,132.748857,139.302217,I,Above,Hip,0,5701,,51.01268312,0,0,,,,1,1,,0.03,nav,1,1930,2,, -732,NJBF000057025,113 N KENYON AVE,Margate City,NJ,39.32975627,-74.50599348,RES1,3001,,17,NE,1950,1950,3101,1,1,1795.908925,1795.908925,3505,NO,8.68,20.42,3,-2.75,6106,113.349241,123.181992,132.880462,139.447203,I,Above,Gable,0,5701,,14.54891956,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, -733,NJBF000057738,102 N HAVERFORD AVE,Margate City,NJ,39.33107747,-74.50261517,RES1,3001,,17,NE,1965,1965,3102,2,1,854.8754741,854.8754741,3507,NO,31.72,46.69,1,1.79,6106,113.404624,123.226764,132.928158,139.498364,I,Above,Gable,0,5701,,39.20540621,0,0,,,,1,1,,0.03,nav,1,1965,2,, -734,NJBF000056945,111 N KENYON AVE,Margate City,NJ,39.3296021,-74.50583069,RES1,3001,,17,NE,1951,1951,3102,2,1,2288.859959,2288.859959,3505,NO,27.19,39.81,3,2.65,6106,113.355024,123.186603,132.88515,139.45257,I,Above,Gable,0,5701,,33.5006417,0,1.1,,,,1,1,,0.03,nav,1,1951,2,, -735,NJBF000054108,119 N MONROE AVE,Margate City,NJ,39.32239698,-74.51886706,RES1,3001,,20,NE,2003,2003,3101,1,1,1906.532545,1906.532545,3505,NO,21.42,32.96,3,3.97,6106,113.17619,123.039503,132.726987,139.280331,I,Above,Flat,0,5701,,27.19243224,0,0,,,,1,1,,0.03,nav,1,2003,1,, -736,NJBF000055143,106 N WILSON AVE,Margate City,NJ,39.32526152,-74.51332533,RES1,3001,,47,NE,1948,1948,3102,2,2,869.5683278,869.5683278,3505,NO,26.14,32.67,3,3.29,6106,113.254155,123.103942,132.795917,139.356427,I,Above,Flat,0,5701,,29.40463076,0,0,,,,1,1,,0.03,nav,1,1948,2,, -737,NJBF000055665,110 N SUMNER AVE,Margate City,NJ,39.32668712,-74.51110484,RES1,3001,,17,NE,1952,1952,3102,2,1,1763.694735,1763.694735,3505,NO,22.96,33.99,3,-1.87,6106,113.281704,123.12673,132.820664,139.383256,I,Above,Gable,0,5701,,28.47970099,0,1.2,,,,1,1,,0.03,nav,1,1952,2,, -738,NJBF000056593,118 N NASSAU AVE,Margate City,NJ,39.32882192,-74.50846154,RES1,3001,,17,NE,1930,1930,3102,2,1,1651.196354,1651.196354,3505,NO,34.02,41.71,3,3.48,6106,113.308491,123.148999,132.845427,139.409204,I,Above,Hip,0,5701,,37.8628604,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -739,NJBF000056371,8601 WINCHESTER AVE,Margate City,NJ,39.32833061,-74.50712127,RES1,3001,,17,NE,1948,1948,3102,2,1,1460.248294,1460.248294,3505,NO,38.65,50.33,3,0.64,6106,113.345073,123.178261,132.875489,139.443065,I,Above,Gable,0,5701,,44.49404687,0,1.1,,,,1,1,,0.03,nav,1,1948,2,, -740,NJBF000059503,202 N DELAVAN AVE,Margate City,NJ,39.33436207,-74.49938482,RES1,3001,,17,NE,1950,1950,3103,1,1,1495.411481,1495.411481,3505,NO,18.41,30.79,3,6.38,6106,113.429362,123.246952,132.951657,139.518191,I,Above,Gable,0,5701,,24.59964742,0,0,,,,1,1,,0.03,nav,1,1950,1,, -741,NJBF000059811,113 N BRUNSWICK AVE,Margate City,NJ,39.33489,-74.4971765,RES1,3001,,17,NE,1948,1948,3102,1,1,984.7766848,984.7766848,3505,NO,13.12,21.78,3,-2.65,6110,113.470739,123.28021,132.986905,139.555265,I,Above,Hip,0,5701,,17.44843394,0,0,,,,1,1,,0.35,nav,1,1948,1,, -742,NJBF000055815,11 N PEMBROKE AVE,Margate City,NJ,39.32704474,-74.50805341,RES1,3001,,17,NE,1959,1959,3102,2,1,1673.27671,1673.27671,3505,NO,41.03,46.42,3,2.36,6106,113.343356,123.176463,132.8726,139.440836,I,Above,Gable,0,5701,,43.72600951,0,1.2,,,,1,1,,0.03,nav,1,1959,2,, -743,NJBF000054268,23 N ADAMS AVE,Margate City,NJ,39.32291534,-74.51555251,RES3B,3001,3,20,ME,2004,2004,3301,3,1,1454.283472,1454.283472,3501,NO,30.34,37.92,7,-6.63,6106,113.240538,123.091737,132.781342,139.341042,I,Above,Gable,0,NaN,,34.13085546,0,0,,,,1,1,,0.03,nav,1,2004,3,, -744,NJBF000055846,8 N NASSAU AVE,Margate City,NJ,39.3271075,-74.506853,RES1,3001,,20,NE,1998,1998,3102,2,1,1626.607814,1626.607814,3505,NO,43.03,54.22,3,8.03,6106,113.36877,123.196932,132.893946,139.464492,I,Above,Hip,0,5701,,48.62251896,0,1.1,,,,1,1,,0.03,nav,1,1998,2,, -745,NJBF000054584,9009 VENTNOR AVE,Margate City,NJ,39.3237865,-74.511947,RES1,3001,,17,NE,1955,1955,3102,2,1,2068.977679,2068.977679,3505,NO,41.34,55.97,3,8.06,6106,113.306194,123.145142,132.837368,139.403241,I,Above,Hip,0,5701,,48.65601138,0,0,,,,1,1,,0.03,nav,1,1955,2,, -746,NJBF000056081,20 N NASSAU AVE,Margate City,NJ,39.32767858,-74.50737456,RES1,3001,,20,NE,2008,2008,3102,3,1,1748.364689,1748.364689,3505,NO,53.63,61.85,3,0.27,6106,113.34898,123.181201,132.878035,139.44642,I,Above,Hip,0,5701,,57.73844529,0,0,,,,1,1,,0.03,nav,1,2008,3,, -747,NJBF000054317,25 N ADAMS AVE,Margate City,NJ,39.3230594,-74.51568422,RES3B,3001,,20,ME,2004,2004,3301,3,1,978.3525613,978.3525613,3501,NO,61.22,75.15,7,3.34,6106,113.235522,123.087775,132.77737,139.336561,I,Above,Hip,0,NaN,,68.18850781,0,0,,,,1,1,,0.03,nav,1,2004,3,, -748,NJBF000056051,17 N OSBORNE AVE,Margate City,NJ,39.32762175,-74.50767271,RES1,3001,,17,NE,1928,1942,3102,2,1,2778.572793,2778.572793,3505,NO,22.95,31.71,3,-2.14,6106,113.343271,123.17659,132.873194,139.441085,I,Above,Gable,0,5701,,27.33182646,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, -749,NJBF000056861,29 N JEROME AVE,Margate City,NJ,39.32941549,-74.50461985,RES1,3001,,17,NE,1943,1943,3102,2,1,1582.205836,1582.205836,3505,NO,31.58,36.82,3,7.73,6106,113.384346,123.210128,132.909528,139.479791,I,Above,Gable,0,5701,,34.20003196,0,1.1,,,,1,1,,0.03,nav,1,1943,2,, -750,NJBF000054518,2 N HARDING AVE,Margate City,NJ,39.32361029,-74.51253513,RES1,3001,,17,NE,1955,1955,3102,3,1,1560.601066,1560.601066,3505,NO,53.25,64.95,3,7.48,6106,113.295975,123.136816,132.828588,139.393524,I,Above,Hip,0,5701,,59.09678977,0,1.1,,,,1,1,,0.03,nav,1,1955,3,, -751,NJBF000054516,7 N BENSON AVE,Margate City,NJ,39.32360909,-74.51291352,RES1,3001,,17,NE,1962,1962,3102,1,1,1654.71624,1654.71624,3505,NO,17.49,24.08,3,-0.82,6106,113.287716,123.130158,132.82169,139.385843,I,Above,Hip,0,5701,,20.7841985,0,0,,,,1,1,,0.03,nav,1,1962,1,, -752,NJBF000055843,9 N OSBORNE AVE,Margate City,NJ,39.32710063,-74.50717496,RES1,3001,,22,NE,2016,2016,3102,3,1,2213.842465,2213.842465,3505,NO,55.38,68.63,3,4.88,6106,113.361795,123.191317,132.888098,139.458007,I,Above,Gable,0,5701,,62.00703851,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, -753,NJBF000055610,3 N PEMBROKE AVE,Margate City,NJ,39.32655385,-74.50761518,RES1,3001,,18,NE,1930,1930,3102,2,1,1714.344682,1714.344682,3505,NO,29.06,38.53,3,-2.74,6106,113.360141,123.189792,132.886064,139.4561,I,Above,Hip,0,5701,,33.79724875,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -754,NJBF000060138,119 N BARCLAY AVE,Margate City,NJ,39.33546961,-74.49698798,RES1,3001,,21,NE,2017,2017,3102,2,1,1134.754417,1134.754417,3505,NO,34.64,40.87,3,2.28,6106,113.466809,123.277043,132.98399,139.550547,I,Above,Hip,0,5701,,37.75549089,0,1.1,,,,1,1,,0.03,nav,1,2017,2,, -755,NJBF000053614,22 N COOLIDGE AVE,Margate City,NJ,39.32061188,-74.51907389,RES1,3001,,17,NE,1922,1922,3102,2,1,537.1001453,537.1001453,3507,NO,32.54,44.04,1,-0.52,6106,113.198765,123.056532,132.742988,139.298656,I,Above,Flat,0,5701,,38.28991242,0,0,,,,1,1,,0.03,nav,1,1922,2,, -756,NJBF000053787,9704 WINCHESTER AVE,Margate City,NJ,39.32127754,-74.51864896,RES1,3001,,17,NE,1953,1953,3102,2,1,1565.231634,1565.231634,3507,NO,27.19,37,1,2.86,6106,113.197875,123.056274,132.743313,139.2989,I,Above,Gable,0,5701,,32.09879822,0,0,,,,1,1,,0.03,nav,1,1953,2,, -757,NJBF000054114,9006 ATLANTIC AVE,Margate City,NJ,39.32241909,-74.50927657,RES1,3001,,19,NE,1921,1921,3102,2,1,1636.558473,1636.558473,3505,NO,27.22,32.57,3,3.41,6106,113.384836,123.207851,132.901217,139.474377,I,Above,Gable,0,5701,,29.89875237,0,1.1,,,,1,1,,0.03,nav,1,1921,2,, -758,NJBF000054366,107 S SUMNER AVE,Margate City,NJ,39.3231867,-74.50717397,RES1,3001,,21,NE,1999,1999,3102,2,1,1787.163352,1787.163352,3505,NO,28.75,39.31,3,-0.08,6106,113.419361,123.236079,132.931276,139.50744,I,Above,Hip,0,5701,,34.03080532,0,1.1,,,,1,1,,0.03,nav,1,1999,2,, -759,NJBF000054080,101 S VENDOME AVE,Margate City,NJ,39.32231863,-74.50915278,RES1,3001,,20,NE,1990,1990,3103,3,1,1479.596888,1479.596888,3505,NO,46.42,52.36,3,-0.01,6106,113.389031,123.211183,132.904586,139.478113,I,Above,Hip,0,5701,,49.38767812,0,0,,,,1,1,,0.03,nav,1,1990,3,, -760,NJBF000058451,9 N CLERMONT AVE,Margate City,NJ,39.33234512,-74.49629186,RES1,3001,,18,NE,2012,2012,3102,3,1,1250.794406,1250.794406,3505,NO,31.91,38.28,3,-2.74,6106,113.525923,123.324483,133.031472,139.609695,I,Above,Gable,0,5701,,35.09759378,0,0,,,,1,1,,0.03,nav,1,2012,3,, -761,NJBF000058251,7 N DELAVAN AVE,Margate City,NJ,39.33197508,-74.49672875,RES1,3001,,18,NE,1981,1981,3102,3,1,1171.584772,1171.584772,3505,NO,40.3,48,3,-2.54,6106,113.521515,123.320898,133.027416,139.605989,I,Above,Gable,0,5701,,44.15039155,0,1.1,,,,1,1,,0.03,nav,1,1981,3,, -762,NJBF000054405,8900 ATLANTIC AVE,Margate City,NJ,39.32329862,-74.50785472,RES1,3001,,17,NE,1948,1948,3102,2,1,1698.097717,1698.097717,3505,NO,36.37,43.16,3,0.02,6106,113.40282,123.222795,132.91756,139.492278,I,Above,Flat,0,5701,,39.76539023,0,1.2,,,,1,1,,0.03,nav,1,1948,2,, -763,NJBF000054185,16 S CEDAR GROVE AVE,Margate City,NJ,39.3226606,-74.51140714,RES1,3001,,22,NE,2014,2014,3102,2,1,1872.332436,1872.332436,3505,NO,36.92,47.96,3,1.61,6106,113.334747,123.167577,132.859637,139.428286,I,Above,Gable,0,5701,,42.43947524,0,0,,,,1,1,,0.03,nav,1,2014,2,, -764,NJBF000053919,108 S VENDOME AVE,Margate City,NJ,39.32176477,-74.50916995,RES1,3001,,20,NE,1945,1945,3102,2,1,1533.079315,1533.079315,3505,NO,36.95,47.63,3,5.17,6106,113.396919,123.217253,132.910371,139.484562,I,Above,Flat,0,5701,,42.29327167,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, -765,NJBF000057575,20 N GLADSTONE AVE,Margate City,NJ,39.3308097,-74.50057869,RES1,3001,,17,NE,1923,1923,3102,2,1,1057.677297,1057.677297,3505,NO,35.17,46.98,3,6.94,6106,113.453258,123.265822,132.968787,139.543545,I,Above,Hip,0,5701,,41.07459465,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, -766,NJBF000054015,105 S VENDOME AVE,Margate City,NJ,39.32211869,-74.50892898,RES1,3001,,21,NE,2000,2000,3102,2,1,2079.999722,2079.999722,3505,NO,38.31,50.33,3,0.24,6106,113.396899,123.217425,132.910884,139.485094,I,Above,Hip,0,5701,,44.32183471,0,0,,,,1,1,,0.03,nav,1,2000,2,, -767,NJBF000058584,20 N CLERMONT AVE,Margate City,NJ,39.33256466,-74.49692962,RES1,3001,,21,NE,1929,1929,3102,2,1,1378.373104,1378.373104,3505,NO,27.8,34.13,3,4.94,6106,113.508764,123.310693,133.017169,139.593633,I,Above,Hip,0,5701,,30.96571575,0,0,,,,1,1,,0.03,nav,1,1929,2,, -768,NJBF000053365,,Margate City,NJ,39.31965785,-74.51691936,RES1,3001,,NaN,NE,1954,0,3102,2,1,1840.204863,1840.204863,3507,NO,36.04,45.3,1,0.04,6106,113.260041,123.105398,132.792523,139.354079,I,Above,Gable,0,5701,,40.66997173,0,0,,,,1,1,,0.03,nav,1,1954,2,, -769,NJBF000054201,109 S THURLOW AVE,Margate City,NJ,39.32270961,-74.50766293,RES1,3001,,20,NE,2011,2011,3103,3,1,1792.628566,1792.628566,3505,NO,39.53,46.88,3,2.99,6106,113.415749,123.232934,132.927561,139.503419,I,Above,Flat,0,5701,,43.20468813,0,0,,,,1,1,,0.03,nav,1,2011,3,, -770,NJBF000059278,10 N FREDERICKSBURG AVE,Margate City,NJ,39.33392268,-74.49363565,RES1,3001,,18,NE,1929,1929,3102,2,1,1525.087959,1525.087959,3505,NO,34.61,48.52,3,-2.07,6106,113.562337,123.353898,133.063622,139.640822,I,Above,Hip,0,5701,,41.56862377,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, -771,NJBF000059049,3 EAST DRIVE,Margate City,NJ,39.33344194,-74.49341656,RES1,3001,,18,NE,1930,1930,3102,2,1,1226.874124,1226.874124,3505,NO,45.03,53.27,3,8.5,6106,113.573886,123.363181,133.073013,139.652259,I,Above,Hip,0,5701,,49.14620517,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -772,NJBF000056834,108 S DELAVAN AVE,Margate City,NJ,39.32935738,-74.49506318,RES1,3001,,21,NE,2014,2014,3102,3,1,2046.818914,2046.818914,3505,NO,46.65,58.76,3,5.96,6106,113.595319,123.379945,133.087227,139.675494,I,Above,Hip,0,5701,,52.70679828,0,0,,,,1,1,,0.03,nav,1,2014,3,, -773,NJBF000056320,8302 VENTNOR AVE,Margate City,NJ,39.32820707,-74.50229608,RES1,3001,,19,NE,1977,1977,3102,2,1,1267.503362,1267.503362,3505,NO,25.44,36.16,3,-0.57,6106,113.452843,123.264922,132.965749,139.543113,I,Above,Hip,0,5701,,30.79801859,0,0,,,,1,1,,0.03,nav,1,1977,2,, -774,NJBF000056809,26 S FRANKLIN AVE,Margate City,NJ,39.32930128,-74.49775337,RES1,3001,,28,NE,1923,1923,3102,2,2,1569.020219,1569.020219,3505,NO,32.34,47.32,3,-1.56,6106,113.536974,123.332919,133.037829,139.621405,I,Above,Flat,0,5701,,39.82992721,0,1.1,,,,1,1,,0.03,nav,1,1923,2,, -775,NJBF000056715,7905 ATLANTIC AVE,Margate City,NJ,39.32911445,-74.49763162,RES1,3001,,33,NE,1930,1930,3102,2,1,4985.74709,4985.74709,3505,NO,24.39,38.17,3,-0.62,6106,113.542308,123.337176,133.042133,139.626336,I,Above,Flat,0,5701,,31.27649359,0,0,,,,1,1,,0.03,nav,1,1930,2,, -776,NJBF000055346,4 S NASSAU AVE,Margate City,NJ,39.32584091,-74.50565804,RES1,3001,,18,NE,1950,1950,3102,2,1,1545.036494,1545.036494,3505,NO,28.79,40.11,3,-2.27,6106,113.413468,123.232461,132.92988,139.505032,I,Above,Hip,0,5701,,34.45065427,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, -777,NJBF000065217,,Ventnor City,NJ,39.34643503,-74.48794398,COM8,3001,,NaN,ME,1969,0,3401,3,1,709.6255934,709.6255934,3507,NO,48.7,54.45,1,1.43,6106,113.518964,123.316283,133.032185,139.553186,I,Above,Flat,0,NaN,,51.57303843,0,0,,,,1,1,,0.03,nav,1,1969,3,, -778,NJBF000065103,5 N VASSAR SQUARE,Ventnor City,NJ,39.34615301,-74.46730583,RES3A,3001,,17,NE,2012,2012,3301,3,1,1205.029475,1205.029475,3505,NO,35.88,41.37,3,-2.06,6106,113.978056,123.688904,133.429499,139.91475,I,Above,Flat,0,5701,,38.62573914,0,0,,,,1,1,,0.03,nav,1,2012,3,, -779,NJBF000067153,719 N SURREY AVE,Ventnor City,NJ,39.35234403,-74.48218448,RES3A,3001,,27,NE,1980,1980,3301,2,1,1348.683109,1348.683109,3505,NO,41.57,48.38,3,3.07,6106,113.570575,123.354537,133.075949,139.561602,I,Above,Gable,0,5701,,44.97132388,0,0,,,,1,1,,0.03,nav,1,1980,2,, -780,NJBF000064863,5508 CALVERT AVE,Ventnor City,NJ,39.34550281,-74.47837351,RES1,3001,,17,NE,1940,1940,3102,1,1,1028.864171,1028.864171,3505,NO,17.8,30,3,2.19,6106,113.742802,123.497592,133.224298,139.740528,I,Above,Gable,0,5701,,23.90161814,0,0,,,,1,1,,0.03,nav,1,1940,1,, -781,NJBF000063791,621 KINGSLEY DRIVE,Ventnor City,NJ,39.34270697,-74.49511381,RES1,3001,,17,NE,1977,1977,3102,1,1,1935.40442,1935.40442,3505,NO,15.3,28.98,3,2.77,6106,113.409401,123.229669,132.938673,139.476604,I,Above,Gable,0,5701,,22.14389285,0,0,,,,1,1,,0.03,nav,1,1977,1,, -782,NJBF000065109,413 N BURGHLEY AVE,Ventnor City,NJ,39.34616269,-74.48341185,RES1,3001,,17,NE,1966,1966,3102,1,1,1901.100723,1901.100723,3505,NO,22.67,36.16,3,8.63,6106,113.622854,123.400232,133.1211,139.640627,I,Above,Flat,0,5701,,29.41941755,0,0,,,,1,1,,0.03,nav,1,1966,1,, -783,NJBF000065137,308 N SUFFOLK AVE,Ventnor City,NJ,39.34624,-74.478625,RES1,3001,,17,NE,1930,1930,3102,2,1,1074.425096,1074.425096,3505,NO,24.71,29.96,3,0.75,6106,113.72764,123.485016,133.211397,139.724142,I,Above,Hip,0,5701,,27.33651725,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -784,NJBF000063112,105 N CAMBRIDGE AVE,Ventnor City,NJ,39.34091843,-74.48133276,RES1,3001,,17,NE,1925,1925,3102,2,1,1028.521104,1028.521104,3505,NO,41.14,50.76,3,7.04,6106,113.738179,123.495165,133.218379,139.763913,I,Above,Hip,0,5701,,45.94802539,0,0,,,,1,1,,0.03,nav,1,1925,2,, -785,NJBF000060017,111 N MARTINDALE AVE,Ventnor City,NJ,39.33524321,-74.49351596,RES1,3001,,17,NE,1940,1940,3102,2,1,1386.368975,1386.368975,3505,NO,28.23,34.03,3,-1.37,6106,113.546612,123.341244,133.051311,139.623665,I,Above,Hip,0,5701,,31.12712515,0,0,,,,1,1,,0.03,nav,1,1940,2,, -786,NJBF000066827,611 N SURREY AVE,Ventnor City,NJ,39.35091712,-74.4810053,RES1,3001,,17,NE,1975,1975,3102,2,1,1297.997825,1297.997825,3505,NO,35.88,43.99,3,-0.77,6106,113.614775,123.391225,133.114291,139.605922,I,Above,Gable,0,5701,,39.93273969,0,0,,,,1,1,,0.03,nav,1,1975,2,, -787,NJBF000063027,344-346 HAMPSHIRE DR,Ventnor City,NJ,39.34073421,-74.49226431,RES1,3001,,45,NE,1972,1972,3102,2,2,2112.154445,2112.154445,3505,NO,36.69,45.68,3,2.54,6106,113.499085,123.302295,133.014044,139.563269,I,Above,Gable,0,5701,,41.18669079,0,0,,,,1,1,,0.03,nav,1,1972,2,, -788,NJBF000061707,103 S CORNWALL AVE,Ventnor City,NJ,39.33811818,-74.47771319,RES1,3001,,17,NE,1914,1914,3102,3,1,2425.214028,2425.214028,3505,NO,48.8,58.01,3,0.6,6106,113.855636,123.590767,133.317808,139.872402,I,Above,Flat,0,5701,,53.40152026,0,1.2,,,,1,1,,0.03,nav,1,1914,3,, -789,NJBF000064632,301 N DORSET AVE,Ventnor City,NJ,39.3449565,-74.4805735,COM1,3003,,NaN,ME,1975,1975,3401,1,1,3486.304337,3486.304337,3507,NO,18.25,25.91,1,-0.5,6106,113.701381,123.464228,133.18838,139.711005,I,Above,Hip,0,NaN,,22.08103076,0,0,,,,1,1,,0.03,nav,1,1975,1,, -790,NJBF000060928,20 N BUFFALO AVE,Ventnor City,NJ,39.336771,-74.48741,RES1,3001,,18,NE,2016,2016,3102,2,1,617.2237067,617.2237067,3505,NO,43.94,51.92,3,5.29,6106,113.660275,123.432789,133.149058,139.71995,I,Above,Gable,0,5701,,47.93249148,0,1.1,,,,1,1,,0.03,nav,1,2016,2,, -791,NJBF000060357,6810 VENTNOR AVE,Ventnor City,NJ,39.33583481,-74.48668628,RES1,3001,,27,NE,1929,1929,3102,2,1,1429.409574,1429.409574,3505,NO,36.85,47.17,3,5.86,6106,113.689094,123.456106,133.172974,139.748778,I,Above,Flat,0,5701,,42.00826489,0,0,,,,1,1,,0.03,nav,1,1929,2,, -792,NJBF000065537,505 N DERBY AVE,Ventnor City,NJ,39.34738051,-74.4835204,RES1,3001,,17,NE,1963,1963,3101,1,1,1290.291165,1290.291165,3505,NO,18.06,25.65,3,3.47,6106,113.604597,123.384926,133.105569,139.618725,I,Above,Flat,0,5701,,21.85705189,0,0,,,,1,1,,0.03,nav,1,1963,1,, -793,NJBF000066586,716 N BURGHLEY AVE,Ventnor City,NJ,39.35014418,-74.48715285,RES1,3001,,17,NE,1975,1975,3101,2,1,1744.159018,1744.159018,3505,NO,39.45,45.8,3,2.18,6106,113.488465,123.289686,133.005906,139.50729,I,Above,Gable,0,5701,,42.62659407,0,0,,,,1,1,,0.03,nav,1,1975,2,, -794,NJBF000064123,24 S OAKLAND AVE,Ventnor City,NJ,39.34362885,-74.46846981,RES3B,3001,,17,E,1925,1925,3303,3,2,1715.173167,1715.173167,3504,NO,39.75,45.9,-4,0,6106,113.985447,123.695583,133.434551,139.93545,I,Above,Hip,0,NaN,,42.82318541,0,0,,,,1,1,,0.03,nav,1,1925,3,, -795,NJBF000064003,120 N OXFORD AVE,Ventnor City,NJ,39.34331396,-74.47800857,RES1,3001,,17,NE,1946,1946,3102,2,1,1632.676222,1632.676222,3505,NO,35.6,49.5,3,-1.94,6106,113.779632,123.52817,133.255311,139.782561,I,Above,Flat,0,5701,,42.54865297,0,0,,,,1,1,,0.03,nav,1,1946,2,, -796,NJBF000063962,118 N OXFORD AVE,Ventnor City,NJ,39.34321763,-74.47793374,RES1,3001,,17,NE,1946,1946,3102,2,1,1448.211107,1448.211107,3505,NO,39.14,49.99,3,2.32,6106,113.782555,123.530567,133.257795,139.785417,I,Above,Hip,0,5701,,44.56072036,0,0,,,,1,1,,0.03,nav,1,1946,2,, -797,NJBF000060218,100 S NEW HAVEN AVE,Ventnor City,NJ,39.33559801,-74.48329366,RES1,3001,,17,NE,1925,1925,3102,3,1,1618.38181,1618.38181,3505,NO,37.22,42.68,3,-2,6106,113.767094,123.51916,133.239555,139.81628,I,Above,Gable,0,5701,,39.95251915,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, -798,NJBF000059945,19 N SWARTHMORE AVE,Ventnor City,NJ,39.33512776,-74.49197513,RES1,3001,,17,NE,1925,1925,3102,2,1,1289.78946,1289.78946,3505,NO,36.92,51.77,3,2.69,6106,113.58221,123.369914,133.081417,139.656165,I,Above,Gable,0,5701,,44.34568929,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -799,NJBF000059741,109 S TROY AVE,Ventnor City,NJ,39.334775,-74.483649,RES1,3001,,17,NE,1925,1925,3102,2,1,1005.796768,1005.796768,3505,NO,39.11,50.05,3,8.13,6106,113.770598,123.521998,133.241852,139.823216,I,Above,Gable,0,5701,,44.58039918,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -800,NJBF000065879,505 N OXFORD AVE,Ventnor City,NJ,39.34834433,-74.48151893,RES1,3001,,17,NE,1963,1963,3102,1,1,1756.559006,1756.559006,3507,NO,20.92,26.8,1,2.42,6106,113.636396,123.410161,133.132987,139.638813,I,Above,Hip,0,5701,,23.85994667,0,0,,,,1,1,,0.03,nav,1,1963,1,, -801,NJBF000060129,102 S NEW HAVEN AVE,Ventnor City,NJ,39.33545092,-74.4832024,RES1,3001,,20,NE,2016,2016,3102,3,1,1881.11661,1881.11661,3505,NO,60.86,73.59,3,5.73,6106,113.771139,123.522435,133.242901,139.820378,I,Above,Gable,0,5701,,67.22789829,0,1.1,,,,1,1,,0.03,nav,1,2016,3,, -802,NJBF000060381,112 N SWARTHMORE AVE,Ventnor City,NJ,39.33588332,-74.49302178,RES1,3001,,17,NE,1948,1948,3102,1,1,1890.116537,1890.116537,3505,NO,16.71,25.11,3,-1.82,6106,113.548649,123.342863,133.05349,139.623881,I,Above,Hip,0,5701,,20.90809153,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, -803,NJBF000060536,23 S AVOLYN AVE,Ventnor City,NJ,39.33615385,-74.48401583,RES1,3001,,30,NE,1921,1921,3102,2,1,1608.328699,1608.328699,3505,NO,42.94,51.86,3,5.95,6106,113.743561,123.50011,133.21983,139.793884,I,Above,Flat,0,5701,,47.40058429,0,0,,,,1,1,,0.03,nav,1,1921,2,, -804,NJBF000064608,312 N DERBY AVE,Ventnor City,NJ,39.34488998,-74.48207567,RES1,3001,,17,NE,1983,1983,3102,2,1,2171.714073,2171.714073,3505,NO,34.03,39.88,3,1.76,6106,113.669076,123.438109,133.160548,139.685465,I,Above,Gable,0,5701,,36.95904395,0,1.1,,,,1,1,,0.03,nav,1,1983,2,, -805,NJBF000061684,105 N RICHARDS AVE,Ventnor City,NJ,39.33807349,-74.48700571,RES1,3001,,17,NE,1925,1925,3102,1,1,1532.150335,1532.150335,3505,NO,18.93,24.56,3,2.19,6106,113.6514,123.4255,133.142348,139.70671,I,Above,Hip,0,5701,,21.74480391,0,0,,,,1,1,,0.03,nav,1,1925,1,, -806,NJBF000058787,,Ventnor City,NJ,39.33294374,-74.49090659,RES1,3001,,NaN,NE,1969,0,3102,2,1,927.9945384,927.9945384,3505,NO,37.87,44.65,3,8.95,6106,113.636159,123.413346,133.125443,139.710085,I,Above,Hip,0,5701,,41.26308665,0,0,,,,1,1,,0.03,nav,1,1969,2,, -807,NJBF000066806,806 N BURGHLEY AVE,Ventnor City,NJ,39.35085196,-74.48776891,RES1,3001,,17,NE,1972,1972,3101,1,1,2441.56714,2441.56714,3505,NO,15.27,23.16,3,4.6,6106,113.465743,123.270924,132.986333,139.484376,I,Above,Hip,0,5701,,19.21559107,0,0,,,,1,1,,0.03,nav,1,1972,1,, -808,NJBF000060464,21 N LAFAYETTE AVE,Ventnor City,NJ,39.33601866,-74.49017109,RES1,3001,,17,NE,1929,1929,3102,2,1,1055.948333,1055.948333,3505,NO,37.04,42.67,3,-0.02,6106,113.609695,123.392036,133.105426,139.678211,I,Above,Flat,0,5701,,39.85219089,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, -809,NJBF000066580,610 N SOMERSET AVE,Ventnor City,NJ,39.35013372,-74.48262793,RES1,3001,,17,NE,1974,1974,3102,2,1,1619.490554,1619.490554,3507,NO,21.16,35.56,1,-0.07,6106,113.588851,123.370724,133.092025,139.589728,I,Above,Gable,0,5701,,28.35934824,0,0,,,,1,1,,0.03,nav,1,1974,2,, -810,NJBF000066884,608 N VICTORIA AVE,Ventnor City,NJ,39.351159,-74.480809,RES3A,3001,,NaN,NE,1988,1988,3301,2,1,1013.79727,1013.79727,3505,NO,32.62,38.08,3,2.66,6106,113.616032,123.392093,133.11535,139.605457,I,Above,Hip,0,5701,,35.34763359,0,0,,,,1,1,,0.03,nav,1,1988,2,, -811,NJBF000063156,114 N CAMBRIDGE AVE,Ventnor City,NJ,39.34100815,-74.48183389,RES1,3001,,17,NE,1962,1962,3102,1,1,1404.169545,1404.169545,3505,NO,10.11,24.35,3,-1.7,6106,113.725919,123.485225,133.207883,139.753543,I,Above,Hip,0,5701,,17.23012839,0,0,,,,1,1,,0.03,nav,1,1962,1,, -812,NJBF000060109,,Ventnor City,NJ,39.33541922,-74.48532906,RES1,3001,,NaN,NE,1925,0,3102,2,1,1540.253674,1540.253674,3505,NO,20.83,33.77,3,-0.63,6106,113.724725,123.484903,133.203107,139.781288,I,Above,Hip,0,5701,,27.2976832,0,0,,,,1,1,,0.03,nav,1,1925,2,, -813,NJBF000060659,14 S NEW HAVEN AVE,Ventnor City,NJ,39.33636433,-74.48393695,RES1,3001,,17,NE,1942,1942,3102,2,1,1769.217499,1769.217499,3505,NO,25.91,32.76,3,0.14,6106,113.742425,123.499182,133.219022,139.791906,I,Above,Hip,0,5701,,29.33657256,0,1.1,,,,1,1,,0.03,nav,1,1942,2,, -814,NJBF000060391,114 S PORTLAND AVE,Ventnor City,NJ,39.33589346,-74.48063688,RES1,3001,,NaN,NE,1920,0,3102,3,1,1348.69318,1348.69318,3505,NO,35.06,45.65,3,0.21,6106,113.82155,123.563244,133.286596,139.858945,I,Above,Flat,0,5701,,40.35638364,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, -815,NJBF000063247,130 N HARVARD AVE,Ventnor City,NJ,39.34122218,-74.48271175,RES1,3001,,27,NE,1920,1920,3102,2,1,1677.37603,1677.37603,3505,NO,29.14,41.03,3,7.48,6106,113.703676,123.467183,133.188878,139.73433,I,Above,Gable,0,5701,,35.08595498,0,0,,,,1,1,,0.03,nav,1,1920,2,, -816,NJBF000065476,421 N DORSET AVE,Ventnor City,NJ,39.34717739,-74.48236269,RES1,3001,,17,NE,1947,1947,3102,1,1,1102.432977,1102.432977,3505,NO,17.17,27.77,3,3.97,6106,113.632844,123.407855,133.129828,139.642852,I,Above,Gable,0,5701,,22.47041888,0,0,,,,1,1,,0.03,nav,1,1947,1,, -817,NJBF000063931,602 N BUFFALO AVE,Ventnor City,NJ,39.34311349,-74.49316853,RES1,3001,,17,NE,1975,1975,3102,2,1,1681.60323,1681.60323,3505,NO,33.68,44.26,3,-1.05,6106,113.447081,123.259796,132.970639,139.507896,I,Above,Gable,0,5701,,38.96932164,0,0,,,,1,1,,0.03,nav,1,1975,2,, -818,NJBF000062855,118 N PRINCETON AVE,Ventnor City,NJ,39.34036235,-74.48347209,RES1,3001,,17,NE,1930,1930,3102,1,1,1216.825336,1216.825336,3505,NO,21.48,26.73,3,7.44,6106,113.698435,123.463127,133.183935,139.734762,I,Above,Hip,0,5701,,24.10513937,0,0,,,,1,1,,0.03,nav,1,1930,1,, -819,NJBF000062817,116 N PRINCETON AVE,Ventnor City,NJ,39.34029081,-74.48344302,RES1,3001,,17,NE,2016,1930,3102,2,1,1369.266682,1369.266682,3505,NO,38.89,52.75,3,8.78,6106,113.700029,123.46443,133.185265,139.736454,I,Above,Hip,0,5701,,45.82007268,0,0,,,,1,1,,0.03,nav,1,2016,2,, -820,NJBF000066772,605 N VICTORIA AVE,Ventnor City,NJ,39.35072953,-74.47994073,RES3A,3001,,NaN,NE,1991,1991,3301,1,1,2170.920983,2170.920983,3505,NO,23.4,35.24,3,6.14,6106,113.640691,123.412325,133.136683,139.627823,I,Above,Gable,0,5701,,29.32261841,0,0,,,,1,1,,0.03,nav,1,1991,1,, -821,NJBF000066344,513 N SUFFOLK AVE,Ventnor City,NJ,39.34952874,-74.48075532,RES1,3001,,17,NE,1974,1974,3102,2,1,1328.920038,1328.920038,3507,NO,23.5,30.36,1,1.66,6106,113.638044,123.410868,133.134439,139.633017,I,Above,Flat,0,5701,,26.9252912,0,0,,,,1,1,,0.03,nav,1,1974,2,, -822,NJBF000060453,6811 VENTNOR AVE,Ventnor City,NJ,39.33600184,-74.48727787,RES1,3001,,17,NE,1950,1950,3102,1,1,1187.901763,1187.901763,3505,NO,23.31,33.27,3,5.36,6106,113.673744,123.443706,133.159994,139.734754,I,Above,Gable,0,5701,,28.28872357,0,0,,,,1,1,,0.03,nav,1,1950,1,, -823,NJBF000065082,316 N SOMERSET AVE,Ventnor City,NJ,39.34608771,-74.47940674,RES1,3001,,17,NE,1960,1960,3102,2,1,1961.10344,1961.10344,3505,NO,42.1,50.16,3,6.01,6106,113.712354,123.472686,133.198153,139.712985,I,Above,Flat,0,5701,,46.12956836,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, -824,NJBF000060871,7302 CALVERT AVENUE,Ventnor City,NJ,39.33667404,-74.49525077,RES1,3001,,17,NE,1950,1999,3102,2,1,2510.14175,2510.14175,3505,NO,21.03,35.85,3,-1.46,6106,113.488489,123.294412,133.003073,139.567449,I,Above,Gable,0,5701,,28.43961828,0,0,,,,1,1,,0.03,nav,1,1950,2,, -825,NJBF000060341,6605 ATLANTIC AVE,Ventnor City,NJ,39.33580659,-74.484113,REL1,3001,,NaN,ME,1930,1930,3401,1,1,3924.694619,3924.694619,3507,NO,14.86,24.8,1,0.06,6106,113.746184,123.502242,133.221799,139.79776,I,Above,Gable,0,NaN,,19.82689599,0,0,,,,1,1,,0.03,nav,1,1930,1,, -826,NJBF000060693,15 S NEW HAVEN AVE,Ventnor City,NJ,39.336408,-74.48342594,RES1,3001,,17,NE,1927,1927,3102,3,1,2147.885395,2147.885395,3505,NO,45.93,53.92,3,8.61,6106,113.753083,123.507799,133.228195,139.800569,I,Above,Hip,0,5701,,49.92764608,0,1.2,,,,1,1,,0.03,nav,1,1927,3,, -827,NJBF000062220,215 N ROSBOROUGH AVE,Ventnor City,NJ,39.33902287,-74.49131444,RES1,3001,,17,NE,1946,1946,3102,1,1,1396.636438,1396.636438,3505,NO,18.08,28.32,3,0.32,6106,113.5433,123.338224,133.050823,139.608801,I,Above,Gable,0,5701,,23.20229398,0,1.1,,,,1,1,,0.03,nav,1,1946,1,, -828,NJBF000060045,23 S BUFFALO AVE,Ventnor City,NJ,39.33531234,-74.48553487,RES1,3001,,17,NE,1946,1946,3102,2,1,1792.366933,1792.366933,3505,NO,36.82,47.89,3,5.44,6106,113.72166,123.482427,133.200397,139.77911,I,Above,Hip,0,5701,,42.35204207,0,1.2,,,,1,1,,0.03,nav,1,1946,2,, -829,NJBF000066800,6200 BURK AVE,Ventnor City,NJ,39.35082473,-74.48948103,RES1,3001,,17,NE,1978,1978,3101,2,1,1972.715631,1972.715631,3505,NO,29.85,43.13,3,-2.38,6106,113.428094,123.240632,132.954205,139.453057,I,Above,Gable,0,5701,,36.48849716,0,0,,,,1,1,,0.03,nav,1,1978,2,, -830,NJBF000065041,24 N MARION AVE,Ventnor City,NJ,39.3459801,-74.4690229,RES1,3001,,17,NE,1926,1926,3102,2,1,1072.573585,1072.573585,3507,NO,31.91,40.41,1,2.69,6106,113.942573,123.659968,133.398304,139.889648,I,Above,Hip,0,5701,,36.15776395,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, -831,NJBF000066756,5500 WELLINGTON AVE,Ventnor City,NJ,39.35068784,-74.48225815,RES1,3001,,17,NE,1972,1972,3102,2,1,1634.918633,1634.918633,3507,NO,31.05,40.3,1,1.95,6106,113.589964,123.371291,133.092929,139.587308,I,Above,Gable,0,5701,,35.67607607,0,1.1,,,,1,1,,0.03,nav,1,1972,2,, -832,NJBF000065045,9 N BATON ROUGE AVE,Ventnor City,NJ,39.34598742,-74.46789154,RES3A,3001,,17,NE,1940,1940,3301,1,1,1031.540497,1031.540497,3505,NO,18.63,31.84,3,2.47,6106,113.967338,123.680193,133.420012,139.907883,I,Above,Gable,0,5701,,25.23557965,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, -833,NJBF000063115,2 1/2 S OXFORD AVE,Ventnor City,NJ,39.34092035,-74.47545535,RES1,3001,,17,NE,1977,1977,3102,1,1,2458.398739,2458.398739,3505,NO,15.18,27.84,3,-0.92,6106,113.867697,123.600202,133.330238,139.864679,I,Above,Gable,0,5701,,21.50915009,0,1.1,,,,1,1,,0.03,nav,1,1977,1,, -834,NJBF000065438,416 N DUDLEY AVE,Ventnor City,NJ,39.34708217,-74.48192671,RES1,3001,,17,NE,1960,1960,3102,1,1,1468.425246,1468.425246,3505,NO,16.6,26.56,3,0.89,6106,113.643721,123.416695,133.139175,139.652197,I,Above,Hip,0,5701,,21.5804393,0,0,,,,1,1,,0.03,nav,1,1960,1,, -835,NJBF000062336,3 N SACRAMENTO AVE,Ventnor City,NJ,39.33924603,-74.48136842,RES1,3001,,17,NE,1920,1920,3102,2,1,2128.7919,2128.7919,3505,NO,36.21,42.91,3,2.21,6106,113.75988,123.513027,133.236059,139.790813,I,Above,Hip,0,5701,,39.55952755,0,0,,,,1,1,,0.03,nav,1,1920,2,, -836,NJBF000063068,23 N CORNWALL AVE,Ventnor City,NJ,39.34082983,-74.47993841,RES1,3001,,19,NE,2015,2016,3102,2,1,875.5685151,875.5685151,3505,NO,34.15,46.59,3,3.91,6106,113.770126,123.521055,133.24584,139.789859,I,Above,Flat,0,5701,,40.37097246,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, -837,NJBF000060697,12 N NEWARK AVE,Ventnor City,NJ,39.33641428,-74.48834475,RES1,3001,,17,NE,1945,1945,3102,1,1,1370.884015,1370.884015,3505,NO,27.72,38.15,3,8.99,6106,113.644547,123.420121,133.135389,139.707631,I,Above,Gable,0,5701,,32.93671485,0,0,,,,1,1,,0.03,nav,1,1945,1,, -838,NJBF000066645,715 N BURGHLEY AVE,Ventnor City,NJ,39.35034141,-74.48678751,RES1,3001,,17,NE,1965,1965,3101,2,1,1295.281077,1295.281077,3505,NO,37.15,50.97,3,4.69,6106,113.494035,123.294052,133.010635,139.51079,I,Above,Gable,0,5701,,44.05889352,0,0,,,,1,1,,0.03,nav,1,1965,2,, -839,NJBF000060072,108 N WASHINGTON AVE,Ventnor City,NJ,39.33534902,-74.49332662,RES1,3001,,17,NE,1948,1948,3102,1,1,1812.090778,1812.090778,3505,NO,25.2,37.72,3,7.19,6106,113.549313,123.343416,133.053676,139.625855,I,Above,Hip,0,5701,,31.4626743,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, -840,NJBF000063055,6005 WINCHESTER AVE,Ventnor City,NJ,39.34079449,-74.47956862,RES1,3001,,19,NE,1969,2018,3102,2,1,1319.563292,1319.563292,3505,NO,36.81,50.81,3,1.6,6106,113.778743,123.528045,133.253249,139.796868,I,Above,Hip,0,5701,,43.80802865,0,0,,,,1,1,,0.03,nav,1,1969,2,, -841,NJBF000060482,121 N SWARTHMORE AVE,Ventnor City,NJ,39.33604889,-74.49268921,RES1,3001,,17,NE,1948,1948,3102,1,1,1980.550806,1980.550806,3505,NO,26.91,40.63,3,7.71,6106,113.553706,123.346927,133.057892,139.627983,I,Above,Hip,0,5701,,33.77245065,0,1.1,,,,1,1,,0.03,nav,1,1948,1,, -842,NJBF000064149,22 S OAKLAND AVE,Ventnor City,NJ,39.34371256,-74.46854906,RES3B,3001,,17,E,1920,1920,3303,3,1,1882.434562,1882.434562,3504,NO,36.6,48.4,-4,0,6106,113.982608,123.693247,133.432118,139.932872,I,Above,Hip,0,NaN,,42.49926066,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, -843,NJBF000059187,109 S NEWARK AVE,Ventnor City,NJ,39.3337338,-74.48574592,RES1,3001,,20,NE,1965,1965,3102,2,1,1482.298504,1482.298504,3505,NO,27.58,38.54,3,-1.65,6110,113.73882,123.496274,133.213703,139.800261,I,Above,Hip,0,5701,,33.06138178,0,1.1,,,,1,1,,0.35,nav,1,1965,2,, -844,NJBF000066037,517 N DUDLEY AVE,Ventnor City,NJ,39.34873836,-74.48273427,RES1,3001,,17,NE,1963,1963,3102,1,1,1557.630467,1557.630467,3507,NO,18.8,29.69,1,-0.03,6106,113.604433,123.384106,133.105486,139.610653,I,Above,Hip,0,5701,,24.24241732,0,1.1,,,,1,1,,0.03,nav,1,1963,1,, -845,NJBF000060095,7114 WINCHESTER AVE,Ventnor City,NJ,39.33539719,-74.49139165,RES1,3001,,17,NE,1930,1930,3102,2,1,1610.035603,1610.035603,3505,NO,22.63,30.84,3,1.61,6106,113.591346,123.37727,133.089376,139.663672,I,Above,Hip,0,5701,,26.73123442,0,1.2,,,,1,1,,0.03,nav,1,1930,2,, -846,NJBF000065447,508 N BURGHLEY AVE,Ventnor City,NJ,39.34710983,-74.48467747,RES1,3001,,17,NE,1970,1970,3101,2,1,1232.150692,1232.150692,3505,NO,26.59,36.74,3,4.46,6106,113.582513,123.367218,133.086595,139.602211,I,Above,Flat,0,5701,,31.66607059,0,0,,,,1,1,,0.03,nav,1,1970,2,, -847,NJBF000059996,,Ventnor City,NJ,39.33521658,-74.48740698,RES1,3001,,NaN,NE,1940,0,3102,2,1,4085.573003,4085.573003,3505,NO,24.78,31.2,3,-0.55,6106,113.681714,123.450163,133.166185,139.744708,I,Above,Flat,0,5701,,27.98970939,0,0,,,,1,1,,0.03,nav,1,1940,2,, -848,NJBF000062814,117 N PORTLAND AVE,Ventnor City,NJ,39.34028034,-74.48368823,RES1,3001,,17,NE,1940,1940,3102,2,1,967.2981839,967.2981839,3505,NO,31.98,41.7,3,6.9,6106,113.694769,123.46018,133.180747,139.732192,I,Above,Gable,0,5701,,36.83831839,0,0,,,,1,1,,0.03,nav,1,1940,2,, -849,NJBF000066385,609 N DUDLEY AVE,Ventnor City,NJ,39.3496301,-74.48346925,RES1,3001,,17,NE,1974,1974,3102,2,1,1250.945284,1250.945284,3507,NO,29.27,39.5,1,-0.51,6106,113.576691,123.361189,133.081606,139.582842,I,Above,Flat,0,5701,,34.381523,0,0,,,,1,1,,0.03,nav,1,1974,2,, -850,NJBF000060676,201 N SWARTHMORE AVE,Ventnor City,NJ,39.33638598,-74.49334422,RES1,3001,,NaN,NE,1970,1970,3102,2,1,1584.884144,1584.884144,3505,NO,35.47,41.25,3,8.04,6106,113.53459,123.331518,133.041911,139.609831,I,Above,Flat,0,5701,,38.3575418,0,0,,,,1,1,,0.03,nav,1,1970,2,, -851,NJBF000064526,7 S MARION AVE,Ventnor City,NJ,39.34471486,-74.46774286,RES1,3001,,17,NE,1919,1919,3102,2,1,1751.29767,1751.29767,3504,NO,36.48,50.74,-4,0,6106,113.987186,123.696754,133.436731,139.930165,I,Above,Hip,0,5701,,43.61193914,0,1.1,,,,1,1,,0.03,nav,1,1919,2,, -852,NJBF000059063,18 S MELBOURNE AVE,Ventnor City,NJ,39.33347633,-74.48954821,RES1,3001,,17,NE,1913,1913,3102,2,1,1272.462902,1272.462902,3505,NO,37.21,47.49,3,2.97,6106,113.658673,123.431538,133.145074,139.729417,I,Above,Hip,0,5701,,42.34699157,0,1.1,,,,1,1,,0.03,nav,1,1913,2,, -853,NJBF000059016,15 S SWARTHMORE AVE,Ventnor City,NJ,39.33337543,-74.49051869,RES1,3001,,17,NE,1910,1910,3102,2,1,1989.056143,1989.056143,3505,NO,39.92,51.25,3,3.21,6106,113.638688,123.415411,133.127978,139.711518,I,Above,Hip,0,5701,,45.58204686,0,0,,,,1,1,,0.03,nav,1,1910,2,, -854,NJBF000061699,10 N NEWPORT AVE,Ventnor City,NJ,39.33810285,-74.48430027,RES1,3001,,17,NE,1928,1928,3102,2,1,555.8194873,555.8194873,3505,NO,32.7,43.13,3,1.34,6106,113.7107,123.473392,133.193092,139.75674,I,Above,Flat,0,5701,,37.91543329,0,1.2,,,,1,1,,0.03,nav,1,1928,2,, -855,NJBF000066175,710 N CAMBRIDGE AVE,Ventnor City,NJ,39.34911644,-74.48807913,RES1,3001,,17,NE,1960,1960,3101,1,1,1691.047596,1691.047596,3505,NO,17.19,28.38,3,3.89,6106,113.481145,123.284411,132.99981,139.506957,I,Above,Flat,0,5701,,22.78304952,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, -856,NJBF000065670,601 N CORNWALL AVE,Ventnor City,NJ,39.34777096,-74.48555367,RES1,3001,,17,NE,1968,1968,3101,1,1,2067.145484,2067.145484,3505,NO,10.74,23.83,3,-0.56,6106,113.554505,123.344286,133.062622,139.575406,I,Above,Hip,0,5701,,17.28605198,0,0,,,,1,1,,0.03,nav,1,1968,1,, -857,NJBF000060335,7303 MONMOUTH AVE,Ventnor City,NJ,39.33579605,-74.49408184,RES1,3001,,16,NE,1950,1950,3102,2,1,806.9668364,806.9668364,3505,NO,38.09,52.02,3,0.94,6106,113.526452,123.325,133.034624,139.604044,I,Above,Hip,0,5701,,45.05516213,0,0,,,,1,1,,0.03,nav,1,1950,2,, -858,NJBF000060361,209 N FREDERICKSBURG AVE,Ventnor City,NJ,39.33583809,-74.49471123,RES1,3001,,28,NE,1915,1915,3102,2,1,2165.970761,2165.970761,3505,NO,39.02,44.54,3,4.17,6106,113.511982,123.313356,133.022405,139.590829,I,Above,Gable,0,5701,,41.77984064,0,1.1,,,,1,1,,0.03,nav,1,1915,2,, -859,NJBF000060348,117 N SWARTHMORE AVE,Ventnor City,NJ,39.33582107,-74.49252781,RES1,3001,,17,NE,1925,1925,3102,2,1,978.2768985,978.2768985,3505,NO,26.5,40.38,3,1.86,6106,113.560412,123.352337,133.063422,139.634652,I,Above,Gable,0,5701,,33.4413403,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -860,NJBF000060363,7301 MONMOUTH AVE,Ventnor City,NJ,39.3358425,-74.493999,RES1,3001,,45,NE,1950,1950,3102,2,2,800.0730611,800.0730611,3505,NO,40.28,47.23,3,2.5,6106,113.527647,123.32596,133.035668,139.605011,I,Above,Gable,0,5701,,43.75708494,0,0,,,,1,1,,0.03,nav,1,1950,2,, -861,NJBF000063837,102 S OAKLAND AVE,Ventnor City,NJ,39.34284814,-74.4679787,RES3B,3001,,NaN,E,1922,1900,3303,3,1,1905.677066,1905.677066,3504,NO,56,66.02,-4,0,6106,114.006506,123.712935,133.452484,139.955443,I,Above,Hip,0,NaN,,61.01054567,0,1.1,,,,1,1,,0.03,nav,1,1922,3,, -862,NJBF000060316,6901 VENTNOR AVE,Ventnor City,NJ,39.3357606,-74.48776063,RES1,3001,,17,NE,1966,1966,3102,2,1,2144.502352,2144.502352,3505,NO,35.76,46.57,3,-1.06,6106,113.66641,123.437795,133.153552,139.729261,I,Above,Flat,0,5701,,41.16405316,0,0,,,,1,1,,0.03,nav,1,1966,2,, -863,NJBF000066375,709 N CORNWALL AVE,Ventnor City,NJ,39.349598,-74.487089,RES1,3001,,17,NE,1968,1968,3101,2,1,1031.534226,1031.534226,3505,NO,36.54,50.82,3,-0.44,6106,113.496893,123.296813,133.0132,139.517382,I,Above,Flat,0,5701,,43.68259612,0,1.1,,,,1,1,,0.03,nav,1,1968,2,, -864,NJBF000063436,205 N SACRAMENTO AVE,Ventnor City,NJ,39.3417285,-74.48342984,RES1,3001,,18,NE,1925,1925,3102,1,1,1448.648347,1448.648347,3505,NO,17.52,28.32,3,2.22,6106,113.681044,123.448764,133.169689,139.713062,I,Above,Flat,0,5701,,22.91982439,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, -865,NJBF000060512,104 S STRATFORD AVE,Ventnor City,NJ,39.33611525,-74.48151841,RES1,3001,,16,NE,1925,1925,3102,1,1,2097.355183,2097.355183,3505,NO,16.88,25.29,3,2.42,6106,113.799117,123.545068,133.267488,139.839781,I,Above,Hip,0,5701,,21.0847058,0,1.1,,,,1,1,,0.03,nav,1,1925,1,, -866,NJBF000062117,6808 VENTNOR GDNS PL,Ventnor City,NJ,39.33882149,-74.48963367,RES1,3001,,17,NE,1966,1966,3102,2,1,1329.844707,1329.844707,3505,NO,45.08,56.19,3,6.26,6106,113.58318,123.370378,133.084624,139.644511,I,Above,Hip,0,5701,,50.63531856,0,1.1,,,,1,1,,0.03,nav,1,1966,2,, -867,NJBF000066594,710 N DERBY AVE,Ventnor City,NJ,39.35018328,-74.48629842,RES1,3001,,17,NE,1977,1977,3101,1,1,1406.25479,1406.25479,3505,NO,17.81,31.62,3,3.28,6106,113.506923,123.304542,133.021693,139.522364,I,Above,Gable,0,5701,,24.71661925,0,0,,,,1,1,,0.03,nav,1,1977,1,, -868,NJBF000065630,506 N DORSET AVE,Ventnor City,NJ,39.34765754,-74.48339073,RES1,3001,,17,NE,1960,1960,3101,1,1,1874.148568,1874.148568,3505,NO,20.59,32.45,3,8.56,6106,113.603857,123.384193,133.104953,139.616515,I,Above,Gable,0,5701,,26.52313737,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, -869,NJBF000064511,5400 MONMOUTH AVE,Ventnor City,NJ,39.34466852,-74.47649583,RES1,3001,,17,NE,1953,1953,3102,1,1,902.7105064,902.7105064,3505,NO,16.41,29.55,3,-2.23,6106,113.795156,123.540361,133.26932,139.78639,I,Above,Flat,0,5701,,22.9835606,0,0,,,,1,1,,0.03,nav,1,1953,1,, -870,NJBF000062265,6 N SACRAMENTO AVE,Ventnor City,NJ,39.339114,-74.4817655,RES1,3001,,17,NE,1940,1940,3102,2,2,2095.633964,2095.633964,3505,NO,28.23,38.18,3,2.24,6106,113.752908,123.507403,133.229979,139.785945,I,Above,Hip,0,5701,,33.20458809,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, -871,NJBF000062271,124 N AVOLYN AVE,Ventnor City,NJ,39.3391305,-74.4868705,RES1,3001,,17,NE,1929,1929,3102,2,1,1076.913338,1076.913338,3505,NO,30.02,37.18,3,8.06,6106,113.640027,123.416171,133.133264,139.692152,I,Above,Hip,0,5701,,33.60054164,0,1.1,,,,1,1,,0.03,nav,1,1929,2,, -872,NJBF000064988,5505 CALVERT AVE,Ventnor City,NJ,39.34585235,-74.47844404,RES1,3001,,17,NE,1927,1927,3102,2,1,1043.745607,1043.745607,3505,NO,34.65,48.52,3,-0.26,6106,113.736696,123.492511,133.219122,139.733619,I,Above,Hip,0,5701,,41.5842301,0,0,,,,1,1,,0.03,nav,1,1927,2,, -873,NJBF000065091,321 N OXFORD AVE,Ventnor City,NJ,39.34611754,-74.47977459,RES1,3001,,17,NE,1960,1960,3102,2,1,1952.865127,1952.865127,3505,NO,45.02,58.76,3,6.27,6106,113.703835,123.465772,133.190806,139.706048,I,Above,Flat,0,5701,,51.88830275,0,1.1,,,,1,1,,0.03,nav,1,1960,2,, -874,NJBF000062238,823 N AVOLYN AVE,Ventnor City,NJ,39.33906798,-74.48636234,RES1,3001,,17,NE,1940,1940,3102,1,1,1641.379993,1641.379993,3505,NO,13.36,26.91,3,0.34,6106,113.652098,123.425925,133.143542,139.702709,I,Above,Flat,0,5701,,20.13834064,0,1.1,,,,1,1,,0.03,nav,1,1940,1,, -875,NJBF000064989,20 N MARION AVE,Ventnor City,NJ,39.34585257,-74.46891614,RES1,3001,,17,NE,1926,1926,3102,2,1,1182.368201,1182.368201,3507,NO,26.38,35.8,1,1.07,6106,113.946576,123.663274,133.401749,139.893387,I,Above,Hip,0,5701,,31.09140158,0,1.1,,,,1,1,,0.03,nav,1,1926,2,, -876,NJBF000062284,26 N PORTLAND AVE,Ventnor City,NJ,39.33914984,-74.48324617,RES1,3001,0,17,NE,1890,1890,3102,2,1,1551.089713,1551.089713,3505,NO,25.6,39.37,3,-2.29,6106,113.719759,123.480579,133.201531,139.758778,I,Above,Hip,0,5701,,32.48358972,0,0,,,,1,1,,0.03,nav,1,1890,2,, -877,NJBF000064969,309 N OXFORD AVE,Ventnor City,NJ,39.34581441,-74.4795588,RES1,3001,,45,NE,1930,1930,3102,2,2,935.5461486,935.5461486,3505,NO,40.08,46.25,3,8.8,6106,113.712574,123.472973,133.198274,139.714805,I,Above,Gable,0,5701,,43.16676512,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -878,NJBF000065016,5402 CALVERT AVE,Ventnor City,NJ,39.34591853,-74.47753407,RES1,3001,,17,NE,1940,1940,3102,2,1,1248.190403,1248.190403,3505,NO,33.81,39.99,3,1.64,6106,113.755906,123.508067,133.235759,139.748266,I,Above,Gable,0,5701,,36.90174709,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, -879,NJBF000065671,517 N BURGHLEY AVE,Ventnor City,NJ,39.34777303,-74.48470383,RES1,3001,,17,NE,1958,1958,3101,1,1,1485.235636,1485.235636,3505,NO,23.35,34.19,3,8.23,6106,113.573302,123.359456,133.078732,139.590867,I,Above,Flat,0,5701,,28.77256009,0,0,,,,1,1,,0.03,nav,1,1958,1,, -880,NJBF000064982,29 N OAKLAND AVE,Ventnor City,NJ,39.34583947,-74.46993776,RES1,3001,,17,NE,1920,1920,3102,2,1,930.1907943,930.1907943,3507,NO,35.49,47.87,1,2.64,6106,113.924288,123.645088,133.382236,139.87695,I,Above,Gable,0,5701,,41.67927727,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, -881,NJBF000064948,27 N OAKLAND AVE,Ventnor City,NJ,39.34573673,-74.46985304,RES1,3001,,17,NE,1920,1920,3102,1,1,1984.7099,1984.7099,3507,NO,13.93,27.89,1,1.14,6106,113.927485,123.647727,133.384984,139.879952,I,Above,Hip,0,5701,,20.90648629,0,1.1,,,,1,1,,0.03,nav,1,1920,1,, -882,NJBF000064928,416 N CAMBRIDGE AVE,Ventnor City,NJ,39.34569752,-74.48532822,RES1,3001,,17,NE,1970,1970,3102,2,1,1681.029895,1681.029895,3505,NO,32.14,43.88,3,2.08,6106,113.586548,123.371109,133.08989,139.613461,I,Above,Gable,0,5701,,38.01305873,0,0,,,,1,1,,0.03,nav,1,1970,2,, -883,NJBF000064832,,Ventnor City,NJ,39.34544289,-74.48005819,RES1,3001,,NaN,NE,1969,0,3102,2,1,1328.431905,1328.431905,3505,NO,47.25,61.44,3,8.57,6106,113.706406,123.468118,133.192852,139.712125,I,Above,Flat,0,5701,,54.34397764,0,0,,,,1,1,,0.03,nav,1,1969,2,, -884,NJBF000064541,312 N BURGHLEY AVE,Ventnor City,NJ,39.3447425,-74.482799,RES1,3001,,17,NE,1958,1958,3102,1,1,1231.619122,1231.619122,3505,NO,16.76,31.5,3,-0.23,6106,113.655029,123.426804,133.148433,139.674938,I,Above,Hip,0,5701,,24.13102168,0,0,,,,1,1,,0.03,nav,1,1958,1,, -885,NJBF000064556,2 S MARION AVE,Ventnor City,NJ,39.344775,-74.468248,RES1,3001,,17,NE,1902,1902,3102,3,1,1838.274371,1838.274371,3504,NO,57.2,65.04,-4,0,6106,113.975309,123.687036,133.426354,139.921109,I,Above,Hip,0,5701,,61.11667288,0,1.1,,,,1,1,,0.03,nav,1,1902,3,, -886,NJBF000064927,410 N BURGHLEY AVE,Ventnor City,NJ,39.34568964,-74.48358145,RES1,3001,,17,NE,1970,1970,3102,2,1,2341.489005,2341.489005,3505,NO,39.32,54.18,3,5.07,6106,113.625305,123.402411,133.123121,139.645331,I,Above,Flat,0,5701,,46.74972756,0,1.1,,,,1,1,,0.03,nav,1,1970,2,, -887,NJBF000064865,4 N MARION AVE,Ventnor City,NJ,39.34552084,-74.46868201,RES3A,3001,,17,NE,1926,1926,3301,2,1,1381.890057,1381.890057,3505,NO,35.95,44.52,3,6.07,6106,113.956041,123.671099,133.409873,139.902405,I,Above,Flat,0,5701,,40.23263426,0,0,,,,1,1,,0.03,nav,1,1926,2,, -888,NJBF000064890,407 N CORNWALL AVE,Ventnor City,NJ,39.345589,-74.483826,RES1,3001,,17,NE,1962,1962,3102,2,1,1430.805827,1430.805827,3505,NO,29.24,43.85,3,5.44,6106,113.62121,123.399143,133.119587,139.64256,I,Above,Flat,0,5701,,36.54202496,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, -889,NJBF000064939,5103 WINCHESTER AVE,Ventnor City,NJ,39.34571941,-74.47071824,RES1,3001,,17,NE,2016,1985,3102,3,1,865.0054113,865.0054113,3507,NO,37.57,47.82,1,-0.37,6106,113.908694,123.632406,133.36855,139.866074,I,Above,Flat,0,5701,,42.69378975,0,0,,,,1,1,,0.03,nav,1,2016,3,, -890,NJBF000064944,24 N AUSTIN AVE,Ventnor City,NJ,39.34572909,-74.46955707,RES1,3001,,17,NE,1945,1945,3102,2,1,1009.398155,1009.398155,3507,NO,37.04,50.01,1,0.93,6106,113.934098,123.653126,133.390765,139.884908,I,Above,Hip,0,5701,,43.52369585,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, -891,NJBF000064895,26 N OAKLAND AVE,Ventnor City,NJ,39.3455974,-74.47015804,RES1,3001,,17,NE,1910,1910,3102,2,1,1198.395953,1198.395953,3507,NO,30.69,42.1,1,2.7,6106,113.9226,123.643785,133.380647,139.877182,I,Above,Flat,0,5701,,36.39451015,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, -892,NJBF000064994,5404 CALVERT AVE,Ventnor City,NJ,39.3458611,-74.47760693,RES1,3001,,14,NE,1930,1930,3102,2,1,1248.395508,1248.395508,3505,NO,34.8,47.46,3,4.18,6106,113.755052,123.507395,133.235003,139.747952,I,Above,Gable,0,5701,,41.13186631,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -893,NJBF000064530,403 N HARVARD AVE,Ventnor City,NJ,39.34472103,-74.48491598,RES1,3001,,17,NE,1965,1965,3102,1,1,1269.071251,1269.071251,3505,NO,9.72,19.77,3,-1.34,6106,113.608506,123.389224,133.108511,139.636986,I,Above,Hip,0,5701,,14.74513733,0,0,,,,1,1,,0.03,nav,1,1965,1,, -894,NJBF000064924,316 N OXFORD AVE,Ventnor City,NJ,39.34567367,-74.47986532,RES1,3001,,17,NE,1930,1930,3102,2,1,1083.094424,1083.094424,3505,NO,33.42,45.01,3,0.12,6106,113.707646,123.469035,133.193984,139.711733,I,Above,Gable,0,5701,,39.21896469,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -895,NJBF000064919,305 N OXFORD AVE,Ventnor City,NJ,39.34566679,-74.47943752,RES1,3001,,17,NE,1950,1950,3102,2,1,1108.638445,1108.638445,3505,NO,37.47,51.37,3,8.23,6106,113.717168,123.476752,133.2022,139.719326,I,Above,Gable,0,5701,,44.41900682,0,1.1,,,,1,1,,0.03,nav,1,1950,2,, -896,NJBF000064869,5506 CALVERT AVE,Ventnor City,NJ,39.34554102,-74.47829208,RES1,3001,,17,NE,1928,1928,3102,1,1,926.5415781,926.5415781,3505,NO,25.65,34.93,3,7.5,6106,113.744115,123.498643,133.225445,139.741329,I,Above,Hip,0,5701,,30.28893792,0,0,,,,1,1,,0.03,nav,1,1928,1,, -897,NJBF000064841,214 N SURREY AVE,Ventnor City,NJ,39.34546153,-74.47710457,RES1,3001,,NaN,NE,1945,1945,3102,2,1,1118.06689,1118.06689,3505,NO,33.63,45.92,3,8.85,6106,113.77134,123.520758,133.248978,139.763083,I,Above,Hip,0,5701,,39.77518514,0,1.1,,,,1,1,,0.03,nav,1,1945,2,, -898,NJBF000064804,229 N SOMERSET AVE,Ventnor City,NJ,39.34537304,-74.47832766,RES1,3001,,17,NE,1940,1940,3102,1,1,1084.955077,1084.955077,3505,NO,20.94,31.51,3,7.94,6106,113.745518,123.499842,133.226606,139.743447,I,Above,Gable,0,5701,,26.22270664,0,0,,,,1,1,,0.03,nav,1,1940,1,, -899,NJBF000064823,227 N SOMERSET AVE,Ventnor City,NJ,39.345412,-74.47814484,RES1,3001,,17,NE,1929,1929,3102,2,1,738.0678266,738.0678266,3505,NO,33.21,39.06,3,-2.66,6106,113.749046,123.502689,133.229669,139.745979,I,Above,Flat,0,5701,,36.13594524,0,0,,,,1,1,,0.03,nav,1,1929,2,, -900,NJBF000064814,23 N NASHVILLE AVE,Ventnor City,NJ,39.34539083,-74.47031248,RES1,3001,,17,NE,1910,1910,3102,2,1,1363.754685,1363.754685,3507,NO,35.46,48.76,1,0.99,6106,113.921898,123.643274,133.379935,139.877925,I,Above,Gable,0,5701,,42.11004686,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, -901,NJBF000064778,21 N NASHVILLE AVE,Ventnor City,NJ,39.34530086,-74.47024702,RES1,3001,,17,NE,1905,1905,3102,2,1,1278.433219,1278.433219,3507,NO,37.91,44.02,1,-0.68,6106,113.924502,123.645424,133.382166,139.880412,I,Above,Hip,0,5701,,40.96362332,0,1.1,,,,1,1,,0.03,nav,1,1905,2,, -902,NJBF000064678,204 N SURREY AVE,Ventnor City,NJ,39.3450538,-74.47683092,RES1,3001,,45,NE,1980,1980,3102,2,2,1699.580713,1699.580713,3505,NO,43.04,50.44,3,7.07,6106,113.782722,123.530139,133.258694,139.774414,I,Above,Flat,0,5701,,46.73835629,0,0,,,,1,1,,0.03,nav,1,1980,2,, -903,NJBF000064794,222 N SUFFOLK AVE,Ventnor City,NJ,39.34533523,-74.47787482,RES1,3001,,17,NE,1929,1929,3102,1,1,1082.841663,1082.841663,3505,NO,18.49,27.56,3,4.73,6106,113.756012,123.508367,133.23567,139.7519,I,Above,Gable,0,5701,,23.0240111,0,0,,,,1,1,,0.03,nav,1,1929,1,, -904,NJBF000064791,215 N SUFFOLK AVE,Ventnor City,NJ,39.34533003,-74.47738821,RES1,3001,,17,NE,1952,1952,3102,1,1,1707.708076,1707.708076,3505,NO,19.52,27.85,3,5.47,6106,113.766823,123.51714,133.245023,139.760371,I,Above,Hip,0,5701,,23.68949815,0,1.1,,,,1,1,,0.03,nav,1,1952,1,, -905,NJBF000064660,406 N CAMBRIDGE AVE,Ventnor City,NJ,39.34501735,-74.48479263,RES1,3001,,17,NE,1960,1960,3102,1,1,1564.816473,1564.816473,3505,NO,11.14,17.97,3,-0.66,6106,113.60733,123.388161,133.107568,139.634379,I,Above,Hip,0,5701,,14.55337192,0,0,,,,1,1,,0.03,nav,1,1960,1,, -906,NJBF000064787,227 N SOMERSET AVE,Ventnor City,NJ,39.34531998,-74.47824585,RES1,3001,,17,NE,1929,1929,3102,2,1,955.784384,955.784384,3505,NO,24.89,31.11,3,-1.95,6106,113.748021,123.501891,133.228754,139.745732,I,Above,Gable,0,5701,,28.00245531,0,0,,,,1,1,,0.03,nav,1,1929,2,, -907,NJBF000064726,206 N SURREY AVE,Ventnor City,NJ,39.34517067,-74.47689002,RES1,3001,,NaN,NE,1965,1965,3102,2,1,1398.679448,1398.679448,3505,NO,28.71,36.31,3,7.38,6106,113.779889,123.527799,133.256282,139.771502,I,Above,Flat,0,5701,,32.51194835,0,0,,,,1,1,,0.03,nav,1,1965,2,, -908,NJBF000064623,17 S VASSAR SQUARE,Ventnor City,NJ,39.34493212,-74.46627604,RES3B,3001,,17,ME,1920,1920,3301,2,1,1565.121586,1565.121586,3504,NO,30.19,42.65,-4,0,6106,114.016563,123.720718,133.462644,139.950263,I,Above,Flat,0,NaN,,36.4197144,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, -909,NJBF000064703,211 N SUFFOLK AVE,Ventnor City,NJ,39.34511818,-74.47722488,RES1,3001,,45,NE,1900,1900,3102,3,3,1913.204703,1913.204703,3505,NO,39.2,51.44,3,-2.36,6106,113.773193,123.522383,133.250465,139.766622,I,Above,Flat,0,5701,,45.32030078,0,0,,,,1,1,,0.03,nav,1,1900,3,, -910,NJBF000064871,23 N OAKLAND AVE,Ventnor City,NJ,39.34554461,-74.46971017,RES1,3001,,17,NE,1920,1920,3102,2,1,1343.981923,1343.981923,3507,NO,25.64,31.5,1,1.62,6106,113.93313,123.652391,133.38983,139.885319,I,Above,Hip,0,5701,,28.56868654,0,0,,,,1,1,,0.03,nav,1,1920,2,, -911,NJBF000064735,411 N HARVARD AVE,Ventnor City,NJ,39.34518951,-74.48527961,RES1,3001,,17,NE,1962,1962,3102,1,1,1264.417601,1264.417601,3505,NO,20.61,26.51,3,6.62,6106,113.59428,123.377558,133.096423,139.622655,I,Above,Flat,0,5701,,23.55793946,0,0,,,,1,1,,0.03,nav,1,1962,1,, -912,NJBF000064760,27 N HILLSIDE AVE,Ventnor City,NJ,39.34527348,-74.47111092,RES1,3001,,17,NE,1916,1916,3102,2,1,1710.752647,1710.752647,3507,NO,32.01,38.3,1,2.95,6106,113.905862,123.630234,133.36587,139.866703,I,Above,Hip,0,5701,,35.15713659,0,1.2,,,,1,1,,0.03,nav,1,1916,2,, -913,NJBF000064799,,Ventnor City,NJ,39.34535111,-74.4818908,RES1,3001,,NaN,NE,1969,0,3102,2,1,1818.379502,1818.379502,3505,NO,27.4,34.77,3,-1.23,6106,113.667113,123.436348,133.158979,139.681203,I,Above,Gable,0,5701,,31.0810146,0,0,,,,1,1,,0.03,nav,1,1969,2,, -914,NJBF000064781,20 N OAKLAND AVE,Ventnor City,NJ,39.34530559,-74.46996278,RES1,3001,,17,NE,1914,1914,3102,2,1,1607.298355,1607.298355,3507,NO,29.7,43.69,1,0.65,6106,113.930682,123.650463,133.387572,139.884969,I,Above,Gable,0,5701,,36.69877373,0,1.1,,,,1,1,,0.03,nav,1,1914,2,, -915,NJBF000064751,18 N OAKLAND AVE,Ventnor City,NJ,39.34522902,-74.46984941,RES1,3001,,17,NE,1915,1915,3102,2,1,980.5160396,980.5160396,3507,NO,22.15,35.38,1,0.46,6106,113.934193,123.65335,133.390604,139.888043,I,Above,Hip,0,5701,,28.76140785,0,0,,,,1,1,,0.03,nav,1,1915,2,, -916,NJBF000064725,5709 CALVERT AVE,Ventnor City,NJ,39.34516977,-74.47986077,RES1,3001,,17,NE,1960,1960,3102,1,1,1894.301176,1894.301176,3505,NO,15.23,21.52,3,4.12,6106,113.714333,123.474641,133.199612,139.720051,I,Above,Hip,0,5701,,18.37440943,0,1.1,,,,1,1,,0.03,nav,1,1960,1,, -917,NJBF000064822,22 N OAKLAND AVE,Ventnor City,NJ,39.3454058,-74.47002535,RES1,3001,,17,NE,1910,1910,3102,2,1,1445.48591,1445.48591,3507,NO,34.72,41.73,1,1.17,6106,113.928015,123.648258,133.385288,139.882377,I,Above,Hip,0,5701,,38.22522965,0,1.1,,,,1,1,,0.03,nav,1,1910,2,, -918,NJBF000064775,225 N SOMERSET AVE,Ventnor City,NJ,39.3452965,-74.4780495,RES1,3001,,17,NE,1929,1929,3102,1,1,768.0327511,768.0327511,3505,NO,18.71,33.42,3,1.77,6106,113.75267,123.50567,133.232766,139.749514,I,Above,Flat,0,5701,,26.06457685,0,0,,,,1,1,,0.03,nav,1,1929,1,, -919,NJBF000064695,214 N SUFFOLK AVE,Ventnor City,NJ,39.34510205,-74.47769016,RES1,3001,,17,NE,1929,1929,3102,2,1,1053.023595,1053.023595,3505,NO,29.45,35.56,3,2.35,6106,113.763145,123.514235,133.241762,139.758888,I,Above,Gable,0,5701,,32.5034668,0,0,,,,1,1,,0.03,nav,1,1929,2,, -920,NJBF000064658,316 N BURGHLEY AVE,Ventnor City,NJ,39.34501558,-74.48303824,RES1,3001,,17,NE,1958,1958,3102,1,1,1309.640528,1309.640528,3505,NO,19.04,31.55,3,6.21,6106,113.646156,123.419529,133.14088,139.666166,I,Above,Hip,0,5701,,25.29340712,0,0,,,,1,1,,0.03,nav,1,1958,1,, -921,NJBF000064858,310 N OXFORD AVE,Ventnor City,NJ,39.34549144,-74.47974747,RES1,3001,,17,NE,2015,2015,3102,2,1,1024.438828,1024.438828,3505,NO,40.91,48.6,3,4.39,6106,113.712646,123.473155,133.198249,139.716796,I,Above,Gable,0,5701,,44.75199496,0,1.1,,,,1,1,,0.03,nav,1,2015,2,, -922,NJBF000064732,316 N DERBY AVE,Ventnor City,NJ,39.34518454,-74.48229433,RES1,3001,,17,NE,1958,1958,3102,1,1,1647.260016,1647.260016,3505,NO,19.49,33.4,3,6.54,6106,113.660383,123.430968,133.153149,139.676733,I,Above,Hip,0,5701,,26.44560107,0,0,,,,1,1,,0.03,nav,1,1958,1,, -923,NJBF000064765,17 N OAKLAND AVE,Ventnor City,NJ,39.3452823,-74.46948139,RES1,3001,,17,NE,1920,1920,3102,2,1,1162.56584,1162.56584,3507,NO,23.19,31.43,1,0.64,6106,113.941593,123.659373,133.397103,139.893197,I,Above,Hip,0,5701,,27.30892085,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, -924,NJBF000059644,110 S TROY AVE,Ventnor City,NJ,39.33460743,-74.48395869,RES1,3001,,18,NE,1935,1935,3102,2,1,1506.733503,1506.733503,3505,NO,23.68,38.42,3,0.69,6106,113.766089,123.518349,133.237838,139.820192,I,Above,Gable,0,5701,,31.04851655,0,1.1,,,,1,1,,0.03,nav,1,1935,2,, -925,NJBF000064401,215 N DORSET AVE,Ventnor City,NJ,39.34439202,-74.48011934,RES1,3001,,17,NE,1940,1940,3102,2,1,2068.682248,2068.682248,3505,NO,28.04,38.47,3,-0.67,6106,113.718855,123.478576,133.203264,139.728266,I,Above,Gable,0,5701,,33.25104805,0,1.1,,,,1,1,,0.03,nav,1,1940,2,, -926,NJBF000064405,125 N SURREY AVE,Ventnor City,NJ,39.3444095,-74.475782,RES1,3001,,16,NE,1930,1930,3102,1,1,1669.172273,1669.172273,3507,NO,16.23,30.92,1,0.46,6106,113.814309,123.555997,133.285817,139.802735,I,Above,Flat,0,5701,,23.57546959,0,0,,,,1,1,,0.03,nav,1,1930,1,, -927,NJBF000064346,5251 WINCHESTER AVE,Ventnor City,NJ,39.34426517,-74.47211904,RES1,3001,,NaN,NE,1960,1960,3102,2,1,2361.50728,2361.50728,3507,NO,30.54,44.73,1,1.57,6106,113.896872,123.623195,133.357532,139.866177,I,Above,Flat,0,5701,,37.63503005,0,0,,,,1,1,,0.03,nav,1,1960,2,, -928,NJBF000059676,115 S AVOLYN AVE,Ventnor City,NJ,39.33466216,-74.48279403,RES1,3001,,19,NE,2005,2005,3102,3,1,1302.622847,1302.622847,3505,NO,54.6,59.9,3,2.1,6106,113.790977,123.538488,133.259234,139.840795,I,Above,Hip,0,5701,,57.25036256,0,0,,,,1,1,,0.03,nav,1,2005,3,, -929,NJBF000064335,5504 MONMOUTH AVE,Ventnor City,NJ,39.34424067,-74.47734807,RES1,3001,,17,NE,1956,1956,3102,1,1,1698.473523,1698.473523,3505,NO,22.92,32.89,3,4.35,6106,113.78199,123.529809,133.257747,139.778792,I,Above,Hip,0,5701,,27.90456234,0,0,,,,1,1,,0.03,nav,1,1956,1,, -930,NJBF000064368,5603 MONMOUTH AVE,Ventnor City,NJ,39.34431812,-74.47798243,RES1,3001,,17,NE,1929,1929,3102,1,1,1130.334135,1130.334135,3505,NO,18.17,29.97,3,0.34,6106,113.766993,123.517617,133.244804,139.766641,I,Above,Gable,0,5701,,24.07193732,0,0,,,,1,1,,0.03,nav,1,1929,1,, -931,NJBF000064416,30 N WEYMOUTH AVE,Ventnor City,NJ,39.34443492,-74.47195514,RES1,3001,,17,NE,1980,1980,3102,2,1,947.6173926,947.6173926,3507,NO,36.27,45.75,1,1.07,6106,113.898251,123.624272,133.358822,139.866165,I,Above,Hip,0,5701,,41.01102512,0,0,,,,1,1,,0.03,nav,1,1980,2,, -932,NJBF000059670,9 N WASHINGTON AVE,Ventnor City,NJ,39.3346497,-74.49232101,RES1,3001,,17,NE,1925,1925,3102,2,1,1858.116918,1858.116918,3505,NO,25.74,33.24,3,-1.02,6106,113.581212,123.369113,133.080205,139.65645,I,Above,Hip,0,5701,,29.49182329,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -933,NJBF000059558,5 N SWARTHMORE AVE,Ventnor City,NJ,39.33445828,-74.4914174,RES1,3001,,17,NE,1925,1925,3102,2,1,1360.051574,1360.051574,3505,NO,44.99,52.96,3,6.99,6106,113.603816,123.387327,133.099246,139.677389,I,Above,Hip,0,5701,,48.97346906,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -934,NJBF000059622,21 S NEWARK AVE,Ventnor City,NJ,39.33456234,-74.48640902,RES1,3001,,20,NE,2016,2016,3102,2,1,2155.49617,2155.49617,3505,NO,37.24,42.29,3,4.36,6110,113.712754,123.475232,133.192152,139.774361,I,Above,Gable,0,5701,,39.76120968,0,1.1,,,,1,1,,0.35,nav,1,2016,2,, -935,NJBF000064444,228 N DUDLEY AVE,Ventnor City,NJ,39.3445045,-74.47984,RES1,3001,,17,NE,1962,1962,3102,2,1,1132.961308,1132.961308,3505,NO,27.82,42.05,3,1.45,6106,113.723542,123.482335,133.207344,139.731322,I,Above,Flat,0,5701,,34.93602762,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, -936,NJBF000064359,310 N CORNWALL AVE,Ventnor City,NJ,39.3442985,-74.4833195,RES1,3001,,17,NE,1958,1958,3102,1,1,1197.945568,1197.945568,3505,NO,22.42,28.62,3,8.09,6106,113.649384,123.4224,133.143461,139.67287,I,Above,Gable,0,5701,,25.52299225,0,0,,,,1,1,,0.03,nav,1,1958,1,, -937,NJBF000059665,6 S WYOMING AVE,Ventnor City,NJ,39.33464066,-74.48872292,RES1,3001,,NaN,NE,1969,0,3102,2,1,1556.391439,1556.391439,3505,NO,29.44,42.64,3,4.88,6106,113.66067,123.433179,133.147769,139.728009,I,Above,Gable,0,5701,,36.03790146,0,0,,,,1,1,,0.03,nav,1,1969,2,, -938,NJBF000064345,206 N OXFORD AVE,Ventnor City,NJ,39.34426483,-74.47874368,RES1,3001,,17,NE,1940,1940,3102,2,1,1042.791384,1042.791384,3505,NO,28.95,40.1,3,-2.81,6106,113.750877,123.504566,133.230855,139.754333,I,Above,Gable,0,5701,,34.52505472,0,0,,,,1,1,,0.03,nav,1,1940,2,, -939,NJBF000064204,305 N CAMBRIDGE AVE,Ventnor City,NJ,39.34388484,-74.48333996,RES1,3001,,17,NE,1958,1958,3102,2,1,1205.682427,1205.682427,3505,NO,28.87,42.42,3,0.68,6106,113.654386,123.426585,133.147632,139.679285,I,Above,Gable,0,5701,,35.64180008,0,0,,,,1,1,,0.03,nav,1,1958,2,, -940,NJBF000064312,316 N CAMBRIDGE AVE,Ventnor City,NJ,39.34418409,-74.48410417,RES1,3001,,17,NE,1960,1960,3102,1,1,2103.192366,2103.192366,3505,NO,12.98,23.14,3,1.4,6106,113.633546,123.409643,133.129839,139.660562,I,Above,Hip,0,5701,,18.06384983,0,0,,,,1,1,,0.03,nav,1,1960,1,, -941,NJBF000064336,22 S BATON ROUGE AVE,Ventnor City,NJ,39.3442412,-74.46693414,RES1,3001,,17,NE,1920,1920,3102,3,1,2107.825549,2107.825549,3504,NO,48,53.46,-4,0,6106,114.01115,123.716451,133.457468,139.950477,I,Above,Hip,0,5701,,50.73053425,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, -942,NJBF000064203,101 S BATON ROUGE AVE,Ventnor City,NJ,39.34388467,-74.4661629,RES1,3001,,17,NE,1910,1910,3102,3,3,1953.507515,1953.507515,3504,NO,42.67,53.62,-4,0,6106,114.032736,123.734178,133.476193,139.968235,I,Above,Flat,0,5701,,48.14414568,0,1.1,,,,1,1,,0.03,nav,1,1910,3,, -943,NJBF000064361,321 N HARVARD AVE,Ventnor City,NJ,39.34430039,-74.48455577,RES1,3001,,17,NE,1962,1963,3102,2,1,1729.361755,1729.361755,3505,NO,23.05,28.91,3,1.99,6106,113.62202,123.400292,133.119988,139.650446,I,Above,Hip,0,5701,,25.97922604,0,1.1,,,,1,1,,0.03,nav,1,1962,2,, -944,NJBF000064320,124 N SURREY AVE,Ventnor City,NJ,39.34419382,-74.47613238,RES1,3001,,17,NE,1958,1958,3102,1,1,1725.254175,1725.254175,3505,NO,18.75,26.08,3,5.11,6106,113.809419,123.55209,133.281485,139.80029,I,Above,Flat,0,5701,,22.4184035,0,1.1,,,,1,1,,0.03,nav,1,1958,1,, -945,NJBF000064236,5707 MONMOUTH AVE,Ventnor City,NJ,39.34396468,-74.47867949,RES1,3001,,16,NE,1940,1940,3102,1,1,1435.319031,1435.319031,3505,NO,16.91,25.74,3,3.99,6106,113.756262,123.509026,133.235391,139.760363,I,Above,Hip,0,5701,,21.32601652,0,0,,,,1,1,,0.03,nav,1,1940,1,, -946,NJBF000064355,15 S OAKLAND AVE,Ventnor City,NJ,39.34429036,-74.46846695,RES1,3001,,NaN,NE,1928,1928,3102,3,3,1493.139021,1493.139021,3507,NO,56.46,65.09,1,0.28,6106,113.976843,123.688407,133.427418,139.925171,I,Above,Hip,0,5701,,60.77491872,0,1.1,,,,1,1,,0.03,nav,1,1928,3,, -947,NJBF000064385,12 S MARION AVE,Ventnor City,NJ,39.34435966,-74.4679532,RES1,3001,,17,NE,1902,1902,3102,2,1,1887.25343,1887.25343,3504,NO,28.78,41.02,-4,0,6106,113.987217,123.696864,133.436549,139.932333,I,Above,Flat,0,5701,,34.89965526,0,0,,,,1,1,,0.03,nav,1,1902,2,, -948,NJBF000064242,212 N DUDLEY AVE,Ventnor City,NJ,39.34398296,-74.47935896,RES1,3001,,16,NE,1950,1950,3102,1,1,923.891823,923.891823,3505,NO,21.72,28.27,3,3.79,6106,113.741019,123.496666,133.222236,139.748255,I,Above,Flat,0,5701,,24.99583917,0,1.1,,,,1,1,,0.03,nav,1,1950,1,, -949,NJBF000064298,101 N LITTLE ROCK AVE,Ventnor City,NJ,39.34414512,-74.47225283,RES1,3001,,17,NE,1930,1930,3102,2,1,969.2025837,969.2025837,3507,NO,35.5,42.3,1,2.01,6106,113.895498,123.622108,133.356273,139.865885,I,Above,Flat,0,5701,,38.90309776,0,0,,,,1,1,,0.03,nav,1,1930,2,, -950,NJBF000064367,307 N BURGHLEY AVE,Ventnor City,NJ,39.34431705,-74.4819581,RES1,3001,,17,NE,1950,1950,3102,1,1,1430.012242,1430.012242,3505,NO,19.21,31.85,3,0.74,6106,113.679224,123.446523,133.16911,139.69697,I,Above,Flat,0,5701,,25.52905666,0,1.2,,,,1,1,,0.03,nav,1,1950,1,, -951,NJBF000064248,5703 MONMOUTH AVE,Ventnor City,NJ,39.34399373,-74.47859944,RES1,3001,,17,NE,1940,1940,3102,1,1,1333.811126,1333.811126,3505,NO,16.27,29.88,3,3.07,6106,113.757645,123.510139,133.236597,139.761275,I,Above,Hip,0,5701,,23.07713911,0,0,,,,1,1,,0.03,nav,1,1940,1,, -952,NJBF000064291,218 N DUDLEY AVE,Ventnor City,NJ,39.34411964,-74.4795472,RES1,3001,,17,NE,1962,1962,3102,2,1,1426.80654,1426.80654,3505,NO,28.28,43.16,3,-0.59,6106,113.735064,123.491797,133.217149,139.742733,I,Above,Hip,0,5701,,35.71764154,0,0,,,,1,1,,0.03,nav,1,1962,2,, -953,NJBF000064303,211 N DORSET AVE,Ventnor City,NJ,39.34415293,-74.47993834,RES1,3001,,17,NE,1927,1927,3102,2,1,1622.298676,1622.298676,3505,NO,39.26,51.96,3,7.85,6106,113.725998,123.484441,133.20934,139.735355,I,Above,Hip,0,5701,,45.60895614,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, -954,NJBF000064326,319 N HARVARD AVE,Ventnor City,NJ,39.34420551,-74.48447645,RES1,3001,,17,NE,1962,1962,3102,1,1,1764.432107,1764.432107,3505,NO,21.69,33.7,3,6.16,6106,113.62503,123.402757,133.122543,139.653443,I,Above,Hip,0,5701,,27.69488124,0,1.1,,,,1,1,,0.03,nav,1,1962,1,, -955,NJBF000064212,110 N SURREY AVE,Ventnor City,NJ,39.34389837,-74.47582799,RES1,3001,,17,NE,1930,1930,3102,2,1,990.5266162,990.5266162,3505,NO,32.41,44.81,3,2.83,6106,113.820013,123.560782,133.290539,139.810237,I,Above,Gable,0,5701,,38.6136793,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -956,NJBF000064028,101 S AUSTIN AVE,Ventnor City,NJ,39.34337775,-74.46720895,RES3B,3001,,17,E,1920,1920,3303,3,1,1932.14563,1932.14563,3504,NO,36.97,42.77,-4,0,6106,114.016435,123.720949,133.461546,139.959469,I,Above,Hip,0,NaN,,39.87210693,0,1.1,,,,1,1,,0.03,nav,1,1920,3,, -957,NJBF000064180,5 S HILLSIDE AVE,Ventnor City,NJ,39.34379602,-74.46989247,RES1,3001,,17,NE,1925,1925,3102,3,1,1324.087686,1324.087686,3507,NO,45.39,53.87,1,1.82,6106,113.952007,123.668253,133.405397,139.909941,I,Above,Hip,0,5701,,49.63151853,0,1.1,,,,1,1,,0.03,nav,1,1925,3,, -958,NJBF000064207,13-15 N VICTORIA AVE,Ventnor City,NJ,39.34388861,-74.47252686,RES1,3001,,NaN,NE,1954,1972,3102,2,1,2378.157376,2378.157376,3507,NO,38.91,47.78,1,1.19,6106,113.89283,123.620003,133.353816,139.865458,I,Above,Hip,0,5701,,43.34849858,0,0,,,,1,1,,0.03,nav,1,1954,2,, -959,NJBF000063972,3 N SURREY AVE,Ventnor City,NJ,39.34323338,-74.47292947,RES1,3001,,17,NE,1928,1928,3102,2,1,1414.78816,1414.78816,3505,NO,28.1,41.82,3,6.13,6106,113.892619,123.619994,133.353277,139.869316,I,Above,Hip,0,5701,,34.96193239,0,0,,,,1,1,,0.03,nav,1,1928,2,, -960,NJBF000064011,,Ventnor City,NJ,39.3433285,-74.47718913,RES1,3001,,NaN,NE,1969,0,3102,2,1,1426.671751,1426.671751,3505,NO,37.63,43.27,3,5.62,6106,113.797529,123.542686,133.270798,139.79638,I,Above,Flat,0,5701,,40.44987027,0,0,,,,1,1,,0.03,nav,1,1969,2,, -961,NJBF000064001,20 S NASHVILLE AVE,Ventnor City,NJ,39.34331056,-74.469109,RES1,3001,,17,NE,1925,1925,3102,2,1,1388.934403,1388.934403,3505,NO,42.42,50.86,3,6.76,6106,113.97559,123.687603,133.425724,139.930172,I,Above,Hip,0,5701,,46.63906461,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -962,NJBF000064190,225 N DERBY AVE,Ventnor City,NJ,39.34382915,-74.48065851,RES1,3001,,16,NE,1940,1940,3102,1,1,997.8402566,997.8402566,3505,NO,14.19,25.55,3,0.52,6106,113.714352,123.475114,133.199184,139.727999,I,Above,Gable,0,5701,,19.87304364,0,0,,,,1,1,,0.03,nav,1,1940,1,, -963,NJBF000063915,18 S HILLSIDE AVE,Ventnor City,NJ,39.34307172,-74.46982846,RES1,3001,,NaN,NE,1920,0,3102,2,1,1755.597371,1755.597371,3505,NO,25.28,30.4,3,2.02,6110,113.962938,123.677329,133.41451,139.922358,I,Above,Flat,0,5701,,27.8373698,0,0,,,,1,1,,0.35,nav,1,1920,2,, -964,NJBF000063788,110 S MARION AVE,Ventnor City,NJ,39.34269676,-74.46644254,RES3B,3001,,18,E,1920,1920,3303,2,1,2442.572424,2442.572424,3504,NO,37.7,48.59,-4,0,6106,114.042208,123.74214,133.483685,139.982091,I,Above,Hip,0,NaN,,43.14214753,0,1.2,,,,1,1,,0.03,nav,1,1920,2,, -965,NJBF000063804,100 N OXFORD AVE,Ventnor City,NJ,39.34274782,-74.47754387,RES1,3001,,16,NE,1940,1940,3102,2,2,791.1840345,791.1840345,3505,NO,27.68,37.24,3,-2.73,6106,113.797374,123.542713,133.270385,139.799766,I,Above,Hip,0,5701,,32.45818563,0,1.2,,,,1,1,,0.03,nav,1,1940,2,, -966,NJBF000063993,205 N DERBY AVE,Ventnor City,NJ,39.34329621,-74.48024273,RES1,3001,,16,NE,1929,1929,3102,1,1,1255.242944,1255.242944,3505,NO,12.27,22.51,3,0.94,6106,113.73058,123.488418,133.212962,139.744055,I,Above,Hip,0,5701,,17.38870376,0,0,,,,1,1,,0.03,nav,1,1929,1,, -967,NJBF000063807,5511 WINCHESTER AVE,Ventnor City,NJ,39.34275017,-74.47488958,RES1,3001,,17,NE,1900,1900,3102,1,1,2285.479539,2285.479539,3505,NO,26.22,36.37,3,7.91,6106,113.855826,123.590182,133.321032,139.84456,I,Above,Hip,0,5701,,31.29469828,0,0,,,,1,1,,0.03,nav,1,1900,1,, -968,NJBF000063782,,Ventnor City,NJ,39.34268593,-74.47678719,RES1,3001,,NaN,NE,1932,0,3102,2,1,1665.241688,1665.241688,3505,NO,26.42,35.39,3,-0.12,6106,113.814881,123.556937,133.285504,139.813669,I,Above,Flat,0,5701,,30.90684926,0,0,,,,1,1,,0.03,nav,1,1932,2,, -969,NJBF000063964,22 S NASHVILLE AVE,Ventnor City,NJ,39.34322044,-74.46905681,RES1,3001,,NaN,NE,1925,0,3102,3,1,1688.649897,1688.649897,3505,NO,35.9,41.75,3,-1.6,6110,113.97793,123.689531,133.427713,139.93243,I,Above,Flat,0,5701,,38.82744843,0,1.1,,,,1,1,,0.35,nav,1,1925,3,, -970,NJBF000063941,116 S VASSAR SQUARE,Ventnor City,NJ,39.34315319,-74.46530164,RES3B,3001,,14,E,1905,1905,3303,3,1,2365.465902,2365.465902,3504,NO,47.32,58.65,-4,0,6106,114.061234,123.757629,133.50073,139.99306,I,Above,Hip,0,NaN,,52.98618929,0,1.1,,,,1,1,,0.03,nav,1,1905,3,, -971,NJBF000063950,5212 VENTNOR AVE,Ventnor City,NJ,39.34318414,-74.47120963,COM1,3001,,NaN,ME,1980,1980,3401,1,1,4825.776967,4825.776967,3507,NO,11.84,21.33,1,-0.2,6106,113.931081,123.651331,133.386763,139.898228,I,Above,Gable,0,NaN,,16.5842098,0,0,,,,1,1,,0.03,nav,1,1980,1,, -972,NJBF000063895,1 N SURREY AVE,Ventnor City,NJ,39.34301729,-74.47278033,RES1,3001,,17,NE,1920,1920,3102,2,1,1641.964537,1641.964537,3505,NO,24.78,31.49,3,1.83,6106,113.898747,123.625033,133.358489,139.875218,I,Above,Hip,0,5701,,28.13400345,0,1.1,,,,1,1,,0.03,nav,1,1920,2,, -973,NJBF000059804,8 S ROSBOROUGH AVE,Ventnor City,NJ,39.3348795,-74.488006,RES1,3001,,17,NE,1930,1930,3102,2,1,1292.572644,1292.572644,3505,NO,21.72,26.73,3,0.62,6106,113.67318,123.443276,133.15863,139.738363,I,Above,Hip,0,5701,,24.22251457,0,0,,,,1,1,,0.03,nav,1,1930,2,, -974,NJBF000059006,12 S BALTIMORE AVE,Ventnor City,NJ,39.3333505,-74.490253,RES1,3001,,17,NE,1927,1927,3102,2,1,810.0921147,810.0921147,3505,NO,28.59,34.48,3,3.23,6106,113.644884,123.420407,133.133227,139.7172,I,Above,Flat,0,5701,,31.53459476,0,1.1,,,,1,1,,0.03,nav,1,1927,2,, -975,NJBF000063819,2 S VICTORIA AVE,Ventnor City,NJ,39.34278203,-74.47219195,COM1,3001,,NaN,ME,1898,1898,3401,1,1,5837.158377,5837.158377,3507,NO,19.35,24.37,1,1.53,6106,113.914787,123.638144,133.372319,139.8886,I,Above,Gable,0,NaN,,21.8588788,0,0,,,,1,1,,0.03,nav,1,1898,1,, -976,NJBF000063949,21 S HILLSIDE AVE,Ventnor City,NJ,39.34317741,-74.46938344,RES1,3001,,17,NE,1925,1925,3102,2,1,1414.275703,1414.275703,3505,NO,34.56,46.54,3,6.45,6110,113.971334,123.684157,133.421916,139.927869,I,Above,Hip,0,5701,,40.54981102,0,1.1,,,,1,1,,0.35,nav,1,1925,2,, -977,NJBF000063805,7 N SOMERSET AVE,Ventnor City,NJ,39.34274854,-74.47511633,RES1,3001,,18,NE,2005,2005,3102,3,1,1832.451919,1832.451919,3505,NO,37.82,45.4,3,-2.01,6106,113.850862,123.586148,133.316724,139.8408,I,Above,Hip,0,5701,,41.61066899,0,0,,,,1,1,,0.03,nav,1,2005,3,, -978,NJBF000063566,,Ventnor City,NJ,39.34207079,-74.47805863,RES1,3001,,NaN,NE,1969,0,3102,2,1,2570.202958,2570.202958,3505,NO,35.22,43.48,3,-0.68,6106,113.795003,123.540955,133.26799,139.801999,I,Above,Hip,0,5701,,39.35183457,0,0,,,,1,1,,0.03,nav,1,1969,2,, -979,NJBF000063815,24 S HILLSIDE AVE,Ventnor City,NJ,39.34276209,-74.46952991,RES1,3001,,17,NE,1950,1950,3102,2,1,2307.011344,2307.011344,3505,NO,22.35,35.75,3,-2.65,6110,113.973574,123.686067,133.423607,139.932009,I,Above,Flat,0,5701,,29.05226546,0,1.1,,,,1,1,,0.35,nav,1,1950,2,, -980,NJBF000063651,5613 WINCHESTER AVE,Ventnor City,NJ,39.3423085,-74.4759365,RES1,3001,,17,NE,1908,1908,3102,1,1,1893.648817,1893.648817,3505,NO,23.63,32.02,3,7.04,6106,113.838606,123.576292,133.305854,139.834148,I,Above,Hip,0,5701,,27.82501481,0,0,,,,1,1,,0.03,nav,1,1908,1,, -981,NJBF000063600,,Ventnor City,NJ,39.34214888,-74.48297993,RES1,3001,,NaN,NE,1962,0,3102,2,1,1267.880364,1267.880364,3505,NO,30.56,38.42,3,-2.85,6106,113.685379,123.45216,133.173596,139.714276,I,Above,Flat,0,5701,,34.48921825,0,0,,,,1,1,,0.03,nav,1,1962,2,, -982,NJBF000063543,130 N DERBY AVE,Ventnor City,NJ,39.34201176,-74.47966567,RES1,3001,,17,NE,1998,1998,3102,2,1,1191.348049,1191.348049,3505,NO,36.89,51.49,3,4.4,6106,113.76035,123.512876,133.238044,139.7752,I,Above,Flat,0,5701,,44.1911883,0,0,,,,1,1,,0.03,nav,1,1998,2,, -983,NJBF000063623,106 S AMHERST AVE,Ventnor City,NJ,39.34222474,-74.46891129,RES1,3001,,17,NE,1902,1902,3102,2,1,1734.767798,1734.767798,3505,NO,33.8,43.05,3,8.13,6106,113.994264,123.703048,133.441335,139.950291,I,Above,Flat,0,5701,,38.42324795,0,1.1,,,,1,1,,0.03,nav,1,1902,2,, -984,NJBF000063539,408-410N WISSAHICKON AVE,Ventnor City,NJ,39.3419948,-74.49299539,RES1,3001,,45,NE,1972,1972,3102,2,2,1670.086595,1670.086595,3505,NO,33.25,45.59,3,8.8,6106,113.465913,123.275286,132.98633,139.529073,I,Above,Gable,0,5701,,39.42463147,0,0,,,,1,1,,0.03,nav,1,1972,2,, -985,NJBF000063739,106-108 N DUDLEY AVE,Ventnor City,NJ,39.34256333,-74.4783119,COM1,3001,,45,ME,1945,1945,3401,2,2,1200.144299,1200.144299,3507,NO,20.76,31.69,1,-0.93,6106,113.782892,123.531013,133.257775,139.789615,I,Above,Gable,0,NaN,,26.22378078,0,0,,,,1,1,,0.03,nav,1,1945,2,, -986,NJBF000063751,104 S NASHVILLE AVE,Ventnor City,NJ,39.34259945,-74.46850242,RES3B,3001,,19,E,1913,2018,3303,3,1,1833.598815,1833.598815,3504,NO,36.03,48.66,-4,0,6106,113.998306,123.706283,133.445132,139.950987,I,Above,Gable,0,NaN,,42.3424961,0,0,,,,1,1,,0.03,nav,1,1913,3,, -987,NJBF000063698,5609 WINCHESTER AVE,Ventnor City,NJ,39.342426,-74.475773,RES1,3001,,19,NE,1969,2018,3102,2,1,959.952664,959.952664,3505,NO,33.14,41.96,3,6.72,6106,113.840668,123.57794,133.307706,139.83501,I,Above,Hip,0,5701,,37.55132518,0,1.1,,,,1,1,,0.03,nav,1,1969,2,, -988,NJBF000063520,5502 VENTNOR AVE,Ventnor City,NJ,39.3419305,-74.473921,RES1,3001,,18,NE,1985,1985,3102,1,1,2773.392126,2773.392126,3505,NO,21.2,30.84,3,4.31,6106,113.888023,123.616539,133.348517,139.873828,I,Above,Hip,0,5701,,26.01747359,0,0,,,,1,1,,0.03,nav,1,1985,1,, -989,NJBF000063720,28 S WEYMOUTH AVE,Ventnor City,NJ,39.34250066,-74.47046334,RES1,3001,,17,NE,1925,1925,3102,2,2,1869.382752,1869.382752,3505,NO,40.29,48.63,3,1.37,6110,113.956517,123.672205,133.408535,139.921104,I,Above,Flat,0,5701,,44.45787895,0,0,,,,1,1,,0.35,nav,1,1925,2,, -990,NJBF000063729,15 S VICTORIA AVE,Ventnor City,NJ,39.34253744,-74.47146599,RES1,3001,,17,NE,1925,1925,3102,2,1,1711.432915,1711.432915,3505,NO,32.24,40.31,3,1.95,6106,113.933991,123.653838,133.388905,139.904312,I,Above,Hip,0,5701,,36.27445953,0,1.1,,,,1,1,,0.03,nav,1,1925,2,, -991,NJBF000063724,107 S NASHVILLE AVE,Ventnor City,NJ,39.3425156,-74.46799002,RES3B,3001,,18,E,1900,1900,3303,3,2,2083.479097,2083.479097,3504,NO,40.82,50.16,-4,0,6106,114.010643,123.716373,133.455878,139.960417,I,Above,Hip,0,NaN,,45.49165169,0,0,,,,1,1,,0.03,nav,1,1900,3,, -992,NJBF000063524,6815 FULTON AVE,Ventnor City,NJ,39.3419456,-74.49483453,RES1,3001,,17,NE,1972,1972,3102,2,1,1240.283326,1240.283326,3505,NO,42.9,55.83,3,6.1,6106,113.425807,123.243078,132.952368,139.494065,I,Above,Gable,0,5701,,49.36040135,0,0,,,,1,1,,0.03,nav,1,1972,2,, -993,NJBF000063462,16 S SURREY AVE,Ventnor City,NJ,39.34179498,-74.47231341,RES1,3001,,18,NE,1991,1991,3102,2,1,1028.666445,1028.666445,3505,NO,35.58,44.23,3,8.28,6106,113.925191,123.646812,133.380761,139.902315,I,Above,Flat,0,5701,,39.90572404,0,0,,,,1,1,,0.03,nav,1,1991,2,, -994,NJBF000063298,203 N PRINCETON AVE,Ventnor City,NJ,39.34135815,-74.48380793,RES1,3001,,17,NE,1935,1935,3102,2,1,1036.650459,1036.650459,3505,NO,42.87,54.86,3,4.38,6106,113.677656,123.446115,133.166613,139.712309,I,Above,Hip,0,5701,,48.8631545,0,0,,,,1,1,,0.03,nav,1,1935,2,, -995,NJBF000063274,113 N CAMBRIDGE AVE,Ventnor City,NJ,39.341298,-74.4815965,RES1,3001,,28,NE,1930,1930,3102,2,2,1947.239792,1947.239792,3505,NO,32.63,40.36,3,-1.8,6106,113.727292,123.486272,133.209213,139.753003,I,Above,Hip,0,5701,,36.49377631,0,1.1,,,,1,1,,0.03,nav,1,1930,2,, -996,NJBF000063270,,Ventnor City,NJ,39.34128505,-74.47261687,RES1,3001,,NaN,NE,1969,0,3102,2,1,2617.352288,2617.352288,3505,NO,28.64,36.69,3,1.87,6110,113.92528,123.646973,133.380498,139.905474,I,Above,Hip,0,5701,,32.66814037,0,0,,,,1,1,,0.35,nav,1,1969,2,, -997,NJBF000063478,208 N HARVARD AVE,Ventnor City,NJ,39.34183067,-74.48322957,RES1,3001,,17,NE,1981,1981,3102,2,1,727.5332983,727.5332983,3505,NO,28.77,42.63,3,1.26,6106,113.684099,123.451208,133.172357,139.714998,I,Above,Gable,0,5701,,35.70054571,0,0,,,,1,1,,0.03,nav,1,1981,2,, -998,NJBF000063550,3 S SUFFOLK AVE,Ventnor City,NJ,39.34202712,-74.4731918,RES1,3001,,18,NE,1920,1920,3102,3,1,2142.145581,2142.145581,3505,NO,41.38,53.09,3,4.47,6106,113.902778,123.628524,133.361404,139.884264,I,Above,Hip,0,5701,,47.23606436,0,1.2,,,,1,1,,0.03,nav,1,1920,3,, -999,NJBF000063335,129 N HARVARD AVE,Ventnor City,NJ,39.34143959,-74.48245846,RES1,3001,,28,NE,1920,1920,3102,2,1,1558.97202,1558.97202,3505,NO,33.6,47.85,3,-2.32,6106,113.706368,123.46931,133.191297,139.7353,I,Above,Flat,0,5701,,40.72715598,0,0,,,,1,1,,0.03,nav,1,1920,2,, -1000,NJBF000062883,5808 VENTNOR AVE,Ventnor City,NJ,39.34043437,-74.4770542,RES1,3001,,18,NE,1923,1923,3102,2,1,2131.120006,2131.120006,3505,NO,40.71,48.48,3,7.9,6106,113.838982,123.576964,133.305056,139.845782,I,Above,Hip,0,5701,,44.59414105,0,1.2,,,,1,1,,0.03,nav,1,1923,2,, diff --git a/docs/_downloads/d70dadee70a3546f8249c9d286f0d0c5/WindWMUHRulesets.py b/docs/_downloads/d70dadee70a3546f8249c9d286f0d0c5/WindWMUHRulesets.py deleted file mode 100644 index 9b12efd68..000000000 --- a/docs/_downloads/d70dadee70a3546f8249c9d286f0d0c5/WindWMUHRulesets.py +++ /dev/null @@ -1,264 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def WMUH_config(BIM): - """ - Rules to identify a HAZUS WMUH configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Secondary Water Resistance (SWR) - SWR = 0 # Default - if year > 2000: - if BIM['roof_shape'] == 'flt': - SWR = 'null' # because SWR is not a question for flat roofs - elif BIM['roof_shape'] in ['gab','hip']: - SWR = int(random.random() < 0.6) - elif year > 1987: - if BIM['roof_shape'] == 'flt': - SWR = 'null' # because SWR is not a question for flat roofs - elif (BIM['roof_shape'] == 'gab') or (BIM['roof_shape'] == 'hip'): - if BIM['roof_slope'] < 0.33: - SWR = int(True) - else: - SWR = int(BIM['avg_jan_temp'] == 'below') - else: - # year <= 1987 - if BIM['roof_shape'] == 'flt': - SWR = 'null' # because SWR is not a question for flat roofs - else: - SWR = int(random.random() < 0.3) - - # Roof cover & Roof quality - # Roof cover and quality do not apply to gable and hip roofs - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'null' - roof_quality = 'null' - # NJ Building Code Section 1507 (in particular 1507.10 and 1507.12) address - # Built Up Roofs and Single Ply Membranes. However, the NJ Building Code - # only addresses installation and material standards of different roof - # covers, but not in what circumstance each must be used. - # SPMs started being used in the 1960s, but different types continued to be - # developed through the 1980s. Today, single ply membrane roofing is the - # most popular flat roof option. BURs have been used for over 100 years, - # and although they are still used today, they are used less than SPMs. - # Since there is no available ruleset to be taken from the NJ Building - # Code, the ruleset is based off this information. - # We assume that all flat roofs built before 1975 are BURs and all roofs - # built after 1975 are SPMs. - # Nothing in NJ Building Code or in the Hazus manual specifies what - # constitutes “good” and “poor” roof conditions, so ruleset is dependant - # on the age of the roof and average lifespan of BUR and SPM roofs. - # We assume that the average lifespan of a BUR roof is 30 years and the - # average lifespan of a SPM is 35 years. Therefore, BURs installed before - # 1990 are in poor condition, and SPMs installed before 1985 are in poor - # condition. - else: - if year >= 1975: - roof_cover = 'spm' - if BIM['year_built'] >= (datetime.datetime.now().year - 35): - roof_quality = 'god' - else: - roof_quality = 'por' - else: - # year < 1975 - roof_cover = 'bur' - if BIM['year_built'] >= (datetime.datetime.now().year - 30): - roof_quality = 'god' - else: - roof_quality = 'por' - - # Roof Deck Attachment (RDA) - # IRC 2009-2015: - # Requires 8d nails (with spacing 6”/12”) for sheathing thicknesses between - # ⅜”-1”, see Table 2304.10, Line 31. Fastener selection is contingent on - # thickness of sheathing in building codes. - # Wind Speed Considerations taken from Table 2304.6.1, Maximum Nominal - # Design Wind Speed, Vasd, Permitted For Wood Structural Panel Wall - # Sheathing Used to Resist Wind Pressures. Typical wall stud spacing is 16 - # inches, according to table 2304.6.3(4). NJ code defines this with respect - # to exposures B and C only. These are mapped to HAZUS categories based on - # roughness length in the ruleset herein. - # The base rule was then extended to the exposures closest to suburban and - # light suburban, even though these are not considered by the code. - if year > 2009: - if BIM['terrain'] >= 35: # suburban or light trees - if BIM['V_ult'] > 168.0: - RDA = '8s' # 8d @ 6"/6" 'D' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - else: # light suburban or open - if BIM['V_ult'] > 142.0: - RDA = '8s' # 8d @ 6"/6" 'D' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - # IRC 2000-2006: - # Table 2304.9.1, Line 31 of the 2006 - # NJ IBC requires 8d nails (with spacing 6”/12”) for sheathing thicknesses - # of ⅞”-1”. Fastener selection is contingent on thickness of sheathing in - # building codes. Table 2308.10.1 outlines the required rating of approved - # uplift connectors, but does not specify requirements that require a - # change of connector at a certain wind speed. - # Thus, all RDAs are assumed to be 8d @ 6”/12”. - elif year > 2000: - RDA = '8d' # 8d @ 6"/12" 'B' - # BOCA 1996: - # The BOCA 1996 Building Code Requires 8d nails (with spacing 6”/12”) for - # roof sheathing thickness up to 1". See Table 2305.2, Section 4. - # Attachment requirements are given based on sheathing thickness, basic - # wind speed, and the mean roof height of the building. - elif year > 1996: - if (BIM['V_ult'] >= 103 ) and (BIM['mean_roof_height'] >= 25.0): - RDA = '8s' # 8d @ 6"/6" 'D' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - # BOCA 1993: - # The BOCA 1993 Building Code Requires 8d nails (with spacing 6”/12”) for - # sheathing thicknesses of 19/32 inches or greater, and 6d nails (with - # spacing 6”/12”) for sheathing thicknesses of ½ inches or less. - # See Table 2305.2, Section 4. - elif year > 1993: - if BIM['sheathing_t'] <= 0.5: - RDA = '6d' # 6d @ 6"/12" 'A' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - else: - # year <= 1993 - if BIM['sheathing_t'] <= 0.5: - RDA = '6d' # 6d @ 6"/12" 'A' - else: - RDA = '8d' # 8d @ 6"/12" 'B' - - # Roof-Wall Connection (RWC) - # IRC 2000-2015: - # 1507.2.8.1 High Wind Attachment. Underlayment applied in areas subject - # to high winds (Vasd greater than 110 mph as determined in accordance - # with Section 1609.3.1) shall be applied with corrosion-resistant - # fasteners in accordance with the manufacturer’s instructions. Fasteners - # are to be applied along the overlap not more than 36 inches on center. - # Underlayment installed where Vasd, in accordance with section 1609.3.1 - # equals or exceeds 120 mph shall be attached in a grid pattern of 12 - # inches between side laps with a 6-inch spacing at the side laps. - if year > 2000: - if BIM['V_ult'] > 142.0: - RWC = 'strap' # Strap - else: - RWC = 'tnail' # Toe-nail - # BOCA 1996 and earlier: - # There is no mention of straps or enhanced tie-downs of any kind in the - # BOCA codes, and there is no description of these adoptions in IBHS - # reports or the New Jersey Construction Code Communicator . - # Although there is no explicit information, it seems that hurricane straps - # really only came into effect in Florida after Hurricane Andrew (1992), - # and likely it took several years for these changes to happen. Because - # Florida is the leader in adopting hurricane protection measures into - # codes and because there is no mention of shutters or straps in the BOCA - # codes, it is assumed that New Jersey did not adopt these standards until - # the 2000 IBC. - else: - RWC = 'tnail' # Toe-nail - - # Shutters - # IRC 2000-2015: - # 1609.1.2 Protection of Openings. In wind-borne debris regions, glazing in - # buildings shall be impact resistant or protected with an impact-resistant - # covering meeting the requirements of an approved impact-resistant - # covering meeting the requirements of an approved impact-resistant - # standard. - # Exceptions: Wood structural panels with a minimum thickness of 7/16 of an - # inch and a maximum panel span of 8 feet shall be permitted for opening - # protection in buildings with a mean roof height of 33 feet or less that - # are classified as a Group R-3 or R-4 occupancy. - # Earlier IRC editions provide similar rules. - if year >= 2000: - shutters = BIM['WBD'] - # BOCA 1996 and earlier: - # Shutters were not required by code until the 2000 IBC. Before 2000, the - # percentage of commercial buildings that have shutters is assumed to be - # 46%. This value is based on a study on preparedness of small businesses - # for hurricane disasters, which says that in Sarasota County, 46% of - # business owners had taken action to wind-proof or flood-proof their - # facilities. In addition to that, 46% of business owners reported boarding - # up their businesses before Hurricane Katrina. In addition, compliance - # rates based on the Homeowners Survey data hover between 43 and 50 percent. - else: - if BIM['WBD']: - shutters = random.random() < 0.46 - else: - shutters = False - - # Stories - # Buildings with more than 3 stories are mapped to the 3-story configuration - stories = min(BIM['stories'], 3) - - bldg_config = f"WMUH" \ - f"{int(stories)}_" \ - f"{BIM['roof_shape']}_" \ - f"{roof_cover}_" \ - f"{roof_quality}_" \ - f"{SWR}_" \ - f"{RDA}_" \ - f"{RWC}_" \ - f"{int(shutters)}_" \ - f"{int(BIM['terrain'])}" - - return bldg_config - diff --git a/docs/_downloads/e000feabcd03691d92efbbee9a613a6c/ARA_Example.zip b/docs/_downloads/e000feabcd03691d92efbbee9a613a6c/ARA_Example.zip deleted file mode 100644 index ff8335e4d..000000000 Binary files a/docs/_downloads/e000feabcd03691d92efbbee9a613a6c/ARA_Example.zip and /dev/null differ diff --git a/docs/_downloads/e8cd13d7bf5ff5fb8a9ddeff7847a952/Category2.zip b/docs/_downloads/e8cd13d7bf5ff5fb8a9ddeff7847a952/Category2.zip deleted file mode 100644 index 4f21580eb..000000000 Binary files a/docs/_downloads/e8cd13d7bf5ff5fb8a9ddeff7847a952/Category2.zip and /dev/null differ diff --git a/docs/_downloads/e9734388b05cd90802519b4e818296d1/FloodClassRulesets.py b/docs/_downloads/e9734388b05cd90802519b4e818296d1/FloodClassRulesets.py deleted file mode 100644 index e58e32c33..000000000 --- a/docs/_downloads/e9734388b05cd90802519b4e818296d1/FloodClassRulesets.py +++ /dev/null @@ -1,551 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def parse_BIM(BIM_in): - """ - Parses the information provided in the BIM model. - - The parameters below list the expected inputs - - Parameters - ---------- - stories: str - Number of stories - yearBuilt: str - Year of construction. - roofType: {'hip', 'hipped', 'gabled', 'gable', 'flat'} - One of the listed roof shapes that best describes the building. - occupancy: str - Occupancy type. - buildingDescription: str - MODIV code that provides additional details about the building - structType: {'Stucco', 'Frame', 'Stone', 'Brick'} - One of the listed structure types that best describes the building. - V_design: string - Ultimate Design Wind Speed was introduced in the 2012 IBC. Officially - called “Ultimate Design Wind Speed (Vult); equivalent to the design - wind speeds taken from hazard maps in ASCE 7 or ATC's API. Unit is - assumed to be mph. - area: float - Plan area in ft2. - z0: string - Roughness length that characterizes the surroundings. - - Returns - ------- - BIM: dictionary - Parsed building characteristics. - """ - - # maps roof type to the internal representation - ap_RoofType = { - 'hip' : 'hip', - 'hipped': 'hip', - 'Hip' : 'hip', - 'gabled': 'gab', - 'gable' : 'gab', - 'Gable' : 'gab', - 'flat' : 'flt', - 'Flat' : 'flt' - } - # maps roof system to the internal representation - ap_RoofSyste = { - 'Wood': 'trs', - 'OWSJ': 'ows', - 'N/A': 'trs' - } - roof_system = BIM_in.get('RoofSystem','Wood') - try: - if np.isnan(roof_system): - roof_system = 'Wood' - except: - pass - # maps number of units to the internal representation - ap_NoUnits = { - 'Single': 'sgl', - 'Multiple': 'mlt', - 'Multi': 'mlt', - 'nav': 'nav' - } - # maps for split level - ap_SplitLevel = { - 'NO': 0, - 'YES': 1 - } - # maps for design level (Marginal Engineered is mapped to Engineered as default) - ap_DesignLevel = { - 'E': 'E', - 'NE': 'NE', - 'PE': 'PE', - 'ME': 'E' - } - design_level = BIM_in.get('DesignLevel','E') - try: - if np.isnan(design_level): - design_level = 'E' - except: - pass - - foundation = BIM_in.get('FoundationType') - if np.isnan(foundation): - foundation = 3501 - - nunits = BIM_in.get('NumberOfUnits',1) - if np.isnan(nunits): - nunits = 1 - - # Average January Temp. - ap_ajt = { - 'Above': 'above', - 'Below': 'below' - } - - # Year built - alname_yearbuilt = ['yearBuilt', 'YearBuiltMODIV', 'YearBuilt'] - try: - yearbuilt = BIM_in['YearBuiltNJDEP'] - except: - for i in alname_yearbuilt: - if i in BIM_in.keys(): - yearbuilt = BIM_in[i] - break - print('yearbuilt = ', yearbuilt) - - # Number of Stories - alname_nstories = ['stories', 'NumberofStories0', 'NumberOfStories'] - try: - nstories = BIM_in['NumberofStories1'] - except: - for i in alname_nstories: - if i in BIM_in.keys(): - nstories = BIM_in[i] - break - - # Plan Area - alname_area = ['area', 'PlanArea1', 'PlanArea'] - try: - area = BIM_in['PlanArea0'] - except: - for i in alname_area: - if i in BIM_in.keys(): - area = BIM_in[i] - break - - # if getting RES3 only (without subclass) then converting it to default RES3A - oc = BIM_in.get('occupancy','RES1') - if oc == 'RES3': - oc = 'RES3A' - - # maps for flood zone - ap_FloodZone = { - # Coastal areas with a 1% or greater chance of flooding and an - # additional hazard associated with storm waves. - 6101: 'VE', - 6102: 'VE', - 6103: 'AE', - 6104: 'AE', - 6105: 'AO', - 6106: 'AE', - 6107: 'AH', - 6108: 'AO', - 6109: 'A', - 6110: 'X', - 6111: 'X', - 6112: 'X', - 6113: 'OW', - 6114: 'D', - 6115: 'NA', - 6119: 'NA' - } - if type(BIM_in['FloodZone']) == int: - # NJDEP code for flood zone (conversion to the FEMA designations) - floodzone_fema = ap_FloodZone[BIM_in['FloodZone']] - else: - # standard input should follow the FEMA flood zone designations - floodzone_fema = BIM_in['FloodZone'] - - # first, pull in the provided data - BIM = dict( - occupancy_class=str(oc), - bldg_type=BIM_in['BuildingType'], - year_built=int(yearbuilt), - # double check with Tracey for format - (NumberStories0 is 4-digit code) - # (NumberStories1 is image-processed story number) - stories=int(nstories), - area=float(area), - flood_zone=floodzone_fema, - V_ult=float(BIM_in['DesignWindSpeed']), - avg_jan_temp=ap_ajt[BIM_in.get('AverageJanuaryTemperature','Below')], - roof_shape=ap_RoofType[BIM_in['RoofShape']], - roof_slope=float(BIM_in.get('RoofSlope',0.25)), # default 0.25 - sheathing_t=float(BIM_in.get('SheathingThick',1.0)), # default 1.0 - roof_system=str(ap_RoofSyste[roof_system]), # only valid for masonry structures - garage_tag=float(BIM_in.get('Garage',-1.0)), - lulc=BIM_in.get('LULC',-1), - z0 = float(BIM_in.get('RoughnessLength',-1)), # if the z0 is already in the input file - Terrain = BIM_in.get('Terrain',-1), - mean_roof_height=float(BIM_in.get('MeanRoofHeight',15.0)), # default 15 - design_level=str(ap_DesignLevel[design_level]), # default engineered - no_units=int(nunits), - window_area=float(BIM_in.get('WindowArea',0.20)), - first_floor_ht1=float(BIM_in.get('FirstFloorHeight',10.0)), - split_level=bool(ap_SplitLevel[BIM_in.get('SplitLevel',0)]), # dfault: no - fdtn_type=int(foundation), # default: pile - city=BIM_in.get('City','NA'), - wind_zone=str(BIM_in.get('WindZone', 'I')) - ) - - # add inferred, generic meta-variables - - # Hurricane-Prone Region (HRP) - # Areas vulnerable to hurricane, defined as the U.S. Atlantic Ocean and - # Gulf of Mexico coasts where the ultimate design wind speed, V_ult is - # greater than a pre-defined limit. - if BIM['year_built'] >= 2016: - # The limit is 115 mph in IRC 2015 - HPR = BIM['V_ult'] > 115.0 - else: - # The limit is 90 mph in IRC 2009 and earlier versions - HPR = BIM['V_ult'] > 90.0 - - # Wind Borne Debris - # Areas within hurricane-prone regions are affected by debris if one of - # the following two conditions holds: - # (1) Within 1 mile (1.61 km) of the coastal mean high water line where - # the ultimate design wind speed is greater than flood_lim. - # (2) In areas where the ultimate design wind speed is greater than - # general_lim - # The flood_lim and general_lim limits depend on the year of construction - if BIM['year_built'] >= 2016: - # In IRC 2015: - flood_lim = 130.0 # mph - general_lim = 140.0 # mph - else: - # In IRC 2009 and earlier versions - flood_lim = 110.0 # mph - general_lim = 120.0 # mph - # Areas within hurricane-prone regions located in accordance with - # one of the following: - # (1) Within 1 mile (1.61 km) of the coastal mean high water line - # where the ultimate design wind speed is 130 mph (58m/s) or greater. - # (2) In areas where the ultimate design wind speed is 140 mph (63.5m/s) - # or greater. (Definitions: Chapter 2, 2015 NJ Residential Code) - if not HPR: - WBD = False - else: - WBD = ((((BIM['flood_zone'] >= 6101) and (BIM['flood_zone'] <= 6109)) and - BIM['V_ult'] >= flood_lim) or (BIM['V_ult'] >= general_lim)) - - # Terrain - # open (0.03) = 3 - # light suburban (0.15) = 15 - # suburban (0.35) = 35 - # light trees (0.70) = 70 - # trees (1.00) = 100 - # Mapped to Land Use Categories in NJ (see https://www.state.nj.us/dep/gis/ - # digidownload/metadata/lulc02/anderson2002.html) by T. Wu group - # (see internal report on roughness calculations, Table 4). - # These are mapped to Hazus defintions as follows: - # Open Water (5400s) with zo=0.01 and barren land (7600) with zo=0.04 assume Open - # Open Space Developed, Low Intensity Developed, Medium Intensity Developed - # (1110-1140) assumed zo=0.35-0.4 assume Suburban - # High Intensity Developed (1600) with zo=0.6 assume Lt. Tree - # Forests of all classes (4100-4300) assumed zo=0.6 assume Lt. Tree - # Shrub (4400) with zo=0.06 assume Open - # Grasslands, pastures and agricultural areas (2000 series) with - # zo=0.1-0.15 assume Lt. Suburban - # Woody Wetlands (6250) with zo=0.3 assume suburban - # Emergent Herbaceous Wetlands (6240) with zo=0.03 assume Open - # Note: HAZUS category of trees (1.00) does not apply to any LU/LC in NJ - terrain = 15 # Default in Reorganized Rulesets - WIND - if (BIM['z0'] > 0): - terrain = int(100 * BIM['z0']) - elif (BIM['lulc'] > 0): - if (BIM['flood_zone'].startswith('V') or BIM['flood_zone'] in ['A', 'AE', 'A1-30', 'AR', 'A99']): - terrain = 3 - elif ((BIM['lulc'] >= 5000) and (BIM['lulc'] <= 5999)): - terrain = 3 # Open - elif ((BIM['lulc'] == 4400) or (BIM['lulc'] == 6240)) or (BIM['lulc'] == 7600): - terrain = 3 # Open - elif ((BIM['lulc'] >= 2000) and (BIM['lulc'] <= 2999)): - terrain = 15 # Light suburban - elif ((BIM['lulc'] >= 1110) and (BIM['lulc'] <= 1140)) or ((BIM['lulc'] >= 6250) and (BIM['lulc'] <= 6252)): - terrain = 35 # Suburban - elif ((BIM['lulc'] >= 4100) and (BIM['lulc'] <= 4300)) or (BIM['lulc'] == 1600): - terrain = 70 # light trees - elif (BIM['Terrain'] > 0): - if (BIM['flood_zone'].startswith('V') or BIM['flood_zone'] in ['A', 'AE', 'A1-30', 'AR', 'A99']): - terrain = 3 - elif ((BIM['Terrain'] >= 50) and (BIM['Terrain'] <= 59)): - terrain = 3 # Open - elif ((BIM['Terrain'] == 44) or (BIM['Terrain'] == 62)) or (BIM['Terrain'] == 76): - terrain = 3 # Open - elif ((BIM['Terrain'] >= 20) and (BIM['Terrain'] <= 29)): - terrain = 15 # Light suburban - elif (BIM['Terrain'] == 11) or (BIM['Terrain'] == 61): - terrain = 35 # Suburban - elif ((BIM['Terrain'] >= 41) and (BIM['Terrain'] <= 43)) or (BIM['Terrain'] in [16, 17]): - terrain = 70 # light trees - - BIM.update(dict( - # Nominal Design Wind Speed - # Former term was “Basic Wind Speed”; it is now the “Nominal Design - # Wind Speed (V_asd). Unit: mph." - V_asd = np.sqrt(0.6 * BIM['V_ult']), - - # Flood Risk - # Properties in the High Water Zone (within 1 mile of the coast) are at - # risk of flooding and other wind-borne debris action. - flood_risk=True, # TODO: need high water zone for this and move it to inputs! - - HPR=HPR, - WBD=WBD, - terrain=terrain, - )) - - return BIM - - -def FL_config(BIM): - """ - Rules to identify the flood vunerability category - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - year = BIM['year_built'] # just for the sake of brevity - - # Flood Type - if BIM['flood_zone'] in [6105, 6108]: - flood_type = 'raz' # Riverline/A-Zone - elif BIM['flood_zone'] in [6103, 6104, 6106, 6107, 6109]: - flood_type = 'cvz' # Costal-Zone - elif BIM['flood_zone'] in [6101, 6102]: - flood_type = 'cvz' # Costal-Zone - else: - flood_type = 'cvz' # Default - - # First Floor Elevation (FFE) - if flood_type in ['raz', 'caz']: - FFE = BIM['first_floor_ht1'] - else: - FFE = BIM['first_floor_ht1'] - 1.0 - - # PostFIRM - PostFIRM = False # Default - city_list = ['Absecon', 'Atlantic', 'Brigantine', 'Buena', 'Buena Vista', - 'Corbin City', 'Egg Harbor City', 'Egg Harbor', 'Estell Manor', - 'Folsom', 'Galloway', 'Hamilton', 'Hammonton', 'Linwood', - 'Longport', 'Margate City', 'Mullica', 'Northfield', - 'Pleasantville', 'Port Republic', 'Somers Point', - 'Ventnor City', 'Weymouth'] - year_list = [1976, 1971, 1971, 1983, 1979, 1981, 1982, 1983, 1978, 1982, - 1983, 1977, 1982, 1983, 1974, 1974, 1982, 1979, 1983, 1983, - 1982, 1971, 1979] - for i in range(0,22): - PostFIRM = (((BIM['city'] == city_list[i]) and (year > year_list[i])) or \ - PostFIRM) - - # Basement Type - if BIM['split_level'] and (BIM['fdtn_type'] == 3504): - bmt_type = 'spt' # Split-Level Basement - elif BIM['fdtn_type'] in [3501, 3502, 3503, 3505, 3506, 3507]: - bmt_type = 'bn' # No Basement - elif (not BIM['split_level']) and (BIM['fdtn_type'] == 3504): - bmt_type = 'bw' # Basement - else: - bmt_type = 'bw' # Default - - # Duration - dur = 'short' - - # Occupancy Type - if BIM['occupancy_class'] == 'RES1': - if BIM['stories'] == 1: - if flood_type == 'raz': - OT = 'SF1XA' - elif flood_type == 'cvz': - OT = 'SF1XV' - else: - if bmt_type == 'nav': - if flood_type == 'raz': - OT = 'SF2XA' - elif flood_type == 'cvz': - OT = 'SF2XV' - elif bmt_type == 'bmt': - if flood_type == 'raz': - OT = 'SF2BA' - elif flood_type == 'cvz': - OT = 'SF2BV' - elif bmt_type == 'spt': - if flood_type == 'raz': - OT = 'SF2SA' - elif flood_type == 'cvz': - OT = 'SF2SV' - elif 'RES3' in BIM['occupancy_class']: - OT = 'APT' - else: - ap_OT = { - 'RES2': 'MH', - 'RES4': 'HOT', - 'RES5': 'NURSE', - 'RES6': 'NURSE', - 'COM1': 'RETAL', - 'COM2': 'WHOLE', - 'COM3': 'SERVICE', - 'COM4': 'OFFICE', - 'COM5': 'BANK', - 'COM6': 'HOSP', - 'COM7': 'MED', - 'COM8': 'REC', - 'COM9': 'THEAT', - 'COM10': 'GARAGE', - 'IND1': 'INDH', - 'IND2': 'INDL', - 'IND3': 'CHEM', - 'IND4': 'PROC', - 'IND5': 'CHEM', - 'IND6': 'CONST', - 'AGR1': 'AGRI', - 'REL1': 'RELIG', - 'GOV1': 'CITY', - 'GOV2': 'EMERG', - 'EDU1': 'SCHOOL', - 'EDU2': 'SCHOOL' - } - ap_OT[BIM['occupancy_class']] - - - if not (BIM['occupancy_class'] in ['RES1', 'RES2']): - if 'RES3' in BIM['occupancy_class']: - fl_config = f"{'fl'}_" \ - f"{'RES3'}" - else: - fl_config = f"{'fl'}_" \ - f"{BIM['occupancy_class']}" - elif BIM['occupancy_class'] == 'RES2': - fl_config = f"{'fl'}_" \ - f"{BIM['occupancy_class']}_" \ - f"{flood_type}" - else: - if bmt_type == 'spt': - fl_config = f"{'fl'}_" \ - f"{BIM['occupancy_class']}_" \ - f"{'sl'}_" \ - f"{'bw'}_" \ - f"{flood_type}" - else: - st = 's'+str(np.min([BIM['stories'],3])) - fl_config = f"{'fl'}_" \ - f"{BIM['occupancy_class']}_" \ - f"{st}_" \ - f"{bmt_type}_" \ - f"{flood_type}" - - return fl_config - - -def auto_populate(BIM): - """ - Populates the DL model for hurricane assessments in Atlantic County, NJ - - Assumptions: - - Everything relevant to auto-population is provided in the Buiding - Information Model (BIM). - - The information expected in the BIM file is described in the parse_BIM - method. - - Parameters - ---------- - BIM_in: dictionary - Contains the information that is available about the asset and will be - used to auto-popualate the damage and loss model. - - Returns - ------- - BIM_ap: dictionary - Containes the extended BIM data. - DL_ap: dictionary - Contains the auto-populated loss model. - """ - - # parse the BIM data - BIM_ap = parse_BIM(BIM) - - # prepare the flood rulesets - fld_config = FL_config(BIM_ap) - - DL_ap = { - '_method' : 'HAZUS MH HU', - 'LossModel' : { - 'DecisionVariables': { - "ReconstructionCost": True - }, - 'ReplacementCost' : 100 - }, - 'Components' : { - fld_config: [{ - 'location' : '1', - 'direction' : '1', - 'median_quantity': '1.0', - 'unit' : 'ea', - 'distribution' : 'N/A' - }] - } - } - - return BIM_ap, DL_ap diff --git a/docs/_downloads/ece4239c8b708f9908d068f7bceb6a90/Category4.zip b/docs/_downloads/ece4239c8b708f9908d068f7bceb6a90/Category4.zip deleted file mode 100644 index d7548aeff..000000000 Binary files a/docs/_downloads/ece4239c8b708f9908d068f7bceb6a90/Category4.zip and /dev/null differ diff --git a/docs/_downloads/eeefd3b54be79f25882834839caff0dc/WindWSFRulesets.py b/docs/_downloads/eeefd3b54be79f25882834839caff0dc/WindWSFRulesets.py deleted file mode 100644 index 7c39305ac..000000000 --- a/docs/_downloads/eeefd3b54be79f25882834839caff0dc/WindWSFRulesets.py +++ /dev/null @@ -1,276 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - - -def WSF_config(BIM): - """ - Rules to identify a HAZUS WSF configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Secondary Water Resistance (SWR) - # Minimum drainage recommendations are in place in NJ (See below). - # However, SWR indicates a code-plus practice. - SWR = False # Default in Reorganzied Rulesets - WIND - if year > 2000: - # For buildings built after 2000, SWR is based on homeowner compliance - # data from NC Coastal Homeowner Survey (2017) to capture potential - # human behavior (% of sealed roofs in NC dataset). - SWR = random.random() < 0.6 - elif year > 1983: - # CABO 1995: - # According to 903.2 in the 1995 CABO, for roofs with slopes between - # 2:12 and 4:12, an underlayment consisting of two layers of No. 15 - # felt must be applied. In severe climates (less than or equal to 25 - # degrees Fahrenheit average in January), these two layers must be - # cemented together. - # According to 903.3 in the 1995 CABO, roofs with slopes greater than - # or equal to 4:12 shall have an underlayment of not less than one ply - # of No. 15 felt. - # - # Similar rules are prescribed in CABO 1992, 1989, 1986, 1983 - # - # Since low-slope roofs require two layers of felt, this is taken to - # be secondary water resistance. This ruleset is for asphalt shingles. - # Almost all other roof types require underlayment of some sort, but - # the ruleset is based on asphalt shingles because it is most - # conservative. - if BIM['roof_shape'] == 'flt': # note there is actually no 'flt' - SWR = True - elif BIM['roof_shape'] in ['gab','hip']: - if BIM['roof_slope'] <= 0.17: - SWR = True - elif BIM['roof_slope'] < 0.33: - SWR = (BIM['avg_jan_temp'] == 'below') - - # Roof Deck Attachment (RDA) - # IRC codes: - # NJ code requires 8d nails (with spacing 6”/12”) for sheathing thicknesses - # between ⅜”-1” - see Table R602.3(1) - # Fastener selection is contingent on thickness of sheathing in building - # codes. Commentary for Table R602.3(1) indicates 8d nails with 6”/6” - # spacing (enhanced roof spacing) for ultimate wind speeds greater than - # a speed_lim. speed_lim depends on the year of construction - RDA = '6d' # Default (aka A) in Reorganized Rulesets - WIND - if year > 2000: - if year >= 2016: - # IRC 2015 - speed_lim = 130.0 # mph - else: - # IRC 2000 - 2009 - speed_lim = 100.0 # mph - if BIM['V_ult'] > speed_lim: - RDA = '8s' # 8d @ 6"/6" ('D' in the Reorganized Rulesets - WIND) - else: - RDA = '8d' # 8d @ 6"/12" ('B' in the Reorganized Rulesets - WIND) - elif year > 1995: - if ((BIM['sheathing_t'] >= 0.3125) and (BIM['sheathing_t'] <= 0.5)): - RDA = '6d' # 6d @ 6"/12" ('A' in the Reorganized Rulesets - WIND) - elif ((BIM['sheathing_t'] >= 0.59375) and (BIM['sheathing_t'] <= 1.125)): - RDA = '8d' # 8d @ 6"/12" ('B' in the Reorganized Rulesets - WIND) - elif year > 1986: - if ((BIM['sheathing_t'] >= 0.3125) and (BIM['sheathing_t'] <= 0.5)): - RDA = '6d' # 6d @ 6"/12" ('A' in the Reorganized Rulesets - WIND) - elif ((BIM['sheathing_t'] >= 0.59375) and (BIM['sheathing_t'] <= 1.0)): - RDA = '8d' # 8d @ 6"/12" ('B' in the Reorganized Rulesets - WIND) - else: - # year <= 1986 - if ((BIM['sheathing_t'] >= 0.3125) and (BIM['sheathing_t'] <= 0.5)): - RDA = '6d' # 6d @ 6"/12" ('A' in the Reorganized Rulesets - WIND) - elif ((BIM['sheathing_t'] >= 0.625) and (BIM['sheathing_t'] <= 1.0)): - RDA = '8d' # 8d @ 6"/12" ('B' in the Reorganized Rulesets - WIND) - - # Roof-Wall Connection (RWC) - # IRC 2015 - # "Assume all homes not having wind speed consideration are Toe Nail - # (regardless of year) - # For homes with wind speed consideration, 2015 IRC Section R802.11: no - # specific connection type, must resist uplift forces using various - # guidance documents, e.g., straps would be required (based on WFCM 2015); - # will assume that if classified as HPR, then enhanced connection would be - # used. - if year > 2015: - if BIM['HPR']: - RWC = 'strap' # Strap - else: - RWC = 'tnail' # Toe-nail - # IRC 2000-2009 - # In Section R802.11.1 Uplift Resistance of the NJ 2009 IRC, roof - # assemblies which are subject to wind uplift pressures of 20 pounds per - # square foot or greater are required to have attachments that are capable - # of providing resistance, in this case assumed to be straps. - # Otherwise, the connection is assumed to be toe nail. - # CABO 1992-1995: - # 802.11 Roof Tie-Down: Roof assemblies subject to wind uplift pressures of - # 20 lbs per sq ft or greater shall have rafter or truess ties. The - # resulting uplift forces from the rafter or turss ties shall be - # transmitted to the foundation. - # Roof uplift pressure varies by wind speed, exposure category, building - # aspect ratio and roof height. For a reference building (9 ft tall in - # exposure B -- WSF1) analysis suggests that wind speeds in excess of - # 110 mph begin to generate pressures of 20 psf in high pressure zones of - # the roof. Thus 110 mph is used as the critical velocity. - elif year > 1992: - if BIM['V_ult'] > 110: - RWC = 'strap' # Strap - else: - RWC = 'tnail' # Toe-nail - # CABO 1989 and earlier - # There is no mention of straps or enhanced tie-downs in the CABO codes - # older than 1992, and there is no description of these adoptions in IBHS - # reports or the New Jersey Construction Code Communicator . - # Although there is no explicit information, it seems that hurricane straps - # really only came into effect in Florida after Hurricane Andrew (1992). - # Because Florida is the leader in adopting hurricane protection measures - # into codes and because there is no mention of shutters or straps in the - # CABO codes, it is assumed that all roof-wall connections for residential - # buildings are toe nails before 1992. - else: - # year <= 1992 - RWC = 'tnail' # Toe-nail - - # Shutters - # IRC 2000-2015: - # R301.2.1.2 in NJ IRC 2015 says protection of openings required for - # buildings located in WBD regions, mentions impact-rated protection for - # glazing, impact-resistance for garage door glazed openings, and finally - # states that wood structural panels with a thickness > 7/16" and a - # span <8' can be used, as long as they are precut, attached to the framing - # surrounding the opening, and the attachments are resistant to corrosion - # and are able to resist component and cladding loads; - # Earlier IRC editions provide similar rules. - if year > 2000: - shutters = BIM['WBD'] - # CABO: - # Based on Human Subjects Data, roughly 45% of houses built in the 1980s - # and 1990s had entries that implied they had shutters on at some or all of - # their windows. Therefore, 45% of houses in this time should be randomly - # assigned to have shutters. - # Data ranges checked: - # 1992 to 1995, 33/74 entries (44.59%) with shutters - # 1986 to 1992, 36/79 entries (45.57%) with shutters - # 1983 to 1986, 19/44 entries (43.18%) with shutters - else: - # year <= 2000 - if BIM['WBD']: - shutters = random.random() < 0.45 - else: - shutters = False - - # Garage - # As per IRC 2015: - # Garage door glazed opening protection for windborne debris shall meet the - # requirements of an approved impact-resisting standard or ANSI/DASMA 115. - # Exception: Wood structural panels with a thickness of not less than 7/16 - # inch and a span of not more than 8 feet shall be permitted for opening - # protection. Panels shall be predrilled as required for the anchorage - # method and shall be secured with the attachment hardware provided. - # Permitted for buildings where the ultimate design wind speed is 180 mph - # or less. - # - # Average lifespan of a garage is 30 years, so garages that are not in WBD - # (and therefore do not have any strength requirements) that are older than - # 30 years are considered to be weak, whereas those from the last 30 years - # are considered to be standard. - if BIM['garage_tag'] == -1: - # no garage data, using the default "standard" - garage = 'std' - shutters = 0 # HAZUS ties standard garage to w/o shutters - else: - if year > 2000: - if shutters: - if BIM['garage_tag'] < 1: - garage = 'no' - else: - garage = 'sup' # SFBC 1994 - shutters = 1 # HAZUS ties SFBC 1994 to with shutters - else: - if BIM['garage_tag'] < 1: - garage = 'no' # None - else: - garage = 'std' # Standard - shutters = 0 # HAZUS ties standard garage to w/o shutters - elif year > (datetime.datetime.now().year - 30): - if BIM['garage_tag'] < 1: - garage = 'no' # None - else: - garage = 'std' # Standard - shutters = 0 # HAZUS ties standard garage to w/o shutters - else: - # year <= current year - 30 - if BIM['garage_tag'] < 1: - garage = 'no' # None - else: - garage = 'wkd' # Weak - shutters = 0 # HAZUS ties weak garage to w/o shutters - - # building configuration tag - bldg_config = f"WSF" \ - f"{int(min(BIM['stories'],2))}_" \ - f"{BIM['roof_shape']}_" \ - f"{int(SWR)}_" \ - f"{RDA}_" \ - f"{RWC}_" \ - f"{garage}_" \ - f"{int(shutters)}_" \ - f"{int(BIM['terrain'])}" - return bldg_config - diff --git a/docs/_downloads/fcd54e3b61bddaff1a7c0d5622ff5e22/WindCERBRulesets.py b/docs/_downloads/fcd54e3b61bddaff1a7c0d5622ff5e22/WindCERBRulesets.py deleted file mode 100644 index 75d68a109..000000000 --- a/docs/_downloads/fcd54e3b61bddaff1a7c0d5622ff5e22/WindCERBRulesets.py +++ /dev/null @@ -1,129 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of the SimCenter Backend Applications -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# this file. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Kuanshi Zhong -# -# Based on rulesets developed by: -# Karen Angeles -# Meredith Lockhead -# Tracy Kijewski-Correa - -import random -import numpy as np -import datetime - -def CERB_config(BIM): - """ - Rules to identify a HAZUS CERB configuration based on BIM data - - Parameters - ---------- - BIM: dictionary - Information about the building characteristics. - - Returns - ------- - config: str - A string that identifies a specific configration within this buidling - class. - """ - - year = BIM['year_built'] # just for the sake of brevity - - # Roof cover - if BIM['roof_shape'] in ['gab', 'hip']: - roof_cover = 'bur' - # Warning: HAZUS does not have N/A option for CECB, so here we use bur - else: - if year >= 1975: - roof_cover = 'spm' - else: - # year < 1975 - roof_cover = 'bur' - - # shutters - if year >= 2000: - shutters = BIM['WBD'] - # BOCA 1996 and earlier: - # Shutters were not required by code until the 2000 IBC. Before 2000, the - # percentage of commercial buildings that have shutters is assumed to be - # 46%. This value is based on a study on preparedness of small businesses - # for hurricane disasters, which says that in Sarasota County, 46% of - # business owners had taken action to wind-proof or flood-proof their - # facilities. In addition to that, 46% of business owners reported boarding - # up their businesses before Hurricane Katrina. In addition, compliance - # rates based on the Homeowners Survey data hover between 43 and 50 percent. - else: - if BIM['WBD']: - shutters = random.random() < 0.45 - else: - shutters = False - - # Wind Debris (widd in HAZSU) - # HAZUS A: Res/Comm, B: Varies by direction, C: Residential, D: None - WIDD = 'C' # residential (default) - if BIM['occupancy_class'] in ['RES1', 'RES2', 'RES3A', 'RES3B', 'RES3C', - 'RES3D']: - WIDD = 'C' # residential - elif BIM['occupancy_class'] == 'AGR1': - WIDD = 'D' # None - else: - WIDD = 'A' # Res/Comm - - # Window area ratio - if BIM['window_area'] < 0.33: - WWR = 'low' - elif BIM['window_area'] < 0.5: - WWR = 'med' - else: - WWR = 'hig' - - if BIM['stories'] <= 2: - bldg_tag = 'CERBL' - elif BIM['stories'] <= 5: - bldg_tag = 'CERBM' - else: - bldg_tag = 'CERBH' - - bldg_config = f"{bldg_tag}_" \ - f"{roof_cover}_" \ - f"{WWR}_" \ - f"{int(shutters)}_" \ - f"{WIDD}_" \ - f"{int(BIM['terrain'])}" - return bldg_config diff --git a/docs/_images/ADCIRC_PWD.png b/docs/_images/ADCIRC_PWD.png deleted file mode 100644 index 1b86d0cec..000000000 Binary files a/docs/_images/ADCIRC_PWD.png and /dev/null differ diff --git a/docs/_images/ADCIRC_sitePWD.png b/docs/_images/ADCIRC_sitePWD.png deleted file mode 100644 index bbe552333..000000000 Binary files a/docs/_images/ADCIRC_sitePWD.png and /dev/null differ diff --git a/docs/_images/ADCIRC_waterelev.png b/docs/_images/ADCIRC_waterelev.png deleted file mode 100644 index b696f8060..000000000 Binary files a/docs/_images/ADCIRC_waterelev.png and /dev/null differ diff --git a/docs/_images/ARA_PWS.png b/docs/_images/ARA_PWS.png deleted file mode 100644 index f7108b475..000000000 Binary files a/docs/_images/ARA_PWS.png and /dev/null differ diff --git a/docs/_images/BuildingClass_atlanticall.png b/docs/_images/BuildingClass_atlanticall.png deleted file mode 100644 index 88573f053..000000000 Binary files a/docs/_images/BuildingClass_atlanticall.png and /dev/null differ diff --git a/docs/_images/BuildingClass_sfba.png b/docs/_images/BuildingClass_sfba.png deleted file mode 100644 index 5c60e5cbe..000000000 Binary files a/docs/_images/BuildingClass_sfba.png and /dev/null differ diff --git a/docs/_images/DL_category2.png b/docs/_images/DL_category2.png deleted file mode 100644 index 8a7b05fc8..000000000 Binary files a/docs/_images/DL_category2.png and /dev/null differ diff --git a/docs/_images/DL_category3.png b/docs/_images/DL_category3.png deleted file mode 100644 index 9cb4e8265..000000000 Binary files a/docs/_images/DL_category3.png and /dev/null differ diff --git a/docs/_images/DL_category4.png b/docs/_images/DL_category4.png deleted file mode 100644 index c33d14f03..000000000 Binary files a/docs/_images/DL_category4.png and /dev/null differ diff --git a/docs/_images/DL_category5.png b/docs/_images/DL_category5.png deleted file mode 100644 index 0da62a3ab..000000000 Binary files a/docs/_images/DL_category5.png and /dev/null differ diff --git a/docs/_images/ExpectedDSNonStruct.png b/docs/_images/ExpectedDSNonStruct.png deleted file mode 100644 index 334f3f6d0..000000000 Binary files a/docs/_images/ExpectedDSNonStruct.png and /dev/null differ diff --git a/docs/_images/ExpectedDSStruct.png b/docs/_images/ExpectedDSStruct.png deleted file mode 100644 index 6a5601af1..000000000 Binary files a/docs/_images/ExpectedDSStruct.png and /dev/null differ diff --git a/docs/_images/LossRatioComp.png b/docs/_images/LossRatioComp.png deleted file mode 100644 index 7d6ffe679..000000000 Binary files a/docs/_images/LossRatioComp.png and /dev/null differ diff --git a/docs/_images/MainWorkflowComps.png b/docs/_images/MainWorkflowComps.png deleted file mode 100644 index df32ef989..000000000 Binary files a/docs/_images/MainWorkflowComps.png and /dev/null differ diff --git a/docs/_images/ModelTypes.png b/docs/_images/ModelTypes.png deleted file mode 100644 index b80b21bde..000000000 Binary files a/docs/_images/ModelTypes.png and /dev/null differ diff --git a/docs/_images/PGA-X.png b/docs/_images/PGA-X.png deleted file mode 100644 index f8b17757d..000000000 Binary files a/docs/_images/PGA-X.png and /dev/null differ diff --git a/docs/_images/PGA-Y.png b/docs/_images/PGA-Y.png deleted file mode 100644 index 0a6472fb2..000000000 Binary files a/docs/_images/PGA-Y.png and /dev/null differ diff --git a/docs/_images/PerfAssWorkflows.png b/docs/_images/PerfAssWorkflows.png deleted file mode 100644 index 3818d5852..000000000 Binary files a/docs/_images/PerfAssWorkflows.png and /dev/null differ diff --git a/docs/_images/RTM.png b/docs/_images/RTM.png deleted file mode 100644 index a0beb521f..000000000 Binary files a/docs/_images/RTM.png and /dev/null differ diff --git a/docs/_images/ScatterMatrix.png b/docs/_images/ScatterMatrix.png deleted file mode 100644 index 55f46f660..000000000 Binary files a/docs/_images/ScatterMatrix.png and /dev/null differ diff --git a/docs/_images/SimuVSHandCalc.png b/docs/_images/SimuVSHandCalc.png deleted file mode 100644 index a5c494b78..000000000 Binary files a/docs/_images/SimuVSHandCalc.png and /dev/null differ diff --git a/docs/_images/WindLossBuildingType.png b/docs/_images/WindLossBuildingType.png deleted file mode 100644 index 5f29c091a..000000000 Binary files a/docs/_images/WindLossBuildingType.png and /dev/null differ diff --git a/docs/_images/WoodBuildingWindLoss.png b/docs/_images/WoodBuildingWindLoss.png deleted file mode 100644 index 5a5d5db62..000000000 Binary files a/docs/_images/WoodBuildingWindLoss.png and /dev/null differ diff --git a/docs/_images/atlantic_wind_loss.png b/docs/_images/atlantic_wind_loss.png deleted file mode 100644 index 923459902..000000000 Binary files a/docs/_images/atlantic_wind_loss.png and /dev/null differ diff --git a/docs/_images/brigantine_wind_loss.png b/docs/_images/brigantine_wind_loss.png deleted file mode 100644 index fcd0e457f..000000000 Binary files a/docs/_images/brigantine_wind_loss.png and /dev/null differ diff --git a/docs/_images/bugReport.png b/docs/_images/bugReport.png deleted file mode 100644 index 3c4bd3a01..000000000 Binary files a/docs/_images/bugReport.png and /dev/null differ diff --git a/docs/_images/building_elevation.png b/docs/_images/building_elevation.png deleted file mode 100644 index a21e0ab39..000000000 Binary files a/docs/_images/building_elevation.png and /dev/null differ diff --git a/docs/_images/building_type_allset.png b/docs/_images/building_type_allset.png deleted file mode 100644 index 04ac07976..000000000 Binary files a/docs/_images/building_type_allset.png and /dev/null differ diff --git a/docs/_images/building_type_allset1.png b/docs/_images/building_type_allset1.png deleted file mode 100644 index 6138423f3..000000000 Binary files a/docs/_images/building_type_allset1.png and /dev/null differ diff --git a/docs/_images/built_year_allset.png b/docs/_images/built_year_allset.png deleted file mode 100644 index 4568efe71..000000000 Binary files a/docs/_images/built_year_allset.png and /dev/null differ diff --git a/docs/_images/built_year_allset1.png b/docs/_images/built_year_allset1.png deleted file mode 100644 index d676f4a5a..000000000 Binary files a/docs/_images/built_year_allset1.png and /dev/null differ diff --git a/docs/_images/city_loss_c2.png b/docs/_images/city_loss_c2.png deleted file mode 100644 index b9686eff9..000000000 Binary files a/docs/_images/city_loss_c2.png and /dev/null differ diff --git a/docs/_images/city_loss_c3.png b/docs/_images/city_loss_c3.png deleted file mode 100644 index 6da50f57c..000000000 Binary files a/docs/_images/city_loss_c3.png and /dev/null differ diff --git a/docs/_images/city_loss_c4.png b/docs/_images/city_loss_c4.png deleted file mode 100644 index 6d8b2f882..000000000 Binary files a/docs/_images/city_loss_c4.png and /dev/null differ diff --git a/docs/_images/city_loss_c5.png b/docs/_images/city_loss_c5.png deleted file mode 100644 index f4189aaf6..000000000 Binary files a/docs/_images/city_loss_c5.png and /dev/null differ diff --git a/docs/_images/dl_p58_general.png b/docs/_images/dl_p58_general.png deleted file mode 100644 index f3d0680fb..000000000 Binary files a/docs/_images/dl_p58_general.png and /dev/null differ diff --git a/docs/_images/ds.png b/docs/_images/ds.png deleted file mode 100644 index f848c6dc3..000000000 Binary files a/docs/_images/ds.png and /dev/null differ diff --git a/docs/_images/flood_depth_damage_curves.png b/docs/_images/flood_depth_damage_curves.png deleted file mode 100644 index ee86501f5..000000000 Binary files a/docs/_images/flood_depth_damage_curves.png and /dev/null differ diff --git a/docs/_images/galloway_wind_loss.png b/docs/_images/galloway_wind_loss.png deleted file mode 100644 index a8f0de26b..000000000 Binary files a/docs/_images/galloway_wind_loss.png and /dev/null differ diff --git a/docs/_images/margate_wind_loss.png b/docs/_images/margate_wind_loss.png deleted file mode 100644 index 38ef2248e..000000000 Binary files a/docs/_images/margate_wind_loss.png and /dev/null differ diff --git a/docs/_images/new_inventory_map.png b/docs/_images/new_inventory_map.png deleted file mode 100644 index 0cad42cc8..000000000 Binary files a/docs/_images/new_inventory_map.png and /dev/null differ diff --git a/docs/_images/new_inventory_map_expl.png b/docs/_images/new_inventory_map_expl.png deleted file mode 100644 index d2399798d..000000000 Binary files a/docs/_images/new_inventory_map_expl.png and /dev/null differ diff --git a/docs/_images/nn.png b/docs/_images/nn.png deleted file mode 100644 index e036c2672..000000000 Binary files a/docs/_images/nn.png and /dev/null differ diff --git a/docs/_images/nn1.png b/docs/_images/nn1.png deleted file mode 100644 index e036c2672..000000000 Binary files a/docs/_images/nn1.png and /dev/null differ diff --git a/docs/_images/num_building_city_allset.png b/docs/_images/num_building_city_allset.png deleted file mode 100644 index 314529f4f..000000000 Binary files a/docs/_images/num_building_city_allset.png and /dev/null differ diff --git a/docs/_images/num_story_confusion.png b/docs/_images/num_story_confusion.png deleted file mode 100644 index d53f93a54..000000000 Binary files a/docs/_images/num_story_confusion.png and /dev/null differ diff --git a/docs/_images/number_of_stories_detection.png b/docs/_images/number_of_stories_detection.png deleted file mode 100644 index 7b2d9fef6..000000000 Binary files a/docs/_images/number_of_stories_detection.png and /dev/null differ diff --git a/docs/_images/occupancy_type_allset.png b/docs/_images/occupancy_type_allset.png deleted file mode 100644 index e15ea02b2..000000000 Binary files a/docs/_images/occupancy_type_allset.png and /dev/null differ diff --git a/docs/_images/occupancy_type_allset1.png b/docs/_images/occupancy_type_allset1.png deleted file mode 100644 index 07e3d790b..000000000 Binary files a/docs/_images/occupancy_type_allset1.png and /dev/null differ diff --git a/docs/_images/pwd.png b/docs/_images/pwd.png deleted file mode 100644 index 13b6f0a88..000000000 Binary files a/docs/_images/pwd.png and /dev/null differ diff --git a/docs/_images/pws.png b/docs/_images/pws.png deleted file mode 100644 index e140f00d0..000000000 Binary files a/docs/_images/pws.png and /dev/null differ diff --git a/docs/_images/res_data.png b/docs/_images/res_data.png deleted file mode 100644 index f166b9556..000000000 Binary files a/docs/_images/res_data.png and /dev/null differ diff --git a/docs/_images/roof_shape.png b/docs/_images/roof_shape.png deleted file mode 100644 index d152ab31b..000000000 Binary files a/docs/_images/roof_shape.png and /dev/null differ diff --git a/docs/_images/story_number_allset.png b/docs/_images/story_number_allset.png deleted file mode 100644 index eb484fad1..000000000 Binary files a/docs/_images/story_number_allset.png and /dev/null differ diff --git a/docs/_images/story_number_allset1.png b/docs/_images/story_number_allset1.png deleted file mode 100644 index b230a002e..000000000 Binary files a/docs/_images/story_number_allset1.png and /dev/null differ diff --git a/docs/_images/ventor_wind_loss.png b/docs/_images/ventor_wind_loss.png deleted file mode 100644 index 7944dfec6..000000000 Binary files a/docs/_images/ventor_wind_loss.png and /dev/null differ diff --git a/docs/_images/wind_damage_functions.png b/docs/_images/wind_damage_functions.png deleted file mode 100644 index 492b2e912..000000000 Binary files a/docs/_images/wind_damage_functions.png and /dev/null differ diff --git a/docs/_modules/index.html b/docs/_modules/index.html deleted file mode 100644 index 0f0ee0e0c..000000000 --- a/docs/_modules/index.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - - - - - Overview: module code — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Overview: module code
  • - - -
  • - -
  • - -
- - -
-
- -
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/auto.html b/docs/_modules/pelicun/auto.html deleted file mode 100644 index c7ee556a8..000000000 --- a/docs/_modules/pelicun/auto.html +++ /dev/null @@ -1,810 +0,0 @@ - - - - - - - - - - pelicun.auto — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.auto
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.auto

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-This module has classes and methods that auto-populate DL models.
-
-.. rubric:: Contents
-
-.. autosummary::
-
-    auto_populate
-
-"""
-
-from .base import *
-import importlib
-import json
-from pathlib import Path
-
-ap_DesignLevel = {
-    1940: 'Pre-Code',
-    1940: 'Low-Code',
-    1975: 'Moderate-Code',
-    2100: 'High-Code'
-}
-
-ap_DesignLevel_W1 = {
-       0: 'Pre-Code',
-       0: 'Low-Code',
-    1975: 'Moderate-Code',
-    2100: 'High-Code'
-}
-
-ap_Occupancy = {
-    'Other/Unknown': 'RES3',
-    'Residential - Single-Family': 'RES1',
-    'Residential - Town-Home': 'RES3',
-    'Residential - Multi-Family': 'RES3',
-    'Residential - Mixed Use': 'RES3',
-    'Office': 'COM4',
-    'Hotel': 'RES4',
-    'School': 'EDU1',
-    'Industrial - Light': 'IND2',
-    'Industrial - Warehouse': 'IND2',
-    'Industrial - Heavy': 'IND1',
-    'Retail': 'COM1',
-    'Parking' : 'COM10'
-}
-
-convert_design_level = {
-        'High-Code'    : 'HC',
-        'Moderate-Code': 'MC',
-        'Low-Code'     : 'LC',
-        'Pre-Code'     : 'PC'
-    }
-
-def story_scale(stories, comp_type):
-    if comp_type == 'NSA':
-        if stories == 1:
-            return 1.00
-        elif stories == 2:
-            return 1.22
-        elif stories == 3:
-            return 1.40
-        elif stories == 4:
-            return 1.45
-        elif stories == 5:
-            return 1.50
-        elif stories == 6:
-            return 1.90
-        elif stories == 7:
-            return 2.05
-        elif stories == 8:
-            return 2.15
-        elif stories == 9:
-            return 2.20
-        elif (stories >= 10) and (stories < 30):
-            return 2.30 + (stories-10)*0.04
-        elif stories >= 30:
-            return 3.10
-        else:
-            return 1.0
-
-    elif comp_type in ['S', 'NSD']:
-        if stories == 1:
-            return 1.45
-        elif stories == 2:
-            return 1.90
-        elif stories == 3:
-            return 2.50
-        elif stories == 4:
-            return 2.75
-        elif stories == 5:
-            return 3.00
-        elif stories == 6:
-            return 3.50
-        elif stories == 7:
-            return 3.50
-        elif stories == 8:
-            return 3.50
-        elif stories == 9:
-            return 4.50
-        elif (stories >= 10) and (stories < 50):
-            return 4.50 + (stories-10)*0.07
-        elif stories >= 50:
-            return 7.30
-        else:
-            return 1.0
-
-
[docs]def auto_populate(DL_input_path, EDP_input_path, - DL_method, realization_count, coupled_EDP, event_time, - ground_failure, auto_script_path = None): - """ - Short description - - Assumptions: - - The BIM is stored under 'GeneralInformation' or 'GI' in the root of - DL_input - - Parameters - ---------- - DL_input_path: - - Returns - ------- - DL_input - DL_ap_path - """ - - - # load the available DL input information - with open(DL_input_path, 'r') as f: - DL_input = json.load(f) - - # get the BIM data - BIM = DL_input.get('GeneralInformation', None) - if BIM is None: - raise ValueError( - "No Building Information provided for the auto-population routine." - ) - - if auto_script_path is not None: # if an external auto pop script is provided - - # load the module - ASP = Path(auto_script_path).resolve() - sys.path.insert(0, str(ASP.parent)+'/') - auto_script = importlib.__import__(ASP.name[:-3], globals(), locals(), [], 0) - auto_populate_ext = auto_script.auto_populate - - # generate the DL input data - BIM_ap, DL_ap = auto_populate_ext(BIM = BIM) - - # add the response model information - DL_ap.update({ - 'ResponseModel': { - 'ResponseDescription': { - 'EDP_Distribution': 'empirical', - 'Realizations' : realization_count - } - } - }) - - # add the even time information - if needed - if event_time is not None: - DL_ap['LossModel']['Inhabitants'].update({'EventTime': event_time}) - - # assemble the extended DL input - DL_input.update({'BIM_Inferred': BIM_ap}) - DL_input.update({'DamageAndLoss': DL_ap}) - - # save it to the DL file with the ap suffix - DL_ap_path = DL_input_path[:-5] + '_ap.json' - - with open(DL_ap_path, 'w') as f: - json.dump(DL_input, f, indent=2) - - # and also return these information - return DL_input, DL_ap_path - - else: # otherwise, use the old autopop method - - EDP_input = pd.read_csv(EDP_input_path, sep='\s+', header=0, - index_col=0) - - is_IM_based = DL_method[-2:] == 'IM' - - stories = BIM['NumberofStories'] - # use only 1 story if DM is based on IM - if DL_method == 'HAZUS MH EQ IM': - stories = 1 - BIM.update({'NumberofStories':stories}) - - # HAZUS Earthquake - if DL_method in ['HAZUS MH EQ', 'HAZUS MH EQ IM']: - - bt = BIM['StructureType'] - - if bt == 'RV.structType': - bt = EDP_input['structType'].values[0] - - year_built = BIM['YearBuilt'] - - if bt not in ['W1', 'W2', 'S3', 'PC1', 'MH']: - if bt not in ['URM']: - if stories <= 3: - bt += 'L' - elif stories <= 7: - bt += 'M' - else: - if bt in ['RM']: - bt += 'M' - else: - bt += 'H' - else: - if stories <= 2: - bt += 'L' - else: - bt += 'M' - - if BIM['OccupancyClass'] in ap_Occupancy.keys(): - ot = ap_Occupancy[BIM['OccupancyClass']] - else: - ot = BIM['OccupancyClass'] - - replacementCost = BIM.get('ReplacementCost', 1.0) - replacementTime = BIM.get('ReplacementTime', 1.0) - population = BIM.get('Population', 1.0) - - loss_dict = { - '_method': DL_method, - 'DamageModel': { - 'StructureType': bt - }, - 'LossModel': { - 'DecisionVariables': { - 'ReconstructionCost': True, - 'ReconstructionTime': True, - 'Injuries': True - }, - 'Inhabitants': { - 'OccupancyType': ot, - 'PeakPopulation': f'{population}' - }, - 'ReplacementCost': replacementCost, - 'ReplacementTime': replacementTime - }, - 'ResponseModel': { - 'ResponseDescription': { - 'Realizations': realization_count, - "CoupledAssessment": coupled_EDP - } - }, - "Dependencies": { - "Fragilities": "btw. Performance Groups" - } - } - - # add uncertainty if the EDPs are not coupled - if not coupled_EDP: - loss_dict['ResponseModel'].update({ - "AdditionalUncertainty": { - "GroundMotion": "0.10", - "Modeling" : "0.20" - }}) - - if is_IM_based: - loss_dict.update({ - "ComponentDataFolder": pelicun_path+"/resources/HAZUS_MH_2.1_EQ_eqv_PGA.hdf" - }) - else: - loss_dict['ResponseModel'].update({ - 'DetectionLimits': { - "PFA": "100.0", - "PID": "0.20", - "PRD": "0.20" - }}) - loss_dict.update({ - "ComponentDataFolder": pelicun_path+"/resources/HAZUS_MH_2.1_EQ_story.hdf" - }) - - if 'W1' in bt: - DesignL = ap_DesignLevel_W1 - else: - DesignL = ap_DesignLevel - - for year in sorted(DesignL.keys()): - if year_built <= year: - loss_dict['DamageModel'].update( - {'DesignLevel': DesignL[year]}) - break - - dl = convert_design_level[loss_dict['DamageModel']['DesignLevel']] - if 'C3' in bt: - if dl not in ['LC', 'PC']: - dl = 'LC' - - # only one structural component for IM-based approach - if is_IM_based: - - FG_S = f'S-{bt}-{dl}-{ot}' - - loss_dict.update({ - 'Components': { - FG_S: [ - {'location': '1', - 'direction': '1', - 'median_quantity': '1.0', - 'unit': 'ea', - 'distribution': 'N/A' - }] - }}) - - # story-based approach - else: - - FG_S = f'S-{bt}-{dl}-{ot}' - FG_NSD = f'NSD-{ot}' - FG_NSA = f'NSA-{dl}-{ot}' - - loss_dict.update({ - 'Components': { - FG_S: [ - {'location': 'all', - 'direction': '1, 2', - #'median_quantity': '{q}'.format(q = 0.5), #/stories), - 'median_quantity': '{q}'.format(q = story_scale(stories, 'S')/stories/2.), - 'unit': 'ea', - 'distribution': 'N/A' - }], - FG_NSA: [ - {'location': 'all', - 'direction': '1', - #'median_quantity': '{q}'.format(q = 1.0), #/stories), - 'median_quantity': '{q}'.format(q = story_scale(stories, 'NSA')/stories), - 'unit': 'ea', - 'distribution': 'N/A' - }], - FG_NSD: [ - {'location': 'all', - 'direction': '1, 2', - #'median_quantity': '{q}'.format(q = 0.5), #/stories), - 'median_quantity': '{q}'.format(q = story_scale(stories, 'NSD')/stories/2.), - 'unit': 'ea', - 'distribution': 'N/A' - }] - }}) - - # if damage from ground failure is included - if ground_failure: - - foundation_type = 'S' - - FG_GF_H = f'GF-H_{foundation_type}-{bt}' - FG_GF_V = f'GF-V_{foundation_type}-{bt}' - - loss_dict['Components'].update({ - FG_GF_H: [ - {'location': '1', - 'direction': '1', - 'median_quantity': '1.0', - 'unit': 'ea', - 'distribution': 'N/A' - }], - FG_GF_V: [ - {'location': '1', - 'direction': '3', - 'median_quantity': '1.0', - 'unit': 'ea', - 'distribution': 'N/A' - }] - }) - - # define logic that connects ground failure with building damage - loss_dict.update({ - 'DamageLogic': [ - {'type': 'propagate', - 'source_FG': FG_GF_H, - 'target_FG': FG_S, - 'DS_links': { - '1_1': '3_1', - '2_1': '4_1', - '2_2': '4_2' - } - }, - {'type': 'propagate', - 'source_FG': FG_GF_V, - 'target_FG': FG_S, - 'DS_links': { - '1_1': '3_1', - '2_1': '4_1', - '2_2': '4_2' - } - } - ] - }) - - # HAZUS Hurricane - elif DL_method == 'HAZUS MH HU': - - #TODO: use the HU NJ autopop script by default - pass - - elif DL_method == 'FEMA P58': - if BIM.get('AssetType',None) == 'Water_Pipe': - - material = BIM['Material'] - - if material in ['Asbestos cement', 'Cast iron']: - # brittle material - config = 'P0001a' - else: - # ductile material - config = 'P0001b' - - segment_count = BIM['SegmentCount'] - segment_length = BIM['Segments'][0]['length'] - cg_count = int(segment_length / (100 * ft)) - quantities = '1' - for s in range(1, cg_count): - quantities += ', 1' - - loss_dict = { - "_method" : "FEMA P58", - "ResponseModel" : { - "ResponseDescription": { - "EDP_Distribution" : "empirical", - "Realizations" : "1000", # need to fix this later - "CoupledAssessment": True - } - }, - "DamageModel" : { - "CollapseProbability": { - "Value": "0.0", - }, - }, - "LossModel" : { - "ReplacementCost" : "1", - "ReplacementTime" : "180", - "DecisionVariables": { - "Injuries" : False, - "ReconstructionCost": True, - "ReconstructionTime": True, - "RedTag" : False - }, - }, - "Dependencies" : { - "CostAndTime" : True, - "Fragilities" : "btw. Damage States", - "Quantities" : "Independent", - "ReconstructionCosts": "Independent", - "ReconstructionTimes": "Independent", - }, - "ComponentDataFolder": "c:/Adam/Dropbox/Kutatas/2019 SC Testbeds/Memphis/", - "Components" : { - config: [ - { - "location" : "all", - "direction" : "1", - "median_quantity": quantities, - "unit" : "ea", - "distribution" : "N/A", - } - ], - } - } - - if event_time is not None: - loss_dict['LossModel']['Inhabitants'].update({'EventTime': event_time}) - - DL_input.update({'DamageAndLoss':loss_dict}) - - DL_ap_path = DL_input_path[:-5]+'_ap.json' - - with open(DL_ap_path, 'w') as f: - json.dump(DL_input, f, indent = 2) - - return DL_input, DL_ap_path
-
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/base.html b/docs/_modules/pelicun/base.html deleted file mode 100644 index 642150a05..000000000 --- a/docs/_modules/pelicun/base.html +++ /dev/null @@ -1,575 +0,0 @@ - - - - - - - - - - pelicun.base — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.base
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.base

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-This module defines constants, basic classes and methods for pelicun.
-
-"""
-
-import os, sys, time
-import warnings
-from datetime import datetime
-from time import strftime
-from copy import deepcopy
-
-# import libraries for other modules
-import numpy as np
-import pandas as pd
-
-idx = pd.IndexSlice
-
-# set printing options
-import pprint
-pp = pprint.PrettyPrinter(indent=4, width=300)
-
-pd.options.display.max_rows = 20
-pd.options.display.max_columns = None
-pd.options.display.expand_frame_repr = True
-pd.options.display.width = 300
-
-log_file = None
-
-log_div = '-' * (80-21)  # 21 to have a total length of 80 with the time added
-
-# get the absolute path of the pelicun directory
-pelicun_path = os.path.dirname(os.path.abspath(__file__))
-
-# print a matrix in a nice way using a DataFrame
-def show_matrix(data, describe=False):
-    if describe:
-        pp.pprint(pd.DataFrame(data).describe(percentiles=[0.01,0.1,0.5,0.9,0.99]))
-    else:
-        pp.pprint(pd.DataFrame(data))
-
-# Monkeypatch warnings to get prettier messages
-def _warning(message, category, filename, lineno, file=None, line=None):
-    if '\\' in filename:
-        file_path = filename.split('\\')
-    elif '/' in filename:
-        file_path = filename.split('/')
-    python_file = '/'.join(file_path[-3:])
-    print('WARNING in {} at line {}\n{}\n'.format(python_file, lineno, message))
-warnings.showwarning = _warning
-
-def show_warning(warning_msg):
-    warnings.warn(UserWarning(warning_msg))
-
-def set_log_file(filepath):
-    globals()['log_file'] = filepath
-    with open(filepath, 'w') as f:
-        f.write('pelicun\n')
-
-
[docs]def log_msg(msg='', prepend_timestamp=True): - """ - Print a message to the screen with the current time as prefix - - The time is in ISO-8601 format, e.g. 2018-06-16T20:24:04Z - - Parameters - ---------- - msg: string - Message to print. - - """ - if prepend_timestamp: - formatted_msg = '{} {}'.format(datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%S:%fZ')[:-4], msg) - else: - formatted_msg = msg - - #print(formatted_msg) - - if globals()['log_file'] is not None: - with open(globals()['log_file'], 'a') as f: - f.write('\n'+formatted_msg)
- -def describe(df): - - if isinstance(df, (pd.Series, pd.DataFrame)): - vals = df.values - if isinstance(df, pd.DataFrame): - cols = df.columns - elif df.name is not None: - cols = df.name - else: - cols = 0 - else: - vals = df - cols = np.arange(vals.shape[1]) if vals.ndim > 1 else 0 - - if vals.ndim == 1: - df_10, df_50, df_90 = np.nanpercentile(vals, [10, 50, 90]) - desc = pd.Series({ - 'count': np.sum(~np.isnan(vals)), - 'mean': np.nanmean(vals), - 'std': np.nanstd(vals), - 'min': np.nanmin(vals), - '10%': df_10, - '50%': df_50, - '90%': df_90, - 'max': np.nanmax(vals), - }, name=cols) - else: - df_10, df_50, df_90 = np.nanpercentile(vals, [10, 50, 90], axis=0) - desc = pd.DataFrame({ - 'count': np.sum(~np.isnan(vals), axis=0), - 'mean': np.nanmean(vals, axis=0), - 'std': np.nanstd(vals, axis=0), - 'min': np.nanmin(vals, axis=0), - '10%': df_10, - '50%': df_50, - '90%': df_90, - 'max': np.nanmax(vals, axis=0), - }, index=cols).T - - return desc - -def str2bool(v): - # courtesy of Maxim @ stackoverflow - - if isinstance(v, bool): - return v - if v.lower() in ('yes', 'true', 'True', 't', 'y', '1'): - return True - elif v.lower() in ('no', 'false', 'False', 'f', 'n', '0'): - return False - else: - raise argparse.ArgumentTypeError('Boolean value expected.') - -# Constants for unit conversion - -# time -sec = 1. - -minute = 60. * sec -h = 60. * minute -day = 24. * h - -sec2 = sec**2. - -# distance, area, volume -m = 1. - -mm = 0.001 * m -cm = 0.01 * m -km = 1000. * m - -inch = 0.0254 -ft = 12. * inch -mile = 5280. * ft - -# area -m2 = m**2. - -mm2 = mm**2. -cm2 = cm**2. -km2 = km**2. - -inch2 = inch**2. -ft2 = ft**2. -mile2 = mile**2. - -# volume -m3 = m**3. - -inch3 = inch**3. -ft3 = ft**3. - - -# speed / velocity -cmps = cm / sec -mps = m / sec -mph = mile / h - -inchps = inch / sec -ftps = ft / sec - -# acceleration -mps2 = m / sec2 - -inchps2 = inch / sec2 -ftps2 = ft / sec2 - -g = 9.80665 * mps2 - -# mass -kg = 1. - -ton = 1000. * kg - -lb = 0.453592 * kg - -# force -N = kg * m / sec2 - -kN = 1e3 * N - -lbf = lb * g -kip = 1000. * lbf -kips = kip - -# pressure / stress -Pa = N / m2 - -kPa = 1e3 * Pa -MPa = 1e6 * Pa -GPa = 1e9 * Pa - -psi = lbf / inch2 -ksi = 1e3 * psi -Mpsi = 1e6 * psi - -# misc -A = 1. - -V = 1. -kV = 1000. * V - -ea = 1. - -rad = 1. - -C = 1. - -# FEMA P58 specific -#TODO: work around these and make them available only in the parser methods -EA = ea -SF = ft2 -LF = ft -TN = ton -AP = A -CF = ft3 / minute -KV = kV * A - -
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/control.html b/docs/_modules/pelicun/control.html deleted file mode 100644 index c3472c23c..000000000 --- a/docs/_modules/pelicun/control.html +++ /dev/null @@ -1,4615 +0,0 @@ - - - - - - - - - - pelicun.control — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.control
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.control

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-# Pouria Kourehpaz
-
-"""
-This module has classes and methods that control the performance assessment.
-
-.. rubric:: Contents
-
-.. autosummary::
-
-    Assessment
-    FEMA_P58_Assessment
-    HAZUS_Assessment
-
-"""
-
-from .base import *
-from .uq import *
-from .model import *
-from .file_io import *
-
-
-
[docs]class Assessment(object): - """ - A high-level class that collects features common to all supported loss - assessment methods. This class will only rarely be called directly when - using pelicun. - """ - - def __init__(self, log_file=True): - - # initialize the basic data containers - # inputs - self._AIM_in = None - self._EDP_in = None - self._POP_in = None - self._FG_in = None - - # random variables and loss model - self._RV_reg = RandomVariableRegistry() # object to manage RVs - self._RV_dict = None # dictionary to store random variables - self._EDP_dict = None - self._QNT_dict = None - self._FF_dict = None - self._DSG_dict = None - self._FG_dict = None - self._DV_RED_dict = None - self._DV_REP_dict = None - self._DV_INJ_dict = None - - # results - self._TIME = None - self._POP = None - self._COL = None - self._ID_dict = None - self._DMG = None - self._DV_dict = None - self._SUMMARY = None - - self._assessment_type = 'generic' - - # initialize the log file - if log_file: - set_log_file('pelicun_log.txt') - - log_msg(log_div) - log_msg('Assessement Started') - log_msg(log_div) - - @property - def beta_tot(self): - """ - Calculate the total additional uncertainty for post processing. - - The total additional uncertainty is the squared root of sum of squared - uncertainties corresponding to ground motion and modeling. - - Returns - ------- - beta_total: float - The total uncertainty (logarithmic EDP standard deviation) to add - to the EDP distribution. Returns None if no additional uncertainty - is assigned. - """ - - AU = self._AIM_in['general']['added_uncertainty'] - - beta_total = 0. - if AU['beta_m'] is not None: - beta_total += AU['beta_m'] ** 2. - if AU['beta_gm'] is not None: - beta_total += AU['beta_gm'] ** 2. - - # if no uncertainty is assigned, we return None - if beta_total == 0: - beta_total = None - else: - beta_total = np.sqrt(beta_total) - - return beta_total - -
[docs] def read_inputs(self, path_DL_input, path_EDP_input, verbose=False): - """ - Read and process the input files to describe the loss assessment task. - - Parameters - ---------- - path_DL_input: string - Location of the Damage and Loss input file. The file is expected to - be a JSON with data stored in a standard format described in detail - in the Input section of the documentation. - path_EDP_input: string - Location of the EDP input file. The file is expected to follow the - output formatting of Dakota. The Input section of the documentation - provides more information about the expected formatting. - verbose: boolean, default: False - If True, the method echoes the information read from the files. - This can be useful to ensure that the information in the file is - properly read by the method. - """ - - # read SimCenter inputs ----------------------------------------------- - log_msg(log_div) - log_msg('Reading inputs...') - - # BIM file - log_msg('\tBIM file...') - self._AIM_in = read_SimCenter_DL_input( - path_DL_input, assessment_type=self._assessment_type, - verbose=verbose) - - data = self._AIM_in - - log_msg() - log_msg('\t\tGlobal attributes / settings:') - for att in ['stories', 'coupled_assessment', 'realizations']: - log_msg('\t\t\t{}: {}'.format(att, data['general'][att])) - - log_msg() - log_msg('\t\tPrescribed Decision Variables:') - for dv, val in data['decision_variables'].items(): - if val: - log_msg('\t\t\t{}'.format(dv)) - - log_msg() - log_msg("\t\tDamage and Loss Data Dir:") - log_msg('\t\t\t{}'.format(data['data_sources']['path_CMP_data'])) - - if data['decision_variables']['injuries']: - log_msg() - log_msg("\t\tPopulation Data Dir:") - log_msg('\t\t\t{}'.format(data['data_sources']['path_POP_data'])) - - log_msg() - log_msg('\t\tUnits:') - for dv, val in data['unit_names'].items(): - log_msg('\t\t\t{}: {} ({})'.format(dv, val, data['units'][dv])) - - log_msg() - log_msg('\t\tResponse Model:') - log_msg('\t\t\tDetection Limits:') - for dl_name, dl in data['general']['detection_limits'].items(): - log_msg('\t\t\t\t{}: {}'.format(dl_name, dl)) - for att, val in data['general']['response'].items(): - log_msg() - log_msg('\t\t\t{}: {}'.format(att, val)) - log_msg() - log_msg('\t\t\tAdditional Uncertainty:') - for att, val in data['general']['added_uncertainty'].items(): - log_msg('\t\t\t\t{}: {}'.format(att, val)) - - log_msg() - log_msg('\t\tPerformance Model:') - log_msg('\t\t\t\tloc\tdir\tqnt\tdist\tcov\tcgw') - for comp_id, comp_data in data['components'].items(): - log_msg('\t\t{} [{}]:'.format(comp_id, comp_data['unit'])) - if False: #TODO: control this with a verbose flag - for i in range(len(comp_data['locations'])): - log_msg('\t\t\t\t{}\t{}\t{}\t{}\t{}\t{}'.format(*[comp_data[att][i] for att in ['locations', 'directions', 'quantities', 'distribution', 'cov', 'csg_weights']])) - - log_msg() - log_msg('\t\tDamage Model:') - if self._assessment_type == 'P58': - log_msg('\t\t\tCollapse Limits:') - for cl_name, cl in data['general']['collapse_limits'].items(): - log_msg('\t\t\t\t{}: {}'.format(cl_name, cl)) - log_msg() - log_msg('\t\t\tIrreparable Residual Drift:') - if 'irreparable_res_drift' in data['general']: - for att, val in data['general']['irreparable_res_drift'].items(): - log_msg('\t\t\t\t{}: {}'.format(att, val)) - else: - log_msg('\t\t\t\tnot considered') - log_msg() - log_msg('\t\t\tCollapse Probability:') - if data['general']['response']['coll_prob'] == 'estimated': - log_msg('\t\t\t\tEstimated based on {}'.format(data['general']['response']['CP_est_basis'])) - else: - log_msg('\t\t\t\tPrescribed: {}'.format(data['general']['response']['coll_prob'])) - - log_msg() - log_msg('\t\tLoss Model:') - for att in ['replacement_cost', 'replacement_time', 'population']: - if att in data['general'].keys(): - log_msg('\t\t\t{}: {}'.format(att, data['general'][att])) - - log_msg() - log_msg('\t\tCollapse Modes:') - for cmode, cmode_data in data['collapse_modes'].items(): - log_msg('\t\t\t{}'.format(cmode)) - for att, val in cmode_data.items(): - log_msg('\t\t\t {}: {}'.format(att, val)) - - log_msg() - log_msg('\t\tDependencies:') - for att, val in data['dependencies'].items(): - log_msg('\t\t\t{}: {}'.format(att, val)) - - # EDP file - log_msg('\tEDP file...') - if self._hazard == 'EQ': - self._EDP_in = read_SimCenter_EDP_input( - path_EDP_input, - EDP_kinds=('PID', 'PRD', 'RID', 'PFA', 'PMD', - 'PGA', 'PGV', 'SA', 'SV', 'SD', - 'PGD','DWD', 'RDR'), - units=dict(PID=1., - PRD=1., - RID=1., - DWD=1., - RDR=1., - PFA=self._AIM_in['units']['acceleration'], - PMD=1., - PGA=self._AIM_in['units']['acceleration'], - PGV=self._AIM_in['units']['speed'], - SA =self._AIM_in['units']['acceleration'], - SV =self._AIM_in['units']['speed'], - SD =self._AIM_in['units']['length'], - PGD = self._AIM_in['units']['length']), - verbose=verbose) - elif self._hazard == 'HU': - self._EDP_in = read_SimCenter_EDP_input( - path_EDP_input, EDP_kinds=('PWS',), - units=dict(PWS=self._AIM_in['units']['speed']), - verbose=verbose) - - data = self._EDP_in - - log_msg('\t\tEDP types:') - for EDP_kind in data.keys(): - log_msg('\t\t\t{}'.format(EDP_kind)) - for EDP_data in data[EDP_kind]: - if False: #TODO: control this with a verbose flag - log_msg('\t\t\t\t{} {}'.format(EDP_data['location'], EDP_data['direction'])) - - log_msg() - log_msg('\t\tnumber of samples: {}'.format(len(data[list(data.keys())[0]][0]['raw_data'])))
- -
[docs] def define_random_variables(self): - """ - Define the random variables used for loss assessment. - - """ - log_msg(log_div) - log_msg('Defining random variables...')
- -
[docs] def define_loss_model(self): - """ - Create the stochastic loss model based on the inputs provided earlier. - - """ - log_msg(log_div) - log_msg('Creating the damage and loss model...')
- -
[docs] def calculate_damage(self): - """ - Characterize the damage experienced in each random event realization. - - """ - log_msg(log_div) - log_msg('Calculating damage...') - self._ID_dict = {}
- -
[docs] def calculate_losses(self): - """ - Characterize the consequences of damage in each random event realization. - - """ - log_msg(log_div) - log_msg('Calculating losses...') - self._DV_dict = {}
- -
[docs] def save_outputs(self, output_path, EDP_file, DM_file, DV_file, - suffix="", detailed_results=True): - """ - Export the results. - - """ - def replace_FG_IDs_with_FG_names(df): - FG_list = sorted(self._FG_dict.keys()) - new_col_names = dict( - (fg_id, fg_name) for (fg_id, fg_name) in - zip(np.arange(1, len(FG_list) + 1), FG_list)) - - return df.rename(columns=new_col_names) - - log_msg(log_div) - log_msg('Saving outputs...') - - log_msg('\tConverting EDP samples to input units...') - EDPs = sorted(self._EDP_dict.keys()) - EDP_samples = pd.DataFrame({edp: self._EDP_dict[edp].samples for edp in EDPs}) - #EDP_samples = self._EDP_dict[EDPs[0]].samples_DF.copy() - cols = EDP_samples.columns - col_info = [col.split('-') for col in cols] - EDP_samples.columns = [ - '1-{}-{}-{}'.format(col[1], col[3], col[5]) for col in col_info] - - # TODO: use some global vars to identify EDP units because this is a mess - for col_i, col in enumerate(cols): - if ('PFA' in col) or ('PGA' in col) or ('SA' in col): - scale_factor = self._AIM_in['units']['acceleration'] - elif (('PFV' in col) or ('PGV' in col) or ('SV' in col) or - ('PWS' in col)): - scale_factor = self._AIM_in['units']['speed'] - elif ('PGD' in col): - scale_factor = self._AIM_in['units']['length'] - else: - scale_factor = 1.0 - - if scale_factor != 1.0: - EDP_samples.iloc[:, col_i] = EDP_samples.iloc[:, col_i].div(scale_factor) - - log_msg('\tConverting damaged quantities to input units...') - DMG_scaled = self._DMG.copy() - cols = DMG_scaled.columns.get_level_values(0) - FG_list = sorted(self._FG_dict.keys()) - for col_i, col in enumerate(cols): - FG_name = FG_list[col-1] - scale_factor = self._FG_dict[FG_name]._unit - if scale_factor != 1.0: - DMG_scaled.iloc[:,col_i] = DMG_scaled.iloc[:,col_i].div(scale_factor) - - log_msg('\tReplacing headers with FG names...') - DMG_mod = replace_FG_IDs_with_FG_names(DMG_scaled) - DV_mods, DV_names = [], [] - for key in self._DV_dict.keys(): - if key != 'injuries': - DV_mods.append(replace_FG_IDs_with_FG_names(self._DV_dict[key])) - DV_names.append('{}DV_{}'.format(suffix, key)) - else: - for i in range(2 if self._assessment_type == 'P58' else 4): - DV_mods.append(replace_FG_IDs_with_FG_names(self._DV_dict[key][i])) - DV_names.append('{}DV_{}_{}'.format(suffix, key, i+1)) - - try: - #if True: - log_msg('\tSaving files:') - - log_msg('\t\tSummary') - write_SimCenter_DL_output( - output_path, '{}DL_summary.csv'.format(suffix), - self._SUMMARY, index_name='#Num', collapse_columns=True) - - if not detailed_results: - log_msg('\t\tOnly saving the main results.') - else: - log_msg('\t\tSummary statistics') - write_SimCenter_DL_output( - output_path, '{}DL_summary_stats.csv'.format(suffix), - self._SUMMARY, index_name='attribute', collapse_columns=True, - stats_only=True) - - log_msg('\t\tEDP values') - write_SimCenter_DL_output( - output_path, '{}EDP_.csv'.format(suffix), - EDP_samples, index_name='#Num', - collapse_columns=False) - - log_msg('\t\tEDP statistics') - write_SimCenter_DL_output( - output_path, '{}EDP_stats.csv'.format(suffix), - EDP_samples, index_name='#Num', - collapse_columns=False, stats_only=True) - - log_msg('\t\tDamaged quantities') - write_SimCenter_DL_output( - output_path, '{}DMG.csv'.format(suffix), - DMG_mod, index_name='#Num', collapse_columns=False) - - log_msg('\t\tDamage statistics') - write_SimCenter_DL_output( - output_path, '{}DMG_stats.csv'.format(suffix), - DMG_mod, index_name='#Num', - collapse_columns=False, stats_only=True) - - log_msg('\t\tDamaged quantities - aggregated') - write_SimCenter_DL_output( - output_path, '{}DMG_agg.csv'.format(suffix), - DMG_mod.T.groupby(level=0).aggregate(np.sum).T, - index_name='#Num', collapse_columns=False) - - for DV_mod, DV_name in zip(DV_mods, DV_names): - log_msg('\t\tDecision variable {}'.format(DV_name)) - write_SimCenter_DL_output( - output_path, '{}{}.csv'.format(suffix, DV_name), - DV_mod, index_name='#Num', collapse_columns=False) - - DV_mod_agg = DV_mod.T.groupby(level=0).aggregate(np.sum).T - - log_msg('\t\tDecision variable {} - aggregated'.format(DV_name)) - write_SimCenter_DL_output( - output_path, '{}{}_agg.csv'.format(suffix, DV_name), - DV_mod_agg, index_name='#Num', collapse_columns=False) - - log_msg('\t\tAggregated statistics for {}'.format(DV_name)) - write_SimCenter_DL_output( - output_path, '{}{}_agg_stats.csv'.format(suffix, DV_name), - DV_mod_agg, index_name='#Num', collapse_columns=False, - stats_only=True) - - #if True: - # create the EDP file - if self._assessment_type.startswith('HAZUS'): - log_msg('\t\tSimCenter EDP file') - write_SimCenter_EDP_output( - output_path, suffix + EDP_file, - EDP_samples) - - # create the DM file - if self._assessment_type.startswith('HAZUS'): - log_msg('\t\tSimCenter DM file') - write_SimCenter_DM_output( - output_path, suffix+DM_file, self._SUMMARY, - DMG_mod) - - # create the DV file - if self._assessment_type.startswith('HAZUS'): - log_msg('\t\tSimCenter DV file') - write_SimCenter_DV_output( - output_path, suffix+DV_file, self._AIM_in['general'], - self._SUMMARY, dict(zip(DV_names, DV_mods))) - - except: - print("ERROR when trying to create DL output files.")
- - def _create_RV_demands(self): - - # Unlike other random variables, the demand RV is based on raw data. - - # First, collect the raw values from the EDP dict... - demand_data = [] - d_tags = [] - detection_limits = [] - collapse_limits = [] - GI = self._AIM_in['general'] - s_edp_keys = sorted(self._EDP_in.keys()) - - for d_id in s_edp_keys: - d_list = self._EDP_in[d_id] - for i in range(len(d_list)): - demand_data.append(d_list[i]['raw_data']) - d_tags.append(f"EDP-{d_id}-LOC-{d_list[i]['location']}" + - f"-DIR-{d_list[i]['direction']}") - - det_lim = GI['detection_limits'].get(d_id, None) - if det_lim is None: - det_lim = np.inf - - if GI['response']['EDP_dist_basis'] == 'non-collapse results': - coll_lim = GI['collapse_limits'][d_id] - if coll_lim is None: - coll_lim = np.inf - elif GI['response']['EDP_dist_basis'] == 'all results': - coll_lim = np.inf - - detection_limits.append([None, det_lim]) - collapse_limits.append([None, coll_lim]) - - # detection_limits = np.transpose(np.asarray(detection_limits)) - # collapse_limits = np.transpose(np.asarray(collapse_limits)) - # demand_data = np.transpose(np.asarray(demand_data)) - detection_limits = np.asarray(detection_limits) - collapse_limits = np.asarray(collapse_limits) - demand_data = np.atleast_2d(demand_data) - - # In a coupled assessment only the raw data needs to be stored - if GI['coupled_assessment']: - - # Create the random variable - # demand_RV = RandomVariable(ID=200, dimension_tags=d_tags, - # raw_data=np.transpose(demand_data)) - [self._RV_reg.add_RV( - RandomVariable(name=d_tag, distribution='coupled_empirical', - raw_samples=demand_data[i])) - for i,d_tag in enumerate(d_tags)] - - # Otherwise, a distribution is fit to the raw data - else: - # If more than one sample is available... - if demand_data.shape[1] > 1: - - # Second, we discard the collapsed EDPs if the fitted - # distribution shall represent non-collapse EDPs. - demand_data_T = demand_data.T - # EDP_filter = np.all( - # [np.all(demand_data_T > collapse_limits.T[0], axis=1), - # np.all(demand_data_T < collapse_limits.T[1], axis=1)], axis=0) - EDP_filter = np.all(demand_data_T < collapse_limits.T[1], axis=1) - demand_data_T = demand_data_T[EDP_filter] - - log_msg( - '\t\t{} considered collapsed out of {} raw samples'.format( - list(EDP_filter).count(False), len(EDP_filter))) - - # Third, we censor the EDPs that are beyond the detection limit. - # EDP_filter = np.all( - # [np.all(demand_data_T > detection_limits.T[0], axis=1), - # np.all(demand_data_T < detection_limits.T[1], axis=1)], axis=0) - EDP_filter = np.all(demand_data_T < detection_limits.T[1], axis=1) - - log_msg( - '\t\t{} are beyond the detection limits out of {} ' - 'non-collapse samples'.format( - list(EDP_filter).count(False), len(EDP_filter))) - - censored_count = len(EDP_filter) - sum(EDP_filter) - demand_data_T = demand_data_T[EDP_filter] - demand_data = demand_data_T.T - - log_msg('\t\tNumber of EDP dimensions: {}'.format(len(d_tags))) - - # Fourth, if requested, we fit a multivariate lognormal - # distribution to the data and create the random variables - target_dist = GI['response']['EDP_distribution'] - - if target_dist == 'lognormal': - if censored_count > 0: - log_msg('\t\tFitting a censored multivariate lognormal ' - 'distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'lognormal', - censored_count = censored_count, - detection_limits = detection_limits) - - else: - log_msg('\t\tFitting a multivariate lognormal ' - 'distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'lognormal') - - # Create the RVs - for d, (d_tag, theta_d) in enumerate( - zip(d_tags, EDP_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='lognormal', - theta=theta_d - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'EDP_set', list(self._RV_reg.RVs(d_tags).values()), - EDP_rho)) - - elif target_dist == 'truncated lognormal': - if censored_count > 0: - log_msg('\t\tFitting a censored truncated multivariate ' - 'lognormal distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'lognormal', - truncation_limits=collapse_limits) - else: - log_msg('\t\tFitting a truncated multivariate ' - 'lognormal distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'lognormal', - truncation_limits=collapse_limits) - - # Create the RVs - for d, (d_tag, theta_d) in enumerate( - zip(d_tags, EDP_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='lognormal', - theta=theta_d, - truncation_limits=collapse_limits[d] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'EDP_set', list(self._RV_reg.RVs(d_tags).values()), - EDP_rho)) - - else: # this is when fitting is not requested (i.e. empirical) - [self._RV_reg.add_RV( - RandomVariable(name=d_tag, - distribution='empirical', - raw_samples=demand_data[i])) - for i, d_tag in enumerate(d_tags)] - - # demand_RV = RandomVariable(ID=200, dimension_tags=d_tags, - # raw_data=demand_data, - # detection_limits=detection_limits, - # censored_count=censored_count - # ) - - # This is a special case when only a one sample is provided. - else: - # TODO: what to do when the sample is larger than the collapse or detection limit and when truncated distribution is prescribed - - # Since we only have one data point, the best we can do is assume - # it is the median of the multivariate distribution. The dispersion - # is assumed to be negligible. - - # dim = demand_data.shape[0] - # if dim > 1: - # sig = np.abs(demand_data.T[0])*1e-6 - # rho = np.zeros((dim,dim)) - # np.fill_diagonal(rho, 1.0) - # else: - # COV = np.abs(demand_data[0][0])*(1e-6)**2.0 - - [self._RV_reg.add_RV( - RandomVariable(name=d_tag, distribution='lognormal', - theta=[demand_data[i,0], - demand_data[i,0]*1e-6])) - for i, d_tag in enumerate(d_tags)] - - # demand_RV = RandomVariable(ID=200, dimension_tags=d_tags, - # distribution_kind='lognormal', - # theta=demand_data[0], - # COV=COV) - - # To consider additional uncertainty in EDPs, we need to increase - # the log standard deviation of the lognormal RVs. If the EDP - # distribution is set to 'empirical' then we do not consider the - # prescribed additional uncertainty - if ((self.beta_tot is not None) and - (GI['response']['EDP_distribution'] != 'empirical')): - log_msg('Considering additional sources of uncertainty...') - - for d_tag in d_tags: - RV = self._RV_reg.RV[d_tag] - - theta_0 = RV.theta - theta_0[1] = np.sqrt(theta_0[1] ** 2. + self.beta_tot ** 2.) - RV.theta = theta_0 - - # determine the covariance matrix with added uncertainty - # if demand_RV.COV.shape != (): - # sig_mod = np.sqrt(demand_RV.sig ** 2. + self.beta_tot ** 2.) - # COV_mod = np.outer(sig_mod, sig_mod) * demand_RV.corr - # else: - # COV_mod = np.sqrt(demand_RV.COV**2. + self.beta_tot**2.) - # - # # redefine the random variable - # demand_RV = RandomVariable( - # ID=200, - # dimension_tags=demand_RV.dimension_tags, - # distribution_kind=demand_RV.distribution_kind, - # theta=demand_RV.theta, - # COV=COV_mod, - # truncation_limits=demand_RV.tr_limits_pre) - - return d_tags
- - -
[docs]class FEMA_P58_Assessment(Assessment): - """ - An Assessment class that implements the loss assessment method in FEMA P58. - """ - def __init__(self, inj_lvls = 2, log_file=True): - super(FEMA_P58_Assessment, self).__init__(log_file) - - # constants for the FEMA-P58 methodology - self._inj_lvls = inj_lvls - self._hazard = 'EQ' - self._assessment_type = 'P58' - - log_msg('type: FEMA P58 Assessment') - log_msg('hazard: {}'.format(self._hazard)) - log_msg(log_div) - -
[docs] def read_inputs(self, path_DL_input, path_EDP_input, verbose=False): - """ - Read and process the input files to describe the loss assessment task. - - Parameters - ---------- - path_DL_input: string - Location of the Damage and Loss input file. The file is expected to - be a JSON with data stored in a standard format described in detail - in the Input section of the documentation. - path_EDP_input: string - Location of the EDP input file. The file is expected to follow the - output formatting of Dakota. The Input section of the documentation - provides more information about the expected formatting. - verbose: boolean, default: False - If True, the method echoes the information read from the files. - This can be useful to ensure that the information in the file is - properly read by the method. - - """ - - super(FEMA_P58_Assessment, self).read_inputs(path_DL_input, - path_EDP_input, verbose) - - # assume that the asset is a building - # TODO: If we want to apply FEMA-P58 to non-building assets, several parts of this methodology need to be extended. - BIM = self._AIM_in - - # read component and population data ---------------------------------- - # components - log_msg('\tDamage and Loss data files...') - self._FG_in = read_component_DL_data( - self._AIM_in['data_sources']['path_CMP_data'], - BIM['components'], - assessment_type=self._assessment_type, verbose=verbose) - - data = self._FG_in - - log_msg('\t\tAvailable Fragility Groups:') - for key, val in data.items(): - log_msg('\t\t\t{} demand:{} PGs: {}'.format(key, val['demand_type'], len(val['locations']))) - - # population (if needed) - if self._AIM_in['decision_variables']['injuries']: - - if BIM['general']['event_time'] is None: - log_msg('\tPopulation data files...') - POP = read_population_distribution( - self._AIM_in['data_sources']['path_POP_data'], - BIM['general']['occupancy_type'], - assessment_type=self._assessment_type, - verbose=verbose) - else: - POP = {'peak': None} - - POP['peak'] = BIM['general']['population'] - self._POP_in = POP
- -
[docs] def define_random_variables(self): - """ - Define the random variables used for loss assessment. - - Following the FEMA P58 methodology, the groups of parameters below are - considered random. Simple correlation structures within each group can - be specified through the DL input file. The random decision variables - are only created and used later if those particular decision variables - are requested in the input file. - - 1. Demand (EDP) distribution - - Describe the uncertainty in the demands. Unlike other random variables, - the EDPs are characterized by the EDP input data provided earlier. All - EDPs are handled in one multivariate lognormal distribution. If more - than one sample is provided, the distribution is fit to the EDP data. - Otherwise, the provided data point is assumed to be the median value - and the additional uncertainty prescribed describes the dispersion. See - _create_RV_demands() for more details. - - 2. Component quantities - - Describe the uncertainty in the quantity of components in each - Performance Group. All Fragility Groups are handled in the same - multivariate distribution. Consequently, correlation between various - groups of component quantities can be specified. See - _create_RV_quantities() for details. - - 3. Fragility EDP limits - - Describe the uncertainty in the EDP limit that corresponds to - exceedance of each Damage State. EDP limits are grouped by Fragility - Groups. Consequently, correlation between fragility limits are - currently limited within Fragility Groups. See - _create_RV_fragilities() for details. - - 4. Reconstruction cost and time - - Describe the uncertainty in the cost and duration of reconstruction of - each component conditioned on the damage state of the component. All - Fragility Groups are handled in the same multivariate distribution. - Consequently, correlation between various groups of component - reconstruction time and cost estimates can be specified. See - _create_RV_repairs() for details. - - 5. Damaged component proportions that trigger a red tag - - Describe the uncertainty in the amount of damaged components needed to - trigger a red tag for the building. All Fragility Groups are handled in - the same multivariate distribution. Consequently, correlation between - various groups of component proportion limits can be specified. See - _create_RV_red_tags() for details. - - 6. Injuries - - Describe the uncertainty in the proportion of people in the affected - area getting injuries exceeding a certain level of severity. FEMA P58 - uses two severity levels: injury and fatality. Both levels for all - Fragility Groups are handled in the same multivariate distribution. - Consequently, correlation between various groups of component injury - expectations can be specified. See _create_RV_injuries() for details. - """ - super(FEMA_P58_Assessment, self).define_random_variables() - - # create the random variables ----------------------------------------- - DEP = self._AIM_in['dependencies'] - - self._RV_dict = {} - - # quantities 100 - log_msg('\tQuantities...') - QNT_tags = self._create_RV_quantities(DEP['quantities']) - - # self._RV_dict.update({'QNT': - # self._create_RV_quantities(DEP['quantities'])}) - - if QNT_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(QNT_tags))) - self._QNT_dict = self._RV_reg.RVs(QNT_tags) - else: - log_msg('\t\tNone of the components have random quantities assigned') - - # fragilities 300 - log_msg('\tDamage State Limits...') - s_fg_keys = sorted(self._FG_in.keys()) - self._FF_dict = {} - log_msg('\t\tRV dimensions:') - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - FF_tags = self._create_RV_fragilities(c_id, comp, DEP['fragilities']) - self._FF_dict.update(self._RV_reg.RVs(FF_tags)) - - # self._RV_dict.update({ - # 'FR-' + c_name: - # self._create_RV_fragilities(c_id, comp, - # DEP['fragilities'])}) - log_msg('\t\t\t{}: {}'.format(c_name, len(FF_tags))) - - - # for key, val in self._RV_dict.items(): - # if 'FR-' in key: - # log_msg('\t\t\t{}: {}'.format(key, len(val.theta))) - - # irreparability - if 'irreparable_res_drift' in self._AIM_in['general']: - irrep_frag = self._AIM_in['general']['irreparable_res_drift'] - RV_irrep = RandomVariable( - name='RED_irrep', distribution='lognormal', - theta=[irrep_frag['Median'], irrep_frag['Beta']]) - self._RV_reg.add_RV(RV_irrep) - - # collapse modes - coll_modes = self._AIM_in['collapse_modes'] - P_keys = [cmk for cmk in coll_modes.keys()] - P_modes = [coll_modes[k]['w'] for k in P_keys] - RV_CM = RandomVariable( - name='CM', distribution='multinomial', theta=P_modes) - self._RV_reg.add_RV(RV_CM) - - # damages (mutually exclusive cases and later simultaneous ones too) - log_msg('\tDamage States...') - DS_tags = self._create_RV_damage_states() - - if DS_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(DS_tags))) - self._DSG_dict = self._RV_reg.RVs(DS_tags) - else: - log_msg('\t\tNone of the components have random damage states assigned') - - # consequences 400 - DVs = self._AIM_in['decision_variables'] - - if DVs['red_tag']: - log_msg('\tRed Tag Thresholds...') - RED_tags = self._create_RV_red_tags(DEP['red_tags']) - - # self._RV_dict.update({'DV_RED': - # self._create_RV_red_tags(DEP['red_tags'])}) - - if RED_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(RED_tags))) - self._DV_RED_dict = self._RV_reg.RVs(RED_tags) - else: - log_msg('\t\tNone of the component damage states trigger red tags') - - if DVs['rec_time'] or DVs['rec_cost']: - log_msg('\tReconstruction Costs and Times...') - REP_tags = self._create_RV_repairs( - DEP['rec_costs'], DEP['rec_times'], DEP['cost_and_time']) - - # self._RV_dict.update({'DV_REP': - # self._create_RV_repairs( - # DEP['rec_costs'], - # DEP['rec_times'], - # DEP['cost_and_time'])}) - - if REP_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(REP_tags))) - self._DV_REP_dict = self._RV_reg.RVs(REP_tags) - else: - log_msg('\t\tNone of the components have probabilistic consequence functions') - - - if DVs['injuries']: - log_msg('\tInjury Probabilities...') - INJ_tags = self._create_RV_injuries( - DEP['injuries'], DEP['injury_lvls']) - - # self._RV_dict.update({'DV_INJ': - # self._create_RV_injuries( - # DEP['injuries'], - # DEP['injury_lvls'])}) - - if INJ_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(INJ_tags))) - self._DV_INJ_dict = self._RV_reg.RVs(INJ_tags) - else: - log_msg('\t\tNone of the component damage states trigger injuries') - - # demands 200 - log_msg('\tEDPs...') - - GR = self._AIM_in['general']['response'] - if GR['EDP_dist_basis'] == 'non-collapse results': - discard_limits = self._AIM_in['general']['collapse_limits'] - else: - discard_limits = None - - EDP_tags = self._create_RV_demands() - self._EDP_dict = self._RV_reg.RVs(EDP_tags) - #self._RV_dict.update({'EDP': self._create_RV_demands()}) - - # sample the random variables ----------------------------------------- - log_msg() - log_msg('Sampling the random variables...') - - realization_count = self._AIM_in['general']['realizations'] - - self._RV_reg.generate_samples(sample_size=realization_count) - - # is_coupled = self._AIM_in['general']['coupled_assessment'] - # - # s_rv_keys = sorted(self._RV_dict.keys()) - # for r_i in s_rv_keys: - # rv = self._RV_dict[r_i] - # if rv is not None: - # log_msg('\t{}...'.format(r_i)) - # rv.sample_distribution( - # sample_size=realization_count, - # preserve_order=((r_i=='EDP') and is_coupled)) - - log_msg('Sampling completed.')
- -
[docs] def define_loss_model(self): - """ - Create the stochastic loss model based on the inputs provided earlier. - - Following the FEMA P58 methodology, the components specified in the - Damage and Loss input file are used to create Fragility Groups. Each - Fragility Group corresponds to a component that might be present in - the building at several locations. See _create_fragility_groups() for - more details about the creation of Fragility Groups. - - """ - super(FEMA_P58_Assessment, self).define_loss_model() - - # fragility groups - self._FG_dict = self._create_fragility_groups()
- - # demands - # self._EDP_dict = dict( - # [(tag, RandomVariableSubset(self._RV_dict['EDP'],tags=tag)) - # for tag in self._RV_dict['EDP']._dimension_tags]) - -
[docs] def calculate_damage(self): - """ - Characterize the damage experienced in each random event realization. - - First, the time of the event (month, weekday/weekend, hour) is randomly - generated for each realization. Given the event time, the number of - people present at each floor of the building is calculated. - - Second, the realizations that led to collapse are filtered. See - _calc_collapses() for more details on collapse estimation. - - Finally, the realizations that did not lead to building collapse are - further investigated and the quantities of components in each damage - state are estimated. See _calc_damage() for more details on damage - estimation. - - """ - super(FEMA_P58_Assessment, self).calculate_damage() - - # event time - month, weekday, and hour realizations - log_msg('\tSampling event time...') - self._TIME = self._sample_event_time() - - # get the population conditioned on event time (if needed) - if self._AIM_in['decision_variables']['injuries']: - log_msg('\tSampling the population...') - self._POP = self._get_population() - - # collapses - log_msg('\tCalculating the number of collapses...') - self._COL, collapsed_IDs = self._calc_collapses() - self._ID_dict.update({'collapse':collapsed_IDs}) - log_msg('\t\t{} out of {} collapsed.'.format( - len(collapsed_IDs), - self._AIM_in['general']['realizations'])) - - # select the non-collapse cases for further analyses - non_collapsed_IDs = self._TIME[ - ~self._TIME.index.isin(collapsed_IDs)].index.values.astype(int) - self._ID_dict.update({'non-collapse': non_collapsed_IDs}) - - # damage in non-collapses - log_msg('\tCalculating the damage in the non-collapsed cases...') - self._DMG = self._calc_damage()
- -
[docs] def calculate_losses(self): - """ - Characterize the consequences of damage in each random event realization. - - For the sake of efficiency, only the decision variables requested in - the input file are estimated. The following consequences are handled by - this method: - - Reconstruction time and cost - Estimate the irreparable cases based on residual drift magnitude and - the provided irreparable drift limits. Realizations that led to - irreparable damage or collapse are assigned the replacement cost and - time of the building when reconstruction cost and time is estimated. - Repairable cases get a cost and time estimate for each Damage State in - each Performance Group. For more information about estimating - irreparability see _calc_irreparable() and reconstruction cost and - time see _calc_repair_cost_and_time() methods. - - Injuries - Collapse-induced injuries are based on the collapse modes and - corresponding injury characterization. Injuries conditioned on no - collapse are based on the affected area and the probability of - injuries of various severity specified in the component data file. For - more information about estimating injuries conditioned on collapse and - no collapse, see _calc_collapse_injuries() and - _calc_non_collapse_injuries, respectively. - - Red Tag - The probability of getting an unsafe placard or red tag is a function - of the amount of damage experienced in various Damage States for each - Performance Group. The damage limits that trigger an unsafe placard are - specified in the component data file. For more information on - assigning red tags to realizations see the _calc_red_tag() method. - - """ - super(FEMA_P58_Assessment, self).calculate_losses() - DVs = self._AIM_in['decision_variables'] - - # red tag probability - if DVs['red_tag']: - log_msg('\tAssigning Red Tags...') - DV_RED = self._calc_red_tag() - - self._DV_dict.update({'red_tag': DV_RED}) - - # reconstruction cost and time - if DVs['rec_cost'] or DVs['rec_time']: - # irreparable cases - if 'irreparable_res_drift' in self._AIM_in['general']: - log_msg('\tIdentifying Irreparable Cases...') - irreparable_IDs = self._calc_irreparable() - log_msg('\t\t{} out of {} non-collapsed cases are irreparable.'.format( - len(irreparable_IDs), len(self._ID_dict['non-collapse']))) - else: - irreparable_IDs = np.array([]) - - # collect the IDs of repairable realizations - P_NC = self._TIME.loc[self._ID_dict['non-collapse']] - repairable_IDs = P_NC[ - ~P_NC.index.isin(irreparable_IDs)].index.values.astype(int) - - self._ID_dict.update({'repairable': repairable_IDs}) - self._ID_dict.update({'irreparable': irreparable_IDs}) - - # reconstruction cost and time for repairable cases - log_msg('\tCalculating Reconstruction cost and time...') - DV_COST, DV_TIME = self._calc_repair_cost_and_time() - - if DVs['rec_cost']: - self._DV_dict.update({'rec_cost': DV_COST}) - - if DVs['rec_time']: - self._DV_dict.update({'rec_time': DV_TIME}) - - # injuries due to collapse - if DVs['injuries']: - log_msg('\tCalculating Injuries in Collapsed Cases...') - COL_INJ = self._calc_collapse_injuries() - - # injuries in non-collapsed cases - log_msg('\tCalculating Injuries in Non-Collapsed Cases...') - DV_INJ_dict = self._calc_non_collapse_injuries() - - # store results - if COL_INJ is not None: - self._COL = pd.concat([self._COL, COL_INJ], axis=1) - - self._DV_dict.update({'injuries': DV_INJ_dict})
- -
[docs] def aggregate_results(self): - """ - - Returns - ------- - - """ - - log_msg(log_div) - log_msg('Aggregating results...') - - DVs = self._AIM_in['decision_variables'] - - MI_raw = [ - ('inhabitants', ''), - ('collapses', 'collapsed'), - ('collapses', 'mode'), - ('red tagged', ''), - ('reconstruction', 'irreparable'), - ('reconstruction', 'cost impractical'), - ('reconstruction', 'cost'), - ('reconstruction', 'time impractical'), - ('reconstruction', 'time-sequential'), - ('reconstruction', 'time-parallel'), - ('injuries', 'sev1'), # thanks, Laura S.! - ('injuries', 'sev2'), - ] - - if self._AIM_in['general'].get('event_time', None) != 'off': - MI_raw += [ - ('event time', 'month'), - ('event time', 'weekday?'), - ('event time', 'hour') - ] - - ncID = self._ID_dict['non-collapse'] - colID = self._ID_dict['collapse'] - if DVs['rec_cost'] or DVs['rec_time']: - repID = self._ID_dict['repairable'] - irID = self._ID_dict['irreparable'] - - MI = pd.MultiIndex.from_tuples(MI_raw) - - SUMMARY = pd.DataFrame(np.empty(( - self._AIM_in['general']['realizations'], - len(MI))), columns=MI) - SUMMARY[:] = np.NaN - - # event time (if needed) - if self._AIM_in['general'].get('event_time', None) != 'off': - for prop in ['month', 'weekday?', 'hour']: - offset = 0 - if prop == 'month': - offset = 1 - SUMMARY.loc[:, ('event time', prop)] = \ - self._TIME.loc[:, prop] + offset - - # collapses - SUMMARY.loc[:, ('collapses', 'collapsed')] = self._COL.iloc[:, 0] - - # red tag - if DVs['red_tag']: - SUMMARY.loc[ncID, ('red tagged', '')] = \ - self._DV_dict['red_tag'].max(axis=1) - - # reconstruction cost - if DVs['rec_cost']: - SUMMARY.loc[ncID, ('reconstruction', 'cost')] = \ - self._DV_dict['rec_cost'].sum(axis=1) - - repl_cost = self._AIM_in['general']['replacement_cost'] - SUMMARY.loc[colID, ('reconstruction', 'cost')] = repl_cost - - if DVs['rec_cost'] or DVs['rec_time']: - SUMMARY.loc[ncID, ('reconstruction', 'irreparable')] = 0 - SUMMARY.loc[irID, ('reconstruction', 'irreparable')] = 1 - - if DVs['rec_cost']: - SUMMARY.loc[irID, ('reconstruction', 'cost')] = repl_cost - - repair_impractical_IDs = SUMMARY.loc[ - SUMMARY.loc[:, ('reconstruction', 'cost')] > repl_cost].index - SUMMARY.loc[repID, ('reconstruction', 'cost impractical')] = 0 - SUMMARY.loc[repair_impractical_IDs, - ('reconstruction', 'cost impractical')] = 1 - SUMMARY.loc[ - repair_impractical_IDs, ('reconstruction', 'cost')] = repl_cost - - # reconstruction time - if DVs['rec_time']: - SUMMARY.loc[ncID, ('reconstruction', 'time-sequential')] = \ - self._DV_dict['rec_time'].sum(axis=1) - SUMMARY.loc[ncID, ('reconstruction', 'time-parallel')] = \ - self._DV_dict['rec_time'].max(axis=1) - - rep_time = self._AIM_in['general']['replacement_time'] - - for t_label in ['time-sequential', 'time-parallel']: - SUMMARY.loc[colID, ('reconstruction', t_label)] = rep_time - SUMMARY.loc[irID, ('reconstruction', t_label)] = rep_time - - repair_impractical_IDs = \ - SUMMARY.loc[SUMMARY.loc[:, ('reconstruction', - 'time-parallel')] > rep_time].index - SUMMARY.loc[repID, ('reconstruction', 'time impractical')] = 0 - SUMMARY.loc[repair_impractical_IDs,('reconstruction', - 'time impractical')] = 1 - SUMMARY.loc[repair_impractical_IDs, ('reconstruction', - 'time-parallel')] = rep_time - - # injuries - if DVs['injuries']: - - # inhabitants - SUMMARY.loc[:, ('inhabitants', '')] = self._POP.sum(axis=1) - - if 'CM' in self._COL.columns: - SUMMARY.loc[colID, ('collapses', 'mode')] = self._COL.loc[:, 'CM'] - - SUMMARY.loc[colID, ('injuries', 'sev1')] = \ - self._COL.loc[:, 'INJ-0'] - SUMMARY.loc[colID, ('injuries', 'sev2')] = \ - self._COL.loc[:, 'INJ-1'] - - SUMMARY.loc[ncID, ('injuries', 'sev1')] = \ - self._DV_dict['injuries'][0].sum(axis=1) - SUMMARY.loc[ncID, ('injuries', 'sev2')] = \ - self._DV_dict['injuries'][1].sum(axis=1) - - self._SUMMARY = SUMMARY.dropna(axis=1,how='all')
- -
[docs] def save_outputs(self, *args, **kwargs): - """ - - Returns - ------- - - """ - super(FEMA_P58_Assessment, self).save_outputs(*args, **kwargs)
- - def _create_correlation_matrix(self, rho_target, c_target=-1, - include_CSG=False, - include_DSG=False, include_DS=False): - """ - - Parameters - ---------- - rho_target - c_target - include_CSG - include_DSG - include_DS - - Returns - ------- - - """ - - # set the correlation structure - rho_FG, rho_PG, rho_LOC, rho_DIR, rho_CSG, rho_DS = np.zeros(6) - - if rho_target in ['FG', 'PG', 'DIR', 'LOC', 'CSG', 'ATC', 'DS']: - rho_DS = 1.0 - if rho_target in ['FG', 'PG', 'DIR', 'LOC', 'CSG']: - rho_CSG = 1.0 - if rho_target in ['FG', 'PG', 'DIR']: - rho_DIR = 1.0 - if rho_target in ['FG', 'PG', 'LOC']: - rho_LOC = 1.0 - if rho_target in ['FG', 'PG']: - rho_PG = 1.0 - if rho_target == 'FG': - rho_FG = 1.0 - - L_D_list = [] - dims = [] - DS_list = [] - ATC_rho = [] - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - if ((c_target == -1) or (c_id == c_target)): - c_L_D_list = [] - c_DS_list = [] - ATC_rho.append(comp['correlation']) - - if include_DSG: - DS_count = 0 - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - if include_DS: - DS_count += len(DSG['DS_set']) - else: - DS_count += 1 - else: - DS_count = 1 - - #for loc in comp['locations']: - # if include_CSG: - # u_dirs = comp['directions'] - # else: - # u_dirs = np.unique(comp['directions']) - # c_L_D_list.append([]) - # for dir_ in u_dirs: - # c_DS_list.append(DS_count) - # for ds_i in range(DS_count): - # c_L_D_list[-1].append(dir_) - - for loc_u in np.unique(comp['locations']): - c_L_D_list.append([]) - for loc, dir, csg_weights in zip(comp['locations'], - comp['directions'], - comp['csg_weights']): - if loc == loc_u: - if include_CSG: - csg_list = csg_weights - else: - csg_list = [1.0,] - for csg_ in csg_list: - c_DS_list.append(DS_count) - for ds_i in range(DS_count): - c_L_D_list[-1].append(dir) - - c_dims = sum([len(loc) for loc in c_L_D_list]) - dims.append(c_dims) - L_D_list.append(c_L_D_list) - DS_list.append(c_DS_list) - - rho = np.ones((sum(dims), sum(dims))) * rho_FG - - f_pos_id = 0 - for c_id, (c_L_D_list, c_dims, c_DS_list) in enumerate( - zip(L_D_list, dims, DS_list)): - c_rho = np.ones((c_dims, c_dims)) * rho_PG - - # dependencies btw directions - if rho_DIR != 0: - c_pos_id = 0 - for loc_D_list in c_L_D_list: - l_dim = len(loc_D_list) - c_rho[c_pos_id:c_pos_id + l_dim, - c_pos_id:c_pos_id + l_dim] = rho_DIR - c_pos_id = c_pos_id + l_dim - - # dependencies btw locations - if rho_LOC != 0: - flat_dirs = [] - [[flat_dirs.append(dir_i) for dir_i in dirs] for dirs in - c_L_D_list] - flat_dirs = np.array(flat_dirs) - for u_dir in np.unique(flat_dirs): - dir_ids = np.where(flat_dirs == u_dir)[0] - for i in dir_ids: - for j in dir_ids: - c_rho[i, j] = rho_LOC - - if ((rho_CSG != 0) or (rho_target == 'ATC')): - c_pos_id = 0 - if rho_target == 'ATC': - rho_to_use = float(ATC_rho[c_id]) - else: - rho_to_use = rho_CSG - for loc_D_list in c_L_D_list: - flat_dirs = np.array(loc_D_list) - for u_dir in np.unique(flat_dirs): - dir_ids = np.where(flat_dirs == u_dir)[0] - for i in dir_ids: - for j in dir_ids: - c_rho[c_pos_id + i, c_pos_id + j] = rho_to_use - c_pos_id = c_pos_id + len(loc_D_list) - - if rho_DS != 0: - c_pos_id = 0 - for l_dim in c_DS_list: - c_rho[c_pos_id:c_pos_id + l_dim, - c_pos_id:c_pos_id + l_dim] = rho_DS - c_pos_id = c_pos_id + l_dim - - rho[f_pos_id:f_pos_id + c_dims, - f_pos_id:f_pos_id + c_dims] = c_rho - f_pos_id = f_pos_id + c_dims - - np.fill_diagonal(rho, 1.0) - - return rho - - def _create_RV_quantities(self, rho_qnt): - """ - - Parameters - ---------- - rho_qnt - - Returns - ------- - - """ - - q_theta, q_sig, q_tags, q_dist = [np.array([]) for i in range(4)] - - # collect the parameters for each quantity dimension - s_fg_keys = sorted(self._FG_in.keys()) - for c_id in s_fg_keys: - comp = self._FG_in[c_id] - - u_dirs = np.unique(comp['directions']) - - #dir_weights = comp['dir_weights'] - #theta_list = [] - #[[theta_list.append(qnt * dw) - # for dw in dir_weights] for qnt in comp['quantities']] - - theta_list = comp['quantities'] - q_theta = np.append(q_theta, theta_list) - - dist_list = comp['distribution_kind'] - q_dist = np.append(q_dist, dist_list) - - cov_list = comp['cov'] - for theta, dk, cov in list(zip(theta_list, dist_list, cov_list)): - if dk == 'normal': - q_sig = np.append(q_sig, [cov*theta,]) - else: - q_sig = np.append(q_sig, [cov, ]) - - q_tags = np.append(q_tags, [f'{c_id}-QNT-{s_i}-{d_i}' for s_i, d_i - in list(zip(comp['locations'], - comp['directions']))]) - - rho = self._create_correlation_matrix(rho_qnt) - - if not np.all(q_dist=='N/A'): - # remove the unnecessary fields - to_remove = np.where(q_dist=='N/A')[0] - rho = np.delete(rho, to_remove, axis=0) - rho = np.delete(rho, to_remove, axis=1) - - q_theta, q_sig, q_dist, q_tags = [ - np.delete(q_vals, to_remove) for q_vals in [ - q_theta, q_sig, q_dist, q_tags]] - - dims = len(q_theta) - - # add lower limits to ensure only positive quantities - # zero is probably too low, and it might make sense to introduce upper - # limits as well - tr_lower = [0. for d in range(dims)] - tr_upper = [None for d in range(dims)] - - # Create the RVs - for q, (q_tag, theta_q, sig_q, dist_q) in enumerate( - zip(q_tags, q_theta, q_sig, q_dist)): - self._RV_reg.add_RV(RandomVariable( - name=q_tag, distribution=dist_q, - theta=[theta_q, sig_q], - truncation_limits = [tr_lower[q], tr_upper[q]] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'QNT_set', list(self._RV_reg.RVs(q_tags).values()), - rho - )) - - # q_COV = np.outer(q_sig, q_sig) * rho - # - # # to avoid truncations affecting other dimensions when rho_QNT is large, - # # assign a post-truncation correlation structure - # corr_ref = 'post' - # - # quantity_RV = RandomVariable(ID=100, - # dimension_tags=q_tag, - # distribution_kind=q_dist, - # theta=q_theta, - # COV=q_COV, - # truncation_limits=[tr_lower, tr_upper], - # corr_ref=corr_ref) - - else: - q_tags = None - - return q_tags - - def _create_RV_fragilities(self, c_id, comp, rho_fr): - """ - - Parameters - ---------- - c_id - comp - rho_fr - - Returns - ------- - - """ - - # prepare the basic multivariate distribution data for one component subgroup considering all damage states - d_theta, d_sig, d_tags, d_distr_kind = [np.array([]) for i in range(4)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for d_id in s_dsg_keys: - DSG = comp['DSG_set'][d_id] - d_theta = np.append(d_theta, DSG['theta']) - d_sig = np.append(d_sig, DSG['sig']) - d_tags = np.append(d_tags, f"FF-{comp['ID']}-{d_id}") - d_distr_kind = np.append(d_distr_kind, DSG['distribution_kind']) - dims = len(d_theta) - - # get the total number of random variables for this fragility group - #rv_count = len(comp['locations']) * len(comp['directions']) * dims - rv_count = sum([len(csg_w) for csg_w in comp['csg_weights']]) * dims - - # create the (empty) input arrays for the RV - c_theta = np.zeros(rv_count) - c_tags = np.empty(rv_count, dtype=object) - c_sig = np.zeros(rv_count) - c_distr_kind = np.empty(rv_count, dtype=object) - - pos_id = 0 - #for l_id in comp['locations']: - # # for each location-direction pair) - # for d_id, __ in enumerate(comp['directions']): - # # for each component-subgroup - # c_theta[pos_id:pos_id + dims] = d_theta - # c_sig[pos_id:pos_id + dims] = d_sig - # c_tags[pos_id:pos_id + dims] = [ - # t + '-LOC-{}-CSG-{}'.format(l_id, d_id) for t in d_tags] - # c_distr_kind[pos_id:pos_id + dims] = d_distr_kind - # pos_id += dims - - for l_id, d_id, csg_list in zip(comp['locations'], comp['directions'], - comp['csg_weights']): - # for each location-direction pair) - for csg_id, __ in enumerate(csg_list): - # for each component-subgroup - c_theta[pos_id:pos_id + dims] = d_theta - c_sig[pos_id:pos_id + dims] = d_sig - c_tags[pos_id:pos_id + dims] = [ - t + '-LOC-{}-DIR-{}-CSG-{}'.format(l_id, d_id, csg_id) - for t in d_tags] - c_distr_kind[pos_id:pos_id + dims] = d_distr_kind - pos_id += dims - - # create the covariance matrix - c_rho = self._create_correlation_matrix(rho_fr, c_target=c_id, - include_DSG=True, - include_CSG=True) - - if c_tags.size > 0: - # Create the RVs - for c, (c_tag, sig_c, theta_c, dkind_c) in enumerate( - zip(c_tags, c_sig, c_theta, c_distr_kind)): - self._RV_reg.add_RV(RandomVariable( - name=c_tag, distribution=dkind_c, - theta=[theta_c, sig_c] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - f'FF_set_{c_id}', list(self._RV_reg.RVs(c_tags).values()), - c_rho)) - - # c_COV = np.outer(c_sig, c_sig) * c_rho - # - # fragility_RV = RandomVariable(ID=300 + c_id, - # dimension_tags=c_tags, - # distribution_kind=c_distr_kind, - # theta=c_theta, - # COV=c_COV) - else: - c_tags = None - - return c_tags - - def _create_RV_damage_states(self): - - d_tags, d_theta = [[] for i in range(2)] - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - if DSG['DS_set_kind'] == 'mutually exclusive': - - s_ds_keys = sorted(DSG['DS_set'].keys()) - DS_set = DSG['DS_set'] - DS_weights = [DS_set[ds_i]['weight'] for ds_i in s_ds_keys] - - for loc, dir_, csg_list in zip(comp['locations'], - comp['directions'], - comp['csg_weights']): - - for csg_id, __ in enumerate(csg_list): - - d_tags.append(f'DSG-{comp["ID"]}-{dsg_i}-LOC-{loc}-' - f'DIR-{dir_}-CSG-{csg_id}') - d_theta.append(DS_weights) - - if len(d_tags) > 0: - - # Create the RVs - for d, (d_tag, theta_d) in enumerate(zip(d_tags, d_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='multinomial', - theta=theta_d)) - - else: - d_tags = None - - return d_tags - - def _create_RV_red_tags(self, rho_target): - - f_theta, f_sig, f_tags = [np.array([]) for i in range(3)] - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - d_theta, d_sig, d_tag = [np.array([]) for i in range(3)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i in s_ds_keys: - DS = DSG['DS_set'][ds_i] - if 'red_tag' in DS.keys(): - d_theta = np.append(d_theta, DS['red_tag']['theta']) - d_sig = np.append(d_sig, DS['red_tag']['cov']) - else: - # if there are no injuries assigned to this DS - d_theta = np.append(d_theta, 0) - d_sig = np.append(d_sig, 0.0001) - d_tag = np.append(d_tag, f"RED-{comp['ID']}-{dsg_i}-{ds_i}") - - for loc, dir_ in zip(comp['locations'], comp['directions']): - f_theta = np.append(f_theta, d_theta) - f_sig = np.append(f_sig, d_sig) - f_tags = np.append(f_tags, [t + f'-LOC-{loc}-DIR-{dir_}' - for t in d_tag]) - - rho = self._create_correlation_matrix(rho_target, c_target=-1, - include_DSG=True, - include_DS=True) - - if not np.all(f_theta==0.): - # remove the unnecessary fields - to_remove = np.where(f_theta == 0)[0] - rho = np.delete(rho, to_remove, axis=0) - rho = np.delete(rho, to_remove, axis=1) - - f_theta, f_sig, f_tags = [np.delete(f_vals, to_remove) - for f_vals in [f_theta, f_sig, f_tags]] - - tr_upper = 1. + (1. - f_theta) / f_theta - - # Create the RVs - for f, (f_tag, theta_f, sig_f) in enumerate( - zip(f_tags, f_theta, f_sig)): - self._RV_reg.add_RV(RandomVariable( - name=f_tag, distribution='normal', - theta=[1.0, sig_f], - truncation_limits=[0., tr_upper[f]] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'DV_RED_set', list(self._RV_reg.RVs(f_tags).values()), rho)) - - # f_COV = np.outer(f_sig, f_sig) * rho - # - # red_tag_RV = RandomVariable(ID=400, - # dimension_tags=f_tag, - # distribution_kind='normal', - # theta=np.ones(len(f_theta)), - # COV=f_COV, - # corr_ref='post', - # truncation_limits=[np.zeros(len(f_theta)), - # tr_upper]) - else: - f_tags = None - - return f_tags - - def _create_RV_repairs(self, rho_cost, rho_time, rho_cNt): - - # prepare the cost and time parts of the data separately - ct_sig, ct_tags, ct_dkind = [np.array([]) for i in range(3)] - for rho_target, name in zip([rho_cost, rho_time], ['cost', 'time']): - - f_sig, f_tag, f_dkind = [np.array([]) for i in range(3)] - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - d_sig, d_tag, d_dkind = [np.array([]) for i in range(3)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i in s_ds_keys: - DS = DSG['DS_set'][ds_i] - if ((f'repair_{name}' in DS.keys()) and - (DS[f'repair_{name}']['distribution_kind'] is not None)): - data = DS[f'repair_{name}'] - d_sig = np.append(d_sig, data['cov']) - d_dkind = np.append(d_dkind, - data['distribution_kind']) - else: - d_sig = np.append(d_sig, 0.0001) - d_dkind = np.append(d_dkind, None) - - d_tag = np.append( - d_tag, f'REP-{comp["ID"]}-{dsg_i}-{ds_i}-{name}') - #comp['ID'] + '-' + str( - # dsg_i) + '-' + str( - # ds_i) + '-{}'.format(name)) - - for loc, dir_ in zip(comp['locations'], comp['directions']): - f_sig = np.append(f_sig, d_sig) - f_dkind = np.append(f_dkind, d_dkind) - f_tag = np.append( - f_tag, [t + f'-LOC-{loc}-DIR-{dir_}' for t in d_tag]) - - ct_sig = np.append(ct_sig, f_sig) - ct_tags = np.append(ct_tags, f_tag) - ct_dkind = np.append(ct_dkind, f_dkind) - - rho_c = self._create_correlation_matrix(rho_cost, c_target=-1, - include_DSG=True, - include_DS=True) - rho_t = self._create_correlation_matrix(rho_time, c_target=-1, - include_DSG=True, - include_DS=True) - - dims = len(ct_tags) - ct_rho = np.zeros((dims, dims)) - - dims = dims // 2 - if rho_cNt == False: - ct_rho[:dims, :dims] = rho_c - ct_rho[dims:, dims:] = rho_t - else: - # In the special case of mixing perfect correlation between - # locations and directions, taking the envelope is not the - # appropriate solution. Instead, the LOC & DIR -> PG approach is - # used. - if (((rho_cost == 'LOC') and (rho_time =='DIR')) or - ((rho_cost == 'DIR') and (rho_time == 'LOC'))): - rho_ct = self._create_correlation_matrix('PG', c_target=-1, - include_DSG=True, - include_DS=True) - else: - # We use the envelope in every other case. - rho_ct = np.maximum(rho_c, rho_t) - - ct_rho[:dims, :dims] = rho_ct - ct_rho[dims:, dims:] = rho_ct - - # apply the same blocks to the off-diagonal positions - ct_rho[:dims, dims:] = rho_ct - ct_rho[dims:, :dims] = rho_ct - - # now remove the unnecessary fields - if not np.all(ct_dkind == None): - - to_remove = np.where(ct_dkind == None)[0] - ct_rho = np.delete(ct_rho, to_remove, axis=0) - ct_rho = np.delete(ct_rho, to_remove, axis=1) - - ct_dkind, ct_sig, ct_tags = [np.delete(ct_vals, to_remove) - for ct_vals in [ct_dkind, ct_sig, ct_tags]] - - # Create the RVs - for ct, (ct_tag, sig_ct, dkind_ct) in enumerate( - zip(ct_tags, ct_sig, ct_dkind)): - self._RV_reg.add_RV(RandomVariable( - name=ct_tag, distribution=dkind_ct, - theta=[1.0, sig_ct], - truncation_limits=[0., None] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'DV_REP_set', list(self._RV_reg.RVs(ct_tags).values()), ct_rho)) - - # ct_COV = np.outer(ct_sig, ct_sig) * ct_rho - # - # repair_RV = RandomVariable(ID=401, - # dimension_tags=ct_tags, - # distribution_kind=ct_dkind, - # theta=np.ones(len(ct_sig)), - # COV=ct_COV, - # corr_ref='post', - # truncation_limits=[np.zeros(len(ct_sig)), - # None]) - else: - ct_tags = None - - return ct_tags - - def _create_RV_injuries(self, rho_target, rho_lvls): - - inj_lvls = self._inj_lvls - - # prepare the parts for different levels of injury separately - full_theta, full_sig, full_tags = [np.array([]) for i in range(3)] - for i_lvl in range(inj_lvls): - - f_theta, f_sig, f_tag = [np.array([]) for i in range(3)] - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - d_theta, d_sig, d_tag = [np.array([]) for i in range(3)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i in s_ds_keys: - DS = DSG['DS_set'][ds_i] - if 'injuries' in DS.keys(): - d_theta = np.append( - d_theta, DS['injuries']['theta'][i_lvl]) - d_sig = np.append( - d_sig, DS['injuries']['cov'][i_lvl]) - else: - # if there are no injuries assigned to this DS - d_theta = np.append(d_theta, 0) - d_sig = np.append(d_sig, 0.0001) - d_tag = np.append( - d_tag, f"INJ-{comp['ID']}-{dsg_i}-{ds_i}-{i_lvl}") - - for loc, dir_ in zip(comp['locations'], comp['directions']): - f_theta = np.append(f_theta, d_theta) - f_sig = np.append(f_sig, d_sig) - f_tag = np.append(f_tag, - [t + '-LOC-{}-DIR-{}'.format(loc, - dir_) - for t in d_tag]) - - full_theta = np.append(full_theta, f_theta) - full_sig = np.append(full_sig, f_sig) - full_tags = np.append(full_tags, f_tag) - - dims = len(full_tags) - full_rho = np.zeros((dims, dims)) - dims = dims // inj_lvls - - # if correlation between different levels of severity is considered, add that to the matrix - if rho_lvls: - rho_i = self._create_correlation_matrix(rho_target, c_target=-1, - include_DSG=True, - include_DS=True) - for i in range(inj_lvls): - for j in range(inj_lvls): - full_rho[i * dims:(i + 1) * dims, - j * dims:(j + 1) * dims] = rho_i - - # and now add the values around the main diagonal - for i in range(inj_lvls): - rho_i = self._create_correlation_matrix(rho_target, c_target=-1, - include_DSG=True, - include_DS=True) - full_rho[i * dims:(i + 1) * dims, i * dims:(i + 1) * dims] = rho_i - - # finally, remove the unnecessary lines - to_remove = np.where(full_theta == 0)[0] - full_rho = np.delete(full_rho, to_remove, axis=0) - full_rho = np.delete(full_rho, to_remove, axis=1) - - full_theta, full_sig, full_tags = [np.delete(f_vals, to_remove) - for f_vals in - [full_theta, full_sig, full_tags]] - - tr_upper = 1. + (1. - full_theta) / full_theta - - if full_tags.size > 0: - # Create the RVs - for ii, (ii_tag, sig_ii, theta_ii) in enumerate( - zip(full_tags, full_sig, full_theta)): - self._RV_reg.add_RV(RandomVariable( - name=ii_tag, distribution='normal', - theta=[1.0, sig_ii], - truncation_limits=[0., tr_upper[ii]] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'DV_INJ_set', list(self._RV_reg.RVs(full_tags).values()), - full_rho)) - - # full_COV = np.outer(full_sig, full_sig) * full_rho - # - # if full_tags.size > 0: - # injury_RV = RandomVariable(ID=402, - # dimension_tags=full_tags, - # distribution_kind='normal', - # theta=np.ones(len(full_sig)), - # COV=full_COV, - # corr_ref='post', - # truncation_limits=[np.zeros(len(full_sig)), - # tr_upper]) - else: - full_tags = None - - return full_tags - - def _create_fragility_groups(self): - - RVd = self._RV_dict - DVs = self._AIM_in['decision_variables'] - - # create a list for the fragility groups - FG_dict = dict() - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id in s_fg_keys: - log_msg('\t{}...'.format(c_id)) - comp = self._FG_in[c_id] - - FG_ID = len(FG_dict.keys())+1 - - # create a list for the performance groups - performance_groups = [] - - # one group for each of the stories prescribed by the user - PG_locations = comp['locations'] - PG_directions = comp['directions'] - PG_csg_lists = comp['csg_weights'] - PG_dists = comp['distribution_kind'] - PG_qnts = comp['quantities'] - for loc, dir_, csg_list, dist, qnt, in zip( - PG_locations, PG_directions, PG_csg_lists, PG_dists, PG_qnts): - PG_ID = 10000 * FG_ID + 10 * loc + dir_ - - # get the quantity - if dist == 'N/A': - QNT = qnt - else: - # QNT = RandomVariableSubset(RVd['QNT'], - # tags=[f'{c_id}-QNT-{loc}-{dir_}', ]) - QNT = self._QNT_dict[f'{c_id}-QNT-{loc}-{dir_}'] - - # create the damage objects - # consequences are calculated on a performance group level - - # create a list for the damage state groups and their tags - DSG_list = [] - d_tags = [] - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i, DSG_ID in enumerate(s_dsg_keys): - DSG = comp['DSG_set'][DSG_ID] - d_tags.append('FF-' + c_id + '-' + DSG_ID) - - # create a list for the damage states - DS_set = [] - - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i, DS_ID in enumerate(s_ds_keys): - DS = DSG['DS_set'][DS_ID] - - # create the consequence functions - if DVs['rec_cost']: - data = DS['repair_cost'] - f_median = prep_bounded_multilinear_median_DV( - **{k: data.get(k, None) for k in - ('medians', 'quantities')}) - #('median_max', 'median_min', - # 'quantity_lower', 'quantity_upper')}) - cf_tag = 'REP-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-cost' + \ - '-LOC-{}-DIR-{}'.format(loc, dir_) - CF_RV = self._DV_REP_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_REP'], - # tags=cf_tag) - CF_cost = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_cost = None - - if DVs['rec_time']: - data = DS['repair_time'] - f_median = prep_bounded_multilinear_median_DV( - **{k: data.get(k, None) for k in - ('medians', 'quantities')}) - #('median_max', 'median_min', - # 'quantity_lower', 'quantity_upper')}) - cf_tag = 'REP-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-time' + \ - '-LOC-{}-DIR-{}'.format(loc, dir_) - CF_RV = self._DV_REP_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_REP'], - # tags=cf_tag) - CF_time = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_time = None - - if (DVs['red_tag']) and ('red_tag' in DS.keys()): - data = DS['red_tag'] - if data['theta'] > 0: - f_median = prep_constant_median_DV(data['theta']) - cf_tag = 'RED-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-LOC-{}-DIR-{}'.format(loc, dir_) - CF_RV = self._DV_RED_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_RED'], - # tags=cf_tag) - CF_red_tag = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_red_tag = None - else: - CF_red_tag = None - - if (DVs['injuries']) and ('injuries' in DS.keys()): - CF_inj_set = [] - for inj_i, theta in enumerate(DS['injuries']['theta']): - if theta > 0.: - f_median = prep_constant_median_DV(theta) - cf_tag = 'INJ-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-{}-LOC-{}-DIR-{}'.format(inj_i, loc, dir_) - CF_RV = self._DV_INJ_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_INJ'], - # tags=cf_tag) - CF_inj_set.append(ConsequenceFunction( - DV_median=f_median, - DV_distribution=CF_RV)) - else: - CF_inj_set.append(None) - else: - CF_inj_set = [None,] - - # add the DS to the list - if 'affected_area' in DS.keys(): - AA = DS['affected_area'] - else: - AA = 0.0 - # TODO: make this smarter by making affected_area a property of DS - DS_set.append(DamageState( - ID=ds_i + 1, - description=DS['description'], - weight=DS['weight'], - affected_area=AA, - repair_cost_CF=CF_cost, - reconstruction_time_CF=CF_time, - red_tag_CF=CF_red_tag, - injuries_CF_set=CF_inj_set)) - - # add the DSG to the list - DSG_list.append(DamageStateGroup( - ID=dsg_i + 1, - DS_set=DS_set, - DS_set_kind=DSG['DS_set_kind'])) - - # create the fragility functions - FF_set = [] - #CSG_this = np.where(comp['directions']==dir_)[0] - #PG_weights = np.asarray(comp['csg_weights'])[CSG_this] - # normalize the weights - #PG_weights /= sum(PG_weights) - for csg_id, __ in enumerate(csg_list): - # assign the appropriate random variable to the fragility - # function - ff_tags = [t + f'-LOC-{loc}-DIR-{dir_}-CSG-{csg_id}' - for t in d_tags] - EDP_limit = [self._FF_dict[ff_tag] for ff_tag in ff_tags] - # RandomVariableSubset(RVd['FR-' + c_id], - # tags=ff_tags) - FF_set.append(FragilityFunction(EDP_limit)) - - # create the performance group - PG = PerformanceGroup(ID=PG_ID, - location=loc, - quantity=QNT, - fragility_functions=FF_set, - DSG_set=DSG_list, - csg_weights=csg_list, - direction=dir_ - ) - performance_groups.append(PG) - - # create the fragility group - FG = FragilityGroup(ID=FG_ID, - #kind=comp['kind'], - demand_type=comp['demand_type'], - performance_groups=performance_groups, - directional=comp['directional'], - correlation=comp['correlation'], - demand_location_offset=comp['offset'], - incomplete=comp['incomplete'], - name=str(FG_ID) + ' - ' + comp['ID'], - description=comp['description'], - unit=comp['unit'] - ) - - FG_dict.update({comp['ID']:FG}) - - return FG_dict - - def _sample_event_time(self): - - sample_count = self._AIM_in['general']['realizations'] - - # month - uniform distribution over [0,11] - month = np.random.randint(0, 12, size=sample_count) - - # weekday - binomial with p=5/7 - weekday = np.random.binomial(1, 5. / 7., size=sample_count) - - # hour - uniform distribution over [0,23] - hour = np.random.randint(0, 24, size=sample_count) - - data = pd.DataFrame(data={'month' : month, - 'weekday?': weekday, - 'hour' : hour}, - dtype=int) - - return data - - def _get_population(self): - """ - Use the population characteristics to generate random population samples. - - Returns - ------- - - """ - POPin = self._POP_in - TIME = self._TIME - - POP = pd.DataFrame( - np.ones((len(TIME.index), len(POPin['peak']))) * POPin['peak'], - columns=['LOC' + str(loc + 1) - for loc in range(len(POPin['peak']))]) - - # if there is a temporal population model available... - if 'weekday' in POPin.keys(): - weekdays = TIME[TIME['weekday?'] == 1].index - weekends = TIME[~TIME.index.isin(weekdays)].index - - for col in POP.columns.values: - POP.loc[weekdays, col] = ( - POP.loc[weekdays, col] * - np.array(POPin['weekday']['daily'])[ - TIME.loc[weekdays, 'hour'].values.astype(int)] * - np.array(POPin['weekday']['monthly'])[ - TIME.loc[weekdays, 'month'].values.astype(int)]) - - POP.loc[weekends, col] = ( - POP.loc[weekends, col] * - np.array(POPin['weekend']['daily'])[ - TIME.loc[weekends, 'hour'].values.astype(int)] * - np.array(POPin['weekend']['monthly'])[ - TIME.loc[weekends, 'month'].values.astype(int)]) - - return POP - - def _calc_collapses(self): - - # There are three options for determining which realizations ended in - # collapse. - GI = self._AIM_in['general'] - GR = GI['response'] - realizations = self._AIM_in['general']['realizations'] - - # 1, The simplest case: prescribed collapse rate - if GR['coll_prob'] != 'estimated': - collapsed_IDs = np.random.choice( - realizations, - size=int(GR['coll_prob']*realizations), - replace=False) - - # 2, Collapses estimated using EDP results - elif GR['CP_est_basis'] == 'raw EDP': - demand_data = [] - collapse_limits = [] - s_edp_keys = sorted(self._EDP_in.keys()) - for d_id in s_edp_keys: - d_list = self._EDP_in[d_id] - for i in range(len(d_list)): - demand_data.append(d_list[i]['raw_data']) - - coll_lim = GI['collapse_limits'][d_id] - if coll_lim is None: - coll_lim = np.inf - - collapse_limits.append([0., coll_lim]) - - collapse_limits = np.transpose(np.asarray(collapse_limits)) - demand_data = np.transpose(np.asarray(demand_data)) - - EDP_filter = np.all( - [np.all(demand_data > collapse_limits[0], axis=1), - np.all(demand_data < collapse_limits[1], axis=1)], - axis=0) - coll_prob = 1.0 - sum(EDP_filter)/len(EDP_filter) - collapsed_IDs = np.random.choice( - realizations, - size=int(coll_prob * realizations), - replace=False) - - # 3, Collapses estimated using sampled EDP distribution - elif GR['CP_est_basis'] == 'sampled EDP': - collapsed_IDs = np.array([]) - s_edp_keys = sorted(self._EDP_dict.keys()) - for demand_ID in s_edp_keys: - demand = self._EDP_dict[demand_ID] - kind = demand_ID[4:7] - collapse_limit = self._AIM_in['general']['collapse_limits'][kind] - if collapse_limit is not None: - EDP_samples = demand.samples_DF - coll_df = EDP_samples[EDP_samples > collapse_limit] - collapsed_IDs = np.concatenate( - (collapsed_IDs, coll_df.index.values)) - - # get a list of IDs of the collapsed cases - collapsed_IDs = np.unique(collapsed_IDs).astype(int) - - COL = pd.DataFrame(np.zeros(realizations), columns=['COL', ]) - COL.loc[collapsed_IDs, 'COL'] = 1 - - return COL, collapsed_IDs - - def _calc_damage(self): - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - DMG = pd.DataFrame() - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - log_msg('\t\t{}...'.format(fg_id)) - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = [] - for DSG in PG_set[0]._DSG_set: - for DS in DSG._DS_set: - DS_list.append(str(DSG._ID) + '_' + str(DS._ID)) - d_count = len(DS_list) - - MI = pd.MultiIndex.from_product([[FG._ID, ], - [pg._ID for pg in PG_set], - DS_list], - names=['FG', 'PG', 'DSG_DS']) - - FG_damages = pd.DataFrame(np.zeros((NC_samples, len(MI))), - columns=MI, - index=ncID) - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - if isinstance(PG._quantity, RandomVariable): - PG_qnt = PG._quantity.samples_DF.loc[ncID] - else: - PG_qnt = pd.Series(np.ones(NC_samples) * PG._quantity, - index=ncID) - - # get the corresponding demands - if not FG._directional: - demand_ID_list = [] - - for demand_ID in self._EDP_dict.keys(): - if demand_ID[4:7] == FG._demand_type: - demand_data = demand_ID.split('-') - if int(demand_data[3]) == PG._location + FG._demand_location_offset: - demand_ID_list.append(demand_ID) - - EDP_samples = self._EDP_dict[demand_ID_list[0]].samples_DF.loc[ncID] - if len(demand_ID_list)>1: - for demand_ID in demand_ID_list[1:]: - new_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - EDP_samples.update( - pd.Series(np.maximum(new_samples.values,EDP_samples.values), - index=EDP_samples.index)) - - # scale the max of inputs by 1.2 as per FEMA P58 vol 2 3.2.3 - EDP_samples *= 1.2 - - else: - demand_ID = ('EDP-' + FG._demand_type + - '-LOC-' + str(PG._location + FG._demand_location_offset) + - '-DIR-' + str(PG._direction)) - - if demand_ID in self._EDP_dict.keys(): - EDP_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - else: - # If the required demand is not available, then we are most - # likely analyzing a 3D structure using results from a 2D - # simulation. The best thing we can do in that particular - # case is to use the EDP from the 1 direction for all other - # directions. - demand_ID = ('EDP-' + FG._demand_type + - '-LOC-' + str(PG._location + FG._demand_location_offset) + '-DIR-1') - EDP_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - - csg_w_list = PG._csg_weights - - for csg_i, csg_w in enumerate(csg_w_list): - DSG_df = PG._FF_set[csg_i].DSG_given_EDP(EDP_samples) - - for DSG in PG._DSG_set: - in_this_DSG = DSG_df[DSG_df.values == DSG._ID].index - if DSG._DS_set_kind == 'single': - DS = DSG._DS_set[0] - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - FG_damages.loc[in_this_DSG, - (FG._ID, PG_ID, DS_tag)] += csg_w - elif DSG._DS_set_kind == 'mutually exclusive': - mut_ex_id = f'DSG-{fg_id}-DSG-{DSG._ID}-' \ - f'LOC-{PG._location}-' \ - f'DIR-{PG._direction}-CSG-{csg_i}' - DS_df = self._DSG_dict[mut_ex_id].samples_DF.loc[in_this_DSG] - - # DS_weights = [DS._weight for DS in DSG._DS_set] - # DS_RV = RandomVariable( - # ID=-1, dimension_tags=['me_DS', ], - # distribution_kind='multinomial', - # p_set=DS_weights) - # DS_df = DS_RV.sample_distribution( - # len(in_this_DSG)) + 1 - - for DS in DSG._DS_set: - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - in_this_DS = DS_df[DS_df.values == DS._ID-1].index - FG_damages.loc[in_this_DS, - (FG._ID, PG_ID, DS_tag)] += csg_w - elif DSG._DS_set_kind == 'simultaneous': - DS_weights = [DS._weight for DS in DSG._DS_set] - DS_df = np.random.uniform( - size=(len(in_this_DSG), len(DS_weights))) - which_DS = DS_df < DS_weights - any_DS = np.any(which_DS, axis=1) - no_DS_ids = np.where(any_DS == False)[0] - - while len(no_DS_ids) > 0: - DS_df_add = np.random.uniform( - size=(len(no_DS_ids), len(DS_weights))) - which_DS_add = DS_df_add < DS_weights - which_DS[no_DS_ids] = which_DS_add - - any_DS = np.any(which_DS_add, axis=1) - no_DS_ids = no_DS_ids[ - np.where(any_DS == False)[0]] - - for ds_i, DS in enumerate(DSG._DS_set): - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - in_this_DS = which_DS[:, ds_i] - FG_damages.loc[in_this_DSG[in_this_DS], ( - FG._ID, PG_ID, DS_tag)] += csg_w - - else: - raise ValueError( - "Unknown damage state type: {}".format( - DSG._DS_set_kind) - ) - - FG_damages.iloc[:,pg_i * d_count:(pg_i + 1) * d_count] = \ - FG_damages.mul(PG_qnt, axis=0) - - DMG = pd.concat((DMG, FG_damages), axis=1) - - DMG.index = ncID - - # sort the columns to enable index slicing later - DMG = DMG.sort_index(axis=1, ascending=True) - - return DMG - - def _calc_red_tag(self): - idx = pd.IndexSlice - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - DV_RED = pd.DataFrame() - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - MI = pd.MultiIndex.from_product([[FG._ID, ], - [pg._ID for pg in PG_set], - DS_list], - names=['FG', 'PG', 'DSG_DS']) - - FG_RED = pd.DataFrame(np.zeros((NC_samples, len(MI))), - columns=MI, - index=ncID) - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - if isinstance(PG._quantity, RandomVariable): - PG_qnt = PG._quantity.samples_DF.loc[ncID] - else: - PG_qnt = pd.Series(np.ones(NC_samples) * PG._quantity, - index=ncID) - - PG_DMG = self._DMG.loc[:, idx[FG._ID, PG_ID, :]].div(PG_qnt,axis=0) - - for d_i, d_tag in enumerate(DS_list): - dsg_i = int(d_tag[0]) - 1 - ds_i = int(d_tag[-1]) - 1 - - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - if DS._red_tag_CF is not None: - RED_samples = DS.red_tag_dmg_limit( - sample_size=NC_samples) - RED_samples.index = ncID - - is_red = PG_DMG.loc[:, (FG._ID, PG_ID, d_tag)].sub( - RED_samples, axis=0) - - FG_RED.loc[:, (FG._ID, PG_ID, d_tag)] = ( - is_red > 0.).astype(int) - else: - FG_RED.drop(labels=[(FG._ID, PG_ID, d_tag), ], axis=1, - inplace=True) - - if FG_RED.size > 0: - DV_RED = pd.concat((DV_RED, FG_RED), axis=1) - - # sort the columns to enable index slicing later - DV_RED = DV_RED.sort_index(axis=1, ascending=True) - - return DV_RED - - def _calc_irreparable(self): - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - - # determine which realizations lead to irreparable damage - # get the max residual drifts - RID_max = None - PID_max = None - s_edp_keys = sorted(self._EDP_dict.keys()) - for demand_ID in s_edp_keys: - demand = self._EDP_dict[demand_ID] - kind = demand_ID[4:7] - if kind == 'RID': - r_max = demand.samples_DF.loc[ncID].values - if RID_max is None: - RID_max = r_max - else: - RID_max = np.max((RID_max, r_max), axis=0) - elif kind == 'PID': - d_max = demand.samples_DF.loc[ncID].values - if PID_max is None: - PID_max = d_max - else: - PID_max = np.max((PID_max, d_max), axis=0) - - if RID_max is None: - if PID_max is not None: - # we need to estimate residual drifts based on peak drifts - RID_max = np.zeros(NC_samples) - - # based on FEMA P-58 Vol. 1 5.4 - delta_y = self._AIM_in['general']['yield_drift'] - small = PID_max < delta_y - medium = PID_max < 4 * delta_y - large = PID_max >= 4 * delta_y - - RID_max[large] = PID_max[large] - 3 * delta_y - RID_max[medium] = 0.3 * (PID_max[medium] - delta_y) - RID_max[small] = 0. - - # add extra uncertainty - eps = np.random.normal(scale=0.2, size=len(ncID) - np.sum(small)) - RID_max[RID_max>0] = np.exp(np.log(RID_max[RID_max>0]) + eps) - - else: - # If no drift data is available, then we cannot provide an estimate - # of irreparability. We assume that all non-collapse realizations - # are repairable in this case. - return np.array([]) - - # get the probabilities of irreparability - # irrep_frag = self._AIM_in['general']['irreparable_res_drift'] - # RV_irrep = RandomVariable(ID=-1, dimension_tags=['RED_irrep', ], - # distribution_kind='lognormal', - # theta=irrep_frag['Median'], - # COV=irrep_frag['Beta'] ** 2. - # ) - # RED_irrep = RV_irrep.sample_distribution(NC_samples)['RED_irrep'].values - - RED_irrep = self._RV_reg.RV['RED_irrep'].samples_DF.loc[ncID].values - - # determine if the realizations are repairable - irreparable = RID_max > RED_irrep - irreparable_IDs = ncID[np.where(irreparable)[0]] - - return irreparable_IDs - - def _calc_repair_cost_and_time(self): - - idx = pd.IndexSlice - DVs = self._AIM_in['decision_variables'] - - DMG_by_FG_and_DS = self._DMG.groupby(level=[0, 2], axis=1).sum() - - repID = self._ID_dict['repairable'] - REP_samples = len(repID) - DV_COST = pd.DataFrame(np.zeros((REP_samples, len(self._DMG.columns))), - columns=self._DMG.columns, index=repID) - DV_TIME = DV_COST.copy() - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - - for d_i, d_tag in enumerate(DS_list): - dsg_i = int(d_tag[0]) - 1 - ds_i = int(d_tag[-1]) - 1 - - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - TOT_qnt = DMG_by_FG_and_DS.loc[repID, (FG._ID, d_tag)] - PG_qnt = self._DMG.loc[repID, - (FG._ID, PG_ID, d_tag)] - - # repair cost - if DVs['rec_cost']: - COST_samples = DS.unit_repair_cost(quantity=TOT_qnt) - DV_COST.loc[:, - (FG._ID, PG_ID, d_tag)] = COST_samples * PG_qnt - - if DVs['rec_time']: - # repair time - TIME_samples = DS.unit_reconstruction_time(quantity=TOT_qnt) - DV_TIME.loc[:, - (FG._ID, PG_ID, d_tag)] = TIME_samples * PG_qnt - - # sort the columns to enable index slicing later - if DVs['rec_cost']: - DV_COST = DV_COST.sort_index(axis=1, ascending=True) - else: - DV_COST = None - if DVs['rec_time']: - DV_TIME = DV_TIME.sort_index(axis=1, ascending=True) - else: - DV_TIME = None - - return DV_COST, DV_TIME - - def _calc_collapse_injuries(self): - - inj_lvls = self._inj_lvls - - # calculate injuries for the collapsed cases - # generate collapse modes - colID = self._ID_dict['collapse'] - C_samples = len(colID) - - if C_samples > 0: - - inj_lvls = self._inj_lvls - coll_modes = self._AIM_in['collapse_modes'] - P_keys = [cmk for cmk in coll_modes.keys()] - # P_modes = [coll_modes[k]['w'] for k in P_keys] - - # create the DataFrame that collects the decision variables - inj_cols = ['CM',] - for i in range(inj_lvls): - inj_cols.append('INJ-{}'.format(i)) - COL_INJ = pd.DataFrame(np.zeros((C_samples, inj_lvls + 1)), - columns=inj_cols, index=colID) - - # CM_RV = RandomVariable(ID=-1, dimension_tags=['CM', ], - # distribution_kind='multinomial', - # p_set=P_modes) - #COL_INJ['CM'] = CM_RV.sample_distribution(C_samples).values - COL_INJ['CM'] = self._RV_reg.RV['CM'].samples_DF.loc[colID].values - - # get the popoulation values corresponding to the collapsed cases - P_sel = self._POP.loc[colID] - - # calculate the exposure of the popoulation - for cm_i, cmk in enumerate(P_keys): - mode_IDs = COL_INJ[COL_INJ['CM'] == cm_i].index - CFAR = coll_modes[cmk]['affected_area'] - INJ = coll_modes[cmk]['injuries'] - for loc_i in range(len(CFAR)): - loc_label = 'LOC{}'.format(loc_i + 1) - if loc_label in P_sel.columns: - for inj_i in range(inj_lvls): - INJ_i = P_sel.loc[mode_IDs, loc_label] * CFAR[loc_i] * \ - INJ[inj_i] - COL_INJ.loc[mode_IDs, 'INJ-{}'.format(inj_i)] = ( - COL_INJ.loc[mode_IDs, 'INJ-{}'.format(inj_i)].add(INJ_i, axis=0).values) - - return COL_INJ - - else: - return None - - def _calc_non_collapse_injuries(self): - - idx = pd.IndexSlice - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - DV_INJ_dict = dict([(i, pd.DataFrame(np.zeros((NC_samples, - len(self._DMG.columns))), - columns=self._DMG.columns, - index=ncID)) - for i in range(self._inj_lvls)]) - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - - for d_i, d_tag in enumerate(DS_list): - dsg_i = int(d_tag[0]) - 1 - ds_i = int(d_tag[-1]) - 1 - - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - if DS._affected_area > 0.: - P_affected = (self._POP.loc[ncID] - * DS._affected_area / - self._AIM_in['general']['plan_area']) - - QNT = self._DMG.loc[:, (FG._ID, PG_ID, d_tag)] - - # estimate injuries - for i in range(self._inj_lvls): - INJ_samples = DS.unit_injuries(severity_level=i, - sample_size=NC_samples) - if INJ_samples is not None: - INJ_samples.index = ncID - P_aff_i = P_affected.loc[:, - 'LOC{}'.format(PG._location)] - INJ_i = INJ_samples * P_aff_i * QNT - DV_INJ_dict[i].loc[:, - (FG._ID, PG_ID, d_tag)] = INJ_i - - # remove the useless columns from DV_INJ - for i in range(self._inj_lvls): - DV_INJ = DV_INJ_dict[i] - DV_INJ_dict[i] = DV_INJ.loc[:, (DV_INJ != 0.0).any(axis=0)] - - # sort the columns to enable index slicing later - for i in range(self._inj_lvls): - DV_INJ_dict[i] = DV_INJ_dict[i].sort_index(axis=1, ascending=True) - - return DV_INJ_dict
- - -
[docs]class HAZUS_Assessment(Assessment): - """ - An Assessment class that implements the damage and loss assessment method - following the HAZUS Technical Manual and the HAZUS software. - - Parameters - ---------- - hazard: {'EQ', 'HU'} - Identifies the type of hazard. EQ corresponds to earthquake, HU - corresponds to hurricane. - default: 'EQ'. - inj_lvls: int - Defines the discretization used to describe the severity of injuries. - The HAZUS earthquake methodology uses 4 levels. - default: 4 - """ - def __init__(self, hazard='EQ', inj_lvls = 4, log_file=True): - super(HAZUS_Assessment, self).__init__(log_file) - - self._inj_lvls = inj_lvls - self._hazard = hazard - self._assessment_type = 'HAZUS_{}'.format(hazard) - - log_msg('type: HAZUS Assessment') - log_msg('hazard: {}'.format(self._hazard)) - log_msg(log_div) - -
[docs] def read_inputs(self, path_DL_input, path_EDP_input, verbose=False): - """ - Read and process the input files to describe the loss assessment task. - - Parameters - ---------- - path_DL_input: string - Location of the Damage and Loss input file. The file is expected to - be a JSON with data stored in a standard format described in detail - in the Input section of the documentation. - path_EDP_input: string - Location of the EDP input file. The file is expected to follow the - output formatting of Dakota. The Input section of the documentation - provides more information about the expected formatting. - verbose: boolean, default: False - If True, the method echoes the information read from the files. - This can be useful to ensure that the information in the file is - properly read by the method. - - """ - - super(HAZUS_Assessment, self).read_inputs(path_DL_input, - path_EDP_input, verbose) - - # assume that the asset is a building - # TODO: If we want to apply HAZUS to non-building assets, several parts of this methodology need to be extended. - BIM = self._AIM_in - - # read component and population data ---------------------------------- - # components - log_msg('\tDamage and Loss data files...') - self._FG_in = read_component_DL_data( - self._AIM_in['data_sources']['path_CMP_data'], BIM['components'], - assessment_type=self._assessment_type, verbose=verbose) - - data = self._FG_in - log_msg('\t\tAvailable Fragility Groups:') - for key, val in data.items(): - log_msg('\t\t\t{} demand:{} PGs: {}'.format(key, val['demand_type'], len(val['locations']))) - - # population (if needed) - if self._AIM_in['decision_variables']['injuries']: - - if BIM['general']['event_time'] is None: - log_msg('\tPopulation data files...') - POP = read_population_distribution( - self._AIM_in['data_sources']['path_POP_data'], - BIM['general']['occupancy_type'], - assessment_type=self._assessment_type, - verbose=verbose) - else: - POP = {'peak': None} - - POP['peak'] = BIM['general']['population'] - self._POP_in = POP
- -
[docs] def define_random_variables(self): - """ - Define the random variables used for loss assessment. - - Following the HAZUS methodology, only the groups of parameters below - are considered random. Correlations within groups are not considered - because each Fragility Group has only one Performance Group with a - in this implementation. - - 1. Demand (EDP) distribution - - Describe the uncertainty in the demands. Unlike other random variables, - the EDPs are characterized by the EDP input data provided earlier. All - EDPs are handled in one multivariate lognormal distribution. If more - than one sample is provided, the distribution is fit to the EDP data. - Otherwise, the provided data point is assumed to be the median value - and the additional uncertainty prescribed describes the dispersion. See - _create_RV_demands() for more details. - - 2. Fragility EDP limits - - Describe the uncertainty in the EDP limit that corresponds to - exceedance of each Damage State. EDP limits are grouped by Fragility - Groups. See _create_RV_fragilities() for details. - - """ - super(HAZUS_Assessment, self).define_random_variables() - - DEP = self._AIM_in['dependencies'] - - # create the random variables ----------------------------------------- - self._RV_dict = {} - - # quantities 100 - log_msg('\tQuantities...') - QNT_tags = self._create_RV_quantities(DEP['quantities']) - - # self._RV_dict.update({ - # 'QNT': self._create_RV_quantities(DEP['quantities'])}) - - if QNT_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(QNT_tags))) - self._QNT_dict = self._RV_reg.RVs(QNT_tags) - else: - log_msg('\t\tNone of the components have random quantities assigned') - - # fragilities 300 - log_msg('\tDamage State Limits...') - s_fg_keys = sorted(self._FG_in.keys()) - self._FF_dict = {} - log_msg('\t\tRV dimensions:') - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - FF_tags = self._create_RV_fragilities(c_id, comp, - DEP['fragilities']) - self._FF_dict.update(self._RV_reg.RVs(FF_tags)) - - # self._RV_dict.update({ - # 'FR-' + c_name: - # self._create_RV_fragilities(c_id, comp,DEP['fragilities'])}) - log_msg('\t\t\t{}: {}'.format(c_name, len(FF_tags))) - - # for key, val in self._RV_dict.items(): - # if 'FR-' in key: - # log_msg('\t\t\t{}: {}'.format(key, len(val.theta))) - - # damages (mutually exclusive cases and later simultaneous ones too) - log_msg('\tDamage States...') - DS_tags = self._create_RV_damage_states() - - if DS_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(DS_tags))) - self._DSG_dict = self._RV_reg.RVs(DS_tags) - else: - log_msg( - '\t\tNone of the components have random damage states assigned') - - # decision variables - DVs = self._AIM_in['decision_variables'] - - if DVs['rec_time'] or DVs['rec_cost']: - log_msg('\tReconstruction Costs and Times...') - REP_tags = self._create_RV_repairs( - DEP['rec_costs'], DEP['rec_times'], DEP['cost_and_time']) - - # self._RV_dict.update({ - # 'DV_REP': self._create_RV_repairs(DEP['rec_costs'], - # DEP['rec_times'], - # DEP['cost_and_time'])}) - - if REP_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(REP_tags))) - self._DV_REP_dict = self._RV_reg.RVs(REP_tags) - else: - log_msg('\t\tNone of the components have probabilistic ' - 'consequence functions') - - # demands 200 - log_msg('\tEDPs...') - - EDP_tags = self._create_RV_demands() - self._EDP_dict = self._RV_reg.RVs(EDP_tags) - #self._RV_dict.update({'EDP': self._create_RV_demands()}) - - # sample the random variables ----------------------------------------- - log_msg() - log_msg('Sampling the random variables...') - - realization_count = self._AIM_in['general']['realizations'] - - self._RV_reg.generate_samples(sample_size=realization_count) - - # is_coupled = self._AIM_in['general']['coupled_assessment'] - # - # s_rv_keys = sorted(self._RV_dict.keys()) - # for r_i in s_rv_keys: - # rv = self._RV_dict[r_i] - # if rv is not None: - # log_msg('\t{}...'.format(r_i)) - # rv.sample_distribution( - # sample_size=realization_count, - # preserve_order=((r_i=='EDP') and is_coupled)) - - log_msg('Sampling completed.')
- -
[docs] def define_loss_model(self): - """ - Create the stochastic loss model based on the inputs provided earlier. - - Following the HAZUS methodology, the component assemblies specified in - the Damage and Loss input file are used to create Fragility Groups. - Each Fragility Group corresponds to one assembly that represents every - component of the given type in the structure. See - _create_fragility_groups() for more details about the creation of - Fragility Groups. - - """ - super(HAZUS_Assessment, self).define_loss_model() - - # fragility groups - self._FG_dict = self._create_fragility_groups()
- - # demands - # self._EDP_dict = dict( - # [(tag, RandomVariableSubset(self._RV_dict['EDP'], tags=tag)) - # for tag in self._RV_dict['EDP']._dimension_tags]) - -
[docs] def calculate_damage(self): - """ - Characterize the damage experienced in each random event realization. - - First, the time of the event (month, weekday/weekend, hour) is randomly - generated for each realization. Given the event time, if we are interested - in injuries, the number of people present at each floor of the building is - sampled. The event time is only important if we are interested in injuries, - but it is calculated every time because it is not a large overhead and it - serves as the basis of indexing every other array. - - Second, the quantities of components in each damage state are estimated. - See _calc_damage() for more details on damage estimation. - - Finally, the realizations that led to collapse are filtered from the damage - data. - - """ - super(HAZUS_Assessment, self).calculate_damage() - - # event time - month, weekday, and hour realizations - log_msg('\tSampling event time...') - self._TIME = self._sample_event_time() - - # if we are interested in injuries... - if self._AIM_in['decision_variables']['injuries']: - # get the population conditioned on event time - log_msg('\tSampling the population...') - self._POP = self._get_population() - - # assume that all cases are non-collapse for damage assessment - non_collapsed_IDs = self._TIME.index.values.astype(int) - self._ID_dict.update({'non-collapse': non_collapsed_IDs}) - - # calculate damage - log_msg('\tCalculating the damage in the non-collapsed cases...') - self._DMG = self._calc_damage() - - # apply the prescribed damge logic - if self._AIM_in['damage_logic'] is not None: - for DL in self._AIM_in['damage_logic']: - if DL['type'] == 'propagate': - # identify the source and target FG ids - source_id = self._FG_dict[DL['source_FG']]._ID - target_id = self._FG_dict[DL['target_FG']]._ID - - # get the source DMG info - source_DMG = self._DMG.loc[:,source_id].groupby(level='DSG_DS', axis=1).sum() - - # get the PGs in the target FG - target_PGs = self._FG_dict[DL['target_FG']]._performance_groups - - # for each PG - for target_PG in target_PGs: - - # get the total quantity - if isinstance(target_PG._quantity, RandomVariable): - qnt_tot = target_PG._quantity.samples_DF.loc[self._DMG.index] - else: - qnt_tot = pd.DataFrame(np.ones(self._DMG.shape[0]) * target_PG._quantity, - index=self._DMG.index) - - # get all DSG_DS combinations in the target_PG - target_DSG_DS_list = self._DMG.loc[:, (target_id, target_PG._ID)].columns - - for source_DS, target_DS in DL['DS_links'].items(): - - # get the damaged quantity - qnt_dmg = self._DMG.loc[:, (target_id, target_PG._ID)].sum(axis=1).to_frame() - - # get the undamaged quantity - qnt_undmg = qnt_tot - qnt_dmg - - # get the mapping based on source_dmg and source DS - dmg_map = source_DMG.index.values[source_DMG.loc[:, source_DS] > 0.0] - - # get the damage states exceeded by target_DS - exc_DS = target_DSG_DS_list[:np.where(target_DSG_DS_list == target_DS)[0][0]+1] - - # sum up the damage in the exceeded DSs + no damage - exc_dmg = self._DMG.loc[dmg_map, idx[target_id, target_PG._ID, exc_DS]].sum(axis=1).to_frame() - - exc_dmg = exc_dmg + qnt_undmg.loc[dmg_map] - - # save this damage to the target_DS and zero to lower DSs - for ds_i in exc_DS: - self._DMG.loc[dmg_map, (target_id, target_PG._ID, ds_i)] = 0.0 - self._DMG.loc[dmg_map, (target_id, target_PG._ID, target_DS)] = exc_dmg.iloc[:,0].values - - else: - log_msg(f'Unkown damage logic: {DL["type"]}') - - # collapses are indicated by the ultimate DS in HAZUS - DMG_agg = self._DMG.groupby(level=2, axis=1).sum() - if '4_2' in DMG_agg.columns: - collapse_flag = DMG_agg['4_2']>0. - else: - collapse_flag = [False] * len(DMG_agg.index) - self._ID_dict.update({'collapse': - self._DMG[collapse_flag].index.values.astype(int)}) - # Note: Non-collapse IDs are not updated because we use the same - # procedure to estimate injuries (and potentially other decision vars) - # under collapse and non-collapse cases - - self._COL = pd.DataFrame( - np.zeros(self._AIM_in['general']['realizations']), - columns=['COL', ]) - self._COL.loc[collapse_flag, 'COL'] = 1
- -
[docs] def calculate_losses(self): - """ - Characterize the consequences of damage in each random event realization. - - For the sake of efficiency, only the decision variables requested in - the input file are estimated. The following consequences are handled by - this method for a HAZUS assessment: - - Reconstruction time and cost - Get a cost and time estimate for each Damage State in each Performance - Group. For more information about estimating reconstruction cost and - time see _calc_repair_cost_and_time() methods. - - Injuries - The number of injuries are based on the probability of injuries of - various severity specified in the component data file. For more - information about estimating injuries _calc_non_collapse_injuries. - - """ - super(HAZUS_Assessment, self).calculate_losses() - DVs = self._AIM_in['decision_variables'] - - # reconstruction cost and time - if DVs['rec_cost'] or DVs['rec_time']: - # all damages are considered repairable in HAZUS - repairable_IDs = self._ID_dict['non-collapse'] - self._ID_dict.update({'repairable': repairable_IDs}) - self._ID_dict.update({'irreparable': []}) - - # reconstruction cost and time for repairable cases - log_msg('\tCalculating Reconstruction cost and time...') - DV_COST, DV_TIME = self._calc_repair_cost_and_time() - - if DVs['rec_cost']: - self._DV_dict.update({'rec_cost': DV_COST}) - - if DVs['rec_time']: - self._DV_dict.update({'rec_time': DV_TIME}) - - # injuries due to collapse - if DVs['injuries']: - - # injuries in non-collapsed cases - log_msg('\tCalculating Injuries in Non-Collapsed Cases...') - DV_INJ_dict = self._calc_non_collapse_injuries() - - self._DV_dict.update({'injuries': DV_INJ_dict})
- -
[docs] def aggregate_results(self): - """ - - Returns - ------- - - """ - - log_msg(log_div) - log_msg('Aggregating results...') - - DVs = self._AIM_in['decision_variables'] - - MI_raw = [ - ('collapses', 'collapsed'), - ('highest damage state', 'S'), - ('highest damage state', 'NSA'), - ('highest damage state', 'NSD'), - ('reconstruction', 'cost impractical'), - ('reconstruction', 'cost'), - ] - - if DVs['rec_time']: - MI_raw += [ - #('reconstruction', 'time impractical?'), - ('reconstruction', 'time'), - ] - - if DVs['injuries']: - MI_raw += [ - ('inhabitants', ''), - ('injuries', 'sev1'), - ('injuries', 'sev2'), - ('injuries', 'sev3'), - ('injuries', 'sev4'), - ] - - if (DVs['injuries'] and - (self._AIM_in['general']['event_time'] != 'off')): - MI_raw += [ - ('event time', 'month'), - ('event time', 'weekday?'), - ('event time', 'hour') - ] - - ncID = self._ID_dict['non-collapse'] - colID = self._ID_dict['collapse'] - if DVs['rec_cost'] or DVs['rec_time']: - repID = self._ID_dict['repairable'] - irID = self._ID_dict['irreparable'] - - MI = pd.MultiIndex.from_tuples(MI_raw) - - SUMMARY = pd.DataFrame( - np.empty((self._AIM_in['general']['realizations'], len(MI))), - columns=MI) - SUMMARY[:] = np.NaN - - # event time (if needed) - if (DVs['injuries'] and - (self._AIM_in['general']['event_time'] != 'off')): - for prop in ['month', 'weekday?', 'hour']: - offset = 0 - if prop == 'month': - offset = 1 - SUMMARY.loc[:, ('event time', prop)] = \ - self._TIME.loc[:, prop] + offset - - # collapses - SUMMARY.loc[:, ('collapses', 'collapsed')] = self._COL.iloc[:, 0] - - # damage - # remove the ground failure FGs first - DMG = self._DMG.copy() - for FG_name in self._FG_dict.keys(): - if FG_name.startswith('GF'): - del DMG[self._FG_dict[FG_name]._ID] - - for comp_type in ['S', 'NSA', 'NSD']: - fg_list = [self._FG_dict[fg]._ID for fg in self._FG_dict.keys() if fg.startswith(comp_type)] - - if len(fg_list)>0: - - DMG_agg = DMG.loc[:, fg_list].groupby(level=['DSG_DS',], axis=1).sum() - - DMG_agg['DS'] = 0 - for c_i, col in enumerate(DMG_agg.columns): - if col != 'DS': - DMG_agg.loc[DMG_agg.loc[:,col] > 0.0, 'DS'] = int(col[0]) - - SUMMARY.loc[:, ('highest damage state', comp_type)] = DMG_agg['DS'] - - # reconstruction cost - if DVs['rec_cost']: - SUMMARY.loc[ncID, ('reconstruction', 'cost')] = \ - self._DV_dict['rec_cost'].sum(axis=1) - - repl_cost = self._AIM_in['general']['replacement_cost'] - SUMMARY.loc[colID, ('reconstruction', 'cost')] = repl_cost - - SUMMARY.loc[:, ('reconstruction', 'cost impractical')] = 0 - repair_impractical_IDs = SUMMARY.loc[ncID, ('reconstruction', 'cost')] > repl_cost - SUMMARY.loc[repair_impractical_IDs, - ('reconstruction', 'cost impractical')] = 1 - SUMMARY.loc[repair_impractical_IDs, - ('reconstruction', 'cost')] = repl_cost - - # only keep the non-collapsed cases in the DVs - self._DV_dict['rec_cost'] = self._DV_dict['rec_cost'].loc[self._COL['COL'] == 0] - - # reconstruction time - if DVs['rec_time']: - SUMMARY.loc[ncID, ('reconstruction', 'time')] = \ - self._DV_dict['rec_time'].sum(axis=1) - - repl_time = self._AIM_in['general']['replacement_time'] - SUMMARY.loc[colID, ('reconstruction', 'time')] = repl_time - - SUMMARY.loc[repair_impractical_IDs, ('reconstruction', 'time')] = repl_time - - # only keep the non-collapsed cases in the DVs - self._DV_dict['rec_time'] = self._DV_dict['rec_time'].loc[self._COL['COL'] == 0] - - # injuries - if DVs['injuries']: - - # inhabitants - SUMMARY.loc[:, ('inhabitants', '')] = self._POP.sum(axis=1) - - for sev_id in range(4): - # both collapse and non-collapse cases - sev_tag = 'sev{}'.format(sev_id+1) - SUMMARY.loc[ncID, ('injuries', sev_tag)] = \ - self._DV_dict['injuries'][sev_id].sum(axis=1) - - # keep only the non-collapse damage data - self._DMG = self._DMG.loc[self._COL['COL'] == 0] - - self._ID_dict['non-collapse'] = self._DV_dict['rec_cost'].index.values.astype(int) - - self._SUMMARY = SUMMARY.dropna(axis=1, how='all')
- -
[docs] def save_outputs(self, *args, **kwargs): - """ - - Returns - ------- - - """ - super(HAZUS_Assessment, self).save_outputs(*args, **kwargs)
- - def _create_correlation_matrix(self, rho_target, c_target=-1, - include_CSG=False, - include_DSG=False, include_DS=False): - """ - - Parameters - ---------- - rho_target - c_target - include_CSG - include_DSG - include_DS - - Returns - ------- - - """ - - # set the correlation structure - rho_FG, rho_PG, rho_LOC, rho_DIR, rho_CSG, rho_DS = np.zeros(6) - - if rho_target in ['FG', 'PG', 'DIR', 'LOC', 'CSG', 'ATC', 'DS']: - rho_DS = 1.0 - if rho_target in ['FG', 'PG', 'DIR', 'LOC', 'CSG']: - rho_CSG = 1.0 - if rho_target in ['FG', 'PG', 'DIR']: - rho_DIR = 1.0 - if rho_target in ['FG', 'PG', 'LOC']: - rho_LOC = 1.0 - if rho_target in ['FG', 'PG']: - rho_PG = 1.0 - if rho_target == 'FG': - rho_FG = 1.0 - - L_D_list = [] - dims = [] - DS_list = [] - ATC_rho = [] - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - if ((c_target == -1) or (c_id == c_target)): - c_L_D_list = [] - c_DS_list = [] - ATC_rho.append(comp['correlation']) - - if include_DSG: - DS_count = 0 - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - if include_DS: - DS_count += len(DSG['DS_set']) - else: - DS_count += 1 - else: - DS_count = 1 - - #for loc in comp['locations']: - # if include_CSG: - # u_dirs = comp['directions'] - # else: - # u_dirs = np.unique(comp['directions']) - # c_L_D_list.append([]) - # for dir_ in u_dirs: - # c_DS_list.append(DS_count) - # for ds_i in range(DS_count): - # c_L_D_list[-1].append(dir_) - - for loc_u in np.unique(comp['locations']): - c_L_D_list.append([]) - for loc, dir, csg_weights in zip(comp['locations'], - comp['directions'], - comp['csg_weights']): - if loc == loc_u: - if include_CSG: - csg_list = csg_weights - else: - csg_list = [1.0,] - for csg_ in csg_list: - c_DS_list.append(DS_count) - for ds_i in range(DS_count): - c_L_D_list[-1].append(dir) - - c_dims = sum([len(loc) for loc in c_L_D_list]) - dims.append(c_dims) - L_D_list.append(c_L_D_list) - DS_list.append(c_DS_list) - - rho = np.ones((sum(dims), sum(dims))) * rho_FG - - f_pos_id = 0 - for c_id, (c_L_D_list, c_dims, c_DS_list) in enumerate( - zip(L_D_list, dims, DS_list)): - c_rho = np.ones((c_dims, c_dims)) * rho_PG - - # dependencies btw directions - if rho_DIR != 0: - c_pos_id = 0 - for loc_D_list in c_L_D_list: - l_dim = len(loc_D_list) - c_rho[c_pos_id:c_pos_id + l_dim, - c_pos_id:c_pos_id + l_dim] = rho_DIR - c_pos_id = c_pos_id + l_dim - - # dependencies btw locations - if rho_LOC != 0: - flat_dirs = [] - [[flat_dirs.append(dir_i) for dir_i in dirs] for dirs in - c_L_D_list] - flat_dirs = np.array(flat_dirs) - for u_dir in np.unique(flat_dirs): - dir_ids = np.where(flat_dirs == u_dir)[0] - for i in dir_ids: - for j in dir_ids: - c_rho[i, j] = rho_LOC - - if ((rho_CSG != 0) or (rho_target == 'ATC')): - c_pos_id = 0 - if rho_target == 'ATC': - rho_to_use = float(ATC_rho[c_id]) - else: - rho_to_use = rho_CSG - for loc_D_list in c_L_D_list: - flat_dirs = np.array(loc_D_list) - for u_dir in np.unique(flat_dirs): - dir_ids = np.where(flat_dirs == u_dir)[0] - for i in dir_ids: - for j in dir_ids: - c_rho[c_pos_id + i, c_pos_id + j] = rho_to_use - c_pos_id = c_pos_id + len(loc_D_list) - - if rho_DS != 0: - c_pos_id = 0 - for l_dim in c_DS_list: - c_rho[c_pos_id:c_pos_id + l_dim, - c_pos_id:c_pos_id + l_dim] = rho_DS - c_pos_id = c_pos_id + l_dim - - rho[f_pos_id:f_pos_id + c_dims, - f_pos_id:f_pos_id + c_dims] = c_rho - f_pos_id = f_pos_id + c_dims - - np.fill_diagonal(rho, 1.0) - - return rho - - def _create_RV_quantities(self, rho_qnt): - """ - - Parameters - ---------- - rho_qnt - - Returns - ------- - - """ - - q_theta, q_sig, q_tags, q_dist = [np.array([]) for i in range(4)] - - # collect the parameters for each quantity dimension - s_fg_keys = sorted(self._FG_in.keys()) - for c_id in s_fg_keys: - comp = self._FG_in[c_id] - - u_dirs = np.unique(comp['directions']) - - #dir_weights = comp['dir_weights'] - #theta_list = [] - #[[theta_list.append(qnt * dw) - # for dw in dir_weights] for qnt in comp['quantities']] - - theta_list = comp['quantities'] - q_theta = np.append(q_theta, theta_list) - - dist_list = comp['distribution_kind'] - q_dist = np.append(q_dist, dist_list) - - cov_list = comp['cov'] - for theta, dk, cov in list(zip(theta_list, dist_list, cov_list)): - if dk == 'normal': - q_sig = np.append(q_sig, [cov*theta,]) - else: - q_sig = np.append(q_sig, [cov, ]) - - q_tags = np.append(q_tags, [f'{c_id}-QNT-{s_i}-{d_i}' for s_i, d_i - in list(zip(comp['locations'], - comp['directions']))]) - - rho = self._create_correlation_matrix(rho_qnt) - - if not np.all(q_dist=='N/A'): - # remove the unnecessary fields - to_remove = np.where(q_dist=='N/A')[0] - rho = np.delete(rho, to_remove, axis=0) - rho = np.delete(rho, to_remove, axis=1) - - q_theta, q_sig, q_dist, q_tags = [ - np.delete(q_vals, to_remove) for q_vals in [ - q_theta, q_sig, q_dist, q_tags]] - - dims = len(q_theta) - - # add lower limits to ensure only positive quantities - # zero is probably too low, and it might make sense to introduce upper - # limits as well - tr_lower = [0. for d in range(dims)] - tr_upper = [None for d in range(dims)] - - # Create the RVs - for q, (q_tag, theta_q, sig_q, dist_q) in enumerate( - zip(q_tags, q_theta, q_sig, q_dist)): - self._RV_reg.add_RV(RandomVariable( - name=q_tag, distribution=dist_q, - theta=[theta_q, sig_q], - truncation_limits=[tr_lower[q], tr_upper[q]] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'QNT_set', list(self._RV_reg.RVs(q_tags).values()), rho)) - - # q_COV = np.outer(q_sig, q_sig) * rho - # - # # to avoid truncations affecting other dimensions when rho_QNT is large, - # # assign a post-truncation correlation structure - # corr_ref = 'post' - # - # quantity_RV = RandomVariable(ID=100, - # dimension_tags=q_tag, - # distribution_kind=q_dist, - # theta=q_theta, - # COV=q_COV, - # truncation_limits=[tr_lower, tr_upper], - # corr_ref=corr_ref) - else: - q_tags = None - - return q_tags - - def _create_RV_fragilities(self, c_id, comp, rho_fr): - """ - - Parameters - ---------- - c_id - comp - rho_fr - - Returns - ------- - - """ - - # prepare the basic multivariate distribution data for one component subgroup considering all damage states - d_theta, d_sig, d_tags, d_distr_kind = [np.array([]) for i in range(4)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for d_id in s_dsg_keys: - DSG = comp['DSG_set'][d_id] - d_theta = np.append(d_theta, DSG['theta']) - d_sig = np.append(d_sig, DSG['sig']) - d_tags = np.append(d_tags, f"FF-{comp['ID']}-{d_id}") - d_distr_kind = np.append(d_distr_kind, DSG['distribution_kind']) - dims = len(d_theta) - - # get the total number of random variables for this fragility group - # TODO: add the possibility of multiple locations and directions - #rv_count = len(comp['locations']) * len(comp['directions']) * dims - rv_count = sum([len(csg_w) for csg_w in comp['csg_weights']]) * dims - - # create the (empty) input arrays for the RV - c_theta = np.zeros(rv_count) - c_tags = np.empty(rv_count, dtype=object) - c_sig = np.zeros(rv_count) - c_distr_kind = np.empty(rv_count, dtype=object) - - pos_id = 0 - #for l_id in comp['locations']: - # # for each location-direction pair) - # for d_id, __ in enumerate(comp['directions']): - # # for each component-subgroup - # c_theta[pos_id:pos_id + dims] = d_theta - # c_sig[pos_id:pos_id + dims] = d_sig - # c_tags[pos_id:pos_id + dims] = [ - # t + '-LOC-{}-CSG-{}'.format(l_id, d_id) for t in d_tags] - # c_distr_kind[pos_id:pos_id + dims] = d_distr_kind - # pos_id += dims - - for l_id, d_id, csg_list in zip(comp['locations'], comp['directions'], - comp['csg_weights']): - # for each location-direction pair) - for csg_id, __ in enumerate(csg_list): - # for each component-subgroup - c_theta[pos_id:pos_id + dims] = d_theta - c_sig[pos_id:pos_id + dims] = d_sig - c_tags[pos_id:pos_id + dims] = [ - t + '-LOC-{}-DIR-{}-CSG-{}'.format(l_id, d_id, csg_id) - for t in d_tags] - c_distr_kind[pos_id:pos_id + dims] = d_distr_kind - pos_id += dims - - # create the covariance matrix - #c_rho = self._create_correlation_matrix(rho_fr, c_target=c_id, - # include_DSG=True, - # include_CSG=True) - c_rho = np.ones((rv_count, rv_count)) - - if c_tags.size > 0: - - # Create the RVs - for c, (c_tag, sig_c, theta_c, dkind_c) in enumerate( - zip(c_tags, c_sig, c_theta, c_distr_kind)): - self._RV_reg.add_RV(RandomVariable( - name=c_tag, distribution=dkind_c, - theta=[theta_c, sig_c] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - f'FF_set_{c_id}', list(self._RV_reg.RVs(c_tags).values()), - c_rho)) - - # c_COV = np.outer(c_sig, c_sig) * c_rho - # - # fragility_RV = RandomVariable(ID=300 + c_id, - # dimension_tags=c_tags, - # distribution_kind=c_distr_kind, - # theta=c_theta, - # COV=c_COV) - else: - c_tags = None - - return c_tags - - def _create_RV_damage_states(self): - - d_tags, d_theta = [[] for i in range(2)] - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - if DSG['DS_set_kind'] == 'mutually exclusive': - - s_ds_keys = sorted(DSG['DS_set'].keys()) - DS_set = DSG['DS_set'] - DS_weights = [DS_set[ds_i]['weight'] for ds_i in s_ds_keys] - - for loc, dir_, csg_list in zip(comp['locations'], - comp['directions'], - comp['csg_weights']): - - for csg_id, __ in enumerate(csg_list): - - d_tags.append(f'DSG-{comp["ID"]}-{dsg_i}-LOC-{loc}-' - f'DIR-{dir_}-CSG-{csg_id}') - d_theta.append(DS_weights) - - if len(d_tags) > 0: - - # Create the RVs - for d, (d_tag, theta_d) in enumerate(zip(d_tags, d_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='multinomial', - theta=theta_d)) - - else: - d_tags = None - - return d_tags - - def _create_RV_repairs(self, rho_cost, rho_time, rho_cNt): - - # prepare the cost and time parts of the data separately - ct_sig, ct_tags, ct_dkind = [np.array([]) for i in range(3)] - for rho_target, name in zip([rho_cost, rho_time], ['cost', 'time']): - - f_sig, f_tag, f_dkind = [np.array([]) for i in range(3)] - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - d_sig, d_tag, d_dkind = [np.array([]) for i in range(3)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i in s_ds_keys: - DS = DSG['DS_set'][ds_i] - if ((f'repair_{name}' in DS.keys()) and - (DS[f'repair_{name}']['distribution_kind'] is not None)): - data = DS[f'repair_{name}'] - d_sig = np.append(d_sig, data['cov']) - d_dkind = np.append(d_dkind, - data['distribution_kind']) - else: - d_sig = np.append(d_sig, 0.0001) - d_dkind = np.append(d_dkind, None) - - d_tag = np.append( - d_tag, f'REP-{comp["ID"]}-{dsg_i}-{ds_i}-{name}') - #comp['ID'] + '-' + str( - # dsg_i) + '-' + str( - # ds_i) + '-{}'.format(name)) - - for loc, dir_ in zip(comp['locations'], comp['directions']): - f_sig = np.append(f_sig, d_sig) - f_dkind = np.append(f_dkind, d_dkind) - f_tag = np.append( - f_tag, [t + f'-LOC-{loc}-DIR-{dir_}' for t in d_tag]) - - ct_sig = np.append(ct_sig, f_sig) - ct_tags = np.append(ct_tags, f_tag) - ct_dkind = np.append(ct_dkind, f_dkind) - - rho_c = self._create_correlation_matrix(rho_cost, c_target=-1, - include_DSG=True, - include_DS=True) - rho_t = self._create_correlation_matrix(rho_time, c_target=-1, - include_DSG=True, - include_DS=True) - - dims = len(ct_tags) - ct_rho = np.zeros((dims, dims)) - - dims = dims // 2 - if rho_cNt == False: - ct_rho[:dims, :dims] = rho_c - ct_rho[dims:, dims:] = rho_t - else: - # In the special case of mixing perfect correlation between - # locations and directions, taking the envelope is not the - # appropriate solution. Instead, the LOC & DIR -> PG approach is - # used. - if (((rho_cost == 'LOC') and (rho_time =='DIR')) or - ((rho_cost == 'DIR') and (rho_time == 'LOC'))): - rho_ct = self._create_correlation_matrix('PG', c_target=-1, - include_DSG=True, - include_DS=True) - else: - # We use the envelope in every other case. - rho_ct = np.maximum(rho_c, rho_t) - - ct_rho[:dims, :dims] = rho_ct - ct_rho[dims:, dims:] = rho_ct - - # apply the same blocks to the off-diagonal positions - ct_rho[:dims, dims:] = rho_ct - ct_rho[dims:, :dims] = rho_ct - - # now remove the unnecessary fields - if not np.all(ct_dkind == None): - - to_remove = np.where(ct_dkind == None)[0] - ct_rho = np.delete(ct_rho, to_remove, axis=0) - ct_rho = np.delete(ct_rho, to_remove, axis=1) - - ct_dkind, ct_sig, ct_tags = [np.delete(ct_vals, to_remove) - for ct_vals in [ct_dkind, ct_sig, ct_tags]] - - # Create the RVs - for ct, (ct_tag, sig_ct, dkind_ct) in enumerate( - zip(ct_tags, ct_sig, ct_dkind)): - self._RV_reg.add_RV(RandomVariable( - name=ct_tag, distribution=dkind_ct, - theta=[1.0, sig_ct], - truncation_limits=[0., None] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'DV_REP_set', list(self._RV_reg.RVs(ct_tags).values()), ct_rho)) - - # ct_COV = np.outer(ct_sig, ct_sig) * ct_rho - # - # repair_RV = RandomVariable(ID=401, - # dimension_tags=ct_tags, - # distribution_kind=ct_dkind, - # theta=np.ones(len(ct_sig)), - # COV=ct_COV, - # corr_ref='post', - # truncation_limits=[np.zeros(len(ct_sig)), - # None]) - - else: - ct_tags = None - - return ct_tags - - def _create_fragility_groups(self): - - RVd = self._RV_dict - DVs = self._AIM_in['decision_variables'] - - # use the building replacement cost to calculate the absolute - # reconstruction cost for component groups - repl_cost = self._AIM_in['general']['replacement_cost'] - - # create a list for the fragility groups - FG_dict = dict() - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id in s_fg_keys: - log_msg('\t{}...'.format(c_id)) - comp = self._FG_in[c_id] - - FG_ID = len(FG_dict.keys()) + 1 - - # create a list for the performance groups - performance_groups = [] - - # one group for each of the stories prescribed by the user - PG_locations = comp['locations'] - PG_directions = comp['directions'] - PG_csg_lists = comp['csg_weights'] - PG_dists = comp['distribution_kind'] - PG_qnts = comp['quantities'] - for loc, dir_, csg_list, dist, qnt, in zip( - PG_locations, PG_directions, PG_csg_lists, PG_dists, PG_qnts): - PG_ID = 10000 * FG_ID + 10 * loc + dir_ - - # get the quantity - if dist == 'N/A': - QNT = qnt - else: - QNT = self._QNT_dict[f'{c_id}-QNT-{loc}-{dir_}'] - # QNT = RandomVariableSubset(RVd['QNT'], - # tags=[f'{c_id}-QNT-{loc}-{dir_}', ]) - - # create the damage objects - # consequences are calculated on a performance group level - - # create a list for the damage state groups and their tags - DSG_list = [] - d_tags = [] - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i, DSG_ID in enumerate(s_dsg_keys): - DSG = comp['DSG_set'][DSG_ID] - d_tags.append('FF-' + c_id + '-' + DSG_ID) - - # create a list for the damage states - DS_set = [] - - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i, DS_ID in enumerate(s_ds_keys): - DS = DSG['DS_set'][DS_ID] - - # create the consequence functions - # note: consequences in HAZUS are conditioned on - # damage with no added uncertainty - - if DVs['rec_cost'] and ('repair_cost' in DS.keys()): - data = DS['repair_cost'] - data_scaled = deepcopy(data) - data_scaled['medians'] = np.array(data_scaled['medians']) - data_scaled['medians'] *= repl_cost - - if len(data['medians']) > 1: - f_median = prep_bounded_multilinear_median_DV( - **{k: data_scaled.get(k, None) for k in - ('medians', 'quantities')}) - else: - f_median = prep_constant_median_DV( - data_scaled['medians'][0]) - - if data['distribution_kind'] is not None: - - cf_tag = 'REP-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-cost' + f'-LOC-{loc}-DIR-{dir_}' - - CF_RV = self._DV_REP_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_REP'], - # tags=cf_tag) - else: - CF_RV = None - - CF_cost = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_cost = None - - if DVs['rec_time'] and ('repair_time' in DS.keys()): - data = DS['repair_time'] - - if len(data['medians']) > 1: - f_median = prep_bounded_multilinear_median_DV( - **{k: data.get(k, None) for k in - ('medians', 'quantities')}) - else: - f_median = prep_constant_median_DV( - data['medians'][0]) - - if data['distribution_kind'] is not None: - - cf_tag = 'REP-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-time' + f'-LOC-{loc}-DIR-{dir_}' - - CF_RV = self._DV_REP_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_REP'], - # tags=cf_tag) - else: - CF_RV = None - - CF_time = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_time = None - - # note: no red tag in HAZUS assessments - - if (DVs['injuries']) and ('injuries' in DS.keys()): - CF_inj_set = [] - for inj_i, theta in enumerate( - DS['injuries']): - if theta > 0.: - f_median = prep_constant_median_DV( - theta) - CF_inj_set.append(ConsequenceFunction( - DV_median=f_median, - DV_distribution=None)) - else: - CF_inj_set.append(None) - else: - CF_inj_set = [None, ] - - DS_set.append(DamageState(ID=ds_i + 1, - description=DS[ - 'description'], - weight=DS['weight'], - repair_cost_CF=CF_cost, - reconstruction_time_CF=CF_time, - injuries_CF_set=CF_inj_set - )) - - # add the DSG to the list - DSG_list.append(DamageStateGroup(ID=dsg_i + 1, - DS_set=DS_set, - DS_set_kind=DSG[ - 'DS_set_kind'] - )) - - # create the fragility functions - FF_set = [] - #CSG_this = np.where(comp['directions'] == dir_)[0] - #PG_weights = np.asarray(comp['csg_weights'])[CSG_this] - # normalize the weights - #PG_weights /= sum(PG_weights) - for csg_id, __ in enumerate(csg_list): - # assign the appropriate random variable to the fragility - # function - ff_tags = [t + f'-LOC-{loc}-DIR-{dir_}-CSG-{csg_id}' - for t in d_tags] - EDP_limit = [self._FF_dict[ff_tag] for ff_tag in ff_tags] - # EDP_limit = RandomVariableSubset(RVd['FR-' + c_id], - # tags=ff_tags) - FF_set.append(FragilityFunction(EDP_limit)) - - # create the performance group - PG = PerformanceGroup(ID=PG_ID, - location=loc, - quantity=QNT, - fragility_functions=FF_set, - DSG_set=DSG_list, - csg_weights=csg_list, - direction=dir_ - ) - performance_groups.append(PG) - - # create the fragility group - FG = FragilityGroup(ID=FG_ID, - #kind=comp['kind'], - demand_type=comp['demand_type'], - performance_groups=performance_groups, - directional=comp['directional'], - correlation=comp['correlation'], - demand_location_offset=comp['offset'], - incomplete=comp['incomplete'], - name=str(FG_ID) + ' - ' + comp['ID'], - description=comp['description'], - unit=comp['unit'] - ) - - FG_dict.update({comp['ID']: FG}) - - return FG_dict - - def _sample_event_time(self): - - sample_count = self._AIM_in['general']['realizations'] - - # month - uniform distribution over [0,11] - month = np.random.randint(0, 12, size=sample_count) - - # weekday - binomial with p=5/7 - weekday = np.random.binomial(1, 5. / 7., size=sample_count) - - # hour - uniform distribution over [0,23] - hour = np.random.randint(0, 24, size=sample_count) - - data = pd.DataFrame(data={'month' : month, - 'weekday?': weekday, - 'hour' : hour}, - dtype=int) - - return data - - def _get_population(self): - """ - Use the population characteristics to generate random population samples. - - Returns - ------- - - """ - POPin = self._POP_in - TIME = self._TIME - - POP = pd.DataFrame( - np.ones((len(TIME.index), len(POPin['peak']))) * POPin['peak'], - columns=['LOC' + str(loc + 1) - for loc in range(len(POPin['peak']))]) - - # if there is a temporal population model available... - if 'weekday' in POPin.keys(): - weekdays = TIME[TIME['weekday?'] == 1].index - weekends = TIME[~TIME.index.isin(weekdays)].index - - for col in POP.columns.values: - POP.loc[weekdays, col] = ( - POP.loc[weekdays, col] * - np.array(POPin['weekday']['daily'])[ - TIME.loc[weekdays, 'hour'].values.astype(int)] * - np.array(POPin['weekday']['monthly'])[ - TIME.loc[weekdays, 'month'].values.astype(int)]) - - POP.loc[weekends, col] = ( - POP.loc[weekends, col] * - np.array(POPin['weekend']['daily'])[ - TIME.loc[weekends, 'hour'].values.astype(int)] * - np.array(POPin['weekend']['monthly'])[ - TIME.loc[weekends, 'month'].values.astype(int)]) - - return POP - - def _calc_damage(self): - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - - FG_dmg_list = [] - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - log_msg('\t\t{}...'.format(fg_id)) - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = [] - for DSG in PG_set[0]._DSG_set: - for DS in DSG._DS_set: - DS_list.append(str(DSG._ID) + '_' + str(DS._ID)) - d_count = len(DS_list) - - MI = pd.MultiIndex.from_product([[FG._ID, ], - [pg._ID for pg in PG_set], - DS_list], - names=['FG', 'PG', 'DSG_DS']) - - FG_damages = pd.DataFrame(np.zeros((NC_samples, len(MI))), - columns=MI, - index=ncID) - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - if isinstance(PG._quantity, RandomVariable): - PG_qnt = PG._quantity.samples_DF.loc[ncID] - else: - PG_qnt = pd.Series(np.ones(NC_samples) * PG._quantity, - index=ncID) - - # get the corresponding demands - if not FG._directional: - demand_ID_list = [] - - for demand_ID in self._EDP_dict.keys(): - if demand_ID[4:7] == FG._demand_type: - demand_data = demand_ID.split('-') - if int(demand_data[3]) == PG._location + FG._demand_location_offset: - demand_ID_list.append(demand_ID) - - EDP_samples = self._EDP_dict[demand_ID_list[0]].samples_DF.loc[ncID] - if len(demand_ID_list)>1: - for demand_ID in demand_ID_list[1:]: - new_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - EDP_samples = np.maximum(new_samples.values, - EDP_samples.values) - - else: - demand_ID = ('EDP-' + FG._demand_type + - '-LOC-' + str(PG._location + FG._demand_location_offset) + - '-DIR-' + str(PG._direction)) - - if demand_ID in self._EDP_dict.keys(): - EDP_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - else: - # If the required demand is not available, then we are most - # likely analyzing a 3D structure using results from a 2D - # simulation. The best thing we can do in that particular - # case is to use the EDP from the 1 direction for all other - # directions. - demand_ID = ('EDP-' + FG._demand_type + - '-LOC-' + str(PG._location + FG._demand_location_offset) + '-DIR-1') - EDP_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - - csg_w_list = np.array(PG._csg_weights) - for csg_i, csg_w in enumerate(csg_w_list): - DSG_df = PG._FF_set[csg_i].DSG_given_EDP(EDP_samples) - - for DSG in PG._DSG_set: - in_this_DSG = DSG_df[DSG_df.values == DSG._ID].index - if DSG._DS_set_kind == 'single': - DS = DSG._DS_set[0] - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - FG_damages.loc[in_this_DSG, - (FG._ID, PG_ID, DS_tag)] += csg_w - elif DSG._DS_set_kind == 'mutually exclusive': - mut_ex_id = f'DSG-{fg_id}-DSG-{DSG._ID}-' \ - f'LOC-{PG._location}-' \ - f'DIR-{PG._direction}-CSG-{csg_i}' - DS_df = self._DSG_dict[mut_ex_id].samples_DF.loc[ - in_this_DSG] - - # DS_weights = [DS._weight for DS in DSG._DS_set] - # DS_RV = RandomVariable( - # ID=-1, dimension_tags=['me_DS', ], - # distribution_kind='multinomial', - # p_set=DS_weights) - # DS_df = DS_RV.sample_distribution( - # len(in_this_DSG)) + 1 - - for DS in DSG._DS_set: - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - in_this_DS = DS_df[DS_df.values == DS._ID-1].index - FG_damages.loc[in_this_DS, - (FG._ID, PG_ID, DS_tag)] += csg_w - elif DSG._DS_set_kind == 'simultaneous': - DS_weights = [DS._weight for DS in DSG._DS_set] - DS_df = np.random.uniform( - size=(len(in_this_DSG), len(DS_weights))) - which_DS = DS_df < DS_weights - any_DS = np.any(which_DS, axis=1) - no_DS_ids = np.where(any_DS == False)[0] - - while len(no_DS_ids) > 0: - DS_df_add = np.random.uniform( - size=(len(no_DS_ids), len(DS_weights))) - which_DS_add = DS_df_add < DS_weights - which_DS[no_DS_ids] = which_DS_add - - any_DS = np.any(which_DS_add, axis=1) - no_DS_ids = no_DS_ids[ - np.where(any_DS == False)[0]] - - for ds_i, DS in enumerate(DSG._DS_set): - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - in_this_DS = which_DS[:, ds_i] - FG_damages.loc[in_this_DSG[in_this_DS], ( - FG._ID, PG_ID, DS_tag)] += csg_w - - else: - raise ValueError( - "Unknown damage state type: {}".format( - DSG._DS_set_kind) - ) - - FG_damages.iloc[:, pg_i * d_count:(pg_i + 1) * d_count] = \ - FG_damages.iloc[:, pg_i * d_count:(pg_i + 1) * d_count].values * PG_qnt.values.reshape(-1, *[1]) - - - FG_dmg_list.append(FG_damages) - - DMG = pd.concat(FG_dmg_list, axis=1) - - DMG.index = ncID - - # sort the columns to enable index slicing later - DMG = DMG.sort_index(axis=1, ascending=True) - - return DMG - - def _calc_repair_cost_and_time(self): - - idx = pd.IndexSlice - DVs = self._AIM_in['decision_variables'] - - DMG_by_FG_and_DS = self._DMG.groupby(level=[0, 2], axis=1).sum() - - repID = self._ID_dict['repairable'] - DV_COST = self._DMG.loc[repID, :].copy() - DV_TIME = DV_COST.copy() - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - log_msg('\t\t{}...'.format(fg_id)) - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - for d_i, d_tag in enumerate(DS_list): - - dsg_i = int(d_tag[0]) - 1 - ds_i = int(d_tag[-1]) - 1 - - TOT_qnt = DMG_by_FG_and_DS.loc[repID, (FG._ID, d_tag)] - - # check what can we expect later - # pull the DS from the first PG - DS_test = PG_set[0]._DSG_set[dsg_i]._DS_set[ds_i] - - if DVs['rec_cost']: - COST_samples = DS_test.unit_repair_cost(quantity=TOT_qnt) - - if COST_samples is None: - # there are no costs assigned to this DS - DV_COST.drop(DV_COST.loc[:, idx[FG._ID, :, d_tag]].columns, axis=1, inplace=True) - - elif isinstance(COST_samples, pd.Series): - # the assigned costs are random numbers - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - COST_samples = DS.unit_repair_cost(quantity=TOT_qnt).values - - DV_COST.loc[:,(FG._ID, PG_ID, d_tag)] = DV_COST.loc[:, (FG._ID, PG_ID, d_tag)].values * COST_samples - - else: - # the assigned costs are identical for all realizations - DV_COST.loc[:, idx[FG._ID, :, d_tag]] *= COST_samples - - if DVs['rec_time']: - TIME_samples = DS_test.unit_reconstruction_time(quantity=TOT_qnt) - - if TIME_samples is None: - # there are no repair times assigned to this DS - DV_TIME.drop(DV_TIME.loc[:, idx[FG._ID, :, d_tag]].columns, axis=1, inplace=True) - - elif isinstance(TIME_samples, pd.Series): - # the assigned repair times are random numbers - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - TIME_samples = DS.unit_reconstruction_time(quantity=TOT_qnt).values - - DV_TIME.loc[:, (FG._ID, PG_ID, d_tag)] = DV_TIME.loc[:, (FG._ID, PG_ID, d_tag)].values * TIME_samples - - else: - # the assigned repair times are identical for all realizations - DV_TIME.loc[:, idx[FG._ID, :, d_tag]] *= TIME_samples - - # sort the columns to enable index slicing later - if DVs['rec_cost']: - DV_COST = DV_COST.sort_index(axis=1, ascending=True) - else: - DV_COST = None - if DVs['rec_time']: - DV_TIME = DV_TIME.sort_index(axis=1, ascending=True) - else: - DV_TIME = None - - return DV_COST, DV_TIME - - def _calc_non_collapse_injuries(self): - - idx = pd.IndexSlice - - ncID = self._ID_dict['non-collapse'] - P_affected = self._POP.loc[ncID] - - NC_samples = len(ncID) - DV_INJ_dict = dict( - [(i, self._DMG.loc[ncID, :].copy()) for i in range(self._inj_lvls)] - ) - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - log_msg('\t\t{}...'.format(fg_id)) - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - for i in range(self._inj_lvls): - - for d_i, d_tag in enumerate(DS_list): - dsg_i = int(d_tag[0]) - 1 - ds_i = int(d_tag[-1]) - 1 - - # check what can we expect later - # pull the DS from the first PG - DS_test = PG_set[0]._DSG_set[dsg_i]._DS_set[ds_i] - INJ_samples = DS_test.unit_injuries(severity_level=i, - sample_size=NC_samples) - - if INJ_samples is None: - # there are no injuries assigned to this DS - DV_INJ_dict[i].drop(DV_INJ_dict[i].loc[:, idx[FG._ID, :, d_tag]].columns, axis=1, inplace=True) - continue - - elif isinstance(INJ_samples, pd.Series): - # the assigned injuries are random numbers - rnd_inj = True - - else: - # the assigned injuries are identical for all realizations - rnd_inj = False - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - # get injury samples if needed - if rnd_inj: - INJ_samples = DS.unit_injuries( - severity_level=i, sample_size=NC_samples).values - - P_aff_i = P_affected.loc[:,'LOC{}'.format(PG._location)].values * INJ_samples - DV_INJ_dict[i].loc[:, (FG._ID, PG_ID, d_tag)] = DV_INJ_dict[i].loc[:, (FG._ID, PG_ID, d_tag)].values * P_aff_i - - # remove the useless columns from DV_INJ - for i in range(self._inj_lvls): - DV_INJ = DV_INJ_dict[i] - DV_INJ_dict[i] = DV_INJ.loc[:, (DV_INJ != 0.0).any(axis=0)] - - # sort the columns to enable index slicing later - for i in range(self._inj_lvls): - DV_INJ_dict[i] = DV_INJ_dict[i].sort_index(axis=1, ascending=True) - - return DV_INJ_dict
-
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/db.html b/docs/_modules/pelicun/db.html deleted file mode 100644 index 0dc83406b..000000000 --- a/docs/_modules/pelicun/db.html +++ /dev/null @@ -1,2149 +0,0 @@ - - - - - - - - - - pelicun.db — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.db
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.db

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-This module has classes and methods to manage databases used by pelicun.
-
-.. rubric:: Contents
-
-.. autosummary::
-
-    convert_jsons_to_table
-    save_to_standard_HDF
-    convert_json_files_to_HDF
-    convert_Series_to_dict
-
-    convert_P58_data_to_json
-    create_HAZUS_EQ_json_files
-    create_HAZUS_EQ_story_json_files
-    create_HAZUS_EQ_PGA_json_files
-    create_HAZUS_HU_json_files
-
-"""
-
-from .base import *
-from pathlib import Path
-import json
-import xml.etree.ElementTree as ET
-import shutil
-
-
-
[docs]def dict_generator(indict, pre=None): - """ - Lists all branches of a tree defined by a dictionary. - - The dictionary can have nested dictionaries and lists. When encountering a - list, its elements are returned as separate branches with each element's id - created as a combination of the parent key and #i where i stands for the - element number in the list. - - This method can process a json file and break it up into independent - branches. - - """ - pre = pre[:] if pre else [] - if isinstance(indict, dict): - for key, value in indict.items(): - if isinstance(value, dict): - for d in dict_generator(value, pre + [key]): - yield d - elif isinstance(value, list) or isinstance(value, tuple): - for v_id, v in enumerate(value): - for d in dict_generator(v, pre + [key + f'#{v_id}']): - yield d - else: - yield pre + [key, value] - else: - yield pre + [indict]
- - -
[docs]def get_val_from_dict(indict, col): - """ - Gets the value from a branch of a dictionary. - - The dictionary can have nested dictionaries and lists. When walking through - lists, #i in the branch data identifies the ith element of the list. - - This method can be used to travel branches of a dictionary previously - defined by the dict_generator method above. - - """ - - val = indict - - for col_i in col: - if col_i != ' ': - if '#' in col_i: - col_name, col_id = col_i.split('#') - col_id = int(col_id) - if (col_name in val.keys()) and (col_id < len(val[col_name])): - val = val[col_name][int(col_id)] - else: - return None - - elif col_i in val.keys(): - val = val[col_i] - else: - return None - - return val
- -def convert_jsons_to_table(json_id_list, json_list, json_template): - # Define the header for the data table based on the template structure - header = np.array( - [[col[:-1], len(col[:-1])] for col in dict_generator(json_template)]) - lvls = max(np.transpose(header)[1]) - header = [col + (lvls - size) * [' ', ] for col, size in header] - - # Use the header to initialize the DataFrame that will hold the data - MI = pd.MultiIndex.from_tuples(header) - - json_DF = pd.DataFrame(columns=MI, index=json_id_list) - json_DF.index.name = 'ID' - - # Load the data into the DF - for json_id, json_data in zip(json_id_list, json_list): - - for col in json_DF.columns: - - val = get_val_from_dict(json_data, col) - - if val is not None: - json_DF.at[json_id, col] = val - - # Remove empty rows and columns - json_DF = json_DF.dropna(axis=0, how='all') - json_DF = json_DF.dropna(axis=1, how='all') - - # Set the dtypes for the columns based on the template - for col in json_DF.columns: - dtype = get_val_from_dict(json_template, col) - - if dtype != 'string': - try: - json_DF[col] = json_DF[col].astype(dtype) - except: - print(col, dtype) - else: - json_DF[col] = json_DF[col].apply(str) - - return json_DF - - -
[docs]def save_to_standard_HDF(df, name, target_path, mode='w'): - """ - Saves a DataFrame in a standard HDF format using h5py. - - """ - import h5py # import here to avoid an issue on Stampede2 - - df = df.T - - hf = h5py.File(target_path, mode) - - #try: - if True: - # save each row (i.e., column of FG_df) as a separate dataset in the file - for row_id, row in df.iterrows(): - row = row.convert_dtypes() - - # create a tree that identifies the column in the hierarchy - row_name = name - for label in row_id: - if label != " ": - row_name += f'/{label}' - - # perform the appropriate type conversion before saving - if row.dtype == np.float64: - values = row.values.astype(float) - - hf.create_dataset(row_name, data=values) - - elif row.dtype == pd.StringDtype(): - # Strings are saved as ASCII strings so that the files can be - # opened with any tool on any platform. Non-ASCII characters - # are replaced by a backslash-escaped UTF8 identifier. - values = row.values.astype(str) - values = np.char.encode(values, encoding='ASCII', - errors='backslashreplace') - - hf.create_dataset(row_name, data=values) - - elif row.dtype in [pd.BooleanDtype(), pd.Int64Dtype()]: - row.fillna(-1, inplace=True) - values = row.values.astype(int) - - hf.create_dataset(row_name, data=values) - - else: - print("unknown dtype: ", row.dtype) - - # finally, save the index - values = df.columns.values.astype(str) - values = np.char.encode(values, encoding='ASCII', - errors='backslashreplace') - hf.create_dataset(f'{name}/index', data=values) - - #except: - # show_warning("Error while trying to save standard HDF5 file.") - - hf.close()
- - -
[docs]def convert_json_files_to_HDF(data_source_dir, DL_dir, db_name): - """ - Converts data from json files to a single HDF5 file - - """ - - # Start with the fragility and consequence data - we'll call it data - - DL_dir = Path(DL_dir).resolve() - data_source_dir = Path(data_source_dir).resolve() - - # get a list of json files to convert - FG_ID_list = [filename[:-5] for filename in os.listdir(DL_dir / 'DL json')] - - # We will use a template.json to define the schema for the jsons and the - # header for the data table. - with open(data_source_dir / 'DL_template.json', 'r') as f: - FG_template = json.load(f) - - FG_list = [] - DL_json_dir = DL_dir / 'DL json' - for FG_i in FG_ID_list: - with open(DL_json_dir / f'{FG_i}.json', 'r') as f: - FG_list.append(json.load(f)) - - FG_df = convert_jsons_to_table(FG_ID_list, FG_list, FG_template) - - # start with saving the data in standard HDF5 format - save_to_standard_HDF(FG_df, name='data_standard', - target_path=DL_dir / f'{db_name}.hdf') - - # then also save it using PyTables for quick access and slicing - FG_df.to_hdf(DL_dir / f'{db_name}.hdf', 'data', mode='a', format='table', - complevel=1, complib='blosc:snappy') - - # Now add the population distribution data - we'll call it pop - - # Only do this if there is population data - try: - with open(DL_dir / 'population.json', 'r') as f: - pop = json.load(f) - - pop_ID_list = list(pop.keys()) - - pop_data = [pop[key] for key in pop.keys()] - - with open(data_source_dir / 'pop_template.json', 'r') as f: - pop_template = json.load(f) - - pop_df = convert_jsons_to_table(pop_ID_list, pop_data, pop_template) - - save_to_standard_HDF(pop_df, name='pop_standard', - target_path=DL_dir / f'{db_name}.hdf', mode='a') - - pop_df.to_hdf(DL_dir / f'{db_name}.hdf', 'pop', mode='a', format='table', - complevel=1, complib='blosc:snappy') - - except: - pass
- -
[docs]def convert_Series_to_dict(comp_Series): - """ - Converts data from a table to a json file - - """ - - comp_Series = comp_Series.dropna(how='all') - - comp_dict = {} - - for branch in comp_Series.index: - - nested_dict = comp_dict - parent_dict = None - parent_val = None - parent_id = None - - for val in branch: - if val != ' ': - if '#' in val: - val, list_id = val.split('#') - list_id = int(list_id) - else: - list_id = None - - if val not in nested_dict.keys(): - if list_id is not None: - nested_dict.update({val: []}) - else: - nested_dict.update({val: {}}) - - if list_id is not None: - if list_id > len(nested_dict[val]) - 1: - nested_dict[val].append({}) - parent_dict = nested_dict - nested_dict = nested_dict[val][list_id] - - parent_id = list_id - - else: - parent_dict = nested_dict - nested_dict = nested_dict[val] - - parent_val = val - - if isinstance(parent_dict[parent_val], dict): - parent_dict[parent_val] = comp_Series[branch] - else: - parent_dict[parent_val][parent_id] = comp_Series[branch] - - return comp_dict
- -
[docs]def convert_P58_data_to_json(data_dir, target_dir): - """ - Create JSON data files from publicly available P58 data. - - FEMA P58 damage and loss information is publicly available in an Excel - spreadsheet and also in a series of XML files as part of the PACT tool. - Those files are copied to the resources folder in the pelicun repo. Here - we collect the available information on Fragility Groups from those files - and save the damage and loss data in the common SimCenter JSON format. - - A large part of the Fragility Groups in FEMA P58 do not have complete - damage and loss information available. These FGs are clearly marked with - an incomplete flag in the JSON file and the 'Undefined' value highlights - the missing pieces of information. - - Parameters - ---------- - data_dir: string - Path to the folder with the FEMA P58 Excel file and a 'DL xml' - subfolder in it that contains the XML files. - target_dir: string - Path to the folder where the JSON files shall be saved. - - """ - - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None - - convert_unit = { - 'Unit less': 'ea', - 'Radians' : 'rad', - 'g' : 'g', - 'meter/sec': 'mps' - - } - - convert_DSG_type = { - 'MutEx': 'MutuallyExclusive', - 'Simul': 'Simultaneous' - } - - def decode_DS_Hierarchy(DSH): - - if 'Seq' == DSH[:3]: - DSH = DSH[4:-1] - - DS_setup = [] - - while len(DSH) > 0: - if DSH[:2] == 'DS': - DS_setup.append(DSH[:3]) - DSH = DSH[4:] - elif DSH[:5] in ['MutEx', 'Simul']: - closing_pos = DSH.find(')') - subDSH = DSH[:closing_pos + 1] - DSH = DSH[closing_pos + 2:] - - DS_setup.append([subDSH[:5]] + subDSH[6:-1].split(',')) - - return DS_setup - - def parse_DS_xml(DS_xml): - CFG = DS_xml.find('ConsequenceGroup') - CFG_C = CFG.find('CostConsequence') - CFG_T = CFG.find('TimeConsequence') - - repair_cost = dict( - Amount=[float(CFG_C.find('MaxAmount').text), - float(CFG_C.find('MinAmount').text)], - Quantity=[float(CFG_C.find('LowerQuantity').text), - float(CFG_C.find('UpperQuantity').text)], - CurveType=CFG_C.find('CurveType').text, - Beta=float(CFG_C.find('Uncertainty').text), - Bounds=[0., 'None'] - ) - if repair_cost['Amount'] == [0.0, 0.0]: - repair_cost['Amount'] = 'Undefined' - - repair_time = dict( - Amount=[float(CFG_T.find('MaxAmount').text), - float(CFG_T.find('MinAmount').text)], - Quantity=[float(CFG_T.find('LowerQuantity').text), - float(CFG_T.find('UpperQuantity').text)], - CurveType=CFG_T.find('CurveType').text, - Beta=float(CFG_T.find('Uncertainty').text), - Bounds=[0., 'None'] - ) - if repair_time['Amount'] == [0.0, 0.0]: - repair_time['Amount'] = 'Undefined' - - return repair_cost, repair_time - - def is_float(s): - try: - if type(s) == str and s[-1] == '%': - s_f = float(s[:-1]) / 100. - else: - s_f = float(s) - if np.isnan(s_f): - return False - else: - return True - except ValueError: - return False - - src_df = pd.read_excel(data_dir / 'PACT_fragility_data.xlsx') - ID_list = src_df['NISTIR Classification'] - - XML_list = [f for f in os.listdir(data_dir / 'DL xml') if f.endswith('.xml')] - - incomplete_count = 0 - - for filename in XML_list: - - comp_ID = filename[:-4] - - #try: - if True: - tree = ET.parse((data_dir / 'DL xml') / f'{comp_ID}.xml') - root = tree.getroot() - - # correct for the error in the numbering of RC beams - if (comp_ID[:5] == 'B1051') and ( - comp_ID[-1] not in str([1, 2, 3, 4])): - comp_ID = 'B1042' + comp_ID[5:] - - row = src_df.loc[np.where(ID_list == comp_ID)[0][0], :] - - json_output = {} - incomplete = False - - json_output.update({'Name': row['Component Name']}) - - QU = row['Fragility Unit of Measure'] - QU = QU.split(' ') - if is_float(QU[1]): - if QU[0] in ['TN', 'AP', 'CF', 'KV']: - QU[0] = 'ea' - QU[1] = 1 - json_output.update({'QuantityUnit': [int(QU[1]), QU[0]]}) - else: - json_output.update({'QuantityUnit': [0., 'Undefined']}) - incomplete = True - - json_output.update({'Directional': row['Directional?'] in ['YES']}) - json_output.update({'Correlated': row['Correlated?'] in ['YES']}) - - json_output.update({ - 'EDP': { - 'Type' : row['Demand Parameter (value):'], - 'Unit' : [1, - convert_unit[row['Demand Parameter (unit):']]], - 'Offset': int( - row['Demand Location (use floor above? Yes/No)'] in [ - 'Yes']) - } - }) - - json_output.update({ - 'GeneralInformation': { - 'ID' : row['NISTIR Classification'], - 'Description': row['Component Description'], - 'Author' : row['Author'], - 'Official' : root.find('Official').text in ['True', - 'true'], - 'DateCreated': root.find('DateCreated').text, - 'Approved' : root.find('Approved').text in ['True', - 'true'], - 'Incomplete' : root.find('Incomplete').text in ['True', - 'true'], - 'Notes' : row['Comments / Notes'] - } - }) - for key in json_output['GeneralInformation'].keys(): - if json_output['GeneralInformation'][key] is np.nan: - json_output['GeneralInformation'][key] = 'Undefined' - - json_output.update({ - 'Ratings': { - 'DataQuality' : row['Data Quality'], - 'DataRelevance': row['Data Relevance'], - 'Documentation': row['Documentation Quality'], - 'Rationality' : row['Rationality'], - } - }) - for key in json_output['Ratings'].keys(): - if json_output['Ratings'][key] is np.nan: - json_output['Ratings'][key] = 'Undefined' - - DSH = decode_DS_Hierarchy(row['DS Hierarchy']) - - json_output.update({'DSGroups': []}) - - for DSG in DSH: - if DSG[0] in ['MutEx', 'Simul']: - mu = row['DS {}, Median Demand'.format(DSG[1][-1])] - beta = row[ - 'DS {}, Total Dispersion (Beta)'.format(DSG[1][-1])] - if is_float(mu) and is_float(beta): - json_output['DSGroups'].append({ - 'MedianEDP' : float(mu), - 'Beta' : float(beta), - 'CurveType' : 'LogNormal', - 'DSGroupType' : convert_DSG_type[DSG[0]], - 'DamageStates': DSG[1:] - }) - else: - json_output['DSGroups'].append({ - 'MedianEDP' : float(mu) if is_float( - mu) else 'Undefined', - 'Beta' : float(beta) if is_float( - beta) else 'Undefined', - 'CurveType' : 'LogNormal', - 'DSGroupType' : convert_DSG_type[DSG[0]], - 'DamageStates': DSG[1:] - }) - incomplete = True - else: - mu = row['DS {}, Median Demand'.format(DSG[-1])] - beta = row['DS {}, Total Dispersion (Beta)'.format(DSG[-1])] - if is_float(mu) and is_float(beta): - json_output['DSGroups'].append({ - 'MedianEDP' : float(mu), - 'Beta' : float(beta), - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [DSG], - }) - else: - json_output['DSGroups'].append({ - 'MedianEDP' : float(mu) if is_float( - mu) else 'Undefined', - 'Beta' : float(beta) if is_float( - beta) else 'Undefined', - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [DSG], - }) - incomplete = True - - need_INJ = False - need_RT = False - for DSG in json_output['DSGroups']: - DS_list = DSG['DamageStates'] - DSG['DamageStates'] = [] - for DS in DS_list: - - # avoid having NaN as repair measures - repair_measures = row['DS {}, Repair Description'.format(DS[-1])] - if not isinstance(repair_measures, str): - repair_measures = "" - - DSG['DamageStates'].append({ - 'Weight' : - float(row['DS {}, Probability'.format(DS[-1])]), - 'LongLeadTime' : - int(row['DS {}, Long Lead Time'.format(DS[-1])] in [ - 'YES']), - 'Consequences' : {}, - 'Description' : - row['DS {}, Description'.format(DS[-1])], - 'RepairMeasures': repair_measures - }) - - IMG = row['DS{}, Illustrations'.format(DS[-1])] - if IMG not in ['none', np.nan]: - DSG['DamageStates'][-1].update({'DamageImageName': IMG}) - - AA = row['DS {} - Casualty Affected Area'.format(DS[-1])] - if (isinstance(AA, str) and (is_float(AA.split(' ')[0]))): - AA = AA.split(' ') - DSG['DamageStates'][-1].update( - {'AffectedArea': [int(AA[0]), AA[1]]}) - need_INJ = True - else: - DSG['DamageStates'][-1].update( - {'AffectedArea': [0, 'SF']}) - - DSG['DamageStates'][-1]['Consequences'].update( - {'Injuries': [{}, {}]}) - - INJ0 = DSG[ - 'DamageStates'][-1]['Consequences']['Injuries'][0] - INJ_mu = row[ - 'DS {} Serious Injury Rate - Median'.format(DS[-1])] - INJ_beta = row[ - 'DS {} Serious Injury Rate - Dispersion'.format(DS[-1])] - if is_float(INJ_mu) and is_float(INJ_beta): - INJ0.update({ - 'Amount' : float(INJ_mu), - 'Beta' : float(INJ_beta), - 'CurveType': 'Normal', - 'Bounds' : [0., 1.] - }) - - if INJ_mu != 0.0: - need_INJ = True - if DSG['DamageStates'][-1]['AffectedArea'][0] == 0: - incomplete = True - else: - INJ0.update({'Amount' : - float(INJ_mu) if is_float(INJ_mu) - else 'Undefined', - 'Beta' : - float(INJ_beta) if is_float(INJ_beta) - else 'Undefined', - 'CurveType': 'Normal'}) - if ((INJ0['Amount'] == 'Undefined') or - (INJ0['Beta'] == 'Undefined')): - incomplete = True - - INJ1 = DSG[ - 'DamageStates'][-1]['Consequences']['Injuries'][1] - INJ_mu = row['DS {} Loss of Life Rate - Median'.format(DS[-1])] - INJ_beta = row['DS {} Loss of Life Rate - Dispersion'.format(DS[-1])] - if is_float(INJ_mu) and is_float(INJ_beta): - INJ1.update({ - 'Amount' : float(INJ_mu), - 'Beta' : float(INJ_beta), - 'CurveType': 'Normal', - 'Bounds' : [0., 1.] - }) - if INJ_mu != 0.0: - need_INJ = True - if DSG['DamageStates'][-1]['AffectedArea'][0] == 0: - incomplete = True - else: - INJ1.update({'Amount' : - float(INJ_mu) if is_float(INJ_mu) - else 'Undefined', - 'Beta' : - float(INJ_beta) if is_float(INJ_beta) - else 'Undefined', - 'CurveType': 'Normal', - 'Bounds': [0., 1.]}) - if ((INJ1['Amount'] == 'Undefined') or - (INJ1['Beta'] == 'Undefined')): - incomplete = True - - DSG['DamageStates'][-1]['Consequences'].update({'RedTag': {}}) - RT = DSG['DamageStates'][-1]['Consequences']['RedTag'] - - RT_mu = row['DS {}, Unsafe Placard Damage Median'.format(DS[-1])] - RT_beta = row['DS {}, Unsafe Placard Damage Dispersion'.format(DS[-1])] - if is_float(RT_mu) and is_float(RT_beta): - RT.update({ - 'Amount' : float(RT_mu), - 'Beta' : float(RT_beta), - 'CurveType': 'Normal', - 'Bounds' : [0., 1.] - }) - if RT['Amount'] != 0.0: - need_RT = True - else: - RT.update({'Amount' : - float(RT_mu[:-1]) if is_float(RT_mu) - else 'Undefined', - 'Beta' : - float(RT_beta[:-1]) if is_float(RT_beta) - else 'Undefined', - 'CurveType': 'Normal', - 'Bounds': [0., 1.]}) - if ((RT['Amount'] == 'Undefined') or - (RT['Beta'] == 'Undefined')): - incomplete = True - - # remove the unused fields - if not need_INJ: - for DSG in json_output['DSGroups']: - for DS in DSG['DamageStates']: - del DS['AffectedArea'] - del DS['Consequences']['Injuries'] - - if not need_RT: - for DSG in json_output['DSGroups']: - for DS in DSG['DamageStates']: - del DS['Consequences']['RedTag'] - - # collect the repair cost and time consequences from the XML file - DSG_list = root.find('DamageStates').findall('DamageState') - for DSG_i, DSG_xml in enumerate(DSG_list): - - if DSG_xml.find('DamageStates') is not None: - DS_list = (DSG_xml.find('DamageStates')).findall('DamageState') - for DS_i, DS_xml in enumerate(DS_list): - r_cost, r_time = parse_DS_xml(DS_xml) - CONSEQ = json_output['DSGroups'][DSG_i][ - 'DamageStates'][DS_i]['Consequences'] - CONSEQ.update({ - 'ReconstructionCost': r_cost, - 'ReconstructionTime': r_time - }) - if ((r_cost['Amount'] == 'Undefined') or - (r_time['Amount'] == 'Undefined')): - incomplete = True - - else: - r_cost, r_time = parse_DS_xml(DSG_xml) - CONSEQ = json_output['DSGroups'][DSG_i][ - 'DamageStates'][0]['Consequences'] - CONSEQ.update({ - 'ReconstructionCost': r_cost, - 'ReconstructionTime': r_time - }) - if ((r_cost['Amount'] == 'Undefined') or - (r_time['Amount'] == 'Undefined')): - incomplete = True - - if incomplete: - json_output['GeneralInformation']['Incomplete'] = True - incomplete_count += 1 - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{comp_ID}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - #except: - # warnings.warn(UserWarning( - # 'Error converting data for component {}'.format(comp_ID))) - - # finally, copy the population file - shutil.copy( - data_dir / 'population.json', - target_dir / 'population.json' - )
- - -
[docs]def create_HAZUS_EQ_json_files(data_dir, target_dir): - """ - Create JSON data files from publicly available HAZUS data. - - HAZUS damage and loss information is publicly available in the technical - manuals. The relevant tables have been converted into a JSON input file - (hazus_data_eq.json) that is stored in the 'resources/HAZUS MH 2.1' folder - in the pelicun repo. Here we read that file (or a file of similar format) - and produce damage and loss data for Fragility Groups in the common - SimCenter JSON format. - - HAZUS handles damage and losses at the assembly level differentiating only - structural and two types of non-structural component assemblies. In this - implementation we consider each of those assemblies a Fragility Group - and describe their damage and its consequences in a FEMA P58-like framework - but using the data from the HAZUS Technical Manual. - - Parameters - ---------- - data_dir: string - Path to the folder with the hazus_data_eq JSON file. - target_dir: string - Path to the folder where the results shall be saved. The population - distribution file will be saved here, the DL JSON files will be saved - to a 'DL json' subfolder. - - """ - - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None - - convert_design_level = { - 'High_code' : 'HC', - 'Moderate_code': 'MC', - 'Low_code' : 'LC', - 'Pre_code' : 'PC' - } - - convert_DS_description = { - 'DS1': 'Slight', - 'DS2': 'Moderate', - 'DS3': 'Extensive', - 'DS4': 'Complete', - 'DS5': 'Collapse', - } - - # open the raw HAZUS data - with open(data_dir / 'hazus_data_eq.json', 'r') as f: - raw_data = json.load(f) - - design_levels = list( - raw_data['Structural_Fragility_Groups']['EDP_limits'].keys()) - building_types = list( - raw_data['Structural_Fragility_Groups']['P_collapse'].keys()) - occupancy_types = list(raw_data['Structural_Fragility_Groups'][ - 'Reconstruction_cost'].keys()) - - S_data = raw_data['Structural_Fragility_Groups'] - NSA_data = raw_data[ - 'NonStructural_Acceleration_Sensitive_Fragility_Groups'] - NSD_data = raw_data['NonStructural_Drift_Sensitive_Fragility_Groups'] - - for ot in occupancy_types: - - # first, structural fragility groups - for dl in design_levels: - for bt in building_types: - if bt in S_data['EDP_limits'][dl].keys(): - - json_output = {} - - dl_id = 'S-{}-{}-{}'.format(bt, - convert_design_level[dl], - ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': False, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Roof Drift Ratio', - 'Unit': [1, 'rad'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - EDP_lim = S_data['EDP_limits'][dl][bt] - - for dsg_i in range(4): - json_output['DSGroups'].append({ - 'MedianEDP' : EDP_lim[dsg_i], - 'Beta' : S_data['Fragility_beta'][dl], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': {}, - 'Description' : 'DS{}'.format(dsg_i + 1), - }] - }) - # the last DSG is different - if dsg_i == 3: - json_output['DSGroups'][-1][ - 'DSGroupType'] = 'MutuallyExclusive' - DS5_w = S_data['P_collapse'][bt] - json_output['DSGroups'][-1][ - 'DamageStates'].append({ - 'Weight' : DS5_w, - 'Consequences': {}, - 'Description' : 'DS5' - }) - json_output['DSGroups'][-1]['DamageStates'][0][ - 'Weight'] = 1.0 - DS5_w - - for dsg_i, DSG in enumerate(json_output['DSGroups']): - base_cost = S_data['Reconstruction_cost'][ot][dsg_i] / 100. - base_time = S_data['Reconstruction_time'][ot][dsg_i] - - for DS in DSG['DamageStates']: - DS_id = DS['Description'] - DS['Consequences'] = { - # injury rates are provided in percentages of the population - 'Injuries' : [ - {'Amount': val / 100.} for val in - S_data['Injury_rates'][DS_id][bt]], - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - 'ReconstructionTime': { - "Amount": base_time, - "CurveType": "N/A", - } - } - DS['Description'] = convert_DS_description[ - DS['Description']] - - # create the DL json directory (if it does not exist) - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # second, nonstructural acceleration sensitive fragility groups - json_output = {} - - dl_id = 'NSA-{}-{}'.format(convert_design_level[dl], ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': False, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Peak Floor Acceleration', - 'Unit': [1, 'g'], - 'Offset': NSA_data.get('Offset', 0) - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - - for dsg_i in range(4): - base_cost = NSA_data['Reconstruction_cost'][ot][dsg_i] / 100. - - json_output['DSGroups'].append({ - 'MedianEDP' : NSA_data['EDP_limits'][dl][dsg_i], - 'Beta' : NSA_data['Fragility_beta'], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - }, - 'Description' : convert_DS_description[ - 'DS{}'.format(dsg_i + 1)] - }] - }) - - # create the DL json directory (if it does not exist) - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # third, nonstructural drift sensitive fragility groups - json_output = {} - - dl_id = 'NSD-{}'.format(ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': False, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Roof Drift Ratio', - 'Unit': [1, 'rad'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - - for dsg_i in range(4): - base_cost = NSD_data['Reconstruction_cost'][ot][dsg_i] / 100. - - json_output['DSGroups'].append({ - 'MedianEDP' : NSD_data['EDP_limits'][dsg_i], - 'Beta' : NSD_data['Fragility_beta'], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - }, - 'Description' : convert_DS_description[ - 'DS{}'.format(dsg_i + 1)] - }] - }) - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # finally, prepare the population distribution data - PD_data = raw_data['Population_Distribution'] - - pop_output = {} - for ot in PD_data.keys(): - night_ids = raw_data['Parts_of_day']['Nighttime'] - day_ids = raw_data['Parts_of_day']['Daytime'] - commute_ids = raw_data['Parts_of_day']['Commute'] - - daily_pop = np.ones(24) - daily_pop[night_ids] = PD_data[ot][0] - daily_pop[day_ids] = PD_data[ot][1] - daily_pop[commute_ids] = PD_data[ot][2] - daily_pop = list(daily_pop) - - # HAZUS does not introduce monthly and weekend/weekday variation - pop_output.update({ot: { - "weekday": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - }, - "weekend": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - } - }}) - - with open(target_dir / 'population.json', 'w') as f: - json.dump(pop_output, f, indent=2)
- -
[docs]def create_HAZUS_EQ_story_json_files(data_dir, target_dir): - """ - Create JSON data files from publicly available HAZUS data. - - HAZUS damage and loss information is publicly available in the technical - manuals. The relevant tables have been converted into a JSON input file - (hazus_data_eq.json) that is stored in the 'resources/HAZUS MH 2.1' folder - in the pelicun repo. Here we read that file (or a file of similar format) - and produce damage and loss data for Fragility Groups in the common - SimCenter JSON format. - - HAZUS handles damage and losses at the assembly level differentiating only - structural and two types of non-structural component assemblies. In this - implementation we consider each of those assemblies a Fragility Group - and describe their damage and its consequences in a FEMA P58-like framework - but using the data from the HAZUS Technical Manual. - - Parameters - ---------- - data_dir: string - Path to the folder with the hazus_data_eq JSON file. - target_dir: string - Path to the folder where the results shall be saved. The population - distribution file will be saved here, the DL JSON files will be saved - to a 'DL json' subfolder. - - """ - - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None - - convert_design_level = { - 'High_code' : 'HC', - 'Moderate_code': 'MC', - 'Low_code' : 'LC', - 'Pre_code' : 'PC' - } - - convert_DS_description = { - 'DS1': 'Slight', - 'DS2': 'Moderate', - 'DS3': 'Extensive', - 'DS4': 'Complete', - 'DS5': 'Collapse', - } - - # open the raw HAZUS data - with open(data_dir / 'hazus_data_eq.json', 'r') as f: - raw_data = json.load(f) - - design_levels = list( - raw_data['Structural_Fragility_Groups']['EDP_limits'].keys()) - building_types = list( - raw_data['Structural_Fragility_Groups']['P_collapse'].keys()) - occupancy_types = list(raw_data['Structural_Fragility_Groups'][ - 'Reconstruction_cost'].keys()) - - S_data = raw_data['Structural_Fragility_Groups'] - NSA_data = raw_data[ - 'NonStructural_Acceleration_Sensitive_Fragility_Groups'] - NSD_data = raw_data['NonStructural_Drift_Sensitive_Fragility_Groups'] - - for ot in occupancy_types: - - # first, structural fragility groups - for dl in design_levels: - for bt in building_types: - if bt in S_data['EDP_limits'][dl].keys(): - - json_output = {} - - dl_id = 'S-{}-{}-{}'.format(bt, - convert_design_level[dl], - ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': True, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Story Drift Ratio', - 'Unit': [1, 'rad'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - EDP_lim = S_data['EDP_limits'][dl][bt] - - for dsg_i in range(4): - json_output['DSGroups'].append({ - 'MedianEDP' : EDP_lim[dsg_i], - 'Beta' : S_data['Fragility_beta'][dl], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': {}, - 'Description' : 'DS{}'.format(dsg_i + 1), - }] - }) - # the last DSG is different - if dsg_i == 3: - json_output['DSGroups'][-1][ - 'DSGroupType'] = 'MutuallyExclusive' - DS5_w = S_data['P_collapse'][bt] - json_output['DSGroups'][-1][ - 'DamageStates'].append({ - 'Weight' : DS5_w, - 'Consequences': {}, - 'Description' : 'DS5' - }) - json_output['DSGroups'][-1]['DamageStates'][0][ - 'Weight'] = 1.0 - DS5_w - - for dsg_i, DSG in enumerate(json_output['DSGroups']): - base_cost = S_data['Reconstruction_cost'][ot][dsg_i] / 100. - base_time = S_data['Reconstruction_time'][ot][dsg_i] - - for DS in DSG['DamageStates']: - DS_id = DS['Description'] - DS['Consequences'] = { - # injury rates are provided in percentages of the population - 'Injuries' : [ - {'Amount': val / 100.} for val in - S_data['Injury_rates'][DS_id][bt]], - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - 'ReconstructionTime': { - "Amount": base_time, - "CurveType": "N/A", - } - } - DS['Description'] = convert_DS_description[ - DS['Description']] - - # create the DL json directory (if it does not exist) - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # second, nonstructural acceleration sensitive fragility groups - json_output = {} - - dl_id = 'NSA-{}-{}'.format(convert_design_level[dl], ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': False, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Peak Floor Acceleration', - 'Unit': [1, 'g'], - 'Offset': NSA_data.get('Offset', 0) - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - - for dsg_i in range(4): - base_cost = NSA_data['Reconstruction_cost'][ot][dsg_i] / 100. - - json_output['DSGroups'].append({ - 'MedianEDP' : NSA_data['EDP_limits'][dl][dsg_i], - 'Beta' : NSA_data['Fragility_beta'], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - }, - 'Description' : convert_DS_description[ - 'DS{}'.format(dsg_i + 1)] - }] - }) - - # create the DL json directory (if it does not exist) - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # third, nonstructural drift sensitive fragility groups - json_output = {} - - dl_id = 'NSD-{}'.format(ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': True, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Story Drift Ratio', - 'Unit': [1, 'rad'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - - for dsg_i in range(4): - base_cost = NSD_data['Reconstruction_cost'][ot][dsg_i] / 100. - - json_output['DSGroups'].append({ - 'MedianEDP' : NSD_data['EDP_limits'][dsg_i], - 'Beta' : NSD_data['Fragility_beta'], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - }, - 'Description' : convert_DS_description[ - 'DS{}'.format(dsg_i + 1)] - }] - }) - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # finally, prepare the population distribution data - PD_data = raw_data['Population_Distribution'] - - pop_output = {} - for ot in PD_data.keys(): - night_ids = raw_data['Parts_of_day']['Nighttime'] - day_ids = raw_data['Parts_of_day']['Daytime'] - commute_ids = raw_data['Parts_of_day']['Commute'] - - daily_pop = np.ones(24) - daily_pop[night_ids] = PD_data[ot][0] - daily_pop[day_ids] = PD_data[ot][1] - daily_pop[commute_ids] = PD_data[ot][2] - daily_pop = list(daily_pop) - - # HAZUS does not introduce monthly and weekend/weekday variation - pop_output.update({ot: { - "weekday": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - }, - "weekend": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - } - }}) - - with open(target_dir / 'population.json', 'w') as f: - json.dump(pop_output, f, indent=2)
- -
[docs]def create_HAZUS_EQ_PGA_json_files(data_dir, target_dir): - """ - Create JSON data files from publicly available HAZUS data. - - HAZUS damage and loss information is publicly available in the technical - manuals. The relevant tables have been converted into a JSON input file - (hazus_data_eq.json) that is stored in the 'resources/HAZUS MH 2.1 - earthquake PGA' folder in the pelicun repo. Here we read that file (or a - file of similar format) and produce damage and loss data for Fragility - Groups in the common SimCenter JSON format. - - HAZUS handles damage and losses at the assembly level. This method assumes - that we use the fragility curves controlled by equivalent PGA from HAZUS. - Those curves are only available for structural component assemblies. A - Fragility Group is created for each of the structural configurations that - describes their damage and its consequences in a FEMA P58-like framework - but using the data from the HAZUS Technical Manual. - - Parameters - ---------- - data_dir: string - Path to the folder with the hazus_data_eq JSON file. - target_dir: string - Path to the folder where the results shall be saved. The population - distribution file will be saved here, the DL JSON files will be saved - to a 'DL json' subfolder. - - """ - - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None - - convert_design_level = { - 'High_code' : 'HC', - 'Moderate_code': 'MC', - 'Low_code' : 'LC', - 'Pre_code' : 'PC' - } - - convert_DS_description = { - 'DS1': 'Slight', - 'DS2': 'Moderate', - 'DS3': 'Extensive', - 'DS4': 'Complete', - 'DS5': 'Collapse', - } - - convert_GF_description = { - 'H_S': 'Lateral spreading, shallow foundation', - 'H_D': 'Lateral spreading, deep foundation', - 'V_S': 'Ground settlement, shallow foundation', - 'V_D': 'Ground settlement, deep foundation', - } - - # open the raw HAZUS data - with open(data_dir / 'hazus_data_eq.json', 'r') as f: - raw_data = json.load(f) - - # First, the ground shaking fragilities - S_data = raw_data['Structural_Fragility_Groups'] - - design_levels = list(S_data['EDP_limits'].keys()) - building_types = list(S_data['P_collapse'].keys()) - occupancy_types = list(S_data['Reconstruction_cost'].keys()) - - for ot in occupancy_types: - for dl in design_levels: - for bt in building_types: - if bt in S_data['EDP_limits'][dl].keys(): - - json_output = {} - - dl_id = 'S-{}-{}-{}'.format(bt, - convert_design_level[dl], - ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': True, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Peak Ground Acceleration', - 'Unit': [1, 'g'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - EDP_lim = S_data['EDP_limits'][dl][bt] - - for dsg_i in range(4): - json_output['DSGroups'].append({ - 'MedianEDP' : EDP_lim[dsg_i], - 'Beta' : S_data['Fragility_beta'][dl], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': {}, - 'Description' : 'DS{}'.format(dsg_i + 1), - }] - }) - # the last DSG is different - if dsg_i == 3: - json_output['DSGroups'][-1][ - 'DSGroupType'] = 'MutuallyExclusive' - DS5_w = S_data['P_collapse'][bt] - json_output['DSGroups'][-1][ - 'DamageStates'].append({ - 'Weight' : DS5_w, - 'Consequences': {}, - 'Description' : 'DS5' - }) - json_output['DSGroups'][-1]['DamageStates'][0][ - 'Weight'] = 1.0 - DS5_w - - for dsg_i, DSG in enumerate(json_output['DSGroups']): - base_cost = S_data['Reconstruction_cost'][ot][dsg_i] / 100. - base_time = S_data['Reconstruction_time'][ot][dsg_i] - - for DS in DSG['DamageStates']: - DS_id = DS['Description'] - DS['Consequences'] = { - # injury rates are provided in percentages of the population - 'Injuries' : [ - {'Amount': val / 100.} for val in - S_data['Injury_rates'][DS_id][bt]], - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - 'ReconstructionTime': { - "Amount": base_time, - "CurveType": "N/A", - } - } - DS['Description'] = convert_DS_description[ - DS['Description']] - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # Second, the ground failure fragilities - L_data = raw_data['Ground_Failure'] - - ground_failure_types = list(L_data['EDP_limits'].keys()) - - for gf in ground_failure_types: - for bt in building_types: - if bt in L_data['P_collapse'].keys(): - - json_output = {} - - dl_id = f'GF-{gf}-{bt}' - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': True, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': convert_GF_description[gf], - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Permanent Ground Deformation', - 'Unit': [1, 'in'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - EDP_lim = L_data['EDP_limits'][gf] - beta_vals = L_data['Fragility_beta'][gf] - - for dsg_i in range(2): - json_output['DSGroups'].append({ - 'MedianEDP' : EDP_lim[dsg_i], - 'Beta' : beta_vals[dsg_i], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': {}, - 'Description' : 'DS{}'.format(dsg_i + 1), - }] - }) - # the last DSG is different - if dsg_i == 1: - json_output['DSGroups'][-1][ - 'DSGroupType'] = 'MutuallyExclusive' - DS5_w = L_data['P_collapse'][bt] - json_output['DSGroups'][-1]['DamageStates'].append({ - 'Weight' : DS5_w, - 'Consequences': {}, - 'Description' : 'DS5' - }) - json_output['DSGroups'][-1]['DamageStates'][0]['Weight'] = 1.0 - DS5_w - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - # consequences are handled through propagating damage to other components - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # prepare the population distribution data - PD_data = raw_data['Population_Distribution'] - - pop_output = {} - for ot in PD_data.keys(): - night_ids = raw_data['Parts_of_day']['Nighttime'] - day_ids = raw_data['Parts_of_day']['Daytime'] - commute_ids = raw_data['Parts_of_day']['Commute'] - - daily_pop = np.ones(24) - daily_pop[night_ids] = PD_data[ot][0] - daily_pop[day_ids] = PD_data[ot][1] - daily_pop[commute_ids] = PD_data[ot][2] - daily_pop = list(daily_pop) - - # HAZUS does not introduce monthly and weekend/weekday variation - pop_output.update({ot: { - "weekday": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - }, - "weekend": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - } - }}) - - with open(target_dir / 'population.json', 'w') as f: - json.dump(pop_output, f, indent=2)
- -
[docs]def create_HAZUS_HU_json_files(data_dir, target_dir): - """ - Create JSON data files from publicly available HAZUS data. - - HAZUS damage and loss information is publicly available in the technical - manuals and the HAZUS software tool. The relevant data have been collected - in a series of Excel files (e.g., hu_Wood.xlsx) that are stored in the - 'resources/HAZUS MH 2.1 hurricane' folder in the pelicun repo. Here we read - that file (or a file of similar format) and produce damage and loss data - for Fragility Groups in the common SimCenter JSON format. - - The HAZUS hurricane methodology handles damage and losses at the assembly - level. In this implementation each building is represented by one Fragility - Group that describes the damage states and their consequences in a FEMA - P58-like framework but using the data from the HAZUS Technical Manual. - - Note: HAZUS calculates lossess independently of damage using peak wind gust - speed as a controlling variable. We fitted a model to the curves in HAZUS - that assigns losses to each damage state and determines losses as a function - of building damage. Results shall be in good agreement with those of HAZUS - for the majority of building configurations. Exceptions and more details - are provided in the ... section of the documentation. - - Parameters - ---------- - data_dir: string - Path to the folder with the hazus_data_eq JSON file. - target_dir: string - Path to the folder where the results shall be saved. The population - distribution file will be saved here, the DL JSON files will be saved - to a 'DL json' subfolder. - - """ - - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None - - # open the raw HAZUS data - df_wood = pd.read_excel(data_dir / 'hu_Wood.xlsx') - - # some general formatting to make file name generation easier - df_wood['shutters'] = df_wood['shutters'].astype(int) - df_wood['terr_rough'] = (df_wood['terr_rough'] * 100.).astype(int) - - convert_building_type = { - 'WSF1' : 'Wood Single-Family Homes 1 story', - 'WSF2' : 'Wood Single-Family Homes 2+ stories', - 'WMUH1': 'Wood Multi-Unit or Hotel or Motel 1 story', - 'WMUH2': 'Wood Multi-Unit or Hotel or Motel 2 stories', - 'WMUH3': 'Wood Multi-Unit or Hotel or Motel 3+ stories', - } - - convert_bldg_char_names = { - 'roof_shape' : 'Roof Shape', - 'sec_water_res' : 'Secondary Water Resistance', - 'roof_deck_attch': 'Roof Deck Attachment', - 'roof_wall_conn' : 'Roof-Wall Connection', - 'garage' : 'Garage', - 'shutters' : 'Shutters', - 'roof_cover' : 'Roof Cover Type', - 'roof_quality' : 'Roof Cover Quality', - 'terr_rough' : 'Terrain', - } - - convert_bldg_chars = { - 1 : True, - 0 : False, - - 'gab' : 'gable', - 'hip' : 'hip', - 'flt' : 'flat', - - '6d' : '6d @ 6"/12"', - '8d' : '8d @ 6"/12"', - '6s' : '6d/8d mix @ 6"/6"', - '8s' : '8D @ 6"/6"', - - 'tnail': 'Toe-nail', - 'strap': 'Strap', - - 'no' : 'None', - 'wkd' : 'Weak', - 'std' : 'Standard', - 'sup' : 'SFBC 1994', - - 'bur' : 'BUR', - 'spm' : 'SPM', - - 'god' : 'Good', - 'por' : 'Poor', - - 3 : 'Open', - 15 : 'Light Suburban', - 35 : 'Suburban', - 70 : 'Light Trees', - 100 : 'Trees', - } - - convert_dist = { - 'normal' : 'Normal', - 'lognormal': 'LogNormal', - } - - convert_ds = { - 1: 'Minor', - 2: 'Moderate', - 3: 'Severe', - 4: 'Destruction', - } - - for index, row in df_wood.iterrows(): - #print(index, end=' ') - - json_output = {} - - # define the name of the building damage and loss configuration - bldg_type = row["bldg_type"] - - if bldg_type[:3] == "WSF": - cols_of_interest = ["bldg_type", "roof_shape", "sec_water_res", - "roof_deck_attch", "roof_wall_conn", "garage", - "shutters", "terr_rough"] - elif bldg_type[:4] == "WMUH": - cols_of_interest = ["bldg_type", "roof_shape", "roof_cover", - "roof_quality", "sec_water_res", - "roof_deck_attch", "roof_wall_conn", "shutters", - "terr_rough"] - - bldg_chars = row[cols_of_interest] - - if np.isnan(bldg_chars["sec_water_res"]): - bldg_chars["sec_water_res"] = 'null' - else: - bldg_chars["sec_water_res"] = int(bldg_chars["sec_water_res"]) - - if bldg_type[:4] == "WMUH": - if (not isinstance(bldg_chars["roof_cover"],str) - and np.isnan(bldg_chars["roof_cover"])): - bldg_chars["roof_cover"] = 'null' - if (not isinstance(bldg_chars["roof_quality"], str) - and np.isnan(bldg_chars["roof_quality"])): - bldg_chars["roof_quality"] = 'null' - - dl_id = "_".join(bldg_chars.astype(str)) - - json_output.update({'Name': dl_id}) - - # general information - json_output.update({ - 'GeneralInformation': { - 'ID' : str(index), - 'Description' : dl_id, - 'Building type': convert_building_type[bldg_type], - } - }) - for col in cols_of_interest: - if (col != 'bldg_type') and (bldg_chars[col] != 'null'): - json_output['GeneralInformation'].update({ - convert_bldg_char_names[col]: convert_bldg_chars[ - bldg_chars[col]] - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Peak Gust Wind Speed', - 'Unit': [1, 'mph'] - } - }) - - # Damage States - json_output.update({'DSGroups': []}) - - for dsg_i in range(1, 5): - json_output['DSGroups'].append({ - 'MedianEDP' : row['DS{}_mu'.format(dsg_i)], - 'Beta' : row['DS{}_sig'.format(dsg_i)], - 'CurveType' : convert_dist[row['DS{}_dist'.format(dsg_i)]], - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - 'ReconstructionCost': { - 'Amount': row[ - 'L{}'.format(dsg_i)] if dsg_i < 4 else 1.0 - } - }, - 'Description' : convert_ds[dsg_i] - }] - }) - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2)
- -
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/file_io.html b/docs/_modules/pelicun/file_io.html deleted file mode 100644 index 6e0fcc255..000000000 --- a/docs/_modules/pelicun/file_io.html +++ /dev/null @@ -1,2138 +0,0 @@ - - - - - - - - - - pelicun.file_io — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.file_io
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.file_io

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-# Pouria Kourehpaz
-# Kuanshi Zhong
-
-"""
-This module has classes and methods that handle file input and output.
-
-.. rubric:: Contents
-
-.. autosummary::
-
-    read_SimCenter_DL_input
-    read_SimCenter_EDP_input
-    read_population_distribution
-    read_component_DL_data
-    write_SimCenter_DL_output
-    write_SimCenter_EDP_output
-    write_SimCenter_DM_output
-    write_SimCenter_DV_output
-
-"""
-
-from .base import *
-from pathlib import Path
-from .db import convert_Series_to_dict
-
-import json, posixpath
-
-from tables.exceptions import HDF5ExtError
-from time import sleep
-
-
-import warnings
-
-convert_dv_name = {
-    'DV_rec_cost': 'Reconstruction Cost',
-    'DV_rec_time': 'Reconstruction Time',
-    'DV_injuries_0': 'Injuries lvl. 1',
-    'DV_injuries_1': 'Injuries lvl. 2',
-    'DV_injuries_2': 'Injuries lvl. 3',
-    'DV_injuries_3': 'Injuries lvl. 4',
-    'DV_red_tag': 'Red Tag ',
-}
-
-# this is a convenience function for converting strings to float or None
-def float_or_None(string):
-    try:
-        res = float(string)
-        return res
-    except:
-        return None
-
-def int_or_None(string):
-    try:
-        res = int(string)
-        return res
-    except:
-        return None
-
-def process_loc(string, stories):
-    try:
-        res = int(string)
-        return [res, ]
-    except:
-        if "-" in string:
-            s_low, s_high = string.split('-')
-            s_low = process_loc(s_low, stories)
-            s_high = process_loc(s_high, stories)
-            return list(range(s_low[0], s_high[0]+1))
-        elif string == "all":
-            return list(range(1, stories+1))
-        elif string == "top":
-            return [stories,]
-        elif string == "roof":
-            return [stories,]
-        else:
-            return None
-
-
-
[docs]def read_SimCenter_DL_input(input_path, assessment_type='P58', verbose=False): - """ - Read the damage and loss input information from a json file. - - The SimCenter in the function name refers to having specific fields - available in the file. Such a file is automatically prepared by the - SimCenter PBE Application, but it can also be easily manipulated or created - manually. The accepted input fields are explained in detail in the Input - section of the documentation. - - Parameters - ---------- - input_path: string - Location of the DL input json file. - assessment_type: {'P58', 'HAZUS_EQ', 'HAZUS_HU'} - Tailors the warnings and verifications towards the type of assessment. - default: 'P58'. - verbose: boolean - If True, the function echoes the information read from the file. This - can be useful to ensure that the information in the file is properly - read by the method. - - Returns - ------- - data: dict - A dictionary with all the damage and loss data. - - """ - - AT = assessment_type - - log_msg('\t\tOpening the configuration file...') - with open(input_path, 'r') as f: - jd = json.load(f) - - # get the data required for DL - data = dict([(label, dict()) for label in [ - 'general', 'units', 'unit_names', 'components', 'collapse_modes', - 'decision_variables', 'dependencies', 'data_sources', 'damage_logic' - ]]) - - # create a few internal variables for convenience - DL_input = jd['DamageAndLoss'] - - log_msg('\t\tLoading the Models:') - log_msg('\t\t\tResponse Model') - response = DL_input.get('ResponseModel',None) - if response is not None: - res_description = response.get('ResponseDescription', None) - det_lims = response.get('DetectionLimits', None) - uncertainty = response.get('AdditionalUncertainty', None) - - else: - res_description = None - det_lims = None - uncertainty = None - - log_msg('\t\t\tDamage Model') - damage = DL_input.get('DamageModel',None) - if damage is not None: - irrep_res_drift = damage.get('IrreparableResidualDrift', None) - coll_prob = damage.get('CollapseProbability', None) - coll_lims = damage.get('CollapseLimits', None) - design_lvl = damage.get('DesignLevel', None) - struct_type = damage.get('StructureType', None) - - else: - irrep_res_drift = None - coll_prob = None - coll_lims = None - design_lvl = None - struct_type = None - - log_msg('\t\t\tLoss Model') - loss = DL_input.get('LossModel', None) - if loss is not None: - repl_cost = loss.get('ReplacementCost', None) - repl_time = loss.get('ReplacementTime', None) - dec_vars = loss.get('DecisionVariables', None) - inhabitants = loss.get('Inhabitants', None) - - else: - repl_cost = None - repl_time = None - dec_vars = None - inhabitants = None - - log_msg('\t\t\tPerformance Model') - components = DL_input.get('Components', None) - - depends = DL_input.get('Dependencies', None) - coll_modes = DL_input.get('CollapseModes', None) - - dam_logic = DL_input.get('DamageLogic', None) - - # decision variables of interest - if dec_vars is not None: - for target_att, source_att in [ ['injuries', 'Injuries'], - ['rec_cost', 'ReconstructionCost'], - ['rec_time', 'ReconstructionTime'], - ['red_tag', 'RedTag'], ]: - val = bool(dec_vars.get(source_att, False)) - data['decision_variables'].update({target_att: val}) - else: - show_warning("No decision variables specified in the input file.") - log_msg("Assuming that only reconstruction cost and time needs to be calculated.") - data['decision_variables'].update({ 'injuries': False, - 'rec_cost': True, - 'rec_time': True,}) - # red tag is only used by P58 now - if AT == 'P58': - data['decision_variables'].update({'red_tag': False}) - - dec_vars = data['decision_variables'] - - # data sources - # default data locations - default_data_name = { - 'P58' : 'FEMA P58 second edition', - 'HAZUS_EQ': 'HAZUS MH 2.1 earthquake', - 'HAZUS_HU': 'HAZUS MH 2.1 hurricane' - } - - # check if the user specified custom data sources - path_CMP_data = DL_input.get("ComponentDataFolder", "") - - if path_CMP_data == "": - path_CMP_data = pelicun_path - if AT == 'P58': - path_CMP_data += '/resources/FEMA_P58_2nd_ed.hdf' - elif AT == 'HAZUS_EQ': - path_CMP_data += '/resources/HAZUS_MH_2.1_EQ.hdf' - elif AT == 'HAZUS_HU': - path_CMP_data += '/resources/HAZUS_MH_2.1_HU.hdf' - data['data_sources'].update({'path_CMP_data': path_CMP_data}) - - # The population data is only needed if we are interested in injuries - if inhabitants is not None: - path_POP_data = inhabitants.get("PopulationDataFile", "") - else: - path_POP_data = "" - - if data['decision_variables']['injuries']: - if path_POP_data == "": - path_POP_data = pelicun_path - if AT == 'P58': - path_POP_data += '/resources/FEMA_P58_2nd_ed.hdf' - elif AT == 'HAZUS_EQ': - path_POP_data += '/resources/HAZUS_MH_2.1_EQ.hdf' - data['data_sources'].update({'path_POP_data': path_POP_data}) - - # general information - GI = jd.get("GeneralInformation", None) - - # units - if (GI is not None) and ('units' in GI.keys()): - for key, value in GI['units'].items(): - if value == 'in': - value = 'inch' - if value in globals().keys(): - data['unit_names'].update({key: value}) - else: - show_warning("Unknown {} unit: {}".format(key, value)) - - if 'length' in data['unit_names'].keys(): - if 'area' not in data['unit_names']: - data['unit_names'].update({ - 'area': data['unit_names']['length']+'2'}) - - if 'volume' not in data['unit_names']: - data['unit_names'].update({ - 'volume': data['unit_names']['length']+'3'}) - - if 'speed' not in data['unit_names'].keys(): - data['unit_names'].update({ - 'speed': data['unit_names']['length']+'ps'}) - - if 'acceleration' not in data['unit_names'].keys(): - data['unit_names'].update({ - #'acceleration': 1.0 }) - 'acceleration': data['unit_names']['length']+'ps2'}) - else: - show_warning("No units were specified in the input file.") - data['unit_names'].update({ - 'force': 'N', - 'length': 'm', - 'area': 'm2', - 'volume': 'm3', - 'speed': 'mps', - 'acceleration': 'mps2', - }) - - for unit_type, unit_name in data['unit_names'].items(): - data['units'].update({unit_type: globals()[unit_name]}) - - # other attributes that can be used by a P58 assessment - if AT == 'P58': - for target_att, source_att, f_conv, unit_kind, dv_req in [ - ['plan_area', 'PlanArea', float, 'area', 'injuries'], - ['stories', 'NumberofStories', int, '', 'all'], - ]: - if (GI is not None) and (source_att in GI.keys()): - if unit_kind != '': - f_unit = data['units'][unit_kind] - else: - f_unit = 1 - att_value = f_conv(GI[source_att]) * f_unit - data['general'].update({target_att: att_value}) - else: - if (dv_req != '') and ((dv_req == 'all') or dec_vars[dv_req]): - raise ValueError( - "{} has to be specified in the DL input file to " - "estimate {} decision variable(s).".format(source_att, - dv_req)) - elif AT.startswith('HAZUS'): - data['general'].update({'stories': int(GI['NumberofStories'])}) - - # is this a coupled assessment? - if res_description is not None: - data['general'].update({'coupled_assessment': - res_description.get('CoupledAssessment', False)}) - else: - data['general'].update({'coupled_assessment': False}) - - # Performance Model - # Having components defined is not necessary, but if a component is defined - # then all of its attributes need to be specified. Note that the required - # set of attributes depends on the type of assessment. - if components is not None: - for fg_id, frag_group in components.items(): - if AT == 'P58': - # TODO: allow location and direction inputs with '-' in them - comp_data = { - 'locations' : [], - 'directions' : [], - 'quantities' : [], - 'unit' : [], - 'distribution': [], - 'cov' : [], - 'csg_weights': [], - } - - for comp in frag_group: - locs = [] - for loc_ in comp['location'].split(','): - for l in process_loc(loc_, data['general']['stories']): - locs.append(l) - locs.sort() - - dirs = sorted([int_or_None(dir_) - for dir_ in comp['direction'].split(',')]) - qnts = [float(qnt) - for qnt in comp['median_quantity'].split(',')] - csg_weights = (qnts / np.sum(qnts)).tolist() - qnts = np.sum(qnts) - - pg_count = len(locs) * len(dirs) - - comp_data['locations'] = (comp_data['locations'] + - [l for l in locs for d in dirs]) - comp_data['directions'] = (comp_data['directions'] + - dirs * len(locs)) - - unit = comp['unit'] - if unit not in globals().keys(): - raise ValueError( - "Unknown unit for component {}: {}".format(fg_id, - unit)) - for i in range(pg_count): - comp_data['quantities'].append(qnts) - comp_data['csg_weights'].append(csg_weights) - comp_data['unit'].append(unit) - comp_data['distribution'].append(comp.get('distribution', 'N/A')) - comp_data['cov'].append(comp.get('cov', None)) - - sorted_ids = np.argsort(comp_data['locations']) - for key in ['locations', 'directions', 'quantities', - 'csg_weights', 'distribution', 'cov']: - comp_data[key] = [comp_data[key][s_id] for s_id in sorted_ids] - - if len(set(comp_data['unit'])) != 1: - raise ValueError( - "Multiple types of units specified for fragility group " - "{}. Make sure that every component group in a " - "fragility group is defined using the same " - "unit.".format(fg_id)) - comp_data['unit'] = comp_data['unit'][0] - - # aggregate PGs that are in the same loc & dir - PG_loc_dir_list = list(zip(comp_data['locations'], comp_data['directions'])) - to_aggregate = set([x for x in PG_loc_dir_list if PG_loc_dir_list.count(x) > 1]) - for combo in to_aggregate: - PG_loc_dir_list = list(zip(comp_data['locations'], comp_data['directions'])) - combo_ids = [i for i,e in enumerate(PG_loc_dir_list) if e==combo] - - c_base = combo_ids[0] - comp_data['csg_weights'][c_base] = (np.array(comp_data['csg_weights'][c_base]) * comp_data['quantities'][c_base]).tolist() - for ci in combo_ids[1:]: - comp_data['quantities'][c_base] += comp_data['quantities'][ci] - comp_data['csg_weights'][c_base] += (np.array(comp_data['csg_weights'][ci]) * comp_data['quantities'][ci]).tolist() - comp_data['csg_weights'][c_base] = (np.array(comp_data['csg_weights'][c_base]) / comp_data['quantities'][c_base]).tolist() - - for ci in combo_ids[1:][::-1]: - for key in ['locations', 'directions', 'quantities', - 'csg_weights', 'distribution', 'cov']: - del comp_data[key][ci] - - elif AT.startswith('HAZUS'): - comp_data = { - 'locations' : [], - 'directions' : [], - 'quantities' : [], - 'unit' : [], - 'distribution': [], - 'cov' : [], - 'csg_weights': [], - } - - for comp in frag_group: - if 'location' in comp: - locs = [] - for loc_ in comp['location'].split(','): - for l in process_loc(loc_, data['general']['stories']): - locs.append(l) - locs.sort() - else: - locs = [1,] - - if 'direction' in comp: - dirs = sorted([int_or_None(dir_) - for dir_ in comp['direction'].split(',')]) - else: - dirs = [1, ] - - if 'median_quantity' in comp: - qnts = [float(qnt) - for qnt in comp['median_quantity'].split(',')] - csg_weights = (qnts / np.sum(qnts)).tolist() - qnts = np.sum(qnts) - - pg_count = len(locs) * len(dirs) - - comp_data['locations'] = (comp_data['locations'] + - [l for l in locs for d in dirs]) - comp_data['directions'] = (comp_data['directions'] + - dirs * len(locs)) - - if 'unit' in comp: - unit = comp['unit'] - if unit not in globals().keys(): - raise ValueError( - "Unknown unit for component {}: {}".format(fg_id, - unit)) - else: - unit = 'ea' - - for i in range(pg_count): - comp_data['quantities'].append(qnts) - comp_data['csg_weights'].append(csg_weights) - comp_data['unit'].append(unit) - comp_data['distribution'].append(comp.get('distribution', 'N/A')) - comp_data['cov'].append(comp.get('cov', None)) - - sorted_ids = np.argsort(comp_data['locations']) - for key in ['locations', 'directions', 'quantities', - 'csg_weights', 'distribution', 'cov']: - comp_data[key] = [comp_data[key][s_id] for s_id in sorted_ids] - - if len(set(comp_data['unit'])) != 1: - print(comp_data['unit']) - raise ValueError( - "Multiple types of units specified for fragility group " - "{}. Make sure that every component group in a " - "fragility group is defined using the same " - "unit.".format(fg_id)) - comp_data['unit'] = comp_data['unit'][0] - - # some basic pre-processing - # sort the dirs and their weights to have better structured - # matrices later - #dir_order = np.argsort(comp_data['directions']) - #comp_data['directions'] = [comp_data['directions'][d_i] for d_i - # in dir_order] - - # get the location(s) of components based on non-zero quantities - #comp_data.update({ - # 'locations': (np.where(comp_data['quantities'] > 0.)[ - # 0] + 1).tolist() - #}) - # remove the zeros from the quantities - #nonzero = comp_data['quantities'] > 0. - #comp_data['quantities'] = comp_data['quantities'][ - # nonzero].tolist() - - # scale the quantities according to the specified unit - - # store the component data - data['components'].update({fg_id: comp_data}) - else: - show_warning("No components were defined in the input file.") - - # collapse modes - if AT == 'P58': - # Having collapse modes defined is not necessary, but if a collapse mode - # is defined, then all of its attributes need to be specified. - if coll_modes is not None: - for coll_mode in coll_modes: - cm_data = { - 'w' : float(coll_mode['weight']), - 'injuries' : [float(inj) for inj in - coll_mode['injuries'].split(',')], - 'affected_area': [float(cfar) for cfar in - coll_mode['affected_area'].split(',')], - } - if len(cm_data['affected_area']) == 1: - cm_data['affected_area'] = (np.ones(data['general']['stories'])*cm_data['affected_area']).tolist() - if len(cm_data['injuries']) == 1: - cm_data['injuries'] = (np.ones(data['general']['stories'])*cm_data['injuries']).tolist() - data['collapse_modes'].update({coll_mode['name']: cm_data}) - else: - show_warning("No collapse modes were defined in the input file.") - - # the number of realizations has to be specified in the file - if res_description is not None: - realizations = res_description.get("Realizations", None) - if realizations is not None: - data['general'].update({'realizations': int(realizations)}) - else: - raise ValueError( - "Number of realizations is not specified in the input file.") - - EDP_units = dict( - # PID, PRD, RID, and MID are not here because they are unitless - PFA = 'acceleration', - PWS = 'speed', - PGA = 'acceleration', - SA = 'acceleration', - SV = 'speed', - SD = 'length' - ) - if AT in ['P58', 'HAZUS_EQ']: - EDP_keys = ['PID', 'PRD', 'PFA', - 'PGV', 'RID', 'PMD', - 'PGA', 'SA', 'SV', 'SD', - 'RDR','DWD'] - elif AT in ['HAZUS_HU']: - EDP_keys = ['PWS', ] - - # response model info ------------------------------------------------------ - if response is None: - show_warning("Response model characteristics were not defined in the input " - "file") - - # detection limits - if ((response is not None) and (det_lims is not None)): - data['general'].update({ - 'detection_limits': - dict([(key, float_or_None(value)) for key, value in - det_lims.items()])}) - DGDL = data['general']['detection_limits'] - # scale the limits by the units - for EDP_kind, value in DGDL.items(): - if (EDP_kind in EDP_units.keys()) and (value is not None): - f_EDP = data['units'][EDP_units[EDP_kind]] - DGDL[EDP_kind] = DGDL[EDP_kind] * f_EDP - else: - data['general'].update({'detection_limits':{}}) - - # make sure that detection limits are initialized - for key in EDP_keys: - if key not in data['general']['detection_limits'].keys(): - data['general']['detection_limits'].update({key: None}) - - # response description - if ((response is not None) and (res_description is not None)): - #TODO: move the collapse-related data to another field - data['general'].update({'response': { - 'EDP_distribution': res_description.get('EDP_Distribution', - 'lognormal'), - 'EDP_dist_basis': res_description.get('BasisOfEDP_Distribution', - 'all results')}}) - else: - data['general'].update({'response': { - 'EDP_distribution': 'lognormal', - 'EDP_dist_basis' : 'all results'}}) - - # additional uncertainty - if ((response is not None) and (uncertainty is not None)): - data['general'].update({ - 'added_uncertainty': { - 'beta_gm': float_or_None(uncertainty['GroundMotion']), - 'beta_m' : float_or_None(uncertainty['Modeling'])}}) - else: - data['general'].update({ - 'added_uncertainty': { - 'beta_gm': None, - 'beta_m': None - } - }) - - # damage model info -------------------------------------------------------- - if damage is None: - if AT == 'P58': - show_warning("Damage model characteristics were not defined in the " - "input file") - elif AT.startswith('HAZUS'): - pass - - # P58-specific things - if AT == 'P58': - # EDP limits for collapse - if ((damage is not None) and (coll_lims is not None)): - # load the limits - data['general'].update({ - 'collapse_limits': - dict([(key, float_or_None(value)) for key, value - in coll_lims.items()])}) - - # scale the limits according to their units - DGCL = data['general']['collapse_limits'] - for EDP_kind, value in DGCL.items(): - if (EDP_kind in EDP_units.keys()) and (value is not None): - f_EDP = data['units'][EDP_units[EDP_kind]] - DGCL[EDP_kind] = DGCL[EDP_kind] * f_EDP - else: - data['general'].update({'collapse_limits': {}}) - - # make sure that collapse limits are initialized - for key in EDP_keys: - if key not in data['general']['collapse_limits'].keys(): - data['general']['collapse_limits'].update({key: None}) - - # irreparable drift - if ((damage is not None) and (irrep_res_drift is not None)): - data['general'].update({ - 'irreparable_res_drift': - dict([(key, float_or_None(value)) for key, value in - irrep_res_drift.items()])}) - # TODO: move this in the irreparable part of general - yield_drift = irrep_res_drift.get("YieldDriftRatio", None) - if yield_drift is not None: - data['general'].update({ - 'yield_drift': float_or_None(yield_drift)}) - elif ((data['decision_variables']['rec_cost']) or - (data['decision_variables']['rec_time'])): - data['general'].update({'yield_drift': 0.01}) - - elif ((data['decision_variables']['rec_cost']) or - (data['decision_variables']['rec_time'])): - pass - #TODO: show this warning in the log file instead - - # show_warning( - # "Residual drift limits corresponding to irreparable " - # "damage were not defined in the input file. We assume that " - # "damage is repairable regardless of the residual drift.") - # we might need to have a default yield drift here - - # collapse probability - if 'response' not in data['general'].keys(): - data['general'].update({'response': {}}) - if ((damage is not None) and (coll_prob is not None)): - data['general']['response'].update({ - 'coll_prob' : coll_prob.get('Value', 'estimated'), - 'CP_est_basis': coll_prob.get('BasisOfEstimate', 'raw EDP')}) - if data['general']['response']['coll_prob'] != 'estimated': - data['general']['response']['coll_prob'] = \ - float_or_None(data['general']['response']['coll_prob']) - else: - data['general']['response'].update({ - 'coll_prob' : 'estimated', - 'CP_est_basis' : 'raw EDP'}) - - # loss model info ---------------------------------------------------------- - if loss is None: - show_warning("Loss model characteristics were not defined in the input file") - - # replacement cost - if ((loss is not None) and (repl_cost is not None)): - data['general'].update({ - 'replacement_cost': float_or_None(repl_cost)}) - elif data['decision_variables']['rec_cost']: - if AT == 'P58': - show_warning("Building replacement cost was not defined in the " - "input file.") - elif AT.startswith('HAZUS'): - raise ValueError( - "Building replacement cost was not defined in the input " - "file.") - - # replacement time - if ((loss is not None) and (repl_time is not None)): - data['general'].update({ - 'replacement_time': float_or_None(repl_time)}) - elif data['decision_variables']['rec_time']: - if AT == 'P58': - show_warning("Building replacement cost was not defined in the " - "input file.") - elif AT.startswith('HAZUS'): - raise ValueError( - "Building replacement cost was not defined in the input " - "file.") - - # inhabitants - if data['decision_variables']['injuries']: - if ((loss is not None) and (inhabitants is not None)): - - # occupancy type - occupancy = inhabitants.get("OccupancyType", None) - if occupancy is not None: - data['general'].update({'occupancy_type': occupancy}) - else: - raise ValueError("Occupancy type was not defined in the input " - "file.") - - # event time - event_time = inhabitants.get("EventTime", None) - data['general'].update({'event_time': event_time}) - - # peak population - peak_pop = inhabitants.get("PeakPopulation", None) - if peak_pop is not None: - peak_pop = [float_or_None(pop) for pop in peak_pop.split(',')] - - # If the number of stories is specified... - if 'stories' in data['general'].keys(): - stories = data['general']['stories'] - pop_in = len(peak_pop) - - # If only one value is provided then we assume that it - # corresponds to the whole building - if pop_in == 1: - peak_pop = (np.ones(stories)*peak_pop[0]/stories).tolist() - - # If more than one value is provided then we assume they - # define population for every story - else: - # If the population list does not provide values - # for every story the values are assumed to correspond - # to the lower stories and the upper ones are filled - # with zeros - for s in range(pop_in, stories): - peak_pop.append(0) - - if pop_in > 1 and pop_in != stories: - show_warning( - "Peak population was specified to some, but not all " - "stories. The remaining stories are assumed to have " - "zero population." - ) - - data['general'].update({'population': peak_pop}) - else: - raise ValueError( - "Peak population was not defined in the input file.") - else: - raise ValueError( - "Information about inhabitants was not defined in the input " - "file.") - - # dependencies ------------------------------------------------------------- - - # set defaults - # We assume 'Independent' for all unspecified fields except for the - # fragilities where 'per ATC recommendation' is the default setting. - dependency_to_acronym = { - 'btw. Fragility Groups' : 'FG', - 'btw. Performance Groups': 'PG', - 'btw. Floors' : 'LOC', - 'btw. Directions' : 'DIR', - 'btw. Component Groups' : 'CSG', - 'btw. Damage States' : 'DS', - 'Independent' : 'IND', - 'per ATC recommendation' : 'ATC', - } - - for target_att, source_att, dv_req in [ - ['quantities', 'Quantities', ''], - ['fragilities', 'Fragilities', ''], - ['injuries', 'Injuries', 'injuries'], - ['rec_costs', 'ReconstructionCosts', 'rec_cost'], - ['rec_times', 'ReconstructionTimes', 'rec_time'], - ['red_tags', 'RedTagProbabilities', 'red_tag'],]: - - if ((depends is not None) and (source_att in depends.keys())): - data['dependencies'].update({ - target_att:dependency_to_acronym[depends[source_att]]}) - #elif dv_req == '' or data['decision_variables'][dv_req]: - else: - if target_att != 'fragilities': - data['dependencies'].update({target_att: 'IND'}) - else: - data['dependencies'].update({target_att: 'ATC'}) - - log_msg("\t\t\t\t\t"+ - "Correlation between {} was not ".format(source_att)+ - "defined in the input file. Using default values.") - - if ((depends is not None) and ('CostAndTime' in depends.keys())): - data['dependencies'].update({ - 'cost_and_time': bool(depends['CostAndTime'])}) - elif ((data['decision_variables']['rec_cost']) or - (data['decision_variables']['rec_time'])): - data['dependencies'].update({'cost_and_time': False}) - log_msg("\t\t\t\t\t"+ - "Correlation between reconstruction cost and time was not " - "defined in the input file. Using default values.") - - if ((depends is not None) and ('InjurySeverities' in depends.keys())): - data['dependencies'].update({ - 'injury_lvls': bool(depends['InjurySeverities'])}) - elif data['decision_variables']['injuries']: - data['dependencies'].update({'injury_lvls': False}) - log_msg("\t\t\t\t\t"+ - "Correlation between injury levels was not defined in the " - "input file. Using default values.") - - # damage logic info -------------------------------------------------------- - - data['damage_logic'] = dam_logic - - if verbose: pp.pprint(data) - - return data
- -
[docs]def read_SimCenter_EDP_input(input_path, EDP_kinds=('PID', 'PFA'), - units = dict(PID=1., PFA=1.), - verbose=False): - """ - Read the EDP input information from a text file with a tabular structure. - - The SimCenter in the function name refers to having specific columns - available in the file. Currently, the expected formatting follows the - output formatting of Dakota that is applied for the dakotaTab.out. When - using pelicun with the PBE Application, such a dakotaTab.out is - automatically generated. The Input section of the documentation provides - more information about the expected formatting of the EDP input file. - - Parameters - ---------- - input_path: string - Location of the EDP input file. - EDP_kinds: tuple of strings, default: ('PID', 'PFA') - Collection of the kinds of EDPs in the input file. The default pair of - 'PID' and 'PFA' can be replaced or extended by any other EDPs. - units: dict, default: {'PID':1., 'PFA':1} - Defines the unit conversion that shall be applied to the EDP values. - verbose: boolean - If True, the function echoes the information read from the file. This - can be useful to ensure that the information in the file is properly - read by the method. - - Returns - ------- - data: dict - A dictionary with all the EDP data. - """ - - # initialize the data container - data = {} - - # read the collection of EDP inputs... - log_msg('\t\tOpening the input file...') - # If the file name ends with csv, we assume a standard csv file - if input_path.endswith('csv'): - EDP_raw = pd.read_csv(input_path, header=0, index_col=0) - - # otherwise, we assume that a dakota file is provided... - else: - # the read_csv method in pandas is sufficiently versatile to handle the - # tabular format of dakota - EDP_raw = pd.read_csv(input_path, sep=r'\s+', header=0, index_col=0) - - # set the index to be zero-based - if EDP_raw.index[0] == 1: - EDP_raw.index = EDP_raw.index - 1 - - # search the header for EDP information - for column in EDP_raw.columns: - for kind in EDP_kinds: - if kind in column: - - if kind not in data.keys(): - data.update({kind: []}) - - # extract info about the location, direction, and scenario - info = column.split('-') - - # get the scale factor to perform unit conversion - f_unit = units[kind] - - # store the data - data[kind].append(dict( - raw_data=(EDP_raw[column].values * f_unit).tolist(), - location=info[2], - direction=info[3], - scenario_id=info[0] - )) - - if verbose: pp.pprint(data) - - return data
- -
[docs]def read_population_distribution(path_POP, occupancy, assessment_type='P58', - verbose=False): - """ - Read the population distribution from an external json file. - - The population distribution is expected in a format used in FEMA P58, but - the list of occupancy categories can be modified and/or extended beyond - those available in that document. The population distributions for the - occupancy categories from FEMA P58 and HAZUS MH are provided with pelicun - in the population.json files in the corresponding folder under resources. - - Note: Population distributions in HAZUS do not have a 1:1 mapping to the - occupancy types provided in the Technical Manual. We expect inputs to - follow the naming convention in the HAZUS Technical Manual and convert - those to the broader categories here automatically. During conversion, the - following assumptions are made about the occupancy classes: i) RES classes - are best described as Residential; ii) COM and REL as Commercial; iii) EDU - as Educational; iv) IND and AGR as Industrial; v) Hotels do not have a - matching occupancy class. - - Parameters - ---------- - path_POP: string - Location of the population distribution json file. - occupancy: string - Identifies the occupancy category. - assessment_type: {'P58', 'HAZUS_EQ'} - Tailors the warnings and verifications towards the type of assessment. - default: 'P58'. - verbose: boolean - If True, the function echoes the information read from the file. This - can be useful to ensure that the information in the file is properly - read by the method. - - Returns - ------- - data: dict - A dictionary with the population distribution data. - """ - - HAZUS_occ_converter = { - 'RES' : 'Residential', - 'COM' : 'Commercial', - 'REL' : 'Commercial', - 'EDU' : 'Educational', - 'IND' : 'Industrial', - 'AGR' : 'Industrial' - } - - AT = assessment_type - - # Convert the HAZUS occupancy classes to the categories used to define - # population distribution. - if AT == 'HAZUS_EQ': - occupancy = HAZUS_occ_converter.get(occupancy[:3], None) - - if occupancy is None: - warnings.warn(UserWarning( - 'Unknown, probably invalid, occupancy class for HAZUS ' - 'assessment: {}. When defining population distribution, ' - 'assuming RES1 instead.'.format(occupancy))) - occupancy = 'Residential' - - # Load the population data - - # If a json file is provided: - if path_POP.endswith('json'): - with open(path_POP, 'r') as f: - jd = json.load(f) - - data = jd[occupancy] - - # else if an HDF5 file is provided - elif path_POP.endswith('hdf'): - - # this for loop is needed to avoid issues from race conditions on HPC - for i in range(1000): - try: - store = pd.HDFStore(path_POP) - store.open() - - except HDF5ExtError: - pop_table = None - sleep(0.01) - continue - - else: - pop_table = store.select('pop', - where=f'index in {[occupancy, ]}') - store.close() - break - - if pop_table is not None: - data = convert_Series_to_dict(pop_table.loc[occupancy, :]) - else: - raise IOError("Couldn't read the HDF file for POP data after 20 " - "tries because it was blocked by other processes.") - - # convert peak population to persons/m2 - if 'peak' in data.keys(): - data['peak'] = data['peak'] / (1000. * ft2) - - if verbose: # pragma: no cover - pp.pprint(data) - - return data
- - -
[docs]def read_component_DL_data(path_CMP, comp_info, assessment_type='P58', - verbose=False): - """ - Read the damage and loss data for the components of the asset. - - DL data for each component is assumed to be stored in a JSON file following - the DL file format specified by SimCenter. The name of the file is the ID - (key) of the component in the comp_info dictionary. Besides the filename, - the comp_info dictionary is also used to get other pieces of data about the - component that is not available in the JSON files. Therefore, the following - attributes need to be provided in the comp_info: ['quantities', - 'csg_weights', 'dirs', 'kind', 'distribution', 'cov', 'unit', 'locations'] - Further information about these attributes is available in the Input - section of the documentation. - - Parameters - ---------- - path_CMP: string - Location of the folder that contains the component data in JSON files. - comp_info: dict - Dictionary with additional information about the components. - assessment_type: {'P58', 'HAZUS_EQ', 'HAZUS_HU'} - Tailors the warnings and verifications towards the type of assessment. - default: 'P58'. - verbose: boolean - If True, the function echoes the information read from the files. This - can be useful to ensure that the information in the files is properly - read by the method. - - Returns - ------- - data: dict - A dictionary with damage and loss data for each component. - - """ - - AT = assessment_type - - data = dict([(c_id, dict([(key, None) for key in [ - 'ID', - 'name', - 'description', - #'kind', - 'demand_type', - 'directional', - 'correlation', - 'offset', - 'incomplete', - 'locations', - 'quantities', - 'csg_weights', - #'dir_weights', - 'directions', - 'distribution_kind', - 'cov', - 'unit', - 'DSG_set', - ]])) for c_id in comp_info.keys()]) - - s_cmp_keys = sorted(data.keys()) - DL_data_dict = {} - - # If the path_CMP is a folder we assume it contains a set of json files - if os.path.isdir(path_CMP): - - CMP_dir = Path(path_CMP).resolve() - - for c_id in s_cmp_keys: - with open(CMP_dir / f'{c_id}.json', 'r') as f: - DL_data_dict.update({c_id: json.load(f)}) - - # else if an HDF5 file is provided we assume it contains the DL data - elif path_CMP.endswith('hdf'): - - # this for loop is needed to avoid issues from race conditions on HPC - for i in range(1000): - try: - store = pd.HDFStore(path_CMP) - store.open() - - except HDF5ExtError: - CMP_table = None - sleep(0.1) - continue - - else: - CMP_table = store.select('data', where=f'index in {s_cmp_keys}') - store.close() - break - - if CMP_table is not None: - for c_id in s_cmp_keys: - DL_data_dict.update( - {c_id: convert_Series_to_dict(CMP_table.loc[c_id, :])}) - else: - raise IOError("Couldn't read the HDF file for DL data after 20 " - "tries because it was blocked by other processes.") - - else: - raise ValueError( - "Component data source not recognized. Please provide " - "either a folder with DL json files or an HDF5 table.") - - # for each component - for c_id in s_cmp_keys: - c_data = data[c_id] - - DL_data = DL_data_dict[c_id] - - DL_GI = DL_data['GeneralInformation'] - DL_EDP = DL_data['EDP'] - DL_DSG = DL_data['DSGroups'] - - # First, check if the DL data is complete. Incomplete data can lead to - # all kinds of problems, so in such a case we display a warning and do - # not use the component. This can be relaxed later if someone creates a - # method to replace unknown values with reasonable estimates. - if 'Incomplete' in DL_GI.keys(): - c_data['incomplete'] = int(DL_GI['Incomplete']) - if c_data['incomplete']: - # show warning - del data[c_id] - warnings.warn(UserWarning( - 'Fragility information for {} is incomplete. The component ' - 'cannot be used for loss assessment.'.format(c_id))) - continue - - # Get the parameters from the BIM component info - ci_data = comp_info[c_id] - c_data['locations'] = ci_data['locations'] - c_data['directions'] = ci_data['directions'] - - c_data['unit'] = globals()[ci_data['unit']] - c_data['quantities'] = [(np.asarray(qnt) * c_data['unit']).tolist() - for qnt in ci_data['quantities']] - c_data['csg_weights'] = ci_data['csg_weights'] - - c_data['distribution_kind'] = ci_data['distribution'] - c_data['cov'] = [float_or_None(cov) for cov in ci_data['cov']] - - # replace N/A distribution with normal and negligible cov - #c_data['cov'] = [0.0001 if dk == 'N/A' else cov - # for cov,dk in list(zip(c_data['cov'], - # c_data['distribution_kind']))] - #c_data['distribution_kind'] = ['normal' if dk == 'N/A' else dk - # for dk in c_data['distribution_kind']] - #c_data['cov'] = [0.0001 if cov==None else cov - # for cov in c_data['cov']] - - #c_data['kind'] = ci_data['kind'] - #c_data['unit'] = ci_data['unit'][0] * globals()[ci_data['unit'][1]] - #c_data['quantities'] = (np.asarray(ci_data['quantities']) * c_data[ - # 'unit']).tolist() - - # calculate the quantity weights in each direction - #dirs = np.asarray(c_data['directions'], dtype=np.int) - #u_dirs = np.unique(dirs) - #weights = np.asarray(c_data['csg_weights']) - #c_data['dir_weights'] = [sum(weights[np.where(dirs == d_i)]) - # for d_i in u_dirs] - - c_data['ID'] = c_id - c_data['name'] = DL_data['Name'] - c_data['description'] = DL_GI['Description'] - c_data['offset'] =int(DL_EDP.get('Offset', 0)) - c_data['correlation'] = int(DL_data.get('Correlated', False)) - c_data['directional'] = int(DL_data.get('Directional', False)) - - EDP_type = DL_EDP['Type'] - if DL_EDP['Unit'][1] == 'in': - DL_EDP['Unit'][1] = 'inch' - demand_factor = globals()[DL_EDP['Unit'][1]] * DL_EDP['Unit'][0] - if EDP_type == 'Story Drift Ratio': - demand_type = 'PID' - elif EDP_type == 'Roof Drift Ratio': - demand_type = 'PRD' - elif EDP_type == 'Damageable Wall Drift': - demand_type = 'DWD' - elif EDP_type == 'Racking Drift Ratio': - demand_type = 'RDR' - elif EDP_type == 'Peak Floor Acceleration': - demand_type = 'PFA' - #demand_factor = g - # PFA corresponds to the top of the given story. The ground floor - # has an idex of 0. When damage of acceleration-sensitive components - # is controlled by the acceleration of the bottom of the story, the - # corresponding PFA location needs to be reduced by 1. Our framework - # assumes that PFA corresponds to the bottom of the given story - # by default, we need to subtract 1 from the location values. Rather - # than changing the locations themselves, we assign an offset of -1 - # so that the results still get collected at the appropriate story. - c_data['offset'] = c_data['offset'] - 1 - elif EDP_type == 'Peak Floor Velocity': - demand_type = 'PFV' - #demand_factor = mps - c_data['offset'] = c_data['offset'] - 1 - elif EDP_type == 'Peak Gust Wind Speed': - demand_type = 'PWS' - #demand_factor = mph - elif EDP_type == 'Peak Ground Acceleration': - demand_type = 'PGA' - #demand_factor = g - elif EDP_type == 'Peak Ground Velocity': - demand_type = 'PGV' - #demand_factor = cmps - elif EDP_type == 'Spectral Acceleration': - demand_type = 'SA' - #demand_factor = g - elif EDP_type == 'Spectral Velocity': - demand_type = 'SV' - #demand_factor = mps - elif EDP_type == 'Spectral Displacement': - demand_type = 'SD' - #demand_factor = m - elif EDP_type == 'Permanent Ground Deformation': - demand_type = 'PGD' - elif EDP_type == 'Mega Drift Ratio': - demand_type = 'PMD' - elif EDP_type == 'Residual Drift Ratio': - demand_type = 'RID' - elif EDP_type in [ - 'Link Rotation Angle', - 'Link Beam Chord Rotation']: - demand_type = None - warnings.warn(UserWarning( - 'Component {} requires {} as EDP, which is not yet ' - 'implemented.'.format(c_data['ID'], EDP_type))) - else: # pragma: no cover - demand_type = None - warnings.warn(UserWarning( - f'Unexpected EDP type in component {c_id}: {EDP_type}')) - if demand_type is None: - del data[c_id] - continue - c_data['demand_type'] = demand_type - - # dictionary to convert DL data to internal representation - curve_type = {'LogNormal': 'lognormal', - 'Normal' : 'normal', - 'N/A' : None} - DS_set_kind = {'MutuallyExclusive' : 'mutually exclusive', - 'mutually exclusive': 'mutually exclusive', - 'simultaneous' : 'simultaneous', - 'Simultaneous' : 'simultaneous', - 'single' : 'single', - 'Single' : 'single'} - - # load the damage state group information - c_data['DSG_set'] = dict() - QNT_unit = DL_data.get('QuantityUnit', [1, 'ea']) - data_unit = QNT_unit[0] * globals()[QNT_unit[1]] - for DSG_id, DSG_i in enumerate(DL_DSG): - DSG_data = dict( - theta=float(DSG_i['MedianEDP']) * demand_factor, - sig=float(DSG_i['Beta']), - DS_set_kind=DS_set_kind[DSG_i['DSGroupType']], - distribution_kind = curve_type[DSG_i['CurveType']], - DS_set={} - ) - # sig needs to be scaled for normal distributions - if DSG_data['distribution_kind'] == 'normal': - DSG_data['sig'] = DSG_data['sig'] * demand_factor - - for DS_id, DS_i in enumerate(DSG_i['DamageStates']): - DS_data = {'description': DS_i['Description'], - 'weight' : DS_i['Weight']} - - DS_C = DS_i.get('Consequences', None) - if DS_C is not None: - if 'ReconstructionCost' in DS_C.keys(): - DS_CC = DS_C['ReconstructionCost'] - if isinstance(DS_CC['Amount'], list): - DS_data.update({'repair_cost': { - 'medians' : np.array([float(a) for a in DS_CC['Amount']]), - 'quantities' : np.array(DS_CC['Quantity']), - 'distribution_kind': curve_type[DS_CC.get('CurveType','N/A')], - 'cov' : DS_CC.get('Beta',None), - }}) - - # convert the quantity units to standard ones - DS_data['repair_cost']['quantities'] *= data_unit - DS_data['repair_cost']['quantities'] = DS_data['repair_cost']['quantities'].tolist() - else: - DS_data.update({'repair_cost': { - 'medians': np.array([float(DS_CC['Amount']),]), - 'distribution_kind': curve_type[DS_CC.get('CurveType','N/A')], - 'cov' : DS_CC.get('Beta',None), - }}) - - # convert the median units to standard ones - DS_data['repair_cost']['medians'] /= data_unit - DS_data['repair_cost']['medians'] = DS_data['repair_cost']['medians'].tolist() - - if 'ReconstructionTime' in DS_C.keys(): - DS_CT = DS_C['ReconstructionTime'] - if isinstance(DS_CT['Amount'], list): - DS_data.update({'repair_time': { - 'medians' : np.array([float(a) for a in DS_CT['Amount']]), - 'quantities' : np.array(DS_CT['Quantity']), - 'distribution_kind': curve_type[DS_CT.get('CurveType','N/A')], - 'cov' : DS_CT.get('Beta',None), - }}) - - # convert the quantity units to standard ones - DS_data['repair_time']['quantities'] *= data_unit - DS_data['repair_time']['quantities'] = DS_data['repair_time']['quantities'].tolist() - else: - DS_data.update({'repair_time': { - 'medians': np.array([float(DS_CT['Amount']),]), - 'distribution_kind': curve_type[DS_CT.get('CurveType','N/A')], - 'cov' : DS_CT.get('Beta',None), - }}) - - # convert the median units to standard ones - DS_data['repair_time']['medians'] /= data_unit - DS_data['repair_time']['medians'] = DS_data['repair_time']['medians'].tolist() - - if 'RedTag' in DS_C.keys(): - DS_CR = DS_C['RedTag'] - DS_data.update({'red_tag': { - 'theta': DS_CR['Amount'], - # 'distribution_kind': curve_type[DS_CR['CurveType']], - 'cov' : DS_CR['Beta'], - }}) - - if 'Injuries' in DS_C.keys(): - DS_CI = DS_C['Injuries'] - if DS_CI[0].get('Beta') is not None: - DS_data.update({'injuries': { - 'theta': [float(I_i['Amount']) for I_i in DS_CI], - # 'distribution_kind': curve_type[DS_CR['CurveType']], - 'cov' : [I_i['Beta'] for I_i in DS_CI], - }}) - else: - DS_data.update({ - 'injuries': [I_i['Amount'] for I_i in DS_CI]}) - - # if there is a chance of injuries, load the affected floor area - affected_area, unit = DS_i.get('AffectedArea', - [0.0, 'SF']) - if unit == 'SF': - affected_area = affected_area * SF - else: # pragma: no cover - warnings.warn(UserWarning( - 'Unknown unit for affected floor area: {}'.format( - unit))) - affected_area = 0. - DS_data.update({'affected_area': affected_area}) - - # convert the units to standard ones - DS_data['affected_area'] /= data_unit - - DSG_data['DS_set'].update({'DS-' + str(DS_id + 1): DS_data}) - - c_data['DSG_set'].update({'DSG-' + str(DSG_id + 1): DSG_data}) - - if verbose: # pragma: no cover - for c_id, c_data in data.items(): - print(c_id) - pp.pprint(c_data) - - return data
- -def write_SimCenter_DL_output(output_dir, output_filename, output_df, index_name='#Num', - collapse_columns = True, stats_only=False): - - # if the summary flag is set, then not all realizations are returned, but - # only the first two moments and the empirical CDF through 100 percentiles - if stats_only: - #output_df = output_df.describe(np.arange(1, 100)/100.) - #output_df = output_df.describe([0.1,0.5,0.9]) - if len(output_df.columns) > 0: - output_df = describe(output_df) - else: - output_df = describe(np.zeros(len(output_df.index))) - else: - output_df = output_df.copy() - - # the name of the index column is replaced with the provided value - output_df.index.name = index_name - - # multiple levels of indices are collapsed into a single level if needed - # TODO: check for the number of levels and prepare a smarter collapse method - if collapse_columns: - output_df.columns = [('{}/{}'.format(s0, s1)).replace(' ', '_') - for s0, s1 in zip(output_df.columns.get_level_values(0), - output_df.columns.get_level_values(1))] - - # write the results in a csv file - # TODO: provide other file formats - log_msg('\t\t\tSaving file {}'.format(output_filename)) - file_path = posixpath.join(output_dir, output_filename) - output_df.to_csv(file_path) - # TODO: this requires pandas 1.0+ > wait until next release - #with open(file_path[:-3]+'zip', 'w') as f: - # output_df.to_csv(f, compression=dict(mehtod='zip', archive_name=output_filename)) - -def write_SimCenter_EDP_output(output_dir, EDP_filename, EDP_df): - - # initialize the output DF - col_info = np.transpose([col.split('-')[1:] for col in EDP_df.columns]) - - EDP_types = np.unique(col_info[0]) - EDP_locs = np.unique(col_info[1]) - EDP_dirs = np.unique(col_info[2]) - - MI = pd.MultiIndex.from_product( - [EDP_types, EDP_locs, EDP_dirs, ['median', 'beta']], - names=['type', 'loc', 'dir', 'stat']) - - df_res = pd.DataFrame(columns=MI, index=[0, ]) - if ('PID', '0') in df_res.columns: - del df_res[('PID', '0')] - - # store the EDP statistics in the output DF - for col in np.transpose(col_info): - df_res.loc[0, (col[0], col[1], col[2], 'median')] = EDP_df[ - '1-{}-{}-{}'.format(col[0], col[1], col[2])].median() - df_res.loc[0, (col[0], col[1], col[2], 'beta')] = np.log( - EDP_df['1-{}-{}-{}'.format(col[0], col[1], col[2])]).std() - - df_res.dropna(axis=1, how='all', inplace=True) - - df_res = df_res.astype(float) #.round(4) - - # save the output - df_res.to_csv('EDP.csv') - -def write_SimCenter_DM_output(output_dir, DM_filename, SUMMARY_df, DMG_df): - - # first, get the collapses from the SUMMARY_df - df_res_c = pd.DataFrame([0,], - columns=pd.MultiIndex.from_tuples([('probability',' '),]), - index=[0, ]) - df_res_c['probability'] = SUMMARY_df[('collapses', 'collapsed')].mean() - - # aggregate the damage data along Performance Groups - DMG_agg = DMG_df.groupby(level=['FG', 'DSG_DS'], axis=1).sum() - - comp_types = [] - FG_list = [c for c in DMG_agg.columns.get_level_values('FG').unique()] - for comp_type in ['S', 'NS', 'NSA', 'NSD']: - if np.sum([fg.startswith(comp_type) for fg in FG_list]) > 0: - comp_types.append(comp_type) - if np.sum([np.any([fg.startswith(comp_type) for comp_type in comp_types]) - for fg in FG_list]) != len(FG_list): - comp_types.append('other') - - # second, get the damage state likelihoods - df_res_l = pd.DataFrame( - columns=pd.MultiIndex.from_product([comp_types, - ['0', '1_1', '2_1', '3_1', '4_1', '4_2']], - names=['comp_type', 'DSG_DS']), - index=[0, ]) - - # third, get the damage quantities conditioned on damage state - # we do not do that for now - # df_res_q = pd.DataFrame( - # columns=pd.MultiIndex.from_product([comp_types, - # ['1_1', '2_1', '3_1', '4_1', '4_2']], - # names=['comp_type', 'DSG_DS']), - # index=[0, ]) - - for comp_type in ['NSA', 'NSD', 'NS', 'other']: - if comp_type in comp_types: - del df_res_l[(comp_type, '4_2')] - # del df_res_q[(comp_type, '4_2')] - - # for each type of component... - for comp_type in comp_types: - - # select the corresponding subset of columns - if comp_type == 'other': - type_cols = [fg for fg in FG_list - if np.all([~fg.startswith(comp_type) for comp_type in comp_types])] - else: - type_cols = [c for c in DMG_agg.columns.get_level_values('FG').unique() - if c.startswith(comp_type)] - - df_sel = DMG_agg.loc[:, type_cols].groupby(level='DSG_DS',axis=1).sum() - df_sel = df_sel / len(type_cols) - - # calculate the probability of DSG exceedance - df_sel[df_sel > 0.0] = df_sel[df_sel > 0.0] / df_sel[df_sel > 0.0] - - cols = df_sel.columns - for i in range(len(cols)): - filter = np.where(df_sel.iloc[:, i].values > 0.0)[0] - df_sel.iloc[filter, idx[0:i]] = 1.0 - - df_sel_exc = pd.Series(np.mean(df_sel.values, axis=0), - index=df_sel.columns) - - DS_0 = 1.0 - df_sel_exc['1_1'] - for i in range(len(df_sel_exc.index) - 1): - df_sel_exc.iloc[i] = df_sel_exc.iloc[i] - df_sel_exc.iloc[i + 1] - - # Add the probability of no damage for convenience. - df_sel_exc.loc['0'] = DS_0 - df_sel_exc = df_sel_exc.sort_index() - - # store the results in the output DF - for dsg_i in df_sel_exc.index: - if df_sel_exc[dsg_i] > 0.0: - df_res_l.loc[:, idx[comp_type, dsg_i]] = df_sel_exc[dsg_i] - - # get the quantity of components in the highest damage state - # skip this part for now to reduce file size - if False: - df_init = DMG_agg.loc[:, type_cols].groupby(level='DSG_DS', axis=1).sum() - df_init = (df_init / len(type_cols)).round(2) - - df_sel = df_sel.sum(axis=1) - - for lvl, lvl_label in zip([1.0, 2.0, 3.0, 4.0, 5.0], - ['1_1', '2_1', '3_1', '4_1', '4_2']): - - df_cond = df_init[df_sel == lvl] - - if df_cond.size > 0: - unique_vals, unique_counts = np.unique( - df_cond[lvl_label].values, return_counts=True) - unique_counts = np.around(unique_counts / df_cond.shape[0], - decimals=4) - sorter = np.argsort(unique_counts)[::-1][:4] - DQ = list(zip(unique_vals[sorter], unique_counts[sorter])) - - # store the damaged quantities in the output df - df_res_q.loc[:,idx[comp_type, lvl_label]] = str(DQ) - - # join the output dataframes - #df_res = pd.concat([df_res_c, df_res_l, df_res_q], axis=1, - # keys=['Collapse','DS likelihood','Damaged Quantities']) - df_res = pd.concat([df_res_c, df_res_l], axis=1, keys=['Collapse','DS likelihood']) - - # save the output - with open(posixpath.join(output_dir, DM_filename), 'w') as f: - df_res.to_csv(f) - -def write_SimCenter_DM_output_old(output_dir, DM_filename, DMG_df): - - # Start with the probability of being in a particular damage state. - # Here, the damage state of the building (asset) is defined as the highest - # damage state among the building components/component groups. This works - # well for a HAZUS assessment, but something more sophisticated is needed - # for a FEMA P58 assessment. - - # Determine the probability of DS exceedance by collecting the DS from all - # components and assigning ones to all lower damage states. - DMG_agg = DMG_df.T.groupby('DSG_DS').sum().T - DMG_agg[DMG_agg > 0.0] = DMG_agg[DMG_agg > 0.0] / DMG_agg[DMG_agg > 0.0] - - cols = DMG_agg.columns - for i in range(len(cols)): - filter = np.where(DMG_agg.iloc[:,i].values > 0.0)[0] - DMG_agg.iloc[filter,idx[0:i]] = 1.0 - - # The P(DS=ds) probability is determined by subtracting consecutive DS - # exceedance probabilites. This will not work well for a FEMA P58 assessment - # with Damage State Groups that include multiple Damage States. - #DMG_agg_mean = DMG_agg.describe().loc['mean',:] - DMG_agg_mean = pd.Series(np.mean(DMG_agg.values, axis=0), index=DMG_agg.columns) - - DS_0 = 1.0 - DMG_agg_mean['1_1'] - for i in range(len(DMG_agg_mean.index)-1): - DMG_agg_mean.iloc[i] = DMG_agg_mean.iloc[i] - DMG_agg_mean.iloc[i+1] - - # Add the probability of no damage for convenience. - DMG_agg_mean['0'] = DS_0 - DMG_agg_mean = DMG_agg_mean.sort_index() - - # Save the results in the output json file - DM = {'aggregate': {}} - - for id in DMG_agg_mean.index: - DM['aggregate'].update({str(id): DMG_agg_mean[id]}) - - # Now determine the probability of being in a damage state for individual - # components / component assemblies... - #DMG_mean = DMG_df.describe().loc['mean',:] - DMG_mean = pd.Series(np.mean(DMG_df.values, axis=0), index=DMG_df.columns) - - # and save the results in the output json file. - for FG in sorted(DMG_mean.index.get_level_values('FG').unique()): - DM.update({str(FG):{}}) - - for PG in sorted( - DMG_mean.loc[idx[FG],:].index.get_level_values('PG').unique()): - DM[str(FG)].update({str(PG):{}}) - - for DS in sorted( - DMG_mean.loc[idx[FG],:].loc[idx[:,PG],:].index.get_level_values('DSG_DS').unique()): - DM[str(FG)][str(PG)].update({str(DS): DMG_mean.loc[(FG,PG,DS)]}) - - log_msg('\t\t\tSaving file {}'.format(DM_filename)) - with open(posixpath.join(output_dir, DM_filename), 'w') as f: - json.dump(DM, f, indent = 2) - -def write_SimCenter_DV_output(output_dir, DV_filename, GI, SUMMARY_df, DV_dict): - - DV_cost = None - DV_time = None - DV_inj = [None,]*4 - - for DV_name, DV_mod in DV_dict.items(): - if 'rec_cost' in DV_name: - DV_cost = DV_mod - elif 'rec_time' in DV_name: - DV_time = DV_mod - elif 'injuries_1' in DV_name: - DV_inj[0] = DV_mod - elif 'injuries_2' in DV_name: - DV_inj[1] = DV_mod - elif 'injuries_3' in DV_name: - DV_inj[2] = DV_mod - elif 'injuries_4' in DV_name: - DV_inj[3] = DV_mod - - DVs = SUMMARY_df.columns.get_level_values(1) - - if DV_cost is not None: - - comp_types = [] - FG_list = [c for c in DV_cost.columns.get_level_values('FG').unique()] - for comp_type in ['S', 'NS', 'NSA', 'NSD']: - if np.sum([fg.startswith(comp_type) for fg in FG_list]) > 0: - comp_types.append(comp_type) - - repl_cost = GI['replacement_cost'] - - headers = [['Repair Cost',], - ['aggregate',], - [' ',], - ['mean','std','10%','median','90%']] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_Cagg = pd.DataFrame(columns=MI, index=[0, ]) - df_res_Cagg.fillna(0, inplace=True) - - headers = [['Repair Impractical',], - ['probability',], - [' ',], - [' ',]] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_Cimp = pd.DataFrame(columns=MI, index=[0, ]) - df_res_Cimp[('Repair Impractical', 'probability')] = SUMMARY_df[('reconstruction', 'cost impractical')].mean() - df_res_Cimp = df_res_Cimp.astype(float) - - headers = [['Repair Cost',], - comp_types, - ['aggregate','1_1', '2_1', '3_1', '4_1', '4_2'], - ['mean',]] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_C = pd.DataFrame(columns=MI, index=[0, ]) - - for comp_type in ['NSA', 'NSD', 'NS']: - if comp_type in comp_types: - del df_res_C[('Repair Cost', comp_type, '4_2')] - - if DV_time is not None: - - repl_time = GI['replacement_time'] - - headers = [['Repair Time',], - [' ',], - ['aggregate',], - ['mean','std','10%','median','90%']] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_Tagg = pd.DataFrame(columns=MI, index=[0, ]) - df_res_Tagg.fillna(0, inplace=True) - - if DV_inj[0] is not None: - - lvls = [] - [lvls.append(f'sev{i+1}') for i in range(4) if DV_inj[i] is not None] - - headers = [['Injuries',], - lvls, - ['aggregate',], - ['mean','std','10%','median','90%']] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_Iagg = pd.DataFrame(columns=MI, index=[0, ]) - df_res_Iagg.fillna(0, inplace=True) - - dfs_to_join = [] - - # start with the disaggregated costs... - if DV_cost is not None: - for type_ID in comp_types: - - DV_res = DV_cost.groupby(level=['FG', 'DSG_DS'], axis=1).sum() - - type_cols = [c for c in DV_res.columns.get_level_values('FG').unique() if c.startswith(type_ID)] - - df_cost = DV_res.loc[:, type_cols].groupby(level='DSG_DS',axis=1).sum() - - # create a df with 1s at cells with damage and identify the governing DS - df_sel = df_cost.copy() - df_sel[df_sel>0.0] = df_sel[df_sel>0.0] / df_sel[df_sel>0.0] - - cols = df_sel.columns - for i in range(len(cols)): - filter = np.where(df_sel.iloc[:,i].values > 0.0)[0] - df_sel.iloc[filter,idx[0:i]] = 1.0 - df_sel = df_sel.sum(axis=1) - - if type_ID == 'S': - ds_list = ['1_1', '2_1', '3_1', '4_1', '4_2'] - else: - ds_list = ['1_1', '2_1', '3_1', '4_1'] - - # store the results in the output DF - df_cost = df_cost.sum(axis=1) - df_cost.loc[:] = np.minimum(df_cost.values, repl_cost) - mean_costs = [df_cost.loc[df_sel == dsg_i+1].mean() for dsg_i, dsg in enumerate(ds_list)] - - df_res_C.loc[:, idx['Repair Cost', type_ID, ds_list, 'mean']] = mean_costs - df_res_C.loc[:, idx['Repair Cost', type_ID, 'aggregate', 'mean']] = df_cost.mean() - - df_res_C = df_res_C.astype(float) #.round(0) - - # now store the aggregate results for cost - DV_res = describe(SUMMARY_df[('reconstruction','cost')]) - - df_res_Cagg.loc[:, idx['Repair Cost', 'aggregate', ' ', ['mean', 'std','10%','median','90%']]] = DV_res[['mean', 'std','10%','50%','90%']].values - - df_res_Cagg = df_res_Cagg.astype(float) #.round(0) - dfs_to_join = dfs_to_join + [df_res_Cagg, df_res_Cimp, df_res_C] - - if DV_time is not None: - DV_res = describe(SUMMARY_df[('reconstruction','time')]) - - df_res_Tagg.loc[:, idx['Repair Time', ' ', 'aggregate', ['mean', 'std','10%','median','90%']]] = DV_res[['mean', 'std','10%','50%','90%']].values - - df_res_Tagg = df_res_Tagg.astype(float) #.round(1) - dfs_to_join.append(df_res_Tagg) - - if DV_inj[0] is not None: - for i in range(4): - if DV_inj[i] is not None: - DV_res = describe(SUMMARY_df[('injuries',f'sev{i+1}')]) - - df_res_Iagg.loc[:, idx['Injuries', f'sev{i+1}', 'aggregate', ['mean', 'std','10%','median','90%']]] = DV_res[['mean', 'std','10%','50%','90%']].values - - df_res_Iagg = df_res_Iagg.astype(float) #.round(6) - - dfs_to_join.append(df_res_Iagg) - - df_res = pd.concat(dfs_to_join,axis=1) - - # save the output - with open(posixpath.join(output_dir, DV_filename), 'w') as f: - df_res.to_csv(f) - -def write_SimCenter_DV_output_old(output_dir, DV_filename, DV_df, DV_name): - - DV_name = convert_dv_name[DV_name] - - DV_file_path = posixpath.join(output_dir, DV_filename) - - try: - with open(DV_file_path, 'r') as f: - DV = json.load(f) - except: - DV = {} - - DV.update({DV_name: {}}) - - DV_i = DV[DV_name] - - try: - #if True: - #DV_tot = DV_df.sum(axis=1).describe([0.1,0.5,0.9]).drop('count') - DV_tot = describe(np.sum(DV_df.values, axis=1)) - DV_i.update({'total':{}}) - for stat in DV_tot.index: - DV_i['total'].update({stat: DV_tot.loc[stat]}) - - #DV_stats = DV_df.describe([0.1,0.5,0.9]).drop('count') - DV_stats = describe(DV_df) - for FG in sorted(DV_stats.columns.get_level_values('FG').unique()): - DV_i.update({str(FG):{}}) - - for PG in sorted( - DV_stats.loc[:,idx[FG]].columns.get_level_values('PG').unique()): - DV_i[str(FG)].update({str(PG):{}}) - - for DS in sorted( - DV_stats.loc[:,idx[FG, PG]].columns.get_level_values('DSG_DS').unique()): - DV_i[str(FG)][str(PG)].update({str(DS): {}}) - DV_stats_i = DV_stats.loc[:,(FG,PG,DS)] - for stat in DV_stats_i.index: - DV_i[str(FG)][str(PG)][str(DS)].update({ - stat: DV_stats_i.loc[stat]}) - except: - pass - - log_msg('\t\t\tSaving file {}'.format(DV_filename)) - with open(DV_file_path, 'w') as f: - json.dump(DV, f, indent = 2) -
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/model.html b/docs/_modules/pelicun/model.html deleted file mode 100644 index 04216fe8e..000000000 --- a/docs/_modules/pelicun/model.html +++ /dev/null @@ -1,1147 +0,0 @@ - - - - - - - - - - pelicun.model — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.model
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.model

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-This module has classes and methods that define and access the model used for
-loss assessment.
-
-.. rubric:: Contents
-
-.. autosummary::
-
-    prep_constant_median_DV
-    prep_bounded_linear_median_DV
-    prep_bounded_multilinear_median_DV
-
-    FragilityFunction
-    ConsequenceFunction
-    DamageState
-    DamageStateGroup
-    PerformanceGroup
-    FragilityGroup
-
-"""
-
-from .base import *
-
-
[docs]class FragilityFunction(object): - """ - Describes the relationship between asset response and damage. - - Asset response is characterized by a Demand value that represents an - engineering demand parameter (EDP). Only a scalar EDP is supported - currently. The damage is characterized by a set of DamageStateGroup (DSG) - objects. For each DSG, the corresponding EDP limit (i.e. the EDP at which - the asset is assumed to experience damage described by the DSG) is - considered uncertain; hence, it is described by a random variable. The - random variables that describe EDP limits for the set of DSGs are not - necessarily independent. - - We assume that the EDP limit will be approximated by a probability - distribution for each DSG and these variables together form a multivariate - distribution. Following common practice, the correlation between - variables is assumed perfect by default, but the framework allows the - users to explore other, more realistic options. - - Parameters - ---------- - EDP_limit: list of RandomVariable - A list of correlated random variables where each variable corresponds - to an EDP limit that triggers a damage state. The number of - list elements shall be equal to the number of DSGs handled by the - Fragility Function (FF) and they shall be in ascending order of damage - severity. - - """ - - def __init__(self, EDP_limit): - self._EDP_limit = EDP_limit - - self._EDP_tags = [EDP_lim_i.name for EDP_lim_i in EDP_limit] - -
[docs] def P_exc(self, EDP, DSG_ID): - """ - Return the probability of damage state exceedance. - - Calculate the probability of exceeding the damage corresponding to the - DSG identified by the DSG_ID conditioned on a particular EDP value. - - Parameters - ---------- - EDP: float scalar or ndarray - Single EDP or numpy array of EDP values. - DSG_ID: int - Identifies the conditioning DSG. The DSG numbering is 1-based, - because zero typically corresponds to the undamaged state. - - Returns - ------- - P_exc: float scalar or ndarray - DSG exceedance probability at the given EDP point(s). - """ - - EDP = np.asarray(EDP, dtype=np.float64) - nvals = EDP.size - - # The exceedance probability corresponding to no damage is 1. - # Although this is trivial, returning 1 for DSG_ID=0 makes using P_exc - # more convenient. - if DSG_ID == 0: - P_exc = np.ones(EDP.size) - else: - # prepare the limits for the density calculation - ndims = len(self._EDP_limit) - - limit_list = np.full((ndims, nvals), -np.inf, dtype=np.float64) - limit_list[DSG_ID - 1:] = EDP - limit_list[:DSG_ID - 1] = None - - P_exc = 1.0 - self._EDP_limit[0].RV_set.orthotope_density( - lower=limit_list, var_subset = self._EDP_tags) - - # if EDP was a scalar, make sure that the result is also a scalar - if EDP.size == 1: - return P_exc[0] - else: - return P_exc
- -
[docs] def DSG_given_EDP(self, EDP, force_resampling=False): - """ - Given an EDP, get a damage level based on the fragility function. - - The damage is evaluated by sampling the joint distribution of - fragilities corresponding to all possible damage levels and checking - which damage level the given EDP falls into. This approach allows for - efficient damage state evaluation for a large number of EDP - realizations. - - Parameters - ---------- - EDP: float scalar or ndarray or Series - Single EDP, or numpy array or pandas Series of EDP values. - force_resampling: bool, optional, default: False - If True, the probability distribution is resampled before - evaluating the damage for each EDP. This is not recommended if the - fragility functions are correlated with other sources of - uncertainty because those variables will also be resampled in this - case. If False, which is the default approach, we assume that - the random variable has already been sampled and the number of - samples greater or equal to the number of EDP values. - - Returns - ------- - DSG_ID: Series - Identifies the damage that corresponds to the given EDP. A DSG_ID - of 0 means no damage. - - """ - # get the number of samples needed - nsamples = EDP.size - - # if there are no samples or resampling is forced, then sample the - # distribution first - # TODO: force_resampling is probably not needed - # if force_resampling or (self._EDP_limit.samples is None): - # self._EDP_limit.sample_distribution(sample_size=nsamples) - # - # # if the number of samples is not sufficiently large, raise an error - # if self._EDP_limit.samples.shape[0] < nsamples: - # raise ValueError( - # 'Damage evaluation requires at least as many samples of the ' - # 'joint distribution defined by the fragility functions as ' - # 'many EDP values are provided to the DSG_given_EDP function. ' - # 'You might want to consider setting force_resampling to True ' - # 'or sampling the distribution before calling the DSG_given_EDP ' - # 'function.') - - #samples = pd.DataFrame(self._EDP_limit.samples) - samples = pd.DataFrame(dict([(lim_i.name, lim_i.samples) - for lim_i in self._EDP_limit])) - - if type(EDP) not in [pd.Series, pd.DataFrame]: - EDP = pd.Series(EDP, name='EDP') - - #nstates = samples.columns.values.size - nstates = samples.shape[1] - - samples = samples.loc[EDP.index,:] - - # sort columns - sample_cols = samples.columns - samples = samples[sample_cols[np.argsort(sample_cols)]] - - # check for EDP exceedance - EXC = samples.sub(EDP, axis=0) < 0. - - DSG_ID = pd.Series(np.zeros(len(samples.index)), name='DSG_ID', - index=samples.index, dtype=np.int) - - for s in range(nstates): - DSG_ID[EXC.iloc[:,s]] = s + 1 - - return DSG_ID
- -
[docs]def prep_constant_median_DV(median): - """ - Returns a constant median Decision Variable (DV) function. - - Parameters - ---------- - median: float - The median DV for a consequence function with fixed median. - - Returns - ------- - f: callable - A function that returns the constant median DV for all component - quantities. - """ - def f(quantity): - return median - - return f
- -
[docs]def prep_bounded_linear_median_DV(median_max, median_min, quantity_lower, - quantity_upper): - """ - Returns a bounded linear median Decision Variable (DV) function. - - The median DV equals the min and max values when the quantity is - outside of the prescribed quantity bounds. When the quantity is within the - bounds, the returned median is calculated by a linear function with a - negative slope between max and min values. - - Parameters - ---------- - median_max: float, optional - median_min: float, optional - Minimum and maximum limits that define the bounded_linear median DV - function. - quantity_lower: float, optional - quantity_upper: float, optional - Lower and upper bounds of component quantity that define the - bounded_linear median DV function. - - Returns - ------- - f: callable - A function that returns the median DV given the quantity of damaged - components. - """ - def f(quantity): - if quantity is None: - raise ValueError( - 'A bounded linear median Decision Variable function called ' - 'without specifying the quantity of damaged components') - - q_array = np.asarray(quantity, dtype=np.float64) - - # calculate the median consequence given the quantity of damaged - # components - output = np.interp(q_array, - [quantity_lower, quantity_upper], - [median_max, median_min]) - - return output - - return f
- -
[docs]def prep_bounded_multilinear_median_DV(medians, quantities): - """ - Returns a bounded multilinear median Decision Variable (DV) function. - - The median DV equals the min and max values when the quantity is - outside of the prescribed quantity bounds. When the quantity is within the - bounds, the returned median is calculated by linear interpolation. - - Parameters - ---------- - medians: ndarray - Series of values that define the y coordinates of the multilinear DV - function. - quantities: ndarray - Series of values that define the component quantities corresponding to - the series of medians and serving as the x coordinates of the - multilinear DV function. - - Returns - ------- - f: callable - A function that returns the median DV given the quantity of damaged - components. - """ - def f(quantity): - if quantity is None: - raise ValueError( - 'A bounded linear median Decision Variable function called ' - 'without specifying the quantity of damaged components') - - q_array = np.asarray(quantity, dtype=np.float64) - - # calculate the median consequence given the quantity of damaged - # components - output = np.interp(q_array, quantities, medians) - - return output - - return f
- -
[docs]class ConsequenceFunction(object): - """ - Describes the relationship between damage and a decision variable. - - Indicates the distribution of a quantified Decision Variable (DV) - conditioned on a component, an element, or the system reaching a given - damage state (DS). DV can be reconstruction cost, repair time, casualties, - injuries, etc. Its distribution might depend on the quantity of damaged - components. - - Parameters - ---------- - - DV_median: callable - Describes the median DV as an f(quantity) function of the total - quantity of damaged components. Use the prep_constant_median_DV, and - prep_bounded_linear_median_DV helper functions to conveniently - prescribe the typical FEMA P-58 functions. - DV_distribution: RandomVariable - A random variable that characterizes the uncertainty in the DV. The - distribution shall be normalized by the median DV (i.e. the RV is - expected to have a unit median). Truncation can be used to - prescribe lower and upper limits for the DV, such as the (0,1) domain - needed for red tag evaluation. - - """ - - def __init__(self, DV_median, DV_distribution): - - self._DV_median = DV_median - self._DV_distribution = DV_distribution - -
[docs] def median(self, quantity=None): - """ - Return the value of the median DV. - - The median DV corresponds to the component damage state (DS). If the - damage consequence depends on the quantity of damaged components, the - total quantity of damaged components shall be specified through the - quantity parameter. - - Parameters - ---------- - quantity: float scalar or ndarray, optional - Total quantity of damaged components that determines the magnitude - of median DV. Not needed for consequence functions with a fixed - median DV. - - Returns - ------- - median: float scalar or ndarray - A single scalar for fixed median; a scalar or an array depending on - the shape of the quantity parameter for bounded_linear median. - - """ - return self._DV_median(quantity)
- -
[docs] def sample_unit_DV(self, quantity=None, sample_size=1, - force_resampling=False): - """ - Sample the decision variable quantity per component unit. - - The Unit Decision Variable (UDV) corresponds to the component Damage - State (DS). It shall be multiplied by the quantity of damaged - components to get the total DV that corresponds to the quantity of the - damaged components in the asset. If the DV depends on the total - quantity of damaged components, that value shall be specified through - the quantity parameter. - - Parameters - ---------- - quantity: float scalar, ndarray or Series, optional, default: None - Total quantity of damaged components that determines the magnitude - of median DV. Not needed for consequence functions with a fixed - median DV. - sample_size: int, optional, default: 1 - Number of samples drawn from the DV distribution. The default value - yields one sample. If quantity is an array with more than one - element, the sample_size parameter is ignored. - force_resampling: bool, optional, default: False - If True, the DV distribution (and the corresponding RV if there - are correlations) is resampled even if there are samples already - available. This is not recommended if the DV distribution is - correlated with other sources of uncertainty because those - variables will also be resampled in this case. If False, which is - the default approach, we assume that the random variable has - already been sampled and the number of samples is greater or equal - to the number of samples requested. - - Returns - ------- - unit_DV: float scalar or ndarray - Unit DV samples. - - """ - # get the median DV conditioned on the provided quantities - median = self.median(quantity=np.asarray(quantity)) - - # if the distribution is None, then there is no uncertainty in the DV - # and the median values are the samples - if self._DV_distribution is None: - return median - - else: - # if there are more than one quantities defined, infer the number of - # samples from the number of quantities - if quantity is not None: - if type(quantity) not in [pd.Series, pd.DataFrame]: - quantity = pd.Series(quantity, name='QNT') - - if quantity.size > 1: - sample_size = quantity.size - elif sample_size > 1: - quantity = pd.Series(np.ones(sample_size) * quantity.values, - name='QNT') - - # if there are no samples or resampling is forced, then sample the - # distribution first - # TODO: force_resampling is probably not needed - # if (force_resampling or - # (self._DV_distribution.samples is None)): - # self._DV_distribution.sample_distribution(sample_size=sample_size) - - # # if the number of samples is not sufficiently large, raise an error - # if self._DV_distribution.samples.shape[0] < sample_size: - # raise ValueError( - # 'Consequence evaluation requires at least as many samples of ' - # 'the Decision Variable distribution as many samples are ' - # 'requested or as many quantity values are provided to the ' - # 'sample_unit_DV function. You might want to consider setting ' - # 'force_resampling to True or sampling the distribution before ' - # 'calling the sample_unit_DV function.') - - # get the samples - if quantity is not None: - samples = pd.Series(self._DV_distribution.samples).loc[quantity.index] - else: - samples = pd.Series(self._DV_distribution.samples).iloc[:sample_size] - samples = samples * median - - return samples
- - -
[docs]class DamageState(object): - """ - Characterizes one type of damage that corresponds to a particular DSG. - - The occurrence of damage is evaluated at the DSG. The DS describes one of - the possibly several types of damages that belong to the same DSG and the - consequences of such damage. - - Parameters - ---------- - - ID:int - weight: float, optional, default: 1.0 - Describes the probability of DS occurrence, conditioned on the damage - being in the DSG linked to this DS. This information is only used for - DSGs with multiple DS corresponding to them. The weights of the set of - DS shall sum up to 1.0 if they are mutually exclusive. When the set of - DS occur simultaneously, the sum of weights typically exceeds 1.0. - description: str, optional - Provides a short description of the damage state. - affected_area: float, optional, default: 0. - Defines the area over which life safety hazards from this DS exist. - repair_cost_CF: ConsequenceFunction, optional - A consequence function that describes the cost necessary to restore the - component to its pre-disaster condition. - reconstruction_time_CF: ConsequenceFunction, optional - A consequence function that describes the time, necessary to repair the - damaged component to its pre-disaster condition. - injuries_CF_set: ConsequenceFunction array, optional - A set of consequence functions; each describes the number of people - expected to experience injury of a particular severity when the - component is in this DS. Any number of injury-levels can be considered. - red_tag_CF: ConsequenceFunction, optional - A consequence function that describes the proportion of components - (within a Performance Group) that needs to be damaged to trigger an - unsafe placard (i.e. red tag) for the building during post-disaster - inspection. - - """ - - def __init__(self, ID, weight=1.0, description='', - repair_cost_CF=None, reconstruction_time_CF=None, - injuries_CF_set=None, affected_area=0., red_tag_CF=None): - self._ID = int(ID) - self._weight = float(weight) - self._description = description - self._repair_cost_CF = repair_cost_CF - self._reconstruction_time_CF = reconstruction_time_CF - self._injuries_CF_set = injuries_CF_set - self._affected_area = affected_area - self._red_tag_CF = red_tag_CF - - @property - def description(self): - """ - Return the damage description. - """ - return self._description - - @property - def weight(self): - """ - Return the weight of DS among the set of damage states in the DSG. - """ - return self._weight - -
[docs] def unit_repair_cost(self, quantity=None, sample_size=1, **kwargs): - """ - Sample the repair cost distribution and return the unit repair costs. - - The unit repair costs shall be multiplied by the quantity of damaged - components to get the total repair costs for the components in this DS. - - Parameters - ---------- - quantity: float scalar, ndarray or Series, optional, default: None - Total quantity of damaged components that determines the median - repair cost. Not used for repair cost models with fixed median. - sample_size: int, optional, default: 1 - Number of samples drawn from the repair cost distribution. The - default value yields one sample. - - Returns - ------- - unit_repair_cost: float scalar or ndarray - Unit repair cost samples. - - """ - output = None - if self._repair_cost_CF is not None: - output = self._repair_cost_CF.sample_unit_DV(quantity=quantity, - sample_size=sample_size, - **kwargs) - - return output
- -
[docs] def unit_reconstruction_time(self, quantity=None, sample_size=1, - **kwargs): - """ - Sample the reconstruction time distribution and return the unit - reconstruction times. - - The unit reconstruction times shall be multiplied by the quantity of - damaged components to get the total reconstruction time for the - components in this DS. - - Parameters - ---------- - quantity: float scalar, ndarray or Series, optional, default: None - Total quantity of damaged components that determines the magnitude - of median reconstruction time. Not used for reconstruction time - models with fixed median. - sample_size: int, optional, default: 1 - Number of samples drawn from the reconstruction time distribution. - The default value yields one sample. - - Returns - ------- - unit_reconstruction_time: float scalar or ndarray - Unit reconstruction time samples. - - """ - output = None - if self._reconstruction_time_CF is not None: - output = self._reconstruction_time_CF.sample_unit_DV( - quantity=quantity, - sample_size=sample_size, **kwargs) - - return output
- -
[docs] def red_tag_dmg_limit(self, sample_size=1, **kwargs): - """ - Sample the red tag consequence function and return the proportion of - components that needs to be damaged to trigger a red tag. - - The red tag consequence function is assumed to have a fixed median - value that does not depend on the quantity of damaged components. - - Parameters - ---------- - sample_size: int, optional, default: 1 - Number of samples drawn from the red tag consequence distribution. - The default value yields one sample. - - Returns - ------- - red_tag_trigger: float scalar or ndarray - Samples of damaged component proportions that trigger a red tag. - - """ - output = None - if self._red_tag_CF is not None: - output = self._red_tag_CF.sample_unit_DV(sample_size=sample_size, - **kwargs) - - return output
- -
[docs] def unit_injuries(self, severity_level=0, sample_size=1, **kwargs): - """ - Sample the injury consequence function that corresponds to the - specified level of severity and return the injuries per component unit. - - The injury consequence function is assumed to have a fixed median - value that does not depend on the quantity of damaged components (i.e. - the number of injuries per component unit does not change with the - quantity of components.) - - Parameters - ---------- - severity_level: int, optional, default: 1 - Identifies which injury consequence to sample. The indexing of - severity levels is zero-based. - sample_size: int, optional, default: 1 - Number of samples drawn from the injury consequence distribution. - The default value yields one sample. - - Returns - ------- - unit_injuries: float scalar or ndarray - Unit injury samples. - - """ - - - output = None - if len(self._injuries_CF_set) > severity_level: - CF = self._injuries_CF_set[severity_level] - if CF is not None: - output = CF.sample_unit_DV(sample_size=sample_size, **kwargs) - - return output
- - -
[docs]class DamageStateGroup(object): - """ - A set of similar component damages that are controlled by the same EDP. - - Damages are described in detail by the set of Damage State objects. - Damages in a DSG are assumed to occur at the same EDP magnitude. A Damage - State Group (DSG) might have only a single DS in the simplest case. - - Parameters - ---------- - ID: int - DS_set: DamageState array - DS_set_kind: {'single', 'mutually_exclusive', 'simultaneous'} - Specifies the relationship among the DS in the set. When only one DS is - defined, use the 'single' option to improve calculation efficiency. - When multiple DS are present, the 'mutually_exclusive' option assumes - that the occurrence of one DS precludes the occurrence of another DS. - In such a case, the weights of the DS in the set shall sum up to 1.0. - In a 'simultaneous' case the DS are independent and unrelated. Hence, - they can occur at the same time and at least one of them has to occur. - """ - - def __init__(self, ID, DS_set, DS_set_kind): - self._ID = ID - self._DS_set = DS_set - self._DS_set_kind = DS_set_kind
- -
[docs]class PerformanceGroup(object): - """ - A group of similar components that experience the same demands. - - FEMA P-58: Performance Groups (PGs) are a sub-categorization of fragility - groups. A performance group is a subset of fragility group components that - are subjected to the same demands (e.g. story drift, floor acceleration, - etc.). - - In buildings, most performance groups shall be organized by story level. - There is no need to separate performance groups by direction, because the - direction of components within a group can be specified during definition, - and it will be taken into consideration in the analysis. - - Parameters - ---------- - ID: int - location: int - Identifies the location of the components that belong to the PG. In a - building, location shall typically refer to the story of the building. - The location assigned to each PG shall be in agreement with the - locations assigned to the Demand objects. - quantity: RandomVariable - Specifies the quantity of components that belong to this PG. - Uncertainty in component quantities is considered by assigning a - random variable to this property. - fragility_functions: FragilityFunction list - Each fragility function describes the probability that the damage in - a subset of components will meet or exceed the damages described by - each damage state group in the DSG_set. Each is a multi-dimensional - function if there is more than one DSG. The number of functions shall - match the number of subsets defined by the `csg_weights` parameter. - DSG_set: DamageStateGroup array - A set of sequential Damage State Groups that describe the plausible set - of damage states of the components in the FG. - csg_weights: float ndarray, optional, default: [1.0] - Identifies subgroups of components within a PG, each of which have - perfectly correlated behavior. Correlation between the damage and - consequences among subgroups is controlled by the `correlation` - parameter of the FragilityGroup that the PG belongs to. Note that if - the components are assumed to have perfectly correlated behavior at the - PG level, assigning several subgroups to the PG is unnecessary. This - input shall be a list of weights that are applied to the quantity - of components to define the amount of components in each subgroup. The - sum of assigned weights shall be 1.0. - directions: int ndarray, optional, default: [0] - Identifies the direction of each subgroup of components within the PG. - The number of directions shall be identical to the number of - csg_weights assigned. In buildings, directions typically correspond to - the orientation of components in plane. Hence, using 0 or 1 to identify - 'X' or 'Y' is recommended. These directions shall be in agreement with - the directions assigned to Demand objects. - """ - - def __init__(self, ID, location, quantity, fragility_functions, DSG_set, - csg_weights=[1.0], direction=0): - self._ID = ID - self._location = location - self._quantity = quantity - if type(fragility_functions) == FragilityFunction: - self._FF_set = [fragility_functions,] - else: - self._FF_set = fragility_functions - self._DSG_set = DSG_set - self._csg_weights = csg_weights - self._direction = direction - -
[docs] def P_exc(self, EDP, DSG_ID): - """ - This is a convenience function that provides a shortcut to - fragility_function.P_exc(). It calculates the exceedance probability - of a given DSG conditioned on the provided EDP value(s). The fragility - functions assigned to the first subset are used for this calculation - because P_exc shall be identical among subsets. - - Parameters - ---------- - EDP: float scalar or ndarray - Single EDP or numpy array of EDP values. - DSG_ID: int - Identifies the DSG of interest. - - Returns - ------- - P_exc: float scalar or ndarray - Exceedance probability of the given DSG at the EDP point(s). - """ - return self._FF_set[0].P_exc(EDP, DSG_ID)
- - -
[docs]class FragilityGroup(object): - """ - Groups a set of similar components from a loss-assessment perspective. - - Characterizes a set of structural or non-structural components that have - similar construction characteristics, similar potential modes of damage, - similar probability of incurring those modes of damage, and similar - potential consequences resulting from their damage. - - Parameters - ---------- - ID: int - demand_type: {'PID', 'PFA', 'PSD', 'PSA', 'ePGA', 'PGD'} - The type of Engineering Demand Parameter (EDP) that controls the damage - of the components in the FG. See Demand for acronym descriptions. - performance_groups: PerformanceGroup array - A list of performance groups that contain the components characterized - by the FG. - directional: bool, optional, default: True - Determines whether the components in the FG are sensitive to the - directionality of the EDP. - correlation: bool, optional, default: True - Determines whether the components within a Performance Group (PG) will - have correlated or uncorrelated damage. Correlated damage means that - all components will have the same damage state. In the uncorrelated - case, each component in the performance group will have its damage - state evaluated independently. Correlated damage reduces the required - computational effort for the calculation. Incorrect correlation - modeling will only slightly affect the mean estimates, but might - significantly change the dispersion of results. - demand_location_offset: int, optional, default: 0 - Indicates if the location for the demand shall be different from the - location of the components. Damage to components of the ceiling, for - example, is controlled by demands on the floor above the one that the - components belong to. This can be indicated by setting the - demand_location_offset to 1 for such an FG. - incomplete: bool, optional, default: False - Indicates that the FG information is not complete and corresponding - results shall be treated with caution. - name: str, optional, default: '' - Provides a short description of the fragility group. - description: str, optional, default: '' - Provides a detailed description of the fragility group. - """ - - def __init__(self, ID, demand_type, performance_groups, - directional=True, correlation=True, demand_location_offset=0, - incomplete=False, name='', description='', unit="ea"): - self._ID = ID - self._demand_type = demand_type - self._performance_groups = performance_groups - self._directional = directional - self._correlation = correlation - self._demand_location_offset = demand_location_offset - self._incomplete = incomplete - self._name = name - self._description = description - self._unit = unit - - @property - def description(self): - """ - Return the fragility group description. - """ - return self._description - - @property - def name(self): - """ - Return the name of the fragility group. - - """ - return self._name
-
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/tests/test_control.html b/docs/_modules/pelicun/tests/test_control.html deleted file mode 100644 index 274c9e59c..000000000 --- a/docs/_modules/pelicun/tests/test_control.html +++ /dev/null @@ -1,4888 +0,0 @@ - - - - - - - - - - pelicun.tests.test_control — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.tests.test_control
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.tests.test_control

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-These are unit and integration tests on the control module of pelicun.
-
-"""
-
-import pytest
-import numpy as np
-from numpy.testing import assert_allclose
-from scipy.stats import truncnorm as tnorm
-from copy import deepcopy
-
-import os, sys, inspect
-current_dir = os.path.dirname(
-    os.path.abspath(inspect.getfile(inspect.currentframe())))
-parent_dir = os.path.dirname(current_dir)
-sys.path.insert(0,os.path.dirname(parent_dir))
-
-from pelicun.control import *
-from pelicun.uq import mvn_orthotope_density as mvn_od
-from pelicun.tests.test_pelicun import prob_allclose, prob_approx
-
-# -----------------------------------------------------------------------------
-# FEMA_P58_Assessment
-# -----------------------------------------------------------------------------
-
-
[docs]def test_FEMA_P58_Assessment_central_tendencies(): - """ - Perform a loss assessment with customized inputs that reduce the - dispersion of calculation parameters to negligible levels. This allows us - to test the results against pre-defined reference values in spite of the - randomness involved in the calculations. - - """ - - base_input_path = 'resources/' - DL_input = base_input_path + 'input data/' + "DL_input_test.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values())[0] - assert RV_EDP.theta[0] == pytest.approx(0.5 * g) - assert RV_EDP.theta[1] == pytest.approx(0.5 * g * 1e-6, abs=1e-7) - assert RV_EDP._distribution == 'lognormal' - - # QNT - assert A._QNT_dict is None - #RV_QNT = A._RV_dict['QNT'] - #assert RV_QNT is None - - # FRG - RV_FRG = list(A._FF_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_FRG]).T - assert_allclose(thetas, np.array([0.444, 0.6, 0.984]) * g, rtol=0.01) - assert_allclose(betas, np.array([0.3, 0.4, 0.5]), rtol=0.01) - - rho = RV_FRG[0].RV_set.Rho() - assert_allclose(rho, np.ones((3, 3)), rtol=0.01) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_FRG]) - - # RED - RV_RED = list(A._DV_RED_dict.values()) - - mus, sigmas = np.array([rv.theta for rv in RV_RED]).T - assert_allclose(mus, np.ones(2), rtol=0.01) - assert_allclose(sigmas, np.array([1e-4, 1e-4]), rtol=0.01) - - rho = RV_RED[0].RV_set.Rho() - assert_allclose(rho, np.array([[1, 0], [0, 1]]), rtol=0.01) - - assert np.all([rv.distribution == 'normal' for rv in RV_RED]) - - assert_allclose (RV_RED[0].truncation_limits, [0., 2.], rtol=0.01) - assert_allclose (RV_RED[1].truncation_limits, [0., 4.], rtol=0.01) - - # INJ - RV_INJ = list(A._DV_INJ_dict.values()) - - mus, sigmas = np.array([rv.theta for rv in RV_INJ]).T - assert_allclose(mus, np.ones(4), rtol=0.01) - assert_allclose(sigmas, np.ones(4) * 1e-4, rtol=0.01) - - rho = RV_INJ[0].RV_set.Rho() - rho_target = np.zeros((4, 4)) - np.fill_diagonal(rho_target, 1.) - assert_allclose(rho, rho_target, rtol=0.01) - - assert np.all([rv.distribution == 'normal' for rv in RV_INJ]) - - assert_allclose(RV_INJ[0].truncation_limits, [0., 10./3.], rtol=0.01) - assert_allclose(RV_INJ[1].truncation_limits, [0., 10./3.], rtol=0.01) - assert_allclose(RV_INJ[2].truncation_limits, [0., 10.], rtol=0.01) - assert_allclose(RV_INJ[3].truncation_limits, [0., 10.], rtol=0.01) - - # REP - RV_REP = list(A._DV_REP_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_REP]).T - assert_allclose(thetas, np.ones(6), rtol=0.01) - assert_allclose(betas, np.ones(6) * 1e-4, rtol=0.01) - - rho = RV_REP[0].RV_set.Rho() - rho_target = np.zeros((6, 6)) - np.fill_diagonal(rho_target, 1.) - assert_allclose(rho, rho_target, rtol=0.01) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_REP]) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - # QNT (deterministic) - QNT = A._FG_dict['T0001.001']._performance_groups[0]._quantity - assert QNT == pytest.approx(50., rel=0.01) - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - # TIME - T_check = A._TIME.describe().T.loc[['hour','month','weekday?'],:] - - assert_allclose(T_check['mean'], np.array([11.5, 5.5, 5. / 7.]), rtol=0.05) - assert_allclose(T_check['min'], np.array([0., 0., 0.]), rtol=0.01) - assert_allclose(T_check['max'], np.array([23., 11., 1.]), rtol=0.01) - assert_allclose(T_check['50%'], np.array([12., 5., 1.]), atol=1.0) - assert_allclose(T_check['count'], np.array([10000., 10000., 10000.]), - rtol=0.01) - - # POP - P_CDF = A._POP.describe(np.arange(1, 27) / 27.).iloc[:, 0].values[4:] - vals, counts = np.unique(P_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 2.5, 5., 10.]), rtol=0.01) - assert_allclose(counts, np.array([14, 2, 7, 5]), atol=1) - - # COL - COL_check = A._COL.describe().T - assert COL_check['mean'].values[0] == pytest.approx(0.5, rel=0.05) - assert len(A._ID_dict['non-collapse']) == pytest.approx(5000, rel=0.05) - assert len(A._ID_dict['collapse']) == pytest.approx(5000, rel=0.05) - - # DMG - DMG_check = A._DMG.describe().T - assert_allclose(DMG_check['mean'], np.array([17.074, 17.074, 7.9361]), - rtol=0.1, atol=1.0) - assert_allclose(DMG_check['min'], np.zeros(3), rtol=0.01) - assert_allclose(DMG_check['max'], np.ones(3) * 50.0157, rtol=0.05) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - - # RED - DV_RED = A._DV_dict['red_tag'].describe().T - assert_allclose(DV_RED['mean'], np.array([0.341344, 0.1586555]), rtol=0.1) - - # INJ - collapse - DV_INJ_C = deepcopy(A._COL[['INJ-0', 'INJ-1']]) - DV_INJ_C.dropna(inplace=True) - NC_count = DV_INJ_C.describe().T['count'][0] - assert_allclose(NC_count, np.ones(2) * 5000, rtol=0.05) - # lvl 1 - vals, counts = np.unique(DV_INJ_C.iloc[:, 0].values, return_counts=True) - assert_allclose(vals, np.array([0., 2.5, 5., 10.]) * 0.1, rtol=0.01) - assert_allclose(counts / NC_count, np.array([14, 2, 7, 5]) / 28., atol=0.01, rtol=0.1) - # lvl 2 - vals, counts = np.unique(DV_INJ_C.iloc[:, 1].values, return_counts=True) - assert_allclose(vals, np.array([0., 2.5, 5., 10.]) * 0.9, rtol=0.01) - assert_allclose(counts / NC_count, np.array([14, 2, 7, 5]) / 28., atol=0.01, rtol=0.1) - - # INJ - non-collapse - DV_INJ_NC = deepcopy(A._DV_dict['injuries']) - DV_INJ_NC[0].dropna(inplace=True) - assert_allclose(DV_INJ_NC[0].describe().T['count'], np.ones(2) * 5000, - rtol=0.05) - # lvl 1 DS2 - I_CDF = DV_INJ_NC[0].iloc[:, 0] - I_CDF = np.around(I_CDF, decimals=3) - vals, counts = np.unique(I_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 0.075, 0.15, 0.3]), rtol=0.01) - target_prob = np.array( - [0.6586555, 0., 0., 0.] + 0.3413445 * np.array([14, 2, 7, 5]) / 28.) - assert_allclose(counts / NC_count, target_prob, atol=0.01, rtol=0.1) - # lvl 1 DS3 - I_CDF = DV_INJ_NC[0].iloc[:, 1] - I_CDF = np.around(I_CDF, decimals=3) - vals, counts = np.unique(I_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 0.075, 0.15, 0.3]), rtol=0.01) - target_prob = np.array( - [0.8413445, 0., 0., 0.] + 0.1586555 * np.array([14, 2, 7, 5]) / 28.) - assert_allclose(counts / NC_count, target_prob, atol=0.01, rtol=0.1) - # lvl 2 DS2 - I_CDF = DV_INJ_NC[1].iloc[:, 0] - I_CDF = np.around(I_CDF, decimals=3) - vals, counts = np.unique(I_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 0.025, 0.05, 0.1]), rtol=0.01) - target_prob = np.array( - [0.6586555, 0., 0., 0.] + 0.3413445 * np.array([14, 2, 7, 5]) / 28.) - assert_allclose(counts / NC_count, target_prob, atol=0.01, rtol=0.1) - # lvl2 DS3 - I_CDF = DV_INJ_NC[1].iloc[:, 1] - I_CDF = np.around(I_CDF, decimals=3) - vals, counts = np.unique(I_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 0.025, 0.05, 0.1]), rtol=0.01) - target_prob = np.array( - [0.8413445, 0., 0., 0.] + 0.1586555 * np.array([14, 2, 7, 5]) / 28.) - assert_allclose(counts / NC_count, target_prob, atol=0.01, rtol=0.1) - - # REP - assert len(A._ID_dict['non-collapse']) == len(A._ID_dict['repairable']) - assert len(A._ID_dict['irreparable']) == 0 - # cost - DV_COST = A._DV_dict['rec_cost'] - # DS1 - C_CDF = DV_COST.iloc[:, 0] - C_CDF = np.around(C_CDF / 10., decimals=0) * 10. - vals, counts = np.unique(C_CDF, return_counts=True) - assert_allclose(vals, [0, 2500], rtol=0.01) - t_prob = 0.3413445 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # DS2 - C_CDF = DV_COST.iloc[:, 1] - C_CDF = np.around(C_CDF / 100., decimals=0) * 100. - vals, counts = np.unique(C_CDF, return_counts=True) - assert_allclose(vals, [0, 25000], rtol=0.01) - t_prob = 0.3413445 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # DS3 - C_CDF = DV_COST.iloc[:, 2] - C_CDF = np.around(C_CDF / 1000., decimals=0) * 1000. - vals, counts = np.unique(C_CDF, return_counts=True) - assert_allclose(vals, [0, 250000], rtol=0.01) - t_prob = 0.1586555 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # time - DV_TIME = A._DV_dict['rec_time'] - # DS1 - T_CDF = DV_TIME.iloc[:, 0] - T_CDF = np.around(T_CDF, decimals=1) - vals, counts = np.unique(T_CDF, return_counts=True) - assert_allclose(vals, [0, 2.5], rtol=0.01) - t_prob = 0.3413445 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # DS2 - T_CDF = DV_TIME.iloc[:, 1] - T_CDF = np.around(T_CDF, decimals=0) - vals, counts = np.unique(T_CDF, return_counts=True) - assert_allclose(vals, [0, 25], rtol=0.01) - t_prob = 0.3413445 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # DS3 - T_CDF = DV_TIME.iloc[:, 2] - T_CDF = np.around(T_CDF / 10., decimals=0) * 10. - vals, counts = np.unique(T_CDF, return_counts=True) - assert_allclose(vals, [0, 250], rtol=0.01) - t_prob = 0.1586555 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - assert_allclose(S[('event time', 'month')], A._TIME['month'] + 1) - assert_allclose(S[('event time', 'weekday?')], A._TIME['weekday?']) - assert_allclose(S[('event time', 'hour')], A._TIME['hour']) - assert_allclose(S[('inhabitants', '')], A._POP.iloc[:, 0]) - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == pytest.approx(0.5, - rel=0.05) - assert SD.loc[('collapses', 'mode'), 'mean'] == 0. - assert SD.loc[('collapses', 'mode'), 'count'] == pytest.approx(5000, - rel=0.05) - - assert SD.loc[('red tagged', ''), 'mean'] == pytest.approx(0.5, rel=0.05) - assert SD.loc[('red tagged', ''), 'count'] == pytest.approx(5000, rel=0.05) - - for col in ['irreparable', 'cost impractical', 'time impractical']: - assert SD.loc[('reconstruction', col), 'mean'] == 0. - assert SD.loc[('reconstruction', col), 'count'] == pytest.approx(5000, - rel=0.05) - - RC = deepcopy(S.loc[:, ('reconstruction', 'cost')]) - RC_CDF = np.around(RC / 1000., decimals=0) * 1000. - vals, counts = np.unique(RC_CDF, return_counts=True) - assert_allclose(vals, np.array([0, 2., 3., 25., 250., 300.]) * 1000.) - t_prob1 = 0.3413445 / 2. - t_prob2 = 0.1586555 / 2. - assert_allclose(counts / 10000., - [t_prob2, t_prob1 / 2., t_prob1 / 2., t_prob1, t_prob2, - 0.5], atol=0.01, rtol=0.1) - - RT = deepcopy(S.loc[:, ('reconstruction', 'time-parallel')]) - RT_CDF = np.around(RT, decimals=0) - vals, counts = np.unique(RT_CDF, return_counts=True) - assert_allclose(vals, np.array([0, 2., 3., 25., 250., 300.])) - t_prob1 = 0.3413445 / 2. - t_prob2 = 0.1586555 / 2. - assert_allclose(counts / 10000., - [t_prob2, t_prob1 / 2., t_prob1 / 2., t_prob1, t_prob2, - 0.5], atol=0.01, rtol=0.1) - - assert_allclose(S.loc[:, ('reconstruction', 'time-parallel')], - S.loc[:, ('reconstruction', 'time-sequential')]) - - CAS = deepcopy(S.loc[:, ('injuries', 'sev1')]) - CAS_CDF = np.around(CAS, decimals=3) - vals, counts = np.unique(CAS_CDF, return_counts=True) - assert_allclose(vals, [0, 0.075, 0.15, 0.25, 0.3, 0.5, 1.]) - assert_allclose(counts / 10000., - np.array([35, 1, 3.5, 2, 2.5, 7, 5]) / 56., atol=0.01, - rtol=0.1) - - CAS = deepcopy(S.loc[:, ('injuries', 'sev2')]) - CAS_CDF = np.around(CAS, decimals=3) - vals, counts = np.unique(CAS_CDF, return_counts=True) - assert_allclose(vals, [0, 0.025, 0.05, 0.1, 2.25, 4.5, 9.]) - assert_allclose(counts / 10000., - np.array([35, 1, 3.5, 2.5, 2, 7, 5]) / 56., atol=0.01, - rtol=0.1)
- -
[docs]def test_FEMA_P58_Assessment_EDP_uncertainty_basic(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - """ - - base_input_path = 'resources/' - DL_input = base_input_path + 'input data/' + "DL_input_test_2.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_2.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - assert_allclose(thetas, [9.80665, 12.59198, 0.074081, 0.044932], rtol=0.02) - assert_allclose(betas, [0.25, 0.25, 0.3, 0.4], rtol=0.02) - - rho = RV_EDP[0].RV_set.Rho() - rho_target = [ - [1.0, 0.6, 0.3, 0.3], - [0.6, 1.0, 0.3, 0.3], - [0.3, 0.3, 1.0, 0.7], - [0.3, 0.3, 0.7, 1.0]] - assert_allclose(rho, rho_target, atol=0.05) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - # COL - COL_check = A._COL.describe().T - col_target = 1.0 - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer( - [0.3, 0.4], [0.3, 0.4]), - upper=np.log([0.1, 0.1]))[0] - assert COL_check['mean'].values[0] == pytest.approx(col_target, rel=0.1) - - # DMG - DMG_check = [len(np.where(A._DMG.iloc[:, i] > 0.0)[0]) / 10000. for i in - range(8)] - - DMG_1_PID = mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([0.05488, 1e-6]), upper=np.log([0.1, 0.1]))[ - 0] - DMG_2_PID = mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([1e-6, 0.05488]), upper=np.log([0.1, 0.1]))[ - 0] - DMG_1_PFA = mvn_od(np.log([0.074081, 9.80665]), - np.array([[1, 0.3], [0.3, 1]]) * np.outer([0.3, 0.25], - [0.3, 0.25]), - lower=np.log([1e-6, 9.80665]), - upper=np.log([0.1, np.inf]))[0] - DMG_2_PFA = mvn_od(np.log([0.074081, 12.59198]), - np.array([[1, 0.3], [0.3, 1]]) * np.outer([0.3, 0.25], - [0.3, 0.25]), - lower=np.log([1e-6, 9.80665]), - upper=np.log([0.1, np.inf]))[0] - - assert DMG_check[0] == pytest.approx(DMG_check[1], rel=0.01) - assert DMG_check[2] == pytest.approx(DMG_check[3], rel=0.01) - assert DMG_check[4] == pytest.approx(DMG_check[5], rel=0.01) - assert DMG_check[6] == pytest.approx(DMG_check[7], rel=0.01) - - assert DMG_check[0] == pytest.approx(DMG_1_PID, rel=0.10) - assert DMG_check[2] == pytest.approx(DMG_2_PID, rel=0.10) - assert DMG_check[4] == pytest.approx(DMG_1_PFA, rel=0.10) - assert DMG_check[6] == pytest.approx(DMG_2_PFA, rel=0.10) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - # COST - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - - C_target = [0., 250., 1250.] - T_target = [0., 0.25, 1.25] - - # PG 1011 and 1012 - P_target = [ - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([1e-6, 1e-6]), upper=np.log([0.05488, 0.1]))[0], - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([0.05488, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - ] - - for i in [0, 1]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(P_target, P_test, atol=0.02) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 1021 and 1022 - P_target = [ - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([1e-6, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([1e-6, 0.05488]), upper=np.log([0.05488, 0.1]))[0], - ] - - for i in [2, 3]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(P_target, P_test, atol=0.02) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 2011 and 2012 - P_target = [ - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 9.80665, np.inf]))[0], - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 9.80665, 9.80665]), - upper=np.log([0.1, np.inf, np.inf]))[0], - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 9.80665, 1e-6]), - upper=np.log([0.1, np.inf, 9.80665]))[0], - ] - - for i in [4, 5]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(P_target, P_test, atol=0.02) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 2021 and 2022 - P_target = [ - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, np.inf, 9.80665]))[0], - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 9.80665, 9.80665]), - upper=np.log([0.1, np.inf, np.inf]))[0], - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 1e-6, 9.80665]), - upper=np.log([0.1, 9.80665, np.inf]))[0], - ] - - for i in [6, 7]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(P_target, P_test, atol=0.02) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # RED TAG - RED_check = A._DV_dict['red_tag'].describe().T - RED_check = (RED_check['mean'] * RED_check['count'] / 10000.).values - - assert RED_check[0] == pytest.approx(RED_check[1], rel=0.01) - assert RED_check[2] == pytest.approx(RED_check[3], rel=0.01) - assert RED_check[4] == pytest.approx(RED_check[5], rel=0.01) - assert RED_check[6] == pytest.approx(RED_check[7], rel=0.01) - - assert RED_check[0] == pytest.approx(DMG_1_PID, rel=0.10) - assert RED_check[2] == pytest.approx(DMG_2_PID, rel=0.10) - assert RED_check[4] == pytest.approx(DMG_1_PFA, rel=0.10) - assert RED_check[6] == pytest.approx(DMG_2_PFA, rel=0.10) - - DMG_on = np.where(A._DMG > 0.0)[0] - RED_on = np.where(A._DV_dict['red_tag'] > 0.0)[0] - assert_allclose(DMG_on, RED_on) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log([0.074081, 0.044932, 9.80665, 12.59198]), - np.array( - [[1.0, 0.7, 0.3, 0.3], [0.7, 1.0, 0.3, 0.3], - [0.3, 0.3, 1.0, 0.6], - [0.3, 0.3, 0.6, 1.0]]) * np.outer( - [0.3, 0.4, 0.25, 0.25], - [0.3, 0.4, 0.25, 0.25]), - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [0.05488, 0.05488, 9.80665, 9.80665]))[0] - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / 10000.
- -
[docs]def test_FEMA_P58_Assessment_EDP_uncertainty_detection_limit(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - This test differs from the basic case in having unreliable EDP values above - a certain limit - a typical feature of interstory drifts in dynamic - simulations. Such cases should not be a problem if the limits can be - estimated and they are specified as detection limits in input file. - """ - - base_input_path = 'resources/' - DL_input = base_input_path + 'input data/' + "DL_input_test_3.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_3.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_theta_target = [9.80665, 12.59198, 0.074081, 0.044932] - EDP_beta_target = [0.25, 0.25, 0.3, 0.4] - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.025) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - rho = RV_EDP[0].RV_set.Rho() - EDP_rho_test = rho - EDP_rho_target = [ - [1.0, 0.6, 0.3, 0.3], - [0.6, 1.0, 0.3, 0.3], - [0.3, 0.3, 1.0, 0.7], - [0.3, 0.3, 0.7, 1.0]] - EDP_COV_test = EDP_rho_test * np.outer(EDP_beta_test, EDP_beta_test) - assert_allclose(EDP_rho_test, EDP_rho_target, atol=0.15) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - # COL - COL_check = A._COL.describe().T - - col_target = 1.0 - mvn_od(np.log(EDP_theta_test[2:]), - EDP_COV_test[2:, 2:], - upper=np.log([0.1, 0.1]))[0] - - assert COL_check['mean'].values[0] == prob_approx(col_target, 0.03) - - # DMG - DMG_check = [len(np.where(A._DMG.iloc[:, i] > 0.0)[0]) / 10000. - for i in range(8)] - - DMG_1_PID = mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 1e-6]), - upper=np.log([0.1, 0.1]))[0] - - DMG_2_PID = mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 0.05488]), - upper=np.log([0.1, 0.1]))[0] - - DMG_1_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0] - - DMG_2_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0] - - assert DMG_check[0] == pytest.approx(DMG_check[1], rel=0.01) - assert DMG_check[2] == pytest.approx(DMG_check[3], rel=0.01) - assert DMG_check[4] == pytest.approx(DMG_check[5], rel=0.01) - assert DMG_check[6] == pytest.approx(DMG_check[7], rel=0.01) - - assert DMG_check[0] == prob_approx(DMG_1_PID, 0.03) - assert DMG_check[2] == prob_approx(DMG_2_PID, 0.03) - assert DMG_check[4] == prob_approx(DMG_1_PFA, 0.03) - assert DMG_check[6] == prob_approx(DMG_2_PFA, 0.03) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - # COST - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - - C_target = [0., 250., 1250.] - T_target = [0., 0.25, 1.25] - - # PG 1011 and 1012 - P_target = [ - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 1e-6]), upper=np.log([0.05488, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - ] - - for i in [0, 1]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 1021 and 1022 - P_target = [ - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 0.05488]), upper=np.log([0.05488, 0.1]))[0], - ] - - for i in [2, 3]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 2011 and 2012 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([9.80665, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, 9.80665, 0.1, 0.1]))[0], - ] - - for i in [4, 5]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 2021 and 2022 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, 9.80665, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6]), - upper=np.log([9.80665, np.inf, 0.1, 0.1]))[0], - ] - - for i in [6, 7]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # RED TAG - RED_check = A._DV_dict['red_tag'].describe().T - RED_check = (RED_check['mean'] * RED_check['count'] / 10000.).values - - assert RED_check[0] == pytest.approx(RED_check[1], rel=0.01) - assert RED_check[2] == pytest.approx(RED_check[3], rel=0.01) - assert RED_check[4] == pytest.approx(RED_check[5], rel=0.01) - assert RED_check[6] == pytest.approx(RED_check[7], rel=0.01) - - assert RED_check[0] == prob_approx(DMG_1_PID, 0.03) - assert RED_check[2] == prob_approx(DMG_2_PID, 0.03) - assert RED_check[4] == prob_approx(DMG_1_PFA, 0.03) - assert RED_check[6] == prob_approx(DMG_2_PFA, 0.03) - - DMG_on = np.where(A._DMG > 0.0)[0] - RED_on = np.where(A._DV_dict['red_tag'] > 0.0)[0] - assert_allclose(DMG_on, RED_on) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([9.80665, 9.80665, 0.05488, 0.05488]))[0] - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = ((1.0 - SD.loc[('red tagged', ''), 'mean']) - * SD.loc[('red tagged', ''), 'count'] / 10000.) - - assert P_no_RED_target == prob_approx(P_no_RED_test, 0.04)
- -
[docs]def test_FEMA_P58_Assessment_EDP_uncertainty_failed_analyses(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - Here we use EDP results with unique values assigned to failed analyses. - In particular, PID=1.0 and PFA=100.0 are used when an analysis fails. - These values shall be handled by detection limits of 10 and 100 for PID - and PFA, respectively. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_4.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_4.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_theta_target = [9.80665, 12.59198, 0.074081, 0.044932] - EDP_beta_target = [0.25, 0.25, 0.3, 0.4] - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.025) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - rho = RV_EDP[0].RV_set.Rho() - EDP_rho_test = rho - EDP_rho_target = [ - [1.0, 0.6, 0.3, 0.3], - [0.6, 1.0, 0.3, 0.3], - [0.3, 0.3, 1.0, 0.7], - [0.3, 0.3, 0.7, 1.0]] - EDP_COV_test = EDP_rho_test * np.outer(EDP_beta_test, EDP_beta_test) - assert_allclose(EDP_rho_test, EDP_rho_target, atol=0.15) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - # COL - COL_check = A._COL.describe().T - col_target = 1.0 - mvn_od(np.log(EDP_theta_test[2:]), - EDP_COV_test[2:,2:], - upper=np.log([0.1, 0.1]))[0] - - assert COL_check['mean'].values[0] == prob_approx(col_target, 0.03) - - # DMG - DMG_check = [len(np.where(A._DMG.iloc[:, i] > 0.0)[0]) / 10000. - for i in range(8)] - - DMG_1_PID = mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:,2:], - lower=np.log([0.05488, 1e-6]), - upper=np.log([0.1, 0.1]))[0] - - DMG_2_PID = mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 0.05488]), - upper=np.log([0.1, 0.1]))[0] - - DMG_1_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0] - - DMG_2_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0] - - assert DMG_check[0] == pytest.approx(DMG_check[1], rel=0.01) - assert DMG_check[2] == pytest.approx(DMG_check[3], rel=0.01) - assert DMG_check[4] == pytest.approx(DMG_check[5], rel=0.01) - assert DMG_check[6] == pytest.approx(DMG_check[7], rel=0.01) - - assert DMG_check[0] == prob_approx(DMG_1_PID, 0.03) - assert DMG_check[2] == prob_approx(DMG_2_PID, 0.03) - assert DMG_check[4] == prob_approx(DMG_1_PFA, 0.03) - assert DMG_check[6] == prob_approx(DMG_2_PFA, 0.03) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - # COST - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - - C_target = [0., 250., 1250.] - T_target = [0., 0.25, 1.25] - - # PG 1011 and 1012 - P_target = [ - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 1e-6]), upper=np.log([0.05488, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - ] - - for i in [0, 1]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 1021 and 1022 - P_target = [ - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 0.05488]), upper=np.log([0.05488, 0.1]))[0], - ] - - for i in [2, 3]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 2011 and 2012 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([9.80665, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, 9.80665, 0.1, 0.1]))[0], - ] - - for i in [4, 5]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 2021 and 2022 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, 9.80665, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6]), - upper=np.log([9.80665, np.inf, 0.1, 0.1]))[0], - ] - - for i in [6, 7]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # RED TAG - RED_check = A._DV_dict['red_tag'].describe().T - RED_check = (RED_check['mean'] * RED_check['count'] / 10000.).values - - assert RED_check[0] == pytest.approx(RED_check[1], rel=0.01) - assert RED_check[2] == pytest.approx(RED_check[3], rel=0.01) - assert RED_check[4] == pytest.approx(RED_check[5], rel=0.01) - assert RED_check[6] == pytest.approx(RED_check[7], rel=0.01) - - assert RED_check[0] == prob_approx(DMG_1_PID, 0.03) - assert RED_check[2] == prob_approx(DMG_2_PID, 0.03) - assert RED_check[4] == prob_approx(DMG_1_PFA, 0.03) - assert RED_check[6] == prob_approx(DMG_2_PFA, 0.03) - - DMG_on = np.where(A._DMG > 0.0)[0] - RED_on = np.where(A._DV_dict['red_tag'] > 0.0)[0] - assert_allclose(DMG_on, RED_on) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([9.80665, 9.80665, 0.05488, 0.05488]))[0] - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = ((1.0 - SD.loc[('red tagged', ''), 'mean']) - * SD.loc[('red tagged', ''), 'count'] / 10000.) - - assert P_no_RED_target == prob_approx(P_no_RED_test, 0.04)
- -
[docs]def test_FEMA_P58_Assessment_EDP_uncertainty_3D(): - """ - . - - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - In this test we look at the propagation of EDP values provided for two - different directions. (3D refers to the numerical model used for response - estimation.) - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_5.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_5.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_theta_target = [9.80665, 8.65433, 12.59198, 11.11239, - 0.074081, 0.063763, 0.044932, 0.036788] - EDP_beta_target = [0.25, 0.25, 0.25, 0.25, 0.3, 0.3, 0.4, 0.4] - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.05) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - rho = RV_EDP[0].RV_set.Rho() - EDP_rho_test = rho - EDP_rho_target = np.array([ - [1.0, 0.8, 0.6, 0.5, 0.3, 0.3, 0.3, 0.3], - [0.8, 1.0, 0.5, 0.6, 0.3, 0.3, 0.3, 0.3], - [0.6, 0.5, 1.0, 0.8, 0.3, 0.3, 0.3, 0.3], - [0.5, 0.6, 0.8, 1.0, 0.3, 0.3, 0.3, 0.3], - [0.3, 0.3, 0.3, 0.3, 1.0, 0.8, 0.7, 0.6], - [0.3, 0.3, 0.3, 0.3, 0.8, 1.0, 0.6, 0.7], - [0.3, 0.3, 0.3, 0.3, 0.7, 0.6, 1.0, 0.8], - [0.3, 0.3, 0.3, 0.3, 0.6, 0.7, 0.8, 1.0]]) - large_rho_ids = np.where(EDP_rho_target >= 0.5) - small_rho_ids = np.where(EDP_rho_target < 0.5) - assert_allclose(EDP_rho_test[large_rho_ids], EDP_rho_target[large_rho_ids], - atol=0.1) - assert_allclose(EDP_rho_test[small_rho_ids], EDP_rho_target[small_rho_ids], - atol=0.2) - - EDP_COV_test = EDP_rho_test * np.outer(EDP_beta_test, EDP_beta_test) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - theta_PID = np.log(EDP_theta_target[4:]) - COV_PID = EDP_COV_test[4:, 4:] - - # COL - COL_check = A._COL.describe().T - col_target = 1.0 - mvn_od(theta_PID, COV_PID, - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - - assert COL_check['mean'].values[0] == pytest.approx(col_target, rel=0.1, abs=0.05) - - # DMG - realization_count = float(A._AIM_in['general']['realizations']) - DMG_check = [len(np.where(A._DMG.iloc[:, i] > 0.0)[0]) / realization_count for i in - range(8)] - - DMG_1_1_PID = mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - DMG_1_2_PID = mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - DMG_2_1_PID = mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 1e-6, 0.05488, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - DMG_2_2_PID = mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 1e-6, 1e-6, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - DMG_1_1_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6, - 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, np.inf, np.inf, - 0.1, 0.1, 0.1, 0.1]))[0] - DMG_1_2_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6, - 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, np.inf, np.inf, - 0.1, 0.1, 0.1, 0.1]))[0] - DMG_2_1_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 9.80665, 1e-6, - 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, np.inf, np.inf, - 0.1, 0.1, 0.1, 0.1]))[0] - DMG_2_2_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 9.80665, - 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, np.inf, np.inf, - 0.1, 0.1, 0.1, 0.1]))[0] - - DMG_ref = [DMG_1_1_PID, DMG_1_2_PID, DMG_2_1_PID, DMG_2_2_PID, - DMG_1_1_PFA, DMG_1_2_PFA, DMG_2_1_PFA, DMG_2_2_PFA] - - assert_allclose(DMG_check, DMG_ref, rtol=0.10, atol=0.01) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - # COST - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - - C_target = [0., 249., 624., 1251., 1875.] - T_target = [0., 0.249, 0.624, 1.251, 1.875] - - # PG 1011 - P_target = [ - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.05488, 0.1, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.1, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.1, 0.1, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.05488]))[0], ]), - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 1e-6, 0.05488]), - upper=np.log([0.1, 0.05488, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.05488, 0.05488]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 1e-6]), - upper=np.log([0.1, 0.05488, 0.1, 0.05488]))[0], ]), - mvn_od(theta_PID, COV_PID, lower=np.log([0.05488, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.05488, 0.05488, 0.05488]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 0].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 0].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 1012 - P_target = [ - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.1, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.1, 0.1, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.05488]))[0], ]), - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.05488, 0.1, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.05488, 0.05488]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.05488, 0.1, 0.1, 0.05488]))[0], ]), - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 0.05488, 1e-6, 1e-6]), - upper=np.log([0.05488, 0.1, 0.05488, 0.05488]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 1].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 1].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 1021 - P_target = [ - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.1, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.1, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.05488]))[0], ]), - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 1e-6]), - upper=np.log([0.1, 0.05488, 0.1, 0.05488]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.05488, 0.1, 0.1, 0.05488]))[0], ]), - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 0.05488, 1e-6]), - upper=np.log([0.05488, 0.05488, 0.1, 0.05488]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 2].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 2].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - #print('------------------------') - #print('P_target') - #print(P_target) - #print('------------------------') - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 1022 - P_target = [ - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.05488]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.1, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.1, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.1, 0.1, 0.05488, 0.1]))[0], ]), - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 1e-6, 0.05488]), - upper=np.log([0.1, 0.05488, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.05488, 0.1, 0.05488, 0.1]))[0], ]), - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 0.05488]), - upper=np.log([0.05488, 0.05488, 0.05488, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 3].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 5)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 3].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 5)] - P_test = P_test[np.where(P_test > 5)] - P_test = P_test / realization_count - - assert_allclose(P_target[:-1], P_test[:4], atol=0.05) - assert_allclose(C_target[:-1], C_test[:4], rtol=0.001) - assert_allclose(T_target[:-1], T_test[:4], rtol=0.001) - - # PG 2011 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, 9.80665, 9.80665, 0.1, 0.1, 0.1, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 4].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 4].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 2012 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, 9.80665, 9.80665, 0.1, 0.1, 0.1, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 5].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 5].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target[:4], P_test[:4], atol=0.05) - assert_allclose(C_target[:4], C_test[:4], rtol=0.001) - assert_allclose(T_target[:4], T_test[:4], rtol=0.001) - - # PG 2021 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, 9.80665, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 6].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 6].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 2022 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 1e-6, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, 9.80665, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 7].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 7].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # RED TAG - RED_check = A._DV_dict['red_tag'].describe().T - RED_check = (RED_check['mean'] * RED_check['count'] / realization_count).values - - assert_allclose(RED_check, DMG_ref, atol=0.02, rtol=0.10) - - DMG_on = np.where(A._DMG > 0.0)[0] - RED_on = np.where(A._DV_dict['red_tag'] > 0.0)[0] - assert_allclose(DMG_on, RED_on) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - upper=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 0.05488, - 0.05488, 0.05488, 0.05488]))[0] - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / realization_count - - assert P_no_RED_target == pytest.approx(P_no_RED_test, abs=0.03)
- -
[docs]def test_FEMA_P58_Assessment_EDP_uncertainty_single_sample(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - In this test we provide only one structural response result and see if it - is properly handled as a deterministic value or a random EDP using the - additional sources of uncertainty. - """ - print() - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_6.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_6.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_theta_target = np.array( - [7.634901, 6.85613, 11.685934, 10.565554, - 0.061364, 0.048515, 0.033256, 0.020352]) - EDP_beta_target = EDP_theta_target * 1e-6 - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.05) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - assert RV_EDP[0].RV_set == None - - # ------------------------------------------------- perform the calculation - - A.define_loss_model() - - A.calculate_damage() - - A.calculate_losses() - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / 10000. - - assert P_no_RED_test == 0.0 - - # ------------------------------------------------------------------------- - # now do the same analysis, but consider additional uncertainty - # ------------------------------------------------------------------------- - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - AU = A._AIM_in['general']['added_uncertainty'] - - AU['beta_m'] = 0.3 - AU['beta_gm'] = 0.4 - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_beta_target = np.sqrt((EDP_theta_target * 1e-6)**2. + - np.ones(8)*(0.3**2. + 0.4**2.)) - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.05) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - assert RV_EDP[0].RV_set == None - EDP_rho_target = np.zeros((8, 8)) - np.fill_diagonal(EDP_rho_target, 1.0) - - EDP_COV_test = EDP_rho_target * np.outer(EDP_beta_test, EDP_beta_test) - - # ------------------------------------------------- perform the calculation - - A.define_loss_model() - - A.calculate_damage() - - A.calculate_losses() - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - upper=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 0.05488, - 0.05488, 0.05488, 0.05488]))[0] - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / 10000. - - assert P_no_RED_target == pytest.approx(P_no_RED_test, abs=0.01)
- -
[docs]def test_FEMA_P58_Assessment_EDP_uncertainty_zero_variance(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - This test simulates a scenario when one of the EDPs is identical in all - of the available samples. This results in zero variance in that dimension - and the purpose of the test is to ensure that such cases are handled - appropriately. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_7.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_7.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - assert EDP_theta_test[4] == pytest.approx(0.061364, rel=0.05) - assert EDP_beta_test[4] < 0.061364 * 1e-3 - - rho = RV_EDP[0].RV_set.Rho() - EDP_rho_test = rho - EDP_rho_target = np.zeros((8, 8)) - np.fill_diagonal(EDP_rho_target, 1.0) - assert_allclose(EDP_rho_test[4], EDP_rho_target[4], atol=1e-6) - - # ------------------------------------------------- perform the calculation - - A.define_loss_model() - - A.calculate_damage() - - A.calculate_losses() - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / 10000. - - assert P_no_RED_test == 0.0
- -
[docs]def test_FEMA_P58_Assessment_QNT_uncertainty_independent(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component quantities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. - This test assumes that component quantities are independent. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_8.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_8.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # QNT - RV_QNT = list(A._QNT_dict.values()) - - QNT_theta_test, QNT_beta_test = np.array([rv.theta for rv in RV_QNT]).T - QNT_theta_target = np.ones(8) * 25. - QNT_beta_target = [25.0] * 4 + [0.4] * 4 - assert_allclose(QNT_theta_test, QNT_theta_target, rtol=0.001) - assert_allclose(QNT_beta_test, QNT_beta_target, rtol=0.001) - - for i in range(4): - assert RV_QNT[i].distribution == 'normal' - for i in range(4, 8): - assert RV_QNT[i].distribution == 'lognormal' - - QNT_rho_target = [ - [1, 0, 0, 0, 0, 0, 0, 0], - [0, 1, 0, 0, 0, 0, 0, 0], - [0, 0, 1, 0, 0, 0, 0, 0], - [0, 0, 0, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 0, 0, 0], - [0, 0, 0, 0, 0, 1, 0, 0], - [0, 0, 0, 0, 0, 0, 1, 0], - [0, 0, 0, 0, 0, 0, 0, 1], - ] - QNT_rho_test = RV_QNT[0].RV_set.Rho() - assert_allclose(QNT_rho_test, QNT_rho_target, atol=0.001) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - DMG_check = A._DMG.describe().T - mu_test = DMG_check['mean'] - sig_test = DMG_check['std'] - rho_test = A._DMG.corr() - - mu_target_1 = 25.0 + 25.0 * norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0)) - sig_target_1 = np.sqrt(25.0 ** 2.0 * ( - 1 - norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0)) - ( - norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0))) ** 2.0)) - mu_target_2 = np.exp(np.log(25.0) + 0.4 ** 2. / 2.) - sig_target_2 = np.sqrt( - (np.exp(0.4 ** 2.0) - 1.0) * np.exp(2 * np.log(25.0) + 0.4 ** 2.0)) - - assert_allclose(mu_test[:4], mu_target_1, rtol=0.05) - assert_allclose(mu_test[4:], mu_target_2, rtol=0.05) - assert_allclose(sig_test[:4], sig_target_1, rtol=0.05) - assert_allclose(sig_test[4:], sig_target_2, rtol=0.05) - assert_allclose(rho_test, QNT_rho_target, atol=0.05) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - - DV_COST = A._DV_dict['rec_cost'] / A._DMG - - rho_DV_target = [ - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - ] - - assert_allclose(DV_COST.corr(), rho_DV_target, atol=0.05) - - # Uncertainty in decision variables is controlled by the correlation - # between damages - RND = [tnorm.rvs(-1., np.inf, loc=25, scale=25, size=10000) for i in - range(4)] - RND = np.sum(RND, axis=0) - P_target_PID = np.sum(RND > 90.) / 10000. - P_test_PID = np.sum(DV_COST.iloc[:, 0] < 10.01) / 10000. - assert P_target_PID == pytest.approx(P_test_PID, rel=0.02) - - RND = [np.exp(norm.rvs(loc=np.log(25.), scale=0.4, size=10000)) for i in - range(4)] - RND = np.sum(RND, axis=0) - P_target_PFA = np.sum(RND > 90.) / 10000. - P_test_PFA = np.sum(DV_COST.iloc[:, 4] < 10.01) / 10000. - assert P_target_PFA == pytest.approx(P_test_PFA, rel=0.02) - - # the same checks can be performed for reconstruction time - DV_TIME = A._DV_dict['rec_time'] / A._DMG - - assert_allclose(DV_TIME.corr(), rho_DV_target, atol=0.05) - - P_test_PID = np.sum(DV_TIME.iloc[:, 0] < 0.0101) / 10000. - assert P_target_PID == pytest.approx(P_test_PID, rel=0.02) - - P_test_PFA = np.sum(DV_TIME.iloc[:, 4] < 0.0101) / 10000. - assert P_target_PFA == pytest.approx(P_test_PFA, rel=0.02) - - # injuries... - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = (DV_INJ_dict[0] / A._DMG).describe() - DV_INJ1 = (DV_INJ_dict[1] / A._DMG).describe() - - assert_allclose(DV_INJ0.loc['mean', :][:4], np.ones(4) * 0.025, rtol=0.001) - assert_allclose(DV_INJ0.loc['mean', :][4:], np.ones(4) * 0.1, rtol=0.001) - assert_allclose(DV_INJ1.loc['mean', :][:4], np.ones(4) * 0.005, rtol=0.001) - assert_allclose(DV_INJ1.loc['mean', :][4:], np.ones(4) * 0.02, rtol=0.001) - - assert_allclose(DV_INJ0.loc['std', :], np.zeros(8), atol=1e-4) - assert_allclose(DV_INJ1.loc['std', :], np.zeros(8), atol=1e-4) - - # and for red tag... - # Since every component is damaged in every realization, the red tag - # results should all be 1.0 - assert_allclose(A._DV_dict['red_tag'], np.ones((10000, 8))) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 20.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert SD.loc[('red tagged', ''), 'mean'] == 1.0 - assert SD.loc[('red tagged', ''), 'std'] == 0.0 - - assert np.corrcoef(S.loc[:, ('reconstruction', 'cost')], - S.loc[:, ('reconstruction', 'time-sequential')])[ - 0, 1] == pytest.approx(1.0) - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')])
- -
[docs]def test_FEMA_P58_Assessment_QNT_uncertainty_dependencies(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component quantities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. - This test checks if dependencies between component quantities are handled - appropriately. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_8.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_8.out" - - for dep in ['FG', 'PG', 'DIR', 'LOC']: - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A._AIM_in['dependencies']['quantities'] = dep - - A.define_random_variables() - - # ---------------------------------------------- check random variables - - # QNT - RV_QNT = list(A._QNT_dict.values()) - - QNT_theta_test, QNT_beta_test = np.array([rv.theta for rv in RV_QNT]).T - QNT_theta_target = np.ones(8) * 25. - QNT_beta_target = [25.0] * 4 + [0.4] * 4 - assert_allclose(QNT_theta_test, QNT_theta_target, rtol=0.001) - assert_allclose(QNT_beta_test, QNT_beta_target, rtol=0.001) - - for i in range(4): - assert RV_QNT[i].distribution == 'normal' - for i in range(4, 8): - assert RV_QNT[i].distribution == 'lognormal' - - if dep == 'FG': - QNT_rho_target = np.array([ - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - ]) - elif dep == 'PG': - QNT_rho_target = np.array([ - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - ]) - elif dep == 'DIR': - QNT_rho_target = np.array([ - [1, 1, 0, 0, 0, 0, 0, 0], - [1, 1, 0, 0, 0, 0, 0, 0], - [0, 0, 1, 1, 0, 0, 0, 0], - [0, 0, 1, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 1, 0, 0], - [0, 0, 0, 0, 1, 1, 0, 0], - [0, 0, 0, 0, 0, 0, 1, 1], - [0, 0, 0, 0, 0, 0, 1, 1], - ]) - elif dep == 'LOC': - QNT_rho_target = np.array([ - [1, 0, 1, 0, 0, 0, 0, 0], - [0, 1, 0, 1, 0, 0, 0, 0], - [1, 0, 1, 0, 0, 0, 0, 0], - [0, 1, 0, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 0, 1, 0], - [0, 0, 0, 0, 0, 1, 0, 1], - [0, 0, 0, 0, 1, 0, 1, 0], - [0, 0, 0, 0, 0, 1, 0, 1], - ]) - - QNT_rho_test = RV_QNT[0].RV_set.Rho() - assert_allclose(QNT_rho_test, QNT_rho_target, atol=0.001) - - # --------------------------------------------------------------------- - - A.define_loss_model() - - A.calculate_damage() - - # -------------------------------------------- check damage calculation - - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - # Because the correlations are enforced after truncation, the marginals - # shall be unaffected by the correlation structure. Hence, the - # distribution of damaged quantities within a PG shall be identical in - # all dep cases. - # The specified dependencies are apparent in the correlation between - # damaged quantities in various PGs. - - DMG_check = A._DMG.describe().T - mu_test = DMG_check['mean'] - sig_test = DMG_check['std'] - rho_test = A._DMG.corr() - - mu_target_1 = 25.0 + 25.0 * norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0)) - sig_target_1 = np.sqrt(25.0 ** 2.0 * ( - 1 - norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0)) - ( - norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0))) ** 2.0)) - mu_target_2 = np.exp(np.log(25.0) + 0.4 ** 2. / 2.) - sig_target_2 = np.sqrt( - (np.exp(0.4 ** 2.0) - 1.0) * np.exp(2 * np.log(25.0) + 0.4 ** 2.0)) - - assert_allclose(mu_test[:4], mu_target_1, rtol=0.05) - assert_allclose(mu_test[4:], mu_target_2, rtol=0.05) - assert_allclose(sig_test[:4], sig_target_1, rtol=0.05) - assert_allclose(sig_test[4:], sig_target_2, rtol=0.05) - assert_allclose(rho_test, QNT_rho_target, atol=0.05) - - # --------------------------------------------------------------------- - - A.calculate_losses() - - # ---------------------------------------------- check loss calculation - - DV_COST = A._DV_dict['rec_cost'] / A._DMG - - # After the DVs are normalized by the damaged quantities, the resulting - # samples show the correlations between the DV_measure (such as - # reconstruction cost) / 1 unit of damaged component. Because this - # consequences are perfectly correlated among the components of a - # fragility group by definition, the quadrants on the main diagonal - # will follow the matrix presented below. If there are additional - # correlations defined between component quantities in different - # fragility groups (i.e. the off-diagonal quadrants of the rho matrix), - # those will be preserved in the consequences. Therefore, the - # off-diagonal quadrants need to be updated with those from QNT_rho_target - # to get an appropriate rho_DV_target. - - rho_DV_target = np.array([ - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - ]) - rho_DV_target[:4, 4:] = QNT_rho_target[:4, 4:] - rho_DV_target[4:, :4] = QNT_rho_target[:4, 4:] - - assert_allclose(DV_COST.corr(), rho_DV_target, atol=0.05) - - # uncertainty in decision variables is controlled by the correlation - # between damages - P_test_PID = np.sum(DV_COST.iloc[:, 0] < 10.01) / 10000. - P_test_PFA = np.sum(DV_COST.iloc[:, 4] < 10.01) / 10000. - - # the first component quantities follow a truncated multivariate normal - # distribution - mu_target_PID = mu_target_1 * 4. - sig_target_PID = np.sqrt( - sig_target_1 ** 2. * np.sum(QNT_rho_target[:4, :4])) - mu_target_PID_b = mu_target_PID - sig_target_PID_b = sig_target_PID - alpha = 100. - i = 0 - while (np.log( - np.abs(alpha / (mu_target_PID_b / sig_target_PID_b))) > 0.001) and ( - i < 10): - alpha = -mu_target_PID_b / sig_target_PID_b - mu_target_PID_b = mu_target_PID - sig_target_PID_b * norm.pdf( - alpha) / (1.0 - norm.cdf(alpha)) - sig_target_PID_b = sig_target_PID / np.sqrt( - (1.0 + alpha * norm.pdf(alpha) / (1.0 - norm.cdf(alpha)))) - i += 1 - xi = (90 - mu_target_PID_b) / sig_target_PID_b - P_target_PID = 1.0 - (norm.cdf(xi) - norm.cdf(alpha)) / ( - 1.0 - norm.cdf(alpha)) - - assert P_target_PID == pytest.approx(P_test_PID, rel=0.05) - - # the second component quantities follow a multivariate lognormal - # distribution - mu_target_PFA = mu_target_2 * 4. - sig_target_PFA = np.sqrt( - sig_target_2 ** 2. * np.sum(QNT_rho_target[4:, 4:])) - sig_target_PFA_b = np.sqrt( - np.log(sig_target_PFA ** 2.0 / mu_target_PFA ** 2.0 + 1.0)) - mu_target_PFA_b = np.log(mu_target_PFA) - sig_target_PFA_b ** 2.0 / 2. - xi = np.log(90) - P_target_PFA = 1.0 - norm.cdf(xi, loc=mu_target_PFA_b, - scale=sig_target_PFA_b) - - assert P_target_PFA == pytest.approx(P_test_PFA, rel=0.05) - - # the same checks can be performed for reconstruction time - DV_TIME = A._DV_dict['rec_time'] / A._DMG - - assert_allclose(DV_TIME.corr(), rho_DV_target, atol=0.05) - - P_test_PID = np.sum(DV_TIME.iloc[:, 0] < 0.0101) / 10000. - assert P_target_PID == pytest.approx(P_test_PID, rel=0.05) - - P_test_PFA = np.sum(DV_TIME.iloc[:, 4] < 0.0101) / 10000. - assert P_target_PFA == pytest.approx(P_test_PFA, rel=0.05) - - # injuries... - # Every component is damaged in every realization in this test. Once - # normalized by the quantity of components, the number of injuries - # shall be identical and unaffected by the correlation between - # component quantities. - - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = (DV_INJ_dict[0] / A._DMG).describe() - DV_INJ1 = (DV_INJ_dict[1] / A._DMG).describe() - - assert_allclose(DV_INJ0.loc['mean', :][:4], np.ones(4) * 0.025, - rtol=0.001) - assert_allclose(DV_INJ0.loc['mean', :][4:], np.ones(4) * 0.1, - rtol=0.001) - assert_allclose(DV_INJ1.loc['mean', :][:4], np.ones(4) * 0.005, - rtol=0.001) - assert_allclose(DV_INJ1.loc['mean', :][4:], np.ones(4) * 0.02, - rtol=0.001) - - assert_allclose(DV_INJ0.loc['std', :], np.zeros(8), atol=1e-4) - assert_allclose(DV_INJ1.loc['std', :], np.zeros(8), atol=1e-4) - - # and for red tag... - # since every component is damaged in every realization, the red tag - # results should all be 1.0 - assert_allclose(A._DV_dict['red_tag'], np.ones((10000, 8))) - - # --------------------------------------------------------------------- - - A.aggregate_results() - - # -------------------------------------------- check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 20.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert SD.loc[('red tagged', ''), 'mean'] == 1.0 - assert SD.loc[('red tagged', ''), 'std'] == 0.0 - - assert np.corrcoef(S.loc[:, ('reconstruction', 'cost')], - S.loc[:, ('reconstruction', 'time-sequential')])[ - 0, 1] == pytest.approx(1.0) - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')])
- -
[docs]def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies(dep='IND'): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - independent in this test. - - """ - print() - idx = pd.IndexSlice - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_9.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_9.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A._AIM_in['dependencies']['fragilities'] = dep - - A.define_random_variables() - - # ---------------------------------------------- check random variables - RV_FF = list(A._FF_dict.values()) - fr_names = np.unique([rv.name[3:12] for rv in RV_FF]) - fr_keys = {} - for fr_name in fr_names: - fr_list = [rv.name for rv in RV_FF if fr_name in rv.name] - fr_keys.update({fr_name: fr_list}) - - # fr_keys = [] - # for key in A._RV_dict.keys(): - # if 'FR' in key: - # fr_keys.append(key) - - dimtag_target = [4 * 2 * 3, 20 * 2 * 3 * 3, 20 * 2 * 3 * 3, - 20 * 2 * 3 * 3] - theta_target = [[0.048, 0.096], [0.048, 0.072, 0.096], - [2.9419, 5.8840, 11.7680], [2.9419, 5.8840, 11.7680]] - sig_target = [[0.5, 0.25], [1.0, 0.5, 0.25], [1.0, 0.5, 0.25], - [1.0, 0.5, 0.25]] - - if dep == 'IND': - rho_target = np.zeros((24, 24)) - np.fill_diagonal(rho_target, 1.0) - - rho_sum = 360 - - elif dep == 'PG': - rho_target = np.ones((24, 24)) - - rho_sum = 360 ** 2. - - elif dep == 'DIR': - rho_target = [ - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.]] - - rho_sum = (20 * 2 * 3) ** 2. * 3 - - elif dep == 'LOC': - rho_target = [ - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.]] - - rho_sum = (20 * 3) ** 2. * (2 * 9) - - elif dep in ['ATC', 'CSG']: - rho_target = [ - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.]] - - rho_sum = (20 * 3) ** 2. * (2 * 3) - - elif dep == 'DS': - rho_target = [ - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.]] - - rho_sum = 3 ** 2 * (20 * 2 * 3) - - for k, key in enumerate(sorted(fr_keys.keys())): - RV_FF_i = [A._FF_dict[rv_i] for rv_i in fr_keys[key]] - - assert len(RV_FF_i) == dimtag_target[k] - - FF_theta_test, FF_beta_test = np.array([rv.theta for rv in RV_FF_i]).T - - if k == 0: - FF_theta_test = pd.DataFrame( - np.reshape(FF_theta_test, (12, 2))).describe() - FF_beta_test = pd.DataFrame( - np.reshape(FF_beta_test, (12, 2))).describe() - else: - FF_theta_test = pd.DataFrame( - np.reshape(FF_theta_test, (120, 3))).describe() - FF_beta_test = pd.DataFrame( - np.reshape(FF_beta_test, (120, 3))).describe() - - assert_allclose(FF_theta_test.loc['mean', :].values, theta_target[k], - rtol=1e-4) - assert_allclose(FF_theta_test.loc['std', :].values, - np.zeros(np.array(theta_target[k]).shape), - atol=1e-10) - - assert_allclose(FF_beta_test.loc['mean', :].values, sig_target[k], - rtol=1e-4) - assert_allclose(FF_beta_test.loc['std', :].values, - np.zeros(np.array(sig_target[k]).shape), atol=1e-10) - - rho_test = RV_FF_i[0].RV_set.Rho(fr_keys[fr_names[k]]) - if k == 0: - # we perform the detailed verification of rho for the first case - # only (because the others are 360x360 matrices) - assert_allclose(rho_test, rho_target) - - else: - # for the other cases we check the number of ones in the matrix - assert np.sum(rho_test) == rho_sum - - # --------------------------------------------------------------------- - - A.define_loss_model() - - A.calculate_damage() - - # -------------------------------------------- check damage calculation - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - DMG_check = A._DMG - - # start with checking the damage correlations - for k in range(4): - DMG_corr = DMG_check.loc[:, idx[k + 1, :, :]].corr() - - if k == 0: - DMG_corr = DMG_corr.iloc[:8, :8] - - if dep in ['IND', 'ATC', 'CSG', 'DS']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0], - ]) - elif dep == 'PG': - DMG_corr_ref = np.array([ - [ 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1], - [-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0], - [ 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1], - [-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0], - [ 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1], - [-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0], - [ 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1], - [-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0], - ]) - elif dep == 'DIR': - DMG_corr_ref = np.array([ - [ 1.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0], - [ 1.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 1.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 1.0], - [ 0.0, 0.0, 0.0, 0.0, 1.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 1.0], - ]) - elif dep == 'LOC': - DMG_corr_ref = np.array([ - [ 1.0,-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0], - [-0.1, 1.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0], - [ 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 1.0,-0.1], - [ 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1, 1.0], - [ 1.0,-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0], - [-0.1, 1.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0], - [ 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 1.0,-0.1], - [ 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1, 1.0], - ]) - - if k == 1: - DMG_corr = DMG_corr.iloc[:12, :12] - - if dep in ['IND', 'ATC', 'CSG', 'DS']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0], - ]) - elif dep == 'PG': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - ]) - elif dep == 'DIR': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - ]) - elif dep == 'LOC': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0], - ]) - - if k == 2: - DMG_corr = DMG_corr.iloc[:20, :20] - - if dep in ['IND', 'DS']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'PG': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1], - [-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1], - [-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1], - [-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1], - [-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1], - [-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1], - [-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1], - [-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1], - [-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'DIR': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'LOC': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.6, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.6, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.6, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.6, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep in ['ATC', 'CSG']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - - if k == 3: - DMG_corr = DMG_corr.iloc[:20, :20] - - if dep in ['IND', 'DS']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.0, 1.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 1.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 1.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 1.0, 0.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 0.0, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'PG': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1], - [-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1], - [-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1], - [-0.1, 0.8, 0.6, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1], - [-0.1, 0.7, 0.6, 0.5,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1], - [-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1], - [-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1], - [-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.6, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1], - [-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.5,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'DIR': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.6, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 0.5,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.6, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 0.5,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'LOC': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.7, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.7, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.7, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.7, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep in ['ATC', 'CSG']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - - for i in range(len(DMG_corr.index)): - for j in range(len(DMG_corr.columns)): - ref_i = DMG_corr_ref[i, j] - if ref_i != 0.0: - if ref_i > 0.0: - assert DMG_corr.iloc[i, j] > 0.97 * ref_i - else: - assert DMG_corr.iloc[i, j] < 0.0 - else: - assert DMG_corr.iloc[i, j] == pytest.approx(ref_i, - abs=0.15) - - # then check the distribution of damage within each performance group - EDP_list = np.array( - [[[0.080000, 0.080000], [0.080000, 0.080000], [0.040000, 0.040000]], - [[7.845320, 7.845320], [7.845320, 7.845320], - [2.942000, 2.942000]]]) - - fr_keys = [] - for key in A._RV_dict.keys(): - if 'FR' in key: - fr_keys.append(key) - - for k, key in enumerate(sorted(fr_keys)): - # print(key) - - RV_FR = A._RV_dict[key] - - # only third of the data is unique because of the 3 stories - rel_len = int(len(RV_FR._dimension_tags) / 3) - - COV_test = RV_FR.COV[:rel_len, :rel_len] - theta_test = RV_FR.theta[:rel_len] - - lims = np.unique(theta_test) - ndims = len(lims) - if k in [2, 3]: - ndims += 2 - - if (dep in ['DS', 'IND']) or k > 1: - DMG_vals = [[[0., 5., 7.5, 12.5, 17.5, 20., 25.], [0., 25.]], - [[0., 1.5, 3., 4.5, 6., 7.5, 9., 10.5, 12., 13.5, - 15., - 16.5, 18., 19.5, 21., 22.5, 24., 25.5, 27., 28.5, - 30.0], - [0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., - 11., 12., 13., 14., 15., 16., 17., 18., 19., - 20.]]] - else: - DMG_vals = [[[0., 25.], [0., 25.]], - [[0., 30.], [0., 20.]]] - DMG_vals = np.array(DMG_vals) - - for story in [0, 1, 2]: - for dir_ in [0, 1]: - # print(story, dir_) - - idx = pd.IndexSlice - DMG_check_FG = DMG_check.loc[:, idx[k + 1, :, :]] - DMG_check_PG = DMG_check_FG.iloc[:, - story * 2 * ndims + dir_ * ndims:story * 2 * ndims + ( - dir_ + 1) * ndims] - - DMG_val_test = np.unique( - np.around(DMG_check_PG.values * 10., decimals=0) / 10., - return_counts=True) - DMG_val_test = DMG_val_test[0][DMG_val_test[1] > 10] - - # only check at most the first 10 elements, because the - # higher values have extremely low likelihood - ddim = min(len(DMG_val_test), 10) - DMG_val_ref = DMG_vals[np.sign(k), dir_] - for v in DMG_val_test: - assert v in DMG_val_ref - - # additional tests for mutually exclusive DS2 in FG3 - if (k == 2) and (dep not in ['DS', 'IND']): - DMG_tot = [[0., 30.], [0., 20.]][dir_] - DMG_DS2_test = DMG_check_PG.iloc[:, [1, 2, 3]].sum( - axis=1) - - # the proportion of each DS in DS2 shall follow the - # pre-assigned weights - ME_test = \ - DMG_check_PG.iloc[DMG_DS2_test.values > 0].iloc[:, - [1, 2, 3]].describe().T['mean'].values / DMG_tot[-1] - assert_allclose(ME_test, [0.5, 0.3, 0.2], atol=0.01) - - # the sum of DMG with correlated CSGs shall be either 0. - # or the total quantity - DMG_DS2_test = np.unique( - np.around(DMG_DS2_test * 10., decimals=0) / 10., - return_counts=True) - DMG_DS2_test = DMG_DS2_test[0][DMG_DS2_test[1] > 10] - assert_allclose(DMG_DS2_test, DMG_tot, atol=0.01) - - # additional tests for simultaneous DS2 in FG4 - if (k == 3) and (dep not in ['DS', 'IND']): - DMG_tot = [30.0, 20.0][dir_] - DMG_DS2_test = DMG_check_PG.iloc[:, [1, 2, 3]].sum( - axis=1) - - # the proportion of each DS in DS2 shall follow the - # pre-assigned weights considering replacement - SIM_test = \ - DMG_check_PG.iloc[DMG_DS2_test.values > 0].iloc[:, - [1, 2, 3]].describe().T['mean'].values / DMG_tot - P_rep = 0.5 * 0.7 * 0.8 - SIM_ref = np.array([0.5, 0.3, 0.2]) * ( - 1.0 + P_rep / (1.0 - P_rep)) - assert_allclose(SIM_test, SIM_ref, atol=0.02) - - # the sum of DMG with correlated CSGs shall be either - # 0. or more than the total quantity - DMG_DS2_test = DMG_DS2_test.iloc[ - DMG_DS2_test.values > 0] - # Even with perfect correlation, the generated random - # samples will not be identical. Hence, one of the 20 - # CSGs in FG4, very rarely will belong to a different - # DS than the rest. To avoid false negatives, we test - # the third smallest value. - assert DMG_DS2_test.sort_values().iloc[ - 2] >= DMG_tot * 0.99 - assert np.max(DMG_DS2_test.values) > DMG_tot - - # the first component has 3-1 CSGs in dir 1 and 2, - # respectively - if k == 0: - dir_len = int(rel_len * 3 / 4) - # the other components have 20-20 CSGs in dir 1 and 2, - # respectively - else: - dir_len = int(rel_len / 2) - - if dir_ == 0: - theta_t = theta_test[:dir_len] - COV_t = COV_test[:dir_len, :dir_len] - - else: - theta_t = theta_test[dir_len:] - COV_t = COV_test[dir_len:, dir_len:] - - lim_ds1 = np.where(theta_t == lims[0])[0] - lim_ds2 = np.where(theta_t == lims[1])[0] - if k > 0: - lim_ds3 = np.where(theta_t == lims[2])[0] - - ndim = len(theta_t) - - EDP = EDP_list[int(k > 1), story, dir_]*1.2 - - DS_ref_all = [] - DS_ref_any = [] - DS_test_all = [] - DS_test_any = [] - # DS0 - DS_ref_all.append(mvn_od(np.log(theta_t), COV_t, - lower=np.log(np.ones(ndim) * EDP), - upper=np.ones(ndim) * np.inf)[0]) - - if k == 0: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0.], - axis=0)) / 10000.) - elif k == 1: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0.], - axis=0)) / 10000.) - else: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0., - DMG_check_PG.iloc[:, 3] == 0., - DMG_check_PG.iloc[:, 4] == 0.], - axis=0)) / 10000.) - - # DS1 - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - lower_lim[lim_ds2] = np.log(EDP) - upper_lim[lim_ds1] = np.log(EDP) - if k > 0: - lower_lim[lim_ds3] = np.log(EDP) - DS_ref_all.append(mvn_od(np.log(theta_t), COV_t, - lower=lower_lim, upper=upper_lim)[ - 0]) - - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - lower_lim[lim_ds2[0]] = np.log(EDP) - upper_lim[lim_ds1[0]] = np.log(EDP) - if k > 0: - lower_lim[lim_ds3[0]] = np.log(EDP) - P_any = mvn_od(np.log(theta_t), COV_t, lower=lower_lim, - upper=upper_lim)[0] - if (dep in ['DS', 'IND']): - P_any = 1.0 - (1.0 - P_any) ** len(lim_ds1) - DS_ref_any.append(P_any) - - if k == 0: - DS_test_all.append(np.sum(np.all( - [DMG_check_PG.iloc[:, 0] > DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 1] == 0.], axis=0)) / 10000.) - elif k == 1: - DS_test_all.append(np.sum(np.all( - [DMG_check_PG.iloc[:, 0] > DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0.], axis=0)) / 10000.) - else: - DS_test_all.append(np.sum(np.all( - [DMG_check_PG.iloc[:, 0] > DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0., - DMG_check_PG.iloc[:, 3] == 0., - DMG_check_PG.iloc[:, 4] == 0.], axis=0)) / 10000.) - - DS_test_any.append(np.sum( - np.all([DMG_check_PG.iloc[:, 0] > 0.], - axis=0)) / 10000.) - - # DS2 - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - upper_lim[lim_ds2] = np.log(EDP) - if k > 0: - lower_lim[lim_ds3] = np.log(EDP) - if k < 3: - DS_ref_all.append(mvn_od(np.log(theta_t), COV_t, - lower=lower_lim, - upper=upper_lim)[0]) - else: - DS_ref_all.append(0.0) - - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - upper_lim[lim_ds2[0]] = np.log(EDP) - if k > 0: - lower_lim[lim_ds3[0]] = np.log(EDP) - P_any = mvn_od(np.log(theta_t), COV_t, lower=lower_lim, - upper=upper_lim)[0] - if (dep in ['DS', 'IND']): - P_any = 1.0 - (1.0 - P_any) ** len(lim_ds1) - DS_ref_any.append(P_any) - - if k == 0: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] > - DMG_val_ref[-1] - 0.1], - axis=0)) / 10000.) - elif k == 1: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] > - DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 2] == 0.], - axis=0)) / 10000.) - elif k == 2: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, [1, 2, 3]].sum( - axis=1) > DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 4] == 0.], - axis=0)) / 10000.) - elif k == 3: - # skip this case - DS_test_all.append(0.0) - - if k < 2: - DS_test_any.append(np.sum( - np.all([DMG_check_PG.iloc[:, 1] > 0.], - axis=0)) / 10000.) - else: - DS_test_any.append(np.sum(np.all( - [DMG_check_PG.iloc[:, [1, 2, 3]].sum(axis=1) > 0.], - axis=0)) / 10000.) - - # DS3 - if k > 0: - - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - upper_lim[lim_ds3] = np.log(EDP) - DS_ref_all.append(mvn_od(np.log(theta_t), COV_t, - lower=lower_lim, - upper=upper_lim)[0]) - - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - upper_lim[lim_ds3[0]] = np.log(EDP) - P_any = mvn_od(np.log(theta_t), COV_t, lower=lower_lim, - upper=upper_lim)[0] - if (dep in ['DS', 'IND']): - P_any = 1.0 - (1.0 - P_any) ** len(lim_ds1) - DS_ref_any.append(P_any) - - if k == 1: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] > - DMG_val_ref[-1] - 0.1], - axis=0)) / 10000.) - else: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0., - DMG_check_PG.iloc[:, 3] == 0., - DMG_check_PG.iloc[:, 4] > - DMG_val_ref[-1] - 0.1], - axis=0)) / 10000.) - if k == 1: - DS_test_any.append(np.sum( - np.all([DMG_check_PG.iloc[:, 2] > 0.], - axis=0)) / 10000.) - - else: - DS_test_any.append(np.sum( - np.all([DMG_check_PG.iloc[:, 4] > 0.], - axis=0)) / 10000.) - - assert_allclose(DS_ref_all, DS_test_all, atol=0.02) - assert_allclose(DS_ref_any, DS_test_any, atol=0.02) - - # --------------------------------------------------------------------- - - A.calculate_losses() - - # ---------------------------------------------- check loss calculation - - # No additional uncertainty is introduced when it comes to losses in - # this test. The decision variables and the damaged quantities shall - # follow the same distribution and have the same correlation structure. - # The damaged quantities have already been verified, so now we use them - # as reference values for testing the decision variables. - - # COST and TIME and INJ - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = DV_INJ_dict[0] - DV_INJ1 = DV_INJ_dict[1] - - DMG_check = A._DMG - - for k in range(4): - # Start with checking the correlations... - dmg = DMG_check.loc[:, (DMG_check != 0.0).any(axis=0)] - dmg_corr = dmg.loc[:, idx[k + 1, :, :]].corr() - for dv in [DV_COST, DV_TIME, DV_INJ0, DV_INJ1]: - dv = dv.loc[:, (dv != 0.0).any(axis=0)] - dv_corr = dv.loc[:, idx[k + 1, :, :]].corr() - - assert_allclose(dmg_corr.values, dv_corr.values, atol=0.001) - - # then check the distribution. - # After normalizing with the damaged quantities all decision - # variables in a given DS shall have the same value. - dv = ((dv / dmg).describe().T).fillna(0.0) - - assert_allclose(dv['std'], np.zeros(len(dv.index)), atol=1.0) - - # red tags require special checks - for f, fg_id in enumerate(sorted(A._FG_dict.keys())): - dims = [2, 3, 5, 5][f] - - # take the total quantity of each performance group - FG = A._FG_dict[fg_id] - qnt = [] - for PG in FG._performance_groups: - if isinstance(PG._quantity, RandomVariable): - qnt.append((PG._quantity.samples[:dims]).flatten()) - else: - qnt.append(np.ones(dims) * PG._quantity) - qnt = np.array(qnt).flatten() - - # flag the samples where the damage exceeds the pre-defined limit - # for red tagging - dmg = DMG_check.loc[:, idx[FG._ID, :, :]] - red_ref = dmg > 0.489 * qnt - - # collect the red tag results from the analysis - red_test = A._DV_dict['red_tag'].loc[:, idx[FG._ID, :, :]] - - # compare - red_diff = (red_ref - red_test).describe().T - assert_allclose(red_diff['mean'].values, 0.) - assert_allclose(red_diff['std'].values, 0.) - - # --------------------------------------------------------------------- - - A.aggregate_results() - - # -------------------------------------------- check result aggregation - - # Aggregate results are checked in detail by other tests. - # Here we only focus on some simple checks to make sure the results - # make sense. - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 10.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')])
- -
[docs]def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_PG(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated between performance groups in this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('PG')
- -
[docs]def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_DIR(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated between performance groups controlled by the same EDPs - in identical directions in this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('DIR')
- -
[docs]def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_LOC(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated between performance groups at identical locations in - this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('LOC')
- -
[docs]def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_ATC(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated within performance groups if such correlation is - prescribed by ATC in the FEMA P58 document. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('ATC')
- -
[docs]def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_CSG(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated within a performance group in this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('CSG')
- -
[docs]def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_DS(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated between damage states in this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('DS')
- -
[docs]def test_FEMA_P58_Assessment_DV_uncertainty_dependencies(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in consequence functions and decision variables. - Dispersions in other calculation parameters are reduced to negligible - levels. This allows us to test the results against pre-defined reference - values in spite of the randomness involved in the calculations. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_10.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_10.out" - - dep_list = ['IND', 'FG', 'PG', 'DIR', 'LOC', 'DS'] - - for d in range(7): - - if d > 0: - dep_COST = dep_list[[0, 1, 2, 3, 4, 5][d - 1]] - dep_TIME = dep_list[[1, 2, 3, 4, 5, 0][d - 1]] - dep_RED = dep_list[[2, 3, 4, 5, 0, 1][d - 1]] - dep_INJ = dep_list[[3, 4, 5, 0, 1, 2][d - 1]] - else: - dep_COST = np.random.choice(dep_list) - dep_TIME = np.random.choice(dep_list) - dep_RED = np.random.choice(dep_list) - dep_INJ = np.random.choice(dep_list) - dep_CT = np.random.choice([True, False]) - dep_ILVL = np.random.choice([True, False]) - - #print([dep_COST, dep_TIME, dep_RED, dep_INJ, dep_CT, dep_ILVL], end=' ') - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - # set the dependencies - A._AIM_in['dependencies']['rec_costs'] = dep_COST - A._AIM_in['dependencies']['rec_times'] = dep_TIME - A._AIM_in['dependencies']['red_tags'] = dep_RED - A._AIM_in['dependencies']['injuries'] = dep_INJ - - A._AIM_in['dependencies']['cost_and_time'] = dep_CT - A._AIM_in['dependencies']['injury_lvls'] = dep_ILVL - - A.define_random_variables() - - # ---------------------------------------------- check random variables - - rho_ref = dict( - IND=np.zeros((16, 16)), - FG=np.ones((16, 16)), - PG=np.array([ - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - ]), - LOC=np.array([ - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - ]), - DIR=np.array([ - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - ]), - DS=np.array([ - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - ]) - ) - np.fill_diagonal(rho_ref['IND'], 1.0) - - # RV_REP = deepcopy(A._RV_dict['DV_REP']) - # RV_RED = deepcopy(A._RV_dict['DV_RED']) - # RV_INJ = deepcopy(A._RV_dict['DV_INJ']) - - RV_REP = list(A._DV_REP_dict.values()) - RV_RED = list(A._DV_RED_dict.values()) - RV_INJ = list(A._DV_INJ_dict.values()) - - for r, (RV_DV, RV_tag) in enumerate( - zip([RV_REP, RV_RED, RV_INJ], ['rep', 'red', 'inj'])): - - # assert len(RV_DV._dimension_tags) == [32, 16, 32][r] - assert len(RV_DV) == [32, 16, 32][r] - - DV_theta_test, DV_beta_test = np.array([rv.theta for rv in RV_DV]).T - DV_rho_test = RV_DV[0].RV_set.Rho([rv.name for rv in RV_DV]) - - # COV_test = RV_DV.COV - # sig_test = np.sqrt(np.diagonal(COV_test)) - # rho_test = COV_test / np.outer(sig_test, sig_test) - - if RV_tag == 'rep': - - assert_allclose(DV_theta_test, np.ones(32)) - assert_allclose(DV_beta_test, np.array( - [0.31, 0.71] * 8 + [0.32, 0.72] * 8)) - - if dep_CT == True: - if (((dep_COST == 'LOC') and (dep_TIME == 'DIR')) or - ((dep_COST == 'DIR') and (dep_TIME == 'LOC'))): - rho_ref_CT = rho_ref['PG'] - else: - rho_ref_CT = np.maximum(rho_ref[dep_COST], - rho_ref[dep_TIME]) - - assert_allclose(DV_rho_test[:16, :16], rho_ref_CT) - assert_allclose(DV_rho_test[16:, 16:], rho_ref_CT) - assert_allclose(DV_rho_test[:16, 16:], rho_ref_CT) - assert_allclose(DV_rho_test[16:, :16], rho_ref_CT) - - else: - assert_allclose(DV_rho_test[:16, :16], rho_ref[dep_COST]) - assert_allclose(DV_rho_test[16:, 16:], rho_ref[dep_TIME]) - assert_allclose(DV_rho_test[:16, 16:], np.zeros((16, 16))) - assert_allclose(DV_rho_test[16:, :16], np.zeros((16, 16))) - - elif RV_tag == 'red': - - assert_allclose(DV_theta_test, np.ones(16)) - assert_allclose(DV_beta_test, np.array([0.33, 0.73] * 8)) - - assert_allclose(DV_rho_test, rho_ref[dep_RED]) - - elif RV_tag == 'inj': - - assert_allclose(DV_theta_test, np.ones(32)) - assert_allclose(DV_beta_test, np.array( - [0.34, 0.74] * 8 + [0.35, 0.75] * 8)) - - if dep_ILVL == True: - assert_allclose(DV_rho_test[:16, :16], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[16:, 16:], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[:16, 16:], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[16:, :16], rho_ref[dep_INJ]) - else: - assert_allclose(DV_rho_test[:16, :16], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[16:, 16:], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[:16, 16:], np.zeros((16, 16))) - assert_allclose(DV_rho_test[16:, :16], np.zeros((16, 16))) - - # --------------------------------------------------------------------- - - A.define_loss_model() - - A.calculate_damage() - - # -------------------------------------------- check damage calculation - - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - DMG_check = A._DMG - - # Fragilities are not tested here, so we only do a few simple checks - assert np.min(DMG_check.describe().loc['mean'].values) > 0. - assert np.min(DMG_check.describe().loc['std'].values) > 0. - - # --------------------------------------------------------------------- - - A.calculate_losses() - - # ---------------------------------------------- check loss calculation - - # COST and TIME and INJ - DV_COST = A._DV_dict['rec_cost'] / DMG_check - DV_TIME = A._DV_dict['rec_time'] / DMG_check - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = DV_INJ_dict[0] / DMG_check - DV_INJ1 = DV_INJ_dict[1] / DMG_check - - for dv_i, (DV, DV_tag) in enumerate( - zip([DV_COST, DV_TIME, DV_INJ0, DV_INJ1], - ['cost', 'time', 'inj0', 'inj1'])): - - DV_desc = DV.describe().T - DV_desc_log = np.log(DV).describe().T - - if DV_tag == 'cost': - - # cost consequences in DS1 are lognormal - mu_ds1_ref = np.exp(np.log(10.) + 0.31 ** 2. / 2.) - sig_ds1_ref = np.sqrt( - np.exp(2 * np.log(10.) + 0.31 ** 2.) * ( - np.exp(0.31 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[::2], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2], sig_ds1_ref, - rtol=0.10) - assert_allclose(DV_desc_log['mean'].values[::2], - np.log(10.), atol=0.02) - assert_allclose(DV_desc_log['std'].values[::2], 0.31, - rtol=0.10) - - # cost consequences in DS2 are (truncated) normal - mu_ds2_ref, var_ds2_ref = tnorm.stats(-1. / 0.71, 1000., - loc=1000., scale=710., - moments='mv') - sig_ds2_ref = np.sqrt(var_ds2_ref) - assert_allclose(DV_desc['mean'].values[1::2], mu_ds2_ref, - rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2], sig_ds2_ref, - rtol=0.10) - - # make sure that all damages correspond to positive - # reconstruction costs - assert np.all(np.min(DV) > 0.) - - elif DV_tag == 'time': - - # cost consequences in DS1 are (truncated) normal for FG1 and - # lognormal for FG2 - # DS1 - FG1 - mu_ds1_ref, var_ds1_ref = tnorm.stats(-1. / 0.32, 1000., - loc=0.01, - scale=0.0032, - moments='mv') - sig_ds1_ref = np.sqrt(var_ds1_ref) - assert_allclose(DV_desc['mean'].values[::2][:4], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2][:4], sig_ds1_ref, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][:4]) == pytest.approx( - sig_ds1_ref, rel=0.1) - - # DS1 - FG2 - mu_ds1_ref = np.exp(np.log(0.01) + 0.32 ** 2. / 2.) - sig_ds1_ref = np.sqrt( - np.exp(2 * np.log(0.01) + 0.32 ** 2.) * ( - np.exp(0.32 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[::2][4:], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2][4:], sig_ds1_ref, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][4:]) == pytest.approx( - sig_ds1_ref, rel=0.1) - assert_allclose(DV_desc_log['mean'].values[::2][4:], - np.log(0.01), atol=0.02) - assert_allclose(DV_desc_log['std'].values[::2][4:], 0.32, - rtol=0.20) - assert np.mean( - DV_desc_log['std'].values[::2][4:]) == pytest.approx( - 0.32, rel=0.1) - - # cost consequences in DS2 are lognormal for FG1 and - # (truncated) normal for FG2 - # DS2 - FG1 - mu_ds2_ref = np.exp(np.log(1.) + 0.72 ** 2. / 2.) - sig_ds2_ref = np.sqrt( - np.exp(2 * np.log(1.) + 0.72 ** 2.) * ( - np.exp(0.72 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[1::2][:4], - mu_ds2_ref, rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2][:4], - sig_ds2_ref, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][:4]) == pytest.approx( - sig_ds2_ref, rel=0.1) - - assert_allclose(DV_desc_log['mean'].values[1::2][:4], - np.log(1.), atol=0.05) - assert_allclose(DV_desc_log['std'].values[1::2][:4], 0.72, - rtol=0.20) - assert np.mean( - DV_desc_log['std'].values[1::2][:4]) == pytest.approx( - 0.72, rel=0.1) - - # DS2 - FG2 - mu_ds2_ref, var_ds2_ref = tnorm.stats(-1. / 0.72, 1000., - loc=1., scale=0.72, - moments='mv') - sig_ds2_ref = np.sqrt(var_ds2_ref) - assert_allclose(DV_desc['mean'].values[1::2][4:], - mu_ds2_ref, rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2][4:], - sig_ds2_ref, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][4:]) == pytest.approx( - sig_ds2_ref, rel=0.1) - - # make sure that all damages correspond to positive - # reconstruction time - assert np.all(np.min(DV) > 0.) - - elif DV_tag in ['inj0', 'inj1']: - - # Injuries follow a truncated normal distribution in all cases - # The beta values provided are coefficients of variation of the - # non-truncated distribution. These provide the reference mean - # and standard deviation values for the truncated case. - mu_ds1, mu_ds2 = {'inj0': [0.5, 0.6], 'inj1': [0.1, 0.2]}[ - DV_tag] - beta_ds1, beta_ds2 = \ - {'inj0': [0.34, 0.74], 'inj1': [0.35, 0.75]}[DV_tag] - - # DS1 - # The affected population in DS1 per unit quantity (identical - # for all FGs and injury levels) - p_aff = 0.05 - - mu_ref, var_ref = tnorm.stats(-1. / beta_ds1, ( - 1. - mu_ds1) / mu_ds1 / beta_ds1, loc=mu_ds1, - scale=mu_ds1 * beta_ds1, - moments='mv') - sig_ref = np.sqrt(var_ref) - assert_allclose(DV_desc['mean'].values[::2], mu_ref * p_aff, - rtol=beta_ds1 / 10.) - assert_allclose(DV_desc['std'].values[::2], sig_ref * p_aff, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2]) == pytest.approx( - sig_ref * p_aff, rel=0.1) - - # DS2 - # the affected population in DS1 per unit quantity (identical - # for all FGs and injury levels) - p_aff = 0.1 - mu_ref, var_ref = tnorm.stats(-1. / beta_ds2, ( - 1. - mu_ds2) / mu_ds2 / beta_ds2, loc=mu_ds2, - scale=mu_ds2 * beta_ds2, - moments='mv') - sig_ref = np.sqrt(var_ref) - assert_allclose(DV_desc['mean'].values[1::2], - mu_ref * p_aff, rtol=beta_ds2 / 10.) - assert_allclose(DV_desc['std'].values[1::2], - sig_ref * p_aff, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2]) == pytest.approx( - sig_ref * p_aff, rel=0.1) - - # red tags have to be treated separately - DV_RED = A._DV_dict['red_tag'] - - DMG_norm = DMG_check / 25. - - for i in range(16): - - is_dam = pd.DataFrame(np.zeros((len(DMG_norm.index), 5)), - columns=range(5)) - is_dam[0] = (DMG_norm.iloc[:, i] < 0.01) - is_dam[1] = (DMG_norm.iloc[:, i] > 0.01) & ( - DMG_norm.iloc[:, i] < 0.275) - is_dam[2] = (DMG_norm.iloc[:, i] > 0.275) & ( - DMG_norm.iloc[:, i] < 0.525) - is_dam[3] = (DMG_norm.iloc[:, i] > 0.525) & ( - DMG_norm.iloc[:, i] < 0.775) - is_dam[4] = (DMG_norm.iloc[:, i] > 0.775) - - mu_red = ([0.87, 0.23185] * 4 + [0.50, 0.23185] * 4)[i] - beta_red = ([0.33, 0.73] * 8)[i] - mu_ref = np.zeros(5) - mu_ref[1] = tnorm.cdf(0.25, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[2] = tnorm.cdf(0.50, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[3] = tnorm.cdf(0.75, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[4] = tnorm.cdf(1.00, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - - sample_count = np.array( - [(DV_RED.iloc[:, i])[is_dam[c]].describe().loc['count'] for - c in range(5)]) - mu_test = np.array( - [(DV_RED.iloc[:, i])[is_dam[c]].describe().loc['mean'] for c - in range(5)]) - - assert mu_test[0] == 0. - for step in range(1, 5): - if sample_count[step] > 0: - assert mu_test[step] == pytest.approx( - mu_ref[step], - abs=5 * 0.4 / np.sqrt(sample_count[step])) - - # CORRELATIONS - - # repair and injury correlations - DV_REP = pd.concat([DV_COST, DV_TIME], axis=1) - DV_INJ = pd.concat([DV_INJ0, DV_INJ1], axis=1) - - for DV, RV, dv_tag in zip([DV_REP, DV_INJ, DV_RED], - [RV_REP, RV_INJ, RV_RED], - ['rep', 'inj', 'red']): - - if dv_tag == 'rep': - # transform the lognormal variables to log scale - log_flags = ([True, False] * 8 + - [False, True] * 4 + - [True, False] * 4) - for c, is_log in enumerate(log_flags): - if is_log: - DV.iloc[:, c] = np.log(DV.iloc[:, c]) - - elif dv_tag == 'red': - DV_RED_n = pd.DataFrame(np.ones(DV.shape) * np.nan, - index=DV.index, columns=DV.columns) - DMG_filter = pd.concat( - [(DMG_check.iloc[:, [0, 2, 4, 6]] / 25.0 > 0.525) & ( - DMG_check.iloc[:, [0, 2, 4, 6]] / 25.0 < 0.775), - (DMG_check.iloc[:, [1, 3, 5, 7]] / 25.0 > 0.025) & ( - DMG_check.iloc[:, [1, 3, 5, 7]] / 25.0 < 0.275), - (DMG_check.iloc[:, [8, 10, 12, 14]] / 25.0 > 0.275) & ( - DMG_check.iloc[:, [8, 10, 12, 14]] / 25.0 < 0.525), - (DMG_check.iloc[:, [9, 11, 13, 15]] / 25.0 > 0.025) & ( - DMG_check.iloc[:, - [9, 11, 13, 15]] / 25.0 < 0.275)], axis=1) - - DV_RED_n[DMG_filter] = DV_RED[DMG_filter] - DV = DV_RED_n - - DV_corr = DV.corr() - - # use the correlations specified for the random variable as - # reference (that we already verified earlier) - # COV_ref = RV.COV - # sig_ref = np.sqrt(np.diagonal(COV_ref)) - # rho_ref = COV_ref / np.outer(sig_ref, sig_ref) - - rho_ref = RV[0].RV_set.Rho([rv.name for rv in RV]) - - # perform the tests - for i in range(len(DV_corr.index)): - for j in range(len(DV_corr.columns)): - ref_i = rho_ref[i, j] - if ref_i != 0.0: - if ref_i > 0.0: - assert DV_corr.iloc[i, j] > 0.97 * ref_i - else: - assert DV_corr.iloc[i, j] < 0.0 - else: - assert DV_corr.iloc[i, j] == pytest.approx(ref_i, - abs=0.15) - - # --------------------------------------------------------------------- - - A.aggregate_results() - - # -------------------------------------------- check result aggregation - - # Aggregate results are checked in detail by other tests. - # Here we only focus on some simple checks to make sure the results - # make sense. - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 20.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')])
- - #print() - -
[docs]def test_FEMA_P58_Assessment_DV_uncertainty_dependencies_with_partial_DV_data(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in consequence functions and decision variables - when not every component has injury and red tag consequences assigned to it. - Dispersions in other calculation parameters are reduced to negligible - levels. This allows us to test the results against pre-defined reference - values in spite of the randomness involved in the calculations. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_11.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_11.out" - - dep_list = ['IND', 'FG', 'PG', 'DIR', 'LOC', 'DS'] - - for d in range(7): - - if d > 0: - dep_COST = dep_list[[0, 1, 2, 3, 4, 5][d - 1]] - dep_TIME = dep_list[[1, 2, 3, 4, 5, 0][d - 1]] - dep_RED = dep_list[[2, 3, 4, 5, 0, 1][d - 1]] - dep_INJ = dep_list[[3, 4, 5, 0, 1, 2][d - 1]] - else: - dep_COST = np.random.choice(dep_list) - dep_TIME = np.random.choice(dep_list) - dep_RED = np.random.choice(dep_list) - dep_INJ = np.random.choice(dep_list) - dep_CT = np.random.choice([True, False]) - dep_ILVL = np.random.choice([True, False]) - - # print([dep_COST, dep_TIME, dep_RED, dep_INJ, dep_CT, dep_ILVL], end=' ') - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - # set the dependencies - A._AIM_in['dependencies']['rec_costs'] = dep_COST - A._AIM_in['dependencies']['rec_times'] = dep_TIME - A._AIM_in['dependencies']['red_tags'] = dep_RED - A._AIM_in['dependencies']['injuries'] = dep_INJ - - A._AIM_in['dependencies']['cost_and_time'] = dep_CT - A._AIM_in['dependencies']['injury_lvls'] = dep_ILVL - - A.define_random_variables() - - # ---------------------------------------------- check random variables - - rho_ref = dict( - IND=np.zeros((16, 16)), - FG=np.ones((16, 16)), - PG=np.array([ - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - ]), - LOC=np.array([ - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - ]), - DIR=np.array([ - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - ]), - DS=np.array([ - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - ]) - ) - np.fill_diagonal(rho_ref['IND'], 1.0) - - # RV_REP = deepcopy(A._RV_dict['DV_REP']) - # RV_RED = deepcopy(A._RV_dict['DV_RED']) - # RV_INJ = deepcopy(A._RV_dict['DV_INJ']) - - RV_REP = list(A._DV_REP_dict.values()) - RV_RED = list(A._DV_RED_dict.values()) - RV_INJ = list(A._DV_INJ_dict.values()) - - for r, (RV_DV, RV_tag) in enumerate( - zip([RV_REP, RV_RED, RV_INJ], ['rep', 'red', 'inj'])): - - # assert len(RV_DV._dimension_tags) == [32, 8, 16][r] - assert len(RV_DV) == [32, 8, 16][r] - - DV_theta_test, DV_beta_test = np.array([rv.theta for rv in RV_DV]).T - DV_rho_test = RV_DV[0].RV_set.Rho([rv.name for rv in RV_DV]) - - # COV_test = RV_DV.COV - # sig_test = np.sqrt(np.diagonal(COV_test)) - # rho_test = COV_test / np.outer(sig_test, sig_test) - - if RV_tag == 'rep': - - assert_allclose(DV_theta_test, np.ones(32)) - assert_allclose(DV_beta_test, np.array( - [0.31, 0.71] * 8 + [0.32, 0.72] * 8)) - - if dep_CT == True: - if (((dep_COST == 'LOC') and (dep_TIME == 'DIR')) or - ((dep_COST == 'DIR') and (dep_TIME == 'LOC'))): - rho_ref_CT = rho_ref['PG'] - else: - rho_ref_CT = np.maximum(rho_ref[dep_COST], - rho_ref[dep_TIME]) - - assert_allclose(DV_rho_test[:16, :16], rho_ref_CT) - assert_allclose(DV_rho_test[16:, 16:], rho_ref_CT) - assert_allclose(DV_rho_test[:16, 16:], rho_ref_CT) - assert_allclose(DV_rho_test[16:, :16], rho_ref_CT) - - else: - assert_allclose(DV_rho_test[:16, :16], rho_ref[dep_COST]) - assert_allclose(DV_rho_test[16:, 16:], rho_ref[dep_TIME]) - assert_allclose(DV_rho_test[:16, 16:], np.zeros((16, 16))) - assert_allclose(DV_rho_test[16:, :16], np.zeros((16, 16))) - - elif RV_tag == 'red': - - assert_allclose(DV_theta_test, np.ones(8)) - assert_allclose(DV_beta_test, np.array([0.33, 0.73] * 4)) - - assert_allclose(DV_rho_test, rho_ref[dep_RED][:8,:8]) - - elif RV_tag == 'inj': - - assert_allclose(DV_theta_test, np.ones(16)) - assert_allclose(DV_beta_test, np.array( - [0.34, 0.74] * 4 + [0.35, 0.75] * 4)) - - if dep_ILVL == True: - assert_allclose(DV_rho_test[:8, :8], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[8:, 8:], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[:8, 8:], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[8:, :8], rho_ref[dep_INJ][:8,:8]) - else: - assert_allclose(DV_rho_test[:8, :8], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[8:, 8:], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[:8, 8:], np.zeros((8, 8))) - assert_allclose(DV_rho_test[8:, :8], np.zeros((8, 8))) - - # --------------------------------------------------------------------- - - A.define_loss_model() - - A.calculate_damage() - - # -------------------------------------------- check damage calculation - - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - DMG_check = A._DMG - - # Fragilities are not tested here, so we only do a few simple checks - assert np.min(DMG_check.describe().loc['mean'].values) > 0. - assert np.min(DMG_check.describe().loc['std'].values) > 0. - - # --------------------------------------------------------------------- - - A.calculate_losses() - - # ---------------------------------------------- check loss calculation - - # COST and TIME and INJ - DV_COST = A._DV_dict['rec_cost'] / DMG_check - DV_TIME = A._DV_dict['rec_time'] / DMG_check - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = DV_INJ_dict[0] / DMG_check - DV_INJ1 = DV_INJ_dict[1] / DMG_check - - for dv_i, (DV, DV_tag) in enumerate( - zip([DV_COST, DV_TIME, DV_INJ0, DV_INJ1], - ['cost', 'time', 'inj0', 'inj1'])): - - DV_desc = DV.describe().T - DV_desc_log = np.log(DV).describe().T - - if DV_tag == 'cost': - - # cost consequences in DS1 are lognormal - mu_ds1_ref = np.exp(np.log(10.) + 0.31 ** 2. / 2.) - sig_ds1_ref = np.sqrt( - np.exp(2 * np.log(10.) + 0.31 ** 2.) * ( - np.exp(0.31 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[::2], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2], sig_ds1_ref, - rtol=0.10) - assert_allclose(DV_desc_log['mean'].values[::2], - np.log(10.), atol=0.02) - assert_allclose(DV_desc_log['std'].values[::2], 0.31, - rtol=0.10) - - # cost consequences in DS2 are (truncated) normal - mu_ds2_ref, var_ds2_ref = tnorm.stats(-1. / 0.71, 1000., - loc=1000., scale=710., - moments='mv') - sig_ds2_ref = np.sqrt(var_ds2_ref) - assert_allclose(DV_desc['mean'].values[1::2], mu_ds2_ref, - rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2], sig_ds2_ref, - rtol=0.10) - - # make sure that all damages correspond to positive - # reconstruction costs - assert np.all(np.min(DV) > 0.) - - elif DV_tag == 'time': - - # cost consequences in DS1 are (truncated) normal for FG1 and - # lognormal for FG2 - # DS1 - FG1 - mu_ds1_ref, var_ds1_ref = tnorm.stats(-1. / 0.32, 1000., - loc=0.01, - scale=0.0032, - moments='mv') - sig_ds1_ref = np.sqrt(var_ds1_ref) - assert_allclose(DV_desc['mean'].values[::2][:4], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2][:4], sig_ds1_ref, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][:4]) == pytest.approx( - sig_ds1_ref, rel=0.1) - - # DS1 - FG2 - mu_ds1_ref = np.exp(np.log(0.01) + 0.32 ** 2. / 2.) - sig_ds1_ref = np.sqrt( - np.exp(2 * np.log(0.01) + 0.32 ** 2.) * ( - np.exp(0.32 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[::2][4:], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2][4:], sig_ds1_ref, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][4:]) == pytest.approx( - sig_ds1_ref, rel=0.1) - assert_allclose(DV_desc_log['mean'].values[::2][4:], - np.log(0.01), atol=0.02) - assert_allclose(DV_desc_log['std'].values[::2][4:], 0.32, - rtol=0.20) - assert np.mean( - DV_desc_log['std'].values[::2][4:]) == pytest.approx( - 0.32, rel=0.1) - - # cost consequences in DS2 are lognormal for FG1 and - # (truncated) normal for FG2 - # DS2 - FG1 - mu_ds2_ref = np.exp(np.log(1.) + 0.72 ** 2. / 2.) - sig_ds2_ref = np.sqrt( - np.exp(2 * np.log(1.) + 0.72 ** 2.) * ( - np.exp(0.72 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[1::2][:4], - mu_ds2_ref, rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2][:4], - sig_ds2_ref, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][:4]) == pytest.approx( - sig_ds2_ref, rel=0.1) - - assert_allclose(DV_desc_log['mean'].values[1::2][:4], - np.log(1.), atol=0.05) - assert_allclose(DV_desc_log['std'].values[1::2][:4], 0.72, - rtol=0.20) - assert np.mean( - DV_desc_log['std'].values[1::2][:4]) == pytest.approx( - 0.72, rel=0.1) - - # DS2 - FG2 - mu_ds2_ref, var_ds2_ref = tnorm.stats(-1. / 0.72, 1000., - loc=1., scale=0.72, - moments='mv') - sig_ds2_ref = np.sqrt(var_ds2_ref) - assert_allclose(DV_desc['mean'].values[1::2][4:], - mu_ds2_ref, rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2][4:], - sig_ds2_ref, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][4:]) == pytest.approx( - sig_ds2_ref, rel=0.1) - - # make sure that all damages correspond to positive - # reconstruction time - assert np.all(np.min(DV) > 0.) - - elif DV_tag in ['inj0', 'inj1']: - - # Injuries follow a truncated normal distribution in all cases - # The beta values provided are coefficients of variation of the - # non-truncated distribution. These provide the reference mean - # and standard deviation values for the truncated case. - mu_ds1, mu_ds2 = {'inj0': [0.5, 0.6], - 'inj1': [0.1, 0.2]}[DV_tag] - beta_ds1, beta_ds2 = {'inj0': [0.34, 0.74], - 'inj1': [0.35, 0.75]}[DV_tag] - - # DS1 - # The affected population in DS1 per unit quantity (identical - # for all FGs and injury levels) - p_aff = 0.05 - - mu_ref, var_ref = tnorm.stats( - -1. / beta_ds1, (1. - mu_ds1) / mu_ds1 / beta_ds1, - loc=mu_ds1, - scale=mu_ds1 * beta_ds1, - moments='mv') - sig_ref = np.sqrt(var_ref) - mu_ref = mu_ref * p_aff - sig_ref = sig_ref * p_aff - assert_allclose(DV_desc['mean'].values[::2], - [np.nan]*4 + [mu_ref]*4, - rtol=beta_ds1 / 10.) - assert_allclose(DV_desc['std'].values[::2], - [np.nan] * 4 + [sig_ref] * 4, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][4:]) == pytest.approx( - sig_ref, rel=0.1) - - # DS2 - # the affected population in DS1 per unit quantity (identical - # for all FGs and injury levels) - p_aff = 0.1 - mu_ref, var_ref = tnorm.stats(-1. / beta_ds2, ( - 1. - mu_ds2) / mu_ds2 / beta_ds2, loc=mu_ds2, - scale=mu_ds2 * beta_ds2, - moments='mv') - sig_ref = np.sqrt(var_ref) - mu_ref = mu_ref * p_aff - sig_ref = sig_ref * p_aff - assert_allclose(DV_desc['mean'].values[1::2], - [np.nan] * 4 + [mu_ref] * 4, - rtol=beta_ds2 / 10.) - assert_allclose(DV_desc['std'].values[1::2], - [np.nan] * 4 + [sig_ref] * 4, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][4:]) == pytest.approx( - sig_ref, rel=0.1) - - # red tags have to be treated separately - DV_RED = A._DV_dict['red_tag'] - - DMG_norm = DMG_check / 25. - - assert len(DV_RED.columns) == 8 - - for i in range(8): - - dmg_i = i+8 - is_dam = pd.DataFrame(np.zeros((len(DMG_norm.index), 5)), - columns=range(5)) - is_dam[0] = (DMG_norm.iloc[:, dmg_i] < 0.01) - is_dam[1] = (DMG_norm.iloc[:, dmg_i] > 0.01) & ( - DMG_norm.iloc[:, dmg_i] < 0.275) - is_dam[2] = (DMG_norm.iloc[:, dmg_i] > 0.275) & ( - DMG_norm.iloc[:, dmg_i] < 0.525) - is_dam[3] = (DMG_norm.iloc[:, dmg_i] > 0.525) & ( - DMG_norm.iloc[:, dmg_i] < 0.775) - is_dam[4] = (DMG_norm.iloc[:, dmg_i] > 0.775) - - mu_red = ([0.50, 0.23185] * 4)[i] - beta_red = ([0.33, 0.73] * 4)[i] - mu_ref = np.zeros(5) - mu_ref[1] = tnorm.cdf(0.25, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[2] = tnorm.cdf(0.50, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[3] = tnorm.cdf(0.75, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[4] = tnorm.cdf(1.00, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - - sample_count = np.array( - [(DV_RED.iloc[:, i])[is_dam[c]].describe().loc['count'] for - c in range(5)]) - mu_test = np.array( - [(DV_RED.iloc[:, i])[is_dam[c]].describe().loc['mean'] for c - in range(5)]) - - assert mu_test[0] == 0. - for step in range(1, 5): - if sample_count[step] > 0: - assert mu_test[step] == pytest.approx( - mu_ref[step], - abs=5 * 0.4 / np.sqrt(sample_count[step])) - - # CORRELATIONS - - # repair and injury correlations - DV_REP = pd.concat([DV_COST, DV_TIME], axis=1) - DV_INJ = pd.concat([DV_INJ0, DV_INJ1], axis=1) - - for DV, RV, dv_tag in zip([DV_REP, DV_INJ, DV_RED], - [RV_REP, RV_INJ, RV_RED], - ['rep', 'inj', 'red']): - - if dv_tag == 'rep': - # transform the lognormal variables to log scale - log_flags = ([True, False] * 8 + - [False, True] * 4 + - [True, False] * 4) - for c, is_log in enumerate(log_flags): - if is_log: - DV.iloc[:, c] = np.log(DV.iloc[:, c]) - - if dv_tag == 'inj': - # remove the columns with only nan values from DV - DV = pd.concat([DV.iloc[:,8:16], DV.iloc[:,24:32]], axis=1) - - elif dv_tag == 'red': - DV_RED_n = pd.DataFrame(np.ones(DV.shape) * np.nan, - index=DV.index, columns=DV.columns) - DMG_filter = pd.concat( - [(DMG_check.iloc[:, [8, 10, 12, 14]] / 25.0 > 0.275) & ( - DMG_check.iloc[:, [8, 10, 12, 14]] / 25.0 < 0.525), - (DMG_check.iloc[:, [9, 11, 13, 15]] / 25.0 > 0.025) & ( - DMG_check.iloc[:, - [9, 11, 13, 15]] / 25.0 < 0.275)], axis=1) - - DV_RED_n[DMG_filter] = DV_RED[DMG_filter] - DV = DV_RED_n - - DV_corr = DV.corr() - - # use the correlations specified for the random variable as - # reference (that we already verified earlier) - # COV_ref = RV.COV - # sig_ref = np.sqrt(np.diagonal(COV_ref)) - # rho_ref = COV_ref / np.outer(sig_ref, sig_ref) - - rho_ref = RV[0].RV_set.Rho([rv.name for rv in RV]) - - # perform the tests - for i in range(len(DV_corr.index)): - for j in range(len(DV_corr.columns)): - ref_i = rho_ref[i, j] - if ref_i != 0.0: - if ref_i > 0.0: - assert DV_corr.iloc[i, j] > 0.97 * ref_i - else: - assert DV_corr.iloc[i, j] < 0.0 - else: - assert DV_corr.iloc[i, j] == pytest.approx(ref_i, - abs=0.15) - - # --------------------------------------------------------------------- - - A.aggregate_results() - - # -------------------------------------------- check result aggregation - - # Aggregate results are checked in detail by other tests. - # Here we only focus on some simple checks to make sure the results - # make sense. - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 20.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')])
- - # print() -
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/tests/test_db.html b/docs/_modules/pelicun/tests/test_db.html deleted file mode 100644 index f02ffbf73..000000000 --- a/docs/_modules/pelicun/tests/test_db.html +++ /dev/null @@ -1,433 +0,0 @@ - - - - - - - - - - pelicun.tests.test_db — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.tests.test_db
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.tests.test_db

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-These are unit and integration tests on the db module of pelicun.
-
-"""
-
-import pytest
-
-import os, sys, inspect
-from pathlib import Path
-current_dir = os.path.dirname(
-    os.path.abspath(inspect.getfile(inspect.currentframe())))
-parent_dir = os.path.dirname(current_dir)
-sys.path.insert(0,os.path.dirname(parent_dir))
-
-from pelicun.db import *
-
-# -----------------------------------------------------------------------------
-# convert P58 data to JSON
-# -----------------------------------------------------------------------------
-
-
[docs]def test_convert_P58_data_to_json(): - """ - Test if the damage and loss data from the FEMA P58 project is properly - converted into the SimCenter JSON format using xml and xlsx files avialable - from ATC (the test uses a subset of the files). - """ - - data_dir = Path('resources/io testing/P58 converter/source/').resolve() - ref_dir = Path('resources/io testing/P58 converter/ref/').resolve() - test_dir = Path('test/').resolve() - - try: - # convert the files in the data folder - os.mkdir(test_dir) - convert_P58_data_to_json(data_dir, test_dir) - - # collect the prepared reference files - ref_files = sorted(os.listdir(ref_dir)) - - # collect the converted files - test_files = sorted(os.listdir(test_dir / 'DL json')) - - # compare the reference files to the converted ones - for test, ref in zip(test_files, ref_files): - with open((test_dir / 'DL json') / test,'r') as f_test: - with open(ref_dir / ref,'r') as f_ref: - #print(test, ref) - assert json.load(f_test) == json.load(f_ref) - - finally: - #pass - shutil.rmtree(test_dir)
- -# ----------------------------------------------------------------------------- -# create HAZUS JSON files -# ----------------------------------------------------------------------------- - -
[docs]def test_create_HAZUS_json_files(): - """ - Test if the damage and loss data from HAZUS is properly converted into the - SimCenter JSON format the prepared raw HAZUS JSON files (the test uses a - subset of the HAZUS input data). - """ - - data_dir = Path('resources/io testing/HAZUS creator/source/').resolve() - ref_dir = Path('resources/io testing/HAZUS creator/ref/').resolve() - test_dir = Path('test/').resolve() - - print(test_dir) - - try: - # convert the files in the data folder - os.mkdir(test_dir) - create_HAZUS_EQ_json_files(data_dir, test_dir) - - # collect the prepared reference files - ref_files = sorted(os.listdir(ref_dir / 'DL json')) - - # collect the converted files - test_files = sorted(os.listdir(test_dir / 'DL json/')) - - # compare the reference files to the converted ones - for test, ref in zip(test_files, ref_files): - with open((test_dir / 'DL json') / test, 'r') as f_test: - with open((ref_dir / 'DL json') / ref, 'r') as f_ref: - #print(test, ref) - assert json.load(f_test) == json.load(f_ref) - - # compare the population files - with open(test_dir / 'population.json', 'r') as f_test: - with open(ref_dir / 'population.json', 'r') as f_ref: - #print(test, ref) - assert json.load(f_test) == json.load(f_ref) - - finally: - #pass - shutil.rmtree(test_dir)
-
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/tests/test_file_io.html b/docs/_modules/pelicun/tests/test_file_io.html deleted file mode 100644 index 066262b96..000000000 --- a/docs/_modules/pelicun/tests/test_file_io.html +++ /dev/null @@ -1,732 +0,0 @@ - - - - - - - - - - pelicun.tests.test_file_io — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.tests.test_file_io
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.tests.test_file_io

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-These are unit and integration tests on the file_io module of pelicun.
-
-"""
-
-import pytest
-
-import os, sys, inspect, shutil
-current_dir = os.path.dirname(
-    os.path.abspath(inspect.getfile(inspect.currentframe())))
-parent_dir = os.path.dirname(current_dir)
-sys.path.insert(0,os.path.dirname(parent_dir))
-
-from pelicun.file_io import *
-
-# -----------------------------------------------------------------------------
-# read_SimCenter_DL_input
-# -----------------------------------------------------------------------------
-
-
[docs]def test_read_SimCenter_DL_input_minimum_input(): - """ - Test if the minimum input is read without producing any errors and also - check if some warnings are shown that draw attention to the lack of - potentially important information in the input file. - """ - - # load the reference results - with open('resources/io testing/ref/ref_DL_input_min.json') as f: - ref_DL = json.load(f) - - # read the input file and check for at least one warning - with pytest.warns(UserWarning) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_min.json', - verbose=False) - - # make sure the paths under data sources point to the right locations - assert test_DL['data_sources']['path_CMP_data'] == \ - pelicun_path + '/resources/FEMA_P58_2nd_ed.hdf' - test_DL.pop('data_sources', None) - - # check if the returned dictionary is appropriate - for key in set(list(ref_DL.keys())+list(test_DL.keys())): - assert ref_DL[key] == test_DL[key]
- - -
[docs]def test_read_SimCenter_DL_input_full_input(): - """ - Test if the full input (i.e. all possible fields populated and all supported - decision variables turned on) is read without producing any errors or - warnings. - """ - - # load the reference results - with open('resources/io testing/ref/ref_DL_input_full.json') as f: - ref_DL = json.load(f) - - # read the input file - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_full.json', verbose=False) - - # make sure the paths under data sources point to the right locations - assert test_DL['data_sources']['path_CMP_data'] == \ - pelicun_path + '/resources/FEMA_P58_2nd_ed.hdf' - assert test_DL['data_sources']['path_POP_data'] == \ - pelicun_path + '/resources/FEMA_P58_2nd_ed.hdf' - test_DL.pop('data_sources', None) - - # check if the returned dictionary is appropriate - for key in set(list(ref_DL.keys()) + list(test_DL.keys())): - assert ref_DL[key] == test_DL[key]
- -
[docs]def test_read_SimCenter_DL_input_non_standard_units(): - """ - Test if the inputs are properly converted when non-standard units are used. - """ - - # load the reference results - with open('resources/io testing/ref/ref_DL_input_ns_units.json') as f: - ref_DL = json.load(f) - - # read the input file and check for at least one warning - with pytest.warns(UserWarning) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_ns_units.json', - verbose=False) - - # make sure the path under data sources points to the right location - assert test_DL['data_sources']['path_CMP_data'] == \ - pelicun_path + '/resources/FEMA_P58_2nd_ed.hdf' - test_DL.pop('data_sources', None) - - # check if the returned dictionary is appropriate - for key in set(list(ref_DL.keys()) + list(test_DL.keys())): - assert ref_DL[key] == test_DL[key]
- -
[docs]def test_read_SimCenter_DL_input_unknown_unit(): - """ - Test if a warning is shown if the input file contains an unknown unit type. - """ - - with pytest.warns(UserWarning) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_unknown_unit.json', - verbose=False)
- -
[docs]def test_read_SimCenter_DL_input_injuries_only(): - """ - Test if the inputs are read properly if the user is only interested in - calculating injuries. - """ - - # read the input file and check for at least one error because the plan - # area is not specified in the file - with pytest.raises(ValueError) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_injuries_only.json', - verbose=False) - - # now test if warnings are shown if the plan area is in the file, but the - # population is only specified for the first two stories - - # load the reference results - with open('resources/io testing/ref/' - 'ref_DL_input_injuries_missing_pop.json') as f: - ref_DL = json.load(f) - - with pytest.warns(UserWarning) as e_info: - test_DL = read_SimCenter_DL_input( - 'resources/io testing/test/test_DL_input_injuries_missing_pop.json', - verbose=False) - - # remove the data_sources entry (it has already been tested) - test_DL.pop('data_sources', None) - - # check if the returned dictionary is appropriate - for key in set(list(ref_DL.keys()) + list(test_DL.keys())): - assert ref_DL[key] == test_DL[key] - - # now test if an error is shown if other pieces of data are missing - - # load the reference results - with open('resources/io testing/ref/' - 'ref_DL_input_injuries_missing_data.json') as f: - ref_DL = json.load(f) - - with pytest.raises(ValueError) as e_info: - test_DL = read_SimCenter_DL_input( - 'resources/io testing/test/test_DL_input_injuries_missing_data.json', - verbose=False)
- - -
[docs]def test_read_SimCenter_DL_input_unknown_component_unit(): - """ - Test if an error is shown if the input file contains an unknown unit type - for one of the components. - """ - - with pytest.raises(ValueError) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_unknown_comp_unit.json', - verbose=False)
- -
[docs]def test_read_SimCenter_DL_input_no_realizations(): - """ - Test if an error is shown if the input file contains no information about - the number of realizations to run. - """ - - with pytest.raises(ValueError) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_no_realizations.json', - verbose=False)
- -# ----------------------------------------------------------------------------- -# read_SimCenter_EDP_input -# ----------------------------------------------------------------------------- - -
[docs]def test_read_SimCenter_EDP_input(): - """ - Test if the function can read the provided set of EDPs from a file and - return them and the corresponding additional information in a properly - structured format. - """ - # load the reference results - with open('resources/io testing/ref/ref_EDP_input.json') as f: - ref_EDP = json.load(f) - - # read the input file - test_EDP = read_SimCenter_EDP_input( - 'resources/io testing/test/test_EDP_input.out', - EDP_kinds=('PID', 'PFA', 'RD', 'PRD'), - units = dict(PID=1., PFA=9.81, RD=1., PRD=0.2), - verbose=False) - - # check if the returned dictionary is appropriate - assert ref_EDP == test_EDP
- -# ----------------------------------------------------------------------------- -# read_population_distribution -# ----------------------------------------------------------------------------- - -
[docs]def test_read_population_distribution(): - """ - Test if the population distribution is read according to the specified - occupancy type and if the peak population is properly converted from - 1/1000*ft2 to 1/m2. - """ - - # load the reference results - with open('resources/io testing/ref/ref_POP_data.json') as f: - ref_POP = json.load(f) - - # read the input file - test_POP = read_population_distribution( - 'resources/io testing/test/test_POP_data.json', - occupancy='Commercial Office', verbose=False) - - # check if the returned dictionary is appropriate - assert ref_POP == test_POP
- -# ----------------------------------------------------------------------------- -# read_component_DL_data -# ----------------------------------------------------------------------------- - -
[docs]def test_read_component_DL_data(): - """ - Test if the component data is properly read from the resource xml files. - Use a series of tests to see if certain component features trigger proper - warnings or errors. - """ - - # basic case with a typical component - comp_info = { - "B1071.011": { - "locations": [2, 2, 3, 3], - "directions": [1, 2, 1, 2], - "quantities": [50.0, 50.0, 50.0, 50.0], - "csg_weights" : [ - [1.0,], - [1.0,], - [1.0,], - [1.0,]], - "cov" : ["0.1", "0.1", "0.1", "0.1"], - "distribution": ["normal", "normal", "normal", "normal"], - "unit" : "ft2" - } - } - - # read the component data - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - # load the reference results - with open('resources/io testing/ref/ref_CMP_B1071.011.json', - 'r') as f: - ref_CMP = json.load(f) - - # check if the returned dictionary is appropriate - for key in set(list(ref_CMP.keys())+list(test_CMP.keys())): - assert ref_CMP[key] == test_CMP[key] - - # acceleration-sensitive component with injuries - comp_info = { - "C3032.001a": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [125.0, 125.0], - "csg_weights" : [ - [0.2, 0.8], - [0.4, 0.6], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ft2" - } - } - - # read the component data - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - # load the reference results - with open('resources/io testing/ref/ref_CMP_C3032.001a.json', - 'r') as f: - ref_CMP = json.load(f) - - # check if the returned dictionary is appropriate - for key in set(list(ref_CMP.keys()) + list(test_CMP.keys())): - assert ref_CMP[key] == test_CMP[key] - - # component with simultaneous damage states - comp_info = { - "D1014.011": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [3.0, 7.0], - "csg_weights": [ - [2./3., 1./3.], - [1./7., 6./7.], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ea" - } - } - - # read the component data - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - # load the reference results - with open('resources/io testing/ref/ref_CMP_D1014.011.json', - 'r') as f: - ref_CMP = json.load(f) - - # check if the returned dictionary is appropriate - assert ref_CMP["D1014.011"] == test_CMP["D1014.011"] - - # component with mutually exclusive damage states - comp_info = { - "B1035.051": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [3.0, 7.0], - "csg_weights": [ - [2./3., 1./3.], - [1./7., 6./7.], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ea" - } - } - - # read the component data - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - # load the reference results - with open('resources/io testing/ref/ref_CMP_B1035.051.json', - 'r') as f: - ref_CMP = json.load(f) - - # check if the returned dictionary is appropriate - assert test_CMP == ref_CMP - - # an incomplete component shall not get parsed and shall produce a warning - comp_info = { - "E2022.023": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [3.0, 7.0], - "csg_weights": [ - [2./3., 1./3.], - [1./7., 6./7.], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ea" - } - } - - # read the component data - with pytest.warns(UserWarning) as e_info: - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - assert test_CMP == {} - - # a component with unknown EDP shall not get parsed and shall produce a warning - comp_info = { - "B1042.001a": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [3.0, 7.0], - "csg_weights": [ - [2./3., 1./3.], - [1./7., 6./7.], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ea" - } - } - - # read the component data - with pytest.warns(UserWarning) as e_info: - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - assert test_CMP == {}
- -# ----------------------------------------------------------------------------- -# write_SimCenter_DL_output -# ----------------------------------------------------------------------------- - -
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/tests/test_model.html b/docs/_modules/pelicun/tests/test_model.html deleted file mode 100644 index 2e8b003c5..000000000 --- a/docs/_modules/pelicun/tests/test_model.html +++ /dev/null @@ -1,1085 +0,0 @@ - - - - - - - - - - pelicun.tests.test_model — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.tests.test_model
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.tests.test_model

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-These are unit and integration tests on the model module of pelicun.
-
-"""
-import pytest
-import numpy as np
-from numpy.testing import assert_allclose
-from scipy.stats import norm, truncnorm
-
-import os, sys, inspect
-current_dir = os.path.dirname(
-    os.path.abspath(inspect.getfile(inspect.currentframe())))
-parent_dir = os.path.dirname(current_dir)
-sys.path.insert(0,os.path.dirname(parent_dir))
-
-from pelicun.model import *
-from pelicun.tests.test_reference_data import standard_normal_table
-#from pelicun.uq import RandomVariable, RandomVariableSubset
-from pelicun.uq import *
-
-# -------------------------------------------------------------------------------
-# Fragility_Function
-# ------------------------------------------------------------------------------
-
-
[docs]def test_FragilityFunction_Pexc_lognormal_unit_mean_unit_std(): - """ - Given a lognormal fragility function with theta=1.0 and beta=1.0, test if - the calculated exceedance probabilities are sufficiently accurate. - The reference results are based on a standard normal table. This limits the - accuracy of testing to an absolute probability difference of 1e-5. - """ - # prepare the inputs - EDP = np.exp(np.concatenate([-standard_normal_table[0][::-1], - standard_normal_table[0]])) - reference_P_exc = np.concatenate([0.5 - standard_normal_table[1][::-1], - 0.5 + standard_normal_table[1]]) - - # create the fragility function - RV_A = RandomVariable(name='A', distribution='lognormal', theta=[1.0, 1.0]) - - FF_set = RandomVariableSet('A_set', [RV_A,], [1.0]) - - fragility_function = FragilityFunction(EDP_limit=[RV_A,]) - - # calculate the exceedance probabilities - test_P_exc = fragility_function.P_exc(EDP, DSG_ID=1) - - assert_allclose(test_P_exc, reference_P_exc, atol=1e-5)
- -
[docs]def test_FragilityFunction_Pexc_lognormal_non_trivial_case(): - """ - Given a lognormal fragility function with theta=0.5 and beta=0.2, test if - the calculated exceedance probabilities are sufficiently accurate. - The reference results are based on a standard normal table. This limits the - accuracy of testing to an absolute probability difference of 1e-5. - """ - # prepare the inputs - target_theta = 0.5 - target_beta = 0.2 - EDP = np.concatenate([-standard_normal_table[0][::-1], - standard_normal_table[0]]) - EDP = np.exp(EDP * target_beta + np.log(target_theta)) - reference_P_exc = np.concatenate([0.5 - standard_normal_table[1][::-1], - 0.5 + standard_normal_table[1]]) - - # create the fragility function - RV_A = RandomVariable(name='A', distribution='lognormal', - theta=[target_theta, target_beta]) - - FF_set = RandomVariableSet('A_set', [RV_A, ], [1.0]) - - fragility_function = FragilityFunction(EDP_limit=[RV_A,]) - - # calculate the exceedance probabilities - test_P_exc = fragility_function.P_exc(EDP, DSG_ID=1) - - assert_allclose(test_P_exc, reference_P_exc, atol=1e-5)
- -
[docs]def test_FragilityFunction_Pexc_lognormal_zero_input(): - """ - Given a zero EDP input to a lognormal fragility function, the result shall - be 0 exceedance probability, even though zero input in log space shall - correspond to -infinity. This slight modification makes our lives much - easier when real inputs are fed to the fragility functions. - """ - # create the fragility function - RV_A = RandomVariable(name='A', distribution='lognormal', - theta=[1.0, 1.0]) - - FF_set = RandomVariableSet('A_set', [RV_A, ], [1.0]) - - fragility_function = FragilityFunction(EDP_limit=[RV_A,]) - - # calculate the exceedance probability - test_P_exc = fragility_function.P_exc(0., DSG_ID=1) - - assert test_P_exc == 0.
- -
[docs]def test_FragilityFunction_Pexc_lognormal_nonzero_scalar_input(): - """ - Given a nonzero scalar EDP input, the fragility function should return a - nonzero scalar output. - """ - # create the fragility function - RV_A = RandomVariable(name='A', distribution='lognormal', - theta=[1.0, 1.0]) - - FF_set = RandomVariableSet('A_set', [RV_A, ], [1.0]) - fragility_function = FragilityFunction(EDP_limit=[RV_A,]) - - # calculate the exceedance probabilities - test_P_exc = fragility_function.P_exc(standard_normal_table[0][0], DSG_ID=1) - - assert test_P_exc == pytest.approx(standard_normal_table[1][0], abs=1e-5)
- -
[docs]def test_FragilityFunction_Pexc_multiple_damage_states_with_correlation(): - """ - Test if the fragility function returns an appropriate list of exceedance - probabilities for various scenarios with multiple damage states that have - potentially correlated fragilities. - - """ - # P_exc is requested for a list of EDPs - EDP = np.exp(np.linspace(-2., 2., num=11)) - - # 3 damage state groups, perfectly correlated - # the DSGs are unordered in the RV only to make the test more general - dims = 3 - ref_mean = np.exp([2.0, 0., 0.5]) - ref_std = [1.5, 0.5, 1.0] - ref_rho = np.ones((dims, dims)) * 1. - np.fill_diagonal(ref_rho, 1.0) - - RV_reg = RandomVariableRegistry() - - for i, (name, theta, beta) in enumerate(zip(['C', 'A', 'B'], - ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=name, distribution='lognormal', - theta=[theta, beta])) - - # a single DSG fragility - FF_set = RandomVariableSet('A_set', [RV_reg.RV['A'], ], [1.0]) - fragility_function = FragilityFunction(EDP_limit=[RV_reg.RV['A'],]) - - test_res = fragility_function.P_exc(EDP, 1) - ref_res = norm.cdf(np.log(EDP), - loc=np.log(ref_mean[1]), scale=ref_std[1]) - assert_allclose(test_res, ref_res) - - # three DSGs in proper order, P_exc for A is requested considering all - # three - FF_set = RandomVariableSet('FF_0', - [RV_reg.RV[rv] for rv in ['A', 'B', 'C']], ref_rho) - fragility_function = FragilityFunction( - EDP_limit=[RV_reg.RV[rv] for rv in ['A', 'B', 'C']]) - - test_res = fragility_function.P_exc(EDP, 1) - ref_res = [norm.cdf(np.log(EDP), - loc=np.log(ref_mean[i]), scale=ref_std[i]) - for i in range(3)] - ref_res = np.max(np.asarray(ref_res), axis=0) - assert_allclose(test_res, ref_res) - - # change the covariance matrix - uncorrelated fragilities - ref_rho = np.ones((dims, dims)) * 0. - np.fill_diagonal(ref_rho, 1.0) - - FF_set = RandomVariableSet('FF_0', - [RV_reg.RV[rv] for rv in ['A', 'B', 'C']], - ref_rho) - fragility_function = FragilityFunction( - EDP_limit=[RV_reg.RV[rv] for rv in ['A', 'B', 'C']]) - - # three DSGs, still interested in P_exc for A considering all three - test_res = fragility_function.P_exc(EDP, 1) - ref_res = [norm.cdf(np.log(EDP), - loc=np.log(ref_mean[i]), scale=ref_std[i]) - for i in range(3)] - ref_res[1] = ref_res[1] * (1. - ref_res[0]) - ref_res[2] = ref_res[2] * (1. - np.sum(np.asarray(ref_res[:2]), axis=0)) - ref_res = np.sum(np.asarray(ref_res), axis=0) - assert_allclose(ref_res, test_res)
- -
[docs]def test_FragilityFunction_DSG_ID_given_EDP_general(): - """ - Test if the DSG_IDs returned by the function are appropriate using - exceedance probabilities from the already tested P_exc function. - - """ - # 3 damage state groups, perfectly correlated - # the DSGs are unordered in the RV only to make the test more general - dims = 3 - ref_mean = np.exp([2.0, 0., 0.5]) - ref_std = [1.5, 0.5, 1.0] - ref_rho = np.ones((dims, dims)) * 1. - np.fill_diagonal(ref_rho, 1.0) - - RV_reg = RandomVariableRegistry() - - for i, (name, theta, beta) in enumerate(zip(['C', 'A', 'B'], - ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=name, distribution='lognormal', - theta=[theta, beta])) - - FF_set = RandomVariableSet('FF_0', - [RV_reg.RV[rv] for rv in ['A', 'B', 'C']], - ref_rho) - fragility_function = FragilityFunction( - EDP_limit=[RV_reg.RV[rv] for rv in ['A', 'B', 'C']]) - - RV_reg.add_RV_set(FF_set) - RV_reg.generate_samples(sample_size=10000) - - # same EDP 10^5 times to allow for P_exc-based testing - for target_EDP in [0., 0.75, 2.0]: - - # create the EDP vector - EDP = np.ones(10000) * np.exp(target_EDP) - - # get the DSG_IDs - DSG_ID = fragility_function.DSG_given_EDP(EDP) - - # calculate the DSG_ID probabilities - P_DS_test = np.histogram(DSG_ID.values, - bins=np.arange(5) - 0.5, density=True)[0] - - # use the P_exc function to arrive at the reference DSG_ID probabilities - P_exc = np.asarray(list(map( - lambda x: fragility_function.P_exc(np.exp(target_EDP), x), - [0, 1, 2, 3]))) - P_DS_ref = np.concatenate([P_exc[:-1] - P_exc[1:], [P_exc[-1], ]]) - - # compare - assert_allclose(P_DS_test, P_DS_ref, atol=0.02) - - # random set of EDPs uniformly distributed over the several different - # domains - for a, b in [[-1., -0.9], [1., 1.1], [-1., 1.]]: - EDP = np.exp(np.random.uniform(a, b, 10000)) - - # get a DSG_ID sample for each EDP - DSG_ID = fragility_function.DSG_given_EDP(EDP) - - # get the test DSG_ID probabilities - P_DS_test = \ - np.histogram(DSG_ID.values, bins=np.arange(5) - 0.5, - density=True)[0] - - # get the EDP-P_exc functions - basically the fragility functions - EDP = np.exp(np.linspace(a, b, num=100)) - P_exc_f = np.asarray( - list(map(lambda x: fragility_function.P_exc(EDP, x), [0, 1, 2, 3]))) - - # Calculate the area enclosed by the two functions that define each DS - # it should be the same as the P_DS from the test - CDF = [p - np.max(P_exc_f[i + 1:], axis=0) - for i, p in enumerate(P_exc_f[:3])] - CDF.append(P_exc_f[-1]) - CDF = np.asarray(CDF) - P_DS_ref = np.asarray( - list(map(lambda x: np.trapz(CDF[x], np.log(EDP)), - [0, 1, 2, 3]))) / (b - a) - - assert_allclose(P_DS_test, P_DS_ref, atol=0.02)
- -''' -def test_FragilityFunction_DSG_given_EDP_insufficient_samples(): - """ - Test if the function raises an error message if the number of EDP values - provided is greater than the number of available samples from the RVS. - - """ - # create a simple random variable - RV = RandomVariable(ID=1, dimension_tags=['A'], - distribution_kind='lognormal', - theta=1.0, COV=1.0) - - # assign it to the fragility function - RVS = RandomVariableSubset(RV=RV, tags=['A']) - FF = FragilityFunction(EDP_limit=RVS) - - # sample 10 realizations - RVS.sample_distribution(10) - - # create 100 EDP values - EDP = np.ones(100) - - # try to get the DSG_IDs... and expect an error - with pytest.raises(ValueError) as e_info: - FF.DSG_given_EDP(EDP) -''' - -# ------------------------------------------------------------------------------ -# Consequence_Function -# ------------------------------------------------------------------------------ - -
[docs]def test_ConsequenceFunction_fixed_median_value(): - """ - Test if the function returns the prescribed median. - """ - for dist in ['normal', 'lognormal']: - RV = RandomVariable(name='A', distribution=dist, - theta=[1.0, 1.0]) - - conseq_function = ConsequenceFunction( - DV_median=prep_constant_median_DV(1.0), - DV_distribution=RV - ) - - assert conseq_function.median() == 1.0 - assert conseq_function.median(1.0) == 1.0 - assert conseq_function.median([1., 1.]) == 1.0
- -
[docs]def test_ConsequenceFunction_bounded_linear_median_value(): - """ - Test if the function returns an appropriate output for single quantities - and for quantity arrays, and if it raises an error if the quantity is not - specified for a quantity-dependent median. - """ - test_quants = [0.5, 1.0, 1.5, 2.0, 2.5] - ref_vals = [2.0, 2.0, 1.5, 1.0, 1.0] - - for dist in ['normal', 'lognormal']: - RV = RandomVariable(name='A', distribution=dist, - theta=[1.0, 1.0]) - - f_median = prep_bounded_linear_median_DV( - median_max=2.0, median_min=1.0, - quantity_lower=1.0, quantity_upper=2.0 - ) - conseq_function = ConsequenceFunction( - DV_median=f_median, - DV_distribution=RV - ) - - # should raise an error if the quantity is not specified - with pytest.raises(ValueError) as e_info: - conseq_function.median() - - # single quantities - for quant, ref_val in zip(test_quants, ref_vals): - assert conseq_function.median(quantity=quant) == ref_val - - # quantity array - test_medians = conseq_function.median(quantity=test_quants) - assert_allclose(test_medians, ref_vals, rtol=1e-10)
- - -
[docs]def test_ConsequenceFunction_sample_unit_DV(): - """ - Test if the function samples the DV distribution properly. Note that we - have already tested the sampling algorithm in the uq module, so we will not - do a thorough verification of the samples here, but rather check for errors - in the inputs that would typically lead to significant mistakes in the - results. - """ - test_quants = [0.5, 1.0, 1.5, 2.0, 2.5] - - # create a Random Variable with 3 correlated decision variables - dims = 3 - ref_mean = [1., 1., 0.] - ref_std = [0.4, 0.3, 0.2] - ref_rho = np.ones((dims, dims)) * 0.8 - np.fill_diagonal(ref_rho, 1.0) - - ref_mean[2] = np.exp(ref_mean[2]) - - # prepare lower truncation limits at 0 for all... - tr_lower = np.zeros(dims).tolist() - # and an upper limit at 2 sigma for the second - tr_upper = [np.inf, 1.6, np.inf] - - RV_reg = RandomVariableRegistry() - - for i, (name, dist, theta, beta) in enumerate( - zip(['A', 'B', 'C'], ['normal', 'normal', 'lognormal'], - ref_mean, ref_std)): - RV_reg.add_RV( - RandomVariable(name=name, distribution=dist, theta=[theta, beta], - truncation_limits=[tr_lower[i], tr_upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('set_A', [RV_reg.RV[rv] for rv in ['A', 'B', 'C']], - ref_rho)) - RV_reg.generate_samples(sample_size=1000) - - # first test sampling for each decision variable - for r_i, tag in enumerate(['A', 'B', 'C']): - - # use fixed value for 'B' and bounded linear for the other two - if tag == 'B': - f_median = prep_constant_median_DV(10.) - else: - f_median = prep_bounded_linear_median_DV( - median_max=20.0, median_min=2.0, - quantity_lower=1.0, quantity_upper=2.0 - ) - - # create the consequence function - conseq_function = ConsequenceFunction( - DV_median=f_median, - DV_distribution=RV_reg.RV[tag] - ) - - for qnt in test_quants: - samples = conseq_function.sample_unit_DV(quantity=qnt, - sample_size=1000) - - # transform the results to log space for 'C' to facilitate testing - if tag == 'C': - samples = np.log(samples) - ref_mu = np.log(f_median(qnt)) - ref_min = np.log(max(np.nextafter(0, 1), tr_lower[r_i])) - ref_max = np.log(max(np.nextafter(0, 1), tr_upper[r_i])) - a = (ref_min - np.log(ref_mean[r_i])) / ref_std[r_i] - b = (ref_max - np.log(ref_mean[r_i])) / ref_std[r_i] - ref_max = ref_mu * b - else: - ref_mu = f_median(qnt) - ref_min = tr_lower[r_i] - a = (ref_min - ref_mean[r_i]) / ref_std[r_i] - b = (tr_upper[r_i] - ref_mean[r_i]) / ref_std[r_i] - ref_max = ref_mu * b - - trNorm = truncnorm(a=a, b=b, loc=ref_mu, - scale=ref_std[r_i] if tag == 'C' - else ref_std[r_i] * ref_mu) - ref_samples = trNorm.rvs(size=1000) - - # test the means and coefficients of variation - assert np.mean(samples) == pytest.approx(np.mean(ref_samples), - rel=0.1) - assert np.std(samples) == pytest.approx(np.std(ref_samples), - rel=0.15) - - # test the limits - assert np.min(samples) > ref_min - assert np.max(samples) < ref_max
- -''' -def test_ConsequenceFunction_sample_unit_DV_insufficient_samples(): - """ - Test if the function raises an error message if the number of samples - requested is greater than the number of available samples from the RVS. - - """ - # create a simple random variable - RV = RandomVariable(ID=1, dimension_tags=['A'], - distribution_kind='lognormal', - theta=1.0, COV=1.0) - - # assign it to the fragility function - RVS = RandomVariableSubset(RV=RV, tags=['A']) - CF = ConsequenceFunction(DV_median=prep_constant_median_DV(1.0), - DV_distribution = RVS) - - # sample 10 realizations - RVS.sample_distribution(10) - - # try to get the DSG_IDs... and expect an error - with pytest.raises(ValueError) as e_info: - CF.sample_unit_DV(sample_size=100) -''' - -# ------------------------------------------------------------------------------ -# Damage State -# ------------------------------------------------------------------------------ -
[docs]def test_DamageState_weight(): - """ - Test if the damage state returns the assigned weight value. - """ - DS = DamageState(ID=1, weight=0.4) - - assert DS.weight == 0.4
- - -
[docs]def test_DamageState_description(): - """ - Test if the damage state returns the assigned description. - """ - ref_str = 'Test description.' - DS = DamageState(ID=1, description=ref_str) - - assert DS.description == ref_str
- - -
[docs]def test_DamageState_repair_cost_sampling(): - """ - Test if the repair cost consequence function is properly linked to the - damage state and if it returns the requested samples. - """ - - # create a consequence function (the small standard deviation facilitates - # the assertion of the returned samples) - f_median = prep_bounded_linear_median_DV( - median_max=2.0, median_min=1.0, - quantity_lower=10.0, quantity_upper=20.0 - ) - - RV = RandomVariable(name='A', distribution='lognormal', - theta=[1.0, 1e-10]) - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RV) - RV_reg.generate_samples(sample_size=5) - - CF = ConsequenceFunction(DV_median=f_median, - DV_distribution=RV) - - # create a damage state and assign the CF to it - DS = DamageState(ID=1, repair_cost_CF=CF) - - # sample the repair cost distribution - test_vals = DS.unit_repair_cost(quantity=[5.0, 10.0, 15.0, 20.0, 25.0], - sample_size=4) - - assert test_vals.size == 5 - - ref_medians = np.asarray([2.0, 2.0, 1.5, 1.0, 1.0]) - - assert_allclose(test_vals, ref_medians, rtol=1e-4)
- - -
[docs]def test_DamageState_reconstruction_time_sampling(): - """ - Test if the reconstruction time consequence function is properly linked to - the damage state and if it returns the requested samples. - """ - - # create a consequence function (the small standard deviation facilitates - # the assertion of the returned samples) - f_median = prep_bounded_linear_median_DV( - median_max=2.0, median_min=1.0, - quantity_lower=10.0, quantity_upper=20.0 - ) - - RV = RandomVariable(name='A', distribution='lognormal', - theta=[1.0, 1e-10]) - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RV) - RV_reg.generate_samples(sample_size=5) - - CF = ConsequenceFunction(DV_median=f_median, - DV_distribution=RV) - - # create a damage state and assign the CF to it - DS = DamageState(ID=1, reconstruction_time_CF=CF) - - # sample the repair cost distribution - test_vals = DS.unit_reconstruction_time( - quantity=[5.0, 10.0, 15.0, 20.0, 25.0], - sample_size=4) - - assert test_vals.size == 5 - - ref_medians = np.asarray([2.0, 2.0, 1.5, 1.0, 1.0]) - - assert_allclose(test_vals, ref_medians, rtol=1e-4)
- -
[docs]def test_DamageState_red_tag_sampling(): - """ - Test if the red tag consequence function is properly linked to the damage - state and if it returns the requested samples. - """ - - # create a consequence function - f_median = prep_constant_median_DV(0.25) - - RV = RandomVariable(name='A', distribution='normal', - theta=[1.0, 1.0], - truncation_limits=[0., 4.]) - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RV) - RV_reg.generate_samples(sample_size=1000) - - CF = ConsequenceFunction(DV_median=f_median, - DV_distribution=RV) - - # create a damage state and assign the CF to it - DS = DamageState(ID=1, red_tag_CF=CF) - - # sample the repair cost distribution - test_vals = DS.red_tag_dmg_limit(sample_size=1000) - - assert test_vals.size == 1000 - - # sample the reference truncated normal distribution and use the samples for testing - ref_samples = truncnorm.rvs(a=-1., b=3., loc=0.25, scale=0.25, size=1000) - - assert np.mean(test_vals) == pytest.approx(np.mean(ref_samples), rel=0.1) - assert np.std(test_vals) == pytest.approx(np.std(ref_samples), rel=0.1) - - assert np.min(test_vals) > 0. - assert np.max(test_vals) < 1.
- - -
[docs]def test_DamageState_injury_sampling(): - """ - Test if the set of injury consequence functions is properly linked to the - damage state and if it returns the requested samples. - """ - - # create two consequence functions that are correlated - dims = 2 - ref_median = [0.5, 0.4] - ref_sig = [0.5, 0.6] - ref_rho = np.ones((dims, dims)) * 0.8 - np.fill_diagonal(ref_rho, 1.0) - - tr_lower = np.zeros(2) - tr_upper = 1. + ((np.ones(2) - ref_median) / ref_median) - - f_median_0 = prep_constant_median_DV(ref_median[0]) - f_median_1 = prep_constant_median_DV(ref_median[1]) - - RV_reg = RandomVariableRegistry() - - for i, (name, std) in enumerate(zip(['A', 'B'], ref_sig)): - RV_reg.add_RV( - RandomVariable(name=name, distribution='normal', theta=[1.0, std], - truncation_limits=[tr_lower[i], tr_upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('set_A', [RV_reg.RV[rv] for rv in ['A', 'B']], - ref_rho)) - RV_reg.generate_samples(sample_size=10000) - - CF_0 = ConsequenceFunction(DV_median=f_median_0, - DV_distribution=RV_reg.RV['A']) - CF_1 = ConsequenceFunction(DV_median=f_median_1, - DV_distribution=RV_reg.RV['B']) - - # create a damage state and assign the CF list to it - DS = DamageState(ID=1, injuries_CF_set=[CF_0, CF_1]) - - # sample the two types of injuries and check if the values are appropriate - for s_i in [0, 1]: - samples = DS.unit_injuries(severity_level=s_i, sample_size=10000) - assert samples.size == 10000 - - # sample the reference truncated normal distribution and use the - # samples for testing - ref_samples = truncnorm.rvs(a=(-1.) / ref_sig[s_i], - b=(tr_upper[s_i] - 1.) / ref_sig[s_i], - loc=ref_median[s_i], - scale=ref_sig[s_i] * ref_median[s_i], - size=1000) - - assert np.mean(samples) == pytest.approx(np.mean(ref_samples), rel=0.1) - assert np.std(samples) == pytest.approx(np.std(ref_samples), abs=0.02) - assert np.min(samples) == pytest.approx(0., abs=0.05) - assert np.max(samples) == pytest.approx(1., abs=0.05) - - # finally, check the correlation between A and B - test_corr = np.corrcoef(pd.DataFrame(RV_reg.RV_set['set_A'].samples).values, - rowvar=False)[0, 1] - assert test_corr == pytest.approx(0.8, rel=0.1)
- -# ------------------------------------------------------------------------------ -# Damage State Group -# ------------------------------------------------------------------------------ -
[docs]def test_DamageStateGroup_kind(): - """ - Test if the damage state group returns the assigned group type. - """ - ref_kind = 'single' - DSG = DamageStateGroup(ID=1, DS_set=None, DS_set_kind=ref_kind) - - assert DSG._DS_set_kind == ref_kind
- -# ------------------------------------------------------------------------------ -# Performance Group -# ------------------------------------------------------------------------------ - -
[docs]def test_PerformanceGroup_Pexc(): - """ - Test if the performance group returns exceedance probabilities from the - assigned fragility function for a given damage state group appropriately. - """ - - RV_reg = RandomVariableRegistry() - - # create the fragility function - for i, (name, theta, beta) in enumerate(zip(['A', 'B'], - [0.5, 0.7], - [0.4, 0.4])): - RV_reg.add_RV(RandomVariable(name=name, distribution='lognormal', - theta=[theta, beta])) - - FF_set = RandomVariableSet('A_set', [RV_reg.RV['A'], RV_reg.RV['B']], - np.ones((2,2))) - fragility_function = FragilityFunction( - EDP_limit=[RV_reg.RV['A'], RV_reg.RV['B']]) - - RV_reg.add_RV_set(FF_set) - - # create two damage state groups - DSG_0 = DamageStateGroup(ID=1, DS_set=None, DS_set_kind='single') - DSG_1 = DamageStateGroup(ID=2, DS_set=None, DS_set_kind='single') - - # create a random quantity variable - QNT = RandomVariable(name='Q_A', distribution='normal', - theta=[100., np.sqrt(100)]) - RV_reg.add_RV(QNT) - - # create the performance group - PG = PerformanceGroup(ID=1, location=1, quantity=QNT, - fragility_functions=fragility_function, - DSG_set=[DSG_0, DSG_1]) - - EDP = np.linspace(0.1, 0.9, 9) - - for edp in EDP: - assert fragility_function.P_exc(edp, DSG_ID=1) == PG.P_exc(edp, DSG_ID=1) - assert fragility_function.P_exc(edp, DSG_ID=2) == PG.P_exc(edp, DSG_ID=2) - - assert_allclose(PG.P_exc(EDP, DSG_ID=1), PG.P_exc(EDP, DSG_ID=1), - rtol=1e-10) - assert_allclose(PG.P_exc(EDP, DSG_ID=2), PG.P_exc(EDP, DSG_ID=2), - rtol=1e-10)
- -# ------------------------------------------------------------------------------ -# Fragility Group -# ------------------------------------------------------------------------------ -
[docs]def test_FragilityGroup_description_and_name(): - """ - Test if the fragility group returns the assigned description. - """ - ref_desc = 'Test long description.' - ref_name = 'Test short description.' - - # create a dummy performance group - - # create the fragility function - RV = RandomVariable(name='A', distribution='lognormal', theta=[0.5, 0.4]) - FF = FragilityFunction(EDP_limit=[RV,]) - - # some of the inputs below do not make sense, but since the subject of the - # test is not the performance group, they will work fine - PG = PerformanceGroup(ID=1, location=1, - quantity=RV, - fragility_functions=FF, - DSG_set=None) - - FG = FragilityGroup(ID=1, demand_type='PID', - performance_groups = [PG, ], - name=ref_name, description=ref_desc) - - assert FG.name == ref_name - assert FG.description == ref_desc
-
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/tests/test_uq.html b/docs/_modules/pelicun/tests/test_uq.html deleted file mode 100644 index 435d5d4d0..000000000 --- a/docs/_modules/pelicun/tests/test_uq.html +++ /dev/null @@ -1,1258 +0,0 @@ - - - - - - - - - - pelicun.tests.test_uq — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.tests.test_uq
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.tests.test_uq

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-These are unit and integration tests on the uq module of pelicun.
-
-"""
-import pytest
-import numpy as np
-from scipy.stats import norm
-from numpy.testing import assert_allclose
-from copy import deepcopy
-
-import os, sys, inspect
-current_dir = os.path.dirname(
-    os.path.abspath(inspect.getfile(inspect.currentframe())))
-parent_dir = os.path.dirname(current_dir)
-sys.path.insert(0,os.path.dirname(parent_dir))
-
-from pelicun.tests.test_pelicun import assert_normal_distribution
-from pelicun.uq import *
-
-# ------------------------------------------------------------------------------
-# ORTHOTOPE DENSITY
-# ------------------------------------------------------------------------------
-
[docs]def test_MVN_CDF_univariate(): - """ - Test if the MVN CDF function provides accurate results for the special - univariate case. - - """ - - # Testing is based on the CDF results from scipy's norm function. - ref_mean = 0.5 - ref_std = 0.25 - ref_var = ref_std ** 2. - lower = np.arange(13)/5.-1.5 - upper = np.arange(13)/3. - for l,u in zip(lower,upper): - ref_l, ref_u = norm.cdf([l,u],loc=ref_mean, scale=ref_std) - ref_res = ref_u-ref_l - test_res, __ = mvn_orthotope_density(ref_mean, ref_var, - lower=l, upper=u) - - assert ref_res == pytest.approx(test_res) - - # test if the function works properly with infinite boundaries - test_res, __ = mvn_orthotope_density(ref_mean, ref_var) - assert test_res == 1.
- -
[docs]def test_MVN_CDF_multivariate(): - """ - Test if the MVN CDF function provides accurate results for multivariate - cases. - - """ - # Testing is based on univariate results compared to estimates of MVN CDF - # with special correlation structure - - # First, assume perfect correlation. Results should be identical for all - # dimensions - - for dims in range(2, 6): - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.arange(1, dims + 1, dtype=np.float64) - ref_rho = np.ones((dims, dims)) * 1.0 - ref_COV = np.outer(ref_std, ref_std) * ref_rho - np.fill_diagonal(ref_COV, ref_std ** 2.) - - lower = ref_mean - ref_std * 2.5 - upper = ref_mean + ref_std * 1.5 - - test_res, __ = mvn_orthotope_density(ref_mean, ref_COV, - lower=lower, upper=upper) - - ref_l, ref_u = norm.cdf([-2.5, 1.5], loc=0., scale=1.) - ref_res = ref_u - ref_l - - assert ref_res == pytest.approx(test_res) - - # Second, assume independence. Results should be equal to the univariate - # result on the power of the number of dimensions. - for dims in range(2, 6): - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.arange(1, dims + 1, dtype=np.float64) - ref_rho = np.ones((dims, dims)) * 0.0 - ref_COV = np.outer(ref_std, ref_std) * ref_rho - np.fill_diagonal(ref_COV, ref_std ** 2.) - - lower = ref_mean - ref_std * 2.5 - upper = ref_mean + ref_std * 1.5 - - test_res, __ = mvn_orthotope_density(ref_mean, ref_COV, - lower=lower, upper=upper) - - ref_l, ref_u = norm.cdf([-2.5, 1.5], loc=0., scale=1.) - ref_res = ref_u - ref_l - - assert ref_res**dims == pytest.approx(test_res)
- -# ------------------------------------------------------------------------------ -# Random_Variable objects -# ------------------------------------------------------------------------------ -
[docs]def test_RandomVariable_incorrect_none_defined(): - """ - Test if the random variable object raises an error when the distribution - is not empirical and no parameters are provided. - """ - - with pytest.raises(ValueError) as e_info: - RandomVariable(name='A', distribution='normal')
- -
[docs]def test_RandomVariable_incorrect_multinomial_definition(): - """ - Test if the random variable object raises an error when a multinomial - distribution is defined with incorrect parameters, and test - that it does not raise an error when the right parameters are provided. - """ - - p_values = [0.5, 0.2, 0.1, 0.2] - # correct parameters - RandomVariable(name='A', distribution='multinomial', - theta=[0.5, 0.2, 0.1, 0.2]) - - # sum(p) less than 1.0 -> should be automatically corrected - RandomVariable(name='A', distribution='multinomial', - theta=[0.5, 0.2, 0.1, 0.1]) - - # sum(p) more than 1.0 -> should raise an error - with pytest.raises(ValueError) as e_info: - RandomVariable(name='A', distribution='multinomial', - theta=[0.5, 0.2, 0.1, 0.3])
- -# ------------------------------------------------------------------------------ -# SAMPLING -# ------------------------------------------------------------------------------ -
[docs]def test_sampling_tr_alpha_error(): - """ - Test if the function raises an error when the probability density that the - truncation limits define is not sufficiently accurate for further use. - - """ - - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[0.5, 0.25], - truncation_limits = [-10.0, -9.9])) - - with pytest.raises(ValueError) as e_info: - RV_reg.generate_samples(sample_size=10, seed=1)
- -
[docs]def test_sampling_non_truncated(): - """ - Test if the sampling method returns appropriate samples for a non-truncated - univariate and multivariate normal distribution. - - """ - - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std])) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return RV_reg.RV_samples['A'] - - assert assert_normal_distribution(sampling_function, ref_mean, ref_std**2.) - - # bivariate case, various correlation coefficients - rho_list = [-1., -0.5, 0., 0.5, 1.] - for rho in rho_list: - ref_mean = [0.5, 1.5] - ref_std = [0.25, 1.0] - ref_rho = np.asarray([[1.0, rho],[rho, 1.0]]) - ref_COV = np.outer(ref_std, ref_std) * ref_rho - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return pd.DataFrame(RV_reg.RV_samples).values - - assert_normal_distribution(sampling_function, ref_mean, ref_COV) - - # multi-dimensional case - dims = 5 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.arange(1,dims+1, dtype=np.float64) - ref_rho = np.ones((dims,dims))*0.3 - np.fill_diagonal(ref_rho, 1.0) - ref_COV = np.outer(ref_std,ref_std) * ref_rho - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return pd.DataFrame(RV_reg.RV_samples).values - - assert_normal_distribution(sampling_function, ref_mean, ref_COV)
- -
[docs]def test_sampling_truncated_wide_limits(): - """ - Test if the sampling method returns appropriate samples for a truncated - univariate and multivariate normal distribution when the truncation limits - are sufficiently wide to consider the result a normal distribution. - - """ - - # assign a non-symmetric, but very wide set of limits for all cases - - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - ref_var = ref_std ** 2. - lower = -1e10 - upper = 1e9 - - # truncation both ways - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits = [lower, upper])) - - def sampling_function(sample_size): - RV_reg.generate_samples(sample_size=sample_size) - - return RV_reg.RV_samples['A'] - - assert assert_normal_distribution(sampling_function, ref_mean, - ref_std ** 2.) - # upper truncation - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[None, upper])) - - def sampling_function(sample_size): - RV_reg.generate_samples(sample_size=sample_size) - - return RV_reg.RV_samples['A'] - - assert assert_normal_distribution(sampling_function, ref_mean, - ref_std ** 2.) - - # lower truncation - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[lower, None])) - - def sampling_function(sample_size): - RV_reg.generate_samples(sample_size=sample_size) - - return RV_reg.RV_samples['A'] - - assert assert_normal_distribution(sampling_function, ref_mean, - ref_std ** 2.) - - # bivariate case, various correlation coefficients - rho_list = [-1., -0.5, 0., 0.5, 1.] - lower = np.ones(2) * lower - upper = np.ones(2) * upper - for rho in rho_list: - ref_mean = [0.5, 1.5] - ref_std = [0.25, 1.0] - ref_rho = np.asarray([[1.0, rho], [rho, 1.0]]) - ref_COV = np.outer(ref_std, ref_std) * ref_rho - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV( - RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits = [lower[i], upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return pd.DataFrame(RV_reg.RV_samples).values - - assert_normal_distribution(sampling_function, ref_mean, ref_COV) - - # multi-dimensional case - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.3 - np.fill_diagonal(ref_rho, 1.0) - ref_COV = np.outer(ref_std, ref_std) * ref_rho - - lower = np.ones(dims) * lower[0] - upper = np.ones(dims) * upper[0] - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits = [lower[i], upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return pd.DataFrame(RV_reg.RV_samples).values - - assert_normal_distribution(sampling_function, ref_mean, ref_COV)
- -
[docs]def test_sampling_truncated_narrow_limits(): - """ - Test if the sampling method returns appropriate samples for a truncated - univariate and multivariate normal distribution when the truncation limits - are narrow. - - """ - - # here we focus on testing if the returned samples are between the - # pre-defined limits in all dimensions - - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - ref_var = ref_std ** 2. - lower = 0.1 - upper = 0.6 - - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[lower, upper])) - - RV_reg.generate_samples(sample_size=1000) - - samples = RV_reg.RV_samples['A'] - - sample_min = np.min(samples) - sample_max = np.max(samples) - - assert sample_min > lower - assert sample_max < upper - - assert sample_min == pytest.approx(lower, abs=0.01) - assert sample_max == pytest.approx(upper, abs=0.01) - - # multi-dimensional case - dims = 2 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.3 - np.fill_diagonal(ref_rho, 1.0) - - lower = ref_mean - ref_std * 2.5 - upper = ref_mean + ref_std * 1.5 - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits=[lower[i], upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - RV_reg.generate_samples(sample_size=1000) - - samples = pd.DataFrame(RV_reg.RV_samples).values - - sample_min = np.amin(samples, axis=0) - sample_max = np.amax(samples, axis=0) - - assert np.all(sample_min > lower) - assert np.all(sample_max < upper) - - assert_allclose(sample_min, lower, atol=0.1) - assert_allclose(sample_max, upper, atol=0.1)
- -
[docs]def test_RandomVariable_sample_distribution_mixed_normal(): - """ - Test if the distribution is sampled appropriately for a correlated mixture - of normal and lognormal variables. Note that we already tested the sampling - algorithm itself earlier, so we will not do a thorough verification of - the samples, but rather check for errors in the inputs that would - typically lead to significant mistakes in the results. - - """ - - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 1.00 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - # prepare the truncation limits - note that these are wide limits and - # barely affect the distribution - lower = (ref_mean - ref_std * 10.).tolist() - upper = ref_mean + ref_std * 10. - - # variable 1 is assumed to have lognormal distribution with no lower - # truncation - rv_mean = ref_mean.copy() - rv_mean[1] = np.exp(rv_mean[1]) - lower[1] = None - upper[1] = np.exp(upper[1]) - - dist_list = ['normal', 'lognormal', 'normal'] - - RV_reg = RandomVariableRegistry() - - for i, (mu, std, dist) in enumerate(zip(rv_mean, ref_std, dist_list)): - RV_reg.add_RV(RandomVariable(name=i, distribution=dist, - theta=[mu, std], - truncation_limits=[lower[i], - upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - RV_reg.generate_samples(sample_size=1000) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - # make sure that retrieving samples of an individual RV works as intended - assert_allclose(samples[1], RV_reg.RV_samples[1]) - - # convert the lognormal samples to log space for the checks - samples[1] = np.log(samples[1]) - - assert_allclose(np.mean(samples, axis=1), ref_mean, atol=0.01) - - ref_COV = np.outer(ref_std, ref_std) * ref_rho - assert_allclose(np.cov(samples), ref_COV, atol=0.10)
- -
[docs]def test_RandomVariable_sample_distribution_multinomial(): - """ - Test if the distribution is sampled appropriately for a multinomial - variable. Also test that getting values for an individual RV that is part - of a correlated RV_set works appropriately." - - """ - # first test with an incomplete p_ref - p_ref = [0.1, 0.3, 0.5] - dims = 3 - - RV_reg= RandomVariableRegistry() - - for i in range(dims): - RV_reg.add_RV(RandomVariable(name=i, distribution='multinomial', - theta=p_ref)) - - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], ref_rho)) - - RV_reg.generate_samples(sample_size=10000) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - p_ref[-1] = 1. - np.sum(p_ref[:-1]) - - h_bins = np.arange(len(p_ref) + 1) - 0.5 - p_test = np.histogram(samples[1], bins=h_bins, density=True)[0] - - assert_allclose(p_test, p_ref, atol=0.05) - - # also make sure that individual RV's samples are returned appropriately - p_test_RV = np.histogram(RV_reg.RV_samples[1], bins=h_bins, density=True)[0] - assert_allclose(p_test_RV, p_ref, atol=0.05) - - assert_allclose(samples[1], RV_reg.RV_samples[1]) - - # and the prescribed correlation is applied - # note that the correlation between the samples is not going to be identical - # to the correlation used to generate the underlying uniform distribution - rho_target = [[1.0, 0.383, 0.383], [0.383, 1.0, 0.383], [0.383, 0.383, 1.0]] - assert_allclose(np.corrcoef(samples), rho_target, atol=0.05) - - # finally, check the original sampling with the complete p_ref - RV_reg = RandomVariableRegistry() - - for i in range(dims): - RV_reg.add_RV(RandomVariable(name=i, distribution='multinomial', - theta=p_ref)) - - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], ref_rho)) - - RV_reg.generate_samples(sample_size=10000) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - p_test = np.histogram(samples[1], bins=h_bins, density=True)[0] - - assert_allclose(p_test, p_ref, atol=0.05)
- -# ------------------------------------------------------------------------------ -# FITTING -# ------------------------------------------------------------------------------ -
[docs]def test_fitting_baseline(): - """ - Test if the max. likelihood estimates of a (multivariate) normal - distribution are sufficiently accurate in the baseline case with no - truncation and no censoring. - - """ - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - - # generate samples - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std])) - - RV_reg.generate_samples(sample_size=100) - - samples = RV_reg.RV_samples['A'] - - # estimate the parameters of the distribution - mu, std = fit_distribution(samples, 'normal')[0][0] - - assert ref_mean == pytest.approx(mu, abs=0.01) - assert ref_std == pytest.approx(std, rel=0.05) - - # multi-dimensional case - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.5 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=100) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - # estimate the parameters of the distribution - test_theta, test_rho = fit_distribution(samples, 'normal') - - test_mu, test_std = test_theta.T - - assert_allclose(test_mu, ref_mean, atol=0.01) - assert_allclose(test_std, ref_std, rtol=0.1) - assert_allclose(test_rho, ref_rho, atol=0.3)
- -
[docs]def test_fitting_censored(): - """ - Test if the max. likelihood estimates of a multivariate normal distribution - are sufficiently accurate in cases with censored data. - - """ - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - c_lower = 0.35 - c_upper = 1.25 - sample_count = 100 - - # generate censored samples - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std])) - - RV_reg.generate_samples(sample_size=sample_count) - - samples = RV_reg.RV_samples['A'] - - # censor the samples - good_ones = np.all([samples>c_lower, samples<c_upper],axis=0) - c_samples = samples[good_ones] - c_count = sample_count - sum(good_ones) - - # estimate the parameters of the distribution - test_theta, __ = fit_distribution(c_samples, 'normal', - censored_count=c_count, - detection_limits=[c_lower, c_upper]) - - test_mu, test_std = test_theta[0] - - assert ref_mean == pytest.approx(test_mu, abs=0.05) - assert ref_std == pytest.approx(test_std, rel=0.05) - - # multi-dimensional case - - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - c_lower = ref_mean - 1.0 * ref_std - c_upper = ref_mean + 8.5 * ref_std - - c_lower[2] = -np.inf - c_upper[0] = np.inf - - sample_count = 1000 - - # generate samples - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=sample_count) - - samples = pd.DataFrame(RV_reg.RV_samples).values - - # censor the samples - good_ones = np.all([samples > c_lower, samples < c_upper], axis=0) - good_ones = np.all(good_ones, axis=1) - c_samples = samples[good_ones] - c_count = sample_count - sum(good_ones) - det_lims = np.array([c_lower, c_upper]).T - - test_theta, test_rho = fit_distribution(c_samples.T, 'normal', - censored_count=c_count, - detection_limits=det_lims) - - test_mu, test_std = test_theta.T - - assert_allclose(test_mu, ref_mean, atol=0.1) - assert_allclose(test_std , ref_std, rtol=0.25) - assert_allclose(test_rho, ref_rho, atol=0.3)
- -
[docs]def test_fitting_truncated(): - """ - Test if the max. likelihood estimates of a multivariate normal distribution - are sufficiently accurate in cases with truncation and uncensored data. - - """ - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - tr_lower = 0.35 - tr_upper = 1.25 - - # generate samples of a TMVN distribution - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[tr_lower, tr_upper])) - - RV_reg.generate_samples(sample_size=100) - - samples = RV_reg.RV_samples['A'] - - # estimate the parameters of the distribution - test_theta, __ = fit_distribution(samples, 'normal', - truncation_limits=[tr_lower, tr_upper]) - - test_mu, test_std = test_theta[0] - - assert ref_mean == pytest.approx(test_mu, abs=0.05) - assert ref_std == pytest.approx(test_std, rel=0.05) - - # multi-dimensional case - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - tr_lower = ref_mean - 0.25 * ref_std - tr_upper = ref_mean + 2.0 * ref_std - - tr_lower[2] = -np.inf - tr_upper[0] = np.inf - - # generate samples - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits=[tr_lower[i], - tr_upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=1000) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - # estimate the parameters of the distribution - tr_lims = np.array([tr_lower, tr_upper]).T - test_theta, test_rho = fit_distribution(samples, 'normal', - truncation_limits=tr_lims) - - test_mu, test_std = test_theta.T - - #print(max(abs(test_mu-ref_mean)), max(abs(test_std-ref_std))) - - assert_allclose(test_mu, ref_mean, atol=0.1) - assert_allclose(test_std, ref_std, atol=0.05) - assert_allclose(test_rho, ref_rho, atol=0.2)
- -
[docs]def test_fitting_truncated_and_censored(): - """ - Test if the max. likelihood estimates of a multivariate normal distribution - are sufficiently accurate in cases with truncation and censored data. - - """ - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - tr_lower = 0.35 - tr_upper = 2.5 - det_upper = 1.25 - det_lower = tr_lower - - # generate samples of a TMVN distribution - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[tr_lower, tr_upper])) - - RV_reg.generate_samples(sample_size=100) - - samples = RV_reg.RV_samples['A'] - - # censor the samples - good_ones = samples < det_upper - c_samples = samples[good_ones] - c_count = 100 - sum(good_ones) - - # estimate the parameters of the distribution - test_theta, __ = fit_distribution(c_samples, 'normal', - censored_count=c_count, - detection_limits=[det_lower, det_upper], - truncation_limits=[tr_lower, tr_upper]) - - test_mu, test_std = test_theta[0] - - assert ref_mean == pytest.approx(test_mu, abs=0.05) - assert ref_std == pytest.approx(test_std, rel=0.05) - - # # multi-dimensional case - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - tr_lower = ref_mean - 4.5 * ref_std - tr_upper = ref_mean + 2.5 * ref_std - tr_lower[2] = -np.inf - tr_upper[0] = np.inf - - det_lower = ref_mean - 1. * ref_std - det_lower[2] = -np.inf - det_upper = tr_upper - - # generate samples - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits=[tr_lower[i], - tr_upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=1000) - - samples = pd.DataFrame(RV_reg.RV_samples).values - - # censor the samples - good_ones = np.all([samples > det_lower, samples < det_upper], axis=0) - good_ones = np.all(good_ones, axis=1) - c_samples = samples[good_ones] - c_count = 1000 - sum(good_ones) - - # estimate the parameters of the distribution - det_lims = np.array([det_lower, det_upper]).T - tr_lims = np.array([tr_lower, tr_upper]).T - - test_theta, test_rho = fit_distribution( - c_samples.T, 'normal', censored_count=c_count, - detection_limits=det_lims, truncation_limits=tr_lims) - - test_mu, test_std = test_theta.T - - assert_allclose(test_mu, ref_mean, atol=0.1) - assert_allclose(test_std, ref_std, rtol=0.25) - assert_allclose(test_rho, ref_rho, atol=0.3)
- -
[docs]def test_fitting_lognormal(): - """ - Test if the max. likelihood estimates of a multivariate lognormal - distribution are sufficiently accurate - """ - # univariate case - # generate raw data - ref_median = 0.5 - ref_std = 0.25 - - # generate samples - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='lognormal', - theta=[ref_median, ref_std])) - - RV_reg.generate_samples(sample_size=100) - - samples = RV_reg.RV_samples['A'] - - # estimate the parameters of the distribution - median, std = fit_distribution(samples, 'lognormal')[0][0] - - assert ref_median == pytest.approx(median, abs=0.01) - assert ref_std == pytest.approx(std, rel=0.05) - - # multivariate case - # generate raw data - dims = 6 - ref_median = np.exp(np.arange(dims, dtype=np.float64)) - ref_std = np.ones(dims) * 0.5 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - RV_reg = RandomVariableRegistry() - - for i, (median, std) in enumerate(zip(ref_median, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='lognormal', - theta=[median, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=100) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - # estimate the parameters of the distribution - test_theta, test_rho = fit_distribution(samples, 'lognormal') - - test_median, test_std = test_theta.T - - assert_allclose(np.log(test_median), np.log(ref_median), atol=0.01) - assert_allclose(test_std, ref_std, rtol=0.2) - assert_allclose(test_rho, ref_rho, atol=0.3)
- - - -
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_modules/pelicun/uq.html b/docs/_modules/pelicun/uq.html deleted file mode 100644 index 93b2ecd8f..000000000 --- a/docs/_modules/pelicun/uq.html +++ /dev/null @@ -1,1537 +0,0 @@ - - - - - - - - - - pelicun.uq — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Module code »
  • - -
  • pelicun.uq
  • - - -
  • - -
  • - -
- - -
-
-
-
- -

Source code for pelicun.uq

-# -*- coding: utf-8 -*-
-#
-# Copyright (c) 2018 Leland Stanford Junior University
-# Copyright (c) 2018 The Regents of the University of California
-#
-# This file is part of pelicun.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# 1. Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# 3. Neither the name of the copyright holder nor the names of its contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-# You should have received a copy of the BSD 3-Clause License along with
-# pelicun. If not, see <http://www.opensource.org/licenses/>.
-#
-# Contributors:
-# Adam Zsarnóczay
-
-"""
-This module defines constants, classes and methods for uncertainty
-quantification in pelicun.
-
-.. rubric:: Contents
-
-.. autosummary::
-
-    mvn_orthotope_density
-    fit_distribution
-    RandomVariable
-    RandomVariableSet
-    RandomVariableRegistry
-
-
-"""
-
-from .base import *
-
-from scipy.stats import uniform, norm
-from scipy.stats import multivariate_normal as mvn
-from scipy.stats.mvn import mvndst
-from scipy.linalg import cholesky, svd
-from scipy.optimize import minimize
-
-import warnings
-
-
-
[docs]def mvn_orthotope_density(mu, COV, lower=None, upper=None): - """ - Estimate the probability density within a hyperrectangle for an MVN distr. - - Use the method of Alan Genz (1992) to estimate the probability density - of a multivariate normal distribution within an n-orthotope (i.e., - hyperrectangle) defined by its lower and upper bounds. Limits can be - relaxed in any direction by assigning infinite bounds (i.e. numpy.inf). - - Parameters - ---------- - mu: float scalar or ndarray - Mean(s) of the non-truncated distribution. - COV: float ndarray - Covariance matrix of the non-truncated distribution - lower: float vector, optional, default: None - Lower bound(s) for the truncated distributions. A scalar value can be - used for a univariate case, while a list of bounds is expected in - multivariate cases. If the distribution is non-truncated from below - in a subset of the dimensions, use either `None` or assign an infinite - value (i.e. -numpy.inf) to those dimensions. - upper: float vector, optional, default: None - Upper bound(s) for the truncated distributions. A scalar value can be - used for a univariate case, while a list of bounds is expected in - multivariate cases. If the distribution is non-truncated from above - in a subset of the dimensions, use either `None` or assign an infinite - value (i.e. numpy.inf) to those dimensions. - Returns - ------- - alpha: float - Estimate of the probability density within the hyperrectangle - eps_alpha: float - Estimate of the error in alpha. - - """ - - # process the inputs and get the number of dimensions - mu = np.atleast_1d(mu) - COV = np.atleast_2d(COV) - - if mu.shape == (): - mu = np.asarray([mu]) - COV = np.asarray([COV]) - else: - COV = np.asarray(COV) - - sig = np.sqrt(np.diag(COV)) - corr = COV / np.outer(sig, sig) - - ndim = mu.size - - if lower is None: - lower = -np.ones(ndim) * np.inf - else: - lower = np.atleast_1d(lower) - - if upper is None: - upper = np.ones(ndim) * np.inf - else: - upper = np.atleast_1d(upper) - - # replace None with np.inf - lower[np.where(lower == None)[0]] = -np.inf - lower = lower.astype(np.float64) - upper[np.where(upper == None)[0]] = np.inf - upper = upper.astype(np.float64) - - # standardize the truncation limits - lower = (lower - mu) / sig - upper = (upper - mu) / sig - - # prepare the flags for infinite bounds (these are needed for the mvndst - # function) - lowinf = np.isneginf(lower) - uppinf = np.isposinf(upper) - infin = 2.0 * np.ones(ndim) - - np.putmask(infin, lowinf, 0) - np.putmask(infin, uppinf, 1) - np.putmask(infin, lowinf * uppinf, -1) - - # prepare the correlation coefficients - if ndim == 1: - correl = 0 - else: - correl = corr[np.tril_indices(ndim, -1)] - - # estimate the density - eps_alpha, alpha, __ = mvndst(lower, upper, infin, correl) - - return alpha, eps_alpha
- - -def get_theta(params, inits, distribution): - - theta = np.zeros(inits.shape) - - for i, (params_i, inits_i) in enumerate(zip(params, inits)): - - if distribution in ['normal', 'lognormal']: - sig = np.exp(np.log(inits_i[1]) + params_i[1]) - mu = inits_i[0] + params_i[0] * sig - theta[i, 0] = mu - theta[i, 1] = sig - - return theta - - -def _get_limit_probs(limits, distribution, theta): - - if distribution in ['normal', 'lognormal']: - - a, b = limits - mu = theta[0] - sig = theta[1] - - if a is not None: - p_a = norm.cdf((a - mu) / sig) - else: - p_a = 0.0 - - if b is not None: - p_b = norm.cdf((b - mu) / sig) - else: - p_b = 1.0 - - return p_a, p_b - - -def _get_std_samples(samples, theta, tr_limits, distribution): - - ndims = samples.shape[0] - - std_samples = np.zeros(samples.shape) - - for i, (samples_i, theta_i, tr_lim_i) in enumerate( - zip(samples, theta, tr_limits)): - if distribution in ['normal', 'lognormal']: - # consider truncation if needed - p_a, p_b = _get_limit_probs(tr_lim_i, distribution, theta_i) - uni_samples = (norm.cdf(samples_i, loc=theta_i[0], - scale=theta_i[1]) - p_a) / (p_b - p_a) - std_samples[i] = norm.ppf(uni_samples, loc=0., scale=1.) - - return std_samples - - -def _get_std_corr_matrix(std_samples): - - n_dims, n_samples = std_samples.shape - - rho_hat = np.zeros((n_dims, n_dims)) - np.fill_diagonal(rho_hat, 1.0) - for dim_i in range(n_dims): - for dim_j in np.arange(dim_i + 1, n_dims): - rho_hat[dim_i, dim_j] = np.sum( - std_samples[dim_i] * std_samples[dim_j]) / n_samples - rho_hat[dim_j, dim_i] = rho_hat[dim_i, dim_j] - - # make sure rho_hat is positive semidefinite - try: - L = cholesky(rho_hat, lower=True) # if this works, we're good - - except: # otherwise, we can try to fix the matrix using SVD - - try: - U, s, V = svd(rho_hat, ) - except: - return None - - S = np.diagflat(s) - - rho_hat = U @ S @ U.T - np.fill_diagonal(rho_hat, 1.0) - - if ((np.max(rho_hat) > 1.0) or (np.min(rho_hat) < -1.0)): - return None - - return rho_hat - - -def _mvn_scale(x, rho): - - x = np.atleast_2d(x) - n_dims = x.shape[1] - - rho_0 = np.zeros((n_dims, n_dims)) - np.fill_diagonal(rho_0, 1) - a = mvn.pdf(x, mean=np.zeros(n_dims), cov=rho_0) - - b = mvn.pdf(x, mean=np.zeros(n_dims), cov=rho) - - return b / a - - -def _neg_log_likelihood(params, inits, bnd_lower, bnd_upper, samples, - distribution, tr_limits, det_limits, censored_count, - enforce_bounds=False): - - # First, check if the parameters are within the pre-defined bounds - if enforce_bounds: - if ((params > bnd_lower) & (params < bnd_upper)).all(0) == False: - # if they are not, then return a large value to discourage the - # optimization algorithm from going in that direction - return 1e10 - - # If there is nan in params, return a large value - if np.isnan(np.sum(params)): - return 1e10 - - params = np.reshape(params, inits.shape) - n_dims, n_samples = samples.shape - - theta = get_theta(params, inits, distribution) - - likelihoods = np.zeros(samples.shape) - - # calculate the marginal likelihoods - for i, (theta_i, samples_i, tr_lim_i) in enumerate( - zip(theta, samples, tr_limits)): - - # consider truncation if needed - p_a, p_b = _get_limit_probs(tr_lim_i, distribution, theta_i) - tr_alpha = p_b - p_a # this is the probability mass within the - # truncation limits - - # calculate the likelihood for each available sample - if distribution in ['normal', 'lognormal']: - likelihoods[i] = norm.pdf(samples_i, loc=theta_i[0], - scale=theta_i[1]) / tr_alpha - - # transform every sample into standard normal space and get the correlation - # matrix - std_samples = _get_std_samples(samples, theta, tr_limits, distribution) - rho_hat = _get_std_corr_matrix(std_samples) - if rho_hat is None: - return 1e10 - - # likelihoods related to censoring need to be handled together - if censored_count > 0: - - det_lower = np.zeros(n_dims) - det_upper = np.zeros(n_dims) - - for i, (theta_i, tr_lim_i, det_lim_i) in enumerate( - zip(theta, tr_limits, det_limits)): - # also prepare the standardized detection limits - p_a, p_b = _get_limit_probs(tr_lim_i, distribution, theta_i) - p_l, p_u = _get_limit_probs(det_lim_i, distribution, theta_i) - - # rescale to consider truncation - p_l, p_u = [np.min([np.max([lim, p_a]), p_b]) for lim in [p_l, p_u]] - p_l, p_u = [(lim - p_a) / (p_b - p_a) for lim in [p_l, p_u]] - - det_lower[i], det_upper[i] = norm.ppf([p_l, p_u], loc=0., scale=1.) - - # get the likelihood of censoring a sample - det_alpha, eps_alpha = mvn_orthotope_density(np.zeros(n_dims), rho_hat, - det_lower, det_upper) - - # Make sure that det_alpha is estimated with sufficient accuracy - if det_alpha <= 100. * eps_alpha: - return 1e10 - - # make sure that the likelihood is a positive number - cen_likelihood = max(1.0 - det_alpha, np.nextafter(0, 1)) - - else: - # If the data is not censored, use 1.0 for cen_likelihood to get a - # zero log-likelihood later. Note that although this is - # theoretically not correct, it does not alter the solution and - # it is numerically much more convenient than working around the - # log of zero likelihood. - cen_likelihood = 1.0 - - # flatten the likelihoods calculated in each dimension - try: - scale = _mvn_scale(std_samples.T, rho_hat) - except: - return 1e10 - likelihoods = np.prod(likelihoods, axis=0) * scale - - # Zeros are a result of limited floating point precision. Replace them - # with the smallest possible positive floating point number to - # improve convergence. - likelihoods = np.clip(likelihoods, a_min=np.nextafter(0, 1), a_max=None) - - # calculate the total negative log likelihood - NLL = -(np.sum(np.log(likelihoods)) # from samples - + censored_count * np.log(cen_likelihood)) # censoring influence - - # normalize the NLL with the sample count - NLL = NLL / samples.size - - # print(theta[0], NLL) - - return NLL - -
[docs]def fit_distribution(raw_samples, distribution, truncation_limits=[None, None], - censored_count=0, detection_limits=[None, None], - multi_fit=False, alpha_lim=1e-4): - """ - Fit a distribution to samples using maximum likelihood estimation. - - The number of dimensions of the distribution are inferred from the - shape of the sample data. Censoring is automatically considered if the - number of censored samples and the corresponding detection limits are - provided. Infinite or unspecified truncation limits lead to fitting a - non-truncated distribution in that dimension. - - Parameters - ---------- - raw_samples: float ndarray - Raw data that serves as the basis of estimation. The number of samples - equals the number of columns and each row introduces a new feature. In - other words: a list of sample lists is expected where each sample list - is a collection of samples of one variable. - distribution: {'normal', 'lognormal'} - Defines the target probability distribution type. Different types of - distributions can be mixed by providing a list rather than a single - value. Each element of the list corresponds to one of the features in - the raw_samples. - truncation_limits: float ndarray, optional, default: [None, None] - Lower and/or upper truncation limits for the specified distributions. - A two-element vector can be used for a univariate case, while two lists - of limits are expected in multivariate cases. If the distribution is - non-truncated from one side in a subset of the dimensions, use either - `None` or assign an infinite value (i.e. numpy.inf) to those dimensions. - censored_count: int, optional, default: None - The number of censored samples that are beyond the detection limits. - All samples outside the detection limits are aggregated into one set. - This works the same way in one and in multiple dimensions. Prescription - of specific censored sample counts for sub-regions of the input space - outside the detection limits is not supported. - detection_limits: float ndarray, optional, default: [None, None] - Lower and/or upper detection limits for the provided samples. A - two-element vector can be used for a univariate case, while two lists - of limits are expected in multivariate cases. If the data is not - censored from one side in a subset of the dimensions, use either `None` - or assign an infinite value (i.e. numpy.inf) to those dimensions. - multi_fit: bool, optional, default: False - If True, we attempt to fit a multivariate distribution to the samples. - Otherwise, we fit each marginal univariate distribution independently - and estimate the correlation matrix in the end based on the fitted - marginals. Using multi_fit can be advantageous with censored data and - if the correlation in the data is not Gaussian. It leads to - substantially longer calculation time and does not always produce - better results, especially when the number of dimensions is large. - alpha_lim: float, optional, default:None - Introduces a lower limit to the probability density within the - n-orthotope defined by the truncation limits. Assigning a reasonable - minimum (such as 1e-4) can be useful when the mean of the distribution - is several standard deviations from the truncation limits and the - sample size is small. Such cases without a limit often converge to - distant means with inflated variances. Besides being incorrect - estimates, those solutions only offer negligible reduction in the - negative log likelihood, while making subsequent sampling of the - truncated normal distribution very challenging. - - Returns - ------- - theta: float ndarray - Estimates of the parameters of the fitted probability distribution in - each dimension. The following parameters are returned for the supported - distributions: - normal - mean, standard deviation; - lognormal - median, log standard deviation; - Rho: float 2D ndarray, optional - In the multivariate case, returns the estimate of the correlation - matrix. - """ - samples = np.atleast_2d(raw_samples) - tr_limits = np.atleast_2d(truncation_limits) - det_limits = np.atleast_2d(detection_limits) - n_dims, n_samples = samples.shape - - if (tr_limits.shape[0] == 1) and (samples.shape[0] != 1): - tr_limits = np.tile(tr_limits[0], samples.shape[0] - ).reshape([samples.shape[0], 2]) - - if (det_limits.shape[0] == 1) and (samples.shape[0] != 1): - det_limits = np.tile(det_limits[0], samples.shape[0] - ).reshape([samples.shape[0], 2]) - - # Convert samples to log space if the distribution is lognormal - if distribution == 'lognormal': - samples = np.log(samples) - for dim in range(tr_limits.shape[0]): - for var in range(tr_limits.shape[1]): - if tr_limits[dim][var] is not None: - tr_limits[dim][var] = np.log(tr_limits[dim][var]) - for dim in range(det_limits.shape[0]): - for var in range(det_limits.shape[1]): - if det_limits[dim][var] is not None: - det_limits[dim][var] = np.log(det_limits[dim][var]) - - - # Define initial values of distribution parameters - if distribution in ['normal', 'lognormal']: - # use the first two moments for normal distribution - mu_init = np.mean(samples, axis=1) - - # replace zero standard dev with negligible standard dev - sig_init = np.std(samples, axis=1) - sig_zero_id = np.where(sig_init == 0.0)[0] - sig_init[sig_zero_id] = 1e-6 * np.abs(mu_init[sig_zero_id]) - - # prepare a vector of initial values - # Note: The actual optimization uses zeros as initial parameters to - # avoid bias from different scales. These initial values are sent to - # the likelihood function and considered in there. - inits = np.transpose([mu_init, sig_init]) - - # Define the bounds for each input (assuming standardized initials) - # These bounds help avoid unrealistic results and improve the - # convergence rate - bnd_lower = np.array([[-10.0, -5.0] for t in range(n_dims)]) - bnd_upper = np.array([[10.0, 5.0] for t in range(n_dims)]) - - bnd_lower = bnd_lower.flatten() - bnd_upper = bnd_upper.flatten() - - #inits_0 = np.copy(inits) - - # There is nothing to gain from a time-consuming optimization if.. - # the number of samples is too small - if ((n_samples < 3) or - # there are no truncation or detection limits involved - (np.all(tr_limits == None) and np.all(det_limits == None))): - - # In this case, it is typically hard to improve on the method of - # moments estimates for the parameters of the marginal distributions - theta = inits - - # Otherwise, we run the optimization that aims to find the parameters that - # maximize the likelihood of observing the samples - else: - - # First, optimize for each marginal independently - for dim in range(n_dims): - - inits_i = inits[dim:dim + 1] - - tr_limits_i = [None, None] - for lim in range(2): - if ((tr_limits[dim][lim] is None) and - (det_limits[dim][lim] is not None)): - tr_limits_i[lim] = det_limits[dim][lim] - elif det_limits[dim][lim] is not None: - tr_limits_i[lim] = np.max([tr_limits[dim][lim], - det_limits[dim][lim]]) - else: - tr_limits_i[lim] = tr_limits[dim][lim] - - out_m_i = minimize(_neg_log_likelihood, - np.zeros(inits[dim].size), - args=(inits_i, - bnd_lower[dim:dim + 1], - bnd_upper[dim:dim + 1], - samples[dim:dim + 1], - distribution, - [tr_limits_i, ], - [None, None], - 0, True,), - method='BFGS', - options=dict(maxiter=50) - ) - - out = out_m_i.x.reshape(inits_i.shape) - theta = get_theta(out, inits_i, distribution) - inits[dim] = theta[0] - - # Second, if requested, we attempt the multivariate fitting using the - # marginal results as initial parameters. - if multi_fit or (censored_count > 0): - - out_m = minimize(_neg_log_likelihood, - np.zeros(inits.size), - args=(inits, bnd_lower, bnd_upper, samples, - distribution, tr_limits, det_limits, - censored_count, True,), - method='BFGS', - options=dict(maxiter=50) - ) - - out = out_m.x.reshape(inits.shape) - theta = get_theta(out, inits, distribution) - - else: - theta = inits - - # Calculate rho in the standard normal space because we will generate new - # samples using that type of correlation (i.e., Gaussian copula) - std_samples = _get_std_samples(samples, theta, tr_limits, distribution) - rho_hat = _get_std_corr_matrix(std_samples) - if rho_hat is None: - # If there is not enough data to produce a valid correlation matrix - # estimate, we assume independence - # TODO: provide a warning for the user - rho_hat = np.zeros((n_dims, n_dims)) - np.fill_diagonal(rho_hat, 1.0) - - # Convert mean back to linear space if the distribution is lognormal - if distribution == 'lognormal': - theta_mod = theta.T.copy() - theta_mod[0] = np.exp(theta_mod[0]) - theta = theta_mod.T - - #for val in list(zip(inits_0, theta)): - # print(val) - - return theta, rho_hat
- -
[docs]class RandomVariable(object): - """ - Description - - Parameters - ---------- - name: string - A unique string that identifies the random variable. - distribution: {'normal', 'lognormal', 'multinomial', 'custom', 'empirical', - 'coupled_empirical', 'uniform'}, optional - Defines the type of probability distribution for the random variable. - theta: float scalar or ndarray, optional - Set of parameters that define the cumulative distribution function of - the variable given its distribution type. The following parameters are - expected currently for the supported distribution types: - normal - mean, standard deviation; - lognormal - median, log standard deviation; - uniform - a, b, the lower and upper bounds of the distribution; - multinomial - likelihood of each unique event (the last event's - likelihood is adjusted automatically to ensure the likelihoods sum up - to one); - custom - according to the custom expression provided; - empirical and coupled_empirical - N/A. - truncation_limits: float ndarray, optional - Defines the [a,b] truncation limits for the distribution. Use None to - assign no limit in one direction. - bounded: float ndarray, optional - Defines the [P_a, P_b] probability bounds for the distribution. Use None - to assign no lower or upper bound. - custom_expr: string, optional - Provide an expression that is a Python syntax for a custom CDF. The - controlling variable shall be "x" and the parameters shall be "p1", - "p2", etc. - anchor: RandomVariable, optional - Anchors this to another variable. If the anchor is not None, this - variable will be perfectly correlated with its anchor. Note that - the attributes of this variable and its anchor do not have to be - identical. - """ - - def __init__(self, name, distribution, theta=None, truncation_limits=None, - bounds=None, custom_expr=None, raw_samples=None, anchor=None): - - self.name = name - - if ((distribution not in ['empirical', 'coupled_empirical']) and - (theta is None)): - raise ValueError( - f"A random variable that follows a {distribution} distribution " - f"is characterized by a set of parameters (theta). The " - f"parameters need to be provided when the RV is created." - ) - - if distribution == 'multinomial': - if np.sum(theta) > 1: - raise ValueError( - f"The set of p values provided for a multinomial " - f"distribution shall sum up to less than or equal to 1.0. " - f"The provided values sum up to {np.sum(theta)}. p = " - f"{theta} ." - ) - - # save the other parameters internally - self._distribution = distribution - self._theta = theta - self._truncation_limits = truncation_limits - self._bounds = bounds - self._custom_expr = custom_expr - self._raw_samples = np.atleast_1d(raw_samples) - self._uni_samples = None - self._RV_set = None - if anchor == None: - self._anchor = self - else: - self._anchor = anchor - - @property - def distribution(self): - """ - Return the assigned probability distribution type. - """ - return self._distribution - - @property - def theta(self): - """ - Return the assigned probability distribution parameters. - """ - return self._theta - - @theta.setter - def theta(self, value): - """ - Assign an anchor to the random variable - """ - self._theta = value - - @property - def truncation_limits(self): - """ - Return the assigned truncation limits. - """ - return self._truncation_limits - - @property - def bounds(self): - """ - Return the assigned probability bounds. - """ - return self._bounds - - @property - def custom_expr(self): - """ - Return the assigned custom expression for CDF. - """ - return self._custom_expr - - @property - def RV_set(self): - """ - Return the RV_set this RV is a member of - """ - return self._RV_set - - @RV_set.setter - def RV_set(self, value): - """ - Assign an RV_set to this RV - """ - self._RV_set = value - - @property - def samples(self): - """ - Return the empirical or generated samples. - """ - return self._samples - - @property - def samples_DF(self): - """ - Return the empirical or generated samples in a pandas Series. - """ - return self._samples_DF - - @samples.setter - def samples(self, value): - """ - Assign samples to the random variable - """ - self._samples = value - self._samples_DF = pd.Series(value) - - @property - def uni_samples(self): - """ - Return the samples from the controlling uniform distribution. - """ - return self._anchor._uni_samples - - @uni_samples.setter - def uni_samples(self, value): - """ - Assign the controlling samples to the random variable - - Parameters - ---------- - value: float ndarray - An array of floating point values in the [0, 1] domain. - """ - self._uni_samples = value - - @property - def anchor(self): - """ - Return the anchor of the variable (if any). - """ - return self._anchor - - @anchor.setter - def anchor(self, value): - """ - Assign an anchor to the random variable - """ - self._anchor = value - -
[docs] def cdf(self, values): - """ - Returns the cdf at the given values - """ - result = None - - if self.distribution == 'normal': - mu, sig = self.theta - - if self.truncation_limits is not None: - a, b = self.truncation_limits - - if a is None: - a = -np.inf - if b is None: - b = np.inf - - p_a, p_b = [norm.cdf((lim - mu) / sig) for lim in [a, b]] - - # cap the values at the truncation limits - values = np.minimum(np.maximum(values, a), b) - - # get the cdf from a non-truncated normal - p_vals = norm.cdf(values, loc=mu, scale=sig) - - # adjust for truncation - result = (p_vals - p_a) / (p_b - p_a) - - else: - result = norm.cdf(values, loc=mu, scale=sig) - - elif self.distribution == 'lognormal': - theta, beta = self.theta - - if self.truncation_limits is not None: - a, b = self.truncation_limits - - if a is None: - a = np.nextafter(0, 1) - if b is None: - b = np.inf - - p_a, p_b = [norm.cdf((np.log(lim) - np.log(theta)) / beta) - for lim in [a, b]] - - # cap the values at the truncation limits - values = np.minimum(np.maximum(values, a), b) - - # get the cdf from a non-truncated lognormal - p_vals = norm.cdf(np.log(values), loc=np.log(theta), scale=beta) - - # adjust for truncation - result = (p_vals - p_a) / (p_b - p_a) - - else: - values = np.maximum(values, np.nextafter(0, 1)) - - result = norm.cdf(np.log(values), loc=np.log(theta), scale=beta) - - elif self.distribution == 'uniform': - a, b = self.theta - - if a is None: - a = -np.inf - if b is None: - b = np.inf - - if self.truncation_limits is not None: - a, b = self.truncation_limits - - result = uniform.cdf(values, loc=a, scale=b-a) - - return result
- - -
[docs] def inverse_transform(self, values): - """ - Uses inverse probability integral transformation on the provided values. - """ - result = None - - if self.distribution == 'normal': - mu, sig = self.theta - - if self.truncation_limits is not None: - a, b = self.truncation_limits - - if a is None: - a = -np.inf - if b is None: - b = np.inf - - p_a, p_b = [norm.cdf((lim-mu)/sig) for lim in [a, b]] - - if p_b - p_a == 0: - raise ValueError( - "The probability mass within the truncation limits is " - "too small and the truncated distribution cannot be " - "sampled with sufficiently high accuracy. This is most " - "probably due to incorrect truncation limits set for " - "the distribution." - ) - - result = norm.ppf(values * (p_b - p_a) + p_a, - loc=mu, scale=sig) - - else: - result = norm.ppf(values, loc=mu, scale=sig) - - elif self.distribution == 'lognormal': - theta, beta = self.theta - - if self.truncation_limits is not None: - a, b = self.truncation_limits - - if a is None: - a = np.nextafter(0, 1) - else: - a = np.maximum(np.nextafter(0, 1), a) - - if b is None: - b = np.inf - - p_a, p_b = [norm.cdf((np.log(lim) - np.log(theta)) / beta) - for lim in [a, b]] - - result = np.exp( - norm.ppf(values * (p_b - p_a) + p_a, - loc=np.log(theta), scale=beta)) - - else: - result = np.exp(norm.ppf(values, loc=np.log(theta), scale=beta)) - - elif self.distribution == 'uniform': - a, b = self.theta - - if a is None: - a = -np.inf - if b is None: - b = np.inf - - if self.truncation_limits is not None: - a, b = self.truncation_limits - - result = uniform.ppf(values, loc=a, scale=b-a) - - elif self.distribution == 'empirical': - - s_ids = (values * len(self._raw_samples)).astype(int) - result = self._raw_samples[s_ids] - - elif self.distribution == 'coupled_empirical': - - raw_sample_count = len(self._raw_samples) - new_sample_count = len(values) - new_samples = np.tile(self._raw_samples, - int(new_sample_count/raw_sample_count)+1) - result = new_samples[:new_sample_count] - - elif self.distribution == 'multinomial': - - p_cum = np.cumsum(self.theta)[:-1] - - samples = values - - for i, p_i in enumerate(p_cum): - samples[samples < p_i] = 10 + i - samples[samples <= 1.0] = 10 + len(p_cum) - - result = samples - 10 - - return result
- -
[docs] def inverse_transform_sampling(self): - """ - Creates samples using inverse probability integral transformation. - """ - - self.samples = self.inverse_transform(self.uni_samples)
- -
[docs]class RandomVariableSet(object): - """ - Description - - Parameters - ---------- - name: string - A unique string that identifies the set of random variables. - RV_list: list of RandomVariable - Defines the random variables in the set - Rho: float 2D ndarray - Defines the correlation matrix that describes the correlation between - the random variables in the set. Currently, only the Gaussian copula - is supported. - """ - - def __init__(self, name, RV_list, Rho): - - self.name = name - - if len(RV_list) > 1: - - # put the RVs in a dictionary for more efficient access - reorder = np.argsort([RV.name for RV in RV_list]) - self._variables = dict([(RV_list[i].name, RV_list[i]) for i in reorder]) - - # reorder the entries in the correlation matrix to correspond to the - # sorted list of RVs - self._Rho = np.asarray(Rho[(reorder)].T[(reorder)].T) - - else: # if there is only one variable (for testing, probably) - self._variables = dict([(rv.name, rv) for rv in RV_list]) - self._Rho = np.asarray(Rho) - - # assign this RV_set to the variables - for __, var in self._variables.items(): - var.RV_set = self - - @property - def RV(self): - """ - Return the random variable(s) assigned to the set - """ - return self._variables - - @property - def size(self): - """ - Return the size (i.e., number of variables in the) RV set - """ - return len(self._variables) - - @property - def samples(self): - """ - Return the samples of the variables in the set - """ - return dict([(name, rv.samples) for name, rv - in self._variables.items()]) - -
[docs] def Rho(self, var_subset=None): - """ - Return the (subset of the) correlation matrix. - """ - if var_subset is None: - return self._Rho - else: - var_ids = [list(self._variables.keys()).index(var_i) - for var_i in var_subset] - return (self._Rho[var_ids]).T[var_ids]
- -
[docs] def apply_correlation(self): - """ - Apply correlation to n dimensional uniform samples. - - Currently, correlation is applied using a Gaussian copula. First, we - try using Cholesky transformation. If the correlation matrix is not - positive semidefinite and Cholesky fails, use SVD to apply the - correlations while preserving as much as possible from the correlation - matrix. - """ - - U_RV = np.array([RV.uni_samples for RV_name, RV in self.RV.items()]) - - # First try doing the Cholesky transformation - try: - N_RV = norm.ppf(U_RV) - - L = cholesky(self._Rho, lower=True) - - NC_RV = L @ N_RV - - UC_RV = norm.cdf(NC_RV) - - except: - - # if the Cholesky doesn't work, we need to use the more - # time-consuming but more robust approach based on SVD - N_RV = norm.ppf(U_RV) - - U, s, __ = svd(self._Rho, ) - S = np.diagflat(np.sqrt(s)) - - NC_RV = (N_RV.T @ S @ U.T).T - - UC_RV = norm.cdf(NC_RV) - - for (RV_name, RV), uc_RV in zip(self.RV.items(), UC_RV): - RV.uni_samples = uc_RV
- -
[docs] def orthotope_density(self, lower=None, upper=None, var_subset=None): - """ - Estimate the probability density within an orthotope for the RV set. - - Use the mvn_orthotope_density function in this module for the - calculation. The distribution of individual RVs is not limited to the - normal family. The provided limits are converted to the standard normal - space that is the basis of all RVs in pelicun. Truncation limits and - correlation (using Gaussian copula) are automatically taken into - consideration. - - Parameters - ---------- - lower: float ndarray, optional, default: None - Lower bound(s) of the orthotope. A scalar value can be used for a - univariate RV; a list of bounds is expected in multivariate cases. - If the orthotope is not bounded from below in a dimension, use - 'None' to that dimension. - upper: float ndarray, optional, default: None - Upper bound(s) of the orthotope. A scalar value can be used for a - univariate RV; a list of bounds is expected in multivariate cases. - If the orthotope is not bounded from above in a dimension, use - 'None' to that dimension. - var_subset: list of strings, optional, default: None - If provided, allows for selecting only a subset of the variables in - the RV_set for the density calculation. - - Returns - ------- - alpha: float - Estimate of the probability density within the orthotope. - eps_alpha: float - Estimate of the error in alpha. - - """ - - if lower is not None: - target_shape = lower.shape - elif upper is not None: - target_shape = upper.shape - else: - return 1.0 - - lower_std = np.full(target_shape, None) - upper_std = np.full(target_shape, None) - - # collect the variables involved - if var_subset is None: - vars = list(self._variables.keys()) - else: - vars = var_subset - - # first, convert limits to standard normal values - for var_i, var_name in enumerate(vars): - - var = self._variables[var_name] - - if (lower is not None) and (lower[var_i] is not None): - lower_std[var_i] = norm.ppf(var.cdf(lower[var_i]), loc=0, scale=1) - - if (upper is not None) and (upper[var_i] is not None): - upper_std[var_i] = norm.ppf(var.cdf(upper[var_i]), loc=0, scale=1) - - # then calculate the orthotope results in std normal space - lower_std = lower_std.T - upper_std = upper_std.T - - OD = [mvn_orthotope_density(mu=np.zeros(len(vars)), - COV=self.Rho(var_subset), - lower=l_i, upper=u_i)[0] - for l_i, u_i in zip(lower_std, upper_std)] - - return np.asarray(OD)
- -
[docs]class RandomVariableRegistry(object): - """ - Description - - Parameters - ---------- - - """ - - def __init__(self): - - self._variables = {} - self._sets = {} - - @property - def RV(self): - """ - Return all random variable(s) in the registry - """ - return self._variables - -
[docs] def RVs(self, keys): - """ - Return a subset of the random variables in the registry - """ - return {name:self._variables[name] for name in keys}
- -
[docs] def add_RV(self, RV): - """ - Add a new random variable to the registry. - """ - self._variables.update({RV.name: RV})
- - @property - def RV_set(self): - """ - Return the random variable set(s) in the registry. - """ - return self._sets - -
[docs] def add_RV_set(self, RV_set): - """ - Add a new set of random variables to the registry - """ - self._sets.update({RV_set.name: RV_set})
- - @property - def RV_samples(self): - """ - Return the samples for every random variable in the registry - """ - return dict([(name, rv.samples) for name,rv in self.RV.items()]) - - -
[docs] def generate_samples(self, sample_size, method='LHS_midpoint', seed=None): - """ - Generates samples for all variables in the registry. - - Parameters - ---------- - - sample_size: int - The number of samples requested per variable. - method: {'random', 'LHS', 'LHS_midpoint'}, optional - The sample generation method to use. 'random' stands for - conventional random sampling; 'LHS' is Latin HyperCube Sampling - with random sample location within each bin of the hypercube; - 'LHS_midpoint' is like LHS, but the samples are assigned to the - midpoints of the hypercube bins. - seed: int, optional - Random seed used for sampling. - """ - # Initialize the random number generator - rng = np.random.default_rng(seed) - - # Generate a dictionary with IDs of the free (non-anchored) variables - RV_list = [RV_name for RV_name, RV in self.RV.items() if - RV.anchor == RV] - RV_ID = dict([(RV_name, ID) for ID, RV_name in enumerate(RV_list)]) - RV_count = len(RV_ID) - - # Generate controlling samples from a uniform distribution for free RVs - if 'LHS' in method: - bin_low = np.array([rng.permutation(sample_size) - for i in range(RV_count)]) - - if method == 'LHS_midpoint': - U_RV = np.ones([RV_count, sample_size]) * 0.5 - U_RV = (bin_low + U_RV) / sample_size - - elif method == 'LHS': - U_RV = rng.random(size=[RV_count, sample_size]) - U_RV = (bin_low + U_RV) / sample_size - - elif method == 'random': - U_RV = rng.random(size=[RV_count, sample_size]) - - # Assign the controlling samples to the RVs - for RV_name, RV_id in RV_ID.items(): - self.RV[RV_name].uni_samples = U_RV[RV_id] - - # Apply correlations for the pre-defined RV sets - for RV_set_name, RV_set in self.RV_set.items(): - # prepare the correlated uniform distribution for the set - RV_set.apply_correlation() - - # Convert from uniform to the target distribution for every RV - for RV_name, RV in self.RV.items(): - RV.inverse_transform_sampling()
-
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_sources/common/developer_manual/API/pelicun/API.rst.txt b/docs/_sources/common/developer_manual/API/pelicun/API.rst.txt deleted file mode 100644 index 589e5df91..000000000 --- a/docs/_sources/common/developer_manual/API/pelicun/API.rst.txt +++ /dev/null @@ -1,24 +0,0 @@ -.. _lbl_API: - -================= -API Documentation -================= - -.. automodule:: pelicun - :members: - :no-undoc-members: - :show-inheritance: - -Modules -------- - -.. toctree:: - :maxdepth: 1 - - auto - base - control - db - file_io - model - uq \ No newline at end of file diff --git a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_auto.rst.txt b/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_auto.rst.txt deleted file mode 100644 index 7b5338958..000000000 --- a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_auto.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.auto module -====================== - -.. automodule:: pelicun.auto - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_base.rst.txt b/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_base.rst.txt deleted file mode 100644 index cf17058fd..000000000 --- a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_base.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -pelicun.base module -==================== - -.. automodule:: pelicun.base - :members: - :no-undoc-members: - :show-inheritance: - diff --git a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_control.rst.txt b/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_control.rst.txt deleted file mode 100644 index 0dced716f..000000000 --- a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_control.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.control module -====================== - -.. automodule:: pelicun.control - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_db.rst.txt b/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_db.rst.txt deleted file mode 100644 index c2c563e8b..000000000 --- a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_db.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.db module -====================== - -.. automodule:: pelicun.db - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_file_io.rst.txt b/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_file_io.rst.txt deleted file mode 100644 index ec6275285..000000000 --- a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_file_io.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.file_io module -====================== - -.. automodule:: pelicun.file_io - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_model.rst.txt b/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_model.rst.txt deleted file mode 100644 index 8bab7dbcb..000000000 --- a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_model.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -pelicun.model module -==================== - -.. automodule:: pelicun.model - :members: - :no-undoc-members: - :show-inheritance: - diff --git a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_uq.rst.txt b/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_uq.rst.txt deleted file mode 100644 index 30b64d04a..000000000 --- a/docs/_sources/common/developer_manual/API/pelicun/API_pelicun_uq.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -pelicun.uq module -==================== - -.. automodule:: pelicun.uq - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/developer_manual/architecture/pelicun/architecture.rst.txt b/docs/_sources/common/developer_manual/architecture/pelicun/architecture.rst.txt deleted file mode 100644 index a22b67644..000000000 --- a/docs/_sources/common/developer_manual/architecture/pelicun/architecture.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lblArchitecture: - -************* -Architecture -************* - -Architecture text... \ No newline at end of file diff --git a/docs/_sources/common/developer_manual/coding_style/pelicun/coding_style.rst.txt b/docs/_sources/common/developer_manual/coding_style/pelicun/coding_style.rst.txt deleted file mode 100644 index 9612bb5ae..000000000 --- a/docs/_sources/common/developer_manual/coding_style/pelicun/coding_style.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lblCodingStyle: - -************ -Coding Style -************ - -pelicun is written in Python. SimCenter programmers strive to follow the widely used `PEP 8 Style Guide `_ and we encourage those who would like to contribute to pelicun to follow those guidelines when writing their scripts. \ No newline at end of file diff --git a/docs/_sources/common/developer_manual/examples/pelicun/examples.rst.txt b/docs/_sources/common/developer_manual/examples/pelicun/examples.rst.txt deleted file mode 100644 index 2e718be50..000000000 --- a/docs/_sources/common/developer_manual/examples/pelicun/examples.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbldevExamples: - -******** -Examples -******** - -Example text diff --git a/docs/_sources/common/developer_manual/how_to_extend/pelicun/how_to_extend.rst.txt b/docs/_sources/common/developer_manual/how_to_extend/pelicun/how_to_extend.rst.txt deleted file mode 100644 index ee287df7f..000000000 --- a/docs/_sources/common/developer_manual/how_to_extend/pelicun/how_to_extend.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -.. _lbl_how_to_extend: - -How to Extend -============= - -How to extend text... \ No newline at end of file diff --git a/docs/_sources/common/developer_manual/verification/pelicun/verification.rst.txt b/docs/_sources/common/developer_manual/verification/pelicun/verification.rst.txt deleted file mode 100644 index affc1fad1..000000000 --- a/docs/_sources/common/developer_manual/verification/pelicun/verification.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lblVerification: - -************ -Verification -************ - -Verification text... \ No newline at end of file diff --git a/docs/_sources/common/front-matter/abbreviations.rst.txt b/docs/_sources/common/front-matter/abbreviations.rst.txt deleted file mode 100644 index 748b9dd83..000000000 --- a/docs/_sources/common/front-matter/abbreviations.rst.txt +++ /dev/null @@ -1,19 +0,0 @@ -.. _lblAbbreviations: - -************* -Abbreviations -************* - -The following abbreviations may be found throughout this document: - -:BIM: Building Information Model -:DL: Damage and Loss -:EDP: Engineering Demand Parameter -:GM: Ground Motion (of earthquake hazard) -:IM: Intensity Measure (of hazard event) -:SAM: Structural Analysis Model (i. e. finite element model) -:SIM: Simulation -:UQ: Uncertainty Quantification - - - diff --git a/docs/_sources/common/front-matter/ack.rst.txt b/docs/_sources/common/front-matter/ack.rst.txt deleted file mode 100644 index 494649618..000000000 --- a/docs/_sources/common/front-matter/ack.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lblAcknowledgements: - -*************** -Acknowledgments -*************** - -This material is based upon work supported by the National Science Foundation under Grant No. 1612843. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation. diff --git a/docs/_sources/common/front-matter/glossary.rst.txt b/docs/_sources/common/front-matter/glossary.rst.txt deleted file mode 100644 index 18f1d0008..000000000 --- a/docs/_sources/common/front-matter/glossary.rst.txt +++ /dev/null @@ -1,24 +0,0 @@ -.. _lblGlossary: - -*************** -Glossary -*************** - -The following terms may be found throughout this document: - -.. glossary:: - - Workflow - The automation of a business process, in whole or part, during which documents, information or tasks are passed from one participant to another for action, according to a set of procedural rules.” [Workflow Management Coalition]. - - Application - A software application performs operations on data residing in a computer for a user or another program; it can be self contained, typically termed a program, or part of a group of programs. - - Scientific Workflow - A sequence of steps which propagate input data through a series of applications to produce output files. It is a loosely coupled application performing workflows in which each of the coordinated tasks is performed using an individual application. Each of the individual application taking some data inputs and producing data outputs, which are then consumed by subsequent tasks according to the workflow definition. They are termed scientific because they are typically used by scientists to process, manage, and visualize ever increasing ever increasing amounts of data applied to "scientific" problems. - - Scientific Workflow System - An application or applications to aid a user to set-up, schedule, run, and monitor a user defined scientific workflow. - - Software Framework - A software framework defines a set of component interfaces and provides a set of implementations in code of these interfaces which allows developers to build applications for the domain for which the framework has been designed. For example, a C++ framework will provide a set of abstract classes that define interfaces, and a set of concrete classes that implement the interfaces which will allow developers to quickly build and release applications using the concrete classes. Frameworks allow developers to extend the functionality of the applications by introducing their own components that meet the component interface. diff --git a/docs/_sources/common/front-matter/license.rst.txt b/docs/_sources/common/front-matter/license.rst.txt deleted file mode 100644 index 3a3887325..000000000 --- a/docs/_sources/common/front-matter/license.rst.txt +++ /dev/null @@ -1,9 +0,0 @@ -.. _lblLicense: - -********************* -Copyright and License -********************* - -The |app| is copyright "The Regents of the University of California" and is licensed under the following BSD license: - -.. literalinclude:: LICENSE diff --git a/docs/_sources/common/front-matter/pelAck.rst.txt b/docs/_sources/common/front-matter/pelAck.rst.txt deleted file mode 100644 index 3af24d011..000000000 --- a/docs/_sources/common/front-matter/pelAck.rst.txt +++ /dev/null @@ -1,39 +0,0 @@ -.. _lbl_pelAcknowledgements: - -*************** -Acknowledgments -*************** - ---------------------------- -National Science Foundation ---------------------------- - -This material is based upon work supported by the National Science Foundation under Grant No. 1612843. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation. - ------------- -Contributors ------------- - -The developers are grateful to the researchers and experts listed below for their insights and suggestions that contributed to the development of the PELICUN framework and the |full tool name|. - -**Jack W. Baker** | Stanford University - -**Tracy Becker** | University of California Berkeley - -**Gregory G. Deierlein** | Stanford University - -**Anne Kiremidjian** | Stanford University - -**Pouria Kourehpaz** | University of British Columbia - -**Carlos Molina Hutt** | University of British Columbia - -**Vesna Terzic** | California State University Long Beach - -**Paola Vargas** | University of Michigan - -**David P. Welch** | Stanford University - -**Major Zeng** | Stanford University - -**Joanna J. Zou** | Stanford University diff --git a/docs/_sources/common/front-matter/pelicunAck.rst.txt b/docs/_sources/common/front-matter/pelicunAck.rst.txt deleted file mode 100644 index 3af24d011..000000000 --- a/docs/_sources/common/front-matter/pelicunAck.rst.txt +++ /dev/null @@ -1,39 +0,0 @@ -.. _lbl_pelAcknowledgements: - -*************** -Acknowledgments -*************** - ---------------------------- -National Science Foundation ---------------------------- - -This material is based upon work supported by the National Science Foundation under Grant No. 1612843. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation. - ------------- -Contributors ------------- - -The developers are grateful to the researchers and experts listed below for their insights and suggestions that contributed to the development of the PELICUN framework and the |full tool name|. - -**Jack W. Baker** | Stanford University - -**Tracy Becker** | University of California Berkeley - -**Gregory G. Deierlein** | Stanford University - -**Anne Kiremidjian** | Stanford University - -**Pouria Kourehpaz** | University of British Columbia - -**Carlos Molina Hutt** | University of British Columbia - -**Vesna Terzic** | California State University Long Beach - -**Paola Vargas** | University of Michigan - -**David P. Welch** | Stanford University - -**Major Zeng** | Stanford University - -**Joanna J. Zou** | Stanford University diff --git a/docs/_sources/common/reqments/blah.rst.txt b/docs/_sources/common/reqments/blah.rst.txt deleted file mode 100644 index 89f73f0cd..000000000 --- a/docs/_sources/common/reqments/blah.rst.txt +++ /dev/null @@ -1,5 +0,0 @@ -**** -BLAH -**** - -section blah diff --git a/docs/_sources/common/reqments/indexMaster.rst.txt b/docs/_sources/common/reqments/indexMaster.rst.txt deleted file mode 100644 index 373a55f05..000000000 --- a/docs/_sources/common/reqments/indexMaster.rst.txt +++ /dev/null @@ -1,118 +0,0 @@ -################################ -Requirements Traceability Matrix -################################ - -++++++++++++ -Introduction -++++++++++++ - -The SimCenter has relied on community input to drive application and educational activities. We track these inputs as requirements in our Requirements Traceability Matrix (RTM). This is a living document, which is updated at least yearly. In this document is listed the general requirements for each tool and for each tool there is also listed the requirements for each component that is used to build up the tool. The components are as shown in the figure below, for example EE-UQ has components of Cloud (CLD), Reliability (UQR), Sensitivity (UQS), Sampling (UQF), Modelling (MOD), Earthquake Loading (EL), and Analysis (ANA). - -.. _figRTM: - -.. figure:: figures/RTM.png - :align: center - :figclass: align-center - - Application & Component Abbreviations for RTM - -Each requirement in the RTM has the following entry fields: - - #. A unique identifier, that is a combination of an abbreviation of tool or component name, plus one or more numbers; the sequence of numbers indicating a hierarchy in the requirements. - - #. A brief description of the requirement. - - #. A source for the requirement indicating were the requirement originated. That can be one of three: - - #. GC: Grand challenges in hazard engineering are the problems, barriers, and bottlenecks that hinder the ideal of a nation resilient from the effects of natural hazards. The vision documents referenced in the solicitation ([NSTC2006]_, [NSB2007]_, [NEHRP2008]_, [Fenves2011]_, [NIST2014]_]) outline the grand challenges for wind and earthquake hazards. These documents all present a list of research and educational advances needed that can contribute knowledge and innovation to overcome the grand challenges. The advances summarized in the vision documents were identified through specially formed committees and workshops comprising researchers and practicing engineers. They identified both the grand challenges faced and also identified what was needed to address these challenges. The software needs identified in these reports that are applicable to research in natural hazards as permitted under the NSF NHERI program were identified in these reports. Those tasks that the NHERI SimCenter identified as pertaining to aiding NHERI researchers perform their research and those which would aid practicing engineers utilize this research in their work are identified here. - - #. SP: From the senior personnel on the SimCenter project. The vision documents outline general needs without going into the specifics. From these general needs the senior personnel on the project identified specific requirements that would provide basic functionality to allow research. - - #. UF: SimCenter workshops, boot camps and direct user feedback. As the SimCenter develops and releases tools, feedback from researchers using these tools is obtained at the tool training workshops, programmer boot-camps, in one-on-one discussions, via direct email, and through online user feedback surveys. For the feedback related to what additional functionality to include, entries are added to the RTM. For other feedback, related to simple tasks related to operation of tool and UI, entries are placed in our Jira system. - - #. A designation determined by the management group indicating the importance of the requirement, which again has 3 possible values: - #. M - Mandatory: This requirement must be satisfied - #. D - Desirable: It would be desirable to implement the functionality as it would aid research. If time and resources permit it should be. - #. P - Possible: Such an activity is possible within the SimCenter Framework. SimCenter could work to include it or work with NHERI researchers to do so. - - #. A column indicating whether the requirement has been implemented and available to users. - - #. A column indicating which examples are provided that can be used to test the features. - - -The software requirements are many. For ease of presentation they are broken into three groups: 1) Building Scale Applications, 2) Regional Scale Applications, and 3) Education and Outreach Activities. - - -+++++++++++++++++++++++++++ -Building Scale Applications -+++++++++++++++++++++++++++ - -Applications to allow researchers to improve on methods related to determining on the response assessment and performance based design of individual buildings subject to the impact of a natural hazard. For building scale simulations, the requirements are broken down by SimCenter application. There are a number of applications under development for each of the hazards. Many of the requirements related to UQ and nonlinear analysis are repeated amongst the different applications under the assumption that if they are beneficial to engineers dealing with one hazard, they will be beneficial to engineers dealing with other hazards. - -.. toctree-filt:: - :caption: Building Scale - :maxdepth: 1 - :numbered: 4 - - QUOFEM - WE-UQ - EE-UQ - HydroUQ - PBER - - -+++++++++++++++++++++++++++ -Regional Scale Applications -+++++++++++++++++++++++++++ - -For regional scale, the requirements are broken down into four classes. AI related requirements in **BRAILS**, damage and loss prediction in **pelicun**, backend workflow requirements in **rWhale**, and front end user interface requirements in **R2D**. - -.. toctree-filt:: - :caption: Regional Scale - :maxdepth: 1 - :numbered: 4 - - R2D - BRAILS - pelicun - testbeds - -++++++++++++++++ -All Requirements -++++++++++++++++ - -.. toctree-filt:: - :caption: All Rquirements - :maxdepth: 1 - :numbered: 4 - - All-Requirements - - -.. toctree:: - :caption: Gallery - - ../user_manual/examples/desktop/gallery - - -Contact -======= -Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu - -References -========== - -.. [Fenves2011] - Fenves, G. L., Poland, C. D., Crewe, A. J., Eguchi, R., T., Hajjar, J. F., Lynch, J. P., and Nakashima, M. (2011). Grand Challenges in Earthquake Engineering, National Research Council, National Academies Press, Washington, D.C., 90 pp. - -.. [NEHRP2008] - Strategic Plan for the National Earthquake Hazards Reduction Program, Fiscal Years 2009-2013, National Earthquake Hazards Reduction Program. http://www.nehrp.gov/pdf/strategic_plan_2008.pdf. - -.. [NIST2014] Measurement Science R&D Roadmap for Windstorm and Coastal Inundation Impact Reduction -NIST GCR 14-973-13 http://www.nist.gov/customcf/get_pdf.cfm?pub_id=915541. - -.. [NRC2011] National Earthquake Resilience: Research, Implementation, and Outreach.National Research Council. Washington, DC. The National Academies Press, https://www.nap.edu/catalog/13092/national-earthquake-resilience-research-implementation-and-outreach - -.. [NSB2007] Hurricane Warning-The Critical Need for a National Hurricane Research Initiative. National Science Board. https://www.nsf.gov/nsb/publications/landing/nsb06115.jsp?org=NSF. - -.. [NSTC2006] Windstorm Impact Reduction Implementation Plan, National Science and Technology Council. https://www.preventionweb.net/publications/view/1559 diff --git a/docs/_sources/common/reqments/indexShort.rst.txt b/docs/_sources/common/reqments/indexShort.rst.txt deleted file mode 100644 index 3606c5003..000000000 --- a/docs/_sources/common/reqments/indexShort.rst.txt +++ /dev/null @@ -1,44 +0,0 @@ -################################ -Requirements Traceability Matrix -################################ - - -++++++++++++++++ -All Requirements -++++++++++++++++ - -.. toctree-filt:: - :caption: All Rquirements - :maxdepth: 1 - :numbered: 4 - - All-Requirements - - -.. toctree:: - :caption: Gallery - - ../user_manual/examples/desktop/gallery - - -Contact -======= -Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu - -References -========== - -.. [Fenves2011] - Fenves, G. L., Poland, C. D., Crewe, A. J., Eguchi, R., T., Hajjar, J. F., Lynch, J. P., and Nakashima, M. (2011). Grand Challenges in Earthquake Engineering, National Research Council, National Academies Press, Washington, D.C., 90 pp. - -.. [NEHRP2008] - Strategic Plan for the National Earthquake Hazards Reduction Program, Fiscal Years 2009-2013, National Earthquake Hazards Reduction Program. http://www.nehrp.gov/pdf/strategic_plan_2008.pdf. - -.. [NIST2014] Measurement Science R&D Roadmap for Windstorm and Coastal Inundation Impact Reduction -NIST GCR 14-973-13 http://www.nist.gov/customcf/get_pdf.cfm?pub_id=915541. - -.. [NRC2011] National Earthquake Resilience: Research, Implementation, and Outreach.National Research Council. Washington, DC. The National Academies Press, https://www.nap.edu/catalog/13092/national-earthquake-resilience-research-implementation-and-outreach - -.. [NSB2007] Hurricane Warning-The Critical Need for a National Hurricane Research Initiative. National Science Board. https://www.nsf.gov/nsb/publications/landing/nsb06115.jsp?org=NSF. - -.. [NSTC2006] Windstorm Impact Reduction Implementation Plan, National Science and Technology Council. https://www.preventionweb.net/publications/view/1559 diff --git a/docs/_sources/common/reqments/key.rst.txt b/docs/_sources/common/reqments/key.rst.txt deleted file mode 100644 index 754deeffe..000000000 --- a/docs/_sources/common/reqments/key.rst.txt +++ /dev/null @@ -1,4 +0,0 @@ -| key: -| Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback -| Priority: M=Mandatory, D=Desirable, P=Possible Future -| Status: Implements, InProgress and Blank (i.e. not started) diff --git a/docs/_sources/common/reqments/pelicun.rst.txt b/docs/_sources/common/reqments/pelicun.rst.txt deleted file mode 100644 index e409aaede..000000000 --- a/docs/_sources/common/reqments/pelicun.rst.txt +++ /dev/null @@ -1,43 +0,0 @@ - -.. _PELICUN_Requirements: - -.. raw:: latex - - \clearpage - -Pelicun Requirements -==================== - -.. only:: requirements - - **pelicun** is a framework for calculating damage and loss to an assest associated with an event. The requirements are related to sections 1.3.6 of the SimCenter WBS. - -.. only:: pelicun - - .. _lblRequirements: - - The following table outlines the features that are currently available in pelicun and the requirements that will drive future development. We present these requirements to inform the community about our plans. We welcome suggestions for useful features that are missing from the list below. Go to Bugs & Feature Requests (:numref:lblBugs) to let us know about additional features you would like to see. - - The original set of requirements came from grand challenge reports (**GC**). These were broken into smaller sets of deliverable features by senior faculty associated with the project (**SP**). Additional requirements have come from users through the User Forum, (**UF**). See section :ref:`features` if you have additional features you would like to see. - - The priority column provides information about the relative importance of the features: **M** - mandatory, **D** - desirable, **O** - optional, **P** - possible. - -General -------- - -.. csv-table:: Requirements - General - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 10, 60, 10, 10, 10 - :file: requirements_pelicun_general.csv - -.. include:: key.rst - -Databases & Files ------------------ - -.. csv-table:: Requirements - Databases & Files - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 10, 60, 10, 10, 10 - :file: requirements_pelicun_db.csv - -.. include:: key.rst diff --git a/docs/_sources/common/reqments/reqPelicun.rst.txt b/docs/_sources/common/reqments/reqPelicun.rst.txt deleted file mode 100644 index 8a76cd2ef..000000000 --- a/docs/_sources/common/reqments/reqPelicun.rst.txt +++ /dev/null @@ -1,43 +0,0 @@ - -.. _requirements: - -.. raw:: latex - - \clearpage - -Requirements -============ - -.. only:: requirements - - **pelicun** is a framework for calculating damage and loss to an assest associated with an event. The requirements are related to sections 1.3.6 of the SimCenter WBS. - -.. only:: pelicun - - .. _lblRequirements: - - The following table outlines the features that are currently available in pelicun and the requirements that will drive future development. We present these requirements to inform the community about our plans. We welcome suggestions for useful features that are missing from the list below. Go to Bugs & Feature Requests (:numref:lblBugs) to let us know about additional features you would like to see. - - The original set of requirements came from grand challenge reports (**GC**). These were broken into smaller sets of deliverable features by senior faculty associated with the project (**SP**). Additional requirements have come from users through the User Forum, (**UF**). See section :ref:`features` if you have additional features you would like to see. - - The priority column provides information about the relative importance of the features: **M** - mandatory, **D** - desirable, **O** - optional, **P** - possible. - -General -------- - -.. csv-table:: Requirements - General - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 10, 60, 10, 10, 10 - :file: requirements_pelicun_general.csv - -.. include:: key.rst - -Databases & Files ------------------ - -.. csv-table:: Requirements - Databases & Files - :header: "#", "Description", "Source", "Priority", "Version" - :widths: 10, 60, 10, 10, 10 - :file: requirements_pelicun_db.csv - -.. include:: key.rst diff --git a/docs/_sources/common/reqments/reqQUOFEM.rst.txt b/docs/_sources/common/reqments/reqQUOFEM.rst.txt deleted file mode 100644 index d7361edbf..000000000 --- a/docs/_sources/common/reqments/reqQUOFEM.rst.txt +++ /dev/null @@ -1,51 +0,0 @@ -.. _lblRequirements: - -************ -Requirements -************ - -The purpose of presenting these requirements is to inform the community on the present capabilities of the |app| and features that could be added. The original set of requirements have come from a set of grand challenge reports, **GC**. These original requirements have been broken into a smaller set of deliverable features by the senior faculty associated with the project, **SP**. Additional requirements have come from users, **U** See section :ref:`features` if you have additional features you would like to see. - - -quoFEM Requirements -------------------- - -.. csv-table:: Requirements - QF - :header: "#", "Description", "Source", "Priority", "Status" - :widths: 10, 60, 10, 10, 10 - :file: generalQUO-FEM.csv - -.. include:: key.rst - - -UQ Requirements ---------------- - -.. csv-table:: Requirements - Uncertainty Quantification Methods and Variables - :header: "#", "Description", "Source", "Priority", "Status" - :widths: 10, 60, 10, 10, 10 - :file: UQMethods.csv - -.. include:: key.rst - - -RV Requirements ---------------- - -.. csv-table:: Requirements - Random Variables - :header: "#", "Description", "Source", "Priority", "Status" - :widths: 10, 60, 10, 10, 10 - :file: RV.csv - -.. include:: key.rst - -Common Research Application Requirements ----------------------------------------- - -.. csv-table:: Requirements - CR - :header: "#", "Description", "Source", "Priority", "Status" - :widths: 10, 60, 10, 10, 10 - :file: commonR.csv - -.. include:: key.rst - diff --git a/docs/_sources/common/technical_manual/pelicun/background/background.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/background.rst.txt deleted file mode 100644 index 77bf1015e..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/background.rst.txt +++ /dev/null @@ -1,12 +0,0 @@ -.. _lbl-background: - -********** -Background -********** - -Background text - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:framework/framework \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/databases/DL_data.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/databases/DL_data.rst.txt deleted file mode 100644 index 0733ee2fc..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/databases/DL_data.rst.txt +++ /dev/null @@ -1,35 +0,0 @@ -.. _lbl-tb_db_DL_dat: - -******************************** -Damage and Loss Model Parameters -******************************** - -The pelicun framework is complemented by a Damage & Loss Database that provides a collection of damage and consequence descriptions from various methods. Currently, the components from the two editions of FEMA P58 and the building configurations from HAZUS are available for seismic assessments. Damage and loss data are stored in the database using JSON files. These files can be edited using conventional text editors which facilitates adding new components, editing existing ones and sharing definitions within the community. - --------------------- -FEMA-P58 1st Edition --------------------- - -... - --------------------- -FEMA-P58 2nd Edition --------------------- - -... - ----------------------- -HAZUS Earthquake Model ----------------------- - -Building-level... - -Intensity based... - -Story-level... - ----------------------- -HAZUS Hurricane Model ----------------------- - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/databases/databases.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/databases/databases.rst.txt deleted file mode 100644 index b0afe63df..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/databases/databases.rst.txt +++ /dev/null @@ -1,12 +0,0 @@ -.. _lbl-tb_databases: - -********* -Databases -********* - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:DL_data \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/framework/auto.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/framework/auto.rst.txt deleted file mode 100644 index 21c2794b7..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/framework/auto.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tb_framework_auto: - -*************** -Auto population -*************** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/framework/damage.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/framework/damage.rst.txt deleted file mode 100644 index 87a7f77f0..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/framework/damage.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tb_framework_damage: - -************ -Damage Model -************ - -Each Fragility Group in the performance model shall have a corresponding fragility model in the Damage & Loss Database. In the fragility model, Damage State Groups (DSGs) collect Damage States (DSs) that are triggered by similar magnitudes of the controlling EDP. In pelicun, Lognormal damage state exceedance curves are converted into random EDP limits that trigger DSGs. When multiple DSGs are used, assuming perfect correlation between their EDP limits reproduces the conventional model that uses exceedance curves. The approach used in this framework, however, allows researchers to experiment with partially correlated or independent EDP limits. Experimental results suggest that these might be more realistic representations of component fragility. A DSG often has only a single DS. When multiple DSs are present, they can be triggered either simultaneously or they can be mutually exclusive following the corresponding definitions in FEMA P58. \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/framework/framework.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/framework/framework.rst.txt deleted file mode 100644 index 878e506ae..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/framework/framework.rst.txt +++ /dev/null @@ -1,14 +0,0 @@ -.. _lbl-tb_framework: - -********************* -The PELICUN Framework -********************* - -.. toctree-filt:: - :maxdepth: 1 - - :pelicun:overview - :pelicun:res_model - :pelicun:performance - :pelicun:damage - :pelicun:loss \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/framework/loss.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/framework/loss.rst.txt deleted file mode 100644 index de64a49e4..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/framework/loss.rst.txt +++ /dev/null @@ -1,13 +0,0 @@ -.. _lbl-tb_framework_loss: - -********** -Loss Model -********** - -Each Damage State has a corresponding set of consequence descriptions in the Damage & Loss Database. These are used to define a consequence model that identifies a set of decision variables (DVs) and corresponding consequence functions that link the amount of damaged components to the value of the DV. The constant and quantity-dependent stepwise consequence functions from FEMA P58 are available in pelicun. - -Collapses and their consequences are also handled by the damage and the loss models. The collapse model describes collapse events using the concept of collapse modes introduced in FEMA P58. Collapse is either triggered by EDP values exceeding a collapse limit or it can be randomly triggered based on a collapse probability prescribed in the AIM file. The latter approach allows for external collapse fragility models. Each collapse mode has a corresponding collapse consequence model that describes the corresponding injuries and losses. - -Similarly to the performance model, the randomness in damage and losses is handled with a few high-dimensional random variables. This allows researchers to experiment with various correlation structures between damages of components, and consequences of those damages. Among the consequences, the repair costs and times and the number of injuries of various severities are also linked; allowing, for example, to consider that repairs that cost more than expected will also take longer time to finish. - -Once the damage and loss models are assembled, the previously sampled EDPs are used to evaluate the Damage Measures (Fig. 3). These DMs identify the Damage State of each Component Group in the structure. This information is used by the loss simulation to generate the Decision Variables. The final step of the calculation in pelicun is to aggregate results into a Damage and Loss (DL) file that provides a concise overview of the damage and losses. All intermediate data generated during the calculation (i.e., EDPs, DMs, DVs) are also saved in CSV files. diff --git a/docs/_sources/common/technical_manual/pelicun/background/framework/overview.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/framework/overview.rst.txt deleted file mode 100644 index 00c743bef..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/framework/overview.rst.txt +++ /dev/null @@ -1,56 +0,0 @@ -.. _lbl-tb_framework_overview: - -******** -Overview -******** - -The conceptual design of the pelicun framework is modeled after the FEMA P58 methodology, which is generalized to provide a flexible system that can accommodate a large variety of damage and loss assessment methods. In the following discussion, we first describe the types of performance assessment workflows this framework aims to support; then, we explain the four interdependent models that comprise the framework. - -Loss assessment in its most basic form requires the characterization of the seismic hazard as input and aims to provide an estimate of the consequences, or losses, as output. Using the terminology of FEMA P58, the severity of the seismic hazard is quantified with the help of intensity measures (IMs). These are characteristic attributes of the ground motions, such as spectral acceleration, peak ground acceleration, or peak ground velocity. Consequences are measured by decision variables (DVs). The most popular DVs are repair cost, repair time, and the number of injuries and fatalities. :numref:`figPerfAssWorkflows` shows three different paths, or performance assessment workflows, from IM to DV: - -I. The most efficient approach takes a single, direct step using vulnerability functions. Such vulnerability functions can be calibrated for broad classes of buildings (e.g. single-family wooden houses) using ground motion intensity maps and insurance claims data from past earthquakes. While this approach allows for rapid calculations, it does not provide information about structural response or damage. - -II. The second approach introduces damage measures (DMs), which classify damages into damage states (DSs). Each damage state represents a set of potential damages to a structure, or structural component, that require similar kinds and amounts of repair effort. Given a database of IMs and corresponding DMs after an earthquake, fragility functions can be calibrated to describe the relationship between them. The more data is available, the more specialized (i.e., specific to particular types of buildings) fragility functions can be developed. The second step in this path uses consequence functions to describe losses as a function of damages. Consequence functions that focus on repairs can be calibrated using cost and time information from standard construction practice—a major advantage over path I considering the scarcity of post-earthquake repair data. - -III. The third path introduces one more intermediate step: response estimation. This path envisions that the response of structures can be estimated, such as with a sophisticated finite element model, or measured with a structural health monitoring system. Given such data, damages can be described as a function of deformation, relative displacement, or acceleration of the structure or its parts. These response variables, or so-called engineering demand parameters (EDPs), are used to define the EDP-to-DM relationships, or fragility functions. Laboratory tests and post-earthquake observations suggest that EDPs are a good proxy for the damages of many types of structural components and even entire buildings. - -.. _figPerfAssWorkflows: - -.. figure:: figures/PerfAssWorkflows.png - :align: center - :figclass: align-center - - Common workflows for structural performance assessment. - -The functions introduced above are typically idealized relationships that provide a probabilistic description of a scalar output (e.g., repair cost as a random variable) as a function of a scalar input. The cumulative distribution function and the survival function of Normal and Lognormal distributions are commonly used in fragility and vulnerability functions. Consequence functions are often constant or linear functions of the quantity of damaged components. Response estimation is the only notable exception to this type of approximation, because it is regularly performed using complex nonlinear models of structural behavior and detailed time histories of seismic excitation. - -Uncertainty quantification is an important part of loss assessment. The uncertainty in decision variables is almost always characterized using forward propagation techniques, Monte Carlo simulation being the most widely used among them. The distribution of random decision variables rarely belongs to a standard family, hence, a large number of samples are needed to describe details of these distributions besides central tendencies. The simulations that generate such large number of samples at a regional scale can demand substantial computational resources. Since the idealized functions in paths I and II can be evaluated with minimal computational effort, these are applicable to large-scale studies. In path III, however, the computational effort needed for complex response simulation is often several orders of magnitude higher than that for other steps. The current state of the art approach to response estimation mitigates the computational burden by simulating at most a few dozen EDP samples and re-sampling them either by fitting a probability distribution or by bootstrapping. This re-sampling technique generates a sufficiently large number of samples for the second part of path III. Although response history analyses are out of the scope of the pelicun framework, it is designed to be able to accommodate the more efficient, approximate methods, such as capacity spectra and surrogate models. Surrogate models of structural response (e.g., [11]) promise to promptly estimate numerical response simulation results with high accuracy. - -Currently, the scope of the framework is limited to the simulation of direct losses and the calculations are performed independently for every building. Despite the independent calculations, the pelicun framework can produce regional loss estimates that preserve the spatial patterns that are characteristic to the hazard, and the built environment. Those patterns stem from (i) the spatial correlation in ground motion intensities; (ii) the spatial clusters of buildings that are similar from a structural or architectural point of view; (iii) the layout of lifeline networks that connect buildings and heavily influence the indirect consequences of the disaster; and (iv) the spatial correlations in socioeconomic characteristics of the region. The first two effects can be considered by careful preparation of inputs, while the other two are important only after the direct losses have been estimated. Handling buildings independently enables embarrassingly parallel job configurations on High Performance Computing (HPC) clusters. Such jobs scale very well and require minimal additional work to set up and run on a supercomputer. - -******************************* -Performance Assessment Workflow -******************************* - -:numref:`figMainWorkflowComps` introduces the main parts and the generic workflow of the pelicun framework and shows how its implementation connects to other modules in the SimCenter Application Framework. Each of the four highlighted models and their logical relationship are described in more detail in :numref:`figModelTypes`. - -.. _figMainWorkflowComps: - -.. figure:: figures/MainWorkflowComps.png - :align: center - :figclass: align-center - - The main components and the workflow of the pelicun framework. - -.. _figModelTypes: - -.. figure:: figures/ModelTypes.png - :align: center - :figclass: align-center - - The four types of models and their logical relationships in the pelicun framework. - -The calculation starts with two files: the Asset Information Model (AIM) and the EVENT file. Currently, both files are expected to follow a standard JSON file format defined by the SimCenter. Support of other file formats and data structures only require a custom parser method. The open source implementation of the framework can be extended by such a method and the following part of the calculation does not require any further adjustment. AIM is a generalized version of the widely used BIM (Building Information Model) idea and it holds structural, architectural, and performance-related information about an asset. The word asset is used to emphasize that the scope of pelicun is not limited to building structures. The EVENT file describes the characteristic seismic events. It typically holds information about the frequency and intensity of the event, such as its occurrence rate or return period, and corresponding ground motion acceleration time histories or a collection of intensity measures. - -Two threads run in parallel and lead to the simulation of damage and losses: (a) response estimation, creating the response model, and simulation of EDPs; and (b) assembling the performance, damage, and loss models. In thread (a), the AIM and EVENT files are used to estimate the response of the asset to the seismic event and characterize it using EDPs. Peak interstory drift (PID), residual interstory drift (RID), and peak floor acceleration (PFA) are typically used as EDPs for building structures. Response simulation is out of the scope of pelicun; it is either performed by the response estimation module in the Application Framework (Fig. 1) or it can be performed by any other application if pelicun is used outside of the scope of SimCenter. The pelicun framework can take advantage of response estimation methods that use idealized models for the seismic demand and the structural capacity, such as the capacity curve-based method in HAZUS or the regression-based closed-form approximation in the second edition of FEMA P58-5 [12]. If the performance assessment follows path I or II from :numref:`figPerfAssWorkflows`, the estimated response is not needed, and the relevant IM values are used as EDPs. - diff --git a/docs/_sources/common/technical_manual/pelicun/background/framework/performance.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/framework/performance.rst.txt deleted file mode 100644 index 40db419c2..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/framework/performance.rst.txt +++ /dev/null @@ -1,23 +0,0 @@ -.. _lbl-tb_framework_performance: - -***************** -Performance Model -***************** - -Thread (b) in Fig. 3 starts with parsing the AIM file and constructing a performance model. If the definition in the file is incomplete, the auto-populate method tries to fill the gaps using information about normative component quantities and pre-defined rulesets. Rulesets can link structural information, such as the year of construction, to performance model details, such as the type of structural details and corresponding components. - -The performance model in pelicun is based on that of the FEMA P58 method. It disaggregates the asset into a hierarchical description of its structural and non-structural components and contents (Fig. 4): - -- Fragility Groups (FGs) are at the highest level of this hierarchy. Each FG is a collection of components that have similar fragility controlled by a specific type of EDP and their damage leads to similar consequences. - -- Each FG can be broken down into Performance Groups (PGs). A PG collects components whose damage is controlled by the same EDP. Not only the type of the EDP, but its location and direction also has to be identical. - -- In the third layer, PGs are broken down into the smallest units: Component Groups (CGs). A CG collects components that experience the same damage (i.e., there is perfect correlation between their random Damage States). Each CG has a Component Quantity assigned to it that defines the amount of components in that group. Both international standard and imperial units are supported as long as they are consistent with the type of component (e.g., m2, ft2, and in2 are all acceptable for the area of suspended ceilings, but ft is not.) Quantities can be random variables with either Normal or Lognormal distribution. - -In performance models built according to the FEMA P58 method, buildings typically have FGs sensitive to either PID or PFA. Within each FG, components are grouped into PGs by stories and the drift-sensitive ones are also grouped by direction. The damage of acceleration-sensitive components is based on the maximum of PFAs in the two horizontal directions. The Applied Technology Council (ATC) provides a recommendation for the correlation between component damages within a PG. If the damages are correlated, all components in a PG are collected in a single CG. Otherwise, the performance model can identify an arbitrary number of CGs and their damages are evaluated independently. - -The pelicun framework handles the probabilistic sampling for the entire performance model with a single high-dimensional random variable. This allows for custom dependencies in the model at any level of the hierarchy. For example, one can assign a 0.8 correlation coefficient between the fragility of all components in an FG that are on the same floor, but in different directions and hence, in different PGs. In another example, one can assign a 0.7 correlation coefficient between component quantities in the same direction along all or a subset of floors. These correlations can capture more realistic exposure and damage and consider the influence of extreme cases. Such cases are overlooked when independent variables are used because the deviations from the mean are cancelling each other. - -This performance model in Fig. 4 can also be applied to more holistic description of buildings. For example, to describe earthquake damage to buildings following HAZUS, three FGs can handle structural, acceleration-sensitive non-structural, and drift-sensitive non-structural components. Each FG has a single PG because HAZUS uses building-level EDPs—only one location and direction is used in this case. Since components describe the damage to the entire building, using one CG per PG with “1 ea” as the assigned, deterministic component quantity is appropriate. - -The performance model in pelicun can facilitate filling the gap between the holistic and atomic approaches of performance assessment by using components at an intermediate resolution, such as story-based descriptions, for example. These models are promising because they require less detailed inputs than FEMA P58, but they can provide more information than the building-level approaches in HAZUS. diff --git a/docs/_sources/common/technical_manual/pelicun/background/framework/res_model.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/framework/res_model.rst.txt deleted file mode 100644 index 01b880d4a..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/framework/res_model.rst.txt +++ /dev/null @@ -1,9 +0,0 @@ -.. _lbl-tb_framework_response: - -************** -Response Model -************** - -The response model is based on the samples in the raw EDP file and provides a probabilistic description of the structural response. The samples can include an arbitrary number of EDP types (EDPt in Fig. 4) that describe the structural response at pre-defined locations and directions (EDPt,l,d). In buildings, locations typically correspond to floors or stories, and two directions are assigned to the primary and secondary horizontal axes. However, one might use more than two directions to collect several responses at each floor of an irregular building and locations can refer to other parts of structures, such as the piers of a bridge or segments of a pipeline. - -EDPs can be resampled either after fitting a probability distribution function to the raw data or by bootstrapping the raw EDPs. Besides the widely used multivariate lognormal distribution, its truncated version is also available. This allows the consideration, for example, that PID values above a pre-defined truncation limit are not reliable. Another option, using the raw EDPs as-is, is useful in regional simulations to preserve the order of samples and maintain the spatial dependencies introduced in random characteristics of the building inventory or the seismic hazard. \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/framework/uq.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/framework/uq.rst.txt deleted file mode 100644 index 4d706116c..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/framework/uq.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tb_framework_uq: - -************************** -Uncertainty Quantification -************************** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/outputs/damages.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/outputs/damages.rst.txt deleted file mode 100644 index a13ebf280..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/outputs/damages.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tb_out_damages: - -*************** -Damage Measures -*************** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/outputs/demands.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/outputs/demands.rst.txt deleted file mode 100644 index 3b81704b3..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/outputs/demands.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tb_out_demands: - -*********** -Demand Data -*********** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/outputs/losses.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/outputs/losses.rst.txt deleted file mode 100644 index 697dae8ee..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/outputs/losses.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tb_out_losses: - -****************** -Decision Variables -****************** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/outputs/outputs.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/outputs/outputs.rst.txt deleted file mode 100644 index 04c0a0adb..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/outputs/outputs.rst.txt +++ /dev/null @@ -1,15 +0,0 @@ -.. _lbl-tb_outputs: - -************ -Output Files -************ - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:summary - :pelicun:demands - :pelicun:damages - :pelicun:losses \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/outputs/summary.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/outputs/summary.rst.txt deleted file mode 100644 index efcf16e6d..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/outputs/summary.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tb_out_summary: - -************ -Summary Data -************ - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/tools/DL_calculation.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/tools/DL_calculation.rst.txt deleted file mode 100644 index 2f6426418..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/tools/DL_calculation.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tech_DL_calc: - -************** -DL_calculation -************** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/tools/exportDB.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/tools/exportDB.rst.txt deleted file mode 100644 index fd22f8db3..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/tools/exportDB.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_exportDB: - -******** -exportDB -******** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/tools/fitDistribution.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/tools/fitDistribution.rst.txt deleted file mode 100644 index cd58eab08..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/tools/fitDistribution.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_fitDistribution: - -*************** -fitDistribution -*************** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/tools/sampleRV.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/tools/sampleRV.rst.txt deleted file mode 100644 index aea22811d..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/tools/sampleRV.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_sampleRV: - -******** -sampleRV -******** - -... \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/background/tools/tools.rst.txt b/docs/_sources/common/technical_manual/pelicun/background/tools/tools.rst.txt deleted file mode 100644 index a251d4fb5..000000000 --- a/docs/_sources/common/technical_manual/pelicun/background/tools/tools.rst.txt +++ /dev/null @@ -1,15 +0,0 @@ -.. _lbl-tools: - -**************** -Standalone Tools -**************** - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:DL_calculation - :pelicun:exportDB - :pelicun:sampleRV - :pelicun:fitDistribution \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/technical_manual.rst.txt b/docs/_sources/common/technical_manual/pelicun/technical_manual.rst.txt deleted file mode 100644 index 8234edc09..000000000 --- a/docs/_sources/common/technical_manual/pelicun/technical_manual.rst.txt +++ /dev/null @@ -1,5 +0,0 @@ -**************** -Technical Manual -**************** - -Technical Manual text... diff --git a/docs/_sources/common/technical_manual/pelicun/verification/test_control.rst.txt b/docs/_sources/common/technical_manual/pelicun/verification/test_control.rst.txt deleted file mode 100644 index deabc6941..000000000 --- a/docs/_sources/common/technical_manual/pelicun/verification/test_control.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.control module -================================== - -.. automodule:: pelicun.tests.test_control - :members: - :no-undoc-members: - :show-inheritance: \ No newline at end of file diff --git a/docs/_sources/common/technical_manual/pelicun/verification/test_db.rst.txt b/docs/_sources/common/technical_manual/pelicun/verification/test_db.rst.txt deleted file mode 100644 index eca564e12..000000000 --- a/docs/_sources/common/technical_manual/pelicun/verification/test_db.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.db module -============================= - -.. automodule:: pelicun.tests.test_db - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/technical_manual/pelicun/verification/test_file_io.rst.txt b/docs/_sources/common/technical_manual/pelicun/verification/test_file_io.rst.txt deleted file mode 100644 index a4770cc35..000000000 --- a/docs/_sources/common/technical_manual/pelicun/verification/test_file_io.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.file_io module -================================== - -.. automodule:: pelicun.tests.test_file_io - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/technical_manual/pelicun/verification/test_model.rst.txt b/docs/_sources/common/technical_manual/pelicun/verification/test_model.rst.txt deleted file mode 100644 index 8490f5895..000000000 --- a/docs/_sources/common/technical_manual/pelicun/verification/test_model.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.model module -================================ - -.. automodule:: pelicun.tests.test_model - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/technical_manual/pelicun/verification/test_uq.rst.txt b/docs/_sources/common/technical_manual/pelicun/verification/test_uq.rst.txt deleted file mode 100644 index 26f664f95..000000000 --- a/docs/_sources/common/technical_manual/pelicun/verification/test_uq.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -Testing the pelicun.uq module -============================= - -.. automodule:: pelicun.tests.test_uq - :members: - :no-undoc-members: - :show-inheritance: diff --git a/docs/_sources/common/technical_manual/pelicun/verification/verification.rst.txt b/docs/_sources/common/technical_manual/pelicun/verification/verification.rst.txt deleted file mode 100644 index c01dc505b..000000000 --- a/docs/_sources/common/technical_manual/pelicun/verification/verification.rst.txt +++ /dev/null @@ -1,29 +0,0 @@ -.. _lbl_pelVerification: - -************ -Verification -************ - -The methods in pelicun are verified with Unit and Integration tests after each commit using the Travis-CI Cloud-based Continuous Integration platform. The tests performed are grouped by modules and listed under *Continuous Integration* below. These verification tests confirm that the methods perform the tasks as we intended. Additional tests will be added under *Benchmark problems* that compare the outputs of pelicun to other, established performance assessment tools, such as PACT and SP3. These benchmark problems will show that the results are in line with those you would expect from the other tools available. - -Continuous Integration ----------------------- - -Each of the pages below lists the tests performed in pelicun and provides a short description of the tested functionality. The heavily commented test scripts and all required input data are available in the test folder of the pelicun package. - -.. toctree:: - :maxdepth: 1 - - control - db - file_io - model - uq - -Benchmark problems ------------------- - -.. toctree:: - :maxdepth: 1 - - SF Tall Building Study \ No newline at end of file diff --git a/docs/_sources/common/testbeds/anchorage/anchorage.rst.txt b/docs/_sources/common/testbeds/anchorage/anchorage.rst.txt deleted file mode 100644 index dc0615054..000000000 --- a/docs/_sources/common/testbeds/anchorage/anchorage.rst.txt +++ /dev/null @@ -1,82 +0,0 @@ -.. _lbl-testbed_Anchorage: - -************* -Anchorage, AK -************* - -On November 30th 2018 at 8.29am local time, a magnitude 7.1 earthquake occurred near Anchorage, Alaska. Originally the earthquake was estimated to be a magnitude 7.0, but was later on revised to magnitude 7.1. The epicenter of the earthquake was 10 miles away from the Anchorage metro area and the depth of the earthquake was 29 miles. For more details visit the `USGS event page `_. A `short Youtube video `_ shows the shaking and images of the damage. As of July 11, FEMA’s Individuals and Households program has approved more than `$21 million to repair disaster-damaged homes and pay for temporary housing. Additionally, the U.S. Small Business Administration has approved more than $70.3 million for 1,772 homeowners and renters; and more than $7.89 million for 112 businesses. `_. - -In the few weeks following the earthquake, the NHERI SimCenter team collected and processed building exposure data from the publicly available parcels tax data from the Municipality of Anchorage tax assessor's website. The tax data for approximately 97,000 parcels was processed, resulting in buildings data in 85,000 parcels. In addition the SimCenter collected a number of recorded motions for the event that were made available online. - -Subsequently the SimCenter created a workflow to estimate the effect of the earthquake using the software created by the center for performing assessment of damage associated with natural events at the regional scale. This section describes the steps involved to collect the data, steps that a user would take to repeat the simulations performed by SimCenter, and finally the results obtained. - -A video `presenting the work `_ was presented by Wael Elhadded of SimCenter (now with NVIDIA). - -Anchorage Data Gathering -======================== - -Building Data -------------- - -The NHERI SimCenter team collected and processed building exposure data from the publicly available parcels tax data from the `Municipality of Anchorage tax assessor's website `_. The tax data for approximately 97,000 parcels was processed, resulting in buildings data in 85,000 parcels, which can be broken down into two regions as follows: - -- 73,000 parcels in Anchorage -- 12,000 parcels in Eagle River - -The building data is provided online at DesignSafe `AnchorageBuildings.zip `_. The zip file contains a single comma separated file. The first line contains the column headings, the subsequent lines the information for each building. - - -#. Id - an integer id - -#. Area - floor plan area of building. - -#. Stories - number of stories - -#. Year Built - year built. - -#. Type ID - ??? - -#. Latitude - latitude of building - -#. Longitude - longitude of building - -#. Occupancy - occupancy class of building - -#. ParcelId - assessors parcel id. - -The data was collected by a python program utilizing `selenium `_, which provides a set of tools for automating web browsers. The program used to generate the data is as shown in figure below: - -.. literalinclude:: code/getBuildingsFMK.py - :language: py - - -.. note:: - - the code uses a python model named ``geocoder`` to geoencode the latitudes and longitudes from the street addresses. geocoder can be set up to use a `number of provideres `_. The code shown above uses Open Street Maps, which is free but might not be efficient. The difference in service providers is in speed of service, some may be rate limited, and all can result in minor differences in lat and long values returned. - - -Ground Motion Data ------------------- - -The testbed used the following workflow: - - - -Workflow -======== - - -Preliminary regional loss estimation was carried out using rWHALE, a regional workflow for hazard and loss estimation, developed at NHERI SimCenter. Results for the regional simulation of Anchorage M7.1 earthquake can be summarized as follows: - -Results -======= - - -Average building loss ratio is 14.5% -Total repair cost of $7.5 billion -3800 Red Tagged Buildings - -Researchers interested in reproducing the same results are able to access rWHALE through DeisgnSafe-CI Workspace (requires logging in). Detailed steps needed to run a large scale regional simulation were presented in a NHERI SimCenter online webinar, and a recorded version is available online. Additional documentation and details are available in the SimCenter website. - - - diff --git a/docs/_sources/common/testbeds/atlantic_city/asset_description.rst.txt b/docs/_sources/common/testbeds/atlantic_city/asset_description.rst.txt deleted file mode 100644 index 84f4d8205..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/asset_description.rst.txt +++ /dev/null @@ -1,378 +0,0 @@ -.. _lbl-testbed_AC_asset_description: - -***************** -Asset Description -***************** - -This section describes how a large-scale building inventory was constructed using a phased approach that -augments tax assessor data, using machine learning and computer vision algorithm to address errors/omissions and -generate all attributes required for the corresponding loss assessment. It is emphasized that the intent -is to demonstrate how an inventory could be constructed and not to address potential errors, omissions or -inaccuracies in the source data, i.e., source data are assumed to be accurate and no additional quality -assurance was conducted outside of addressing glaring omissions or errors. - -In the process of assembling this inventory, a number of scripts were developed to facilitate the actions -described in the following sections. While these scripts were not intended to be production-quality -software and were written assuming a particular data format/endpoint which may change over time, they -do provide an example of the type of operations necessary to assemble a building inventory and thus -are made available at GitHub as an illustrative example. - -Phase I: Attribute Definition -=============================== - -All the attributes required for loss estimation were first identified to develop the Building Inventory -data model, which catalogs each attribute, its purpose, its format (alphanumeric, floating point number, -etc.), the data source used to define that attribute and the field(s) needed from that data source, any -transformations of that source data necessary to align with the units or conventions used in the Building -Inventory, and any relevant details explaining notations, assumptions, or reference documents. These -fields are summarized in :numref:`tab-bldgInventory` with full details of each field -available on DesignSafe, for both the Atlantic County Inventory and the Flood-Exposed/Exploratory Inventory. -The Building Inventory data model should be comprehensive, encompassing all attributes required for loss -estimation, although these may be populated in the Building Inventory at different points in the workflow, -e.g., a number of attributes needed for loss estimation are populated during the Asset Representation stage -(see :ref:`lbl-testbed_AC_asset_representation`). - -.. _tab-bldgInventory: - -.. csv-table:: Building Inventory data model. - :name: bldg_inv_dm - :file: data/building_inventory_data_model_new.csv - :header-rows: 1 - :align: center - -Phase II: Footprint Selection -=============================== - -Inventory development initiated with the Footprint Data generated by the New Jersey Department of -Environmental Protection (NJDEP). These NJDEP footprints include flood-exposed properties cataloged -in two geodatabases encompassing approximately 453,000 footprints across the entire state: - -1. **BF_NJDEP_20190612**: all building footprints within 1% annual chance (AC) floodplain, as defined by FEMA Flood -Insurance Rate Maps (FIRMs). - -2. **02pct_20190520 Building_Footprints_02pct**: buildings that are not in the first dataset but fall within a -200-ft buffer of the 1% AC floodplain boundary. - -These databases were then combined, with only properties within the limits of Atlantic County retained to form -the Flood-Exposed Inventory. This inventory was then extended to include other footprints within the county -boundaries. Microsoft (MS) Footprint Database was utilized as the primary source of Non-NJDEP footprint polygons. -One observed shortcoming of the MS Footprint Database is it incorrectly lumps together the footprints of closely -spaced buildings. This issue was resolved by a combination of manual inspections and applying a separate roof -segmentation algorithm to the satellite images obtained for the buildings. This resulted in the -**Atlantic County Inventory**. - -Phase III: Augmentation Using Third-Party Data -================================================ - -Attributes were then parsed from third-party data providers to populate all required attributes in the Building -Inventory data model. For the Flood-Exposed Inventory, NJDEP had already enriched these footprints with various -attributes necessary to conduct standard FEMA risk assessments. Specifically, all footprints included a set of -Basic Attributes (:numref:`tab-basicAttri`). A subset of the data, including Atlantic County, had additional Advanced -Attributes required by HAZUS User Defined Facilities (UDF) Module (:numref:`tab-udfAttri`) and FEMA Substantial Damage -Estimator (SDE) Tool (:numref:`tab-sdeAttri`). - -.. _tab-basicAttri: - -.. csv-table:: NJDEP basic attributes available for all properties in Flood-Exposed Inventory. - :file: data/basic_attributes.csv - :header-rows: 1 - :align: center - -.. _tab-udfAttri: - -.. csv-table:: Advanced attributes for HAZUS User Defined Facilities (UDF), available for all properties in Flood-Exposed Inventory. - :file: data/udf_attributes.csv - :header-rows: 1 - :align: center - -.. _tab-sdeAttri: - -.. csv-table:: Advanced attributes for FEMA Substantial Damage Estimator (SDE) Tool, available for all properties in Flood-Exposed Inventory. - :name: sde_attri - :file: data/sde_attributes.csv - :header-rows: 1 - :align: center - -For the Atlantic County Inventory, any buildings not included in the NJDEP footprints had attributes encompassed -by NJDEP Basic, UDF or SDE fields assigned by parsing New Jersey Tax Assessor Data (called **MODIV**) ([MODIV]_) as defined in -the MODIV User Manual ([MODIV18]_). This notably affected attributes such as OccupancyClass, BuildingType and FoundationType, -whose rulesets (PDFs and Python scripts) are cross-referenced in :numref:`addinfo_ruleset_njdep`. -In all cases where attributes were derived from MODIV data, whose fields can be sparsely populated, default -values were initially assigned to ensure that every footprint would have the attributes required to execute -the workflow. These default values were selected using engineering judgement to represent the most common/likely -attribute expected or conservatively from the perspective of anticipated losses (i.e., picking the more -vulnerable attribute option). These initial assignments were then updated if additional data is available in -**MODIV** to make a more faithful attribute assignment. - -.. list-table:: Additional details for rulesets assigning attributes available only in NJDEP dataset - :name: addinfo_ruleset_njdep - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - Building Type Rulesets - - `Building Type Rulesets.pdf `_ - - :download:`BuildingTypeRulesets ` - * - Foundation Type Rulesets - - `Foundation Type Rulesets.pdf `_ - - :download:`FoundationTypeRulesets ` - * - Occupancy Type Rulesets - - `Occupancy Type Rulesets.pdf `_ - - :download:`OccupancyTypeRulesets ` - -Some attributes in the Building Inventory Data Model were not encompassed by NJDEP Basic, UDF or SDE fields, thus -remaining attributes in both the Flood-Exposed and Atlantic County Inventories were assigned using data -from the following third-party sources: -1. **Locations of essential facilities** were sourced from NJ Office of Information Technology (part of NJGIN Open Data [NJGIN20]_) -2. **ATC Hazards** by Location API ([ATC20]_) was used to query Design Wind Speeds as defined in ASCE 7 -3. **Terrain features** (roughness length associated with different exposure classes) was derived from Land Use Land Cover data (part of NJGIN Open Data [NJGIN20]_) - -See the Transformation and Detail columns in the PDFs listed in :numref:`tab-bldgInventory` for specifics of how each attribute -was assigned using these various third-party data sources. - -.. _lbl-testbed_AC_asset_description_phase_iv: - -Phase IV: Augmentation Using Computer Vision Methods -==================================================== - -A number of required attributes pertaining to externally-visible features of the building were either not -included in the NJDEP footprints or MODIV data or were included but warranted cross validation. -The methodology used for each of these attributes is now described. - -1. **Number of Stories**: While this attribute was available only for the buildings included in the NJDEP inventory, - this attribute was sparsely reported in the MOD IV database. Even for the NJDEP inventory, - non-integer values were often reported, creating incompatibilities with the integer - defaults used in Hazus. Thus image-based floor detections were used to estimate this - attribute for the larger Flood-Exposed Inventory, and as a means to cross-validate - values reported in NJDEP and MOD IV for consistency with Hazus conventions. - - An object object detection model that can automatically detect rows of building windows was - established to generate the image-based detections from street-level. The model was trained on the - EfficientDet-D7 architecture with a dataset of 60,000 images, using 80% for training, 15% - for validation, and 5% testing of the model. In order to ensure faster model convergence, - initial weights of the model were set to model weights of the (pretrained) object detection - model that, at the time, achieved state-of-the-art performance on the 2017 COCO Detection set. - For this specific implementation, the peak model performance was achieved using the Adam optimizer - at a learning rate of 0.0001 (batch size: 2), after 50 epochs. :numref:`num_stories_detection` shows examples of the - floor detections performed by the model. - - .. figure:: figure/number_of_stories_detection.png - :name: num_stories_detection - :align: center - :figclass: align-center - :figwidth: 1000 - - Sample floor detections of the floor detection model (each detection is indicated by a green bounding box). The percentage value shown on the top right corner of a bounding box indicates model confidence level associated with that prediction. - - For an image, the described floor detection model generates the bounding box output for its - detections and calculates the confidence level associated with each detection. A post-processor - that converts stacks of neighboring bounding boxes into floor counts was developed to convert - this output into floor counts. Recognizing an image may contain multiple buildings at a time, - this post-processor was designed to perform counts at the individual building-level. - - For a random building image dataset, where images were captured using arbitrary camera - orientations (also termed “in-the-wild” images), the developed floor detection model - was determined to identify the number of stories with an accuracy of 86%. - :numref:`num_story_confusion`(a) provides a breakdown of this accuracy measure for different - prediction classes (i.e., the confusion matrix of model classifications). - It was also observed that if the image dataset is established such that building - images are captured with minimal obstructions, the building is at the center of the - image, and perspective distortions are limited (termed “cleaned” data), the model - identified the number of stories at an accuracy level of 94.7%. - :numref:`num_story_confusion`(b) shows the confusion matrix for the model predicting on the - “cleaned” image data. In quantifying both accuracy levels, a test set of 3,000 images - randomly selected across all New Jersey counties, excluding Atlantic County, was utilized. - - .. figure:: figure/num_story_confusion.png - :name: num_story_confusion - :align: center - :figclass: align-center - :figwidth: 1000 - - Confusion matrices for the number of stories predictor. The maxtrix one the left shows - the model's prediction accuracy when tested on "in-the-wild" images. The matrix on the - right depicts the model accuracy on the "cleaned" imagery. - -2. **Building Elevations**: Building elevations are not available in state inventory data and required for both - wind and flood loss modeling, with the exception of first floor height estimates provided - in the NJDEP inventory. Hence, the elevation of the bottom plane of the roof (lowest edge - of roof line), elevation of the roof (peak of gable or apex of hip), and height of first of - floor as determined from base of door’s height, all defined with respect to grade (in feet), - were estimated from street-level imagery. These geometric properties are defined visually - for common residential coastal typologies in :numref:`building_elevation`. The mean height of the roof system - is then derived from the aforementioned roof elevations. - - .. figure:: figure/building_elevation.png - :name: building_elevation - :align: center - :figclass: align-center - :figwidth: 1000 - - Schematics demonstrating elevation quantities for different foundation systems common in coastal areas. - - As in any single-image metrology application, extracting the building elevations require: - 1. Rectification of image perspective distortions, typically introduced during image capture, - 2. Determining the pixel count representing the distance between ends of the objects or surface of interest - 1. (e.g., for first-floor height, the orthogonal distance between the ground and first-floor levels) - 3. Converting these pixel counts to real-world dimensions by matching a reference measurement with the corresponding pixel count - - Given that the number of street-level images available for a building can be limited - and sparsely spaced, this single image rectification approach was deemed most applicable for - regional-scale inventory development. The first step in image rectification requires - detecting line segments on the front face of the building. This is performed by using - the L-CNN end-to-end wireframe parsing method. Once the segments are detected, vertical - and horizontal lines on the front face of the building are automatically detected using - RANSAC line fitting based on the assumptions that line segments on this face are the - predominant source of line segments in the image and the orientation of these line - segments change linearly with their horizontal or vertical position depending on their - predominant orientation. Invoking the Manhattan World assumption (i.e., all surfaces in - the world are aligned with two horizontal and one vertical dominant directions), we - iteratively transform the image such that horizontal edges on the facade plain lie - parallel to each other, and its vertical edges are orthogonal to the horizontal edges. - - In order to automate the process of obtaining the pixel counts for the ground elevations, a - face segmentation model was trained to auotmatically label ground, facade, door, windwos and roof - pixels in an image. The segmentation model was trained using DeepLabV3 architecture on a ResNet-101 - backbone, pretrained on PASCAL VOC 2012 segmentation dataset, using a facade segmentation dataset of - 30,000 images. The peak model performance was attained using the Adam optimizer at a learning rate of - 0.001 (batch size: 4), after 40 epochs. The conversion between pixel dimensions and real-world - dimensions were attained by use of edge detections - performed on satellite images. - - The conversion between pixel dimensions and real-world dimensions were attained by use of - edge detections performed on satellite images. - -3. **Roof Geometry**: Roof shape and slope are not available in state inventory data and required for wind loss - modeling. The SimCenter developed application Building Recognition using Artificial - Intelligence at Large Scales, BRAILS ([Wang19]_), is used to interpret satellite images - of building roofs, which are collected from Google Maps. The satellite images are labeled - with shape types to form a dataset, upon which a Convolutional Neural Network (CNN) is - trained so that it can give rapid predictions of roof types when given new images of roofs. - The footprint centroid (Latitude and Longitude in Building Inventory) is used as the - location index when downloading images - automatically from Google Maps. While more complex roof shapes could in theory be classified, - the current use of HAZUS damage and loss functions required the use of similitude measures - to define each roof as an “effective” gable, hip or flat geometry (:numref:`roof_shape`). Using BRAILS, this - classification was achieved with approximately 90.3% accuracy based on validation studies. - The detailed validation process can be found in - `BRAILS online documentation `_. - - .. figure:: figure/roof_shape.png - :name: roof_shape - :align: center - :figclass: align-center - :figwidth: 800 - - Roof type classification by BRAILS ([Wang19]_). - - Roof slope is calculated as the ratio between the roof height and half the depth of the - building, i.e., length of the building orthogonal to the roadline in front of the building. - Roof height is calculated by determining the difference between the bottom plane and apex - elevations of the roof as defined in the Building Elevations section. Plan dimensions of - the building, as determined by the dimensions of the footprint, are determined by first - obtaining the camera location of the street-level - image to determine road-parallel and road-perpendicular dimensions of the building footprint, - then setting the average of the road-perpendicular dimensions as the building depth. This - is deemed a more accurate way of establishing the plan geometry than using the footprints - themselves. - -4. **Window Area**: The proportion of windows to the overall surface area is not available in inventory and - assessor datasets though required for wind loss modeling. Generally, window area can be - assumed based on the building occupancy class given Department of Energy industry databases. - This property can also be estimated from street-level imagery, by taking advantage of the - window masks generated as part of the segmentation performed when determining building - elevations. For this application, window area is defined as a percentage of the total - facade area as the ratio of the area of windows masks to the area of the front facade - of the building. The underlying assumption is that the proportion of surface area occupied - by windows at the front of the building is representative of the amount of window openings - on the sides and rear of the building. This enables the ratio calculated for the front - face of the building to be used for the whole building. This assumption may hold for single - family residential buildings, but possibly not for other commercial construction where - street fronts have higher proportions of glass. In lieu of this computer vision approach, - users may choose to adopt industry norms for their window areas (see callout box below). - - .. note:: - - **Industry Norms on Window Area**: Engineered residential buildings can be assumed to have low window to wall - area ratios (WWR) based on the information for Reference Buildings in Baltimore, MD from the - `Office of Energy Efficiency and Renewable Energy `_. Reference Buildings were created for select cities - based on climate profile; of the available cities, Baltimore is selected since its climate is most - similar to Atlantic City, NJ. Office buildings (used as a test case for commercial), have WWR of - 33% and apartments (used as a test case for residential) have WWR of 15%. - -.. note:: - - The process of constructing the **Atlantic County Inventory** for footprints beyond those in the - **Flood-Exposed Inventory** underscored a number of tasks/issues that are commonly encountered when constructing an inventory - in a location with sparse inventory data. Recommended best practices are summarized in :ref:`lbl-testbed_AC_best_practices`. - -Populated Inventories -======================== - -Executing this four-phase process resulted in the assignment of all required attributes at the asset description -stage of the workflow for both the **Atlantic County Inventory** and the **Flood-Exposed Inventory**. -:numref:`bldg_inv_ac` and :numref:`bldg_inv_fei` provide respective examples of each of these inventories. -The Flood-Exposed Inventory then was used to extract out the subset of buildings defining the -**Exploration Inventory** (see example in :numref:`bldg_inv_ei`). The full inventories can be downloaded -:download:`here `. - -.. csv-table:: Illustrative sample of building in Atlantic Inventory. - :name: bldg_inv_ac - :file: data/example_inventory_ac.csv - :header-rows: 1 - :align: center - -.. csv-table:: Illustrative sample of building in Flood-Exposed Inventory. - :name: bldg_inv_fei - :file: data/example_inventory.csv - :header-rows: 1 - :align: center - -.. csv-table:: Illustrative sample of building in Exploration Inventory. - :name: bldg_inv_ei - :file: data/example_inventory_exploration.csv - :header-rows: 1 - :align: center - -.. list-table:: Summary of the three building inventories. - :name: access_inventories - :header-rows: 1 - :align: center - - * - Inventory Name - - DesignSafe Document - - Number of Assets - - Typical Run Time - * - Atlantic County Inventory - - :download:`Atlantic County Inventory ` - - 100,721 - - ~ 1,500 CPU-Hour* (please see more details in **Computational Resources Requirements**) - * - Flood-Exposed Inventory - - :download:`Flood-Exposed Inventory ` - - 32,828 - - ~ 440 CPU-Hour - * - Exploration Inventory - - :download:`Exploration Inventory ` - - 1,000 - - ~ 12 CPU-Hour - - -.. [ATC20] - ATC (2020b), ATC Hazards By Location, https://hazards.atcouncil.org/, Applied Technology Council, Redwood City, CA. - -.. [NJGIN20] - NJ Geographic Information Network, State of New Jersey, https://njgin.nj.gov/njgin/#!/ - -.. [Wang19] - Wang C. (2019), NHERI-SimCenter/SURF: v0.2.0 (Version v0.2.0). Zenodo. http://doi.org/10.5281/zenodo.3463676 - -.. [Microsoft2018] - Microsoft (2018) US Building Footprints. https://github.com/Microsoft/USBuildingFootprints - -.. [MODIV] - Parcels and MOD-IV of Atlantic County, NJ. NJGIN Open Data, https://njogis-newjersey.opendata.arcgis.com/datasets/680b02ff9b4348409a2f4ccd4c238215. - -.. [MODIV18] - Department of the Treasury, State of New Jersey (2018), MOD IV User Manual. https://www.state.nj.us/treasury/taxation/pdf/lpt/modIVmanual.pdf \ No newline at end of file diff --git a/docs/_sources/common/testbeds/atlantic_city/asset_representation.rst.txt b/docs/_sources/common/testbeds/atlantic_city/asset_representation.rst.txt deleted file mode 100644 index 0867b8ef0..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/asset_representation.rst.txt +++ /dev/null @@ -1,598 +0,0 @@ -.. _lbl-testbed_AC_asset_representation: - -******************** -Asset Representation -******************** - -This section discusses the translation of asset descriptions into representations -of structures suitable for simulation within workflow, in this case consistent with -the HAZUS description of building classes and associated attributes, which becomes -the default data schema. Thus the description of assets below is organized according -to the HAZUS conventions for classifying buildings and organizing damage and loss data -according to attributes associated with those building classes. - -The following discussion will reference a number of rulesets developed for this testbed -to enable various assignments of these HAZUS building classes and corresponding attributes. -Details of these rulesets are available to users in one of two forms: - -1. Rulest definition tables (PDFs) curated in DesignSafe that include additional documentation - justifying the proposed rule, with provenance information for any sources engaged in that - rule’s development. -2. Scripts (in Python) curated in GitHub that implement the ruleset’s logic for this testbed. - -Each section provides a table linking the relevant Tables and Scripts. Note that as well -that all of the rulesets introduced herein are tiered, initiating by assigning all assets -a default value for its building classification or a given attribute based on the primary -rule. This ensures that every asset receives a HAZUS building class and related attribute -assignments, regardless of data sparsity. - -.. _lbl-testbed_AC_asset_representation_building_classification: - -Building Classifications -========================== - -HAZUS classifies buildings based on a more nuanced interpretation of Occupancy Class -(see building inventory field **OccupancyClass**) based on other attributes of relevance -for a given hazard type. - -For wind losses, HAZUS groups buildings into 5 main types by primary building material/construction -mode (wood, masonry, concrete, steel, manufactured home). Buildings must then be sub-classified -into one of 55 corresponding HAZUS building classes (**HazusClass-W**) based on characteristics -such as occupancy, number of stories and footprint size, using rulesets that call upon various -fields in the building inventory. The HAZUS building classifications for wind losses are listed -in :numref:`bldg_class`, and the corresponding rulesets (PDFs and Python scripts) are cross-referenced -later in :numref:`addinfo_ruleset`. Note that while rulesets were developed for marginally and non-engineered -building classes in HAZUS, these classes are not used in the current implementation of this testbed. - -.. csv-table:: HAZUS building classification for wind loss assessment. - :name: bldg_class - :file: data/bldg_class_new.csv - :header-rows: 1 - :align: center - -For flood losses, HAZUS groups buildings into one of 32 classifications based on the building use -and other features. A separate ruleset was developed to assign buildings into one of these classes -associated with inundation by water (**HazusClass-IN**). The HAZUS building classifications for flood -losses are listed in :numref:`flood_bldg_class`, and the corresponding rulesets (PDFs and Python scripts) -are cross-referenced later in :numref:`addinfo_ruleset`. - -.. csv-table:: HAZUS building classification for flood loss assessment. - :name: flood_bldg_class - :file: data/flood_bldg_class_new.csv - :header-rows: 1 - :align: center - -For wave-induced losses, HAZUS groups buildings into one of 10 classifications based on the building -use, construction material and number of stories. A separate ruleset was developed to assign buildings -into one of these classes associated with losses driven by wave action (**HazusClass-WA**). The HAZUS -building classifications for wave-induced losses are listed in :numref:`wave_bldg_class`, and the corresponding -rulesets (PDFs and Python scripts) are cross-referenced in :numref:`addinfo_ruleset`. - -.. csv-table:: HAZUS building classification for wave-induced loss assessment. - :name: wave_bldg_class - :file: data/wave_bldg_class_new.csv - :header-rows: 1 - :align: center - -.. list-table:: Additional details for rulesets assigning HAZUS building class - :name: addinfo_ruleset - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - Building Class Rulesets - Wind - - `HAZUS Building Class Rulesets - Wind.pdf `_ - - :download:`WindClassRulesets ` - * - Building Class Rulesets - Flood - - `HAZUS Building Class Rulesets - Flood.pdf `_ - - :download:`FloodClassRulesets ` - * - Building Class Rulesets - Wave - - `HAZUS Building Class Rulesets - Wave.pdf `_ - - To be released. - -Building Attributes -====================== - -Within each of these building classes, e.g., wood single-family homes 1-2+ stories, the HAZUS Hurricane -Technical Manual (HHTM) further differentiates buildings based on asset attributes and the hazard type -(e.g., wind vs. flood) for the purpose of loss estimation. These attributes define key features of the -load path and components (e.g., roof shape, secondary water resistance, roof deck attachment, roof-wall -connection, shutters, garage), and the number of attributes necessary to describe a given building varies. - -As these attributes are beyond what is typically encompassed in a building inventory, this testbed developed -and implemented a library of rulesets to infer the HAZUS-required attributes based upon the fields available -in the Building Inventory, legacy building codes in New Jersey, local construction practices/norms, surveys -capturing owner-driven mitigation actions (e.g., [Javeline19]_) and market/industry data. -Where possible, the rulesets are time-evolving, considering the age of construction to determine the governing -code edition and availability of specific mitigation measures in the market. Though reliant on engineering -judgement and historical data availability, each rule provides detailed notes cross-referencing the various -documents and practices that governed that era of construction and thus informed the ruleset formation. -In cases where engineering judgement was required, rules were assigned based on what was understood to be -the most common construction practice. In cases where that was not clear, the ruleset assigned the most -vulnerable configuration for a more conservative approach to loss estimation. :numref:`wind_bldg_attri` -and :numref:`flood_bldg_attri` list the attributes for the wind and flood loss assessments. - -.. csv-table:: Building attributes for wind loss assessment. - :name: wind_bldg_attri - :file: data/wind_bldg_attri.csv - :header-rows: 1 - :align: center - -.. csv-table:: Building attributes for flood loss assessment. - :name: flood_bldg_attri - :file: data/flood_bldg_attri.csv - :header-rows: 1 - :align: center - -Note that rulesets for assigning wind loss attributes call upon two meta-variables relevant to wind losses -for any building: “Hazard Prone Region” and “Wind Borne Debris,” which are assigned based the design wind -speed at the asset location (Building Inventory field “DSWII”) and the flood zone (building inventory field -**FloodZone**), per New Jersey code. These rules used to assign these meta-variables are provided in -:numref:`addinfo_ruleset_metavar`. Also note that the roof shape (building inventory field **RoofShape**), -derived from aerial imagery, and terrain roughness (building inventory field **Terrain**), derived from -Land Use Land Cover data, are also attributes required by the HAZUS wind loss model. As these were already -assigned in the :ref:`lbl-testbed_AC_asset_description`, they are not discussed again herein. - -.. list-table:: Additional details for rulesets for meta-variables in wind loss attribute assignment in HAZUS - :name: addinfo_ruleset_metavar - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - Attribute Assignment - Wind (Meta-Variable) - - `Hazus Building Attribute Rulesets - Wind - Meta-Variables.pdf `_ - - :download:`WindMetaVarRulesets ` - -Finally, all of the rulesets used to assign attributes include a default value that can be updated based -on available data, ensuring that each asset receives all the attribute assignments necessary to identify -the appropriate Hazus fragility description. The following sections summarize the rulesets used for -attribute assignments for specific classes of buildings. Additional attributes assigned to assets are -discussed in the following subsections, organized by hazard and building class, where applicable. - -Wind Loss Attributes for Wood Buildings ------------------------------------------- - -The wind loss model in HAZUS classifies wooden buildings into five building classes: - -1. two single family homes (WSF1 and WSF2) and -2. three for multi-unit homes (WMUH1, WMUH2, and WMUH3) - -Their required attributes for wind loss modeling, the possible entries (values, terms) that can be -assigned for those attributes, and the basis for the ruleset developed to make that assignment are -summarized in :numref:`wsf_attri` and :numref:`wmuh_attri`. Note that these rulesets were developed -to reflect the likely attributes based on the year of construction and the code editions and -construction norms at that time. The corresponding time-evolving rulesets (PDFs and Python scripts) -are cross-referenced in :numref:`addinfo_ruleset_wood`. - -.. csv-table:: Additional HAZUS attributes assigned for wood single family (WSF) homes: wind losses. - :name: wsf_attri - :file: data/wsf_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for wood multi-unit home (WMUH): wind losses. - :name: wmuh_attri - :file: data/wmuh_attributes.csv - :header-rows: 1 - :align: center - -.. list-table:: Additional details for rulesets assigning wind loss attributes for wood buildings - :name: addinfo_ruleset_wood - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - HAZUS Building Attribute Rulesets - Wind (WSF1-2) - - `Hazus Building Attribute Rulesets - Wind - WSF1-2.pdf `_ - - :download:`WindWSFRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (WMUH1-3) - - `Hazus Building Attribute Rulesets - Wind - WMUH1-3.pdf `_ - - :download:`WindWMUHRulesets ` - -Taking the attribute Second Water Resistance (SWR) as an example, the SWR attribute is assigned by -a series of time-evolving rules calling upon four fields in the building inventory: year built, -roof shape, roof slope, and average temperature in January. :numref:`swr_attri` provides the -detailed rules that map these four variables to the Second Water Resistance (SWR) attribute. -This example demonstrates an instance where the attribute is assigned as a random variable, -based on the fact that secondary water resistance is not required by code, though surveys -of homeowners in hurricane-prone areas can be used to infer how many may have voluntarily -adopted this mitigation practice. - -.. csv-table:: Ruleset for determining the Second Water Resistance attribute for WSF homes. - :name: swr_attri - :file: data/example_wood_ruleset.csv - :header-rows: 1 - :align: center - - -Wind Loss Attributes for Masonry Buildings ------------------------------------------------- - -The masonry buildings have 14 building classes: Their key attributes that influence the fragility -functions are listed in :numref:`msf_attri`, :numref:`mmuh_attri`, :numref:`mlrm_attri`, -:numref:`merb_attri`, :numref:`mecb_attri`, and :numref:`mlri_attri`. - -The wind loss model in HAZUS classifies masonry buildings into 14 building classes: -1. two masonry single family home classes (MSF1 and MSF2) -2. three masonry multi-unit home classes (MMUH1, MMUH2, and MMUH3) -3. two masonry low-Rise strip mall classes (MLRM1 and MLRM2) classes -4. three masonry engineered residential building classes (MERBL, MERBM, and MERBH) -5. three Masonry engineered commercial building classes (MECBL, MECBM, and MECBH) and -6. one masonry low-rise industrial building class (MLRI). - -Their required attributes for wind loss modeling, the possible entries (values, terms) that can be -assigned for those attributes, and the basis for the ruleset developed to make that assignment -are summarized in :numref:`msf_attri`, :numref:`mmuh_attri`, :numref:`mlrm_attri`, :numref:`merb_attri`, -:numref:`mecb_attri`, :numref:`mlri_attri`. Note that these rulesets were developed to reflect -the likely attributes based on the year of construction and the code editions and construction -norms at that time. The corresponding time-evolving rulesets (PDFs and Python scripts) are -cross-referenced in :numref:`addinfo_ruleset_masonry`. - -.. csv-table:: Additional HAZUS attributes assigned for masonry single family (MSF) homes: wind losses. - :name: msf_attri - :file: data/msf_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for masonry multi-unit homes (MMUH): wind losses. - :name: mmuh_attri - :file: data/mmuh_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for masonry low-rise strip malls (MLRM): wind losses. - :name: mlrm_attri - :file: data/mlrm_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for masonry engineered residential buildings (MERB): wind losses. - :name: merb_attri - :file: data/merb_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for HAZUS masonry engineered commercial buildings (MECB): wind losses. - :name: mecb_attri - :file: data/mecb_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for masonry low-rise industrial buildings (MLRI): wind losses. - :name: mlri_attri - :file: data/mlri_attributes.csv - :header-rows: 1 - :align: center - -.. list-table:: Additional details for rulesets assigning wind loss attributes for masonry buildings - :name: addinfo_ruleset_masonry - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - HAZUS Building Attribute Rulesets - Wind (MSF1-2) - - `Hazus Building Attribute Rulesets - Wind - MSF1-2.pdf `_ - - :download:`WindMSFRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (MMUH1-3) - - `Hazus Building Attribute Rulesets - Wind - MMUH1-3.pdf `_ - - :download:`WindMMUHRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (MLRM1) - - `Hazus Building Attribute Rulesets - Wind - MLRM1.pdf `_ - - :download:`WindMLRMRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (MLRM1) - - `Hazus Building Attribute Rulesets - Wind - MLRM2.pdf `_ - - :download:`WindMLRMRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (MERBL-M-H) - - `Hazus Building Attribute Rulesets - Wind - MERBL-M-H.pdf `_ - - :download:`WindMERBRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (MECBL-M-H) - - `Hazus Building Attribute Rulesets - Wind - MECBL-M-H.pdf `_ - - :download:`WindMECBRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (MLRI) - - `Hazus Building Attribute Rulesets - Wind - MLRI.pdf `_ - - :download:`WindMLRIRulesets ` - -Taking the attribute **shutters** as an example, the shutters attribute is assigned based on time-evolving -rules calling upon two fields in the building inventory: year built and the site’s exposure to wind borne -debris (WBD). :numref:`sht_attri` provides the detailed rules that map these two variables to the shutters -attribute. This example demonstrates an instance where the attribute is assigned by a code-based -rule for modern construction, but older construction is assigned as a random variable, based on the -fact that shutters were not codified before 2000 IBC, but human subjects data suggests potential -rates of voluntary shutter use. It is assumed that shutters are used only in areas susceptible to WBD. - -.. csv-table:: Ruleset for determining the shutter use for masonry engineered commercial buildings. - :name: sht_attri - :file: data/example_masonry_ruleset.csv - :header-rows: 1 - :align: center - - - -Wind Loss Attributes for Steel Buildings ------------------------------------------------- - -The wind loss model in HAZUS classifies steel buildings into nine building classes: -1. three steel engineered residential building classes (SERBL, SERBM, and SERBH) -2. three steel engineered commercial building classes (SECBL, SECBM, and SECBH) and -3. three steel pre-engineered metal building systems (SPMBS, SPMBM, SPMBL). - -Their required attributes for wind loss modeling, the possible entries (values, terms) that -can be assigned for those attributes, and the basis for the ruleset developed to make that -assignment are summarized in :numref:`serb_attri`, :numref:`secb_attri`, :numref:`spmb_attri`:. -Note that these rulesets were developed -to reflect the likely attributes based on the year of construction and the code editions and -construction norms at that time. The corresponding time-evolving rulesets (PDFs and Python -scripts) are cross-referenced in :numref:`addinfo_ruleset_steel`. - -.. csv-table:: Additional HAZUS attributes assigned for steel engineered residential buildings (SERB): wind losses. - :name: serb_attri - :file: data/serb_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for steel engineered commercial buildings (SECB): wind losses. - :name: secb_attri - :file: data/secb_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for steel pre-engineered metal building systems (SPMB): wind losses. - :name: spmb_attri - :file: data/spmb_attributes.csv - :header-rows: 1 - :align: center - -.. list-table:: Additional details for rulesets assigning wind loss attributes for steel buildings - :name: addinfo_ruleset_steel - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - HAZUS Building Attribute Rulesets - Wind (SERBL-M-H) - - `Hazus Building Attribute Rulesets - Wind - SERBL-M-H.pdf `_ - - :download:`WindSERBRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (SECBL-M-H) - - `Hazus Building Attribute Rulesets - Wind - SECBL-M-H.pdf `_ - - :download:`WindSECBRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (SPMBS-M-L) - - `Hazus Building Attribute Rulesets - Wind - SPMBS-M-L.pdf `_ - - :download:`WindSPMBRulesets ` - - -Taking the attribute wind to wall ratio (**WWR**) as an example, the WWR attribute is assigned based on a -rule that calls upon the window area estimate from the building inventory (field: WindowArea). :numref:`wwr_attri` -provides the detailed rule that maps this variable to the WWR attribute. Note that WindowArea is a field -that can be estimated from streetview data, but this rule also demonstrates how the value can be estimated -based on industry norms (see explanation surrounding default value). This attribute is not assumed to evolve -with time. - -.. csv-table:: Ruleset for determining the window to wall ratio for steel engineered commercial buildings. - :name: wwr_attri - :file: data/example_steel_ruleset.csv - :header-rows: 1 - :align: center - - -Wind Loss Attributes for Concrete Buildings ------------------------------------------------- - -The wind loss model in HAZUS classifies steel buildings into 6 building classes: -1. three concrete engineered residential building classes (CERBL, CERBM, and CERBH) and -2. three concrete engineered commercial building classes (CECBL, CECBM, and CECBH). - -Their required attributes for wind loss modeling, the possible entries (values, terms) that can be assigned -for those attributes, and the basis for the ruleset developed to make that assignment are summarized in -:numref:`cerb_attri` and :numref:`cecb_attri`. Note that these rulesets were developed to reflect the likely -attributes based on the year of construction and the code editions and construction norms at that time. -The corresponding time-evolving rulesets (PDFs and Python scripts) are cross-referenced in :numref:`addinfo_ruleset_concrete`. - -.. csv-table:: Additional HAZUS attributes assigned for concrete engineered residential buildings (CERB): wind losses. - :name: cerb_attri - :file: data/cerb_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for concrete engineered commercial buildings (CECB): wind losses. - :name: cecb_attri - :file: data/cecb_attributes.csv - :header-rows: 1 - :align: center - -.. list-table:: Additional details for rulesets assigning wind loss attributes for concrete buildings. - :name: addinfo_ruleset_concrete - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - HAZUS Building Attribute Rulesets - Wind (CERBL-M-H) - - `Hazus Building Attribute Rulesets - Wind - CERBL-M-H.pdf `_ - - :download:`WindCERBRulesets ` - * - HAZUS Building Attribute Rulesets - Wind (CECBL-M-H) - - `Hazus Building Attribute Rulesets - Wind - CECBL-M-H.pdf `_ - - :download:`WindCECBRulesets ` - -Taking the attribute roof cover (RoofCvr) as an example, the RoofCvr attribute is assigned based on a -ruleset that calls upon the roof shape and year built from the building inventory. :numref:`rc_attri` -provides the detailed rule that maps these variables to the RoofCvr attribute. This provides an example of an -attribute that is inferred from construction practices based on when different roof cover products entered -the market. - -.. csv-table:: Ruleset for determining the window to wall ratio for concrete engineered residential buildings. - :name: rc_attri - :file: data/example_concrete_ruleset.csv - :header-rows: 1 - :align: center - - -Wind Loss Attributes for Manufactured Homes ------------------------------------------------- - -The wind loss model in HAZUS classifies manufactured homes (MH) into five building classes that are organized -into three groupings, based on phasing of revisions to Housing and Urban Development (HUD) guidelines: -1. manufactured homes built before 1976 (MHPHUD) -2. manufactured homes built after 1976 and before 1995 (MH76HUD) -3. manufactured homes built after 1994 (MH94HUDI, M94HUDII, MH94HUDIII). - -Their required attributes for wind loss modeling, the possible entries (values, terms) that can be assigned -for those attributes, and the basis for the ruleset developed to make that assignment are summarized in -:numref:`mh_attri`. ote that these rulesets were developed to reflect the likely -attributes based on the year of construction and the code editions and construction norms at that time. -The corresponding time-evolving rulesets (PDFs and Python scripts) are cross-referenced in :numref:`addinfo_ruleset_mh`. - -.. csv-table:: Additional HAZUS attributes assigned to Manufactured Homes (MH). - :name: mh_attri - :file: data/mh_attributes.csv - :header-rows: 1 - :align: center - -.. list-table:: Additional details for rulesets assigning wind loss attributes for manufactured homes. - :name: addinfo_ruleset_mh - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - HAZUS Building Attribute Rulesets - Wind (Manufactured Homes) - - `Hazus Building Attribute Rulesets - Wind - MH76HUD.pdf `_, - `Hazus Building Attribute Rulesets - Wind - MH94HUDI-II-III.pdf `_, - `Hazus Building Attribute Rulesets - Wind - MHPHUD.pdf `_ - - :download:`WindMHRulesets ` - -Taking the attribute tie down (TieDown) as an example, the ruleset in :numref:`td_attri` considers -the Year Built to determine if tie down use is governed by HUD standards based on the design -wind speed or if it is a voluntary action predating code requirements and thus is governed by -human subjects data. This provides an example of an attribute that is inferred from construction -practices based on when different roof cover products entered the market. - -.. csv-table:: Ruleset for determining the tie down for manufactured homes. - :name: td_attri - :file: data/example_mh_ruleset.csv - :header-rows: 1 - :align: center - - -Wind Loss Attributes for Essential Facilities ------------------------------------------------- - -The wind loss model in HAZUS futher classifies several groupings of essential facilities: -1. Fire Staions and Elementary Schools (HUEFFS, HUEFSS) -2. High Schools: 2-story and 3-story (HUEFSM, HUEFSL) -3. Hospitials: small, medium, large (HUEFHS, HUEFHM, HUEFHL) -4. Police Stations and Emergency Operations Centers (HUEFPS, HUEFEO) - -Their required attributes for wind loss modeling, the possible entries (values, terms) that can be -assigned for those attributes, and the basis for the ruleset developed to make that assignment are summarized -in :numref:`hu1_attri`, :numref:`hu2_attri`, :numref:`hu3_attri`, and :numref:`hu4_attri`. -Note that these rulesets were developed to reflect the likely attibutes based on the year of construction and -the code editions and construction norms at that time. The corresponding time-evolving rulesets (PDFs and Python scriots) -are cross-referenced in :numref:`addinfo_ruleset_ef`. - -.. csv-table:: Additional HAZUS attributes assigned for fire stations and elementary schools: wind losses. - :name: hu1_attri - :file: data/hu1_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for 2-story and 3-story high schools: wind losses. - :name: hu2_attri - :file: data/hu2_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned for hospitals: wind losses. - :name: hu3_attri - :file: data/hu3_attributes.csv - :header-rows: 1 - :align: center - -.. csv-table:: Additional HAZUS attributes assigned forpolice stations and emergency operation centers: wind losses. - :name: hu4_attri - :file: data/hu4_attributes.csv - :header-rows: 1 - :align: center - -.. list-table:: Additional details for rulesets assigning wind loss attributes for essential facilities. - :name: addinfo_ruleset_ef - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - HAZUS Building Attribute Rulesets - Wind (Essential Facilities) - - `Hazus Building Attribute Rulesets - Wind - HUEFFS-HUEFSS.pdf `_, - `Hazus Building Attribute Rulesets - Wind - HUEFHS-M-L.pdf `_, - `Hazus Building Attribute Rulesets - Wind - HUEFPS-HUEFEO.pdf `_, - `Hazus Building Attribute Rulesets - Wind - HUEFSM-L.pdf `_ - - :download:`WindEFRulesets ` - -Taking the attribute wind borne debris source (WindDebris) as an example, the WindDebris attribute is -assigned based on assumptions surrounding the zoning in areas where each essential facility class is -commonly constructed. These are generally A: Residential/Commercial or C: Residential, as summarized -in :numref:`ef_attri`. - -.. csv-table:: Ruleset for determining the wind borne debris for flood essential factilites. - :name: ef_attri - :file: data/example_ef_ruleset.csv - :header-rows: 1 - :align: center - - -Flood Loss Attributes ------------------------ - -The flood loss model in HAZUS focuses on a collection of attributes, some of which are already defined in -the building inventory (number of stories and occupancy type as defined in :ref:`lbl-testbed_AC_asset_representation_building_classification`), -while other building inventory fields like first floor elevation require adjustment. The new or adjusted -attributes required for the flood model are itemised in :numref:`flood_attri` with their possible -assignments (values, terms) and the ruleset developed to make those assignments. Note that these attributes -are generally not time evolving, with the exception of considering if the building was constructed after -Flood Insurance Rate Maps (FIRMs) were adopted (date varies by municipality). The corresponding -rulesets (PDFs and Python scripts) are cross-referenced in :numref:`addinfo_ruleset_flood`. - -.. csv-table:: Additional HAZUS attributes assigned for flood losses. - :name: flood_attri - :file: data/flood_attributes.csv - :header-rows: 1 - :align: center - -.. list-table:: Additional details for rulesets assigning flood loss attributes. - :name: addinfo_ruleset_flood - :header-rows: 1 - :align: center - - * - Ruleset Name - - Ruleset Definition Table - - Python script - * - HAZUS Building Attribute Rulesets - Flood - - `Hazus Building Attribute Rulesets - Flood - All Classes.pdf `_ - - :download:`FloodRulesets ` - -Taking the attribute first floor flood elevation (FirstFloorElev) as an example, -the FirstFloorElev attribute is assigned by adapting the building inventory field (FirstFloorHt1), -defined by computer vision methods (see :ref:`lbl-testbed_AC_asset_description_phase_iv`), -and adjusting it based on the conventions used to define this quantity based on the flood zone -(A-Zone vs. V-Zone), as summarized in :numref:`ffh_attri`. - -.. csv-table:: Ruleset for determining the first floor height for flood loss modeling. - :name: ffh_attri - :file: data/example_flood_ruleset.csv - :header-rows: 1 - :align: center - - -.. [Javeline19] - Javeline, D., & Kijewski-Correa, T. (2019). Coastal homeowners in a changing climate. Climatic Change, 152(2), 259-274. \ No newline at end of file diff --git a/docs/_sources/common/testbeds/atlantic_city/best_practices.rst.txt b/docs/_sources/common/testbeds/atlantic_city/best_practices.rst.txt deleted file mode 100644 index 4c5db6f85..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/best_practices.rst.txt +++ /dev/null @@ -1,54 +0,0 @@ -.. _lbl-testbed_AC_best_practices: - -************************** -Best Practices -************************** - -The process of constructing the **Atlantic County Inventory** for footprints beyond those in the -**Flood-Exposed Inventory** underscored a number of tasks/issues that are commonly encountered when constructing an inventory -in a location with sparse inventory data. Recommended best practices are summarized as follows: - -1. Inventories are based upon building footprint data which may be sourced from state/local authorities or - third parties, which should be selected based on known accuracy. State/local data is often the most accurate - as they have been quality assured through human oversight. In the absence of such data, select third-party - data that is hand drawn, when possible: 2017 Microsoft footprint data is preferable since it is hand-digitized - vs. 2018 Microsoft footprint data which is computer-generated. -2. Note that footprint data may still contain skewed buildings, offset outlines, individual buildings whose - close proximity caused them to be treated as a single building outline, or outlines that include - non-structural features. Thus footprint data may require additional processing to rectify such issues and - any adjustments to the footprints further requires recalculation of coordinates and coordinate-dependent - information. -3. Triangulate data sources to improve data quality, e.g., sanity-checking building classifications in tax - assessor data by using zoning or land use/land cover data, cross-checking state tax assessor data against - county tax assessor data. -4. Footprints need to be assigned parcel data from the local tax assessor. If a footprint falls within parcel, - the footprint should receive that parcel’s attributes, noting that a parcel may have multiple footprints - within it: If footprint falls between multiple parcels, assign it the parcel information with a higher level of - flood risk based on the FEMA-designated flood zone, where risk goes from highest to lowest according to: VE, - AE, AO, AH, A, X. If footprint falls between multiple parcels and both with the same FEMA flood zone, - it receives the parcel information for the parcel with the highest overlapping area. If a footprint falls - outside a parcel, it is assigned the attributes of the nearest parcel. -5. Once footprints are identified, assign default values for each required attribute in the Building Inventory. - These default values should be selected using engineering judgement to represent the most common/likely - attribute expected or conservatively from the perspective of anticipated losses (i.e., picking the more - vulnerable attribute option). These initial assignments are then updated if additional data is available - to make a more faithful attribute assignment. As part of the default assignment class, pick a building - typology that is prevalent in the locale as your default building. For example, NJDEP selected Single - Family Dwelling/Residence, made of Wood (stud-framed) with Slab-on-Grade foundation, shingles as its roof - covering, and siding as its wall covering (specific material types may be specified, e.g., asphalt shingle - or vinyl siding, depending on the granularity of the damage/loss models). -6. Flood Insurance Rate Maps (FIRMs) are used to define the FEMA-designated flood zone for the building site. - In some locations, the most updated FIRMs may not be officially released, in which case preliminary FIRMs - should be used as they offer the best contemporary flood hazard data. -7. Elevation certificates may be available from local authorities and can be consulted to establish the - elevation of the lowest horizontal structural member for food risk assessments. Most risk assessments will - require the top of the bottom occupied floor, which will be defined relative to the lowest adjacent (finished) - grade (LAG). Digital Elevation Models (DEMs) can also be consulted to establish building elevations. Note that - the SimCenter’s image processing tools minimize the need for these data sources. - - - - - - - diff --git a/docs/_sources/common/testbeds/atlantic_city/damage_and_loss.rst.txt b/docs/_sources/common/testbeds/atlantic_city/damage_and_loss.rst.txt deleted file mode 100644 index 96e9a7253..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/damage_and_loss.rst.txt +++ /dev/null @@ -1,129 +0,0 @@ -.. _lbl-testbed_AC_damage_and_loss: - -************************** -Damage and Loss Estimation -************************** - -Damage and loss functions from the HAZUS Hurricane Damage and Loss Model ([FEMA18a_], [FEMA18b_]) -were implemented in `PELICUN `_ to support loss assessment for -all configurations of buildings currently supported by HAZUS for wind and flood hazards. These -configurations represent all the possible unique configurations of building attributes associated -with each building class (defined by material) and subclass (defined by occupancy), as discussed in -:ref:`testbed_AC_asset_representation`. For example, wood (class) single-family homes 1-2+ stories -(subclass) would have damage and loss functions associated with each unique combination of attributes -used to define key features of the load path and components (e.g., roof shape, secondary water resistance, -roof deck attachment, roof-wall connection, shutters, garage), as well as the exposure (terrain roughness). - -The HAZUS damage and loss functions consist of tabular data to describe the fragility or expected losses as a -function of hazard intensity. These data were used to calibrate coupled damage and loss models to estimate -the damage state and the corresponding expected loss ratio for each building configuration in PELICUN. -Continuous functions (Normal or Lognormal cumulative density functions) were fit to the synthetic data -by maximizing the likelihood of the observations assuming a Binomial distribution of outcomes at each -discrete hazard intensity in the HAZUS database. Coupling the damage and loss models in this way ensures -more realistic outcomes (e.g., a building with no damage cannot have total loss when the two models are -coupled), and the parameterized models allow for more efficient storage and computations within the workflow. - -1. For the **wind loss assessment**, the HAZUS functions consist of tabular data to - describe the fragility or expected losses as a function of peak wind speed (PWS). - Only data up to 200 mph wind speeds were used because the substantial reduction in the - number of observations introduces significant measurement error above that level (:numref:`wind_df`). - -.. figure:: figure/wind_damage_functions.png - :name: wind_df - :align: center - :figclass: align-center - :figwidth: 1000 - - Fitted HAZUS wind damage functions for example building classes. - -2. For the **flood loss assessment**, the HAZUS functions are in the form of depth-damage ratio curves, relating - the peak water depth (PWD) of flooding (in feet), as measured from the top of the first finished floor, - to a percent of the total replacement cost of the asset (:numref:`flood_ddc`). - -.. figure:: figure/flood_depth_damage_curves.png - :name: flood_ddc - :align: center - :figclass: align-center - :figwidth: 1000 - - Depth-damage ratio curves for the flood loss assessment. - -The **total loss** from wind and flood damages are estimated by combining the "wind-only" and "flood-only" -losses following the combination rule in [FEMA18a]_. The primary motivation for the combined wind and -flood loss methodology is to avoid “double counting” of damage. At a minimum, the combined wind and -flood loss must be at least the larger of the wind-only or the flood-only loss. At a maximum, the combined -loss must be no larger than the lesser of the sum of the wind-only and flood-only losses -or 100% of the building (or contents) replacement value. These constraints can be written -as: - -.. math:: - - max(L_{wind}, L_{flood}) \leq L_{combined} \leq min(L_{wind}+L_{flood}, 1.00) - -where :math:`L_{wind}` is the wind-only loss ratio, :math:`L_{flood}` is the flood-only loss ratio, and :math:`L_{combined}` -is the combined loss ratio. The HAZUS combination rule first assumes that the wind-induced damage and flood-induced damage -are spread uniformly and randomly over a building. In this idealized case, the two damage mechanisms can be treated as -independent, and the expected combined loss ratio is simply as: - -.. math:: - - L_{combined} = L_{wind} + L_{flood} - L_{wind} \times L_{flood} - -However, it is nonetheless clear that neither wind nor storm surge damages are -uniformly and randomly distributed throughout a structure. Wind damage is most -frequently initiated at the roof and fenestrations (i.e., windows, -doors, or other openings in the building envelope), whereas flood damage is most -frequently initiated at the lowest elevations of the structure (e.g., basement or first -finished floor) and progresses upward through the structure as the depth of flooding -increases. HAZUS used an approach for incorporating the non-uniformity of -wind and flood damage into the combined loss methodology, which is based on -allocating wind and flood losses to building *sub-assemblies* as a function of the building -type and the overall wind-only and flood-only loss estimate. - -This so-called building sub-assembly approach can more accurately apply the combination calculation above -to each sub-assembly instead of applying it to the entire building. Specifically, HAZUS groups the loss -components into a consistent set of building sub-assemblies: - -.. note:: - HAZUS building sub-assemblies ([FEMA18a]_): - 1. Foundation: Includes site work, footings, and walls, slabs, piers or piles. - 2. Below First Floor: Items other than the foundation that are located below the first floor of the structure such as mechanical equipment, stairways, parking pads, break away flood walls, etc. - 3. Structure Framing: Includes all of the main load carrying structural members of the building below the roof framing and above the foundation. - 4. Roof Covering: Includes the roof membrane material and flashing. - 5. Roof Framing: Includes trusses, rafters, and sheathing. - 6. Exterior Walls: Includes wall covering, windows, exterior doors, and insulation. - 7. Interiors: Includes interior wall and floor framing, drywall, paint, interior trim, floor coverings, cabinets, counters, mechanical, and electrical - -Hence, the combination is conducted at each sub-assembly level and the total combined loss ratio is the -sum of combined sub-assembly loss ratios: - -.. math:: - - L_{combined} = \sum\limits_{i=1}^7 L_{wind,i} + L_{flood,i} - L_{wind,i} \times L_{flood,i} - -where :math:`L_{wind,i}` is the wind-only loss ratio of the :math:`i^{th}` sub-assembly, and -:math:`L_{flood,i}` is the flood-only loss ratio of the :math:`i^{th}` sub-assembly. These sub-assembly -loss ratios are computed as a percent of the total building loss ratio. The percentages are based on the -:numref:`wind_comp` and :numref:`flood_comp` that are developed per the HAZUS methodology and data table ([FEMA18a]_). - -.. csv-table:: Sub-assembly wind-only loss contribution ratio table. - :name: wind_comp - :file: data/wind_sub.csv - :header-rows: 1 - :align: center - -.. csv-table:: Sub-assembly flood-only loss contribution ratio table. - :name: flood_comp - :file: data/flood_sub.csv - :header-rows: 1 - :align: center - - -.. [FEMA18a] - FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Hurricane Model Technical Manual, Federal Emergency Management Agency, Washington D.C., 718p. - -.. [FEMA18b] - FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Flood Model Technical Manual, Federal Emergency Management Agency, Washington D.C., 569p. - -.. [Javeline19] - Javeline, D. and Kijewski-Correa, T. (2019) “Coastal Homeowners in a Changing Climate,” Climatic Change. 152(2), 259-276 https://doi.org/10.1007/s10584-018-2257-4 diff --git a/docs/_sources/common/testbeds/atlantic_city/example_outputs.rst.txt b/docs/_sources/common/testbeds/atlantic_city/example_outputs.rst.txt deleted file mode 100644 index 6cc886bb5..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/example_outputs.rst.txt +++ /dev/null @@ -1,146 +0,0 @@ -.. _lbl-testbed_AC_example_outputs: - -************************** -Example Outputs -************************** - -The estimated wind-only, flood-only, and total losses under the four hurricane -scenarios (:numref:`hurricane_cat`) are shown in :numref:`dl_c2` to :numref:`dl_c5`. - -.. figure:: figure/DL_category2.png - :name: dl_c2 - :align: center - :figclass: align-center - :figwidth: 800 - - Estimated regional loss maps for the **Category 2** hurricane. - -.. figure:: figure/DL_category3.png - :name: dl_c3 - :align: center - :figclass: align-center - :figwidth: 800 - - Estimated regional loss maps for the **Category 3** hurricane. - -.. figure:: figure/DL_category4.png - :name: dl_c4 - :align: center - :figclass: align-center - :figwidth: 800 - - Estimated regional loss maps for the **Category 4** hurricane. - -.. figure:: figure/DL_category5.png - :name: dl_c5 - :align: center - :figclass: align-center - :figwidth: 800 - - Estimated regional loss maps for the **Category 5** hurricane. - -Average expected loss ratios are also computed for individual cities, which are -summarized in :numref:`cl_c2` to :numref:`cl_c5` - -.. figure:: figure/city_loss_c2.png - :name: cl_c2 - :align: center - :figclass: align-center - :figwidth: 800 - - City-wise average expected loss ratios (**Category 2** hurricane). - -.. figure:: figure/city_loss_c3.png - :name: cl_c3 - :align: center - :figclass: align-center - :figwidth: 800 - - City-wise average expected loss ratios (**Category 3** hurricane). - -.. figure:: figure/city_loss_c4.png - :name: cl_c4 - :align: center - :figclass: align-center - :figwidth: 800 - - City-wise average expected loss ratios (**Category 4** hurricane). - -.. figure:: figure/city_loss_c5.png - :name: cl_c5 - :align: center - :figclass: align-center - :figwidth: 800 - - City-wise average expected loss ratios (**Category 5** hurricane). - -For the top five cities with most assets in the building inventory, the average -expected wind losses are computed for different built eras. Buildings before 1980s generally -have relatively higher wind loss ratios where 1970s is found to be the worst decade for -Atlantic City, Brigantine, and Galloway. Since 1980, the building performance is improved -where the post-2000 buildings are found to behave much better than buildings in the other groups. - -.. figure:: figure/atlantic_wind_loss.png - :name: wl_atlantic - :align: center - :figclass: align-center - :figwidth: 800 - - Average expected wind loss ratios (Atlantic City). - -.. figure:: figure/brigantine_wind_loss.png - :name: wl_brigantine - :align: center - :figclass: align-center - :figwidth: 800 - - Average expected wind loss ratios (Brigantine). - -.. figure:: figure/galloway_wind_loss.png - :name: wl_galloway - :align: center - :figclass: align-center - :figwidth: 800 - - Average expected wind loss ratios (Galloway). - -.. figure:: figure/margate_wind_loss.png - :name: wl_margate - :align: center - :figclass: align-center - :figwidth: 800 - - Average expected wind loss ratios (Margate City). - -.. figure:: figure/ventor_wind_loss.png - :name: wl_ventor - :align: center - :figclass: align-center - :figwidth: 800 - - Average expected wind loss ratios (Ventor City). - - -The results from the loss estimation for each scenario above (Category 2-5) and each available inventory, -can be accessed (:numref:`example_results`). - -.. list-table:: Access points for example results - :name: example_results - :header-rows: 1 - :align: center - - * - Scenario - - Inventory Options - - Location - * - Scaled Category 2 - - Flood-Exposed Inventory, Exploration Inventory - - :download:`Category2.zip ` - * - Scaled Category 3 - - Flood-Exposed Inventory, Exploration Inventory - - :download:`Category2.zip ` - * - Scaled Category 4 - - Flood-Exposed Inventory, Exploration Inventory - - :download:`Category2.zip ` - * - Category 5 - - Flood-Exposed Inventory, Exploration Inventory - - :download:`Category2.zip ` diff --git a/docs/_sources/common/testbeds/atlantic_city/feedback_request.rst.txt b/docs/_sources/common/testbeds/atlantic_city/feedback_request.rst.txt deleted file mode 100644 index 174d87db3..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/feedback_request.rst.txt +++ /dev/null @@ -1,11 +0,0 @@ -.. _lbl-testbed_AC_feedback_request: - -****************************** -Feedback and Data Request -****************************** - -If you have any feedback, data requests, or questions, please post on the |messageBoard| on SimCenter Forum. -When creating a `New Topic`it would be helpful if you could place an indication of your post in the `Subject` area: - -1. General feedback, e.g., FEEDBACK: Questions on the testbed. -2. Data requests, e.g., DATA: Request the sample data of the testbed. \ No newline at end of file diff --git a/docs/_sources/common/testbeds/atlantic_city/future_refinements.rst.txt b/docs/_sources/common/testbeds/atlantic_city/future_refinements.rst.txt deleted file mode 100644 index 5c4db8d34..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/future_refinements.rst.txt +++ /dev/null @@ -1,66 +0,0 @@ -.. _lbl-testbed_AC_future_refinements: - -**************************************** -Opportunity Areas for Future Refinements -**************************************** - -This testbed and its backing workflows should be viewed as a sandbox and scaffold, -respectively, within which the community can explore different scenarios and develop -new capabilities. The following list itemizes some areas where contribution from the -community is especially welcome: - -1. The current use of HAZUS for damage and loss modeling limits the buildings under - consideration to 6 stories and under. Thus the user community is invited to support - the extension of PELICUN to buildings taller than 6 stories. - -2. Extensions to taller buildings will require further expansion of the building - inventory’s fields to capture attributes relevant to those classes of construction. - Methods to mine relevant data from imagery or other third party data sources, e.g., - Emporis, will provide welcome extensions to the Asset Description approaches described herein. - -3. The testbed would benefit from validation studies that include ground truthing the - generated inventories as well as the projected damage and loss. Those with access to - damage data, particularly in areas affected significantly by Superstorm Sandy, may use - the testbed to conduct such validation studies. The methodologies used to construct the - inventory for Atlantic County can easily be repeated in more northern counties of the state, - where damage was more significant, as all the flood-exposed inventory data and hazard descriptions - available through the SimCenter have coverage over the entire state. The rulesets are similarly - applicable statewide. - -4. Currently the workflow calculates damage and monetary loss; coupling the workflow with other - social, societal or economic models, will provide opportunities to more robustly explore the - impacts of hazard events, mitigation investments and development decisions on community resilience. - The creation of techniques to automatically scrape and fuse data from the social, human and behavioral - sciences will ensure those datasets can be generated in a manner similar to those used for the - building inventory itself. - -5. A number of approximations and assumptions were made in the generation of the building inventory - (see :ref:`lbl-testbed_AC_asset_description`). There is considerable opportunity to expand, enrich and improve upon - methodologies for automated inventory generation, particularly to generate other attributes necessary - as the workflow advances toward component level damage quantification. - -6. The SimCenter aspires to incorporate increasing levels of fidelity in its characterization of hazards, - modeling of buildings (to support application of pressures/loads and structural analysis), and ability - to describe damage at the component level, with fault-trees that capture cascading damage sequences - resulting from breaches of the building envelope. Thus there is considerable need for community - research contributions such as libraries of fragilities, archetype building models, and catalogs - of high-fidelity hazard simulations (hindcasts of historical events or synthetic storm data). - This is especially the case of coastal hazards. With aspirations to replicate this workflow in other - regions, these contributions need not be confined to New Jersey/Atlantic Coast. Their integration into - the testbed can demonstrate how the contributions of individual researchers can aggregate to evaluate - impact on much larger scales. - -7. The testbed does not explicitly treat the effects of debris (wind-borne or surge-transported), nor - are any of the flow fields translated into pressures acting on individual buildings to enable the - execution of structural analyses. Extending the workflow to tall buildings creates opportunities for - response simulation to estimate drifts or other EDPs for more dynamically sensitive structures under - wind. However, similar opportunities to translate geospatially varying hazards into loads on a given - structure can be seized to increase the workflow's overall fidelity. - - -.. note:: - - Community members who wish to contribute to the hurricane testbed in any of the above (or other) areas can - express their interest by completing this `survey `_. - - diff --git a/docs/_sources/common/testbeds/atlantic_city/hazard_characterization.rst.txt b/docs/_sources/common/testbeds/atlantic_city/hazard_characterization.rst.txt deleted file mode 100644 index e37cb92d2..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/hazard_characterization.rst.txt +++ /dev/null @@ -1,292 +0,0 @@ -.. _lbl-testbed_AC_hazard_characterization: - -*********************** -Hazard Characterization -*********************** - -Both the wind and flood hazards affect the building inventory in this testbed. As the initial implementation of -the regional assessment workflow incorporates the HAZUS Hurricane Damage and Loss Assessment methodology, -hazards are quantified by two intensity measures: Peak Wind Speed (PWS) and Peak Water Depth (PWD). -The PWS refers to the maximum 3-second gust measured at the reference height of 10m in open terrain -(equivalent to Exposure C in ASCE 7-16). The PWD is the maximum depth of flooding (height of storm -surge above grade) during the storm. - -The following sections will introduce the options for generating these two types of hazard inputs using -either a historical scenario or a synthetic storm scenario, as discussed in the following sections. -Note that as part of the Asset Representation Process (see :ref:`lbl-testbed_AC_asset_representation`), the design wind speeds from -ASCE 7 are already included for each building footprint for reference. - -.. _lbl-testbed_AC_hazard_characterization_synthetic: - -Synthetic Storm Scenario -======================== - -An Atlantic City landfall scenario was generated using the Storm Hazard Projection Tool developed in the -NJcoast project ([NJCoast20_]). The constructed hazard scenario uses NJcoast’s basic simulation option, -which identifies the 25 hurricane tracks from the SHP tool’s surrogate model that match the targeted -storm scenario, in this case: a hurricane with Category 5 intensity (central pressure differential -of 75-100 mbar, radius of maximum winds of 15.4 to 98 mi) making landfall near the Atlantic City -Beach Patrol Station (39.348308° N, -74.452544° W) under average tides. This scenario is sufficient -to inundate coastal areas in the testbed geography and generate significant wave run-up in some -locales. The SHP Tool generates these through the following underlying computational models. - -Wind Modeling --------------- - -The SHP Tool generates its wind fields using a highly efficient, linear analytical model for the boundary -layer winds of a moving hurricane developed by Snaiki and Wu ([Snaiki17a_], [Snaiki17b_]). -To account for the exposure in each New Jersey county, an effective roughness length (weighted average) -of the upwind terrain is used based on the Land Use/Land Cover data reported by the state’s Bureau of -GIS. In order to generate a wind field, this model requires the time-evolving hurricane track, -characterized by the position (latitude, longitude), the central pressure, the radius of maximum winds, -and the forward speed. While the model is -fully height-resolving and time-evolving, for a given input hurricane scenario, the wind hazard is -characterized by the maximum 10-minute mean wind speed observed during the entire hurricane track. -This is reported at the reference height of 10 m over a uniform grid (0.85-mile spacing, 1.37 km) -across the entire state in miles per hour, which is then accordingly adjusted for compatibility with -the averaging interval assumed by the HAZUS Hurricane Damage and Loss Model. Since the wind speed -(:math:`V(600s, 10m, z_0)`) from the NJcoast SHP Tool is averaged over the time window of 1 hour, -a number of standard conversions (see :ref:`lbl-testbed_AC_wind_speed_conversion`) -parse the wind speed to the 3-second and open-terrain PWS -(i.e., :math:`V(3s, 10m, Exposure C)`). - -As the initial developer of this model has made the underlying code available for this testbed, -users have two ways to engage this model to generate wind fields for this testbed: -1. Users can adopt the aforementioned default sythetic Category 5 scenario striking Atlantic City -2. Users can generate a custom storm scenario by providing the requied inputs into this linear -1. analytical model to generate a customized windfield for use with this testbed. - -Wind fields described by either approach are then locally interpolated to the coordiantes associated with each -footprint. The resulting 3s-gust peak wind speed (PWS) ranges from 178 mph to 191 mph given the simulated -Category-5 hurricane event (:numref:`pws`). Because the SPH model tracks the maximum wind speed over the -entire hurricane time history - so the inland cities are subjected to slightly higher wind speed than -the coastal cities. - -.. figure:: figure/pws.png - :name: pws - :align: center - :figclass: align-center - :figwidth: 1000 - - Interpolated peak wind speed (3s-gust) for each asset in the inventory. - -.. _lbl-testbed_AC_hazard_characterization_storm: - -Storm Surge Modeling ---------------------- - -Coastal hazard descriptions use the outputs of the aforementioned SHP Tool, which estimates storm -surge and total run up due to the breaking of near-shore waves for an arbitrary hurricane scenario -using surrogate modeling techniques ([Jia13]_, [Jia15]_). The SHP Tool -leverages the US Army Corps of Engineers (USACE) NACCS: North Atlantic Coastal -Comprehensive Study ([NadalCaraballo15]_), which contains over 1000 high-fidelity -numerical simulations of hurricanes using the ADCIRC ([Luettich92]_) storm surge model, -coupled with STWAVE ([Smith01]_) to capture the additional effects of waves offshore. -It is important to note that the grid adopted for the NACCS execution of ADCIRC does extend -into the riverine systems to capture the storm surge influx; however, the grid extensions -up-river have limited extent and there was no explicit modeling of the riverine systems -and interactions between those systems and the storm surge. The -NACCS database was further enhanced with wave run-up simulations that capture the interaction of -the waves with site-specific bathymetry/topography (2015 USGS CoNED Topobathy DEM: New -Jersey and Delaware (1888 - 2014) dataset) to project the total run up inland, along transects spaced -0.5 km apart along the New Jersey coast. This results in a prediction of storm surge height at the -USACE-defined save points along the New Jersey coast that are, on average, 200 m apart, with finer -resolution in areas with complex topographies. The SHP Tool was executed for the testbed scenario -to estimate the depth of storm surge above ground, geospatially interpolated to 110,000 nearshore -locations at approximately 120 m spacing, accompanied by the Limit of Moderate Wave Action -(LiMWA) and wet-dry boundary respectively defining the extent of damaging waves and inundation -over land at each of the transect points. These are then interpolated to the location of the coastal -parcels to express the property exposure to storm surge (:numref:`pwd`). In the initial implementation, as demonstrated -in this test, only the peak water depth (PWD) was considered, which will be used in the HAZUS -Flood Damage and Loss Assessment. - -.. figure:: figure/pwd.png - :name: pwd - :align: center - :figclass: align-center - :figwidth: 1000 - - Interpolated peak water depth for each asset in the inventory. - -Multiple Category Analysis (MCA) ---------------------------------- - -Note that the resulting 3s-gust PWS values by this Category-5 hurricane is much higher than -the design wind speed specified by ASCE 7-16 ([ASCE16]_) for the Atlantic County which ranges -from 105 mph to 115 mph. Since this extreme scenario bears a small likelihood, this testbed -also scales the wind and flood water field down to lower categories to conduct the so-called -Multiple Category Analysis to exam the building performance under different intense scenarios -(:numref:`hurricane_cat`) and were used later in the Verification Results (see :ref:`lbl-testbed_AC_sample_results`). - -.. table:: Scaled peak wind speed and peak water depth for different hurricane categories. - :name: hurricane_cat - - +-----------------------+-----------+-----------+-----------+-----------+ - | Hurricane Category | 2 | 3 | 4 | 5 | - +-----------------------+-----------+-----------+-----------+-----------+ - | Peak Wind Speed (mph) | 101 - 108 | 119 - 127 | 136 - 145 | 178 - 191 | - +-----------------------+-----------+-----------+-----------+-----------+ - | Peak Water Depth (ft) | 0 - 7 | 0 - 11 | 0 - 15 | 0 - 18 | - +-----------------------+-----------+-----------+-----------+-----------+ - - -Users can access the synthetic wind field and storm surge inputs for the defined scenario, as well as the suite -created for the MCA (:numref:`synthetic_data`). - -.. list-table:: Access points for synthetic storm scenario files - :name: synthetic_data - :header-rows: 1 - :align: center - - * - Hazard - - Access Point - * - Wind Field - - :download:`Synthetic wind data ` - * - Storm Surge - - :download:`Synthetic storm surge data ` - -Historical Storm Scenario -========================== - -Hindcast simulations of historical storm events are equally valuable, particularly when they are coupled -with observations of damage and loss across an inventory. As such this testbed includes the option to use -existing hindcast data from established community providers as input to the loss estimation workflow. -New Jersey’s most notable storm event in recent history was Superstorm Sandy (2012). According to [NJDEP15]_ -and [USDOC13]_, Sandy's devastation included 346,000 homes damaged. The New Jersey State Hazard Mitigation -Plan [NJSHMP]_ further notes that storm surge accounts for 90% of the deaths and property damage during -hurricanes in this region. While Atlantic County was designated as a “Sandy-Affected Community” -by FEMA and the State of New Jersey, the wind and storm surge intensities in the county were significantly -less than those observed in the more northern counties. Nonetheless, these historical inputs are provided -to demonstrate the workflow’s ability to support hindcast evaluations of damage and loss in actual storm events. - -Wind Modeling --------------- - -Hindcast wind fields for this event were made available by Peter Vickery and Applied Research Associates (ARA). -Their hurricane model derives wind speeds based on numerically solving the differential equations of a -translating storm and iteratively calibrating based on field observations over the weeks following an event. -The ARA_Example.zip provides the peak 3-s gust peak wind speed field of Hurricane Sandy on a grid that can be -directly used in the presented hurricane workflow, as visualized in :numref:`ara_pws` for Atlantic County. - -.. figure:: figure/ARA_PWS.png - :name: ara_pws - :align: center - :figclass: align-center - :figwidth: 500 - - ARA 3-s gust peak wind speed (3-s gust at 10 m) in Atlantic County during Hurricane Sandy. - -Alternatively, users can also use other available wind field resources. For instance, -`RMS Legacy Archive `_ provides access to -historical hurricane events including the `Superstorm Sandy `_ -for an alternate description of the field. Similar to the ARA peak wind speed field, in order to run the workflow, users -would first convert the data from other resources to the format as shown in :download:`ARA_Example.zip `. - -Storm Surge Modeling ---------------------- - -ADCIRC hindcast of Superstorm Sandy was generated by the Westerink Group at the University of Notre Dame and -made available to the SimCentetr. :numref:`adcirc_pwd` shows the peak storm surge from the hindcast. Note that -the scope of the hindcast focused on the heavier-impacted regions of New York and Northern New Jersey, -which were resolved with a finer mesh than more southern counties like Atlantic County, i.e., ~0.5 km (New York and Norther New Jersey) vs. ~3 km (Southern counties) between two closest nodes. In futher constrast with the NACCS ADCIRC runs referenced in :ref:`lbl-testbed_AC_hazard_characterization_storm`, -the grids adopted for the Sandy hindcast in this region of New Jersey did not extend into the riverine systems. Noting these -limits of the simulation, peak water depth over land displayed in :numref:`adcirc_sitepwd` assumes zero values in the rivering -systems and at any point inland of the grid points shown in :numref:`adcirc_waterelev`. The -:download:`ADCIRC_Example.zip ` provides the peak water depth grid that can be used in -the presented hurricane workflow. - -.. figure:: figure/ADCIRC_PWD.png - :name: adcirc_pwd - :align: center - :figclass: align-center - :figwidth: 500 - - Simulated storm surge field of Hurricane Sandy by ADCIRC (by courtesy of Dr. Westerink). - -.. figure:: figure/ADCIRC_waterelev.png - :name: adcirc_waterelev - :align: center - :figclass: align-center - :figwidth: 500 - - Simulated water elevation of Hurricane Sandy by ADCIRC (Atlantic County). - -.. figure:: figure/ADCIRC_sitePWD.png - :name: adcirc_sitepwd - :align: center - :figclass: align-center - :figwidth: 500 - - Simulated water depth over land for Hurricane Sandy by ADCIRC (Atlantic County). - -.. list-table:: Access points for Superstorm Sandy files - :name: superstorm_data - :header-rows: 1 - :align: center - - * - Hazard - - Access Point - * - Wind Field - - :download:`ARA_Example.zip ` - * - Storm Surge - - :download:`ADCIRC_Example.zip ` - - -.. [Snaiki17a] - Snaiki, R. and Wu, T. (2017a) “Modeling tropical cyclone boundary layer: Height-resolving - pressure and wind fields,” Journal of Wind Engineering and Industrial Aerodynamics, 170, 18-27. - -.. [Snaiki17b] - Snaiki, R. and Wu, T. (2017b) “A linear height-resolving wind field model for tropical - cyclone boundary layer,” Journal of Wind Engineering and Industrial Aerodynamics, 171, 248-260. - -.. [ATC20] - ATC (2020b), ATC Hazards By Location, https://hazards.atcouncil.org/, Applied Technology Council, Redwood City, CA. - -.. [NJCoast20] - NJ Coast (2020), Storm Hazard Projection Tool, NJ Coast, https://njcoast.us/resources-shp/ - -.. [ASCE16] - ASCE (2016), Minimum Design Loads for Buildings and Other Structures, ASCE 7-16, - American Society of Civil Engineers. - -.. [ESDU02] - Engineering Sciences Data Unit (ESDU). (2002). “Strong winds in the atmospheric boundary - layer—Part 2: Discrete gust speeds.” ESDU International plc, London, U.K. - -.. [Jia13] - Jia G. and A. A. Taflanidis (2013) "Kriging metamodeling for approximation of high-dimensional - wave and surge responses in real-time storm/hurricane risk assessment," Computer Methods in - Applied Mechanics and Engineering, V(261-262), 24-38. - -.. [Jia15] - Jia G., A. A. Taflanidis, N. C. Nadal-Caraballo, J. Melby, A. Kennedy, and J. Smith (2015) "Surrogate - modeling for peak and time dependent storm surge prediction over an extended coastal region using - an existing database of synthetic storms," Natural Hazards, V81, 909-938 - -.. [NadalCaraballo15] - Nadal‐Caraballo N.C, J. A. Melby, V. M. Gonzalez, and A. T. Cox (2015), North Atlantic Coast - Comprehensive Study – Coastal Storm Hazards from Virginia to Maine, ERDC/CHL TR-15-5, U.S. - Army Engineer Research and Development Center, Vicksburg, MS. - -.. [Luettich92] - Luettich R.A, J. J. Westerink, and N. W. Scheffner (1992), ADCIRC: An advanced three-dimensional - circulation model for shelves, coasts, and estuaries. Report 1. Theory and methodology of ADCIRC- - 2DDI and ADCIRC-3DL, Dredging Research Program Technical Report DRP-92-6, U.S Army - Engineers Waterways Experiment Station, Vicksburg, MS. - -.. [Smith01] - Smith J.M, A. R. Sherlock, and D. T. Resio (2001) "STWAVE: Steady-state spectral wave model user's - manual for STWAVE, Version 3.0," Defense Technical Information Center, US Army Corps of - Engineering, Vicksburg, MS. - -.. [USDOC13] - U.S. Department of Commerce (2013), Hurricne Sandy: Potential Economic Activity Lost and Gained in New - Jersey and New York. - -.. [NJDEP15] - New Jersey Department of Environmental Protection (NJDEP) (2015), Damage Assessment - Report on the Effects of Hurricane Sandy on the State of New Jersey's Natural Resources. - -.. [NJSHMP] - State of New Jersey Office of Emergency Management (2012), The State of New Jersey's Hazard Mitigation Plan, http://ready.nj.gov/mitigation/2012-mitigation-plan.shtml. diff --git a/docs/_sources/common/testbeds/atlantic_city/index.rst.txt b/docs/_sources/common/testbeds/atlantic_city/index.rst.txt deleted file mode 100644 index adf47305b..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/index.rst.txt +++ /dev/null @@ -1,99 +0,0 @@ -.. _lbl-testbed_Atlantic_City: - -******************* -Atlantic County, NJ -******************* - - -**Acknowledgements** - -A number of members of the SimCenter Team assisted with this testbed’s development and its documentation: -Adam Zsarnoczay, Ajay Harish, Barbaros Cetiner, Charles Wang, Claudio Perez, Joanna Zou, Kuanshi Zhong, Stevan Gavrilovic, and Wael Elhaddad. -The testbed conceptualization was guided by Tracy Tracy Kijewski-Correa (University of Notre Dame), -with implementation supervised by Frank McKenna (University of California Berkeley). -Additional guidance was offered by Greg Deierlein (Stanford University), Andrew Kennedy -(University of Notre Dame), and Matt Schoettler (University of California Berkeley). - -The Hazard Characterization leveraged models, software and simulations executed by the following groups, -whose collaboration is greatly appreciated: - -The NJcoast project, with storm surge surrogate model developed by Alexandros Taflanidis (University of Notre Dame) -in collaboration with Andrew Kennedy (University of Notre Dame) and wind field model contributed by Teng Wu (University at Buffalo) -Superstorm Sandy ADCIRC hindcast results for storm surge provided by Joannes Westerink (University of Notre Dame) -and wind fields made available by Peter Vickery (Applied Research Associates). - -Additional information required for Asset Description and Asset Representation was made possible through the -ongoing collaboration between the University of Notre dame and the New Jersey Department of Community Affairs (NJ DCA) -through the NJcoast project. NJ DCA’s Keith Henderson’s sustained support and collaboration is greatly appreciated. - -.. list-table:: Documentation Version History - :name: doc_version - :header-rows: 1 - :align: center - - * - Version - - Release Date - - Update - * - 1.0 - - 04/2021 - - Initial release - - - -**Preface** - -This documentation is intended to introduce the implementation of the SimCenter’s hurricane -regional loss modeling workflow in the context of Atlantic City (Atlantic County), New Jersey. -While certain aspects of the workflow are unchanged in a given application context, this -testbed specifically demonstrates how building inventories can be constructed through -automated processes that fuse different data sources to enrich parcel data, using SimCenter -applications and heuristic rulesets grounded in local codes/standards and normative -construction practices. Given the significance of the building inventory generation for this -testbed, this documentation was written in response to two primary audiences/use cases: - -**Case 1**: End users who wish to use the testbed to explore specific research questions such as: -1. the impact of different hurricane scenarios beyond those provided herein -2. the potential benefits of various mitigation efforts (changing select attribute assignments and/or damage/loss descriptions) -3. the benefits of more refined damage/loss models, particularly for coastal hazards - -Such individuals may not wish to generate their own inventories, but require some background in order -to meaningfully interpret results. This documentation will enhance their understanding of the various -assumptions made in generating these inventories and assigning the attributes required for the adopted -loss models. Use Case 1 generally requires skill sets in :ref:`lbl-testbed_AC_hazard_characterization` and -:ref:`lbl-testbed_AC_damage_and_loss`. - -**Case 2**: Users who seek to develop building inventories beyond Atlantic County, NJ will benefit from a -deeper understanding of the techniques, rulesets and scripts used to generate this building inventory. -In addition to the explanations that follow, this documentation is accompanied by detailed rulesets used -for building and attribute assignment -(`SimCenter Hurricane Testbed: Inventory Documentation `_), -as well as their implementation as Python scripts (`auto_HU_NJ.py `_). -These provide templates that such users can potentially -refine, extend and replicate this testbed’s process for Building Inventory generation beyond the current -application in Atlantic County. Use Case 2 generally requires skill sets in :ref:`lbl-testbed_AC_asset_description`, -:ref:`lbl-testbed_AC_asset_representation`, and :ref:`lbl-testbed_AC_damage_and_loss`. - -Before running this testbed, users are advised to review the **Computational Resources Requirements** to ensure -their hardware meets minimum specifications and to understand how to properly estimate the HPC resources -necessary to execute these testbeds and factors influencing the run time. - -.. _lbl-testbeds-manual: - -.. toctree-filt:: - :maxdepth: 1 - - acknowledgements - overview - asset_description - hazard_characterization - asset_representation - response_simulation - damage_and_loss - uncertainty_quantification - sample_results - example_outputs - future_refinements - best_practices - pws_conversion - feedback_request - diff --git a/docs/_sources/common/testbeds/atlantic_city/overview.rst.txt b/docs/_sources/common/testbeds/atlantic_city/overview.rst.txt deleted file mode 100644 index c2fba4a32..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/overview.rst.txt +++ /dev/null @@ -1,178 +0,0 @@ -.. _lbl-testbed_AC_overview: - -******** -Overview -******** - -This testbed for regional hurricane risk assessment of Atlantic County, New Jersey under multiple hazards adopts -an approach consistent with that developed for earthquake hazards. Its intent is to demonstrate the computational -scaffolding upon which community developers can progressively contribute refinements that increase the fidelity -and capacities of the backend regional resilience assessment workflow. This documentation specifically demonstrates -the process of: (1) asset description, (2) hazard characterization, (3) asset representation, (4) damage and loss -modeling for the Atlantic County inventory. This inventory is partitioned into three different versions to provide -users greater flexibility in balancing computational demands with their research interests. Sample results are -presented to verify the workflow and demonstrate its usage. - -Rationale -=========== - -This testbed builds upon existing relationships between SimCenter personnel and the State of New Jersey through -the NJcoast project ([KijewskiCorrea19]_, [NJCoast20]_), which made available various inventory data and high-fidelity -characterizations of wind, storm surge and wave action. Notably, the State of New Jersey has made sizable -investments in open data and resilience planning tools in recent years, enabling a demonstration of how to leverage -these data for inventory development. - -The selection of Atlantic County, NJ and specifically Atlantic City and its -surrounding municipalities offers a well-defined metro area with a blend of low-rise commercial (1-3 stories), -industrial, high-rise hotels/casinos (over 20 stories), and single/multi-family residences. Thus a single testbed -encompasses two extremes in building typologies with known vulnerabilities to wind: wood frame single-family homes -and tall flexible structures more susceptible to dynamic wind effects. From the perspective of hazard exposure, -this region is also characterized by beachfront communities exposed to storm surge and breaking waves on the -ocean-facing coastline and back bay and riverine flooding. This blend of residential communities and more urban -central business districts frequented by tourists moreover enables evaluation of resilience across different -communities with differing profiles. As the State of New Jersey has actually taken control of Atlantic City to -reimagine its role as an economic hub for the state, this testbed can help inform how future planning decisions -should consider hurricane risk. - -Capabilities and Supported Hazards -==================================== - -The testbed supports the transition from census-block-level loss projections to asset-level projections that -assess the damage to individual buildings under multiple hurricane-induced hazards: wind and storm surge. Water -penetration due to the breach of building envelopes and/or wind-borne debris impact are also captured in the -damage and loss modeling, though the physics of these phenomena themselves are not explicitly modeled. -Similarly, other hydrologic hazards related to accumulated rainfall, inland flooding, overland flow and -riverline flooding, are not capture. -Supported building classes include residential, commercial and industrial construction, critical facilities, -and manufactured homes, constructed of wood, steel, reinforced concrete and masonry. The adoption of HAZUS -loss estimation frameworks constrains the current testbed to buildings 6 stories and under and only the -building classes currently supported by HAZUS ([FEMA18a]_, [FEMA18b]_). - -Current Implementation -======================== - -For the initial implementation of the backend workflow, asset description adopts an augmented parcel approach -that enriches tax assessor data. High-fidelity computational simulations are employed to simulate the wind and -surge hazards, characterized by two intensity measures: the Peak Wind Speed (PWS) and Peak Water Depth (PWD), -for specific scenarios. In lieu of a structural analysis model, assets are assigned attributes associated with -various HAZUS-consistent building classifications. The adoption of HAZUS damage and loss assessment methodology -for hurricane and flood thus enables these intensity measures to be related to probabilities of damage and loss, -based on the building class and assigned attributes. - -Available Inventories -======================== - -Three different building inventories have been developed for the Atlantic County testbed and can be accessed on DesignSafe. - -**Atlantic County Inventory**: Full inventory of 100,721 buildings in the 23 municipalities of Atlantic County, -described based on a variety of data sources (:numref:`fig-buildingClassACI`). The buildings in this inventory are exposed to wind -only OR the combination of wind and floodplain hazards. - -.. _fig-buildingClassACI: - -.. figure:: figure/BuildingClass_atlanticall.png - :align: center - :figclass: align-center - :width: 800 - - Geospatial visualization of subclasses of buildings in Atlantic County Inventory. - -**Flood-Exposed Inventory**: This subset of the Atlantic County inventory is confined to 32,828 buildings in -FEMA Special Flood Hazard Areas (SFHAs) (:numref:`fig-buildingClassFEI`), as identified by the New Jersey Department of Environmental -Protection (NJDEP). This includes all buildings in (or within 200-foot buffer of) the 1% annual chance (AC) -floodplain, as defined by FEMA Flood Insurance Rate Maps (FIRMs). The buildings in this inventory are exposed -to the combination of wind and floodplain hazards, and includes some of the most populated municipalities in the -county: Atlantic City, Margate City, and Ventor City which contribute to about 50% of the entire building inventory -in Atlantic County. - -.. _fig-buildingClassFEI: - -.. figure:: figure/new_inventory_map.png - :align: center - :figclass: align-center - :width: 1200 - - Geospatial visualization of subclasses of buildings in Flood-Exposed Inventory. - -**Exploration Inventory**: A subset of 1000 buildings drawn from the Flood-Exposed Inventory intended to provide -a less computationally demanding implementation for new users or for those wishing to test the development of new -contributions to the workflow (:numref:`fig-buildingClassEI`). This inventory encompasses the five coastal municipalities -experiencing the most damage under the synthetic storm scenario described later in :ref:`lbl-testbed_AC_hazard_characterization_synthetic`. -From each of these municipalities, properties are randomly sampled, proportional to the total number of buildings -in that municipalitiy and ensuring that the distribution of construction material of buildings in the sample is -representative of the underlying distribution for the full population. The buildings in this inventory are exposed to the combination of -wind and floodplain hazards. - -.. _fig-buildingClassEI: - -.. figure:: figure/new_inventory_map_expl.png - :align: center - :figclass: align-center - :width: 700 - - Geospatial visualization of subclasses of buildings in Flood-Exposed Inventory. - -The following figures summarize characteristics of these inventories, including distribution by municipality -(:numref:`fig-distAssetMunicipality`), by year built (:numref:`fig-distBuiltYear`), by occupancy (:numref:`fig-occupancyType`), -by number of stories (:numref:`fig-numStory`) and by primary construction material (:numref:`fig-constrMaterial`). -Notably, these inventories are typified by older vintages of construction (79% of Atlantic County buildings were constructed -before 1980), with a dominance of low-rise (1-2 stories), residential, wood frame construction (approximately -90% of Atlantic County buildings). Steel and reinforced concrete construction is more prevalent in downtown -Atlantic City. - -.. _fig-distAssetMunicipality: - -.. figure:: figure/num_building_city_allset.png - :align: center - :figclass: align-center - :width: 1000 - - Distribution of number of buildings by municipality. - -.. _fig-distBuiltYear: - -.. figure:: figure/built_year_allset.png - :align: center - :figclass: align-center - :figwidth: 1200 - - Distribution of year built for buildings. - -.. _fig-occupancyType: - -.. figure:: figure/occupancy_type_allset.png - :align: center - :figclass: align-center - :figwidth: 1200 - - Distribution of occupancy types. - -.. _fig-numStory: - -.. figure:: figure/story_number_allset.png - :align: center - :figclass: align-center - :figwidth: 1200 - - Distribution of total story numbers for buildings. - -.. _fig-constrMaterial: - -.. figure:: figure/building_type_allset.png - :align: center - :figclass: align-center - :figwidth: 1200 - - Distribution of primary construction material types. - -.. [FEMA18a] - FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Hurricane Model Technical Manual, Federal Emergency Management Agency, Washington D.C., 718p. - -.. [FEMA18b] - FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Flood Model Technical Manual, Federal Emergency Management Agency, Washington D.C., 569p. - -.. [KijewskiCorrea19] - Kijewski-Correa, T., Taflanidis, A., Vardeman, C., Sweet, J., Zhang, J., Snaiki, R., ... & Kennedy, A. (2020). Geospatial environments for hurricane risk assessment: applications to situational awareness and resilience planning in New Jersey. Frontiers in Built Environment, 6, 549106. - -.. [NJCoast20] - NJ Coast (2020), Storm Hazard Projection Tool, NJ Coast, https://njcoast.us/resources-shp/ \ No newline at end of file diff --git a/docs/_sources/common/testbeds/atlantic_city/preface.rst.txt b/docs/_sources/common/testbeds/atlantic_city/preface.rst.txt deleted file mode 100644 index a3340a74f..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/preface.rst.txt +++ /dev/null @@ -1,38 +0,0 @@ -.. _lbl-testbed_AC_preface: - -******** -Preface -******** - -This documentation is intended to introduce the implementation of the SimCenter’s hurricane -regional loss modeling workflow in the context of Atlantic City (Atlantic County), New Jersey. -While certain aspects of the workflow are unchanged in a given application context, this -testbed specifically demonstrates how building inventories can be constructed through -automated processes that fuse different data sources to enrich parcel data, using SimCenter -applications and heuristic rulesets grounded in local codes/standards and normative -construction practices. Given the significance of the building inventory generation for this -testbed, this documentation was written in response to two primary audiences/use cases: - -**Case 1**: End users who wish to use the testbed to explore specific research questions such as: -1. the impact of different hurricane scenarios beyond those provided herein -2. the potential benefits of various mitigation efforts (changing select attribute assignments and/or damage/loss descriptions) -3. the benefits of more refined damage/loss models, particularly for coastal hazards - -Such individuals may not wish to generate their own inventories, but require some background in order -to meaningfully interpret results. This documentation will enhance their understanding of the various -assumptions made in generating these inventories and assigning the attributes required for the adopted -loss models. - -**Case 2**: Users who seek to develop building inventories beyond Atlantic County, NJ will benefit from a -deeper understanding of the techniques, rulesets and scripts used to generate this building inventory. -In addition to the explanations that follow, this documentation is accompanied by detailed rulesets used -for building and attribute assignment -(`SimCenter Hurricane Testbed: Inventory Documentation `_), -as well as their implementation as Python scripts (`auto_HU_NJ.py `_). -These provide templates that such users can potentially -refine, extend and replicate this testbed’s process for Building Inventory generation beyond the current -application in Atlantic County. - -Before running this testbed, users are advised to review the **Computational Resources Requirements** to ensure -their hardware meets minimum specifications and to understand how to properly estimate the HPC resources -necessary to execute these testbeds and factors influencing the run time. diff --git a/docs/_sources/common/testbeds/atlantic_city/pws_conversion.rst.txt b/docs/_sources/common/testbeds/atlantic_city/pws_conversion.rst.txt deleted file mode 100644 index ae5ad844a..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/pws_conversion.rst.txt +++ /dev/null @@ -1,52 +0,0 @@ -.. _lbl-testbed_AC_wind_speed_conversion: - -******************************** -Standard Wind Speed Conversions -******************************** - -Since the wind speed (:math:`V(600s, 10m, z_0)`) from the NJcoast SHP Tool is averaged over the time window of 1 hour, -a number of standard conversions parse the wind speed to the 3-second and open-terrain PWS -(i.e., :math:`V(3s, 10m, Exposure C)`): - - -1. Computing :math:`\alpha` and :math:`z_g` by ASCE 7-16 ([ASCE16_]) Equation C26.10-3 and C26.10-4 -taking :math:`c_1 = 5.65, c_2 = 450` for units in m): - -.. math:: - - \alpha_{SHP} = c_1z_0^{-0.133} - - z_{g,SHP} = c2z_0^{0.125} - -2. Computing the gradient height :math:`V(600s, z_g, z_0)` using the power law expression: - -.. math:: - - V(600s, z_g, z_0) = V(600s, 10m, z_0) \times (\frac{z_{g,SHP}}{10m})^{1/\alpha_{SHP}} - -3. Computing the Exposure C (open-terrain) wind speed at 10m height :math:`V(600s, 10m, Exposure C)`, with -:math:`\alpha_C = 9.5` and :math:`z_{g,C} = 274.32 m` ([ASCE16_]): - -.. math:: - - V(600s, 10m, Exposure C) = V(600s, z_{g,C}, z_0) \times (\frac{10m}{z_g})^{1/\alpha_C} - -4. Converting the result to 3s-gust wind speed using the ESDU conversion [ESDU02_]: - -.. math:: - - V(3s, 10m, Exposure C) = V(600s, 10m, Exposure C) \times \frac{C(3s)}{C(600s)} - -where :math:`C(3s) = 1.52` and :math:`C(600s) = 1.05` are the Gust Factor from the ESDU conversion. - - -.. [ASCE16] - ASCE (2016), Minimum Design Loads for Buildings and Other Structures, ASCE 7-16, - American Society of Civil Engineers. - -.. [ESDU02] - Engineering Sciences Data Unit (ESDU). (2002). “Strong winds in the atmospheric boundary - layer—Part 2: Discrete gust speeds.” ESDU International plc, London, U.K. - - - diff --git a/docs/_sources/common/testbeds/atlantic_city/sample_results.rst.txt b/docs/_sources/common/testbeds/atlantic_city/sample_results.rst.txt deleted file mode 100644 index 55d93cef1..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/sample_results.rst.txt +++ /dev/null @@ -1,89 +0,0 @@ -.. _lbl-testbed_AC_sample_results: - -******************** -Verification Results -******************** - -This page summarizes sample results from the testbed runs with three major focuses: - -1. verifying the estimated loss ratios by hand-calculations, -2. demonstrating the sensitivity study with different hurricane categories, and -3. illustrating the influence of building properties on the hurricane loss using the observations from the sample results. - -Building Inventory -=================== - -From the entire building inventory, 85 buildings (:numref:`sample_table`) are selected from 5 building -classes and 8 built eras. :numref:`scatter_matrix` shows the data distributions of the built year, surface -roughness (:math:`z_0`), peak wind speed (PWS), and peak water depth (PWD). - -.. csv-table:: Sampled building inventory - :file: data/VerificationSample.csv - :name: sample_table - :header-rows: 1 - :align: center - -.. figure:: figure/ScatterMatrix.png - :name: scatter_matrix - :align: center - :figclass: align-center - :figwidth: 800 - - Scatter matrix of sampled buildings. - -Hand Calculation -================== - -Hand calculations of wind, flood, and combined losses are conducted using the -input building information and intensity measures for the sampled buildings. -The calculations are made for all the four hurricane categories: - -.. note: - 1. Cat-5: PWS (3s-gust) ~= 190 mph, maximum surge depth ~= 18 ft - 2. Cat-4: PWS ~= 140 mph, maximum surge depth ~= 15 ft - 3. Cat-3: PWS ~= 120 mph, maximum surge depth ~= 10 ft - 4. Cat-2: PWS ~= 100 mph, maximum surge depth ~= 7 ft - -:numref:`hand_calc` compares the hand-calculated loss ratios and the simulated -results which are in good agreement. The finite differences seen in the flood loss ratios -are due to the random sampling process in estimating the expected loss ratios. - -.. figure:: figure/SimuVSHandCalc.png - :name: hand_calc - :align: center - :figclass: align-center - :figwidth: 800 - - Hand-calculated results vs. simulated results. - -Wind Loss by Building Class and Year -==================================== - -To understand the driving factors that influence the regional loss assessment results. -The 85 sampled buildings are grouped into five building classes and the average wind loss values -are computed (:numref:`wind_loss_bt`). Regardless of the hurricane category, concrete, steel, -and masonry buildings perform better than wood buildings and manufactured homes on average. - -.. figure:: figure/WindLossBuildingType.png - :name: wind_loss_bt - :align: center - :figclass: align-center - :figwidth: 800 - - Average expected wind losses by building class. - -To further investigate the influence of built year on the wind loss of wood buildings, -:numref:`wind_loss_yr` shows the estimated expected wind loss ratios by the year of built. -Coupled with the hurricane category effect, in the Category 5 hurricane, the built year does not -show as a driving factor, but in the other three scenarios, the wind losses are shown to be -related to the built year. The worst cases are seen in 1970s and 1980s, while the building in the -past two decades perform much better than the other groups. Note that this -comparison is made for the limited sample size in this verification study. - -.. figure:: figure/WoodBuildingWindLoss.png - :name: wind_loss_yr - :align: center - :figclass: align-center - :figwidth: 800 - - Average expected wind losses of wood buildings by built year. diff --git a/docs/_sources/common/testbeds/atlantic_city/uncertainty_quantification.rst.txt b/docs/_sources/common/testbeds/atlantic_city/uncertainty_quantification.rst.txt deleted file mode 100644 index 76e86d0b1..000000000 --- a/docs/_sources/common/testbeds/atlantic_city/uncertainty_quantification.rst.txt +++ /dev/null @@ -1,84 +0,0 @@ -.. _lbl-testbed_AC_uncertainty_quantification: - -************************** -Uncertainty Quantification -************************** - -Multiple sources of uncertainty are considered in this testbed including: the uncertainty in -asset representation, hazard characterization, and damage and loss assessment. For these uncertainty -sources, different strategies were implemented in the workflow to quantify their influence. THe following -sections will introduce the details about each component. - -In Asset Representation -============================== - -As discussed in :ref:`lbl-testbed_AC_asset_representation`, the HAZUS Hurricane Technical Manual differentiates -buildings based on asset attibutes for the subjected hazard type (wind or storm surge). These attributes -are the buildings properties or structure features that would influence the -resulting damage and loss of the asset under the given hazard. Among these key attributes, some are -determined by developed rulesets with more basic building information. These rules are based on the statistics -in the available data. Taking the shutters of assets that were built before 2000, the Human Subjects Data -indicates that roughly 45% of house owners were likely to apply shutters on some or all of their windows before a hurricane makes landfall. Accordingly, in the -asset representation (ruleset), a pre-2000 house has 45% probability to be assigned to have shutters, and 55% -probability to be assigned with no shutter. Note that the resulting HAZUS building type is deterministic for -each individual sample while the uncertainty induced by different possible attribute options are evaluted -via multiple random realizations. :numref:`uq_rulesets` summarizes the three building attributes whose values -are randomly generated in this testbed. - -.. csv-table:: Random sampling in the rulesets. - :name: uq_rulesets - :file: data/uq_rulesets.csv - :header-rows: 1 - :align: center - - -In Hazard Characterization -============================== - -Given a specific category of hurricane, there are two different sources of uncertainty for site peak wind speed -and storm surge values: (1) the uncertainty induced by possible different storm tracks, storm radii, storm -translational speeds, central pressures, or handing angles (which is usually termed as epistemic uncertainty); -and (2) the inherent variation in observing the random events at the site (which is usually termed as aleatory -uncertainty). Both these two uncertainty sources can be taken into account for in the introduced workflow. - -For the epistemic uncertainty, multiple scenarios can be simulated using the synthetic simulation methods as -introduced in :ref:`lbl-testbed_AC_hazard_characterization_synthetic`. For instance, the linear analytical simulation -for the boundary layer winds ([Snaiki17a_], [Snaiki17b_]) can be performed with randomly sampled storm properties -(e.g., central pressure) to generate multiple realizations of peak wind speed that are possible at the given site. -These multiple realizations are then randomly sampled and used as the EDP in simulating the damage and loss -assessment (more details in the next section). - -For the aleatory uncertainty, this workflow adapts a nearest-neighbors method to propagate uncertainty through the workflow, as -illustrated in :numref:`nearestneighbors`. The peak wind speed and storm surge values are simulated -on a prescribed grid (wind fields) or pre-selected save points (storm surge) (blue round dots), and for each selected asset location (red square dot), -the workflow randomly selects 5 samples of -the intensity measure (wind speed and storm surge) from the 4 nearest neighbors (yellow circles). Note this random -sampling is performed along with the multiple realizations from the epistemic uncertainty quantification, so the -two uncertainty sources are considered simultaneously. - -.. figure:: figure/nn.png - :name: nearestneighbors - :align: center - :figclass: align-center - :figwidth: 800 - - Nearest-neighbors method for sampling site hazard uncertainty. - - -In Damage and Loss Assessment -============================== - -The testbed implemented :ref:`pelicun` (Probabilistic Estimation of Losses, Injuries, and Community resilience Under -Natural disasters) to quantify damage (damage states) and loss (in the form of decision variables, e.g., loss ratio). -Uncertainty from the hazard characterization step is first considered by the random sampling module in pelicun to -numerically sample the (joint) distribution of intensity measures (which are treated as engineering parameter -demands, EDPs in the HAZUS method). In specific, 1000 samples of combined wind speed and storm surge pairs are generated -for each asset in this testbed. Second, the corresponding damage and loss models are populated for each asset from HAZUS -based on the :ref:`lbl-testbed_AC_asset_representation`. As described -in :ref:`lbl-testbed_AC_damage_and_loss`, the damage models are continuous functions (normal or lognormal distribution -functions) fit to the synthetic data by maximizing the likelihood of the observations assuming a Binomial distribution of -outcomes at each intensity level in the HAZUS database. Hence, at a given intensity level (a certain wind peed or storm -surge), the damage state and corresponding loss ratio of an asset follow probabilistic distributions, considering all -uncertainty in the key properties that can influence the building performance. - - diff --git a/docs/_sources/common/testbeds/lake_charles/index.rst.txt b/docs/_sources/common/testbeds/lake_charles/index.rst.txt deleted file mode 100644 index 30063ade5..000000000 --- a/docs/_sources/common/testbeds/lake_charles/index.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lbl-testbed_Lake_Charles: - -**************** -Lake Charles, LA -**************** - -[...] - diff --git a/docs/_sources/common/testbeds/memphis/asset_description.rst.txt b/docs/_sources/common/testbeds/memphis/asset_description.rst.txt deleted file mode 100644 index c00d2c1ee..000000000 --- a/docs/_sources/common/testbeds/memphis/asset_description.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lbl-testbed_MP_asset_description: - -***************** -Asset Description -***************** - -[...] - diff --git a/docs/_sources/common/testbeds/memphis/asset_representation.rst.txt b/docs/_sources/common/testbeds/memphis/asset_representation.rst.txt deleted file mode 100644 index 1a9c20e59..000000000 --- a/docs/_sources/common/testbeds/memphis/asset_representation.rst.txt +++ /dev/null @@ -1,5 +0,0 @@ -.. _lbl-testbed_MP_asset_representation: - -******************** -Asset Representation -******************** diff --git a/docs/_sources/common/testbeds/memphis/damage_and_loss.rst.txt b/docs/_sources/common/testbeds/memphis/damage_and_loss.rst.txt deleted file mode 100644 index e37507942..000000000 --- a/docs/_sources/common/testbeds/memphis/damage_and_loss.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lbl-testbed_MP_damage_and_loss: - -************************** -Damage and Loss Estimation -************************** - -[...] - diff --git a/docs/_sources/common/testbeds/memphis/future_refinements.rst.txt b/docs/_sources/common/testbeds/memphis/future_refinements.rst.txt deleted file mode 100644 index f6ead7a1d..000000000 --- a/docs/_sources/common/testbeds/memphis/future_refinements.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lbl-testbed_MP_future_refinements: - -**************************************** -Opportunity Areas for Future Refinements -**************************************** - -[...] - diff --git a/docs/_sources/common/testbeds/memphis/hazard_characterization.rst.txt b/docs/_sources/common/testbeds/memphis/hazard_characterization.rst.txt deleted file mode 100644 index 1a7fc164e..000000000 --- a/docs/_sources/common/testbeds/memphis/hazard_characterization.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lbl-testbed_MP_hazard_characterization: - -*********************** -Hazard Characterization -*********************** - -[...] - diff --git a/docs/_sources/common/testbeds/memphis/index.rst.txt b/docs/_sources/common/testbeds/memphis/index.rst.txt deleted file mode 100644 index ebb29aa15..000000000 --- a/docs/_sources/common/testbeds/memphis/index.rst.txt +++ /dev/null @@ -1,24 +0,0 @@ -.. _lbl-testbed_Memphis: - -*********** -Memphis, TN -*********** - -About text [...] - -.. toctree-filt:: - :maxdepth: 1 - - overview - asset_description - hazard_characterization - asset_representation - response_simulation - damage_and_loss - network_performance - uncertainty_quantification - sample_results - future_refinements - - -Acknowledgements text [...] \ No newline at end of file diff --git a/docs/_sources/common/testbeds/memphis/network_performance.rst.txt b/docs/_sources/common/testbeds/memphis/network_performance.rst.txt deleted file mode 100644 index bc3405497..000000000 --- a/docs/_sources/common/testbeds/memphis/network_performance.rst.txt +++ /dev/null @@ -1,6 +0,0 @@ -.. _lbl-testbed_MP_network_performance: - -****************************** -Network Performance Assessment -****************************** - diff --git a/docs/_sources/common/testbeds/memphis/overview.rst.txt b/docs/_sources/common/testbeds/memphis/overview.rst.txt deleted file mode 100644 index 37ea7dcd8..000000000 --- a/docs/_sources/common/testbeds/memphis/overview.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lbl-testbed_MP_overview: - -******** -Overview -******** - -[...] - diff --git a/docs/_sources/common/testbeds/memphis/sample_results.rst.txt b/docs/_sources/common/testbeds/memphis/sample_results.rst.txt deleted file mode 100644 index 8465e79ea..000000000 --- a/docs/_sources/common/testbeds/memphis/sample_results.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lbl-testbed_MP_sample_results: - -************** -Sample Results -************** - -[...] - diff --git a/docs/_sources/common/testbeds/memphis/uncertainty_quantification.rst.txt b/docs/_sources/common/testbeds/memphis/uncertainty_quantification.rst.txt deleted file mode 100644 index 55348472e..000000000 --- a/docs/_sources/common/testbeds/memphis/uncertainty_quantification.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lbl-testbed_MP_uncertainty_quantification: - -************************** -Uncertainty Quantification -************************** - -[...] - diff --git a/docs/_sources/common/testbeds/sf_bay_area/asset_description.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/asset_description.rst.txt deleted file mode 100644 index 179212145..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/asset_description.rst.txt +++ /dev/null @@ -1,65 +0,0 @@ -.. _lbl-testbed_SF_asset_description: - -***************** -Asset Description -***************** - -This study used a parcel-level inventory of buildings in the Bay -Area that was developed by UrbanSim ([Waddell02]_) using -public resources such as the City and County of San Francisco’s -data portal ([DataSF20]_) and tax assessor databases. - -The raw database which includes 1.8 M San Francisco buildings were shared -in the collaboration with UrbanSim. The UrbanSim database includes two files: - -1. Buildings File: a CSV file that contains building properties including total floor - area, number of stories, year built, building occupancy and parcel ID. -2. Parcels File: a CSV file including the latitude and longitude of each building defined - by the parcel ID. - -A parsing application was built to collect the mentioned building properties and from the -UrbanSim building files. The occupancy ID (in integer) was used to infer the occupancy -type and replacement cost per unit area (:numref:`occupancy_map`). The buildings with missing or invalid occupancy -ID, the building was mapped to the default occupancy type (i.e., residential) with average area of buildings -in the inventory. - -.. csv-table:: Mapping rules for building occupancy type and replacement cost. - :name: occupancy_map - :file: data/occupancy_map.csv - :header-rows: 1 - :align: center - -The structure types were also mapped from the building occupancy types along with the year built and number of stories. -Unless the building was mapped to a single structure type, the structure type is considered random, in which case the mapped -structure types are equally likely. :numref:`structure_map` summarizes the structure type mapping. - -.. csv-table:: Mapping rules for structure type. - :name: structure_map - :file: data/structure_map.csv - :header-rows: 1 - :align: center - -The available information about location -and building geometry were further refined by merging the UrbanSim -database with the publicly available Microsoft Building Footprint -data ([Microsoft20]_) for the testbed area. These data were -used to populate two additional attributes, replacement cost and -structure type, based on a ruleset that considers local design -practice and real estate pricing. For further details about the -database and ruleset see [Elhadded19]_. - - -.. [Waddell02] - Waddell, P. (2002). UrbanSim: Modeling Urban Development for Land Use, Transportation, and Environmental Planning. J. Am. Planning Assoc. 68, 297–314. - doi: 10.1080/01944360208976274 - -.. [DataSF20] - DataSF (2020). Building and Infrastructure Databases. San Francisco, SF: DataSF. - -.. [Microsoft20] - Microsoft (2020). Microsoft Building Footprint Database for the United States. Washington, DC. - https://www.microsoft.com/en-us/maps/building-footprints. - -.. [Elhadded19] - Elhaddad, W., McKenna, F., Rynge, M., Lowe, J. B., Wang, C., and Zsarnoczay, A. (2019). - NHERI-SimCenter/WorkflowRegionalEarthquake: rWHALE (Version v1.1.0). http://doi.org/10.5281/zenodo.2554610 \ No newline at end of file diff --git a/docs/_sources/common/testbeds/sf_bay_area/damage_and_loss.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/damage_and_loss.rst.txt deleted file mode 100644 index aa1ed28e5..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/damage_and_loss.rst.txt +++ /dev/null @@ -1,146 +0,0 @@ -.. _lbl-testbed_SF_damage_and_loss: - -************************** -Damage and Loss Estimation -************************** - -The building performance assessment was performed on a -story-level basis using **PELICUN** ([Zsarnóczay20]_), where damage and losses are calculated with storylevel -fragility functions based on the peak story drift and -floor acceleration demands. The story-based damage and loss -fragility functions are derived from corresponding building-level -damage and loss functions from the HAZUS earthquake -model ([FEMA18]_) based on the characteristic data for each -building (e.g., year of construction, structure type, occupancy -type). Specially, four major states included in this -testbed are **Slight (DS1)**, **Moderate (DS2)**, **Extensive (DS3)**, -and **Complete (DS4)**, and one **None (DS0)** damage -state. The four major damage states are defined seperately for the -structural and non-structural damages. More detailed -descriptions for the example W1 building are provided below. -The full descriptions can be found in the [FEMA18]_. -Collapse safety limit states are evaluated directly from the -story drift demands, where a collapse of one or more stories is -considered as partial collapse of the entire building. - -.. note:: - - **W1: Wood Light Frame (Structural)**: - - 1. Slight: Small plaster or gypsum-board cracks at corners of door and - window openings and wall-ceiling intersections; small cracks in masonry chimneys and - masonry veneer. - - 2. Moderate: Large plaster or gypsum-board cracks at corners of door - and window openings; small diagonal cracks across shear wall panels exhibited by small - cracks in stucco and gypsum wall panels; large cracks in brick chimneys; toppling of tall - masonry chimneys. - - 3. Extensive: Large diagonal cracks across shear wall panels or large - cracks at plywood joints; permanent lateral movement of floors and roof; toppling of most - brick chimneys; cracks in foundations; splitting of wood sill plates and/or slippage of - structure over foundations; partial collapse of "room-over-garage" or other "soft-story" - configurations; small foundations cracks. - - 4. Complete: Structure may have large permanent lateral displacement, - may collapse, or be in imminent danger of collapse due to cripple wall failure or the failure - of the lateral load-resisting system; some structures may slip and fall off the foundations; - large foundation cracks. Approximately 3\% of the total area of W1 buildings with Complete - damage is expected to be collapsed. - -.. note:: - - **Non-structural Damage (Partition Walls)**: - - 1. Slight: A few cracks are observed at intersections of walls and - ceilings and at corners of door openings. - - 2. Moderate: Larger and more extensive cracks requiring repair and - repainting; some partitions may require replacement of gypsum board or other finishes. - - 3. Extensive: Most of the partitions are cracked and a significant - portion may require replacement of finishes; some door frames in the partitions are also - damaged and require re-setting. - - 4. Complete: Most partition finish materials and framing may have to - be removed and replaced, damaged studs repaired, and walls refinished. Most door frames - may also have to be repaired and replaced. - -.. note:: - - **Non-structural Damage (Suspended Cellings)**: - - 1. Slight: : A few ceiling tiles have moved or fallen down. - - 2. Moderate: Falling of tiles is more extensive; in addition, the ceiling - support framing (T-bars) has disconnected and/or buckled at a few locations; lenses have - fallen off some light fixtures and a few fixtures have fallen; localized repairs are necessary. - - 3. Extensive: The ceiling system exhibits extensive buckling, - disconnected T-bars and falling ceiling tiles; ceiling partially collapses at a few locations and - some light fixtures fall; repair typically involves removal of most or all ceiling tiles. - - 4. Complete: The ceiling system is buckled throughout and/or fallen - and requires complete replacement; many light fixtures fall. - -.. note:: - - **Non-structural Damage (Exterior Wall Panels)**: - - 1. Slight: : Slight movement of the panels, requiring realignment. - - 2. Moderate: The movements are more extensive; connections of - panels to structural frame are damaged requiring further inspection and repairs; some - window frames may need realignment. - - 3. Extensive: Most of the panels are cracked or otherwise damaged - and misaligned, and most panel connections to the structural frame are damaged requiring - thorough review and repairs; a few panels fall or are in imminent danger of falling; some - window panes are broken and some pieces of glass have fallen. - - 4. Complete: Most panels are severely damaged, most connections - are broken or severely damaged, some panels have fallen and most are in imminent - danger of falling; extensive glass breakage and falling. - -.. note:: - - **Non-structural Damage (Electrical Mechanical Equipment, Piping, Ducts)**: - - 1. Slight: : The most vulnerable equipment (e.g., unanchored or - mounted on spring isolators) moves and damages attached piping or ducts. - - 2. Moderate: Movements are larger and damage is more extensive; - piping leaks occur at a few locations; elevator machinery and rails may require realignment. - - 3. Extensive: Equipment on spring isolators topples and falls; other - unanchored equipment slides or falls, breaking connections to piping and ducts; leaks - develop at many locations; anchored equipment indicate stretched bolts or strain at - anchorages. - - 4. Complete: Equipment is damaged by sliding, overturning or failure - of their supports and is not operable; piping is leaking at many locations; some pipe and - duct supports have failed, causing pipes and ducts to fall or hang down; elevator rails are - buckled or have broken supports and/or counterweights have derailed. - -The story drift and floor accelerations from 25 non-linear analyses of each -building are used to define multivariate lognormal distributions -of peak drifts and accelerations for each story of the building, -and the dispersion in the drift and acceleration demands is -inflated by 0.22 to account for additional modeling uncertainties -not considered in the non-linear dynamic analyses. - -Using the distributions of earthquake demands, and damage and loss -functions, **PELICUN** generates 20,000 realizations of damage and -losses for each building, and stores statistics of the resulting -performance data that are relevant for regional-scale evaluation. -The results are output as HDF5 (Hierarchical Data Format) files -that can be processed and visualized through MatLab, Python, -Jupyter notebooks, or converted to CSV format. - - -.. [Zsarnóczay20] - Zsarnóczay, A., and Deierlein, G. G. (2020). “PELICUN – A Computational Framework for Estimating Damage, Loss and Community Resilience,” - in Proceedings, 17th World Conference on Earthquake Engineering, (Sendai: WCEE). - -.. [FEMA18] - FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Earthquake Model Technical Manual, Federal Emergency Management Agency, Washington D.C. diff --git a/docs/_sources/common/testbeds/sf_bay_area/example_outputs.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/example_outputs.rst.txt deleted file mode 100644 index 6618b29c9..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/example_outputs.rst.txt +++ /dev/null @@ -1,175 +0,0 @@ -.. _lbl-testbed_SF_example_outputs: - -************************** -Example Outputs -************************** - -Damage State -============== - -This section summarizes the resulting expected damage states of the building -assets from the Hayward Earthquake. The expected damage state is computed as -the weighted average over the 20,000 PELICUN realizations each of which has a predicted -damage state metric, i.e., 0 (None), 1 (Slight), 2 (Moderate) , 3 (Extensive), -and 4 (Complete). :numref:`fig-s-ds` shows expected structural damages which have a -wide spectrum from nearly none damaged (in the South Bay regions) to Moderate/Extensive -damage (in the East Bay region). Recalling the example 2-story wood frame residential -building in :ref:`lbl-testbed_SF_response_simulation`, it has an expected damge state of -about 1.6 with a breakdown statics: 2.3\% in None (DS0), 40.6\% in Slight (DS1), 54.4\% in -Moderate (DS3), and 2.7\% in Extensive (DS4). And the building is very unlikely to collapse. -Referring to :ref:`lbl-testbed_SF_damage_and_loss`, this building is likely to experience plaster or gypsum-board -cracks at corners of door and window openings; small diagonal cracks across shear wall -panels; or/and cracks in brick chimneys or toppling of tall masonry chimneys. - -.. _fig-s-ds: - -.. figure:: figure/ExpectedDSStruct.png - :align: center - :figclass: align-center - :width: 800 - - Expected structural damage states from San Francisco testbed. - -:numref:`fig-ns-ds` shows expected non-structural damages which tend to be -server if compared to the structural damage. For the building assets in the -South Bay regions, Slight to Moderate non-structural damages are likely. Buildings -located near the Hayward fault are likely to experience Moderate to Extensive -non-structural damages. The example wood frame building is expected to have a -Moderate damage state (DS = 2.0 with a probability of 64\%). Detailed breakdown -statistics are plotted in :numref:`fig-ds`. THe building is likely to experience -the following potential damages: (1) cracks requiring repair and -repainting; some partitions may require replacement of gypsum board or other finishes, -(2) falling of tiles, (3) connections of exterior wall panels to structural frame -are damaged requiring further inspection and repairs, and (4) piping leaks occur at a few locations, -elevator machinery and rails may require realignment. - - -.. _fig-ns-ds: - -.. figure:: figure/ExpectedDSNonStruct.png - :align: center - :figclass: align-center - :width: 800 - - Expected non-structural damage states from San Francisco testbed. - -.. _fig-ds: - -.. figure:: figure/ds.png - :align: center - :figclass: align-center - :width: 700 - - Structural and non-structural damage states of the example wood frame (as introduced in :ref:`lbl-testbed_SF_response_simulation`). - - -Expected Loss Ratio -==================== - -An example of the resulting losses calculated for the Mw 7.0 -Hayward scenario are shown in :numref:`fig-loss_ratio_comp`. The color shading -represents the loss ratios for each building, calculated as the -mean repair costs normalized by the building replacement -value. Also shown in the figure is a comparison to the loss -ratios reported in the USGS Mw 7.0 Haywired Earthquake -Scenario ([Hudnut18]_). Exposure and losses in -the Haywired scenario were calculated using the HAZUS -software. While it is instructive to compare results between -the two studies, there are differences in the input data, scope -and goals of the studies which are important to keep in -mind. As the main purpose of the SimCenter testbed was -to assemble and exercise the computational workflow, the -models and results in the SimCenter study are preliminary, -based on readily available information and implemented by -a small team over a couple months. This contrasts with -the multi-year multi-investigator Haywired study, whose goal -is to inform earthquake planning and preparedness for the -San Francisco Bay Area. - -.. _fig-loss_ratio_comp: - -.. figure:: figure/LossRatioComp.png - :align: center - :figclass: align-center - :width: 1000 - - Comparison of building loss ratios from San Francisco testbed - SimCenter (left), USGS-Haywired (right). - -Both studies were based on Mw 7.0 Hayward fault ruptures -simulated using the SW4 software by the LLNL research group, -however, the ground motion time histories are different for the -two studies. Epicenters for the two earthquake scenarios are close -(East Oakland and San Leandro for Haywired and SimCenter, -respectively), but other rupture characteristics are different and -the SimCenter ground motions were simulated with more recent -versions of the SW4 engine and the USGS geophysical model -of the Bay Area. In general, the ground motions used in -the SimCenter study are less severe than those used in the -earlier Haywired study, and they are in better agreement with -expectations based on past earthquake data. - -The Haywired study extends over an area including the -counties of Monterey, Sacramento, and Sonoma, whereas the -SimCenter testbed is limited to the central six counties from -Santa Clara to Marin. Due to the larger coverage, the Haywired -study had a larger total building population (3.04 M), but -the number of buildings in the six central counties in the -Haywired study (1.71 M) is comparable to the number in -the SimCenter database (1.84M). There are, however, large -differences in the total square footage (in the central six counties) -and inventory value (replacement values) between the building -exposure databases, which make comparisons of total losses -between the two studies questionable. - -To reduce the influence of the differences in the building -exposure values in the two studies, the comparison is limited to -damage and loss ratios in the six central counties. The average loss -ratio over the entire building population is less in the SimCenter -testbed (~ 3% of replacement value) as compared to theHaywired -study (~ 5% of replacement value). Nevertheless, as shown in -:numref:`fig-loss_ratio_comp`, the geographical distribution of losses shows good -agreement between the two. The SimCenter study predicts a -larger ratio of non-structural to structural damage (7.5:1 vs. 4.5:1 -in the Haywired study) and considerably smaller fractions of the -building stock being collapsed (less than 0.01 vs. 0.8%) and redtagged -(0.1 vs. 10%). Accordingly, the proportion of buildings -that sustain minor or no damage is higher in the SimCenter -study compared to Haywired (58 vs. 49%). These results are -consistent with the less intense ground motions in the SimCenter -scenario, and they highlight the sensitivity of results of such -complex studies to inventory data, models for response, damage, -and losses, and the input ground motions. - -An important distinction between the HAZUS-based -Haywired study and the SimCenter workflow simulation is -the level of resolution in the assessment and the propagation -of various sources of uncertainty throughout the simulation. -Whereas the HAZUS-based study aggregates building damage -and losses based on census track (zip code) data, the SimCenter -workflow has resolution down to the building parcel level, and -it can disaggregate losses within a building down to individual -components on each floor. This feature, coupled with a detailed -description of the probability distributions of damage and losses -for each building, can allow urban planners and policy makers -to query various possible outcomes–including the rare, but -catastrophic ones–of the earthquake scenario. High-resolution -results (see upper panels in :numref:`fig-loss_ratio_comp`) provide valuable data for -exercises in emergency response, and simulations of post-disaster -recovery. In addition, the SimCenter workflow and underlying -tools facilitate the combination of models with varying levels -of fidelity, where for example, performance for some buildings -can be determined using simplified HAZUS type loss functions, -while performance for other buildings can be determined using -the detailed non-linear structural analysis models and FEMA -P-58 component-based damage and loss functions. As such, the -high-resolution and multi-fidelity workflow simulations offer -increased opportunities to explore questions related to land use -planning and zoning, seismic design and retrofit requirements, -public policy and administrative initiatives, and other actions to -enhance community resilience. - - -.. [Hudnut18] - Hudnut, K. W., Wein, A. M., Cox, D. A., Porter, K. A., Johnson, L. A., Perry, S. C., et al. (2018). - The HayWired earthquake scenario – We can outsmart disaster, USGS, Fact Sheet 2018-3016. Virginia, VA: USGS. - doi: 10.3133/fs20183016 \ No newline at end of file diff --git a/docs/_sources/common/testbeds/sf_bay_area/feedback_request.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/feedback_request.rst.txt deleted file mode 100644 index 7983df015..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/feedback_request.rst.txt +++ /dev/null @@ -1,11 +0,0 @@ -.. _lbl-testbed_SF_feedback_request: - -****************************** -Feedback and Data Request -****************************** - -If you have any feedback, data requests, or questions, please post on the |messageBoard| on SimCenter Forum. -When creating a `New Topic`it would be helpful if you could place an indication of your post in the `Subject` area: - -1. General feedback, e.g., FEEDBACK: Questions on the testbed. -2. Data requests, e.g., DATA: Request the sample data of the testbed. \ No newline at end of file diff --git a/docs/_sources/common/testbeds/sf_bay_area/future_refinements.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/future_refinements.rst.txt deleted file mode 100644 index f9d9dc8e3..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/future_refinements.rst.txt +++ /dev/null @@ -1,37 +0,0 @@ -.. _lbl-testbed_SF_future_refinements: - -**************************************** -Opportunity Areas for Future Refinements -**************************************** - -This testbed and its backing workflows should be viewed as a sandbox and scaffold, -respectively, within which the community can explore different scenarios and develop -new capabilities. The following list itemizes some areas where contribution from the -community is especially welcome: - -1. A number of approximations and assumptions were made in the generation of the building inventory. There is considerable opportunity to expand, enrich and improve upon - methodologies for automated inventory generation, particularly to generate other attributes necessary - as the workflow advances toward component level damage quantification. - -2. The SimCenter aspires to incorporate increasing levels of fidelity in its characterization of hazards, - modeling of buildings (to support application of pressures/loads and structural analysis), and ability - to describe damage at the component level, with fault-trees that capture cascading damage sequences - resulting from breaches of the building envelope. Thus there is considerable need for community - research contributions such as libraries of fragilities, archetype building models, and catalogs - of high-fidelity hazard simulations. For instance, extensions to tall buildings would require further - expansion of the workflow to reliable and efficient methods that support multi-fidelity analysis with both - detailed finite element tall building models and MDOF models. - -3. Currently the workflow calculates damage and monetary loss; coupling the workflow with other - social, societal or economic models, will provide opportunities to more robustly explore the - impacts of hazard events, mitigation investments and development decisions on community resilience. - The creation of techniques to automatically scrape and fuse data from the social, human and behavioral - sciences will ensure those datasets can be generated in a manner similar to those used for the - building inventory itself. - -.. note:: - - Community members who wish to contribute to the testbed in any of the above (or other) areas can - express their interest by completing this `survey `_. - - diff --git a/docs/_sources/common/testbeds/sf_bay_area/hazard_characterization.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/hazard_characterization.rst.txt deleted file mode 100644 index 1688f7357..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/hazard_characterization.rst.txt +++ /dev/null @@ -1,70 +0,0 @@ -.. _lbl-testbed_SF_hazard_characterization: - -*********************** -Hazard Characterization -*********************** - -The ground motions for the Mw 7.0 Hayward earthquake were -simulated by Rodgers et al. ([Rodgers19]_) at the Lawrence Livermore -National Lab (LLNL) using the SW4 finite difference code -([Petersson17]_). SW4 solves the elasto dynamic -equations of motion in the time domain for a 3D solid. -A 77 ~ 13 km rupture surface was projected onto the fault -geometry in the 3D geologic and seismic model for the Bay -Area ([USGS18]_) with a hypocenter near the San Leandro -salient. Waveforms were sampled in three dimensions on a 2 -km grid over the 120 ~ 80 km surface of a 35 km deep solid -body. The resulting waveforms capture ground shaking reliably -over the 0–5 Hz frequency domain for sites with a characteristic -shear wave velocity above 500 m/s. The computations were run -using more than 8,000 nodes (~ 500,000 processors) on the Cori -Phase-II cluster ([NERSC20]_). - -The raw results at 2301 grid points were processed by the -SimCenter and converted to the JSON file format used by -our workflow applications. These data provide sets of three-component -seismograms for grid points spaced every 2 km -throughout the study region. The ground motions are assigned -to buildings using a nearest-neighbor search algorithm, where the -four nearest grid points are identified for each building and a set -of 25 seismograms are assigned by weighted random sampling of -the set of time histories from the nearest grid points. The weight -of each grid point is inversely proportional to its squared distance -from the building. :numref:`pgaX` and :numref:`pgaY` show the resulting -mean peak ground acceleration maps (in East-West and North-South directions) -based on the 25 ground motions at each site. - -.. figure:: figure/PGA-X.png - :name: pgaX - :align: center - :figclass: align-center - :figwidth: 800 - - Peak ground acceleration (East-West direction) for the Mw 7.0 Hayward earthquake. - -.. figure:: figure/PGA-Y.png - :name: pgaY - :align: center - :figclass: align-center - :figwidth: 800 - - Peak ground acceleration (North-South direction) for the Mw 7.0 Hayward earthquake. - - -.. [Rodgers19] - Rodgers, A. J., Petersson, N. A., Pitarka, A., McCallen, D. B., Sjogreen, B., and Abrahamson, N. (2019). - Broadband (0-5 Hz) Fully Deterministic 3D Ground-Motion Simulations of a Magnitude 7.0 Hayward Fault Earthquake: - Comparison with Empirical Ground-Motion Models and 3D Path and Site Effects from Source Normalized Intensities. - Seismol. Res. Lett. 90:17. - -.. [Petersson17] - Petersson, N. A., and Sjogreen, B. (2017). SW4, version 2.0 [software], Computational Infrastructure of Geodynamics. - Switzerland: Zenodo.doi: 10.5281/zenodo.1045297 - -.. [USGS18] - USGS (2018). 3-D geologic and seismic velocity models of the San Francisco Bay region. Virginia, VA: USGS. - https://earthquake.usgs.gov/data/3dgeologic. - -.. [NERSC20] - NERSC (2020). Cori Cray XC 40 Computer. Berkeley: National Energy Research Scientific Computing Center. - https://docs.nersc.gov/systems/cori/. \ No newline at end of file diff --git a/docs/_sources/common/testbeds/sf_bay_area/index.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/index.rst.txt deleted file mode 100644 index 08818c589..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/index.rst.txt +++ /dev/null @@ -1,67 +0,0 @@ -.. _lbl-testbed_SF_Bay_Area: - -***************** -San Francisco, CA -***************** - -**Acknowledgements** - -The SimCenter was financially supported by the National Science Foundation under Grant CMMI-1612843. Any opinions, -findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect -the views of the National Science Foundation. We would like to acknowledge (1) the contributions and collaboration with many -faculty, post-doctoral researchers, students and staff who have contributed to the SimCenter’s work, and (2) the support and -close collaboration with DesignSafe, which facilitates access to high-performance computing and information technologies for -SimCenter tools. - -.. list-table:: Documentation Version History - :name: doc_version - :header-rows: 1 - :align: center - - * - Version - - Release Date - - Update - * - 1.0 - - 05/2021 - - Initial release - - - -**Preface** - -This documentation is intended to introduce the implementation of the SimCenter’s earthquake -regional loss modeling workflow in the context of San Francisco, California. - -The San Francisco Bay Area encompasses three large cities, San Francisco, Oakland and San Jose, which together with -the surrounding communities have a population of about 7.7 million people. The seismic hazard in the San Francisco Bay -Area is dominated by the San Andreas and Hayward faults that straddle the region. The San Andreas Fault is located just to -the west of San Francisco and is capable of a magnitude Mw 8 earthquake, such as the Mw 7.8 event that occurred in 1906. -The Hayward Fault, which runs up the eastern edge of the Bay Area, is capable of a magnitude Mw 7 earthquake, such as -the Mw 6.7 event that occurred in 1868. Recently, the USGS completed an earthquake scenario study for a Mw 7 event on -the Hayward fault, which provided an opportunity to contrast existing regional assessment methods with the SimCenter’s -computational workflow. - -The SimCenter workflow tools were applied to assess the performance of 1.84 M buildings in the San Francisco Bay -Area due to a Mw 7.0 earthquake rupture on the Hayward fault. Probabilistic assessment of earthquake consequences with -building (parcel) level resolution at this scale is only feasible using high performance computing resources, which is facilitated by -SimCenter’s regional Workflow for Hazard and Loss Estimation (rWHALE, [Elhadded19]_). The testbed focuses on -assessment of response, damage, repair costs, and repair times for all 1.84 M buildings in the simulation. - -.. toctree-filt:: - :maxdepth: 1 - - overview - asset_description - hazard_characterization - asset_representation - response_simulation - damage_and_loss - uncertainty_quantification - sample_results - example_outputs - future_refinements - feedback_request - -.. [Elhadded19] - Elhaddad, W., McKenna, F., Rynge, M., Lowe, J. B., Wang, C., and Zsarnoczay, A. (2019). - NHERI-SimCenter/WorkflowRegionalEarthquake: rWHALE (Version v1.1.0). http://doi.org/10.5281/zenodo.2554610 \ No newline at end of file diff --git a/docs/_sources/common/testbeds/sf_bay_area/overview.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/overview.rst.txt deleted file mode 100644 index 532f9fcc0..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/overview.rst.txt +++ /dev/null @@ -1,123 +0,0 @@ -.. _lbl-testbed_SF_overview: - -******** -Overview -******** - -The San Francisco Bay Area encompasses three large cities, San Francisco, Oakland and San Jose, which together with -the surrounding communities have a population of about 7.7 million people and accomendate a well-defined metro area -with a blend of low-rise commercial (1-3 stories), industrial, high-rise hotels/casinos (over 20 stories), -and single/multi-family residences. The seismic hazard in the San Francisco Bay -Area is dominated by the San Andreas and Hayward faults that straddle the region. The San Andreas Fault is located just to -the west of San Francisco and is capable of a magnitude Mw 8 earthquake, such as the Mw 7.8 event that occurred in 1906. -The Hayward Fault, which runs up the eastern edge of the Bay Area, is capable of a magnitude Mw 7 earthquake, such as -the Mw 6.7 event that occurred in 1868. - -Rationale -=========== - -This testbed for regional earthquake risk assessment of San Francisco Bay Area under Hayward Earthquake: - -1. One of its intents is to demonstrate the computational scaffolding upon which community developers can progressively contribute refinements that increase the fidelity and capacities of the backend regional resilience assessment workflow. - -2. The computational demand of this testbed is on the order over :math:`10^5` core hours (involving more than 40 M nonlinear time history analyses), which could help to test the scalability of the workflow and investigate potential optimizations. - -3. In addition, this testbed exercises collecting and concatenate building information from various data sources. - -4. During the course of developing this testbed, the USGS completed an earthquake scenario study for a Mw 7 event on the Hayward fault. Hence, this testbed also provides an opportunity to contrast existing regional assessment methods with the SimCenter’s computational workflow, based on which key limitations and future improvemnets could be identified. - -Capabilities and Supported Hazards -==================================== - -The testbed supports the transition from census-block-level loss projections to asset-level projections that -assess the damage to individual buildings under ground shaking. Supported building classes include residential, -commercial and industrial construction, critical facilities, and manufactured homes, constructed of wood, steel, -reinforced concrete and masonry. The earthquake hazard is represented by the simulated ground motions for the Mw 7.0 -Hayward earthquake ([Rodgers19]_). - -Current Implementation -======================== - -For the initial implementation of the workflow, asset description adopts an augmented parcel approach -that enriches tax assessor data. Finite difference models are employed to simulate three-component seismograms. -In lieu of a structural analysis model, assets are assigned attributes associated with -various HAZUS-consistent building classifications. The story-based damage and loss fragility models are derived from -correspoinding building-level damage and loss functions from the HAZUS earthquake methodology ([FEMA18]_). -This documentation specifically demonstrates the process of: (1) asset description, (2) hazard characterization, -(3) asset representation, and (4) damage and loss modeling. Sample results are presented to demonstrate the usage of -the workflow. - -Available Inventories -======================== - -Three different building inventories have been developed for the Atlantic County testbed and can be accessed on DesignSafe. - -**San Francisco Bay Area Inventory**: Full inventory of 1.84 M buildings in San Francisoc Bay Area, -described based on a variety of data sources (:numref:`fig-buildingClassSFBA`). - -.. _fig-buildingClassSFBA: - -.. figure:: figure/BuildingClass_sfba.png - :align: center - :figclass: align-center - :width: 1200 - - Geospatial visualization of subclasses of buildings in San Francisco Bay Area. - -**Alameda Inventory**: To be added - -**San Francisco Tall Building Inventory**: To be added - -The following figures summarize characteristics of these inventories, including distribution by year built (:numref:`fig-distBuiltYear`), by occupancy (:numref:`fig-occupancyType`), -by number of stories (:numref:`fig-numStory`) and by primary construction material (:numref:`fig-constrMaterial`). -Notably, the inventories are typified by older vintages of construction (76% of the buildings were constructed -before 1980), with a dominance of low-rise (1-2 stories), residential, wood construction (approximately -93% of San Francisco Bay Area buildings). Steel and reinforced concrete constructions are more prevalent in downtown -San Francisco, Oakland, and San Jose. - -.. _fig-distBuiltYear: - -.. figure:: figure/built_year_allset.png - :align: center - :figclass: align-center - :figwidth: 1200 - - Distribution of year built for buildings. - -.. _fig-occupancyType: - -.. figure:: figure/occupancy_type_allset.png - :align: center - :figclass: align-center - :figwidth: 1200 - - Distribution of occupancy types. - -.. _fig-numStory: - -.. figure:: figure/story_number_allset.png - :align: center - :figclass: align-center - :figwidth: 1200 - - Distribution of total story numbers for buildings. - -.. _fig-constrMaterial: - -.. figure:: figure/building_type_allset.png - :align: center - :figclass: align-center - :figwidth: 1200 - - Distribution of primary construction material types. - - -.. [Rodgers19] - Rodgers, A. J., Petersson, N. A., Pitarka, A., McCallen, D. B., Sjogreen, B., and Abrahamson, N. (2019). - Broadband (0-5 Hz) Fully Deterministic 3D Ground-Motion Simulations of a Magnitude 7.0 Hayward Fault Earthquake: - Comparison with Empirical Ground-Motion Models and 3D Path and Site Effects from Source Normalized Intensities. - Seismol. Res. Lett. 90:17. - -.. [FEMA18] - FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Earthquake Model Technical Manual, Federal Emergency Management Agency, Washington D.C. - diff --git a/docs/_sources/common/testbeds/sf_bay_area/uncertainty_quantification.rst.txt b/docs/_sources/common/testbeds/sf_bay_area/uncertainty_quantification.rst.txt deleted file mode 100644 index e93fe64db..000000000 --- a/docs/_sources/common/testbeds/sf_bay_area/uncertainty_quantification.rst.txt +++ /dev/null @@ -1,58 +0,0 @@ -.. _lbl-testbed_AC_uncertainty_quantification: - -************************** -Uncertainty Quantification -************************** - -Multiple sources of uncertainty are considered in this testbed including: the uncertainty in -asset representation, hazard characterization, and damage and loss assessment. For these uncertainty -sources, different strategies were implemented in the workflow to quantify their influence. THe following -sections will introduce the details about each component. - -In Hazard Characterization -============================== - -Given a specific category of hurricane, there are two different sources of uncertainty for site peak wind speed -and storm surge values: (1) the uncertainty induced by possible different epicentors, rupture propogations, soil velocity models, -or local soil properties (which is usually termed as epistemic uncertainty); -and (2) the inherent variation in observing the random events at the site (which is usually termed as aleatory -uncertainty). Both these two uncertainty sources can be taken into account for in the introduced workflow. - -For the epistemic uncertainty, multiple scenarios can be simulated for a given earthquake scenario. For the aleatory uncertainty, -this workflow adapts a nearest-neighbors method to propagate uncertainty through the workflow, as -illustrated in :numref:`nearestneighbors`. The ground motions are processed from SW4 -on a prescribed grid, and for each selected asset location (red square dot), the workflow randomly selects 25 samples of -the ground motions from the 4 nearest neighbors (yellow circles). Note this random -sampling is performed along with the multiple realizations from the epistemic uncertainty quantification, so the -two uncertainty sources are considered simultaneously. - -.. figure:: figure/nn.png - :name: nearestneighbors - :align: center - :figclass: align-center - :figwidth: 800 - - Nearest-neighbors method for sampling site hazard uncertainty. - - -In Structural Response Simulation -==================================== - -The approximations and uncertainties in the structural model and behavior are considered by treating the -initial stiffness and the damping ratio as random variables with a 0.1 coefficient of variation. -These uncertainties are propagated through the analysis using different realizations of the stiffness -and damping parameters for each of the 25 non-linear dynamic analyses for each building. - - -In Damage and Loss Assessment -============================== - -The testbed implemented :ref:`pelicun` (Probabilistic Estimation of Losses, Injuries, and Community resilience Under -Natural disasters) to quantify damage (damage states) and loss (in the form of decision variables, e.g., loss ratio). -The dispersion in the simulated drift and acceleration demands is inflated by 0.22 to account for additional modeling uncertainties -not considered in the non-linear dynamic analyses. In specific, 20,000 realizations of damage and -losses for each building. As described in :ref:`lbl-testbed_SF_damage_and_loss`, the damage models are continuous functions (lognormal distribution -functions) conditional on EDP. Hence, the damage state and corresponding loss ratio of an asset follow probabilistic distributions, considering all -uncertainty as discussed above that can influence the building performance. - - diff --git a/docs/_sources/common/user_manual/about/HazardSimulation/about.rst.txt b/docs/_sources/common/user_manual/about/HazardSimulation/about.rst.txt deleted file mode 100644 index bba43d0a7..000000000 --- a/docs/_sources/common/user_manual/about/HazardSimulation/about.rst.txt +++ /dev/null @@ -1,9 +0,0 @@ -.. _lblAbout: - -***** -About -***** - -This is an open-source research application, |tool github link|, released under a **BSD clause 2** license, :ref:`lblLicense`. The |app| can be used to simulate regional ground motion intensities given user-defined earthquake scenarios. Users can specify artificial earthquake sources (e.g., point sources) or select from faults in earthquake forecast models (e.g., UCERF3). Users can also specify the site soil velocities in addition to using the default database in |opensha link|. |app| provides different options for ground motion prediction equations and correlation models to compute spatially correlated intensity measures at user-defined site locations. Users can use |app| to generate multiple realizations to represent the uncertainty from earthquake sources and soil properties. If the user provide valid account information on |peer nga link|, |app| will download and parse ground motion accelerograms for running time history analyses. - -This is Version |tool version| of the tool. Users are encouraged to comment on what additional features and capabilities they would like to see in this application. These requests and feedback can be submitted through an anonymous |user survey link|. We greatly appreciate any input you have. If there are features you want, chances are many of your colleagues also would benefit from them. Users are encouraged to review the :ref:`lbl-requirements` to see what features are planned for this application. diff --git a/docs/_sources/common/user_manual/about/pelicun/about.rst.txt b/docs/_sources/common/user_manual/about/pelicun/about.rst.txt deleted file mode 100644 index aa0e4f9ba..000000000 --- a/docs/_sources/common/user_manual/about/pelicun/about.rst.txt +++ /dev/null @@ -1,17 +0,0 @@ -.. _lblAbout: - -****** -About -****** - -|short tool name| is an open-source library (|tool github link|) released under a **3-Clause BSD** license (see :ref:`lblLicense`). The |app| can be used to quantify losses from an earthquake or hurricane scenario in the form of *decision variables* (DVs). This functionality is typically utilized for performance-based engineering and regional natural hazard risk assessment. This library can help you in several steps of performance assessment: - -* **Describe the joint distribution of asset response.** The response of a structure or other type of asset to a natural hazard event is typically described by so-called engineering demand parameters (EDPs). |short tool name| provides various options to characterize the distribution of EDPs. It can calibrate a multivariate distribution that describes the joint distribution of EDPs if raw EDP data is available. Users can control the type of each marginal distribution, apply truncation limits to consider collapses, and censor part of the data to consider detection limits in their analysis. Alternatively, you can use raw EDP data as-is without resampling from a fitted distribution. - -* **Define the performance model of an asset.** The fragility and consequence functions from the first two editions of FEMA P58 and the HAZUS earthquake and hurricane wind and storm surge models for buildings are provided with pelicun. This facilitates the creation of performance models without having to collect and provide component descriptions and corresponding fragility and consequence functions. An auto-population interface encourages researchers to develop and share rulesets that automate the performance-model definition based on the available building information. Example scripts for such auto-population are also provided with the tool. - -* **Simulate asset damage.** Given the EDP samples, and the performance model, pelicun efficiently simulates the damages in each component of the asset and identifies the proportion of realizations that resulted in collapse. - -* **Estimate the consequences of damage.** Using information about collapse and component damages, the following consequences can be estimated with pelicun: repair cost and time, unsafe placarding (red tag), injuries of various severity and fatalities. - -The User Guide (:numref:`lbl-usage`) provides more details about the usage of pelicun, while the Background section in the Technical Manual (:numref:`lbl-background`) explains the theoretical background of the various options that are available in the tool. \ No newline at end of file diff --git a/docs/_sources/common/user_manual/bugs.rst.txt b/docs/_sources/common/user_manual/bugs.rst.txt deleted file mode 100644 index 8fee29f79..000000000 --- a/docs/_sources/common/user_manual/bugs.rst.txt +++ /dev/null @@ -1,20 +0,0 @@ - -.. _lblBugs: - -************************ -Bugs & Feature Requests -************************ - -If you find bugs, have feature requests, or questions about how to install or use the application please post on the |messageBoard|. -To avoid duplication try the `Search` feature before creating a `New Topic`. When creating a `New Topic` to report a bug or new feature request it would be helpful if you could place in the `Subject` area, as shown in :numref:`figBugReport`, an indication of what the post is about: - - #. **BUG**, for bugs, i.e. BUG: Program crashes when starting - #. **FEATURE**, for new feature requests, i.e. FEATURE: Incorporate OpenSeesPy - -.. _figBugReport: - -.. figure:: figures/bugReport.png - :align: center - :figclass: align-center - - Example of submitting a bug report to message board. \ No newline at end of file diff --git a/docs/_sources/common/user_manual/examples/pelicun/examples.rst.txt b/docs/_sources/common/user_manual/examples/pelicun/examples.rst.txt deleted file mode 100644 index 9bf2d5f23..000000000 --- a/docs/_sources/common/user_manual/examples/pelicun/examples.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-examples: - -******** -Examples -******** - -Example text diff --git a/docs/_sources/common/user_manual/installation/pelicun/installation.rst.txt b/docs/_sources/common/user_manual/installation/pelicun/installation.rst.txt deleted file mode 100644 index 432781067..000000000 --- a/docs/_sources/common/user_manual/installation/pelicun/installation.rst.txt +++ /dev/null @@ -1,48 +0,0 @@ -.. _lblInstallation: - -************ -Installation -************ - -pelicun is available for Python 3.6+ at the Python Package Index (PyPI). You can install it using ``pip``. - -On Windows:: - - pip install pelicun - -On a Mac or Unix systems, to make sure you install pelicun under python 3:: - - python3 -m pip install pelicun - -If you have several Python interpreters on your computer, replace python3 in the above command with the location of the Python executable that belongs to the interpreter you would like to use. For example (assuming your executable is `C:/Python37/python.exe`):: - - C:/Python37/python.exe -m pip install pelicun - - -Dependencies ------------- -The following packages are required for pelicun. They are automatically installed (or upgraded if necessary) when you use ``pip`` to install pelicun. - -+---------+-----------------+ -| package | minimum version | -+=========+=================+ -| numpy | 1.19 | -+---------+-----------------+ -| scipy | 1.5 | -+---------+-----------------+ -| pandas | 1.1 | -+---------+-----------------+ -| tables | | -+---------+-----------------+ -| h5py | | -+---------+-----------------+ -| xlrd | | -+---------+-----------------+ - - -Staying up to date ------------------- - -When a new version is released, you can use ``pip`` to upgrade your pelicun library:: - - pip install pelicun --upgrade diff --git a/docs/_sources/common/user_manual/troubleshooting/pelicun/troubleshooting.rst.txt b/docs/_sources/common/user_manual/troubleshooting/pelicun/troubleshooting.rst.txt deleted file mode 100644 index 79ecce6d0..000000000 --- a/docs/_sources/common/user_manual/troubleshooting/pelicun/troubleshooting.rst.txt +++ /dev/null @@ -1,8 +0,0 @@ -.. _lblTroubleshooting: - -Troubleshooting -=============== - -If you experience problems please report them following our guidance in :numref:`lblBugs`. - -The problems commonly encountered by users will be listed here. \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/DL_data.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/DL_data.rst.txt deleted file mode 100644 index 48d87cde6..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/DL_data.rst.txt +++ /dev/null @@ -1,42 +0,0 @@ -.. _lbl-db_DL_dat: - -******************************** -Damage and Loss Model Parameters -******************************** - -Parameters of several widely used damage and loss models are bundled with pelicun and stored in the `resources` folder in HDF5 file format. Each HDF5 file can be converted into a series of JSON files using the `export_DB` tool provided with pelicun (see :numref:blb). Working with JSON files makes it easier to edit and extend the existing databases. Pelicun recognizes both file formats. - ---------- -Databases ---------- - - :FEMA P58 1st Edition: - The `FEMA_P58_1st_ed.hdf` database includes the fragility functions provided with the first edition of FEMA P58. It is based on the XML files included with the PACT tool and Excel spreadsheets provided as part of Volume 3 of FEMA P58. All of the sources used to generate this database are available under `resources/data_sources`. - - :FEMA P58 2nd Edition: - The `FEMA_P58_2nd_ed.hdf` database includes the updated fragility functions provided with the second edition of FEMA P58. This is the default database for pelciun damage and loss calculations. It is based on the XML files included with the PACT tool and Excel spreadsheets provided as part of Volume 3 of FEMA P58. All of the sources used to generate this database are available under `resources/data_sources`. - - :HAZUS Earthquake Model: - There are three databases provided based on the HAZUS earthquake model. The `HAZUS_MH_2.1_EQ` database contains fragility and consequence functions controlled by building level EDPs (i.e., peak drift and peak acceleration). The damage model is described in detail in Section 5.4.2, while the loss models are described in sections 11.2 and 12.2 in version 4.2 of the Hazus Earthquake Technical Manual. Using these models requires information about the peak roof drift and the peak roof acceleration. - - The `HAZUS_MH_2.1_EQ_eqv_PGA` database contains fragility and consequence functions controlled by Peak Ground Acceleration only. This allows for estimating ground shaking impact without performing response simulation. The equivalent PGA-based damage models are described in detail in Section 5.4.3 in version 4.2 of the Hazus Earthquake Technical Manual. The loss models in this database are identical to those in the previously mentioned one. - - The `HAZUS_MH_2.1_EQ_story` database contains fragility and consequence functions controlled by story-level EDPs. This is an experimental database that was derived based on the building-level EDP damage models in Hazus. The story-level damage model provides higher resolution information about building damage, but requires higher resolution building response data. The loss models in this database are based on the loss models in the previous databases. They have been calibrated to provide the same building-level losses as the Hazus loss models. - - The data used to generate the Hazus earthquake damage and loss files is available under `resources/data_sources/HAZUS_MH_2.1_EQ_*/` - - :HAZUS Hurricane Model: - The `HAZUS_MH_2.1_HU` database contains fragility functions controlled by Peak Wind Gust speed and corresponding consequence functions for loss ratio. The models were fitted to damage and loss data used within the Hazus framework. The models in pelicun are different from those in Hazus. Hazus uses an uncoupled approach for damage and losses. A series of data points define the fragility and consequence functions with linear interpolation used in-between the available points. That data is described in sections 5.6 and 8.2 in version 4.2 of the Hazus Hurricane Technical Manual. Note that the raw data is not provided in the Technical Manual, but it is available in the database that comnes with the Hazus software. - - Based on the raw data from Hazus, we fitted a damage model that assumes fragility functions have either a normal or a lognormal CDF format. Fitting was performed using a maximum likelihood approach and points above 200 mph wind speed were discarded to avoid bias due to the substantial sampling error in those results. The loss model in this database is deterministic - it assumes a constant loss ratio for each damage state. The loss ratios were fitted to Hazus loss data. The solution in pelicun provides a coupled damage and loss model for hurricane damage and loss assessment. - - The data used to generate the Hazus hurricane damage and loss files is available under `resources/data_sources/HAZUS_MH_2.1_HU` - - ----------------- -Data File Format ----------------- - - The sample file below shows the organization of damage and loss model data in the JSON files used in pelicun. - - .. literalinclude:: fragility_example.json \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/config.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/config.rst.txt deleted file mode 100644 index 63c03667e..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/config.rst.txt +++ /dev/null @@ -1,232 +0,0 @@ -.. _lbl-in_config: - -****************** -Configuration File -****************** - -Pelicun uses two input files to set up the damage and loss calculation. The Configuration File defines the parameters of the calculation, while the Response Data File (:numref:`lbl-in_response`) defines the demand on the structure through EDP (or IM) values. The information in the configuration file is stored in JSON format. Below we show a sample configuration file and explain the various settings available. - - -.. literalinclude:: config_example_P58.json - - -=================== -General Information -=================== - -The General Information part of the file provides basic information about the structure and specifies the units for the analysis. The length unit specified here defines the units for the inputs, including those for areas, and accelerations. For example, if the length unit is set to `m`, pelicun will assume that the plan area is provided in `m2` and the floor accelerations in the EDP file are provided in `m/s2`. - -=============== -Damage And Loss -=============== - -This part contains the damage and loss calculation settings broken into several sub-sections for easier navigation. The `_method` identifies the type of assessment to perform, `FEMA P58` and `HAZUS MH` are available in the current version. - --------------- -Response Model --------------- - -The response model specifies how the raw EDP data is handled in the calculation. The following settings are available: - - - :EDP_distribution: - Specifies the approach to describing the distribution of EDPs. If `empirical` is selected, the raw EDPs are kept as is and resampled during the assessment. The `lognormal` setting fits a multivariate lognormal distribution to the EDPs. The `truncated lognormal` setting can be used to set a truncated multivariate lognormal distribution to the non-collapse results by setting the Basis (the next setting) appropriately. - - - :BasisOfEstimate: - Specifies the basis of the EDP distribution. The `all results` setting uses all samples, while the `non-collapse results` removes the samples that have EDPs beyond the collapse limits (see in a later setting). - - - :Realizations: - The number of EDP and corresponding damage and loss realizations to generate. Depending on the complexity of the model, a thousand realizations might be sufficient to capture central tendencies. A much larger number is required to get appropriate estimates of the dispersion of results. If the EDP distribution is set to empirical, the EDP realizations are sampled from the set of raw EDP values with replacement. If the EDP distribution is set to lognormal or truncated lognormal, the samples are generated from the distribution that is fit to the raw EDP values. - - - :CoupledAssessment: - If set to `true`, the EDPs are used as-is and not resampled. - - - :Additional Uncertainty: - Ground motion and Model uncertainty as per FEMA P58. The prescribed logarithmic standard deviation values are added to the dispersion of EDPs to arrive at the description of uncertain building response. - - - :Detection Limits: - These limits correspond to the maximum possible values that the response history analysis can provide. While peak interstory drifts will certainly have an upper limit, peak floor acceleration will not necessarily require such a setting. Leaving any of the fields empty corresponds to unlimited confidence in the simulation results. - - Note: these limits will be used to consider EDP data as a set of censored samples when fitting the multivariate distribution set under Response Description. If the EDP distribution is set to empirical, this setting has no effect. - - ------------- -Damage Model ------------- - -The damage model specifies how damages are calculated. The following settings are available: - - - :Irreparable Residual Drift: - - Describes the limiting residual drift as a random variable with a lognormal distribution. See Figure 2-5 and Section 7.6 in FEMA P58 for details. The prescribed yield drift ratio is used to estimate residual drifts from peak interstory drifts per Section 5.4 in FEMA P58. This is only needed if no reliable residual drifts are available from the simulation. Considering the large uncertainty in estimated residual drift values, it is recommended to consider using the peak interstory drift as a proxy even if it would be numerically possible to obtain residual drift values. - - :Collapse Probability: - - :Approach: - - Specifies if the collapse probability shall be estimated from EDP samples (`estimated`), or prescribed by the user (`prescribed`). - - :Prescribed value: - - If the prescribed approach is selected above, you can specify the probability of collapse here. - - :Basis: - - If the estimated approach is selected above, you can specify the basis of collapse probability estimation here. `sampled EDP` corresponds to using the (re)sampled EDPs, while `raw EDP` corresponds to using the EDP inputs to evaluate the proportion above the collapse limits to get the collapse probability. - - :Collapse Limits: - - If the Approach under Collapse Probability is set to `estimated`, the collapse of the building in each realization is inferred from the magnitude of EDPs. The collapse limits describe the EDP value beyond which the building is considered collapsed. Note that collapse limits might be beyond the detection limits (although that is generally not a good idea) and certain EDPs might not have collapse limits associated with them (e.g. PFA). - ----------- -Loss Model ----------- - -The loss model specifies how the consequences of damages are calculated. The following settings are available: - - - :Replacement Cost and Time: - - The cost (in the currency used to describe repair costs, typically US dollars) and the time (in days or workerdays depending on the method used) it takes to replace the building. - - :Decision variables of interest: - - These switches allow the user to pick the decision variables of interest and save computation time and storage space by only focusing on those. - - :Inhabitants: - - :Occupancy Type: - - The type of occupancy is used to describe the temporal distribution of the inhabitants. - - :Peak Population: - - The maximum number of people present at each floor of the building. If a single value is provided, it is divided among the floors. If a list of values is provided, each is assigned to the corresponding floor in the buildng. The example shows a house with no persons on the first floor and 2 persons on its second floor. - - :Custom distribution: - - By default, the calculations are performed using population and fragility data bundled with pelicun. Each data source can be overridden by custom user-defined data. This field allows you to provide a custom json file that describes the change in building population over time. - ------------- -Dependencies ------------- - -Pelicun allows users to prescribe dependencies between various components of the performance model. Note that both FEMA P58 and HAZUS assumes most of these settings are set to `Independent`. - -Every type of prescribed dependency assumes perfect correlation between a certain subset of the model variables and no correlation between the others. Future versions will expand on this approach by introducing more complex correlation structures. - - -Logical components -^^^^^^^^^^^^^^^^^^ - -You can assign perfect correlation between the following logical components of the model: - - :Fragility Groups: - Assumes that the selected parameters are correlated between Fragility Groups (i.e. the highest organizational level) and at every level below. That is, with this setting, the users assigns perfect correlation between every single parameter of the selected type in the model. Use this with caution. - - :Performance Groups: - Assumes that the selected parameters are correlated between all Performance Groups and at every logical level below. For instance, this setting for Component Quantities will lead to identical deviations from mean quantities among the floors and directions in the building. - - :Floors: - Assumes that the selected parameters are correlated between Performance Groups at various floors, but not between Performance Groups in different directions in the building. Also assumes perfect correlation between the Damage States within each Performance Group. This is useful when the parameter is direction-dependent and similar deviations are expected among all floors in the same direction. - - :Directions: - Assumes that the selected parameters are correlated between Performance Groups in various (typically two) directions, but not between different floors of the building. This can be useful when you want to prescribe similar deviations from mean values within each floor, but want to allow independent behavior over the height of the building. - - :Damage States: - Correlation at the lowest organizational level. Assumes that the selected parameters are correlated between Damage States only. This type of correlation, for instance, would assume that deviation from the median reconstruction cost is due to factors that affect all types of damage within a performance group in identical fashion. - - -Model parameters -^^^^^^^^^^^^^^^^^^^^ - -The following model parameters can handle the assigned dependencies: - - - :Component Quantities: - The amount of components in the building (see the description under Components below for more details). - - :Component Fragilities: - Each Damage State has a corresponding random EDP limit. The component fragilities is a collection of such EDP limit variables. - - Note: most methodologies assume that such EDP limits are perfectly correlated at least among the Damage States within a Component Subgroup. - - :Reconstruction Costs and Times: - The cost and time it takes to repair a particular type of damage to a component. The btw. Rec. Cost and Time setting allows you to define correlation between reconstruction cost and time on top of the correlations already set above for each of these individually. - - Note: if you do define such a correlation structure, the more general correlation among the settings in the Reconstruction Costs and Reconstruction Times lines will need to be applied to both cases to respect conditional correlations in the system. (e.g., if you set costs to be correlated between Performance Groups and times to correlate between Floors and check the cost and time correlation as well, times will be forced to become correlated between Performance Groups.) - - :Injuries: - The probability of being injured at a given severity when being in the affected area of a damaged component. Note that the Injuries lines prescribe correlations between the same level of injury at different places in the building. Correlation between different levels of injury at the same place can be prescribed by the btw. Injuries and Fatalities setting. - - :Red Tag Probabilities: - The amount of damage in a given Damage State that triggers an unsafe placard or red tag. - - -The default FEMA P58 setting assumes that all variables are independent, except for the fragility data, where the fragilities of certain *Component Groups* (i.e. groups of components with identical behavior within Performance Groups) are perfectly correlated. This behavior is achieved by setting every other dependency to ``Independent`` and setting the ``Component Fragilities`` to ``per ATC recommendation``. - ----------- -Components ----------- - -This part of the configuration file defines the Fragility Groups in the building with the quantities and locations. - -Each Fragility Group is identified with a unique ID. The example below uses IDs from FEMA P58, but similar IDs are available in the Hazus database as well. Each ID is assigned to a list of quantity specifications. The quantity specifications define the location of the Performance Groups that collectively make up the Fragility Group. More than one quantity specifications are warranted when the quantities or the uncertainty in quantities changes by location or direction. For example, the first component in the sample configuration file below has two quantity specfications - one for the first and another for the second direction. Each quantity specficiation has several attributes to specify the quantity and location of components: - - :location: - In buildings, locations are typically stories. The ground floor is story 1. Providing ``all`` assigns the same setting to every story. You can use a dash to specify a range of stories, such as ``3-7``. If a component is only assigned to the top story, or the roof, you can use ``top`` or ``roof``. You can also combine these and use ``3-roof`` for example. These settings make it easy to transfer performance models between buildings that have different number of stories. - - :direction: - The directions correspond to EDPs that are used to assess the fragility of the components. They shall match the directions in the EDP results from the simulations. Typically, ``1`` corresponds to the horizontal X direction and ``2`` to the Y direction. - - :median_quantity: - Components within a Fragility Group are separated into Performance Groups by floor and direction. Components within a Performance Group are further separated into Component Groups. Components within a Component Group experience identical damage and losses. Correlations between the behavior of Component Groups and higher-level sets is specified under Dependencies. - - The list of quantities provided specifies the number of Component Groups and the quantity of components in each Component Group. These are assigned to each Performance Group in the locations and directions provided. - - :unit: - The unit used to specify component quantities. You can use any of the commonly used metric or US units as long as it belongs to the same class (i.e., length, area, etc.) as the default unit for the fragility group. Squared units are expressed by using a ``2`` after the name, such as ``ft2`` for square feet. - - :distribution: - If you want to model the uncertainty in component quantities, select either normal or lognormal distribution here. The ``N/A`` setting corresponds to known quantities with no uncertainty. - - :cov: - Coefficient of variation for the random distribution of component quantities. If the distribution is set to ``N/A``, this can be omitted. - - -As long as you want to assign the same amount of components to every floor and every direction, one quantity specification is sufficient. Oftentimes, you will want to have more control over component quantities because the amount of components is not identical in all floors and directions. - -The example configuration shows the assignment of two Fragility Groups. The first group is only used in the first floor and it has different quantities in direction 1 and 2 and required two quantity specfications in the file. The second Fragility Group could use the same quantity assignment to all floors and directions. - --------------- -Collapse Modes --------------- - -Collapse modes provide information for the estimation of injuries from building collapse when the FEMA P58 method is used. They are only used if injuries are among the requested Decision Variables. The following pieces of information are required for each collapse mode: - - :name: - A name that helps you identify the collapse mode. It is arbitrary and not used by the loss assessment engine. - - :weight: - Conditioned on collapse, the likelihood of this collapse mode. The provided likelihoods across all collapse modes must sum up to 1.0. - - :affected_area: - The affected area (as a fraction of the total plan area) of the building at each floor. If only one number is provided, the same affected area is assumed on all floors. If a list of numbers is provided, you can specify the affected area on each floor. - - :injuries: - The probability of each level of injury when people are in the affected area and this collapse mode occurs. (FEMA P58 assumes two levels of severity: injuries and fatalities). - - ---------------------- -Component Data Folder ---------------------- - -Specifies the location of the fragility and consequence data that will be used for the damage and loss assessment. When empty or omitted, the data from the second edition of FEMA P58 is loaded by default. The corresponding json files are available in the applications folder under: ``resources/FEMA P58 second edition.hdf`` - -The components from the first edition of FEMA P58 and the earthquake and hurricane damage and loss models from HAZUS are also bundled with pelicun and available under ``resources``. The Fragility and Consequence Data section of tha manual (:numref:lbl-db_DL_dat) provides more information about the data and how it can be edited. \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/databases/DL_data.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/databases/DL_data.rst.txt deleted file mode 100644 index 2f4d46ec3..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/databases/DL_data.rst.txt +++ /dev/null @@ -1,35 +0,0 @@ -.. _lbl-db_DL_dat: - -******************************** -Damage and Loss Model Parameters -******************************** - -... - --------------------- -FEMA-P58 1st Edition --------------------- - -... - --------------------- -FEMA-P58 2nd Edition --------------------- - -... - ----------------------- -HAZUS Earthquake Model ----------------------- - -Building-level... - -Intensity based... - -Story-level... - ----------------------- -HAZUS Hurricane Model ----------------------- - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/databases/databases.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/databases/databases.rst.txt deleted file mode 100644 index 1afd392d1..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/databases/databases.rst.txt +++ /dev/null @@ -1,12 +0,0 @@ -.. _lbl-databases: - -********* -Databases -********* - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:DL_data \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/framework/auto.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/framework/auto.rst.txt deleted file mode 100644 index 6eb782e1e..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/framework/auto.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_auto: - -*************** -Auto population -*************** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/framework/framework.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/framework/framework.rst.txt deleted file mode 100644 index c194b233d..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/framework/framework.rst.txt +++ /dev/null @@ -1,18 +0,0 @@ -.. _lbl-framework_overview: - -********************* -The PELICUN Framework -********************* - -... - -.. toctree-filt:: - :maxdepth: 1 - - :pelicun:overview - :pelicun:res_model - :pelicun:performance - :pelicun:damage - :pelicun:loss - :pelicun:auto - :pelicun:uq \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/framework/uq.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/framework/uq.rst.txt deleted file mode 100644 index 595f277b3..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/framework/uq.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-framework_uq: - -************************** -Uncertainty Quantification -************************** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/outputs.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/outputs.rst.txt deleted file mode 100644 index b81e6c08a..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/outputs.rst.txt +++ /dev/null @@ -1,49 +0,0 @@ -.. _lbl-outputs: - -============ -Output Files -============ - -Damage and loss calculations in pelicun provide several output files that describe the EDP, DM, and DV values at the atomic level corresponding to each realization for each component group and also aggregated at a few higher levels in the performance model hierarchy for convenience. - -The ``DL_calculation.py`` script provides all of the output files listed below. When researchers directly use methods from the pelicun library in their own scripts, they can pick the methods to save computation time by only saving the outputs they need. - - :Summary Data: - - :DL_summary: - Provides a high-level overview of the main results. Each row corresponds to a damage and loss realization and each column corresponds to an outcome. - - :DL_summary_stats: - Rather than providing results for each realization, this file contains frequently used statistics to describe the main results: mean, standard deviation, 10%, 50%, and 90% percentile, and minimum and maximum values of each outcome. - - :Response: - - :EDP_: - Provides the EDP values used in the calculation. Each row corresponds to a realization and each column corresponds to an EDP type and is identified in the header using SimCenter's nomenclature for EDPs. The EDPs are provided in the units specified by the user in the Configuration File. In a coupled analysis, these EDPs should be identical to the ones in the Response Data File. In an uncoupled analysis when EDPs are re-sampled, these EDPs are the sampled values. - - :EDP_stats: - Contains frequently used statistics to describe the EDPs: mean, standard deviation, 10%, 50%, and 90% percentile, and minimum and maximum values of each EDP type. - - :Damage: - - :DMG: - Provides the damaged quantities per Damage State (header row 3) per Performance Group (header row 2) per Fragility Group (header row 1). Each row corresponds to a realization. Note that component damages are only calculated for non-collapsed cases, therefore the number of realizations in this file might be less than the total number of realizations. The Damage State is provided in the format of ``DSG_DS`` where DSG identifies the Damage State Group and DS identifies the Damage State within the DSG. See the Technical Manual for details on handling Damage States in the pelicun framework. - - :DMG_agg: - Aggregates damaged quantitites to the Fragility Group level (i.e., sums up damaged quantities for all Performance Groups in all Damage States within a Fragility Group). - - :DMG_stats: - Contains frequently used statistics to describe the quantities of damaged components: mean, standard deviation, 10%, 50%, and 90% percentile, and minimum and maximum values of damaged quantities. - - :Losses: - - :DV_: - Provides decision variable values per Damage State (header row 3) per Performance Group (header row 2) per Fragility Group (header row 1). Each row corresponds to a realization. Note that component losses are only calculated for non-collapsed cases, therefore the number of realizations in this file might be less than the total number of realizations. The Damage State is provided in the format of ``DSG_DS`` where DSG identifies the Damage State Group and DS identifies the Damage State within the DSG. See the Technical Manual for details on handling Damage States in the pelicun framework. - - The following ``DV_types`` are provided by pelicun: ``injuries``, ``rec_cost``, ``rec_time``, ``red_tag``. - - :DV__agg: - Aggregates decision variable values to the Fragility Group level (i.e., sums up values for all Performance Groups in all Damage States within a Fragility Group). - - :DV__stats: - Contains frequently used statistics to describe the decision variable values of components: mean, standard deviation, 10%, 50%, and 90% percentile, and minimum and maximum values of decision variables. \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/outputs/damages.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/outputs/damages.rst.txt deleted file mode 100644 index 25042bd2e..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/outputs/damages.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-out_damages: - -*************** -Damage Measures -*************** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/outputs/demands.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/outputs/demands.rst.txt deleted file mode 100644 index 23a301149..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/outputs/demands.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-out_demands: - -*********** -Demand Data -*********** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/outputs/losses.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/outputs/losses.rst.txt deleted file mode 100644 index 5ccb59c08..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/outputs/losses.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-out_losses: - -****************** -Decision Variables -****************** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/outputs/outputs.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/outputs/outputs.rst.txt deleted file mode 100644 index 3df683624..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/outputs/outputs.rst.txt +++ /dev/null @@ -1,15 +0,0 @@ -.. _lbl-outputs: - -************ -Output Files -************ - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:summary - :pelicun:demands - :pelicun:damages - :pelicun:losses \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/outputs/summary.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/outputs/summary.rst.txt deleted file mode 100644 index 6cba9c683..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/outputs/summary.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-out_summary: - -************ -Summary Data -************ - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/res_data.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/res_data.rst.txt deleted file mode 100644 index da62b4e35..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/res_data.rst.txt +++ /dev/null @@ -1,59 +0,0 @@ -.. _lbl-in_response: - -****************** -Response Data File -****************** - -The response data file provides the demand data for the assessment. Demands are either Engineering Demand Parameters from a response simulation or Intensity Measures from a hazard assessment. The types of demands provided must match the types of demands requested by the fragility functions. - -The data is expected in CSV file format. The first line of the file is a header that identifies the types of EDPs in the file. pelicun uses SimCenter's naming convention for EDPs (see :numref:`fig-res_data`). There are four pieces of information provided in the name of each EDP: - - :event_id: - Identifies the event in a multi-event scenario. `1` is used for single-event studies. - - :EDP_type: - Specifies the type of EDP provided. pelicun currently supports the following EDP types in response data files: - - :PID: - Peak Interstory Drift Ratio - - :RID: - Residual Interstory Drift Ratio - - :PRD: - Peak Roof Drift Ratio - - :PFA: - Peak Floor Acceleration - - :PFV: - Peak Floor Velocity - - :PGA: - Peak Ground Acceleration - - :PGV: - Peak Ground Velocity - - :PGD: - Permanent Ground Deformation - - - :location: - Specifies the location where the EDP was measured. In buildings, locations typically correspond to floors with `0` being the ground for accelerations and `1` being the first floor for drift ratios. - - :direction: - Specifies the direction of the EDP. In buildings, typically the two horizontal directions are used and they are labeled as `1` and `2`. Any numbering logic can be used here, but the labels must match the ones provided under `Components` in the Configuration File (see :numref:`lbl-in_config`) - - -Each row in the file provides EDPs from one simulation. EDP units are assumed to follow the unit specification in the Configuration File. - -.. _fig-res_data: - -.. figure:: figures/res_data.png - :align: center - :figclass: align-center - :figwidth: 600 px - - Sample response data file and EDP naming convention. - diff --git a/docs/_sources/common/user_manual/usage/pelicun/tools.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/tools.rst.txt deleted file mode 100644 index 0792be717..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/tools.rst.txt +++ /dev/null @@ -1,51 +0,0 @@ -.. _lbl-tools: - -**************** -Standalone Tools -**************** - -Standalon python scripts are provided with pelicun that are built using methods from the library and facilitate using pelicun for those who prefer to work in an environment other than Python. These tools are listed below. - -============== -DL_calculation -============== - -`DL_calculation.py` uses elements of the pelicun library to assemble a damage and loss calculation workflow, perform the calculations and save the results. It can be run from the command line as follows:: - - python DL_calculation.py --filenameDL --filenameEDP - -where `` should be replaced with a string pointing to the damage and loss configuration file and `` should be replaced with a string pointing to the EDP input file. (see :numref:`lbl-inputs` for details on those files) - -Additional optional settings through `` allow researchers to customize their calculations. All of these settings need to be provided by adding `--argument_name argument_value` to the command above, where `argument_name` is the name shown in bold below and `argument_value` is the provided setting for that argument. - -The following arguments are available: - - :Realizations: - Overrides the number of realizations set in the configuration file. - - :dirnameOutput: - Specifies the location where the output files will be saved at the end of the calculation. The default location is the folder where the command is executed. - - :event_time: - Setting it to "False" turns off the consideration of event time and the change in the population in the building over the course of a day. When the event time is turned off, pelicun calculates with the peak population for every realization. The default value is "True". - - :detailed_results: - When set to "False", the `DL_calculation` script only prints the main results of the calculation that provide an overview of the EDPs, DMs, and DVs. Detailed results allow researchers to review intermediate calculation outputs and disaggregate the damage and loss measures to individual components. The default value is "True". - - :coupled_EDP: - Overrides the coupled_EDP setting in the configuration file. The default value is "False". - - :log_file: - When set to "False", no log file is produced. The default value is "True". - -======== -exportDB -======== - -This tool faciliates exporting the contents of HDF5 Damage and Loss databases to JSON files that can be easily edited by researchers. - -The script can be run from the command line as follows:: - - python export_DB.py --DL_DB_path --target_dir - -where `` should be replaced with a string pointing to the HDF5 file tha contains the damage and loss database, and `` should be replaced with a string pointing to the directory where you want to save the JSON files. diff --git a/docs/_sources/common/user_manual/usage/pelicun/tools/DL_calculation.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/tools/DL_calculation.rst.txt deleted file mode 100644 index e99fcebf4..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/tools/DL_calculation.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_DL_calc: - -************** -DL_calculation -************** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/tools/exportDB.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/tools/exportDB.rst.txt deleted file mode 100644 index fd22f8db3..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/tools/exportDB.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_exportDB: - -******** -exportDB -******** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/tools/fitDistribution.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/tools/fitDistribution.rst.txt deleted file mode 100644 index cd58eab08..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/tools/fitDistribution.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_fitDistribution: - -*************** -fitDistribution -*************** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/tools/sampleRV.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/tools/sampleRV.rst.txt deleted file mode 100644 index aea22811d..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/tools/sampleRV.rst.txt +++ /dev/null @@ -1,7 +0,0 @@ -.. _lbl-tools_sampleRV: - -******** -sampleRV -******** - -... \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/tools/tools.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/tools/tools.rst.txt deleted file mode 100644 index a251d4fb5..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/tools/tools.rst.txt +++ /dev/null @@ -1,15 +0,0 @@ -.. _lbl-tools: - -**************** -Standalone Tools -**************** - -... - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:DL_calculation - :pelicun:exportDB - :pelicun:sampleRV - :pelicun:fitDistribution \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/usage.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/usage.rst.txt deleted file mode 100644 index 01fc83c37..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/usage.rst.txt +++ /dev/null @@ -1,18 +0,0 @@ -.. _lbl-usage: - -********** -User Guide -********** - -Usage text - -.. toctree-filt:: - :maxdepth: 2 - - :pelicun:uses - - :pelicun:config - :pelicun:res_data - :pelicun:DL_data - :pelicun:outputs - :pelicun:tools \ No newline at end of file diff --git a/docs/_sources/common/user_manual/usage/pelicun/uses.rst.txt b/docs/_sources/common/user_manual/usage/pelicun/uses.rst.txt deleted file mode 100644 index 9f0163a05..000000000 --- a/docs/_sources/common/user_manual/usage/pelicun/uses.rst.txt +++ /dev/null @@ -1,34 +0,0 @@ -.. _lbl-usage_types: - -***** -Usage -***** - -The pelicun library can be used in three different ways. We recommend getting started with the help of the Performance Based Engineering Application (PBE) that facilitates getting familiar with the settings and the structure of the input files. - ------------------------ -Use through the PBE App ------------------------ - -The PBE Application is desktop application developed by the SimCenter for performance assessment of individual buildings. It provides a graphical user interface where researchers can conveniently set up the analysis and review the main results (:numref:`fig-dl-p58-general`). The backend of the PBE App uses pelicun to perform damage and loss calculations and the input file generated by the application has the same format that is expected by pelicun. Please visit the website of the PBE App Documentation for more information on how to use that application. - -.. _fig-dl-p58-general: - -.. figure:: figures/dl_p58_general.png - :align: center - :figclass: align-center - - The General Damage and Loss Settings panel in the PBE Application. - ---------------------- -Use as an Application ---------------------- - -Several scripts are installed with pelicun to help those researchers who are not familiar with the Python programming language. These scripts are located under the `tools` folder and they are discussed in more detail under :numref:'lbl-tools'. - ----------------- -Use as a Library ----------------- - -Researchers can build methods and objects from pelicun into their Python applications. The `DL_calculation.py` script provides an example and the API reference in the Developer Manual provides a detailed description of the available methods and classes in pelicun. - diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt deleted file mode 100644 index c94cc3a49..000000000 --- a/docs/_sources/index.rst.txt +++ /dev/null @@ -1,157 +0,0 @@ -|full tool name| -===================================================================== - -.. only:: html - - |developers| - - .. only:: R2D_app - - - The |full tool name| (|app|) is an open-source research application that can be used to simulate the performance of the built environment subjected to natural hazards. Version 1 will allow users to predict the performance of the buildings in the region when subjected to earthquake events. Version 2, due May 2021, will allow researchers to study the effects given a Hurricane event. Future version will allow users to study effects of lifleines and interdependencies. The computations are performed by a simulation workflow that will run on either the user's local machine or on a high performance computer made available by |DesignSafe|. - - .. only:: PBE_app - - The |full tool name| (|app|) is an open-source research application that can be used to predict the performance of a building subjected to earthquake events. The application is focused on quantifying building performance given the uncertainties in models, earthquake loads, and analysis. The computations are performed in a workflow application that will run on either the users local machine or on a high performance computer made available by |DesignSafe|. - - .. only:: EEUQ_app - - The |full tool name| (|app|) is an open-source research application that can be used to predict the response of a building subjected to earthquake events. The application is focused on quantifying the uncertainties in the predicted response, given the that the uncertainties in models, earthquake loads, and analysis. The computations are performed in a workflow application that will run on either the users local machine or on a high performance computer made available by |DesignSafe|. - - - .. only:: WEUQ_app - - The |full tool name| (|app|) is an open-source research application that can be used to predict the response of a building subjected to wind loading events. The application is focused on quantifying the uncertainties in the predicted response, given the that the uncertainties in models, wind loads, and analysis. The computations are performed in a workflow application that will run on either the users local machine or on a high performance computer made available by |DesignSafe|. - - - .. only:: quoFEM_app - - The |full tool name| is an open-source research application which focuses on providing uncertainty quantification methods (forward, inverse, reliability, sensitivity and parameter estimation) to researchers in natural hazards who utilize existing simulation software applications, typically Finite Element applications, in their work. The computations are performed in a workflow application that will run on either the users local machine or on a high performance computer made available by |DesignSafe|. - - .. only:: pelicun - - The |full tool name| is an open-source implementation of the PELICUN framework in a Python package. PELICUN is developed as an integrated multi-hazard framework to assess the performance of buildings and other assets in the built environment under natural hazards. Its foundation is the FEMA P58 performance assessment methodology that is extended beyond the seismic performance assessment of buildings to also handle wind and water hazards, bridges and buried pipelines, and performance assessment using vulnerability functions and damage models based on intensity measures (e.g., Hazus). - - .. only:: Hydro - The Water-borne Natural Hazards with Uncertainty Quantification Application (Hydro-UQ app) is an open-source research application that can be used to predict the response of a building / a community subjected to events like tsunami and storm-surge. The application is focused on quantifying the uncertainties in the predicted response, given the that the uncertainties in models, loads, and analysis. The computations are performed in a workflow application that will run on a high performance computer made available by |DesignSafe|. - - - - This document covers the features and capabilities of Version |tool version| of the tool. Users are encouraged to comment on what additional features and capabilities they would like to see in future versions of the application through the |messageBoard|. - -.. _lbl-front-matter: - -.. toctree-filt:: - :caption: About - :maxdepth: 1 - :numbered: 4 - - :PBE:common/user_manual/about/PBE/about - :R2D:common/user_manual/about/R2D/about - :EEUQ:common/user_manual/about/EEUQ/about - :WEUQ:common/user_manual/about/WEUQ/about - :quoFEM:common/user_manual/about/quoFEM/aboutQUOFEM - :pelicun:common/user_manual/about/pelicun/about - - :desktop_app: common/front-matter/ack - - common/front-matter/pelAck - - common/front-matter/license - common/front-matter/glossary.rst - common/front-matter/abbreviations.rst - - -.. _lbl-user-manual: - -.. toctree-filt:: - :caption: User Manual - :maxdepth: 1 - :numbered: 4 - - :desktop_app:common/user_manual/installation/desktop/installation - :pelicun:common/user_manual/installation/pelicun/installation - - :desktop_app:common/user_manual/usage/desktop/usage - :pelicun:common/user_manual/usage/pelicun/usage - - :desktop_app:common/user_manual/troubleshooting/desktop/troubleshooting - :pelicun:common/user_manual/troubleshooting/pelicun/troubleshooting - - :desktop_app:common/user_manual/examples/desktop/examples - - :EEUQ:common/reqments/EEUQ - :WEUQ:common/reqments/WEUQ - :PBE:common/reqments/PBE - :quoFEM:common/reqments/reqQUOFEM - :pelicun:common/reqments/reqPelicun - - common/user_manual/bugs - -.. _lbl-testbeds-manual: - -.. toctree-filt:: - :caption: Testbeds - :maxdepth: 1 - :numbered: 3 - - :docTestbeds:common/testbeds/sf_bay_area/index - :docTestbeds:common/testbeds/atlantic_city/index - .. :docTestbeds:common/testbeds/memphis/index - .. :docTestbeds:common/testbeds/anchorage/index - .. :docTestbeds:common/testbeds/lake_charles/index - -.. _lbl-technical-manual: - - - -.. toctree-filt:: - :caption: Technical Manual - :maxdepth: 1 - :numbered: 2 - - :Hydro:Hydro/techman/hazards/water - :Hydro:Hydro/techman/fvm/fvm - :Hydro:Hydro/techman/swsolver/swsolver - :Hydro:Hydro/techman/cfdsolver/cfdsolver - :Hydro:Hydro/techman/swcfdcoupling/swcfdcoupling - :Hydro:Hydro/techman/UQ/uqengine - :desktop_app:common/technical_manual/desktop/technical_manual - - :pelicun:common/technical_manual/pelicun/background/background - :pelicun:common/technical_manual/pelicun/verification/verification - - -.. _lbl-developer-manual: - -.. toctree-filt:: - :caption: Developer Manual - :maxdepth: 1 - :numbered: 4 - - :desktop_app:common/developer_manual/how_to_build/desktop/how_to_build - - :desktop_app:common/developer_manual/architecture/desktop/architecture - - :desktop_app:common/developer_manual/how_to_extend/desktop/how_to_extend - - :desktop_app:common/developer_manual/verification/desktop/verification - - :desktop_app:common/developer_manual/coding_style/desktop/coding_style - :pelicun:common/developer_manual/coding_style/pelicun/coding_style - - :docTestbeds:common/developer_manual/examples/desktop/examples - - :pelicun:common/developer_manual/API/pelicun/API - - -Contact -======= - -|contact person| - - -References -========== - -.. bibliography:: common/references.bib diff --git a/docs/_static/basic.css b/docs/_static/basic.css deleted file mode 100644 index 6acc2a73f..000000000 --- a/docs/_static/basic.css +++ /dev/null @@ -1,856 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -div.section::after { - display: block; - content: ''; - clear: left; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; - word-wrap: break-word; - overflow-wrap : break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox form.search { - overflow: hidden; -} - -div.sphinxsidebar #searchbox input[type="text"] { - float: left; - width: 80%; - padding: 0.25em; - box-sizing: border-box; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - float: left; - width: 20%; - border-left: none; - padding: 0.25em; - box-sizing: border-box; -} - - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; - margin-left: auto; - margin-right: auto; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable ul { - margin-top: 0; - margin-bottom: 0; - list-style-type: none; -} - -table.indextable > tbody > tr > td > ul { - padding-left: 0em; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- domain module index --------------------------------------------------- */ - -table.modindextable td { - padding: 2px; - border-collapse: collapse; -} - -/* -- general body styles --------------------------------------------------- */ - -div.body { - min-width: 450px; - max-width: 800px; -} - -div.body p, div.body dd, div.body li, div.body blockquote { - -moz-hyphens: auto; - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; -} - -a.headerlink { - visibility: hidden; -} - -a.brackets:before, -span.brackets > a:before{ - content: "["; -} - -a.brackets:after, -span.brackets > a:after { - content: "]"; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -img.align-default, .figure.align-default { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-default { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px; - background-color: #ffe; - width: 40%; - float: right; - clear: right; - overflow-x: auto; -} - -p.sidebar-title { - font-weight: bold; -} - -div.admonition, div.topic, blockquote { - clear: left; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- content of sidebars/topics/admonitions -------------------------------- */ - -div.sidebar > :last-child, -div.topic > :last-child, -div.admonition > :last-child { - margin-bottom: 0; -} - -div.sidebar::after, -div.topic::after, -div.admonition::after, -blockquote::after { - display: block; - content: ''; - clear: both; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - margin-top: 10px; - margin-bottom: 10px; - border: 0; - border-collapse: collapse; -} - -table.align-center { - margin-left: auto; - margin-right: auto; -} - -table.align-default { - margin-left: auto; - margin-right: auto; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -th > :first-child, -td > :first-child { - margin-top: 0px; -} - -th > :last-child, -td > :last-child { - margin-bottom: 0px; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text { -} - -/* -- field list styles ----------------------------------------------------- */ - -table.field-list td, table.field-list th { - border: 0 !important; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.field-name { - -moz-hyphens: manual; - -ms-hyphens: manual; - -webkit-hyphens: manual; - hyphens: manual; -} - -/* -- hlist styles ---------------------------------------------------------- */ - -table.hlist { - margin: 1em 0; -} - -table.hlist td { - vertical-align: top; -} - - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -:not(li) > ol > li:first-child > :first-child, -:not(li) > ul > li:first-child > :first-child { - margin-top: 0px; -} - -:not(li) > ol > li:last-child > :last-child, -:not(li) > ul > li:last-child > :last-child { - margin-bottom: 0px; -} - -ol.simple ol p, -ol.simple ul p, -ul.simple ol p, -ul.simple ul p { - margin-top: 0; -} - -ol.simple > li:not(:first-child) > p, -ul.simple > li:not(:first-child) > p { - margin-top: 0; -} - -ol.simple p, -ul.simple p { - margin-bottom: 0; -} - -dl.footnote > dt, -dl.citation > dt { - float: left; - margin-right: 0.5em; -} - -dl.footnote > dd, -dl.citation > dd { - margin-bottom: 0em; -} - -dl.footnote > dd:after, -dl.citation > dd:after { - content: ""; - clear: both; -} - -dl.field-list { - display: grid; - grid-template-columns: fit-content(30%) auto; -} - -dl.field-list > dt { - font-weight: bold; - word-break: break-word; - padding-left: 0.5em; - padding-right: 5px; -} - -dl.field-list > dt:after { - content: ":"; -} - -dl.field-list > dd { - padding-left: 0.5em; - margin-top: 0em; - margin-left: 0em; - margin-bottom: 0em; -} - -dl { - margin-bottom: 15px; -} - -dd > :first-child { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dl > dd:last-child, -dl > dd:last-child > :last-child { - margin-bottom: 0; -} - -dt:target, span.highlighted { - background-color: #fbe54e; -} - -rect.highlighted { - fill: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -.classifier:before { - font-style: normal; - margin: 0.5em; - content: ":"; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -pre, div[class*="highlight-"] { - clear: both; -} - -span.pre { - -moz-hyphens: none; - -ms-hyphens: none; - -webkit-hyphens: none; - hyphens: none; -} - -div[class*="highlight-"] { - margin: 1em 0; -} - -td.linenos pre { - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - display: block; -} - -table.highlighttable tbody { - display: block; -} - -table.highlighttable tr { - display: flex; -} - -table.highlighttable td { - margin: 0; - padding: 0; -} - -table.highlighttable td.linenos { - padding-right: 0.5em; -} - -table.highlighttable td.code { - flex: 1; - overflow: hidden; -} - -.highlight .hll { - display: block; -} - -div.highlight pre, -table.highlighttable pre { - margin: 0; -} - -div.code-block-caption + div { - margin-top: 0; -} - -div.code-block-caption { - margin-top: 1em; - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -table.highlighttable td.linenos, -span.linenos, -div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */ - user-select: none; -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - margin: 1em 0; -} - -code.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -code.descclassname { - background-color: transparent; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -span.eqno a.headerlink { - position: absolute; - z-index: 1; -} - -div.math:hover a.headerlink { - visibility: visible; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/docs/_static/bootstrap.css b/docs/_static/bootstrap.css deleted file mode 100644 index d1c0f1bf7..000000000 --- a/docs/_static/bootstrap.css +++ /dev/null @@ -1,3262 +0,0 @@ -.twbs { - /* rtl:raw: -[type="tel"], -[type="url"], -[type="email"], -[type="number"] { - direction: ltr; -} -*/ } - .twbs .accordion-button { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1rem 1.25rem; - font-size: 1rem; - color: #212529; - background-color: transparent; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0; - overflow-anchor: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .twbs .accordion-button { - transition: none; } } - .twbs .accordion-button.collapsed { - border-bottom-width: 0; } - .twbs .accordion-button:not(.collapsed) { - color: #2573a7; - background-color: #eaf2f8; } - .twbs .accordion-button:not(.collapsed)::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232573a7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); - transform: rotate(180deg); } - .twbs .accordion-button::after { - flex-shrink: 0; - width: 1.25rem; - height: 1.25rem; - margin-left: auto; - content: ""; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-size: 1.25rem; - transition: transform 0.2s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .accordion-button::after { - transition: none; } } - .twbs .accordion-button:hover { - z-index: 2; } - .twbs .accordion-button:focus { - z-index: 3; - border-color: #94c0dc; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .accordion-header { - margin-bottom: 0; } - .twbs .accordion-item:first-of-type .accordion-button { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .twbs .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-width: 1px; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .twbs .accordion-item:last-of-type .accordion-collapse { - border-bottom-width: 1px; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .twbs .accordion-collapse { - border: solid rgba(0, 0, 0, 0.125); - border-width: 0 1px; } - .twbs .accordion-body { - padding: 1rem 1.25rem; } - .twbs .accordion-flush .accordion-button { - border-right: 0; - border-left: 0; - border-radius: 0; } - .twbs .accordion-flush .accordion-collapse { - border-width: 0; } - .twbs .accordion-flush .accordion-item:first-of-type .accordion-button { - border-top-width: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .accordion-flush .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-width: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .twbs .btn { - display: inline-block; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - vertical-align: middle; - cursor: pointer; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .btn { - transition: none; } } - .twbs .btn:hover { - color: #212529; } - .btn-check:focus + .twbs .btn, .twbs .btn:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .btn:disabled, .twbs .btn.disabled, - fieldset:disabled .twbs .btn { - pointer-events: none; - opacity: 0.65; } - .twbs .btn-primary { - color: #000; - background-color: #2980b9; - border-color: #2980b9; } - .twbs .btn-primary:hover { - color: #000; - background-color: #4993c4; - border-color: #3e8dc0; } - .btn-check:focus + .twbs .btn-primary, .twbs .btn-primary:focus { - color: #000; - background-color: #4993c4; - border-color: #3e8dc0; - box-shadow: 0 0 0 0.25rem rgba(35, 109, 157, 0.5); } - .btn-check:checked + .twbs .btn-primary, - .btn-check:active + .twbs .btn-primary, .twbs .btn-primary:active, .twbs .btn-primary.active, - .show > .twbs .btn-primary.dropdown-toggle { - color: #000; - background-color: #5499c7; - border-color: #3e8dc0; } - .btn-check:checked + .twbs .btn-primary:focus, - .btn-check:active + .twbs .btn-primary:focus, .twbs .btn-primary:active:focus, .twbs .btn-primary.active:focus, - .show > .twbs .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(35, 109, 157, 0.5); } - .twbs .btn-primary:disabled, .twbs .btn-primary.disabled { - color: #000; - background-color: #2980b9; - border-color: #2980b9; } - .twbs .btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .twbs .btn-secondary:hover { - color: #fff; - background-color: #5c636a; - border-color: #565e64; } - .btn-check:focus + .twbs .btn-secondary, .twbs .btn-secondary:focus { - color: #fff; - background-color: #5c636a; - border-color: #565e64; - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .btn-check:checked + .twbs .btn-secondary, - .btn-check:active + .twbs .btn-secondary, .twbs .btn-secondary:active, .twbs .btn-secondary.active, - .show > .twbs .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #565e64; - border-color: #51585e; } - .btn-check:checked + .twbs .btn-secondary:focus, - .btn-check:active + .twbs .btn-secondary:focus, .twbs .btn-secondary:active:focus, .twbs .btn-secondary.active:focus, - .show > .twbs .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .twbs .btn-secondary:disabled, .twbs .btn-secondary.disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .twbs .btn-success { - color: #fff; - background-color: #198754; - border-color: #198754; } - .twbs .btn-success:hover { - color: #fff; - background-color: #157347; - border-color: #146c43; } - .btn-check:focus + .twbs .btn-success, .twbs .btn-success:focus { - color: #fff; - background-color: #157347; - border-color: #146c43; - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .btn-check:checked + .twbs .btn-success, - .btn-check:active + .twbs .btn-success, .twbs .btn-success:active, .twbs .btn-success.active, - .show > .twbs .btn-success.dropdown-toggle { - color: #fff; - background-color: #146c43; - border-color: #13653f; } - .btn-check:checked + .twbs .btn-success:focus, - .btn-check:active + .twbs .btn-success:focus, .twbs .btn-success:active:focus, .twbs .btn-success.active:focus, - .show > .twbs .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .twbs .btn-success:disabled, .twbs .btn-success.disabled { - color: #fff; - background-color: #198754; - border-color: #198754; } - .twbs .btn-info { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-info:hover { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; } - .btn-check:focus + .twbs .btn-info, .twbs .btn-info:focus { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .btn-check:checked + .twbs .btn-info, - .btn-check:active + .twbs .btn-info, .twbs .btn-info:active, .twbs .btn-info.active, - .show > .twbs .btn-info.dropdown-toggle { - color: #000; - background-color: #3dd5f3; - border-color: #25cff2; } - .btn-check:checked + .twbs .btn-info:focus, - .btn-check:active + .twbs .btn-info:focus, .twbs .btn-info:active:focus, .twbs .btn-info.active:focus, - .show > .twbs .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .twbs .btn-info:disabled, .twbs .btn-info.disabled { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-warning { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .twbs .btn-warning:hover { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; } - .btn-check:focus + .twbs .btn-warning, .twbs .btn-warning:focus { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .btn-check:checked + .twbs .btn-warning, - .btn-check:active + .twbs .btn-warning, .twbs .btn-warning:active, .twbs .btn-warning.active, - .show > .twbs .btn-warning.dropdown-toggle { - color: #000; - background-color: #ffcd39; - border-color: #ffc720; } - .btn-check:checked + .twbs .btn-warning:focus, - .btn-check:active + .twbs .btn-warning:focus, .twbs .btn-warning:active:focus, .twbs .btn-warning.active:focus, - .show > .twbs .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .twbs .btn-warning:disabled, .twbs .btn-warning.disabled { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .twbs .btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .twbs .btn-danger:hover { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; } - .btn-check:focus + .twbs .btn-danger, .twbs .btn-danger:focus { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .btn-check:checked + .twbs .btn-danger, - .btn-check:active + .twbs .btn-danger, .twbs .btn-danger:active, .twbs .btn-danger.active, - .show > .twbs .btn-danger.dropdown-toggle { - color: #fff; - background-color: #b02a37; - border-color: #a52834; } - .btn-check:checked + .twbs .btn-danger:focus, - .btn-check:active + .twbs .btn-danger:focus, .twbs .btn-danger:active:focus, .twbs .btn-danger.active:focus, - .show > .twbs .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .twbs .btn-danger:disabled, .twbs .btn-danger.disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .twbs .btn-light { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-light:hover { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:focus + .twbs .btn-light, .twbs .btn-light:focus { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .btn-check:checked + .twbs .btn-light, - .btn-check:active + .twbs .btn-light, .twbs .btn-light:active, .twbs .btn-light.active, - .show > .twbs .btn-light.dropdown-toggle { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:checked + .twbs .btn-light:focus, - .btn-check:active + .twbs .btn-light:focus, .twbs .btn-light:active:focus, .twbs .btn-light.active:focus, - .show > .twbs .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .twbs .btn-light:disabled, .twbs .btn-light.disabled { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-dark { - color: #fff; - background-color: #212529; - border-color: #212529; } - .twbs .btn-dark:hover { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; } - .btn-check:focus + .twbs .btn-dark, .twbs .btn-dark:focus { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .btn-check:checked + .twbs .btn-dark, - .btn-check:active + .twbs .btn-dark, .twbs .btn-dark:active, .twbs .btn-dark.active, - .show > .twbs .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1a1e21; - border-color: #191c1f; } - .btn-check:checked + .twbs .btn-dark:focus, - .btn-check:active + .twbs .btn-dark:focus, .twbs .btn-dark:active:focus, .twbs .btn-dark.active:focus, - .show > .twbs .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .twbs .btn-dark:disabled, .twbs .btn-dark.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; } - .twbs .btn-outline-primary { - color: #2980b9; - border-color: #2980b9; } - .twbs .btn-outline-primary:hover { - color: #000; - background-color: #2980b9; - border-color: #2980b9; } - .btn-check:focus + .twbs .btn-outline-primary, .twbs .btn-outline-primary:focus { - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.5); } - .btn-check:checked + .twbs .btn-outline-primary, - .btn-check:active + .twbs .btn-outline-primary, .twbs .btn-outline-primary:active, .twbs .btn-outline-primary.active, .twbs .btn-outline-primary.dropdown-toggle.show { - color: #000; - background-color: #2980b9; - border-color: #2980b9; } - .btn-check:checked + .twbs .btn-outline-primary:focus, - .btn-check:active + .twbs .btn-outline-primary:focus, .twbs .btn-outline-primary:active:focus, .twbs .btn-outline-primary.active:focus, .twbs .btn-outline-primary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.5); } - .twbs .btn-outline-primary:disabled, .twbs .btn-outline-primary.disabled { - color: #2980b9; - background-color: transparent; } - .twbs .btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; } - .twbs .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:focus + .twbs .btn-outline-secondary, .twbs .btn-outline-secondary:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .btn-check:checked + .twbs .btn-outline-secondary, - .btn-check:active + .twbs .btn-outline-secondary, .twbs .btn-outline-secondary:active, .twbs .btn-outline-secondary.active, .twbs .btn-outline-secondary.dropdown-toggle.show { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:checked + .twbs .btn-outline-secondary:focus, - .btn-check:active + .twbs .btn-outline-secondary:focus, .twbs .btn-outline-secondary:active:focus, .twbs .btn-outline-secondary.active:focus, .twbs .btn-outline-secondary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .twbs .btn-outline-secondary:disabled, .twbs .btn-outline-secondary.disabled { - color: #6c757d; - background-color: transparent; } - .twbs .btn-outline-success { - color: #198754; - border-color: #198754; } - .twbs .btn-outline-success:hover { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:focus + .twbs .btn-outline-success, .twbs .btn-outline-success:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .btn-check:checked + .twbs .btn-outline-success, - .btn-check:active + .twbs .btn-outline-success, .twbs .btn-outline-success:active, .twbs .btn-outline-success.active, .twbs .btn-outline-success.dropdown-toggle.show { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:checked + .twbs .btn-outline-success:focus, - .btn-check:active + .twbs .btn-outline-success:focus, .twbs .btn-outline-success:active:focus, .twbs .btn-outline-success.active:focus, .twbs .btn-outline-success.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .twbs .btn-outline-success:disabled, .twbs .btn-outline-success.disabled { - color: #198754; - background-color: transparent; } - .twbs .btn-outline-info { - color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-outline-info:hover { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:focus + .twbs .btn-outline-info, .twbs .btn-outline-info:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .btn-check:checked + .twbs .btn-outline-info, - .btn-check:active + .twbs .btn-outline-info, .twbs .btn-outline-info:active, .twbs .btn-outline-info.active, .twbs .btn-outline-info.dropdown-toggle.show { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:checked + .twbs .btn-outline-info:focus, - .btn-check:active + .twbs .btn-outline-info:focus, .twbs .btn-outline-info:active:focus, .twbs .btn-outline-info.active:focus, .twbs .btn-outline-info.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .twbs .btn-outline-info:disabled, .twbs .btn-outline-info.disabled { - color: #0dcaf0; - background-color: transparent; } - .twbs .btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .twbs .btn-outline-warning:hover { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:focus + .twbs .btn-outline-warning, .twbs .btn-outline-warning:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .btn-check:checked + .twbs .btn-outline-warning, - .btn-check:active + .twbs .btn-outline-warning, .twbs .btn-outline-warning:active, .twbs .btn-outline-warning.active, .twbs .btn-outline-warning.dropdown-toggle.show { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:checked + .twbs .btn-outline-warning:focus, - .btn-check:active + .twbs .btn-outline-warning:focus, .twbs .btn-outline-warning:active:focus, .twbs .btn-outline-warning.active:focus, .twbs .btn-outline-warning.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .twbs .btn-outline-warning:disabled, .twbs .btn-outline-warning.disabled { - color: #ffc107; - background-color: transparent; } - .twbs .btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .twbs .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:focus + .twbs .btn-outline-danger, .twbs .btn-outline-danger:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .btn-check:checked + .twbs .btn-outline-danger, - .btn-check:active + .twbs .btn-outline-danger, .twbs .btn-outline-danger:active, .twbs .btn-outline-danger.active, .twbs .btn-outline-danger.dropdown-toggle.show { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:checked + .twbs .btn-outline-danger:focus, - .btn-check:active + .twbs .btn-outline-danger:focus, .twbs .btn-outline-danger:active:focus, .twbs .btn-outline-danger.active:focus, .twbs .btn-outline-danger.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .twbs .btn-outline-danger:disabled, .twbs .btn-outline-danger.disabled { - color: #dc3545; - background-color: transparent; } - .twbs .btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-outline-light:hover { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:focus + .twbs .btn-outline-light, .twbs .btn-outline-light:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .btn-check:checked + .twbs .btn-outline-light, - .btn-check:active + .twbs .btn-outline-light, .twbs .btn-outline-light:active, .twbs .btn-outline-light.active, .twbs .btn-outline-light.dropdown-toggle.show { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:checked + .twbs .btn-outline-light:focus, - .btn-check:active + .twbs .btn-outline-light:focus, .twbs .btn-outline-light:active:focus, .twbs .btn-outline-light.active:focus, .twbs .btn-outline-light.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .twbs .btn-outline-light:disabled, .twbs .btn-outline-light.disabled { - color: #f8f9fa; - background-color: transparent; } - .twbs .btn-outline-dark { - color: #212529; - border-color: #212529; } - .twbs .btn-outline-dark:hover { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:focus + .twbs .btn-outline-dark, .twbs .btn-outline-dark:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .btn-check:checked + .twbs .btn-outline-dark, - .btn-check:active + .twbs .btn-outline-dark, .twbs .btn-outline-dark:active, .twbs .btn-outline-dark.active, .twbs .btn-outline-dark.dropdown-toggle.show { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:checked + .twbs .btn-outline-dark:focus, - .btn-check:active + .twbs .btn-outline-dark:focus, .twbs .btn-outline-dark:active:focus, .twbs .btn-outline-dark.active:focus, .twbs .btn-outline-dark.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .twbs .btn-outline-dark:disabled, .twbs .btn-outline-dark.disabled { - color: #212529; - background-color: transparent; } - .twbs .btn-link { - font-weight: 400; - color: #2980b9; - text-decoration: none; } - .twbs .btn-link:hover { - color: #216694; } - .twbs .btn-link:disabled, .twbs .btn-link.disabled { - color: #6c757d; } - .twbs .btn-lg, .twbs .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .btn-sm, .twbs .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .btn-group, - .twbs .btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; } - .twbs .btn-group > .btn, - .twbs .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .twbs .btn-group > .btn-check:checked + .btn, - .twbs .btn-group > .btn-check:focus + .btn, - .twbs .btn-group > .btn:hover, - .twbs .btn-group > .btn:focus, - .twbs .btn-group > .btn:active, - .twbs .btn-group > .btn.active, - .twbs .btn-group-vertical > .btn-check:checked + .btn, - .twbs .btn-group-vertical > .btn-check:focus + .btn, - .twbs .btn-group-vertical > .btn:hover, - .twbs .btn-group-vertical > .btn:focus, - .twbs .btn-group-vertical > .btn:active, - .twbs .btn-group-vertical > .btn.active { - z-index: 1; } - .twbs .btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .twbs .btn-toolbar .input-group { - width: auto; } - .twbs .btn-group > .btn:not(:first-child), - .twbs .btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } - .twbs .btn-group > .btn:not(:last-child):not(.dropdown-toggle), - .twbs .btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .btn-group > .btn:nth-child(n + 3), - .twbs .btn-group > :not(.btn-check) + .btn, - .twbs .btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .twbs .dropdown-toggle-split::after, - .dropup .twbs .dropdown-toggle-split::after, - .dropend .twbs .dropdown-toggle-split::after { - margin-left: 0; } - .dropstart .twbs .dropdown-toggle-split::before { - margin-right: 0; } - .twbs .btn-sm + .dropdown-toggle-split, .twbs .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } - .twbs .btn-lg + .dropdown-toggle-split, .twbs .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } - .twbs .btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .twbs .btn-group-vertical > .btn, - .twbs .btn-group-vertical > .btn-group { - width: 100%; } - .twbs .btn-group-vertical > .btn:not(:first-child), - .twbs .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .twbs .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .twbs .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .twbs .btn-group-vertical > .btn ~ .btn, - .twbs .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .twbs .card > hr { - margin-right: 0; - margin-left: 0; } - .twbs .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .twbs .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .twbs .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .twbs .card > .card-header + .list-group, - .twbs .card > .list-group + .card-footer { - border-top: 0; } - .twbs .card-body { - flex: 1 1 auto; - padding: 1rem 1rem; } - .twbs .card-title { - margin-bottom: 0.5rem; } - .twbs .card-subtitle { - margin-top: -0.25rem; - margin-bottom: 0; } - .twbs .card-text:last-child { - margin-bottom: 0; } - .twbs .card-link:hover { - text-decoration: none; } - .twbs .card-link + .card-link { - margin-left: 1rem /* rtl:ignore */; } - .twbs .card-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } - .twbs .card-footer { - padding: 0.5rem 1rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } - .twbs .card-header-tabs { - margin-right: -0.5rem; - margin-bottom: -0.5rem; - margin-left: -0.5rem; - border-bottom: 0; } - .twbs .card-header-pills { - margin-right: -0.5rem; - margin-left: -0.5rem; } - .twbs .card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1rem; - border-radius: calc(0.25rem - 1px); } - .twbs .card-img, - .twbs .card-img-top, - .twbs .card-img-bottom { - width: 100%; } - .twbs .card-img, - .twbs .card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .twbs .card-img, - .twbs .card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .twbs .card-group > .card { - margin-bottom: 0.75rem; } - @media (min-width: 576px) { - .twbs .card-group { - display: flex; - flex-flow: row wrap; } - .twbs .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .twbs .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .twbs .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .card-group > .card:not(:last-child) .card-img-top, - .twbs .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .twbs .card-group > .card:not(:last-child) .card-img-bottom, - .twbs .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .twbs .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .card-group > .card:not(:first-child) .card-img-top, - .twbs .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .twbs .card-group > .card:not(:first-child) .card-img-bottom, - .twbs .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } - .twbs .dropup, - .twbs .dropend, - .twbs .dropdown, - .twbs .dropstart { - position: relative; } - .twbs .dropdown-toggle { - white-space: nowrap; } - .twbs .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .twbs .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - .twbs .dropdown-menu[style] { - right: auto !important; } - .twbs .dropdown-menu-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } - @media (min-width: 576px) { - .twbs .dropdown-menu-sm-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-sm-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 768px) { - .twbs .dropdown-menu-md-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-md-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 992px) { - .twbs .dropdown-menu-lg-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-lg-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 1200px) { - .twbs .dropdown-menu-xl-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-xl-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 1400px) { - .twbs .dropdown-menu-xxl-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-xxl-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - .twbs .dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } - .twbs .dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } - .twbs .dropup .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropend .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } - .twbs .dropend .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } - .twbs .dropend .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropend .dropdown-toggle::after { - vertical-align: 0; } - .twbs .dropstart .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } - .twbs .dropstart .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; } - .twbs .dropstart .dropdown-toggle::after { - display: none; } - .twbs .dropstart .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } - .twbs .dropstart .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropstart .dropdown-toggle::before { - vertical-align: 0; } - .twbs .dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid rgba(0, 0, 0, 0.15); } - .twbs .dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; } - .twbs .dropdown-item:hover, .twbs .dropdown-item:focus { - color: #1e2125; - background-color: #f8f9fa; } - .twbs .dropdown-item.active, .twbs .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #2980b9; } - .twbs .dropdown-item.disabled, .twbs .dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; } - .twbs .dropdown-menu.show { - display: block; } - .twbs .dropdown-header { - display: block; - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } - .twbs .dropdown-item-text { - display: block; - padding: 0.25rem 1rem; - color: #212529; } - .twbs .dropdown-menu-dark { - color: #dee2e6; - background-color: #343a40; - border-color: rgba(0, 0, 0, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item { - color: #dee2e6; } - .twbs .dropdown-menu-dark .dropdown-item:hover, .twbs .dropdown-menu-dark .dropdown-item:focus { - color: #fff; - background-color: rgba(255, 255, 255, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item.active, .twbs .dropdown-menu-dark .dropdown-item:active { - color: #fff; - background-color: #2980b9; } - .twbs .dropdown-menu-dark .dropdown-item.disabled, .twbs .dropdown-menu-dark .dropdown-item:disabled { - color: #adb5bd; } - .twbs .dropdown-menu-dark .dropdown-divider { - border-color: rgba(0, 0, 0, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item-text { - color: #dee2e6; } - .twbs .dropdown-menu-dark .dropdown-header { - color: #adb5bd; } - .twbs .row { - --bs-gutter-x: 1.5rem; - --bs-gutter-y: 0; - display: flex; - flex-wrap: wrap; - margin-top: calc(var(--bs-gutter-y) * -1); - margin-right: calc(var(--bs-gutter-x) / -2); - margin-left: calc(var(--bs-gutter-x) / -2); } - .twbs .row > * { - flex-shrink: 0; - width: 100%; - max-width: 100%; - padding-right: calc(var(--bs-gutter-x) / 2); - padding-left: calc(var(--bs-gutter-x) / 2); - margin-top: var(--bs-gutter-y); } - .twbs .col { - flex: 1 0 0%; } - .twbs .row-cols-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-1 { - margin-left: 8.33333%; } - .twbs .offset-2 { - margin-left: 16.66667%; } - .twbs .offset-3 { - margin-left: 25%; } - .twbs .offset-4 { - margin-left: 33.33333%; } - .twbs .offset-5 { - margin-left: 41.66667%; } - .twbs .offset-6 { - margin-left: 50%; } - .twbs .offset-7 { - margin-left: 58.33333%; } - .twbs .offset-8 { - margin-left: 66.66667%; } - .twbs .offset-9 { - margin-left: 75%; } - .twbs .offset-10 { - margin-left: 83.33333%; } - .twbs .offset-11 { - margin-left: 91.66667%; } - .twbs .g-0, - .twbs .gx-0 { - --bs-gutter-x: 0; } - .twbs .g-0, - .twbs .gy-0 { - --bs-gutter-y: 0; } - .twbs .g-1, - .twbs .gx-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-1, - .twbs .gy-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-2, - .twbs .gx-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-2, - .twbs .gy-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-3, - .twbs .gx-3 { - --bs-gutter-x: 1rem; } - .twbs .g-3, - .twbs .gy-3 { - --bs-gutter-y: 1rem; } - .twbs .g-4, - .twbs .gx-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-4, - .twbs .gy-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-5, - .twbs .gx-5 { - --bs-gutter-x: 3rem; } - .twbs .g-5, - .twbs .gy-5 { - --bs-gutter-y: 3rem; } - @media (min-width: 576px) { - .twbs .col-sm { - flex: 1 0 0%; } - .twbs .row-cols-sm-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-sm-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-sm-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-sm-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-sm-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-sm-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-sm-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-sm-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-sm-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-sm-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-sm-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-sm-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-sm-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-sm-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-sm-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-sm-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-sm-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-sm-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-sm-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-sm-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-sm-0 { - margin-left: 0; } - .twbs .offset-sm-1 { - margin-left: 8.33333%; } - .twbs .offset-sm-2 { - margin-left: 16.66667%; } - .twbs .offset-sm-3 { - margin-left: 25%; } - .twbs .offset-sm-4 { - margin-left: 33.33333%; } - .twbs .offset-sm-5 { - margin-left: 41.66667%; } - .twbs .offset-sm-6 { - margin-left: 50%; } - .twbs .offset-sm-7 { - margin-left: 58.33333%; } - .twbs .offset-sm-8 { - margin-left: 66.66667%; } - .twbs .offset-sm-9 { - margin-left: 75%; } - .twbs .offset-sm-10 { - margin-left: 83.33333%; } - .twbs .offset-sm-11 { - margin-left: 91.66667%; } - .twbs .g-sm-0, - .twbs .gx-sm-0 { - --bs-gutter-x: 0; } - .twbs .g-sm-0, - .twbs .gy-sm-0 { - --bs-gutter-y: 0; } - .twbs .g-sm-1, - .twbs .gx-sm-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-sm-1, - .twbs .gy-sm-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-sm-2, - .twbs .gx-sm-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-sm-2, - .twbs .gy-sm-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-sm-3, - .twbs .gx-sm-3 { - --bs-gutter-x: 1rem; } - .twbs .g-sm-3, - .twbs .gy-sm-3 { - --bs-gutter-y: 1rem; } - .twbs .g-sm-4, - .twbs .gx-sm-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-sm-4, - .twbs .gy-sm-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-sm-5, - .twbs .gx-sm-5 { - --bs-gutter-x: 3rem; } - .twbs .g-sm-5, - .twbs .gy-sm-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 768px) { - .twbs .col-md { - flex: 1 0 0%; } - .twbs .row-cols-md-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-md-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-md-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-md-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-md-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-md-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-md-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-md-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-md-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-md-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-md-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-md-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-md-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-md-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-md-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-md-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-md-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-md-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-md-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-md-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-md-0 { - margin-left: 0; } - .twbs .offset-md-1 { - margin-left: 8.33333%; } - .twbs .offset-md-2 { - margin-left: 16.66667%; } - .twbs .offset-md-3 { - margin-left: 25%; } - .twbs .offset-md-4 { - margin-left: 33.33333%; } - .twbs .offset-md-5 { - margin-left: 41.66667%; } - .twbs .offset-md-6 { - margin-left: 50%; } - .twbs .offset-md-7 { - margin-left: 58.33333%; } - .twbs .offset-md-8 { - margin-left: 66.66667%; } - .twbs .offset-md-9 { - margin-left: 75%; } - .twbs .offset-md-10 { - margin-left: 83.33333%; } - .twbs .offset-md-11 { - margin-left: 91.66667%; } - .twbs .g-md-0, - .twbs .gx-md-0 { - --bs-gutter-x: 0; } - .twbs .g-md-0, - .twbs .gy-md-0 { - --bs-gutter-y: 0; } - .twbs .g-md-1, - .twbs .gx-md-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-md-1, - .twbs .gy-md-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-md-2, - .twbs .gx-md-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-md-2, - .twbs .gy-md-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-md-3, - .twbs .gx-md-3 { - --bs-gutter-x: 1rem; } - .twbs .g-md-3, - .twbs .gy-md-3 { - --bs-gutter-y: 1rem; } - .twbs .g-md-4, - .twbs .gx-md-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-md-4, - .twbs .gy-md-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-md-5, - .twbs .gx-md-5 { - --bs-gutter-x: 3rem; } - .twbs .g-md-5, - .twbs .gy-md-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 992px) { - .twbs .col-lg { - flex: 1 0 0%; } - .twbs .row-cols-lg-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-lg-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-lg-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-lg-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-lg-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-lg-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-lg-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-lg-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-lg-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-lg-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-lg-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-lg-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-lg-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-lg-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-lg-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-lg-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-lg-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-lg-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-lg-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-lg-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-lg-0 { - margin-left: 0; } - .twbs .offset-lg-1 { - margin-left: 8.33333%; } - .twbs .offset-lg-2 { - margin-left: 16.66667%; } - .twbs .offset-lg-3 { - margin-left: 25%; } - .twbs .offset-lg-4 { - margin-left: 33.33333%; } - .twbs .offset-lg-5 { - margin-left: 41.66667%; } - .twbs .offset-lg-6 { - margin-left: 50%; } - .twbs .offset-lg-7 { - margin-left: 58.33333%; } - .twbs .offset-lg-8 { - margin-left: 66.66667%; } - .twbs .offset-lg-9 { - margin-left: 75%; } - .twbs .offset-lg-10 { - margin-left: 83.33333%; } - .twbs .offset-lg-11 { - margin-left: 91.66667%; } - .twbs .g-lg-0, - .twbs .gx-lg-0 { - --bs-gutter-x: 0; } - .twbs .g-lg-0, - .twbs .gy-lg-0 { - --bs-gutter-y: 0; } - .twbs .g-lg-1, - .twbs .gx-lg-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-lg-1, - .twbs .gy-lg-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-lg-2, - .twbs .gx-lg-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-lg-2, - .twbs .gy-lg-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-lg-3, - .twbs .gx-lg-3 { - --bs-gutter-x: 1rem; } - .twbs .g-lg-3, - .twbs .gy-lg-3 { - --bs-gutter-y: 1rem; } - .twbs .g-lg-4, - .twbs .gx-lg-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-lg-4, - .twbs .gy-lg-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-lg-5, - .twbs .gx-lg-5 { - --bs-gutter-x: 3rem; } - .twbs .g-lg-5, - .twbs .gy-lg-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 1200px) { - .twbs .col-xl { - flex: 1 0 0%; } - .twbs .row-cols-xl-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-xl-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-xl-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-xl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-xl-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-xl-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-xl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xl-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-xl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-xl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xl-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-xl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-xl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-xl-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-xl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-xl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-xl-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-xl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-xl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-xl-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-xl-0 { - margin-left: 0; } - .twbs .offset-xl-1 { - margin-left: 8.33333%; } - .twbs .offset-xl-2 { - margin-left: 16.66667%; } - .twbs .offset-xl-3 { - margin-left: 25%; } - .twbs .offset-xl-4 { - margin-left: 33.33333%; } - .twbs .offset-xl-5 { - margin-left: 41.66667%; } - .twbs .offset-xl-6 { - margin-left: 50%; } - .twbs .offset-xl-7 { - margin-left: 58.33333%; } - .twbs .offset-xl-8 { - margin-left: 66.66667%; } - .twbs .offset-xl-9 { - margin-left: 75%; } - .twbs .offset-xl-10 { - margin-left: 83.33333%; } - .twbs .offset-xl-11 { - margin-left: 91.66667%; } - .twbs .g-xl-0, - .twbs .gx-xl-0 { - --bs-gutter-x: 0; } - .twbs .g-xl-0, - .twbs .gy-xl-0 { - --bs-gutter-y: 0; } - .twbs .g-xl-1, - .twbs .gx-xl-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-xl-1, - .twbs .gy-xl-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-xl-2, - .twbs .gx-xl-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-xl-2, - .twbs .gy-xl-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-xl-3, - .twbs .gx-xl-3 { - --bs-gutter-x: 1rem; } - .twbs .g-xl-3, - .twbs .gy-xl-3 { - --bs-gutter-y: 1rem; } - .twbs .g-xl-4, - .twbs .gx-xl-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-xl-4, - .twbs .gy-xl-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-xl-5, - .twbs .gx-xl-5 { - --bs-gutter-x: 3rem; } - .twbs .g-xl-5, - .twbs .gy-xl-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 1400px) { - .twbs .col-xxl { - flex: 1 0 0%; } - .twbs .row-cols-xxl-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-xxl-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-xxl-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-xxl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-xxl-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-xxl-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-xxl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xxl-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-xxl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-xxl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xxl-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-xxl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-xxl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-xxl-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-xxl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-xxl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-xxl-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-xxl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-xxl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-xxl-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-xxl-0 { - margin-left: 0; } - .twbs .offset-xxl-1 { - margin-left: 8.33333%; } - .twbs .offset-xxl-2 { - margin-left: 16.66667%; } - .twbs .offset-xxl-3 { - margin-left: 25%; } - .twbs .offset-xxl-4 { - margin-left: 33.33333%; } - .twbs .offset-xxl-5 { - margin-left: 41.66667%; } - .twbs .offset-xxl-6 { - margin-left: 50%; } - .twbs .offset-xxl-7 { - margin-left: 58.33333%; } - .twbs .offset-xxl-8 { - margin-left: 66.66667%; } - .twbs .offset-xxl-9 { - margin-left: 75%; } - .twbs .offset-xxl-10 { - margin-left: 83.33333%; } - .twbs .offset-xxl-11 { - margin-left: 91.66667%; } - .twbs .g-xxl-0, - .twbs .gx-xxl-0 { - --bs-gutter-x: 0; } - .twbs .g-xxl-0, - .twbs .gy-xxl-0 { - --bs-gutter-y: 0; } - .twbs .g-xxl-1, - .twbs .gx-xxl-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-xxl-1, - .twbs .gy-xxl-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-xxl-2, - .twbs .gx-xxl-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-xxl-2, - .twbs .gy-xxl-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-xxl-3, - .twbs .gx-xxl-3 { - --bs-gutter-x: 1rem; } - .twbs .g-xxl-3, - .twbs .gy-xxl-3 { - --bs-gutter-y: 1rem; } - .twbs .g-xxl-4, - .twbs .gx-xxl-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-xxl-4, - .twbs .gy-xxl-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-xxl-5, - .twbs .gx-xxl-5 { - --bs-gutter-x: 3rem; } - .twbs .g-xxl-5, - .twbs .gy-xxl-5 { - --bs-gutter-y: 3rem; } } - .twbs :root { - --bs-blue: #2980b9; - --bs-indigo: #6610f2; - --bs-purple: #6f42c1; - --bs-pink: #e05858; - --bs-red: #dc3545; - --bs-orange: #fd7e14; - --bs-yellow: #ffc107; - --bs-green: #198754; - --bs-teal: #20c997; - --bs-cyan: #0dcaf0; - --bs-white: #fff; - --bs-gray: #6c757d; - --bs-gray-dark: #343a40; - --bs-primary: #2980b9; - --bs-secondary: #6c757d; - --bs-success: #198754; - --bs-info: #0dcaf0; - --bs-warning: #ffc107; - --bs-danger: #dc3545; - --bs-light: #f8f9fa; - --bs-dark: #212529; - --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); } - .twbs *, - .twbs *::before, - .twbs *::after { - box-sizing: border-box; } - @media (prefers-reduced-motion: no-preference) { - .twbs :root { - scroll-behavior: smooth; } } - .twbs body { - margin: 0; - font-family: var(--bs-font-sans-serif); - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - .twbs [tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; } - .twbs hr { - margin: 1rem 0; - color: inherit; - background-color: currentColor; - border: 0; - opacity: 0.25; } - .twbs hr:not([size]) { - height: 1px; } - .twbs h1, .twbs .h1, .twbs h2, .twbs .h2, .twbs h3, .twbs .h3, .twbs h4, .twbs .h4, .twbs h5, .twbs .h5, .twbs h6, .twbs .h6 { - margin-top: 0; - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } - .twbs h1, .twbs .h1 { - font-size: calc(1.375rem + 1.5vw); } - @media (min-width: 1200px) { - .twbs h1, .twbs .h1 { - font-size: 2.5rem; } } - .twbs h2, .twbs .h2 { - font-size: calc(1.325rem + 0.9vw); } - @media (min-width: 1200px) { - .twbs h2, .twbs .h2 { - font-size: 2rem; } } - .twbs h3, .twbs .h3 { - font-size: calc(1.3rem + 0.6vw); } - @media (min-width: 1200px) { - .twbs h3, .twbs .h3 { - font-size: 1.75rem; } } - .twbs h4, .twbs .h4 { - font-size: calc(1.275rem + 0.3vw); } - @media (min-width: 1200px) { - .twbs h4, .twbs .h4 { - font-size: 1.5rem; } } - .twbs h5, .twbs .h5 { - font-size: 1.25rem; } - .twbs h6, .twbs .h6 { - font-size: 1rem; } - .twbs p { - margin-top: 0; - margin-bottom: 1rem; } - .twbs abbr[title], - .twbs abbr[data-bs-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - text-decoration-skip-ink: none; } - .twbs address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } - .twbs ol, - .twbs ul { - padding-left: 2rem; } - .twbs ol, - .twbs ul, - .twbs dl { - margin-top: 0; - margin-bottom: 1rem; } - .twbs ol ol, - .twbs ul ul, - .twbs ol ul, - .twbs ul ol { - margin-bottom: 0; } - .twbs dt { - font-weight: 700; } - .twbs dd { - margin-bottom: .5rem; - margin-left: 0; } - .twbs blockquote { - margin: 0 0 1rem; } - .twbs b, - .twbs strong { - font-weight: bolder; } - .twbs small, .twbs .small { - font-size: 0.875em; } - .twbs mark, .twbs .mark { - padding: 0.2em; - background-color: #fcf8e3; } - .twbs sub, - .twbs sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; } - .twbs sub { - bottom: -.25em; } - .twbs sup { - top: -.5em; } - .twbs a { - color: #2980b9; - text-decoration: none; } - .twbs a:hover { - color: #216694; } - .twbs a:not([href]):not([class]), .twbs a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; } - .twbs pre, - .twbs code, - .twbs kbd, - .twbs samp { - font-family: var(--bs-font-monospace); - font-size: 1em; - direction: ltr /* rtl:ignore */; - unicode-bidi: bidi-override; } - .twbs pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - font-size: 0.875em; } - .twbs pre code { - font-size: inherit; - color: inherit; - word-break: normal; } - .twbs code { - font-size: 0.875em; - color: #e05858; - word-wrap: break-word; } - a > .twbs code { - color: inherit; } - .twbs kbd { - padding: 0.2rem 0.4rem; - font-size: 0.875em; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - .twbs kbd kbd { - padding: 0; - font-size: 1em; - font-weight: 700; } - .twbs figure { - margin: 0 0 1rem; } - .twbs img, - .twbs svg { - vertical-align: middle; } - .twbs table { - caption-side: bottom; - border-collapse: collapse; } - .twbs caption { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: #6c757d; - text-align: left; } - .twbs th { - text-align: inherit; - text-align: -webkit-match-parent; } - .twbs thead, - .twbs tbody, - .twbs tfoot, - .twbs tr, - .twbs td, - .twbs th { - border-color: inherit; - border-style: solid; - border-width: 0; } - .twbs label { - display: inline-block; } - .twbs button { - border-radius: 0; } - .twbs button:focus { - outline: dotted 1px; - outline: -webkit-focus-ring-color auto 5px; } - .twbs input, - .twbs button, - .twbs select, - .twbs optgroup, - .twbs textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } - .twbs button, - .twbs select { - text-transform: none; } - .twbs [role="button"] { - cursor: pointer; } - .twbs select { - word-wrap: normal; } - .twbs [list]::-webkit-calendar-picker-indicator { - display: none; } - .twbs button, - .twbs [type="button"], - .twbs [type="reset"], - .twbs [type="submit"] { - -webkit-appearance: button; } - .twbs button:not(:disabled), - .twbs [type="button"]:not(:disabled), - .twbs [type="reset"]:not(:disabled), - .twbs [type="submit"]:not(:disabled) { - cursor: pointer; } - .twbs ::-moz-focus-inner { - padding: 0; - border-style: none; } - .twbs textarea { - resize: vertical; } - .twbs fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - .twbs legend { - float: left; - width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: calc(1.275rem + 0.3vw); - line-height: inherit; } - @media (min-width: 1200px) { - .twbs legend { - font-size: 1.5rem; } } - .twbs legend + * { - clear: left; } - .twbs ::-webkit-datetime-edit-fields-wrapper, - .twbs ::-webkit-datetime-edit-text, - .twbs ::-webkit-datetime-edit-minute, - .twbs ::-webkit-datetime-edit-hour-field, - .twbs ::-webkit-datetime-edit-day-field, - .twbs ::-webkit-datetime-edit-month-field, - .twbs ::-webkit-datetime-edit-year-field { - padding: 0; } - .twbs ::-webkit-inner-spin-button { - height: auto; } - .twbs [type="search"] { - outline-offset: -2px; - -webkit-appearance: textfield; } - .twbs ::-webkit-search-decoration { - -webkit-appearance: none; } - .twbs ::-webkit-color-swatch-wrapper { - padding: 0; } - .twbs ::file-selector-button { - font: inherit; } - .twbs ::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } - .twbs output { - display: inline-block; } - .twbs iframe { - border: 0; } - .twbs summary { - display: list-item; - cursor: pointer; } - .twbs progress { - vertical-align: baseline; } - .twbs [hidden] { - display: none !important; } - .twbs .lead { - font-size: 1.25rem; - font-weight: 300; } - .twbs .display-1 { - font-size: calc(1.625rem + 4.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-1 { - font-size: 5rem; } } - .twbs .display-2 { - font-size: calc(1.575rem + 3.9vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-2 { - font-size: 4.5rem; } } - .twbs .display-3 { - font-size: calc(1.525rem + 3.3vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-3 { - font-size: 4rem; } } - .twbs .display-4 { - font-size: calc(1.475rem + 2.7vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-4 { - font-size: 3.5rem; } } - .twbs .display-5 { - font-size: calc(1.425rem + 2.1vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-5 { - font-size: 3rem; } } - .twbs .display-6 { - font-size: calc(1.375rem + 1.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-6 { - font-size: 2.5rem; } } - .twbs .list-unstyled { - padding-left: 0; - list-style: none; } - .twbs .list-inline { - padding-left: 0; - list-style: none; } - .twbs .list-inline-item { - display: inline-block; } - .twbs .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } - .twbs .initialism { - font-size: 0.875em; - text-transform: uppercase; } - .twbs .blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; } - .twbs .blockquote > :last-child { - margin-bottom: 0; } - .twbs .blockquote-footer { - margin-top: -1rem; - margin-bottom: 1rem; - font-size: 0.875em; - color: #6c757d; } - .twbs .blockquote-footer::before { - content: "\2014\00A0"; } - .twbs .form-label { - margin-bottom: 0.5rem; } - .twbs .col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } - .twbs .col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; } - .twbs .col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; } - .twbs .form-text { - margin-top: 0.25rem; - font-size: 0.875em; - color: #6c757d; } - .twbs .form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - appearance: none; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control { - transition: none; } } - .twbs .form-control[type="file"] { - overflow: hidden; } - .twbs .form-control[type="file"]:not(:disabled):not([readonly]) { - cursor: pointer; } - .twbs .form-control:focus { - color: #212529; - background-color: #fff; - border-color: #94c0dc; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-control::-webkit-date-and-time-value { - height: 1.5em; } - .twbs .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .twbs .form-control:disabled, .twbs .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - .twbs .form-control::file-selector-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control::file-selector-button { - transition: none; } } - .twbs .form-control:hover:not(:disabled):not([readonly])::file-selector-button { - background-color: #dde0e3; } - .twbs .form-control::-webkit-file-upload-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control::-webkit-file-upload-button { - transition: none; } } - .twbs .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { - background-color: #dde0e3; } - .twbs .form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .twbs .form-control-plaintext.form-control-sm, .twbs .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } - .twbs .form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .form-control-sm::file-selector-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .twbs .form-control-sm::-webkit-file-upload-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .twbs .form-control-lg { - min-height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .form-control-lg::file-selector-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .twbs .form-control-lg::-webkit-file-upload-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .twbs textarea.form-control { - min-height: calc(1.5em + 0.75rem + 2px); } - .twbs textarea.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); } - .twbs textarea.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); } - .twbs .form-control-color { - max-width: 3rem; - height: auto; - padding: 0.375rem; } - .twbs .form-control-color:not(:disabled):not([readonly]) { - cursor: pointer; } - .twbs .form-control-color::-moz-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .twbs .form-control-color::-webkit-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .twbs .form-select { - display: block; - width: 100%; - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - vertical-align: middle; - background-color: #fff; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right 0.75rem center; - background-size: 16px 12px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - appearance: none; } - .twbs .form-select:focus { - border-color: #94c0dc; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-select[multiple], .twbs .form-select[size]:not([size="1"]) { - padding-right: 0.75rem; - background-image: none; } - .twbs .form-select:disabled { - color: #6c757d; - background-color: #e9ecef; } - .twbs .form-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #212529; } - .twbs .form-select-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; } - .twbs .form-select-lg { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; } - .twbs .form-check { - display: block; - min-height: 1.5rem; - padding-left: 1.5em; - margin-bottom: 0.125rem; } - .twbs .form-check .form-check-input { - float: left; - margin-left: -1.5em; } - .twbs .form-check-input { - width: 1em; - height: 1em; - margin-top: 0.25em; - vertical-align: top; - background-color: #fff; - background-repeat: no-repeat; - background-position: center; - background-size: contain; - border: 1px solid rgba(0, 0, 0, 0.25); - appearance: none; - color-adjust: exact; - transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-check-input { - transition: none; } } - .twbs .form-check-input[type="checkbox"] { - border-radius: 0.25em; } - .twbs .form-check-input[type="radio"] { - border-radius: 50%; } - .twbs .form-check-input:active { - filter: brightness(90%); } - .twbs .form-check-input:focus { - border-color: #94c0dc; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-check-input:checked { - background-color: #2980b9; - border-color: #2980b9; } - .twbs .form-check-input:checked[type="checkbox"] { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); } - .twbs .form-check-input:checked[type="radio"] { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); } - .twbs .form-check-input[type="checkbox"]:indeterminate { - background-color: #2980b9; - border-color: #2980b9; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); } - .twbs .form-check-input:disabled { - pointer-events: none; - filter: none; - opacity: 0.5; } - .twbs .form-check-input[disabled] ~ .form-check-label, .twbs .form-check-input:disabled ~ .form-check-label { - opacity: 0.5; } - .twbs .form-switch { - padding-left: 2.5em; } - .twbs .form-switch .form-check-input { - width: 2em; - margin-left: -2.5em; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); - background-position: left center; - border-radius: 2em; } - .twbs .form-switch .form-check-input:focus { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2394c0dc'/%3e%3c/svg%3e"); } - .twbs .form-switch .form-check-input:checked { - background-position: right center; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } - .twbs .form-check-inline { - display: inline-block; - margin-right: 1rem; } - .twbs .btn-check { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - .twbs .btn-check[disabled] + .btn, .twbs .btn-check:disabled + .btn { - pointer-events: none; - filter: none; - opacity: 0.65; } - .twbs .form-range { - width: 100%; - height: 1.5rem; - padding: 0; - background-color: transparent; - appearance: none; } - .twbs .form-range:focus { - outline: none; } - .twbs .form-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-range::-moz-focus-outer { - border: 0; } - .twbs .form-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #2980b9; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-range::-webkit-slider-thumb { - transition: none; } } - .twbs .form-range::-webkit-slider-thumb:active { - background-color: #bfd9ea; } - .twbs .form-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .twbs .form-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #2980b9; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-range::-moz-range-thumb { - transition: none; } } - .twbs .form-range::-moz-range-thumb:active { - background-color: #bfd9ea; } - .twbs .form-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .twbs .form-range:disabled { - pointer-events: none; } - .twbs .form-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .twbs .form-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - .twbs .form-floating { - position: relative; } - .twbs .form-floating > .form-control, - .twbs .form-floating > .form-select { - height: calc(3.5rem + 2px); - padding: 1rem 0.75rem; } - .twbs .form-floating > label { - position: absolute; - top: 0; - left: 0; - height: 100%; - padding: 1rem 0.75rem; - pointer-events: none; - border: 1px solid transparent; - transform-origin: 0 0; - transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-floating > label { - transition: none; } } - .twbs .form-floating > .form-control::placeholder { - color: transparent; } - .twbs .form-floating > .form-control:focus, .twbs .form-floating > .form-control:not(:placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-control:-webkit-autofill { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-select { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-control:focus ~ label, - .twbs .form-floating > .form-control:not(:placeholder-shown) ~ label, - .twbs .form-floating > .form-select ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .twbs .form-floating > .form-control:-webkit-autofill ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .twbs .input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; } - .twbs .input-group > .form-control, - .twbs .input-group > .form-select { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; } - .twbs .input-group > .form-control:focus, - .twbs .input-group > .form-select:focus { - z-index: 3; } - .twbs .input-group .btn { - position: relative; - z-index: 2; } - .twbs .input-group .btn:focus { - z-index: 3; } - .twbs .input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .twbs .input-group-lg > .form-control, - .twbs .input-group-lg > .form-select, - .twbs .input-group-lg > .input-group-text, - .twbs .input-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .input-group-sm > .form-control, - .twbs .input-group-sm > .form-select, - .twbs .input-group-sm > .input-group-text, - .twbs .input-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .input-group-lg > .form-select, - .twbs .input-group-sm > .form-select { - padding-right: 1.75rem; } - .twbs .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), - .twbs .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), - .twbs .input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { - margin-left: -1px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #198754; } - .twbs .valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(25, 135, 84, 0.9); - border-radius: 0.25rem; } - .was-validated .twbs:valid ~ .valid-feedback, - .was-validated .twbs:valid ~ .valid-tooltip, .twbs.is-valid ~ .valid-feedback, - .twbs.is-valid ~ .valid-tooltip { - display: block; } - .was-validated .twbs .form-control:valid, .twbs .form-control.is-valid { - border-color: #198754; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-control:valid:focus, .twbs .form-control.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs textarea.form-control:valid, .twbs textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - .was-validated .twbs .form-select:valid, .twbs .form-select.is-valid { - border-color: #198754; - padding-right: calc(0.75em + 2.3125rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-position: right 0.75rem center, center right 1.75rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-select:valid:focus, .twbs .form-select.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs .form-check-input:valid, .twbs .form-check-input.is-valid { - border-color: #198754; } - .was-validated .twbs .form-check-input:valid:checked, .twbs .form-check-input.is-valid:checked { - background-color: #198754; } - .was-validated .twbs .form-check-input:valid:focus, .twbs .form-check-input.is-valid:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs .form-check-input:valid ~ .form-check-label, .twbs .form-check-input.is-valid ~ .form-check-label { - color: #198754; } - .twbs .form-check-inline .form-check-input ~ .valid-feedback { - margin-left: .5em; } - .twbs .invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #dc3545; } - .twbs .invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - .was-validated .twbs:invalid ~ .invalid-feedback, - .was-validated .twbs:invalid ~ .invalid-tooltip, .twbs.is-invalid ~ .invalid-feedback, - .twbs.is-invalid ~ .invalid-tooltip { - display: block; } - .was-validated .twbs .form-control:invalid, .twbs .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-control:invalid:focus, .twbs .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs textarea.form-control:invalid, .twbs textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - .was-validated .twbs .form-select:invalid, .twbs .form-select.is-invalid { - border-color: #dc3545; - padding-right: calc(0.75em + 2.3125rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-position: right 0.75rem center, center right 1.75rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-select:invalid:focus, .twbs .form-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs .form-check-input:invalid, .twbs .form-check-input.is-invalid { - border-color: #dc3545; } - .was-validated .twbs .form-check-input:invalid:checked, .twbs .form-check-input.is-invalid:checked { - background-color: #dc3545; } - .was-validated .twbs .form-check-input:invalid:focus, .twbs .form-check-input.is-invalid:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs .form-check-input:invalid ~ .form-check-label, .twbs .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } - .twbs .form-check-inline .form-check-input ~ .invalid-feedback { - margin-left: .5em; } - .twbs .nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .twbs .nav-link { - display: block; - padding: 0.5rem 1rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .nav-link { - transition: none; } } - .twbs .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } - .twbs .nav-tabs { - border-bottom: 1px solid #dee2e6; } - .twbs .nav-tabs .nav-link { - margin-bottom: -1px; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .twbs .nav-tabs .nav-link:hover, .twbs .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; } - .twbs .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .twbs .nav-tabs .nav-link.active, - .twbs .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .twbs .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .nav-pills .nav-link { - border-radius: 0.25rem; } - .twbs .nav-pills .nav-link.active, - .twbs .nav-pills .show > .nav-link { - color: #fff; - background-color: #2980b9; } - .twbs .nav-fill > .nav-link, - .twbs .nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } - .twbs .nav-justified > .nav-link, - .twbs .nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } - .twbs .tab-content > .tab-pane { - display: none; } - .twbs .tab-content > .active { - display: block; } - .twbs .navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .twbs .navbar > .container, - .twbs .navbar > .container-fluid, .twbs .navbar > .container-sm, .twbs .navbar > .container-md, .twbs .navbar > .container-lg, .twbs .navbar > .container-xl, .twbs .navbar > .container-xxl { - display: flex; - flex-wrap: inherit; - align-items: center; - justify-content: space-between; } - .twbs .navbar-brand { - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - white-space: nowrap; } - .twbs .navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .twbs .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .twbs .navbar-nav .dropdown-menu { - position: static; } - .twbs .navbar-text { - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .twbs .navbar-collapse { - align-items: center; - width: 100%; } - .twbs .navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; - transition: box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .navbar-toggler { - transition: none; } } - .twbs .navbar-toggler:hover { - text-decoration: none; } - .twbs .navbar-toggler:focus { - text-decoration: none; - outline: 0; - box-shadow: 0 0 0 0.25rem; } - .twbs .navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - background-repeat: no-repeat; - background-position: center; - background-size: 100%; } - @media (min-width: 576px) { - .twbs .navbar-expand-sm { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-sm .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-sm .navbar-toggler { - display: none; } } - @media (min-width: 768px) { - .twbs .navbar-expand-md { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-md .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-md .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-md .navbar-toggler { - display: none; } } - @media (min-width: 992px) { - .twbs .navbar-expand-lg { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-lg .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-lg .navbar-toggler { - display: none; } } - @media (min-width: 1200px) { - .twbs .navbar-expand-xl { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-xl .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-xl .navbar-toggler { - display: none; } } - @media (min-width: 1400px) { - .twbs .navbar-expand-xxl { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-xxl .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-xxl .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-xxl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-xxl .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-xxl .navbar-toggler { - display: none; } } - .twbs .navbar-expand { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand .navbar-toggler { - display: none; } - .twbs .navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-brand:hover, .twbs .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.55); } - .twbs .navbar-light .navbar-nav .nav-link:hover, .twbs .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .twbs .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } - .twbs .navbar-light .navbar-nav .show > .nav-link, - .twbs .navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.55); - border-color: rgba(0, 0, 0, 0.1); } - .twbs .navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - .twbs .navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.55); } - .twbs .navbar-light .navbar-text a, - .twbs .navbar-light .navbar-text a:hover, - .twbs .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-dark .navbar-brand { - color: #fff; } - .twbs .navbar-dark .navbar-brand:hover, .twbs .navbar-dark .navbar-brand:focus { - color: #fff; } - .twbs .navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.55); } - .twbs .navbar-dark .navbar-nav .nav-link:hover, .twbs .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .twbs .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } - .twbs .navbar-dark .navbar-nav .show > .nav-link, - .twbs .navbar-dark .navbar-nav .nav-link.active { - color: #fff; } - .twbs .navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(255, 255, 255, 0.1); } - .twbs .navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - .twbs .navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.55); } - .twbs .navbar-dark .navbar-text a, - .twbs .navbar-dark .navbar-text a:hover, - .twbs .navbar-dark .navbar-text a:focus { - color: #fff; } - .twbs .list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; } - .twbs .list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; } - .twbs .list-group-item-action:hover, .twbs .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .twbs .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } - .twbs .list-group-item { - position: relative; - display: block; - padding: 0.5rem 1rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .twbs .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .twbs .list-group-item.disabled, .twbs .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .twbs .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #2980b9; - border-color: #2980b9; } - .twbs .list-group-item + .twbs .list-group-item { - border-top-width: 0; } - .twbs .list-group-item + .twbs .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } - .twbs .list-group-horizontal { - flex-direction: row; } - .twbs .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } - @media (min-width: 576px) { - .twbs .list-group-horizontal-sm { - flex-direction: row; } - .twbs .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 768px) { - .twbs .list-group-horizontal-md { - flex-direction: row; } - .twbs .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 992px) { - .twbs .list-group-horizontal-lg { - flex-direction: row; } - .twbs .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 1200px) { - .twbs .list-group-horizontal-xl { - flex-direction: row; } - .twbs .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 1400px) { - .twbs .list-group-horizontal-xxl { - flex-direction: row; } - .twbs .list-group-horizontal-xxl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - .twbs .list-group-flush { - border-radius: 0; } - .twbs .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .twbs .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } - .twbs .list-group-item-primary { - color: #194d6f; - background-color: #d4e6f1; } - .twbs .list-group-item-primary.list-group-item-action:hover, .twbs .list-group-item-primary.list-group-item-action:focus { - color: #194d6f; - background-color: #bfcfd9; } - .twbs .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #194d6f; - border-color: #194d6f; } - .twbs .list-group-item-secondary { - color: #41464b; - background-color: #e2e3e5; } - .twbs .list-group-item-secondary.list-group-item-action:hover, .twbs .list-group-item-secondary.list-group-item-action:focus { - color: #41464b; - background-color: #cbccce; } - .twbs .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #41464b; - border-color: #41464b; } - .twbs .list-group-item-success { - color: #0f5132; - background-color: #d1e7dd; } - .twbs .list-group-item-success.list-group-item-action:hover, .twbs .list-group-item-success.list-group-item-action:focus { - color: #0f5132; - background-color: #bcd0c7; } - .twbs .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #0f5132; - border-color: #0f5132; } - .twbs .list-group-item-info { - color: #055160; - background-color: #cff4fc; } - .twbs .list-group-item-info.list-group-item-action:hover, .twbs .list-group-item-info.list-group-item-action:focus { - color: #055160; - background-color: #badce3; } - .twbs .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #055160; - border-color: #055160; } - .twbs .list-group-item-warning { - color: #664d03; - background-color: #fff3cd; } - .twbs .list-group-item-warning.list-group-item-action:hover, .twbs .list-group-item-warning.list-group-item-action:focus { - color: #664d03; - background-color: #e6dbb9; } - .twbs .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #664d03; - border-color: #664d03; } - .twbs .list-group-item-danger { - color: #842029; - background-color: #f8d7da; } - .twbs .list-group-item-danger.list-group-item-action:hover, .twbs .list-group-item-danger.list-group-item-action:focus { - color: #842029; - background-color: #dfc2c4; } - .twbs .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #842029; - border-color: #842029; } - .twbs .list-group-item-light { - color: #636464; - background-color: #fefefe; } - .twbs .list-group-item-light.list-group-item-action:hover, .twbs .list-group-item-light.list-group-item-action:focus { - color: #636464; - background-color: #e5e5e5; } - .twbs .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #636464; - border-color: #636464; } - .twbs .list-group-item-dark { - color: #141619; - background-color: #d3d3d4; } - .twbs .list-group-item-dark.list-group-item-action:hover, .twbs .list-group-item-dark.list-group-item-action:focus { - color: #141619; - background-color: #bebebf; } - .twbs .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #141619; - border-color: #141619; } - .twbs .popover { - position: absolute; - top: 0; - left: 0 /* rtl:ignore */; - z-index: 1060; - display: block; - max-width: 276px; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .twbs .popover .popover-arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; } - .twbs .popover .popover-arrow::before, .twbs .popover .popover-arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; } - .twbs .bs-popover-top, .twbs .bs-popover-auto[data-popper-placement^="top"] { - margin-bottom: 0.5rem !important; } - .twbs .bs-popover-top > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow { - bottom: calc(-0.5rem - 1px); } - .twbs .bs-popover-top > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-top > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - .twbs .bs-popover-end, .twbs .bs-popover-auto[data-popper-placement^="right"] { - margin-left: 0.5rem !important; } - .twbs .bs-popover-end > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .twbs .bs-popover-end > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-end > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - .twbs .bs-popover-bottom, .twbs .bs-popover-auto[data-popper-placement^="bottom"] { - margin-top: 0.5rem !important; } - .twbs .bs-popover-bottom > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow { - top: calc(-0.5rem - 1px); } - .twbs .bs-popover-bottom > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-bottom > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - .twbs .bs-popover-bottom .popover-header::before, .twbs .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f0f0f0; } - .twbs .bs-popover-start, .twbs .bs-popover-auto[data-popper-placement^="left"] { - margin-right: 0.5rem !important; } - .twbs .bs-popover-start > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .twbs .bs-popover-start > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-start > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } - .twbs .popover-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f0f0f0; - border-bottom: 1px solid #d8d8d8; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .twbs .popover-header:empty { - display: none; } - .twbs .popover-body { - padding: 1rem 1rem; - color: #212529; } - -@keyframes spinner-border { - to { - transform: rotate(360deg) /* rtl:ignore */; } } - .twbs .spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: 0.75s linear infinite spinner-border; } - .twbs .spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; } - -@keyframes spinner-grow { - 0% { - transform: scale(0); } - 50% { - opacity: 1; - transform: none; } } - .twbs .spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: 0.75s linear infinite spinner-grow; } - .twbs .spinner-grow-sm { - width: 1rem; - height: 1rem; } - @media (prefers-reduced-motion: reduce) { - .twbs .spinner-border, - .twbs .spinner-grow { - animation-duration: 1.5s; } } - .twbs .tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; } - .twbs .tooltip.show { - opacity: 0.9; } - .twbs .tooltip .tooltip-arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .twbs .tooltip .tooltip-arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; } - .twbs .bs-tooltip-top, .twbs .bs-tooltip-auto[data-popper-placement^="top"] { - padding: 0.4rem 0; } - .twbs .bs-tooltip-top .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow { - bottom: 0; } - .twbs .bs-tooltip-top .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before { - top: -1px; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - .twbs .bs-tooltip-end, .twbs .bs-tooltip-auto[data-popper-placement^="right"] { - padding: 0 0.4rem; } - .twbs .bs-tooltip-end .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .twbs .bs-tooltip-end .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before { - right: -1px; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - .twbs .bs-tooltip-bottom, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] { - padding: 0.4rem 0; } - .twbs .bs-tooltip-bottom .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow { - top: 0; } - .twbs .bs-tooltip-bottom .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before { - bottom: -1px; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - .twbs .bs-tooltip-start, .twbs .bs-tooltip-auto[data-popper-placement^="left"] { - padding: 0 0.4rem; } - .twbs .bs-tooltip-start .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .twbs .bs-tooltip-start .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before { - left: -1px; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } - .twbs .tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } diff --git a/docs/_static/bootstrap2.css b/docs/_static/bootstrap2.css deleted file mode 100644 index b55daf218..000000000 --- a/docs/_static/bootstrap2.css +++ /dev/null @@ -1,3267 +0,0 @@ -.twbs { - /* rtl:raw: -[type="tel"], -[type="url"], -[type="email"], -[type="number"] { - direction: ltr; -} -*/ } - .twbs .accordion-button { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1rem 1.25rem; - font-size: 1rem; - color: #212529; - background-color: transparent; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0; - overflow-anchor: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .twbs .accordion-button { - transition: none; } } - .twbs .accordion-button.collapsed { - border-bottom-width: 0; } - .twbs .accordion-button:not(.collapsed) { - color: #0c63e4; - background-color: #e7f1ff; } - .twbs .accordion-button:not(.collapsed)::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); - transform: rotate(180deg); } - .twbs .accordion-button::after { - flex-shrink: 0; - width: 1.25rem; - height: 1.25rem; - margin-left: auto; - content: ""; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-size: 1.25rem; - transition: transform 0.2s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .accordion-button::after { - transition: none; } } - .twbs .accordion-button:hover { - z-index: 2; } - .twbs .accordion-button:focus { - z-index: 3; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .accordion-header { - margin-bottom: 0; } - .twbs .accordion-item:first-of-type .accordion-button { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .twbs .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-width: 1px; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .twbs .accordion-item:last-of-type .accordion-collapse { - border-bottom-width: 1px; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .twbs .accordion-collapse { - border: solid rgba(0, 0, 0, 0.125); - border-width: 0 1px; } - .twbs .accordion-body { - padding: 1rem 1.25rem; } - .twbs .accordion-flush .accordion-button { - border-right: 0; - border-left: 0; - border-radius: 0; } - .twbs .accordion-flush .accordion-collapse { - border-width: 0; } - .twbs .accordion-flush .accordion-item:first-of-type .accordion-button { - border-top-width: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .accordion-flush .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-width: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .twbs .btn { - display: inline-block; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - text-decoration: none; - vertical-align: middle; - cursor: pointer; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .btn { - transition: none; } } - .twbs .btn:hover { - color: #212529; } - .btn-check:focus + .twbs .btn, .twbs .btn:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .btn:disabled, .twbs .btn.disabled, - fieldset:disabled .twbs .btn { - pointer-events: none; - opacity: 0.65; } - .twbs .btn-primary { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .twbs .btn-primary:hover { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; } - .btn-check:focus + .twbs .btn-primary, .twbs .btn-primary:focus { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); } - .btn-check:checked + .twbs .btn-primary, - .btn-check:active + .twbs .btn-primary, .twbs .btn-primary:active, .twbs .btn-primary.active, - .show > .twbs .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0a58ca; - border-color: #0a53be; } - .btn-check:checked + .twbs .btn-primary:focus, - .btn-check:active + .twbs .btn-primary:focus, .twbs .btn-primary:active:focus, .twbs .btn-primary.active:focus, - .show > .twbs .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); } - .twbs .btn-primary:disabled, .twbs .btn-primary.disabled { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .twbs .btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .twbs .btn-secondary:hover { - color: #fff; - background-color: #5c636a; - border-color: #565e64; } - .btn-check:focus + .twbs .btn-secondary, .twbs .btn-secondary:focus { - color: #fff; - background-color: #5c636a; - border-color: #565e64; - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .btn-check:checked + .twbs .btn-secondary, - .btn-check:active + .twbs .btn-secondary, .twbs .btn-secondary:active, .twbs .btn-secondary.active, - .show > .twbs .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #565e64; - border-color: #51585e; } - .btn-check:checked + .twbs .btn-secondary:focus, - .btn-check:active + .twbs .btn-secondary:focus, .twbs .btn-secondary:active:focus, .twbs .btn-secondary.active:focus, - .show > .twbs .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .twbs .btn-secondary:disabled, .twbs .btn-secondary.disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .twbs .btn-success { - color: #fff; - background-color: #198754; - border-color: #198754; } - .twbs .btn-success:hover { - color: #fff; - background-color: #157347; - border-color: #146c43; } - .btn-check:focus + .twbs .btn-success, .twbs .btn-success:focus { - color: #fff; - background-color: #157347; - border-color: #146c43; - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .btn-check:checked + .twbs .btn-success, - .btn-check:active + .twbs .btn-success, .twbs .btn-success:active, .twbs .btn-success.active, - .show > .twbs .btn-success.dropdown-toggle { - color: #fff; - background-color: #146c43; - border-color: #13653f; } - .btn-check:checked + .twbs .btn-success:focus, - .btn-check:active + .twbs .btn-success:focus, .twbs .btn-success:active:focus, .twbs .btn-success.active:focus, - .show > .twbs .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .twbs .btn-success:disabled, .twbs .btn-success.disabled { - color: #fff; - background-color: #198754; - border-color: #198754; } - .twbs .btn-info { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-info:hover { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; } - .btn-check:focus + .twbs .btn-info, .twbs .btn-info:focus { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .btn-check:checked + .twbs .btn-info, - .btn-check:active + .twbs .btn-info, .twbs .btn-info:active, .twbs .btn-info.active, - .show > .twbs .btn-info.dropdown-toggle { - color: #000; - background-color: #3dd5f3; - border-color: #25cff2; } - .btn-check:checked + .twbs .btn-info:focus, - .btn-check:active + .twbs .btn-info:focus, .twbs .btn-info:active:focus, .twbs .btn-info.active:focus, - .show > .twbs .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .twbs .btn-info:disabled, .twbs .btn-info.disabled { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-warning { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .twbs .btn-warning:hover { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; } - .btn-check:focus + .twbs .btn-warning, .twbs .btn-warning:focus { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .btn-check:checked + .twbs .btn-warning, - .btn-check:active + .twbs .btn-warning, .twbs .btn-warning:active, .twbs .btn-warning.active, - .show > .twbs .btn-warning.dropdown-toggle { - color: #000; - background-color: #ffcd39; - border-color: #ffc720; } - .btn-check:checked + .twbs .btn-warning:focus, - .btn-check:active + .twbs .btn-warning:focus, .twbs .btn-warning:active:focus, .twbs .btn-warning.active:focus, - .show > .twbs .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .twbs .btn-warning:disabled, .twbs .btn-warning.disabled { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .twbs .btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .twbs .btn-danger:hover { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; } - .btn-check:focus + .twbs .btn-danger, .twbs .btn-danger:focus { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .btn-check:checked + .twbs .btn-danger, - .btn-check:active + .twbs .btn-danger, .twbs .btn-danger:active, .twbs .btn-danger.active, - .show > .twbs .btn-danger.dropdown-toggle { - color: #fff; - background-color: #b02a37; - border-color: #a52834; } - .btn-check:checked + .twbs .btn-danger:focus, - .btn-check:active + .twbs .btn-danger:focus, .twbs .btn-danger:active:focus, .twbs .btn-danger.active:focus, - .show > .twbs .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .twbs .btn-danger:disabled, .twbs .btn-danger.disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .twbs .btn-light { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-light:hover { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:focus + .twbs .btn-light, .twbs .btn-light:focus { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .btn-check:checked + .twbs .btn-light, - .btn-check:active + .twbs .btn-light, .twbs .btn-light:active, .twbs .btn-light.active, - .show > .twbs .btn-light.dropdown-toggle { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:checked + .twbs .btn-light:focus, - .btn-check:active + .twbs .btn-light:focus, .twbs .btn-light:active:focus, .twbs .btn-light.active:focus, - .show > .twbs .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .twbs .btn-light:disabled, .twbs .btn-light.disabled { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-dark { - color: #fff; - background-color: #212529; - border-color: #212529; } - .twbs .btn-dark:hover { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; } - .btn-check:focus + .twbs .btn-dark, .twbs .btn-dark:focus { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .btn-check:checked + .twbs .btn-dark, - .btn-check:active + .twbs .btn-dark, .twbs .btn-dark:active, .twbs .btn-dark.active, - .show > .twbs .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1a1e21; - border-color: #191c1f; } - .btn-check:checked + .twbs .btn-dark:focus, - .btn-check:active + .twbs .btn-dark:focus, .twbs .btn-dark:active:focus, .twbs .btn-dark.active:focus, - .show > .twbs .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .twbs .btn-dark:disabled, .twbs .btn-dark.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; } - .twbs .btn-outline-primary { - color: #0d6efd; - border-color: #0d6efd; } - .twbs .btn-outline-primary:hover { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-check:focus + .twbs .btn-outline-primary, .twbs .btn-outline-primary:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); } - .btn-check:checked + .twbs .btn-outline-primary, - .btn-check:active + .twbs .btn-outline-primary, .twbs .btn-outline-primary:active, .twbs .btn-outline-primary.active, .twbs .btn-outline-primary.dropdown-toggle.show { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-check:checked + .twbs .btn-outline-primary:focus, - .btn-check:active + .twbs .btn-outline-primary:focus, .twbs .btn-outline-primary:active:focus, .twbs .btn-outline-primary.active:focus, .twbs .btn-outline-primary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); } - .twbs .btn-outline-primary:disabled, .twbs .btn-outline-primary.disabled { - color: #0d6efd; - background-color: transparent; } - .twbs .btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; } - .twbs .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:focus + .twbs .btn-outline-secondary, .twbs .btn-outline-secondary:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .btn-check:checked + .twbs .btn-outline-secondary, - .btn-check:active + .twbs .btn-outline-secondary, .twbs .btn-outline-secondary:active, .twbs .btn-outline-secondary.active, .twbs .btn-outline-secondary.dropdown-toggle.show { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:checked + .twbs .btn-outline-secondary:focus, - .btn-check:active + .twbs .btn-outline-secondary:focus, .twbs .btn-outline-secondary:active:focus, .twbs .btn-outline-secondary.active:focus, .twbs .btn-outline-secondary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .twbs .btn-outline-secondary:disabled, .twbs .btn-outline-secondary.disabled { - color: #6c757d; - background-color: transparent; } - .twbs .btn-outline-success { - color: #198754; - border-color: #198754; } - .twbs .btn-outline-success:hover { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:focus + .twbs .btn-outline-success, .twbs .btn-outline-success:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .btn-check:checked + .twbs .btn-outline-success, - .btn-check:active + .twbs .btn-outline-success, .twbs .btn-outline-success:active, .twbs .btn-outline-success.active, .twbs .btn-outline-success.dropdown-toggle.show { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:checked + .twbs .btn-outline-success:focus, - .btn-check:active + .twbs .btn-outline-success:focus, .twbs .btn-outline-success:active:focus, .twbs .btn-outline-success.active:focus, .twbs .btn-outline-success.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .twbs .btn-outline-success:disabled, .twbs .btn-outline-success.disabled { - color: #198754; - background-color: transparent; } - .twbs .btn-outline-info { - color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-outline-info:hover { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:focus + .twbs .btn-outline-info, .twbs .btn-outline-info:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .btn-check:checked + .twbs .btn-outline-info, - .btn-check:active + .twbs .btn-outline-info, .twbs .btn-outline-info:active, .twbs .btn-outline-info.active, .twbs .btn-outline-info.dropdown-toggle.show { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:checked + .twbs .btn-outline-info:focus, - .btn-check:active + .twbs .btn-outline-info:focus, .twbs .btn-outline-info:active:focus, .twbs .btn-outline-info.active:focus, .twbs .btn-outline-info.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .twbs .btn-outline-info:disabled, .twbs .btn-outline-info.disabled { - color: #0dcaf0; - background-color: transparent; } - .twbs .btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .twbs .btn-outline-warning:hover { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:focus + .twbs .btn-outline-warning, .twbs .btn-outline-warning:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .btn-check:checked + .twbs .btn-outline-warning, - .btn-check:active + .twbs .btn-outline-warning, .twbs .btn-outline-warning:active, .twbs .btn-outline-warning.active, .twbs .btn-outline-warning.dropdown-toggle.show { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:checked + .twbs .btn-outline-warning:focus, - .btn-check:active + .twbs .btn-outline-warning:focus, .twbs .btn-outline-warning:active:focus, .twbs .btn-outline-warning.active:focus, .twbs .btn-outline-warning.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .twbs .btn-outline-warning:disabled, .twbs .btn-outline-warning.disabled { - color: #ffc107; - background-color: transparent; } - .twbs .btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .twbs .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:focus + .twbs .btn-outline-danger, .twbs .btn-outline-danger:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .btn-check:checked + .twbs .btn-outline-danger, - .btn-check:active + .twbs .btn-outline-danger, .twbs .btn-outline-danger:active, .twbs .btn-outline-danger.active, .twbs .btn-outline-danger.dropdown-toggle.show { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:checked + .twbs .btn-outline-danger:focus, - .btn-check:active + .twbs .btn-outline-danger:focus, .twbs .btn-outline-danger:active:focus, .twbs .btn-outline-danger.active:focus, .twbs .btn-outline-danger.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .twbs .btn-outline-danger:disabled, .twbs .btn-outline-danger.disabled { - color: #dc3545; - background-color: transparent; } - .twbs .btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-outline-light:hover { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:focus + .twbs .btn-outline-light, .twbs .btn-outline-light:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .btn-check:checked + .twbs .btn-outline-light, - .btn-check:active + .twbs .btn-outline-light, .twbs .btn-outline-light:active, .twbs .btn-outline-light.active, .twbs .btn-outline-light.dropdown-toggle.show { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:checked + .twbs .btn-outline-light:focus, - .btn-check:active + .twbs .btn-outline-light:focus, .twbs .btn-outline-light:active:focus, .twbs .btn-outline-light.active:focus, .twbs .btn-outline-light.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .twbs .btn-outline-light:disabled, .twbs .btn-outline-light.disabled { - color: #f8f9fa; - background-color: transparent; } - .twbs .btn-outline-dark { - color: #212529; - border-color: #212529; } - .twbs .btn-outline-dark:hover { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:focus + .twbs .btn-outline-dark, .twbs .btn-outline-dark:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .btn-check:checked + .twbs .btn-outline-dark, - .btn-check:active + .twbs .btn-outline-dark, .twbs .btn-outline-dark:active, .twbs .btn-outline-dark.active, .twbs .btn-outline-dark.dropdown-toggle.show { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:checked + .twbs .btn-outline-dark:focus, - .btn-check:active + .twbs .btn-outline-dark:focus, .twbs .btn-outline-dark:active:focus, .twbs .btn-outline-dark.active:focus, .twbs .btn-outline-dark.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .twbs .btn-outline-dark:disabled, .twbs .btn-outline-dark.disabled { - color: #212529; - background-color: transparent; } - .twbs .btn-link { - font-weight: 400; - color: #0d6efd; - text-decoration: underline; } - .twbs .btn-link:hover { - color: #0a58ca; } - .twbs .btn-link:disabled, .twbs .btn-link.disabled { - color: #6c757d; } - .twbs .btn-lg, .twbs .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .btn-sm, .twbs .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .btn-group, - .twbs .btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; } - .twbs .btn-group > .btn, - .twbs .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .twbs .btn-group > .btn-check:checked + .btn, - .twbs .btn-group > .btn-check:focus + .btn, - .twbs .btn-group > .btn:hover, - .twbs .btn-group > .btn:focus, - .twbs .btn-group > .btn:active, - .twbs .btn-group > .btn.active, - .twbs .btn-group-vertical > .btn-check:checked + .btn, - .twbs .btn-group-vertical > .btn-check:focus + .btn, - .twbs .btn-group-vertical > .btn:hover, - .twbs .btn-group-vertical > .btn:focus, - .twbs .btn-group-vertical > .btn:active, - .twbs .btn-group-vertical > .btn.active { - z-index: 1; } - .twbs .btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .twbs .btn-toolbar .input-group { - width: auto; } - .twbs .btn-group > .btn:not(:first-child), - .twbs .btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } - .twbs .btn-group > .btn:not(:last-child):not(.dropdown-toggle), - .twbs .btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .btn-group > .btn:nth-child(n + 3), - .twbs .btn-group > :not(.btn-check) + .btn, - .twbs .btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .twbs .dropdown-toggle-split::after, - .dropup .twbs .dropdown-toggle-split::after, - .dropend .twbs .dropdown-toggle-split::after { - margin-left: 0; } - .dropstart .twbs .dropdown-toggle-split::before { - margin-right: 0; } - .twbs .btn-sm + .dropdown-toggle-split, .twbs .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } - .twbs .btn-lg + .dropdown-toggle-split, .twbs .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } - .twbs .btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .twbs .btn-group-vertical > .btn, - .twbs .btn-group-vertical > .btn-group { - width: 100%; } - .twbs .btn-group-vertical > .btn:not(:first-child), - .twbs .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .twbs .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .twbs .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .twbs .btn-group-vertical > .btn ~ .btn, - .twbs .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .twbs .card > hr { - margin-right: 0; - margin-left: 0; } - .twbs .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .twbs .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .twbs .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .twbs .card > .card-header + .list-group, - .twbs .card > .list-group + .card-footer { - border-top: 0; } - .twbs .card-body { - flex: 1 1 auto; - padding: 1rem 1rem; } - .twbs .card-title { - margin-bottom: 0.5rem; } - .twbs .card-subtitle { - margin-top: -0.25rem; - margin-bottom: 0; } - .twbs .card-text:last-child { - margin-bottom: 0; } - .twbs .card-link:hover { - text-decoration: none; } - .twbs .card-link + .card-link { - margin-left: 1rem /* rtl:ignore */; } - .twbs .card-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } - .twbs .card-footer { - padding: 0.5rem 1rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } - .twbs .card-header-tabs { - margin-right: -0.5rem; - margin-bottom: -0.5rem; - margin-left: -0.5rem; - border-bottom: 0; } - .twbs .card-header-pills { - margin-right: -0.5rem; - margin-left: -0.5rem; } - .twbs .card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1rem; - border-radius: calc(0.25rem - 1px); } - .twbs .card-img, - .twbs .card-img-top, - .twbs .card-img-bottom { - width: 100%; } - .twbs .card-img, - .twbs .card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .twbs .card-img, - .twbs .card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .twbs .card-group > .card { - margin-bottom: 0.75rem; } - @media (min-width: 576px) { - .twbs .card-group { - display: flex; - flex-flow: row wrap; } - .twbs .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .twbs .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .twbs .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .card-group > .card:not(:last-child) .card-img-top, - .twbs .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .twbs .card-group > .card:not(:last-child) .card-img-bottom, - .twbs .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .twbs .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .card-group > .card:not(:first-child) .card-img-top, - .twbs .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .twbs .card-group > .card:not(:first-child) .card-img-bottom, - .twbs .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } - .twbs .dropup, - .twbs .dropend, - .twbs .dropdown, - .twbs .dropstart { - position: relative; } - .twbs .dropdown-toggle { - white-space: nowrap; } - .twbs .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .twbs .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - .twbs .dropdown-menu[style] { - right: auto !important; } - .twbs .dropdown-menu-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } - @media (min-width: 576px) { - .twbs .dropdown-menu-sm-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-sm-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 768px) { - .twbs .dropdown-menu-md-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-md-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 992px) { - .twbs .dropdown-menu-lg-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-lg-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 1200px) { - .twbs .dropdown-menu-xl-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-xl-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 1400px) { - .twbs .dropdown-menu-xxl-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-xxl-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - .twbs .dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } - .twbs .dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } - .twbs .dropup .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropend .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } - .twbs .dropend .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } - .twbs .dropend .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropend .dropdown-toggle::after { - vertical-align: 0; } - .twbs .dropstart .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } - .twbs .dropstart .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; } - .twbs .dropstart .dropdown-toggle::after { - display: none; } - .twbs .dropstart .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } - .twbs .dropstart .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropstart .dropdown-toggle::before { - vertical-align: 0; } - .twbs .dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid rgba(0, 0, 0, 0.15); } - .twbs .dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - text-decoration: none; - white-space: nowrap; - background-color: transparent; - border: 0; } - .twbs .dropdown-item:hover, .twbs .dropdown-item:focus { - color: #1e2125; - background-color: #f8f9fa; } - .twbs .dropdown-item.active, .twbs .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #0d6efd; } - .twbs .dropdown-item.disabled, .twbs .dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; } - .twbs .dropdown-menu.show { - display: block; } - .twbs .dropdown-header { - display: block; - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } - .twbs .dropdown-item-text { - display: block; - padding: 0.25rem 1rem; - color: #212529; } - .twbs .dropdown-menu-dark { - color: #dee2e6; - background-color: #343a40; - border-color: rgba(0, 0, 0, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item { - color: #dee2e6; } - .twbs .dropdown-menu-dark .dropdown-item:hover, .twbs .dropdown-menu-dark .dropdown-item:focus { - color: #fff; - background-color: rgba(255, 255, 255, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item.active, .twbs .dropdown-menu-dark .dropdown-item:active { - color: #fff; - background-color: #0d6efd; } - .twbs .dropdown-menu-dark .dropdown-item.disabled, .twbs .dropdown-menu-dark .dropdown-item:disabled { - color: #adb5bd; } - .twbs .dropdown-menu-dark .dropdown-divider { - border-color: rgba(0, 0, 0, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item-text { - color: #dee2e6; } - .twbs .dropdown-menu-dark .dropdown-header { - color: #adb5bd; } - .twbs .row { - --bs-gutter-x: 1.5rem; - --bs-gutter-y: 0; - display: flex; - flex-wrap: wrap; - margin-top: calc(var(--bs-gutter-y) * -1); - margin-right: calc(var(--bs-gutter-x) / -2); - margin-left: calc(var(--bs-gutter-x) / -2); } - .twbs .row > * { - flex-shrink: 0; - width: 100%; - max-width: 100%; - padding-right: calc(var(--bs-gutter-x) / 2); - padding-left: calc(var(--bs-gutter-x) / 2); - margin-top: var(--bs-gutter-y); } - .twbs .col { - flex: 1 0 0%; } - .twbs .row-cols-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-1 { - margin-left: 8.33333%; } - .twbs .offset-2 { - margin-left: 16.66667%; } - .twbs .offset-3 { - margin-left: 25%; } - .twbs .offset-4 { - margin-left: 33.33333%; } - .twbs .offset-5 { - margin-left: 41.66667%; } - .twbs .offset-6 { - margin-left: 50%; } - .twbs .offset-7 { - margin-left: 58.33333%; } - .twbs .offset-8 { - margin-left: 66.66667%; } - .twbs .offset-9 { - margin-left: 75%; } - .twbs .offset-10 { - margin-left: 83.33333%; } - .twbs .offset-11 { - margin-left: 91.66667%; } - .twbs .g-0, - .twbs .gx-0 { - --bs-gutter-x: 0; } - .twbs .g-0, - .twbs .gy-0 { - --bs-gutter-y: 0; } - .twbs .g-1, - .twbs .gx-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-1, - .twbs .gy-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-2, - .twbs .gx-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-2, - .twbs .gy-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-3, - .twbs .gx-3 { - --bs-gutter-x: 1rem; } - .twbs .g-3, - .twbs .gy-3 { - --bs-gutter-y: 1rem; } - .twbs .g-4, - .twbs .gx-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-4, - .twbs .gy-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-5, - .twbs .gx-5 { - --bs-gutter-x: 3rem; } - .twbs .g-5, - .twbs .gy-5 { - --bs-gutter-y: 3rem; } - @media (min-width: 576px) { - .twbs .col-sm { - flex: 1 0 0%; } - .twbs .row-cols-sm-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-sm-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-sm-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-sm-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-sm-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-sm-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-sm-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-sm-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-sm-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-sm-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-sm-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-sm-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-sm-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-sm-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-sm-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-sm-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-sm-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-sm-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-sm-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-sm-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-sm-0 { - margin-left: 0; } - .twbs .offset-sm-1 { - margin-left: 8.33333%; } - .twbs .offset-sm-2 { - margin-left: 16.66667%; } - .twbs .offset-sm-3 { - margin-left: 25%; } - .twbs .offset-sm-4 { - margin-left: 33.33333%; } - .twbs .offset-sm-5 { - margin-left: 41.66667%; } - .twbs .offset-sm-6 { - margin-left: 50%; } - .twbs .offset-sm-7 { - margin-left: 58.33333%; } - .twbs .offset-sm-8 { - margin-left: 66.66667%; } - .twbs .offset-sm-9 { - margin-left: 75%; } - .twbs .offset-sm-10 { - margin-left: 83.33333%; } - .twbs .offset-sm-11 { - margin-left: 91.66667%; } - .twbs .g-sm-0, - .twbs .gx-sm-0 { - --bs-gutter-x: 0; } - .twbs .g-sm-0, - .twbs .gy-sm-0 { - --bs-gutter-y: 0; } - .twbs .g-sm-1, - .twbs .gx-sm-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-sm-1, - .twbs .gy-sm-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-sm-2, - .twbs .gx-sm-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-sm-2, - .twbs .gy-sm-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-sm-3, - .twbs .gx-sm-3 { - --bs-gutter-x: 1rem; } - .twbs .g-sm-3, - .twbs .gy-sm-3 { - --bs-gutter-y: 1rem; } - .twbs .g-sm-4, - .twbs .gx-sm-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-sm-4, - .twbs .gy-sm-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-sm-5, - .twbs .gx-sm-5 { - --bs-gutter-x: 3rem; } - .twbs .g-sm-5, - .twbs .gy-sm-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 768px) { - .twbs .col-md { - flex: 1 0 0%; } - .twbs .row-cols-md-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-md-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-md-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-md-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-md-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-md-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-md-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-md-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-md-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-md-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-md-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-md-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-md-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-md-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-md-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-md-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-md-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-md-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-md-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-md-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-md-0 { - margin-left: 0; } - .twbs .offset-md-1 { - margin-left: 8.33333%; } - .twbs .offset-md-2 { - margin-left: 16.66667%; } - .twbs .offset-md-3 { - margin-left: 25%; } - .twbs .offset-md-4 { - margin-left: 33.33333%; } - .twbs .offset-md-5 { - margin-left: 41.66667%; } - .twbs .offset-md-6 { - margin-left: 50%; } - .twbs .offset-md-7 { - margin-left: 58.33333%; } - .twbs .offset-md-8 { - margin-left: 66.66667%; } - .twbs .offset-md-9 { - margin-left: 75%; } - .twbs .offset-md-10 { - margin-left: 83.33333%; } - .twbs .offset-md-11 { - margin-left: 91.66667%; } - .twbs .g-md-0, - .twbs .gx-md-0 { - --bs-gutter-x: 0; } - .twbs .g-md-0, - .twbs .gy-md-0 { - --bs-gutter-y: 0; } - .twbs .g-md-1, - .twbs .gx-md-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-md-1, - .twbs .gy-md-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-md-2, - .twbs .gx-md-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-md-2, - .twbs .gy-md-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-md-3, - .twbs .gx-md-3 { - --bs-gutter-x: 1rem; } - .twbs .g-md-3, - .twbs .gy-md-3 { - --bs-gutter-y: 1rem; } - .twbs .g-md-4, - .twbs .gx-md-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-md-4, - .twbs .gy-md-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-md-5, - .twbs .gx-md-5 { - --bs-gutter-x: 3rem; } - .twbs .g-md-5, - .twbs .gy-md-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 992px) { - .twbs .col-lg { - flex: 1 0 0%; } - .twbs .row-cols-lg-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-lg-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-lg-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-lg-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-lg-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-lg-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-lg-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-lg-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-lg-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-lg-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-lg-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-lg-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-lg-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-lg-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-lg-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-lg-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-lg-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-lg-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-lg-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-lg-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-lg-0 { - margin-left: 0; } - .twbs .offset-lg-1 { - margin-left: 8.33333%; } - .twbs .offset-lg-2 { - margin-left: 16.66667%; } - .twbs .offset-lg-3 { - margin-left: 25%; } - .twbs .offset-lg-4 { - margin-left: 33.33333%; } - .twbs .offset-lg-5 { - margin-left: 41.66667%; } - .twbs .offset-lg-6 { - margin-left: 50%; } - .twbs .offset-lg-7 { - margin-left: 58.33333%; } - .twbs .offset-lg-8 { - margin-left: 66.66667%; } - .twbs .offset-lg-9 { - margin-left: 75%; } - .twbs .offset-lg-10 { - margin-left: 83.33333%; } - .twbs .offset-lg-11 { - margin-left: 91.66667%; } - .twbs .g-lg-0, - .twbs .gx-lg-0 { - --bs-gutter-x: 0; } - .twbs .g-lg-0, - .twbs .gy-lg-0 { - --bs-gutter-y: 0; } - .twbs .g-lg-1, - .twbs .gx-lg-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-lg-1, - .twbs .gy-lg-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-lg-2, - .twbs .gx-lg-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-lg-2, - .twbs .gy-lg-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-lg-3, - .twbs .gx-lg-3 { - --bs-gutter-x: 1rem; } - .twbs .g-lg-3, - .twbs .gy-lg-3 { - --bs-gutter-y: 1rem; } - .twbs .g-lg-4, - .twbs .gx-lg-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-lg-4, - .twbs .gy-lg-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-lg-5, - .twbs .gx-lg-5 { - --bs-gutter-x: 3rem; } - .twbs .g-lg-5, - .twbs .gy-lg-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 1200px) { - .twbs .col-xl { - flex: 1 0 0%; } - .twbs .row-cols-xl-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-xl-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-xl-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-xl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-xl-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-xl-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-xl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xl-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-xl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-xl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xl-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-xl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-xl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-xl-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-xl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-xl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-xl-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-xl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-xl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-xl-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-xl-0 { - margin-left: 0; } - .twbs .offset-xl-1 { - margin-left: 8.33333%; } - .twbs .offset-xl-2 { - margin-left: 16.66667%; } - .twbs .offset-xl-3 { - margin-left: 25%; } - .twbs .offset-xl-4 { - margin-left: 33.33333%; } - .twbs .offset-xl-5 { - margin-left: 41.66667%; } - .twbs .offset-xl-6 { - margin-left: 50%; } - .twbs .offset-xl-7 { - margin-left: 58.33333%; } - .twbs .offset-xl-8 { - margin-left: 66.66667%; } - .twbs .offset-xl-9 { - margin-left: 75%; } - .twbs .offset-xl-10 { - margin-left: 83.33333%; } - .twbs .offset-xl-11 { - margin-left: 91.66667%; } - .twbs .g-xl-0, - .twbs .gx-xl-0 { - --bs-gutter-x: 0; } - .twbs .g-xl-0, - .twbs .gy-xl-0 { - --bs-gutter-y: 0; } - .twbs .g-xl-1, - .twbs .gx-xl-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-xl-1, - .twbs .gy-xl-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-xl-2, - .twbs .gx-xl-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-xl-2, - .twbs .gy-xl-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-xl-3, - .twbs .gx-xl-3 { - --bs-gutter-x: 1rem; } - .twbs .g-xl-3, - .twbs .gy-xl-3 { - --bs-gutter-y: 1rem; } - .twbs .g-xl-4, - .twbs .gx-xl-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-xl-4, - .twbs .gy-xl-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-xl-5, - .twbs .gx-xl-5 { - --bs-gutter-x: 3rem; } - .twbs .g-xl-5, - .twbs .gy-xl-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 1400px) { - .twbs .col-xxl { - flex: 1 0 0%; } - .twbs .row-cols-xxl-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-xxl-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-xxl-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-xxl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-xxl-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-xxl-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-xxl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xxl-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-xxl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-xxl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xxl-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-xxl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-xxl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-xxl-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-xxl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-xxl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-xxl-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-xxl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-xxl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-xxl-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-xxl-0 { - margin-left: 0; } - .twbs .offset-xxl-1 { - margin-left: 8.33333%; } - .twbs .offset-xxl-2 { - margin-left: 16.66667%; } - .twbs .offset-xxl-3 { - margin-left: 25%; } - .twbs .offset-xxl-4 { - margin-left: 33.33333%; } - .twbs .offset-xxl-5 { - margin-left: 41.66667%; } - .twbs .offset-xxl-6 { - margin-left: 50%; } - .twbs .offset-xxl-7 { - margin-left: 58.33333%; } - .twbs .offset-xxl-8 { - margin-left: 66.66667%; } - .twbs .offset-xxl-9 { - margin-left: 75%; } - .twbs .offset-xxl-10 { - margin-left: 83.33333%; } - .twbs .offset-xxl-11 { - margin-left: 91.66667%; } - .twbs .g-xxl-0, - .twbs .gx-xxl-0 { - --bs-gutter-x: 0; } - .twbs .g-xxl-0, - .twbs .gy-xxl-0 { - --bs-gutter-y: 0; } - .twbs .g-xxl-1, - .twbs .gx-xxl-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-xxl-1, - .twbs .gy-xxl-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-xxl-2, - .twbs .gx-xxl-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-xxl-2, - .twbs .gy-xxl-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-xxl-3, - .twbs .gx-xxl-3 { - --bs-gutter-x: 1rem; } - .twbs .g-xxl-3, - .twbs .gy-xxl-3 { - --bs-gutter-y: 1rem; } - .twbs .g-xxl-4, - .twbs .gx-xxl-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-xxl-4, - .twbs .gy-xxl-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-xxl-5, - .twbs .gx-xxl-5 { - --bs-gutter-x: 3rem; } - .twbs .g-xxl-5, - .twbs .gy-xxl-5 { - --bs-gutter-y: 3rem; } } - .twbs :root { - --bs-blue: #0d6efd; - --bs-indigo: #6610f2; - --bs-purple: #6f42c1; - --bs-pink: #d63384; - --bs-red: #dc3545; - --bs-orange: #fd7e14; - --bs-yellow: #ffc107; - --bs-green: #198754; - --bs-teal: #20c997; - --bs-cyan: #0dcaf0; - --bs-white: #fff; - --bs-gray: #6c757d; - --bs-gray-dark: #343a40; - --bs-primary: #0d6efd; - --bs-secondary: #6c757d; - --bs-success: #198754; - --bs-info: #0dcaf0; - --bs-warning: #ffc107; - --bs-danger: #dc3545; - --bs-light: #f8f9fa; - --bs-dark: #212529; - --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); } - .twbs *, - .twbs *::before, - .twbs *::after { - box-sizing: border-box; } - @media (prefers-reduced-motion: no-preference) { - .twbs :root { - scroll-behavior: smooth; } } - .twbs body { - margin: 0; - font-family: var(--bs-font-sans-serif); - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - .twbs [tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; } - .twbs hr { - margin: 1rem 0; - color: inherit; - background-color: currentColor; - border: 0; - opacity: 0.25; } - .twbs hr:not([size]) { - height: 1px; } - .twbs h1, .twbs .h1, .twbs h2, .twbs .h2, .twbs h3, .twbs .h3, .twbs h4, .twbs .h4, .twbs h5, .twbs .h5, .twbs h6, .twbs .h6 { - margin-top: 0; - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } - .twbs h1, .twbs .h1 { - font-size: calc(1.375rem + 1.5vw); } - @media (min-width: 1200px) { - .twbs h1, .twbs .h1 { - font-size: 2.5rem; } } - .twbs h2, .twbs .h2 { - font-size: calc(1.325rem + 0.9vw); } - @media (min-width: 1200px) { - .twbs h2, .twbs .h2 { - font-size: 2rem; } } - .twbs h3, .twbs .h3 { - font-size: calc(1.3rem + 0.6vw); } - @media (min-width: 1200px) { - .twbs h3, .twbs .h3 { - font-size: 1.75rem; } } - .twbs h4, .twbs .h4 { - font-size: calc(1.275rem + 0.3vw); } - @media (min-width: 1200px) { - .twbs h4, .twbs .h4 { - font-size: 1.5rem; } } - .twbs h5, .twbs .h5 { - font-size: 1.25rem; } - .twbs h6, .twbs .h6 { - font-size: 1rem; } - .twbs p { - margin-top: 0; - margin-bottom: 1rem; } - .twbs abbr[title], - .twbs abbr[data-bs-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - text-decoration-skip-ink: none; } - .twbs address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } - .twbs ol, - .twbs ul { - padding-left: 2rem; } - .twbs ol, - .twbs ul, - .twbs dl { - margin-top: 0; - margin-bottom: 1rem; } - .twbs ol ol, - .twbs ul ul, - .twbs ol ul, - .twbs ul ol { - margin-bottom: 0; } - .twbs dt { - font-weight: 700; } - .twbs dd { - margin-bottom: .5rem; - margin-left: 0; } - .twbs blockquote { - margin: 0 0 1rem; } - .twbs b, - .twbs strong { - font-weight: bolder; } - .twbs small, .twbs .small { - font-size: 0.875em; } - .twbs mark, .twbs .mark { - padding: 0.2em; - background-color: #fcf8e3; } - .twbs sub, - .twbs sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; } - .twbs sub { - bottom: -.25em; } - .twbs sup { - top: -.5em; } - .twbs a { - color: #0d6efd; - text-decoration: underline; } - .twbs a:hover { - color: #0a58ca; } - .twbs a:not([href]):not([class]), .twbs a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; } - .twbs pre, - .twbs code, - .twbs kbd, - .twbs samp { - font-family: var(--bs-font-monospace); - font-size: 1em; - direction: ltr /* rtl:ignore */; - unicode-bidi: bidi-override; } - .twbs pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - font-size: 0.875em; } - .twbs pre code { - font-size: inherit; - color: inherit; - word-break: normal; } - .twbs code { - font-size: 0.875em; - color: #d63384; - word-wrap: break-word; } - a > .twbs code { - color: inherit; } - .twbs kbd { - padding: 0.2rem 0.4rem; - font-size: 0.875em; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - .twbs kbd kbd { - padding: 0; - font-size: 1em; - font-weight: 700; } - .twbs figure { - margin: 0 0 1rem; } - .twbs img, - .twbs svg { - vertical-align: middle; } - .twbs table { - caption-side: bottom; - border-collapse: collapse; } - .twbs caption { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: #6c757d; - text-align: left; } - .twbs th { - text-align: inherit; - text-align: -webkit-match-parent; } - .twbs thead, - .twbs tbody, - .twbs tfoot, - .twbs tr, - .twbs td, - .twbs th { - border-color: inherit; - border-style: solid; - border-width: 0; } - .twbs label { - display: inline-block; } - .twbs button { - border-radius: 0; } - .twbs button:focus { - outline: dotted 1px; - outline: -webkit-focus-ring-color auto 5px; } - .twbs input, - .twbs button, - .twbs select, - .twbs optgroup, - .twbs textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } - .twbs button, - .twbs select { - text-transform: none; } - .twbs [role="button"] { - cursor: pointer; } - .twbs select { - word-wrap: normal; } - .twbs [list]::-webkit-calendar-picker-indicator { - display: none; } - .twbs button, - .twbs [type="button"], - .twbs [type="reset"], - .twbs [type="submit"] { - -webkit-appearance: button; } - .twbs button:not(:disabled), - .twbs [type="button"]:not(:disabled), - .twbs [type="reset"]:not(:disabled), - .twbs [type="submit"]:not(:disabled) { - cursor: pointer; } - .twbs ::-moz-focus-inner { - padding: 0; - border-style: none; } - .twbs textarea { - resize: vertical; } - .twbs fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - .twbs legend { - float: left; - width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: calc(1.275rem + 0.3vw); - line-height: inherit; } - @media (min-width: 1200px) { - .twbs legend { - font-size: 1.5rem; } } - .twbs legend + * { - clear: left; } - .twbs ::-webkit-datetime-edit-fields-wrapper, - .twbs ::-webkit-datetime-edit-text, - .twbs ::-webkit-datetime-edit-minute, - .twbs ::-webkit-datetime-edit-hour-field, - .twbs ::-webkit-datetime-edit-day-field, - .twbs ::-webkit-datetime-edit-month-field, - .twbs ::-webkit-datetime-edit-year-field { - padding: 0; } - .twbs ::-webkit-inner-spin-button { - height: auto; } - .twbs [type="search"] { - outline-offset: -2px; - -webkit-appearance: textfield; } - .twbs ::-webkit-search-decoration { - -webkit-appearance: none; } - .twbs ::-webkit-color-swatch-wrapper { - padding: 0; } - .twbs ::file-selector-button { - font: inherit; } - .twbs ::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } - .twbs output { - display: inline-block; } - .twbs iframe { - border: 0; } - .twbs summary { - display: list-item; - cursor: pointer; } - .twbs progress { - vertical-align: baseline; } - .twbs [hidden] { - display: none !important; } - .twbs .lead { - font-size: 1.25rem; - font-weight: 300; } - .twbs .display-1 { - font-size: calc(1.625rem + 4.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-1 { - font-size: 5rem; } } - .twbs .display-2 { - font-size: calc(1.575rem + 3.9vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-2 { - font-size: 4.5rem; } } - .twbs .display-3 { - font-size: calc(1.525rem + 3.3vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-3 { - font-size: 4rem; } } - .twbs .display-4 { - font-size: calc(1.475rem + 2.7vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-4 { - font-size: 3.5rem; } } - .twbs .display-5 { - font-size: calc(1.425rem + 2.1vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-5 { - font-size: 3rem; } } - .twbs .display-6 { - font-size: calc(1.375rem + 1.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-6 { - font-size: 2.5rem; } } - .twbs .list-unstyled { - padding-left: 0; - list-style: none; } - .twbs .list-inline { - padding-left: 0; - list-style: none; } - .twbs .list-inline-item { - display: inline-block; } - .twbs .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } - .twbs .initialism { - font-size: 0.875em; - text-transform: uppercase; } - .twbs .blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; } - .twbs .blockquote > :last-child { - margin-bottom: 0; } - .twbs .blockquote-footer { - margin-top: -1rem; - margin-bottom: 1rem; - font-size: 0.875em; - color: #6c757d; } - .twbs .blockquote-footer::before { - content: "\2014\00A0"; } - .twbs .form-label { - margin-bottom: 0.5rem; } - .twbs .col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } - .twbs .col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; } - .twbs .col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; } - .twbs .form-text { - margin-top: 0.25rem; - font-size: 0.875em; - color: #6c757d; } - .twbs .form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - appearance: none; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control { - transition: none; } } - .twbs .form-control[type="file"] { - overflow: hidden; } - .twbs .form-control[type="file"]:not(:disabled):not([readonly]) { - cursor: pointer; } - .twbs .form-control:focus { - color: #212529; - background-color: #fff; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-control::-webkit-date-and-time-value { - height: 1.5em; } - .twbs .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .twbs .form-control:disabled, .twbs .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - .twbs .form-control::file-selector-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control::file-selector-button { - transition: none; } } - .twbs .form-control:hover:not(:disabled):not([readonly])::file-selector-button { - background-color: #dde0e3; } - .twbs .form-control::-webkit-file-upload-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control::-webkit-file-upload-button { - transition: none; } } - .twbs .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { - background-color: #dde0e3; } - .twbs .form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .twbs .form-control-plaintext.form-control-sm, .twbs .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } - .twbs .form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .form-control-sm::file-selector-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .twbs .form-control-sm::-webkit-file-upload-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .twbs .form-control-lg { - min-height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .form-control-lg::file-selector-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .twbs .form-control-lg::-webkit-file-upload-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .twbs textarea.form-control { - min-height: calc(1.5em + 0.75rem + 2px); } - .twbs textarea.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); } - .twbs textarea.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); } - .twbs .form-control-color { - max-width: 3rem; - height: auto; - padding: 0.375rem; } - .twbs .form-control-color:not(:disabled):not([readonly]) { - cursor: pointer; } - .twbs .form-control-color::-moz-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .twbs .form-control-color::-webkit-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .twbs .form-select { - display: block; - width: 100%; - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - vertical-align: middle; - background-color: #fff; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right 0.75rem center; - background-size: 16px 12px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - appearance: none; } - .twbs .form-select:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-select[multiple], .twbs .form-select[size]:not([size="1"]) { - padding-right: 0.75rem; - background-image: none; } - .twbs .form-select:disabled { - color: #6c757d; - background-color: #e9ecef; } - .twbs .form-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #212529; } - .twbs .form-select-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; } - .twbs .form-select-lg { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; } - .twbs .form-check { - display: block; - min-height: 1.5rem; - padding-left: 1.5em; - margin-bottom: 0.125rem; } - .twbs .form-check .form-check-input { - float: left; - margin-left: -1.5em; } - .twbs .form-check-input { - width: 1em; - height: 1em; - margin-top: 0.25em; - vertical-align: top; - background-color: #fff; - background-repeat: no-repeat; - background-position: center; - background-size: contain; - border: 1px solid rgba(0, 0, 0, 0.25); - appearance: none; - color-adjust: exact; - transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-check-input { - transition: none; } } - .twbs .form-check-input[type="checkbox"] { - border-radius: 0.25em; } - .twbs .form-check-input[type="radio"] { - border-radius: 50%; } - .twbs .form-check-input:active { - filter: brightness(90%); } - .twbs .form-check-input:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-check-input:checked { - background-color: #0d6efd; - border-color: #0d6efd; } - .twbs .form-check-input:checked[type="checkbox"] { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); } - .twbs .form-check-input:checked[type="radio"] { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); } - .twbs .form-check-input[type="checkbox"]:indeterminate { - background-color: #0d6efd; - border-color: #0d6efd; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); } - .twbs .form-check-input:disabled { - pointer-events: none; - filter: none; - opacity: 0.5; } - .twbs .form-check-input[disabled] ~ .form-check-label, .twbs .form-check-input:disabled ~ .form-check-label { - opacity: 0.5; } - .twbs .form-switch { - padding-left: 2.5em; } - .twbs .form-switch .form-check-input { - width: 2em; - margin-left: -2.5em; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); - background-position: left center; - border-radius: 2em; } - .twbs .form-switch .form-check-input:focus { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e"); } - .twbs .form-switch .form-check-input:checked { - background-position: right center; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } - .twbs .form-check-inline { - display: inline-block; - margin-right: 1rem; } - .twbs .btn-check { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - .twbs .btn-check[disabled] + .btn, .twbs .btn-check:disabled + .btn { - pointer-events: none; - filter: none; - opacity: 0.65; } - .twbs .form-range { - width: 100%; - height: 1.5rem; - padding: 0; - background-color: transparent; - appearance: none; } - .twbs .form-range:focus { - outline: none; } - .twbs .form-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-range::-moz-focus-outer { - border: 0; } - .twbs .form-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-range::-webkit-slider-thumb { - transition: none; } } - .twbs .form-range::-webkit-slider-thumb:active { - background-color: #b6d4fe; } - .twbs .form-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .twbs .form-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-range::-moz-range-thumb { - transition: none; } } - .twbs .form-range::-moz-range-thumb:active { - background-color: #b6d4fe; } - .twbs .form-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .twbs .form-range:disabled { - pointer-events: none; } - .twbs .form-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .twbs .form-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - .twbs .form-floating { - position: relative; } - .twbs .form-floating > .form-control, - .twbs .form-floating > .form-select { - height: calc(3.5rem + 2px); - padding: 1rem 0.75rem; } - .twbs .form-floating > label { - position: absolute; - top: 0; - left: 0; - height: 100%; - padding: 1rem 0.75rem; - pointer-events: none; - border: 1px solid transparent; - transform-origin: 0 0; - transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-floating > label { - transition: none; } } - .twbs .form-floating > .form-control::placeholder { - color: transparent; } - .twbs .form-floating > .form-control:focus, .twbs .form-floating > .form-control:not(:placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-control:-webkit-autofill { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-select { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-control:focus ~ label, - .twbs .form-floating > .form-control:not(:placeholder-shown) ~ label, - .twbs .form-floating > .form-select ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .twbs .form-floating > .form-control:-webkit-autofill ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .twbs .input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; } - .twbs .input-group > .form-control, - .twbs .input-group > .form-select { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; } - .twbs .input-group > .form-control:focus, - .twbs .input-group > .form-select:focus { - z-index: 3; } - .twbs .input-group .btn { - position: relative; - z-index: 2; } - .twbs .input-group .btn:focus { - z-index: 3; } - .twbs .input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .twbs .input-group-lg > .form-control, - .twbs .input-group-lg > .form-select, - .twbs .input-group-lg > .input-group-text, - .twbs .input-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .input-group-sm > .form-control, - .twbs .input-group-sm > .form-select, - .twbs .input-group-sm > .input-group-text, - .twbs .input-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .input-group-lg > .form-select, - .twbs .input-group-sm > .form-select { - padding-right: 1.75rem; } - .twbs .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), - .twbs .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), - .twbs .input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { - margin-left: -1px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #198754; } - .twbs .valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(25, 135, 84, 0.9); - border-radius: 0.25rem; } - .was-validated .twbs:valid ~ .valid-feedback, - .was-validated .twbs:valid ~ .valid-tooltip, .twbs.is-valid ~ .valid-feedback, - .twbs.is-valid ~ .valid-tooltip { - display: block; } - .was-validated .twbs .form-control:valid, .twbs .form-control.is-valid { - border-color: #198754; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-control:valid:focus, .twbs .form-control.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs textarea.form-control:valid, .twbs textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - .was-validated .twbs .form-select:valid, .twbs .form-select.is-valid { - border-color: #198754; - padding-right: calc(0.75em + 2.3125rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-position: right 0.75rem center, center right 1.75rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-select:valid:focus, .twbs .form-select.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs .form-check-input:valid, .twbs .form-check-input.is-valid { - border-color: #198754; } - .was-validated .twbs .form-check-input:valid:checked, .twbs .form-check-input.is-valid:checked { - background-color: #198754; } - .was-validated .twbs .form-check-input:valid:focus, .twbs .form-check-input.is-valid:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs .form-check-input:valid ~ .form-check-label, .twbs .form-check-input.is-valid ~ .form-check-label { - color: #198754; } - .twbs .form-check-inline .form-check-input ~ .valid-feedback { - margin-left: .5em; } - .twbs .invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #dc3545; } - .twbs .invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - .was-validated .twbs:invalid ~ .invalid-feedback, - .was-validated .twbs:invalid ~ .invalid-tooltip, .twbs.is-invalid ~ .invalid-feedback, - .twbs.is-invalid ~ .invalid-tooltip { - display: block; } - .was-validated .twbs .form-control:invalid, .twbs .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-control:invalid:focus, .twbs .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs textarea.form-control:invalid, .twbs textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - .was-validated .twbs .form-select:invalid, .twbs .form-select.is-invalid { - border-color: #dc3545; - padding-right: calc(0.75em + 2.3125rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-position: right 0.75rem center, center right 1.75rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-select:invalid:focus, .twbs .form-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs .form-check-input:invalid, .twbs .form-check-input.is-invalid { - border-color: #dc3545; } - .was-validated .twbs .form-check-input:invalid:checked, .twbs .form-check-input.is-invalid:checked { - background-color: #dc3545; } - .was-validated .twbs .form-check-input:invalid:focus, .twbs .form-check-input.is-invalid:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs .form-check-input:invalid ~ .form-check-label, .twbs .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } - .twbs .form-check-inline .form-check-input ~ .invalid-feedback { - margin-left: .5em; } - .twbs .nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .twbs .nav-link { - display: block; - padding: 0.5rem 1rem; - text-decoration: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .nav-link { - transition: none; } } - .twbs .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } - .twbs .nav-tabs { - border-bottom: 1px solid #dee2e6; } - .twbs .nav-tabs .nav-link { - margin-bottom: -1px; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .twbs .nav-tabs .nav-link:hover, .twbs .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; } - .twbs .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .twbs .nav-tabs .nav-link.active, - .twbs .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .twbs .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .nav-pills .nav-link { - border-radius: 0.25rem; } - .twbs .nav-pills .nav-link.active, - .twbs .nav-pills .show > .nav-link { - color: #fff; - background-color: #0d6efd; } - .twbs .nav-fill > .nav-link, - .twbs .nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } - .twbs .nav-justified > .nav-link, - .twbs .nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } - .twbs .tab-content > .tab-pane { - display: none; } - .twbs .tab-content > .active { - display: block; } - .twbs .navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .twbs .navbar > .container, - .twbs .navbar > .container-fluid, .twbs .navbar > .container-sm, .twbs .navbar > .container-md, .twbs .navbar > .container-lg, .twbs .navbar > .container-xl, .twbs .navbar > .container-xxl { - display: flex; - flex-wrap: inherit; - align-items: center; - justify-content: space-between; } - .twbs .navbar-brand { - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - text-decoration: none; - white-space: nowrap; } - .twbs .navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .twbs .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .twbs .navbar-nav .dropdown-menu { - position: static; } - .twbs .navbar-text { - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .twbs .navbar-collapse { - align-items: center; - width: 100%; } - .twbs .navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; - transition: box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .navbar-toggler { - transition: none; } } - .twbs .navbar-toggler:hover { - text-decoration: none; } - .twbs .navbar-toggler:focus { - text-decoration: none; - outline: 0; - box-shadow: 0 0 0 0.25rem; } - .twbs .navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - background-repeat: no-repeat; - background-position: center; - background-size: 100%; } - @media (min-width: 576px) { - .twbs .navbar-expand-sm { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-sm .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-sm .navbar-toggler { - display: none; } } - @media (min-width: 768px) { - .twbs .navbar-expand-md { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-md .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-md .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-md .navbar-toggler { - display: none; } } - @media (min-width: 992px) { - .twbs .navbar-expand-lg { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-lg .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-lg .navbar-toggler { - display: none; } } - @media (min-width: 1200px) { - .twbs .navbar-expand-xl { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-xl .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-xl .navbar-toggler { - display: none; } } - @media (min-width: 1400px) { - .twbs .navbar-expand-xxl { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-xxl .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-xxl .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-xxl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-xxl .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-xxl .navbar-toggler { - display: none; } } - .twbs .navbar-expand { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand .navbar-toggler { - display: none; } - .twbs .navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-brand:hover, .twbs .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.55); } - .twbs .navbar-light .navbar-nav .nav-link:hover, .twbs .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .twbs .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } - .twbs .navbar-light .navbar-nav .show > .nav-link, - .twbs .navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.55); - border-color: rgba(0, 0, 0, 0.1); } - .twbs .navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - .twbs .navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.55); } - .twbs .navbar-light .navbar-text a, - .twbs .navbar-light .navbar-text a:hover, - .twbs .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-dark .navbar-brand { - color: #fff; } - .twbs .navbar-dark .navbar-brand:hover, .twbs .navbar-dark .navbar-brand:focus { - color: #fff; } - .twbs .navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.55); } - .twbs .navbar-dark .navbar-nav .nav-link:hover, .twbs .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .twbs .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } - .twbs .navbar-dark .navbar-nav .show > .nav-link, - .twbs .navbar-dark .navbar-nav .nav-link.active { - color: #fff; } - .twbs .navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(255, 255, 255, 0.1); } - .twbs .navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - .twbs .navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.55); } - .twbs .navbar-dark .navbar-text a, - .twbs .navbar-dark .navbar-text a:hover, - .twbs .navbar-dark .navbar-text a:focus { - color: #fff; } - .twbs .list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; } - .twbs .list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; } - .twbs .list-group-item-action:hover, .twbs .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .twbs .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } - .twbs .list-group-item { - position: relative; - display: block; - padding: 0.5rem 1rem; - text-decoration: none; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .twbs .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .twbs .list-group-item.disabled, .twbs .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .twbs .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .twbs .list-group-item + .twbs .list-group-item { - border-top-width: 0; } - .twbs .list-group-item + .twbs .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } - .twbs .list-group-horizontal { - flex-direction: row; } - .twbs .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } - @media (min-width: 576px) { - .twbs .list-group-horizontal-sm { - flex-direction: row; } - .twbs .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 768px) { - .twbs .list-group-horizontal-md { - flex-direction: row; } - .twbs .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 992px) { - .twbs .list-group-horizontal-lg { - flex-direction: row; } - .twbs .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 1200px) { - .twbs .list-group-horizontal-xl { - flex-direction: row; } - .twbs .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 1400px) { - .twbs .list-group-horizontal-xxl { - flex-direction: row; } - .twbs .list-group-horizontal-xxl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - .twbs .list-group-flush { - border-radius: 0; } - .twbs .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .twbs .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } - .twbs .list-group-item-primary { - color: #084298; - background-color: #cfe2ff; } - .twbs .list-group-item-primary.list-group-item-action:hover, .twbs .list-group-item-primary.list-group-item-action:focus { - color: #084298; - background-color: #bacbe6; } - .twbs .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #084298; - border-color: #084298; } - .twbs .list-group-item-secondary { - color: #41464b; - background-color: #e2e3e5; } - .twbs .list-group-item-secondary.list-group-item-action:hover, .twbs .list-group-item-secondary.list-group-item-action:focus { - color: #41464b; - background-color: #cbccce; } - .twbs .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #41464b; - border-color: #41464b; } - .twbs .list-group-item-success { - color: #0f5132; - background-color: #d1e7dd; } - .twbs .list-group-item-success.list-group-item-action:hover, .twbs .list-group-item-success.list-group-item-action:focus { - color: #0f5132; - background-color: #bcd0c7; } - .twbs .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #0f5132; - border-color: #0f5132; } - .twbs .list-group-item-info { - color: #055160; - background-color: #cff4fc; } - .twbs .list-group-item-info.list-group-item-action:hover, .twbs .list-group-item-info.list-group-item-action:focus { - color: #055160; - background-color: #badce3; } - .twbs .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #055160; - border-color: #055160; } - .twbs .list-group-item-warning { - color: #664d03; - background-color: #fff3cd; } - .twbs .list-group-item-warning.list-group-item-action:hover, .twbs .list-group-item-warning.list-group-item-action:focus { - color: #664d03; - background-color: #e6dbb9; } - .twbs .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #664d03; - border-color: #664d03; } - .twbs .list-group-item-danger { - color: #842029; - background-color: #f8d7da; } - .twbs .list-group-item-danger.list-group-item-action:hover, .twbs .list-group-item-danger.list-group-item-action:focus { - color: #842029; - background-color: #dfc2c4; } - .twbs .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #842029; - border-color: #842029; } - .twbs .list-group-item-light { - color: #636464; - background-color: #fefefe; } - .twbs .list-group-item-light.list-group-item-action:hover, .twbs .list-group-item-light.list-group-item-action:focus { - color: #636464; - background-color: #e5e5e5; } - .twbs .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #636464; - border-color: #636464; } - .twbs .list-group-item-dark { - color: #141619; - background-color: #d3d3d4; } - .twbs .list-group-item-dark.list-group-item-action:hover, .twbs .list-group-item-dark.list-group-item-action:focus { - color: #141619; - background-color: #bebebf; } - .twbs .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #141619; - border-color: #141619; } - .twbs .popover { - position: absolute; - top: 0; - left: 0 /* rtl:ignore */; - z-index: 1060; - display: block; - max-width: 276px; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .twbs .popover .popover-arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; } - .twbs .popover .popover-arrow::before, .twbs .popover .popover-arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; } - .twbs .bs-popover-top, .twbs .bs-popover-auto[data-popper-placement^="top"] { - margin-bottom: 0.5rem !important; } - .twbs .bs-popover-top > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow { - bottom: calc(-0.5rem - 1px); } - .twbs .bs-popover-top > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-top > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - .twbs .bs-popover-end, .twbs .bs-popover-auto[data-popper-placement^="right"] { - margin-left: 0.5rem !important; } - .twbs .bs-popover-end > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .twbs .bs-popover-end > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-end > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - .twbs .bs-popover-bottom, .twbs .bs-popover-auto[data-popper-placement^="bottom"] { - margin-top: 0.5rem !important; } - .twbs .bs-popover-bottom > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow { - top: calc(-0.5rem - 1px); } - .twbs .bs-popover-bottom > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-bottom > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - .twbs .bs-popover-bottom .popover-header::before, .twbs .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f0f0f0; } - .twbs .bs-popover-start, .twbs .bs-popover-auto[data-popper-placement^="left"] { - margin-right: 0.5rem !important; } - .twbs .bs-popover-start > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .twbs .bs-popover-start > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-start > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } - .twbs .popover-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f0f0f0; - border-bottom: 1px solid #d8d8d8; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .twbs .popover-header:empty { - display: none; } - .twbs .popover-body { - padding: 1rem 1rem; - color: #212529; } - -@keyframes spinner-border { - to { - transform: rotate(360deg) /* rtl:ignore */; } } - .twbs .spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: 0.75s linear infinite spinner-border; } - .twbs .spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; } - -@keyframes spinner-grow { - 0% { - transform: scale(0); } - 50% { - opacity: 1; - transform: none; } } - .twbs .spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: 0.75s linear infinite spinner-grow; } - .twbs .spinner-grow-sm { - width: 1rem; - height: 1rem; } - @media (prefers-reduced-motion: reduce) { - .twbs .spinner-border, - .twbs .spinner-grow { - animation-duration: 1.5s; } } - .twbs .tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; } - .twbs .tooltip.show { - opacity: 0.9; } - .twbs .tooltip .tooltip-arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .twbs .tooltip .tooltip-arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; } - .twbs .bs-tooltip-top, .twbs .bs-tooltip-auto[data-popper-placement^="top"] { - padding: 0.4rem 0; } - .twbs .bs-tooltip-top .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow { - bottom: 0; } - .twbs .bs-tooltip-top .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before { - top: -1px; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - .twbs .bs-tooltip-end, .twbs .bs-tooltip-auto[data-popper-placement^="right"] { - padding: 0 0.4rem; } - .twbs .bs-tooltip-end .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .twbs .bs-tooltip-end .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before { - right: -1px; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - .twbs .bs-tooltip-bottom, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] { - padding: 0.4rem 0; } - .twbs .bs-tooltip-bottom .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow { - top: 0; } - .twbs .bs-tooltip-bottom .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before { - bottom: -1px; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - .twbs .bs-tooltip-start, .twbs .bs-tooltip-auto[data-popper-placement^="left"] { - padding: 0 0.4rem; } - .twbs .bs-tooltip-start .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .twbs .bs-tooltip-start .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before { - left: -1px; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } - .twbs .tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } diff --git a/docs/_static/css/badge_only.css b/docs/_static/css/badge_only.css deleted file mode 100644 index e380325bc..000000000 --- a/docs/_static/css/badge_only.css +++ /dev/null @@ -1 +0,0 @@ -.fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#FontAwesome) format("svg")}.fa:before{font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1}.fa:before,a .fa{text-decoration:inherit}.fa:before,a .fa,li .fa{display:inline-block}li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before,.icon-book:before{content:"\f02d"}.fa-caret-down:before,.icon-caret-down:before{content:"\f0d7"}.fa-caret-up:before,.icon-caret-up:before{content:"\f0d8"}.fa-caret-left:before,.icon-caret-left:before{content:"\f0d9"}.fa-caret-right:before,.icon-caret-right:before{content:"\f0da"}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60}.rst-versions .rst-current-version:after{clear:both;content:"";display:block}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}} \ No newline at end of file diff --git a/docs/_static/css/bootstrap.css b/docs/_static/css/bootstrap.css deleted file mode 100644 index d1c0f1bf7..000000000 --- a/docs/_static/css/bootstrap.css +++ /dev/null @@ -1,3262 +0,0 @@ -.twbs { - /* rtl:raw: -[type="tel"], -[type="url"], -[type="email"], -[type="number"] { - direction: ltr; -} -*/ } - .twbs .accordion-button { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1rem 1.25rem; - font-size: 1rem; - color: #212529; - background-color: transparent; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0; - overflow-anchor: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .twbs .accordion-button { - transition: none; } } - .twbs .accordion-button.collapsed { - border-bottom-width: 0; } - .twbs .accordion-button:not(.collapsed) { - color: #2573a7; - background-color: #eaf2f8; } - .twbs .accordion-button:not(.collapsed)::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232573a7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); - transform: rotate(180deg); } - .twbs .accordion-button::after { - flex-shrink: 0; - width: 1.25rem; - height: 1.25rem; - margin-left: auto; - content: ""; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-size: 1.25rem; - transition: transform 0.2s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .accordion-button::after { - transition: none; } } - .twbs .accordion-button:hover { - z-index: 2; } - .twbs .accordion-button:focus { - z-index: 3; - border-color: #94c0dc; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .accordion-header { - margin-bottom: 0; } - .twbs .accordion-item:first-of-type .accordion-button { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .twbs .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-width: 1px; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .twbs .accordion-item:last-of-type .accordion-collapse { - border-bottom-width: 1px; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .twbs .accordion-collapse { - border: solid rgba(0, 0, 0, 0.125); - border-width: 0 1px; } - .twbs .accordion-body { - padding: 1rem 1.25rem; } - .twbs .accordion-flush .accordion-button { - border-right: 0; - border-left: 0; - border-radius: 0; } - .twbs .accordion-flush .accordion-collapse { - border-width: 0; } - .twbs .accordion-flush .accordion-item:first-of-type .accordion-button { - border-top-width: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .accordion-flush .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-width: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .twbs .btn { - display: inline-block; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - vertical-align: middle; - cursor: pointer; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .btn { - transition: none; } } - .twbs .btn:hover { - color: #212529; } - .btn-check:focus + .twbs .btn, .twbs .btn:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .btn:disabled, .twbs .btn.disabled, - fieldset:disabled .twbs .btn { - pointer-events: none; - opacity: 0.65; } - .twbs .btn-primary { - color: #000; - background-color: #2980b9; - border-color: #2980b9; } - .twbs .btn-primary:hover { - color: #000; - background-color: #4993c4; - border-color: #3e8dc0; } - .btn-check:focus + .twbs .btn-primary, .twbs .btn-primary:focus { - color: #000; - background-color: #4993c4; - border-color: #3e8dc0; - box-shadow: 0 0 0 0.25rem rgba(35, 109, 157, 0.5); } - .btn-check:checked + .twbs .btn-primary, - .btn-check:active + .twbs .btn-primary, .twbs .btn-primary:active, .twbs .btn-primary.active, - .show > .twbs .btn-primary.dropdown-toggle { - color: #000; - background-color: #5499c7; - border-color: #3e8dc0; } - .btn-check:checked + .twbs .btn-primary:focus, - .btn-check:active + .twbs .btn-primary:focus, .twbs .btn-primary:active:focus, .twbs .btn-primary.active:focus, - .show > .twbs .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(35, 109, 157, 0.5); } - .twbs .btn-primary:disabled, .twbs .btn-primary.disabled { - color: #000; - background-color: #2980b9; - border-color: #2980b9; } - .twbs .btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .twbs .btn-secondary:hover { - color: #fff; - background-color: #5c636a; - border-color: #565e64; } - .btn-check:focus + .twbs .btn-secondary, .twbs .btn-secondary:focus { - color: #fff; - background-color: #5c636a; - border-color: #565e64; - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .btn-check:checked + .twbs .btn-secondary, - .btn-check:active + .twbs .btn-secondary, .twbs .btn-secondary:active, .twbs .btn-secondary.active, - .show > .twbs .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #565e64; - border-color: #51585e; } - .btn-check:checked + .twbs .btn-secondary:focus, - .btn-check:active + .twbs .btn-secondary:focus, .twbs .btn-secondary:active:focus, .twbs .btn-secondary.active:focus, - .show > .twbs .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .twbs .btn-secondary:disabled, .twbs .btn-secondary.disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .twbs .btn-success { - color: #fff; - background-color: #198754; - border-color: #198754; } - .twbs .btn-success:hover { - color: #fff; - background-color: #157347; - border-color: #146c43; } - .btn-check:focus + .twbs .btn-success, .twbs .btn-success:focus { - color: #fff; - background-color: #157347; - border-color: #146c43; - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .btn-check:checked + .twbs .btn-success, - .btn-check:active + .twbs .btn-success, .twbs .btn-success:active, .twbs .btn-success.active, - .show > .twbs .btn-success.dropdown-toggle { - color: #fff; - background-color: #146c43; - border-color: #13653f; } - .btn-check:checked + .twbs .btn-success:focus, - .btn-check:active + .twbs .btn-success:focus, .twbs .btn-success:active:focus, .twbs .btn-success.active:focus, - .show > .twbs .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .twbs .btn-success:disabled, .twbs .btn-success.disabled { - color: #fff; - background-color: #198754; - border-color: #198754; } - .twbs .btn-info { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-info:hover { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; } - .btn-check:focus + .twbs .btn-info, .twbs .btn-info:focus { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .btn-check:checked + .twbs .btn-info, - .btn-check:active + .twbs .btn-info, .twbs .btn-info:active, .twbs .btn-info.active, - .show > .twbs .btn-info.dropdown-toggle { - color: #000; - background-color: #3dd5f3; - border-color: #25cff2; } - .btn-check:checked + .twbs .btn-info:focus, - .btn-check:active + .twbs .btn-info:focus, .twbs .btn-info:active:focus, .twbs .btn-info.active:focus, - .show > .twbs .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .twbs .btn-info:disabled, .twbs .btn-info.disabled { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-warning { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .twbs .btn-warning:hover { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; } - .btn-check:focus + .twbs .btn-warning, .twbs .btn-warning:focus { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .btn-check:checked + .twbs .btn-warning, - .btn-check:active + .twbs .btn-warning, .twbs .btn-warning:active, .twbs .btn-warning.active, - .show > .twbs .btn-warning.dropdown-toggle { - color: #000; - background-color: #ffcd39; - border-color: #ffc720; } - .btn-check:checked + .twbs .btn-warning:focus, - .btn-check:active + .twbs .btn-warning:focus, .twbs .btn-warning:active:focus, .twbs .btn-warning.active:focus, - .show > .twbs .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .twbs .btn-warning:disabled, .twbs .btn-warning.disabled { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .twbs .btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .twbs .btn-danger:hover { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; } - .btn-check:focus + .twbs .btn-danger, .twbs .btn-danger:focus { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .btn-check:checked + .twbs .btn-danger, - .btn-check:active + .twbs .btn-danger, .twbs .btn-danger:active, .twbs .btn-danger.active, - .show > .twbs .btn-danger.dropdown-toggle { - color: #fff; - background-color: #b02a37; - border-color: #a52834; } - .btn-check:checked + .twbs .btn-danger:focus, - .btn-check:active + .twbs .btn-danger:focus, .twbs .btn-danger:active:focus, .twbs .btn-danger.active:focus, - .show > .twbs .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .twbs .btn-danger:disabled, .twbs .btn-danger.disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .twbs .btn-light { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-light:hover { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:focus + .twbs .btn-light, .twbs .btn-light:focus { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .btn-check:checked + .twbs .btn-light, - .btn-check:active + .twbs .btn-light, .twbs .btn-light:active, .twbs .btn-light.active, - .show > .twbs .btn-light.dropdown-toggle { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:checked + .twbs .btn-light:focus, - .btn-check:active + .twbs .btn-light:focus, .twbs .btn-light:active:focus, .twbs .btn-light.active:focus, - .show > .twbs .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .twbs .btn-light:disabled, .twbs .btn-light.disabled { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-dark { - color: #fff; - background-color: #212529; - border-color: #212529; } - .twbs .btn-dark:hover { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; } - .btn-check:focus + .twbs .btn-dark, .twbs .btn-dark:focus { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .btn-check:checked + .twbs .btn-dark, - .btn-check:active + .twbs .btn-dark, .twbs .btn-dark:active, .twbs .btn-dark.active, - .show > .twbs .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1a1e21; - border-color: #191c1f; } - .btn-check:checked + .twbs .btn-dark:focus, - .btn-check:active + .twbs .btn-dark:focus, .twbs .btn-dark:active:focus, .twbs .btn-dark.active:focus, - .show > .twbs .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .twbs .btn-dark:disabled, .twbs .btn-dark.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; } - .twbs .btn-outline-primary { - color: #2980b9; - border-color: #2980b9; } - .twbs .btn-outline-primary:hover { - color: #000; - background-color: #2980b9; - border-color: #2980b9; } - .btn-check:focus + .twbs .btn-outline-primary, .twbs .btn-outline-primary:focus { - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.5); } - .btn-check:checked + .twbs .btn-outline-primary, - .btn-check:active + .twbs .btn-outline-primary, .twbs .btn-outline-primary:active, .twbs .btn-outline-primary.active, .twbs .btn-outline-primary.dropdown-toggle.show { - color: #000; - background-color: #2980b9; - border-color: #2980b9; } - .btn-check:checked + .twbs .btn-outline-primary:focus, - .btn-check:active + .twbs .btn-outline-primary:focus, .twbs .btn-outline-primary:active:focus, .twbs .btn-outline-primary.active:focus, .twbs .btn-outline-primary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.5); } - .twbs .btn-outline-primary:disabled, .twbs .btn-outline-primary.disabled { - color: #2980b9; - background-color: transparent; } - .twbs .btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; } - .twbs .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:focus + .twbs .btn-outline-secondary, .twbs .btn-outline-secondary:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .btn-check:checked + .twbs .btn-outline-secondary, - .btn-check:active + .twbs .btn-outline-secondary, .twbs .btn-outline-secondary:active, .twbs .btn-outline-secondary.active, .twbs .btn-outline-secondary.dropdown-toggle.show { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:checked + .twbs .btn-outline-secondary:focus, - .btn-check:active + .twbs .btn-outline-secondary:focus, .twbs .btn-outline-secondary:active:focus, .twbs .btn-outline-secondary.active:focus, .twbs .btn-outline-secondary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .twbs .btn-outline-secondary:disabled, .twbs .btn-outline-secondary.disabled { - color: #6c757d; - background-color: transparent; } - .twbs .btn-outline-success { - color: #198754; - border-color: #198754; } - .twbs .btn-outline-success:hover { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:focus + .twbs .btn-outline-success, .twbs .btn-outline-success:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .btn-check:checked + .twbs .btn-outline-success, - .btn-check:active + .twbs .btn-outline-success, .twbs .btn-outline-success:active, .twbs .btn-outline-success.active, .twbs .btn-outline-success.dropdown-toggle.show { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:checked + .twbs .btn-outline-success:focus, - .btn-check:active + .twbs .btn-outline-success:focus, .twbs .btn-outline-success:active:focus, .twbs .btn-outline-success.active:focus, .twbs .btn-outline-success.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .twbs .btn-outline-success:disabled, .twbs .btn-outline-success.disabled { - color: #198754; - background-color: transparent; } - .twbs .btn-outline-info { - color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-outline-info:hover { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:focus + .twbs .btn-outline-info, .twbs .btn-outline-info:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .btn-check:checked + .twbs .btn-outline-info, - .btn-check:active + .twbs .btn-outline-info, .twbs .btn-outline-info:active, .twbs .btn-outline-info.active, .twbs .btn-outline-info.dropdown-toggle.show { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:checked + .twbs .btn-outline-info:focus, - .btn-check:active + .twbs .btn-outline-info:focus, .twbs .btn-outline-info:active:focus, .twbs .btn-outline-info.active:focus, .twbs .btn-outline-info.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .twbs .btn-outline-info:disabled, .twbs .btn-outline-info.disabled { - color: #0dcaf0; - background-color: transparent; } - .twbs .btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .twbs .btn-outline-warning:hover { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:focus + .twbs .btn-outline-warning, .twbs .btn-outline-warning:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .btn-check:checked + .twbs .btn-outline-warning, - .btn-check:active + .twbs .btn-outline-warning, .twbs .btn-outline-warning:active, .twbs .btn-outline-warning.active, .twbs .btn-outline-warning.dropdown-toggle.show { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:checked + .twbs .btn-outline-warning:focus, - .btn-check:active + .twbs .btn-outline-warning:focus, .twbs .btn-outline-warning:active:focus, .twbs .btn-outline-warning.active:focus, .twbs .btn-outline-warning.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .twbs .btn-outline-warning:disabled, .twbs .btn-outline-warning.disabled { - color: #ffc107; - background-color: transparent; } - .twbs .btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .twbs .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:focus + .twbs .btn-outline-danger, .twbs .btn-outline-danger:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .btn-check:checked + .twbs .btn-outline-danger, - .btn-check:active + .twbs .btn-outline-danger, .twbs .btn-outline-danger:active, .twbs .btn-outline-danger.active, .twbs .btn-outline-danger.dropdown-toggle.show { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:checked + .twbs .btn-outline-danger:focus, - .btn-check:active + .twbs .btn-outline-danger:focus, .twbs .btn-outline-danger:active:focus, .twbs .btn-outline-danger.active:focus, .twbs .btn-outline-danger.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .twbs .btn-outline-danger:disabled, .twbs .btn-outline-danger.disabled { - color: #dc3545; - background-color: transparent; } - .twbs .btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-outline-light:hover { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:focus + .twbs .btn-outline-light, .twbs .btn-outline-light:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .btn-check:checked + .twbs .btn-outline-light, - .btn-check:active + .twbs .btn-outline-light, .twbs .btn-outline-light:active, .twbs .btn-outline-light.active, .twbs .btn-outline-light.dropdown-toggle.show { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:checked + .twbs .btn-outline-light:focus, - .btn-check:active + .twbs .btn-outline-light:focus, .twbs .btn-outline-light:active:focus, .twbs .btn-outline-light.active:focus, .twbs .btn-outline-light.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .twbs .btn-outline-light:disabled, .twbs .btn-outline-light.disabled { - color: #f8f9fa; - background-color: transparent; } - .twbs .btn-outline-dark { - color: #212529; - border-color: #212529; } - .twbs .btn-outline-dark:hover { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:focus + .twbs .btn-outline-dark, .twbs .btn-outline-dark:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .btn-check:checked + .twbs .btn-outline-dark, - .btn-check:active + .twbs .btn-outline-dark, .twbs .btn-outline-dark:active, .twbs .btn-outline-dark.active, .twbs .btn-outline-dark.dropdown-toggle.show { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:checked + .twbs .btn-outline-dark:focus, - .btn-check:active + .twbs .btn-outline-dark:focus, .twbs .btn-outline-dark:active:focus, .twbs .btn-outline-dark.active:focus, .twbs .btn-outline-dark.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .twbs .btn-outline-dark:disabled, .twbs .btn-outline-dark.disabled { - color: #212529; - background-color: transparent; } - .twbs .btn-link { - font-weight: 400; - color: #2980b9; - text-decoration: none; } - .twbs .btn-link:hover { - color: #216694; } - .twbs .btn-link:disabled, .twbs .btn-link.disabled { - color: #6c757d; } - .twbs .btn-lg, .twbs .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .btn-sm, .twbs .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .btn-group, - .twbs .btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; } - .twbs .btn-group > .btn, - .twbs .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .twbs .btn-group > .btn-check:checked + .btn, - .twbs .btn-group > .btn-check:focus + .btn, - .twbs .btn-group > .btn:hover, - .twbs .btn-group > .btn:focus, - .twbs .btn-group > .btn:active, - .twbs .btn-group > .btn.active, - .twbs .btn-group-vertical > .btn-check:checked + .btn, - .twbs .btn-group-vertical > .btn-check:focus + .btn, - .twbs .btn-group-vertical > .btn:hover, - .twbs .btn-group-vertical > .btn:focus, - .twbs .btn-group-vertical > .btn:active, - .twbs .btn-group-vertical > .btn.active { - z-index: 1; } - .twbs .btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .twbs .btn-toolbar .input-group { - width: auto; } - .twbs .btn-group > .btn:not(:first-child), - .twbs .btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } - .twbs .btn-group > .btn:not(:last-child):not(.dropdown-toggle), - .twbs .btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .btn-group > .btn:nth-child(n + 3), - .twbs .btn-group > :not(.btn-check) + .btn, - .twbs .btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .twbs .dropdown-toggle-split::after, - .dropup .twbs .dropdown-toggle-split::after, - .dropend .twbs .dropdown-toggle-split::after { - margin-left: 0; } - .dropstart .twbs .dropdown-toggle-split::before { - margin-right: 0; } - .twbs .btn-sm + .dropdown-toggle-split, .twbs .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } - .twbs .btn-lg + .dropdown-toggle-split, .twbs .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } - .twbs .btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .twbs .btn-group-vertical > .btn, - .twbs .btn-group-vertical > .btn-group { - width: 100%; } - .twbs .btn-group-vertical > .btn:not(:first-child), - .twbs .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .twbs .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .twbs .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .twbs .btn-group-vertical > .btn ~ .btn, - .twbs .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .twbs .card > hr { - margin-right: 0; - margin-left: 0; } - .twbs .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .twbs .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .twbs .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .twbs .card > .card-header + .list-group, - .twbs .card > .list-group + .card-footer { - border-top: 0; } - .twbs .card-body { - flex: 1 1 auto; - padding: 1rem 1rem; } - .twbs .card-title { - margin-bottom: 0.5rem; } - .twbs .card-subtitle { - margin-top: -0.25rem; - margin-bottom: 0; } - .twbs .card-text:last-child { - margin-bottom: 0; } - .twbs .card-link:hover { - text-decoration: none; } - .twbs .card-link + .card-link { - margin-left: 1rem /* rtl:ignore */; } - .twbs .card-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } - .twbs .card-footer { - padding: 0.5rem 1rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } - .twbs .card-header-tabs { - margin-right: -0.5rem; - margin-bottom: -0.5rem; - margin-left: -0.5rem; - border-bottom: 0; } - .twbs .card-header-pills { - margin-right: -0.5rem; - margin-left: -0.5rem; } - .twbs .card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1rem; - border-radius: calc(0.25rem - 1px); } - .twbs .card-img, - .twbs .card-img-top, - .twbs .card-img-bottom { - width: 100%; } - .twbs .card-img, - .twbs .card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .twbs .card-img, - .twbs .card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .twbs .card-group > .card { - margin-bottom: 0.75rem; } - @media (min-width: 576px) { - .twbs .card-group { - display: flex; - flex-flow: row wrap; } - .twbs .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .twbs .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .twbs .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .card-group > .card:not(:last-child) .card-img-top, - .twbs .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .twbs .card-group > .card:not(:last-child) .card-img-bottom, - .twbs .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .twbs .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .card-group > .card:not(:first-child) .card-img-top, - .twbs .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .twbs .card-group > .card:not(:first-child) .card-img-bottom, - .twbs .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } - .twbs .dropup, - .twbs .dropend, - .twbs .dropdown, - .twbs .dropstart { - position: relative; } - .twbs .dropdown-toggle { - white-space: nowrap; } - .twbs .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .twbs .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - .twbs .dropdown-menu[style] { - right: auto !important; } - .twbs .dropdown-menu-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } - @media (min-width: 576px) { - .twbs .dropdown-menu-sm-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-sm-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 768px) { - .twbs .dropdown-menu-md-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-md-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 992px) { - .twbs .dropdown-menu-lg-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-lg-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 1200px) { - .twbs .dropdown-menu-xl-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-xl-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 1400px) { - .twbs .dropdown-menu-xxl-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-xxl-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - .twbs .dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } - .twbs .dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } - .twbs .dropup .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropend .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } - .twbs .dropend .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } - .twbs .dropend .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropend .dropdown-toggle::after { - vertical-align: 0; } - .twbs .dropstart .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } - .twbs .dropstart .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; } - .twbs .dropstart .dropdown-toggle::after { - display: none; } - .twbs .dropstart .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } - .twbs .dropstart .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropstart .dropdown-toggle::before { - vertical-align: 0; } - .twbs .dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid rgba(0, 0, 0, 0.15); } - .twbs .dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; } - .twbs .dropdown-item:hover, .twbs .dropdown-item:focus { - color: #1e2125; - background-color: #f8f9fa; } - .twbs .dropdown-item.active, .twbs .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #2980b9; } - .twbs .dropdown-item.disabled, .twbs .dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; } - .twbs .dropdown-menu.show { - display: block; } - .twbs .dropdown-header { - display: block; - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } - .twbs .dropdown-item-text { - display: block; - padding: 0.25rem 1rem; - color: #212529; } - .twbs .dropdown-menu-dark { - color: #dee2e6; - background-color: #343a40; - border-color: rgba(0, 0, 0, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item { - color: #dee2e6; } - .twbs .dropdown-menu-dark .dropdown-item:hover, .twbs .dropdown-menu-dark .dropdown-item:focus { - color: #fff; - background-color: rgba(255, 255, 255, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item.active, .twbs .dropdown-menu-dark .dropdown-item:active { - color: #fff; - background-color: #2980b9; } - .twbs .dropdown-menu-dark .dropdown-item.disabled, .twbs .dropdown-menu-dark .dropdown-item:disabled { - color: #adb5bd; } - .twbs .dropdown-menu-dark .dropdown-divider { - border-color: rgba(0, 0, 0, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item-text { - color: #dee2e6; } - .twbs .dropdown-menu-dark .dropdown-header { - color: #adb5bd; } - .twbs .row { - --bs-gutter-x: 1.5rem; - --bs-gutter-y: 0; - display: flex; - flex-wrap: wrap; - margin-top: calc(var(--bs-gutter-y) * -1); - margin-right: calc(var(--bs-gutter-x) / -2); - margin-left: calc(var(--bs-gutter-x) / -2); } - .twbs .row > * { - flex-shrink: 0; - width: 100%; - max-width: 100%; - padding-right: calc(var(--bs-gutter-x) / 2); - padding-left: calc(var(--bs-gutter-x) / 2); - margin-top: var(--bs-gutter-y); } - .twbs .col { - flex: 1 0 0%; } - .twbs .row-cols-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-1 { - margin-left: 8.33333%; } - .twbs .offset-2 { - margin-left: 16.66667%; } - .twbs .offset-3 { - margin-left: 25%; } - .twbs .offset-4 { - margin-left: 33.33333%; } - .twbs .offset-5 { - margin-left: 41.66667%; } - .twbs .offset-6 { - margin-left: 50%; } - .twbs .offset-7 { - margin-left: 58.33333%; } - .twbs .offset-8 { - margin-left: 66.66667%; } - .twbs .offset-9 { - margin-left: 75%; } - .twbs .offset-10 { - margin-left: 83.33333%; } - .twbs .offset-11 { - margin-left: 91.66667%; } - .twbs .g-0, - .twbs .gx-0 { - --bs-gutter-x: 0; } - .twbs .g-0, - .twbs .gy-0 { - --bs-gutter-y: 0; } - .twbs .g-1, - .twbs .gx-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-1, - .twbs .gy-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-2, - .twbs .gx-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-2, - .twbs .gy-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-3, - .twbs .gx-3 { - --bs-gutter-x: 1rem; } - .twbs .g-3, - .twbs .gy-3 { - --bs-gutter-y: 1rem; } - .twbs .g-4, - .twbs .gx-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-4, - .twbs .gy-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-5, - .twbs .gx-5 { - --bs-gutter-x: 3rem; } - .twbs .g-5, - .twbs .gy-5 { - --bs-gutter-y: 3rem; } - @media (min-width: 576px) { - .twbs .col-sm { - flex: 1 0 0%; } - .twbs .row-cols-sm-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-sm-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-sm-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-sm-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-sm-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-sm-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-sm-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-sm-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-sm-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-sm-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-sm-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-sm-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-sm-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-sm-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-sm-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-sm-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-sm-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-sm-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-sm-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-sm-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-sm-0 { - margin-left: 0; } - .twbs .offset-sm-1 { - margin-left: 8.33333%; } - .twbs .offset-sm-2 { - margin-left: 16.66667%; } - .twbs .offset-sm-3 { - margin-left: 25%; } - .twbs .offset-sm-4 { - margin-left: 33.33333%; } - .twbs .offset-sm-5 { - margin-left: 41.66667%; } - .twbs .offset-sm-6 { - margin-left: 50%; } - .twbs .offset-sm-7 { - margin-left: 58.33333%; } - .twbs .offset-sm-8 { - margin-left: 66.66667%; } - .twbs .offset-sm-9 { - margin-left: 75%; } - .twbs .offset-sm-10 { - margin-left: 83.33333%; } - .twbs .offset-sm-11 { - margin-left: 91.66667%; } - .twbs .g-sm-0, - .twbs .gx-sm-0 { - --bs-gutter-x: 0; } - .twbs .g-sm-0, - .twbs .gy-sm-0 { - --bs-gutter-y: 0; } - .twbs .g-sm-1, - .twbs .gx-sm-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-sm-1, - .twbs .gy-sm-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-sm-2, - .twbs .gx-sm-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-sm-2, - .twbs .gy-sm-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-sm-3, - .twbs .gx-sm-3 { - --bs-gutter-x: 1rem; } - .twbs .g-sm-3, - .twbs .gy-sm-3 { - --bs-gutter-y: 1rem; } - .twbs .g-sm-4, - .twbs .gx-sm-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-sm-4, - .twbs .gy-sm-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-sm-5, - .twbs .gx-sm-5 { - --bs-gutter-x: 3rem; } - .twbs .g-sm-5, - .twbs .gy-sm-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 768px) { - .twbs .col-md { - flex: 1 0 0%; } - .twbs .row-cols-md-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-md-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-md-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-md-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-md-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-md-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-md-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-md-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-md-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-md-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-md-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-md-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-md-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-md-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-md-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-md-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-md-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-md-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-md-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-md-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-md-0 { - margin-left: 0; } - .twbs .offset-md-1 { - margin-left: 8.33333%; } - .twbs .offset-md-2 { - margin-left: 16.66667%; } - .twbs .offset-md-3 { - margin-left: 25%; } - .twbs .offset-md-4 { - margin-left: 33.33333%; } - .twbs .offset-md-5 { - margin-left: 41.66667%; } - .twbs .offset-md-6 { - margin-left: 50%; } - .twbs .offset-md-7 { - margin-left: 58.33333%; } - .twbs .offset-md-8 { - margin-left: 66.66667%; } - .twbs .offset-md-9 { - margin-left: 75%; } - .twbs .offset-md-10 { - margin-left: 83.33333%; } - .twbs .offset-md-11 { - margin-left: 91.66667%; } - .twbs .g-md-0, - .twbs .gx-md-0 { - --bs-gutter-x: 0; } - .twbs .g-md-0, - .twbs .gy-md-0 { - --bs-gutter-y: 0; } - .twbs .g-md-1, - .twbs .gx-md-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-md-1, - .twbs .gy-md-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-md-2, - .twbs .gx-md-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-md-2, - .twbs .gy-md-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-md-3, - .twbs .gx-md-3 { - --bs-gutter-x: 1rem; } - .twbs .g-md-3, - .twbs .gy-md-3 { - --bs-gutter-y: 1rem; } - .twbs .g-md-4, - .twbs .gx-md-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-md-4, - .twbs .gy-md-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-md-5, - .twbs .gx-md-5 { - --bs-gutter-x: 3rem; } - .twbs .g-md-5, - .twbs .gy-md-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 992px) { - .twbs .col-lg { - flex: 1 0 0%; } - .twbs .row-cols-lg-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-lg-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-lg-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-lg-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-lg-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-lg-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-lg-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-lg-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-lg-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-lg-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-lg-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-lg-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-lg-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-lg-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-lg-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-lg-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-lg-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-lg-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-lg-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-lg-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-lg-0 { - margin-left: 0; } - .twbs .offset-lg-1 { - margin-left: 8.33333%; } - .twbs .offset-lg-2 { - margin-left: 16.66667%; } - .twbs .offset-lg-3 { - margin-left: 25%; } - .twbs .offset-lg-4 { - margin-left: 33.33333%; } - .twbs .offset-lg-5 { - margin-left: 41.66667%; } - .twbs .offset-lg-6 { - margin-left: 50%; } - .twbs .offset-lg-7 { - margin-left: 58.33333%; } - .twbs .offset-lg-8 { - margin-left: 66.66667%; } - .twbs .offset-lg-9 { - margin-left: 75%; } - .twbs .offset-lg-10 { - margin-left: 83.33333%; } - .twbs .offset-lg-11 { - margin-left: 91.66667%; } - .twbs .g-lg-0, - .twbs .gx-lg-0 { - --bs-gutter-x: 0; } - .twbs .g-lg-0, - .twbs .gy-lg-0 { - --bs-gutter-y: 0; } - .twbs .g-lg-1, - .twbs .gx-lg-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-lg-1, - .twbs .gy-lg-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-lg-2, - .twbs .gx-lg-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-lg-2, - .twbs .gy-lg-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-lg-3, - .twbs .gx-lg-3 { - --bs-gutter-x: 1rem; } - .twbs .g-lg-3, - .twbs .gy-lg-3 { - --bs-gutter-y: 1rem; } - .twbs .g-lg-4, - .twbs .gx-lg-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-lg-4, - .twbs .gy-lg-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-lg-5, - .twbs .gx-lg-5 { - --bs-gutter-x: 3rem; } - .twbs .g-lg-5, - .twbs .gy-lg-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 1200px) { - .twbs .col-xl { - flex: 1 0 0%; } - .twbs .row-cols-xl-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-xl-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-xl-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-xl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-xl-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-xl-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-xl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xl-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-xl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-xl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xl-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-xl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-xl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-xl-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-xl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-xl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-xl-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-xl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-xl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-xl-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-xl-0 { - margin-left: 0; } - .twbs .offset-xl-1 { - margin-left: 8.33333%; } - .twbs .offset-xl-2 { - margin-left: 16.66667%; } - .twbs .offset-xl-3 { - margin-left: 25%; } - .twbs .offset-xl-4 { - margin-left: 33.33333%; } - .twbs .offset-xl-5 { - margin-left: 41.66667%; } - .twbs .offset-xl-6 { - margin-left: 50%; } - .twbs .offset-xl-7 { - margin-left: 58.33333%; } - .twbs .offset-xl-8 { - margin-left: 66.66667%; } - .twbs .offset-xl-9 { - margin-left: 75%; } - .twbs .offset-xl-10 { - margin-left: 83.33333%; } - .twbs .offset-xl-11 { - margin-left: 91.66667%; } - .twbs .g-xl-0, - .twbs .gx-xl-0 { - --bs-gutter-x: 0; } - .twbs .g-xl-0, - .twbs .gy-xl-0 { - --bs-gutter-y: 0; } - .twbs .g-xl-1, - .twbs .gx-xl-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-xl-1, - .twbs .gy-xl-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-xl-2, - .twbs .gx-xl-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-xl-2, - .twbs .gy-xl-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-xl-3, - .twbs .gx-xl-3 { - --bs-gutter-x: 1rem; } - .twbs .g-xl-3, - .twbs .gy-xl-3 { - --bs-gutter-y: 1rem; } - .twbs .g-xl-4, - .twbs .gx-xl-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-xl-4, - .twbs .gy-xl-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-xl-5, - .twbs .gx-xl-5 { - --bs-gutter-x: 3rem; } - .twbs .g-xl-5, - .twbs .gy-xl-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 1400px) { - .twbs .col-xxl { - flex: 1 0 0%; } - .twbs .row-cols-xxl-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-xxl-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-xxl-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-xxl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-xxl-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-xxl-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-xxl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xxl-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-xxl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-xxl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xxl-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-xxl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-xxl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-xxl-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-xxl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-xxl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-xxl-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-xxl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-xxl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-xxl-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-xxl-0 { - margin-left: 0; } - .twbs .offset-xxl-1 { - margin-left: 8.33333%; } - .twbs .offset-xxl-2 { - margin-left: 16.66667%; } - .twbs .offset-xxl-3 { - margin-left: 25%; } - .twbs .offset-xxl-4 { - margin-left: 33.33333%; } - .twbs .offset-xxl-5 { - margin-left: 41.66667%; } - .twbs .offset-xxl-6 { - margin-left: 50%; } - .twbs .offset-xxl-7 { - margin-left: 58.33333%; } - .twbs .offset-xxl-8 { - margin-left: 66.66667%; } - .twbs .offset-xxl-9 { - margin-left: 75%; } - .twbs .offset-xxl-10 { - margin-left: 83.33333%; } - .twbs .offset-xxl-11 { - margin-left: 91.66667%; } - .twbs .g-xxl-0, - .twbs .gx-xxl-0 { - --bs-gutter-x: 0; } - .twbs .g-xxl-0, - .twbs .gy-xxl-0 { - --bs-gutter-y: 0; } - .twbs .g-xxl-1, - .twbs .gx-xxl-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-xxl-1, - .twbs .gy-xxl-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-xxl-2, - .twbs .gx-xxl-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-xxl-2, - .twbs .gy-xxl-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-xxl-3, - .twbs .gx-xxl-3 { - --bs-gutter-x: 1rem; } - .twbs .g-xxl-3, - .twbs .gy-xxl-3 { - --bs-gutter-y: 1rem; } - .twbs .g-xxl-4, - .twbs .gx-xxl-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-xxl-4, - .twbs .gy-xxl-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-xxl-5, - .twbs .gx-xxl-5 { - --bs-gutter-x: 3rem; } - .twbs .g-xxl-5, - .twbs .gy-xxl-5 { - --bs-gutter-y: 3rem; } } - .twbs :root { - --bs-blue: #2980b9; - --bs-indigo: #6610f2; - --bs-purple: #6f42c1; - --bs-pink: #e05858; - --bs-red: #dc3545; - --bs-orange: #fd7e14; - --bs-yellow: #ffc107; - --bs-green: #198754; - --bs-teal: #20c997; - --bs-cyan: #0dcaf0; - --bs-white: #fff; - --bs-gray: #6c757d; - --bs-gray-dark: #343a40; - --bs-primary: #2980b9; - --bs-secondary: #6c757d; - --bs-success: #198754; - --bs-info: #0dcaf0; - --bs-warning: #ffc107; - --bs-danger: #dc3545; - --bs-light: #f8f9fa; - --bs-dark: #212529; - --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); } - .twbs *, - .twbs *::before, - .twbs *::after { - box-sizing: border-box; } - @media (prefers-reduced-motion: no-preference) { - .twbs :root { - scroll-behavior: smooth; } } - .twbs body { - margin: 0; - font-family: var(--bs-font-sans-serif); - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - .twbs [tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; } - .twbs hr { - margin: 1rem 0; - color: inherit; - background-color: currentColor; - border: 0; - opacity: 0.25; } - .twbs hr:not([size]) { - height: 1px; } - .twbs h1, .twbs .h1, .twbs h2, .twbs .h2, .twbs h3, .twbs .h3, .twbs h4, .twbs .h4, .twbs h5, .twbs .h5, .twbs h6, .twbs .h6 { - margin-top: 0; - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } - .twbs h1, .twbs .h1 { - font-size: calc(1.375rem + 1.5vw); } - @media (min-width: 1200px) { - .twbs h1, .twbs .h1 { - font-size: 2.5rem; } } - .twbs h2, .twbs .h2 { - font-size: calc(1.325rem + 0.9vw); } - @media (min-width: 1200px) { - .twbs h2, .twbs .h2 { - font-size: 2rem; } } - .twbs h3, .twbs .h3 { - font-size: calc(1.3rem + 0.6vw); } - @media (min-width: 1200px) { - .twbs h3, .twbs .h3 { - font-size: 1.75rem; } } - .twbs h4, .twbs .h4 { - font-size: calc(1.275rem + 0.3vw); } - @media (min-width: 1200px) { - .twbs h4, .twbs .h4 { - font-size: 1.5rem; } } - .twbs h5, .twbs .h5 { - font-size: 1.25rem; } - .twbs h6, .twbs .h6 { - font-size: 1rem; } - .twbs p { - margin-top: 0; - margin-bottom: 1rem; } - .twbs abbr[title], - .twbs abbr[data-bs-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - text-decoration-skip-ink: none; } - .twbs address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } - .twbs ol, - .twbs ul { - padding-left: 2rem; } - .twbs ol, - .twbs ul, - .twbs dl { - margin-top: 0; - margin-bottom: 1rem; } - .twbs ol ol, - .twbs ul ul, - .twbs ol ul, - .twbs ul ol { - margin-bottom: 0; } - .twbs dt { - font-weight: 700; } - .twbs dd { - margin-bottom: .5rem; - margin-left: 0; } - .twbs blockquote { - margin: 0 0 1rem; } - .twbs b, - .twbs strong { - font-weight: bolder; } - .twbs small, .twbs .small { - font-size: 0.875em; } - .twbs mark, .twbs .mark { - padding: 0.2em; - background-color: #fcf8e3; } - .twbs sub, - .twbs sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; } - .twbs sub { - bottom: -.25em; } - .twbs sup { - top: -.5em; } - .twbs a { - color: #2980b9; - text-decoration: none; } - .twbs a:hover { - color: #216694; } - .twbs a:not([href]):not([class]), .twbs a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; } - .twbs pre, - .twbs code, - .twbs kbd, - .twbs samp { - font-family: var(--bs-font-monospace); - font-size: 1em; - direction: ltr /* rtl:ignore */; - unicode-bidi: bidi-override; } - .twbs pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - font-size: 0.875em; } - .twbs pre code { - font-size: inherit; - color: inherit; - word-break: normal; } - .twbs code { - font-size: 0.875em; - color: #e05858; - word-wrap: break-word; } - a > .twbs code { - color: inherit; } - .twbs kbd { - padding: 0.2rem 0.4rem; - font-size: 0.875em; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - .twbs kbd kbd { - padding: 0; - font-size: 1em; - font-weight: 700; } - .twbs figure { - margin: 0 0 1rem; } - .twbs img, - .twbs svg { - vertical-align: middle; } - .twbs table { - caption-side: bottom; - border-collapse: collapse; } - .twbs caption { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: #6c757d; - text-align: left; } - .twbs th { - text-align: inherit; - text-align: -webkit-match-parent; } - .twbs thead, - .twbs tbody, - .twbs tfoot, - .twbs tr, - .twbs td, - .twbs th { - border-color: inherit; - border-style: solid; - border-width: 0; } - .twbs label { - display: inline-block; } - .twbs button { - border-radius: 0; } - .twbs button:focus { - outline: dotted 1px; - outline: -webkit-focus-ring-color auto 5px; } - .twbs input, - .twbs button, - .twbs select, - .twbs optgroup, - .twbs textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } - .twbs button, - .twbs select { - text-transform: none; } - .twbs [role="button"] { - cursor: pointer; } - .twbs select { - word-wrap: normal; } - .twbs [list]::-webkit-calendar-picker-indicator { - display: none; } - .twbs button, - .twbs [type="button"], - .twbs [type="reset"], - .twbs [type="submit"] { - -webkit-appearance: button; } - .twbs button:not(:disabled), - .twbs [type="button"]:not(:disabled), - .twbs [type="reset"]:not(:disabled), - .twbs [type="submit"]:not(:disabled) { - cursor: pointer; } - .twbs ::-moz-focus-inner { - padding: 0; - border-style: none; } - .twbs textarea { - resize: vertical; } - .twbs fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - .twbs legend { - float: left; - width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: calc(1.275rem + 0.3vw); - line-height: inherit; } - @media (min-width: 1200px) { - .twbs legend { - font-size: 1.5rem; } } - .twbs legend + * { - clear: left; } - .twbs ::-webkit-datetime-edit-fields-wrapper, - .twbs ::-webkit-datetime-edit-text, - .twbs ::-webkit-datetime-edit-minute, - .twbs ::-webkit-datetime-edit-hour-field, - .twbs ::-webkit-datetime-edit-day-field, - .twbs ::-webkit-datetime-edit-month-field, - .twbs ::-webkit-datetime-edit-year-field { - padding: 0; } - .twbs ::-webkit-inner-spin-button { - height: auto; } - .twbs [type="search"] { - outline-offset: -2px; - -webkit-appearance: textfield; } - .twbs ::-webkit-search-decoration { - -webkit-appearance: none; } - .twbs ::-webkit-color-swatch-wrapper { - padding: 0; } - .twbs ::file-selector-button { - font: inherit; } - .twbs ::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } - .twbs output { - display: inline-block; } - .twbs iframe { - border: 0; } - .twbs summary { - display: list-item; - cursor: pointer; } - .twbs progress { - vertical-align: baseline; } - .twbs [hidden] { - display: none !important; } - .twbs .lead { - font-size: 1.25rem; - font-weight: 300; } - .twbs .display-1 { - font-size: calc(1.625rem + 4.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-1 { - font-size: 5rem; } } - .twbs .display-2 { - font-size: calc(1.575rem + 3.9vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-2 { - font-size: 4.5rem; } } - .twbs .display-3 { - font-size: calc(1.525rem + 3.3vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-3 { - font-size: 4rem; } } - .twbs .display-4 { - font-size: calc(1.475rem + 2.7vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-4 { - font-size: 3.5rem; } } - .twbs .display-5 { - font-size: calc(1.425rem + 2.1vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-5 { - font-size: 3rem; } } - .twbs .display-6 { - font-size: calc(1.375rem + 1.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-6 { - font-size: 2.5rem; } } - .twbs .list-unstyled { - padding-left: 0; - list-style: none; } - .twbs .list-inline { - padding-left: 0; - list-style: none; } - .twbs .list-inline-item { - display: inline-block; } - .twbs .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } - .twbs .initialism { - font-size: 0.875em; - text-transform: uppercase; } - .twbs .blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; } - .twbs .blockquote > :last-child { - margin-bottom: 0; } - .twbs .blockquote-footer { - margin-top: -1rem; - margin-bottom: 1rem; - font-size: 0.875em; - color: #6c757d; } - .twbs .blockquote-footer::before { - content: "\2014\00A0"; } - .twbs .form-label { - margin-bottom: 0.5rem; } - .twbs .col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } - .twbs .col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; } - .twbs .col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; } - .twbs .form-text { - margin-top: 0.25rem; - font-size: 0.875em; - color: #6c757d; } - .twbs .form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - appearance: none; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control { - transition: none; } } - .twbs .form-control[type="file"] { - overflow: hidden; } - .twbs .form-control[type="file"]:not(:disabled):not([readonly]) { - cursor: pointer; } - .twbs .form-control:focus { - color: #212529; - background-color: #fff; - border-color: #94c0dc; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-control::-webkit-date-and-time-value { - height: 1.5em; } - .twbs .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .twbs .form-control:disabled, .twbs .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - .twbs .form-control::file-selector-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control::file-selector-button { - transition: none; } } - .twbs .form-control:hover:not(:disabled):not([readonly])::file-selector-button { - background-color: #dde0e3; } - .twbs .form-control::-webkit-file-upload-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control::-webkit-file-upload-button { - transition: none; } } - .twbs .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { - background-color: #dde0e3; } - .twbs .form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .twbs .form-control-plaintext.form-control-sm, .twbs .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } - .twbs .form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .form-control-sm::file-selector-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .twbs .form-control-sm::-webkit-file-upload-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .twbs .form-control-lg { - min-height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .form-control-lg::file-selector-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .twbs .form-control-lg::-webkit-file-upload-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .twbs textarea.form-control { - min-height: calc(1.5em + 0.75rem + 2px); } - .twbs textarea.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); } - .twbs textarea.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); } - .twbs .form-control-color { - max-width: 3rem; - height: auto; - padding: 0.375rem; } - .twbs .form-control-color:not(:disabled):not([readonly]) { - cursor: pointer; } - .twbs .form-control-color::-moz-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .twbs .form-control-color::-webkit-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .twbs .form-select { - display: block; - width: 100%; - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - vertical-align: middle; - background-color: #fff; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right 0.75rem center; - background-size: 16px 12px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - appearance: none; } - .twbs .form-select:focus { - border-color: #94c0dc; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-select[multiple], .twbs .form-select[size]:not([size="1"]) { - padding-right: 0.75rem; - background-image: none; } - .twbs .form-select:disabled { - color: #6c757d; - background-color: #e9ecef; } - .twbs .form-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #212529; } - .twbs .form-select-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; } - .twbs .form-select-lg { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; } - .twbs .form-check { - display: block; - min-height: 1.5rem; - padding-left: 1.5em; - margin-bottom: 0.125rem; } - .twbs .form-check .form-check-input { - float: left; - margin-left: -1.5em; } - .twbs .form-check-input { - width: 1em; - height: 1em; - margin-top: 0.25em; - vertical-align: top; - background-color: #fff; - background-repeat: no-repeat; - background-position: center; - background-size: contain; - border: 1px solid rgba(0, 0, 0, 0.25); - appearance: none; - color-adjust: exact; - transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-check-input { - transition: none; } } - .twbs .form-check-input[type="checkbox"] { - border-radius: 0.25em; } - .twbs .form-check-input[type="radio"] { - border-radius: 50%; } - .twbs .form-check-input:active { - filter: brightness(90%); } - .twbs .form-check-input:focus { - border-color: #94c0dc; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-check-input:checked { - background-color: #2980b9; - border-color: #2980b9; } - .twbs .form-check-input:checked[type="checkbox"] { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); } - .twbs .form-check-input:checked[type="radio"] { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); } - .twbs .form-check-input[type="checkbox"]:indeterminate { - background-color: #2980b9; - border-color: #2980b9; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); } - .twbs .form-check-input:disabled { - pointer-events: none; - filter: none; - opacity: 0.5; } - .twbs .form-check-input[disabled] ~ .form-check-label, .twbs .form-check-input:disabled ~ .form-check-label { - opacity: 0.5; } - .twbs .form-switch { - padding-left: 2.5em; } - .twbs .form-switch .form-check-input { - width: 2em; - margin-left: -2.5em; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); - background-position: left center; - border-radius: 2em; } - .twbs .form-switch .form-check-input:focus { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2394c0dc'/%3e%3c/svg%3e"); } - .twbs .form-switch .form-check-input:checked { - background-position: right center; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } - .twbs .form-check-inline { - display: inline-block; - margin-right: 1rem; } - .twbs .btn-check { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - .twbs .btn-check[disabled] + .btn, .twbs .btn-check:disabled + .btn { - pointer-events: none; - filter: none; - opacity: 0.65; } - .twbs .form-range { - width: 100%; - height: 1.5rem; - padding: 0; - background-color: transparent; - appearance: none; } - .twbs .form-range:focus { - outline: none; } - .twbs .form-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(41, 128, 185, 0.25); } - .twbs .form-range::-moz-focus-outer { - border: 0; } - .twbs .form-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #2980b9; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-range::-webkit-slider-thumb { - transition: none; } } - .twbs .form-range::-webkit-slider-thumb:active { - background-color: #bfd9ea; } - .twbs .form-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .twbs .form-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #2980b9; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-range::-moz-range-thumb { - transition: none; } } - .twbs .form-range::-moz-range-thumb:active { - background-color: #bfd9ea; } - .twbs .form-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .twbs .form-range:disabled { - pointer-events: none; } - .twbs .form-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .twbs .form-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - .twbs .form-floating { - position: relative; } - .twbs .form-floating > .form-control, - .twbs .form-floating > .form-select { - height: calc(3.5rem + 2px); - padding: 1rem 0.75rem; } - .twbs .form-floating > label { - position: absolute; - top: 0; - left: 0; - height: 100%; - padding: 1rem 0.75rem; - pointer-events: none; - border: 1px solid transparent; - transform-origin: 0 0; - transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-floating > label { - transition: none; } } - .twbs .form-floating > .form-control::placeholder { - color: transparent; } - .twbs .form-floating > .form-control:focus, .twbs .form-floating > .form-control:not(:placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-control:-webkit-autofill { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-select { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-control:focus ~ label, - .twbs .form-floating > .form-control:not(:placeholder-shown) ~ label, - .twbs .form-floating > .form-select ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .twbs .form-floating > .form-control:-webkit-autofill ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .twbs .input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; } - .twbs .input-group > .form-control, - .twbs .input-group > .form-select { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; } - .twbs .input-group > .form-control:focus, - .twbs .input-group > .form-select:focus { - z-index: 3; } - .twbs .input-group .btn { - position: relative; - z-index: 2; } - .twbs .input-group .btn:focus { - z-index: 3; } - .twbs .input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .twbs .input-group-lg > .form-control, - .twbs .input-group-lg > .form-select, - .twbs .input-group-lg > .input-group-text, - .twbs .input-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .input-group-sm > .form-control, - .twbs .input-group-sm > .form-select, - .twbs .input-group-sm > .input-group-text, - .twbs .input-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .input-group-lg > .form-select, - .twbs .input-group-sm > .form-select { - padding-right: 1.75rem; } - .twbs .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), - .twbs .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), - .twbs .input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { - margin-left: -1px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #198754; } - .twbs .valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(25, 135, 84, 0.9); - border-radius: 0.25rem; } - .was-validated .twbs:valid ~ .valid-feedback, - .was-validated .twbs:valid ~ .valid-tooltip, .twbs.is-valid ~ .valid-feedback, - .twbs.is-valid ~ .valid-tooltip { - display: block; } - .was-validated .twbs .form-control:valid, .twbs .form-control.is-valid { - border-color: #198754; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-control:valid:focus, .twbs .form-control.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs textarea.form-control:valid, .twbs textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - .was-validated .twbs .form-select:valid, .twbs .form-select.is-valid { - border-color: #198754; - padding-right: calc(0.75em + 2.3125rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-position: right 0.75rem center, center right 1.75rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-select:valid:focus, .twbs .form-select.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs .form-check-input:valid, .twbs .form-check-input.is-valid { - border-color: #198754; } - .was-validated .twbs .form-check-input:valid:checked, .twbs .form-check-input.is-valid:checked { - background-color: #198754; } - .was-validated .twbs .form-check-input:valid:focus, .twbs .form-check-input.is-valid:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs .form-check-input:valid ~ .form-check-label, .twbs .form-check-input.is-valid ~ .form-check-label { - color: #198754; } - .twbs .form-check-inline .form-check-input ~ .valid-feedback { - margin-left: .5em; } - .twbs .invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #dc3545; } - .twbs .invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - .was-validated .twbs:invalid ~ .invalid-feedback, - .was-validated .twbs:invalid ~ .invalid-tooltip, .twbs.is-invalid ~ .invalid-feedback, - .twbs.is-invalid ~ .invalid-tooltip { - display: block; } - .was-validated .twbs .form-control:invalid, .twbs .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-control:invalid:focus, .twbs .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs textarea.form-control:invalid, .twbs textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - .was-validated .twbs .form-select:invalid, .twbs .form-select.is-invalid { - border-color: #dc3545; - padding-right: calc(0.75em + 2.3125rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-position: right 0.75rem center, center right 1.75rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-select:invalid:focus, .twbs .form-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs .form-check-input:invalid, .twbs .form-check-input.is-invalid { - border-color: #dc3545; } - .was-validated .twbs .form-check-input:invalid:checked, .twbs .form-check-input.is-invalid:checked { - background-color: #dc3545; } - .was-validated .twbs .form-check-input:invalid:focus, .twbs .form-check-input.is-invalid:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs .form-check-input:invalid ~ .form-check-label, .twbs .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } - .twbs .form-check-inline .form-check-input ~ .invalid-feedback { - margin-left: .5em; } - .twbs .nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .twbs .nav-link { - display: block; - padding: 0.5rem 1rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .nav-link { - transition: none; } } - .twbs .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } - .twbs .nav-tabs { - border-bottom: 1px solid #dee2e6; } - .twbs .nav-tabs .nav-link { - margin-bottom: -1px; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .twbs .nav-tabs .nav-link:hover, .twbs .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; } - .twbs .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .twbs .nav-tabs .nav-link.active, - .twbs .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .twbs .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .nav-pills .nav-link { - border-radius: 0.25rem; } - .twbs .nav-pills .nav-link.active, - .twbs .nav-pills .show > .nav-link { - color: #fff; - background-color: #2980b9; } - .twbs .nav-fill > .nav-link, - .twbs .nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } - .twbs .nav-justified > .nav-link, - .twbs .nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } - .twbs .tab-content > .tab-pane { - display: none; } - .twbs .tab-content > .active { - display: block; } - .twbs .navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .twbs .navbar > .container, - .twbs .navbar > .container-fluid, .twbs .navbar > .container-sm, .twbs .navbar > .container-md, .twbs .navbar > .container-lg, .twbs .navbar > .container-xl, .twbs .navbar > .container-xxl { - display: flex; - flex-wrap: inherit; - align-items: center; - justify-content: space-between; } - .twbs .navbar-brand { - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - white-space: nowrap; } - .twbs .navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .twbs .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .twbs .navbar-nav .dropdown-menu { - position: static; } - .twbs .navbar-text { - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .twbs .navbar-collapse { - align-items: center; - width: 100%; } - .twbs .navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; - transition: box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .navbar-toggler { - transition: none; } } - .twbs .navbar-toggler:hover { - text-decoration: none; } - .twbs .navbar-toggler:focus { - text-decoration: none; - outline: 0; - box-shadow: 0 0 0 0.25rem; } - .twbs .navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - background-repeat: no-repeat; - background-position: center; - background-size: 100%; } - @media (min-width: 576px) { - .twbs .navbar-expand-sm { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-sm .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-sm .navbar-toggler { - display: none; } } - @media (min-width: 768px) { - .twbs .navbar-expand-md { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-md .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-md .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-md .navbar-toggler { - display: none; } } - @media (min-width: 992px) { - .twbs .navbar-expand-lg { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-lg .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-lg .navbar-toggler { - display: none; } } - @media (min-width: 1200px) { - .twbs .navbar-expand-xl { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-xl .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-xl .navbar-toggler { - display: none; } } - @media (min-width: 1400px) { - .twbs .navbar-expand-xxl { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-xxl .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-xxl .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-xxl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-xxl .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-xxl .navbar-toggler { - display: none; } } - .twbs .navbar-expand { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand .navbar-toggler { - display: none; } - .twbs .navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-brand:hover, .twbs .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.55); } - .twbs .navbar-light .navbar-nav .nav-link:hover, .twbs .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .twbs .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } - .twbs .navbar-light .navbar-nav .show > .nav-link, - .twbs .navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.55); - border-color: rgba(0, 0, 0, 0.1); } - .twbs .navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - .twbs .navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.55); } - .twbs .navbar-light .navbar-text a, - .twbs .navbar-light .navbar-text a:hover, - .twbs .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-dark .navbar-brand { - color: #fff; } - .twbs .navbar-dark .navbar-brand:hover, .twbs .navbar-dark .navbar-brand:focus { - color: #fff; } - .twbs .navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.55); } - .twbs .navbar-dark .navbar-nav .nav-link:hover, .twbs .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .twbs .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } - .twbs .navbar-dark .navbar-nav .show > .nav-link, - .twbs .navbar-dark .navbar-nav .nav-link.active { - color: #fff; } - .twbs .navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(255, 255, 255, 0.1); } - .twbs .navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - .twbs .navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.55); } - .twbs .navbar-dark .navbar-text a, - .twbs .navbar-dark .navbar-text a:hover, - .twbs .navbar-dark .navbar-text a:focus { - color: #fff; } - .twbs .list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; } - .twbs .list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; } - .twbs .list-group-item-action:hover, .twbs .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .twbs .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } - .twbs .list-group-item { - position: relative; - display: block; - padding: 0.5rem 1rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .twbs .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .twbs .list-group-item.disabled, .twbs .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .twbs .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #2980b9; - border-color: #2980b9; } - .twbs .list-group-item + .twbs .list-group-item { - border-top-width: 0; } - .twbs .list-group-item + .twbs .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } - .twbs .list-group-horizontal { - flex-direction: row; } - .twbs .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } - @media (min-width: 576px) { - .twbs .list-group-horizontal-sm { - flex-direction: row; } - .twbs .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 768px) { - .twbs .list-group-horizontal-md { - flex-direction: row; } - .twbs .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 992px) { - .twbs .list-group-horizontal-lg { - flex-direction: row; } - .twbs .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 1200px) { - .twbs .list-group-horizontal-xl { - flex-direction: row; } - .twbs .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 1400px) { - .twbs .list-group-horizontal-xxl { - flex-direction: row; } - .twbs .list-group-horizontal-xxl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - .twbs .list-group-flush { - border-radius: 0; } - .twbs .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .twbs .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } - .twbs .list-group-item-primary { - color: #194d6f; - background-color: #d4e6f1; } - .twbs .list-group-item-primary.list-group-item-action:hover, .twbs .list-group-item-primary.list-group-item-action:focus { - color: #194d6f; - background-color: #bfcfd9; } - .twbs .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #194d6f; - border-color: #194d6f; } - .twbs .list-group-item-secondary { - color: #41464b; - background-color: #e2e3e5; } - .twbs .list-group-item-secondary.list-group-item-action:hover, .twbs .list-group-item-secondary.list-group-item-action:focus { - color: #41464b; - background-color: #cbccce; } - .twbs .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #41464b; - border-color: #41464b; } - .twbs .list-group-item-success { - color: #0f5132; - background-color: #d1e7dd; } - .twbs .list-group-item-success.list-group-item-action:hover, .twbs .list-group-item-success.list-group-item-action:focus { - color: #0f5132; - background-color: #bcd0c7; } - .twbs .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #0f5132; - border-color: #0f5132; } - .twbs .list-group-item-info { - color: #055160; - background-color: #cff4fc; } - .twbs .list-group-item-info.list-group-item-action:hover, .twbs .list-group-item-info.list-group-item-action:focus { - color: #055160; - background-color: #badce3; } - .twbs .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #055160; - border-color: #055160; } - .twbs .list-group-item-warning { - color: #664d03; - background-color: #fff3cd; } - .twbs .list-group-item-warning.list-group-item-action:hover, .twbs .list-group-item-warning.list-group-item-action:focus { - color: #664d03; - background-color: #e6dbb9; } - .twbs .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #664d03; - border-color: #664d03; } - .twbs .list-group-item-danger { - color: #842029; - background-color: #f8d7da; } - .twbs .list-group-item-danger.list-group-item-action:hover, .twbs .list-group-item-danger.list-group-item-action:focus { - color: #842029; - background-color: #dfc2c4; } - .twbs .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #842029; - border-color: #842029; } - .twbs .list-group-item-light { - color: #636464; - background-color: #fefefe; } - .twbs .list-group-item-light.list-group-item-action:hover, .twbs .list-group-item-light.list-group-item-action:focus { - color: #636464; - background-color: #e5e5e5; } - .twbs .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #636464; - border-color: #636464; } - .twbs .list-group-item-dark { - color: #141619; - background-color: #d3d3d4; } - .twbs .list-group-item-dark.list-group-item-action:hover, .twbs .list-group-item-dark.list-group-item-action:focus { - color: #141619; - background-color: #bebebf; } - .twbs .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #141619; - border-color: #141619; } - .twbs .popover { - position: absolute; - top: 0; - left: 0 /* rtl:ignore */; - z-index: 1060; - display: block; - max-width: 276px; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .twbs .popover .popover-arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; } - .twbs .popover .popover-arrow::before, .twbs .popover .popover-arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; } - .twbs .bs-popover-top, .twbs .bs-popover-auto[data-popper-placement^="top"] { - margin-bottom: 0.5rem !important; } - .twbs .bs-popover-top > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow { - bottom: calc(-0.5rem - 1px); } - .twbs .bs-popover-top > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-top > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - .twbs .bs-popover-end, .twbs .bs-popover-auto[data-popper-placement^="right"] { - margin-left: 0.5rem !important; } - .twbs .bs-popover-end > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .twbs .bs-popover-end > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-end > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - .twbs .bs-popover-bottom, .twbs .bs-popover-auto[data-popper-placement^="bottom"] { - margin-top: 0.5rem !important; } - .twbs .bs-popover-bottom > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow { - top: calc(-0.5rem - 1px); } - .twbs .bs-popover-bottom > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-bottom > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - .twbs .bs-popover-bottom .popover-header::before, .twbs .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f0f0f0; } - .twbs .bs-popover-start, .twbs .bs-popover-auto[data-popper-placement^="left"] { - margin-right: 0.5rem !important; } - .twbs .bs-popover-start > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .twbs .bs-popover-start > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-start > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } - .twbs .popover-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f0f0f0; - border-bottom: 1px solid #d8d8d8; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .twbs .popover-header:empty { - display: none; } - .twbs .popover-body { - padding: 1rem 1rem; - color: #212529; } - -@keyframes spinner-border { - to { - transform: rotate(360deg) /* rtl:ignore */; } } - .twbs .spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: 0.75s linear infinite spinner-border; } - .twbs .spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; } - -@keyframes spinner-grow { - 0% { - transform: scale(0); } - 50% { - opacity: 1; - transform: none; } } - .twbs .spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: 0.75s linear infinite spinner-grow; } - .twbs .spinner-grow-sm { - width: 1rem; - height: 1rem; } - @media (prefers-reduced-motion: reduce) { - .twbs .spinner-border, - .twbs .spinner-grow { - animation-duration: 1.5s; } } - .twbs .tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; } - .twbs .tooltip.show { - opacity: 0.9; } - .twbs .tooltip .tooltip-arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .twbs .tooltip .tooltip-arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; } - .twbs .bs-tooltip-top, .twbs .bs-tooltip-auto[data-popper-placement^="top"] { - padding: 0.4rem 0; } - .twbs .bs-tooltip-top .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow { - bottom: 0; } - .twbs .bs-tooltip-top .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before { - top: -1px; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - .twbs .bs-tooltip-end, .twbs .bs-tooltip-auto[data-popper-placement^="right"] { - padding: 0 0.4rem; } - .twbs .bs-tooltip-end .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .twbs .bs-tooltip-end .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before { - right: -1px; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - .twbs .bs-tooltip-bottom, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] { - padding: 0.4rem 0; } - .twbs .bs-tooltip-bottom .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow { - top: 0; } - .twbs .bs-tooltip-bottom .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before { - bottom: -1px; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - .twbs .bs-tooltip-start, .twbs .bs-tooltip-auto[data-popper-placement^="left"] { - padding: 0 0.4rem; } - .twbs .bs-tooltip-start .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .twbs .bs-tooltip-start .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before { - left: -1px; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } - .twbs .tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } diff --git a/docs/_static/css/bootstrap2.css b/docs/_static/css/bootstrap2.css deleted file mode 100644 index b55daf218..000000000 --- a/docs/_static/css/bootstrap2.css +++ /dev/null @@ -1,3267 +0,0 @@ -.twbs { - /* rtl:raw: -[type="tel"], -[type="url"], -[type="email"], -[type="number"] { - direction: ltr; -} -*/ } - .twbs .accordion-button { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1rem 1.25rem; - font-size: 1rem; - color: #212529; - background-color: transparent; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0; - overflow-anchor: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; } - @media (prefers-reduced-motion: reduce) { - .twbs .accordion-button { - transition: none; } } - .twbs .accordion-button.collapsed { - border-bottom-width: 0; } - .twbs .accordion-button:not(.collapsed) { - color: #0c63e4; - background-color: #e7f1ff; } - .twbs .accordion-button:not(.collapsed)::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); - transform: rotate(180deg); } - .twbs .accordion-button::after { - flex-shrink: 0; - width: 1.25rem; - height: 1.25rem; - margin-left: auto; - content: ""; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-size: 1.25rem; - transition: transform 0.2s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .accordion-button::after { - transition: none; } } - .twbs .accordion-button:hover { - z-index: 2; } - .twbs .accordion-button:focus { - z-index: 3; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .accordion-header { - margin-bottom: 0; } - .twbs .accordion-item:first-of-type .accordion-button { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .twbs .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-width: 1px; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .twbs .accordion-item:last-of-type .accordion-collapse { - border-bottom-width: 1px; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .twbs .accordion-collapse { - border: solid rgba(0, 0, 0, 0.125); - border-width: 0 1px; } - .twbs .accordion-body { - padding: 1rem 1.25rem; } - .twbs .accordion-flush .accordion-button { - border-right: 0; - border-left: 0; - border-radius: 0; } - .twbs .accordion-flush .accordion-collapse { - border-width: 0; } - .twbs .accordion-flush .accordion-item:first-of-type .accordion-button { - border-top-width: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .accordion-flush .accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-width: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .twbs .btn { - display: inline-block; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - text-decoration: none; - vertical-align: middle; - cursor: pointer; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .btn { - transition: none; } } - .twbs .btn:hover { - color: #212529; } - .btn-check:focus + .twbs .btn, .twbs .btn:focus { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .btn:disabled, .twbs .btn.disabled, - fieldset:disabled .twbs .btn { - pointer-events: none; - opacity: 0.65; } - .twbs .btn-primary { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .twbs .btn-primary:hover { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; } - .btn-check:focus + .twbs .btn-primary, .twbs .btn-primary:focus { - color: #fff; - background-color: #0b5ed7; - border-color: #0a58ca; - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); } - .btn-check:checked + .twbs .btn-primary, - .btn-check:active + .twbs .btn-primary, .twbs .btn-primary:active, .twbs .btn-primary.active, - .show > .twbs .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0a58ca; - border-color: #0a53be; } - .btn-check:checked + .twbs .btn-primary:focus, - .btn-check:active + .twbs .btn-primary:focus, .twbs .btn-primary:active:focus, .twbs .btn-primary.active:focus, - .show > .twbs .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); } - .twbs .btn-primary:disabled, .twbs .btn-primary.disabled { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .twbs .btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .twbs .btn-secondary:hover { - color: #fff; - background-color: #5c636a; - border-color: #565e64; } - .btn-check:focus + .twbs .btn-secondary, .twbs .btn-secondary:focus { - color: #fff; - background-color: #5c636a; - border-color: #565e64; - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .btn-check:checked + .twbs .btn-secondary, - .btn-check:active + .twbs .btn-secondary, .twbs .btn-secondary:active, .twbs .btn-secondary.active, - .show > .twbs .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #565e64; - border-color: #51585e; } - .btn-check:checked + .twbs .btn-secondary:focus, - .btn-check:active + .twbs .btn-secondary:focus, .twbs .btn-secondary:active:focus, .twbs .btn-secondary.active:focus, - .show > .twbs .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); } - .twbs .btn-secondary:disabled, .twbs .btn-secondary.disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .twbs .btn-success { - color: #fff; - background-color: #198754; - border-color: #198754; } - .twbs .btn-success:hover { - color: #fff; - background-color: #157347; - border-color: #146c43; } - .btn-check:focus + .twbs .btn-success, .twbs .btn-success:focus { - color: #fff; - background-color: #157347; - border-color: #146c43; - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .btn-check:checked + .twbs .btn-success, - .btn-check:active + .twbs .btn-success, .twbs .btn-success:active, .twbs .btn-success.active, - .show > .twbs .btn-success.dropdown-toggle { - color: #fff; - background-color: #146c43; - border-color: #13653f; } - .btn-check:checked + .twbs .btn-success:focus, - .btn-check:active + .twbs .btn-success:focus, .twbs .btn-success:active:focus, .twbs .btn-success.active:focus, - .show > .twbs .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); } - .twbs .btn-success:disabled, .twbs .btn-success.disabled { - color: #fff; - background-color: #198754; - border-color: #198754; } - .twbs .btn-info { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-info:hover { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; } - .btn-check:focus + .twbs .btn-info, .twbs .btn-info:focus { - color: #000; - background-color: #31d2f2; - border-color: #25cff2; - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .btn-check:checked + .twbs .btn-info, - .btn-check:active + .twbs .btn-info, .twbs .btn-info:active, .twbs .btn-info.active, - .show > .twbs .btn-info.dropdown-toggle { - color: #000; - background-color: #3dd5f3; - border-color: #25cff2; } - .btn-check:checked + .twbs .btn-info:focus, - .btn-check:active + .twbs .btn-info:focus, .twbs .btn-info:active:focus, .twbs .btn-info.active:focus, - .show > .twbs .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); } - .twbs .btn-info:disabled, .twbs .btn-info.disabled { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-warning { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .twbs .btn-warning:hover { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; } - .btn-check:focus + .twbs .btn-warning, .twbs .btn-warning:focus { - color: #000; - background-color: #ffca2c; - border-color: #ffc720; - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .btn-check:checked + .twbs .btn-warning, - .btn-check:active + .twbs .btn-warning, .twbs .btn-warning:active, .twbs .btn-warning.active, - .show > .twbs .btn-warning.dropdown-toggle { - color: #000; - background-color: #ffcd39; - border-color: #ffc720; } - .btn-check:checked + .twbs .btn-warning:focus, - .btn-check:active + .twbs .btn-warning:focus, .twbs .btn-warning:active:focus, .twbs .btn-warning.active:focus, - .show > .twbs .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); } - .twbs .btn-warning:disabled, .twbs .btn-warning.disabled { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .twbs .btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .twbs .btn-danger:hover { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; } - .btn-check:focus + .twbs .btn-danger, .twbs .btn-danger:focus { - color: #fff; - background-color: #bb2d3b; - border-color: #b02a37; - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .btn-check:checked + .twbs .btn-danger, - .btn-check:active + .twbs .btn-danger, .twbs .btn-danger:active, .twbs .btn-danger.active, - .show > .twbs .btn-danger.dropdown-toggle { - color: #fff; - background-color: #b02a37; - border-color: #a52834; } - .btn-check:checked + .twbs .btn-danger:focus, - .btn-check:active + .twbs .btn-danger:focus, .twbs .btn-danger:active:focus, .twbs .btn-danger.active:focus, - .show > .twbs .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); } - .twbs .btn-danger:disabled, .twbs .btn-danger.disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .twbs .btn-light { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-light:hover { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:focus + .twbs .btn-light, .twbs .btn-light:focus { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .btn-check:checked + .twbs .btn-light, - .btn-check:active + .twbs .btn-light, .twbs .btn-light:active, .twbs .btn-light.active, - .show > .twbs .btn-light.dropdown-toggle { - color: #000; - background-color: #f9fafb; - border-color: #f9fafb; } - .btn-check:checked + .twbs .btn-light:focus, - .btn-check:active + .twbs .btn-light:focus, .twbs .btn-light:active:focus, .twbs .btn-light.active:focus, - .show > .twbs .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); } - .twbs .btn-light:disabled, .twbs .btn-light.disabled { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-dark { - color: #fff; - background-color: #212529; - border-color: #212529; } - .twbs .btn-dark:hover { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; } - .btn-check:focus + .twbs .btn-dark, .twbs .btn-dark:focus { - color: #fff; - background-color: #1c1f23; - border-color: #1a1e21; - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .btn-check:checked + .twbs .btn-dark, - .btn-check:active + .twbs .btn-dark, .twbs .btn-dark:active, .twbs .btn-dark.active, - .show > .twbs .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1a1e21; - border-color: #191c1f; } - .btn-check:checked + .twbs .btn-dark:focus, - .btn-check:active + .twbs .btn-dark:focus, .twbs .btn-dark:active:focus, .twbs .btn-dark.active:focus, - .show > .twbs .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); } - .twbs .btn-dark:disabled, .twbs .btn-dark.disabled { - color: #fff; - background-color: #212529; - border-color: #212529; } - .twbs .btn-outline-primary { - color: #0d6efd; - border-color: #0d6efd; } - .twbs .btn-outline-primary:hover { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-check:focus + .twbs .btn-outline-primary, .twbs .btn-outline-primary:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); } - .btn-check:checked + .twbs .btn-outline-primary, - .btn-check:active + .twbs .btn-outline-primary, .twbs .btn-outline-primary:active, .twbs .btn-outline-primary.active, .twbs .btn-outline-primary.dropdown-toggle.show { - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .btn-check:checked + .twbs .btn-outline-primary:focus, - .btn-check:active + .twbs .btn-outline-primary:focus, .twbs .btn-outline-primary:active:focus, .twbs .btn-outline-primary.active:focus, .twbs .btn-outline-primary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); } - .twbs .btn-outline-primary:disabled, .twbs .btn-outline-primary.disabled { - color: #0d6efd; - background-color: transparent; } - .twbs .btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; } - .twbs .btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:focus + .twbs .btn-outline-secondary, .twbs .btn-outline-secondary:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .btn-check:checked + .twbs .btn-outline-secondary, - .btn-check:active + .twbs .btn-outline-secondary, .twbs .btn-outline-secondary:active, .twbs .btn-outline-secondary.active, .twbs .btn-outline-secondary.dropdown-toggle.show { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; } - .btn-check:checked + .twbs .btn-outline-secondary:focus, - .btn-check:active + .twbs .btn-outline-secondary:focus, .twbs .btn-outline-secondary:active:focus, .twbs .btn-outline-secondary.active:focus, .twbs .btn-outline-secondary.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); } - .twbs .btn-outline-secondary:disabled, .twbs .btn-outline-secondary.disabled { - color: #6c757d; - background-color: transparent; } - .twbs .btn-outline-success { - color: #198754; - border-color: #198754; } - .twbs .btn-outline-success:hover { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:focus + .twbs .btn-outline-success, .twbs .btn-outline-success:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .btn-check:checked + .twbs .btn-outline-success, - .btn-check:active + .twbs .btn-outline-success, .twbs .btn-outline-success:active, .twbs .btn-outline-success.active, .twbs .btn-outline-success.dropdown-toggle.show { - color: #fff; - background-color: #198754; - border-color: #198754; } - .btn-check:checked + .twbs .btn-outline-success:focus, - .btn-check:active + .twbs .btn-outline-success:focus, .twbs .btn-outline-success:active:focus, .twbs .btn-outline-success.active:focus, .twbs .btn-outline-success.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); } - .twbs .btn-outline-success:disabled, .twbs .btn-outline-success.disabled { - color: #198754; - background-color: transparent; } - .twbs .btn-outline-info { - color: #0dcaf0; - border-color: #0dcaf0; } - .twbs .btn-outline-info:hover { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:focus + .twbs .btn-outline-info, .twbs .btn-outline-info:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .btn-check:checked + .twbs .btn-outline-info, - .btn-check:active + .twbs .btn-outline-info, .twbs .btn-outline-info:active, .twbs .btn-outline-info.active, .twbs .btn-outline-info.dropdown-toggle.show { - color: #000; - background-color: #0dcaf0; - border-color: #0dcaf0; } - .btn-check:checked + .twbs .btn-outline-info:focus, - .btn-check:active + .twbs .btn-outline-info:focus, .twbs .btn-outline-info:active:focus, .twbs .btn-outline-info.active:focus, .twbs .btn-outline-info.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); } - .twbs .btn-outline-info:disabled, .twbs .btn-outline-info.disabled { - color: #0dcaf0; - background-color: transparent; } - .twbs .btn-outline-warning { - color: #ffc107; - border-color: #ffc107; } - .twbs .btn-outline-warning:hover { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:focus + .twbs .btn-outline-warning, .twbs .btn-outline-warning:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .btn-check:checked + .twbs .btn-outline-warning, - .btn-check:active + .twbs .btn-outline-warning, .twbs .btn-outline-warning:active, .twbs .btn-outline-warning.active, .twbs .btn-outline-warning.dropdown-toggle.show { - color: #000; - background-color: #ffc107; - border-color: #ffc107; } - .btn-check:checked + .twbs .btn-outline-warning:focus, - .btn-check:active + .twbs .btn-outline-warning:focus, .twbs .btn-outline-warning:active:focus, .twbs .btn-outline-warning.active:focus, .twbs .btn-outline-warning.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); } - .twbs .btn-outline-warning:disabled, .twbs .btn-outline-warning.disabled { - color: #ffc107; - background-color: transparent; } - .twbs .btn-outline-danger { - color: #dc3545; - border-color: #dc3545; } - .twbs .btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:focus + .twbs .btn-outline-danger, .twbs .btn-outline-danger:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .btn-check:checked + .twbs .btn-outline-danger, - .btn-check:active + .twbs .btn-outline-danger, .twbs .btn-outline-danger:active, .twbs .btn-outline-danger.active, .twbs .btn-outline-danger.dropdown-toggle.show { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; } - .btn-check:checked + .twbs .btn-outline-danger:focus, - .btn-check:active + .twbs .btn-outline-danger:focus, .twbs .btn-outline-danger:active:focus, .twbs .btn-outline-danger.active:focus, .twbs .btn-outline-danger.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); } - .twbs .btn-outline-danger:disabled, .twbs .btn-outline-danger.disabled { - color: #dc3545; - background-color: transparent; } - .twbs .btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; } - .twbs .btn-outline-light:hover { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:focus + .twbs .btn-outline-light, .twbs .btn-outline-light:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .btn-check:checked + .twbs .btn-outline-light, - .btn-check:active + .twbs .btn-outline-light, .twbs .btn-outline-light:active, .twbs .btn-outline-light.active, .twbs .btn-outline-light.dropdown-toggle.show { - color: #000; - background-color: #f8f9fa; - border-color: #f8f9fa; } - .btn-check:checked + .twbs .btn-outline-light:focus, - .btn-check:active + .twbs .btn-outline-light:focus, .twbs .btn-outline-light:active:focus, .twbs .btn-outline-light.active:focus, .twbs .btn-outline-light.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); } - .twbs .btn-outline-light:disabled, .twbs .btn-outline-light.disabled { - color: #f8f9fa; - background-color: transparent; } - .twbs .btn-outline-dark { - color: #212529; - border-color: #212529; } - .twbs .btn-outline-dark:hover { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:focus + .twbs .btn-outline-dark, .twbs .btn-outline-dark:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .btn-check:checked + .twbs .btn-outline-dark, - .btn-check:active + .twbs .btn-outline-dark, .twbs .btn-outline-dark:active, .twbs .btn-outline-dark.active, .twbs .btn-outline-dark.dropdown-toggle.show { - color: #fff; - background-color: #212529; - border-color: #212529; } - .btn-check:checked + .twbs .btn-outline-dark:focus, - .btn-check:active + .twbs .btn-outline-dark:focus, .twbs .btn-outline-dark:active:focus, .twbs .btn-outline-dark.active:focus, .twbs .btn-outline-dark.dropdown-toggle.show:focus { - box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); } - .twbs .btn-outline-dark:disabled, .twbs .btn-outline-dark.disabled { - color: #212529; - background-color: transparent; } - .twbs .btn-link { - font-weight: 400; - color: #0d6efd; - text-decoration: underline; } - .twbs .btn-link:hover { - color: #0a58ca; } - .twbs .btn-link:disabled, .twbs .btn-link.disabled { - color: #6c757d; } - .twbs .btn-lg, .twbs .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .btn-sm, .twbs .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .btn-group, - .twbs .btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; } - .twbs .btn-group > .btn, - .twbs .btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; } - .twbs .btn-group > .btn-check:checked + .btn, - .twbs .btn-group > .btn-check:focus + .btn, - .twbs .btn-group > .btn:hover, - .twbs .btn-group > .btn:focus, - .twbs .btn-group > .btn:active, - .twbs .btn-group > .btn.active, - .twbs .btn-group-vertical > .btn-check:checked + .btn, - .twbs .btn-group-vertical > .btn-check:focus + .btn, - .twbs .btn-group-vertical > .btn:hover, - .twbs .btn-group-vertical > .btn:focus, - .twbs .btn-group-vertical > .btn:active, - .twbs .btn-group-vertical > .btn.active { - z-index: 1; } - .twbs .btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .twbs .btn-toolbar .input-group { - width: auto; } - .twbs .btn-group > .btn:not(:first-child), - .twbs .btn-group > .btn-group:not(:first-child) { - margin-left: -1px; } - .twbs .btn-group > .btn:not(:last-child):not(.dropdown-toggle), - .twbs .btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .btn-group > .btn:nth-child(n + 3), - .twbs .btn-group > :not(.btn-check) + .btn, - .twbs .btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; } - .twbs .dropdown-toggle-split::after, - .dropup .twbs .dropdown-toggle-split::after, - .dropend .twbs .dropdown-toggle-split::after { - margin-left: 0; } - .dropstart .twbs .dropdown-toggle-split::before { - margin-right: 0; } - .twbs .btn-sm + .dropdown-toggle-split, .twbs .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; } - .twbs .btn-lg + .dropdown-toggle-split, .twbs .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; } - .twbs .btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; } - .twbs .btn-group-vertical > .btn, - .twbs .btn-group-vertical > .btn-group { - width: 100%; } - .twbs .btn-group-vertical > .btn:not(:first-child), - .twbs .btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; } - .twbs .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), - .twbs .btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - .twbs .btn-group-vertical > .btn ~ .btn, - .twbs .btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; } - .twbs .card > hr { - margin-right: 0; - margin-left: 0; } - .twbs .card > .list-group { - border-top: inherit; - border-bottom: inherit; } - .twbs .card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .twbs .card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .twbs .card > .card-header + .list-group, - .twbs .card > .list-group + .card-footer { - border-top: 0; } - .twbs .card-body { - flex: 1 1 auto; - padding: 1rem 1rem; } - .twbs .card-title { - margin-bottom: 0.5rem; } - .twbs .card-subtitle { - margin-top: -0.25rem; - margin-bottom: 0; } - .twbs .card-text:last-child { - margin-bottom: 0; } - .twbs .card-link:hover { - text-decoration: none; } - .twbs .card-link + .card-link { - margin-left: 1rem /* rtl:ignore */; } - .twbs .card-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } - .twbs .card-footer { - padding: 0.5rem 1rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } - .twbs .card-header-tabs { - margin-right: -0.5rem; - margin-bottom: -0.5rem; - margin-left: -0.5rem; - border-bottom: 0; } - .twbs .card-header-pills { - margin-right: -0.5rem; - margin-left: -0.5rem; } - .twbs .card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1rem; - border-radius: calc(0.25rem - 1px); } - .twbs .card-img, - .twbs .card-img-top, - .twbs .card-img-bottom { - width: 100%; } - .twbs .card-img, - .twbs .card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); } - .twbs .card-img, - .twbs .card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); } - .twbs .card-group > .card { - margin-bottom: 0.75rem; } - @media (min-width: 576px) { - .twbs .card-group { - display: flex; - flex-flow: row wrap; } - .twbs .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; } - .twbs .card-group > .card + .card { - margin-left: 0; - border-left: 0; } - .twbs .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .card-group > .card:not(:last-child) .card-img-top, - .twbs .card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; } - .twbs .card-group > .card:not(:last-child) .card-img-bottom, - .twbs .card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; } - .twbs .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .card-group > .card:not(:first-child) .card-img-top, - .twbs .card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; } - .twbs .card-group > .card:not(:first-child) .card-img-bottom, - .twbs .card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; } } - .twbs .dropup, - .twbs .dropend, - .twbs .dropdown, - .twbs .dropstart { - position: relative; } - .twbs .dropdown-toggle { - white-space: nowrap; } - .twbs .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; } - .twbs .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; } - .twbs .dropdown-menu[style] { - right: auto !important; } - .twbs .dropdown-menu-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } - @media (min-width: 576px) { - .twbs .dropdown-menu-sm-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-sm-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 768px) { - .twbs .dropdown-menu-md-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-md-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 992px) { - .twbs .dropdown-menu-lg-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-lg-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 1200px) { - .twbs .dropdown-menu-xl-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-xl-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - @media (min-width: 1400px) { - .twbs .dropdown-menu-xxl-start { - --bs-position: start; - right: auto /* rtl:ignore */; - left: 0 /* rtl:ignore */; } - .twbs .dropdown-menu-xxl-end { - --bs-position: end; - right: 0 /* rtl:ignore */; - left: auto /* rtl:ignore */; } } - .twbs .dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; } - .twbs .dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; } - .twbs .dropup .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropend .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; } - .twbs .dropend .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; } - .twbs .dropend .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropend .dropdown-toggle::after { - vertical-align: 0; } - .twbs .dropstart .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; } - .twbs .dropstart .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; } - .twbs .dropstart .dropdown-toggle::after { - display: none; } - .twbs .dropstart .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; } - .twbs .dropstart .dropdown-toggle:empty::after { - margin-left: 0; } - .twbs .dropstart .dropdown-toggle::before { - vertical-align: 0; } - .twbs .dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid rgba(0, 0, 0, 0.15); } - .twbs .dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - text-decoration: none; - white-space: nowrap; - background-color: transparent; - border: 0; } - .twbs .dropdown-item:hover, .twbs .dropdown-item:focus { - color: #1e2125; - background-color: #f8f9fa; } - .twbs .dropdown-item.active, .twbs .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #0d6efd; } - .twbs .dropdown-item.disabled, .twbs .dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; } - .twbs .dropdown-menu.show { - display: block; } - .twbs .dropdown-header { - display: block; - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; } - .twbs .dropdown-item-text { - display: block; - padding: 0.25rem 1rem; - color: #212529; } - .twbs .dropdown-menu-dark { - color: #dee2e6; - background-color: #343a40; - border-color: rgba(0, 0, 0, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item { - color: #dee2e6; } - .twbs .dropdown-menu-dark .dropdown-item:hover, .twbs .dropdown-menu-dark .dropdown-item:focus { - color: #fff; - background-color: rgba(255, 255, 255, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item.active, .twbs .dropdown-menu-dark .dropdown-item:active { - color: #fff; - background-color: #0d6efd; } - .twbs .dropdown-menu-dark .dropdown-item.disabled, .twbs .dropdown-menu-dark .dropdown-item:disabled { - color: #adb5bd; } - .twbs .dropdown-menu-dark .dropdown-divider { - border-color: rgba(0, 0, 0, 0.15); } - .twbs .dropdown-menu-dark .dropdown-item-text { - color: #dee2e6; } - .twbs .dropdown-menu-dark .dropdown-header { - color: #adb5bd; } - .twbs .row { - --bs-gutter-x: 1.5rem; - --bs-gutter-y: 0; - display: flex; - flex-wrap: wrap; - margin-top: calc(var(--bs-gutter-y) * -1); - margin-right: calc(var(--bs-gutter-x) / -2); - margin-left: calc(var(--bs-gutter-x) / -2); } - .twbs .row > * { - flex-shrink: 0; - width: 100%; - max-width: 100%; - padding-right: calc(var(--bs-gutter-x) / 2); - padding-left: calc(var(--bs-gutter-x) / 2); - margin-top: var(--bs-gutter-y); } - .twbs .col { - flex: 1 0 0%; } - .twbs .row-cols-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-1 { - margin-left: 8.33333%; } - .twbs .offset-2 { - margin-left: 16.66667%; } - .twbs .offset-3 { - margin-left: 25%; } - .twbs .offset-4 { - margin-left: 33.33333%; } - .twbs .offset-5 { - margin-left: 41.66667%; } - .twbs .offset-6 { - margin-left: 50%; } - .twbs .offset-7 { - margin-left: 58.33333%; } - .twbs .offset-8 { - margin-left: 66.66667%; } - .twbs .offset-9 { - margin-left: 75%; } - .twbs .offset-10 { - margin-left: 83.33333%; } - .twbs .offset-11 { - margin-left: 91.66667%; } - .twbs .g-0, - .twbs .gx-0 { - --bs-gutter-x: 0; } - .twbs .g-0, - .twbs .gy-0 { - --bs-gutter-y: 0; } - .twbs .g-1, - .twbs .gx-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-1, - .twbs .gy-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-2, - .twbs .gx-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-2, - .twbs .gy-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-3, - .twbs .gx-3 { - --bs-gutter-x: 1rem; } - .twbs .g-3, - .twbs .gy-3 { - --bs-gutter-y: 1rem; } - .twbs .g-4, - .twbs .gx-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-4, - .twbs .gy-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-5, - .twbs .gx-5 { - --bs-gutter-x: 3rem; } - .twbs .g-5, - .twbs .gy-5 { - --bs-gutter-y: 3rem; } - @media (min-width: 576px) { - .twbs .col-sm { - flex: 1 0 0%; } - .twbs .row-cols-sm-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-sm-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-sm-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-sm-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-sm-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-sm-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-sm-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-sm-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-sm-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-sm-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-sm-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-sm-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-sm-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-sm-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-sm-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-sm-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-sm-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-sm-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-sm-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-sm-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-sm-0 { - margin-left: 0; } - .twbs .offset-sm-1 { - margin-left: 8.33333%; } - .twbs .offset-sm-2 { - margin-left: 16.66667%; } - .twbs .offset-sm-3 { - margin-left: 25%; } - .twbs .offset-sm-4 { - margin-left: 33.33333%; } - .twbs .offset-sm-5 { - margin-left: 41.66667%; } - .twbs .offset-sm-6 { - margin-left: 50%; } - .twbs .offset-sm-7 { - margin-left: 58.33333%; } - .twbs .offset-sm-8 { - margin-left: 66.66667%; } - .twbs .offset-sm-9 { - margin-left: 75%; } - .twbs .offset-sm-10 { - margin-left: 83.33333%; } - .twbs .offset-sm-11 { - margin-left: 91.66667%; } - .twbs .g-sm-0, - .twbs .gx-sm-0 { - --bs-gutter-x: 0; } - .twbs .g-sm-0, - .twbs .gy-sm-0 { - --bs-gutter-y: 0; } - .twbs .g-sm-1, - .twbs .gx-sm-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-sm-1, - .twbs .gy-sm-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-sm-2, - .twbs .gx-sm-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-sm-2, - .twbs .gy-sm-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-sm-3, - .twbs .gx-sm-3 { - --bs-gutter-x: 1rem; } - .twbs .g-sm-3, - .twbs .gy-sm-3 { - --bs-gutter-y: 1rem; } - .twbs .g-sm-4, - .twbs .gx-sm-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-sm-4, - .twbs .gy-sm-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-sm-5, - .twbs .gx-sm-5 { - --bs-gutter-x: 3rem; } - .twbs .g-sm-5, - .twbs .gy-sm-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 768px) { - .twbs .col-md { - flex: 1 0 0%; } - .twbs .row-cols-md-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-md-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-md-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-md-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-md-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-md-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-md-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-md-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-md-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-md-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-md-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-md-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-md-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-md-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-md-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-md-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-md-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-md-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-md-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-md-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-md-0 { - margin-left: 0; } - .twbs .offset-md-1 { - margin-left: 8.33333%; } - .twbs .offset-md-2 { - margin-left: 16.66667%; } - .twbs .offset-md-3 { - margin-left: 25%; } - .twbs .offset-md-4 { - margin-left: 33.33333%; } - .twbs .offset-md-5 { - margin-left: 41.66667%; } - .twbs .offset-md-6 { - margin-left: 50%; } - .twbs .offset-md-7 { - margin-left: 58.33333%; } - .twbs .offset-md-8 { - margin-left: 66.66667%; } - .twbs .offset-md-9 { - margin-left: 75%; } - .twbs .offset-md-10 { - margin-left: 83.33333%; } - .twbs .offset-md-11 { - margin-left: 91.66667%; } - .twbs .g-md-0, - .twbs .gx-md-0 { - --bs-gutter-x: 0; } - .twbs .g-md-0, - .twbs .gy-md-0 { - --bs-gutter-y: 0; } - .twbs .g-md-1, - .twbs .gx-md-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-md-1, - .twbs .gy-md-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-md-2, - .twbs .gx-md-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-md-2, - .twbs .gy-md-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-md-3, - .twbs .gx-md-3 { - --bs-gutter-x: 1rem; } - .twbs .g-md-3, - .twbs .gy-md-3 { - --bs-gutter-y: 1rem; } - .twbs .g-md-4, - .twbs .gx-md-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-md-4, - .twbs .gy-md-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-md-5, - .twbs .gx-md-5 { - --bs-gutter-x: 3rem; } - .twbs .g-md-5, - .twbs .gy-md-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 992px) { - .twbs .col-lg { - flex: 1 0 0%; } - .twbs .row-cols-lg-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-lg-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-lg-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-lg-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-lg-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-lg-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-lg-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-lg-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-lg-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-lg-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-lg-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-lg-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-lg-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-lg-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-lg-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-lg-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-lg-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-lg-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-lg-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-lg-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-lg-0 { - margin-left: 0; } - .twbs .offset-lg-1 { - margin-left: 8.33333%; } - .twbs .offset-lg-2 { - margin-left: 16.66667%; } - .twbs .offset-lg-3 { - margin-left: 25%; } - .twbs .offset-lg-4 { - margin-left: 33.33333%; } - .twbs .offset-lg-5 { - margin-left: 41.66667%; } - .twbs .offset-lg-6 { - margin-left: 50%; } - .twbs .offset-lg-7 { - margin-left: 58.33333%; } - .twbs .offset-lg-8 { - margin-left: 66.66667%; } - .twbs .offset-lg-9 { - margin-left: 75%; } - .twbs .offset-lg-10 { - margin-left: 83.33333%; } - .twbs .offset-lg-11 { - margin-left: 91.66667%; } - .twbs .g-lg-0, - .twbs .gx-lg-0 { - --bs-gutter-x: 0; } - .twbs .g-lg-0, - .twbs .gy-lg-0 { - --bs-gutter-y: 0; } - .twbs .g-lg-1, - .twbs .gx-lg-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-lg-1, - .twbs .gy-lg-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-lg-2, - .twbs .gx-lg-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-lg-2, - .twbs .gy-lg-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-lg-3, - .twbs .gx-lg-3 { - --bs-gutter-x: 1rem; } - .twbs .g-lg-3, - .twbs .gy-lg-3 { - --bs-gutter-y: 1rem; } - .twbs .g-lg-4, - .twbs .gx-lg-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-lg-4, - .twbs .gy-lg-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-lg-5, - .twbs .gx-lg-5 { - --bs-gutter-x: 3rem; } - .twbs .g-lg-5, - .twbs .gy-lg-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 1200px) { - .twbs .col-xl { - flex: 1 0 0%; } - .twbs .row-cols-xl-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-xl-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-xl-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-xl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-xl-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-xl-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-xl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xl-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-xl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-xl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xl-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-xl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-xl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-xl-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-xl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-xl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-xl-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-xl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-xl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-xl-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-xl-0 { - margin-left: 0; } - .twbs .offset-xl-1 { - margin-left: 8.33333%; } - .twbs .offset-xl-2 { - margin-left: 16.66667%; } - .twbs .offset-xl-3 { - margin-left: 25%; } - .twbs .offset-xl-4 { - margin-left: 33.33333%; } - .twbs .offset-xl-5 { - margin-left: 41.66667%; } - .twbs .offset-xl-6 { - margin-left: 50%; } - .twbs .offset-xl-7 { - margin-left: 58.33333%; } - .twbs .offset-xl-8 { - margin-left: 66.66667%; } - .twbs .offset-xl-9 { - margin-left: 75%; } - .twbs .offset-xl-10 { - margin-left: 83.33333%; } - .twbs .offset-xl-11 { - margin-left: 91.66667%; } - .twbs .g-xl-0, - .twbs .gx-xl-0 { - --bs-gutter-x: 0; } - .twbs .g-xl-0, - .twbs .gy-xl-0 { - --bs-gutter-y: 0; } - .twbs .g-xl-1, - .twbs .gx-xl-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-xl-1, - .twbs .gy-xl-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-xl-2, - .twbs .gx-xl-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-xl-2, - .twbs .gy-xl-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-xl-3, - .twbs .gx-xl-3 { - --bs-gutter-x: 1rem; } - .twbs .g-xl-3, - .twbs .gy-xl-3 { - --bs-gutter-y: 1rem; } - .twbs .g-xl-4, - .twbs .gx-xl-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-xl-4, - .twbs .gy-xl-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-xl-5, - .twbs .gx-xl-5 { - --bs-gutter-x: 3rem; } - .twbs .g-xl-5, - .twbs .gy-xl-5 { - --bs-gutter-y: 3rem; } } - @media (min-width: 1400px) { - .twbs .col-xxl { - flex: 1 0 0%; } - .twbs .row-cols-xxl-auto > * { - flex: 0 0 auto; - width: auto; } - .twbs .row-cols-xxl-1 > * { - flex: 0 0 auto; - width: 100%; } - .twbs .row-cols-xxl-2 > * { - flex: 0 0 auto; - width: 50%; } - .twbs .row-cols-xxl-3 > * { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .row-cols-xxl-4 > * { - flex: 0 0 auto; - width: 25%; } - .twbs .row-cols-xxl-5 > * { - flex: 0 0 auto; - width: 20%; } - .twbs .row-cols-xxl-6 > * { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xxl-auto { - flex: 0 0 auto; - width: auto; } - .twbs .col-xxl-1 { - flex: 0 0 auto; - width: 8.33333%; } - .twbs .col-xxl-2 { - flex: 0 0 auto; - width: 16.66667%; } - .twbs .col-xxl-3 { - flex: 0 0 auto; - width: 25%; } - .twbs .col-xxl-4 { - flex: 0 0 auto; - width: 33.33333%; } - .twbs .col-xxl-5 { - flex: 0 0 auto; - width: 41.66667%; } - .twbs .col-xxl-6 { - flex: 0 0 auto; - width: 50%; } - .twbs .col-xxl-7 { - flex: 0 0 auto; - width: 58.33333%; } - .twbs .col-xxl-8 { - flex: 0 0 auto; - width: 66.66667%; } - .twbs .col-xxl-9 { - flex: 0 0 auto; - width: 75%; } - .twbs .col-xxl-10 { - flex: 0 0 auto; - width: 83.33333%; } - .twbs .col-xxl-11 { - flex: 0 0 auto; - width: 91.66667%; } - .twbs .col-xxl-12 { - flex: 0 0 auto; - width: 100%; } - .twbs .offset-xxl-0 { - margin-left: 0; } - .twbs .offset-xxl-1 { - margin-left: 8.33333%; } - .twbs .offset-xxl-2 { - margin-left: 16.66667%; } - .twbs .offset-xxl-3 { - margin-left: 25%; } - .twbs .offset-xxl-4 { - margin-left: 33.33333%; } - .twbs .offset-xxl-5 { - margin-left: 41.66667%; } - .twbs .offset-xxl-6 { - margin-left: 50%; } - .twbs .offset-xxl-7 { - margin-left: 58.33333%; } - .twbs .offset-xxl-8 { - margin-left: 66.66667%; } - .twbs .offset-xxl-9 { - margin-left: 75%; } - .twbs .offset-xxl-10 { - margin-left: 83.33333%; } - .twbs .offset-xxl-11 { - margin-left: 91.66667%; } - .twbs .g-xxl-0, - .twbs .gx-xxl-0 { - --bs-gutter-x: 0; } - .twbs .g-xxl-0, - .twbs .gy-xxl-0 { - --bs-gutter-y: 0; } - .twbs .g-xxl-1, - .twbs .gx-xxl-1 { - --bs-gutter-x: 0.25rem; } - .twbs .g-xxl-1, - .twbs .gy-xxl-1 { - --bs-gutter-y: 0.25rem; } - .twbs .g-xxl-2, - .twbs .gx-xxl-2 { - --bs-gutter-x: 0.5rem; } - .twbs .g-xxl-2, - .twbs .gy-xxl-2 { - --bs-gutter-y: 0.5rem; } - .twbs .g-xxl-3, - .twbs .gx-xxl-3 { - --bs-gutter-x: 1rem; } - .twbs .g-xxl-3, - .twbs .gy-xxl-3 { - --bs-gutter-y: 1rem; } - .twbs .g-xxl-4, - .twbs .gx-xxl-4 { - --bs-gutter-x: 1.5rem; } - .twbs .g-xxl-4, - .twbs .gy-xxl-4 { - --bs-gutter-y: 1.5rem; } - .twbs .g-xxl-5, - .twbs .gx-xxl-5 { - --bs-gutter-x: 3rem; } - .twbs .g-xxl-5, - .twbs .gy-xxl-5 { - --bs-gutter-y: 3rem; } } - .twbs :root { - --bs-blue: #0d6efd; - --bs-indigo: #6610f2; - --bs-purple: #6f42c1; - --bs-pink: #d63384; - --bs-red: #dc3545; - --bs-orange: #fd7e14; - --bs-yellow: #ffc107; - --bs-green: #198754; - --bs-teal: #20c997; - --bs-cyan: #0dcaf0; - --bs-white: #fff; - --bs-gray: #6c757d; - --bs-gray-dark: #343a40; - --bs-primary: #0d6efd; - --bs-secondary: #6c757d; - --bs-success: #198754; - --bs-info: #0dcaf0; - --bs-warning: #ffc107; - --bs-danger: #dc3545; - --bs-light: #f8f9fa; - --bs-dark: #212529; - --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); } - .twbs *, - .twbs *::before, - .twbs *::after { - box-sizing: border-box; } - @media (prefers-reduced-motion: no-preference) { - .twbs :root { - scroll-behavior: smooth; } } - .twbs body { - margin: 0; - font-family: var(--bs-font-sans-serif); - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - .twbs [tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; } - .twbs hr { - margin: 1rem 0; - color: inherit; - background-color: currentColor; - border: 0; - opacity: 0.25; } - .twbs hr:not([size]) { - height: 1px; } - .twbs h1, .twbs .h1, .twbs h2, .twbs .h2, .twbs h3, .twbs .h3, .twbs h4, .twbs .h4, .twbs h5, .twbs .h5, .twbs h6, .twbs .h6 { - margin-top: 0; - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; } - .twbs h1, .twbs .h1 { - font-size: calc(1.375rem + 1.5vw); } - @media (min-width: 1200px) { - .twbs h1, .twbs .h1 { - font-size: 2.5rem; } } - .twbs h2, .twbs .h2 { - font-size: calc(1.325rem + 0.9vw); } - @media (min-width: 1200px) { - .twbs h2, .twbs .h2 { - font-size: 2rem; } } - .twbs h3, .twbs .h3 { - font-size: calc(1.3rem + 0.6vw); } - @media (min-width: 1200px) { - .twbs h3, .twbs .h3 { - font-size: 1.75rem; } } - .twbs h4, .twbs .h4 { - font-size: calc(1.275rem + 0.3vw); } - @media (min-width: 1200px) { - .twbs h4, .twbs .h4 { - font-size: 1.5rem; } } - .twbs h5, .twbs .h5 { - font-size: 1.25rem; } - .twbs h6, .twbs .h6 { - font-size: 1rem; } - .twbs p { - margin-top: 0; - margin-bottom: 1rem; } - .twbs abbr[title], - .twbs abbr[data-bs-original-title] { - text-decoration: underline; - text-decoration: underline dotted; - cursor: help; - text-decoration-skip-ink: none; } - .twbs address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; } - .twbs ol, - .twbs ul { - padding-left: 2rem; } - .twbs ol, - .twbs ul, - .twbs dl { - margin-top: 0; - margin-bottom: 1rem; } - .twbs ol ol, - .twbs ul ul, - .twbs ol ul, - .twbs ul ol { - margin-bottom: 0; } - .twbs dt { - font-weight: 700; } - .twbs dd { - margin-bottom: .5rem; - margin-left: 0; } - .twbs blockquote { - margin: 0 0 1rem; } - .twbs b, - .twbs strong { - font-weight: bolder; } - .twbs small, .twbs .small { - font-size: 0.875em; } - .twbs mark, .twbs .mark { - padding: 0.2em; - background-color: #fcf8e3; } - .twbs sub, - .twbs sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; } - .twbs sub { - bottom: -.25em; } - .twbs sup { - top: -.5em; } - .twbs a { - color: #0d6efd; - text-decoration: underline; } - .twbs a:hover { - color: #0a58ca; } - .twbs a:not([href]):not([class]), .twbs a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; } - .twbs pre, - .twbs code, - .twbs kbd, - .twbs samp { - font-family: var(--bs-font-monospace); - font-size: 1em; - direction: ltr /* rtl:ignore */; - unicode-bidi: bidi-override; } - .twbs pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - font-size: 0.875em; } - .twbs pre code { - font-size: inherit; - color: inherit; - word-break: normal; } - .twbs code { - font-size: 0.875em; - color: #d63384; - word-wrap: break-word; } - a > .twbs code { - color: inherit; } - .twbs kbd { - padding: 0.2rem 0.4rem; - font-size: 0.875em; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; } - .twbs kbd kbd { - padding: 0; - font-size: 1em; - font-weight: 700; } - .twbs figure { - margin: 0 0 1rem; } - .twbs img, - .twbs svg { - vertical-align: middle; } - .twbs table { - caption-side: bottom; - border-collapse: collapse; } - .twbs caption { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: #6c757d; - text-align: left; } - .twbs th { - text-align: inherit; - text-align: -webkit-match-parent; } - .twbs thead, - .twbs tbody, - .twbs tfoot, - .twbs tr, - .twbs td, - .twbs th { - border-color: inherit; - border-style: solid; - border-width: 0; } - .twbs label { - display: inline-block; } - .twbs button { - border-radius: 0; } - .twbs button:focus { - outline: dotted 1px; - outline: -webkit-focus-ring-color auto 5px; } - .twbs input, - .twbs button, - .twbs select, - .twbs optgroup, - .twbs textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; } - .twbs button, - .twbs select { - text-transform: none; } - .twbs [role="button"] { - cursor: pointer; } - .twbs select { - word-wrap: normal; } - .twbs [list]::-webkit-calendar-picker-indicator { - display: none; } - .twbs button, - .twbs [type="button"], - .twbs [type="reset"], - .twbs [type="submit"] { - -webkit-appearance: button; } - .twbs button:not(:disabled), - .twbs [type="button"]:not(:disabled), - .twbs [type="reset"]:not(:disabled), - .twbs [type="submit"]:not(:disabled) { - cursor: pointer; } - .twbs ::-moz-focus-inner { - padding: 0; - border-style: none; } - .twbs textarea { - resize: vertical; } - .twbs fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; } - .twbs legend { - float: left; - width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: calc(1.275rem + 0.3vw); - line-height: inherit; } - @media (min-width: 1200px) { - .twbs legend { - font-size: 1.5rem; } } - .twbs legend + * { - clear: left; } - .twbs ::-webkit-datetime-edit-fields-wrapper, - .twbs ::-webkit-datetime-edit-text, - .twbs ::-webkit-datetime-edit-minute, - .twbs ::-webkit-datetime-edit-hour-field, - .twbs ::-webkit-datetime-edit-day-field, - .twbs ::-webkit-datetime-edit-month-field, - .twbs ::-webkit-datetime-edit-year-field { - padding: 0; } - .twbs ::-webkit-inner-spin-button { - height: auto; } - .twbs [type="search"] { - outline-offset: -2px; - -webkit-appearance: textfield; } - .twbs ::-webkit-search-decoration { - -webkit-appearance: none; } - .twbs ::-webkit-color-swatch-wrapper { - padding: 0; } - .twbs ::file-selector-button { - font: inherit; } - .twbs ::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; } - .twbs output { - display: inline-block; } - .twbs iframe { - border: 0; } - .twbs summary { - display: list-item; - cursor: pointer; } - .twbs progress { - vertical-align: baseline; } - .twbs [hidden] { - display: none !important; } - .twbs .lead { - font-size: 1.25rem; - font-weight: 300; } - .twbs .display-1 { - font-size: calc(1.625rem + 4.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-1 { - font-size: 5rem; } } - .twbs .display-2 { - font-size: calc(1.575rem + 3.9vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-2 { - font-size: 4.5rem; } } - .twbs .display-3 { - font-size: calc(1.525rem + 3.3vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-3 { - font-size: 4rem; } } - .twbs .display-4 { - font-size: calc(1.475rem + 2.7vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-4 { - font-size: 3.5rem; } } - .twbs .display-5 { - font-size: calc(1.425rem + 2.1vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-5 { - font-size: 3rem; } } - .twbs .display-6 { - font-size: calc(1.375rem + 1.5vw); - font-weight: 300; - line-height: 1.2; } - @media (min-width: 1200px) { - .twbs .display-6 { - font-size: 2.5rem; } } - .twbs .list-unstyled { - padding-left: 0; - list-style: none; } - .twbs .list-inline { - padding-left: 0; - list-style: none; } - .twbs .list-inline-item { - display: inline-block; } - .twbs .list-inline-item:not(:last-child) { - margin-right: 0.5rem; } - .twbs .initialism { - font-size: 0.875em; - text-transform: uppercase; } - .twbs .blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; } - .twbs .blockquote > :last-child { - margin-bottom: 0; } - .twbs .blockquote-footer { - margin-top: -1rem; - margin-bottom: 1rem; - font-size: 0.875em; - color: #6c757d; } - .twbs .blockquote-footer::before { - content: "\2014\00A0"; } - .twbs .form-label { - margin-bottom: 0.5rem; } - .twbs .col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; } - .twbs .col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; } - .twbs .col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; } - .twbs .form-text { - margin-top: 0.25rem; - font-size: 0.875em; - color: #6c757d; } - .twbs .form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - appearance: none; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control { - transition: none; } } - .twbs .form-control[type="file"] { - overflow: hidden; } - .twbs .form-control[type="file"]:not(:disabled):not([readonly]) { - cursor: pointer; } - .twbs .form-control:focus { - color: #212529; - background-color: #fff; - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-control::-webkit-date-and-time-value { - height: 1.5em; } - .twbs .form-control::placeholder { - color: #6c757d; - opacity: 1; } - .twbs .form-control:disabled, .twbs .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; } - .twbs .form-control::file-selector-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control::file-selector-button { - transition: none; } } - .twbs .form-control:hover:not(:disabled):not([readonly])::file-selector-button { - background-color: #dde0e3; } - .twbs .form-control::-webkit-file-upload-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - margin-inline-end: 0.75rem; - color: #212529; - background-color: #e9ecef; - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: 1px; - border-radius: 0; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-control::-webkit-file-upload-button { - transition: none; } } - .twbs .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { - background-color: #dde0e3; } - .twbs .form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; } - .twbs .form-control-plaintext.form-control-sm, .twbs .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; } - .twbs .form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .form-control-sm::file-selector-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .twbs .form-control-sm::-webkit-file-upload-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - margin-inline-end: 0.5rem; } - .twbs .form-control-lg { - min-height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .form-control-lg::file-selector-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .twbs .form-control-lg::-webkit-file-upload-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - margin-inline-end: 1rem; } - .twbs textarea.form-control { - min-height: calc(1.5em + 0.75rem + 2px); } - .twbs textarea.form-control-sm { - min-height: calc(1.5em + 0.5rem + 2px); } - .twbs textarea.form-control-lg { - min-height: calc(1.5em + 1rem + 2px); } - .twbs .form-control-color { - max-width: 3rem; - height: auto; - padding: 0.375rem; } - .twbs .form-control-color:not(:disabled):not([readonly]) { - cursor: pointer; } - .twbs .form-control-color::-moz-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .twbs .form-control-color::-webkit-color-swatch { - height: 1.5em; - border-radius: 0.25rem; } - .twbs .form-select { - display: block; - width: 100%; - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - vertical-align: middle; - background-color: #fff; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right 0.75rem center; - background-size: 16px 12px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - appearance: none; } - .twbs .form-select:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-select[multiple], .twbs .form-select[size]:not([size="1"]) { - padding-right: 0.75rem; - background-image: none; } - .twbs .form-select:disabled { - color: #6c757d; - background-color: #e9ecef; } - .twbs .form-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #212529; } - .twbs .form-select-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; } - .twbs .form-select-lg { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; } - .twbs .form-check { - display: block; - min-height: 1.5rem; - padding-left: 1.5em; - margin-bottom: 0.125rem; } - .twbs .form-check .form-check-input { - float: left; - margin-left: -1.5em; } - .twbs .form-check-input { - width: 1em; - height: 1em; - margin-top: 0.25em; - vertical-align: top; - background-color: #fff; - background-repeat: no-repeat; - background-position: center; - background-size: contain; - border: 1px solid rgba(0, 0, 0, 0.25); - appearance: none; - color-adjust: exact; - transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-check-input { - transition: none; } } - .twbs .form-check-input[type="checkbox"] { - border-radius: 0.25em; } - .twbs .form-check-input[type="radio"] { - border-radius: 50%; } - .twbs .form-check-input:active { - filter: brightness(90%); } - .twbs .form-check-input:focus { - border-color: #86b7fe; - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-check-input:checked { - background-color: #0d6efd; - border-color: #0d6efd; } - .twbs .form-check-input:checked[type="checkbox"] { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); } - .twbs .form-check-input:checked[type="radio"] { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); } - .twbs .form-check-input[type="checkbox"]:indeterminate { - background-color: #0d6efd; - border-color: #0d6efd; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); } - .twbs .form-check-input:disabled { - pointer-events: none; - filter: none; - opacity: 0.5; } - .twbs .form-check-input[disabled] ~ .form-check-label, .twbs .form-check-input:disabled ~ .form-check-label { - opacity: 0.5; } - .twbs .form-switch { - padding-left: 2.5em; } - .twbs .form-switch .form-check-input { - width: 2em; - margin-left: -2.5em; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); - background-position: left center; - border-radius: 2em; } - .twbs .form-switch .form-check-input:focus { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e"); } - .twbs .form-switch .form-check-input:checked { - background-position: right center; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } - .twbs .form-check-inline { - display: inline-block; - margin-right: 1rem; } - .twbs .btn-check { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; } - .twbs .btn-check[disabled] + .btn, .twbs .btn-check:disabled + .btn { - pointer-events: none; - filter: none; - opacity: 0.65; } - .twbs .form-range { - width: 100%; - height: 1.5rem; - padding: 0; - background-color: transparent; - appearance: none; } - .twbs .form-range:focus { - outline: none; } - .twbs .form-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); } - .twbs .form-range::-moz-focus-outer { - border: 0; } - .twbs .form-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-range::-webkit-slider-thumb { - transition: none; } } - .twbs .form-range::-webkit-slider-thumb:active { - background-color: #b6d4fe; } - .twbs .form-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .twbs .form-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-range::-moz-range-thumb { - transition: none; } } - .twbs .form-range::-moz-range-thumb:active { - background-color: #b6d4fe; } - .twbs .form-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; } - .twbs .form-range:disabled { - pointer-events: none; } - .twbs .form-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; } - .twbs .form-range:disabled::-moz-range-thumb { - background-color: #adb5bd; } - .twbs .form-floating { - position: relative; } - .twbs .form-floating > .form-control, - .twbs .form-floating > .form-select { - height: calc(3.5rem + 2px); - padding: 1rem 0.75rem; } - .twbs .form-floating > label { - position: absolute; - top: 0; - left: 0; - height: 100%; - padding: 1rem 0.75rem; - pointer-events: none; - border: 1px solid transparent; - transform-origin: 0 0; - transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .form-floating > label { - transition: none; } } - .twbs .form-floating > .form-control::placeholder { - color: transparent; } - .twbs .form-floating > .form-control:focus, .twbs .form-floating > .form-control:not(:placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-control:-webkit-autofill { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-select { - padding-top: 1.625rem; - padding-bottom: 0.625rem; } - .twbs .form-floating > .form-control:focus ~ label, - .twbs .form-floating > .form-control:not(:placeholder-shown) ~ label, - .twbs .form-floating > .form-select ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .twbs .form-floating > .form-control:-webkit-autofill ~ label { - opacity: 0.65; - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } - .twbs .input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; } - .twbs .input-group > .form-control, - .twbs .input-group > .form-select { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; } - .twbs .input-group > .form-control:focus, - .twbs .input-group > .form-select:focus { - z-index: 3; } - .twbs .input-group .btn { - position: relative; - z-index: 2; } - .twbs .input-group .btn:focus { - z-index: 3; } - .twbs .input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - .twbs .input-group-lg > .form-control, - .twbs .input-group-lg > .form-select, - .twbs .input-group-lg > .input-group-text, - .twbs .input-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: 0.3rem; } - .twbs .input-group-sm > .form-control, - .twbs .input-group-sm > .form-select, - .twbs .input-group-sm > .input-group-text, - .twbs .input-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: 0.2rem; } - .twbs .input-group-lg > .form-select, - .twbs .input-group-sm > .form-select { - padding-right: 1.75rem; } - .twbs .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), - .twbs .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), - .twbs .input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .twbs .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { - margin-left: -1px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .twbs .valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #198754; } - .twbs .valid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(25, 135, 84, 0.9); - border-radius: 0.25rem; } - .was-validated .twbs:valid ~ .valid-feedback, - .was-validated .twbs:valid ~ .valid-tooltip, .twbs.is-valid ~ .valid-feedback, - .twbs.is-valid ~ .valid-tooltip { - display: block; } - .was-validated .twbs .form-control:valid, .twbs .form-control.is-valid { - border-color: #198754; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-control:valid:focus, .twbs .form-control.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs textarea.form-control:valid, .twbs textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - .was-validated .twbs .form-select:valid, .twbs .form-select.is-valid { - border-color: #198754; - padding-right: calc(0.75em + 2.3125rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-position: right 0.75rem center, center right 1.75rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-select:valid:focus, .twbs .form-select.is-valid:focus { - border-color: #198754; - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs .form-check-input:valid, .twbs .form-check-input.is-valid { - border-color: #198754; } - .was-validated .twbs .form-check-input:valid:checked, .twbs .form-check-input.is-valid:checked { - background-color: #198754; } - .was-validated .twbs .form-check-input:valid:focus, .twbs .form-check-input.is-valid:focus { - box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); } - .was-validated .twbs .form-check-input:valid ~ .form-check-label, .twbs .form-check-input.is-valid ~ .form-check-label { - color: #198754; } - .twbs .form-check-inline .form-check-input ~ .valid-feedback { - margin-left: .5em; } - .twbs .invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: #dc3545; } - .twbs .invalid-tooltip { - position: absolute; - top: 100%; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: .1rem; - font-size: 0.875rem; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; } - .was-validated .twbs:invalid ~ .invalid-feedback, - .was-validated .twbs:invalid ~ .invalid-tooltip, .twbs.is-invalid ~ .invalid-feedback, - .twbs.is-invalid ~ .invalid-tooltip { - display: block; } - .was-validated .twbs .form-control:invalid, .twbs .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-control:invalid:focus, .twbs .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs textarea.form-control:invalid, .twbs textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } - .was-validated .twbs .form-select:invalid, .twbs .form-select.is-invalid { - border-color: #dc3545; - padding-right: calc(0.75em + 2.3125rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-position: right 0.75rem center, center right 1.75rem; - background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } - .was-validated .twbs .form-select:invalid:focus, .twbs .form-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs .form-check-input:invalid, .twbs .form-check-input.is-invalid { - border-color: #dc3545; } - .was-validated .twbs .form-check-input:invalid:checked, .twbs .form-check-input.is-invalid:checked { - background-color: #dc3545; } - .was-validated .twbs .form-check-input:invalid:focus, .twbs .form-check-input.is-invalid:focus { - box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); } - .was-validated .twbs .form-check-input:invalid ~ .form-check-label, .twbs .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; } - .twbs .form-check-inline .form-check-input ~ .invalid-feedback { - margin-left: .5em; } - .twbs .nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .twbs .nav-link { - display: block; - padding: 0.5rem 1rem; - text-decoration: none; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .nav-link { - transition: none; } } - .twbs .nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; } - .twbs .nav-tabs { - border-bottom: 1px solid #dee2e6; } - .twbs .nav-tabs .nav-link { - margin-bottom: -1px; - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .twbs .nav-tabs .nav-link:hover, .twbs .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; } - .twbs .nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; } - .twbs .nav-tabs .nav-link.active, - .twbs .nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; } - .twbs .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; } - .twbs .nav-pills .nav-link { - border-radius: 0.25rem; } - .twbs .nav-pills .nav-link.active, - .twbs .nav-pills .show > .nav-link { - color: #fff; - background-color: #0d6efd; } - .twbs .nav-fill > .nav-link, - .twbs .nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; } - .twbs .nav-justified > .nav-link, - .twbs .nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; } - .twbs .tab-content > .tab-pane { - display: none; } - .twbs .tab-content > .active { - display: block; } - .twbs .navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .twbs .navbar > .container, - .twbs .navbar > .container-fluid, .twbs .navbar > .container-sm, .twbs .navbar > .container-md, .twbs .navbar > .container-lg, .twbs .navbar > .container-xl, .twbs .navbar > .container-xxl { - display: flex; - flex-wrap: inherit; - align-items: center; - justify-content: space-between; } - .twbs .navbar-brand { - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - text-decoration: none; - white-space: nowrap; } - .twbs .navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; } - .twbs .navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; } - .twbs .navbar-nav .dropdown-menu { - position: static; } - .twbs .navbar-text { - padding-top: 0.5rem; - padding-bottom: 0.5rem; } - .twbs .navbar-collapse { - align-items: center; - width: 100%; } - .twbs .navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; - transition: box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .twbs .navbar-toggler { - transition: none; } } - .twbs .navbar-toggler:hover { - text-decoration: none; } - .twbs .navbar-toggler:focus { - text-decoration: none; - outline: 0; - box-shadow: 0 0 0 0.25rem; } - .twbs .navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - background-repeat: no-repeat; - background-position: center; - background-size: 100%; } - @media (min-width: 576px) { - .twbs .navbar-expand-sm { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-sm .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-sm .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-sm .navbar-toggler { - display: none; } } - @media (min-width: 768px) { - .twbs .navbar-expand-md { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-md .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-md .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-md .navbar-toggler { - display: none; } } - @media (min-width: 992px) { - .twbs .navbar-expand-lg { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-lg .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-lg .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-lg .navbar-toggler { - display: none; } } - @media (min-width: 1200px) { - .twbs .navbar-expand-xl { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-xl .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-xl .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-xl .navbar-toggler { - display: none; } } - @media (min-width: 1400px) { - .twbs .navbar-expand-xxl { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand-xxl .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand-xxl .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand-xxl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand-xxl .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand-xxl .navbar-toggler { - display: none; } } - .twbs .navbar-expand { - flex-wrap: nowrap; - justify-content: flex-start; } - .twbs .navbar-expand .navbar-nav { - flex-direction: row; } - .twbs .navbar-expand .navbar-nav .dropdown-menu { - position: absolute; } - .twbs .navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; } - .twbs .navbar-expand .navbar-collapse { - display: flex !important; } - .twbs .navbar-expand .navbar-toggler { - display: none; } - .twbs .navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-brand:hover, .twbs .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.55); } - .twbs .navbar-light .navbar-nav .nav-link:hover, .twbs .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); } - .twbs .navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); } - .twbs .navbar-light .navbar-nav .show > .nav-link, - .twbs .navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.55); - border-color: rgba(0, 0, 0, 0.1); } - .twbs .navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - .twbs .navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.55); } - .twbs .navbar-light .navbar-text a, - .twbs .navbar-light .navbar-text a:hover, - .twbs .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); } - .twbs .navbar-dark .navbar-brand { - color: #fff; } - .twbs .navbar-dark .navbar-brand:hover, .twbs .navbar-dark .navbar-brand:focus { - color: #fff; } - .twbs .navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.55); } - .twbs .navbar-dark .navbar-nav .nav-link:hover, .twbs .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); } - .twbs .navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); } - .twbs .navbar-dark .navbar-nav .show > .nav-link, - .twbs .navbar-dark .navbar-nav .nav-link.active { - color: #fff; } - .twbs .navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.55); - border-color: rgba(255, 255, 255, 0.1); } - .twbs .navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } - .twbs .navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.55); } - .twbs .navbar-dark .navbar-text a, - .twbs .navbar-dark .navbar-text a:hover, - .twbs .navbar-dark .navbar-text a:focus { - color: #fff; } - .twbs .list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; } - .twbs .list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; } - .twbs .list-group-item-action:hover, .twbs .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; } - .twbs .list-group-item-action:active { - color: #212529; - background-color: #e9ecef; } - .twbs .list-group-item { - position: relative; - display: block; - padding: 0.5rem 1rem; - text-decoration: none; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); } - .twbs .list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; } - .twbs .list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; } - .twbs .list-group-item.disabled, .twbs .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; } - .twbs .list-group-item.active { - z-index: 2; - color: #fff; - background-color: #0d6efd; - border-color: #0d6efd; } - .twbs .list-group-item + .twbs .list-group-item { - border-top-width: 0; } - .twbs .list-group-item + .twbs .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; } - .twbs .list-group-horizontal { - flex-direction: row; } - .twbs .list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } - @media (min-width: 576px) { - .twbs .list-group-horizontal-sm { - flex-direction: row; } - .twbs .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 768px) { - .twbs .list-group-horizontal-md { - flex-direction: row; } - .twbs .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 992px) { - .twbs .list-group-horizontal-lg { - flex-direction: row; } - .twbs .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 1200px) { - .twbs .list-group-horizontal-xl { - flex-direction: row; } - .twbs .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - @media (min-width: 1400px) { - .twbs .list-group-horizontal-xxl { - flex-direction: row; } - .twbs .list-group-horizontal-xxl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item.active { - margin-top: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; } - .twbs .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; } } - .twbs .list-group-flush { - border-radius: 0; } - .twbs .list-group-flush > .list-group-item { - border-width: 0 0 1px; } - .twbs .list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; } - .twbs .list-group-item-primary { - color: #084298; - background-color: #cfe2ff; } - .twbs .list-group-item-primary.list-group-item-action:hover, .twbs .list-group-item-primary.list-group-item-action:focus { - color: #084298; - background-color: #bacbe6; } - .twbs .list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #084298; - border-color: #084298; } - .twbs .list-group-item-secondary { - color: #41464b; - background-color: #e2e3e5; } - .twbs .list-group-item-secondary.list-group-item-action:hover, .twbs .list-group-item-secondary.list-group-item-action:focus { - color: #41464b; - background-color: #cbccce; } - .twbs .list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #41464b; - border-color: #41464b; } - .twbs .list-group-item-success { - color: #0f5132; - background-color: #d1e7dd; } - .twbs .list-group-item-success.list-group-item-action:hover, .twbs .list-group-item-success.list-group-item-action:focus { - color: #0f5132; - background-color: #bcd0c7; } - .twbs .list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #0f5132; - border-color: #0f5132; } - .twbs .list-group-item-info { - color: #055160; - background-color: #cff4fc; } - .twbs .list-group-item-info.list-group-item-action:hover, .twbs .list-group-item-info.list-group-item-action:focus { - color: #055160; - background-color: #badce3; } - .twbs .list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #055160; - border-color: #055160; } - .twbs .list-group-item-warning { - color: #664d03; - background-color: #fff3cd; } - .twbs .list-group-item-warning.list-group-item-action:hover, .twbs .list-group-item-warning.list-group-item-action:focus { - color: #664d03; - background-color: #e6dbb9; } - .twbs .list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #664d03; - border-color: #664d03; } - .twbs .list-group-item-danger { - color: #842029; - background-color: #f8d7da; } - .twbs .list-group-item-danger.list-group-item-action:hover, .twbs .list-group-item-danger.list-group-item-action:focus { - color: #842029; - background-color: #dfc2c4; } - .twbs .list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #842029; - border-color: #842029; } - .twbs .list-group-item-light { - color: #636464; - background-color: #fefefe; } - .twbs .list-group-item-light.list-group-item-action:hover, .twbs .list-group-item-light.list-group-item-action:focus { - color: #636464; - background-color: #e5e5e5; } - .twbs .list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #636464; - border-color: #636464; } - .twbs .list-group-item-dark { - color: #141619; - background-color: #d3d3d4; } - .twbs .list-group-item-dark.list-group-item-action:hover, .twbs .list-group-item-dark.list-group-item-action:focus { - color: #141619; - background-color: #bebebf; } - .twbs .list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #141619; - border-color: #141619; } - .twbs .popover { - position: absolute; - top: 0; - left: 0 /* rtl:ignore */; - z-index: 1060; - display: block; - max-width: 276px; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; } - .twbs .popover .popover-arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; } - .twbs .popover .popover-arrow::before, .twbs .popover .popover-arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; } - .twbs .bs-popover-top, .twbs .bs-popover-auto[data-popper-placement^="top"] { - margin-bottom: 0.5rem !important; } - .twbs .bs-popover-top > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow { - bottom: calc(-0.5rem - 1px); } - .twbs .bs-popover-top > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-top > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; } - .twbs .bs-popover-end, .twbs .bs-popover-auto[data-popper-placement^="right"] { - margin-left: 0.5rem !important; } - .twbs .bs-popover-end > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .twbs .bs-popover-end > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-end > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; } - .twbs .bs-popover-bottom, .twbs .bs-popover-auto[data-popper-placement^="bottom"] { - margin-top: 0.5rem !important; } - .twbs .bs-popover-bottom > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow { - top: calc(-0.5rem - 1px); } - .twbs .bs-popover-bottom > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-bottom > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; } - .twbs .bs-popover-bottom .popover-header::before, .twbs .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f0f0f0; } - .twbs .bs-popover-start, .twbs .bs-popover-auto[data-popper-placement^="left"] { - margin-right: 0.5rem !important; } - .twbs .bs-popover-start > .popover-arrow, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; } - .twbs .bs-popover-start > .popover-arrow::before, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); } - .twbs .bs-popover-start > .popover-arrow::after, .twbs .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; } - .twbs .popover-header { - padding: 0.5rem 1rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f0f0f0; - border-bottom: 1px solid #d8d8d8; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); } - .twbs .popover-header:empty { - display: none; } - .twbs .popover-body { - padding: 1rem 1rem; - color: #212529; } - -@keyframes spinner-border { - to { - transform: rotate(360deg) /* rtl:ignore */; } } - .twbs .spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - animation: 0.75s linear infinite spinner-border; } - .twbs .spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; } - -@keyframes spinner-grow { - 0% { - transform: scale(0); } - 50% { - opacity: 1; - transform: none; } } - .twbs .spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - animation: 0.75s linear infinite spinner-grow; } - .twbs .spinner-grow-sm { - width: 1rem; - height: 1rem; } - @media (prefers-reduced-motion: reduce) { - .twbs .spinner-border, - .twbs .spinner-grow { - animation-duration: 1.5s; } } - .twbs .tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: var(--bs-font-sans-serif); - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; } - .twbs .tooltip.show { - opacity: 0.9; } - .twbs .tooltip .tooltip-arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; } - .twbs .tooltip .tooltip-arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; } - .twbs .bs-tooltip-top, .twbs .bs-tooltip-auto[data-popper-placement^="top"] { - padding: 0.4rem 0; } - .twbs .bs-tooltip-top .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow { - bottom: 0; } - .twbs .bs-tooltip-top .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before { - top: -1px; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; } - .twbs .bs-tooltip-end, .twbs .bs-tooltip-auto[data-popper-placement^="right"] { - padding: 0 0.4rem; } - .twbs .bs-tooltip-end .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; } - .twbs .bs-tooltip-end .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before { - right: -1px; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; } - .twbs .bs-tooltip-bottom, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] { - padding: 0.4rem 0; } - .twbs .bs-tooltip-bottom .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow { - top: 0; } - .twbs .bs-tooltip-bottom .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before { - bottom: -1px; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; } - .twbs .bs-tooltip-start, .twbs .bs-tooltip-auto[data-popper-placement^="left"] { - padding: 0 0.4rem; } - .twbs .bs-tooltip-start .tooltip-arrow, .twbs .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; } - .twbs .bs-tooltip-start .tooltip-arrow::before, .twbs .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before { - left: -1px; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; } - .twbs .tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; } diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css deleted file mode 100644 index 94ee0bdf7..000000000 --- a/docs/_static/css/custom.css +++ /dev/null @@ -1,45 +0,0 @@ -wy-nav-content { - max-width: none; -} - - -.math { - text-align: left; -} - -.eqno { - float: right; -} - -table { - display: block; - max-height: 400px; - overflow-y: scroll; -} - -.literalinclude { - display: block; - max-height: 400px; - overflow-y: scroll; -} - -#div.wy-side-scroll{ -# background:#cb463f; -#} - -div.wy-menu.wy-menu-vertical > .caption { - color: #cb463f; -} - -# LIGHT BLUE background:#0099ff -# BLUE: background:#0B619C -# ADAM RED: background:#cb463f; - -span.caption.caption-text{ - color: #000000; -} - -td{ - white-space: normal !important; -} - diff --git a/docs/_static/css/fmkPlay.css b/docs/_static/css/fmkPlay.css deleted file mode 100644 index a55a15f96..000000000 --- a/docs/_static/css/fmkPlay.css +++ /dev/null @@ -1,19 +0,0 @@ -div.wy-side-scroll{ - background:#cb463f; -} - -# LIGHT BLUE background:#0099ff -# BLUE: background:#0B619C -# RED: background:#cb463f; - -#span.caption-text{ -# color: #000000; -#} - -#.wy-menu-vertical header, .wy-menu-vertical p.caption { -# color: #000000; -#} - -td{ - white-space: normal !important; -} \ No newline at end of file diff --git a/docs/_static/css/fonts/Roboto-Slab-Bold.woff b/docs/_static/css/fonts/Roboto-Slab-Bold.woff deleted file mode 100644 index 6cb600001..000000000 Binary files a/docs/_static/css/fonts/Roboto-Slab-Bold.woff and /dev/null differ diff --git a/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 b/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 deleted file mode 100644 index 7059e2314..000000000 Binary files a/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 and /dev/null differ diff --git a/docs/_static/css/fonts/Roboto-Slab-Regular.woff b/docs/_static/css/fonts/Roboto-Slab-Regular.woff deleted file mode 100644 index f815f63f9..000000000 Binary files a/docs/_static/css/fonts/Roboto-Slab-Regular.woff and /dev/null differ diff --git a/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 b/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 deleted file mode 100644 index f2c76e5bd..000000000 Binary files a/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 and /dev/null differ diff --git a/docs/_static/css/fonts/fontawesome-webfont.eot b/docs/_static/css/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca95..000000000 Binary files a/docs/_static/css/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/docs/_static/css/fonts/fontawesome-webfont.svg b/docs/_static/css/fonts/fontawesome-webfont.svg deleted file mode 100644 index 855c845e5..000000000 --- a/docs/_static/css/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_static/css/fonts/fontawesome-webfont.ttf b/docs/_static/css/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2fa..000000000 Binary files a/docs/_static/css/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/docs/_static/css/fonts/fontawesome-webfont.woff b/docs/_static/css/fonts/fontawesome-webfont.woff deleted file mode 100644 index 400014a4b..000000000 Binary files a/docs/_static/css/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/docs/_static/css/fonts/fontawesome-webfont.woff2 b/docs/_static/css/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc604..000000000 Binary files a/docs/_static/css/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/docs/_static/css/fonts/lato-bold-italic.woff b/docs/_static/css/fonts/lato-bold-italic.woff deleted file mode 100644 index 88ad05b9f..000000000 Binary files a/docs/_static/css/fonts/lato-bold-italic.woff and /dev/null differ diff --git a/docs/_static/css/fonts/lato-bold-italic.woff2 b/docs/_static/css/fonts/lato-bold-italic.woff2 deleted file mode 100644 index c4e3d804b..000000000 Binary files a/docs/_static/css/fonts/lato-bold-italic.woff2 and /dev/null differ diff --git a/docs/_static/css/fonts/lato-bold.woff b/docs/_static/css/fonts/lato-bold.woff deleted file mode 100644 index c6dff51f0..000000000 Binary files a/docs/_static/css/fonts/lato-bold.woff and /dev/null differ diff --git a/docs/_static/css/fonts/lato-bold.woff2 b/docs/_static/css/fonts/lato-bold.woff2 deleted file mode 100644 index bb195043c..000000000 Binary files a/docs/_static/css/fonts/lato-bold.woff2 and /dev/null differ diff --git a/docs/_static/css/fonts/lato-normal-italic.woff b/docs/_static/css/fonts/lato-normal-italic.woff deleted file mode 100644 index 76114bc03..000000000 Binary files a/docs/_static/css/fonts/lato-normal-italic.woff and /dev/null differ diff --git a/docs/_static/css/fonts/lato-normal-italic.woff2 b/docs/_static/css/fonts/lato-normal-italic.woff2 deleted file mode 100644 index 3404f37e2..000000000 Binary files a/docs/_static/css/fonts/lato-normal-italic.woff2 and /dev/null differ diff --git a/docs/_static/css/fonts/lato-normal.woff b/docs/_static/css/fonts/lato-normal.woff deleted file mode 100644 index ae1307ff5..000000000 Binary files a/docs/_static/css/fonts/lato-normal.woff and /dev/null differ diff --git a/docs/_static/css/fonts/lato-normal.woff2 b/docs/_static/css/fonts/lato-normal.woff2 deleted file mode 100644 index 3bf984332..000000000 Binary files a/docs/_static/css/fonts/lato-normal.woff2 and /dev/null differ diff --git a/docs/_static/css/theme.css b/docs/_static/css/theme.css deleted file mode 100644 index 034e15d5c..000000000 --- a/docs/_static/css/theme.css +++ /dev/null @@ -1,6149 +0,0 @@ -html { - box-sizing:border-box - } - *, - :after, - :before { - box-sizing:inherit - } - article, - aside, - details, - figcaption, - figure, - footer, - header, - hgroup, - nav, - section { - display:block - } - audio, - canvas, - video { - display:inline-block; - *display:inline; - *zoom:1 - } - [hidden], - audio:not([controls]) { - display:none - } - * { - -webkit-box-sizing:border-box; - -moz-box-sizing:border-box; - box-sizing:border-box - } - html { - font-size:100%; - -webkit-text-size-adjust:100%; - -ms-text-size-adjust:100% - } - body { - margin:0 - } - a:active, - a:hover { - outline:0 - } - abbr[title] { - border-bottom:1px dotted - } - b, - strong { - font-weight:700 - } - blockquote { - margin:0 - } - dfn { - font-style:italic - } - ins { - background:#ff9; - text-decoration:none - } - ins, - mark { - color:#000 - } - mark { - background:#ff0; - font-style:italic; - font-weight:700 - } - .rst-content code, - .rst-content tt, - code, - kbd, - pre, - samp { - font-family:monospace,serif; - _font-family:courier new,monospace; - font-size:1em - } - pre { - white-space:pre - } - q { - quotes:none - } - q:after, - q:before { - content:""; - content:none - } - small { - font-size:85% - } - sub, - sup { - font-size:75%; - line-height:0; - position:relative; - vertical-align:baseline - } - sup { - top:-.5em - } - sub { - bottom:-.25em - } - dl, - ol, - ul { - margin:0; - padding:0; - list-style:none; - list-style-image:none - } - li { - list-style:none - } - dd { - margin:0 - } - img { - border:0; - -ms-interpolation-mode:bicubic; - vertical-align:middle; - max-width:100% - } - svg:not(:root) { - overflow:hidden - } - figure, - form { - margin:0 - } - label { - cursor:pointer - } - button, - input, - select, - textarea { - font-size:100%; - margin:0; - vertical-align:baseline; - *vertical-align:middle - } - button, - input { - line-height:normal - } - button, - input[type=button], - input[type=reset], - input[type=submit] { - cursor:pointer; - -webkit-appearance:button; - *overflow:visible - } - button[disabled], - input[disabled] { - cursor:default - } - input[type=search] { - -webkit-appearance:textfield; - -moz-box-sizing:content-box; - -webkit-box-sizing:content-box; - box-sizing:content-box - } - textarea { - resize:vertical - } - table { - border-collapse:collapse; - border-spacing:0 - } - td { - vertical-align:top - } - .chromeframe { - margin:.2em 0; - background:#ccc; - color:#000; - padding:.2em 0 - } - .ir { - display:block; - border:0; - text-indent:-999em; - overflow:hidden; - background-color:transparent; - background-repeat:no-repeat; - text-align:left; - direction:ltr; - *line-height:0 - } - .ir br { - display:none - } - .hidden { - display:none!important; - visibility:hidden - } - .visuallyhidden { - border:0; - clip:rect(0 0 0 0); - height:1px; - margin:-1px; - overflow:hidden; - padding:0; - position:absolute; - width:1px - } - .visuallyhidden.focusable:active, - .visuallyhidden.focusable:focus { - clip:auto; - height:auto; - margin:0; - overflow:visible; - position:static; - width:auto - } - .invisible { - visibility:hidden - } - .relative { - position:relative - } - big, - small { - font-size:100% - } - @media print { - body, - html, - section { - background:none!important - } - * { - box-shadow:none!important; - text-shadow:none!important; - filter:none!important; - -ms-filter:none!important - } - a, - a:visited { - /* text-decoration:underline */ - text-decoration:none - } - .ir a:after, - a[href^="#"]:after, - a[href^="javascript:"]:after { - content:"" - } - blockquote, - pre { - page-break-inside:avoid - } - thead { - display:table-header-group - } - img, - tr { - page-break-inside:avoid - } - img { - max-width:100%!important - } - @page { - margin:.5cm - } - .rst-content .toctree-wrapper>p.caption, - h2, - h3, - p { - orphans:3; - widows:3 - } - .rst-content .toctree-wrapper>p.caption, - h2, - h3 { - page-break-after:avoid - } - } - .btn, - .fa:before, - .icon:before, - .rst-content .admonition, - .rst-content .admonition-title:before, - .rst-content .admonition-todo, - .rst-content .attention, - .rst-content .caution, - .rst-content .code-block-caption .headerlink:before, - .rst-content .danger, - .rst-content .error, - .rst-content .hint, - .rst-content .important, - .rst-content .note, - .rst-content .seealso, - .rst-content .tip, - .rst-content .warning, - .rst-content code.download span:first-child:before, - .rst-content dl dt .headerlink:before, - .rst-content h1 .headerlink:before, - .rst-content h2 .headerlink:before, - .rst-content h3 .headerlink:before, - .rst-content h4 .headerlink:before, - .rst-content h5 .headerlink:before, - .rst-content h6 .headerlink:before, - .rst-content p.caption .headerlink:before, - .rst-content table>caption .headerlink:before, - .rst-content tt.download span:first-child:before, - .wy-alert, - .wy-dropdown .caret:before, - .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before, - .wy-inline-validate.wy-inline-validate-info .wy-input-context:before, - .wy-inline-validate.wy-inline-validate-success .wy-input-context:before, - .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, - .wy-menu-vertical li.current>a, - .wy-menu-vertical li.current>a span.toctree-expand:before, - .wy-menu-vertical li.on a, - .wy-menu-vertical li.on a span.toctree-expand:before, - .wy-menu-vertical li span.toctree-expand:before, - .wy-nav-top a, - .wy-side-nav-search .wy-dropdown>a, - .wy-side-nav-search>a, - input[type=color], - input[type=date], - input[type=datetime-local], - input[type=datetime], - input[type=email], - input[type=month], - input[type=number], - input[type=password], - input[type=search], - input[type=tel], - input[type=text], - input[type=time], - input[type=url], - input[type=week], - select, - textarea { - -webkit-font-smoothing:antialiased - } - .clearfix { - *zoom:1 - } - .clearfix:after, - .clearfix:before { - display:table; - content:"" - } - .clearfix:after { - clear:both - } - /*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face { - font-family:FontAwesome; - src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713); - src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"), - url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"), - url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"), - url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"), - url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg"); - font-weight:400; - font-style:normal - } - .fa, - .icon, - .rst-content .admonition-title, - .rst-content .code-block-caption .headerlink, - .rst-content code.download span:first-child, - .rst-content dl dt .headerlink, - .rst-content h1 .headerlink, - .rst-content h2 .headerlink, - .rst-content h3 .headerlink, - .rst-content h4 .headerlink, - .rst-content h5 .headerlink, - .rst-content h6 .headerlink, - .rst-content p.caption .headerlink, - .rst-content table>caption .headerlink, - .rst-content tt.download span:first-child, - .wy-menu-vertical li.current>a span.toctree-expand, - .wy-menu-vertical li.on a span.toctree-expand, - .wy-menu-vertical li span.toctree-expand { - display:inline-block; - font:normal normal normal 14px/1 FontAwesome; - font-size:inherit; - text-rendering:auto; - -webkit-font-smoothing:antialiased; - -moz-osx-font-smoothing:grayscale - } - .fa-lg { - font-size:1.33333em; - line-height:.75em; - vertical-align:-15% - } - .fa-2x { - font-size:2em - } - .fa-3x { - font-size:3em - } - .fa-4x { - font-size:4em - } - .fa-5x { - font-size:5em - } - .fa-fw { - width:1.28571em; - text-align:center - } - .fa-ul { - padding-left:0; - margin-left:2.14286em; - list-style-type:none - } - .fa-ul>li { - position:relative - } - .fa-li { - position:absolute; - left:-2.14286em; - width:2.14286em; - top:.14286em; - text-align:center - } - .fa-li.fa-lg { - left:-1.85714em - } - .fa-border { - padding:.2em .25em .15em; - border:.08em solid #eee; - border-radius:.1em - } - .fa-pull-left { - float:left - } - .fa-pull-right { - float:right - } - .fa-pull-left.icon, - .fa.fa-pull-left, - .rst-content .code-block-caption .fa-pull-left.headerlink, - .rst-content .fa-pull-left.admonition-title, - .rst-content code.download span.fa-pull-left:first-child, - .rst-content dl dt .fa-pull-left.headerlink, - .rst-content h1 .fa-pull-left.headerlink, - .rst-content h2 .fa-pull-left.headerlink, - .rst-content h3 .fa-pull-left.headerlink, - .rst-content h4 .fa-pull-left.headerlink, - .rst-content h5 .fa-pull-left.headerlink, - .rst-content h6 .fa-pull-left.headerlink, - .rst-content p.caption .fa-pull-left.headerlink, - .rst-content table>caption .fa-pull-left.headerlink, - .rst-content tt.download span.fa-pull-left:first-child, - .wy-menu-vertical li.current>a span.fa-pull-left.toctree-expand, - .wy-menu-vertical li.on a span.fa-pull-left.toctree-expand, - .wy-menu-vertical li span.fa-pull-left.toctree-expand { - margin-right:.3em - } - .fa-pull-right.icon, - .fa.fa-pull-right, - .rst-content .code-block-caption .fa-pull-right.headerlink, - .rst-content .fa-pull-right.admonition-title, - .rst-content code.download span.fa-pull-right:first-child, - .rst-content dl dt .fa-pull-right.headerlink, - .rst-content h1 .fa-pull-right.headerlink, - .rst-content h2 .fa-pull-right.headerlink, - .rst-content h3 .fa-pull-right.headerlink, - .rst-content h4 .fa-pull-right.headerlink, - .rst-content h5 .fa-pull-right.headerlink, - .rst-content h6 .fa-pull-right.headerlink, - .rst-content p.caption .fa-pull-right.headerlink, - .rst-content table>caption .fa-pull-right.headerlink, - .rst-content tt.download span.fa-pull-right:first-child, - .wy-menu-vertical li.current>a span.fa-pull-right.toctree-expand, - .wy-menu-vertical li.on a span.fa-pull-right.toctree-expand, - .wy-menu-vertical li span.fa-pull-right.toctree-expand { - margin-left:.3em - } - .pull-right { - float:right - } - .pull-left { - float:left - } - .fa.pull-left, - .pull-left.icon, - .rst-content .code-block-caption .pull-left.headerlink, - .rst-content .pull-left.admonition-title, - .rst-content code.download span.pull-left:first-child, - .rst-content dl dt .pull-left.headerlink, - .rst-content h1 .pull-left.headerlink, - .rst-content h2 .pull-left.headerlink, - .rst-content h3 .pull-left.headerlink, - .rst-content h4 .pull-left.headerlink, - .rst-content h5 .pull-left.headerlink, - .rst-content h6 .pull-left.headerlink, - .rst-content p.caption .pull-left.headerlink, - .rst-content table>caption .pull-left.headerlink, - .rst-content tt.download span.pull-left:first-child, - .wy-menu-vertical li.current>a span.pull-left.toctree-expand, - .wy-menu-vertical li.on a span.pull-left.toctree-expand, - .wy-menu-vertical li span.pull-left.toctree-expand { - margin-right:.3em - } - .fa.pull-right, - .pull-right.icon, - .rst-content .code-block-caption .pull-right.headerlink, - .rst-content .pull-right.admonition-title, - .rst-content code.download span.pull-right:first-child, - .rst-content dl dt .pull-right.headerlink, - .rst-content h1 .pull-right.headerlink, - .rst-content h2 .pull-right.headerlink, - .rst-content h3 .pull-right.headerlink, - .rst-content h4 .pull-right.headerlink, - .rst-content h5 .pull-right.headerlink, - .rst-content h6 .pull-right.headerlink, - .rst-content p.caption .pull-right.headerlink, - .rst-content table>caption .pull-right.headerlink, - .rst-content tt.download span.pull-right:first-child, - .wy-menu-vertical li.current>a span.pull-right.toctree-expand, - .wy-menu-vertical li.on a span.pull-right.toctree-expand, - .wy-menu-vertical li span.pull-right.toctree-expand { - margin-left:.3em - } - .fa-spin { - -webkit-animation:fa-spin 2s linear infinite; - animation:fa-spin 2s linear infinite - } - .fa-pulse { - -webkit-animation:fa-spin 1s steps(8) infinite; - animation:fa-spin 1s steps(8) infinite - } - @-webkit-keyframes fa-spin { - 0% { - -webkit-transform:rotate(0deg); - transform:rotate(0deg) - } - to { - -webkit-transform:rotate(359deg); - transform:rotate(359deg) - } - } - @keyframes fa-spin { - 0% { - -webkit-transform:rotate(0deg); - transform:rotate(0deg) - } - to { - -webkit-transform:rotate(359deg); - transform:rotate(359deg) - } - } - .fa-rotate-90 { - -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform:rotate(90deg); - -ms-transform:rotate(90deg); - transform:rotate(90deg) - } - .fa-rotate-180 { - -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform:rotate(180deg); - -ms-transform:rotate(180deg); - transform:rotate(180deg) - } - .fa-rotate-270 { - -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform:rotate(270deg); - -ms-transform:rotate(270deg); - transform:rotate(270deg) - } - .fa-flip-horizontal { - -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform:scaleX(-1); - -ms-transform:scaleX(-1); - transform:scaleX(-1) - } - .fa-flip-vertical { - -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform:scaleY(-1); - -ms-transform:scaleY(-1); - transform:scaleY(-1) - } - :root .fa-flip-horizontal, - :root .fa-flip-vertical, - :root .fa-rotate-90, - :root .fa-rotate-180, - :root .fa-rotate-270 { - filter:none - } - .fa-stack { - position:relative; - display:inline-block; - width:2em; - height:2em; - line-height:2em; - vertical-align:middle - } - .fa-stack-1x, - .fa-stack-2x { - position:absolute; - left:0; - width:100%; - text-align:center - } - .fa-stack-1x { - line-height:inherit - } - .fa-stack-2x { - font-size:2em - } - .fa-inverse { - color:#fff - } - .fa-glass:before { - content:"" - } - .fa-music:before { - content:"" - } - .fa-search:before, - .icon-search:before { - content:"" - } - .fa-envelope-o:before { - content:"" - } - .fa-heart:before { - content:"" - } - .fa-star:before { - content:"" - } - .fa-star-o:before { - content:"" - } - .fa-user:before { - content:"" - } - .fa-film:before { - content:"" - } - .fa-th-large:before { - content:"" - } - .fa-th:before { - content:"" - } - .fa-th-list:before { - content:"" - } - .fa-check:before { - content:"" - } - .fa-close:before, - .fa-remove:before, - .fa-times:before { - content:"" - } - .fa-search-plus:before { - content:"" - } - .fa-search-minus:before { - content:"" - } - .fa-power-off:before { - content:"" - } - .fa-signal:before { - content:"" - } - .fa-cog:before, - .fa-gear:before { - content:"" - } - .fa-trash-o:before { - content:"" - } - .fa-home:before, - .icon-home:before { - content:"" - } - .fa-file-o:before { - content:"" - } - .fa-clock-o:before { - content:"" - } - .fa-road:before { - content:"" - } - .fa-download:before, - .rst-content code.download span:first-child:before, - .rst-content tt.download span:first-child:before { - content:"" - } - .fa-arrow-circle-o-down:before { - content:"" - } - .fa-arrow-circle-o-up:before { - content:"" - } - .fa-inbox:before { - content:"" - } - .fa-play-circle-o:before { - content:"" - } - .fa-repeat:before, - .fa-rotate-right:before { - content:"" - } - .fa-refresh:before { - content:"" - } - .fa-list-alt:before { - content:"" - } - .fa-lock:before { - content:"" - } - .fa-flag:before { - content:"" - } - .fa-headphones:before { - content:"" - } - .fa-volume-off:before { - content:"" - } - .fa-volume-down:before { - content:"" - } - .fa-volume-up:before { - content:"" - } - .fa-qrcode:before { - content:"" - } - .fa-barcode:before { - content:"" - } - .fa-tag:before { - content:"" - } - .fa-tags:before { - content:"" - } - .fa-book:before, - .icon-book:before { - content:"" - } - .fa-bookmark:before { - content:"" - } - .fa-print:before { - content:"" - } - .fa-camera:before { - content:"" - } - .fa-font:before { - content:"" - } - .fa-bold:before { - content:"" - } - .fa-italic:before { - content:"" - } - .fa-text-height:before { - content:"" - } - .fa-text-width:before { - content:"" - } - .fa-align-left:before { - content:"" - } - .fa-align-center:before { - content:"" - } - .fa-align-right:before { - content:"" - } - .fa-align-justify:before { - content:"" - } - .fa-list:before { - content:"" - } - .fa-dedent:before, - .fa-outdent:before { - content:"" - } - .fa-indent:before { - content:"" - } - .fa-video-camera:before { - content:"" - } - .fa-image:before, - .fa-photo:before, - .fa-picture-o:before { - content:"" - } - .fa-pencil:before { - content:"" - } - .fa-map-marker:before { - content:"" - } - .fa-adjust:before { - content:"" - } - .fa-tint:before { - content:"" - } - .fa-edit:before, - .fa-pencil-square-o:before { - content:"" - } - .fa-share-square-o:before { - content:"" - } - .fa-check-square-o:before { - content:"" - } - .fa-arrows:before { - content:"" - } - .fa-step-backward:before { - content:"" - } - .fa-fast-backward:before { - content:"" - } - .fa-backward:before { - content:"" - } - .fa-play:before { - content:"" - } - .fa-pause:before { - content:"" - } - .fa-stop:before { - content:"" - } - .fa-forward:before { - content:"" - } - .fa-fast-forward:before { - content:"" - } - .fa-step-forward:before { - content:"" - } - .fa-eject:before { - content:"" - } - .fa-chevron-left:before { - content:"" - } - .fa-chevron-right:before { - content:"" - } - .fa-plus-circle:before { - content:"" - } - .fa-minus-circle:before { - content:"" - } - .fa-times-circle:before, - .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before { - content:"" - } - .fa-check-circle:before, - .wy-inline-validate.wy-inline-validate-success .wy-input-context:before { - content:"" - } - .fa-question-circle:before { - content:"" - } - .fa-info-circle:before { - content:"" - } - .fa-crosshairs:before { - content:"" - } - .fa-times-circle-o:before { - content:"" - } - .fa-check-circle-o:before { - content:"" - } - .fa-ban:before { - content:"" - } - .fa-arrow-left:before { - content:"" - } - .fa-arrow-right:before { - content:"" - } - .fa-arrow-up:before { - content:"" - } - .fa-arrow-down:before { - content:"" - } - .fa-mail-forward:before, - .fa-share:before { - content:"" - } - .fa-expand:before { - content:"" - } - .fa-compress:before { - content:"" - } - .fa-plus:before { - content:"" - } - .fa-minus:before { - content:"" - } - .fa-asterisk:before { - content:"" - } - .fa-exclamation-circle:before, - .rst-content .admonition-title:before, - .wy-inline-validate.wy-inline-validate-info .wy-input-context:before, - .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before { - content:"" - } - .fa-gift:before { - content:"" - } - .fa-leaf:before { - content:"" - } - .fa-fire:before, - .icon-fire:before { - content:"" - } - .fa-eye:before { - content:"" - } - .fa-eye-slash:before { - content:"" - } - .fa-exclamation-triangle:before, - .fa-warning:before { - content:"" - } - .fa-plane:before { - content:"" - } - .fa-calendar:before { - content:"" - } - .fa-random:before { - content:"" - } - .fa-comment:before { - content:"" - } - .fa-magnet:before { - content:"" - } - .fa-chevron-up:before { - content:"" - } - .fa-chevron-down:before { - content:"" - } - .fa-retweet:before { - content:"" - } - .fa-shopping-cart:before { - content:"" - } - .fa-folder:before { - content:"" - } - .fa-folder-open:before { - content:"" - } - .fa-arrows-v:before { - content:"" - } - .fa-arrows-h:before { - content:"" - } - .fa-bar-chart-o:before, - .fa-bar-chart:before { - content:"" - } - .fa-twitter-square:before { - content:"" - } - .fa-facebook-square:before { - content:"" - } - .fa-camera-retro:before { - content:"" - } - .fa-key:before { - content:"" - } - .fa-cogs:before, - .fa-gears:before { - content:"" - } - .fa-comments:before { - content:"" - } - .fa-thumbs-o-up:before { - content:"" - } - .fa-thumbs-o-down:before { - content:"" - } - .fa-star-half:before { - content:"" - } - .fa-heart-o:before { - content:"" - } - .fa-sign-out:before { - content:"" - } - .fa-linkedin-square:before { - content:"" - } - .fa-thumb-tack:before { - content:"" - } - .fa-external-link:before { - content:"" - } - .fa-sign-in:before { - content:"" - } - .fa-trophy:before { - content:"" - } - .fa-github-square:before { - content:"" - } - .fa-upload:before { - content:"" - } - .fa-lemon-o:before { - content:"" - } - .fa-phone:before { - content:"" - } - .fa-square-o:before { - content:"" - } - .fa-bookmark-o:before { - content:"" - } - .fa-phone-square:before { - content:"" - } - .fa-twitter:before { - content:"" - } - .fa-facebook-f:before, - .fa-facebook:before { - content:"" - } - .fa-github:before, - .icon-github:before { - content:"" - } - .fa-unlock:before { - content:"" - } - .fa-credit-card:before { - content:"" - } - .fa-feed:before, - .fa-rss:before { - content:"" - } - .fa-hdd-o:before { - content:"" - } - .fa-bullhorn:before { - content:"" - } - .fa-bell:before { - content:"" - } - .fa-certificate:before { - content:"" - } - .fa-hand-o-right:before { - content:"" - } - .fa-hand-o-left:before { - content:"" - } - .fa-hand-o-up:before { - content:"" - } - .fa-hand-o-down:before { - content:"" - } - .fa-arrow-circle-left:before, - .icon-circle-arrow-left:before { - content:"" - } - .fa-arrow-circle-right:before, - .icon-circle-arrow-right:before { - content:"" - } - .fa-arrow-circle-up:before { - content:"" - } - .fa-arrow-circle-down:before { - content:"" - } - .fa-globe:before { - content:"" - } - .fa-wrench:before { - content:"" - } - .fa-tasks:before { - content:"" - } - .fa-filter:before { - content:"" - } - .fa-briefcase:before { - content:"" - } - .fa-arrows-alt:before { - content:"" - } - .fa-group:before, - .fa-users:before { - content:"" - } - .fa-chain:before, - .fa-link:before, - .icon-link:before { - content:"" - } - .fa-cloud:before { - content:"" - } - .fa-flask:before { - content:"" - } - .fa-cut:before, - .fa-scissors:before { - content:"" - } - .fa-copy:before, - .fa-files-o:before { - content:"" - } - .fa-paperclip:before { - content:"" - } - .fa-floppy-o:before, - .fa-save:before { - content:"" - } - .fa-square:before { - content:"" - } - .fa-bars:before, - .fa-navicon:before, - .fa-reorder:before { - content:"" - } - .fa-list-ul:before { - content:"" - } - .fa-list-ol:before { - content:"" - } - .fa-strikethrough:before { - content:"" - } - .fa-underline:before { - content:"" - } - .fa-table:before { - content:"" - } - .fa-magic:before { - content:"" - } - .fa-truck:before { - content:"" - } - .fa-pinterest:before { - content:"" - } - .fa-pinterest-square:before { - content:"" - } - .fa-google-plus-square:before { - content:"" - } - .fa-google-plus:before { - content:"" - } - .fa-money:before { - content:"" - } - .fa-caret-down:before, - .icon-caret-down:before, - .wy-dropdown .caret:before { - content:"" - } - .fa-caret-up:before { - content:"" - } - .fa-caret-left:before { - content:"" - } - .fa-caret-right:before { - content:"" - } - .fa-columns:before { - content:"" - } - .fa-sort:before, - .fa-unsorted:before { - content:"" - } - .fa-sort-desc:before, - .fa-sort-down:before { - content:"" - } - .fa-sort-asc:before, - .fa-sort-up:before { - content:"" - } - .fa-envelope:before { - content:"" - } - .fa-linkedin:before { - content:"" - } - .fa-rotate-left:before, - .fa-undo:before { - content:"" - } - .fa-gavel:before, - .fa-legal:before { - content:"" - } - .fa-dashboard:before, - .fa-tachometer:before { - content:"" - } - .fa-comment-o:before { - content:"" - } - .fa-comments-o:before { - content:"" - } - .fa-bolt:before, - .fa-flash:before { - content:"" - } - .fa-sitemap:before { - content:"" - } - .fa-umbrella:before { - content:"" - } - .fa-clipboard:before, - .fa-paste:before { - content:"" - } - .fa-lightbulb-o:before { - content:"" - } - .fa-exchange:before { - content:"" - } - .fa-cloud-download:before { - content:"" - } - .fa-cloud-upload:before { - content:"" - } - .fa-user-md:before { - content:"" - } - .fa-stethoscope:before { - content:"" - } - .fa-suitcase:before { - content:"" - } - .fa-bell-o:before { - content:"" - } - .fa-coffee:before { - content:"" - } - .fa-cutlery:before { - content:"" - } - .fa-file-text-o:before { - content:"" - } - .fa-building-o:before { - content:"" - } - .fa-hospital-o:before { - content:"" - } - .fa-ambulance:before { - content:"" - } - .fa-medkit:before { - content:"" - } - .fa-fighter-jet:before { - content:"" - } - .fa-beer:before { - content:"" - } - .fa-h-square:before { - content:"" - } - .fa-plus-square:before { - content:"" - } - .fa-angle-double-left:before { - content:"" - } - .fa-angle-double-right:before { - content:"" - } - .fa-angle-double-up:before { - content:"" - } - .fa-angle-double-down:before { - content:"" - } - .fa-angle-left:before { - content:"" - } - .fa-angle-right:before { - content:"" - } - .fa-angle-up:before { - content:"" - } - .fa-angle-down:before { - content:"" - } - .fa-desktop:before { - content:"" - } - .fa-laptop:before { - content:"" - } - .fa-tablet:before { - content:"" - } - .fa-mobile-phone:before, - .fa-mobile:before { - content:"" - } - .fa-circle-o:before { - content:"" - } - .fa-quote-left:before { - content:"" - } - .fa-quote-right:before { - content:"" - } - .fa-spinner:before { - content:"" - } - .fa-circle:before { - content:"" - } - .fa-mail-reply:before, - .fa-reply:before { - content:"" - } - .fa-github-alt:before { - content:"" - } - .fa-folder-o:before { - content:"" - } - .fa-folder-open-o:before { - content:"" - } - .fa-smile-o:before { - content:"" - } - .fa-frown-o:before { - content:"" - } - .fa-meh-o:before { - content:"" - } - .fa-gamepad:before { - content:"" - } - .fa-keyboard-o:before { - content:"" - } - .fa-flag-o:before { - content:"" - } - .fa-flag-checkered:before { - content:"" - } - .fa-terminal:before { - content:"" - } - .fa-code:before { - content:"" - } - .fa-mail-reply-all:before, - .fa-reply-all:before { - content:"" - } - .fa-star-half-empty:before, - .fa-star-half-full:before, - .fa-star-half-o:before { - content:"" - } - .fa-location-arrow:before { - content:"" - } - .fa-crop:before { - content:"" - } - .fa-code-fork:before { - content:"" - } - .fa-chain-broken:before, - .fa-unlink:before { - content:"" - } - .fa-question:before { - content:"" - } - .fa-info:before { - content:"" - } - .fa-exclamation:before { - content:"" - } - .fa-superscript:before { - content:"" - } - .fa-subscript:before { - content:"" - } - .fa-eraser:before { - content:"" - } - .fa-puzzle-piece:before { - content:"" - } - .fa-microphone:before { - content:"" - } - .fa-microphone-slash:before { - content:"" - } - .fa-shield:before { - content:"" - } - .fa-calendar-o:before { - content:"" - } - .fa-fire-extinguisher:before { - content:"" - } - .fa-rocket:before { - content:"" - } - .fa-maxcdn:before { - content:"" - } - .fa-chevron-circle-left:before { - content:"" - } - .fa-chevron-circle-right:before { - content:"" - } - .fa-chevron-circle-up:before { - content:"" - } - .fa-chevron-circle-down:before { - content:"" - } - .fa-html5:before { - content:"" - } - .fa-css3:before { - content:"" - } - .fa-anchor:before { - content:"" - } - .fa-unlock-alt:before { - content:"" - } - .fa-bullseye:before { - content:"" - } - .fa-ellipsis-h:before { - content:"" - } - .fa-ellipsis-v:before { - content:"" - } - .fa-rss-square:before { - content:"" - } - .fa-play-circle:before { - content:"" - } - .fa-ticket:before { - content:"" - } - .fa-minus-square:before { - content:"" - } - .fa-minus-square-o:before, - .wy-menu-vertical li.current>a span.toctree-expand:before, - .wy-menu-vertical li.on a span.toctree-expand:before { - content:"" - } - .fa-level-up:before { - content:"" - } - .fa-level-down:before { - content:"" - } - .fa-check-square:before { - content:"" - } - .fa-pencil-square:before { - content:"" - } - .fa-external-link-square:before { - content:"" - } - .fa-share-square:before { - content:"" - } - .fa-compass:before { - content:"" - } - .fa-caret-square-o-down:before, - .fa-toggle-down:before { - content:"" - } - .fa-caret-square-o-up:before, - .fa-toggle-up:before { - content:"" - } - .fa-caret-square-o-right:before, - .fa-toggle-right:before { - content:"" - } - .fa-eur:before, - .fa-euro:before { - content:"" - } - .fa-gbp:before { - content:"" - } - .fa-dollar:before, - .fa-usd:before { - content:"" - } - .fa-inr:before, - .fa-rupee:before { - content:"" - } - .fa-cny:before, - .fa-jpy:before, - .fa-rmb:before, - .fa-yen:before { - content:"" - } - .fa-rouble:before, - .fa-rub:before, - .fa-ruble:before { - content:"" - } - .fa-krw:before, - .fa-won:before { - content:"" - } - .fa-bitcoin:before, - .fa-btc:before { - content:"" - } - .fa-file:before { - content:"" - } - .fa-file-text:before { - content:"" - } - .fa-sort-alpha-asc:before { - content:"" - } - .fa-sort-alpha-desc:before { - content:"" - } - .fa-sort-amount-asc:before { - content:"" - } - .fa-sort-amount-desc:before { - content:"" - } - .fa-sort-numeric-asc:before { - content:"" - } - .fa-sort-numeric-desc:before { - content:"" - } - .fa-thumbs-up:before { - content:"" - } - .fa-thumbs-down:before { - content:"" - } - .fa-youtube-square:before { - content:"" - } - .fa-youtube:before { - content:"" - } - .fa-xing:before { - content:"" - } - .fa-xing-square:before { - content:"" - } - .fa-youtube-play:before { - content:"" - } - .fa-dropbox:before { - content:"" - } - .fa-stack-overflow:before { - content:"" - } - .fa-instagram:before { - content:"" - } - .fa-flickr:before { - content:"" - } - .fa-adn:before { - content:"" - } - .fa-bitbucket:before, - .icon-bitbucket:before { - content:"" - } - .fa-bitbucket-square:before { - content:"" - } - .fa-tumblr:before { - content:"" - } - .fa-tumblr-square:before { - content:"" - } - .fa-long-arrow-down:before { - content:"" - } - .fa-long-arrow-up:before { - content:"" - } - .fa-long-arrow-left:before { - content:"" - } - .fa-long-arrow-right:before { - content:"" - } - .fa-apple:before { - content:"" - } - .fa-windows:before { - content:"" - } - .fa-android:before { - content:"" - } - .fa-linux:before { - content:"" - } - .fa-dribbble:before { - content:"" - } - .fa-skype:before { - content:"" - } - .fa-foursquare:before { - content:"" - } - .fa-trello:before { - content:"" - } - .fa-female:before { - content:"" - } - .fa-male:before { - content:"" - } - .fa-gittip:before, - .fa-gratipay:before { - content:"" - } - .fa-sun-o:before { - content:"" - } - .fa-moon-o:before { - content:"" - } - .fa-archive:before { - content:"" - } - .fa-bug:before { - content:"" - } - .fa-vk:before { - content:"" - } - .fa-weibo:before { - content:"" - } - .fa-renren:before { - content:"" - } - .fa-pagelines:before { - content:"" - } - .fa-stack-exchange:before { - content:"" - } - .fa-arrow-circle-o-right:before { - content:"" - } - .fa-arrow-circle-o-left:before { - content:"" - } - .fa-caret-square-o-left:before, - .fa-toggle-left:before { - content:"" - } - .fa-dot-circle-o:before { - content:"" - } - .fa-wheelchair:before { - content:"" - } - .fa-vimeo-square:before { - content:"" - } - .fa-try:before, - .fa-turkish-lira:before { - content:"" - } - .fa-plus-square-o:before, - .wy-menu-vertical li span.toctree-expand:before { - content:"" - } - .fa-space-shuttle:before { - content:"" - } - .fa-slack:before { - content:"" - } - .fa-envelope-square:before { - content:"" - } - .fa-wordpress:before { - content:"" - } - .fa-openid:before { - content:"" - } - .fa-bank:before, - .fa-institution:before, - .fa-university:before { - content:"" - } - .fa-graduation-cap:before, - .fa-mortar-board:before { - content:"" - } - .fa-yahoo:before { - content:"" - } - .fa-google:before { - content:"" - } - .fa-reddit:before { - content:"" - } - .fa-reddit-square:before { - content:"" - } - .fa-stumbleupon-circle:before { - content:"" - } - .fa-stumbleupon:before { - content:"" - } - .fa-delicious:before { - content:"" - } - .fa-digg:before { - content:"" - } - .fa-pied-piper-pp:before { - content:"" - } - .fa-pied-piper-alt:before { - content:"" - } - .fa-drupal:before { - content:"" - } - .fa-joomla:before { - content:"" - } - .fa-language:before { - content:"" - } - .fa-fax:before { - content:"" - } - .fa-building:before { - content:"" - } - .fa-child:before { - content:"" - } - .fa-paw:before { - content:"" - } - .fa-spoon:before { - content:"" - } - .fa-cube:before { - content:"" - } - .fa-cubes:before { - content:"" - } - .fa-behance:before { - content:"" - } - .fa-behance-square:before { - content:"" - } - .fa-steam:before { - content:"" - } - .fa-steam-square:before { - content:"" - } - .fa-recycle:before { - content:"" - } - .fa-automobile:before, - .fa-car:before { - content:"" - } - .fa-cab:before, - .fa-taxi:before { - content:"" - } - .fa-tree:before { - content:"" - } - .fa-spotify:before { - content:"" - } - .fa-deviantart:before { - content:"" - } - .fa-soundcloud:before { - content:"" - } - .fa-database:before { - content:"" - } - .fa-file-pdf-o:before { - content:"" - } - .fa-file-word-o:before { - content:"" - } - .fa-file-excel-o:before { - content:"" - } - .fa-file-powerpoint-o:before { - content:"" - } - .fa-file-image-o:before, - .fa-file-photo-o:before, - .fa-file-picture-o:before { - content:"" - } - .fa-file-archive-o:before, - .fa-file-zip-o:before { - content:"" - } - .fa-file-audio-o:before, - .fa-file-sound-o:before { - content:"" - } - .fa-file-movie-o:before, - .fa-file-video-o:before { - content:"" - } - .fa-file-code-o:before { - content:"" - } - .fa-vine:before { - content:"" - } - .fa-codepen:before { - content:"" - } - .fa-jsfiddle:before { - content:"" - } - .fa-life-bouy:before, - .fa-life-buoy:before, - .fa-life-ring:before, - .fa-life-saver:before, - .fa-support:before { - content:"" - } - .fa-circle-o-notch:before { - content:"" - } - .fa-ra:before, - .fa-rebel:before, - .fa-resistance:before { - content:"" - } - .fa-empire:before, - .fa-ge:before { - content:"" - } - .fa-git-square:before { - content:"" - } - .fa-git:before { - content:"" - } - .fa-hacker-news:before, - .fa-y-combinator-square:before, - .fa-yc-square:before { - content:"" - } - .fa-tencent-weibo:before { - content:"" - } - .fa-qq:before { - content:"" - } - .fa-wechat:before, - .fa-weixin:before { - content:"" - } - .fa-paper-plane:before, - .fa-send:before { - content:"" - } - .fa-paper-plane-o:before, - .fa-send-o:before { - content:"" - } - .fa-history:before { - content:"" - } - .fa-circle-thin:before { - content:"" - } - .fa-header:before { - content:"" - } - .fa-paragraph:before { - content:"" - } - .fa-sliders:before { - content:"" - } - .fa-share-alt:before { - content:"" - } - .fa-share-alt-square:before { - content:"" - } - .fa-bomb:before { - content:"" - } - .fa-futbol-o:before, - .fa-soccer-ball-o:before { - content:"" - } - .fa-tty:before { - content:"" - } - .fa-binoculars:before { - content:"" - } - .fa-plug:before { - content:"" - } - .fa-slideshare:before { - content:"" - } - .fa-twitch:before { - content:"" - } - .fa-yelp:before { - content:"" - } - .fa-newspaper-o:before { - content:"" - } - .fa-wifi:before { - content:"" - } - .fa-calculator:before { - content:"" - } - .fa-paypal:before { - content:"" - } - .fa-google-wallet:before { - content:"" - } - .fa-cc-visa:before { - content:"" - } - .fa-cc-mastercard:before { - content:"" - } - .fa-cc-discover:before { - content:"" - } - .fa-cc-amex:before { - content:"" - } - .fa-cc-paypal:before { - content:"" - } - .fa-cc-stripe:before { - content:"" - } - .fa-bell-slash:before { - content:"" - } - .fa-bell-slash-o:before { - content:"" - } - .fa-trash:before { - content:"" - } - .fa-copyright:before { - content:"" - } - .fa-at:before { - content:"" - } - .fa-eyedropper:before { - content:"" - } - .fa-paint-brush:before { - content:"" - } - .fa-birthday-cake:before { - content:"" - } - .fa-area-chart:before { - content:"" - } - .fa-pie-chart:before { - content:"" - } - .fa-line-chart:before { - content:"" - } - .fa-lastfm:before { - content:"" - } - .fa-lastfm-square:before { - content:"" - } - .fa-toggle-off:before { - content:"" - } - .fa-toggle-on:before { - content:"" - } - .fa-bicycle:before { - content:"" - } - .fa-bus:before { - content:"" - } - .fa-ioxhost:before { - content:"" - } - .fa-angellist:before { - content:"" - } - .fa-cc:before { - content:"" - } - .fa-ils:before, - .fa-shekel:before, - .fa-sheqel:before { - content:"" - } - .fa-meanpath:before { - content:"" - } - .fa-buysellads:before { - content:"" - } - .fa-connectdevelop:before { - content:"" - } - .fa-dashcube:before { - content:"" - } - .fa-forumbee:before { - content:"" - } - .fa-leanpub:before { - content:"" - } - .fa-sellsy:before { - content:"" - } - .fa-shirtsinbulk:before { - content:"" - } - .fa-simplybuilt:before { - content:"" - } - .fa-skyatlas:before { - content:"" - } - .fa-cart-plus:before { - content:"" - } - .fa-cart-arrow-down:before { - content:"" - } - .fa-diamond:before { - content:"" - } - .fa-ship:before { - content:"" - } - .fa-user-secret:before { - content:"" - } - .fa-motorcycle:before { - content:"" - } - .fa-street-view:before { - content:"" - } - .fa-heartbeat:before { - content:"" - } - .fa-venus:before { - content:"" - } - .fa-mars:before { - content:"" - } - .fa-mercury:before { - content:"" - } - .fa-intersex:before, - .fa-transgender:before { - content:"" - } - .fa-transgender-alt:before { - content:"" - } - .fa-venus-double:before { - content:"" - } - .fa-mars-double:before { - content:"" - } - .fa-venus-mars:before { - content:"" - } - .fa-mars-stroke:before { - content:"" - } - .fa-mars-stroke-v:before { - content:"" - } - .fa-mars-stroke-h:before { - content:"" - } - .fa-neuter:before { - content:"" - } - .fa-genderless:before { - content:"" - } - .fa-facebook-official:before { - content:"" - } - .fa-pinterest-p:before { - content:"" - } - .fa-whatsapp:before { - content:"" - } - .fa-server:before { - content:"" - } - .fa-user-plus:before { - content:"" - } - .fa-user-times:before { - content:"" - } - .fa-bed:before, - .fa-hotel:before { - content:"" - } - .fa-viacoin:before { - content:"" - } - .fa-train:before { - content:"" - } - .fa-subway:before { - content:"" - } - .fa-medium:before { - content:"" - } - .fa-y-combinator:before, - .fa-yc:before { - content:"" - } - .fa-optin-monster:before { - content:"" - } - .fa-opencart:before { - content:"" - } - .fa-expeditedssl:before { - content:"" - } - .fa-battery-4:before, - .fa-battery-full:before, - .fa-battery:before { - content:"" - } - .fa-battery-3:before, - .fa-battery-three-quarters:before { - content:"" - } - .fa-battery-2:before, - .fa-battery-half:before { - content:"" - } - .fa-battery-1:before, - .fa-battery-quarter:before { - content:"" - } - .fa-battery-0:before, - .fa-battery-empty:before { - content:"" - } - .fa-mouse-pointer:before { - content:"" - } - .fa-i-cursor:before { - content:"" - } - .fa-object-group:before { - content:"" - } - .fa-object-ungroup:before { - content:"" - } - .fa-sticky-note:before { - content:"" - } - .fa-sticky-note-o:before { - content:"" - } - .fa-cc-jcb:before { - content:"" - } - .fa-cc-diners-club:before { - content:"" - } - .fa-clone:before { - content:"" - } - .fa-balance-scale:before { - content:"" - } - .fa-hourglass-o:before { - content:"" - } - .fa-hourglass-1:before, - .fa-hourglass-start:before { - content:"" - } - .fa-hourglass-2:before, - .fa-hourglass-half:before { - content:"" - } - .fa-hourglass-3:before, - .fa-hourglass-end:before { - content:"" - } - .fa-hourglass:before { - content:"" - } - .fa-hand-grab-o:before, - .fa-hand-rock-o:before { - content:"" - } - .fa-hand-paper-o:before, - .fa-hand-stop-o:before { - content:"" - } - .fa-hand-scissors-o:before { - content:"" - } - .fa-hand-lizard-o:before { - content:"" - } - .fa-hand-spock-o:before { - content:"" - } - .fa-hand-pointer-o:before { - content:"" - } - .fa-hand-peace-o:before { - content:"" - } - .fa-trademark:before { - content:"" - } - .fa-registered:before { - content:"" - } - .fa-creative-commons:before { - content:"" - } - .fa-gg:before { - content:"" - } - .fa-gg-circle:before { - content:"" - } - .fa-tripadvisor:before { - content:"" - } - .fa-odnoklassniki:before { - content:"" - } - .fa-odnoklassniki-square:before { - content:"" - } - .fa-get-pocket:before { - content:"" - } - .fa-wikipedia-w:before { - content:"" - } - .fa-safari:before { - content:"" - } - .fa-chrome:before { - content:"" - } - .fa-firefox:before { - content:"" - } - .fa-opera:before { - content:"" - } - .fa-internet-explorer:before { - content:"" - } - .fa-television:before, - .fa-tv:before { - content:"" - } - .fa-contao:before { - content:"" - } - .fa-500px:before { - content:"" - } - .fa-amazon:before { - content:"" - } - .fa-calendar-plus-o:before { - content:"" - } - .fa-calendar-minus-o:before { - content:"" - } - .fa-calendar-times-o:before { - content:"" - } - .fa-calendar-check-o:before { - content:"" - } - .fa-industry:before { - content:"" - } - .fa-map-pin:before { - content:"" - } - .fa-map-signs:before { - content:"" - } - .fa-map-o:before { - content:"" - } - .fa-map:before { - content:"" - } - .fa-commenting:before { - content:"" - } - .fa-commenting-o:before { - content:"" - } - .fa-houzz:before { - content:"" - } - .fa-vimeo:before { - content:"" - } - .fa-black-tie:before { - content:"" - } - .fa-fonticons:before { - content:"" - } - .fa-reddit-alien:before { - content:"" - } - .fa-edge:before { - content:"" - } - .fa-credit-card-alt:before { - content:"" - } - .fa-codiepie:before { - content:"" - } - .fa-modx:before { - content:"" - } - .fa-fort-awesome:before { - content:"" - } - .fa-usb:before { - content:"" - } - .fa-product-hunt:before { - content:"" - } - .fa-mixcloud:before { - content:"" - } - .fa-scribd:before { - content:"" - } - .fa-pause-circle:before { - content:"" - } - .fa-pause-circle-o:before { - content:"" - } - .fa-stop-circle:before { - content:"" - } - .fa-stop-circle-o:before { - content:"" - } - .fa-shopping-bag:before { - content:"" - } - .fa-shopping-basket:before { - content:"" - } - .fa-hashtag:before { - content:"" - } - .fa-bluetooth:before { - content:"" - } - .fa-bluetooth-b:before { - content:"" - } - .fa-percent:before { - content:"" - } - .fa-gitlab:before, - .icon-gitlab:before { - content:"" - } - .fa-wpbeginner:before { - content:"" - } - .fa-wpforms:before { - content:"" - } - .fa-envira:before { - content:"" - } - .fa-universal-access:before { - content:"" - } - .fa-wheelchair-alt:before { - content:"" - } - .fa-question-circle-o:before { - content:"" - } - .fa-blind:before { - content:"" - } - .fa-audio-description:before { - content:"" - } - .fa-volume-control-phone:before { - content:"" - } - .fa-braille:before { - content:"" - } - .fa-assistive-listening-systems:before { - content:"" - } - .fa-american-sign-language-interpreting:before, - .fa-asl-interpreting:before { - content:"" - } - .fa-deaf:before, - .fa-deafness:before, - .fa-hard-of-hearing:before { - content:"" - } - .fa-glide:before { - content:"" - } - .fa-glide-g:before { - content:"" - } - .fa-sign-language:before, - .fa-signing:before { - content:"" - } - .fa-low-vision:before { - content:"" - } - .fa-viadeo:before { - content:"" - } - .fa-viadeo-square:before { - content:"" - } - .fa-snapchat:before { - content:"" - } - .fa-snapchat-ghost:before { - content:"" - } - .fa-snapchat-square:before { - content:"" - } - .fa-pied-piper:before { - content:"" - } - .fa-first-order:before { - content:"" - } - .fa-yoast:before { - content:"" - } - .fa-themeisle:before { - content:"" - } - .fa-google-plus-circle:before, - .fa-google-plus-official:before { - content:"" - } - .fa-fa:before, - .fa-font-awesome:before { - content:"" - } - .fa-handshake-o:before { - content:"" - } - .fa-envelope-open:before { - content:"" - } - .fa-envelope-open-o:before { - content:"" - } - .fa-linode:before { - content:"" - } - .fa-address-book:before { - content:"" - } - .fa-address-book-o:before { - content:"" - } - .fa-address-card:before, - .fa-vcard:before { - content:"" - } - .fa-address-card-o:before, - .fa-vcard-o:before { - content:"" - } - .fa-user-circle:before { - content:"" - } - .fa-user-circle-o:before { - content:"" - } - .fa-user-o:before { - content:"" - } - .fa-id-badge:before { - content:"" - } - .fa-drivers-license:before, - .fa-id-card:before { - content:"" - } - .fa-drivers-license-o:before, - .fa-id-card-o:before { - content:"" - } - .fa-quora:before { - content:"" - } - .fa-free-code-camp:before { - content:"" - } - .fa-telegram:before { - content:"" - } - .fa-thermometer-4:before, - .fa-thermometer-full:before, - .fa-thermometer:before { - content:"" - } - .fa-thermometer-3:before, - .fa-thermometer-three-quarters:before { - content:"" - } - .fa-thermometer-2:before, - .fa-thermometer-half:before { - content:"" - } - .fa-thermometer-1:before, - .fa-thermometer-quarter:before { - content:"" - } - .fa-thermometer-0:before, - .fa-thermometer-empty:before { - content:"" - } - .fa-shower:before { - content:"" - } - .fa-bath:before, - .fa-bathtub:before, - .fa-s15:before { - content:"" - } - .fa-podcast:before { - content:"" - } - .fa-window-maximize:before { - content:"" - } - .fa-window-minimize:before { - content:"" - } - .fa-window-restore:before { - content:"" - } - .fa-times-rectangle:before, - .fa-window-close:before { - content:"" - } - .fa-times-rectangle-o:before, - .fa-window-close-o:before { - content:"" - } - .fa-bandcamp:before { - content:"" - } - .fa-grav:before { - content:"" - } - .fa-etsy:before { - content:"" - } - .fa-imdb:before { - content:"" - } - .fa-ravelry:before { - content:"" - } - .fa-eercast:before { - content:"" - } - .fa-microchip:before { - content:"" - } - .fa-snowflake-o:before { - content:"" - } - .fa-superpowers:before { - content:"" - } - .fa-wpexplorer:before { - content:"" - } - .fa-meetup:before { - content:"" - } - .sr-only { - position:absolute; - width:1px; - height:1px; - padding:0; - margin:-1px; - overflow:hidden; - clip:rect(0,0,0,0); - border:0 - } - .sr-only-focusable:active, - .sr-only-focusable:focus { - position:static; - width:auto; - height:auto; - margin:0; - overflow:visible; - clip:auto - } - .fa, - .icon, - .rst-content .admonition-title, - .rst-content .code-block-caption .headerlink, - .rst-content code.download span:first-child, - .rst-content dl dt .headerlink, - .rst-content h1 .headerlink, - .rst-content h2 .headerlink, - .rst-content h3 .headerlink, - .rst-content h4 .headerlink, - .rst-content h5 .headerlink, - .rst-content h6 .headerlink, - .rst-content p.caption .headerlink, - .rst-content table>caption .headerlink, - .rst-content tt.download span:first-child, - .wy-dropdown .caret, - .wy-inline-validate.wy-inline-validate-danger .wy-input-context, - .wy-inline-validate.wy-inline-validate-info .wy-input-context, - .wy-inline-validate.wy-inline-validate-success .wy-input-context, - .wy-inline-validate.wy-inline-validate-warning .wy-input-context, - .wy-menu-vertical li.current>a span.toctree-expand, - .wy-menu-vertical li.on a span.toctree-expand, - .wy-menu-vertical li span.toctree-expand { - font-family:inherit - } - .fa:before, - .icon:before, - .rst-content .admonition-title:before, - .rst-content .code-block-caption .headerlink:before, - .rst-content code.download span:first-child:before, - .rst-content dl dt .headerlink:before, - .rst-content h1 .headerlink:before, - .rst-content h2 .headerlink:before, - .rst-content h3 .headerlink:before, - .rst-content h4 .headerlink:before, - .rst-content h5 .headerlink:before, - .rst-content h6 .headerlink:before, - .rst-content p.caption .headerlink:before, - .rst-content table>caption .headerlink:before, - .rst-content tt.download span:first-child:before, - .wy-dropdown .caret:before, - .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before, - .wy-inline-validate.wy-inline-validate-info .wy-input-context:before, - .wy-inline-validate.wy-inline-validate-success .wy-input-context:before, - .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, - .wy-menu-vertical li.current>a span.toctree-expand:before, - .wy-menu-vertical li.on a span.toctree-expand:before, - .wy-menu-vertical li span.toctree-expand:before { - font-family:FontAwesome; - display:inline-block; - font-style:normal; - font-weight:400; - line-height:1; - text-decoration:inherit - } - .rst-content .code-block-caption a .headerlink, - .rst-content a .admonition-title, - .rst-content code.download a span:first-child, - .rst-content dl dt a .headerlink, - .rst-content h1 a .headerlink, - .rst-content h2 a .headerlink, - .rst-content h3 a .headerlink, - .rst-content h4 a .headerlink, - .rst-content h5 a .headerlink, - .rst-content h6 a .headerlink, - .rst-content p.caption a .headerlink, - .rst-content table>caption a .headerlink, - .rst-content tt.download a span:first-child, - .wy-menu-vertical li.current>a span.toctree-expand, - .wy-menu-vertical li.on a span.toctree-expand, - .wy-menu-vertical li a span.toctree-expand, - a .fa, - a .icon, - a .rst-content .admonition-title, - a .rst-content .code-block-caption .headerlink, - a .rst-content code.download span:first-child, - a .rst-content dl dt .headerlink, - a .rst-content h1 .headerlink, - a .rst-content h2 .headerlink, - a .rst-content h3 .headerlink, - a .rst-content h4 .headerlink, - a .rst-content h5 .headerlink, - a .rst-content h6 .headerlink, - a .rst-content p.caption .headerlink, - a .rst-content table>caption .headerlink, - a .rst-content tt.download span:first-child, - a .wy-menu-vertical li span.toctree-expand { - display:inline-block; - text-decoration:inherit - } - .btn .fa, - .btn .icon, - .btn .rst-content .admonition-title, - .btn .rst-content .code-block-caption .headerlink, - .btn .rst-content code.download span:first-child, - .btn .rst-content dl dt .headerlink, - .btn .rst-content h1 .headerlink, - .btn .rst-content h2 .headerlink, - .btn .rst-content h3 .headerlink, - .btn .rst-content h4 .headerlink, - .btn .rst-content h5 .headerlink, - .btn .rst-content h6 .headerlink, - .btn .rst-content p.caption .headerlink, - .btn .rst-content table>caption .headerlink, - .btn .rst-content tt.download span:first-child, - .btn .wy-menu-vertical li.current>a span.toctree-expand, - .btn .wy-menu-vertical li.on a span.toctree-expand, - .btn .wy-menu-vertical li span.toctree-expand, - .nav .fa, - .nav .icon, - .nav .rst-content .admonition-title, - .nav .rst-content .code-block-caption .headerlink, - .nav .rst-content code.download span:first-child, - .nav .rst-content dl dt .headerlink, - .nav .rst-content h1 .headerlink, - .nav .rst-content h2 .headerlink, - .nav .rst-content h3 .headerlink, - .nav .rst-content h4 .headerlink, - .nav .rst-content h5 .headerlink, - .nav .rst-content h6 .headerlink, - .nav .rst-content p.caption .headerlink, - .nav .rst-content table>caption .headerlink, - .nav .rst-content tt.download span:first-child, - .nav .wy-menu-vertical li.current>a span.toctree-expand, - .nav .wy-menu-vertical li.on a span.toctree-expand, - .nav .wy-menu-vertical li span.toctree-expand, - .rst-content .btn .admonition-title, - .rst-content .code-block-caption .btn .headerlink, - .rst-content .code-block-caption .nav .headerlink, - .rst-content .nav .admonition-title, - .rst-content code.download .btn span:first-child, - .rst-content code.download .nav span:first-child, - .rst-content dl dt .btn .headerlink, - .rst-content dl dt .nav .headerlink, - .rst-content h1 .btn .headerlink, - .rst-content h1 .nav .headerlink, - .rst-content h2 .btn .headerlink, - .rst-content h2 .nav .headerlink, - .rst-content h3 .btn .headerlink, - .rst-content h3 .nav .headerlink, - .rst-content h4 .btn .headerlink, - .rst-content h4 .nav .headerlink, - .rst-content h5 .btn .headerlink, - .rst-content h5 .nav .headerlink, - .rst-content h6 .btn .headerlink, - .rst-content h6 .nav .headerlink, - .rst-content p.caption .btn .headerlink, - .rst-content p.caption .nav .headerlink, - .rst-content table>caption .btn .headerlink, - .rst-content table>caption .nav .headerlink, - .rst-content tt.download .btn span:first-child, - .rst-content tt.download .nav span:first-child, - .wy-menu-vertical li .btn span.toctree-expand, - .wy-menu-vertical li.current>a .btn span.toctree-expand, - .wy-menu-vertical li.current>a .nav span.toctree-expand, - .wy-menu-vertical li .nav span.toctree-expand, - .wy-menu-vertical li.on a .btn span.toctree-expand, - .wy-menu-vertical li.on a .nav span.toctree-expand { - display:inline - } - .btn .fa-large.icon, - .btn .fa.fa-large, - .btn .rst-content .code-block-caption .fa-large.headerlink, - .btn .rst-content .fa-large.admonition-title, - .btn .rst-content code.download span.fa-large:first-child, - .btn .rst-content dl dt .fa-large.headerlink, - .btn .rst-content h1 .fa-large.headerlink, - .btn .rst-content h2 .fa-large.headerlink, - .btn .rst-content h3 .fa-large.headerlink, - .btn .rst-content h4 .fa-large.headerlink, - .btn .rst-content h5 .fa-large.headerlink, - .btn .rst-content h6 .fa-large.headerlink, - .btn .rst-content p.caption .fa-large.headerlink, - .btn .rst-content table>caption .fa-large.headerlink, - .btn .rst-content tt.download span.fa-large:first-child, - .btn .wy-menu-vertical li span.fa-large.toctree-expand, - .nav .fa-large.icon, - .nav .fa.fa-large, - .nav .rst-content .code-block-caption .fa-large.headerlink, - .nav .rst-content .fa-large.admonition-title, - .nav .rst-content code.download span.fa-large:first-child, - .nav .rst-content dl dt .fa-large.headerlink, - .nav .rst-content h1 .fa-large.headerlink, - .nav .rst-content h2 .fa-large.headerlink, - .nav .rst-content h3 .fa-large.headerlink, - .nav .rst-content h4 .fa-large.headerlink, - .nav .rst-content h5 .fa-large.headerlink, - .nav .rst-content h6 .fa-large.headerlink, - .nav .rst-content p.caption .fa-large.headerlink, - .nav .rst-content table>caption .fa-large.headerlink, - .nav .rst-content tt.download span.fa-large:first-child, - .nav .wy-menu-vertical li span.fa-large.toctree-expand, - .rst-content .btn .fa-large.admonition-title, - .rst-content .code-block-caption .btn .fa-large.headerlink, - .rst-content .code-block-caption .nav .fa-large.headerlink, - .rst-content .nav .fa-large.admonition-title, - .rst-content code.download .btn span.fa-large:first-child, - .rst-content code.download .nav span.fa-large:first-child, - .rst-content dl dt .btn .fa-large.headerlink, - .rst-content dl dt .nav .fa-large.headerlink, - .rst-content h1 .btn .fa-large.headerlink, - .rst-content h1 .nav .fa-large.headerlink, - .rst-content h2 .btn .fa-large.headerlink, - .rst-content h2 .nav .fa-large.headerlink, - .rst-content h3 .btn .fa-large.headerlink, - .rst-content h3 .nav .fa-large.headerlink, - .rst-content h4 .btn .fa-large.headerlink, - .rst-content h4 .nav .fa-large.headerlink, - .rst-content h5 .btn .fa-large.headerlink, - .rst-content h5 .nav .fa-large.headerlink, - .rst-content h6 .btn .fa-large.headerlink, - .rst-content h6 .nav .fa-large.headerlink, - .rst-content p.caption .btn .fa-large.headerlink, - .rst-content p.caption .nav .fa-large.headerlink, - .rst-content table>caption .btn .fa-large.headerlink, - .rst-content table>caption .nav .fa-large.headerlink, - .rst-content tt.download .btn span.fa-large:first-child, - .rst-content tt.download .nav span.fa-large:first-child, - .wy-menu-vertical li .btn span.fa-large.toctree-expand, - .wy-menu-vertical li .nav span.fa-large.toctree-expand { - line-height:.9em - } - .btn .fa-spin.icon, - .btn .fa.fa-spin, - .btn .rst-content .code-block-caption .fa-spin.headerlink, - .btn .rst-content .fa-spin.admonition-title, - .btn .rst-content code.download span.fa-spin:first-child, - .btn .rst-content dl dt .fa-spin.headerlink, - .btn .rst-content h1 .fa-spin.headerlink, - .btn .rst-content h2 .fa-spin.headerlink, - .btn .rst-content h3 .fa-spin.headerlink, - .btn .rst-content h4 .fa-spin.headerlink, - .btn .rst-content h5 .fa-spin.headerlink, - .btn .rst-content h6 .fa-spin.headerlink, - .btn .rst-content p.caption .fa-spin.headerlink, - .btn .rst-content table>caption .fa-spin.headerlink, - .btn .rst-content tt.download span.fa-spin:first-child, - .btn .wy-menu-vertical li span.fa-spin.toctree-expand, - .nav .fa-spin.icon, - .nav .fa.fa-spin, - .nav .rst-content .code-block-caption .fa-spin.headerlink, - .nav .rst-content .fa-spin.admonition-title, - .nav .rst-content code.download span.fa-spin:first-child, - .nav .rst-content dl dt .fa-spin.headerlink, - .nav .rst-content h1 .fa-spin.headerlink, - .nav .rst-content h2 .fa-spin.headerlink, - .nav .rst-content h3 .fa-spin.headerlink, - .nav .rst-content h4 .fa-spin.headerlink, - .nav .rst-content h5 .fa-spin.headerlink, - .nav .rst-content h6 .fa-spin.headerlink, - .nav .rst-content p.caption .fa-spin.headerlink, - .nav .rst-content table>caption .fa-spin.headerlink, - .nav .rst-content tt.download span.fa-spin:first-child, - .nav .wy-menu-vertical li span.fa-spin.toctree-expand, - .rst-content .btn .fa-spin.admonition-title, - .rst-content .code-block-caption .btn .fa-spin.headerlink, - .rst-content .code-block-caption .nav .fa-spin.headerlink, - .rst-content .nav .fa-spin.admonition-title, - .rst-content code.download .btn span.fa-spin:first-child, - .rst-content code.download .nav span.fa-spin:first-child, - .rst-content dl dt .btn .fa-spin.headerlink, - .rst-content dl dt .nav .fa-spin.headerlink, - .rst-content h1 .btn .fa-spin.headerlink, - .rst-content h1 .nav .fa-spin.headerlink, - .rst-content h2 .btn .fa-spin.headerlink, - .rst-content h2 .nav .fa-spin.headerlink, - .rst-content h3 .btn .fa-spin.headerlink, - .rst-content h3 .nav .fa-spin.headerlink, - .rst-content h4 .btn .fa-spin.headerlink, - .rst-content h4 .nav .fa-spin.headerlink, - .rst-content h5 .btn .fa-spin.headerlink, - .rst-content h5 .nav .fa-spin.headerlink, - .rst-content h6 .btn .fa-spin.headerlink, - .rst-content h6 .nav .fa-spin.headerlink, - .rst-content p.caption .btn .fa-spin.headerlink, - .rst-content p.caption .nav .fa-spin.headerlink, - .rst-content table>caption .btn .fa-spin.headerlink, - .rst-content table>caption .nav .fa-spin.headerlink, - .rst-content tt.download .btn span.fa-spin:first-child, - .rst-content tt.download .nav span.fa-spin:first-child, - .wy-menu-vertical li .btn span.fa-spin.toctree-expand, - .wy-menu-vertical li .nav span.fa-spin.toctree-expand { - display:inline-block - } - .btn.fa:before, - .btn.icon:before, - .rst-content .btn.admonition-title:before, - .rst-content .code-block-caption .btn.headerlink:before, - .rst-content code.download span.btn:first-child:before, - .rst-content dl dt .btn.headerlink:before, - .rst-content h1 .btn.headerlink:before, - .rst-content h2 .btn.headerlink:before, - .rst-content h3 .btn.headerlink:before, - .rst-content h4 .btn.headerlink:before, - .rst-content h5 .btn.headerlink:before, - .rst-content h6 .btn.headerlink:before, - .rst-content p.caption .btn.headerlink:before, - .rst-content table>caption .btn.headerlink:before, - .rst-content tt.download span.btn:first-child:before, - .wy-menu-vertical li span.btn.toctree-expand:before { - opacity:.5; - -webkit-transition:opacity .05s ease-in; - -moz-transition:opacity .05s ease-in; - transition:opacity .05s ease-in - } - .btn.fa:hover:before, - .btn.icon:hover:before, - .rst-content .btn.admonition-title:hover:before, - .rst-content .code-block-caption .btn.headerlink:hover:before, - .rst-content code.download span.btn:first-child:hover:before, - .rst-content dl dt .btn.headerlink:hover:before, - .rst-content h1 .btn.headerlink:hover:before, - .rst-content h2 .btn.headerlink:hover:before, - .rst-content h3 .btn.headerlink:hover:before, - .rst-content h4 .btn.headerlink:hover:before, - .rst-content h5 .btn.headerlink:hover:before, - .rst-content h6 .btn.headerlink:hover:before, - .rst-content p.caption .btn.headerlink:hover:before, - .rst-content table>caption .btn.headerlink:hover:before, - .rst-content tt.download span.btn:first-child:hover:before, - .wy-menu-vertical li span.btn.toctree-expand:hover:before { - opacity:1 - } - .btn-mini .fa:before, - .btn-mini .icon:before, - .btn-mini .rst-content .admonition-title:before, - .btn-mini .rst-content .code-block-caption .headerlink:before, - .btn-mini .rst-content code.download span:first-child:before, - .btn-mini .rst-content dl dt .headerlink:before, - .btn-mini .rst-content h1 .headerlink:before, - .btn-mini .rst-content h2 .headerlink:before, - .btn-mini .rst-content h3 .headerlink:before, - .btn-mini .rst-content h4 .headerlink:before, - .btn-mini .rst-content h5 .headerlink:before, - .btn-mini .rst-content h6 .headerlink:before, - .btn-mini .rst-content p.caption .headerlink:before, - .btn-mini .rst-content table>caption .headerlink:before, - .btn-mini .rst-content tt.download span:first-child:before, - .btn-mini .wy-menu-vertical li span.toctree-expand:before, - .rst-content .btn-mini .admonition-title:before, - .rst-content .code-block-caption .btn-mini .headerlink:before, - .rst-content code.download .btn-mini span:first-child:before, - .rst-content dl dt .btn-mini .headerlink:before, - .rst-content h1 .btn-mini .headerlink:before, - .rst-content h2 .btn-mini .headerlink:before, - .rst-content h3 .btn-mini .headerlink:before, - .rst-content h4 .btn-mini .headerlink:before, - .rst-content h5 .btn-mini .headerlink:before, - .rst-content h6 .btn-mini .headerlink:before, - .rst-content p.caption .btn-mini .headerlink:before, - .rst-content table>caption .btn-mini .headerlink:before, - .rst-content tt.download .btn-mini span:first-child:before, - .wy-menu-vertical li .btn-mini span.toctree-expand:before { - font-size:14px; - vertical-align:-15% - } - .rst-content .admonition, - .rst-content .admonition-todo, - .rst-content .attention, - .rst-content .caution, - .rst-content .danger, - .rst-content .error, - .rst-content .hint, - .rst-content .important, - .rst-content .note, - .rst-content .seealso, - .rst-content .tip, - .rst-content .warning, - .wy-alert { - padding:12px; - line-height:24px; - margin-bottom:24px; - background:#e7f2fa - } - .rst-content .admonition-title, - .wy-alert-title { - font-weight:700; - display:block; - color:#fff; - background:#6ab0de; - padding:6px 12px; - margin:-12px -12px 12px - } - .rst-content .danger, - .rst-content .error, - .rst-content .wy-alert-danger.admonition, - .rst-content .wy-alert-danger.admonition-todo, - .rst-content .wy-alert-danger.attention, - .rst-content .wy-alert-danger.caution, - .rst-content .wy-alert-danger.hint, - .rst-content .wy-alert-danger.important, - .rst-content .wy-alert-danger.note, - .rst-content .wy-alert-danger.seealso, - .rst-content .wy-alert-danger.tip, - .rst-content .wy-alert-danger.warning, - .wy-alert.wy-alert-danger { - background:#fdf3f2 - } - .rst-content .danger .admonition-title, - .rst-content .danger .wy-alert-title, - .rst-content .error .admonition-title, - .rst-content .error .wy-alert-title, - .rst-content .wy-alert-danger.admonition-todo .admonition-title, - .rst-content .wy-alert-danger.admonition-todo .wy-alert-title, - .rst-content .wy-alert-danger.admonition .admonition-title, - .rst-content .wy-alert-danger.admonition .wy-alert-title, - .rst-content .wy-alert-danger.attention .admonition-title, - .rst-content .wy-alert-danger.attention .wy-alert-title, - .rst-content .wy-alert-danger.caution .admonition-title, - .rst-content .wy-alert-danger.caution .wy-alert-title, - .rst-content .wy-alert-danger.hint .admonition-title, - .rst-content .wy-alert-danger.hint .wy-alert-title, - .rst-content .wy-alert-danger.important .admonition-title, - .rst-content .wy-alert-danger.important .wy-alert-title, - .rst-content .wy-alert-danger.note .admonition-title, - .rst-content .wy-alert-danger.note .wy-alert-title, - .rst-content .wy-alert-danger.seealso .admonition-title, - .rst-content .wy-alert-danger.seealso .wy-alert-title, - .rst-content .wy-alert-danger.tip .admonition-title, - .rst-content .wy-alert-danger.tip .wy-alert-title, - .rst-content .wy-alert-danger.warning .admonition-title, - .rst-content .wy-alert-danger.warning .wy-alert-title, - .rst-content .wy-alert.wy-alert-danger .admonition-title, - .wy-alert.wy-alert-danger .rst-content .admonition-title, - .wy-alert.wy-alert-danger .wy-alert-title { - background:#f29f97 - } - .rst-content .admonition-todo, - .rst-content .attention, - .rst-content .caution, - .rst-content .warning, - .rst-content .wy-alert-warning.admonition, - .rst-content .wy-alert-warning.danger, - .rst-content .wy-alert-warning.error, - .rst-content .wy-alert-warning.hint, - .rst-content .wy-alert-warning.important, - .rst-content .wy-alert-warning.note, - .rst-content .wy-alert-warning.seealso, - .rst-content .wy-alert-warning.tip, - .wy-alert.wy-alert-warning { - background:#ffedcc - } - .rst-content .admonition-todo .admonition-title, - .rst-content .admonition-todo .wy-alert-title, - .rst-content .attention .admonition-title, - .rst-content .attention .wy-alert-title, - .rst-content .caution .admonition-title, - .rst-content .caution .wy-alert-title, - .rst-content .warning .admonition-title, - .rst-content .warning .wy-alert-title, - .rst-content .wy-alert-warning.admonition .admonition-title, - .rst-content .wy-alert-warning.admonition .wy-alert-title, - .rst-content .wy-alert-warning.danger .admonition-title, - .rst-content .wy-alert-warning.danger .wy-alert-title, - .rst-content .wy-alert-warning.error .admonition-title, - .rst-content .wy-alert-warning.error .wy-alert-title, - .rst-content .wy-alert-warning.hint .admonition-title, - .rst-content .wy-alert-warning.hint .wy-alert-title, - .rst-content .wy-alert-warning.important .admonition-title, - .rst-content .wy-alert-warning.important .wy-alert-title, - .rst-content .wy-alert-warning.note .admonition-title, - .rst-content .wy-alert-warning.note .wy-alert-title, - .rst-content .wy-alert-warning.seealso .admonition-title, - .rst-content .wy-alert-warning.seealso .wy-alert-title, - .rst-content .wy-alert-warning.tip .admonition-title, - .rst-content .wy-alert-warning.tip .wy-alert-title, - .rst-content .wy-alert.wy-alert-warning .admonition-title, - .wy-alert.wy-alert-warning .rst-content .admonition-title, - .wy-alert.wy-alert-warning .wy-alert-title { - background:#f0b37e - } - .rst-content .note, - .rst-content .seealso, - .rst-content .wy-alert-info.admonition, - .rst-content .wy-alert-info.admonition-todo, - .rst-content .wy-alert-info.attention, - .rst-content .wy-alert-info.caution, - .rst-content .wy-alert-info.danger, - .rst-content .wy-alert-info.error, - .rst-content .wy-alert-info.hint, - .rst-content .wy-alert-info.important, - .rst-content .wy-alert-info.tip, - .rst-content .wy-alert-info.warning, - .wy-alert.wy-alert-info { - background:#e7f2fa - } - .rst-content .note .admonition-title, - .rst-content .note .wy-alert-title, - .rst-content .seealso .admonition-title, - .rst-content .seealso .wy-alert-title, - .rst-content .wy-alert-info.admonition-todo .admonition-title, - .rst-content .wy-alert-info.admonition-todo .wy-alert-title, - .rst-content .wy-alert-info.admonition .admonition-title, - .rst-content .wy-alert-info.admonition .wy-alert-title, - .rst-content .wy-alert-info.attention .admonition-title, - .rst-content .wy-alert-info.attention .wy-alert-title, - .rst-content .wy-alert-info.caution .admonition-title, - .rst-content .wy-alert-info.caution .wy-alert-title, - .rst-content .wy-alert-info.danger .admonition-title, - .rst-content .wy-alert-info.danger .wy-alert-title, - .rst-content .wy-alert-info.error .admonition-title, - .rst-content .wy-alert-info.error .wy-alert-title, - .rst-content .wy-alert-info.hint .admonition-title, - .rst-content .wy-alert-info.hint .wy-alert-title, - .rst-content .wy-alert-info.important .admonition-title, - .rst-content .wy-alert-info.important .wy-alert-title, - .rst-content .wy-alert-info.tip .admonition-title, - .rst-content .wy-alert-info.tip .wy-alert-title, - .rst-content .wy-alert-info.warning .admonition-title, - .rst-content .wy-alert-info.warning .wy-alert-title, - .rst-content .wy-alert.wy-alert-info .admonition-title, - .wy-alert.wy-alert-info .rst-content .admonition-title, - .wy-alert.wy-alert-info .wy-alert-title { - background:#6ab0de - } - .rst-content .hint, - .rst-content .important, - .rst-content .tip, - .rst-content .wy-alert-success.admonition, - .rst-content .wy-alert-success.admonition-todo, - .rst-content .wy-alert-success.attention, - .rst-content .wy-alert-success.caution, - .rst-content .wy-alert-success.danger, - .rst-content .wy-alert-success.error, - .rst-content .wy-alert-success.note, - .rst-content .wy-alert-success.seealso, - .rst-content .wy-alert-success.warning, - .wy-alert.wy-alert-success { - background:#dbfaf4 - } - .rst-content .hint .admonition-title, - .rst-content .hint .wy-alert-title, - .rst-content .important .admonition-title, - .rst-content .important .wy-alert-title, - .rst-content .tip .admonition-title, - .rst-content .tip .wy-alert-title, - .rst-content .wy-alert-success.admonition-todo .admonition-title, - .rst-content .wy-alert-success.admonition-todo .wy-alert-title, - .rst-content .wy-alert-success.admonition .admonition-title, - .rst-content .wy-alert-success.admonition .wy-alert-title, - .rst-content .wy-alert-success.attention .admonition-title, - .rst-content .wy-alert-success.attention .wy-alert-title, - .rst-content .wy-alert-success.caution .admonition-title, - .rst-content .wy-alert-success.caution .wy-alert-title, - .rst-content .wy-alert-success.danger .admonition-title, - .rst-content .wy-alert-success.danger .wy-alert-title, - .rst-content .wy-alert-success.error .admonition-title, - .rst-content .wy-alert-success.error .wy-alert-title, - .rst-content .wy-alert-success.note .admonition-title, - .rst-content .wy-alert-success.note .wy-alert-title, - .rst-content .wy-alert-success.seealso .admonition-title, - .rst-content .wy-alert-success.seealso .wy-alert-title, - .rst-content .wy-alert-success.warning .admonition-title, - .rst-content .wy-alert-success.warning .wy-alert-title, - .rst-content .wy-alert.wy-alert-success .admonition-title, - .wy-alert.wy-alert-success .rst-content .admonition-title, - .wy-alert.wy-alert-success .wy-alert-title { - background:#1abc9c - } - .rst-content .wy-alert-neutral.admonition, - .rst-content .wy-alert-neutral.admonition-todo, - .rst-content .wy-alert-neutral.attention, - .rst-content .wy-alert-neutral.caution, - .rst-content .wy-alert-neutral.danger, - .rst-content .wy-alert-neutral.error, - .rst-content .wy-alert-neutral.hint, - .rst-content .wy-alert-neutral.important, - .rst-content .wy-alert-neutral.note, - .rst-content .wy-alert-neutral.seealso, - .rst-content .wy-alert-neutral.tip, - .rst-content .wy-alert-neutral.warning, - .wy-alert.wy-alert-neutral { - background:#f3f6f6 - } - .rst-content .wy-alert-neutral.admonition-todo .admonition-title, - .rst-content .wy-alert-neutral.admonition-todo .wy-alert-title, - .rst-content .wy-alert-neutral.admonition .admonition-title, - .rst-content .wy-alert-neutral.admonition .wy-alert-title, - .rst-content .wy-alert-neutral.attention .admonition-title, - .rst-content .wy-alert-neutral.attention .wy-alert-title, - .rst-content .wy-alert-neutral.caution .admonition-title, - .rst-content .wy-alert-neutral.caution .wy-alert-title, - .rst-content .wy-alert-neutral.danger .admonition-title, - .rst-content .wy-alert-neutral.danger .wy-alert-title, - .rst-content .wy-alert-neutral.error .admonition-title, - .rst-content .wy-alert-neutral.error .wy-alert-title, - .rst-content .wy-alert-neutral.hint .admonition-title, - .rst-content .wy-alert-neutral.hint .wy-alert-title, - .rst-content .wy-alert-neutral.important .admonition-title, - .rst-content .wy-alert-neutral.important .wy-alert-title, - .rst-content .wy-alert-neutral.note .admonition-title, - .rst-content .wy-alert-neutral.note .wy-alert-title, - .rst-content .wy-alert-neutral.seealso .admonition-title, - .rst-content .wy-alert-neutral.seealso .wy-alert-title, - .rst-content .wy-alert-neutral.tip .admonition-title, - .rst-content .wy-alert-neutral.tip .wy-alert-title, - .rst-content .wy-alert-neutral.warning .admonition-title, - .rst-content .wy-alert-neutral.warning .wy-alert-title, - .rst-content .wy-alert.wy-alert-neutral .admonition-title, - .wy-alert.wy-alert-neutral .rst-content .admonition-title, - .wy-alert.wy-alert-neutral .wy-alert-title { - color:#404040; - background:#e1e4e5 - } - .rst-content .wy-alert-neutral.admonition-todo a, - .rst-content .wy-alert-neutral.admonition a, - .rst-content .wy-alert-neutral.attention a, - .rst-content .wy-alert-neutral.caution a, - .rst-content .wy-alert-neutral.danger a, - .rst-content .wy-alert-neutral.error a, - .rst-content .wy-alert-neutral.hint a, - .rst-content .wy-alert-neutral.important a, - .rst-content .wy-alert-neutral.note a, - .rst-content .wy-alert-neutral.seealso a, - .rst-content .wy-alert-neutral.tip a, - .rst-content .wy-alert-neutral.warning a, - .wy-alert.wy-alert-neutral a { - color:#2980b9 - } - .rst-content .admonition-todo p:last-child, - .rst-content .admonition p:last-child, - .rst-content .attention p:last-child, - .rst-content .caution p:last-child, - .rst-content .danger p:last-child, - .rst-content .error p:last-child, - .rst-content .hint p:last-child, - .rst-content .important p:last-child, - .rst-content .note p:last-child, - .rst-content .seealso p:last-child, - .rst-content .tip p:last-child, - .rst-content .warning p:last-child, - .wy-alert p:last-child { - margin-bottom:0 - } - .wy-tray-container { - position:fixed; - bottom:0; - left:0; - z-index:600 - } - .wy-tray-container li { - display:block; - width:300px; - background:transparent; - color:#fff; - text-align:center; - box-shadow:0 5px 5px 0 rgba(0,0,0,.1); - padding:0 24px; - min-width:20%; - opacity:0; - height:0; - line-height:56px; - overflow:hidden; - -webkit-transition:all .3s ease-in; - -moz-transition:all .3s ease-in; - transition:all .3s ease-in - } - .wy-tray-container li.wy-tray-item-success { - background:#27ae60 - } - .wy-tray-container li.wy-tray-item-info { - background:#2980b9 - } - .wy-tray-container li.wy-tray-item-warning { - background:#e67e22 - } - .wy-tray-container li.wy-tray-item-danger { - background:#e74c3c - } - .wy-tray-container li.on { - opacity:1; - height:56px - } - @media screen and (max-width:768px) { - .wy-tray-container { - bottom:auto; - top:0; - width:100% - } - .wy-tray-container li { - width:100% - } - } - button { - font-size:100%; - margin:0; - vertical-align:baseline; - *vertical-align:middle; - cursor:pointer; - line-height:normal; - -webkit-appearance:button; - *overflow:visible - } - button::-moz-focus-inner, - input::-moz-focus-inner { - border:0; - padding:0 - } - button[disabled] { - cursor:default - } - .btn { - display:inline-block; - border-radius:2px; - line-height:normal; - white-space:nowrap; - text-align:center; - cursor:pointer; - font-size:100%; - padding:6px 12px 8px; - color:#fff; - border:1px solid rgba(0,0,0,.1); - background-color:#27ae60; - text-decoration:none; - font-weight:400; - font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif; - box-shadow:inset 0 1px 2px -1px hsla(0,0%,100%,.5),inset 0 -2px 0 0 rgba(0,0,0,.1); - outline-none:false; - vertical-align:middle; - *display:inline; - zoom:1; - -webkit-user-drag:none; - -webkit-user-select:none; - -moz-user-select:none; - -ms-user-select:none; - user-select:none; - -webkit-transition:all .1s linear; - -moz-transition:all .1s linear; - transition:all .1s linear - } - .btn-hover { - background:#2e8ece; - color:#fff - } - .btn:hover { - background:#2cc36b; - color:#fff - } - .btn:focus { - background:#2cc36b; - outline:0 - } - .btn:active { - box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05),inset 0 2px 0 0 rgba(0,0,0,.1); - padding:8px 12px 6px - } - .btn:visited { - color:#fff - } - .btn-disabled, - .btn-disabled:active, - .btn-disabled:focus, - .btn-disabled:hover, - .btn:disabled { - background-image:none; - filter:progid:DXImageTransform.Microsoft.gradient(enabled = false); - filter:alpha(opacity=40); - opacity:.4; - cursor:not-allowed; - box-shadow:none - } - .btn::-moz-focus-inner { - padding:0; - border:0 - } - .btn-small { - font-size:80% - } - .btn-info { - background-color:#2980b9!important - } - .btn-info:hover { - background-color:#2e8ece!important - } - .btn-neutral { - background-color:#f3f6f6!important; - color:#404040!important - } - .btn-neutral:hover { - background-color:#e5ebeb!important; - color:#404040 - } - .btn-neutral:visited { - color:#404040!important - } - .btn-success { - background-color:#27ae60!important - } - .btn-success:hover { - background-color:#295!important - } - .btn-danger { - background-color:#e74c3c!important - } - .btn-danger:hover { - background-color:#ea6153!important - } - .btn-warning { - background-color:#e67e22!important - } - .btn-warning:hover { - background-color:#e98b39!important - } - .btn-invert { - background-color:#222 - } - .btn-invert:hover { - background-color:#2f2f2f!important - } - .btn-link { - background-color:transparent!important; - color:#2980b9; - box-shadow:none; - border-color:transparent!important - } - .btn-link:active, - .btn-link:hover { - background-color:transparent!important; - color:#409ad5!important; - box-shadow:none - } - .btn-link:visited { - color:#9b59b6 - } - .wy-btn-group .btn, - .wy-control .btn { - vertical-align:middle - } - .wy-btn-group { - margin-bottom:24px; - *zoom:1 - } - .wy-btn-group:after, - .wy-btn-group:before { - display:table; - content:"" - } - .wy-btn-group:after { - clear:both - } - .wy-dropdown { - position:relative; - display:inline-block - } - .wy-dropdown-active .wy-dropdown-menu { - display:block - } - .wy-dropdown-menu { - position:absolute; - left:0; - display:none; - float:left; - top:100%; - min-width:100%; - background:#fcfcfc; - z-index:100; - border:1px solid #cfd7dd; - box-shadow:0 2px 2px 0 rgba(0,0,0,.1); - padding:12px - } - .wy-dropdown-menu>dd>a { - display:block; - clear:both; - color:#404040; - white-space:nowrap; - font-size:90%; - padding:0 12px; - cursor:pointer - } - .wy-dropdown-menu>dd>a:hover { - background:#2980b9; - color:#fff - } - .wy-dropdown-menu>dd.divider { - border-top:1px solid #cfd7dd; - margin:6px 0 - } - .wy-dropdown-menu>dd.search { - padding-bottom:12px - } - .wy-dropdown-menu>dd.search input[type=search] { - width:100% - } - .wy-dropdown-menu>dd.call-to-action { - background:#e3e3e3; - text-transform:uppercase; - font-weight:500; - font-size:80% - } - .wy-dropdown-menu>dd.call-to-action:hover { - background:#e3e3e3 - } - .wy-dropdown-menu>dd.call-to-action .btn { - color:#fff - } - .wy-dropdown.wy-dropdown-up .wy-dropdown-menu { - bottom:100%; - top:auto; - left:auto; - right:0 - } - .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu { - background:#fcfcfc; - margin-top:2px - } - .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a { - padding:6px 12px - } - .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover { - background:#2980b9; - color:#fff - } - .wy-dropdown.wy-dropdown-left .wy-dropdown-menu { - right:0; - left:auto; - text-align:right - } - .wy-dropdown-arrow:before { - content:" "; - border-bottom:5px solid #f5f5f5; - border-left:5px solid transparent; - border-right:5px solid transparent; - position:absolute; - display:block; - top:-4px; - left:50%; - margin-left:-3px - } - .wy-dropdown-arrow.wy-dropdown-arrow-left:before { - left:11px - } - .wy-form-stacked select { - display:block - } - .wy-form-aligned .wy-help-inline, - .wy-form-aligned input, - .wy-form-aligned label, - .wy-form-aligned select, - .wy-form-aligned textarea { - display:inline-block; - *display:inline; - *zoom:1; - vertical-align:middle - } - .wy-form-aligned .wy-control-group>label { - display:inline-block; - vertical-align:middle; - width:10em; - margin:6px 12px 0 0; - float:left - } - .wy-form-aligned .wy-control { - float:left - } - .wy-form-aligned .wy-control label { - display:block - } - .wy-form-aligned .wy-control select { - margin-top:6px - } - fieldset { - margin:0 - } - fieldset, - legend { - border:0; - padding:0 - } - legend { - width:100%; - white-space:normal; - margin-bottom:24px; - font-size:150%; - *margin-left:-7px - } - label, - legend { - display:block - } - label { - margin:0 0 .3125em; - color:#333; - font-size:90% - } - input, - select, - textarea { - font-size:100%; - margin:0; - vertical-align:baseline; - *vertical-align:middle - } - .wy-control-group { - margin-bottom:24px; - max-width:1200px; - margin-left:auto; - margin-right:auto; - *zoom:1 - } - .wy-control-group:after, - .wy-control-group:before { - display:table; - content:"" - } - .wy-control-group:after { - clear:both - } - .wy-control-group.wy-control-group-required>label:after { - content:" *"; - color:#e74c3c - } - .wy-control-group .wy-form-full, - .wy-control-group .wy-form-halves, - .wy-control-group .wy-form-thirds { - padding-bottom:12px - } - .wy-control-group .wy-form-full input[type=color], - .wy-control-group .wy-form-full input[type=date], - .wy-control-group .wy-form-full input[type=datetime-local], - .wy-control-group .wy-form-full input[type=datetime], - .wy-control-group .wy-form-full input[type=email], - .wy-control-group .wy-form-full input[type=month], - .wy-control-group .wy-form-full input[type=number], - .wy-control-group .wy-form-full input[type=password], - .wy-control-group .wy-form-full input[type=search], - .wy-control-group .wy-form-full input[type=tel], - .wy-control-group .wy-form-full input[type=text], - .wy-control-group .wy-form-full input[type=time], - .wy-control-group .wy-form-full input[type=url], - .wy-control-group .wy-form-full input[type=week], - .wy-control-group .wy-form-full select, - .wy-control-group .wy-form-halves input[type=color], - .wy-control-group .wy-form-halves input[type=date], - .wy-control-group .wy-form-halves input[type=datetime-local], - .wy-control-group .wy-form-halves input[type=datetime], - .wy-control-group .wy-form-halves input[type=email], - .wy-control-group .wy-form-halves input[type=month], - .wy-control-group .wy-form-halves input[type=number], - .wy-control-group .wy-form-halves input[type=password], - .wy-control-group .wy-form-halves input[type=search], - .wy-control-group .wy-form-halves input[type=tel], - .wy-control-group .wy-form-halves input[type=text], - .wy-control-group .wy-form-halves input[type=time], - .wy-control-group .wy-form-halves input[type=url], - .wy-control-group .wy-form-halves input[type=week], - .wy-control-group .wy-form-halves select, - .wy-control-group .wy-form-thirds input[type=color], - .wy-control-group .wy-form-thirds input[type=date], - .wy-control-group .wy-form-thirds input[type=datetime-local], - .wy-control-group .wy-form-thirds input[type=datetime], - .wy-control-group .wy-form-thirds input[type=email], - .wy-control-group .wy-form-thirds input[type=month], - .wy-control-group .wy-form-thirds input[type=number], - .wy-control-group .wy-form-thirds input[type=password], - .wy-control-group .wy-form-thirds input[type=search], - .wy-control-group .wy-form-thirds input[type=tel], - .wy-control-group .wy-form-thirds input[type=text], - .wy-control-group .wy-form-thirds input[type=time], - .wy-control-group .wy-form-thirds input[type=url], - .wy-control-group .wy-form-thirds input[type=week], - .wy-control-group .wy-form-thirds select { - width:100% - } - .wy-control-group .wy-form-full { - float:left; - display:block; - width:100%; - margin-right:0 - } - .wy-control-group .wy-form-full:last-child { - margin-right:0 - } - .wy-control-group .wy-form-halves { - float:left; - display:block; - margin-right:2.35765%; - width:48.82117% - } - .wy-control-group .wy-form-halves:last-child, - .wy-control-group .wy-form-halves:nth-of-type(2n) { - margin-right:0 - } - .wy-control-group .wy-form-halves:nth-of-type(odd) { - clear:left - } - .wy-control-group .wy-form-thirds { - float:left; - display:block; - margin-right:2.35765%; - width:31.76157% - } - .wy-control-group .wy-form-thirds:last-child, - .wy-control-group .wy-form-thirds:nth-of-type(3n) { - margin-right:0 - } - .wy-control-group .wy-form-thirds:nth-of-type(3n+1) { - clear:left - } - .wy-control-group.wy-control-group-no-input .wy-control, - .wy-control-no-input { - margin:6px 0 0; - font-size:90% - } - .wy-control-no-input { - display:inline-block - } - .wy-control-group.fluid-input input[type=color], - .wy-control-group.fluid-input input[type=date], - .wy-control-group.fluid-input input[type=datetime-local], - .wy-control-group.fluid-input input[type=datetime], - .wy-control-group.fluid-input input[type=email], - .wy-control-group.fluid-input input[type=month], - .wy-control-group.fluid-input input[type=number], - .wy-control-group.fluid-input input[type=password], - .wy-control-group.fluid-input input[type=search], - .wy-control-group.fluid-input input[type=tel], - .wy-control-group.fluid-input input[type=text], - .wy-control-group.fluid-input input[type=time], - .wy-control-group.fluid-input input[type=url], - .wy-control-group.fluid-input input[type=week] { - width:100% - } - .wy-form-message-inline { - padding-left:.3em; - color:#666; - font-size:90% - } - .wy-form-message { - display:block; - color:#999; - font-size:70%; - margin-top:.3125em; - font-style:italic - } - .wy-form-message p { - font-size:inherit; - font-style:italic; - margin-bottom:6px - } - .wy-form-message p:last-child { - margin-bottom:0 - } - input { - line-height:normal - } - input[type=button], - input[type=reset], - input[type=submit] { - -webkit-appearance:button; - cursor:pointer; - font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif; - *overflow:visible - } - input[type=color], - input[type=date], - input[type=datetime-local], - input[type=datetime], - input[type=email], - input[type=month], - input[type=number], - input[type=password], - input[type=search], - input[type=tel], - input[type=text], - input[type=time], - input[type=url], - input[type=week] { - -webkit-appearance:none; - padding:6px; - display:inline-block; - border:1px solid #ccc; - font-size:80%; - font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif; - box-shadow:inset 0 1px 3px #ddd; - border-radius:0; - -webkit-transition:border .3s linear; - -moz-transition:border .3s linear; - transition:border .3s linear - } - input[type=datetime-local] { - padding:.34375em .625em - } - input[disabled] { - cursor:default - } - input[type=checkbox], - input[type=radio] { - padding:0; - margin-right:.3125em; - *height:13px; - *width:13px - } - input[type=checkbox], - input[type=radio], - input[type=search] { - -webkit-box-sizing:border-box; - -moz-box-sizing:border-box; - box-sizing:border-box - } - input[type=search]::-webkit-search-cancel-button, - input[type=search]::-webkit-search-decoration { - -webkit-appearance:none - } - input[type=color]:focus, - input[type=date]:focus, - input[type=datetime-local]:focus, - input[type=datetime]:focus, - input[type=email]:focus, - input[type=month]:focus, - input[type=number]:focus, - input[type=password]:focus, - input[type=search]:focus, - input[type=tel]:focus, - input[type=text]:focus, - input[type=time]:focus, - input[type=url]:focus, - input[type=week]:focus { - outline:0; - outline:thin dotted\9; - border-color:#333 - } - input.no-focus:focus { - border-color:#ccc!important - } - input[type=checkbox]:focus, - input[type=file]:focus, - input[type=radio]:focus { - outline:thin dotted #333; - outline:1px auto #129fea - } - input[type=color][disabled], - input[type=date][disabled], - input[type=datetime-local][disabled], - input[type=datetime][disabled], - input[type=email][disabled], - input[type=month][disabled], - input[type=number][disabled], - input[type=password][disabled], - input[type=search][disabled], - input[type=tel][disabled], - input[type=text][disabled], - input[type=time][disabled], - input[type=url][disabled], - input[type=week][disabled] { - cursor:not-allowed; - background-color:#fafafa - } - input:focus:invalid, - select:focus:invalid, - textarea:focus:invalid { - color:#e74c3c; - border:1px solid #e74c3c - } - input:focus:invalid:focus, - select:focus:invalid:focus, - textarea:focus:invalid:focus { - border-color:#e74c3c - } - input[type=checkbox]:focus:invalid:focus, - input[type=file]:focus:invalid:focus, - input[type=radio]:focus:invalid:focus { - outline-color:#e74c3c - } - input.wy-input-large { - padding:12px; - font-size:100% - } - textarea { - overflow:auto; - vertical-align:top; - width:100%; - font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif - } - select, - textarea { - padding:.5em .625em; - display:inline-block; - border:1px solid #ccc; - font-size:80%; - box-shadow:inset 0 1px 3px #ddd; - -webkit-transition:border .3s linear; - -moz-transition:border .3s linear; - transition:border .3s linear - } - select { - border:1px solid #ccc; - background-color:#fff - } - select[multiple] { - height:auto - } - select:focus, - textarea:focus { - outline:0 - } - input[readonly], - select[disabled], - select[readonly], - textarea[disabled], - textarea[readonly] { - cursor:not-allowed; - background-color:#fafafa - } - input[type=checkbox][disabled], - input[type=radio][disabled] { - cursor:not-allowed - } - .wy-checkbox, - .wy-radio { - margin:6px 0; - color:#404040; - display:block - } - .wy-checkbox input, - .wy-radio input { - vertical-align:baseline - } - .wy-form-message-inline { - display:inline-block; - *display:inline; - *zoom:1; - vertical-align:middle - } - .wy-input-prefix, - .wy-input-suffix { - white-space:nowrap; - padding:6px - } - .wy-input-prefix .wy-input-context, - .wy-input-suffix .wy-input-context { - line-height:27px; - padding:0 8px; - display:inline-block; - font-size:80%; - background-color:#f3f6f6; - border:1px solid #ccc; - color:#999 - } - .wy-input-suffix .wy-input-context { - border-left:0 - } - .wy-input-prefix .wy-input-context { - border-right:0 - } - .wy-switch { - position:relative; - display:block; - height:24px; - margin-top:12px; - cursor:pointer - } - .wy-switch:before { - left:0; - top:0; - width:36px; - height:12px; - background:#ccc - } - .wy-switch:after, - .wy-switch:before { - position:absolute; - content:""; - display:block; - border-radius:4px; - -webkit-transition:all .2s ease-in-out; - -moz-transition:all .2s ease-in-out; - transition:all .2s ease-in-out - } - .wy-switch:after { - width:18px; - height:18px; - background:#999; - left:-3px; - top:-3px - } - .wy-switch span { - position:absolute; - left:48px; - display:block; - font-size:12px; - color:#ccc; - line-height:1 - } - .wy-switch.active:before { - background:#1e8449 - } - .wy-switch.active:after { - left:24px; - background:#27ae60 - } - .wy-switch.disabled { - cursor:not-allowed; - opacity:.8 - } - .wy-control-group.wy-control-group-error .wy-form-message, - .wy-control-group.wy-control-group-error>label { - color:#e74c3c - } - .wy-control-group.wy-control-group-error input[type=color], - .wy-control-group.wy-control-group-error input[type=date], - .wy-control-group.wy-control-group-error input[type=datetime-local], - .wy-control-group.wy-control-group-error input[type=datetime], - .wy-control-group.wy-control-group-error input[type=email], - .wy-control-group.wy-control-group-error input[type=month], - .wy-control-group.wy-control-group-error input[type=number], - .wy-control-group.wy-control-group-error input[type=password], - .wy-control-group.wy-control-group-error input[type=search], - .wy-control-group.wy-control-group-error input[type=tel], - .wy-control-group.wy-control-group-error input[type=text], - .wy-control-group.wy-control-group-error input[type=time], - .wy-control-group.wy-control-group-error input[type=url], - .wy-control-group.wy-control-group-error input[type=week], - .wy-control-group.wy-control-group-error textarea { - border:1px solid #e74c3c - } - .wy-inline-validate { - white-space:nowrap - } - .wy-inline-validate .wy-input-context { - padding:.5em .625em; - display:inline-block; - font-size:80% - } - .wy-inline-validate.wy-inline-validate-success .wy-input-context { - color:#27ae60 - } - .wy-inline-validate.wy-inline-validate-danger .wy-input-context { - color:#e74c3c - } - .wy-inline-validate.wy-inline-validate-warning .wy-input-context { - color:#e67e22 - } - .wy-inline-validate.wy-inline-validate-info .wy-input-context { - color:#2980b9 - } - .rotate-90 { - -webkit-transform:rotate(90deg); - -moz-transform:rotate(90deg); - -ms-transform:rotate(90deg); - -o-transform:rotate(90deg); - transform:rotate(90deg) - } - .rotate-180 { - -webkit-transform:rotate(180deg); - -moz-transform:rotate(180deg); - -ms-transform:rotate(180deg); - -o-transform:rotate(180deg); - transform:rotate(180deg) - } - .rotate-270 { - -webkit-transform:rotate(270deg); - -moz-transform:rotate(270deg); - -ms-transform:rotate(270deg); - -o-transform:rotate(270deg); - transform:rotate(270deg) - } - .mirror { - -webkit-transform:scaleX(-1); - -moz-transform:scaleX(-1); - -ms-transform:scaleX(-1); - -o-transform:scaleX(-1); - transform:scaleX(-1) - } - .mirror.rotate-90 { - -webkit-transform:scaleX(-1) rotate(90deg); - -moz-transform:scaleX(-1) rotate(90deg); - -ms-transform:scaleX(-1) rotate(90deg); - -o-transform:scaleX(-1) rotate(90deg); - transform:scaleX(-1) rotate(90deg) - } - .mirror.rotate-180 { - -webkit-transform:scaleX(-1) rotate(180deg); - -moz-transform:scaleX(-1) rotate(180deg); - -ms-transform:scaleX(-1) rotate(180deg); - -o-transform:scaleX(-1) rotate(180deg); - transform:scaleX(-1) rotate(180deg) - } - .mirror.rotate-270 { - -webkit-transform:scaleX(-1) rotate(270deg); - -moz-transform:scaleX(-1) rotate(270deg); - -ms-transform:scaleX(-1) rotate(270deg); - -o-transform:scaleX(-1) rotate(270deg); - transform:scaleX(-1) rotate(270deg) - } - @media only screen and (max-width:480px) { - .wy-form button[type=submit] { - margin:.7em 0 0 - } - .wy-form input[type=color], - .wy-form input[type=date], - .wy-form input[type=datetime-local], - .wy-form input[type=datetime], - .wy-form input[type=email], - .wy-form input[type=month], - .wy-form input[type=number], - .wy-form input[type=password], - .wy-form input[type=search], - .wy-form input[type=tel], - .wy-form input[type=text], - .wy-form input[type=time], - .wy-form input[type=url], - .wy-form input[type=week], - .wy-form label { - margin-bottom:.3em; - display:block - } - .wy-form input[type=color], - .wy-form input[type=date], - .wy-form input[type=datetime-local], - .wy-form input[type=datetime], - .wy-form input[type=email], - .wy-form input[type=month], - .wy-form input[type=number], - .wy-form input[type=password], - .wy-form input[type=search], - .wy-form input[type=tel], - .wy-form input[type=time], - .wy-form input[type=url], - .wy-form input[type=week] { - margin-bottom:0 - } - .wy-form-aligned .wy-control-group label { - margin-bottom:.3em; - text-align:left; - display:block; - width:100% - } - .wy-form-aligned .wy-control { - margin:1.5em 0 0 - } - .wy-form-message, - .wy-form-message-inline, - .wy-form .wy-help-inline { - display:block; - font-size:80%; - padding:6px 0 - } - } - @media screen and (max-width:768px) { - .tablet-hide { - display:none - } - } - @media screen and (max-width:480px) { - .mobile-hide { - display:none - } - } - .float-left { - float:left - } - .float-right { - float:right - } - .full-width { - width:100% - } - .rst-content table.docutils, - .rst-content table.field-list, - .wy-table { - border-collapse:collapse; - border-spacing:0; - empty-cells:show; - margin-bottom:24px - } - .rst-content table.docutils caption, - .rst-content table.field-list caption, - .wy-table caption { - color:#000; - font:italic 85%/1 arial,sans-serif; - padding:1em 0; - text-align:center - } - .rst-content table.docutils td, - .rst-content table.docutils th, - .rst-content table.field-list td, - .rst-content table.field-list th, - .wy-table td, - .wy-table th { - font-size:90%; - margin:0; - overflow:visible; - padding:8px 16px - } - .rst-content table.docutils td:first-child, - .rst-content table.docutils th:first-child, - .rst-content table.field-list td:first-child, - .rst-content table.field-list th:first-child, - .wy-table td:first-child, - .wy-table th:first-child { - border-left-width:0 - } - .rst-content table.docutils thead, - .rst-content table.field-list thead, - .wy-table thead { - color:#000; - text-align:left; - vertical-align:bottom; - white-space:nowrap - } - .rst-content table.docutils thead th, - .rst-content table.field-list thead th, - .wy-table thead th { - font-weight:700; - border-bottom:2px solid #e1e4e5 - } - .rst-content table.docutils td, - .rst-content table.field-list td, - .wy-table td { - background-color:transparent; - vertical-align:middle - } - .rst-content table.docutils td p, - .rst-content table.field-list td p, - .wy-table td p { - line-height:18px - } - .rst-content table.docutils td p:last-child, - .rst-content table.field-list td p:last-child, - .wy-table td p:last-child { - margin-bottom:0 - } - .rst-content table.docutils .wy-table-cell-min, - .rst-content table.field-list .wy-table-cell-min, - .wy-table .wy-table-cell-min { - width:1%; - padding-right:0 - } - .rst-content table.docutils .wy-table-cell-min input[type=checkbox], - .rst-content table.field-list .wy-table-cell-min input[type=checkbox], - .wy-table .wy-table-cell-min input[type=checkbox] { - margin:0 - } - .wy-table-secondary { - color:grey; - font-size:90% - } - .wy-table-tertiary { - color:grey; - font-size:80% - } - .rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td, - .wy-table-backed, - .wy-table-odd td, - .wy-table-striped tr:nth-child(2n-1) td { - background-color:#f3f6f6 - } - .rst-content table.docutils, - .wy-table-bordered-all { - border:1px solid #e1e4e5 - } - .rst-content table.docutils td, - .wy-table-bordered-all td { - border-bottom:1px solid #e1e4e5; - border-left:1px solid #e1e4e5 - } - .rst-content table.docutils tbody>tr:last-child td, - .wy-table-bordered-all tbody>tr:last-child td { - border-bottom-width:0 - } - .wy-table-bordered { - border:1px solid #e1e4e5 - } - .wy-table-bordered-rows td { - border-bottom:1px solid #e1e4e5 - } - .wy-table-bordered-rows tbody>tr:last-child td { - border-bottom-width:0 - } - .wy-table-horizontal td, - .wy-table-horizontal th { - border-width:0 0 1px; - border-bottom:1px solid #e1e4e5 - } - .wy-table-horizontal tbody>tr:last-child td { - border-bottom-width:0 - } - .wy-table-responsive { - margin-bottom:24px; - max-width:100%; - overflow:auto - } - .wy-table-responsive table { - margin-bottom:0!important - } - .wy-table-responsive table td, - .wy-table-responsive table th { - white-space:nowrap - } - a { - color:#2980b9; - text-decoration:none; - cursor:pointer - } - a:hover { - color:#3091d1 - } - a:visited { - color:#9b59b6 - } - html { - height:100% - } - body, - html { - overflow-x:hidden - } - body { - font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif; - font-weight:400; - color:#404040; - min-height:100%; - background:#edf0f2 - } - .wy-text-left { - text-align:left - } - .wy-text-center { - text-align:center - } - .wy-text-right { - text-align:right - } - .wy-text-large { - font-size:120% - } - .wy-text-normal { - font-size:100% - } - .wy-text-small, - small { - font-size:80% - } - .wy-text-strike { - text-decoration:line-through - } - .wy-text-warning { - color:#e67e22!important - } - a.wy-text-warning:hover { - color:#eb9950!important - } - .wy-text-info { - color:#2980b9!important - } - a.wy-text-info:hover { - color:#409ad5!important - } - .wy-text-success { - color:#27ae60!important - } - a.wy-text-success:hover { - color:#36d278!important - } - .wy-text-danger { - color:#e74c3c!important - } - a.wy-text-danger:hover { - color:#ed7669!important - } - .wy-text-neutral { - color:#404040!important - } - a.wy-text-neutral:hover { - color:#595959!important - } - .rst-content .toctree-wrapper>p.caption, - h1, - h2, - h3, - h4, - h5, - h6, - legend { - margin-top:0; - font-weight:700; - font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif - } - p { - line-height:24px; - font-size:16px; - margin:0 0 24px - } - h1 { - font-size:175% - } - .rst-content .toctree-wrapper>p.caption, - h2 { - font-size:150% - } - h3 { - font-size:125% - } - h4 { - font-size:115% - } - h5 { - font-size:110% - } - h6 { - font-size:100% - } - hr { - display:block; - height:1px; - border:0; - border-top:1px solid #e1e4e5; - margin:24px 0; - padding:0 - } - .rst-content code, - .rst-content tt, - code { - white-space:nowrap; - max-width:100%; - background:#fff; - border:1px solid #e1e4e5; - font-size:75%; - padding:0 5px; - font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace; - color:#e74c3c; - overflow-x:auto - } - .rst-content tt.code-large, - code.code-large { - font-size:90% - } - .rst-content .section ul, - .rst-content .toctree-wrapper ul, - .wy-plain-list-disc, - article ul { - list-style:disc; - line-height:24px; - margin-bottom:24px - } - .rst-content .section ul li, - .rst-content .toctree-wrapper ul li, - .wy-plain-list-disc li, - article ul li { - list-style:disc; - margin-left:24px - } - .rst-content .section ul li p:last-child, - .rst-content .section ul li ul, - .rst-content .toctree-wrapper ul li p:last-child, - .rst-content .toctree-wrapper ul li ul, - .wy-plain-list-disc li p:last-child, - .wy-plain-list-disc li ul, - article ul li p:last-child, - article ul li ul { - margin-bottom:0 - } - .rst-content .section ul li li, - .rst-content .toctree-wrapper ul li li, - .wy-plain-list-disc li li, - article ul li li { - list-style:circle - } - .rst-content .section ul li li li, - .rst-content .toctree-wrapper ul li li li, - .wy-plain-list-disc li li li, - article ul li li li { - list-style:square - } - .rst-content .section ul li ol li, - .rst-content .toctree-wrapper ul li ol li, - .wy-plain-list-disc li ol li, - article ul li ol li { - list-style:decimal - } - .rst-content .section ol, - .rst-content ol.arabic, - .wy-plain-list-decimal, - article ol { - list-style:decimal; - line-height:24px; - margin-bottom:24px - } - .rst-content .section ol li, - .rst-content ol.arabic li, - .wy-plain-list-decimal li, - article ol li { - list-style:decimal; - margin-left:24px - } - .rst-content .section ol li p:last-child, - .rst-content .section ol li ul, - .rst-content ol.arabic li p:last-child, - .rst-content ol.arabic li ul, - .wy-plain-list-decimal li p:last-child, - .wy-plain-list-decimal li ul, - article ol li p:last-child, - article ol li ul { - margin-bottom:0 - } - .rst-content .section ol li ul li, - .rst-content ol.arabic li ul li, - .wy-plain-list-decimal li ul li, - article ol li ul li { - list-style:disc - } - .wy-breadcrumbs { - *zoom:1 - } - .wy-breadcrumbs:after, - .wy-breadcrumbs:before { - display:table; - content:"" - } - .wy-breadcrumbs:after { - clear:both - } - .wy-breadcrumbs li { - display:inline-block - } - .wy-breadcrumbs li.wy-breadcrumbs-aside { - float:right - } - .wy-breadcrumbs li a { - display:inline-block; - padding:5px - } - .wy-breadcrumbs li a:first-child { - padding-left:0 - } - .rst-content .wy-breadcrumbs li tt, - .wy-breadcrumbs li .rst-content tt, - .wy-breadcrumbs li code { - padding:5px; - border:none; - background:none - } - .rst-content .wy-breadcrumbs li tt.literal, - .wy-breadcrumbs li .rst-content tt.literal, - .wy-breadcrumbs li code.literal { - color:#404040 - } - .wy-breadcrumbs-extra { - margin-bottom:0; - color:#b3b3b3; - font-size:80%; - display:inline-block - } - @media screen and (max-width:480px) { - .wy-breadcrumbs-extra, - .wy-breadcrumbs li.wy-breadcrumbs-aside { - display:none - } - } - @media print { - .wy-breadcrumbs li.wy-breadcrumbs-aside { - display:none - } - } - html { - font-size:16px - } - .wy-affix { - position:fixed; - top:1.618em - } - .wy-menu a:hover { - text-decoration:none - } - .wy-menu-horiz { - *zoom:1 - } - .wy-menu-horiz:after, - .wy-menu-horiz:before { - display:table; - content:"" - } - .wy-menu-horiz:after { - clear:both - } - .wy-menu-horiz li, - .wy-menu-horiz ul { - display:inline-block - } - .wy-menu-horiz li:hover { - background:hsla(0,0%,100%,.1) - } - .wy-menu-horiz li.divide-left { - border-left:1px solid #404040 - } - .wy-menu-horiz li.divide-right { - border-right:1px solid #404040 - } - .wy-menu-horiz a { - height:32px; - display:inline-block; - line-height:32px; - padding:0 16px - } - .wy-menu-vertical { - width:300px - } - .wy-menu-vertical header, - .wy-menu-vertical p.caption { - color:#55a5d9; - height:32px; - line-height:32px; - padding:0 1.618em; - margin:12px 0 0; - display:block; - font-weight:700; - text-transform:uppercase; - font-size:85%; - white-space:nowrap - } - .wy-menu-vertical ul { - margin-bottom:0 - } - .wy-menu-vertical li.divide-top { - border-top:1px solid #404040 - } - .wy-menu-vertical li.divide-bottom { - border-bottom:1px solid #404040 - } - .wy-menu-vertical li.current { - background:#e3e3e3 - } - .wy-menu-vertical li.current a { - color:grey; - border-right:1px solid #c9c9c9; - padding:.4045em 2.427em - } - .wy-menu-vertical li.current a:hover { - background:#d6d6d6 - } - .rst-content .wy-menu-vertical li tt, - .wy-menu-vertical li .rst-content tt, - .wy-menu-vertical li code { - border:none; - background:inherit; - color:inherit; - padding-left:0; - padding-right:0 - } - .wy-menu-vertical li span.toctree-expand { - display:block; - float:left; - margin-left:-1.2em; - font-size:.8em; - line-height:1.6em; - color:#4d4d4d - } - .wy-menu-vertical li.current>a, - .wy-menu-vertical li.on a { - color:#404040; - font-weight:700; - position:relative; - background:#fcfcfc; - border:none; - padding:.4045em 1.618em - } - .wy-menu-vertical li.current>a:hover, - .wy-menu-vertical li.on a:hover { - background:#fcfcfc - } - .wy-menu-vertical li.current>a:hover span.toctree-expand, - .wy-menu-vertical li.on a:hover span.toctree-expand { - color:grey - } - .wy-menu-vertical li.current>a span.toctree-expand, - .wy-menu-vertical li.on a span.toctree-expand { - display:block; - font-size:.8em; - line-height:1.6em; - color:#333 - } - .wy-menu-vertical li.toctree-l1.current>a { - border-bottom:1px solid #c9c9c9; - border-top:1px solid #c9c9c9 - } - .wy-menu-vertical .toctree-l1.current .toctree-l2>ul, - .wy-menu-vertical .toctree-l2.current .toctree-l3>ul, - .wy-menu-vertical .toctree-l3.current .toctree-l4>ul, - .wy-menu-vertical .toctree-l4.current .toctree-l5>ul, - .wy-menu-vertical .toctree-l5.current .toctree-l6>ul, - .wy-menu-vertical .toctree-l6.current .toctree-l7>ul, - .wy-menu-vertical .toctree-l7.current .toctree-l8>ul, - .wy-menu-vertical .toctree-l8.current .toctree-l9>ul, - .wy-menu-vertical .toctree-l9.current .toctree-l10>ul, - .wy-menu-vertical .toctree-l10.current .toctree-l11>ul { - display:none - } - .wy-menu-vertical .toctree-l1.current .current.toctree-l2>ul, - .wy-menu-vertical .toctree-l2.current .current.toctree-l3>ul, - .wy-menu-vertical .toctree-l3.current .current.toctree-l4>ul, - .wy-menu-vertical .toctree-l4.current .current.toctree-l5>ul, - .wy-menu-vertical .toctree-l5.current .current.toctree-l6>ul, - .wy-menu-vertical .toctree-l6.current .current.toctree-l7>ul, - .wy-menu-vertical .toctree-l7.current .current.toctree-l8>ul, - .wy-menu-vertical .toctree-l8.current .current.toctree-l9>ul, - .wy-menu-vertical .toctree-l9.current .current.toctree-l10>ul, - .wy-menu-vertical .toctree-l10.current .current.toctree-l11>ul { - display:block - } - .wy-menu-vertical li.toctree-l3, - .wy-menu-vertical li.toctree-l4 { - font-size:.9em - } - .wy-menu-vertical li.toctree-l2 a, - .wy-menu-vertical li.toctree-l3 a, - .wy-menu-vertical li.toctree-l4 a, - .wy-menu-vertical li.toctree-l5 a, - .wy-menu-vertical li.toctree-l6 a, - .wy-menu-vertical li.toctree-l7 a, - .wy-menu-vertical li.toctree-l8 a, - .wy-menu-vertical li.toctree-l9 a, - .wy-menu-vertical li.toctree-l10 a { - color:#404040 - } - .wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand, - .wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand, - .wy-menu-vertical li.toctree-l4 a:hover span.toctree-expand, - .wy-menu-vertical li.toctree-l5 a:hover span.toctree-expand, - .wy-menu-vertical li.toctree-l6 a:hover span.toctree-expand, - .wy-menu-vertical li.toctree-l7 a:hover span.toctree-expand, - .wy-menu-vertical li.toctree-l8 a:hover span.toctree-expand, - .wy-menu-vertical li.toctree-l9 a:hover span.toctree-expand, - .wy-menu-vertical li.toctree-l10 a:hover span.toctree-expand { - color:grey - } - .wy-menu-vertical li.toctree-l2.current li.toctree-l3>a, - .wy-menu-vertical li.toctree-l3.current li.toctree-l4>a, - .wy-menu-vertical li.toctree-l4.current li.toctree-l5>a, - .wy-menu-vertical li.toctree-l5.current li.toctree-l6>a, - .wy-menu-vertical li.toctree-l6.current li.toctree-l7>a, - .wy-menu-vertical li.toctree-l7.current li.toctree-l8>a, - .wy-menu-vertical li.toctree-l8.current li.toctree-l9>a, - .wy-menu-vertical li.toctree-l9.current li.toctree-l10>a, - .wy-menu-vertical li.toctree-l10.current li.toctree-l11>a { - display:block - } - .wy-menu-vertical li.toctree-l2.current>a { - padding:.4045em 2.427em - } - .wy-menu-vertical li.toctree-l2.current li.toctree-l3>a, - .wy-menu-vertical li.toctree-l3.current>a { - padding:.4045em 4.045em - } - .wy-menu-vertical li.toctree-l3.current li.toctree-l4>a, - .wy-menu-vertical li.toctree-l4.current>a { - padding:.4045em 5.663em - } - .wy-menu-vertical li.toctree-l4.current li.toctree-l5>a, - .wy-menu-vertical li.toctree-l5.current>a { - padding:.4045em 7.281em - } - .wy-menu-vertical li.toctree-l5.current li.toctree-l6>a, - .wy-menu-vertical li.toctree-l6.current>a { - padding:.4045em 8.899em - } - .wy-menu-vertical li.toctree-l6.current li.toctree-l7>a, - .wy-menu-vertical li.toctree-l7.current>a { - padding:.4045em 10.517em - } - .wy-menu-vertical li.toctree-l7.current li.toctree-l8>a, - .wy-menu-vertical li.toctree-l8.current>a { - padding:.4045em 12.135em - } - .wy-menu-vertical li.toctree-l8.current li.toctree-l9>a, - .wy-menu-vertical li.toctree-l9.current>a { - padding:.4045em 13.753em - } - .wy-menu-vertical li.toctree-l9.current li.toctree-l10>a, - .wy-menu-vertical li.toctree-l10.current>a { - padding:.4045em 15.371em - } - .wy-menu-vertical li.toctree-l10.current li.toctree-l11>a { - padding:.4045em 16.989em - } - .wy-menu-vertical li.toctree-l2.current>a, - .wy-menu-vertical li.toctree-l2.current li.toctree-l3>a { - background:#c9c9c9 - } - .wy-menu-vertical li.toctree-l2 span.toctree-expand { - color:#a3a3a3 - } - .wy-menu-vertical li.toctree-l3.current>a, - .wy-menu-vertical li.toctree-l3.current li.toctree-l4>a { - background:#bdbdbd - } - .wy-menu-vertical li.toctree-l3 span.toctree-expand { - color:#969696 - } - .wy-menu-vertical li.current ul { - display:block - } - .wy-menu-vertical li ul { - margin-bottom:0; - display:none - } - .wy-menu-vertical li ul li a { - margin-bottom:0; - color:#d9d9d9; - font-weight:400 - } - .wy-menu-vertical a { - line-height:18px; - padding:.4045em 1.618em; - display:block; - position:relative; - font-size:90%; - color:#d9d9d9 - } - .wy-menu-vertical a:hover { - background-color:#4e4a4a; - cursor:pointer - } - .wy-menu-vertical a:hover span.toctree-expand { - color:#d9d9d9 - } - .wy-menu-vertical a:active { - background-color:#2980b9; - cursor:pointer; - color:#fff - } - .wy-menu-vertical a:active span.toctree-expand { - color:#fff - } - .wy-side-nav-search { - display:block; - width:300px; - padding:.809em; - margin-bottom:.809em; - z-index:200; - background-color:#2980b9; - text-align:center; - color:#fcfcfc - } - .wy-side-nav-search input[type=text] { - width:100%; - border-radius:50px; - padding:6px 12px; - border-color:#2472a4 - } - .wy-side-nav-search img { - display:block; - margin:auto auto .809em; - height:45px; - width:45px; - background-color:#2980b9; - padding:5px; - border-radius:100% - } - .wy-side-nav-search .wy-dropdown>a, - .wy-side-nav-search>a { - color:#fcfcfc; - font-size:100%; - font-weight:700; - display:inline-block; - padding:4px 6px; - margin-bottom:.809em - } - .wy-side-nav-search .wy-dropdown>a:hover, - .wy-side-nav-search>a:hover { - background:hsla(0,0%,100%,.1) - } - .wy-side-nav-search .wy-dropdown>a img.logo, - .wy-side-nav-search>a img.logo { - display:block; - margin:0 auto; - height:auto; - width:auto; - border-radius:0; - max-width:100%; - background:transparent - } - .wy-side-nav-search .wy-dropdown>a.icon img.logo, - .wy-side-nav-search>a.icon img.logo { - margin-top:.85em - } - .wy-side-nav-search>div.version { - margin-top:-.4045em; - margin-bottom:.809em; - font-weight:400; - color:hsla(0,0%,100%,.3) - } - .wy-nav .wy-menu-vertical header { - color:#2980b9 - } - .wy-nav .wy-menu-vertical a { - color:#b3b3b3 - } - .wy-nav .wy-menu-vertical a:hover { - background-color:#2980b9; - color:#fff - } - [data-menu-wrap] { - -webkit-transition:all .2s ease-in; - -moz-transition:all .2s ease-in; - transition:all .2s ease-in; - position:absolute; - opacity:1; - width:100%; - opacity:0 - } - [data-menu-wrap].move-center { - left:0; - right:auto; - opacity:1 - } - [data-menu-wrap].move-left { - right:auto; - left:-100%; - opacity:0 - } - [data-menu-wrap].move-right { - right:-100%; - left:auto; - opacity:0 - } - .wy-body-for-nav { - background:#fcfcfc - } - .wy-grid-for-nav { - position:absolute; - width:100%; - height:100% - } - .wy-nav-side { - position:fixed; - top:0; - bottom:0; - left:0; - padding-bottom:2em; - width:300px; - overflow-x:hidden; - overflow-y:hidden; - min-height:100%; - color:#9b9b9b; - background:#343131; - z-index:200 - } - .wy-side-scroll { - width:320px; - position:relative; - overflow-x:hidden; - overflow-y:scroll; - height:100% - } - .wy-nav-top { - display:none; - background:#2980b9; - color:#fff; - padding:.4045em .809em; - position:relative; - line-height:50px; - text-align:center; - font-size:100%; - *zoom:1 - } - .wy-nav-top:after, - .wy-nav-top:before { - display:table; - content:"" - } - .wy-nav-top:after { - clear:both - } - .wy-nav-top a { - color:#fff; - font-weight:700 - } - .wy-nav-top img { - margin-right:12px; - height:45px; - width:45px; - background-color:#2980b9; - padding:5px; - border-radius:100% - } - .wy-nav-top i { - font-size:30px; - float:left; - cursor:pointer; - padding-top:inherit - } - .wy-nav-content-wrap { - margin-left:300px; - background:#fcfcfc; - min-height:100% - } - .wy-nav-content { - padding:1.618em 3.236em; - height:100%; - max-width:800px; - margin:auto - } - .wy-body-mask { - position:fixed; - width:100%; - height:100%; - background:rgba(0,0,0,.2); - display:none; - z-index:499 - } - .wy-body-mask.on { - display:block - } - footer { - color:grey - } - footer p { - margin-bottom:12px - } - .rst-content footer span.commit tt, - footer span.commit .rst-content tt, - footer span.commit code { - padding:0; - font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace; - font-size:1em; - background:none; - border:none; - color:grey - } - .rst-footer-buttons { - *zoom:1 - } - .rst-footer-buttons:after, - .rst-footer-buttons:before { - width:100%; - display:table; - content:"" - } - .rst-footer-buttons:after { - clear:both - } - .rst-breadcrumbs-buttons { - margin-top:12px; - *zoom:1 - } - .rst-breadcrumbs-buttons:after, - .rst-breadcrumbs-buttons:before { - display:table; - content:"" - } - .rst-breadcrumbs-buttons:after { - clear:both - } - #search-results .search li { - margin-bottom:24px; - border-bottom:1px solid #e1e4e5; - padding-bottom:24px - } - #search-results .search li:first-child { - border-top:1px solid #e1e4e5; - padding-top:24px - } - #search-results .search li a { - font-size:120%; - margin-bottom:12px; - display:inline-block - } - #search-results .context { - color:grey; - font-size:90% - } - .genindextable li>ul { - margin-left:24px - } - @media screen and (max-width:768px) { - .wy-body-for-nav { - background:#fcfcfc - } - .wy-nav-top { - display:block - } - .wy-nav-side { - left:-300px - } - .wy-nav-side.shift { - width:85%; - left:0 - } - .wy-menu.wy-menu-vertical, - .wy-side-nav-search, - .wy-side-scroll { - width:auto - } - .wy-nav-content-wrap { - margin-left:0 - } - .wy-nav-content-wrap .wy-nav-content { - padding:1.618em - } - .wy-nav-content-wrap.shift { - position:fixed; - min-width:100%; - left:85%; - top:0; - height:100%; - overflow:hidden - } - } - @media screen and (min-width:1100px) { - .wy-nav-content-wrap { - background:rgba(0,0,0,.05) - } - .wy-nav-content { - margin:0; - background:#fcfcfc - } - } - @media print { - .rst-versions, - .wy-nav-side, - footer { - display:none - } - .wy-nav-content-wrap { - margin-left:0 - } - } - .rst-versions { - position:fixed; - bottom:0; - left:0; - width:300px; - color:#fcfcfc; - background:#1f1d1d; - font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif; - z-index:400 - } - .rst-versions a { - color:#2980b9; - text-decoration:none - } - .rst-versions .rst-badge-small { - display:none - } - .rst-versions .rst-current-version { - padding:12px; - background-color:#272525; - display:block; - text-align:right; - font-size:90%; - cursor:pointer; - color:#27ae60; - *zoom:1 - } - .rst-versions .rst-current-version:after, - .rst-versions .rst-current-version:before { - display:table; - content:"" - } - .rst-versions .rst-current-version:after { - clear:both - } - .rst-content .code-block-caption .rst-versions .rst-current-version .headerlink, - .rst-content .rst-versions .rst-current-version .admonition-title, - .rst-content code.download .rst-versions .rst-current-version span:first-child, - .rst-content dl dt .rst-versions .rst-current-version .headerlink, - .rst-content h1 .rst-versions .rst-current-version .headerlink, - .rst-content h2 .rst-versions .rst-current-version .headerlink, - .rst-content h3 .rst-versions .rst-current-version .headerlink, - .rst-content h4 .rst-versions .rst-current-version .headerlink, - .rst-content h5 .rst-versions .rst-current-version .headerlink, - .rst-content h6 .rst-versions .rst-current-version .headerlink, - .rst-content p.caption .rst-versions .rst-current-version .headerlink, - .rst-content table>caption .rst-versions .rst-current-version .headerlink, - .rst-content tt.download .rst-versions .rst-current-version span:first-child, - .rst-versions .rst-current-version .fa, - .rst-versions .rst-current-version .icon, - .rst-versions .rst-current-version .rst-content .admonition-title, - .rst-versions .rst-current-version .rst-content .code-block-caption .headerlink, - .rst-versions .rst-current-version .rst-content code.download span:first-child, - .rst-versions .rst-current-version .rst-content dl dt .headerlink, - .rst-versions .rst-current-version .rst-content h1 .headerlink, - .rst-versions .rst-current-version .rst-content h2 .headerlink, - .rst-versions .rst-current-version .rst-content h3 .headerlink, - .rst-versions .rst-current-version .rst-content h4 .headerlink, - .rst-versions .rst-current-version .rst-content h5 .headerlink, - .rst-versions .rst-current-version .rst-content h6 .headerlink, - .rst-versions .rst-current-version .rst-content p.caption .headerlink, - .rst-versions .rst-current-version .rst-content table>caption .headerlink, - .rst-versions .rst-current-version .rst-content tt.download span:first-child, - .rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand, - .wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand { - color:#fcfcfc - } - .rst-versions .rst-current-version .fa-book, - .rst-versions .rst-current-version .icon-book { - float:left - } - .rst-versions .rst-current-version.rst-out-of-date { - background-color:#e74c3c; - color:#fff - } - .rst-versions .rst-current-version.rst-active-old-version { - background-color:#f1c40f; - color:#000 - } - .rst-versions.shift-up { - height:auto; - max-height:100%; - overflow-y:scroll - } - .rst-versions.shift-up .rst-other-versions { - display:block - } - .rst-versions .rst-other-versions { - font-size:90%; - padding:12px; - color:grey; - display:none - } - .rst-versions .rst-other-versions hr { - display:block; - height:1px; - border:0; - margin:20px 0; - padding:0; - border-top:1px solid #413d3d - } - .rst-versions .rst-other-versions dd { - display:inline-block; - margin:0 - } - .rst-versions .rst-other-versions dd a { - display:inline-block; - padding:6px; - color:#fcfcfc - } - .rst-versions.rst-badge { - width:auto; - bottom:20px; - right:20px; - left:auto; - border:none; - max-width:300px; - max-height:90% - } - .rst-versions.rst-badge .fa-book, - .rst-versions.rst-badge .icon-book { - float:none; - line-height:30px - } - .rst-versions.rst-badge.shift-up .rst-current-version { - text-align:right - } - .rst-versions.rst-badge.shift-up .rst-current-version .fa-book, - .rst-versions.rst-badge.shift-up .rst-current-version .icon-book { - float:left - } - .rst-versions.rst-badge>.rst-current-version { - width:auto; - height:30px; - line-height:30px; - padding:0 6px; - display:block; - text-align:center - } - @media screen and (max-width:768px) { - .rst-versions { - width:85%; - display:none - } - .rst-versions.shift { - display:block - } - } - .rst-content img { - max-width:100%; - height:auto - } - .rst-content div.figure { - margin-bottom:24px - } - .rst-content div.figure p.caption { - font-style:italic - } - .rst-content div.figure p:last-child.caption { - margin-bottom:0 - } - .rst-content div.figure.align-center { - text-align:center - } - .rst-content .section>a>img, - .rst-content .section>img { - margin-bottom:24px - } - .rst-content abbr[title] { - text-decoration:none - } - .rst-content.style-external-links a.reference.external:after { - font-family:FontAwesome; - content:"\f08e"; - color:#b3b3b3; - vertical-align:super; - font-size:60%; - margin:0 .2em - } - .rst-content blockquote { - margin-left:24px; - line-height:24px; - margin-bottom:24px - } - .rst-content pre.literal-block { - white-space:pre; - margin:0; - padding:12px; - font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace; - display:block; - overflow:auto - } - .rst-content div[class^=highlight], - .rst-content pre.literal-block { - border:1px solid #e1e4e5; - overflow-x:auto; - margin:1px 0 24px - } - .rst-content div[class^=highlight] div[class^=highlight], - .rst-content pre.literal-block div[class^=highlight] { - padding:0; - border:none; - margin:0 - } - .rst-content div[class^=highlight] td.code { - width:100% - } - .rst-content .linenodiv pre { - border-right:1px solid #e6e9ea; - margin:0; - padding:12px; - font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace; - user-select:none; - pointer-events:none - } - .rst-content div[class^=highlight] pre { - white-space:pre; - margin:0; - padding:12px; - display:block; - overflow:auto - } - .rst-content div[class^=highlight] pre .hll { - display:block; - margin:0 -12px; - padding:0 12px - } - .rst-content .linenodiv pre, - .rst-content div[class^=highlight] pre, - .rst-content pre.literal-block { - font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace; - font-size:12px; - line-height:1.4 - } - .rst-content div.highlight .gp { - user-select:none; - pointer-events:none - } - .rst-content .code-block-caption { - font-style:italic; - font-size:85%; - line-height:1; - padding:1em 0; - text-align:center - } - @media print { - .rst-content .codeblock, - .rst-content div[class^=highlight], - .rst-content div[class^=highlight] pre { - white-space:pre-wrap - } - } - .rst-content .admonition, - .rst-content .admonition-todo, - .rst-content .attention, - .rst-content .caution, - .rst-content .danger, - .rst-content .error, - .rst-content .hint, - .rst-content .important, - .rst-content .note, - .rst-content .seealso, - .rst-content .tip, - .rst-content .warning { - clear:both - } - .rst-content .admonition-todo .last, - .rst-content .admonition-todo>:last-child, - .rst-content .admonition .last, - .rst-content .admonition>:last-child, - .rst-content .attention .last, - .rst-content .attention>:last-child, - .rst-content .caution .last, - .rst-content .caution>:last-child, - .rst-content .danger .last, - .rst-content .danger>:last-child, - .rst-content .error .last, - .rst-content .error>:last-child, - .rst-content .hint .last, - .rst-content .hint>:last-child, - .rst-content .important .last, - .rst-content .important>:last-child, - .rst-content .note .last, - .rst-content .note>:last-child, - .rst-content .seealso .last, - .rst-content .seealso>:last-child, - .rst-content .tip .last, - .rst-content .tip>:last-child, - .rst-content .warning .last, - .rst-content .warning>:last-child { - margin-bottom:0 - } - .rst-content .admonition-title:before { - margin-right:4px - } - .rst-content .admonition table { - border-color:rgba(0,0,0,.1) - } - .rst-content .admonition table td, - .rst-content .admonition table th { - background:transparent!important; - border-color:rgba(0,0,0,.1)!important - } - .rst-content .section ol.loweralpha, - .rst-content .section ol.loweralpha>li { - list-style:lower-alpha - } - .rst-content .section ol.upperalpha, - .rst-content .section ol.upperalpha>li { - list-style:upper-alpha - } - .rst-content .section ol li>*, - .rst-content .section ul li>* { - margin-top:12px; - margin-bottom:12px - } - .rst-content .section ol li>:first-child, - .rst-content .section ul li>:first-child { - margin-top:0 - } - .rst-content .section ol li>p, - .rst-content .section ol li>p:last-child, - .rst-content .section ul li>p, - .rst-content .section ul li>p:last-child { - margin-bottom:12px - } - .rst-content .section ol li>p:only-child, - .rst-content .section ol li>p:only-child:last-child, - .rst-content .section ul li>p:only-child, - .rst-content .section ul li>p:only-child:last-child { - margin-bottom:0 - } - .rst-content .section ol li>ol, - .rst-content .section ol li>ul, - .rst-content .section ul li>ol, - .rst-content .section ul li>ul { - margin-bottom:12px - } - .rst-content .section ol.simple li>*, - .rst-content .section ol.simple li ol, - .rst-content .section ol.simple li ul, - .rst-content .section ul.simple li>*, - .rst-content .section ul.simple li ol, - .rst-content .section ul.simple li ul { - margin-top:0; - margin-bottom:0 - } - .rst-content .line-block { - margin-left:0; - margin-bottom:24px; - line-height:24px - } - .rst-content .line-block .line-block { - margin-left:24px; - margin-bottom:0 - } - .rst-content .topic-title { - font-weight:700; - margin-bottom:12px - } - .rst-content .toc-backref { - color:#404040 - } - .rst-content .align-right { - float:right; - margin:0 0 24px 24px - } - .rst-content .align-left { - float:left; - margin:0 24px 24px 0 - } - .rst-content .align-center { - margin:auto - } - .rst-content .align-center:not(table) { - display:block - } - .rst-content .code-block-caption .headerlink, - .rst-content .toctree-wrapper>p.caption .headerlink, - .rst-content dl dt .headerlink, - .rst-content h1 .headerlink, - .rst-content h2 .headerlink, - .rst-content h3 .headerlink, - .rst-content h4 .headerlink, - .rst-content h5 .headerlink, - .rst-content h6 .headerlink, - .rst-content p.caption .headerlink, - .rst-content table>caption .headerlink { - visibility:hidden; - font-size:14px - } - .rst-content .code-block-caption .headerlink:after, - .rst-content .toctree-wrapper>p.caption .headerlink:after, - .rst-content dl dt .headerlink:after, - .rst-content h1 .headerlink:after, - .rst-content h2 .headerlink:after, - .rst-content h3 .headerlink:after, - .rst-content h4 .headerlink:after, - .rst-content h5 .headerlink:after, - .rst-content h6 .headerlink:after, - .rst-content p.caption .headerlink:after, - .rst-content table>caption .headerlink:after { - content:"\f0c1"; - font-family:FontAwesome - } - .rst-content .code-block-caption:hover .headerlink:after, - .rst-content .toctree-wrapper>p.caption:hover .headerlink:after, - .rst-content dl dt:hover .headerlink:after, - .rst-content h1:hover .headerlink:after, - .rst-content h2:hover .headerlink:after, - .rst-content h3:hover .headerlink:after, - .rst-content h4:hover .headerlink:after, - .rst-content h5:hover .headerlink:after, - .rst-content h6:hover .headerlink:after, - .rst-content p.caption:hover .headerlink:after, - .rst-content table>caption:hover .headerlink:after { - visibility:visible - } - .rst-content table>caption .headerlink:after { - font-size:12px - } - .rst-content .centered { - text-align:center - } - .rst-content .sidebar { - float:right; - width:40%; - display:block; - margin:0 0 24px 24px; - padding:24px; - background:#f3f6f6; - border:1px solid #e1e4e5 - } - .rst-content .sidebar dl, - .rst-content .sidebar p, - .rst-content .sidebar ul { - font-size:90% - } - .rst-content .sidebar .last, - .rst-content .sidebar>:last-child { - margin-bottom:0 - } - .rst-content .sidebar .sidebar-title { - display:block; - font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif; - font-weight:700; - background:#e1e4e5; - padding:6px 12px; - margin:-24px -24px 24px; - font-size:100% - } - .rst-content .highlighted { - background:#f1c40f; - box-shadow:0 0 0 2px #f1c40f; - display:inline; - font-weight:700 - } - .rst-content .citation-reference, - .rst-content .footnote-reference { - vertical-align:baseline; - position:relative; - top:-.4em; - line-height:0; - font-size:90% - } - .rst-content .hlist { - width:100% - } - html.writer-html4 .rst-content table.docutils.citation, - html.writer-html4 .rst-content table.docutils.footnote { - background:none; - border:none - } - html.writer-html4 .rst-content table.docutils.citation td, - html.writer-html4 .rst-content table.docutils.citation tr, - html.writer-html4 .rst-content table.docutils.footnote td, - html.writer-html4 .rst-content table.docutils.footnote tr { - border:none; - background-color:transparent!important; - white-space:normal - } - html.writer-html4 .rst-content table.docutils.citation td.label, - html.writer-html4 .rst-content table.docutils.footnote td.label { - padding-left:0; - padding-right:0; - vertical-align:top - } - html.writer-html5 .rst-content dl dt span.classifier:before { - content:" : " - } - html.writer-html5 .rst-content dl.field-list, - html.writer-html5 .rst-content dl.footnote { - display:grid; - grid-template-columns:max-content auto - } - html.writer-html5 .rst-content dl.field-list>dt, - html.writer-html5 .rst-content dl.footnote>dt { - padding-left:1rem - } - html.writer-html5 .rst-content dl.field-list>dt:after, - html.writer-html5 .rst-content dl.footnote>dt:after { - content:":" - } - html.writer-html5 .rst-content dl.field-list>dd, - html.writer-html5 .rst-content dl.field-list>dt, - html.writer-html5 .rst-content dl.footnote>dd, - html.writer-html5 .rst-content dl.footnote>dt { - margin-bottom:0 - } - html.writer-html5 .rst-content dl.footnote { - font-size:.9rem - } - html.writer-html5 .rst-content dl.footnote>dt { - margin:0 .5rem .5rem 0; - line-height:1.2rem; - word-break:break-all; - font-weight:400 - } - html.writer-html5 .rst-content dl.footnote>dt>span.brackets { - margin-right:.5rem - } - html.writer-html5 .rst-content dl.footnote>dt>span.brackets:before { - content:"[" - } - html.writer-html5 .rst-content dl.footnote>dt>span.brackets:after { - content:"]" - } - html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref { - font-style:italic - } - html.writer-html5 .rst-content dl.footnote>dd { - margin:0 0 .5rem; - line-height:1.2rem - } - html.writer-html5 .rst-content dl.footnote>dd p, - html.writer-html5 .rst-content dl.option-list kbd { - font-size:.9rem - } - .rst-content table.docutils.footnote, - html.writer-html4 .rst-content table.docutils.citation, - html.writer-html5 .rst-content dl.footnote { - color:grey - } - .rst-content table.docutils.footnote code, - .rst-content table.docutils.footnote tt, - html.writer-html4 .rst-content table.docutils.citation code, - html.writer-html4 .rst-content table.docutils.citation tt, - html.writer-html5 .rst-content dl.footnote code, - html.writer-html5 .rst-content dl.footnote tt { - color:#555 - } - .rst-content .wy-table-responsive.citation, - .rst-content .wy-table-responsive.footnote { - margin-bottom:0 - } - .rst-content .wy-table-responsive.citation+:not(.citation), - .rst-content .wy-table-responsive.footnote+:not(.footnote) { - margin-top:24px - } - .rst-content .wy-table-responsive.citation:last-child, - .rst-content .wy-table-responsive.footnote:last-child { - margin-bottom:24px - } - .rst-content table.docutils th { - border-color:#e1e4e5 - } - html.writer-html5 .rst-content table.docutils th { - border:1px solid #e1e4e5 - } - html.writer-html5 .rst-content table.docutils td>p, - html.writer-html5 .rst-content table.docutils th>p { - line-height:1rem; - margin-bottom:0; - font-size:.9rem - } - .rst-content table.docutils td .last, - .rst-content table.docutils td .last>:last-child { - margin-bottom:0 - } - .rst-content table.field-list, - .rst-content table.field-list td { - border:none - } - .rst-content table.field-list td p { - font-size:inherit; - line-height:inherit - } - .rst-content table.field-list td>strong { - display:inline-block - } - .rst-content table.field-list .field-name { - padding-right:10px; - text-align:left; - white-space:nowrap - } - .rst-content table.field-list .field-body { - text-align:left - } - .rst-content code, - .rst-content tt { - color:#000; - font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace; - padding:2px 5px - } - .rst-content code big, - .rst-content code em, - .rst-content tt big, - .rst-content tt em { - font-size:100%!important; - line-height:normal - } - .rst-content code.literal, - .rst-content tt.literal { - color:#e74c3c - } - .rst-content code.xref, - .rst-content tt.xref, - a .rst-content code, - a .rst-content tt { - font-weight:700; - color:#404040 - } - .rst-content kbd, - .rst-content pre, - .rst-content samp { - font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace - } - .rst-content a code, - .rst-content a tt { - color:#2980b9 - } - .rst-content dl { - margin-bottom:24px - } - .rst-content dl dt { - font-weight:700; - margin-bottom:12px - } - .rst-content dl ol, - .rst-content dl p, - .rst-content dl table, - .rst-content dl ul { - margin-bottom:12px - } - .rst-content dl dd { - margin:0 0 12px 24px; - line-height:24px - } - html.writer-html4 .rst-content dl:not(.docutils), - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) { - margin-bottom:24px - } - html.writer-html4 .rst-content dl:not(.docutils)>dt, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt { - display:table; - margin:6px 0; - font-size:90%; - line-height:normal; - background:#e7f2fa; - color:#2980b9; - border-top:3px solid #6ab0de; - padding:6px; - position:relative - } - html.writer-html4 .rst-content dl:not(.docutils)>dt:before, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt:before { - color:#6ab0de - } - html.writer-html4 .rst-content dl:not(.docutils)>dt .headerlink, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt .headerlink { - color:#404040; - font-size:100%!important - } - html.writer-html4 .rst-content dl:not(.docutils) dl:not(.field-list)>dt, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dl:not(.field-list)>dt { - margin-bottom:6px; - border:none; - border-left:3px solid #ccc; - background:#f0f0f0; - color:#555 - } - html.writer-html4 .rst-content dl:not(.docutils) dl:not(.field-list)>dt .headerlink, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dl:not(.field-list)>dt .headerlink { - color:#404040; - font-size:100%!important - } - html.writer-html4 .rst-content dl:not(.docutils)>dt:first-child, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt:first-child { - margin-top:0 - } - html.writer-html4 .rst-content dl:not(.docutils) code, - html.writer-html4 .rst-content dl:not(.docutils) tt, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt { - font-weight:700 - } - html.writer-html4 .rst-content dl:not(.docutils) code.descclassname, - html.writer-html4 .rst-content dl:not(.docutils) code.descname, - html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname, - html.writer-html4 .rst-content dl:not(.docutils) tt.descname, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descclassname, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descname, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descclassname, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descname { - background-color:transparent; - border:none; - padding:0; - font-size:100%!important - } - html.writer-html4 .rst-content dl:not(.docutils) code.descname, - html.writer-html4 .rst-content dl:not(.docutils) tt.descname, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descname, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descname { - font-weight:700 - } - html.writer-html4 .rst-content dl:not(.docutils) .optional, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .optional { - display:inline-block; - padding:0 4px; - color:#000; - font-weight:700 - } - html.writer-html4 .rst-content dl:not(.docutils) .property, - html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .property { - display:inline-block; - padding-right:8px - } - .rst-content .viewcode-back, - .rst-content .viewcode-link { - display:inline-block; - color:#27ae60; - font-size:80%; - padding-left:24px - } - .rst-content .viewcode-back { - display:block; - float:right - } - .rst-content p.rubric { - margin-bottom:12px; - font-weight:700 - } - .rst-content code.download, - .rst-content tt.download { - background:inherit; - padding:inherit; - font-weight:400; - font-family:inherit; - font-size:inherit; - color:inherit; - border:inherit; - white-space:inherit - } - .rst-content code.download span:first-child, - .rst-content tt.download span:first-child { - -webkit-font-smoothing:subpixel-antialiased - } - .rst-content code.download span:first-child:before, - .rst-content tt.download span:first-child:before { - margin-right:4px - } - .rst-content .guilabel { - border:1px solid #7fbbe3; - background:#e7f2fa; - font-size:80%; - font-weight:700; - border-radius:4px; - padding:2.4px 6px; - margin:auto 2px - } - .rst-content .versionmodified { - font-style:italic - } - @media screen and (max-width:480px) { - .rst-content .sidebar { - width:100% - } - } - span[id*=MathJax-Span] { - color:#404040 - } - .math { - text-align:center - } - @font-face { - font-family:Lato; - src:url(fonts/lato-normal.woff2?bd03a2cc277bbbc338d464e679fe9942) format("woff2"), - url(fonts/lato-normal.woff?27bd77b9162d388cb8d4c4217c7c5e2a) format("woff"); - font-weight:400; - font-style:normal; - font-display:block - } - @font-face { - font-family:Lato; - src:url(fonts/lato-bold.woff2?cccb897485813c7c256901dbca54ecf2) format("woff2"), - url(fonts/lato-bold.woff?d878b6c29b10beca227e9eef4246111b) format("woff"); - font-weight:700; - font-style:normal; - font-display:block - } - @font-face { - font-family:Lato; - src:url(fonts/lato-bold-italic.woff2?0b6bb6725576b072c5d0b02ecdd1900d) format("woff2"), - url(fonts/lato-bold-italic.woff?9c7e4e9eb485b4a121c760e61bc3707c) format("woff"); - font-weight:700; - font-style:italic; - font-display:block - } - @font-face { - font-family:Lato; - src:url(fonts/lato-normal-italic.woff2?4eb103b4d12be57cb1d040ed5e162e9d) format("woff2"), - url(fonts/lato-normal-italic.woff?f28f2d6482446544ef1ea1ccc6dd5892) format("woff"); - font-weight:400; - font-style:italic; - font-display:block - } - @font-face { - font-family:Roboto Slab; - font-style:normal; - font-weight:400; - src:url(fonts/Roboto-Slab-Regular.woff2?7abf5b8d04d26a2cafea937019bca958) format("woff2"), - url(fonts/Roboto-Slab-Regular.woff?c1be9284088d487c5e3ff0a10a92e58c) format("woff"); - font-display:block - } - @font-face { - font-family:Roboto Slab; - font-style:normal; - font-weight:700; - src:url(fonts/Roboto-Slab-Bold.woff2?9984f4a9bda09be08e83f2506954adbe) format("woff2"), - url(fonts/Roboto-Slab-Bold.woff?bed5564a116b05148e3b3bea6fb1162a) format("woff"); - font-display:block - } - \ No newline at end of file diff --git a/docs/_static/custom.css b/docs/_static/custom.css deleted file mode 100644 index 94ee0bdf7..000000000 --- a/docs/_static/custom.css +++ /dev/null @@ -1,45 +0,0 @@ -wy-nav-content { - max-width: none; -} - - -.math { - text-align: left; -} - -.eqno { - float: right; -} - -table { - display: block; - max-height: 400px; - overflow-y: scroll; -} - -.literalinclude { - display: block; - max-height: 400px; - overflow-y: scroll; -} - -#div.wy-side-scroll{ -# background:#cb463f; -#} - -div.wy-menu.wy-menu-vertical > .caption { - color: #cb463f; -} - -# LIGHT BLUE background:#0099ff -# BLUE: background:#0B619C -# ADAM RED: background:#cb463f; - -span.caption.caption-text{ - color: #000000; -} - -td{ - white-space: normal !important; -} - diff --git a/docs/_static/doctools.js b/docs/_static/doctools.js deleted file mode 100644 index 61ac9d266..000000000 --- a/docs/_static/doctools.js +++ /dev/null @@ -1,321 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - * - * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL - */ -jQuery.urldecode = function(x) { - if (!x) { - return x - } - return decodeURIComponent(x.replace(/\+/g, ' ')); -}; - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s === 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node, addItems) { - if (node.nodeType === 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && - !jQuery(node.parentNode).hasClass(className) && - !jQuery(node.parentNode).hasClass("nohighlight")) { - var span; - var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); - if (isInSVG) { - span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); - } else { - span = document.createElement("span"); - span.className = className; - } - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - if (isInSVG) { - var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); - var bbox = node.parentElement.getBBox(); - rect.x.baseVal.value = bbox.x; - rect.y.baseVal.value = bbox.y; - rect.width.baseVal.value = bbox.width; - rect.height.baseVal.value = bbox.height; - rect.setAttribute('class', className); - addItems.push({ - "parent": node.parentNode, - "target": rect}); - } - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this, addItems); - }); - } - } - var addItems = []; - var result = this.each(function() { - highlight(this, addItems); - }); - for (var i = 0; i < addItems.length; ++i) { - jQuery(addItems[i].parent).before(addItems[i].target); - } - return result; -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { - this.initOnKeyListeners(); - } - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated === 'undefined') - return string; - return (typeof translated === 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated === 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) === 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this === '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - }, - - initOnKeyListeners: function() { - $(document).keydown(function(event) { - var activeElementType = document.activeElement.tagName; - // don't navigate when in search box, textarea, dropdown or button - if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' - && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey - && !event.shiftKey) { - switch (event.keyCode) { - case 37: // left - var prevHref = $('link[rel="prev"]').prop('href'); - if (prevHref) { - window.location.href = prevHref; - return false; - } - case 39: // right - var nextHref = $('link[rel="next"]').prop('href'); - if (nextHref) { - window.location.href = nextHref; - return false; - } - } - } - }); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js deleted file mode 100644 index 0facd5b68..000000000 --- a/docs/_static/documentation_options.js +++ /dev/null @@ -1,12 +0,0 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '', - LANGUAGE: 'None', - COLLAPSE_INDEX: false, - BUILDER: 'html', - FILE_SUFFIX: '.html', - LINK_SUFFIX: '.html', - HAS_SOURCE: true, - SOURCELINK_SUFFIX: '.txt', - NAVIGATION_WITH_KEYS: false -}; \ No newline at end of file diff --git a/docs/_static/file.png b/docs/_static/file.png deleted file mode 100644 index a858a410e..000000000 Binary files a/docs/_static/file.png and /dev/null differ diff --git a/docs/_static/fmkPlay.css b/docs/_static/fmkPlay.css deleted file mode 100644 index a55a15f96..000000000 --- a/docs/_static/fmkPlay.css +++ /dev/null @@ -1,19 +0,0 @@ -div.wy-side-scroll{ - background:#cb463f; -} - -# LIGHT BLUE background:#0099ff -# BLUE: background:#0B619C -# RED: background:#cb463f; - -#span.caption-text{ -# color: #000000; -#} - -#.wy-menu-vertical header, .wy-menu-vertical p.caption { -# color: #000000; -#} - -td{ - white-space: normal !important; -} \ No newline at end of file diff --git a/docs/_static/img/SimCenter-Only.png b/docs/_static/img/SimCenter-Only.png deleted file mode 100644 index 665309008..000000000 Binary files a/docs/_static/img/SimCenter-Only.png and /dev/null differ diff --git a/docs/_static/jquery-3.5.1.js b/docs/_static/jquery-3.5.1.js deleted file mode 100644 index 50937333b..000000000 --- a/docs/_static/jquery-3.5.1.js +++ /dev/null @@ -1,10872 +0,0 @@ -/*! - * jQuery JavaScript Library v3.5.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2020-05-04T22:49Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2. API Documentation

- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/API/pelicun/API_pelicun_auto.html b/docs/common/developer_manual/API/pelicun/API_pelicun_auto.html deleted file mode 100644 index e55cc21ea..000000000 --- a/docs/common/developer_manual/API/pelicun/API_pelicun_auto.html +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - - - 2.1.1. pelicun.auto module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.1.1. pelicun.auto module

-

This module has classes and methods that auto-populate DL models.

-

Contents

- ---- - - - - - -

auto_populate(DL_input_path, EDP_input_path, …)

Short description

-
-
-pelicun.auto.auto_populate(DL_input_path, EDP_input_path, DL_method, realization_count, coupled_EDP, event_time, ground_failure, auto_script_path=None)[source]
-

Short description

-

Assumptions: -- The BIM is stored under ‘GeneralInformation’ or ‘GI’ in the root of -DL_input

-
-
Parameters
-
-
DL_input_path:
-
-
-
Returns
-
-
DL_input
-
DL_ap_path
-
-
-
-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/API/pelicun/API_pelicun_base.html b/docs/common/developer_manual/API/pelicun/API_pelicun_base.html deleted file mode 100644 index 0558656d1..000000000 --- a/docs/common/developer_manual/API/pelicun/API_pelicun_base.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - - - 2.1.2. pelicun.base module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.1.2. pelicun.base module

-

This module defines constants, basic classes and methods for pelicun.

-
-
-pelicun.base.log_msg(msg='', prepend_timestamp=True)[source]
-

Print a message to the screen with the current time as prefix

-

The time is in ISO-8601 format, e.g. 2018-06-16T20:24:04Z

-
-
Parameters
-
-
msg: string

Message to print.

-
-
-
-
-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/API/pelicun/API_pelicun_control.html b/docs/common/developer_manual/API/pelicun/API_pelicun_control.html deleted file mode 100644 index 5367c01de..000000000 --- a/docs/common/developer_manual/API/pelicun/API_pelicun_control.html +++ /dev/null @@ -1,815 +0,0 @@ - - - - - - - - - - 2.1.3. pelicun.control module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.1.3. pelicun.control module

-

This module has classes and methods that control the performance assessment.

-

Contents

- ---- - - - - - - - - - - - -

Assessment([log_file])

A high-level class that collects features common to all supported loss assessment methods.

FEMA_P58_Assessment([inj_lvls, log_file])

An Assessment class that implements the loss assessment method in FEMA P58.

HAZUS_Assessment([hazard, inj_lvls, log_file])

An Assessment class that implements the damage and loss assessment method following the HAZUS Technical Manual and the HAZUS software.

-
-
-class pelicun.control.Assessment(log_file=True)[source]
-

Bases: object

-

A high-level class that collects features common to all supported loss -assessment methods. This class will only rarely be called directly when -using pelicun.

-
-
Attributes
-
-
beta_tot

Calculate the total additional uncertainty for post processing.

-
-
-
-
-

Methods

- ---- - - - - - - - - - - - - - - - - - - - - -

calculate_damage()

Characterize the damage experienced in each random event realization.

calculate_losses()

Characterize the consequences of damage in each random event realization.

define_loss_model()

Create the stochastic loss model based on the inputs provided earlier.

define_random_variables()

Define the random variables used for loss assessment.

read_inputs(path_DL_input, path_EDP_input[, …])

Read and process the input files to describe the loss assessment task.

save_outputs(output_path, EDP_file, DM_file, …)

Export the results.

-
-
-property beta_tot
-

Calculate the total additional uncertainty for post processing.

-

The total additional uncertainty is the squared root of sum of squared -uncertainties corresponding to ground motion and modeling.

-
-
Returns
-
-
beta_total: float

The total uncertainty (logarithmic EDP standard deviation) to add -to the EDP distribution. Returns None if no additional uncertainty -is assigned.

-
-
-
-
-
- -
-
-read_inputs(path_DL_input, path_EDP_input, verbose=False)[source]
-

Read and process the input files to describe the loss assessment task.

-
-
Parameters
-
-
path_DL_input: string

Location of the Damage and Loss input file. The file is expected to -be a JSON with data stored in a standard format described in detail -in the Input section of the documentation.

-
-
path_EDP_input: string

Location of the EDP input file. The file is expected to follow the -output formatting of Dakota. The Input section of the documentation -provides more information about the expected formatting.

-
-
verbose: boolean, default: False

If True, the method echoes the information read from the files. -This can be useful to ensure that the information in the file is -properly read by the method.

-
-
-
-
-
- -
-
-define_random_variables()[source]
-

Define the random variables used for loss assessment.

-
- -
-
-define_loss_model()[source]
-

Create the stochastic loss model based on the inputs provided earlier.

-
- -
-
-calculate_damage()[source]
-

Characterize the damage experienced in each random event realization.

-
- -
-
-calculate_losses()[source]
-

Characterize the consequences of damage in each random event realization.

-
- -
-
-save_outputs(output_path, EDP_file, DM_file, DV_file, suffix='', detailed_results=True)[source]
-

Export the results.

-
- -
- -
-
-class pelicun.control.FEMA_P58_Assessment(inj_lvls=2, log_file=True)[source]
-

Bases: pelicun.control.Assessment

-

An Assessment class that implements the loss assessment method in FEMA P58.

-
-
Attributes
-
-
beta_tot

Calculate the total additional uncertainty for post processing.

-
-
-
-
-

Methods

- ---- - - - - - - - - - - - - - - - - - - - - - - - -

aggregate_results()

calculate_damage()

Characterize the damage experienced in each random event realization.

calculate_losses()

Characterize the consequences of damage in each random event realization.

define_loss_model()

Create the stochastic loss model based on the inputs provided earlier.

define_random_variables()

Define the random variables used for loss assessment.

read_inputs(path_DL_input, path_EDP_input[, …])

Read and process the input files to describe the loss assessment task.

save_outputs(*args, **kwargs)

-
-
-read_inputs(path_DL_input, path_EDP_input, verbose=False)[source]
-

Read and process the input files to describe the loss assessment task.

-
-
Parameters
-
-
path_DL_input: string

Location of the Damage and Loss input file. The file is expected to -be a JSON with data stored in a standard format described in detail -in the Input section of the documentation.

-
-
path_EDP_input: string

Location of the EDP input file. The file is expected to follow the -output formatting of Dakota. The Input section of the documentation -provides more information about the expected formatting.

-
-
verbose: boolean, default: False

If True, the method echoes the information read from the files. -This can be useful to ensure that the information in the file is -properly read by the method.

-
-
-
-
-
- -
-
-define_random_variables()[source]
-

Define the random variables used for loss assessment.

-

Following the FEMA P58 methodology, the groups of parameters below are -considered random. Simple correlation structures within each group can -be specified through the DL input file. The random decision variables -are only created and used later if those particular decision variables -are requested in the input file.

-
    -
  1. Demand (EDP) distribution

  2. -
-

Describe the uncertainty in the demands. Unlike other random variables, -the EDPs are characterized by the EDP input data provided earlier. All -EDPs are handled in one multivariate lognormal distribution. If more -than one sample is provided, the distribution is fit to the EDP data. -Otherwise, the provided data point is assumed to be the median value -and the additional uncertainty prescribed describes the dispersion. See -_create_RV_demands() for more details.

-
    -
  1. Component quantities

  2. -
-

Describe the uncertainty in the quantity of components in each -Performance Group. All Fragility Groups are handled in the same -multivariate distribution. Consequently, correlation between various -groups of component quantities can be specified. See -_create_RV_quantities() for details.

-
    -
  1. Fragility EDP limits

  2. -
-

Describe the uncertainty in the EDP limit that corresponds to -exceedance of each Damage State. EDP limits are grouped by Fragility -Groups. Consequently, correlation between fragility limits are -currently limited within Fragility Groups. See -_create_RV_fragilities() for details.

-
    -
  1. Reconstruction cost and time

  2. -
-

Describe the uncertainty in the cost and duration of reconstruction of -each component conditioned on the damage state of the component. All -Fragility Groups are handled in the same multivariate distribution. -Consequently, correlation between various groups of component -reconstruction time and cost estimates can be specified. See -_create_RV_repairs() for details.

-
    -
  1. Damaged component proportions that trigger a red tag

  2. -
-

Describe the uncertainty in the amount of damaged components needed to -trigger a red tag for the building. All Fragility Groups are handled in -the same multivariate distribution. Consequently, correlation between -various groups of component proportion limits can be specified. See -_create_RV_red_tags() for details.

-
    -
  1. Injuries

  2. -
-

Describe the uncertainty in the proportion of people in the affected -area getting injuries exceeding a certain level of severity. FEMA P58 -uses two severity levels: injury and fatality. Both levels for all -Fragility Groups are handled in the same multivariate distribution. -Consequently, correlation between various groups of component injury -expectations can be specified. See _create_RV_injuries() for details.

-
- -
-
-define_loss_model()[source]
-

Create the stochastic loss model based on the inputs provided earlier.

-

Following the FEMA P58 methodology, the components specified in the -Damage and Loss input file are used to create Fragility Groups. Each -Fragility Group corresponds to a component that might be present in -the building at several locations. See _create_fragility_groups() for -more details about the creation of Fragility Groups.

-
- -
-
-calculate_damage()[source]
-

Characterize the damage experienced in each random event realization.

-

First, the time of the event (month, weekday/weekend, hour) is randomly -generated for each realization. Given the event time, the number of -people present at each floor of the building is calculated.

-

Second, the realizations that led to collapse are filtered. See -_calc_collapses() for more details on collapse estimation.

-

Finally, the realizations that did not lead to building collapse are -further investigated and the quantities of components in each damage -state are estimated. See _calc_damage() for more details on damage -estimation.

-
- -
-
-calculate_losses()[source]
-

Characterize the consequences of damage in each random event realization.

-

For the sake of efficiency, only the decision variables requested in -the input file are estimated. The following consequences are handled by -this method:

-

Reconstruction time and cost -Estimate the irreparable cases based on residual drift magnitude and -the provided irreparable drift limits. Realizations that led to -irreparable damage or collapse are assigned the replacement cost and -time of the building when reconstruction cost and time is estimated. -Repairable cases get a cost and time estimate for each Damage State in -each Performance Group. For more information about estimating -irreparability see _calc_irreparable() and reconstruction cost and -time see _calc_repair_cost_and_time() methods.

-

Injuries -Collapse-induced injuries are based on the collapse modes and -corresponding injury characterization. Injuries conditioned on no -collapse are based on the affected area and the probability of -injuries of various severity specified in the component data file. For -more information about estimating injuries conditioned on collapse and -no collapse, see _calc_collapse_injuries() and -_calc_non_collapse_injuries, respectively.

-

Red Tag -The probability of getting an unsafe placard or red tag is a function -of the amount of damage experienced in various Damage States for each -Performance Group. The damage limits that trigger an unsafe placard are -specified in the component data file. For more information on -assigning red tags to realizations see the _calc_red_tag() method.

-
- -
-
-aggregate_results()[source]
-
- -
-
-save_outputs(*args, **kwargs)[source]
-
- -
- -
-
-class pelicun.control.HAZUS_Assessment(hazard='EQ', inj_lvls=4, log_file=True)[source]
-

Bases: pelicun.control.Assessment

-

An Assessment class that implements the damage and loss assessment method -following the HAZUS Technical Manual and the HAZUS software.

-
-
Parameters
-
-
hazard: {‘EQ’, ‘HU’}

Identifies the type of hazard. EQ corresponds to earthquake, HU -corresponds to hurricane. -default: ‘EQ’.

-
-
inj_lvls: int

Defines the discretization used to describe the severity of injuries. -The HAZUS earthquake methodology uses 4 levels. -default: 4

-
-
-
-
Attributes
-
-
beta_tot

Calculate the total additional uncertainty for post processing.

-
-
-
-
-

Methods

- ---- - - - - - - - - - - - - - - - - - - - - - - - -

aggregate_results()

calculate_damage()

Characterize the damage experienced in each random event realization.

calculate_losses()

Characterize the consequences of damage in each random event realization.

define_loss_model()

Create the stochastic loss model based on the inputs provided earlier.

define_random_variables()

Define the random variables used for loss assessment.

read_inputs(path_DL_input, path_EDP_input[, …])

Read and process the input files to describe the loss assessment task.

save_outputs(*args, **kwargs)

-
-
-read_inputs(path_DL_input, path_EDP_input, verbose=False)[source]
-

Read and process the input files to describe the loss assessment task.

-
-
Parameters
-
-
path_DL_input: string

Location of the Damage and Loss input file. The file is expected to -be a JSON with data stored in a standard format described in detail -in the Input section of the documentation.

-
-
path_EDP_input: string

Location of the EDP input file. The file is expected to follow the -output formatting of Dakota. The Input section of the documentation -provides more information about the expected formatting.

-
-
verbose: boolean, default: False

If True, the method echoes the information read from the files. -This can be useful to ensure that the information in the file is -properly read by the method.

-
-
-
-
-
- -
-
-define_random_variables()[source]
-

Define the random variables used for loss assessment.

-

Following the HAZUS methodology, only the groups of parameters below -are considered random. Correlations within groups are not considered -because each Fragility Group has only one Performance Group with a -in this implementation.

-
    -
  1. Demand (EDP) distribution

  2. -
-

Describe the uncertainty in the demands. Unlike other random variables, -the EDPs are characterized by the EDP input data provided earlier. All -EDPs are handled in one multivariate lognormal distribution. If more -than one sample is provided, the distribution is fit to the EDP data. -Otherwise, the provided data point is assumed to be the median value -and the additional uncertainty prescribed describes the dispersion. See -_create_RV_demands() for more details.

-
    -
  1. Fragility EDP limits

  2. -
-

Describe the uncertainty in the EDP limit that corresponds to -exceedance of each Damage State. EDP limits are grouped by Fragility -Groups. See _create_RV_fragilities() for details.

-
- -
-
-define_loss_model()[source]
-

Create the stochastic loss model based on the inputs provided earlier.

-

Following the HAZUS methodology, the component assemblies specified in -the Damage and Loss input file are used to create Fragility Groups. -Each Fragility Group corresponds to one assembly that represents every -component of the given type in the structure. See -_create_fragility_groups() for more details about the creation of -Fragility Groups.

-
- -
-
-calculate_damage()[source]
-

Characterize the damage experienced in each random event realization.

-

First, the time of the event (month, weekday/weekend, hour) is randomly -generated for each realization. Given the event time, if we are interested -in injuries, the number of people present at each floor of the building is -sampled. The event time is only important if we are interested in injuries, -but it is calculated every time because it is not a large overhead and it -serves as the basis of indexing every other array.

-

Second, the quantities of components in each damage state are estimated. -See _calc_damage() for more details on damage estimation.

-

Finally, the realizations that led to collapse are filtered from the damage -data.

-
- -
-
-calculate_losses()[source]
-

Characterize the consequences of damage in each random event realization.

-

For the sake of efficiency, only the decision variables requested in -the input file are estimated. The following consequences are handled by -this method for a HAZUS assessment:

-

Reconstruction time and cost -Get a cost and time estimate for each Damage State in each Performance -Group. For more information about estimating reconstruction cost and -time see _calc_repair_cost_and_time() methods.

-

Injuries -The number of injuries are based on the probability of injuries of -various severity specified in the component data file. For more -information about estimating injuries _calc_non_collapse_injuries.

-
- -
-
-aggregate_results()[source]
-
- -
-
-save_outputs(*args, **kwargs)[source]
-
- -
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/API/pelicun/API_pelicun_db.html b/docs/common/developer_manual/API/pelicun/API_pelicun_db.html deleted file mode 100644 index fa3740413..000000000 --- a/docs/common/developer_manual/API/pelicun/API_pelicun_db.html +++ /dev/null @@ -1,542 +0,0 @@ - - - - - - - - - - 2.1.4. pelicun.db module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.1.4. pelicun.db module

-

This module has classes and methods to manage databases used by pelicun.

-

Contents

- ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

convert_jsons_to_table(json_id_list, …)

save_to_standard_HDF(df, name, target_path)

Saves a DataFrame in a standard HDF format using h5py.

convert_json_files_to_HDF(data_source_dir, …)

Converts data from json files to a single HDF5 file

convert_Series_to_dict(comp_Series)

Converts data from a table to a json file

convert_P58_data_to_json(data_dir, target_dir)

Create JSON data files from publicly available P58 data.

create_HAZUS_EQ_json_files(data_dir, target_dir)

Create JSON data files from publicly available HAZUS data.

create_HAZUS_EQ_story_json_files(data_dir, …)

Create JSON data files from publicly available HAZUS data.

create_HAZUS_EQ_PGA_json_files(data_dir, …)

Create JSON data files from publicly available HAZUS data.

create_HAZUS_HU_json_files(data_dir, target_dir)

Create JSON data files from publicly available HAZUS data.

-
-
-pelicun.db.dict_generator(indict, pre=None)[source]
-

Lists all branches of a tree defined by a dictionary.

-

The dictionary can have nested dictionaries and lists. When encountering a -list, its elements are returned as separate branches with each element’s id -created as a combination of the parent key and #i where i stands for the -element number in the list.

-

This method can process a json file and break it up into independent -branches.

-
- -
-
-pelicun.db.get_val_from_dict(indict, col)[source]
-

Gets the value from a branch of a dictionary.

-

The dictionary can have nested dictionaries and lists. When walking through -lists, #i in the branch data identifies the ith element of the list.

-

This method can be used to travel branches of a dictionary previously -defined by the dict_generator method above.

-
- -
-
-pelicun.db.save_to_standard_HDF(df, name, target_path, mode='w')[source]
-

Saves a DataFrame in a standard HDF format using h5py.

-
- -
-
-pelicun.db.convert_json_files_to_HDF(data_source_dir, DL_dir, db_name)[source]
-

Converts data from json files to a single HDF5 file

-
- -
-
-pelicun.db.convert_Series_to_dict(comp_Series)[source]
-

Converts data from a table to a json file

-
- -
-
-pelicun.db.convert_P58_data_to_json(data_dir, target_dir)[source]
-

Create JSON data files from publicly available P58 data.

-

FEMA P58 damage and loss information is publicly available in an Excel -spreadsheet and also in a series of XML files as part of the PACT tool. -Those files are copied to the resources folder in the pelicun repo. Here -we collect the available information on Fragility Groups from those files -and save the damage and loss data in the common SimCenter JSON format.

-

A large part of the Fragility Groups in FEMA P58 do not have complete -damage and loss information available. These FGs are clearly marked with -an incomplete flag in the JSON file and the ‘Undefined’ value highlights -the missing pieces of information.

-
-
Parameters
-
-
data_dir: string

Path to the folder with the FEMA P58 Excel file and a ‘DL xml’ -subfolder in it that contains the XML files.

-
-
target_dir: string

Path to the folder where the JSON files shall be saved.

-
-
-
-
-
- -
-
-pelicun.db.create_HAZUS_EQ_json_files(data_dir, target_dir)[source]
-

Create JSON data files from publicly available HAZUS data.

-

HAZUS damage and loss information is publicly available in the technical -manuals. The relevant tables have been converted into a JSON input file -(hazus_data_eq.json) that is stored in the ‘resources/HAZUS MH 2.1’ folder -in the pelicun repo. Here we read that file (or a file of similar format) -and produce damage and loss data for Fragility Groups in the common -SimCenter JSON format.

-

HAZUS handles damage and losses at the assembly level differentiating only -structural and two types of non-structural component assemblies. In this -implementation we consider each of those assemblies a Fragility Group -and describe their damage and its consequences in a FEMA P58-like framework -but using the data from the HAZUS Technical Manual.

-
-
Parameters
-
-
data_dir: string

Path to the folder with the hazus_data_eq JSON file.

-
-
target_dir: string

Path to the folder where the results shall be saved. The population -distribution file will be saved here, the DL JSON files will be saved -to a ‘DL json’ subfolder.

-
-
-
-
-
- -
-
-pelicun.db.create_HAZUS_EQ_story_json_files(data_dir, target_dir)[source]
-

Create JSON data files from publicly available HAZUS data.

-

HAZUS damage and loss information is publicly available in the technical -manuals. The relevant tables have been converted into a JSON input file -(hazus_data_eq.json) that is stored in the ‘resources/HAZUS MH 2.1’ folder -in the pelicun repo. Here we read that file (or a file of similar format) -and produce damage and loss data for Fragility Groups in the common -SimCenter JSON format.

-

HAZUS handles damage and losses at the assembly level differentiating only -structural and two types of non-structural component assemblies. In this -implementation we consider each of those assemblies a Fragility Group -and describe their damage and its consequences in a FEMA P58-like framework -but using the data from the HAZUS Technical Manual.

-
-
Parameters
-
-
data_dir: string

Path to the folder with the hazus_data_eq JSON file.

-
-
target_dir: string

Path to the folder where the results shall be saved. The population -distribution file will be saved here, the DL JSON files will be saved -to a ‘DL json’ subfolder.

-
-
-
-
-
- -
-
-pelicun.db.create_HAZUS_EQ_PGA_json_files(data_dir, target_dir)[source]
-

Create JSON data files from publicly available HAZUS data.

-

HAZUS damage and loss information is publicly available in the technical -manuals. The relevant tables have been converted into a JSON input file -(hazus_data_eq.json) that is stored in the ‘resources/HAZUS MH 2.1 -earthquake PGA’ folder in the pelicun repo. Here we read that file (or a -file of similar format) and produce damage and loss data for Fragility -Groups in the common SimCenter JSON format.

-

HAZUS handles damage and losses at the assembly level. This method assumes -that we use the fragility curves controlled by equivalent PGA from HAZUS. -Those curves are only available for structural component assemblies. A -Fragility Group is created for each of the structural configurations that -describes their damage and its consequences in a FEMA P58-like framework -but using the data from the HAZUS Technical Manual.

-
-
Parameters
-
-
data_dir: string

Path to the folder with the hazus_data_eq JSON file.

-
-
target_dir: string

Path to the folder where the results shall be saved. The population -distribution file will be saved here, the DL JSON files will be saved -to a ‘DL json’ subfolder.

-
-
-
-
-
- -
-
-pelicun.db.create_HAZUS_HU_json_files(data_dir, target_dir)[source]
-

Create JSON data files from publicly available HAZUS data.

-

HAZUS damage and loss information is publicly available in the technical -manuals and the HAZUS software tool. The relevant data have been collected -in a series of Excel files (e.g., hu_Wood.xlsx) that are stored in the -‘resources/HAZUS MH 2.1 hurricane’ folder in the pelicun repo. Here we read -that file (or a file of similar format) and produce damage and loss data -for Fragility Groups in the common SimCenter JSON format.

-

The HAZUS hurricane methodology handles damage and losses at the assembly -level. In this implementation each building is represented by one Fragility -Group that describes the damage states and their consequences in a FEMA -P58-like framework but using the data from the HAZUS Technical Manual.

-

Note: HAZUS calculates lossess independently of damage using peak wind gust -speed as a controlling variable. We fitted a model to the curves in HAZUS -that assigns losses to each damage state and determines losses as a function -of building damage. Results shall be in good agreement with those of HAZUS -for the majority of building configurations. Exceptions and more details -are provided in the … section of the documentation.

-
-
Parameters
-
-
data_dir: string

Path to the folder with the hazus_data_eq JSON file.

-
-
target_dir: string

Path to the folder where the results shall be saved. The population -distribution file will be saved here, the DL JSON files will be saved -to a ‘DL json’ subfolder.

-
-
-
-
-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/API/pelicun/API_pelicun_file_io.html b/docs/common/developer_manual/API/pelicun/API_pelicun_file_io.html deleted file mode 100644 index 2eb0a0d8d..000000000 --- a/docs/common/developer_manual/API/pelicun/API_pelicun_file_io.html +++ /dev/null @@ -1,498 +0,0 @@ - - - - - - - - - - 2.1.5. pelicun.file_io module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.1.5. pelicun.file_io module

-

This module has classes and methods that handle file input and output.

-

Contents

- ---- - - - - - - - - - - - - - - - - - - - - - - - - - - -

read_SimCenter_DL_input(input_path[, …])

Read the damage and loss input information from a json file.

read_SimCenter_EDP_input(input_path[, …])

Read the EDP input information from a text file with a tabular structure.

read_population_distribution(path_POP, occupancy)

Read the population distribution from an external json file.

read_component_DL_data(path_CMP, comp_info)

Read the damage and loss data for the components of the asset.

write_SimCenter_DL_output(output_dir, …[, …])

write_SimCenter_EDP_output(output_dir, …)

write_SimCenter_DM_output(output_dir, …)

write_SimCenter_DV_output(output_dir, …)

-
-
-pelicun.file_io.read_SimCenter_DL_input(input_path, assessment_type='P58', verbose=False)[source]
-

Read the damage and loss input information from a json file.

-

The SimCenter in the function name refers to having specific fields -available in the file. Such a file is automatically prepared by the -SimCenter PBE Application, but it can also be easily manipulated or created -manually. The accepted input fields are explained in detail in the Input -section of the documentation.

-
-
Parameters
-
-
input_path: string

Location of the DL input json file.

-
-
assessment_type: {‘P58’, ‘HAZUS_EQ’, ‘HAZUS_HU’}

Tailors the warnings and verifications towards the type of assessment. -default: ‘P58’.

-
-
verbose: boolean

If True, the function echoes the information read from the file. This -can be useful to ensure that the information in the file is properly -read by the method.

-
-
-
-
Returns
-
-
data: dict

A dictionary with all the damage and loss data.

-
-
-
-
-
- -
-
-pelicun.file_io.read_SimCenter_EDP_input(input_path, EDP_kinds=('PID', 'PFA'), units={'PFA': 1.0, 'PID': 1.0}, verbose=False)[source]
-

Read the EDP input information from a text file with a tabular structure.

-

The SimCenter in the function name refers to having specific columns -available in the file. Currently, the expected formatting follows the -output formatting of Dakota that is applied for the dakotaTab.out. When -using pelicun with the PBE Application, such a dakotaTab.out is -automatically generated. The Input section of the documentation provides -more information about the expected formatting of the EDP input file.

-
-
Parameters
-
-
input_path: string

Location of the EDP input file.

-
-
EDP_kinds: tuple of strings, default: (‘PID’, ‘PFA’)

Collection of the kinds of EDPs in the input file. The default pair of -‘PID’ and ‘PFA’ can be replaced or extended by any other EDPs.

-
-
units: dict, default: {‘PID’:1., ‘PFA’:1}

Defines the unit conversion that shall be applied to the EDP values.

-
-
verbose: boolean

If True, the function echoes the information read from the file. This -can be useful to ensure that the information in the file is properly -read by the method.

-
-
-
-
Returns
-
-
data: dict

A dictionary with all the EDP data.

-
-
-
-
-
- -
-
-pelicun.file_io.read_population_distribution(path_POP, occupancy, assessment_type='P58', verbose=False)[source]
-

Read the population distribution from an external json file.

-

The population distribution is expected in a format used in FEMA P58, but -the list of occupancy categories can be modified and/or extended beyond -those available in that document. The population distributions for the -occupancy categories from FEMA P58 and HAZUS MH are provided with pelicun -in the population.json files in the corresponding folder under resources.

-

Note: Population distributions in HAZUS do not have a 1:1 mapping to the -occupancy types provided in the Technical Manual. We expect inputs to -follow the naming convention in the HAZUS Technical Manual and convert -those to the broader categories here automatically. During conversion, the -following assumptions are made about the occupancy classes: i) RES classes -are best described as Residential; ii) COM and REL as Commercial; iii) EDU -as Educational; iv) IND and AGR as Industrial; v) Hotels do not have a -matching occupancy class.

-
-
Parameters
-
-
path_POP: string

Location of the population distribution json file.

-
-
occupancy: string

Identifies the occupancy category.

-
-
assessment_type: {‘P58’, ‘HAZUS_EQ’}

Tailors the warnings and verifications towards the type of assessment. -default: ‘P58’.

-
-
verbose: boolean

If True, the function echoes the information read from the file. This -can be useful to ensure that the information in the file is properly -read by the method.

-
-
-
-
Returns
-
-
data: dict

A dictionary with the population distribution data.

-
-
-
-
-
- -
-
-pelicun.file_io.read_component_DL_data(path_CMP, comp_info, assessment_type='P58', verbose=False)[source]
-

Read the damage and loss data for the components of the asset.

-

DL data for each component is assumed to be stored in a JSON file following -the DL file format specified by SimCenter. The name of the file is the ID -(key) of the component in the comp_info dictionary. Besides the filename, -the comp_info dictionary is also used to get other pieces of data about the -component that is not available in the JSON files. Therefore, the following -attributes need to be provided in the comp_info: [‘quantities’, -‘csg_weights’, ‘dirs’, ‘kind’, ‘distribution’, ‘cov’, ‘unit’, ‘locations’] -Further information about these attributes is available in the Input -section of the documentation.

-
-
Parameters
-
-
path_CMP: string

Location of the folder that contains the component data in JSON files.

-
-
comp_info: dict

Dictionary with additional information about the components.

-
-
assessment_type: {‘P58’, ‘HAZUS_EQ’, ‘HAZUS_HU’}

Tailors the warnings and verifications towards the type of assessment. -default: ‘P58’.

-
-
verbose: boolean

If True, the function echoes the information read from the files. This -can be useful to ensure that the information in the files is properly -read by the method.

-
-
-
-
Returns
-
-
data: dict

A dictionary with damage and loss data for each component.

-
-
-
-
-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/API/pelicun/API_pelicun_model.html b/docs/common/developer_manual/API/pelicun/API_pelicun_model.html deleted file mode 100644 index b969a58fe..000000000 --- a/docs/common/developer_manual/API/pelicun/API_pelicun_model.html +++ /dev/null @@ -1,1035 +0,0 @@ - - - - - - - - - - 2.1.6. pelicun.model module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.1.6. pelicun.model module

-

This module has classes and methods that define and access the model used for -loss assessment.

-

Contents

- ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

prep_constant_median_DV(median)

Returns a constant median Decision Variable (DV) function.

prep_bounded_linear_median_DV(median_max, …)

Returns a bounded linear median Decision Variable (DV) function.

prep_bounded_multilinear_median_DV(medians, …)

Returns a bounded multilinear median Decision Variable (DV) function.

FragilityFunction(EDP_limit)

Describes the relationship between asset response and damage.

ConsequenceFunction(DV_median, DV_distribution)

Describes the relationship between damage and a decision variable.

DamageState(ID[, weight, description, …])

Characterizes one type of damage that corresponds to a particular DSG.

DamageStateGroup(ID, DS_set, DS_set_kind)

A set of similar component damages that are controlled by the same EDP.

PerformanceGroup(ID, location, quantity, …)

A group of similar components that experience the same demands.

FragilityGroup(ID, demand_type, …[, …])

Groups a set of similar components from a loss-assessment perspective.

-
-
-class pelicun.model.FragilityFunction(EDP_limit)[source]
-

Bases: object

-

Describes the relationship between asset response and damage.

-

Asset response is characterized by a Demand value that represents an -engineering demand parameter (EDP). Only a scalar EDP is supported -currently. The damage is characterized by a set of DamageStateGroup (DSG) -objects. For each DSG, the corresponding EDP limit (i.e. the EDP at which -the asset is assumed to experience damage described by the DSG) is -considered uncertain; hence, it is described by a random variable. The -random variables that describe EDP limits for the set of DSGs are not -necessarily independent.

-

We assume that the EDP limit will be approximated by a probability -distribution for each DSG and these variables together form a multivariate -distribution. Following common practice, the correlation between -variables is assumed perfect by default, but the framework allows the -users to explore other, more realistic options.

-
-
Parameters
-
-
EDP_limit: list of RandomVariable

A list of correlated random variables where each variable corresponds -to an EDP limit that triggers a damage state. The number of -list elements shall be equal to the number of DSGs handled by the -Fragility Function (FF) and they shall be in ascending order of damage -severity.

-
-
-
-
-

Methods

- ---- - - - - - - - - -

DSG_given_EDP(EDP[, force_resampling])

Given an EDP, get a damage level based on the fragility function.

P_exc(EDP, DSG_ID)

Return the probability of damage state exceedance.

-
-
-P_exc(EDP, DSG_ID)[source]
-

Return the probability of damage state exceedance.

-

Calculate the probability of exceeding the damage corresponding to the -DSG identified by the DSG_ID conditioned on a particular EDP value.

-
-
Parameters
-
-
EDP: float scalar or ndarray

Single EDP or numpy array of EDP values.

-
-
DSG_ID: int

Identifies the conditioning DSG. The DSG numbering is 1-based, -because zero typically corresponds to the undamaged state.

-
-
-
-
Returns
-
-
P_exc: float scalar or ndarray

DSG exceedance probability at the given EDP point(s).

-
-
-
-
-
- -
-
-DSG_given_EDP(EDP, force_resampling=False)[source]
-

Given an EDP, get a damage level based on the fragility function.

-

The damage is evaluated by sampling the joint distribution of -fragilities corresponding to all possible damage levels and checking -which damage level the given EDP falls into. This approach allows for -efficient damage state evaluation for a large number of EDP -realizations.

-
-
Parameters
-
-
EDP: float scalar or ndarray or Series

Single EDP, or numpy array or pandas Series of EDP values.

-
-
force_resampling: bool, optional, default: False

If True, the probability distribution is resampled before -evaluating the damage for each EDP. This is not recommended if the -fragility functions are correlated with other sources of -uncertainty because those variables will also be resampled in this -case. If False, which is the default approach, we assume that -the random variable has already been sampled and the number of -samples greater or equal to the number of EDP values.

-
-
-
-
Returns
-
-
DSG_ID: Series

Identifies the damage that corresponds to the given EDP. A DSG_ID -of 0 means no damage.

-
-
-
-
-
- -
- -
-
-pelicun.model.prep_constant_median_DV(median)[source]
-

Returns a constant median Decision Variable (DV) function.

-
-
Parameters
-
-
median: float

The median DV for a consequence function with fixed median.

-
-
-
-
Returns
-
-
f: callable

A function that returns the constant median DV for all component -quantities.

-
-
-
-
-
- -
-
-pelicun.model.prep_bounded_linear_median_DV(median_max, median_min, quantity_lower, quantity_upper)[source]
-

Returns a bounded linear median Decision Variable (DV) function.

-

The median DV equals the min and max values when the quantity is -outside of the prescribed quantity bounds. When the quantity is within the -bounds, the returned median is calculated by a linear function with a -negative slope between max and min values.

-
-
Parameters
-
-
median_max: float, optional
-
median_min: float, optional

Minimum and maximum limits that define the bounded_linear median DV -function.

-
-
quantity_lower: float, optional
-
quantity_upper: float, optional

Lower and upper bounds of component quantity that define the -bounded_linear median DV function.

-
-
-
-
Returns
-
-
f: callable

A function that returns the median DV given the quantity of damaged -components.

-
-
-
-
-
- -
-
-pelicun.model.prep_bounded_multilinear_median_DV(medians, quantities)[source]
-

Returns a bounded multilinear median Decision Variable (DV) function.

-

The median DV equals the min and max values when the quantity is -outside of the prescribed quantity bounds. When the quantity is within the -bounds, the returned median is calculated by linear interpolation.

-
-
Parameters
-
-
medians: ndarray

Series of values that define the y coordinates of the multilinear DV -function.

-
-
quantities: ndarray

Series of values that define the component quantities corresponding to -the series of medians and serving as the x coordinates of the -multilinear DV function.

-
-
-
-
Returns
-
-
f: callable

A function that returns the median DV given the quantity of damaged -components.

-
-
-
-
-
- -
-
-class pelicun.model.ConsequenceFunction(DV_median, DV_distribution)[source]
-

Bases: object

-

Describes the relationship between damage and a decision variable.

-

Indicates the distribution of a quantified Decision Variable (DV) -conditioned on a component, an element, or the system reaching a given -damage state (DS). DV can be reconstruction cost, repair time, casualties, -injuries, etc. Its distribution might depend on the quantity of damaged -components.

-
-
Parameters
-
-
DV_median: callable

Describes the median DV as an f(quantity) function of the total -quantity of damaged components. Use the prep_constant_median_DV, and -prep_bounded_linear_median_DV helper functions to conveniently -prescribe the typical FEMA P-58 functions.

-
-
DV_distribution: RandomVariable

A random variable that characterizes the uncertainty in the DV. The -distribution shall be normalized by the median DV (i.e. the RV is -expected to have a unit median). Truncation can be used to -prescribe lower and upper limits for the DV, such as the (0,1) domain -needed for red tag evaluation.

-
-
-
-
-

Methods

- ---- - - - - - - - - -

median([quantity])

Return the value of the median DV.

sample_unit_DV([quantity, sample_size, …])

Sample the decision variable quantity per component unit.

-
-
-median(quantity=None)[source]
-

Return the value of the median DV.

-

The median DV corresponds to the component damage state (DS). If the -damage consequence depends on the quantity of damaged components, the -total quantity of damaged components shall be specified through the -quantity parameter.

-
-
Parameters
-
-
quantity: float scalar or ndarray, optional

Total quantity of damaged components that determines the magnitude -of median DV. Not needed for consequence functions with a fixed -median DV.

-
-
-
-
Returns
-
-
median: float scalar or ndarray

A single scalar for fixed median; a scalar or an array depending on -the shape of the quantity parameter for bounded_linear median.

-
-
-
-
-
- -
-
-sample_unit_DV(quantity=None, sample_size=1, force_resampling=False)[source]
-

Sample the decision variable quantity per component unit.

-

The Unit Decision Variable (UDV) corresponds to the component Damage -State (DS). It shall be multiplied by the quantity of damaged -components to get the total DV that corresponds to the quantity of the -damaged components in the asset. If the DV depends on the total -quantity of damaged components, that value shall be specified through -the quantity parameter.

-
-
Parameters
-
-
quantity: float scalar, ndarray or Series, optional, default: None

Total quantity of damaged components that determines the magnitude -of median DV. Not needed for consequence functions with a fixed -median DV.

-
-
sample_size: int, optional, default: 1

Number of samples drawn from the DV distribution. The default value -yields one sample. If quantity is an array with more than one -element, the sample_size parameter is ignored.

-
-
force_resampling: bool, optional, default: False

If True, the DV distribution (and the corresponding RV if there -are correlations) is resampled even if there are samples already -available. This is not recommended if the DV distribution is -correlated with other sources of uncertainty because those -variables will also be resampled in this case. If False, which is -the default approach, we assume that the random variable has -already been sampled and the number of samples is greater or equal -to the number of samples requested.

-
-
-
-
Returns
-
-
unit_DV: float scalar or ndarray

Unit DV samples.

-
-
-
-
-
- -
- -
-
-class pelicun.model.DamageState(ID, weight=1.0, description='', repair_cost_CF=None, reconstruction_time_CF=None, injuries_CF_set=None, affected_area=0.0, red_tag_CF=None)[source]
-

Bases: object

-

Characterizes one type of damage that corresponds to a particular DSG.

-

The occurrence of damage is evaluated at the DSG. The DS describes one of -the possibly several types of damages that belong to the same DSG and the -consequences of such damage.

-
-
Parameters
-
-
ID:int
-
weight: float, optional, default: 1.0

Describes the probability of DS occurrence, conditioned on the damage -being in the DSG linked to this DS. This information is only used for -DSGs with multiple DS corresponding to them. The weights of the set of -DS shall sum up to 1.0 if they are mutually exclusive. When the set of -DS occur simultaneously, the sum of weights typically exceeds 1.0.

-
-
description: str, optional

Provides a short description of the damage state.

-
-
affected_area: float, optional, default: 0.

Defines the area over which life safety hazards from this DS exist.

-
-
repair_cost_CF: ConsequenceFunction, optional

A consequence function that describes the cost necessary to restore the -component to its pre-disaster condition.

-
-
reconstruction_time_CF: ConsequenceFunction, optional

A consequence function that describes the time, necessary to repair the -damaged component to its pre-disaster condition.

-
-
injuries_CF_set: ConsequenceFunction array, optional

A set of consequence functions; each describes the number of people -expected to experience injury of a particular severity when the -component is in this DS. Any number of injury-levels can be considered.

-
-
red_tag_CF: ConsequenceFunction, optional

A consequence function that describes the proportion of components -(within a Performance Group) that needs to be damaged to trigger an -unsafe placard (i.e. red tag) for the building during post-disaster -inspection.

-
-
-
-
Attributes
-
-
description

Return the damage description.

-
-
weight

Return the weight of DS among the set of damage states in the DSG.

-
-
-
-
-

Methods

- ---- - - - - - - - - - - - - - - -

red_tag_dmg_limit([sample_size])

Sample the red tag consequence function and return the proportion of components that needs to be damaged to trigger a red tag.

unit_injuries([severity_level, sample_size])

Sample the injury consequence function that corresponds to the specified level of severity and return the injuries per component unit.

unit_reconstruction_time([quantity, sample_size])

Sample the reconstruction time distribution and return the unit reconstruction times.

unit_repair_cost([quantity, sample_size])

Sample the repair cost distribution and return the unit repair costs.

-
-
-property description
-

Return the damage description.

-
- -
-
-property weight
-

Return the weight of DS among the set of damage states in the DSG.

-
- -
-
-unit_repair_cost(quantity=None, sample_size=1, **kwargs)[source]
-

Sample the repair cost distribution and return the unit repair costs.

-

The unit repair costs shall be multiplied by the quantity of damaged -components to get the total repair costs for the components in this DS.

-
-
Parameters
-
-
quantity: float scalar, ndarray or Series, optional, default: None

Total quantity of damaged components that determines the median -repair cost. Not used for repair cost models with fixed median.

-
-
sample_size: int, optional, default: 1

Number of samples drawn from the repair cost distribution. The -default value yields one sample.

-
-
-
-
Returns
-
-
unit_repair_cost: float scalar or ndarray

Unit repair cost samples.

-
-
-
-
-
- -
-
-unit_reconstruction_time(quantity=None, sample_size=1, **kwargs)[source]
-

Sample the reconstruction time distribution and return the unit -reconstruction times.

-

The unit reconstruction times shall be multiplied by the quantity of -damaged components to get the total reconstruction time for the -components in this DS.

-
-
Parameters
-
-
quantity: float scalar, ndarray or Series, optional, default: None

Total quantity of damaged components that determines the magnitude -of median reconstruction time. Not used for reconstruction time -models with fixed median.

-
-
sample_size: int, optional, default: 1

Number of samples drawn from the reconstruction time distribution. -The default value yields one sample.

-
-
-
-
Returns
-
-
unit_reconstruction_time: float scalar or ndarray

Unit reconstruction time samples.

-
-
-
-
-
- -
-
-red_tag_dmg_limit(sample_size=1, **kwargs)[source]
-

Sample the red tag consequence function and return the proportion of -components that needs to be damaged to trigger a red tag.

-

The red tag consequence function is assumed to have a fixed median -value that does not depend on the quantity of damaged components.

-
-
Parameters
-
-
sample_size: int, optional, default: 1

Number of samples drawn from the red tag consequence distribution. -The default value yields one sample.

-
-
-
-
Returns
-
-
red_tag_trigger: float scalar or ndarray

Samples of damaged component proportions that trigger a red tag.

-
-
-
-
-
- -
-
-unit_injuries(severity_level=0, sample_size=1, **kwargs)[source]
-

Sample the injury consequence function that corresponds to the -specified level of severity and return the injuries per component unit.

-

The injury consequence function is assumed to have a fixed median -value that does not depend on the quantity of damaged components (i.e. -the number of injuries per component unit does not change with the -quantity of components.)

-
-
Parameters
-
-
severity_level: int, optional, default: 1

Identifies which injury consequence to sample. The indexing of -severity levels is zero-based.

-
-
sample_size: int, optional, default: 1

Number of samples drawn from the injury consequence distribution. -The default value yields one sample.

-
-
-
-
Returns
-
-
unit_injuries: float scalar or ndarray

Unit injury samples.

-
-
-
-
-
- -
- -
-
-class pelicun.model.DamageStateGroup(ID, DS_set, DS_set_kind)[source]
-

Bases: object

-

A set of similar component damages that are controlled by the same EDP.

-

Damages are described in detail by the set of Damage State objects. -Damages in a DSG are assumed to occur at the same EDP magnitude. A Damage -State Group (DSG) might have only a single DS in the simplest case.

-
-
Parameters
-
-
ID: int
-
DS_set: DamageState array
-
DS_set_kind: {‘single’, ‘mutually_exclusive’, ‘simultaneous’}

Specifies the relationship among the DS in the set. When only one DS is -defined, use the ‘single’ option to improve calculation efficiency. -When multiple DS are present, the ‘mutually_exclusive’ option assumes -that the occurrence of one DS precludes the occurrence of another DS. -In such a case, the weights of the DS in the set shall sum up to 1.0. -In a ‘simultaneous’ case the DS are independent and unrelated. Hence, -they can occur at the same time and at least one of them has to occur.

-
-
-
-
-
- -
-
-class pelicun.model.PerformanceGroup(ID, location, quantity, fragility_functions, DSG_set, csg_weights=[1.0], direction=0)[source]
-

Bases: object

-

A group of similar components that experience the same demands.

-

FEMA P-58: Performance Groups (PGs) are a sub-categorization of fragility -groups. A performance group is a subset of fragility group components that -are subjected to the same demands (e.g. story drift, floor acceleration, -etc.).

-

In buildings, most performance groups shall be organized by story level. -There is no need to separate performance groups by direction, because the -direction of components within a group can be specified during definition, -and it will be taken into consideration in the analysis.

-
-
Parameters
-
-
ID: int
-
location: int

Identifies the location of the components that belong to the PG. In a -building, location shall typically refer to the story of the building. -The location assigned to each PG shall be in agreement with the -locations assigned to the Demand objects.

-
-
quantity: RandomVariable

Specifies the quantity of components that belong to this PG. -Uncertainty in component quantities is considered by assigning a -random variable to this property.

-
-
fragility_functions: FragilityFunction list

Each fragility function describes the probability that the damage in -a subset of components will meet or exceed the damages described by -each damage state group in the DSG_set. Each is a multi-dimensional -function if there is more than one DSG. The number of functions shall -match the number of subsets defined by the csg_weights parameter.

-
-
DSG_set: DamageStateGroup array

A set of sequential Damage State Groups that describe the plausible set -of damage states of the components in the FG.

-
-
csg_weights: float ndarray, optional, default: [1.0]

Identifies subgroups of components within a PG, each of which have -perfectly correlated behavior. Correlation between the damage and -consequences among subgroups is controlled by the correlation -parameter of the FragilityGroup that the PG belongs to. Note that if -the components are assumed to have perfectly correlated behavior at the -PG level, assigning several subgroups to the PG is unnecessary. This -input shall be a list of weights that are applied to the quantity -of components to define the amount of components in each subgroup. The -sum of assigned weights shall be 1.0.

-
-
directions: int ndarray, optional, default: [0]

Identifies the direction of each subgroup of components within the PG. -The number of directions shall be identical to the number of -csg_weights assigned. In buildings, directions typically correspond to -the orientation of components in plane. Hence, using 0 or 1 to identify -‘X’ or ‘Y’ is recommended. These directions shall be in agreement with -the directions assigned to Demand objects.

-
-
-
-
-

Methods

- ---- - - - - - -

P_exc(EDP, DSG_ID)

This is a convenience function that provides a shortcut to fragility_function.P_exc().

-
-
-P_exc(EDP, DSG_ID)[source]
-

This is a convenience function that provides a shortcut to -fragility_function.P_exc(). It calculates the exceedance probability -of a given DSG conditioned on the provided EDP value(s). The fragility -functions assigned to the first subset are used for this calculation -because P_exc shall be identical among subsets.

-
-
Parameters
-
-
EDP: float scalar or ndarray

Single EDP or numpy array of EDP values.

-
-
DSG_ID: int

Identifies the DSG of interest.

-
-
-
-
Returns
-
-
P_exc: float scalar or ndarray

Exceedance probability of the given DSG at the EDP point(s).

-
-
-
-
-
- -
- -
-
-class pelicun.model.FragilityGroup(ID, demand_type, performance_groups, directional=True, correlation=True, demand_location_offset=0, incomplete=False, name='', description='', unit='ea')[source]
-

Bases: object

-

Groups a set of similar components from a loss-assessment perspective.

-

Characterizes a set of structural or non-structural components that have -similar construction characteristics, similar potential modes of damage, -similar probability of incurring those modes of damage, and similar -potential consequences resulting from their damage.

-
-
Parameters
-
-
ID: int
-
demand_type: {‘PID’, ‘PFA’, ‘PSD’, ‘PSA’, ‘ePGA’, ‘PGD’}

The type of Engineering Demand Parameter (EDP) that controls the damage -of the components in the FG. See Demand for acronym descriptions.

-
-
performance_groups: PerformanceGroup array

A list of performance groups that contain the components characterized -by the FG.

-
-
directional: bool, optional, default: True

Determines whether the components in the FG are sensitive to the -directionality of the EDP.

-
-
correlation: bool, optional, default: True

Determines whether the components within a Performance Group (PG) will -have correlated or uncorrelated damage. Correlated damage means that -all components will have the same damage state. In the uncorrelated -case, each component in the performance group will have its damage -state evaluated independently. Correlated damage reduces the required -computational effort for the calculation. Incorrect correlation -modeling will only slightly affect the mean estimates, but might -significantly change the dispersion of results.

-
-
demand_location_offset: int, optional, default: 0

Indicates if the location for the demand shall be different from the -location of the components. Damage to components of the ceiling, for -example, is controlled by demands on the floor above the one that the -components belong to. This can be indicated by setting the -demand_location_offset to 1 for such an FG.

-
-
incomplete: bool, optional, default: False

Indicates that the FG information is not complete and corresponding -results shall be treated with caution.

-
-
name: str, optional, default: ‘’

Provides a short description of the fragility group.

-
-
description: str, optional, default: ‘’

Provides a detailed description of the fragility group.

-
-
-
-
Attributes
-
-
description

Return the fragility group description.

-
-
name

Return the name of the fragility group.

-
-
-
-
-
-
-property description
-

Return the fragility group description.

-
- -
-
-property name
-

Return the name of the fragility group.

-
- -
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/API/pelicun/API_pelicun_uq.html b/docs/common/developer_manual/API/pelicun/API_pelicun_uq.html deleted file mode 100644 index 695bcaec3..000000000 --- a/docs/common/developer_manual/API/pelicun/API_pelicun_uq.html +++ /dev/null @@ -1,842 +0,0 @@ - - - - - - - - - - 2.1.7. pelicun.uq module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.1.7. pelicun.uq module

-

This module defines constants, classes and methods for uncertainty -quantification in pelicun.

-

Contents

- ---- - - - - - - - - - - - - - - - - - -

mvn_orthotope_density(mu, COV[, lower, upper])

Estimate the probability density within a hyperrectangle for an MVN distr.

fit_distribution(raw_samples, distribution)

Fit a distribution to samples using maximum likelihood estimation.

RandomVariable(name, distribution[, theta, …])

Description

RandomVariableSet(name, RV_list, Rho)

Description

RandomVariableRegistry()

Description

-
-
-pelicun.uq.mvn_orthotope_density(mu, COV, lower=None, upper=None)[source]
-

Estimate the probability density within a hyperrectangle for an MVN distr.

-

Use the method of Alan Genz (1992) to estimate the probability density -of a multivariate normal distribution within an n-orthotope (i.e., -hyperrectangle) defined by its lower and upper bounds. Limits can be -relaxed in any direction by assigning infinite bounds (i.e. numpy.inf).

-
-
Parameters
-
-
mu: float scalar or ndarray

Mean(s) of the non-truncated distribution.

-
-
COV: float ndarray

Covariance matrix of the non-truncated distribution

-
-
lower: float vector, optional, default: None

Lower bound(s) for the truncated distributions. A scalar value can be -used for a univariate case, while a list of bounds is expected in -multivariate cases. If the distribution is non-truncated from below -in a subset of the dimensions, use either None or assign an infinite -value (i.e. -numpy.inf) to those dimensions.

-
-
upper: float vector, optional, default: None

Upper bound(s) for the truncated distributions. A scalar value can be -used for a univariate case, while a list of bounds is expected in -multivariate cases. If the distribution is non-truncated from above -in a subset of the dimensions, use either None or assign an infinite -value (i.e. numpy.inf) to those dimensions.

-
-
Returns
-
——-
-
alpha: float

Estimate of the probability density within the hyperrectangle

-
-
eps_alpha: float

Estimate of the error in alpha.

-
-
-
-
-
- -
-
-pelicun.uq.fit_distribution(raw_samples, distribution, truncation_limits=[None, None], censored_count=0, detection_limits=[None, None], multi_fit=False, alpha_lim=0.0001)[source]
-

Fit a distribution to samples using maximum likelihood estimation.

-

The number of dimensions of the distribution are inferred from the -shape of the sample data. Censoring is automatically considered if the -number of censored samples and the corresponding detection limits are -provided. Infinite or unspecified truncation limits lead to fitting a -non-truncated distribution in that dimension.

-
-
Parameters
-
-
raw_samples: float ndarray

Raw data that serves as the basis of estimation. The number of samples -equals the number of columns and each row introduces a new feature. In -other words: a list of sample lists is expected where each sample list -is a collection of samples of one variable.

-
-
distribution: {‘normal’, ‘lognormal’}

Defines the target probability distribution type. Different types of -distributions can be mixed by providing a list rather than a single -value. Each element of the list corresponds to one of the features in -the raw_samples.

-
-
truncation_limits: float ndarray, optional, default: [None, None]

Lower and/or upper truncation limits for the specified distributions. -A two-element vector can be used for a univariate case, while two lists -of limits are expected in multivariate cases. If the distribution is -non-truncated from one side in a subset of the dimensions, use either -None or assign an infinite value (i.e. numpy.inf) to those dimensions.

-
-
censored_count: int, optional, default: None

The number of censored samples that are beyond the detection limits. -All samples outside the detection limits are aggregated into one set. -This works the same way in one and in multiple dimensions. Prescription -of specific censored sample counts for sub-regions of the input space -outside the detection limits is not supported.

-
-
detection_limits: float ndarray, optional, default: [None, None]

Lower and/or upper detection limits for the provided samples. A -two-element vector can be used for a univariate case, while two lists -of limits are expected in multivariate cases. If the data is not -censored from one side in a subset of the dimensions, use either None -or assign an infinite value (i.e. numpy.inf) to those dimensions.

-
-
multi_fit: bool, optional, default: False

If True, we attempt to fit a multivariate distribution to the samples. -Otherwise, we fit each marginal univariate distribution independently -and estimate the correlation matrix in the end based on the fitted -marginals. Using multi_fit can be advantageous with censored data and -if the correlation in the data is not Gaussian. It leads to -substantially longer calculation time and does not always produce -better results, especially when the number of dimensions is large.

-
-
alpha_lim: float, optional, default:None

Introduces a lower limit to the probability density within the -n-orthotope defined by the truncation limits. Assigning a reasonable -minimum (such as 1e-4) can be useful when the mean of the distribution -is several standard deviations from the truncation limits and the -sample size is small. Such cases without a limit often converge to -distant means with inflated variances. Besides being incorrect -estimates, those solutions only offer negligible reduction in the -negative log likelihood, while making subsequent sampling of the -truncated normal distribution very challenging.

-
-
-
-
Returns
-
-
theta: float ndarray

Estimates of the parameters of the fitted probability distribution in -each dimension. The following parameters are returned for the supported -distributions: -normal - mean, standard deviation; -lognormal - median, log standard deviation;

-
-
Rho: float 2D ndarray, optional

In the multivariate case, returns the estimate of the correlation -matrix.

-
-
-
-
-
- -
-
-class pelicun.uq.RandomVariable(name, distribution, theta=None, truncation_limits=None, bounds=None, custom_expr=None, raw_samples=None, anchor=None)[source]
-

Bases: object

-

Description

-
-
Parameters
-
-
name: string

A unique string that identifies the random variable.

-
-
distribution: {‘normal’, ‘lognormal’, ‘multinomial’, ‘custom’, ‘empirical’,

‘coupled_empirical’, ‘uniform’}, optional -Defines the type of probability distribution for the random variable.

-
-
theta: float scalar or ndarray, optional

Set of parameters that define the cumulative distribution function of -the variable given its distribution type. The following parameters are -expected currently for the supported distribution types: -normal - mean, standard deviation; -lognormal - median, log standard deviation; -uniform - a, b, the lower and upper bounds of the distribution; -multinomial - likelihood of each unique event (the last event’s -likelihood is adjusted automatically to ensure the likelihoods sum up -to one); -custom - according to the custom expression provided; -empirical and coupled_empirical - N/A.

-
-
truncation_limits: float ndarray, optional

Defines the [a,b] truncation limits for the distribution. Use None to -assign no limit in one direction.

-
-
bounded: float ndarray, optional

Defines the [P_a, P_b] probability bounds for the distribution. Use None -to assign no lower or upper bound.

-
-
custom_expr: string, optional

Provide an expression that is a Python syntax for a custom CDF. The -controlling variable shall be “x” and the parameters shall be “p1”, -“p2”, etc.

-
-
anchor: RandomVariable, optional

Anchors this to another variable. If the anchor is not None, this -variable will be perfectly correlated with its anchor. Note that -the attributes of this variable and its anchor do not have to be -identical.

-
-
-
-
Attributes
-
-
RV_set

Return the RV_set this RV is a member of

-
-
anchor

Return the anchor of the variable (if any).

-
-
bounds

Return the assigned probability bounds.

-
-
custom_expr

Return the assigned custom expression for CDF.

-
-
distribution

Return the assigned probability distribution type.

-
-
samples

Return the empirical or generated samples.

-
-
samples_DF

Return the empirical or generated samples in a pandas Series.

-
-
theta

Return the assigned probability distribution parameters.

-
-
truncation_limits

Return the assigned truncation limits.

-
-
uni_samples

Return the samples from the controlling uniform distribution.

-
-
-
-
-

Methods

- ---- - - - - - - - - - - - -

cdf(values)

Returns the cdf at the given values

inverse_transform(values)

Uses inverse probability integral transformation on the provided values.

inverse_transform_sampling()

Creates samples using inverse probability integral transformation.

-
-
-property distribution
-

Return the assigned probability distribution type.

-
- -
-
-property theta
-

Return the assigned probability distribution parameters.

-
- -
-
-property truncation_limits
-

Return the assigned truncation limits.

-
- -
-
-property bounds
-

Return the assigned probability bounds.

-
- -
-
-property custom_expr
-

Return the assigned custom expression for CDF.

-
- -
-
-property RV_set
-

Return the RV_set this RV is a member of

-
- -
-
-property samples_DF
-

Return the empirical or generated samples in a pandas Series.

-
- -
-
-property samples
-

Return the empirical or generated samples.

-
- -
-
-property uni_samples
-

Return the samples from the controlling uniform distribution.

-
- -
-
-property anchor
-

Return the anchor of the variable (if any).

-
- -
-
-cdf(values)[source]
-

Returns the cdf at the given values

-
- -
-
-inverse_transform(values)[source]
-

Uses inverse probability integral transformation on the provided values.

-
- -
-
-inverse_transform_sampling()[source]
-

Creates samples using inverse probability integral transformation.

-
- -
- -
-
-class pelicun.uq.RandomVariableSet(name, RV_list, Rho)[source]
-

Bases: object

-

Description

-
-
Parameters
-
-
name: string

A unique string that identifies the set of random variables.

-
-
RV_list: list of RandomVariable

Defines the random variables in the set

-
-
Rho: float 2D ndarray

Defines the correlation matrix that describes the correlation between -the random variables in the set. Currently, only the Gaussian copula -is supported.

-
-
-
-
Attributes
-
-
RV

Return the random variable(s) assigned to the set

-
-
samples

Return the samples of the variables in the set

-
-
size

Return the size (i.e., number of variables in the) RV set

-
-
-
-
-

Methods

- ---- - - - - - - - - - - - -

Rho([var_subset])

Return the (subset of the) correlation matrix.

apply_correlation()

Apply correlation to n dimensional uniform samples.

orthotope_density([lower, upper, var_subset])

Estimate the probability density within an orthotope for the RV set.

-
-
-property RV
-

Return the random variable(s) assigned to the set

-
- -
-
-property size
-

Return the size (i.e., number of variables in the) RV set

-
- -
-
-property samples
-

Return the samples of the variables in the set

-
- -
-
-Rho(var_subset=None)[source]
-

Return the (subset of the) correlation matrix.

-
- -
-
-apply_correlation()[source]
-

Apply correlation to n dimensional uniform samples.

-

Currently, correlation is applied using a Gaussian copula. First, we -try using Cholesky transformation. If the correlation matrix is not -positive semidefinite and Cholesky fails, use SVD to apply the -correlations while preserving as much as possible from the correlation -matrix.

-
- -
-
-orthotope_density(lower=None, upper=None, var_subset=None)[source]
-

Estimate the probability density within an orthotope for the RV set.

-

Use the mvn_orthotope_density function in this module for the -calculation. The distribution of individual RVs is not limited to the -normal family. The provided limits are converted to the standard normal -space that is the basis of all RVs in pelicun. Truncation limits and -correlation (using Gaussian copula) are automatically taken into -consideration.

-
-
Parameters
-
-
lower: float ndarray, optional, default: None

Lower bound(s) of the orthotope. A scalar value can be used for a -univariate RV; a list of bounds is expected in multivariate cases. -If the orthotope is not bounded from below in a dimension, use -‘None’ to that dimension.

-
-
upper: float ndarray, optional, default: None

Upper bound(s) of the orthotope. A scalar value can be used for a -univariate RV; a list of bounds is expected in multivariate cases. -If the orthotope is not bounded from above in a dimension, use -‘None’ to that dimension.

-
-
var_subset: list of strings, optional, default: None

If provided, allows for selecting only a subset of the variables in -the RV_set for the density calculation.

-
-
-
-
Returns
-
-
alpha: float

Estimate of the probability density within the orthotope.

-
-
eps_alpha: float

Estimate of the error in alpha.

-
-
-
-
-
- -
- -
-
-class pelicun.uq.RandomVariableRegistry[source]
-

Bases: object

-

Description

-
-
Attributes
-
-
RV

Return all random variable(s) in the registry

-
-
RV_samples

Return the samples for every random variable in the registry

-
-
RV_set

Return the random variable set(s) in the registry.

-
-
-
-
-

Methods

- ---- - - - - - - - - - - - - - - -

RVs(keys)

Return a subset of the random variables in the registry

add_RV(RV)

Add a new random variable to the registry.

add_RV_set(RV_set)

Add a new set of random variables to the registry

generate_samples(sample_size[, method, seed])

Generates samples for all variables in the registry.

-
-
-property RV
-

Return all random variable(s) in the registry

-
- -
-
-RVs(keys)[source]
-

Return a subset of the random variables in the registry

-
- -
-
-add_RV(RV)[source]
-

Add a new random variable to the registry.

-
- -
-
-property RV_set
-

Return the random variable set(s) in the registry.

-
- -
-
-add_RV_set(RV_set)[source]
-

Add a new set of random variables to the registry

-
- -
-
-property RV_samples
-

Return the samples for every random variable in the registry

-
- -
-
-generate_samples(sample_size, method='LHS_midpoint', seed=None)[source]
-

Generates samples for all variables in the registry.

-
-
Parameters
-
-
sample_size: int

The number of samples requested per variable.

-
-
method: {‘random’, ‘LHS’, ‘LHS_midpoint’}, optional

The sample generation method to use. ‘random’ stands for -conventional random sampling; ‘LHS’ is Latin HyperCube Sampling -with random sample location within each bin of the hypercube; -‘LHS_midpoint’ is like LHS, but the samples are assigned to the -midpoints of the hypercube bins.

-
-
seed: int, optional

Random seed used for sampling.

-
-
-
-
-
- -
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/architecture/pelicun/architecture.html b/docs/common/developer_manual/architecture/pelicun/architecture.html deleted file mode 100644 index f56d9e4e3..000000000 --- a/docs/common/developer_manual/architecture/pelicun/architecture.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Architecture — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Architecture

-

Architecture text…

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/coding_style/pelicun/coding_style.html b/docs/common/developer_manual/coding_style/pelicun/coding_style.html deleted file mode 100644 index 9ac47cc71..000000000 --- a/docs/common/developer_manual/coding_style/pelicun/coding_style.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - - - 1. Coding Style — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

1. Coding Style

-

pelicun is written in Python. SimCenter programmers strive to follow the widely used PEP 8 Style Guide and we encourage those who would like to contribute to pelicun to follow those guidelines when writing their scripts.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/examples/pelicun/examples.html b/docs/common/developer_manual/examples/pelicun/examples.html deleted file mode 100644 index 492e8923b..000000000 --- a/docs/common/developer_manual/examples/pelicun/examples.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Examples — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Examples

-

Example text

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/how_to_extend/pelicun/how_to_extend.html b/docs/common/developer_manual/how_to_extend/pelicun/how_to_extend.html deleted file mode 100644 index 6c77e35cf..000000000 --- a/docs/common/developer_manual/how_to_extend/pelicun/how_to_extend.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - How to Extend — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

How to Extend

-

How to extend text…

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/developer_manual/verification/pelicun/verification.html b/docs/common/developer_manual/verification/pelicun/verification.html deleted file mode 100644 index 80d1228ce..000000000 --- a/docs/common/developer_manual/verification/pelicun/verification.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Verification — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Verification

-

Verification text…

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/front-matter/abbreviations.html b/docs/common/front-matter/abbreviations.html deleted file mode 100644 index cf1246707..000000000 --- a/docs/common/front-matter/abbreviations.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - - - - 5. Abbreviations — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

5. Abbreviations

-

The following abbreviations may be found throughout this document:

-
-
BIM
-

Building Information Model

-
-
DL
-

Damage and Loss

-
-
EDP
-

Engineering Demand Parameter

-
-
GM
-

Ground Motion (of earthquake hazard)

-
-
IM
-

Intensity Measure (of hazard event)

-
-
SAM
-

Structural Analysis Model (i. e. finite element model)

-
-
SIM
-

Simulation

-
-
UQ
-

Uncertainty Quantification

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/front-matter/ack.html b/docs/common/front-matter/ack.html deleted file mode 100644 index 381facf57..000000000 --- a/docs/common/front-matter/ack.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Acknowledgments — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Acknowledgments

-

This material is based upon work supported by the National Science Foundation under Grant No. 1612843. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/front-matter/glossary.html b/docs/common/front-matter/glossary.html deleted file mode 100644 index 5b2ba77a0..000000000 --- a/docs/common/front-matter/glossary.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - - - - 4. Glossary — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

4. Glossary

-

The following terms may be found throughout this document:

-
-
Workflow

The automation of a business process, in whole or part, during which documents, information or tasks are passed from one participant to another for action, according to a set of procedural rules.” [Workflow Management Coalition].

-
-
Application

A software application performs operations on data residing in a computer for a user or another program; it can be self contained, typically termed a program, or part of a group of programs.

-
-
Scientific Workflow

A sequence of steps which propagate input data through a series of applications to produce output files. It is a loosely coupled application performing workflows in which each of the coordinated tasks is performed using an individual application. Each of the individual application taking some data inputs and producing data outputs, which are then consumed by subsequent tasks according to the workflow definition. They are termed scientific because they are typically used by scientists to process, manage, and visualize ever increasing ever increasing amounts of data applied to “scientific” problems.

-
-
Scientific Workflow System

An application or applications to aid a user to set-up, schedule, run, and monitor a user defined scientific workflow.

-
-
Software Framework

A software framework defines a set of component interfaces and provides a set of implementations in code of these interfaces which allows developers to build applications for the domain for which the framework has been designed. For example, a C++ framework will provide a set of abstract classes that define interfaces, and a set of concrete classes that implement the interfaces which will allow developers to quickly build and release applications using the concrete classes. Frameworks allow developers to extend the functionality of the applications by introducing their own components that meet the component interface.

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/front-matter/license.html b/docs/common/front-matter/license.html deleted file mode 100644 index 431fe6e11..000000000 --- a/docs/common/front-matter/license.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - - - 3. Copyright and License — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- - - - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/front-matter/pelAck.html b/docs/common/front-matter/pelAck.html deleted file mode 100644 index d4a87628d..000000000 --- a/docs/common/front-matter/pelAck.html +++ /dev/null @@ -1,326 +0,0 @@ - - - - - - - - - - 2. Acknowledgments — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2. Acknowledgments

-
-

2.1. National Science Foundation

-

This material is based upon work supported by the National Science Foundation under Grant No. 1612843. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.

-
-
-

2.2. Contributors

-

The developers are grateful to the researchers and experts listed below for their insights and suggestions that contributed to the development of the PELICUN framework and the pelicun library.

-

Jack W. Baker | Stanford University

-

Tracy Becker | University of California Berkeley

-

Gregory G. Deierlein | Stanford University

-

Anne Kiremidjian | Stanford University

-

Pouria Kourehpaz | University of British Columbia

-

Carlos Molina Hutt | University of British Columbia

-

Vesna Terzic | California State University Long Beach

-

Paola Vargas | University of Michigan

-

David P. Welch | Stanford University

-

Major Zeng | Stanford University

-

Joanna J. Zou | Stanford University

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/front-matter/pelicunAck.html b/docs/common/front-matter/pelicunAck.html deleted file mode 100644 index a714b2802..000000000 --- a/docs/common/front-matter/pelicunAck.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - Acknowledgments — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Acknowledgments

-
-

National Science Foundation

-

This material is based upon work supported by the National Science Foundation under Grant No. 1612843. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.

-
-
-

Contributors

-

The developers are grateful to the researchers and experts listed below for their insights and suggestions that contributed to the development of the PELICUN framework and the pelicun library.

-

Jack W. Baker | Stanford University

-

Tracy Becker | University of California Berkeley

-

Gregory G. Deierlein | Stanford University

-

Anne Kiremidjian | Stanford University

-

Pouria Kourehpaz | University of British Columbia

-

Carlos Molina Hutt | University of British Columbia

-

Vesna Terzic | California State University Long Beach

-

Paola Vargas | University of Michigan

-

David P. Welch | Stanford University

-

Major Zeng | Stanford University

-

Joanna J. Zou | Stanford University

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/reqments/blah.html b/docs/common/reqments/blah.html deleted file mode 100644 index 20dbde2d1..000000000 --- a/docs/common/reqments/blah.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - BLAH — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

BLAH

-

section blah

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/reqments/indexMaster.html b/docs/common/reqments/indexMaster.html deleted file mode 100644 index 5216644fe..000000000 --- a/docs/common/reqments/indexMaster.html +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - - - - - Requirements Traceability Matrix — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Requirements Traceability Matrix

-
-

Introduction

-

The SimCenter has relied on community input to drive application and educational activities. We track these inputs as requirements in our Requirements Traceability Matrix (RTM). This is a living document, which is updated at least yearly. In this document is listed the general requirements for each tool and for each tool there is also listed the requirements for each component that is used to build up the tool. The components are as shown in the figure below, for example EE-UQ has components of Cloud (CLD), Reliability (UQR), Sensitivity (UQS), Sampling (UQF), Modelling (MOD), Earthquake Loading (EL), and Analysis (ANA).

-
-../../_images/RTM.png -

Application & Component Abbreviations for RTM

-
-

Each requirement in the RTM has the following entry fields:

-
-
-
    -
  1. A unique identifier, that is a combination of an abbreviation of tool or component name, plus one or more numbers; the sequence of numbers indicating a hierarchy in the requirements.

  2. -
  3. A brief description of the requirement.

  4. -
  5. A source for the requirement indicating were the requirement originated. That can be one of three:

    -
      -
    1. GC: Grand challenges in hazard engineering are the problems, barriers, and bottlenecks that hinder the ideal of a nation resilient from the effects of natural hazards. The vision documents referenced in the solicitation ([NSTC2006], [NSB2007], [NEHRP2008], [Fenves2011], [NIST2014]]) outline the grand challenges for wind and earthquake hazards. These documents all present a list of research and educational advances needed that can contribute knowledge and innovation to overcome the grand challenges. The advances summarized in the vision documents were identified through specially formed committees and workshops comprising researchers and practicing engineers. They identified both the grand challenges faced and also identified what was needed to address these challenges. The software needs identified in these reports that are applicable to research in natural hazards as permitted under the NSF NHERI program were identified in these reports. Those tasks that the NHERI SimCenter identified as pertaining to aiding NHERI researchers perform their research and those which would aid practicing engineers utilize this research in their work are identified here.

    2. -
    3. SP: From the senior personnel on the SimCenter project. The vision documents outline general needs without going into the specifics. From these general needs the senior personnel on the project identified specific requirements that would provide basic functionality to allow research.

    4. -
    5. UF: SimCenter workshops, boot camps and direct user feedback. As the SimCenter develops and releases tools, feedback from researchers using these tools is obtained at the tool training workshops, programmer boot-camps, in one-on-one discussions, via direct email, and through online user feedback surveys. For the feedback related to what additional functionality to include, entries are added to the RTM. For other feedback, related to simple tasks related to operation of tool and UI, entries are placed in our Jira system.

    6. -
    -
  6. -
  7. A designation determined by the management group indicating the importance of the requirement, which again has 3 possible values:

  8. -
-
-
    -
  1. M - Mandatory: This requirement must be satisfied

  2. -
  3. D - Desirable: It would be desirable to implement the functionality as it would aid research. If time and resources permit it should be.

  4. -
  5. P - Possible: Such an activity is possible within the SimCenter Framework. SimCenter could work to include it or work with NHERI researchers to do so.

  6. -
-
-
-
    -
  1. A column indicating whether the requirement has been implemented and available to users.

  2. -
  3. A column indicating which examples are provided that can be used to test the features.

  4. -
-
-

The software requirements are many. For ease of presentation they are broken into three groups: 1) Building Scale Applications, 2) Regional Scale Applications, and 3) Education and Outreach Activities.

-
-
-

Building Scale Applications

-

Applications to allow researchers to improve on methods related to determining on the response assessment and performance based design of individual buildings subject to the impact of a natural hazard. For building scale simulations, the requirements are broken down by SimCenter application. There are a number of applications under development for each of the hazards. Many of the requirements related to UQ and nonlinear analysis are repeated amongst the different applications under the assumption that if they are beneficial to engineers dealing with one hazard, they will be beneficial to engineers dealing with other hazards.

-
-
-
-
-

Regional Scale Applications

-

For regional scale, the requirements are broken down into four classes. AI related requirements in BRAILS, damage and loss prediction in pelicun, backend workflow requirements in rWhale, and front end user interface requirements in R2D.

-
-

Regional Scale

- -
-
-
-

All Requirements

-
-
-
-
-
-

Contact

-

Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu

-
-
-

References

-
-
Fenves2011
-

Fenves, G. L., Poland, C. D., Crewe, A. J., Eguchi, R., T., Hajjar, J. F., Lynch, J. P., and Nakashima, M. (2011). Grand Challenges in Earthquake Engineering, National Research Council, National Academies Press, Washington, D.C., 90 pp.

-
-
NEHRP2008
-

Strategic Plan for the National Earthquake Hazards Reduction Program, Fiscal Years 2009-2013, National Earthquake Hazards Reduction Program. http://www.nehrp.gov/pdf/strategic_plan_2008.pdf.

-
-
NIST2014
-

Measurement Science R&D Roadmap for Windstorm and Coastal Inundation Impact Reduction

-
-
-

NIST GCR 14-973-13 http://www.nist.gov/customcf/get_pdf.cfm?pub_id=915541.

-
-
NRC2011
-

National Earthquake Resilience: Research, Implementation, and Outreach.National Research Council. Washington, DC. The National Academies Press, https://www.nap.edu/catalog/13092/national-earthquake-resilience-research-implementation-and-outreach

-
-
NSB2007
-

Hurricane Warning-The Critical Need for a National Hurricane Research Initiative. National Science Board. https://www.nsf.gov/nsb/publications/landing/nsb06115.jsp?org=NSF.

-
-
NSTC2006
-

Windstorm Impact Reduction Implementation Plan, National Science and Technology Council. https://www.preventionweb.net/publications/view/1559

-
-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/reqments/indexShort.html b/docs/common/reqments/indexShort.html deleted file mode 100644 index 563920124..000000000 --- a/docs/common/reqments/indexShort.html +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - Requirements Traceability Matrix — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Requirements Traceability Matrix

-
-

All Requirements

-
-
-
-
-
-

Contact

-

Frank McKenna, NHERI SimCenter, UC Berkeley, fmckenna@berkeley.edu

-
-
-

References

-
-
Fenves2011
-

Fenves, G. L., Poland, C. D., Crewe, A. J., Eguchi, R., T., Hajjar, J. F., Lynch, J. P., and Nakashima, M. (2011). Grand Challenges in Earthquake Engineering, National Research Council, National Academies Press, Washington, D.C., 90 pp.

-
-
NEHRP2008
-

Strategic Plan for the National Earthquake Hazards Reduction Program, Fiscal Years 2009-2013, National Earthquake Hazards Reduction Program. http://www.nehrp.gov/pdf/strategic_plan_2008.pdf.

-
-
NIST2014
-

Measurement Science R&D Roadmap for Windstorm and Coastal Inundation Impact Reduction

-
-
-

NIST GCR 14-973-13 http://www.nist.gov/customcf/get_pdf.cfm?pub_id=915541.

-
-
NRC2011
-

National Earthquake Resilience: Research, Implementation, and Outreach.National Research Council. Washington, DC. The National Academies Press, https://www.nap.edu/catalog/13092/national-earthquake-resilience-research-implementation-and-outreach

-
-
NSB2007
-

Hurricane Warning-The Critical Need for a National Hurricane Research Initiative. National Science Board. https://www.nsf.gov/nsb/publications/landing/nsb06115.jsp?org=NSF.

-
-
NSTC2006
-

Windstorm Impact Reduction Implementation Plan, National Science and Technology Council. https://www.preventionweb.net/publications/view/1559

-
-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/reqments/key.html b/docs/common/reqments/key.html deleted file mode 100644 index a5e3b5db2..000000000 --- a/docs/common/reqments/key.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - - - <no title> — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/reqments/pelicun.html b/docs/common/reqments/pelicun.html deleted file mode 100644 index 9539e6df3..000000000 --- a/docs/common/reqments/pelicun.html +++ /dev/null @@ -1,1154 +0,0 @@ - - - - - - - - - - 1. Pelicun Requirements — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

1. Pelicun Requirements

-

The following table outlines the features that are currently available in pelicun and the requirements that will drive future development. We present these requirements to inform the community about our plans. We welcome suggestions for useful features that are missing from the list below. Go to Bugs & Feature Requests (:numref:lblBugs) to let us know about additional features you would like to see.

-

The original set of requirements came from grand challenge reports (GC). These were broken into smaller sets of deliverable features by senior faculty associated with the project (SP). Additional requirements have come from users through the User Forum, (UF). See section features if you have additional features you would like to see.

-

The priority column provides information about the relative importance of the features: M - mandatory, D - desirable, O - optional, P - possible.

-
-

1.1. General

- - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Requirements - General

#

Description

Source

Priority

Version

P.1

Existing Assessment Methods

P.1.1

Implement the high-resolution loss assessment methodologies

GC

P.1.1.1

Implement the scenario-based assessment from FEMA-P58

SP

M

Implemented

P.1.1.2

Implement the time-based assessment from FEMA-P58

SP

D

P.1.1.3

Implement high-resolution assessment of buildings under wind hazards

SP

M

P.1.1.4

Implement high-resolution assessment of buildings under water hazards

SP

M

P.1.1.5

Implement high-resolution assessment of transportation networks

SP

M

P.1.1.6

Implement high-resolution assessment of buried pipelines

SP

M

P.1.2

Implement the efficient loss assessment methodologies from HAZUS

GC

P.1.2.1

Implement the assessment of buildings under earthquake hazard from HAZUS

SP

M

Implemented

P.1.2.2

Implement the assessment of buildings under hurricane wind hazard from HAZUS

SP

M

Implemented

P.1.2.3

Implement the assessment of buildings under storm surge hazard from HAZUS

SP

M

P.1.2.4

Implement the assessment of buried pipelines under earthquake hazard from HAZUS

SP

M

P.1.2.5

Implement the assessment of transportation networks under earthquake hazard from HAZUS

SP

M

P.1.2.6

Implement the assessment of power networks under earthquake hazard from HAZUS

SP

M

P.2

Control

P.2.1

Analysis & Data

P.2.1.1

Allow users to set the number of realizations

SP

M

Implemented

P.2.1.2

Allow users to customize fragility and consequence function parameters

SP

D

Implemented

P.2.1.3

Allow users to specify dependencies between logically similar parts of the stochastic models

SP

D

Implemented

P.2.2

Response Model

P.2.2.1

Allow users to specify the added uncertainty to EDPs (increase in log-standard dev.)

SP

M

Implemented

P.2.2.2

Allow users to specify the EDP ranges that correspond to reliable simulation results

SP

D

Implemented

P.2.2.3

Allow users to specify the type of distribution they want to fit to the empirical EDP data

UF

D

Implemented

P.2.2.4

Allow users to choose if they want to fit a distribution only to the non-collapsed EDPs

UF

M

Implemented

P.2.3

Performance Model

P.2.3.1

Allow users to prescribe a different number of inhabitants on each floor

SP

D

Implemented

P.2.3.2

Allow users to customize the temporal distribution of inhabitants

SP

D

Implemented

P.2.3.3

Allow users to prescribe different component quantities for each floor in each direction

SP

D

Implemented

P.2.3.4

Allow users to specify the number of component groups and their quantities in each performance group

UF

D

Implemented

P.2.4

Damage Model

P.2.4.1

Allow users to specify the residual drift limits that determine irrepairability

SP

D

Implemented

P.2.4.2

Allow users to specify the yield drift value that is used to estimate residual drifts from peak drifts

SP

D

Implemented

P.2.4.3

Allow users to specify the EDP limits that are used to determine collapse probability

SP

D

Implemented

P.2.4.4

Allow users to specify arbitrary collapse modes and their likelihood

SP

D

Implemented

P.2.4.5

Allow users to prescribe the collapse probability of the structure

UF

M

Implemented

P.2.5

Loss Model

P.2.5.1

Allow users to decide which DVs to calculate

SP

D

Implemented

P.2.5.2

Allow users to specify the likelihood of various injuries in each collapse mode

SP

D

Implemented

P.3

Hazard Model

P.3.1

Hazard Occurrence Rate

P.3.1.1

Enable estimation of the likelihood of earthquake events

SP

M

P.3.1.2

Enable estimation of the likelihood of wind events

SP

M

P.3.1.3

Enable estimation of the likelihood of storm surge events

SP

M

P.3.1.4

Enable estimation of the likelihood of tsunami events

SP

M

P.4

Response Model

P.4.1

EDP (re-)sampling

P.4.1.1

Enable coupled assessment by using raw EDP values as-is

UF

M

Implemented

P.4.1.2

Enable non-Gaussian EDP distributions

UF

D

P.4.2

EDP Identification

P.4.2.1

Implement automatic identification of required EDP types based on the performance model

SP

M

P.5

Performance Model

P.5.1

Auto-population of performance models

P.5.1.1

Implement framework to enable user-defined auto-population scripts

UF

D

Implemented

P.5.1.2

Prepare script to perform auto-population based on normative quantities in FEMA P58

UF

D

P.6

Damage Model

P.6.1

Collapse estimation

P.6.1.1

Estimate collapse probability of the structure using EDP limits and the joint distribution of EDPs

SP

D

Implemented

P.6.1.2

Estimate the collapse probability of the structure using empirical (raw) EDP data

UF

M

Implemented

P.6.1.3

Enable user-defined collapse probability

UF

M

Implemented

P.6.2

Building Damage

P.6.2.1

Implement earthquake fragility functions for building components from FEMA P58

SP

M

Implemented

P.6.2.2

Implement earthquake fragility functions for buildings from HAZUS

SP

M

Implemented

P.6.2.3

Implement wind fragility functions for buildings from HAZUS

SP

M

Implemented

P.6.2.4

Implement inundation fragility functions for buildings from HAZUS

SP

M

Implemented

P.6.2.5

Implement high-resolution wind fragility functions for building components

SP

M

P.6.2.6

Implement high-resolution inundation fragility functions for building components

SP

M

P.6.3

Lifeline Damage

P.6.3.1

Implement earthquake fragility functions for buried pipelines from HAZUS

SP

M

P.6.3.2

Implement earthquake fragility functions for bridges from HAZUS

SP

M

P.6.3.3

Implement earthquake fragility functions for power networks from HAZUS

SP

M

P.6.3.4

Implement high-resolution fragility functions for buried pipelines

SP

M

P.6.3.5

Implement high-resolution fragility functions for transportation networks

SP

M

P.6.4

Cascading Damages

P.6.4.1

Implement fault tree-based cascading damage model

SP

M

P.7

Loss Model

P.7.1

Consequence functions for buildings

P.7.1.1

Implement functions for repair cost and time as per FEMA P58

SP

M

Implemented

P.7.1.2

Implement functions for red tag triggering as per FEMA P58

SP

M

Implemented

P.7.1.3

Implement functions for injuries and fatalities as per FEMA P58

SP

M

Implemented

P.7.1.4

Implement functions for repair cost and time as per HAZUS earthquake

SP

M

Implemented

P.7.1.5

Implement functions for debris as per HAZUS earthquake

SP

D

P.7.1.6

Implement functions for business interruption as per HAZUS earthquake

SP

D

P.7.1.7

Implement functions for repair cost and time as per HAZUS wind

SP

M

Implemented

P.7.1.8

Implement functions for repair cost and time as per HAZUS inundation

SP

M

P.7.1.9

Implement functions for environmental impact estimation as per FEMA P58 2nd edition

SP

M

P.7.1.10

Implement functions for high-resolution repair cost and time assessment for wind hazards

SP

M

P.7.1.11

Implement functions for high-resolution repair cost and time assessment for water hazards

SP

M

P.7.2

Consequence functions for other assets

P.7.2.1

Implement functions for repair cost and time for buried pipelines as per HAZUS earthquake

SP

M

Implemented

P.7.2.2

Implement functions for repair cost and time for bridges as per HAZUS earthquake

SP

M

P.7.2.3

Implement functions for repair cost and time for power networks as per HAZUS earthquake

SP

M

P.7.2.4

Implement high-resolution functions for repair cost and time for transportation networks

SP

M

P.7.2.5

Implement high-resolution functions for repair cost and time for buried pipelines

SP

M

-
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
-
-
-

1.2. Databases & Files

- - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Requirements - Databases & Files

#

Description

Source

Priority

Version

DLD

Database for Damage and Loss Fragilities and Consequence Functions: Loss computations use fragility and consequence functions for modern and archaic structural and nonstructural components and assem- blies in structures. The database of such functions for components and assemblies is small and must be expanded through coordinated numerical and experimental simulations

GC

M

DLD.1

Data Sources

DLD.1.1

Make the component fragility and consequence functions from FEMA P58 available

SP

M

DLD.1.1.1

FEMA P58 First Edition

SP

M

Implemented

DLD.1.1.2

FEMA P58 Second Edition

UF

M

Implemented

DLD.1.1.3

Extend FEMA P58 Second Edition consequence functions with environmental impact parameters

SP

M

DLD.1.2

Make the building fragility and consequence functions from HAZUS available

SP

M

DLD.1.2.1

HAZUS earthquake damage and reconstruction cost and time

SP

M

Implemented

DLD.1.2.2

HAZUS hurricane wind damage and reconstruction cost and time

SP

M

Implemented

DLD.1.2.3

HAZUS storm surge damage and reconstruction cost and time

SP

M

DLD.1.3

Make the lifeline fragility and consequence functions from HAZUS available

SP

M

DLD.1.3.1

HAZUS bridge damage and reconstruction cost and time

SP

M

DLD.1.3.2

HAZUS buried pipeline damage and reconstruction cost and time

SP

M

DLD.1.3.3

HAZUS power network damage and reconstruction cost and time

SP

M

DLD.1.4

Extend available high-resolution building damage and loss model parameters

SP

M

DLD.1.4.1

Building damage and loss model parameters under wind hazards

SP

M

DLD.1.4.2

Building damage and loss model parameters under water hazards

SP

M

DLD.1.5

Make high-resolution damage and loss model parameters available for lifelines

SP

M

DLD.1.5.1

Transportation network damage and loss model parameters

SP

M

DLD.1.5.2

Buried pipeline network damage and loss model parameters

SP

M

DLD.2

Data Storage

DLD.2.1

Generic JSON format

SP

M

DLD.2.1.1

Develop a generic JSON data format for component fragility and consequence functions

SP

D

Implemented

DLD.2.1.2

Store FEMA P58 and HAZUS component data in the new JSON format and make them available

SP

D

Implemented

DLD.2.2

HDF5 Data Storage

SP

M

DLD.2.2.1

Store the JSON files in an HDF5 data structure for each data source

SP

M

Implemented

DLD.2.3

Online Database

SP

M

DLD.2.3.1

Create an online database for storing parameters of damage and loss models for buildings

SP

M

DLD.2.3.2

Extend online database to store parameters of damage and loss models for transportation networks

SP

M

DLD.2.3.3

Extend online database to store parameters of damage and loss models for buried pipeline networks

SP

M

DLD.2.3.4

Populate building database with high-resolution model parameters from researchers

SP

M

DLD.2.3.5

Populate lifeline database with high-resolution model parameters from researchers

SP

M

-
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/reqments/reqPelicun.html b/docs/common/reqments/reqPelicun.html deleted file mode 100644 index 8260bac05..000000000 --- a/docs/common/reqments/reqPelicun.html +++ /dev/null @@ -1,1160 +0,0 @@ - - - - - - - - - - 4. Requirements — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

4. Requirements

-

The following table outlines the features that are currently available in pelicun and the requirements that will drive future development. We present these requirements to inform the community about our plans. We welcome suggestions for useful features that are missing from the list below. Go to Bugs & Feature Requests (:numref:lblBugs) to let us know about additional features you would like to see.

-

The original set of requirements came from grand challenge reports (GC). These were broken into smaller sets of deliverable features by senior faculty associated with the project (SP). Additional requirements have come from users through the User Forum, (UF). See section features if you have additional features you would like to see.

-

The priority column provides information about the relative importance of the features: M - mandatory, D - desirable, O - optional, P - possible.

-
-

4.1. General

- - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Table 4.1.1 Requirements - General

#

Description

Source

Priority

Version

P.1

Existing Assessment Methods

P.1.1

Implement the high-resolution loss assessment methodologies

GC

P.1.1.1

Implement the scenario-based assessment from FEMA-P58

SP

M

Implemented

P.1.1.2

Implement the time-based assessment from FEMA-P58

SP

D

P.1.1.3

Implement high-resolution assessment of buildings under wind hazards

SP

M

P.1.1.4

Implement high-resolution assessment of buildings under water hazards

SP

M

P.1.1.5

Implement high-resolution assessment of transportation networks

SP

M

P.1.1.6

Implement high-resolution assessment of buried pipelines

SP

M

P.1.2

Implement the efficient loss assessment methodologies from HAZUS

GC

P.1.2.1

Implement the assessment of buildings under earthquake hazard from HAZUS

SP

M

Implemented

P.1.2.2

Implement the assessment of buildings under hurricane wind hazard from HAZUS

SP

M

Implemented

P.1.2.3

Implement the assessment of buildings under storm surge hazard from HAZUS

SP

M

P.1.2.4

Implement the assessment of buried pipelines under earthquake hazard from HAZUS

SP

M

P.1.2.5

Implement the assessment of transportation networks under earthquake hazard from HAZUS

SP

M

P.1.2.6

Implement the assessment of power networks under earthquake hazard from HAZUS

SP

M

P.2

Control

P.2.1

Analysis & Data

P.2.1.1

Allow users to set the number of realizations

SP

M

Implemented

P.2.1.2

Allow users to customize fragility and consequence function parameters

SP

D

Implemented

P.2.1.3

Allow users to specify dependencies between logically similar parts of the stochastic models

SP

D

Implemented

P.2.2

Response Model

P.2.2.1

Allow users to specify the added uncertainty to EDPs (increase in log-standard dev.)

SP

M

Implemented

P.2.2.2

Allow users to specify the EDP ranges that correspond to reliable simulation results

SP

D

Implemented

P.2.2.3

Allow users to specify the type of distribution they want to fit to the empirical EDP data

UF

D

Implemented

P.2.2.4

Allow users to choose if they want to fit a distribution only to the non-collapsed EDPs

UF

M

Implemented

P.2.3

Performance Model

P.2.3.1

Allow users to prescribe a different number of inhabitants on each floor

SP

D

Implemented

P.2.3.2

Allow users to customize the temporal distribution of inhabitants

SP

D

Implemented

P.2.3.3

Allow users to prescribe different component quantities for each floor in each direction

SP

D

Implemented

P.2.3.4

Allow users to specify the number of component groups and their quantities in each performance group

UF

D

Implemented

P.2.4

Damage Model

P.2.4.1

Allow users to specify the residual drift limits that determine irrepairability

SP

D

Implemented

P.2.4.2

Allow users to specify the yield drift value that is used to estimate residual drifts from peak drifts

SP

D

Implemented

P.2.4.3

Allow users to specify the EDP limits that are used to determine collapse probability

SP

D

Implemented

P.2.4.4

Allow users to specify arbitrary collapse modes and their likelihood

SP

D

Implemented

P.2.4.5

Allow users to prescribe the collapse probability of the structure

UF

M

Implemented

P.2.5

Loss Model

P.2.5.1

Allow users to decide which DVs to calculate

SP

D

Implemented

P.2.5.2

Allow users to specify the likelihood of various injuries in each collapse mode

SP

D

Implemented

P.3

Hazard Model

P.3.1

Hazard Occurrence Rate

P.3.1.1

Enable estimation of the likelihood of earthquake events

SP

M

P.3.1.2

Enable estimation of the likelihood of wind events

SP

M

P.3.1.3

Enable estimation of the likelihood of storm surge events

SP

M

P.3.1.4

Enable estimation of the likelihood of tsunami events

SP

M

P.4

Response Model

P.4.1

EDP (re-)sampling

P.4.1.1

Enable coupled assessment by using raw EDP values as-is

UF

M

Implemented

P.4.1.2

Enable non-Gaussian EDP distributions

UF

D

P.4.2

EDP Identification

P.4.2.1

Implement automatic identification of required EDP types based on the performance model

SP

M

P.5

Performance Model

P.5.1

Auto-population of performance models

P.5.1.1

Implement framework to enable user-defined auto-population scripts

UF

D

Implemented

P.5.1.2

Prepare script to perform auto-population based on normative quantities in FEMA P58

UF

D

P.6

Damage Model

P.6.1

Collapse estimation

P.6.1.1

Estimate collapse probability of the structure using EDP limits and the joint distribution of EDPs

SP

D

Implemented

P.6.1.2

Estimate the collapse probability of the structure using empirical (raw) EDP data

UF

M

Implemented

P.6.1.3

Enable user-defined collapse probability

UF

M

Implemented

P.6.2

Building Damage

P.6.2.1

Implement earthquake fragility functions for building components from FEMA P58

SP

M

Implemented

P.6.2.2

Implement earthquake fragility functions for buildings from HAZUS

SP

M

Implemented

P.6.2.3

Implement wind fragility functions for buildings from HAZUS

SP

M

Implemented

P.6.2.4

Implement inundation fragility functions for buildings from HAZUS

SP

M

Implemented

P.6.2.5

Implement high-resolution wind fragility functions for building components

SP

M

P.6.2.6

Implement high-resolution inundation fragility functions for building components

SP

M

P.6.3

Lifeline Damage

P.6.3.1

Implement earthquake fragility functions for buried pipelines from HAZUS

SP

M

P.6.3.2

Implement earthquake fragility functions for bridges from HAZUS

SP

M

P.6.3.3

Implement earthquake fragility functions for power networks from HAZUS

SP

M

P.6.3.4

Implement high-resolution fragility functions for buried pipelines

SP

M

P.6.3.5

Implement high-resolution fragility functions for transportation networks

SP

M

P.6.4

Cascading Damages

P.6.4.1

Implement fault tree-based cascading damage model

SP

M

P.7

Loss Model

P.7.1

Consequence functions for buildings

P.7.1.1

Implement functions for repair cost and time as per FEMA P58

SP

M

Implemented

P.7.1.2

Implement functions for red tag triggering as per FEMA P58

SP

M

Implemented

P.7.1.3

Implement functions for injuries and fatalities as per FEMA P58

SP

M

Implemented

P.7.1.4

Implement functions for repair cost and time as per HAZUS earthquake

SP

M

Implemented

P.7.1.5

Implement functions for debris as per HAZUS earthquake

SP

D

P.7.1.6

Implement functions for business interruption as per HAZUS earthquake

SP

D

P.7.1.7

Implement functions for repair cost and time as per HAZUS wind

SP

M

Implemented

P.7.1.8

Implement functions for repair cost and time as per HAZUS inundation

SP

M

P.7.1.9

Implement functions for environmental impact estimation as per FEMA P58 2nd edition

SP

M

P.7.1.10

Implement functions for high-resolution repair cost and time assessment for wind hazards

SP

M

P.7.1.11

Implement functions for high-resolution repair cost and time assessment for water hazards

SP

M

P.7.2

Consequence functions for other assets

P.7.2.1

Implement functions for repair cost and time for buried pipelines as per HAZUS earthquake

SP

M

Implemented

P.7.2.2

Implement functions for repair cost and time for bridges as per HAZUS earthquake

SP

M

P.7.2.3

Implement functions for repair cost and time for power networks as per HAZUS earthquake

SP

M

P.7.2.4

Implement high-resolution functions for repair cost and time for transportation networks

SP

M

P.7.2.5

Implement high-resolution functions for repair cost and time for buried pipelines

SP

M

-
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
-
-
-

4.2. Databases & Files

- - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Table 4.2.1 Requirements - Databases & Files

#

Description

Source

Priority

Version

DLD

Database for Damage and Loss Fragilities and Consequence Functions: Loss computations use fragility and consequence functions for modern and archaic structural and nonstructural components and assem- blies in structures. The database of such functions for components and assemblies is small and must be expanded through coordinated numerical and experimental simulations

GC

M

DLD.1

Data Sources

DLD.1.1

Make the component fragility and consequence functions from FEMA P58 available

SP

M

DLD.1.1.1

FEMA P58 First Edition

SP

M

Implemented

DLD.1.1.2

FEMA P58 Second Edition

UF

M

Implemented

DLD.1.1.3

Extend FEMA P58 Second Edition consequence functions with environmental impact parameters

SP

M

DLD.1.2

Make the building fragility and consequence functions from HAZUS available

SP

M

DLD.1.2.1

HAZUS earthquake damage and reconstruction cost and time

SP

M

Implemented

DLD.1.2.2

HAZUS hurricane wind damage and reconstruction cost and time

SP

M

Implemented

DLD.1.2.3

HAZUS storm surge damage and reconstruction cost and time

SP

M

DLD.1.3

Make the lifeline fragility and consequence functions from HAZUS available

SP

M

DLD.1.3.1

HAZUS bridge damage and reconstruction cost and time

SP

M

DLD.1.3.2

HAZUS buried pipeline damage and reconstruction cost and time

SP

M

DLD.1.3.3

HAZUS power network damage and reconstruction cost and time

SP

M

DLD.1.4

Extend available high-resolution building damage and loss model parameters

SP

M

DLD.1.4.1

Building damage and loss model parameters under wind hazards

SP

M

DLD.1.4.2

Building damage and loss model parameters under water hazards

SP

M

DLD.1.5

Make high-resolution damage and loss model parameters available for lifelines

SP

M

DLD.1.5.1

Transportation network damage and loss model parameters

SP

M

DLD.1.5.2

Buried pipeline network damage and loss model parameters

SP

M

DLD.2

Data Storage

DLD.2.1

Generic JSON format

SP

M

DLD.2.1.1

Develop a generic JSON data format for component fragility and consequence functions

SP

D

Implemented

DLD.2.1.2

Store FEMA P58 and HAZUS component data in the new JSON format and make them available

SP

D

Implemented

DLD.2.2

HDF5 Data Storage

SP

M

DLD.2.2.1

Store the JSON files in an HDF5 data structure for each data source

SP

M

Implemented

DLD.2.3

Online Database

SP

M

DLD.2.3.1

Create an online database for storing parameters of damage and loss models for buildings

SP

M

DLD.2.3.2

Extend online database to store parameters of damage and loss models for transportation networks

SP

M

DLD.2.3.3

Extend online database to store parameters of damage and loss models for buried pipeline networks

SP

M

DLD.2.3.4

Populate building database with high-resolution model parameters from researchers

SP

M

DLD.2.3.5

Populate lifeline database with high-resolution model parameters from researchers

SP

M

-
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/reqments/reqQUOFEM.html b/docs/common/reqments/reqQUOFEM.html deleted file mode 100644 index 701555c1b..000000000 --- a/docs/common/reqments/reqQUOFEM.html +++ /dev/null @@ -1,1030 +0,0 @@ - - - - - - - - - - Requirements — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Requirements

-

The purpose of presenting these requirements is to inform the community on the present capabilities of the pelicun library and features that could be added. The original set of requirements have come from a set of grand challenge reports, GC. These original requirements have been broken into a smaller set of deliverable features by the senior faculty associated with the project, SP. Additional requirements have come from users, U See section features if you have additional features you would like to see.

-
-

quoFEM Requirements

- - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Requirements - QF

#

Description

Source

Priority

Status

QF

Application to Promote and aid use of UQ Methods in NHE Research for response estimation, surrogate modeling, and calibration

GC

M

Implemented

QF.1

Ability to use Various UQ Methods and Variable Options

QF.1.1

Ability to use Forward Propagtion methods listed in UQ under UF

SP

M

Implemented

QF.1.2

Ability to use Random Variable Distributions defeined in RV

SP

M

QF.1.3

Ability to use Reliability Methods listed in UQ under UR

SP

M

Implemented

QF.1.4

Ability to use Global Sensitivity Methods listed in UQ under UG

SP

M

Implemented

QF.1.5

Ability to both use and create surrogates listed in UQ under US

SP

M

InProgress

QF.1.6

Ability to use High Dimensional UQ listed in UQ under UH

SP

M

InProgress

QF.1.7

Ability to use Bayesian Calibration methods listed in UQ under UB

SP

M

QF.1.8

Ability to use Nonlinear Least Squares methods listed in UQ under UN

SP

M

Implemented

QF.2

Ability to use Different Simulation Applications

QF.2.1

Ability to use OpenSees

SP

M

Implemented

QF.2.2

Ability to use OpenSeesPy

SP

M

Implemented

QF.2.3

Ability to use OpenSeesPy

UF

M

Implemented

QF.2.3

Ability to Incorporate User Own Applkications

UF

M

Implemented

QF.2

Ability to Visualize the Results

SP

M

Implemented

QF.2.1

Ability to view individual sample results

SP

M

Implemented

QF.2.2

Ability to graphically view the results to show distribution in respone

SP

M

Implemented

QF.2.2

Ability to view statistical measures of response

SP

M

Implemented

QF.3

Misc User Requests

QF.3.1

Run application from command line, include option to run remotely

UF

D

QF.7

General Software Requirements

QF.7.1

Application to Provide Common SimCenter Research Application Requirements listed in CR

GC

M

InProgresss

-
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
-
-
-

UQ Requirements

- - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Requirements - Uncertainty Quantification Methods and Variables

#

Description

Source

Priority

Status

UF

Forward Propagation Methods

GC

M

InProgress

UF.1

Ability to use basic Monte Carlo and LHS methods

SP

M

Implemented

UF.2

Ability to use Multi-Scale Monte Carlo

SP

M

UF.3

Ability to use Multi-Fidelity Models

SP

M

UR

Reliability Methods

SP

M

Implemented

UR.1

Ability to use First Order Reliability method

SP

M

Implemented

UR.2

Ability to use Second Order Reliability method

SP

M

Implemented

UR.3

Ability to use Surrogate Based Reliability

SP

M

Implemented

UR.4

Ability to use Importance Sampling

SP

M

Implemented

UG

Global Sensitivity Methods

SP

M

Implemented

UG.1

Ability to obtain Global Sensitivity Sobol indices

UF

M

Implemented

UG.2

Ability to use probability model-based global sensitivity analysis (PM-GSA)

SP

M

Implemented

US

Surrogate Models

UF

M

InProgress

US.1

Ability to Construct Gaussian Process (GP) Regression Model from a Simulation Model

SP

M

InProgress

US.2

Ability to Construct GP Regression Model from Input-output Dataset

SP

M

InProgress

US.3

Ability to use Surrogate Model for UQ Analysis

SP

M

InProgress

US.4

Ability to Save the Surrogate Model

SP

M

InProgress

US.5

Ability to Use Adaptive Design of Experiments

SP

M

InProgress

US.6

Ability to Asses Reliability of Surrogate Model

SP

M

InProgress

US.7

Ability to Build Surrogate Under Stochastic Excitation

SP

M

US.8

Ability to Use Physics-Informed Machine Learning

SP

M

UN

Non-linear Least Squares Optimization

SP

M

InProgress

UN.1

Ability to use Gauss-Newton solvers for parameter estimation

SP

M

Implemented

UN.2

Ability to read calibration data from file

UF

M

InProgress

UN.3

Ability to handle non-scalar response quantities

UF

M

InProgress

UB

Bayesian Calibration

SP

M

InProgress

UB.1

Ability to use DREAM algorithm for Bayesian inference

SP

M

InProgress

UB.2

Ability to use TMCMC algorithm for Bayesian inference

SP

M

Implemented

UB.3

Ability to read calibration data from file

UF

M

InProgress

UB.4

Ability to handle non-scalar response quantities

UF

M

InProgress

UB.5

Ability to calibrate multipliers on error covariance

UF

M

UB.6

Ability to use a default log-likelihood function

UF

M

UB.7

Ability to use Kalman Filtering

UF

M

UB.8

Ability to use Particle Filtering

UF

M

UH

High Dimensional UQ

SP

M

UH.1

Ability to sample from manifold

SP

M

UH.2

Ability to build Reduced Order Model

SP

M

UO

Other/General Features

SP

M

UO.1

Ability to use Own External UQ Engine

SP

M

Implemented

UO.2

Ability to use Own External FEM Application

UF

M

Implemented

-
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
-
-
-

RV Requirements

- - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Requirements - Random Variables

#

Description

Source

Priority

Status

RV

Random Variables

RV.1

Various Random Variable Probability Distributions

SP

M

Implemented

RV.1.1

Normal

SP

M

Implemented

RV.1.2

Lognormal

SP

M

Implemented

RV.1.3

Uniform

SP

M

Implemented

RV.1.4

Beta

SP

M

Implemented

RV.1.5

Weibull

SP

M

Implemented

RV.1.6

Gumbel

SP

M

Implemented

RV.2

User defined Distribution

SP

M

RV.3

Define Correlation Matrix

SP

M

RV.4

Random Fields

SP

M

RV.5

Ability to View Graphically the density function when defining the RV

UF

D

Implemented

-
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
-
-
-

Common Research Application Requirements

- - ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Requirements - CR

#

Description

Source

Priority

Status

CR

Common Requirements of all SimCenter Research Applications

CR.1

Open-source software where developers can test new data and develop algorithms

GC

M

Implemented

CR.1.1

Provide open-source applications utilizing code hosting platforms, e.g. GitHub

SP

M

Implemented

CR.1.2

Assign an open-source licensce that allows free use.

SP

M

Implemented

CR.2

Ability of Practicing Engineers to use multiple coupled resources (applications, databases, viz tools) in engineering practice

GC

M

Implemented

CR.2.1

Allow users to launch scientific workflows

SP

M

Implemented

CR.3

Ability to utilize resources beyond the desktop including HPC

GC

M

Implemented

CR.3.1

Allow users to utilize HPC resources at TACC through DesignSafe

SP

M

Implemented

CR.4

Efficient use of multiple coupled and linked models requiring sharing and inter-operability of databases, computing environments, networks, visualization tools, and analysis systems

GC

M

InProgress

CR.4.1

Identify and include external analysis systems

SP

M

InProgress

CR.4.2

Identify and include external databases

SP

M

InProgress

CR.4.3

Identify and include external viz tools

SP

M

InProgress

CR.4.4

Identify and include external computing env

SP

M

Inprogress

CR.5

Tool available for download from web

GC

M

Implemented

CR.5.1

Tool downloadable from DesignSafe website

GC

M

Implemented

CR.6

Ability to benefit from programs that move research results into practice and obtain training

GC

M

CR.6.1

Ability to use educational provisions to gain interdisclipinary education so as to gain expertise in earth sciences and physics, engineering mechanics, geotechnical engineering, and structural engineering in order to be qualified to perform these simulations

GC

D

CR.6.1

Documentation exists demonstrainting application usage

SP

M

Implemented

CR.6.2

Video Exists demonstrating application usage

SP

M

Implemented

CR.6.3

Tool Training through online and in person training events

SP

M

Implemented

CR.7

Verification Examples Exist

SP

M

Implemented

CR.8

validation of proposed analytical models against existing empirical datasets

GC

M

CR.8.1

Validation Examples Exist, validated against tests or other software

GC

M

CR.9

Tool to allow user to load and save user inputs

SP

M

Implemented

CR.10

Installer which installs application and all needed software

UF

D

-
-
key:
-
Source: GC=Needed for Grand Challenges, SP=Senior Personnel, UF=User Feedback
-
Priority: M=Mandatory, D=Desirable, P=Possible Future
-
Status: Implements, InProgress and Blank (i.e. not started)
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/background.html b/docs/common/technical_manual/pelicun/background/background.html deleted file mode 100644 index 70685da88..000000000 --- a/docs/common/technical_manual/pelicun/background/background.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - 1. Background — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
- -
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/databases/DL_data.html b/docs/common/technical_manual/pelicun/background/databases/DL_data.html deleted file mode 100644 index 28ef3889a..000000000 --- a/docs/common/technical_manual/pelicun/background/databases/DL_data.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - Damage and Loss Model Parameters — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Damage and Loss Model Parameters

-

The pelicun framework is complemented by a Damage & Loss Database that provides a collection of damage and consequence descriptions from various methods. Currently, the components from the two editions of FEMA P58 and the building configurations from HAZUS are available for seismic assessments. Damage and loss data are stored in the database using JSON files. These files can be edited using conventional text editors which facilitates adding new components, editing existing ones and sharing definitions within the community.

-
-

FEMA-P58 1st Edition

-

-
-
-

FEMA-P58 2nd Edition

-

-
-
-

HAZUS Earthquake Model

-

Building-level…

-

Intensity based…

-

Story-level…

-
-
-

HAZUS Hurricane Model

-

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/databases/databases.html b/docs/common/technical_manual/pelicun/background/databases/databases.html deleted file mode 100644 index 5a91c4471..000000000 --- a/docs/common/technical_manual/pelicun/background/databases/databases.html +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - - - - Databases — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
- -
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/framework/auto.html b/docs/common/technical_manual/pelicun/background/framework/auto.html deleted file mode 100644 index 18d867eb9..000000000 --- a/docs/common/technical_manual/pelicun/background/framework/auto.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Auto population — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Auto population

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/framework/damage.html b/docs/common/technical_manual/pelicun/background/framework/damage.html deleted file mode 100644 index eb64fb6a4..000000000 --- a/docs/common/technical_manual/pelicun/background/framework/damage.html +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - - - - - Damage Model — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Damage Model

-

Each Fragility Group in the performance model shall have a corresponding fragility model in the Damage & Loss Database. In the fragility model, Damage State Groups (DSGs) collect Damage States (DSs) that are triggered by similar magnitudes of the controlling EDP. In pelicun, Lognormal damage state exceedance curves are converted into random EDP limits that trigger DSGs. When multiple DSGs are used, assuming perfect correlation between their EDP limits reproduces the conventional model that uses exceedance curves. The approach used in this framework, however, allows researchers to experiment with partially correlated or independent EDP limits. Experimental results suggest that these might be more realistic representations of component fragility. A DSG often has only a single DS. When multiple DSs are present, they can be triggered either simultaneously or they can be mutually exclusive following the corresponding definitions in FEMA P58.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/framework/framework.html b/docs/common/technical_manual/pelicun/background/framework/framework.html deleted file mode 100644 index 3946c5eb1..000000000 --- a/docs/common/technical_manual/pelicun/background/framework/framework.html +++ /dev/null @@ -1,326 +0,0 @@ - - - - - - - - - - 1.1. The PELICUN Framework — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
- - -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/framework/loss.html b/docs/common/technical_manual/pelicun/background/framework/loss.html deleted file mode 100644 index b48a30278..000000000 --- a/docs/common/technical_manual/pelicun/background/framework/loss.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - Loss Model — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Loss Model

-

Each Damage State has a corresponding set of consequence descriptions in the Damage & Loss Database. These are used to define a consequence model that identifies a set of decision variables (DVs) and corresponding consequence functions that link the amount of damaged components to the value of the DV. The constant and quantity-dependent stepwise consequence functions from FEMA P58 are available in pelicun.

-

Collapses and their consequences are also handled by the damage and the loss models. The collapse model describes collapse events using the concept of collapse modes introduced in FEMA P58. Collapse is either triggered by EDP values exceeding a collapse limit or it can be randomly triggered based on a collapse probability prescribed in the AIM file. The latter approach allows for external collapse fragility models. Each collapse mode has a corresponding collapse consequence model that describes the corresponding injuries and losses.

-

Similarly to the performance model, the randomness in damage and losses is handled with a few high-dimensional random variables. This allows researchers to experiment with various correlation structures between damages of components, and consequences of those damages. Among the consequences, the repair costs and times and the number of injuries of various severities are also linked; allowing, for example, to consider that repairs that cost more than expected will also take longer time to finish.

-

Once the damage and loss models are assembled, the previously sampled EDPs are used to evaluate the Damage Measures (Fig. 3). These DMs identify the Damage State of each Component Group in the structure. This information is used by the loss simulation to generate the Decision Variables. The final step of the calculation in pelicun is to aggregate results into a Damage and Loss (DL) file that provides a concise overview of the damage and losses. All intermediate data generated during the calculation (i.e., EDPs, DMs, DVs) are also saved in CSV files.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/framework/overview.html b/docs/common/technical_manual/pelicun/background/framework/overview.html deleted file mode 100644 index a1af43b87..000000000 --- a/docs/common/technical_manual/pelicun/background/framework/overview.html +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - Overview — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Overview

-

The conceptual design of the pelicun framework is modeled after the FEMA P58 methodology, which is generalized to provide a flexible system that can accommodate a large variety of damage and loss assessment methods. In the following discussion, we first describe the types of performance assessment workflows this framework aims to support; then, we explain the four interdependent models that comprise the framework.

-

Loss assessment in its most basic form requires the characterization of the seismic hazard as input and aims to provide an estimate of the consequences, or losses, as output. Using the terminology of FEMA P58, the severity of the seismic hazard is quantified with the help of intensity measures (IMs). These are characteristic attributes of the ground motions, such as spectral acceleration, peak ground acceleration, or peak ground velocity. Consequences are measured by decision variables (DVs). The most popular DVs are repair cost, repair time, and the number of injuries and fatalities. Fig. 1.1.1 shows three different paths, or performance assessment workflows, from IM to DV:

-
    -
  1. The most efficient approach takes a single, direct step using vulnerability functions. Such vulnerability functions can be calibrated for broad classes of buildings (e.g. single-family wooden houses) using ground motion intensity maps and insurance claims data from past earthquakes. While this approach allows for rapid calculations, it does not provide information about structural response or damage.

  2. -
  3. The second approach introduces damage measures (DMs), which classify damages into damage states (DSs). Each damage state represents a set of potential damages to a structure, or structural component, that require similar kinds and amounts of repair effort. Given a database of IMs and corresponding DMs after an earthquake, fragility functions can be calibrated to describe the relationship between them. The more data is available, the more specialized (i.e., specific to particular types of buildings) fragility functions can be developed. The second step in this path uses consequence functions to describe losses as a function of damages. Consequence functions that focus on repairs can be calibrated using cost and time information from standard construction practice—a major advantage over path I considering the scarcity of post-earthquake repair data.

  4. -
  5. The third path introduces one more intermediate step: response estimation. This path envisions that the response of structures can be estimated, such as with a sophisticated finite element model, or measured with a structural health monitoring system. Given such data, damages can be described as a function of deformation, relative displacement, or acceleration of the structure or its parts. These response variables, or so-called engineering demand parameters (EDPs), are used to define the EDP-to-DM relationships, or fragility functions. Laboratory tests and post-earthquake observations suggest that EDPs are a good proxy for the damages of many types of structural components and even entire buildings.

  6. -
-
-../../../../../_images/PerfAssWorkflows.png -

Fig. 1.1.1 Common workflows for structural performance assessment.

-
-

The functions introduced above are typically idealized relationships that provide a probabilistic description of a scalar output (e.g., repair cost as a random variable) as a function of a scalar input. The cumulative distribution function and the survival function of Normal and Lognormal distributions are commonly used in fragility and vulnerability functions. Consequence functions are often constant or linear functions of the quantity of damaged components. Response estimation is the only notable exception to this type of approximation, because it is regularly performed using complex nonlinear models of structural behavior and detailed time histories of seismic excitation.

-

Uncertainty quantification is an important part of loss assessment. The uncertainty in decision variables is almost always characterized using forward propagation techniques, Monte Carlo simulation being the most widely used among them. The distribution of random decision variables rarely belongs to a standard family, hence, a large number of samples are needed to describe details of these distributions besides central tendencies. The simulations that generate such large number of samples at a regional scale can demand substantial computational resources. Since the idealized functions in paths I and II can be evaluated with minimal computational effort, these are applicable to large-scale studies. In path III, however, the computational effort needed for complex response simulation is often several orders of magnitude higher than that for other steps. The current state of the art approach to response estimation mitigates the computational burden by simulating at most a few dozen EDP samples and re-sampling them either by fitting a probability distribution or by bootstrapping. This re-sampling technique generates a sufficiently large number of samples for the second part of path III. Although response history analyses are out of the scope of the pelicun framework, it is designed to be able to accommodate the more efficient, approximate methods, such as capacity spectra and surrogate models. Surrogate models of structural response (e.g., [11]) promise to promptly estimate numerical response simulation results with high accuracy.

-

Currently, the scope of the framework is limited to the simulation of direct losses and the calculations are performed independently for every building. Despite the independent calculations, the pelicun framework can produce regional loss estimates that preserve the spatial patterns that are characteristic to the hazard, and the built environment. Those patterns stem from (i) the spatial correlation in ground motion intensities; (ii) the spatial clusters of buildings that are similar from a structural or architectural point of view; (iii) the layout of lifeline networks that connect buildings and heavily influence the indirect consequences of the disaster; and (iv) the spatial correlations in socioeconomic characteristics of the region. The first two effects can be considered by careful preparation of inputs, while the other two are important only after the direct losses have been estimated. Handling buildings independently enables embarrassingly parallel job configurations on High Performance Computing (HPC) clusters. Such jobs scale very well and require minimal additional work to set up and run on a supercomputer.

-
-
-

Performance Assessment Workflow

-

Fig. 1.1.2 introduces the main parts and the generic workflow of the pelicun framework and shows how its implementation connects to other modules in the SimCenter Application Framework. Each of the four highlighted models and their logical relationship are described in more detail in Fig. 1.1.3.

-
-../../../../../_images/MainWorkflowComps.png -

Fig. 1.1.2 The main components and the workflow of the pelicun framework.

-
-
-../../../../../_images/ModelTypes.png -

Fig. 1.1.3 The four types of models and their logical relationships in the pelicun framework.

-
-

The calculation starts with two files: the Asset Information Model (AIM) and the EVENT file. Currently, both files are expected to follow a standard JSON file format defined by the SimCenter. Support of other file formats and data structures only require a custom parser method. The open source implementation of the framework can be extended by such a method and the following part of the calculation does not require any further adjustment. AIM is a generalized version of the widely used BIM (Building Information Model) idea and it holds structural, architectural, and performance-related information about an asset. The word asset is used to emphasize that the scope of pelicun is not limited to building structures. The EVENT file describes the characteristic seismic events. It typically holds information about the frequency and intensity of the event, such as its occurrence rate or return period, and corresponding ground motion acceleration time histories or a collection of intensity measures.

-

Two threads run in parallel and lead to the simulation of damage and losses: (a) response estimation, creating the response model, and simulation of EDPs; and (b) assembling the performance, damage, and loss models. In thread (a), the AIM and EVENT files are used to estimate the response of the asset to the seismic event and characterize it using EDPs. Peak interstory drift (PID), residual interstory drift (RID), and peak floor acceleration (PFA) are typically used as EDPs for building structures. Response simulation is out of the scope of pelicun; it is either performed by the response estimation module in the Application Framework (Fig. 1) or it can be performed by any other application if pelicun is used outside of the scope of SimCenter. The pelicun framework can take advantage of response estimation methods that use idealized models for the seismic demand and the structural capacity, such as the capacity curve-based method in HAZUS or the regression-based closed-form approximation in the second edition of FEMA P58-5 [12]. If the performance assessment follows path I or II from Fig. 1.1.1, the estimated response is not needed, and the relevant IM values are used as EDPs.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/framework/performance.html b/docs/common/technical_manual/pelicun/background/framework/performance.html deleted file mode 100644 index 69cda29de..000000000 --- a/docs/common/technical_manual/pelicun/background/framework/performance.html +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - - - Performance Model — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Performance Model

-

Thread (b) in Fig. 3 starts with parsing the AIM file and constructing a performance model. If the definition in the file is incomplete, the auto-populate method tries to fill the gaps using information about normative component quantities and pre-defined rulesets. Rulesets can link structural information, such as the year of construction, to performance model details, such as the type of structural details and corresponding components.

-

The performance model in pelicun is based on that of the FEMA P58 method. It disaggregates the asset into a hierarchical description of its structural and non-structural components and contents (Fig. 4):

-
    -
  • Fragility Groups (FGs) are at the highest level of this hierarchy. Each FG is a collection of components that have similar fragility controlled by a specific type of EDP and their damage leads to similar consequences.

  • -
  • Each FG can be broken down into Performance Groups (PGs). A PG collects components whose damage is controlled by the same EDP. Not only the type of the EDP, but its location and direction also has to be identical.

  • -
  • In the third layer, PGs are broken down into the smallest units: Component Groups (CGs). A CG collects components that experience the same damage (i.e., there is perfect correlation between their random Damage States). Each CG has a Component Quantity assigned to it that defines the amount of components in that group. Both international standard and imperial units are supported as long as they are consistent with the type of component (e.g., m2, ft2, and in2 are all acceptable for the area of suspended ceilings, but ft is not.) Quantities can be random variables with either Normal or Lognormal distribution.

  • -
-

In performance models built according to the FEMA P58 method, buildings typically have FGs sensitive to either PID or PFA. Within each FG, components are grouped into PGs by stories and the drift-sensitive ones are also grouped by direction. The damage of acceleration-sensitive components is based on the maximum of PFAs in the two horizontal directions. The Applied Technology Council (ATC) provides a recommendation for the correlation between component damages within a PG. If the damages are correlated, all components in a PG are collected in a single CG. Otherwise, the performance model can identify an arbitrary number of CGs and their damages are evaluated independently.

-

The pelicun framework handles the probabilistic sampling for the entire performance model with a single high-dimensional random variable. This allows for custom dependencies in the model at any level of the hierarchy. For example, one can assign a 0.8 correlation coefficient between the fragility of all components in an FG that are on the same floor, but in different directions and hence, in different PGs. In another example, one can assign a 0.7 correlation coefficient between component quantities in the same direction along all or a subset of floors. These correlations can capture more realistic exposure and damage and consider the influence of extreme cases. Such cases are overlooked when independent variables are used because the deviations from the mean are cancelling each other.

-

This performance model in Fig. 4 can also be applied to more holistic description of buildings. For example, to describe earthquake damage to buildings following HAZUS, three FGs can handle structural, acceleration-sensitive non-structural, and drift-sensitive non-structural components. Each FG has a single PG because HAZUS uses building-level EDPs—only one location and direction is used in this case. Since components describe the damage to the entire building, using one CG per PG with “1 ea” as the assigned, deterministic component quantity is appropriate.

-

The performance model in pelicun can facilitate filling the gap between the holistic and atomic approaches of performance assessment by using components at an intermediate resolution, such as story-based descriptions, for example. These models are promising because they require less detailed inputs than FEMA P58, but they can provide more information than the building-level approaches in HAZUS.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/framework/res_model.html b/docs/common/technical_manual/pelicun/background/framework/res_model.html deleted file mode 100644 index 3bdbd3af8..000000000 --- a/docs/common/technical_manual/pelicun/background/framework/res_model.html +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - Response Model — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Response Model

-

The response model is based on the samples in the raw EDP file and provides a probabilistic description of the structural response. The samples can include an arbitrary number of EDP types (EDPt in Fig. 4) that describe the structural response at pre-defined locations and directions (EDPt,l,d). In buildings, locations typically correspond to floors or stories, and two directions are assigned to the primary and secondary horizontal axes. However, one might use more than two directions to collect several responses at each floor of an irregular building and locations can refer to other parts of structures, such as the piers of a bridge or segments of a pipeline.

-

EDPs can be resampled either after fitting a probability distribution function to the raw data or by bootstrapping the raw EDPs. Besides the widely used multivariate lognormal distribution, its truncated version is also available. This allows the consideration, for example, that PID values above a pre-defined truncation limit are not reliable. Another option, using the raw EDPs as-is, is useful in regional simulations to preserve the order of samples and maintain the spatial dependencies introduced in random characteristics of the building inventory or the seismic hazard.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/framework/uq.html b/docs/common/technical_manual/pelicun/background/framework/uq.html deleted file mode 100644 index 5f1009f65..000000000 --- a/docs/common/technical_manual/pelicun/background/framework/uq.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Uncertainty Quantification — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Uncertainty Quantification

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/outputs/damages.html b/docs/common/technical_manual/pelicun/background/outputs/damages.html deleted file mode 100644 index d98620f7e..000000000 --- a/docs/common/technical_manual/pelicun/background/outputs/damages.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Damage Measures — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Damage Measures

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/outputs/demands.html b/docs/common/technical_manual/pelicun/background/outputs/demands.html deleted file mode 100644 index 4a7a71a58..000000000 --- a/docs/common/technical_manual/pelicun/background/outputs/demands.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Demand Data — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Demand Data

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/outputs/losses.html b/docs/common/technical_manual/pelicun/background/outputs/losses.html deleted file mode 100644 index c58ad2120..000000000 --- a/docs/common/technical_manual/pelicun/background/outputs/losses.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Decision Variables — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Decision Variables

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/outputs/outputs.html b/docs/common/technical_manual/pelicun/background/outputs/outputs.html deleted file mode 100644 index ba49958e8..000000000 --- a/docs/common/technical_manual/pelicun/background/outputs/outputs.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - - - Output Files — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- - - - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/outputs/summary.html b/docs/common/technical_manual/pelicun/background/outputs/summary.html deleted file mode 100644 index 1f04ad817..000000000 --- a/docs/common/technical_manual/pelicun/background/outputs/summary.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Summary Data — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Summary Data

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/tools/DL_calculation.html b/docs/common/technical_manual/pelicun/background/tools/DL_calculation.html deleted file mode 100644 index dd3c515f9..000000000 --- a/docs/common/technical_manual/pelicun/background/tools/DL_calculation.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - DL_calculation — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

DL_calculation

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/tools/exportDB.html b/docs/common/technical_manual/pelicun/background/tools/exportDB.html deleted file mode 100644 index f7f475979..000000000 --- a/docs/common/technical_manual/pelicun/background/tools/exportDB.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - exportDB — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

exportDB

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/tools/fitDistribution.html b/docs/common/technical_manual/pelicun/background/tools/fitDistribution.html deleted file mode 100644 index b4e43007d..000000000 --- a/docs/common/technical_manual/pelicun/background/tools/fitDistribution.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - fitDistribution — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

fitDistribution

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/tools/sampleRV.html b/docs/common/technical_manual/pelicun/background/tools/sampleRV.html deleted file mode 100644 index ee023c987..000000000 --- a/docs/common/technical_manual/pelicun/background/tools/sampleRV.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - sampleRV — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

sampleRV

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/background/tools/tools.html b/docs/common/technical_manual/pelicun/background/tools/tools.html deleted file mode 100644 index e0c6a7e04..000000000 --- a/docs/common/technical_manual/pelicun/background/tools/tools.html +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - - - Standalone Tools — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Standalone Tools

-

- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/technical_manual.html b/docs/common/technical_manual/pelicun/technical_manual.html deleted file mode 100644 index 0a2648b8c..000000000 --- a/docs/common/technical_manual/pelicun/technical_manual.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Technical Manual — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Technical Manual

-

Technical Manual text…

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/verification/test_control.html b/docs/common/technical_manual/pelicun/verification/test_control.html deleted file mode 100644 index 9f64d8b9e..000000000 --- a/docs/common/technical_manual/pelicun/verification/test_control.html +++ /dev/null @@ -1,541 +0,0 @@ - - - - - - - - - - Testing the pelicun.control module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Testing the pelicun.control module

-

These are unit and integration tests on the control module of pelicun.

-
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_central_tendencies()[source]
-

Perform a loss assessment with customized inputs that reduce the -dispersion of calculation parameters to negligible levels. This allows us -to test the results against pre-defined reference values in spite of the -randomness involved in the calculations.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_EDP_uncertainty_basic()[source]
-

Perform a loss assessment with customized inputs that focus on testing the -methods used to estimate the multivariate lognormal distribution of EDP -values. Besides the fitting, this test also evaluates the propagation of -EDP uncertainty through the analysis. Dispersions in other calculation -parameters are reduced to negligible levels. This allows us to test the -results against pre-defined reference values in spite of the randomness -involved in the calculations.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_EDP_uncertainty_detection_limit()[source]
-

Perform a loss assessment with customized inputs that focus on testing the -methods used to estimate the multivariate lognormal distribution of EDP -values. Besides the fitting, this test also evaluates the propagation of -EDP uncertainty through the analysis. Dispersions in other calculation -parameters are reduced to negligible levels. This allows us to test the -results against pre-defined reference values in spite of the randomness -involved in the calculations. -This test differs from the basic case in having unreliable EDP values above -a certain limit - a typical feature of interstory drifts in dynamic -simulations. Such cases should not be a problem if the limits can be -estimated and they are specified as detection limits in input file.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_EDP_uncertainty_failed_analyses()[source]
-

Perform a loss assessment with customized inputs that focus on testing the -methods used to estimate the multivariate lognormal distribution of EDP -values. Besides the fitting, this test also evaluates the propagation of -EDP uncertainty through the analysis. Dispersions in other calculation -parameters are reduced to negligible levels. This allows us to test the -results against pre-defined reference values in spite of the randomness -involved in the calculations. -Here we use EDP results with unique values assigned to failed analyses. -In particular, PID=1.0 and PFA=100.0 are used when an analysis fails. -These values shall be handled by detection limits of 10 and 100 for PID -and PFA, respectively.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_EDP_uncertainty_3D()[source]
-

.

-

Perform a loss assessment with customized inputs that focus on testing the -methods used to estimate the multivariate lognormal distribution of EDP -values. Besides the fitting, this test also evaluates the propagation of -EDP uncertainty through the analysis. Dispersions in other calculation -parameters are reduced to negligible levels. This allows us to test the -results against pre-defined reference values in spite of the randomness -involved in the calculations. -In this test we look at the propagation of EDP values provided for two -different directions. (3D refers to the numerical model used for response -estimation.)

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_EDP_uncertainty_single_sample()[source]
-

Perform a loss assessment with customized inputs that focus on testing the -methods used to estimate the multivariate lognormal distribution of EDP -values. Besides the fitting, this test also evaluates the propagation of -EDP uncertainty through the analysis. Dispersions in other calculation -parameters are reduced to negligible levels. This allows us to test the -results against pre-defined reference values in spite of the randomness -involved in the calculations. -In this test we provide only one structural response result and see if it -is properly handled as a deterministic value or a random EDP using the -additional sources of uncertainty.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_EDP_uncertainty_zero_variance()[source]
-

Perform a loss assessment with customized inputs that focus on testing the -methods used to estimate the multivariate lognormal distribution of EDP -values. Besides the fitting, this test also evaluates the propagation of -EDP uncertainty through the analysis. Dispersions in other calculation -parameters are reduced to negligible levels. This allows us to test the -results against pre-defined reference values in spite of the randomness -involved in the calculations. -This test simulates a scenario when one of the EDPs is identical in all -of the available samples. This results in zero variance in that dimension -and the purpose of the test is to ensure that such cases are handled -appropriately.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_QNT_uncertainty_independent()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component quantities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. -This test assumes that component quantities are independent.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_QNT_uncertainty_dependencies()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component quantities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. -This test checks if dependencies between component quantities are handled -appropriately.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies(dep='IND')[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component fragilities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. Component fragilites are assumed -independent in this test.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_PG()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component fragilities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. Component fragilites are assumed -perfectly correlated between performance groups in this test.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_DIR()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component fragilities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. Component fragilites are assumed -perfectly correlated between performance groups controlled by the same EDPs -in identical directions in this test.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_LOC()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component fragilities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. Component fragilites are assumed -perfectly correlated between performance groups at identical locations in -this test.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_ATC()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component fragilities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. Component fragilites are assumed -perfectly correlated within performance groups if such correlation is -prescribed by ATC in the FEMA P58 document.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_CSG()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component fragilities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. Component fragilites are assumed -perfectly correlated within a performance group in this test.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_DS()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in component fragilities. Dispersions in other -calculation parameters are reduced to negligible levels. This allows us to -test the results against pre-defined reference values in spite of the -randomness involved in the calculations. Component fragilites are assumed -perfectly correlated between damage states in this test.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_DV_uncertainty_dependencies()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in consequence functions and decision variables. -Dispersions in other calculation parameters are reduced to negligible -levels. This allows us to test the results against pre-defined reference -values in spite of the randomness involved in the calculations.

-
- -
-
-pelicun.tests.test_control.test_FEMA_P58_Assessment_DV_uncertainty_dependencies_with_partial_DV_data()[source]
-

Perform loss assessment with customized inputs that focus on testing the -propagation of uncertainty in consequence functions and decision variables -when not every component has injury and red tag consequences assigned to it. -Dispersions in other calculation parameters are reduced to negligible -levels. This allows us to test the results against pre-defined reference -values in spite of the randomness involved in the calculations.

-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/verification/test_db.html b/docs/common/technical_manual/pelicun/verification/test_db.html deleted file mode 100644 index 0bf215aad..000000000 --- a/docs/common/technical_manual/pelicun/verification/test_db.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - - - - Testing the pelicun.db module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Testing the pelicun.db module

-

These are unit and integration tests on the db module of pelicun.

-
-
-pelicun.tests.test_db.test_convert_P58_data_to_json()[source]
-

Test if the damage and loss data from the FEMA P58 project is properly -converted into the SimCenter JSON format using xml and xlsx files avialable -from ATC (the test uses a subset of the files).

-
- -
-
-pelicun.tests.test_db.test_create_HAZUS_json_files()[source]
-

Test if the damage and loss data from HAZUS is properly converted into the -SimCenter JSON format the prepared raw HAZUS JSON files (the test uses a -subset of the HAZUS input data).

-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/verification/test_file_io.html b/docs/common/technical_manual/pelicun/verification/test_file_io.html deleted file mode 100644 index d84713397..000000000 --- a/docs/common/technical_manual/pelicun/verification/test_file_io.html +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - - - - - Testing the pelicun.file_io module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Testing the pelicun.file_io module

-

These are unit and integration tests on the file_io module of pelicun.

-
-
-pelicun.tests.test_file_io.test_read_SimCenter_DL_input_minimum_input()[source]
-

Test if the minimum input is read without producing any errors and also -check if some warnings are shown that draw attention to the lack of -potentially important information in the input file.

-
- -
-
-pelicun.tests.test_file_io.test_read_SimCenter_DL_input_full_input()[source]
-

Test if the full input (i.e. all possible fields populated and all supported -decision variables turned on) is read without producing any errors or -warnings.

-
- -
-
-pelicun.tests.test_file_io.test_read_SimCenter_DL_input_non_standard_units()[source]
-

Test if the inputs are properly converted when non-standard units are used.

-
- -
-
-pelicun.tests.test_file_io.test_read_SimCenter_DL_input_unknown_unit()[source]
-

Test if a warning is shown if the input file contains an unknown unit type.

-
- -
-
-pelicun.tests.test_file_io.test_read_SimCenter_DL_input_injuries_only()[source]
-

Test if the inputs are read properly if the user is only interested in -calculating injuries.

-
- -
-
-pelicun.tests.test_file_io.test_read_SimCenter_DL_input_unknown_component_unit()[source]
-

Test if an error is shown if the input file contains an unknown unit type -for one of the components.

-
- -
-
-pelicun.tests.test_file_io.test_read_SimCenter_DL_input_no_realizations()[source]
-

Test if an error is shown if the input file contains no information about -the number of realizations to run.

-
- -
-
-pelicun.tests.test_file_io.test_read_SimCenter_EDP_input()[source]
-

Test if the function can read the provided set of EDPs from a file and -return them and the corresponding additional information in a properly -structured format.

-
- -
-
-pelicun.tests.test_file_io.test_read_population_distribution()[source]
-

Test if the population distribution is read according to the specified -occupancy type and if the peak population is properly converted from -1/1000*ft2 to 1/m2.

-
- -
-
-pelicun.tests.test_file_io.test_read_component_DL_data()[source]
-

Test if the component data is properly read from the resource xml files. -Use a series of tests to see if certain component features trigger proper -warnings or errors.

-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/verification/test_model.html b/docs/common/technical_manual/pelicun/verification/test_model.html deleted file mode 100644 index 3e6f7b439..000000000 --- a/docs/common/technical_manual/pelicun/verification/test_model.html +++ /dev/null @@ -1,449 +0,0 @@ - - - - - - - - - - Testing the pelicun.model module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Testing the pelicun.model module

-

These are unit and integration tests on the model module of pelicun.

-
-
-pelicun.tests.test_model.test_FragilityFunction_Pexc_lognormal_unit_mean_unit_std()[source]
-

Given a lognormal fragility function with theta=1.0 and beta=1.0, test if -the calculated exceedance probabilities are sufficiently accurate. -The reference results are based on a standard normal table. This limits the -accuracy of testing to an absolute probability difference of 1e-5.

-
- -
-
-pelicun.tests.test_model.test_FragilityFunction_Pexc_lognormal_non_trivial_case()[source]
-

Given a lognormal fragility function with theta=0.5 and beta=0.2, test if -the calculated exceedance probabilities are sufficiently accurate. -The reference results are based on a standard normal table. This limits the -accuracy of testing to an absolute probability difference of 1e-5.

-
- -
-
-pelicun.tests.test_model.test_FragilityFunction_Pexc_lognormal_zero_input()[source]
-

Given a zero EDP input to a lognormal fragility function, the result shall -be 0 exceedance probability, even though zero input in log space shall -correspond to -infinity. This slight modification makes our lives much -easier when real inputs are fed to the fragility functions.

-
- -
-
-pelicun.tests.test_model.test_FragilityFunction_Pexc_lognormal_nonzero_scalar_input()[source]
-

Given a nonzero scalar EDP input, the fragility function should return a -nonzero scalar output.

-
- -
-
-pelicun.tests.test_model.test_FragilityFunction_Pexc_multiple_damage_states_with_correlation()[source]
-

Test if the fragility function returns an appropriate list of exceedance -probabilities for various scenarios with multiple damage states that have -potentially correlated fragilities.

-
- -
-
-pelicun.tests.test_model.test_FragilityFunction_DSG_ID_given_EDP_general()[source]
-

Test if the DSG_IDs returned by the function are appropriate using -exceedance probabilities from the already tested P_exc function.

-
- -
-
-pelicun.tests.test_model.test_ConsequenceFunction_fixed_median_value()[source]
-

Test if the function returns the prescribed median.

-
- -
-
-pelicun.tests.test_model.test_ConsequenceFunction_bounded_linear_median_value()[source]
-

Test if the function returns an appropriate output for single quantities -and for quantity arrays, and if it raises an error if the quantity is not -specified for a quantity-dependent median.

-
- -
-
-pelicun.tests.test_model.test_ConsequenceFunction_sample_unit_DV()[source]
-

Test if the function samples the DV distribution properly. Note that we -have already tested the sampling algorithm in the uq module, so we will not -do a thorough verification of the samples here, but rather check for errors -in the inputs that would typically lead to significant mistakes in the -results.

-
- -
-
-pelicun.tests.test_model.test_DamageState_weight()[source]
-

Test if the damage state returns the assigned weight value.

-
- -
-
-pelicun.tests.test_model.test_DamageState_description()[source]
-

Test if the damage state returns the assigned description.

-
- -
-
-pelicun.tests.test_model.test_DamageState_repair_cost_sampling()[source]
-

Test if the repair cost consequence function is properly linked to the -damage state and if it returns the requested samples.

-
- -
-
-pelicun.tests.test_model.test_DamageState_reconstruction_time_sampling()[source]
-

Test if the reconstruction time consequence function is properly linked to -the damage state and if it returns the requested samples.

-
- -
-
-pelicun.tests.test_model.test_DamageState_red_tag_sampling()[source]
-

Test if the red tag consequence function is properly linked to the damage -state and if it returns the requested samples.

-
- -
-
-pelicun.tests.test_model.test_DamageState_injury_sampling()[source]
-

Test if the set of injury consequence functions is properly linked to the -damage state and if it returns the requested samples.

-
- -
-
-pelicun.tests.test_model.test_DamageStateGroup_kind()[source]
-

Test if the damage state group returns the assigned group type.

-
- -
-
-pelicun.tests.test_model.test_PerformanceGroup_Pexc()[source]
-

Test if the performance group returns exceedance probabilities from the -assigned fragility function for a given damage state group appropriately.

-
- -
-
-pelicun.tests.test_model.test_FragilityGroup_description_and_name()[source]
-

Test if the fragility group returns the assigned description.

-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/verification/test_uq.html b/docs/common/technical_manual/pelicun/verification/test_uq.html deleted file mode 100644 index 1b8a72a7d..000000000 --- a/docs/common/technical_manual/pelicun/verification/test_uq.html +++ /dev/null @@ -1,430 +0,0 @@ - - - - - - - - - - Testing the pelicun.uq module — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Testing the pelicun.uq module

-

These are unit and integration tests on the uq module of pelicun.

-
-
-pelicun.tests.test_uq.test_MVN_CDF_univariate()[source]
-

Test if the MVN CDF function provides accurate results for the special -univariate case.

-
- -
-
-pelicun.tests.test_uq.test_MVN_CDF_multivariate()[source]
-

Test if the MVN CDF function provides accurate results for multivariate -cases.

-
- -
-
-pelicun.tests.test_uq.test_RandomVariable_incorrect_none_defined()[source]
-

Test if the random variable object raises an error when the distribution -is not empirical and no parameters are provided.

-
- -
-
-pelicun.tests.test_uq.test_RandomVariable_incorrect_multinomial_definition()[source]
-

Test if the random variable object raises an error when a multinomial -distribution is defined with incorrect parameters, and test -that it does not raise an error when the right parameters are provided.

-
- -
-
-pelicun.tests.test_uq.test_sampling_tr_alpha_error()[source]
-

Test if the function raises an error when the probability density that the -truncation limits define is not sufficiently accurate for further use.

-
- -
-
-pelicun.tests.test_uq.test_sampling_non_truncated()[source]
-

Test if the sampling method returns appropriate samples for a non-truncated -univariate and multivariate normal distribution.

-
- -
-
-pelicun.tests.test_uq.test_sampling_truncated_wide_limits()[source]
-

Test if the sampling method returns appropriate samples for a truncated -univariate and multivariate normal distribution when the truncation limits -are sufficiently wide to consider the result a normal distribution.

-
- -
-
-pelicun.tests.test_uq.test_sampling_truncated_narrow_limits()[source]
-

Test if the sampling method returns appropriate samples for a truncated -univariate and multivariate normal distribution when the truncation limits -are narrow.

-
- -
-
-pelicun.tests.test_uq.test_RandomVariable_sample_distribution_mixed_normal()[source]
-

Test if the distribution is sampled appropriately for a correlated mixture -of normal and lognormal variables. Note that we already tested the sampling -algorithm itself earlier, so we will not do a thorough verification of -the samples, but rather check for errors in the inputs that would -typically lead to significant mistakes in the results.

-
- -
-
-pelicun.tests.test_uq.test_RandomVariable_sample_distribution_multinomial()[source]
-

Test if the distribution is sampled appropriately for a multinomial -variable. Also test that getting values for an individual RV that is part -of a correlated RV_set works appropriately.”

-
- -
-
-pelicun.tests.test_uq.test_fitting_baseline()[source]
-

Test if the max. likelihood estimates of a (multivariate) normal -distribution are sufficiently accurate in the baseline case with no -truncation and no censoring.

-
- -
-
-pelicun.tests.test_uq.test_fitting_censored()[source]
-

Test if the max. likelihood estimates of a multivariate normal distribution -are sufficiently accurate in cases with censored data.

-
- -
-
-pelicun.tests.test_uq.test_fitting_truncated()[source]
-

Test if the max. likelihood estimates of a multivariate normal distribution -are sufficiently accurate in cases with truncation and uncensored data.

-
- -
-
-pelicun.tests.test_uq.test_fitting_truncated_and_censored()[source]
-

Test if the max. likelihood estimates of a multivariate normal distribution -are sufficiently accurate in cases with truncation and censored data.

-
- -
-
-pelicun.tests.test_uq.test_fitting_lognormal()[source]
-

Test if the max. likelihood estimates of a multivariate lognormal -distribution are sufficiently accurate

-
- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/technical_manual/pelicun/verification/verification.html b/docs/common/technical_manual/pelicun/verification/verification.html deleted file mode 100644 index 2d5b36067..000000000 --- a/docs/common/technical_manual/pelicun/verification/verification.html +++ /dev/null @@ -1,335 +0,0 @@ - - - - - - - - - - 2. Verification — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2. Verification

-

The methods in pelicun are verified with Unit and Integration tests after each commit using the Travis-CI Cloud-based Continuous Integration platform. The tests performed are grouped by modules and listed under Continuous Integration below. These verification tests confirm that the methods perform the tasks as we intended. Additional tests will be added under Benchmark problems that compare the outputs of pelicun to other, established performance assessment tools, such as PACT and SP3. These benchmark problems will show that the results are in line with those you would expect from the other tools available.

-
-

2.1. Continuous Integration

-

Each of the pages below lists the tests performed in pelicun and provides a short description of the tested functionality. The heavily commented test scripts and all required input data are available in the test folder of the pelicun package.

-
- -
-
-
-

2.2. Benchmark problems

-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/anchorage/anchorage.html b/docs/common/testbeds/anchorage/anchorage.html deleted file mode 100644 index 915dc84c3..000000000 --- a/docs/common/testbeds/anchorage/anchorage.html +++ /dev/null @@ -1,621 +0,0 @@ - - - - - - - - - - Anchorage, AK — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Anchorage, AK

-

On November 30th 2018 at 8.29am local time, a magnitude 7.1 earthquake occurred near Anchorage, Alaska. Originally the earthquake was estimated to be a magnitude 7.0, but was later on revised to magnitude 7.1. The epicenter of the earthquake was 10 miles away from the Anchorage metro area and the depth of the earthquake was 29 miles. For more details visit the USGS event page. A short Youtube video shows the shaking and images of the damage. As of July 11, FEMA’s Individuals and Households program has approved more than $21 million to repair disaster-damaged homes and pay for temporary housing. Additionally, the U.S. Small Business Administration has approved more than $70.3 million for 1,772 homeowners and renters; and more than $7.89 million for 112 businesses..

-

In the few weeks following the earthquake, the NHERI SimCenter team collected and processed building exposure data from the publicly available parcels tax data from the Municipality of Anchorage tax assessor’s website. The tax data for approximately 97,000 parcels was processed, resulting in buildings data in 85,000 parcels. In addition the SimCenter collected a number of recorded motions for the event that were made available online.

-

Subsequently the SimCenter created a workflow to estimate the effect of the earthquake using the software created by the center for performing assessment of damage associated with natural events at the regional scale. This section describes the steps involved to collect the data, steps that a user would take to repeat the simulations performed by SimCenter, and finally the results obtained.

-

A video presenting the work was presented by Wael Elhadded of SimCenter (now with NVIDIA).

-
-

Anchorage Data Gathering

-
-

Building Data

-

The NHERI SimCenter team collected and processed building exposure data from the publicly available parcels tax data from the Municipality of Anchorage tax assessor’s website. The tax data for approximately 97,000 parcels was processed, resulting in buildings data in 85,000 parcels, which can be broken down into two regions as follows:

-
    -
  • 73,000 parcels in Anchorage

  • -
  • 12,000 parcels in Eagle River

  • -
-

The building data is provided online at DesignSafe AnchorageBuildings.zip. The zip file contains a single comma separated file. The first line contains the column headings, the subsequent lines the information for each building.

-
    -
  1. Id - an integer id

  2. -
  3. Area - floor plan area of building.

  4. -
  5. Stories - number of stories

  6. -
  7. Year Built - year built.

  8. -
  9. Type ID - ???

  10. -
  11. Latitude - latitude of building

  12. -
  13. Longitude - longitude of building

  14. -
  15. Occupancy - occupancy class of building

  16. -
  17. ParcelId - assessors parcel id.

  18. -
-

The data was collected by a python program utilizing selenium, which provides a set of tools for automating web browsers. The program used to generate the data is as shown in figure below:

-
import sys
-import os
-import geocoder
-from selenium import webdriver
-from selenium.webdriver.support.ui import WebDriverWait
-from bs4 import BeautifulSoup
-import re
-import math
-import csv
-
-#
-# mapping function for occupancy
-#
-
-def MapOccupancy(parcelHeader):
-    if 'Residential' in parcelHeader:
-        if '1-Family' in parcelHeader or 'Sfr' in parcelHeader:
-            return [1, 'Residential Single Family']
-        elif '2-Family' in parcelHeader:
-            return [2, 'Residential Town-Home']
-        elif 'Condo' in parcelHeader or '3-Family':
-            return [3, 'Residential Multi-Family']
-        elif 'Mixed' in parcelHeader:
-            return [12, 'Mixed Use Residential']
-
-    elif 'Commercial' in parcelHeader:
-        if 'Office' in parcelHeader:
-            return [4, 'Office']
-        elif 'Hotel' in parcelHeader:
-            return [5, 'Hotel']
-        elif 'Condo' in parcelHeader or 'Apartments' in parcelHeader:
-            return [3, 'Residential Multi-Family']
-        elif 'Mixed' in parcelHeader:
-            return [14, 'Mixed Use Office']
-        elif 'Parking Garage' in parcelHeader:
-            return [15, 'Parking']
-        elif 'Retail' in parcelHeader or 'Restaurant' in parcelHeader:
-            return [10, 'Retail']
-        elif '1-Family' in parcelHeader or 'Sfr' in parcelHeader or 'Res Struct' in parcelHeader:
-            return [1, 'Residential Single Family']
-        elif '2-Family' in parcelHeader:
-            return [2, 'Residential Town-Home']
-        elif 'Religious' in parcelHeader or 'Correctional' in parcelHeader :
-            return [4, 'Office']
-        elif 'High Rise Apartmen' in parcelHeader:
-            return [12, 'Mixed Use Residential']
-        elif 'Manufacturing/Proc' in parcelHeader:
-            return [7, 'Industrial']
-        elif 'Boarding/Rooming H' in parcelHeader:
-            return [5, 'Hotel']
-        elif 'Bank' in parcelHeader:
-            return [4, 'Office']
-        elif 'Senior Housing' in parcelHeader:
-            return [3, 'Residential Multi-Family']
-        elif 'Shopping' in parcelHeader or 'Food' in parcelHeader or 'Dinner':
-            return [10, 'Retail']
-        elif 'Auto Service Garag' in parcelHeader:
-            return [7, 'Industrial']
-        elif 'Warehouse' in parcelHeader:
-            return [8, 'Warehouse']
-        elif 'School' in parcelHeader:
-            return [8, 'School']
-
-    if('Vacant' in parcelHeader or 'Vac/Land' in parcelHeader or 'Leasehold' in parcelHeader or 'Parking Lots' in parcelHeader or 'DEACTIVATED' in parcelHeader):
-        return [0, 'Unknown']
-    print("Unknown Occupancy: {}", parcelHeader)
-
-#
-# some regular expressions for extractiung data
-#
-
-storyHtRegex = re.compile(".+Story Ht : ([0-9.]+).+")
-yearBuiltRegex = re.compile(".+\nYear Built : ([0-9]+).+")
-yrBltRegex = re.compile(".+Yr Blt:\s+([0-9]+)\n.+")
-BldgAreaRegex = re.compile(".+Bldg Area:\s+([0-9,]+).+")
-
-
-id = 0
-numParcels = 0
-numResidential = 0
-numResidentialFailed = 0
-numCommerical = 0
-numCommericalFailed = 0
-numVacant = 0
-numParkingLots = 0
-numLeasehold = 0
-numDeactivated = 0
-
-buildingsFile = open('AnchorageBuildings.csv', 'w')
-buildingsWriter = csv.writer(buildingsFile)
-buildingsWriter.writerow(["ID", "Area", "Stories", "Year Built", "Type ID", "Occupancy", "ParcelId"])
-
-
-#Starting the browser and opening tax assessor's data website for Anchorage
-browser = webdriver.Chrome() 
-url = "https://www.muni.org/pw/public.html"
-browser.get(url)
-
-#Fill parcel search box with zero
-parcelBox1 = browser.find_element_by_name("PAR1")
-parcelBox1.send_keys('0')
-
-#Click on Submit
-submitButton = browser.find_element_by_name("submitbtn") 
-submitButton.click()
-
-for i in range(1,4):
-    print("Processing results page {}".format(i))
-    #Finding the parcels table with XPath
-    parcelsTable = browser.find_elements_by_xpath("//table[1]/tbody/tr[2]/td/table[5]/tbody/tr")
-    parcelsCount = len(parcelsTable)
-
-    #Looping through the parcels table rows
-    for i in range(1, parcelsCount):
-        #extracting the parcel id
-        parcelRow = browser.find_element_by_xpath("//table[1]/tbody/tr[2]/td/table[5]/tbody/tr[{}]".format(i+1))
-        parcelIdCell = parcelRow.find_element_by_xpath(".//td[1]")
-        if parcelIdCell is not None:
-            parcelId = parcelIdCell.text
-            
-            parcelAddressCell = parcelRow.find_element_by_xpath(".//td[3]")
-            parcelAddress = ""
-            if parcelAddressCell is not None:
-                parcelAddress = parcelAddressCell.text
-                g = geocoder.google("{}, Anchorage Alaska".format(parcelAddress))
-                print(g.latlng)
-
-            print("Id: {} Adress {}".format(parcelId, parcelAddress))
-
-
-                
-            
-            #Clinking on the parcel to open the parcel details
-            parcelIdCell.click()
-            WebDriverWait(browser, 10)
-
-            occupancy = 'unknown'
-            #We can now parse the parcel details
-            #e.g. let's find the occupancy
-            try:
-                parcelSoup = BeautifulSoup(browser.page_source, "html.parser")
-
-                #We will assume the header is always the seventh table row (maybe using trial and error)
-                parcelHeader = parcelSoup.findAll('tr')[7].text
-                [occupancyId, occupancy] = MapOccupancy(parcelHeader)
-
-                if("Vacant" in parcelHeader):
-                    numVacant = numVacant + 1
-                    # print("VACANT {}".format(partcelId))
-                elif("Leasehold Master" in parcelHeader):
-                    numLeasehold = numLeasehold + 1
-                    # print("LEASEHOLD MASTER {}".format(parcelId))                    
-                elif("Parking Lots" in parcelHeader):
-                    numParkingLots = numParkingLots + 1
-                    # print("PARKING {}".format(parcelId))
-                    
-                elif("Residential" in parcelHeader or ""):
-
-                    numResidential = numResidential + 1
-                    if not parcelSoup.findAll('tr')[12].text == 'IMPROVEMENT DATA':
-                        numResidentialFailed = numResidentialFailed + 1
-                        print("Parcel: {} Failed to parse Residential!".format(parcelId))
-                        continue
-
-                    improvementData = parcelSoup.findAll('tr')[13].text
-                    numStories = int(math.floor(float((storyHtRegex.match(improvementData).group(1)))))
-                    yearBuilt = int(yearBuiltRegex.match(improvementData).group(1))
-
-                    improvementArea = parcelSoup.findAll('tr')[15].text
-                    area = float(improvementArea.rstrip().splitlines()[-1].split(' ')[-1])
-
-                    
-                    id = id + 1 
-                    buildingsWriter.writerow([id, area, numStories, yearBuilt, occupancyId, occupancy, parcelId, parcelAddress ])
-                    print("Resid Parcel: {} is {} and id is {}".format(parcelId, occupancy, occupancyId))
-                    
-                elif("Condominium" in parcelHeader or "Condo/Hoa" in parcelHeader):
-                    print('Begining Condo')
-                    numCommerical = numCommerical + 1
-                    if parcelSoup.findAll('tr')[12].text == 'ASSESSMENT HISTORY':
-                        buildingData = parcelSoup.findAll('tr')[17].text
-
-                        floors = []
-                        for floorLine in parcelSoup.findAll('tr')[19].text.splitlines()[2:]:
-                            if not floorLine:
-                                continue
-                            floorRange = floorLine.split()[0].split('/')
-                            for floorNo in floorRange:
-                                if floorNo.isdigit():
-                                    floors.append(int(floorNo))
-
-                        numStories = 1
-                        if len(floors) > 0:
-                            numStories = max(floors)
-
-                        yearBuilt = int(yrBltRegex.match(buildingData).group(1))
-                        area = float(BldgAreaRegex.match(buildingData).group(1).replace(',',''))
-                    else:
-                        improvementData = parcelSoup.findAll('tr')[13].text
-                        numStories = int(math.floor(float((storyHtRegex.match(improvementData).group(1)))))
-                        yearBuilt = int(yearBuiltRegex.match(improvementData).group(1))
-
-                        improvementArea = parcelSoup.findAll('tr')[15].text
-                        area = float(improvementArea.rstrip().splitlines()[-1].split(' ')[-1])
-
-                    parcelAddressCell = parcelRow.find_element_by_xpath(".//td[3]")
-                    parcelAddress = parcelAddressCell.text
-                    print("Id: {} Adress {}".format(parcelId, parcelAddress))
-                    
-                    id = id + 1 
-                    buildingsWriter.writerow([id, area, numStories, yearBuilt, occupancyId, occupancy, parcelId, parcelAddress ])
-                    print("Condo Parcel: {} is {} and id is {}".format(parcelId, occupancy, occupancyId))
-
-                elif("Commercial" in parcelHeader):
-                    print('Begining Commercial')
-                    numCommerical = numCommerical + 1
-                    if len(parcelSoup.findAll('tr')) < 20:
-                        print("Parcel {} Commercial Parsing Failed!".format(partcelId))
-                        numCommericalFailed = numCommericalFailed + 1
-                        continue
-
-                    buildingData = parcelSoup.findAll('tr')[17].text
-
-                    floors = []
-                    for floorLine in parcelSoup.findAll('tr')[19].text.splitlines()[2:]:
-                        if not floorLine:
-                            continue
-                        floorRange = floorLine.split()[0].split('/')
-                        for floorNo in floorRange:
-                            if floorNo.isdigit():
-                                floors.append(int(floorNo))
-
-                    numStories = 1
-                    if len(floors) > 0:
-                        numStories = max(floors)
-
-                    yearBuilt = int(yrBltRegex.match(buildingData).group(1))
-                    area = float(BldgAreaRegex.match(buildingData).group(1).replace(',',''))
-
-                    parcelAddressCell = parcelRow.find_element_by_xpath(".//td[3]")
-                    parcelAddress = parcelAddressCell.text
-                    print("Id: {} Adress {}".format(parcelId, parcelAddress))
-                    
-                    id = id + 1
-                    buildingsWriter.writerow([id, area, numStories, yearBuilt, occupancyId, occupancy, parcelId, parcelAddress ])
-                    print("Commercial Parcel: {} is {} and id is {}".format(parcelId, occupancy, occupancyId))
-            
-                elif("DEACTIVATED" in parcelHeader):
-                    numDeactivated = numDeactivated + 1
-                    print("DEACTIVATED")
-                else:
-                    print("Parcel: {} Unkown Parcel: {}".format(parcelID,parcelHeader))
-                        
-                print("Parcel: {} is {} and id is {}".format(parcelId, occupancy, occupancyId))
-                
-                
-            except:
-                "Error: Failed to process parcel: " + parcelId
-
-
-            #clicking on the back button
-            backButton = browser.find_element_by_name("backbtn")
-            backButton.click()
-    #Going to next page in the search results       
-    nextButton = browser.find_element_by_name("nextbtn")
-    nextButton.click()
-
-
-
-#Excercise 4: Can we extract more information about these buildings
-#e.g. number of stories, year built, area...etc.
-
-
-
-

Note

-

the code uses a python model named geocoder to geoencode the latitudes and longitudes from the street addresses. geocoder can be set up to use a number of provideres. The code shown above uses Open Street Maps, which is free but might not be efficient. The difference in service providers is in speed of service, some may be rate limited, and all can result in minor differences in lat and long values returned.

-
-
-
-

Ground Motion Data

-

The testbed used the following workflow:

-
-
-
-

Workflow

-

Preliminary regional loss estimation was carried out using rWHALE, a regional workflow for hazard and loss estimation, developed at NHERI SimCenter. Results for the regional simulation of Anchorage M7.1 earthquake can be summarized as follows:

-
-
-

Results

-

Average building loss ratio is 14.5% -Total repair cost of $7.5 billion -3800 Red Tagged Buildings

-

Researchers interested in reproducing the same results are able to access rWHALE through DeisgnSafe-CI Workspace (requires logging in). Detailed steps needed to run a large scale regional simulation were presented in a NHERI SimCenter online webinar, and a recorded version is available online. Additional documentation and details are available in the SimCenter website.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/asset_description.html b/docs/common/testbeds/atlantic_city/asset_description.html deleted file mode 100644 index fc8b2ab2b..000000000 --- a/docs/common/testbeds/atlantic_city/asset_description.html +++ /dev/null @@ -1,11377 +0,0 @@ - - - - - - - - - - Asset Description — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Asset Description

-

This section describes how a large-scale building inventory was constructed using a phased approach that -augments tax assessor data, using machine learning and computer vision algorithm to address errors/omissions and -generate all attributes required for the corresponding loss assessment. It is emphasized that the intent -is to demonstrate how an inventory could be constructed and not to address potential errors, omissions or -inaccuracies in the source data, i.e., source data are assumed to be accurate and no additional quality -assurance was conducted outside of addressing glaring omissions or errors.

-

In the process of assembling this inventory, a number of scripts were developed to facilitate the actions -described in the following sections. While these scripts were not intended to be production-quality -software and were written assuming a particular data format/endpoint which may change over time, they -do provide an example of the type of operations necessary to assemble a building inventory and thus -are made available at GitHub as an illustrative example.

-
-

Phase I: Attribute Definition

-

All the attributes required for loss estimation were first identified to develop the Building Inventory -data model, which catalogs each attribute, its purpose, its format (alphanumeric, floating point number, -etc.), the data source used to define that attribute and the field(s) needed from that data source, any -transformations of that source data necessary to align with the units or conventions used in the Building -Inventory, and any relevant details explaining notations, assumptions, or reference documents. These -fields are summarized in tab-bldgInventory with full details of each field -available on DesignSafe, for both the Atlantic County Inventory and the Flood-Exposed/Exploratory Inventory. -The Building Inventory data model should be comprehensive, encompassing all attributes required for loss -estimation, although these may be populated in the Building Inventory at different points in the workflow, -e.g., a number of attributes needed for loss estimation are populated during the Asset Representation stage -(see Asset Representation).

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Building Inventory data model.

Attribute

Description

Format

BldgID

Building unique ID. The first four characters will be “NJBF,” followed by a 9-digit zero-padded number.

NJBF#########

Address

Typically assessor field for property location. This is distinct from Street Address in MODIV which is associated with the billing address

Alphanumeric

City

Typically assessor field for property location – city.

Alphanumeric

State

Typically assessor field for property location - state abbreviation.

Alphanumeric

Latitude

Latitude of the Building Centroid (inside polygon).

Floating point number (Decimal Degrees)

Longitude

Longitude of the Building Centroid (inside polygon).

Floating point number (Decimal Degrees)

OccupancyClass

Subclassifications of buildings across various categories of Residential (RES), Commercial (COM), Industrial (IND), Agriculture (AGR), Government (GOV), Education (EDU), Religious/Non-Profit (REL).

Choices: RES1, RES2, RES3A, RES3B, RES3C, RES3D, RES3E, RES3F, RES4, RES5, RES6, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, COM10, IND1, IND2, IND3, IND4, IND5, IND6, AGR1, REL1, GOV1, GOV2, EDU1, EDU2

BuildingType

Core construction material type; Wood, Concrete, Steel, Masonry, Manufactured Housing.

Choices: 3001, 3002, 3003, 3004, 3005

UseCode

Class 4 Use Codes (Field 67) applicable to commercial buildings only, describing specific use of commercial properties.

Integer (3-digit)

BldgClass

Building class according to NJ Appraisal Manual (see Vol 2)

Integer (3-digit)

EssentialClass

Designates several classes of essential facilities in the region based on open data to ensure they are properly modeled.

Choices: PS, EOC, HO, HS, SCH

DesignLevel

Classification of level of engineering used in design process: Choices: Engineered (E), Pre-Engineered, (PE) Marginally Engineered (ME), Non-Engineered (NE)

Choices: E, PE, ME, NE

YearBuiltNJDEP

Assessor-provided Year of Construction from NJDEP Footprints

Integer (4-digit)

YearBuiltMODIV

Assessor-provided Year of Construction from MODIV

Integer (4-digit)

NumberofStories0

Assessor-provided number of stories

Integer (4-digit)

NumberofStories1

Number of stories estimated via image processing

Integer

NoUnits

Number of units in the property (commercial or residential)

Integer

PlanArea0

Plan area in square feet from assessor databases

Floating point number

PlanArea1

Plan area in square feet from footprint data

Floating point Number

FoundationType

Classification using 7 types referenced by flood model

Integer (4-digit)

SplitLevel

Specifies if residential construction is split-level

Choices: Yes, No

ElevationR0

Elevation of the bottom plane of the roof (lowest edge of roof line) relative to grade (ft)

Floating point number

ElevationR1

Elevation of highest point of the roof (peak of gable or apex of hip) relative to grade (ft)

Floating point Number

FirstFloorHt0

Height above grade estimated from elevation certificate or inferred from foundation type (in feet): Defined as top of lowest/bottom floor

Floating point Number

FirstFloorHt1

Height of top of floor as estimated from base of door height above grade, based on streetview imagery (in feet)

Floating point Number

FloodZone

Flood zone specified on FEMA FIRM based on building location

Choices: 6101, 6102, 6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6199

DSWI

DesignWindSpeed I in mph

Floating point number

DSWII

DesignWindSpeed II in mph

Floating point number

DSWIII

DesignWindSpeed III in mph

Floating point number

DSWIV

DesignWindSpeed IV in mph

Floating point number

WindZone

HAZUS-defined Wind Zone (For Manuactured homes, based on HUD Designation)

Choices: I, II, III

AvgJanTemp

Average temperature in January below or above critial value of 25F.

Choices: Above, Below

RoofShape

Roof classified into equivalent hip, gable or flat

Choices: Hip, Gable, Flat

RoofSlope

Slope of roof covering the majority of the dwelling

Floating point number

RoofCover

Roof covering, specified only for residential construction.

Choices: 5701, 5702, 5703, 5704

MeanRoofHt

Mean height of roof system in ft

Floating point number

WindowArea

Percentage of walls defined by window openings

Floating point number (decimal<1)

Garage

Assessor-provided type of garage.

Floating point number

Terrain

HAZUS-defined terrain classifications (x100) based on LULC data

Choices: 3, 15, 35, 70, 100

AnalysisDefault

Defines the default level of fidelity for analysis

Choices: 1, 2, 3

AnalysisAdopted

Defines the adopted level of fidelity for analysis

Choices: 1, 2, 3

Modifications

Record of manual updates, corrections or modifications to record

Alphanumeric (freeform)

HazusClass-W

Hazus building classes as defined for wind hazards

CHOICES: WSF1, WSF2, WMUH1, WMUH2, WMUH3, WMUH1NE, WMUH2NE, WMUH3NE, WMUH4NE, MSF1, MSF2, MMUH1, MMUH2, MMUH3, MLRM1, MLRM2, MLRI, MERBL, MERBM, MERBH, MECBL, MECBM, MECBH, MMUH1NE, MMUH2NE, MMUH3NE, CERBL, CERBM, CERBH, CECBL, CECBM, CECBH, SPMBS, SPMBM, SPMBL, SERBL, SERBM, SERBH, SECBL, SECBM, SECBH, MHPHUD, MH76HUD, MH94HUD-I, MH94HUD-II, MH94HUD-III, HUEFFS, HUEFSS, HUEFSM, HUEFSL, HUEFHS, HUEFHM, HUEFHL, HUEFPS, HUEFEO

RoofSystem

Underlying roof structure, applies only to masonry buildings

Choices: Wood, OWSJ

HPR

Defines Hazard Prone Regions (HPR) for the purposes of Hazus wind vulnerability assignments for WSF1-2

Choices: yes, no

WBD

Defines Wind Borne Debris (WBD) for the purposes of Hazus wind vulnerability assignments for WSF1-2

Choices: yes, no

SWR

Defines Secondary Water Resistance (SWR) for the purposes of Hazus wind vulnerability assignments for WSF1-2, WMUH1-3, MSF1-2, MMUH1-3

Choices: yes, no

RoofCvr

Defines roof cover for the purposes of Hazus wind vulnerability assignments for WMUH1-3, MMUH1-3, MERBL-M-H, MECBL-M-H, MLRI, MLRM1, MLRM2, SERBL-M-H, SECBL-M-H, CECBL-M-H, CERBL-M-H and Fire Stations (HUEFFS), Elementary Schools (HUEFSS), 2-story High School (HUEFSM) and 3-story High School (HUEFSL) and Hospitals (small - HUEFHS, medium - HUEFHM, large - HUEFHL) and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: N/A, BUR, SPM

RoofQual

Defines roof cover quality for the purposes of Hazus wind vulnerability assignments for WMUH1-3, MMUH1-3, MLRI

Choices: N/A, poor, good

RDA-Wood

Defines Roof Deck Attachment (RDA) for wood for the purposes of Hazus wind vulnerability assignments for WSF1-2, WMUH1-3, MMUH1-3, MSF1-2, MLRM1, MLRM2

Choices: A, B, C, D

RDA-OWSJ

Defines Roof Deck Attachment (RDA) for OWSJ for the purposes of Hazus wind vulnerability assignments for MSF1-2

Choices: smtl standard, smtl superior, cshl standard, cshl superior

R2WC

Defines Roof to Wall Connection (R2WC) for the purposes of Hazus wind vulnerability assignments for WSF1-2, WMUH1-3, MMUH1-3, MSF1-2, MLRM1, MLRM2

Choices: strap, toe-nail

shutters

Defines use of window opening protection for the purposes of Hazus wind vulnerability assignments for WSF1-2, WMUH1-3, MMUH1-3, MSF1-2, MERBL-M-H, MECBL-M-H, MMUH1-3,MLRM1, MLRM2, SERBL-M-H, SECBL-M-H, CECBL-M-H, CERBL-M-H, SPMBS-M-L, MH94HUDI-II-III, MH76HUD, MHPHUD and Fire Stations (HUEFFS), Elementary Schools (HUEFSS), 2-story High School (HUEFSM) and 3-story High School (HUEFSL) and Hospitals (small - HUEFHS, medium - HUEFHM, large - HUEFHL) and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: yes, no

Agarage

Defines presence of attached garage for the purposes of Hazus wind vulnerability assignments for WSF1-2, MSF1-2

Choices: none, SFBC 1994, standard, weak

Mreinf

Defines presence of reinforcement in masonry walls for the purposes of Hazus wind vulnerability assignments for MSF1-2, MLRI, MLRM1, MLRM2, MMUH1-3

Choices: yes, no

OWSJ-r

Defines property of OWSJ required for Hazus wind vulnerability assignments for MSF1-2

Choices: cshl, smtl

Metal-RDA

Defines Metal Roof Deck Attachment (RDA) for purposes of Hazus wind vulnerability assessments for MLRI, MERBL-M-H, MECBL-M-H, MLRM1, MLRM2, SERBL-M-H, SECBL-M-H, SPMBS-M-L and Fire Stations (HUEFFS), Elementary Schools (HUEFSS), 2-story High School (HUEFSM) and 3-story High School (HUEFSL) and Hospitals (small - HUEFHS, medium - HUEFHM, large - HUEFHL) and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: standard, superior

RDage

Defines roof deck age for the purposes of Hazus wind vulnerability assessments for MLRM1, MLRM2, SPMBS-M-L and Fire Stations (HUEFFS), Elementary Schools (HUEFSS)

Choices: new/avg, old

UnitClass

Defines number of units in strip mall for purposes of Hazus wind vulnerability assessments for MLRM2

Choices: single, multi

JoistSpace

Defines joist spacing for multi-unit strip malls for purposes of Hazus wind vulnerability assessments for MLRM2

Choices: N/A, 4, 6

WindDebris

Defines likely sources of wind debris for purpose of Hazus wind vulnerability assessments for MERBL-M-H, MECBL-M-H, MLRM1, MLRM2, SERBL-M-H, SECBL-M-H, CECBL-M-H, CERBL-M-H and Fire Stations (HUEFFS), Elementary Schools (HUEFSS), 2-story High School (HUEFSM) and 3-story High School (HUEFSL) and Hospitals (small - HUEFHS, medium - HUEFHM, large - HUEFHL) and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: Res/Comm, Varies by Direction, Residential, None, A, B, C, D

WWR

Defines window to wall ratio (WWR) for purpose of Hazus wind vulnerability assessments for MERBL-M-H, MECBL-M-H, SERBL-M-H, SECBL-M-H, CECBL-M-H, CERBL-M-H and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: low, medium, high

TieDowns

Defines use of ties to connect mobile homes to foundations per HUD guidelnes for purpose of Hazus wind vulnerability assessments for MH94HUDI-II-III, MH76HUD, MHPHUD

Choices: yes, no

HazusClass-IN

Hazus building classes as defined for inundation (flooding)

Choices: SF1XA, SF1XV, SF2XA, SF2XV, SF2BA, SF2BV, SF2SA, SF2SV, MH, APT, HOT, NURSE, RETAIL, WHOLE, SERVICE, OFFICE, BANK, HOSP, MED, REC, THEAT, GARAGE, INDH, INDL, CHEM, PROC, CONST, AGRI, RELIG, CITY, EMERG, SCHOOL

HazusClass-WA

Hazus building classes as defined for wave action

Choices: W1, W2, W3, MC1, MC2, MC3, S1, S2, S3, MH

FloodType

Assignment to flood zones as defined for Hazus damage/loss descriptions

Choices: Riverine/A-Zone, Coastal/A-Zone, -Coastal/V-Zone

FirstFloorElev

Assignment of first floor height as defined by Hazus

Floating Point Number

PostFIRM

Assignment of FIRM phasing as defined by Hazus

Choices: Yes, No

NumberofStories

Initalizing number of stories for Hazus analysis

integer

BasementType

Assignement of basement type for Hazus analysis

Choices: Basement, Split-Level Basement, No Basement

OccupancyType

Assignment of Occupancy type for Hazus analysis

Choices: SF1XA, SF1XV, SF2XA, SF2XV, SF2BA, SF2BV, SF2SA, SF2SV, MH, APT, HOT, NURSE, RETAIL, WHOLE, SERVICE, OFFICE, BANK, HOSP, MED, REC, THEAT, GARAGE, INDH, INDL, CHEM, PROC, CONST, AGRI, RELIG, CITY, EMERG, SCHOOL

Duration

Assignment of storm suration for Hazus Analysis

Short, Long

Wave Velocity

Definition of wave velocity in ft/s for Hazus Analysis

Floating Point Number

-
-
-

Phase II: Footprint Selection

-

Inventory development initiated with the Footprint Data generated by the New Jersey Department of -Environmental Protection (NJDEP). These NJDEP footprints include flood-exposed properties cataloged -in two geodatabases encompassing approximately 453,000 footprints across the entire state:

-

1. BF_NJDEP_20190612: all building footprints within 1% annual chance (AC) floodplain, as defined by FEMA Flood -Insurance Rate Maps (FIRMs).

-

2. 02pct_20190520 Building_Footprints_02pct: buildings that are not in the first dataset but fall within a -200-ft buffer of the 1% AC floodplain boundary.

-

These databases were then combined, with only properties within the limits of Atlantic County retained to form -the Flood-Exposed Inventory. This inventory was then extended to include other footprints within the county -boundaries. Microsoft (MS) Footprint Database was utilized as the primary source of Non-NJDEP footprint polygons. -One observed shortcoming of the MS Footprint Database is it incorrectly lumps together the footprints of closely -spaced buildings. This issue was resolved by a combination of manual inspections and applying a separate roof -segmentation algorithm to the satellite images obtained for the buildings. This resulted in the -Atlantic County Inventory.

-
-
-

Phase III: Augmentation Using Third-Party Data

-

Attributes were then parsed from third-party data providers to populate all required attributes in the Building -Inventory data model. For the Flood-Exposed Inventory, NJDEP had already enriched these footprints with various -attributes necessary to conduct standard FEMA risk assessments. Specifically, all footprints included a set of -Basic Attributes (tab-basicAttri). A subset of the data, including Atlantic County, had additional Advanced -Attributes required by HAZUS User Defined Facilities (UDF) Module (tab-udfAttri) and FEMA Substantial Damage -Estimator (SDE) Tool (tab-sdeAttri).

- - ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NJDEP basic attributes available for all properties in Flood-Exposed Inventory.

Field

Description

BldgUniqueID

Building unique ID. The first four characters will be followed by a 9-digit zero-padded number.

ParcelID

ParcelID from MOD-IV.

LAG

Lowest Adjacent Grade.

HAG

Highest Adjacent Grade.

AreaSqFt

Area square feet.

PamsPIN

MunicipalityCode_Block_Lot_Qual.

CentroidX

X coordinate in State Plane Feet.

CentroidY

Y coordinate in State Plane Feet.

DemoYear

Year demolished.

BldgNum

Unique ID for multiple structures in one lot (PAMS_PIN).

BldgType

Tag with domain name (i.e., Apartment, Condo).

Elevation

Numeric value.

ElevUnits

Units of elevation (i.e., feet).

County

County name

- - ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Advanced attributes for HAZUS User Defined Facilities (UDF), available for all properties in Flood-Exposed Inventory.

Field

Description

BldgUniqueID

Building unique ID. The first four characters will be followed by a 9-digit zero-padded number.

Name

Typically assessor attribute for owner.

Address

Typically assessor field for property location.

City

Typically assessor field for property location city.

State

Typically assessor field for property location - state abbreviation.

ZipCode

Typically assessor field for property location Zip Code.

Contact

Typically assessor attribute for owner.

Tract

Value for Census Tract or an area roughly equal to a neighborhood established by the Census Bureau.

PhoneNumber

Typically assessor attribute for owner.

OccupancyClass

Residential, Commercial, Industrial, Agriculture, Government, Education, and Religious/Non-Profit.

BuildingType

Core construction material type; Wood, Concrete, Steel, Masonry, Manufactured Housing.

Cost

Replacement value; assessor data does not often include replacement cost. It is usually derived by considering heated or livable space and multiplied by cost per square foot.

YearBuilt

Typically assessor attribute.

Area

Heated or livable space. May or may not exist in typically assessor attributes. Can potentially be derived from building footprints.

NumberofStories

Typically assessor attribute. Indicates number of stories.

DesignLevel

Must have the year built to establish; see Hazus Flood Model User Manual, Table 6.2.

FoundationType

Flood model needs to distinguish which of seven types.

FirstFloorHt

Flood model needs height (in feet) above grade. Can be based on default values assigned to foundation types or other preferred methods.

ContentCost

Can be calculated from formula to be applied to final cost per Hazus Flood Model User Manual.

BldgDmgFnID

The damage function ID from Hazus would be entered in this field if anything other than the default was to be used. The damage function is based on the building characteristics defined in the items above.

ContDmgFnID

The damage function ID from Hazus would be entered in this field if anything other than the default was to be used. The damage function is based on the building characteristics defined in the items above.

InvDmgFnID

The damage function ID from Hazus would be entered in this field if anything other than the default was to be used. The damage function is based on the building characteristics defined in the items above.

FloodProtection

Does protection exist, and if yes to what frequency? (e.g., 100-year).

ShelterCapacity

Number of persons that can be sheltered.

BackupPower

Does backup power exist? [yes (1) or no (0)]

Latitude

Latitude of the Building Centroid (inside polygon).

Longitude

Longitude of the Building Centroid (inside polygon).

Comment

As needed.

InventoryCost

Can be calculated from formula to be applied to final cost per Hazus Flood Model User Manual.

RiverineCoastal

Can be used to identify if building is in riverine or coastal areas. Can be used to help designate the Damage Function IDs.

HzSourceCit

Source Citation details.

- - ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Advanced attributes for FEMA Substantial Damage Estimator (SDE) Tool, available for all properties in Flood-Exposed Inventory.

Field

Description

BldgUniqueID

Building unique ID. The first four characters will be followed by a 9-digit zero-padded number.

StructureType

Residential or Non-Residential.

ResidenceType

Residential Type Only: Single Family Residence, Town or Row House, Manufactured House.

StructureUse

Non-Residential Type Only: Apartments, Commercial Retail, Mini-Warehouse, etc.

FoundationType

Residential Type Only: Select from domain.

SuperStructure

Residential Type Only: Select from domain.

ExteriorFinish

Residential Type Only: Select from domain.

ElevationLowestFloor

Typically assessor attribute.

NFIPCommunityID

Typically assessor attribute.

NFIPCommunityName

Typically assessor attribute.

YearConstruction

Typically assessor attribute.

Story

Select from domain.

RoofCovering

Select from domain.

HVACSystem

Select from domain.

Quality

Select from domain.

SDESourceCit

Source citation details.

FloodZone

From FIRM.

FIRMPanelID

FIRM Panel number from S_FIRM_PAN

-

For the Atlantic County Inventory, any buildings not included in the NJDEP footprints had attributes encompassed -by NJDEP Basic, UDF or SDE fields assigned by parsing New Jersey Tax Assessor Data (called MODIV) ([MODIV]) as defined in -the MODIV User Manual ([MODIV18]). This notably affected attributes such as OccupancyClass, BuildingType and FoundationType, -whose rulesets (PDFs and Python scripts) are cross-referenced in addinfo_ruleset_njdep. -In all cases where attributes were derived from MODIV data, whose fields can be sparsely populated, default -values were initially assigned to ensure that every footprint would have the attributes required to execute -the workflow. These default values were selected using engineering judgement to represent the most common/likely -attribute expected or conservatively from the perspective of anticipated losses (i.e., picking the more -vulnerable attribute option). These initial assignments were then updated if additional data is available in -MODIV to make a more faithful attribute assignment.

- - ----- - - - - - - - - - - - - - - - - - - - - -
Additional details for rulesets assigning attributes available only in NJDEP dataset

Ruleset Name

Ruleset Definition Table

Python script

Building Type Rulesets

Building Type Rulesets.pdf

BuildingTypeRulesets

Foundation Type Rulesets

Foundation Type Rulesets.pdf

FoundationTypeRulesets

Occupancy Type Rulesets

Occupancy Type Rulesets.pdf

OccupancyTypeRulesets

-

Some attributes in the Building Inventory Data Model were not encompassed by NJDEP Basic, UDF or SDE fields, thus -remaining attributes in both the Flood-Exposed and Atlantic County Inventories were assigned using data -from the following third-party sources: -1. Locations of essential facilities were sourced from NJ Office of Information Technology (part of NJGIN Open Data [NJGIN20]) -2. ATC Hazards by Location API ([ATC20]) was used to query Design Wind Speeds as defined in ASCE 7 -3. Terrain features (roughness length associated with different exposure classes) was derived from Land Use Land Cover data (part of NJGIN Open Data [NJGIN20])

-

See the Transformation and Detail columns in the PDFs listed in tab-bldgInventory for specifics of how each attribute -was assigned using these various third-party data sources.

-
-
-

Phase IV: Augmentation Using Computer Vision Methods

-

A number of required attributes pertaining to externally-visible features of the building were either not -included in the NJDEP footprints or MODIV data or were included but warranted cross validation. -The methodology used for each of these attributes is now described.

-
    -
  1. -
    Number of Stories: While this attribute was available only for the buildings included in the NJDEP inventory,

    this attribute was sparsely reported in the MOD IV database. Even for the NJDEP inventory, -non-integer values were often reported, creating incompatibilities with the integer -defaults used in Hazus. Thus image-based floor detections were used to estimate this -attribute for the larger Flood-Exposed Inventory, and as a means to cross-validate -values reported in NJDEP and MOD IV for consistency with Hazus conventions.

    -

    An object object detection model that can automatically detect rows of building windows was -established to generate the image-based detections from street-level. The model was trained on the -EfficientDet-D7 architecture with a dataset of 60,000 images, using 80% for training, 15% -for validation, and 5% testing of the model. In order to ensure faster model convergence, -initial weights of the model were set to model weights of the (pretrained) object detection -model that, at the time, achieved state-of-the-art performance on the 2017 COCO Detection set. -For this specific implementation, the peak model performance was achieved using the Adam optimizer -at a learning rate of 0.0001 (batch size: 2), after 50 epochs. num_stories_detection shows examples of the -floor detections performed by the model.

    -
    -../../../_images/number_of_stories_detection.png -

    Sample floor detections of the floor detection model (each detection is indicated by a green bounding box). The percentage value shown on the top right corner of a bounding box indicates model confidence level associated with that prediction.

    -
    -

    For an image, the described floor detection model generates the bounding box output for its -detections and calculates the confidence level associated with each detection. A post-processor -that converts stacks of neighboring bounding boxes into floor counts was developed to convert -this output into floor counts. Recognizing an image may contain multiple buildings at a time, -this post-processor was designed to perform counts at the individual building-level.

    -

    For a random building image dataset, where images were captured using arbitrary camera -orientations (also termed “in-the-wild” images), the developed floor detection model -was determined to identify the number of stories with an accuracy of 86%. -:numref:`num_story_confusion`(a) provides a breakdown of this accuracy measure for different -prediction classes (i.e., the confusion matrix of model classifications). -It was also observed that if the image dataset is established such that building -images are captured with minimal obstructions, the building is at the center of the -image, and perspective distortions are limited (termed “cleaned” data), the model -identified the number of stories at an accuracy level of 94.7%. -:numref:`num_story_confusion`(b) shows the confusion matrix for the model predicting on the -“cleaned” image data. In quantifying both accuracy levels, a test set of 3,000 images -randomly selected across all New Jersey counties, excluding Atlantic County, was utilized.

    -
    -../../../_images/num_story_confusion.png -

    Confusion matrices for the number of stories predictor. The maxtrix one the left shows -the model’s prediction accuracy when tested on “in-the-wild” images. The matrix on the -right depicts the model accuracy on the “cleaned” imagery.

    -
    -
    -
    -
  2. -
  3. -
    Building Elevations: Building elevations are not available in state inventory data and required for both

    wind and flood loss modeling, with the exception of first floor height estimates provided -in the NJDEP inventory. Hence, the elevation of the bottom plane of the roof (lowest edge -of roof line), elevation of the roof (peak of gable or apex of hip), and height of first of -floor as determined from base of door’s height, all defined with respect to grade (in feet), -were estimated from street-level imagery. These geometric properties are defined visually -for common residential coastal typologies in building_elevation. The mean height of the roof system -is then derived from the aforementioned roof elevations.

    -
    -../../../_images/building_elevation.png -

    Schematics demonstrating elevation quantities for different foundation systems common in coastal areas.

    -
    -

    As in any single-image metrology application, extracting the building elevations require: -1. Rectification of image perspective distortions, typically introduced during image capture, -2. Determining the pixel count representing the distance between ends of the objects or surface of interest -1. (e.g., for first-floor height, the orthogonal distance between the ground and first-floor levels) -3. Converting these pixel counts to real-world dimensions by matching a reference measurement with the corresponding pixel count

    -

    Given that the number of street-level images available for a building can be limited -and sparsely spaced, this single image rectification approach was deemed most applicable for -regional-scale inventory development. The first step in image rectification requires -detecting line segments on the front face of the building. This is performed by using -the L-CNN end-to-end wireframe parsing method. Once the segments are detected, vertical -and horizontal lines on the front face of the building are automatically detected using -RANSAC line fitting based on the assumptions that line segments on this face are the -predominant source of line segments in the image and the orientation of these line -segments change linearly with their horizontal or vertical position depending on their -predominant orientation. Invoking the Manhattan World assumption (i.e., all surfaces in -the world are aligned with two horizontal and one vertical dominant directions), we -iteratively transform the image such that horizontal edges on the facade plain lie -parallel to each other, and its vertical edges are orthogonal to the horizontal edges.

    -

    In order to automate the process of obtaining the pixel counts for the ground elevations, a -face segmentation model was trained to auotmatically label ground, facade, door, windwos and roof -pixels in an image. The segmentation model was trained using DeepLabV3 architecture on a ResNet-101 -backbone, pretrained on PASCAL VOC 2012 segmentation dataset, using a facade segmentation dataset of -30,000 images. The peak model performance was attained using the Adam optimizer at a learning rate of -0.001 (batch size: 4), after 40 epochs. The conversion between pixel dimensions and real-world -dimensions were attained by use of edge detections -performed on satellite images.

    -

    The conversion between pixel dimensions and real-world dimensions were attained by use of -edge detections performed on satellite images.

    -
    -
    -
  4. -
  5. -
    Roof Geometry: Roof shape and slope are not available in state inventory data and required for wind loss
    -

    modeling. The SimCenter developed application Building Recognition using Artificial -Intelligence at Large Scales, BRAILS ([Wang19]), is used to interpret satellite images -of building roofs, which are collected from Google Maps. The satellite images are labeled -with shape types to form a dataset, upon which a Convolutional Neural Network (CNN) is -trained so that it can give rapid predictions of roof types when given new images of roofs. -The footprint centroid (Latitude and Longitude in Building Inventory) is used as the -location index when downloading images -automatically from Google Maps. While more complex roof shapes could in theory be classified, -the current use of HAZUS damage and loss functions required the use of similitude measures -to define each roof as an “effective” gable, hip or flat geometry (roof_shape). Using BRAILS, this -classification was achieved with approximately 90.3% accuracy based on validation studies. -The detailed validation process can be found in -BRAILS online documentation.

    -
    -../../../_images/roof_shape.png -

    Roof type classification by BRAILS ([Wang19]).

    -
    -
    -

    Roof slope is calculated as the ratio between the roof height and half the depth of the -building, i.e., length of the building orthogonal to the roadline in front of the building. -Roof height is calculated by determining the difference between the bottom plane and apex -elevations of the roof as defined in the Building Elevations section. Plan dimensions of -the building, as determined by the dimensions of the footprint, are determined by first -obtaining the camera location of the street-level -image to determine road-parallel and road-perpendicular dimensions of the building footprint, -then setting the average of the road-perpendicular dimensions as the building depth. This -is deemed a more accurate way of establishing the plan geometry than using the footprints -themselves.

    -
    -
    -
  6. -
  7. -
    Window Area: The proportion of windows to the overall surface area is not available in inventory and

    assessor datasets though required for wind loss modeling. Generally, window area can be -assumed based on the building occupancy class given Department of Energy industry databases. -This property can also be estimated from street-level imagery, by taking advantage of the -window masks generated as part of the segmentation performed when determining building -elevations. For this application, window area is defined as a percentage of the total -facade area as the ratio of the area of windows masks to the area of the front facade -of the building. The underlying assumption is that the proportion of surface area occupied -by windows at the front of the building is representative of the amount of window openings -on the sides and rear of the building. This enables the ratio calculated for the front -face of the building to be used for the whole building. This assumption may hold for single -family residential buildings, but possibly not for other commercial construction where -street fronts have higher proportions of glass. In lieu of this computer vision approach, -users may choose to adopt industry norms for their window areas (see callout box below).

    -
    -

    Note

    -

    Industry Norms on Window Area: Engineered residential buildings can be assumed to have low window to wall -area ratios (WWR) based on the information for Reference Buildings in Baltimore, MD from the -Office of Energy Efficiency and Renewable Energy. Reference Buildings were created for select cities -based on climate profile; of the available cities, Baltimore is selected since its climate is most -similar to Atlantic City, NJ. Office buildings (used as a test case for commercial), have WWR of -33% and apartments (used as a test case for residential) have WWR of 15%.

    -
    -
    -
    -
  8. -
-
-

Note

-

The process of constructing the Atlantic County Inventory for footprints beyond those in the -Flood-Exposed Inventory underscored a number of tasks/issues that are commonly encountered when constructing an inventory -in a location with sparse inventory data. Recommended best practices are summarized in Best Practices.

-
-
-
-

Populated Inventories

-

Executing this four-phase process resulted in the assignment of all required attributes at the asset description -stage of the workflow for both the Atlantic County Inventory and the Flood-Exposed Inventory. -bldg_inv_ac and bldg_inv_fei provide respective examples of each of these inventories. -The Flood-Exposed Inventory then was used to extract out the subset of buildings defining the -Exploration Inventory (see example in bldg_inv_ei). The full inventories can be downloaded -here.

- - ------------------------------------------------ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Illustrative sample of building in Flood-Exposed Inventory.

BldgID

Address

City

State

Latitude

Longitude

OccupancyClass

BuildingType

UseCode

BldgClass

DesignLevel

YearBuiltNJDEP

YearBuiltMODIV

NumberofStories0

NumberofStories1

NoUnits

PlanArea0

PlanArea1

FoundationType

SplitLevel

ElevationR0

ElevationR1

FirstFloorHt0

FirstFloorHt1

FloodZone

DSWI

DSWII

DSWIII

DSWIV

WindZone

AvgJanTemp

RoofShape

RoofSlope

RoofCover

RoofSystem

MeanRoofHt

WindowArea

Garage

HazusClassW

HazusClassIN

HazusClassWA

AnalysisDefault

AnalysisAdopted

Modifications

z0

1

NJBF000081138

14 W LEE AVE

Absecon

NJ

39.41770296

-74.50360821

RES1

3001

17

NE

1956

1956

3101

2

1

1310.670302

1310.670302

3505

NO

19.64

33.89

3

-2.97

6112

112.44902

122.279935

131.916872

138.112949

I

Above

Gable

0

5701

26.76835396

0

0

1

1

0.35

2

NJBF000080830

28 W SUMMIT AVE

Absecon

NJ

39.41651021

-74.5040753

RES1

3001

17

NE

1948

1948

3101

2

1

1061.415481

1061.415481

3505

NO

33.52

47.46

3

6.72

6112

112.447756

122.28405

131.921695

138.122775

I

Above

Gable

0

5701

40.49340431

0

0

1

1

0.35

3

NJBF000083830

6353 MONMOUTH DRIVE

Hamilton

NJ

39.45048978

-74.75018492

RES1

3001

17

NE

1954

1954

3101

1

1

1047.333566

1047.333566

3507

NO

18.92

31.75

1

2.02

6112

108.85847

118.403195

128.083472

132.640181

I

Above

Gable

0

5701

25.33482164

0

0

1

1

0.35

4

NJBF000087414

2004 SYCAMORE LANE

Hamilton

NJ

39.53318557

-74.79076398

RES1

3001

17

NE

1977

1977

3102

2

1

1234.317665

1234.317665

3507

NO

31.43

43.06

1

1.96

6112

108.322128

117.335658

127.044237

130.766349

I

Above

Hip

0

5701

37.24709902

0

1.1

1

1

0.35

5

NJBF000083883

35 PENNINGTON AVENUE

Hamilton

NJ

39.45108384

-74.72759818

RES1

3001

17

NE

1924

1924

3103

2

1

936.4560766

936.4560766

3505

NO

34.55

47.39

3

6.76

6112

109.034823

118.647832

128.31928

133.072236

I

Above

Gable

0

5701

40.96825807

0

0

1

1

0.35

6

NJBF000072831

135 GARNETT LANE

Egg Harbor

NJ

39.37511675

-74.58604463

RES1

3001

16

NE

2005

2005

3102

2

1

2579.278413

2579.278413

3507

NO

29

37.43

1

2.6

6112

110.96108

121.28815

130.953681

137.12639

I

Above

Gable

0

5701

33.21916734

0

0

1

1

0.35

7

NJBF000072900

122 GARNETT LANE

Egg Harbor

NJ

39.37554697

-74.58580994

RES1

3001

16

NE

2005

2005

3102

2

1

2441.260454

2441.260454

3507

NO

27.38

33.19

1

0.27

6112

110.962265

121.287807

130.952318

137.124636

I

Above

Hip

0

5701

30.28394272

0

0

1

1

0.35

8

NJBF000079059

332 MONTCLAIR DR

Pleasantville

NJ

39.40925267

-74.50079286

RES3C

3001

16

E

1954

1954

3303

1

1

1601.592704

1601.592704

3507

NO

16.67

24.08

1

0.87

6112

112.572563

122.417384

132.068809

138.300759

I

Above

Gable

0

20.37804612

0

1.1

1

1

0.35

9

NJBF000076320

128 N FRANKLIN BLVD

Pleasantville

NJ

39.39295964

-74.51789825

RES1

3001

15

NE

1943

1943

3101

2

1

1062.463152

1062.463152

3505

NO

32.89

42.43

3

8.08

6112

112.334907

122.284643

131.934622

138.228883

I

Above

Hip

0

5701

37.66345925

0

0

1

1

0.35

10

NJBF000084559

1400 ROUTE 50

Hamilton

NJ

39.46562584

-74.71979952

GOV2

3001

E

1966

1966

3401

1

1

6491.408389

6491.408389

3507

NO

19.76

31.97

1

2.77

6112

109.068201

118.621733

128.280818

133.010955

I

Above

Gable

0

5701

25.86659037

0

0

1

1

1

11

NJBF000094986

623 FAIRVIEW AVE

Hammonton

NJ

39.64751059

-74.8025099

RES1

3001

17

NE

1924

1924

3102

2

1

979.7912334

979.7912334

3507

NO

37.66

46.56

1

1.57

6112

107.929492

116.27078

126.138992

129.351482

I

Above

Gable

0

5701

42.10695602

0

1.1

1

1

0.35

12

NJBF000094295

630 E PLEASANT ST

Hammonton

NJ

39.64435389

-74.79709601

RES1

3001

17

NE

2001

2001

3102

2

1

2095.373189

2095.373189

3507

NO

41.59

47.99

1

2.71

6112

107.983086

116.340748

126.20475

129.45065

I

Above

Gable

0

5701

44.79025314

0

1.2

1

1

0.35

13

NJBF000094338

535 PRATT ST

Hammonton

NJ

39.64459394

-74.80298759

RES1

3001

17

NE

1986

1986

3102

1

1

3461.94384

3461.94384

3507

NO

16.58

27.48

1

1.17

6112

107.934005

116.292861

126.15479

129.375712

I

Above

Gable

0

5701

22.02841564

0

1.2

1

1

0.35

14

NJBF000083250

1111 SHELBURNE AVE

Galloway

NJ

39.44029794

-74.51607199

RES1

3001

17

NE

1967

1967

3102

1

1

1857.852223

1857.852223

3505

NO

21.19

28.16

3

8.58

6112

112.051064

121.829059

131.421027

137.513847

I

Above

Gable

0

5701

24.67352854

0

1.1

1

1

0.35

15

NJBF000094422

416 4TH ST

Hammonton

NJ

39.64498249

-74.80170663

RES1

3001

17

NE

1960

1960

3102

2

1

2882.304428

2882.304428

3507

NO

21.75

29

1

0.35

6112

107.943361

116.299325

126.162637

129.387355

I

Above

Gable

0

5701

25.37593068

0

0

1

1

0.35

16

NJBF000083234

345 E WHITE HORSE PIKE

Galloway

NJ

39.44002337

-74.51922424

RES4

3001

218

ME

1959

1959

3401

1

1

709.2436621

709.2436621

3507

NO

11.13

25.55

1

0.61

6112

111.989561

121.777489

131.364497

137.455973

I

Above

Flat

0

18.34300615

0

0

1

1

1

17

NJBF000090775

1503 MAYS LANDING RD

Folsom

NJ

39.59309484

-74.83816694

RES1

3001

16

NE

1992

1992

3101

2

1

2031.402613

2031.402613

3505

NO

37.37

44.09

3

5.3

6112

107.798676

116.447163

126.21276

129.438485

I

Above

Gable

0

5701

40.73106045

0

1.2

1

1

0.35

18

NJBF000084955

6924 LANDIS AVENUE

Hamilton

NJ

39.47164001

-74.84228536

RES1

3001

17

NE

1926

1926

3102

2

1

1366.916509

1366.916509

3507

NO

34.65

46.58

1

1.26

6112

108.129452

117.335431

127.017571

130.681582

I

Above

Gable

0

5701

40.61579118

0

0

1

1

0.15

19

NJBF000078030

117 MAIN AVENUE

Egg Harbor

NJ

39.40244716

-74.59340885

RES1

3001

16

NE

1960

1960

3102

1

1

2445.97018

2445.97018

3507

NO

18.34

28.4

1

-0.36

6112

110.651641

120.900169

130.500518

136.549278

I

Above

Flat

0

5701

23.36929958

0

1.2

1

1

0.15

20

NJBF000088836

102 UNEXPECTED ROAD

Buena Vista

NJ

39.56085682

-74.92888736

RES1

3001

16

NE

1940

1940

3101

1

2

1581.6

1581.6

3507

NO

13.79

23.03

1

-0.5

6112

107.265228

115.99212

125.707241

128.654877

I

Above

Gable

0

5701

18.41008444

0

0

1

1

0.35

21

NJBF000088660

1401 DARMSTADT AVENUE

Mullica

NJ

39.55785517

-74.6481255

RES1

3001

16

NE

1850

1850

3102

2

1

823.9203862

823.9203862

3507

NO

32.61

42.39

1

-0.3

6112

109.67372

118.659716

128.322011

133.037936

I

Above

Flat

0

5701

37.50445848

0

0

1

1

0.35

22

NJBF000087566

630 LIVERPOOL AVE

Egg Harbor City

NJ

39.5364916

-74.63984362

RES1

3001

16

NE

1925

1925

3101

1

1

707.4272975

707.4272975

3505

NO

19.25

30.7

3

1.98

6112

109.818368

118.977702

128.603909

133.523523

I

Above

Gable

0

5701

24.97256963

0

0

1

1

0.35

23

NJBF000087401

624 ST LOUIS AVE

Egg Harbor City

NJ

39.53290603

-74.63472322

RES1

3001

16

NE

1940

1940

3101

1

1

1440.918422

1440.918422

3505

NO

15.49

24.07

3

4.03

6112

109.889109

119.079867

128.697459

133.679332

I

Above

Gable

0

5701

19.78210765

0

0

1

1

0.35

24

NJBF000087587

658 LIVERPOOL AVE

Egg Harbor City

NJ

39.53710494

-74.63912838

RES1

3001

16

NE

1979

1979

3101

1

1

696.7252736

696.7252736

3505

NO

12.79

27.25

3

0.15

6112

109.826073

118.980923

128.607376

133.528286

I

Above

Gable

0

5701

20.02320097

0

0

1

1

0.35

25

NJBF000087378

618 ST LOUIS AVE

Egg Harbor City

NJ

39.53256438

-74.63481231

RES1

3001

16

NE

1940

1955

3101

2

1

553.7117992

553.7117992

3505

YES

22.68

29.42

3

0.42

6112

109.888628

119.082075

128.699296

133.6828

I

Above

Gable

0

5701

26.04816128

0

1.1

1

1

0.35

26

NJBF000097794

223 OAK RD

Hammonton

NJ

39.66656114

-74.80423137

RES1

3001

17

NE

1920

1920

3102

2

1

1663.096661

1663.096661

3505

NO

42.66

56.93

3

4.56

6112

107.859038

116.087914

125.997499

129.139301

I

Above

Gable

0

5701

49.79253203

0

0

1

1

0.15

27

NJBF000084098

6236 ESTELLE AVENUE

Hamilton

NJ

39.45487155

-74.8439241

RES1

3001

17

NE

1980

1980

3102

1

1

1098.129559

1098.129559

3505

NO

17.21

24.87

3

-1.79

6112

108.184264

117.446977

127.123776

130.869911

I

Above

Gable

0

5701

21.03785179

0

1.1

1

1

0.35

28

NJBF000081299

958 GRAND AVE

Hamilton

NJ

39.41855289

-74.64675496

RES1

3001

17

NE

1979

1979

3102

2

1

1659.957762

1659.957762

3507

NO

36.27

49.77

1

1.75

6112

109.835871

119.933452

129.565628

135.198279

I

Above

Gable

0

5701

43.02258166

0

1.2

1

1

0.35

29

NJBF000051934

102 CARL ROAD

Corbin City

NJ

39.29979524

-74.75863948

RES1

3001

17

NE

1962

1995

3102

2

1

1074.173298

1074.173298

3507

NO

38.46

45.53

1

1.7

6112

109.964489

119.704786

129.288628

134.69391

I

Above

Flat

0

5701

41.99266435

0

0

1

1

0.03

30

NJBF000085603

3701 OAK ROAD

Buena Vista

NJ

39.49578346

-74.93178867

COM1

3001

ME

1969

0

3401

1

1

1435.642906

1435.642906

3507

NO

18.88

30.23

1

-0.36

6112

107.466678

116.408197

126.090064

129.170937

I

Above

Flat

0

24.55176238

0

0

1

1

0.15

31

NJBF000092355

4557 PLEASANT MILLS ROAD

Mullica

NJ

39.62687073

-74.65653012

RES1

3001

16

NE

1966

1966

3102

1

1

669.4393274

669.4393274

3507

NO

13.86

28.62

1

0.51

6112

109.386545

117.837938

127.637253

131.842371

I

Above

Gable

0

5701

21.24254656

0

1.2

1

1

0.35

32

NJBF000085695

Hamilton

NJ

39.50078689

-74.69184811

RES1

3001

NE

1969

0

3102

2

1

990.468681

990.468681

3504

NO

24.02

31.36

-4

0

6112

109.279385

118.658502

128.295837

133.039632

I

Above

Gable

0

5701

27.69006206

0

0

1

1

0.35

33

NJBF000085268

6057 BLACK HORSE PIKE

Hamilton

NJ

39.47899714

-74.71640726

COM8

3001

740

16

ME

1962

1962

3401

1

1

1886.686507

1886.686507

3507

NO

17.53

26.91

1

0.95

6112

109.073583

118.55273

128.206436

132.880755

I

Above

Flat

0

22.22012428

0

0

1

1

1

34

NJBF000072995

100 BURNSIDE DRIVE

Egg Harbor

NJ

39.3763222

-74.58891847

RES1

3001

16

NE

2003

2003

3102

1

1

2682.948311

2682.948311

3507

NO

17.92

31.9

1

-0.04

6112

110.88378

121.227124

130.892764

137.048315

I

Above

Gable

0

5701

24.90623691

0

0

1

1

0.35

35

NJBF000085646

101 VERA KING FARRIS DR

Galloway

NJ

39.49795458

-74.52913098

EDU2

3003

E

1969

0

3401

2

1

7126.090017

7126.090017

3507

NO

37.37

49.73

1

1.48

6112

111.554635

121.004894

130.569199

136.352411

I

Above

Gable

0

43.54891133

0

0

1

1

1

36

NJBF000085643

STOCKTON STATE COLLEGE

Galloway

NJ

39.49792365

-74.52988364

EDU2

3003

E

1969

0

3401

3

1

7116.180782

7116.180782

3507

NO

44.46

58.76

1

0.91

6112

111.54178

120.99287

130.556608

136.337685

I

Above

Flat

0

51.60794904

0

0

1

1

1

37

NJBF000085550

Buena Vista

NJ

39.49318849

-74.94886879

IND3

3002

E

1969

0

3401

3

1

5644.39303

5644.39303

3507

NO

40.32

53.13

1

2.31

6112

107.373291

116.292209

125.971324

128.995288

I

Above

Hip

0

46.72816966

0

0

1

1

0.15

38

NJBF000081164

11 ESTELLE AVENUE

Weymouth

NJ

39.41783591

-74.82523931

RES1

3001

16

NE

1982

1982

3102

2

1

1601.989409

1601.989409

3504

NO

26.32

32.71

-4

0

6112

108.478353

117.906671

127.578843

131.686804

I

Above

Flat

0

5701

29.5177291

0

0

1

1

0.35

39

NJBF000090505

2559 WEEKSTOWN ROAD

Mullica

NJ

39.58687098

-74.60991103

RES1

3001

16

NE

1976

1976

3101

2

1

2338.407852

2338.407852

3505

NO

34.64

49.46

3

7.02

6112

110.070102

118.837885

128.517052

133.338803

I

Above

Gable

0

5701

42.05448962

0

0

1

1

0.35

40

NJBF000078796

136 W THOMPSON AVE

Pleasantville

NJ

39.40761185

-74.51272043

RES1

3001

14

NE

1925

1925

3101

1

1

1531.106339

1531.106339

3505

NO

14.59

21.25

3

-2.25

6112

112.32906

122.22382

131.860155

138.096257

I

Above

Gable

0

5701

17.9205783

0

0

1

1

0.35

41

NJBF000078758

135 W THOMPSON AVE

Pleasantville

NJ

39.40735685

-74.51301697

RES1

3001

16

NE

1989

1989

3101

1

1

1621.274023

1621.274023

3505

NO

18.4

31.43

3

6.67

6112

112.324597

122.221233

131.857506

138.094529

I

Above

Gable

0

5701

24.91366635

0

0

1

1

0.35

42

NJBF000092695

700 N 2ND RD

Hammonton

NJ

39.63237177

-74.83714513

RES1

3001

17

NE

2000

2000

3102

2

1

833.1805842

833.1805842

3505

NO

19.36

24.71

3

-2.95

6112

107.698795

116.140398

125.961668

129.086542

I

Above

Gable

0

5701

22.03735214

0

1.2

1

1

0.15

43

NJBF000092701

801 14TH ST

Hammonton

NJ

39.6324373

-74.83465715

RES1

3001

17

NE

1997

1997

3102

1

1

1716.15608

1716.15608

3505

NO

21.97

29.02

3

6.64

6112

107.717668

116.158109

125.980917

129.115112

I

Above

Gable

0

5701

25.49601448

0

1.2

1

1

0.15

44

NJBF000092888

3347 MOORES AVENUE

Mullica

NJ

39.63472865

-74.71492095

RES1

3001

16

NE

1972

1972

3102

1

1

735.534263

735.534263

3505

NO

19.6

29.51

3

6.71

6112

108.750995

117.148515

126.996624

130.719761

I

Above

Flat

0

5701

24.55635352

0

0

1

1

0.35

45

NJBF000088093

1201 HEIDELBERG AVENUE

Mullica

NJ

39.54847268

-74.64734046

RES1

3005

610

NE

1969

0

3101

1

1

1365.606509

1365.606509

3507

NO

17.8

23.93

1

-0.04

6112

109.703178

118.763425

128.411583

133.194919

I

Above

Gable

0

5701

20.86560282

0

0

1

1

0.35

46

NJBF000083113

271 CLARKSTOWN ROAD

Hamilton

NJ

39.43716937

-74.71503912

RES1

3001

16

NE

1949

1949

3102

2

1

1192.775102

1192.775102

3507

NO

40.32

52.68

1

2.72

6112

109.17295

118.901148

128.577915

133.527813

I

Above

Gable

0

5701

46.49823742

0

0

1

1

0.35

47

NJBF000092567

499 S EGG HARBOR RD

Hammonton

NJ

39.63031087

-74.79268419

RES1

3001

NE

1957

1957

3102

2

1

1563.838243

1563.838243

3504

NO

28.21

40.55

-4

0

6112

108.059464

116.500438

126.337764

129.657249

I

Above

Gable

0

5701

34.37750129

0

0

1

1

1

48

NJBF000087038

7316 SMITH AVENUE

Hamilton

NJ

39.52426565

-74.83299507

RES1

3001

17

NE

1999

1999

3101

2

1

1777.933531

1777.933531

3505

NO

29.28

38.75

3

7.84

6112

108.024419

117.021745

126.727199

130.149694

I

Above

Gable

0

5701

34.0130892

0

0

1

1

0.35

49

NJBF000090784

5617 PLEASANT MILLS ROAD

Mullica

NJ

39.59335585

-74.61033955

RES1

3001

16

NE

1956

1956

3101

1

1

630.2381368

630.2381368

3505

NO

21.45

31.68

3

5.87

6112

110.043995

118.760161

128.451036

133.230234

I

Above

Flat

0

5701

26.56264486

0

0

1

1

0.15

50

NJBF000096931

263 BASIN RD

Hammonton

NJ

39.66090846

-74.78573505

AGR1

3001

17

NE

1900

1900

3401

2

1

1423.4124

1423.4124

3507

NO

40.04

53.46

1

1.97

6112

108.029021

116.279525

126.185354

129.413455

I

Above

Flat

0

5701

46.75021639

0

0

1

1

0.15

51

NJBF000086175

157 WHEAT ROAD

Buena

NJ

39.51156129

-74.93726101

RES1

3001

16

NE

1977

1977

3102

2

1

1365.3908

1365.3908

3505

NO

35.6

48.15

3

4.78

6112

107.375817

116.25851

125.947663

128.96846

I

Above

Gable

0

5701

41.87395742

0

0

1

1

0.15

52

NJBF000093477

Hammonton

NJ

39.63939751

-74.7408069

RES1

3001

NE

1969

0

3102

2

1

2123.794725

2123.794725

3504

NO

38.1

47.12

-4

0

6112

108.490194

116.860459

126.72388

130.261894

I

Above

Hip

0

5701

42.60824093

0

0

1

1

0.15

53

NJBF000092875

540 PLEASANT MILLS RD

Hammonton

NJ

39.63454872

-74.7471618

RES1

3001

15

NE

1960

1960

3102

1

1

1346.55398

1346.55398

3504

NO

15

25.4

-4

0

6112

108.445706

116.849884

126.702477

130.232623

I

Above

Gable

0

5701

20.19746706

0

0

1

1

1

54

NJBF000077807

105 CHATHAM AVE

Pleasantville

NJ

39.40096029

-74.51068657

RES1

3001

16

NE

1950

1950

3101

1

1

2003.098247

2003.098247

3505

NO

19.52

31.26

3

2.04

6112

112.425406

122.328562

131.976492

138.241762

I

Above

Gable

0

5701

25.38854454

0

0

1

1

0.35

55

NJBF000077794

107 CHATHAM AVE

Pleasantville

NJ

39.40091217

-74.51049178

RES1

3001

16

NE

1950

1950

3101

1

1

1087.240365

1087.240365

3505

NO

17.24

31.45

3

5.48

6112

112.430042

122.332502

131.980749

138.246312

I

Above

Gable

0

5701

24.34181906

0

0

1

1

0.35

56

NJBF000077060

400 N FRANKLIN BLVD

Pleasantville

NJ

39.39622481

-74.51523307

RES1

3001

15

NE

1920

1920

3101

2

1

2188.73966

2188.73966

3505

NO

28.99

40.46

3

6

6112

112.365506

122.297607

131.946193

138.228851

I

Above

Hip

0

5701

34.72624303

0

1.1

1

1

0.35

57

NJBF000086131

6943 WEYMOUTH ROAD

Hamilton

NJ

39.51271952

-74.77835066

COM8

3001

14

ME

1985

1936

3401

1

1

680.8932656

680.8932656

3507

NO

16.03

28.06

1

0.39

6112

108.471829

117.619676

127.312556

131.243016

I

Above

Flat

0

5701

22.04234206

0

0

1

1

0.03

58

NJBF000085883

228 S MANNHEIM AVE

Galloway

NJ

39.50482245

-74.57180384

RES1

3001

16

NE

1950

1950

3102

1

1

880.4478482

880.4478482

3507

NO

16.09

24.49

1

2.61

6112

110.831084

120.2565

129.808796

135.380312

I

Above

Gable

0

20.29037529

0

0

1

1

0.15

59

NJBF000081726

4 HILLSIDE CIRCLE

Absecon

NJ

39.42232874

-74.49154804

RES1

3001

17

NE

1978

1978

3101

2

1

1727.399399

1727.399399

3505

NO

27.37

37.5

3

1.88

6112

112.669126

122.445524

132.096741

138.271623

I

Above

Gable

0

5701

32.43443761

0

1.1

1

1

0.35

60

NJBF000091014

103 E COLLINGS DR

Folsom

NJ

39.59884301

-74.87825028

RES1

3001

16

NE

1960

1960

3101

1

2

1180.187929

1180.187929

3507

NO

16.62

26.45

1

0.33

6112

107.491209

116.099501

125.856414

128.904077

I

Above

Flat

0

5701

21.53292918

0

0

1

1

0.35

61

NJBF000091023

103 E COLLINGS DR

Folsom

NJ

39.5988975

-74.87843411

RES1

3001

16

NE

1960

1960

3101

1

2

2013.864449

2013.864449

3507

NO

14.59

26.53

1

1.27

6112

107.489766

116.097764

125.85465

128.90155

I

Above

Gable

0

5701

20.56070515

0

0

1

1

0.35

62

NJBF000092651

283 CHESTNUT ST

Hammonton

NJ

39.63161936

-74.79157891

RES1

3001

17

NE

1954

1954

3102

2

1

2017.789146

2017.789146

3504

NO

36.07

48.98

-4

0

6112

108.065049

116.49783

126.338024

129.657446

I

Above

Flat

0

5701

42.52444156

0

0

1

1

0.35

63

NJBF000092864

795 CENTRAL AVE

Hammonton

NJ

39.6343656

-74.78513599

RES1

3001

17

NE

1960

1960

3102

2

1

2152.32337

2152.32337

3504

NO

38.74

52.34

-4

0

6112

108.111576

116.525874

126.373356

129.711555

I

Above

Hip

0

5701

45.53921572

0

1.2

1

1

0.35

64

NJBF000083877

6395 MONMOUTH DRIVE

Hamilton

NJ

39.45100728

-74.75207506

RES1

3001

17

NE

1955

1955

3101

1

1

1203.234591

1203.234591

3505

NO

12.18

19.67

3

-0.33

6112

108.842477

118.378872

128.059375

132.596155

I

Above

Gable

0

5701

15.92523624

0

0

1

1

0.35

65

NJBF000083855

6316 PALMER AVENUE

Hamilton

NJ

39.45075627

-74.75118505

RES1

3001

17

NE

1957

1957

3101

1

1

1010.207412

1010.207412

3505

NO

22.55

31.65

3

3.71

6112

108.850027

118.390374

128.070775

132.616986

I

Above

Gable

0

5701

27.09776423

0

0

1

1

0.35

66

NJBF000083718

6318 CROCUS STREET

Hamilton

NJ

39.44921969

-74.75424051

RES1

3001

17

NE

1964

1964

3102

2

1

1989.49185

1989.49185

3505

NO

36.03

49.07

3

1.57

6112

108.831701

118.369691

128.051411

132.580244

I

Above

Gable

0

5701

42.55104077

0

0

1

1

0.35

67

NJBF000083994

6312 PHILIPS AVENUE

Hamilton

NJ

39.45290256

-74.75576796

RES1

3001

17

NE

1952

1952

3101

1

1

945.0764849

945.0764849

3505

NO

17.63

31.1

3

6.46

6112

108.808569

118.324666

128.005251

132.497579

I

Above

Gable

0

5701

24.36675582

0

0

1

1

0.35

68

NJBF000069388

17 FRONT STREET

Egg Harbor

NJ

39.36003129

-74.58021183

RES1

3001

16

NE

1959

1959

3101

1

1

1583.793273

1583.793273

3507

NO

15.51

30.44

1

1.71

6112

111.275082

121.545316

131.228686

137.477588

I

Above

Gable

0

5701

22.97712625

0

0

1

1

0.35

69

NJBF000069450

9 FRONT STREET

Egg Harbor

NJ

39.3604925

-74.57963662

RES1

3001

16

NE

1954

1954

3101

1

1

1221.307074

1221.307074

3507

NO

16.31

26.61

1

-0.29

6112

111.281566

121.5503

131.23275

137.482544

I

Above

Hip

0

5701

21.46164672

0

0

1

1

0.35

70

NJBF000069466

7 FRONT STREET

Egg Harbor

NJ

39.36067243

-74.57955631

RES1

3001

16

NE

1954

1954

3101

2

1

2047.50211

2047.50211

3507

NO

25.69

37.34

1

1.66

6112

111.280912

121.549772

131.231967

137.481501

I

Above

Flat

0

5701

31.51415736

0

1.1

1

1

0.35

71

NJBF000066787

TUCKAHOE RD

Estell Manor

NJ

39.3507851

-74.76568013

RES4

3001

ME

1969

0

3401

1

1

715.1569851

715.1569851

3507

NO

17.52

29.44

1

0.95

6112

109.349723

119.076955

128.76489

133.795455

I

Above

Gable

0

5701

23.48311871

0

0

1

1

0.7

72

NJBF000066838

TUCKAHOE RD

Estell Manor

NJ

39.35096457

-74.76512643

RES4

3001

ME

1969

0

3401

3

1

729.7600727

729.7600727

3507

NO

48.15

55.82

1

1.73

6112

109.351999

119.080925

128.76983

133.803924

I

Above

Gable

0

5701

51.98222828

0

0

1

1

1

73

NJBF000067006

125 MARGATE BLVD.

Linwood

NJ

39.35167853

-74.53956996

RES1

3001

510

NE

1969

0

3102

2

1

544.8981084

544.8981084

3507

NO

37.02

50.48

1

2.55

6106

112.297986

122.34403

132.024036

138.442586

I

Above

Flat

0

5701

43.75182097

0

0

1

1

0.03

74

NJBF000081784

408 CYNWYD DR

Absecon

NJ

39.42289105

-74.48782533

RES1

3001

17

NE

1963

1963

3101

2

1

2345.871242

2345.871242

3505

NO

39.5

45.25

3

1.35

6112

112.742973

122.505974

132.162836

138.333671

I

Above

Hip

0

5701

42.37471008

0

1.1

1

1

0.35

75

NJBF000073809

7080 BLACK HORSE PIKE

Pleasantville

NJ

39.38330438

-74.50132252

COM1

3003

530

ME

1969

0

3401

3

1

4916.525731

4916.525731

3507

NO

48.3

54.26

1

2.48

6106

112.792149

122.679668

132.359819

138.704587

I

Above

Flat

0

51.28433315

0

0

1

1

0.03

76

NJBF000067057

125 MARGATE BLVD.

Linwood

NJ

39.35190241

-74.53990332

RES1

3001

510

NE

1969

0

3102

2

1

661.0149401

661.0149401

3507

NO

28.66

35.5

1

-0.57

6106

112.287545

122.335722

132.01554

138.432397

I

Above

Flat

0

5701

32.0789009

0

0

1

1

0.03

77

NJBF000083237

1104 MARLBOROUGH AVE

Galloway

NJ

39.44004104

-74.51626002

RES1

3001

17

NE

1956

1956

3102

2

1

1639.906884

1639.906884

3505

NO

44.73

51.47

3

8.65

6112

112.048692

121.828453

131.420344

137.51418

I

Above

Gable

0

5701

48.10243607

0

0

1

1

0.35

78

NJBF000078120

4045 SPRUCE AVENUE

Egg Harbor

NJ

39.40307302

-74.59121644

RES1

3001

16

NE

1951

1951

3102

1

1

1756.27683

1756.27683

3507

NO

12.8

26.54

1

0.32

6112

110.693621

120.930338

130.527147

136.584675

I

Above

Gable

0

5701

19.66572284

0

1.2

1

1

0.15

79

NJBF000066970

TUCKAHOE RD

Estell Manor

NJ

39.35149704

-74.76430939

RES4

3001

ME

1969

0

3401

2

1

725.0340973

725.0340973

3507

NO

30.07

37.4

1

0.14

6112

109.352836

119.084168

128.774817

133.812483

I

Above

Gable

0

5701

33.73368523

0

0

1

1

0.7

80

NJBF000087997

OLD NEW YORK RD

Port Republic

NJ

39.54702848

-74.46455009

COM4

3002

510

ME

1969

0

3401

1

1

963.0379495

963.0379495

3507

NO

13.11

20.81

1

1

6106

112.421816

121.536226

131.126568

136.9072

I

Above

Flat

0

5701

16.96418245

0

0

1

1

0.03

81

NJBF000084189

6352 PITTSBURG AVENUE

Hamilton

NJ

39.45788902

-74.80075837

RES1

3001

17

NE

1920

1920

3101

2

2

1688.519583

1688.519583

3507

NO

28.39

38.11

1

1.61

6109

108.464645

117.829234

127.512079

131.58453

I

Above

Gable

0

5701

33.24985272

0

1.2

1

1

0.03

82

NJBF000085562

5638 LAUREL STREET

Hamilton

NJ

39.49364285

-74.66977771

RES1

3001

16

NE

1910

1910

3101

2

1

876.2544377

876.2544377

3507

NO

39.01

45.29

1

1.88

6112

109.526185

118.993081

128.604626

133.581044

I

Above

Flat

0

5701

42.14900775

0

1.2

1

1

0.15

83

NJBF000086228

214 OAK ISLAND ROAD

Buena Vista

NJ

39.51209101

-74.91174034

RES1

3001

999

NE

1969

0

3102

2

1

588.3824345

588.3824345

3507

NO

24.58

34.27

1

1.67

6112

107.532425

116.454613

126.146572

129.258187

I

Above

Gable

0

5701

29.42493183

0

0

1

1

0.35

84

NJBF000087860

7291 WEYMOUTH ROAD

Hamilton

NJ

39.5440245

-74.79309387

RES1

3001

15

NE

1930

1930

3102

1

1

890.1755332

890.1755332

3507

NO

17.38

25.52

1

1.63

6106

108.276831

117.226362

126.94406

130.60035

I

Above

Gable

0

5701

21.44890588

0

0

1

1

0.03

85

NJBF000090596

5741 CRANBERRY COURT

Mullica

NJ

39.58989699

-74.60453143

RES1

3001

16

NE

1989

1989

3101

2

1

1988.53238

1988.53238

3505

NO

27.08

33.45

3

-0.43

6112

110.129406

118.874126

128.553841

133.397794

I

Above

Gable

0

5701

30.26516228

0

0

1

1

0.35

86

NJBF000088683

CITY PARK-LAKE

Egg Harbor City

NJ

39.55845149

-74.61011093

COM4

3001

ME

1960

1960

3401

3

1

1501.05832

1501.05832

3507

NO

39.03

53.23

1

0.18

6112

110.149418

119.144412

128.779298

133.774066

I

Above

Hip

0

46.13089529

0

0

1

1

0.03

87

NJBF000083289

FAA TECH CENTER

Egg Harbor

NJ

39.44120101

-74.56824444

GOV1

3003

E

1969

0

3401

1

1

530.7404598

530.7404598

3507

NO

14.81

27.15

1

0.81

6112

111.040028

120.94421

130.448392

136.453306

I

Above

Flat

0

20.97912318

0

0

1

1

1

88

NJBF000091114

126 S RIVER DR

Folsom

NJ

39.60072349

-74.86361285

RES1

3001

16

NE

1976

1976

3101

2

1

829.5346216

829.5346216

3507

NO

29.87

42.02

1

2.19

6106

107.590074

116.193406

125.958475

129.057224

I

Above

Gable

0

5701

35.9434547

0

0

1

1

0.03

89

NJBF000078155

4045 SPRUCE AVENUE

Egg Harbor

NJ

39.40329835

-74.5908878

RES1

3001

16

NE

1951

1951

3102

1

1

2460.040128

2460.040128

3507

NO

13.73

19.92

1

0.17

6112

110.699586

120.933622

130.529502

136.587907

I

Above

Gable

0

5701

16.82647645

0

1.2

1

1

0.15

90

NJBF000069770

1000 ARGO LANE

Northfield

NJ

39.3638256

-74.54603886

RES1

3001

18

NE

1992

1992

3109

2

1

3794.547426

3794.547426

3507

NO

36

49.97

1

1.76

6112

111.997811

122.098168

131.767642

138.124807

I

Above

Gable

0

5701

42.98611727

0

1.2

1

1

0.35

91

NJBF000084965

5928 CEDARCROFT DRIVE

Hamilton

NJ

39.47177351

-74.7124919

RES1

3001

17

NE

1984

1984

3102

1

1

1233.651525

1233.651525

3505

NO

16.18

26.35

3

5.06

6112

109.122029

118.656891

128.308539

133.06371

I

Above

Gable

0

5701

21.2668763

0

0

1

1

0.35

92

NJBF000096965

263 BASIN RD

Hammonton

NJ

39.66109648

-74.78561237

AGR1

3001

17

NE

1900

1900

3401

2

1

1360.875469

1360.875469

3507

NO

34.6

45.93

1

1.55

6112

108.029488

116.278752

126.18508

129.412927

I

Above

Gable

0

5701

40.26352851

0

0

1

1

0.03

93

NJBF000071434

425 N MARYLAND AVE

Atlantic City

NJ

39.37060793

-74.42564427

RES1

3001

210

NE

1969

0

3102

1

1

906.2940373

906.2940373

3505

NO

12.09

25.16

3

-0.83

6106

114.582127

124.183352

133.988734

140.212988

I

Above

Flat

0

5701

18.62778897

0

0

1

1

0.03

94

NJBF000088732

5111 WHITE HORSE PIKE

Mullica

NJ

39.559234

-74.69254383

RES1

3001

16

NE

1963

1954

3101

1

1

761.0389248

761.0389248

3505

NO

21.32

34.69

3

3.32

6112

109.171473

118.120421

127.816196

132.17596

I

Above

Gable

0

5701

28.00557052

0

0

1

1

0.35

95

NJBF000079744

15 W REDWOOD AVE

Pleasantville

NJ

39.41386475

-74.50493704

RES3C

3001

E

1969

0

3303

1

1

724.4369536

724.4369536

3507

NO

14.21

20.46

1

-0.13

6106

112.448827

122.296233

131.935787

138.147959

I

Above

Gable

0

17.33274543

0

0

1

1

0.03

96

NJBF000079043

334 MONTCLAIR DR

Pleasantville

NJ

39.40917857

-74.50060793

RES3C

3001

16

E

1954

1954

3303

1

1

1570.648225

1570.648225

3507

NO

18.05

24.36

1

1.96

6112

112.577113

122.421433

132.073223

138.305479

I

Above

Gable

0

21.20611304

0

1.1

1

1

0.35

97

NJBF000054245

110 S SUMNER AVE

Margate City

NJ

39.32283903

-74.50745764

RES1

3001

23

NE

2013

2013

3103

3

1

2009.454389

2009.454389

3505

NO

47.7

59.61

3

5.41

6106

113.418313

123.235066

132.929898

139.505979

I

Above

Hip

0

5701

53.65681325

0

1.2

1

1

0.03

98

NJBF000073446

EXPRESSWAY PARKING LOT

Pleasantville

NJ

39.38078502

-74.49105397

COM1

3003

ME

1969

0

3401

2

1

2023.456941

2023.456941

3507

NO

31.37

40.9

1

2.83

6106

113.045145

122.889712

132.584886

138.93892

I

Above

Flat

0

36.13621648

0

0

1

1

0.03

99

NJBF000091190

3300 READING AVENUE

Mullica

NJ

39.60187232

-74.75842545

RES1

3001

15

NE

2010

2010

3102

2

1

1016.887523

1016.887523

3507

NO

39.61

50.72

1

1.04

6112

108.43193

117.051593

126.839937

130.475581

I

Above

Gable

0

5701

45.1625401

0

0

1

1

1

100

NJBF000085896

6891 WEYMOUTH RD

Hamilton

NJ

39.51271952

-74.77835066

COM8

3001

15

ME

1985

1942

3401

1

1

1809.219527

1809.219527

3507

NO

12.35

21.95

1

-0.54

6106

108.471829

117.619676

127.312556

131.243016

I

Above

Flat

0

5701

17.14895669

0

0

1

1

0.03

- - ------------------------------------------------------ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Illustrative sample of building in Exploration Inventory.

BldgID

Address

City

State

Latitude

Longitude

OccupancyClass

BuildingType

UseCode

BldgClass

DesignLevel

YearBuiltNJDEP

YearBuiltMODIV

NumberofStories0

NumberofStories1

NoUnits

PlanArea0

PlanArea1

FoundationType

SplitLevel

ElevationR0

ElevationR1

FirstFloorHt0

FirstFloorHt1

FloodZone

DSWI

DSWII

DSWIII

DSWIV

WindZone

AvgJanTemp

RoofShape

RoofSlope

RoofCover

RoofSystem

MeanRoofHt

WindowArea

Garage

HazusClassW

HazusClassIN

HazusClassWA

AnalysisDefault

AnalysisAdopted

Modifications

z0

structureType

replacementCost

yearBuilt

stories

area

occupancy

1

NJBF000071434

425 N MARYLAND AVE

Atlantic City

NJ

39.37060793

-74.42564427

RES1

3001

210

NaN

NE

1969

0

3102

1

1

906.2940373

906.2940373

3505

NO

12.09

25.16

3

-0.83

6106

114.582127

124.183352

133.988734

140.212988

I

Above

Flat

0

5701

Wood

18.62778897

0

0

1

1

0.03

nav

1

1969

1

2

NJBF000069199

125 N FLORIDA AVE

Atlantic City

NJ

39.35914703

-74.44296699

RES3B

3001

NaN

ME

1969

0

3301

2

1

746.77695

746.77695

3505

NO

20.8

28.38

3

-1.12

6106

114.345973

123.988371

133.764787

140.105028

I

Above

Flat

0

NaN

Wood

24.5906803

0

0

1

1

0.03

nav

1

1969

2

3

NJBF000073099

600 HURON AVE

Atlantic City

NJ

39.37757936

-74.4295234

GOV2

3001

NaN

E

1969

0

3401

3

1

1513.12497

1513.12497

3507

NO

53.51

64.92

1

2.61

6102

114.419245

124.039359

133.835327

140.051978

I

Above

Hip

0

NaN

Wood

59.2178323

0

0

1

1

0.03

nav

1

1969

3

4

NJBF000072131

332 N RHODE ISLAND AVE

Atlantic City

NJ

39.37266302

-74.4195965

IND1

3003

100

NaN

E

1969

0

3401

1

1

1000.334181

1000.334181

3507

NO

12.94

25.08

1

0.65

6106

114.687154

124.272844

134.089421

140.279189

I

Above

Flat

0

NaN

Wood

19.01116657

0

0

1

1

0.03

nav

1

1969

1

5

NJBF000067530

1 ATLANTIC OCEAN

Atlantic City

NJ

39.35374924

-74.43417403

COM8

3003

738

NaN

ME

1969

0

3401

1

1

177963.6629

177963.6629

3502

NO

23.82

31.38

5

9.26

6102

114.602674

124.205439

133.996965

140.317942

I

Above

Flat

0

NaN

Wood

27.5964249

0

0

1

1

0.03

nav

1

1969

1

6

NJBF000067877

11 N MORRIS AVE

Atlantic City

NJ

39.35486056

-74.44795731

RES3B

3001

45

ME

1900

1900

3301

2

3

835.133255

835.133255

3504

NO

22.28

31.19

-4

0

6106

114.290475

123.943662

133.712312

140.089522

I

Above

Hip

0

NaN

Wood

26.73550746

0

0

1

1

0.03

nav

1

1900

2

7

NJBF000068827

601 N ALBANY AVE

Atlantic City

NJ

39.35771681

-74.45662953

COM1

3003

NaN

ME

1969

0

3401

1

1

654.0515616

654.0515616

3507

NO

12.92

22.85

1

0.48

6106

114.066125

123.756156

133.511018

139.908712

I

Above

Flat

0

NaN

Wood

17.88736232

0

0

1

1

0.03

nav

1

1969

1

8

NJBF000070418

1500-1538 ADRIATIC AVE

Atlantic City

NJ

39.36703147

-74.43394222

RES3C

3004

NaN

ME

1969

0

3301

1

1

938.5675163

938.5675163

3505

NO

22.15

30.29

3

8.37

6106

114.446193

124.069174

133.859987

140.133075

I

Above

Gable

0

NaN

Wood

26.2188825

0

0

1

1

0.03

nav

1

1969

1

9

NJBF000073313

900 BEACH THOROFARE

Atlantic City

NJ

39.37975402

-74.42453449

GOV2

3001

NaN

E

1969

0

3401

2

1

606.967372

606.967372

3507

NO

36.33

45.23

1

0.84

6106

114.501236

124.10828

133.913045

140.101152

I

Above

Flat

0

NaN

Wood

40.78026092

0

0

1

1

0.03

nav

1

1969

2

10

NJBF000073035

1 BORGATA WAY

Atlantic City

NJ

39.37673702

-74.43505349

COM8

3003

80

NaN

ME

1969

0

3401

1

1

1879.060694

1879.060694

3507

NO

10.76

20.42

1

-0.2

6112

114.310272

123.946858

133.732799

139.974749

I

Above

Gable

0

NaN

Wood

15.58973262

0

0

1

1

1

nav

1

1969

1

11

NJBF000070587

22 N VERMONT AVE

Atlantic City

NJ

39.36769548

-74.4155228

RES3D

3004

NaN

E

1969

0

3303

4

1

665.0906288

665.0906288

3505

NO

76.24

85.91

3

5.65

6106

114.831915

124.399307

134.224762

140.410933

I

Above

Flat

0

NaN

Wood

81.0745672

0

0

1

1

0.03

nav

1

1969

4

12

NJBF000071302

822 ADRIATIC AVE

Atlantic City

NJ

39.37013371

-74.4249531

RES1

3001

100

NaN

NE

1969

0

3102

2

1

2115.508277

2115.508277

3505

NO

35.03

48.91

3

0.95

6106

114.602423

124.200968

134.007765

140.230525

I

Above

Flat

0

5701

Wood

41.96684013

0

0

1

1

0.03

nav

1

1969

2

13

NJBF000068281

1701 BOARDWALK

Atlantic City

NJ

39.35622601

-74.42913186

COM8

3003

100

NaN

ME

1969

0

3401

1

1

1182.211148

1182.211148

3507

YES

15.94

25.06

1

1.71

6106

114.680286

124.270854

134.071307

140.360231

I

Above

Hip

0

NaN

Wood

20.50057463

0

0

1

1

0.03

nav

1

1969

1

14

NJBF000073032

1 BORGATA WAY

Atlantic City

NJ

39.37671002

-74.43481749

COM8

3003

80

NaN

ME

1969

0

3401

2

1

1034.644393

1034.644393

3507

NO

29.16

38.09

1

-0.95

6112

114.315643

123.951461

133.737847

139.978972

I

Above

Flat

0

NaN

Wood

33.62230206

0

0

1

1

1

nav

1

1969

2

15

NJBF000073016

600 HURON AVE

Atlantic City

NJ

39.37654852

-74.42859749

GOV2

3001

NaN

E

1969

0

3401

3

1

1893.761678

1893.761678

3507

NO

46.44

51.95

1

0.4

6102

114.450688

124.067108

133.865198

140.081631

I

Above

Flat

0

NaN

Wood

49.19737067

0

0

1

1

0.03

nav

1

1969

3

16

NJBF000072680

618 N CONNECTICUT AVE

Atlantic City

NJ

39.37449952

-74.4238115

RES1

3001

NaN

NE

1969

0

3102

2

1

868.5192539

868.5192539

3505

NO

30.29

45.09

3

5.82

6106

114.576225

124.176314

133.984216

140.187041

I

Above

Flat

0

5701

Wood

37.69262817

0

0

1

1

0.03

nav

1

1969

2

17

NJBF000071245

Atlantic City

NJ

39.36991241

-74.42513813

RES1

3001

NaN

NE

1969

0

3102

2

1

814.36214

814.36214

3505

NO

33.93

39.75

3

3.8

6106

114.601067

124.199901

134.006394

140.230744

I

Above

Flat

0

5701

Wood

36.84013057

0

0

1

1

0.03

nav

1

1969

2

18

NJBF000070402

1500-1538 ADRIATIC AVE

Atlantic City

NJ

39.36696953

-74.43408199

RES3C

3004

NaN

ME

1969

0

3301

1

1

1047.135344

1047.135344

3505

NO

20.16

34.47

3

8.14

6106

114.443902

124.067262

133.857835

140.13174

I

Above

Flat

0

NaN

Wood

27.31446286

0

0

1

1

0.03

nav

1

1969

1

19

NJBF000073509

5207 HARBOR BEACH BLVD

Atlantic City

NJ

39.38121603

-74.40752613

RES1

3001

17

NE

1987

1987

3103

2

1

1585.636058

1585.636058

3505

NO

38.96

49.1

3

3.55

6110

114.844667

124.406792

134.245537

140.351043

I

Above

Gable

0

5701

Wood

44.03148628

0

0

1

1

0.35

nav

1

1987

2

20

NJBF000073577

5110 ONTARIO DRIVE

Atlantic City

NJ

39.381728

-74.4063255

RES1

3001

43

NE

1985

1985

3103

2

2

1247.359049

1247.359049

3505

NO

24.54

39.02

3

-0.32

6110

114.86414

124.423747

134.264858

140.362971

I

Above

Gable

0

5701

Wood

31.77601017

0

0

1

1

0.35

nav

1

1985

2

21

NJBF000073745

4 MANITOBA AVE

Atlantic City

NJ

39.38288165

-74.40613562

RES3A

3001

18

NE

2006

2006

3301

2

1

2553.805107

2553.805107

3505

NO

37.36

44.6

3

2.83

6106

114.855157

124.415388

134.256509

140.350275

I

Above

Hip

0

5701

Wood

40.98307329

0

1.1

1

1

0.03

nav

1

2006

2

22

NJBF000073749

4815 ROSS DRIVE SOUTH

Atlantic City

NJ

39.38290256

-74.40068093

RES3C

3001

37

ME

1986

1986

3301

2

1

1937.55861

1937.55861

3507

NO

33.46

44.21

1

-0.7

6106

114.969196

124.516266

134.369074

140.435663

I

Above

Gable

0

NaN

Wood

38.83397853

0

0

1

1

0.03

nav

1

1986

2

23

NJBF000073271

29 OCEAN DRIVE WEST

Atlantic City

NJ

39.37946962

-74.40830686

RES1

3001

16

NE

1975

1975

3103

2

1

1115.517747

1115.517747

3505

NO

37.68

49.11

3

8.66

6106

114.847969

124.410327

134.247977

140.36254

I

Above

Hip

0

5701

Wood

43.39541385

0

1.1

1

1

0.03

nav

1

1975

2

24

NJBF000070632

Atlantic City

NJ

39.36786531

-74.42736843

RES1

3001

NaN

NE

1969

0

3103

6

1

1947.18178

1947.18178

3505

NO

79.15

92.08

3

-2.6

6106

114.577422

124.180522

133.983223

140.224622

I

Above

Hip

0

5701

Wood

85.6142264

0

0

1

1

0.03

nav

1

1969

6

25

NJBF000068931

2507 ARCTIC AVE

Atlantic City

NJ

39.35805361

-74.44340273

RES3B

3001

17

ME

1969

1900

3301

2

1

2442.19065

2442.19065

3505

NO

25.82

32.05

3

2.69

6106

114.349899

123.992096

133.7679

140.114122

I

Above

Gable

0

NaN

Wood

28.93451235

0

0

1

1

0.03

nav

1

1969

2

26

NJBF000072197

1817 N MISSOURI AVE

Atlantic City

NJ

39.3728645

-74.4535545

RES1

3001

17

NE

1900

1900

3101

1

1

1134.766004

1134.766004

3505

NO

25.84

32.09

3

8.88

6106

113.954306

123.650378

133.405597

139.727957

I

Above

Flat

0

5701

Wood

28.96514477

0

0

1

1

0.03

nav

1

1900

1

27

NJBF000072227

400 N NEW HAMPSHIRE AVE

Atlantic City

NJ

39.37296747

-74.4191288

RES3C

3001

NaN

ME

1969

0

3301

1

1

6014.012796

6014.012796

3505

NO

17.37

29.2

3

3.39

6106

114.69356

124.278259

134.095682

140.282283

I

Above

Hip

0

NaN

Wood

23.28496809

0

0

1

1

0.03

nav

1

1969

1

28

NJBF000072895

837 N MASSACHUSETTS AVE

Atlantic City

NJ

39.37550337

-74.42300718

RES3D

3001

18

ME

2006

2006

3301

3

1

1357.048534

1357.048534

3507

NO

37.84

42.89

1

0.96

6106

114.581869

124.18062

133.98979

140.185651

I

Above

Hip

0

NaN

Wood

40.36492488

0

0

1

1

0.03

nav

1

2006

3

29

NJBF000069283

2231 ARCTIC AVE

Atlantic City

NJ

39.35950971

-74.44011018

COM1

3003

NaN

ME

1969

0

3401

1

1

10842.04384

10842.04384

3507

NO

21.89

34.89

1

2.94

6106

114.403388

124.036401

133.817587

140.144537

I

Above

Flat

0

NaN

Wood

28.38958755

0

0

1

1

0.03

nav

1

1969

1

30

NJBF000068521

2807 DENNY ST

Atlantic City

NJ

39.35700017

-74.44757492

RES1

3001

27

NE

1900

1900

3102

2

2

1447.053472

1447.053472

3505

NO

34.44

43.9

3

7.74

6106

114.2723

123.927698

133.696793

140.064021

I

Above

Hip

0

5701

Wood

39.16934775

0

0

1

1

0.03

nav

1

1900

2

31

NJBF000072516

538 N MASSACHUSETTS AVE

Atlantic City

NJ

39.3739549

-74.42235362

RES1

3001

45

NE

1900

1900

3102

2

2

1562.170649

1562.170649

3505

NO

39.94

52.12

3

8.35

6106

114.613535

124.208743

134.019618

140.217751

I

Above

Hip

0

5701

Wood

46.02753727

0

0

1

1

0.03

nav

1

1900

2

32

NJBF000066458

4017 VENTNOR AVE

Atlantic City

NJ

39.349802

-74.45892115

COM1

3004

100

NaN

ME

1969

0

3401

2

1

2121.364634

2121.364634

3507

YES

24.17

33.17

1

1.09

6106

114.11498

123.800095

133.552295

139.99249

I

Above

Flat

0

NaN

Wood

28.67068861

0

0

1

1

0.03

nav

1

1969

2

33

NJBF000068201

2905 ARCTIC AVE

Atlantic City

NJ

39.355985

-74.4485495

RES3A

3001

45

NE

1930

1930

3301

2

3

1474.77185

1474.77185

3505

NO

35.82

50.53

3

6.9

6106

114.263656

123.920912

133.68854

140.063665

I

Above

Hip

0

5701

Wood

43.17148983

0

0

1

1

0.03

nav

1

1930

2

34

NJBF000072280

1600 EMERSON AVE

Atlantic City

NJ

39.37314507

-74.44961931

RES1

3001

17

NE

1959

1959

3101

1

1

2029.396069

2029.396069

3505

NO

11.94

23.73

3

0.41

6106

114.036589

123.71893

133.480575

139.789225

I

Above

Hip

0

5701

Wood

17.83627987

0

0

1

1

0.03

nav

1

1959

1

35

NJBF000071219

914 N INDIANA AVE

Atlantic City

NJ

39.36979733

-74.43988434

RES3A

3001

27

NE

1953

1953

3301

2

2

1687.922785

1687.922785

3505

YES

35.33

43.04

3

5.75

6106

114.285753

123.931614

133.711171

139.998133

I

Above

Flat

0

5701

Wood

39.18497199

0

0

1

1

0.03

nav

1

1953

2

36

NJBF000069087

2312 ARCTIC AVE

Atlantic City

NJ

39.35871841

-74.44091582

COM1

3003

45

ME

1920

1920

3401

3

3

1267.11776

1267.11776

3507

YES

38.45

48.45

1

1.26

6106

114.395626

124.030176

133.810075

140.143393

I

Above

Gable

0

NaN

Wood

43.45236519

0

0

1

1

0.03

nav

1

1920

3

37

NJBF000069314

122 N MISSISSIPPI AVE

Atlantic City

NJ

39.35963541

-74.44114268

COM1

3003

47

ME

1900

1910

3401

2

3

3533.316075

3533.316075

3507

YES

32.4

42.97

1

1.94

6106

114.379518

124.016305

133.795728

140.126552

I

Above

Flat

0

NaN

Wood

37.68833586

0

0

1

1

0.03

nav

1

1900

2

38

NJBF000067661

12 N MONTPELIER AVE

Atlantic City

NJ

39.35409178

-74.450722

RES3B

3001

45

ME

1908

1908

3301

2

3

1577.696548

1577.696548

3504

NO

36.89

50.03

-4

0

6106

114.239888

123.901876

133.666217

140.057496

I

Above

Hip

0

NaN

Wood

43.46405256

0

0

1

1

0.03

nav

1

1908

2

39

NJBF000067689

14 N MONTPELIER AVE

Atlantic City

NJ

39.35417434

-74.45078828

RES3B

3001

45

ME

1900

1900

3301

2

2

1539.698677

1539.698677

3504

NO

26.13

39.84

-4

0

6106

114.237428

123.899803

133.664035

140.055243

I

Above

Hip

0

NaN

Wood

32.98710693

0

0

1

1

0.03

nav

1

1900

2

40

NJBF000072465

400 N NEW HAMPSHIRE AVE

Atlantic City

NJ

39.37376697

-74.41696374

RES3C

3001

NaN

ME

1969

0

3301

2

1

3486.234049

3486.234049

3505

NO

33.22

42.55

3

8.11

6106

114.730283

124.309735

134.131251

140.305114

I

Above

Hip

0

NaN

Wood

37.88500131

0

0

1

1

0.03

nav

1

1969

2

41

NJBF000071361

141 N NEW HAMPSHIRE AVE

Atlantic City

NJ

39.37036284

-74.41401886

RES3D

3004

27

E

2000

2000

3303

2

2

1771.71857

1771.71857

3505

NO

37.97

52.11

3

4.35

6106

114.832352

124.399208

134.227272

140.397732

I

Above

Hip

0

NaN

Wood

45.03804989

0

1.1

1

1

0.03

nav

1

2000

2

42

NJBF000067147

3 N ST DAVIDS PL

Atlantic City

NJ

39.35230731

-74.45456624

RES3B

3001

45

E

1900

1900

3303

2

2

1421.969062

1421.969062

3507

NO

40.74

49.17

1

2.91

6106

114.178444

123.851606

133.610149

140.023565

I

Above

Flat

0

NaN

Wood

44.95855826

0

0

1

1

0.03

nav

1

1900

2

43

NJBF000072609

1404 PENROSE AVE

Atlantic City

NJ

39.37426708

-74.44507169

RES1

3001

17

NE

1900

1900

3102

2

1

1743.978387

1743.978387

3505

NO

42.35

53.35

3

4.85

6106

114.122337

123.789865

133.558834

139.847478

I

Above

Hip

0

5701

Wood

47.84821412

0

0

1

1

0.03

nav

1

1900

2

44

NJBF000072085

2002 E RIVERSIDE DR

Atlantic City

NJ

39.3725323

-74.44528008

RES1

3001

NaN

NE

1969

0

3102

2

1

4400.646067

4400.646067

3505

NO

40.28

54.56

3

3.54

6106

114.137595

123.804395

133.573665

139.869974

I

Above

Hip

0

5701

Wood

47.41756243

0

0

1

1

0.03

nav

1

1969

2

45

NJBF000071571

1605 W RIVERSIDE DR

Atlantic City

NJ

39.3709536

-74.45072537

RES1

3001

17

NE

1900

1900

3101

2

1

1627.048044

1627.048044

3505

NO

44.56

58.13

3

8.2

6106

114.037623

123.722024

133.482671

139.804053

I

Above

Hip

0

5701

Wood

51.34463829

0

0

1

1

0.03

nav

1

1900

2

46

NJBF000068858

10 N MISSISSIPPI AVE

Atlantic City

NJ

39.357808

-74.440426

COM1

3003

NaN

ME

1969

0

3401

3

1

1552.892811

1552.892811

3507

NO

37.39

42.62

1

-0.23

6106

114.417383

124.048753

133.829552

140.164178

I

Above

Flat

0

NaN

Wood

40.00441734

0

0

1

1

0.03

nav

1

1969

3

47

NJBF000068967

10 N MISSISSIPPI AVE

Atlantic City

NJ

39.358191

-74.44024029

COM1

3003

NaN

ME

1969

0

3401

3

1

19774.75034

19774.75034

3507

NO

31.96

43.7

1

0.15

6106

114.416705

124.048057

133.829142

140.161553

I

Above

Flat

0

NaN

Wood

37.82853722

0

0

1

1

0.03

nav

1

1969

3

48

NJBF000067184

3029 PACIFIC AVE

Atlantic City

NJ

39.35246716

-74.44786077

COM1

3003

530

NaN

ME

1969

0

3401

2

1

4767.595549

4767.595549

3507

NO

28.01

35.63

1

1.37

6106

114.322502

123.971057

133.73994

140.126086

I

Above

Flat

0

NaN

Wood

31.82004957

0

0

1

1

0.03

nav

1

1969

2

49

NJBF000070051

408 N INDIANA AVE

Atlantic City

NJ

39.3656245

-74.4371055

RES1

3001

45

NE

1920

1920

3101

2

2

1129.324234

1129.324234

3507

NO

26.5

35.41

1

0.76

6106

114.394697

124.0263

133.811762

140.103314

I

Above

Hip

0

5701

Wood

30.95482958

0

0

1

1

0.03

nav

1

1920

2

50

NJBF000067637

405 N ANNAPOLIS AVE

Atlantic City

NJ

39.35403396

-74.46286267

RES1

3001

17

NE

1900

1900

3102

1

1

776.6966952

776.6966952

3505

NO

12.98

22.62

3

2.02

6106

113.975231

123.683311

133.429558

139.864088

I

Above

Flat

0

5701

Wood

17.7978336

0

0

1

1

0.03

nav

1

1900

1

51

NJBF000065525

1 S KINGSTON AVE

Atlantic City

NJ

39.34733604

-74.46305125

RES3A

3001

45

NE

1925

1925

3301

2

4

1928.841921

1928.841921

3505

YES

27.4

38.24

3

-1.26

6106

114.056126

123.752489

133.498861

139.964568

I

Above

Hip

0

5701

Wood

32.81874382

0

0

1

1

0.03

nav

1

1925

2

52

NJBF000070898

1104 ADRIATIC AVE

Atlantic City

NJ

39.36879059

-74.42817944

RES1

3001

33

NE

1900

1900

3103

2

1

1532.420111

1532.420111

3505

YES

23.44

32.46

3

-0.13

6106

114.549161

124.155977

133.956985

140.198798

I

Above

Gable

0

5701

Wood

27.94726262

0

0

1

1

0.03

nav

1

1900

2

53

NJBF000068372

2801 ARCTIC AVE

Atlantic City

NJ

39.356535

-74.446991

RES3A

3001

738

NaN

NE

1969

0

3301

3

1

947.8162957

947.8162957

3505

YES

50.3

56.84

3

8.99

6106

114.290726

123.943249

133.713326

140.08006

I

Above

Flat

0

5701

Wood

53.57119258

0

0

1

1

0.03

nav

1

1969

3

54

NJBF000072114

730 SEWELL AVE

Atlantic City

NJ

39.37262817

-74.42491434

RES1

3001

27

NE

1900

1900

3102

2

2

1902.722298

1902.722298

3505

YES

45.07

51.7

3

6.65

6106

114.57426

124.175618

133.981904

140.195999

I

Above

Flat

0

5701

Wood

48.3895872

0

0

1

1

0.03

nav

1

1900

2

55

NJBF000066996

40 N TRENTON AVE

Atlantic City

NJ

39.35163518

-74.45705066

RES3A

3001

17

NE

1900

1900

3301

1

1

782.4421787

782.4421787

3505

NO

20.41

25.72

3

8.31

6106

114.132631

123.814004

133.568874

139.994375

I

Above

Gable

0

5701

Wood

23.06069605

0

0

1

1

0.03

nav

1

1900

1

56

NJBF000067020

40 N TRENTON AVE

Atlantic City

NJ

39.3517208

-74.45687416

RES3A

3001

17

NE

1900

1900

3301

1

1

1502.257554

1502.257554

3505

NO

14.48

20.4

3

-1.63

6106

114.135414

123.816269

133.571397

139.995882

I

Above

Hip

0

5701

Wood

17.43988439

0

0

1

1

0.03

nav

1

1900

1

57

NJBF000072548

1403 N OHIO AVE

Atlantic City

NJ

39.37405039

-74.44517568

RES1

3001

17

NE

1925

1925

3102

2

1

910.6234253

910.6234253

3505

NO

42.94

57.14

3

5.66

6106

114.12255

123.79026

133.559134

139.849008

I

Above

Gable

0

5701

Wood

50.03924291

0

0

1

1

0.03

nav

1

1925

2

58

NJBF000065663

19 S DELANCY PL

Atlantic City

NJ

39.34775779

-74.46138687

RES3A

3001

17

NE

1900

1900

3301

2

1

1446.51815

1446.51815

3505

NO

38.96

50.17

3

1.52

6106

114.087156

123.777841

133.526535

139.984517

I

Above

Gable

0

5701

Wood

44.5618683

0

0

1

1

0.03

nav

1

1900

2

59

NJBF000071438

410 DELTA AVE

Atlantic City

NJ

39.370623

-74.4251975

RES1

3001

33

NE

1900

1900

3102

2

1

2242.951543

2242.951543

3505

YES

28.51

37.65

3

-2.69

6106

114.591502

124.191385

133.997612

140.219808

I

Above

Gable

0

5701

Wood

33.08141311

0

0

1

1

0.03

nav

1

1900

2

60

NJBF000069266

2 SIRACUSA TERR

Atlantic City

NJ

39.35945338

-74.44111612

COM1

3003

45

ME

1900

1915

3401

2

3

28441.26195

28441.26195

3507

YES

34.48

44.94

1

1.89

6106

114.382321

124.01873

133.798218

140.129616

I

Above

Flat

0

NaN

Wood

39.70936894

0

0

1

1

0.03

nav

1

1900

2

61

NJBF000070550

2019 GRANT AVE

Atlantic City

NJ

39.36754787

-74.44211737

RES3B

3001

33

ME

1900

1900

3301

2

1

3166.523164

3166.523164

3505

YES

20.87

26.77

3

-2.28

6106

114.263786

123.914689

133.690975

139.995288

I

Above

Flat

0

5701

Wood

23.82256008

0

0

1

1

0.03

nav

1

1900

2

62

NJBF000070486

1311 DREXEL AVE

Atlantic City

NJ

39.36734134

-74.43060293

RES3C

3003

33

E

1910

1900

3305

2

1

3346.301672

3346.301672

3507

YES

24.91

31.98

1

0.48

6106

114.514269

124.126884

133.923701

140.181275

I

Above

Flat

0

NaN

Wood

28.44575062

0

0

2

2

0.03

nav

1

1910

2

63

NJBF000070614

908 KEENER AVE

Atlantic City

NJ

39.36778733

-74.44218013

RES3B

3001

33

ME

1900

1900

3301

2

1

3870.477788

3870.477788

3505

YES

26.49

34.56

3

-1.63

6106

114.259619

123.911014

133.687128

139.990752

I

Above

Flat

0

5701

Wood

30.52195154

0

0

1

1

0.03

nav

1

1900

2

64

NJBF000067459

5 N SOVEREIGN AVE

Atlantic City

NJ

39.35355658

-74.45063378

RES3B

3001

29

NaN

ME

1969

0

3301

2

1

874.430821

874.430821

3504

YES

35.28

41.99

-4

0

6106

114.248491

123.90921

133.673715

140.066803

I

Above

Gable

0

NaN

Wood

38.63718544

0

0

1

1

0.03

nav

1

1969

2

65

NJBF000065893

21 S LACLEDE PL

Atlantic City

NJ

39.34837553

-74.46005095

RES3A

3001

18

NE

1920

1920

3301

2

1

2275.432851

2275.432851

3505

NO

25.29

36.99

3

0.19

6106

114.108474

123.795185

133.545773

139.996246

I

Above

Hip

0

5701

Wood

31.13917414

0

0

1

1

0.03

nav

1

1920

2

66

NJBF000068434

2727 ARCTIC AVE

Atlantic City

NJ

39.35674682

-74.44661183

RES3A

3001

738

NaN

NE

1969

0

3301

3

1

966.2570403

966.2570403

3505

YES

30.18

40.04

3

-2.42

6106

114.296343

123.947851

133.718521

140.082899

I

Above

Gable

0

5701

Wood

35.10756412

0

0

1

1

0.03

nav

1

1969

3

67

NJBF000070576

2011 GRANT AVE

Atlantic City

NJ

39.3676691

-74.44180066

RES3B

3001

27

ME

1915

1915

3301

2

2

1068.908825

1068.908825

3505

YES

37.91

50.74

3

-0.37

6106

114.269199

123.919163

133.695963

139.998584

I

Above

Flat

0

5701

Wood

44.32799866

0

0

1

1

0.03

nav

1

1915

2

68

NJBF000068885

2718 FAIRMOUNT AVE

Atlantic City

NJ

39.35793003

-74.44689837

COM1

3003

33

ME

1900

1900

3401

2

1

3450.840733

3450.840733

3507

YES

35.26

50.18

1

1.5

6106

114.275578

123.930033

133.700124

140.06098

I

Above

Flat

0

NaN

Wood

42.7215989

0

0

1

1

0.03

nav

1

1900

2

69

NJBF000070300

805 FISHER AVE

Atlantic City

NJ

39.36661791

-74.44267594

RES3B

3001

33

ME

1900

1900

3301

2

1

1552.037848

1552.037848

3505

NO

29.13

43.26

3

2.51

6106

114.262635

123.914356

133.689917

140.000019

I

Above

Flat

0

5701

Wood

36.19519283

0

0

1

1

0.03

nav

1

1900

2

70

NJBF000070354

416 ATLANTIC AVE

Atlantic City

NJ

39.36682316

-74.41599567

RES3D

3004

100

NaN

E

1969

0

3303

3

1

505.8592283

505.8592283

3505

YES

44.69

56.81

3

2.24

6106

114.832225

124.399702

134.224327

140.415552

I

Above

Flat

0

NaN

Wood

50.75013717

0

0

1

1

0.03

nav

1

1969

3

71

NJBF000067753

8 N MORRIS AVE

Atlantic City

NJ

39.35436861

-74.44873793

RES3B

3001

45

ME

1900

1900

3301

2

3

557.9085271

557.9085271

3504

NO

34.89

49.36

-4

0

6106

114.279617

123.934797

133.702235

140.084531

I

Above

Flat

0

NaN

Wood

42.12381602

0

0

1

1

0.03

nav

1

1900

2

72

NJBF000069740

600 PACIFIC AVE

Atlantic City

NJ

39.36355401

-74.41713554

RES3C

3004

NaN

E

1969

0

3303

4

1

1946.101016

1946.101016

3507

NO

50.27

61.64

1

0.28

6106

114.847121

124.412879

134.235544

140.442609

I

Above

Gable

0

NaN

Wood

55.95638044

0

0

1

1

0.03

nav

1

1969

4

73

NJBF000068965

708 N HARRISBURG AVE

Atlantic City

NJ

39.35818209

-74.46310583

RES1

3001

16

NE

1918

1918

3101

1

1

1182.023123

1182.023123

3505

NO

14.28

26.67

3

-0.82

6106

113.918629

123.634215

133.379407

139.795496

I

Above

Gable

0

5701

Wood

20.47740387

0

0

1

1

0.03

nav

1

1918

1

74

NJBF000072640

400 N NEW HAMPSHIRE AVE

Atlantic City

NJ

39.37436014

-74.4181724

RES3C

3001

NaN

ME

1969

0

3301

1

1

6941.059151

6941.059151

3505

NO

17.31

26.32

3

3.29

6106

114.697804

124.281363

134.100337

140.277951

I

Above

Hip

0

NaN

Wood

21.81421115

0

0

1

1

0.03

nav

1

1969

1

75

NJBF000073070

1 BORGATA WAY

Atlantic City

NJ

39.37722504

-74.43746677

COM8

3003

80

NaN

ME

1969

0

3401

1

1

10337.15543

10337.15543

3507

NO

13.34

26.04

1

0.66

6112

114.252925

123.897572

133.678898

139.928327

I

Above

Flat

0

NaN

Wood

19.68832823

0

0

1

1

1

nav

1

1969

1

76

NJBF000072033

29 CLIPPER CT

Atlantic City

NJ

39.37236111

-74.41845336

RES3C

3001

35

ME

1990

1990

3301

2

1

3555.125482

3555.125482

3505

NO

31.8

45.05

3

5.9

6106

114.714953

124.296981

134.115871

140.301277

I

Above

Hip

0

NaN

Wood

38.42428797

0

0

1

1

0.03

nav

1

1990

2

77

NJBF000069376

131 S OCEAN AVE RR

Atlantic City

NJ

39.35994131

-74.42583305

COM1

3001

45

ME

1935

1935

3401

2

2

1254.891509

1254.891509

3507

YES

22.09

29.52

1

-0.09

6106

114.705353

124.291789

134.098198

140.359178

I

Above

Flat

0

NaN

Wood

25.8010789

0

0

1

1

0.03

nav

1

1935

2

78

NJBF000070765

1117 DREXEL AVE

Atlantic City

NJ

39.36835332

-74.42807996

RES1

3001

33

NE

1900

1924

3103

2

1

2295.021468

2295.021468

3505

YES

39.16

52.8

3

3.53

6106

114.556429

124.162381

133.963662

140.206556

I

Above

Flat

0

5701

Wood

45.98146803

0

0

1

1

0.03

nav

1

1900

2

79

NJBF000070844

342 N PENNSYLVANIA AVE

Atlantic City

NJ

39.36860897

-74.42783422

RES1

3001

33

NE

1924

1900

3103

2

1

4119.856207

4119.856207

3505

YES

35.49

41.09

3

6.61

6106

114.558686

124.164196

133.965885

140.206797

I

Above

Gable

0

5701

Wood

38.29342439

0

0

1

1

0.03

nav

1

1924

2

80

NJBF000068199

Atlantic City

NJ

39.3559832

-74.43505302

COM8

3003

NaN

1969

0

3408

11

1

477977.4606

477977.4606

3507

NO

142.14

148

1

0.2

6106

114.555927

124.165747

133.955791

140.27319

I

Above

Flat

0

NaN

Wood

145.0720457

0

0

2

2

0.03

nav

1

1969

11

81

NJBF000067632

37 S IOWA AVE

Atlantic City

NJ

39.35401653

-74.44474056

RES4

3003

NaN

E

1969

0

3404

7

1

7321.588788

7321.588788

3507

NO

89.12

100.32

1

2.99

6106

114.370846

124.01093

133.784778

140.151942

I

Above

Flat

0

NaN

Wood

94.72132829

0

0

2

2

0.03

nav

1

1969

7

82

NJBF000067858

2825 ATLANTIC AVE

Atlantic City

NJ

39.35480494

-74.44689978

COM1

3003

643

NaN

ME

1969

0

3401

3

1

1950.726698

1950.726698

3507

NO

54.22

65.33

1

0.85

6106

114.314145

123.963399

133.733739

140.106872

I

Above

Flat

0

NaN

Wood

59.77541405

0

0

1

1

0.03

nav

1

1969

3

83

NJBF000065105

4501 ATLANTIC C6

Atlantic City

NJ

39.34615797

-74.46263614

RES3A

3001

39

NE

1900

1900

3301

1

1

6428.985141

6428.985141

3505

NO

15.11

28.28

3

2.97

6106

114.080451

123.77276

133.519675

139.989166

I

Above

Flat

0

5701

Wood

21.69691046

0

0

1

1

0.03

nav

1

1900

1

84

NJBF000068631

39 N BELLEVUE AVE

Atlantic City

NJ

39.35728377

-74.44304214

RES3B

3001

45

ME

1900

1900

3301

3

2

1614.540465

1614.540465

3505

YES

38.44

44.82

3

3.27

6106

114.367184

124.006851

133.783318

140.130973

I

Above

Flat

0

NaN

Wood

41.63400599

0

0

1

1

0.03

nav

1

1900

3

85

NJBF000072617

400 N NEW HAMPSHIRE AVE

Atlantic City

NJ

39.37429318

-74.42001403

RES3C

3001

NaN

ME

1969

0

3301

2

1

6793.111667

6793.111667

3505

NO

28.36

42.89

3

-1.72

6106

114.659439

124.248203

134.06356

140.249915

I

Above

Hip

0

NaN

Wood

35.62310779

0

0

1

1

0.03

nav

1

1969

2

86

NJBF000073443

4 SURF LANE

Atlantic City

NJ

39.3807495

-74.4049225

RES1

3001

16

NE

1975

1975

3102

2

1

1521.513966

1521.513966

3507

YES

36.2

47.19

1

-0.92

6106

114.904623

124.459759

134.304152

140.398234

I

Above

Gable

0

5701

Wood

41.69731535

0

0

1

1

0.03

nav

1

1975

2

87

NJBF000073405

3 SEA SPRAY COURT

Atlantic City

NJ

39.38048154

-74.40574925

RES1

3001

17

NE

1975

1975

3102

2

1

1746.557548

1746.557548

3507

YES

27.55

37.14

1

2.37

6106

114.89029

124.44721

134.289933

140.388903

I

Above

Flat

0

5701

Wood

32.34148528

0

1.1

1

1

0.03

nav

1

1975

2

88

NJBF000073424

15 OCEAN DRIVE WEST

Atlantic City

NJ

39.38061949

-74.408992

RES1

3001

16

NE

1978

1978

3103

2

1

1594.183612

1594.183612

3505

NO

31.32

44.85

3

0.12

6106

114.820556

124.385832

134.221698

140.336114

I

Above

Gable

0

5701

Wood

38.0823233

0

0

1

1

0.03

nav

1

1978

2

89

NJBF000073519

4 OCEAN DRIVE EAST

Atlantic City

NJ

39.38131868

-74.40429133

RES1

3001

16

NE

1975

1975

3102

2

1

1500.031638

1500.031638

3507

YES

27.41

33.27

1

1.32

6106

114.911436

124.465598

134.311157

140.400433

I

Above

Gable

0

5701

Wood

30.33975259

0

0

1

1

0.03

nav

1

1975

2

90

NJBF000073536

2 OCEAN DRIVE EAST

Atlantic City

NJ

39.38141874

-74.40443264

RES1

3001

43

NE

1975

1975

3102

2

2

1445.322915

1445.322915

3507

NO

24.29

33.46

1

0.63

6106

114.90733

124.461943

134.307168

140.396857

I

Above

Gable

0

5701

Wood

28.87341587

0

0

1

1

0.03

nav

1

1975

2

91

NJBF000073448

9 SURF LANE

Atlantic City

NJ

39.38080956

-74.40428043

RES1

3001

16

NE

1975

1975

3102

1

1

2000.807314

2000.807314

3507

NO

13.85

19.66

1

-0.77

6106

114.917414

124.471026

134.316765

140.407475

I

Above

Gable

0

5701

Wood

16.75398001

0

1.1

1

1

0.03

nav

1

1975

1

92

NJBF000073488

1 BAY COURT

Atlantic City

NJ

39.38109885

-74.40898983

RES1

3001

16

NE

1974

1974

3103

2

1

1811.807886

1811.807886

3505

NO

37.32

42.74

3

3.77

6106

114.815188

124.380925

134.216639

140.329591

I

Above

Gable

0

5701

Wood

40.03153658

0

1.1

1

1

0.03

nav

1

1974

2

93

NJBF000073754

Atlantic City

NJ

39.38294737

-74.40707927

RES1

3001

NaN

NE

1969

0

3103

5

1

1265.817041

1265.817041

3505

NO

78.18

89.54

3

-0.44

6106

114.834628

124.397261

134.236363

140.33452

I

Above

Gable

0

5701

Wood

83.86017449

0

0

1

1

0.03

nav

1

1969

5

94

NJBF000073178

5207 OCEAN DRIVE SOUTH

Atlantic City

NJ

39.3786115

-74.4058745

RES1

3001

16

NE

1975

1975

3102

1

1

1559.859327

1559.859327

3507

NO

13.48

27.91

1

2.72

6106

114.9089

124.464131

134.307127

140.412257

I

Above

Gable

0

5701

Wood

20.69681134

0

1.1

1

1

0.03

nav

1

1975

1

95

NJBF000073451

14 OCEAN DRIVE WEST

Atlantic City

NJ

39.38083478

-74.40978279

RES1

3001

19

NE

1975

2018

3103

3

1

1316.032803

1316.032803

3505

NO

43.34

56.67

3

8.37

6106

114.801466

124.368988

134.203134

140.320703

I

Above

Gable

0

5701

Wood

50.0061653

0

1.2

1

1

0.03

nav

1

1975

3

96

NJBF000073410

5100 OCEAN DRIVE SOUTH

Atlantic City

NJ

39.3805005

-74.4029845

RES1

3001

16

NE

1975

1975

3102

2

1

2087.098046

2087.098046

3507

NO

33.37

43.42

1

-0.14

6106

114.948074

124.49818

134.346773

140.431896

I

Above

Gable

0

5701

Wood

38.39122853

0

1.1

1

1

0.03

nav

1

1975

2

97

NJBF000073235

5118 OCEAN DRIVE SOUTH

Atlantic City

NJ

39.37917983

-74.40459451

RES1

3001

19

NE

1975

1975

3102

2

1

2676.869282

2676.869282

3507

NO

31.16

44.8

1

2.04

6106

114.929286

124.481933

134.327474

140.424535

I

Above

Gable

0

5701

Wood

37.97826931

0

1.2

1

1

0.03

nav

1

1975

2

98

NJBF000073571

5213 HARBOR BEACH BLVD

Atlantic City

NJ

39.38167563

-74.40781294

RES1

3001

17

NE

2001

2001

3103

2

1

1801.137382

1801.137382

3505

NO

28.92

43.2

3

-0.27

6110

114.833457

124.39675

134.234741

140.340261

I

Above

Hip

0

5701

Wood

36.06175017

0

1.1

1

1

0.35

nav

1

2001

2

99

NJBF000073580

4 SEASIDE RD

Atlantic City

NJ

39.38176113

-74.4036258

RES1

3001

35

NE

1978

1978

3102

2

1

1898.107673

1898.107673

3507

NO

33.48

44.53

1

0.08

6106

114.920396

124.473378

134.320217

140.40489

I

Above

Gable

0

5701

Wood

39.00466222

0

1.1

1

1

0.03

nav

1

1978

2

100

NJBF000073553

5220 HARBOR BEACH BLVD

Atlantic City

NJ

39.38154878

-74.40850823

RES1

3001

16

NE

1975

1975

3103

1

1

2002.753508

2002.753508

3505

NO

12.15

26.51

3

1.09

6110

114.820268

124.385203

134.221777

140.331043

I

Above

Hip

0

5701

Wood

19.33002475

0

0

1

1

0.35

nav

1

1975

1

- - ------ - - - - - - - - - - - - - - - - - - - - - - - - -
Summary of the three building inventories.

Inventory Name

DesignSafe Document

Number of Assets

Typical Run Time

Atlantic County Inventory

Atlantic County Inventory

100,721

~ 1,500 CPU-Hour* (please see more details in Computational Resources Requirements)

Flood-Exposed Inventory

Flood-Exposed Inventory

32,828

~ 440 CPU-Hour

Exploration Inventory

Exploration Inventory

1,000

~ 12 CPU-Hour

-
-
ATC20
-

ATC (2020b), ATC Hazards By Location, https://hazards.atcouncil.org/, Applied Technology Council, Redwood City, CA.

-
-
NJGIN20(1,2)
-

NJ Geographic Information Network, State of New Jersey, https://njgin.nj.gov/njgin/#!/

-
-
Wang19(1,2)
-

Wang C. (2019), NHERI-SimCenter/SURF: v0.2.0 (Version v0.2.0). Zenodo. http://doi.org/10.5281/zenodo.3463676

-
-
Microsoft2018
-

Microsoft (2018) US Building Footprints. https://github.com/Microsoft/USBuildingFootprints

-
-
MODIV
-

Parcels and MOD-IV of Atlantic County, NJ. NJGIN Open Data, https://njogis-newjersey.opendata.arcgis.com/datasets/680b02ff9b4348409a2f4ccd4c238215.

-
-
MODIV18
-

Department of the Treasury, State of New Jersey (2018), MOD IV User Manual. https://www.state.nj.us/treasury/taxation/pdf/lpt/modIVmanual.pdf

-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/asset_representation.html b/docs/common/testbeds/atlantic_city/asset_representation.html deleted file mode 100644 index 531f6da3c..000000000 --- a/docs/common/testbeds/atlantic_city/asset_representation.html +++ /dev/null @@ -1,2332 +0,0 @@ - - - - - - - - - - Asset Representation — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Asset Representation

-

This section discusses the translation of asset descriptions into representations -of structures suitable for simulation within workflow, in this case consistent with -the HAZUS description of building classes and associated attributes, which becomes -the default data schema. Thus the description of assets below is organized according -to the HAZUS conventions for classifying buildings and organizing damage and loss data -according to attributes associated with those building classes.

-

The following discussion will reference a number of rulesets developed for this testbed -to enable various assignments of these HAZUS building classes and corresponding attributes. -Details of these rulesets are available to users in one of two forms:

-
    -
  1. Rulest definition tables (PDFs) curated in DesignSafe that include additional documentation -justifying the proposed rule, with provenance information for any sources engaged in that -rule’s development.

  2. -
  3. Scripts (in Python) curated in GitHub that implement the ruleset’s logic for this testbed.

  4. -
-

Each section provides a table linking the relevant Tables and Scripts. Note that as well -that all of the rulesets introduced herein are tiered, initiating by assigning all assets -a default value for its building classification or a given attribute based on the primary -rule. This ensures that every asset receives a HAZUS building class and related attribute -assignments, regardless of data sparsity.

-
-

Building Classifications

-

HAZUS classifies buildings based on a more nuanced interpretation of Occupancy Class -(see building inventory field OccupancyClass) based on other attributes of relevance -for a given hazard type.

-

For wind losses, HAZUS groups buildings into 5 main types by primary building material/construction -mode (wood, masonry, concrete, steel, manufactured home). Buildings must then be sub-classified -into one of 55 corresponding HAZUS building classes (HazusClass-W) based on characteristics -such as occupancy, number of stories and footprint size, using rulesets that call upon various -fields in the building inventory. The HAZUS building classifications for wind losses are listed -in bldg_class, and the corresponding rulesets (PDFs and Python scripts) are cross-referenced -later in addinfo_ruleset. Note that while rulesets were developed for marginally and non-engineered -building classes in HAZUS, these classes are not used in the current implementation of this testbed.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
HAZUS building classification for wind loss assessment.

BuildingDescription

HazusClass-W

OccupancyClass

Wood, Single-Family Homes 1 story

WSF1

RES1

Wood, Single-Family Homes 2+ stories

WSF2

RES1

Wood, Multi-Unit/Hotel/Motel 1 story

WMUH1

RES3*, RES5, RES6, COM8

Wood, Multi-Unit/Hotel/Motel 2 stories

WMUH2

RES3*, RES5, RES6, COM8

Wood, Multi-Unit/Hotel/Motel 3+ stories

WMUH3

RES3*, RES5, RES6, COM8

Wood Marginally- or Non-Engineered Multi-Unit/Hotel/Motel 1 story

WMUH1NE

RES3*, RES5, RES6, COM8

Wood Marginally- or Non-Engineered Multi-Unit/Hotel/Motel 2 stories

WMUH2NE

RES3*, RES5, RES6, COM8

Wood Marginally- or Non-Engineered Multi-Unit/Hotel/Motel 3 stories

WMUH3NE

RES3*, RES5, RES6, COM8

Wood Marginally- or Non-Engineered Multi-Unit/Hotel/Motel 4 stories

WMUH4NE

RES3*, RES5, RES6, COM8

Masonry, Single Family Homes 1 story

MSF1

RES1

Masonry, Single Family Homes 2+ stories

MSF2

RES1

Masonry, Multi-Unit/Hotel/Motel 1 story

MMUH1

RES3*, RES5, RES6, COM8

Masonry, Multi-Unit/Hotel/Motel 2 stories

MMUH2

RES3*, RES5, RES6, COM8

Masonry, Multi-Unit/Hotel/Motel 3+ stories

MMUH3

RES3*, RES5, RES6, COM8

Masonry, Low-Rise Strip Mall height < 15 ft

MLRM1

COM1, COM2

Masonry, Low-Rise Strip Mall height > 15 ft

MLRM2

COM1, COM2

Masonry, Low-Rise Industrial/Warehouse/Factory Building

MLRI

IND*

Masonry, Engineered Residential Building, Low-Rise (1-2 Stories)

MERBL

RES*

Masonry, Engineered Residential Building, Mid-Rise (3-5 Stories)

MERBM

RES*

Masonry, Engineered Residential Building, High-Rise (6+ Stories)

MERBH

RES*

Masonry, Engineered Commercial Building, Low-Rise (1-2 Stories)

MECBL

COM*

Masonry, Engineered Commercial Building, Mid-Rise (3-5 Stories)

MECBM

COM*

Masonry, Engineered Commercial Building, High-Rise (6+ Stories)

MECBH

COM*

Masonry Marginally- or Non-Engineered Multi-Unit/Hotel/Motel 1 story

MMUH1NE

RES3*, RES5, RES6, COM8

Masonry Marginally- or Non-Engineered Multi-Unit/Hotel/Motel 2 stories

MMUH2NE

RES3*, RES5, RES6, COM8

Masonry Marginally- or Non-Engineered Multi-Unit/Hotel/Motel 3 stories

MMUH3NE

RES3*, RES5, RES6, COM8

Concrete, Engineered Residential Building, Low-Rise (1-2 Stories)

CERBL

RES*

Concrete, Engineered Residential Building, Mid-Rise (3-5 Stories)

CERBM

RES*

Concrete, Engineered Residential Building, High-Rise (6+ Stories)

CERBH

RES*

Concrete, Engineered Commercial Building, Low-Rise (1-2 Stories)

CECBL

COM*

Concrete, Engineered Commercial Building, Mid-Rise (3-5 Stories)

CECBM

COM*

Concrete, Engineered Commercial Building, High-Rise (6+ Stories)

CECBH

COM*

Steel, Pre-Engineered Metal Building, Small

SPMBS

COM*, IND*, EDU*, AGR*, REL*, GOV*

Steel, Pre-Engineered Metal Building, Medium

SPMBM

COM*, IND*, EDU*, AGR*, REL*, GOV*

Steel, Pre-Engineered Metal Building, Large

SPMBL

COM*, IND*, EDU*, AGR*, REL*, GOV*

Steel, Engineered Residential Building, Low-Rise (1-2 Stories)

SERBL

RES*

Steel, Engineered Residential Building, Mid-Rise (3-5 Stories)

SERBM

RES*

Steel, Engineered Residential Building, High-Rise (6+ Stories)

SERBH

RES*

Steel, Engineered Commercial Building, Low-Rise (1-2 Stories)

SECBL

COM*

Steel, Engineered Commercial Building, Mid-Rise (3-5 Stories)

SECBM

COM*

Steel, Engineered Commercial Building, High-Rise (6+ Stories)

SECBH

COM*

Manufactured Home, Pre-HUD

MHPHUD

RES2

Manufactured Home, 1976 HUD

MH76HUD

RES2

Manufactured Home, 1994 HUD - Wind Zone I

MH94HUD-I

RES2

Manufactured Home, 1994 HUD - Wind Zone II

MH94HUD-II

RES2

Manufactured Home, 1994 HUD - Wind Zone III

MH94HUD-III

RES2

Essential Facility - Fire Station

HUEFFS

GOV2

Essential Facility - Elementary School

HUEFSS

EDU1

Essential Facility - High School (2 Story)

HUEFSM

EDU1

Essential Facility - High School (3 Story)

HUEFSL

EDU1

Essential Facility - Hospital Small (<50 beds)

HUEFHS

COM6

Essential Facility - Hospital Medium (50-150 beds)

HUEFHM

COM6

Essential Facility - Hospital Large (>150 beds)

HUEFHL

COM6

Essential Facility - Police Station

HUEFPS

GOV2

Essential Facility - Emergency Operation Centers

HUEFEO

GOV2

-

For flood losses, HAZUS groups buildings into one of 32 classifications based on the building use -and other features. A separate ruleset was developed to assign buildings into one of these classes -associated with inundation by water (HazusClass-IN). The HAZUS building classifications for flood -losses are listed in flood_bldg_class, and the corresponding rulesets (PDFs and Python scripts) -are cross-referenced later in addinfo_ruleset.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
HAZUS building classification for flood loss assessment.

Occupancy

HazusClass-IN

OccupancyClass

Single-family home

SF1XA

RES1

Single-family home

SF1XV

RES1

Single-family home

SF2XA

RES1

Single-family home

SF2XV

RES1

Single-family home

SF2BA

RES1

Single-family home

SF2BV

RES1

Single-family home

SF2SA

RES1

Single-family home

SF2SV

RES1

Mobile Home

MH

RES2

Apartment

APT

RES3

Hotel and Motel

HOT

RES4

Nursing Home

NURSE

RES5, RES6

Retail

RETAIL

COM1

Wholesale/warehouse

WHOLE

COM2

Personal and Repair Services

SERVICE

COM3

Business and Office

OFFICE

COM4

Bank

BANK

COM5

Hospital

HOSP

COM6

Medical Office / Clinic

MED

COM7

Entertainment & Recreation

REC

COM8

Theatre

THEAT

COM9

Garage

GARAGE

COM10

Heavy Industry

INDH

IND1

Light Industry

INDL

IND2

Food/Drug/Chemical Industry

CHEM

IND3, IND5

Metals/Mineral Processing

PROC

IND4

Construction

CONST

IND6

Agricultural

AGRI

AGR1

Church

RELIG

REL1

City Hall / Post Office

CITY

GOV1

Police Station / Fire Station

EMERG

GOV2

School / Library

SCHOOL

EDU1, EDU2

IND1

USACE - Galveston

Average heavy industrial, Structure

IND2

USACE - Galveston

Average light industrial, structure

IND3

USACE - Galveston

Average Food/Drug/Chem, Structure

IND4

USACE - Galveston

Average Metals/Minerals processing, structure

IND5

USACE - Galveston

Average High Technology, structure

IND6

USACE - Galveston

Average Construction, structure

AGR1

USACE - Galveston

Average Agriculture, structure

REL1

USACE - Galveston

Church, structure

GOV1

USACE - Galveston

Average government services, structure

GOV2

USACE - Galveston

Average emergency response, Structure

EDU1

USACE - Galveston

Average school, structure

EDU2

USACE - Galveston

Average college/university, structure

-

For wave-induced losses, HAZUS groups buildings into one of 10 classifications based on the building -use, construction material and number of stories. A separate ruleset was developed to assign buildings -into one of these classes associated with losses driven by wave action (HazusClass-WA). The HAZUS -building classifications for wave-induced losses are listed in wave_bldg_class, and the corresponding -rulesets (PDFs and Python scripts) are cross-referenced in addinfo_ruleset.

- - ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
HAZUS building classification for wave-induced loss assessment.

Occupancy

HazusClass-WA

Wood 1 Story

W1

Wood 2 Story

W2

Wood 3 Story

W3

Masonry/Concrete 1 Story

MC1

Masonry/Concrete 2 Story

MC2

Masonry/Concrete 3 Story

MC3

Steel 1 Story

S1

Steel 2 Story

S2

Steel 3 Story

S3

Mobile Home

MH

- - ----- - - - - - - - - - - - - - - - - - - - - -
Additional details for rulesets assigning HAZUS building class

Ruleset Name

Ruleset Definition Table

Python script

Building Class Rulesets - Wind

HAZUS Building Class Rulesets - Wind.pdf

WindClassRulesets

Building Class Rulesets - Flood

HAZUS Building Class Rulesets - Flood.pdf

FloodClassRulesets

Building Class Rulesets - Wave

HAZUS Building Class Rulesets - Wave.pdf

To be released.

-
-
-

Building Attributes

-

Within each of these building classes, e.g., wood single-family homes 1-2+ stories, the HAZUS Hurricane -Technical Manual (HHTM) further differentiates buildings based on asset attributes and the hazard type -(e.g., wind vs. flood) for the purpose of loss estimation. These attributes define key features of the -load path and components (e.g., roof shape, secondary water resistance, roof deck attachment, roof-wall -connection, shutters, garage), and the number of attributes necessary to describe a given building varies.

-

As these attributes are beyond what is typically encompassed in a building inventory, this testbed developed -and implemented a library of rulesets to infer the HAZUS-required attributes based upon the fields available -in the Building Inventory, legacy building codes in New Jersey, local construction practices/norms, surveys -capturing owner-driven mitigation actions (e.g., [Javeline19]) and market/industry data. -Where possible, the rulesets are time-evolving, considering the age of construction to determine the governing -code edition and availability of specific mitigation measures in the market. Though reliant on engineering -judgement and historical data availability, each rule provides detailed notes cross-referencing the various -documents and practices that governed that era of construction and thus informed the ruleset formation. -In cases where engineering judgement was required, rules were assigned based on what was understood to be -the most common construction practice. In cases where that was not clear, the ruleset assigned the most -vulnerable configuration for a more conservative approach to loss estimation. wind_bldg_attri -and flood_bldg_attri list the attributes for the wind and flood loss assessments.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Building attributes for wind loss assessment.

Attribute

Description

Format

HazusClass-W

Hazus building classes as defined for wind hazards

CHOICES: WSF1, WSF2, WMUH1, WMUH2, WMUH3, WMUH1NE, WMUH2NE, WMUH3NE, WMUH4NE, MSF1, MSF2, MMUH1, MMUH2, MMUH3, MLRM1, MLRM2, MLRI, MERBL, MERBM, MERBH, MECBL, MECBM, MECBH, MMUH1NE, MMUH2NE, MMUH3NE, CERBL, CERBM, CERBH, CECBL, CECBM, CECBH, SPMBS, SPMBM, SPMBL, SERBL, SERBM, SERBH, SECBL, SECBM, SECBH, MHPHUD, MH76HUD, MH94HUD-I, MH94HUD-II, MH94HUD-III, HUEFFS, HUEFSS, HUEFSM, HUEFSL, HUEFHS, HUEFHM, HUEFHL, HUEFPS, HUEFEO

RoofSystem

Underlying roof structure, applies only to masonry buildings

Choices: Wood, OWSJ

HPR

Defines Hazard Prone Regions (HPR) for the purposes of Hazus wind vulnerability assignments for WSF1-2

Choices: yes, no

WBD

Defines Wind Borne Debris (WBD) for the purposes of Hazus wind vulnerability assignments for WSF1-2

Choices: yes, no

SWR

Defines Secondary Water Resistance (SWR) for the purposes of Hazus wind vulnerability assignments for WSF1-2, WMUH1-3, MSF1-2, MMUH1-3

Choices: yes, no

RoofCvr

Defines roof cover for the purposes of Hazus wind vulnerability assignments for WMUH1-3, MMUH1-3, MERBL-M-H, MECBL-M-H, MLRI, MLRM1, MLRM2, SERBL-M-H, SECBL-M-H, CECBL-M-H, CERBL-M-H and Fire Stations (HUEFFS), Elementary Schools (HUEFSS), 2-story High School (HUEFSM) and 3-story High School (HUEFSL) and Hospitals (small - HUEFHS, medium - HUEFHM, large - HUEFHL) and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: N/A, BUR, SPM

RoofQual

Defines roof cover quality for the purposes of Hazus wind vulnerability assignments for WMUH1-3, MMUH1-3, MLRI

Choices: N/A, poor, good

RDA-Wood

Defines Roof Deck Attachment (RDA) for wood for the purposes of Hazus wind vulnerability assignments for WSF1-2, WMUH1-3, MMUH1-3, MSF1-2, MLRM1, MLRM2

Choices: A, B, C, D

RDA-OWSJ

Defines Roof Deck Attachment (RDA) for OWSJ for the purposes of Hazus wind vulnerability assignments for MSF1-2

Choices: smtl standard, smtl superior, cshl standard, cshl superior

R2WC

Defines Roof to Wall Connection (R2WC) for the purposes of Hazus wind vulnerability assignments for WSF1-2, WMUH1-3, MMUH1-3, MSF1-2, MLRM1, MLRM2

Choices: strap, toe-nail

shutters

Defines use of window opening protection for the purposes of Hazus wind vulnerability assignments for WSF1-2, WMUH1-3, MMUH1-3, MSF1-2, MERBL-M-H, MECBL-M-H, MMUH1-3,MLRM1, MLRM2, SERBL-M-H, SECBL-M-H, CECBL-M-H, CERBL-M-H, SPMBS-M-L, MH94HUDI-II-III, MH76HUD, MHPHUD and Fire Stations (HUEFFS), Elementary Schools (HUEFSS), 2-story High School (HUEFSM) and 3-story High School (HUEFSL) and Hospitals (small - HUEFHS, medium - HUEFHM, large - HUEFHL) and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: yes, no

Agarage

Defines presence of attached garage for the purposes of Hazus wind vulnerability assignments for WSF1-2, MSF1-2

Choices: none, SFBC 1994, standard, weak

Mreinf

Defines presence of reinforcement in masonry walls for the purposes of Hazus wind vulnerability assignments for MSF1-2, MLRI, MLRM1, MLRM2, MMUH1-3

Choices: yes, no

OWSJ-r

Defines property of OWSJ required for Hazus wind vulnerability assignments for MSF1-2

Choices: cshl, smtl

Metal-RDA

Defines Metal Roof Deck Attachment (RDA) for purposes of Hazus wind vulnerability assessments for MLRI, MERBL-M-H, MECBL-M-H, MLRM1, MLRM2, SERBL-M-H, SECBL-M-H, SPMBS-M-L and Fire Stations (HUEFFS), Elementary Schools (HUEFSS), 2-story High School (HUEFSM) and 3-story High School (HUEFSL) and Hospitals (small - HUEFHS, medium - HUEFHM, large - HUEFHL) and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: standard, superior

RDage

Defines roof deck age for the purposes of Hazus wind vulnerability assessments for MLRM1, MLRM2, SPMBS-M-L and Fire Stations (HUEFFS), Elementary Schools (HUEFSS)

Choices: new/avg, old

UnitClass

Defines number of units in strip mall for purposes of Hazus wind vulnerability assessments for MLRM2

Choices: single, multi

JoistSpace

Defines joist spacing for multi-unit strip malls for purposes of Hazus wind vulnerability assessments for MLRM2

Choices: N/A, 4, 6

WindDebris

Defines likely sources of wind debris for purpose of Hazus wind vulnerability assessments for MERBL-M-H, MECBL-M-H, MLRM1, MLRM2, SERBL-M-H, SECBL-M-H, CECBL-M-H, CERBL-M-H and Fire Stations (HUEFFS), Elementary Schools (HUEFSS), 2-story High School (HUEFSM) and 3-story High School (HUEFSL) and Hospitals (small - HUEFHS, medium - HUEFHM, large - HUEFHL) and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: Res/Comm, Varies by Direction, Residential, None, A, B, C, D

WWR

Defines window to wall ratio (WWR) for purpose of Hazus wind vulnerability assessments for MERBL-M-H, MECBL-M-H, SERBL-M-H, SECBL-M-H, CECBL-M-H, CERBL-M-H and Police Stations (HUEFPS), Emergency Operation Centers (HUEFEO)

Choices: low, medium, high

TieDowns

Defines use of ties to connect mobile homes to foundations per HUD guidelnes for purpose of Hazus wind vulnerability assessments for MH94HUDI-II-III, MH76HUD, MHPHUD

Choices: yes, no

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Building attributes for flood loss assessment.

Attribute

Description

Format

HazusClass-IN

Hazus building classes as defined for inundation (flooding)

Choices: SF1XA, SF1XV, SF2XA, SF2XV, SF2BA, SF2BV, SF2SA, SF2SV, MH, APT, HOT, NURSE, RETAIL, WHOLE, SERVICE, OFFICE, BANK, HOSP, MED, REC, THEAT, GARAGE, INDH, INDL, CHEM, PROC, CONST, AGRI, RELIG, CITY, EMERG, SCHOOL

HazusClass-WA

Hazus building classes as defined for wave action

Choices: W1, W2, W3, MC1, MC2, MC3, S1, S2, S3, MH

FloodType

Assignment to flood zones as defined for Hazus damage/loss descriptions

Choices: Riverine/A-Zone, Coastal/A-Zone, -Coastal/V-Zone

FirstFloorElev

Assignment of first floor height as defined by Hazus

Floating Point Number

PostFIRM

Assignment of FIRM phasing as defined by Hazus

Choices: Yes, No

NumberofStories

Initalizing number of stories for Hazus analysis

integer

BasementType

Assignement of basement type for Hazus analysis

Choices: Basement, Split-Level Basement, No Basement

OccupancyType

Assignment of Occupancy type for Hazus analysis

Choices: SF1XA, SF1XV, SF2XA, SF2XV, SF2BA, SF2BV, SF2SA, SF2SV, MH, APT, HOT, NURSE, RETAIL, WHOLE, SERVICE, OFFICE, BANK, HOSP, MED, REC, THEAT, GARAGE, INDH, INDL, CHEM, PROC, CONST, AGRI, RELIG, CITY, EMERG, SCHOOL

Duration

Assignment of storm suration for Hazus Analysis

Short, Long

Wave Velocity

Definition of wave velocity in ft/s for Hazus Analysis

Floating Point Number

-

Note that rulesets for assigning wind loss attributes call upon two meta-variables relevant to wind losses -for any building: “Hazard Prone Region” and “Wind Borne Debris,” which are assigned based the design wind -speed at the asset location (Building Inventory field “DSWII”) and the flood zone (building inventory field -FloodZone), per New Jersey code. These rules used to assign these meta-variables are provided in -addinfo_ruleset_metavar. Also note that the roof shape (building inventory field RoofShape), -derived from aerial imagery, and terrain roughness (building inventory field Terrain), derived from -Land Use Land Cover data, are also attributes required by the HAZUS wind loss model. As these were already -assigned in the Asset Description, they are not discussed again herein.

- - ----- - - - - - - - - - - - - -
Additional details for rulesets for meta-variables in wind loss attribute assignment in HAZUS

Ruleset Name

Ruleset Definition Table

Python script

Attribute Assignment - Wind (Meta-Variable)

Hazus Building Attribute Rulesets - Wind - Meta-Variables.pdf

WindMetaVarRulesets

-

Finally, all of the rulesets used to assign attributes include a default value that can be updated based -on available data, ensuring that each asset receives all the attribute assignments necessary to identify -the appropriate Hazus fragility description. The following sections summarize the rulesets used for -attribute assignments for specific classes of buildings. Additional attributes assigned to assets are -discussed in the following subsections, organized by hazard and building class, where applicable.

-
-

Wind Loss Attributes for Wood Buildings

-

The wind loss model in HAZUS classifies wooden buildings into five building classes:

-
    -
  1. two single family homes (WSF1 and WSF2) and

  2. -
  3. three for multi-unit homes (WMUH1, WMUH2, and WMUH3)

  4. -
-

Their required attributes for wind loss modeling, the possible entries (values, terms) that can be -assigned for those attributes, and the basis for the ruleset developed to make that assignment are -summarized in wsf_attri and wmuh_attri. Note that these rulesets were developed -to reflect the likely attributes based on the year of construction and the code editions and -construction norms at that time. The corresponding time-evolving rulesets (PDFs and Python scripts) -are cross-referenced in addinfo_ruleset_wood.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for wood single family (WSF) homes: wind losses.

Attribute

Valid Entries

Basis

secondary water resistance (SWR)

yes | no

Codes/standards/human subjects data

roof deck attachment

6d @ 6”/12” | 8d @ 6”/12”| 6d/8d mix @ 6”/6” | 8d @ 6”/6”

Codes/standards

roof-wall connection

strap | toe-nail

Codes/standards

shutters

yes | no

Codes/standards/human subjects data

garage

shuttered houses = garage II (SFBC 1994, none) | unshuttered house = garage I (none, weak, standard)

Trends/norms

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for wood multi-unit home (WMUH): wind losses.

Attribute

Valid Entries

Basis

secondary water resistance (SWR)

yes | no

Codes/standards

roof cover

N/A | BUR | SPM

Trends/norms

roof quality

N/A | poor | good

Trends/norms

roof deck attachment

6d @ 6”/12” | 8d @ 6”/12” | 6d/8d mix @ 6”/6” | 8D @ 6”/6”

Codes/standards

roof-wall connection

strap | toe-nail

Codes/standards

shutters

yes | no

Codes/standards/human subjects data

- - ----- - - - - - - - - - - - - - - - - -
Additional details for rulesets assigning wind loss attributes for wood buildings

Ruleset Name

Ruleset Definition Table

Python script

HAZUS Building Attribute Rulesets - Wind (WSF1-2)

Hazus Building Attribute Rulesets - Wind - WSF1-2.pdf

WindWSFRulesets

HAZUS Building Attribute Rulesets - Wind (WMUH1-3)

Hazus Building Attribute Rulesets - Wind - WMUH1-3.pdf

WindWMUHRulesets

-

Taking the attribute Second Water Resistance (SWR) as an example, the SWR attribute is assigned by -a series of time-evolving rules calling upon four fields in the building inventory: year built, -roof shape, roof slope, and average temperature in January. swr_attri provides the -detailed rules that map these four variables to the Second Water Resistance (SWR) attribute. -This example demonstrates an instance where the attribute is assigned as a random variable, -based on the fact that secondary water resistance is not required by code, though surveys -of homeowners in hurricane-prone areas can be used to infer how many may have voluntarily -adopted this mitigation practice.

- - ------ - - - - - - - - - - - - - - - - - - - -
Ruleset for determining the Second Water Resistance attribute for WSF homes.

Time Period

YearBuiltNJDEP > 2000

1983 < YearBuiltNJDEP < 2000

YearBuilt <= 1983

Ruleset

Assign as a Random Variable (RV) -IF RoofShape = Gable OR Hip, SWR = yes (RV = 60%) -IF RoofShape = Gable OR Hip, SWR = no (RV = 40%)

IF RoofShape=Flat, SWR=yes -ELSEIF RoofShape=(Gable or Hip) & RoofSlope <= 0.17, SWR=yes -ELSEIF RoofShape=(Gable or Hip) & RoofSlope (> 0.17 & < 0.33) & AvgJanTemp=Below, SWR=yes -ELSEIF RoofShape=(Gable or Hip) & RoofSlope (> 0.17 & < 0.33) & AvgJanTemp=Above, SWR=no -ELSEIF RoofShape=(Gable or Hip) & RoofSlope >= 0.33, SWR=no

SWR = no

Note

Minimum drainage recommendations are in place in NJ (See below). However, SWR indicates a code-plus practice. Use homeowner compliance data from NC Coastal Homeowner Survey (2017) to capture potential human behavior (% of sealed roofs in NC dataset). Minimum Code Requirements: R903.4 Roof Drainage. Unless roofs are sloped to drain over roof edges, roof drains shall be installed at each low point of the roof: R903.4.1 Secondary (Emergency Overflow) Drains or Scuppers: Where roof drains are required, secondary emergency overflow roof drains or scuppers shall be provided where the roof perimeter construction extends above the roof in such a manner that water will be entrapped if the primary drains allow buildup for any reason.

This rule applies until 1984, for anything from 1983 or earlier, there is no information available so this rule will continue to be applied.

-

According to 903.2 in the 1995 CABO, for roofs with slopes between 2:12 and 4:12, an underlayment consisting of two layers of No. 15 felt must be applied. In severe climates (less than or equal to 25 degrees average in January), these two layers must be cemented together. According to 903.3 in the 1995 CABO, roofs with slopes greater than or equal to 4:12 shall have an underlayment of not less than one ply of No. 15 felt. Two layers of felt cemented together is considered to be secondary water resistance. This ruleset is for asphalt shingles. Almost all other roof types require underlayment of some sort, but the ruleset is based on asphalt shingles because it is most conservative.

-

According to table No. R-803.4 in 1992 CABO, for roofs with slopes between 2:12 and 4:12 in severe climates (less than or equal to 25 degrees average in January), one layer no 40 coated roofing or coated glass base sheet from the eves to 12 inches inside the exterior wall line is required. The rule used for asphalt shingles is assumed to apply to every roof because more specific requirements based on roofing type were not specified.

-

According to R-803.3 in the 1989 CABO, for roofs with slopes between 2:12 and 4:12, an underlayment consisting of two layers of No. 15 felt must be applied. In severe climates (less than or equal to 25 degrees average in January), these two layers must be cemented together. According to R803.2 in the 1989 CABO, roofs with slopes greater than or equal to 4:12 shall have an underlayment of not less than one ply of No. 15 felt. Two layers of felt cemented together is considered to be secondary water resistance. This ruleset is for asphalt shingles. Almost all other roof types require underlayment of some sort, but the ruleset is based on asphalt shingles because it is most conservative.

-

According to R-803.3 in 1986 CABO, for roofs with slopes between 2:12 and 4:12 in severe climates (less than or equal to 25 degrees average in January), one layer no 40 coated roofing or coated glass base sheet from the eves to 12 inches inside the exterior wall line is required. The rule used for asphalt shingles is assumed to apply to every roof because more specific requirements based on roofing type were not specified. According to R-803.1 and R-803.2 in 1983 CABO, for roofs with slopes between 2:12 and 4:12 in severe climates (less than or equal to 25 degrees average in January), two layers of Type 15 felt must be applied and cemented together from the eaves up the roof to overlie a point twenty four inches inside the interior of the building.

-

Default

-
-
-

Wind Loss Attributes for Masonry Buildings

-

The masonry buildings have 14 building classes: Their key attributes that influence the fragility -functions are listed in msf_attri, mmuh_attri, mlrm_attri, -merb_attri, mecb_attri, and mlri_attri.

-

The wind loss model in HAZUS classifies masonry buildings into 14 building classes: -1. two masonry single family home classes (MSF1 and MSF2) -2. three masonry multi-unit home classes (MMUH1, MMUH2, and MMUH3) -3. two masonry low-Rise strip mall classes (MLRM1 and MLRM2) classes -4. three masonry engineered residential building classes (MERBL, MERBM, and MERBH) -5. three Masonry engineered commercial building classes (MECBL, MECBM, and MECBH) and -6. one masonry low-rise industrial building class (MLRI).

-

Their required attributes for wind loss modeling, the possible entries (values, terms) that can be -assigned for those attributes, and the basis for the ruleset developed to make that assignment -are summarized in msf_attri, mmuh_attri, mlrm_attri, merb_attri, -mecb_attri, mlri_attri. Note that these rulesets were developed to reflect -the likely attributes based on the year of construction and the code editions and construction -norms at that time. The corresponding time-evolving rulesets (PDFs and Python scripts) are -cross-referenced in addinfo_ruleset_masonry.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for masonry single family (MSF) homes: wind losses.

Attribute

Valid Entries

Basis

roof-wall connection

strap | toe-nail

Codes/standards

secondary water resistance (SWR)

yes | no

Codes/standards/human subjects data

shutters

yes | no

Codes/standards/human subjects data

garage

shuttered houses = garage II (SFBC 1994, none) | unshuttered house = garage I (none, weak, standard)

Trends/norms

masonry reinforcement

yes | no

Trends/norms

roof deck attachment (wood truss roof only)

6d @ 6”/12” | 8d @ 6”/12”| 6d/8d mix @ 6”/6” | 8d @ 6”/6”

Codes/standards

roof deck attachment (steel joist roof only)

sheet metal standard | sheet metal superior | cover shingle stanford | cover shingle superior

Trends/norms

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for masonry multi-unit homes (MMUH): wind losses.

Attribute

Valid Entries

Basis

secondary water resistance/human subjects data

yes | no

Codes/standards

roof cover

N/A | BUR | SPM

Trends/norms

roof quality

N/A | poor | good

Trends/norms

roof deck attachment

6d @ 6”/12” | 8d @ 6”/12” | 6d/8d mix @ 6”/6” | 8D @ 6”/6”

Codes/standards

roof to wall connection

strap | toe-nail

Codes/standards

shutters

yes | no

Codes/standards/human subjects data

masonry reinforcement

yes | no

Trends/norms

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for masonry low-rise strip malls (MLRM): wind losses.

Attribute

Valid Entries

Basis

roof cover

N/A | BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

masonry reinforcement

yes | no

Codes/standards

wind borne debris

residential | commercial

Trends/norms

roof deck attachment (wood truss roof only)

6d @ 6”/12” | 8d @ 6”/12”| 6d/8d mix @ 6”/6” | 8d @ 6”/6”

Codes/standards

roof to wall connection (wood truss roof only)

strap | toe-nail

Codes/standards

roof deck attachment (steel joist roof only)

standard | superior

Trends/norms

roof deck age (steel joist roof only)

new | average | old

Trends/norms

unit class (steel joist roof and MLRM2 only)

single | multiple

Trends/norms

joist space (steel joist roof and MLRM2 only)

N/A | 4 | 6

Trends/norms

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for masonry engineered residential buildings (MERB): wind losses.

Attribute

Valid Entries

Basis

roof cover

N/A | BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris

residential | commercial

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

window wall ratio

low | medium | high

Trends/norms

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for HAZUS masonry engineered commercial buildings (MECB): wind losses.

Attribute

Valid Entries

Basis

roof cover

N/A | BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris

residential | commercial

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

window wall ratio

low | medium | high

Trends/norms

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for masonry low-rise industrial buildings (MLRI): wind losses.

Attribute

Valid Entries

Basis

masonry reinforcement

yes | no

Codes/standards

roof cover

N/A | BUR | SPM

Trends/norms

roof quality

N/A | poor | good

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional details for rulesets assigning wind loss attributes for masonry buildings

Ruleset Name

Ruleset Definition Table

Python script

HAZUS Building Attribute Rulesets - Wind (MSF1-2)

Hazus Building Attribute Rulesets - Wind - MSF1-2.pdf

WindMSFRulesets

HAZUS Building Attribute Rulesets - Wind (MMUH1-3)

Hazus Building Attribute Rulesets - Wind - MMUH1-3.pdf

WindMMUHRulesets

HAZUS Building Attribute Rulesets - Wind (MLRM1)

Hazus Building Attribute Rulesets - Wind - MLRM1.pdf

WindMLRMRulesets

HAZUS Building Attribute Rulesets - Wind (MLRM1)

Hazus Building Attribute Rulesets - Wind - MLRM2.pdf

WindMLRMRulesets

HAZUS Building Attribute Rulesets - Wind (MERBL-M-H)

Hazus Building Attribute Rulesets - Wind - MERBL-M-H.pdf

WindMERBRulesets

HAZUS Building Attribute Rulesets - Wind (MECBL-M-H)

Hazus Building Attribute Rulesets - Wind - MECBL-M-H.pdf

WindMECBRulesets

HAZUS Building Attribute Rulesets - Wind (MLRI)

Hazus Building Attribute Rulesets - Wind - MLRI.pdf

WindMLRIRulesets

-

Taking the attribute shutters as an example, the shutters attribute is assigned based on time-evolving -rules calling upon two fields in the building inventory: year built and the site’s exposure to wind borne -debris (WBD). sht_attri provides the detailed rules that map these two variables to the shutters -attribute. This example demonstrates an instance where the attribute is assigned by a code-based -rule for modern construction, but older construction is assigned as a random variable, based on the -fact that shutters were not codified before 2000 IBC, but human subjects data suggests potential -rates of voluntary shutter use. It is assumed that shutters are used only in areas susceptible to WBD.

- - ----- - - - - - - - - - - - - - - - - -
Ruleset for determining the shutter use for masonry engineered commercial buildings.

Time Period

YearBuiltNJDEP > 2000

YearBuiltNJDEP < 2000

Ruleset

IF WBD = yes, shutter = yes; IF WBD = no, shutter = no.

IF WBD = yes, Assign as Random Variable (RV): shutters = yes (RV = 46%), shutters = no (RV = 54%)

Note

1609.1.2 in 2015 IBC: Protection of Openings. In wind-borne debris regions, glazing in buildings shall be impact resistant or protected with an impact-resistant covering meeting the requirements of an approved impact-resistant covering meeting the requirements of an approved impact-resistant standard. -Exceptions: Wood structural panels with a minimum thickness of 7/16 of an inch and a maximum panel span of 8 feet shall be permitted for opening protection in buildings with a mean roof height of 33 feet or less that are classified as a Group R-3 or R-4 occupancy.

-

1609.1.2 Protection of Openings in the 2006 NJ IBC. In wind-borne debris regions, glazing in buildings shall be impact resistant or protected with an impact-resistant covering meeting the requirements of an approved impact-resistant covering meeting the requirements of an approved impact-resistant standard. -Exceptions: Wood structural panels with a minimum thickness of 7/16 of an inch and a maximum panel span of 8 feet shall be permitted for opening protection in buildings with a mean roof height of 33 feet or less that are classified as a Group R-3 or R-4 occupancy.

-

1609.1.4 Protection of Openings in the 2000 NJ IBC. In wind-borne debris regions, glazing in the lower 60 feet in buildings is required to be impact-resistant or meet standards of the Large and Small Missile Test. -Exceptions: Wood structural panels with a minimum thickness of 7/16 of an inch and a maximum panel span of 8 feet shall be permitted for opening protection in one or two story buildings.

-

Shutters were not required by code until the 2000 IBC. Before 2000, the percentage of commercial buildings that have shutters is assumed to be 46%. This value is based on a study on preparedness of small businesses for hurricane disasters, which says that in Sarasota County, 46% of business owners had taken action to wind-proof or flood-proof their facilities. In addition to that, 46% of business owners reported boarding up their businesses before Hurricane Katrina. In addition, compliance rates based on the Homeowners Survey data hover between 43 and 50 percent.

-

Source: -https://www.sciencedirect.com/science/article/pii/S2212420916303855

-
-
-
-

Wind Loss Attributes for Steel Buildings

-

The wind loss model in HAZUS classifies steel buildings into nine building classes: -1. three steel engineered residential building classes (SERBL, SERBM, and SERBH) -2. three steel engineered commercial building classes (SECBL, SECBM, and SECBH) and -3. three steel pre-engineered metal building systems (SPMBS, SPMBM, SPMBL).

-

Their required attributes for wind loss modeling, the possible entries (values, terms) that -can be assigned for those attributes, and the basis for the ruleset developed to make that -assignment are summarized in serb_attri, secb_attri, spmb_attri:. -Note that these rulesets were developed -to reflect the likely attributes based on the year of construction and the code editions and -construction norms at that time. The corresponding time-evolving rulesets (PDFs and Python -scripts) are cross-referenced in addinfo_ruleset_steel.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for steel engineered residential buildings (SERB): wind losses.

Attribute

Valid Entries

Basis

roof cover

N/A | BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris

residential | commercial

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

window wall ratio

low | medium | high

Trends/norms

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for steel engineered commercial buildings (SECB): wind losses.

Attribute

Valid Entries

Basis

roof cover

N/A | BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris

residential | commercial

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

window wall ratio

low | medium | high

Trends/norms

- - ----- - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for steel pre-engineered metal building systems (SPMB): wind losses.

Attribute

Valid Entries

Basis

shutters

yes | no

Codes/standards/human subjects data

roof deck age

new | average | old

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

- - ----- - - - - - - - - - - - - - - - - - - - - -
Additional details for rulesets assigning wind loss attributes for steel buildings

Ruleset Name

Ruleset Definition Table

Python script

HAZUS Building Attribute Rulesets - Wind (SERBL-M-H)

Hazus Building Attribute Rulesets - Wind - SERBL-M-H.pdf

WindSERBRulesets

HAZUS Building Attribute Rulesets - Wind (SECBL-M-H)

Hazus Building Attribute Rulesets - Wind - SECBL-M-H.pdf

WindSECBRulesets

HAZUS Building Attribute Rulesets - Wind (SPMBS-M-L)

Hazus Building Attribute Rulesets - Wind - SPMBS-M-L.pdf

WindSPMBRulesets

-

Taking the attribute wind to wall ratio (WWR) as an example, the WWR attribute is assigned based on a -rule that calls upon the window area estimate from the building inventory (field: WindowArea). wwr_attri -provides the detailed rule that maps this variable to the WWR attribute. Note that WindowArea is a field -that can be estimated from streetview data, but this rule also demonstrates how the value can be estimated -based on industry norms (see explanation surrounding default value). This attribute is not assumed to evolve -with time.

- - ----- - - - - - - - - - - - - - - - - -
Ruleset for determining the window to wall ratio for steel engineered commercial buildings.

Time Period

YearBuiltNJDEP <= 2000

YearBuiltNJDEP > 2000

Ruleset

IF 0.2 <= WindowArea < 0.33, WWR = Low; -IF 0.33 <= WindowArea < 0.5, WWR = Medium; -IF 0.5 <= WindowArea, WWR = High; -IF RoofShape = Gable OR Hip, SWR = yes (RV = 60%); -IF RoofShape = Gable OR Hip, SWR = no (RV = 40%)

WWR = medium

Note

HAZUS defines these categories on window to wall ratios (WWR) as follows: -Low: 20% <= WWR < 33% -Medium: 33% <= WWR < 50% -High: WWR <= 50%

-

If WindowArea information available in Custom Inventory from street view data, this should be used to determine the Window Area being low, medium, or high. If this information is not available, all engineered residential buildings are assumed to have low window area. This ruleset was created from the information on the Reference Buildings from the Office of Energy Efficiency and Renewable Energy. Baltimore, MD was used as the test city because the climate was the most similar to Atlantic City of the data available. Office buildings (used as a test case for commercial), have 33% WWR and apartments (used as a test case for residential) have 15% WWR. Therefore, commercial is assumed to have medium window area, whereas residential buildings are assumed to have low window area.

-

Source: https://www.energy.gov/eere/downloads/reference-buildings-building-type-midrise-apartment

-

Default

-
-
-

Wind Loss Attributes for Concrete Buildings

-

The wind loss model in HAZUS classifies steel buildings into 6 building classes: -1. three concrete engineered residential building classes (CERBL, CERBM, and CERBH) and -2. three concrete engineered commercial building classes (CECBL, CECBM, and CECBH).

-

Their required attributes for wind loss modeling, the possible entries (values, terms) that can be assigned -for those attributes, and the basis for the ruleset developed to make that assignment are summarized in -cerb_attri and cecb_attri. Note that these rulesets were developed to reflect the likely -attributes based on the year of construction and the code editions and construction norms at that time. -The corresponding time-evolving rulesets (PDFs and Python scripts) are cross-referenced in addinfo_ruleset_concrete.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for concrete engineered residential buildings (CERB): wind losses.

Attribute

Valid Entries

Basis

roof cover

N/A | BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris

residential | commercial

Trends/norms

window wall ratio

low | medium | high

Trends/norms

terrain roughness

open (0.03) | light suburban (0.15) | suburban (0.35) | light trees (0.70) | trees (1.00)

Land Use/Land Cover

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for concrete engineered commercial buildings (CECB): wind losses.

Attribute

Valid Entries

Basis

roof cover

N/A | BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris

residential | commercial

Trends/norms

window wall ratio

low | medium | high

Trends/norms

- - ----- - - - - - - - - - - - - - - - - -
Additional details for rulesets assigning wind loss attributes for concrete buildings.

Ruleset Name

Ruleset Definition Table

Python script

HAZUS Building Attribute Rulesets - Wind (CERBL-M-H)

Hazus Building Attribute Rulesets - Wind - CERBL-M-H.pdf

WindCERBRulesets

HAZUS Building Attribute Rulesets - Wind (CECBL-M-H)

Hazus Building Attribute Rulesets - Wind - CECBL-M-H.pdf

WindCECBRulesets

-

Taking the attribute roof cover (RoofCvr) as an example, the RoofCvr attribute is assigned based on a -ruleset that calls upon the roof shape and year built from the building inventory. rc_attri -provides the detailed rule that maps these variables to the RoofCvr attribute. This provides an example of an -attribute that is inferred from construction practices based on when different roof cover products entered -the market.

- - ----- - - - - - - - - - - - - - - - - -
Ruleset for determining the window to wall ratio for concrete engineered residential buildings.

Time Period

YearBuiltNJDEP >= 1975

YearBuiltNJDEP < 1975

Ruleset

IF 0.2 <= WindowArea < 0.33, WWR = Low; IF RoofShape = (Gable OR Hip), RoofCvr = N/A; -IF RoofShape = Flat, RoofCvr = SPM

IF RoofShape = (Gable OR Hip), RoofCvr = N/A; -IF RoofShape = Flat, RoofCvr = BUR

Note

NJ Building Code Section 1507 (in particular 1507.10 and 1507.12) address Built Up Roofs and Single Ply Membranes. However, the NJ Building Code only addresses installation and material standards of different roof covers, but not in what circumstance each must be used.

-

SPMs started being used in the 1960s, but different types continued to be developed through the 1980s. Today, single ply membrane roofing is the most popular flat roof option. BURs have been used for over 100 years, and although they are still used today, they are used less than SPMs. Since there is no available ruleset to be taken from the NJ Building Code, the ruleset is based off this information. -Sources: -https://www.spri.org/2019/01/singe-ply-roofing-101/, https://continuingeducation.bnpmedia.com/courses/johns-manville/understanding-single-ply-roofing-systems/

-

Assumptions of the Ruleset: -All flat roofs built before 1975 are BURs. -SPMs were developed in the 1960s, and considering that there is a time lag to start consistently using new methods, SPMs rose in importance through the 1970s, becoming more popular. This ruleset assumes that all roofs built after 1975 are SPMs.

-

NJ Building Code Section 1507 (in particular 1507.10 and 1507.12) address Built Up Roofs and Single Ply Membranes. However, the NJ Building Code only addresses installation and material standards of different roof covers, but not in what circumstance each must be used.

-

SPMs started being used in the 1960s, but different types continued to be developed through the 1980s. Today, single ply membrane roofing is the most popular flat roof option. BURs have been used for over 100 years, and although they are still used today, they are used less than SPMs. Since there is no available ruleset to be taken from the NJ Building Code, the ruleset is based off this information. -Sources: -https://www.spri.org/2019/01/singe-ply-roofing-101/, https://continuingeducation.bnpmedia.com/courses/johns-manville/understanding-single-ply-roofing-systems/

-

Assumptions of the Ruleset: -All flat roofs built before 1975 are BURs. -SPMs were developed in the 1960s, and considering that there is a time lag to start consistently using new methods, SPMs rose in importance through the 1970s, becoming more popular. This ruleset assumes that all roofs built after 1975 are SPMs.

-
-
-
-

Wind Loss Attributes for Manufactured Homes

-

The wind loss model in HAZUS classifies manufactured homes (MH) into five building classes that are organized -into three groupings, based on phasing of revisions to Housing and Urban Development (HUD) guidelines: -1. manufactured homes built before 1976 (MHPHUD) -2. manufactured homes built after 1976 and before 1995 (MH76HUD) -3. manufactured homes built after 1994 (MH94HUDI, M94HUDII, MH94HUDIII).

-

Their required attributes for wind loss modeling, the possible entries (values, terms) that can be assigned -for those attributes, and the basis for the ruleset developed to make that assignment are summarized in -mh_attri. ote that these rulesets were developed to reflect the likely -attributes based on the year of construction and the code editions and construction norms at that time. -The corresponding time-evolving rulesets (PDFs and Python scripts) are cross-referenced in addinfo_ruleset_mh.

- - ----- - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned to Manufactured Homes (MH).

Attribute

Valid Entries

Basis

shutters

yes | no

Codes/standards/human subjects data

tie downs

yes | no

Codes/standards

- - ----- - - - - - - - - - - - - -
Additional details for rulesets assigning wind loss attributes for manufactured homes.

Ruleset Name

Ruleset Definition Table

Python script

HAZUS Building Attribute Rulesets - Wind (Manufactured Homes)

Hazus Building Attribute Rulesets - Wind - MH76HUD.pdf, -Hazus Building Attribute Rulesets - Wind - MH94HUDI-II-III.pdf, -Hazus Building Attribute Rulesets - Wind - MHPHUD.pdf

WindMHRulesets

-

Taking the attribute tie down (TieDown) as an example, the ruleset in td_attri considers -the Year Built to determine if tie down use is governed by HUD standards based on the design -wind speed or if it is a voluntary action predating code requirements and thus is governed by -human subjects data. This provides an example of an attribute that is inferred from construction -practices based on when different roof cover products entered the market.

- - ------ - - - - - - - - - - - - - - - - - - - -
Ruleset for determining the tie down for manufactured homes.

Time Period

YearBuiltNJDEP > 1994

1976 < YearBuiltNJDEP <= 1994

YearBuiltNJDEP <= 1976

Ruleset

IF DWSII >= 70, TieDown = yes; -IF DWSII < 70, TieDown = no

Assign as Random Variable (RV): -TieDown = yes (RV = 45%); -TieDown = no (RV = 55%)

Assign as Random Variable (RV): -TieDown = yes (RV = 45%); -TieDown = no (RV = 55%)

Notes

3280.306 (d) Requirements for ties. Manufactured homes in Wind Zone I require only diagonal ties. These ties shall be placed along the main frame and below the outer side walls. All manufactured homes designed to be located in Wind Zones II and III shall have a vertical tie installed at each diagonal tie location. Wind Zones I, II and III are defined as having design wind speeds of 70mph, 100mph and 110 mph, respectively. (Table 3280.305) -The HUD Code was amended in 1994 with requirements that manufactured homes meet building and installation standards to provide wind safety safeguards in pre-designated storm regions of the country. Manufactured homes produced since 1994 have been proven to be equal and, in many respects, safer than site-built homes during tornadoes and hurricanes. http://www.homespotonline.com/blog/what-you-need-know-about-manufactured-homes/

The HUD Code was amended in 1994 with requirements that manufactured homes meet building and installation standards to provide wind safety safeguards in pre-designated storm regions of the country, therefore tie downs were not required by code before 1994. However, it is recommended that all manufactured homes install tie downs. Therefore, this ruleset assumes roughly the same percentage voluntary compliance as shutters before 1994, meaning, 45% of manufactured homes under the 1976 HUD codes should be randomly assigned to have tie-downs, and 55% should not. -(http://www.homespotonline.com/blog/what-you-need-know-about-manufactured-homes/)

The HUD Code was amended in 1994 with requirements that manufactured homes meet building and installation standards to provide wind safety safeguards in pre-designated storm regions of the country, therefore tie downs were not required by code before 1994. However, it is recommended that all manufactured homes install tie downs. Therefore, this ruleset assumes roughly the same percentage voluntary compliance as shutters before 1994, meaning, 45% of pre-HUD manufactured homes should be randomly assigned to have tie-downs, and 55% should not. -(http://www.homespotonline.com/blog/what-you-need-know-about-manufactured-homes/)

-
-
-

Wind Loss Attributes for Essential Facilities

-

The wind loss model in HAZUS futher classifies several groupings of essential facilities: -1. Fire Staions and Elementary Schools (HUEFFS, HUEFSS) -2. High Schools: 2-story and 3-story (HUEFSM, HUEFSL) -3. Hospitials: small, medium, large (HUEFHS, HUEFHM, HUEFHL) -4. Police Stations and Emergency Operations Centers (HUEFPS, HUEFEO)

-

Their required attributes for wind loss modeling, the possible entries (values, terms) that can be -assigned for those attributes, and the basis for the ruleset developed to make that assignment are summarized -in hu1_attri, hu2_attri, hu3_attri, and hu4_attri. -Note that these rulesets were developed to reflect the likely attibutes based on the year of construction and -the code editions and construction norms at that time. The corresponding time-evolving rulesets (PDFs and Python scriots) -are cross-referenced in addinfo_ruleset_ef.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for fire stations and elementary schools: wind losses.

Attribute

Valid Entries

Basis

roof cover

BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris source

Residential/Commerical (A) | Varies by Direction (B) | Residential (C) | None (D)

Trends/norms

roof deck age

good | poor

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for 2-story and 3-story high schools: wind losses.

Attribute

Valid Entries

Basis

roof cover

BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris source

Residential/Commerical (A) | Varies by Direction (B) | Residential (C) | None (D)

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for hospitals: wind losses.

Attribute

Valid Entries

Basis

roof cover

BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris source

Residential/Commerical (A) | Varies by Direction (B) | Residential (C) | None (D)

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned forpolice stations and emergency operation centers: wind losses.

Attribute

Valid Entries

Basis

roof cover

BUR | SPM

Trends/norms

shutters

yes | no

Codes/standards/human subjects data

wind borne debris source

Residential/Commerical (A) | Varies by Direction (B) | Residential (C) | None (D)

Trends/norms

roof deck age

good | poor

Trends/norms

metal roof deck attachment

standard | superior

Codes/standards

- - ----- - - - - - - - - - - - - -
Additional details for rulesets assigning wind loss attributes for essential facilities.

Ruleset Name

Ruleset Definition Table

Python script

HAZUS Building Attribute Rulesets - Wind (Essential Facilities)

Hazus Building Attribute Rulesets - Wind - HUEFFS-HUEFSS.pdf, -Hazus Building Attribute Rulesets - Wind - HUEFHS-M-L.pdf, -Hazus Building Attribute Rulesets - Wind - HUEFPS-HUEFEO.pdf, -Hazus Building Attribute Rulesets - Wind - HUEFSM-L.pdf

WindEFRulesets

-

Taking the attribute wind borne debris source (WindDebris) as an example, the WindDebris attribute is -assigned based on assumptions surrounding the zoning in areas where each essential facility class is -commonly constructed. These are generally A: Residential/Commercial or C: Residential, as summarized -in ef_attri.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - -
Ruleset for determining the wind borne debris for flood essential factilites.

Essential Facility Class

Default Values

Notes

HUEFFS-HUEFSS

WindDebris=A

If a building is given class, according to zoning, neighboring buildings are likely of this class. Thus, this assignment is made based on OccupancyClass. We cannot assign “varies by direction” because we do not have specific information. All essential faciliteis are assumed to be residential/commerical hybrid.

HUEFSM-L

WindDebris=C

If a building is given class, according to zoning, neighboring buildings are likely of this class. Thus, this assignment is made based on OccupancyClass. We cannot assign “varies by direction” because we do not have specific information. Schools are assumed to be in residential areas.

HUEFHS-M-L

WindDebris=A

If a building is given class, according to zoning, neighboring buildings are likely of this class. Thus, this assignment is made based on OccupancyClass. We cannot assign “varies by direction” because we do not have specific information. Hospitals are assumed to be in hybrid commerical/residential areas.

HUEFPS-HUEFEO

WindDebris=A

If a building is given class, according to zoning, neighboring buildings are likely of this class. Thus, this assignment is made based on OccupancyClass. We cannot assign “varies by direction” because we do not have specific information. Police and fire departments are assumed to be in hybrid commerical/residential areas.

-
-
-

Flood Loss Attributes

-

The flood loss model in HAZUS focuses on a collection of attributes, some of which are already defined in -the building inventory (number of stories and occupancy type as defined in Building Classifications), -while other building inventory fields like first floor elevation require adjustment. The new or adjusted -attributes required for the flood model are itemised in flood_attri with their possible -assignments (values, terms) and the ruleset developed to make those assignments. Note that these attributes -are generally not time evolving, with the exception of considering if the building was constructed after -Flood Insurance Rate Maps (FIRMs) were adopted (date varies by municipality). The corresponding -rulesets (PDFs and Python scripts) are cross-referenced in addinfo_ruleset_flood.

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Additional HAZUS attributes assigned for flood losses.

Attribute

Valid Entries

Basis

flood type

Riverine/A-Zone | Coastal/A-Zone | Coastal/V-Zone

Flood Insurance Rate Maps (FIRMs)

first floor elevation

[floating point number]

Dimensional data from building inventory, FIRM standards

construction post-FIRM adoption

yes | no

Date of municipality’s adoption of FIRMs

basement type

Basement | split-level | basement | no basement

characteristic from building inventory

duration

short | long

Observation of storm-surge characetistics in New Jersey

wave velocity

[floating point number]

Established depth-velocity relationship

- - ----- - - - - - - - - - - - - -
Additional details for rulesets assigning flood loss attributes.

Ruleset Name

Ruleset Definition Table

Python script

HAZUS Building Attribute Rulesets - Flood

Hazus Building Attribute Rulesets - Flood - All Classes.pdf

FloodRulesets

-

Taking the attribute first floor flood elevation (FirstFloorElev) as an example, -the FirstFloorElev attribute is assigned by adapting the building inventory field (FirstFloorHt1), -defined by computer vision methods (see Phase IV: Augmentation Using Computer Vision Methods), -and adjusting it based on the conventions used to define this quantity based on the flood zone -(A-Zone vs. V-Zone), as summarized in ffh_attri.

- - ---- - - - - - - - - - - - - - -
Ruleset for determining the first floor height for flood loss modeling.

Ruleset

Notes

IF FloodType = (Riverine/A-Zone or Coastal/A-Zone), FirstFloorElev=FirstFloorHt1; If FloodType = Coastal/V-Zone, FirstFloorElev = FirstFloorHt1 - 1

Units of feet. For A Zone, top of finished floor; for V Zone, bottom of floor beam of lowest floor; define X based on typical depth of girders assuming bottom of door is used to estimate first floor height (https://www.apawood.org/Data/Sites/1/documents/raised-wood-floor-foundations-guide.pdf) – take X = 1ft as avaerage value of different options

FirstFloorElev = 1

If no information available

-
-
Javeline19
-

Javeline, D., & Kijewski-Correa, T. (2019). Coastal homeowners in a changing climate. Climatic Change, 152(2), 259-274.

-
-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/best_practices.html b/docs/common/testbeds/atlantic_city/best_practices.html deleted file mode 100644 index c2e7e06fa..000000000 --- a/docs/common/testbeds/atlantic_city/best_practices.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - - - Best Practices — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Best Practices

-

The process of constructing the Atlantic County Inventory for footprints beyond those in the -Flood-Exposed Inventory underscored a number of tasks/issues that are commonly encountered when constructing an inventory -in a location with sparse inventory data. Recommended best practices are summarized as follows:

-
    -
  1. Inventories are based upon building footprint data which may be sourced from state/local authorities or -third parties, which should be selected based on known accuracy. State/local data is often the most accurate -as they have been quality assured through human oversight. In the absence of such data, select third-party -data that is hand drawn, when possible: 2017 Microsoft footprint data is preferable since it is hand-digitized -vs. 2018 Microsoft footprint data which is computer-generated.

  2. -
  3. Note that footprint data may still contain skewed buildings, offset outlines, individual buildings whose -close proximity caused them to be treated as a single building outline, or outlines that include -non-structural features. Thus footprint data may require additional processing to rectify such issues and -any adjustments to the footprints further requires recalculation of coordinates and coordinate-dependent -information.

  4. -
  5. Triangulate data sources to improve data quality, e.g., sanity-checking building classifications in tax -assessor data by using zoning or land use/land cover data, cross-checking state tax assessor data against -county tax assessor data.

  6. -
  7. Footprints need to be assigned parcel data from the local tax assessor. If a footprint falls within parcel, -the footprint should receive that parcel’s attributes, noting that a parcel may have multiple footprints -within it: If footprint falls between multiple parcels, assign it the parcel information with a higher level of -flood risk based on the FEMA-designated flood zone, where risk goes from highest to lowest according to: VE, -AE, AO, AH, A, X. If footprint falls between multiple parcels and both with the same FEMA flood zone, -it receives the parcel information for the parcel with the highest overlapping area. If a footprint falls -outside a parcel, it is assigned the attributes of the nearest parcel.

  8. -
  9. Once footprints are identified, assign default values for each required attribute in the Building Inventory. -These default values should be selected using engineering judgement to represent the most common/likely -attribute expected or conservatively from the perspective of anticipated losses (i.e., picking the more -vulnerable attribute option). These initial assignments are then updated if additional data is available -to make a more faithful attribute assignment. As part of the default assignment class, pick a building -typology that is prevalent in the locale as your default building. For example, NJDEP selected Single -Family Dwelling/Residence, made of Wood (stud-framed) with Slab-on-Grade foundation, shingles as its roof -covering, and siding as its wall covering (specific material types may be specified, e.g., asphalt shingle -or vinyl siding, depending on the granularity of the damage/loss models).

  10. -
  11. Flood Insurance Rate Maps (FIRMs) are used to define the FEMA-designated flood zone for the building site. -In some locations, the most updated FIRMs may not be officially released, in which case preliminary FIRMs -should be used as they offer the best contemporary flood hazard data.

  12. -
  13. Elevation certificates may be available from local authorities and can be consulted to establish the -elevation of the lowest horizontal structural member for food risk assessments. Most risk assessments will -require the top of the bottom occupied floor, which will be defined relative to the lowest adjacent (finished) -grade (LAG). Digital Elevation Models (DEMs) can also be consulted to establish building elevations. Note that -the SimCenter’s image processing tools minimize the need for these data sources.

  14. -
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/damage_and_loss.html b/docs/common/testbeds/atlantic_city/damage_and_loss.html deleted file mode 100644 index e5dac140d..000000000 --- a/docs/common/testbeds/atlantic_city/damage_and_loss.html +++ /dev/null @@ -1,34584 +0,0 @@ - - - - - - - - - - Damage and Loss Estimation — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Damage and Loss Estimation

-

Damage and loss functions from the HAZUS Hurricane Damage and Loss Model ([FEMA18a], [FEMA18b]) -were implemented in PELICUN to support loss assessment for -all configurations of buildings currently supported by HAZUS for wind and flood hazards. These -configurations represent all the possible unique configurations of building attributes associated -with each building class (defined by material) and subclass (defined by occupancy), as discussed in -testbed_AC_asset_representation. For example, wood (class) single-family homes 1-2+ stories -(subclass) would have damage and loss functions associated with each unique combination of attributes -used to define key features of the load path and components (e.g., roof shape, secondary water resistance, -roof deck attachment, roof-wall connection, shutters, garage), as well as the exposure (terrain roughness).

-

The HAZUS damage and loss functions consist of tabular data to describe the fragility or expected losses as a -function of hazard intensity. These data were used to calibrate coupled damage and loss models to estimate -the damage state and the corresponding expected loss ratio for each building configuration in PELICUN. -Continuous functions (Normal or Lognormal cumulative density functions) were fit to the synthetic data -by maximizing the likelihood of the observations assuming a Binomial distribution of outcomes at each -discrete hazard intensity in the HAZUS database. Coupling the damage and loss models in this way ensures -more realistic outcomes (e.g., a building with no damage cannot have total loss when the two models are -coupled), and the parameterized models allow for more efficient storage and computations within the workflow.

-
    -
  1. For the wind loss assessment, the HAZUS functions consist of tabular data to -describe the fragility or expected losses as a function of peak wind speed (PWS). -Only data up to 200 mph wind speeds were used because the substantial reduction in the -number of observations introduces significant measurement error above that level (wind_df).

  2. -
-
-../../../_images/wind_damage_functions.png -

Fitted HAZUS wind damage functions for example building classes.

-
-
    -
  1. For the flood loss assessment, the HAZUS functions are in the form of depth-damage ratio curves, relating -the peak water depth (PWD) of flooding (in feet), as measured from the top of the first finished floor, -to a percent of the total replacement cost of the asset (flood_ddc).

  2. -
-
-../../../_images/flood_depth_damage_curves.png -

Depth-damage ratio curves for the flood loss assessment.

-
-

The total loss from wind and flood damages are estimated by combining the “wind-only” and “flood-only” -losses following the combination rule in [FEMA18a]. The primary motivation for the combined wind and -flood loss methodology is to avoid “double counting” of damage. At a minimum, the combined wind and -flood loss must be at least the larger of the wind-only or the flood-only loss. At a maximum, the combined -loss must be no larger than the lesser of the sum of the wind-only and flood-only losses -or 100% of the building (or contents) replacement value. These constraints can be written -as:

-
-()\[max(L_{wind}, L_{flood}) \leq L_{combined} \leq min(L_{wind}+L_{flood}, 1.00)\]
-

where \(L_{wind}\) is the wind-only loss ratio, \(L_{flood}\) is the flood-only loss ratio, and \(L_{combined}\) -is the combined loss ratio. The HAZUS combination rule first assumes that the wind-induced damage and flood-induced damage -are spread uniformly and randomly over a building. In this idealized case, the two damage mechanisms can be treated as -independent, and the expected combined loss ratio is simply as:

-
-()\[L_{combined} = L_{wind} + L_{flood} - L_{wind} \times L_{flood}\]
-

However, it is nonetheless clear that neither wind nor storm surge damages are -uniformly and randomly distributed throughout a structure. Wind damage is most -frequently initiated at the roof and fenestrations (i.e., windows, -doors, or other openings in the building envelope), whereas flood damage is most -frequently initiated at the lowest elevations of the structure (e.g., basement or first -finished floor) and progresses upward through the structure as the depth of flooding -increases. HAZUS used an approach for incorporating the non-uniformity of -wind and flood damage into the combined loss methodology, which is based on -allocating wind and flood losses to building sub-assemblies as a function of the building -type and the overall wind-only and flood-only loss estimate.

-

This so-called building sub-assembly approach can more accurately apply the combination calculation above -to each sub-assembly instead of applying it to the entire building. Specifically, HAZUS groups the loss -components into a consistent set of building sub-assemblies:

-
-

Note

-
-
HAZUS building sub-assemblies ([FEMA18a]):
    -
  1. Foundation: Includes site work, footings, and walls, slabs, piers or piles.

  2. -
  3. Below First Floor: Items other than the foundation that are located below the first floor of the structure such as mechanical equipment, stairways, parking pads, break away flood walls, etc.

  4. -
  5. Structure Framing: Includes all of the main load carrying structural members of the building below the roof framing and above the foundation.

  6. -
  7. Roof Covering: Includes the roof membrane material and flashing.

  8. -
  9. Roof Framing: Includes trusses, rafters, and sheathing.

  10. -
  11. Exterior Walls: Includes wall covering, windows, exterior doors, and insulation.

  12. -
  13. Interiors: Includes interior wall and floor framing, drywall, paint, interior trim, floor coverings, cabinets, counters, mechanical, and electrical

  14. -
-
-
-
-

Hence, the combination is conducted at each sub-assembly level and the total combined loss ratio is the -sum of combined sub-assembly loss ratios:

-
-()\[L_{combined} = \sum\limits_{i=1}^7 L_{wind,i} + L_{flood,i} - L_{wind,i} \times L_{flood,i}\]
-

where \(L_{wind,i}\) is the wind-only loss ratio of the \(i^{th}\) sub-assembly, and -\(L_{flood,i}\) is the flood-only loss ratio of the \(i^{th}\) sub-assembly. These sub-assembly -loss ratios are computed as a percent of the total building loss ratio. The percentages are based on the -wind_comp and flood_comp that are developed per the HAZUS methodology and data table ([FEMA18a]).

- - ------------ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Sub-assembly wind-only loss contribution ratio table.

Occupancy

FIRM

Total loss ratio (%)

Foundation (%)

Below First Floor (%)

Structure Framing (%)

Roof Covering (%)

Roof Framing (%)

Exterior Walls (%)

Interiors (%)

AGR1

0

0

0

0

0

0

0

0

0

AGR1

0

10

0

0

0

4.65

0.51

0.93

3.91

AGR1

0

20

0

0

0

6.53

1.1

1.86

10.51

AGR1

0

30

0

0

0

7.7

1.67

3.11

17.52

AGR1

0

40

0

0

0

8.76

2.22

4.44

24.57

AGR1

0

50

0

0

0

9.29

2.95

5.53

32.22

AGR1

0

60

0

0

0.01

9.99

3.66

6.83

39.52

AGR1

0

70

0

0

0.03

11.16

4.41

9.4

45

AGR1

0

80

0.06

0

0.48

11.25

8.21

15

45

AGR1

0

90

8.32

0

2.14

11.25

8.3

15

45

AGR1

0

100

13.89

0

3.57

11.25

11.25

15

45

AGR1

1

0

0

0

0

0

0

0

0

AGR1

1

10

0

0

0

4.85

0.53

0.88

3.74

AGR1

1

20

0

0

0

6.89

1.16

1.8

10.16

AGR1

1

30

0

0

0

8.17

1.77

3.02

17.03

AGR1

1

40

0

0

0

9.32

2.37

4.34

23.97

AGR1

1

50

0

0

0

9.92

3.15

5.41

31.52

AGR1

1

60

0

0

0.01

10.68

3.91

6.69

38.72

AGR1

1

70

0

0

0.03

11.25

5.91

11.55

41.25

AGR1

1

80

0.36

0

2.14

11.25

11.25

13.75

41.25

AGR1

1

90

10.36

0

2.14

11.25

11.25

13.75

41.25

AGR1

1

100

18.62

0

3.84

11.25

11.25

13.75

41.25

COM1

0

0

0

0

0

0

0

0

0

COM1

0

10

0

0

0

2.78

0.22

0.68

6.32

COM1

0

20

0

0

0

3.45

0.57

1.18

14.8

COM1

0

30

0

0

0.01

3.84

0.76

1.98

23.42

COM1

0

40

0

0

0.03

4.25

0.94

2.63

32.15

COM1

0

50

0

0

0.03

4.71

1.12

3.16

40.97

COM1

0

60

0.02

0

0.03

4.79

1.36

3.89

49.91

COM1

0

70

0.05

0

0.03

5.02

1.54

5.01

58.34

COM1

0

80

0.08

0

0.15

5.37

2.51

6.52

65.38

COM1

0

90

1.71

0

3.34

5.99

4.26

7.89

66.8

COM1

0

100

1.9

0

3.73

6.25

4.76

8.81

74.53

COM1

1

0

0

0

0

0

0

0

0

COM1

1

10

0

0

0

2.89

0.23

0.64

6.24

COM1

1

20

0

0

0

3.6

0.6

1.11

14.7

COM1

1

30

0

0

0.01

4.01

0.79

1.87

23.32

COM1

1

40

0

0

0.03

4.45

0.98

2.48

32.06

COM1

1

50

0

0

0.03

4.94

1.18

2.98

40.88

COM1

1

60

0.03

0

0.03

5.02

1.43

3.67

49.82

COM1

1

70

0.1

0

0.03

5.26

1.61

4.73

58.26

COM1

1

80

0.15

0

0.14

5.63

2.63

6.15

65.3

COM1

1

90

3.23

0

3.11

6.19

4.41

7.34

65.73

COM1

1

100

3.61

0

3.48

6.25

4.93

8.21

73.49

COM10

0

0

0

0

0

0

0

0

0

COM10

0

10

0

0

0

0

0

1

9

COM10

0

20

0

0

0

0

0

3

17

COM10

0

30

0

0

0

0

0

6

24

COM10

0

40

0

0

0

0

0

8

32

COM10

0

50

0

0

0

0

2.4

11.3

36.3

COM10

0

60

0

0

0

0

12.4

11.3

36.3

COM10

0

70

0

0

9.9

0

12.5

11.3

36.3

COM10

0

80

0

0

19.9

0

12.5

11.3

36.3

COM10

0

90

0

0

29.9

0

12.5

11.3

36.3

COM10

0

100

2

0

37.9

0

12.5

11.3

36.3

COM10

1

0

0

0

0

0

0

0

0

COM10

1

10

0

0

0

0

0

1

9

COM10

1

20

0

0

0

0

0

3

17

COM10

1

30

0

0

0

0

0

6

24

COM10

1

40

0

0

0

0

0

8

32

COM10

1

50

0

0

0

0

7.5

10

32.5

COM10

1

60

0

0

5

0

12.5

10

32.5

COM10

1

70

0

0

15

0

12.5

10

32.5

COM10

1

80

0

0

25

0

12.5

10

32.5

COM10

1

90

0

0

35

0

12.5

10

32.5

COM10

1

100

2

0

43

0

12.5

10

32.5

COM2

0

0

0

0

0

0

0

0

0

COM2

0

10

0

0

0

3.38

0.37

1.13

5.11

COM2

0

20

0

0

0

4.87

0.75

1.92

12.46

COM2

0

30

0

0

0

6.49

1.11

2.55

19.84

COM2

0

40

0

0

0

7.56

1.4

2.83

28.22

COM2

0

50

0

0

0

7.98

1.68

3.67

36.66

COM2

0

60

0

0

0

8.65

2.03

4.49

44.84

COM2

0

70

0

0

0.01

9.2

2.4

5.85

52.55

COM2

0

80

0.05

0

0.09

11.08

3.76

8.77

56.25

COM2

0

90

5.72

0

1.64

11.08

6.54

8.77

56.25

COM2

0

100

8.4

0

2.4

11.25

8.75

12.9

56.25

COM2

1

0

0

0

0

0

0

0

0

COM2

1

10

0

0

0

3.54

0.39

1.08

4.99

COM2

1

20

0

0

0

5.13

0.79

1.83

12.24

COM2

1

30

0

0

0

6.85

1.18

2.45

19.53

COM2

1

40

0

0

0

7.98

1.48

2.71

27.82

COM2

1

50

0

0

0

8.45

1.78

3.54

36.23

COM2

1

60

0

0

0

9.16

2.15

4.33

44.36

COM2

1

70

0

0

0

9.76

2.54

5.65

52.04

COM2

1

80

0.08

0

0.1

11.25

5.15

10.92

52.5

COM2

1

90

7.26

0

1.42

11.25

6.64

10.92

52.5

COM2

1

100

12.5

0

2.45

11.25

8.75

12.5

52.5

COM3

0

0

0

0

0

0

0

0

0

COM3

0

10

0

0

0

3.52

0.24

0.57

5.67

COM3

0

20

0

0

0

4.81

0.49

1.1

13.6

COM3

0

30

0

0

0

5.77

0.72

1.82

21.7

COM3

0

40

0

0

0

6.43

0.92

2.6

30.05

COM3

0

50

0

0

0

6.98

1.21

3.24

38.57

COM3

0

60

0

0

0

7.49

1.47

4.04

47

COM3

0

70

0.01

0

0.02

7.94

1.83

5.42

54.78

COM3

0

80

0.3

0

0.43

8.47

2.3

6.64

61.86

COM3

0

90

3.54

0

2.47

8.55

2.62

7.51

65.31

COM3

0

100

3.96

0

2.77

8.75

2.94

8.41

73.16

COM3

1

0

0

0

0

0

0

0

0

COM3

1

10

0

0

0

3.64

0.25

0.53

5.58

COM3

1

20

0

0

0

5

0.51

1.03

13.45

COM3

1

30

0

0

0

6.02

0.75

1.71

21.53

COM3

1

40

0

0

0

6.72

0.96

2.45

29.87

COM3

1

50

0

0

0

7.31

1.26

3.05

38.38

COM3

1

60

0

0

0

7.84

1.54

3.81

46.8

COM3

1

70

0.01

0

0.02

8.32

1.92

5.11

54.61

COM3

1

80

0.47

0

0.39

8.75

2.41

6.27

61.71

COM3

1

90

5.46

0

2.23

8.75

2.7

6.96

63.9

COM3

1

100

6.14

0

2.5

8.75

3.03

7.81

71.76

COM4

0

0

0

0

0

0

0

0

0

COM4

0

10

0

0

0

0.65

0.36

1.17

7.83

COM4

0

20

0

0

0

0.77

0.59

2.32

16.32

COM4

0

30

0

0

0

0.9

0.78

3.13

25.18

COM4

0

40

0

0

0

0.94

0.98

4.41

33.67

COM4

0

50

0

0

0

0.98

1.24

5.6

42.17

COM4

0

60

0

0

0

1.04

1.54

6.78

50.64

COM4

0

70

0

0

0.01

1.08

1.8

8.79

58.32

COM4

0

80

0.03

0

0.16

1.13

2.24

10.77

65.66

COM4

0

90

1.36

0

2.03

1.23

3.03

12.27

70.08

COM4

0

100

1.51

0

2.26

1.25

3.37

13.64

77.96

COM4

1

0

0

0

0

0

0

0

0

COM4

1

10

0

0

0

0.67

0.38

1.15

7.8

COM4

1

20

0

0

0

0.81

0.62

2.29

16.28

COM4

1

30

0

0

0

0.95

0.82

3.09

25.14

COM4

1

40

0

0

0

0.98

1.03

4.35

33.63

COM4

1

50

0

0

0

1.03

1.3

5.52

42.14

COM4

1

60

0

0

0

1.1

1.61

6.69

50.6

COM4

1

70

0

0

0.01

1.13

1.89

8.68

58.29

COM4

1

80

0.06

0

0.15

1.19

2.35

10.64

65.61

COM4

1

90

3.15

0

1.9

1.25

3.12

11.88

68.7

COM4

1

100

3.72

0

2.25

1.25

3.69

14.04

75

COM5

0

0

0

0

0

0

0

0

0

COM5

0

10

0

0

0

2.2

0.8

0.49

6.51

COM5

0

20

0

0

0

2.83

1.53

0.88

14.75

COM5

0

30

0

0

0

3.33

2.16

1.42

23.09

COM5

0

40

0

0

0

3.69

2.7

2.01

31.6

COM5

0

50

0

0

0

3.95

3.47

2.49

40.09

COM5

0

60

0

0

0

4.22

4.2

3.09

48.48

COM5

0

70

0

0

0.02

4.45

5.23

4.12

56.17

COM5

0

80

0.18

0

0.48

4.73

6.62

5.1

62.88

COM5

0

90

1.97

0

2.74

4.81

7.66

5.82

67

COM5

0

100

2.19

0

3.06

5

8.54

6.49

74.7

COM5

1

0

0

0

0

0

0

0

0

COM5

1

10

0

0

0

2.29

0.83

0.45

6.43

COM5

1

20

0

0

0

2.95

1.6

0.81

14.64

COM5

1

30

0

0

0

3.48

2.26

1.29

22.97

COM5

1

40

0

0

0

3.86

2.83

1.83

31.47

COM5

1

50

0

0

0

4.14

3.63

2.28

39.96

COM5

1

60

0

0

0

4.42

4.4

2.84

48.34

COM5

1

70

0.01

0

0.02

4.67

5.48

3.78

56.05

COM5

1

80

0.35

0

0.46

4.95

6.92

4.67

62.65

COM5

1

90

3.71

0

2.54

4.95

7.88

5.24

65.67

COM5

1

100

4.15

0

2.84

5

8.8

5.85

73.34

COM6

0

0

0

0

0

0

0

0

0

COM6

0

10

0

0

0

0.59

0.47

0.46

8.48

COM6

0

20

0

0

0

0.65

0.64

0.73

17.98

COM6

0

30

0

0

0

0.72

0.79

1.02

27.47

COM6

0

40

0

0

0

0.77

0.88

1.35

36.99

COM6

0

50

0

0

0

0.81

1.01

1.7

46.49

COM6

0

60

0

0

0

0.86

1.19

2.14

55.81

COM6

0

70

0

0

0

0.93

1.54

2.85

64.67

COM6

0

80

0.08

0

0.21

1.05

2.06

3.78

72.82

COM6

0

90

0.15

0

0.43

1.17

2.38

4.3

81.57

COM6

0

100

0.16

0

0.48

1.25

2.64

4.78

90.68

COM6

1

0

0

0

0

0

0

0

0

COM6

1

10

0

0

0

0.61

0.49

0.41

8.49

COM6

1

20

0

0

0

0.68

0.67

0.65

18

COM6

1

30

0

0

0

0.75

0.82

0.91

27.52

COM6

1

40

0

0

0

0.8

0.92

1.21

37.07

COM6

1

50

0

0

0

0.84

1.05

1.52

46.59

COM6

1

60

0

0

0

0.9

1.24

1.91

55.95

COM6

1

70

0

0

0

0.97

1.61

2.55

64.87

COM6

1

80

0.27

0

0.19

1.09

2.14

3.37

72.92

COM6

1

90

0.54

0

0.38

1.22

2.47

3.83

81.56

COM6

1

100

0.6

0

0.43

1.25

2.75

4.26

90.72

COM7

0

0

0

0

0

0

0

0

0

COM7

0

10

0

0

0

1.66

0.18

0.73

7.42

COM7

0

20

0

0

0

2.08

0.34

1.32

16.27

COM7

0

30

0

0

0

2.41

0.47

2.09

25.03

COM7

0

40

0

0

0

2.62

0.59

2.94

33.85

COM7

0

50

0

0

0

2.81

0.77

3.62

42.8

COM7

0

60

0

0

0

2.98

0.93

4.49

51.6

COM7

0

70

0

0

0.01

3.13

1.15

5.97

59.74

COM7

0

80

0.14

0

0.23

3.35

1.43

7.3

67.56

COM7

0

90

1.64

0

1.32

3.47

1.68

8.44

73.45

COM7

0

100

1.83

0

1.47

3.75

1.87

9.38

81.7

COM7

1

0

0

0

0

0

0

0

0

COM7

1

10

0

0

0

1.73

0.19

0.7

7.39

COM7

1

20

0

0

0

2.17

0.35

1.26

16.23

COM7

1

30

0

0

0

2.51

0.49

2

25

COM7

1

40

0

0

0

2.74

0.62

2.81

33.84

COM7

1

50

0

0

0

2.93

0.8

3.46

42.8

COM7

1

60

0

0

0

3.11

0.97

4.3

51.62

COM7

1

70

0.01

0

0.01

3.27

1.2

5.71

59.8

COM7

1

80

0.28

0

0.19

3.5

1.5

6.98

67.56

COM7

1

90

3.38

0

1.08

3.56

1.72

7.94

72.31

COM7

1

100

3.76

0

1.21

3.75

1.92

8.84

80.51

COM8

0

0

0

0

0

0

0

0

0

COM8

0

10

0

0

0

2.44

0.28

0.52

6.76

COM8

0

20

0

0

0

3.04

0.54

0.93

15.49

COM8

0

30

0

0

0

3.49

0.75

1.47

24.29

COM8

0

40

0

0

0

3.94

0.92

1.95

33.18

COM8

0

50

0

0

0

4.13

1.13

2.48

42.26

COM8

0

60

0

0

0

4.44

1.37

3.03

51.16

COM8

0

70

0

0

0.01

4.68

1.64

3.98

59.68

COM8

0

80

0.07

0

0.18

5

2.24

5.22

67.29

COM8

0

90

2.84

0

2.75

5

2.63

5.89

70.89

COM8

0

100

3.18

0

3.07

5

2.93

6.58

79.21

COM8

1

0

0

0

0

0

0

0

0

COM8

1

10

0

0

0

2.53

0.29

0.47

6.7

COM8

1

20

0

0

0

3.18

0.56

0.84

15.42

COM8

1

30

0

0

0

3.64

0.79

1.34

24.22

COM8

1

40

0

0

0

4.12

0.96

1.79

33.12

COM8

1

50

0

0

0

4.32

1.18

2.28

42.22

COM8

1

60

0

0

0

4.65

1.43

2.78

51.13

COM8

1

70

0

0

0.01

4.91

1.72

3.65

59.7

COM8

1

80

0.12

0

0.17

5

2.36

4.81

67.55

COM8

1

90

4.57

0

2.55

5

2.71

5.32

69.84

COM8

1

100

5.26

0

2.94

5

3.12

6.13

77.5

COM9

0

0

0

0

0

0

0

0

0

COM9

0

10

0

0

0

2.72

0.24

0.68

6.36

COM9

0

20

0

0

0

3.41

0.64

1.16

14.79

COM9

0

30

0

0

0

3.97

0.85

1.72

23.46

COM9

0

40

0

0

0

4.34

1

2.37

32.3

COM9

0

50

0

0

0

4.65

1.2

3.01

41.14

COM9

0

60

0.03

0

0.01

5

1.39

3.82

49.76

COM9

0

70

0.11

0

0.03

5.37

1.69

5.09

57.71

COM9

0

80

0.41

0

0.6

5.91

2.9

6.56

63.63

COM9

0

90

0.94

0

1.66

6.07

4.63

7.46

69.24

COM9

0

100

1.05

0

1.86

6.25

5.17

8.33

77.31

COM9

1

0

0

0

0

0

0

0

0

COM9

1

10

0

0

0

2.82

0.25

0.63

6.29

COM9

1

20

0

0

0

3.55

0.67

1.09

14.69

COM9

1

30

0

0

0

4.15

0.88

1.62

23.34

COM9

1

40

0

0

0

4.54

1.04

2.23

32.19

COM9

1

50

0

0

0

4.88

1.26

2.84

41.03

COM9

1

60

0.06

0

0.01

5.24

1.45

3.6

49.64

COM9

1

70

0.21

0

0.03

5.63

1.77

4.8

57.56

COM9

1

80

0.79

0

0.57

6.17

3.03

6.17

63.28

COM9

1

90

1.8

0

1.56

6.25

4.82

6.99

68.59

COM9

1

100

2.37

0

2.05

6.25

6.35

9.19

73.75

EDU1

0

0

0

0

0

0

0

0

0

EDU1

0

10

0

0

0

1.74

0.54

0.63

7.1

EDU1

0

20

0

0

0

2.17

1.01

1.04

15.78

EDU1

0

30

0

0

0

2.51

1.39

1.61

24.49

EDU1

0

40

0

0

0

2.83

1.67

2.25

33.24

EDU1

0

50

0

0

0

2.97

2

2.87

42.16

EDU1

0

60

0

0

0

3.18

2.4

3.52

50.89

EDU1

0

70

0

0

0.01

3.37

3.01

4.68

58.92

EDU1

0

80

0.13

0

0.48

3.6

4.15

6.17

65.47

EDU1

0

90

1.15

0

3.15

3.65

4.94

7.23

69.88

EDU1

0

100

1.28

0

3.51

3.75

5.51

8.05

77.89

EDU1

1

0

0

0

0

0

0

0

0

EDU1

1

10

0

0

0

1.81

0.56

0.59

7.04

EDU1

1

20

0

0

0

2.26

1.06

0.98

15.7

EDU1

1

30

0

0

0

2.62

1.45

1.52

24.41

EDU1

1

40

0

0

0

2.96

1.75

2.12

33.16

EDU1

1

50

0

0

0

3.11

2.09

2.71

42.09

EDU1

1

60

0

0

0

3.33

2.52

3.32

50.82

EDU1

1

70

0.01

0

0.01

3.54

3.16

4.42

58.87

EDU1

1

80

0.3

0

0.46

3.75

4.34

5.82

65.33

EDU1

1

90

2.67

0

2.98

3.75

5.1

6.72

68.78

EDU1

1

100

3.05

0

3.41

3.75

5.83

7.67

76.25

EDU2

0

0

0

0

0

0

0

0

0

EDU2

0

10

0

0

0

1.18

0.28

0.53

8.01

EDU2

0

20

0

0

0

1.4

0.49

0.84

17.26

EDU2

0

30

0

0

0

1.6

0.66

1.26

26.48

EDU2

0

40

0

0

0

1.78

0.78

1.74

35.7

EDU2

0

50

0

0

0

1.86

0.93

2.19

45.02

EDU2

0

60

0

0

0

1.99

1.12

2.69

54.2

EDU2

0

70

0

0

0.01

2.12

1.41

3.6

62.86

EDU2

0

80

0.15

0

0.45

2.29

1.94

4.76

70.42

EDU2

0

90

1.04

0

2.34

2.35

2.31

5.58

76.38

EDU2

0

100

1.15

0

2.6

2.5

2.57

6.21

84.96

EDU2

1

0

0

0

0

0

0

0

0

EDU2

1

10

0

0

0

1.23

0.29

0.48

8

EDU2

1

20

0

0

0

1.46

0.51

0.77

17.25

EDU2

1

30

0

0

0

1.67

0.69

1.16

26.49

EDU2

1

40

0

0

0

1.86

0.82

1.59

35.73

EDU2

1

50

0

0

0

1.94

0.98

2

45.08

EDU2

1

60

0

0

0

2.08

1.17

2.46

54.29

EDU2

1

70

0.01

0

0.01

2.21

1.48

3.29

63

EDU2

1

80

0.34

0

0.42

2.39

2.02

4.35

70.47

EDU2

1

90

2.41

0

2.17

2.42

2.39

5.04

75.57

EDU2

1

100

2.68

0

2.42

2.5

2.66

5.61

84.13

GOV1

0

0

0

0

0

0

0

0

0

GOV1

0

10

0

0

0

3.2

0.33

0.48

5.99

GOV1

0

20

0

0

0

4.25

0.66

0.84

14.25

GOV1

0

30

0

0

0

5.04

0.93

1.32

22.7

GOV1

0

40

0

0

0

5.74

1.14

1.87

31.25

GOV1

0

50

0

0

0

6.11

1.39

2.4

40.11

GOV1

0

60

0

0

0

6.59

1.68

2.98

48.75

GOV1

0

70

0.01

0

0.02

7.05

2.12

3.99

56.82

GOV1

0

80

0.37

0

0.57

7.5

2.9

5.23

63.43

GOV1

0

90

2.95

0

3.2

7.5

3.38

6.02

66.95

GOV1

0

100

3.55

0

3.85

7.5

4.07

7.24

73.75

GOV1

1

0

0

0

0

0

0

0

0

GOV1

1

10

0

0

0

3.32

0.35

0.43

5.9

GOV1

1

20

0

0

0

4.43

0.69

0.77

14.11

GOV1

1

30

0

0

0

5.28

0.98

1.21

22.54

GOV1

1

40

0

0

0

6.02

1.19

1.71

31.08

GOV1

1

50

0

0

0

6.41

1.45

2.2

39.94

GOV1

1

60

0

0

0

6.92

1.76

2.73

48.58

GOV1

1

70

0.01

0

0.02

7.4

2.23

3.67

56.67

GOV1

1

80

0.58

0

0.55

7.5

3.05

4.83

63.49

GOV1

1

90

4.59

0

3.04

7.5

3.51

5.46

65.9

GOV1

1

100

6.21

0

4.11

7.5

4.75

7.39

70

GOV2

0

0

0

0

0

0

0

0

0

GOV2

0

10

0

0

0

1.28

0.2

0.86

7.65

GOV2

0

20

0

0

0

1.55

0.36

1.4

16.69

GOV2

0

30

0

0

0

1.77

0.49

2.11

25.62

GOV2

0

40

0

0

0

1.97

0.59

2.91

34.53

GOV2

0

50

0

0

0

2.06

0.7

3.66

43.57

GOV2

0

60

0

0

0

2.21

0.84

4.51

52.45

GOV2

0

70

0

0

0.02

2.34

1.06

6

60.59

GOV2

0

80

0.23

0

0.73

2.5

1.43

7.82

67.29

GOV2

0

90

1.72

0

3.86

2.5

1.67

8.98

71.28

GOV2

0

100

1.98

0

4.45

2.5

1.92

10.35

78.75

GOV2

1

0

0

0

0

0

0

0

0

GOV2

1

10

0

0

0

1.34

0.21

0.83

7.62

GOV2

1

20

0

0

0

1.63

0.38

1.34

16.65

GOV2

1

30

0

0

0

1.86

0.52

2.03

25.59

GOV2

1

40

0

0

0

2.07

0.61

2.8

34.51

GOV2

1

50

0

0

0

2.17

0.74

3.53

43.57

GOV2

1

60

0

0

0

2.32

0.88

4.34

52.46

GOV2

1

70

0.01

0

0.02

2.46

1.11

5.77

60.63

GOV2

1

80

0.44

0

0.72

2.5

1.5

7.53

67.31

GOV2

1

90

3.26

0

3.73

2.5

1.72

8.52

70.27

GOV2

1

100

4.25

0

4.86

2.5

2.25

11.1

75

IND1

0

0

0

0

0

0

0

0

0

IND1

0

10

0

0

0

3.08

0.18

0.57

6.17

IND1

0

20

0

0

0

3.98

0.34

0.95

14.73

IND1

0

30

0

0

0

4.6

0.47

1.46

23.48

IND1

0

40

0

0

0

5.3

0.55

1.99

32.16

IND1

0

50

0

0

0

5.51

0.62

2.6

41.26

IND1

0

60

0

0

0

5.9

0.72

3.1

50.28

IND1

0

70

0

0

0

6.31

0.87

4.04

58.77

IND1

0

80

0.04

0

0.01

6.91

1.33

5.78

65.93

IND1

0

90

3.66

0

0.65

8.33

2.73

7.47

67.17

IND1

0

100

4.08

0

0.72

8.75

3.04

8.34

75.02

IND1

1

0

0

0

0

0

0

0

0

IND1

1

10

0

0

0

3.19

0.18

0.53

6.09

IND1

1

20

0

0

0

4.15

0.35

0.89

14.61

IND1

1

30

0

0

0

4.8

0.49

1.37

23.34

IND1

1

40

0

0

0

5.54

0.58

1.87

32.01

IND1

1

50

0

0

0

5.77

0.65

2.46

41.12

IND1

1

60

0

0

0

6.19

0.75

2.92

50.14

IND1

1

70

0

0

0

6.62

0.91

3.82

58.65

IND1

1

80

0.05

0

0.01

7.25

1.4

5.46

65.83

IND1

1

90

5.13

0

0.45

8.61

2.82

6.94

66.05

IND1

1

100

5.84

0

0.51

8.75

3.21

7.9

73.75

IND2

0

0

0

0

0

0

0

0

0

IND2

0

10

0

0

0

4.29

0.53

0.59

4.59

IND2

0

20

0

0

0

5.98

1.08

1.12

11.81

IND2

0

30

0

0

0

7.19

1.55

1.8

19.46

IND2

0

40

0

0

0

8.34

1.87

2.42

27.36

IND2

0

50

0

0

0

8.94

2.23

3.18

35.65

IND2

0

60

0

0

0

9.72

2.7

3.94

43.64

IND2

0

70

0.01

0

0

10.41

3.39

5.26

50.93

IND2

0

80

0.48

0

0.15

11.19

4.76

7.05

56.37

IND2

0

90

3.87

0

0.97

11.24

5.64

8.14

60.15

IND2

0

100

4.67

0

1.17

11.25

6.8

9.82

66.25

IND2

1

0

0

0

0

0

0

0

0

IND2

1

10

0

0

0

4.43

0.55

0.55

4.47

IND2

1

20

0

0

0

6.22

1.13

1.06

11.59

IND2

1

30

0

0

0

7.51

1.62

1.71

19.16

IND2

1

40

0

0

0

8.73

1.96

2.3

27.01

IND2

1

50

0

0

0

9.37

2.34

3.03

35.26

IND2

1

60

0

0

0

10.2

2.83

3.76

43.21

IND2

1

70

0.01

0

0

10.93

3.56

5.02

50.47

IND2

1

80

0.67

0

0.12

11.25

5.03

6.77

56.16

IND2

1

90

5.37

0

0.76

11.25

5.87

7.7

59.06

IND2

1

100

7.14

0

1.01

11.25

7.81

10.25

62.5

IND3

0

0

0

0

0

0

0

0

0

IND3

0

10

0

0

0

3.93

0.46

0.59

5.02

IND3

0

20

0

0

0

5.29

0.91

1.1

12.7

IND3

0

30

0

0

0

6.2

1.28

1.77

20.75

IND3

0

40

0

0

0

7.2

1.49

2.19

29.12

IND3

0

50

0

0

0

7.56

1.71

2.93

37.81

IND3

0

60

0

0

0

8.17

2.02

3.56

46.24

IND3

0

70

0

0

0

8.76

2.48

4.68

54.08

IND3

0

80

0.16

0

0.06

9.48

3.74

6.6

59.96

IND3

0

90

2.53

0

0.92

9.59

4.59

7.76

64.61

IND3

0

100

2.83

0

1.03

10

5.13

8.69

72.31

IND3

1

0

0

0

0

0

0

0

0

IND3

1

10

0

0

0

4.06

0.48

0.55

4.91

IND3

1

20

0

0

0

5.5

0.95

1.04

12.52

IND3

1

30

0

0

0

6.46

1.33

1.68

20.53

IND3

1

40

0

0

0

7.51

1.56

2.08

28.85

IND3

1

50

0

0

0

7.9

1.79

2.78

37.53

IND3

1

60

0

0

0

8.55

2.12

3.39

45.94

IND3

1

70

0

0

0

9.17

2.6

4.46

53.77

IND3

1

80

0.25

0

0.05

9.92

3.92

6.28

59.59

IND3

1

90

3.81

0

0.72

9.93

4.75

7.3

63.49

IND3

1

100

4.58

0

0.86

10

5.72

8.79

70

IND4

0

0

0

0

0

0

0

0

0

IND4

0

10

0

0

0

1.48

0.68

0.64

7.2

IND4

0

20

0

0

0

1.79

1.22

1.01

15.98

IND4

0

30

0

0

0

2.04

1.64

1.5

24.81

IND4

0

40

0

0

0

2.33

1.91

2.03

33.73

IND4

0

50

0

0

0

2.41

2.15

2.64

42.8

IND4

0

60

0

0

0

2.5

2.53

3.22

51.75

IND4

0

70

0

0

0.01

2.5

3.2

4.26

60.02

IND4

0

80

0.32

0

1.16

2.5

4.88

6.13

65

IND4

0

90

2

0

7.13

2.5

6

7.37

65

IND4

0

100

3.27

0

11.68

2.5

7.5

10

65

IND4

1

0

0

0

0

0

0

0

0

IND4

1

10

0

0

0

1.55

0.71

0.59

7.14

IND4

1

20

0

0

0

1.89

1.29

0.93

15.89

IND4

1

30

0

0

0

2.16

1.74

1.39

24.71

IND4

1

40

0

0

0

2.46

2.02

1.88

33.64

IND4

1

50

0

0

0

2.5

2.28

2.45

42.77

IND4

1

60

0

0

0

2.5

2.69

2.99

51.81

IND4

1

70

0.01

0

0.01

2.5

3.4

3.97

60.12

IND4

1

80

0.76

0

1.52

2.5

6.65

7.32

61.25

IND4

1

90

3.95

0

7.91

2.5

6.93

7.45

61.25

IND4

1

100

6.65

0

13.3

2.5

7.5

8.75

61.25

IND5

0

0

0

0

0

0

0

0

0

IND5

0

10

0

0

0

2.18

0.35

0.25

7.22

IND5

0

20

0

0

0

2.67

0.62

0.41

16.3

IND5

0

30

0

0

0

3.06

0.84

0.62

25.48

IND5

0

40

0

0

0

3.43

0.99

0.82

34.76

IND5

0

50

0

0

0

3.6

1.15

1.05

44.2

IND5

0

60

0

0

0

3.87

1.38

1.29

53.46

IND5

0

70

0.01

0

0

4.15

1.75

1.73

62.36

IND5

0

80

0.39

0

0.2

4.54

2.47

2.35

70.05

IND5

0

90

2.52

0

1.07

4.64

2.95

2.74

76.08

IND5

0

100

2.81

0

1.19

5

3.28

3.05

84.66

IND5

1

0

0

0

0

0

0

0

0

IND5

1

10

0

0

0

2.26

0.36

0.19

7.18

IND5

1

20

0

0

0

2.78

0.65

0.32

16.26

IND5

1

30

0

0

0

3.19

0.88

0.48

25.45

IND5

1

40

0

0

0

3.58

1.03

0.64

34.75

IND5

1

50

0

0

0

3.76

1.2

0.82

44.22

IND5

1

60

0

0

0

4.04

1.44

1.01

53.51

IND5

1

70

0.01

0

0

4.34

1.83

1.36

62.46

IND5

1

80

0.6

0

0.17

4.74

2.57

1.84

70.09

IND5

1

90

3.79

0

0.88

4.79

3.05

2.13

75.36

IND5

1

100

4.23

0

0.99

5

3.4

2.37

84

IND6

0

0

0

0

0

0

0

0

0

IND6

0

10

0

0

0

4.55

0.56

0.63

4.27

IND6

0

20

0

0

0

6.59

1.22

1.25

10.94

IND6

0

30

0

0

0

8.13

1.8

2.09

17.98

IND6

0

40

0

0

0

9.31

2.31

3.05

25.33

IND6

0

50

0

0

0

10.18

3.01

3.89

32.92

IND6

0

60

0

0

0

11.04

3.69

4.89

40.38

IND6

0

70

0.02

0

0.02

11.25

4.66

6.61

47.44

IND6

0

80

0.74

0

0.41

11.25

6.01

8.29

53.3

IND6

0

90

7.33

0

2.25

11.25

6.61

9

53.56

IND6

0

100

9.44

0

2.9

11.25

8.51

11.59

56.25

IND6

1

0

0

0

0

0

0

0

0

IND6

1

10

0

0

0

4.71

0.58

0.59

4.13

IND6

1

20

0

0

0

6.88

1.27

1.19

10.66

IND6

1

30

0

0

0

8.52

1.89

2

17.59

IND6

1

40

0

0

0

9.79

2.43

2.92

24.86

IND6

1

50

0

0

0

10.73

3.17

3.73

32.38

IND6

1

60

0

0

0

11.25

3.93

4.73

40.09

IND6

1

70

0.02

0

0.02

11.25

4.98

6.42

47.31

IND6

1

80

1.01

0

0.38

11.25

6.59

8.26

52.5

IND6

1

90

9.29

0

1.96

11.25

6.7

8.3

52.5

IND6

1

100

13.05

0

2.75

11.25

8.75

11.65

52.5

REL1

0

0

0

0

0

0

0

0

0

REL1

0

10

0

0

0

2.9

1.52

0.98

4.6

REL1

0

20

0

0

0

3.66

3.17

1.84

11.33

REL1

0

30

0

0

0

4.55

4.73

3.02

17.7

REL1

0

40

0

0

0

4.66

6.41

4.08

24.86

REL1

0

50

0

0

0

4.8

8.86

4.47

31.87

REL1

0

60

0

0

0.01

4.96

10.28

5.08

39.67

REL1

0

70

0

0

0.04

5

12.05

6.17

46.73

REL1

0

80

1.04

0

1.08

5

14.6

7.14

51.15

REL1

0

90

2.86

0

2.48

5

16.02

7.83

55.8

REL1

0

100

3.67

0

3.19

5

20.55

10.05

57.5

REL1

1

0

0

0

0

0

0

0

0

REL1

1

10

0

0

0

3.02

1.58

0.92

4.48

REL1

1

20

0

0

0

3.84

3.32

1.74

11.11

REL1

1

30

0

0

0

4.78

4.97

2.85

17.39

REL1

1

40

0

0

0

4.91

6.75

3.87

24.48

REL1

1

50

0

0

0

5

9.34

4.25

31.41

REL1

1

60

0

0

0.01

5

10.88

4.84

39.27

REL1

1

70

0.01

0

0.04

5

12.77

5.89

46.29

REL1

1

80

1.63

0

1.04

5

15.34

6.75

50.24

REL1

1

90

4.53

0

2.4

5

16.89

7.43

53.75

REL1

1

100

6.29

0

3.34

5

21.25

10.33

53.75

RES1

0

0

0

0

0

0

0

0

0

RES1

0

10

0

0

0

2.63

0.02

0.61

6.75

RES1

0

20

0

0

0.005295405

5.26

0.04

1.204705

13.49

RES1

0

30

0

0

0.01377666

5.74

0.08

1.816223

22.35

RES1

0

40

0

0

0.03986097

5.74

0.12

2.190139

31.91

RES1

0

50

0

0

0.07709244

5.74

0.19

2.702908

41.29

RES1

0

60

0

0

0.1745098

5.74

0.54

6.05549

47.49

RES1

0

70

0.03

0

0.274213

5.74

0.92

9.585787

53.45

RES1

0

80

1.82

0

0.3876498

5.74

1.87

13.63235

56.56

RES1

0

90

3.19

0

3.180715

6.25

2.85

13.63235

60.93

RES1

0

100

4.54

0

5.233071

6.25

4.06

18.62693

61.25

RES1

1

0

0

0

0

0

0

0

0

RES1

1

10

0

0

0

2.71

0.02

0.59

6.68

RES1

1

20

0

0

0.00265625

5.42

0.04

1.187344

13.35

RES1

1

30

0

0

0.01141582

5.94

0.09

1.778584

22.18

RES1

1

40

0

0

0.03114257

5.94

0.12

2.168857

31.74

RES1

1

50

0

0

0.06099315

5.94

0.2

2.679007

41.13

RES1

1

60

0

0

0.1402989

5.94

0.56

6.019701

47.35

RES1

1

70

0.07

0

0.2219328

5.94

0.96

9.508067

53.31

RES1

1

80

3.4

0

0.3028326

5.94

1.9

13.24717

55.21

RES1

1

90

5.94

0

2.961146

6.25

2.89

13.24717

58.75

RES1

1

100

8.31

0

4.148383

6.25

4.05

18.46162

58.75

RES2

0

0

0

0

0

0

0

0

0

RES2

0

10

0

0

0

1.74

0.01

0.76

7.48

RES2

0

20

0

0

0.004726477

1.74

0.09

1.075274

17.09

RES2

0

30

0

0

0.01061481

1.75

0.19

1.399385

26.65

RES2

0

40

0

0

0.03360477

2.33

0.37

1.846395

35.43

RES2

0

50

0

0

0.0582353

2.61

0.62

2.041765

44.67

RES2

0

60

0

0

0.08795518

2.67

1.14

3.052045

53.05

RES2

0

70

0

0

0.1732604

3.1

2.4

6.05674

58.27

RES2

0

80

0.41

0

0.3398157

3.29

3.1

11.95018

60.9

RES2

0

90

0.81

0

3.786067

3.54

4.05

13.46393

64.35

RES2

0

100

1.05

0

4.910665

3.75

5.26

17.47934

67.5

RES2

1

0

0

0

0

0

0

0

0

RES2

1

10

0

0

0

1.79

0.01

0.78

7.41

RES2

1

20

0

0

0.002477678

1.79

0.09

1.107522

17

RES2

1

30

0

0

0.009311224

1.81

0.19

1.450689

26.53

RES2

1

40

0

0

0.02746208

2.41

0.38

1.912538

35.27

RES2

1

50

0

0

0.0483048

2.7

0.64

2.121695

44.49

RES2

1

60

0

0

0.07402135

2.76

1.17

3.175979

52.81

RES2

1

70

0

0

0.1466627

3.2

2.48

6.283337

57.89

RES2

1

80

0.57

0

0.2822713

3.38

3.19

12.34773

60.24

RES2

1

90

1.11

0

3.236005

3.62

4.15

14.424

63.46

RES2

1

100

1.51

0

4.412587

3.75

5.65

19.63741

65

RES3A

0

0

0

0

0

0

0

0

0

RES3A

0

10

0

0

0

3.72

0.64

1.77

3.87

RES3A

0

20

0

0

0.02

4.42

1.2

4.55

9.81

RES3A

0

30

0

0

0.06

4.61

1.71

7.91

15.71

RES3A

0

40

0

0

0.18

4.87

2.47

9.89

22.59

RES3A

0

50

0

0

0.33

5.11

3.23

11.57

29.76

RES3A

0

60

0

0

0.4

6.13

3.88

13.88

35.72

RES3A

0

70

0

0

0.47

6.25

4.59

16.43

42.27

RES3A

0

80

0.05

0

0.54

6.25

5.31

18.99

48.86

RES3A

0

90

2.07

0

5.34

6.25

5.42

18.99

51.94

RES3A

0

100

2.32

0

5.97

6.25

6.06

21.25

58.11

RES3A

1

0

0

0

0

0

0

0

0

RES3A

1

10

0

0

0

3.82

0.65

1.72

3.81

RES3A

1

20

0

0

0.01

4.57

1.24

4.47

9.72

RES3A

1

30

0

0

0.05

4.78

1.77

7.79

15.62

RES3A

1

40

0

0

0.14

5.06

2.57

9.75

22.48

RES3A

1

50

0

0

0.26

5.31

3.36

11.42

29.66

RES3A

1

60

0

0

0.32

6.25

4.04

13.73

35.67

RES3A

1

70

0

0

0.38

6.25

4.79

16.28

42.3

RES3A

1

80

0.1

0

0.43

6.25

5.53

18.81

48.87

RES3A

1

90

3.9

0

4.22

6.25

5.57

18.81

51.24

RES3A

1

100

4.37

0

4.73

6.25

6.23

21.05

57.33

RES3B

0

0

0

0

0

0

0

0

0

RES3B

0

10

0

0

0

4.08

0.63

1.62

3.66

RES3B

0

20

0

0

0

5.14

1.36

3.75

9.74

RES3B

0

30

0

0

0.03

5.32

1.92

7.51

15.22

RES3B

0

40

0

0

0.08

5.53

2.83

9.75

21.8

RES3B

0

50

0

0

0.21

5.77

3.6

11.55

28.87

RES3B

0

60

0

0

0.33

6

4.21

13.03

36.42

RES3B

0

70

0.37

0

1.11

6.17

4.61

14.68

43.05

RES3B

0

80

1.19

0

2.81

6.25

5.08

16.04

48.63

RES3B

0

90

2.05

0

4.49

6.25

5.6

16.83

54.78

RES3B

0

100

2.3

0

5.04

6.25

6.25

18.87

61.25

RES3B

1

0

0

0

0

0

0

0

0

RES3B

1

10

0

0

0

4.18

0.65

1.58

3.6

RES3B

1

20

0

0

0

5.29

1.4

3.67

9.63

RES3B

1

30

0

0

0.02

5.5

1.98

7.39

15.11

RES3B

1

40

0

0

0.06

5.73

2.93

9.6

21.67

RES3B

1

50

0

0

0.17

5.98

3.73

11.39

28.73

RES3B

1

60

0

0

0.27

6.23

4.37

12.85

36.28

RES3B

1

70

0.71

0

0.89

6.25

4.79

14.48

42.88

RES3B

1

80

2.26

0

2.23

6.25

5.25

15.76

48.24

RES3B

1

90

3.87

0

3.56

6.25

5.76

16.46

54.1

RES3B

1

100

4.65

0

4.27

6.25

6.25

19.78

58.75

RES3C

0

0

0

0

0

0

0

0

0

RES3C

0

10

0

0

0

2.05

0.55

0.84

6.55

RES3C

0

20

0

0

0

2.31

0.96

2.01

14.72

RES3C

0

30

0

0

0.03

2.31

1.12

4.08

22.46

RES3C

0

40

0

0

0.1

2.31

1.5

4.84

31.24

RES3C

0

50

0

0

0.19

2.31

1.89

5.17

40.43

RES3C

0

60

0

0

0.28

2.31

2.24

5.38

49.79

RES3C

0

70

0.79

0

1.3

2.31

2.38

6.49

56.73

RES3C

0

80

1.47

0

2.26

2.35

2.78

6.73

64.42

RES3C

0

90

1.75

0

2.67

2.36

3.17

7.21

72.83

RES3C

0

100

1.94

0

2.97

2.5

3.53

8.02

81.03

RES3C

1

0

0

0

0

0

0

0

0

RES3C

1

10

0

0

0

2.13

0.57

0.79

6.51

RES3C

1

20

0

0

0

2.41

1

1.89

14.7

RES3C

1

30

0

0

0.03

2.41

1.17

3.85

22.53

RES3C

1

40

0

0

0.1

2.41

1.58

4.57

31.34

RES3C

1

50

0

0

0.18

2.41

1.98

4.88

40.54

RES3C

1

60

0

0

0.27

2.41

2.34

5.07

49.9

RES3C

1

70

1.64

0

1.21

2.41

2.46

6.05

56.22

RES3C

1

80

3.03

0

2.09

2.42

2.86

6.23

63.38

RES3C

1

90

3.59

0

2.47

2.43

3.26

6.67

71.58

RES3C

1

100

4

0

2.75

2.5

3.63

7.42

79.69

RES3D

0

0

0

0

0

0

0

0

0

RES3D

0

10

0

0

0

2.07

0.56

0.84

6.53

RES3D

0

20

0

0

0

2.35

0.97

1.99

14.69

RES3D

0

30

0

0

0.03

2.35

1.13

4.12

22.37

RES3D

0

40

0

0

0.1

2.35

1.52

4.92

31.11

RES3D

0

50

0

0

0.2

2.35

1.92

5.25

40.28

RES3D

0

60

0

0

0.29

2.35

2.28

5.47

49.62

RES3D

0

70

0.78

0

1.27

2.35

2.42

6.57

56.61

RES3D

0

80

1.5

0

2.27

2.36

2.81

6.82

64.24

RES3D

0

90

1.79

0

2.72

2.37

3.22

7.28

72.62

RES3D

0

100

2

0

3.02

2.5

3.58

8.1

80.8

RES3D

1

0

0

0

0

0

0

0

0

RES3D

1

10

0

0

0

2.15

0.58

0.78

6.48

RES3D

1

20

0

0

0

2.45

1.01

1.87

14.66

RES3D

1

30

0

0

0.03

2.45

1.19

3.89

22.44

RES3D

1

40

0

0

0.09

2.45

1.6

4.65

31.21

RES3D

1

50

0

0

0.18

2.45

2.01

4.95

40.4

RES3D

1

60

0

0

0.27

2.45

2.38

5.16

49.73

RES3D

1

70

1.61

0

1.19

2.45

2.51

6.12

56.12

RES3D

1

80

3.08

0

2.1

2.45

2.89

6.31

63.17

RES3D

1

90

3.69

0

2.51

2.45

3.3

6.73

71.33

RES3D

1

100

4.1

0

2.79

2.5

3.68

7.49

79.43

RES3E

0

0

0

0

0

0

0

0

0

RES3E

0

10

0

0

0

1.18

0.64

0.96

7.22

RES3E

0

20

0

0

0.01

1.25

1.06

2.16

15.52

RES3E

0

30

0

0

0.05

1.25

1.2

4.39

23.12

RES3E

0

40

0

0

0.14

1.25

1.6

5.18

31.82

RES3E

0

50

0

0

0.27

1.25

2.01

5.5

40.97

RES3E

0

60

0

0

0.39

1.25

2.37

5.71

50.28

RES3E

0

70

0.8

0

1.72

1.25

2.51

6.8

56.92

RES3E

0

80

1.54

0

3.04

1.25

2.9

7.02

64.25

RES3E

0

90

1.84

0

3.63

1.25

3.31

7.48

72.49

RES3E

0

100

2.05

0

4.04

1.25

3.68

8.33

80.65

RES3E

1

0

0

0

0

0

0

0

0

RES3E

1

10

0

0

0

1.23

0.67

1

7.1

RES3E

1

20

0

0

0.01

1.25

1.11

2.28

15.36

RES3E

1

30

0

0

0.04

1.25

1.26

4.61

22.84

RES3E

1

40

0

0

0.13

1.25

1.69

5.45

31.48

RES3E

1

50

0

0

0.26

1.25

2.12

5.79

40.58

RES3E

1

60

0

0

0.38

1.25

2.5

6.02

49.85

RES3E

1

70

1.68

0

1.65

1.25

2.61

7.08

55.73

RES3E

1

80

3.19

0

2.9

1.25

2.99

7.25

62.42

RES3E

1

90

3.81

0

3.46

1.25

3.41

7.72

70.35

RES3E

1

100

4.24

0

3.85

1.25

3.75

8.6

78.31

RES3F

0

0

0

0

0

0

0

0

0

RES3F

0

10

0

0

0

0.95

0.21

0.32

8.52

RES3F

0

20

0

0

0

1.12

0.39

1.08

17.41

RES3F

0

30

0

0

0.02

1.21

0.67

2.44

25.67

RES3F

0

40

0

0

0.05

1.21

0.92

3.99

33.84

RES3F

0

50

0

0

0.12

1.21

0.97

5.6

42.11

RES3F

0

60

0

0

0.14

1.25

1.16

6.74

50.7

RES3F

0

70

0

0

0.17

1.25

1.25

7.9

59.43

RES3F

0

80

0.17

0

1.4

1.25

1.25

8.1

67.84

RES3F

0

90

0.21

0

1.7

1.25

1.25

8.88

76.71

RES3F

0

100

0.23

0

1.89

1.25

1.25

9.9

85.47

RES3F

1

0

0

0

0

0

0

0

0

RES3F

1

10

0

0

0

0.99

0.21

0.31

8.49

RES3F

1

20

0

0

0

1.17

0.4

1.04

17.38

RES3F

1

30

0

0

0.02

1.25

0.7

2.36

25.68

RES3F

1

40

0

0

0.05

1.25

0.96

3.86

33.89

RES3F

1

50

0

0

0.11

1.25

1.01

5.41

42.21

RES3F

1

60

0

0

0.14

1.25

1.22

6.52

50.87

RES3F

1

70

0

0

0.16

1.25

1.25

7.65

59.68

RES3F

1

80

0.46

0

1.35

1.25

1.25

7.82

67.87

RES3F

1

90

0.57

0

1.64

1.25

1.25

8.57

76.72

RES3F

1

100

0.79

0

2.27

1.25

1.25

11.89

82.5

RES4

0

0

0

0

0

0

0

0

0

RES4

0

10

0

0

0

0.79

0.34

0.51

8.36

RES4

0

20

0

0

0

1.25

0.59

1.82

16.34

RES4

0

30

0

0

0.02

1.25

0.66

3.53

24.54

RES4

0

40

0

0

0.06

1.25

0.84

4.33

33.53

RES4

0

50

0

0

0.07

1.25

1.06

5.44

42.18

RES4

0

60

0

0

0.09

1.25

1.27

6.56

50.83

RES4

0

70

0

0

0.09

1.25

1.29

6.66

60.71

RES4

0

80

0

0

0.09

1.25

1.29

6.66

70.71

RES4

0

90

0.56

0

1.23

1.25

1.96

6.66

78.34

RES4

0

100

0.63

0

1.37

1.25

2.18

7.41

87.17

RES4

1

0

0

0

0

0

0

0

0

RES4

1

10

0

0

0

0.82

0.36

0.48

8.35

RES4

1

20

0

0

0

1.25

0.62

1.71

16.42

RES4

1

30

0

0

0.02

1.25

0.69

3.34

24.71

RES4

1

40

0

0

0.05

1.25

0.88

4.08

33.73

RES4

1

50

0

0

0.07

1.25

1.11

5.14

42.44

RES4

1

60

0

0

0.08

1.25

1.33

6.19

51.14

RES4

1

70

0

0

0.08

1.25

1.35

6.28

61.03

RES4

1

80

0

0

0.08

1.25

1.35

6.28

71.03

RES4

1

90

1.55

0

1.13

1.25

2.02

6.28

77.76

RES4

1

100

1.73

0

1.26

1.25

2.25

6.99

86.52

RES5

0

0

0

0

0

0

0

0

0

RES5

0

10

0

0

0

0.82

0.61

0.95

7.63

RES5

0

20

0

0

0

1.06

0.89

2.62

15.43

RES5

0

30

0

0

0

1.11

0.94

4.93

23.02

RES5

0

40

0

0

0

1.12

1.04

7.1

30.75

RES5

0

50

0

0

0

1.14

1.27

8.53

39.06

RES5

0

60

0

0

0

1.14

1.6

8.55

48.72

RES5

0

70

0

0

0

1.14

1.93

8.55

58.38

RES5

0

80

0

0

0

1.14

2.21

8.95

67.7

RES5

0

90

0.07

0

0.26

1.25

2.82

9.84

75.77

RES5

0

100

0.1

0

0.39

1.25

3.75

14.47

80

RES5

1

0

0

0

0

0

0

0

0

RES5

1

10

0

0

0

0.85

0.63

0.92

7.59

RES5

1

20

0

0

0

1.11

0.94

2.55

15.41

RES5

1

30

0

0

0

1.17

0.99

4.8

23.04

RES5

1

40

0

0

0

1.18

1.09

6.93

30.8

RES5

1

50

0

0

0

1.19

1.34

8.33

39.14

RES5

1

60

0

0

0

1.19

1.68

8.34

48.79

RES5

1

70

0

0

0

1.19

2.03

8.34

58.43

RES5

1

80

0

0

0

1.2

2.32

8.73

67.75

RES5

1

90

0.16

0

0.26

1.25

2.96

9.59

75.79

RES5

1

100

0.93

0

1.52

1.25

3.75

16.25

76.25

RES6

0

0

0

0

0

0

0

0

0

RES6

0

10

0

0

0

2.39

0.21

1.48

5.92

RES6

0

20

0

0

0

2.96

0.41

2.82

13.81

RES6

0

30

0

0

0

3.13

0.62

4.34

21.92

RES6

0

40

0

0

0

3.26

0.87

5.65

30.22

RES6

0

50

0

0

0

3.29

1.22

6.12

39.37

RES6

0

60

0

0

0.01

3.32

1.4

6.99

48.27

RES6

0

70

0

0

0.12

3.37

1.51

8.18

56.81

RES6

0

80

0.76

0

1.39

3.5

1.71

8.98

63.67

RES6

0

90

1.81

0

2.86

3.59

1.85

9.81

70.07

RES6

0

100

2.02

0

3.18

3.75

2.07

10.93

78.05

RES6

1

0

0

0

0

0

0

0

0

RES6

1

10

0

0

0

2.51

0.22

1.44

5.84

RES6

1

20

0

0

0

3.12

0.44

2.75

13.7

RES6

1

30

0

0

0

3.31

0.66

4.23

21.8

RES6

1

40

0

0

0

3.45

0.92

5.52

30.1

RES6

1

50

0

0

0

3.49

1.29

5.98

39.24

RES6

1

60

0

0

0.01

3.52

1.49

6.84

48.13

RES6

1

70

0

0

0.12

3.58

1.61

8.02

56.68

RES6

1

80

1.6

0

1.31

3.68

1.79

8.71

62.91

RES6

1

90

3.76

0

2.67

3.74

1.93

9.41

68.49

RES6

1

100

4.2

0

2.98

3.75

2.15

10.5

76.4

- - ------------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Sub-assembly flood-only loss contribution ratio table.

Occupancy

FIRM

Flood Zone

Total loss ratio (%)

Foundation (%)

Below First Floor (%)

Structure Framing (%)

Roof Covering (%)

Roof Framing (%)

Exterior Walls (%)

Interiors (%)

AGR1

0

A

0

0

0

0

0

0

0

0

AGR1

0

A

10

0

0

0

0

0

0

10

AGR1

0

A

20

0

0

0

0

0

0.04

19.96

AGR1

0

A

30

0

0

0

0

0

0.06

29.94

AGR1

0

A

40

0

0

0

0

0

0.08

39.92

AGR1

0

A

50

0

0

0

0

0

0.14

49.86

AGR1

0

A

60

0

0

0

0

0

0.22

59.78

AGR1

0

A

70

0.2

0

0.01

0.02

0.02

0.21

69.54

AGR1

0

A

80

0.79

0

0.02

0.03

0.03

0.21

78.93

AGR1

0

A

90

1.78

0

0.02

0.03

0.03

0.2

87.94

AGR1

0

A

100

2.21

0

0.03

0.05

0.05

0.19

97.49

AGR1

0

CA

0

0

0

0

0

0

0

0

AGR1

0

CA

10

0

0

0

0

0

0.02

9.98

AGR1

0

CA

20

0

0

0

0

0

0.04

19.96

AGR1

0

CA

30

0

0

0

0

0

0.06

29.93

AGR1

0

CA

40

0

0

0

0

0

0.1

39.89

AGR1

0

CA

50

0

0

0

0.01

0.01

0.13

49.85

AGR1

0

CA

60

0.06

0

0.01

0.01

0.01

0.14

59.76

AGR1

0

CA

70

0.61

0

0.01

0.02

0.02

0.19

69.16

AGR1

0

CA

80

1

0

0.01

0.03

0.03

0.21

78.73

AGR1

0

CA

90

1.96

0

0.02

0.03

0.03

0.2

87.75

AGR1

0

CA

100

2.99

0

0.02

0.04

0.04

0.19

96.72

AGR1

0

V

0

0

0

0

0

0

0

0

AGR1

0

V

10

0

0

0

0

0

0.02

9.98

AGR1

0

V

20

0

0

0

0

0

0.04

19.96

AGR1

0

V

30

0

0

0

0

0

0.06

29.93

AGR1

0

V

40

0

0

0

0

0

0.1

39.89

AGR1

0

V

50

0

0

0

0.01

0.01

0.13

49.85

AGR1

0

V

60

0.06

0

0.01

0.01

0.01

0.14

59.76

AGR1

0

V

70

0.61

0

0.01

0.02

0.02

0.19

69.16

AGR1

0

V

80

1

0

0.01

0.03

0.03

0.21

78.73

AGR1

0

V

90

1.88

0

0.02

0.03

0.03

0.2

87.83

AGR1

0

V

100

2.99

0

0.02

0.04

0.04

0.19

96.72

AGR1

1

A

0

0

0

0

0

0

0

0

AGR1

1

A

10

0

0

0

0

0

0.02

9.98

AGR1

1

A

20

0

0

0

0

0

0.04

19.96

AGR1

1

A

30

0

0

0

0

0

0.07

29.93

AGR1

1

A

40

0

0

0

0

0

0.1

39.9

AGR1

1

A

50

0

0

0

0

0

0.13

49.87

AGR1

1

A

60

0.71

0

0

0.01

0.01

0.2

59.06

AGR1

1

A

70

3.97

0

0.01

0.02

0.02

0.19

65.79

AGR1

1

A

80

5.4

0

0.01

0.04

0.04

0.19

74.32

AGR1

1

A

90

7.33

0

0.02

0.06

0.06

0.18

82.36

AGR1

1

A

100

10.62

0

0.02

0.06

0.06

0.17

89.06

AGR1

1

CA

0

0

0

0

0

0

0

0

AGR1

1

CA

10

0

0

0

0

0

0.02

9.98

AGR1

1

CA

20

0

0

0

0

0

0.04

19.96

AGR1

1

CA

30

0

0

0

0.01

0.01

0.07

29.92

AGR1

1

CA

40

0

0

0

0.01

0.01

0.09

39.89

AGR1

1

CA

50

0

0

0

0.01

0.01

0.13

49.84

AGR1

1

CA

60

0.22

0

0.01

0.02

0.02

0.15

59.59

AGR1

1

CA

70

2.06

0

0.01

0.03

0.03

0.19

67.68

AGR1

1

CA

80

5.14

0

0.01

0.04

0.04

0.18

74.59

AGR1

1

CA

90

7.89

0

0.01

0.05

0.05

0.18

81.82

AGR1

1

CA

100

11.72

0

0.02

0.06

0.06

0.17

87.98

AGR1

1

V

0

0

0

0

0

0

0

0

AGR1

1

V

10

0

0

0

0

0

0.02

9.98

AGR1

1

V

20

0

0

0

0

0

0.04

19.96

AGR1

1

V

30

0

0

0

0.01

0.01

0.07

29.92

AGR1

1

V

40

0

0

0

0.01

0.01

0.09

39.89

AGR1

1

V

50

0

0

0

0.01

0.01

0.13

49.84

AGR1

1

V

60

0.22

0

0.01

0.02

0.02

0.15

59.59

AGR1

1

V

70

2.06

0

0.01

0.03

0.03

0.19

67.68

AGR1

1

V

80

5.14

0

0.01

0.04

0.04

0.18

74.59

AGR1

1

V

90

7.89

0

0.01

0.05

0.05

0.18

81.82

AGR1

1

V

100

11.72

0

0.02

0.06

0.06

0.17

87.98

COM1

0

A

0

0

0

0

0

0

0

0

COM1

0

A

10

0

0

0

0

0

0

10

COM1

0

A

20

0

0

0

0

0

0

20

COM1

0

A

30

0

0

0

0

0

0

30

COM1

0

A

40

0

0

0

0

0

0

40

COM1

0

A

50

0

0

0

0

0

0

50

COM1

0

A

60

0

0

0

0

0

0

60

COM1

0

A

70

0

0

0

0

0

0.01

69.99

COM1

0

A

80

0

0

0

0

0

0.01

79.99

COM1

0

A

90

0

0

0

0

0

0.01

89.99

COM1

0

A

100

0

0

0

0

0

0.01

99.99

COM1

0

CA

0

0

0

0

0

0

0

0

COM1

0

CA

10

0

0

0

0

0

0

10

COM1

0

CA

20

0

0

0

0

0

0

20

COM1

0

CA

30

0

0

0

0

0

0

30

COM1

0

CA

40

0

0

0

0

0

0

40

COM1

0

CA

50

0

0

0

0

0

0

50

COM1

0

CA

60

0

0

0

0

0

0

59.99

COM1

0

CA

70

0

0

0

0

0

0

69.99

COM1

0

CA

80

0

0

0

0

0

0.01

79.99

COM1

0

CA

90

0

0

0

0

0

0.01

89.99

COM1

0

CA

100

0

0

0

0

0

0.01

99.99

COM1

0

V

0

0

0

0

0

0

0

0

COM1

0

V

10

0

0

0

0

0

0

10

COM1

0

V

20

0

0

0

0

0

0

20

COM1

0

V

30

0

0

0

0

0

0

30

COM1

0

V

40

0

0

0

0

0

0

40

COM1

0

V

50

0

0

0

0

0

0

49.99

COM1

0

V

60

0

0

0

0

0

0

59.99

COM1

0

V

70

0

0

0

0

0

0

69.99

COM1

0

V

80

0

0

0

0

0

0.01

79.99

COM1

0

V

90

0

0

0

0

0

0.01

89.99

COM1

0

V

100

0

0

0

0

0

0.01

99.99

COM1

1

A

0

0

0

0

0

0

0

0

COM1

1

A

10

0

0

0

0

0

0

10

COM1

1

A

20

0

0

0

0

0

0

20

COM1

1

A

30

0

0

0

0

0

0

30

COM1

1

A

40

0

0

0

0

0

0

40

COM1

1

A

50

0

0

0

0

0

0

50

COM1

1

A

60

0

0

0

0

0

0

60

COM1

1

A

70

0

0

0

0

0

0

70

COM1

1

A

80

0

0

0

0

0

0.01

79.99

COM1

1

A

90

0

0

0

0

0

0.01

89.99

COM1

1

A

100

0

0

0

0

0

0.01

99.99

COM1

1

CA

0

0

0

0

0

0

0

0

COM1

1

CA

10

0

0

0

0

0

0

10

COM1

1

CA

20

0

0

0

0

0

0

20

COM1

1

CA

30

0

0

0

0

0

0

30

COM1

1

CA

40

0

0

0

0

0

0

40

COM1

1

CA

50

0

0

0

0

0

0

50

COM1

1

CA

60

0

0

0

0

0

0

60

COM1

1

CA

70

0

0

0

0

0

0

69.99

COM1

1

CA

80

0

0

0

0

0

0

79.99

COM1

1

CA

90

0

0

0

0

0

0

89.99

COM1

1

CA

100

0

0

0

0

0

0.01

99.99

COM1

1

V

0

0

0

0

0

0

0

0

COM1

1

V

10

0

0

0

0

0

0

10

COM1

1

V

20

0

0

0

0

0

0

20

COM1

1

V

30

0

0

0

0

0

0

30

COM1

1

V

40

0

0

0

0

0

0

40

COM1

1

V

50

0

0

0

0

0

0

50

COM1

1

V

60

0

0

0

0

0

0

60

COM1

1

V

70

0

0

0

0

0

0

69.99

COM1

1

V

80

0

0

0

0

0

0

79.99

COM1

1

V

90

0

0

0

0

0

0

89.99

COM1

1

V

100

0.01

0

0

0

0

0.01

99.99

COM10

0

A

0

0

0

0

0

0

0

0

COM10

0

A

10

0

0

0

0

0

0.02

9.98

COM10

0

A

20

0

0

0

0

0

0.02

19.98

COM10

0

A

30

0

0

0

0

0

0.03

29.97

COM10

0

A

40

0

0

0

0

0

0.04

39.96

COM10

0

A

50

0.03

0

10.56

0

0.01

0.09

39.31

COM10

0

A

60

0.04

0

27.58

0

0.02

0.07

32.28

COM10

0

A

70

0.04

0

45.65

0

0.01

0.05

24.25

COM10

0

A

80

0.04

0

61.91

0

0.02

0.04

17.99

COM10

0

A

90

0.04

0

76.4

0

0.02

0.03

13.5

COM10

0

A

100

0.05

0

89.11

0

0.02

0.03

10.79

COM10

0

CA

0

0

0

0

0

0

0

0

COM10

0

CA

10

0

0

0

0

0

0.02

9.98

COM10

0

CA

20

0

0

0

0

0

0.02

19.98

COM10

0

CA

30

0

0

0

0

0

0.03

29.97

COM10

0

CA

40

0

0

0

0

0

0.04

39.96

COM10

0

CA

50

0.03

0

10.56

0

0.01

0.09

39.31

COM10

0

CA

60

0.04

0

27.58

0

0.02

0.07

32.28

COM10

0

CA

70

0.04

0

45.65

0

0.01

0.05

24.25

COM10

0

CA

80

0.04

0

61.91

0

0.02

0.04

17.99

COM10

0

CA

90

0.04

0

76.4

0

0.02

0.03

13.5

COM10

0

CA

100

0.05

0

89.11

0

0.02

0.03

10.79

COM10

0

V

0

0

0

0

0

0

0

0

COM10

0

V

10

0

0

0

0

0

0.02

9.98

COM10

0

V

20

0

0

0

0

0

0.02

19.98

COM10

0

V

30

0

0

0

0

0

0.03

29.97

COM10

0

V

40

0

0

0

0

0

0.04

39.96

COM10

0

V

50

0.02

0

10.59

0

0.01

0.09

39.29

COM10

0

V

60

0.04

0

27.61

0

0.02

0.07

32.25

COM10

0

V

70

0.04

0

45.68

0

0.01

0.05

24.22

COM10

0

V

80

0.04

0

61.93

0

0.02

0.04

17.97

COM10

0

V

90

0.04

0

76.41

0

0.02

0.03

13.5

COM10

0

V

100

0.05

0

89.11

0

0.02

0.03

10.79

COM10

1

A

0

0

0

0

0

0

0

0

COM10

1

A

10

0

0

0

0

0

0.02

9.98

COM10

1

A

20

0

0

0

0

0

0.03

19.97

COM10

1

A

30

0.04

0

2.69

0

0

0.03

27.23

COM10

1

A

40

0.07

0

11.57

0

0

0.04

28.32

COM10

1

A

50

0.16

0

28.95

0

0.01

0.05

20.84

COM10

1

A

60

0.25

0

45.27

0

0.02

0.03

14.43

COM10

1

A

70

0.32

0

59.64

0

0.02

0.02

10

COM10

1

A

80

0.38

0

72.53

0

0.03

0.02

7.04

COM10

1

A

90

0.44

0

83.09

0

0.03

0.02

6.43

COM10

1

A

100

0.52

0

93.17

0

0.04

0.02

6.26

COM10

1

CA

0

0

0

0

0

0

0

0

COM10

1

CA

10

0

0

0

0

0

0

10

COM10

1

CA

20

0

0

0.5

0

0

0

19.49

COM10

1

CA

30

0

0

2.46

0

0

0.01

27.53

COM10

1

CA

40

0

0

11.41

0

0.01

0.06

28.52

COM10

1

CA

50

0

0

29.09

0

0.02

0.04

20.85

COM10

1

CA

60

0

0

45.62

0

0.02

0.03

14.33

COM10

1

CA

70

0.03

0

59.99

0

0.03

0.02

9.93

COM10

1

CA

80

0.08

0

72.7

0

0.04

0.02

7.17

COM10

1

CA

90

0.09

0

83.24

0

0.04

0.02

6.6

COM10

1

CA

100

0.12

0

93.32

0

0.05

0.02

6.49

COM10

1

V

0

0

0

0

0

0

0

0

COM10

1

V

10

0

0

0

0

0

0

10

COM10

1

V

20

0

0

0.5

0

0

0

19.49

COM10

1

V

30

0

0

2.46

0

0

0.01

27.53

COM10

1

V

40

0

0

11.41

0

0.01

0.06

28.52

COM10

1

V

50

0

0

29.09

0

0.02

0.04

20.85

COM10

1

V

60

0

0

45.62

0

0.02

0.03

14.33

COM10

1

V

70

0.03

0

59.99

0

0.03

0.02

9.93

COM10

1

V

80

0.07

0

72.69

0

0.04

0.02

7.19

COM10

1

V

90

0.09

0

83.24

0

0.04

0.02

6.6

COM10

1

V

100

0.12

0

93.32

0

0.05

0.02

6.49

COM2

0

A

0

0

0

0

0

0

0

0

COM2

0

A

10

0

0

0

0

0

0

10

COM2

0

A

20

0

0

0

0

0

0.01

19.99

COM2

0

A

30

0

0

0

0

0

0.01

29.99

COM2

0

A

40

0

0

0

0

0

0.02

39.98

COM2

0

A

50

0

0

0

0

0

0.02

49.98

COM2

0

A

60

0

0

0

0

0

0.02

59.98

COM2

0

A

70

0

0

0

0

0

0.05

69.95

COM2

0

A

80

0.02

0

0

0

0

0.06

79.92

COM2

0

A

90

0.18

0

0

0.01

0

0.06

89.75

COM2

0

A

100

0.43

0

0

0.01

0

0.05

99.5

COM2

0

CA

0

0

0

0

0

0

0

0

COM2

0

CA

10

0

0

0

0

0

0

10

COM2

0

CA

20

0

0

0

0

0

0.01

19.99

COM2

0

CA

30

0

0

0

0

0

0.02

29.98

COM2

0

CA

40

0

0

0

0

0

0.02

39.97

COM2

0

CA

50

0

0

0

0

0

0.04

49.96

COM2

0

CA

60

0.01

0

0

0

0

0.04

59.95

COM2

0

CA

70

0.06

0

0

0

0

0.05

69.89

COM2

0

CA

80

0.11

0

0

0.01

0

0.05

79.83

COM2

0

CA

90

0.35

0

0

0.01

0

0.06

89.58

COM2

0

CA

100

0.62

0

0

0.01

0

0.05

99.31

COM2

0

V

0

0

0

0

0

0

0

0

COM2

0

V

10

0

0

0

0

0

0

10

COM2

0

V

20

0

0

0

0

0

0.01

19.99

COM2

0

V

30

0

0

0

0

0

0.02

29.98

COM2

0

V

40

0

0

0

0

0

0.02

39.98

COM2

0

V

50

0

0

0

0

0

0.04

49.96

COM2

0

V

60

0.01

0

0

0

0

0.04

59.95

COM2

0

V

70

0.06

0

0

0

0

0.05

69.89

COM2

0

V

80

0.11

0

0

0.01

0

0.05

79.83

COM2

0

V

90

0.35

0

0

0.01

0

0.06

89.58

COM2

0

V

100

0.62

0

0

0.01

0

0.05

99.31

COM2

1

A

0

0

0

0

0

0

0

0

COM2

1

A

10

0

0

0

0

0

0

10

COM2

1

A

20

0

0

0

0

0

0.01

19.99

COM2

1

A

30

0

0

0

0

0

0.01

29.99

COM2

1

A

40

0

0

0

0

0

0.01

39.99

COM2

1

A

50

0.09

0

0

0

0

0.02

49.88

COM2

1

A

60

0.33

0

0

0

0

0.03

59.64

COM2

1

A

70

0.59

0

0

0

0

0.04

69.37

COM2

1

A

80

1.11

0

0

0.01

0

0.04

78.84

COM2

1

A

90

1.74

0

0

0.01

0

0.04

88.21

COM2

1

A

100

2.47

0

0

0.01

0

0.04

97.47

COM2

1

CA

0

0

0

0

0

0

0

0

COM2

1

CA

10

0

0

0

0

0

0

10

COM2

1

CA

20

0

0

0

0

0

0.01

19.99

COM2

1

CA

30

0

0

0

0

0

0.02

29.98

COM2

1

CA

40

0

0

0

0

0

0.02

39.98

COM2

1

CA

50

0

0

0

0

0

0.03

49.97

COM2

1

CA

60

0.05

0

0

0

0

0.03

59.92

COM2

1

CA

70

0.28

0

0

0

0

0.04

69.67

COM2

1

CA

80

0.63

0

0

0.01

0

0.05

79.31

COM2

1

CA

90

1.61

0

0

0.01

0

0.04

88.33

COM2

1

CA

100

2.5

0

0

0.01

0

0.04

97.44

COM2

1

V

0

0

0

0

0

0

0

0

COM2

1

V

10

0

0

0

0

0

0

10

COM2

1

V

20

0

0

0

0

0

0.01

19.99

COM2

1

V

30

0

0

0

0

0

0.02

29.98

COM2

1

V

40

0

0

0

0

0

0.02

39.98

COM2

1

V

50

0

0

0

0

0

0.03

49.97

COM2

1

V

60

0.05

0

0

0

0

0.03

59.92

COM2

1

V

70

0.27

0

0

0

0

0.04

69.68

COM2

1

V

80

0.63

0

0

0.01

0

0.04

79.31

COM2

1

V

90

1.64

0

0

0.01

0

0.04

88.3

COM2

1

V

100

2.52

0

0

0.01

0

0.04

97.42

COM3

0

A

0

0

0

0

0

0

0

0

COM3

0

A

10

0

0

0

0

0

0

10

COM3

0

A

20

0

0

0

0

0

0

20

COM3

0

A

30

0

0

0

0

0

0

30

COM3

0

A

40

0

0

0

0

0

0

40

COM3

0

A

50

0

0

0

0

0

0

50

COM3

0

A

60

0

0

0

0

0

0

60

COM3

0

A

70

0

0

0

0

0

0.01

69.99

COM3

0

A

80

0

0

0

0

0

0.01

79.99

COM3

0

A

90

0

0

0

0

0

0.01

89.99

COM3

0

A

100

0

0

0

0

0

0.01

99.99

COM3

0

CA

0

0

0

0

0

0

0

0

COM3

0

CA

10

0

0

0

0

0

0

10

COM3

0

CA

20

0

0

0

0

0

0

20

COM3

0

CA

30

0

0

0

0

0

0

30

COM3

0

CA

40

0

0

0

0

0

0

40

COM3

0

CA

50

0

0

0

0

0

0

49.99

COM3

0

CA

60

0

0

0

0

0

0.01

59.99

COM3

0

CA

70

0

0

0

0

0

0.01

69.99

COM3

0

CA

80

0

0

0

0

0

0.01

79.99

COM3

0

CA

90

0

0

0

0

0

0.01

89.99

COM3

0

CA

100

0

0

0

0

0

0.01

99.99

COM3

0

V

0

0

0

0

0

0

0

0

COM3

0

V

10

0

0

0

0

0

0

10

COM3

0

V

20

0

0

0

0

0

0

20

COM3

0

V

30

0

0

0

0

0

0

30

COM3

0

V

40

0

0

0

0

0

0

40

COM3

0

V

50

0

0

0

0

0

0

49.99

COM3

0

V

60

0

0

0

0

0

0.01

59.99

COM3

0

V

70

0

0

0

0

0

0.01

69.99

COM3

0

V

80

0

0

0

0

0

0.01

79.99

COM3

0

V

90

0

0

0

0

0

0.01

89.99

COM3

0

V

100

0

0

0

0

0

0.01

99.99

COM3

1

A

0

0

0

0

0

0

0

0

COM3

1

A

10

0

0

0

0

0

0

10

COM3

1

A

20

0

0

0

0

0

0

20

COM3

1

A

30

0

0

0

0

0

0

30

COM3

1

A

40

0

0

0

0

0

0

40

COM3

1

A

50

0

0

0

0

0

0

50

COM3

1

A

60

0

0

0

0

0

0

60

COM3

1

A

70

0

0

0

0

0

0

70

COM3

1

A

80

0

0

0

0

0

0.01

79.99

COM3

1

A

90

0.01

0

0

0

0

0.01

89.98

COM3

1

A

100

0.04

0

0

0

0

0.01

99.95

COM3

1

CA

0

0

0

0

0

0

0

0

COM3

1

CA

10

0

0

0

0

0

0

10

COM3

1

CA

20

0

0

0

0

0

0

20

COM3

1

CA

30

0

0

0

0

0

0

30

COM3

1

CA

40

0

0

0

0

0

0

40

COM3

1

CA

50

0

0

0

0

0

0

50

COM3

1

CA

60

0

0

0

0

0

0.01

59.99

COM3

1

CA

70

0

0

0

0

0

0.01

69.99

COM3

1

CA

80

0

0

0

0

0

0.01

79.99

COM3

1

CA

90

0

0

0

0

0

0.01

89.99

COM3

1

CA

100

0.02

0

0

0

0

0.01

99.97

COM3

1

V

0

0

0

0

0

0

0

0

COM3

1

V

10

0

0

0

0

0

0

10

COM3

1

V

20

0

0

0

0

0

0

20

COM3

1

V

30

0

0

0

0

0

0

30

COM3

1

V

40

0

0

0

0

0

0

40

COM3

1

V

50

0

0

0

0

0

0

49.99

COM3

1

V

60

0

0

0

0

0

0.01

59.99

COM3

1

V

70

0

0

0

0

0

0.01

69.99

COM3

1

V

80

0

0

0

0

0

0.01

79.99

COM3

1

V

90

0

0

0

0

0

0.01

89.99

COM3

1

V

100

0.02

0

0

0

0

0.01

99.97

COM4

0

A

0

0

0

0

0

0

0

0

COM4

0

A

10

0

0

0

0

0

0.01

9.99

COM4

0

A

20

0

0

0

0

0

0.01

19.99

COM4

0

A

30

0

0

0

0

0

0.02

29.98

COM4

0

A

40

0

0

0

0

0

0.02

39.98

COM4

0

A

50

0

0

0

0

0

0.03

49.97

COM4

0

A

60

0

0

0

0

0

0.04

59.96

COM4

0

A

70

0

0

0

0

0

0.05

69.95

COM4

0

A

80

0

0

0

0

0

0.06

79.94

COM4

0

A

90

0

0

0

0

0

0.07

89.93

COM4

0

A

100

0

0

0

0

0

0.07

99.92

COM4

0

CA

0

0

0

0

0

0

0

0

COM4

0

CA

10

0

0

0

0

0

0.01

9.99

COM4

0

CA

20

0

0

0

0

0

0.01

19.98

COM4

0

CA

30

0

0

0

0

0

0.03

29.97

COM4

0

CA

40

0

0

0

0

0

0.04

39.96

COM4

0

CA

50

0

0

0

0

0

0.05

49.94

COM4

0

CA

60

0

0

0

0

0

0.06

59.94

COM4

0

CA

70

0

0

0

0

0

0.06

69.93

COM4

0

CA

80

0

0

0

0

0

0.07

79.93

COM4

0

CA

90

0

0

0

0

0

0.07

89.92

COM4

0

CA

100

0

0

0

0

0

0.08

99.91

COM4

0

V

0

0

0

0

0

0

0

0

COM4

0

V

10

0

0

0

0

0

0.01

9.99

COM4

0

V

20

0

0

0

0

0

0.01

19.99

COM4

0

V

30

0

0

0

0

0

0.03

29.97

COM4

0

V

40

0

0

0

0

0

0.04

39.96

COM4

0

V

50

0

0

0

0

0

0.05

49.95

COM4

0

V

60

0

0

0

0

0

0.06

59.94

COM4

0

V

70

0

0

0

0

0

0.06

69.93

COM4

0

V

80

0

0

0

0

0

0.07

79.93

COM4

0

V

90

0

0

0

0

0

0.07

89.92

COM4

0

V

100

0

0

0

0

0

0.08

99.91

COM4

1

A

0

0

0

0

0

0

0

0

COM4

1

A

10

0

0

0

0

0

0.01

9.99

COM4

1

A

20

0

0

0

0

0

0.01

19.99

COM4

1

A

30

0

0

0

0

0

0.02

29.98

COM4

1

A

40

0

0

0

0

0

0.02

39.98

COM4

1

A

50

0

0

0

0

0

0.03

49.97

COM4

1

A

60

0

0

0

0

0

0.04

59.96

COM4

1

A

70

0

0

0

0

0

0.05

69.95

COM4

1

A

80

0

0

0

0

0

0.06

79.94

COM4

1

A

90

0

0

0

0

0

0.06

89.93

COM4

1

A

100

0

0

0

0

0

0.09

99.91

COM4

1

CA

0

0

0

0

0

0

0

0

COM4

1

CA

10

0

0

0

0

0

0

10

COM4

1

CA

20

0

0

0

0

0

0.01

19.99

COM4

1

CA

30

0

0

0

0

0

0.01

29.99

COM4

1

CA

40

0

0

0

0

0

0.02

39.98

COM4

1

CA

50

0

0

0

0

0

0.03

49.97

COM4

1

CA

60

0

0

0

0

0

0.04

59.96

COM4

1

CA

70

0

0

0

0

0

0.05

69.95

COM4

1

CA

80

0

0

0

0

0

0.06

79.94

COM4

1

CA

90

0

0

0

0

0

0.07

89.93

COM4

1

CA

100

0

0

0

0

0

0.08

99.91

COM4

1

V

0

0

0

0

0

0

0

0

COM4

1

V

10

0

0

0

0

0

0

10

COM4

1

V

20

0

0

0

0

0

0.01

19.99

COM4

1

V

30

0

0

0

0

0

0.01

29.99

COM4

1

V

40

0

0

0

0

0

0.02

39.98

COM4

1

V

50

0

0

0

0

0

0.03

49.97

COM4

1

V

60

0

0

0

0

0

0.04

59.96

COM4

1

V

70

0

0

0

0

0

0.05

69.95

COM4

1

V

80

0

0

0

0

0

0.06

79.94

COM4

1

V

90

0

0

0

0

0

0.07

89.93

COM4

1

V

100

0

0

0

0

0

0.08

99.91

COM5

0

A

0

0

0

0

0

0

0

0

COM5

0

A

10

0

0

0

0

0

0

10

COM5

0

A

20

0

0

0

0

0

0

20

COM5

0

A

30

0

0

0

0

0

0

30

COM5

0

A

40

0

0

0

0

0

0

40

COM5

0

A

50

0

0

0

0

0

0

50

COM5

0

A

60

0

0

0

0

0

0

60

COM5

0

A

70

0

0

0

0

0

0

70

COM5

0

A

80

0

0

0

0

0

0

80

COM5

0

A

90

0

0

0

0

0

0

90

COM5

0

A

100

0

0

0

0

0

0

99.99

COM5

0

CA

0

0

0

0

0

0

0

0

COM5

0

CA

10

0

0

0

0

0

0

10

COM5

0

CA

20

0

0

0

0

0

0

20

COM5

0

CA

30

0

0

0

0

0

0

30

COM5

0

CA

40

0

0

0

0

0

0

40

COM5

0

CA

50

0

0

0

0

0

0

50

COM5

0

CA

60

0

0

0

0

0

0

60

COM5

0

CA

70

0

0

0

0

0

0

70

COM5

0

CA

80

0

0

0

0

0

0

80

COM5

0

CA

90

0

0

0

0

0

0

90

COM5

0

CA

100

0

0

0

0

0

0

99.99

COM5

0

V

0

0

0

0

0

0

0

0

COM5

0

V

10

0

0

0

0

0

0

10

COM5

0

V

20

0

0

0

0

0

0

20

COM5

0

V

30

0

0

0

0

0

0

30

COM5

0

V

40

0

0

0

0

0

0

40

COM5

0

V

50

0

0

0

0

0

0

50

COM5

0

V

60

0

0

0

0

0

0

60

COM5

0

V

70

0

0

0

0

0

0

70

COM5

0

V

80

0

0

0

0

0

0

80

COM5

0

V

90

0

0

0

0

0

0

90

COM5

0

V

100

0

0

0

0

0

0

99.99

COM5

1

A

0

0

0

0

0

0

0

0

COM5

1

A

10

0

0

0

0

0

0

10

COM5

1

A

20

0

0

0

0

0

0

20

COM5

1

A

30

0

0

0

0

0

0

30

COM5

1

A

40

0

0

0

0

0

0

40

COM5

1

A

50

0

0

0

0

0

0

50

COM5

1

A

60

0

0

0

0

0

0

60

COM5

1

A

70

0

0

0

0

0

0

70

COM5

1

A

80

0

0

0

0

0

0

80

COM5

1

A

90

0

0

0

0

0

0

89.99

COM5

1

A

100

0

0

0

0

0

0

99.99

COM5

1

CA

0

0

0

0

0

0

0

0

COM5

1

CA

10

0

0

0

0

0

0

10

COM5

1

CA

20

0

0

0

0

0

0

20

COM5

1

CA

30

0

0

0

0

0

0

30

COM5

1

CA

40

0

0

0

0

0

0

40

COM5

1

CA

50

0

0

0

0

0

0

50

COM5

1

CA

60

0

0

0

0

0

0

60

COM5

1

CA

70

0

0

0

0

0

0

70

COM5

1

CA

80

0

0

0

0

0

0

80

COM5

1

CA

90

0

0

0

0

0

0

89.99

COM5

1

CA

100

0

0

0

0

0

0

99.99

COM5

1

V

0

0

0

0

0

0

0

0

COM5

1

V

10

0

0

0

0

0

0

10

COM5

1

V

20

0

0

0

0

0

0

20

COM5

1

V

30

0

0

0

0

0

0

30

COM5

1

V

40

0

0

0

0

0

0

40

COM5

1

V

50

0

0

0

0

0

0

50

COM5

1

V

60

0

0

0

0

0

0

60

COM5

1

V

70

0

0

0

0

0

0

70

COM5

1

V

80

0

0

0

0

0

0

80

COM5

1

V

90

0

0

0

0

0

0

89.99

COM5

1

V

100

0

0

0

0

0

0

99.99

COM6

0

A

0

0

0

0

0

0

0

0

COM6

0

A

10

0

0

0

0

0

0

10

COM6

0

A

20

0

0

0

0

0

0

20

COM6

0

A

30

0

0

0

0

0

0

30

COM6

0

A

40

0

0

0

0

0

0

40

COM6

0

A

50

0

0

0

0

0

0

50

COM6

0

A

60

0

0

0

0

0

0

60

COM6

0

A

70

0

0

0

0

0

0

70

COM6

0

A

80

0

0

0

0

0

0

80

COM6

0

A

90

0

0

0

0

0

0

90

COM6

0

A

100

0

0

0

0

0

0

100

COM6

0

CA

0

0

0

0

0

0

0

0

COM6

0

CA

10

0

0

0

0

0

0

10

COM6

0

CA

20

0

0

0

0

0

0

20

COM6

0

CA

30

0

0

0

0

0

0

30

COM6

0

CA

40

0

0

0

0

0

0

40

COM6

0

CA

50

0

0

0

0

0

0

50

COM6

0

CA

60

0

0

0

0

0

0

60

COM6

0

CA

70

0

0

0

0

0

0

70

COM6

0

CA

80

0

0

0

0

0

0

80

COM6

0

CA

90

0

0

0

0

0

0

90

COM6

0

CA

100

0

0

0

0

0

0

100

COM6

0

V

0

0

0

0

0

0

0

0

COM6

0

V

10

0

0

0

0

0

0

10

COM6

0

V

20

0

0

0

0

0

0

20

COM6

0

V

30

0

0

0

0

0

0

30

COM6

0

V

40

0

0

0

0

0

0

40

COM6

0

V

50

0

0

0

0

0

0

50

COM6

0

V

60

0

0

0

0

0

0

60

COM6

0

V

70

0

0

0

0

0

0

70

COM6

0

V

80

0

0

0

0

0

0

80

COM6

0

V

90

0

0

0

0

0

0

90

COM6

0

V

100

0

0

0

0

0

0

100

COM6

1

A

0

0

0

0

0

0

0

0

COM6

1

A

10

0

0

0

0

0

0

10

COM6

1

A

20

0

0

0

0

0

0

20

COM6

1

A

30

0

0

0

0

0

0

30

COM6

1

A

40

0

0

0

0

0

0

40

COM6

1

A

50

0

0

0

0

0

0

50

COM6

1

A

60

0

0

0

0

0

0

60

COM6

1

A

70

0

0

0

0

0

0

70

COM6

1

A

80

0

0

0

0

0

0

80

COM6

1

A

90

0

0

0

0

0

0

90

COM6

1

A

100

0

0

0

0

0

0

100

COM6

1

CA

0

0

0

0

0

0

0

0

COM6

1

CA

10

0

0

0

0

0

0

10

COM6

1

CA

20

0

0

0

0

0

0

20

COM6

1

CA

30

0

0

0

0

0

0

30

COM6

1

CA

40

0

0

0

0

0

0

40

COM6

1

CA

50

0

0

0

0

0

0

50

COM6

1

CA

60

0

0

0

0

0

0

60

COM6

1

CA

70

0

0

0

0

0

0

70

COM6

1

CA

80

0

0

0

0

0

0

80

COM6

1

CA

90

0

0

0

0

0

0

90

COM6

1

CA

100

0

0

0

0

0

0

100

COM6

1

V

0

0

0

0

0

0

0

0

COM6

1

V

10

0

0

0

0

0

0

10

COM6

1

V

20

0

0

0

0

0

0

20

COM6

1

V

30

0

0

0

0

0

0

30

COM6

1

V

40

0

0

0

0

0

0

40

COM6

1

V

50

0

0

0

0

0

0

50

COM6

1

V

60

0

0

0

0

0

0

60

COM6

1

V

70

0

0

0

0

0

0

70

COM6

1

V

80

0

0

0

0

0

0

80

COM6

1

V

90

0

0

0

0

0

0

90

COM6

1

V

100

0

0

0

0

0

0

100

COM7

0

A

0

0

0

0

0

0

0

0

COM7

0

A

10

0

0

0

0

0

0

10

COM7

0

A

20

0

0

0

0

0

0

20

COM7

0

A

30

0

0

0

0

0

0

30

COM7

0

A

40

0

0

0

0

0

0

40

COM7

0

A

50

0

0

0

0

0

0

50

COM7

0

A

60

0

0

0

0

0

0.01

59.99

COM7

0

A

70

0

0

0

0

0

0.01

69.99

COM7

0

A

80

0

0

0

0

0

0.01

79.99

COM7

0

A

90

0

0

0

0

0

0.01

89.99

COM7

0

A

100

0

0

0

0

0

0.01

99.99

COM7

0

CA

0

0

0

0

0

0

0

0

COM7

0

CA

10

0

0

0

0

0

0

10

COM7

0

CA

20

0

0

0

0

0

0

20

COM7

0

CA

30

0

0

0

0

0

0

30

COM7

0

CA

40

0

0

0

0

0

0

40

COM7

0

CA

50

0

0

0

0

0

0

50

COM7

0

CA

60

0

0

0

0

0

0.01

59.99

COM7

0

CA

70

0

0

0

0

0

0.01

69.99

COM7

0

CA

80

0

0

0

0

0

0.01

79.99

COM7

0

CA

90

0

0

0

0

0

0.01

89.99

COM7

0

CA

100

0

0

0

0

0

0.01

99.99

COM7

0

V

0

0

0

0

0

0

0

0

COM7

0

V

10

0

0

0

0

0

0

10

COM7

0

V

20

0

0

0

0

0

0

20

COM7

0

V

30

0

0

0

0

0

0

30

COM7

0

V

40

0

0

0

0

0

0

40

COM7

0

V

50

0

0

0

0

0

0

50

COM7

0

V

60

0

0

0

0

0

0.01

59.99

COM7

0

V

70

0

0

0

0

0

0.01

69.99

COM7

0

V

80

0

0

0

0

0

0.01

79.99

COM7

0

V

90

0

0

0

0

0

0.01

89.99

COM7

0

V

100

0

0

0

0

0

0.01

99.99

COM7

1

A

0

0

0

0

0

0

0

0

COM7

1

A

10

0

0

0

0

0

0

10

COM7

1

A

20

0

0

0

0

0

0

20

COM7

1

A

30

0

0

0

0

0

0

30

COM7

1

A

40

0

0

0

0

0

0

40

COM7

1

A

50

0

0

0

0

0

0

50

COM7

1

A

60

0

0

0

0

0

0

60

COM7

1

A

70

0

0

0

0

0

0

70

COM7

1

A

80

0

0

0

0

0

0.01

79.99

COM7

1

A

90

0

0

0

0

0

0.01

89.99

COM7

1

A

100

0

0

0

0

0

0.01

99.99

COM7

1

CA

0

0

0

0

0

0

0

0

COM7

1

CA

10

0

0

0

0

0

0

10

COM7

1

CA

20

0

0

0

0

0

0

20

COM7

1

CA

30

0

0

0

0

0

0

30

COM7

1

CA

40

0

0

0

0

0

0

40

COM7

1

CA

50

0

0

0

0

0

0

50

COM7

1

CA

60

0

0

0

0

0

0

60

COM7

1

CA

70

0

0

0

0

0

0

70

COM7

1

CA

80

0

0

0

0

0

0

80

COM7

1

CA

90

0

0

0

0

0

0

90

COM7

1

CA

100

0

0

0

0

0

0.01

99.99

COM7

1

V

0

0

0

0

0

0

0

0

COM7

1

V

10

0

0

0

0

0

0

10

COM7

1

V

20

0

0

0

0

0

0

20

COM7

1

V

30

0

0

0

0

0

0

30

COM7

1

V

40

0

0

0

0

0

0

40

COM7

1

V

50

0

0

0

0

0

0

50

COM7

1

V

60

0

0

0

0

0

0

60

COM7

1

V

70

0

0

0

0

0

0

70

COM7

1

V

80

0

0

0

0

0

0

80

COM7

1

V

90

0

0

0

0

0

0

90

COM7

1

V

100

0

0

0

0

0

0.01

99.99

COM8

0

A

0

0

0

0

0

0

0

0

COM8

0

A

10

0

0

0

0

0

0

10

COM8

0

A

20

0

0

0

0

0

0

20

COM8

0

A

30

0

0

0

0

0

0

30

COM8

0

A

40

0

0

0

0

0

0

40

COM8

0

A

50

0

0

0

0

0

0

50

COM8

0

A

60

0

0

0

0

0

0

60

COM8

0

A

70

0

0

0

0

0

0

70

COM8

0

A

80

0

0

0

0

0

0

80

COM8

0

A

90

0

0

0

0

0

0

90

COM8

0

A

100

0

0

0

0

0

0

99.99

COM8

0

CA

0

0

0

0

0

0

0

0

COM8

0

CA

10

0

0

0

0

0

0

10

COM8

0

CA

20

0

0

0

0

0

0

20

COM8

0

CA

30

0

0

0

0

0

0

30

COM8

0

CA

40

0

0

0

0

0

0

40

COM8

0

CA

50

0

0

0

0

0

0

50

COM8

0

CA

60

0

0

0

0

0

0

60

COM8

0

CA

70

0

0

0

0

0

0

70

COM8

0

CA

80

0

0

0

0

0

0

80

COM8

0

CA

90

0

0

0

0

0

0

90

COM8

0

CA

100

0

0

0

0

0

0

99.99

COM8

0

V

0

0

0

0

0

0

0

0

COM8

0

V

10

0

0

0

0

0

0

10

COM8

0

V

20

0

0

0

0

0

0

20

COM8

0

V

30

0

0

0

0

0

0

30

COM8

0

V

40

0

0

0

0

0

0

40

COM8

0

V

50

0

0

0

0

0

0

50

COM8

0

V

60

0

0

0

0

0

0

60

COM8

0

V

70

0

0

0

0

0

0

70

COM8

0

V

80

0

0

0

0

0

0

80

COM8

0

V

90

0

0

0

0

0

0

90

COM8

0

V

100

0

0

0

0

0

0

99.99

COM8

1

A

0

0

0

0

0

0

0

0

COM8

1

A

10

0

0

0

0

0

0

10

COM8

1

A

20

0

0

0

0

0

0

20

COM8

1

A

30

0

0

0

0

0

0

30

COM8

1

A

40

0

0

0

0

0

0

40

COM8

1

A

50

0

0

0

0

0

0

50

COM8

1

A

60

0

0

0

0

0

0

60

COM8

1

A

70

0

0

0

0

0

0

70

COM8

1

A

80

0

0

0

0

0

0

80

COM8

1

A

90

0

0

0

0

0

0

90

COM8

1

A

100

0.01

0

0

0

0

0

99.98

COM8

1

CA

0

0

0

0

0

0

0

0

COM8

1

CA

10

0

0

0

0

0

0

10

COM8

1

CA

20

0

0

0

0

0

0

20

COM8

1

CA

30

0

0

0

0

0

0

30

COM8

1

CA

40

0

0

0

0

0

0

40

COM8

1

CA

50

0

0

0

0

0

0

50

COM8

1

CA

60

0

0

0

0

0

0

60

COM8

1

CA

70

0

0

0

0

0

0

70

COM8

1

CA

80

0

0

0

0

0

0

79.99

COM8

1

CA

90

0.01

0

0

0

0

0

89.99

COM8

1

CA

100

0.01

0

0

0

0

0

99.98

COM8

1

V

0

0

0

0

0

0

0

0

COM8

1

V

10

0

0

0

0

0

0

10

COM8

1

V

20

0

0

0

0

0

0

20

COM8

1

V

30

0

0

0

0

0

0

30

COM8

1

V

40

0

0

0

0

0

0

40

COM8

1

V

50

0

0

0

0

0

0

50

COM8

1

V

60

0

0

0

0

0

0

60

COM8

1

V

70

0

0

0

0

0

0

70

COM8

1

V

80

0

0

0

0

0

0

79.99

COM8

1

V

90

0.01

0

0

0

0

0

89.99

COM8

1

V

100

0.01

0

0

0

0

0

99.98

COM9

0

A

0

0

0

0

0

0

0

0

COM9

0

A

10

0

0

0

0

0

0

10

COM9

0

A

20

0

0

0

0

0

0

20

COM9

0

A

30

0

0

0

0

0

0

30

COM9

0

A

40

0

0

0

0

0

0

40

COM9

0

A

50

0

0

0

0

0

0

50

COM9

0

A

60

0

0

0

0

0

0

60

COM9

0

A

70

0

0

0

0

0

0

70

COM9

0

A

80

0

0

0

0

0

0

80

COM9

0

A

90

0

0

0

0

0

0.01

89.99

COM9

0

A

100

0

0

0

0

0

0.01

99.99

COM9

0

CA

0

0

0

0

0

0

0

0

COM9

0

CA

10

0

0

0

0

0

0

10

COM9

0

CA

20

0

0

0

0

0

0

20

COM9

0

CA

30

0

0

0

0

0

0

30

COM9

0

CA

40

0

0

0

0

0

0

40

COM9

0

CA

50

0

0

0

0

0

0

50

COM9

0

CA

60

0

0

0

0

0

0

59.99

COM9

0

CA

70

0

0

0

0

0

0.01

69.99

COM9

0

CA

80

0

0

0

0

0

0.01

79.99

COM9

0

CA

90

0

0

0

0

0

0.01

89.99

COM9

0

CA

100

0

0

0

0

0

0.01

99.99

COM9

0

V

0

0

0

0

0

0

0

0

COM9

0

V

10

0

0

0

0

0

0

10

COM9

0

V

20

0

0

0

0

0

0

20

COM9

0

V

30

0

0

0

0

0

0

30

COM9

0

V

40

0

0

0

0

0

0

40

COM9

0

V

50

0

0

0

0

0

0

50

COM9

0

V

60

0

0

0

0

0

0

59.99

COM9

0

V

70

0

0

0

0

0

0.01

69.99

COM9

0

V

80

0

0

0

0

0

0.01

79.99

COM9

0

V

90

0

0

0

0

0

0.01

89.99

COM9

0

V

100

0

0

0

0

0

0.01

99.99

COM9

1

A

0

0

0

0

0

0

0

0

COM9

1

A

10

0

0

0

0

0

0

10

COM9

1

A

20

0

0

0

0

0

0

20

COM9

1

A

30

0

0

0

0

0

0

30

COM9

1

A

40

0

0

0

0

0

0

40

COM9

1

A

50

0

0

0

0

0

0

50

COM9

1

A

60

0

0

0

0

0

0

60

COM9

1

A

70

0

0

0

0

0

0

70

COM9

1

A

80

0

0

0

0

0

0

79.99

COM9

1

A

90

0

0

0

0

0

0.01

89.99

COM9

1

A

100

0

0

0

0

0

0.01

99.98

COM9

1

CA

0

0

0

0

0

0

0

0

COM9

1

CA

10

0

0

0

0

0

0

10

COM9

1

CA

20

0

0

0

0

0

0

20

COM9

1

CA

30

0

0

0

0

0

0

30

COM9

1

CA

40

0

0

0

0

0

0

40

COM9

1

CA

50

0

0

0

0

0

0

50

COM9

1

CA

60

0

0

0

0

0

0

60

COM9

1

CA

70

0

0

0

0

0

0

69.99

COM9

1

CA

80

0

0

0

0

0

0

79.99

COM9

1

CA

90

0

0

0

0

0

0.01

89.99

COM9

1

CA

100

0

0

0

0

0

0.01

99.99

COM9

1

V

0

0

0

0

0

0

0

0

COM9

1

V

10

0

0

0

0

0

0

10

COM9

1

V

20

0

0

0

0

0

0

20

COM9

1

V

30

0

0

0

0

0

0

30

COM9

1

V

40

0

0

0

0

0

0

40

COM9

1

V

50

0

0

0

0

0

0

50

COM9

1

V

60

0

0

0

0

0

0

60

COM9

1

V

70

0

0

0

0

0

0

69.99

COM9

1

V

80

0

0

0

0

0

0

79.99

COM9

1

V

90

0

0

0

0

0

0.01

89.99

COM9

1

V

100

0

0

0

0

0

0.01

99.99

EDU1

0

A

0

0

0

0

0

0

0

0

EDU1

0

A

10

0

0

0

0

0

0

10

EDU1

0

A

20

0

0

0

0

0

0

20

EDU1

0

A

30

0

0

0

0

0

0

30

EDU1

0

A

40

0

0

0

0

0

0

40

EDU1

0

A

50

0

0

0

0

0

0

50

EDU1

0

A

60

0

0

0

0

0

0

60

EDU1

0

A

70

0

0

0

0

0

0

70

EDU1

0

A

80

0

0

0

0

0

0

80

EDU1

0

A

90

0

0

0

0

0

0

89.99

EDU1

0

A

100

0

0

0.01

0

0

0.01

99.99

EDU1

0

CA

0

0

0

0

0

0

0

0

EDU1

0

CA

10

0

0

0

0

0

0

10

EDU1

0

CA

20

0

0

0

0

0

0

20

EDU1

0

CA

30

0

0

0

0

0

0

30

EDU1

0

CA

40

0

0

0

0

0

0

40

EDU1

0

CA

50

0

0

0

0

0

0

49.99

EDU1

0

CA

60

0

0

0

0

0

0

59.99

EDU1

0

CA

70

0

0

0.01

0

0

0

69.99

EDU1

0

CA

80

0

0

0.01

0

0

0.01

79.99

EDU1

0

CA

90

0

0

0.01

0

0

0.01

89.99

EDU1

0

CA

100

0

0

0.01

0

0

0.01

99.99

EDU1

0

V

0

0

0

0

0

0

0

0

EDU1

0

V

10

0

0

0

0

0

0

10

EDU1

0

V

20

0

0

0

0

0

0

20

EDU1

0

V

30

0

0

0

0

0

0

30

EDU1

0

V

40

0

0

0

0

0

0

40

EDU1

0

V

50

0

0

0

0

0

0

49.99

EDU1

0

V

60

0

0

0

0

0

0

59.99

EDU1

0

V

70

0

0

0.01

0

0

0

69.99

EDU1

0

V

80

0

0

0.01

0

0

0.01

79.99

EDU1

0

V

90

0

0

0.01

0

0

0.01

89.99

EDU1

0

V

100

0

0

0.01

0

0

0.01

99.99

EDU1

1

A

0

0

0

0

0

0

0

0

EDU1

1

A

10

0

0

0

0

0

0

10

EDU1

1

A

20

0

0

0

0

0

0

20

EDU1

1

A

30

0

0

0

0

0

0

30

EDU1

1

A

40

0

0

0

0

0

0

40

EDU1

1

A

50

0

0

0

0

0

0

50

EDU1

1

A

60

0

0

0

0

0

0

60

EDU1

1

A

70

0

0

0

0

0

0

70

EDU1

1

A

80

0

0

0

0

0

0

80

EDU1

1

A

90

0

0

0

0

0

0

89.99

EDU1

1

A

100

0

0

0.01

0

0

0

99.99

EDU1

1

CA

0

0

0

0

0

0

0

0

EDU1

1

CA

10

0

0

0

0

0

0

10

EDU1

1

CA

20

0

0

0

0

0

0

20

EDU1

1

CA

30

0

0

0

0

0

0

30

EDU1

1

CA

40

0

0

0

0

0

0

40

EDU1

1

CA

50

0

0

0

0

0

0

50

EDU1

1

CA

60

0

0

0

0

0

0

59.99

EDU1

1

CA

70

0

0

0

0

0

0

69.99

EDU1

1

CA

80

0

0

0.01

0

0

0

79.99

EDU1

1

CA

90

0

0

0.01

0

0

0

89.99

EDU1

1

CA

100

0

0

0.01

0

0

0

99.99

EDU1

1

V

0

0

0

0

0

0

0

0

EDU1

1

V

10

0

0

0

0

0

0

10

EDU1

1

V

20

0

0

0

0

0

0

20

EDU1

1

V

30

0

0

0

0

0

0

30

EDU1

1

V

40

0

0

0

0

0

0

40

EDU1

1

V

50

0

0

0

0

0

0

50

EDU1

1

V

60

0

0

0

0

0

0

59.99

EDU1

1

V

70

0

0

0

0

0

0

69.99

EDU1

1

V

80

0

0

0.01

0

0

0

79.99

EDU1

1

V

90

0

0

0.01

0

0

0

89.99

EDU1

1

V

100

0

0

0.01

0

0

0

99.99

EDU2

0

A

0

0

0

0

0

0

0

0

EDU2

0

A

10

0

0

0

0

0

0

10

EDU2

0

A

20

0

0

0

0

0

0

20

EDU2

0

A

30

0

0

0

0

0

0

30

EDU2

0

A

40

0

0

0

0

0

0

40

EDU2

0

A

50

0

0

0

0

0

0

50

EDU2

0

A

60

0

0

0

0

0

0

60

EDU2

0

A

70

0

0

0

0

0

0

70

EDU2

0

A

80

0

0

0

0

0

0

80

EDU2

0

A

90

0

0

0

0

0

0

90

EDU2

0

A

100

0

0

0

0

0

0

100

EDU2

0

CA

0

0

0

0

0

0

0

0

EDU2

0

CA

10

0

0

0

0

0

0

10

EDU2

0

CA

20

0

0

0

0

0

0

20

EDU2

0

CA

30

0

0

0

0

0

0

30

EDU2

0

CA

40

0

0

0

0

0

0

40

EDU2

0

CA

50

0

0

0

0

0

0

50

EDU2

0

CA

60

0

0

0

0

0

0

60

EDU2

0

CA

70

0

0

0

0

0

0

70

EDU2

0

CA

80

0

0

0

0

0

0

80

EDU2

0

CA

90

0

0

0

0

0

0

90

EDU2

0

CA

100

0

0

0

0

0

0

100

EDU2

0

V

0

0

0

0

0

0

0

0

EDU2

0

V

10

0

0

0

0

0

0

10

EDU2

0

V

20

0

0

0

0

0

0

20

EDU2

0

V

30

0

0

0

0

0

0

30

EDU2

0

V

40

0

0

0

0

0

0

40

EDU2

0

V

50

0

0

0

0

0

0

50

EDU2

0

V

60

0

0

0

0

0

0

60

EDU2

0

V

70

0

0

0

0

0

0

70

EDU2

0

V

80

0

0

0

0

0

0

80

EDU2

0

V

90

0

0

0

0

0

0

90

EDU2

0

V

100

0

0

0

0

0

0

100

EDU2

1

A

0

0

0

0

0

0

0

0

EDU2

1

A

10

0

0

0

0

0

0

10

EDU2

1

A

20

0

0

0

0

0

0

20

EDU2

1

A

30

0

0

0

0

0

0

30

EDU2

1

A

40

0

0

0

0

0

0

40

EDU2

1

A

50

0

0

0

0

0

0

50

EDU2

1

A

60

0

0

0

0

0

0

60

EDU2

1

A

70

0

0

0

0

0

0

70

EDU2

1

A

80

0

0

0

0

0

0

80

EDU2

1

A

90

0

0

0

0

0

0

90

EDU2

1

A

100

0

0

0

0

0

0

100

EDU2

1

CA

0

0

0

0

0

0

0

0

EDU2

1

CA

10

0

0

0

0

0

0

10

EDU2

1

CA

20

0

0

0

0

0

0

20

EDU2

1

CA

30

0

0

0

0

0

0

30

EDU2

1

CA

40

0

0

0

0

0

0

40

EDU2

1

CA

50

0

0

0

0

0

0

50

EDU2

1

CA

60

0

0

0

0

0

0

60

EDU2

1

CA

70

0

0

0

0

0

0

70

EDU2

1

CA

80

0

0

0

0

0

0

80

EDU2

1

CA

90

0

0

0

0

0

0

90

EDU2

1

CA

100

0

0

0

0

0

0

100

EDU2

1

V

0

0

0

0

0

0

0

0

EDU2

1

V

10

0

0

0

0

0

0

10

EDU2

1

V

20

0

0

0

0

0

0

20

EDU2

1

V

30

0

0

0

0

0

0

30

EDU2

1

V

40

0

0

0

0

0

0

40

EDU2

1

V

50

0

0

0

0

0

0

50

EDU2

1

V

60

0

0

0

0

0

0

60

EDU2

1

V

70

0

0

0

0

0

0

70

EDU2

1

V

80

0

0

0

0

0

0

80

EDU2

1

V

90

0

0

0

0

0

0

90

EDU2

1

V

100

0

0

0

0

0

0

100

GOV1

0

A

0

0

0

0

0

0

0

0

GOV1

0

A

10

0

0

0

0

0

0

10

GOV1

0

A

20

0

0

0

0

0

0

20

GOV1

0

A

30

0

0

0

0

0

0

30

GOV1

0

A

40

0

0

0

0

0

0

40

GOV1

0

A

50

0

0

0

0

0

0

50

GOV1

0

A

60

0

0

0

0

0

0

60

GOV1

0

A

70

0

0

0

0

0

0

70

GOV1

0

A

80

0

0

0.01

0

0

0

79.99

GOV1

0

A

90

0

0

0.01

0

0

0

89.99

GOV1

0

A

100

0

0

0.01

0

0

0

99.98

GOV1

0

CA

0

0

0

0

0

0

0

0

GOV1

0

CA

10

0

0

0

0

0

0

10

GOV1

0

CA

20

0

0

0

0

0

0

20

GOV1

0

CA

30

0

0

0

0

0

0

30

GOV1

0

CA

40

0

0

0

0

0

0

40

GOV1

0

CA

50

0

0

0

0

0

0

49.99

GOV1

0

CA

60

0

0

0.01

0

0

0

59.99

GOV1

0

CA

70

0

0

0.01

0

0

0

69.99

GOV1

0

CA

80

0

0

0.01

0

0

0

79.98

GOV1

0

CA

90

0

0

0.01

0

0

0

89.98

GOV1

0

CA

100

0

0

0.01

0

0

0

99.98

GOV1

0

V

0

0

0

0

0

0

0

0

GOV1

0

V

10

0

0

0

0

0

0

10

GOV1

0

V

20

0

0

0

0

0

0

20

GOV1

0

V

30

0

0

0

0

0

0

30

GOV1

0

V

40

0

0

0

0

0

0

40

GOV1

0

V

50

0

0

0

0

0

0

49.99

GOV1

0

V

60

0

0

0.01

0

0

0

59.99

GOV1

0

V

70

0

0

0.01

0

0

0

69.99

GOV1

0

V

80

0

0

0.01

0

0

0

79.98

GOV1

0

V

90

0

0

0.01

0

0

0

89.98

GOV1

0

V

100

0

0

0.01

0

0

0

99.98

GOV1

1

A

0

0

0

0

0

0

0

0

GOV1

1

A

10

0

0

0

0

0

0

10

GOV1

1

A

20

0

0

0

0

0

0

20

GOV1

1

A

30

0

0

0

0

0

0

30

GOV1

1

A

40

0

0

0

0

0

0

40

GOV1

1

A

50

0

0

0

0

0

0

50

GOV1

1

A

60

0

0

0

0

0

0

60

GOV1

1

A

70

0

0

0

0

0

0

70

GOV1

1

A

80

0

0

0

0

0

0

80

GOV1

1

A

90

0.01

0

0.01

0

0

0

89.98

GOV1

1

A

100

0.01

0

0.02

0

0

0

99.97

GOV1

1

CA

0

0

0

0

0

0

0

0

GOV1

1

CA

10

0

0

0

0

0

0

10

GOV1

1

CA

20

0

0

0

0

0

0

20

GOV1

1

CA

30

0

0

0

0

0

0

30

GOV1

1

CA

40

0

0

0

0

0

0

40

GOV1

1

CA

50

0

0

0

0

0

0

50

GOV1

1

CA

60

0

0

0.01

0

0

0

59.99

GOV1

1

CA

70

0.01

0

0.01

0

0

0

69.98

GOV1

1

CA

80

0.01

0

0.01

0

0

0

79.98

GOV1

1

CA

90

0.01

0

0.01

0

0

0

89.98

GOV1

1

CA

100

0.03

0

0.01

0

0

0

99.95

GOV1

1

V

0

0

0

0

0

0

0

0

GOV1

1

V

10

0

0

0

0

0

0

10

GOV1

1

V

20

0

0

0

0

0

0

20

GOV1

1

V

30

0

0

0

0

0

0

30

GOV1

1

V

40

0

0

0

0

0

0

40

GOV1

1

V

50

0

0

0

0

0

0

49.99

GOV1

1

V

60

0

0

0.01

0

0

0

59.99

GOV1

1

V

70

0.01

0

0.01

0

0

0

69.98

GOV1

1

V

80

0.01

0

0.01

0

0

0

79.98

GOV1

1

V

90

0.01

0

0.01

0

0

0

89.98

GOV1

1

V

100

0.03

0

0.01

0

0

0

99.95

GOV2

0

A

0

0

0

0

0

0

0

0

GOV2

0

A

10

0

0

0

0

0

0

10

GOV2

0

A

20

0

0

0

0

0

0

20

GOV2

0

A

30

0

0

0

0

0

0.01

29.99

GOV2

0

A

40

0

0

0

0

0

0.01

39.99

GOV2

0

A

50

0

0

0

0

0

0.01

49.99

GOV2

0

A

60

0

0

0

0

0

0.01

59.99

GOV2

0

A

70

0

0

0

0

0

0.01

69.99

GOV2

0

A

80

0

0

0.01

0

0

0.02

79.97

GOV2

0

A

90

0

0

0.01

0

0

0.02

89.97

GOV2

0

A

100

0

0

0.02

0

0

0.02

99.96

GOV2

0

CA

0

0

0

0

0

0

0

0

GOV2

0

CA

10

0

0

0

0

0

0

10

GOV2

0

CA

20

0

0

0

0

0

0

19.99

GOV2

0

CA

30

0

0

0.01

0

0

0.01

29.99

GOV2

0

CA

40

0

0

0.01

0

0

0.01

39.98

GOV2

0

CA

50

0

0

0.01

0

0

0.01

49.98

GOV2

0

CA

60

0

0

0.02

0

0

0.01

59.97

GOV2

0

CA

70

0

0

0.02

0

0

0.01

69.97

GOV2

0

CA

80

0

0

0.02

0

0

0.01

79.96

GOV2

0

CA

90

0

0

0.02

0

0

0.02

89.96

GOV2

0

CA

100

0

0

0.03

0

0

0.02

99.96

GOV2

0

V

0

0

0

0

0

0

0

0

GOV2

0

V

10

0

0

0

0

0

0

10

GOV2

0

V

20

0

0

0

0

0

0

19.99

GOV2

0

V

30

0

0

0.01

0

0

0.01

29.99

GOV2

0

V

40

0

0

0.01

0

0

0.01

39.98

GOV2

0

V

50

0

0

0.01

0

0

0.01

49.98

GOV2

0

V

60

0

0

0.02

0

0

0.01

59.97

GOV2

0

V

70

0

0

0.02

0

0

0.01

69.97

GOV2

0

V

80

0

0

0.02

0

0

0.01

79.96

GOV2

0

V

90

0

0

0.02

0

0

0.02

89.96

GOV2

0

V

100

0

0

0.02

0

0

0.02

99.96

GOV2

1

A

0

0

0

0

0

0

0

0

GOV2

1

A

10

0

0

0

0

0

0

10

GOV2

1

A

20

0

0

0

0

0

0

20

GOV2

1

A

30

0

0

0

0

0

0.01

29.99

GOV2

1

A

40

0

0

0

0

0

0.01

39.99

GOV2

1

A

50

0

0

0

0

0

0.01

49.99

GOV2

1

A

60

0

0

0

0

0

0.01

59.99

GOV2

1

A

70

0

0

0

0

0

0.01

69.99

GOV2

1

A

80

0

0

0

0

0

0.01

79.98

GOV2

1

A

90

0

0

0.01

0

0

0.01

89.98

GOV2

1

A

100

0

0

0.02

0

0

0.02

99.96

GOV2

1

CA

0

0

0

0

0

0

0

0

GOV2

1

CA

10

0

0

0

0

0

0

10

GOV2

1

CA

20

0

0

0

0

0

0

19.99

GOV2

1

CA

30

0

0

0

0

0

0.01

29.99

GOV2

1

CA

40

0

0

0.01

0

0

0.01

39.99

GOV2

1

CA

50

0

0

0.01

0

0

0.01

49.98

GOV2

1

CA

60

0

0

0.01

0

0

0.01

59.98

GOV2

1

CA

70

0

0

0.02

0

0

0.01

69.97

GOV2

1

CA

80

0

0

0.02

0

0

0.01

79.97

GOV2

1

CA

90

0

0

0.02

0

0

0.01

89.96

GOV2

1

CA

100

0

0

0.02

0

0

0.02

99.96

GOV2

1

V

0

0

0

0

0

0

0

0

GOV2

1

V

10

0

0

0

0

0

0

10

GOV2

1

V

20

0

0

0

0

0

0

19.99

GOV2

1

V

30

0

0

0

0

0

0.01

29.99

GOV2

1

V

40

0

0

0.01

0

0

0.01

39.99

GOV2

1

V

50

0

0

0.01

0

0

0.01

49.98

GOV2

1

V

60

0

0

0.01

0

0

0.01

59.98

GOV2

1

V

70

0

0

0.02

0

0

0.01

69.97

GOV2

1

V

80

0

0

0.02

0

0

0.01

79.97

GOV2

1

V

90

0

0

0.02

0

0

0.01

89.96

GOV2

1

V

100

0

0

0.02

0

0

0.02

99.96

IND1

0

A

0

0

0

0

0

0

0

0

IND1

0

A

10

0

0

0

0

0

0

10

IND1

0

A

20

0

0

0

0

0

0

20

IND1

0

A

30

0

0

0

0

0

0

30

IND1

0

A

40

0

0

0

0

0

0

40

IND1

0

A

50

0

0

0

0

0

0

50

IND1

0

A

60

0

0

0

0

0

0

60

IND1

0

A

70

0

0

0

0

0

0

70

IND1

0

A

80

0

0

0

0

0

0

80

IND1

0

A

90

0

0

0

0

0

0.01

89.99

IND1

0

A

100

0.01

0

0

0

0

0.01

99.98

IND1

0

CA

0

0

0

0

0

0

0

0

IND1

0

CA

10

0

0

0

0

0

0

10

IND1

0

CA

20

0

0

0

0

0

0

20

IND1

0

CA

30

0

0

0

0

0

0

30

IND1

0

CA

40

0

0

0

0

0

0

40

IND1

0

CA

50

0

0

0

0

0

0

50

IND1

0

CA

60

0

0

0

0

0

0

59.99

IND1

0

CA

70

0

0

0

0

0

0.01

69.99

IND1

0

CA

80

0

0

0

0

0

0.01

79.99

IND1

0

CA

90

0.01

0

0

0

0

0.01

89.99

IND1

0

CA

100

0.01

0

0

0

0

0.01

99.98

IND1

0

V

0

0

0

0

0

0

0

0

IND1

0

V

10

0

0

0

0

0

0

10

IND1

0

V

20

0

0

0

0

0

0

20

IND1

0

V

30

0

0

0

0

0

0

30

IND1

0

V

40

0

0

0

0

0

0

40

IND1

0

V

50

0

0

0

0

0

0

50

IND1

0

V

60

0

0

0

0

0

0

59.99

IND1

0

V

70

0

0

0

0

0

0.01

69.99

IND1

0

V

80

0

0

0

0

0

0.01

79.99

IND1

0

V

90

0.01

0

0

0

0

0.01

89.99

IND1

0

V

100

0.01

0

0

0

0

0.01

99.98

IND1

1

A

0

0

0

0

0

0

0

0

IND1

1

A

10

0

0

0

0

0

0

10

IND1

1

A

20

0

0

0

0

0

0

20

IND1

1

A

30

0

0

0

0

0

0

30

IND1

1

A

40

0

0

0

0

0

0

40

IND1

1

A

50

0

0

0

0

0

0

50

IND1

1

A

60

0

0

0

0

0

0

60

IND1

1

A

70

0

0

0

0

0

0

70

IND1

1

A

80

0

0

0

0

0

0.01

79.99

IND1

1

A

90

0.03

0

0

0

0

0.01

89.96

IND1

1

A

100

0.08

0

0

0

0

0.01

99.91

IND1

1

CA

0

0

0

0

0

0

0

0

IND1

1

CA

10

0

0

0

0

0

0

10

IND1

1

CA

20

0

0

0

0

0

0

20

IND1

1

CA

30

0

0

0

0

0

0

30

IND1

1

CA

40

0

0

0

0

0

0

40

IND1

1

CA

50

0

0

0

0

0

0

50

IND1

1

CA

60

0

0

0

0

0

0

59.99

IND1

1

CA

70

0.01

0

0

0

0

0

69.99

IND1

1

CA

80

0.03

0

0

0

0

0

79.97

IND1

1

CA

90

0.03

0

0

0

0

0.01

89.96

IND1

1

CA

100

0.08

0

0

0

0

0.01

99.92

IND1

1

V

0

0

0

0

0

0

0

0

IND1

1

V

10

0

0

0

0

0

0

10

IND1

1

V

20

0

0

0

0

0

0

20

IND1

1

V

30

0

0

0

0

0

0

30

IND1

1

V

40

0

0

0

0

0

0

40

IND1

1

V

50

0

0

0

0

0

0

50

IND1

1

V

60

0

0

0

0

0

0

59.99

IND1

1

V

70

0.01

0

0

0

0

0

69.99

IND1

1

V

80

0.03

0

0

0

0

0

79.97

IND1

1

V

90

0.03

0

0

0

0

0.01

89.96

IND1

1

V

100

0.07

0

0

0

0

0.01

99.92

IND2

0

A

0

0

0

0

0

0

0

0

IND2

0

A

10

0

0

0

0

0

0

10

IND2

0

A

20

0

0

0

0

0

0

20

IND2

0

A

30

0

0

0

0

0

0

30

IND2

0

A

40

0

0

0

0

0

0

40

IND2

0

A

50

0

0

0

0

0

0

50

IND2

0

A

60

0

0

0

0

0

0.01

59.99

IND2

0

A

70

0

0

0

0

0

0.01

69.99

IND2

0

A

80

0

0

0

0

0

0.02

79.98

IND2

0

A

90

0.02

0

0

0

0

0.02

89.95

IND2

0

A

100

0.03

0

0

0.01

0

0.03

99.94

IND2

0

CA

0

0

0

0

0

0

0

0

IND2

0

CA

10

0

0

0

0

0

0

10

IND2

0

CA

20

0

0

0

0

0

0

20

IND2

0

CA

30

0

0

0

0

0

0

30

IND2

0

CA

40

0

0

0

0

0

0.01

39.99

IND2

0

CA

50

0

0

0

0

0

0.01

49.99

IND2

0

CA

60

0

0

0

0

0

0.01

59.98

IND2

0

CA

70

0.01

0

0

0

0

0.02

69.97

IND2

0

CA

80

0.01

0

0

0

0

0.02

79.96

IND2

0

CA

90

0.02

0

0

0

0

0.02

89.95

IND2

0

CA

100

0.03

0

0

0.01

0

0.03

99.93

IND2

0

V

0

0

0

0

0

0

0

0

IND2

0

V

10

0

0

0

0

0

0

10

IND2

0

V

20

0

0

0

0

0

0

20

IND2

0

V

30

0

0

0

0

0

0

30

IND2

0

V

40

0

0

0

0

0

0.01

39.99

IND2

0

V

50

0

0

0

0

0

0.01

49.99

IND2

0

V

60

0

0

0

0

0

0.01

59.98

IND2

0

V

70

0.01

0

0

0

0

0.02

69.97

IND2

0

V

80

0.01

0

0

0

0

0.02

79.96

IND2

0

V

90

0.02

0

0

0

0

0.02

89.95

IND2

0

V

100

0.03

0

0

0.01

0

0.03

99.93

IND2

1

A

0

0

0

0

0

0

0

0

IND2

1

A

10

0

0

0

0

0

0

10

IND2

1

A

20

0

0

0

0

0

0

20

IND2

1

A

30

0

0

0

0

0

0

30

IND2

1

A

40

0

0

0

0

0

0

40

IND2

1

A

50

0

0

0

0

0

0

50

IND2

1

A

60

0

0

0

0

0

0.01

59.99

IND2

1

A

70

0

0

0

0

0

0.01

69.99

IND2

1

A

80

0

0

0

0

0

0.02

79.98

IND2

1

A

90

0.07

0

0

0.01

0

0.02

89.9

IND2

1

A

100

0.23

0

0

0.01

0

0.02

99.74

IND2

1

CA

0

0

0

0

0

0

0

0

IND2

1

CA

10

0

0

0

0

0

0

10

IND2

1

CA

20

0

0

0

0

0

0

20

IND2

1

CA

30

0

0

0

0

0

0.01

29.99

IND2

1

CA

40

0

0

0

0

0

0.01

39.99

IND2

1

CA

50

0

0

0

0

0

0.01

49.99

IND2

1

CA

60

0

0

0

0

0

0.01

59.98

IND2

1

CA

70

0

0

0

0

0

0.01

69.98

IND2

1

CA

80

0

0

0

0

0

0.02

79.98

IND2

1

CA

90

0.09

0

0

0.01

0

0.02

89.88

IND2

1

CA

100

0.35

0

0

0.01

0

0.02

99.62

IND2

1

V

0

0

0

0

0

0

0

0

IND2

1

V

10

0

0

0

0

0

0

10

IND2

1

V

20

0

0

0

0

0

0

20

IND2

1

V

30

0

0

0

0

0

0.01

29.99

IND2

1

V

40

0

0

0

0

0

0.01

39.99

IND2

1

V

50

0

0

0

0

0

0.01

49.99

IND2

1

V

60

0

0

0

0

0

0.01

59.98

IND2

1

V

70

0

0

0

0

0

0.01

69.98

IND2

1

V

80

0

0

0

0

0

0.02

79.98

IND2

1

V

90

0.09

0

0

0.01

0

0.02

89.88

IND2

1

V

100

0.35

0

0

0.01

0

0.02

99.62

IND3

0

A

0

0

0

0

0

0

0

0

IND3

0

A

10

0

0

0

0

0

0

10

IND3

0

A

20

0

0

0

0

0

0

20

IND3

0

A

30

0

0

0

0

0

0

30

IND3

0

A

40

0

0

0

0

0

0

40

IND3

0

A

50

0

0

0

0

0

0

50

IND3

0

A

60

0

0

0

0

0

0

60

IND3

0

A

70

0

0

0

0

0

0

70

IND3

0

A

80

0

0

0

0

0

0.01

79.99

IND3

0

A

90

0

0

0

0

0

0.01

89.98

IND3

0

A

100

0

0

0

0

0

0.02

99.98

IND3

0

CA

0

0

0

0

0

0

0

0

IND3

0

CA

10

0

0

0

0

0

0

10

IND3

0

CA

20

0

0

0

0

0

0

20

IND3

0

CA

30

0

0

0

0

0

0

30

IND3

0

CA

40

0

0

0

0

0

0

40

IND3

0

CA

50

0

0

0

0

0

0.01

49.99

IND3

0

CA

60

0

0

0

0

0

0.01

59.99

IND3

0

CA

70

0

0

0

0

0

0.01

69.99

IND3

0

CA

80

0

0

0

0

0

0.01

79.99

IND3

0

CA

90

0

0

0

0

0

0.01

89.98

IND3

0

CA

100

0

0

0

0

0

0.01

99.98

IND3

0

V

0

0

0

0

0

0

0

0

IND3

0

V

10

0

0

0

0

0

0

10

IND3

0

V

20

0

0

0

0

0

0

20

IND3

0

V

30

0

0

0

0

0

0

30

IND3

0

V

40

0

0

0

0

0

0

40

IND3

0

V

50

0

0

0

0

0

0.01

49.99

IND3

0

V

60

0

0

0

0

0

0.01

59.99

IND3

0

V

70

0

0

0

0

0

0.01

69.99

IND3

0

V

80

0

0

0

0

0

0.01

79.99

IND3

0

V

90

0

0

0

0

0

0.01

89.98

IND3

0

V

100

0

0

0

0

0

0.01

99.98

IND3

1

A

0

0

0

0

0

0

0

0

IND3

1

A

10

0

0

0

0

0

0

10

IND3

1

A

20

0

0

0

0

0

0

20

IND3

1

A

30

0

0

0

0

0

0

30

IND3

1

A

40

0

0

0

0

0

0

40

IND3

1

A

50

0

0

0

0

0

0

50

IND3

1

A

60

0

0

0

0

0

0

60

IND3

1

A

70

0

0

0

0

0

0.01

69.99

IND3

1

A

80

0

0

0

0

0

0.01

79.99

IND3

1

A

90

0.02

0

0

0

0

0.01

89.97

IND3

1

A

100

0.04

0

0

0

0

0.01

99.95

IND3

1

CA

0

0

0

0

0

0

0

0

IND3

1

CA

10

0

0

0

0

0

0

10

IND3

1

CA

20

0

0

0

0

0

0

20

IND3

1

CA

30

0

0

0

0

0

0

30

IND3

1

CA

40

0

0

0

0

0

0

40

IND3

1

CA

50

0

0

0

0

0

0.01

49.99

IND3

1

CA

60

0

0

0

0

0

0.01

59.99

IND3

1

CA

70

0.01

0

0

0

0

0.01

69.98

IND3

1

CA

80

0.02

0

0

0

0

0.01

79.97

IND3

1

CA

90

0.03

0

0

0

0

0.01

89.96

IND3

1

CA

100

0.04

0

0

0

0

0.01

99.94

IND3

1

V

0

0

0

0

0

0

0

0

IND3

1

V

10

0

0

0

0

0

0

10

IND3

1

V

20

0

0

0

0

0

0

20

IND3

1

V

30

0

0

0

0

0

0

30

IND3

1

V

40

0

0

0

0

0

0

40

IND3

1

V

50

0

0

0

0

0

0.01

49.99

IND3

1

V

60

0

0

0

0

0

0.01

59.99

IND3

1

V

70

0.01

0

0

0

0

0.01

69.98

IND3

1

V

80

0.02

0

0

0

0

0.01

79.97

IND3

1

V

90

0.03

0

0

0

0

0.01

89.96

IND3

1

V

100

0.04

0

0

0

0

0.01

99.94

IND4

0

A

0

0

0

0

0

0

0

0

IND4

0

A

10

0

0

0

0

0

0

10

IND4

0

A

20

0

0

0

0

0

0

20

IND4

0

A

30

0

0

0

0

0

0

30

IND4

0

A

40

0

0

0

0

0

0

40

IND4

0

A

50

0

0

0

0

0

0

50

IND4

0

A

60

0

0

0

0

0

0

60

IND4

0

A

70

0

0

0

0

0

0

70

IND4

0

A

80

0

0

0.32

0

0

0.01

79.68

IND4

0

A

90

0

0

0.69

0

0

0.01

89.31

IND4

0

A

100

0

0

1.05

0

0

0.01

98.95

IND4

0

CA

0

0

0

0

0

0

0

0

IND4

0

CA

10

0

0

0

0

0

0

10

IND4

0

CA

20

0

0

0.02

0

0

0

19.98

IND4

0

CA

30

0

0

0.07

0

0

0

29.93

IND4

0

CA

40

0

0

0.15

0

0

0

39.85

IND4

0

CA

50

0

0

0.22

0

0

0

49.78

IND4

0

CA

60

0

0

0.3

0

0

0

59.7

IND4

0

CA

70

0

0

0.35

0

0

0

69.65

IND4

0

CA

80

0

0

0.44

0

0

0

79.56

IND4

0

CA

90

0

0

0.65

0

0

0.01

89.34

IND4

0

CA

100

0

0

1.01

0

0

0.01

98.98

IND4

0

V

0

0

0

0

0

0

0

0

IND4

0

V

10

0

0

0

0

0

0

10

IND4

0

V

20

0

0

0.02

0

0

0

19.98

IND4

0

V

30

0

0

0.05

0

0

0

29.94

IND4

0

V

40

0

0

0.13

0

0

0

39.87

IND4

0

V

50

0

0

0.22

0

0

0

49.78

IND4

0

V

60

0

0

0.3

0

0

0

59.7

IND4

0

V

70

0

0

0.33

0

0

0

69.67

IND4

0

V

80

0

0

0.42

0

0

0

79.58

IND4

0

V

90

0

0

0.62

0

0

0.01

89.38

IND4

0

V

100

0

0

1

0

0

0.01

98.99

IND4

1

A

0

0

0

0

0

0

0

0

IND4

1

A

10

0

0

0

0

0

0

10

IND4

1

A

20

0

0

0

0

0

0

20

IND4

1

A

30

0

0

0

0

0

0

30

IND4

1

A

40

0

0

0

0

0

0

40

IND4

1

A

50

0

0

0

0

0

0

50

IND4

1

A

60

0

0

0

0

0

0

60

IND4

1

A

70

0

0

0.04

0

0

0

69.96

IND4

1

A

80

0

0

0.51

0

0

0

79.49

IND4

1

A

90

0.01

0

0.91

0

0

0

89.08

IND4

1

A

100

0.02

0

1.23

0

0

0

98.75

IND4

1

CA

0

0

0

0

0

0

0

0

IND4

1

CA

10

0

0

0

0

0

0

10

IND4

1

CA

20

0

0

0.04

0

0

0

19.96

IND4

1

CA

30

0

0

0.11

0

0

0

29.88

IND4

1

CA

40

0

0

0.18

0

0

0

39.81

IND4

1

CA

50

0

0

0.28

0

0

0

49.71

IND4

1

CA

60

0

0

0.39

0

0

0

59.61

IND4

1

CA

70

0

0

0.54

0

0

0

69.46

IND4

1

CA

80

0

0

0.64

0

0

0

79.35

IND4

1

CA

90

0.01

0

0.93

0

0

0

89.06

IND4

1

CA

100

0.01

0

1.25

0

0

0

98.73

IND4

1

V

0

0

0

0

0

0

0

0

IND4

1

V

10

0

0

0

0

0

0

10

IND4

1

V

20

0

0

0.04

0

0

0

19.96

IND4

1

V

30

0

0

0.12

0

0

0

29.88

IND4

1

V

40

0

0

0.18

0

0

0

39.81

IND4

1

V

50

0

0

0.29

0

0

0

49.71

IND4

1

V

60

0

0

0.39

0

0

0

59.6

IND4

1

V

70

0

0

0.54

0

0

0

69.45

IND4

1

V

80

0

0

0.65

0

0

0

79.34

IND4

1

V

90

0.01

0

0.93

0

0

0

89.06

IND4

1

V

100

0.01

0

1.26

0

0

0

98.72

IND5

0

A

0

0

0

0

0

0

0

0

IND5

0

A

10

0

0

0

0

0

0

10

IND5

0

A

20

0

0

0

0

0

0

20

IND5

0

A

30

0

0

0

0

0

0

30

IND5

0

A

40

0

0

0

0

0

0

40

IND5

0

A

50

0

0

0

0

0

0

50

IND5

0

A

60

0

0

0

0

0

0

60

IND5

0

A

70

0

0

0

0

0

0

70

IND5

0

A

80

0

0

0

0

0

0

80

IND5

0

A

90

0

0

0

0

0

0

90

IND5

0

A

100

0

0

0

0

0

0

100

IND5

0

CA

0

0

0

0

0

0

0

0

IND5

0

CA

10

0

0

0

0

0

0

10

IND5

0

CA

20

0

0

0

0

0

0

20

IND5

0

CA

30

0

0

0

0

0

0

30

IND5

0

CA

40

0

0

0

0

0

0

40

IND5

0

CA

50

0

0

0

0

0

0

50

IND5

0

CA

60

0

0

0

0

0

0

60

IND5

0

CA

70

0

0

0

0

0

0

70

IND5

0

CA

80

0

0

0

0

0

0

80

IND5

0

CA

90

0

0

0

0

0

0

90

IND5

0

CA

100

0

0

0

0

0

0

100

IND5

0

V

0

0

0

0

0

0

0

0

IND5

0

V

10

0

0

0

0

0

0

10

IND5

0

V

20

0

0

0

0

0

0

20

IND5

0

V

30

0

0

0

0

0

0

30

IND5

0

V

40

0

0

0

0

0

0

40

IND5

0

V

50

0

0

0

0

0

0

50

IND5

0

V

60

0

0

0

0

0

0

60

IND5

0

V

70

0

0

0

0

0

0

70

IND5

0

V

80

0

0

0

0

0

0

80

IND5

0

V

90

0

0

0

0

0

0

90

IND5

0

V

100

0

0

0

0

0

0

100

IND5

1

A

0

0

0

0

0

0

0

0

IND5

1

A

10

0

0

0

0

0

0

10

IND5

1

A

20

0

0

0

0

0

0

20

IND5

1

A

30

0

0

0

0

0

0

30

IND5

1

A

40

0

0

0

0

0

0

40

IND5

1

A

50

0

0

0

0

0

0

50

IND5

1

A

60

0

0

0

0

0

0

60

IND5

1

A

70

0

0

0

0

0

0

70

IND5

1

A

80

0

0

0

0

0

0

80

IND5

1

A

90

0

0

0

0

0

0

90

IND5

1

A

100

0.02

0

0

0

0

0

99.98

IND5

1

CA

0

0

0

0

0

0

0

0

IND5

1

CA

10

0

0

0

0

0

0

10

IND5

1

CA

20

0

0

0

0

0

0

20

IND5

1

CA

30

0

0

0

0

0

0

30

IND5

1

CA

40

0

0

0

0

0

0

40

IND5

1

CA

50

0

0

0

0

0

0

50

IND5

1

CA

60

0

0

0

0

0

0

60

IND5

1

CA

70

0

0

0

0

0

0

70

IND5

1

CA

80

0.01

0

0

0

0

0

79.99

IND5

1

CA

90

0.01

0

0

0

0

0

89.99

IND5

1

CA

100

0.01

0

0

0

0

0

99.99

IND5

1

V

0

0

0

0

0

0

0

0

IND5

1

V

10

0

0

0

0

0

0

10

IND5

1

V

20

0

0

0

0

0

0

20

IND5

1

V

30

0

0

0

0

0

0

30

IND5

1

V

40

0

0

0

0

0

0

40

IND5

1

V

50

0

0

0

0

0

0

50

IND5

1

V

60

0

0

0

0

0

0

60

IND5

1

V

70

0

0

0

0

0

0

70

IND5

1

V

80

0.01

0

0

0

0

0

79.99

IND5

1

V

90

0.01

0

0

0

0

0

89.99

IND5

1

V

100

0.01

0

0

0

0

0

99.99

IND6

0

A

0

0

0

0

0

0

0

0

IND6

0

A

10

0

0

0

0

0

0

10

IND6

0

A

20

0

0

0

0

0

0.01

19.99

IND6

0

A

30

0

0

0

0

0

0.01

29.99

IND6

0

A

40

0

0

0

0

0

0.01

39.99

IND6

0

A

50

0

0

0

0

0

0.02

49.98

IND6

0

A

60

0

0

0

0

0

0.02

59.98

IND6

0

A

70

0

0

0

0

0

0.04

69.96

IND6

0

A

80

0.02

0

0

0.01

0

0.06

79.91

IND6

0

A

90

0.2

0

0

0.01

0

0.06

89.73

IND6

0

A

100

0.32

0

0

0.01

0

0.05

99.6

IND6

0

CA

0

0

0

0

0

0

0

0

IND6

0

CA

10

0

0

0

0

0

0

10

IND6

0

CA

20

0

0

0

0

0

0.01

19.99

IND6

0

CA

30

0

0

0

0

0

0.01

29.99

IND6

0

CA

40

0

0

0

0

0

0.01

39.98

IND6

0

CA

50

0

0

0

0

0

0.02

49.98

IND6

0

CA

60

0.01

0

0

0

0

0.02

59.96

IND6

0

CA

70

0.05

0

0

0.01

0

0.03

69.92

IND6

0

CA

80

0.09

0

0

0.01

0

0.04

79.86

IND6

0

CA

90

0.22

0

0

0.01

0

0.06

89.71

IND6

0

CA

100

0.27

0

0

0.02

0

0.05

99.65

IND6

0

V

0

0

0

0

0

0

0

0

IND6

0

V

10

0

0

0

0

0

0

10

IND6

0

V

20

0

0

0

0

0

0.01

19.99

IND6

0

V

30

0

0

0

0

0

0.01

29.99

IND6

0

V

40

0

0

0

0

0

0.01

39.98

IND6

0

V

50

0

0

0

0

0

0.02

49.98

IND6

0

V

60

0.01

0

0

0

0

0.02

59.96

IND6

0

V

70

0.05

0

0

0.01

0

0.03

69.92

IND6

0

V

80

0.09

0

0

0.01

0

0.04

79.86

IND6

0

V

90

0.22

0

0

0.01

0

0.06

89.71

IND6

0

V

100

0.27

0

0

0.02

0

0.05

99.65

IND6

1

A

0

0

0

0

0

0

0

0

IND6

1

A

10

0

0

0

0

0

0

10

IND6

1

A

20

0

0

0

0

0

0

20

IND6

1

A

30

0

0

0

0

0

0

30

IND6

1

A

40

0

0

0

0

0

0

40

IND6

1

A

50

0

0

0

0

0

0.01

49.99

IND6

1

A

60

0

0

0

0

0

0.03

59.97

IND6

1

A

70

0

0

0

0

0

0.05

69.95

IND6

1

A

80

0.31

0

0

0.01

0

0.05

79.62

IND6

1

A

90

0.66

0

0

0.02

0.01

0.04

89.27

IND6

1

A

100

1.71

0

0

0.02

0.01

0.04

98.22

IND6

1

CA

0

0

0

0

0

0

0

0

IND6

1

CA

10

0

0

0

0

0

0

10

IND6

1

CA

20

0

0

0

0

0

0.01

19.99

IND6

1

CA

30

0

0

0

0

0

0.01

29.99

IND6

1

CA

40

0

0

0

0

0

0.01

39.98

IND6

1

CA

50

0

0

0

0

0

0.02

49.98

IND6

1

CA

60

0.04

0

0

0.01

0

0.02

59.93

IND6

1

CA

70

0.18

0

0

0.01

0

0.03

69.78

IND6

1

CA

80

0.45

0

0

0.01

0

0.05

79.49

IND6

1

CA

90

1.1

0

0

0.02

0

0.05

88.83

IND6

1

CA

100

1.49

0

0

0.02

0.01

0.04

98.44

IND6

1

V

0

0

0

0

0

0

0

0

IND6

1

V

10

0

0

0

0

0

0

10

IND6

1

V

20

0

0

0

0

0

0.01

19.99

IND6

1

V

30

0

0

0

0

0

0.01

29.99

IND6

1

V

40

0

0

0

0

0

0.01

39.98

IND6

1

V

50

0

0

0

0

0

0.02

49.98

IND6

1

V

60

0.04

0

0

0.01

0

0.02

59.93

IND6

1

V

70

0.18

0

0

0.01

0

0.03

69.78

IND6

1

V

80

0.45

0

0

0.01

0

0.05

79.49

IND6

1

V

90

1.1

0

0

0.02

0

0.05

88.83

IND6

1

V

100

1.49

0

0

0.02

0.01

0.04

98.44

REL1

0

A

0

0

0

0

0

0

0

0

REL1

0

A

10

0

0

0

0

0

0

10

REL1

0

A

20

0

0

0

0

0

0.01

19.99

REL1

0

A

30

0

0

0

0

0

0.01

29.99

REL1

0

A

40

0

0

0

0

0

0.01

39.99

REL1

0

A

50

0

0

0

0

0

0.02

49.98

REL1

0

A

60

0

0

0

0

0

0.02

59.98

REL1

0

A

70

0

0

0

0

0.02

0.03

69.95

REL1

0

A

80

0

0

0.02

0

0.09

0.03

79.86

REL1

0

A

90

0.01

0

0.03

0

0.17

0.03

89.76

REL1

0

A

100

0.01

0

0.04

0

0.25

0.03

99.67

REL1

0

CA

0

0

0

0

0

0

0

0

REL1

0

CA

10

0

0

0

0

0

0

10

REL1

0

CA

20

0

0

0

0

0

0.01

19.99

REL1

0

CA

30

0

0

0

0

0.03

0.01

29.96

REL1

0

CA

40

0

0

0.01

0

0.06

0.01

39.92

REL1

0

CA

50

0

0

0.01

0

0.08

0.02

49.89

REL1

0

CA

60

0

0

0.02

0

0.1

0.02

59.86

REL1

0

CA

70

0

0

0.02

0

0.12

0.02

69.83

REL1

0

CA

80

0.01

0

0.02

0

0.14

0.03

79.8

REL1

0

CA

90

0.01

0

0.03

0

0.17

0.03

89.77

REL1

0

CA

100

0.02

0

0.04

0

0.24

0.03

99.67

REL1

0

V

0

0

0

0

0

0

0

0

REL1

0

V

10

0

0

0

0

0

0

10

REL1

0

V

20

0

0

0

0

0

0.01

19.99

REL1

0

V

30

0

0

0

0

0.03

0.01

29.96

REL1

0

V

40

0

0

0.01

0

0.06

0.01

39.92

REL1

0

V

50

0

0

0.01

0

0.08

0.02

49.88

REL1

0

V

60

0

0

0.02

0

0.1

0.02

59.86

REL1

0

V

70

0

0

0.02

0

0.12

0.03

69.82

REL1

0

V

80

0.01

0

0.02

0

0.14

0.03

79.8

REL1

0

V

90

0.01

0

0.03

0

0.17

0.03

89.77

REL1

0

V

100

0.01

0

0.04

0

0.24

0.03

99.67

REL1

1

A

0

0

0

0

0

0

0

0

REL1

1

A

10

0

0

0

0

0

0

10

REL1

1

A

20

0

0

0

0

0

0

20

REL1

1

A

30

0

0

0

0

0

0.01

29.99

REL1

1

A

40

0

0

0

0

0

0.01

39.99

REL1

1

A

50

0

0

0

0

0

0.01

49.99

REL1

1

A

60

0

0

0

0

0

0.02

59.98

REL1

1

A

70

0

0

0.01

0

0.07

0.02

69.9

REL1

1

A

80

0.02

0

0.02

0

0.19

0.02

79.75

REL1

1

A

90

0.04

0

0.04

0

0.32

0.02

89.58

REL1

1

A

100

0.08

0

0.05

0

0.4

0.02

99.45

REL1

1

CA

0

0

0

0

0

0

0

0

REL1

1

CA

10

0

0

0

0

0

0

10

REL1

1

CA

20

0

0

0

0

0.01

0.01

19.99

REL1

1

CA

30

0

0

0

0

0.03

0.01

29.95

REL1

1

CA

40

0

0

0.01

0

0.08

0.01

39.9

REL1

1

CA

50

0

0

0.01

0

0.11

0.01

49.86

REL1

1

CA

60

0.02

0

0.01

0

0.13

0.02

59.82

REL1

1

CA

70

0.04

0

0.02

0

0.16

0.02

69.75

REL1

1

CA

80

0.06

0

0.02

0

0.18

0.02

79.72

REL1

1

CA

90

0.09

0

0.03

0

0.27

0.02

89.58

REL1

1

CA

100

0.13

0

0.04

0

0.36

0.02

99.44

REL1

1

V

0

0

0

0

0

0

0

0

REL1

1

V

10

0

0

0

0

0

0

10

REL1

1

V

20

0

0

0

0

0.01

0.01

19.99

REL1

1

V

30

0

0

0

0

0.03

0.01

29.95

REL1

1

V

40

0

0

0.01

0

0.08

0.01

39.9

REL1

1

V

50

0

0

0.01

0

0.11

0.01

49.86

REL1

1

V

60

0.02

0

0.01

0

0.13

0.02

59.82

REL1

1

V

70

0.04

0

0.02

0

0.16

0.02

69.75

REL1

1

V

80

0.06

0

0.02

0

0.18

0.02

79.72

REL1

1

V

90

0.09

0

0.03

0

0.27

0.02

89.58

REL1

1

V

100

0.13

0

0.04

0

0.36

0.02

99.44

RES1

0

A

0

0

0

0

0

0

0

0

RES1

0

A

10

0

0

0

0

0

0.03

9.97

RES1

0

A

20

0

0

0

0

0

0.1

19.9

RES1

0

A

30

0

0

0

0

0

0.19

29.81

RES1

0

A

40

0

0

0

0

0

0.28

39.72

RES1

0

A

50

0

0

0

0

0

0.35

49.65

RES1

0

A

60

0

0

0

0

0

0.39

59.61

RES1

0

A

70

0

0

0

0

0

0.46

69.54

RES1

0

A

80

0

0

0

0

0

0.55

79.45

RES1

0

A

90

0

0

0.02

0

0

0.65

89.33

RES1

0

A

100

0

0

0.04

0

0

0.65

99.3

RES1

0

CA

0

0

0

0

0

0

0

0

RES1

0

CA

10

0

0

0

0

0

0.02

9.98

RES1

0

CA

20

0

0

0

0

0

0.15

19.85

RES1

0

CA

30

0

0

0.01

0

0

0.23

29.76

RES1

0

CA

40

0

0

0.01

0

0

0.28

39.71

RES1

0

CA

50

0

0

0.01

0

0

0.37

49.62

RES1

0

CA

60

0

0

0.01

0

0

0.43

59.56

RES1

0

CA

70

0

0

0.02

0

0

0.51

69.48

RES1

0

CA

80

0

0

0.02

0

0

0.56

79.42

RES1

0

CA

90

0

0

0.02

0

0

0.61

89.37

RES1

0

CA

100

0

0

0.03

0

0

0.76

99.21

RES1

0

V

0

0

0

0

0

0

0

0

RES1

0

V

10

0

0

0

0

0

0.02

9.98

RES1

0

V

20

0

0

0

0

0

0.14

19.86

RES1

0

V

30

0

0

0.01

0

0

0.22

29.77

RES1

0

V

40

0

0

0.01

0

0

0.28

39.71

RES1

0

V

50

0

0

0.01

0

0

0.37

49.62

RES1

0

V

60

0

0

0.01

0

0

0.42

59.56

RES1

0

V

70

0

0

0.02

0

0

0.51

69.48

RES1

0

V

80

0

0

0.02

0

0

0.56

79.42

RES1

0

V

90

0

0

0.02

0

0

0.61

89.37

RES1

0

V

100

0

0

0.03

0

0

0.76

99.21

RES1

1

A

0

0

0

0

0

0

0

0

RES1

1

A

10

0

0

0

0

0

0.03

9.97

RES1

1

A

20

0

0

0

0

0

0.1

19.9

RES1

1

A

30

0

0

0

0

0

0.18

29.82

RES1

1

A

40

0

0

0

0

0

0.26

39.74

RES1

1

A

50

0

0

0

0

0

0.31

49.69

RES1

1

A

60

0

0

0

0

0

0.36

59.64

RES1

1

A

70

0

0

0

0

0

0.41

69.59

RES1

1

A

80

0

0

0

0

0

0.54

79.46

RES1

1

A

90

0

0

0.01

0

0

0.64

89.35

RES1

1

A

100

0.01

0

0.02

0

0

0.65

99.33

RES1

1

CA

0

0

0

0

0

0

0

0

RES1

1

CA

10

0

0

0

0

0

0.04

9.96

RES1

1

CA

20

0

0

0

0

0

0.13

19.87

RES1

1

CA

30

0

0

0

0

0

0.23

29.77

RES1

1

CA

40

0

0

0

0

0

0.28

39.72

RES1

1

CA

50

0

0

0

0

0

0.39

49.6

RES1

1

CA

60

0

0

0

0

0

0.46

59.54

RES1

1

CA

70

0

0

0

0

0

0.55

69.45

RES1

1

CA

80

0

0

0

0

0

0.62

79.38

RES1

1

CA

90

0

0

0.01

0

0

0.64

89.34

RES1

1

CA

100

0.01

0

0.01

0

0

0.7

99.28

RES1

1

V

0

0

0

0

0

0

0

0

RES1

1

V

10

0

0

0

0

0

0.04

9.96

RES1

1

V

20

0

0

0

0

0

0.13

19.87

RES1

1

V

30

0

0

0

0

0

0.23

29.77

RES1

1

V

40

0

0

0

0

0

0.28

39.72

RES1

1

V

50

0

0

0

0

0

0.39

49.61

RES1

1

V

60

0

0

0

0

0

0.46

59.54

RES1

1

V

70

0

0

0

0

0

0.54

69.46

RES1

1

V

80

0

0

0

0

0

0.62

79.38

RES1

1

V

90

0

0

0.01

0

0

0.64

89.34

RES1

1

V

100

0.01

0

0.01

0

0

0.7

99.28

RES2

0

A

0

0

0

0

0

0

0

0

RES2

0

A

10

0

0

0

0

0

0.02

9.98

RES2

0

A

20

0

0

0

0

0

0.02

19.98

RES2

0

A

30

0

0

0

0

0

0.04

29.96

RES2

0

A

40

0

0

0

0

0

0.09

39.91

RES2

0

A

50

0

0

0

0

0

0.13

49.87

RES2

0

A

60

0

0

0

0

0

0.16

59.84

RES2

0

A

70

0

0

0

0

0

0.19

69.81

RES2

0

A

80

0

0

0

0

0

0.28

79.72

RES2

0

A

90

0

0

0

0

0

0.39

89.61

RES2

0

A

100

0

0

0

0

0

0.52

99.48

RES2

0

CA

0

0

0

0

0

0

0

0

RES2

0

CA

10

0

0

0

0

0

0.04

9.96

RES2

0

CA

20

0

0

0

0

0

0.06

19.94

RES2

0

CA

30

0

0

0

0

0

0.12

29.88

RES2

0

CA

40

0

0

0

0

0

0.17

39.83

RES2

0

CA

50

0

0

0

0

0

0.2

49.8

RES2

0

CA

60

0

0

0

0

0

0.24

59.76

RES2

0

CA

70

0

0

0

0

0

0.26

69.74

RES2

0

CA

80

0

0

0

0

0

0.3

79.69

RES2

0

CA

90

0

0

0

0

0

0.36

89.64

RES2

0

CA

100

0

0

0

0

0

0.52

99.48

RES2

0

V

0

0

0

0

0

0

0

0

RES2

0

V

10

0

0

0

0

0

0.04

9.96

RES2

0

V

20

0

0

0

0

0

0.06

19.94

RES2

0

V

30

0

0

0

0

0

0.12

29.88

RES2

0

V

40

0

0

0

0

0

0.17

39.83

RES2

0

V

50

0

0

0

0

0

0.2

49.8

RES2

0

V

60

0

0

0

0

0

0.24

59.76

RES2

0

V

70

0

0

0

0

0

0.26

69.74

RES2

0

V

80

0

0

0

0

0

0.3

79.69

RES2

0

V

90

0

0

0

0

0

0.36

89.64

RES2

0

V

100

0

0

0

0

0

0.52

99.48

RES2

1

A

0

0

0

0

0

0

0

0

RES2

1

A

10

0

0

0

0

0

0.05

9.95

RES2

1

A

20

0

0

0

0

0

0.07

19.93

RES2

1

A

30

0

0

0

0

0

0.12

29.88

RES2

1

A

40

0

0

0

0

0

0.15

39.85

RES2

1

A

50

0

0

0

0

0

0.2

49.8

RES2

1

A

60

0

0

0

0

0

0.24

59.76

RES2

1

A

70

0

0

0

0

0

0.27

69.73

RES2

1

A

80

0

0

0

0

0

0.31

79.69

RES2

1

A

90

0

0

0

0

0

0.48

89.51

RES2

1

A

100

0

0

0

0

0

0.61

99.39

RES2

1

CA

0

0

0

0

0

0

0

0

RES2

1

CA

10

0

0

0

0

0

0.05

9.95

RES2

1

CA

20

0

0

0

0

0

0.11

19.89

RES2

1

CA

30

0

0

0

0

0

0.19

29.81

RES2

1

CA

40

0

0

0

0

0

0.22

39.78

RES2

1

CA

50

0

0

0

0

0

0.3

49.7

RES2

1

CA

60

0

0

0

0

0

0.36

59.64

RES2

1

CA

70

0

0

0

0

0

0.38

69.62

RES2

1

CA

80

0

0

0

0

0

0.42

79.58

RES2

1

CA

90

0

0

0

0

0

0.47

89.53

RES2

1

CA

100

0

0

0

0

0

0.61

99.39

RES2

1

V

0

0

0

0

0

0

0

0

RES2

1

V

10

0

0

0

0

0

0.05

9.95

RES2

1

V

20

0

0

0

0

0

0.11

19.89

RES2

1

V

30

0

0

0

0

0

0.19

29.81

RES2

1

V

40

0

0

0

0

0

0.22

39.78

RES2

1

V

50

0

0

0

0

0

0.3

49.7

RES2

1

V

60

0

0

0

0

0

0.36

59.64

RES2

1

V

70

0

0

0

0

0

0.38

69.62

RES2

1

V

80

0

0

0

0

0

0.42

79.58

RES2

1

V

90

0

0

0

0

0

0.47

89.53

RES2

1

V

100

0

0

0

0

0

0.61

99.39

RES3A

0

A

0

0

0

0

0

0

0

0

RES3A

0

A

10

0

0

0

0

0

0.03

9.97

RES3A

0

A

20

0

0

0

0

0

0.1

19.9

RES3A

0

A

30

0

0

0

0

0

0.19

29.81

RES3A

0

A

40

0

0

0

0

0

0.28

39.72

RES3A

0

A

50

0

0

0

0

0

0.35

49.65

RES3A

0

A

60

0

0

0

0

0

0.39

59.61

RES3A

0

A

70

0

0

0

0

0

0.45

69.55

RES3A

0

A

80

0

0

0

0

0

0.54

79.45

RES3A

0

A

90

0

0

0.02

0

0

0.65

89.33

RES3A

0

A

100

0

0

0.04

0

0

0.65

99.3

RES3A

0

CA

0

0

0

0

0

0

0

0

RES3A

0

CA

10

0

0

0

0

0

0.02

9.98

RES3A

0

CA

20

0

0

0

0

0

0.14

19.86

RES3A

0

CA

30

0

0

0.01

0

0

0.22

29.77

RES3A

0

CA

40

0

0

0.01

0

0

0.28

39.71

RES3A

0

CA

50

0

0

0.01

0

0

0.37

49.62

RES3A

0

CA

60

0

0

0.01

0

0

0.42

59.56

RES3A

0

CA

70

0

0

0.02

0

0

0.51

69.48

RES3A

0

CA

80

0

0

0.02

0

0

0.56

79.42

RES3A

0

CA

90

0

0

0.02

0

0

0.61

89.37

RES3A

0

CA

100

0

0

0.03

0

0

0.76

99.21

RES3A

0

V

0

0

0

0

0

0

0

0

RES3A

0

V

10

0

0

0

0

0

0.02

9.98

RES3A

0

V

20

0

0

0

0

0

0.14

19.86

RES3A

0

V

30

0

0

0.01

0

0

0.22

29.77

RES3A

0

V

40

0

0

0.01

0

0

0.28

39.71

RES3A

0

V

50

0

0

0.01

0

0

0.37

49.62

RES3A

0

V

60

0

0

0.01

0

0

0.42

59.56

RES3A

0

V

70

0

0

0.02

0

0

0.51

69.48

RES3A

0

V

80

0

0

0.02

0

0

0.56

79.42

RES3A

0

V

90

0

0

0.02

0

0

0.61

89.37

RES3A

0

V

100

0

0

0.03

0

0

0.76

99.21

RES3A

1

A

0

0

0

0

0

0

0

0

RES3A

1

A

10

0

0

0

0

0

0.03

9.97

RES3A

1

A

20

0

0

0

0

0

0.1

19.9

RES3A

1

A

30

0

0

0

0

0

0.18

29.82

RES3A

1

A

40

0

0

0

0

0

0.26

39.74

RES3A

1

A

50

0

0

0

0

0

0.31

49.69

RES3A

1

A

60

0

0

0

0

0

0.36

59.64

RES3A

1

A

70

0

0

0

0

0

0.42

69.58

RES3A

1

A

80

0

0

0

0

0

0.54

79.46

RES3A

1

A

90

0

0

0.01

0

0

0.65

89.34

RES3A

1

A

100

0.01

0

0.01

0

0

0.65

99.33

RES3A

1

CA

0

0

0

0

0

0

0

0

RES3A

1

CA

10

0

0

0

0

0

0.04

9.96

RES3A

1

CA

20

0

0

0

0

0

0.13

19.87

RES3A

1

CA

30

0

0

0

0

0

0.23

29.77

RES3A

1

CA

40

0

0

0

0

0

0.28

39.72

RES3A

1

CA

50

0

0

0

0

0

0.39

49.61

RES3A

1

CA

60

0

0

0

0

0

0.46

59.54

RES3A

1

CA

70

0

0

0

0

0

0.54

69.46

RES3A

1

CA

80

0

0

0

0

0

0.62

79.38

RES3A

1

CA

90

0

0

0.01

0

0

0.64

89.34

RES3A

1

CA

100

0.01

0

0.01

0

0

0.7

99.28

RES3A

1

V

0

0

0

0

0

0

0

0

RES3A

1

V

10

0

0

0

0

0

0.04

9.96

RES3A

1

V

20

0

0

0

0

0

0.13

19.87

RES3A

1

V

30

0

0

0

0

0

0.23

29.77

RES3A

1

V

40

0

0

0

0

0

0.28

39.72

RES3A

1

V

50

0

0

0

0

0

0.39

49.61

RES3A

1

V

60

0

0

0

0

0

0.46

59.54

RES3A

1

V

70

0

0

0

0

0

0.54

69.46

RES3A

1

V

80

0

0

0

0

0

0.62

79.38

RES3A

1

V

90

0

0

0.01

0

0

0.64

89.34

RES3A

1

V

100

0.01

0

0.01

0

0

0.7

99.28

RES3B

0

A

0

0

0

0

0

0

0

0

RES3B

0

A

10

0

0

0

0

0

0.03

9.97

RES3B

0

A

20

0

0

0

0

0

0.1

19.9

RES3B

0

A

30

0

0

0

0

0

0.19

29.81

RES3B

0

A

40

0

0

0

0

0

0.28

39.72

RES3B

0

A

50

0

0

0

0

0

0.34

49.66

RES3B

0

A

60

0

0

0

0

0

0.39

59.61

RES3B

0

A

70

0

0

0

0

0

0.45

69.55

RES3B

0

A

80

0

0

0

0

0

0.54

79.45

RES3B

0

A

90

0

0

0.02

0

0

0.65

89.33

RES3B

0

A

100

0

0

0.04

0

0

0.65

99.3

RES3B

0

CA

0

0

0

0

0

0

0

0

RES3B

0

CA

10

0

0

0

0

0

0.02

9.98

RES3B

0

CA

20

0

0

0

0

0

0.14

19.86

RES3B

0

CA

30

0

0

0.01

0

0

0.22

29.77

RES3B

0

CA

40

0

0

0.01

0

0

0.28

39.71

RES3B

0

CA

50

0

0

0.01

0

0

0.37

49.62

RES3B

0

CA

60

0

0

0.01

0

0

0.42

59.56

RES3B

0

CA

70

0

0

0.02

0

0

0.51

69.48

RES3B

0

CA

80

0

0

0.02

0

0

0.56

79.42

RES3B

0

CA

90

0

0

0.02

0

0

0.61

89.37

RES3B

0

CA

100

0

0

0.03

0

0

0.76

99.21

RES3B

0

V

0

0

0

0

0

0

0

0

RES3B

0

V

10

0

0

0

0

0

0.02

9.98

RES3B

0

V

20

0

0

0

0

0

0.14

19.86

RES3B

0

V

30

0

0

0.01

0

0

0.22

29.77

RES3B

0

V

40

0

0

0.01

0

0

0.28

39.71

RES3B

0

V

50

0

0

0.01

0

0

0.37

49.62

RES3B

0

V

60

0

0

0.01

0

0

0.42

59.56

RES3B

0

V

70

0

0

0.02

0

0

0.51

69.48

RES3B

0

V

80

0

0

0.02

0

0

0.56

79.42

RES3B

0

V

90

0

0

0.02

0

0

0.61

89.37

RES3B

0

V

100

0

0

0.03

0

0

0.76

99.21

RES3B

1

A

0

0

0

0

0

0

0

0

RES3B

1

A

10

0

0

0

0

0

0.03

9.97

RES3B

1

A

20

0

0

0

0

0

0.1

19.9

RES3B

1

A

30

0

0

0

0

0

0.18

29.82

RES3B

1

A

40

0

0

0

0

0

0.26

39.74

RES3B

1

A

50

0

0

0

0

0

0.31

49.69

RES3B

1

A

60

0

0

0

0

0

0.36

59.64

RES3B

1

A

70

0

0

0

0

0

0.41

69.59

RES3B

1

A

80

0

0

0

0

0

0.54

79.46

RES3B

1

A

90

0

0

0.01

0

0

0.64

89.35

RES3B

1

A

100

0.01

0

0.01

0

0

0.65

99.33

RES3B

1

CA

0

0

0

0

0

0

0

0

RES3B

1

CA

10

0

0

0

0

0

0.04

9.96

RES3B

1

CA

20

0

0

0

0

0

0.13

19.87

RES3B

1

CA

30

0

0

0

0

0

0.23

29.77

RES3B

1

CA

40

0

0

0

0

0

0.28

39.72

RES3B

1

CA

50

0

0

0

0

0

0.39

49.61

RES3B

1

CA

60

0

0

0

0

0

0.46

59.54

RES3B

1

CA

70

0

0

0

0

0

0.54

69.46

RES3B

1

CA

80

0

0

0

0

0

0.62

79.38

RES3B

1

CA

90

0

0

0.01

0

0

0.64

89.34

RES3B

1

CA

100

0.01

0

0.01

0

0

0.7

99.28

RES3B

1

V

0

0

0

0

0

0

0

0

RES3B

1

V

10

0

0

0

0

0

0.04

9.96

RES3B

1

V

20

0

0

0

0

0

0.13

19.87

RES3B

1

V

30

0

0

0

0

0

0.23

29.77

RES3B

1

V

40

0

0

0

0

0

0.28

39.72

RES3B

1

V

50

0

0

0

0

0

0.39

49.61

RES3B

1

V

60

0

0

0

0

0

0.46

59.54

RES3B

1

V

70

0

0

0

0

0

0.54

69.46

RES3B

1

V

80

0

0

0

0

0

0.62

79.38

RES3B

1

V

90

0

0

0.01

0

0

0.64

89.34

RES3B

1

V

100

0.01

0

0.01

0

0

0.7

99.28

RES3C

0

A

0

0

0

0

0

0

0

0

RES3C

0

A

10

0

0

0

0

0

0

10

RES3C

0

A

20

0

0

0

0

0

0

20

RES3C

0

A

30

0

0

0

0

0

0

30

RES3C

0

A

40

0

0

0

0

0

0

40

RES3C

0

A

50

0

0

0

0

0

0

50

RES3C

0

A

60

0

0

0

0

0

0

60

RES3C

0

A

70

0

0

0

0

0

0

70

RES3C

0

A

80

0

0

0

0

0

0

80

RES3C

0

A

90

0

0

0

0

0

0

90

RES3C

0

A

100

0

0

0

0

0

0

99.99

RES3C

0

CA

0

0

0

0

0

0

0

0

RES3C

0

CA

10

0

0

0

0

0

0

10

RES3C

0

CA

20

0

0

0

0

0

0

20

RES3C

0

CA

30

0

0

0

0

0

0

30

RES3C

0

CA

40

0

0

0

0

0

0

40

RES3C

0

CA

50

0

0

0

0

0

0

50

RES3C

0

CA

60

0

0

0

0

0

0

60

RES3C

0

CA

70

0

0

0

0

0

0

70

RES3C

0

CA

80

0

0

0

0

0

0

79.99

RES3C

0

CA

90

0

0

0

0

0

0

89.99

RES3C

0

CA

100

0

0

0

0

0

0

99.99

RES3C

0

V

0

0

0

0

0

0

0

0

RES3C

0

V

10

0

0

0

0

0

0

10

RES3C

0

V

20

0

0

0

0

0

0

20

RES3C

0

V

30

0

0

0

0

0

0

30

RES3C

0

V

40

0

0

0

0

0

0

40

RES3C

0

V

50

0

0

0

0

0

0

50

RES3C

0

V

60

0

0

0

0

0

0

60

RES3C

0

V

70

0

0

0

0

0

0

70

RES3C

0

V

80

0

0

0

0

0

0

79.99

RES3C

0

V

90

0

0

0

0

0

0

89.99

RES3C

0

V

100

0

0

0

0

0

0

99.99

RES3C

1

A

0

0

0

0

0

0

0

0

RES3C

1

A

10

0

0

0

0

0

0

10

RES3C

1

A

20

0

0

0

0

0

0

20

RES3C

1

A

30

0

0

0

0

0

0

30

RES3C

1

A

40

0

0

0

0

0

0

40

RES3C

1

A

50

0

0

0

0

0

0

50

RES3C

1

A

60

0

0

0

0

0

0

60

RES3C

1

A

70

0

0

0

0

0

0

70

RES3C

1

A

80

0

0

0

0

0

0

80

RES3C

1

A

90

0

0

0

0

0

0

90

RES3C

1

A

100

0

0

0

0

0

0

99.99

RES3C

1

CA

0

0

0

0

0

0

0

0

RES3C

1

CA

10

0

0

0

0

0

0

10

RES3C

1

CA

20

0

0

0

0

0

0

20

RES3C

1

CA

30

0

0

0

0

0

0

30

RES3C

1

CA

40

0

0

0

0

0

0

40

RES3C

1

CA

50

0

0

0

0

0

0

50

RES3C

1

CA

60

0

0

0

0

0

0

60

RES3C

1

CA

70

0

0

0

0

0

0

70

RES3C

1

CA

80

0

0

0

0

0

0

80

RES3C

1

CA

90

0

0

0

0

0

0

90

RES3C

1

CA

100

0

0

0

0

0

0

99.99

RES3C

1

V

0

0

0

0

0

0

0

0

RES3C

1

V

10

0

0

0

0

0

0

10

RES3C

1

V

20

0

0

0

0

0

0

20

RES3C

1

V

30

0

0

0

0

0

0

30

RES3C

1

V

40

0

0

0

0

0

0

40

RES3C

1

V

50

0

0

0

0

0

0

50

RES3C

1

V

60

0

0

0

0

0

0

60

RES3C

1

V

70

0

0

0

0

0

0

70

RES3C

1

V

80

0

0

0

0

0

0

80

RES3C

1

V

90

0

0

0

0

0

0

90

RES3C

1

V

100

0

0

0

0

0

0

99.99

RES3D

0

A

0

0

0

0

0

0

0

0

RES3D

0

A

10

0

0

0

0

0

0

10

RES3D

0

A

20

0

0

0

0

0

0

20

RES3D

0

A

30

0

0

0

0

0

0

30

RES3D

0

A

40

0

0

0

0

0

0

40

RES3D

0

A

50

0

0

0

0

0

0

50

RES3D

0

A

60

0

0

0

0

0

0

60

RES3D

0

A

70

0

0

0

0

0

0

70

RES3D

0

A

80

0

0

0

0

0

0

80

RES3D

0

A

90

0

0

0

0

0

0

90

RES3D

0

A

100

0

0

0

0

0

0

99.99

RES3D

0

CA

0

0

0

0

0

0

0

0

RES3D

0

CA

10

0

0

0

0

0

0

10

RES3D

0

CA

20

0

0

0

0

0

0

20

RES3D

0

CA

30

0

0

0

0

0

0

30

RES3D

0

CA

40

0

0

0

0

0

0

40

RES3D

0

CA

50

0

0

0

0

0

0

50

RES3D

0

CA

60

0

0

0

0

0

0

60

RES3D

0

CA

70

0

0

0

0

0

0

70

RES3D

0

CA

80

0

0

0

0

0

0

80

RES3D

0

CA

90

0

0

0

0

0

0

90

RES3D

0

CA

100

0

0

0

0

0

0

99.99

RES3D

0

V

0

0

0

0

0

0

0

0

RES3D

0

V

10

0

0

0

0

0

0

10

RES3D

0

V

20

0

0

0

0

0

0

20

RES3D

0

V

30

0

0

0

0

0

0

30

RES3D

0

V

40

0

0

0

0

0

0

40

RES3D

0

V

50

0

0

0

0

0

0

50

RES3D

0

V

60

0

0

0

0

0

0

60

RES3D

0

V

70

0

0

0

0

0

0

70

RES3D

0

V

80

0

0

0

0

0

0

80

RES3D

0

V

90

0

0

0

0

0

0

90

RES3D

0

V

100

0

0

0

0

0

0

99.99

RES3D

1

A

0

0

0

0

0

0

0

0

RES3D

1

A

10

0

0

0

0

0

0

10

RES3D

1

A

20

0

0

0

0

0

0

20

RES3D

1

A

30

0

0

0

0

0

0

30

RES3D

1

A

40

0

0

0

0

0

0

40

RES3D

1

A

50

0

0

0

0

0

0

50

RES3D

1

A

60

0

0

0

0

0

0

60

RES3D

1

A

70

0

0

0

0

0

0

70

RES3D

1

A

80

0

0

0

0

0

0

80

RES3D

1

A

90

0

0

0

0

0

0

90

RES3D

1

A

100

0

0

0

0

0

0

99.99

RES3D

1

CA

0

0

0

0

0

0

0

0

RES3D

1

CA

10

0

0

0

0

0

0

10

RES3D

1

CA

20

0

0

0

0

0

0

20

RES3D

1

CA

30

0

0

0

0

0

0

30

RES3D

1

CA

40

0

0

0

0

0

0

40

RES3D

1

CA

50

0

0

0

0

0

0

50

RES3D

1

CA

60

0

0

0

0

0

0

60

RES3D

1

CA

70

0

0

0

0

0

0

70

RES3D

1

CA

80

0

0

0

0

0

0

80

RES3D

1

CA

90

0

0

0

0

0

0

90

RES3D

1

CA

100

0

0

0

0

0

0

99.99

RES3D

1

V

0

0

0

0

0

0

0

0

RES3D

1

V

10

0

0

0

0

0

0

10

RES3D

1

V

20

0

0

0

0

0

0

20

RES3D

1

V

30

0

0

0

0

0

0

30

RES3D

1

V

40

0

0

0

0

0

0

40

RES3D

1

V

50

0

0

0

0

0

0

50

RES3D

1

V

60

0

0

0

0

0

0

60

RES3D

1

V

70

0

0

0

0

0

0

70

RES3D

1

V

80

0

0

0

0

0

0

80

RES3D

1

V

90

0

0

0

0

0

0

90

RES3D

1

V

100

0

0

0

0

0

0

99.99

RES3E

0

A

0

0

0

0

0

0

0

0

RES3E

0

A

10

0

0

0

0

0

0

10

RES3E

0

A

20

0

0

0

0

0

0

20

RES3E

0

A

30

0

0

0

0

0

0

30

RES3E

0

A

40

0

0

0

0

0

0

40

RES3E

0

A

50

0

0

0

0

0

0

50

RES3E

0

A

60

0

0

0

0

0

0

60

RES3E

0

A

70

0

0

0

0

0

0

70

RES3E

0

A

80

0

0

0

0

0

0

80

RES3E

0

A

90

0

0

0

0

0

0

89.99

RES3E

0

A

100

0

0

0.01

0

0

0.01

99.99

RES3E

0

CA

0

0

0

0

0

0

0

0

RES3E

0

CA

10

0

0

0

0

0

0

10

RES3E

0

CA

20

0

0

0

0

0

0

20

RES3E

0

CA

30

0

0

0

0

0

0

30

RES3E

0

CA

40

0

0

0

0

0

0

40

RES3E

0

CA

50

0

0

0

0

0

0

50

RES3E

0

CA

60

0

0

0

0

0

0

60

RES3E

0

CA

70

0

0

0

0

0

0

69.99

RES3E

0

CA

80

0

0

0

0

0

0

79.99

RES3E

0

CA

90

0

0

0

0

0

0

89.99

RES3E

0

CA

100

0

0

0.01

0

0

0.01

99.99

RES3E

0

V

0

0

0

0

0

0

0

0

RES3E

0

V

10

0

0

0

0

0

0

10

RES3E

0

V

20

0

0

0

0

0

0

20

RES3E

0

V

30

0

0

0

0

0

0

30

RES3E

0

V

40

0

0

0

0

0

0

40

RES3E

0

V

50

0

0

0

0

0

0

50

RES3E

0

V

60

0

0

0

0

0

0

60

RES3E

0

V

70

0

0

0

0

0

0

69.99

RES3E

0

V

80

0

0

0

0

0

0

79.99

RES3E

0

V

90

0

0

0

0

0

0

89.99

RES3E

0

V

100

0

0

0.01

0

0

0.01

99.99

RES3E

1

A

0

0

0

0

0

0

0

0

RES3E

1

A

10

0

0

0

0

0

0

10

RES3E

1

A

20

0

0

0

0

0

0

20

RES3E

1

A

30

0

0

0

0

0

0

30

RES3E

1

A

40

0

0

0

0

0

0

40

RES3E

1

A

50

0

0

0

0

0

0

50

RES3E

1

A

60

0

0

0

0

0

0

60

RES3E

1

A

70

0

0

0

0

0

0

70

RES3E

1

A

80

0

0

0

0

0

0.01

79.99

RES3E

1

A

90

0

0

0

0

0

0.01

89.99

RES3E

1

A

100

0

0

0.01

0

0

0.01

99.98

RES3E

1

CA

0

0

0

0

0

0

0

0

RES3E

1

CA

10

0

0

0

0

0

0

10

RES3E

1

CA

20

0

0

0

0

0

0

20

RES3E

1

CA

30

0

0

0

0

0

0

30

RES3E

1

CA

40

0

0

0

0

0

0

40

RES3E

1

CA

50

0

0

0

0

0

0

50

RES3E

1

CA

60

0

0

0

0

0

0

59.99

RES3E

1

CA

70

0

0

0

0

0

0.01

69.99

RES3E

1

CA

80

0

0

0

0

0

0.01

79.99

RES3E

1

CA

90

0

0

0

0

0

0.01

89.99

RES3E

1

CA

100

0

0

0.01

0

0

0.01

99.98

RES3E

1

V

0

0

0

0

0

0

0

0

RES3E

1

V

10

0

0

0

0

0

0

10

RES3E

1

V

20

0

0

0

0

0

0

20

RES3E

1

V

30

0

0

0

0

0

0

30

RES3E

1

V

40

0

0

0

0

0

0

40

RES3E

1

V

50

0

0

0

0

0

0

50

RES3E

1

V

60

0

0

0

0

0

0

59.99

RES3E

1

V

70

0

0

0

0

0

0.01

69.99

RES3E

1

V

80

0

0

0

0

0

0.01

79.99

RES3E

1

V

90

0

0

0

0

0

0.01

89.99

RES3E

1

V

100

0

0

0.01

0

0

0.01

99.98

RES3F

0

A

0

0

0

0

0

0

0

0

RES3F

0

A

10

0

0

0

0

0

0

10

RES3F

0

A

20

0

0

0

0

0

0

20

RES3F

0

A

30

0

0

0

0

0

0

30

RES3F

0

A

40

0

0

0

0

0

0

40

RES3F

0

A

50

0

0

0

0

0

0

50

RES3F

0

A

60

0

0

0

0

0

0.01

59.99

RES3F

0

A

70

0

0

0

0

0

0.01

69.99

RES3F

0

A

80

0

0

0

0

0

0.01

79.99

RES3F

0

A

90

0

0

0

0

0

0.01

89.98

RES3F

0

A

100

0

0

0

0

0

0.01

99.98

RES3F

0

CA

0

0

0

0

0

0

0

0

RES3F

0

CA

10

0

0

0

0

0

0

10

RES3F

0

CA

20

0

0

0

0

0

0

20

RES3F

0

CA

30

0

0

0

0

0

0

30

RES3F

0

CA

40

0

0

0

0

0

0.01

39.99

RES3F

0

CA

50

0

0

0

0

0

0.01

49.99

RES3F

0

CA

60

0

0

0

0

0

0.01

59.99

RES3F

0

CA

70

0

0

0

0

0

0.01

69.98

RES3F

0

CA

80

0

0

0

0

0

0.02

79.98

RES3F

0

CA

90

0

0

0

0

0

0.02

89.98

RES3F

0

CA

100

0

0

0

0

0

0.02

99.98

RES3F

0

V

0

0

0

0

0

0

0

0

RES3F

0

V

10

0

0

0

0

0

0

10

RES3F

0

V

20

0

0

0

0

0

0

20

RES3F

0

V

30

0

0

0

0

0

0

30

RES3F

0

V

40

0

0

0

0

0

0.01

39.99

RES3F

0

V

50

0

0

0

0

0

0.01

49.99

RES3F

0

V

60

0

0

0

0

0

0.01

59.99

RES3F

0

V

70

0

0

0

0

0

0.01

69.98

RES3F

0

V

80

0

0

0

0

0

0.02

79.98

RES3F

0

V

90

0

0

0

0

0

0.02

89.98

RES3F

0

V

100

0

0

0

0

0

0.02

99.98

RES3F

1

A

0

0

0

0

0

0

0

0

RES3F

1

A

10

0

0

0

0

0

0

10

RES3F

1

A

20

0

0

0

0

0

0

20

RES3F

1

A

30

0

0

0

0

0

0

30

RES3F

1

A

40

0

0

0

0

0

0

40

RES3F

1

A

50

0

0

0

0

0

0

50

RES3F

1

A

60

0

0

0

0

0

0

60

RES3F

1

A

70

0

0

0

0

0

0

70

RES3F

1

A

80

0

0

0

0

0

0

79.99

RES3F

1

A

90

0

0

0

0

0

0.01

89.99

RES3F

1

A

100

0

0

0

0

0

0.01

99.98

RES3F

1

CA

0

0

0

0

0

0

0

0

RES3F

1

CA

10

0

0

0

0

0

0

10

RES3F

1

CA

20

0

0

0

0

0

0

20

RES3F

1

CA

30

0

0

0

0

0

0

30

RES3F

1

CA

40

0

0

0

0

0

0

40

RES3F

1

CA

50

0

0

0

0

0

0.01

49.99

RES3F

1

CA

60

0

0

0

0

0

0.01

59.99

RES3F

1

CA

70

0

0

0

0

0

0.01

69.99

RES3F

1

CA

80

0

0

0

0

0

0.01

79.98

RES3F

1

CA

90

0

0

0

0

0

0.01

89.98

RES3F

1

CA

100

0

0

0

0

0

0.01

99.98

RES3F

1

V

0

0

0

0

0

0

0

0

RES3F

1

V

10

0

0

0

0

0

0

10

RES3F

1

V

20

0

0

0

0

0

0

20

RES3F

1

V

30

0

0

0

0

0

0

30

RES3F

1

V

40

0

0

0

0

0

0

40

RES3F

1

V

50

0

0

0

0

0

0.01

49.99

RES3F

1

V

60

0

0

0

0

0

0.01

59.99

RES3F

1

V

70

0

0

0

0

0

0.01

69.99

RES3F

1

V

80

0

0

0

0

0

0.01

79.98

RES3F

1

V

90

0

0

0

0

0

0.01

89.98

RES3F

1

V

100

0

0

0

0

0

0.01

99.98

RES4

0

A

0

0

0

0

0

0

0

0

RES4

0

A

10

0

0

0

0

0

0

10

RES4

0

A

20

0

0

0

0

0

0

20

RES4

0

A

30

0

0

0

0

0

0

30

RES4

0

A

40

0

0

0

0

0

0

40

RES4

0

A

50

0

0

0

0

0

0

50

RES4

0

A

60

0

0

0

0

0

0

60

RES4

0

A

70

0

0

0

0

0

0

70

RES4

0

A

80

0

0

0

0

0

0

80

RES4

0

A

90

0

0

0

0

0

0

90

RES4

0

A

100

0

0

0

0

0

0

100

RES4

0

CA

0

0

0

0

0

0

0

0

RES4

0

CA

10

0

0

0

0

0

0

10

RES4

0

CA

20

0

0

0

0

0

0

20

RES4

0

CA

30

0

0

0

0

0

0

30

RES4

0

CA

40

0

0

0

0

0

0

40

RES4

0

CA

50

0

0

0

0

0

0

50

RES4

0

CA

60

0

0

0

0

0

0

60

RES4

0

CA

70

0

0

0

0

0

0

70

RES4

0

CA

80

0

0

0

0

0

0

80

RES4

0

CA

90

0

0

0

0

0

0

90

RES4

0

CA

100

0

0

0

0

0

0

100

RES4

0

V

0

0

0

0

0

0

0

0

RES4

0

V

10

0

0

0

0

0

0

10

RES4

0

V

20

0

0

0

0

0

0

20

RES4

0

V

30

0

0

0

0

0

0

30

RES4

0

V

40

0

0

0

0

0

0

40

RES4

0

V

50

0

0

0

0

0

0

50

RES4

0

V

60

0

0

0

0

0

0

60

RES4

0

V

70

0

0

0

0

0

0

70

RES4

0

V

80

0

0

0

0

0

0

80

RES4

0

V

90

0

0

0

0

0

0

90

RES4

0

V

100

0

0

0

0

0

0

100

RES4

1

A

0

0

0

0

0

0

0

0

RES4

1

A

10

0

0

0

0

0

0

10

RES4

1

A

20

0

0

0

0

0

0

20

RES4

1

A

30

0

0

0

0

0

0

30

RES4

1

A

40

0

0

0

0

0

0

40

RES4

1

A

50

0

0

0

0

0

0

50

RES4

1

A

60

0

0

0

0

0

0

60

RES4

1

A

70

0

0

0

0

0

0

70

RES4

1

A

80

0

0

0

0

0

0

80

RES4

1

A

90

0

0

0

0

0

0

90

RES4

1

A

100

0

0

0

0

0

0

100

RES4

1

CA

0

0

0

0

0

0

0

0

RES4

1

CA

10

0

0

0

0

0

0

10

RES4

1

CA

20

0

0

0

0

0

0

20

RES4

1

CA

30

0

0

0

0

0

0

30

RES4

1

CA

40

0

0

0

0

0

0

40

RES4

1

CA

50

0

0

0

0

0

0

50

RES4

1

CA

60

0

0

0

0

0

0

60

RES4

1

CA

70

0

0

0

0

0

0

70

RES4

1

CA

80

0

0

0

0

0

0

80

RES4

1

CA

90

0

0

0

0

0

0

90

RES4

1

CA

100

0

0

0

0

0

0

100

RES4

1

V

0

0

0

0

0

0

0

0

RES4

1

V

10

0

0

0

0

0

0

10

RES4

1

V

20

0

0

0

0

0

0

20

RES4

1

V

30

0

0

0

0

0

0

30

RES4

1

V

40

0

0

0

0

0

0

40

RES4

1

V

50

0

0

0

0

0

0

50

RES4

1

V

60

0

0

0

0

0

0

60

RES4

1

V

70

0

0

0

0

0

0

70

RES4

1

V

80

0

0

0

0

0

0

80

RES4

1

V

90

0

0

0

0

0

0

90

RES4

1

V

100

0

0

0

0

0

0

100

RES5

0

A

0

0

0

0

0

0

0

0

RES5

0

A

10

0

0

0

0

0

0

10

RES5

0

A

20

0

0

0

0

0

0

20

RES5

0

A

30

0

0

0

0

0

0

30

RES5

0

A

40

0

0

0

0

0

0

40

RES5

0

A

50

0

0

0

0

0

0.01

49.99

RES5

0

A

60

0

0

0

0

0

0.01

59.99

RES5

0

A

70

0

0

0

0

0

0.02

69.98

RES5

0

A

80

0

0

0

0

0

0.02

79.98

RES5

0

A

90

0

0

0

0

0

0.03

89.97

RES5

0

A

100

0

0

0.01

0

0

0.04

99.95

RES5

0

CA

0

0

0

0

0

0

0

0

RES5

0

CA

10

0

0

0

0

0

0

10

RES5

0

CA

20

0

0

0

0

0

0

20

RES5

0

CA

30

0

0

0

0

0

0

29.99

RES5

0

CA

40

0

0

0

0

0

0.01

39.99

RES5

0

CA

50

0

0

0.01

0

0

0.01

49.98

RES5

0

CA

60

0

0

0.01

0

0

0.01

59.98

RES5

0

CA

70

0

0

0.01

0

0

0.01

69.98

RES5

0

CA

80

0

0

0.01

0

0

0.02

79.97

RES5

0

CA

90

0

0

0.01

0

0

0.02

89.97

RES5

0

CA

100

0

0

0.01

0

0

0.03

99.96

RES5

0

V

0

0

0

0

0

0

0

0

RES5

0

V

10

0

0

0

0

0

0

10

RES5

0

V

20

0

0

0

0

0

0

20

RES5

0

V

30

0

0

0

0

0

0

29.99

RES5

0

V

40

0

0

0

0

0

0.01

39.99

RES5

0

V

50

0

0

0.01

0

0

0.01

49.98

RES5

0

V

60

0

0

0.01

0

0

0.01

59.98

RES5

0

V

70

0

0

0.01

0

0

0.01

69.98

RES5

0

V

80

0

0

0.01

0

0

0.02

79.97

RES5

0

V

90

0

0

0.01

0

0

0.02

89.97

RES5

0

V

100

0

0

0.01

0

0

0.03

99.96

RES5

1

A

0

0

0

0

0

0

0

0

RES5

1

A

10

0

0

0

0

0

0

10

RES5

1

A

20

0

0

0

0

0

0

20

RES5

1

A

30

0

0

0

0

0

0

30

RES5

1

A

40

0

0

0

0

0

0

40

RES5

1

A

50

0

0

0

0

0

0

50

RES5

1

A

60

0

0

0

0

0

0.01

59.99

RES5

1

A

70

0

0

0

0

0

0.01

69.99

RES5

1

A

80

0

0

0

0

0

0.01

79.98

RES5

1

A

90

0

0

0.01

0

0

0.02

89.97

RES5

1

A

100

0

0

0.01

0

0

0.04

99.95

RES5

1

CA

0

0

0

0

0

0

0

0

RES5

1

CA

10

0

0

0

0

0

0

10

RES5

1

CA

20

0

0

0

0

0

0

20

RES5

1

CA

30

0

0

0

0

0

0

29.99

RES5

1

CA

40

0

0

0

0

0

0.01

39.99

RES5

1

CA

50

0

0

0.01

0

0

0.01

49.98

RES5

1

CA

60

0

0

0.01

0

0

0.02

59.97

RES5

1

CA

70

0

0

0.01

0

0

0.02

69.97

RES5

1

CA

80

0

0

0.01

0

0

0.02

79.97

RES5

1

CA

90

0

0

0.01

0

0

0.03

89.96

RES5

1

CA

100

0

0

0.01

0

0

0.03

99.95

RES5

1

V

0

0

0

0

0

0

0

0

RES5

1

V

10

0

0

0

0

0

0

10

RES5

1

V

20

0

0

0

0

0

0

20

RES5

1

V

30

0

0

0

0

0

0

29.99

RES5

1

V

40

0

0

0

0

0

0.01

39.99

RES5

1

V

50

0

0

0.01

0

0

0.01

49.98

RES5

1

V

60

0

0

0.01

0

0

0.02

59.97

RES5

1

V

70

0

0

0.01

0

0

0.02

69.97

RES5

1

V

80

0

0

0.01

0

0

0.02

79.97

RES5

1

V

90

0

0

0.01

0

0

0.03

89.96

RES5

1

V

100

0

0

0.01

0

0

0.03

99.95

RES6

0

A

0

0

0

0

0

0

0

0

RES6

0

A

10

0

0

0

0

0

0

10

RES6

0

A

20

0

0

0

0

0

0

20

RES6

0

A

30

0

0

0

0

0

0

30

RES6

0

A

40

0

0

0

0

0

0

40

RES6

0

A

50

0

0

0

0

0

0.01

49.99

RES6

0

A

60

0

0

0

0

0

0.01

59.99

RES6

0

A

70

0

0

0

0

0

0.01

69.99

RES6

0

A

80

0

0

0

0

0

0.01

79.98

RES6

0

A

90

0

0

0

0

0

0.02

89.98

RES6

0

A

100

0

0

0

0

0

0.02

99.98

RES6

0

CA

0

0

0

0

0

0

0

0

RES6

0

CA

10

0

0

0

0

0

0

10

RES6

0

CA

20

0

0

0

0

0

0

20

RES6

0

CA

30

0

0

0

0

0

0

30

RES6

0

CA

40

0

0

0

0

0

0

40

RES6

0

CA

50

0

0

0

0

0

0.01

49.99

RES6

0

CA

60

0

0

0

0

0

0.01

59.99

RES6

0

CA

70

0

0

0

0

0

0.01

69.99

RES6

0

CA

80

0

0

0

0

0

0.01

79.99

RES6

0

CA

90

0

0

0

0

0

0.01

89.98

RES6

0

CA

100

0

0

0

0

0

0.02

99.98

RES6

0

V

0

0

0

0

0

0

0

0

RES6

0

V

10

0

0

0

0

0

0

10

RES6

0

V

20

0

0

0

0

0

0

20

RES6

0

V

30

0

0

0

0

0

0

30

RES6

0

V

40

0

0

0

0

0

0

40

RES6

0

V

50

0

0

0

0

0

0.01

49.99

RES6

0

V

60

0

0

0

0

0

0.01

59.99

RES6

0

V

70

0

0

0

0

0

0.01

69.99

RES6

0

V

80

0

0

0

0

0

0.01

79.99

RES6

0

V

90

0

0

0

0

0

0.01

89.98

RES6

0

V

100

0

0

0

0

0

0.02

99.98

RES6

1

A

0

0

0

0

0

0

0

0

RES6

1

A

10

0

0

0

0

0

0

10

RES6

1

A

20

0

0

0

0

0

0

20

RES6

1

A

30

0

0

0

0

0

0

30

RES6

1

A

40

0

0

0

0

0

0

40

RES6

1

A

50

0

0

0

0

0

0

50

RES6

1

A

60

0

0

0

0

0

0.01

59.99

RES6

1

A

70

0

0

0

0

0

0.01

69.99

RES6

1

A

80

0

0

0

0

0

0.01

79.99

RES6

1

A

90

0

0

0

0

0

0.01

89.99

RES6

1

A

100

0

0

0

0

0

0.02

99.98

RES6

1

CA

0

0

0

0

0

0

0

0

RES6

1

CA

10

0

0

0

0

0

0

10

RES6

1

CA

20

0

0

0

0

0

0

20

RES6

1

CA

30

0

0

0

0

0

0

30

RES6

1

CA

40

0

0

0

0

0

0

39.99

RES6

1

CA

50

0

0

0

0

0

0.01

49.99

RES6

1

CA

60

0

0

0

0

0

0.01

59.99

RES6

1

CA

70

0

0

0

0

0

0.01

69.99

RES6

1

CA

80

0

0

0

0

0

0.01

79.98

RES6

1

CA

90

0

0

0

0

0

0.02

89.98

RES6

1

CA

100

0

0

0

0

0

0.02

99.98

RES6

1

V

0

0

0

0

0

0

0

0

RES6

1

V

10

0

0

0

0

0

0

10

RES6

1

V

20

0

0

0

0

0

0

20

RES6

1

V

30

0

0

0

0

0

0

30

RES6

1

V

40

0

0

0

0

0

0

39.99

RES6

1

V

50

0

0

0

0

0

0.01

49.99

RES6

1

V

60

0

0

0

0

0

0.01

59.99

RES6

1

V

70

0

0

0

0

0

0.01

69.99

RES6

1

V

80

0

0

0

0

0

0.01

79.98

RES6

1

V

90

0

0

0

0

0

0.02

89.98

RES6

1

V

100

0

0

0

0

0

0.02

99.98

-
-
FEMA18a(1,2,3)
-

FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Hurricane Model Technical Manual, Federal Emergency Management Agency, Washington D.C., 718p.

-
-
FEMA18b
-

FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Flood Model Technical Manual, Federal Emergency Management Agency, Washington D.C., 569p.

-
-
Javeline19
-

Javeline, D. and Kijewski-Correa, T. (2019) “Coastal Homeowners in a Changing Climate,” Climatic Change. 152(2), 259-276 https://doi.org/10.1007/s10584-018-2257-4

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/example_outputs.html b/docs/common/testbeds/atlantic_city/example_outputs.html deleted file mode 100644 index fe73261b7..000000000 --- a/docs/common/testbeds/atlantic_city/example_outputs.html +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - - - - - Example Outputs — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Example Outputs

-

The estimated wind-only, flood-only, and total losses under the four hurricane -scenarios (hurricane_cat) are shown in dl_c2 to dl_c5.

-
-../../../_images/DL_category2.png -

Estimated regional loss maps for the Category 2 hurricane.

-
-
-../../../_images/DL_category3.png -

Estimated regional loss maps for the Category 3 hurricane.

-
-
-../../../_images/DL_category4.png -

Estimated regional loss maps for the Category 4 hurricane.

-
-
-../../../_images/DL_category5.png -

Estimated regional loss maps for the Category 5 hurricane.

-
-

Average expected loss ratios are also computed for individual cities, which are -summarized in cl_c2 to cl_c5

-
-../../../_images/city_loss_c2.png -

City-wise average expected loss ratios (Category 2 hurricane).

-
-
-../../../_images/city_loss_c3.png -

City-wise average expected loss ratios (Category 3 hurricane).

-
-
-../../../_images/city_loss_c4.png -

City-wise average expected loss ratios (Category 4 hurricane).

-
-
-../../../_images/city_loss_c5.png -

City-wise average expected loss ratios (Category 5 hurricane).

-
-

For the top five cities with most assets in the building inventory, the average -expected wind losses are computed for different built eras. Buildings before 1980s generally -have relatively higher wind loss ratios where 1970s is found to be the worst decade for -Atlantic City, Brigantine, and Galloway. Since 1980, the building performance is improved -where the post-2000 buildings are found to behave much better than buildings in the other groups.

-
-../../../_images/atlantic_wind_loss.png -

Average expected wind loss ratios (Atlantic City).

-
-
-../../../_images/brigantine_wind_loss.png -

Average expected wind loss ratios (Brigantine).

-
-
-../../../_images/galloway_wind_loss.png -

Average expected wind loss ratios (Galloway).

-
-
-../../../_images/margate_wind_loss.png -

Average expected wind loss ratios (Margate City).

-
-
-../../../_images/ventor_wind_loss.png -

Average expected wind loss ratios (Ventor City).

-
-

The results from the loss estimation for each scenario above (Category 2-5) and each available inventory, -can be accessed (example_results).

- - ----- - - - - - - - - - - - - - - - - - - - - - - - - -
Access points for example results

Scenario

Inventory Options

Location

Scaled Category 2

Flood-Exposed Inventory, Exploration Inventory

Category2.zip

Scaled Category 3

Flood-Exposed Inventory, Exploration Inventory

Category2.zip

Scaled Category 4

Flood-Exposed Inventory, Exploration Inventory

Category2.zip

Category 5

Flood-Exposed Inventory, Exploration Inventory

Category2.zip

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/feedback_request.html b/docs/common/testbeds/atlantic_city/feedback_request.html deleted file mode 100644 index c79f555d7..000000000 --- a/docs/common/testbeds/atlantic_city/feedback_request.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - - - - - Feedback and Data Request — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Feedback and Data Request

-

If you have any feedback, data requests, or questions, please post on the Message Board on SimCenter Forum. -When creating a New Topic`it would be helpful if you could place an indication of your post in the `Subject area:

-
    -
  1. General feedback, e.g., FEEDBACK: Questions on the testbed.

  2. -
  3. Data requests, e.g., DATA: Request the sample data of the testbed.

  4. -
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/future_refinements.html b/docs/common/testbeds/atlantic_city/future_refinements.html deleted file mode 100644 index 4c4c9b317..000000000 --- a/docs/common/testbeds/atlantic_city/future_refinements.html +++ /dev/null @@ -1,353 +0,0 @@ - - - - - - - - - - Opportunity Areas for Future Refinements — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Opportunity Areas for Future Refinements
  • - - -
  • - - - View page source - - -
  • - -
- - -
-
-
-
- -
-

Opportunity Areas for Future Refinements

-

This testbed and its backing workflows should be viewed as a sandbox and scaffold, -respectively, within which the community can explore different scenarios and develop -new capabilities. The following list itemizes some areas where contribution from the -community is especially welcome:

-
    -
  1. The current use of HAZUS for damage and loss modeling limits the buildings under -consideration to 6 stories and under. Thus the user community is invited to support -the extension of PELICUN to buildings taller than 6 stories.

  2. -
  3. Extensions to taller buildings will require further expansion of the building -inventory’s fields to capture attributes relevant to those classes of construction. -Methods to mine relevant data from imagery or other third party data sources, e.g., -Emporis, will provide welcome extensions to the Asset Description approaches described herein.

  4. -
  5. The testbed would benefit from validation studies that include ground truthing the -generated inventories as well as the projected damage and loss. Those with access to -damage data, particularly in areas affected significantly by Superstorm Sandy, may use -the testbed to conduct such validation studies. The methodologies used to construct the -inventory for Atlantic County can easily be repeated in more northern counties of the state, -where damage was more significant, as all the flood-exposed inventory data and hazard descriptions -available through the SimCenter have coverage over the entire state. The rulesets are similarly -applicable statewide.

  6. -
  7. Currently the workflow calculates damage and monetary loss; coupling the workflow with other -social, societal or economic models, will provide opportunities to more robustly explore the -impacts of hazard events, mitigation investments and development decisions on community resilience. -The creation of techniques to automatically scrape and fuse data from the social, human and behavioral -sciences will ensure those datasets can be generated in a manner similar to those used for the -building inventory itself.

  8. -
  9. A number of approximations and assumptions were made in the generation of the building inventory -(see Asset Description). There is considerable opportunity to expand, enrich and improve upon -methodologies for automated inventory generation, particularly to generate other attributes necessary -as the workflow advances toward component level damage quantification.

  10. -
  11. The SimCenter aspires to incorporate increasing levels of fidelity in its characterization of hazards, -modeling of buildings (to support application of pressures/loads and structural analysis), and ability -to describe damage at the component level, with fault-trees that capture cascading damage sequences -resulting from breaches of the building envelope. Thus there is considerable need for community -research contributions such as libraries of fragilities, archetype building models, and catalogs -of high-fidelity hazard simulations (hindcasts of historical events or synthetic storm data). -This is especially the case of coastal hazards. With aspirations to replicate this workflow in other -regions, these contributions need not be confined to New Jersey/Atlantic Coast. Their integration into -the testbed can demonstrate how the contributions of individual researchers can aggregate to evaluate -impact on much larger scales.

  12. -
  13. The testbed does not explicitly treat the effects of debris (wind-borne or surge-transported), nor -are any of the flow fields translated into pressures acting on individual buildings to enable the -execution of structural analyses. Extending the workflow to tall buildings creates opportunities for -response simulation to estimate drifts or other EDPs for more dynamically sensitive structures under -wind. However, similar opportunities to translate geospatially varying hazards into loads on a given -structure can be seized to increase the workflow’s overall fidelity.

  14. -
-
-

Note

-

Community members who wish to contribute to the hurricane testbed in any of the above (or other) areas can -express their interest by completing this survey.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/hazard_characterization.html b/docs/common/testbeds/atlantic_city/hazard_characterization.html deleted file mode 100644 index 1a71f2788..000000000 --- a/docs/common/testbeds/atlantic_city/hazard_characterization.html +++ /dev/null @@ -1,583 +0,0 @@ - - - - - - - - - - Hazard Characterization — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Hazard Characterization

-

Both the wind and flood hazards affect the building inventory in this testbed. As the initial implementation of -the regional assessment workflow incorporates the HAZUS Hurricane Damage and Loss Assessment methodology, -hazards are quantified by two intensity measures: Peak Wind Speed (PWS) and Peak Water Depth (PWD). -The PWS refers to the maximum 3-second gust measured at the reference height of 10m in open terrain -(equivalent to Exposure C in ASCE 7-16). The PWD is the maximum depth of flooding (height of storm -surge above grade) during the storm.

-

The following sections will introduce the options for generating these two types of hazard inputs using -either a historical scenario or a synthetic storm scenario, as discussed in the following sections. -Note that as part of the Asset Representation Process (see Asset Representation), the design wind speeds from -ASCE 7 are already included for each building footprint for reference.

-
-

Synthetic Storm Scenario

-

An Atlantic City landfall scenario was generated using the Storm Hazard Projection Tool developed in the -NJcoast project ([NJCoast20]). The constructed hazard scenario uses NJcoast’s basic simulation option, -which identifies the 25 hurricane tracks from the SHP tool’s surrogate model that match the targeted -storm scenario, in this case: a hurricane with Category 5 intensity (central pressure differential -of 75-100 mbar, radius of maximum winds of 15.4 to 98 mi) making landfall near the Atlantic City -Beach Patrol Station (39.348308° N, -74.452544° W) under average tides. This scenario is sufficient -to inundate coastal areas in the testbed geography and generate significant wave run-up in some -locales. The SHP Tool generates these through the following underlying computational models.

-
-

Wind Modeling

-

The SHP Tool generates its wind fields using a highly efficient, linear analytical model for the boundary -layer winds of a moving hurricane developed by Snaiki and Wu ([Snaiki17a], [Snaiki17b]). -To account for the exposure in each New Jersey county, an effective roughness length (weighted average) -of the upwind terrain is used based on the Land Use/Land Cover data reported by the state’s Bureau of -GIS. In order to generate a wind field, this model requires the time-evolving hurricane track, -characterized by the position (latitude, longitude), the central pressure, the radius of maximum winds, -and the forward speed. While the model is -fully height-resolving and time-evolving, for a given input hurricane scenario, the wind hazard is -characterized by the maximum 10-minute mean wind speed observed during the entire hurricane track. -This is reported at the reference height of 10 m over a uniform grid (0.85-mile spacing, 1.37 km) -across the entire state in miles per hour, which is then accordingly adjusted for compatibility with -the averaging interval assumed by the HAZUS Hurricane Damage and Loss Model. Since the wind speed -(\(V(600s, 10m, z_0)\)) from the NJcoast SHP Tool is averaged over the time window of 1 hour, -a number of standard conversions (see Standard Wind Speed Conversions) -parse the wind speed to the 3-second and open-terrain PWS -(i.e., \(V(3s, 10m, Exposure C)\)).

-

As the initial developer of this model has made the underlying code available for this testbed, -users have two ways to engage this model to generate wind fields for this testbed: -1. Users can adopt the aforementioned default sythetic Category 5 scenario striking Atlantic City -2. Users can generate a custom storm scenario by providing the requied inputs into this linear -1. analytical model to generate a customized windfield for use with this testbed.

-

Wind fields described by either approach are then locally interpolated to the coordiantes associated with each -footprint. The resulting 3s-gust peak wind speed (PWS) ranges from 178 mph to 191 mph given the simulated -Category-5 hurricane event (pws). Because the SPH model tracks the maximum wind speed over the -entire hurricane time history - so the inland cities are subjected to slightly higher wind speed than -the coastal cities.

-
-../../../_images/pws.png -

Interpolated peak wind speed (3s-gust) for each asset in the inventory.

-
-
-
-

Storm Surge Modeling

-

Coastal hazard descriptions use the outputs of the aforementioned SHP Tool, which estimates storm -surge and total run up due to the breaking of near-shore waves for an arbitrary hurricane scenario -using surrogate modeling techniques ([Jia13], [Jia15]). The SHP Tool -leverages the US Army Corps of Engineers (USACE) NACCS: North Atlantic Coastal -Comprehensive Study ([NadalCaraballo15]), which contains over 1000 high-fidelity -numerical simulations of hurricanes using the ADCIRC ([Luettich92]) storm surge model, -coupled with STWAVE ([Smith01]) to capture the additional effects of waves offshore. -It is important to note that the grid adopted for the NACCS execution of ADCIRC does extend -into the riverine systems to capture the storm surge influx; however, the grid extensions -up-river have limited extent and there was no explicit modeling of the riverine systems -and interactions between those systems and the storm surge. The -NACCS database was further enhanced with wave run-up simulations that capture the interaction of -the waves with site-specific bathymetry/topography (2015 USGS CoNED Topobathy DEM: New -Jersey and Delaware (1888 - 2014) dataset) to project the total run up inland, along transects spaced -0.5 km apart along the New Jersey coast. This results in a prediction of storm surge height at the -USACE-defined save points along the New Jersey coast that are, on average, 200 m apart, with finer -resolution in areas with complex topographies. The SHP Tool was executed for the testbed scenario -to estimate the depth of storm surge above ground, geospatially interpolated to 110,000 nearshore -locations at approximately 120 m spacing, accompanied by the Limit of Moderate Wave Action -(LiMWA) and wet-dry boundary respectively defining the extent of damaging waves and inundation -over land at each of the transect points. These are then interpolated to the location of the coastal -parcels to express the property exposure to storm surge (pwd). In the initial implementation, as demonstrated -in this test, only the peak water depth (PWD) was considered, which will be used in the HAZUS -Flood Damage and Loss Assessment.

-
-../../../_images/pwd.png -

Interpolated peak water depth for each asset in the inventory.

-
-
-
-

Multiple Category Analysis (MCA)

-

Note that the resulting 3s-gust PWS values by this Category-5 hurricane is much higher than -the design wind speed specified by ASCE 7-16 ([ASCE16]) for the Atlantic County which ranges -from 105 mph to 115 mph. Since this extreme scenario bears a small likelihood, this testbed -also scales the wind and flood water field down to lower categories to conduct the so-called -Multiple Category Analysis to exam the building performance under different intense scenarios -(hurricane_cat) and were used later in the Verification Results (see Verification Results).

- - ------- - - - - - - - - - - - - - - - - - - - - -
Scaled peak wind speed and peak water depth for different hurricane categories.

Hurricane Category

2

3

4

5

Peak Wind Speed (mph)

101 - 108

119 - 127

136 - 145

178 - 191

Peak Water Depth (ft)

0 - 7

0 - 11

0 - 15

0 - 18

-

Users can access the synthetic wind field and storm surge inputs for the defined scenario, as well as the suite -created for the MCA (synthetic_data).

- - ---- - - - - - - - - - - - - - -
Access points for synthetic storm scenario files

Hazard

Access Point

Wind Field

Synthetic wind data

Storm Surge

Synthetic storm surge data

-
-
-
-

Historical Storm Scenario

-

Hindcast simulations of historical storm events are equally valuable, particularly when they are coupled -with observations of damage and loss across an inventory. As such this testbed includes the option to use -existing hindcast data from established community providers as input to the loss estimation workflow. -New Jersey’s most notable storm event in recent history was Superstorm Sandy (2012). According to [NJDEP15] -and [USDOC13], Sandy’s devastation included 346,000 homes damaged. The New Jersey State Hazard Mitigation -Plan [NJSHMP] further notes that storm surge accounts for 90% of the deaths and property damage during -hurricanes in this region. While Atlantic County was designated as a “Sandy-Affected Community” -by FEMA and the State of New Jersey, the wind and storm surge intensities in the county were significantly -less than those observed in the more northern counties. Nonetheless, these historical inputs are provided -to demonstrate the workflow’s ability to support hindcast evaluations of damage and loss in actual storm events.

-
-

Wind Modeling

-

Hindcast wind fields for this event were made available by Peter Vickery and Applied Research Associates (ARA). -Their hurricane model derives wind speeds based on numerically solving the differential equations of a -translating storm and iteratively calibrating based on field observations over the weeks following an event. -The ARA_Example.zip provides the peak 3-s gust peak wind speed field of Hurricane Sandy on a grid that can be -directly used in the presented hurricane workflow, as visualized in ara_pws for Atlantic County.

-
-../../../_images/ARA_PWS.png -

ARA 3-s gust peak wind speed (3-s gust at 10 m) in Atlantic County during Hurricane Sandy.

-
-

Alternatively, users can also use other available wind field resources. For instance, -RMS Legacy Archive provides access to -historical hurricane events including the Superstorm Sandy -for an alternate description of the field. Similar to the ARA peak wind speed field, in order to run the workflow, users -would first convert the data from other resources to the format as shown in ARA_Example.zip.

-
-
-

Storm Surge Modeling

-

ADCIRC hindcast of Superstorm Sandy was generated by the Westerink Group at the University of Notre Dame and -made available to the SimCentetr. adcirc_pwd shows the peak storm surge from the hindcast. Note that -the scope of the hindcast focused on the heavier-impacted regions of New York and Northern New Jersey, -which were resolved with a finer mesh than more southern counties like Atlantic County, i.e., ~0.5 km (New York and Norther New Jersey) vs. ~3 km (Southern counties) between two closest nodes. In futher constrast with the NACCS ADCIRC runs referenced in Storm Surge Modeling, -the grids adopted for the Sandy hindcast in this region of New Jersey did not extend into the riverine systems. Noting these -limits of the simulation, peak water depth over land displayed in adcirc_sitepwd assumes zero values in the rivering -systems and at any point inland of the grid points shown in adcirc_waterelev. The -ADCIRC_Example.zip provides the peak water depth grid that can be used in -the presented hurricane workflow.

-
-../../../_images/ADCIRC_PWD.png -

Simulated storm surge field of Hurricane Sandy by ADCIRC (by courtesy of Dr. Westerink).

-
-
-../../../_images/ADCIRC_waterelev.png -

Simulated water elevation of Hurricane Sandy by ADCIRC (Atlantic County).

-
-
-../../../_images/ADCIRC_sitePWD.png -

Simulated water depth over land for Hurricane Sandy by ADCIRC (Atlantic County).

-
- - ---- - - - - - - - - - - - - - -
Access points for Superstorm Sandy files

Hazard

Access Point

Wind Field

ARA_Example.zip

Storm Surge

ADCIRC_Example.zip

-
-
Snaiki17a
-

Snaiki, R. and Wu, T. (2017a) “Modeling tropical cyclone boundary layer: Height-resolving -pressure and wind fields,” Journal of Wind Engineering and Industrial Aerodynamics, 170, 18-27.

-
-
Snaiki17b
-

Snaiki, R. and Wu, T. (2017b) “A linear height-resolving wind field model for tropical -cyclone boundary layer,” Journal of Wind Engineering and Industrial Aerodynamics, 171, 248-260.

-
-
ATC20
-

ATC (2020b), ATC Hazards By Location, https://hazards.atcouncil.org/, Applied Technology Council, Redwood City, CA.

-
-
NJCoast20
-

NJ Coast (2020), Storm Hazard Projection Tool, NJ Coast, https://njcoast.us/resources-shp/

-
-
ASCE16
-

ASCE (2016), Minimum Design Loads for Buildings and Other Structures, ASCE 7-16, -American Society of Civil Engineers.

-
-
ESDU02
-

Engineering Sciences Data Unit (ESDU). (2002). “Strong winds in the atmospheric boundary -layer—Part 2: Discrete gust speeds.” ESDU International plc, London, U.K.

-
-
Jia13
-

Jia G. and A. A. Taflanidis (2013) “Kriging metamodeling for approximation of high-dimensional -wave and surge responses in real-time storm/hurricane risk assessment,” Computer Methods in -Applied Mechanics and Engineering, V(261-262), 24-38.

-
-
Jia15
-

Jia G., A. A. Taflanidis, N. C. Nadal-Caraballo, J. Melby, A. Kennedy, and J. Smith (2015) “Surrogate -modeling for peak and time dependent storm surge prediction over an extended coastal region using -an existing database of synthetic storms,” Natural Hazards, V81, 909-938

-
-
NadalCaraballo15
-

Nadal‐Caraballo N.C, J. A. Melby, V. M. Gonzalez, and A. T. Cox (2015), North Atlantic Coast -Comprehensive Study – Coastal Storm Hazards from Virginia to Maine, ERDC/CHL TR-15-5, U.S. -Army Engineer Research and Development Center, Vicksburg, MS.

-
-
Luettich92
-

Luettich R.A, J. J. Westerink, and N. W. Scheffner (1992), ADCIRC: An advanced three-dimensional -circulation model for shelves, coasts, and estuaries. Report 1. Theory and methodology of ADCIRC- -2DDI and ADCIRC-3DL, Dredging Research Program Technical Report DRP-92-6, U.S Army -Engineers Waterways Experiment Station, Vicksburg, MS.

-
-
Smith01
-

Smith J.M, A. R. Sherlock, and D. T. Resio (2001) “STWAVE: Steady-state spectral wave model user’s -manual for STWAVE, Version 3.0,” Defense Technical Information Center, US Army Corps of -Engineering, Vicksburg, MS.

-
-
USDOC13
-

U.S. Department of Commerce (2013), Hurricne Sandy: Potential Economic Activity Lost and Gained in New -Jersey and New York.

-
-
NJDEP15
-

New Jersey Department of Environmental Protection (NJDEP) (2015), Damage Assessment -Report on the Effects of Hurricane Sandy on the State of New Jersey’s Natural Resources.

-
-
NJSHMP
-

State of New Jersey Office of Emergency Management (2012), The State of New Jersey’s Hazard Mitigation Plan, http://ready.nj.gov/mitigation/2012-mitigation-plan.shtml.

-
-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/index.html b/docs/common/testbeds/atlantic_city/index.html deleted file mode 100644 index cea8d2aa5..000000000 --- a/docs/common/testbeds/atlantic_city/index.html +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - - - - - Atlantic County, NJ — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Atlantic County, NJ

-

Acknowledgements

-

A number of members of the SimCenter Team assisted with this testbed’s development and its documentation: -Adam Zsarnoczay, Ajay Harish, Barbaros Cetiner, Charles Wang, Claudio Perez, Joanna Zou, Kuanshi Zhong, Stevan Gavrilovic, and Wael Elhaddad. -The testbed conceptualization was guided by Tracy Tracy Kijewski-Correa (University of Notre Dame), -with implementation supervised by Frank McKenna (University of California Berkeley). -Additional guidance was offered by Greg Deierlein (Stanford University), Andrew Kennedy -(University of Notre Dame), and Matt Schoettler (University of California Berkeley).

-

The Hazard Characterization leveraged models, software and simulations executed by the following groups, -whose collaboration is greatly appreciated:

-

The NJcoast project, with storm surge surrogate model developed by Alexandros Taflanidis (University of Notre Dame) -in collaboration with Andrew Kennedy (University of Notre Dame) and wind field model contributed by Teng Wu (University at Buffalo) -Superstorm Sandy ADCIRC hindcast results for storm surge provided by Joannes Westerink (University of Notre Dame) -and wind fields made available by Peter Vickery (Applied Research Associates).

-

Additional information required for Asset Description and Asset Representation was made possible through the -ongoing collaboration between the University of Notre dame and the New Jersey Department of Community Affairs (NJ DCA) -through the NJcoast project. NJ DCA’s Keith Henderson’s sustained support and collaboration is greatly appreciated.

- - ----- - - - - - - - - - - - - -
Documentation Version History

Version

Release Date

Update

1.0

04/2021

Initial release

-

Preface

-

This documentation is intended to introduce the implementation of the SimCenter’s hurricane -regional loss modeling workflow in the context of Atlantic City (Atlantic County), New Jersey. -While certain aspects of the workflow are unchanged in a given application context, this -testbed specifically demonstrates how building inventories can be constructed through -automated processes that fuse different data sources to enrich parcel data, using SimCenter -applications and heuristic rulesets grounded in local codes/standards and normative -construction practices. Given the significance of the building inventory generation for this -testbed, this documentation was written in response to two primary audiences/use cases:

-

Case 1: End users who wish to use the testbed to explore specific research questions such as: -1. the impact of different hurricane scenarios beyond those provided herein -2. the potential benefits of various mitigation efforts (changing select attribute assignments and/or damage/loss descriptions) -3. the benefits of more refined damage/loss models, particularly for coastal hazards

-

Such individuals may not wish to generate their own inventories, but require some background in order -to meaningfully interpret results. This documentation will enhance their understanding of the various -assumptions made in generating these inventories and assigning the attributes required for the adopted -loss models. Use Case 1 generally requires skill sets in Hazard Characterization and -Damage and Loss Estimation.

-

Case 2: Users who seek to develop building inventories beyond Atlantic County, NJ will benefit from a -deeper understanding of the techniques, rulesets and scripts used to generate this building inventory. -In addition to the explanations that follow, this documentation is accompanied by detailed rulesets used -for building and attribute assignment -(SimCenter Hurricane Testbed: Inventory Documentation), -as well as their implementation as Python scripts (auto_HU_NJ.py). -These provide templates that such users can potentially -refine, extend and replicate this testbed’s process for Building Inventory generation beyond the current -application in Atlantic County. Use Case 2 generally requires skill sets in Asset Description, -Asset Representation, and Damage and Loss Estimation.

-

Before running this testbed, users are advised to review the Computational Resources Requirements to ensure -their hardware meets minimum specifications and to understand how to properly estimate the HPC resources -necessary to execute these testbeds and factors influencing the run time.

- -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/overview.html b/docs/common/testbeds/atlantic_city/overview.html deleted file mode 100644 index e29ea7c1c..000000000 --- a/docs/common/testbeds/atlantic_city/overview.html +++ /dev/null @@ -1,426 +0,0 @@ - - - - - - - - - - Overview — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Overview

-

This testbed for regional hurricane risk assessment of Atlantic County, New Jersey under multiple hazards adopts -an approach consistent with that developed for earthquake hazards. Its intent is to demonstrate the computational -scaffolding upon which community developers can progressively contribute refinements that increase the fidelity -and capacities of the backend regional resilience assessment workflow. This documentation specifically demonstrates -the process of: (1) asset description, (2) hazard characterization, (3) asset representation, (4) damage and loss -modeling for the Atlantic County inventory. This inventory is partitioned into three different versions to provide -users greater flexibility in balancing computational demands with their research interests. Sample results are -presented to verify the workflow and demonstrate its usage.

-
-

Rationale

-

This testbed builds upon existing relationships between SimCenter personnel and the State of New Jersey through -the NJcoast project ([KijewskiCorrea19], [NJCoast20]), which made available various inventory data and high-fidelity -characterizations of wind, storm surge and wave action. Notably, the State of New Jersey has made sizable -investments in open data and resilience planning tools in recent years, enabling a demonstration of how to leverage -these data for inventory development.

-

The selection of Atlantic County, NJ and specifically Atlantic City and its -surrounding municipalities offers a well-defined metro area with a blend of low-rise commercial (1-3 stories), -industrial, high-rise hotels/casinos (over 20 stories), and single/multi-family residences. Thus a single testbed -encompasses two extremes in building typologies with known vulnerabilities to wind: wood frame single-family homes -and tall flexible structures more susceptible to dynamic wind effects. From the perspective of hazard exposure, -this region is also characterized by beachfront communities exposed to storm surge and breaking waves on the -ocean-facing coastline and back bay and riverine flooding. This blend of residential communities and more urban -central business districts frequented by tourists moreover enables evaluation of resilience across different -communities with differing profiles. As the State of New Jersey has actually taken control of Atlantic City to -reimagine its role as an economic hub for the state, this testbed can help inform how future planning decisions -should consider hurricane risk.

-
-
-

Capabilities and Supported Hazards

-

The testbed supports the transition from census-block-level loss projections to asset-level projections that -assess the damage to individual buildings under multiple hurricane-induced hazards: wind and storm surge. Water -penetration due to the breach of building envelopes and/or wind-borne debris impact are also captured in the -damage and loss modeling, though the physics of these phenomena themselves are not explicitly modeled. -Similarly, other hydrologic hazards related to accumulated rainfall, inland flooding, overland flow and -riverline flooding, are not capture. -Supported building classes include residential, commercial and industrial construction, critical facilities, -and manufactured homes, constructed of wood, steel, reinforced concrete and masonry. The adoption of HAZUS -loss estimation frameworks constrains the current testbed to buildings 6 stories and under and only the -building classes currently supported by HAZUS ([FEMA18a], [FEMA18b]).

-
-
-

Current Implementation

-

For the initial implementation of the backend workflow, asset description adopts an augmented parcel approach -that enriches tax assessor data. High-fidelity computational simulations are employed to simulate the wind and -surge hazards, characterized by two intensity measures: the Peak Wind Speed (PWS) and Peak Water Depth (PWD), -for specific scenarios. In lieu of a structural analysis model, assets are assigned attributes associated with -various HAZUS-consistent building classifications. The adoption of HAZUS damage and loss assessment methodology -for hurricane and flood thus enables these intensity measures to be related to probabilities of damage and loss, -based on the building class and assigned attributes.

-
-
-

Available Inventories

-

Three different building inventories have been developed for the Atlantic County testbed and can be accessed on DesignSafe.

-

Atlantic County Inventory: Full inventory of 100,721 buildings in the 23 municipalities of Atlantic County, -described based on a variety of data sources (fig-buildingClassACI). The buildings in this inventory are exposed to wind -only OR the combination of wind and floodplain hazards.

-
-../../../_images/BuildingClass_atlanticall.png -

Geospatial visualization of subclasses of buildings in Atlantic County Inventory.

-
-

Flood-Exposed Inventory: This subset of the Atlantic County inventory is confined to 32,828 buildings in -FEMA Special Flood Hazard Areas (SFHAs) (fig-buildingClassFEI), as identified by the New Jersey Department of Environmental -Protection (NJDEP). This includes all buildings in (or within 200-foot buffer of) the 1% annual chance (AC) -floodplain, as defined by FEMA Flood Insurance Rate Maps (FIRMs). The buildings in this inventory are exposed -to the combination of wind and floodplain hazards, and includes some of the most populated municipalities in the -county: Atlantic City, Margate City, and Ventor City which contribute to about 50% of the entire building inventory -in Atlantic County.

-
-../../../_images/new_inventory_map.png -

Geospatial visualization of subclasses of buildings in Flood-Exposed Inventory.

-
-

Exploration Inventory: A subset of 1000 buildings drawn from the Flood-Exposed Inventory intended to provide -a less computationally demanding implementation for new users or for those wishing to test the development of new -contributions to the workflow (fig-buildingClassEI). This inventory encompasses the five coastal municipalities -experiencing the most damage under the synthetic storm scenario described later in Synthetic Storm Scenario. -From each of these municipalities, properties are randomly sampled, proportional to the total number of buildings -in that municipalitiy and ensuring that the distribution of construction material of buildings in the sample is -representative of the underlying distribution for the full population. The buildings in this inventory are exposed to the combination of -wind and floodplain hazards.

-
-../../../_images/new_inventory_map_expl.png -

Geospatial visualization of subclasses of buildings in Flood-Exposed Inventory.

-
-

The following figures summarize characteristics of these inventories, including distribution by municipality -(fig-distAssetMunicipality), by year built (fig-distBuiltYear), by occupancy (fig-occupancyType), -by number of stories (fig-numStory) and by primary construction material (fig-constrMaterial). -Notably, these inventories are typified by older vintages of construction (79% of Atlantic County buildings were constructed -before 1980), with a dominance of low-rise (1-2 stories), residential, wood frame construction (approximately -90% of Atlantic County buildings). Steel and reinforced concrete construction is more prevalent in downtown -Atlantic City.

-
-../../../_images/num_building_city_allset.png -

Distribution of number of buildings by municipality.

-
-
-../../../_images/built_year_allset.png -

Distribution of year built for buildings.

-
-
-../../../_images/occupancy_type_allset.png -

Distribution of occupancy types.

-
-
-../../../_images/story_number_allset.png -

Distribution of total story numbers for buildings.

-
-
-../../../_images/building_type_allset.png -

Distribution of primary construction material types.

-
-
-
FEMA18a
-

FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Hurricane Model Technical Manual, Federal Emergency Management Agency, Washington D.C., 718p.

-
-
FEMA18b
-

FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Flood Model Technical Manual, Federal Emergency Management Agency, Washington D.C., 569p.

-
-
KijewskiCorrea19
-

Kijewski-Correa, T., Taflanidis, A., Vardeman, C., Sweet, J., Zhang, J., Snaiki, R., … & Kennedy, A. (2020). Geospatial environments for hurricane risk assessment: applications to situational awareness and resilience planning in New Jersey. Frontiers in Built Environment, 6, 549106.

-
-
NJCoast20
-

NJ Coast (2020), Storm Hazard Projection Tool, NJ Coast, https://njcoast.us/resources-shp/

-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/preface.html b/docs/common/testbeds/atlantic_city/preface.html deleted file mode 100644 index 08b5f04ff..000000000 --- a/docs/common/testbeds/atlantic_city/preface.html +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - - - Preface — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Preface

-

This documentation is intended to introduce the implementation of the SimCenter’s hurricane -regional loss modeling workflow in the context of Atlantic City (Atlantic County), New Jersey. -While certain aspects of the workflow are unchanged in a given application context, this -testbed specifically demonstrates how building inventories can be constructed through -automated processes that fuse different data sources to enrich parcel data, using SimCenter -applications and heuristic rulesets grounded in local codes/standards and normative -construction practices. Given the significance of the building inventory generation for this -testbed, this documentation was written in response to two primary audiences/use cases:

-

Case 1: End users who wish to use the testbed to explore specific research questions such as: -1. the impact of different hurricane scenarios beyond those provided herein -2. the potential benefits of various mitigation efforts (changing select attribute assignments and/or damage/loss descriptions) -3. the benefits of more refined damage/loss models, particularly for coastal hazards

-

Such individuals may not wish to generate their own inventories, but require some background in order -to meaningfully interpret results. This documentation will enhance their understanding of the various -assumptions made in generating these inventories and assigning the attributes required for the adopted -loss models.

-

Case 2: Users who seek to develop building inventories beyond Atlantic County, NJ will benefit from a -deeper understanding of the techniques, rulesets and scripts used to generate this building inventory. -In addition to the explanations that follow, this documentation is accompanied by detailed rulesets used -for building and attribute assignment -(SimCenter Hurricane Testbed: Inventory Documentation), -as well as their implementation as Python scripts (auto_HU_NJ.py). -These provide templates that such users can potentially -refine, extend and replicate this testbed’s process for Building Inventory generation beyond the current -application in Atlantic County.

-

Before running this testbed, users are advised to review the Computational Resources Requirements to ensure -their hardware meets minimum specifications and to understand how to properly estimate the HPC resources -necessary to execute these testbeds and factors influencing the run time.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/pws_conversion.html b/docs/common/testbeds/atlantic_city/pws_conversion.html deleted file mode 100644 index 80947f514..000000000 --- a/docs/common/testbeds/atlantic_city/pws_conversion.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - - - Standard Wind Speed Conversions — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Standard Wind Speed Conversions

-

Since the wind speed (\(V(600s, 10m, z_0)\)) from the NJcoast SHP Tool is averaged over the time window of 1 hour, -a number of standard conversions parse the wind speed to the 3-second and open-terrain PWS -(i.e., \(V(3s, 10m, Exposure C)\)):

-

1. Computing \(\alpha\) and \(z_g\) by ASCE 7-16 ([ASCE16]) Equation C26.10-3 and C26.10-4 -taking \(c_1 = 5.65, c_2 = 450\) for units in m):

-
-()\[ \begin{align}\begin{aligned}\alpha_{SHP} = c_1z_0^{-0.133}\\z_{g,SHP} = c2z_0^{0.125}\end{aligned}\end{align} \]
-
    -
  1. Computing the gradient height \(V(600s, z_g, z_0)\) using the power law expression:

  2. -
-
-()\[V(600s, z_g, z_0) = V(600s, 10m, z_0) \times (\frac{z_{g,SHP}}{10m})^{1/\alpha_{SHP}}\]
-

3. Computing the Exposure C (open-terrain) wind speed at 10m height \(V(600s, 10m, Exposure C)\), with -\(\alpha_C = 9.5\) and \(z_{g,C} = 274.32 m\) ([ASCE16]):

-
-()\[V(600s, 10m, Exposure C) = V(600s, z_{g,C}, z_0) \times (\frac{10m}{z_g})^{1/\alpha_C}\]
-
    -
  1. Converting the result to 3s-gust wind speed using the ESDU conversion [ESDU02]:

  2. -
-
-()\[V(3s, 10m, Exposure C) = V(600s, 10m, Exposure C) \times \frac{C(3s)}{C(600s)}\]
-

where \(C(3s) = 1.52\) and \(C(600s) = 1.05\) are the Gust Factor from the ESDU conversion.

-
-
ASCE16
-

ASCE (2016), Minimum Design Loads for Buildings and Other Structures, ASCE 7-16, -American Society of Civil Engineers.

-
-
ESDU02
-

Engineering Sciences Data Unit (ESDU). (2002). “Strong winds in the atmospheric boundary -layer—Part 2: Discrete gust speeds.” ESDU International plc, London, U.K.

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/sample_results.html b/docs/common/testbeds/atlantic_city/sample_results.html deleted file mode 100644 index 437dd86c1..000000000 --- a/docs/common/testbeds/atlantic_city/sample_results.html +++ /dev/null @@ -1,4711 +0,0 @@ - - - - - - - - - - Verification Results — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Verification Results

-

This page summarizes sample results from the testbed runs with three major focuses:

-
    -
  1. verifying the estimated loss ratios by hand-calculations,

  2. -
  3. demonstrating the sensitivity study with different hurricane categories, and

  4. -
  5. illustrating the influence of building properties on the hurricane loss using the observations from the sample results.

  6. -
-
-

Building Inventory

-

From the entire building inventory, 85 buildings (sample_table) are selected from 5 building -classes and 8 built eras. scatter_matrix shows the data distributions of the built year, surface -roughness (\(z_0\)), peak wind speed (PWS), and peak water depth (PWD).

- - --------------------------------------------------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Sampled building inventory

BldgID

Address

City

State

Latitude

Longitude

OccupancyClass

BuildingType

UseCode

BldgClass

DesignLevel

YearBuiltNJDEP

YearBuiltMODIV

NumberofStories0

NumberofStories1

NoUnits

PlanArea0

PlanArea1

FoundationType

SplitLevel

ElevationR0

ElevationR1

FirstFloorHt0

FirstFloorHt1

FloodZone

DSWI

DSWII

DSWIII

DSWIV

WindZone

AvgJanTemp

RoofShape

RoofSlope

RoofCover

RoofSystem

MeanRoofHt

WindowArea

Garage

HazusClassW

HazusClassIN

HazusClassWA

AnalysisDefault

AnalysisAdopted

Modifications

z0

structureType

replacementCost

originID

1

NJBF000083279

119 KATHERINE AVENUE

Hamilton

NJ

39.44089743

-74.71993727

RES1

3001

16

NE

1946

1946

3102

1

1

1704.073412

1704.073412

3507

NO

12.76

22.41

1

0.34

6112

109.123386

118.815168

128.490756

133.374685

I

Above

Gable

0

5701

17.58580746

0

0

1

1

0.35

nav

1

778

2

NJBF000058080

124 N HUNTINGTON AVE

Margate City

NJ

39.33166965

-74.50396983

RES1

3001

17

NE

1946

1946

3102

2

1

964.2719128

964.2719128

3507

NO

30.76

36.4

1

0.97

6106

113.36632

123.196083

132.896558

139.462592

I

Above

Hip

0

5701

33.58059091

0

0

1

1

0.03

nav

1

93

3

NJBF000077636

2429 BAYSHORE AVE

Brigantine

NJ

39.40000135

-74.38391896

RES1

3001

17

NE

1946

1946

3102

2

1

1286.818181

1286.818181

3507

NO

34.01

44.41

1

0.53

6106

115.129299

124.655717

134.538718

140.4739

I

Above

Gable

0

5701

Wood

39.2087959

0

1.2

1

1

0.03

nav

1

1210

4

NJBF000068930

3534 BARGAINTOWN ROAD

Egg Harbor

NJ

39.35805051

-74.58051923

RES1

3001

16

NE

1953

1953

3101

1

1

1678.518665

1678.518665

3507

NO

17.14

28.12

1

0.14

6112

111.296122

121.561301

131.246895

137.501093

I

Above

Gable

0

5701

22.62949098

0

1.2

1

1

0.35

nav

1

713

5

NJBF000079126

207 2ND STREET NO

Galloway

NJ

39.40969176

-74.36320682

RES1

3001

15

NE

1953

1953

3102

1

1

747.7406916

747.7406916

3507

NO

17.21

24.07

1

2.71

6106

115.447759

124.950731

134.877889

140.678075

I

Above

Gable

0

5701

20.63738016

0

0

1

1

0.03

nav

1

5179

6

NJBF000078208

1413 BAYSHORE AVE

Brigantine

NJ

39.40365222

-74.37511144

RES1

3001

19

NE

1953

2018

3102

3

1

1654.601925

1654.601925

3507

NO

42.33

51.22

1

0.41

6106

115.270483

124.785062

134.686887

140.566348

I

Above

Hip

0

5701

Wood

46.77500968

0

1.1

1

1

0.03

nav

1

1591

7

NJBF000054995

108 OSBORNE RD

Somers Point

NJ

39.32483344

-74.60466135

RES1

3001

16

NE

1964

1964

3101

1

1

1781.609397

1781.609397

3507

NO

10.68

24.41

1

-0.71

6110

111.383965

121.529443

131.233897

137.487706

I

Above

Gable

0

5701

17.54588115

0

0

1

1

0.35

nav

1

1760

8

NJBF000058039

300 N JEROME AVE

Margate City

NJ

39.33159311

-74.50743266

RES1

3001

17

NE

1964

1964

3102

2

1

1390.50149

1390.50149

3505

NO

38.38

50.97

3

8.1

6106

113.291144

123.135714

132.833592

139.392906

I

Above

Hip

0

5701

44.67703156

0

0

1

1

0.03

nav

1

1658

9

NJBF000055748

2 DOLPHIN DR

Margate City

NJ

39.32688437

-74.50032485

RES1

3001

20

NE

1964

1964

3102

2

1

2428.992315

2428.992315

3505

NO

28.96

37.74

3

6.68

6106

113.515244

123.314794

133.016747

139.60025

I

Above

Hip

0

5701

33.34836023

0

1.1

1

1

0.03

nav

1

1057

10

NJBF000063022

105 E.LAKEVIEW DRIVE

Egg Harbor

NJ

39.34071989

-74.61302018

RES1

3001

16

NE

1975

1975

3102

2

1

2101.807978

2101.807978

3505

NO

31.47

41.76

3

4.16

6110

110.941781

121.197095

130.925304

137.083765

I

Above

Gable

0

5701

36.61496261

0

1.2

1

1

0.03

nav

1

1388

11

NJBF000066110

505 N SUFFOLK AVE

Ventnor City

NJ

39.34893143

-74.48029156

RES1

3001

17

NE

1975

1975

3102

2

1

1369.5075

1369.5075

3507

NO

29.19

39.67

1

0.61

6106

113.655963

123.425699

133.149889

139.650975

I

Above

Gable

0

5701

34.43054298

0

0

1

1

0.03

nav

1

3538

12

NJBF000073492

10 OCEAN DRIVE WEST

Atlantic City

NJ

39.38113137

-74.40999679

RES1

3001

16

NE

1975

1975

3103

2

1

1832.035426

1832.035426

3505

NO

34.18

44.84

3

1.89

6106

114.793626

124.361982

134.195585

140.313277

I

Above

Gable

0

5701

Wood

39.51043841

0

1.1

1

1

0.03

nav

1

4746

13

NJBF000057403

12 EDGEWOOD DR

Somers Point

NJ

39.33051161

-74.60016024

RES1

3001

16

NE

1981

1981

3101

2

1

1660.572695

1660.572695

3507

NO

39.3

50.93

1

1.17

6106

111.360647

121.536699

131.242921

137.499083

I

Above

Gable

0

5701

45.11670199

0

0

1

1

0.03

nav

1

644

14

NJBF000057446

28 N HAVERFORD AVE

Margate City

NJ

39.33058915

-74.50212761

RES1

3001

18

NE

1981

1981

3102

2

1

1102.124105

1102.124105

3505

NO

31.45

37.36

3

0.93

6106

113.422316

123.240902

132.942559

139.514928

I

Above

Flat

0

5701

34.40348935

0

1.1

1

1

0.03

nav

1

1002

15

NJBF000051577

112 SO 19TH AVE

Longport

NJ

39.3085663

-74.53042506

RES1

3001

19

NE

1981

1981

3102

2

1

2212.132327

2212.132327

3507

NO

35.91

45.71

1

2

6106

113.143422

122.999786

132.672024

139.218871

I

Above

Gable

0

5701

40.80993031

0

0

1

1

0.03

nav

1

3574

16

NJBF000062825

14 OSPREY COURT

Egg Harbor

NJ

39.34030729

-74.60663497

RES1

3001

16

NE

1996

1996

3102

2

1

3061.752943

3061.752943

3505

NO

30.15

38.03

3

6.37

6112

111.061978

121.310588

131.030056

137.222356

I

Above

Hip

0

5701

34.08946275

0

0

1

1

0.35

nav

1

1229

17

NJBF000080725

60 KIRKWOOD CIRCLE

Galloway

NJ

39.41602305

-74.36369075

RES1

3001

17

NE

1996

1996

3102

1

1

1521.689008

1521.689008

3507

NO

17.16

27.22

1

0.48

6106

115.372023

124.878935

134.799662

140.591237

I

Above

Gable

0

5701

22.19046033

0

0

1

1

0.03

nav

1

5006

18

NJBF000052235

21 SUNSET BLVD.

Longport

NJ

39.31354056

-74.53655555

RES1

3001

19

NE

1996

1996

3102

3

1

2287.826589

2287.826589

3507

NO

37.4

47.53

1

-0.54

6106

112.933799

122.834135

132.508544

139.034476

I

Above

Gable

0

5701

42.46263153

0

0

1

1

0.03

nav

1

3490

19

NJBF000063149

150A BEVIS MILL ROAD

Egg Harbor

NJ

39.34098334

-74.64006741

RES1

3001

16

NE

2006

2006

3101

1

1

3226.849111

3226.849111

3505

NO

15.98

28.26

3

2.71

6110

110.538024

120.738619

130.511821

136.518553

I

Above

Hip

0

5701

22.12207138

0

0

1

1

0.35

nav

1

1234

20

NJBF000055958

1748 MAYS LANDING S.P.RD

Egg Harbor

NJ

39.32736631

-74.63842395

RES1

3001

16

NE

2006

2006

3102

2

1

1973.228583

1973.228583

3505

NO

44.59

54.42

3

6.67

6106

110.808034

120.937296

130.682753

136.753477

I

Above

Gable

0

5701

49.50772892

0

0

1

1

0.03

nav

1

1527

21

NJBF000079672

224 QUAY BLVD

Galloway

NJ

39.41227522

-74.35850232

RES1

3001

19

NE

2006

2006

3102

3

1

1886.896463

1886.896463

3507

NO

49.29

54.5

1

2.09

6106

115.515226

125.014941

134.952091

140.720169

I

Above

Hip

0

5701

51.89537976

0

1.1

1

1

0.03

nav

1

4301

22

NJBF000053161

423 BAY AVE

Somers Point

NJ

39.3189379

-74.58771563

RES1

3001

16

NE

2015

2015

3102

2

1

1340.105103

1340.105103

3505

NO

22.24

34.56

3

0.11

6106

111.802644

121.888778

131.574061

137.919915

I

Above

Gable

0

5701

28.39625358

0

0

1

1

0.03

nav

1

1477

23

NJBF000060264

221 N CLERMONT AVE

Margate City

NJ

39.33567688

-74.49940658

RES1

3001

20

NE

2015

2015

3103

4

1

1185.58877

1185.58877

3505

NO

69.05

74.61

3

-2.59

6106

113.410497

123.231798

132.936675

139.498669

I

Above

Gable

0

5701

71.83210025

0

0

1

1

0.03

nav

1

4193

24

NJBF000062062

8206 BAYSHORE DR WEST

Margate City

NJ

39.338735

-74.51212

RES1

3001

22

NE

2015

2015

3102

3

1

1673.62059

1673.62059

3505

NO

39.76

45.53

3

5.7

6106

113.086593

122.972278

132.667723

139.195935

I

Above

Gable

0

5701

42.64444635

0

1.1

1

1

0.03

nav

1

4123

25

NJBF000081863

1 N SHORE ROAD

Absecon

NJ

39.42388503

-74.49982203

COM1

3003

NaN

ME

1925

0

3401

3

1

4704.929432

4704.929432

3507

NO

51.02

65.84

1

2.28

6112

112.484837

122.282696

131.918542

138.088621

I

Above

Hip

0

NaN

Wood

58.43117522

0

0

1

1

1

nav

1

493

26

NJBF000069338

117 S NEW YORK AVE

Atlantic City

NJ

39.35974596

-74.42787204

COM1

3003

45

ME

1930

1930

3401

3

2

604.1005315

604.1005315

3507

YES

48.29

55.95

1

-0.54

6106

114.664046

124.256657

134.059346

140.330643

I

Above

Flat

0

NaN

Wood

52.12151513

0

0

1

1

0.03

nav

1

947

27

NJBF000055216

9300 AMHERST AVE

Margate City

NJ

39.32546032

-74.51723828

COM8

3003

NaN

ME

1946

1946

3401

1

1

13901.71132

13901.71132

3507

NO

13.8

19.45

1

-0.77

6106

113.1657

123.032821

132.722552

139.27414

I

Above

Flat

0

5701

16.62780063

0

0

1

1

0.03

nav

1

1223

28

NJBF000075034

326 S MAIN ST

Pleasantville

NJ

39.388503

-74.525201

COM1

3003

NaN

ME

1955

1955

3401

1

1

1647.747398

1647.747398

3507

NO

16.79

22.67

1

1.09

6112

112.212548

122.202666

131.85152

138.156115

I

Above

Flat

0

NaN

19.72695846

0

0

1

1

1

nav

1

6602

29

NJBF000054971

127 N WASHINGTON AVE

Margate City

NJ

39.32478959

-74.51586363

RES3B

3003

22

ME

1951

1951

3301

2

1

3078.127629

3078.127629

3507

NO

28.8

38.12

1

0.17

6106

113.205698

123.064686

132.754935

139.3108

I

Above

Flat

0

5701

33.45973317

0

0

1

1

0.03

nav

1

727

30

NJBF000073390

8012 BLACK HORSE PIKE

Egg Harbor

NJ

39.38033785

-74.49374336

COM1

3003

999

NaN

ME

1950

1950

3401

2

1

2404.890882

2404.890882

3507

NO

24.54

37.44

1

0.78

6106

112.990314

122.846352

132.538498

138.895767

I

Above

Flat

0

NaN

30.99333269

0

0

1

1

0.03

nav

1

1287

31

NJBF000057470

199 NEW RD

Somers Point

NJ

39.34250417

-74.600954

COM3

3003

51

NaN

ME

1969

1972

3401

1

1

3419.706048

3419.706048

3507

NO

11.92

22.21

1

-0.4

6112

111.127063

121.382275

131.095304

137.307981

I

Above

Hip

0

NaN

17.06549151

0

0

1

1

0.35

nav

1

1928

32

NJBF000055129

9306 AMHERST AVE

Margate City

NJ

39.32521983

-74.517374

COM8

3003

NaN

ME

1969

0

3401

2

1

1383.820097

1383.820097

3507

NO

38.93

44.76

1

2.54

6106

113.166311

123.033188

132.722748

139.274482

I

Above

Flat

0

5701

41.84739883

0

0

1

1

0.03

nav

1

1224

33

NJBF000055126

9314 AMHERST AVE

Margate City

NJ

39.3252134

-74.51763481

COM8

3003

NaN

ME

1969

0

3401

3

1

6896.468324

6896.468324

3507

NO

48.24

61.68

1

2.03

6106

113.160717

123.02868

132.718091

139.269253

I

Above

Gable

0

5701

54.9626489

0

0

1

1

0.03

nav

1

4429

34

NJBF000095464

51 N WHITE HORSE PK

Hammonton

NJ

39.65027125

-74.7907762

COM4

3003

NaN

ME

1970

1970

3401

1

1

2130.323792

2130.323792

3507

NO

11.53

23.92

1

0.88

6112

108.018414

116.337196

126.216513

129.465836

I

Above

Gable

0

5701

17.72781306

0

0

1

1

1

nav

1

1709

35

NJBF000054073

9309-11 VENTNOR AVE

Margate City

NJ

39.32229704

-74.51448533

COM3

3003

NaN

ME

1979

1979

3401

2

1

2187.293921

2187.293921

3507

NO

32.61

43.22

1

2.14

6106

113.273087

123.117634

132.807583

139.370481

I

Above

Gable

0

NaN

37.91919315

0

0

1

1

0.03

nav

1

4740

36

NJBF000095306

91 LINDA AVE

Hammonton

NJ

39.64934151

-74.79326324

COM4

3003

17

ME

1980

1980

3401

1

2

2819.791689

2819.791689

3507

NO

16.63

24.36

1

1.4

6112

108.000397

116.326086

126.202341

129.445146

I

Above

Gable

0

5701

20.49300661

0

1.2

1

1

1

nav

1

1704

37

NJBF000069522

100 S NORTH CAROLINA AVE

Atlantic City

NJ

39.36117815

-74.42469566

COM1

3003

100

NaN

ME

1982

1982

3401

2

0

31554.39973

31554.39973

3507

NO

29.85

36.09

1

0.47

6106

114.714629

124.299534

134.107991

140.359489

I

Above

Flat

0

NaN

Wood

32.96561069

0

0

1

1

0.03

nav

1

2879

38

NJBF000067126

5219 WELLINGTON AVE

Ventnor City

NJ

39.35219284

-74.480485

COM1

3003

NaN

ME

1982

1982

3401

1

1

3112.718698

3112.718698

3507

NO

13.83

21.16

1

1.86

6106

113.610088

123.386618

133.110071

139.594352

I

Above

Flat

0

NaN

17.49422256

0

0

1

1

0.03

nav

1

4865

39

NJBF000083345

529 S NEW YORK RD

Galloway

NJ

39.44275733

-74.47802367

COM1

3003

562

NaN

ME

1992

1992

3401

2

1

3439.636383

3439.636383

3507

NO

26.82

35.75

1

-0.02

6112

112.802825

122.472991

132.127159

138.213243

I

Above

Gable

0

NaN

31.28504917

0

0

1

1

0.35

nav

1

3761

40

NJBF000070351

1411 DREXEL AVE

Atlantic City

NJ

39.3667895

-74.4320585

RES3C

3003

17

E

2007

2007

3305

2

1

766.9773282

766.9773282

3507

NO

27.06

37.98

1

1.27

6106

114.48954

124.106103

133.900371

140.166241

I

Above

Gable

0

NaN

Wood

32.52154366

0

0

2

2

0.03

nav

1

6248

41

NJBF000075076

306 S MAIN ST

Pleasantville

NJ

39.38863732

-74.52490788

COM1

3003

NaN

ME

2010

2010

3401

1

1

11692.02322

11692.02322

3507

NO

15.06

21.7

1

0.95

6110

112.217859

122.206414

131.855345

138.159782

I

Above

Flat

0

NaN

18.38054021

0

0

1

1

1

nav

1

6393

42

NJBF000074931

310 E BLACK HORSE PIKE

Pleasantville

NJ

39.38820591

-74.51848316

COM1

3003

959

NaN

ME

2015

2015

3401

1

1

5687.644715

5687.644715

3507

NO

10.94

23.23

1

-0.32

6106

112.364416

122.323968

131.979664

138.293419

I

Above

Flat

0

NaN

17.08336503

0

0

1

1

0.03

nav

1

6002

43

NJBF000086450

6935 BLACK HORSE PIKE

Hamilton

NJ

39.51390851

-74.77842456

COM4

3004

210

NaN

ME

1948

1948

3401

1

1

16322.74663

16322.74663

3507

NO

14.43

20.93

1

1.98

6110

108.468344

117.609405

127.30293

131.226104

I

Above

Flat

0

5701

17.67638697

0

0

1

1

1

nav

1

555

44

NJBF000067933

17 S CALIFORNIA AVE

Atlantic City

NJ

39.35505965

-74.4438384

RES3A

3004

45

NE

1940

1940

3301

4

3

1106.02091

1106.02091

3505

YES

67.49

76.87

3

6.23

6106

114.377438

124.016144

133.79143

140.150842

I

Above

Flat

0

5701

Wood

72.17815322

0

0

1

1

0.03

nav

1

3903

45

NJBF000071585

1000 SEWELL AVE

Atlantic City

NJ

39.371001

-74.42897166

RES3C

3004

33

ME

1920

1920

3301

2

1

2434.136116

2434.136116

3505

NO

23.18

29.25

3

-0.06

6106

114.50636

124.118298

133.917324

140.154888

I

Above

Flat

0

NaN

Wood

26.21392565

0

0

1

1

0.03

nav

1

1575

46

NJBF000067532

112 S TEXAS AVE

Atlantic City

NJ

39.35374935

-74.44195231

RES3A

3004

45

NE

1951

1951

3301

2

2

1190.423227

1190.423227

3505

NO

30.12

41.29

3

5.53

6106

114.434654

124.064327

133.842736

140.198904

I

Above

Hip

0

5701

Wood

35.70291661

0

0

1

1

0.03

nav

1

675

47

NJBF000057402

Somers Point

NJ

39.33050917

-74.59520012

COM1

3004

NaN

ME

1969

0

3401

1

1

11849.89921

11849.89921

3507

NO

12.8

21.15

1

0.76

6112

111.45316

121.621223

131.32293

137.601687

I

Above

Flat

0

NaN

16.97565766

0

0

1

1

1

nav

1

1399

48

NJBF000054164

Margate City

NJ

39.32258811

-74.5203292

RES3B

3004

NaN

ME

1969

0

3301

1

1

4125.121338

4125.121338

3505

NO

15.45

28.72

3

-0.39

6106

113.14151

123.011634

132.698438

139.2482

I

Above

Flat

0

NaN

22.08220942

0

0

1

1

0.03

nav

1

1457

49

NJBF000070799

24 N VERMONT AVE

Atlantic City

NJ

39.36847723

-74.41510563

RES3D

3004

29

NaN

E

1969

0

3303

4

1

3227.227931

3227.227931

3505

NO

76.59

86.08

3

8.75

6106

114.831509

124.398829

134.225009

140.406687

I

Above

Flat

0

NaN

Wood

81.33669568

0

0

1

1

0.03

nav

1

1221

50

NJBF000095360

51 N WHITE HORSE PK

Hammonton

NJ

39.64970618

-74.79125476

GOV2

3004

NaN

E

1970

1970

3401

1

1

11339.30035

11339.30035

3507

NO

21.05

27.5

1

2.79

6112

108.016068

116.338541

126.216419

129.465977

I

Above

Gable

0

5701

24.27340785

0

0

1

1

1

nav

1

1707

51

NJBF000056903

180 EXTON RD

Somers Point

NJ

39.3295025

-74.6092315

RES3D

3004

20

NaN

ME

1971

1971

3301

2

1

6588.726024

6588.726024

3507

NO

29.15

41.95

1

1.56

6110

111.217464

121.395159

131.10962

137.326055

I

Above

Gable

0

NaN

35.55092647

0

0

1

1

0.35

nav

1

699

52

NJBF000083177

334 WAVELAND AVE

Galloway

NJ

39.4389745

-74.52216105

COM4

3004

660

15

ME

1989

1989

3401

1

2

949.9101366

949.9101366

3507

NO

11.67

21.16

1

-0.78

6112

111.936404

121.737682

131.320812

137.414387

I

Above

Gable

0

NaN

16.41406922

0

0

1

1

1

nav

1

5395

53

NJBF000054347

20A N WASHINGTON AVE

Margate City

NJ

39.32312337

-74.51492155

RES3C

3004

39

ME

1984

1984

3301

3

1

1094.607767

1094.607767

3505

NO

52.72

65.86

3

3.9

6106

113.251173

123.100433

132.79051

139.351221

I

Above

Flat

0

5701

59.2856875

0

1.1

1

1

0.03

nav

1

3017

54

NJBF000070949

118 HOUSTON AVE

Atlantic City

NJ

39.36895475

-74.41774422

RES3D

3004

37

E

1991

1991

3303

2

1

1259.671486

1259.671486

3505

NO

30.01

36.71

3

7.52

6106

114.769858

124.345442

134.166361

140.359354

I

Above

Gable

0

NaN

Wood

33.36162631

0

0

1

1

0.03

nav

1

4047

55

NJBF000071205

207 GRAMMERCY PL

Atlantic City

NJ

39.36975058

-74.41456687

RES3D

3004

28

E

1997

1997

3303

2

2

2265.173094

2265.173094

3505

NO

29.29

39.72

3

6.43

6106

114.827925

124.395492

134.22256

140.397614

I

Above

Hip

0

NaN

Wood

34.50184309

0

0

1

1

0.03

nav

1

2432

56

NJBF000071172

136 N RHODE ISLAND AVE

Atlantic City

NJ

39.36965582

-74.41743749

RES3D

3004

27

E

2005

2005

3303

2

1

2166.425644

2166.425644

3505

NO

24.47

30.67

3

-0.21

6106

114.768135

124.343779

134.165188

140.354467

I

Above

Hip

0

NaN

Wood

27.57236549

0

0

1

1

0.03

nav

1

1209

57

NJBF000071182

410 MADISON AVE

Atlantic City

NJ

39.36968698

-74.41779165

RES3D

3004

17

E

2005

2005

3303

2

1

1107.846639

1107.846639

3505

NO

38.14

53.01

3

2.52

6106

114.760228

124.336941

134.157648

140.34853

I

Above

Gable

0

NaN

Wood

45.57743371

0

0

1

1

0.03

nav

1

2603

58

NJBF000070851

117 N CONGRESS AVE

Atlantic City

NJ

39.36864162

-74.41869082

RES3D

3004

16

E

2011

2011

3303

3

1

802.0152211

802.0152211

3505

NO

35.33

42.74

3

1.3

6106

114.753413

124.33133

134.150448

140.348989

I

Above

Flat

0

NaN

Wood

39.03848087

0

0

1

1

0.03

nav

1

4149

59

NJBF000070902

118 N MASSACHUSETTS AVE

Atlantic City

NJ

39.36880762

-74.41846797

RES3D

3004

16

E

2011

2011

3303

3

1

709.3505582

709.3505582

3505

NO

42.15

54.26

3

-0.95

6106

114.756199

124.33369

134.153217

140.350157

I

Above

Hip

0

NaN

Wood

48.20750768

0

0

1

1

0.03

nav

1

1310

60

NJBF000097484

221 COLUMBIA RD

Hammonton

NJ

39.66442193

-74.76504316

AGR1

3002

15

NE

1940

1940

3401

1

1

1472.420015

1472.420015

3507

NO

16.89

24.04

1

2.98

6103

108.195876

116.411555

126.333375

129.627018

I

Above

Flat

0

5701

20.46252452

0

0

1

1

0.03

nav

1

1822

61

NJBF000088045

Port Republic

NJ

39.54763197

-74.46234038

COM4

3002

NaN

ME

1940

0

3401

2

1

1646.407216

1646.407216

3507

NO

29.84

39.58

1

0.17

6106

112.455822

121.567875

131.158504

136.943158

I

Above

Flat

0

5701

34.7065761

0

0

1

1

0.03

nav

1

184

62

NJBF000052049

23 MAYS LANDING RD

Somers Point

NJ

39.31265761

-74.61287565

COM1

3002

NaN

ME

1956

1956

3401

1

1

34819.11281

34819.11281

3507

NO

17.07

24.59

1

0.16

6110

111.46761

121.545171

131.236146

137.492116

I

Above

Flat

0

NaN

20.82998617

0

0

1

1

1

nav

1

625

63

NJBF000087482

7 NEW YORK RD

Port Republic

NJ

39.5346575

-74.4655905

IND3

3002

NaN

E

1950

1950

3401

1

1

1479.066246

1479.066246

3507

NO

12.94

18.93

1

2.07

6112

112.476775

121.669075

131.268282

137.073269

I

Above

Flat

0

5701

15.93881638

0

0

1

1

0.7

nav

1

55

64

NJBF000088315

838 CHESTNUT NECK RD

Port Republic

NJ

39.54803791

-74.46150522

COM4

3002

NaN

ME

1956

0

3401

1

1

528.1563887

528.1563887

3507

NO

14.2

21.22

1

1.43

6102

112.467603

121.577652

131.168241

136.954051

I

Above

Flat

0

5701

17.71108713

0

0

1

1

0.03

nav

1

119

65

NJBF000083941

45 MILL STREET

Hamilton

NJ

39.45229668

-74.73683343

IND4

3002

330

NaN

E

1963

1963

3401

1

1

120820.4836

120820.4836

3507

NO

11.07

19.29

1

-0.32

6110

108.957248

118.534814

128.209824

132.873379

I

Above

Flat

0

5701

15.17759393

0

0

1

1

1

nav

1

155

66

NJBF000057684

1723 MAYS LANDING S.P.RD

Egg Harbor

NJ

39.33098611

-74.64185131

IND2

3002

959

NaN

ME

1969

0

3401

3

1

7153.751923

7153.751923

3507

NO

58.56

63.78

1

0.89

6106

110.696883

120.834901

130.592793

136.629403

I

Above

Flat

0

5703

61.16946147

0

0

1

1

0.03

nav

1

566

67

NJBF000054248

Margate City

NJ

39.32284517

-74.50597053

RES1

3002

NaN

NE

1969

0

3101

1

1

1784.081426

1784.081426

3502

NO

17.79

23.06

5

6.92

6106

113.450713

123.261201

132.957108

139.535946

I

Above

Flat

0

5701

20.42213724

0

0

1

1

0.03

nav

1

4254

68

NJBF000095674

726 LAUREL AVE

Hammonton

NJ

39.65166561

-74.75729323

AGR1

3002

17

NE

1971

1971

3401

2

1

1640.125943

1640.125943

3507

NO

29.76

42.38

1

-0.31

6109

108.303556

116.597915

126.489728

129.877356

I

Above

Gable

0

5701

36.06909592

0

0

1

1

0.03

nav

1

1715

69

NJBF000087584

39 NEW YORK RD

Port Republic

NJ

39.5370114

-74.46578565

IND3

3002

17

E

1975

1975

3401

1

1

1430.483559

1430.483559

3507

NO

15.29

23.51

1

2.8

6112

112.459606

121.637147

131.234482

137.033784

I

Above

Gable

0

5701

19.40077165

0

0

1

1

0.35

nav

1

257

70

NJBF000053112

Margate City

NJ

39.318737

-74.51508087

RES3F

3002

NaN

E

1976

0

3305

6

1

28111.9281

28111.9281

3507

NO

75.32

86.21

1

1.75

6106

113.313927

123.148328

132.835999

139.402402

I

Above

Gable

0

5701

80.7670378

0

0

2

2

0.03

nav

1

2296

71

NJBF000098453

625 PINE RD

Hammonton

NJ

39.67831622

-74.78339242

AGR1

3002

17

NE

1986

1986

3401

2

1

2170.33778

2170.33778

3507

NO

26.28

39.17

1

1.62

6112

107.994716

116.135721

126.086063

129.259305

I

Above

Hip

0

5701

32.72701947

0

0

1

1

0.35

nav

1

1870

72

NJBF000053545

9220 ATLANTIC AVE

Margate City

NJ

39.32034007

-74.51157318

RES3F

3002

21

E

1987

1987

3305

8

1

14121.51208

14121.51208

3507

NO

104.76

115.75

1

0.16

6106

113.365914

123.1914

132.882173

139.453496

I

Above

Flat

0

NaN

110.2528801

0

0

2

2

0.03

nav

1

589

73

NJBF000087545

12 WILSON AVE

Port Republic

NJ

39.53607688

-74.46237926

IND3

3002

17

E

1990

1990

3401

2

1

1721.502536

1721.502536

3507

NO

32.77

39.82

1

1.85

6106

112.52408

121.709016

131.308922

137.117012

I

Above

Gable

0

5701

36.29581307

0

1.1

1

1

0.03

nav

1

146

74

NJBF000063537

FRED & WASH, MARS

Ventnor City

NJ

39.34198192

-74.50057162

IND2

3002

NaN

ME

1990

1990

3401

1

1

1071.658668

1071.658668

3507

NO

13.31

24.37

1

-0.85

6106

113.298113

123.140676

132.844813

139.380323

I

Above

Gable

0

NaN

18.84262261

0

0

1

1

0.03

nav

1

2766

75

NJBF000098401

290 N MYRTLE ST

Hammonton

NJ

39.67553498

-74.78056863

AGR1

3002

18

NE

2001

2001

3401

1

2

6256.082064

6256.082064

3507

NO

18.62

28.06

1

2.22

6112

108.027347

116.183375

126.127888

129.320299

I

Above

Gable

0

5701

23.33910772

0

1.2

1

1

0.15

nav

1

1867

76

NJBF000067372

177 THOMPSONS LANE

Egg Harbor

NJ

39.352883

-74.703189

IND2

3002

16

ME

2002

2002

3401

3

1

2815.424598

2815.424598

3507

NO

56.15

61.91

1

-0.16

6106

109.785134

119.717197

129.515454

135.035245

I

Above

Flat

0

5701

59.02858244

0

0

1

1

0.03

nav

1

927

77

NJBF000086947

1314 WHITE HORSE PK

Egg Harbor City

NJ

39.52260519

-74.63968079

COM1

3002

NaN

ME

2014

2014

3401

1

1

14249.81597

14249.81597

3507

NO

14.15

20.2

1

2.48

6110

109.845021

119.115247

128.724006

133.738514

I

Above

Flat

0

NaN

17.17357067

0

0

1

1

1

nav

1

1912

78

NJBF000087554

7430 FOURTH AVENUE

Hamilton

NJ

39.53616832

-74.82814986

RES1

3005

17

NE

1930

1930

3101

1

1

2645.349468

2645.349468

3505

NO

23.55

33.19

3

7.63

6112

108.026649

116.973154

126.686446

130.109685

I

Above

Gable

0

5701

28.36948585

0

0

1

1

0.35

nav

1

624

79

NJBF000087549

7503 SMITH AVENUE

Hamilton

NJ

39.5361019

-74.83402395

RES1

3005

16

NE

1950

1950

3101

1

1

2516.419055

2516.419055

3505

NO

19.26

31.05

3

5.29

6112

107.983588

116.922563

126.635654

130.018687

I

Above

Gable

0

5701

25.15591973

0

0

1

1

0.35

nav

1

622

80

NJBF000088027

5800 DUERER STREET

Mullica

NJ

39.54746456

-74.6497497

RES1

3005

16

NE

1965

1965

3101

1

1

2089.842487

2089.842487

3507

NO

15.98

25.89

1

0.14

6112

109.676326

118.743177

128.391779

133.163263

I

Above

Gable

0

5701

20.93521022

0

0

1

1

0.35

nav

1

5489

81

NJBF000087074

1322 ORCHARD ROAD

Hamilton

NJ

39.52478617

-74.84367394

RES1

3005

16

NE

1972

1972

3101

1

1

2714.153995

2714.153995

3505

NO

12.24

18.64

3

-1.91

6112

107.946298

116.924886

126.630311

129.97558

I

Above

Gable

0

5701

15.44008616

0

0

1

1

0.35

nav

1

590

82

NJBF000087596

1544 STRAWBERRY STREET

Hamilton

NJ

39.53733256

-74.83106146

RES1

3005

17

NE

1987

1987

3101

1

1

1772.40784

1772.40784

3505

NO

11.38

16.7

3

-1.24

6112

108.001945

116.938833

126.652884

130.052988

I

Above

Gable

0

5701

14.0393187

0

0

1

1

0.35

nav

1

627

83

NJBF000087002

7304 SMITH AVENUE

Hamilton

NJ

39.52373536

-74.83141577

RES1

3005

16

NE

1999

1999

3101

1

1

1939.653621

1939.653621

3505

NO

8.87

17.66

3

-1.73

6112

108.037389

117.03968

126.744833

130.182036

I

Above

Gable

0

5701

13.2645104

0

0

1

1

0.35

nav

1

588

84

NJBF000087082

7312 STRAND AVENUE

Hamilton

NJ

39.52490167

-74.83825392

RES1

3005

17

NE

2006

2006

3101

2

1

1674.050741

1674.050741

3505

NO

38.78

49.09

3

8.66

6112

107.984664

116.970952

126.676665

130.055715

I

Above

Gable

0

5701

43.93759089

0

0

1

1

0.35

nav

1

591

85

NJBF000087143

7321 SMITH AVENUE

Hamilton

NJ

39.52575156

-74.82945332

RES1

3005

17

NE

2013

2013

3101

1

1

2135.294029

2135.294029

3505

NO

24.98

38.2

3

7.79

6109

108.045976

117.041594

126.747986

130.192958

I

Above

Gable

0

5701

31.59178059

0

1.1

1

1

0.03

nav

1

592

-
-../../../_images/ScatterMatrix.png -

Scatter matrix of sampled buildings.

-
-
-
-

Hand Calculation

-

Hand calculations of wind, flood, and combined losses are conducted using the -input building information and intensity measures for the sampled buildings. -The calculations are made for all the four hurricane categories:

-

hand_calc compares the hand-calculated loss ratios and the simulated -results which are in good agreement. The finite differences seen in the flood loss ratios -are due to the random sampling process in estimating the expected loss ratios.

-
-../../../_images/SimuVSHandCalc.png -

Hand-calculated results vs. simulated results.

-
-
-
-

Wind Loss by Building Class and Year

-

To understand the driving factors that influence the regional loss assessment results. -The 85 sampled buildings are grouped into five building classes and the average wind loss values -are computed (wind_loss_bt). Regardless of the hurricane category, concrete, steel, -and masonry buildings perform better than wood buildings and manufactured homes on average.

-
-../../../_images/WindLossBuildingType.png -

Average expected wind losses by building class.

-
-

To further investigate the influence of built year on the wind loss of wood buildings, -wind_loss_yr shows the estimated expected wind loss ratios by the year of built. -Coupled with the hurricane category effect, in the Category 5 hurricane, the built year does not -show as a driving factor, but in the other three scenarios, the wind losses are shown to be -related to the built year. The worst cases are seen in 1970s and 1980s, while the building in the -past two decades perform much better than the other groups. Note that this -comparison is made for the limited sample size in this verification study.

-
-../../../_images/WoodBuildingWindLoss.png -

Average expected wind losses of wood buildings by built year.

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/atlantic_city/uncertainty_quantification.html b/docs/common/testbeds/atlantic_city/uncertainty_quantification.html deleted file mode 100644 index ee371ba97..000000000 --- a/docs/common/testbeds/atlantic_city/uncertainty_quantification.html +++ /dev/null @@ -1,388 +0,0 @@ - - - - - - - - - - Uncertainty Quantification — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Uncertainty Quantification

-

Multiple sources of uncertainty are considered in this testbed including: the uncertainty in -asset representation, hazard characterization, and damage and loss assessment. For these uncertainty -sources, different strategies were implemented in the workflow to quantify their influence. THe following -sections will introduce the details about each component.

-
-

In Asset Representation

-

As discussed in Asset Representation, the HAZUS Hurricane Technical Manual differentiates -buildings based on asset attibutes for the subjected hazard type (wind or storm surge). These attributes -are the buildings properties or structure features that would influence the -resulting damage and loss of the asset under the given hazard. Among these key attributes, some are -determined by developed rulesets with more basic building information. These rules are based on the statistics -in the available data. Taking the shutters of assets that were built before 2000, the Human Subjects Data -indicates that roughly 45% of house owners were likely to apply shutters on some or all of their windows before a hurricane makes landfall. Accordingly, in the -asset representation (ruleset), a pre-2000 house has 45% probability to be assigned to have shutters, and 55% -probability to be assigned with no shutter. Note that the resulting HAZUS building type is deterministic for -each individual sample while the uncertainty induced by different possible attribute options are evaluted -via multiple random realizations. uq_rulesets summarizes the three building attributes whose values -are randomly generated in this testbed.

- - ----- - - - - - - - - - - - - - - - - - - - - -
Random sampling in the rulesets.

Building Attribute

Basic Attributes

Example sampling law

Second Water Resistance (SWR)

YearBuilt, RoofShape

IF YearBuiltNJDEP > 2000, RoofShape = Gable or Hip, SWR = yes (60%) and no (40%)

Roof Deck Attachment (RDA)

YearBuilt

IF YearBuilt <= 2000, RDA = A (50%) and B (50%)

Shutters

YearBuilt, Wind Bore Debris (WBD)

IF YearBuilt <= 2000, WBD = yes, shutters = yes (45%) and no (55%)

-
-
-

In Hazard Characterization

-

Given a specific category of hurricane, there are two different sources of uncertainty for site peak wind speed -and storm surge values: (1) the uncertainty induced by possible different storm tracks, storm radii, storm -translational speeds, central pressures, or handing angles (which is usually termed as epistemic uncertainty); -and (2) the inherent variation in observing the random events at the site (which is usually termed as aleatory -uncertainty). Both these two uncertainty sources can be taken into account for in the introduced workflow.

-

For the epistemic uncertainty, multiple scenarios can be simulated using the synthetic simulation methods as -introduced in Synthetic Storm Scenario. For instance, the linear analytical simulation -for the boundary layer winds ([Snaiki17a_], [Snaiki17b_]) can be performed with randomly sampled storm properties -(e.g., central pressure) to generate multiple realizations of peak wind speed that are possible at the given site. -These multiple realizations are then randomly sampled and used as the EDP in simulating the damage and loss -assessment (more details in the next section).

-

For the aleatory uncertainty, this workflow adapts a nearest-neighbors method to propagate uncertainty through the workflow, as -illustrated in nearestneighbors. The peak wind speed and storm surge values are simulated -on a prescribed grid (wind fields) or pre-selected save points (storm surge) (blue round dots), and for each selected asset location (red square dot), -the workflow randomly selects 5 samples of -the intensity measure (wind speed and storm surge) from the 4 nearest neighbors (yellow circles). Note this random -sampling is performed along with the multiple realizations from the epistemic uncertainty quantification, so the -two uncertainty sources are considered simultaneously.

-
-../../../_images/nn.png -

Nearest-neighbors method for sampling site hazard uncertainty.

-
-
-
-

In Damage and Loss Assessment

-

The testbed implemented pelicun (Probabilistic Estimation of Losses, Injuries, and Community resilience Under -Natural disasters) to quantify damage (damage states) and loss (in the form of decision variables, e.g., loss ratio). -Uncertainty from the hazard characterization step is first considered by the random sampling module in pelicun to -numerically sample the (joint) distribution of intensity measures (which are treated as engineering parameter -demands, EDPs in the HAZUS method). In specific, 1000 samples of combined wind speed and storm surge pairs are generated -for each asset in this testbed. Second, the corresponding damage and loss models are populated for each asset from HAZUS -based on the Asset Representation. As described -in Damage and Loss Estimation, the damage models are continuous functions (normal or lognormal distribution -functions) fit to the synthetic data by maximizing the likelihood of the observations assuming a Binomial distribution of -outcomes at each intensity level in the HAZUS database. Hence, at a given intensity level (a certain wind peed or storm -surge), the damage state and corresponding loss ratio of an asset follow probabilistic distributions, considering all -uncertainty in the key properties that can influence the building performance.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/lake_charles/index.html b/docs/common/testbeds/lake_charles/index.html deleted file mode 100644 index c65e838f4..000000000 --- a/docs/common/testbeds/lake_charles/index.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Lake Charles, LA — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Lake Charles, LA

-

[…]

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/asset_description.html b/docs/common/testbeds/memphis/asset_description.html deleted file mode 100644 index 0353c3801..000000000 --- a/docs/common/testbeds/memphis/asset_description.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Asset Description — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Asset Description

-

[…]

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/asset_representation.html b/docs/common/testbeds/memphis/asset_representation.html deleted file mode 100644 index 84e805e2f..000000000 --- a/docs/common/testbeds/memphis/asset_representation.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - - - Asset Representation — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Asset Representation

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/damage_and_loss.html b/docs/common/testbeds/memphis/damage_and_loss.html deleted file mode 100644 index 2c59002c8..000000000 --- a/docs/common/testbeds/memphis/damage_and_loss.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Damage and Loss Estimation — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Damage and Loss Estimation

-

[…]

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/future_refinements.html b/docs/common/testbeds/memphis/future_refinements.html deleted file mode 100644 index bb7ad2866..000000000 --- a/docs/common/testbeds/memphis/future_refinements.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Opportunity Areas for Future Refinements — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Opportunity Areas for Future Refinements
  • - - -
  • - - - View page source - - -
  • - -
- - -
-
-
-
- -
-

Opportunity Areas for Future Refinements

-

[…]

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/hazard_characterization.html b/docs/common/testbeds/memphis/hazard_characterization.html deleted file mode 100644 index c134d20fa..000000000 --- a/docs/common/testbeds/memphis/hazard_characterization.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Hazard Characterization — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Hazard Characterization

-

[…]

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/index.html b/docs/common/testbeds/memphis/index.html deleted file mode 100644 index 5170835c6..000000000 --- a/docs/common/testbeds/memphis/index.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - - - - Memphis, TN — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
- -
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/network_performance.html b/docs/common/testbeds/memphis/network_performance.html deleted file mode 100644 index 4ff10af6f..000000000 --- a/docs/common/testbeds/memphis/network_performance.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - - - Network Performance Assessment — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Network Performance Assessment

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/overview.html b/docs/common/testbeds/memphis/overview.html deleted file mode 100644 index 6c1f4916e..000000000 --- a/docs/common/testbeds/memphis/overview.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Overview — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Overview

-

[…]

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/sample_results.html b/docs/common/testbeds/memphis/sample_results.html deleted file mode 100644 index a90517c69..000000000 --- a/docs/common/testbeds/memphis/sample_results.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Sample Results — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Sample Results

-

[…]

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/memphis/uncertainty_quantification.html b/docs/common/testbeds/memphis/uncertainty_quantification.html deleted file mode 100644 index d7e45907d..000000000 --- a/docs/common/testbeds/memphis/uncertainty_quantification.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Uncertainty Quantification — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Uncertainty Quantification

-

[…]

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/asset_description.html b/docs/common/testbeds/sf_bay_area/asset_description.html deleted file mode 100644 index 5e127217f..000000000 --- a/docs/common/testbeds/sf_bay_area/asset_description.html +++ /dev/null @@ -1,472 +0,0 @@ - - - - - - - - - - Asset Description — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Asset Description

-

This study used a parcel-level inventory of buildings in the Bay -Area that was developed by UrbanSim ([Waddell02]) using -public resources such as the City and County of San Francisco’s -data portal ([DataSF20]) and tax assessor databases.

-

The raw database which includes 1.8 M San Francisco buildings were shared -in the collaboration with UrbanSim. The UrbanSim database includes two files:

-
    -
  1. Buildings File: a CSV file that contains building properties including total floor -area, number of stories, year built, building occupancy and parcel ID.

  2. -
  3. Parcels File: a CSV file including the latitude and longitude of each building defined -by the parcel ID.

  4. -
-

A parsing application was built to collect the mentioned building properties and from the -UrbanSim building files. The occupancy ID (in integer) was used to infer the occupancy -type and replacement cost per unit area (occupancy_map). The buildings with missing or invalid occupancy -ID, the building was mapped to the default occupancy type (i.e., residential) with average area of buildings -in the inventory.

- - ------ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mapping rules for building occupancy type and replacement cost.

Occupancy ID

Occupancy Class

Replacement Cost / SQFT

Contents Factor

1/2/3/12

Residential

137.5

0.5

4/14

Office

131.9

1.0

5

Hotel

137.3

0.5

6

School

142.1

1.3

7

Industrial

97.5

1.5

8

Industrial

86.0

1.5

9

Industrial

104.0

1.5

10/11/13

Retail

105.3

1.0

Default

Residential

137.5

0.5

-

The structure types were also mapped from the building occupancy types along with the year built and number of stories. -Unless the building was mapped to a single structure type, the structure type is considered random, in which case the mapped -structure types are equally likely. structure_map summarizes the structure type mapping.

- - ------ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mapping rules for structure type.

Year Built

Number of Stories

Occupancy

Mapped Structure Types

Older than 1900

Any

Any

Wood (W1) and Masonry (RM1, RM2, URM)

Newer than 1900

1~3

Residential

Wood (W1)

Newer than 1900

1~3

Comercial

Wood, Steel, Concrete, Reinforced Masonary (W1, S1, S2, C1, C2, C3, RM1, RM2)

Newer than 1900

1~3

Industrial

Steel, Concrete, and Reinforced Masonary (S1, S2, C1, C2, C3, RM1, RM2)

Newer than 1900

1~3

Other

Wood (W1)

Newer than 1900

4~7

Residential and Commercial

Wood, Steel, Concrete (W1, S1, S2, C1, C2)

Newer than 1900

4~7

Industrial

Steel, Concrete (S1, S2, C1, C2)

Newer than 1900

4~7

Other

Wood, Steel, Concrete (W1, S1, S2, C1, C2)

Newer than 1900

More than 7

Any

Steel and Concrete (S1, S2, C1, C2)

-

The available information about location -and building geometry were further refined by merging the UrbanSim -database with the publicly available Microsoft Building Footprint -data ([Microsoft20]) for the testbed area. These data were -used to populate two additional attributes, replacement cost and -structure type, based on a ruleset that considers local design -practice and real estate pricing. For further details about the -database and ruleset see [Elhadded19].

-
-
Waddell02
-

Waddell, P. (2002). UrbanSim: Modeling Urban Development for Land Use, Transportation, and Environmental Planning. J. Am. Planning Assoc. 68, 297–314. -doi: 10.1080/01944360208976274

-
-
DataSF20
-

DataSF (2020). Building and Infrastructure Databases. San Francisco, SF: DataSF.

-
-
Microsoft20
-

Microsoft (2020). Microsoft Building Footprint Database for the United States. Washington, DC. -https://www.microsoft.com/en-us/maps/building-footprints.

-
-
Elhadded19
-

Elhaddad, W., McKenna, F., Rynge, M., Lowe, J. B., Wang, C., and Zsarnoczay, A. (2019). -NHERI-SimCenter/WorkflowRegionalEarthquake: rWHALE (Version v1.1.0). http://doi.org/10.5281/zenodo.2554610

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/damage_and_loss.html b/docs/common/testbeds/sf_bay_area/damage_and_loss.html deleted file mode 100644 index 121d1e024..000000000 --- a/docs/common/testbeds/sf_bay_area/damage_and_loss.html +++ /dev/null @@ -1,424 +0,0 @@ - - - - - - - - - - Damage and Loss Estimation — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Damage and Loss Estimation

-

The building performance assessment was performed on a -story-level basis using PELICUN ([Zsarnóczay20]), where damage and losses are calculated with storylevel -fragility functions based on the peak story drift and -floor acceleration demands. The story-based damage and loss -fragility functions are derived from corresponding building-level -damage and loss functions from the HAZUS earthquake -model ([FEMA18]) based on the characteristic data for each -building (e.g., year of construction, structure type, occupancy -type). Specially, four major states included in this -testbed are Slight (DS1), Moderate (DS2), Extensive (DS3), -and Complete (DS4), and one None (DS0) damage -state. The four major damage states are defined seperately for the -structural and non-structural damages. More detailed -descriptions for the example W1 building are provided below. -The full descriptions can be found in the [FEMA18]. -Collapse safety limit states are evaluated directly from the -story drift demands, where a collapse of one or more stories is -considered as partial collapse of the entire building.

-
-

Note

-

W1: Wood Light Frame (Structural):

-

1. Slight: Small plaster or gypsum-board cracks at corners of door and -window openings and wall-ceiling intersections; small cracks in masonry chimneys and -masonry veneer.

-

2. Moderate: Large plaster or gypsum-board cracks at corners of door -and window openings; small diagonal cracks across shear wall panels exhibited by small -cracks in stucco and gypsum wall panels; large cracks in brick chimneys; toppling of tall -masonry chimneys.

-

3. Extensive: Large diagonal cracks across shear wall panels or large -cracks at plywood joints; permanent lateral movement of floors and roof; toppling of most -brick chimneys; cracks in foundations; splitting of wood sill plates and/or slippage of -structure over foundations; partial collapse of “room-over-garage” or other “soft-story” -configurations; small foundations cracks.

-

4. Complete: Structure may have large permanent lateral displacement, -may collapse, or be in imminent danger of collapse due to cripple wall failure or the failure -of the lateral load-resisting system; some structures may slip and fall off the foundations; -large foundation cracks. Approximately 3% of the total area of W1 buildings with Complete -damage is expected to be collapsed.

-
-
-

Note

-

Non-structural Damage (Partition Walls):

-

1. Slight: A few cracks are observed at intersections of walls and -ceilings and at corners of door openings.

-

2. Moderate: Larger and more extensive cracks requiring repair and -repainting; some partitions may require replacement of gypsum board or other finishes.

-

3. Extensive: Most of the partitions are cracked and a significant -portion may require replacement of finishes; some door frames in the partitions are also -damaged and require re-setting.

-

4. Complete: Most partition finish materials and framing may have to -be removed and replaced, damaged studs repaired, and walls refinished. Most door frames -may also have to be repaired and replaced.

-
-
-

Note

-

Non-structural Damage (Suspended Cellings):

-
    -
  1. Slight: : A few ceiling tiles have moved or fallen down.

  2. -
-

2. Moderate: Falling of tiles is more extensive; in addition, the ceiling -support framing (T-bars) has disconnected and/or buckled at a few locations; lenses have -fallen off some light fixtures and a few fixtures have fallen; localized repairs are necessary.

-

3. Extensive: The ceiling system exhibits extensive buckling, -disconnected T-bars and falling ceiling tiles; ceiling partially collapses at a few locations and -some light fixtures fall; repair typically involves removal of most or all ceiling tiles.

-

4. Complete: The ceiling system is buckled throughout and/or fallen -and requires complete replacement; many light fixtures fall.

-
-
-

Note

-

Non-structural Damage (Exterior Wall Panels):

-
    -
  1. Slight: : Slight movement of the panels, requiring realignment.

  2. -
-

2. Moderate: The movements are more extensive; connections of -panels to structural frame are damaged requiring further inspection and repairs; some -window frames may need realignment.

-

3. Extensive: Most of the panels are cracked or otherwise damaged -and misaligned, and most panel connections to the structural frame are damaged requiring -thorough review and repairs; a few panels fall or are in imminent danger of falling; some -window panes are broken and some pieces of glass have fallen.

-

4. Complete: Most panels are severely damaged, most connections -are broken or severely damaged, some panels have fallen and most are in imminent -danger of falling; extensive glass breakage and falling.

-
-
-

Note

-

Non-structural Damage (Electrical Mechanical Equipment, Piping, Ducts):

-

1. Slight: : The most vulnerable equipment (e.g., unanchored or -mounted on spring isolators) moves and damages attached piping or ducts.

-

2. Moderate: Movements are larger and damage is more extensive; -piping leaks occur at a few locations; elevator machinery and rails may require realignment.

-

3. Extensive: Equipment on spring isolators topples and falls; other -unanchored equipment slides or falls, breaking connections to piping and ducts; leaks -develop at many locations; anchored equipment indicate stretched bolts or strain at -anchorages.

-

4. Complete: Equipment is damaged by sliding, overturning or failure -of their supports and is not operable; piping is leaking at many locations; some pipe and -duct supports have failed, causing pipes and ducts to fall or hang down; elevator rails are -buckled or have broken supports and/or counterweights have derailed.

-
-

The story drift and floor accelerations from 25 non-linear analyses of each -building are used to define multivariate lognormal distributions -of peak drifts and accelerations for each story of the building, -and the dispersion in the drift and acceleration demands is -inflated by 0.22 to account for additional modeling uncertainties -not considered in the non-linear dynamic analyses.

-

Using the distributions of earthquake demands, and damage and loss -functions, PELICUN generates 20,000 realizations of damage and -losses for each building, and stores statistics of the resulting -performance data that are relevant for regional-scale evaluation. -The results are output as HDF5 (Hierarchical Data Format) files -that can be processed and visualized through MatLab, Python, -Jupyter notebooks, or converted to CSV format.

-
-
Zsarnóczay20
-

Zsarnóczay, A., and Deierlein, G. G. (2020). “PELICUN – A Computational Framework for Estimating Damage, Loss and Community Resilience,” -in Proceedings, 17th World Conference on Earthquake Engineering, (Sendai: WCEE).

-
-
FEMA18(1,2)
-

FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Earthquake Model Technical Manual, Federal Emergency Management Agency, Washington D.C.

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/example_outputs.html b/docs/common/testbeds/sf_bay_area/example_outputs.html deleted file mode 100644 index 373b23f7c..000000000 --- a/docs/common/testbeds/sf_bay_area/example_outputs.html +++ /dev/null @@ -1,443 +0,0 @@ - - - - - - - - - - Example Outputs — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Example Outputs

-
-

Damage State

-

This section summarizes the resulting expected damage states of the building -assets from the Hayward Earthquake. The expected damage state is computed as -the weighted average over the 20,000 PELICUN realizations each of which has a predicted -damage state metric, i.e., 0 (None), 1 (Slight), 2 (Moderate) , 3 (Extensive), -and 4 (Complete). fig-s-ds shows expected structural damages which have a -wide spectrum from nearly none damaged (in the South Bay regions) to Moderate/Extensive -damage (in the East Bay region). Recalling the example 2-story wood frame residential -building in lbl-testbed_SF_response_simulation, it has an expected damge state of -about 1.6 with a breakdown statics: 2.3% in None (DS0), 40.6% in Slight (DS1), 54.4% in -Moderate (DS3), and 2.7% in Extensive (DS4). And the building is very unlikely to collapse. -Referring to Damage and Loss Estimation, this building is likely to experience plaster or gypsum-board -cracks at corners of door and window openings; small diagonal cracks across shear wall -panels; or/and cracks in brick chimneys or toppling of tall masonry chimneys.

-
-../../../_images/ExpectedDSStruct.png -

Expected structural damage states from San Francisco testbed.

-
-

fig-ns-ds shows expected non-structural damages which tend to be -server if compared to the structural damage. For the building assets in the -South Bay regions, Slight to Moderate non-structural damages are likely. Buildings -located near the Hayward fault are likely to experience Moderate to Extensive -non-structural damages. The example wood frame building is expected to have a -Moderate damage state (DS = 2.0 with a probability of 64%). Detailed breakdown -statistics are plotted in fig-ds. THe building is likely to experience -the following potential damages: (1) cracks requiring repair and -repainting; some partitions may require replacement of gypsum board or other finishes, -(2) falling of tiles, (3) connections of exterior wall panels to structural frame -are damaged requiring further inspection and repairs, and (4) piping leaks occur at a few locations, -elevator machinery and rails may require realignment.

-
-../../../_images/ExpectedDSNonStruct.png -

Expected non-structural damage states from San Francisco testbed.

-
-
-../../../_images/ds.png -

Structural and non-structural damage states of the example wood frame (as introduced in lbl-testbed_SF_response_simulation).

-
-
-
-

Expected Loss Ratio

-

An example of the resulting losses calculated for the Mw 7.0 -Hayward scenario are shown in fig-loss_ratio_comp. The color shading -represents the loss ratios for each building, calculated as the -mean repair costs normalized by the building replacement -value. Also shown in the figure is a comparison to the loss -ratios reported in the USGS Mw 7.0 Haywired Earthquake -Scenario ([Hudnut18]). Exposure and losses in -the Haywired scenario were calculated using the HAZUS -software. While it is instructive to compare results between -the two studies, there are differences in the input data, scope -and goals of the studies which are important to keep in -mind. As the main purpose of the SimCenter testbed was -to assemble and exercise the computational workflow, the -models and results in the SimCenter study are preliminary, -based on readily available information and implemented by -a small team over a couple months. This contrasts with -the multi-year multi-investigator Haywired study, whose goal -is to inform earthquake planning and preparedness for the -San Francisco Bay Area.

-
-../../../_images/LossRatioComp.png -

Comparison of building loss ratios from San Francisco testbed - SimCenter (left), USGS-Haywired (right).

-
-

Both studies were based on Mw 7.0 Hayward fault ruptures -simulated using the SW4 software by the LLNL research group, -however, the ground motion time histories are different for the -two studies. Epicenters for the two earthquake scenarios are close -(East Oakland and San Leandro for Haywired and SimCenter, -respectively), but other rupture characteristics are different and -the SimCenter ground motions were simulated with more recent -versions of the SW4 engine and the USGS geophysical model -of the Bay Area. In general, the ground motions used in -the SimCenter study are less severe than those used in the -earlier Haywired study, and they are in better agreement with -expectations based on past earthquake data.

-

The Haywired study extends over an area including the -counties of Monterey, Sacramento, and Sonoma, whereas the -SimCenter testbed is limited to the central six counties from -Santa Clara to Marin. Due to the larger coverage, the Haywired -study had a larger total building population (3.04 M), but -the number of buildings in the six central counties in the -Haywired study (1.71 M) is comparable to the number in -the SimCenter database (1.84M). There are, however, large -differences in the total square footage (in the central six counties) -and inventory value (replacement values) between the building -exposure databases, which make comparisons of total losses -between the two studies questionable.

-

To reduce the influence of the differences in the building -exposure values in the two studies, the comparison is limited to -damage and loss ratios in the six central counties. The average loss -ratio over the entire building population is less in the SimCenter -testbed (~ 3% of replacement value) as compared to theHaywired -study (~ 5% of replacement value). Nevertheless, as shown in -fig-loss_ratio_comp, the geographical distribution of losses shows good -agreement between the two. The SimCenter study predicts a -larger ratio of non-structural to structural damage (7.5:1 vs. 4.5:1 -in the Haywired study) and considerably smaller fractions of the -building stock being collapsed (less than 0.01 vs. 0.8%) and redtagged -(0.1 vs. 10%). Accordingly, the proportion of buildings -that sustain minor or no damage is higher in the SimCenter -study compared to Haywired (58 vs. 49%). These results are -consistent with the less intense ground motions in the SimCenter -scenario, and they highlight the sensitivity of results of such -complex studies to inventory data, models for response, damage, -and losses, and the input ground motions.

-

An important distinction between the HAZUS-based -Haywired study and the SimCenter workflow simulation is -the level of resolution in the assessment and the propagation -of various sources of uncertainty throughout the simulation. -Whereas the HAZUS-based study aggregates building damage -and losses based on census track (zip code) data, the SimCenter -workflow has resolution down to the building parcel level, and -it can disaggregate losses within a building down to individual -components on each floor. This feature, coupled with a detailed -description of the probability distributions of damage and losses -for each building, can allow urban planners and policy makers -to query various possible outcomes–including the rare, but -catastrophic ones–of the earthquake scenario. High-resolution -results (see upper panels in fig-loss_ratio_comp) provide valuable data for -exercises in emergency response, and simulations of post-disaster -recovery. In addition, the SimCenter workflow and underlying -tools facilitate the combination of models with varying levels -of fidelity, where for example, performance for some buildings -can be determined using simplified HAZUS type loss functions, -while performance for other buildings can be determined using -the detailed non-linear structural analysis models and FEMA -P-58 component-based damage and loss functions. As such, the -high-resolution and multi-fidelity workflow simulations offer -increased opportunities to explore questions related to land use -planning and zoning, seismic design and retrofit requirements, -public policy and administrative initiatives, and other actions to -enhance community resilience.

-
-
Hudnut18
-

Hudnut, K. W., Wein, A. M., Cox, D. A., Porter, K. A., Johnson, L. A., Perry, S. C., et al. (2018). -The HayWired earthquake scenario – We can outsmart disaster, USGS, Fact Sheet 2018-3016. Virginia, VA: USGS. -doi: 10.3133/fs20183016

-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/feedback_request.html b/docs/common/testbeds/sf_bay_area/feedback_request.html deleted file mode 100644 index 58a5e362b..000000000 --- a/docs/common/testbeds/sf_bay_area/feedback_request.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - - - - - Feedback and Data Request — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Feedback and Data Request

-

If you have any feedback, data requests, or questions, please post on the Message Board on SimCenter Forum. -When creating a New Topic`it would be helpful if you could place an indication of your post in the `Subject area:

-
    -
  1. General feedback, e.g., FEEDBACK: Questions on the testbed.

  2. -
  3. Data requests, e.g., DATA: Request the sample data of the testbed.

  4. -
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/future_refinements.html b/docs/common/testbeds/sf_bay_area/future_refinements.html deleted file mode 100644 index 22e4cda7c..000000000 --- a/docs/common/testbeds/sf_bay_area/future_refinements.html +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - - - Opportunity Areas for Future Refinements — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Opportunity Areas for Future Refinements
  • - - -
  • - - - View page source - - -
  • - -
- - -
-
-
-
- -
-

Opportunity Areas for Future Refinements

-

This testbed and its backing workflows should be viewed as a sandbox and scaffold, -respectively, within which the community can explore different scenarios and develop -new capabilities. The following list itemizes some areas where contribution from the -community is especially welcome:

-
    -
  1. A number of approximations and assumptions were made in the generation of the building inventory. There is considerable opportunity to expand, enrich and improve upon -methodologies for automated inventory generation, particularly to generate other attributes necessary -as the workflow advances toward component level damage quantification.

  2. -
  3. The SimCenter aspires to incorporate increasing levels of fidelity in its characterization of hazards, -modeling of buildings (to support application of pressures/loads and structural analysis), and ability -to describe damage at the component level, with fault-trees that capture cascading damage sequences -resulting from breaches of the building envelope. Thus there is considerable need for community -research contributions such as libraries of fragilities, archetype building models, and catalogs -of high-fidelity hazard simulations. For instance, extensions to tall buildings would require further -expansion of the workflow to reliable and efficient methods that support multi-fidelity analysis with both -detailed finite element tall building models and MDOF models.

  4. -
  5. Currently the workflow calculates damage and monetary loss; coupling the workflow with other -social, societal or economic models, will provide opportunities to more robustly explore the -impacts of hazard events, mitigation investments and development decisions on community resilience. -The creation of techniques to automatically scrape and fuse data from the social, human and behavioral -sciences will ensure those datasets can be generated in a manner similar to those used for the -building inventory itself.

  6. -
-
-

Note

-

Community members who wish to contribute to the testbed in any of the above (or other) areas can -express their interest by completing this survey.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/hazard_characterization.html b/docs/common/testbeds/sf_bay_area/hazard_characterization.html deleted file mode 100644 index 683ac33a0..000000000 --- a/docs/common/testbeds/sf_bay_area/hazard_characterization.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - - - - - Hazard Characterization — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Hazard Characterization

-

The ground motions for the Mw 7.0 Hayward earthquake were -simulated by Rodgers et al. ([Rodgers19]) at the Lawrence Livermore -National Lab (LLNL) using the SW4 finite difference code -([Petersson17]). SW4 solves the elasto dynamic -equations of motion in the time domain for a 3D solid. -A 77 ~ 13 km rupture surface was projected onto the fault -geometry in the 3D geologic and seismic model for the Bay -Area ([USGS18]) with a hypocenter near the San Leandro -salient. Waveforms were sampled in three dimensions on a 2 -km grid over the 120 ~ 80 km surface of a 35 km deep solid -body. The resulting waveforms capture ground shaking reliably -over the 0–5 Hz frequency domain for sites with a characteristic -shear wave velocity above 500 m/s. The computations were run -using more than 8,000 nodes (~ 500,000 processors) on the Cori -Phase-II cluster ([NERSC20]).

-

The raw results at 2301 grid points were processed by the -SimCenter and converted to the JSON file format used by -our workflow applications. These data provide sets of three-component -seismograms for grid points spaced every 2 km -throughout the study region. The ground motions are assigned -to buildings using a nearest-neighbor search algorithm, where the -four nearest grid points are identified for each building and a set -of 25 seismograms are assigned by weighted random sampling of -the set of time histories from the nearest grid points. The weight -of each grid point is inversely proportional to its squared distance -from the building. pgaX and pgaY show the resulting -mean peak ground acceleration maps (in East-West and North-South directions) -based on the 25 ground motions at each site.

-
-../../../_images/PGA-X.png -

Peak ground acceleration (East-West direction) for the Mw 7.0 Hayward earthquake.

-
-
-../../../_images/PGA-Y.png -

Peak ground acceleration (North-South direction) for the Mw 7.0 Hayward earthquake.

-
-
-
Rodgers19
-

Rodgers, A. J., Petersson, N. A., Pitarka, A., McCallen, D. B., Sjogreen, B., and Abrahamson, N. (2019). -Broadband (0-5 Hz) Fully Deterministic 3D Ground-Motion Simulations of a Magnitude 7.0 Hayward Fault Earthquake: -Comparison with Empirical Ground-Motion Models and 3D Path and Site Effects from Source Normalized Intensities. -Seismol. Res. Lett. 90:17.

-
-
Petersson17
-

Petersson, N. A., and Sjogreen, B. (2017). SW4, version 2.0 [software], Computational Infrastructure of Geodynamics. -Switzerland: Zenodo.doi: 10.5281/zenodo.1045297

-
-
USGS18
-

USGS (2018). 3-D geologic and seismic velocity models of the San Francisco Bay region. Virginia, VA: USGS. -https://earthquake.usgs.gov/data/3dgeologic.

-
-
NERSC20
-

NERSC (2020). Cori Cray XC 40 Computer. Berkeley: National Energy Research Scientific Computing Center. -https://docs.nersc.gov/systems/cori/.

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/index.html b/docs/common/testbeds/sf_bay_area/index.html deleted file mode 100644 index ed7388716..000000000 --- a/docs/common/testbeds/sf_bay_area/index.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - - - San Francisco, CA — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

San Francisco, CA

-

Acknowledgements

-

The SimCenter was financially supported by the National Science Foundation under Grant CMMI-1612843. Any opinions, -findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect -the views of the National Science Foundation. We would like to acknowledge (1) the contributions and collaboration with many -faculty, post-doctoral researchers, students and staff who have contributed to the SimCenter’s work, and (2) the support and -close collaboration with DesignSafe, which facilitates access to high-performance computing and information technologies for -SimCenter tools.

- - ----- - - - - - - - - - - - - -
Documentation Version History

Version

Release Date

Update

1.0

05/2021

Initial release

-

Preface

-

This documentation is intended to introduce the implementation of the SimCenter’s earthquake -regional loss modeling workflow in the context of San Francisco, California.

-

The San Francisco Bay Area encompasses three large cities, San Francisco, Oakland and San Jose, which together with -the surrounding communities have a population of about 7.7 million people. The seismic hazard in the San Francisco Bay -Area is dominated by the San Andreas and Hayward faults that straddle the region. The San Andreas Fault is located just to -the west of San Francisco and is capable of a magnitude Mw 8 earthquake, such as the Mw 7.8 event that occurred in 1906. -The Hayward Fault, which runs up the eastern edge of the Bay Area, is capable of a magnitude Mw 7 earthquake, such as -the Mw 6.7 event that occurred in 1868. Recently, the USGS completed an earthquake scenario study for a Mw 7 event on -the Hayward fault, which provided an opportunity to contrast existing regional assessment methods with the SimCenter’s -computational workflow.

-

The SimCenter workflow tools were applied to assess the performance of 1.84 M buildings in the San Francisco Bay -Area due to a Mw 7.0 earthquake rupture on the Hayward fault. Probabilistic assessment of earthquake consequences with -building (parcel) level resolution at this scale is only feasible using high performance computing resources, which is facilitated by -SimCenter’s regional Workflow for Hazard and Loss Estimation (rWHALE, [Elhadded19]). The testbed focuses on -assessment of response, damage, repair costs, and repair times for all 1.84 M buildings in the simulation.

- -
-
Elhadded19
-

Elhaddad, W., McKenna, F., Rynge, M., Lowe, J. B., Wang, C., and Zsarnoczay, A. (2019). -NHERI-SimCenter/WorkflowRegionalEarthquake: rWHALE (Version v1.1.0). http://doi.org/10.5281/zenodo.2554610

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/overview.html b/docs/common/testbeds/sf_bay_area/overview.html deleted file mode 100644 index 047a61959..000000000 --- a/docs/common/testbeds/sf_bay_area/overview.html +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - - - - - Overview — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Overview

-

The San Francisco Bay Area encompasses three large cities, San Francisco, Oakland and San Jose, which together with -the surrounding communities have a population of about 7.7 million people and accomendate a well-defined metro area -with a blend of low-rise commercial (1-3 stories), industrial, high-rise hotels/casinos (over 20 stories), -and single/multi-family residences. The seismic hazard in the San Francisco Bay -Area is dominated by the San Andreas and Hayward faults that straddle the region. The San Andreas Fault is located just to -the west of San Francisco and is capable of a magnitude Mw 8 earthquake, such as the Mw 7.8 event that occurred in 1906. -The Hayward Fault, which runs up the eastern edge of the Bay Area, is capable of a magnitude Mw 7 earthquake, such as -the Mw 6.7 event that occurred in 1868.

-
-

Rationale

-

This testbed for regional earthquake risk assessment of San Francisco Bay Area under Hayward Earthquake:

-
    -
  1. One of its intents is to demonstrate the computational scaffolding upon which community developers can progressively contribute refinements that increase the fidelity and capacities of the backend regional resilience assessment workflow.

  2. -
  3. The computational demand of this testbed is on the order over \(10^5\) core hours (involving more than 40 M nonlinear time history analyses), which could help to test the scalability of the workflow and investigate potential optimizations.

  4. -
  5. In addition, this testbed exercises collecting and concatenate building information from various data sources.

  6. -
  7. During the course of developing this testbed, the USGS completed an earthquake scenario study for a Mw 7 event on the Hayward fault. Hence, this testbed also provides an opportunity to contrast existing regional assessment methods with the SimCenter’s computational workflow, based on which key limitations and future improvemnets could be identified.

  8. -
-
-
-

Capabilities and Supported Hazards

-

The testbed supports the transition from census-block-level loss projections to asset-level projections that -assess the damage to individual buildings under ground shaking. Supported building classes include residential, -commercial and industrial construction, critical facilities, and manufactured homes, constructed of wood, steel, -reinforced concrete and masonry. The earthquake hazard is represented by the simulated ground motions for the Mw 7.0 -Hayward earthquake ([Rodgers19]).

-
-
-

Current Implementation

-

For the initial implementation of the workflow, asset description adopts an augmented parcel approach -that enriches tax assessor data. Finite difference models are employed to simulate three-component seismograms. -In lieu of a structural analysis model, assets are assigned attributes associated with -various HAZUS-consistent building classifications. The story-based damage and loss fragility models are derived from -correspoinding building-level damage and loss functions from the HAZUS earthquake methodology ([FEMA18]). -This documentation specifically demonstrates the process of: (1) asset description, (2) hazard characterization, -(3) asset representation, and (4) damage and loss modeling. Sample results are presented to demonstrate the usage of -the workflow.

-
-
-

Available Inventories

-

Three different building inventories have been developed for the Atlantic County testbed and can be accessed on DesignSafe.

-

San Francisco Bay Area Inventory: Full inventory of 1.84 M buildings in San Francisoc Bay Area, -described based on a variety of data sources (fig-buildingClassSFBA).

-
-../../../_images/BuildingClass_sfba.png -

Geospatial visualization of subclasses of buildings in San Francisco Bay Area.

-
-

Alameda Inventory: To be added

-

San Francisco Tall Building Inventory: To be added

-

The following figures summarize characteristics of these inventories, including distribution by year built (fig-distBuiltYear), by occupancy (fig-occupancyType), -by number of stories (fig-numStory) and by primary construction material (fig-constrMaterial). -Notably, the inventories are typified by older vintages of construction (76% of the buildings were constructed -before 1980), with a dominance of low-rise (1-2 stories), residential, wood construction (approximately -93% of San Francisco Bay Area buildings). Steel and reinforced concrete constructions are more prevalent in downtown -San Francisco, Oakland, and San Jose.

-
-../../../_images/built_year_allset1.png -

Distribution of year built for buildings.

-
-
-../../../_images/occupancy_type_allset1.png -

Distribution of occupancy types.

-
-
-../../../_images/story_number_allset1.png -

Distribution of total story numbers for buildings.

-
-
-../../../_images/building_type_allset1.png -

Distribution of primary construction material types.

-
-
-
Rodgers19
-

Rodgers, A. J., Petersson, N. A., Pitarka, A., McCallen, D. B., Sjogreen, B., and Abrahamson, N. (2019). -Broadband (0-5 Hz) Fully Deterministic 3D Ground-Motion Simulations of a Magnitude 7.0 Hayward Fault Earthquake: -Comparison with Empirical Ground-Motion Models and 3D Path and Site Effects from Source Normalized Intensities. -Seismol. Res. Lett. 90:17.

-
-
FEMA18
-

FEMA (2018), HAZUS – Multi-hazard Loss Estimation Methodology 2.1, Earthquake Model Technical Manual, Federal Emergency Management Agency, Washington D.C.

-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/testbeds/sf_bay_area/uncertainty_quantification.html b/docs/common/testbeds/sf_bay_area/uncertainty_quantification.html deleted file mode 100644 index 0c5d9d823..000000000 --- a/docs/common/testbeds/sf_bay_area/uncertainty_quantification.html +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - - - - - Uncertainty Quantification — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Uncertainty Quantification

-

Multiple sources of uncertainty are considered in this testbed including: the uncertainty in -asset representation, hazard characterization, and damage and loss assessment. For these uncertainty -sources, different strategies were implemented in the workflow to quantify their influence. THe following -sections will introduce the details about each component.

-
-

In Hazard Characterization

-

Given a specific category of hurricane, there are two different sources of uncertainty for site peak wind speed -and storm surge values: (1) the uncertainty induced by possible different epicentors, rupture propogations, soil velocity models, -or local soil properties (which is usually termed as epistemic uncertainty); -and (2) the inherent variation in observing the random events at the site (which is usually termed as aleatory -uncertainty). Both these two uncertainty sources can be taken into account for in the introduced workflow.

-

For the epistemic uncertainty, multiple scenarios can be simulated for a given earthquake scenario. For the aleatory uncertainty, -this workflow adapts a nearest-neighbors method to propagate uncertainty through the workflow, as -illustrated in nearestneighbors. The ground motions are processed from SW4 -on a prescribed grid, and for each selected asset location (red square dot), the workflow randomly selects 25 samples of -the ground motions from the 4 nearest neighbors (yellow circles). Note this random -sampling is performed along with the multiple realizations from the epistemic uncertainty quantification, so the -two uncertainty sources are considered simultaneously.

-
-../../../_images/nn1.png -

Nearest-neighbors method for sampling site hazard uncertainty.

-
-
-
-

In Structural Response Simulation

-

The approximations and uncertainties in the structural model and behavior are considered by treating the -initial stiffness and the damping ratio as random variables with a 0.1 coefficient of variation. -These uncertainties are propagated through the analysis using different realizations of the stiffness -and damping parameters for each of the 25 non-linear dynamic analyses for each building.

-
-
-

In Damage and Loss Assessment

-

The testbed implemented pelicun (Probabilistic Estimation of Losses, Injuries, and Community resilience Under -Natural disasters) to quantify damage (damage states) and loss (in the form of decision variables, e.g., loss ratio). -The dispersion in the simulated drift and acceleration demands is inflated by 0.22 to account for additional modeling uncertainties -not considered in the non-linear dynamic analyses. In specific, 20,000 realizations of damage and -losses for each building. As described in Damage and Loss Estimation, the damage models are continuous functions (lognormal distribution -functions) conditional on EDP. Hence, the damage state and corresponding loss ratio of an asset follow probabilistic distributions, considering all -uncertainty as discussed above that can influence the building performance.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/about/HazardSimulation/about.html b/docs/common/user_manual/about/HazardSimulation/about.html deleted file mode 100644 index fc0243043..000000000 --- a/docs/common/user_manual/about/HazardSimulation/about.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - About — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

About

-

This is an open-source research application, pelicun Github page, released under a BSD clause 2 license, Copyright and License. The pelicun library can be used to simulate regional ground motion intensities given user-defined earthquake scenarios. Users can specify artificial earthquake sources (e.g., point sources) or select from faults in earthquake forecast models (e.g., UCERF3). Users can also specify the site soil velocities in addition to using the default database in |opensha link|. pelicun library provides different options for ground motion prediction equations and correlation models to compute spatially correlated intensity measures at user-defined site locations. Users can use pelicun library to generate multiple realizations to represent the uncertainty from earthquake sources and soil properties. If the user provide valid account information on |peer nga link|, pelicun library will download and parse ground motion accelerograms for running time history analyses.

-

This is Version 2.5.0 of the tool. Users are encouraged to comment on what additional features and capabilities they would like to see in this application. These requests and feedback can be submitted through an anonymous user survey. We greatly appreciate any input you have. If there are features you want, chances are many of your colleagues also would benefit from them. Users are encouraged to review the lbl-requirements to see what features are planned for this application.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/about/pelicun/about.html b/docs/common/user_manual/about/pelicun/about.html deleted file mode 100644 index c137ef230..000000000 --- a/docs/common/user_manual/about/pelicun/about.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - 1. About — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

1. About

-

pelicun is an open-source library (pelicun Github page) released under a 3-Clause BSD license (see Copyright and License). The pelicun library can be used to quantify losses from an earthquake or hurricane scenario in the form of decision variables (DVs). This functionality is typically utilized for performance-based engineering and regional natural hazard risk assessment. This library can help you in several steps of performance assessment:

-
    -
  • Describe the joint distribution of asset response. The response of a structure or other type of asset to a natural hazard event is typically described by so-called engineering demand parameters (EDPs). pelicun provides various options to characterize the distribution of EDPs. It can calibrate a multivariate distribution that describes the joint distribution of EDPs if raw EDP data is available. Users can control the type of each marginal distribution, apply truncation limits to consider collapses, and censor part of the data to consider detection limits in their analysis. Alternatively, you can use raw EDP data as-is without resampling from a fitted distribution.

  • -
  • Define the performance model of an asset. The fragility and consequence functions from the first two editions of FEMA P58 and the HAZUS earthquake and hurricane wind and storm surge models for buildings are provided with pelicun. This facilitates the creation of performance models without having to collect and provide component descriptions and corresponding fragility and consequence functions. An auto-population interface encourages researchers to develop and share rulesets that automate the performance-model definition based on the available building information. Example scripts for such auto-population are also provided with the tool.

  • -
  • Simulate asset damage. Given the EDP samples, and the performance model, pelicun efficiently simulates the damages in each component of the asset and identifies the proportion of realizations that resulted in collapse.

  • -
  • Estimate the consequences of damage. Using information about collapse and component damages, the following consequences can be estimated with pelicun: repair cost and time, unsafe placarding (red tag), injuries of various severity and fatalities.

  • -
-

The User Guide (Section 2) provides more details about the usage of pelicun, while the Background section in the Technical Manual (Section 1) explains the theoretical background of the various options that are available in the tool.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/bugs.html b/docs/common/user_manual/bugs.html deleted file mode 100644 index f817749e9..000000000 --- a/docs/common/user_manual/bugs.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - - - 5. Bugs & Feature Requests — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

5. Bugs & Feature Requests

-

If you find bugs, have feature requests, or questions about how to install or use the application please post on the Message Board. -To avoid duplication try the Search feature before creating a New Topic. When creating a New Topic to report a bug or new feature request it would be helpful if you could place in the Subject area, as shown in Fig. 5.1, an indication of what the post is about:

-
-
    -
  1. BUG, for bugs, i.e. BUG: Program crashes when starting

  2. -
  3. FEATURE, for new feature requests, i.e. FEATURE: Incorporate OpenSeesPy

  4. -
-
-
-../../_images/bugReport.png -

Fig. 5.1 Example of submitting a bug report to message board.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/examples/pelicun/examples.html b/docs/common/user_manual/examples/pelicun/examples.html deleted file mode 100644 index 48e8a076d..000000000 --- a/docs/common/user_manual/examples/pelicun/examples.html +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - Examples — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

Examples

-

Example text

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/installation/pelicun/installation.html b/docs/common/user_manual/installation/pelicun/installation.html deleted file mode 100644 index 73119648b..000000000 --- a/docs/common/user_manual/installation/pelicun/installation.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - - - - - 1. Installation — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

1. Installation

-

pelicun is available for Python 3.6+ at the Python Package Index (PyPI). You can install it using pip.

-

On Windows:

-
pip install pelicun
-
-
-

On a Mac or Unix systems, to make sure you install pelicun under python 3:

-
python3 -m pip install pelicun
-
-
-

If you have several Python interpreters on your computer, replace python3 in the above command with the location of the Python executable that belongs to the interpreter you would like to use. For example (assuming your executable is C:/Python37/python.exe):

-
C:/Python37/python.exe -m pip install pelicun
-
-
-
-

1.1. Dependencies

-

The following packages are required for pelicun. They are automatically installed (or upgraded if necessary) when you use pip to install pelicun.

- ---- - - - - - - - - - - - - - - - - - - - - - - - - - -

package

minimum version

numpy

1.19

scipy

1.5

pandas

1.1

tables

h5py

xlrd

-
-
-

1.2. Staying up to date

-

When a new version is released, you can use pip to upgrade your pelicun library:

-
pip install pelicun --upgrade
-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/troubleshooting/pelicun/troubleshooting.html b/docs/common/user_manual/troubleshooting/pelicun/troubleshooting.html deleted file mode 100644 index 82f9a9179..000000000 --- a/docs/common/user_manual/troubleshooting/pelicun/troubleshooting.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - - - - - 3. Troubleshooting — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

3. Troubleshooting

-

If you experience problems please report them following our guidance in Section 5.

-

The problems commonly encountered by users will be listed here.

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/usage/pelicun/DL_data.html b/docs/common/user_manual/usage/pelicun/DL_data.html deleted file mode 100644 index c9b7de160..000000000 --- a/docs/common/user_manual/usage/pelicun/DL_data.html +++ /dev/null @@ -1,611 +0,0 @@ - - - - - - - - - - 2.4. Damage and Loss Model Parameters — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.4. Damage and Loss Model Parameters

-

Parameters of several widely used damage and loss models are bundled with pelicun and stored in the resources folder in HDF5 file format. Each HDF5 file can be converted into a series of JSON files using the export_DB tool provided with pelicun (see :numref:blb). Working with JSON files makes it easier to edit and extend the existing databases. Pelicun recognizes both file formats.

-
-

2.4.1. Databases

-
-
-
FEMA P58 1st Edition
-

The FEMA_P58_1st_ed.hdf database includes the fragility functions provided with the first edition of FEMA P58. It is based on the XML files included with the PACT tool and Excel spreadsheets provided as part of Volume 3 of FEMA P58. All of the sources used to generate this database are available under resources/data_sources.

-
-
FEMA P58 2nd Edition
-

The FEMA_P58_2nd_ed.hdf database includes the updated fragility functions provided with the second edition of FEMA P58. This is the default database for pelciun damage and loss calculations. It is based on the XML files included with the PACT tool and Excel spreadsheets provided as part of Volume 3 of FEMA P58. All of the sources used to generate this database are available under resources/data_sources.

-
-
HAZUS Earthquake Model
-

There are three databases provided based on the HAZUS earthquake model. The HAZUS_MH_2.1_EQ database contains fragility and consequence functions controlled by building level EDPs (i.e., peak drift and peak acceleration). The damage model is described in detail in Section 5.4.2, while the loss models are described in sections 11.2 and 12.2 in version 4.2 of the Hazus Earthquake Technical Manual. Using these models requires information about the peak roof drift and the peak roof acceleration.

-

The HAZUS_MH_2.1_EQ_eqv_PGA database contains fragility and consequence functions controlled by Peak Ground Acceleration only. This allows for estimating ground shaking impact without performing response simulation. The equivalent PGA-based damage models are described in detail in Section 5.4.3 in version 4.2 of the Hazus Earthquake Technical Manual. The loss models in this database are identical to those in the previously mentioned one.

-

The HAZUS_MH_2.1_EQ_story database contains fragility and consequence functions controlled by story-level EDPs. This is an experimental database that was derived based on the building-level EDP damage models in Hazus. The story-level damage model provides higher resolution information about building damage, but requires higher resolution building response data. The loss models in this database are based on the loss models in the previous databases. They have been calibrated to provide the same building-level losses as the Hazus loss models.

-

The data used to generate the Hazus earthquake damage and loss files is available under resources/data_sources/HAZUS_MH_2.1_EQ_*/

-
-
HAZUS Hurricane Model
-

The HAZUS_MH_2.1_HU database contains fragility functions controlled by Peak Wind Gust speed and corresponding consequence functions for loss ratio. The models were fitted to damage and loss data used within the Hazus framework. The models in pelicun are different from those in Hazus. Hazus uses an uncoupled approach for damage and losses. A series of data points define the fragility and consequence functions with linear interpolation used in-between the available points. That data is described in sections 5.6 and 8.2 in version 4.2 of the Hazus Hurricane Technical Manual. Note that the raw data is not provided in the Technical Manual, but it is available in the database that comnes with the Hazus software.

-

Based on the raw data from Hazus, we fitted a damage model that assumes fragility functions have either a normal or a lognormal CDF format. Fitting was performed using a maximum likelihood approach and points above 200 mph wind speed were discarded to avoid bias due to the substantial sampling error in those results. The loss model in this database is deterministic - it assumes a constant loss ratio for each damage state. The loss ratios were fitted to Hazus loss data. The solution in pelicun provides a coupled damage and loss model for hurricane damage and loss assessment.

-

The data used to generate the Hazus hurricane damage and loss files is available under resources/data_sources/HAZUS_MH_2.1_HU

-
-
-
-
-
-

2.4.2. Data File Format

-
-

The sample file below shows the organization of damage and loss model data in the JSON files used in pelicun.

-
{
-  "Name": "Bolted shear tab gravity connections",
-  "QuantityUnit": [
-    1.0,
-    "EA"
-  ],
-  "Directional": true,
-  "Correlated": false,
-  "EDP": {
-    "Type": "Story Drift Ratio",
-    "Unit": [
-      1.0,
-      "ea"
-    ],
-    "Offset": 0
-  },
-  "GeneralInformation": {
-    "ID": "B1031.001",
-    "Description": "Costing is on a per connection basis.  Costing does not include fireproofing removal or reapplication cost.",
-    "Author": "Greg Deierlein",
-    "Official": true,
-    "DateCreated": "2019-02-19T17:48:25.4980925-08:00",
-    "Approved": true,
-    "Incomplete": true,
-    "Notes": "None"
-  },
-  "Ratings": {
-    "DataQuality": "Superior",
-    "DataRelevance": "Superior",
-    "Documentation": "Superior",
-    "Rationality": "Superior"
-  },
-  "DSGroups": [
-    {
-      "MedianEDP": "0.04",
-      "Beta": "0.4",
-      "CurveType": "LogNormal",
-      "DSGroupType": "MutuallyExclusive",
-      "DamageStates": [
-        {
-          "Weight": 0.95,
-          "LongLeadTime": 0.0,
-          "Consequences": {
-            "RedTag": {
-              "Amount": 0.0,
-              "Beta": 0.0,
-              "CurveType": "Normal",
-              "Bounds": [
-                0.0,
-                1.0
-              ]
-            },
-            "ReconstructionCost": {
-              "Amount": [
-                "U",
-                "n"
-              ],
-              "Quantity": [
-                5.0,
-                20.0
-              ],
-              "CurveType": "LogNormal",
-              "Beta": 0.25,
-              "Bounds": [
-                0.0,
-                "None"
-              ]
-            },
-            "ReconstructionTime": {
-              "Amount": [
-                "U",
-                "n"
-              ],
-              "Quantity": [
-                5.0,
-                20.0
-              ],
-              "CurveType": "LogNormal",
-              "Beta": 0.3536,
-              "Bounds": [
-                0.0,
-                "None"
-              ]
-            }
-          },
-          "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld.  Damage in field is either obscured or deemed to not warrant repair.  No repair conducted.",
-          "RepairMeasures": "Careful inspection and welded repair to any cracks and possible replacement of shear tab if bolt hole deformations are excessive (possible for deeper 6-bolt or deeper shear tabs).  Field condition is deemed to not warrant repair by field observation.  This Damage State is Mutually Exclusive with DS2.  See fragility DS1 and DS2 probabilities.",
-          "DamageImageName": "B1031.001-DS1-1.jpg"
-        },
-        {
-          "Weight": 0.05,
-          "LongLeadTime": 0.0,
-          "Consequences": {
-            "RedTag": {
-              "Amount": 0.0,
-              "Beta": 0.0,
-              "CurveType": "Normal",
-              "Bounds": [
-                0.0,
-                1.0
-              ]
-            },
-            "ReconstructionCost": {
-              "Amount": [
-                "16536.0",
-                "10176.0"
-              ],
-              "Quantity": [
-                5.0,
-                20.0
-              ],
-              "CurveType": "Normal",
-              "Beta": 0.3706,
-              "Bounds": [
-                0.0,
-                "None"
-              ]
-            },
-            "ReconstructionTime": {
-              "Amount": [
-                "16.0497",
-                "9.8767"
-              ],
-              "Quantity": [
-                5.0,
-                20.0
-              ],
-              "CurveType": "Normal",
-              "Beta": 0.447,
-              "Bounds": [
-                0.0,
-                "None"
-              ]
-            }
-          },
-          "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. ",
-          "RepairMeasures": "Careful inspection and welded repair to any cracks and possible replacement of shear tab if bolt hole deformations are excessive (possible for deeper 6-bolt or deeper shear tabs). ",
-          "DamageImageName": "B1031.001-DS1-1.jpg"
-        }
-      ]
-    },
-    {
-      "MedianEDP": "0.08",
-      "Beta": "0.4",
-      "CurveType": "LogNormal",
-      "DSGroupType": "Single",
-      "DamageStates": [
-        {
-          "Weight": 1.0,
-          "LongLeadTime": 0.0,
-          "Consequences": {
-            "RedTag": {
-              "Amount": 0.2,
-              "Beta": 0.5,
-              "CurveType": "Normal",
-              "Bounds": [
-                0.0,
-                1.0
-              ]
-            },
-            "ReconstructionCost": {
-              "Amount": [
-                "15564.0",
-                "11024.5"
-              ],
-              "Quantity": [
-                5.0,
-                20.0
-              ],
-              "CurveType": "Normal",
-              "Beta": 0.3789,
-              "Bounds": [
-                0.0,
-                "None"
-              ]
-            },
-            "ReconstructionTime": {
-              "Amount": [
-                "15.1062",
-                "10.7002"
-              ],
-              "Quantity": [
-                5.0,
-                20.0
-              ],
-              "CurveType": "Normal",
-              "Beta": 0.4539,
-              "Bounds": [
-                0.0,
-                "None"
-              ]
-            }
-          },
-          "Description": "Partial tearing of shear tab and possibility of bolt shear failure (6-bolt or deeper connections).",
-          "RepairMeasures": "Repairs will include either welded repair of shear tab or possible complete replacement of shear tab and installation of new bolts.  Repairs may require shoring of beam.",
-          "DamageImageName": "B1031.001-DS2-1.jpg"
-        }
-      ]
-    },
-    {
-      "MedianEDP": "0.11",
-      "Beta": "0.4",
-      "CurveType": "LogNormal",
-      "DSGroupType": "Single",
-      "DamageStates": [
-        {
-          "Weight": 1.0,
-          "LongLeadTime": 0.0,
-          "Consequences": {
-            "RedTag": {
-              "Amount": 0.1,
-              "Beta": 0.5,
-              "CurveType": "Normal",
-              "Bounds": [
-                0.0,
-                1.0
-              ]
-            },
-            "ReconstructionCost": {
-              "Amount": [
-                "15264.0",
-                "10812.0"
-              ],
-              "Quantity": [
-                5.0,
-                20.0
-              ],
-              "CurveType": "Normal",
-              "Beta": 0.3836,
-              "Bounds": [
-                0.0,
-                "None"
-              ]
-            },
-            "ReconstructionTime": {
-              "Amount": [
-                "14.8151",
-                "10.494"
-              ],
-              "Quantity": [
-                5.0,
-                20.0
-              ],
-              "CurveType": "Normal",
-              "Beta": 0.4579,
-              "Bounds": [
-                0.0,
-                "None"
-              ]
-            }
-          },
-          "Description": "Complete separation of shear tab, close to complete loss of vertical load resistance. ",
-          "RepairMeasures": "Repair will include complete replacement of shear tab and installation of new bolts. Repairs will require shoring of beam.",
-          "DamageImageName": "B1031.001-DS3-1.jpg"
-        }
-      ]
-    }
-  ]
-}
-
-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/usage/pelicun/config.html b/docs/common/user_manual/usage/pelicun/config.html deleted file mode 100644 index 4e924b8aa..000000000 --- a/docs/common/user_manual/usage/pelicun/config.html +++ /dev/null @@ -1,646 +0,0 @@ - - - - - - - - - - 2.2. Configuration File — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.2. Configuration File

-

Pelicun uses two input files to set up the damage and loss calculation. The Configuration File defines the parameters of the calculation, while the Response Data File (Section 2.3) defines the demand on the structure through EDP (or IM) values. The information in the configuration file is stored in JSON format. Below we show a sample configuration file and explain the various settings available.

-
{
-    "GeneralInformation": {
-            "PlanArea": 100.0,
-            "NumberOfStories": 1,
-            "units": {
-                "force": "N",
-                "length": "m",
-                "temperature": "C",
-                "time": "sec"
-            }
-        },
-    "DamageAndLoss":{
-        "_method": "FEMA P58",
-        "ResponseModel":{
-            "ResponseDescription": {
-                "EDP_Distribution": "lognormal",
-                "BasisOfEstimate": "all results",
-                "Realizations": "2000",
-                "CoupledAssessment": false
-            },
-            "DetectionLimits": {
-                "PID": "0.15",
-                "PFA": ""
-            },
-            "AdditionalUncertainty": {
-                "GroundMotion": "0.05",
-                "Modeling": "0.35"
-            }
-        },
-        "DamageModel":{
-            "IrrepairableResidualDrift":{
-                "YieldDriftRatio":"",
-                "Median": "",
-                "Beta": ""
-            },
-            "CollapseProbability": {
-                "Approach": "estimated",
-                "PrescribedValue": "",
-                "BasisOfEstimate": "sampled EDP"
-            },
-            "CollapseLimits":{
-                "PID": "0.15",
-                "PFA": ""
-            }
-        },
-        "LossModel":{
-            "ReplacementCost": "1000000",
-            "ReplacementTime": "180",
-            "DecisionVariables": {
-                "Injuries": true,
-                "ReconstructionCost": true,
-                "ReconstructionTime": true,
-                "RedTag": true
-            },
-            "Inhabitants": {
-                "OccupancyType": "Multi-Unit Residential",
-                "PeakPopulation": "0, 2",
-                "PopulationDataFile": ""
-            },
-        },
-        "Dependencies":{
-            "CostAndTime": false,
-            "Fragilities": "btw. Damage States",
-            "Injuries": "Independent",
-            "InjurySeverities": false,
-            "Quantities": "Independent",
-            "ReconstructionCosts": "Independent",
-            "ReconstructionTimes": "Independent",
-            "RedTagProbabilities": "Independent"
-        },
-        "ComponentDataFolder": "",
-        "Components": {
-            "B1011.001a":[
-                {
-                    "location": "1",
-                    "direction": "1",
-                    "median_quantity": "50 20 30",
-                    "distribution":"normal",
-                    "cov": "0.1",
-                    "unit": "ft",
-                },
-                {
-                    "location": "1",
-                    "direction": "2",
-                    "median_quantity": "100 40 60",
-                    "distribution":"normal",
-                    "cov": "0.1",
-                    "unit": "ft",
-                }
-            ],
-            "B2012.002":[
-                {
-                    "location": "all",
-                    "direction": "all",
-                    "median_quantity": "2 1 1 2",
-                    "distribution":"lognormal",
-                    "cov": "0.3",
-                    "unit": "ea",
-                }
-            ]
-        },
-        "CollapseModes": [
-            {
-                "affected_area": "1.0, 1.0",
-                "injuries": "0.1, 0.9",
-                "name": "complete",
-                "weight": "0.2"
-            },
-            {
-                "affected_area": "1.0, 0.2",
-                "injuries": "0.4, 0.5",
-                "name": "partial",
-                "weight": "0.8"
-            }
-        ]
-    }
-}
-
-
-
-

2.2.1. General Information

-

The General Information part of the file provides basic information about the structure and specifies the units for the analysis. The length unit specified here defines the units for the inputs, including those for areas, and accelerations. For example, if the length unit is set to m, pelicun will assume that the plan area is provided in m2 and the floor accelerations in the EDP file are provided in m/s2.

-
-
-

2.2.2. Damage And Loss

-

This part contains the damage and loss calculation settings broken into several sub-sections for easier navigation. The _method identifies the type of assessment to perform, FEMA P58 and HAZUS MH are available in the current version.

-
-

2.2.2.1. Response Model

-

The response model specifies how the raw EDP data is handled in the calculation. The following settings are available:

-
-
-
EDP_distribution
-

Specifies the approach to describing the distribution of EDPs. If empirical is selected, the raw EDPs are kept as is and resampled during the assessment. The lognormal setting fits a multivariate lognormal distribution to the EDPs. The truncated lognormal setting can be used to set a truncated multivariate lognormal distribution to the non-collapse results by setting the Basis (the next setting) appropriately.

-
-
BasisOfEstimate
-

Specifies the basis of the EDP distribution. The all results setting uses all samples, while the non-collapse results removes the samples that have EDPs beyond the collapse limits (see in a later setting).

-
-
Realizations
-

The number of EDP and corresponding damage and loss realizations to generate. Depending on the complexity of the model, a thousand realizations might be sufficient to capture central tendencies. A much larger number is required to get appropriate estimates of the dispersion of results. If the EDP distribution is set to empirical, the EDP realizations are sampled from the set of raw EDP values with replacement. If the EDP distribution is set to lognormal or truncated lognormal, the samples are generated from the distribution that is fit to the raw EDP values.

-
-
CoupledAssessment
-

If set to true, the EDPs are used as-is and not resampled.

-
-
Additional Uncertainty
-

Ground motion and Model uncertainty as per FEMA P58. The prescribed logarithmic standard deviation values are added to the dispersion of EDPs to arrive at the description of uncertain building response.

-
-
Detection Limits
-

These limits correspond to the maximum possible values that the response history analysis can provide. While peak interstory drifts will certainly have an upper limit, peak floor acceleration will not necessarily require such a setting. Leaving any of the fields empty corresponds to unlimited confidence in the simulation results.

-

Note: these limits will be used to consider EDP data as a set of censored samples when fitting the multivariate distribution set under Response Description. If the EDP distribution is set to empirical, this setting has no effect.

-
-
-
-
-
-

2.2.2.2. Damage Model

-

The damage model specifies how damages are calculated. The following settings are available:

-
-
-
Irreparable Residual Drift
-

Describes the limiting residual drift as a random variable with a lognormal distribution. See Figure 2-5 and Section 7.6 in FEMA P58 for details. The prescribed yield drift ratio is used to estimate residual drifts from peak interstory drifts per Section 5.4 in FEMA P58. This is only needed if no reliable residual drifts are available from the simulation. Considering the large uncertainty in estimated residual drift values, it is recommended to consider using the peak interstory drift as a proxy even if it would be numerically possible to obtain residual drift values.

-
-
Collapse Probability
-
-
Approach
-

Specifies if the collapse probability shall be estimated from EDP samples (estimated), or prescribed by the user (prescribed).

-
-
Prescribed value
-

If the prescribed approach is selected above, you can specify the probability of collapse here.

-
-
Basis
-

If the estimated approach is selected above, you can specify the basis of collapse probability estimation here. sampled EDP corresponds to using the (re)sampled EDPs, while raw EDP corresponds to using the EDP inputs to evaluate the proportion above the collapse limits to get the collapse probability.

-
-
-
-
Collapse Limits
-

If the Approach under Collapse Probability is set to estimated, the collapse of the building in each realization is inferred from the magnitude of EDPs. The collapse limits describe the EDP value beyond which the building is considered collapsed. Note that collapse limits might be beyond the detection limits (although that is generally not a good idea) and certain EDPs might not have collapse limits associated with them (e.g. PFA).

-
-
-
-
-
-

2.2.2.3. Loss Model

-

The loss model specifies how the consequences of damages are calculated. The following settings are available:

-
-
-
Replacement Cost and Time
-

The cost (in the currency used to describe repair costs, typically US dollars) and the time (in days or workerdays depending on the method used) it takes to replace the building.

-
-
Decision variables of interest
-

These switches allow the user to pick the decision variables of interest and save computation time and storage space by only focusing on those.

-
-
Inhabitants
-
-
Occupancy Type
-

The type of occupancy is used to describe the temporal distribution of the inhabitants.

-
-
Peak Population
-

The maximum number of people present at each floor of the building. If a single value is provided, it is divided among the floors. If a list of values is provided, each is assigned to the corresponding floor in the buildng. The example shows a house with no persons on the first floor and 2 persons on its second floor.

-
-
Custom distribution
-

By default, the calculations are performed using population and fragility data bundled with pelicun. Each data source can be overridden by custom user-defined data. This field allows you to provide a custom json file that describes the change in building population over time.

-
-
-
-
-
-
-
-

2.2.2.4. Dependencies

-

Pelicun allows users to prescribe dependencies between various components of the performance model. Note that both FEMA P58 and HAZUS assumes most of these settings are set to Independent.

-

Every type of prescribed dependency assumes perfect correlation between a certain subset of the model variables and no correlation between the others. Future versions will expand on this approach by introducing more complex correlation structures.

-
-

Logical components

-

You can assign perfect correlation between the following logical components of the model:

-
-
-
Fragility Groups
-

Assumes that the selected parameters are correlated between Fragility Groups (i.e. the highest organizational level) and at every level below. That is, with this setting, the users assigns perfect correlation between every single parameter of the selected type in the model. Use this with caution.

-
-
Performance Groups
-

Assumes that the selected parameters are correlated between all Performance Groups and at every logical level below. For instance, this setting for Component Quantities will lead to identical deviations from mean quantities among the floors and directions in the building.

-
-
Floors
-

Assumes that the selected parameters are correlated between Performance Groups at various floors, but not between Performance Groups in different directions in the building. Also assumes perfect correlation between the Damage States within each Performance Group. This is useful when the parameter is direction-dependent and similar deviations are expected among all floors in the same direction.

-
-
Directions
-

Assumes that the selected parameters are correlated between Performance Groups in various (typically two) directions, but not between different floors of the building. This can be useful when you want to prescribe similar deviations from mean values within each floor, but want to allow independent behavior over the height of the building.

-
-
Damage States
-

Correlation at the lowest organizational level. Assumes that the selected parameters are correlated between Damage States only. This type of correlation, for instance, would assume that deviation from the median reconstruction cost is due to factors that affect all types of damage within a performance group in identical fashion.

-
-
-
-
-
-

Model parameters

-

The following model parameters can handle the assigned dependencies:

-
-
-
Component Quantities
-

The amount of components in the building (see the description under Components below for more details).

-
-
Component Fragilities
-

Each Damage State has a corresponding random EDP limit. The component fragilities is a collection of such EDP limit variables.

-

Note: most methodologies assume that such EDP limits are perfectly correlated at least among the Damage States within a Component Subgroup.

-
-
Reconstruction Costs and Times
-

The cost and time it takes to repair a particular type of damage to a component. The btw. Rec. Cost and Time setting allows you to define correlation between reconstruction cost and time on top of the correlations already set above for each of these individually.

-

Note: if you do define such a correlation structure, the more general correlation among the settings in the Reconstruction Costs and Reconstruction Times lines will need to be applied to both cases to respect conditional correlations in the system. (e.g., if you set costs to be correlated between Performance Groups and times to correlate between Floors and check the cost and time correlation as well, times will be forced to become correlated between Performance Groups.)

-
-
Injuries
-

The probability of being injured at a given severity when being in the affected area of a damaged component. Note that the Injuries lines prescribe correlations between the same level of injury at different places in the building. Correlation between different levels of injury at the same place can be prescribed by the btw. Injuries and Fatalities setting.

-
-
Red Tag Probabilities
-

The amount of damage in a given Damage State that triggers an unsafe placard or red tag.

-
-
-
-

The default FEMA P58 setting assumes that all variables are independent, except for the fragility data, where the fragilities of certain Component Groups (i.e. groups of components with identical behavior within Performance Groups) are perfectly correlated. This behavior is achieved by setting every other dependency to Independent and setting the Component Fragilities to per ATC recommendation.

-
-
-
-

2.2.2.5. Components

-

This part of the configuration file defines the Fragility Groups in the building with the quantities and locations.

-

Each Fragility Group is identified with a unique ID. The example below uses IDs from FEMA P58, but similar IDs are available in the Hazus database as well. Each ID is assigned to a list of quantity specifications. The quantity specifications define the location of the Performance Groups that collectively make up the Fragility Group. More than one quantity specifications are warranted when the quantities or the uncertainty in quantities changes by location or direction. For example, the first component in the sample configuration file below has two quantity specfications - one for the first and another for the second direction. Each quantity specficiation has several attributes to specify the quantity and location of components:

-
-
-
location
-

In buildings, locations are typically stories. The ground floor is story 1. Providing all assigns the same setting to every story. You can use a dash to specify a range of stories, such as 3-7. If a component is only assigned to the top story, or the roof, you can use top or roof. You can also combine these and use 3-roof for example. These settings make it easy to transfer performance models between buildings that have different number of stories.

-
-
direction
-

The directions correspond to EDPs that are used to assess the fragility of the components. They shall match the directions in the EDP results from the simulations. Typically, 1 corresponds to the horizontal X direction and 2 to the Y direction.

-
-
median_quantity
-

Components within a Fragility Group are separated into Performance Groups by floor and direction. Components within a Performance Group are further separated into Component Groups. Components within a Component Group experience identical damage and losses. Correlations between the behavior of Component Groups and higher-level sets is specified under Dependencies.

-

The list of quantities provided specifies the number of Component Groups and the quantity of components in each Component Group. These are assigned to each Performance Group in the locations and directions provided.

-
-
unit
-

The unit used to specify component quantities. You can use any of the commonly used metric or US units as long as it belongs to the same class (i.e., length, area, etc.) as the default unit for the fragility group. Squared units are expressed by using a 2 after the name, such as ft2 for square feet.

-
-
distribution
-

If you want to model the uncertainty in component quantities, select either normal or lognormal distribution here. The N/A setting corresponds to known quantities with no uncertainty.

-
-
cov
-

Coefficient of variation for the random distribution of component quantities. If the distribution is set to N/A, this can be omitted.

-
-
-
-

As long as you want to assign the same amount of components to every floor and every direction, one quantity specification is sufficient. Oftentimes, you will want to have more control over component quantities because the amount of components is not identical in all floors and directions.

-

The example configuration shows the assignment of two Fragility Groups. The first group is only used in the first floor and it has different quantities in direction 1 and 2 and required two quantity specfications in the file. The second Fragility Group could use the same quantity assignment to all floors and directions.

-
-
-

2.2.2.6. Collapse Modes

-

Collapse modes provide information for the estimation of injuries from building collapse when the FEMA P58 method is used. They are only used if injuries are among the requested Decision Variables. The following pieces of information are required for each collapse mode:

-
-
-
name
-

A name that helps you identify the collapse mode. It is arbitrary and not used by the loss assessment engine.

-
-
weight
-

Conditioned on collapse, the likelihood of this collapse mode. The provided likelihoods across all collapse modes must sum up to 1.0.

-
-
affected_area
-

The affected area (as a fraction of the total plan area) of the building at each floor. If only one number is provided, the same affected area is assumed on all floors. If a list of numbers is provided, you can specify the affected area on each floor.

-
-
injuries
-

The probability of each level of injury when people are in the affected area and this collapse mode occurs. (FEMA P58 assumes two levels of severity: injuries and fatalities).

-
-
-
-
-
-

2.2.2.7. Component Data Folder

-

Specifies the location of the fragility and consequence data that will be used for the damage and loss assessment. When empty or omitted, the data from the second edition of FEMA P58 is loaded by default. The corresponding json files are available in the applications folder under: resources/FEMA P58 second edition.hdf

-

The components from the first edition of FEMA P58 and the earthquake and hurricane damage and loss models from HAZUS are also bundled with pelicun and available under resources. The Fragility and Consequence Data section of tha manual (:numref:lbl-db_DL_dat) provides more information about the data and how it can be edited.

-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/usage/pelicun/outputs.html b/docs/common/user_manual/usage/pelicun/outputs.html deleted file mode 100644 index 750e4926c..000000000 --- a/docs/common/user_manual/usage/pelicun/outputs.html +++ /dev/null @@ -1,368 +0,0 @@ - - - - - - - - - - 2.5. Output Files — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.5. Output Files

-

Damage and loss calculations in pelicun provide several output files that describe the EDP, DM, and DV values at the atomic level corresponding to each realization for each component group and also aggregated at a few higher levels in the performance model hierarchy for convenience.

-

The DL_calculation.py script provides all of the output files listed below. When researchers directly use methods from the pelicun library in their own scripts, they can pick the methods to save computation time by only saving the outputs they need.

-
-
-
Summary Data
-
-
DL_summary
-

Provides a high-level overview of the main results. Each row corresponds to a damage and loss realization and each column corresponds to an outcome.

-
-
DL_summary_stats
-

Rather than providing results for each realization, this file contains frequently used statistics to describe the main results: mean, standard deviation, 10%, 50%, and 90% percentile, and minimum and maximum values of each outcome.

-
-
-
-
Response
-
-
EDP_
-

Provides the EDP values used in the calculation. Each row corresponds to a realization and each column corresponds to an EDP type and is identified in the header using SimCenter’s nomenclature for EDPs. The EDPs are provided in the units specified by the user in the Configuration File. In a coupled analysis, these EDPs should be identical to the ones in the Response Data File. In an uncoupled analysis when EDPs are re-sampled, these EDPs are the sampled values.

-
-
EDP_stats
-

Contains frequently used statistics to describe the EDPs: mean, standard deviation, 10%, 50%, and 90% percentile, and minimum and maximum values of each EDP type.

-
-
-
-
Damage
-
-
DMG
-

Provides the damaged quantities per Damage State (header row 3) per Performance Group (header row 2) per Fragility Group (header row 1). Each row corresponds to a realization. Note that component damages are only calculated for non-collapsed cases, therefore the number of realizations in this file might be less than the total number of realizations. The Damage State is provided in the format of DSG_DS where DSG identifies the Damage State Group and DS identifies the Damage State within the DSG. See the Technical Manual for details on handling Damage States in the pelicun framework.

-
-
DMG_agg
-

Aggregates damaged quantitites to the Fragility Group level (i.e., sums up damaged quantities for all Performance Groups in all Damage States within a Fragility Group).

-
-
DMG_stats
-

Contains frequently used statistics to describe the quantities of damaged components: mean, standard deviation, 10%, 50%, and 90% percentile, and minimum and maximum values of damaged quantities.

-
-
-
-
Losses
-
-
DV_<DV_type>
-

Provides decision variable values per Damage State (header row 3) per Performance Group (header row 2) per Fragility Group (header row 1). Each row corresponds to a realization. Note that component losses are only calculated for non-collapsed cases, therefore the number of realizations in this file might be less than the total number of realizations. The Damage State is provided in the format of DSG_DS where DSG identifies the Damage State Group and DS identifies the Damage State within the DSG. See the Technical Manual for details on handling Damage States in the pelicun framework.

-

The following DV_types are provided by pelicun: injuries, rec_cost, rec_time, red_tag.

-
-
DV_<DV_type>_agg
-

Aggregates decision variable values to the Fragility Group level (i.e., sums up values for all Performance Groups in all Damage States within a Fragility Group).

-
-
DV_<DV_type>_stats
-

Contains frequently used statistics to describe the decision variable values of components: mean, standard deviation, 10%, 50%, and 90% percentile, and minimum and maximum values of decision variables.

-
-
-
-
-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/usage/pelicun/res_data.html b/docs/common/user_manual/usage/pelicun/res_data.html deleted file mode 100644 index 9cc8284e7..000000000 --- a/docs/common/user_manual/usage/pelicun/res_data.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - - - - - 2.3. Response Data File — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.3. Response Data File

-

The response data file provides the demand data for the assessment. Demands are either Engineering Demand Parameters from a response simulation or Intensity Measures from a hazard assessment. The types of demands provided must match the types of demands requested by the fragility functions.

-

The data is expected in CSV file format. The first line of the file is a header that identifies the types of EDPs in the file. pelicun uses SimCenter’s naming convention for EDPs (see Fig. 2.3.1). There are four pieces of information provided in the name of each EDP:

-
-
-
event_id
-

Identifies the event in a multi-event scenario. 1 is used for single-event studies.

-
-
EDP_type
-

Specifies the type of EDP provided. pelicun currently supports the following EDP types in response data files:

-
-
PID
-

Peak Interstory Drift Ratio

-
-
RID
-

Residual Interstory Drift Ratio

-
-
PRD
-

Peak Roof Drift Ratio

-
-
PFA
-

Peak Floor Acceleration

-
-
PFV
-

Peak Floor Velocity

-
-
PGA
-

Peak Ground Acceleration

-
-
PGV
-

Peak Ground Velocity

-
-
PGD
-

Permanent Ground Deformation

-
-
-
-
location
-

Specifies the location where the EDP was measured. In buildings, locations typically correspond to floors with 0 being the ground for accelerations and 1 being the first floor for drift ratios.

-
-
direction
-

Specifies the direction of the EDP. In buildings, typically the two horizontal directions are used and they are labeled as 1 and 2. Any numbering logic can be used here, but the labels must match the ones provided under Components in the Configuration File (see Section 2.2)

-
-
-
-

Each row in the file provides EDPs from one simulation. EDP units are assumed to follow the unit specification in the Configuration File.

-
-../../../../_images/res_data.png -

Fig. 2.3.1 Sample response data file and EDP naming convention.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/usage/pelicun/tools.html b/docs/common/user_manual/usage/pelicun/tools.html deleted file mode 100644 index e8781a27f..000000000 --- a/docs/common/user_manual/usage/pelicun/tools.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - - - - - 2.6. Standalone Tools — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.6. Standalone Tools

-

Standalon python scripts are provided with pelicun that are built using methods from the library and facilitate using pelicun for those who prefer to work in an environment other than Python. These tools are listed below.

-
-

2.6.1. DL_calculation

-

DL_calculation.py uses elements of the pelicun library to assemble a damage and loss calculation workflow, perform the calculations and save the results. It can be run from the command line as follows:

-
python DL_calculation.py --filenameDL <DL_file_path> --filenameEDP <EDP_file_path> <additional args>
-
-
-

where <DL_file_path> should be replaced with a string pointing to the damage and loss configuration file and <EDP_file_path> should be replaced with a string pointing to the EDP input file. (see lbl-inputs for details on those files)

-

Additional optional settings through <additional args> allow researchers to customize their calculations. All of these settings need to be provided by adding –argument_name argument_value to the command above, where argument_name is the name shown in bold below and argument_value is the provided setting for that argument.

-

The following arguments are available:

-
-
-
Realizations
-

Overrides the number of realizations set in the configuration file.

-
-
dirnameOutput
-

Specifies the location where the output files will be saved at the end of the calculation. The default location is the folder where the command is executed.

-
-
event_time
-

Setting it to “False” turns off the consideration of event time and the change in the population in the building over the course of a day. When the event time is turned off, pelicun calculates with the peak population for every realization. The default value is “True”.

-
-
detailed_results
-

When set to “False”, the DL_calculation script only prints the main results of the calculation that provide an overview of the EDPs, DMs, and DVs. Detailed results allow researchers to review intermediate calculation outputs and disaggregate the damage and loss measures to individual components. The default value is “True”.

-
-
coupled_EDP
-

Overrides the coupled_EDP setting in the configuration file. The default value is “False”.

-
-
log_file
-

When set to “False”, no log file is produced. The default value is “True”.

-
-
-
-
-
-

2.6.2. exportDB

-

This tool faciliates exporting the contents of HDF5 Damage and Loss databases to JSON files that can be easily edited by researchers.

-

The script can be run from the command line as follows:

-
python export_DB.py --DL_DB_path <DB_file_path> --target_dir <target_dir_path>
-
-
-

where <DB_file_path> should be replaced with a string pointing to the HDF5 file tha contains the damage and loss database, and <target_dir_path> should be replaced with a string pointing to the directory where you want to save the JSON files.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/usage/pelicun/usage.html b/docs/common/user_manual/usage/pelicun/usage.html deleted file mode 100644 index 4dcc77fb2..000000000 --- a/docs/common/user_manual/usage/pelicun/usage.html +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - - - - - 2. User Guide — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
- -
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/common/user_manual/usage/pelicun/uses.html b/docs/common/user_manual/usage/pelicun/uses.html deleted file mode 100644 index a2fd92450..000000000 --- a/docs/common/user_manual/usage/pelicun/uses.html +++ /dev/null @@ -1,337 +0,0 @@ - - - - - - - - - - 2.1. Usage — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

2.1. Usage

-

The pelicun library can be used in three different ways. We recommend getting started with the help of the Performance Based Engineering Application (PBE) that facilitates getting familiar with the settings and the structure of the input files.

-
-

2.1.1. Use through the PBE App

-

The PBE Application is desktop application developed by the SimCenter for performance assessment of individual buildings. It provides a graphical user interface where researchers can conveniently set up the analysis and review the main results (Fig. 2.1.1.1). The backend of the PBE App uses pelicun to perform damage and loss calculations and the input file generated by the application has the same format that is expected by pelicun. Please visit the website of the PBE App Documentation for more information on how to use that application.

-
-../../../../_images/dl_p58_general.png -

Fig. 2.1.1.1 The General Damage and Loss Settings panel in the PBE Application.

-
-
-
-

2.1.2. Use as an Application

-

Several scripts are installed with pelicun to help those researchers who are not familiar with the Python programming language. These scripts are located under the tools folder and they are discussed in more detail under :numref:’lbl-tools’.

-
-
-

2.1.3. Use as a Library

-

Researchers can build methods and objects from pelicun into their Python applications. The DL_calculation.py script provides an example and the API reference in the Developer Manual provides a detailed description of the available methods and classes in pelicun.

-
-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/genindex.html b/docs/genindex.html deleted file mode 100644 index 8eac8d6a9..000000000 --- a/docs/genindex.html +++ /dev/null @@ -1,924 +0,0 @@ - - - - - - - - - - Index — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Index
  • - - -
  • - - - -
  • - -
- - -
-
-
-
- - -

Index

- -
- A - | B - | C - | D - | F - | G - | H - | I - | L - | M - | N - | O - | P - | R - | S - | T - | U - | W - -
-

A

- - - -
- -

B

- - - -
- -

C

- - - -
- -

D

- - - -
- -

F

- - - -
- -

G

- - - -
- -

H

- - -
- -

I

- - - -
- -

L

- - -
- -

M

- - - -
- -

N

- - -
- -

O

- - -
- -

P

- - - -
- -

R

- - - -
- -

S

- - - -
- -

T

- - - -
- -

U

- - - -
- -

W

- - - -
- - - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 23bf7ced7..000000000 --- a/docs/index.html +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - - - - pelicun library — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
- -
-

pelicun library

-

Adam Zsarnóczay , Kuanshi Zhong

-

The pelicun library is an open-source implementation of the PELICUN framework in a Python package. PELICUN is developed as an integrated multi-hazard framework to assess the performance of buildings and other assets in the built environment under natural hazards. Its foundation is the FEMA P58 performance assessment methodology that is extended beyond the seismic performance assessment of buildings to also handle wind and water hazards, bridges and buried pipelines, and performance assessment using vulnerability functions and damage models based on intensity measures (e.g., Hazus).

-

This document covers the features and capabilities of Version 2.5.0 of the tool. Users are encouraged to comment on what additional features and capabilities they would like to see in future versions of the application through the Message Board.

- - -
-
-
-

Technical Manual

- -
-
-

Developer Manual

- -
-
-
-

Contact

-

Adam Zsarnóczay, NHERI SimCenter, Stanford University, adamzs@stanford.edu

-
-
-

References

-

-
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/objects.inv b/docs/objects.inv deleted file mode 100644 index 76d0dfe40..000000000 Binary files a/docs/objects.inv and /dev/null differ diff --git a/docs/py-modindex.html b/docs/py-modindex.html deleted file mode 100644 index 0f8c4d48f..000000000 --- a/docs/py-modindex.html +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - Python Module Index — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Python Module Index
  • - - -
  • - -
  • - -
- - -
-
-
-
- - -

Python Module Index

- -
- p -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 
- p
- pelicun -
    - pelicun.auto -
    - pelicun.base -
    - pelicun.control -
    - pelicun.db -
    - pelicun.file_io -
    - pelicun.model -
    - pelicun.tests.test_control -
    - pelicun.tests.test_db -
    - pelicun.tests.test_file_io -
    - pelicun.tests.test_model -
    - pelicun.tests.test_uq -
    - pelicun.uq -
- - -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/search.html b/docs/search.html deleted file mode 100644 index 2677cf865..000000000 --- a/docs/search.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - - - - Search — pelicun documentation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - -
- -
    - -
  • »
  • - -
  • Search
  • - - -
  • - -
  • - -
- - -
-
-
-
- - - - -
- -
- -
- -
-
- -
- -
-

- © Copyright (c) 2018-2021, Leland Stanford Junior University and The Regents of the University of California. - -

-
- - - - Built with Sphinx using a - - theme - - provided by Read the Docs. - -
-
-
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/searchindex.js b/docs/searchindex.js deleted file mode 100644 index 7048ac8b1..000000000 --- a/docs/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({docnames:["common/developer_manual/API/pelicun/API","common/developer_manual/API/pelicun/API_pelicun_auto","common/developer_manual/API/pelicun/API_pelicun_base","common/developer_manual/API/pelicun/API_pelicun_control","common/developer_manual/API/pelicun/API_pelicun_db","common/developer_manual/API/pelicun/API_pelicun_file_io","common/developer_manual/API/pelicun/API_pelicun_model","common/developer_manual/API/pelicun/API_pelicun_uq","common/developer_manual/architecture/pelicun/architecture","common/developer_manual/coding_style/pelicun/coding_style","common/developer_manual/examples/pelicun/examples","common/developer_manual/how_to_extend/pelicun/how_to_extend","common/developer_manual/verification/pelicun/verification","common/front-matter/abbreviations","common/front-matter/ack","common/front-matter/glossary","common/front-matter/license","common/front-matter/pelAck","common/front-matter/pelicunAck","common/reqments/blah","common/reqments/indexMaster","common/reqments/indexShort","common/reqments/key","common/reqments/pelicun","common/reqments/reqPelicun","common/reqments/reqQUOFEM","common/technical_manual/pelicun/background/background","common/technical_manual/pelicun/background/databases/DL_data","common/technical_manual/pelicun/background/databases/databases","common/technical_manual/pelicun/background/framework/auto","common/technical_manual/pelicun/background/framework/damage","common/technical_manual/pelicun/background/framework/framework","common/technical_manual/pelicun/background/framework/loss","common/technical_manual/pelicun/background/framework/overview","common/technical_manual/pelicun/background/framework/performance","common/technical_manual/pelicun/background/framework/res_model","common/technical_manual/pelicun/background/framework/uq","common/technical_manual/pelicun/background/outputs/damages","common/technical_manual/pelicun/background/outputs/demands","common/technical_manual/pelicun/background/outputs/losses","common/technical_manual/pelicun/background/outputs/outputs","common/technical_manual/pelicun/background/outputs/summary","common/technical_manual/pelicun/background/tools/DL_calculation","common/technical_manual/pelicun/background/tools/exportDB","common/technical_manual/pelicun/background/tools/fitDistribution","common/technical_manual/pelicun/background/tools/sampleRV","common/technical_manual/pelicun/background/tools/tools","common/technical_manual/pelicun/technical_manual","common/technical_manual/pelicun/verification/test_control","common/technical_manual/pelicun/verification/test_db","common/technical_manual/pelicun/verification/test_file_io","common/technical_manual/pelicun/verification/test_model","common/technical_manual/pelicun/verification/test_uq","common/technical_manual/pelicun/verification/verification","common/testbeds/anchorage/anchorage","common/testbeds/atlantic_city/asset_description","common/testbeds/atlantic_city/asset_representation","common/testbeds/atlantic_city/best_practices","common/testbeds/atlantic_city/damage_and_loss","common/testbeds/atlantic_city/example_outputs","common/testbeds/atlantic_city/feedback_request","common/testbeds/atlantic_city/future_refinements","common/testbeds/atlantic_city/hazard_characterization","common/testbeds/atlantic_city/index","common/testbeds/atlantic_city/overview","common/testbeds/atlantic_city/preface","common/testbeds/atlantic_city/pws_conversion","common/testbeds/atlantic_city/sample_results","common/testbeds/atlantic_city/uncertainty_quantification","common/testbeds/lake_charles/index","common/testbeds/memphis/asset_description","common/testbeds/memphis/asset_representation","common/testbeds/memphis/damage_and_loss","common/testbeds/memphis/future_refinements","common/testbeds/memphis/hazard_characterization","common/testbeds/memphis/index","common/testbeds/memphis/network_performance","common/testbeds/memphis/overview","common/testbeds/memphis/sample_results","common/testbeds/memphis/uncertainty_quantification","common/testbeds/sf_bay_area/asset_description","common/testbeds/sf_bay_area/damage_and_loss","common/testbeds/sf_bay_area/example_outputs","common/testbeds/sf_bay_area/feedback_request","common/testbeds/sf_bay_area/future_refinements","common/testbeds/sf_bay_area/hazard_characterization","common/testbeds/sf_bay_area/index","common/testbeds/sf_bay_area/overview","common/testbeds/sf_bay_area/uncertainty_quantification","common/user_manual/about/HazardSimulation/about","common/user_manual/about/pelicun/about","common/user_manual/bugs","common/user_manual/examples/pelicun/examples","common/user_manual/installation/pelicun/installation","common/user_manual/troubleshooting/pelicun/troubleshooting","common/user_manual/usage/pelicun/DL_data","common/user_manual/usage/pelicun/config","common/user_manual/usage/pelicun/outputs","common/user_manual/usage/pelicun/res_data","common/user_manual/usage/pelicun/tools","common/user_manual/usage/pelicun/usage","common/user_manual/usage/pelicun/uses","index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["common\\developer_manual\\API\\pelicun\\API.rst","common\\developer_manual\\API\\pelicun\\API_pelicun_auto.rst","common\\developer_manual\\API\\pelicun\\API_pelicun_base.rst","common\\developer_manual\\API\\pelicun\\API_pelicun_control.rst","common\\developer_manual\\API\\pelicun\\API_pelicun_db.rst","common\\developer_manual\\API\\pelicun\\API_pelicun_file_io.rst","common\\developer_manual\\API\\pelicun\\API_pelicun_model.rst","common\\developer_manual\\API\\pelicun\\API_pelicun_uq.rst","common\\developer_manual\\architecture\\pelicun\\architecture.rst","common\\developer_manual\\coding_style\\pelicun\\coding_style.rst","common\\developer_manual\\examples\\pelicun\\examples.rst","common\\developer_manual\\how_to_extend\\pelicun\\how_to_extend.rst","common\\developer_manual\\verification\\pelicun\\verification.rst","common\\front-matter\\abbreviations.rst","common\\front-matter\\ack.rst","common\\front-matter\\glossary.rst","common\\front-matter\\license.rst","common\\front-matter\\pelAck.rst","common\\front-matter\\pelicunAck.rst","common\\reqments\\blah.rst","common\\reqments\\indexMaster.rst","common\\reqments\\indexShort.rst","common\\reqments\\key.rst","common\\reqments\\pelicun.rst","common\\reqments\\reqPelicun.rst","common\\reqments\\reqQUOFEM.rst","common\\technical_manual\\pelicun\\background\\background.rst","common\\technical_manual\\pelicun\\background\\databases\\DL_data.rst","common\\technical_manual\\pelicun\\background\\databases\\databases.rst","common\\technical_manual\\pelicun\\background\\framework\\auto.rst","common\\technical_manual\\pelicun\\background\\framework\\damage.rst","common\\technical_manual\\pelicun\\background\\framework\\framework.rst","common\\technical_manual\\pelicun\\background\\framework\\loss.rst","common\\technical_manual\\pelicun\\background\\framework\\overview.rst","common\\technical_manual\\pelicun\\background\\framework\\performance.rst","common\\technical_manual\\pelicun\\background\\framework\\res_model.rst","common\\technical_manual\\pelicun\\background\\framework\\uq.rst","common\\technical_manual\\pelicun\\background\\outputs\\damages.rst","common\\technical_manual\\pelicun\\background\\outputs\\demands.rst","common\\technical_manual\\pelicun\\background\\outputs\\losses.rst","common\\technical_manual\\pelicun\\background\\outputs\\outputs.rst","common\\technical_manual\\pelicun\\background\\outputs\\summary.rst","common\\technical_manual\\pelicun\\background\\tools\\DL_calculation.rst","common\\technical_manual\\pelicun\\background\\tools\\exportDB.rst","common\\technical_manual\\pelicun\\background\\tools\\fitDistribution.rst","common\\technical_manual\\pelicun\\background\\tools\\sampleRV.rst","common\\technical_manual\\pelicun\\background\\tools\\tools.rst","common\\technical_manual\\pelicun\\technical_manual.rst","common\\technical_manual\\pelicun\\verification\\test_control.rst","common\\technical_manual\\pelicun\\verification\\test_db.rst","common\\technical_manual\\pelicun\\verification\\test_file_io.rst","common\\technical_manual\\pelicun\\verification\\test_model.rst","common\\technical_manual\\pelicun\\verification\\test_uq.rst","common\\technical_manual\\pelicun\\verification\\verification.rst","common\\testbeds\\anchorage\\anchorage.rst","common\\testbeds\\atlantic_city\\asset_description.rst","common\\testbeds\\atlantic_city\\asset_representation.rst","common\\testbeds\\atlantic_city\\best_practices.rst","common\\testbeds\\atlantic_city\\damage_and_loss.rst","common\\testbeds\\atlantic_city\\example_outputs.rst","common\\testbeds\\atlantic_city\\feedback_request.rst","common\\testbeds\\atlantic_city\\future_refinements.rst","common\\testbeds\\atlantic_city\\hazard_characterization.rst","common\\testbeds\\atlantic_city\\index.rst","common\\testbeds\\atlantic_city\\overview.rst","common\\testbeds\\atlantic_city\\preface.rst","common\\testbeds\\atlantic_city\\pws_conversion.rst","common\\testbeds\\atlantic_city\\sample_results.rst","common\\testbeds\\atlantic_city\\uncertainty_quantification.rst","common\\testbeds\\lake_charles\\index.rst","common\\testbeds\\memphis\\asset_description.rst","common\\testbeds\\memphis\\asset_representation.rst","common\\testbeds\\memphis\\damage_and_loss.rst","common\\testbeds\\memphis\\future_refinements.rst","common\\testbeds\\memphis\\hazard_characterization.rst","common\\testbeds\\memphis\\index.rst","common\\testbeds\\memphis\\network_performance.rst","common\\testbeds\\memphis\\overview.rst","common\\testbeds\\memphis\\sample_results.rst","common\\testbeds\\memphis\\uncertainty_quantification.rst","common\\testbeds\\sf_bay_area\\asset_description.rst","common\\testbeds\\sf_bay_area\\damage_and_loss.rst","common\\testbeds\\sf_bay_area\\example_outputs.rst","common\\testbeds\\sf_bay_area\\feedback_request.rst","common\\testbeds\\sf_bay_area\\future_refinements.rst","common\\testbeds\\sf_bay_area\\hazard_characterization.rst","common\\testbeds\\sf_bay_area\\index.rst","common\\testbeds\\sf_bay_area\\overview.rst","common\\testbeds\\sf_bay_area\\uncertainty_quantification.rst","common\\user_manual\\about\\HazardSimulation\\about.rst","common\\user_manual\\about\\pelicun\\about.rst","common\\user_manual\\bugs.rst","common\\user_manual\\examples\\pelicun\\examples.rst","common\\user_manual\\installation\\pelicun\\installation.rst","common\\user_manual\\troubleshooting\\pelicun\\troubleshooting.rst","common\\user_manual\\usage\\pelicun\\DL_data.rst","common\\user_manual\\usage\\pelicun\\config.rst","common\\user_manual\\usage\\pelicun\\outputs.rst","common\\user_manual\\usage\\pelicun\\res_data.rst","common\\user_manual\\usage\\pelicun\\tools.rst","common\\user_manual\\usage\\pelicun\\usage.rst","common\\user_manual\\usage\\pelicun\\uses.rst","index.rst"],objects:{"":{pelicun:[0,0,0,"-"]},"pelicun.auto":{auto_populate:[1,1,1,""]},"pelicun.base":{log_msg:[2,1,1,""]},"pelicun.control":{Assessment:[3,2,1,""],FEMA_P58_Assessment:[3,2,1,""],HAZUS_Assessment:[3,2,1,""]},"pelicun.control.Assessment":{beta_tot:[3,3,1,""],calculate_damage:[3,3,1,""],calculate_losses:[3,3,1,""],define_loss_model:[3,3,1,""],define_random_variables:[3,3,1,""],read_inputs:[3,3,1,""],save_outputs:[3,3,1,""]},"pelicun.control.FEMA_P58_Assessment":{aggregate_results:[3,3,1,""],calculate_damage:[3,3,1,""],calculate_losses:[3,3,1,""],define_loss_model:[3,3,1,""],define_random_variables:[3,3,1,""],read_inputs:[3,3,1,""],save_outputs:[3,3,1,""]},"pelicun.control.HAZUS_Assessment":{aggregate_results:[3,3,1,""],calculate_damage:[3,3,1,""],calculate_losses:[3,3,1,""],define_loss_model:[3,3,1,""],define_random_variables:[3,3,1,""],read_inputs:[3,3,1,""],save_outputs:[3,3,1,""]},"pelicun.db":{convert_P58_data_to_json:[4,1,1,""],convert_Series_to_dict:[4,1,1,""],convert_json_files_to_HDF:[4,1,1,""],create_HAZUS_EQ_PGA_json_files:[4,1,1,""],create_HAZUS_EQ_json_files:[4,1,1,""],create_HAZUS_EQ_story_json_files:[4,1,1,""],create_HAZUS_HU_json_files:[4,1,1,""],dict_generator:[4,1,1,""],get_val_from_dict:[4,1,1,""],save_to_standard_HDF:[4,1,1,""]},"pelicun.file_io":{read_SimCenter_DL_input:[5,1,1,""],read_SimCenter_EDP_input:[5,1,1,""],read_component_DL_data:[5,1,1,""],read_population_distribution:[5,1,1,""]},"pelicun.model":{ConsequenceFunction:[6,2,1,""],DamageState:[6,2,1,""],DamageStateGroup:[6,2,1,""],FragilityFunction:[6,2,1,""],FragilityGroup:[6,2,1,""],PerformanceGroup:[6,2,1,""],prep_bounded_linear_median_DV:[6,1,1,""],prep_bounded_multilinear_median_DV:[6,1,1,""],prep_constant_median_DV:[6,1,1,""]},"pelicun.model.ConsequenceFunction":{median:[6,3,1,""],sample_unit_DV:[6,3,1,""]},"pelicun.model.DamageState":{description:[6,3,1,""],red_tag_dmg_limit:[6,3,1,""],unit_injuries:[6,3,1,""],unit_reconstruction_time:[6,3,1,""],unit_repair_cost:[6,3,1,""],weight:[6,3,1,""]},"pelicun.model.FragilityFunction":{DSG_given_EDP:[6,3,1,""],P_exc:[6,3,1,""]},"pelicun.model.FragilityGroup":{description:[6,3,1,""],name:[6,3,1,""]},"pelicun.model.PerformanceGroup":{P_exc:[6,3,1,""]},"pelicun.tests":{test_control:[48,0,0,"-"],test_db:[49,0,0,"-"],test_file_io:[50,0,0,"-"],test_model:[51,0,0,"-"],test_uq:[52,0,0,"-"]},"pelicun.tests.test_control":{test_FEMA_P58_Assessment_DV_uncertainty_dependencies:[48,1,1,""],test_FEMA_P58_Assessment_DV_uncertainty_dependencies_with_partial_DV_data:[48,1,1,""],test_FEMA_P58_Assessment_EDP_uncertainty_3D:[48,1,1,""],test_FEMA_P58_Assessment_EDP_uncertainty_basic:[48,1,1,""],test_FEMA_P58_Assessment_EDP_uncertainty_detection_limit:[48,1,1,""],test_FEMA_P58_Assessment_EDP_uncertainty_failed_analyses:[48,1,1,""],test_FEMA_P58_Assessment_EDP_uncertainty_single_sample:[48,1,1,""],test_FEMA_P58_Assessment_EDP_uncertainty_zero_variance:[48,1,1,""],test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies:[48,1,1,""],test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_ATC:[48,1,1,""],test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_CSG:[48,1,1,""],test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_DIR:[48,1,1,""],test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_DS:[48,1,1,""],test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_LOC:[48,1,1,""],test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_PG:[48,1,1,""],test_FEMA_P58_Assessment_QNT_uncertainty_dependencies:[48,1,1,""],test_FEMA_P58_Assessment_QNT_uncertainty_independent:[48,1,1,""],test_FEMA_P58_Assessment_central_tendencies:[48,1,1,""]},"pelicun.tests.test_db":{test_convert_P58_data_to_json:[49,1,1,""],test_create_HAZUS_json_files:[49,1,1,""]},"pelicun.tests.test_file_io":{test_read_SimCenter_DL_input_full_input:[50,1,1,""],test_read_SimCenter_DL_input_injuries_only:[50,1,1,""],test_read_SimCenter_DL_input_minimum_input:[50,1,1,""],test_read_SimCenter_DL_input_no_realizations:[50,1,1,""],test_read_SimCenter_DL_input_non_standard_units:[50,1,1,""],test_read_SimCenter_DL_input_unknown_component_unit:[50,1,1,""],test_read_SimCenter_DL_input_unknown_unit:[50,1,1,""],test_read_SimCenter_EDP_input:[50,1,1,""],test_read_component_DL_data:[50,1,1,""],test_read_population_distribution:[50,1,1,""]},"pelicun.tests.test_model":{test_ConsequenceFunction_bounded_linear_median_value:[51,1,1,""],test_ConsequenceFunction_fixed_median_value:[51,1,1,""],test_ConsequenceFunction_sample_unit_DV:[51,1,1,""],test_DamageStateGroup_kind:[51,1,1,""],test_DamageState_description:[51,1,1,""],test_DamageState_injury_sampling:[51,1,1,""],test_DamageState_reconstruction_time_sampling:[51,1,1,""],test_DamageState_red_tag_sampling:[51,1,1,""],test_DamageState_repair_cost_sampling:[51,1,1,""],test_DamageState_weight:[51,1,1,""],test_FragilityFunction_DSG_ID_given_EDP_general:[51,1,1,""],test_FragilityFunction_Pexc_lognormal_non_trivial_case:[51,1,1,""],test_FragilityFunction_Pexc_lognormal_nonzero_scalar_input:[51,1,1,""],test_FragilityFunction_Pexc_lognormal_unit_mean_unit_std:[51,1,1,""],test_FragilityFunction_Pexc_lognormal_zero_input:[51,1,1,""],test_FragilityFunction_Pexc_multiple_damage_states_with_correlation:[51,1,1,""],test_FragilityGroup_description_and_name:[51,1,1,""],test_PerformanceGroup_Pexc:[51,1,1,""]},"pelicun.tests.test_uq":{test_MVN_CDF_multivariate:[52,1,1,""],test_MVN_CDF_univariate:[52,1,1,""],test_RandomVariable_incorrect_multinomial_definition:[52,1,1,""],test_RandomVariable_incorrect_none_defined:[52,1,1,""],test_RandomVariable_sample_distribution_mixed_normal:[52,1,1,""],test_RandomVariable_sample_distribution_multinomial:[52,1,1,""],test_fitting_baseline:[52,1,1,""],test_fitting_censored:[52,1,1,""],test_fitting_lognormal:[52,1,1,""],test_fitting_truncated:[52,1,1,""],test_fitting_truncated_and_censored:[52,1,1,""],test_sampling_non_truncated:[52,1,1,""],test_sampling_tr_alpha_error:[52,1,1,""],test_sampling_truncated_narrow_limits:[52,1,1,""],test_sampling_truncated_wide_limits:[52,1,1,""]},"pelicun.uq":{RandomVariable:[7,2,1,""],RandomVariableRegistry:[7,2,1,""],RandomVariableSet:[7,2,1,""],fit_distribution:[7,1,1,""],mvn_orthotope_density:[7,1,1,""]},"pelicun.uq.RandomVariable":{RV_set:[7,3,1,""],anchor:[7,3,1,""],bounds:[7,3,1,""],cdf:[7,3,1,""],custom_expr:[7,3,1,""],distribution:[7,3,1,""],inverse_transform:[7,3,1,""],inverse_transform_sampling:[7,3,1,""],samples:[7,3,1,""],samples_DF:[7,3,1,""],theta:[7,3,1,""],truncation_limits:[7,3,1,""],uni_samples:[7,3,1,""]},"pelicun.uq.RandomVariableRegistry":{RV:[7,3,1,""],RV_samples:[7,3,1,""],RV_set:[7,3,1,""],RVs:[7,3,1,""],add_RV:[7,3,1,""],add_RV_set:[7,3,1,""],generate_samples:[7,3,1,""]},"pelicun.uq.RandomVariableSet":{RV:[7,3,1,""],Rho:[7,3,1,""],apply_correlation:[7,3,1,""],orthotope_density:[7,3,1,""],samples:[7,3,1,""],size:[7,3,1,""]},pelicun:{auto:[1,0,0,"-"],base:[2,0,0,"-"],control:[3,0,0,"-"],db:[4,0,0,"-"],file_io:[5,0,0,"-"],model:[6,0,0,"-"],uq:[7,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method"},terms:{"000":[54,55,62,81,82,85,88],"000019":55,"0001":[7,55],"000397":67,"001":[55,95],"001945":67,"001a":96,"002":96,"002477678":58,"00265625":58,"00441734":55,"00466222":55,"004726477":58,"004894":55,"005251":55,"005295405":58,"00557052":55,"0061653":55,"006394":55,"006851":55,"007765":55,"009311224":58,"01061481":58,"01093":55,"010955":55,"01116657":55,"01141582":58,"011634":67,"012796":55,"0130892":55,"01377666":58,"0149401":55,"014941":67,"0152211":67,"01554":55,"016068":67,"016144":67,"016305":55,"016747":67,"017571":55,"018":58,"018414":67,"018687":67,"01873":55,"01944360208976274":80,"019618":55,"019701":58,"02091":67,"021468":55,"021745":55,"02258166":55,"023123":55,"02320097":55,"02322":67,"023565":55,"024036":55,"024419":55,"0263":55,"026649":67,"027347":67,"02746208":58,"02753727":55,"02841564":55,"02858244":67,"02868":67,"029021":55,"029488":55,"02pct_20190520":55,"030056":67,"030176":55,"03114257":58,"03148628":55,"03153658":55,"031638":55,"032803":55,"032821":67,"033188":67,"03360477":58,"033784":67,"0340973":55,"034476":67,"034823":55,"035245":67,"035426":67,"036401":55,"036589":55,"03735214":55,"037389":67,"037623":55,"037848":55,"03785179":55,"037936":55,"0379495":55,"03804989":55,"03848087":67,"0389248":55,"03924291":55,"0393187":67,"039359":55,"039632":55,"03968":67,"03986097":58,"040028":55,"040128":55,"041594":67,"041765":58,"04234206":55,"04384":55,"043995":55,"044237":55,"045145":55,"045976":67,"048044":55,"048057":55,"04816128":55,"0483048":58,"048315":55,"048534":55,"048692":55,"048753":55,"0497":95,"04z":2,"050741":67,"051064":55,"051411":55,"0515616":55,"051593":55,"051978":55,"052045":58,"052988":67,"053472":55,"05448962":55,"055243":55,"05549":58,"055715":67,"056126":55,"05674":58,"057224":55,"057496":55,"0582353":58,"05832":55,"059151":55,"059346":67,"059375":55,"059464":55,"060694":55,"06069605":55,"06098":55,"06099315":58,"06175017":55,"061978":67,"06356":55,"063665":55,"06371":55,"064021":55,"064327":67,"064686":67,"065049":55,"06549151":67,"066125":55,"066246":67,"066803":55,"067108":55,"067262":55,"068201":55,"068809":55,"06909592":67,"069174":55,"070102":55,"070775":55,"071307":55,"0720457":55,"072236":55,"073223":55,"073269":67,"073412":67,"073583":55,"07402135":58,"0745672":55,"075274":58,"0764849":55,"076955":55,"07709244":58,"0789009":55,"079867":55,"08006":55,"080451":55,"080925":55,"08141311":55,"081426":67,"081631":55,"082064":67,"082075":55,"08220942":67,"0823233":55,"082899":55,"08336503":67,"083472":55,"083765":67,"084168":55,"084531":55,"086063":67,"086542":55,"086593":67,"087156":55,"087914":55,"08795518":58,"088621":67,"089421":55,"08946275":67,"089522":55,"090017":55,"090064":55,"0906288":55,"094529":55,"095304":67,"095682":55,"096257":55,"096661":55,"096741":55,"097764":55,"09776423":55,"098046":55,"098168":55,"098198":55,"098247":55,"099501":55,"100":[48,55,56,58,62,64,67,96],"1000":[50,55,62,64,67,68],"1000000":96,"1002":67,"100337":55,"100433":67,"1005315":67,"1007":58,"100mph":56,"101":[55,56,62],"1010":55,"101016":55,"101152":55,"1016":55,"10176":95,"102":55,"10243607":55,"103":55,"103314":55,"10337":55,"1034":55,"104":[67,80],"1045297":85,"1047":55,"105":[55,62,67,80],"105028":55,"105103":67,"1057":67,"1061":55,"106103":67,"1062":[55,95],"106339":55,"1068":55,"106872":55,"10695602":55,"107":[55,67],"1071":67,"1074":55,"107522":58,"10756412":55,"107673":55,"107991":67,"108":[55,62,67],"1080":80,"10812":95,"10828":55,"10842":55,"108474":55,"1087":55,"109":[55,67],"1094":67,"10962":67,"109685":67,"1098":55,"10m":[62,66],"110":[55,56,62,67],"110071":67,"1102":67,"11024":95,"1104":55,"1106":67,"1107":67,"111":[55,67],"1111":55,"1115":55,"111576":55,"111667":55,"1117":55,"112":[54,55,67],"11281":67,"1129":55,"112949":55,"113":[55,67],"11339":67,"1134":55,"114":[55,67],"114122":55,"11498":55,"115":[55,62,67],"115112":55,"115247":67,"115871":55,"116":[55,67],"11670199":67,"11692":67,"117":[55,67],"117012":67,"117634":67,"11776":55,"118":[55,67],"1180":55,"1182":55,"118298":67,"11849":67,"1185":67,"119":[55,62,67],"1190":67,"1192":55,"120":[55,62,67,85],"1201":55,"1203":55,"120421":55,"120820":67,"1209":67,"121":[55,67],"1210":67,"121338":67,"12151513":67,"121695":58,"122":[55,67],"122029":55,"12207138":67,"1221":[55,67],"1223":67,"122337":55,"1224":67,"12255":55,"122775":55,"1229":67,"123":[55,67],"1233":55,"123386":67,"1234":[55,67],"123776":55,"12381602":55,"124":[55,67],"124105":67,"124636":55,"1247":55,"124807":55,"12497":55,"125":[55,66,67],"1254":55,"125482":55,"1259":67,"125943":67,"126":[55,67],"126086":55,"12639":55,"1265":55,"126552":55,"126568":55,"1267":55,"126884":55,"127":[55,62,67],"127063":67,"127159":67,"127629":67,"127888":67,"128":[55,67],"1286":67,"1287":67,"129":[55,67],"129299":67,"129406":55,"129452":55,"129559":55,"129616":55,"130":[55,67],"13089529":55,"13092":[20,21],"130973":55,"131":[55,67,80],"1310":[55,67],"1311":55,"131251":55,"1314":67,"1316":55,"13174":55,"132":[55,67],"1322":67,"132327":67,"132631":55,"133":[55,66,67],"133075":55,"133255":55,"134":[55,67],"1340":67,"1346":55,"135":[55,67],"135344":55,"135414":55,"1357":55,"135714":67,"135721":67,"136":[55,62,67],"1360":55,"136116":67,"13621648":55,"1365":55,"1366":55,"1369":67,"137":[55,67,80],"137382":55,"137595":55,"138":[55,67],"1383":67,"1388":67,"138992":55,"139":[55,67],"1390":67,"13901":67,"13917414":55,"139301":55,"1399":67,"140":[55,67],"1400":55,"1401":55,"1402989":58,"1403":55,"140398":55,"1404":55,"140676":67,"141":55,"1411":67,"14121":67,"1413":67,"14151":67,"142":[55,80],"1421":55,"1423":55,"14249":67,"1430":67,"143393":55,"143422":67,"1435":55,"1440":55,"144412":55,"1445":55,"144537":55,"1446":55,"1447":55,"145":[55,62],"1457":67,"146":67,"146572":55,"1466627":58,"1472":67,"1474":55,"1477":67,"1479":67,"147959":55,"148":55,"148328":67,"148383":58,"148515":55,"14895669":55,"14900775":55,"149418":55,"149694":55,"149889":67,"14th":55,"150":56,"1500":55,"1501":55,"1502":55,"1503":55,"150448":67,"1507":56,"150842":67,"150a":67,"1513":55,"151942":55,"152":[56,58],"1521":[55,67],"15264":95,"1527":67,"1531":55,"1532":55,"153217":67,"1538":55,"1539":55,"153995":67,"1544":67,"15479":55,"154888":67,"155":67,"1552":55,"15543":55,"15564":95,"1559":[20,21,55],"15591973":67,"155977":55,"15608":55,"156115":67,"1562":55,"1563":55,"1563887":67,"1569851":55,"157":55,"1570":55,"1575":67,"157648":67,"1577":55,"1581":55,"158109":55,"1583":55,"1585":55,"158504":67,"1591":67,"1594":55,"159782":67,"1600":55,"1601":55,"1605":55,"160717":67,"1609":56,"1612843":[14,17,18,86],"1614":55,"161553":55,"1621":55,"162381":55,"1625401":55,"162637":55,"1627":55,"162836":55,"16322":67,"163263":67,"1639":55,"1640":67,"164178":55,"164196":55,"1646":67,"1647":67,"165188":67,"16536":95,"1654":67,"1657":67,"165747":55,"1658":67,"1659":55,"1660":67,"166241":67,"1663":55,"166311":67,"166361":67,"1673":67,"1674":67,"1678":67,"168241":67,"1687":55,"1688":55,"168857":58,"16934775":55,"16946147":67,"16t20":2,"170":62,"1701":55,"1704":67,"170649":55,"1707":67,"1709":67,"170937":55,"171":62,"171473":55,"17148983":55,"1715":67,"1716":55,"1721":67,"1723":67,"1727":55,"17295":55,"173094":67,"1732604":58,"173298":55,"17357067":67,"1743":55,"1745098":58,"1746":55,"1748":67,"1755332":55,"1756":55,"175618":55,"17596":55,"175979":58,"1760":67,"176314":55,"177":67,"1771":55,"1772":67,"17759393":67,"1777":55,"177963":55,"178":62,"1781":67,"17815322":67,"1784":67,"178444":55,"17th":81,"180":[67,96],"1801":55,"180522":55,"1805842":55,"18062":55,"180715":58,"180782":55,"1809":55,"1811":55,"181275":55,"1817":55,"18178":55,"182036":67,"1822":67,"1832":67,"183352":55,"183375":67,"183612":55,"184":67,"184264":55,"18497199":55,"1850":55,"18508":55,"185354":55,"185651":55,"1857":55,"1867":67,"1868":[86,87],"1870":67,"187041":55,"187344":58,"1879":55,"187929":55,"1886":[55,67],"1888":62,"1893":55,"1898":55,"1900":[55,80],"190139":58,"1902":55,"19046033":67,"1906":[86,87],"19065":55,"1908":55,"191":62,"1910":55,"1912":67,"191385":55,"1914":67,"1915":55,"1918":55,"1920":[55,67],"1924":55,"1925":[55,67],"1926":55,"1928":[55,67],"192958":67,"1930":[55,67],"193406":55,"1935":55,"1936":55,"1937":55,"1939":67,"1940":[55,67],"1942":55,"1943":55,"1946":[55,67],"1947":55,"1948":[55,67],"1949":55,"194919":55,"1950":[55,67],"1951":[55,67],"19519283":55,"1952":55,"1953":[55,67],"1954":55,"1955":[55,67],"195585":67,"1956":[55,67],"1957":55,"195876":67,"1959":55,"195935":67,"195999":55,"1960":[55,56],"196083":67,"1962":55,"1963":[55,67],"1964":[55,67],"1965":67,"1966":55,"1967":55,"1969":[55,67],"1970":[56,59,67],"197095":67,"1971":67,"1972":[55,67],"1973":67,"19737067":55,"1974":55,"19746706":55,"1975":[55,56,67],"1976":[55,56,67],"1977":55,"19774":55,"1978":55,"1979":[55,67],"1980":[55,56,59,64,67,87],"1981":67,"1982":[55,67],"198279":55,"1983":56,"1984":[55,56,67],"1985":55,"1986":[55,56,67],"1987":[55,67],"198798":55,"1988":55,"1989":[55,56,67],"198904":67,"199":67,"1990":[55,67],"1991":67,"1992":[7,55,56,62,67],"1994":[55,56],"1995":[55,56],"1996":67,"1997":[55,67],"1999":[55,67],"199901":55,"19t17":95,"19th":67,"1_eq":95,"1_eq_":95,"1_eq_eqv_pga":95,"1_eq_stori":95,"1_hu":95,"1ft":56,"1st":[28,95],"200":[55,58,62,64,95],"2000":[55,56,59,68,96],"2001":[55,62,67],"2002":[55,62,66,67,80],"2003":55,"2004":55,"2005":[55,67],"2006":[55,56,67],"2007":67,"2009":[20,21,55],"200968":55,"2010":[55,67],"2011":[20,21,55,67],"2012":[55,62],"2013":[20,21,55,62,67],"2014":[62,67],"2015":[56,62,67],"2016":[62,66],"2017":[16,55,56,57,85],"2017a":62,"2017b":62,"2018":[2,54,55,57,58,64,67,81,82,85,87],"2019":[55,56,58,80,85,86,87,95],"2020":[62,64,80,81,85],"2020b":[55,62],"2021":[16,63,86],"2023":55,"202341":67,"202666":67,"2029":55,"2031":55,"203134":55,"2047":55,"204705":58,"20475":55,"205439":55,"205698":67,"20611304":55,"206414":67,"206436":55,"206556":55,"206797":55,"207":67,"207412":55,"20750768":67,"2087":55,"208743":55,"2087959":67,"2089":67,"2095":55,"209824":67,"20a":67,"210":[55,67],"2101":67,"211148":55,"2115":55,"2121":55,"2123":55,"212548":67,"21276":55,"212988":55,"2130":67,"213243":67,"2135":67,"21392565":67,"214":55,"2152":55,"216419":67,"216513":67,"2166":67,"216639":55,"2170":67,"217464":67,"217751":55,"2178323":55,"217859":67,"218":55,"2187":67,"2188":55,"218871":67,"2188825":55,"21916734":55,"219527":55,"219808":55,"22012428":55,"221":67,"2212":67,"221233":55,"221698":55,"221777":55,"2219328":58,"222356":67,"22256":67,"223":55,"2231":55,"22382":55,"224":67,"2242":55,"224327":55,"224622":55,"224762":55,"225009":67,"2257":58,"226104":67,"226362":55,"2265":67,"227124":55,"227272":55,"2275":55,"227931":67,"228":55,"228583":67,"228686":55,"2287":67,"228851":55,"228883":55,"2295":55,"2296":67,"2301":85,"230234":55,"230525":55,"230744":55,"2312":55,"231798":67,"231967":55,"232623":55,"23275":55,"233071":58,"2338":55,"233897":67,"234049":55,"234482":67,"2345":55,"234591":55,"234741":55,"235066":55,"235544":55,"236005":58,"236146":67,"236363":55,"237428":55,"2381368":55,"239888":55,"240365":55,"2404":67,"240902":67,"241762":55,"24254656":55,"2428":67,"2429":67,"242921":67,"243016":55,"2432":67,"2434":67,"2436621":55,"2441":55,"2442":55,"2445":55,"245537":55,"2460":55,"246312":55,"246895":67,"24709902":55,"24717":58,"247977":55,"248":62,"2482":67,"248203":55,"248491":55,"24985272":55,"249915":55,"2507":55,"251173":67,"2516":67,"2528801":67,"252925":55,"2544377":55,"2553":55,"2554610":[80,86],"2559":55,"2565":55,"256509":55,"256657":67,"257":67,"2570403":55,"257554":55,"2579":55,"258187":55,"25851":55,"259":[56,58],"259305":67,"259619":55,"25f":55,"260":62,"2603":67,"260454":55,"261":62,"261201":67,"261894":55,"26195":55,"262":62,"262635":55,"263":55,"26352851":55,"263656":55,"263786":55,"2645":67,"2645104":67,"264858":55,"26516228":55,"265228":55,"2668763":55,"2676":55,"2682":55,"268282":67,"269199":55,"269253":67,"270483":67,"27078":55,"270854":55,"271":55,"2714":67,"271623":55,"2718":55,"2719128":67,"2723":55,"2727":55,"272844":55,"273087":67,"27319":55,"27340785":67,"274":[56,66],"274023":55,"27414":67,"274213":58,"274482":67,"275082":55,"275578":55,"276":58,"2766":67,"27683":55,"276831":55,"277951":55,"278259":55,"278413":55,"278752":55,"279189":55,"279385":55,"279525":55,"279617":55,"279935":55,"2801":55,"2807":55,"280818":55,"280912":55,"28111":67,"281363":55,"2815":67,"281566":55,"2819":67,"2822713":58,"282283":55,"2825":55,"282696":67,"283":55,"283337":58,"28394272":55,"28405":55,"28433315":55,"28441":55,"284643":55,"28496809":55,"28504917":67,"2856875":67,"285753":55,"287545":55,"287807":55,"2879":67,"28815":55,"2882":55,"288628":55,"289933":55,"290":67,"29037529":55,"290475":55,"2905":55,"290726":55,"291144":67,"291789":55,"292209":55,"292861":55,"293419":67,"29342439":55,"293921":67,"294029":67,"2940373":55,"29581307":67,"295837":55,"296122":67,"296233":55,"296343":55,"296981":55,"297":80,"297607":55,"297986":55,"298113":67,"299325":55,"299534":67,"29979524":55,"29am":54,"2ddi":62,"2nd":[23,24,28,55,67,95],"300":67,"3001":[55,67],"3002":[55,67],"3003":[55,67],"30035":67,"3004":[55,67],"3005":[55,67],"300759":55,"301277":55,"3016":82,"301672":55,"3017":67,"3028326":58,"3029":55,"30293":67,"303556":67,"304152":55,"304428":55,"305":56,"305114":55,"305479":55,"306":[56,67],"3061":67,"307074":55,"307127":55,"307168":55,"3078":67,"307981":67,"308539":55,"3085663":67,"308922":67,"309735":55,"30th":54,"310":67,"3101":[55,67],"3102":[55,67],"310272":55,"3103":[55,67],"310588":67,"3108":67,"3109":55,"311157":55,"3112":67,"312556":55,"31265761":67,"313277":67,"3133":82,"31354056":67,"313927":67,"314":80,"314145":55,"31446286":55,"314794":67,"31554":67,"315643":55,"316075":55,"3166":55,"316765":55,"317665":55,"317942":55,"318737":67,"3189379":67,"31928":55,"320217":55,"320299":67,"32034007":67,"320703":55,"320812":67,"322011":55,"322128":55,"32229704":67,"322502":55,"32258811":67,"3226":67,"3227":67,"32283903":55,"32284517":67,"322915":55,"32293":67,"32312337":67,"32337":55,"323792":67,"323968":67,"324234":55,"324597":55,"324666":55,"32478959":67,"32483344":67,"3252134":67,"32521983":67,"32546032":67,"326":67,"326055":67,"326086":67,"32688437":67,"32736631":67,"327474":55,"32799866":55,"3280":56,"328562":55,"32906":55,"3295025":67,"329591":55,"330":67,"3300":55,"33002475":55,"3301":[55,67],"3303":[55,67],"3305":[55,67],"33050917":67,"33051161":67,"33058915":67,"330643":67,"33098611":67,"331043":55,"33133":67,"33159311":67,"33166965":67,"332":55,"332502":55,"33274543":55,"333375":67,"333566":55,"333671":55,"33369":67,"334":[55,67],"334181":55,"33452":55,"3346":55,"3347":55,"33482164":55,"334907":55,"335431":55,"335658":55,"33567688":67,"335722":55,"336114":55,"33669568":67,"336941":67,"337196":67,"337685":55,"337764":55,"33778":67,"338024":55,"338541":67,"338735":67,"338803":55,"33910772":67,"33975259":55,"3398157":58,"3401":[55,67],"340261":55,"34030729":67,"3404":55,"34071989":67,"340748":55,"3408":55,"34098334":67,"34148528":55,"34181906":55,"3419":67,"34198192":67,"342":55,"34250417":67,"34300615":55,"343779":67,"3439":67,"34403":55,"34463829":55,"345":55,"3450":55,"345442":67,"345973":55,"346":62,"3461":55,"34615797":55,"3463676":55,"346773":55,"34733604":55,"34773":58,"34775779":55,"34819":67,"348308":62,"34836023":67,"34837553":55,"34853":67,"3486":55,"34893143":67,"348989":67,"3490":67,"349468":67,"349723":55,"349802":55,"349899":55,"350157":67,"3502":[55,67],"350275":55,"3504":55,"3505":[55,67],"3505582":67,"3507":[55,67],"3507851":55,"35096457":55,"351043":55,"351221":67,"351482":55,"35149704":55,"35163518":55,"35167853":55,"3517208":55,"35190241":55,"351999":55,"35219284":67,"35230731":55,"352411":55,"35246716":55,"352836":55,"352883":67,"3533":55,"3534":67,"35355658":55,"3536":95,"35374924":55,"35374935":67,"3538":67,"35401653":55,"35403396":55,"35409178":55,"35417434":55,"35436861":55,"354467":67,"35480494":55,"35486056":55,"35505965":67,"3555":55,"3559832":55,"355985":55,"35622601":55,"356535":55,"35674682":55,"35700017":55,"35728377":55,"3574":67,"35771681":55,"357808":55,"35793003":55,"35805051":67,"35805361":55,"35818209":55,"358191":55,"35850232":67,"35871841":55,"359049":55,"35914703":55,"359178":55,"359354":67,"35945338":55,"359489":67,"35950971":55,"35963541":55,"35974596":67,"359819":55,"35994131":55,"36003129":55,"360231":55,"3604925":55,"360647":67,"36067243":55,"36117815":67,"36162631":67,"361982":67,"36214":55,"36254":55,"362971":55,"36320682":67,"36355401":55,"36369075":67,"3638256":55,"364416":67,"364497":55,"364634":55,"36492488":55,"365506":55,"3656245":55,"365914":67,"36632":67,"36661791":55,"36675582":55,"3667895":67,"36682316":55,"36696953":55,"36703147":55,"367184":55,"36734134":55,"36754787":55,"3676691":55,"36769548":55,"36778733":55,"36786531":55,"36835332":55,"36847723":67,"36860897":55,"36864162":67,"36879059":55,"36880762":67,"36895475":67,"368988":55,"369074":55,"36929958":55,"36948585":67,"36965582":67,"36968698":67,"369691":55,"36975058":67,"36979733":55,"36991241":55,"3701":55,"37013371":55,"37036284":55,"370481":67,"3706":95,"37060793":55,"370623":55,"370846":55,"3709536":55,"371001":67,"372023":67,"37236111":55,"3725323":55,"37262817":55,"37266302":55,"3728645":55,"37296747":55,"37314507":55,"373189":55,"373291":55,"373356":55,"37376697":55,"3739549":55,"37405039":55,"37426708":55,"37429318":55,"37436014":55,"37449952":55,"374685":67,"37471008":55,"37511144":67,"37511675":55,"37550337":55,"37554697":55,"375712":55,"375817":55,"37593068":55,"3761":67,"3763222":55,"37654852":55,"37671002":55,"37673702":55,"37722504":55,"377438":67,"37750129":55,"37757936":55,"37804612":55,"3786115":55,"378872":55,"3789":95,"37917983":55,"3794":55,"379407":55,"37946962":55,"379518":55,"37975402":55,"3800":54,"380312":55,"380323":67,"38033785":67,"38048154":55,"3805005":55,"38054021":67,"38061949":55,"3807495":55,"38078502":55,"38080956":55,"38083478":55,"380925":55,"38109885":55,"38113137":67,"38121603":55,"38131868":55,"38141874":55,"38154878":55,"38167563":55,"381728":55,"38176113":55,"382275":67,"382321":55,"3824345":55,"38288165":55,"38290256":55,"38294737":55,"38330438":55,"3836":95,"38391896":67,"383965":67,"385203":55,"385832":55,"386545":55,"386618":67,"3870":55,"387355":55,"3876498":58,"38820591":67,"388503":67,"38854454":55,"38863732":67,"388903":55,"3895872":55,"38958755":55,"3903":67,"390374":55,"3908":55,"39122853":55,"391779":67,"392906":67,"39295964":55,"39303":55,"394697":55,"395159":67,"39541385":55,"395492":67,"395626":55,"396069":55,"39622481":55,"39625358":67,"39675":55,"396857":55,"397261":55,"397614":67,"397732":55,"397794":55,"398234":55,"398829":67,"399208":55,"399307":55,"399385":58,"399399":55,"399702":55,"39973":67,"3dgeolog":85,"3dl":62,"400":55,"40000135":67,"400433":55,"40068093":55,"40077165":67,"40091217":55,"40096029":55,"4017":55,"402402":67,"40244716":55,"402613":55,"4029845":55,"40307302":55,"403195":55,"40329835":55,"403388":55,"40348935":67,"4036258":55,"40365222":67,"40428043":55,"40429133":55,"40443264":55,"4045":55,"40459451":55,"4047":67,"40489":55,"4049225":55,"405":55,"405597":55,"40574925":55,"4058745":55,"40613562":55,"4063255":55,"406687":67,"406792":55,"40707927":55,"407216":67,"40735685":55,"407475":55,"40752613":55,"40761185":55,"40781294":55,"40784":67,"407852":55,"408":55,"408197":55,"40830686":55,"408389":55,"40850823":55,"40898983":55,"408992":55,"40917857":55,"40925267":55,"40969176":67,"40978279":55,"40999679":67,"410":[55,67],"41008444":55,"410327":55,"410497":67,"410933":55,"411555":67,"411583":55,"4119":55,"412257":55,"41227522":67,"4123":67,"4124":55,"4125":67,"412587":58,"412879":55,"412927":55,"413455":55,"41386475":55,"41401886":55,"41406922":67,"414387":67,"41456687":67,"4149":67,"41510563":67,"415388":55,"415481":55,"4155228":55,"415552":55,"41599567":55,"416":55,"41602305":67,"41651021":55,"416705":55,"41696374":55,"41713554":55,"417383":55,"417384":55,"41743749":67,"41756243":55,"41770296":55,"41774422":67,"41779165":67,"41783591":55,"4181724":55,"418313":55,"41845336":55,"41846797":67,"41855289":55,"41869082":67,"419055":67,"4191288":55,"419245":55,"4193":67,"4195965":55,"42001403":55,"420015":67,"420111":55,"420344":55,"421027":55,"421433":55,"421816":55,"42213724":67,"422316":67,"42232874":55,"42235362":55,"42289105":55,"423":67,"42300718":55,"423227":67,"423747":55,"4238115":55,"42388503":67,"424":58,"42428797":55,"42453449":55,"424535":55,"424598":67,"42469566":67,"42491434":55,"42493183":55,"4249531":55,"425":55,"42513813":55,"4251975":55,"4254":67,"425406":55,"425644":67,"42564427":55,"425699":67,"42583305":55,"4272975":55,"42736843":55,"42783422":55,"42787204":67,"42807996":55,"42817944":55,"42859749":55,"42897166":67,"42913186":55,"4295234":55,"429558":55,"430042":55,"4301":67,"43054298":67,"43060293":55,"430821":55,"43117522":67,"431896":55,"43193":55,"4320585":67,"432397":55,"432851":55,"43394222":55,"43408199":55,"43417403":55,"43443761":55,"434654":67,"43481749":55,"43505302":55,"43505349":55,"435663":55,"4369536":55,"4371055":55,"43716937":55,"43746677":55,"438485":55,"4389745":67,"4393274":55,"43988434":55,"43988439":55,"440":55,"4400":55,"44002337":55,"44004104":55,"44008616":67,"44011018":55,"44024029":55,"44029794":55,"440426":55,"44089743":67,"44091582":55,"44111612":55,"44114268":55,"44120101":55,"44180066":55,"44195231":67,"44211737":55,"4421787":55,"44218013":55,"442586":55,"442609":55,"44267594":55,"44275733":67,"4429":67,"44296699":55,"44304214":55,"44340273":55,"4438384":67,"443902":55,"44474056":55,"44507169":55,"445146":67,"44517568":55,"44528008":55,"445524":55,"445706":55,"44575062":55,"446193":55,"44661183":55,"44689837":55,"44689978":55,"446977":55,"446991":55,"447":95,"447163":55,"44721":55,"44757492":55,"447756":55,"447759":67,"4478482":55,"44786077":55,"44795731":55,"448392":55,"4485495":55,"44873793":55,"448827":55,"44890588":55,"44902":55,"44921969":55,"44961931":55,"450":66,"4501":55,"45048978":55,"45063378":55,"45065":55,"450688":55,"450689":58,"450713":67,"450722":55,"45072537":55,"45075627":55,"45078828":55,"45100728":55,"451036":55,"45108384":55,"45229668":67,"45236519":55,"452544":62,"45290256":55,"453":55,"45316":67,"453306":55,"453496":67,"4535545":55,"4539":95,"454389":55,"45456624":55,"454613":55,"45487155":55,"4557":55,"455822":67,"455973":55,"4560766":55,"45662953":55,"45687416":55,"456941":55,"45705066":55,"45788902":55,"4579":95,"45892115":55,"459606":67,"45973317":67,"459759":55,"46005095":55,"4606":55,"46138687":55,"46150522":67,"46162":58,"46164672":55,"461943":55,"46234038":67,"46237926":67,"46252452":67,"462592":67,"46263153":67,"46263614":55,"46286267":55,"46305125":55,"46310583":55,"463152":55,"46393":58,"46405256":55,"464131":55,"46455009":55,"464645":55,"4655905":67,"465598":55,"46562584":55,"46578565":67,"465836":67,"465977":67,"466678":55,"467603":67,"46761":67,"468324":67,"468344":67,"468681":55,"4704":67,"471026":55,"47164001":55,"47177351":55,"471829":55,"472991":67,"473378":55,"4739":67,"4740":67,"4746":67,"475581":55,"4767":55,"476775":67,"47740387":55,"477588":55,"477788":55,"477977":55,"47802367":67,"478353":55,"47899714":55,"47934":58,"48029156":67,"480485":67,"480575":55,"4815":55,"481501":55,"481933":55,"482544":55,"482671":55,"48311871":55,"483559":67,"4836":67,"484837":67,"4865":67,"487706":67,"48782533":55,"48954":67,"489728":67,"489766":55,"490194":55,"490756":67,"49105397":55,"491209":55,"49154804":55,"4916":55,"49185":55,"492116":67,"493":67,"49300661":67,"49318849":55,"49340431":55,"49364285":55,"49374336":67,"494":95,"49422256":67,"49578346":55,"49601448":55,"497579":55,"49783":55,"49792365":55,"49795458":55,"4980925":95,"49818":55,"49823742":55,"498669":67,"498861":55,"499":55,"499083":67,"49940658":67,"49982203":67,"4th":55,"500":[55,85],"50032485":67,"500438":55,"500518":55,"50057162":67,"50057463":55,"5006":67,"50060793":55,"50078689":55,"50079286":55,"501093":67,"501236":55,"50132252":55,"50149":67,"50184309":67,"50211":55,"50212761":67,"502536":67,"50360821":55,"50396983":67,"5040753":55,"50445848":55,"50482245":55,"50493704":55,"505":[55,67],"50597053":67,"505974":55,"505979":55,"50636":67,"50743266":67,"50745764":55,"5075":67,"50772892":67,"508067":58,"508277":55,"508544":67,"510":55,"5100":55,"51043841":67,"51049178":55,"51068657":55,"5110":55,"511018":55,"5111":55,"51156129":55,"51157318":67,"5118":55,"511821":67,"512079":55,"51208":67,"51209101":55,"51212":67,"51271952":55,"51272043":55,"51301697":55,"513847":55,"51390851":67,"513966":55,"51415736":55,"51418":55,"514269":55,"51448533":67,"51492155":67,"514928":67,"51508087":67,"515226":67,"51523307":55,"515244":67,"515454":67,"51586363":67,"51607199":55,"51626002":55,"516266":55,"517052":55,"51723828":67,"517374":67,"51763481":67,"5177291":55,"517747":55,"51789825":55,"5179":67,"51815":55,"51848316":67,"518553":67,"518665":67,"51922424":55,"5192539":55,"519583":55,"519675":55,"5203292":67,"5207":55,"5213":55,"52154366":67,"5219":67,"52195154":55,"5220":55,"52216105":67,"52260519":67,"523164":55,"523523":55,"52373536":67,"52408":67,"52426565":55,"52444156":55,"52478617":67,"52490167":67,"52490788":67,"525201":67,"525731":55,"52575156":67,"525874":55,"526185":55,"526535":55,"527147":55,"527813":55,"528":67,"5281":[55,80,85,86],"528286":55,"529":67,"52913098":55,"529443":67,"529502":55,"52988364":55,"530":55,"53042506":67,"53238":55,"532425":55,"53256438":55,"53290603":55,"53292918":55,"53318557":55,"534263":55,"5346216":55,"5346575":67,"534814":67,"535":55,"535946":67,"53607688":67,"5361019":67,"53616832":67,"536226":55,"5364916":55,"53655555":67,"536699":67,"5370114":67,"53710494":55,"53733256":67,"538":55,"538024":67,"538498":67,"538718":67,"53921572":55,"5395":67,"53956996":55,"53990332":55,"540":55,"540465":55,"54178":55,"544":55,"5440245":55,"545171":67,"545316":55,"545773":55,"54588115":67,"54603886":55,"54702848":55,"547426":55,"54746456":67,"54763197":67,"54803791":67,"54847268":55,"5489":67,"54891133":55,"549106":64,"549161":55,"549278":55,"549772":55,"5503":55,"55092647":67,"55104077":55,"55176238":55,"552295":55,"55273":55,"553":55,"553841":55,"55398":55,"554635":55,"555":67,"555927":55,"55635352":55,"556429":55,"556608":55,"557":55,"557548":55,"55785517":55,"55845149":55,"55861":55,"558686":55,"558834":55,"559134":55,"559234":55,"56070515":55,"56085682":55,"561301":67,"5617":55,"5618683":55,"562":67,"56264486":55,"5638":55,"5644":55,"565628":55,"566":67,"566348":67,"5675163":55,"567875":67,"56824444":55,"5687":67,"568874":55,"569199":55,"569p":[58,64],"5701":[55,67],"5702":55,"5703":[55,67],"5704":55,"57119258":55,"571397":55,"57180384":55,"57236549":67,"572563":55,"572695":67,"573665":55,"574061":67,"5741":55,"57426":55,"576225":55,"577113":55,"577422":55,"57743371":67,"577652":67,"577915":55,"578843":55,"57955631":55,"57963662":55,"5800":67,"58021183":55,"580244":55,"58051923":67,"58059091":67,"581044":55,"581869":55,"582127":55,"58453":55,"584675":55,"584886":55,"585787":58,"58580746":67,"58580994":55,"58604463":55,"58687098":55,"58771563":67,"587907":55,"588":[55,67],"58877":67,"588788":55,"58891847":55,"589":67,"58973262":55,"58989699":55,"590":67,"590074":55,"5906803":55,"5908878":55,"591":67,"59121644":55,"591237":67,"591502":55,"59178059":67,"592":67,"592704":55,"592793":67,"5928":55,"59309484":55,"59335585":55,"59340885":55,"594352":67,"59520012":67,"595549":55,"596155":55,"5964249":55,"597915":67,"59884301":55,"5988975":55,"600":[55,62,66],"60016024":67,"6002":67,"60025":67,"60035":55,"60072349":55,"600954":67,"601":55,"601067":55,"6014":55,"601687":67,"60187232":55,"601925":67,"602423":55,"602674":55,"603909":55,"604":67,"60453143":55,"604626":55,"60466135":67,"6057":55,"606":55,"606509":55,"60663497":67,"607376":55,"607767":67,"60794904":55,"60824093":55,"6092315":67,"609397":67,"609405":67,"60991103":55,"610":55,"610088":67,"6101":55,"61011093":55,"610149":55,"6102":[55,67],"6103":[55,67],"61033955":55,"6104":55,"6105":55,"6106":[55,67],"6107":55,"6108":55,"6109":[55,67],"6110":[55,67],"6111":55,"6112":[55,67],"6113":55,"6114":55,"6115":55,"61287565":67,"61302018":67,"613535":55,"6142264":55,"61496261":67,"61579118":55,"616986":55,"618":55,"619676":55,"6199":55,"62059":67,"621223":67,"621733":55,"622":67,"62230206":55,"623":55,"62310779":55,"6234253":55,"6236":55,"624":[55,67],"6248":67,"625":67,"6256":67,"62687073":55,"62693":58,"627":67,"627018":67,"62778897":55,"62780063":67,"629403":67,"62949098":67,"630":55,"63031087":55,"630311":67,"6312":55,"6316":55,"63161936":55,"6318":55,"63235":58,"63237177":55,"6324373":55,"63400599":55,"634215":55,"6343656":55,"63454872":55,"63472322":55,"63472865":55,"63481231":55,"6352":55,"6353":55,"635654":67,"636058":55,"636383":67,"637147":67,"63718544":55,"637253":55,"63738016":67,"63741":58,"63842395":67,"63912838":55,"6393":67,"63939751":55,"6395":55,"63968079":67,"63984362":55,"64006741":67,"640181":55,"64185131":67,"6428":55,"642906":55,"643":55,"644":67,"64435389":55,"644393":55,"64444635":67,"64459394":55,"644715":67,"64498249":55,"646067":55,"64675496":55,"64734046":55,"64751059":55,"647832":55,"6481255":55,"648225":55,"6491":55,"64934151":67,"64970618":67,"6497497":67,"65027125":67,"650378":55,"650975":67,"651525":55,"651641":55,"65166561":67,"652884":67,"653621":67,"654":55,"654877":55,"655717":67,"655963":67,"65653012":55,"65681325":55,"656891":55,"657249":55,"657446":55,"658":55,"658502":55,"658668":67,"6588":67,"659439":55,"659716":55,"660":67,"6602":67,"66090846":55,"661":55,"66109648":55,"6629":55,"66345925":55,"664035":55,"664046":67,"66442193":67,"665":55,"66572284":55,"666217":55,"66656114":55,"667723":67,"669":55,"669075":67,"669126":55,"66977771":55,"670302":55,"67068861":55,"671486":67,"672024":67,"67352854":55,"673715":55,"67372":55,"675":67,"67553498":67,"676326":67,"67638697":67,"676665":67,"67703156":67,"678075":67,"67831622":67,"678898":55,"679007":58,"6793":55,"679332":55,"679668":55,"680":55,"680286":55,"680b02ff9b4348409a2f4ccd4c238215":55,"681582":55,"682753":67,"6828":55,"683311":55,"686446":67,"686507":55,"686804":55,"686887":67,"687128":55,"687154":55,"68832823":55,"68833586":55,"68854":55,"689008":67,"6891":55,"6896":67,"689917":55,"69006206":55,"690975":55,"69184811":55,"6924":55,"69254383":55,"69262817":55,"6935":67,"69356":55,"693621":55,"69391":55,"6941":55,"6943":55,"695963":55,"696":55,"696548":55,"6966952":55,"696793":55,"69681134":55,"696883":67,"69691046":55,"69731535":55,"697459":55,"697804":55,"698438":67,"698677":55,"698795":55,"699":67,"699296":55,"699586":55,"700":55,"700124":55,"7002":95,"702235":55,"702477":55,"702908":58,"70291661":67,"703178":55,"703189":67,"704587":55,"704786":55,"705353":55,"706048":67,"7065761":67,"707":55,"707241":55,"708":55,"7080":55,"709":[55,67],"709016":67,"70936894":55,"70mph":56,"71108713":67,"711171":55,"71132":67,"711555":55,"7116":55,"7117992":55,"712312":55,"7124919":55,"7126":55,"713":67,"713326":55,"714629":67,"71492095":55,"714953":55,"715":55,"71503912":55,"7153":67,"71640726":55,"717197":67,"717668":55,"718091":67,"718521":55,"71857":55,"718698":67,"71893":55,"718p":[58,64],"719761":55,"71979952":55,"71993727":67,"720169":67,"721":[55,64],"72132829":55,"7215989":55,"722024":55,"722298":55,"722552":67,"722748":67,"72388":55,"724":55,"724006":67,"725":55,"7252736":55,"726":67,"726024":67,"72624303":55,"726698":55,"72695846":67,"727":67,"72701947":67,"727199":55,"72759818":55,"72781306":67,"727957":55,"72816966":55,"729":55,"7291":55,"730":55,"730283":55,"7304":67,"73106045":55,"7312":67,"7316":55,"7321":[55,67],"732799":55,"73368523":55,"733739":55,"735":55,"73550746":55,"73683343":67,"737682":67,"737847":55,"738":55,"738514":67,"738619":67,"73966":55,"73994":55,"740":55,"7404598":55,"7406916":67,"7408069":55,"742973":55,"7430":67,"743177":67,"744833":67,"746":55,"74663":67,"747":67,"7471618":55,"747398":67,"747986":67,"75013717":55,"75018492":55,"75021639":55,"7503":67,"75034":55,"750995":55,"75118505":55,"75182097":55,"751923":67,"75207506":55,"752489":55,"752943":67,"753413":67,"753477":67,"753508":55,"75398001":55,"75424051":55,"754935":67,"75576796":55,"756156":55,"756199":67,"75729323":67,"75842545":55,"75863948":55,"7600727":55,"760161":55,"760228":67,"761":55,"761678":55,"763425":55,"76430939":55,"764787":55,"76489":55,"76504316":67,"76512643":55,"76568013":55,"766":67,"766004":55,"766349":55,"7670378":67,"767642":55,"7679":55,"768135":67,"76835396":55,"76983":55,"769858":67,"77185":55,"772":54,"77276":55,"774066":55,"774817":55,"77500968":67,"775102":55,"77541405":55,"776":55,"77601017":55,"77695":55,"777489":55,"777841":55,"778":67,"77835066":55,"77842456":67,"778584":58,"779298":55,"78026092":55,"78056863":67,"782":55,"78210765":55,"783318":55,"78339242":67,"784778":55,"785062":67,"785134":67,"78513599":55,"78561237":55,"78573505":55,"786067":58,"789146":55,"789225":55,"789865":55,"79025314":55,"79026":55,"79051":67,"79076398":55,"7907762":67,"7912334":55,"79125476":67,"79143":67,"79157891":55,"791689":67,"792149":55,"79253203":55,"79268419":55,"79309387":55,"79326324":67,"793273":55,"793626":67,"794725":55,"795":55,"795185":55,"795455":55,"795496":55,"795728":55,"79709601":55,"7978336":55,"798218":55,"798676":55,"799662":67,"800095":55,"80075837":55,"801":55,"8010789":55,"8012":67,"801466":55,"80170663":55,"802":67,"8025099":55,"802644":67,"802825":67,"80298759":55,"803":56,"803924":55,"804053":55,"80423137":55,"804395":55,"805":55,"805107":55,"807314":55,"807583":67,"807886":55,"807978":67,"808034":67,"808569":55,"808796":55,"80993031":67,"810075":55,"811762":55,"812483":55,"814":55,"814004":55,"81421115":55,"8151":95,"815168":67,"815188":55,"81597":67,"816196":55,"816223":58,"816269":55,"8162957":55,"817041":55,"817587":55,"818181":67,"818368":55,"81874382":55,"82004957":55,"820097":67,"820268":55,"820556":55,"8206":67,"822":55,"82256008":55,"823":55,"82523931":55,"826073":55,"82647645":55,"826589":67,"827925":67,"828":[55,64],"82814986":67,"828453":55,"82853722":55,"829":55,"829059":55,"829142":55,"829234":55,"82945332":67,"829552":55,"82998617":67,"83106146":67,"831084":55,"83141577":67,"831509":67,"831701":55,"831915":55,"83210025":67,"832225":55,"832352":55,"83299507":55,"833":55,"833457":55,"833592":67,"83397853":55,"83402395":67,"834135":67,"834628":55,"83465715":55,"834901":67,"835":55,"835327":55,"835871":55,"835999":67,"83627987":55,"837":55,"83714513":55,"837885":55,"837938":55,"838":67,"83816694":55,"838243":55,"83825392":67,"839937":55,"84013057":55,"840733":55,"841921":55,"84228536":55,"842371":55,"842477":55,"842487":67,"84262261":67,"842736":67,"84367394":67,"8439241":55,"844667":55,"844813":67,"845021":67,"846352":67,"846395":58,"846639":67,"847121":55,"84739883":67,"847478":55,"847969":55,"84821412":55,"849008":55,"849111":67,"849884":55,"84m":82,"850027":55,"85152":67,"851606":55,"852223":55,"85465":55,"855157":55,"855345":67,"856207":55,"856414":55,"857506":55,"857835":55,"85847":55,"859038":55,"8592283":55,"859327":55,"859987":55,"8601":2,"860155":55,"86017449":55,"860459":55,"86361285":55,"864088":55,"86414":55,"864449":55,"865198":55,"86560282":55,"86659037":55,"868":55,"869282":55,"869911":55,"869974":55,"871242":55,"873379":67,"87341587":55,"87395742":55,"874":55,"874126":55,"875469":55,"876":55,"8767":95,"877356":67,"877889":67,"87825028":55,"87843411":55,"878935":67,"880":55,"880755":55,"882173":67,"88378":55,"88500131":55,"88736232":55,"887523":55,"888628":55,"888778":67,"889109":55,"889712":55,"890":55,"89029":55,"890882":67,"891509":55,"892764":55,"892811":55,"8932656":55,"89537976":67,"895767":67,"896463":67,"896558":67,"897572":55,"8981084":55,"89921":67,"899803":55,"900":55,"900169":55,"900371":67,"901148":55,"90155":55,"901876":55,"903":56,"904077":55,"904623":55,"906":55,"90623691":55,"906671":55,"906884":55,"9072":55,"90733":55,"908":55,"9085271":55,"908712":55,"908825":55,"9089":55,"909":62,"90921":55,"910":55,"9101366":67,"910665":58,"911014":55,"911436":55,"91174034":55,"912538":58,"913045":55,"91366635":55,"914":55,"914356":55,"914689":55,"915541":[20,21],"916509":55,"916872":55,"917324":67,"917414":55,"918422":55,"918542":67,"918629":55,"919163":55,"91919315":67,"919915":67,"9203862":55,"920396":55,"9205783":55,"920912":55,"921695":55,"9220":67,"922563":67,"922785":55,"923701":55,"924886":67,"92523624":55,"925304":67,"927":67,"927698":55,"9281":67,"928327":55,"92888736":55,"929286":55,"929432":67,"929492":55,"929898":55,"9300":67,"930033":55,"930338":55,"9306":67,"9309":67,"9314":67,"931614":55,"93178867":55,"933452":55,"933531":55,"933622":55,"933799":67,"934005":55,"93451235":55,"934622":55,"934797":55,"93521022":67,"935787":55,"936":55,"936404":67,"936675":67,"93726101":55,"937296":67,"93759089":67,"938":[55,62],"93881638":67,"938833":67,"93892":55,"941781":67,"942559":67,"943158":67,"943249":55,"943361":55,"9434547":55,"943662":55,"94384":55,"94406":55,"94421":55,"945":55,"946193":55,"946298":67,"946858":55,"947":[55,67],"94726262":55,"947663":55,"947851":55,"948074":55,"948311":55,"94886879":55,"949":67,"95018":58,"950731":67,"951461":55,"951543":55,"952091":67,"952318":55,"953681":55,"954051":67,"954306":55,"95482958":55,"955791":55,"95638044":55,"956985":55,"957108":67,"957248":67,"957762":55,"958":55,"958475":55,"95855826":55,"959":67,"96108":55,"961146":58,"961668":55,"962265":55,"9626489":67,"963":55,"963399":55,"963662":55,"964":67,"96418245":55,"964489":55,"964568":55,"96514477":55,"96561069":67,"965885":55,"966":55,"96684013":55,"967372":55,"96825807":55,"96846":55,"969062":55,"969196":55,"97018":55,"970952":67,"971057":55,"971324":55,"972278":67,"97256963":55,"973":[20,21],"973154":67,"974749":55,"975231":55,"97558":67,"97565766":67,"976492":55,"97712625":55,"9773282":67,"977702":55,"97826931":55,"978387":55,"978972":55,"979":55,"97912318":55,"979664":67,"980749":55,"980917":55,"980923":55,"98146803":55,"981904":55,"98222828":55,"98307329":55,"983086":55,"983223":55,"983588":67,"984216":55,"984517":55,"984664":67,"985141":55,"98611727":55,"98710693":55,"988371":55,"988734":55,"989166":55,"989409":55,"989561":55,"98979":55,"990":55,"990314":67,"990752":55,"992096":55,"99212":55,"992315":67,"99249":55,"99266435":55,"99287":55,"993081":55,"99333269":67,"994375":55,"994716":67,"995288":55,"995882":55,"996246":55,"996624":55,"996965":55,"997499":55,"997612":55,"997811":55,"998133":55,"998584":55,"999":[55,67],"999786":67,"abstract":15,"boolean":[3,5],"break":[4,58,62,64,81],"case":[3,6,7,34,48,52,55,56,57,58,61,62,63,65,67,80,96,97],"class":[1,2,3,4,5,6,7,15,20,33,54,55,57,58,61,64,80,87,96,101],"const":[55,56],"default":[3,5,6,7,25,55,56,57,62,80,89,95,96,99],"export":[3,99],"final":[3,32,54,55,56],"float":[3,6,7,54,55,56],"function":[3,4,5,6,7,15,20,23,24,25,32,33,35,48,50,51,52,53,54,55,56,58,68,81,82,87,88,90,95,98,102],"import":[3,20,23,24,25,33,50,54,56,62,82],"int":[3,6,7,54],"long":[17,18,34,54,55,56,96],"new":[7,23,24,25,27,55,56,60,61,62,63,64,65,67,83,84,91,93,95],"public":[20,21,54,80,82],"return":[1,3,4,5,6,7,33,50,51,52,54],"short":[1,6,53,54,55,56],"static":82,"switch":96,"true":[2,3,5,6,7,95,96,99],"try":[7,54,91],"while":[7,33,55,56,62,63,65,67,68,82,90,95,96],"zsarn\u00f3czai":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"zsarn\u00f3czay20":81,AND:16,ARE:16,AVE:[55,67],And:[82,100],BUT:16,CGs:34,DMs:[32,33,99],DVs:[23,24,32,33,90,99],FGs:[4,34],FOR:16,For:[3,6,15,20,34,54,55,56,57,58,59,62,64,68,80,82,84,87,88,93,96],GIS:62,Going:54,IDs:[55,96],IMs:33,Its:[6,64,102],LHS:[7,25],NOT:16,Not:[6,34],One:[55,87],PGs:[6,34],PWS:[58,62,64,66,67],RES:[5,55,56],RMS:62,RVs:7,Res:[54,55,56,85,87],SUCH:16,Such:[5,7,20,33,34,48,63,65],THE:16,THe:[68,82,88],That:[20,95,96],The:[1,2,3,4,5,6,7,13,15,16,17,18,20,21,23,24,25,26,27,30,32,33,34,35,51,53,54,55,56,57,58,59,61,62,63,64,67,68,80,81,82,84,85,86,87,88,89,90,93,94,95,96,97,98,99,101,102],Their:[56,61,62],There:[6,20,61,82,84,95,98],These:[4,6,20,23,24,25,27,32,33,34,48,49,50,51,52,53,55,56,57,58,62,63,65,68,80,82,85,88,89,96,99,101],UQS:20,USE:16,Use:[6,7,25,50,54,55,56,62,63,80,96,100],Uses:7,Using:[7,33,56,81,90,95],With:61,YES:[55,67],Yes:[55,56],_agg:97,_calc_collaps:3,_calc_collapse_injuri:3,_calc_damag:3,_calc_irrepar:3,_calc_non_collapse_injuri:3,_calc_red_tag:3,_calc_repair_cost_and_tim:3,_create_fragility_group:3,_create_rv_demand:3,_create_rv_fragil:3,_create_rv_injuri:3,_create_rv_quant:3,_create_rv_red_tag:3,_create_rv_repair:3,_method:96,_stat:97,abbrevi:[20,55,102],abil:[25,61,62,84],abl:[33,54],about:[3,5,23,24,33,34,50,54,56,64,68,75,80,82,86,87,88,91,95,96,102],abov:[4,6,7,16,33,35,48,54,55,56,58,59,61,62,67,84,85,88,93,95,96,99],abrahamson:[85,87],absecon:[55,67],absenc:57,absolut:51,academi:[20,21],acceler:[6,33,34,81,85,88,95,96,98],accelerogram:89,accept:[5,34],access:[6,54,61,64,86,87],accomend:87,accommod:33,accompani:[62,63,65],accord:[7,15,34,50,55,56,57,62],accordingli:[62,68,82],account:[62,68,81,88,89],accumul:64,accur:[51,52,55,57,58],accuraci:[33,51,55,57],achiev:[55,96],acknowledg:[63,75,86,102],acronym:6,across:[55,62,64,81,82,96],act:61,action:[15,55,56,62,64,82],activ:[20,62],actual:[62,64],adam:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],adamz:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],adapt:[25,56,68,88],adcirc:[62,63],adcirc_exampl:62,adcirc_pwd:62,adcirc_sitepwd:62,adcirc_waterelev:62,add:[3,7],add_rv:7,add_rv_set:7,added:[20,23,24,25,53,87,96],addinfo_ruleset:56,addinfo_ruleset_concret:56,addinfo_ruleset_ef:56,addinfo_ruleset_flood:56,addinfo_ruleset_masonri:56,addinfo_ruleset_metavar:56,addinfo_ruleset_mh:56,addinfo_ruleset_njdep:55,addinfo_ruleset_steel:56,addinfo_ruleset_wood:56,adding:[27,99],addit:[3,5,20,23,24,25,33,48,50,53,54,57,62,63,65,80,81,82,87,88,89,96,99,102],addition:54,additionaluncertainti:96,address:[20,54,55,56,67],adjac:[55,57],adjust:[7,33,56,57,62],administr:[54,82],adopt:[55,56,62,63,64,65,87],adress:54,adriat:55,advanc:[20,61,62,84],advantag:[7,33,55],advis:[16,63,65],aerial:56,aerodynam:62,affair:63,affect:[3,6,55,61,62,96],affected_area:[6,96],aforement:[55,62],after:[33,35,53,55,56,96],again:[20,56],against:[25,48,57],agarag:[55,56],age:[55,56],agenc:[58,64,81,87],aggreg:[7,32,61,82,97],aggregate_result:3,agr1:[55,56,58,67],agr:[5,55,56],agreement:[4,6,67,82],agri:[55,56],agricultur:[55,56],aid:[15,20,25],aim:[32,33,34],ajai:63,alameda:87,alan:7,alaska:54,albani:55,aleatori:[68,88],alexandro:63,algorithm:[25,51,52,55,85],align:55,all:[3,4,5,6,7,16,25,32,34,48,50,53,54,56,58,61,64,67,68,81,86,88,95,96,97,99],alloc:58,allow:[6,7,15,20,23,24,25,30,32,33,34,35,48,56,58,82,95,96,99],almost:[33,56],along:[34,56,62,68,80,88],alpha:[7,66],alpha_:66,alpha_c:66,alpha_lim:7,alphanumer:55,alreadi:[6,51,52,55,56,62,96],also:[4,5,6,20,32,34,35,48,50,52,55,56,57,59,62,64,80,81,82,87,89,90,96,97,102],altern:[62,90],although:[33,55,56,96],alwai:[7,33,54],amend:56,american:[62,66],amherst:67,among:[6,32,33,68,96],amongst:20,amount:[3,6,15,32,33,34,55,95,96],ana:20,analys:[33,48,61,81,87,88,89],analysi:[6,13,20,23,24,25,48,55,56,61,64,82,84,87,88,90,96,97,101],analysisadopt:[55,67],analysisdefault:[55,67],analyt:[25,62,68],anchor:[7,81],anchorag:81,anchoragebuild:54,andrea:[86,87],andrew:63,angl:68,ani:[5,6,7,14,16,17,18,33,34,50,55,56,57,60,61,62,80,83,84,86,89,95,96,98],ann:[17,18],annapoli:55,annual:[55,64],anonym:89,anoth:[6,7,15,34,35,96],anticip:[55,57],anyth:[55,56],apart:[54,55,56,62],apartmen:54,apawood:56,apex:55,api:[55,101,102],app:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102],append:54,appli:[5,6,7,15,34,55,56,58,62,63,68,86,90,96],applic:[5,15,33,55,56,61,63,64,65,80,84,85,89,91,96,100,102],applkic:25,apply_correl:7,apprais:55,appreci:[63,89],approach:[6,30,32,33,34,55,56,58,61,62,64,87,95,96],appropri:[34,48,51,52,56,96],approv:[54,56,95],approxim:[6,33,54,55,61,62,64,81,84,87,88],apt:[55,56],ara:62,ara_exampl:62,ara_pw:62,arbitrari:[23,24,34,35,55,62,96],arcgi:55,archaic:[23,24],archetyp:[61,84],architectur:[33,55],archiv:62,arctic:55,area:[3,6,34,54,55,56,57,60,62,63,64,75,80,81,82,83,85,86,87,91,96],areasqft:55,arg:[3,99],argo:55,argument:99,argument_nam:99,argument_valu:99,aris:16,armi:62,around:95,arrai:[3,6,51],arriv:96,art:[33,55],articl:56,artifici:[55,89],asc:[55,62,66],asce16:[62,66],ascend:6,aspect:[63,65],asphalt:[56,57],aspir:[61,84],ass:25,assem:[23,24],assembl:[3,4,23,24,32,33,55,82,99],assess:[3,5,6,20,23,24,26,27,31,34,48,53,54,55,57,58,62,64,67,75,81,82,86,87,90,95,96,98,101,102],assessment_typ:5,assessor:[54,55,57,64,80,87],asset:[5,6,23,24,33,34,58,59,61,62,63,64,75,82,86,87,88,90,102],assign:[3,4,6,7,25,34,35,48,51,57,63,64,65,68,85,87,96],assist:63,assoc:80,associ:[23,24,25,54,55,56,58,62,63,64,87,96],assum:[3,4,5,6,30,48,54,55,56,58,62,68,93,95,96,98],assumpt:[1,5,20,55,56,61,63,65,84],assur:[55,57],atc20:[55,62],atc:[34,48,49,55,62,96],atcouncil:[55,62],atlant:[55,56,57,59,61,62,64,65,67,87],atmospher:[62,66],atom:[34,97],attach:[55,56,58,68,81],attain:55,attempt:7,attent:50,attibut:[56,68],attribut:[3,5,6,7,33,57,58,61,63,64,65,68,80,84,87,96],audienc:[63,65],augment:[56,64,87],auotmat:55,author:[14,17,18,57,86,95],auto:[0,23,24,34,54,90],auto_hu_nj:[63,65],auto_popul:1,auto_script_path:1,autom:[15,54,55,61,63,65,84,90],automat:[5,7,23,24,55,61,84,93],avaerag:56,avail:[4,5,6,20,23,24,25,27,32,33,35,48,53,54,56,57,59,61,62,63,68,80,82,90,93,95,96,99,101],avenu:[55,67],averag:[54,55,56,59,62,66,67,80,82],avg:[55,56],avgjantemp:[55,56,67],avial:49,avoid:[58,91,95],awai:[54,58],awar:64,axes:35,b1011:96,b1031:95,b2012:96,back:[54,61,64,84],backbon:55,backbtn:54,backbutton:54,backend:[20,64,87,101],background:[63,65,90,102],backup:55,backuppow:55,bai:[55,64,67,80,82,85,86,87],baker:[17,18],balanc:64,baltimor:[55,56],bank:[54,55,56],bar:81,barbaro:63,bargaintown:67,barrier:20,base:[0,3,6,7,14,17,18,20,23,24,25,27,32,33,34,35,51,53,55,56,57,58,62,64,68,80,81,82,85,87,90,95,101,102],baselin:52,basement:[55,56,58],basementtyp:[55,56],basi:[3,7,56,81,95,96],basic:[2,20,25,33,48,62,68,96],basicattri:55,basin:55,basisofestim:96,batch:55,bathymetri:62,bayesian:25,bayshor:67,beach:[17,18,55,62],beachfront:64,beam:[56,95],bear:62,beautifulsoup:54,becaus:[3,6,15,33,34,56,58,62,96],becker:[17,18],becom:[56,96],bed:56,been:[4,6,15,20,25,33,56,57,64,87,95],befor:[6,56,59,63,64,65,68,87,91],begin:54,behav:59,behavior:[6,33,56,61,84,88,96],being:[6,7,33,56,82,96,98],bellevu:55,belong:[6,33,93,96],below:[3,7,17,18,20,23,24,53,54,55,56,58,81,95,96,97,99],benefici:20,benefit:[25,61,63,65,89],berkelei:[17,18,20,21,63,85],besid:[5,7,33,35,48],best:[5,55,63],beta:[25,51,95,96],beta_tot:3,better:[7,59,67,82],between:[3,6,7,23,24,30,32,33,34,48,55,56,57,62,63,64,82,95,96],bevi:67,beyond:[5,7,25,55,56,57,63,65,96,102],bf_njdep_20190612:55,bia:95,bill:55,billion:54,bim:[1,13,33],bin:7,binari:16,binomi:[58,68],black:[55,67],blank:[22,23,24,25],blb:95,bldg:54,bldg_class:56,bldg_inv_ac:55,bldg_inv_ei:55,bldg_inv_fei:55,bldgarearegex:54,bldgclass:[55,67],bldgdmgfnid:55,bldgid:[55,67],bldginventori:55,bldgnum:55,bldgtype:55,bldguniqueid:55,blend:[64,87],bli:[23,24],block:[64,87],blog:56,blt:54,blue:68,blvd:[55,67],bnpmedia:56,board:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],boardwalk:55,bodi:85,bold:99,bolt:[81,95],bool:[6,7],boot:20,bootstrap:[33,35],bore:68,borgata:55,born:[55,61,64],both:[3,20,25,33,34,55,57,62,68,82,84,88,95,96],bottleneck:20,bottom:[55,56,57],bound:[6,7,55,95],boundari:[55,62,66,68],bounded_linear:6,box:[54,55],brail:[20,55],branch:4,breach:[61,64,84],breakag:81,breakdown:[55,82],brick:[81,82],bridg:[23,24,35,102],brief:20,brigantin:[59,67],british:[17,18],broad:33,broadband:[85,87],broader:5,broken:[20,23,24,25,34,54,81,96],browser:54,bs4:54,bsd:[16,89,90],btw:96,buckl:81,buena:55,buffalo:63,buffer:[55,64],bug:[23,24,102],build:[3,4,6,13,15,23,24,25,27,33,34,35,57,58,59,61,62,63,64,65,66,68,81,82,84,85,86,87,88,90,95,96,98,99,101,102],building_elev:55,building_footprints_02pct:55,buildingclassaci:64,buildingclassei:64,buildingclassfei:64,buildingclasssfba:87,buildingdata:54,buildingdescript:56,buildingsfil:54,buildingswrit:54,buildingtyp:[55,67],buildingtyperuleset:55,buildng:96,buildup:56,built:[33,34,54,55,56,59,64,67,68,80,87,99,102],bundl:[95,96],bur:[55,56],burden:33,bureau:[55,62],buri:[23,24,102],burnsid:55,busi:[15,16,23,24,54,56,64],button:54,c26:66,c2z_0:66,c_1:66,c_1z_0:66,c_2:66,cabinet:58,cabo:56,calcul:[3,4,6,7,23,24,32,33,48,50,51,55,58,61,81,82,84,95,96,97,99,101],calculate_damag:3,calculate_loss:3,calibr:[25,33,58,62,90,95],california:[16,17,18,63,67,86],call:[3,33,55,56,58,62,90],callabl:6,callout:55,came:[23,24],camera:55,camp:20,can:[3,4,5,6,7,15,20,25,27,30,32,33,34,35,48,50,54,55,56,57,58,59,61,62,63,64,65,68,81,82,84,87,88,89,90,93,95,96,97,98,99,101],cancel:34,cannot:[56,58],capabl:[25,61,84,86,89,102],capac:[33,64,87],captur:[34,55,56,61,62,64,84,85,96],caraballo:62,care:[33,95],carl:55,carlo:[17,18,25,33],carolina:67,carri:[54,58],cascad:[23,24,61,84],casino:[64,87],casualti:6,catalog:[20,21,55,61,84],catastroph:82,categor:6,categori:[5,55,56,59,67,68,88],category2:59,caus:[16,57,81],caution:[6,96],cdf:[7,52,95],cecb_attri:56,cecbh:[55,56],cecbl:[55,56],cecbm:[55,56],cedarcroft:55,ceil:[6,34,81],cell:81,cement:56,censor:[7,52,90,96],censored_count:7,censu:[55,64,82,87],center:[54,55,62,85],central:[33,55,62,64,68,82,96],centroid:55,centroidi:55,centroidx:55,cerb_attri:56,cerbh:[55,56],cerbl:[55,56],cerbm:[55,56],certain:[3,48,50,63,65,68,96],certainli:96,certif:[55,57],cetin:63,cfm:[20,21],challeng:[7,20,21,22,23,24,25],chanc:[55,64,89],chang:[6,55,56,58,63,65,96,99],characetist:56,charact:55,character:[3,6,33,61,63,64,75,84,86,87,90],characterist:[6,33,35,55,56,64,81,82,85,87],charl:63,chatham:55,check:[6,48,50,51,52,57,96],chem:[55,56],chemic:56,chestnut:[55,67],chimnei:[81,82],chl:62,choic:[55,56],choleski:7,choos:[23,24,55],chrome:54,church:56,circl:[55,67,68,88],circul:62,circumst:56,citat:55,citi:[55,56,59,62,63,64,65,67,80,86,87],civil:[62,66],cl_c2:59,cl_c5:59,claim:33,clara:82,clarkstown:55,classif:[55,57,64,87],classifi:[33,55,56],claudio:63,claus:[16,89,90],cld:20,clean:55,clear:[56,58],clearli:4,clermont:67,click:54,climat:[55,56,58],clinic:56,clink:54,clipper:55,close:[33,55,57,82,86,95],closest:62,cloud:[20,53],cluster:[33,85],cmmi:86,cnn:55,coalit:15,coast:[61,62,64],coastal:[20,21,55,56,58,61,62,63,64,65],coastlin:64,coat:56,coco:55,code:[15,16,25,54,55,56,62,63,65,82,85,102],codifi:56,coeffici:[34,88,96],col:4,coll:55,collabor:[63,80,86],collaps:[3,23,24,32,81,82,90,97],collapselimit:96,collapsemod:96,collapseprob:96,colleagu:89,collect:[3,4,5,7,27,30,33,34,35,54,55,56,80,87,90,96],colleg:[55,56],color:82,columbia:[17,18,67],column:[5,7,20,23,24,54,55,97],com10:[55,56,58],com1:[55,56,58,67],com2:[55,56,58],com3:[55,56,58,67],com4:[55,56,58,67],com5:[55,56,58],com6:[55,56,58],com7:[55,56,58],com8:[55,56,58,67],com9:[55,56,58],com:[5,55,56,80],combin:[4,20,55,58,64,67,68,82,96],come:[23,24,25],comerci:80,comm:[55,56],comma:54,command:[25,93,99],comment:[53,55,89,102],commer:56,commerc:62,commerci:[5,54,55,64,80,87],commit:53,committe:20,common:[3,4,6,33,55,56,57],commonli:[33,55,56,57,94,96],commun:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],comn:95,comp_info:5,comp_seri:4,compar:[53,67,82],comparison:[67,82,85,87],compat:62,compil:54,complement:27,complet:[4,6,61,81,82,84,86,87,95,96],complex:[33,55,62,82,96],complianc:56,compon:[3,4,5,6,15,20,23,24,27,30,32,33,34,48,50,56,58,61,68,82,84,85,87,88,90,97,98,99],componentdatafold:96,comprehens:[55,62],compris:[20,33],comput:[6,15,23,24,25,33,56,57,58,59,62,63,64,65,66,67,81,82,85,86,87,89,93,96,97],computation:64,concaten:87,concept:32,conceptu:[33,63],concis:32,conclus:[14,17,18,86],concret:[15,55,64,67,80,87],condit:[3,6,16,88,95,96],condo:[54,55],condominium:54,conduct:[55,58,61,62,67,95],cone:62,confer:81,confid:[55,96],configur:[4,27,33,56,58,81,97,98,99,100],confin:[61,64],confirm:53,confus:55,congress:67,connect:[33,55,56,58,81,82,95],connecticut:55,consequ:[3,4,6,23,24,27,32,33,34,48,51,86,90,95,96],consequencefunct:6,consequenti:16,conserv:[55,56,57],consid:[3,4,6,7,32,33,34,52,55,56,62,64,68,80,81,88,90,96],consider:[6,7,35,61,82,84,99],consist:[34,55,56,58,64,82,87],constant:[2,6,7,32,33,95],constrain:64,constraint:58,constrast:62,constrmateri:[64,87],construct:[6,25,33,34,55,56,57,61,62,63,64,65,81,87],consult:57,consum:15,contact:55,contain:[4,5,6,15,50,54,55,57,62,80,95,96,97,99],contdmgfnid:55,contemporari:57,content:[1,3,4,5,6,7,34,58,80,99],contentcost:55,context:[63,65,86],continu:[54,56,58,68,88],continuingeduc:56,contract:16,contrast:[82,86,87],contribut:[9,17,18,20,61,63,64,84,86,87],contributor:16,control:[0,4,6,7,23,24,30,34,53,64,90,95,96],conveni:[6,97,101],convent:[5,7,27,30,55,56,98],converg:[7,55],convers:[5,55,62,63],convert:[4,5,7,30,49,50,55,62,66,81,85,95],convert_json_files_to_hdf:4,convert_p58_data_to_json:4,convert_series_to_dict:4,convolut:55,coordiant:62,coordin:[6,15,23,24,55,57],copi:4,copula:7,copyright:[89,90,102],corbin:55,core:[55,87],cori:85,corner:[55,81,82],corp:62,correa:[56,58,63,64],correct:[54,55],correl:[3,6,7,25,30,32,33,34,48,51,52,89,95,96],correspoind:87,correspond:[3,5,6,7,23,24,30,32,33,34,35,50,51,55,56,58,68,81,88,90,95,96,97,98],cost:[3,6,23,24,32,33,51,54,55,58,82,86,90,95,96],costandtim:96,could:[20,25,55,60,83,87,91,96],council:[20,21,34,55,62],count:[7,55,58],counter:58,counterweight:81,counti:[55,56,57,61,62,64,65,80,82,87],countri:56,coupl:[15,23,24,25,58,61,62,67,82,84,95,97],coupled_edp:[1,99],coupled_empir:7,coupledassess:96,cours:[56,87,99],court:[55,67],courtesi:62,cov:[5,7,96],covari:[7,25],cover:[55,56,57,58,62,102],coverag:[61,82],cox:[62,82],cpu:55,crack:[81,82,95],crai:85,cranberri:55,crash:91,creat:[3,4,5,7,23,24,25,33,54,55,56,60,61,62,83,91],create_hazus_eq_json_fil:4,create_hazus_eq_pga_json_fil:4,create_hazus_eq_story_json_fil:4,create_hazus_hu_json_fil:4,creation:[3,61,84,90],crew:[20,21],crippl:81,critial:55,critic:[20,21,64,87],crocu:55,cross:[55,56,57],csg_weight:[5,6],cshl:[55,56],csv:[32,54,80,81,98],cumul:[7,33,58],curat:56,currenc:96,current:[2,3,5,6,7,23,24,27,33,55,56,58,61,63,65,84,96,98],curv:[4,30,33,58],curvetyp:95,custom:[7,23,24,33,34,48,56,62,96,99],custom_expr:7,customcf:[20,21],cyclon:62,cynwyd:55,dai:[96,99],dakota:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],dakotatab:5,damag:[3,4,5,6,13,16,20,23,24,26,28,31,32,33,34,40,48,49,51,54,56,57,61,62,63,64,65,75,84,86,87,90,97,99,100,101,102],damageandloss:96,damageimagenam:95,damagemodel:96,damagest:[6,95],damagestategroup:6,dame:[62,63],damg:82,damp:88,danger:81,darmstadt:55,dash:96,data:[3,4,5,7,15,16,23,24,25,27,32,33,35,40,49,50,52,53,56,57,58,61,62,63,64,65,66,67,68,80,81,82,84,85,86,87,90,97,100],data_dir:4,data_sourc:95,data_source_dir:4,databas:[4,25,27,30,32,33,55,58,62,68,80,82,89,96,99,100],datafram:4,dataqu:95,datarelev:95,dataset:[25,56,61,62,84],datasf20:80,datasf:80,date:[56,63,86],datecr:95,david:[17,18,55],db_dl_dat:96,db_file_path:99,db_name:4,dca:63,deactiv:54,deal:20,death:62,debri:[23,24,55,61,64,68],decad:[59,67],decid:[23,24],decim:55,decis:[3,6,32,33,40,48,50,61,64,68,84,88,90,96,97],decisionvari:96,deck:[55,56,58,68],deem:[55,95],deep:85,deeper:[63,65,95],deeplabv3:55,def:54,defein:25,defens:62,defin:[2,3,4,5,6,7,15,23,24,25,32,33,34,35,48,52,56,57,58,62,64,80,81,87,89,90,95,96],define_loss_model:3,define_random_vari:3,definit:[6,15,27,30,34,56,90],deform:[33,95,98],degre:[55,56],deierlein:[17,18,63,81,95],deisgnsaf:54,delanc:55,delawar:62,deliver:[23,24,25],delta:55,dem:[57,62],demand:[3,6,13,33,40,64,68,81,87,88,90,96,98],demand_location_offset:6,demand_typ:6,demolish:55,demonstr:[25,55,56,61,62,63,64,65,67,87],demonstraint:25,demoyear:55,denni:55,densiti:[7,25,52,58],dep:48,depart:[55,56,62,63,64],depend:[6,23,24,32,34,35,48,51,55,57,62],depict:55,depth:[54,55,56,58,64,67],derail:81,deriv:[55,56,62,81,87,95],describ:[3,4,5,6,7,32,33,34,35,54,55,56,58,61,62,64,68,84,87,88,90,95,96,97],descript:[1,6,7,20,23,24,25,27,32,33,34,35,51,53,56,61,62,63,64,65,75,81,82,86,87,90,95,96,101],design:[15,20,25,33,55,56,57,62,66,80,82],designlevel:[55,67],designsaf:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],designwindspe:55,desir:[20,22,23,24,25],desktop:[25,101],despit:33,detail:[3,4,5,6,33,34,54,63,65,68,80,81,82,84,88,90,95,96,97,99,101],detailed_result:[3,99],detect:[7,48,55,90,96],detection_limit:7,detectionlimit:96,determin:[4,6,20,23,24,55,68,82],determinist:[34,48,68,85,87,95],dev:[23,24],devast:62,develop:[15,17,18,20,23,24,25,33,54,55,56,58,61,62,63,64,65,68,80,81,84,87,90,101,102],deviat:[3,7,34,96,97],diagon:[56,81,82],dict:5,dict_gener:4,dictionari:[4,5],did:[3,62],differ:[6,7,20,23,24,25,33,34,48,51,54,55,56,59,61,63,64,65,67,68,82,84,85,87,88,89,95,96,101],differenti:[4,56,62,68],digit:[55,57],dimens:[7,48,55,85],dimension:[6,7,25,32,34,56,62],dinner:54,dir:5,direct:[6,7,16,20,23,24,33,34,35,48,55,56,85,95,96,98],direction:6,directli:[3,62,81,97],directori:99,dirnameoutput:99,disaggreg:[34,82,99],disast:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],discard:95,disclaim:16,disconnect:81,discret:[3,58,62,66],discuss:[20,33,56,58,62,68,88,101],dispers:[3,6,48,81,88,96],displac:[33,81],displai:62,distanc:[55,85],distant:7,distassetmunicip:64,distbuiltyear:[64,87],distinct:[55,82],distinguish:55,distort:55,distr:7,distribut:[3,4,5,6,7,16,23,24,25,33,34,35,48,50,51,52,58,64,67,68,81,82,87,88,90,96],district:64,divid:96,dl_ap_path:1,dl_c2:59,dl_c5:59,dl_calcul:[46,97,100,101],dl_db_path:99,dl_dir:4,dl_file_path:99,dl_input:1,dl_input_path:1,dl_method:1,dl_summari:97,dl_summary_stat:97,dld:[23,24],dm_file:3,dmg:97,dmg_agg:97,dmg_stat:97,doc:85,doctor:86,document:[3,4,5,13,15,16,20,25,48,54,55,56,64,65,87,95,101,102],doe:[6,7,33,52,55,61,62,67,95],doi:[55,58,80,82,85,86],dollar:96,dolphin:67,domain:[6,15,55,85],domin:[55,64,86,87],door:[55,56,58,81,82],dot:[68,88],doubl:58,down:[20,34,54,62,81,82],download:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],downtown:[64,87],dozen:33,drain:56,drainag:56,draw:50,drawn:[6,57,64],dream:25,dredg:62,drexel:[55,67],drift:[3,6,23,24,33,34,48,61,81,88,95,96,98],drive:[20,23,24,55,67],driven:56,drp:62,drug:56,dry:62,drywal:58,ds0:[81,82],ds1:[81,82,95],ds2:[81,95],ds3:[81,82,95],ds4:[81,82],ds_set:6,ds_set_kind:6,dsg:[6,30,97],dsg_d:97,dsg_given_edp:6,dsg_id:[6,51],dsg_set:6,dsgroup:95,dsgrouptyp:95,dss:[30,33],dswi:[55,67],dswii:[55,56,67],dswiii:[55,67],dswiv:[55,67],duct:81,due:[62,64,67,81,82,86,95,96],duerer:67,duplic:91,durat:[3,55,56],dure:[5,6,15,32,55,56,62,87,96],dv_:97,dv_distribut:6,dv_file:3,dv_median:6,dv_type:97,dwell:[55,57],dwsii:56,dynam:[48,61,64,81,85,88],each:[3,4,5,6,7,15,20,23,24,30,32,33,34,35,53,54,55,56,57,58,59,62,64,68,80,81,82,85,88,90,95,96,97,98],eagl:54,earlier:[3,52,56,82],earth:25,earthquak:[3,4,13,20,21,23,24,28,33,34,54,64,81,82,85,86,87,88,89,90,95,96],eas:20,easi:96,easier:[51,95,96],easili:[5,61,99],east:[55,82,85],eastern:[86,87],eav:56,echo:[3,5],econom:[61,62,64,84],edg:[55,56,86,87],edgewood:67,edit:[23,24,28,33,56,90,95,96,99],editor:27,edp:[3,5,6,13,23,24,30,32,33,34,35,48,50,51,61,68,88,90,95,96,97,98,99],edp_:97,edp_distribut:96,edp_fil:3,edp_file_path:99,edp_input_path:1,edp_kind:5,edp_limit:6,edp_stat:97,edp_typ:98,edpt:35,edu1:[55,56,58],edu2:[55,56,58],edu:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],educ:[5,20,25,55],eer:56,ef_attri:56,effect:[20,33,54,55,61,62,64,67,85,87,96],effici:[3,6,23,24,25,33,54,55,56,58,62,84,90],efficientdet:55,effort:[6,33,63,65],egg:[55,67],eguchi:[20,21],either:[7,30,32,33,34,35,55,62,95,96,98],elasto:85,electr:[58,81],element:[4,6,7,13,33,84,99],elementari:55,elev:[55,56,57,58,62,81,82],elevationlowestfloor:55,elevationr0:[55,67],elevationr1:[55,67],elevunit:55,elhad:54,elhaddad:[63,80,86],elhadded19:[80,86],elif:54,elong:95,els:54,elseif:56,email:20,embarrassingli:33,emerg:[55,58,62,64,81,82,87],emerson:55,emphas:[33,55],empir:[7,23,24,25,52,85,87,96],emploi:[64,87],empori:61,empti:96,enabl:[23,24,33,55,56,61,64],encompass:[55,56,64,86,87],encount:[4,55,57,94],encourag:[9,89,90,102],end:[7,20,55,63,65,99],endpoint:55,energi:[55,56,85],engag:[56,62],engin:[6,13,20,21,25,33,55,57,62,66,68,81,82,90,96,98,101],enhanc:[62,63,65,82],enrich:[55,61,63,64,65,84,87],ensur:[3,5,7,48,55,56,58,61,63,64,65,84],enter:[55,56],entertain:56,entir:[33,34,55,58,61,62,64,67,81,82],entrap:56,entri:[20,56],env:25,envelop:[58,61,64,84],environ:[25,33,64,99,102],environment:[23,24,55,62,64,80],envis:33,eoc:55,epga:6,epicent:[54,82],epicentor:88,epistem:[68,88],epoch:55,eps_alpha:7,equal:[6,7,55,56,62,80],equat:[62,66,85,89],equip:[58,81],equival:[4,55,62,95],era:[56,59,67],erdc:62,error:[7,25,50,51,52,54,55,58,95],esdu02:[62,66],esdu:[62,66],especi:[7,61,84],essenti:55,essentialclass:55,establish:[53,55,56,57,62],estat:80,estel:55,estim:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,59,60,61,62,63,64,65,66,67,68,69,70,71,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],estuari:62,etc:[6,7,54,55,58,96],evalu:[6,32,33,34,48,61,62,64,81,96],evalut:68,even:[6,16,33,51,55,96],event:[3,7,13,16,23,24,25,32,33,54,61,62,68,84,86,87,88,90,98,99],event_id:98,event_tim:[1,99],ever:15,everi:[3,7,33,48,55,56,85,96,99],eves:56,evolv:[56,62],exam:62,exampl:[6,15,20,25,32,34,35,55,56,57,58,63,68,81,86,90,91,93,96,101],example_result:59,exce:6,exceed:[3,6,30,32,51],excel:[4,95],except:[4,33,54,55,56,96],excercis:54,excess:95,excit:[25,33],exclud:55,exclus:[6,30,95],exe:93,execut:[55,61,62,63,65,93,99],exemplari:16,exercis:[82,87],exhibit:81,exist:[6,23,24,25,27,55,62,64,86,87,95],expand:[23,24,61,84,96],expans:[61,84],expect:[3,5,6,7,32,33,53,55,57,58,59,67,81,96,98,101],experi:[6,25,30,32,34,62,82,94,96],experienc:[3,64],experiment:[23,24,30,95],expert:[17,18],expertis:25,explain:[5,33,55,90,96],explan:[56,63,65],explicit:62,explicitli:[61,64],explor:[6,59,61,63,64,65,82,84],exploratori:55,export_db:[95,99],exportdb:[46,100],expos:[57,59,61,64],exposur:[34,54,55,56,58,62,64,66,82],express:[7,14,16,17,18,54,61,62,66,84,86,96],expresswai:55,extend:[5,15,23,24,33,55,56,61,62,63,65,82,95,102],extens:[61,62,81,82,84],extent:62,exterior:[56,58,81,82],exteriorfinish:55,extern:[5,25,32,55],exton:67,extract:[54,55],extractiung:54,extrem:[34,62,64],faa:55,facad:55,face:[20,55,64],facil:[64,87],facili:99,facilit:[27,34,55,82,86,90,99,101],facilitei:56,fact:[56,82],factor:[63,65,66,67,80,96],factori:56,faculti:[23,24,25,86],fail:[7,48,54,81],failur:[81,95],fairmount:55,fairview:55,faith:[55,57],fall:[6,55,57,81,82],fallen:81,fals:[3,5,6,7,95,96,99],famili:[7,33,54,55,57,58,64,87],familiar:101,farri:55,fashion:96,faster:55,fatal:[3,23,24,33,90,96],fault:[23,24,61,82,84,85,86,87,89],feappv:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],feasibl:86,featur:[3,7,20,23,24,25,48,50,55,56,57,58,68,82,89,102],fed:51,feder:[58,64,81,87],feedback:[20,22,23,24,25,63,86,89],feet:[55,56,58,96],felt:56,fem:25,fema18:[81,87],fema18a:[58,64],fema18b:[58,64],fema:[3,4,5,6,23,24,28,30,32,33,34,48,49,54,57,58,62,64,81,82,87,90,95,96,102],fema_p58_1st_:95,fema_p58_2nd_:95,fema_p58_assess:3,fenestr:58,fenv:[20,21],fenves2011:[20,21],few:[32,33,54,81,82,97],ffh_attri:56,fidel:[25,55,61,62,64,82,84,87],field:[5,20,25,50,55,56,61,62,63,68,95,96],fig:[32,33,34,35,64,82,87,91,98,101],figdownload:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],figdownloadwin:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],figgenericui:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],figui:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],figur:[20,54,64,82,87,96],figwinui:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],file:[3,4,5,15,25,27,32,33,34,35,48,49,50,54,80,81,85,99,100,101],file_io:[0,53],filenam:5,filenamedl:99,filenameedp:99,fill:[34,54],filter:[3,25],financi:86,find:[14,17,18,54,86,91],find_element_by_nam:54,find_element_by_xpath:54,find_elements_by_xpath:54,findal:54,finer:62,finish:[32,56,57,58,81,82],finit:[13,33,67,84,85,87],fire:55,fireproof:95,firm:[55,56,57,58,64],firmpanelid:55,first:[3,6,7,23,24,25,33,54,55,58,62,68,90,95,96,98],firstfloorelev:[55,56],firstfloorht0:[55,67],firstfloorht1:[55,56,67],firstfloorht:55,fiscal:[20,21],fisher:55,fit:[3,4,7,16,23,24,33,35,48,55,58,68,90,95,96],fit_distribut:7,fitdistribut:46,five:[56,59,64,67],fix:6,fixtur:81,flag:4,flash:58,flat:[55,56,67],flexibl:[33,64],flood:[57,59,61,62,64,67],flood_attri:56,flood_bldg_attri:56,flood_bldg_class:56,flood_comp:58,flood_ddc:58,floodclassruleset:56,floodplain:[55,64],floodprotect:55,floodruleset:56,floodtyp:[55,56],floodzon:[55,56,67],floor:[3,6,23,24,33,34,35,54,55,57,58,80,81,82,96,98],floorlin:54,floorno:54,floorrang:54,florida:55,flow:[61,64],fmckenna:[20,21],fmk:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],focu:[33,48],focus:[56,62,67,86,96],folder:[4,5,53,95,99,101],follow:[3,5,6,7,9,13,15,16,20,23,24,30,33,34,54,55,56,57,58,61,62,63,64,65,68,82,84,87,88,90,93,94,96,97,98,99],folsom:55,food:[54,56,57],foot:[55,58,64],footag:82,footprint:[56,57,62,80],forc:96,force_resampl:6,forecast:89,form:[6,16,20,33,55,56,58,68,88,90],format:[2,3,4,5,23,24,33,49,50,54,55,56,62,81,85,96,97,98,100,101],formula:55,forum:[23,24,60,83],forward:[25,33,62],found:[13,15,55,59,81],foundat:[14,55,56,57,58,81,86,102],foundationtyp:[55,67],foundationtyperuleset:55,four:[20,33,55,56,59,67,81,85,98],fourth:67,frac:66,fraction:[82,96],fragil:[3,4,6,23,24,30,32,33,34,48,51,56,58,61,81,84,87,90,95,96,97,98],fragilit:48,fragility_funct:6,fragilityfunct:6,fragilitygroup:6,frame:[56,57,58,64,81,82],framework:[4,6,15,17,18,20,23,24,26,27,30,33,34,64,81,95,97,102],francisco:[80,82,85,87],francisoc:87,frank:[20,21,63],franklin:55,fred:67,free:[25,54],freeform:55,frequenc:[33,55,85],frequent:[58,64,97],from:[3,4,5,6,7,15,20,23,24,25,27,32,33,34,48,49,50,51,53,54,55,56,57,58,59,61,62,63,64,65,66,67,68,80,81,82,84,85,87,88,89,90,95,96,97,98,99,101],front:[20,55],frontier:64,fs20183016:82,ft2:[34,50,96],full:[50,55,64,81,87],fulli:[62,85,87],further:[3,5,33,52,56,57,61,62,67,80,81,82,84,96],fuse:[61,63,65,84],futher:[56,62],futur:[22,23,24,25,63,64,75,86,87,96,102],gabl:[55,56,67,68],gain:[25,62],gallowai:[55,59,67],galveston:56,gap:34,garag:[54,55,56,58,67,81],garnett:55,gauss:25,gaussian:[7,23,24,25],gavrilov:63,gcr:[20,21],gener:[3,5,7,20,25,32,33,54,55,56,57,59,60,61,62,63,65,68,81,82,83,84,89,95,100,101],generalinform:[1,95,96],generate_sampl:7,genz:7,geocod:54,geodatabas:55,geodynam:85,geoencod:54,geograph:[55,82],geographi:62,geolog:85,geometr:55,geometri:[55,80,85],geophys:82,geospati:[61,62,64,87],geotechn:25,get:[3,4,5,6,52,54,96,101],get_pdf:[20,21],get_val_from_dict:4,girder:56,github:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],give:55,given:[3,6,7,33,51,55,56,61,62,63,65,68,88,89,90,96],glare:55,glass:[55,56,81],glaze:56,global:25,glossari:102,goal:82,goe:57,going:20,gonzalez:62,good:[4,16,33,55,56,67,82,96],googl:[54,55],gov1:[55,56,58],gov2:[55,56,58,67],gov:[20,21,55,56,62,85],govern:[55,56],grade:[55,57,62],gradient:66,grammerci:67,grand:[20,21,22,23,24,25,55],grant:[14,17,18,55,86],granular:57,graphic:[25,101],grate:[17,18],graviti:95,greater:[6,56,64],greatli:[63,89],green:55,greg:[63,95],gregori:[17,18],grid:[62,68,85,88],ground:[3,13,33,55,61,62,63,65,82,85,87,88,89,95,96,98],ground_failur:1,groundmot:96,group:[3,4,6,15,20,23,24,30,32,34,48,51,53,54,56,58,59,62,63,67,82,96,97],gsa:25,guid:[9,56,63,90,102],guidanc:[63,94],guidelin:[9,56],guideln:[55,56],gumbel:25,gust:[4,62,66,95],gypsum:[81,82],h5py:[4,93],had:[55,56,82],hag:55,hajjar:[20,21],half:55,hall:56,hamilton:[55,67],hammonton:[55,67],hampshir:55,hand:[57,68],hand_calc:67,handl:[3,4,5,6,25,32,33,34,48,96,97,102],hang:81,harbor:[55,67],hardwar:[63,65],harish:63,hark:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],harrisburg:55,has:[1,3,4,5,6,15,20,30,32,34,48,54,62,64,68,81,82,96,101],have:[4,5,6,7,23,24,25,30,33,34,48,51,55,56,57,58,59,60,61,62,64,68,81,82,83,86,87,89,90,91,93,95,96],haverford:67,hayward:[82,85,86,87],haywir:82,hazard:[3,6,13,20,21,23,24,33,35,54,55,56,57,58,61,63,65,75,81,84,86,90,98,102],hazu:[3,4,5,23,24,28,33,34,49,58,61,62,64,68,81,82,87,90,95,96,102],hazus_assess:3,hazus_data_eq:4,hazus_eq:5,hazus_hu:5,hazus_mh_2:95,hazusclass:[55,56],hazusclassin:[55,67],hazusclassw:[55,67],hazusclasswa:[55,67],hdf5:[4,23,24,81,95,99],hdf:[4,95,96],head:54,header:[54,97,98],health:33,heat:55,heavi:56,heavier:62,heavili:[33,53],heidelberg:55,height:[55,62,66,96],help:[33,55,60,64,83,87,90,91,96,101],helper:6,henc:[6,33,34,55,58,68,87,88],henderson:63,here:[4,5,20,48,51,55,94,96,98],herein:[56,61,63,65],heurist:[63,65],hhtm:56,hierarch:[34,81],hierarchi:[20,34,97],high:[3,23,24,25,32,33,34,54,55,61,62,64,82,84,86,87,97],higher:[33,55,57,59,62,82,95,96,97],highest:[34,55,57,96],highli:62,highlight:[4,33,82],hillsid:55,hindcast:[61,62,63],hinder:20,hip:[55,56,67,68],histor:[56,61],histori:[33,54,62,82,85,87,89,96],hoa:54,hold:[33,55],holder:16,hole:95,holist:34,home:[54,55,58,62,64,67,87],homeown:[54,56,58],homespotonlin:56,horizont:[34,35,55,57,96,98],hors:[55,67],hosp:[55,56],hospit:55,hospiti:56,host:25,hot:[55,56],hotel:[5,54,56,64,80,87],hour:[3,55,62,66,87],hous:[33,54,55,56,68,96],household:54,houston:67,hover:56,how:[33,55,56,61,63,64,65,91,96,101],howev:[16,30,33,35,56,58,61,62,82],hpc:[25,33,63,65],hpr:[55,56],html:54,http:[20,21,54,55,56,58,62,64,80,85,86],hu1_attri:56,hu2_attri:56,hu3_attri:56,hu4_attri:56,hu_wood:4,hub:64,hud:[55,56],hudnut18:82,hudnut:82,huefeo:[55,56],hueff:[55,56],huefh:[55,56],huefhl:[55,56],huefhm:[55,56],huefp:[55,56],huefsl:[55,56],huefsm:[55,56],huefss:[55,56],human:[56,57,61,68,84],huntington:67,huron:55,hurrican:[3,4,20,21,23,24,28,56,58,59,61,63,64,65,67,68,88,90,95,96],hurricane_cat:[59,62],hurricn:62,hutt:[17,18],hvacsystem:55,hybrid:56,hydrolog:64,hypercub:7,hyperrectangl:7,hypocent:85,hzsourcecit:55,ibc:56,idea:[33,96],ideal:[20,33,58],ident:[6,7,34,48,95,96,97],identif:[23,24],identifi:[3,4,5,6,7,20,25,32,34,55,56,57,62,64,85,87,90,96,97,98],ignor:6,iii:[5,33,56],illustr:[67,68,88],imag:[54,55,57],imageri:[55,56,61],immin:81,impact:[20,21,23,24,56,61,62,63,64,65,84,95],imperi:34,implement:[3,4,15,20,21,22,23,24,25,33,55,56,58,62,63,65,68,82,86,88,102],impli:16,improv:[6,20,54,57,59,61,84],improvementarea:54,improvementdata:54,improvemnet:87,in2:34,inaccuraci:55,inch:56,incident:16,includ:[16,20,25,35,55,56,57,58,61,62,64,68,80,81,82,87,88,95,96],incompat:55,incomplet:[4,6,34,95],incorpor:[25,58,61,62,84,91],incorrect:[6,7,52],incorrectli:55,increas:[15,23,24,58,61,64,82,84,87],incur:6,ind1:[55,56,58],ind2:[55,56,58,67],ind3:[55,56,58,67],ind4:[55,56,58,67],ind5:[55,56,58],ind6:[55,56,58],ind:[5,48,55,56],independ:[4,6,7,30,33,34,48,58,96],index:[3,6,55,93],indh:[55,56],indiana:55,indic:[6,20,25,55,56,60,68,81,83,91],indict:4,indirect:[16,33],individu:[7,15,20,25,52,54,55,57,59,61,63,64,65,68,82,87,96,99,101],indl:[55,56],induc:[3,58,64,68,88],industri:[5,54,55,62,64,80,87],inf:7,infer:[7,25,55,56,80,96],infin:51,infinit:7,inflat:[7,81,88],influenc:[33,34,56,63,65,67,68,82,88],influx:62,inform:[3,4,5,6,13,15,23,24,25,32,33,34,50,54,55,56,57,62,63,64,67,68,80,82,86,87,89,90,95,98,100,101],infrastructur:[80,85],inhabit:[23,24,96],inher:[68,88],init:[55,56],initi:[20,21,55,56,57,58,62,63,64,82,86,87,88,95],inj_lvl:3,injur:96,injuri:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],injuries_cf_set:6,injurysever:96,inland:[62,64],innov:20,inprogress:[22,23,24,25],inprogresss:25,input:[3,4,5,6,7,15,20,25,33,34,48,49,50,51,52,53,62,67,82,89,96,99,101],input_path:5,insid:[55,56],insight:[17,18],inspect:[6,55,81,82,95],instal:[25,56,91,95,101,102],instanc:[56,62,68,84,96],instead:58,instruct:82,insul:58,insur:[33,55,56,57,64],integ:[54,55,56,80],integr:[7,48,49,50,51,52,61,102],intellig:55,intend:[53,55,63,64,65,86],intens:[13,27,33,58,62,64,67,68,82,85,87,89,98,102],intent:[55,64,87],inter:25,interact:62,interdepend:33,interdisclipinari:25,interest:[3,6,50,54,55,61,64,84,96],interfac:[15,20,90,101],interior:[56,58],intermedi:[32,33,34,99],intern:[34,62,66],interpol:[6,62,95],interpret:[55,56,63,65,93],interrupt:[16,23,24],intersect:81,interstori:[33,48,96,98],interv:62,introduc:[7,15,32,33,35,55,56,58,62,63,65,68,82,86,88,96],inund:[20,21,23,24,55,56,62],invalid:80,invdmgfnid:55,inventori:[35,56,57,59,61,62,63,65,80,82,84],inventorycost:55,invers:[7,85],inverse_transform:7,inverse_transform_sampl:7,invest:[61,64,84],investig:[3,67,82,87],invit:61,invok:55,involv:[48,54,81,87],iowa:55,irregular:35,irrepair:[23,24],irrepairableresidualdrift:96,irrepar:[3,96],isdigit:54,island:[55,67],iso:2,isol:81,issu:[55,57],item:[55,58,61,84],itemis:56,iter:[55,62],ith:4,its:[4,6,7,33,34,35,55,56,57,61,62,63,64,84,85,87,96],itself:[52,61,84],jack:[17,18],januari:[55,56],javelin:[56,58],javeline19:[56,58],jerom:67,jersei:[55,56,61,62,63,64,65],jia13:62,jia15:62,jia:62,jira:20,joann:63,joanna:[17,18,63],job:33,john:56,johnson:82,joint:[6,23,24,68,81,90],joist:[55,56],joistspac:[55,56],jose:[86,87],journal:62,jpg:95,json:[3,4,5,23,24,27,33,49,85,95,96,99],jsp:[20,21],judgement:[55,56,57],juli:54,jupyt:81,just:[86,87],justifi:56,kalman:25,katherin:67,katrina:56,keener:55,keep:82,kei:[4,5,7,22,23,24,25,56,58,68,87],keith:63,kennedi:[62,63,64],kept:96,kijewski:[56,58,63,64],kijewskicorrea19:64,kind:[5,33],king:55,kingston:55,kiremidjian:[17,18],kirkwood:67,know:[23,24,56],knowledg:20,known:[57,64,96],kourehpaz:[17,18],krige:62,kuanshi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],kwarg:[3,6],lab:85,label:[55,98],laboratori:33,lack:50,lacled:55,lag:[55,56,57],lake:55,lakeview:67,land:[20,21,54,55,56,57,62,67,80,82],landfal:[62,68],landi:55,lane:[55,67],languag:101,larg:[3,4,6,7,33,54,55,56,81,82,86,87,96],larger:[55,58,61,81,82,96],last:7,lat:54,later:[3,54,56,62,64,81,96],latin:7,latitud:[54,55,62,67,80],latlng:54,latter:32,launch:25,laurel:[55,67],law:[66,68],lawrenc:85,layer:[34,56,62,66,68],layout:33,lbl:[82,89,96,99,101],lblbug:[23,24],lead:[3,7,33,34,51,52,96],leak:[81,82],leandro:[82,85],learn:[25,55],leasehold:54,least:[6,20,25,58,96],leav:96,led:3,lee:55,left:[55,82],legaci:[56,62],len:54,length:[55,62,96],lens:81,leq:58,less:[34,56,62,64,82,97],lesser:58,let:[23,24,54],lett:[85,87],level:[3,4,6,27,34,48,55,56,57,58,61,64,68,80,81,82,84,86,87,95,96,97],leverag:[62,63,64],lhs_midpoint:7,liabil:16,liabl:16,librari:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],licens:[89,90,102],licensc:25,lie:55,lieu:[55,64,87],life:6,lifelin:[23,24,33],light:[56,81],like:[4,7,9,23,24,25,55,56,57,62,68,80,82,86,89,93,102],likelihood:[7,23,24,25,52,58,62,68,95,96],limit:[3,6,7,16,23,24,30,32,33,35,48,51,52,54,55,61,62,67,81,82,87,90,96],limits_:58,limwa:62,linda:67,line:[25,53,54,55,56,96,98,99],linear:[6,25,33,62,68,81,82,88,95],linearli:55,link:[6,25,32,34,51,56,89],linwood:55,list:[4,5,6,7,16,17,18,20,23,24,25,51,53,55,56,61,84,94,96,97,99],livabl:55,live:[20,51],livermor:85,liverpool:55,llnl:[82,85],load:[20,25,56,58,61,62,66,81,84,95,96],local:[54,56,57,62,63,65,80,81,88],locat:[3,5,6,7,34,35,48,55,56,57,58,59,62,68,80,81,82,86,87,88,89,93,96,98,99,101],log:[7,23,24,25,51,54,99],log_fil:[3,99],log_msg:2,logarithm:[3,96],logic:[23,24,33,56,98],lognorm:[3,7,25,30,33,34,35,48,51,52,58,68,81,88,95,96],london:[62,66],longer:[7,32],longitud:[54,55,62,67,80],longleadtim:95,longport:67,look:48,loop:54,loos:15,loss:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,59,60,61,62,63,64,65,66,69,70,71,73,74,75,76,77,78,79,80,83,84,85,86,87,89,90,91,92,93,94,97,98,99,100,101,102],loss_ratio_comp:82,lossess:4,lossmodel:96,lost:62,lot:[54,55],loui:55,low:[55,64,80,86,87],lower:[6,7,56,62],lowest:[55,56,57,58,96],lpt:55,luettich92:62,luettich:62,lulc:55,lump:55,lynch:[20,21],m94hudii:56,mac:93,machin:[25,55],machineri:[81,82],made:[5,54,55,56,57,61,62,63,64,65,67,84],madison:67,magnitud:[3,6,30,33,54,85,86,87,96],mai:[13,15,54,55,56,57,61,63,65,67,81,82,95],main:[33,55,56,58,62,67,82,97,99,101],maintain:35,major:[4,17,18,33,55,67,81],make:[7,23,24,51,55,56,57,62,68,82,93,95,96],maker:82,mall:55,manag:[4,15,20,58,62,64,81,87],mandatori:[20,22,23,24,25],manhattan:55,mani:[20,33,56,81,86,89],manifold:25,manipul:5,manitoba:55,manner:[56,61,84],mannheim:55,manor:55,manuactur:55,manual:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],manufactur:[54,55,64,67,87],manvil:56,map:[5,33,54,55,56,57,59,64,85],mapoccup:54,mar:67,margat:[55,59,64,67],margin:[7,55,56,90],marin:82,mark:4,market:56,marlborough:55,maryland:55,mask:55,masonari:80,masonri:[55,64,67,80,81,82,87],massachusett:[55,67],master:54,match:[5,6,54,55,62,96,98],materi:[14,16,17,18,55,56,57,58,64,81,86,87],math:54,matlab:81,matric:55,matrix:[7,25,55,67],matt:63,max:[6,52,54,58],maxim:[58,68],maximum:[6,7,34,56,58,62,95,96,97],maxtrix:55,mayb:54,mbar:62,mc1:[55,56],mc2:[55,56],mc3:[55,56],mccallen:[85,87],mckenna:[20,21,63,80,86],mdof:84,mean:[6,7,34,55,56,62,82,85,96,97],meaningfulli:[63,65],meanroofht:[55,67],measur:[13,20,21,25,32,33,40,55,56,58,62,64,67,68,89,98,99,102],mecb_attri:56,mecbh:[55,56],mecbl:[55,56],mecbm:[55,56],mechan:[25,58,62,81],med:[55,56],median:[3,6,7,51,96],median_max:6,median_min:6,median_quant:96,medianedp:95,medic:56,medium:[55,56],meet:[6,15,56,63,65],melbi:62,member:[7,57,58,61,63,84],membran:[56,58],mention:[80,95],merb_attri:56,merbh:[55,56],merbl:[55,56],merbm:[55,56],merchant:16,merg:80,mesh:62,messag:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],met:16,metal:55,metamodel:62,method:[1,2,3,4,5,6,7,20,23,24,27,33,34,48,52,53,56,61,62,68,84,86,87,88,96,97,99,101],methodolog:[3,4,23,24,33,55,58,61,62,64,81,84,87,96,102],metric:[82,96],metro:[54,64,87],metrolog:55,mh76hud:[55,56],mh94hud:[55,56],mh94hudi:[55,56],mh94hudiii:56,mh_attri:56,mhphud:[55,56],michigan:[17,18],microsoft2018:55,microsoft20:80,microsoft:[55,57,80],mid:56,midpoint:7,midris:56,might:[3,6,30,35,54,96,97],mile:[54,62],mill:[55,67],million:[54,86,87],min:[6,58],mind:82,mine:61,miner:56,mini:55,minim:[33,55,57],minimum:[6,7,50,56,58,62,63,65,66,93,97],minor:[54,82],minut:62,misalign:81,misc:25,miss:[4,23,24,80],missil:56,mississippi:55,missouri:55,mistak:[51,52],mitig:[33,56,61,62,63,65,84],mix:[7,54,56],mixtur:52,mlri:55,mlri_attri:56,mlrm1:[55,56],mlrm2:[55,56],mlrm_attri:56,mmuh1:[55,56],mmuh1n:[55,56],mmuh2:[55,56],mmuh2n:[55,56],mmuh3:[55,56],mmuh3n:[55,56],mmuh_attri:56,mobil:[55,56],mod:[20,55],mode:[3,4,6,23,24,32,56],model:[0,1,3,4,13,20,23,24,25,26,28,31,33,48,53,54,57,58,61,63,64,65,68,80,81,82,84,85,86,87,88,89,90,97,100,102],moder:[62,81,82],modern:[23,24,56],modif:[16,51,55,67],modifi:5,modiv18:55,modiv:55,modivmanu:55,modul:[33,53,55,68],molina:[17,18],monetari:[61,84],monitor:[15,33],monmouth:55,mont:[25,33],montclair:55,monterei:82,month:[3,82],montpeli:55,moor:55,more:[3,4,5,6,20,30,32,33,34,35,54,55,56,57,58,61,62,63,64,65,68,80,81,82,84,85,87,90,96,101],moreov:64,morri:55,most:[6,33,55,56,57,58,59,62,64,81,96],motel:56,motion:[3,13,33,82,85,87,88,89,96],motiv:58,mount:81,move:[25,62,81],movement:81,mph:[55,56,58,62,95],mreinf:[55,56],msf1:[55,56],msf2:[55,56],msf_attri:56,msg:2,much:[7,51,59,61,62,67,96],mullica:[55,67],multi:[6,25,54,55,58,64,81,82,84,87,96,98,102],multi_fit:7,multilinear:6,multinomi:[7,52],multipl:[6,7,25,30,51,55,56,57,64,68,88,89],multipli:[6,25,55],multivari:[3,6,7,35,48,52,81,90,96],muni:54,municip:[54,56,64],municipalitii:64,municipalitycode_block_lot_qu:55,must:[16,20,23,24,55,56,58,96,98],mutual:[6,30,95],mutually_exclus:6,mutuallyexclus:95,mvn:[7,52],mvn_orthotope_dens:7,myrtl:67,nacc:62,nadal:62,nadalcaraballo15:62,nail:[55,56],nakashima:[20,21],name:[4,5,6,7,20,54,55,56,95,96,98,99],nan:[55,67],nap:[20,21],narrow:52,nation:[14,20,21,85,86],natur:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],nav:[55,67],navig:96,ndarrai:[6,7],nearest:[57,68,85,88],nearestneighbor:[68,88],nearli:82,nearshor:62,necessari:[6,55,56,61,63,65,81,84,93],necessarili:[6,14,17,18,86,96],neck:67,need:[3,5,6,20,21,22,23,24,25,33,54,55,56,57,61,81,84,96,97,99],neg:[6,7],neglig:[7,16,48],nehrp2008:[20,21],nehrp:[20,21],neighbor:[55,56,68,85,88],neighborhood:55,neither:58,nersc20:85,nersc:85,nest:4,net:[20,21],network:[23,24,25,33,55,75],neural:55,nevertheless:82,newer:80,newjersei:55,newton:25,next:[54,68,96],nextbtn:54,nextbutton:54,nfipcommunityid:55,nfipcommunitynam:55,nga:89,nhe:25,nheri:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],nine:56,nist2014:[20,21],nist:[20,21],njbf000051577:67,njbf000051934:55,njbf000052049:67,njbf000052235:67,njbf000053112:67,njbf000053161:67,njbf000053545:67,njbf000054073:67,njbf000054164:67,njbf000054245:55,njbf000054248:67,njbf000054347:67,njbf000054971:67,njbf000054995:67,njbf000055126:67,njbf000055129:67,njbf000055216:67,njbf000055748:67,njbf000055958:67,njbf000056903:67,njbf000057402:67,njbf000057403:67,njbf000057446:67,njbf000057470:67,njbf000057684:67,njbf000058039:67,njbf000058080:67,njbf000060264:67,njbf000062062:67,njbf000062825:67,njbf000063022:67,njbf000063149:67,njbf000063537:67,njbf000065105:55,njbf000065525:55,njbf000065663:55,njbf000065893:55,njbf000066110:67,njbf000066458:55,njbf000066787:55,njbf000066838:55,njbf000066970:55,njbf000066996:55,njbf000067006:55,njbf000067020:55,njbf000067057:55,njbf000067126:67,njbf000067147:55,njbf000067184:55,njbf000067372:67,njbf000067459:55,njbf000067530:55,njbf000067532:67,njbf000067632:55,njbf000067637:55,njbf000067661:55,njbf000067689:55,njbf000067753:55,njbf000067858:55,njbf000067877:55,njbf000067933:67,njbf000068199:55,njbf000068201:55,njbf000068281:55,njbf000068372:55,njbf000068434:55,njbf000068521:55,njbf000068631:55,njbf000068827:55,njbf000068858:55,njbf000068885:55,njbf000068930:67,njbf000068931:55,njbf000068965:55,njbf000068967:55,njbf000069087:55,njbf000069199:55,njbf000069266:55,njbf000069283:55,njbf000069314:55,njbf000069338:67,njbf000069376:55,njbf000069388:55,njbf000069450:55,njbf000069466:55,njbf000069522:67,njbf000069740:55,njbf000069770:55,njbf000070051:55,njbf000070300:55,njbf000070351:67,njbf000070354:55,njbf000070402:55,njbf000070418:55,njbf000070486:55,njbf000070550:55,njbf000070576:55,njbf000070587:55,njbf000070614:55,njbf000070632:55,njbf000070765:55,njbf000070799:67,njbf000070844:55,njbf000070851:67,njbf000070898:55,njbf000070902:67,njbf000070949:67,njbf000071172:67,njbf000071182:67,njbf000071205:67,njbf000071219:55,njbf000071245:55,njbf000071302:55,njbf000071361:55,njbf000071434:55,njbf000071438:55,njbf000071571:55,njbf000071585:67,njbf000072033:55,njbf000072085:55,njbf000072114:55,njbf000072131:55,njbf000072197:55,njbf000072227:55,njbf000072280:55,njbf000072465:55,njbf000072516:55,njbf000072548:55,njbf000072609:55,njbf000072617:55,njbf000072640:55,njbf000072680:55,njbf000072831:55,njbf000072895:55,njbf000072900:55,njbf000072995:55,njbf000073016:55,njbf000073032:55,njbf000073035:55,njbf000073070:55,njbf000073099:55,njbf000073178:55,njbf000073235:55,njbf000073271:55,njbf000073313:55,njbf000073390:67,njbf000073405:55,njbf000073410:55,njbf000073424:55,njbf000073443:55,njbf000073446:55,njbf000073448:55,njbf000073451:55,njbf000073488:55,njbf000073492:67,njbf000073509:55,njbf000073519:55,njbf000073536:55,njbf000073553:55,njbf000073571:55,njbf000073577:55,njbf000073580:55,njbf000073745:55,njbf000073749:55,njbf000073754:55,njbf000073809:55,njbf000074931:67,njbf000075034:67,njbf000075076:67,njbf000076320:55,njbf000077060:55,njbf000077636:67,njbf000077794:55,njbf000077807:55,njbf000078030:55,njbf000078120:55,njbf000078155:55,njbf000078208:67,njbf000078758:55,njbf000078796:55,njbf000079043:55,njbf000079059:55,njbf000079126:67,njbf000079672:67,njbf000079744:55,njbf000080725:67,njbf000080830:55,njbf000081138:55,njbf000081164:55,njbf000081299:55,njbf000081726:55,njbf000081784:55,njbf000081863:67,njbf000083113:55,njbf000083177:67,njbf000083234:55,njbf000083237:55,njbf000083250:55,njbf000083279:67,njbf000083289:55,njbf000083345:67,njbf000083718:55,njbf000083830:55,njbf000083855:55,njbf000083877:55,njbf000083883:55,njbf000083941:67,njbf000083994:55,njbf000084098:55,njbf000084189:55,njbf000084559:55,njbf000084955:55,njbf000084965:55,njbf000085268:55,njbf000085550:55,njbf000085562:55,njbf000085603:55,njbf000085643:55,njbf000085646:55,njbf000085695:55,njbf000085883:55,njbf000085896:55,njbf000086131:55,njbf000086175:55,njbf000086228:55,njbf000086450:67,njbf000086947:67,njbf000087002:67,njbf000087038:55,njbf000087074:67,njbf000087082:67,njbf000087143:67,njbf000087378:55,njbf000087401:55,njbf000087414:55,njbf000087482:67,njbf000087545:67,njbf000087549:67,njbf000087554:67,njbf000087566:55,njbf000087584:67,njbf000087587:55,njbf000087596:67,njbf000087860:55,njbf000087997:55,njbf000088027:67,njbf000088045:67,njbf000088093:55,njbf000088315:67,njbf000088660:55,njbf000088683:55,njbf000088732:55,njbf000088836:55,njbf000090505:55,njbf000090596:55,njbf000090775:55,njbf000090784:55,njbf000091014:55,njbf000091023:55,njbf000091114:55,njbf000091190:55,njbf000092355:55,njbf000092567:55,njbf000092651:55,njbf000092695:55,njbf000092701:55,njbf000092864:55,njbf000092875:55,njbf000092888:55,njbf000093477:55,njbf000094295:55,njbf000094338:55,njbf000094422:55,njbf000094986:55,njbf000095306:67,njbf000095360:67,njbf000095464:67,njbf000095674:67,njbf000096931:55,njbf000096965:55,njbf000097484:67,njbf000097794:55,njbf000098401:67,njbf000098453:67,njbf:55,njcoast20:[62,64],njcoast:[62,63,64,66],njdep15:62,njdep:[57,62,64],njgin20:55,njgin:55,njogi:55,njshmp:62,node:[62,85],nomenclatur:97,non:[4,6,7,23,24,25,34,50,52,55,56,57,58,81,82,88,96,97],none:[1,3,4,6,7,54,55,56,81,82,95],nonetheless:[58,62],nonlinear:[20,25,33,87],nonstructur:[23,24],nonzero:51,nor:[58,61],norm:[23,24,34,55,56,63,65],normal:[6,7,25,33,34,51,52,58,68,82,85,87,95,96],north:[62,67,85],norther:62,northern:[61,62],northfield:55,notabl:[33,55,62,64,87],notat:55,note:[4,5,6,7,51,52,56,57,62,67,68,88,95,96,97],notebook:81,notic:16,notr:[62,63],nounit:[55,67],novemb:54,now:[54,55],nrc2011:[20,21],nsb06115:[20,21],nsb2007:[20,21],nsb:[20,21],nsf:[20,21],nstc2006:[20,21],nuanc:56,num_stories_detect:55,num_story_confus:55,number:[3,4,6,7,20,23,24,32,33,34,35,50,54,55,56,57,58,61,62,63,64,66,80,82,84,87,96,97,98,99],numberofstori:[55,56,96],numberofstories0:[55,67],numberofstories1:[55,67],numcommer:54,numcommericalfail:54,numdeactiv:54,numer:[23,24,33,48,55,62,68,96],numleasehold:54,numparcel:54,numparkinglot:54,numpi:[6,7,93],numref:[23,24,55,95,96,101],numresidenti:54,numresidentialfail:54,numstori:[54,64,87],numvac:54,nurs:[55,56],nvidia:54,nyear:54,oak:55,oakland:[82,86,87],object:[3,6,7,52,55,101],obscur:95,observ:[33,55,56,58,62,67,68,81,88,95],obstruct:55,obtain:[20,25,54,55,96],occup:[5,50,54,55,56,58,64,81,87,96],occupancy_map:80,occupancyclass:[55,56,67],occupancyid:54,occupancytyp:[55,56,64,87,96],occupancytyperuleset:55,occupi:[55,57],occur:[6,54,81,82,86,87,96],occurr:[6,23,24,33],ocean:[55,64,67],off:[56,81,99],offer:[7,57,63,64,82],offic:[54,55,56,62,80],offici:[57,95],offset:[57,95],offshor:62,often:[7,30,33,55,57],oftentim:96,ohio:55,old:[55,56],older:[56,64,80,87],omiss:55,omit:96,onc:[32,55,57],one:[3,4,6,7,15,20,33,34,35,48,50,55,56,81,95,96,98],ones:[27,34,82,97,98],ongo:63,onli:[3,4,6,7,23,24,30,33,34,48,50,56,59,62,64,86,95,96,97,99],onlin:[20,23,24,25,54,55],ontario:55,onto:85,open:[25,33,54,55,56,58,62,64,66,81,82,89,90,102],opendata:55,opense:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],openseespi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],opensha:89,oper:[15,20,25,55,81],opinion:[14,17,18,86],opportun:[63,75,82,86,87],optim:[25,55,87],option:[6,7,23,24,25,35,55,56,57,59,62,68,89,90,99],orchard:67,order:[6,25,33,35,55,62,63,65,87],org:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],organ:[6,56,95],organiz:96,orient:[6,55],origin:[20,23,24,25,54],originid:67,orthogon:55,orthotop:7,orthotope_dens:7,osborn:67,osprei:67,ote:56,other:[3,5,6,7,16,20,23,24,25,33,34,35,48,53,55,56,58,59,61,62,64,66,67,80,81,82,84,90,96,99,102],otherwis:[3,7,16,34,81],our:[20,23,24,51,85,94],out:[5,16,33,54,55],outcom:[58,68,82,97],outer:56,outlin:[20,23,24,57],output:[3,5,15,25,33,51,53,55,62,63,81,86,99,100],output_path:3,outreach:[20,21],outsid:[6,7,33,55,57],outsmart:82,over:[6,33,55,56,58,61,62,64,66,81,82,85,87,96,99],overal:[55,58,61],overcom:20,overflow:56,overhead:3,overland:64,overlap:57,overli:56,overlook:34,overrid:99,overridden:96,oversight:57,overturn:81,overview:[26,31,32,63,75,86,97,99],own:[15,25,63,65,97],owner:[55,56,68],owsj:[55,56],p58:[3,4,5,23,24,28,30,32,33,34,48,49,90,95,96,102],p_a:7,p_b:7,p_exc:[6,51],pacif:55,packag:[53,93,102],pact:[4,53,95],pad:[55,58],page:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],page_sourc:54,pai:54,paint:58,pair:[5,68],palmer:55,pams_pin:55,pamspin:55,panda:[6,7,93],pane:81,panel:[55,56,81,82,101],paola:[17,18],par1:54,parallel:[33,55],paramet:[1,2,3,4,5,6,7,13,23,24,25,28,33,48,52,68,88,90,98,100],parameter:58,parcel:[54,55,57,62,63,64,65,80,82,86,87],parceladdress:54,parceladdresscel:54,parcelbox1:54,parcelhead:54,parcelid:[54,55],parcelidcel:54,parcelrow:54,parcelscount:54,parcelsoup:54,parcelst:54,parent:4,park:[54,55,58],pars:[34,54,55,62,66,80,89],parser:[33,54],part:[4,15,23,24,33,35,52,55,57,62,66,90,95,96],partcelid:54,parti:[57,61],partial:[30,81,95,96],particip:15,particl:25,particular:[3,6,16,33,48,55,56,96],particularli:[61,62,63,65,84],partit:[64,81,82],pascal:55,pass:15,past:[33,67,82],path:[4,33,56,58,85,87],path_cmp:5,path_dl_input:3,path_edp_input:3,path_pop:5,patrol:62,pattern:33,pbe:[5,100],pdf:[20,21,55,56],peak:[4,23,24,33,50,55,58,64,67,68,81,85,88,95,96,98,99],peakpopul:96,peed:68,peer:89,pelciun:95,pelicun:[0,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],penetr:64,pennington:55,pennsylvania:55,penros:55,peopl:[3,6,86,87,96],pep:9,per:[6,7,23,24,34,55,56,58,62,80,95,96,97],percent:[56,58],percentag:[55,56,58],percentil:97,perez:63,perfect:[6,30,34,96],perfectli:[6,7,48,96],perform:[3,6,15,20,23,24,25,26,30,31,32,48,51,53,54,55,59,62,67,68,75,81,82,86,88,90,95,96,97,99,101,102],performance_group:6,performancegroup:6,perimet:56,period:[33,56],perman:[81,98],permit:[16,20,56],perpendicular:55,perri:82,person:[25,55,56,96],personnel:[20,22,23,24,25,64],perspect:[6,55,57,64],pertain:[20,55],peter:[62,63],petersson17:85,petersson:[85,87],pfa:[5,6,33,34,48,96,98],pfv:98,pga:[4,95,98],pgai:85,pgax:85,pgd:[6,98],pgv:98,phase:[56,85],phenomena:64,philip:55,phonenumb:55,physic:[25,64],pick:[55,57,96,97],pid:[5,6,33,34,35,48,96,98],piec:[4,5,81,96,98],pier:[35,58],pii:56,pike:[55,67],pile:58,pine:67,pip:93,pipe:[81,82],pipelin:[23,24,35,102],pitarka:[85,87],pittsburg:55,pixel:55,placard:[3,6,90,96],place:[20,56,60,83,91,96],plain:55,plan:[20,21,23,24,54,55,62,64,80,82,89,96],planarea0:[55,67],planarea1:[55,67],planarea:96,plane:[6,55],planner:82,plaster:[81,82],plate:81,platform:[25,53],plausibl:6,plc:[62,66],pleas:[55,60,83,91,94,101],pleasant:55,pleasantvil:[55,67],plot:82,plu:[20,56],ply:56,plywood:81,point:[3,6,33,55,56,67,68,85,89,95,99],poland:[20,21],polic:[55,56],polici:82,polygon:55,poor:[55,56],popul:[1,4,5,23,24,34,50,64,68,80,82,86,87,90,96,99],popular:[33,56],populationdatafil:96,port:[55,67],portal:80,porter:82,portion:81,posit:[7,55,62],possibl:[6,7,16,20,22,23,24,25,50,55,56,57,58,63,68,82,88,95,96],post:[3,6,33,55,56,59,60,82,83,86,91],postfirm:[55,56],potenti:[6,33,50,51,55,56,62,63,65,82,87],pouria:[17,18],power:[23,24,55,66],practic:[6,20,25,33,55,56,63,65,80],pratt:55,prd:98,pre:[4,6,34,35,48,55,68],preclud:6,predat:56,predict:[20,55,62,82,89],predictor:55,predomin:55,prefac:[63,86],prefer:[55,57,99],prefix:2,preliminari:[54,57,82],prep_bounded_linear_median_dv:6,prep_bounded_multilinear_median_dv:6,prep_constant_median_dv:6,prepar:[5,23,24,33,49],prepared:[56,82],prepend_timestamp:2,prescrib:[3,6,23,24,32,48,51,68,88,96],prescribedvalu:96,prescript:7,presenc:[55,56],present:[3,6,20,23,24,25,30,54,62,64,87,96],preserv:[7,33,35],press:[20,21],pressur:[61,62,68,84],pretrain:55,preval:[57,64,87],preventionweb:[20,21],previou:95,previous:[4,32,95],price:80,primari:[35,55,56,58,63,64,65,87],print:[2,54,99],prioriti:[22,23,24,25],probabilist:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],probabl:[3,6,7,23,24,25,32,33,35,51,52,64,68,82,95,96],problem:[15,20,48,94],proc:[54,55,56],procedur:15,proceed:81,process:[3,4,15,25,54,55,56,57,62,63,64,65,67,81,85,87,88],processor:[55,85],procur:16,produc:[4,7,15,33,50,56,99],product:[55,56],profil:[55,64],profit:[16,55],program:[15,20,21,25,54,62,91,101],programm:[9,20],progress:[58,64,87],project:[20,23,24,25,49,61,62,63,64,85,87],promis:[33,34],promot:25,promptli:33,prone:[55,56],proof:56,propag:[15,25,33,48,68,82,88],propagt:25,proper:50,properli:[3,5,48,49,50,51,55,63,65],properti:[3,6,7,56,62,64,67,68,80,88,89],propog:88,proport:[3,6,55,64,82,85,90,96],propos:[25,56],protect:[55,56,62,64],proven:56,provid:[3,4,5,6,7,15,16,20,23,24,25,27,32,33,34,35,48,50,52,53,54,55,56,61,62,63,64,65,81,82,84,85,86,87,89,90,95,96,97,98,99,101],provider:54,provis:25,proxi:[33,96],proxim:57,psa:6,psd:6,pub_id:[20,21],publicli:[4,54,80],purpos:[16,25,48,55,56,82],pwd:[58,62,64,67],pws:62,pypi:93,python37:93,python3:93,python:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],quai:67,qualifi:25,qualiti:[55,56,57],quantif:[7,13,33,61,63,75,84,86],quantifi:[6,33,55,62,68,88,90],quantiti:[3,5,6,23,24,25,32,33,34,48,51,55,56,95,96,97],quantitit:97,quantity_low:6,quantity_upp:6,quantityunit:95,queri:[55,82],question:[60,63,65,82,83,91],quickli:15,r2d:20,r2wc:[55,56],r803:56,r903:56,radii:68,radiu:62,rafter:58,rail:[81,82],rainfal:64,rais:[51,52,56],random:[3,6,7,30,32,33,34,35,48,52,55,56,67,80,85,88,96],randomli:[3,32,55,56,58,64,68,88],randomvari:[6,7],randomvariableregistri:7,randomvariableset:7,rang:[23,24,54,62,96],ransac:55,rapid:[33,55],rare:[3,33,82],rate:[23,24,33,54,55,56,57,64,95],rather:[7,51,52,97],ratio:[54,55,59,67,68,88,95,96,98],ration:95,raw:[7,23,24,35,49,80,85,90,95,96],raw_sampl:7,rc_attri:56,rda:[55,56,68],rdage:[55,56],reach:6,read:[3,4,5,25,50,55],read_component_dl_data:5,read_input:3,read_population_distribut:5,read_simcenter_dl_input:5,read_simcenter_edp_input:5,readi:62,readili:82,real:[51,55,62,80],realign:[81,82],realist:[6,30,34,58],realiz:[3,6,23,24,50,68,81,82,88,89,90,96,97,99],realization_count:1,reapplic:95,rear:55,reason:[7,56],rec:[55,56,96],rec_cost:97,rec_tim:97,recal:82,recalcul:57,receiv:[56,57],recent:[62,64,82,86],recogn:[55,95],recognit:55,recommend:[6,14,17,18,34,55,56,57,86,96,101],reconstruct:[3,6,23,24,51,96],reconstruction_time_cf:6,reconstructioncost:[95,96],reconstructiontim:[95,96],record:[54,55],recoveri:82,recreat:56,rectif:55,rectifi:57,red:[3,6,23,24,48,51,54,68,88,90,96],red_tag:97,red_tag_cf:6,red_tag_dmg_limit:6,red_tag_trigg:6,redistribut:16,redtag:[82,95,96],redtagprob:96,reduc:[6,25,48,82],reduct:[7,20,21,58],redwood:[55,62],refer:[5,6,35,48,51,55,56,62,82,101],referenc:[20,55,56,62],refin:[63,64,65,75,80,86,87],refinish:81,reflect:[14,17,18,56,86],regardless:[56,67],regent:16,region:[7,33,35,54,55,56,59,61,62,63,64,65,67,81,82,85,86,87,89,90],registri:7,regress:[25,33],regular:54,regularli:33,reimagin:64,reinforc:[55,56,64,80,87],rel1:[55,56,58],rel:[5,23,24,33,55,56,57,59],relat:[20,33,56,58,64,67,82],relationship:[6,33,56,64],relax:7,releas:[15,20,56,57,63,86,89,90,93],relev:[4,33,55,56,61,81],reli:20,reliabl:[20,23,24,25,35,84,85,96],reliant:56,relig:[55,56],religi:[54,55],remain:55,remot:25,remov:[81,95,96],renew:[55,56],renter:54,repaint:[81,82],repair:[3,6,23,24,32,33,51,54,56,81,82,86,90,95,96],repair_cost_cf:6,repairmeasur:95,repeat:[20,54,61],replac:[3,5,54,55,58,81,82,93,95,96,99],replacementcost:[55,67,96],replacementtim:96,replic:[61,63,65],repo:4,report:[20,23,24,25,55,56,62,82,91,94],repres:[3,4,6,33,55,57,58,64,82,87,89],represent:[30,55,62,63,64,75,87,88],reproduc:[16,30,54],republ:[55,67],request:[3,6,7,23,24,25,51,63,86,89,96,98,102],requi:62,requir:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,22,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],res1:[55,56,58,67],res2:[55,56,58],res3:[55,56,58],res3a:[55,58,67],res3b:[55,58,67],res3c:[55,58,67],res3d:[55,58,67],res3f:[55,58,67],res4:[55,56,58],res5:[55,56,58],res6:[55,56,58],resampl:[6,35,90,96],research:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],reserv:16,resid:[15,54,55,57,64,87],residencetyp:55,residenti:[5,54,55,64,80,82,87,96],residu:[3,23,24,33,96,98],resili:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],resio:62,resist:[55,58,68,81,95],resnet:55,resolut:[23,24,34,62,82,86,95],resolv:[55,62],resourc:[4,5,20,25,33,50,55,62,63,64,65,80,86,95,96],respect:[3,48,55,56,61,62,82,84,96],respon:25,respons:[6,20,23,24,25,26,31,33,48,56,61,62,63,65,82,86,90,95,97,100],responsedescript:96,responsemodel:96,restaur:54,restor:6,result:[3,4,6,7,23,24,25,30,32,33,48,51,52,53,55,61,62,63,64,65,66,68,75,81,82,84,85,87,90,95,96,97,99,101],retail:[54,55,56,80],retain:[16,55],retrofit:82,review:[63,65,81,89,99,101],revis:[54,56],rho:7,rhode:[55,67],rid:[33,98],right:[16,52,55,82],rise:[54,64,87],risk:[55,57,62,64,87,90],river:[54,55,62],riverin:[55,56,62,64],riverinecoast:55,riverlin:64,riversid:55,rm1:80,rm2:80,road:[55,67],roadlin:55,roadmap:[20,21],robustli:[61,84],rodger:[85,87],rodgers19:[85,87],role:64,roof:[55,56,57,58,68,81,95,96,98],roof_shap:55,roofcov:[55,67],roofcvr:[55,56],roofqual:[55,56],roofshap:[55,56,67,68],roofslop:[55,56,67],roofsystem:[55,56,67],room:[54,81],root:[1,3],rose:56,ross:55,rough:[55,56,58,62,67],roughli:[55,56,68],round:68,rout:55,row:[7,54,55,97,98],rstrip:54,rtm:20,rule:[15,56,58,68],ruleset:[34,61,63,65,80,90],rulest:56,run:[15,25,33,50,54,55,62,63,65,67,85,86,87,89,99],ruptur:[82,85,86,88],rv_list:7,rv_sampl:7,rv_set:[7,52],rwhale:[20,54,80,86],ryng:[80,86],s10584:58,s2212420916303855:56,s_firm_pan:55,sacramento:82,safeguard:56,safer:56,safeti:[6,56,81],sai:56,sake:3,salient:85,sam:13,same:[3,6,7,34,48,54,56,57,95,96,101],sampl:[3,6,7,20,23,24,25,32,33,34,35,48,51,52,60,64,75,83,85,87,88,90,95,96,97,98],sample_s:[6,7],sample_t:67,sample_unit_dv:6,samplerv:46,samples_df:7,san:[80,82,85,87],sandbox:[61,84],sandi:[61,63],saniti:57,santa:82,sarasota:56,satellit:55,satisfi:20,save:[4,25,32,62,68,96,97,99],save_output:3,save_to_standard_hdf:4,scaffold:[61,64,84,87],scalabl:87,scalar:[6,7,25,33,51],scale:[25,33,54,55,59,61,81,86],scarciti:33,scatter:67,scatter_matrix:67,scenario:[23,24,48,51,59,61,63,64,65,67,68,82,84,86,87,88,89,90,98],sch:55,schedul:15,scheffner:62,schema:56,schemat:55,schoettler:63,school:[54,55,80],scienc:[14,20,21,25,56,61,62,66,84,86],sciencedirect:56,scientif:[15,25,85],scientist:15,scipi:93,scope:[33,62,82],scrape:[61,84],screen:2,scriot:56,script:[9,23,24,53,55,56,63,65,90,97,99,101],scupper:56,sdeattri:55,sdesourcecit:55,sea:55,seal:56,search:[54,85,91],seasid:55,sec:96,secb_attri:56,secbh:[55,56],secbl:[55,56],secbm:[55,56],second:[3,23,24,25,33,62,66,68,95,96],secondari:[35,55,56,58],section:[3,4,5,19,23,24,25,54,55,56,62,68,82,88,90,94,95,96,98],see:[3,6,23,24,25,48,50,55,56,61,62,80,82,89,90,95,96,97,98,99,102],seed:7,seek:[63,65],seen:67,segment:[35,55],seismic:[27,33,35,82,85,86,87,102],seismogram:[85,87],seismol:[85,87],seiz:61,select:[7,57,63,64,65,67,68,88,89,96],selenium:54,self:15,semidefinit:7,send_kei:54,sendai:81,senior:[20,22,23,24,25,54],sensit:[6,20,25,34,61,67,82],separ:[4,6,54,55,56,95,96],seper:81,sequenc:[15,20,61,84],sequenti:6,serb_attri:56,serbh:[55,56],serbl:[55,56],serbm:[55,56],seri:[4,6,7,15,50,56,95],serv:[3,6,7],server:82,servic:[16,54,55,56],set:[6,7,15,23,24,25,32,33,50,51,54,55,58,63,81,85,96,99,101],seven:55,seventh:54,sever:[3,6,7,32,33,35,55,56,81,82,90,93,95,96,97,101],severity_level:6,sewel:[55,67],sf1xa:[55,56],sf1xv:[55,56],sf2ba:[55,56],sf2bv:[55,56],sf2sa:[55,56],sf2sv:[55,56],sf2xa:[55,56],sf2xv:[55,56],sfbc:[55,56],sfha:64,sfr:54,shade:82,shake:[54,85,87,95],shall:[4,5,6,7,16,30,48,51,56,96],shape:[6,7,55,56,58],share:[25,27,80,90],shear:[81,82,85,95],sheath:58,sheet:[56,82],shelburn:55,shelter:55,sheltercapac:55,shelv:62,sherlock:62,shingl:[56,57],shop:54,shore:[62,67,95],shortcom:55,shortcut:6,should:[20,48,51,55,56,57,61,64,84,97,99],show:[25,33,53,54,55,62,67,82,85,95,96],shown:[20,50,54,55,59,62,67,82,91,99],shp:[62,64,66],sht_attri:56,shtml:62,shutter:[55,58,68],side:[7,55,56,57],signific:[51,52,58,61,62,63,65,81],significantli:[6,61,62],sill:81,sim:13,simcent:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],simcentetr:62,similar:[4,6,23,24,30,33,34,55,56,61,62,84,96],similarli:[32,61,64],similitud:55,simpl:[3,20],simplest:6,simpli:58,simplifi:82,simul:[13,20,23,24,25,32,33,35,48,54,56,61,62,63,64,67,68,82,84,85,86,87,89,90,95,96,98],simultan:[6,30,68,88],sinc:[33,34,55,56,57,59,62,66],sing:56,singl:[4,6,7,30,33,34,51,54,55,57,58,64,80,87,95,96,98],siracusa:55,site:[56,57,58,62,68,85,87,88,89],situat:64,six:82,sizabl:64,size:[7,55,56,67],sjogreen:[85,87],skew:57,skill:63,slab:[57,58],slide:81,slight:[51,81,82],slightli:[6,62],slip:81,slippag:81,slope:[6,55,56],small:[7,23,24,54,55,56,62,81,82],smaller:[23,24,25,82],smallest:34,smelt:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],smith01:62,smith:[55,62,67],smtl:[55,56],snaiki17a:62,snaiki17a_:68,snaiki17b:62,snaiki17b_:68,snaiki:[62,64],sobol:25,social:[61,84],societ:[61,84],societi:[62,66],socioeconom:33,soft:81,softwar:[3,4,15,16,20,25,54,55,63,82,85,95],soil:[88,89],solicit:20,solid:85,solut:[7,95],solv:[62,85],solver:25,some:[15,50,54,55,56,57,61,62,63,64,65,68,81,82,84],somer:67,sonoma:82,sophist:33,sort:56,sourc:[1,2,3,4,5,6,7,16,20,22,23,24,25,33,48,49,50,51,52,55,56,57,61,63,64,65,68,82,85,87,88,89,90,95,96,102],south:[55,82,85],southern:62,sovereign:55,sp3:53,space:[7,51,55,56,62,85,96],span:56,spars:[55,57],sparsiti:56,spatial:[33,35,89],specfic:96,specfici:96,special:[16,20,33,52,64,81],specif:[5,7,20,33,34,55,56,57,58,62,63,64,65,68,87,88,96,98],specifi:[3,5,6,7,23,24,48,50,51,55,56,57,62,89,96,97,98,99],spectra:33,spectral:[33,62],spectrum:82,speed:[4,54,55,56,58,63,64,67,68,88,95],sph:62,spite:48,split:[54,55,56,81],splitlevel:[55,67],splitlin:54,spm:[55,56],spmb:55,spmb_attri:56,spmbl:[55,56],spmbm:[55,56],sprai:55,spread:58,spreadsheet:[4,95],spri:56,spring:81,spruce:55,sqft:80,squar:[3,25,55,68,82,85,88,96],stack:55,staff:86,stage:55,staion:56,stairwai:58,stand:[4,7],standalon:100,standard:[3,4,7,23,24,33,34,50,51,55,56,62,63,65,96,97],stanford:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],start:[22,23,24,25,33,34,54,56,91,101],state:[3,4,6,17,18,30,32,33,34,48,51,55,57,58,61,62,64,67,68,80,81,88,95,96,97],statewid:61,station:[55,62],statist:[25,68,81,82,97],statu:[22,23,24,25],steadi:62,steel:[55,64,67,80,87],stem:33,step:[15,32,33,54,55,68,90],stepwis:32,stevan:63,stiff:88,still:[56,57],stochast:[3,23,24,25],stock:82,stockton:55,storag:[23,24,58,96],store:[1,3,4,5,23,24,27,81,95,96],stori:[6,27,34,35,54,55,58,61,64,80,81,82,87,95,96],storm:[23,24,55,56,58,61,63,64,68,88,90],storyhtregex:54,storylevel:81,str:6,straddl:[86,87],strain:81,strand:67,strap:[55,56],strateg:[20,21],strategi:[68,88],strategic_plan_2008:[20,21],strawberri:67,street:[54,55,56,67],streetview:[55,56],stretch:81,strict:16,strike:62,string:[2,3,4,5,7,99],strip:55,strive:9,strong:[62,66],struct:54,structur:[3,4,5,6,13,23,24,25,32,33,34,35,48,50,55,56,57,58,61,62,64,66,68,81,82,84,87,90,96,101],structure_map:80,structuretyp:[55,67],structureus:55,stucco:81,stud:[57,81],student:86,studi:[33,55,56,61,62,67,80,82,85,86,87,98],stwave:62,style:102,sub:[6,7,56,96],subclass:[58,64,87],subclassif:55,subfold:4,subgroup:[6,96],subject:[6,20,56,60,62,68,83,91],submit:[54,89,91],submitbtn:54,submitbutton:54,subsect:56,subsequ:[7,15,54],subset:[6,7,34,49,55,64,96],substanti:[7,33,58,95],substitut:16,suburban:56,suffici:[33,51,52,62,96],suffix:3,suffolk:67,suggest:[17,18,23,24,30,33,56],suit:62,suitabl:56,sum:[3,6,7,58,96,97],summar:[20,54,55,56,57,59,64,67,68,80,82,87],summari:[40,97],summit:55,sumner:55,sunset:67,supercomput:33,superior:[55,56,95],superstorm:[61,63],superstructur:55,supervis:63,support:[3,6,7,14,17,18,33,34,50,54,58,61,62,63,81,84,86,98],surat:[55,56],sure:93,surf:55,surfac:[55,67,85],surg:[23,24,56,58,61,63,64,68,88,90],surrog:[25,33,62,63],surround:[56,64,86,87],survei:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],surviv:33,suscept:[56,64],suspend:[34,81],sustain:[63,82],svd:7,sw4:[82,85,88],sweet:64,switzerland:85,swr:[55,56,68],swr_attri:56,sycamor:55,syntax:7,synthet:[58,61,64,68],synthetic_data:62,sys:54,system:[6,15,20,25,33,55,62,81,85,93,96],sythet:62,tab:[55,95],tabl:[4,23,24,51,54,55,56,93],tabular:[5,58],tacc:25,taflanidi:[62,63,64],tag:[3,6,23,24,48,51,54,55,90,96],tailor:5,take:[15,32,33,54,55,56,66,68,96],taken:[6,7,56,64,68,88],tall:[61,64,81,82,84,87],taller:61,target:[7,62],target_dir:[4,99],target_dir_path:99,target_path:4,task:[3,15,20,53,55,57],tax:[54,55,57,64,80,87],taxat:55,tbodi:54,tcl:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],td_attri:56,team:[54,63,82],tear:95,tech:55,technic:[3,4,5,56,58,62,64,68,81,87,90,95,97,102],techniqu:[33,61,62,63,65,84],technolog:[20,21,34,55,56,62,86],temperatur:[55,56,96],templat:[63,65],tempor:[23,24,96],temporari:54,tend:82,tendenc:[33,96],teng:63,term:[15,55,56,68,88],terminolog:33,terr:55,terrain:[55,56,58,62,66],terzic:[17,18],test:[20,25,33,53,55,56,62,64,87],test_consequencefunction_bounded_linear_median_valu:51,test_consequencefunction_fixed_median_valu:51,test_consequencefunction_sample_unit_dv:51,test_control:48,test_convert_p58_data_to_json:49,test_create_hazus_json_fil:49,test_damagestate_descript:51,test_damagestate_injury_sampl:51,test_damagestate_reconstruction_time_sampl:51,test_damagestate_red_tag_sampl:51,test_damagestate_repair_cost_sampl:51,test_damagestate_weight:51,test_damagestategroup_kind:51,test_db:49,test_fema_p58_assessment_central_tend:48,test_fema_p58_assessment_dv_uncertainty_depend:48,test_fema_p58_assessment_dv_uncertainty_dependencies_with_partial_dv_data:48,test_fema_p58_assessment_edp_uncertainty_3d:48,test_fema_p58_assessment_edp_uncertainty_bas:48,test_fema_p58_assessment_edp_uncertainty_detection_limit:48,test_fema_p58_assessment_edp_uncertainty_failed_analys:48,test_fema_p58_assessment_edp_uncertainty_single_sampl:48,test_fema_p58_assessment_edp_uncertainty_zero_vari:48,test_fema_p58_assessment_frag_uncertainty_depend:48,test_fema_p58_assessment_frag_uncertainty_dependencies_atc:48,test_fema_p58_assessment_frag_uncertainty_dependencies_csg:48,test_fema_p58_assessment_frag_uncertainty_dependencies_d:48,test_fema_p58_assessment_frag_uncertainty_dependencies_dir:48,test_fema_p58_assessment_frag_uncertainty_dependencies_loc:48,test_fema_p58_assessment_frag_uncertainty_dependencies_pg:48,test_fema_p58_assessment_qnt_uncertainty_depend:48,test_fema_p58_assessment_qnt_uncertainty_independ:48,test_file_io:50,test_fitting_baselin:52,test_fitting_censor:52,test_fitting_lognorm:52,test_fitting_trunc:52,test_fitting_truncated_and_censor:52,test_fragilityfunction_dsg_id_given_edp_gener:51,test_fragilityfunction_pexc_lognormal_non_trivial_cas:51,test_fragilityfunction_pexc_lognormal_nonzero_scalar_input:51,test_fragilityfunction_pexc_lognormal_unit_mean_unit_std:51,test_fragilityfunction_pexc_lognormal_zero_input:51,test_fragilityfunction_pexc_multiple_damage_states_with_correl:51,test_fragilitygroup_description_and_nam:51,test_model:51,test_mvn_cdf_multivari:52,test_mvn_cdf_univari:52,test_performancegroup_pexc:51,test_randomvariable_incorrect_multinomial_definit:52,test_randomvariable_incorrect_none_defin:52,test_randomvariable_sample_distribution_mixed_norm:52,test_randomvariable_sample_distribution_multinomi:52,test_read_component_dl_data:50,test_read_population_distribut:50,test_read_simcenter_dl_input_full_input:50,test_read_simcenter_dl_input_injuries_onli:50,test_read_simcenter_dl_input_minimum_input:50,test_read_simcenter_dl_input_no_r:50,test_read_simcenter_dl_input_non_standard_unit:50,test_read_simcenter_dl_input_unknown_component_unit:50,test_read_simcenter_dl_input_unknown_unit:50,test_read_simcenter_edp_input:50,test_sampling_non_trunc:52,test_sampling_tr_alpha_error:52,test_sampling_truncated_narrow_limit:52,test_sampling_truncated_wide_limit:52,test_uq:52,testb:[54,56,60,61,62,63,64,65,67,68,80,81,82,83,84,86,87,88],testbed_ac_asset_represent:58,testbed_sf_response_simul:82,texa:67,text:[5,8,10,11,12,26,27,47,54,75,92,100],tha:[96,99],than:[3,6,7,32,33,34,35,54,55,56,58,59,61,62,67,80,82,85,87,96,97,99],theat:[55,56],theatr:56,thehaywir:82,thei:[6,15,20,23,24,30,34,48,55,56,57,62,82,89,93,95,96,97,98,101,102],them:[6,23,24,33,50,57,89,94,96],themselv:[55,64],theoret:90,theori:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],therefor:[5,56,97],theta:[7,51],thi:[1,2,3,4,5,6,7,13,14,15,16,17,18,20,30,32,33,34,35,48,51,54,55,56,58,61,62,63,64,65,67,68,80,81,82,84,86,87,88,89,90,95,96,97,99,102],thick:56,third:[33,34,57,61],thompson:[55,67],thorofar:55,thorough:[51,52,81],those:[3,4,5,6,7,9,14,17,18,20,32,33,53,55,56,57,61,62,63,64,65,82,84,86,95,96,99,101],though:[51,55,56,64],thousand:96,thread:[33,34],three:[20,33,34,56,62,64,67,68,85,86,87,95,101],through:[3,4,6,15,20,23,24,25,48,54,56,57,58,61,62,63,64,65,68,81,88,89,96,99,100,102],throughout:[13,15,58,81,82,85],thu:[55,56,57,61,64,84],tide:62,tiedown:[55,56],tier:56,ties:[55,56],tile:[81,82],time:[2,3,6,7,20,23,24,32,33,51,54,55,56,58,62,63,65,66,82,85,86,87,89,90,96,97,99],tmcmc:25,todai:56,toe:[55,56],togeth:[6,55,56,86,87],tool:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102],top:[55,56,57,58,59,96],topic:[60,83,91],topobathi:62,topographi:62,toppl:[81,82],tornado:56,tort:16,total:[3,6,54,55,58,59,62,64,80,81,82,87,96,97],tourist:64,toward:[5,61,84],town:[54,55],traci:[17,18,63],track:[20,62,68,82],tract:55,train:[20,25,55],transect:62,transfer:96,transform:[7,55],transit:[64,87],translat:[56,61,62,68],transport:[23,24,61,80],travel:4,travi:53,treasuri:55,treat:[6,57,58,61,68,88],tree:[4,23,24,56,61,84],trend:56,trenton:55,tri:34,trial:54,triangul:57,trigger:[3,6,23,24,30,32,50,96],trim:58,tropic:62,troubleshoot:102,truncat:[6,7,35,52,90,96],truncation_limit:7,truss:[56,58],truth:61,tsunami:[23,24],tuckaho:55,tupl:5,turn:[50,99],twenti:56,two:[3,4,7,27,33,34,35,48,54,55,56,58,62,63,64,65,67,68,80,82,88,90,96,98],type:[3,4,5,6,7,23,24,33,34,35,50,51,54,55,56,57,58,62,64,68,81,82,87,90,95,96,97,98],typic:[6,15,33,34,35,48,51,52,55,56,81,90,96,98],typifi:[64,87],typolog:[55,57,64],ucerf3:89,udfattri:55,udv:6,unanchor:81,uncensor:52,uncertain:[6,96],uncertainti:[3,6,7,13,23,24,33,48,63,75,81,82,86,89,96],unchang:[63,65],uncorrel:6,uncoupl:[95,97],undamag:6,undefin:4,under:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],underlay:56,underli:[55,56,62,64,82],underscor:[55,57],understand:[56,63,65,67],understood:56,unexpect:55,uni_sampl:7,uniform:[7,25,58,62],uniformli:58,uniqu:[7,20,48,55,58,96],unit:[5,6,34,48,49,50,51,52,53,55,62,66,80,95,96,97,98],unit_dv:6,unit_injuri:6,unit_reconstruction_tim:6,unit_repair_cost:6,unitclass:[55,56],univari:[7,52],univers:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],unix:93,unknown:[50,54],unkown:54,unless:[56,80],unlik:[3,82],unlimit:96,unnecessari:6,unrel:6,unreli:48,unsaf:[3,6,90,96],unshutt:56,unspecifi:7,until:56,updat:[20,55,56,57,63,86,95],upgrad:93,upon:[14,17,18,55,56,57,61,64,84,87],upper:[6,7,82,96],upward:58,upwind:62,uq_ruleset:68,uqf:20,uqr:20,urban:[56,64,80,82],urbansim:80,url:54,urm:80,usac:[56,62],usag:[25,64,87,90,100],usbuildingfootprint:55,usdoc13:62,use:[4,6,7,16,23,24,25,33,35,48,52,54,55,57,61,62,63,65,82,89,90,91,93,96,97,101],usecod:[55,67],used:[3,4,5,6,7,9,15,20,23,24,30,32,33,34,35,48,50,54,55,56,57,58,61,62,63,65,68,80,81,82,84,85,89,90,95,96,97,98,101],useful:[3,5,7,23,24,35,96],user:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,101,102],uses:[3,30,33,34,49,54,62,95,96,98,99,101],usg:[54,62,82,85,86,87],usgs18:85,using:[3,4,5,6,7,15,20,23,24,27,32,33,34,35,48,49,51,53,54,55,56,57,62,63,65,66,67,68,80,81,82,85,86,88,89,93,95,96,97,99,102],usual:[55,68,88],util:[20,25,54,55,90],v81:62,vac:54,vacant:54,valid:[25,55,56,61,89],valu:[3,4,5,6,7,20,23,24,32,33,35,48,51,52,54,55,56,57,58,62,67,68,82,88,96,97,99],valuabl:[62,82],var_subset:7,vardeman:64,varga:[17,18],vari:[55,56,61,82],variabl:[3,4,6,7,32,33,34,40,48,50,52,68,88,90,96,97],varianc:[7,48],variat:[68,88,96],varieti:[33,64,87],variou:[3,23,24,25,27,32,51,55,56,63,64,65,82,87,90,96],vector:7,veloc:[33,55,56,85,88,89,98],veneer:81,ventnor:[55,67],ventor:[59,64],vera:55,verbos:[3,5],veri:[7,33,82],verif:[5,25,51,52,62,63,102],verifi:[53,64,67],vermont:[55,67],version:[23,24,33,35,54,55,62,64,80,82,85,89,93,95,96,102],vertic:[55,56,95],vesna:[17,18],via:[20,55,68],vickeri:[62,63],vicksburg:62,video:[25,54],view:[14,17,18,20,21,25,33,56,61,84,86],vintag:[64,87],vinyl:57,virginia:[62,82,85],visibl:55,vision:[20,56],visit:[54,101],vista:55,visual:[15,25,55,62,64,81,87],viz:25,voc:55,vol:55,volum:95,voluntari:56,voluntarili:56,vulner:[33,55,56,57,64,81,102],waddel:80,waddell02:80,wael:[54,63],wai:[7,16,55,58,62,101],walk:4,wall:[55,57,58,81,82],wang19:55,wang:[55,63,80,86],want:[23,24,89,96,99],warehous:[54,55,56],warn:[5,20,21,50],warrant:[55,95,96],warranti:16,wash:67,washington:[20,21,58,64,67,80,81,87],water:[23,24,55,58,64,67,68,102],waterwai:62,wave:[55,62,64,85],wave_bldg_class:56,waveform:85,waveland:67,wbd:[55,56,68],wcee:81,weak:[55,56],web:[25,54],webdriv:54,webdriverwait:54,webinar:54,websit:[25,54,101],week:[54,62],weekdai:3,weekend:3,weekstown:55,weibul:25,weight:[6,51,55,62,82,85,95,96],wein:82,welch:[17,18],welcom:[23,24,61,84],weld:95,well:[33,56,58,61,62,63,64,65,87,96],wellington:67,were:[20,23,24,54,55,56,58,61,62,64,68,80,82,84,85,86,87,88,95],west:[55,67,85,86,87],westerink:[62,63],wet:62,weymouth:55,what:[20,55,56,89,91,102],wheat:55,when:[3,4,5,6,7,9,25,30,34,48,50,51,52,55,56,57,58,60,62,83,91,93,96,97,99],where:[4,6,7,25,55,56,57,58,59,61,66,81,82,84,85,96,97,98,99,101],wherea:[56,58,82],whether:[6,16,20],which:[6,15,20,23,24,25,27,33,54,55,56,57,58,59,61,62,64,67,68,80,82,84,86,87,88,96],white:[55,67],who:[9,61,63,65,84,86,99,101],whole:[15,55,56],wholesal:56,whose:[34,55,57,63,68,82],wide:[9,33,35,52,82,95],wild:55,wilson:67,wind:[4,20,23,24,55,59,61,63,64,68,88,90,95,102],wind_bldg_attri:56,wind_comp:58,wind_df:58,wind_loss_bt:67,wind_loss_yr:67,windcecbruleset:56,windcerbruleset:56,windclassruleset:56,winddebri:[55,56],windefruleset:56,windfield:62,windmecbruleset:56,windmerbruleset:56,windmetavarruleset:56,windmhruleset:56,windmlriruleset:56,windmlrmruleset:56,windmmuhruleset:56,windmsfruleset:56,window:[55,58,62,66,68,81,82,93],windowarea:[55,56,67],windsecbruleset:56,windserbruleset:56,windspmbruleset:56,windstorm:[20,21],windwmuhruleset:56,windwo:55,windwsfruleset:56,windzon:[55,67],wirefram:55,wise:59,wish:[61,63,64,65,84],within:[3,6,7,20,27,34,48,55,56,57,58,61,64,82,84,95,96,97],without:[7,16,20,50,90,95],wmuh1:[55,56],wmuh1n:[55,56],wmuh2:[55,56],wmuh2n:[55,56],wmuh3:[55,56],wmuh3n:[55,56],wmuh4n:[55,56],wmuh_attri:56,wood:[55,57,58,64,67,80,81,82,87],wooden:[33,56],word:[7,33],work:[7,14,17,18,20,33,52,54,58,86,95,99],workerdai:96,workflow:[15,20,25,26,31,55,56,58,61,62,63,64,65,68,82,84,85,86,87,88,99],workflowregionalearthquak:[80,86],workshop:20,workspac:54,world:[55,81],worst:[59,67],would:[9,20,23,24,25,51,52,53,54,55,58,60,61,62,68,83,84,86,89,91,93,96,102],write:9,writer:54,writerow:54,written:[9,55,58,63,65],wsf1:[55,56],wsf2:[55,56],wsf_attri:56,wwr:[55,56],wwr_attri:56,www:[20,21,54,55,56,80],x100:55,xlrd:93,xlsx:[4,49],xml:[4,49,50,95],xpath:54,year:[20,21,34,54,55,56,64,80,81,82,87],yearbuilt:[54,55,56,68],yearbuiltmodiv:[55,67],yearbuiltnjdep:[55,56,67,68],yearbuiltregex:54,yearconstruct:55,yearli:20,yellow:[68,88],yes:[55,56,68],yield:[6,23,24,95,96],yielddriftratio:96,york:[55,62,67],you:[23,24,25,53,56,60,83,89,90,91,93,94,96,99],your:[57,60,83,89,93],youtub:54,yrbltregex:54,z_0:[62,66,67],z_g:66,zeng:[17,18],zenodo:[55,80,85,86],zero:[6,48,51,54,55,62],zhang:64,zhong:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],zip:[54,55,59,62,82],zipcod:55,zone:[55,56,57,58,82],zou:[17,18,63],zsarnoczai:[63,80,86]},titles:["2. API Documentation","2.1.1. pelicun.auto module","2.1.2. pelicun.base module","2.1.3. pelicun.control module","2.1.4. pelicun.db module","2.1.5. pelicun.file_io module","2.1.6. pelicun.model module","2.1.7. pelicun.uq module","Architecture","1. Coding Style","Examples","How to Extend","Verification","5. Abbreviations","Acknowledgments","4. Glossary","3. Copyright and License","2. Acknowledgments","Acknowledgments","BLAH","Requirements Traceability Matrix","Requirements Traceability Matrix","<no title>","1. Pelicun Requirements","4. Requirements","Requirements","1. Background","Damage and Loss Model Parameters","Databases","Auto population","Damage Model","1.1. The PELICUN Framework","Loss Model","Overview","Performance Model","Response Model","Uncertainty Quantification","Damage Measures","Demand Data","Decision Variables","Output Files","Summary Data","DL_calculation","exportDB","fitDistribution","sampleRV","Standalone Tools","Technical Manual","Testing the pelicun.control module","Testing the pelicun.db module","Testing the pelicun.file_io module","Testing the pelicun.model module","Testing the pelicun.uq module","2. Verification","Anchorage, AK","Asset Description","Asset Representation","Best Practices","Damage and Loss Estimation","Example Outputs","Feedback and Data Request","Opportunity Areas for Future Refinements","Hazard Characterization","Atlantic County, NJ","Overview","Preface","Standard Wind Speed Conversions","Verification Results","Uncertainty Quantification","Lake Charles, LA","Asset Description","Asset Representation","Damage and Loss Estimation","Opportunity Areas for Future Refinements","Hazard Characterization","Memphis, TN","Network Performance Assessment","Overview","Sample Results","Uncertainty Quantification","Asset Description","Damage and Loss Estimation","Example Outputs","Feedback and Data Request","Opportunity Areas for Future Refinements","Hazard Characterization","San Francisco, CA","Overview","Uncertainty Quantification","About","1. About","5. Bugs & Feature Requests","Examples","1. Installation","3. Troubleshooting","2.4. Damage and Loss Model Parameters","2.2. Configuration File","2.5. Output Files","2.3. Response Data File","2.6. Standalone Tools","2. User Guide","2.1. Usage","pelicun library"],titleterms:{"1st":27,"2nd":27,"class":[56,67],And:96,The:31,Use:101,Using:55,abbrevi:13,about:[89,90],access:[59,62],acknowledg:[14,17,18],addit:[55,56],advanc:55,all:[20,21,55],analysi:62,anchorag:54,api:0,app:101,applic:[20,25,101],architectur:8,area:[61,73,84],assembl:58,assess:[33,56,68,76,88],asset:[55,56,68,70,71,80],assign:[55,56],atlant:63,attribut:[55,56],augment:55,auto:[1,29],avail:[55,64,87],background:26,base:2,basic:55,benchmark:53,best:57,blah:19,born:56,bug:91,build:[20,54,55,56,67,80],calcul:67,capabl:[64,87],categori:62,cecb:56,center:56,cerb:56,character:[62,68,74,85,88],charl:69,classif:56,code:9,collaps:96,commerci:56,common:25,compon:96,comput:55,concret:56,configur:96,contact:[20,21,102],continu:53,contribut:58,contributor:[17,18],control:[3,48],convers:66,copyright:16,cost:80,counti:63,current:[64,87],damag:[27,30,37,55,58,68,72,81,82,88,95,96],data:[38,41,54,55,60,83,95,96,98],databas:[23,24,28,95],dataset:55,date:93,debri:56,decis:39,defin:55,definit:55,demand:38,depend:[93,96],depth:62,descript:[55,70,80],detail:[55,56],determin:56,differ:62,dl_calcul:[42,99],document:[0,63,86],down:56,earthquak:27,edit:27,elementari:56,emerg:56,engin:56,essenti:56,estim:[55,58,72,81],exampl:[10,59,82,92],expect:82,explor:55,exportdb:[43,99],expos:55,extend:11,facil:[55,56],factilit:56,famili:56,featur:91,feedback:[60,83],fema:[27,55],file:[23,24,40,62,95,96,97,98],file_io:[5,50],fire:56,first:56,fitdistribut:44,flood:[55,56,58],floor:56,folder:96,footprint:55,format:95,forpolic:56,foundat:[17,18],framework:31,francisco:86,futur:[61,73,84],gather:54,gener:[23,24,96],glossari:15,ground:54,guid:100,hand:67,hazard:[62,64,68,74,85,87,88],hazu:[27,55,56],height:56,high:56,histor:62,histori:[63,86],home:56,hospit:56,how:11,hurrican:[27,62],iii:55,illustr:55,implement:[64,87],induc:56,industri:56,inform:96,instal:93,integr:53,introduct:20,inventori:[55,64,67,87],lake:69,librari:[101,102],licens:16,logic:96,loss:[27,32,56,58,67,68,72,81,82,88,95,96],low:56,mall:56,manual:47,manufactur:56,map:80,masonri:56,matrix:[20,21],mca:62,measur:37,mecb:56,memphi:75,merb:56,meta:56,metal:56,method:[25,55],mlri:56,mlrm:56,mmuh:56,mode:96,model:[6,27,30,32,34,35,51,55,56,62,95,96],modul:[0,1,2,3,4,5,6,7,48,49,50,51,52],motion:54,msf:56,multi:56,multipl:62,nation:[17,18],network:76,njdep:55,occup:80,onli:[55,58],oper:56,opportun:[61,73,84],output:[40,59,82,97],overview:[33,64,77,87],p58:27,paramet:[27,95,96],parti:55,pbe:101,peak:62,pelicun:[1,2,3,4,5,6,7,23,31,48,49,50,51,52,102],perform:[33,34,76],phase:55,point:[59,62],popul:[29,55],practic:57,pre:56,prefac:65,problem:53,properti:55,quantif:[25,36,68,79,88],quofem:25,random:[25,68],ratio:[56,58,82],rational:[64,87],refer:[20,21,102],refin:[61,73,84],region:20,replac:80,represent:[56,68,71],request:[60,83,91],requir:[20,21,23,24,25],research:25,residenti:56,resist:56,respons:[35,88,96,98],result:[54,59,67,78],rise:56,rule:80,ruleset:[55,56,68],sampl:[55,67,68,78],samplerv:45,san:86,sandi:62,scale:[20,62],scenario:62,school:56,scienc:[17,18],sde:55,secb:56,second:56,select:55,serb:56,shutter:56,simul:88,singl:56,speed:[62,66],spmb:56,stai:93,standalon:[46,99],standard:66,state:82,station:56,steel:56,stori:56,storm:62,strip:56,structur:[80,88],style:9,sub:58,substanti:55,summari:[41,55],superstorm:62,support:[64,87],surg:62,synthet:62,system:56,tabl:58,technic:47,test:[48,49,50,51,52],third:55,three:55,through:101,tie:56,tool:[46,55,99],traceabl:[20,21],troubleshoot:94,type:80,udf:55,uncertainti:[25,36,68,79,88],unit:56,usag:101,use:56,user:[55,100],variabl:[25,39,56],verif:[12,53,67],version:[63,86],vision:55,wall:56,water:[56,62],wave:56,wind:[56,58,62,66,67],window:56,wmuh:56,wood:56,workflow:[33,54],wsf:56,year:67}}) \ No newline at end of file diff --git a/pelicun/__init__.py b/pelicun/__init__.py index 75204057a..5992d8886 100644 --- a/pelicun/__init__.py +++ b/pelicun/__init__.py @@ -39,15 +39,9 @@ name = "pelicun" -__version__ = '2.6.1' +__version__ = '3.0.0' __copyright__ = """Copyright (c) 2018 Leland Stanford Junior University and The Regents of the University of California""" -__license__ = "BSD 3-Clause License" - - - - - - +__license__ = "BSD 3-Clause License" \ No newline at end of file diff --git a/pelicun/assessment.py b/pelicun/assessment.py new file mode 100644 index 000000000..c0f0c39d6 --- /dev/null +++ b/pelicun/assessment.py @@ -0,0 +1,141 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2018 Leland Stanford Junior University +# Copyright (c) 2018 The Regents of the University of California +# +# This file is part of pelicun. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# 3. Neither the name of the copyright holder nor the names of its contributors +# may be used to endorse or promote products derived from this software without +# specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# You should have received a copy of the BSD 3-Clause License along with +# pelicun. If not, see . +# +# Contributors: +# Adam Zsarnóczay + +""" +This module has classes and methods that control the performance assessment. + +.. rubric:: Contents + +.. autosummary:: + + Assessment + +""" + +from .base import * +from .file_io import * +from .model import * + +load_default_options() + +class Assessment(object): + """ + Assessment objects manage the models, data, and calculations in pelicun. + + Parameters + ---------- + demand: DemandModel + ... + asset: AssetModel + ... + damage: DamageModel + ... + bldg_repair: BldgRepairModel + ... + stories: int + Number of stories. + """ + + def __init__(self): + + log_msg(f'pelicun {pelicun_version} | \n', + prepend_timestamp=False, prepend_blank_space=False) + + print_system_info() + + log_div() + log_msg('Assessement Started') + + self.stories = None + + @property + def demand(self): + """ + Return a DemandModel object that manages the demand information. + + """ + + if hasattr(self, '_demand'): + return self._demand + + else: + self._demand = DemandModel() + return self.demand + + @property + def asset(self): + """ + Return an AssetModel object that manages the asset information. + + """ + + if hasattr(self, '_asset'): + return self._asset + + else: + self._asset = AssetModel(self) + return self.asset + + @property + def damage(self): + """ + Return an DamageModel object that manages the damage information. + + """ + + if hasattr(self, '_damage'): + return self._damage + + else: + self._damage = DamageModel(self) + return self.damage + + @property + def bldg_repair(self): + """ + Return an BldgRepairModel object that manages the repair information. + + """ + + if hasattr(self, '_bldg_repair'): + return self._bldg_repair + + else: + self._bldg_repair = BldgRepairModel(self) + return self.bldg_repair \ No newline at end of file diff --git a/pelicun/base.py b/pelicun/base.py index 346861747..5c13a0da1 100644 --- a/pelicun/base.py +++ b/pelicun/base.py @@ -46,6 +46,8 @@ import warnings from datetime import datetime from time import strftime +from pathlib import Path +import argparse from copy import deepcopy @@ -53,23 +55,345 @@ import numpy as np import pandas as pd +from .__init__ import __version__ as pelicun_version + idx = pd.IndexSlice # set printing options import pprint -pp = pprint.PrettyPrinter(indent=4, width=300) +pp = pprint.PrettyPrinter(indent=2, width=80-24) pd.options.display.max_rows = 20 pd.options.display.max_columns = None pd.options.display.expand_frame_repr = True pd.options.display.width = 300 -log_file = None +idx = pd.IndexSlice + +class Options(object): + + """ + + Parameters + + verbose: boolean + If True, the pelicun echoes more information throughout the assessment. + This can be useful for debugging purposes. + + log_show_ms: boolean + If True, the timestamps in the log file are in microsecond precision. + + """ + + def __init__(self): + + self._verbose = False + self._log_show_ms = False + self._print_log = False + + self.defaults = None + self.sampling_method = None + + self._seed = None + self._rng = np.random.default_rng() + + self.reset_log_strings() + + self.demand_offset = {} + self.nondir_multi_dict = {} + + def nondir_multi(self, EDP_type): + + if EDP_type in self.nondir_multi_dict.keys(): + return self.nondir_multi_dict[EDP_type] + + elif 'ALL' in self.nondir_multi_dict.keys(): + return self.nondir_multi_dict['ALL'] + + else: + raise ValueError(f"Scale factor for non-directional demand " + f"calculation of {EDP_type} not specified.") + + @property + def verbose(self): + return self._verbose + + @verbose.setter + def verbose(self, value): + self._verbose = bool(value) + + @property + def log_show_ms(self): + return self._log_show_ms + + @log_show_ms.setter + def log_show_ms(self, value): + self._log_show_ms = bool(value) + + self.reset_log_strings() + + @property + def log_pref(self): + return self._log_pref + + @property + def log_div(self): + return self._log_div + + @property + def log_time_format(self): + return self._log_time_format + + @property + def seed(self): + return self._seed -log_div = '-' * (80-21) # 21 to have a total length of 80 with the time added + @seed.setter + def seed(self, value): + self._seed = value + + self._rng = np.random.default_rng(self._seed) + + @property + def rng(self): + return self._rng + + @property + def log_file(self): + return globals()['log_file'] + + @log_file.setter + def log_file(self, value): + + if value is None: + globals()['log_file'] = value + else: + + filepath = Path(value).resolve() + + try: + globals()['log_file'] = str(filepath) + + with open(filepath, 'w') as f: + f.write('') + + except: + raise ValueError(f"The filepath provided does not point to an " + f"valid location: {filepath}") + + @property + def print_log(self): + return self._print_log + + @print_log.setter + def print_log(self, value): + self._print_log = str2bool(value) + + def reset_log_strings(self): + + if self._log_show_ms: + self._log_time_format = '%H:%M:%S:%f' + self._log_pref = ' ' * 16 # the length of the time string in the log file + self._log_div = '-' * (80 - 17) # to have a total length of 80 with the time added + else: + self._log_time_format = '%H:%M:%S' + self._log_pref = ' ' * 9 + self._log_div = '-' * (80 - 10) + + def scale_factor(self, unit): + + if unit is not None: + + if unit in globals().keys(): + scale_factor = globals()[unit] + + else: + raise ValueError(f"Unknown unit: {unit}") + else: + scale_factor = 1.0 + + return scale_factor + +options = Options() + +log_file = None # get the absolute path of the pelicun directory -pelicun_path = os.path.dirname(os.path.abspath(__file__)) +pelicun_path = Path(os.path.dirname(os.path.abspath(__file__))) + +def set_options(config_options): + + if config_options is not None: + + for key, value in config_options.items(): + + if key == "Verbose": + options.verbose = value + elif key == "Seed": + options.seed = value + elif key == "LogShowMS": + options.log_show_ms = value + elif key == "LogFile": + options.log_file = value + elif key == "PrintLog": + options.print_log = value + elif key == "SamplingMethod": + options.sampling_method = value + elif key == "DemandOffset": + options.demand_offset = value + elif key == "NonDirectionalMultipliers": + options.nondir_multi_dict = value + elif key == "RepairCostAndTimeCorrelation": + options.rho_cost_time = value + elif key == "EconomiesOfScale": + options.eco_scale = value + +def convert_to_SimpleIndex(data, axis=0): + """ + Converts the index of a DataFrame to a simple, one-level index + + The target index uses standard SimCenter convention to identify different + levels: a dash character ('-') is used to separate each level of the index. + + Parameters + ---------- + data: DataFrame + The DataFrame that will be modified. + axis: int + Identifies if the index (0) or the columns (1) shall be edited. + + Returns + ------- + data: DataFrame + The modified DataFrame + """ + + + + if axis == 0: + simple_index = ['-'.join([str(id_i) for id_i in id]) + for id in data.index] + data.index = simple_index + + elif axis == 1: + simple_index = ['-'.join([str(id_i) for id_i in id]) + for id in data.columns] + data.columns = simple_index + + else: + raise ValueError(f"Invalid axis parameter: {axis}") + + return data + +def convert_to_MultiIndex(data, axis=0): + """ + Converts the index of a DataFrame to a MultiIndex + + We assume that the index uses standard SimCenter convention to identify + different levels: a dash character ('-') is expected to separate each level + of the index. + + Parameters + ---------- + data: DataFrame + The DataFrame that will be modified. + axis: int + Identifies if the index (0) or the columns (1) shall be edited. + + Returns + ------- + data: DataFrame + The modified DataFrame + """ + + if axis == 0: + index_labels = [label.split('-') for label in data.index] + + elif axis == 1: + index_labels = [label.split('-') for label in data.columns] + + else: + raise ValueError(f"Invalid axis parameter: {axis}") + + max_lbl_len = np.max([len(labels) for labels in index_labels]) + + for l_i, labels in enumerate(index_labels): + + if len(labels) != max_lbl_len: + labels += ['', ] * (max_lbl_len - len(labels)) + index_labels[l_i] = labels + + index_labels = np.array(index_labels) + + if index_labels.shape[1] > 1: + + if axis == 0: + data.index = pd.MultiIndex.from_arrays(index_labels.T) + + else: + data.columns = pd.MultiIndex.from_arrays(index_labels.T) + + return data + +def convert_unit(value, unit): + """ + Convert value(s) provided in one unit to the internal SI unit + + Parameters + ---------- + value: str, float, or int + A single number or an array of numbers provided as a string following + SimCenter's notation. + unit: str + Either a unit name, or a quantity and a unit name separated by a space. + For example: 'ft' or '100 ft'. + """ + + # if the value is NaN, just return it + if pd.isna(value): + return value + + # start by understanding the unit + unit = unit.strip().split(' ') + if len(unit) > 1: + unit_count, unit_name = unit + unit_count = float(unit_count) + else: + unit_count = 1 + unit_name = unit + + try: + unit_factor = unit_count * globals()[unit_name] + except: + raise ValueError(f"Specified unit not recognized: " + f"{unit_count} {unit_name}") + + # now parse the value + try: + float(value) + is_float = True + except: + is_float = False + + # if it is a single scalar, conversion is easy + if is_float: + return float(value) * unit_factor + + # otherwise, we assume it is a string using SimCenter array notation + else: + values = [val.split(',') for val in value.split('|')] + + # the first set of values are assumed to be outputs and need to + # be normalized by the unit_factor + values[0] = np.array(values[0], dtype=float) / unit_factor + + # the second set of values are assumed to be inputs and need to + # be scaled by the unit factor + values[1] = np.array(values[1], dtype=float) * unit_factor + + # now convert the values back to string format + return '|'.join([','.join([f'{val:g}' for val in values[i]]) + for i in range(2)]) # print a matrix in a nice way using a DataFrame def show_matrix(data, describe=False): @@ -80,23 +404,53 @@ def show_matrix(data, describe=False): # Monkeypatch warnings to get prettier messages def _warning(message, category, filename, lineno, file=None, line=None): + if '\\' in filename: file_path = filename.split('\\') elif '/' in filename: file_path = filename.split('/') - python_file = '/'.join(file_path[-3:]) + else: + file_path = None + + if file_path is not None: + python_file = '/'.join(file_path[-3:]) + else: + python_file = filename + print('WARNING in {} at line {}\n{}\n'.format(python_file, lineno, message)) + warnings.showwarning = _warning def show_warning(warning_msg): warnings.warn(UserWarning(warning_msg)) -def set_log_file(filepath): - globals()['log_file'] = filepath - with open(filepath, 'w') as f: - f.write('pelicun\n') +def print_system_info(): -def log_msg(msg='', prepend_timestamp=True): + log_msg('System Information:', + prepend_timestamp=False, prepend_blank_space=False) + log_msg(f'local time zone: {datetime.utcnow().astimezone().tzinfo}\n' + f'start time: {datetime.now().strftime("%Y-%m-%dT%H:%M:%S")}\n' + f'python: {sys.version}\n' + f'numpy: {np.__version__}\n' + f'pandas: {pd.__version__}\n', + prepend_timestamp=False) + +def log_div(prepend_timestamp=False): + """ + Print a divider line to the log file + + """ + + if prepend_timestamp: + msg = options.log_div + + else: + msg = '-' * 80 + + log_msg(msg, prepend_timestamp = prepend_timestamp) + + +def log_msg(msg='', prepend_timestamp=True, prepend_blank_space=True): """ Print a message to the screen with the current time as prefix @@ -108,16 +462,27 @@ def log_msg(msg='', prepend_timestamp=True): Message to print. """ - if prepend_timestamp: - formatted_msg = '{} {}'.format(datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%S:%fZ')[:-4], msg) - else: - formatted_msg = msg - #print(formatted_msg) + msg_lines = msg.split('\n') + + for msg_i, msg_line in enumerate(msg_lines): + + if (prepend_timestamp and (msg_i==0)): + formatted_msg = '{} {}'.format( + datetime.now().strftime(options.log_time_format), msg_line) + elif prepend_timestamp: + formatted_msg = options.log_pref + msg_line + elif prepend_blank_space: + formatted_msg = options.log_pref + msg_line + else: + formatted_msg = msg_line + + if options.print_log: + print(formatted_msg) - if globals()['log_file'] is not None: - with open(globals()['log_file'], 'a') as f: - f.write('\n'+formatted_msg) + if globals()['log_file'] is not None: + with open(globals()['log_file'], 'a') as f: + f.write('\n'+formatted_msg) def describe(df): @@ -314,22 +679,27 @@ def str2bool(v): EDP_to_demand_type = { 'Story Drift Ratio' : 'PID', + 'Peak Interstory Drift Ratio': 'PID', 'Roof Drift Ratio' : 'PRD', + 'Peak Roof Drift Ratio' : 'PRD', 'Damageable Wall Drift' : 'DWD', 'Racking Drift Ratio' : 'RDR', 'Peak Floor Acceleration' : 'PFA', 'Peak Floor Velocity' : 'PFV', 'Peak Gust Wind Speed' : 'PWS', 'Peak Inundation Height' : 'PIH', - 'Flood Water Depth' : 'PIH', # temporary workaround 'Peak Ground Acceleration' : 'PGA', 'Peak Ground Velocity' : 'PGV', 'Spectral Acceleration' : 'SA', 'Spectral Velocity' : 'SV', 'Spectral Displacement' : 'SD', + 'Peak Spectral Acceleration' : 'SA', + 'Peak Spectral Velocity' : 'SV', + 'Peak Spectral Displacement' : 'SD', 'Permanent Ground Deformation' : 'PGD', 'Mega Drift Ratio' : 'PMD', 'Residual Drift Ratio' : 'RID', + 'Residual Interstory Drift Ratio':'RID', } # PFA in FEMA P58 corresponds to the top of the given story. The ground floor diff --git a/pelicun/control.py b/pelicun/control.py deleted file mode 100644 index 805ef3691..000000000 --- a/pelicun/control.py +++ /dev/null @@ -1,4423 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of pelicun. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# pelicun. If not, see . -# -# Contributors: -# Adam Zsarnóczay -# Pouria Kourehpaz - -""" -This module has classes and methods that control the performance assessment. - -.. rubric:: Contents - -.. autosummary:: - - Assessment - FEMA_P58_Assessment - HAZUS_Assessment - -""" - -from .base import * -from .uq import * -from .model import * -from .file_io import * - - -class Assessment(object): - """ - A high-level class that collects features common to all supported loss - assessment methods. This class will only rarely be called directly when - using pelicun. - """ - - def __init__(self, log_file=True): - - # initialize the basic data containers - # inputs - self._AIM_in = None - self._EDP_in = None - self._POP_in = None - self._FG_in = None - - # random variables and loss model - self._RV_reg = RandomVariableRegistry() # object to manage RVs - self._RV_dict = None # dictionary to store random variables - self._EDP_dict = None - self._QNT_dict = None - self._FF_dict = None - self._DSG_dict = None - self._FG_dict = None - self._DV_RED_dict = None - self._DV_REP_dict = None - self._DV_INJ_dict = None - - # results - self._TIME = None - self._POP = None - self._COL = None - self._ID_dict = None - self._DMG = None - self._DV_dict = None - self._SUMMARY = None - - self._assessment_type = 'generic' - - # initialize the log file - if log_file: - set_log_file('pelicun_log.txt') - - log_msg(log_div) - log_msg('Assessement Started') - log_msg(log_div) - - @property - def beta_tot(self): - """ - Calculate the total additional uncertainty for post processing. - - The total additional uncertainty is the squared root of sum of squared - uncertainties corresponding to ground motion and modeling. - - Returns - ------- - beta_total: float - The total uncertainty (logarithmic EDP standard deviation) to add - to the EDP distribution. Returns None if no additional uncertainty - is assigned. - """ - - AU = self._AIM_in['general']['added_uncertainty'] - - beta_total = 0. - if AU['beta_m'] is not None: - beta_total += AU['beta_m'] ** 2. - if AU['beta_gm'] is not None: - beta_total += AU['beta_gm'] ** 2. - - # if no uncertainty is assigned, we return None - if beta_total == 0: - beta_total = None - else: - beta_total = np.sqrt(beta_total) - - return beta_total - - def read_inputs(self, path_DL_input, path_EDP_input, verbose=False): - """ - Read and process the input files to describe the loss assessment task. - - Parameters - ---------- - path_DL_input: string - Location of the Damage and Loss input file. The file is expected to - be a JSON with data stored in a standard format described in detail - in the Input section of the documentation. - path_EDP_input: string - Location of the EDP input file. The file is expected to follow the - output formatting of Dakota. The Input section of the documentation - provides more information about the expected formatting. - verbose: boolean, default: False - If True, the method echoes the information read from the files. - This can be useful to ensure that the information in the file is - properly read by the method. - """ - - # read SimCenter inputs ----------------------------------------------- - log_msg(log_div) - log_msg('Reading inputs...') - - # BIM file - log_msg('\tBIM file...') - self._AIM_in = read_SimCenter_DL_input( - path_DL_input, assessment_type=self._assessment_type, - verbose=verbose) - - data = self._AIM_in - - log_msg() - log_msg('\t\tGlobal attributes / settings:') - for att in ['stories', 'coupled_assessment', 'realizations']: - log_msg('\t\t\t{}: {}'.format(att, data['general'][att])) - - log_msg() - log_msg('\t\tPrescribed Decision Variables:') - for dv, val in data['decision_variables'].items(): - if val: - log_msg('\t\t\t{}'.format(dv)) - - log_msg() - log_msg("\t\tDamage and Loss Data Dir:") - log_msg('\t\t\t{}'.format(data['data_sources']['path_CMP_data'])) - - if data['decision_variables']['injuries']: - log_msg() - log_msg("\t\tPopulation Data Dir:") - log_msg('\t\t\t{}'.format(data['data_sources']['path_POP_data'])) - - log_msg() - log_msg('\t\tUnits:') - for dv, val in data['unit_names'].items(): - log_msg('\t\t\t{}: {} ({})'.format(dv, val, data['units'][dv])) - - log_msg() - log_msg('\t\tResponse Model:') - log_msg('\t\t\tDetection Limits:') - for dl_name, dl in data['general']['detection_limits'].items(): - log_msg('\t\t\t\t{}: {}'.format(dl_name, dl)) - for att, val in data['general']['response'].items(): - log_msg() - log_msg('\t\t\t{}: {}'.format(att, val)) - log_msg() - log_msg('\t\t\tAdditional Uncertainty:') - for att, val in data['general']['added_uncertainty'].items(): - log_msg('\t\t\t\t{}: {}'.format(att, val)) - - log_msg() - log_msg('\t\tPerformance Model:') - log_msg('\t\t\t\tloc\tdir\tqnt\tdist\tcov\tcgw') - for comp_id, comp_data in data['components'].items(): - log_msg('\t\t{} [{}]:'.format(comp_id, comp_data['unit'])) - if False: #TODO: control this with a verbose flag - for i in range(len(comp_data['locations'])): - log_msg('\t\t\t\t{}\t{}\t{}\t{}\t{}\t{}'.format(*[comp_data[att][i] for att in ['locations', 'directions', 'quantities', 'distribution', 'cov', 'csg_weights']])) - - log_msg() - log_msg('\t\tDamage Model:') - if self._assessment_type == 'P58': - log_msg('\t\t\tCollapse Limits:') - for cl_name, cl in data['general']['collapse_limits'].items(): - log_msg('\t\t\t\t{}: {}'.format(cl_name, cl)) - log_msg() - log_msg('\t\t\tIrreparable Residual Drift:') - if 'irreparable_res_drift' in data['general']: - for att, val in data['general']['irreparable_res_drift'].items(): - log_msg('\t\t\t\t{}: {}'.format(att, val)) - else: - log_msg('\t\t\t\tnot considered') - log_msg() - log_msg('\t\t\tCollapse Probability:') - if data['general']['response']['coll_prob'] == 'estimated': - log_msg('\t\t\t\tEstimated based on {}'.format(data['general']['response']['CP_est_basis'])) - else: - log_msg('\t\t\t\tPrescribed: {}'.format(data['general']['response']['coll_prob'])) - - log_msg() - log_msg('\t\tLoss Model:') - for att in ['replacement_cost', 'replacement_time', 'population']: - if att in data['general'].keys(): - log_msg('\t\t\t{}: {}'.format(att, data['general'][att])) - - log_msg() - log_msg('\t\tCollapse Modes:') - for cmode, cmode_data in data['collapse_modes'].items(): - log_msg('\t\t\t{}'.format(cmode)) - for att, val in cmode_data.items(): - log_msg('\t\t\t {}: {}'.format(att, val)) - - log_msg() - log_msg('\t\tDependencies:') - for att, val in data['dependencies'].items(): - log_msg('\t\t\t{}: {}'.format(att, val)) - - # EDP file - log_msg('\tEDP file...') - if self._hazard == 'EQ': - self._EDP_in = read_SimCenter_EDP_input( - path_EDP_input, - #EDP_kinds=('PID', 'PRD', 'RID', 'PFA', 'PMD', - # 'PGA', 'PGV', 'SA', 'SV', 'SD', - # 'PGD','DWD', 'RDR'), - units=dict(PID=1., - PRD=1., - RID=1., - DWD=1., - RDR=1., - PFA=self._AIM_in['units']['acceleration'], - PMD=1., - PGA=self._AIM_in['units']['acceleration'], - PGV=self._AIM_in['units']['speed'], - SA =self._AIM_in['units']['acceleration'], - SV =self._AIM_in['units']['speed'], - SD =self._AIM_in['units']['length'], - PGD = self._AIM_in['units']['length']), - verbose=verbose) - elif self._hazard == 'HU': - self._EDP_in = read_SimCenter_EDP_input( - path_EDP_input, - #EDP_kinds=('PWS','PIH',), - units=dict(PWS=self._AIM_in['units']['speed'], - PIH=self._AIM_in['units']['length']), - verbose=verbose) - - data = self._EDP_in - - log_msg('\t\tEDP types:') - for EDP_kind in data.keys(): - log_msg('\t\t\t{}'.format(EDP_kind)) - for EDP_data in data[EDP_kind]: - if False: #TODO: control this with a verbose flag - log_msg('\t\t\t\t{} {}'.format(EDP_data['location'], EDP_data['direction'])) - - log_msg() - log_msg('\t\tnumber of samples: {}'.format(len(data[list(data.keys())[0]][0]['raw_data']))) - - def define_random_variables(self): - """ - Define the random variables used for loss assessment. - - """ - log_msg(log_div) - log_msg('Defining random variables...') - - def define_loss_model(self): - """ - Create the stochastic loss model based on the inputs provided earlier. - - """ - log_msg(log_div) - log_msg('Creating the damage and loss model...') - - def calculate_damage(self): - """ - Characterize the damage experienced in each random event realization. - - """ - log_msg(log_div) - log_msg('Calculating damage...') - self._ID_dict = {} - - def calculate_losses(self): - """ - Characterize the consequences of damage in each random event realization. - - """ - log_msg(log_div) - log_msg('Calculating losses...') - self._DV_dict = {} - - def save_outputs(self, output_path, BIM_file, EDP_file, DM_file, DV_file, - suffix="", detailed_results=True): - """ - Export the results. - - """ - def replace_FG_IDs_with_FG_names(df): - FG_list = sorted(self._FG_dict.keys()) - new_col_names = dict( - (fg_id, fg_name) for (fg_id, fg_name) in - zip(np.arange(1, len(FG_list) + 1), FG_list)) - - return df.rename(columns=new_col_names) - - log_msg(log_div) - log_msg('Saving outputs...') - - log_msg('\tConverting EDP samples to input units...') - EDPs = sorted(self._EDP_dict.keys()) - EDP_samples = pd.DataFrame({edp: self._EDP_dict[edp].samples for edp in EDPs}) - #EDP_samples = self._EDP_dict[EDPs[0]].samples_DF.copy() - cols = EDP_samples.columns - col_info = [col.split('-') for col in cols] - EDP_samples.columns = [ - '1-{}-{}-{}'.format(col[1], col[3], col[5]) for col in col_info] - - # TODO: use some global vars to identify EDP units because this is a mess - for col_i, col in enumerate(cols): - if ('PFA' in col) or ('PGA' in col) or ('SA' in col): - scale_factor = self._AIM_in['units']['acceleration'] - elif (('PFV' in col) or ('PGV' in col) or ('SV' in col) or - ('PWS' in col)): - scale_factor = self._AIM_in['units']['speed'] - elif ('PGD', 'PIH' in col): - scale_factor = self._AIM_in['units']['length'] - else: - scale_factor = 1.0 - - if scale_factor != 1.0: - EDP_samples.iloc[:, col_i] = EDP_samples.iloc[:, col_i].div(scale_factor) - - log_msg('\tConverting damaged quantities to input units...') - DMG_scaled = self._DMG.copy() - cols = DMG_scaled.columns.get_level_values(0) - FG_list = sorted(self._FG_dict.keys()) - for col_i, col in enumerate(cols): - FG_name = FG_list[col-1] - scale_factor = self._FG_dict[FG_name]._unit - if scale_factor != 1.0: - DMG_scaled.iloc[:,col_i] = DMG_scaled.iloc[:,col_i].div(scale_factor) - - log_msg('\tReplacing headers with FG names...') - DMG_mod = replace_FG_IDs_with_FG_names(DMG_scaled) - DV_mods, DV_names = [], [] - for key in self._DV_dict.keys(): - if key != 'injuries': - DV_mods.append(replace_FG_IDs_with_FG_names(self._DV_dict[key])) - DV_names.append('{}DV_{}'.format(suffix, key)) - else: - for i in range(2 if self._assessment_type == 'P58' else 4): - DV_mods.append(replace_FG_IDs_with_FG_names(self._DV_dict[key][i])) - DV_names.append('{}DV_{}_{}'.format(suffix, key, i+1)) - - try: - #if True: - log_msg('\tSaving files:') - - log_msg('\t\tSummary') - write_SimCenter_DL_output( - output_path, '{}DL_summary.csv'.format(suffix), - self._SUMMARY, index_name='#Num', collapse_columns=True) - - if not detailed_results: - log_msg('\t\tOnly saving the main results.') - else: - log_msg('\t\tSummary statistics') - write_SimCenter_DL_output( - output_path, '{}DL_summary_stats.csv'.format(suffix), - self._SUMMARY, index_name='attribute', collapse_columns=True, - stats_only=True) - - log_msg('\t\tEDP values') - write_SimCenter_DL_output( - output_path, '{}EDP_.csv'.format(suffix), - EDP_samples, index_name='#Num', - collapse_columns=False) - - log_msg('\t\tEDP statistics') - write_SimCenter_DL_output( - output_path, '{}EDP_stats.csv'.format(suffix), - EDP_samples, index_name='#Num', - collapse_columns=False, stats_only=True) - - log_msg('\t\tDamaged quantities') - write_SimCenter_DL_output( - output_path, '{}DMG.csv'.format(suffix), - DMG_mod, index_name='#Num', collapse_columns=False) - - log_msg('\t\tDamage statistics') - write_SimCenter_DL_output( - output_path, '{}DMG_stats.csv'.format(suffix), - DMG_mod, index_name='#Num', - collapse_columns=False, stats_only=True) - - log_msg('\t\tDamaged quantities - aggregated') - write_SimCenter_DL_output( - output_path, '{}DMG_agg.csv'.format(suffix), - DMG_mod.T.groupby(level=0).aggregate(np.sum).T, - index_name='#Num', collapse_columns=False) - - for DV_mod, DV_name in zip(DV_mods, DV_names): - log_msg('\t\tDecision variable {}'.format(DV_name)) - write_SimCenter_DL_output( - output_path, '{}{}.csv'.format(suffix, DV_name), - DV_mod, index_name='#Num', collapse_columns=False) - - DV_mod_agg = DV_mod.T.groupby(level=0).aggregate(np.sum).T - - log_msg('\t\tDecision variable {} - aggregated'.format(DV_name)) - write_SimCenter_DL_output( - output_path, '{}{}_agg.csv'.format(suffix, DV_name), - DV_mod_agg, index_name='#Num', collapse_columns=False) - - log_msg('\t\tAggregated statistics for {}'.format(DV_name)) - write_SimCenter_DL_output( - output_path, '{}{}_agg_stats.csv'.format(suffix, DV_name), - DV_mod_agg, index_name='#Num', collapse_columns=False, - stats_only=True) - - #if True: - # create the BIM file - log_msg('\t\tSimCenter BIM file') - write_SimCenter_BIM_output( - output_path, suffix + BIM_file, self._AIM_in['GI']) - - # create the EDP file - if self._assessment_type.startswith('HAZUS'): - log_msg('\t\tSimCenter EDP file') - write_SimCenter_EDP_output( - output_path, suffix + EDP_file, - EDP_samples) - - # create the DM file - if self._assessment_type.startswith('HAZUS'): - log_msg('\t\tSimCenter DM file') - if self._hazard == 'HU': - write_SimCenter_DM_output_hu( - output_path, suffix+DM_file, self._SUMMARY, - DMG_mod) - else: - write_SimCenter_DM_output( - output_path, suffix+DM_file, self._SUMMARY, - DMG_mod) - - # create the DV file - if self._assessment_type.startswith('HAZUS'): - log_msg('\t\tSimCenter DV file') - write_SimCenter_DV_output( - output_path, suffix+DV_file, self._AIM_in['general'], - self._SUMMARY, dict(zip(DV_names, DV_mods))) - - except: - print("ERROR when trying to create DL output files.") - - def _create_RV_demands(self): - - # Unlike other random variables, the demand RV is based on raw data. - - # First, collect the raw values from the EDP dict... - demand_data = [] - d_tags = [] - detection_limits = [] - collapse_limits = [] - GI = self._AIM_in['general'] - s_edp_keys = sorted(self._EDP_in.keys()) - - # For each EDP type... (e.g., PID, PFA) - for d_id in s_edp_keys: - - # load the list of raw data - d_list = self._EDP_in[d_id] - - # For each EDP... (i.e., same type of EDP at various locations and - # directions in the structure) - for i in range(len(d_list)): - - demand_data.append(d_list[i]['raw_data']) - d_tags.append(f"EDP-{d_id}-LOC-{d_list[i]['location']}" + - f"-DIR-{d_list[i]['direction']}") - - # Use np.inf if there are no det limits specified - det_lim = GI['detection_limits'].get(d_id, np.inf) - if det_lim is None: - det_lim = np.inf - - if GI['response']['EDP_dist_basis'] == 'non-collapse results': - # Use np.inf if there are no collapse limits specified - coll_lim = GI['collapse_limits'].get(d_id, np.inf) - if coll_lim is None: - coll_lim = np.inf - - elif GI['response']['EDP_dist_basis'] == 'all results': - # Use np.inf if all results are needed -> i.e., no collapse - coll_lim = np.inf - - # Note: the "None" lower limits are converted to the lowest - # possible bounds of the given distribution. (i.e., -np.inf for - # Normal and 0 for Lognormal) - detection_limits.append([None, det_lim]) - collapse_limits.append([None, coll_lim]) - - # convert the assembled lists to numpy arrays - detection_limits = np.asarray(detection_limits) - collapse_limits = np.asarray(collapse_limits) - demand_data = np.atleast_2d(demand_data) - - # In a coupled assessment only the raw data needs to be stored - if GI['coupled_assessment']: - - # Create the random variables - for i, d_tag in enumerate(d_tags): - self._RV_reg.add_RV( - RandomVariable(name=d_tag, - distribution='coupled_empirical', - raw_samples=demand_data[i])) - - # Otherwise, a distribution is fit to the raw data - else: - # If more than one sample is available... (i.e., in most cases) - if demand_data.shape[1] > 1: - - # First, we discard the collapsed EDPs if the fitted - # distribution shall represent only non-collapse EDPs. - demand_data_T = demand_data.T - EDP_filter = np.all(demand_data_T < collapse_limits.T[1], axis=1) - demand_data_T = demand_data_T[EDP_filter] - - log_msg( - '\t\t{} considered collapsed out of {} raw samples'.format( - list(EDP_filter).count(False), len(EDP_filter))) - - # TODO: catch the case when no samples remain after filtering - - # Second, we censor the EDPs that are beyond the detection limit. - EDP_filter = np.all(demand_data_T < detection_limits.T[1], axis=1) - - log_msg( - '\t\t{} are beyond the detection limits out of {} ' - 'non-collapse samples'.format( - list(EDP_filter).count(False), len(EDP_filter))) - - censored_count = len(EDP_filter) - sum(EDP_filter) - demand_data_T = demand_data_T[EDP_filter] - demand_data = demand_data_T.T - - # TODO: catch the case when no samples remain after filtering - - log_msg('\t\tNumber of EDP dimensions: {}'.format(len(d_tags))) - - # Third, if requested, we fit a probability distribution to the - # data and create the random variables - target_dist = GI['response']['EDP_distribution'] - - # TODO: enable mixed distributions with either normal or lognormal - - # Fit a multivariate lognormal distribution... - if target_dist == 'lognormal': - if censored_count > 0: - log_msg('\t\tFitting a censored multivariate lognormal ' - 'distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'lognormal', - censored_count = censored_count, - detection_limits = detection_limits) - - else: - log_msg('\t\tFitting a multivariate lognormal ' - 'distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'lognormal') - - # Create the RVs - for d, (d_tag, theta_d) in enumerate( - zip(d_tags, EDP_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='lognormal', - theta=theta_d - )) - - # Create an RV set to consider the correlation btw EDPs - self._RV_reg.add_RV_set(RandomVariableSet( - 'EDP_set', list(self._RV_reg.RVs(d_tags).values()), - EDP_rho)) - - # Fit a multivariate truncated lognormal distribution... - elif target_dist == 'truncated lognormal': - if censored_count > 0: - log_msg('\t\tFitting a censored truncated multivariate ' - 'lognormal distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'lognormal', - truncation_limits=collapse_limits) - else: - log_msg('\t\tFitting a truncated multivariate ' - 'lognormal distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'lognormal', - truncation_limits=collapse_limits) - - # Create the RVs - for d, (d_tag, theta_d) in enumerate( - zip(d_tags, EDP_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='lognormal', - theta=theta_d, - truncation_limits=collapse_limits[d] - )) - - # Create an RV set to consider the correlation btw EDPs - self._RV_reg.add_RV_set(RandomVariableSet( - 'EDP_set', list(self._RV_reg.RVs(d_tags).values()), - EDP_rho)) - - # Fit a multivariate normal distribution... - elif target_dist == 'normal': - if censored_count > 0: - log_msg('\t\tFitting a censored multivariate normal ' - 'distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'normal', - censored_count = censored_count, - detection_limits = detection_limits) - - else: - log_msg('\t\tFitting a multivariate normal ' - 'distribution to EDP samples...') - EDP_theta, EDP_rho = fit_distribution( - demand_data, 'normal') - - # Create the RVs - for d, (d_tag, theta_d) in enumerate( - zip(d_tags, EDP_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='normal', - theta=theta_d - )) - - # Create an RV set to consider the correlation btw EDPs - self._RV_reg.add_RV_set(RandomVariableSet( - 'EDP_set', list(self._RV_reg.RVs(d_tags).values()), - EDP_rho)) - - # Do not fit anything if the empirical option is requested... - else: - - for i, d_tag in enumerate(d_tags): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, - distribution='empirical', - raw_samples=demand_data[i])) - - # This is a special case when only a one sample is provided. - else: - # TODO: what to do when the sample is larger than the collapse - # or detection limit and when truncated distribution is - # prescribed - - # Since we only have one data point, the best we can do is assume - # it is the median of the multivariate distribution. The dispersion - # is assumed to be negligible. - - for i, d_tag in enumerate(d_tags): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, - distribution='lognormal', - theta=[ - demand_data[i,0], - demand_data[i,0]*1e-6])) - - # To consider additional uncertainty in EDPs, we need to increase - # their dispersion (i.e., log std for Lognormal and std for Normal - # distributions. If the EDP distribution is set to 'empirical' then - # we do not consider the prescribed additional uncertainty. - if ((self.beta_tot is not None) and - (GI['response']['EDP_distribution'] != 'empirical')): - log_msg('Considering additional sources of uncertainty...') - - # TODO: allow custom beta values for each EDP - - for d_tag in d_tags: - RV = self._RV_reg.RV[d_tag] - - # Note that the expressions below work for both normal and - # lognormal distributions. When normal distribution is - # assumed, beta_tot increases the standard deviation, when - # lognormal is assumed, it increases the log-standard - # deviation. - theta_0 = RV.theta - theta_0[1] = np.sqrt(theta_0[1] ** 2. + self.beta_tot ** 2.) - RV.theta = theta_0 - - return d_tags - - -class FEMA_P58_Assessment(Assessment): - """ - An Assessment class that implements the loss assessment method in FEMA P58. - """ - def __init__(self, inj_lvls = 2, log_file=True): - super(FEMA_P58_Assessment, self).__init__(log_file) - - # constants for the FEMA-P58 methodology - self._inj_lvls = inj_lvls - self._hazard = 'EQ' - self._assessment_type = 'P58' - - log_msg('type: FEMA P58 Assessment') - log_msg('hazard: {}'.format(self._hazard)) - log_msg(log_div) - - def read_inputs(self, path_DL_input, path_EDP_input, verbose=False): - """ - Read and process the input files to describe the loss assessment task. - - Parameters - ---------- - path_DL_input: string - Location of the Damage and Loss input file. The file is expected to - be a JSON with data stored in a standard format described in detail - in the Input section of the documentation. - path_EDP_input: string - Location of the EDP input file. The file is expected to follow the - output formatting of Dakota. The Input section of the documentation - provides more information about the expected formatting. - verbose: boolean, default: False - If True, the method echoes the information read from the files. - This can be useful to ensure that the information in the file is - properly read by the method. - - """ - - super(FEMA_P58_Assessment, self).read_inputs(path_DL_input, - path_EDP_input, verbose) - - # assume that the asset is a building - # TODO: If we want to apply FEMA-P58 to non-building assets, several parts of this methodology need to be extended. - BIM = self._AIM_in - - # read component and population data ---------------------------------- - # components - log_msg('\tDamage and Loss data files...') - self._FG_in = read_component_DL_data( - self._AIM_in['data_sources']['path_CMP_data'], - BIM['components'], - assessment_type=self._assessment_type, avail_edp=self._EDP_in, verbose=verbose) - - data = self._FG_in - - log_msg('\t\tAvailable Fragility Groups:') - for key, val in data.items(): - log_msg('\t\t\t{} demand:{} PGs: {}'.format(key, val['demand_type'], len(val['locations']))) - - # population (if needed) - if self._AIM_in['decision_variables']['injuries']: - - if BIM['general']['event_time'] is None: - log_msg('\tPopulation data files...') - POP = read_population_distribution( - self._AIM_in['data_sources']['path_POP_data'], - BIM['general']['occupancy_type'], - assessment_type=self._assessment_type, - verbose=verbose) - else: - POP = {'peak': None} - - POP['peak'] = BIM['general']['population'] - self._POP_in = POP - - def define_random_variables(self): - """ - Define the random variables used for loss assessment. - - Following the FEMA P58 methodology, the groups of parameters below are - considered random. Simple correlation structures within each group can - be specified through the DL input file. The random decision variables - are only created and used later if those particular decision variables - are requested in the input file. - - 1. Demand (EDP) distribution - - Describe the uncertainty in the demands. Unlike other random variables, - the EDPs are characterized by the EDP input data provided earlier. All - EDPs are handled in one multivariate lognormal distribution. If more - than one sample is provided, the distribution is fit to the EDP data. - Otherwise, the provided data point is assumed to be the median value - and the additional uncertainty prescribed describes the dispersion. See - _create_RV_demands() for more details. - - 2. Component quantities - - Describe the uncertainty in the quantity of components in each - Performance Group. All Fragility Groups are handled in the same - multivariate distribution. Consequently, correlation between various - groups of component quantities can be specified. See - _create_RV_quantities() for details. - - 3. Fragility EDP limits - - Describe the uncertainty in the EDP limit that corresponds to - exceedance of each Damage State. EDP limits are grouped by Fragility - Groups. Consequently, correlation between fragility limits are - currently limited within Fragility Groups. See - _create_RV_fragilities() for details. - - 4. Reconstruction cost and time - - Describe the uncertainty in the cost and duration of reconstruction of - each component conditioned on the damage state of the component. All - Fragility Groups are handled in the same multivariate distribution. - Consequently, correlation between various groups of component - reconstruction time and cost estimates can be specified. See - _create_RV_repairs() for details. - - 5. Damaged component proportions that trigger a red tag - - Describe the uncertainty in the amount of damaged components needed to - trigger a red tag for the building. All Fragility Groups are handled in - the same multivariate distribution. Consequently, correlation between - various groups of component proportion limits can be specified. See - _create_RV_red_tags() for details. - - 6. Injuries - - Describe the uncertainty in the proportion of people in the affected - area getting injuries exceeding a certain level of severity. FEMA P58 - uses two severity levels: injury and fatality. Both levels for all - Fragility Groups are handled in the same multivariate distribution. - Consequently, correlation between various groups of component injury - expectations can be specified. See _create_RV_injuries() for details. - """ - super(FEMA_P58_Assessment, self).define_random_variables() - - # create the random variables ----------------------------------------- - DEP = self._AIM_in['dependencies'] - - self._RV_dict = {} - - # quantities 100 - log_msg('\tQuantities...') - QNT_tags = self._create_RV_quantities(DEP['quantities']) - - # self._RV_dict.update({'QNT': - # self._create_RV_quantities(DEP['quantities'])}) - - if QNT_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(QNT_tags))) - self._QNT_dict = self._RV_reg.RVs(QNT_tags) - else: - log_msg('\t\tNone of the components have random quantities assigned') - - # fragilities 300 - log_msg('\tDamage State Limits...') - s_fg_keys = sorted(self._FG_in.keys()) - self._FF_dict = {} - log_msg('\t\tRV dimensions:') - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - FF_tags = self._create_RV_fragilities(c_id, comp, DEP['fragilities']) - self._FF_dict.update(self._RV_reg.RVs(FF_tags)) - - # self._RV_dict.update({ - # 'FR-' + c_name: - # self._create_RV_fragilities(c_id, comp, - # DEP['fragilities'])}) - log_msg('\t\t\t{}: {}'.format(c_name, len(FF_tags))) - - - # for key, val in self._RV_dict.items(): - # if 'FR-' in key: - # log_msg('\t\t\t{}: {}'.format(key, len(val.theta))) - - # irreparability - if 'irreparable_res_drift' in self._AIM_in['general']: - irrep_frag = self._AIM_in['general']['irreparable_res_drift'] - RV_irrep = RandomVariable( - name='RED_irrep', distribution='lognormal', - theta=[irrep_frag['Median'], irrep_frag['Beta']]) - self._RV_reg.add_RV(RV_irrep) - - # collapse modes - coll_modes = self._AIM_in['collapse_modes'] - P_keys = [cmk for cmk in coll_modes.keys()] - P_modes = [coll_modes[k]['w'] for k in P_keys] - RV_CM = RandomVariable( - name='CM', distribution='multinomial', theta=P_modes) - self._RV_reg.add_RV(RV_CM) - - # damages (mutually exclusive cases and later simultaneous ones too) - log_msg('\tDamage States...') - DS_tags = self._create_RV_damage_states() - - if DS_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(DS_tags))) - self._DSG_dict = self._RV_reg.RVs(DS_tags) - else: - log_msg('\t\tNone of the components have random damage states assigned') - - # consequences 400 - DVs = self._AIM_in['decision_variables'] - - if DVs['red_tag']: - log_msg('\tRed Tag Thresholds...') - RED_tags = self._create_RV_red_tags(DEP['red_tags']) - - # self._RV_dict.update({'DV_RED': - # self._create_RV_red_tags(DEP['red_tags'])}) - - if RED_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(RED_tags))) - self._DV_RED_dict = self._RV_reg.RVs(RED_tags) - else: - log_msg('\t\tNone of the component damage states trigger red tags') - - if DVs['rec_time'] or DVs['rec_cost']: - log_msg('\tReconstruction Costs and Times...') - REP_tags = self._create_RV_repairs( - DEP['rec_costs'], DEP['rec_times'], DEP['cost_and_time']) - - # self._RV_dict.update({'DV_REP': - # self._create_RV_repairs( - # DEP['rec_costs'], - # DEP['rec_times'], - # DEP['cost_and_time'])}) - - if REP_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(REP_tags))) - self._DV_REP_dict = self._RV_reg.RVs(REP_tags) - else: - log_msg('\t\tNone of the components have probabilistic consequence functions') - - - if DVs['injuries']: - log_msg('\tInjury Probabilities...') - INJ_tags = self._create_RV_injuries( - DEP['injuries'], DEP['injury_lvls']) - - # self._RV_dict.update({'DV_INJ': - # self._create_RV_injuries( - # DEP['injuries'], - # DEP['injury_lvls'])}) - - if INJ_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(INJ_tags))) - self._DV_INJ_dict = self._RV_reg.RVs(INJ_tags) - else: - log_msg('\t\tNone of the component damage states trigger injuries') - - # demands 200 - log_msg('\tEDPs...') - - GR = self._AIM_in['general']['response'] - if GR['EDP_dist_basis'] == 'non-collapse results': - discard_limits = self._AIM_in['general']['collapse_limits'] - else: - discard_limits = None - - EDP_tags = self._create_RV_demands() - self._EDP_dict = self._RV_reg.RVs(EDP_tags) - #self._RV_dict.update({'EDP': self._create_RV_demands()}) - - # sample the random variables ----------------------------------------- - log_msg() - log_msg('Sampling the random variables...') - - realization_count = self._AIM_in['general']['realizations'] - - self._RV_reg.generate_samples(sample_size=realization_count) - - # is_coupled = self._AIM_in['general']['coupled_assessment'] - # - # s_rv_keys = sorted(self._RV_dict.keys()) - # for r_i in s_rv_keys: - # rv = self._RV_dict[r_i] - # if rv is not None: - # log_msg('\t{}...'.format(r_i)) - # rv.sample_distribution( - # sample_size=realization_count, - # preserve_order=((r_i=='EDP') and is_coupled)) - - log_msg('Sampling completed.') - - def define_loss_model(self): - """ - Create the stochastic loss model based on the inputs provided earlier. - - Following the FEMA P58 methodology, the components specified in the - Damage and Loss input file are used to create Fragility Groups. Each - Fragility Group corresponds to a component that might be present in - the building at several locations. See _create_fragility_groups() for - more details about the creation of Fragility Groups. - - """ - super(FEMA_P58_Assessment, self).define_loss_model() - - # fragility groups - self._FG_dict = self._create_fragility_groups() - - # demands - # self._EDP_dict = dict( - # [(tag, RandomVariableSubset(self._RV_dict['EDP'],tags=tag)) - # for tag in self._RV_dict['EDP']._dimension_tags]) - - def calculate_damage(self): - """ - Characterize the damage experienced in each random event realization. - - First, the time of the event (month, weekday/weekend, hour) is randomly - generated for each realization. Given the event time, the number of - people present at each floor of the building is calculated. - - Second, the realizations that led to collapse are filtered. See - _calc_collapses() for more details on collapse estimation. - - Finally, the realizations that did not lead to building collapse are - further investigated and the quantities of components in each damage - state are estimated. See _calc_damage() for more details on damage - estimation. - - """ - super(FEMA_P58_Assessment, self).calculate_damage() - - # event time - month, weekday, and hour realizations - log_msg('\tSampling event time...') - self._TIME = self._sample_event_time() - - # get the population conditioned on event time (if needed) - if self._AIM_in['decision_variables']['injuries']: - log_msg('\tSampling the population...') - self._POP = self._get_population() - - # collapses - log_msg('\tCalculating the number of collapses...') - self._COL, collapsed_IDs = self._calc_collapses() - self._ID_dict.update({'collapse':collapsed_IDs}) - log_msg('\t\t{} out of {} collapsed.'.format( - len(collapsed_IDs), - self._AIM_in['general']['realizations'])) - - # select the non-collapse cases for further analyses - non_collapsed_IDs = self._TIME[ - ~self._TIME.index.isin(collapsed_IDs)].index.values.astype(int) - self._ID_dict.update({'non-collapse': non_collapsed_IDs}) - - # damage in non-collapses - log_msg('\tCalculating the damage in the non-collapsed cases...') - self._DMG = self._calc_damage() - - def calculate_losses(self): - """ - Characterize the consequences of damage in each random event realization. - - For the sake of efficiency, only the decision variables requested in - the input file are estimated. The following consequences are handled by - this method: - - Reconstruction time and cost - Estimate the irreparable cases based on residual drift magnitude and - the provided irreparable drift limits. Realizations that led to - irreparable damage or collapse are assigned the replacement cost and - time of the building when reconstruction cost and time is estimated. - Repairable cases get a cost and time estimate for each Damage State in - each Performance Group. For more information about estimating - irreparability see _calc_irreparable() and reconstruction cost and - time see _calc_repair_cost_and_time() methods. - - Injuries - Collapse-induced injuries are based on the collapse modes and - corresponding injury characterization. Injuries conditioned on no - collapse are based on the affected area and the probability of - injuries of various severity specified in the component data file. For - more information about estimating injuries conditioned on collapse and - no collapse, see _calc_collapse_injuries() and - _calc_non_collapse_injuries, respectively. - - Red Tag - The probability of getting an unsafe placard or red tag is a function - of the amount of damage experienced in various Damage States for each - Performance Group. The damage limits that trigger an unsafe placard are - specified in the component data file. For more information on - assigning red tags to realizations see the _calc_red_tag() method. - - """ - super(FEMA_P58_Assessment, self).calculate_losses() - DVs = self._AIM_in['decision_variables'] - - # red tag probability - if DVs['red_tag']: - log_msg('\tAssigning Red Tags...') - DV_RED = self._calc_red_tag() - - self._DV_dict.update({'red_tag': DV_RED}) - - # reconstruction cost and time - if DVs['rec_cost'] or DVs['rec_time']: - # irreparable cases - if 'irreparable_res_drift' in self._AIM_in['general']: - log_msg('\tIdentifying Irreparable Cases...') - irreparable_IDs = self._calc_irreparable() - log_msg('\t\t{} out of {} non-collapsed cases are irreparable.'.format( - len(irreparable_IDs), len(self._ID_dict['non-collapse']))) - else: - irreparable_IDs = np.array([]) - - # collect the IDs of repairable realizations - P_NC = self._TIME.loc[self._ID_dict['non-collapse']] - repairable_IDs = P_NC[ - ~P_NC.index.isin(irreparable_IDs)].index.values.astype(int) - - self._ID_dict.update({'repairable': repairable_IDs}) - self._ID_dict.update({'irreparable': irreparable_IDs}) - - # reconstruction cost and time for repairable cases - log_msg('\tCalculating Reconstruction cost and time...') - DV_COST, DV_TIME = self._calc_repair_cost_and_time() - - if DVs['rec_cost']: - self._DV_dict.update({'rec_cost': DV_COST}) - - if DVs['rec_time']: - self._DV_dict.update({'rec_time': DV_TIME}) - - # injuries due to collapse - if DVs['injuries']: - log_msg('\tCalculating Injuries in Collapsed Cases...') - COL_INJ = self._calc_collapse_injuries() - - # injuries in non-collapsed cases - log_msg('\tCalculating Injuries in Non-Collapsed Cases...') - DV_INJ_dict = self._calc_non_collapse_injuries() - - # store results - if COL_INJ is not None: - self._COL = pd.concat([self._COL, COL_INJ], axis=1) - - self._DV_dict.update({'injuries': DV_INJ_dict}) - - def aggregate_results(self): - """ - - Returns - ------- - - """ - - log_msg(log_div) - log_msg('Aggregating results...') - - DVs = self._AIM_in['decision_variables'] - - MI_raw = [ - ('inhabitants', ''), - ('collapses', 'collapsed'), - ('collapses', 'mode'), - ('red tagged', ''), - ('reconstruction', 'irreparable'), - ('reconstruction', 'cost impractical'), - ('reconstruction', 'cost'), - ('reconstruction', 'time impractical'), - ('reconstruction', 'time-sequential'), - ('reconstruction', 'time-parallel'), - ('injuries', 'sev1'), # thanks, Laura S.! - ('injuries', 'sev2'), - ] - - if self._AIM_in['general'].get('event_time', None) != 'off': - MI_raw += [ - ('event time', 'month'), - ('event time', 'weekday?'), - ('event time', 'hour') - ] - - ncID = self._ID_dict['non-collapse'] - colID = self._ID_dict['collapse'] - if DVs['rec_cost'] or DVs['rec_time']: - repID = self._ID_dict['repairable'] - irID = self._ID_dict['irreparable'] - - MI = pd.MultiIndex.from_tuples(MI_raw) - - SUMMARY = pd.DataFrame(np.empty(( - self._AIM_in['general']['realizations'], - len(MI))), columns=MI) - SUMMARY[:] = np.NaN - - # event time (if needed) - if self._AIM_in['general'].get('event_time', None) != 'off': - for prop in ['month', 'weekday?', 'hour']: - offset = 0 - if prop == 'month': - offset = 1 - SUMMARY.loc[:, ('event time', prop)] = \ - self._TIME.loc[:, prop] + offset - - # collapses - SUMMARY.loc[:, ('collapses', 'collapsed')] = self._COL.iloc[:, 0] - - # red tag - if DVs['red_tag']: - SUMMARY.loc[ncID, ('red tagged', '')] = \ - self._DV_dict['red_tag'].max(axis=1) - - # reconstruction cost - if DVs['rec_cost']: - SUMMARY.loc[ncID, ('reconstruction', 'cost')] = \ - self._DV_dict['rec_cost'].sum(axis=1) - - repl_cost = self._AIM_in['general']['replacement_cost'] - SUMMARY.loc[colID, ('reconstruction', 'cost')] = repl_cost - - if DVs['rec_cost'] or DVs['rec_time']: - SUMMARY.loc[ncID, ('reconstruction', 'irreparable')] = 0 - SUMMARY.loc[irID, ('reconstruction', 'irreparable')] = 1 - - if DVs['rec_cost']: - SUMMARY.loc[irID, ('reconstruction', 'cost')] = repl_cost - - repair_impractical_IDs = SUMMARY.loc[ - SUMMARY.loc[:, ('reconstruction', 'cost')] > repl_cost].index - SUMMARY.loc[repID, ('reconstruction', 'cost impractical')] = 0 - SUMMARY.loc[repair_impractical_IDs, - ('reconstruction', 'cost impractical')] = 1 - SUMMARY.loc[ - repair_impractical_IDs, ('reconstruction', 'cost')] = repl_cost - - # reconstruction time - if DVs['rec_time']: - SUMMARY.loc[ncID, ('reconstruction', 'time-sequential')] = \ - self._DV_dict['rec_time'].sum(axis=1) - SUMMARY.loc[ncID, ('reconstruction', 'time-parallel')] = \ - self._DV_dict['rec_time'].max(axis=1) - - rep_time = self._AIM_in['general']['replacement_time'] - - for t_label in ['time-sequential', 'time-parallel']: - SUMMARY.loc[colID, ('reconstruction', t_label)] = rep_time - SUMMARY.loc[irID, ('reconstruction', t_label)] = rep_time - - repair_impractical_IDs = \ - SUMMARY.loc[SUMMARY.loc[:, ('reconstruction', - 'time-parallel')] > rep_time].index - SUMMARY.loc[repID, ('reconstruction', 'time impractical')] = 0 - SUMMARY.loc[repair_impractical_IDs,('reconstruction', - 'time impractical')] = 1 - SUMMARY.loc[repair_impractical_IDs, ('reconstruction', - 'time-parallel')] = rep_time - - # injuries - if DVs['injuries']: - - # inhabitants - SUMMARY.loc[:, ('inhabitants', '')] = self._POP.sum(axis=1) - - if 'CM' in self._COL.columns: - SUMMARY.loc[colID, ('collapses', 'mode')] = self._COL.loc[:, 'CM'] - - SUMMARY.loc[colID, ('injuries', 'sev1')] = \ - self._COL.loc[:, 'INJ-0'] - SUMMARY.loc[colID, ('injuries', 'sev2')] = \ - self._COL.loc[:, 'INJ-1'] - - SUMMARY.loc[ncID, ('injuries', 'sev1')] = \ - self._DV_dict['injuries'][0].sum(axis=1) - SUMMARY.loc[ncID, ('injuries', 'sev2')] = \ - self._DV_dict['injuries'][1].sum(axis=1) - - self._SUMMARY = SUMMARY.dropna(axis=1,how='all') - - def save_outputs(self, *args, **kwargs): - """ - - Returns - ------- - - """ - super(FEMA_P58_Assessment, self).save_outputs(*args, **kwargs) - - def _create_correlation_matrix(self, rho_target, c_target=-1, - include_CSG=False, - include_DSG=False, include_DS=False): - """ - - Parameters - ---------- - rho_target - c_target - include_CSG - include_DSG - include_DS - - Returns - ------- - - """ - - # set the correlation structure - rho_FG, rho_PG, rho_LOC, rho_DIR, rho_CSG, rho_DS = np.zeros(6) - - if rho_target in ['FG', 'PG', 'DIR', 'LOC', 'CSG', 'ATC', 'DS']: - rho_DS = 1.0 - if rho_target in ['FG', 'PG', 'DIR', 'LOC', 'CSG']: - rho_CSG = 1.0 - if rho_target in ['FG', 'PG', 'DIR']: - rho_DIR = 1.0 - if rho_target in ['FG', 'PG', 'LOC']: - rho_LOC = 1.0 - if rho_target in ['FG', 'PG']: - rho_PG = 1.0 - if rho_target == 'FG': - rho_FG = 1.0 - - L_D_list = [] - dims = [] - DS_list = [] - ATC_rho = [] - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - if ((c_target == -1) or (c_id == c_target)): - c_L_D_list = [] - c_DS_list = [] - ATC_rho.append(comp['correlation']) - - if include_DSG: - DS_count = 0 - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - if include_DS: - DS_count += len(DSG['DS_set']) - else: - DS_count += 1 - else: - DS_count = 1 - - #for loc in comp['locations']: - # if include_CSG: - # u_dirs = comp['directions'] - # else: - # u_dirs = np.unique(comp['directions']) - # c_L_D_list.append([]) - # for dir_ in u_dirs: - # c_DS_list.append(DS_count) - # for ds_i in range(DS_count): - # c_L_D_list[-1].append(dir_) - - for loc_u in np.unique(comp['locations']): - c_L_D_list.append([]) - for loc, dir, csg_weights in zip(comp['locations'], - comp['directions'], - comp['csg_weights']): - if loc == loc_u: - if include_CSG: - csg_list = csg_weights - else: - csg_list = [1.0,] - for csg_ in csg_list: - c_DS_list.append(DS_count) - for ds_i in range(DS_count): - c_L_D_list[-1].append(dir) - - c_dims = sum([len(loc) for loc in c_L_D_list]) - dims.append(c_dims) - L_D_list.append(c_L_D_list) - DS_list.append(c_DS_list) - - rho = np.ones((sum(dims), sum(dims))) * rho_FG - - f_pos_id = 0 - for c_id, (c_L_D_list, c_dims, c_DS_list) in enumerate( - zip(L_D_list, dims, DS_list)): - c_rho = np.ones((c_dims, c_dims)) * rho_PG - - # dependencies btw directions - if rho_DIR != 0: - c_pos_id = 0 - for loc_D_list in c_L_D_list: - l_dim = len(loc_D_list) - c_rho[c_pos_id:c_pos_id + l_dim, - c_pos_id:c_pos_id + l_dim] = rho_DIR - c_pos_id = c_pos_id + l_dim - - # dependencies btw locations - if rho_LOC != 0: - flat_dirs = [] - [[flat_dirs.append(dir_i) for dir_i in dirs] for dirs in - c_L_D_list] - flat_dirs = np.array(flat_dirs) - for u_dir in np.unique(flat_dirs): - dir_ids = np.where(flat_dirs == u_dir)[0] - for i in dir_ids: - for j in dir_ids: - c_rho[i, j] = rho_LOC - - if ((rho_CSG != 0) or (rho_target == 'ATC')): - c_pos_id = 0 - if rho_target == 'ATC': - rho_to_use = float(ATC_rho[c_id]) - else: - rho_to_use = rho_CSG - for loc_D_list in c_L_D_list: - flat_dirs = np.array(loc_D_list) - for u_dir in np.unique(flat_dirs): - dir_ids = np.where(flat_dirs == u_dir)[0] - for i in dir_ids: - for j in dir_ids: - c_rho[c_pos_id + i, c_pos_id + j] = rho_to_use - c_pos_id = c_pos_id + len(loc_D_list) - - if rho_DS != 0: - c_pos_id = 0 - for l_dim in c_DS_list: - c_rho[c_pos_id:c_pos_id + l_dim, - c_pos_id:c_pos_id + l_dim] = rho_DS - c_pos_id = c_pos_id + l_dim - - rho[f_pos_id:f_pos_id + c_dims, - f_pos_id:f_pos_id + c_dims] = c_rho - f_pos_id = f_pos_id + c_dims - - np.fill_diagonal(rho, 1.0) - - return rho - - def _create_RV_quantities(self, rho_qnt): - """ - - Parameters - ---------- - rho_qnt - - Returns - ------- - - """ - - q_theta, q_sig, q_tags, q_dist = [np.array([]) for i in range(4)] - - # collect the parameters for each quantity dimension - s_fg_keys = sorted(self._FG_in.keys()) - for c_id in s_fg_keys: - comp = self._FG_in[c_id] - - u_dirs = np.unique(comp['directions']) - - #dir_weights = comp['dir_weights'] - #theta_list = [] - #[[theta_list.append(qnt * dw) - # for dw in dir_weights] for qnt in comp['quantities']] - - theta_list = comp['quantities'] - q_theta = np.append(q_theta, theta_list) - - dist_list = comp['distribution_kind'] - q_dist = np.append(q_dist, dist_list) - - cov_list = comp['cov'] - for theta, dk, cov in list(zip(theta_list, dist_list, cov_list)): - if dk == 'normal': - q_sig = np.append(q_sig, [cov*theta,]) - else: - q_sig = np.append(q_sig, [cov, ]) - - q_tags = np.append(q_tags, [f'{c_id}-QNT-{s_i}-{d_i}' for s_i, d_i - in list(zip(comp['locations'], - comp['directions']))]) - - rho = self._create_correlation_matrix(rho_qnt) - - if not np.all(q_dist=='N/A'): - # remove the unnecessary fields - to_remove = np.where(q_dist=='N/A')[0] - rho = np.delete(rho, to_remove, axis=0) - rho = np.delete(rho, to_remove, axis=1) - - q_theta, q_sig, q_dist, q_tags = [ - np.delete(q_vals, to_remove) for q_vals in [ - q_theta, q_sig, q_dist, q_tags]] - - dims = len(q_theta) - - # add lower limits to ensure only positive quantities - # zero is probably too low, and it might make sense to introduce upper - # limits as well - tr_lower = [0. for d in range(dims)] - tr_upper = [None for d in range(dims)] - - # Create the RVs - for q, (q_tag, theta_q, sig_q, dist_q) in enumerate( - zip(q_tags, q_theta, q_sig, q_dist)): - self._RV_reg.add_RV(RandomVariable( - name=q_tag, distribution=dist_q, - theta=[theta_q, sig_q], - truncation_limits = [tr_lower[q], tr_upper[q]] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'QNT_set', list(self._RV_reg.RVs(q_tags).values()), - rho - )) - - # q_COV = np.outer(q_sig, q_sig) * rho - # - # # to avoid truncations affecting other dimensions when rho_QNT is large, - # # assign a post-truncation correlation structure - # corr_ref = 'post' - # - # quantity_RV = RandomVariable(ID=100, - # dimension_tags=q_tag, - # distribution_kind=q_dist, - # theta=q_theta, - # COV=q_COV, - # truncation_limits=[tr_lower, tr_upper], - # corr_ref=corr_ref) - - else: - q_tags = None - - return q_tags - - def _create_RV_fragilities(self, c_id, comp, rho_fr): - """ - - Parameters - ---------- - c_id - comp - rho_fr - - Returns - ------- - - """ - - # prepare the basic multivariate distribution data for one component subgroup considering all damage states - d_theta, d_sig, d_tags, d_distr_kind = [np.array([]) for i in range(4)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for d_id in s_dsg_keys: - DSG = comp['DSG_set'][d_id] - d_theta = np.append(d_theta, DSG['theta']) - d_sig = np.append(d_sig, DSG['sig']) - d_tags = np.append(d_tags, f"FF-{comp['ID']}-{d_id}") - d_distr_kind = np.append(d_distr_kind, DSG['distribution_kind']) - dims = len(d_theta) - - # get the total number of random variables for this fragility group - #rv_count = len(comp['locations']) * len(comp['directions']) * dims - rv_count = sum([len(csg_w) for csg_w in comp['csg_weights']]) * dims - - # create the (empty) input arrays for the RV - c_theta = np.zeros(rv_count) - c_tags = np.empty(rv_count, dtype=object) - c_sig = np.zeros(rv_count) - c_distr_kind = np.empty(rv_count, dtype=object) - - pos_id = 0 - #for l_id in comp['locations']: - # # for each location-direction pair) - # for d_id, __ in enumerate(comp['directions']): - # # for each component-subgroup - # c_theta[pos_id:pos_id + dims] = d_theta - # c_sig[pos_id:pos_id + dims] = d_sig - # c_tags[pos_id:pos_id + dims] = [ - # t + '-LOC-{}-CSG-{}'.format(l_id, d_id) for t in d_tags] - # c_distr_kind[pos_id:pos_id + dims] = d_distr_kind - # pos_id += dims - - for l_id, d_id, csg_list in zip(comp['locations'], comp['directions'], - comp['csg_weights']): - # for each location-direction pair) - for csg_id, __ in enumerate(csg_list): - # for each component-subgroup - c_theta[pos_id:pos_id + dims] = d_theta - c_sig[pos_id:pos_id + dims] = d_sig - c_tags[pos_id:pos_id + dims] = [ - t + '-LOC-{}-DIR-{}-CSG-{}'.format(l_id, d_id, csg_id) - for t in d_tags] - c_distr_kind[pos_id:pos_id + dims] = d_distr_kind - pos_id += dims - - # create the covariance matrix - c_rho = self._create_correlation_matrix(rho_fr, c_target=c_id, - include_DSG=True, - include_CSG=True) - - if c_tags.size > 0: - # Create the RVs - for c, (c_tag, sig_c, theta_c, dkind_c) in enumerate( - zip(c_tags, c_sig, c_theta, c_distr_kind)): - self._RV_reg.add_RV(RandomVariable( - name=c_tag, distribution=dkind_c, - theta=[theta_c, sig_c] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - f'FF_set_{c_id}', list(self._RV_reg.RVs(c_tags).values()), - c_rho)) - - # c_COV = np.outer(c_sig, c_sig) * c_rho - # - # fragility_RV = RandomVariable(ID=300 + c_id, - # dimension_tags=c_tags, - # distribution_kind=c_distr_kind, - # theta=c_theta, - # COV=c_COV) - else: - c_tags = None - - return c_tags - - def _create_RV_damage_states(self): - - d_tags, d_theta = [[] for i in range(2)] - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - if DSG['DS_set_kind'] == 'mutually exclusive': - - s_ds_keys = sorted(DSG['DS_set'].keys()) - DS_set = DSG['DS_set'] - DS_weights = [DS_set[ds_i]['weight'] for ds_i in s_ds_keys] - - for loc, dir_, csg_list in zip(comp['locations'], - comp['directions'], - comp['csg_weights']): - - for csg_id, __ in enumerate(csg_list): - - d_tags.append(f'DSG-{comp["ID"]}-{dsg_i}-LOC-{loc}-' - f'DIR-{dir_}-CSG-{csg_id}') - d_theta.append(DS_weights) - - if len(d_tags) > 0: - - # Create the RVs - for d, (d_tag, theta_d) in enumerate(zip(d_tags, d_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='multinomial', - theta=theta_d)) - - else: - d_tags = None - - return d_tags - - def _create_RV_red_tags(self, rho_target): - - f_theta, f_sig, f_tags = [np.array([]) for i in range(3)] - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - d_theta, d_sig, d_tag = [np.array([]) for i in range(3)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i in s_ds_keys: - DS = DSG['DS_set'][ds_i] - if 'red_tag' in DS.keys(): - d_theta = np.append(d_theta, DS['red_tag']['theta']) - d_sig = np.append(d_sig, DS['red_tag']['cov']) - else: - # if there are no injuries assigned to this DS - d_theta = np.append(d_theta, 0) - d_sig = np.append(d_sig, 0.0001) - d_tag = np.append(d_tag, f"RED-{comp['ID']}-{dsg_i}-{ds_i}") - - for loc, dir_ in zip(comp['locations'], comp['directions']): - f_theta = np.append(f_theta, d_theta) - f_sig = np.append(f_sig, d_sig) - f_tags = np.append(f_tags, [t + f'-LOC-{loc}-DIR-{dir_}' - for t in d_tag]) - - rho = self._create_correlation_matrix(rho_target, c_target=-1, - include_DSG=True, - include_DS=True) - - if not np.all(f_theta==0.): - # remove the unnecessary fields - to_remove = np.where(f_theta == 0)[0] - rho = np.delete(rho, to_remove, axis=0) - rho = np.delete(rho, to_remove, axis=1) - - f_theta, f_sig, f_tags = [np.delete(f_vals, to_remove) - for f_vals in [f_theta, f_sig, f_tags]] - - tr_upper = 1. + (1. - f_theta) / f_theta - - # Create the RVs - for f, (f_tag, theta_f, sig_f) in enumerate( - zip(f_tags, f_theta, f_sig)): - self._RV_reg.add_RV(RandomVariable( - name=f_tag, distribution='normal', - theta=[1.0, sig_f], - truncation_limits=[0., tr_upper[f]] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'DV_RED_set', list(self._RV_reg.RVs(f_tags).values()), rho)) - - # f_COV = np.outer(f_sig, f_sig) * rho - # - # red_tag_RV = RandomVariable(ID=400, - # dimension_tags=f_tag, - # distribution_kind='normal', - # theta=np.ones(len(f_theta)), - # COV=f_COV, - # corr_ref='post', - # truncation_limits=[np.zeros(len(f_theta)), - # tr_upper]) - else: - f_tags = None - - return f_tags - - def _create_RV_repairs(self, rho_cost, rho_time, rho_cNt): - - # prepare the cost and time parts of the data separately - ct_sig, ct_tags, ct_dkind = [np.array([]) for i in range(3)] - for rho_target, name in zip([rho_cost, rho_time], ['cost', 'time']): - - f_sig, f_tag, f_dkind = [np.array([]) for i in range(3)] - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - d_sig, d_tag, d_dkind = [np.array([]) for i in range(3)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i in s_ds_keys: - DS = DSG['DS_set'][ds_i] - if ((f'repair_{name}' in DS.keys()) and - (DS[f'repair_{name}']['distribution_kind'] is not None)): - data = DS[f'repair_{name}'] - d_sig = np.append(d_sig, data['cov']) - d_dkind = np.append(d_dkind, - data['distribution_kind']) - else: - d_sig = np.append(d_sig, 0.0001) - d_dkind = np.append(d_dkind, None) - - d_tag = np.append( - d_tag, f'REP-{comp["ID"]}-{dsg_i}-{ds_i}-{name}') - #comp['ID'] + '-' + str( - # dsg_i) + '-' + str( - # ds_i) + '-{}'.format(name)) - - for loc, dir_ in zip(comp['locations'], comp['directions']): - f_sig = np.append(f_sig, d_sig) - f_dkind = np.append(f_dkind, d_dkind) - f_tag = np.append( - f_tag, [t + f'-LOC-{loc}-DIR-{dir_}' for t in d_tag]) - - ct_sig = np.append(ct_sig, f_sig) - ct_tags = np.append(ct_tags, f_tag) - ct_dkind = np.append(ct_dkind, f_dkind) - - rho_c = self._create_correlation_matrix(rho_cost, c_target=-1, - include_DSG=True, - include_DS=True) - rho_t = self._create_correlation_matrix(rho_time, c_target=-1, - include_DSG=True, - include_DS=True) - - dims = len(ct_tags) - ct_rho = np.zeros((dims, dims)) - - dims = dims // 2 - if rho_cNt == False: - ct_rho[:dims, :dims] = rho_c - ct_rho[dims:, dims:] = rho_t - else: - # In the special case of mixing perfect correlation between - # locations and directions, taking the envelope is not the - # appropriate solution. Instead, the LOC & DIR -> PG approach is - # used. - if (((rho_cost == 'LOC') and (rho_time =='DIR')) or - ((rho_cost == 'DIR') and (rho_time == 'LOC'))): - rho_ct = self._create_correlation_matrix('PG', c_target=-1, - include_DSG=True, - include_DS=True) - else: - # We use the envelope in every other case. - rho_ct = np.maximum(rho_c, rho_t) - - ct_rho[:dims, :dims] = rho_ct - ct_rho[dims:, dims:] = rho_ct - - # apply the same blocks to the off-diagonal positions - ct_rho[:dims, dims:] = rho_ct - ct_rho[dims:, :dims] = rho_ct - - # now remove the unnecessary fields - if not np.all(ct_dkind == None): - - to_remove = np.where(ct_dkind == None)[0] - ct_rho = np.delete(ct_rho, to_remove, axis=0) - ct_rho = np.delete(ct_rho, to_remove, axis=1) - - ct_dkind, ct_sig, ct_tags = [np.delete(ct_vals, to_remove) - for ct_vals in [ct_dkind, ct_sig, ct_tags]] - - # Create the RVs - for ct, (ct_tag, sig_ct, dkind_ct) in enumerate( - zip(ct_tags, ct_sig, ct_dkind)): - self._RV_reg.add_RV(RandomVariable( - name=ct_tag, distribution=dkind_ct, - theta=[1.0, sig_ct], - truncation_limits=[0., None] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'DV_REP_set', list(self._RV_reg.RVs(ct_tags).values()), ct_rho)) - - # ct_COV = np.outer(ct_sig, ct_sig) * ct_rho - # - # repair_RV = RandomVariable(ID=401, - # dimension_tags=ct_tags, - # distribution_kind=ct_dkind, - # theta=np.ones(len(ct_sig)), - # COV=ct_COV, - # corr_ref='post', - # truncation_limits=[np.zeros(len(ct_sig)), - # None]) - else: - ct_tags = None - - return ct_tags - - def _create_RV_injuries(self, rho_target, rho_lvls): - - inj_lvls = self._inj_lvls - - # prepare the parts for different levels of injury separately - full_theta, full_sig, full_tags = [np.array([]) for i in range(3)] - for i_lvl in range(inj_lvls): - - f_theta, f_sig, f_tag = [np.array([]) for i in range(3)] - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - d_theta, d_sig, d_tag = [np.array([]) for i in range(3)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i in s_ds_keys: - DS = DSG['DS_set'][ds_i] - if 'injuries' in DS.keys(): - d_theta = np.append( - d_theta, DS['injuries']['theta'][i_lvl]) - d_sig = np.append( - d_sig, DS['injuries']['cov'][i_lvl]) - else: - # if there are no injuries assigned to this DS - d_theta = np.append(d_theta, 0) - d_sig = np.append(d_sig, 0.0001) - d_tag = np.append( - d_tag, f"INJ-{comp['ID']}-{dsg_i}-{ds_i}-{i_lvl}") - - for loc, dir_ in zip(comp['locations'], comp['directions']): - f_theta = np.append(f_theta, d_theta) - f_sig = np.append(f_sig, d_sig) - f_tag = np.append(f_tag, - [t + '-LOC-{}-DIR-{}'.format(loc, - dir_) - for t in d_tag]) - - full_theta = np.append(full_theta, f_theta) - full_sig = np.append(full_sig, f_sig) - full_tags = np.append(full_tags, f_tag) - - dims = len(full_tags) - full_rho = np.zeros((dims, dims)) - dims = dims // inj_lvls - - # if correlation between different levels of severity is considered, add that to the matrix - if rho_lvls: - rho_i = self._create_correlation_matrix(rho_target, c_target=-1, - include_DSG=True, - include_DS=True) - for i in range(inj_lvls): - for j in range(inj_lvls): - full_rho[i * dims:(i + 1) * dims, - j * dims:(j + 1) * dims] = rho_i - - # and now add the values around the main diagonal - for i in range(inj_lvls): - rho_i = self._create_correlation_matrix(rho_target, c_target=-1, - include_DSG=True, - include_DS=True) - full_rho[i * dims:(i + 1) * dims, i * dims:(i + 1) * dims] = rho_i - - # finally, remove the unnecessary lines - to_remove = np.where(full_theta == 0)[0] - full_rho = np.delete(full_rho, to_remove, axis=0) - full_rho = np.delete(full_rho, to_remove, axis=1) - - full_theta, full_sig, full_tags = [np.delete(f_vals, to_remove) - for f_vals in - [full_theta, full_sig, full_tags]] - - tr_upper = 1. + (1. - full_theta) / full_theta - - if full_tags.size > 0: - # Create the RVs - for ii, (ii_tag, sig_ii, theta_ii) in enumerate( - zip(full_tags, full_sig, full_theta)): - self._RV_reg.add_RV(RandomVariable( - name=ii_tag, distribution='normal', - theta=[1.0, sig_ii], - truncation_limits=[0., tr_upper[ii]] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'DV_INJ_set', list(self._RV_reg.RVs(full_tags).values()), - full_rho)) - - # full_COV = np.outer(full_sig, full_sig) * full_rho - # - # if full_tags.size > 0: - # injury_RV = RandomVariable(ID=402, - # dimension_tags=full_tags, - # distribution_kind='normal', - # theta=np.ones(len(full_sig)), - # COV=full_COV, - # corr_ref='post', - # truncation_limits=[np.zeros(len(full_sig)), - # tr_upper]) - else: - full_tags = None - - return full_tags - - def _create_fragility_groups(self): - - RVd = self._RV_dict - DVs = self._AIM_in['decision_variables'] - - # create a list for the fragility groups - FG_dict = dict() - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id in s_fg_keys: - log_msg('\t{}...'.format(c_id)) - comp = self._FG_in[c_id] - - FG_ID = len(FG_dict.keys())+1 - - # create a list for the performance groups - performance_groups = [] - - # one group for each of the stories prescribed by the user - PG_locations = comp['locations'] - PG_directions = comp['directions'] - PG_csg_lists = comp['csg_weights'] - PG_dists = comp['distribution_kind'] - PG_qnts = comp['quantities'] - for loc, dir_, csg_list, dist, qnt, in zip( - PG_locations, PG_directions, PG_csg_lists, PG_dists, PG_qnts): - PG_ID = 10000 * FG_ID + 10 * loc + dir_ - - # get the quantity - if dist == 'N/A': - QNT = qnt - else: - # QNT = RandomVariableSubset(RVd['QNT'], - # tags=[f'{c_id}-QNT-{loc}-{dir_}', ]) - QNT = self._QNT_dict[f'{c_id}-QNT-{loc}-{dir_}'] - - # create the damage objects - # consequences are calculated on a performance group level - - # create a list for the damage state groups and their tags - DSG_list = [] - d_tags = [] - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i, DSG_ID in enumerate(s_dsg_keys): - DSG = comp['DSG_set'][DSG_ID] - d_tags.append('FF-' + c_id + '-' + DSG_ID) - - # create a list for the damage states - DS_set = [] - - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i, DS_ID in enumerate(s_ds_keys): - DS = DSG['DS_set'][DS_ID] - - # create the consequence functions - if DVs['rec_cost']: - data = DS['repair_cost'] - f_median = prep_bounded_multilinear_median_DV( - **{k: data.get(k, None) for k in - ('medians', 'quantities')}) - #('median_max', 'median_min', - # 'quantity_lower', 'quantity_upper')}) - cf_tag = 'REP-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-cost' + \ - '-LOC-{}-DIR-{}'.format(loc, dir_) - CF_RV = self._DV_REP_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_REP'], - # tags=cf_tag) - CF_cost = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_cost = None - - if DVs['rec_time']: - data = DS['repair_time'] - f_median = prep_bounded_multilinear_median_DV( - **{k: data.get(k, None) for k in - ('medians', 'quantities')}) - #('median_max', 'median_min', - # 'quantity_lower', 'quantity_upper')}) - cf_tag = 'REP-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-time' + \ - '-LOC-{}-DIR-{}'.format(loc, dir_) - CF_RV = self._DV_REP_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_REP'], - # tags=cf_tag) - CF_time = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_time = None - - if (DVs['red_tag']) and ('red_tag' in DS.keys()): - data = DS['red_tag'] - if data['theta'] > 0: - f_median = prep_constant_median_DV(data['theta']) - cf_tag = 'RED-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-LOC-{}-DIR-{}'.format(loc, dir_) - CF_RV = self._DV_RED_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_RED'], - # tags=cf_tag) - CF_red_tag = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_red_tag = None - else: - CF_red_tag = None - - if (DVs['injuries']) and ('injuries' in DS.keys()): - CF_inj_set = [] - for inj_i, theta in enumerate(DS['injuries']['theta']): - if theta > 0.: - f_median = prep_constant_median_DV(theta) - cf_tag = 'INJ-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-{}-LOC-{}-DIR-{}'.format(inj_i, loc, dir_) - CF_RV = self._DV_INJ_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_INJ'], - # tags=cf_tag) - CF_inj_set.append(ConsequenceFunction( - DV_median=f_median, - DV_distribution=CF_RV)) - else: - CF_inj_set.append(None) - else: - CF_inj_set = [None,] - - # add the DS to the list - if 'affected_area' in DS.keys(): - AA = DS['affected_area'] - else: - AA = 0.0 - # TODO: make this smarter by making affected_area a property of DS - DS_set.append(DamageState( - ID=ds_i + 1, - description=DS['description'], - weight=DS['weight'], - affected_area=AA, - repair_cost_CF=CF_cost, - reconstruction_time_CF=CF_time, - red_tag_CF=CF_red_tag, - injuries_CF_set=CF_inj_set)) - - # add the DSG to the list - DSG_list.append(DamageStateGroup( - ID=dsg_i + 1, - DS_set=DS_set, - DS_set_kind=DSG['DS_set_kind'])) - - # create the fragility functions - FF_set = [] - #CSG_this = np.where(comp['directions']==dir_)[0] - #PG_weights = np.asarray(comp['csg_weights'])[CSG_this] - # normalize the weights - #PG_weights /= sum(PG_weights) - for csg_id, __ in enumerate(csg_list): - # assign the appropriate random variable to the fragility - # function - ff_tags = [t + f'-LOC-{loc}-DIR-{dir_}-CSG-{csg_id}' - for t in d_tags] - EDP_limit = [self._FF_dict[ff_tag] for ff_tag in ff_tags] - # RandomVariableSubset(RVd['FR-' + c_id], - # tags=ff_tags) - FF_set.append(FragilityFunction(EDP_limit)) - - # create the performance group - PG = PerformanceGroup(ID=PG_ID, - location=loc, - quantity=QNT, - fragility_functions=FF_set, - DSG_set=DSG_list, - csg_weights=csg_list, - direction=dir_ - ) - performance_groups.append(PG) - - # create the fragility group - FG = FragilityGroup(ID=FG_ID, - #kind=comp['kind'], - demand_type=comp['demand_type'], - performance_groups=performance_groups, - directional=comp['directional'], - correlation=comp['correlation'], - demand_location_offset=comp['offset'], - incomplete=comp['incomplete'], - name=str(FG_ID) + ' - ' + comp['ID'], - description=comp['description'], - unit=comp['unit'] - ) - - FG_dict.update({comp['ID']:FG}) - - return FG_dict - - def _sample_event_time(self): - - sample_count = self._AIM_in['general']['realizations'] - - # month - uniform distribution over [0,11] - month = np.random.randint(0, 12, size=sample_count) - - # weekday - binomial with p=5/7 - weekday = np.random.binomial(1, 5. / 7., size=sample_count) - - # hour - uniform distribution over [0,23] - hour = np.random.randint(0, 24, size=sample_count) - - data = pd.DataFrame(data={'month' : month, - 'weekday?': weekday, - 'hour' : hour}, - dtype=int) - - return data - - def _get_population(self): - """ - Use the population characteristics to generate random population samples. - - Returns - ------- - - """ - POPin = self._POP_in - TIME = self._TIME - - POP = pd.DataFrame( - np.ones((len(TIME.index), len(POPin['peak']))) * POPin['peak'], - columns=['LOC' + str(loc + 1) - for loc in range(len(POPin['peak']))]) - - # if there is a temporal population model available... - if 'weekday' in POPin.keys(): - weekdays = TIME[TIME['weekday?'] == 1].index - weekends = TIME[~TIME.index.isin(weekdays)].index - - for col in POP.columns.values: - POP.loc[weekdays, col] = ( - POP.loc[weekdays, col] * - np.array(POPin['weekday']['daily'])[ - TIME.loc[weekdays, 'hour'].values.astype(int)] * - np.array(POPin['weekday']['monthly'])[ - TIME.loc[weekdays, 'month'].values.astype(int)]) - - POP.loc[weekends, col] = ( - POP.loc[weekends, col] * - np.array(POPin['weekend']['daily'])[ - TIME.loc[weekends, 'hour'].values.astype(int)] * - np.array(POPin['weekend']['monthly'])[ - TIME.loc[weekends, 'month'].values.astype(int)]) - - return POP - - def _calc_collapses(self): - - # There are three options for determining which realizations ended in - # collapse. - GI = self._AIM_in['general'] - GR = GI['response'] - realizations = self._AIM_in['general']['realizations'] - - # 1, The simplest case: prescribed collapse rate - if GR['coll_prob'] != 'estimated': - collapsed_IDs = np.random.choice( - realizations, - size=int(GR['coll_prob']*realizations), - replace=False) - - # 2, Collapses estimated using EDP results - elif GR['CP_est_basis'] == 'raw EDP': - demand_data = [] - collapse_limits = [] - s_edp_keys = sorted(self._EDP_in.keys()) - for d_id in s_edp_keys: - d_list = self._EDP_in[d_id] - for i in range(len(d_list)): - demand_data.append(d_list[i]['raw_data']) - - coll_lim = GI['collapse_limits'][d_id] - if coll_lim is None: - coll_lim = np.inf - - collapse_limits.append([0., coll_lim]) - - collapse_limits = np.transpose(np.asarray(collapse_limits)) - demand_data = np.transpose(np.asarray(demand_data)) - - EDP_filter = np.all( - [np.all(demand_data > collapse_limits[0], axis=1), - np.all(demand_data < collapse_limits[1], axis=1)], - axis=0) - coll_prob = 1.0 - sum(EDP_filter)/len(EDP_filter) - collapsed_IDs = np.random.choice( - realizations, - size=int(coll_prob * realizations), - replace=False) - - # 3, Collapses estimated using sampled EDP distribution - elif GR['CP_est_basis'] == 'sampled EDP': - collapsed_IDs = np.array([]) - s_edp_keys = sorted(self._EDP_dict.keys()) - for demand_ID in s_edp_keys: - demand = self._EDP_dict[demand_ID] - kind = demand_ID.split('-')[1] - collapse_limit = self._AIM_in['general']['collapse_limits'][kind] - if collapse_limit is not None: - EDP_samples = demand.samples_DF - coll_df = EDP_samples[EDP_samples > collapse_limit] - collapsed_IDs = np.concatenate( - (collapsed_IDs, coll_df.index.values)) - - # get a list of IDs of the collapsed cases - collapsed_IDs = np.unique(collapsed_IDs).astype(int) - - COL = pd.DataFrame(np.zeros(realizations), columns=['COL', ]) - COL.loc[collapsed_IDs, 'COL'] = 1 - - return COL, collapsed_IDs - - def _calc_damage(self): - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - DMG = pd.DataFrame() - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - log_msg('\t\t{}...'.format(fg_id)) - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = [] - for DSG in PG_set[0]._DSG_set: - for DS in DSG._DS_set: - DS_list.append(str(DSG._ID) + '_' + str(DS._ID)) - d_count = len(DS_list) - - MI = pd.MultiIndex.from_product([[FG._ID, ], - [pg._ID for pg in PG_set], - DS_list], - names=['FG', 'PG', 'DSG_DS']) - - FG_damages = pd.DataFrame(np.zeros((NC_samples, len(MI))), - columns=MI, - index=ncID) - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - if isinstance(PG._quantity, RandomVariable): - PG_qnt = PG._quantity.samples_DF.loc[ncID] - else: - PG_qnt = pd.Series(np.ones(NC_samples) * PG._quantity, - index=ncID) - - # get the corresponding demands - if not FG._directional: - demand_ID_list = [] - - for demand_ID in self._EDP_dict.keys(): - demand_kind = demand_ID.split('-')[1] - if demand_kind == FG._demand_type: - demand_data = demand_ID.split('-') - if int(demand_data[3]) == PG._location + FG._demand_location_offset: - demand_ID_list.append(demand_ID) - - EDP_samples = self._EDP_dict[demand_ID_list[0]].samples_DF.loc[ncID] - if len(demand_ID_list)>1: - for demand_ID in demand_ID_list[1:]: - new_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - EDP_samples.update( - pd.Series(np.maximum(new_samples.values,EDP_samples.values), - index=EDP_samples.index)) - - # scale the max of inputs by 1.2 as per FEMA P58 vol 2 3.2.3 - EDP_samples *= 1.2 - - else: - demand_ID = ('EDP-' + FG._demand_type + - '-LOC-' + str(PG._location + FG._demand_location_offset) + - '-DIR-' + str(PG._direction)) - - if demand_ID in self._EDP_dict.keys(): - EDP_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - else: - # If the required demand is not available, then we are most - # likely analyzing a 3D structure using results from a 2D - # simulation. The best thing we can do in that particular - # case is to use the EDP from the 1 direction for all other - # directions. - demand_ID = ('EDP-' + FG._demand_type + - '-LOC-' + str(PG._location + FG._demand_location_offset) + '-DIR-1') - EDP_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - - csg_w_list = PG._csg_weights - - for csg_i, csg_w in enumerate(csg_w_list): - DSG_df = PG._FF_set[csg_i].DSG_given_EDP(EDP_samples) - - for DSG in PG._DSG_set: - in_this_DSG = DSG_df[DSG_df.values == DSG._ID].index - if DSG._DS_set_kind == 'single': - DS = DSG._DS_set[0] - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - FG_damages.loc[in_this_DSG, - (FG._ID, PG_ID, DS_tag)] += csg_w - elif DSG._DS_set_kind == 'mutually exclusive': - mut_ex_id = f'DSG-{fg_id}-DSG-{DSG._ID}-' \ - f'LOC-{PG._location}-' \ - f'DIR-{PG._direction}-CSG-{csg_i}' - DS_df = self._DSG_dict[mut_ex_id].samples_DF.loc[in_this_DSG] - - # DS_weights = [DS._weight for DS in DSG._DS_set] - # DS_RV = RandomVariable( - # ID=-1, dimension_tags=['me_DS', ], - # distribution_kind='multinomial', - # p_set=DS_weights) - # DS_df = DS_RV.sample_distribution( - # len(in_this_DSG)) + 1 - - for DS in DSG._DS_set: - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - in_this_DS = DS_df[DS_df.values == DS._ID-1].index - FG_damages.loc[in_this_DS, - (FG._ID, PG_ID, DS_tag)] += csg_w - elif DSG._DS_set_kind == 'simultaneous': - DS_weights = [DS._weight for DS in DSG._DS_set] - DS_df = np.random.uniform( - size=(len(in_this_DSG), len(DS_weights))) - which_DS = DS_df < DS_weights - any_DS = np.any(which_DS, axis=1) - no_DS_ids = np.where(any_DS == False)[0] - - while len(no_DS_ids) > 0: - DS_df_add = np.random.uniform( - size=(len(no_DS_ids), len(DS_weights))) - which_DS_add = DS_df_add < DS_weights - which_DS[no_DS_ids] = which_DS_add - - any_DS = np.any(which_DS_add, axis=1) - no_DS_ids = no_DS_ids[ - np.where(any_DS == False)[0]] - - for ds_i, DS in enumerate(DSG._DS_set): - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - in_this_DS = which_DS[:, ds_i] - FG_damages.loc[in_this_DSG[in_this_DS], ( - FG._ID, PG_ID, DS_tag)] += csg_w - - else: - raise ValueError( - "Unknown damage state type: {}".format( - DSG._DS_set_kind) - ) - - FG_damages.iloc[:,pg_i * d_count:(pg_i + 1) * d_count] = \ - FG_damages.mul(PG_qnt, axis=0) - - DMG = pd.concat((DMG, FG_damages), axis=1) - - DMG.index = ncID - - # sort the columns to enable index slicing later - DMG = DMG.sort_index(axis=1, ascending=True) - - return DMG - - def _calc_red_tag(self): - idx = pd.IndexSlice - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - DV_RED = pd.DataFrame() - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - MI = pd.MultiIndex.from_product([[FG._ID, ], - [pg._ID for pg in PG_set], - DS_list], - names=['FG', 'PG', 'DSG_DS']) - - FG_RED = pd.DataFrame(np.zeros((NC_samples, len(MI))), - columns=MI, - index=ncID) - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - if isinstance(PG._quantity, RandomVariable): - PG_qnt = PG._quantity.samples_DF.loc[ncID] - else: - PG_qnt = pd.Series(np.ones(NC_samples) * PG._quantity, - index=ncID) - - PG_DMG = self._DMG.loc[:, idx[FG._ID, PG_ID, :]].div(PG_qnt,axis=0) - - for d_i, d_tag in enumerate(DS_list): - dsg_i = int(d_tag[0]) - 1 - ds_i = int(d_tag[-1]) - 1 - - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - if DS._red_tag_CF is not None: - RED_samples = DS.red_tag_dmg_limit( - sample_size=NC_samples) - RED_samples.index = ncID - - is_red = PG_DMG.loc[:, (FG._ID, PG_ID, d_tag)].sub( - RED_samples, axis=0) - - FG_RED.loc[:, (FG._ID, PG_ID, d_tag)] = ( - is_red > 0.).astype(int) - else: - FG_RED.drop(labels=[(FG._ID, PG_ID, d_tag), ], axis=1, - inplace=True) - - if FG_RED.size > 0: - DV_RED = pd.concat((DV_RED, FG_RED), axis=1) - - # sort the columns to enable index slicing later - DV_RED = DV_RED.sort_index(axis=1, ascending=True) - - return DV_RED - - def _calc_irreparable(self): - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - - # determine which realizations lead to irreparable damage - # get the max residual drifts - RID_max = None - PID_max = None - s_edp_keys = sorted(self._EDP_dict.keys()) - for demand_ID in s_edp_keys: - demand = self._EDP_dict[demand_ID] - kind = demand_ID.split('-')[1] - if kind == 'RID': - r_max = demand.samples_DF.loc[ncID].values - if RID_max is None: - RID_max = r_max - else: - RID_max = np.max((RID_max, r_max), axis=0) - elif kind == 'PID': - d_max = demand.samples_DF.loc[ncID].values - if PID_max is None: - PID_max = d_max - else: - PID_max = np.max((PID_max, d_max), axis=0) - - if RID_max is None: - if PID_max is not None: - # we need to estimate residual drifts based on peak drifts - RID_max = np.zeros(NC_samples) - - # based on FEMA P-58 Vol. 1 5.4 - delta_y = self._AIM_in['general']['yield_drift'] - small = PID_max < delta_y - medium = PID_max < 4 * delta_y - large = PID_max >= 4 * delta_y - - RID_max[large] = PID_max[large] - 3 * delta_y - RID_max[medium] = 0.3 * (PID_max[medium] - delta_y) - RID_max[small] = 0. - - # add extra uncertainty - eps = np.random.normal(scale=0.2, size=len(ncID) - np.sum(small)) - RID_max[RID_max>0] = np.exp(np.log(RID_max[RID_max>0]) + eps) - - else: - # If no drift data is available, then we cannot provide an estimate - # of irreparability. We assume that all non-collapse realizations - # are repairable in this case. - return np.array([]) - - # get the probabilities of irreparability - # irrep_frag = self._AIM_in['general']['irreparable_res_drift'] - # RV_irrep = RandomVariable(ID=-1, dimension_tags=['RED_irrep', ], - # distribution_kind='lognormal', - # theta=irrep_frag['Median'], - # COV=irrep_frag['Beta'] ** 2. - # ) - # RED_irrep = RV_irrep.sample_distribution(NC_samples)['RED_irrep'].values - - RED_irrep = self._RV_reg.RV['RED_irrep'].samples_DF.loc[ncID].values - - # determine if the realizations are repairable - irreparable = RID_max > RED_irrep - irreparable_IDs = ncID[np.where(irreparable)[0]] - - return irreparable_IDs - - def _calc_repair_cost_and_time(self): - - idx = pd.IndexSlice - DVs = self._AIM_in['decision_variables'] - - DMG_by_FG_and_DS = self._DMG.groupby(level=[0, 2], axis=1).sum() - DMG_by_FG = self._DMG.groupby(level=[0,], axis=1).sum() - DMG_by_FG_and_PG = self._DMG.groupby(level=[0, 1], axis=1).sum() - - repID = self._ID_dict['repairable'] - REP_samples = len(repID) - DV_COST = pd.DataFrame(np.zeros((REP_samples, len(self._DMG.columns))), - columns=self._DMG.columns, index=repID) - DV_TIME = DV_COST.copy() - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - - for d_i, d_tag in enumerate(DS_list): - dsg_i = int(d_tag[0]) - 1 - ds_i = int(d_tag[-1]) - 1 - - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - TOT_qnt = DMG_by_FG_and_DS.loc[repID, (FG._ID, d_tag)] - #TOT_qnt = DMG_by_FG.loc[repID, FG._ID] - #TOT_qnt = self._DMG.loc[repID, (FG._ID, PG_ID, d_tag)] - #TOT_qnt = DMG_by_FG_and_PG.loc[repID, (FG._ID, PG_ID)] - PG_qnt = self._DMG.loc[repID, - (FG._ID, PG_ID, d_tag)] - - # repair cost - if DVs['rec_cost']: - COST_samples = DS.unit_repair_cost(quantity=TOT_qnt) - DV_COST.loc[:, - (FG._ID, PG_ID, d_tag)] = COST_samples * PG_qnt - - if DVs['rec_time']: - # repair time - TIME_samples = DS.unit_reconstruction_time(quantity=TOT_qnt) - DV_TIME.loc[:, - (FG._ID, PG_ID, d_tag)] = TIME_samples * PG_qnt - - # sort the columns to enable index slicing later - if DVs['rec_cost']: - DV_COST = DV_COST.sort_index(axis=1, ascending=True) - else: - DV_COST = None - if DVs['rec_time']: - DV_TIME = DV_TIME.sort_index(axis=1, ascending=True) - else: - DV_TIME = None - - return DV_COST, DV_TIME - - def _calc_collapse_injuries(self): - - inj_lvls = self._inj_lvls - - # calculate injuries for the collapsed cases - # generate collapse modes - colID = self._ID_dict['collapse'] - C_samples = len(colID) - - if C_samples > 0: - - inj_lvls = self._inj_lvls - coll_modes = self._AIM_in['collapse_modes'] - P_keys = [cmk for cmk in coll_modes.keys()] - # P_modes = [coll_modes[k]['w'] for k in P_keys] - - # create the DataFrame that collects the decision variables - inj_cols = ['CM',] - for i in range(inj_lvls): - inj_cols.append('INJ-{}'.format(i)) - COL_INJ = pd.DataFrame(np.zeros((C_samples, inj_lvls + 1)), - columns=inj_cols, index=colID) - - # CM_RV = RandomVariable(ID=-1, dimension_tags=['CM', ], - # distribution_kind='multinomial', - # p_set=P_modes) - #COL_INJ['CM'] = CM_RV.sample_distribution(C_samples).values - COL_INJ['CM'] = self._RV_reg.RV['CM'].samples_DF.loc[colID].values - - # get the popoulation values corresponding to the collapsed cases - P_sel = self._POP.loc[colID] - - # calculate the exposure of the popoulation - for cm_i, cmk in enumerate(P_keys): - mode_IDs = COL_INJ[COL_INJ['CM'] == cm_i].index - CFAR = coll_modes[cmk]['affected_area'] - INJ = coll_modes[cmk]['injuries'] - for loc_i in range(len(CFAR)): - loc_label = 'LOC{}'.format(loc_i + 1) - if loc_label in P_sel.columns: - for inj_i in range(inj_lvls): - INJ_i = P_sel.loc[mode_IDs, loc_label] * CFAR[loc_i] * \ - INJ[inj_i] - COL_INJ.loc[mode_IDs, 'INJ-{}'.format(inj_i)] = ( - COL_INJ.loc[mode_IDs, 'INJ-{}'.format(inj_i)].add(INJ_i, axis=0).values) - - return COL_INJ - - else: - return None - - def _calc_non_collapse_injuries(self): - - idx = pd.IndexSlice - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - DV_INJ_dict = dict([(i, pd.DataFrame(np.zeros((NC_samples, - len(self._DMG.columns))), - columns=self._DMG.columns, - index=ncID)) - for i in range(self._inj_lvls)]) - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - - for d_i, d_tag in enumerate(DS_list): - dsg_i = int(d_tag[0]) - 1 - ds_i = int(d_tag[-1]) - 1 - - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - if DS._affected_area > 0.: - P_affected = (self._POP.loc[ncID] - * DS._affected_area / - self._AIM_in['general']['plan_area']) - - QNT = self._DMG.loc[:, (FG._ID, PG_ID, d_tag)] - - # estimate injuries - for i in range(self._inj_lvls): - INJ_samples = DS.unit_injuries(severity_level=i, - sample_size=NC_samples) - if INJ_samples is not None: - INJ_samples.index = ncID - P_aff_i = P_affected.loc[:, - 'LOC{}'.format(PG._location)] - INJ_i = INJ_samples * P_aff_i * QNT - DV_INJ_dict[i].loc[:, - (FG._ID, PG_ID, d_tag)] = INJ_i - - # remove the useless columns from DV_INJ - for i in range(self._inj_lvls): - DV_INJ = DV_INJ_dict[i] - DV_INJ_dict[i] = DV_INJ.loc[:, (DV_INJ != 0.0).any(axis=0)] - - # sort the columns to enable index slicing later - for i in range(self._inj_lvls): - DV_INJ_dict[i] = DV_INJ_dict[i].sort_index(axis=1, ascending=True) - - return DV_INJ_dict - - -class HAZUS_Assessment(Assessment): - """ - An Assessment class that implements the damage and loss assessment method - following the HAZUS Technical Manual and the HAZUS software. - - Parameters - ---------- - hazard: {'EQ', 'HU'} - Identifies the type of hazard. EQ corresponds to earthquake, HU - corresponds to hurricane. - default: 'EQ'. - inj_lvls: int - Defines the discretization used to describe the severity of injuries. - The HAZUS earthquake methodology uses 4 levels. - default: 4 - """ - def __init__(self, hazard='EQ', inj_lvls = 4, log_file=True): - super(HAZUS_Assessment, self).__init__(log_file) - - self._inj_lvls = inj_lvls - self._hazard = hazard - self._assessment_type = 'HAZUS_{}'.format(hazard) - - log_msg('type: HAZUS Assessment') - log_msg('hazard: {}'.format(self._hazard)) - log_msg(log_div) - - def read_inputs(self, path_DL_input, path_EDP_input, verbose=False): - """ - Read and process the input files to describe the loss assessment task. - - Parameters - ---------- - path_DL_input: string - Location of the Damage and Loss input file. The file is expected to - be a JSON with data stored in a standard format described in detail - in the Input section of the documentation. - path_EDP_input: string - Location of the EDP input file. The file is expected to follow the - output formatting of Dakota. The Input section of the documentation - provides more information about the expected formatting. - verbose: boolean, default: False - If True, the method echoes the information read from the files. - This can be useful to ensure that the information in the file is - properly read by the method. - - """ - - super(HAZUS_Assessment, self).read_inputs(path_DL_input, - path_EDP_input, verbose) - - # assume that the asset is a building - # TODO: If we want to apply HAZUS to non-building assets, several parts of this methodology need to be extended. - BIM = self._AIM_in - - # read component and population data ---------------------------------- - # components - log_msg('\tDamage and Loss data files...') - self._FG_in = read_component_DL_data( - self._AIM_in['data_sources']['path_CMP_data'], BIM['components'], - assessment_type=self._assessment_type, avail_edp=self._EDP_in, verbose=verbose) - - data = self._FG_in - log_msg('\t\tAvailable Fragility Groups:') - for key, val in data.items(): - log_msg('\t\t\t{} demand:{} PGs: {}'.format(key, val['demand_type'], len(val['locations']))) - - # HAZUS combination rules for hurricane - if self._hazard == 'HU': - log_msg('\tLoss combination files...') - self._LC_in = read_combination_DL_data( - self._AIM_in['data_sources']['path_combination_data'], - BIM['loss_combination'], - assessment_type=self._assessment_type, verbose=verbose) - - # population (if needed) - if self._AIM_in['decision_variables']['injuries']: - - if BIM['general']['event_time'] is None: - log_msg('\tPopulation data files...') - POP = read_population_distribution( - self._AIM_in['data_sources']['path_POP_data'], - BIM['general']['occupancy_type'], - assessment_type=self._assessment_type, - verbose=verbose) - else: - POP = {'peak': None} - - POP['peak'] = BIM['general']['population'] - self._POP_in = POP - - def define_random_variables(self): - """ - Define the random variables used for loss assessment. - - Following the HAZUS methodology, only the groups of parameters below - are considered random. Correlations within groups are not considered - because each Fragility Group has only one Performance Group with a - in this implementation. - - 1. Demand (EDP) distribution - - Describe the uncertainty in the demands. Unlike other random variables, - the EDPs are characterized by the EDP input data provided earlier. All - EDPs are handled in one multivariate lognormal distribution. If more - than one sample is provided, the distribution is fit to the EDP data. - Otherwise, the provided data point is assumed to be the median value - and the additional uncertainty prescribed describes the dispersion. See - _create_RV_demands() for more details. - - 2. Fragility EDP limits - - Describe the uncertainty in the EDP limit that corresponds to - exceedance of each Damage State. EDP limits are grouped by Fragility - Groups. See _create_RV_fragilities() for details. - - """ - super(HAZUS_Assessment, self).define_random_variables() - - DEP = self._AIM_in['dependencies'] - - # create the random variables ----------------------------------------- - self._RV_dict = {} - - # quantities 100 - log_msg('\tQuantities...') - QNT_tags = self._create_RV_quantities(DEP['quantities']) - - # self._RV_dict.update({ - # 'QNT': self._create_RV_quantities(DEP['quantities'])}) - - if QNT_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(QNT_tags))) - self._QNT_dict = self._RV_reg.RVs(QNT_tags) - else: - log_msg('\t\tNone of the components have random quantities assigned') - - # fragilities 300 - log_msg('\tDamage State Limits...') - s_fg_keys = sorted(self._FG_in.keys()) - self._FF_dict = {} - log_msg('\t\tRV dimensions:') - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - FF_tags = self._create_RV_fragilities(c_id, comp, - DEP['fragilities']) - self._FF_dict.update(self._RV_reg.RVs(FF_tags)) - - # self._RV_dict.update({ - # 'FR-' + c_name: - # self._create_RV_fragilities(c_id, comp,DEP['fragilities'])}) - log_msg('\t\t\t{}: {}'.format(c_name, len(FF_tags))) - - # for key, val in self._RV_dict.items(): - # if 'FR-' in key: - # log_msg('\t\t\t{}: {}'.format(key, len(val.theta))) - - # damages (mutually exclusive cases and later simultaneous ones too) - log_msg('\tDamage States...') - DS_tags = self._create_RV_damage_states() - - if DS_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(DS_tags))) - self._DSG_dict = self._RV_reg.RVs(DS_tags) - else: - log_msg( - '\t\tNone of the components have random damage states assigned') - - # decision variables - DVs = self._AIM_in['decision_variables'] - - if DVs['rec_time'] or DVs['rec_cost']: - log_msg('\tReconstruction Costs and Times...') - REP_tags = self._create_RV_repairs( - DEP['rec_costs'], DEP['rec_times'], DEP['cost_and_time']) - - # self._RV_dict.update({ - # 'DV_REP': self._create_RV_repairs(DEP['rec_costs'], - # DEP['rec_times'], - # DEP['cost_and_time'])}) - - if REP_tags is not None: - log_msg('\t\tRV dimensions: {}'.format(len(REP_tags))) - self._DV_REP_dict = self._RV_reg.RVs(REP_tags) - else: - log_msg('\t\tNone of the components have probabilistic ' - 'consequence functions') - - # demands 200 - log_msg('\tEDPs...') - - EDP_tags = self._create_RV_demands() - self._EDP_dict = self._RV_reg.RVs(EDP_tags) - #self._RV_dict.update({'EDP': self._create_RV_demands()}) - - # sample the random variables ----------------------------------------- - log_msg() - log_msg('Sampling the random variables...') - - realization_count = self._AIM_in['general']['realizations'] - - self._RV_reg.generate_samples(sample_size=realization_count) - - # is_coupled = self._AIM_in['general']['coupled_assessment'] - # - # s_rv_keys = sorted(self._RV_dict.keys()) - # for r_i in s_rv_keys: - # rv = self._RV_dict[r_i] - # if rv is not None: - # log_msg('\t{}...'.format(r_i)) - # rv.sample_distribution( - # sample_size=realization_count, - # preserve_order=((r_i=='EDP') and is_coupled)) - - log_msg('Sampling completed.') - - def define_loss_model(self): - """ - Create the stochastic loss model based on the inputs provided earlier. - - Following the HAZUS methodology, the component assemblies specified in - the Damage and Loss input file are used to create Fragility Groups. - Each Fragility Group corresponds to one assembly that represents every - component of the given type in the structure. See - _create_fragility_groups() for more details about the creation of - Fragility Groups. - - """ - super(HAZUS_Assessment, self).define_loss_model() - - # fragility groups - self._FG_dict = self._create_fragility_groups() - - # demands - # self._EDP_dict = dict( - # [(tag, RandomVariableSubset(self._RV_dict['EDP'], tags=tag)) - # for tag in self._RV_dict['EDP']._dimension_tags]) - - def calculate_damage(self): - """ - Characterize the damage experienced in each random event realization. - - First, the time of the event (month, weekday/weekend, hour) is randomly - generated for each realization. Given the event time, if we are interested - in injuries, the number of people present at each floor of the building is - sampled. The event time is only important if we are interested in injuries, - but it is calculated every time because it is not a large overhead and it - serves as the basis of indexing every other array. - - Second, the quantities of components in each damage state are estimated. - See _calc_damage() for more details on damage estimation. - - Finally, the realizations that led to collapse are filtered from the damage - data. - - """ - super(HAZUS_Assessment, self).calculate_damage() - - # event time - month, weekday, and hour realizations - log_msg('\tSampling event time...') - self._TIME = self._sample_event_time() - - # if we are interested in injuries... - if self._AIM_in['decision_variables']['injuries']: - # get the population conditioned on event time - log_msg('\tSampling the population...') - self._POP = self._get_population() - - # assume that all cases are non-collapse for damage assessment - non_collapsed_IDs = self._TIME.index.values.astype(int) - self._ID_dict.update({'non-collapse': non_collapsed_IDs}) - - # calculate damage - log_msg('\tCalculating the damage in the non-collapsed cases...') - self._DMG = self._calc_damage() - - # apply the prescribed damge logic - if self._AIM_in['damage_logic'] is not None: - for DL in self._AIM_in['damage_logic']: - if DL['type'] == 'propagate': - # identify the source and target FG ids - source_id = self._FG_dict[DL['source_FG']]._ID - target_id = self._FG_dict[DL['target_FG']]._ID - - # get the source DMG info - source_DMG = self._DMG.loc[:,source_id].groupby(level='DSG_DS', axis=1).sum() - - # get the PGs in the target FG - target_PGs = self._FG_dict[DL['target_FG']]._performance_groups - - # for each PG - for target_PG in target_PGs: - - # get the total quantity - if isinstance(target_PG._quantity, RandomVariable): - qnt_tot = target_PG._quantity.samples_DF.loc[self._DMG.index] - else: - qnt_tot = pd.DataFrame(np.ones(self._DMG.shape[0]) * target_PG._quantity, - index=self._DMG.index) - - # get all DSG_DS combinations in the target_PG - target_DSG_DS_list = self._DMG.loc[:, (target_id, target_PG._ID)].columns - - for source_DS, target_DS in DL['DS_links'].items(): - - # get the damaged quantity - qnt_dmg = self._DMG.loc[:, (target_id, target_PG._ID)].sum(axis=1).to_frame() - - # get the undamaged quantity - qnt_undmg = qnt_tot - qnt_dmg - - # get the mapping based on source_dmg and source DS - dmg_map = source_DMG.index.values[source_DMG.loc[:, source_DS] > 0.0] - - # get the damage states exceeded by target_DS - exc_DS = target_DSG_DS_list[:np.where(target_DSG_DS_list == target_DS)[0][0]+1] - - # sum up the damage in the exceeded DSs + no damage - exc_dmg = self._DMG.loc[dmg_map, idx[target_id, target_PG._ID, exc_DS]].sum(axis=1).to_frame() - - exc_dmg = exc_dmg + qnt_undmg.loc[dmg_map] - - # save this damage to the target_DS and zero to lower DSs - for ds_i in exc_DS: - self._DMG.loc[dmg_map, (target_id, target_PG._ID, ds_i)] = 0.0 - self._DMG.loc[dmg_map, (target_id, target_PG._ID, target_DS)] = exc_dmg.iloc[:,0].values - - else: - log_msg(f'Unkown damage logic: {DL["type"]}') - - # collapses are indicated by the ultimate DS in HAZUS - DMG_agg = self._DMG.groupby(level=2, axis=1).sum() - if '4_2' in DMG_agg.columns: - collapse_flag = DMG_agg['4_2']>0. - else: - collapse_flag = [False] * len(DMG_agg.index) - self._ID_dict.update({'collapse': - self._DMG[collapse_flag].index.values.astype(int)}) - # Note: Non-collapse IDs are not updated because we use the same - # procedure to estimate injuries (and potentially other decision vars) - # under collapse and non-collapse cases - - self._COL = pd.DataFrame( - np.zeros(self._AIM_in['general']['realizations']), - columns=['COL', ]) - self._COL.loc[collapse_flag, 'COL'] = 1 - - def calculate_losses(self): - """ - Characterize the consequences of damage in each random event realization. - - For the sake of efficiency, only the decision variables requested in - the input file are estimated. The following consequences are handled by - this method for a HAZUS assessment: - - Reconstruction time and cost - Get a cost and time estimate for each Damage State in each Performance - Group. For more information about estimating reconstruction cost and - time see _calc_repair_cost_and_time() methods. - - Injuries - The number of injuries are based on the probability of injuries of - various severity specified in the component data file. For more - information about estimating injuries _calc_non_collapse_injuries. - - """ - super(HAZUS_Assessment, self).calculate_losses() - DVs = self._AIM_in['decision_variables'] - - # reconstruction cost and time - if DVs['rec_cost'] or DVs['rec_time']: - # all damages are considered repairable in HAZUS - repairable_IDs = self._ID_dict['non-collapse'] - self._ID_dict.update({'repairable': repairable_IDs}) - self._ID_dict.update({'irreparable': []}) - - # reconstruction cost and time for repairable cases - log_msg('\tCalculating Reconstruction cost and time...') - DV_COST, DV_TIME = self._calc_repair_cost_and_time() - - if DVs['rec_cost']: - self._DV_dict.update({'rec_cost': DV_COST}) - - if DVs['rec_time']: - self._DV_dict.update({'rec_time': DV_TIME}) - - # injuries due to collapse - if DVs['injuries']: - - # injuries in non-collapsed cases - log_msg('\tCalculating Injuries in Non-Collapsed Cases...') - DV_INJ_dict = self._calc_non_collapse_injuries() - - self._DV_dict.update({'injuries': DV_INJ_dict}) - - def aggregate_results(self): - """ - - Returns - ------- - - """ - - log_msg(log_div) - log_msg('Aggregating results...') - - DVs = self._AIM_in['decision_variables'] - - MI_raw = [ - ('collapses', 'collapsed'), - ('highest damage state', 'S'), - ('highest damage state', 'NSA'), - ('highest damage state', 'NSD'), - ('reconstruction', 'cost impractical'), - ('reconstruction', 'cost'), - ] - - if DVs['rec_time']: - MI_raw += [ - #('reconstruction', 'time impractical?'), - ('reconstruction', 'time'), - ] - - if DVs['injuries']: - MI_raw += [ - ('inhabitants', ''), - ('injuries', 'sev1'), - ('injuries', 'sev2'), - ('injuries', 'sev3'), - ('injuries', 'sev4'), - ] - - if (DVs['injuries'] and - (self._AIM_in['general']['event_time'] != 'off')): - MI_raw += [ - ('event time', 'month'), - ('event time', 'weekday?'), - ('event time', 'hour') - ] - - ncID = self._ID_dict['non-collapse'] - colID = self._ID_dict['collapse'] - if DVs['rec_cost'] or DVs['rec_time']: - repID = self._ID_dict['repairable'] - irID = self._ID_dict['irreparable'] - - MI = pd.MultiIndex.from_tuples(MI_raw) - - SUMMARY = pd.DataFrame( - np.empty((self._AIM_in['general']['realizations'], len(MI))), - columns=MI) - SUMMARY[:] = np.NaN - - # event time (if needed) - if (DVs['injuries'] and - (self._AIM_in['general']['event_time'] != 'off')): - for prop in ['month', 'weekday?', 'hour']: - offset = 0 - if prop == 'month': - offset = 1 - SUMMARY.loc[:, ('event time', prop)] = \ - self._TIME.loc[:, prop] + offset - - # collapses - SUMMARY.loc[:, ('collapses', 'collapsed')] = self._COL.iloc[:, 0] - - # damage - # remove the ground failure FGs first - DMG = self._DMG.copy() - for FG_name in self._FG_dict.keys(): - if FG_name.startswith('GF'): - del DMG[self._FG_dict[FG_name]._ID] - - for comp_type in ['S', 'NSA', 'NSD']: - fg_list = [self._FG_dict[fg]._ID for fg in self._FG_dict.keys() if fg.startswith(comp_type)] - - if len(fg_list)>0: - - DMG_agg = DMG.loc[:, fg_list].groupby(level=['DSG_DS',], axis=1).sum() - - DMG_agg['DS'] = 0 - for c_i, col in enumerate(DMG_agg.columns): - if col != 'DS': - DMG_agg.loc[DMG_agg.loc[:,col] > 0.0, 'DS'] = int(col[0]) - - SUMMARY.loc[:, ('highest damage state', comp_type)] = DMG_agg['DS'] - - # reconstruction cost - if DVs['rec_cost']: - if self._hazard == 'HU' and ('PWS' in self._EDP_in) and ('PIH' in self._EDP_in): - # if running hurricane with combined wind and flood hazard - # individual losses - indiv_loss = self._DV_dict['rec_cost'].groupby(level=[0], axis=1).sum() - # loss weight from HAZUS HU (now just default coupled at - # the entire building level) - loss_weight = [] - for i, tag in enumerate(self._LC_in.keys()): - loss_weight.append(self._calc_loss_composition(self._LC_in[tag],indiv_loss.iloc[:,i])) - # combining losses - combined_loss = [] - for i, rlz in enumerate(zip(indiv_loss.iloc[:,0], indiv_loss.iloc[:,1])): - tmp1 = (loss_weight[0][i] * rlz[0]) / 100. - tmp2 = (loss_weight[1][i] * rlz[1]) / 100. - combined_loss.append(np.min([100., (np.sum(tmp1 + tmp2) - tmp1.T.dot(tmp2))* 100.])) - # convert to loss ratio - # combined - SUMMARY.loc[ncID, ('reconstruction', 'cost')] = [x / 100.0 for x in combined_loss] - # individual - self._DV_dict['rec_cost'] = self._DV_dict['rec_cost'] / 100.0 - else: - # convert to loss ratio - if self._hazard == 'HU': - self._DV_dict['rec_cost'] = self._DV_dict['rec_cost'] / 100.0 - SUMMARY.loc[ncID, ('reconstruction', 'cost')] = \ - self._DV_dict['rec_cost'].sum(axis=1) - - repl_cost = self._AIM_in['general']['replacement_cost'] - SUMMARY.loc[colID, ('reconstruction', 'cost')] = repl_cost - - SUMMARY.loc[:, ('reconstruction', 'cost impractical')] = 0 - repair_impractical_IDs = SUMMARY.loc[ncID, ('reconstruction', 'cost')] > repl_cost - SUMMARY.loc[repair_impractical_IDs, - ('reconstruction', 'cost impractical')] = 1 - SUMMARY.loc[repair_impractical_IDs, - ('reconstruction', 'cost')] = repl_cost - - # only keep the non-collapsed cases in the DVs - self._DV_dict['rec_cost'] = self._DV_dict['rec_cost'].loc[self._COL['COL'] == 0] - - # reconstruction time - if DVs['rec_time']: - SUMMARY.loc[ncID, ('reconstruction', 'time')] = \ - self._DV_dict['rec_time'].sum(axis=1) - - repl_time = self._AIM_in['general']['replacement_time'] - SUMMARY.loc[colID, ('reconstruction', 'time')] = repl_time - - SUMMARY.loc[repair_impractical_IDs, ('reconstruction', 'time')] = repl_time - - # only keep the non-collapsed cases in the DVs - self._DV_dict['rec_time'] = self._DV_dict['rec_time'].loc[self._COL['COL'] == 0] - - # injuries - if DVs['injuries']: - - # inhabitants - SUMMARY.loc[:, ('inhabitants', '')] = self._POP.sum(axis=1) - - for sev_id in range(4): - # both collapse and non-collapse cases - sev_tag = 'sev{}'.format(sev_id+1) - SUMMARY.loc[ncID, ('injuries', sev_tag)] = \ - self._DV_dict['injuries'][sev_id].sum(axis=1) - - # keep only the non-collapse damage data - self._DMG = self._DMG.loc[self._COL['COL'] == 0] - - self._ID_dict['non-collapse'] = self._DV_dict['rec_cost'].index.values.astype(int) - - self._SUMMARY = SUMMARY.dropna(axis=1, how='all') - - def save_outputs(self, *args, **kwargs): - """ - - Returns - ------- - - """ - super(HAZUS_Assessment, self).save_outputs(*args, **kwargs) - - def _create_correlation_matrix(self, rho_target, c_target=-1, - include_CSG=False, - include_DSG=False, include_DS=False): - """ - - Parameters - ---------- - rho_target - c_target - include_CSG - include_DSG - include_DS - - Returns - ------- - - """ - - # set the correlation structure - rho_FG, rho_PG, rho_LOC, rho_DIR, rho_CSG, rho_DS = np.zeros(6) - - if rho_target in ['FG', 'PG', 'DIR', 'LOC', 'CSG', 'ATC', 'DS']: - rho_DS = 1.0 - if rho_target in ['FG', 'PG', 'DIR', 'LOC', 'CSG']: - rho_CSG = 1.0 - if rho_target in ['FG', 'PG', 'DIR']: - rho_DIR = 1.0 - if rho_target in ['FG', 'PG', 'LOC']: - rho_LOC = 1.0 - if rho_target in ['FG', 'PG']: - rho_PG = 1.0 - if rho_target == 'FG': - rho_FG = 1.0 - - L_D_list = [] - dims = [] - DS_list = [] - ATC_rho = [] - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - if ((c_target == -1) or (c_id == c_target)): - c_L_D_list = [] - c_DS_list = [] - ATC_rho.append(comp['correlation']) - - if include_DSG: - DS_count = 0 - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - if include_DS: - DS_count += len(DSG['DS_set']) - else: - DS_count += 1 - else: - DS_count = 1 - - #for loc in comp['locations']: - # if include_CSG: - # u_dirs = comp['directions'] - # else: - # u_dirs = np.unique(comp['directions']) - # c_L_D_list.append([]) - # for dir_ in u_dirs: - # c_DS_list.append(DS_count) - # for ds_i in range(DS_count): - # c_L_D_list[-1].append(dir_) - - for loc_u in np.unique(comp['locations']): - c_L_D_list.append([]) - for loc, dir, csg_weights in zip(comp['locations'], - comp['directions'], - comp['csg_weights']): - if loc == loc_u: - if include_CSG: - csg_list = csg_weights - else: - csg_list = [1.0,] - for csg_ in csg_list: - c_DS_list.append(DS_count) - for ds_i in range(DS_count): - c_L_D_list[-1].append(dir) - - c_dims = sum([len(loc) for loc in c_L_D_list]) - dims.append(c_dims) - L_D_list.append(c_L_D_list) - DS_list.append(c_DS_list) - - rho = np.ones((sum(dims), sum(dims))) * rho_FG - - f_pos_id = 0 - for c_id, (c_L_D_list, c_dims, c_DS_list) in enumerate( - zip(L_D_list, dims, DS_list)): - c_rho = np.ones((c_dims, c_dims)) * rho_PG - - # dependencies btw directions - if rho_DIR != 0: - c_pos_id = 0 - for loc_D_list in c_L_D_list: - l_dim = len(loc_D_list) - c_rho[c_pos_id:c_pos_id + l_dim, - c_pos_id:c_pos_id + l_dim] = rho_DIR - c_pos_id = c_pos_id + l_dim - - # dependencies btw locations - if rho_LOC != 0: - flat_dirs = [] - [[flat_dirs.append(dir_i) for dir_i in dirs] for dirs in - c_L_D_list] - flat_dirs = np.array(flat_dirs) - for u_dir in np.unique(flat_dirs): - dir_ids = np.where(flat_dirs == u_dir)[0] - for i in dir_ids: - for j in dir_ids: - c_rho[i, j] = rho_LOC - - if ((rho_CSG != 0) or (rho_target == 'ATC')): - c_pos_id = 0 - if rho_target == 'ATC': - rho_to_use = float(ATC_rho[c_id]) - else: - rho_to_use = rho_CSG - for loc_D_list in c_L_D_list: - flat_dirs = np.array(loc_D_list) - for u_dir in np.unique(flat_dirs): - dir_ids = np.where(flat_dirs == u_dir)[0] - for i in dir_ids: - for j in dir_ids: - c_rho[c_pos_id + i, c_pos_id + j] = rho_to_use - c_pos_id = c_pos_id + len(loc_D_list) - - if rho_DS != 0: - c_pos_id = 0 - for l_dim in c_DS_list: - c_rho[c_pos_id:c_pos_id + l_dim, - c_pos_id:c_pos_id + l_dim] = rho_DS - c_pos_id = c_pos_id + l_dim - - rho[f_pos_id:f_pos_id + c_dims, - f_pos_id:f_pos_id + c_dims] = c_rho - f_pos_id = f_pos_id + c_dims - - np.fill_diagonal(rho, 1.0) - - return rho - - def _create_RV_quantities(self, rho_qnt): - """ - - Parameters - ---------- - rho_qnt - - Returns - ------- - - """ - - q_theta, q_sig, q_tags, q_dist = [np.array([]) for i in range(4)] - - # collect the parameters for each quantity dimension - s_fg_keys = sorted(self._FG_in.keys()) - for c_id in s_fg_keys: - comp = self._FG_in[c_id] - - u_dirs = np.unique(comp['directions']) - - #dir_weights = comp['dir_weights'] - #theta_list = [] - #[[theta_list.append(qnt * dw) - # for dw in dir_weights] for qnt in comp['quantities']] - - theta_list = comp['quantities'] - q_theta = np.append(q_theta, theta_list) - - dist_list = comp['distribution_kind'] - q_dist = np.append(q_dist, dist_list) - - cov_list = comp['cov'] - for theta, dk, cov in list(zip(theta_list, dist_list, cov_list)): - if dk == 'normal': - q_sig = np.append(q_sig, [cov*theta,]) - else: - q_sig = np.append(q_sig, [cov, ]) - - q_tags = np.append(q_tags, [f'{c_id}-QNT-{s_i}-{d_i}' for s_i, d_i - in list(zip(comp['locations'], - comp['directions']))]) - - rho = self._create_correlation_matrix(rho_qnt) - - if not np.all(q_dist=='N/A'): - # remove the unnecessary fields - to_remove = np.where(q_dist=='N/A')[0] - rho = np.delete(rho, to_remove, axis=0) - rho = np.delete(rho, to_remove, axis=1) - - q_theta, q_sig, q_dist, q_tags = [ - np.delete(q_vals, to_remove) for q_vals in [ - q_theta, q_sig, q_dist, q_tags]] - - dims = len(q_theta) - - # add lower limits to ensure only positive quantities - # zero is probably too low, and it might make sense to introduce upper - # limits as well - tr_lower = [0. for d in range(dims)] - tr_upper = [None for d in range(dims)] - - # Create the RVs - for q, (q_tag, theta_q, sig_q, dist_q) in enumerate( - zip(q_tags, q_theta, q_sig, q_dist)): - self._RV_reg.add_RV(RandomVariable( - name=q_tag, distribution=dist_q, - theta=[theta_q, sig_q], - truncation_limits=[tr_lower[q], tr_upper[q]] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'QNT_set', list(self._RV_reg.RVs(q_tags).values()), rho)) - - # q_COV = np.outer(q_sig, q_sig) * rho - # - # # to avoid truncations affecting other dimensions when rho_QNT is large, - # # assign a post-truncation correlation structure - # corr_ref = 'post' - # - # quantity_RV = RandomVariable(ID=100, - # dimension_tags=q_tag, - # distribution_kind=q_dist, - # theta=q_theta, - # COV=q_COV, - # truncation_limits=[tr_lower, tr_upper], - # corr_ref=corr_ref) - else: - q_tags = None - - return q_tags - - def _create_RV_fragilities(self, c_id, comp, rho_fr): - """ - - Parameters - ---------- - c_id - comp - rho_fr - - Returns - ------- - - """ - - # prepare the basic multivariate distribution data for one component subgroup considering all damage states - d_theta, d_sig, d_tags, d_distr_kind = [np.array([]) for i in range(4)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for d_id in s_dsg_keys: - DSG = comp['DSG_set'][d_id] - d_theta = np.append(d_theta, DSG['theta']) - d_sig = np.append(d_sig, DSG['sig']) - d_tags = np.append(d_tags, f"FF-{comp['ID']}-{d_id}") - d_distr_kind = np.append(d_distr_kind, DSG['distribution_kind']) - dims = len(d_theta) - - # get the total number of random variables for this fragility group - # TODO: add the possibility of multiple locations and directions - #rv_count = len(comp['locations']) * len(comp['directions']) * dims - rv_count = sum([len(csg_w) for csg_w in comp['csg_weights']]) * dims - - # create the (empty) input arrays for the RV - c_theta = np.zeros(rv_count) - c_tags = np.empty(rv_count, dtype=object) - c_sig = np.zeros(rv_count) - c_distr_kind = np.empty(rv_count, dtype=object) - - pos_id = 0 - #for l_id in comp['locations']: - # # for each location-direction pair) - # for d_id, __ in enumerate(comp['directions']): - # # for each component-subgroup - # c_theta[pos_id:pos_id + dims] = d_theta - # c_sig[pos_id:pos_id + dims] = d_sig - # c_tags[pos_id:pos_id + dims] = [ - # t + '-LOC-{}-CSG-{}'.format(l_id, d_id) for t in d_tags] - # c_distr_kind[pos_id:pos_id + dims] = d_distr_kind - # pos_id += dims - - for l_id, d_id, csg_list in zip(comp['locations'], comp['directions'], - comp['csg_weights']): - # for each location-direction pair) - for csg_id, __ in enumerate(csg_list): - # for each component-subgroup - c_theta[pos_id:pos_id + dims] = d_theta - c_sig[pos_id:pos_id + dims] = d_sig - c_tags[pos_id:pos_id + dims] = [ - t + '-LOC-{}-DIR-{}-CSG-{}'.format(l_id, d_id, csg_id) - for t in d_tags] - c_distr_kind[pos_id:pos_id + dims] = d_distr_kind - pos_id += dims - - # create the covariance matrix - #c_rho = self._create_correlation_matrix(rho_fr, c_target=c_id, - # include_DSG=True, - # include_CSG=True) - c_rho = np.ones((rv_count, rv_count)) - - if c_tags.size > 0: - - # Create the RVs - for c, (c_tag, sig_c, theta_c, dkind_c) in enumerate( - zip(c_tags, c_sig, c_theta, c_distr_kind)): - self._RV_reg.add_RV(RandomVariable( - name=c_tag, distribution=dkind_c, - theta=[theta_c, sig_c] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - f'FF_set_{c_id}', list(self._RV_reg.RVs(c_tags).values()), - c_rho)) - - # c_COV = np.outer(c_sig, c_sig) * c_rho - # - # fragility_RV = RandomVariable(ID=300 + c_id, - # dimension_tags=c_tags, - # distribution_kind=c_distr_kind, - # theta=c_theta, - # COV=c_COV) - else: - c_tags = None - - return c_tags - - def _create_RV_damage_states(self): - - d_tags, d_theta = [[] for i in range(2)] - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - if DSG['DS_set_kind'] == 'mutually exclusive': - - s_ds_keys = sorted(DSG['DS_set'].keys()) - DS_set = DSG['DS_set'] - DS_weights = [DS_set[ds_i]['weight'] for ds_i in s_ds_keys] - - for loc, dir_, csg_list in zip(comp['locations'], - comp['directions'], - comp['csg_weights']): - - for csg_id, __ in enumerate(csg_list): - - d_tags.append(f'DSG-{comp["ID"]}-{dsg_i}-LOC-{loc}-' - f'DIR-{dir_}-CSG-{csg_id}') - d_theta.append(DS_weights) - - if len(d_tags) > 0: - - # Create the RVs - for d, (d_tag, theta_d) in enumerate(zip(d_tags, d_theta)): - self._RV_reg.add_RV(RandomVariable( - name=d_tag, distribution='multinomial', - theta=theta_d)) - - else: - d_tags = None - - return d_tags - - def _create_RV_repairs(self, rho_cost, rho_time, rho_cNt): - - # prepare the cost and time parts of the data separately - ct_sig, ct_tags, ct_dkind = [np.array([]) for i in range(3)] - for rho_target, name in zip([rho_cost, rho_time], ['cost', 'time']): - - f_sig, f_tag, f_dkind = [np.array([]) for i in range(3)] - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id, c_name in enumerate(s_fg_keys): - comp = self._FG_in[c_name] - - d_sig, d_tag, d_dkind = [np.array([]) for i in range(3)] - - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i in s_dsg_keys: - DSG = comp['DSG_set'][dsg_i] - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i in s_ds_keys: - DS = DSG['DS_set'][ds_i] - if ((f'repair_{name}' in DS.keys()) and - (DS[f'repair_{name}']['distribution_kind'] is not None)): - data = DS[f'repair_{name}'] - d_sig = np.append(d_sig, data['cov']) - d_dkind = np.append(d_dkind, - data['distribution_kind']) - else: - d_sig = np.append(d_sig, 0.0001) - d_dkind = np.append(d_dkind, None) - - d_tag = np.append( - d_tag, f'REP-{comp["ID"]}-{dsg_i}-{ds_i}-{name}') - #comp['ID'] + '-' + str( - # dsg_i) + '-' + str( - # ds_i) + '-{}'.format(name)) - - for loc, dir_ in zip(comp['locations'], comp['directions']): - f_sig = np.append(f_sig, d_sig) - f_dkind = np.append(f_dkind, d_dkind) - f_tag = np.append( - f_tag, [t + f'-LOC-{loc}-DIR-{dir_}' for t in d_tag]) - - ct_sig = np.append(ct_sig, f_sig) - ct_tags = np.append(ct_tags, f_tag) - ct_dkind = np.append(ct_dkind, f_dkind) - - rho_c = self._create_correlation_matrix(rho_cost, c_target=-1, - include_DSG=True, - include_DS=True) - rho_t = self._create_correlation_matrix(rho_time, c_target=-1, - include_DSG=True, - include_DS=True) - - dims = len(ct_tags) - ct_rho = np.zeros((dims, dims)) - - dims = dims // 2 - if rho_cNt == False: - ct_rho[:dims, :dims] = rho_c - ct_rho[dims:, dims:] = rho_t - else: - # In the special case of mixing perfect correlation between - # locations and directions, taking the envelope is not the - # appropriate solution. Instead, the LOC & DIR -> PG approach is - # used. - if (((rho_cost == 'LOC') and (rho_time =='DIR')) or - ((rho_cost == 'DIR') and (rho_time == 'LOC'))): - rho_ct = self._create_correlation_matrix('PG', c_target=-1, - include_DSG=True, - include_DS=True) - else: - # We use the envelope in every other case. - rho_ct = np.maximum(rho_c, rho_t) - - ct_rho[:dims, :dims] = rho_ct - ct_rho[dims:, dims:] = rho_ct - - # apply the same blocks to the off-diagonal positions - ct_rho[:dims, dims:] = rho_ct - ct_rho[dims:, :dims] = rho_ct - - # now remove the unnecessary fields - if not np.all(ct_dkind == None): - - to_remove = np.where(ct_dkind == None)[0] - ct_rho = np.delete(ct_rho, to_remove, axis=0) - ct_rho = np.delete(ct_rho, to_remove, axis=1) - - ct_dkind, ct_sig, ct_tags = [np.delete(ct_vals, to_remove) - for ct_vals in [ct_dkind, ct_sig, ct_tags]] - - # Create the RVs - for ct, (ct_tag, sig_ct, dkind_ct) in enumerate( - zip(ct_tags, ct_sig, ct_dkind)): - self._RV_reg.add_RV(RandomVariable( - name=ct_tag, distribution=dkind_ct, - theta=[1.0, sig_ct], - truncation_limits=[0., None] - )) - - self._RV_reg.add_RV_set(RandomVariableSet( - 'DV_REP_set', list(self._RV_reg.RVs(ct_tags).values()), ct_rho)) - - # ct_COV = np.outer(ct_sig, ct_sig) * ct_rho - # - # repair_RV = RandomVariable(ID=401, - # dimension_tags=ct_tags, - # distribution_kind=ct_dkind, - # theta=np.ones(len(ct_sig)), - # COV=ct_COV, - # corr_ref='post', - # truncation_limits=[np.zeros(len(ct_sig)), - # None]) - - else: - ct_tags = None - - return ct_tags - - def _create_fragility_groups(self): - - RVd = self._RV_dict - DVs = self._AIM_in['decision_variables'] - - # use the building replacement cost to calculate the absolute - # reconstruction cost for component groups - repl_cost = self._AIM_in['general']['replacement_cost'] - - # create a list for the fragility groups - FG_dict = dict() - - s_fg_keys = sorted(self._FG_in.keys()) - for c_id in s_fg_keys: - log_msg('\t{}...'.format(c_id)) - comp = self._FG_in[c_id] - - FG_ID = len(FG_dict.keys()) + 1 - - # create a list for the performance groups - performance_groups = [] - - # one group for each of the stories prescribed by the user - PG_locations = comp['locations'] - PG_directions = comp['directions'] - PG_csg_lists = comp['csg_weights'] - PG_dists = comp['distribution_kind'] - PG_qnts = comp['quantities'] - for loc, dir_, csg_list, dist, qnt, in zip( - PG_locations, PG_directions, PG_csg_lists, PG_dists, PG_qnts): - PG_ID = 10000 * FG_ID + 10 * loc + dir_ - - # get the quantity - if dist == 'N/A': - QNT = qnt - else: - QNT = self._QNT_dict[f'{c_id}-QNT-{loc}-{dir_}'] - # QNT = RandomVariableSubset(RVd['QNT'], - # tags=[f'{c_id}-QNT-{loc}-{dir_}', ]) - - # create the damage objects - # consequences are calculated on a performance group level - - # create a list for the damage state groups and their tags - DSG_list = [] - d_tags = [] - s_dsg_keys = sorted(comp['DSG_set'].keys()) - for dsg_i, DSG_ID in enumerate(s_dsg_keys): - DSG = comp['DSG_set'][DSG_ID] - d_tags.append('FF-' + c_id + '-' + DSG_ID) - - # create a list for the damage states - DS_set = [] - - s_ds_keys = sorted(DSG['DS_set'].keys()) - for ds_i, DS_ID in enumerate(s_ds_keys): - DS = DSG['DS_set'][DS_ID] - - # create the consequence functions - # note: consequences in HAZUS are conditioned on - # damage with no added uncertainty - - if DVs['rec_cost'] and ('repair_cost' in DS.keys()): - data = DS['repair_cost'] - data_scaled = deepcopy(data) - data_scaled['medians'] = np.array(data_scaled['medians']) - data_scaled['medians'] *= repl_cost - - if len(data['medians']) > 1: - f_median = prep_bounded_multilinear_median_DV( - **{k: data_scaled.get(k, None) for k in - ('medians', 'quantities')}) - else: - f_median = prep_constant_median_DV( - data_scaled['medians'][0]) - - if data['distribution_kind'] is not None: - - cf_tag = 'REP-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-cost' + f'-LOC-{loc}-DIR-{dir_}' - - CF_RV = self._DV_REP_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_REP'], - # tags=cf_tag) - else: - CF_RV = None - - CF_cost = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_cost = None - - if DVs['rec_time'] and ('repair_time' in DS.keys()): - data = DS['repair_time'] - - if len(data['medians']) > 1: - f_median = prep_bounded_multilinear_median_DV( - **{k: data.get(k, None) for k in - ('medians', 'quantities')}) - else: - f_median = prep_constant_median_DV( - data['medians'][0]) - - if data['distribution_kind'] is not None: - - cf_tag = 'REP-' + c_id + '-' + DSG_ID + '-' + DS_ID + \ - '-time' + f'-LOC-{loc}-DIR-{dir_}' - - CF_RV = self._DV_REP_dict[cf_tag] - # CF_RV = RandomVariableSubset(RVd['DV_REP'], - # tags=cf_tag) - else: - CF_RV = None - - CF_time = ConsequenceFunction(DV_median=f_median, - DV_distribution=CF_RV) - else: - CF_time = None - - # note: no red tag in HAZUS assessments - - if (DVs['injuries']) and ('injuries' in DS.keys()): - CF_inj_set = [] - for inj_i, theta in enumerate( - DS['injuries']): - if theta > 0.: - f_median = prep_constant_median_DV( - theta) - CF_inj_set.append(ConsequenceFunction( - DV_median=f_median, - DV_distribution=None)) - else: - CF_inj_set.append(None) - else: - CF_inj_set = [None, ] - - DS_set.append(DamageState(ID=ds_i + 1, - description=DS[ - 'description'], - weight=DS['weight'], - repair_cost_CF=CF_cost, - reconstruction_time_CF=CF_time, - injuries_CF_set=CF_inj_set - )) - - # add the DSG to the list - DSG_list.append(DamageStateGroup(ID=dsg_i + 1, - DS_set=DS_set, - DS_set_kind=DSG[ - 'DS_set_kind'] - )) - - # create the fragility functions - FF_set = [] - #CSG_this = np.where(comp['directions'] == dir_)[0] - #PG_weights = np.asarray(comp['csg_weights'])[CSG_this] - # normalize the weights - #PG_weights /= sum(PG_weights) - for csg_id, __ in enumerate(csg_list): - # assign the appropriate random variable to the fragility - # function - ff_tags = [t + f'-LOC-{loc}-DIR-{dir_}-CSG-{csg_id}' - for t in d_tags] - EDP_limit = [self._FF_dict[ff_tag] for ff_tag in ff_tags] - # EDP_limit = RandomVariableSubset(RVd['FR-' + c_id], - # tags=ff_tags) - FF_set.append(FragilityFunction(EDP_limit)) - - # create the performance group - PG = PerformanceGroup(ID=PG_ID, - location=loc, - quantity=QNT, - fragility_functions=FF_set, - DSG_set=DSG_list, - csg_weights=csg_list, - direction=dir_ - ) - performance_groups.append(PG) - - # create the fragility group - FG = FragilityGroup(ID=FG_ID, - #kind=comp['kind'], - demand_type=comp['demand_type'], - performance_groups=performance_groups, - directional=comp['directional'], - correlation=comp['correlation'], - demand_location_offset=comp['offset'], - incomplete=comp['incomplete'], - name=str(FG_ID) + ' - ' + comp['ID'], - description=comp['description'], - unit=comp['unit'] - ) - - FG_dict.update({comp['ID']: FG}) - - return FG_dict - - def _sample_event_time(self): - - sample_count = self._AIM_in['general']['realizations'] - - # month - uniform distribution over [0,11] - month = np.random.randint(0, 12, size=sample_count) - - # weekday - binomial with p=5/7 - weekday = np.random.binomial(1, 5. / 7., size=sample_count) - - # hour - uniform distribution over [0,23] - hour = np.random.randint(0, 24, size=sample_count) - - data = pd.DataFrame(data={'month' : month, - 'weekday?': weekday, - 'hour' : hour}, - dtype=int) - - return data - - def _get_population(self): - """ - Use the population characteristics to generate random population samples. - - Returns - ------- - - """ - POPin = self._POP_in - TIME = self._TIME - - POP = pd.DataFrame( - np.ones((len(TIME.index), len(POPin['peak']))) * POPin['peak'], - columns=['LOC' + str(loc + 1) - for loc in range(len(POPin['peak']))]) - - # if there is a temporal population model available... - if 'weekday' in POPin.keys(): - weekdays = TIME[TIME['weekday?'] == 1].index - weekends = TIME[~TIME.index.isin(weekdays)].index - - for col in POP.columns.values: - POP.loc[weekdays, col] = ( - POP.loc[weekdays, col] * - np.array(POPin['weekday']['daily'])[ - TIME.loc[weekdays, 'hour'].values.astype(int)] * - np.array(POPin['weekday']['monthly'])[ - TIME.loc[weekdays, 'month'].values.astype(int)]) - - POP.loc[weekends, col] = ( - POP.loc[weekends, col] * - np.array(POPin['weekend']['daily'])[ - TIME.loc[weekends, 'hour'].values.astype(int)] * - np.array(POPin['weekend']['monthly'])[ - TIME.loc[weekends, 'month'].values.astype(int)]) - - return POP - - def _calc_damage(self): - - ncID = self._ID_dict['non-collapse'] - NC_samples = len(ncID) - - FG_dmg_list = [] - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - log_msg('\t\t{}...'.format(fg_id)) - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = [] - for DSG in PG_set[0]._DSG_set: - for DS in DSG._DS_set: - DS_list.append(str(DSG._ID) + '_' + str(DS._ID)) - d_count = len(DS_list) - - MI = pd.MultiIndex.from_product([[FG._ID, ], - [pg._ID for pg in PG_set], - DS_list], - names=['FG', 'PG', 'DSG_DS']) - - FG_damages = pd.DataFrame(np.zeros((NC_samples, len(MI))), - columns=MI, - index=ncID) - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - if isinstance(PG._quantity, RandomVariable): - PG_qnt = PG._quantity.samples_DF.loc[ncID] - else: - PG_qnt = pd.Series(np.ones(NC_samples) * PG._quantity, - index=ncID) - - # get the corresponding demands - if not FG._directional: - demand_ID_list = [] - - for demand_ID in self._EDP_dict.keys(): - demand_kind = demand_ID.split('-')[1] - if demand_kind == FG._demand_type: - demand_data = demand_ID.split('-') - if int(demand_data[3]) == PG._location + FG._demand_location_offset: - demand_ID_list.append(demand_ID) - - EDP_samples = self._EDP_dict[demand_ID_list[0]].samples_DF.loc[ncID] - if len(demand_ID_list)>1: - for demand_ID in demand_ID_list[1:]: - new_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - EDP_samples = np.maximum(new_samples.values, - EDP_samples.values) - - else: - demand_ID = ('EDP-' + FG._demand_type + - '-LOC-' + str(PG._location + FG._demand_location_offset) + - '-DIR-' + str(PG._direction)) - - if demand_ID in self._EDP_dict.keys(): - EDP_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - else: - # If the required demand is not available, then we are most - # likely analyzing a 3D structure using results from a 2D - # simulation. The best thing we can do in that particular - # case is to use the EDP from the 1 direction for all other - # directions. - demand_ID = ('EDP-' + FG._demand_type + - '-LOC-' + str(PG._location + FG._demand_location_offset) + '-DIR-1') - EDP_samples = self._EDP_dict[demand_ID].samples_DF.loc[ncID] - - csg_w_list = np.array(PG._csg_weights) - for csg_i, csg_w in enumerate(csg_w_list): - DSG_df = PG._FF_set[csg_i].DSG_given_EDP(EDP_samples) - - for DSG in PG._DSG_set: - in_this_DSG = DSG_df[DSG_df.values == DSG._ID].index - if DSG._DS_set_kind == 'single': - DS = DSG._DS_set[0] - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - FG_damages.loc[in_this_DSG, - (FG._ID, PG_ID, DS_tag)] += csg_w - elif DSG._DS_set_kind == 'mutually exclusive': - mut_ex_id = f'DSG-{fg_id}-DSG-{DSG._ID}-' \ - f'LOC-{PG._location}-' \ - f'DIR-{PG._direction}-CSG-{csg_i}' - DS_df = self._DSG_dict[mut_ex_id].samples_DF.loc[ - in_this_DSG] - - # DS_weights = [DS._weight for DS in DSG._DS_set] - # DS_RV = RandomVariable( - # ID=-1, dimension_tags=['me_DS', ], - # distribution_kind='multinomial', - # p_set=DS_weights) - # DS_df = DS_RV.sample_distribution( - # len(in_this_DSG)) + 1 - - for DS in DSG._DS_set: - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - in_this_DS = DS_df[DS_df.values == DS._ID-1].index - FG_damages.loc[in_this_DS, - (FG._ID, PG_ID, DS_tag)] += csg_w - elif DSG._DS_set_kind == 'simultaneous': - DS_weights = [DS._weight for DS in DSG._DS_set] - DS_df = np.random.uniform( - size=(len(in_this_DSG), len(DS_weights))) - which_DS = DS_df < DS_weights - any_DS = np.any(which_DS, axis=1) - no_DS_ids = np.where(any_DS == False)[0] - - while len(no_DS_ids) > 0: - DS_df_add = np.random.uniform( - size=(len(no_DS_ids), len(DS_weights))) - which_DS_add = DS_df_add < DS_weights - which_DS[no_DS_ids] = which_DS_add - - any_DS = np.any(which_DS_add, axis=1) - no_DS_ids = no_DS_ids[ - np.where(any_DS == False)[0]] - - for ds_i, DS in enumerate(DSG._DS_set): - DS_tag = str(DSG._ID) + '_' + str(DS._ID) - in_this_DS = which_DS[:, ds_i] - FG_damages.loc[in_this_DSG[in_this_DS], ( - FG._ID, PG_ID, DS_tag)] += csg_w - - else: - raise ValueError( - "Unknown damage state type: {}".format( - DSG._DS_set_kind) - ) - - FG_damages.iloc[:, pg_i * d_count:(pg_i + 1) * d_count] = \ - FG_damages.iloc[:, pg_i * d_count:(pg_i + 1) * d_count].values * PG_qnt.values.reshape(-1, *[1]) - - - FG_dmg_list.append(FG_damages) - - DMG = pd.concat(FG_dmg_list, axis=1) - - DMG.index = ncID - - # sort the columns to enable index slicing later - DMG = DMG.sort_index(axis=1, ascending=True) - - return DMG - - def _calc_repair_cost_and_time(self): - - idx = pd.IndexSlice - DVs = self._AIM_in['decision_variables'] - - DMG_by_FG_and_DS = self._DMG.groupby(level=[0, 2], axis=1).sum() - - repID = self._ID_dict['repairable'] - DV_COST = self._DMG.loc[repID, :].copy() - DV_TIME = DV_COST.copy() - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - log_msg('\t\t{}...'.format(fg_id)) - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - for d_i, d_tag in enumerate(DS_list): - - #dsg_i = int(d_tag[0]) - 1 - #ds_i = int(d_tag[-1]) - 1 - - dsg_i = int(d_tag.split('_')[0]) - 1 - ds_i = int(d_tag.split('_')[-1]) - 1 - - TOT_qnt = DMG_by_FG_and_DS.loc[repID, (FG._ID, d_tag)] - - # check what can we expect later - # pull the DS from the first PG - DS_test = PG_set[0]._DSG_set[dsg_i]._DS_set[ds_i] - - if DVs['rec_cost']: - COST_samples = DS_test.unit_repair_cost(quantity=TOT_qnt) - - if COST_samples is None: - # there are no costs assigned to this DS - DV_COST.drop(DV_COST.loc[:, idx[FG._ID, :, d_tag]].columns, axis=1, inplace=True) - - elif isinstance(COST_samples, pd.Series): - # the assigned costs are random numbers - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - COST_samples = DS.unit_repair_cost(quantity=TOT_qnt).values - - DV_COST.loc[:,(FG._ID, PG_ID, d_tag)] = DV_COST.loc[:, (FG._ID, PG_ID, d_tag)].values * COST_samples - - else: - # the assigned costs are identical for all realizations - DV_COST.loc[:, idx[FG._ID, :, d_tag]] *= COST_samples - - if DVs['rec_time']: - TIME_samples = DS_test.unit_reconstruction_time(quantity=TOT_qnt) - - if TIME_samples is None: - # there are no repair times assigned to this DS - DV_TIME.drop(DV_TIME.loc[:, idx[FG._ID, :, d_tag]].columns, axis=1, inplace=True) - - elif isinstance(TIME_samples, pd.Series): - # the assigned repair times are random numbers - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - TIME_samples = DS.unit_reconstruction_time(quantity=TOT_qnt).values - - DV_TIME.loc[:, (FG._ID, PG_ID, d_tag)] = DV_TIME.loc[:, (FG._ID, PG_ID, d_tag)].values * TIME_samples - - else: - # the assigned repair times are identical for all realizations - DV_TIME.loc[:, idx[FG._ID, :, d_tag]] *= TIME_samples - - # sort the columns to enable index slicing later - if DVs['rec_cost']: - DV_COST = DV_COST.sort_index(axis=1, ascending=True) - else: - DV_COST = None - if DVs['rec_time']: - DV_TIME = DV_TIME.sort_index(axis=1, ascending=True) - else: - DV_TIME = None - - return DV_COST, DV_TIME - - def _calc_non_collapse_injuries(self): - - idx = pd.IndexSlice - - ncID = self._ID_dict['non-collapse'] - P_affected = self._POP.loc[ncID] - - NC_samples = len(ncID) - DV_INJ_dict = dict( - [(i, self._DMG.loc[ncID, :].copy()) for i in range(self._inj_lvls)] - ) - - s_fg_keys = sorted(self._FG_dict.keys()) - for fg_id in s_fg_keys: - log_msg('\t\t{}...'.format(fg_id)) - FG = self._FG_dict[fg_id] - - PG_set = FG._performance_groups - - DS_list = self._DMG.loc[:, idx[FG._ID, PG_set[0]._ID, :]].columns - DS_list = DS_list.levels[2][DS_list.codes[2]].values - - for i in range(self._inj_lvls): - - for d_i, d_tag in enumerate(DS_list): - #dsg_i = int(d_tag[0]) - 1 - #ds_i = int(d_tag[-1]) - 1 - - dsg_i = int(d_tag.split('_')[0]) - 1 - ds_i = int(d_tag.split('_')[-1]) - 1 - - # check what can we expect later - # pull the DS from the first PG - DS_test = PG_set[0]._DSG_set[dsg_i]._DS_set[ds_i] - INJ_samples = DS_test.unit_injuries(severity_level=i, - sample_size=NC_samples) - - if INJ_samples is None: - # there are no injuries assigned to this DS - DV_INJ_dict[i].drop(DV_INJ_dict[i].loc[:, idx[FG._ID, :, d_tag]].columns, axis=1, inplace=True) - continue - - elif isinstance(INJ_samples, pd.Series): - # the assigned injuries are random numbers - rnd_inj = True - - else: - # the assigned injuries are identical for all realizations - rnd_inj = False - - for pg_i, PG in enumerate(PG_set): - - PG_ID = PG._ID - DS = PG._DSG_set[dsg_i]._DS_set[ds_i] - - # get injury samples if needed - if rnd_inj: - INJ_samples = DS.unit_injuries( - severity_level=i, sample_size=NC_samples).values - - P_aff_i = P_affected.loc[:,'LOC{}'.format(PG._location)].values * INJ_samples - DV_INJ_dict[i].loc[:, (FG._ID, PG_ID, d_tag)] = DV_INJ_dict[i].loc[:, (FG._ID, PG_ID, d_tag)].values * P_aff_i - - # remove the useless columns from DV_INJ - for i in range(self._inj_lvls): - DV_INJ = DV_INJ_dict[i] - DV_INJ_dict[i] = DV_INJ.loc[:, (DV_INJ != 0.0).any(axis=0)] - - # sort the columns to enable index slicing later - for i in range(self._inj_lvls): - DV_INJ_dict[i] = DV_INJ_dict[i].sort_index(axis=1, ascending=True) - - return DV_INJ_dict - - def _calc_loss_composition(self, comb_data, loss_ratio): - """ - _calc_loss_composition: this method processes the HAZUS loss ratio - combination rules given a total loss ratio, and returns a list of - loss compositions of 7 different building subassemblies. - Input: - comb_data: a dict of HAZUS loss ratio combination rules - loss_ratio: a float of total loss ratio - Output: - loss_weight: a list of loss compositions - """ - - comb_rule = comb_data['LossRatio'] - ref_ratio = [] - ref_comp = [] - for level in comb_rule: - ref_ratio.append(level['Total']) - ref_comp.append(level['Composition']) - ref_comp = np.array(ref_comp) - res_comp = np.empty(shape = (len(loss_ratio), ref_comp.shape[1])) - for assm in range(ref_comp.shape[1]): - res_comp[:, assm] = np.interp(loss_ratio, ref_ratio, - ref_comp[:, assm].tolist()) - - return res_comp diff --git a/pelicun/db.py b/pelicun/db.py index 84522b19a..ccafaba40 100644 --- a/pelicun/db.py +++ b/pelicun/db.py @@ -58,1795 +58,1967 @@ """ from .base import * +from .uq import fit_distribution_to_percentiles from pathlib import Path +import re import json -import xml.etree.ElementTree as ET -import shutil -def dict_generator(indict, pre=None): +def parse_DS_Hierarchy(DSH): """ - Lists all branches of a tree defined by a dictionary. + Parses the FEMA P58 DS hierarchy into a set of arrays. + """ + if 'Seq' == DSH[:3]: + DSH = DSH[4:-1] - The dictionary can have nested dictionaries and lists. When encountering a - list, its elements are returned as separate branches with each element's id - created as a combination of the parent key and #i where i stands for the - element number in the list. + DS_setup = [] - This method can process a json file and break it up into independent - branches. + while len(DSH) > 0: + if DSH[:2] == 'DS': + DS_setup.append(DSH[:3]) + DSH = DSH[4:] + elif DSH[:5] in ['MutEx', 'Simul']: + closing_pos = DSH.find(')') + subDSH = DSH[:closing_pos + 1] + DSH = DSH[closing_pos + 2:] - """ - pre = pre[:] if pre else [] - if isinstance(indict, dict): - for key, value in indict.items(): - if isinstance(value, dict): - for d in dict_generator(value, pre + [key]): - yield d - elif isinstance(value, list) or isinstance(value, tuple): - for v_id, v in enumerate(value): - for d in dict_generator(v, pre + [key + f'#{v_id}']): - yield d - else: - yield pre + [key, value] - else: - yield pre + [indict] + DS_setup.append([subDSH[:5]] + subDSH[6:-1].split(',')) + return DS_setup -def get_val_from_dict(indict, col): +def create_FEMA_P58_fragility_db(source_file, + target_data_file='fragility_DB_FEMA_P58_2nd.csv', + target_meta_file='fragility_DB_FEMA_P58_2nd.json'): """ - Gets the value from a branch of a dictionary. + Create a fragility parameter database based on the FEMA P58 data - The dictionary can have nested dictionaries and lists. When walking through - lists, #i in the branch data identifies the ith element of the list. + The method was developed to process v3.1.2 of the FragilityDatabase xls + that is provided with FEMA P58 2nd edition. - This method can be used to travel branches of a dictionary previously - defined by the dict_generator method above. + Parameters + ---------- + source_file: string + Path to the fragility database file. + target_data_file: string + Path where the fragility data file should be saved. A csv file is + expected. + target_meta_file: string + Path where the fragility metadata should be saved. A json file is + expected. """ - val = indict + # parse the source file + df = pd.read_excel(source_file, sheet_name='Summary', header=2, index_col=1, + true_values=["YES", "Yes", "yes"], + false_values=["NO", "No", "no"]) + + # remove the empty rows and columns + df.dropna(axis=0, how='all', inplace=True) + df.dropna(axis=1, how='all', inplace=True) + + # filter the columns that we need for the fragility database + cols_to_db = [ + "Demand Parameter (value):", + "Demand Parameter (unit):", + "Demand Location (use floor above? Yes/No)", + "Directional?", + "DS Hierarchy", + "DS 1, Probability", + "DS 1, Median Demand", + "DS 1, Total Dispersion (Beta)", + "DS 2, Probability", + "DS 2, Median Demand", + "DS 2, Total Dispersion (Beta)", + "DS 3, Probability", + "DS 3, Median Demand", + "DS 3, Total Dispersion (Beta)", + "DS 4, Probability", + "DS 4, Median Demand", + "DS 4, Total Dispersion (Beta)", + "DS 5, Probability", + "DS 5, Median Demand", + "DS 5, Total Dispersion (Beta)", + ] + + # filter the columns that we need for the metadata + cols_to_meta = [ + "Component Name", + "Component Description", + "Construction Quality:", + "Seismic Installation Conditions:", + "Comments / Notes", + "Author", + "Fragility Unit of Measure", + "Round to Integer Unit?", + "DS 1, Description", + "DS 1, Repair Description", + "DS 2, Description", + "DS 2, Repair Description", + "DS 3, Description", + "DS 3, Repair Description", + "DS 4, Description", + "DS 4, Repair Description", + "DS 5, Description", + "DS 5, Repair Description", + ] + + # remove special characters to make it easier to work with column names + str_map = { + ord(' '): "_", + ord(':'): None, + ord('('): None, + ord(')'): None, + ord('?'): None, + ord('/'): None, + ord(','): None, + } - for col_i in col: - if col_i != ' ': - if '#' in col_i: - col_name, col_id = col_i.split('#') - col_id = int(col_id) - if (col_name in val.keys()) and (col_id < len(val[col_name])): - val = val[col_name][int(col_id)] - else: - return None + df_db_source = df.loc[:, cols_to_db] + df_db_source.columns = [s.translate(str_map) for s in cols_to_db] + df_db_source.sort_index(inplace=True) + + df_meta = df.loc[:, cols_to_meta] + df_meta.columns = [s.translate(str_map) for s in cols_to_meta] + + # initialize the output fragility table + df_db = pd.DataFrame( + columns=[ + "Incomplete", + "Demand-Type", + "Demand-Unit", + "Demand-Offset", + "Demand-Directional", + "LS1-Family", + "LS1-Theta_0", + "LS1-Theta_1", + "LS1-DamageStateWeights", + "LS2-Family", + "LS2-Theta_0", + "LS2-Theta_1", + "LS2-DamageStateWeights", + "LS3-Family", + "LS3-Theta_0", + "LS3-Theta_1", + "LS3-DamageStateWeights", + "LS4-Family", + "LS4-Theta_0", + "LS4-Theta_1", + "LS4-DamageStateWeights" + ], + index=df_db_source.index, + dtype=float + ) - elif col_i in val.keys(): - val = val[col_i] - else: - return None + # initialize the dictionary that stores the fragility metadata + meta_dict = {} + + # conversion dictionary for demand types + convert_demand_type = { + 'Story Drift Ratio': "Peak Interstory Drift Ratio", + 'Link Rotation Angle': "Peak Link Rotation Angle", + 'Effective Drift': "Peak Effective Drift Ratio", + 'Link Beam Chord Rotation': "Peak Link Beam Chord Rotation", + 'Peak Floor Acceleration': "Peak Floor Acceleration", + 'Peak Floor Velocity': "Peak Floor Velocity" + } - return val + # conversion dictionary for demand unit names + convert_demand_unit = { + 'Unit less': 'ea', + 'Radians': 'rad', + 'g': 'g', + 'meter/sec': 'mps' + } -def convert_jsons_to_table(json_id_list, json_list, json_template): - # Define the header for the data table based on the template structure - header = np.array( - [[col[:-1], len(col[:-1])] for col in dict_generator(json_template)]) - lvls = max(np.transpose(header)[1]) - header = [col + (lvls - size) * [' ', ] for col, size in header] - # Use the header to initialize the DataFrame that will hold the data - MI = pd.MultiIndex.from_tuples(header) + # for each component... + # (this approach is not efficient, but easy to follow which was considered + # more important than efficiency.) + for cmp in df_db_source.itertuples(): - json_DF = pd.DataFrame(columns=MI, index=json_id_list) - json_DF.index.name = 'ID' + # assume the component information is complete + incomplete = False - # Load the data into the DF - for json_id, json_data in zip(json_id_list, json_list): + # store demand specifications + df_db.loc[cmp.Index, 'Demand-Type'] = ( + convert_demand_type[cmp.Demand_Parameter_value]) + df_db.loc[cmp.Index, 'Demand-Unit'] = ( + convert_demand_unit[cmp.Demand_Parameter_unit]) + df_db.loc[cmp.Index, 'Demand-Offset'] = ( + int(cmp.Demand_Location_use_floor_above_YesNo)) + df_db.loc[cmp.Index, 'Demand-Directional'] = ( + int(cmp.Directional)) - for col in json_DF.columns: + # parse the damage state hierarchy + DS_setup = parse_DS_Hierarchy(cmp.DS_Hierarchy) - val = get_val_from_dict(json_data, col) + # get the raw metadata for the component + cmp_meta = df_meta.loc[cmp.Index, :] - if val is not None: - json_DF.at[json_id, col] = val + # store the global (i.e., not DS-specific) metadata - # Remove empty rows and columns - json_DF = json_DF.dropna(axis=0, how='all') - json_DF = json_DF.dropna(axis=1, how='all') + # every component is assumed to have a comp. description + comments = cmp_meta['Component_Description'] - # Set the dtypes for the columns based on the template - for col in json_DF.columns: - dtype = get_val_from_dict(json_template, col) + # the additional fields are added to the description if they exist - if dtype != 'string': - try: - json_DF[col] = json_DF[col].astype(dtype) - except: - print(col, dtype) - else: - json_DF[col] = json_DF[col].apply(str) + if cmp_meta['Construction_Quality'] != 'Not Specified': + comments += f'\nConstruction Quality: ' \ + f'{cmp_meta["Construction_Quality"]}' - return json_DF + if cmp_meta['Seismic_Installation_Conditions'] not in [ + 'Not Specified', 'Not applicable', 'Unknown', 'Any']: + comments += f'\nSeismic Installation Conditions: ' \ + f'{cmp_meta["Seismic_Installation_Conditions"]}' + if cmp_meta['Comments__Notes'] != 'None': + comments += f'\nNotes: {cmp_meta["Comments__Notes"]}' -def save_to_standard_HDF(df, name, target_path, mode='w'): - """ - Saves a DataFrame in a standard HDF format using h5py. + if cmp_meta['Author'] not in ['Not Given', 'By User']: + comments += f'\nAuthor: {cmp_meta["Author"]}' - """ - import h5py # import here to avoid an issue on Stampede2 + # get the suggested block size and replace the misleading values with ea + block_size = cmp_meta['Fragility_Unit_of_Measure'].split(' ')[::-1] + + meta_data = { + "Description": cmp_meta['Component_Name'], + "Comments": comments, + "SuggestedComponentBlockSize": ' '.join(block_size), + "RoundUpToIntegerQuantity": cmp_meta['Round_to_Integer_Unit'], + "LimitStates": {} + } + + # now look at each Limit State + for LS_i, LS_contents in enumerate(DS_setup): + + LS_i = LS_i + 1 + LS_contents = np.atleast_1d(LS_contents) + + ls_meta = {} + + # start with the special cases with multiple DSs in an LS + if LS_contents[0] in ['MutEx', 'Simul']: + + # collect the fragility data for the member DSs + median_demands = [] + dispersions = [] + weights = [] + for ds in LS_contents[1:]: + median_demands.append( + getattr(cmp, f"DS_{ds[2]}_Median_Demand")) + + dispersions.append( + getattr(cmp, f"DS_{ds[2]}_Total_Dispersion_Beta")) + + weights.append(getattr(cmp, f"DS_{ds[2]}_Probability")) + + # make sure the specified distribution parameters are appropriate + if ((np.unique(median_demands).size != 1) or + (np.unique(dispersions).size != 1)): + raise ValueError(f"Incorrect mutually exclusive DS " + f"definition in component {cmp.Index} at " + f"Limit State {LS_i}") + + if LS_contents[0] == 'MutEx': + + # in mutually exclusive cases, make sure the specified DS + # weights sum up to one + np.testing.assert_allclose( + np.sum(np.array(weights, dtype=float)), 1.0, + err_msg=f"Mutually exclusive Damage State weights do " + f"not sum to 1.0 in component {cmp.Index} at " + f"Limit State {LS_i}") + + # and save all DS metadata under this Limit State + for ds in LS_contents[1:]: + ds_id = ds[2] + + ls_meta.update({f"DS{ds_id}": { + "Description": cmp_meta[f"DS_{ds_id}_Description"], + "RepairAction": cmp_meta[ + f"DS_{ds_id}_Repair_Description"] + }}) + + else: + # in simultaneous cases, convert simultaneous weights into + # mutexc weights + sim_ds_count = len(LS_contents) - 1 + ds_count = 2 ** (sim_ds_count) - 1 + + sim_weights = [] + + for ds_id in range(1, ds_count + 1): + ds_map = format(ds_id, f'0{sim_ds_count}b') + + sim_weights.append(np.product( + [weights[ds_i] + if ds_map[-ds_i - 1] == '1' else 1.0-weights[ds_i] + for ds_i in range(sim_ds_count)])) + + # save ds metadata - we need to be clever here + # the original metadata is saved for the pure cases + # when only one DS is triggered + # all other DSs store information about which + # combination of pure DSs they represent + + if ds_map.count('1') == 1: + + ds_pure_id = ds_map[::-1].find('1') + 1 + + ls_meta.update({f"DS{ds_id}": { + "Description": f"Pure DS{ds_pure_id}. " + + cmp_meta[f"DS_{ds_pure_id}_Description"], + "RepairAction": cmp_meta[f"DS_{ds_pure_id}_Repair_Description"] + }}) + + else: + + ds_combo = [f'DS{_.start() + 1}' + for _ in re.finditer('1', ds_map[::-1])] + + ls_meta.update({f"DS{ds_id}": { + "Description": 'Combination of ' + + ' & '.join(ds_combo), + "RepairAction": 'Combination of pure DS repair ' + 'actions.' + }}) + + # adjust weights to respect the assumption that at least + # one DS will occur (i.e., the case with all DSs returning + # False is not part of the event space) + sim_weights = np.array(sim_weights) / np.sum(sim_weights) - df = df.T + weights = sim_weights - hf = h5py.File(target_path, mode) + theta_0 = median_demands[0] + theta_1 = dispersions[0] + weights = ' | '.join([f"{w:.6f}" for w in weights]) - #try: - if True: - # save each row (i.e., column of FG_df) as a separate dataset in the file - for row_id, row in df.iterrows(): - row = row.convert_dtypes() + df_db.loc[cmp.Index, f'LS{LS_i}-DamageStateWeights'] = weights - # create a tree that identifies the column in the hierarchy - row_name = name - for label in row_id: - if label != " ": - row_name += f'/{label}' + # then look at the sequential DS cases + elif LS_contents[0].startswith('DS'): - # perform the appropriate type conversion before saving - if row.dtype == np.float64: - values = row.values.astype(float) + # this is straightforward, store the data in the table and dict + ds_id = LS_contents[0][2] - hf.create_dataset(row_name, data=values) + theta_0 = getattr(cmp, f"DS_{ds_id}_Median_Demand") + theta_1 = getattr(cmp, f"DS_{ds_id}_Total_Dispersion_Beta") - elif row.dtype == pd.StringDtype(): - # Strings are saved as ASCII strings so that the files can be - # opened with any tool on any platform. Non-ASCII characters - # are replaced by a backslash-escaped UTF8 identifier. - values = row.values.astype(str) - values = np.char.encode(values, encoding='ASCII', - errors='backslashreplace') + ls_meta.update({f"DS{ds_id}": { + "Description": cmp_meta[f"DS_{ds_id}_Description"], + "RepairAction": cmp_meta[f"DS_{ds_id}_Repair_Description"] + }}) - hf.create_dataset(row_name, data=values) + # FEMA P58 assumes lognormal distribution for every fragility + df_db.loc[cmp.Index, f'LS{LS_i}-Family'] = 'lognormal' - elif row.dtype in [pd.BooleanDtype(), pd.Int64Dtype()]: - row.fillna(-1, inplace=True) - values = row.values.astype(int) + # identify incomplete cases... - hf.create_dataset(row_name, data=values) + # where theta is missing + if theta_0 != 'By User': + df_db.loc[cmp.Index, f'LS{LS_i}-Theta_0'] = theta_0 + else: + incomplete = True + # where beta is missing + if theta_1 != 'By User': + df_db.loc[cmp.Index, f'LS{LS_i}-Theta_1'] = theta_1 else: - print("unknown dtype: ", row.dtype) + incomplete = True + + # store the collected metadata for this limit state + meta_data['LimitStates'].update({f"LS{LS_i}": ls_meta}) + + # store the incomplete flag for this component + df_db.loc[cmp.Index, 'Incomplete'] = int(incomplete) + + # store the metadata for this component + meta_dict.update({cmp.Index: meta_data}) - # finally, save the index - values = df.columns.values.astype(str) - values = np.char.encode(values, encoding='ASCII', - errors='backslashreplace') - hf.create_dataset(f'{name}/index', data=values) + # rename the index + df_db.index.name = "ID" - #except: - # show_warning("Error while trying to save standard HDF5 file.") + # convert to optimal datatypes to reduce file size + df_db = df_db.convert_dtypes() - hf.close() + # save the fragility data + df_db.to_csv(target_data_file) + # save the metadata + with open(target_meta_file, 'w+') as f: + json.dump(meta_dict, f, indent=2) -def convert_json_files_to_HDF(data_source_dir, DL_dir, db_name): + print("Successfully parsed and saved the fragility data from FEMA P58") + +def create_FEMA_P58_bldg_repair_db(source_file, + target_data_file='bldg_repair_DB_FEMA_P58_2nd.csv', + target_meta_file='bldg_repair_DB_FEMA_P58_2nd.json'): """ - Converts data from json files to a single HDF5 file + Create a repair consequence parameter database based on the FEMA P58 data + + The method was developed to process v3.1.2 of the FragilityDatabase xls + that is provided with FEMA P58 2nd edition. + + Parameters + ---------- + source_file: string + Path to the fragility database file. + target_data_file: string + Path where the consequence data file should be saved. A csv file is + expected. + target_meta_file: string + Path where the consequence metadata should be saved. A json file is + expected. """ - # Start with the fragility and consequence data - we'll call it data + # parse the source file + df = pd.concat( + [pd.read_excel(source_file, sheet_name=sheet, header=2, index_col=1) + for sheet in ['Summary', 'Cost Summary']], axis=1) + + # remove duplicate columns + # (there are such because we joined two tables that were read separately) + df = df.loc[:, ~df.columns.duplicated()] + + # remove empty rows and columns + df.dropna(axis=0, how='all', inplace=True) + df.dropna(axis=1, how='all', inplace=True) + + # filter the columns we need for the repair database + cols_to_db = [ + "Fragility Unit of Measure", + 'DS Hierarchy', + ] + for DS_i in range(1, 6): + cols_to_db += [ + f"Best Fit, DS{DS_i}", + f"Lower Qty Mean, DS{DS_i}", + f"Upper Qty Mean, DS{DS_i}", + f"Lower Qty Cutoff, DS{DS_i}", + f"Upper Qty Cutoff, DS{DS_i}", + f"CV / Dispersion, DS{DS_i}", + + f"Best Fit, DS{DS_i}.1", + f"Lower Qty Mean, DS{DS_i}.1", + f"Upper Qty Mean, DS{DS_i}.1", + f"Lower Qty Cutoff, DS{DS_i}.1", + f"Upper Qty Cutoff, DS{DS_i}.1", + f"CV / Dispersion, DS{DS_i}.2", + f"DS {DS_i}, Long Lead Time", + + f'Repair Cost, p10, DS{DS_i}', + f'Repair Cost, p50, DS{DS_i}', + f'Repair Cost, p90, DS{DS_i}', + f'Time, p10, DS{DS_i}', + f'Time, p50, DS{DS_i}', + f'Time, p90, DS{DS_i}', + f'Mean Value, DS{DS_i}', + f'Mean Value, DS{DS_i}.1', + ] + + # filter the columns that we need for the metadata + cols_to_meta = [ + "Component Name", + "Component Description", + "Construction Quality:", + "Seismic Installation Conditions:", + "Comments / Notes", + "Author", + "Fragility Unit of Measure", + "Round to Integer Unit?", + "DS 1, Description", + "DS 1, Repair Description", + "DS 2, Description", + "DS 2, Repair Description", + "DS 3, Description", + "DS 3, Repair Description", + "DS 4, Description", + "DS 4, Repair Description", + "DS 5, Description", + "DS 5, Repair Description", + ] + + # remove special characters to make it easier to work with column names + str_map = { + ord(' '): "_", + ord('.'): "_", + ord(':'): None, + ord('('): None, + ord(')'): None, + ord('?'): None, + ord('/'): None, + ord(','): None, + } - DL_dir = Path(DL_dir).resolve() - data_source_dir = Path(data_source_dir).resolve() + df_db_source = df.loc[:, cols_to_db] + df_db_source.columns = [s.translate(str_map) for s in cols_to_db] + df_db_source.sort_index(inplace=True) + + df_meta = df.loc[:, cols_to_meta] + df_meta.columns = [s.translate(str_map) for s in cols_to_meta] + + df_db_source.replace('BY USER', np.nan, inplace=True) + + # initialize the output loss table + # define the columns + out_cols = [ + "Incomplete", + "Quantity-Unit", + "DV-Unit", + ] + for DS_i in range(1, 16): + out_cols += [ + f"DS{DS_i}-Family", + f"DS{DS_i}-Theta_0", + f"DS{DS_i}-Theta_1", + f"DS{DS_i}-LongLeadTime", + ] + + # create the MultiIndex + comps = df_db_source.index.values + DVs = ['Cost', 'Time'] + df_MI = pd.MultiIndex.from_product([comps, DVs], names=['ID', 'DV']) + + df_db = pd.DataFrame( + columns=out_cols, + index=df_MI, + dtype=float + ) - # get a list of json files to convert - FG_ID_list = [filename[:-5] for filename in os.listdir(DL_dir / 'DL json')] + # initialize the dictionary that stores the loss metadata + meta_dict = {} - # We will use a template.json to define the schema for the jsons and the - # header for the data table. - with open(data_source_dir / 'DL_template.json', 'r') as f: - FG_template = json.load(f) + convert_family = { + 'LogNormal': 'lognormal', + 'Normal': 'normal' + } - FG_list = [] - DL_json_dir = DL_dir / 'DL json' - for FG_i in FG_ID_list: - with open(DL_json_dir / f'{FG_i}.json', 'r') as f: - FG_list.append(json.load(f)) + # for each component... + # (this approach is not efficient, but easy to follow which was considered + # more important than efficiency.) + for cmp in df_db_source.itertuples(): + + # assume the component information is complete + incomplete_cost = False + incomplete_time = False + + # store units + + df_db.loc[cmp.Index, 'Quantity-Unit'] = ( + ' '.join(cmp.Fragility_Unit_of_Measure.split(' ')[::-1]).strip()) + df_db.loc[(cmp.Index, 'Cost'), 'DV-Unit'] = "US$_2011" + df_db.loc[(cmp.Index, 'Time'), 'DV-Unit'] = "worker_day" + + # get the raw metadata for the component + cmp_meta = df_meta.loc[cmp.Index, :] + + # store the global (i.e., not DS-specific) metadata + + # every component is assumed to have a comp. description + comments = cmp_meta['Component_Description'] + + # the additional fields are added to the description if they exist + if cmp_meta['Construction_Quality'] != 'Not Specified': + comments += f'\nConstruction Quality: ' \ + f'{cmp_meta["Construction_Quality"]}' + + if cmp_meta['Seismic_Installation_Conditions'] not in [ + 'Not Specified', 'Not applicable', 'Unknown', 'Any']: + comments += f'\nSeismic Installation Conditions: ' \ + f'{cmp_meta["Seismic_Installation_Conditions"]}' - FG_df = convert_jsons_to_table(FG_ID_list, FG_list, FG_template) + if cmp_meta['Comments__Notes'] != 'None': + comments += f'\nNotes: {cmp_meta["Comments__Notes"]}' + + if cmp_meta['Author'] not in ['Not Given', 'By User']: + comments += f'\nAuthor: {cmp_meta["Author"]}' + + # get the suggested block size and replace the misleading values with ea + block_size = cmp_meta['Fragility_Unit_of_Measure'].split(' ')[::-1] + + meta_data = { + "Description": cmp_meta['Component_Name'], + "Comments": comments, + "SuggestedComponentBlockSize": ' '.join(block_size), + "RoundUpToIntegerQuantity": cmp_meta['Round_to_Integer_Unit'], + "ControllingDemand": "Damage Quantity", + "DamageStates": {} + } - # start with saving the data in standard HDF5 format - save_to_standard_HDF(FG_df, name='data_standard', - target_path=DL_dir / f'{db_name}.hdf') + # Handle components with simultaneous damage states separately + if 'Simul' in cmp.DS_Hierarchy: - # then also save it using PyTables for quick access and slicing - FG_df.to_hdf(DL_dir / f'{db_name}.hdf', 'data', mode='a', format='table', - complevel=1, complib='blosc:snappy') + # Note that we are assuming that all damage states are triggered by + # a single limit state in these components. + # This assumption holds for the second edition of FEMA P58, but it + # might need to be revisited in future editions. - # Now add the population distribution data - we'll call it pop + cost_est = {} + time_est = {} - # Only do this if there is population data - try: - with open(DL_dir / 'population.json', 'r') as f: - pop = json.load(f) + # get the p10, p50, and p90 estimates for all damage states + for DS_i in range(1, 6): - pop_ID_list = list(pop.keys()) + if not pd.isna(getattr(cmp, f'Repair_Cost_p10_DS{DS_i}')): - pop_data = [pop[key] for key in pop.keys()] + cost_est.update({f'DS{DS_i}': np.array([ + getattr(cmp, f'Repair_Cost_p10_DS{DS_i}'), + getattr(cmp, f'Repair_Cost_p50_DS{DS_i}'), + getattr(cmp, f'Repair_Cost_p90_DS{DS_i}'), + getattr(cmp, f'Lower_Qty_Mean_DS{DS_i}'), + getattr(cmp, f'Upper_Qty_Mean_DS{DS_i}') + ])}) - with open(data_source_dir / 'pop_template.json', 'r') as f: - pop_template = json.load(f) + time_est.update({f'DS{DS_i}': np.array([ + getattr(cmp, f'Time_p10_DS{DS_i}'), + getattr(cmp, f'Time_p50_DS{DS_i}'), + getattr(cmp, f'Time_p90_DS{DS_i}'), + getattr(cmp, f'Lower_Qty_Mean_DS{DS_i}_1'), + getattr(cmp, f'Upper_Qty_Mean_DS{DS_i}_1'), + int(getattr(cmp, f'DS_{DS_i}_Long_Lead_Time') == 'YES') + ])}) - pop_df = convert_jsons_to_table(pop_ID_list, pop_data, pop_template) + # now prepare the equivalent mutex damage states + sim_ds_count = len(cost_est.keys()) + ds_count = 2 ** (sim_ds_count) - 1 - save_to_standard_HDF(pop_df, name='pop_standard', - target_path=DL_dir / f'{db_name}.hdf', mode='a') + for DS_i in range(1, ds_count + 1): + ds_map = format(DS_i, f'0{sim_ds_count}b') - pop_df.to_hdf(DL_dir / f'{db_name}.hdf', 'pop', mode='a', format='table', - complevel=1, complib='blosc:snappy') + cost_vals = np.sum([cost_est[f'DS{ds_i + 1}'] + if ds_map[-ds_i - 1] == '1' else np.zeros(5) + for ds_i in range(sim_ds_count)], + axis=0) - except: - pass + time_vals = np.sum([time_est[f'DS{ds_i + 1}'] + if ds_map[-ds_i - 1] == '1' else np.zeros(6) + for ds_i in range(sim_ds_count)], + axis=0) -def convert_Series_to_dict(comp_Series): - """ - Converts data from a table to a json file + # fit a distribution + family_hat, theta_hat = fit_distribution_to_percentiles( + cost_vals[:3], [0.1, 0.5, 0.9], ['normal', 'lognormal']) - """ + cost_theta = theta_hat + if family_hat == 'normal': + cost_theta[1] = cost_theta[1] / cost_theta[0] - comp_Series = comp_Series.dropna(how='all') + time_theta = [time_vals[1], + np.sqrt(cost_theta[1] ** 2.0 + 0.25 ** 2.0)] - comp_dict = {} + # Note that here we assume that the cutoff quantities are + # identical across damage states. + # This assumption holds for the second edition of FEMA P58, but + # it might need to be revisited in future editions. + cost_qnt_low = getattr(cmp, f'Lower_Qty_Cutoff_DS1') + cost_qnt_up = getattr(cmp, f'Upper_Qty_Cutoff_DS1') + time_qnt_low = getattr(cmp, f'Lower_Qty_Cutoff_DS1_1') + time_qnt_up = getattr(cmp, f'Upper_Qty_Cutoff_DS1_1') + + # store the results + df_db.loc[(cmp.Index, 'Cost'), f'DS{DS_i}-Family'] = family_hat + + df_db.loc[(cmp.Index,'Cost'), f'DS{DS_i}-Theta_0'] = ( + f"{cost_vals[3]:g},{cost_vals[4]:g}|" + f"{cost_qnt_low:g},{cost_qnt_up:g}") - for branch in comp_Series.index: + df_db.loc[(cmp.Index,'Cost'), + f'DS{DS_i}-Theta_1'] = f"{cost_theta[1]:g}" + + df_db.loc[(cmp.Index, 'Time'), f'DS{DS_i}-Family'] = family_hat - nested_dict = comp_dict - parent_dict = None - parent_val = None - parent_id = None + df_db.loc[(cmp.Index,'Time'), f'DS{DS_i}-Theta_0'] = ( + f"{time_vals[3]:g},{time_vals[4]:g}|" + f"{time_qnt_low:g},{time_qnt_up:g}") + + df_db.loc[(cmp.Index,'Time'), + f'DS{DS_i}-Theta_1'] = f"{time_theta[1]:g}" + + df_db.loc[(cmp.Index, 'Time'), + f'DS{DS_i}-LongLeadTime'] = int(time_vals[5] > 0) + + if ds_map.count('1') == 1: + + ds_pure_id = ds_map[::-1].find('1') + 1 + + meta_data['DamageStates'].update({f"DS{DS_i}": { + "Description": f"Pure DS{ds_pure_id}. " + + cmp_meta[f"DS_{ds_pure_id}_Description"], + "RepairAction": + cmp_meta[f"DS_{ds_pure_id}_Repair_Description"] + }}) - for val in branch: - if val != ' ': - if '#' in val: - val, list_id = val.split('#') - list_id = int(list_id) else: - list_id = None - if val not in nested_dict.keys(): - if list_id is not None: - nested_dict.update({val: []}) + ds_combo = [f'DS{_.start() + 1}' + for _ in re.finditer('1', ds_map[::-1])] + + meta_data['DamageStates'].update({f"DS{DS_i}": { + "Description": 'Combination of ' + + ' & '.join(ds_combo), + "RepairAction": 'Combination of pure DS repair ' + 'actions.' + }}) + + # for every other component... + else: + # now look at each Damage State + for DS_i in range(1, 6): + + # cost + if not pd.isna(getattr(cmp, f'Best_Fit_DS{DS_i}')): + df_db.loc[(cmp.Index, 'Cost'), f'DS{DS_i}-Family'] = ( + convert_family[getattr(cmp, f'Best_Fit_DS{DS_i}')]) + + if not pd.isna(getattr(cmp, f'Lower_Qty_Mean_DS{DS_i}')): + + theta_0_low = getattr(cmp, f'Lower_Qty_Mean_DS{DS_i}') + theta_0_up = getattr(cmp, f'Upper_Qty_Mean_DS{DS_i}') + qnt_low = getattr(cmp, f'Lower_Qty_Cutoff_DS{DS_i}') + qnt_up = getattr(cmp, f'Upper_Qty_Cutoff_DS{DS_i}') + + if theta_0_low == 0. and theta_0_up == 0.: + df_db.loc[(cmp.Index, 'Cost'), + f'DS{DS_i}-Family'] = np.nan + + else: + df_db.loc[(cmp.Index, 'Cost'), f'DS{DS_i}-Theta_0'] = ( + f"{theta_0_low:g},{theta_0_up:g}|" + f"{qnt_low:g},{qnt_up:g}") + + df_db.loc[(cmp.Index, 'Cost'), f'DS{DS_i}-Theta_1'] = ( + f"{getattr(cmp, f'CV__Dispersion_DS{DS_i}'):g}") + else: - nested_dict.update({val: {}}) + incomplete_cost = True - if list_id is not None: - if list_id > len(nested_dict[val]) - 1: - nested_dict[val].append({}) - parent_dict = nested_dict - nested_dict = nested_dict[val][list_id] + meta_data['DamageStates'].update({ + f"DS{DS_i}": { + "Description": cmp_meta[f"DS_{DS_i}_Description"], + "RepairAction": cmp_meta[f"DS_{DS_i}_Repair_Description"]}}) - parent_id = list_id + # time + if not pd.isna(getattr(cmp, f'Best_Fit_DS{DS_i}_1')): - else: - parent_dict = nested_dict - nested_dict = nested_dict[val] + df_db.loc[(cmp.Index, 'Time'), f'DS{DS_i}-Family'] = ( + convert_family[getattr(cmp, f'Best_Fit_DS{DS_i}_1')]) - parent_val = val + if not pd.isna(getattr(cmp, f'Lower_Qty_Mean_DS{DS_i}_1')): - if isinstance(parent_dict[parent_val], dict): - parent_dict[parent_val] = comp_Series[branch] - else: - parent_dict[parent_val][parent_id] = comp_Series[branch] + theta_0_low = getattr(cmp, f'Lower_Qty_Mean_DS{DS_i}_1') + theta_0_up = getattr(cmp, f'Upper_Qty_Mean_DS{DS_i}_1') + qnt_low = getattr(cmp, f'Lower_Qty_Cutoff_DS{DS_i}_1') + qnt_up = getattr(cmp, f'Upper_Qty_Cutoff_DS{DS_i}_1') - return comp_dict + if theta_0_low == 0. and theta_0_up == 0.: + df_db.loc[(cmp.Index, 'Time'), + f'DS{DS_i}-Family'] = np.nan -def convert_P58_data_to_json(data_dir, target_dir): - """ - Create JSON data files from publicly available P58 data. + else: + df_db.loc[(cmp.Index, 'Time'), f'DS{DS_i}-Theta_0'] = ( + f"{theta_0_low:g},{theta_0_up:g}|" + f"{qnt_low:g},{qnt_up:g}") + + df_db.loc[(cmp.Index, 'Time'), f'DS{DS_i}-Theta_1'] = ( + f"{getattr(cmp, f'CV__Dispersion_DS{DS_i}_2'):g}") + + df_db.loc[(cmp.Index, 'Time'), f'DS{DS_i}-LongLeadTime'] = ( + int(getattr(cmp, f'DS_{DS_i}_Long_Lead_Time') == 'YES')) + + else: + incomplete_time = True + + df_db.loc[(cmp.Index, 'Cost'), 'Incomplete'] = int(incomplete_cost) + df_db.loc[(cmp.Index, 'Time'), 'Incomplete'] = int(incomplete_time) + + # store the metadata for this component + meta_dict.update({cmp.Index: meta_data}) + + # review the database and drop rows with no information + cmp_to_drop = [] + for cmp in df_db.index: + + empty = True + + for DS_i in range(1, 6): + if not pd.isna(df_db.loc[cmp, f'DS{DS_i}-Family']): + empty = False + break + + if empty: + cmp_to_drop.append(cmp) + + df_db.drop(cmp_to_drop, axis=0, inplace=True) + for cmp in cmp_to_drop: + if cmp[0] in meta_dict.keys(): + del meta_dict[cmp[0]] + + # convert to optimal datatypes to reduce file size + df_db = df_db.convert_dtypes() + + df_db = convert_to_SimpleIndex(df_db, 0) - FEMA P58 damage and loss information is publicly available in an Excel - spreadsheet and also in a series of XML files as part of the PACT tool. - Those files are copied to the resources folder in the pelicun repo. Here - we collect the available information on Fragility Groups from those files - and save the damage and loss data in the common SimCenter JSON format. + # rename the index + df_db.index.name = "ID" - A large part of the Fragility Groups in FEMA P58 do not have complete - damage and loss information available. These FGs are clearly marked with - an incomplete flag in the JSON file and the 'Undefined' value highlights - the missing pieces of information. + # save the consequence data + df_db.to_csv(target_data_file) + + # save the metadata + with open(target_meta_file, 'w+') as f: + json.dump(meta_dict, f, indent=2) + + print("Successfully parsed and saved the repair consequence data from FEMA " + "P58") + +def create_FEMA_P58_bldg_injury_db(source_file, + target_data_file='bldg_injury_DB_FEMA_P58_2nd.csv', + target_meta_file='bldg_injury_DB_FEMA_P58_2nd.json'): + """ + Create an injury consequence parameter database based on the FEMA P58 data + + The method was developed to process v3.1.2 of the FragilityDatabase xls + that is provided with FEMA P58 2nd edition. Parameters ---------- - data_dir: string - Path to the folder with the FEMA P58 Excel file and a 'DL xml' - subfolder in it that contains the XML files. - target_dir: string - Path to the folder where the JSON files shall be saved. + source_file: string + Path to the fragility database file. + target_data_file: string + Path where the consequence data file should be saved. A csv file is + expected. + target_meta_file: string + Path where the consequence metadata should be saved. A json file is + expected. """ - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None + # parse the source file + df = pd.read_excel(source_file, sheet_name='Summary', header=2, index_col=1, + true_values=["YES", "Yes", "yes"], + false_values=["NO", "No", "no"]) + + # remove empty rows and columns + df.dropna(axis=0, how='all', inplace=True) + df.dropna(axis=1, how='all', inplace=True) + + # filter the columns we need for the injury database + cols_to_db = [ + "Fragility Unit of Measure", + 'DS Hierarchy', + ] + for DS_i in range(1, 6): + cols_to_db += [ + + f'DS {DS_i}, Potential non-collapse casualty?', + f'DS {DS_i} - Casualty Affected Area', + f'DS {DS_i} Serious Injury Rate - Median', + f'DS {DS_i} Serious Injury Rate - Dispersion', + f'DS {DS_i} Loss of Life Rate - Median', + f'DS {DS_i} Loss of Life Rate - Dispersion', + ] + + # filter the columns that we need for the metadata + cols_to_meta = [ + "Component Name", + "Component Description", + "Construction Quality:", + "Seismic Installation Conditions:", + "Comments / Notes", + "Author", + "Fragility Unit of Measure", + "Round to Integer Unit?", + "DS 1, Description", + "DS 2, Description", + "DS 3, Description", + "DS 4, Description", + "DS 5, Description", + ] + + # remove special characters to make it easier to work with column names + str_map = { + ord(' '): "_", + ord('.'): "_", + ord('-'): "_", + ord(':'): None, + ord('('): None, + ord(')'): None, + ord('?'): None, + ord('/'): None, + ord(','): None, + } - convert_unit = { - 'Unit less': 'ea', - 'Radians' : 'rad', - 'g' : 'g', - 'meter/sec': 'mps' + df_db_source = df.loc[:, cols_to_db] + df_db_source.columns = [s.translate(str_map) for s in cols_to_db] + df_db_source.sort_index(inplace=True) + + df_meta = df.loc[:, cols_to_meta] + df_meta.columns = [s.translate(str_map) for s in cols_to_meta] + + df_db_source.replace('BY USER', np.nan, inplace=True) + df_db_source.replace('By User', np.nan, inplace=True) + + # initialize the output loss table + # define the columns + out_cols = [ + "Incomplete", + "Quantity-Unit", + "DV-Unit", + ] + for DS_i in range(1, 16): + out_cols += [ + f"DS{DS_i}-Family", + f"DS{DS_i}-Theta_0", + f"DS{DS_i}-Theta_1", + f"DS{DS_i}-AffectedArea", + ] + + # create the MultiIndex + comps = df_db_source.index.values + DVs = ['S1', 'S2'] + df_MI = pd.MultiIndex.from_product([comps, DVs], names=['ID', 'Severity']) + + df_db = pd.DataFrame( + columns=out_cols, + index=df_MI, + dtype=float + ) - } + # initialize the dictionary that stores the loss metadata + meta_dict = {} - convert_DSG_type = { - 'MutEx': 'MutuallyExclusive', - 'Simul': 'Simultaneous' - } + # for each component... + # (this approach is not efficient, but easy to follow which was considered + # more important than efficiency.) + for cmp in df_db_source.itertuples(): - def decode_DS_Hierarchy(DSH): - - if 'Seq' == DSH[:3]: - DSH = DSH[4:-1] - - DS_setup = [] - - while len(DSH) > 0: - if DSH[:2] == 'DS': - DS_setup.append(DSH[:3]) - DSH = DSH[4:] - elif DSH[:5] in ['MutEx', 'Simul']: - closing_pos = DSH.find(')') - subDSH = DSH[:closing_pos + 1] - DSH = DSH[closing_pos + 2:] - - DS_setup.append([subDSH[:5]] + subDSH[6:-1].split(',')) - - return DS_setup - - def parse_DS_xml(DS_xml): - CFG = DS_xml.find('ConsequenceGroup') - CFG_C = CFG.find('CostConsequence') - CFG_T = CFG.find('TimeConsequence') - - repair_cost = dict( - Amount=[float(CFG_C.find('MaxAmount').text), - float(CFG_C.find('MinAmount').text)], - Quantity=[float(CFG_C.find('LowerQuantity').text), - float(CFG_C.find('UpperQuantity').text)], - CurveType=CFG_C.find('CurveType').text, - Beta=float(CFG_C.find('Uncertainty').text), - Bounds=[0., 'None'] - ) - if repair_cost['Amount'] == [0.0, 0.0]: - repair_cost['Amount'] = 'Undefined' - - repair_time = dict( - Amount=[float(CFG_T.find('MaxAmount').text), - float(CFG_T.find('MinAmount').text)], - Quantity=[float(CFG_T.find('LowerQuantity').text), - float(CFG_T.find('UpperQuantity').text)], - CurveType=CFG_T.find('CurveType').text, - Beta=float(CFG_T.find('Uncertainty').text), - Bounds=[0., 'None'] - ) - if repair_time['Amount'] == [0.0, 0.0]: - repair_time['Amount'] = 'Undefined' - - return repair_cost, repair_time - - def is_float(s): - try: - if type(s) == str and s[-1] == '%': - s_f = float(s[:-1]) / 100. - else: - s_f = float(s) - if np.isnan(s_f): - return False - else: - return True - except ValueError: - return False + # assume the component information is complete + incomplete_S1 = False + incomplete_S2 = False - src_df = pd.read_excel(data_dir / 'PACT_fragility_data.xlsx') - ID_list = src_df['NISTIR Classification'] + # store units - XML_list = [f for f in os.listdir(data_dir / 'DL xml') if f.endswith('.xml')] + df_db.loc[cmp.Index, 'Quantity-Unit'] = ( + ' '.join(cmp.Fragility_Unit_of_Measure.split(' ')[::-1]).strip()) + df_db.loc[(cmp.Index, 'S1'), 'DV-Unit'] = "persons" + df_db.loc[(cmp.Index, 'S2'), 'DV-Unit'] = "persons" - incomplete_count = 0 + # get the raw metadata for the component + cmp_meta = df_meta.loc[cmp.Index, :] - for filename in XML_list: + # store the global (i.e., not DS-specific) metadata - comp_ID = filename[:-4] + # every component is assumed to have a comp. description + comments = cmp_meta['Component_Description'] - #try: - if True: - tree = ET.parse((data_dir / 'DL xml') / f'{comp_ID}.xml') - root = tree.getroot() + # the additional fields are added to the description if they exist + if cmp_meta['Construction_Quality'] != 'Not Specified': + comments += f'\nConstruction Quality: ' \ + f'{cmp_meta["Construction_Quality"]}' - # correct for the error in the numbering of RC beams - if (comp_ID[:5] == 'B1051') and ( - comp_ID[-1] not in str([1, 2, 3, 4])): - comp_ID = 'B1042' + comp_ID[5:] + if cmp_meta['Seismic_Installation_Conditions'] not in [ + 'Not Specified', 'Not applicable', 'Unknown', 'Any']: + comments += f'\nSeismic Installation Conditions: ' \ + f'{cmp_meta["Seismic_Installation_Conditions"]}' - row = src_df.loc[np.where(ID_list == comp_ID)[0][0], :] + if cmp_meta['Comments__Notes'] != 'None': + comments += f'\nNotes: {cmp_meta["Comments__Notes"]}' - json_output = {} - incomplete = False + if cmp_meta['Author'] not in ['Not Given', 'By User']: + comments += f'\nAuthor: {cmp_meta["Author"]}' - json_output.update({'Name': row['Component Name']}) + # get the suggested block size and replace the misleading values with ea + block_size = cmp_meta['Fragility_Unit_of_Measure'].split(' ')[::-1] - QU = row['Fragility Unit of Measure'] - QU = QU.split(' ') - if is_float(QU[1]): - if QU[0] in ['TN', 'AP', 'CF', 'KV']: - QU[0] = 'ea' - QU[1] = 1 - json_output.update({'QuantityUnit': [int(QU[1]), QU[0]]}) - else: - json_output.update({'QuantityUnit': [0., 'Undefined']}) - incomplete = True + meta_data = { + "Description": cmp_meta['Component_Name'], + "Comments": comments, + "SuggestedComponentBlockSize": ' '.join(block_size), + "RoundUpToIntegerQuantity": cmp_meta['Round_to_Integer_Unit'], + "ControllingDemand": "Damage Quantity", + "DamageStates": {} + } - json_output.update({'Directional': row['Directional?'] in ['YES']}) - json_output.update({'Correlated': row['Correlated?'] in ['YES']}) - - json_output.update({ - 'EDP': { - 'Type' : row['Demand Parameter (value):'], - 'Unit' : [1, - convert_unit[row['Demand Parameter (unit):']]], - 'Offset': int( - row['Demand Location (use floor above? Yes/No)'] in [ - 'Yes']) - } - }) - - json_output.update({ - 'GeneralInformation': { - 'ID' : row['NISTIR Classification'], - 'Description': row['Component Description'], - 'Author' : row['Author'], - 'Official' : root.find('Official').text in ['True', - 'true'], - 'DateCreated': root.find('DateCreated').text, - 'Approved' : root.find('Approved').text in ['True', - 'true'], - 'Incomplete' : root.find('Incomplete').text in ['True', - 'true'], - 'Notes' : row['Comments / Notes'] - } - }) - for key in json_output['GeneralInformation'].keys(): - if json_output['GeneralInformation'][key] is np.nan: - json_output['GeneralInformation'][key] = 'Undefined' - - json_output.update({ - 'Ratings': { - 'DataQuality' : row['Data Quality'], - 'DataRelevance': row['Data Relevance'], - 'Documentation': row['Documentation Quality'], - 'Rationality' : row['Rationality'], - } - }) - for key in json_output['Ratings'].keys(): - if json_output['Ratings'][key] is np.nan: - json_output['Ratings'][key] = 'Undefined' - - DSH = decode_DS_Hierarchy(row['DS Hierarchy']) - - json_output.update({'DSGroups': []}) - - for DSG in DSH: - if DSG[0] in ['MutEx', 'Simul']: - mu = row['DS {}, Median Demand'.format(DSG[1][-1])] - beta = row[ - 'DS {}, Total Dispersion (Beta)'.format(DSG[1][-1])] - if is_float(mu) and is_float(beta): - json_output['DSGroups'].append({ - 'MedianEDP' : float(mu), - 'Beta' : float(beta), - 'CurveType' : 'LogNormal', - 'DSGroupType' : convert_DSG_type[DSG[0]], - 'DamageStates': DSG[1:] - }) - else: - json_output['DSGroups'].append({ - 'MedianEDP' : float(mu) if is_float( - mu) else 'Undefined', - 'Beta' : float(beta) if is_float( - beta) else 'Undefined', - 'CurveType' : 'LogNormal', - 'DSGroupType' : convert_DSG_type[DSG[0]], - 'DamageStates': DSG[1:] - }) - incomplete = True - else: - mu = row['DS {}, Median Demand'.format(DSG[-1])] - beta = row['DS {}, Total Dispersion (Beta)'.format(DSG[-1])] - if is_float(mu) and is_float(beta): - json_output['DSGroups'].append({ - 'MedianEDP' : float(mu), - 'Beta' : float(beta), - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [DSG], - }) - else: - json_output['DSGroups'].append({ - 'MedianEDP' : float(mu) if is_float( - mu) else 'Undefined', - 'Beta' : float(beta) if is_float( - beta) else 'Undefined', - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [DSG], - }) - incomplete = True - - need_INJ = False - need_RT = False - for DSG in json_output['DSGroups']: - DS_list = DSG['DamageStates'] - DSG['DamageStates'] = [] - for DS in DS_list: - - # avoid having NaN as repair measures - repair_measures = row['DS {}, Repair Description'.format(DS[-1])] - if not isinstance(repair_measures, str): - repair_measures = "" - - DSG['DamageStates'].append({ - 'Weight' : - float(row['DS {}, Probability'.format(DS[-1])]), - 'LongLeadTime' : - int(row['DS {}, Long Lead Time'.format(DS[-1])] in [ - 'YES']), - 'Consequences' : {}, - 'Description' : - row['DS {}, Description'.format(DS[-1])], - 'RepairMeasures': repair_measures - }) - - IMG = row['DS{}, Illustrations'.format(DS[-1])] - if IMG not in ['none', np.nan]: - DSG['DamageStates'][-1].update({'DamageImageName': IMG}) - - AA = row['DS {} - Casualty Affected Area'.format(DS[-1])] - if (isinstance(AA, str) and (is_float(AA.split(' ')[0]))): - AA = AA.split(' ') - DSG['DamageStates'][-1].update( - {'AffectedArea': [int(AA[0]), AA[1]]}) - need_INJ = True - else: - DSG['DamageStates'][-1].update( - {'AffectedArea': [0, 'SF']}) - - DSG['DamageStates'][-1]['Consequences'].update( - {'Injuries': [{}, {}]}) - - INJ0 = DSG[ - 'DamageStates'][-1]['Consequences']['Injuries'][0] - INJ_mu = row[ - 'DS {} Serious Injury Rate - Median'.format(DS[-1])] - INJ_beta = row[ - 'DS {} Serious Injury Rate - Dispersion'.format(DS[-1])] - if is_float(INJ_mu) and is_float(INJ_beta): - INJ0.update({ - 'Amount' : float(INJ_mu), - 'Beta' : float(INJ_beta), - 'CurveType': 'Normal', - 'Bounds' : [0., 1.] - }) - - if INJ_mu != 0.0: - need_INJ = True - if DSG['DamageStates'][-1]['AffectedArea'][0] == 0: - incomplete = True - else: - INJ0.update({'Amount' : - float(INJ_mu) if is_float(INJ_mu) - else 'Undefined', - 'Beta' : - float(INJ_beta) if is_float(INJ_beta) - else 'Undefined', - 'CurveType': 'Normal'}) - if ((INJ0['Amount'] == 'Undefined') or - (INJ0['Beta'] == 'Undefined')): - incomplete = True + # Handle components with simultaneous damage states separately + if 'Simul' in cmp.DS_Hierarchy: - INJ1 = DSG[ - 'DamageStates'][-1]['Consequences']['Injuries'][1] - INJ_mu = row['DS {} Loss of Life Rate - Median'.format(DS[-1])] - INJ_beta = row['DS {} Loss of Life Rate - Dispersion'.format(DS[-1])] - if is_float(INJ_mu) and is_float(INJ_beta): - INJ1.update({ - 'Amount' : float(INJ_mu), - 'Beta' : float(INJ_beta), - 'CurveType': 'Normal', - 'Bounds' : [0., 1.] - }) - if INJ_mu != 0.0: - need_INJ = True - if DSG['DamageStates'][-1]['AffectedArea'][0] == 0: - incomplete = True - else: - INJ1.update({'Amount' : - float(INJ_mu) if is_float(INJ_mu) - else 'Undefined', - 'Beta' : - float(INJ_beta) if is_float(INJ_beta) - else 'Undefined', - 'CurveType': 'Normal', - 'Bounds': [0., 1.]}) - if ((INJ1['Amount'] == 'Undefined') or - (INJ1['Beta'] == 'Undefined')): - incomplete = True + # Note that we are assuming that all damage states are triggered by + # a single limit state in these components. + # This assumption holds for the second edition of FEMA P58, but it + # might need to be revisited in future editions. - DSG['DamageStates'][-1]['Consequences'].update({'RedTag': {}}) - RT = DSG['DamageStates'][-1]['Consequences']['RedTag'] - - RT_mu = row['DS {}, Unsafe Placard Damage Median'.format(DS[-1])] - RT_beta = row['DS {}, Unsafe Placard Damage Dispersion'.format(DS[-1])] - if is_float(RT_mu) and is_float(RT_beta): - RT.update({ - 'Amount' : float(RT_mu), - 'Beta' : float(RT_beta), - 'CurveType': 'Normal', - 'Bounds' : [0., 1.] - }) - if RT['Amount'] != 0.0: - need_RT = True - else: - RT.update({'Amount' : - float(RT_mu[:-1]) if is_float(RT_mu) - else 'Undefined', - 'Beta' : - float(RT_beta[:-1]) if is_float(RT_beta) - else 'Undefined', - 'CurveType': 'Normal', - 'Bounds': [0., 1.]}) - if ((RT['Amount'] == 'Undefined') or - (RT['Beta'] == 'Undefined')): - incomplete = True + inj_data = {} + ds_tot = 0 - # remove the unused fields - if not need_INJ: - for DSG in json_output['DSGroups']: - for DS in DSG['DamageStates']: - del DS['AffectedArea'] - del DS['Consequences']['Injuries'] - - if not need_RT: - for DSG in json_output['DSGroups']: - for DS in DSG['DamageStates']: - del DS['Consequences']['RedTag'] - - # collect the repair cost and time consequences from the XML file - DSG_list = root.find('DamageStates').findall('DamageState') - for DSG_i, DSG_xml in enumerate(DSG_list): - - if DSG_xml.find('DamageStates') is not None: - DS_list = (DSG_xml.find('DamageStates')).findall('DamageState') - for DS_i, DS_xml in enumerate(DS_list): - r_cost, r_time = parse_DS_xml(DS_xml) - CONSEQ = json_output['DSGroups'][DSG_i][ - 'DamageStates'][DS_i]['Consequences'] - CONSEQ.update({ - 'ReconstructionCost': r_cost, - 'ReconstructionTime': r_time - }) - if ((r_cost['Amount'] == 'Undefined') or - (r_time['Amount'] == 'Undefined')): - incomplete = True + # get the p10, p50, and p90 estimates for all damage states + for DS_i in range(1, 6): + + casualty_model = getattr( + cmp, f'DS_{DS_i}_Potential_non_collapse_casualty') + + if casualty_model == True: + + inj_data.update({f'DS{DS_i}': np.array([ + getattr(cmp, f'DS_{DS_i}___Casualty_Affected_Area'), + getattr(cmp, f'DS_{DS_i}_Serious_Injury_Rate___Median'), + getattr(cmp, f'DS_{DS_i}_Serious_Injury_Rate___Dispersion'), + getattr(cmp, f'DS_{DS_i}_Loss_of_Life_Rate___Median'), + getattr(cmp, f'DS_{DS_i}_Loss_of_Life_Rate___Dispersion') + ])}) + ds_tot += 1 + + elif casualty_model == False: + ds_tot += 1 + + # only continue if there is injury data + if len(inj_data) == 0: + continue + + # now prepare the equivalent mutex damage states + sim_ds_count = ds_tot + ds_count = 2 ** (sim_ds_count) - 1 + + # Here we take advantage of knowing that for every component with + # simultaneous damage states, only one of the DSs has injury + # consequences. + # This assumption holds for the second edition of FEMA P58, but it + # might need to be revisited in future editions. + + ds_trig = list(inj_data.keys())[0] + inj_data = inj_data[ds_trig] + ds_trig = int(ds_trig[2:]) + + for DS_i in range(1, ds_count + 1): + ds_map = format(DS_i, f'0{sim_ds_count}b') + + if ds_map[-ds_trig] == '1': + + # store the consequence data + for severity in ['S1', 'S2']: + + A_affected = inj_data[0] + + if severity == 'S1': + theta_0 = inj_data[1] + theta_1 = inj_data[2] + elif severity == 'S2': + theta_0 = inj_data[3] + theta_1 = inj_data[4] + + + + if theta_0 != 0.0: + + df_db.loc[(cmp.Index, severity), + f'DS{DS_i}-Family'] = 'lognormal' + + df_db.loc[(cmp.Index, severity), + f'DS{DS_i}-Theta_0'] = theta_0 + + df_db.loc[(cmp.Index, severity), + f'DS{DS_i}-Theta_1'] = theta_1 + + df_db.loc[(cmp.Index, severity), + f'DS{DS_i}-AffectedArea'] = A_affected + + # store the metadata + if ds_map.count('1') == 1: + + ds_pure_id = ds_map[::-1].find('1') + 1 + + meta_data['DamageStates'].update({f"DS{DS_i}": { + "Description": f"Pure DS{ds_pure_id}. " + + cmp_meta[ + f"DS_{ds_pure_id}_Description"] + }}) else: - r_cost, r_time = parse_DS_xml(DSG_xml) - CONSEQ = json_output['DSGroups'][DSG_i][ - 'DamageStates'][0]['Consequences'] - CONSEQ.update({ - 'ReconstructionCost': r_cost, - 'ReconstructionTime': r_time - }) - if ((r_cost['Amount'] == 'Undefined') or - (r_time['Amount'] == 'Undefined')): - incomplete = True - - if incomplete: - json_output['GeneralInformation']['Incomplete'] = True - incomplete_count += 1 - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{comp_ID}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - #except: - # warnings.warn(UserWarning( - # 'Error converting data for component {}'.format(comp_ID))) - - # finally, copy the population file - shutil.copy( - data_dir / 'population.json', - target_dir / 'population.json' - ) + ds_combo = [f'DS{_.start() + 1}' + for _ in re.finditer('1', ds_map[::-1])] -def create_HAZUS_EQ_json_files(data_dir, target_dir): - """ - Create JSON data files from publicly available HAZUS data. + meta_data['DamageStates'].update({f"DS{DS_i}": { + "Description": 'Combination of ' + + ' & '.join(ds_combo) + }}) + + # for every other component... + else: + # now look at each Damage State + for DS_i in range(1, 6): + + casualty_flag = getattr( + cmp, f'DS_{DS_i}_Potential_non_collapse_casualty') + + if casualty_flag==True: + + A_affected = getattr(cmp, + f'DS_{DS_i}___Casualty_Affected_Area') + + for severity in ['S1', 'S2']: + + if severity == 'S1': + theta_0 = getattr(cmp, f'DS_{DS_i}_Serious_Injury_' + f'Rate___Median') + theta_1 = getattr(cmp, f'DS_{DS_i}_Serious_Injury_' + f'Rate___Dispersion') + elif severity == 'S2': + theta_0 = getattr(cmp, f'DS_{DS_i}_Loss_of_Life_' + f'Rate___Median') + theta_1 = getattr(cmp, f'DS_{DS_i}_Loss_of_Life_' + f'Rate___Dispersion') + + if theta_0 != 0.0: + + df_db.loc[(cmp.Index, severity), + f'DS{DS_i}-Family'] = 'lognormal' + + df_db.loc[(cmp.Index, severity), + f'DS{DS_i}-Theta_0'] = theta_0 + + df_db.loc[(cmp.Index, severity), + f'DS{DS_i}-Theta_1'] = theta_1 + + df_db.loc[(cmp.Index, severity), + f'DS{DS_i}-AffectedArea'] = A_affected - HAZUS damage and loss information is publicly available in the technical - manuals. The relevant tables have been converted into a JSON input file - (hazus_data_eq.json) that is stored in the 'resources/HAZUS MH 2.1' folder - in the pelicun repo. Here we read that file (or a file of similar format) - and produce damage and loss data for Fragility Groups in the common - SimCenter JSON format. + if (pd.isna(theta_0) or pd.isna(theta_1) or + pd.isna(A_affected)): + + if severity == 'S1': + incomplete_S1 = True + else: + incomplete_S2 = True + + if ~np.isnan(casualty_flag): + + meta_data['DamageStates'].update({ + f"DS{DS_i}": {"Description": + cmp_meta[f"DS_{DS_i}_Description"]}}) + + df_db.loc[(cmp.Index, 'S1'), 'Incomplete'] = int(incomplete_S1) + df_db.loc[(cmp.Index, 'S2'), 'Incomplete'] = int(incomplete_S2) + + # store the metadata for this component + meta_dict.update({cmp.Index: meta_data}) + + # review the database and drop rows with no information + cmp_to_drop = [] + for cmp in df_db.index: + + empty = True + + for DS_i in range(1, 16): + if not pd.isna(df_db.loc[cmp, f'DS{DS_i}-Family']): + empty = False + break + + if empty: + cmp_to_drop.append(cmp) + + df_db.drop(cmp_to_drop, axis=0, inplace=True) + cmp_kept = df_db.index.get_level_values(0).unique() + + cmp_to_drop = [] + for cmp in meta_dict.keys(): + if cmp not in cmp_kept: + cmp_to_drop.append(cmp) + + for cmp in cmp_to_drop: + del meta_dict[cmp] + + # convert to optimal datatypes to reduce file size + df_db = df_db.convert_dtypes() + + df_db = convert_to_SimpleIndex(df_db, 0) + + # rename the index + df_db.index.name = "ID" + + # save the consequence data + df_db.to_csv(target_data_file) + + # save the metadata + with open(target_meta_file, 'w+') as f: + json.dump(meta_dict, f, indent=2) + + print("Successfully parsed and saved the injury consequence data from FEMA " + "P58") + +def create_FEMA_P58_bldg_redtag_db(source_file, + target_data_file='bldg_redtag_DB_FEMA_P58_2nd.csv', + target_meta_file='bldg_redtag_DB_FEMA_P58_2nd.json'): + """ + Create an red tag consequence parameter database based on the FEMA P58 data - HAZUS handles damage and losses at the assembly level differentiating only - structural and two types of non-structural component assemblies. In this - implementation we consider each of those assemblies a Fragility Group - and describe their damage and its consequences in a FEMA P58-like framework - but using the data from the HAZUS Technical Manual. + The method was developed to process v3.1.2 of the FragilityDatabase xls + that is provided with FEMA P58 2nd edition. Parameters ---------- - data_dir: string - Path to the folder with the hazus_data_eq JSON file. - target_dir: string - Path to the folder where the results shall be saved. The population - distribution file will be saved here, the DL JSON files will be saved - to a 'DL json' subfolder. + source_file: string + Path to the fragility database file. + target_data_file: string + Path where the consequence data file should be saved. A csv file is + expected. + target_meta_file: string + Path where the consequence metadata should be saved. A json file is + expected. """ - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None - - convert_design_level = { - 'High_code' : 'HC', - 'Moderate_code': 'MC', - 'Low_code' : 'LC', - 'Pre_code' : 'PC' + # parse the source file + df = pd.read_excel(source_file, sheet_name='Summary', header=2, index_col=1, + true_values=["YES", "Yes", "yes"], + false_values=["NO", "No", "no"]) + + # take another pass with booleans because the first does not always work + for true_str in ["YES", "Yes", "yes"]: + df.replace(true_str, True, inplace=True) + + for false_str in ["NO", "No", "no"]: + df.replace(false_str, False, inplace=True) + + # remove empty rows and columns + df.dropna(axis=0, how='all', inplace=True) + df.dropna(axis=1, how='all', inplace=True) + + # filter the columns we need for the injury database + cols_to_db = [ + 'DS Hierarchy', + ] + for DS_i in range(1, 6): + cols_to_db += [ + f'DS {DS_i}, Unsafe Placard Trigger Flag', + f'DS {DS_i}, Unsafe Placard Damage Median', + f'DS {DS_i}, Unsafe Placard Damage Dispersion' + ] + + # filter the columns that we need for the metadata + cols_to_meta = [ + "Component Name", + "Component Description", + "Construction Quality:", + "Seismic Installation Conditions:", + "Comments / Notes", + "Author", + "Fragility Unit of Measure", + "Round to Integer Unit?", + "DS 1, Description", + "DS 2, Description", + "DS 3, Description", + "DS 4, Description", + "DS 5, Description", + ] + + # remove special characters to make it easier to work with column names + str_map = { + ord(' '): "_", + ord('.'): "_", + ord('-'): "_", + ord(':'): None, + ord('('): None, + ord(')'): None, + ord('?'): None, + ord('/'): None, + ord(','): None, } - convert_DS_description = { - 'DS1': 'Slight', - 'DS2': 'Moderate', - 'DS3': 'Extensive', - 'DS4': 'Complete', - 'DS5': 'Collapse', - } + df_db_source = df.loc[:, cols_to_db] + df_db_source.columns = [s.translate(str_map) for s in cols_to_db] + df_db_source.sort_index(inplace=True) + + df_meta = df.loc[:, cols_to_meta] + df_meta.columns = [s.translate(str_map) for s in cols_to_meta] + + df_db_source.replace('BY USER', np.nan, inplace=True) + df_db_source.replace('By User', np.nan, inplace=True) + + # initialize the output loss table + # define the columns + out_cols = [ + "Incomplete", + ] + for DS_i in range(1, 6): + out_cols += [ + f"DS{DS_i}-Family", + f"DS{DS_i}-Theta_0", + f"DS{DS_i}-Theta_1" + ] + + # create the database index + comps = df_db_source.index.values + + df_db = pd.DataFrame( + columns=out_cols, + index=comps, + dtype=float + ) - # open the raw HAZUS data - with open(data_dir / 'hazus_data_eq.json', 'r') as f: - raw_data = json.load(f) + # initialize the dictionary that stores the loss metadata + meta_dict = {} - design_levels = list( - raw_data['Structural_Fragility_Groups']['EDP_limits'].keys()) - building_types = list( - raw_data['Structural_Fragility_Groups']['P_collapse'].keys()) - occupancy_types = list(raw_data['Structural_Fragility_Groups'][ - 'Reconstruction_cost'].keys()) + # for each component... + # (this approach is not efficient, but easy to follow which was considered + # more important than efficiency.) + for cmp in df_db_source.itertuples(): - S_data = raw_data['Structural_Fragility_Groups'] - NSA_data = raw_data[ - 'NonStructural_Acceleration_Sensitive_Fragility_Groups'] - NSD_data = raw_data['NonStructural_Drift_Sensitive_Fragility_Groups'] + # assume the component information is complete + incomplete = False - for ot in occupancy_types: + # get the raw metadata for the component + cmp_meta = df_meta.loc[cmp.Index, :] - # first, structural fragility groups - for dl in design_levels: - for bt in building_types: - if bt in S_data['EDP_limits'][dl].keys(): - - json_output = {} - - dl_id = 'S-{}-{}-{}'.format(bt, - convert_design_level[dl], - ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': False, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Roof Drift Ratio', - 'Unit': [1, 'rad'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - EDP_lim = S_data['EDP_limits'][dl][bt] - - for dsg_i in range(4): - json_output['DSGroups'].append({ - 'MedianEDP' : EDP_lim[dsg_i], - 'Beta' : S_data['Fragility_beta'][dl], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': {}, - 'Description' : 'DS{}'.format(dsg_i + 1), - }] - }) - # the last DSG is different - if dsg_i == 3: - json_output['DSGroups'][-1][ - 'DSGroupType'] = 'MutuallyExclusive' - DS5_w = S_data['P_collapse'][bt] - json_output['DSGroups'][-1][ - 'DamageStates'].append({ - 'Weight' : DS5_w, - 'Consequences': {}, - 'Description' : 'DS5' - }) - json_output['DSGroups'][-1]['DamageStates'][0][ - 'Weight'] = 1.0 - DS5_w - - for dsg_i, DSG in enumerate(json_output['DSGroups']): - base_cost = S_data['Reconstruction_cost'][ot][dsg_i] / 100. - base_time = S_data['Reconstruction_time'][ot][dsg_i] - - for DS in DSG['DamageStates']: - DS_id = DS['Description'] - DS['Consequences'] = { - # injury rates are provided in percentages of the population - 'Injuries' : [ - {'Amount': val / 100.} for val in - S_data['Injury_rates'][DS_id][bt]], - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - 'ReconstructionTime': { - "Amount": base_time, - "CurveType": "N/A", - } - } - DS['Description'] = convert_DS_description[ - DS['Description']] - - # create the DL json directory (if it does not exist) - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # second, nonstructural acceleration sensitive fragility groups - json_output = {} - - dl_id = 'NSA-{}-{}'.format(convert_design_level[dl], ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': False, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Peak Floor Acceleration', - 'Unit': [1, 'g'], - 'Offset': NSA_data.get('Offset', 0) - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - - for dsg_i in range(4): - base_cost = NSA_data['Reconstruction_cost'][ot][dsg_i] / 100. - - json_output['DSGroups'].append({ - 'MedianEDP' : NSA_data['EDP_limits'][dl][dsg_i], - 'Beta' : NSA_data['Fragility_beta'], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - }, - 'Description' : convert_DS_description[ - 'DS{}'.format(dsg_i + 1)] - }] - }) - - # create the DL json directory (if it does not exist) - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # third, nonstructural drift sensitive fragility groups - json_output = {} - - dl_id = 'NSD-{}'.format(ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': False, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Roof Drift Ratio', - 'Unit': [1, 'rad'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - - for dsg_i in range(4): - base_cost = NSD_data['Reconstruction_cost'][ot][dsg_i] / 100. - - json_output['DSGroups'].append({ - 'MedianEDP' : NSD_data['EDP_limits'][dsg_i], - 'Beta' : NSD_data['Fragility_beta'], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - }, - 'Description' : convert_DS_description[ - 'DS{}'.format(dsg_i + 1)] - }] - }) - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # finally, prepare the population distribution data - PD_data = raw_data['Population_Distribution'] - - pop_output = {} - for ot in PD_data.keys(): - night_ids = raw_data['Parts_of_day']['Nighttime'] - day_ids = raw_data['Parts_of_day']['Daytime'] - commute_ids = raw_data['Parts_of_day']['Commute'] - - daily_pop = np.ones(24) - daily_pop[night_ids] = PD_data[ot][0] - daily_pop[day_ids] = PD_data[ot][1] - daily_pop[commute_ids] = PD_data[ot][2] - daily_pop = list(daily_pop) - - # HAZUS does not introduce monthly and weekend/weekday variation - pop_output.update({ot: { - "weekday": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - }, - "weekend": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - } - }}) - - with open(target_dir / 'population.json', 'w') as f: - json.dump(pop_output, f, indent=2) - -def create_HAZUS_EQ_story_json_files(data_dir, target_dir): - """ - Create JSON data files from publicly available HAZUS data. + # store the global (i.e., not DS-specific) metadata - HAZUS damage and loss information is publicly available in the technical - manuals. The relevant tables have been converted into a JSON input file - (hazus_data_eq.json) that is stored in the 'resources/HAZUS MH 2.1' folder - in the pelicun repo. Here we read that file (or a file of similar format) - and produce damage and loss data for Fragility Groups in the common - SimCenter JSON format. + # every component is assumed to have a comp. description + comments = cmp_meta['Component_Description'] - HAZUS handles damage and losses at the assembly level differentiating only - structural and two types of non-structural component assemblies. In this - implementation we consider each of those assemblies a Fragility Group - and describe their damage and its consequences in a FEMA P58-like framework - but using the data from the HAZUS Technical Manual. + # the additional fields are added to the description if they exist + if cmp_meta['Construction_Quality'] != 'Not Specified': + comments += f'\nConstruction Quality: ' \ + f'{cmp_meta["Construction_Quality"]}' - Parameters - ---------- - data_dir: string - Path to the folder with the hazus_data_eq JSON file. - target_dir: string - Path to the folder where the results shall be saved. The population - distribution file will be saved here, the DL JSON files will be saved - to a 'DL json' subfolder. + if cmp_meta['Seismic_Installation_Conditions'] not in [ + 'Not Specified', 'Not applicable', 'Unknown', 'Any']: + comments += f'\nSeismic Installation Conditions: ' \ + f'{cmp_meta["Seismic_Installation_Conditions"]}' + + if cmp_meta['Comments__Notes'] != 'None': + comments += f'\nNotes: {cmp_meta["Comments__Notes"]}' + + if cmp_meta['Author'] not in ['Not Given', 'By User']: + comments += f'\nAuthor: {cmp_meta["Author"]}' + + # get the suggested block size and replace the misleading values with ea + block_size = cmp_meta['Fragility_Unit_of_Measure'].split(' ')[::-1] + + meta_data = { + "Description": cmp_meta['Component_Name'], + "Comments": comments, + "SuggestedComponentBlockSize": ' '.join(block_size), + "RoundUpToIntegerQuantity": cmp_meta['Round_to_Integer_Unit'], + "ControllingDemand": "Damage Quantity", + "DamageStates": {} + } + + + + # Handle components with simultaneous damage states separately + if 'Simul' in cmp.DS_Hierarchy: + + pass + # Note that we are assuming that components with simultaneous + # damage states do not have damage that would trigger a red tag. + # This assumption holds for the second edition of FEMA P58, but it + # might need to be revisited in future editions. + + # for every other component... + else: + # now look at each Damage State + for DS_i in range(1, 6): + + redtag_flag = getattr( + cmp, f'DS_{DS_i}_Unsafe_Placard_Trigger_Flag') + + if redtag_flag==True: + + theta_0 = getattr(cmp, f'DS_{DS_i}_Unsafe_Placard_Damage_' + f'Median') + theta_1 = getattr(cmp, f'DS_{DS_i}_Unsafe_Placard_Damage_' + f'Dispersion') + + if theta_0 != 0.0: + + df_db.loc[cmp.Index, f'DS{DS_i}-Family'] = 'lognormal' + + df_db.loc[cmp.Index, f'DS{DS_i}-Theta_0'] = theta_0 + + df_db.loc[cmp.Index, f'DS{DS_i}-Theta_1'] = theta_1 + + if (pd.isna(theta_0) or pd.isna(theta_1)): + + incomplete = True + + if ~np.isnan(redtag_flag): + + meta_data['DamageStates'].update({ + f"DS{DS_i}": {"Description": + cmp_meta[f"DS_{DS_i}_Description"]}}) + + df_db.loc[cmp.Index, 'Incomplete'] = int(incomplete) + + # store the metadata for this component + meta_dict.update({cmp.Index: meta_data}) + + # review the database and drop rows with no information + cmp_to_drop = [] + for cmp in df_db.index: + + empty = True + for DS_i in range(1, 6): + if not pd.isna(df_db.loc[cmp, f'DS{DS_i}-Family']): + empty = False + break + + if empty: + cmp_to_drop.append(cmp) + + df_db.drop(cmp_to_drop, axis=0, inplace=True) + cmp_kept = df_db.index.get_level_values(0).unique() + + cmp_to_drop = [] + for cmp in meta_dict.keys(): + if cmp not in cmp_kept: + cmp_to_drop.append(cmp) + + for cmp in cmp_to_drop: + del meta_dict[cmp] + + # convert to optimal datatypes to reduce file size + df_db = df_db.convert_dtypes() + + # rename the index + df_db.index.name = "ID" + + # save the consequence data + df_db.to_csv(target_data_file) + + # save the metadata + with open(target_meta_file, 'w+') as f: + json.dump(meta_dict, f, indent=2) + + print("Successfully parsed and saved the red tag consequence data from FEMA " + "P58") + +def create_Hazus_EQ_fragility_db(source_file, + target_data_file='fragility_DB_Hazus_EQ.csv', + target_meta_file='fragility_DB_Hazus_EQ.json'): """ + Create a database file based on the HAZUS EQ Technical Manual - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None + This method was developed to process a json file with tabulated data from + v4.2.3 of the Hazus Earthquake Technical Manual. The json file is included + in the resources folder of pelicun - convert_design_level = { - 'High_code' : 'HC', - 'Moderate_code': 'MC', - 'Low_code' : 'LC', - 'Pre_code' : 'PC' - } + Parameters + ---------- + source_file: string + Path to the fragility database file. + target_data_file: string + Path where the fragility data file should be saved. A csv file is + expected. + target_meta_file: string + Path where the fragility metadata should be saved. A json file is + expected. - convert_DS_description = { - 'DS1': 'Slight', - 'DS2': 'Moderate', - 'DS3': 'Extensive', - 'DS4': 'Complete', - 'DS5': 'Collapse', - } + """ - # open the raw HAZUS data - with open(data_dir / 'hazus_data_eq.json', 'r') as f: + # parse the source file + with open(source_file, 'r') as f: raw_data = json.load(f) + # prepare lists of labels for various building features design_levels = list( raw_data['Structural_Fragility_Groups']['EDP_limits'].keys()) + building_types = list( raw_data['Structural_Fragility_Groups']['P_collapse'].keys()) - occupancy_types = list(raw_data['Structural_Fragility_Groups'][ - 'Reconstruction_cost'].keys()) + convert_design_level = { + 'High_code': 'HC', + 'Moderate_code': 'MC', + 'Low_code': 'LC', + 'Pre_code': 'PC' + } + + # initialize the fragility table + df_db = pd.DataFrame( + columns=[ + "ID", + "Incomplete", + "Demand-Type", + "Demand-Unit", + "Demand-Offset", + "Demand-Directional", + "LS1-Family", + "LS1-Theta_0", + "LS1-Theta_1", + "LS1-DamageStateWeights", + "LS2-Family", + "LS2-Theta_0", + "LS2-Theta_1", + "LS2-DamageStateWeights", + "LS3-Family", + "LS3-Theta_0", + "LS3-Theta_1", + "LS3-DamageStateWeights", + "LS4-Family", + "LS4-Theta_0", + "LS4-Theta_1", + "LS4-DamageStateWeights" + ], + index=np.arange(len(building_types) * len(design_levels) * 5), + dtype=float + ) + counter = 0 + + # First, prepare the structural fragilities S_data = raw_data['Structural_Fragility_Groups'] - NSA_data = raw_data[ - 'NonStructural_Acceleration_Sensitive_Fragility_Groups'] + + for bt in building_types: + for dl in design_levels: + if bt in S_data['EDP_limits'][dl].keys(): + + # create the component id + cmp_id = f'STR.{bt}.{convert_design_level[dl]}' + df_db.loc[counter, 'ID'] = cmp_id + + # store demand specifications + df_db.loc[counter, 'Demand-Type'] = "Peak Roof Drift Ratio" + df_db.loc[counter, 'Demand-Unit'] = "rad" + df_db.loc[counter, 'Demand-Offset'] = 0 + + # store the Limit State parameters + for LS_i in range(1, 5): + + df_db.loc[counter, f'LS{LS_i}-Family'] = 'lognormal' + df_db.loc[counter, f'LS{LS_i}-Theta_0'] = \ + S_data['EDP_limits'][dl][bt][LS_i - 1] + df_db.loc[counter, f'LS{LS_i}-Theta_1'] = \ + S_data['Fragility_beta'][dl] + + if LS_i == 4: + p_coll = S_data['P_collapse'][bt] + df_db.loc[counter, f'LS{LS_i}-DamageStateWeights'] = ( + f'{1.0 - p_coll} | {p_coll}') + + counter += 1 + + # Second, the non-structural drift sensitive one NSD_data = raw_data['NonStructural_Drift_Sensitive_Fragility_Groups'] - for ot in occupancy_types: + # create the component id + df_db.loc[counter, 'ID'] = f'NSD' + + # store demand specifications + df_db.loc[counter, 'Demand-Type'] = "Peak Roof Drift Ratio" + df_db.loc[counter, 'Demand-Unit'] = "rad" + df_db.loc[counter, 'Demand-Offset'] = 0 + + # store the Limit State parameters + for LS_i in range(1, 5): + df_db.loc[counter, f'LS{LS_i}-Family'] = 'lognormal' + df_db.loc[counter, f'LS{LS_i}-Theta_0'] = NSD_data['EDP_limits'][ + LS_i - 1] + df_db.loc[counter, f'LS{LS_i}-Theta_1'] = NSD_data['Fragility_beta'] + + counter += 1 + + # Third, the non-structural acceleration sensitive fragilities + NSA_data = raw_data['NonStructural_Acceleration_Sensitive_Fragility_Groups'] + + for dl in design_levels: + + # create the component id + cmp_id = f'NSA.{convert_design_level[dl]}' + df_db.loc[counter, 'ID'] = cmp_id + + # store demand specifications + df_db.loc[counter, 'Demand-Type'] = "Peak Floor Acceleration" + df_db.loc[counter, 'Demand-Unit'] = "g" + df_db.loc[counter, 'Demand-Offset'] = 1 + + # store the Limit State parameters + for LS_i in range(1, 5): + df_db.loc[counter, f'LS{LS_i}-Family'] = 'lognormal' + df_db.loc[counter, f'LS{LS_i}-Theta_0'] = \ + NSA_data['EDP_limits'][dl][LS_i - 1] + df_db.loc[counter, f'LS{LS_i}-Theta_1'] = NSA_data['Fragility_beta'] - # first, structural fragility groups + counter += 1 + + # Fourth, the lifeline facilities + LF_data = raw_data['Lifeline_Facilities'] + + for bt in building_types: for dl in design_levels: - for bt in building_types: - if bt in S_data['EDP_limits'][dl].keys(): - - json_output = {} - - dl_id = 'S-{}-{}-{}'.format(bt, - convert_design_level[dl], - ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': True, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Story Drift Ratio', - 'Unit': [1, 'rad'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - EDP_lim = S_data['EDP_limits'][dl][bt] - - for dsg_i in range(4): - json_output['DSGroups'].append({ - 'MedianEDP' : EDP_lim[dsg_i], - 'Beta' : S_data['Fragility_beta'][dl], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': {}, - 'Description' : 'DS{}'.format(dsg_i + 1), - }] - }) - # the last DSG is different - if dsg_i == 3: - json_output['DSGroups'][-1][ - 'DSGroupType'] = 'MutuallyExclusive' - DS5_w = S_data['P_collapse'][bt] - json_output['DSGroups'][-1][ - 'DamageStates'].append({ - 'Weight' : DS5_w, - 'Consequences': {}, - 'Description' : 'DS5' - }) - json_output['DSGroups'][-1]['DamageStates'][0][ - 'Weight'] = 1.0 - DS5_w - - for dsg_i, DSG in enumerate(json_output['DSGroups']): - base_cost = S_data['Reconstruction_cost'][ot][dsg_i] / 100. - base_time = S_data['Reconstruction_time'][ot][dsg_i] - - for DS in DSG['DamageStates']: - DS_id = DS['Description'] - DS['Consequences'] = { - # injury rates are provided in percentages of the population - 'Injuries' : [ - {'Amount': val / 100.} for val in - S_data['Injury_rates'][DS_id][bt]], - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - 'ReconstructionTime': { - "Amount": base_time, - "CurveType": "N/A", - } - } - DS['Description'] = convert_DS_description[ - DS['Description']] - - # create the DL json directory (if it does not exist) - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # second, nonstructural acceleration sensitive fragility groups - json_output = {} - - dl_id = 'NSA-{}-{}'.format(convert_design_level[dl], ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': False, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Peak Floor Acceleration', - 'Unit': [1, 'g'], - 'Offset': NSA_data.get('Offset', 0) - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - - for dsg_i in range(4): - base_cost = NSA_data['Reconstruction_cost'][ot][dsg_i] / 100. - - json_output['DSGroups'].append({ - 'MedianEDP' : NSA_data['EDP_limits'][dl][dsg_i], - 'Beta' : NSA_data['Fragility_beta'], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - }, - 'Description' : convert_DS_description[ - 'DS{}'.format(dsg_i + 1)] - }] - }) - - # create the DL json directory (if it does not exist) - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # third, nonstructural drift sensitive fragility groups - json_output = {} - - dl_id = 'NSD-{}'.format(ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': True, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Story Drift Ratio', - 'Unit': [1, 'rad'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - - for dsg_i in range(4): - base_cost = NSD_data['Reconstruction_cost'][ot][dsg_i] / 100. - - json_output['DSGroups'].append({ - 'MedianEDP' : NSD_data['EDP_limits'][dsg_i], - 'Beta' : NSD_data['Fragility_beta'], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - }, - 'Description' : convert_DS_description[ - 'DS{}'.format(dsg_i + 1)] - }] - }) - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # finally, prepare the population distribution data - PD_data = raw_data['Population_Distribution'] - - pop_output = {} - for ot in PD_data.keys(): - night_ids = raw_data['Parts_of_day']['Nighttime'] - day_ids = raw_data['Parts_of_day']['Daytime'] - commute_ids = raw_data['Parts_of_day']['Commute'] - - daily_pop = np.ones(24) - daily_pop[night_ids] = PD_data[ot][0] - daily_pop[day_ids] = PD_data[ot][1] - daily_pop[commute_ids] = PD_data[ot][2] - daily_pop = list(daily_pop) - - # HAZUS does not introduce monthly and weekend/weekday variation - pop_output.update({ot: { - "weekday": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - }, - "weekend": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - } - }}) - - with open(target_dir / 'population.json', 'w') as f: - json.dump(pop_output, f, indent=2) - -def create_HAZUS_EQ_PGA_json_files(data_dir, target_dir): + if bt in LF_data['EDP_limits'][dl].keys(): + + # create the component id + cmp_id = f'LF.{bt}.{convert_design_level[dl]}' + df_db.loc[counter, 'ID'] = cmp_id + + # store demand specifications + df_db.loc[counter, 'Demand-Type'] = "Peak Ground Acceleration" + df_db.loc[counter, 'Demand-Unit'] = "g" + df_db.loc[counter, 'Demand-Offset'] = 0 + + # store the Limit State parameters + for LS_i in range(1, 5): + + df_db.loc[counter, f'LS{LS_i}-Family'] = 'lognormal' + df_db.loc[counter, f'LS{LS_i}-Theta_0'] = \ + LF_data['EDP_limits'][dl][bt][LS_i - 1] + df_db.loc[counter, f'LS{LS_i}-Theta_1'] = \ + LF_data['Fragility_beta'][dl] + + if LS_i == 4: + p_coll = LF_data['P_collapse'][bt] + df_db.loc[counter, f'LS{LS_i}-DamageStateWeights'] = ( + f'{1.0 - p_coll} | {p_coll}') + + counter += 1 + + # Fifth, the ground failure fragilities + GF_data = raw_data['Ground_Failure'] + + for direction in ['Horizontal', 'Vertical']: + for f_depth in ['Shallow', 'Deep']: + # create the component id + cmp_id = f'GF.{direction[0]}.{f_depth[0]}' + df_db.loc[counter, 'ID'] = cmp_id + + # store demand specifications + df_db.loc[counter, 'Demand-Type'] = "Permanent Ground Deformation" + df_db.loc[counter, 'Demand-Unit'] = "inch" + df_db.loc[counter, 'Demand-Offset'] = 0 + + # store the Limit State parameters + df_db.loc[counter, f'LS1-Family'] = 'lognormal' + df_db.loc[counter, f'LS1-Theta_0'] = \ + GF_data['EDP_limits'][direction][f_depth] + df_db.loc[counter, f'LS1-Theta_1'] = \ + GF_data['Fragility_beta'][direction][f_depth] + p_complete = GF_data['P_Complete'] + df_db.loc[counter, f'LS1-DamageStateWeights'] = ( + f'{1.0 - p_complete} | {p_complete}') + + counter += 1 + + # remove empty rows (from the end) + df_db.dropna(how='all', inplace=True) + + # All Hazus components have complete fragility info, + df_db.loc[:, 'Incomplete'] = 0 + + # none of them are directional, + df_db.loc[:, 'Demand-Directional'] = 0 + + # rename the index + df_db.set_index("ID", inplace=True) + + # convert to optimal datatypes to reduce file size + df_db = df_db.convert_dtypes() + + # save the fragility data + df_db.to_csv(target_data_file) + + # save the metadata - later + #with open(target_meta_file, 'w+') as f: + # json.dump(meta_dict, f, indent=2) + + print("Successfully parsed and saved the fragility data from Hazus EQ") + +def create_Hazus_EQ_bldg_repair_db(source_file, + target_data_file='bldg_repair_DB_Hazus_EQ.csv', + target_meta_file='bldg_repair_DB_Hazus_EQ.json'): """ - Create JSON data files from publicly available HAZUS data. - - HAZUS damage and loss information is publicly available in the technical - manuals. The relevant tables have been converted into a JSON input file - (hazus_data_eq.json) that is stored in the 'resources/HAZUS MH 2.1 - earthquake PGA' folder in the pelicun repo. Here we read that file (or a - file of similar format) and produce damage and loss data for Fragility - Groups in the common SimCenter JSON format. - - HAZUS handles damage and losses at the assembly level. This method assumes - that we use the fragility curves controlled by equivalent PGA from HAZUS. - Those curves are only available for structural component assemblies. A - Fragility Group is created for each of the structural configurations that - describes their damage and its consequences in a FEMA P58-like framework - but using the data from the HAZUS Technical Manual. + Create a database file based on the HAZUS EQ Technical Manual + + This method was developed to process a json file with tabulated data from + v4.2.3 of the Hazus Earthquake Technical Manual. The json file is included + in the resources folder of pelicun Parameters ---------- - data_dir: string - Path to the folder with the hazus_data_eq JSON file. - target_dir: string - Path to the folder where the results shall be saved. The population - distribution file will be saved here, the DL JSON files will be saved - to a 'DL json' subfolder. + source_file: string + Path to the Hazus database file. + target_data_file: string + Path where the repair DB file should be saved. A csv file is + expected. + target_meta_file: string + Path where the repair DB metadata should be saved. A json file is + expected. """ - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None + # parse the source file + with open(source_file, 'r') as f: + raw_data = json.load(f) - convert_design_level = { - 'High_code' : 'HC', - 'Moderate_code': 'MC', - 'Low_code' : 'LC', - 'Pre_code' : 'PC' - } + # prepare lists of labels for various building features + occupancies = list( + raw_data['Structural_Fragility_Groups']['Repair_cost'].keys()) + + # initialize the output loss table + # define the columns + out_cols = [ + "Incomplete", + "Quantity-Unit", + "DV-Unit", + ] + for DS_i in range(1, 6): + out_cols += [ + f"DS{DS_i}-Theta_0", + ] + + # create the MultiIndex + cmp_types = ['STR', 'NSD', 'NSA', 'LF'] + comps = [f'{cmp_type}.{occ_type}' + for cmp_type in cmp_types for occ_type in occupancies] + DVs = ['Cost', 'Time'] + df_MI = pd.MultiIndex.from_product([comps, DVs], names=['ID', 'DV']) + + df_db = pd.DataFrame( + columns=out_cols, + index=df_MI, + dtype=float + ) - convert_DS_description = { - 'DS1': 'Slight', - 'DS2': 'Moderate', - 'DS3': 'Extensive', - 'DS4': 'Complete', - 'DS5': 'Collapse', - } + # First, prepare the structural damage consequences + S_data = raw_data['Structural_Fragility_Groups'] - convert_GF_description = { - 'H_S': 'Lateral spreading, shallow foundation', - 'H_D': 'Lateral spreading, deep foundation', - 'V_S': 'Ground settlement, shallow foundation', - 'V_D': 'Ground settlement, deep foundation', - } + for occ_type in occupancies: - # open the raw HAZUS data - with open(data_dir / 'hazus_data_eq.json', 'r') as f: - raw_data = json.load(f) + # create the component id + cmp_id = f'STR.{occ_type}' - # First, the ground shaking fragilities - S_data = raw_data['Structural_Fragility_Groups'] + # store the consequence values for each Damage State + for DS_i in range(1, 6): - design_levels = list(S_data['EDP_limits'].keys()) - building_types = list(S_data['P_collapse'].keys()) - occupancy_types = list(S_data['Reconstruction_cost'].keys()) + # DS4 and DS5 have identical repair consequences + if DS_i == 5: + ds_i = 4 + else: + ds_i = DS_i - for ot in occupancy_types: - for dl in design_levels: - for bt in building_types: - if bt in S_data['EDP_limits'][dl].keys(): - - json_output = {} - - dl_id = 'S-{}-{}-{}'.format(bt, - convert_design_level[dl], - ot) - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': True, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': dl_id, - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Peak Ground Acceleration', - 'Unit': [1, 'g'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - EDP_lim = S_data['EDP_limits'][dl][bt] - - for dsg_i in range(4): - json_output['DSGroups'].append({ - 'MedianEDP' : EDP_lim[dsg_i], - 'Beta' : S_data['Fragility_beta'][dl], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': {}, - 'Description' : 'DS{}'.format(dsg_i + 1), - }] - }) - # the last DSG is different - if dsg_i == 3: - json_output['DSGroups'][-1][ - 'DSGroupType'] = 'MutuallyExclusive' - DS5_w = S_data['P_collapse'][bt] - json_output['DSGroups'][-1][ - 'DamageStates'].append({ - 'Weight' : DS5_w, - 'Consequences': {}, - 'Description' : 'DS5' - }) - json_output['DSGroups'][-1]['DamageStates'][0][ - 'Weight'] = 1.0 - DS5_w - - for dsg_i, DSG in enumerate(json_output['DSGroups']): - base_cost = S_data['Reconstruction_cost'][ot][dsg_i] / 100. - base_time = S_data['Reconstruction_time'][ot][dsg_i] - - for DS in DSG['DamageStates']: - DS_id = DS['Description'] - DS['Consequences'] = { - # injury rates are provided in percentages of the population - 'Injuries' : [ - {'Amount': val / 100.} for val in - S_data['Injury_rates'][DS_id][bt]], - # reconstruction cost is provided in percentages of replacement cost - 'ReconstructionCost': { - "Amount": base_cost, - "CurveType": "N/A", - }, - 'ReconstructionTime': { - "Amount": base_time, - "CurveType": "N/A", - } - } - DS['Description'] = convert_DS_description[ - DS['Description']] - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # Second, the ground failure fragilities - L_data = raw_data['Ground_Failure'] - - ground_failure_types = list(L_data['EDP_limits'].keys()) - - for gf in ground_failure_types: - for bt in building_types: - if bt in L_data['P_collapse'].keys(): - - json_output = {} - - dl_id = f'GF-{gf}-{bt}' - - # this might get replaced by a more descriptive name in the future - json_output.update({'Name': dl_id}) - - # General info - json_output.update({ - 'Directional': True, - 'GeneralInformation': { - 'ID' : dl_id, - 'Description': convert_GF_description[gf], - # this might get replaced by more details in the future - # other fields can be added here if needed - } - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Permanent Ground Deformation', - 'Unit': [1, 'in'] - } - }) - - # Damage State info - json_output.update({'DSGroups': []}) - EDP_lim = L_data['EDP_limits'][gf] - beta_vals = L_data['Fragility_beta'][gf] - - for dsg_i in range(2): - json_output['DSGroups'].append({ - 'MedianEDP' : EDP_lim[dsg_i], - 'Beta' : beta_vals[dsg_i], - 'CurveType' : 'LogNormal', - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': {}, - 'Description' : 'DS{}'.format(dsg_i + 1), - }] - }) - # the last DSG is different - if dsg_i == 1: - json_output['DSGroups'][-1][ - 'DSGroupType'] = 'MutuallyExclusive' - DS5_w = L_data['P_collapse'][bt] - json_output['DSGroups'][-1]['DamageStates'].append({ - 'Weight' : DS5_w, - 'Consequences': {}, - 'Description' : 'DS5' - }) - json_output['DSGroups'][-1]['DamageStates'][0]['Weight'] = 1.0 - DS5_w - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - # consequences are handled through propagating damage to other components - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) - - # prepare the population distribution data - PD_data = raw_data['Population_Distribution'] - - pop_output = {} - for ot in PD_data.keys(): - night_ids = raw_data['Parts_of_day']['Nighttime'] - day_ids = raw_data['Parts_of_day']['Daytime'] - commute_ids = raw_data['Parts_of_day']['Commute'] - - daily_pop = np.ones(24) - daily_pop[night_ids] = PD_data[ot][0] - daily_pop[day_ids] = PD_data[ot][1] - daily_pop[commute_ids] = PD_data[ot][2] - daily_pop = list(daily_pop) - - # HAZUS does not introduce monthly and weekend/weekday variation - pop_output.update({ot: { - "weekday": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - }, - "weekend": { - "daily" : daily_pop, - "monthly": list(np.ones(12)) - } - }}) - - with open(target_dir / 'population.json', 'w') as f: - json.dump(pop_output, f, indent=2) - -def create_HAZUS_HU_json_files(data_dir, target_dir): + df_db.loc[ + (cmp_id, 'Cost'), + f'DS{DS_i}-Theta_0'] = S_data['Repair_cost'][occ_type][ds_i-1] + + df_db.loc[ + (cmp_id, 'Time'), + f'DS{DS_i}-Theta_0'] = S_data['Repair_time'][occ_type][ds_i-1] + + # Second, the non-structural drift sensitive one + NSD_data = raw_data['NonStructural_Drift_Sensitive_Fragility_Groups'] + + for occ_type in occupancies: + + # create the component id + cmp_id = f'NSD.{occ_type}' + + # store the consequence values for each Damage State + for DS_i in range(1, 5): + + df_db.loc[ + (cmp_id, 'Cost'), + f'DS{DS_i}-Theta_0'] = NSD_data['Repair_cost'][occ_type][DS_i-1] + + # Third, the non-structural acceleration sensitive fragilities + NSA_data = raw_data['NonStructural_Acceleration_Sensitive_Fragility_Groups'] + + for occ_type in occupancies: + + # create the component id + cmp_id = f'NSA.{occ_type}' + + # store the consequence values for each Damage State + for DS_i in range(1, 5): + + df_db.loc[ + (cmp_id, 'Cost'), + f'DS{DS_i}-Theta_0'] = NSA_data['Repair_cost'][occ_type][DS_i-1] + + # Fourth, the lifeline facilities + LF_data = raw_data['Lifeline_Facilities'] + + for occ_type in occupancies: + + # create the component id + cmp_id = f'LF.{occ_type}' + + # store the consequence values for each Damage State + for DS_i in range(1, 6): + + # DS4 and DS5 have identical repair consequences + if DS_i == 5: + ds_i = 4 + else: + ds_i = DS_i + + df_db.loc[ + (cmp_id, 'Cost'), + f'DS{DS_i}-Theta_0'] = LF_data['Repair_cost'][occ_type][ds_i - 1] + + df_db.loc[ + (cmp_id, 'Time'), + f'DS{DS_i}-Theta_0'] = LF_data['Repair_time'][occ_type][ds_i - 1] + + # remove empty rows (from the end) + df_db.dropna(how='all', inplace=True) + + # All Hazus components have complete fragility info, + df_db.loc[:, 'Incomplete'] = 0 + + # The damage quantity unit is the same for all consequence values + df_db.loc[:, 'Quantity-Unit'] = "1 EA" + + # The output units are also indentical among all components + df_db.loc[idx[:, 'Cost'], 'DV-Unit'] = "loss_ratio" + df_db.loc[idx[:, 'Time'], 'DV-Unit'] = "day" + + # convert to simple index + df_db = convert_to_SimpleIndex(df_db, 0) + + # rename the index + df_db.index.name = "ID" + + # convert to optimal datatypes to reduce file size + df_db = df_db.convert_dtypes() + + # save the consequence data + df_db.to_csv(target_data_file) + + # save the metadata - later + #with open(target_meta_file, 'w+') as f: + # json.dump(meta_dict, f, indent=2) + + print("Successfully parsed and saved the repair consequence data from Hazus " + "EQ") + +def create_Hazus_EQ_bldg_injury_db(source_file, + target_data_file='bldg_injury_DB_Hazus_EQ.csv', + target_meta_file='bldg_injury_DB_Hazus_EQ.json'): """ - Create JSON data files from publicly available HAZUS data. - - HAZUS damage and loss information is publicly available in the technical - manuals and the HAZUS software tool. The relevant data have been collected - in a series of Excel files (e.g., hu_Wood.xlsx) that are stored in the - 'resources/HAZUS MH 2.1 hurricane' folder in the pelicun repo. Here we read - that file (or a file of similar format) and produce damage and loss data - for Fragility Groups in the common SimCenter JSON format. - - The HAZUS hurricane methodology handles damage and losses at the assembly - level. In this implementation each building is represented by one Fragility - Group that describes the damage states and their consequences in a FEMA - P58-like framework but using the data from the HAZUS Technical Manual. - - Note: HAZUS calculates lossess independently of damage using peak wind gust - speed as a controlling variable. We fitted a model to the curves in HAZUS - that assigns losses to each damage state and determines losses as a function - of building damage. Results shall be in good agreement with those of HAZUS - for the majority of building configurations. Exceptions and more details - are provided in the ... section of the documentation. + Create a database file based on the HAZUS EQ Technical Manual + + This method was developed to process a json file with tabulated data from + v4.2.3 of the Hazus Earthquake Technical Manual. The json file is included + in the resources folder of pelicun Parameters ---------- - data_dir: string - Path to the folder with the hazus_data_eq JSON file. - target_dir: string - Path to the folder where the results shall be saved. The population - distribution file will be saved here, the DL JSON files will be saved - to a 'DL json' subfolder. + source_file: string + Path to the Hazus database file. + target_data_file: string + Path where the injury DB file should be saved. A csv file is + expected. + target_meta_file: string + Path where the injury DB metadata should be saved. A json file is + expected. """ - data_dir = Path(data_dir).resolve() - target_dir = Path(target_dir).resolve() - DL_dir = None + # parse the source file + with open(source_file, 'r') as f: + raw_data = json.load(f) - # open the raw HAZUS data - df_wood = pd.read_excel(data_dir / 'hu_Wood.xlsx') + # prepare lists of labels for various building features + building_types = list( + raw_data['Structural_Fragility_Groups']['P_collapse'].keys()) - # some general formatting to make file name generation easier - df_wood['shutters'] = df_wood['shutters'].astype(int) - df_wood['terr_rough'] = (df_wood['terr_rough'] * 100.).astype(int) + # initialize the output loss table + # define the columns + out_cols = [ + "Incomplete", + "Quantity-Unit", + "DV-Unit", + ] + for DS_i in range(1, 6): + out_cols += [ + f"DS{DS_i}-Theta_0", + ] + + # create the MultiIndex + cmp_types = ['STR', 'LF'] + comps = [f'{cmp_type}.{bt}' + for cmp_type in cmp_types for bt in building_types] + DVs = ['S1', 'S2', 'S3', 'S4'] + df_MI = pd.MultiIndex.from_product([comps, DVs], names=['ID', 'DV']) + + df_db = pd.DataFrame( + columns=out_cols, + index=df_MI, + dtype=float + ) - convert_building_type = { - 'WSF1' : 'Wood Single-Family Homes 1 story', - 'WSF2' : 'Wood Single-Family Homes 2+ stories', - 'WMUH1': 'Wood Multi-Unit or Hotel or Motel 1 story', - 'WMUH2': 'Wood Multi-Unit or Hotel or Motel 2 stories', - 'WMUH3': 'Wood Multi-Unit or Hotel or Motel 3+ stories', - } + # First, prepare the structural damage consequences + S_data = raw_data['Structural_Fragility_Groups'] - convert_bldg_char_names = { - 'roof_shape' : 'Roof Shape', - 'sec_water_res' : 'Secondary Water Resistance', - 'roof_deck_attch': 'Roof Deck Attachment', - 'roof_wall_conn' : 'Roof-Wall Connection', - 'garage' : 'Garage', - 'shutters' : 'Shutters', - 'roof_cover' : 'Roof Cover Type', - 'roof_quality' : 'Roof Cover Quality', - 'terr_rough' : 'Terrain', - } + for bt in building_types: - convert_bldg_chars = { - 1 : True, - 0 : False, + # create the component id + cmp_id = f'STR.{bt}' - 'gab' : 'gable', - 'hip' : 'hip', - 'flt' : 'flat', + # store the consequence values for each Damage State + for DS_i in range(1, 6): - '6d' : '6d @ 6"/12"', - '8d' : '8d @ 6"/12"', - '6s' : '6d/8d mix @ 6"/6"', - '8s' : '8D @ 6"/6"', + # DS5 is stored under 'collapse' + if DS_i == 5: + ds_i = 'Collapse' + else: + ds_i = f'DS{DS_i}' - 'tnail': 'Toe-nail', - 'strap': 'Strap', + for S_i in range(1,5): + s_label = f'S{S_i}' + df_db.loc[(cmp_id, s_label), f'DS{DS_i}-Theta_0'] = ( + S_data['Injury_rates'][ds_i][bt][S_i-1]) - 'no' : 'None', - 'wkd' : 'Weak', - 'std' : 'Standard', - 'sup' : 'SFBC 1994', + # Second, the lifeline facilities + LF_data = raw_data['Lifeline_Facilities'] - 'bur' : 'BUR', - 'spm' : 'SPM', + for bt in building_types: - 'god' : 'Good', - 'por' : 'Poor', + # create the component id + cmp_id = f'STR.{bt}' - 3 : 'Open', - 15 : 'Light Suburban', - 35 : 'Suburban', - 70 : 'Light Trees', - 100 : 'Trees', - } + # store the consequence values for each Damage State + for DS_i in range(1, 6): - convert_dist = { - 'normal' : 'Normal', - 'lognormal': 'LogNormal', - } + # DS5 is stored under 'collapse' + if DS_i == 5: + ds_i = 'Collapse' + else: + ds_i = f'DS{DS_i}' - convert_ds = { - 1: 'Minor', - 2: 'Moderate', - 3: 'Severe', - 4: 'Destruction', - } + for S_i in range(1, 5): + s_label = f'S{S_i}' + df_db.loc[(cmp_id, s_label), f'DS{DS_i}-Theta_0'] = ( + S_data['Injury_rates'][ds_i][bt][S_i - 1]) - for index, row in df_wood.iterrows(): - #print(index, end=' ') + # remove empty rows + df_db.dropna(how='all', inplace=True) - json_output = {} + # All Hazus components have complete fragility info, + df_db.loc[:, 'Incomplete'] = 0 - # define the name of the building damage and loss configuration - bldg_type = row["bldg_type"] + # The damage quantity unit is the same for all consequence values + df_db.loc[:, 'Quantity-Unit'] = "1 EA" - if bldg_type[:3] == "WSF": - cols_of_interest = ["bldg_type", "roof_shape", "sec_water_res", - "roof_deck_attch", "roof_wall_conn", "garage", - "shutters", "terr_rough"] - elif bldg_type[:4] == "WMUH": - cols_of_interest = ["bldg_type", "roof_shape", "roof_cover", - "roof_quality", "sec_water_res", - "roof_deck_attch", "roof_wall_conn", "shutters", - "terr_rough"] + # The output units are also indentical among all components + df_db.loc[:, 'DV-Unit'] = "injury_rate" - bldg_chars = row[cols_of_interest] + # convert to simple index + df_db = convert_to_SimpleIndex(df_db, 0) - if np.isnan(bldg_chars["sec_water_res"]): - bldg_chars["sec_water_res"] = 'null' - else: - bldg_chars["sec_water_res"] = int(bldg_chars["sec_water_res"]) - - if bldg_type[:4] == "WMUH": - if (not isinstance(bldg_chars["roof_cover"],str) - and np.isnan(bldg_chars["roof_cover"])): - bldg_chars["roof_cover"] = 'null' - if (not isinstance(bldg_chars["roof_quality"], str) - and np.isnan(bldg_chars["roof_quality"])): - bldg_chars["roof_quality"] = 'null' - - dl_id = "_".join(bldg_chars.astype(str)) - - json_output.update({'Name': dl_id}) - - # general information - json_output.update({ - 'GeneralInformation': { - 'ID' : str(index), - 'Description' : dl_id, - 'Building type': convert_building_type[bldg_type], - } - }) - for col in cols_of_interest: - if (col != 'bldg_type') and (bldg_chars[col] != 'null'): - json_output['GeneralInformation'].update({ - convert_bldg_char_names[col]: convert_bldg_chars[ - bldg_chars[col]] - }) - - # EDP info - json_output.update({ - 'EDP': { - 'Type': 'Peak Gust Wind Speed', - 'Unit': [1, 'mph'] - } - }) - - # Damage States - json_output.update({'DSGroups': []}) - - for dsg_i in range(1, 5): - json_output['DSGroups'].append({ - 'MedianEDP' : row['DS{}_mu'.format(dsg_i)], - 'Beta' : row['DS{}_sig'.format(dsg_i)], - 'CurveType' : convert_dist[row['DS{}_dist'.format(dsg_i)]], - 'DSGroupType' : 'Single', - 'DamageStates': [{ - 'Weight' : 1.0, - 'Consequences': { - 'ReconstructionCost': { - 'Amount': row[ - 'L{}'.format(dsg_i)] if dsg_i < 4 else 1.0 - } - }, - 'Description' : convert_ds[dsg_i] - }] - }) - - if DL_dir is None: - DL_dir = target_dir / "DL json" - DL_dir.mkdir(exist_ok=True) - - with open(DL_dir / f'{dl_id}.json', 'w') as f: - json.dump(json_output, f, indent=2) + # rename the index + df_db.index.name = "ID" + + # convert to optimal datatypes to reduce file size + df_db = df_db.convert_dtypes() + + # save the consequence data + df_db.to_csv(target_data_file) + + # save the metadata - later + #with open(target_meta_file, 'w+') as f: + # json.dump(meta_dict, f, indent=2) + print("Successfully parsed and saved the injury consequence data from Hazus " + "EQ") \ No newline at end of file diff --git a/pelicun/examples/0_tmp/CMP_marginals.csv b/pelicun/examples/0_tmp/CMP_marginals.csv new file mode 100644 index 000000000..90886ab11 --- /dev/null +++ b/pelicun/examples/0_tmp/CMP_marginals.csv @@ -0,0 +1,15 @@ +,units,location,direction,family,theta_0,theta_1,truncate_lower,truncate_upper +B1031.001,ea,all,"1, 2",,"4, 4, 4, 4, 4",,, +B1031.011c,ea,1,"1, 2",,"1, 1, 1, 1",,, +B1031.021c,ea,all,"1, 2",,"1, 1, 1, 1",,, +B1033.111b,ea,all,"1, 2",,"1, 1, 1, 1",,, +B2011.201a,ft,all,1,normal,"30, 30",100,10,50 +B2011.201a,ft,all,2,normal,"50, 50, 50, 50",5,0, +B2011.201b,ft,all,1,normal,"30, 30",3,0, +B2011.201b,ft,all,2,normal,"50, 50, 50, 50",5,0, +C1011.011a,ft,all,1,normal,"50, 50, 50",5,0, +C1011.011a,ft,all,2,normal,"200, 200, 100",20,0, +C2011.001b,ea,all,1,,1,,, +C3032.001a,ft2,all,0,normal,"400, 500, 200, 300",20,0, +collapse,ea,0,1,,1,,, +irreparable,ea,0,1,,1,,, diff --git a/pelicun/examples/0_tmp/DMG_process_P58.json b/pelicun/examples/0_tmp/DMG_process_P58.json new file mode 100644 index 000000000..2699baf15 --- /dev/null +++ b/pelicun/examples/0_tmp/DMG_process_P58.json @@ -0,0 +1,5 @@ +{ + "1_collapse": { + "DS1":"ALL_NA" + } +} \ No newline at end of file diff --git a/pelicun/examples/0_tmp/LOSS_map.csv b/pelicun/examples/0_tmp/LOSS_map.csv new file mode 100644 index 000000000..deace4e7e --- /dev/null +++ b/pelicun/examples/0_tmp/LOSS_map.csv @@ -0,0 +1,12 @@ +Driver,BldgRepair,BldgRedTag,BldgInjury +DMG-B1031.001,B1031.001,, +DMG-B1031.011c,B1031.011c,, +DMG-B1031.021c,B1031.021c,, +DMG-B1033.111b,B1033.111b,, +DMG-B2011.201a,B2011.201a,, +DMG-B2011.201b,B2011.201b,, +DMG-C1011.011a,C1011.011a,, +DMG-C2011.001b,C2011.001b,, +DMG-C3032.001a,C3032.001a,, +DMG-collapse,replacement,, +DMG-irreparable,replacement,, diff --git a/pelicun/examples/0_tmp/config.json b/pelicun/examples/0_tmp/config.json new file mode 100644 index 000000000..a9651654a --- /dev/null +++ b/pelicun/examples/0_tmp/config.json @@ -0,0 +1,93 @@ +{ + "Options":{ + "Verbose": true, + "Seed": 712, + "PrintLog": true, + "LogShowMS": false, + "EconomiesOfScale": { + "AcrossFloors": true, + "AcrossDamageStates": false + } + }, + "GeneralInformation": { + "NumberOfStories": 3 + }, + "DemandAssessment": { + "Calibration": { + "LoadSampleFrom": "demands.csv", + "SaveModelTo": "EDP", + "Marginals": { + "ALL": { + "DistributionFamily": "lognormal" + }, + "PID": { + "DistributionFamily": "lognormal", + "TruncateAt": [ + null, + 0.03 + ], + "AddUncertainty": 0.25 + }, + "PFA": { + "DistributionFamily": "normal", + "TruncateAt": [ + 0.0, + 450.0 + ], + "AddUncertainty": 40.0, + "Unit": "inchps2" + }, + "RID": { + "DistributionFamily": "empirical" + } + } + }, + "Sampling": { + "LoadModelFrom": "EDP", + "SampleSize": 10000, + "SaveSampleTo": "EDP_sample.csv" + } + }, + "DamageAssessment": { + "SampleSize": 10000, + "Components": { + "LoadModelFrom": "CMP", + "SaveSampleTo": "CMP_sample.csv", + "LoadSampleFrom": "CMP_sample.csv" + }, + "Demands": { + "LoadSampleFrom": "EDP_sample.csv" + }, + "Fragilities": { + "LoadModelFrom": [ + "fragility_Additional.csv", + "PelicunDefault/fragility_DB_FEMA_P58_2nd.csv" + ] + }, + "Calculation": { + "DamageProcessFrom": "DMG_process_P58.json", + "SaveDamageSampleTo":"DMG_sample.csv" + } + }, + "LossAssessment": { + "SampleSize": 10000, + "Demands": { + "LoadSampleFrom": "EDP_sample.csv" + }, + "Components": { + "LoadSampleFrom": "CMP_sample.csv" + }, + "Damage":{ + "LoadSampleFrom": "DMG_sample.csv" + }, + "CalculateBldgRepair": { + "LoadMappingFrom": "LOSS_map.csv", + "LoadModelFrom": [ + "repair_Additional.csv", + "PelicunDefault/bldg_repair_DB_FEMA_P58_2nd.csv" + ], + "SaveLossSampleTo": "LOSS_repair.csv" + }, + "SaveAggregateResultsTo": "Summary.csv" + } +} \ No newline at end of file diff --git a/pelicun/examples/0_tmp/demands.csv b/pelicun/examples/0_tmp/demands.csv new file mode 100644 index 000000000..c205edb7d --- /dev/null +++ b/pelicun/examples/0_tmp/demands.csv @@ -0,0 +1,22 @@ +, -ERROR--,1-PFA-0-1,1-PFA-0-2,1-PFA-1-1,1-PFA-1-2,1-PFA-2-1,1-PFA-2-2,1-PID-1-1,1-PID-1-2,1-PID-2-1,1-PID-2-2,1-PID-3-1,1-PID-3-2,1-RID-0-1,1-SA_1.00-0-1,1-PWS-0-1 +units,,inchps2,inchps2,inchps2,inchps2,inchps2,inchps2,rad,rad,rad,rad,rad,rad,rad,g,mph +1,0,278.6104899,301.4567202,315.0605991,349.0006572,315.0605991,349.0006572,0.013897509,0.013897509,0.013897509,0.013897509,0.013897509,0.013897509,0,0.73170307,281.0237365 +2,0,411.0373055,494.7242744,508.809091,442.5335103,508.809091,442.5335103,0.015908133,0.015908133,0.015908133,0.015908133,0.015908133,0.015908133,0.015908133,0.843761931,455.697752 +3,1,228.634536,374.2410229,316.5720501,347.7787619,316.5720501,347.7787619,0.023588019,0.023588019,0.023588019,0.023588019,0.023588019,0.023588019,0,0.604174639,325.5854881 +4,0,259.4800157,338.0203911,401.2967469,327.019899,401.2967469,327.019899,0.009253752,0.009253752,0.009253752,0.009253752,0.009253752,0.009253752,0.009253752,0.896498219,400.8102141 +5,0,149.665714,217.3043264,274.9437047,211.1534432,274.9437047,211.1534432,0.015031219,0.015031219,0.015031219,0.015031219,0.015031219,0.015031219,0.015031219,0.772705809,327.2322919 +6,0,212.3701079,363.2376536,338.5840749,304.4259682,338.5840749,304.4259682,0.024868028,0.024868028,0.024868028,0.024868028,0.024868028,0.024868028,0.024868028,0.748994406,378.5848938 +7,0,272.2953487,375.9621125,362.687643,347.630678,362.687643,347.630678,0.019458132,0.019458132,0.019458132,0.019458132,0.019458132,0.019458132,0.019458132,0.827173866,317.901751 +8,0,248.7247277,378.8743156,377.5938947,307.6142939,377.5938947,307.6142939,0.018347893,0.018347893,0.018347893,0.018347893,0.018347893,0.018347893,0.018347893,0.735104046,383.524091 +9,0,262.0557334,351.4047157,390.0845096,299.4705895,390.0845096,299.4705895,0.034634481,0.034634481,0.034634481,0.034634481,0.034634481,0.034634481,0.034634481,0.73295035,331.9342704 +10,1,229.7713393,373.7170252,385.4507202,308.1777986,385.4507202,308.1777986,0.018551108,0.018551108,0.018551108,0.018551108,0.018551108,0.018551108,0.018551108,0.821111692,442.2875555 +11,0,159.3251236,235.1684579,209.6548823,285.319527,209.6548823,285.319527,0.033332218,0.033332218,0.033332218,0.033332218,0.033332218,0.033332218,0.033332218,0.473342692,199.8816466 +12,0,204.3755563,329.8462248,373.2083563,234.6487446,373.2083563,234.6487446,0.034013184,0.034013184,0.034013184,0.034013184,0.034013184,0.034013184,0.034013184,0.729364154,349.7616262 +13,0,242.847235,308.7655278,336.7977656,311.1635398,336.7977656,311.1635398,0.014867659,0.014867659,0.014867659,0.014867659,0.014867659,0.014867659,0.014867659,0.901961427,345.0161541 +14,0,315.9035903,415.7206364,472.2398944,321.079208,472.2398944,321.079208,0.016511283,0.016511283,0.016511283,0.016511283,0.016511283,0.016511283,0.016511283,0.862441878,406.3317217 +15,0,223.5715811,297.0189603,262.2393236,244.4797562,262.2393236,244.4797562,0.025095424,0.025095424,0.025095424,0.025095424,0.025095424,0.025095424,0.025095424,0.765580656,262.3333951 +16,1,170.4288803,301.6085439,315.396437,263.6978669,315.396437,263.6978669,0.014814106,0.014814106,0.014814106,0.014814106,0.014814106,0.014814106,0.014814106,0.598827043,299.188359 +17,0,167.308645,181.1511657,237.8316165,247.811182,237.8316165,247.811182,0.021859933,0.021859933,0.021859933,0.021859933,0.021859933,0.021859933,0.021859933,0.625664659,254.628535 +18,0,208.2115398,327.6334331,316.889212,288.308409,316.889212,288.308409,0.016218834,0.016218834,0.016218834,0.016218834,0.016218834,0.016218834,0.016218834,0.781499395,377.9414989 +19,0,263.8476547,358.4782801,400.8379038,312.5304884,400.8379038,312.5304884,0.020165969,0.020165969,0.020165969,0.020165969,0.020165969,0.020165969,0.020165969,0.840210742,380.219604 +20,0,234.9336958,348.939748,314.8598006,376.2367524,314.8598006,376.2367524,0.037484335,0.037484335,0.037484335,0.037484335,0.037484335,0.037484335,0.037484335,0.552415234,269.4950011 diff --git a/pelicun/examples/0_tmp/fragility_Additional.csv b/pelicun/examples/0_tmp/fragility_Additional.csv new file mode 100644 index 000000000..dfcec374a --- /dev/null +++ b/pelicun/examples/0_tmp/fragility_Additional.csv @@ -0,0 +1,7 @@ +ID,Incomplete,Demand-Type,Demand-Unit,Demand-Offset,Demand-Directional,LS1-Family,LS1-Theta_0,LS1-Theta_1,LS1-DamageStateWeights,LS2-Family,LS2-Theta_0,LS2-Theta_1,LS2-DamageStateWeights,LS3-Family,LS3-Theta_0,LS3-Theta_1,LS3-DamageStateWeights,LS4-Family,LS4-Theta_0,LS4-Theta_1,LS4-DamageStateWeights +B1031.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.04,0.4,0.950000 | 0.050000,lognormal,0.08,0.4,,lognormal,0.11,0.4,,,,, +B1031.011a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.04,0.4,0.950000 | 0.050000,lognormal,0.07,0.4,,lognormal,0.1,0.4,,,,, +collapse,0,Peak Spectral Acceleration|1.00,g,0,1,lognormal,1.5,0.6,,,,,,,,,,,,, +irreparable,0,Residual Interstory Drift Ratio,rad,0,1,lognormal,0.02,0.6,,,,,,,,,,,,, +E2022.125b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +F1012.001,0,Peak Floor Acceleration,g,0,0,lognormal,0.42,0.4,0.600000 | 0.400000,,,,,,,,,,,, diff --git a/pelicun/examples/0_tmp/repair_Additional.csv b/pelicun/examples/0_tmp/repair_Additional.csv new file mode 100644 index 000000000..4921302ce --- /dev/null +++ b/pelicun/examples/0_tmp/repair_Additional.csv @@ -0,0 +1,3 @@ +ID,Incomplete,Quantity-Unit,DV-Unit,DS1-Family,DS1-Theta_0,DS1-Theta_1 +replacement-Cost,0,1 EA,US$_2011,,20000000, +replacement-Time,0,1 EA,worker_day,,15000, diff --git a/pelicun/file_io.py b/pelicun/file_io.py index 0e074a499..e0550a387 100644 --- a/pelicun/file_io.py +++ b/pelicun/file_io.py @@ -59,7 +59,6 @@ from .base import * from pathlib import Path -from .db import convert_Series_to_dict import json, posixpath @@ -181,13 +180,13 @@ def get_required_resources(input_path, assessment_type): if path_CMP_data == "": # Use the P58 path as default - path_CMP_data = pelicun_path + CMP_data_path[AT] + path_CMP_data = pelicun_path / CMP_data_path[AT] resources.update({'component': path_CMP_data}) # HAZUS combination of flood and wind losses if ((AT == 'HAZUS_HU') and (DL_input.get('Combinations', None) is not None)): - path_combination_data = pelicun_path + CMP_data_path['HAZUS_MISC'] + path_combination_data = pelicun_path / CMP_data_path['HAZUS_MISC'] resources.update({'combination': path_combination_data}) # The population data is only needed if we are interested in injuries @@ -197,1871 +196,336 @@ def get_required_resources(input_path, assessment_type): path_POP_data = "" if ((injuries) and (path_POP_data == "")): - path_POP_data = pelicun_path + POP_data_path[AT] + path_POP_data = pelicun_path / POP_data_path[AT] resources.update({'population': path_POP_data}) return resources -def read_SimCenter_DL_input(input_path, assessment_type='P58', verbose=False): +def load_default_options(): """ - Read the damage and loss input information from a json file. - - The SimCenter in the function name refers to having specific fields - available in the file. Such a file is automatically prepared by the - SimCenter PBE Application, but it can also be easily manipulated or created - manually. The accepted input fields are explained in detail in the Input - section of the documentation. - - Parameters - ---------- - input_path: string - Location of the DL input json file. - assessment_type: {'P58', 'HAZUS_EQ', 'HAZUS_HU'} - Tailors the warnings and verifications towards the type of assessment. - default: 'P58'. - verbose: boolean - If True, the function echoes the information read from the file. This - can be useful to ensure that the information in the file is properly - read by the method. - - Returns - ------- - data: dict - A dictionary with all the damage and loss data. + Load the default_config.json file to set options to default values """ - AT = assessment_type + with open(pelicun_path / "settings/default_config.json", 'r') as f: + options.defaults = json.load(f) - log_msg('\t\tOpening the configuration file...') - with open(input_path, 'r') as f: - jd = json.load(f) + set_options(options.defaults.get('Options', None)) - # get the data required for DL - data = dict([(label, dict()) for label in [ - 'general', 'units', 'unit_names', 'components', 'collapse_modes', - 'decision_variables', 'dependencies', 'data_sources', 'damage_logic' - ]]) +def merge_default_config(config): - # create a few internal variables for convenience - DL_input = jd['DamageAndLoss'] + defaults = options.defaults - log_msg('\t\tLoading the Models:') - log_msg('\t\t\tResponse Model') - response = DL_input.get('ResponseModel',None) - if response is not None: - res_description = response.get('ResponseDescription', None) - det_lims = response.get('DetectionLimits', None) - uncertainty = response.get('AdditionalUncertainty', None) + if config.get('DemandAssessment', False): - else: - res_description = None - det_lims = None - uncertainty = None - - log_msg('\t\t\tDamage Model') - damage = DL_input.get('DamageModel',None) - if damage is not None: - irrep_res_drift = damage.get('IrreparableResidualDrift', None) - coll_prob = damage.get('CollapseProbability', None) - coll_lims = damage.get('CollapseLimits', None) - design_lvl = damage.get('DesignLevel', None) - struct_type = damage.get('StructureType', None) - - else: - irrep_res_drift = None - coll_prob = None - coll_lims = None - design_lvl = None - struct_type = None - - log_msg('\t\t\tLoss Model') - loss = DL_input.get('LossModel', None) - if loss is not None: - repl_cost = loss.get('ReplacementCost', None) - repl_time = loss.get('ReplacementTime', None) - dec_vars = loss.get('DecisionVariables', None) - inhabitants = loss.get('Inhabitants', None) + demand_def = defaults['DemandAssessment'] + demand_config = config['DemandAssessment'] - else: - repl_cost = None - repl_time = None - dec_vars = None - inhabitants = None + if 'Calibration' in demand_config.keys(): - log_msg('\t\t\tPerformance Model') - components = DL_input.get('Components', None) + calib_config = demand_config['Calibration'] + calib_def = demand_def['Calibration'] - depends = DL_input.get('Dependencies', None) - coll_modes = DL_input.get('CollapseModes', None) + for key, value in calib_def.items(): - dam_logic = DL_input.get('DamageLogic', None) + if key in ['Marginals',]: + continue - # decision variables of interest - if dec_vars is not None: - for target_att, source_att in [ ['injuries', 'Injuries'], - ['rec_cost', 'ReconstructionCost'], - ['rec_time', 'ReconstructionTime'], - ['red_tag', 'RedTag'], ]: - val = bool(dec_vars.get(source_att, False)) - data['decision_variables'].update({target_att: val}) - else: - show_warning("No decision variables specified in the input file.") - log_msg("Assuming that only reconstruction cost and time needs to be calculated.") - data['decision_variables'].update({ 'injuries': False, - 'rec_cost': True, - 'rec_time': True,}) - # red tag is only used by P58 now - if AT == 'P58': - data['decision_variables'].update({'red_tag': False}) - - dec_vars = data['decision_variables'] - - # data sources - # default data locations - default_data_name = { - 'P58' : 'FEMA P58 second edition', - 'HAZUS_EQ': 'HAZUS MH 2.1 earthquake', - 'HAZUS_HU': 'HAZUS MH 2.1 hurricane' - } + if key not in calib_def: + calib_def.update({key: value}) - # check if the user specified custom data sources - path_CMP_data = DL_input.get("ComponentDataFolder", "") + marginal_config = calib_config['Marginals'] + marginal_def = calib_def['Marginals'] - if path_CMP_data == "": - # Use the P58 path as default - path_CMP_data = pelicun_path + CMP_data_path[AT] + for key, value in marginal_def.items(): - data['data_sources'].update({'path_CMP_data': path_CMP_data}) + if key not in marginal_config: + marginal_config.update({key: value}) - # HAZUS combination of flood and wind losses - if AT == 'HAZUS_HU': - log_msg('\t\t\tCombinations') - comb = DL_input.get('Combinations', None) - path_combination_data = pelicun_path - if comb is not None: - path_combination_data = DL_input.get('CombinationDataFile', None) - if path_combination_data is None: - path_combination_data = pelicun_path + CMP_data_path['HAZUS_MISC'] - data['data_sources'].update({'path_combination_data': path_combination_data}) - data['loss_combination'] = comb + if 'Sampling' in demand_config.keys(): - # The population data is only needed if we are interested in injuries - if inhabitants is not None: - path_POP_data = inhabitants.get("PopulationDataFile", "") - else: - path_POP_data = "" + sample_config = demand_config['Sampling'] - if data['decision_variables']['injuries']: - if path_POP_data == "": - path_POP_data = pelicun_path + POP_data_path[AT] + for key, value in demand_def['Sampling'].items(): - data['data_sources'].update({'path_POP_data': path_POP_data}) + if key not in sample_config: + sample_config.update({key: value}) - # general information - GI = jd.get("GeneralInformation", None) - data['GI'] = GI + if 'OutputUnits' in demand_def.keys(): - # units - if (GI is not None) and ('units' in GI.keys()): - for key, value in GI['units'].items(): - if value == 'in': - value = 'inch' - if value in globals().keys(): - data['unit_names'].update({key: value}) - else: - show_warning("Unknown {} unit: {}".format(key, value)) + if 'OutputUnits' not in demand_config.keys(): + demand_config.update({'OutputUnits': {}}) - if 'length' in data['unit_names'].keys(): - if 'area' not in data['unit_names']: - data['unit_names'].update({ - 'area': data['unit_names']['length']+'2'}) + for key, value in demand_def['OutputUnits'].items(): - if 'volume' not in data['unit_names']: - data['unit_names'].update({ - 'volume': data['unit_names']['length']+'3'}) + if key not in demand_config['OutputUnits']: + demand_config['OutputUnits'].update({key: value}) - if 'speed' not in data['unit_names'].keys(): - data['unit_names'].update({ - 'speed': data['unit_names']['length']+'ps'}) + return config - if 'acceleration' not in data['unit_names'].keys(): - data['unit_names'].update({ - #'acceleration': 1.0 }) - 'acceleration': data['unit_names']['length']+'ps2'}) - else: - show_warning("No units were specified in the input file.") - data['unit_names'].update(default_units) - - for unit_type, unit_name in data['unit_names'].items(): - data['units'].update({unit_type: globals()[unit_name]}) - - # other attributes that can be used by a P58 assessment - if AT == 'P58': - for target_att, source_att, f_conv, unit_kind, dv_req in [ - ['plan_area', 'PlanArea', float, 'area', 'injuries'], - ['stories', 'NumberOfStories', int, '', 'all'], - ]: - if (GI is not None) and (source_att in GI.keys()): - if unit_kind != '': - f_unit = data['units'][unit_kind] - else: - f_unit = 1 - att_value = f_conv(GI[source_att]) * f_unit - data['general'].update({target_att: att_value}) - else: - if (dv_req != '') and ((dv_req == 'all') or dec_vars[dv_req]): - raise ValueError( - "{} has to be specified in the DL input file to " - "estimate {} decision variable(s).".format(source_att, - dv_req)) - elif AT.startswith('HAZUS'): - data['general'].update({'stories': int(GI['NumberOfStories'])}) - - # is this a coupled assessment? - if res_description is not None: - data['general'].update({'coupled_assessment': - res_description.get('CoupledAssessment', False)}) - else: - data['general'].update({'coupled_assessment': False}) - - # Performance Model - # Having components defined is not necessary, but if a component is defined - # then all of its attributes need to be specified. Note that the required - # set of attributes depends on the type of assessment. - if components is not None: - for fg_id, frag_group in components.items(): - if AT == 'P58': - # TODO: allow location and direction inputs with '-' in them - comp_data = { - 'locations' : [], - 'directions' : [], - 'quantities' : [], - 'unit' : [], - 'distribution': [], - 'cov' : [], - 'csg_weights': [], - } - - for comp in frag_group: - locs = [] - for loc_ in comp['location'].split(','): - for l in process_loc(loc_, data['general']['stories']): - locs.append(l) - locs.sort() - - dirs = sorted([int_or_None(dir_) - for dir_ in comp['direction'].split(',')]) - qnts = [float(qnt) - for qnt in comp['median_quantity'].split(',')] - csg_weights = (qnts / np.sum(qnts)).tolist() - qnts = np.sum(qnts) - - pg_count = len(locs) * len(dirs) - - comp_data['locations'] = (comp_data['locations'] + - [l for l in locs for d in dirs]) - comp_data['directions'] = (comp_data['directions'] + - dirs * len(locs)) - - unit = comp['unit'] - if unit not in globals().keys(): - raise ValueError( - "Unknown unit for component {}: {}".format(fg_id, - unit)) - for i in range(pg_count): - comp_data['quantities'].append(qnts) - comp_data['csg_weights'].append(csg_weights) - comp_data['unit'].append(unit) - comp_data['distribution'].append(comp.get('distribution', 'N/A')) - comp_data['cov'].append(comp.get('cov', None)) - - sorted_ids = np.argsort(comp_data['locations']) - for key in ['locations', 'directions', 'quantities', - 'csg_weights', 'distribution', 'cov']: - comp_data[key] = [comp_data[key][s_id] for s_id in sorted_ids] - - if len(set(comp_data['unit'])) != 1: - raise ValueError( - "Multiple types of units specified for fragility group " - "{}. Make sure that every component group in a " - "fragility group is defined using the same " - "unit.".format(fg_id)) - comp_data['unit'] = comp_data['unit'][0] - - # aggregate PGs that are in the same loc & dir - PG_loc_dir_list = list(zip(comp_data['locations'], comp_data['directions'])) - to_aggregate = set([x for x in PG_loc_dir_list if PG_loc_dir_list.count(x) > 1]) - for combo in to_aggregate: - PG_loc_dir_list = list(zip(comp_data['locations'], comp_data['directions'])) - combo_ids = [i for i,e in enumerate(PG_loc_dir_list) if e==combo] - - c_base = combo_ids[0] - comp_data['csg_weights'][c_base] = (np.array(comp_data['csg_weights'][c_base]) * comp_data['quantities'][c_base]).tolist() - for ci in combo_ids[1:]: - comp_data['quantities'][c_base] += comp_data['quantities'][ci] - comp_data['csg_weights'][c_base] += (np.array(comp_data['csg_weights'][ci]) * comp_data['quantities'][ci]).tolist() - comp_data['csg_weights'][c_base] = (np.array(comp_data['csg_weights'][c_base]) / comp_data['quantities'][c_base]).tolist() - - for ci in combo_ids[1:][::-1]: - for key in ['locations', 'directions', 'quantities', - 'csg_weights', 'distribution', 'cov']: - del comp_data[key][ci] - - elif AT.startswith('HAZUS'): - comp_data = { - 'locations' : [], - 'directions' : [], - 'quantities' : [], - 'unit' : [], - 'distribution': [], - 'cov' : [], - 'csg_weights': [], - } - - for comp in frag_group: - if 'location' in comp: - locs = [] - for loc_ in comp['location'].split(','): - for l in process_loc(loc_, data['general']['stories']): - locs.append(l) - locs.sort() - else: - locs = [1,] - - if 'direction' in comp: - dirs = sorted([int_or_None(dir_) - for dir_ in comp['direction'].split(',')]) - else: - dirs = [1, ] - - if 'median_quantity' in comp: - qnts = [float(qnt) - for qnt in comp['median_quantity'].split(',')] - csg_weights = (qnts / np.sum(qnts)).tolist() - qnts = np.sum(qnts) - - pg_count = len(locs) * len(dirs) - - comp_data['locations'] = (comp_data['locations'] + - [l for l in locs for d in dirs]) - comp_data['directions'] = (comp_data['directions'] + - dirs * len(locs)) - - if 'unit' in comp: - unit = comp['unit'] - if unit not in globals().keys(): - raise ValueError( - "Unknown unit for component {}: {}".format(fg_id, - unit)) - else: - unit = 'ea' - - for i in range(pg_count): - comp_data['quantities'].append(qnts) - comp_data['csg_weights'].append(csg_weights) - comp_data['unit'].append(unit) - comp_data['distribution'].append(comp.get('distribution', 'N/A')) - comp_data['cov'].append(comp.get('cov', None)) - - sorted_ids = np.argsort(comp_data['locations']) - for key in ['locations', 'directions', 'quantities', - 'csg_weights', 'distribution', 'cov']: - comp_data[key] = [comp_data[key][s_id] for s_id in sorted_ids] - - if len(set(comp_data['unit'])) != 1: - print(comp_data['unit']) - raise ValueError( - "Multiple types of units specified for fragility group " - "{}. Make sure that every component group in a " - "fragility group is defined using the same " - "unit.".format(fg_id)) - comp_data['unit'] = comp_data['unit'][0] - - # store the component data - data['components'].update({fg_id: comp_data}) - else: - show_warning("No components were defined in the input file.") - - # collapse modes - if AT == 'P58': - # Having collapse modes defined is not necessary, but if a collapse mode - # is defined, then all of its attributes need to be specified. - if coll_modes is not None: - for coll_mode in coll_modes: - cm_data = { - 'w' : float(coll_mode['weight']), - 'injuries' : [float(inj) for inj in - coll_mode['injuries'].split(',')], - 'affected_area': [float(cfar) for cfar in - coll_mode['affected_area'].split(',')], - } - if len(cm_data['affected_area']) == 1: - cm_data['affected_area'] = (np.ones(data['general']['stories'])*cm_data['affected_area']).tolist() - if len(cm_data['injuries']) == 1: - cm_data['injuries'] = (np.ones(data['general']['stories'])*cm_data['injuries']).tolist() - data['collapse_modes'].update({coll_mode['name']: cm_data}) - else: - show_warning("No collapse modes were defined in the input file.") - # the number of realizations has to be specified in the file - if res_description is not None: - realizations = res_description.get("Realizations", None) - if realizations is not None: - data['general'].update({'realizations': int(realizations)}) - else: - raise ValueError( - "Number of realizations is not specified in the input file.") - - if AT in ['P58', 'HAZUS_EQ']: - EDP_keys = ['PID', 'PRD', 'PFA', - 'PGV', 'RID', 'PMD', - 'PGA', 'SA', 'SV', 'SD', - 'RDR','DWD'] - elif AT in ['HAZUS_HU']: - EDP_keys = ['PWS', 'PIH'] - elif AT in ['HAZUS_FL']: - EDP_keys = ['PIH'] - - # response model info ------------------------------------------------------ - if response is None: - show_warning("Response model characteristics were not defined in the input " - "file") - - # detection limits - if ((response is not None) and (det_lims is not None)): - data['general'].update({ - 'detection_limits': - dict([(key, float_or_None(value)) for key, value in - det_lims.items()])}) - DGDL = data['general']['detection_limits'] - # scale the limits by the units - for EDP_kind, value in DGDL.items(): - if (EDP_kind in EDP_units.keys()) and (value is not None): - f_EDP = data['units'][EDP_units[EDP_kind]] - DGDL[EDP_kind] = DGDL[EDP_kind] * f_EDP - else: - data['general'].update({'detection_limits':{}}) - - # make sure that detection limits are initialized - for key in EDP_keys: - if key not in data['general']['detection_limits'].keys(): - data['general']['detection_limits'].update({key: None}) - - # response description - if ((response is not None) and (res_description is not None)): - #TODO: move the collapse-related data to another field - data['general'].update({'response': { - 'EDP_distribution': res_description.get('EDP_Distribution', - 'lognormal'), - 'EDP_dist_basis': res_description.get('BasisOfEDP_Distribution', - 'all results')}}) - else: - data['general'].update({'response': { - 'EDP_distribution': 'lognormal', - 'EDP_dist_basis' : 'all results'}}) - - # additional uncertainty - if ((response is not None) and (uncertainty is not None)): - data['general'].update({ - 'added_uncertainty': { - 'beta_gm': float_or_None(uncertainty['GroundMotion']), - 'beta_m' : float_or_None(uncertainty['Modeling'])}}) - else: - data['general'].update({ - 'added_uncertainty': { - 'beta_gm': None, - 'beta_m': None - } - }) - - # damage model info -------------------------------------------------------- - if damage is None: - if AT == 'P58': - show_warning("Damage model characteristics were not defined in the " - "input file") - elif AT.startswith('HAZUS'): - pass - - # P58-specific things - if AT == 'P58': - # EDP limits for collapse - if ((damage is not None) and (coll_lims is not None)): - # load the limits - data['general'].update({ - 'collapse_limits': - dict([(key, float_or_None(value)) for key, value - in coll_lims.items()])}) - - # scale the limits according to their units - DGCL = data['general']['collapse_limits'] - for EDP_kind, value in DGCL.items(): - if (EDP_kind in EDP_units.keys()) and (value is not None): - f_EDP = data['units'][EDP_units[EDP_kind]] - DGCL[EDP_kind] = DGCL[EDP_kind] * f_EDP - else: - data['general'].update({'collapse_limits': {}}) - - # make sure that collapse limits are initialized - for key in EDP_keys: - if key not in data['general']['collapse_limits'].keys(): - data['general']['collapse_limits'].update({key: None}) - - # irreparable drift - if ((damage is not None) and (irrep_res_drift is not None)): - data['general'].update({ - 'irreparable_res_drift': - dict([(key, float_or_None(value)) for key, value in - irrep_res_drift.items()])}) - # TODO: move this in the irreparable part of general - yield_drift = irrep_res_drift.get("YieldDriftRatio", None) - if yield_drift is not None: - data['general'].update({ - 'yield_drift': float_or_None(yield_drift)}) - elif ((data['decision_variables']['rec_cost']) or - (data['decision_variables']['rec_time'])): - data['general'].update({'yield_drift': 0.01}) - - elif ((data['decision_variables']['rec_cost']) or - (data['decision_variables']['rec_time'])): - pass - #TODO: show this warning in the log file instead - - # show_warning( - # "Residual drift limits corresponding to irreparable " - # "damage were not defined in the input file. We assume that " - # "damage is repairable regardless of the residual drift.") - # we might need to have a default yield drift here - - # collapse probability - if 'response' not in data['general'].keys(): - data['general'].update({'response': {}}) - if ((damage is not None) and (coll_prob is not None)): - data['general']['response'].update({ - 'coll_prob' : coll_prob.get('Value', 'estimated'), - 'CP_est_basis': coll_prob.get('BasisOfEstimate', 'raw EDP')}) - if data['general']['response']['coll_prob'] != 'estimated': - data['general']['response']['coll_prob'] = \ - float_or_None(data['general']['response']['coll_prob']) - else: - data['general']['response'].update({ - 'coll_prob' : 'estimated', - 'CP_est_basis' : 'raw EDP'}) - - # loss model info ---------------------------------------------------------- - if loss is None: - show_warning("Loss model characteristics were not defined in the input file") - - # replacement cost - if ((loss is not None) and (repl_cost is not None)): - data['general'].update({ - 'replacement_cost': float_or_None(repl_cost)}) - elif data['decision_variables']['rec_cost']: - if AT == 'P58': - show_warning("Building replacement cost was not defined in the " - "input file.") - elif AT.startswith('HAZUS'): - raise ValueError( - "Building replacement cost was not defined in the input " - "file.") - - # replacement time - if ((loss is not None) and (repl_time is not None)): - data['general'].update({ - 'replacement_time': float_or_None(repl_time)}) - elif data['decision_variables']['rec_time']: - if AT == 'P58': - show_warning("Building replacement cost was not defined in the " - "input file.") - elif AT.startswith('HAZUS'): - raise ValueError( - "Building replacement cost was not defined in the input " - "file.") +def save_to_csv(data, filepath, units=None, orientation=0): + """ + Saves data to a CSV file following standard SimCenter schema. - # inhabitants - if data['decision_variables']['injuries']: - if ((loss is not None) and (inhabitants is not None)): + The produced CSV files have a single header line and an index column. The + second line may start with 'units' in the index or the first column may be + 'units' to provide the units for the data in the file. - # occupancy type - occupancy = inhabitants.get("OccupancyType", None) - if occupancy is not None: - data['general'].update({'occupancy_type': occupancy}) - else: - raise ValueError("Occupancy type was not defined in the input " - "file.") - - # event time - event_time = inhabitants.get("EventTime", None) - data['general'].update({'event_time': event_time}) - - # peak population - peak_pop = inhabitants.get("PeakPopulation", None) - if peak_pop is not None: - peak_pop = [float_or_None(pop) for pop in peak_pop.split(',')] - - # If the number of stories is specified... - if 'stories' in data['general'].keys(): - stories = data['general']['stories'] - pop_in = len(peak_pop) - - # If only one value is provided then we assume that it - # corresponds to the whole building - if pop_in == 1: - peak_pop = (np.ones(stories)*peak_pop[0]/stories).tolist() - - # If more than one value is provided then we assume they - # define population for every story - else: - # If the population list does not provide values - # for every story the values are assumed to correspond - # to the lower stories and the upper ones are filled - # with zeros - for s in range(pop_in, stories): - peak_pop.append(0) - - if pop_in > 1 and pop_in != stories: - show_warning( - "Peak population was specified to some, but not all " - "stories. The remaining stories are assumed to have " - "zero population." - ) - - data['general'].update({'population': peak_pop}) - else: - raise ValueError( - "Peak population was not defined in the input file.") - else: - raise ValueError( - "Information about inhabitants was not defined in the input " - "file.") - - # dependencies ------------------------------------------------------------- - - # set defaults - # We assume 'Independent' for all unspecified fields except for the - # fragilities where 'per ATC recommendation' is the default setting. - - for target_att, source_att, dv_req in [ - ['quantities', 'Quantities', ''], - ['fragilities', 'Fragilities', ''], - ['injuries', 'Injuries', 'injuries'], - ['rec_costs', 'ReconstructionCosts', 'rec_cost'], - ['rec_times', 'ReconstructionTimes', 'rec_time'], - ['red_tags', 'RedTagProbabilities', 'red_tag'],]: - - if ((depends is not None) and (source_att in depends.keys())): - data['dependencies'].update({ - target_att:dependency_to_acronym[depends[source_att]]}) - #elif dv_req == '' or data['decision_variables'][dv_req]: - else: - if target_att != 'fragilities': - data['dependencies'].update({target_att: 'IND'}) - else: - data['dependencies'].update({target_att: 'ATC'}) - - log_msg("\t\t\t\t\t"+ - "Correlation between {} was not ".format(source_att)+ - "defined in the input file. Using default values.") - - if ((depends is not None) and ('CostAndTime' in depends.keys())): - data['dependencies'].update({ - 'cost_and_time': bool(depends['CostAndTime'])}) - elif ((data['decision_variables']['rec_cost']) or - (data['decision_variables']['rec_time'])): - data['dependencies'].update({'cost_and_time': False}) - log_msg("\t\t\t\t\t"+ - "Correlation between reconstruction cost and time was not " - "defined in the input file. Using default values.") - - if ((depends is not None) and ('InjurySeverities' in depends.keys())): - data['dependencies'].update({ - 'injury_lvls': bool(depends['InjurySeverities'])}) - elif data['decision_variables']['injuries']: - data['dependencies'].update({'injury_lvls': False}) - log_msg("\t\t\t\t\t"+ - "Correlation between injury levels was not defined in the " - "input file. Using default values.") - - # damage logic info -------------------------------------------------------- - - data['damage_logic'] = dam_logic - - if verbose: pp.pprint(data) - - return data - -def read_SimCenter_EDP_input(input_path, - #EDP_kinds=('PID', 'PFA'), - units = dict(PID=1., PFA=1.), - verbose=False): - """ - Read the EDP input information from a text file with a tabular structure. + The following data types in pelicun can be saved with this function: - The SimCenter in the function name refers to having specific columns - available in the file. Currently, the expected formatting follows the - output formatting of Dakota that is applied for the dakotaTab.out. When - using pelicun with the PBE Application, such a dakotaTab.out is - automatically generated. The Input section of the documentation provides - more information about the expected formatting of the EDP input file. + Demand Data: Each column in a table corresponds to a demand type; each + row corresponds to a simulation/sample. The header identifies each demand + type. The user guide section of the documentation provides more + information about the header format. Target need to be specified in the + second row of the DataFrame. Parameters ---------- - input_path: string - Location of the EDP input file. - units: dict, default: {'PID':1., 'PFA':1} - Defines the unit conversion that shall be applied to the EDP values. - verbose: boolean - If True, the function echoes the information read from the file. This - can be useful to ensure that the information in the file is properly - read by the method. + data: DataFrame + The data to save + filepath: string + The location of the destination file + units: Series, optional + Provides a Series with variables and corresponding units. + level: string, optional + Identifies the level referenced in the units dictionary when the data + has a MultiIndex header. + orientation: int, {0, 1}, default: 0 + If 0, variables are organized along columns; otherwise they are along + the rows. This is important when converting values to follow the + prescribed units. - Returns - ------- - data: dict - A dictionary with all the EDP data. """ - # initialize the data container - data = {} + log_msg(f'Saving data to {filepath}...', prepend_timestamp=False) - # read the collection of EDP inputs... - log_msg('\t\tOpening the input file...') - # If the file name ends with csv, we assume a standard csv file - if input_path.endswith('csv'): - EDP_raw = pd.read_csv(input_path, header=0, index_col=0) + filepath = Path(filepath).resolve() - # otherwise, we assume that a dakota file is provided... - else: - # the read_csv method in pandas is sufficiently versatile to handle the - # tabular format of dakota - EDP_raw = pd.read_csv(input_path, sep=r'\s+', header=0, index_col=0) + if data is not None: - # set the index to be zero-based - if EDP_raw.index[0] == 1: - EDP_raw.index = EDP_raw.index - 1 + # make sure we do not modify the original data + data = data.copy() - # search the header for EDP information - for column in EDP_raw.columns: + # convert units and add unit information, if needed + if units is not None: - # extract info about the location, direction, EDP_kind and scenario - info = column.split('-') + log_msg(f'Converting units...', prepend_timestamp=False) - if len(info) != 4: - continue + # if the orientation is 1, we might not need to scale all columns + if orientation == 1: + cols_to_scale = [dt in [float, int] for dt in data.dtypes] + cols_to_scale = data.columns[cols_to_scale] - kind = info[1].replace(' ','') + labels_to_keep = [] - #for kind in EDP_kinds: - # if kind in column: + for unit_name in units.unique(): - if kind not in data.keys(): - data.update({kind: []}) + labels = units.loc[units==unit_name].index.values - # get the scale factor to perform unit conversion - f_unit = units[kind.split('_')[0]] + unit_factor = 1./globals()[unit_name] - # store the data - data[kind].append(dict( - raw_data=(EDP_raw[column].values * f_unit).tolist(), - location=info[2], - direction=info[3], - scenario_id=info[0] - )) + active_labels = [] - if verbose: pp.pprint(data) + if orientation == 0: + for label in labels: + if label in data.columns: + active_labels.append(label) - return data + if len(active_labels) > 0: + data.loc[:, active_labels] *= unit_factor -def read_population_distribution(path_POP, occupancy, assessment_type='P58', - verbose=False): - """ - Read the population distribution from an external json file. - - The population distribution is expected in a format used in FEMA P58, but - the list of occupancy categories can be modified and/or extended beyond - those available in that document. The population distributions for the - occupancy categories from FEMA P58 and HAZUS MH are provided with pelicun - in the population.json files in the corresponding folder under resources. - - Note: Population distributions in HAZUS do not have a 1:1 mapping to the - occupancy types provided in the Technical Manual. We expect inputs to - follow the naming convention in the HAZUS Technical Manual and convert - those to the broader categories here automatically. During conversion, the - following assumptions are made about the occupancy classes: i) RES classes - are best described as Residential; ii) COM and REL as Commercial; iii) EDU - as Educational; iv) IND and AGR as Industrial; v) Hotels do not have a - matching occupancy class. + else: #elif orientation == 1: + for label in labels: + if label in data.index: + active_labels.append(label) - Parameters - ---------- - path_POP: string - Location of the population distribution json file. - occupancy: string - Identifies the occupancy category. - assessment_type: {'P58', 'HAZUS_EQ'} - Tailors the warnings and verifications towards the type of assessment. - default: 'P58'. - verbose: boolean - If True, the function echoes the information read from the file. This - can be useful to ensure that the information in the file is properly - read by the method. + if len(active_labels) > 0: + data.loc[active_labels, cols_to_scale] *= unit_factor - Returns - ------- - data: dict - A dictionary with the population distribution data. - """ - - AT = assessment_type - - # Convert the HAZUS occupancy classes to the categories used to define - # population distribution. - if AT == 'HAZUS_EQ': - occupancy = HAZUS_occ_converter.get(occupancy[:3], None) + labels_to_keep += active_labels - if occupancy is None: - warnings.warn(UserWarning( - 'Unknown, probably invalid, occupancy class for HAZUS ' - 'assessment: {}. When defining population distribution, ' - 'assuming RES1 instead.'.format(occupancy))) - occupancy = 'Residential' + units = units.loc[labels_to_keep].to_frame() - # Load the population data - - # If a json file is provided: - if path_POP.endswith('json'): - with open(path_POP, 'r') as f: - jd = json.load(f) - - data = jd[occupancy] - - # else if an HDF5 file is provided - elif path_POP.endswith('hdf'): + if orientation == 0: + data = pd.concat([units.T, data], axis=0) + data.sort_index(axis=1, inplace=True) + else: + data = pd.concat([units, data], axis=1) + data.sort_index(inplace=True) - store = pd.HDFStore(path_POP) - store.open() - pop_table = store.select('pop', where=f'index in {[occupancy, ]}') - store.close() + log_msg(f'Unit conversion successful.', prepend_timestamp=False) - if pop_table is not None: - data = convert_Series_to_dict(pop_table.loc[occupancy, :]) - else: - raise IOError("Couldn't read the HDF file for POP data.") + # convert MultiIndex to regular index with '-' separators + if isinstance(data.index, pd.MultiIndex): + data = convert_to_SimpleIndex(data) - # convert peak population to persons/m2 - if 'peak' in data.keys(): - data['peak'] = data['peak'] / (1000. * ft2) + # same thing for the columns + if isinstance(data.columns, pd.MultiIndex): + data = convert_to_SimpleIndex(data, axis=1) - if verbose: # pragma: no cover - pp.pprint(data) + if filepath.suffix == '.csv': - return data + # save the contents of the DataFrame into a csv + data.to_csv(filepath) -def read_combination_DL_data(path_combination_data, comp_info, assessment_type='HAZUS_HU', - verbose=False): - """ - Read the combination rules for hurricane damage and loss for the components of the asset. + log_msg(f'Data successfully saved to file.', + prepend_timestamp=False) - Parameters - ---------- - path_combination_data: string - Location of the folder that contains the combination rules. - comp_info: list - List of data names that contains the comibnation rules. - assessment_type: {'HAZUS_HU'} - Tailors the warnings and verifications towards the type of assessment. - default: 'HAZUS_HU'. - verbose: boolean - If True, the function echoes the information read from the files. This - can be useful to ensure that the information in the files is properly - read by the method. + else: + raise ValueError( + f'ERROR: Unexpected file type received when trying ' + f'to save to csv: {filepath}') - Returns - ------- - data: dict - A dictionary with damage and loss data for each component. + else: + log_msg(f'WARNING: Data was empty, no file saved.', + prepend_timestamp=False) +def load_from_csv(filepath, orientation=0, reindex=True, return_units=False, + convert=None): """ + Loads data from a CSV file assuming it follows standard SimCenter schema. - AT = assessment_type + CSV files are assumed to have a single header line and an index column. The + second line may start with 'units' in the index and provide the units for + each column in the file. - comb_data_dict = {} - if os.path.isdir(path_combination_data): - tmp_dir = Path(path_combination_data).resolve() - for c_id in comp_info: - with open(tmp_dir / f'{c_id}.json', 'r') as f: - comb_data_dict.update({c_id: json.load(f)}) - ## TODO: hdf type - elif path_combination_data.endswith('hdf'): - for c_id in comp_info: - - store = pd.HDFStore(path_combination_data) - store.open() - comb_data_table = store['HAZUS Subassembly Loss Ratio'] - store.close() - - if comb_data_table is not None: - comb_data_dict.update( - {c_id: {'LossRatio': comb_data_table[c_id].tolist()}}) - else: - raise IOError("Couldn't read the HDF file for combination data.") - - return comb_data_dict + The following data types can be loaded with this function: - -def read_component_DL_data(path_CMP, comp_info, assessment_type='P58', avail_edp=None, - verbose=False): - """ - Read the damage and loss data for the components of the asset. - - DL data for each component is assumed to be stored in a JSON file following - the DL file format specified by SimCenter. The name of the file is the ID - (key) of the component in the comp_info dictionary. Besides the filename, - the comp_info dictionary is also used to get other pieces of data about the - component that is not available in the JSON files. Therefore, the following - attributes need to be provided in the comp_info: ['quantities', - 'csg_weights', 'dirs', 'kind', 'distribution', 'cov', 'unit', 'locations'] - Further information about these attributes is available in the Input - section of the documentation. + Demand Data: Each column in a table corresponds to a demand type; each + row corresponds to a simulation/sample. The header identifies each demand + type. The user guide section of the documentation provides more + information about the header format. Units need to be specified in the + second row of the file. Parameters ---------- - path_CMP: string - Location of the folder that contains the component data in JSON files. - comp_info: dict - Dictionary with additional information about the components. - assessment_type: {'P58', 'HAZUS_EQ', 'HAZUS_HU'} - Tailors the warnings and verifications towards the type of assessment. - default: 'P58'. - avail_edp: list - EDP name string list. default: None - verbose: boolean - If True, the function echoes the information read from the files. This - can be useful to ensure that the information in the files is properly - read by the method. + filepath: string + The location of the source file + orientation: int, {0, 1}, default: 0 + If 0, variables are organized along columns; otherwise they are along + the rows. This is important when converting values to follow the + prescribed units. + reindex: bool + If True, reindexes the table to ensure a 0-based, continuous index + return_units: bool + If True, returns the units as well as the data to allow for adjustments + in unit conversion. Returns ------- - data: dict - A dictionary with damage and loss data for each component. - + data: DataFrame + Data loaded from the file. + units: Series + Labels from the data and corresponding units specified in the file. If + no units are specified, this return value is "None". units are only + returned if return_units is set to True. """ - AT = assessment_type - - data = dict([(c_id, dict([(key, None) for key in [ - 'ID', - 'name', - 'description', - #'kind', - 'demand_type', - 'directional', - 'correlation', - 'offset', - 'incomplete', - 'locations', - 'quantities', - 'csg_weights', - #'dir_weights', - 'directions', - 'distribution_kind', - 'cov', - 'unit', - 'DSG_set', - ]])) for c_id in comp_info.keys()]) - - s_cmp_keys = sorted(data.keys()) - DL_data_dict = {} - - # If the path_CMP is a folder we assume it contains a set of json files - if os.path.isdir(path_CMP): - - CMP_dir = Path(path_CMP).resolve() - - for c_id in s_cmp_keys: - with open(CMP_dir / f'{c_id}.json', 'r') as f: - DL_data_dict.update({c_id: json.load(f)}) - - # else if an HDF5 file is provided we assume it contains the DL data - elif path_CMP.endswith('hdf'): - # hurricane - if AT == 'HAZUS_HU': - for c_id in s_cmp_keys: - if c_id.startswith('fl'): - path_CMP_m = path_CMP.replace('.hdf','_FL.hdf') # flood DL - else: - path_CMP_m = path_CMP.replace('.hdf','_HU.hdf') # wind DL - - store = pd.HDFStore(path_CMP_m) - store.open() - CMP_table = store.select('data', where=f'index in {c_id}') - store.close() - - if CMP_table is not None: - DL_data_dict.update( - {c_id: convert_Series_to_dict(CMP_table.loc[c_id, :])}) - else: - raise IOError("Couldn't read the HDF file for DL data.") - else: - - store = pd.HDFStore(path_CMP) - store.open() - CMP_table = store.select('data', where=f'index in {s_cmp_keys}') - store.close() - - if CMP_table is not None: - for c_id in s_cmp_keys: - DL_data_dict.update( - {c_id: convert_Series_to_dict(CMP_table.loc[c_id, :])}) - else: - raise IOError("Couldn't read the HDF file for DL data.") - - else: - raise ValueError( - "Component data source not recognized. Please provide " - "either a folder with DL json files or an HDF5 table.") - - # for each component - for c_id in s_cmp_keys: - c_data = data[c_id] - - DL_data = DL_data_dict[c_id] - - DL_GI = DL_data['GeneralInformation'] - DL_EDP = DL_data['EDP'] - DL_DSG = DL_data['DSGroups'] - - # First, check if the DL data is complete. Incomplete data can lead to - # all kinds of problems, so in such a case we display a warning and do - # not use the component. This can be relaxed later if someone creates a - # method to replace unknown values with reasonable estimates. - if 'Incomplete' in DL_GI.keys(): - c_data['incomplete'] = int(DL_GI['Incomplete']) - if c_data['incomplete']: - # show warning - del data[c_id] - warnings.warn(UserWarning( - 'Fragility information for {} is incomplete. The component ' - 'cannot be used for loss assessment.'.format(c_id))) - continue - - # Get the parameters from the BIM component info - ci_data = comp_info[c_id] - c_data['locations'] = ci_data['locations'] - c_data['directions'] = ci_data['directions'] - - c_data['unit'] = globals()[ci_data['unit']] - c_data['quantities'] = [(np.asarray(qnt) * c_data['unit']).tolist() - for qnt in ci_data['quantities']] - c_data['csg_weights'] = ci_data['csg_weights'] - - c_data['distribution_kind'] = ci_data['distribution'] - c_data['cov'] = [float_or_None(cov) for cov in ci_data['cov']] - - c_data['ID'] = c_id - c_data['name'] = DL_data['Name'] - c_data['description'] = DL_GI['Description'] - c_data['offset'] =int(DL_EDP.get('Offset', 0)) - c_data['correlation'] = int(DL_data.get('Correlated', False)) - c_data['directional'] = int(DL_data.get('Directional', False)) - - EDP_type = DL_EDP['Type'] - if DL_EDP['Unit'][1] == 'in': - DL_EDP['Unit'][1] = 'inch' - demand_factor = globals()[DL_EDP['Unit'][1]] * DL_EDP['Unit'][0] - - demand_type = EDP_to_demand_type.get(EDP_type, None) - - if demand_type is None: - if EDP_type in ['Link Rotation Angle', - 'Link Beam Chord Rotation']: - - warnings.warn(UserWarning( - 'Component {} requires {} as EDP, which is not yet ' - 'implemented.'.format(c_data['ID'], EDP_type))) - - else: # pragma: no cover - warnings.warn(UserWarning( - f'Unexpected EDP type in component {c_id}: {EDP_type}')) - - del data[c_id] - continue - - else: - c_data['demand_type'] = demand_type - - if demand_type in EDP_offset_adjustment.keys(): - c_data['offset'] = c_data['offset'] + EDP_offset_adjustment[demand_type] - - # check if the DL_EDP is available in the _EDP_in - # if not: delete the relavant data and print warning info - if (avail_edp is not None) and (demand_type not in avail_edp): - del data[c_id] - warnings.warn(UserWarning('{} as EDP is not available in the input. ' - 'This may occur in using IMasEDP with missing IM field(s). ' - 'Note: the corresponding fragility group {} is neglected while the simulation will continue.'.format(demand_type, c_data['ID']))) - continue - - # dictionary to convert DL data to internal representation - curve_type = {'LogNormal': 'lognormal', - 'Normal' : 'normal', - 'N/A' : None} - DS_set_kind = {'MutuallyExclusive' : 'mutually exclusive', - 'mutually exclusive': 'mutually exclusive', - 'simultaneous' : 'simultaneous', - 'Simultaneous' : 'simultaneous', - 'single' : 'single', - 'Single' : 'single'} - - # load the damage state group information - c_data['DSG_set'] = dict() - QNT_unit = DL_data.get('QuantityUnit', [1, 'ea']) - data_unit = QNT_unit[0] * globals()[QNT_unit[1]] - for DSG_id, DSG_i in enumerate(DL_DSG): - DSG_data = dict( - theta=float(DSG_i['MedianEDP']) * demand_factor, - sig=float(DSG_i['Beta']), - DS_set_kind=DS_set_kind[DSG_i['DSGroupType']], - distribution_kind = curve_type[DSG_i['CurveType']], - DS_set={} - ) - # sig needs to be scaled for normal distributions - if DSG_data['distribution_kind'] == 'normal': - DSG_data['sig'] = DSG_data['sig'] * demand_factor - - for DS_id, DS_i in enumerate(DSG_i['DamageStates']): - DS_data = {'description': DS_i['Description'], - 'weight' : DS_i['Weight']} - - DS_C = DS_i.get('Consequences', None) - if DS_C is not None: - if 'ReconstructionCost' in DS_C.keys(): - DS_CC = DS_C['ReconstructionCost'] - if isinstance(DS_CC['Amount'], list): - DS_data.update({'repair_cost': { - 'medians' : np.array([float(a) for a in DS_CC['Amount']]), - 'quantities' : np.array(DS_CC['Quantity']), - 'distribution_kind': curve_type[DS_CC.get('CurveType','N/A')], - 'cov' : DS_CC.get('Beta',None), - }}) - - # convert the quantity units to standard ones - DS_data['repair_cost']['quantities'] *= data_unit - DS_data['repair_cost']['quantities'] = DS_data['repair_cost']['quantities'].tolist() - else: - DS_data.update({'repair_cost': { - 'medians': np.array([float(DS_CC['Amount']),]), - 'distribution_kind': curve_type[DS_CC.get('CurveType','N/A')], - 'cov' : DS_CC.get('Beta',None), - }}) - - # convert the median units to standard ones - DS_data['repair_cost']['medians'] /= data_unit - DS_data['repair_cost']['medians'] = DS_data['repair_cost']['medians'].tolist() - - if 'ReconstructionTime' in DS_C.keys(): - DS_CT = DS_C['ReconstructionTime'] - if isinstance(DS_CT['Amount'], list): - DS_data.update({'repair_time': { - 'medians' : np.array([float(a) for a in DS_CT['Amount']]), - 'quantities' : np.array(DS_CT['Quantity']), - 'distribution_kind': curve_type[DS_CT.get('CurveType','N/A')], - 'cov' : DS_CT.get('Beta',None), - }}) - - # convert the quantity units to standard ones - DS_data['repair_time']['quantities'] *= data_unit - DS_data['repair_time']['quantities'] = DS_data['repair_time']['quantities'].tolist() - else: - DS_data.update({'repair_time': { - 'medians': np.array([float(DS_CT['Amount']),]), - 'distribution_kind': curve_type[DS_CT.get('CurveType','N/A')], - 'cov' : DS_CT.get('Beta',None), - }}) - - # convert the median units to standard ones - DS_data['repair_time']['medians'] /= data_unit - DS_data['repair_time']['medians'] = DS_data['repair_time']['medians'].tolist() - - if 'RedTag' in DS_C.keys(): - DS_CR = DS_C['RedTag'] - DS_data.update({'red_tag': { - 'theta': DS_CR['Amount'], - # 'distribution_kind': curve_type[DS_CR['CurveType']], - 'cov' : DS_CR['Beta'], - }}) - - if 'Injuries' in DS_C.keys(): - DS_CI = DS_C['Injuries'] - if DS_CI[0].get('Beta') is not None: - DS_data.update({'injuries': { - 'theta': [float(I_i['Amount']) for I_i in DS_CI], - # 'distribution_kind': curve_type[DS_CR['CurveType']], - 'cov' : [I_i['Beta'] for I_i in DS_CI], - }}) - else: - DS_data.update({ - 'injuries': [I_i['Amount'] for I_i in DS_CI]}) - - # if there is a chance of injuries, load the affected floor area - affected_area, unit = DS_i.get('AffectedArea', - [0.0, 'SF']) - if unit == 'SF': - affected_area = affected_area * SF - else: # pragma: no cover - warnings.warn(UserWarning( - 'Unknown unit for affected floor area: {}'.format( - unit))) - affected_area = 0. - DS_data.update({'affected_area': affected_area}) - - # convert the units to standard ones - DS_data['affected_area'] /= data_unit - - DSG_data['DS_set'].update({'DS-' + str(DS_id + 1): DS_data}) - - c_data['DSG_set'].update({'DSG-' + str(DSG_id + 1): DSG_data}) - - if verbose: # pragma: no cover - for c_id, c_data in data.items(): - print(c_id) - pp.pprint(c_data) - - return data - -def write_SimCenter_DL_output(output_dir, output_filename, output_df, index_name='#Num', - collapse_columns = True, stats_only=False): - - # if the summary flag is set, then not all realizations are returned, but - # only the first two moments and the empirical CDF through 100 percentiles - if stats_only: - #output_df = output_df.describe(np.arange(1, 100)/100.) - #output_df = output_df.describe([0.1,0.5,0.9]) - if len(output_df.columns) > 0: - output_df = describe(output_df) - else: - output_df = describe(np.zeros(len(output_df.index))) - else: - output_df = output_df.copy() - - # the name of the index column is replaced with the provided value - output_df.index.name = index_name - - # multiple levels of indices are collapsed into a single level if needed - # TODO: check for the number of levels and prepare a smarter collapse method - if collapse_columns: - output_df.columns = [('{}/{}'.format(s0, s1)).replace(' ', '_') - for s0, s1 in zip(output_df.columns.get_level_values(0), - output_df.columns.get_level_values(1))] - - # write the results in a csv file - # TODO: provide other file formats - log_msg('\t\t\tSaving file {}'.format(output_filename)) - file_path = posixpath.join(output_dir, output_filename) - output_df.to_csv(file_path) - # TODO: this requires pandas 1.0+ > wait until next release - #with open(file_path[:-3]+'zip', 'w') as f: - # output_df.to_csv(f, compression=dict(mehtod='zip', archive_name=output_filename)) - -def write_SimCenter_BIM_output(output_dir, BIM_filename, BIM_dict): - - #flatten the dictionary - BIM_flat_dict = {} - for key, item in BIM_dict.items(): - if isinstance(item, dict): - for sub_key, sub_item in item.items(): - BIM_flat_dict.update({f'{key}_{sub_key}': sub_item}) - else: - BIM_flat_dict.update({key: [item,]}) + log_msg(f'Loading data from {filepath}...') - # create the output DF - #BIM_flat_dict.update({"index": [0,]}) - for header_to_remove in ['geometry', 'Footprint']: - try: - BIM_flat_dict.pop(header_to_remove) - except: - pass + # check if the filepath is valid + filepath = Path(filepath).resolve() - df_res = pd.DataFrame.from_dict(BIM_flat_dict) + if not filepath.is_file(): + raise ValueError(f"The filepath provided does not point to an existing " + f"file: {filepath}") - df_res.dropna(axis=1, how='all', inplace=True) + if filepath.suffix == '.csv': - df_res.to_csv('BIM.csv') + # load the contents of the csv into a DataFrame -def write_SimCenter_EDP_output(output_dir, EDP_filename, EDP_df): + data = pd.read_csv(filepath, header=0, index_col=0, low_memory=False) - # initialize the output DF - col_info = np.transpose([col.split('-')[1:] for col in EDP_df.columns]) + log_msg(f'File successfully opened.', prepend_timestamp=False) - EDP_types = np.unique(col_info[0]) - EDP_locs = np.unique(col_info[1]) - EDP_dirs = np.unique(col_info[2]) - - MI = pd.MultiIndex.from_product( - [EDP_types, EDP_locs, EDP_dirs, ['median', 'beta']], - names=['type', 'loc', 'dir', 'stat']) - - df_res = pd.DataFrame(columns=MI, index=[0, ]) - if ('PID', '0') in df_res.columns: - del df_res[('PID', '0')] - - # store the EDP statistics in the output DF - for col in np.transpose(col_info): - df_res.loc[0, (col[0], col[1], col[2], 'median')] = EDP_df[ - '1-{}-{}-{}'.format(col[0], col[1], col[2])].median() - if np.min(EDP_df['1-{}-{}-{}'.format(col[0], col[1], col[2])]) <= 0: - # negative EDP values are also possible, so switching to normal - # distribution (e.g., inundation height PIH can be negative) - df_res.loc[0, (col[0], col[1], col[2], 'beta')] = \ - EDP_df['1-{}-{}-{}'.format(col[0], col[1], col[2])].std() - else: - # assume lognormal distribution for this kind of EDP - df_res.loc[0, (col[0], col[1], col[2], 'beta')] = np.log( - EDP_df['1-{}-{}-{}'.format(col[0], col[1], col[2])]).std() - - df_res.dropna(axis=1, how='all', inplace=True) - - df_res = df_res.astype(float) #.round(4) - - # save the output - df_res.to_csv('EDP.csv') - -def write_SimCenter_DM_output(output_dir, DM_filename, SUMMARY_df, DMG_df): - - # first, get the collapses from the SUMMARY_df - df_res_c = pd.DataFrame([0,], - columns=pd.MultiIndex.from_tuples([('probability',' '),]), - index=[0, ]) - df_res_c['probability'] = SUMMARY_df[('collapses', 'collapsed')].mean() - - # aggregate the damage data along Performance Groups - DMG_agg = DMG_df.groupby(level=['FG', 'DSG_DS'], axis=1).sum() - - comp_types = [] - FG_list = [c for c in DMG_agg.columns.get_level_values('FG').unique()] - for comp_type in ['S', 'NS', 'NSA', 'NSD']: - if np.sum([fg.startswith(comp_type) for fg in FG_list]) > 0: - comp_types.append(comp_type) - if np.sum([np.any([fg.startswith(comp_type) for comp_type in comp_types]) - for fg in FG_list]) != len(FG_list): - comp_types.append('other') - - # second, get the damage state likelihoods - df_res_l = pd.DataFrame( - columns=pd.MultiIndex.from_product([comp_types, - ['0', '1_1', '2_1', '3_1', '4_1', '4_2']], - names=['comp_type', 'DSG_DS']), - index=[0, ]) - - # third, get the damage quantities conditioned on damage state - # we do not do that for now - # df_res_q = pd.DataFrame( - # columns=pd.MultiIndex.from_product([comp_types, - # ['1_1', '2_1', '3_1', '4_1', '4_2']], - # names=['comp_type', 'DSG_DS']), - # index=[0, ]) - - for comp_type in ['NSA', 'NSD', 'NS', 'other']: - if comp_type in comp_types: - del df_res_l[(comp_type, '4_2')] - # del df_res_q[(comp_type, '4_2')] - - # for each type of component... - for comp_type in comp_types: - - # select the corresponding subset of columns - if comp_type == 'other': - type_cols = [fg for fg in FG_list - if np.all([~fg.startswith(comp_type) for comp_type in comp_types])] - else: - type_cols = [c for c in DMG_agg.columns.get_level_values('FG').unique() - if c.startswith(comp_type)] - - df_sel = DMG_agg.loc[:, type_cols].groupby(level='DSG_DS',axis=1).sum() - df_sel = df_sel / len(type_cols) - - # calculate the probability of DSG exceedance - df_sel[df_sel > 0.0] = df_sel[df_sel > 0.0] / df_sel[df_sel > 0.0] - - cols = df_sel.columns - for i in range(len(cols)): - filter = np.where(df_sel.iloc[:, i].values > 0.0)[0] - df_sel.iloc[filter, idx[0:i]] = 1.0 - - df_sel_exc = pd.Series(np.mean(df_sel.values, axis=0), - index=df_sel.columns) - - DS_0 = 1.0 - df_sel_exc['1_1'] - for i in range(len(df_sel_exc.index) - 1): - df_sel_exc.iloc[i] = df_sel_exc.iloc[i] - df_sel_exc.iloc[i + 1] - - # Add the probability of no damage for convenience. - df_sel_exc.loc['0'] = DS_0 - df_sel_exc = df_sel_exc.sort_index() - - # store the results in the output DF - for dsg_i in df_sel_exc.index: - if df_sel_exc[dsg_i] > 0.0: - df_res_l.loc[:, idx[comp_type, dsg_i]] = df_sel_exc[dsg_i] - - # get the quantity of components in the highest damage state - # skip this part for now to reduce file size - if False: - df_init = DMG_agg.loc[:, type_cols].groupby(level='DSG_DS', axis=1).sum() - df_init = (df_init / len(type_cols)).round(2) - - df_sel = df_sel.sum(axis=1) - - for lvl, lvl_label in zip([1.0, 2.0, 3.0, 4.0, 5.0], - ['1_1', '2_1', '3_1', '4_1', '4_2']): - - df_cond = df_init[df_sel == lvl] - - if df_cond.size > 0: - unique_vals, unique_counts = np.unique( - df_cond[lvl_label].values, return_counts=True) - unique_counts = np.around(unique_counts / df_cond.shape[0], - decimals=4) - sorter = np.argsort(unique_counts)[::-1][:4] - DQ = list(zip(unique_vals[sorter], unique_counts[sorter])) - - # store the damaged quantities in the output df - df_res_q.loc[:,idx[comp_type, lvl_label]] = str(DQ) - - # join the output dataframes - #df_res = pd.concat([df_res_c, df_res_l, df_res_q], axis=1, - # keys=['Collapse','DS likelihood','Damaged Quantities']) - df_res = pd.concat([df_res_c, df_res_l], axis=1, keys=['Collapse','DS likelihood']) - - # save the output - with open(posixpath.join(output_dir, DM_filename), 'w') as f: - df_res.to_csv(f) - -def write_SimCenter_DM_output_hu(output_dir, DM_filename, SUMMARY_df, DMG_df): - - # first, get the collapses from the SUMMARY_df - df_res_c = pd.DataFrame([0,], - columns=pd.MultiIndex.from_tuples([('probability',' '),]), - index=[0, ]) - df_res_c['probability'] = SUMMARY_df[('collapses', 'collapsed')].mean() - - # aggregate the damage data along Performance Groups - DMG_agg = DMG_df.groupby(level=['FG', 'DSG_DS'], axis=1).sum() - - comp_types = [] - FG_list = [c for c in DMG_agg.columns.get_level_values('FG').unique()] - - for fg_i, fg_id in enumerate(FG_list): - cur_DMG = DMG_agg.groupby(level=['FG'], axis=1).get_group(fg_id) - - for comp_type in ['CECB', 'CERB', 'MECB', 'MERB', 'MH', 'MLRI', 'MLRM', - 'MMUH', 'MSF', 'SECB', 'SERB', 'SPMB', 'WMUH', 'WSF']: - if fg_id.startswith(comp_type) > 0: - comp_types.append('Wind') - for comp_type in ['fl']: - if fg_id.startswith(comp_type) > 0: - comp_types.append('Flood') - - # second, get the damage state likelihoods - tmp_colname = list(cur_DMG.columns.get_level_values('DSG_DS')) - tmp_colname.insert(0,'0') - df_res_l = pd.DataFrame( - columns=pd.MultiIndex.from_product([[comp_types[fg_i]], tmp_colname], - names=['comp_type', 'DSG_DS']), - index=[0, ]) - - # third, get the damage quantities conditioned on damage state - tmp_colname = list(cur_DMG.columns.get_level_values('DSG_DS')) - tmp_colname.append('4_2') - - df_res_q = pd.DataFrame( - columns=pd.MultiIndex.from_product([[comp_types[fg_i]], tmp_colname], - names=['comp_type', 'DSG_DS']), - index=[0, ]) - - type_cols = fg_id - df_sel = cur_DMG.loc[:, type_cols].groupby(level='DSG_DS',axis=1).sum() - df_sel = df_sel / len(type_cols) - - # calculate the probability of DSG exceedance - df_sel[df_sel > 0.0] = df_sel[df_sel > 0.0] / df_sel[df_sel > 0.0] - - cols = df_sel.columns - for i in range(len(cols)): - filter = np.where(df_sel.iloc[:, i].values > 0.0)[0] - df_sel.iloc[filter, idx[0:i]] = 1.0 - - df_sel_exc = pd.Series(np.mean(df_sel.values, axis=0), - index=df_sel.columns) - - DS_0 = 1.0 - df_sel_exc['1_1'] - for i in range(len(df_sel_exc.index) - 1): - df_sel_exc.iloc[i] = df_sel_exc.iloc[i] - df_sel_exc.iloc[i + 1] - - # Add the probability of no damage for convenience. - df_sel_exc.loc['0'] = DS_0 - df_sel_exc = df_sel_exc.sort_index() - - # store the results in the output DF - df_res_l.loc[:, idx[comp_types[fg_i], :]] = df_sel_exc.values - - # get the quantity of components in the highest damage state - # skip this part for now to reduce file size - if False: - df_init = cur_DMG.loc[:, type_cols].groupby(level='DSG_DS', axis=1).sum() - df_init = (df_init / len(type_cols)).round(2) - - df_sel = df_sel.sum(axis=1) - - for lvl, lvl_label in zip([1.0, 2.0, 3.0, 4.0, 5.0], - ['1_1', '2_1', '3_1', '4_1', '4_2']): - - df_cond = df_init[df_sel == lvl] - - if df_cond.size > 0: - unique_vals, unique_counts = np.unique( - df_cond[lvl_label].values, return_counts=True) - unique_counts = np.around(unique_counts / df_cond.shape[0], - decimals=4) - sorter = np.argsort(unique_counts)[::-1][:4] - DQ = list(zip(unique_vals[sorter], unique_counts[sorter])) - - # store the damaged quantities in the output df - df_res_q.loc[:,idx[comp_type, lvl_label]] = str(DQ) - - # join the output dataframes - if fg_i == 0: - df_res = df_res_l - else: - df_res = pd.concat([df_res, df_res_l], axis = 1, keys=['DS likelihood','DS likelihood']) - - # join the output dataframes - if len(FG_list) == 1: - # wind-only or flood-only results - df_res = pd.concat([df_res_c, df_res_l], axis=1, keys=['Collapse','DS likelihood']) else: - df_res['Collapse','probability',' '] = df_res_c['probability'] - # save the output - with open(posixpath.join(output_dir, DM_filename), 'w') as f: - df_res.to_csv(f) - -def write_SimCenter_DM_output_old(output_dir, DM_filename, DMG_df): - - # Start with the probability of being in a particular damage state. - # Here, the damage state of the building (asset) is defined as the highest - # damage state among the building components/component groups. This works - # well for a HAZUS assessment, but something more sophisticated is needed - # for a FEMA P58 assessment. - - # Determine the probability of DS exceedance by collecting the DS from all - # components and assigning ones to all lower damage states. - DMG_agg = DMG_df.T.groupby('DSG_DS').sum().T - DMG_agg[DMG_agg > 0.0] = DMG_agg[DMG_agg > 0.0] / DMG_agg[DMG_agg > 0.0] - - cols = DMG_agg.columns - for i in range(len(cols)): - filter = np.where(DMG_agg.iloc[:,i].values > 0.0)[0] - DMG_agg.iloc[filter,idx[0:i]] = 1.0 - - # The P(DS=ds) probability is determined by subtracting consecutive DS - # exceedance probabilites. This will not work well for a FEMA P58 assessment - # with Damage State Groups that include multiple Damage States. - #DMG_agg_mean = DMG_agg.describe().loc['mean',:] - DMG_agg_mean = pd.Series(np.mean(DMG_agg.values, axis=0), index=DMG_agg.columns) - - DS_0 = 1.0 - DMG_agg_mean['1_1'] - for i in range(len(DMG_agg_mean.index)-1): - DMG_agg_mean.iloc[i] = DMG_agg_mean.iloc[i] - DMG_agg_mean.iloc[i+1] - - # Add the probability of no damage for convenience. - DMG_agg_mean['0'] = DS_0 - DMG_agg_mean = DMG_agg_mean.sort_index() - - # Save the results in the output json file - DM = {'aggregate': {}} - - for id in DMG_agg_mean.index: - DM['aggregate'].update({str(id): DMG_agg_mean[id]}) - - # Now determine the probability of being in a damage state for individual - # components / component assemblies... - #DMG_mean = DMG_df.describe().loc['mean',:] - DMG_mean = pd.Series(np.mean(DMG_df.values, axis=0), index=DMG_df.columns) - - # and save the results in the output json file. - for FG in sorted(DMG_mean.index.get_level_values('FG').unique()): - DM.update({str(FG):{}}) - - for PG in sorted( - DMG_mean.loc[idx[FG],:].index.get_level_values('PG').unique()): - DM[str(FG)].update({str(PG):{}}) - - for DS in sorted( - DMG_mean.loc[idx[FG],:].loc[idx[:,PG],:].index.get_level_values('DSG_DS').unique()): - DM[str(FG)][str(PG)].update({str(DS): DMG_mean.loc[(FG,PG,DS)]}) - - log_msg('\t\t\tSaving file {}'.format(DM_filename)) - with open(posixpath.join(output_dir, DM_filename), 'w') as f: - json.dump(DM, f, indent = 2) - -def write_SimCenter_DV_output(output_dir, DV_filename, GI, SUMMARY_df, DV_dict): - - DV_cost = None - DV_time = None - DV_inj = [None,]*4 - - for DV_name, DV_mod in DV_dict.items(): - if 'rec_cost' in DV_name: - DV_cost = DV_mod - elif 'rec_time' in DV_name: - DV_time = DV_mod - elif 'injuries_1' in DV_name: - DV_inj[0] = DV_mod - elif 'injuries_2' in DV_name: - DV_inj[1] = DV_mod - elif 'injuries_3' in DV_name: - DV_inj[2] = DV_mod - elif 'injuries_4' in DV_name: - DV_inj[3] = DV_mod - - DVs = SUMMARY_df.columns.get_level_values(1) - - if DV_cost is not None: - - comp_types = [] - FG_list = [c for c in DV_cost.columns.get_level_values('FG').unique()] - for comp_type in ['S', 'NS', 'NSA', 'NSD']: - if np.sum([fg.startswith(comp_type) for fg in FG_list]) > 0: - if any([fg.startswith('SE') or fg.startswith('SP') for fg in FG_list]): - # additional name check for HAZUS building class tags - continue - else: - comp_types.append(comp_type) + raise ValueError(f'ERROR: Unexpected file type received when trying ' + f'to load from csv: {filepath}') - # Hurricane comp_types: - for comp_type in ['CECB', 'CERB', 'MECB', 'MERB', 'MH', 'MLRI', 'MLRM', - 'MMUH', 'MSF', 'SECB', 'SERB', 'SPMB', 'WMUH', 'WSF']: - if np.sum([fg.startswith(comp_type) for fg in FG_list]) > 0: - comp_types.append('Wind') - for comp_type in ['fl']: - if np.sum([fg.startswith(comp_type) for fg in FG_list]) > 0: - comp_types.append('Flood') + # if there is information about units, perform the conversion to SI + if (data.index[0] == 'units') or (data.columns[0] == 'units'): - repl_cost = GI['replacement_cost'] + log_msg(f'Converting units...', prepend_timestamp=False) - headers = [['Repair Cost',], - ['aggregate',], - [' ',], - ['mean','std','10%','median','90%']] + if orientation == 0: + units = data.loc['units',:].copy().dropna() + data.drop('units', inplace=True) + data = data.astype(float) - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) + else: #elif orientation==1: + units = data.loc[:, 'units'].copy().dropna() + data.drop('units', axis=1, inplace=True) - df_res_Cagg = pd.DataFrame(columns=MI, index=[0, ]) - df_res_Cagg.fillna(0, inplace=True) - - headers = [['Repair Impractical',], - ['probability',], - [' ',], - [' ',]] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_Cimp = pd.DataFrame(columns=MI, index=[0, ]) - df_res_Cimp[('Repair Impractical', 'probability')] = SUMMARY_df[('reconstruction', 'cost impractical')].mean() - df_res_Cimp = df_res_Cimp.astype(float) - - headers = [['Repair Cost',], - comp_types, - ['aggregate','1_1', '2_1', '3_1', '4_1', '4_2'], - ['mean',]] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_C = pd.DataFrame(columns=MI, index=[0, ]) - - for comp_type in ['NSA', 'NSD', 'NS']: - if comp_type in comp_types: - del df_res_C[('Repair Cost', comp_type, '4_2')] - - # Hurricane comp_types - for comp_type in ['Wind', 'Flood']: - if comp_type in comp_types: - del df_res_C[('Repair Cost', comp_type, '4_2')] - - if DV_time is not None: - - repl_time = GI['replacement_time'] - - headers = [['Repair Time',], - [' ',], - ['aggregate',], - ['mean','std','10%','median','90%']] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_Tagg = pd.DataFrame(columns=MI, index=[0, ]) - df_res_Tagg.fillna(0, inplace=True) - - if DV_inj[0] is not None: - - lvls = [] - [lvls.append(f'sev{i+1}') for i in range(4) if DV_inj[i] is not None] - - headers = [['Injuries',], - lvls, - ['aggregate',], - ['mean','std','10%','median','90%']] - - MI = pd.MultiIndex.from_product(headers, - names=['DV', 'comp_type', 'DSG_DS', 'stat']) - - df_res_Iagg = pd.DataFrame(columns=MI, index=[0, ]) - df_res_Iagg.fillna(0, inplace=True) - - dfs_to_join = [] - - # start with the disaggregated costs... - if DV_cost is not None: - for type_ID in comp_types: - - DV_res = DV_cost.groupby(level=['FG', 'DSG_DS'], axis=1).sum() - - type_cols = [c for c in DV_res.columns.get_level_values('FG').unique() if c.startswith(type_ID)] - - # Hurricane comp_types: - if type_ID == 'Wind': - for k in ['CECB', 'CERB', 'MECB', 'MERB', 'MH', 'MLRI', 'MLRM', - 'MMUH', 'MSF', 'SECB', 'SERB', 'SPMB', 'WMUH', 'WSF']: + if convert is None: + cols_to_scale = [] + for col in data.columns: try: - type_cols = [c for c in DV_res.columns.get_level_values('FG').unique() if c.startswith(k)] - if type_cols: - break + data.loc[:, col] = data.loc[:,col].astype(float) + cols_to_scale.append(col) except: - print('Cannot find fragility ID for the wind loss type.') - elif type_ID == 'Flood': - type_cols = [c for c in DV_res.columns.get_level_values('FG').unique() \ - if c.startswith('fl')] - - df_cost = DV_res.loc[:, type_cols].groupby(level='DSG_DS',axis=1).sum() - - # create a df with 1s at cells with damage and identify the governing DS - df_sel = df_cost.copy() - df_sel[df_sel>0.0] = df_sel[df_sel>0.0] / df_sel[df_sel>0.0] - - cols = df_sel.columns - for i in range(len(cols)): - filter = np.where(df_sel.iloc[:,i].values > 0.0)[0] - df_sel.iloc[filter,idx[0:i]] = 1.0 - df_sel = df_sel.sum(axis=1) - - if type_ID == 'S': - ds_list = ['1_1', '2_1', '3_1', '4_1', '4_2'] + pass else: - ds_list = ['1_1', '2_1', '3_1', '4_1'] - - # Hurricane ds_list - if type_ID == 'Wind': - ds_list = ['1_1', '2_1', '3_1', '4_1'] - elif type_ID == 'Flood': - # flood ds (Hazus does not have ds, ds here just indicates PIH) - ds_list = ['10_1', '11_1', '12_1', '13_1', '14_1', '15_1', '16_1', - '17_1', '18_1', '19_1', '1_1', '2_1', '3_1', '4_1', - '5_1', '6_1', '7_1', '8_1', '9_1'] - - # store the results in the output DF - df_cost = df_cost.sum(axis=1) - df_cost.loc[:] = np.minimum(df_cost.values, repl_cost) - mean_costs = [df_cost.loc[df_sel == dsg_i+1].mean() for dsg_i, dsg in enumerate(ds_list)] + cols_to_scale = convert - #df_res_C.loc[:, idx['Repair Cost', type_ID, ds_list, 'mean']] = mean_costs - # Looping to fill the mean_costs (for various damage state numbers) - for cur_ds in ds_list: - df_res_C.loc[:, idx['Repair Cost', type_ID, cur_ds, 'mean']] = mean_costs[ds_list.index(cur_ds)] - df_res_C.loc[:, idx['Repair Cost', type_ID, 'aggregate', 'mean']] = df_cost.mean() + unique_unit_names = units.unique() - df_res_C = df_res_C.astype(float) #.round(0) + for unit_name in unique_unit_names: - # now store the aggregate results for cost - DV_res = describe(SUMMARY_df[('reconstruction','cost')]) + unit_factor = globals()[unit_name] + unit_labels = units.loc[units==unit_name].index - df_res_Cagg.loc[:, idx['Repair Cost', 'aggregate', ' ', ['mean', 'std','10%','median','90%']]] = DV_res[['mean', 'std','10%','50%','90%']].values + if orientation == 0: + data.loc[:,unit_labels] *= unit_factor - df_res_Cagg = df_res_Cagg.astype(float) #.round(0) - dfs_to_join = dfs_to_join + [df_res_Cagg, df_res_Cimp, df_res_C] + else: #elif orientation==1: + data.loc[unit_labels, cols_to_scale] *= unit_factor - if DV_time is not None: - DV_res = describe(SUMMARY_df[('reconstruction','time')]) + log_msg(f'Unit conversion successful.', prepend_timestamp=False) - df_res_Tagg.loc[:, idx['Repair Time', ' ', 'aggregate', ['mean', 'std','10%','median','90%']]] = DV_res[['mean', 'std','10%','50%','90%']].values + else: - df_res_Tagg = df_res_Tagg.astype(float) #.round(1) - dfs_to_join.append(df_res_Tagg) + data = data.convert_dtypes() + # enforcing float datatype is important even if there is no unit + # conversion + units = None + if orientation == 0: + data = data.astype(float) - if DV_inj[0] is not None: - for i in range(4): - if DV_inj[i] is not None: - DV_res = describe(SUMMARY_df[('injuries',f'sev{i+1}')]) + else: + for col in data.columns: + try: + data.loc[:, col] = data.loc[:, col].astype(float) + except: + pass - df_res_Iagg.loc[:, idx['Injuries', f'sev{i+1}', 'aggregate', ['mean', 'std','10%','median','90%']]] = DV_res[['mean', 'std','10%','50%','90%']].values + # convert column to MultiIndex if needed + data = convert_to_MultiIndex(data, axis=1) - df_res_Iagg = df_res_Iagg.astype(float) #.round(6) + data.sort_index(axis=1, inplace=True) - dfs_to_join.append(df_res_Iagg) + # reindex the data, if needed + if reindex: - df_res = pd.concat(dfs_to_join,axis=1) + data.index = np.arange(data.shape[0]) - # save the output - with open(posixpath.join(output_dir, DV_filename), 'w') as f: - df_res.to_csv(f) + else: + # convert index to MultiIndex if needed + data = convert_to_MultiIndex(data, axis=0) -def write_SimCenter_DV_output_old(output_dir, DV_filename, DV_df, DV_name): + data.sort_index(inplace=True) - DV_name = convert_dv_name[DV_name] + log_msg(f'Data successfully loaded from file.', prepend_timestamp=False) - DV_file_path = posixpath.join(output_dir, DV_filename) + if return_units: - try: - with open(DV_file_path, 'r') as f: - DV = json.load(f) - except: - DV = {} + # convert index in units Series to MultiIndex if needed + units = convert_to_MultiIndex(units, axis=0) - DV.update({DV_name: {}}) + units.sort_index(inplace=True) - DV_i = DV[DV_name] + return data, units - try: - #if True: - #DV_tot = DV_df.sum(axis=1).describe([0.1,0.5,0.9]).drop('count') - DV_tot = describe(np.sum(DV_df.values, axis=1)) - DV_i.update({'total':{}}) - for stat in DV_tot.index: - DV_i['total'].update({stat: DV_tot.loc[stat]}) - - #DV_stats = DV_df.describe([0.1,0.5,0.9]).drop('count') - DV_stats = describe(DV_df) - for FG in sorted(DV_stats.columns.get_level_values('FG').unique()): - DV_i.update({str(FG):{}}) - - for PG in sorted( - DV_stats.loc[:,idx[FG]].columns.get_level_values('PG').unique()): - DV_i[str(FG)].update({str(PG):{}}) - - for DS in sorted( - DV_stats.loc[:,idx[FG, PG]].columns.get_level_values('DSG_DS').unique()): - DV_i[str(FG)][str(PG)].update({str(DS): {}}) - DV_stats_i = DV_stats.loc[:,(FG,PG,DS)] - for stat in DV_stats_i.index: - DV_i[str(FG)][str(PG)][str(DS)].update({ - stat: DV_stats_i.loc[stat]}) - except: - pass - - log_msg('\t\t\tSaving file {}'.format(DV_filename)) - with open(DV_file_path, 'w') as f: - json.dump(DV, f, indent = 2) + else: + return data \ No newline at end of file diff --git a/pelicun/model.py b/pelicun/model.py index f735e5ce1..9ad8bc888 100644 --- a/pelicun/model.py +++ b/pelicun/model.py @@ -56,795 +56,2323 @@ PerformanceGroup FragilityGroup + DemandModel + """ from .base import * +from .uq import * +from .file_io import save_to_csv, load_from_csv -class FragilityFunction(object): +class DemandModel(object): """ - Describes the relationship between asset response and damage. - - Asset response is characterized by a Demand value that represents an - engineering demand parameter (EDP). Only a scalar EDP is supported - currently. The damage is characterized by a set of DamageStateGroup (DSG) - objects. For each DSG, the corresponding EDP limit (i.e. the EDP at which - the asset is assumed to experience damage described by the DSG) is - considered uncertain; hence, it is described by a random variable. The - random variables that describe EDP limits for the set of DSGs are not - necessarily independent. - - We assume that the EDP limit will be approximated by a probability - distribution for each DSG and these variables together form a multivariate - distribution. Following common practice, the correlation between - variables is assumed perfect by default, but the framework allows the - users to explore other, more realistic options. + Manages demand information used in assessments. Parameters ---------- - EDP_limit: list of RandomVariable - A list of correlated random variables where each variable corresponds - to an EDP limit that triggers a damage state. The number of - list elements shall be equal to the number of DSGs handled by the - Fragility Function (FF) and they shall be in ascending order of damage - severity. + marginal_params: DataFrame + Available after the model has been calibrated or calibration data has + been imported. Defines the marginal distribution of each demand + variable. + correlation: DataFrame + Available after the model has been calibrated or calibration data has + been imported. Defines the correlation between the demand variables in + standard normal space. That is, the variables are sampled in standard + normal space and then transformed into the space of their respective + distributions and the correlation matrix corresponds to the space where + they are sampled. + empirical_data: DataFrame + Available after the model has been calibrated or calibration data has + been imported. It provides an empirical dataset for the demand + variables that are modeled with an empirical distribution. + sample: DataFrame + Available after a sample has been generated. Demand variables are + listed in columns and each row provides an independent realization of + the joint demand distribution. + units: Series + Available after any demand data has been loaded. The index identifies + the demand variables and the values provide the unit for each variable. """ - def __init__(self, EDP_limit): - self._EDP_limit = EDP_limit + def __init__(self): + + self.marginal_params = None + self.correlation = None + self.empirical_data = None + self.units = None + + self._RVs = None + self._sample = None + + @property + def sample(self): + + if self._sample is None: + + sample = pd.DataFrame(self._RVs.RV_sample) + + sample = convert_to_MultiIndex(sample, axis=1)['EDP'] + + self._sample = sample + + else: + sample = self._sample + + return sample + + def save_sample(self, filepath): + """ + Save demand sample to a csv file + + """ + + log_div() + log_msg(f'Saving demand sample...') + + save_to_csv(self.sample, filepath, units=self.units) - self._EDP_tags = [EDP_lim_i.name for EDP_lim_i in EDP_limit] + log_msg(f'Demand sample successfully saved.', prepend_timestamp=False) - def P_exc(self, EDP, DSG_ID): + def load_sample(self, filepath): """ - Return the probability of damage state exceedance. + Load demand sample data and parse it. - Calculate the probability of exceeding the damage corresponding to the - DSG identified by the DSG_ID conditioned on a particular EDP value. + Besides parsing the sample, the method also reads and saves the units + specified for each demand variable. If no units are specified, Standard + Units are assumed. Parameters ---------- - EDP: float scalar or ndarray - Single EDP or numpy array of EDP values. - DSG_ID: int - Identifies the conditioning DSG. The DSG numbering is 1-based, - because zero typically corresponds to the undamaged state. + filepath: string + Location of the file with the demand sample. - Returns - ------- - P_exc: float scalar or ndarray - DSG exceedance probability at the given EDP point(s). """ - EDP = np.asarray(EDP, dtype=np.float64) - nvals = EDP.size + def parse_header(raw_header): - # The exceedance probability corresponding to no damage is 1. - # Although this is trivial, returning 1 for DSG_ID=0 makes using P_exc - # more convenient. - if DSG_ID == 0: - P_exc = np.ones(EDP.size) - else: - # prepare the limits for the density calculation - ndims = len(self._EDP_limit) + old_MI = raw_header - limit_list = np.full((ndims, nvals), -np.inf, dtype=np.float64) - limit_list[DSG_ID - 1:] = EDP - limit_list[:DSG_ID - 1] = None + # The first number (event_ID) in the demand labels is optional and + # currently not used. We remove it if it was in the raw data. + if old_MI.nlevels == 4: - P_exc = 1.0 - self._EDP_limit[0].RV_set.orthotope_density( - lower=limit_list, var_subset = self._EDP_tags) + if options.verbose: + log_msg(f'Removing event_ID from header...', + prepend_timestamp=False) - # if EDP was a scalar, make sure that the result is also a scalar - if EDP.size == 1: - return P_exc[0] - else: - return P_exc + new_column_index = np.array( + [old_MI.get_level_values(i) for i in range(1, 4)]) + + else: + new_column_index = np.array( + [old_MI.get_level_values(i) for i in range(3)]) + + # Remove whitespace to avoid ambiguity + + if options.verbose: + log_msg(f'Removing whitespace from header...', + prepend_timestamp=False) + + wspace_remove = np.vectorize(lambda name: name.replace(' ', '')) + + new_column_index = wspace_remove(new_column_index) + + # Creating new, cleaned-up header + + new_MI = pd.MultiIndex.from_arrays( + new_column_index, names=['type', 'loc', 'dir']) + + return new_MI + + log_div() + log_msg(f'Loading demand data...') - def DSG_given_EDP(self, EDP, force_resampling=False): + demand_data, units = load_from_csv(filepath, return_units=True) + + parsed_data = demand_data.copy() + + # start with cleaning up the header + + parsed_data.columns = parse_header(parsed_data.columns) + + # Remove errors, if needed + if 'ERROR' in parsed_data.columns.get_level_values(0): + + log_msg(f'Removing errors from the raw data...', + prepend_timestamp=False) + + error_list = parsed_data.loc[:,idx['ERROR',:,:]].values.astype(bool) + + parsed_data = parsed_data.loc[~error_list, :].copy() + parsed_data.drop('ERROR', level=0, axis=1, inplace=True) + + log_msg(f"\nBased on the values in the ERROR column, " + f"{np.sum(error_list)} demand samples were removed.\n", + prepend_timestamp=False) + + self._sample = parsed_data + + log_msg(f'Demand data successfully parsed.', prepend_timestamp=False) + + # parse the index for the units + units.index = parse_header(units.index) + + self.units = units + + log_msg(f'Demand units successfully parsed.', prepend_timestamp=False) + + def calibrate_model(self, config): """ - Given an EDP, get a damage level based on the fragility function. + Calibrate a demand model to describe the raw demand data - The damage is evaluated by sampling the joint distribution of - fragilities corresponding to all possible damage levels and checking - which damage level the given EDP falls into. This approach allows for - efficient damage state evaluation for a large number of EDP - realizations. + The raw data shall be parsed first to ensure that it follows the + schema expected by this method. The calibration settings define the + characteristics of the multivariate distribution that is fit to the + raw data. Parameters ---------- - EDP: float scalar or ndarray or Series - Single EDP, or numpy array or pandas Series of EDP values. - force_resampling: bool, optional, default: False - If True, the probability distribution is resampled before - evaluating the damage for each EDP. This is not recommended if the - fragility functions are correlated with other sources of - uncertainty because those variables will also be resampled in this - case. If False, which is the default approach, we assume that - the random variable has already been sampled and the number of - samples greater or equal to the number of EDP values. - - Returns - ------- - DSG_ID: Series - Identifies the damage that corresponds to the given EDP. A DSG_ID - of 0 means no damage. + config: dict + A dictionary, typically read from a json file, that specifies the + distribution family, truncation and censoring limits, and other + settings for the calibration. """ - # get the number of samples needed - nsamples = EDP.size - # if there are no samples or resampling is forced, then sample the - # distribution first - # TODO: force_resampling is probably not needed - # if force_resampling or (self._EDP_limit.samples is None): - # self._EDP_limit.sample_distribution(sample_size=nsamples) - # - # # if the number of samples is not sufficiently large, raise an error - # if self._EDP_limit.samples.shape[0] < nsamples: - # raise ValueError( - # 'Damage evaluation requires at least as many samples of the ' - # 'joint distribution defined by the fragility functions as ' - # 'many EDP values are provided to the DSG_given_EDP function. ' - # 'You might want to consider setting force_resampling to True ' - # 'or sampling the distribution before calling the DSG_given_EDP ' - # 'function.') + def parse_settings(settings, demand_type): - #samples = pd.DataFrame(self._EDP_limit.samples) - samples = pd.DataFrame(dict([(lim_i.name, lim_i.samples) - for lim_i in self._EDP_limit])) + active_d_types = ( + demand_sample.columns.get_level_values('type').unique()) - if type(EDP) not in [pd.Series, pd.DataFrame]: - EDP = pd.Series(EDP, name='EDP') + if demand_type == 'ALL': + cols = tuple(active_d_types) - #nstates = samples.columns.values.size - nstates = samples.shape[1] + else: + cols = [] - samples = samples.loc[EDP.index,:] + for d_type in active_d_types: + if d_type.split('_')[0] == demand_type: + cols.append(d_type) - # sort columns - sample_cols = samples.columns - samples = samples[sample_cols[np.argsort(sample_cols)]] + cols = tuple(cols) - # check for EDP exceedance - EXC = samples.sub(EDP, axis=0) < 0. + # load the distribution family + cal_df.loc[idx[cols,:,:], 'family'] = settings['DistributionFamily'] - DSG_ID = pd.Series(np.zeros(len(samples.index)), name='DSG_ID', - index=samples.index, dtype=np.int) + # load the censor limits + if 'CensorAt' in settings.keys(): + censor_lower, censor_upper = settings['CensorAt'] + cal_df.loc[idx[cols,:,:], 'censor_lower'] = censor_lower + cal_df.loc[idx[cols,:,:], 'censor_upper'] = censor_upper - for s in range(nstates): - DSG_ID[EXC.iloc[:,s]] = s + 1 + # load the truncation limits + if 'TruncateAt' in settings.keys(): + truncate_lower, truncate_upper = settings['TruncateAt'] + cal_df.loc[idx[cols,:,:], 'truncate_lower'] = truncate_lower + cal_df.loc[idx[cols,:,:], 'truncate_upper'] = truncate_upper - return DSG_ID + # scale the censor and truncation limits, if needed + scale_factor = options.scale_factor(settings.get('Unit', None)) -def prep_constant_median_DV(median): - """ - Returns a constant median Decision Variable (DV) function. + rows_to_scale = ['censor_lower', 'censor_upper', + 'truncate_lower', 'truncate_upper'] + cal_df.loc[idx[cols,:,:], rows_to_scale] *= scale_factor - Parameters - ---------- - median: float - The median DV for a consequence function with fixed median. + # load the prescribed additional uncertainty + if 'AddUncertainty' in settings.keys(): - Returns - ------- - f: callable - A function that returns the constant median DV for all component - quantities. - """ - def f(quantity): - return median + sig_increase = settings['AddUncertainty'] - return f + # scale the sig value if the target distribution family is normal + if settings['DistributionFamily'] == 'normal': + sig_increase *= scale_factor -def prep_bounded_linear_median_DV(median_max, median_min, quantity_lower, - quantity_upper): - """ - Returns a bounded linear median Decision Variable (DV) function. + cal_df.loc[idx[cols,:,:], 'sig_increase'] = sig_increase - The median DV equals the min and max values when the quantity is - outside of the prescribed quantity bounds. When the quantity is within the - bounds, the returned median is calculated by a linear function with a - negative slope between max and min values. + def get_filter_mask(lower_lims, upper_lims): - Parameters - ---------- - median_max: float, optional - median_min: float, optional - Minimum and maximum limits that define the bounded_linear median DV - function. - quantity_lower: float, optional - quantity_upper: float, optional - Lower and upper bounds of component quantity that define the - bounded_linear median DV function. + demands_of_interest = demand_sample.iloc[:, ~np.isnan(upper_lims)] + limits_of_interest = upper_lims[~np.isnan(upper_lims)] + upper_mask = np.all(demands_of_interest < limits_of_interest, + axis=1) - Returns - ------- - f: callable - A function that returns the median DV given the quantity of damaged - components. - """ - def f(quantity): - if quantity is None: - raise ValueError( - 'A bounded linear median Decision Variable function called ' - 'without specifying the quantity of damaged components') + demands_of_interest = demand_sample.iloc[:, ~np.isnan(lower_lims)] + limits_of_interest = lower_lims[~np.isnan(lower_lims)] + lower_mask = np.all(demands_of_interest > limits_of_interest, + axis=1) - q_array = np.asarray(quantity, dtype=np.float64) + return np.all([lower_mask, upper_mask], axis=0) - # calculate the median consequence given the quantity of damaged - # components - output = np.interp(q_array, - [quantity_lower, quantity_upper], - [median_max, median_min]) + log_div() + log_msg('Calibrating demand model...') - return output + demand_sample = self.sample - return f + # initialize a DataFrame that contains calibration information + cal_df = pd.DataFrame( + columns=['family', + 'censor_lower', 'censor_upper', + 'truncate_lower', 'truncate_upper', + 'sig_increase', 'theta_0', 'theta_1'], + index=demand_sample.columns, + dtype=float + ) -def prep_bounded_multilinear_median_DV(medians, quantities): - """ - Returns a bounded multilinear median Decision Variable (DV) function. + cal_df['family'] = cal_df['family'].astype(str) - The median DV equals the min and max values when the quantity is - outside of the prescribed quantity bounds. When the quantity is within the - bounds, the returned median is calculated by linear interpolation. + # start by assigning the default option ('ALL') to every demand column + parse_settings(config['ALL'], 'ALL') - Parameters - ---------- - medians: ndarray - Series of values that define the y coordinates of the multilinear DV - function. - quantities: ndarray - Series of values that define the component quantities corresponding to - the series of medians and serving as the x coordinates of the - multilinear DV function. + # then parse the additional settings and make the necessary adjustments + for demand_type in config.keys(): + if demand_type != 'ALL': + parse_settings(config[demand_type], demand_type) - Returns - ------- - f: callable - A function that returns the median DV given the quantity of damaged - components. - """ - def f(quantity): - if quantity is None: - raise ValueError( - 'A bounded linear median Decision Variable function called ' - 'without specifying the quantity of damaged components') + if options.verbose: + log_msg(f"\nCalibration settings successfully parsed:\n"+str(cal_df), + prepend_timestamp=False) + else: + log_msg( + f"\nCalibration settings successfully parsed:\n", + prepend_timestamp=False) - q_array = np.asarray(quantity, dtype=np.float64) + # save the settings + model_params = cal_df.copy() - # calculate the median consequence given the quantity of damaged - # components - output = np.interp(q_array, quantities, medians) + # Remove the samples outside of censoring limits + # Currently, non-empirical demands are assumed to have some level of + # correlation, hence, a censored value in any demand triggers the + # removal of the entire sample from the population. + upper_lims = cal_df.loc[:, 'censor_upper'].values + lower_lims = cal_df.loc[:, 'censor_lower'].values - return output + if ~np.all(np.isnan(np.array([upper_lims, lower_lims]))): - return f + censor_mask = get_filter_mask(lower_lims, upper_lims) + censored_count = np.sum(~censor_mask) -class ConsequenceFunction(object): - """ - Describes the relationship between damage and a decision variable. + demand_sample = demand_sample.loc[censor_mask, :] - Indicates the distribution of a quantified Decision Variable (DV) - conditioned on a component, an element, or the system reaching a given - damage state (DS). DV can be reconstruction cost, repair time, casualties, - injuries, etc. Its distribution might depend on the quantity of damaged - components. + log_msg(f"\nBased on the provided censoring limits, " + f"{censored_count} samples were censored.", + prepend_timestamp=False) + else: + censored_count = 0 - Parameters - ---------- + # Check if there is any sample outside of truncation limits + # If yes, that suggests an error either in the samples or the + # configuration. We handle such errors gracefully: the analysis is not + # terminated, but we show an error in the log file. + upper_lims = cal_df.loc[:, 'truncate_upper'].values + lower_lims = cal_df.loc[:, 'truncate_lower'].values - DV_median: callable - Describes the median DV as an f(quantity) function of the total - quantity of damaged components. Use the prep_constant_median_DV, and - prep_bounded_linear_median_DV helper functions to conveniently - prescribe the typical FEMA P-58 functions. - DV_distribution: RandomVariable - A random variable that characterizes the uncertainty in the DV. The - distribution shall be normalized by the median DV (i.e. the RV is - expected to have a unit median). Truncation can be used to - prescribe lower and upper limits for the DV, such as the (0,1) domain - needed for red tag evaluation. + if ~np.all(np.isnan(np.array([upper_lims, lower_lims]))): - """ + truncate_mask = get_filter_mask(lower_lims, upper_lims) + truncated_count = np.sum(~truncate_mask) - def __init__(self, DV_median, DV_distribution): + if truncated_count > 0: - self._DV_median = DV_median - self._DV_distribution = DV_distribution + demand_sample = demand_sample.loc[truncate_mask, :] - def median(self, quantity=None): - """ - Return the value of the median DV. + log_msg(f"\nBased on the provided truncation limits, " + f"{truncated_count} samples were removed before demand " + f"calibration.", + prepend_timestamp=False) - The median DV corresponds to the component damage state (DS). If the - damage consequence depends on the quantity of damaged components, the - total quantity of damaged components shall be specified through the - quantity parameter. + # Separate and save the demands that are kept empirical -> i.e., no + # fitting. Currently, empirical demands are decoupled from those that + # have a distribution fit to their samples. The correlation between + # empirical and other demands is not preserved in the demand model. + empirical_edps = [] + for edp in cal_df.index: + if cal_df.loc[edp, 'family'] == 'empirical': + empirical_edps.append(edp) - Parameters - ---------- - quantity: float scalar or ndarray, optional - Total quantity of damaged components that determines the magnitude - of median DV. Not needed for consequence functions with a fixed - median DV. + self.empirical_data = demand_sample.loc[:, empirical_edps].copy() - Returns - ------- - median: float scalar or ndarray - A single scalar for fixed median; a scalar or an array depending on - the shape of the quantity parameter for bounded_linear median. + # remove the empirical demands from the samples used for calibration + demand_sample = demand_sample.drop(empirical_edps, 1) - """ - return self._DV_median(quantity) + # and the calibration settings + cal_df = cal_df.drop(empirical_edps, 0) - def sample_unit_DV(self, quantity=None, sample_size=1, - force_resampling=False): - """ - Sample the decision variable quantity per component unit. + if options.verbose: + log_msg(f"\nDemand data used for calibration:\n"+str(demand_sample), + prepend_timestamp=False) - The Unit Decision Variable (UDV) corresponds to the component Damage - State (DS). It shall be multiplied by the quantity of damaged - components to get the total DV that corresponds to the quantity of the - damaged components in the asset. If the DV depends on the total - quantity of damaged components, that value shall be specified through - the quantity parameter. + # fit the joint distribution + log_msg(f"\nFitting the prescribed joint demand distribution...", + prepend_timestamp=False) - Parameters - ---------- - quantity: float scalar, ndarray or Series, optional, default: None - Total quantity of damaged components that determines the magnitude - of median DV. Not needed for consequence functions with a fixed - median DV. - sample_size: int, optional, default: 1 - Number of samples drawn from the DV distribution. The default value - yields one sample. If quantity is an array with more than one - element, the sample_size parameter is ignored. - force_resampling: bool, optional, default: False - If True, the DV distribution (and the corresponding RV if there - are correlations) is resampled even if there are samples already - available. This is not recommended if the DV distribution is - correlated with other sources of uncertainty because those - variables will also be resampled in this case. If False, which is - the default approach, we assume that the random variable has - already been sampled and the number of samples is greater or equal - to the number of samples requested. + demand_theta, demand_rho = fit_distribution_to_sample( + raw_samples = demand_sample.values.T, + distribution = cal_df.loc[:, 'family'].values, + censored_count = censored_count, + detection_limits = cal_df.loc[:, + ['censor_lower', 'censor_upper']].values.T, + truncation_limits = cal_df.loc[:, + ['truncate_lower', 'truncate_upper']].values.T, + multi_fit=False + ) - Returns - ------- - unit_DV: float scalar or ndarray - Unit DV samples. + # fit the joint distribution + log_msg(f"\nCalibration successful, processing results...", + prepend_timestamp=False) - """ - # get the median DV conditioned on the provided quantities - median = self.median(quantity=np.asarray(quantity)) + # save the calibration results + model_params.loc[cal_df.index, ['theta_0','theta_1']] = demand_theta - # if the distribution is None, then there is no uncertainty in the DV - # and the median values are the samples - if self._DV_distribution is None: - return median + # increase the variance of the marginal distributions, if needed + if ~np.all(np.isnan(model_params.loc[:, 'sig_increase'].values)): - else: - # if there are more than one quantities defined, infer the number of - # samples from the number of quantities - if quantity is not None: - if type(quantity) not in [pd.Series, pd.DataFrame]: - quantity = pd.Series(quantity, name='QNT') - - if quantity.size > 1: - sample_size = quantity.size - elif sample_size > 1: - quantity = pd.Series(np.ones(sample_size) * quantity.values, - name='QNT') - - # if there are no samples or resampling is forced, then sample the - # distribution first - # TODO: force_resampling is probably not needed - # if (force_resampling or - # (self._DV_distribution.samples is None)): - # self._DV_distribution.sample_distribution(sample_size=sample_size) - - # # if the number of samples is not sufficiently large, raise an error - # if self._DV_distribution.samples.shape[0] < sample_size: - # raise ValueError( - # 'Consequence evaluation requires at least as many samples of ' - # 'the Decision Variable distribution as many samples are ' - # 'requested or as many quantity values are provided to the ' - # 'sample_unit_DV function. You might want to consider setting ' - # 'force_resampling to True or sampling the distribution before ' - # 'calling the sample_unit_DV function.') - - # get the samples - if quantity is not None: - samples = pd.Series(self._DV_distribution.samples).loc[quantity.index] - else: - samples = pd.Series(self._DV_distribution.samples).iloc[:sample_size] - samples = samples * median + log_msg(f"\nIncreasing demand variance...", + prepend_timestamp=False) - return samples + sig_inc = np.nan_to_num(model_params.loc[:, 'sig_increase'].values) + sig_0 = model_params.loc[:, 'theta_1'].values + model_params.loc[:, 'theta_1'] = ( + np.sqrt(sig_0 ** 2. + sig_inc ** 2.)) -class DamageState(object): - """ - Characterizes one type of damage that corresponds to a particular DSG. + # remove unneeded fields from model_params + for col in ['sig_increase', 'censor_lower', 'censor_upper']: + model_params = model_params.drop(col, 1) - The occurrence of damage is evaluated at the DSG. The DS describes one of - the possibly several types of damages that belong to the same DSG and the - consequences of such damage. + # reorder the remaining fields for clarity + model_params = model_params[[ + 'family','theta_0','theta_1','truncate_lower','truncate_upper']] - Parameters - ---------- + self.marginal_params = model_params - ID:int - weight: float, optional, default: 1.0 - Describes the probability of DS occurrence, conditioned on the damage - being in the DSG linked to this DS. This information is only used for - DSGs with multiple DS corresponding to them. The weights of the set of - DS shall sum up to 1.0 if they are mutually exclusive. When the set of - DS occur simultaneously, the sum of weights typically exceeds 1.0. - description: str, optional - Provides a short description of the damage state. - affected_area: float, optional, default: 0. - Defines the area over which life safety hazards from this DS exist. - repair_cost_CF: ConsequenceFunction, optional - A consequence function that describes the cost necessary to restore the - component to its pre-disaster condition. - reconstruction_time_CF: ConsequenceFunction, optional - A consequence function that describes the time, necessary to repair the - damaged component to its pre-disaster condition. - injuries_CF_set: ConsequenceFunction array, optional - A set of consequence functions; each describes the number of people - expected to experience injury of a particular severity when the - component is in this DS. Any number of injury-levels can be considered. - red_tag_CF: ConsequenceFunction, optional - A consequence function that describes the proportion of components - (within a Performance Group) that needs to be damaged to trigger an - unsafe placard (i.e. red tag) for the building during post-disaster - inspection. + log_msg(f"\nCalibrated demand model marginal distributions:\n" + + str(model_params), + prepend_timestamp=False) - """ + # save the correlation matrix + self.correlation = pd.DataFrame(demand_rho, + columns = cal_df.index, + index = cal_df.index) - def __init__(self, ID, weight=1.0, description='', - repair_cost_CF=None, reconstruction_time_CF=None, - injuries_CF_set=None, affected_area=0., red_tag_CF=None): - self._ID = int(ID) - self._weight = float(weight) - self._description = description - self._repair_cost_CF = repair_cost_CF - self._reconstruction_time_CF = reconstruction_time_CF - self._injuries_CF_set = injuries_CF_set - self._affected_area = affected_area - self._red_tag_CF = red_tag_CF + log_msg(f"\nCalibrated demand model correlation matrix:\n" + + str(self.correlation), + prepend_timestamp=False) - @property - def description(self): + def save_model(self, file_prefix): """ - Return the damage description. - """ - return self._description + Save parameters of the demand model to a set of csv files - @property - def weight(self): """ - Return the weight of DS among the set of damage states in the DSG. - """ - return self._weight - def unit_repair_cost(self, quantity=None, sample_size=1, **kwargs): - """ - Sample the repair cost distribution and return the unit repair costs. + log_div() + log_msg(f'Saving demand model...') - The unit repair costs shall be multiplied by the quantity of damaged - components to get the total repair costs for the components in this DS. + # save the correlation and empirical data + save_to_csv(self.correlation, file_prefix + '_correlation.csv') + save_to_csv(self.empirical_data, file_prefix + '_empirical.csv', + units=self.units) - Parameters - ---------- - quantity: float scalar, ndarray or Series, optional, default: None - Total quantity of damaged components that determines the median - repair cost. Not used for repair cost models with fixed median. - sample_size: int, optional, default: 1 - Number of samples drawn from the repair cost distribution. The - default value yields one sample. + # the log standard deviations in the marginal parameters need to be + # scaled up before feeding to the saving method where they will be + # scaled back down and end up being saved unscaled to the target file - Returns - ------- - unit_repair_cost: float scalar or ndarray - Unit repair cost samples. + marginal_params = self.marginal_params.copy() - """ - output = None - if self._repair_cost_CF is not None: - output = self._repair_cost_CF.sample_unit_DV(quantity=quantity, - sample_size=sample_size, - **kwargs) + log_rows = marginal_params['family']=='lognormal' + log_demands = marginal_params.loc[log_rows,:] - return output + for label in log_demands.index: - def unit_reconstruction_time(self, quantity=None, sample_size=1, - **kwargs): - """ - Sample the reconstruction time distribution and return the unit - reconstruction times. + if label in self.units.index: - The unit reconstruction times shall be multiplied by the quantity of - damaged components to get the total reconstruction time for the - components in this DS. + unit_factor = globals()[self.units[label]] - Parameters - ---------- - quantity: float scalar, ndarray or Series, optional, default: None - Total quantity of damaged components that determines the magnitude - of median reconstruction time. Not used for reconstruction time - models with fixed median. - sample_size: int, optional, default: 1 - Number of samples drawn from the reconstruction time distribution. - The default value yields one sample. + marginal_params.loc[label, 'theta_1'] *= unit_factor - Returns - ------- - unit_reconstruction_time: float scalar or ndarray - Unit reconstruction time samples. + save_to_csv(marginal_params, file_prefix+'_marginals.csv', + units=self.units, orientation=1) - """ - output = None - if self._reconstruction_time_CF is not None: - output = self._reconstruction_time_CF.sample_unit_DV( - quantity=quantity, - sample_size=sample_size, **kwargs) + log_msg(f'Demand model successfully saved.', prepend_timestamp=False) - return output + def load_model(self, file_prefix): - def red_tag_dmg_limit(self, sample_size=1, **kwargs): - """ - Sample the red tag consequence function and return the proportion of - components that needs to be damaged to trigger a red tag. + log_div() + log_msg(f'Loading demand model...') - The red tag consequence function is assumed to have a fixed median - value that does not depend on the quantity of damaged components. + self.empirical_data = load_from_csv(file_prefix+'_empirical.csv') + self.empirical_data.columns.set_names(['type', 'loc', 'dir'], + inplace=True) - Parameters - ---------- - sample_size: int, optional, default: 1 - Number of samples drawn from the red tag consequence distribution. - The default value yields one sample. + self.correlation = load_from_csv(file_prefix + '_correlation.csv', + reindex=False) + self.correlation.index.set_names(['type', 'loc', 'dir'], inplace=True) + self.correlation.columns.set_names(['type', 'loc', 'dir'], inplace=True) - Returns - ------- - red_tag_trigger: float scalar or ndarray - Samples of damaged component proportions that trigger a red tag. + # the log standard deviations in the marginal parameters need to be + # adjusted after getting the data from the loading method where they + # were scaled according to the units of the corresponding variable + marginal_params, units = load_from_csv(file_prefix + '_marginals.csv', + orientation=1, reindex=False, + return_units=True) + marginal_params.index.set_names(['type', 'loc', 'dir'],inplace=True) - """ - output = None - if self._red_tag_CF is not None: - output = self._red_tag_CF.sample_unit_DV(sample_size=sample_size, - **kwargs) + log_rows = marginal_params.loc[:, 'family'] == 'lognormal' + log_demands = marginal_params.loc[log_rows,:].index.values - return output + for label in log_demands: - def unit_injuries(self, severity_level=0, sample_size=1, **kwargs): - """ - Sample the injury consequence function that corresponds to the - specified level of severity and return the injuries per component unit. + if label in units.index: - The injury consequence function is assumed to have a fixed median - value that does not depend on the quantity of damaged components (i.e. - the number of injuries per component unit does not change with the - quantity of components.) + unit_factor = globals()[units[label]] - Parameters - ---------- - severity_level: int, optional, default: 1 - Identifies which injury consequence to sample. The indexing of - severity levels is zero-based. - sample_size: int, optional, default: 1 - Number of samples drawn from the injury consequence distribution. - The default value yields one sample. + marginal_params.loc[label, 'theta_1'] /= unit_factor - Returns - ------- - unit_injuries: float scalar or ndarray - Unit injury samples. + self.units = units + self.marginal_params = marginal_params + + log_msg(f'Demand model successfully loaded.', prepend_timestamp=False) + def _create_RVs(self, preserve_order=False): """ + Create a random variable registry for the joint distribution of demands. + """ - output = None - if len(self._injuries_CF_set) > severity_level: - CF = self._injuries_CF_set[severity_level] - if CF is not None: - output = CF.sample_unit_DV(sample_size=sample_size, **kwargs) + # initialize the registry + RV_reg = RandomVariableRegistry() - return output + # add a random variable for each demand variable + for rv_params in self.marginal_params.itertuples(): + edp = rv_params.Index + rv_tag = f'EDP-{edp[0]}-{edp[1]}-{edp[2]}' -class DamageStateGroup(object): - """ - A set of similar component damages that are controlled by the same EDP. + if rv_params.family == 'empirical': - Damages are described in detail by the set of Damage State objects. - Damages in a DSG are assumed to occur at the same EDP magnitude. A Damage - State Group (DSG) might have only a single DS in the simplest case. + if preserve_order: + dist_family = 'coupled_empirical' + else: + dist_family = 'empirical' - Parameters - ---------- - ID: int - DS_set: DamageState array - DS_set_kind: {'single', 'mutually_exclusive', 'simultaneous'} - Specifies the relationship among the DS in the set. When only one DS is - defined, use the 'single' option to improve calculation efficiency. - When multiple DS are present, the 'mutually_exclusive' option assumes - that the occurrence of one DS precludes the occurrence of another DS. - In such a case, the weights of the DS in the set shall sum up to 1.0. - In a 'simultaneous' case the DS are independent and unrelated. Hence, - they can occur at the same time and at least one of them has to occur. - """ + # empirical RVs need the data points + RV_reg.add_RV(RandomVariable( + name=rv_tag, + distribution=dist_family, + raw_samples=self.empirical_data.loc[:, edp].values + )) - def __init__(self, ID, DS_set, DS_set_kind): - self._ID = ID - self._DS_set = DS_set - self._DS_set_kind = DS_set_kind + else: -class PerformanceGroup(object): - """ - A group of similar components that experience the same demands. + # all other RVs need parameters of their distributions + RV_reg.add_RV(RandomVariable( + name=rv_tag, + distribution=rv_params.family, + theta=[rv_params.theta_0, rv_params.theta_1], + truncation_limits=[rv_params.truncate_lower, + rv_params.truncate_upper], + + + )) + + log_msg(f"\n{self.marginal_params.shape[0]} random variables created.", + prepend_timestamp=False) + + # add an RV set to consider the correlation between demands + rv_set_tags = [f'EDP-{edp[0]}-{edp[1]}-{edp[2]}' + for edp in self.correlation.index.values] + + RV_reg.add_RV_set(RandomVariableSet( + 'EDP_set', list(RV_reg.RVs(rv_set_tags).values()), + self.correlation.values)) + + log_msg(f"\nCorrelations between {len(rv_set_tags)} random variables " + f"successfully defined.", + prepend_timestamp=False) + + self._RVs = RV_reg + + def generate_sample(self, config): + + if self.marginal_params is None: + raise ValueError('Model parameters have not been specified. Either' + 'load parameters from a file or calibrate the ' + 'model using raw demand data.') + + log_div() + log_msg(f'Generating sample from demand variables...') - FEMA P-58: Performance Groups (PGs) are a sub-categorization of fragility - groups. A performance group is a subset of fragility group components that - are subjected to the same demands (e.g. story drift, floor acceleration, - etc.). + self._create_RVs( + preserve_order=config.get('PreserveRawOrder', False)) - In buildings, most performance groups shall be organized by story level. - There is no need to separate performance groups by direction, because the - direction of components within a group can be specified during definition, - and it will be taken into consideration in the analysis. + sample_size = config['SampleSize'] + self._RVs.generate_sample(sample_size=sample_size) + + # replace the potentially existing raw sample with the generated one + self._sample = None + + log_msg(f"\nSuccessfully generated {sample_size} realizations.", + prepend_timestamp=False) + +class AssetModel(object): + """ + Manages asset information used in assessments. Parameters ---------- - ID: int - location: int - Identifies the location of the components that belong to the PG. In a - building, location shall typically refer to the story of the building. - The location assigned to each PG shall be in agreement with the - locations assigned to the Demand objects. - quantity: RandomVariable - Specifies the quantity of components that belong to this PG. - Uncertainty in component quantities is considered by assigning a - random variable to this property. - fragility_functions: FragilityFunction list - Each fragility function describes the probability that the damage in - a subset of components will meet or exceed the damages described by - each damage state group in the DSG_set. Each is a multi-dimensional - function if there is more than one DSG. The number of functions shall - match the number of subsets defined by the `csg_weights` parameter. - DSG_set: DamageStateGroup array - A set of sequential Damage State Groups that describe the plausible set - of damage states of the components in the FG. - csg_weights: float ndarray, optional, default: [1.0] - Identifies subgroups of components within a PG, each of which have - perfectly correlated behavior. Correlation between the damage and - consequences among subgroups is controlled by the `correlation` - parameter of the FragilityGroup that the PG belongs to. Note that if - the components are assumed to have perfectly correlated behavior at the - PG level, assigning several subgroups to the PG is unnecessary. This - input shall be a list of weights that are applied to the quantity - of components to define the amount of components in each subgroup. The - sum of assigned weights shall be 1.0. - directions: int ndarray, optional, default: [0] - Identifies the direction of each subgroup of components within the PG. - The number of directions shall be identical to the number of - csg_weights assigned. In buildings, directions typically correspond to - the orientation of components in plane. Hence, using 0 or 1 to identify - 'X' or 'Y' is recommended. These directions shall be in agreement with - the directions assigned to Demand objects. + """ - def __init__(self, ID, location, quantity, fragility_functions, DSG_set, - csg_weights=[1.0], direction=0): - self._ID = ID - self._location = location - self._quantity = quantity - if type(fragility_functions) == FragilityFunction: - self._FF_set = [fragility_functions,] + def __init__(self, assessment): + + self._asmnt = assessment + + self.cmp_marginal_params = None + self.cmp_units = None + + self._cmp_RVs = None + self._cmp_sample = None + + @property + def cmp_sample(self): + + if self._cmp_sample is None: + + cmp_sample = pd.DataFrame(self._cmp_RVs.RV_sample) + + cmp_sample = convert_to_MultiIndex(cmp_sample, axis=1)['CMP'] + + self._cmp_sample = cmp_sample + else: - self._FF_set = fragility_functions - self._DSG_set = DSG_set - self._csg_weights = csg_weights - self._direction = direction + cmp_sample = self._cmp_sample - def P_exc(self, EDP, DSG_ID): - """ - This is a convenience function that provides a shortcut to - fragility_function.P_exc(). It calculates the exceedance probability - of a given DSG conditioned on the provided EDP value(s). The fragility - functions assigned to the first subset are used for this calculation - because P_exc shall be identical among subsets. + return cmp_sample - Parameters - ---------- - EDP: float scalar or ndarray - Single EDP or numpy array of EDP values. - DSG_ID: int - Identifies the DSG of interest. + def save_cmp_sample(self, filepath): + """ + Save component quantity sample to a csv file - Returns - ------- - P_exc: float scalar or ndarray - Exceedance probability of the given DSG at the EDP point(s). """ - return self._FF_set[0].P_exc(EDP, DSG_ID) + log_div() + log_msg(f'Saving asset components sample...') -class FragilityGroup(object): - """ - Groups a set of similar components from a loss-assessment perspective. + # prepare a units array + sample = self.cmp_sample - Characterizes a set of structural or non-structural components that have - similar construction characteristics, similar potential modes of damage, - similar probability of incurring those modes of damage, and similar - potential consequences resulting from their damage. + units = pd.Series(name='units', index=sample.columns) - Parameters - ---------- - ID: int - demand_type: {'PID', 'PFA', 'PSD', 'PSA', 'ePGA', 'PGD'} - The type of Engineering Demand Parameter (EDP) that controls the damage - of the components in the FG. See Demand for acronym descriptions. - performance_groups: PerformanceGroup array - A list of performance groups that contain the components characterized - by the FG. - directional: bool, optional, default: True - Determines whether the components in the FG are sensitive to the - directionality of the EDP. - correlation: bool, optional, default: True - Determines whether the components within a Performance Group (PG) will - have correlated or uncorrelated damage. Correlated damage means that - all components will have the same damage state. In the uncorrelated - case, each component in the performance group will have its damage - state evaluated independently. Correlated damage reduces the required - computational effort for the calculation. Incorrect correlation - modeling will only slightly affect the mean estimates, but might - significantly change the dispersion of results. - demand_location_offset: int, optional, default: 0 - Indicates if the location for the demand shall be different from the - location of the components. Damage to components of the ceiling, for - example, is controlled by demands on the floor above the one that the - components belong to. This can be indicated by setting the - demand_location_offset to 1 for such an FG. - incomplete: bool, optional, default: False - Indicates that the FG information is not complete and corresponding - results shall be treated with caution. - name: str, optional, default: '' - Provides a short description of the fragility group. - description: str, optional, default: '' - Provides a detailed description of the fragility group. - """ + for cmp_id, unit_name in self.cmp_units.items(): + units.loc[cmp_id, :] = unit_name - def __init__(self, ID, demand_type, performance_groups, - directional=True, correlation=True, demand_location_offset=0, - incomplete=False, name='', description='', unit="ea"): - self._ID = ID - self._demand_type = demand_type - self._performance_groups = performance_groups - self._directional = directional - self._correlation = correlation - self._demand_location_offset = demand_location_offset - self._incomplete = incomplete - self._name = name - self._description = description - self._unit = unit + save_to_csv(sample, filepath, units=units) - @property - def description(self): + log_msg(f'Asset components sample successfully saved.', + prepend_timestamp=False) + + def load_cmp_sample(self, filepath): """ - Return the fragility group description. + Load component quantity sample from a csv file + """ - return self._description - @property - def name(self): + log_div() + log_msg(f'Loading asset components sample...') + + sample, units = load_from_csv(filepath, return_units=True) + + self._cmp_sample = sample + + self.cmp_units = units.groupby(level=0).first() + + log_msg(f'Asset components sample successfully loaded.', + prepend_timestamp=False) + + def load_cmp_model(self, file_prefix): """ - Return the name of the fragility group. + Load the model that describes component quantities in the building. """ - return self._name \ No newline at end of file + + def get_locations(loc_str): + + try: + res = int(loc_str) + return np.array([res, ]) + + except: + stories = self._asmnt.stories + + if "-" in loc_str: + s_low, s_high = loc_str.split('-') + s_low = get_locations(s_low) + s_high = get_locations(s_high) + return np.arange(s_low[0], s_high[0] + 1) + + elif "," in loc_str: + return np.array(loc_str.split(','), dtype=int) + + elif loc_str == "all": + return np.arange(1, stories + 1) + + elif loc_str == "top": + return np.array([stories, ]) + + elif loc_str == "roof": + return np.array([stories, ]) + + else: + raise ValueError(f"Cannot parse location string: " + f"{loc_str}") + + def get_directions(dir_str): + + if pd.isnull(dir_str): + return np.ones(1) + + else: + + try: + res = int(dir_str) + return np.array([res, ]) + + except: + + if "," in dir_str: + return np.array(dir_str.split(','), dtype=int) + + elif "-" in dir_str: + d_low, d_high = dir_str.split('-') + d_low = get_directions(d_low) + d_high = get_directions(d_high) + return np.arange(d_low[0], d_high[0] + 1) + + else: + raise ValueError(f"Cannot parse direction string: " + f"{dir_str}") + + def get_blocks(block_str): + + if pd.isnull(block_str): + return np.ones(1) * np.nan + + else: + + try: + res = float(block_str) + return np.array([res, ]) + + except: + + if "," in block_str: + return np.array(block_str.split(','), dtype=int) + + else: + raise ValueError(f"Cannot parse theta_0 string: " + f"{block_str}") + + # Currently, we assume independent component distributions are defined + # throughout the building. Correlations may be added afterward or this + # method can be extended to read correlation matrices too if needed. + marginal_params, units = load_from_csv( + file_prefix + '_marginals.csv', + orientation=1, + reindex=False, + return_units=True, + convert=[]) + + self.cmp_units = units.copy() + + marginal_params = pd.concat([marginal_params, units], axis=1) + + # First, we need to expand the table to have unique component blocks in + # each row + + log_msg(f"\nParsing model file to characterize each component block", + prepend_timestamp=False) + + # Create a multiindex that identifies individual component blocks + MI_list = [] + for row in marginal_params.itertuples(): + locs = get_locations(row.location) + dirs = get_directions(row.direction) + blocks = range(1, len(get_blocks(row.theta_0)) + 1) + + MI_list.append(pd.MultiIndex.from_product( + [[row.Index, ], locs, dirs, blocks], + names=['cmp', 'loc', 'dir', 'block'])) + + MI = MI_list[0].append(MI_list[1:]) + + # Create a DataFrame that will hold marginal params for component blocks + marginal_cols = ['units', 'family', 'theta_0', 'theta_1', + 'truncate_lower', 'truncate_upper'] + cmp_marginal_params = pd.DataFrame( + columns=marginal_cols, + index=MI, + dtype=float + ) + cmp_marginal_params[['units', 'family']] = ( + cmp_marginal_params[['units', 'family']].astype(object)) + + # Fill the DataFrame with information on component quantity variables + + for row in marginal_params.itertuples(): + + locs = get_locations(row.location) + dirs = get_directions(row.direction) + theta_0s = get_blocks(row.theta_0) + theta_1s = get_blocks(row.theta_1) + trnc_ls = get_blocks(row.truncate_lower) + trnc_us = get_blocks(row.truncate_upper) + + # parse the distribution characteristics + if len(theta_1s) != len(theta_0s): + + if len(theta_1s) == 1: + theta_1s = theta_1s[0] * np.ones(theta_0s.shape) + + else: + raise ValueError(f"Unable to parse theta_1 string: " + f"{row.theta_1}") + + if len(trnc_ls) != len(theta_0s): + + if len(trnc_ls) == 1: + trnc_ls = trnc_ls[0] * np.ones(theta_0s.shape) + + else: + raise ValueError(f"Unable to parse theta_1 string: " + f"{row.truncate_lower}") + + if len(trnc_us) != len(theta_0s): + + if len(trnc_us) == 1: + trnc_us = trnc_us[0] * np.ones(theta_0s.shape) + + else: + raise ValueError(f"Unable to parse theta_1 string: " + f"{row.truncate_upper}") + + blocks = range(1, len(theta_0s) + 1) + + for block in blocks: + MI = pd.MultiIndex.from_product( + [[row.Index, ], locs, dirs, [block, ]], + names=['cmp', 'loc', 'dir', 'block']) + + cmp_marginal_params.loc[MI, marginal_cols] = [ + row.units, row.family, theta_0s[block - 1], + theta_1s[block - 1], + trnc_ls[block - 1], trnc_us[block - 1]] + + log_msg(f"Model parameters successfully parsed. " + f"{cmp_marginal_params.shape[0]} component blocks identified", + prepend_timestamp=False) + + # Now we can take care of converting the values to SI units + log_msg(f"Converting model parameters to internal units...", + prepend_timestamp=False) + + unique_units = cmp_marginal_params['units'].unique() + + for unit_name in unique_units: + + try: + unit_factor = globals()[unit_name] + + except: + raise ValueError(f"Specified unit name not recognized: " + f"{unit_name}") + + unit_ids = cmp_marginal_params.loc[ + cmp_marginal_params['units'] == unit_name].index + + cmp_marginal_params.loc[ + unit_ids, + ['theta_0', 'truncate_lower', 'truncate_upper']] *= unit_factor + + sigma_ids = cmp_marginal_params.loc[unit_ids].loc[ + cmp_marginal_params.loc[unit_ids, 'family'] == 'normal'].index + + cmp_marginal_params.loc[sigma_ids, 'theta_1'] *= unit_factor + + self.cmp_marginal_params = cmp_marginal_params + + log_msg(f"Model parameters successfully loaded.", + prepend_timestamp=False) + + log_msg(f"\nComponent model marginal distributions:\n" + + str(cmp_marginal_params), + prepend_timestamp=False) + + # the empirical data and correlation files can be added later, if needed + + def _create_cmp_RVs(self): + + # initialize the registry + RV_reg = RandomVariableRegistry() + + # add a random variable for each component quantity variable + for rv_params in self.cmp_marginal_params.itertuples(): + + cmp = rv_params.Index + rv_tag = f'CMP-{cmp[0]}-{cmp[1]}-{cmp[2]}-{cmp[3]}' + + if pd.isnull(rv_params.family): + + # we use an empirical RV to generate deterministic values + RV_reg.add_RV(RandomVariable( + name=rv_tag, + distribution='empirical', + raw_samples=np.ones(10000) * rv_params.theta_0 + )) + + else: + + # all other RVs need parameters of their distributions + RV_reg.add_RV(RandomVariable( + name=rv_tag, + distribution=rv_params.family, + theta=[rv_params.theta_0, rv_params.theta_1], + truncation_limits=[rv_params.truncate_lower, + rv_params.truncate_upper], + + )) + + log_msg(f"\n{self.cmp_marginal_params.shape[0]} " + f"random variables created.", + prepend_timestamp=False) + + self._cmp_RVs = RV_reg + + def generate_cmp_sample(self, sample_size): + + if self.cmp_marginal_params is None: + raise ValueError('Model parameters have not been specified. Load' + 'parameters from a file before generating a ' + 'sample.') + + log_div() + log_msg(f'Generating sample from component quantity variables...') + + self._create_cmp_RVs() + + self._cmp_RVs.generate_sample(sample_size=sample_size) + + # replace the potentially existing sample with the generated one + self._cmp_sample = None + + log_msg(f"\nSuccessfully generated {sample_size} realizations.", + prepend_timestamp=False) + +class DamageModel(object): + """ + Manages damage information used in assessments. + + Parameters + ---------- + + """ + + def __init__(self, assessment): + + self._asmnt = assessment + + self.fragility_params = None + + self._frg_RVs = None + self._frg_sample = None + self._lsds_RVs = None + self._lsds_sample = None + + self._sample = None + + @property + def frg_sample(self): + + if self._frg_sample is None: + + frg_sample = pd.DataFrame(self._frg_RVs.RV_sample) + + frg_sample = convert_to_MultiIndex(frg_sample, axis=1)['FRG'] + + self._frg_sample = frg_sample + + else: + frg_sample = self._frg_sample + + return frg_sample + + @property + def lsds_sample(self): + + if self._lsds_sample is None: + + lsds_sample = pd.DataFrame(self._lsds_RVs.RV_sample) + + lsds_sample = convert_to_MultiIndex(lsds_sample, axis=1)['LSDS'] + + lsds_sample = lsds_sample.astype(int) + + self._lsds_sample = lsds_sample + + else: + lsds_sample = self._lsds_sample + + return lsds_sample + + @property + def sample(self): + + return self._sample + + def save_sample(self, filepath): + """ + Save damage sample to a csv file + + """ + log_div() + log_msg(f'Saving damage sample...') + + save_to_csv(self.sample, filepath) + + log_msg(f'Damage sample successfully saved.', prepend_timestamp=False) + + def load_sample(self, filepath): + """ + Load damage sample data. + + """ + log_div() + log_msg(f'Loading damage sample...') + + self._sample = load_from_csv(filepath) + + log_msg(f'Damage sample successfully loaded.', prepend_timestamp=False) + + def load_fragility_model(self, data_paths): + """ + Load limit state fragility functions and damage state assignments + + Parameters + ---------- + data_paths: list of string + List of paths to data files with fragility information. Default + XY datasets can be accessed as PelicunDefault/XY. + """ + + log_div() + log_msg(f'Loading fragility model...') + + # replace default flag with default data path + for d_i, data_path in enumerate(data_paths): + + if 'PelicunDefault/' in data_path: + data_paths[d_i] = data_path.replace('PelicunDefault/', + str(pelicun_path)+ + '/resources/') + + data_list = [] + # load the data files one by one + for data_path in data_paths: + + data = load_from_csv( + data_path, + orientation=1, + reindex=False, + convert=[] + ) + + data_list.append(data) + + fragility_params = pd.concat(data_list, axis=0) + + # drop redefinitions of components + fragility_params = fragility_params.groupby(fragility_params.index).first() + + # get the component types defined in the asset model + cmp_labels = self._asmnt.asset.cmp_sample.columns + + # only keep the fragility parameters for the components in the model + cmp_unique = cmp_labels.unique(level=0) + fragility_params = fragility_params.loc[cmp_unique, :] + + # now convert the units - where needed + unique_units = fragility_params[('Demand', 'Unit')].unique() + + for unit_name in unique_units: + + try: + unit_factor = globals()[unit_name] + + except: + raise ValueError(f"Specified unit name not recognized: " + f"{unit_name}") + + unit_ids = fragility_params.loc[ + fragility_params[('Demand', 'Unit')] == unit_name].index + + for LS_i in fragility_params.columns.unique(level=0): + + if 'LS' in LS_i: + + # theta_0 needs to be scaled for both all families + fragility_params.loc[ + unit_ids, (LS_i, 'Theta_0')] *= unit_factor + + # theta_1 needs to be scaled for normal + sigma_ids = fragility_params.loc[unit_ids].loc[ + fragility_params.loc[unit_ids, (LS_i, 'Family')] == 'normal'].index + + # theta_1 needs to be scaled for uniform + sigma_ids = fragility_params.loc[unit_ids].loc[ + fragility_params.loc[ + unit_ids, (LS_i, 'Family')] == 'uniform'].index + + fragility_params.loc[ + sigma_ids, (LS_i, 'Theta_1')] *= unit_factor + + # check for components with incomplete fragility information + cmp_incomplete_list = fragility_params.loc[ + fragility_params[('Incomplete','')]==1].index + + fragility_params.drop(cmp_incomplete_list, inplace=True) + + log_msg(f"\nWARNING: Fragility information is incomplete for the " + f"following component(s) {cmp_incomplete_list}. They were " + f"removed from the analysis.\n", + prepend_timestamp=False) + + self.fragility_params = fragility_params + + log_msg(f"Fragility parameters successfully parsed.", + prepend_timestamp=False) + + def _create_frg_RVs(self): + + # initialize the registry + frg_RV_reg = RandomVariableRegistry() + lsds_RV_reg = RandomVariableRegistry() + + rv_count = 0 + + # get the component types defined in the asset model + cmp_labels = self._asmnt.asset.cmp_sample.columns + + for label in cmp_labels: + + cmp_id = label[0] + + if cmp_id in self.fragility_params.index: + + frg_params = self.fragility_params.loc[cmp_id,:] + + limit_states = [] + [limit_states.append(val[2:]) if 'LS' in val else val + for val in frg_params.index.get_level_values(0).unique()] + + ds_id = 0 + + frg_rv_set_tags = [] + for ls_id in limit_states: + + theta_0 = frg_params.loc[(f'LS{ls_id}','Theta_0')] + + # check if the limit state is defined for the component + if ~np.isnan(theta_0): + + frg_rv_tag = f'FRG-{label[0]}-{label[1]}-{label[2]}-{label[3]}-{ls_id}' + lsds_rv_tag = f'LSDS-{label[0]}-{label[1]}-{label[2]}-{label[3]}-{ls_id}' + + family, theta_1, ds_weights = frg_params.loc[ + [(f'LS{ls_id}','Family'), + (f'LS{ls_id}','Theta_1'), + (f'LS{ls_id}','DamageStateWeights')]] + + # Start with the limit state capacities... + # if the limit state is deterministic, we use an + # empirical RV + if pd.isnull(family): + + frg_RV_reg.add_RV(RandomVariable( + name=frg_rv_tag, + distribution='empirical', + raw_samples=np.ones(10000) * theta_0 + )) + + else: + + # all other RVs have parameters of their distributions + frg_RV_reg.add_RV(RandomVariable( + name=frg_rv_tag, + distribution=family, + theta=[theta_0, theta_1], + )) + + # add the RV to the set of correlated variables + frg_rv_set_tags.append(frg_rv_tag) + + # Now add the LS->DS assignments + # if the limit state has a single damage state assigned + # to it, we don't need random sampling + if pd.isnull(ds_weights): + + ds_id += 1 + + lsds_RV_reg.add_RV(RandomVariable( + name=lsds_rv_tag, + distribution='empirical', + raw_samples=np.ones(10000) * ds_id + )) + + else: + + # parse the DS weights + ds_weights = np.array( + ds_weights.replace(" ", "").split('|'), + dtype=float) + + def map_ds(values, offset=int(ds_id+1)): + return values+offset + + lsds_RV_reg.add_RV(RandomVariable( + name=lsds_rv_tag, + distribution='multinomial', + theta=ds_weights, + f_map=map_ds + )) + + ds_id += len(ds_weights) + + rv_count += 1 + + # Assign correlation between limit state random variables + # Note that we assume perfectly correlated limit state random + # variables here. This approach is in line with how mainstream + # PBE calculations are performed. + # Assigning more sophisticated correlations between limit state + # RVs is possible, if needed. Please let us know through the + # SimCenter Message Board if you are interested in such a + # feature. + frg_RV_reg.add_RV_set(RandomVariableSet( + f'FRG-{label[0]}-{label[1]}-{label[2]}-{label[3]}_set', + list(frg_RV_reg.RVs(frg_rv_set_tags).values()), + np.ones((len(frg_rv_set_tags),len(frg_rv_set_tags))))) + + log_msg(f"\n2x{rv_count} random variables created.", + prepend_timestamp=False) + + self._frg_RVs = frg_RV_reg + self._lsds_RVs = lsds_RV_reg + + def _generate_frg_sample(self, sample_size): + + if self.fragility_params is None: + raise ValueError('Fragility parameters have not been specified. ' + 'Load parameters from the default fragility ' + 'databases or provide your own fragility ' + 'definitions before generating a sample.') + + log_msg(f'Generating sample from fragility variables...', + prepend_timestamp=False) + + self._create_frg_RVs() + + self._frg_RVs.generate_sample(sample_size=sample_size) + + self._lsds_RVs.generate_sample(sample_size=sample_size) + + # replace the potentially existing raw sample with the generated one + self._frg_sample = None + self._lsds_sample = None + + log_msg(f"\nSuccessfully generated {sample_size} realizations.", + prepend_timestamp=False) + + def get_required_demand_types(self): + """ + Returns a list of demands needed to calculate damage to components + + Note that we assume that a fragility sample is available. + + """ + + log_msg(f'Collecting required demand information...', + prepend_timestamp=False) + + EDP_req = pd.Series( + index=self.frg_sample.groupby(level=[0,1,2], axis=1).first().columns) + + # get the list of active components + cmp_list = EDP_req.index.get_level_values(0).unique() + + # for each component + for cmp in cmp_list: + + # get the parameters from the fragility db + directional, offset, demand_type = self.fragility_params.loc[ + cmp, [('Demand', 'Directional'), + ('Demand', 'Offset'), + ('Demand', 'Type')]] + + if directional: + + # respect both the location and direction for directional + # components + locations, directions = [ + EDP_req[cmp].groupby(level=[0, 1]).first( + ).index.get_level_values(lvl).values.astype(int) + for lvl in range(2)] + + else: + + # only store the location and use 0 as direction for the + # non-directional components + locations = EDP_req[cmp].index.get_level_values(0).unique( + ).values.astype(int) + directions = np.zeros(locations.shape, dtype=int) + + # parse the demand type + + # first check if there is a subtype included + if '|' in demand_type: + demand_type, subtype = demand_type.split('|') + demand_type = EDP_to_demand_type[demand_type] + EDP_type = f'{demand_type}_{subtype}' + else: + demand_type = EDP_to_demand_type[demand_type] + EDP_type = demand_type + + # consider the default offset, if needed + if demand_type in options.demand_offset.keys(): + + offset = int(offset + options.demand_offset[demand_type]) + + else: + offset = int(offset) + + # add the required EDPs to the list + EDP_req[cmp] = [f'{EDP_type}-{loc+offset}-{dir}' + for loc, dir in zip(locations, directions)] + + # return the unique EDP requirements + return EDP_req + + def _assemble_required_demand_data(self, EDP_req): + + log_msg(f'Assembling demand data for calculation...', + prepend_timestamp=False) + + demands = pd.DataFrame(columns=EDP_req, index=self.frg_sample.index) + demands = convert_to_MultiIndex(demands, axis=1) + + demand_source = self._asmnt.demand.sample + + # And fill it with data + for col in demands.columns: + + # if non-directional demand is requested... + if col[2] == '0': + + # check if the demand at the given location is available + available_demands = demand_source.groupby( + level=[0, 1], axis=1).first().columns + + if col[:2] in available_demands: + # take the maximum of all available directions and scale it + # using the nondirectional multiplier specified in the + # options (the default value is 1.2) + demands[col] = demand_source.loc[:, (col[0], col[1])].max( + axis=1) * options.nondir_multi(col[0]) + + elif col in demand_source.columns: + + demands[col] = demand_source[col] + + # Report missing demand data + for col in demands.columns[np.all(demands.isna(), axis=0)]: + log_msg(f'\nWARNING: Cannot find demand data for {col}. The ' + f'corresponding damages cannot be calculated.', + prepend_timestamp=False) + + demands.dropna(axis=1, how='all', inplace=True) + + return demands + + def _evaluate_damage(self, CMP_to_EDP, demands): + """ + Use the provided demands and the LS capacity sample the evaluate damage + + Parameters + ---------- + CMP_to_EDP: Series + Identifies the EDP assigned to each component + demands: DataFrame + Provides a sample of the demands required (and available) for the + damage assessment. + + Returns + ------- + dmg_sample: DataFrame + Assigns a Damage State to each component block in the asset model. + """ + dmg_eval = pd.DataFrame(columns=self.frg_sample.columns, + index=self.frg_sample.index) + + # for each available demand + for demand in demands.columns: + + # get the corresponding component - loc - dir + cmp_affected = CMP_to_EDP[ + CMP_to_EDP == '-'.join(demand)].index.values + + full_cmp_list = [] + + # assemble a list of cmp - loc - dir - block - ls + for cmp in cmp_affected: + vals = dmg_eval.loc[:, cmp].columns.values + + full_cmp_list += [cmp + val for val in vals] + + # evaluate ls exceedance for each case + dmg_eval.loc[:, full_cmp_list] = ( + self.frg_sample.loc[:, full_cmp_list].sub( + demands[demand], axis=0) < 0) + + # drop the columns that do not have valid results + dmg_eval.dropna(how='all', axis=1, inplace=True) + + # initialize the DataFrame that stores the damage states + cmp_sample = self._asmnt.asset.cmp_sample + dmg_sample = pd.DataFrame(np.zeros(cmp_sample.shape), + columns=cmp_sample.columns, + index=cmp_sample.index, dtype=int) + + # get a list of limit state ids among all components in the damage model + ls_list = dmg_eval.columns.get_level_values(4).unique() + + # for each consecutive limit state... + for LS_id in ls_list: + # get all cmp - loc - dir - block where this limit state occurs + dmg_e_ls = dmg_eval.loc[:, idx[:, :, :, :, LS_id]].dropna(axis=1) + + # Get the damage states corresponding to this limit state in each + # block + # Note that limit states with a set of mutually exclusive damage + # states options have their damage state picked here. + lsds = self.lsds_sample.loc[:, dmg_e_ls.columns] + + # Drop the limit state level from the columns to make the damage + # exceedance DataFrame compatible with the other DataFrames in the + # following steps + dmg_e_ls.columns = dmg_e_ls.columns.droplevel(4) + + # Same thing for the lsds DataFrame + lsds.columns = dmg_e_ls.columns + + # Update the damage state in the result with the values from the + # lsds DF if the limit state was exceeded according to the + # dmg_e_ls DF. + # This one-liner updates the given Limit State exceedance in the + # entire damage model. If subsequent Limit States are also exceeded, + # those cells in the result matrix will get overwritten by higher + # damage states. + dmg_sample.loc[:, dmg_e_ls.columns] = ( + dmg_sample.loc[:, dmg_e_ls.columns].mask(dmg_e_ls, lsds)) + + return dmg_sample + + + def _perform_dmg_task(self, task): + """ + Perform a task from a damage process. + + """ + cmp_list = self.sample.columns.get_level_values(0).unique().tolist() + + # get the source component + source_cmp = task[0].split('_')[1] + + # check if it exists + if source_cmp not in cmp_list: + raise ValueError(f"source component not found among components in " + f"the damage sample: {source_cmp}") + + source_cmp_df = self.sample.loc[:,source_cmp] + + for source_event, target_infos in task[1].items(): + + if source_event.startswith('LS'): + + ls_i = int(source_event[2:]) + # TODO: implement source LS support + + elif source_event.startswith('DS'): + + ds_list = [int(source_event[2:]),] + + else: + raise ValueError(f"Unable to parse source event in damage " + f"process: {source_event}") + + if len(ds_list) == 1: + + source_mask = source_cmp_df.loc[source_cmp_df.values == ds_list[0]].index + + else: + pass # TODO: implement multiple DS support + + target_infos = np.atleast_1d(target_infos) + + for target_info in target_infos: + + target_cmp, target_event = target_info.split('_') + + if target_cmp == 'ALL': + + target_cmp = deepcopy(cmp_list) + + if source_cmp in target_cmp: + target_cmp.remove(source_cmp) + + if target_event.startswith('LS'): + + ls_i = int(target_event[2:]) + + # TODO: implement target LS support + + elif target_event.startswith('DS'): + + ds_i = int(target_event[2:]) + + elif target_event == 'NA': + + ds_i = None + + else: + raise ValueError(f"Unable to parse target event in damage " + f"process: {target_event}") + + if ds_i is None: + + self._sample.loc[source_mask, target_cmp] = np.nan + + else: + self._sample.loc[source_mask, target_cmp] = ds_i + + + def calculate(self, sample_size, dmg_process=None): + """ + Calculate the damage state of each component block in the asset. + + """ + + log_div() + log_msg(f'Calculating damages...') + + # Generate an array with component capacities for each block and + # generate a second array that assigns a specific damage state to + # each component limit state. The latter is primarily needed to handle + # limit states with multiple, mutually exclusive DS options + self._generate_frg_sample(sample_size) + + # Get the required demand types for the analysis + EDP_req = self.get_required_demand_types() + + # Create the table of demands + demands = self._assemble_required_demand_data(EDP_req.unique()) + + # Evaluate the Damage State of each Component Block + dmg_sample = self._evaluate_damage(EDP_req, demands) + + self._sample = dmg_sample + + # Finally, apply the damage prescribed damage process, if any + if dmg_process is not None: + + for task in dmg_process.items(): + + self._perform_dmg_task(task) + + log_msg(f'Damage calculation successfully completed.') + + def prepare_dmg_quantities(self, cmp_list='ALL', dropzero=True, + dropempty=True): + """ + Combine component quantity and damage state information in one DF. + + This method assumes that a component quantity sample is available in + the asset model and a damage state sample is available here in the + damage model. + + Parameters + ---------- + cmp_list: list of strings, optional, default: "ALL" + The method will return damage results for these components. Choosing + "ALL" will return damage results for all available components. + dropzero: bool, optional, default: True + If True, the quantity of non-damaged components is not saved. + dropempty: bool, optional, default: True + + """ + + dmg = self.sample + cmp = self._asmnt.asset.cmp_sample + + cmp_list = np.atleast_1d(cmp_list) + + # load the list of all components, if needed + if cmp_list[0] == 'ALL': + cmp_list = dmg.columns.get_level_values(0).unique() + + res = [] + cmp_included = [] + # perform the combination for each requested component + for cmp_id in cmp_list: + + # get the corresponding parts of the quantity and damage matrices + cmp_i = cmp.loc[:, cmp_id] + dmg_i = dmg.loc[:, cmp_id] + + # get the realized Damage States + # Note that these might be much fewer than all possible Damage + # States + ds_list = np.unique(dmg_i.values) + ds_list = np.array(ds_list[~np.isnan(ds_list)], dtype=int) + + # If requested, drop the zero damage case + if dropzero: + ds_list = ds_list[ds_list != 0] + + # only perform this if there is at least one DS we are interested in + if len(ds_list) > 0: + + # initialize the shell for the result DF + dmg_q = pd.DataFrame(columns=dmg_i.columns, index=dmg.index) + + # collect damaged quantities in each DS and add it to res + res.append(pd.concat( + [dmg_q.mask(dmg_i == ds_i, cmp_i) for ds_i in ds_list], + axis=1, keys=[f'{ds_i:g}' for ds_i in ds_list])) + + # keep track of the components that have damaged quantities + cmp_included.append(cmp_id) + + # assemble the final result and make sure the component keys are + # included in the column header + res = pd.concat(res, axis=1, keys=cmp_included) + + # If requested, the blocks with no damage are dropped + if dropempty: + res.dropna(how='all', axis=1, inplace=True) + + return res + +class LossModel(object): + """ + Parent object for loss models. + + All loss assessment methods should be children of this class. + + Parameters + ---------- + + """ + + def __init__(self, assessment): + + self._asmnt = assessment + + self._sample = None + + self.loss_type = 'Generic' + + @property + def sample(self): + + return self._sample + + def save_sample(self, filepath): + """ + Save loss sample to a csv file + + """ + log_div() + log_msg(f'Saving loss sample...') + + save_to_csv(self.sample, filepath) + + log_msg(f'Loss sample successfully saved.', prepend_timestamp=False) + + def load_sample(self, filepath): + """ + Load damage sample data. + + """ + log_div() + log_msg(f'Loading loss sample...') + + self._sample = load_from_csv(filepath) + + log_msg(f'Loss sample successfully loaded.', prepend_timestamp=False) + + def load_model(self, data_paths, mapping_path): + """ + Load the list of prescribed consequence models and their parameters + + Parameters + ---------- + data_paths: list of string + List of paths to data files with consequence model parameters. + Default XY datasets can be accessed as PelicunDefault/XY. + mapping_path: string + Path to a csv file that maps drivers (i.e., damage or edp data) to + loss models. + """ + + log_div() + log_msg(f'Loading loss map for {self.loss_type}...') + + loss_map = load_from_csv(mapping_path, orientation=1, + reindex=False, convert=[]) + + loss_map['Driver'] = loss_map.index.values + loss_map['Consequence'] = loss_map[self.loss_type] + loss_map.index = np.arange(loss_map.shape[0]) + loss_map = loss_map.loc[:, ['Driver', 'Consequence']] + loss_map.dropna(inplace=True) + + self.loss_map = loss_map + + log_msg(f"Loss map successfully parsed.", prepend_timestamp=False) + + log_div() + log_msg(f'Loading loss parameters for {self.loss_type}...') + + # replace default flag with default data path + for d_i, data_path in enumerate(data_paths): + + if 'PelicunDefault/' in data_path: + data_paths[d_i] = data_path.replace('PelicunDefault/', + str(pelicun_path) + + '/resources/') + + data_list = [] + # load the data files one by one + for data_path in data_paths: + data = load_from_csv( + data_path, + orientation=1, + reindex=False, + convert=[] + ) + + data_list.append(data) + + loss_params = pd.concat(data_list, axis=0) + + # drop redefinitions of components + loss_params = loss_params.groupby(level=[0,1]).first() + + # keep only the relevant data + loss_cmp = np.unique(self.loss_map['Consequence'].values) + loss_params = loss_params.loc[idx[loss_cmp, :],:] + + # drop unused damage states + DS_list = loss_params.columns.get_level_values(0).unique() + DS_to_drop = [] + for DS in DS_list: + if np.all(pd.isna(loss_params.loc[:,idx[DS,:]].values)) == True: + DS_to_drop.append(DS) + + loss_params.drop(columns=DS_to_drop, level=0, inplace=True) + + # convert values to internal SI units + units = loss_params[('Quantity', 'Unit')] + + DS_list = loss_params.columns.get_level_values(0).unique() + + for DS in DS_list: + if DS.startswith('DS'): + + # median values + thetas = loss_params.loc[:, (DS, 'Theta_0')] + loss_params.loc[:, (DS, 'Theta_0')] = [ + convert_unit(theta, unit) + for theta, unit in list(zip(thetas, units))] + + # cov and beta for normal and lognormal dists. do not need to + # be scaled + families = loss_params.loc[:, (DS, 'Family')] + for family in families: + if ((pd.isna(family)==True) or + (family in ['normal', 'lognormal'])): + pass + else: + raise ValueError(f"Unexpected distribution family in " + f"loss model: {family}") + + # check for components with incomplete loss information + cmp_incomplete_list = loss_params.loc[ + loss_params[('Incomplete', '')] == 1].index + + if len(cmp_incomplete_list) > 0: + loss_params.drop(cmp_incomplete_list, inplace=True) + + log_msg(f"\nWARNING: Loss information is incomplete for the " + f"following component(s) {cmp_incomplete_list}. They were " + f"removed from the analysis.\n", + prepend_timestamp=False) + + self.loss_params = loss_params + + log_msg(f"Loss parameters successfully parsed.", + prepend_timestamp=False) + + def aggregate_losses(self): + """ + This is placeholder method. + + The method of aggregating the Decision Variable sample is specific to + each DV and needs to be implemented in every child of the LossModel + independently. + """ + pass + + def _generate_DV_sample(self, dmg_quantities, sample_size): + """ + This is placeholder method. + + The method of sampling decision variables in Decision Variable-specific + and needs to be implemented in every child of the LossModel + independently. + """ + pass + + def calculate(self, sample_size): + """ + Calculate the repair cost and time of each component block in the asset. + + """ + + log_div() + log_msg(f"Calculating losses...") + + # First, get the damaged quantities in each damage state for each block + # of each component of interest. + # Note that we are using the damages that drive the losses and not the + # names of the loss components directly. + log_msg(f"Preparing damaged quantities...") + cmp_list = np.unique([val for driver_type, val + in self.loss_map['Driver'].values]) + dmg_q = self._asmnt.damage.prepare_dmg_quantities(cmp_list = cmp_list) + + # Now sample random Decision Variables + # Note that this method is DV-specific and needs to be implemented in + # every child of the LossModel independently. + self._generate_DV_sample(dmg_q, sample_size) + + log_msg(f"Loss calculation successful.") + +class BldgRepairModel(LossModel): + """ + Manages building repair consequence assessments. + + Parameters + ---------- + + """ + + def __init__(self, assessment): + super(BldgRepairModel, self).__init__(assessment) + + self.loss_type = 'BldgRepair' + + def load_model(self, data_paths, mapping_path): + + super(BldgRepairModel, self).load_model(data_paths, mapping_path) + + def calculate(self, sample_size): + + super(BldgRepairModel, self).calculate(sample_size) + + def _create_DV_RVs(self, case_list): + """ + Prepare the random variables used for repair cost and time simulation. + + Parameters + ---------- + case_list: MultiIndex + Index with cmp-ds-loc-dir-block descriptions that identify the RVs + we need for the simulation. + """ + + RV_reg = RandomVariableRegistry() + LP = self.loss_params + + case_DF = pd.DataFrame(index=case_list, columns=[0,]) + driver_cmps = case_list.get_level_values(0).unique() + + rv_count = 0 + + for loss_cmp_id in self.loss_map.index.values: + + # load the corresponding parameters + driver_type, driver_cmp_id = self.loss_map.loc[loss_cmp_id, 'Driver'] + + if driver_type != 'DMG': + raise ValueError(f"Loss Driver type not recognized: " + f"{driver_type}") + + # load the parameters + if (driver_cmp_id, 'Cost') in LP.index: + cost_params = LP.loc[(driver_cmp_id, 'Cost'), :] + else: + cost_params = None + + if (driver_cmp_id, 'Time') in LP.index: + time_params = LP.loc[(driver_cmp_id, 'Time'), :] + else: + time_params = None + + if not driver_cmp_id in driver_cmps: + continue + + for ds in case_DF.loc[ + driver_cmp_id,:].index.get_level_values(0).unique(): + + if cost_params is not None: + cost_family, cost_theta_1 = cost_params.loc[ + [(f'DS{ds}', 'Family'), (f'DS{ds}','Theta_1')]] + + if time_params is not None: + time_family, time_theta_1 = time_params.loc[ + [(f'DS{ds}', 'Family'), (f'DS{ds}', 'Theta_1')]] + + if ((pd.isna(cost_family)==True) and + (pd.isna(time_family)==True)): + continue + + # load the loc-dir-block cases + loc_dir_block = case_DF.loc[(driver_cmp_id, ds)].index.values + + for loc, dir, block in loc_dir_block: + + if pd.isna(cost_family)==False: + + cost_rv_tag = f'COST-{loss_cmp_id}-{ds}-{loc}-{dir}-{block}' + + RV_reg.add_RV(RandomVariable( + name=cost_rv_tag, + distribution = cost_family, + theta = [1.0, cost_theta_1] + )) + rv_count += 1 + + if pd.isna(time_family) == False: + time_rv_tag = f'TIME-{loss_cmp_id}-{ds}-{loc}-{dir}-{block}' + + RV_reg.add_RV(RandomVariable( + name=time_rv_tag, + distribution=time_family, + theta=[1.0, time_theta_1] + )) + rv_count += 1 + + if ((pd.isna(cost_family) == False) and + (pd.isna(time_family) == False) and + (options.rho_cost_time != 0.0)): + + rho = options.rho_cost_time + + RV_reg.add_RV_set(RandomVariableSet( + f'DV-{loss_cmp_id}-{ds}-{loc}-{dir}-{block}_set', + list(RV_reg.RVs([cost_rv_tag, time_rv_tag]).values()), + np.array([[1.0, rho],[rho, 1.0]]))) + + log_msg(f"\n{rv_count} random variables created.", + prepend_timestamp=False) + + return RV_reg + + def _calc_median_consequence(self, eco_qnt): + """ + Calculate the median repair consequence for each loss component. + + """ + + medians = {} + + for DV_type, DV_type_scase in zip(['COST', 'TIME'], ['Cost', 'Time']): + + cmp_list = [] + median_list = [] + + for loss_cmp_id in self.loss_map.index: + + driver_type, driver_cmp = self.loss_map.loc[ + loss_cmp_id, 'Driver'] + loss_cmp_name = self.loss_map.loc[loss_cmp_id, 'Consequence'] + + if driver_type != 'DMG': + raise ValueError(f"Loss Driver type not recognized: " + f"{driver_type}") + + if not driver_cmp in eco_qnt.columns.get_level_values( + 0).unique(): + continue + + ds_list = [] + sub_medians = [] + + for ds in self.loss_params.columns.get_level_values(0).unique(): + + if not ds.startswith('DS'): + continue + + ds_id = ds[2:] + + theta_0 = self.loss_params.loc[ + (loss_cmp_name, DV_type_scase), + (ds, 'Theta_0')] + + if pd.isna(theta_0): + continue + + try: + theta_0 = float(theta_0) + f_median = prep_constant_median_DV(theta_0) + + except: + theta_0 = np.array( + [val.split(',') for val in theta_0.split('|')], + dtype=float) + f_median = prep_bounded_multilinear_median_DV( + theta_0[0], theta_0[1]) + + if 'ds' in eco_qnt.columns.names: + + avail_ds = eco_qnt.loc[:, + driver_cmp].columns.get_level_values( + 0).unique() + + if (not ds_id in avail_ds): + continue + + eco_qnt_i = eco_qnt.loc[:, (driver_cmp, ds_id)].copy() + + else: + eco_qnt_i = eco_qnt.loc[:, driver_cmp].copy() + + if isinstance(eco_qnt_i, pd.Series): + eco_qnt_i = eco_qnt_i.to_frame() + eco_qnt_i.columns = ['X'] + eco_qnt_i.columns.name = 'del' + + eco_qnt_i.loc[:, :] = f_median(eco_qnt_i.values) + + sub_medians.append(eco_qnt_i) + ds_list.append(ds_id) + + if len(ds_list) > 0: + median_list.append(pd.concat(sub_medians, axis=1, + keys=ds_list)) + cmp_list.append(loss_cmp_id) + + if len(cmp_list) > 0: + + result = pd.concat(median_list, axis=1, keys=cmp_list) + + if 'del' in result.columns.names: + result.columns = result.columns.droplevel('del') + + if options.eco_scale["AcrossFloors"] == True: + result.columns.names = ['cmp', 'ds'] + + else: + result.columns.names = ['cmp', 'ds', 'loc'] + + medians.update({DV_type: result}) + + return medians + + def aggregate_losses(self): + """ + Aggregates repair consequences across components. + + Repair costs are simply summed up for each realization while repair + times are aggregated to provide lower and upper limits of the total + repair time using the assumption of parallel and sequential repair of + floors, respectively. Repairs within each floor are assumed to occur + sequentially. + """ + + log_div() + log_msg(f"Aggregating repair consequences...") + + DV = self.sample + + # group results by DV type and location + DVG = DV.groupby(level=[0, 4], axis=1).sum() + + # create the summary DF + df_agg = pd.DataFrame(index=DV.index, + columns=['repair_cost', + 'repair_time-parallel', + 'repair_time-sequential']) + + df_agg['repair_cost'] = DVG['COST'].sum(axis=1) + df_agg['repair_time-sequential'] = DVG['TIME'].sum(axis=1) + + df_agg['repair_time-parallel'] = DVG['TIME'].max(axis=1) + + df_agg = convert_to_MultiIndex(df_agg, axis=1) + + log_msg(f"Repair consequences successfully aggregated.") + + return df_agg + + + def _generate_DV_sample(self, dmg_quantities, sample_size): + """ + Generate a sample of repair costs and times. + + Parameters + ---------- + dmg_quantitites: DataFrame + A table with the quantity of damage experienced in each damage state + of each component block at each location and direction. You can use + the prepare_dmg_quantities method in the DamageModel to get such a + DF. + sample_size: integer + The number of realizations to generate. + + """ + + log_msg(f"Preparing random variables for repair cost and time...") + RV_reg = self._create_DV_RVs(dmg_quantities.columns) + + RV_reg.generate_sample(sample_size=sample_size) + + std_sample = convert_to_MultiIndex(pd.DataFrame(RV_reg.RV_sample), + axis=1).sort_index(axis=1) + std_sample.columns.names = ['dv', 'cmp', 'ds', 'loc', 'dir', 'block'] + + log_msg(f"\nSuccessfully generated {sample_size} realizations of " + f"deviation from the median consequences.", + prepend_timestamp=False) + + # calculate the quantities for economies of scale + log_msg(f"\nCalculating the quantity of damage...", + prepend_timestamp=False) + + if options.eco_scale["AcrossFloors"]==True: + + if options.eco_scale["AcrossDamageStates"] == True: + + eco_qnt = dmg_quantities.groupby(level=[0,], axis=1).sum() + eco_qnt.columns.names = ['cmp',] + + else: + + eco_qnt = dmg_quantities.groupby(level=[0,1], axis=1).sum() + eco_qnt.columns.names = ['cmp', 'ds'] + + else: + + if options.eco_scale["AcrossDamageStates"] == True: + + eco_qnt = dmg_quantities.groupby(level=[0, 2], axis=1).sum() + eco_qnt.columns.names = ['cmp', 'loc'] + + else: + + eco_qnt = dmg_quantities.groupby(level=[0, 1, 2], axis=1).sum() + eco_qnt.columns.names = ['cmp', 'ds', 'loc'] + + log_msg(f"Successfully aggregated damage quantities.", + prepend_timestamp=False) + + # apply the median functions, if needed, to get median consequences for + # each realization + log_msg(f"\nCalculating the median repair consequences...", + prepend_timestamp=False) + + medians = self._calc_median_consequence(eco_qnt) + + log_msg(f"Successfully determined median repair consequences.", + prepend_timestamp=False) + + # combine the median consequences with the samples of deviation from the + # median to get the consequence realizations. + log_msg(f"\nConsidering deviations from the median values to obtain " + f"random DV sample...", + prepend_timestamp=False) + + res_list = [] + key_list = [] + prob_cmp_list = std_sample.columns.get_level_values(1).unique() + + for DV_type, DV_type_scase in zip(['COST', 'TIME'],['Cost','Time']): + + cmp_list = [] + + for cmp_i in medians[DV_type].columns.get_level_values(0).unique(): + + # check if there is damage in the component + driver_type, dmg_cmp_i = self.loss_map.loc[cmp_i, 'Driver'] + loss_cmp_i = self.loss_map.loc[cmp_i, 'Consequence'] + + if driver_type != 'DMG': + raise ValueError(f"Loss Driver type not " + f"recognized: {driver_type}") + + if not (dmg_cmp_i + in dmg_quantities.columns.get_level_values(0).unique()): + continue + + ds_list = [] + + for ds in medians[DV_type].loc[:, cmp_i].columns.get_level_values(0).unique(): + + loc_list = [] + + for loc_id, loc in enumerate( + dmg_quantities.loc[:, (dmg_cmp_i, ds)].columns.get_level_values(0).unique()): + + if ((options.eco_scale["AcrossFloors"] == True) and + (loc_id > 0)): + break + + if options.eco_scale["AcrossFloors"] == True: + median_i = medians[DV_type].loc[:,(cmp_i, ds)] + dmg_i = dmg_quantities.loc[:, (dmg_cmp_i, ds)] + + if cmp_i in prob_cmp_list: + std_i = std_sample.loc[:, (DV_type, cmp_i, ds)] + else: + std_i = None + + else: + median_i = medians[DV_type].loc[:, (cmp_i, ds, loc)] + dmg_i = dmg_quantities.loc[:, (dmg_cmp_i, ds, loc)] + + if cmp_i in prob_cmp_list: + std_i = std_sample.loc[:, (DV_type, cmp_i, ds, loc)] + else: + std_i = None + + if std_i is not None: + res_list.append(dmg_i.mul(median_i, axis=0) * std_i) + else: + res_list.append(dmg_i.mul(median_i, axis=0)) + + loc_list.append(loc) + + if options.eco_scale["AcrossFloors"] == True: + ds_list += [ds, ] + else: + ds_list+=[(ds, loc) for loc in loc_list] + + if options.eco_scale["AcrossFloors"] == True: + cmp_list += [(loss_cmp_i, dmg_cmp_i, ds) for ds in ds_list] + else: + cmp_list+=[(loss_cmp_i, dmg_cmp_i, ds, loc) for ds, loc in ds_list] + + if options.eco_scale["AcrossFloors"] == True: + key_list += [(DV_type, loss_cmp_i, dmg_cmp_i, ds) + for loss_cmp_i, dmg_cmp_i, ds in cmp_list] + else: + key_list+=[(DV_type, loss_cmp_i, dmg_cmp_i, ds, loc) + for loss_cmp_i, dmg_cmp_i, ds, loc in cmp_list] + + lvl_names = ['dv', 'loss', 'dmg', 'ds', 'loc', 'dir', 'block'] + DV_sample = pd.concat(res_list, axis=1, keys=key_list, + names = lvl_names) + + DV_sample = DV_sample.fillna(0).convert_dtypes() + DV_sample.columns.names = lvl_names + + # When the 'replacement' consequence is triggered, all local repair + # consequences are discarded. Note that global consequences are assigned + # to location '0'. + + # Get the flags for replacement consequence trigger + id_replacement = DV_sample.groupby(level=[1, ], + axis=1).sum()['replacement'] > 0 + + # get the list of non-zero locations + locs = DV_sample.columns.get_level_values(4).unique().values + locs = locs[locs != '0'] + + DV_sample.loc[id_replacement, idx[:, :, :, :, locs]] = 0.0 + + self._sample = DV_sample + + log_msg(f"Successfully obtained DV sample.", + prepend_timestamp=False) + + + + +def prep_constant_median_DV(median): + """ + Returns a constant median Decision Variable (DV) function. + + Parameters + ---------- + median: float + The median DV for a consequence function with fixed median. + + Returns + ------- + f: callable + A function that returns the constant median DV for all component + quantities. + """ + def f(quantity): + return median + + return f + +def prep_bounded_multilinear_median_DV(medians, quantities): + """ + Returns a bounded multilinear median Decision Variable (DV) function. + + The median DV equals the min and max values when the quantity is + outside of the prescribed quantity bounds. When the quantity is within the + bounds, the returned median is calculated by linear interpolation. + + Parameters + ---------- + medians: ndarray + Series of values that define the y coordinates of the multilinear DV + function. + quantities: ndarray + Series of values that define the component quantities corresponding to + the series of medians and serving as the x coordinates of the + multilinear DV function. + + Returns + ------- + f: callable + A function that returns the median DV given the quantity of damaged + components. + """ + def f(quantity): + if quantity is None: + raise ValueError( + 'A bounded linear median Decision Variable function called ' + 'without specifying the quantity of damaged components') + + q_array = np.asarray(quantity, dtype=np.float64) + + # calculate the median consequence given the quantity of damaged + # components + output = np.interp(q_array, quantities, medians) + + return output + + return f \ No newline at end of file diff --git a/pelicun/resources/FEMA_P58_1st_ed.hdf b/pelicun/resources/FEMA_P58_1st_ed.hdf deleted file mode 100644 index 75b67761f..000000000 Binary files a/pelicun/resources/FEMA_P58_1st_ed.hdf and /dev/null differ diff --git a/pelicun/resources/FEMA_P58_2nd_ed.hdf b/pelicun/resources/FEMA_P58_2nd_ed.hdf deleted file mode 100644 index 755053350..000000000 Binary files a/pelicun/resources/FEMA_P58_2nd_ed.hdf and /dev/null differ diff --git a/pelicun/resources/HAZUS_MH_2.1_EQ.hdf b/pelicun/resources/HAZUS_MH_2.1_EQ.hdf deleted file mode 100644 index c4021293f..000000000 Binary files a/pelicun/resources/HAZUS_MH_2.1_EQ.hdf and /dev/null differ diff --git a/pelicun/resources/HAZUS_MH_2.1_EQ_eqv_PGA.hdf b/pelicun/resources/HAZUS_MH_2.1_EQ_eqv_PGA.hdf deleted file mode 100644 index f3f49667e..000000000 Binary files a/pelicun/resources/HAZUS_MH_2.1_EQ_eqv_PGA.hdf and /dev/null differ diff --git a/pelicun/resources/HAZUS_MH_2.1_EQ_story.hdf b/pelicun/resources/HAZUS_MH_2.1_EQ_story.hdf deleted file mode 100644 index 244207d37..000000000 Binary files a/pelicun/resources/HAZUS_MH_2.1_EQ_story.hdf and /dev/null differ diff --git a/pelicun/resources/HAZUS_MH_2.1_FL.hdf b/pelicun/resources/HAZUS_MH_2.1_FL.hdf deleted file mode 100644 index 5d87d214e..000000000 Binary files a/pelicun/resources/HAZUS_MH_2.1_FL.hdf and /dev/null differ diff --git a/pelicun/resources/HAZUS_MH_2.1_HU.hdf b/pelicun/resources/HAZUS_MH_2.1_HU.hdf deleted file mode 100644 index e97c4b575..000000000 Binary files a/pelicun/resources/HAZUS_MH_2.1_HU.hdf and /dev/null differ diff --git a/pelicun/resources/HAZUS_MH_2.1_MISC.hdf b/pelicun/resources/HAZUS_MH_2.1_MISC.hdf deleted file mode 100644 index 33294b816..000000000 Binary files a/pelicun/resources/HAZUS_MH_2.1_MISC.hdf and /dev/null differ diff --git a/pelicun/resources/bldg_injury_DB_FEMA_P58_2nd.csv b/pelicun/resources/bldg_injury_DB_FEMA_P58_2nd.csv new file mode 100644 index 000000000..791feb7c5 --- /dev/null +++ b/pelicun/resources/bldg_injury_DB_FEMA_P58_2nd.csv @@ -0,0 +1,117 @@ +ID,Incomplete,Quantity-Unit,DV-Unit,DS1-Family,DS1-Theta_0,DS1-Theta_1,DS1-AffectedArea,DS2-Family,DS2-Theta_0,DS2-Theta_1,DS2-AffectedArea,DS3-Family,DS3-Theta_0,DS3-Theta_1,DS3-AffectedArea,DS4-Family,DS4-Theta_0,DS4-Theta_1,DS4-AffectedArea,DS5-Family,DS5-Theta_0,DS5-Theta_1,DS5-AffectedArea,DS6-Family,DS6-Theta_0,DS6-Theta_1,DS6-AffectedArea,DS7-Family,DS7-Theta_0,DS7-Theta_1,DS7-AffectedArea,DS8-Family,DS8-Theta_0,DS8-Theta_1,DS8-AffectedArea,DS9-Family,DS9-Theta_0,DS9-Theta_1,DS9-AffectedArea,DS10-Family,DS10-Theta_0,DS10-Theta_1,DS10-AffectedArea,DS11-Family,DS11-Theta_0,DS11-Theta_1,DS11-AffectedArea,DS12-Family,DS12-Theta_0,DS12-Theta_1,DS12-AffectedArea,DS13-Family,DS13-Theta_0,DS13-Theta_1,DS13-AffectedArea,DS14-Family,DS14-Theta_0,DS14-Theta_1,DS14-AffectedArea,DS15-Family,DS15-Theta_0,DS15-Theta_1,DS15-AffectedArea +B2022.001-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.002-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.011-S1,0,30 SF,persons,,,,,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.021-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.022-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.023-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.031-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.032-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.033-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.034-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.035-S1,0,32 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.036-S1,0,32 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.037-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.038-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.039-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.040-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.041-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.051-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.052-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.053-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.054-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.061-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.071-S1,0,30 SF,persons,,,,,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.072-S1,0,30 SF,persons,,,,,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.081-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.082-S1,0,30 SF,persons,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.083-S1,0,30 SF,persons,,,,,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.084-S1,0,30 SF,persons,,,,,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.091-S1,0,30 SF,persons,,,,,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.101-S1,0,30 SF,persons,,,,,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.201-S1,0,30 SF,persons,,,,,,,,,lognormal,0.02,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.001-S1,0,30 SF,persons,,,,,,,,,lognormal,0.25,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.002-S1,0,30 SF,persons,,,,,,,,,lognormal,0.25,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.011-S1,0,30 SF,persons,,,,,,,,,lognormal,0.25,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.021-S1,0,30 SF,persons,,,,,,,,,lognormal,0.25,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.041-S1,0,30 SF,persons,,,,,,,,,lognormal,0.25,0.5,36 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003a-S1,0,100 LF,persons,,,,,lognormal,0.1,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003a-S2,0,100 LF,persons,,,,,lognormal,0.05,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003b-S1,0,100 LF,persons,,,,,lognormal,0.1,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003b-S2,0,100 LF,persons,,,,,lognormal,0.05,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003c-S1,0,100 LF,persons,,,,,lognormal,0.1,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003c-S2,0,100 LF,persons,,,,,lognormal,0.05,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003d-S1,0,100 LF,persons,,,,,lognormal,0.1,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003d-S2,0,100 LF,persons,,,,,lognormal,0.05,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001a-S1,0,250 SF,persons,,,,,,,,,lognormal,0.1,0.5,250 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001b-S1,0,600 SF,persons,,,,,,,,,lognormal,0.1,0.5,650 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001c-S1,0,1800 SF,persons,,,,,,,,,lognormal,0.1,0.5,1700 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001d-S1,0,2500 SF,persons,,,,,,,,,lognormal,0.1,0.5,2500 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003a-S1,0,250 SF,persons,,,,,,,,,lognormal,0.1,0.5,250 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003b-S1,0,600 SF,persons,,,,,,,,,lognormal,0.1,0.5,650 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003c-S1,0,1800 SF,persons,,,,,,,,,lognormal,0.1,0.5,1700 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003d-S1,0,2500 SF,persons,,,,,,,,,lognormal,0.1,0.5,2500 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004a-S1,0,250 SF,persons,,,,,,,,,lognormal,0.1,0.5,250 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004b-S1,0,600 SF,persons,,,,,,,,,lognormal,0.1,0.5,650 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004c-S1,0,1800 SF,persons,,,,,,,,,lognormal,0.1,0.5,1700 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004d-S1,0,2500 SF,persons,,,,,,,,,lognormal,0.1,0.5,2500 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3034.001-S1,0,1 EA,persons,lognormal,0.75,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3034.001-S2,0,1 EA,persons,lognormal,0.25,0.5,100 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D1014.011-S1,0,1 EA,persons,,,,,,,,,,,,,,,,,,,,,,,,,,,,,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF +D1014.011-S2,0,1 EA,persons,,,,,,,,,,,,,,,,,,,,,,,,,,,,,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF +D1014.012-S1,0,1 EA,persons,,,,,,,,,,,,,,,,,,,,,,,,,,,,,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF,lognormal,0.1,0.5,40 SF +D1014.012-S2,0,1 EA,persons,,,,,,,,,,,,,,,,,,,,,,,,,,,,,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF,lognormal,0.05,0.5,40 SF +D2061.023a-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.024a-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001a-S1,0,10 EA,persons,,,,,lognormal,0.1,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001a-S2,0,10 EA,persons,,,,,lognormal,0.05,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001b-S1,0,10 EA,persons,,,,,lognormal,0.1,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001b-S2,0,10 EA,persons,,,,,lognormal,0.05,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001c-S1,0,10 EA,persons,,,,,lognormal,0.1,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001c-S2,0,10 EA,persons,,,,,lognormal,0.05,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001d-S1,0,10 EA,persons,,,,,lognormal,0.1,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001d-S2,0,10 EA,persons,,,,,lognormal,0.05,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011a-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,15 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011b-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,15 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011c-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,15 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011d-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,15 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012a-S1,0,1000 LF,persons,,,,,lognormal,0.1,0.5,50 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012b-S1,0,1000 LF,persons,,,,,lognormal,0.1,0.5,50 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012c-S1,0,1000 LF,persons,,,,,lognormal,0.1,0.5,50 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012d-S1,0,1000 LF,persons,,,,,lognormal,0.1,0.5,50 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021a-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,15 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021b-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,15 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021c-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,15 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021d-S1,0,1000 LF,persons,,,,,lognormal,0.05,0.5,15 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022a-S1,0,1000 LF,persons,,,,,lognormal,0.1,0.5,50 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022b-S1,0,1000 LF,persons,,,,,lognormal,0.1,0.5,50 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022c-S1,0,1000 LF,persons,,,,,lognormal,0.1,0.5,50 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022d-S1,0,1000 LF,persons,,,,,lognormal,0.1,0.5,50 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.031a-S1,0,10 EA,persons,lognormal,0.1,0.5,4 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.031b-S1,0,10 EA,persons,lognormal,0.1,0.5,4 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032a-S1,0,10 EA,persons,lognormal,0.1,0.5,4 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032b-S1,0,10 EA,persons,lognormal,0.1,0.5,4 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032c-S1,0,10 EA,persons,lognormal,0.1,0.5,4 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032d-S1,0,10 EA,persons,lognormal,0.1,0.5,4 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.010-S1,0,1 EA,persons,lognormal,0.1,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.011-S1,0,1 EA,persons,lognormal,0.1,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.012-S1,0,1 EA,persons,lognormal,0.05,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.013-S1,0,1 EA,persons,lognormal,0.1,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.020-S1,0,1 EA,persons,lognormal,0.1,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.020-S2,0,1 EA,persons,lognormal,0.05,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.021-S1,0,1 EA,persons,lognormal,0.2,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.021-S2,0,1 EA,persons,lognormal,0.1,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.022-S1,0,1 EA,persons,lognormal,0.1,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.023-S1,0,1 EA,persons,lognormal,0.1,0.5,16 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.105a-S1,1,1 EA,persons,lognormal,,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.105b-S1,1,1 EA,persons,lognormal,,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.106a-S1,1,1 EA,persons,lognormal,,0.5,20 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.106b-S1,1,1 EA,persons,lognormal,,0.5,20 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.114a-S1,1,1 EA,persons,lognormal,,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.114b-S1,1,1 EA,persons,lognormal,,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.124a-S1,1,1 EA,persons,lognormal,,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.124b-S1,1,1 EA,persons,lognormal,,0.5,10 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.125a-S1,1,1 EA,persons,lognormal,,0.5,20 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +E2022.125b-S1,1,1 EA,persons,lognormal,,0.5,20 SF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +F1012.001-S1,1,50 LF,persons,lognormal,,,,lognormal,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +F1012.001-S2,1,50 LF,persons,lognormal,,,,lognormal,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/pelicun/resources/bldg_injury_DB_FEMA_P58_2nd.json b/pelicun/resources/bldg_injury_DB_FEMA_P58_2nd.json new file mode 100644 index 000000000..887198c0f --- /dev/null +++ b/pelicun/resources/bldg_injury_DB_FEMA_P58_2nd.json @@ -0,0 +1,1610 @@ +{ + "B2022.001": { + "Description": "Curtain Walls - Generic Midrise Stick-Built Curtain wall, Config: Monolithic, Lamination: Unknown, Glass Type: Unknown, Details: Aspect ratio = 6:5, Other details Unknown", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.002": { + "Description": "Curtain Walls - Generic Midrise Stick-Built Curtain wall, Config: Insulating Glass Units (dual pane), Lamination: Unknown, Glass Type: Unknown, Details: Aspect ratio = 6:5, Other details Unknown", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.011": { + "Description": "Midrise stick-built curtain wall, Config: Asymmetric insulating glass units (dual-pane, unequal-thickness IGU), Lamination: Laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) inner AN / 1/2 in. (13 mm) outer AN LAM (0.030 PVB) IGU; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2022.021": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN LAM (0.030 PVB); glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.022": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN laminated, 2-sided SSG, Center Panel; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = wet", + "Comments": "None\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.023": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN laminated, 2-sided SSG, Outside Panel; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = wet", + "Comments": "None\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. User to confirm damage state, repair, lead time, and casualty data. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.031": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.032": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0 in. (0 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.033": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.13 in. (3 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.034": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.25 in. (6 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.035": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 2:1 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "32 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.036": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 1:2 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "32 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.037": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic, 2-sided SSG, Center Panel; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = wet", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.038": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic, 2-sided SSG, Outside Panel; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = wet", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.039": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.040": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 2:1 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.041": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 1:2 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.051": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Full tempered, Details: 1/4 in. (6 mm) FT monolithic, 2-sided SSG, Center Panel; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = wet", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.052": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Full tempered, Details: 1/4 in. (6 mm) FT monolithic, 2-sided SSG, Outside Panel; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = wet", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.053": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Full tempered, Details: 1/4 in. (6 mm) FT monolithic, Seamed Edge; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.054": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Full tempered, Details: 1/4 in. (6 mm) FT monolithic, Polished Edge; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.061": { + "Description": "Midrise stick-built curtain wall, Config: Monolithic, Lamination: Not laminated, Glass Type: Heat strengthened, Details: 1/4 in. (6 mm) HS monolithic; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.071": { + "Description": "Midrise stick-built curtain wall, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) inner AN / 1/4 in. (6 mm) outer AN LAM (0.030 PVB) IGU; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2022.072": { + "Description": "Midrise stick-built curtain wall, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) inner AN / 1/4 in. (6 mm) outer AN LAM (0.060 PVB) IGU; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2022.081": { + "Description": "Midrise stick-built curtain wall, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Not laminated, Glass Type: Annealed, Details: 1 in. (25 mm) AN insulating glass unit (IGU) [1/4 in. (6 mm) inner and outer panes]; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.082": { + "Description": "Midrise stick-built curtain wall, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Not laminated, Glass Type: Annealed, Details: 1 in. (25 mm) AN IGU [1/4 in. (6 mm) inner and outer panes]; glass-frame clearance = 0.25 in. (6 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Glass cracking." + }, + "DS2": { + "Description": "Glass falls from frame." + } + } + }, + "B2022.083": { + "Description": "Midrise stick-built curtain wall, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Not laminated, Glass Type: Annealed, Details: 1 in. (25 mm) AN IGU [1/4 in. (6 mm) inner and outer panes], 2-sided SSG, Center Panel; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = wet", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2022.084": { + "Description": "Midrise stick-built curtain wall, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Not laminated, Glass Type: Annealed, Details: 1 in. (25 mm) AN IGU [1/4 in. (6 mm) inner and outer panes], 2-sided SSG, Outside Panel; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = wet", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2022.091": { + "Description": "Midrise stick-built curtain wall, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Not laminated, Glass Type: Full tempered, Details: 1 in. (25 mm) FT IGU [1/4 in. (6 mm) inner and outer panes]; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2022.101": { + "Description": "Midrise stick-built curtain wall, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Not laminated, Glass Type: Heat strengthened, Details: 1 in. (25 mm) HS IGU [1/4 in. (6 mm) inner and outer panes]; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2022.201": { + "Description": "Curtain Walls - Unitized curtain wall (also generic unitized curtain wall), Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Not laminated, Glass Type: Full tempered, Details: 1-1/4 in. (32 mm) FT IGU [1/4 in. (6 mm) inner and outer panes], 4-sided SSG, VHBTM SGTTM; glass-frame clearance = 0.43 in. (11 mm); aspect ratio = Varies sealant = wet", + "Comments": "None\nNotes: Damage state DS3 of glass fall out did not occur in physical testing to 10% drift. DS3 0.1 median demand is intentional.", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2023.001": { + "Description": "Generic Storefront, Config: Monolithic, Lamination: Unknown, Glass Type: Unknown, Details: Aspect ratio = 6:5, Other details Unknown", + "Comments": "None\nNotes: None This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2023.002": { + "Description": "Generic Storefront, Config: IGU, Lamination: Unknown, Glass Type: Unknown, Details: Aspect ratio = 6:5, Other details Unknown", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2023.011": { + "Description": "Storefront, Config: Monolithic, Lamination: Laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN LAM (0.030 PVB); glass-frame clearance = 0.41 in. (10 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2023.021": { + "Description": "Storefront, Config: Monolithic, Lamination: Not laminated, Glass Type: Annealed, Details: 1/4 in. (6 mm) AN monolithic; glass-frame clearance = 0.41 in. (10 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "B2023.041": { + "Description": "Storefront, Config: Symmetric insulating glass units (dual-pane, equal-thickness IGU), Lamination: Not laminated, Glass Type: Annealed, Details: 1 in. (25 mm) AN IGU; glass-frame clearance = 0.59 in. (15 mm); aspect ratio = 6:5 sealant = dry", + "Comments": "None", + "SuggestedComponentBlockSize": "30 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Gasket seal failure." + }, + "DS2": { + "Description": "Glass cracking." + }, + "DS3": { + "Description": "Glass falls out." + } + } + }, + "C3011.003a": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Fixed Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling." + } + } + }, + "C3011.003b": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling." + } + } + }, + "C3011.003c": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Slip Track Above w/ returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling." + } + } + }, + "C3011.003d": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Slip Track Above w/o returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling." + } + } + }, + "C3032.001a": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): A < 250, Vert support only", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.001b": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): 250 < A < 1000, Vert support only", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.001c": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): 1000 < A < 2500, Vert support only", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.001d": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): A > 2500, Vert support only", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.003a": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): A < 250, Vert & Lat support", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.003b": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): 250 < A < 1000, Vert & Lat support", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.003c": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): 1000 < A < 2500, Vert & Lat support", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.003d": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): A > 2500, Vert & Lat support", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.004a": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): A < 250, Vert & Lat support", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.004b": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): 250 < A < 1000, Vert & Lat support", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.004c": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): 1000 < A < 2500, Vert & Lat support", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.004d": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): A > 2500, Vert & Lat support", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3034.001": { + "Description": "Independent Pendant Lighting - non seismic", + "Comments": "Horizontal light fixtures 4 to 16 ft long suspended 12 to 24 inches from ceiling. No seismic design or bracing. Hung from ceiling above by two or more rods or cables. \nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Low cost industrial hung lighting in warehouse or gymnasium that is not part of suspended ceiling or hanging from a suspended ceiling space.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Disassembly of rod system at connections with horizontal light fixture, low cycle fatigue failure of the threaded rod, pullout of rods from ceiling assembly." + } + } + }, + "D1014.011": { + "Description": "Traction Elevator \u2013 Applies to most California Installations 1976 or later, most western states installations 1982 or later and most other U.S installations 1998 or later.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Pure DS1. Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures." + }, + "DS2": { + "Description": "Pure DS2. Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted" + }, + "DS3": { + "Description": "Combination of DS1 & DS2" + }, + "DS4": { + "Description": "Pure DS3. Cab stabilizers bent, or cab walls damaged, or cab doors damaged." + }, + "DS5": { + "Description": "Combination of DS1 & DS3" + }, + "DS6": { + "Description": "Combination of DS2 & DS3" + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3" + }, + "DS8": { + "Description": "Pure DS4. Cab ceiling damaged." + }, + "DS9": { + "Description": "Combination of DS1 & DS4" + }, + "DS10": { + "Description": "Combination of DS2 & DS4" + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4" + }, + "DS12": { + "Description": "Combination of DS3 & DS4" + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4" + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4" + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4" + } + } + }, + "D1014.012": { + "Description": "Traction Elevator \u2013 Applies to most California Installations prior to 1976, most western states installations prior to 1982 and most other U.S installations prior to 1998.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Pure DS1. Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures." + }, + "DS2": { + "Description": "Pure DS2. Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted" + }, + "DS3": { + "Description": "Combination of DS1 & DS2" + }, + "DS4": { + "Description": "Pure DS3. Cab stabilizers bent, or cab walls damaged, or cab doors damaged." + }, + "DS5": { + "Description": "Combination of DS1 & DS3" + }, + "DS6": { + "Description": "Combination of DS2 & DS3" + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3" + }, + "DS8": { + "Description": "Pure DS4. Cab ceiling damaged." + }, + "DS9": { + "Description": "Combination of DS1 & DS4" + }, + "DS10": { + "Description": "Combination of DS2 & DS4" + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4" + }, + "DS12": { + "Description": "Combination of DS3 & DS4" + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4" + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4" + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4" + } + } + }, + "D2061.023a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe" + } + } + }, + "D2061.024a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe" + } + } + }, + "D3041.001a": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC A or B", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans." + }, + "DS2": { + "Description": "Fan dislodges from isolators and drops." + } + } + }, + "D3041.001b": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC C", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans." + }, + "DS2": { + "Description": "Fan dislodges from isolators and drops." + } + } + }, + "D3041.001c": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC D, E, F", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans." + }, + "DS2": { + "Description": "Fan dislodges from isolators and drops." + } + } + }, + "D3041.001d": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC D, E, F (OSHPD or sim)", + "Comments": "Costing per 10 units\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC installations\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC installations - SDC D, E or F (high seismic design)\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans." + }, + "DS2": { + "Description": "Fan dislodges from isolators and drops." + } + } + }, + "D3041.011a": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.011b": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.011c": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.011d": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.012a": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.012b": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.012c": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.012d": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.021a": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.021b": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.021c": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.021d": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.022a": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.022b": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.022c": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.022d": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting." + } + } + }, + "D3041.031a": { + "Description": "HVAC Drops / Diffusers in suspended ceilings - No independent safety wires, SDC A or B", + "Comments": "Costing per 10 units, No independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls." + } + } + }, + "D3041.031b": { + "Description": "HVAC Drops / Diffusers in suspended ceilings - No independent safety wires, SDC C", + "Comments": "Costing per 10 units, No independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls." + } + } + }, + "D3041.032a": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC A or B", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls." + } + } + }, + "D3041.032b": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC C", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls." + } + } + }, + "D3041.032c": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC D, E, or F", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls." + } + } + }, + "D3041.032d": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC Ducting Installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC Ducting Installation - SDC D, E or F (high seismic design)\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls." + } + } + }, + "E2022.010": { + "Description": "Unsecured fragile objects on shelves, unknown restraint", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Unknown conditions: some objects may have museum putty. Some cabinets may have latches. Some cabinets may be secured to the wall.\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Object falls off shelf or shelf overturns and object breaks or object breaks within cabinet." + } + } + }, + "E2022.011": { + "Description": "Fragile contents secured by museum putty, Velcro or other weak but sticky stuff", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: High adhesion surface (e.g., museum putty) and secured in cabinets (e.g., with latches & cabinet is secured to wall)\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Object falls off shelf or shelf overturns and object breaks or object breaks within cabinet." + } + } + }, + "E2022.012": { + "Description": "Fragile contents on shelves in storage cabinets with latches", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: In secured cabinets (e.g., with latches)\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Object falls off shelf or shelf overturns and object breaks or object breaks within cabinet." + } + } + }, + "E2022.013": { + "Description": "Unsecured fragile objects on shelves, low friction surface", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Low friction coefficient (e.g., glass or metal on wood), in unsecured cabinets (e.g., no latches)\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Object falls off shelf or shelf overturns and object breaks or object breaks within cabinet." + } + } + }, + "E2022.020": { + "Description": "Home entertainment equipment, unknown installation", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Falls, does not function." + } + } + }, + "E2022.021": { + "Description": "Electronic equipment on wall mount brackets", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Unsecured\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Falls, does not function." + } + } + }, + "E2022.022": { + "Description": "Desktop electronics including computers, monitors, stereos, etc on a slip resistant surface", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Unsecured\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Falls, does not function." + } + } + }, + "E2022.023": { + "Description": "Desktop electronics including computers, monitors, stereos, etc, smooth surface", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Unsecured\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Falls, does not function." + } + } + }, + "E2022.105a": { + "Description": "Bookcase, 5 shelves, unanchored laterally", + "Comments": "Standard bookcase, unanchored laterally. Bookcase is 12-5/8\" deep x 71\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. " + } + } + }, + "E2022.105b": { + "Description": "Bookcase, 5 shelves, anchored laterally", + "Comments": "Standard bookcase, anchored laterally. Bookcase is 12-5/8\" deep x 71\" tall.\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. " + } + } + }, + "E2022.106a": { + "Description": "Bookcase, 6 shelves, unanchored laterally", + "Comments": "Standard bookcase, unanchored laterally. Bookcase is 12-5/8\" deep x 81-1/4\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. " + } + } + }, + "E2022.106b": { + "Description": "Bookcase, 6 shelves, anchored laterally", + "Comments": "Standard bookcase, anchored laterally. Bookcase is 12-5/8\" deep x 81-1/4\" tall.\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. " + } + } + }, + "E2022.114a": { + "Description": "Vertical Filing Cabinet, 4 drawer, unanchored laterally", + "Comments": "Filing cabinet, unanchored laterally. Cabinet has 4 drawers and is 15\" deep x 52\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. " + } + } + }, + "E2022.114b": { + "Description": "Vertical Filing Cabinet, 4 drawer, anchored laterally", + "Comments": "Filing cabinet, anchored laterally. Cabinet has 4 drawers and is 15\" deep x 52\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. " + } + } + }, + "E2022.124a": { + "Description": "Lateral Filing Cabinet, 2 drawer, unanchored laterally", + "Comments": "Filing cabinet, unanchored laterally. Cabinet has 4 drawers and is 18.6\" deep x 52.5\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. " + } + } + }, + "E2022.124b": { + "Description": "Lateral Filing Cabinet, 2 drawer, anchored laterally", + "Comments": "Filing cabinet, anchored laterally. Cabinet has 4 drawers and is 18.6\" deep x 52.5\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. " + } + } + }, + "E2022.125a": { + "Description": "Lateral Filing Cabinet, 4 drawer, unanchored laterally", + "Comments": "Filing cabinet, unanchored laterally. Cabinet has 5 drawers and is 18.6\" deep x 67.75\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. " + } + } + }, + "E2022.125b": { + "Description": "Lateral Filing Cabinet, 4 drawer, anchored laterally", + "Comments": "Filing cabinet, anchored laterally. Cabinet has 5 drawers and is 18.6\" deep x 67.75\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. " + } + } + }, + "F1012.001": { + "Description": "Storage racks designed and installed before 2007, big box retail (12' to 15' tall)", + "Comments": "Standard pallet back to back storage rack. Three to five levels tall with total height from 15 to 20 ft. Costing assumes one single side access rack. Costing of rack and restocking based upon 50 LF of rack. Costing of rack contents to be furnished by user. \nConstruction Quality: Normal\nSeismic Installation Conditions: Varies", + "SuggestedComponentBlockSize": "50 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Significant merchandise shedding from rack shelves." + }, + "DS2": { + "Description": "Significant structural damage to rack structure." + } + } + } +} \ No newline at end of file diff --git a/pelicun/resources/bldg_injury_DB_Hazus_EQ.csv b/pelicun/resources/bldg_injury_DB_Hazus_EQ.csv new file mode 100644 index 000000000..110798e20 --- /dev/null +++ b/pelicun/resources/bldg_injury_DB_Hazus_EQ.csv @@ -0,0 +1,145 @@ +ID,Incomplete,Quantity-Unit,DV-Unit,DS1-Theta_0,DS2-Theta_0,DS3-Theta_0,DS4-Theta_0,DS5-Theta_0 +STR.W1-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.W1-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.W1-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,3 +STR.W1-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.W2-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.W2-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.W2-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.W2-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S1L-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S1L-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S1L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S1L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S1M-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S1M-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S1M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S1M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S1H-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S1H-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S1H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S1H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S2L-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S2L-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S2L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S2L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S2M-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S2M-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S2M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S2M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S2H-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S2H-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S2H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S2H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S3-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S3-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S3-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,3 +STR.S3-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S4L-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.S4L-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.S4L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S4L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S4M-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.S4M-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.S4M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S4M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S4H-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.S4H-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.S4H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S4H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S5L-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S5L-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S5L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S5L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S5M-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S5M-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S5M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S5M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.S5H-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.S5H-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.S5H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.S5H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C1L-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.C1L-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.C1L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C1L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C1M-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.C1M-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.C1M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C1M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C1H-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.C1H-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.C1H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C1H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C2L-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.C2L-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.C2L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C2L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C2M-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.C2M-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.C2M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C2M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C2H-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.C2H-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.C2H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C2H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C3L-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.C3L-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.C3L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C3L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C3M-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.C3M-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.C3M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C3M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.C3H-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.C3H-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.C3H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.C3H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.PC1-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.PC1-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.PC1-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.PC1-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.PC2L-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.PC2L-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.PC2L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.PC2L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.PC2M-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.PC2M-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.PC2M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.PC2M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.PC2H-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.PC2H-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.PC2H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.PC2H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.RM1L-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.RM1L-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.RM1L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.RM1L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.RM1M-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.RM1M-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.RM1M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.RM1M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.RM2L-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.RM2L-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.RM2L-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.RM2L-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.RM2M-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.RM2M-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.RM2M-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.RM2M-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.RM2H-S1,0,1 EA,injury_rate,0.05,0.2,1.0,5.0,40 +STR.RM2H-S2,0,1 EA,injury_rate,0.0,0.025,0.1,1.0,20 +STR.RM2H-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 +STR.RM2H-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,10 +STR.URML-S1,0,1 EA,injury_rate,0.05,0.35,2.0,10.0,40 +STR.URML-S2,0,1 EA,injury_rate,0.0,0.4,0.2,2.0,20 +STR.URML-S3,0,1 EA,injury_rate,0.0,0.001,0.002,0.02,5 +STR.URML-S4,0,1 EA,injury_rate,0.0,0.001,0.002,0.02,10 +STR.URMM-S1,0,1 EA,injury_rate,0.05,0.35,2.0,10.0,40 +STR.URMM-S2,0,1 EA,injury_rate,0.0,0.4,0.2,2.0,20 +STR.URMM-S3,0,1 EA,injury_rate,0.0,0.001,0.002,0.02,5 +STR.URMM-S4,0,1 EA,injury_rate,0.0,0.001,0.002,0.02,10 +STR.MH-S1,0,1 EA,injury_rate,0.05,0.25,1.0,5.0,40 +STR.MH-S2,0,1 EA,injury_rate,0.0,0.03,0.1,1.0,20 +STR.MH-S3,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,3 +STR.MH-S4,0,1 EA,injury_rate,0.0,0.0,0.001,0.01,5 diff --git a/pelicun/resources/bldg_redtag_DB_FEMA_P58_2nd.csv b/pelicun/resources/bldg_redtag_DB_FEMA_P58_2nd.csv new file mode 100644 index 000000000..ba46c0ab6 --- /dev/null +++ b/pelicun/resources/bldg_redtag_DB_FEMA_P58_2nd.csv @@ -0,0 +1,353 @@ +ID,Incomplete,DS1-Family,DS1-Theta_0,DS1-Theta_1,DS2-Family,DS2-Theta_0,DS2-Theta_1,DS3-Family,DS3-Theta_0,DS3-Theta_1,DS4-Family,DS4-Theta_0,DS4-Theta_1,DS5-Family,DS5-Theta_0,DS5-Theta_1 +B1031.001,0,,,,,,,lognormal,0.2,0.5,lognormal,0.1,0.5,,, +B1031.011a,0,,,,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,, +B1031.011b,0,,,,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,, +B1031.011c,0,,,,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,, +B1031.021a,0,,,,,,,lognormal,0.02,0.5,,,,,, +B1031.021b,0,,,,,,,lognormal,0.02,0.5,,,,,, +B1031.021c,0,,,,,,,lognormal,0.02,0.5,,,,,, +B1033.001a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.001b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.001c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.002a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.002b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.002c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.003a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.003b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.003c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.011a,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.011b,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.011c,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.012a,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.012b,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.012c,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.013a,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.013b,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.013c,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,lognormal,0.2,0.5,,, +B1033.021a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.021b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.021c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.022a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.022b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.022c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.023a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.023b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.023c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.031a,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.031b,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.031c,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.032a,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.032b,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.032c,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.033a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.033b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.033c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,, +B1033.041a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.041b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.041c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.042a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.042b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.042c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.043a,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.043b,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.043c,0,,,,lognormal,0.6,0.5,lognormal,0.4,0.5,,,,,, +B1033.051a,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.051b,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.051c,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.052a,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.052b,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.052c,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.053a,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.053b,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.053c,0,,,,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.061a,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.061b,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.061c,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.062a,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.062b,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.062c,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.063a,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.063b,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.063c,0,lognormal,0.6,0.5,lognormal,0.4,0.5,lognormal,0.2,0.5,,,,,, +B1033.071a,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1033.071b,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1033.071c,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1033.072a,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1033.072b,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1033.072c,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1033.073a,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1033.073b,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1033.073c,0,lognormal,0.2,0.5,,,,,,,,,,,, +B1035.001,0,,,,lognormal,0.5,0.5,lognormal,0.5,0.5,,,,,, +B1035.002,0,,,,lognormal,0.5,0.5,lognormal,0.5,0.5,,,,,, +B1035.011,0,,,,lognormal,0.5,0.5,lognormal,0.5,0.5,,,,,, +B1035.012,0,,,,lognormal,0.5,0.5,lognormal,0.5,0.5,,,,,, +B1035.021,0,,,,lognormal,0.5,0.5,lognormal,0.5,0.5,,,,,, +B1035.022,0,,,,lognormal,0.5,0.5,lognormal,0.5,0.5,,,,,, +B1035.031,0,,,,lognormal,0.5,0.5,lognormal,0.5,0.5,,,,,, +B1035.032,0,,,,lognormal,0.5,0.5,lognormal,0.5,0.5,,,,,, +B1035.041,0,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5 +B1035.042,0,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5 +B1035.051,0,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5 +B1035.052,0,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5,lognormal,0.5,0.5 +B1035.061a,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1035.061b,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1035.062a,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1035.062b,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1041.001a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.001b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.002a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.002b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.003a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.003b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.011a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.011b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.012a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.012b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.013a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.013b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.021a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.021b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.022a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.022b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.023a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.023b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.031a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.031b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.032a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.032b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.033a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.033b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.041a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.041b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.042a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.042b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.043a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.043b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.051a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.051b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.052a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.052b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.053a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.053b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.061a,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.061b,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.062a,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.062b,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.063a,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.063b,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.071a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.071b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.072a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.072b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.073a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.073b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.081a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.081b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.082a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.082b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.083a,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.083b,0,,,,,,,lognormal,0.2,0.5,,,,,, +B1041.091a,0,,,,,,,lognormal,0.15,0.5,,,,,, +B1041.091b,0,,,,,,,lognormal,0.15,0.5,,,,,, +B1041.092a,0,,,,,,,lognormal,0.15,0.5,,,,,, +B1041.092b,0,,,,,,,lognormal,0.15,0.5,,,,,, +B1041.093a,0,,,,,,,lognormal,0.15,0.5,,,,,, +B1041.093b,0,,,,,,,lognormal,0.15,0.5,,,,,, +B1041.101a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1041.101b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1041.102a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1041.102b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1041.103a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1041.103b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1041.111a,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.111b,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.112a,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.112b,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.113a,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.113b,0,,,,,,,lognormal,0.1,0.5,,,,,, +B1041.121a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.121b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.122a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.122b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.123a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.123b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.131a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.131b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.132a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.132b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.133a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1041.133b,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1042.001a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.001b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.002a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.002b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.011a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.011b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.012a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.012b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.021a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.021b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.022a,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1042.022b,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1044.001,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.002,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.003,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.011,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.012,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.013,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.021,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.022,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.023,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1044.031,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.032,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.033,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.041,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.042,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.043,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.051,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.052,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.053,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.061,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.062,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.063,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.071,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.072,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.073,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.081,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.082,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.083,0,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,,,,, +B1044.091,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1044.092,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1044.093,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1044.101,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1044.102,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1044.103,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1044.111,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1044.112,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1044.113,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1049.001a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1049.001b,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.002a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1049.002b,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.003a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1049.003b,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.011,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.012,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.021a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1049.021b,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.022a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1049.022b,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.031,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.032,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.041a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1049.041b,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1049.042a,0,,,,lognormal,0.1,0.5,,,,,,,,, +B1049.042b,0,,,,lognormal,0.2,0.5,,,,,,,,, +B1051.001,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1051.002,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1051.003,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1051.004,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1051.011,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1051.012,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1051.013,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1051.014,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1051.021,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1051.022,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1051.023,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1051.024,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1052.001,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1052.002,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1052.003,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1052.004,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1052.011,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1052.012,0,,,,lognormal,0.25,0.5,,,,,,,,, +B1052.013,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1052.014,0,,,,,,,lognormal,0.25,0.5,,,,,, +B1061.001a,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1061.001b,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B1061.011a,0,lognormal,0.2,0.5,lognormal,0.1,0.5,,,,,,,,, +B1061.011b,0,lognormal,0.2,0.5,lognormal,0.1,0.5,,,,,,,,, +B1061.021a,0,lognormal,0.2,0.5,lognormal,0.1,0.5,,,,,,,,, +B1061.021b,0,lognormal,0.2,0.5,lognormal,0.1,0.5,,,,,,,,, +B1071.001,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1071.002,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B1071.011,0,,,,lognormal,0.35,0.5,lognormal,0.25,0.5,,,,,, +B1071.012,0,,,,lognormal,0.35,0.5,lognormal,0.25,0.5,,,,,, +B1071.031,0,lognormal,0.25,0.5,,,,,,,,,,,, +B2011.001a,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B2011.001b,0,,,,lognormal,0.25,0.5,lognormal,0.1,0.5,,,,,, +B2011.011a,0,lognormal,0.2,0.5,lognormal,0.1,0.5,,,,,,,,, +B2011.011b,0,lognormal,0.2,0.5,lognormal,0.1,0.5,,,,,,,,, +B2011.021a,0,lognormal,0.2,0.5,lognormal,0.1,0.5,,,,,,,,, +B2011.021b,0,lognormal,0.2,0.5,lognormal,0.1,0.5,,,,,,,,, +B2011.101,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B2011.102,0,,,,lognormal,0.35,0.5,lognormal,0.25,0.5,,,,,, +B2011.111,0,,,,lognormal,0.35,0.5,lognormal,0.25,0.5,,,,,, +B2011.121,0,,,,lognormal,0.5,0.5,lognormal,0.25,0.5,,,,,, +B2011.131,0,lognormal,0.25,0.5,,,,,,,,,,,, +B2011.201b,0,lognormal,0.25,0.5,,,,,,,,,,,, +B2022.001,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.002,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.011,0,,,,,,,lognormal,0.9,0.5,,,,,, +B2022.021,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.022,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.023,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.031,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.032,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.033,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.034,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.035,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.036,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.037,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.038,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.039,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.040,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.041,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.051,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.052,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.053,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.054,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.061,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.071,0,,,,,,,lognormal,0.9,0.5,,,,,, +B2022.072,0,,,,,,,lognormal,0.9,0.5,,,,,, +B2022.081,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.082,0,,,,lognormal,0.9,0.5,,,,,,,,, +B2022.083,0,,,,,,,lognormal,0.9,0.5,,,,,, +B2022.084,0,,,,,,,lognormal,0.9,0.5,,,,,, +B2022.091,0,,,,,,,lognormal,0.9,0.5,,,,,, +B2022.101,0,,,,,,,lognormal,0.9,0.5,,,,,, +B2022.201,0,,,,,,,lognormal,0.9,0.5,,,,,, +B2023.001,0,,,,,,,lognormal,0.5,0.5,,,,,, +B2023.002,0,,,,,,,lognormal,0.5,0.5,,,,,, +B2023.011,0,,,,,,,lognormal,0.5,0.5,,,,,, +B2023.021,0,,,,,,,lognormal,0.5,0.5,,,,,, +B2023.041,0,,,,,,,lognormal,0.5,0.5,,,,,, +B3011.011,0,,,,lognormal,0.5,0.5,,,,,,,,, +B3011.012,0,,,,lognormal,0.5,0.5,,,,,,,,, +B3011.013,0,,,,lognormal,0.5,0.5,,,,,,,,, +B3011.014,0,,,,lognormal,0.5,0.5,,,,,,,,, +B3031.001a,0,lognormal,0.25,0.5,lognormal,0.5,0.5,,,,,,,,, +B3031.001b,0,lognormal,0.25,0.5,lognormal,0.5,0.5,,,,,,,,, +B3031.001c,0,lognormal,0.25,0.5,lognormal,0.5,0.5,,,,,,,,, +B3031.002a,0,lognormal,0.25,0.5,lognormal,0.5,0.5,,,,,,,,, +B3031.002b,0,lognormal,0.25,0.5,lognormal,0.5,0.5,,,,,,,,, +B3031.002c,0,lognormal,0.25,0.5,lognormal,0.5,0.5,,,,,,,,, +B3041.001,0,lognormal,0.25,0.5,lognormal,0.5,0.5,,,,,,,,, +C2011.001a,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.001b,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.011a,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.011b,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.021a,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.021b,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.021c,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.021d,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.031a,0,,,,,,,lognormal,0.75,0.5,,,,,, +C2011.031b,0,,,,,,,lognormal,0.75,0.5,,,,,, +C3011.003a,0,,,,lognormal,0.5,0.5,,,,,,,,, +C3011.003b,0,,,,lognormal,0.5,0.5,,,,,,,,, +C3011.003c,0,,,,lognormal,0.5,0.5,,,,,,,,, +C3011.003d,0,,,,lognormal,0.5,0.5,,,,,,,,, +C3032.001d,0,,,,lognormal,0.75,0.5,lognormal,0.5,0.5,,,,,, +C3032.003d,0,,,,lognormal,0.75,0.5,lognormal,0.5,0.5,,,,,, +C3032.004d,0,,,,lognormal,0.75,0.5,lognormal,0.5,0.5,,,,,, diff --git a/pelicun/resources/bldg_redtag_DB_FEMA_P58_2nd.json b/pelicun/resources/bldg_redtag_DB_FEMA_P58_2nd.json new file mode 100644 index 000000000..fb13b3aef --- /dev/null +++ b/pelicun/resources/bldg_redtag_DB_FEMA_P58_2nd.json @@ -0,0 +1,6116 @@ +{ + "B1031.001": { + "Description": "Bolted shear tab gravity connections", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted." + }, + "DS2": { + "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. " + }, + "DS3": { + "Description": "Partial tearing of shear tab and possibility of bolt shear failure (6-bolt or deeper connections)." + }, + "DS4": { + "Description": "Complete separation of shear tab, close to complete loss of vertical load resistance. " + } + } + }, + "B1031.011a": { + "Description": "Steel Column Base Plates, Column W < 150 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld." + }, + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. " + }, + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base." + } + } + }, + "B1031.011b": { + "Description": "Steel Column Base Plates, Column 150 plf < W < 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld." + }, + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. " + }, + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base." + } + } + }, + "B1031.011c": { + "Description": "Steel Column Base Plates, Column W > 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld." + }, + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. " + }, + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base." + } + } + }, + "B1031.021a": { + "Description": "Welded column splices, Column W < 150 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. " + }, + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. " + } + } + }, + "B1031.021b": { + "Description": "Welded column splices, Column 150 plf < W < 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. " + }, + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. " + } + } + }, + "B1031.021c": { + "Description": "Welded column splices, Column W > 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. " + }, + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. " + } + } + }, + "B1033.001a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.001b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.001c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.002a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.002b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.002c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.003a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.003b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.003c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.011a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.011b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.011c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.012a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.012b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.012c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.013a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.013b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.013c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset." + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. " + } + } + }, + "B1033.021a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.021b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.021c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.022a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.022b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.022c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.023a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.023b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.023c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.031a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.031b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.031c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.032a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.032b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.032c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.033a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas." + } + } + }, + "B1033.033b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas." + } + } + }, + "B1033.033c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . " + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas." + } + } + }, + "B1033.041a": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.041b": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.041c": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.042a": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.042b": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.042c": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.043a": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.043b": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.043c": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas." + } + } + }, + "B1033.051a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.051b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.051c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.052a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.052b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.052c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.053a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.053b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.053c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections." + } + } + }, + "B1033.061a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.061b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.061c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.062a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.062b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.062c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.063a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.063b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.063c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. " + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. " + } + } + }, + "B1033.071a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1033.071b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1033.071c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1033.072a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1033.072b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1033.072c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1033.073a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1033.073b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1033.073c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. " + } + } + }, + "B1035.001": { + "Description": "Post-Northridge RBS connection with welded web, beam one side of column only, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. " + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. " + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS." + } + } + }, + "B1035.002": { + "Description": "Post-Northridge RBS connection with welded web, beam one side of column only, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. " + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. " + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS." + } + } + }, + "B1035.011": { + "Description": "Post-Northridge RBS connection with welded web, beams both sides of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. " + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. " + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS." + } + } + }, + "B1035.012": { + "Description": "Post-Northridge RBS connection with welded web, beams both sides of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. " + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. " + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS." + } + } + }, + "B1035.021": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beam one side, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. " + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. " + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS." + } + } + }, + "B1035.022": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beam one side, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. " + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. " + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS." + } + } + }, + "B1035.031": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beams both sides, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. " + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. " + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS." + } + } + }, + "B1035.032": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beams both sides, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. " + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. " + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS." + } + } + }, + "B1035.041": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam one side of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. " + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges." + }, + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. " + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges." + }, + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. " + } + } + }, + "B1035.042": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam one side of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. " + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges." + }, + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. " + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges." + }, + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. " + } + } + }, + "B1035.051": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam both sides of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. " + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges." + }, + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. " + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges." + }, + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. " + } + } + }, + "B1035.052": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam both sides of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. " + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges." + }, + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. " + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges." + }, + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. " + } + } + }, + "B1035.061a": { + "Description": "EBF Shear Link, no floor beams, link w < 100 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage to concrete slab above the link beam." + }, + "DS2": { + "Description": "Web local buckling, flange local buckling." + }, + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange." + } + } + }, + "B1035.061b": { + "Description": "EBF Shear Link, no floor beams, link w < 200 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage to concrete slab above the link beam." + }, + "DS2": { + "Description": "Web local buckling, flange local buckling." + }, + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange." + } + } + }, + "B1035.062a": { + "Description": "EBF Shear Link, with floor beams, link w < 100 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage to concrete slab above the link beam." + }, + "DS2": { + "Description": "Web local buckling, flange local buckling." + }, + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange." + } + } + }, + "B1035.062b": { + "Description": "EBF Shear Link, with floor beams, link w < 200 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage to concrete slab above the link beam." + }, + "DS2": { + "Description": "Web local buckling, flange local buckling." + }, + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange." + } + } + }, + "B1041.001a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.001b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.002a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.002b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.003a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.003b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.011a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.011b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.012a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.012b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.013a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.013b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.021a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.021b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.022a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.022b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.023a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.023b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + } + } + }, + "B1041.031a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.031b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.032a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.032b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.033a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.033b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.041a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.041b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.042a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.042b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.043a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.043b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.051a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.051b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.052a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.052b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.053a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.053b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.061a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.061b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.062a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.062b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.063a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.063b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur." + } + } + }, + "B1041.071a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.071b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.072a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.072b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.073a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.073b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.081a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.081b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.082a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.082b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.083a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.083b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.091a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.091b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.092a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.092b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.093a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.093b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. " + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.101a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.101b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.102a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.102b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.103a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.103b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.111a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.111b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.112a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.112b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.113a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.113b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing." + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing." + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur." + } + } + }, + "B1041.121a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.121b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.122a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.122b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.123a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.123b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n" + } + } + }, + "B1041.131a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. " + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. " + } + } + }, + "B1041.131b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. " + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. " + } + } + }, + "B1041.132a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. " + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. " + } + } + }, + "B1041.132b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. " + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. " + } + } + }, + "B1041.133a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. " + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. " + } + } + }, + "B1041.133b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. " + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. " + } + } + }, + "B1042.001a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.001b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.002a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.002b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.011a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.011b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.012a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.012b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.021a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.021b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.022a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1042.022b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete." + } + } + }, + "B1044.001": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.002": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain 16' high to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.003": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain 25' high to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.011": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of up to 15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.012": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of 16' to 24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.013": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of 24' to 40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.021": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights up to 15' ", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.022": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights 16' - 24' ", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.023": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights 25' - 40' ", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.031": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.032": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.033": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.041": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.042": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.043": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.051": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick\" up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.052": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.053": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.061": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.062": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.063": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.071": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.072": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.073": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.081": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.082": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.083": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar." + } + } + }, + "B1044.091": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1044.092": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1044.093": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1044.101": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1044.102": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1044.103": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1044.111": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1044.112": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1044.113": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing." + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip" + } + } + }, + "B1049.001a": { + "Description": "Reinforced concrete flat slabs- columns without shear reinforcing 0 1/16\"" + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney." + } + } + }, + "B3031.001b": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 10 ft, replace with masonry", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"" + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney." + } + } + }, + "B3031.001c": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 15 ft, replace with masonry", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"" + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney." + } + } + }, + "B3031.002a": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 5 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"" + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney." + } + } + }, + "B3031.002b": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 10 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"" + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney." + } + } + }, + "B3031.002c": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 15 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"" + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney." + } + } + }, + "B3041.001": { + "Description": "Masonry Parapet - unreinforced, unbraced", + "Comments": "Unreinforced and unbraced masonry parapet as a component of a masonry building. Parapet height / width of approximately 3. Costing based upon repair of 3ft tall x 10ft segment.\nConstruction Quality: Normal\nSeismic Installation Conditions: All", + "SuggestedComponentBlockSize": "10 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"" + }, + "DS2": { + "Description": "Toppling of all or portion of parapet." + } + } + }, + "C2011.001a": { + "Description": "Prefabricated steel stair with steel treads and landings with seismic joints that accommodate drift.", + "Comments": "Flexible stair with seismic interstory slip joint. Steel prefab stringers, steel or concrete filled pan treads.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Non structural damage, local steel yielding." + }, + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Buckling of steel, weld cracking." + }, + "DS3": { + "Description": "Loss of live load capacity. Connection and or weld fracture." + } + } + }, + "C2011.001b": { + "Description": "Prefabricated steel stair with steel treads and landings with no seismic joint.", + "Comments": "Flexible stair without seismic interstory slip joint. Steel prefab stringers, steel or concrete filled pan treads.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Confirm median demand and dispersion values", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Non structural damage, local steel yielding." + }, + "DS2": { + "Description": "Buckling of steel, weld cracking." + }, + "DS3": { + "Description": "Loss of live load capacity. Connection and or weld fracture." + } + } + }, + "C2011.011a": { + "Description": "Non-monolithic precast concrete stair assembly with concrete stringers and treads with seismic joints that accommodate drift.", + "Comments": "Rigid stair with seismic interstory drift joint. Precast concrete stair.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Non structural damage, local concrete cracking, localized concrete spalling, localized rebar yielding." + }, + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Extensive concrete cracking, concrete crushing, buckling of rebar." + }, + "DS3": { + "Description": "Loss of live load capacity. Extensive concrete crushing, connection failure." + } + } + }, + "C2011.011b": { + "Description": "Non-monolithic precast concrete stair assembly with concrete stringers and treads with no seismic joint.", + "Comments": "Rigid stair without seismic interstory drift joint. Precast concrete stair.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Confirm median demand and dispersion values. Base document noted that there was insufficient data to establish median demand or dispersion values. The median demand and dispersion values listed are from a best fit approximation of the data performed by MKA.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Non structural damage, local concrete cracking, localized concrete spalling, localized rebar yielding." + }, + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Extensive concrete cracking, concrete crushing, buckling of rebar." + }, + "DS3": { + "Description": "Loss of live load capacity. Extensive concrete crushing, connection failure." + } + } + }, + "C2011.021a": { + "Description": "Monolithic cast-in-place and precast concrete stairs with seismic joints that accommodate drift - replace in kind if replacement is required.", + "Comments": "Cast in place concrete stair, with seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling" + }, + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing" + }, + "DS3": { + "Description": "Loss of live load capacity. " + } + } + }, + "C2011.021b": { + "Description": "Monolithic cast-in-place and precast concrete stairs with no seismic joints - replace in kind if replacement is required.", + "Comments": "Cast in place concrete stair, no seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling" + }, + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing" + }, + "DS3": { + "Description": "Loss of live load capacity. " + } + } + }, + "C2011.021c": { + "Description": "Monolithic cast-in-place and precast concrete stairs with seismic joints that accommodate drift - replace with prefabricated steel stair if replacement is required.", + "Comments": "Cast in place concrete stair, with seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling" + }, + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing" + }, + "DS3": { + "Description": "Loss of live load capacity. " + } + } + }, + "C2011.021d": { + "Description": "Monolithic cast-in-place and precast concrete stairs with no seismic joints - replace with prefabricated steel stair if replacement is required.", + "Comments": "Cast in place concrete stair, no seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling" + }, + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing" + }, + "DS3": { + "Description": "Loss of live load capacity. " + } + } + }, + "C2011.031a": { + "Description": "Hybrid stair assembly with steel stringers and concrete treads and landings with seismic joints that accommodate drift.", + "Comments": "Stair consists of steel stringers with precast treads rigidly linked to stringer\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Localized steel yielding." + }, + "DS2": { + "Description": "Buckling of steel, weld cracking." + }, + "DS3": { + "Description": "Loss of live load capacity. " + } + } + }, + "C2011.031b": { + "Description": "Hybrid stair assembly with steel stringers and concrete treads and landings with no seismic joints.", + "Comments": "Stair consists of steel stringers with precast treads rigidly linked to stringer\nConstruction Quality: Normal\nSeismic Installation Conditions: All", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Localized steel yielding." + }, + "DS2": { + "Description": "Buckling of steel, weld cracking." + }, + "DS3": { + "Description": "Loss of live load capacity. " + } + } + }, + "C3011.003a": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Fixed Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling." + } + } + }, + "C3011.003b": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling." + } + } + }, + "C3011.003c": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Slip Track Above w/ returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling." + } + } + }, + "C3011.003d": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Slip Track Above w/o returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling." + } + } + }, + "C3032.001d": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): A > 2500, Vert support only", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.003d": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): A > 2500, Vert & Lat support", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + }, + "C3032.004d": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): A > 2500, Vert & Lat support", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. " + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage." + } + } + } +} \ No newline at end of file diff --git a/pelicun/resources/bldg_repair_DB_FEMA_P58_2nd.csv b/pelicun/resources/bldg_repair_DB_FEMA_P58_2nd.csv new file mode 100644 index 000000000..1f409f358 --- /dev/null +++ b/pelicun/resources/bldg_repair_DB_FEMA_P58_2nd.csv @@ -0,0 +1,1475 @@ +ID,Incomplete,Quantity-Unit,DV-Unit,DS1-Family,DS1-Theta_0,DS1-Theta_1,DS1-LongLeadTime,DS2-Family,DS2-Theta_0,DS2-Theta_1,DS2-LongLeadTime,DS3-Family,DS3-Theta_0,DS3-Theta_1,DS3-LongLeadTime,DS4-Family,DS4-Theta_0,DS4-Theta_1,DS4-LongLeadTime,DS5-Family,DS5-Theta_0,DS5-Theta_1,DS5-LongLeadTime,DS6-Family,DS6-Theta_0,DS6-Theta_1,DS6-LongLeadTime,DS7-Family,DS7-Theta_0,DS7-Theta_1,DS7-LongLeadTime,DS8-Family,DS8-Theta_0,DS8-Theta_1,DS8-LongLeadTime,DS9-Family,DS9-Theta_0,DS9-Theta_1,DS9-LongLeadTime,DS10-Family,DS10-Theta_0,DS10-Theta_1,DS10-LongLeadTime,DS11-Family,DS11-Theta_0,DS11-Theta_1,DS11-LongLeadTime,DS12-Family,DS12-Theta_0,DS12-Theta_1,DS12-LongLeadTime,DS13-Family,DS13-Theta_0,DS13-Theta_1,DS13-LongLeadTime,DS14-Family,DS14-Theta_0,DS14-Theta_1,DS14-LongLeadTime,DS15-Family,DS15-Theta_0,DS15-Theta_1,DS15-LongLeadTime +B1031.001-Cost,0,1 EA,US$_2011,,,,,normal,"16536,10176|5,20",0.370602,,normal,"15564,11024.5|5,20",0.37889,,normal,"15264,10812|5,20",0.383593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.001-Time,0,1 EA,worker_day,,,,0,normal,"16.0497,9.87672|5,20",0.447041,0,normal,"15.1062,10.7002|5,20",0.453936,0,normal,"14.8151,10.494|5,20",0.457868,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.011a-Cost,0,1 EA,US$_2011,,,,,lognormal,"25363,15608|5,20",0.406969,,lognormal,"31464,22287|5,20",0.366445,,lognormal,"36744,26027|5,20",0.343414,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.011a-Time,0,1 EA,worker_day,,,,0,lognormal,"24.6171,15.149|5,20",0.477623,0,lognormal,"30.5386,21.6315|5,20",0.443601,0,lognormal,"35.6633,25.2615|5,20",0.424774,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.011b-Cost,0,1 EA,US$_2011,,,,,lognormal,"26403,16248|5,20",0.391556,,lognormal,"33864,23987|5,20",0.341772,,lognormal,"41544,29427|5,20",0.305761,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.011b-Time,0,1 EA,worker_day,,,,0,lognormal,"19.4139,11.947|5,20",0.46456,0,lognormal,"24.9,17.6375|5,20",0.423448,0,lognormal,"30.5471,21.6375|5,20",0.394955,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.011c-Cost,0,1 EA,US$_2011,,,,,lognormal,"27963,17208|5,20",0.370493,,lognormal,"37464,26537|5,20",0.310418,,lognormal,"47544,33677|5,20",0.268916,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.011c-Time,0,1 EA,worker_day,,,,0,lognormal,"18.505,11.3877|5,20",0.446951,0,lognormal,"24.7924,17.5613|5,20",0.398572,0,lognormal,"31.4629,22.2862|5,20",0.367173,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.021a-Cost,0,1 EA,US$_2011,,,,,normal,"12142,7472|5,20",0.324753,,lognormal,"13608,9639|5,20",0.302036,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.021a-Time,0,1 EA,worker_day,,,,0,normal,"11.7849,7.25224|5,20",0.409835,0,lognormal,"13.2078,9.35553|5,20",0.392079,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.021b-Cost,0,1 EA,US$_2011,,,,,normal,"13182,8112|5,20",0.299397,,normal,"16008,11339|5,20",0.268722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.021b-Time,0,1 EA,worker_day,,,,0,normal,"9.69266,5.96472|5,20",0.390049,0,normal,"11.7706,8.33748|5,20",0.36703,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.021c-Cost,0,1 EA,US$_2011,,,,,normal,"14742,9072|5,20",0.268008,,normal,"19608,13889|5,20",0.236069,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1031.021c-Time,0,1 EA,worker_day,,,,0,normal,"9.75572,6.00352|5,20",0.366508,0,normal,"12.9758,9.19121|5,20",0.343844,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.001a-Cost,0,1 EA,US$_2011,normal,"47292,29102.8|5,20",0.328087,,normal,"47229.3,33454.1|5,20",0.319388,,normal,"49269.3,34899.1|5,20",0.31393,,normal,"49269.3,34899.1|5,20",0.31393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.001a-Time,0,1 EA,worker_day,normal,"31.2962,19.2592|5,20",0.412482,0,normal,"31.2547,22.1388|5,20",0.405597,0,normal,"32.6047,23.095|5,20",0.401313,0,normal,"32.6047,23.095|5,20",0.401313,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.001b-Cost,0,1 EA,US$_2011,normal,"47292,29102.8|5,20",0.328087,,normal,"55829.7,39546|5,20",0.300019,,normal,"60029.7,42521|5,20",0.293388,,normal,"60029.7,42521|5,20",0.293388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.001b-Time,0,1 EA,worker_day,normal,"31.2962,19.2592|5,20",0.412482,0,normal,"36.9461,26.1701|5,20",0.390527,0,normal,"39.7255,28.1389|5,20",0.385456,0,normal,"39.7255,28.1389|5,20",0.385456,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.001c-Cost,0,1 EA,US$_2011,normal,"47292,29102.8|5,20",0.328087,,normal,"66505.2,47107.8|5,20",0.284907,,normal,"73105.2,51782.8|5,20",0.278147,,normal,"73105.2,51782.8|5,20",0.278147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.001c-Time,0,1 EA,worker_day,normal,"31.2962,19.2592|5,20",0.412482,0,normal,"44.0107,31.1743|5,20",0.379041,0,normal,"48.3784,34.268|5,20",0.373986,0,normal,"48.3784,34.268|5,20",0.373986,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.002a-Cost,0,1 EA,US$_2011,normal,"46307,28496.6|5,20",0.330545,,normal,"46705.4,33083|5,20",0.32014,,normal,"47005.4,33295.5|5,20",0.318962,,normal,"47005.4,33295.5|5,20",0.318962,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.002a-Time,0,1 EA,worker_day,normal,"30.6444,18.8581|5,20",0.41444,0,normal,"30.908,21.8932|5,20",0.406189,0,normal,"31.1065,22.0338|5,20",0.405262,0,normal,"31.1065,22.0338|5,20",0.405262,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.002b-Cost,0,1 EA,US$_2011,normal,"46307,28496.6|5,20",0.330545,,normal,"51447.3,36441.8|5,20",0.30738,,normal,"55047.3,38991.8|5,20",0.300511,,normal,"55047.3,38991.8|5,20",0.300511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.002b-Time,0,1 EA,worker_day,normal,"30.6444,18.8581|5,20",0.41444,0,normal,"34.046,24.116|5,20",0.39621,0,normal,"36.4284,25.8035|5,20",0.390905,0,normal,"36.4284,25.8035|5,20",0.390905,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.002c-Cost,0,1 EA,US$_2011,normal,"46307,28496.6|5,20",0.330545,,normal,"58049.6,41118.5|5,20",0.295552,,normal,"64649.6,45793.5|5,20",0.286517,,normal,"64649.6,45793.5|5,20",0.286517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.002c-Time,0,1 EA,worker_day,normal,"30.6444,18.8581|5,20",0.41444,0,normal,"38.4152,27.2108|5,20",0.387106,0,normal,"42.7829,30.3045|5,20",0.380253,0,normal,"42.7829,30.3045|5,20",0.380253,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.003a-Cost,0,1 EA,US$_2011,normal,"48388,29777.2|5,20",0.324776,,normal,"51386.8,36399|5,20",0.308827,,normal,"52586.8,37249|5,20",0.306364,,normal,"52586.8,37249|5,20",0.306364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.003a-Time,0,1 EA,worker_day,normal,"32.0215,19.7055|5,20",0.409853,0,normal,"34.006,24.0876|5,20",0.397333,0,normal,"34.8001,24.6501|5,20",0.395422,0,normal,"34.8001,24.6501|5,20",0.395422,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.003b-Cost,0,1 EA,US$_2011,normal,"48388,29777.2|5,20",0.324776,,normal,"63570.6,45029.1|5,20",0.288007,,normal,"67170.6,47579.1|5,20",0.283764,,normal,"67170.6,47579.1|5,20",0.283764,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.003b-Time,0,1 EA,worker_day,normal,"32.0215,19.7055|5,20",0.409853,0,normal,"42.0688,29.7987|5,20",0.381376,0,normal,"44.4511,31.4862|5,20",0.378182,0,normal,"44.4511,31.4862|5,20",0.378182,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.003c-Cost,0,1 EA,US$_2011,normal,"48388,29777.2|5,20",0.324776,,normal,"78575.2,55657.5|5,20",0.273213,,normal,"85175.2,60332.5|5,20",0.268555,,normal,"85175.2,60332.5|5,20",0.268555,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.003c-Time,0,1 EA,worker_day,normal,"32.0215,19.7055|5,20",0.409853,0,normal,"51.9983,36.8321|5,20",0.370331,0,normal,"56.3659,39.9259|5,20",0.366908,0,normal,"56.3659,39.9259|5,20",0.366908,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.011a-Cost,0,1 EA,US$_2011,normal,"46317,28502.8|5,20",0.330517,,normal,"48027.4,34019.4|5,20",0.315296,,normal,"50067.4,35464.4|5,20",0.310146,,normal,"50067.4,35464.4|5,20",0.310146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.011a-Time,0,1 EA,worker_day,normal,"30.651,18.8622|5,20",0.414417,0,normal,"31.7828,22.5128|5,20",0.402382,0,normal,"33.1328,23.4691|5,20",0.39836,0,normal,"33.1328,23.4691|5,20",0.39836,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.011b-Cost,0,1 EA,US$_2011,normal,"46317,28502.8|5,20",0.330517,,normal,"58712,41587.6|5,20",0.295176,,normal,"62912,44562.6|5,20",0.28927,,normal,"62912,44562.6|5,20",0.28927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.011b-Time,0,1 EA,worker_day,normal,"30.651,18.8622|5,20",0.414417,0,normal,"38.8535,27.5212|5,20",0.386819,0,normal,"41.6329,29.49|5,20",0.382331,0,normal,"41.6329,29.49|5,20",0.382331,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.011c-Cost,0,1 EA,US$_2011,normal,"42754.2,28502.8|5,20",0.330517,,normal,"72097.6,48065.1|5,20",0.279208,,normal,"78097.6,52065.1|5,20",0.274016,,normal,"78097.6,52065.1|5,20",0.274016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.011c-Time,0,1 EA,worker_day,normal,"28.2932,18.8622|5,20",0.414417,0,normal,"47.7116,31.8078|5,20",0.374776,0,normal,"51.6822,34.4548|5,20",0.370924,0,normal,"51.6822,34.4548|5,20",0.370924,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.012a-Cost,0,1 EA,US$_2011,normal,"41844.9,27896.6|5,20",0.333112,,normal,"46358,30905.3|5,20",0.319799,,normal,"47558,31705.3|5,20",0.316673,,normal,"47558,31705.3|5,20",0.316673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.012a-Time,0,1 EA,worker_day,normal,"27.6916,18.461|5,20",0.41649,0,normal,"30.6781,20.4521|5,20",0.405921,0,normal,"31.4722,20.9814|5,20",0.403462,0,normal,"31.4722,20.9814|5,20",0.403462,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.012b-Cost,0,1 EA,US$_2011,normal,"41844.9,27896.6|5,20",0.333112,,normal,"52816.6,35211.1|5,20",0.305552,,normal,"57016.6,38011.1|5,20",0.298029,,normal,"57016.6,38011.1|5,20",0.298029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.012b-Time,0,1 EA,worker_day,normal,"27.6916,18.461|5,20",0.41649,0,normal,"34.9522,23.3014|5,20",0.394794,0,normal,"37.7316,25.1544|5,20",0.389001,0,normal,"37.7316,25.1544|5,20",0.389001,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.012c-Cost,0,1 EA,US$_2011,normal,"41844.9,27896.6|5,20",0.333112,,normal,"61459.9,40973.2|5,20",0.290456,,normal,"68059.9,45373.2|5,20",0.28252,,normal,"68059.9,45373.2|5,20",0.28252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.012c-Time,0,1 EA,worker_day,normal,"27.6916,18.461|5,20",0.41649,0,normal,"40.672,27.1146|5,20",0.383229,0,normal,"45.0396,30.0264|5,20",0.37725,0,normal,"45.0396,30.0264|5,20",0.37725,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.013a-Cost,0,1 EA,US$_2011,normal,"43765.9,29177.2|5,20",0.327049,,normal,"51591.9,34394.6|5,20",0.307273,,normal,"53391.9,35594.6|5,20",0.30371,,normal,"53391.9,35594.6|5,20",0.30371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.013a-Time,0,1 EA,worker_day,normal,"28.9627,19.3085|5,20",0.411656,0,normal,"34.1417,22.7611|5,20",0.396127,0,normal,"35.3329,23.5553|5,20",0.39337,0,normal,"35.3329,23.5553|5,20",0.39337,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.013b-Cost,0,1 EA,US$_2011,normal,"43765.9,29177.2|5,20",0.327049,,normal,"66549.2,44366.1|5,20",0.284467,,normal,"70749.2,47166.1|5,20",0.280035,,normal,"70749.2,47166.1|5,20",0.280035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.013b-Time,0,1 EA,worker_day,normal,"28.9627,19.3085|5,20",0.411656,0,normal,"44.0399,29.3599|5,20",0.37871,0,normal,"46.8193,31.2129|5,20",0.375393,0,normal,"46.8193,31.2129|5,20",0.375393,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.013c-Cost,0,1 EA,US$_2011,normal,"43765.9,29177.2|5,20",0.327049,,normal,"84795.7,56530.5|5,20",0.269326,,normal,"91395.7,60930.5|5,20",0.265331,,normal,"91395.7,60930.5|5,20",0.265331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.013c-Time,0,1 EA,worker_day,normal,"28.9627,19.3085|5,20",0.411656,0,normal,"56.1149,37.4099|5,20",0.367473,0,normal,"60.4825,40.3217|5,20",0.364555,0,normal,"60.4825,40.3217|5,20",0.364555,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.021a-Cost,0,1 EA,US$_2011,normal,"43294.2,28862.8|5,20",0.327833,,normal,"48567.4,32378.3|5,20",0.313177,,normal,"50607.4,33738.3|5,20",0.308201,,normal,"50607.4,33738.3|5,20",0.308201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.021a-Time,0,1 EA,worker_day,normal,"28.6506,19.1004|5,20",0.412279,0,normal,"32.1402,21.4268|5,20",0.400724,0,normal,"33.4902,22.3268|5,20",0.396847,0,normal,"33.4902,22.3268|5,20",0.396847,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.021b-Cost,0,1 EA,US$_2011,normal,"43294.2,28862.8|5,20",0.327833,,normal,"59792,39861.3|5,20",0.294038,,normal,"63992,42661.3|5,20",0.288337,,normal,"63992,42661.3|5,20",0.288337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.021b-Time,0,1 EA,worker_day,normal,"28.6506,19.1004|5,20",0.412279,0,normal,"39.5682,26.3788|5,20",0.385951,0,normal,"42.3476,28.2318|5,20",0.381626,0,normal,"42.3476,28.2318|5,20",0.381626,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.021c-Cost,0,1 EA,US$_2011,normal,"43294.2,28862.8|5,20",0.327833,,normal,"73177.6,48785.1|5,20",0.278573,,normal,"79177.6,52785.1|5,20",0.273522,,normal,"79177.6,52785.1|5,20",0.273522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.021c-Time,0,1 EA,worker_day,normal,"28.6506,19.1004|5,20",0.412279,0,normal,"48.4264,32.2842|5,20",0.374303,0,normal,"52.3969,34.9313|5,20",0.370559,0,normal,"52.3969,34.9313|5,20",0.370559,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.022a-Cost,0,1 EA,US$_2011,normal,"42384.9,28256.6|5,20",0.330314,,normal,"46898,31265.3|5,20",0.317524,,normal,"47918,31945.3|5,20",0.316182,,normal,"47918,31945.3|5,20",0.316182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.022a-Time,0,1 EA,worker_day,normal,"28.0488,18.6992|5,20",0.414255,0,normal,"31.0355,20.6903|5,20",0.404131,0,normal,"31.7105,21.1403|5,20",0.403077,0,normal,"31.7105,21.1403|5,20",0.403077,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.022b-Cost,0,1 EA,US$_2011,normal,"42384.9,28256.6|5,20",0.330314,,normal,"53536.6,35691.1|5,20",0.303621,,normal,"57736.6,38491.1|5,20",0.296366,,normal,"57736.6,38491.1|5,20",0.296366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.022b-Time,0,1 EA,worker_day,normal,"28.0488,18.6992|5,20",0.414255,0,normal,"35.4287,23.6191|5,20",0.393301,0,normal,"38.208,25.472|5,20",0.387728,0,normal,"38.208,25.472|5,20",0.387728,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.022c-Cost,0,1 EA,US$_2011,normal,"42384.9,28256.6|5,20",0.330314,,normal,"62179.9,41453.2|5,20",0.28904,,normal,"68779.9,45853.2|5,20",0.281345,,normal,"68779.9,45853.2|5,20",0.281345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.022c-Time,0,1 EA,worker_day,normal,"28.0488,18.6992|5,20",0.414255,0,normal,"41.1485,27.4323|5,20",0.382157,0,normal,"45.5161,30.3441|5,20",0.376371,0,normal,"45.5161,30.3441|5,20",0.376371,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.023a-Cost,0,1 EA,US$_2011,normal,"44305.9,29537.2|5,20",0.324498,,normal,"52491.9,34994.6|5,20",0.305828,,normal,"54291.9,36194.6|5,20",0.302399,,normal,"54291.9,36194.6|5,20",0.302399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.023a-Time,0,1 EA,worker_day,normal,"29.3201,19.5467|5,20",0.409633,0,normal,"34.7374,23.1582|5,20",0.395007,0,normal,"35.9285,23.9523|5,20",0.392358,0,normal,"35.9285,23.9523|5,20",0.392358,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.023b-Cost,0,1 EA,US$_2011,normal,"44305.9,29537.2|5,20",0.324498,,normal,"68349.2,45566.1|5,20",0.282495,,normal,"72549.2,48366.1|5,20",0.278312,,normal,"72549.2,48366.1|5,20",0.278312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.023b-Time,0,1 EA,worker_day,normal,"29.3201,19.5467|5,20",0.409633,0,normal,"45.2311,30.1541|5,20",0.377231,0,normal,"48.0104,32.007|5,20",0.374109,0,normal,"48.0104,32.007|5,20",0.374109,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.023c-Cost,0,1 EA,US$_2011,normal,"40613.7,33229.4|3,10",0.324498,,normal,"79379.4,64946.8|3,10",0.268169,,normal,"85429.4,69896.8|3,10",0.26435,,normal,"85429.4,69896.8|3,10",0.26435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.023c-Time,0,1 EA,worker_day,normal,"26.8767,21.9901|3,10",0.409633,0,normal,"52.5305,42.9795|3,10",0.366626,0,normal,"56.5342,46.2552|3,10",0.363842,0,normal,"56.5342,46.2552|3,10",0.363842,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.031a-Cost,0,1 EA,US$_2011,normal,"39686.3,32470.6|3,10",0.327833,,normal,"44520.1,36425.6|3,10",0.313177,,normal,"46390.1,37955.6|3,10",0.308201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.031a-Time,0,1 EA,worker_day,normal,"26.263,21.488|3,10",0.412279,0,normal,"29.4618,24.1052|3,10",0.400724,0,normal,"30.6993,25.1177|3,10",0.396847,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.031b-Cost,0,1 EA,US$_2011,normal,"39686.3,32470.6|3,10",0.327833,,normal,"54809.3,44844|3,10",0.294038,,normal,"58659.3,47994|3,10",0.288337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.031b-Time,0,1 EA,worker_day,normal,"26.263,21.488|3,10",0.412279,0,normal,"36.2709,29.6761|3,10",0.385951,0,normal,"38.8187,31.7607|3,10",0.381626,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.031c-Cost,0,1 EA,US$_2011,normal,"39686.3,32470.6|3,10",0.327833,,normal,"67079.5,54883.2|3,10",0.278573,,normal,"72579.5,59383.2|3,10",0.273522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.031c-Time,0,1 EA,worker_day,normal,"26.263,21.488|3,10",0.412279,0,normal,"44.3908,36.3198|3,10",0.374303,0,normal,"48.0305,39.2977|3,10",0.370559,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.032a-Cost,0,1 EA,US$_2011,normal,"38852.9,31788.7|3,10",0.330314,,normal,"42989.8,35173.5|3,10",0.317524,,normal,"43924.8,35938.5|3,10",0.316182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.032a-Time,0,1 EA,worker_day,normal,"25.7114,21.0366|3,10",0.414255,0,normal,"28.4492,23.2766|3,10",0.404131,0,normal,"29.0679,23.7829|3,10",0.403077,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.032b-Cost,0,1 EA,US$_2011,normal,"38852.9,31788.7|3,10",0.330314,,normal,"49075.2,40152.4|3,10",0.303621,,normal,"52925.2,43302.4|3,10",0.296366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.032b-Time,0,1 EA,worker_day,normal,"25.7114,21.0366|3,10",0.414255,0,normal,"32.4763,26.5715|3,10",0.393301,0,normal,"35.024,28.656|3,10",0.387728,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.032c-Cost,0,1 EA,US$_2011,normal,"38852.9,31788.7|3,10",0.330314,,normal,"56998.2,46634.9|3,10",0.28904,,normal,"63048.2,51584.9|3,10",0.281345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.032c-Time,0,1 EA,worker_day,normal,"25.7114,21.0366|3,10",0.414255,0,normal,"37.7194,30.8614|3,10",0.382157,0,normal,"41.7231,34.1371|3,10",0.376371,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.033a-Cost,0,1 EA,US$_2011,normal,"40613.7,33229.4|3,10",0.324498,,normal,"48117.6,39369|3,10",0.305828,,normal,"49767.6,40719|3,10",0.302399,,normal,"49767.6,40719|3,10",0.302399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.033a-Time,0,1 EA,worker_day,normal,"26.8767,21.9901|3,10",0.409633,0,normal,"31.8426,26.053|3,10",0.395007,0,normal,"32.9344,26.9464|3,10",0.392358,0,normal,"32.9344,26.9464|3,10",0.392358,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.033b-Cost,0,1 EA,US$_2011,normal,"40613.7,33229.4|3,10",0.324498,,normal,"62653.4,51261.9|3,10",0.282495,,normal,"66503.4,54411.9|3,10",0.278312,,normal,"66503.4,54411.9|3,10",0.278312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.033b-Time,0,1 EA,worker_day,normal,"26.8767,21.9901|3,10",0.409633,0,normal,"41.4619,33.9233|3,10",0.377231,0,normal,"44.0096,36.0078|3,10",0.374109,0,normal,"44.0096,36.0078|3,10",0.374109,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.033c-Cost,0,1 EA,US$_2011,normal,"49844.1,27691.2|5,20",0.324498,,normal,"97420.2,54122.3|5,20",0.268169,,normal,"104845,58247.3|5,20",0.26435,,normal,"104845,58247.3|5,20",0.26435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.033c-Time,0,1 EA,worker_day,normal,"32.9851,18.3251|5,20",0.409633,0,normal,"64.4693,35.8162|5,20",0.366626,0,normal,"69.3828,38.546|5,20",0.363842,0,normal,"69.3828,38.546|5,20",0.363842,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.041a-Cost,0,1 EA,US$_2011,normal,"48706,27058.9|5,20",0.327833,,normal,"55593.5,30885.3|5,20",0.312254,,normal,"57888.5,32160.3|5,20",0.30736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.041a-Time,0,1 EA,worker_day,normal,"32.2319,17.9066|5,20",0.412279,0,normal,"36.7898,20.4388|5,20",0.400003,0,normal,"38.3086,21.2825|5,20",0.396194,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.041b-Cost,0,1 EA,US$_2011,normal,"48706,27058.9|5,20",0.327833,,normal,"69494.7,38608.2|5,20",0.290342,,normal,"74219.7,41233.2|5,20",0.285115,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.041b-Time,0,1 EA,worker_day,normal,"32.2319,17.9066|5,20",0.412279,0,normal,"45.9891,25.5495|5,20",0.383143,0,normal,"49.116,27.2866|5,20",0.379197,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.041c-Cost,0,1 EA,US$_2011,normal,"43294.2,28862.8|5,15",0.327833,,normal,"76573.9,51049.2|5,15",0.275487,,normal,"82573.9,55049.2|5,15",0.270934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.041c-Time,0,1 EA,worker_day,normal,"28.6506,19.1004|5,15",0.412279,0,normal,"50.6738,33.7826|5,15",0.372012,0,normal,"54.6445,36.4297|5,15",0.368653,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.042a-Cost,0,1 EA,US$_2011,normal,"42384.9,28256.6|5,15",0.330314,,normal,"47474.2,31649.5|5,15",0.316056,,normal,"48494.2,32329.5|5,15",0.31477,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.042a-Time,0,1 EA,worker_day,normal,"28.0488,18.6992|5,15",0.414255,0,normal,"31.4168,20.9446|5,15",0.402978,0,normal,"32.0918,21.3946|5,15",0.401971,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.042b-Cost,0,1 EA,US$_2011,normal,"42384.9,28256.6|5,15",0.330314,,normal,"54881.2,36587.5|5,15",0.301339,,normal,"59081.2,39387.5|5,15",0.294478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.042b-Time,0,1 EA,worker_day,normal,"28.0488,18.6992|5,15",0.414255,0,normal,"36.3185,24.2123|5,15",0.391542,0,normal,"39.0979,26.0653|5,15",0.386287,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.042c-Cost,0,1 EA,US$_2011,normal,"44151,30022.7|3,7",0.330314,,normal,"67171.9,45676.9|3,7",0.286573,,normal,"74046.9,50351.9|3,7",0.279417,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.042c-Time,0,1 EA,worker_day,normal,"29.2175,19.8679|3,7",0.414255,0,normal,"44.452,30.2274|3,7",0.380295,0,normal,"49.0016,33.3211|3,7",0.374932,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.043a-Cost,0,1 EA,US$_2011,normal,"46152,31383.3|3,7",0.324498,,normal,"55879.7,37998.2|3,7",0.304847,,normal,"57754.7,39273.2|3,7",0.301539,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.043a-Time,0,1 EA,worker_day,normal,"30.5417,20.7684|3,7",0.409633,0,normal,"36.9792,25.1459|3,7",0.394249,0,normal,"38.22,25.9896|3,7",0.391696,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.043b-Cost,0,1 EA,US$_2011,normal,"46152,31383.3|3,7",0.324498,,normal,"73998.4,50318.9|3,7",0.280378,,normal,"78373.4,53293.9|3,7",0.276489,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.043b-Time,0,1 EA,worker_day,normal,"30.5417,20.7684|3,7",0.409633,0,normal,"48.9695,33.2993|3,7",0.375648,0,normal,"51.8648,35.268|3,7",0.372755,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.043c-Cost,0,1 EA,US$_2011,normal,"46152,31383.3|3,7",0.324498,,normal,"95006.2,64604.2|3,7",0.264938,,normal,"101881,69279.2|3,7",0.261557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.043c-Time,0,1 EA,worker_day,normal,"30.5417,20.7684|3,7",0.409633,0,normal,"62.8718,42.7528|3,7",0.36427,0,normal,"67.4214,45.8465|3,7",0.361818,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.051a-Cost,0,1 EA,US$_2011,normal,"44535.6,30284.2|3,7",0.330517,,normal,"50028.6,34019.4|3,7",0.315296,,normal,"52153.6,35464.4|3,7",0.310146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.051a-Time,0,1 EA,worker_day,normal,"29.4721,20.041|3,7",0.414417,0,normal,"33.1071,22.5128|3,7",0.402382,0,normal,"34.5134,23.4691|3,7",0.39836,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.051b-Cost,0,1 EA,US$_2011,normal,"44535.6,30284.2|3,7",0.330517,,normal,"61158.3,41587.6|3,7",0.295176,,normal,"65533.3,44562.6|3,7",0.28927,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.051b-Time,0,1 EA,worker_day,normal,"29.4721,20.041|3,7",0.414417,0,normal,"40.4724,27.5212|3,7",0.386819,0,normal,"43.3676,29.49|3,7",0.382331,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.051c-Cost,0,1 EA,US$_2011,normal,"44535.6,30284.2|3,7",0.330517,,normal,"75101.7,51069.2|3,7",0.279208,,normal,"81351.7,55319.2|3,7",0.274016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.051c-Time,0,1 EA,worker_day,normal,"29.4721,20.041|3,7",0.414417,0,normal,"49.6996,33.7957|3,7",0.374776,0,normal,"53.8356,36.6082|3,7",0.370924,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.052a-Cost,0,1 EA,US$_2011,normal,"43588.5,29640.2|3,7",0.333112,,normal,"48289.6,32836.9|3,7",0.319799,,normal,"49539.6,33686.9|3,7",0.316673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.052a-Time,0,1 EA,worker_day,normal,"28.8454,19.6149|3,7",0.41649,0,normal,"31.9564,21.7303|3,7",0.405921,0,normal,"32.7835,22.2928|3,7",0.403462,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.052b-Cost,0,1 EA,US$_2011,normal,"43588.5,29640.2|3,7",0.333112,,normal,"55017.3,37411.8|3,7",0.305552,,normal,"59392.3,40386.8|3,7",0.298029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.052b-Time,0,1 EA,worker_day,normal,"28.8454,19.6149|3,7",0.41649,0,normal,"36.4085,24.7578|3,7",0.394794,0,normal,"39.3037,26.7266|3,7",0.389001,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.052c-Cost,0,1 EA,US$_2011,normal,"43588.5,29640.2|3,7",0.333112,,normal,"64020.7,43534.1|3,7",0.290456,,normal,"70895.7,48209.1|3,7",0.28252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.052c-Time,0,1 EA,worker_day,normal,"28.8454,19.6149|3,7",0.41649,0,normal,"42.3666,28.8093|3,7",0.383229,0,normal,"46.9163,31.903|3,7",0.37725,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.053a-Cost,0,1 EA,US$_2011,normal,"45589.5,31000.8|3,7",0.327049,,normal,"53741.6,36544.3|3,7",0.307273,,normal,"55616.6,37819.3|3,7",0.30371,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.053a-Time,0,1 EA,worker_day,normal,"30.1695,20.5153|3,7",0.411656,0,normal,"35.5643,24.1837|3,7",0.396127,0,normal,"36.8051,25.0275|3,7",0.39337,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.053b-Cost,0,1 EA,US$_2011,normal,"45589.5,31000.8|3,7",0.327049,,normal,"69322.1,47139|3,7",0.284467,,normal,"73697.1,50114|3,7",0.280035,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.053b-Time,0,1 EA,worker_day,normal,"30.1695,20.5153|3,7",0.411656,0,normal,"45.8749,31.1949|3,7",0.37871,0,normal,"48.7701,33.1637|3,7",0.375393,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.053c-Cost,0,1 EA,US$_2011,normal,"45589.5,31000.8|3,7",0.327049,,normal,"88328.9,60063.7|3,7",0.269326,,normal,"95203.9,64738.7|3,7",0.265331,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.053c-Time,0,1 EA,worker_day,normal,"30.1695,20.5153|3,7",0.411656,0,normal,"58.453,39.748|3,7",0.367473,0,normal,"63.0026,42.8418|3,7",0.364555,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.061a-Cost,0,1 EA,US$_2011,normal,"45098.1,30666.7|3,7",0.327833,,normal,"50591.1,34401.9|3,7",0.313177,,normal,"52716.1,35846.9|3,7",0.308201,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.061a-Time,0,1 EA,worker_day,normal,"29.8444,20.2942|3,7",0.412279,0,normal,"33.4794,22.766|3,7",0.400724,0,normal,"34.8856,23.7222|3,7",0.396847,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.061b-Cost,0,1 EA,US$_2011,normal,"45098.1,30666.7|3,7",0.327833,,normal,"62283.3,42352.6|3,7",0.294038,,normal,"66658.3,45327.6|3,7",0.288337,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.061b-Time,0,1 EA,worker_day,normal,"29.8444,20.2942|3,7",0.412279,0,normal,"41.2169,28.0275|3,7",0.385951,0,normal,"44.1121,29.9962|3,7",0.381626,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.061c-Cost,0,1 EA,US$_2011,normal,"45098.1,30666.7|3,7",0.327833,,normal,"76226.7,51834.2|3,7",0.278573,,normal,"82476.7,56084.2|3,7",0.273522,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.061c-Time,0,1 EA,worker_day,normal,"29.8444,20.2942|3,7",0.412279,0,normal,"50.4441,34.302|3,7",0.374303,0,normal,"54.5801,37.1145|3,7",0.370559,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.062a-Cost,0,1 EA,US$_2011,normal,"44151,30022.7|3,7",0.330314,,normal,"48852.1,33219.4|3,7",0.317524,,normal,"49914.6,33941.9|3,7",0.316182,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.062a-Time,0,1 EA,worker_day,normal,"29.2175,19.8679|3,7",0.414255,0,normal,"32.3286,21.9835|3,7",0.404131,0,normal,"33.0317,22.4616|3,7",0.403077,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.062b-Cost,0,1 EA,US$_2011,normal,"44151,30022.7|3,7",0.330314,,normal,"55767.3,37921.8|3,7",0.303621,,normal,"60142.3,40896.8|3,7",0.296366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.062b-Time,0,1 EA,worker_day,normal,"29.2175,19.8679|3,7",0.414255,0,normal,"36.9049,25.0953|3,7",0.393301,0,normal,"39.8,27.064|3,7",0.387728,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.062c-Cost,0,1 EA,US$_2011,normal,"44151,30022.7|3,7",0.330314,,normal,"64770.7,44044.1|3,7",0.28904,,normal,"71645.7,48719.1|3,7",0.281345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.062c-Time,0,1 EA,worker_day,normal,"29.2175,19.8679|3,7",0.414255,0,normal,"42.863,29.1468|3,7",0.382157,0,normal,"47.4126,32.2406|3,7",0.376371,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.063a-Cost,0,1 EA,US$_2011,normal,"46152,31383.3|3,7",0.324498,,normal,"54679.1,37181.8|3,7",0.305828,,normal,"56554.1,38456.8|3,7",0.302399,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.063a-Time,0,1 EA,worker_day,normal,"30.5417,20.7684|3,7",0.409633,0,normal,"36.1847,24.6056|3,7",0.395007,0,normal,"37.4255,25.4493|3,7",0.392358,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.063b-Cost,0,1 EA,US$_2011,normal,"46152,31383.3|3,7",0.324498,,normal,"71197.1,48414|3,7",0.282495,,normal,"75572.1,51389|3,7",0.278312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.063b-Time,0,1 EA,worker_day,normal,"30.5417,20.7684|3,7",0.409633,0,normal,"47.1157,32.0387|3,7",0.377231,0,normal,"50.0109,34.0074|3,7",0.374109,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.063c-Cost,0,1 EA,US$_2011,normal,"46152,31383.3|3,7",0.324498,,normal,"90203.9,61338.7|3,7",0.268169,,normal,"97078.9,66013.7|3,7",0.26435,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.063c-Time,0,1 EA,worker_day,normal,"30.5417,20.7684|3,7",0.409633,0,normal,"59.6938,40.5917|3,7",0.366626,0,normal,"64.2434,43.6855|3,7",0.363842,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.071a-Cost,0,1 EA,US$_2011,normal,"50591.1,34401.9|3,7",0.313178,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.071a-Time,0,1 EA,worker_day,normal,"33.4794,22.766|3,7",0.400725,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.071b-Cost,0,1 EA,US$_2011,normal,"62283.3,42352.6|3,7",0.29403,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.071b-Time,0,1 EA,worker_day,normal,"41.2169,28.0275|3,7",0.385945,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.071c-Cost,0,1 EA,US$_2011,normal,"76226.7,51834.2|3,7",0.278584,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.071c-Time,0,1 EA,worker_day,normal,"50.4441,34.302|3,7",0.374311,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.072a-Cost,0,1 EA,US$_2011,normal,"48852.1,33219.4|3,7",0.317523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.072a-Time,0,1 EA,worker_day,normal,"32.3286,21.9835|3,7",0.40413,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.072b-Cost,0,1 EA,US$_2011,normal,"55767.3,37921.8|3,7",0.303623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.072b-Time,0,1 EA,worker_day,normal,"36.9049,25.0953|3,7",0.393303,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.072c-Cost,0,1 EA,US$_2011,normal,"64770.7,44044.1|3,7",0.28903,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.072c-Time,0,1 EA,worker_day,normal,"42.863,29.1468|3,7",0.382149,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.073a-Cost,0,1 EA,US$_2011,normal,"54679.1,37181.8|3,7",0.30583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.073a-Time,0,1 EA,worker_day,normal,"36.1847,24.6056|3,7",0.395009,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.073b-Cost,0,1 EA,US$_2011,normal,"71197.1,48414|3,7",0.282485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.073b-Time,0,1 EA,worker_day,normal,"47.1157,32.0387|3,7",0.377224,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.073c-Cost,0,1 EA,US$_2011,normal,"90203.9,61338.7|3,7",0.268169,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.073c-Time,0,1 EA,worker_day,normal,"59.6938,40.5917|3,7",0.366626,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.101a-Cost,0,1 EA,US$_2011,normal,"57603.8,35448.5|5,20",0.305216,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.101a-Time,0,1 EA,worker_day,normal,"38.1202,23.4586|5,20",0.394534,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.101b-Cost,0,1 EA,US$_2011,normal,"75505.8,46465.1|5,20",0.281572,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.101b-Time,0,1 EA,worker_day,normal,"49.9671,30.749|5,20",0.376541,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.101c-Cost,0,1 EA,US$_2011,normal,"97802,60185.9|5,20",0.265261,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.101c-Time,0,1 EA,worker_day,normal,"64.7219,39.8289|5,20",0.364504,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.111a-Cost,0,1 EA,US$_2011,normal,"53992.7,33226.2|5,20",0.311826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.111a-Time,0,1 EA,worker_day,normal,"35.7304,21.9879|5,20",0.39967,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.111b-Cost,0,1 EA,US$_2011,normal,"65931.5,40573.2|5,20",0.291269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.111b-Time,0,1 EA,worker_day,normal,"43.6311,26.8499|5,20",0.383846,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.111c-Cost,0,1 EA,US$_2011,normal,"80367.6,49457|5,20",0.27756,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1033.111c-Time,0,1 EA,worker_day,normal,"53.1844,32.7289|5,20",0.37355,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.001-Cost,0,1 EA,US$_2011,normal,"21750,14790|3,7",0.352847,,normal,"36625,24905|3,7",0.305402,,normal,"36625,24905|3,7",0.305402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.001-Time,0,1 EA,worker_day,normal,"12.7941,8.70001|3,7",0.432436,0,normal,"21.5441,14.65|3,7",0.394677,0,normal,"21.5441,14.65|3,7",0.394677,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.002-Cost,0,1 EA,US$_2011,normal,"23000,15640|3,7",0.332125,,normal,"40500,27540|3,7",0.284048,,normal,"40500,27540|3,7",0.284048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.002-Time,0,1 EA,worker_day,normal,"13.5294,9.19997|3,7",0.415701,0,normal,"23.8235,16.2|3,7",0.378396,0,normal,"23.8235,16.2|3,7",0.378396,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.011-Cost,0,1 EA,US$_2011,normal,"37500,25500|3,7",0.327493,,normal,"65375,44455|3,7",0.276427,,normal,"65375,44455|3,7",0.276427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.011-Time,0,1 EA,worker_day,normal,"22.0589,15|3,7",0.412009,0,normal,"38.4559,26.15|3,7",0.372709,0,normal,"38.4559,26.15|3,7",0.372709,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.012-Cost,0,1 EA,US$_2011,normal,"40000,27200|3,7",0.309583,,normal,"73125,49725|3,7",0.247929,,normal,"73125,49725|3,7",0.247929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.012-Time,0,1 EA,worker_day,normal,"23.5294,16|3,7",0.397922,0,normal,"43.0147,29.25|3,7",0.352092,0,normal,"43.0147,29.25|3,7",0.352092,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.021-Cost,0,1 EA,US$_2011,normal,"20880,13920|3,7",0.352847,,normal,"35160,23440|3,7",0.305402,,normal,"35160,23440|3,7",0.305402,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.021-Time,0,1 EA,worker_day,normal,"12.2824,8.18824|3,7",0.432436,0,normal,"20.6824,13.7882|3,7",0.394677,0,normal,"20.6824,13.7882|3,7",0.394677,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.022-Cost,0,1 EA,US$_2011,normal,"22080,14720|3,7",0.332125,,normal,"38880,25920|3,7",0.284048,,normal,"38880,25920|3,7",0.284048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.022-Time,0,1 EA,worker_day,normal,"12.9882,8.65879|3,7",0.415701,0,normal,"22.8706,15.247|3,7",0.378396,0,normal,"22.8706,15.247|3,7",0.378396,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.031-Cost,0,1 EA,US$_2011,normal,"42000,28000|3,7",0.34395,,normal,"62760,41840|3,7",0.276427,,normal,"62760,41840|3,7",0.276427,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.031-Time,0,1 EA,worker_day,normal,"24.7058,16.4706|3,7",0.425207,0,normal,"36.9176,24.6118|3,7",0.372709,0,normal,"36.9176,24.6118|3,7",0.372709,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.032-Cost,0,1 EA,US$_2011,normal,"42000,28000|3,7",0.34395,,normal,"70200,46800|3,7",0.247929,,normal,"70200,46800|3,7",0.247929,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.032-Time,0,1 EA,worker_day,normal,"24.7058,16.4706|3,7",0.425207,0,normal,"41.2942,27.5294|3,7",0.352092,0,normal,"41.2942,27.5294|3,7",0.352092,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.041-Cost,0,1 EA,US$_2011,normal,"14472,9648|5,30",0.351723,,normal,"16272,10848|5,30",0.351649,,lognormal,"17472,11648|5,30",0.319913,,lognormal,"21120,14080|5,30",0.368788,,lognormal,"17472,11648|5,30",0.336067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.041-Time,0,1 EA,worker_day,normal,"8.51292,5.67528|5,30",0.431519,0,normal,"9.57179,6.38121|5,30",0.431459,0,lognormal,"11.7482,8.32236|5,30",0.40601,0,lognormal,"12.4235,8.28231|5,30",0.445539,0,lognormal,"10.2776,6.85176|5,30",0.418857,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.042-Cost,0,1 EA,US$_2011,normal,"15072,10048|5,30",0.358049,,normal,"17472,11648|5,30",0.362532,,normal,"17472,11648|5,30",0.371426,,lognormal,"21120,14080|5,30",0.368788,,lognormal,"17472,11648|5,30",0.336067,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.042-Time,0,1 EA,worker_day,normal,"8.86585,5.91055|5,30",0.436691,0,normal,"10.2776,6.85176|5,30",0.440375,0,normal,"11.7482,8.32236|5,30",0.447724,0,lognormal,"12.4235,8.28231|5,30",0.445539,0,lognormal,"10.2776,6.85176|5,30",0.418857,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.051-Cost,0,1 EA,US$_2011,normal,"21096,14064|5,30",0.358451,,normal,"22896,15264|5,30",0.357782,,normal,"22656,15104|5,30",0.304058,,normal,"28944,19296|5,30",0.317951,,normal,"22656,15104|5,30",0.326419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.051-Time,0,1 EA,worker_day,normal,"12.4094,8.27296|5,30",0.437021,0,normal,"13.4682,8.97879|5,30",0.436472,0,normal,"16.68,12.2376|5,30",0.393638,0,normal,"17.0258,11.3506|5,30",0.404466,0,normal,"13.3271,8.88472|5,30",0.411156,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.052-Cost,0,1 EA,US$_2011,normal,"21096,14064|5,30",0.358451,,normal,"22896,15264|5,30",0.357782,,normal,"28704,19136|5,30",0.349046,,normal,"28944,19296|5,30",0.34141,,normal,"28704,19136|5,30",0.330592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.052-Time,0,1 EA,worker_day,normal,"12.4094,8.27296|5,30",0.437021,0,normal,"13.4682,8.97879|5,30",0.436472,0,normal,"15.8023,10.1741|5,30",0.42934,0,normal,"17.0258,11.3506|5,30",0.423156,0,normal,"16.8847,11.2565|5,30",0.414477,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.061a-Cost,0,1 EA,US$_2011,normal,"99120,66080|2,5",0.308013,,normal,"106320,70880|2,5",0.279598,,normal,"135960,90640|2,5",0.217376,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.061a-Time,0,1 EA,worker_day,normal,"65.5942,43.7294|2,5",0.396702,0,normal,"70.3589,46.9059|2,5",0.375067,0,normal,"89.9735,59.9823|2,5",0.331289,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.061b-Cost,0,1 EA,US$_2011,normal,"99120,66080|2,5",0.308013,,normal,"109920,73280|2,5",0.269528,,normal,"150360,100240|2,5",0.194908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.061b-Time,0,1 EA,worker_day,normal,"65.5942,43.7294|2,5",0.396702,0,normal,"72.7411,48.4941|2,5",0.367621,0,normal,"99.5029,66.3353|2,5",0.317,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.062a-Cost,0,1 EA,US$_2011,normal,"99120,66080|2,5",0.308013,,normal,"106320,70880|2,5",0.279598,,normal,"150720,100480|2,5",0.206629,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.062a-Time,0,1 EA,worker_day,normal,"65.5942,43.7294|2,5",0.396702,0,normal,"70.3589,46.9059|2,5",0.375067,0,normal,"99.7411,66.4941|2,5",0.324339,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.062b-Cost,0,1 EA,US$_2011,normal,"99120,66080|2,5",0.308013,,normal,"109920,73280|2,5",0.269528,,normal,"168720,112480|2,5",0.193996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1035.062b-Time,0,1 EA,worker_day,normal,"65.5942,43.7294|2,5",0.396702,0,normal,"72.7411,48.4941|2,5",0.367621,0,normal,"111.653,74.4353|2,5",0.31644,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.001a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,normal,"38978.4,25985.6|5,20",0.318343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.001a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,normal,"34.3927,22.9285|5,20",0.404775,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.001b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,normal,"38978.4,25985.6|5,20",0.318343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.001b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,normal,"34.3927,22.9285|5,20",0.404775,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.002a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.002a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.002b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.002b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.003a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.003a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.003b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.003b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.011a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,normal,"38978.4,25985.6|5,20",0.318343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.011a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,normal,"34.3927,22.9285|5,20",0.404775,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.011b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,normal,"38978.4,25985.6|5,20",0.318343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.011b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,normal,"34.3927,22.9285|5,20",0.404775,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.012a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.012a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.012b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.012b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.013a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.013a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.013b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.013b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.021a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,normal,"38978.4,25985.6|5,20",0.318343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.021a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,normal,"34.3927,22.9285|5,20",0.404775,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.021b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,normal,"38978.4,25985.6|5,20",0.318343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.021b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,normal,"34.3927,22.9285|5,20",0.404775,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.022a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.022a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.022b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.022b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.023a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.023a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.023b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.023b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.031a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.031a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.031b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.031b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.032a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.032a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.032b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.032b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.033a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.033a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.033b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.033b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.041a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.041a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.041b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.041b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.042a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.042a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.042b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.042b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.043a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.043a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.043b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.043b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.051a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.051a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.051b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.051b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.052a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.052a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.052b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.052b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.053a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.053a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.053b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.053b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.061a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.061a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.061b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.061b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.062a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.062a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.062b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.062b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.063a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.063a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.063b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.063b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.071a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.071a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.071b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.071b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.072a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.072a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.072b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.072b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.073a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.073a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.073b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.073b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.081a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.081a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.081b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.081b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.082a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.082a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.082b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.082b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.083a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.083a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.083b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"41378.4,27585.6|5,20",0.305535,,normal,"49178.4,32785.6|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.083b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"36.5104,24.3402|5,20",0.394781,0,normal,"43.3927,28.9285|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.091a-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.091a-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.091b-Cost,0,1 EA,US$_2011,normal,"25704,17136|5,20",0.390923,,normal,"38978.4,25985.6|5,20",0.318343,,normal,"47978.4,31985.6|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.091b-Time,0,1 EA,worker_day,normal,"22.68,15.12|5,20",0.464027,0,normal,"34.3927,22.9285|5,20",0.404775,0,normal,"42.3338,28.2226|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.092a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.092a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.092b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.092b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.093a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.093a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.093b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.093b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.101a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"40602.5,27609.7|5,20",0.318343,,normal,"49977.5,33984.7|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.101a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"35.8257,24.3615|5,20",0.404775,0,normal,"44.0978,29.9865|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.101b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"40602.5,27609.7|5,20",0.318343,,normal,"49977.5,33984.7|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.101b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"35.8257,24.3615|5,20",0.404775,0,normal,"44.0978,29.9865|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.102a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.102a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.102b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.102b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.103a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.103a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.103b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.103b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.111a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"40602.5,27609.7|5,20",0.318343,,normal,"49977.5,33984.7|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.111a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"35.8257,24.3615|5,20",0.404775,0,normal,"44.0978,29.9865|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.111b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"40602.5,27609.7|5,20",0.318343,,normal,"49977.5,33984.7|5,20",0.302434,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.111b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"35.8257,24.3615|5,20",0.404775,0,normal,"44.0978,29.9865|5,20",0.392385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.112a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.112a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.112b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.112b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.113a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.113a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.113b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"43102.5,29309.7|5,20",0.305535,,normal,"51227.5,34834.7|5,20",0.294804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.113b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"38.0316,25.8615|5,20",0.394781,0,normal,"45.2007,30.7365|5,20",0.386535,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.121a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"50602.5,34409.7|5,20",0.286164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.121a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"44.6493,30.3615|5,20",0.379987,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.121b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"50602.5,34409.7|5,20",0.286164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.121b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"44.6493,30.3615|5,20",0.379987,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.122a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"51852.5,35259.7|5,20",0.279094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.122a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"45.7522,31.1115|5,20",0.374691,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.122b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"51852.5,35259.7|5,20",0.279094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.122b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"45.7522,31.1115|5,20",0.374691,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.123a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"51852.5,35259.7|5,20",0.279094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.123a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"45.7522,31.1115|5,20",0.374691,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.123b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"51852.5,35259.7|5,20",0.279094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.123b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"45.7522,31.1115|5,20",0.374691,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.131a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"50602.5,34409.7|5,20",0.286164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.131a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"44.6493,30.3615|5,20",0.379987,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.131b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"50602.5,34409.7|5,20",0.286164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.131b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"44.6493,30.3615|5,20",0.379987,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.132a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"51852.5,35259.7|5,20",0.279094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.132a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"45.7522,31.1115|5,20",0.374691,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.132b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"51852.5,35259.7|5,20",0.279094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.132b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"45.7522,31.1115|5,20",0.374691,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.133a-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"51852.5,35259.7|5,20",0.279094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.133a-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"45.7522,31.1115|5,20",0.374691,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.133b-Cost,0,1 EA,US$_2011,normal,"26775,18207|5,20",0.390923,,normal,"51852.5,35259.7|5,20",0.279094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1041.133b-Time,0,1 EA,worker_day,normal,"23.625,16.065|5,20",0.464027,0,normal,"45.7522,31.1115|5,20",0.374691,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.001a-Cost,0,1 EA,US$_2011,lognormal,"15487.2,10324.8|5,20",0.438432,,normal,"34128,22752|5,20",0.364601,,normal,"53268,35512|5,20",0.346348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.001a-Time,0,1 EA,worker_day,lognormal,"13.2097,8.80649|5,20",0.5047,0,normal,"29.1091,19.4061|5,20",0.442079,0,normal,"45.4345,30.2897|5,20",0.42715,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.001b-Cost,0,1 EA,US$_2011,lognormal,"12693.6,8462.4|5,20",0.515773,,normal,"33408,22272|5,20",0.367304,,normal,"49884,33256|5,20",0.377442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.001b-Time,0,1 EA,worker_day,lognormal,"10.8269,7.21792|5,20",0.573168,0,normal,"28.4951,18.9967|5,20",0.444311,0,normal,"42.5482,28.3654|5,20",0.452727,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.002a-Cost,0,1 EA,US$_2011,lognormal,"15487.2,10324.8|5,20",0.438432,,normal,"34128,22752|5,20",0.364601,,normal,"53268,35512|5,20",0.346348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.002a-Time,0,1 EA,worker_day,lognormal,"13.2097,8.80649|5,20",0.5047,0,normal,"29.1091,19.4061|5,20",0.442079,0,normal,"45.4345,30.2897|5,20",0.42715,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.002b-Cost,0,1 EA,US$_2011,lognormal,"12693.6,8462.4|5,20",0.515773,,normal,"33408,22272|5,20",0.367304,,normal,"49884,33256|5,20",0.377442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.002b-Time,0,1 EA,worker_day,lognormal,"10.8269,7.21792|5,20",0.573168,0,normal,"28.4951,18.9967|5,20",0.444311,0,normal,"42.5482,28.3654|5,20",0.452727,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.011a-Cost,0,1 EA,US$_2011,lognormal,"15487.2,10324.8|5,20",0.438432,,normal,"35328,23552|5,20",0.351663,,normal,"54468,36312|5,20",0.338326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.011a-Time,0,1 EA,worker_day,lognormal,"13.2097,8.80649|5,20",0.5047,0,normal,"30.1327,20.0885|5,20",0.431471,0,normal,"46.458,30.972|5,20",0.420671,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.011b-Cost,0,1 EA,US$_2011,lognormal,"12693.6,8462.4|5,20",0.515773,,normal,"34608,23072|5,20",0.354176,,normal,"51084,34056|5,20",0.368283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.011b-Time,0,1 EA,worker_day,lognormal,"10.8269,7.21792|5,20",0.573168,0,normal,"29.5186,19.679|5,20",0.433521,0,normal,"43.5716,29.0478|5,20",0.445121,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.012a-Cost,0,1 EA,US$_2011,lognormal,"15487.2,10324.8|5,20",0.438432,,normal,"35328,23552|5,20",0.351663,,normal,"54468,36312|5,20",0.338326,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.012a-Time,0,1 EA,worker_day,lognormal,"13.2097,8.80649|5,20",0.5047,0,normal,"30.1327,20.0885|5,20",0.431471,0,normal,"46.458,30.972|5,20",0.420671,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.012b-Cost,0,1 EA,US$_2011,lognormal,"12693.6,8462.4|5,20",0.515773,,normal,"34608,23072|5,20",0.354176,,normal,"51084,34056|5,20",0.368283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.012b-Time,0,1 EA,worker_day,lognormal,"10.8269,7.21792|5,20",0.573168,0,normal,"29.5186,19.679|5,20",0.433521,0,normal,"43.5716,29.0478|5,20",0.445121,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.021a-Cost,0,1 EA,US$_2011,lognormal,"15487.2,10324.8|5,20",0.438432,,normal,"35328,23552|5,20",0.351663,,normal,"55668,37112|5,20",0.335724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.021a-Time,0,1 EA,worker_day,lognormal,"13.2097,8.80649|5,20",0.5047,0,normal,"30.1327,20.0885|5,20",0.431471,0,normal,"47.4815,31.6543|5,20",0.418582,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.021b-Cost,0,1 EA,US$_2011,lognormal,"12693.6,8462.4|5,20",0.515773,,normal,"34608,23072|5,20",0.354176,,normal,"52284,34856|5,20",0.365327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.021b-Time,0,1 EA,worker_day,lognormal,"10.8269,7.21792|5,20",0.573168,0,normal,"29.5186,19.679|5,20",0.433521,0,normal,"44.5951,29.7301|5,20",0.442678,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.022a-Cost,0,1 EA,US$_2011,lognormal,"15487.2,10324.8|5,20",0.438432,,normal,"35328,23552|5,20",0.351663,,normal,"55668,37112|5,20",0.335724,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.022a-Time,0,1 EA,worker_day,lognormal,"13.2097,8.80649|5,20",0.5047,0,normal,"30.1327,20.0885|5,20",0.431471,0,normal,"47.4815,31.6543|5,20",0.418582,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.022b-Cost,0,1 EA,US$_2011,lognormal,"12693.6,8462.4|5,20",0.515773,,normal,"34608,23072|5,20",0.354176,,normal,"52284,34856|5,20",0.365327,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1042.022b-Time,0,1 EA,worker_day,lognormal,"10.8269,7.21792|5,20",0.573168,0,normal,"29.5186,19.679|5,20",0.433521,0,normal,"44.5951,29.7301|5,20",0.442678,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.001-Cost,0,144 SF,US$_2011,lognormal,"6480,4406.4|3,7",0.180176,,lognormal,"15289.9,10397.1|3,7",0.161584,,lognormal,"28644,19477.9|3,7",0.14586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.001-Time,0,144 SF,worker_day,lognormal,"5.05652,3.44033|3,7",0.308161,0,lognormal,"11.9162,8.10274|3,7",0.297673,0,lognormal,"22.3211,15.1769|3,7",0.289439,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.002-Cost,0,400 SF,US$_2011,lognormal,"20500,13940|3,7",0.122224,,lognormal,"46450,31586|3,7",0.119867,,lognormal,"75425,51289|3,7",0.147839,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.002-Time,0,400 SF,worker_day,lognormal,"18.9985,12.9209|3,7",0.278278,0,lognormal,"43.0469,29.2759|3,7",0.277251,0,lognormal,"69.8958,47.5345|3,7",0.290442,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.003-Cost,0,900 SF,US$_2011,lognormal,"42750,29070|3,7",0.117493,,lognormal,"98812.3,67192.4|3,7",0.0875152,,lognormal,"148468,100958|3,7",0.154113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.003-Time,0,900 SF,worker_day,lognormal,"40.8428,27.7663|3,7",0.276233,0,lognormal,"94.4906,64.2656|3,7",0.264875,0,lognormal,"141.874,96.4599|3,7",0.293685,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.011-Cost,0,144 SF,US$_2011,lognormal,"7560,5140.8|3,7",0.155325,,lognormal,"19512,13268.2|3,7",0.127977,,lognormal,"36444,24781.9|3,7",0.114911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.011-Time,0,144 SF,worker_day,lognormal,"5.88727,4.00172|3,7",0.294323,0,lognormal,"15.2096,10.3431|3,7",0.280852,0,lognormal,"28.4042,19.3146|3,7",0.275144,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.012-Cost,0,400 SF,US$_2011,lognormal,"23500,15980|3,7",0.106784,,lognormal,"53125,36125|3,7",0.103123,,lognormal,"94650,64362|3,7",0.1105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.012-Time,0,400 SF,worker_day,lognormal,"21.7544,14.7874|3,7",0.271851,0,lognormal,"49.2037,33.4537|3,7",0.270434,0,lognormal,"87.6981,59.6371|3,7",0.273332,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.013-Cost,0,900 SF,US$_2011,lognormal,"49500,33660|3,7",0.101789,,lognormal,"113818,77396.1|3,7",0.0761264,,lognormal,"184275,125307|3,7",0.117951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.013-Time,0,900 SF,worker_day,lognormal,"47.3532,32.2121|3,7",0.269928,0,lognormal,"108.789,73.9744|3,7",0.261334,0,lognormal,"176.169,119.803|3,7",0.276428,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.021-Cost,0,144 SF,US$_2011,lognormal,"10260,6976.8|3,7",0.11551,,lognormal,"23558.4,16019.7|3,7",0.123114,,lognormal,"46080,31334.4|3,7",0.092464,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.021-Time,0,144 SF,worker_day,lognormal,"7.99295,5.43399|3,7",0.275395,0,lognormal,"18.3603,12.4846|3,7",0.27867,0,lognormal,"35.9111,24.4182|3,7",0.266551,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.022-Cost,0,400 SF,US$_2011,lognormal,"31000,21080|3,7",0.0811531,,lognormal,"64375,43775|3,7",0.0853176,,lognormal,"121625,82705|3,7",0.0905952,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.022-Time,0,400 SF,worker_day,lognormal,"28.7041,19.5135|3,7",0.262842,0,lognormal,"59.6483,40.563|3,7",0.264157,0,lognormal,"112.696,76.6382|3,7",0.265909,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.023-Cost,0,900 SF,US$_2011,lognormal,"66375,45135|3,7",0.0762966,,lognormal,"139121,94602.1|3,7",0.0624276,,lognormal,"236121,160563|3,7",0.134605,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.023-Time,0,900 SF,worker_day,lognormal,"63.4493,43.1464|3,7",0.261383,0,lognormal,"132.977,90.422|3,7",0.257677,0,lognormal,"225.681,153.455|3,7",0.283934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.031-Cost,0,144 SF,US$_2011,lognormal,"16825.9,11441.6|3,7",0.136233,,lognormal,"28644,19477.9|3,7",0.177598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.031-Time,0,144 SF,worker_day,lognormal,"13.1205,8.92388|3,7",0.284709,0,lognormal,"22.3211,15.1769|3,7",0.306661,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.032-Cost,0,400 SF,US$_2011,lognormal,"45650,31042|3,7",0.119725,,lognormal,"75425,51289|3,7",0.169126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.032-Time,0,400 SF,worker_day,lognormal,"42.2987,28.7648|3,7",0.27719,0,lognormal,"69.8958,47.5345|3,7",0.301834,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.033-Cost,0,900 SF,US$_2011,lognormal,"97012.3,65968.4|3,7",0.0891151,,lognormal,"148468,100958|3,7",0.15955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.033-Time,0,900 SF,worker_day,lognormal,"92.7065,63.0321|3,7",0.265408,0,lognormal,"141.874,96.4599|3,7",0.296574,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.041-Cost,0,144 SF,US$_2011,lognormal,"19152,13023.4|3,7",0.119987,,lognormal,"36444,24781.9|3,7",0.139323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.041-Time,0,144 SF,worker_day,lognormal,"14.9231,10.1463|3,7",0.277303,0,lognormal,"28.4042,19.3146|3,7",0.286201,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.042-Cost,0,400 SF,US$_2011,lognormal,"52125,35445|3,7",0.105072,,lognormal,"97050,65994|3,7",0.152645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.042-Time,0,400 SF,worker_day,lognormal,"48.2985,32.8449|3,7",0.271183,0,lognormal,"89.9028,61.1303|3,7",0.292917,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.043-Cost,0,900 SF,US$_2011,lognormal,"111568,75866.1|3,7",0.0776416,,normal,"189675,128979|3,7",0.14703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.043-Time,0,900 SF,worker_day,lognormal,"106.649,72.5225|3,7",0.261779,0,normal,"181.341,123.323|3,7",0.290031,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.051-Cost,0,144 SF,US$_2011,lognormal,"19152,13023.4|3,7",0.100138,,lognormal,"37668,25614.2|3,7",0.121645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.051-Time,0,144 SF,worker_day,lognormal,"14.9231,10.1463|3,7",0.26931,0,lognormal,"29.3582,19.9633|3,7",0.278024,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.052-Cost,0,400 SF,US$_2011,lognormal,"62875,42755|3,7",0.0873282,,lognormal,"124025,84337|3,7",0.121778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.052-Time,0,400 SF,worker_day,lognormal,"58.2504,39.6098|3,7",0.264814,0,lognormal,"114.901,78.1313|3,7",0.278082,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.053-Cost,0,900 SF,US$_2011,lognormal,"135746,92307.1|3,7",0.0639628,,normal,"241521,164235|3,7",0.140881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.053-Time,0,900 SF,worker_day,lognormal,"129.721,88.1992|3,7",0.258053,0,normal,"230.853,156.976|3,7",0.286962,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.061-Cost,0,144 SF,US$_2011,lognormal,"16825.9,11441.6|3,7",0.136233,,lognormal,"28644,19477.9|3,7",0.177598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.061-Time,0,144 SF,worker_day,lognormal,"13.1205,8.92388|3,7",0.284709,0,lognormal,"22.3211,15.1769|3,7",0.306661,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.062-Cost,0,400 SF,US$_2011,lognormal,"45650,31042|3,7",0.119725,,lognormal,"75425,51289|3,7",0.169126,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.062-Time,0,400 SF,worker_day,lognormal,"42.2987,28.7648|3,7",0.27719,0,lognormal,"69.8958,47.5345|3,7",0.301834,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.063-Cost,0,900 SF,US$_2011,lognormal,"97012.3,65968.4|3,7",0.0891151,,lognormal,"148468,100958|3,7",0.15955,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.063-Time,0,900 SF,worker_day,lognormal,"92.7065,63.0321|3,7",0.265408,0,lognormal,"141.874,96.4599|3,7",0.296574,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.071-Cost,0,144 SF,US$_2011,lognormal,"19152,13023.4|3,7",0.119987,,lognormal,"37668,25614.2|3,7",0.152467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.071-Time,0,144 SF,worker_day,lognormal,"14.9231,10.1463|3,7",0.277303,0,lognormal,"29.3582,19.9633|3,7",0.292825,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.072-Cost,0,400 SF,US$_2011,lognormal,"52125,35445|3,7",0.105072,,lognormal,"97050,65994|3,7",0.152645,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.072-Time,0,400 SF,worker_day,lognormal,"48.2985,32.8449|3,7",0.271183,0,lognormal,"89.9028,61.1303|3,7",0.292917,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.073-Cost,0,900 SF,US$_2011,lognormal,"111568,75866.1|3,7",0.0776416,,normal,"189675,128979|3,7",0.14703,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.073-Time,0,900 SF,worker_day,lognormal,"106.649,72.5225|3,7",0.261779,0,normal,"181.341,123.323|3,7",0.290031,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.081-Cost,0,144 SF,US$_2011,lognormal,"23018.4,15652.5|3,7",0.100138,,lognormal,"44424,30208.3|3,7",0.14124,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.081-Time,0,144 SF,worker_day,lognormal,"17.945,12.2039|3,7",0.26931,0,lognormal,"34.6305,23.5506|3,7",0.287139,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.082-Cost,0,400 SF,US$_2011,lognormal,"62875,42755|3,7",0.0873282,,lognormal,"124025,84337|3,7",0.121778,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.082-Time,0,400 SF,worker_day,lognormal,"58.2504,39.6098|3,7",0.264814,0,lognormal,"114.901,78.1313|3,7",0.278082,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.083-Cost,0,900 SF,US$_2011,lognormal,"135746,92307.1|3,7",0.0639628,,normal,"241521,164235|3,7",0.13904,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.083-Time,0,900 SF,worker_day,lognormal,"129.721,88.1992|3,7",0.258053,0,normal,"230.853,156.976|3,7",0.286063,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.091-Cost,0,144 SF,US$_2011,lognormal,"7070,4807.6|3,7",0.346591,,lognormal,"26702,18157.4|3,7",0.242391,,lognormal,"50760,34516.8|3,7",0.159633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.091-Time,0,144 SF,worker_day,lognormal,"5.50849,3.74515|3,7",0.427347,0,lognormal,"20.8088,14.149|3,7",0.348214,0,lognormal,"39.5638,26.9036|3,7",0.296619,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.092-Cost,0,144 SF,US$_2011,lognormal,"6570,4467.6|3,7",0.312382,,lognormal,"21402,14553.4|3,7",0.237153,,lognormal,"49027.5,33338.7|3,7",0.1459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.092-Time,0,144 SF,worker_day,lognormal,"5.11375,3.47511|3,7",0.400103,0,lognormal,"16.685,11.3471|3,7",0.344589,0,lognormal,"38.2137,25.9857|3,7",0.289459,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.093-Cost,0,144 SF,US$_2011,lognormal,"6070,4127.6|3,7",0.271513,,lognormal,"14602,9929.36|3,7",0.235678,,lognormal,"47295,32160.6|3,7",0.131084,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.093-Time,0,144 SF,worker_day,lognormal,"4.73341,3.21948|3,7",0.369079,0,lognormal,"11.377,7.73508|3,7",0.343576,0,lognormal,"36.8637,25.0677|3,7",0.282282,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.101-Cost,0,144 SF,US$_2011,lognormal,"10850,7378|3,7",0.283429,,normal,"37480,25486.4|3,7",0.212174,,lognormal,"55710,37882.8|3,7",0.15575,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.101-Time,0,144 SF,worker_day,lognormal,"8.45932,5.75321|3,7",0.377931,0,normal,"29.2137,19.8657|3,7",0.327899,0,lognormal,"43.417,29.5223|3,7",0.294547,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.102-Cost,0,144 SF,US$_2011,lognormal,"10350,7038|3,7",0.257591,,normal,"30525,20757|3,7",0.207659,,lognormal,"53977.5,36704.7|3,7",0.143123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.102-Time,0,144 SF,worker_day,lognormal,"8.06458,5.48317|3,7",0.358961,0,normal,"23.7951,16.1818|3,7",0.324996,0,lognormal,"42.0669,28.6043|3,7",0.28807,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.103-Cost,0,144 SF,US$_2011,lognormal,"9850,6698|3,7",0.228573,,normal,"23570,16027.6|3,7",0.200537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.103-Time,0,144 SF,worker_day,lognormal,"7.68424,5.22754|3,7",0.338741,0,normal,"18.3765,12.4979|3,7",0.320492,0,lognormal,"32.616,32.616|3,7",0.281583,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.111-Cost,0,144 SF,US$_2011,lognormal,"16250,11050|3,7",0.24253,,normal,"54000,36720|3,7",0.192092,,lognormal,"65760,44716.8|3,7",0.149638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.111-Time,0,144 SF,worker_day,lognormal,"12.6707,8.61775|3,7",0.348311,0,normal,"42.0848,28.6166|3,7",0.315277,0,lognormal,"51.2476,34.8463|3,7",0.291361,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.112-Cost,0,144 SF,US$_2011,lognormal,"15750,10710|3,7",0.223733,,normal,"44400,30192|3,7",0.188719,,lognormal,"63990,43513.2|3,7",0.138802,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.112-Time,0,144 SF,worker_day,lognormal,"12.2759,8.34771|3,7",0.335495,0,normal,"34.6124,23.5385|3,7",0.313233,0,lognormal,"49.8773,33.9175|3,7",0.285947,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.113-Cost,0,144 SF,US$_2011,lognormal,"15250,10370|3,7",0.203419,,normal,"34800,23664|3,7",0.183593,,lognormal,"62295,42360.6|3,7",0.127287,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1044.113-Time,0,144 SF,worker_day,lognormal,"11.8812,8.07768|3,7",0.322303,0,normal,"27.1255,18.446|3,7",0.310171,0,lognormal,"48.5475,33.0104|3,7",0.280539,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.001a-Cost,0,1 EA,US$_2011,normal,"45287.5,30795.5|3,7",0.347519,,lognormal,"61925,42109|3,7",0.321283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.001a-Time,0,1 EA,worker_day,normal,"38.6276,26.2668|3,7",0.4281,0,lognormal,"52.8184,35.9165|3,7",0.407091,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.001b-Cost,0,1 EA,US$_2011,normal,"45287.5,30795.5|3,7",0.347519,,normal,"50287.5,34195.5|3,7",0.326558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.001b-Time,0,1 EA,worker_day,normal,"38.6276,26.2668|3,7",0.4281,0,normal,"42.8923,29.1667|3,7",0.411266,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.002a-Cost,0,1 EA,US$_2011,normal,"45287.5,30795.5|3,7",0.347519,,lognormal,"61925,42109|3,7",0.321283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.002a-Time,0,1 EA,worker_day,normal,"38.6276,26.2668|3,7",0.4281,0,lognormal,"52.8184,35.9165|3,7",0.407091,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.002b-Cost,0,1 EA,US$_2011,normal,"45287.5,30795.5|3,7",0.347519,,normal,"50287.5,34195.5|3,7",0.326558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.002b-Time,0,1 EA,worker_day,normal,"38.6276,26.2668|3,7",0.4281,0,normal,"42.8923,29.1667|3,7",0.411266,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.003a-Cost,0,1 EA,US$_2011,normal,"46037.5,31305.5|3,7",0.341739,,lognormal,"61925,42109|3,7",0.321283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.003a-Time,0,1 EA,worker_day,normal,"39.2673,26.7017|3,7",0.423421,0,lognormal,"52.8184,35.9165|3,7",0.407091,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.003b-Cost,0,1 EA,US$_2011,normal,"46037.5,31305.5|3,7",0.341739,,normal,"51037.5,34705.5|3,7",0.321749,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.003b-Time,0,1 EA,worker_day,normal,"39.2673,26.7017|3,7",0.423421,0,normal,"43.532,29.6018|3,7",0.407458,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.011-Cost,0,1 EA,US$_2011,normal,"46787.5,31815.5|3,7",0.336149,,normal,"51787.5,35215.5|3,7",0.317079,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.011-Time,0,1 EA,worker_day,normal,"39.907,27.1368|3,7",0.418922,0,normal,"44.1717,30.0368|3,7",0.403781,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.012-Cost,0,1 EA,US$_2011,normal,"47537.5,32325.5|3,7",0.330738,,normal,"52537.5,35725.5|3,7",0.312544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.012-Time,0,1 EA,worker_day,normal,"40.5467,27.5718|3,7",0.414593,0,normal,"44.8114,30.4717|3,7",0.40023,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.021a-Cost,0,1 EA,US$_2011,normal,"44537.5,30285.5|3,7",0.353497,,lognormal,"61925,42109|3,7",0.321283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.021a-Time,0,1 EA,worker_day,normal,"37.9879,25.8318|3,7",0.432967,0,lognormal,"52.8184,35.9165|3,7",0.407091,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.021b-Cost,0,1 EA,US$_2011,normal,"44537.5,30285.5|3,7",0.353497,,normal,"49537.5,33685.5|3,7",0.331513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.021b-Time,0,1 EA,worker_day,normal,"37.9879,25.8318|3,7",0.432967,0,normal,"42.2526,28.7318|3,7",0.415212,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.022a-Cost,0,1 EA,US$_2011,normal,"45287.5,30795.5|3,7",0.347519,,lognormal,"61925,42109|3,7",0.321283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.022a-Time,0,1 EA,worker_day,normal,"38.6276,26.2668|3,7",0.4281,0,lognormal,"52.8184,35.9165|3,7",0.407091,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.022b-Cost,0,1 EA,US$_2011,normal,"43476,28984|3,7",0.347519,,normal,"48276,32184|3,7",0.326558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.022b-Time,0,1 EA,worker_day,normal,"37.0825,24.7217|3,7",0.4281,0,normal,"41.1766,27.451|3,7",0.411266,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.031-Cost,0,1 EA,US$_2011,normal,"43716,29144|3,7",0.345571,,normal,"48516,32344|3,7",0.324939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.031-Time,0,1 EA,worker_day,normal,"37.2871,24.8581|3,7",0.42652,0,normal,"41.3813,27.5875|3,7",0.409982,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.032-Cost,0,1 EA,US$_2011,normal,"44436,29624|3,7",0.339855,,normal,"49236,32824|3,7",0.320177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.032-Time,0,1 EA,worker_day,normal,"37.9013,25.2675|3,7",0.421902,0,normal,"41.9954,27.997|3,7",0.406218,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.041a-Cost,0,1 EA,US$_2011,normal,"43476,28984|3,7",0.347519,,lognormal,"59448,39632|3,7",0.321283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.041a-Time,0,1 EA,worker_day,normal,"37.0825,24.7217|3,7",0.4281,0,lognormal,"50.7056,33.8038|3,7",0.407091,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.041b-Cost,0,1 EA,US$_2011,normal,"43476,28984|3,7",0.347519,,normal,"48276,32184|3,7",0.326558,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.041b-Time,0,1 EA,worker_day,normal,"37.0825,24.7217|3,7",0.4281,0,normal,"41.1766,27.451|3,7",0.411266,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.042a-Cost,0,1 EA,US$_2011,normal,"44196,29464|3,7",0.341739,,lognormal,"59448,39632|3,7",0.321283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.042a-Time,0,1 EA,worker_day,normal,"37.6966,25.131|3,7",0.423421,0,lognormal,"50.7056,33.8038|3,7",0.407091,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.042b-Cost,0,1 EA,US$_2011,normal,"44196,29464|3,7",0.341739,,normal,"48996,32664|3,7",0.321749,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1049.042b-Time,0,1 EA,worker_day,normal,"37.6966,25.131|3,7",0.423421,0,normal,"41.7907,27.8605|3,7",0.407458,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.001-Cost,0,100 SF,US$_2011,normal,"5040,3360|2,30",0.105001,,normal,"7200,4800|2,30",0.141262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.001-Time,0,100 SF,worker_day,normal,"3.92471,2.61529|2,30",0.271155,0,normal,"5.61529,3.74471|2,30",0.28715,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.002-Cost,0,225 SF,US$_2011,lognormal,"9840,6560|1,14",0.0808026,,normal,"14850,9900|1,14",0.128673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.002-Time,0,225 SF,worker_day,lognormal,"8.39632,5.59868|1,14",0.262734,0,normal,"12.6635,8.44147|1,14",0.28117,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.003-Cost,0,100 SF,US$_2011,lognormal,"720,480|2,30",0.358424,,normal,"5040,3360|2,30",0.105001,,normal,"7200,4800|2,30",0.141262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.003-Time,0,100 SF,worker_day,lognormal,"0.563529,0.376471|2,30",0.436999,0,normal,"3.92471,2.61529|2,30",0.271156,0,normal,"5.61529,3.74471|2,30",0.28715,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.004-Cost,0,225 SF,US$_2011,lognormal,"1620,1080|1,14",0.358423,,lognormal,"9840,6560|1,14",0.0808026,,normal,"14850,9900|1,14",0.128673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.004-Time,0,225 SF,worker_day,lognormal,"1.37779,0.917206|1,14",0.436998,0,lognormal,"8.39632,5.59868|1,14",0.262734,0,normal,"12.6635,8.44147|1,14",0.28117,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.011-Cost,0,100 SF,US$_2011,normal,"5220,3480|2,30",0.10139,,normal,"9160,6106.67|2,30",0.139601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.011-Time,0,100 SF,worker_day,normal,"4.06809,2.71191|2,30",0.269778,0,normal,"7.1399,4.7601|2,30",0.286336,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.012-Cost,0,225 SF,US$_2011,lognormal,"10245,6830|1,14",0.0776118,,normal,"18960,12640|1,14",0.12595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.012-Time,0,225 SF,worker_day,lognormal,"8.7464,5.8336|1,14",0.26177,0,normal,"16.1728,10.7822|1,14",0.279935,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.013-Cost,0,100 SF,US$_2011,lognormal,"720,480|2,30",0.358424,,normal,"5220,3480|2,30",0.10139,,normal,"9160,6106.67|2,30",0.139601,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.013-Time,0,100 SF,worker_day,lognormal,"0.563529,0.376471|2,30",0.436999,0,normal,"4.06809,2.71191|2,30",0.269778,0,normal,"7.1399,4.7601|2,30",0.286336,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.014-Cost,0,225 SF,US$_2011,lognormal,"1620,1080|1,14",0.358423,,lognormal,"10245,6830|1,14",0.0776118,,normal,"18960,12640|1,14",0.12595,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.014-Time,0,225 SF,worker_day,lognormal,"1.37779,0.917206|1,14",0.436998,0,lognormal,"8.7464,5.8336|1,14",0.26177,0,normal,"16.1728,10.7822|1,14",0.279935,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.021-Cost,0,100 SF,US$_2011,normal,"5850,3150|2,30",0.0980183,,normal,"10160,6350|2,30",0.125234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.021-Time,0,100 SF,worker_day,normal,"4.56221,2.45779|2,30",0.268529,0,normal,"7.9198,4.95025|2,30",0.279613,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.022-Cost,0,225 SF,US$_2011,lognormal,"11212.5,6037.5|1,14",0.0768252,,normal,"20910,13068.7|1,14",0.113481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.022-Time,0,225 SF,worker_day,lognormal,"9.56449,5.15051|1,14",0.261538,0,normal,"17.845,11.1569|1,14",0.27455,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.023-Cost,0,100 SF,US$_2011,lognormal,"780,420|2,30",0.358424,,normal,"5400,3375|2,30",0.098018,,normal,"10160,6350|2,30",0.125234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.023-Time,0,100 SF,worker_day,lognormal,"0.610294,0.329706|2,30",0.436999,0,normal,"4.21147,2.63316|2,30",0.268528,0,normal,"7.9198,4.95025|2,30",0.279613,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.024-Cost,0,225 SF,US$_2011,lognormal,"1755,945|1,14",0.358423,,lognormal,"10350,6468.75|1,14",0.0768252,,normal,"20910,13068.7|1,14",0.113481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1051.024-Time,0,225 SF,worker_day,lognormal,"1.49294,0.802059|1,14",0.436998,0,lognormal,"8.82882,5.51835|1,14",0.261538,0,normal,"17.845,11.1569|1,14",0.27455,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.001-Cost,0,100 SF,US$_2011,normal,"5135,2765|2,30",0.111628,,normal,"9400,5875|2,30",0.128101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.001-Time,0,100 SF,worker_day,normal,"4.0036,2.1564|2,30",0.27379,0,normal,"7.33108,4.58365|2,30",0.280909,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.002-Cost,0,225 SF,US$_2011,lognormal,"9928.75,5346.25|1,14",0.0867475,,normal,"19500,12187.5|1,14",0.122229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.002-Time,0,225 SF,worker_day,lognormal,"8.4793,4.5707|1,14",0.264623,0,normal,"16.6321,10.3949|1,14",0.27828,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.003-Cost,0,100 SF,US$_2011,lognormal,"900,480|2,30",0.358424,,normal,"5925,3357.5|2,30",0.111628,,normal,"11750,6658.33|2,30",0.128101,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.003-Time,0,100 SF,worker_day,lognormal,"0.703824,0.376471|2,30",0.436999,0,normal,"4.61934,2.6182|2,30",0.27379,0,normal,"9.1627,5.19419|2,30",0.280909,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.004-Cost,0,225 SF,US$_2011,lognormal,"2025,1080|1,14",0.358423,,lognormal,"11456.2,6491.87|1,14",0.0867475,,normal,"24375,13812.5|1,14",0.122229,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.004-Time,0,225 SF,worker_day,lognormal,"1.72324,0.917206|1,14",0.436998,0,lognormal,"9.78217,5.54785|1,14",0.264623,0,normal,"20.7901,11.781|1,14",0.27828,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.011-Cost,0,100 SF,US$_2011,normal,"6150,3280|2,30",0.107555,,normal,"13150,7451.67|2,30",0.11377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.011-Time,0,100 SF,worker_day,normal,"4.79779,2.56088|2,30",0.272154,0,normal,"10.2464,5.80507|2,30",0.27467,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.012-Cost,0,225 SF,US$_2011,lognormal,"11962.5,6380|1,14",0.0830801,,normal,"27150,15385|1,14",0.108987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.012-Time,0,225 SF,worker_day,lognormal,"10.1961,5.43456|1,14",0.263443,0,normal,"23.1541,13.1193|1,14",0.272724,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.013-Cost,0,100 SF,US$_2011,lognormal,"900,480|2,30",0.358424,,normal,"6150,3485|2,30",0.107555,,normal,"13150,7451.67|2,30",0.11377,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.013-Time,0,100 SF,worker_day,lognormal,"0.703824,0.376471|2,30",0.436999,0,normal,"4.79779,2.72066|2,30",0.272155,0,normal,"10.2464,5.80507|2,30",0.27467,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.014-Cost,0,225 SF,US$_2011,lognormal,"2025,1080|1,14",0.358423,,lognormal,"11962.5,6778.75|1,14",0.0830801,,normal,"27150,15385|1,14",0.108987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1052.014-Time,0,225 SF,worker_day,lognormal,"1.72324,0.917206|1,14",0.436998,0,lognormal,"10.1961,5.77467|1,14",0.263443,0,normal,"23.1541,13.1193|1,14",0.272724,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.001a-Cost,0,100 SF,US$_2011,lognormal,"4575,2440|2,30",0.316965,,lognormal,"5250,2975|2,30",0.397444,,normal,"6750,3825|2,30",0.109784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.001a-Time,0,100 SF,worker_day,lognormal,"4.44015,2.36794|2,30",0.403692,0,lognormal,"5.09853,2.89044|2,30",0.469533,0,normal,"6.55382,3.71485|2,30",0.273043,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.001b-Cost,0,100 SF,US$_2011,lognormal,"3287.5,1753.33|2,30",0.211047,,lognormal,"5737.5,3251.25|2,30",0.250964,,normal,"8062.5,4568.75|2,30",0.100446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.001b-Time,0,100 SF,worker_day,lognormal,"3.1936,1.70456|2,30",0.327171,0,lognormal,"5.56625,3.15312|2,30",0.354236,0,normal,"7.82846,4.43746|2,30",0.269424,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.011a-Cost,0,100 SF,US$_2011,lognormal,"4051.67,2493.33|2,6",0.240371,,normal,"4530,3208.75|2,6",0.0973208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.011a-Time,0,100 SF,worker_day,lognormal,"3.9375,2.425|2,6",0.346812,0,normal,"4.39279,3.1104|2,6",0.268275,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.011b-Cost,0,100 SF,US$_2011,lognormal,"3997.5,2460|3,8",0.199015,,lognormal,"5900,4179.17|3,8",0.131152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.011b-Time,0,100 SF,worker_day,lognormal,"3.87537,2.38309|3,8",0.319542,0,lognormal,"5.72441,4.05419|3,8",0.282313,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.021a-Cost,0,100 SF,US$_2011,lognormal,"3965,2440|4,11",0.316965,,normal,"4980,3527.5|4,11",0.338573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.021a-Time,0,100 SF,worker_day,lognormal,"3.84809,2.36794|4,11",0.403692,0,normal,"4.83559,3.42581|4,11",0.42087,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.021b-Cost,0,100 SF,US$_2011,lognormal,"3000.83,1846.67|2,6",0.280263,,lognormal,"5730,4058.75|2,6",0.169816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1061.021b-Time,0,100 SF,worker_day,lognormal,"2.91213,1.79191|2,6",0.375563,0,lognormal,"5.55691,3.93482|2,6",0.302221,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.001-Cost,0,100 SF,US$_2011,lognormal,"2134.17,1313.33|3,8",0.188729,,lognormal,"2570,1820.42|3,8",0.215847,,lognormal,"6450,4568.75|3,8",0.079218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.001-Time,0,100 SF,worker_day,lognormal,"2.06801,1.27132|3,8",0.313239,0,lognormal,"2.49574,1.7682|3,8",0.330288,0,lognormal,"6.26338,4.43746|3,8",0.262251,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.002-Cost,0,100 SF,US$_2011,lognormal,"2134.17,1313.33|3,8",0.188729,,lognormal,"2570,1820.42|3,8",0.215847,,lognormal,"6450,4568.75|3,8",0.079218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.002-Time,0,100 SF,worker_day,lognormal,"2.06801,1.27132|3,8",0.313239,0,lognormal,"2.49574,1.7682|3,8",0.330288,0,lognormal,"6.26338,4.43746|3,8",0.262251,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.011-Cost,0,100 SF,US$_2011,lognormal,"2990,1840|2,6",0.256634,,lognormal,"3300,2337.5|2,6",0.369072,,normal,"5400,3825|2,6",0.109784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.011-Time,0,100 SF,worker_day,lognormal,"2.89971,1.78353|2,6",0.358275,0,lognormal,"3.20382,2.26963|2,6",0.445773,0,normal,"5.24353,3.71485|2,6",0.273043,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.012-Cost,0,100 SF,US$_2011,lognormal,"2990,1840|2,6",0.256634,,lognormal,"3300,2337.5|2,6",0.369072,,normal,"5400,3825|2,6",0.109784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.012-Time,0,100 SF,worker_day,lognormal,"2.89971,1.78353|2,6",0.358275,0,lognormal,"3.20382,2.26963|2,6",0.445773,0,normal,"5.24353,3.71485|2,6",0.273043,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.031-Cost,0,100 SF,US$_2011,normal,"6164.17,3793.33|4,11",0.105341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.031-Time,0,100 SF,worker_day,normal,"5.98066,3.67956|4,11",0.271287,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.041-Cost,0,100 LF,US$_2011,normal,"4340,1302|1,10",0.458612,,normal,"11100,3330|1,10",0.485919,,lognormal,"37600,11280|1,10",0.0968779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B1071.041-Time,0,100 LF,worker_day,normal,"3.38132,1.01347|1,10",0.522326,0,normal,"8.61574,2.55971|1,10",0.546459,0,lognormal,"29.3429,8.82882|1,10",0.268114,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.001a-Cost,0,100 SF,US$_2011,lognormal,"3965,2440|6,30",0.316965,,lognormal,"4200,2975|6,30",0.397444,,normal,"5400,3825|6,30",0.109784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.001a-Time,0,100 SF,worker_day,lognormal,"3.09316,1.90456|6,30",0.403692,0,lognormal,"3.27559,2.32081|6,30",0.469533,0,normal,"4.21147,2.9839|6,30",0.273043,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.001b-Cost,0,100 SF,US$_2011,lognormal,"2849.17,1753.33|6,30",0.211047,,lognormal,"4590,3251.25|6,30",0.250964,,normal,"6450,4568.75|6,30",0.100446,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.001b-Time,0,100 SF,worker_day,lognormal,"2.22246,1.36836|6,30",0.327171,0,lognormal,"3.57625,2.53281|6,30",0.354236,0,normal,"5.02787,3.5616|6,30",0.269424,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.011a-Cost,0,100 SF,US$_2011,lognormal,"4051.67,2493.33|2,6",0.240371,,normal,"4530,3208.75|2,6",0.0973208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.011a-Time,0,100 SF,worker_day,lognormal,"3.15875,1.94417|2,6",0.346812,0,normal,"3.52846,2.49866|2,6",0.268275,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.011b-Cost,0,100 SF,US$_2011,lognormal,"3997.5,2460|3,8",0.199015,,lognormal,"5900,4179.17|3,8",0.131152,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.011b-Time,0,100 SF,worker_day,lognormal,"3.11901,1.92066|3,8",0.319542,0,lognormal,"4.59642,3.25518|3,8",0.282313,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.021a-Cost,0,100 SF,US$_2011,lognormal,"3965,2440|4,11",0.316965,,normal,"4980,3527.5|4,11",0.338573,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.021a-Time,0,100 SF,worker_day,lognormal,"3.09316,1.90456|4,11",0.403692,0,normal,"3.87691,2.74482|4,11",0.42087,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.021b-Cost,0,100 SF,US$_2011,lognormal,"3000.83,1846.67|2,6",0.280263,,lognormal,"5730,4058.75|2,6",0.169816,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.021b-Time,0,100 SF,worker_day,lognormal,"2.33974,1.44017|2,6",0.375563,0,lognormal,"4.46434,3.16175|2,6",0.302221,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.101-Cost,0,100 SF,US$_2011,lognormal,"2990,1840|3,8",0.256634,,lognormal,"3300,2337.5|3,8",0.369072,,normal,"5400,3825|3,8",0.109784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.101-Time,0,100 SF,worker_day,lognormal,"2.32779,1.43147|3,8",0.358275,0,lognormal,"2.56868,1.81849|3,8",0.445773,0,normal,"4.21147,2.9839|3,8",0.273043,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.102-Cost,0,100 SF,US$_2011,lognormal,"2134.17,1313.33|4,11",0.188729,,lognormal,"2570,1820.42|4,11",0.215847,,lognormal,"5760,4080|4,11",0.115046,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.102-Time,0,100 SF,worker_day,lognormal,"1.66386,1.02409|4,11",0.313239,0,lognormal,"2.00385,1.41961|4,11",0.330288,0,lognormal,"4.48824,3.17882|4,11",0.275201,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.111-Cost,0,100 SF,US$_2011,lognormal,"2990,1840|2,6",0.256634,,lognormal,"3300,2337.5|2,6",0.369072,,normal,"5400,3825|2,6",0.109784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.111-Time,0,100 SF,worker_day,lognormal,"2.32779,1.43147|2,6",0.358275,0,lognormal,"2.56868,1.81849|2,6",0.445773,0,normal,"4.21147,2.9839|2,6",0.273043,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.121-Cost,0,100 SF,US$_2011,lognormal,"2134.17,1313.33|3,8",0.188729,,lognormal,"2570,1820.42|3,8",0.215847,,lognormal,"6450,4568.75|3,8",0.079218,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.121-Time,0,100 SF,worker_day,lognormal,"1.66386,1.02409|3,8",0.313239,0,lognormal,"2.00385,1.41961|3,8",0.330288,0,lognormal,"5.02787,3.5616|3,8",0.262251,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.131-Cost,0,100 SF,US$_2011,normal,"6164.17,3793.33|4,11",0.105341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.131-Time,0,100 SF,worker_day,normal,"4.80871,2.96086|4,11",0.271287,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.201a-Cost,0,30 LF,US$_2011,normal,"16472.3,10136.8|2,8",0.194633,,normal,"82361.5,50684|2,8",0.194632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.201a-Time,0,30 LF,worker_day,normal,"2.42321,1.49152|2,8",0.316831,0,normal,"12.1161,7.45762|2,8",0.316831,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.201b-Cost,0,30 LF,US$_2011,normal,"82361.5,50684|2,8",0.194633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2011.201b-Time,0,30 LF,worker_day,normal,"12.1161,7.45762|2,8",0.316831,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.001-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.001-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.002-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.002-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.011-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2364,1674.5|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.011-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.04382,0.739632|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.021-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.021-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.022-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.022-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.023-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.023-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.031-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.031-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.032-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.032-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.033-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.033-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.034-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.034-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.035-Cost,0,32 SF,US$_2011,lognormal,"4728,2521.6|13,63",0.118498,,lognormal,"4728,2521.6|13,63",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.035-Time,0,32 SF,worker_day,lognormal,"2.08729,1.11388|13,63",0.276662,0,lognormal,"2.08729,1.11388|13,63",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.036-Cost,0,32 SF,US$_2011,lognormal,"4728,2521.6|13,63",0.118498,,lognormal,"4728,2521.6|13,63",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.036-Time,0,32 SF,worker_day,lognormal,"2.08729,1.11388|13,63",0.276662,0,lognormal,"2.08729,1.11388|13,63",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.037-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.037-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.038-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.038-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.039-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.039-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.040-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.040-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.041-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.041-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.051-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.051-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.052-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.052-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.053-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.053-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.054-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.054-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.061-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.061-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.071-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2364,1674.5|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.071-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.04382,0.739632|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.072-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2364,1674.5|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.072-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.04382,0.739632|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.081-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.081-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.082-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.082-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.083-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2364,1674.5|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.083-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.04382,0.739632|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.084-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2364,1674.5|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.084-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.04382,0.739632|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.091-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2364,1674.5|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.091-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.04382,0.739632|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.101-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2364,1674.5|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.101-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.04382,0.739632|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.201-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2364,1674.5|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2022.201-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.04382,0.739632|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.001-Cost,0,30 SF,US$_2011,lognormal,"924,539|44,434",0.282108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.001-Time,0,30 SF,worker_day,lognormal,"0.683235,0.400147|44,434",0.376942,0,lognormal,"1.02,1.02|44,434",0.300538,0,lognormal,"1.02,1.02|44,434",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.002-Cost,0,30 SF,US$_2011,lognormal,"924,539|44,434",0.282108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.002-Time,0,30 SF,worker_day,lognormal,"0.683235,0.400147|44,434",0.376942,0,lognormal,"1.02,1.02|44,434",0.300538,0,lognormal,"1.02,1.02|44,434",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.011-Cost,0,30 SF,US$_2011,lognormal,"924,539|44,434",0.282108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.011-Time,0,30 SF,worker_day,lognormal,"0.683235,0.400147|44,434",0.376942,0,lognormal,"1.02,1.02|44,434",0.300538,0,lognormal,"1.02,1.02|44,434",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.021-Cost,0,30 SF,US$_2011,lognormal,"924,539|44,434",0.282108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.021-Time,0,30 SF,worker_day,lognormal,"0.683235,0.400147|44,434",0.376942,0,lognormal,"1.02,1.02|44,434",0.300538,0,lognormal,"1.02,1.02|44,434",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.031-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.031-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.032-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.032-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.033-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.033-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.034-Cost,0,30 SF,US$_2011,lognormal,"2055,1096|20,100",0.166803,,lognormal,"2055,1096|20,100",0.166803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.034-Time,0,30 SF,worker_day,lognormal,"0.905206,0.482118|20,100",0.300538,0,lognormal,"0.905206,0.482118|20,100",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.041-Cost,0,30 SF,US$_2011,lognormal,"924,539|44,434",0.282108,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.041-Time,0,30 SF,worker_day,lognormal,"0.683235,0.400147|44,434",0.376942,0,lognormal,"1.02,1.02|44,434",0.300538,0,lognormal,"1.02,1.02|44,434",0.300538,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.051-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.051-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.052-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.052-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.053-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.053-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.054-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.054-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.055-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.055-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.056-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.056-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.057-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.057-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.058-Cost,0,30 SF,US$_2011,lognormal,"2955,1576|20,100",0.118498,,lognormal,"2955,1576|20,100",0.118498,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B2023.058-Time,0,30 SF,worker_day,lognormal,"1.30456,0.696176|20,100",0.276662,0,lognormal,"1.30456,0.696176|20,100",0.276662,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3011.011-Cost,0,100 SF,US$_2011,lognormal,"840,490|13,130",0.576183,,lognormal,"2220,1184|13,130",0.307432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3011.011-Time,0,100 SF,worker_day,lognormal,"0.954412,0.568382|13,130",0.628082,0,lognormal,"2.41618,1.27353|13,130",0.39625,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3011.012-Cost,0,100 SF,US$_2011,lognormal,"1332.5,820|5,50",0.480347,,lognormal,"3000,1600|5,50",0.369231,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3011.012-Time,0,100 SF,worker_day,lognormal,"1.46915,0.903897|5,50",0.54151,0,lognormal,"3.31294,1.76882|5,50",0.445905,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3011.013-Cost,0,100 SF,US$_2011,lognormal,"812.5,500|1,10",0.636668,,lognormal,"1545,824|1,10",0.431094,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3011.013-Time,0,100 SF,worker_day,lognormal,"0.896801,0.552132|1,10",0.683993,0,lognormal,"1.70801,0.912794|1,10",0.498339,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3011.014-Cost,0,100 SF,US$_2011,lognormal,"1235,760|1,10",0.514934,,lognormal,"2325,1240|1,10",0.469111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3011.014-Time,0,100 SF,worker_day,lognormal,"1.36434,0.840441|1,10",0.572413,0,lognormal,"2.56478,1.36809|1,10",0.531568,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.001a-Cost,0,1 EA,US$_2011,lognormal,"9392.5,5780|1,5",0.143317,,lognormal,"10837.5,5780|1,5",0.143317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.001a-Time,0,1 EA,worker_day,lognormal,"10.3594,6.37505|1,5",0.288166,0,lognormal,"11.9532,6.37505|1,5",0.288166,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.001b-Cost,0,1 EA,US$_2011,lognormal,"14560,8960|1,5",0.172146,,lognormal,"16800,8960|1,5",0.172146,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.001b-Time,0,1 EA,worker_day,lognormal,"16.0588,9.88231|1,5",0.303536,0,lognormal,"18.5294,9.88231|1,5",0.303536,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.001c-Cost,0,1 EA,US$_2011,lognormal,"19727.5,12140|1,5",0.185834,,lognormal,"22762.5,12140|1,5",0.185834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.001c-Time,0,1 EA,worker_day,lognormal,"21.7582,13.3897|1,5",0.311503,0,lognormal,"25.1057,13.3897|1,5",0.311503,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.002a-Cost,0,1 EA,US$_2011,normal,"9787.5,5220|1,5",0.220933,,normal,"9787.5,5220|1,5",0.220937,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.002a-Time,0,1 EA,worker_day,normal,"10.795,5.75736|1,5",0.333633,0,normal,"10.795,5.75736|1,5",0.333636,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.002b-Cost,0,1 EA,US$_2011,lognormal,"14700,7840|1,5",0.173322,,lognormal,"14700,7840|1,5",0.173322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.002b-Time,0,1 EA,worker_day,lognormal,"16.2132,8.64704|1,5",0.304205,0,lognormal,"16.2132,8.64704|1,5",0.304205,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.002c-Cost,0,1 EA,US$_2011,normal,"19612.5,10460|1,5",0.164324,,normal,"19612.5,10460|1,5",0.164328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3031.002c-Time,0,1 EA,worker_day,normal,"21.6315,11.5368|1,5",0.29917,0,normal,"21.6315,11.5368|1,5",0.299171,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3041.001-Cost,0,10 LF,US$_2011,normal,"810,432|10,50",0.249194,,normal,"810,432|10,50",0.249184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +B3041.001-Time,0,10 LF,worker_day,normal,"0.786159,0.419276|10,50",0.352984,0,normal,"0.786159,0.419276|10,50",0.352977,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.001a-Cost,0,100 LF,US$_2011,normal,"2677.5,1428|1,10",0.48138,,lognormal,"6825,3640|1,10",0.555913,,lognormal,"10500,7437.5|1,10",0.195861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.001a-Time,0,100 LF,worker_day,normal,"2.12563,1.15175|1,10",0.542427,0,lognormal,"5.28316,2.80074|1,10",0.60954,0,lognormal,"8.12397,5.73702|1,10",0.317587,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.001b-Cost,0,100 LF,US$_2011,normal,"3570,1071|1,10",0.48138,,lognormal,"9100,2730|1,10",0.555913,,lognormal,"17500,5250|1,10",0.195861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.001b-Time,0,100 LF,worker_day,normal,"2.82125,0.8735|1,10",0.542427,0,lognormal,"7.05632,2.09147|1,10",0.60954,0,lognormal,"13.5799,4.03206|1,10",0.317587,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.001c-Cost,0,100 LF,US$_2011,normal,"1428,428.4|1,10",0.48138,,lognormal,"3640,1092|1,10",0.555914,,lognormal,"7000,2100|1,10",0.195861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.001c-Time,0,100 LF,worker_day,normal,"1.0765,0.2974|1,10",0.542427,0,lognormal,"2.84853,0.862588|1,10",0.609541,0,lognormal,"5.45794,1.63882|1,10",0.317587,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.001d-Cost,0,100 LF,US$_2011,normal,"1785,535.5|1,10",0.48138,,lognormal,"4550,1365|1,10",0.555913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.001d-Time,0,100 LF,worker_day,normal,"1.34563,0.37175|1,10",0.542427,0,lognormal,"3.59316,1.11074|1,10",0.60954,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.011a-Cost,0,100 LF,US$_2011,normal,"4340,1302|1,10",0.458612,,normal,"11100,3330|1,10",0.485919,,lognormal,"33900,10170|1,10",0.235145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C1011.011a-Time,0,100 LF,worker_day,normal,"3.38132,1.01347|1,10",0.522326,0,normal,"8.61574,2.55971|1,10",0.546459,0,lognormal,"26.471,7.97559|1,10",0.34321,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.001a-Cost,0,1 EA,US$_2011,normal,"4340,1302|1,10",0.458612,,normal,"11100,3330|1,10",0.485919,,lognormal,"33900,10170|1,10",0.235145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.001a-Time,0,1 EA,worker_day,normal,"3.38132,1.01347|1,10",0.522326,0,normal,"8.61574,2.55971|1,10",0.546459,0,lognormal,"26.471,7.97559|1,10",0.34321,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.001b-Cost,0,1 EA,US$_2011,normal,"4340,1302|1,10",0.458612,,normal,"11100,3330|1,10",0.485919,,lognormal,"37600,11280|1,10",0.0968779,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.001b-Time,0,1 EA,worker_day,normal,"3.38132,1.01347|1,10",0.522326,0,normal,"8.61574,2.55971|1,10",0.546459,0,lognormal,"29.3429,8.82882|1,10",0.268114,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.011a-Cost,0,1 EA,US$_2011,lognormal,"1400,420|5,10",0.801477,,lognormal,"7400,2220|5,10",0.56935,,normal,"45900,13770|5,10",0.361304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.011a-Time,0,1 EA,worker_day,lognormal,"1.54416,0.463276|5,10",0.839562,0,lognormal,"8.16178,2.44855|5,10",0.62182,0,normal,"50.625,15.1875|5,10",0.439364,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.011b-Cost,0,1 EA,US$_2011,lognormal,"1400,420|5,10",0.801477,,lognormal,"7400,2220|5,10",0.56935,,normal,"45900,13770|5,10",0.361304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.011b-Time,0,1 EA,worker_day,lognormal,"1.54416,0.463276|5,10",0.839562,0,lognormal,"8.16178,2.44855|5,10",0.62182,0,normal,"50.625,15.1875|5,10",0.439364,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.021a-Cost,0,1 EA,US$_2011,lognormal,"910,560|3,10",0.801477,,lognormal,"4440,3145|3,10",0.56935,,normal,"29940,21207.5|3,10",0.343211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.021a-Time,0,1 EA,worker_day,lognormal,"1.00372,0.617688|3,10",0.839562,0,lognormal,"4.89708,3.46877|3,10",0.62182,0,normal,"33.0221,23.3906|3,10",0.42461,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.021b-Cost,0,1 EA,US$_2011,lognormal,"840,560|3,10",0.801477,,lognormal,"4440,2960|3,10",0.56935,,normal,"29940,19960|3,10",0.343211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.021b-Time,0,1 EA,worker_day,lognormal,"0.926512,0.617688|3,10",0.839562,0,lognormal,"4.89708,3.26472|3,10",0.62182,0,normal,"33.0221,22.0147|3,10",0.42461,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.021c-Cost,0,1 EA,US$_2011,lognormal,"910,560|3,10",0.801477,,lognormal,"4440,3145|3,10",0.56935,,normal,"29940,21207.5|3,10",0.343211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.021c-Time,0,1 EA,worker_day,lognormal,"1.00372,0.617688|3,10",0.839562,0,lognormal,"4.89708,3.46877|3,10",0.62182,0,normal,"33.0221,23.3906|3,10",0.42461,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.021d-Cost,0,1 EA,US$_2011,lognormal,"840,560|3,10",0.801477,,lognormal,"4440,2960|3,10",0.56935,,normal,"29940,19960|3,10",0.343211,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.021d-Time,0,1 EA,worker_day,lognormal,"0.926512,0.617688|3,10",0.839562,0,lognormal,"4.89708,3.26472|3,10",0.62182,0,normal,"33.0221,22.0147|3,10",0.42461,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.031a-Cost,0,1 EA,US$_2011,lognormal,"480,320|3,10",0.989929,,lognormal,"3240,2160|3,10",0.579764,,normal,"25140,16760|3,10",0.383059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.031a-Time,0,1 EA,worker_day,lognormal,"0.529435,0.352965|3,10",1.02101,0,lognormal,"3.57349,2.38231|3,10",0.631369,0,normal,"27.7279,18.4853|3,10",0.457421,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.031b-Cost,0,1 EA,US$_2011,lognormal,"480,320|3,10",0.989929,,lognormal,"3240,2160|3,10",0.579764,,normal,"25140,16760|3,10",0.383059,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C2011.031b-Time,0,1 EA,worker_day,lognormal,"0.444718,0.296482|3,10",1.02101,0,lognormal,"3.00179,2.00121|3,10",0.631369,0,normal,"23.2915,15.5277|3,10",0.457421,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.001a-Cost,0,100 LF,US$_2011,lognormal,"3240,2160|1,3",0.15424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.001a-Time,0,100 LF,worker_day,lognormal,"3.02029,2.01971|1,3",0.293751,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.001b-Cost,0,100 LF,US$_2011,lognormal,"3240,2160|1,3",0.15424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.001b-Time,0,100 LF,worker_day,lognormal,"3.02029,2.01971|1,3",0.293751,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.001c-Cost,0,100 LF,US$_2011,lognormal,"3240,2160|1,3",0.15424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.001c-Time,0,100 LF,worker_day,lognormal,"3.02029,2.01971|1,3",0.293751,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.001d-Cost,0,100 LF,US$_2011,lognormal,"3240,2160|1,3",0.15424,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.001d-Time,0,100 LF,worker_day,lognormal,"3.02029,2.01971|1,3",0.293751,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.002a-Cost,0,100 LF,US$_2011,normal,"8640,5760|1,3",0.220839,,lognormal,"34992,23328|1,3",0.0947797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.002a-Time,0,100 LF,worker_day,normal,"7.99412,5.32588|1,3",0.333571,0,lognormal,"32.4032,21.5968|1,3",0.267363,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.002b-Cost,0,100 LF,US$_2011,normal,"8640,5760|1,3",0.220839,,lognormal,"34992,23328|1,3",0.0947797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.002b-Time,0,100 LF,worker_day,normal,"7.99412,5.32588|1,3",0.333571,0,lognormal,"32.4032,21.5968|1,3",0.267363,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.002c-Cost,0,100 LF,US$_2011,normal,"8640,5760|1,3",0.220839,,lognormal,"34992,23328|1,3",0.0947797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.002c-Time,0,100 LF,worker_day,normal,"7.99412,5.32588|1,3",0.333571,0,lognormal,"32.4032,21.5968|1,3",0.267363,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.002d-Cost,0,100 LF,US$_2011,normal,"8640,5760|1,3",0.220839,,lognormal,"34992,23328|1,3",0.0947797,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.002d-Time,0,100 LF,worker_day,normal,"7.99412,5.32588|1,3",0.333571,0,lognormal,"32.4032,21.5968|1,3",0.267363,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003a-Cost,0,100 LF,US$_2011,normal,"36000,10800|1,3",0.260101,,normal,"90000,27000|1,3",0.315123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003a-Time,0,100 LF,worker_day,normal,"33.3265,9.97941|1,3",0.360767,0,normal,"83.3612,24.9935|1,3",0.402247,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003b-Cost,0,100 LF,US$_2011,normal,"36000,10800|1,3",0.260101,,normal,"90000,27000|1,3",0.315123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003b-Time,0,100 LF,worker_day,normal,"33.3265,9.97941|1,3",0.360767,0,normal,"83.3612,24.9935|1,3",0.402247,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003c-Cost,0,100 LF,US$_2011,normal,"36000,10800|1,3",0.260101,,normal,"90000,27000|1,3",0.315123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003c-Time,0,100 LF,worker_day,normal,"33.3265,9.97941|1,3",0.360767,0,normal,"83.3612,24.9935|1,3",0.402247,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003d-Cost,0,100 LF,US$_2011,normal,"36000,10800|1,3",0.260101,,normal,"90000,27000|1,3",0.315123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3011.003d-Time,0,100 LF,worker_day,normal,"33.3265,9.97941|1,3",0.360767,0,normal,"83.3612,24.9935|1,3",0.402247,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001a-Cost,0,1 SF,US$_2011,normal,"62.08,18.624|500,2000",0.284999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001a-Time,0,1 SF,worker_day,normal,"0.0575576,0.0172969|500,2000",0.37911,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001b-Cost,0,1 SF,US$_2011,normal,"106.48,31.944|500,2000",0.256999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001b-Time,0,1 SF,worker_day,normal,"0.0986253,0.0295699|500,2000",0.358537,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001c-Cost,0,1 SF,US$_2011,normal,"88.5,26.55|500,2000",0.311983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001c-Time,0,1 SF,worker_day,normal,"0.0819963,0.0246015|500,2000",0.399791,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001d-Cost,0,1 SF,US$_2011,normal,"201.6,60.48|500,2000",0.257734,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001d-Time,0,1 SF,worker_day,normal,"0.186788,0.0560447|500,2000",0.359064,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001e-Cost,0,1 SF,US$_2011,normal,"77.2,23.16|500,2000",0.260449,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001e-Time,0,1 SF,worker_day,normal,"0.0715618,0.0214953|500,2000",0.361018,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001f-Cost,0,1 SF,US$_2011,lognormal,"223.6,67.08|500,2000",0.237628,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001f-Time,0,1 SF,worker_day,lognormal,"0.207179,0.0621682|500,2000",0.344916,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001g-Cost,0,1 SF,US$_2011,normal,"34.72,10.416|500,2000",0.229784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001g-Time,0,1 SF,worker_day,normal,"0.0321835,0.00966659|500,2000",0.33956,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001h-Cost,0,1 SF,US$_2011,normal,"92.4,27.72|500,2000",0.265722,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001h-Time,0,1 SF,worker_day,normal,"0.0856029,0.0256788|500,2000",0.36484,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001i-Cost,0,1 SF,US$_2011,normal,"53,15.9|500,2000",0.274869,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001i-Time,0,1 SF,worker_day,normal,"0.0491515,0.0147794|500,2000",0.371554,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001j-Cost,0,1 SF,US$_2011,lognormal,"146.8,44.04|500,2000",0.251029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001j-Time,0,1 SF,worker_day,lognormal,"0.136003,0.0407988|500,2000",0.354282,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001k-Cost,0,1 SF,US$_2011,normal,"58.8,17.64|500,2000",0.345568,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001k-Time,0,1 SF,worker_day,normal,"0.0544382,0.0163047|500,2000",0.426517,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001l-Cost,0,1 SF,US$_2011,normal,"98.8,29.64|500,2000",0.290358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001l-Time,0,1 SF,worker_day,normal,"0.0915676,0.0274929|500,2000",0.383155,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001m-Cost,0,1 SF,US$_2011,normal,"20.1,6.03|500,2000",0.400517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001m-Time,0,1 SF,worker_day,normal,"0.018611,0.00557559|500,2000",0.472137,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001n-Cost,0,1 SF,US$_2011,normal,"48,14.4|500,2000",0.333934,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001n-Time,0,1 SF,worker_day,normal,"0.0444353,0.0133059|500,2000",0.417148,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001o-Cost,0,1 SF,US$_2011,normal,"55.8,16.74|500,2000",0.321154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001o-Time,0,1 SF,worker_day,normal,"0.0541794,0.0162682|500,2000",0.406989,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001p-Cost,0,1 SF,US$_2011,normal,"84.24,56.16|500,2000",0.257726,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3021.001p-Time,0,1 SF,worker_day,normal,"0.0817271,0.0544729|500,2000",0.359058,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3027.001-Cost,0,100 SF,US$_2011,lognormal,"138,92|5,20",1.28411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3027.001-Time,0,100 SF,worker_day,lognormal,"0.132324,0.0876765|5,20",1.30822,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3027.002-Cost,0,100 SF,US$_2011,lognormal,"138,92|5,20",1.28411,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3027.002-Time,0,100 SF,worker_day,lognormal,"0.144691,0.0953088|5,20",1.30822,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001a-Cost,0,250 SF,US$_2011,normal,"435,290|1,10",0.550795,,lognormal,"3405,2270|1,10",0.518319,,lognormal,"7005,4670|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001a-Time,0,250 SF,worker_day,normal,"0.419301,0.280699|1,10",0.604877,0,lognormal,"3.24246,2.15754|1,10",0.57546,0,lognormal,"6.69099,4.45901|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001b-Cost,0,600 SF,US$_2011,normal,"1044,696|1,10",0.550803,,lognormal,"8172,5448|1,10",0.518319,,lognormal,"16812,11208|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001b-Time,0,600 SF,worker_day,normal,"0.938647,0.621353|1,10",0.604884,0,lognormal,"7.42182,4.93818|1,10",0.57546,0,lognormal,"15.3348,10.2252|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001c-Cost,0,1800 SF,US$_2011,normal,"3132,2088|1,10",0.550803,,lognormal,"24516,16344|1,10",0.518319,,lognormal,"50436,33624|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001c-Time,0,1800 SF,worker_day,normal,"2.80059,1.87941|1,10",0.604884,0,lognormal,"21.6053,14.3947|1,10",0.57546,0,lognormal,"44.4971,29.6629|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001d-Cost,0,2500 SF,US$_2011,normal,"4350,2900|1,10",0.550803,,lognormal,"34050,22700|1,10",0.518318,,lognormal,"70050,46700|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.001d-Time,0,2500 SF,worker_day,normal,"3.61838,2.38162|1,10",0.604884,0,lognormal,"29.0904,19.4096|1,10",0.57546,0,lognormal,"59.7081,39.7919|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003a-Cost,0,250 SF,US$_2011,normal,"725,217.5|1,10",0.550795,,lognormal,"5675,1702.5|1,10",0.518319,,lognormal,"11675,3502.5|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003a-Time,0,250 SF,worker_day,normal,"0.696507,0.211397|1,10",0.604877,0,lognormal,"5.41232,1.61507|1,10",0.57546,0,lognormal,"11.155,3.34301|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003b-Cost,0,600 SF,US$_2011,normal,"1740,522|1,10",0.550803,,lognormal,"13620,4086|1,10",0.518319,,lognormal,"28020,8406|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003b-Time,0,600 SF,worker_day,normal,"1.57324,0.462706|1,10",0.604884,0,lognormal,"12.3891,3.69635|1,10",0.57546,0,lognormal,"25.5538,7.67047|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003c-Cost,0,1800 SF,US$_2011,normal,"5220,1566|1,10",0.550803,,lognormal,"40860,12258|1,10",0.518319,,lognormal,"84060,25218|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003c-Time,0,1800 SF,worker_day,normal,"4.64294,1.41882|1,10",0.604884,0,lognormal,"36.0265,10.7894|1,10",0.57546,0,lognormal,"74.1653,22.2459|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003d-Cost,0,2500 SF,US$_2011,normal,"7250,2175|1,10",0.550803,,lognormal,"56750,17025|1,10",0.518318,,lognormal,"116750,35025|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.003d-Time,0,2500 SF,worker_day,normal,"6.09191,1.76324|1,10",0.604884,0,lognormal,"48.4522,14.5691|1,10",0.57546,0,lognormal,"99.5404,29.8338|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004a-Cost,0,250 SF,US$_2011,normal,"725,217.5|1,10",0.550795,,lognormal,"5675,1702.5|1,10",0.518319,,lognormal,"11675,3502.5|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004a-Time,0,250 SF,worker_day,normal,"0.696507,0.211397|1,10",0.604877,0,lognormal,"5.41232,1.61507|1,10",0.57546,0,lognormal,"11.155,3.34301|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004b-Cost,0,600 SF,US$_2011,normal,"1740,522|1,10",0.550803,,lognormal,"13620,4086|1,10",0.518319,,lognormal,"28020,8406|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004b-Time,0,600 SF,worker_day,normal,"1.57324,0.462706|1,10",0.604884,0,lognormal,"12.3891,3.69635|1,10",0.57546,0,lognormal,"25.5538,7.67047|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004c-Cost,0,1800 SF,US$_2011,normal,"5220,1566|1,10",0.550803,,lognormal,"40860,12258|1,10",0.518319,,lognormal,"84060,25218|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004c-Time,0,1800 SF,worker_day,normal,"4.64294,1.41882|1,10",0.604884,0,lognormal,"36.0265,10.7894|1,10",0.57546,0,lognormal,"74.1653,22.2459|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004d-Cost,0,2500 SF,US$_2011,normal,"7250,2175|1,10",0.550803,,lognormal,"56750,17025|1,10",0.518318,,lognormal,"116750,35025|1,10",0.202618,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3032.004d-Time,0,2500 SF,worker_day,normal,"6.09191,1.76324|1,10",0.604884,0,lognormal,"48.4522,14.5691|1,10",0.57546,0,lognormal,"99.5404,29.8338|1,10",0.321798,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3034.001-Cost,0,1 EA,US$_2011,lognormal,"2.3,0.69|5,10",0.636941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3034.001-Time,0,1 EA,worker_day,lognormal,"0.00225,0.00064|5,10",0.684247,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3034.002-Cost,0,1 EA,US$_2011,lognormal,"990,297|5,10",0.636941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C3034.002-Time,0,1 EA,worker_day,lognormal,"0.99,0.297|5,10",0.684247,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D1014.011-Cost,0,1 EA,US$_2011,lognormal,"8800,2640|5,10",0.87408,,normal,"37400,11220|5,10",0.277553,,lognormal,"46200,13860|5,10",0.408406,,normal,"32000,9600|5,10",0.408299,,normal,"40800,12240|5,10",0.50751,,normal,"69400,20820|5,10",0.335272,,normal,"78200,23460|5,10",0.400498,,normal,"5000,1500|5,10",0.48769,,lognormal,"13800,4140|5,10",0.736458,,normal,"42400,12720|5,10",0.298428,,normal,"51200,15360|5,10",0.402849,,normal,"37000,11100|5,10",0.41802,,normal,"45800,13740|5,10",0.505774,,normal,"74400,22320|5,10",0.344118,,normal,"83200,24960|5,10",0.404755, +D1014.011-Time,0,1 EA,worker_day,lognormal,"8.41178,2.52355|5,10",0.909129,1,normal,"35.75,10.725|5,10",0.373545,1,lognormal,"44.1618,13.2485|5,10",0.478848,1,normal,"30.5882,9.17645|5,10",0.478757,1,normal,"39,11.7|5,10",0.565744,1,normal,"66.3382,19.9015|5,10",0.418219,1,normal,"74.75,22.425|5,10",0.472122,1,normal,"4.77941,1.43382|5,10",0.548034,1,lognormal,"13.1912,3.95736|5,10",0.777734,1,normal,"40.5294,12.1588|5,10",0.389306,1,normal,"48.9412,14.6824|5,10",0.474117,1,normal,"35.3676,10.6103|5,10",0.487074,1,normal,"43.7794,13.1338|5,10",0.564187,1,normal,"71.1176,21.3353|5,10",0.425344,1,normal,"79.5294,23.8588|5,10",0.475738,1 +D1014.012-Cost,0,1 EA,US$_2011,lognormal,"8800,2640|5,10",0.87408,,normal,"37400,11220|5,10",0.277553,,lognormal,"46200,13860|5,10",0.408406,,normal,"32000,9600|5,10",0.408299,,normal,"40800,12240|5,10",0.50751,,normal,"69400,20820|5,10",0.335272,,normal,"78200,23460|5,10",0.400498,,normal,"5000,1500|5,10",0.48769,,lognormal,"13800,4140|5,10",0.736458,,normal,"42400,12720|5,10",0.298428,,normal,"51200,15360|5,10",0.402849,,normal,"37000,11100|5,10",0.41802,,normal,"45800,13740|5,10",0.505774,,normal,"74400,22320|5,10",0.344118,,normal,"83200,24960|5,10",0.404755, +D1014.012-Time,0,1 EA,worker_day,lognormal,"8.41178,2.52355|5,10",0.909129,1,normal,"35.75,10.725|5,10",0.373545,1,lognormal,"44.1618,13.2485|5,10",0.478848,1,normal,"30.5882,9.17645|5,10",0.478757,1,normal,"39,11.7|5,10",0.565744,1,normal,"66.3382,19.9015|5,10",0.418219,1,normal,"74.75,22.425|5,10",0.472122,1,normal,"4.77941,1.43382|5,10",0.548034,1,lognormal,"13.1912,3.95736|5,10",0.777734,1,normal,"40.5294,12.1588|5,10",0.389306,1,normal,"48.9412,14.6824|5,10",0.474117,1,normal,"35.3676,10.6103|5,10",0.487074,1,normal,"43.7794,13.1338|5,10",0.564187,1,normal,"71.1176,21.3353|5,10",0.425344,1,normal,"79.5294,23.8588|5,10",0.475738,1 +D1014.021-Cost,0,1 EA,US$_2011,lognormal,"1600,480|5,10",0.821863,,normal,"16400,4920|5,10",0.322003,,normal,"18000,5400|5,10",0.369618,,normal,"24000,7200|5,10",0.438921,,normal,"25600,7680|5,10",0.462282,,normal,"40400,12120|5,10",0.390152,,normal,"42000,12600|5,10",0.407462,,lognormal,"4600,1380|5,10",0.253523,,lognormal,"6200,1860|5,10",0.416965,,normal,"21000,6300|5,10",0.300214,,normal,"22600,6780|5,10",0.339263,,normal,"28600,8580|5,10",0.398953,,normal,"30200,9060|5,10",0.421472,,normal,"45000,13500|5,10",0.370893,,normal,"46600,13980|5,10",0.387217, +D1014.021-Time,0,1 EA,worker_day,lognormal,"1.52941,0.458818|5,10",0.859046,0,normal,"15.6764,4.70291|5,10",0.407659,0,normal,"17.2058,5.16172|5,10",0.446226,0,normal,"22.9412,6.88236|5,10",0.505126,1,normal,"24.4706,7.34118|5,10",0.525551,1,normal,"38.6176,11.5853|5,10",0.463377,1,normal,"40.147,12.0441|5,10",0.478044,1,lognormal,"4.39703,1.31909|5,10",0.356053,0,lognormal,"5.92644,1.77791|5,10",0.486169,0,normal,"20.0735,6.02199|5,10",0.390677,0,normal,"21.6029,6.48081|5,10",0.421425,0,normal,"27.3382,8.20145|5,10",0.470812,1,normal,"28.8676,8.66027|5,10",0.490039,1,normal,"43.0147,12.9044|5,10",0.447282,1,normal,"44.5441,13.3632|5,10",0.460909,1 +D1014.022-Cost,0,1 EA,US$_2011,lognormal,"1600,480|5,10",0.821863,,normal,"16400,4920|5,10",0.322003,,normal,"18000,5400|5,10",0.369618,,normal,"24000,7200|5,10",0.438921,,normal,"25600,7680|5,10",0.462282,,normal,"40400,12120|5,10",0.390152,,normal,"42000,12600|5,10",0.407462,,lognormal,"4600,1380|5,10",0.253523,,lognormal,"6200,1860|5,10",0.416965,,normal,"21000,6300|5,10",0.300214,,normal,"22600,6780|5,10",0.339263,,normal,"28600,8580|5,10",0.398953,,normal,"30200,9060|5,10",0.421472,,normal,"45000,13500|5,10",0.370893,,normal,"46600,13980|5,10",0.387217, +D1014.022-Time,0,1 EA,worker_day,lognormal,"1.6,0.48|5,10",0.859046,0,normal,"16.4,4.92|5,10",0.407659,0,normal,"18,5.4|5,10",0.446226,0,normal,"24,7.2|5,10",0.505126,1,normal,"25.6,7.68|5,10",0.525551,1,normal,"40.4,12.12|5,10",0.463377,1,normal,"42,12.6|5,10",0.478044,1,lognormal,"4.6,1.38|5,10",0.356053,0,lognormal,"6.2,1.86|5,10",0.486169,0,normal,"21,6.3|5,10",0.390677,0,normal,"22.6,6.78|5,10",0.421425,0,normal,"28.6,8.58|5,10",0.470812,1,normal,"30.2,9.06|5,10",0.490039,1,normal,"45,13.5|5,10",0.447282,1,normal,"46.6,13.98|5,10",0.460909,1 +D2021.011a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|1,4",0.763687,,lognormal,"2915,2385|1,4",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.011a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|1,4",0.803566,0,lognormal,"0.561188,0.1403|1,4",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.011b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|1,4",0.60297,,lognormal,"4180,3420|1,4",0.0660143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.011b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|1,4",0.652742,0,lognormal,"0.804753,0.2012|1,4",0.258569,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.012a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|1,4",0.763687,,lognormal,"2915,2385|1,4",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.012a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|1,4",0.803566,0,lognormal,"0.561188,0.1403|1,4",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.012b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|1,4",0.60297,,lognormal,"4180,3420|1,4",0.0660143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.012b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|1,4",0.652742,0,lognormal,"0.804753,0.2012|1,4",0.258569,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.013a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|3,10",0.763687,,lognormal,"2915,2385|3,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.013a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|3,10",0.803566,0,lognormal,"3.08649,2.52531|3,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.013b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|3,10",0.60297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.013b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|3,10",0.652742,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.014a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|3,10",0.763687,,lognormal,"2915,2385|3,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.014a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|3,10",0.803566,0,lognormal,"3.08649,2.52531|3,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.014b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|3,10",0.60297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.014b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|3,10",0.652742,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.021a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.021a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.022a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.022a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.023a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.023a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.023b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.023b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.024a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.024a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.024b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2021.024b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.011a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|1,4",0.763687,,lognormal,"2915,2385|1,4",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.011a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|1,4",0.803566,0,lognormal,"0.561188,0.1403|1,4",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.011b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|1,4",0.60297,,lognormal,"4180,3420|1,4",0.0660143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.011b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|1,4",0.652742,0,lognormal,"0.804753,0.2012|1,4",0.258569,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.012a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|1,4",0.763687,,lognormal,"2915,2385|1,4",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.012a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|1,4",0.803566,0,lognormal,"0.561188,0.1403|1,4",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.012b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|1,4",0.60297,,lognormal,"4180,3420|1,4",0.0660143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.012b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|1,4",0.652742,0,lognormal,"0.804753,0.2012|1,4",0.258569,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.013a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|3,10",0.763687,,lognormal,"2915,2385|3,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.013a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|3,10",0.803566,0,lognormal,"3.08649,2.52531|3,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.013b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|3,10",0.60297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.013b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|3,10",0.652742,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.014a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|3,10",0.763687,,lognormal,"2915,2385|3,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.014a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|3,10",0.803566,0,lognormal,"3.08649,2.52531|3,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.014b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|3,10",0.60297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.014b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|3,10",0.652742,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.021a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.021a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.022a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.022a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.023a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.023a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.023b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.023b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.024a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.024a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.024b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2022.024b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.011b-Cost,0,1000 LF,US$_2011,lognormal,"800,240|5,10",0.575784,,lognormal,"5700,1710|5,10",0.340085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.011b-Time,0,1000 LF,worker_day,lognormal,"0.847029,0.254088|5,10",0.627716,0,lognormal,"6.03525,1.81054|5,10",0.422088,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.012b-Cost,0,1000 LF,US$_2011,lognormal,"800,240|5,10",0.575784,,lognormal,"5700,1710|5,10",0.340085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.012b-Time,0,1000 LF,worker_day,lognormal,"0.847029,0.254088|5,10",0.627716,0,lognormal,"6.03525,1.81054|5,10",0.422088,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.013b-Cost,0,1000 LF,US$_2011,lognormal,"800,240|5,10",0.575784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.013b-Time,0,1000 LF,worker_day,lognormal,"0.847029,0.254088|5,10",0.627716,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.014b-Cost,0,1000 LF,US$_2011,lognormal,"800,240|5,10",0.575784,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.014b-Time,0,1000 LF,worker_day,lognormal,"0.847029,0.254088|5,10",0.627716,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.021a-Cost,0,1000 LF,US$_2011,normal,"6700,2010|5,10",0.314177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.021a-Time,0,1000 LF,worker_day,normal,"7.09416,2.12828|5,10",0.401506,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.021b-Cost,0,1000 LF,US$_2011,lognormal,"800,240|5,10",0.705552,,normal,"8700,2610|5,10",0.284252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.021b-Time,0,1000 LF,worker_day,lognormal,"0.847029,0.254088|5,10",0.748534,0,normal,"9.21178,2.76355|5,10",0.378549,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.022a-Cost,0,1000 LF,US$_2011,normal,"6700,2010|5,10",0.314177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.022a-Time,0,1000 LF,worker_day,normal,"7.09416,2.12828|5,10",0.401506,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.022b-Cost,0,1000 LF,US$_2011,lognormal,"800,240|5,10",0.705552,,normal,"8700,2610|5,10",0.284252,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.022b-Time,0,1000 LF,worker_day,lognormal,"0.847029,0.254088|5,10",0.748534,0,normal,"9.21178,2.76355|5,10",0.378549,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.023a-Cost,0,1000 LF,US$_2011,normal,"6700,2010|5,10",0.314177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.023a-Time,0,1000 LF,worker_day,normal,"7.09416,2.12828|5,10",0.401506,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.023b-Cost,0,1000 LF,US$_2011,lognormal,"800,240|5,10",0.705552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.023b-Time,0,1000 LF,worker_day,lognormal,"0.847029,0.254088|5,10",0.748534,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.024a-Cost,0,1000 LF,US$_2011,normal,"6700,2010|5,10",0.314177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.024a-Time,0,1000 LF,worker_day,normal,"7.09416,2.12828|5,10",0.401506,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.024b-Cost,0,1000 LF,US$_2011,lognormal,"800,240|5,10",0.705552,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2031.024b-Time,0,1000 LF,worker_day,lognormal,"0.847029,0.254088|5,10",0.748534,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.011a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|5,10",0.763687,,lognormal,"2915,2385|5,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.011a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|5,10",0.803566,0,lognormal,"0.561188,0.1403|5,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.011b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|5,10",0.60297,,lognormal,"4180,3420|5,10",0.0660143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.011b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|5,10",0.652742,0,lognormal,"0.804753,0.2012|5,10",0.258569,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.012a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|5,10",0.763687,,lognormal,"2915,2385|5,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.012a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|5,10",0.803566,0,lognormal,"0.561188,0.1403|5,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.012b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|5,10",0.60297,,lognormal,"4180,3420|5,10",0.0660143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.012b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|5,10",0.652742,0,lognormal,"0.804753,0.2012|5,10",0.258569,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.013a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|5,10",0.763687,,lognormal,"2915,2385|5,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.013a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|5,10",0.803566,0,lognormal,"3.08649,2.52531|5,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.013b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|5,10",0.60297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.013b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|5,10",0.652742,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.014a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|5,10",0.763687,,lognormal,"2915,2385|5,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.014a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|5,10",0.803566,0,lognormal,"3.08649,2.52531|5,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.014b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|5,10",0.60297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.014b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|5,10",0.652742,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.021a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.021a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.021b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.021b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.022a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.022a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.023a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.023a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.023b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.023b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.024a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.024a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.024b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2051.024b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.011a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|5,10",0.763687,,lognormal,"2915,2385|5,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.011a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|5,10",0.803566,0,lognormal,"0.561188,0.1403|5,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.011b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|5,10",0.60297,,lognormal,"4180,3420|5,10",0.0660143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.011b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|5,10",0.652742,0,lognormal,"0.804753,0.2012|5,10",0.258569,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.012a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|5,10",0.763687,,lognormal,"2915,2385|5,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.012a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|5,10",0.803566,0,lognormal,"0.561188,0.1403|5,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.012b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|5,10",0.60297,,lognormal,"4180,3420|5,10",0.0660143,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.012b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|5,10",0.652742,0,lognormal,"0.804753,0.2012|5,10",0.258569,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.013a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|5,10",0.763687,,lognormal,"2915,2385|5,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.013a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|5,10",0.803566,0,lognormal,"3.08649,2.52531|5,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.013b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|5,10",0.60297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.013b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|5,10",0.652742,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.014a-Cost,0,1000 LF,US$_2011,lognormal,"319,261|5,10",0.763687,,lognormal,"2915,2385|5,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.014a-Time,0,1000 LF,worker_day,lognormal,"0.337806,0.276394|5,10",0.803566,0,lognormal,"3.08649,2.52531|5,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.014b-Cost,0,1000 LF,US$_2011,lognormal,"418,342|5,10",0.60297,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.014b-Time,0,1000 LF,worker_day,lognormal,"0.442635,0.362165|5,10",0.652742,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.021a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.021a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.022a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.022a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.023a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.023a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.023b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.023b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.024a-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"6700,2010|5,10",0.40381,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.024a-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"7.09416,2.12828|5,10",0.474934,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.024b-Cost,0,1000 LF,US$_2011,lognormal,"700,210|5,10",0.648767,,lognormal,"700,210|5,10",0.648767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D2061.024b-Time,0,1000 LF,worker_day,lognormal,"0.741188,0.222365|5,10",0.695269,0,lognormal,"0.741188,0.222365|5,10",0.695269,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.011a-Cost,0,1 EA,US$_2011,lognormal,"50820,41580|1,5",0.178483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.011a-Time,0,1 EA,worker_day,lognormal,"14.2677,4.75592|1,5",0.307174,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.011b-Cost,0,1 EA,US$_2011,lognormal,"168300,137700|1,5",0.171056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.011b-Time,0,1 EA,worker_day,lognormal,"39.375,11.8125|1,5",0.30292,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.011c-Cost,0,1 EA,US$_2011,lognormal,"280720,229680|1,5",0.172048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.011c-Time,0,1 EA,worker_day,lognormal,"52.5412,13.1353|1,5",0.303481,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.011d-Cost,0,1 EA,US$_2011,lognormal,"474100,387900|1,5",0.173368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.011d-Time,0,1 EA,worker_day,lognormal,"75.425,15.5287|1,5",0.304231,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012a-Cost,0,1 EA,US$_2011,lognormal,"2000,600|1,5",0.45231,,lognormal,"94400,28320|1,5",0.184341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012a-Time,0,1 EA,worker_day,lognormal,"2.05881,0.617635|1,5",0.516802,0,lognormal,"58.3058,4.8588|1,5",0.310615,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012b-Cost,0,1 EA,US$_2011,lognormal,"50820,41580|1,5",0.178483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012b-Time,0,1 EA,worker_day,lognormal,"14.2677,4.75592|1,5",0.307174,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012c-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"51920,42480|1,5",0.184341,,lognormal,"51920,42480|1,5",0.184341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012c-Time,0,1 EA,worker_day,lognormal,"1.13234,0.926459|1,5",0.516802,0,lognormal,"14.5764,4.8588|1,5",0.310615,1,lognormal,"14.5764,4.8588|1,5",0.310615,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012d-Cost,0,1 EA,US$_2011,normal,"3000,900|1,5",0.398453,,lognormal,"309000,92700|1,5",0.173342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012d-Time,0,1 EA,worker_day,normal,"3.08822,0.926453|1,5",0.470388,1,lognormal,"182.901,11.9283|1,5",0.304216,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012e-Cost,0,1 EA,US$_2011,lognormal,"168300,137700|1,5",0.171056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012e-Time,0,1 EA,worker_day,lognormal,"39.375,11.8125|1,5",0.30292,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012f-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"169950,139050|1,5",0.173342,,lognormal,"169950,139050|1,5",0.173342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012f-Time,0,1 EA,worker_day,normal,"1.69851,1.38969|1,5",0.470388,1,lognormal,"39.761,11.9283|1,5",0.304216,1,lognormal,"39.761,11.9283|1,5",0.304216,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012g-Cost,0,1 EA,US$_2011,normal,"4400,1320|1,5",0.296982,,lognormal,"514800,154440|1,5",0.173116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012g-Time,0,1 EA,worker_day,normal,"4.52941,1.35882|1,5",0.388198,1,lognormal,"291.468,13.2485|1,5",0.304088,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012h-Cost,0,1 EA,US$_2011,lognormal,"280720,229680|1,5",0.172048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012h-Time,0,1 EA,worker_day,lognormal,"52.5412,13.1353|1,5",0.303481,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012i-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"283140,231660|1,5",0.173116,,lognormal,"283140,231660|1,5",0.173116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012i-Time,0,1 EA,worker_day,normal,"2.49117,2.03823|1,5",0.388198,1,lognormal,"52.9942,13.2485|1,5",0.304088,1,lognormal,"52.9942,13.2485|1,5",0.304088,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012j-Cost,0,1 EA,US$_2011,lognormal,"4800,1440|1,5",0.288523,,lognormal,"866800,260040|1,5",0.174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012j-Time,0,1 EA,worker_day,lognormal,"4.94119,1.48236|1,5",0.381766,1,lognormal,"477.377,15.6151|1,5",0.304591,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012k-Cost,0,1 EA,US$_2011,lognormal,"474100,387900|1,5",0.173368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012k-Time,0,1 EA,worker_day,lognormal,"75.425,15.5287|1,5",0.304231,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012l-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"476740,390060|1,5",0.174,,lognormal,"476740,390060|1,5",0.174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.012l-Time,0,1 EA,worker_day,lognormal,"2.71766,2.22354|1,5",0.381766,1,lognormal,"75.845,15.6151|1,5",0.304591,1,lognormal,"75.845,15.6151|1,5",0.304591,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013a-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"51920,42480|1,5",0.184341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013a-Time,0,1 EA,worker_day,lognormal,"1.13234,0.926459|1,5",0.516802,0,lognormal,"14.5764,4.8588|1,5",0.310615,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013b-Cost,0,1 EA,US$_2011,lognormal,"50820,41580|1,5",0.178483,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013b-Time,0,1 EA,worker_day,lognormal,"14.2677,4.75592|1,5",0.307174,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013c-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"51920,42480|1,5",0.184341,,lognormal,"51920,42480|1,5",0.184341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013c-Time,0,1 EA,worker_day,lognormal,"1.29415,1.05885|1,5",0.516802,0,lognormal,"11.1058,2.77645|1,5",0.310615,1,lognormal,"16.6588,5.55296|1,5",0.310615,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013d-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"169950,139050|1,5",0.173342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013d-Time,0,1 EA,worker_day,normal,"1.69851,1.38969|1,5",0.470388,1,lognormal,"39.761,11.9283|1,5",0.304216,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013e-Cost,0,1 EA,US$_2011,lognormal,"168300,137700|1,5",0.171056,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013e-Time,0,1 EA,worker_day,lognormal,"39.375,11.8125|1,5",0.30292,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013f-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"169950,139050|1,5",0.173342,,lognormal,"169950,139050|1,5",0.173342,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013f-Time,0,1 EA,worker_day,normal,"1.94117,1.58823|1,5",0.470388,1,lognormal,"36.353,9.08825|1,5",0.304216,1,lognormal,"45.4412,13.6324|1,5",0.304216,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013g-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"283140,231660|1,5",0.173116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013g-Time,0,1 EA,worker_day,normal,"2.49117,2.03823|1,5",0.388198,1,lognormal,"52.9942,13.2485|1,5",0.304088,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013h-Cost,0,1 EA,US$_2011,lognormal,"280720,229680|1,5",0.172048,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013h-Time,0,1 EA,worker_day,lognormal,"60.047,15.0117|1,5",0.303481,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013i-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"283140,231660|1,5",0.173116,,lognormal,"283140,231660|1,5",0.173116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013i-Time,0,1 EA,worker_day,normal,"0.284682,0.232918|1,5",0.388198,1,lognormal,"33.3106,27.2542|1,5",0.304088,1,lognormal,"33.3106,27.2542|1,5",0.304088,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013j-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"476740,390060|1,5",0.174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013j-Time,0,1 EA,worker_day,lognormal,"2.71766,2.22354|1,5",0.381766,1,lognormal,"75.845,15.6151|1,5",0.304591,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013k-Cost,0,1 EA,US$_2011,lognormal,"474100,387900|1,5",0.173368,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013k-Time,0,1 EA,worker_day,lognormal,"86.2,17.7471|1,5",0.304231,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013l-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"476740,390060|1,5",0.174,,lognormal,"476740,390060|1,5",0.174,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.013l-Time,0,1 EA,worker_day,lognormal,"0.310635,0.254165|1,5",0.381766,1,lognormal,"8.66802,1.7846|1,5",0.304591,1,lognormal,"8.66802,1.7846|1,5",0.304591,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.021a-Cost,0,1 EA,US$_2011,lognormal,"26070,21330|1,5",0.171959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.021a-Time,0,1 EA,worker_day,lognormal,"8.36474,2.78826|1,5",0.30343,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.021b-Cost,0,1 EA,US$_2011,lognormal,"85800,70200|1,5",0.174358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.021b-Time,0,1 EA,worker_day,lognormal,"22.9412,6.88235|1,5",0.304796,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.021c-Cost,0,1 EA,US$_2011,lognormal,"143220,117180|1,5",0.176439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.021c-Time,0,1 EA,worker_day,lognormal,"30.6352,7.6588|1,5",0.305991,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.021d-Cost,0,1 EA,US$_2011,lognormal,"240350,196650|1,5",0.172966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.021d-Time,0,1 EA,worker_day,lognormal,"43.7,8.99705|1,5",0.304002,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022a-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"27170,22230|1,5",0.183443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022a-Time,0,1 EA,worker_day,lognormal,"0.129365,0.105835|1,5",0.516802,0,lognormal,"3.19649,2.61531|1,5",0.310083,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022b-Cost,0,1 EA,US$_2011,lognormal,"26070,21330|1,5",0.171959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022b-Time,0,1 EA,worker_day,lognormal,"8.36474,2.78826|1,5",0.30343,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022c-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"27170,22230|1,5",0.183443,,lognormal,"26070,21330|1,5",0.171959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022c-Time,0,1 EA,worker_day,lognormal,"1.29415,1.05885|1,5",0.516802,0,lognormal,"8.71768,2.90592|1,5",0.310083,1,lognormal,"8.36474,2.78826|1,5",0.30343,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022d-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"87450,71550|1,5",0.178731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022d-Time,0,1 EA,worker_day,normal,"0.194147,0.158853|1,5",0.470388,1,lognormal,"2.33819,0.70145|1,5",0.307319,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022e-Cost,0,1 EA,US$_2011,lognormal,"85800,70200|1,5",0.174358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022e-Time,0,1 EA,worker_day,lognormal,"22.9412,6.88235|1,5",0.304796,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022f-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"87450,71550|1,5",0.178731,,lognormal,"85800,70200|1,5",0.174358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022f-Time,0,1 EA,worker_day,normal,"1.94117,1.58823|1,5",0.470388,1,lognormal,"23.3823,7.0147|1,5",0.307319,1,lognormal,"22.9412,6.88235|1,5",0.304796,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022g-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"145640,119160|1,5",0.178444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022g-Time,0,1 EA,worker_day,normal,"2.84702,2.32938|1,5",0.388198,1,lognormal,"31.153,7.78825|1,5",0.307152,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022h-Cost,0,1 EA,US$_2011,lognormal,"143220,117180|1,5",0.176439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022h-Time,0,1 EA,worker_day,lognormal,"30.6352,7.6588|1,5",0.305991,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022i-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"145640,119160|1,5",0.178444,,lognormal,"143220,117180|1,5",0.176439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022i-Time,0,1 EA,worker_day,normal,"0.854147,0.698853|1,5",0.388198,1,lognormal,"9.34584,2.33645|1,5",0.307152,1,lognormal,"9.19059,2.29765|1,5",0.305991,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022j-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"242990,198810|1,5",0.174209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022j-Time,0,1 EA,worker_day,lognormal,"3.10585,2.54115|1,5",0.381766,1,lognormal,"44.18,9.0959|1,5",0.304711,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022k-Cost,0,1 EA,US$_2011,lognormal,"240350,196650|1,5",0.172966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022k-Time,0,1 EA,worker_day,lognormal,"43.7,8.99705|1,5",0.304002,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022l-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"242990,198810|1,5",0.174209,,lognormal,"240350,196650|1,5",0.172966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.022l-Time,0,1 EA,worker_day,lognormal,"0.931806,0.762394|1,5",0.381766,1,lognormal,"13.254,2.72875|1,5",0.304711,1,lognormal,"13.11,2.6991|1,5",0.304002,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023a-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"27170,22230|1,5",0.183443,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023a-Time,0,1 EA,worker_day,lognormal,"0.388194,0.317606|1,5",0.516802,0,lognormal,"2.61526,0.87175|1,5",0.310083,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023b-Cost,0,1 EA,US$_2011,lognormal,"26070,21330|1,5",0.171959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023b-Time,0,1 EA,worker_day,lognormal,"8.36474,2.78826|1,5",0.30343,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023c-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"27170,22230|1,5",0.183443,,lognormal,"26070,21330|1,5",0.171959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023c-Time,0,1 EA,worker_day,lognormal,"1.29415,1.05885|1,5",0.516802,0,lognormal,"8.71768,2.90592|1,5",0.310083,1,lognormal,"8.36474,2.78826|1,5",0.30343,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023d-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"87450,71550|1,5",0.178731,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023d-Time,0,1 EA,worker_day,normal,"0.582341,0.476459|1,5",0.470388,1,lognormal,"7.01468,2.1044|1,5",0.307319,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023e-Cost,0,1 EA,US$_2011,lognormal,"85800,70200|1,5",0.174358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023e-Time,0,1 EA,worker_day,lognormal,"22.9412,6.88235|1,5",0.304796,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023f-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"87450,71550|1,5",0.178731,,lognormal,"85800,70200|1,5",0.174358,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023f-Time,0,1 EA,worker_day,normal,"1.94117,1.58823|1,5",0.470388,1,lognormal,"23.3823,7.0147|1,5",0.307319,1,lognormal,"22.9412,6.88235|1,5",0.304796,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023g-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"145640,119160|1,5",0.178444,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023g-Time,0,1 EA,worker_day,normal,"2.84702,2.32938|1,5",0.388198,1,lognormal,"31.153,7.78825|1,5",0.307152,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023h-Cost,0,1 EA,US$_2011,lognormal,"143220,117180|1,5",0.176439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023h-Time,0,1 EA,worker_day,lognormal,"30.6352,7.6588|1,5",0.305991,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023i-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"145640,119160|1,5",0.178444,,lognormal,"143220,117180|1,5",0.176439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023i-Time,0,1 EA,worker_day,normal,"0.854147,0.698853|1,5",0.388198,1,lognormal,"9.34584,2.33645|1,5",0.307152,1,lognormal,"9.19059,2.29765|1,5",0.305991,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023j-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"242990,198810|1,5",0.174209,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023j-Time,0,1 EA,worker_day,lognormal,"3.10585,2.54115|1,5",0.381766,1,lognormal,"44.18,9.0959|1,5",0.304711,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023k-Cost,0,1 EA,US$_2011,lognormal,"240350,196650|1,5",0.172966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023k-Time,0,1 EA,worker_day,lognormal,"43.7,8.99705|1,5",0.304002,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023l-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"242990,198810|1,5",0.174209,,lognormal,"240350,196650|1,5",0.172966,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3031.023l-Time,0,1 EA,worker_day,lognormal,"0.931806,0.762394|1,5",0.381766,1,lognormal,"13.254,2.72875|1,5",0.304711,1,lognormal,"13.11,2.6991|1,5",0.304002,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.011a-Cost,0,1 EA,US$_2011,lognormal,"825,675|1,5",0.172327,,lognormal,"2970,2430|1,5",0.206269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.011a-Time,0,1 EA,worker_day,lognormal,"0.970635,0.794165|1,5",0.303639,0,lognormal,"0.635247,0.1588|1,5",0.32411,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.011b-Cost,0,1 EA,US$_2011,lognormal,"3300,2700|1,5",0.171333,,lognormal,"8800,7200|1,5",0.192977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.011b-Time,0,1 EA,worker_day,lognormal,"3.88234,3.17646|1,5",0.303076,0,lognormal,"1.88238,0.4706|1,5",0.315817,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.011c-Cost,0,1 EA,US$_2011,lognormal,"990,810|1,5",0.169067,,lognormal,"9020,7380|1,5",0.21996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.011c-Time,0,1 EA,worker_day,lognormal,"1.16468,0.952918|1,5",0.3018,0,lognormal,"1.92941,0.48235|1,5",0.33299,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.011d-Cost,0,1 EA,US$_2011,lognormal,"4400,3600|1,5",0.171333,,lognormal,"33000,27000|1,5",0.19097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.011d-Time,0,1 EA,worker_day,lognormal,"5.17649,4.23531|1,5",0.303076,0,lognormal,"7.05881,1.7647|1,5",0.314594,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012a-Cost,0,1 EA,US$_2011,lognormal,"495,405|1,5",0.548617,,lognormal,"3465,2835|1,5",0.258207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012a-Time,0,1 EA,worker_day,lognormal,"0.174682,0.142918|1,5",0.602893,0,lognormal,"1.22298,1.00062|1,5",0.359403,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012b-Cost,0,1 EA,US$_2011,lognormal,"825,675|1,5",0.172327,,lognormal,"2970,2430|1,5",0.206269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012b-Time,0,1 EA,worker_day,lognormal,"0.970635,0.794165|1,5",0.303639,0,lognormal,"0.635247,0.1588|1,5",0.32411,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012c-Cost,0,1 EA,US$_2011,lognormal,"495,405|1,5",0.548617,,lognormal,"3465,2835|1,5",0.258207,,lognormal,"825,675|1,5",0.172327,,lognormal,"3465,2835|1,5",0.258207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012c-Time,0,1 EA,worker_day,lognormal,"0.582341,0.476459|1,5",0.602893,0,lognormal,"0.741188,0.1853|1,5",0.359403,1,lognormal,"0.970635,0.794165|1,5",0.303639,0,lognormal,"4.07649,3.33531|1,5",0.359403,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012d-Cost,0,1 EA,US$_2011,lognormal,"935,765|1,5",0.444396,,lognormal,"9735,7965|1,5",0.218277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012d-Time,0,1 EA,worker_day,lognormal,"0.33,0.27|1,5",0.50989,0,lognormal,"3.43585,2.81115|1,5",0.331881,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012e-Cost,0,1 EA,US$_2011,lognormal,"3300,2700|1,5",0.171333,,lognormal,"8800,7200|1,5",0.192977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012e-Time,0,1 EA,worker_day,lognormal,"3.88234,3.17646|1,5",0.303076,0,lognormal,"1.88238,0.4706|1,5",0.315817,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012f-Cost,0,1 EA,US$_2011,lognormal,"935,765|1,5",0.444396,,lognormal,"9735,7965|1,5",0.218277,,lognormal,"3300,2700|1,5",0.171333,,lognormal,"9735,7965|1,5",0.218277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012f-Time,0,1 EA,worker_day,lognormal,"1.1,0.9|1,5",0.50989,0,lognormal,"2.08238,0.5206|1,5",0.331881,1,lognormal,"3.88234,3.17646|1,5",0.303076,0,lognormal,"11.453,9.37062|1,5",0.331881,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012g-Cost,0,1 EA,US$_2011,lognormal,"495,405|1,5",0.548617,,lognormal,"9515,7785|1,5",0.238205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012g-Time,0,1 EA,worker_day,lognormal,"0.582341,0.476459|1,5",0.602893,0,lognormal,"2.03525,0.5088|1,5",0.345314,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012h-Cost,0,1 EA,US$_2011,lognormal,"990,810|1,5",0.169067,,lognormal,"9020,7380|1,5",0.21996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012h-Time,0,1 EA,worker_day,lognormal,"1.16468,0.952918|1,5",0.3018,0,lognormal,"1.92941,0.48235|1,5",0.33299,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012i-Cost,0,1 EA,US$_2011,lognormal,"495,405|1,5",0.548617,,lognormal,"9515,7785|1,5",0.238205,,lognormal,"990,810|1,5",0.169067,,lognormal,"9515,7785|1,5",0.238205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012i-Time,0,1 EA,worker_day,lognormal,"0.174682,0.142918|1,5",0.602893,0,lognormal,"3.35819,2.74761|1,5",0.345314,1,lognormal,"0.349365,0.285835|1,5",0.3018,0,lognormal,"3.35819,2.74761|1,5",0.345314,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012j-Cost,0,1 EA,US$_2011,lognormal,"935,765|1,5",0.444396,,lognormal,"33935,27765|1,5",0.198328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012j-Time,0,1 EA,worker_day,lognormal,"1.1,0.9|1,5",0.50989,0,lognormal,"7.25881,1.8147|1,5",0.319114,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012k-Cost,0,1 EA,US$_2011,lognormal,"4400,3600|1,5",0.171333,,lognormal,"33000,27000|1,5",0.19097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012k-Time,0,1 EA,worker_day,lognormal,"5.17649,4.23531|1,5",0.303076,0,lognormal,"7.05881,1.7647|1,5",0.314594,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012l-Cost,0,1 EA,US$_2011,lognormal,"935,765|1,5",0.444396,,lognormal,"33935,27765|1,5",0.198328,,lognormal,"4400,3600|1,5",0.171333,,lognormal,"33935,27765|1,5",0.198328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.012l-Time,0,1 EA,worker_day,lognormal,"0.33,0.27|1,5",0.50989,0,lognormal,"11.977,9.79938|1,5",0.319114,1,lognormal,"1.55298,1.27062|1,5",0.303076,0,lognormal,"11.977,9.79938|1,5",0.319114,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013a-Cost,0,1 EA,US$_2011,lognormal,"495,405|1,5",0.548617,,lognormal,"3465,2835|1,5",0.258207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013a-Time,0,1 EA,worker_day,lognormal,"0.174682,0.142918|1,5",0.602893,0,lognormal,"1.22298,1.00062|1,5",0.359403,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013b-Cost,0,1 EA,US$_2011,lognormal,"825,675|1,5",0.172327,,lognormal,"2970,2430|1,5",0.206269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013b-Time,0,1 EA,worker_day,lognormal,"0.970635,0.794165|1,5",0.303639,0,lognormal,"0.635247,0.1588|1,5",0.32411,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013c-Cost,0,1 EA,US$_2011,lognormal,"495,405|1,5",0.548617,,lognormal,"3465,2835|1,5",0.258207,,lognormal,"825,675|1,5",0.172327,,lognormal,"3465,2835|1,5",0.258207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013c-Time,0,1 EA,worker_day,lognormal,"0.582341,0.476459|1,5",0.602893,0,lognormal,"1.48239,0.741212|1,5",0.359403,1,lognormal,"0.970635,0.794165|1,5",0.303639,0,lognormal,"4.07649,3.33531|1,5",0.359403,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013d-Cost,0,1 EA,US$_2011,lognormal,"935,765|1,5",0.444396,,lognormal,"9735,7965|1,5",0.218277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013d-Time,0,1 EA,worker_day,lognormal,"0.33,0.27|1,5",0.50989,0,lognormal,"3.43585,2.81115|1,5",0.331881,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013e-Cost,0,1 EA,US$_2011,lognormal,"3300,2700|1,5",0.171333,,lognormal,"8800,7200|1,5",0.192977,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013e-Time,0,1 EA,worker_day,lognormal,"3.88234,3.17646|1,5",0.303076,0,lognormal,"1.88238,0.4706|1,5",0.315817,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013f-Cost,0,1 EA,US$_2011,lognormal,"935,765|1,5",0.444396,,lognormal,"9735,7965|1,5",0.218277,,lognormal,"3300,2700|1,5",0.171333,,lognormal,"9735,7965|1,5",0.218277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013f-Time,0,1 EA,worker_day,lognormal,"1.1,0.9|1,5",0.50989,0,lognormal,"4.16468,2.08232|1,5",0.331881,1,lognormal,"3.88234,3.17646|1,5",0.303076,0,lognormal,"11.453,9.37062|1,5",0.331881,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013g-Cost,0,1 EA,US$_2011,lognormal,"495,405|1,5",0.548617,,lognormal,"9515,7785|1,5",0.238205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013g-Time,0,1 EA,worker_day,lognormal,"0.582341,0.476459|1,5",0.602893,0,lognormal,"2.03525,0.5088|1,5",0.345314,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013h-Cost,0,1 EA,US$_2011,lognormal,"990,810|1,5",0.169067,,lognormal,"9020,7380|1,5",0.21996,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013h-Time,0,1 EA,worker_day,lognormal,"1.16468,0.952918|1,5",0.3018,0,lognormal,"3.85881,1.92939|1,5",0.33299,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013i-Cost,0,1 EA,US$_2011,lognormal,"495,405|1,5",0.548617,,lognormal,"9515,7785|1,5",0.238205,,lognormal,"990,810|1,5",0.169067,,lognormal,"9515,7785|1,5",0.238205,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013i-Time,0,1 EA,worker_day,lognormal,"0.582341,0.476459|1,5",0.602893,0,lognormal,"4.07055,2.03525|1,5",0.345314,1,lognormal,"1.16468,0.952918|1,5",0.3018,0,lognormal,"11.1941,9.15885|1,5",0.345314,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013j-Cost,0,1 EA,US$_2011,lognormal,"935,765|1,5",0.444396,,lognormal,"33935,27765|1,5",0.198328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013j-Time,0,1 EA,worker_day,lognormal,"1.1,0.9|1,5",0.50989,0,lognormal,"7.25881,1.8147|1,5",0.319114,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013k-Cost,0,1 EA,US$_2011,lognormal,"4400,3600|1,5",0.171333,,lognormal,"33000,27000|1,5",0.19097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013k-Time,0,1 EA,worker_day,lognormal,"5.17649,4.23531|1,5",0.303076,0,lognormal,"14.1176,7.05879|1,5",0.314594,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013l-Cost,0,1 EA,US$_2011,lognormal,"935,765|1,5",0.444396,,lognormal,"33935,27765|1,5",0.198328,,lognormal,"4400,3600|1,5",0.171333,,lognormal,"33935,27765|1,5",0.198328,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3032.013l-Time,0,1 EA,worker_day,lognormal,"1.1,0.9|1,5",0.50989,0,lognormal,"14.5176,7.25879|1,5",0.319114,1,lognormal,"5.17649,4.23531|1,5",0.303076,0,lognormal,"39.9235,32.6647|1,5",0.319114,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001a-Cost,0,10 EA,US$_2011,lognormal,"7700,6300|1,5",0.342517,,lognormal,"29700,24300|1,5",0.0925037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001a-Time,0,10 EA,worker_day,lognormal,"9.05853,7.41147|1,5",0.424049,0,lognormal,"12.7055,6.35253|1,5",0.266565,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001b-Cost,0,10 EA,US$_2011,lognormal,"7700,6300|1,5",0.342517,,lognormal,"29700,24300|1,5",0.0925037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001b-Time,0,10 EA,worker_day,lognormal,"9.05853,7.41147|1,5",0.424049,0,lognormal,"12.7055,6.35253|1,5",0.266565,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001c-Cost,0,10 EA,US$_2011,lognormal,"7700,6300|1,5",0.342517,,lognormal,"29700,24300|1,5",0.0925037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001c-Time,0,10 EA,worker_day,lognormal,"9.05853,7.41147|1,5",0.424049,0,lognormal,"12.7055,6.35253|1,5",0.266565,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001d-Cost,0,10 EA,US$_2011,lognormal,"7700,6300|1,5",0.342517,,lognormal,"29700,24300|1,5",0.0925037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.001d-Time,0,10 EA,worker_day,lognormal,"9.05853,7.41147|1,5",0.424049,0,lognormal,"12.7055,6.35253|1,5",0.266565,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.002a-Cost,0,10 EA,US$_2011,lognormal,"7700,6300|1,5",0.342517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.002a-Time,0,10 EA,worker_day,lognormal,"9.05853,7.41147|1,5",0.424049,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.002b-Cost,0,10 EA,US$_2011,lognormal,"7700,6300|1,5",0.342517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.002b-Time,0,10 EA,worker_day,lognormal,"9.05853,7.41147|1,5",0.424049,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.002c-Cost,0,10 EA,US$_2011,lognormal,"7700,6300|1,5",0.342517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.002c-Time,0,10 EA,worker_day,lognormal,"9.05853,7.41147|1,5",0.424049,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.002d-Cost,0,10 EA,US$_2011,lognormal,"7700,6300|1,5",0.342517,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.002d-Time,0,10 EA,worker_day,lognormal,"9.05853,7.41147|1,5",0.424049,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011a-Cost,0,1000 LF,US$_2011,lognormal,"715,585|1,5",0.367364,,lognormal,"6985,5715|1,5",0.100199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011a-Time,0,1000 LF,worker_day,lognormal,"0.841171,0.688229|1,5",0.444361,0,lognormal,"2.98826,1.49414|1,5",0.269332,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011b-Cost,0,1000 LF,US$_2011,lognormal,"715,585|1,5",0.367364,,lognormal,"6985,5715|1,5",0.100199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011b-Time,0,1000 LF,worker_day,lognormal,"0.841171,0.688229|1,5",0.444361,0,lognormal,"2.98826,1.49414|1,5",0.269332,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011c-Cost,0,1000 LF,US$_2011,lognormal,"715,585|1,5",0.367364,,lognormal,"6985,5715|1,5",0.100199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011c-Time,0,1000 LF,worker_day,lognormal,"0.841171,0.688229|1,5",0.444361,0,lognormal,"2.98826,1.49414|1,5",0.269332,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011d-Cost,0,1000 LF,US$_2011,lognormal,"715,585|1,5",0.367364,,lognormal,"6985,5715|1,5",0.100199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.011d-Time,0,1000 LF,worker_day,lognormal,"0.841171,0.688229|1,5",0.444361,0,lognormal,"2.98826,1.49414|1,5",0.269332,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012a-Cost,0,1000 LF,US$_2011,lognormal,"1045,855|1,5",0.255963,,lognormal,"8745,7155|1,5",0.0805538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012a-Time,0,1000 LF,worker_day,lognormal,"1.22936,1.00584|1,5",0.357795,0,lognormal,"3.74119,1.87061|1,5",0.262657,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012b-Cost,0,1000 LF,US$_2011,lognormal,"1045,855|1,5",0.255963,,lognormal,"8745,7155|1,5",0.0805538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012b-Time,0,1000 LF,worker_day,lognormal,"1.22936,1.00584|1,5",0.357795,0,lognormal,"3.74119,1.87061|1,5",0.262657,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012c-Cost,0,1000 LF,US$_2011,lognormal,"1045,855|1,5",0.255963,,lognormal,"8745,7155|1,5",0.0805538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012c-Time,0,1000 LF,worker_day,lognormal,"1.22936,1.00584|1,5",0.357795,0,lognormal,"3.74119,1.87061|1,5",0.262657,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012d-Cost,0,1000 LF,US$_2011,lognormal,"1045,855|1,5",0.255963,,lognormal,"8745,7155|1,5",0.0805538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.012d-Time,0,1000 LF,worker_day,lognormal,"1.22936,1.00584|1,5",0.357795,0,lognormal,"3.74119,1.87061|1,5",0.262657,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021a-Cost,0,1000 LF,US$_2011,lognormal,"1375,1125|1,5",0.196428,,lognormal,"17545,14355|1,5",0.184729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021a-Time,0,1000 LF,worker_day,lognormal,"1.61766,1.32354|1,5",0.317937,0,lognormal,"7.50587,3.75293|1,5",0.310845,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021b-Cost,0,1000 LF,US$_2011,lognormal,"1375,1125|1,5",0.196428,,lognormal,"17545,14355|1,5",0.184729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021b-Time,0,1000 LF,worker_day,lognormal,"1.61766,1.32354|1,5",0.317937,0,lognormal,"7.50587,3.75293|1,5",0.310845,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021c-Cost,0,1000 LF,US$_2011,lognormal,"1375,1125|1,5",0.196428,,lognormal,"17545,14355|1,5",0.184729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021c-Time,0,1000 LF,worker_day,lognormal,"1.51657,1.24083|1,5",0.317937,0,lognormal,"19.3511,15.8327|1,5",0.310845,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021d-Cost,0,1000 LF,US$_2011,lognormal,"1375,1125|1,5",0.196428,,lognormal,"17545,14355|1,5",0.184729,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.021d-Time,0,1000 LF,worker_day,lognormal,"1.51657,1.24083|1,5",0.317937,0,lognormal,"19.3511,15.8327|1,5",0.310845,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022a-Cost,0,1000 LF,US$_2011,lognormal,"2145,1755|1,5",0.127349,,lognormal,"23595,19305|1,5",0.135745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022a-Time,0,1000 LF,worker_day,lognormal,"2.36577,1.93563|1,5",0.280567,0,lognormal,"26.0239,21.2923|1,5",0.284476,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022b-Cost,0,1000 LF,US$_2011,lognormal,"2145,1755|1,5",0.127349,,lognormal,"23595,19305|1,5",0.135745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022b-Time,0,1000 LF,worker_day,lognormal,"2.36577,1.93563|1,5",0.280567,0,lognormal,"26.0239,21.2923|1,5",0.284476,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022c-Cost,0,1000 LF,US$_2011,lognormal,"2145,1755|1,5",0.127349,,lognormal,"23595,19305|1,5",0.135745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022c-Time,0,1000 LF,worker_day,lognormal,"2.36577,1.93563|1,5",0.280567,0,lognormal,"26.0239,21.2923|1,5",0.284476,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022d-Cost,0,1000 LF,US$_2011,lognormal,"2145,1755|1,5",0.127349,,lognormal,"23595,19305|1,5",0.135745,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.022d-Time,0,1000 LF,worker_day,lognormal,"2.36577,1.93563|1,5",0.280567,0,lognormal,"26.0239,21.2923|1,5",0.284476,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.031a-Cost,0,10 EA,US$_2011,normal,"3300,2700|1,5",0.206551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.031a-Time,0,10 EA,worker_day,normal,"3.88194,3.17606|1,5",0.324289,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.031b-Cost,0,10 EA,US$_2011,normal,"3300,2700|1,5",0.206551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.031b-Time,0,10 EA,worker_day,normal,"3.88194,3.17606|1,5",0.324289,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032a-Cost,0,10 EA,US$_2011,normal,"3300,2700|1,5",0.206551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032a-Time,0,10 EA,worker_day,normal,"3.88194,3.17606|1,5",0.324289,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032b-Cost,0,10 EA,US$_2011,normal,"3300,2700|1,5",0.206551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032b-Time,0,10 EA,worker_day,normal,"3.88194,3.17606|1,5",0.324289,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032c-Cost,0,10 EA,US$_2011,normal,"3300,2700|1,5",0.206551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032c-Time,0,10 EA,worker_day,normal,"3.88194,3.17606|1,5",0.324289,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032d-Cost,0,10 EA,US$_2011,normal,"3300,2700|1,5",0.206551,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.032d-Time,0,10 EA,worker_day,normal,"3.88194,3.17606|1,5",0.324289,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.041a-Cost,0,10 EA,US$_2011,lognormal,"16500,13500|1,5",0.294151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.041a-Time,0,10 EA,worker_day,lognormal,"19.4117,15.8823|1,5",0.386037,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.041b-Cost,0,10 EA,US$_2011,lognormal,"16500,13500|1,5",0.294151,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.041b-Time,0,10 EA,worker_day,lognormal,"19.4117,15.8823|1,5",0.386037,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.101a-Cost,0,1 EA,US$_2011,lognormal,"2915,2385|1,5",0.139425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.101a-Time,0,1 EA,worker_day,lognormal,"3.42936,2.80584|1,5",0.28625,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.102a-Cost,0,1 EA,US$_2011,lognormal,"770,630|1,5",0.342516,,lognormal,"3685,3015|1,5",0.183623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.102a-Time,0,1 EA,worker_day,lognormal,"0.905853,0.741147|1,5",0.424049,0,lognormal,"0.788218,0.19705|1,5",0.310189,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.102b-Cost,0,1 EA,US$_2011,lognormal,"2915,2385|1,5",0.139425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.102b-Time,0,1 EA,worker_day,lognormal,"3.42936,2.80584|1,5",0.28625,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.102c-Cost,0,1 EA,US$_2011,lognormal,"770,630|1,5",0.342516,,lognormal,"3685,3015|1,5",0.183623,,lognormal,"2915,2385|1,5",0.139425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.102c-Time,0,1 EA,worker_day,lognormal,"0.905853,0.741147|1,5",0.424049,0,lognormal,"0.788218,0.19705|1,5",0.310189,1,lognormal,"3.42936,2.80584|1,5",0.28625,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.103a-Cost,0,1 EA,US$_2011,lognormal,"770,630|1,5",0.342516,,lognormal,"3685,3015|1,5",0.183623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.103a-Time,0,1 EA,worker_day,lognormal,"0.905853,0.741147|1,5",0.424049,0,lognormal,"0.788218,0.19705|1,5",0.310189,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.103b-Cost,0,1 EA,US$_2011,lognormal,"2915,2385|1,5",0.139425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.103b-Time,0,1 EA,worker_day,lognormal,"3.42936,2.80584|1,5",0.28625,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.103c-Cost,0,1 EA,US$_2011,lognormal,"770,630|1,5",0.342516,,lognormal,"3685,3015|1,5",0.183623,,lognormal,"2915,2385|1,5",0.139425,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3041.103c-Time,0,1 EA,worker_day,lognormal,"0.905853,0.741147|1,5",0.424049,0,lognormal,"0.788218,0.19705|1,5",0.310189,1,lognormal,"3.42936,2.80584|1,5",0.28625,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.011a-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.151076,,lognormal,"32120,26280|1,5",0.165485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.011a-Time,0,1 EA,worker_day,lognormal,"0.470547,0.235253|1,5",0.292103,0,lognormal,"10.3059,3.43531|1,5",0.299809,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.011b-Cost,0,1 EA,US$_2011,lognormal,"1650,1350|1,5",0.176271,,lognormal,"64900,53100|1,5",0.172502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.011b-Time,0,1 EA,worker_day,lognormal,"0.705871,0.352929|1,5",0.305894,0,lognormal,"17.353,5.2059|1,5",0.303738,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.011c-Cost,0,1 EA,US$_2011,lognormal,"2200,1800|1,5",0.171333,,lognormal,"137720,112680|1,5",0.174419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.011c-Time,0,1 EA,worker_day,lognormal,"2.58819,2.11761|1,5",0.303076,0,lognormal,"29.4588,7.3647|1,5",0.304831,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.011d-Cost,0,1 EA,US$_2011,lognormal,"2200,1800|1,5",0.171333,,lognormal,"204600,167400|1,5",0.174549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.011d-Time,0,1 EA,worker_day,lognormal,"2.58819,2.11761|1,5",0.303076,0,lognormal,"37.2,7.6588|1,5",0.304906,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013a-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"33220,27180|1,5",0.175085,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013a-Time,0,1 EA,worker_day,lognormal,"1.29415,1.05885|1,5",0.516802,0,lognormal,"10.6588,3.55296|1,5",0.305213,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013b-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.151076,,lognormal,"32120,26280|1,5",0.165485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013b-Time,0,1 EA,worker_day,lognormal,"0.470547,0.235253|1,5",0.292103,0,lognormal,"10.3059,3.43531|1,5",0.299809,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013c-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"33220,27180|1,5",0.175085,,lognormal,"1100,900|1,5",0.151076,,lognormal,"32120,26280|1,5",0.165485,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013c-Time,0,1 EA,worker_day,lognormal,"1.29415,1.05885|1,5",0.516802,0,lognormal,"10.6588,3.55296|1,5",0.305213,1,lognormal,"0.352947,0.117653|1,5",0.292103,0,lognormal,"10.3059,3.43531|1,5",0.299809,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013d-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"66550,54450|1,5",0.178294,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013d-Time,0,1 EA,worker_day,normal,"1.94117,1.58823|1,5",0.470388,0,lognormal,"17.7941,5.33825|1,5",0.307065,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013e-Cost,0,1 EA,US$_2011,lognormal,"1650,1350|1,5",0.176271,,lognormal,"64900,53100|1,5",0.172502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013e-Time,0,1 EA,worker_day,lognormal,"0.705871,0.352929|1,5",0.305894,0,lognormal,"17.353,5.2059|1,5",0.303738,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013f-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"66550,54450|1,5",0.178294,,lognormal,"1650,1350|1,5",0.176271,,lognormal,"64900,53100|1,5",0.172502,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013f-Time,0,1 EA,worker_day,normal,"1.94117,1.58823|1,5",0.470388,0,lognormal,"17.7941,5.33825|1,5",0.307065,1,lognormal,"0.529371,0.17645|1,5",0.305894,0,lognormal,"17.353,5.2059|1,5",0.303738,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013g-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"140140,114660|1,5",0.176538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013g-Time,0,1 EA,worker_day,normal,"1.03532,0.517676|1,5",0.388198,0,lognormal,"29.9764,7.4941|1,5",0.306049,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013h-Cost,0,1 EA,US$_2011,lognormal,"2200,1800|1,5",0.171333,,lognormal,"137720,112680|1,5",0.174419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013h-Time,0,1 EA,worker_day,lognormal,"2.58819,2.11761|1,5",0.303076,0,lognormal,"29.4588,7.3647|1,5",0.304831,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013i-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"140140,114660|1,5",0.176538,,lognormal,"2200,1800|1,5",0.171333,,lognormal,"137720,112680|1,5",0.174419,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013i-Time,0,1 EA,worker_day,normal,"2.84702,2.32938|1,5",0.388198,0,lognormal,"29.9764,7.4941|1,5",0.306049,1,lognormal,"2.58819,2.11761|1,5",0.303076,0,lognormal,"29.4588,7.3647|1,5",0.304831,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013j-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"207240,169560|1,5",0.175987,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013j-Time,0,1 EA,worker_day,lognormal,"1.12945,0.564747|1,5",0.381766,0,lognormal,"37.68,7.75765|1,5",0.305731,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013k-Cost,0,1 EA,US$_2011,lognormal,"2200,1800|1,5",0.171333,,lognormal,"204600,167400|1,5",0.174549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013k-Time,0,1 EA,worker_day,lognormal,"2.58819,2.11761|1,5",0.303076,0,lognormal,"37.2,7.6588|1,5",0.304906,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013l-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"207240,169560|1,5",0.175987,,lognormal,"2200,1800|1,5",0.171333,,lognormal,"204600,167400|1,5",0.174549,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3052.013l-Time,0,1 EA,worker_day,lognormal,"3.10585,2.54115|1,5",0.381766,0,lognormal,"37.68,7.75765|1,5",0.305731,1,lognormal,"2.58819,2.11761|1,5",0.303076,0,lognormal,"37.2,7.6588|1,5",0.304906,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3067.011a-Cost,0,1 EA,US$_2011,normal,"4565,3735|1,5",0.182591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3067.011a-Time,0,1 EA,worker_day,normal,"5.37064,4.39416|1,5",0.30958,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3067.012a-Cost,0,1 EA,US$_2011,normal,"550,450|1,5",0.282524,,normal,"5115,4185|1,5",0.192978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3067.012a-Time,0,1 EA,worker_day,normal,"0.235324,0.117676|1,5",0.377253,0,normal,"6.01766,4.92354|1,5",0.315818,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3067.012b-Cost,0,1 EA,US$_2011,normal,"4565,3735|1,5",0.182591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3067.012b-Time,0,1 EA,worker_day,normal,"1.95294,0.976465|1,5",0.30958,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3067.012c-Cost,0,1 EA,US$_2011,normal,"550,450|1,5",0.282524,,normal,"5115,4185|1,5",0.192978,,normal,"4565,3735|1,5",0.182591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D3067.012c-Time,0,1 EA,worker_day,normal,"0.235324,0.117676|1,5",0.377253,0,normal,"6.01766,4.92354|1,5",0.315818,0,normal,"5.37064,4.39416|1,5",0.309579,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.021a-Cost,0,1000 LF,US$_2011,lognormal,"385,315|3,10",0.648767,,lognormal,"2915,2385|3,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.021a-Time,0,1000 LF,worker_day,lognormal,"0.451176,0.368824|3,10",0.695269,0,lognormal,"0.936765,0.313235|3,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.022a-Cost,0,1000 LF,US$_2011,lognormal,"385,315|3,10",0.648767,,lognormal,"2915,2385|3,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.022a-Time,0,1000 LF,worker_day,lognormal,"0.451176,0.368824|3,10",0.695269,0,lognormal,"0.936765,0.313235|3,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.023a-Cost,0,1000 LF,US$_2011,lognormal,"385,315|3,10",0.648767,,lognormal,"2915,2385|3,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.023a-Time,0,1000 LF,worker_day,lognormal,"0.451176,0.368824|3,10",0.695269,0,lognormal,"0.936765,0.313235|3,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.024a-Cost,0,1000 LF,US$_2011,lognormal,"385,315|3,10",0.648767,,lognormal,"2915,2385|3,10",0.405366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.024a-Time,0,1000 LF,worker_day,lognormal,"0.451176,0.368824|3,10",0.695269,0,lognormal,"0.936765,0.313235|3,10",0.476258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.031a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.031a-Time,0,100 EA,worker_day,lognormal,"0.238824,0.121176|2,5",0.443679,0,lognormal,"0.648824,0.531176|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.032a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.032a-Time,0,100 EA,worker_day,lognormal,"0.238824,0.121176|2,5",0.443679,0,lognormal,"0.648824,0.531176|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.033a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.033a-Time,0,100 EA,worker_day,lognormal,"0.648824,0.531176|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.034a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.034a-Time,0,100 EA,worker_day,lognormal,"0.648824,0.531176|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.041a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.041a-Time,0,100 EA,worker_day,lognormal,"0.648824,0.531176|2,5",0.443679,0,lognormal,"0.178824,0.0611765|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.042a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.042a-Time,0,100 EA,worker_day,lognormal,"0.648824,0.531176|2,5",0.443679,0,lognormal,"0.178824,0.0611765|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.053a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.053a-Time,0,100 EA,worker_day,lognormal,"0.648824,0.531176|2,5",0.443679,0,lognormal,"0.178824,0.0611765|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.054a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.054a-Time,0,100 EA,worker_day,lognormal,"0.648824,0.531176|2,5",0.443679,0,lognormal,"0.178824,0.0611765|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.063a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.063a-Time,0,100 EA,worker_day,lognormal,"0.238824,0.121176|2,5",0.443679,0,lognormal,"0.648824,0.531176|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.064a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.064a-Time,0,100 EA,worker_day,lognormal,"0.238824,0.121176|2,5",0.443679,0,lognormal,"0.648824,0.531176|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.071a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.071a-Time,0,100 EA,worker_day,lognormal,"0.238824,0.121176|2,5",0.443679,0,lognormal,"0.648824,0.531176|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.072a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.072a-Time,0,100 EA,worker_day,lognormal,"0.238824,0.121176|2,5",0.443679,0,lognormal,"0.648824,0.531176|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.073a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.073a-Time,0,100 EA,worker_day,lognormal,"0.648824,0.531176|2,5",0.443679,0,lognormal,"0.178824,0.0611765|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.074a-Cost,0,100 EA,US$_2011,lognormal,"550,450|2,5",0.36654,,lognormal,"550,450|2,5",0.36654,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D4011.074a-Time,0,100 EA,worker_day,lognormal,"0.648824,0.531176|2,5",0.443679,0,lognormal,"0.178824,0.0611765|2,5",0.443679,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.011a-Cost,0,1 EA,US$_2011,lognormal,"8332.5,6817.5|1,5",0.187503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.011a-Time,0,1 EA,worker_day,lognormal,"2.67358,0.891224|1,5",0.312502,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.011b-Cost,0,1 EA,US$_2011,lognormal,"26675,21825|1,5",0.184467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.011b-Time,0,1 EA,worker_day,lognormal,"7.13234,2.1397|1,5",0.31069,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.011c-Cost,0,1 EA,US$_2011,lognormal,"46970,38430|1,5",0.181228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.011c-Time,0,1 EA,worker_day,lognormal,"10.047,2.51175|1,5",0.308777,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.011d-Cost,0,1 EA,US$_2011,lognormal,"62700,51300|1,5",0.182486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.011d-Time,0,1 EA,worker_day,lognormal,"11.4,2.34705|1,5",0.309518,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013a-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"9432.5,7717.5|1,5",0.218938,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013a-Time,0,1 EA,worker_day,lognormal,"1.29415,1.05885|1,5",0.516802,0,lognormal,"11.097,9.07938|1,5",0.332316,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013b-Cost,0,1 EA,US$_2011,lognormal,"8332.5,6817.5|1,5",0.187503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013b-Time,0,1 EA,worker_day,lognormal,"7.96488,6.51672|1,5",0.312502,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013c-Cost,0,1 EA,US$_2011,lognormal,"1100,900|1,5",0.45231,,lognormal,"9432.5,7717.5|1,5",0.218938,,lognormal,"8332.5,6817.5|1,5",0.187503,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013c-Time,0,1 EA,worker_day,lognormal,"1.05149,0.860312|1,5",0.516802,0,lognormal,"2.45897,0.81965|1,5",0.332316,1,lognormal,"2.17228,0.724119|1,5",0.312502,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013d-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"28325,23175|1,5",0.197362,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013d-Time,0,1 EA,worker_day,normal,"1.57718,1.29042|1,5",0.470388,0,lognormal,"6.1535,1.84605|1,5",0.318515,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013e-Cost,0,1 EA,US$_2011,lognormal,"26675,21825|1,5",0.184467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013e-Time,0,1 EA,worker_day,lognormal,"5.79501,1.7385|1,5",0.31069,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013f-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"28325,23175|1,5",0.197362,,lognormal,"26675,21825|1,5",0.184467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013f-Time,0,1 EA,worker_day,normal,"1.57718,1.29042|1,5",0.470388,0,lognormal,"6.1535,1.84605|1,5",0.318515,1,lognormal,"5.79501,1.7385|1,5",0.31069,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013g-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"49390,40410|1,5",0.186899,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013g-Time,0,1 EA,worker_day,normal,"2.31319,1.89261|1,5",0.388198,0,lognormal,"8.58381,2.14595|1,5",0.31214,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013h-Cost,0,1 EA,US$_2011,lognormal,"46970,38430|1,5",0.181228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013h-Time,0,1 EA,worker_day,lognormal,"8.16322,2.0408|1,5",0.308777,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013i-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"49390,40410|1,5",0.186899,,lognormal,"46970,38430|1,5",0.181228,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013i-Time,0,1 EA,worker_day,normal,"2.31319,1.89261|1,5",0.388198,0,lognormal,"8.58381,2.14595|1,5",0.31214,1,lognormal,"8.16322,2.0408|1,5",0.308777,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013j-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"65340,53460|1,5",0.186735,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013j-Time,0,1 EA,worker_day,lognormal,"2.52351,2.06469|1,5",0.381766,0,lognormal,"9.65254,1.9873|1,5",0.312041,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013k-Cost,0,1 EA,US$_2011,lognormal,"62700,51300|1,5",0.182486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013k-Time,0,1 EA,worker_day,lognormal,"9.26253,1.907|1,5",0.309518,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013l-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"65340,53460|1,5",0.186735,,lognormal,"62700,51300|1,5",0.182486,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5011.013l-Time,0,1 EA,worker_day,lognormal,"2.52351,2.06469|1,5",0.381766,0,lognormal,"9.65254,1.9873|1,5",0.312041,1,lognormal,"9.26253,1.907|1,5",0.309518,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.013a-Cost,0,1 EA,US$_2011,normal,"4565,3735|1,5",0.182591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.013a-Time,0,1 EA,worker_day,normal,"1.95294,0.976465|1,5",0.30958,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.013b-Cost,0,1 EA,US$_2011,normal,"550,450|1,5",0.282524,,normal,"5115,4185|1,5",0.192978,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.013b-Time,0,1 EA,worker_day,normal,"0.647024,0.529376|1,5",0.377253,0,normal,"1.64116,0.54705|1,5",0.315818,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.013c-Cost,0,1 EA,US$_2011,normal,"4565,3735|1,5",0.182591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.013c-Time,0,1 EA,worker_day,normal,"5.37064,4.39416|1,5",0.30958,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.013d-Cost,0,1 EA,US$_2011,normal,"550,450|1,5",0.282524,,normal,"5115,4185|1,5",0.192978,,normal,"4565,3735|1,5",0.182591,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.013d-Time,0,1 EA,worker_day,normal,"0.647024,0.529376|1,5",0.377253,0,normal,"1.64116,0.54705|1,5",0.315818,0,normal,"1.46474,0.488265|1,5",0.309579,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.021a-Cost,0,1 EA,US$_2011,lognormal,"10202.5,8347.5|1,5",0.157199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.021a-Time,0,1 EA,worker_day,lognormal,"3.27358,1.09122|1,5",0.295316,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.021b-Cost,0,1 EA,US$_2011,normal,"19030,15570|1,5",0.0617281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.021b-Time,0,1 EA,worker_day,normal,"5.08819,1.52645|1,5",0.257508,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.021c-Cost,0,1 EA,US$_2011,normal,"32560,26640|1,5",0.0728037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.021c-Time,0,1 EA,worker_day,normal,"6.96475,1.7412|1,5",0.260385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.021d-Cost,0,1 EA,US$_2011,normal,"56540,46260|1,5",0.0682835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.021d-Time,0,1 EA,worker_day,normal,"10.28,2.11645|1,5",0.259158,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023a-Cost,0,1 EA,US$_2011,normal,"550,450|1,5",0.282524,,lognormal,"10752.5,8797.5|1,5",0.163097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023a-Time,0,1 EA,worker_day,normal,"0.647024,0.529376|1,5",0.377253,0,lognormal,"3.45,1.15|1,5",0.298498,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023b-Cost,0,1 EA,US$_2011,lognormal,"10202.5,8347.5|1,5",0.157199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023b-Time,0,1 EA,worker_day,lognormal,"3.27358,1.09122|1,5",0.295316,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023c-Cost,0,1 EA,US$_2011,normal,"550,450|1,5",0.282524,,lognormal,"10752.5,8797.5|1,5",0.163097,,lognormal,"10202.5,8347.5|1,5",0.157199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023c-Time,0,1 EA,worker_day,normal,"0.647024,0.529376|1,5",0.377253,0,lognormal,"3.45,1.15|1,5",0.298498,0,lognormal,"3.27358,1.09122|1,5",0.295316,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023d-Cost,0,1 EA,US$_2011,lognormal,"880,720|1,5",0.413752,,lognormal,"19910,16290|1,5",0.186586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023d-Time,0,1 EA,worker_day,lognormal,"1.03532,0.847082|1,5",0.483416,0,lognormal,"5.32351,1.59705|1,5",0.311952,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023e-Cost,0,1 EA,US$_2011,normal,"19030,15570|1,5",0.0617281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023e-Time,0,1 EA,worker_day,normal,"5.08819,1.52645|1,5",0.257508,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023f-Cost,0,1 EA,US$_2011,lognormal,"880,720|1,5",0.413752,,lognormal,"19910,16290|1,5",0.186586,,normal,"19030,15570|1,5",0.0617277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023f-Time,0,1 EA,worker_day,lognormal,"1.03532,0.847082|1,5",0.483416,0,lognormal,"5.32351,1.59705|1,5",0.311952,0,normal,"5.08819,1.52645|1,5",0.257508,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023g-Cost,0,1 EA,US$_2011,lognormal,"1320,1080|1,5",0.335162,,lognormal,"33880,27720|1,5",0.194005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023g-Time,0,1 EA,worker_day,lognormal,"1.55298,1.27062|1,5",0.418131,0,lognormal,"7.24703,1.81175|1,5",0.316446,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023h-Cost,0,1 EA,US$_2011,normal,"32560,26640|1,5",0.0728037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023h-Time,0,1 EA,worker_day,normal,"6.96475,1.7412|1,5",0.260385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023i-Cost,0,1 EA,US$_2011,lognormal,"1320,1080|1,5",0.335162,,lognormal,"33880,27720|1,5",0.194005,,normal,"32560,26640|1,5",0.0728026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023i-Time,0,1 EA,worker_day,lognormal,"1.55298,1.27062|1,5",0.418131,0,lognormal,"7.24703,1.81175|1,5",0.316446,0,normal,"6.96475,1.7412|1,5",0.260385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023j-Cost,0,1 EA,US$_2011,lognormal,"1320,1080|1,5",0.335162,,lognormal,"57860,47340|1,5",0.185913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023j-Time,0,1 EA,worker_day,lognormal,"1.55298,1.27062|1,5",0.418131,0,lognormal,"10.52,2.1659|1,5",0.31155,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023k-Cost,0,1 EA,US$_2011,normal,"56540,46260|1,5",0.0682835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023k-Time,0,1 EA,worker_day,normal,"10.28,2.11645|1,5",0.259158,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023l-Cost,0,1 EA,US$_2011,lognormal,"1320,1080|1,5",0.335162,,lognormal,"57860,47340|1,5",0.185913,,normal,"56540,46260|1,5",0.068283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.023l-Time,0,1 EA,worker_day,lognormal,"1.55298,1.27062|1,5",0.418131,0,lognormal,"10.52,2.1659|1,5",0.31155,1,normal,"10.28,2.11645|1,5",0.259157,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.031a-Cost,0,1 EA,US$_2011,lognormal,"12057.5,8347.5|1,5",0.157199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.031a-Time,0,1 EA,worker_day,lognormal,"5.45593,1.09122|1,5",0.295316,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.031b-Cost,0,1 EA,US$_2011,normal,"22490,15570|1,5",0.0617281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.031b-Time,0,1 EA,worker_day,normal,"9.15878,1.52645|1,5",0.257508,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.031c-Cost,0,1 EA,US$_2011,normal,"38480,26640|1,5",0.0728037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.031c-Time,0,1 EA,worker_day,normal,"13.9295,1.7412|1,5",0.260385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.031d-Cost,0,1 EA,US$_2011,normal,"66820,46260|1,5",0.0682835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.031d-Time,0,1 EA,worker_day,normal,"22.3741,2.11645|1,5",0.259158,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033a-Cost,0,1 EA,US$_2011,normal,"650,450|1,5",0.282524,,lognormal,"12707.5,8797.5|1,5",0.163097,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033a-Time,0,1 EA,worker_day,normal,"0.764471,0.529176|1,5",0.377253,0,lognormal,"5.75,1.15|1,5",0.298498,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033b-Cost,0,1 EA,US$_2011,lognormal,"11130,7420|1,5",0.157199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033b-Time,0,1 EA,worker_day,lognormal,"4.91025,1.22755|1,5",0.295316,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033c-Cost,0,1 EA,US$_2011,normal,"600,400|1,5",0.282524,,lognormal,"11730,7820|1,5",0.163097,,lognormal,"11130,7420|1,5",0.157199,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033c-Time,0,1 EA,worker_day,normal,"0.794153,0.529447|1,5",0.377253,0,lognormal,"5.175,1.29375|1,5",0.298498,0,lognormal,"4.91025,1.22755|1,5",0.295316,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033d-Cost,0,1 EA,US$_2011,lognormal,"1040,720|1,5",0.413752,,lognormal,"23530,16290|1,5",0.186586,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033d-Time,0,1 EA,worker_day,lognormal,"1.22335,0.846882|1,5",0.483416,0,lognormal,"9.58234,1.59705|1,5",0.311952,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033e-Cost,0,1 EA,US$_2011,normal,"20760,13840|1,5",0.0617281,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033e-Time,0,1 EA,worker_day,normal,"8.01401,1.7173|1,5",0.257508,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033f-Cost,0,1 EA,US$_2011,lognormal,"960,640|1,5",0.413752,,lognormal,"21720,14480|1,5",0.186586,,normal,"20760,13840|1,5",0.0617277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033f-Time,0,1 EA,worker_day,lognormal,"1.27056,0.847035|1,5",0.483416,0,lognormal,"8.38458,1.7967|1,5",0.311952,0,normal,"8.01401,1.7173|1,5",0.257508,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033g-Cost,0,1 EA,US$_2011,lognormal,"1560,1080|1,5",0.335162,,lognormal,"40040,27720|1,5",0.194005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033g-Time,0,1 EA,worker_day,lognormal,"1.83553,1.27082|1,5",0.418131,0,lognormal,"14.4941,1.81175|1,5",0.316446,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033h-Cost,0,1 EA,US$_2011,normal,"35520,23680|1,5",0.0728037,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033h-Time,0,1 EA,worker_day,normal,"11.7529,1.9588|1,5",0.260385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033i-Cost,0,1 EA,US$_2011,lognormal,"1440,960|1,5",0.335162,,lognormal,"36960,24640|1,5",0.194005,,normal,"35520,23680|1,5",0.0728026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033i-Time,0,1 EA,worker_day,lognormal,"1.90585,1.27055|1,5",0.418131,0,lognormal,"12.2294,2.03825|1,5",0.316446,0,normal,"11.7529,1.9588|1,5",0.260385,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033j-Cost,0,1 EA,US$_2011,lognormal,"1560,1080|1,5",0.335162,,lognormal,"68380,47340|1,5",0.185913,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033j-Time,0,1 EA,worker_day,lognormal,"1.83553,1.27082|1,5",0.418131,0,lognormal,"22.8965,2.1659|1,5",0.31155,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033k-Cost,0,1 EA,US$_2011,normal,"61680,41120|1,5",0.0682835,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033k-Time,0,1 EA,worker_day,normal,"18.368,2.38105|1,5",0.259158,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033l-Cost,0,1 EA,US$_2011,lognormal,"1440,960|1,5",0.335162,,lognormal,"63120,42080|1,5",0.185913,,normal,"61680,41120|1,5",0.068283,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5012.033l-Time,0,1 EA,worker_day,lognormal,"1.90585,1.27055|1,5",0.418131,0,lognormal,"18.7967,2.4366|1,5",0.31155,1,normal,"18.368,2.38105|1,5",0.259157,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.011a-Cost,0,1 EA,US$_2011,lognormal,"14400,9600|1,5",0.0962074,,normal,"900,600|1,5",0.285477,,lognormal,"15300,10200|1,5",0.105997,,normal,"3780,2520|1,5",0.240252,,lognormal,"18180,12120|1,5",0.126028,,normal,"4680,3120|1,5",0.248279,,lognormal,"19080,12720|1,5",0.132556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.011a-Time,0,1 EA,worker_day,lognormal,"19.0589,12.7059|1,5",0.267873,1,normal,"1.19113,0.794071|1,5",0.37947,1,lognormal,"20.25,13.5|1,5",0.271543,1,normal,"5.00292,3.33528|1,5",0.346729,1,lognormal,"24.0618,16.0412|1,5",0.27997,1,normal,"6.19405,4.12935|1,5",0.352338,1,lognormal,"25.2529,16.8353|1,5",0.282968,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.013a-Cost,0,1 EA,US$_2011,normal,"1200,800|1,5",0.138868,,lognormal,"19380,12920|1,5",0.126736,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.013a-Time,0,1 EA,worker_day,normal,"1.58821,1.05879|1,5",0.285979,1,lognormal,"25.65,17.1|1,5",0.280289,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.013b-Cost,0,1 EA,US$_2011,lognormal,"14400,9600|1,5",0.0962074,,normal,"900,600|1,5",0.285477,,lognormal,"15300,10200|1,5",0.105997,,normal,"3780,2520|1,5",0.240252,,lognormal,"18180,12120|1,5",0.126028,,normal,"4680,3120|1,5",0.248279,,lognormal,"19080,12720|1,5",0.132556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.013b-Time,0,1 EA,worker_day,lognormal,"19.0589,12.7059|1,5",0.267873,1,normal,"1.19113,0.794071|1,5",0.37947,1,lognormal,"20.25,13.5|1,5",0.271543,1,normal,"5.00292,3.33528|1,5",0.346729,1,lognormal,"24.0618,16.0412|1,5",0.27997,1,normal,"6.19405,4.12935|1,5",0.352338,1,lognormal,"25.2529,16.8353|1,5",0.282968,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.013c-Cost,0,1 EA,US$_2011,normal,"1200,800|1,5",0.138868,,lognormal,"19380,12920|1,5",0.126736,,lognormal,"14400,9600|1,5",0.0962069,,lognormal,"15300,10200|1,5",0.105997,,lognormal,"20280,13520|1,5",0.132855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.013c-Time,0,1 EA,worker_day,normal,"1.58821,1.05879|1,5",0.285979,1,lognormal,"25.65,17.1|1,5",0.280289,1,lognormal,"19.0589,12.7059|1,5",0.267873,1,lognormal,"20.25,13.5|1,5",0.271542,1,lognormal,"26.8411,17.8941|1,5",0.283108,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.021a-Cost,0,1 EA,US$_2011,normal,"960,640|1,5",0.152671,,normal,"14580,9720|1,5",0.126666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.021a-Time,0,1 EA,worker_day,normal,"1.27056,0.847035|1,5",0.292931,0,normal,"19.2971,12.8647|1,5",0.280258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.023a-Cost,0,1 EA,US$_2011,normal,"770,630|1,5",0.199834,,normal,"14135,11565|1,5",0.130557,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.023a-Time,0,1 EA,worker_day,normal,"1.01915,0.833853|1,5",0.320052,0,normal,"18.7081,15.3067|1,5",0.282037,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.023b-Cost,0,1 EA,US$_2011,normal,"1040,720|1,5",0.152671,,normal,"15795,10935|1,5",0.126666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.023b-Time,0,1 EA,worker_day,normal,"1.22355,0.847082|1,5",0.292931,0,normal,"18.5823,12.8647|1,5",0.280258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.023c-Cost,0,1 EA,US$_2011,normal,"910,630|1,5",0.199834,,normal,"16705,11565|1,5",0.130557,,normal,"15795,10935|1,5",0.126666,,normal,"15795,10935|1,5",0.126666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.023c-Time,0,1 EA,worker_day,normal,"1.07056,0.741147|1,5",0.320052,0,normal,"19.6529,13.6058|1,5",0.282037,0,normal,"18.5823,12.8647|1,5",0.280258,0,normal,"18.5823,12.8647|1,5",0.280258,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.031a-Cost,0,1 EA,US$_2011,lognormal,"220,180|1,5",0.171333,,lognormal,"3250,2000|1,5",0.170517,,lognormal,"600,400|1,5",0.167256,,lognormal,"600,400|1,5",0.167256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.031a-Time,0,1 EA,worker_day,lognormal,"0.194147,0.158853|1,5",0.303076,0,lognormal,"2.86766,1.76472|1,5",0.302615,0,lognormal,"0.529435,0.352965|1,5",0.30079,0,lognormal,"0.529435,0.352965|1,5",0.30079,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.031b-Cost,0,1 EA,US$_2011,lognormal,"440,360|1,5",0.171333,,lognormal,"6500,4000|1,5",0.171333,,lognormal,"960,640|1,5",0.171333,,lognormal,"960,640|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.031b-Time,0,1 EA,worker_day,lognormal,"0.388194,0.317606|1,5",0.303076,1,lognormal,"5.73533,3.52945|1,5",0.303076,1,lognormal,"0.847076,0.564724|1,5",0.303076,1,lognormal,"0.847076,0.564724|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.031c-Cost,0,1 EA,US$_2011,lognormal,"990,810|1,5",0.169067,,lognormal,"10400,6400|1,5",0.171333,,lognormal,"1440,960|1,5",0.171333,,lognormal,"1440,960|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.031c-Time,0,1 EA,worker_day,lognormal,"0.873512,0.714688|1,5",0.3018,1,lognormal,"9.17645,5.64704|1,5",0.303076,1,lognormal,"1.27056,0.847035|1,5",0.303076,1,lognormal,"1.27056,0.847035|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.031d-Cost,0,1 EA,US$_2011,lognormal,"1950,1350|1,5",0.169973,,lognormal,"13000,9000|1,5",0.171333,,lognormal,"1560,1080|1,5",0.171333,,lognormal,"1560,1080|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.031d-Time,0,1 EA,worker_day,lognormal,"2.00734,1.38969|1,5",0.302309,1,lognormal,"13.3823,9.26469|1,5",0.303076,1,lognormal,"1.60589,1.11177|1,5",0.303076,1,lognormal,"1.60589,1.11177|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032a-Cost,0,1 EA,US$_2011,lognormal,"1300,900|1,5",0.45231,,lognormal,"132860,91980|1,5",0.174623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032a-Time,0,1 EA,worker_day,lognormal,"1.14711,0.794165|1,5",0.516802,0,lognormal,"45.0882,9.01765|1,5",0.304948,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032b-Cost,0,1 EA,US$_2011,lognormal,"220,180|1,5",0.171333,,lognormal,"3250,2000|1,5",0.170517,,lognormal,"600,400|1,5",0.167256,,lognormal,"600,400|1,5",0.167256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032b-Time,0,1 EA,worker_day,lognormal,"0.194147,0.158853|1,5",0.303076,0,lognormal,"2.86766,1.76472|1,5",0.302615,0,lognormal,"0.529435,0.352965|1,5",0.30079,0,lognormal,"0.529435,0.352965|1,5",0.30079,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032c-Cost,0,1 EA,US$_2011,lognormal,"1300,900|1,5",0.45231,,lognormal,"132860,91980|1,5",0.174623,,lognormal,"260,180|1,5",0.171333,,lognormal,"3250,2250|1,5",0.170517,,lognormal,"650,450|1,5",0.167256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032c-Time,0,1 EA,worker_day,lognormal,"1.33822,0.926459|1,5",0.516802,0,lognormal,"52.603,10.5206|1,5",0.304948,0,lognormal,"0.267665,0.185312|1,5",0.303076,0,lognormal,"3.34556,2.31615|1,5",0.302615,0,lognormal,"0.669112,0.463229|1,5",0.30079,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032d-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"265850,163600|1,5",0.17385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032d-Time,0,1 EA,worker_day,normal,"1.45585,1.19115|1,5",0.470388,1,lognormal,"81.1986,13.5331|1,5",0.304506,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032e-Cost,0,1 EA,US$_2011,lognormal,"440,360|1,5",0.171333,,lognormal,"6500,4000|1,5",0.171333,,lognormal,"960,640|1,5",0.171333,,lognormal,"960,640|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032e-Time,0,1 EA,worker_day,lognormal,"0.388194,0.317606|1,5",0.303076,1,lognormal,"5.73533,3.52945|1,5",0.303076,1,lognormal,"0.847076,0.564724|1,5",0.303076,1,lognormal,"0.847076,0.564724|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032f-Cost,0,1 EA,US$_2011,normal,"1950,1350|1,5",0.398453,,lognormal,"265850,184050|1,5",0.17385,,lognormal,"520,360|1,5",0.171333,,lognormal,"6500,4500|1,5",0.171333,,lognormal,"1040,720|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032f-Time,0,1 EA,worker_day,normal,"2.00734,1.38969|1,5",0.470388,1,lognormal,"94.7316,15.7886|1,5",0.304506,1,lognormal,"0.535329,0.370624|1,5",0.303076,1,lognormal,"6.69122,4.63239|1,5",0.303076,1,lognormal,"1.07056,0.741147|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032g-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"497120,305920|1,5",0.173262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032g-Time,0,1 EA,worker_day,normal,"2.66915,2.18385|1,5",0.388198,1,lognormal,"168.706,21.0882|1,5",0.304171,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032h-Cost,0,1 EA,US$_2011,lognormal,"990,810|1,5",0.169067,,lognormal,"10400,6400|1,5",0.171333,,lognormal,"1440,960|1,5",0.171333,,lognormal,"1440,960|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032h-Time,0,1 EA,worker_day,lognormal,"0.873512,0.714688|1,5",0.3018,1,lognormal,"9.17645,5.64704|1,5",0.303076,1,lognormal,"1.27056,0.847035|1,5",0.303076,1,lognormal,"1.27056,0.847035|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032i-Cost,0,1 EA,US$_2011,normal,"2860,1980|1,5",0.296982,,lognormal,"497120,344160|1,5",0.173262,,lognormal,"1170,810|1,5",0.169067,,lognormal,"10400,7200|1,5",0.171333,,lognormal,"1560,1080|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032i-Time,0,1 EA,worker_day,normal,"2.94411,2.03823|1,5",0.388198,1,lognormal,"157.459,19.6823|1,5",0.304171,1,lognormal,"1.20444,0.833853|1,5",0.3018,1,lognormal,"10.7059,7.41177|1,5",0.303076,1,lognormal,"1.60589,1.11177|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032j-Cost,0,1 EA,US$_2011,lognormal,"2640,2160|1,5",0.288523,,lognormal,"742170,456720|1,5",0.172804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032j-Time,0,1 EA,worker_day,lognormal,"2.32936,1.90584|1,5",0.381766,1,lognormal,"186.382,17.6307|1,5",0.30391,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032k-Cost,0,1 EA,US$_2011,lognormal,"1950,1350|1,5",0.169973,,lognormal,"13000,9000|1,5",0.171333,,lognormal,"1560,1080|1,5",0.171333,,lognormal,"1560,1080|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032k-Time,0,1 EA,worker_day,lognormal,"2.00734,1.38969|1,5",0.302309,1,lognormal,"13.3823,9.26469|1,5",0.303076,1,lognormal,"1.60589,1.11177|1,5",0.303076,1,lognormal,"1.60589,1.11177|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032l-Cost,0,1 EA,US$_2011,lognormal,"3120,2160|1,5",0.288523,,lognormal,"742170,513810|1,5",0.172804,,lognormal,"1950,1350|1,5",0.169973,,lognormal,"13000,9000|1,5",0.171333,,lognormal,"1560,1080|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.032l-Time,0,1 EA,worker_day,lognormal,"3.21178,2.22354|1,5",0.381766,1,lognormal,"217.446,20.5692|1,5",0.30391,1,lognormal,"2.00734,1.38969|1,5",0.302309,1,lognormal,"13.3823,9.26469|1,5",0.303076,1,lognormal,"1.60589,1.11177|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033a-Cost,0,1 EA,US$_2011,lognormal,"1300,900|1,5",0.45231,,lognormal,"132860,91980|1,5",0.174623,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033a-Time,0,1 EA,worker_day,lognormal,"1.33822,0.926459|1,5",0.516802,0,lognormal,"52.603,10.5206|1,5",0.304948,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033b-Cost,0,1 EA,US$_2011,lognormal,"260,180|1,5",0.171333,,lognormal,"3250,2250|1,5",0.170517,,lognormal,"650,450|1,5",0.167256,,lognormal,"650,450|1,5",0.167256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033b-Time,0,1 EA,worker_day,lognormal,"0.267665,0.185312|1,5",0.303076,0,lognormal,"3.34556,2.31615|1,5",0.302615,0,lognormal,"0.669112,0.463229|1,5",0.30079,0,lognormal,"0.669112,0.463229|1,5",0.30079,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033c-Cost,0,1 EA,US$_2011,lognormal,"1100,700|1,5",0.45231,,lognormal,"112420,91980|1,5",0.174623,,lognormal,"220,180|1,5",0.171333,,lognormal,"2750,2250|1,5",0.170517,,lognormal,"550,450|1,5",0.167256,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033c-Time,0,1 EA,worker_day,lognormal,"0.161806,0.102982|1,5",0.516802,0,lognormal,"4.50884,1.50296|1,5",0.304948,0,lognormal,"0.0323412,0.0264588|1,5",0.303076,0,lognormal,"0.404365,0.330835|1,5",0.302615,0,lognormal,"0.0808529,0.0661471|1,5",0.30079,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033d-Cost,0,1 EA,US$_2011,normal,"1950,1350|1,5",0.398453,,lognormal,"265850,184050|1,5",0.17385,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033d-Time,0,1 EA,worker_day,normal,"2.00734,1.38969|1,5",0.470388,1,lognormal,"94.7316,15.7886|1,5",0.304506,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033e-Cost,0,1 EA,US$_2011,lognormal,"520,320|1,5",0.171333,,lognormal,"6500,4000|1,5",0.171333,,lognormal,"960,640|1,5",0.171333,,lognormal,"960,640|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033e-Time,0,1 EA,worker_day,lognormal,"0.688224,0.423518|1,5",0.303076,1,lognormal,"8.60289,5.29407|1,5",0.303076,1,lognormal,"1.27056,0.847035|1,5",0.303076,1,lognormal,"1.27056,0.847035|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033f-Cost,0,1 EA,US$_2011,normal,"1650,1350|1,5",0.398453,,lognormal,"224950,184050|1,5",0.17385,,lognormal,"440,360|1,5",0.171333,,lognormal,"5500,4500|1,5",0.171333,,lognormal,"880,720|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033f-Time,0,1 EA,worker_day,normal,"1.81984,1.48896|1,5",0.470388,1,lognormal,"56.3878,16.9164|1,5",0.304506,1,lognormal,"0.485318,0.397082|1,5",0.303076,1,lognormal,"6.06617,4.96323|1,5",0.303076,1,lognormal,"0.970635,0.794165|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033g-Cost,0,1 EA,US$_2011,normal,"2860,1980|1,5",0.296982,,lognormal,"497120,344160|1,5",0.173262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033g-Time,0,1 EA,worker_day,normal,"2.94411,2.03823|1,5",0.388198,1,lognormal,"157.459,19.6823|1,5",0.304171,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033h-Cost,0,1 EA,US$_2011,lognormal,"1170,720|1,5",0.169067,,lognormal,"10400,6400|1,5",0.171333,,lognormal,"1440,960|1,5",0.171333,,lognormal,"1440,960|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033h-Time,0,1 EA,worker_day,lognormal,"1.54855,0.952965|1,5",0.3018,1,lognormal,"13.7647,8.47055|1,5",0.303076,1,lognormal,"1.90585,1.27055|1,5",0.303076,1,lognormal,"1.90585,1.27055|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033i-Cost,0,1 EA,US$_2011,normal,"2420,1980|1,5",0.296982,,lognormal,"420640,344160|1,5",0.173262,,lognormal,"990,810|1,5",0.169067,,lognormal,"8800,7200|1,5",0.171333,,lognormal,"1320,1080|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033i-Time,0,1 EA,worker_day,normal,"2.66915,2.18385|1,5",0.388198,1,lognormal,"84.353,21.0882|1,5",0.304171,1,lognormal,"1.09186,0.893335|1,5",0.3018,1,lognormal,"9.70585,7.94115|1,5",0.303076,1,lognormal,"1.45585,1.19115|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033j-Cost,0,1 EA,US$_2011,lognormal,"3120,2160|1,5",0.288523,,lognormal,"742170,513810|1,5",0.172804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033j-Time,0,1 EA,worker_day,lognormal,"3.21178,2.22354|1,5",0.381766,1,lognormal,"217.446,20.5692|1,5",0.30391,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033k-Cost,0,1 EA,US$_2011,lognormal,"1650,1050|1,5",0.169973,,lognormal,"11000,9000|1,5",0.171333,,lognormal,"1320,1080|1,5",0.171333,,lognormal,"1320,1080|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033k-Time,0,1 EA,worker_day,lognormal,"0.242659,0.154424|1,5",0.302309,1,lognormal,"1.61766,1.32354|1,5",0.303076,1,lognormal,"0.194147,0.158853|1,5",0.303076,1,lognormal,"0.194147,0.158853|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033l-Cost,0,1 EA,US$_2011,lognormal,"3120,2160|1,5",0.288523,,lognormal,"742170,513810|1,5",0.172804,,lognormal,"1950,1350|1,5",0.169973,,lognormal,"13000,9000|1,5",0.171333,,lognormal,"1560,1080|1,5",0.171333,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +D5092.033l-Time,0,1 EA,worker_day,lognormal,"0.458782,0.317606|1,5",0.381766,1,lognormal,"31.0637,2.93845|1,5",0.30391,1,lognormal,"0.286776,0.198541|1,5",0.302309,1,lognormal,"1.91178,1.32354|1,5",0.303076,1,lognormal,"0.229441,0.158853|1,5",0.303076,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +F1012.001-Cost,0,50 LF,US$_2011,lognormal,"6200,1860|26,260",0.362167,,lognormal,"37300,11190|26,260",0.288113,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +F1012.001-Time,0,50 LF,worker_day,lognormal,"6.83912,2.05235|26,260",0.440073,0,lognormal,"41.1399,12.3421|26,260",0.381457,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/pelicun/resources/bldg_repair_DB_FEMA_P58_2nd.json b/pelicun/resources/bldg_repair_DB_FEMA_P58_2nd.json new file mode 100644 index 000000000..ea283cbc2 --- /dev/null +++ b/pelicun/resources/bldg_repair_DB_FEMA_P58_2nd.json @@ -0,0 +1,13919 @@ +{ + "B1031.001": { + "Description": "Bolted shear tab gravity connections", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "Careful inspection and welded repair to any cracks and possible replacement of shear tab if bolt hole deformations are excessive (possible for deeper 6-bolt or deeper shear tabs). Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. ", + "RepairAction": "Careful inspection and welded repair to any cracks and possible replacement of shear tab if bolt hole deformations are excessive (possible for deeper 6-bolt or deeper shear tabs). " + }, + "DS3": { + "Description": "Partial tearing of shear tab and possibility of bolt shear failure (6-bolt or deeper connections).", + "RepairAction": "Repairs will include either welded repair of shear tab or possible complete replacement of shear tab and installation of new bolts. Repairs may require shoring of beam." + }, + "DS4": { + "Description": "Complete separation of shear tab, close to complete loss of vertical load resistance. ", + "RepairAction": "Repair will include complete replacement of shear tab and installation of new bolts. Repairs will require shoring of beam." + } + } + }, + "B1031.011a": { + "Description": "Steel Column Base Plates, Column W < 150 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. " + }, + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. ", + "RepairAction": "Depending on the crack trajectory, the repair will range from replacement of a portion of the column or base plate to full replacement of the column base. Replacement will require shoring of column, torch cutting to remove damaged material, and fabrication and field welding to install replacement material." + }, + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base.", + "RepairAction": "Repair would likely involve replacing the entire base plate assembly and most of the column in the story above the base plate." + } + } + }, + "B1031.011b": { + "Description": "Steel Column Base Plates, Column 150 plf < W < 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. " + }, + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. ", + "RepairAction": "Depending on the crack trajectory, the repair will range from replacement of a portion of the column or base plate to full replacement of the column base. Replacement will require shoring of column, torch cutting to remove damaged material, and fabrication" + }, + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base.", + "RepairAction": "Repair would likely involve replacing the entire base plate assembly and most of the column in the story above the base plate. " + } + } + }, + "B1031.011c": { + "Description": "Steel Column Base Plates, Column W > 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. " + }, + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. ", + "RepairAction": "Depending on the crack trajectory, the repair will range from replacement of a portion of the column or base plate to full replacement of the column base. Replacement will require shoring of column, torch cutting to remove damaged material, and fabrication" + }, + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base.", + "RepairAction": "Repair would likely involve replacing the entire base plate assembly and most of the column in the story above the base plate. " + } + } + }, + "B1031.021a": { + "Description": "Welded column splices, Column W < 150 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. ", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. " + }, + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. ", + "RepairAction": " Repair may not be practically feasible, but would require either realignment or replacement of adjacent column segments and rewelding of splice." + } + } + }, + "B1031.021b": { + "Description": "Welded column splices, Column 150 plf < W < 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. ", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. " + }, + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. ", + "RepairAction": " Repair may not be practically feasible, but would require either realignment or replacement of adjacent column segments and rewelding of splice." + } + } + }, + "B1031.021c": { + "Description": "Welded column splices, Column W > 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. ", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. " + }, + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. ", + "RepairAction": " Repair may not be practically feasible, but would require either realignment or replacement of adjacent column segments and rewelding of splice." + } + } + }, + "B1033.001a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.001b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.001c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.002a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.002b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.002c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.003a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.003b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.003c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.011a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.011b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.011c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.012a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.012b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.012c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.013a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.013b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.013c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.021a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.021b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.021c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.022a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.022b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.022c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.023a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.023b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.023c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.031a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.031b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.031c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.032a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.032b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.032c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.033a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.033b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.033c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + }, + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.041a": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.041b": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.041c": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.042a": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.042b": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.042c": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.043a": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.043b": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.043c": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.051a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.051b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.051c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.052a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.052b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.052c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.053a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.053b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.053c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + }, + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + }, + "B1033.061a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.061b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.061c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.062a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.062b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.062c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.063a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.063b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.063c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + }, + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + }, + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + }, + "B1033.071a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.071b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.071c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.072a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.072b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.072c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.073a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.073b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.073c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.101a": { + "Description": "Steel Buckling Restrained Brace (BRB), Chevron Brace, Weight of brace < 40 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.101b": { + "Description": "Steel Buckling Restrained Brace (BRB), Chevron brace, Weight of brace > 41 plf and < 99 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.101c": { + "Description": "Steel Buckling Restrained Brace (BRB), Chevron Brace, Weight of brace > 100 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.111a": { + "Description": "Steel Buckling Restrained Brace (BRB), Single Diagonal Brace, Weight of brace < 40 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.111b": { + "Description": "Steel Buckling Restrained Brace (BRB), Single Diagonal brace, Weight of brace > 41 plf and < 99 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1033.111c": { + "Description": "Steel Buckling Restrained Brace (BRB), Single Diagonal Brace, Weight of brace > 100 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + }, + "B1035.001": { + "Description": "Post-Northridge RBS connection with welded web, beam one side of column only, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + }, + "B1035.002": { + "Description": "Post-Northridge RBS connection with welded web, beam one side of column only, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + }, + "B1035.011": { + "Description": "Post-Northridge RBS connection with welded web, beams both sides of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + }, + "B1035.012": { + "Description": "Post-Northridge RBS connection with welded web, beams both sides of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + }, + "B1035.021": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beam one side, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + }, + "B1035.022": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beam one side, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + }, + "B1035.031": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beams both sides, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + }, + "B1035.032": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beams both sides, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + }, + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + }, + "B1035.041": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam one side of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", + "RepairAction": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS1, repairs to column will be necessary. Cover plate, patch, or replace damaged column flange at connection." + }, + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", + "RepairAction": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal and replacement of a portion of the floor slab above the weld." + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange." + }, + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", + "RepairAction": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced." + } + } + }, + "B1035.042": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam one side of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", + "RepairAction": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS1, repairs to column will be necessary. Cover plate, patch, or replace damaged column flange at connection." + }, + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", + "RepairAction": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal and replacement of a portion of the floor slab above the weld." + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange." + }, + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", + "RepairAction": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced." + } + } + }, + "B1035.051": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam both sides of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", + "RepairAction": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS1, repairs to column will be necessary. Cover plate, patch, or replace damaged column flange at connection." + }, + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", + "RepairAction": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal and replacement of a portion of the floor slab above the weld." + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange." + }, + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", + "RepairAction": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced." + } + } + }, + "B1035.052": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam both sides of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", + "RepairAction": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS1, repairs to column will be necessary. Cover plate, patch, or replace damaged column flange at connection." + }, + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", + "RepairAction": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal and replacement of a portion of the floor slab above the weld." + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange." + }, + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", + "RepairAction": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced." + } + } + }, + "B1035.061a": { + "Description": "EBF Shear Link, no floor beams, link w < 100 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage to concrete slab above the link beam.", + "RepairAction": "Replace concrete slab and finishes in 400 SF at EBF link." + }, + "DS2": { + "Description": "Web local buckling, flange local buckling.", + "RepairAction": "Heat straightening of buckled elements." + }, + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange.", + "RepairAction": "Replace EBF link." + } + } + }, + "B1035.061b": { + "Description": "EBF Shear Link, no floor beams, link w < 200 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage to concrete slab above the link beam.", + "RepairAction": "Replace concrete slab and finishes in 400 SF at EBF link." + }, + "DS2": { + "Description": "Web local buckling, flange local buckling.", + "RepairAction": "Heat straightening of buckled elements." + }, + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange.", + "RepairAction": "Replace EBF link." + } + } + }, + "B1035.062a": { + "Description": "EBF Shear Link, with floor beams, link w < 100 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage to concrete slab above the link beam.", + "RepairAction": "Replace concrete slab and finishes in 400 SF at EBF link." + }, + "DS2": { + "Description": "Web local buckling, flange local buckling.", + "RepairAction": "Heat straightening of buckled elements." + }, + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange.", + "RepairAction": "Replace EBF link." + } + } + }, + "B1035.062b": { + "Description": "EBF Shear Link, with floor beams, link w < 200 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage to concrete slab above the link beam.", + "RepairAction": "Replace concrete slab and finishes in 400 SF at EBF link." + }, + "DS2": { + "Description": "Web local buckling, flange local buckling.", + "RepairAction": "Heat straightening of buckled elements." + }, + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange.", + "RepairAction": "Replace EBF link." + } + } + }, + "B1041.001a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.001b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.002a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.002b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.003a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.003b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.011a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.011b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.012a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.012b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.013a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.013b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.021a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.021b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.022a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.022b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.023a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.023b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + }, + "B1041.031a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.031b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.032a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.032b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.033a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.033b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.041a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.041b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.042a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.042b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.043a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.043b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.051a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.051b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.052a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.052b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove\ndamaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.053a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove\ndamaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.053b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.061a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.061b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.062a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.062b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.063a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.063b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.071a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.071b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.072a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.072b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.073a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.073b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.081a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.081b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.082a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.082b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.083a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.083b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.091a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.091b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.092a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.092b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.093a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.093b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.101a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.101b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.102a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.102b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.103a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.103b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.111a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.111b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.112a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.112b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.113a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.113b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.121a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.121b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.122a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.122b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.123a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.123b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.131a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.131b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.132a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.132b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.133a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1041.133b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + }, + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + }, + "B1042.001a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.001b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.002a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.002b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.011a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.011b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.012a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.012b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.021a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.021b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.022a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1042.022b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + }, + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + }, + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + }, + "B1044.001": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.002": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain 16' high to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.003": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain 25' high to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.011": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of up to 15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.012": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of 16' to 24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.013": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of 24' to 40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.021": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights up to 15' ", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.022": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights 16' - 24' ", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.023": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights 25' - 40' ", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + }, + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.031": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.032": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.033": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.041": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.042": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.043": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.051": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick\" up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.052": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.053": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.061": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.062": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.063": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.071": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.072": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.073": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.081": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.082": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.083": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + }, + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + }, + "B1044.091": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1044.092": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1044.093": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1044.101": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1044.102": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1044.103": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1044.111": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1044.112": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1044.113": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + }, + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + }, + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + }, + "B1049.001a": { + "Description": "Reinforced concrete flat slabs- columns without shear reinforcing 0 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + }, + "B3031.001b": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 10 ft, replace with masonry", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + }, + "B3031.001c": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 15 ft, replace with masonry", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + }, + "B3031.002a": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 5 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + }, + "B3031.002b": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 10 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + }, + "B3031.002c": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 15 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + }, + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + }, + "B3041.001": { + "Description": "Masonry Parapet - unreinforced, unbraced", + "Comments": "Unreinforced and unbraced masonry parapet as a component of a masonry building. Parapet height / width of approximately 3. Costing based upon repair of 3ft tall x 10ft segment.\nConstruction Quality: Normal\nSeismic Installation Conditions: All", + "SuggestedComponentBlockSize": "10 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Replace and reinforce" + }, + "DS2": { + "Description": "Toppling of all or portion of parapet.", + "RepairAction": "Replace and reinforce" + } + } + }, + "C1011.001a": { + "Description": "Wall Partition, Type: Gypsum with metal studs, Full Height, Fixed Below, Fixed Above", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Screw pop-out, cracking of wall board, warping or cracking of tape, slight crushing of wall panel at corners.", + "RepairAction": "Retape joints, paste and repaint. May require cutting and replacing corner sections of board. Repair 5% wallboard, 10% retape, 25% repaint." + }, + "DS2": { + "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners). Moderate corner gap openings, bending of boundary studs.", + "RepairAction": "Remove and replace 10% of wall board (both sides), retape and paste 25% of wall, paint 50% of wall. Replace boundary studs of approximately 5 intersections per 100 ft of wall length." + }, + "DS3": { + "Description": "Buckling of studs and tearing of tracks. Tearing or bending of top track, tearing at corners with transverse walls, large gap openings, walls displaced.", + "RepairAction": "Remove and replace 50% of length of metal stud wall, 50% of both sides of the gypsum, and any embedded utilities. Retape and paste as required. Repaint 100%." + } + } + }, + "C1011.001b": { + "Description": "Wall Partition, Type: Gypsum with metal studs, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Screw pop-out, cracking of wall board, warping or cracking of tape, slight crushing of wall panel at corners.", + "RepairAction": "Retape joints, paste and repaint. May require cutting and replacing corner sections of board. Repair 5% wallboard, 10% retape, 25% repaint." + }, + "DS2": { + "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners). Moderate corner gap openings, bending of boundary studs.", + "RepairAction": "Remove and replace 10% of wall board (both sides), retape and paste 25% of wall, paint 50% of wall. Replace boundary studs of approximately 5 intersections per 100 ft of wall length." + }, + "DS3": { + "Description": "Buckling of studs and tearing of tracks. Tearing or bending of top track, tearing at corners with transverse walls, large gap openings, walls displaced.", + "RepairAction": "Remove and replace 50% of length of metal stud wall, 50% of both sides of the gypsum, and any embedded utilities. Retape and paste as required. Repaint 100%." + } + } + }, + "C1011.001c": { + "Description": "Wall Partition, Type: Gypsum with metal studs, Full Height, Fixed Below, Slip Track Above with returns", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Screw pop-out, cracking of wall board, warping or cracking of tape, slight crushing of wall panel at corners.", + "RepairAction": "Retape joints, paste and repaint. May require cutting and replacing corner sections of board. Repair 5% wallboard, 10% retape, 25% repaint." + }, + "DS2": { + "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners). Moderate corner gap openings, bending of boundary studs.", + "RepairAction": "Remove and replace 10% of wall board (both sides), retape and paste 25% of wall, paint 50% of wall. Replace boundary studs of approximately 5 intersections per 100 ft of wall length." + }, + "DS3": { + "Description": "Buckling of studs and tearing of tracks. Tearing or bending of top track, tearing at corners with transverse walls, large gap openings, walls displaced.", + "RepairAction": "Remove and replace 50% of length of metal stud wall, 50% of both sides of the gypsum, and any embedded utilities. Retape and paste as required. Repaint 100%." + } + } + }, + "C1011.001d": { + "Description": "Wall Partition, Type: Gypsum with metal studs, Full Height, Fixed Below, Slip Track Above w/o returns (friction connections)", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Screw pop-out, cracking of wall board, warping or cracking of tape, slight crushing of wall panel at corners.", + "RepairAction": "Retape joints, paste and repaint. May require cutting and replacing corner sections of board. Repair 5% wallboard, 10% retape, 25% repaint." + }, + "DS2": { + "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners). Moderate corner gap openings, bending of boundary studs.", + "RepairAction": "Remove and replace 10% of wall board (both sides), retape and paste 25% of wall, paint 50% of wall. Replace boundary studs of approximately 5 intersections per 100 ft of wall length." + } + } + }, + "C1011.011a": { + "Description": "Wall Partition, Type: Gypsum with wood studs, Full Height, Fixed Below, Fixed Above", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Cracking of paint over fasteners or joints.", + "RepairAction": "Gypsum wallboard repaired by replacing the tape along the seam of two adjacent panels, applying new joint compound, sanding, and repainting." + }, + "DS2": { + "Description": "Local and global buckling out-of-plane and crushing of gypsum wallboards. Studs are typically not damaged by failure of the gypsum wallboard.", + "RepairAction": "Replace 25 feet of the affected panel along with the application of new tape, joint compound, followed by sanding and repainting. Studs are not damaged." + }, + "DS3": { + "Description": "Local and global buckling out-of-plane and crushing of gypsum wallboards. Studs are typically not damaged by failure of the gypsum wallboard.", + "RepairAction": "Replace 100 feet of the affected panel along with the application of new tape, joint compound, followed by sanding and repainting. Studs are not damaged." + } + } + }, + "C2011.001a": { + "Description": "Prefabricated steel stair with steel treads and landings with seismic joints that accommodate drift.", + "Comments": "Flexible stair with seismic interstory slip joint. Steel prefab stringers, steel or concrete filled pan treads.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Non structural damage, local steel yielding.", + "RepairAction": "Patch, paint." + }, + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Buckling of steel, weld cracking.", + "RepairAction": "Removal and replacement of damaged components. Field repair of damage (such as welding). Repair finsihes." + }, + "DS3": { + "Description": "Loss of live load capacity. Connection and or weld fracture.", + "RepairAction": "Replace stair and handrail. Repair and replace affected soffits and floor finishes." + } + } + }, + "C2011.001b": { + "Description": "Prefabricated steel stair with steel treads and landings with no seismic joint.", + "Comments": "Flexible stair without seismic interstory slip joint. Steel prefab stringers, steel or concrete filled pan treads.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Confirm median demand and dispersion values", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Non structural damage, local steel yielding.", + "RepairAction": "Patch, paint." + }, + "DS2": { + "Description": "Buckling of steel, weld cracking.", + "RepairAction": "Removal and replacement of damaged components. Field repair of damage (such as welding). Repair finsihes." + }, + "DS3": { + "Description": "Loss of live load capacity. Connection and or weld fracture.", + "RepairAction": "Replace stair and handrail. Repair and replace affected soffits and floor finishes." + } + } + }, + "C2011.011a": { + "Description": "Non-monolithic precast concrete stair assembly with concrete stringers and treads with seismic joints that accommodate drift.", + "Comments": "Rigid stair with seismic interstory drift joint. Precast concrete stair.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Non structural damage, local concrete cracking, localized concrete spalling, localized rebar yielding.", + "RepairAction": "Patch, paint, epoxy injection. Repair finishes." + }, + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Extensive concrete cracking, concrete crushing, buckling of rebar.", + "RepairAction": "Remove damaged components, install replacement components." + }, + "DS3": { + "Description": "Loss of live load capacity. Extensive concrete crushing, connection failure.", + "RepairAction": "Replace stair and handrail. Repair and replace affected soffits and floor finishes." + } + } + }, + "C2011.011b": { + "Description": "Non-monolithic precast concrete stair assembly with concrete stringers and treads with no seismic joint.", + "Comments": "Rigid stair without seismic interstory drift joint. Precast concrete stair.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Confirm median demand and dispersion values. Base document noted that there was insufficient data to establish median demand or dispersion values. The median demand and dispersion values listed are from a best fit approximation of the data performed by MKA.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Non structural damage, local concrete cracking, localized concrete spalling, localized rebar yielding.", + "RepairAction": "Patch, paint, epoxy injection. Repair finishes." + }, + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Extensive concrete cracking, concrete crushing, buckling of rebar.", + "RepairAction": "Remove damaged components, install replacement components." + }, + "DS3": { + "Description": "Loss of live load capacity. Extensive concrete crushing, connection failure.", + "RepairAction": "Replace stair and handrail. Repair and replace affected soffits and floor finishes." + } + } + }, + "C2011.021a": { + "Description": "Monolithic cast-in-place and precast concrete stairs with seismic joints that accommodate drift - replace in kind if replacement is required.", + "Comments": "Cast in place concrete stair, with seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling", + "RepairAction": "Protect surrounding space, epoxy inject cracks, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing", + "RepairAction": "Protect floor, cut out damaged areas, repair buckled rebar, patch / cast concrete, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + }, + "C2011.021b": { + "Description": "Monolithic cast-in-place and precast concrete stairs with no seismic joints - replace in kind if replacement is required.", + "Comments": "Cast in place concrete stair, no seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling", + "RepairAction": "Protect surrounding space, epoxy inject cracks, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing", + "RepairAction": "Protect floor, cut out damaged areas, repair buckled rebar, patch / cast concrete, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + }, + "C2011.021c": { + "Description": "Monolithic cast-in-place and precast concrete stairs with seismic joints that accommodate drift - replace with prefabricated steel stair if replacement is required.", + "Comments": "Cast in place concrete stair, with seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling", + "RepairAction": "Protect surrounding space, epoxy inject cracks, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing", + "RepairAction": "Protect floor, cut out damaged areas, repair buckled rebar, patch / cast concrete, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + }, + "C2011.021d": { + "Description": "Monolithic cast-in-place and precast concrete stairs with no seismic joints - replace with prefabricated steel stair if replacement is required.", + "Comments": "Cast in place concrete stair, no seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling", + "RepairAction": "Protect surrounding space, epoxy inject cracks, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing", + "RepairAction": "Protect floor, cut out damaged areas, repair buckled rebar, patch / cast concrete, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": NaN + } + } + }, + "C2011.031a": { + "Description": "Hybrid stair assembly with steel stringers and concrete treads and landings with seismic joints that accommodate drift.", + "Comments": "Stair consists of steel stringers with precast treads rigidly linked to stringer\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Localized steel yielding.", + "RepairAction": "Protect surrounding space. Minor repair of finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS2": { + "Description": "Buckling of steel, weld cracking.", + "RepairAction": "Protect floor, cut out damaged areas, reweld. Repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + }, + "C2011.031b": { + "Description": "Hybrid stair assembly with steel stringers and concrete treads and landings with no seismic joints.", + "Comments": "Stair consists of steel stringers with precast treads rigidly linked to stringer\nConstruction Quality: Normal\nSeismic Installation Conditions: All", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Localized steel yielding.", + "RepairAction": "Protect surrounding space. Minor repair of finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS2": { + "Description": "Buckling of steel, weld cracking.", + "RepairAction": "Protect floor, cut out damaged areas, reweld. Repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + }, + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + }, + "C3011.001a": { + "Description": "Wall Partition, Type: Gypsum + Wallpaper, Full Height, Fixed Below, Fixed Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Wall paper warped and torn.", + "RepairAction": "Remove existing wall paper (or wall) and install new wall paper for full 100 foot length of wall. Existing wall damage per wall type NISTIR file." + } + } + }, + "C3011.001b": { + "Description": "Wall Partition, Type: Gypsum + Wallpaper, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Wall paper warped and torn.", + "RepairAction": "Remove existing wall paper (or wall) and install new wall paper for full 100 foot length of wall. Existing wall damage per wall type NISTIR file." + } + } + }, + "C3011.001c": { + "Description": "Wall Partition, Type: Gypsum + Wallpaper, Full Height, Fixed Below, Slip Track Above w/ returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Wall paper warped and torn.", + "RepairAction": "Remove existing wall paper (or wall) and install new wall paper for full 100 foot length of wall. Existing wall damage per wall type NISTIR file." + } + } + }, + "C3011.001d": { + "Description": "Wall Partition, Type: Gypsum + Wallpaper, Full Height, Fixed Below, Slip Track Above w/o returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Wall paper warped and torn.", + "RepairAction": "Remove existing wall paper (or wall) and install new wall paper for full 100 foot length of wall. Existing wall damage per wall type NISTIR file." + } + } + }, + "C3011.002a": { + "Description": "Wall Partition, Type: Gypsum + Ceramic Tile, Full Height, Fixed Below, Fixed Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor cracked joints and tile.", + "RepairAction": "Carefully remove cracked tile and grout at cracked joints, install new ceramic tile and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain in place." + }, + "DS2": { + "Description": "Cracked joints and tile.", + "RepairAction": "Install ceramic tile and grout all joints for full 100 foot length of wall. Note: gypsum wall board will also be removed and replaced which means the removal of ceramic tile will be part of the gypsum wall board removal. " + } + } + }, + "C3011.002b": { + "Description": "Wall Partition, Type: Gypsum + Ceramic Tile, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor cracked joints and tile.", + "RepairAction": "Carefully remove cracked tile and grout at cracked joints, install new ceramic tile and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain in place." + }, + "DS2": { + "Description": "Cracked joints and tile.", + "RepairAction": "Install ceramic tile and grout all joints for full 100 foot length of wall. Note: gypsum wall board will also be removed and replaced which means the removal of ceramic tile will be part of the gypsum wall board removal. " + } + } + }, + "C3011.002c": { + "Description": "Wall Partition, Type: Gypsum + Ceramic Tile, Full Height, Fixed Below, Slip Track Above w/ returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor cracked joints and tile.", + "RepairAction": "Carefully remove cracked tile and grout at cracked joints, install new ceramic tile and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain in place." + }, + "DS2": { + "Description": "Cracked joints and tile.", + "RepairAction": "Install ceramic tile and grout all joints for full 100 foot length of wall. Note: gypsum wall board will also be removed and replaced which means the removal of ceramic tile will be part of the gypsum wall board removal. " + } + } + }, + "C3011.002d": { + "Description": "Wall Partition, Type: Gypsum + Ceramic Tile, Full Height, Fixed Below, Slip Track Above w/o returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor cracked joints and tile.", + "RepairAction": "Carefully remove cracked tile and grout at cracked joints, install new ceramic tile and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain in place." + }, + "DS2": { + "Description": "Cracked joints and tile.", + "RepairAction": "Install ceramic tile and grout all joints for full 100 foot length of wall. Note: gypsum wall board will also be removed and replaced which means the removal of ceramic tile will be part of the gypsum wall board removal. " + } + } + }, + "C3011.003a": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Fixed Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling.", + "RepairAction": "Carefully remove cracked marble/paneling and grout at cracked joints, and install new marble/paneling and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain place." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling.", + "RepairAction": "Install new marble/paneling for full 100 foot length of wall. Note: the gypsum wall board will also be removed and replaced which means the removal of the marble/paneling will be part of the gypsum wall board removal. " + } + } + }, + "C3011.003b": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling.", + "RepairAction": "Carefully remove cracked marble/paneling and grout at cracked joints, and install new marble/paneling and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain place." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling.", + "RepairAction": "Install new marble/paneling for full 100 foot length of wall. Note: the gypsum wall board will also be removed and replaced which means the removal of the marble/paneling will be part of the gypsum wall board removal. " + } + } + }, + "C3011.003c": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Slip Track Above w/ returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling.", + "RepairAction": "Carefully remove cracked marble/paneling and grout at cracked joints, and install new marble/paneling and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain place." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling.", + "RepairAction": "Install new marble/paneling for full 100 foot length of wall. Note: the gypsum wall board will also be removed and replaced which means the removal of the marble/paneling will be part of the gypsum wall board removal. " + } + } + }, + "C3011.003d": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Slip Track Above w/o returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling.", + "RepairAction": "Carefully remove cracked marble/paneling and grout at cracked joints, and install new marble/paneling and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain place." + }, + "DS2": { + "Description": "significant cracks in marble / wood paneling.", + "RepairAction": "Install new marble/paneling for full 100 foot length of wall. Note: the gypsum wall board will also be removed and replaced which means the removal of the marble/paneling will be part of the gypsum wall board removal. " + } + } + }, + "C3021.001a": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Office - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet or vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe. ", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001b": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Office - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet or vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001c": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Laboratory - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sheet vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001d": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Laboratory - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sheet vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001e": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Hospital - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sheet vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001f": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Hospital - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sheet vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001g": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - School - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be vinyl composition tile. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001h": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - School - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be vinyl composition tile. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001i": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Apartments - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001j": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Apartments - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001k": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Retail - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be vinyl composition tile. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001l": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Retail - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be vinyl composition tile. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001m": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Warehouse - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sealed concrete. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001n": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Warehouse - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sealed concrete. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001o": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Hospitality - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3021.001p": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Hospitality - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + }, + "C3027.001": { + "Description": "Raised Access Floor, non seismically rated.", + "Comments": "Access floor unanchored or anchored with adhesive. Costing is based upon a xxx SF floor area.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Consequence Note: Some downtime for repair of floor and equipment.", + "SuggestedComponentBlockSize": "100 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor damage to the flooring system. Damage to the equipment of the flooring system.", + "RepairAction": "Repair the flooring system, assume cost equal to 5% of the replacement cost. Repair the flooring equipment, assume a cost equal to 10% of the replacement cost." + } + } + }, + "C3027.002": { + "Description": "Raised Access Floor, seismically rated.", + "Comments": "Access floor is designed to meet code requirements and mechanically anchored and braced as necessary to resist anchor loads. Equipment is anchored to floor systems and heavier equipment is anchored directly to the structural floor. Costing is based upon a xxx SF floor area.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Consequence Note: Some downtime for repair of floor and equipment.", + "SuggestedComponentBlockSize": "100 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor damage to the flooring system. Damage to the equipment of the flooring system.", + "RepairAction": "Repair the flooring system, assume cost equal to 5% of the replacement cost. Repair the flooring equipment, assume a cost equal to 10% of the replacement cost." + } + } + }, + "C3032.001a": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): A < 250, Vert support only", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.001b": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): 250 < A < 1000, Vert support only", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.001c": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): 1000 < A < 2500, Vert support only", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.001d": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): A > 2500, Vert support only", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.003a": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): A < 250, Vert & Lat support", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.003b": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): 250 < A < 1000, Vert & Lat support", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.003c": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): 1000 < A < 2500, Vert & Lat support", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.003d": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): A > 2500, Vert & Lat support", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.004a": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): A < 250, Vert & Lat support", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.004b": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): 250 < A < 1000, Vert & Lat support", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.004c": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): 1000 < A < 2500, Vert & Lat support", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3032.004d": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): A > 2500, Vert & Lat support", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + }, + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + }, + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + }, + "C3034.001": { + "Description": "Independent Pendant Lighting - non seismic", + "Comments": "Horizontal light fixtures 4 to 16 ft long suspended 12 to 24 inches from ceiling. No seismic design or bracing. Hung from ceiling above by two or more rods or cables. \nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Low cost industrial hung lighting in warehouse or gymnasium that is not part of suspended ceiling or hanging from a suspended ceiling space.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Disassembly of rod system at connections with horizontal light fixture, low cycle fatigue failure of the threaded rod, pullout of rods from ceiling assembly.", + "RepairAction": "Replace damaged lighting components." + } + } + }, + "C3034.002": { + "Description": "Independent Pendant Lighting - seismically rated", + "Comments": "Horizontal light fixtures 4 to 16 ft long suspended 12 to 24 inches from ceiling. Hung from ceiling above by two or more rods or cables. Fixture and rods or cables are either designed for seismic movements or are laterally braced to prevent sway.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Low cost industrial hung lighting in warehouse or gymnasium that is not part of suspended ceiling or hanging from a suspended ceiling space.", + "SuggestedComponentBlockSize": " 1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Disassembly of rod system at connections with horizontal light fixture, low cycle fatigue failure of the threaded rod, pullout of rods from ceiling assembly.", + "RepairAction": "Replace damaged lighting components." + } + } + }, + "D1014.011": { + "Description": "Traction Elevator \u2013 Applies to most California Installations 1976 or later, most western states installations 1982 or later and most other U.S installations 1998 or later.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Pure DS1. Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures.", + "RepairAction": "Multiple repairs possible (% change of each): Reinstall or replace controller (4%), and or reinstall or replace motor generator (63%), and or Install new generator with appropriate anchors (23%), and or Install new governor (7%), and or Reinstall or replace rope guards (15%)." + }, + "DS2": { + "Description": "Pure DS2. Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted", + "RepairAction": "Multiple repairs possible (% change of each): Replace rail (62%), and or replace bracket or tie rod (28%), and or replace counterweight bracket 14%), and or replace intermediate bracket (28%), and or replace car guide shoes (35%), and or replace counterweight guide shoe (28%), and or repair or replace counterweight frame (28%), and or repair or replace tail sheave (1%)" + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Cab stabilizers bent, or cab walls damaged, or cab doors damaged.", + "RepairAction": "Multiple repairs possible (% change of each): Repair or replace cab walls (3%), and or repair or replace cab doors (17%), and or repair or replace cab stabilizers (92%) " + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS8": { + "Description": "Pure DS4. Cab ceiling damaged.", + "RepairAction": "Multiple repairs possible (% change of each): Repair or replace cab ceiling (100%)" + }, + "DS9": { + "Description": "Combination of DS1 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS10": { + "Description": "Combination of DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS12": { + "Description": "Combination of DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + } + } + }, + "D1014.012": { + "Description": "Traction Elevator \u2013 Applies to most California Installations prior to 1976, most western states installations prior to 1982 and most other U.S installations prior to 1998.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Pure DS1. Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures.", + "RepairAction": "Multiple repairs possible (% change of each): Reinstall or replace controller (4%), and or reinstall or replace motor generator (63%), and or Install new generator with appropriate anchors (23%), and or Install new governor (7%), and or Reinstall or replace rope guards (15%)." + }, + "DS2": { + "Description": "Pure DS2. Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted", + "RepairAction": "Multiple repairs possible (% change of each): Replace rail (62%), and or replace bracket or tie rod (28%), and or replace counterweight bracket 14%), and or replace intermediate bracket (28%), and or replace car guide shoes (35%), and or replace counterweight guide shoe (28%), and or repair or replace counterweight frame (28%), and or repair or replace tail sheave (1%)" + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Cab stabilizers bent, or cab walls damaged, or cab doors damaged.", + "RepairAction": "Multiple repairs possible (% change of each): Repair or replace cab walls (3%), and or repair or replace cab doors (17%), and or repair or replace cab stabilizers (92%) " + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS8": { + "Description": "Pure DS4. Cab ceiling damaged.", + "RepairAction": "Multiple repairs possible (% change of each): Repair or replace cab ceiling (100%)" + }, + "DS9": { + "Description": "Combination of DS1 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS10": { + "Description": "Combination of DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS12": { + "Description": "Combination of DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + } + } + }, + "D1014.021": { + "Description": "Hydraulic Elevator \u2013 Applies to most California Installations 1976 or later, most western states installations postdating 1982 and most U.S installations postdating 1998.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Pure DS1. Damaged controls.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damaged controls (100%)" + }, + "DS2": { + "Description": "Pure DS2. Damaged vane and hoist-way switches, and or bent cab stabilizers, and or damaged car guide shoes.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damaged vane and hoist-way switches (41%), and or repair bent cab stabilizers (41%), and or repair damaged car guide shoes (41%). " + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Damaged entrance and car door, and or flooring damage.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damage to doors (68%), and or repair flooring (46%)" + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS8": { + "Description": "Pure DS4. Oil leak in hydraulic line, and or hydraulic tank failure.", + "RepairAction": "Multiple repairs possible (% change of each): Repair oil leak in hydraulic line (27%), and or hydraulic tank failure (81%)" + }, + "DS9": { + "Description": "Combination of DS1 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS10": { + "Description": "Combination of DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS12": { + "Description": "Combination of DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + } + } + }, + "D1014.022": { + "Description": "Hydraulic Elevator \u2013 Applies to most California Installations prior to 1976, most western states installations prior to 1982 and most U.S installations prior to 1998.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Pure DS1. Damaged controls.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damaged controls (100%)" + }, + "DS2": { + "Description": "Pure DS2. Damaged vane and hoist-way switches, and or bent cab stabilizers, and or damaged car guide shoes.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damaged vane and hoist-way switches (41%), and or repair bent cab stabilizers (41%), and or repair damaged car guide shoes (41%). " + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Damaged entrance and car door, and or flooring damage.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damage to cab door (68%), and or repair cab flooring (46%)" + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS8": { + "Description": "Pure DS4. Oil leak in hydraulic line, and or hydraulic tank failure.", + "RepairAction": "Multiple repairs possible (% change of each): Repair oil leak in hydraulic line (27%), and or hydraulic tank failure (81%)" + }, + "DS9": { + "Description": "Combination of DS1 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS10": { + "Description": "Combination of DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS12": { + "Description": "Combination of DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + } + } + }, + "D2021.011a": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One joint per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. ", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2021.011b": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One joint per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2021.012a": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + }, + "D2021.012b": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One joint per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF.." + } + } + }, + "D2021.013a": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + }, + "D2021.013b": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints. One joint per 1000 LF." + } + } + }, + "D2021.014a": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + } + }, + "D2021.014b": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints. One joint per 1000 LF." + } + } + }, + "D2021.021a": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC A or B, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. ", + "RepairAction": "Replace failed 60 ft pipe sections including supports. One repair per 1000 LF." + } + } + }, + "D2021.022a": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC C, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints. One joint per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. ", + "RepairAction": "Replace 20 ft section of pipe at leaking joints. One repair per 1000 LF." + } + } + }, + "D2021.023a": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC D,E,F, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": NaN + } + } + }, + "D2021.023b": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC D,E,F, BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints. One joint per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints. One repair per 1000 LF." + } + } + }, + "D2021.024a": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC D,E,F (OSPHD or sim), PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": NaN + } + } + }, + "D2021.024b": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC D,E,F (OSPHD or sim), BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One joint per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2022.011a": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2022.011b": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2022.012a": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + }, + "D2022.012b": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2022.013a": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + }, + "D2022.013b": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + } + }, + "D2022.014a": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed 60 ft pipe sections including supports. One repair per 1000 LF." + } + } + }, + "D2022.014b": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + } + }, + "D2022.021a": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC A or B, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": NaN + } + } + }, + "D2022.022a": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC C, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe. ", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": NaN + } + } + }, + "D2022.023a": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe. ", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 60 ft pipe sections including supports. One repair per 1000 LF." + } + } + }, + "D2022.023b": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 foot of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": NaN + } + } + }, + "D2022.024a": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe. ", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 60 ft pipe sections including supports. One repair per 1000 LF." + } + } + }, + "D2022.024b": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 foot of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe. ", + "RepairAction": NaN + } + } + }, + "D2031.011b": { + "Description": "Sanitary Waste Piping - Cast Iron w/flexible couplings, SDC A,B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports and 60 ft pipe per 1000 LF." + } + } + }, + "D2031.012b": { + "Description": "Sanitary Waste Piping - Cast Iron w/flexible couplings, SDC C, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports and 60 ft pipe per 1000 LF." + } + } + }, + "D2031.013b": { + "Description": "Sanitary Waste Piping - Cast Iron w/flexible couplings, SDC D,E,F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + } + }, + "D2031.014b": { + "Description": "Sanitary Waste Piping - Cast Iron w/flexible couplings, SDC D,E,F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + } + }, + "D2031.021a": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC A,B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Joints break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 20 ft pipe sections including supports - one per 1000 LF." + } + } + }, + "D2031.021b": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC A,B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet)", + "RepairAction": "Replace failed supports and 60 ft pipe per 1000 LF." + } + } + }, + "D2031.022a": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed 20 ft pipe sections including supports - one per 1000 LF." + } + } + }, + "D2031.022b": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC C, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet)", + "RepairAction": "Replace failed supports and 60 ft pipe per 1000 LF." + } + } + }, + "D2031.023a": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC D,E,F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Joints break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 20 ft pipe sections including supports - one per 1000 LF." + } + } + }, + "D2031.023b": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC D,E,F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + } + }, + "D2031.024a": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC D,E,F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Joints break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 20 ft pipe sections including supports - one per 1000 LF." + } + } + }, + "D2031.024b": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC D,E,F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten flange bolts at leaking joints." + } + } + }, + "D2051.011a": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": NaN + } + } + }, + "D2051.011b": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2051.012a": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2051.012b": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + }, + "D2051.013a": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + }, + "D2051.013b": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + } + } + }, + "D2051.014a": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + }, + "D2051.014b": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + } + } + }, + "D2051.021a": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe. Retighten flange at leaking joint.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + }, + "D2051.021b": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC A or B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe ", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + }, + "D2051.022a": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + }, + "D2051.023a": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + }, + "D2051.023b": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 0.01 failures per 20 foot pipe section.", + "RepairAction": "Replace failed supports, one per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + }, + "D2051.024a": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + }, + "D2051.024b": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 foot of pipe.", + "RepairAction": "Replace failed supports, one per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + }, + "D2061.011a": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + }, + "D2061.011b": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 1 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports, one per 1000 LF." + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 60 ft pipe and supports per 1000 LF." + } + } + }, + "D2061.012a": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + }, + "D2061.012b": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 1 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports, one per 1000 LF." + }, + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 60 ft pipe and supports per 1000 LF." + } + } + }, + "D2061.013a": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + }, + "D2061.013b": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 1 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + }, + "D2061.014a": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + }, + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + }, + "D2061.014b": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 1 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + }, + "D2061.021a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + }, + "D2061.022a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + }, + "D2061.023a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + }, + "D2061.023b": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe .", + "RepairAction": "Replace failed supports, one per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe ", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + }, + "D2061.024a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + }, + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + }, + "D2061.024b": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace failed supports, one per 1000 LF." + }, + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe ", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + }, + "D3031.011a": { + "Description": "Chiller - Capacity: < 100 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.011b": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.011c": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.011d": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012a": { + "Description": "Chiller - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012b": { + "Description": "Chiller - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012c": { + "Description": "Chiller - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012d": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012e": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012f": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012g": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012h": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012i": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012j": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012k": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.012l": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013a": { + "Description": "Chiller - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013b": { + "Description": "Chiller - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013c": { + "Description": "Chiller - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013d": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013e": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013f": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013g": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013h": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013i": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013j": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013k": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.013l": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.021a": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.021b": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.021c": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.021d": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022a": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022b": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022c": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022d": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022e": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022f": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022g": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022h": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022i": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022j": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022k": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.022l": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023a": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023b": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023c": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023d": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023e": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023f": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023g": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023h": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023i": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023j": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023k": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3031.023l": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + }, + "D3032.011a": { + "Description": "Compressor - Capacity: Small non medical air supply - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.011b": { + "Description": "Compressor - Capacity: Large non medical air supply - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.011c": { + "Description": "Compressor - Capacity: Small medical quality air supply - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.011d": { + "Description": "Compressor - Capacity: Large medical quality air supply - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.012a": { + "Description": "Compressor - Capacity: Small non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3032.012b": { + "Description": "Compressor - Capacity: Small non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.012c": { + "Description": "Compressor - Capacity: Small non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require replacement" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3032.012d": { + "Description": "Compressor - Capacity: Large non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3032.012e": { + "Description": "Compressor - Capacity: Large non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.012f": { + "Description": "Compressor - Capacity: Large non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require replacement" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3032.012g": { + "Description": "Compressor - Capacity: Small medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3032.012h": { + "Description": "Compressor - Capacity: Small medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.012i": { + "Description": "Compressor - Capacity: Small medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require replacement" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3032.012j": { + "Description": "Compressor - Capacity: Large medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3032.012k": { + "Description": "Compressor - Capacity: Large medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.012l": { + "Description": "Compressor - Capacity: Large medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require replacement" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3032.013a": { + "Description": "Compressor - Capacity: Small non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3032.013b": { + "Description": "Compressor - Capacity: Small non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.013c": { + "Description": "Compressor - Capacity: Small non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require repair." + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3032.013d": { + "Description": "Compressor - Capacity: Large non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3032.013e": { + "Description": "Compressor - Capacity: Large non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.013f": { + "Description": "Compressor - Capacity: Large non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require repair." + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3032.013g": { + "Description": "Compressor - Capacity: Small medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3032.013h": { + "Description": "Compressor - Capacity: Small medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.013i": { + "Description": "Compressor - Capacity: Small medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require repair." + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3032.013j": { + "Description": "Compressor - Capacity: Large medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3032.013k": { + "Description": "Compressor - Capacity: Large medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D3032.013l": { + "Description": "Compressor - Capacity: Large medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require repair." + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3041.001a": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC A or B", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + }, + "DS2": { + "Description": "Fan dislodges from isolators and drops.", + "RepairAction": "Replace fan, isolators and section of ducting to which fan is connected." + } + } + }, + "D3041.001b": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC C", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + }, + "DS2": { + "Description": "Fan dislodges from isolators and drops.", + "RepairAction": "Replace fan, isolators and section of ducting to which fan is connected." + } + } + }, + "D3041.001c": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC D, E, F", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + }, + "DS2": { + "Description": "Fan dislodges from isolators and drops.", + "RepairAction": "Replace fan, isolators and section of ducting to which fan is connected." + } + } + }, + "D3041.001d": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC D, E, F (OSHPD or sim)", + "Comments": "Costing per 10 units\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC installations\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC installations - SDC D, E or F (high seismic design)\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + }, + "DS2": { + "Description": "Fan dislodges from isolators and drops.", + "RepairAction": "Replace fan, isolators and section of ducting to which fan is connected." + } + } + }, + "D3041.002a": { + "Description": "HVAC Fan In Line Fan, Fan independently supported but not on vibration isolators, SDC A or B", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + } + }, + "D3041.002b": { + "Description": "HVAC Fan In Line Fan, Fan independently supported but not on vibration isolators, SDC C", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + } + }, + "D3041.002c": { + "Description": "HVAC Fan In Line Fan, Fan independently supported but not on vibration isolators, SDC D, E, F", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + } + }, + "D3041.002d": { + "Description": "HVAC Fan In Line Fan, Fan independently supported but not on vibration isolators, SDC D, E, F (OSHPD or sim)", + "Comments": "Costing per 10 units\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC installations\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC installations - SDC D, E or F (high seismic design)\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + } + }, + "D3041.011a": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.011b": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.011c": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.011d": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.012a": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.012b": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.012c": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.012d": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.021a": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.021b": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.021c": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.021d": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.022a": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.022b": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.022c": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.022d": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + }, + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + }, + "D3041.031a": { + "Description": "HVAC Drops / Diffusers in suspended ceilings - No independent safety wires, SDC A or B", + "Comments": "Costing per 10 units, No independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + }, + "D3041.031b": { + "Description": "HVAC Drops / Diffusers in suspended ceilings - No independent safety wires, SDC C", + "Comments": "Costing per 10 units, No independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + }, + "D3041.032a": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC A or B", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + }, + "D3041.032b": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC C", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + }, + "D3041.032c": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC D, E, or F", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + }, + "D3041.032d": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC Ducting Installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC Ducting Installation - SDC D, E or F (high seismic design)\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + }, + "D3041.041a": { + "Description": "Variable Air Volume (VAV) box with in-line coil, SDC A or B", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Coil damages connection to plumbing. Leakage of hot water.", + "RepairAction": "Replace coil and cleanup water damage." + } + } + }, + "D3041.041b": { + "Description": "Variable Air Volume (VAV) box with in-line coil, SDC C", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Coil damages connection to plumbing. Leakage of hot water.", + "RepairAction": "Replace coil and cleanup water damage." + } + } + }, + "D3041.101a": { + "Description": "HVAC Fan - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace equipment." + } + } + }, + "D3041.102a": { + "Description": "HVAC Fan - Capacity: all - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Repair anchorage and replace equipment." + } + } + }, + "D3041.102b": { + "Description": "HVAC Fan - Capacity: all - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + }, + "D3041.102c": { + "Description": "HVAC Fan - Capacity: all - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Repair anchorage and replace equipment." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair equipment." + } + } + }, + "D3041.103a": { + "Description": "HVAC Fan - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Repair anchorage and replace equipment." + } + } + }, + "D3041.103b": { + "Description": "HVAC Fan - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair equipment." + } + } + }, + "D3041.103c": { + "Description": "HVAC Fan - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Repair anchorage and replace equipment." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair equipment." + } + } + }, + "D3052.011a": { + "Description": "Air Handling Unit - Capacity: <5000 CFM - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 4000 CFM.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.011b": { + "Description": "Air Handling Unit - Capacity: 5000 to <10000 CFM - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 8000 CFM.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.011c": { + "Description": "Air Handling Unit - Capacity: 10000 to <25000 CFM - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 20000 CFM.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.011d": { + "Description": "Air Handling Unit - Capacity: 25000 to <40000 CFM - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 30000 CFM.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013a": { + "Description": "Air Handling Unit - Capacity: <5000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 4000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013b": { + "Description": "Air Handling Unit - Capacity: <5000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 4000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013c": { + "Description": "Air Handling Unit - Capacity: <5000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 4000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + }, + "DS3": { + "Description": "Damage to attached ducting or piping but anchorage is OK.", + "RepairAction": "Repair attached ducting or piping - equipment does not require replacement and anchorage does not require repair" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3052.013d": { + "Description": "Air Handling Unit - Capacity: 5000 to <10000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 8000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013e": { + "Description": "Air Handling Unit - Capacity: 5000 to <10000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 8000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013f": { + "Description": "Air Handling Unit - Capacity: 5000 to <10000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 8000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + }, + "DS3": { + "Description": "Damage to attached ducting or piping but anchorage is OK.", + "RepairAction": "Repair attached ducting or piping - equipment does not require replacement and anchorage does not require repair" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3052.013g": { + "Description": "Air Handling Unit - Capacity: 10000 to <25000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 20000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013h": { + "Description": "Air Handling Unit - Capacity: 10000 to <25000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 20000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013i": { + "Description": "Air Handling Unit - Capacity: 10000 to <25000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 20000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + }, + "DS3": { + "Description": "Damage to attached ducting or piping but anchorage is OK.", + "RepairAction": "Repair attached ducting or piping - equipment does not require replacement and anchorage does not require repair" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3052.013j": { + "Description": "Air Handling Unit - Capacity: 25000 to <40000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 30000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013k": { + "Description": "Air Handling Unit - Capacity: 25000 to <40000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 30000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + }, + "D3052.013l": { + "Description": "Air Handling Unit - Capacity: 25000 to <40000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 30000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + }, + "DS3": { + "Description": "Damage to attached ducting or piping but anchorage is OK.", + "RepairAction": "Repair attached ducting or piping - equipment does not require replacement and anchorage does not require repair" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + }, + "D3067.011a": { + "Description": "Control Panel - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace some components (relays, circuit boards)." + } + } + }, + "D3067.012a": { + "Description": "Control Panel - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D3067.012b": { + "Description": "Control Panel - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace some components (relays, circuit boards)." + } + } + }, + "D3067.012c": { + "Description": "Control Panel - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Replace some components (relays, circuit boards" + } + } + }, + "D4011.021a": { + "Description": "Fire Sprinkler Water Piping - Horizontal Mains and Branches - Old Style Victaulic - Thin Wall Steel - No bracing, SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, horizontal main and branches\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: One failure is expected per 1000 feet of pipe. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at joints - 0.02 leaks per 20 ft section of pipe.", + "RepairAction": "Replace leaking joints and minor water cleanup. " + }, + "DS2": { + "Description": "Joints Break - Major Leakage - 0.02 breaks per 20 ft section of pipe.", + "RepairAction": "Replace 20 ft section of pipe, joints and major water cleanup at leaking joints. " + } + } + }, + "D4011.022a": { + "Description": "Fire Sprinkler Water Piping - Horizontal Mains and Branches - Old Style Victaulic - Thin Wall Steel - No bracing, SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, horizontal main and branches\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: One failure is expected per 1000 feet of pipe. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at joints - 0.02 leaks per 20 ft section of pipe.", + "RepairAction": "Replace leaking joints and minor water cleanup. " + }, + "DS2": { + "Description": "Joints Break - Major Leakage - 0.02 breaks per 20 ft section of pipe.", + "RepairAction": "Replace 20 ft section of pipe, joints and major water cleanup at leaking joints. " + } + } + }, + "D4011.023a": { + "Description": "Fire Sprinkler Water Piping - Horizontal Mains and Branches - Old Style Victaulic - Thin Wall Steel - Poorly designed bracing, SDC D, E, or F , PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, horizontal main and branches\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 1000 feet of pipe. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at joints - 0.02 leaks per 20 ft section of pipe.", + "RepairAction": "Replace leaking joints and minor water cleanup. " + }, + "DS2": { + "Description": "Joints Break - Major Leakage - 0.02 breaks per 20 ft section of pipe.", + "RepairAction": "Replace 20 ft section of pipe, joints and major water cleanup at leaking joints. " + } + } + }, + "D4011.024a": { + "Description": "Fire Sprinkler Water Piping - Horizontal Mains and Branches - Old Style Victaulic - Thin Wall Steel - with designed bracing, SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, horizontal main and branches\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 1000 feet of pipe. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at joints - 0.02 leaks per 20 ft section of pipe.", + "RepairAction": "Replace leaking joints and minor water cleanup. " + }, + "DS2": { + "Description": "Joints Break - Major Leakage - 0.02 breaks per 20 ft section of pipe.", + "RepairAction": "Replace 20 ft section of pipe, joints and major water cleanup at leaking joints. " + } + } + }, + "D4011.031a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC A or B", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.032a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC C", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.033a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC D, E, or F", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + } + }, + "D4011.034a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + } + }, + "D4011.041a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile HARD ceiling - 6 ft. long drop maximum, SDC A or B", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.042a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile HARD ceiling - 6 ft. long drop maximum, SDC C", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.053a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into braced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC D, E, or F", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.054a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into braced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.063a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into braced lay-in tile HARD ceiling - 6 ft. long drop maximum, SDC D, E, or F", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.064a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into braced lay-in tile HARD ceiling - 6 ft. long drop maximum, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.071a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - No Ceiling - 6 ft. long drop maximum, SDC A or B", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B ( no seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.072a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - No Ceiling - 6 ft. long drop maximum, SDC C", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C ( low seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.073a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - No Ceiling - 6 ft. long drop maximum, SDC D, E, or F", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D4011.074a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - No Ceiling - 6 ft. long drop maximum, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F ( high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + }, + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + }, + "D5011.011a": { + "Description": "Transformer/primary service - Capacity: <100 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.011b": { + "Description": "Transformer/primary service - Capacity: 100 to <350 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.011c": { + "Description": "Transformer/primary service - Capacity: 350 to <750 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.011d": { + "Description": "Transformer/primary service - Capacity: 750 to 1500 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013a": { + "Description": "Transformer/primary service - Capacity: <100 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013b": { + "Description": "Transformer/primary service - Capacity: <100 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013c": { + "Description": "Transformer/primary service - Capacity: <100 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013d": { + "Description": "Transformer/primary service - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013e": { + "Description": "Transformer/primary service - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013f": { + "Description": "Transformer/primary service - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013g": { + "Description": "Transformer/primary service - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013h": { + "Description": "Transformer/primary service - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013i": { + "Description": "Transformer/primary service - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013j": { + "Description": "Transformer/primary service - Capacity: 750 to 1500 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013k": { + "Description": "Transformer/primary service - Capacity: 750 to 1500 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5011.013l": { + "Description": "Transformer/primary service - Capacity: 750 to 1500 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + }, + "D5012.013a": { + "Description": "Motor Control Center - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative", + "RepairAction": "Replace equipment." + } + } + }, + "D5012.013b": { + "Description": "Motor Control Center - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5012.013c": { + "Description": "Motor Control Center - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + }, + "D5012.013d": { + "Description": "Motor Control Center - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "If anchored repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad if anchored." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + }, + "D5012.021a": { + "Description": "Low Voltage Switchgear - Capacity: 100 to <350 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace insulator." + } + } + }, + "D5012.021b": { + "Description": "Low Voltage Switchgear - Capacity: 350 to <750 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace insulator." + } + } + }, + "D5012.021c": { + "Description": "Low Voltage Switchgear - Capacity: 750 to <1200 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace insulator." + } + } + }, + "D5012.021d": { + "Description": "Low Voltage Switchgear - Capacity: 1200 to 2000 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace insulator." + } + } + }, + "D5012.023a": { + "Description": "Low Voltage Switchgear - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5012.023b": { + "Description": "Low Voltage Switchgear - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + }, + "D5012.023c": { + "Description": "Low Voltage Switchgear - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + }, + "D5012.023d": { + "Description": "Low Voltage Switchgear - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5012.023e": { + "Description": "Low Voltage Switchgear - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + }, + "D5012.023f": { + "Description": "Low Voltage Switchgear - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + }, + "D5012.023g": { + "Description": "Low Voltage Switchgear - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5012.023h": { + "Description": "Low Voltage Switchgear - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + }, + "D5012.023i": { + "Description": "Low Voltage Switchgear - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + }, + "D5012.023j": { + "Description": "Low Voltage Switchgear - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5012.023k": { + "Description": "Low Voltage Switchgear - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + }, + "D5012.023l": { + "Description": "Low Voltage Switchgear - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + }, + "D5012.031a": { + "Description": "Distribution Panel - Capacity: 100 to <350 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + }, + "D5012.031b": { + "Description": "Distribution Panel - Capacity: 350 to <750 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + }, + "D5012.031c": { + "Description": "Distribution Panel - Capacity: 750 to <1200 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + }, + "D5012.031d": { + "Description": "Distribution Panel - Capacity: 1200 to 2000 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + }, + "D5012.033a": { + "Description": "Distribution Panel - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + } + } + }, + "D5012.033b": { + "Description": "Distribution Panel - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + }, + "D5012.033c": { + "Description": "Distribution Panel - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + }, + "D5012.033d": { + "Description": "Distribution Panel - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + } + } + }, + "D5012.033e": { + "Description": "Distribution Panel - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + }, + "D5012.033f": { + "Description": "Distribution Panel - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + }, + "D5012.033g": { + "Description": "Distribution Panel - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + } + } + }, + "D5012.033h": { + "Description": "Distribution Panel - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + }, + "D5012.033i": { + "Description": "Distribution Panel - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + }, + "D5012.033j": { + "Description": "Distribution Panel - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + } + } + }, + "D5012.033k": { + "Description": "Distribution Panel - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + }, + "D5012.033l": { + "Description": "Distribution Panel - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + }, + "D5092.011a": { + "Description": "Battery Rack - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Pure DS1. Damaged, inoperative. Batteries fall, crack cases, dislodge conductors, or are otherwise damaged.", + "RepairAction": "Replace batteries." + }, + "DS2": { + "Description": "Pure DS2. Batteries spill battery acid.", + "RepairAction": "Clean up spilled acid." + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Battery rack collapses.", + "RepairAction": "Replace battery rack." + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + } + } + }, + "D5092.013a": { + "Description": "Battery Rack - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.013b": { + "Description": "Battery Rack - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Pure DS1. Damaged, inoperative but anchorage is OK. Batteries fall, crack cases, dislodge conductors, or are otherwise damaged.", + "RepairAction": "Replace batteries." + }, + "DS2": { + "Description": "Pure DS2. Batteries spill battery acid.", + "RepairAction": "Clean up spilled acid." + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Battery rack collapses.", + "RepairAction": "Replace battery rack." + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + } + } + }, + "D5092.013c": { + "Description": "Battery Rack - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Replace batteries." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Replace batteries and clean up acid." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Replace rack including batteries and clean up acid." + } + } + }, + "D5092.021a": { + "Description": "Battery Charger - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service for intermittent voltage output or for blown surge suppressor." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D5092.023a": { + "Description": "Battery Charger - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad / wall." + } + } + }, + "D5092.023b": { + "Description": "Battery Charger - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service for intermittent voltage output or for blown surge suppressor." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + }, + "D5092.023c": { + "Description": "Battery Charger - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad / wall." + }, + "DS3": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Service for intermittent voltage output or for blown surge suppressor." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Replace equipment." + } + } + }, + "D5092.031a": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.031b": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.031c": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.031d": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.032a": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.032b": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.032c": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + }, + "D5092.032d": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.032e": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.032f": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + }, + "D5092.032g": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.032h": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.032i": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + }, + "D5092.032j": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.032k": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.032l": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + }, + "D5092.033a": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.033b": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.033c": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + }, + "D5092.033d": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.033e": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.033f": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + }, + "D5092.033g": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.033h": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.033i": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + }, + "D5092.033j": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + }, + "D5092.033k": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + }, + "D5092.033l": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": "YES", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + }, + "F1012.001": { + "Description": "Storage racks designed and installed before 2007, big box retail (12' to 15' tall)", + "Comments": "Standard pallet back to back storage rack. Three to five levels tall with total height from 15 to 20 ft. Costing assumes one single side access rack. Costing of rack and restocking based upon 50 LF of rack. Costing of rack contents to be furnished by user. \nConstruction Quality: Normal\nSeismic Installation Conditions: Varies", + "SuggestedComponentBlockSize": "50 LF", + "RoundUpToIntegerQuantity": "NO", + "ControllingDemand": "Damage Quantity", + "DamageStates": { + "DS1": { + "Description": "Significant merchandise shedding from rack shelves.", + "RepairAction": "Minor repair to storage rack. Resort and restock shelves. Clean up debris. " + }, + "DS2": { + "Description": "Significant structural damage to rack structure.", + "RepairAction": "Remove and replace storage rack system. Make minor repair to adjacent finishes. Resort and restock shelves. Clean up debris. " + } + } + } +} \ No newline at end of file diff --git a/pelicun/resources/bldg_repair_DB_Hazus_EQ.csv b/pelicun/resources/bldg_repair_DB_Hazus_EQ.csv new file mode 100644 index 000000000..4a880b735 --- /dev/null +++ b/pelicun/resources/bldg_repair_DB_Hazus_EQ.csv @@ -0,0 +1,169 @@ +ID,Incomplete,Quantity-Unit,DV-Unit,DS1-Theta_0,DS2-Theta_0,DS3-Theta_0,DS4-Theta_0,DS5-Theta_0 +STR.RES1-Cost,0,1 EA,loss_ratio,0.5,2.3,11.7,23.4,23.4 +STR.RES1-Time,0,1 EA,day,2.0,30.0,90.0,180.0,180.0 +STR.RES2-Cost,0,1 EA,loss_ratio,0.4,2.4,7.3,24.4,24.4 +STR.RES2-Time,0,1 EA,day,2.0,10.0,30.0,60.0,60.0 +STR.RES3-Cost,0,1 EA,loss_ratio,0.3,1.4,6.9,13.8,13.8 +STR.RES3-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +STR.RES4-Cost,0,1 EA,loss_ratio,0.2,1.4,6.8,13.6,13.6 +STR.RES4-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +STR.RES5-Cost,0,1 EA,loss_ratio,0.4,1.9,9.4,18.8,18.8 +STR.RES5-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +STR.RES6-Cost,0,1 EA,loss_ratio,0.4,1.8,9.2,18.4,18.4 +STR.RES6-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +STR.COM1-Cost,0,1 EA,loss_ratio,0.6,2.9,14.7,29.4,29.4 +STR.COM1-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +STR.COM2-Cost,0,1 EA,loss_ratio,0.6,3.2,16.2,32.4,32.4 +STR.COM2-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +STR.COM3-Cost,0,1 EA,loss_ratio,0.3,1.6,8.1,16.2,16.2 +STR.COM3-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +STR.COM4-Cost,0,1 EA,loss_ratio,0.4,1.9,9.6,19.2,19.2 +STR.COM4-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +STR.COM5-Cost,0,1 EA,loss_ratio,0.3,1.4,6.9,13.8,13.8 +STR.COM5-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +STR.COM6-Cost,0,1 EA,loss_ratio,0.2,1.4,7.0,14.0,14.0 +STR.COM6-Time,0,1 EA,day,10.0,45.0,180.0,360.0,360.0 +STR.COM7-Cost,0,1 EA,loss_ratio,0.3,1.4,7.2,14.4,14.4 +STR.COM7-Time,0,1 EA,day,10.0,45.0,180.0,240.0,240.0 +STR.COM8-Cost,0,1 EA,loss_ratio,0.2,1.0,5.0,10.0,10.0 +STR.COM8-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +STR.COM9-Cost,0,1 EA,loss_ratio,0.3,1.2,6.1,12.2,12.2 +STR.COM9-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +STR.COM10-Cost,0,1 EA,loss_ratio,1.3,6.1,30.4,60.9,60.9 +STR.COM10-Time,0,1 EA,day,2.0,20.0,80.0,160.0,160.0 +STR.IND1-Cost,0,1 EA,loss_ratio,0.4,1.6,7.8,15.7,15.7 +STR.IND1-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +STR.IND2-Cost,0,1 EA,loss_ratio,0.4,1.6,7.8,15.7,15.7 +STR.IND2-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +STR.IND3-Cost,0,1 EA,loss_ratio,0.4,1.6,7.8,15.7,15.7 +STR.IND3-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +STR.IND4-Cost,0,1 EA,loss_ratio,0.4,1.6,7.8,15.7,15.7 +STR.IND4-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +STR.IND5-Cost,0,1 EA,loss_ratio,0.4,1.6,7.8,15.7,15.7 +STR.IND5-Time,0,1 EA,day,20.0,45.0,180.0,360.0,360.0 +STR.IND6-Cost,0,1 EA,loss_ratio,0.4,1.6,7.8,15.7,15.7 +STR.IND6-Time,0,1 EA,day,5.0,20.0,80.0,160.0,160.0 +STR.AGR1-Cost,0,1 EA,loss_ratio,0.8,4.6,23.1,46.2,46.2 +STR.AGR1-Time,0,1 EA,day,2.0,10.0,30.0,60.0,60.0 +STR.REL1-Cost,0,1 EA,loss_ratio,0.3,2.0,9.9,19.8,19.8 +STR.REL1-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +STR.GOV1-Cost,0,1 EA,loss_ratio,0.3,1.8,9.0,17.9,17.9 +STR.GOV1-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +STR.GOV2-Cost,0,1 EA,loss_ratio,0.3,1.5,7.7,15.3,15.3 +STR.GOV2-Time,0,1 EA,day,5.0,20.0,90.0,180.0,180.0 +STR.EDU1-Cost,0,1 EA,loss_ratio,0.4,1.9,9.5,18.9,18.9 +STR.EDU1-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +STR.EDU2-Cost,0,1 EA,loss_ratio,0.2,1.1,5.5,11.0,11.0 +STR.EDU2-Time,0,1 EA,day,10.0,45.0,180.0,360.0,360.0 +NSD.RES1-Cost,0,1 EA,loss_ratio,1.0,5.0,25.0,50.0, +NSD.RES2-Cost,0,1 EA,loss_ratio,0.8,3.8,18.9,37.8, +NSD.RES3-Cost,0,1 EA,loss_ratio,0.9,4.3,21.3,42.5, +NSD.RES4-Cost,0,1 EA,loss_ratio,0.9,4.3,21.6,43.2, +NSD.RES5-Cost,0,1 EA,loss_ratio,0.8,4.0,20.0,40.0, +NSD.RES6-Cost,0,1 EA,loss_ratio,0.8,4.1,20.4,40.8, +NSD.COM1-Cost,0,1 EA,loss_ratio,0.6,2.7,13.8,27.5, +NSD.COM2-Cost,0,1 EA,loss_ratio,0.6,2.6,13.2,26.5, +NSD.COM3-Cost,0,1 EA,loss_ratio,0.7,3.4,16.9,33.8, +NSD.COM4-Cost,0,1 EA,loss_ratio,0.7,3.3,16.4,32.9, +NSD.COM5-Cost,0,1 EA,loss_ratio,0.7,3.4,17.2,34.5, +NSD.COM6-Cost,0,1 EA,loss_ratio,0.8,3.5,17.4,34.7, +NSD.COM7-Cost,0,1 EA,loss_ratio,0.7,3.4,17.2,34.4, +NSD.COM8-Cost,0,1 EA,loss_ratio,0.7,3.6,17.8,35.6, +NSD.COM9-Cost,0,1 EA,loss_ratio,0.7,3.5,17.6,35.1, +NSD.COM10-Cost,0,1 EA,loss_ratio,0.4,1.7,8.7,17.4, +NSD.IND1-Cost,0,1 EA,loss_ratio,0.2,1.2,5.9,11.8, +NSD.IND2-Cost,0,1 EA,loss_ratio,0.2,1.2,5.9,11.8, +NSD.IND3-Cost,0,1 EA,loss_ratio,0.2,1.2,5.9,11.8, +NSD.IND4-Cost,0,1 EA,loss_ratio,0.2,1.2,5.9,11.8, +NSD.IND5-Cost,0,1 EA,loss_ratio,0.2,1.2,5.9,11.8, +NSD.IND6-Cost,0,1 EA,loss_ratio,0.2,1.2,5.9,11.8, +NSD.AGR1-Cost,0,1 EA,loss_ratio,0.0,0.8,3.8,7.7, +NSD.REL1-Cost,0,1 EA,loss_ratio,0.8,3.3,16.3,32.6, +NSD.GOV1-Cost,0,1 EA,loss_ratio,0.7,3.3,16.4,32.8, +NSD.GOV2-Cost,0,1 EA,loss_ratio,0.7,3.4,17.1,34.2, +NSD.EDU1-Cost,0,1 EA,loss_ratio,0.9,4.9,24.3,48.7, +NSD.EDU2-Cost,0,1 EA,loss_ratio,1.2,6.0,30.0,60.0, +NSA.RES1-Cost,0,1 EA,loss_ratio,0.5,2.7,8.0,26.6, +NSA.RES2-Cost,0,1 EA,loss_ratio,0.8,3.8,11.3,37.8, +NSA.RES3-Cost,0,1 EA,loss_ratio,0.8,4.3,13.1,43.7, +NSA.RES4-Cost,0,1 EA,loss_ratio,0.9,4.3,13.0,43.2, +NSA.RES5-Cost,0,1 EA,loss_ratio,0.8,4.1,12.4,41.2, +NSA.RES6-Cost,0,1 EA,loss_ratio,0.8,4.1,12.2,40.8, +NSA.COM1-Cost,0,1 EA,loss_ratio,0.8,4.4,12.9,43.1, +NSA.COM2-Cost,0,1 EA,loss_ratio,0.8,4.2,12.4,41.1, +NSA.COM3-Cost,0,1 EA,loss_ratio,1.0,5.0,15.0,50.0, +NSA.COM4-Cost,0,1 EA,loss_ratio,0.9,4.8,14.4,47.9, +NSA.COM5-Cost,0,1 EA,loss_ratio,1.0,5.2,15.5,51.7, +NSA.COM6-Cost,0,1 EA,loss_ratio,1.0,5.1,15.4,51.3, +NSA.COM7-Cost,0,1 EA,loss_ratio,1.0,5.2,15.3,51.2, +NSA.COM8-Cost,0,1 EA,loss_ratio,1.1,5.4,16.3,54.4, +NSA.COM9-Cost,0,1 EA,loss_ratio,1.0,5.3,15.8,52.7, +NSA.COM10-Cost,0,1 EA,loss_ratio,0.3,2.2,6.5,21.7, +NSA.IND1-Cost,0,1 EA,loss_ratio,1.4,7.2,21.8,72.5, +NSA.IND2-Cost,0,1 EA,loss_ratio,1.4,7.2,21.8,72.5, +NSA.IND3-Cost,0,1 EA,loss_ratio,1.4,7.2,21.8,72.5, +NSA.IND4-Cost,0,1 EA,loss_ratio,1.4,7.2,21.8,72.5, +NSA.IND5-Cost,0,1 EA,loss_ratio,1.4,7.2,21.8,72.5, +NSA.IND6-Cost,0,1 EA,loss_ratio,1.4,7.2,21.8,72.5, +NSA.AGR1-Cost,0,1 EA,loss_ratio,0.8,4.6,13.8,46.1, +NSA.REL1-Cost,0,1 EA,loss_ratio,0.9,4.7,14.3,47.6, +NSA.GOV1-Cost,0,1 EA,loss_ratio,1.0,4.9,14.8,49.3, +NSA.GOV2-Cost,0,1 EA,loss_ratio,1.0,5.1,15.1,50.5, +NSA.EDU1-Cost,0,1 EA,loss_ratio,0.7,3.2,9.7,32.4, +NSA.EDU2-Cost,0,1 EA,loss_ratio,0.6,2.9,8.7,29.0, +LF.RES1-Cost,0,1 EA,loss_ratio,2.0,10.0,44.7,100.0,100.0 +LF.RES1-Time,0,1 EA,day,2.0,30.0,90.0,180.0,180.0 +LF.RES2-Cost,0,1 EA,loss_ratio,2.0,10.0,37.5,100.0,100.0 +LF.RES2-Time,0,1 EA,day,2.0,10.0,30.0,60.0,60.0 +LF.RES3-Cost,0,1 EA,loss_ratio,2.0,10.0,41.3,100.0,100.0 +LF.RES3-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +LF.RES4-Cost,0,1 EA,loss_ratio,2.0,10.0,41.4,100.0,100.0 +LF.RES4-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +LF.RES5-Cost,0,1 EA,loss_ratio,2.0,10.0,41.8,100.0,100.0 +LF.RES5-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +LF.RES6-Cost,0,1 EA,loss_ratio,2.0,10.0,41.8,100.0,100.0 +LF.RES6-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +LF.COM1-Cost,0,1 EA,loss_ratio,2.0,10.0,41.4,100.0,100.0 +LF.COM1-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +LF.COM2-Cost,0,1 EA,loss_ratio,2.0,10.0,41.8,100.0,100.0 +LF.COM2-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +LF.COM3-Cost,0,1 EA,loss_ratio,2.0,10.0,40.0,100.0,100.0 +LF.COM3-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +LF.COM4-Cost,0,1 EA,loss_ratio,2.0,10.0,40.4,100.0,100.0 +LF.COM4-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +LF.COM5-Cost,0,1 EA,loss_ratio,2.0,10.0,39.6,100.0,100.0 +LF.COM5-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +LF.COM6-Cost,0,1 EA,loss_ratio,2.0,10.0,39.8,100.0,100.0 +LF.COM6-Time,0,1 EA,day,10.0,45.0,180.0,360.0,360.0 +LF.COM7-Cost,0,1 EA,loss_ratio,2.0,10.0,39.7,100.0,100.0 +LF.COM7-Time,0,1 EA,day,10.0,45.0,180.0,240.0,240.0 +LF.COM8-Cost,0,1 EA,loss_ratio,2.0,10.0,39.1,100.0,100.0 +LF.COM8-Time,0,1 EA,day,5.0,30.0,90.0,180.0,180.0 +LF.COM9-Cost,0,1 EA,loss_ratio,2.0,10.0,39.5,100.0,100.0 +LF.COM9-Time,0,1 EA,day,5.0,30.0,120.0,240.0,240.0 +LF.COM10-Cost,0,1 EA,loss_ratio,2.0,10.0,45.6,100.0,100.0 +LF.COM10-Time,0,1 EA,day,2.0,20.0,80.0,160.0,160.0 +LF.IND1-Cost,0,1 EA,loss_ratio,2.0,10.0,35.5,100.0,100.0 +LF.IND1-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +LF.IND2-Cost,0,1 EA,loss_ratio,2.0,10.0,35.5,100.0,100.0 +LF.IND2-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +LF.IND3-Cost,0,1 EA,loss_ratio,2.0,10.0,35.5,100.0,100.0 +LF.IND3-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +LF.IND4-Cost,0,1 EA,loss_ratio,2.0,10.0,35.5,100.0,100.0 +LF.IND4-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +LF.IND5-Cost,0,1 EA,loss_ratio,2.0,10.0,35.5,100.0,100.0 +LF.IND5-Time,0,1 EA,day,20.0,45.0,180.0,360.0,360.0 +LF.IND6-Cost,0,1 EA,loss_ratio,2.0,10.0,35.5,100.0,100.0 +LF.IND6-Time,0,1 EA,day,5.0,20.0,80.0,160.0,160.0 +LF.AGR1-Cost,0,1 EA,loss_ratio,1.6,10.0,40.7,100.0,100.0 +LF.AGR1-Time,0,1 EA,day,2.0,10.0,30.0,60.0,60.0 +LF.REL1-Cost,0,1 EA,loss_ratio,2.0,10.0,40.5,100.0,100.0 +LF.REL1-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +LF.GOV1-Cost,0,1 EA,loss_ratio,2.0,10.0,40.2,100.0,100.0 +LF.GOV1-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +LF.GOV2-Cost,0,1 EA,loss_ratio,2.0,10.0,39.9,100.0,100.0 +LF.GOV2-Time,0,1 EA,day,5.0,20.0,90.0,180.0,180.0 +LF.EDU1-Cost,0,1 EA,loss_ratio,2.0,10.0,43.5,100.0,100.0 +LF.EDU1-Time,0,1 EA,day,10.0,30.0,120.0,240.0,240.0 +LF.EDU2-Cost,0,1 EA,loss_ratio,2.0,10.0,44.2,100.0,100.0 +LF.EDU2-Time,0,1 EA,day,10.0,45.0,180.0,360.0,360.0 diff --git a/pelicun/resources/data_sources/FEMA_P58/FEMAP-58_FragilityDatabase_v3.1.2.xls b/pelicun/resources/data_sources/FEMA_P58/FEMAP-58_FragilityDatabase_v3.1.2.xls new file mode 100644 index 000000000..e8f0f44df Binary files /dev/null and b/pelicun/resources/data_sources/FEMA_P58/FEMAP-58_FragilityDatabase_v3.1.2.xls differ diff --git a/pelicun/resources/data_sources/FEMA_P58/changelog.txt b/pelicun/resources/data_sources/FEMA_P58/changelog.txt new file mode 100644 index 000000000..43e3a8ae6 --- /dev/null +++ b/pelicun/resources/data_sources/FEMA_P58/changelog.txt @@ -0,0 +1,5 @@ +The file FEMAP-58_FragilityDatabase_v3.1.2.xls is based on the data distributed as part of Volume 3 in the FEMA P-58 2nd Edition publication at https://femap58.atcouncil.org/ . The basis of this particular file is available at https://femap58.atcouncil.org/documents/pact-3-1-2/17-3-2-provided-fragility-data-1 + +The following minor changes were made to the original file: +- Units that used one of ["TN", "CF", "KV", "AP"] in the "Fragility Unit of Measure" column were replaced with "EA 1". +- The original "By User" units for C3021 components were replaced with "SF 1" in the "Fragility Unit of Measure" column. This change is based on the data in the "Cost Summary" tab and in the "FEMAP-58_ConsequenceEstimationSummary_March2018.xlsx" file that provides details of the cost consequence development. diff --git a/pelicun/resources/data_sources/FEMA_P58_1st_ed/DL xml/DL xml.zip b/pelicun/resources/data_sources/FEMA_P58_1st_ed/DL xml/DL xml.zip deleted file mode 100644 index e32507387..000000000 Binary files a/pelicun/resources/data_sources/FEMA_P58_1st_ed/DL xml/DL xml.zip and /dev/null differ diff --git a/pelicun/resources/data_sources/FEMA_P58_1st_ed/DL_template.json b/pelicun/resources/data_sources/FEMA_P58_1st_ed/DL_template.json deleted file mode 100644 index 13503e6d0..000000000 --- a/pelicun/resources/data_sources/FEMA_P58_1st_ed/DL_template.json +++ /dev/null @@ -1,1925 +0,0 @@ -{ - "Name": "string", - "QuantityUnit": [ - "float", - "string" - ], - "Directional": "bool", - "Correlated": "bool", - "EDP": { - "Type": "string", - "Unit": [ - "float", - "string" - ], - "Offset": "int" - }, - "GeneralInformation": { - "ID": "string", - "Description": "string", - "Author": "string", - "Official": "bool", - "DateCreated": "string", - "Approved": "bool", - "Incomplete": "bool", - "Notes": "string" - }, - "Ratings": { - "DataQuality": "string", - "DataRelevance": "string", - "Documentation": "string", - "Rationality": "string" - }, - "DSGroups": [ - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "string", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - }, - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - }, - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - }, - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - }, - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/FEMA_P58_1st_ed/PACT_fragility_data.xlsx b/pelicun/resources/data_sources/FEMA_P58_1st_ed/PACT_fragility_data.xlsx deleted file mode 100644 index ef731d822..000000000 Binary files a/pelicun/resources/data_sources/FEMA_P58_1st_ed/PACT_fragility_data.xlsx and /dev/null differ diff --git a/pelicun/resources/data_sources/FEMA_P58_1st_ed/pop_template.json b/pelicun/resources/data_sources/FEMA_P58_1st_ed/pop_template.json deleted file mode 100644 index e9e21fb29..000000000 --- a/pelicun/resources/data_sources/FEMA_P58_1st_ed/pop_template.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "peak": "float", - "weekday": { - "daily": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ], - "monthly": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ] - }, - "weekend": { - "daily": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ], - "monthly": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ] - } -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/FEMA_P58_1st_ed/population.json b/pelicun/resources/data_sources/FEMA_P58_1st_ed/population.json deleted file mode 100644 index fc75baaa8..000000000 --- a/pelicun/resources/data_sources/FEMA_P58_1st_ed/population.json +++ /dev/null @@ -1 +0,0 @@ -{"Commercial Office": {"peak": 4.0, "weekday": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.25, 0.5, 0.75, 1.0, 1.0, 0.5, 0.5, 1.0, 1.0, 0.75, 0.5, 0.25, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [0.91, 0.95, 1.0, 1.0, 0.95, 1.0, 0.95, 1.0, 0.95, 1.0, 0.95, 0.95]}, "weekend": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "Elementary School": {"peak": 14.0, "weekday": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.5, 0.5, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [0.73, 0.9, 1.0, 0.77, 0.95, 0.77, 0.0, 0.0, 0.95, 0.95, 0.81, 0.64]}, "weekend": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "Middle School": {"peak": 14.0, "weekday": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.5, 0.25, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [0.73, 0.9, 1.0, 0.77, 0.95, 0.77, 0.0, 0.0, 0.95, 0.95, 0.81, 0.64]}, "weekend": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "High School": {"peak": 12.0, "weekday": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.5, 0.25, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [0.73, 0.9, 1.0, 0.77, 0.95, 0.77, 0.0, 0.0, 0.95, 0.95, 0.81, 0.64]}, "weekend": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "Healthcare": {"peak": 5.0, "weekday": {"daily": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.6, 0.8, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.8, 0.6, 0.4, 0.4], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, "weekend": {"daily": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.5, 0.65, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.65, 0.5, 0.4, 0.4], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "Hospitality": {"peak": 2.5, "weekday": {"daily": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.8, 0.7, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1.0, 1.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, "weekend": {"daily": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.75, 0.5, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 1.0, 1.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "Multi-Unit Residential": {"peak": 3.1, "weekday": {"daily": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.8, 0.6, 0.4, 0.2, 0.2, 0.2, 0.2, 0.2, 0.25, 0.3, 0.35, 0.5, 0.67, 0.84, 1.0, 1.0, 1.0, 1.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}, "weekend": {"daily": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.75, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 1.0, 1.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "Research Laboratories": {"peak": 3.0, "weekday": {"daily": [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.25, 0.25, 0.5, 0.75, 1.0, 1.0, 0.5, 0.5, 1.0, 1.0, 0.75, 0.5, 0.25, 0.25, 0.1, 0.1, 0.1, 0.1], "monthly": [0.91, 0.95, 1.0, 1.0, 0.95, 1.0, 0.95, 1.0, 0.95, 1.0, 0.95, 0.95]}, "weekend": {"daily": [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.1, 0.1, 0.1, 0.1], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "Retail": {"peak": 6.0, "weekday": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.1, 0.2, 0.4, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.4, 0.2, 0.5, 0.0], "monthly": [0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 0.95, 1.0, 1.0, 1.0, 0.95, 0.95]}, "weekend": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.1, 0.25, 0.5, 0.75, 1.0, 1.0, 1.0, 1.0, 1.0, 0.75, 0.5, 0.25, 0.1, 0.5, 0.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}, "Warehouse": {"peak": 1.0, "weekday": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.25, 0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.5, 0.25, 0.0, 0.0, 0.0, 0.0], "monthly": [0.91, 0.95, 1.0, 1.0, 0.95, 1.0, 0.95, 1.0, 0.95, 1.0, 0.95, 0.95]}, "weekend": {"daily": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "monthly": [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]}}} \ No newline at end of file diff --git a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/DL xml/DL xml.zip b/pelicun/resources/data_sources/FEMA_P58_2nd_ed/DL xml/DL xml.zip deleted file mode 100644 index 1631a086c..000000000 Binary files a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/DL xml/DL xml.zip and /dev/null differ diff --git a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/DL_template.json b/pelicun/resources/data_sources/FEMA_P58_2nd_ed/DL_template.json deleted file mode 100644 index 13503e6d0..000000000 --- a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/DL_template.json +++ /dev/null @@ -1,1925 +0,0 @@ -{ - "Name": "string", - "QuantityUnit": [ - "float", - "string" - ], - "Directional": "bool", - "Correlated": "bool", - "EDP": { - "Type": "string", - "Unit": [ - "float", - "string" - ], - "Offset": "int" - }, - "GeneralInformation": { - "ID": "string", - "Description": "string", - "Author": "string", - "Official": "bool", - "DateCreated": "string", - "Approved": "bool", - "Incomplete": "bool", - "Notes": "string" - }, - "Ratings": { - "DataQuality": "string", - "DataRelevance": "string", - "Documentation": "string", - "Rationality": "string" - }, - "DSGroups": [ - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "string", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - }, - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - }, - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - }, - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - }, - { - "MedianEDP": "string", - "Beta": "string", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - }, - { - "Weight": "float", - "LongLeadTime": "float", - "Consequences": { - "RedTag": { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - "Injuries": [ - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - }, - { - "Amount": "float", - "Beta": "float", - "CurveType": "string", - "Bounds": [ - "float", - "float" - ] - } - ], - "ReconstructionCost": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - }, - "ReconstructionTime": { - "Amount": [ - "string", - "string" - ], - "Quantity": [ - "float", - "float" - ], - "CurveType": "string", - "Beta": "float", - "Bounds": [ - "float", - "string" - ] - } - }, - "Description": "string", - "RepairMeasures": "string", - "DamageImageName": "string", - "AffectedArea": [ - "float", - "string" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/PACT_fragility_data.xlsx b/pelicun/resources/data_sources/FEMA_P58_2nd_ed/PACT_fragility_data.xlsx deleted file mode 100644 index 47a74a0d3..000000000 Binary files a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/PACT_fragility_data.xlsx and /dev/null differ diff --git a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/PACT_fragility_data_raw.xlsx b/pelicun/resources/data_sources/FEMA_P58_2nd_ed/PACT_fragility_data_raw.xlsx deleted file mode 100644 index 81e46627e..000000000 Binary files a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/PACT_fragility_data_raw.xlsx and /dev/null differ diff --git a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/pop_template.json b/pelicun/resources/data_sources/FEMA_P58_2nd_ed/pop_template.json deleted file mode 100644 index e9e21fb29..000000000 --- a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/pop_template.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "peak": "float", - "weekday": { - "daily": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ], - "monthly": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ] - }, - "weekend": { - "daily": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ], - "monthly": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ] - } -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/population.json b/pelicun/resources/data_sources/FEMA_P58_2nd_ed/population.json deleted file mode 100644 index 411e36e0f..000000000 --- a/pelicun/resources/data_sources/FEMA_P58_2nd_ed/population.json +++ /dev/null @@ -1,872 +0,0 @@ -{ - "Commercial Office": { - "peak": 4.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.25, - 0.5, - 0.75, - 1.0, - 1.0, - 0.5, - 0.5, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.91, - 0.95, - 1.0, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Elementary School": { - "peak": 14.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.5, - 0.5, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.73, - 0.9, - 1.0, - 0.77, - 0.95, - 0.77, - 0.0, - 0.0, - 0.95, - 0.95, - 0.81, - 0.64 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Middle School": { - "peak": 14.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.25, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.73, - 0.9, - 1.0, - 0.77, - 0.95, - 0.77, - 0.0, - 0.0, - 0.95, - 0.95, - 0.81, - 0.64 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "High School": { - "peak": 12.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.25, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.73, - 0.9, - 1.0, - 0.77, - 0.95, - 0.77, - 0.0, - 0.0, - 0.95, - 0.95, - 0.81, - 0.64 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Healthcare": { - "peak": 5.0, - "weekday": { - "daily": [ - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 0.6, - 0.4, - 0.4 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.5, - 0.65, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.65, - 0.5, - 0.4, - 0.4 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Hospitality": { - "peak": 2.5, - "weekday": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 0.7, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.5, - 0.5, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Multi-Unit Residential": { - "peak": 3.1, - "weekday": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 0.6, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.25, - 0.3, - 0.35, - 0.5, - 0.67, - 0.84, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.75, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.75, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Research Laboratories": { - "peak": 3.0, - "weekday": { - "daily": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.25, - 0.25, - 0.5, - 0.75, - 1.0, - 1.0, - 0.5, - 0.5, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.25, - 0.1, - 0.1, - 0.1, - 0.1 - ], - "monthly": [ - 0.91, - 0.95, - 1.0, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.1, - 0.1, - 0.1, - 0.1 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Retail": { - "peak": 6.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.1, - 0.2, - 0.4, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.4, - 0.2, - 0.5, - 0.0 - ], - "monthly": [ - 0.95, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.95, - 1.0, - 1.0, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.1, - 0.25, - 0.5, - 0.75, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.1, - 0.5, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Warehouse": { - "peak": 1.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.25, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.25, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.91, - 0.95, - 1.0, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - } -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/DL_template.json b/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/DL_template.json deleted file mode 100644 index 6e5fbff61..000000000 --- a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/DL_template.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "Name": "string", - "QuantityUnit": [ - "float", - "string" - ], - "Directional": "bool", - "Correlated": "bool", - "EDP": { - "Type": "string", - "Unit": [ - "float", - "string" - ], - "Offset": "string" - }, - "GeneralInformation": { - "ID": "string", - "Description": "string", - "Author": "string", - "Official": "bool", - "DateCreated": "string", - "Approved": "bool", - "Incomplete": "bool", - "Notes": "string" - }, - "Ratings": { - "DataQuality": "string", - "DataRelevance": "string", - "Documentation": "string", - "Rationality": "string" - }, - "DSGroups": [ - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - }, - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - }, - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/hazus_data_eq.json b/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/hazus_data_eq.json deleted file mode 100644 index 99d5a3452..000000000 --- a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/hazus_data_eq.json +++ /dev/null @@ -1,503 +0,0 @@ -{ - "Structural_Fragility_Groups": { - "EDP_limits": { - "High_code": { - "W1": [0.26, 0.55, 1.28, 2.01], - "W2": [0.26, 0.56, 1.15, 2.08], - "S1L": [0.19, 0.31, 0.64, 1.49], - "S1M": [0.14, 0.26, 0.62, 1.43], - "S1H": [0.10, 0.21, 0.52, 1.31], - "S2L": [0.24, 0.41, 0.76, 1.46], - "S2M": [0.14, 0.27, 0.73, 1.62], - "S2H": [0.11, 0.22, 0.65, 1.60], - "S3": [0.15, 0.26, 0.54, 1.00], - "S4L": [0.24, 0.39, 0.71, 1.33], - "S4M": [0.16, 0.28, 0.73, 1.56], - "S4H": [0.13, 0.25, 0.69, 1.63], - "C1L": [0.21, 0.35, 0.70, 1.37], - "C1M": [0.15, 0.27, 0.73, 1.61], - "C1H": [0.11, 0.22, 0.62, 1.35], - "C2L": [0.24, 0.45, 0.90, 1.55], - "C2M": [0.17, 0.36, 0.87, 1.95], - "C2H": [0.12, 0.29, 0.82, 1.87], - "PC1": [0.20, 0.35, 0.72, 1.25], - "PC2L": [0.24, 0.36, 0.69, 1.23], - "PC2M": [0.17, 0.29, 0.67, 1.51], - "PC2H": [0.12, 0.23, 0.63, 1.49], - "RM1L": [0.30, 0.46, 0.93, 1.57], - "RM1M": [0.20, 0.37, 0.81, 1.90], - "RM2L": [0.26, 0.42, 0.87, 1.49], - "RM2M": [0.17, 0.33, 0.75, 1.83], - "RM2H": [0.12, 0.24, 0.67, 1.78], - "MH": [0.11, 0.18, 0.31, 0.60] - }, - "Moderate_code": { - "W1": [0.24, 0.43, 0.91, 1.34], - "W2": [0.20, 0.35, 0.64, 1.13], - "S1L": [0.15, 0.22, 0.42, 0.80], - "S1M": [0.13, 0.21, 0.44, 0.82], - "S1H": [0.10, 0.18, 0.39, 0.78], - "S2L": [0.20, 0.26, 0.46, 0.84], - "S2M": [0.14, 0.22, 0.53, 0.97], - "S2H": [0.11, 0.19, 0.49, 1.02], - "S3": [0.13, 0.19, 0.33, 0.60], - "S4L": [0.19, 0.26, 0.41, 0.78], - "S4M": [0.14, 0.22, 0.51, 0.92], - "S4H": [0.12, 0.21, 0.51, 0.97], - "C1L": [0.16, 0.23, 0.41, 0.77], - "C1M": [0.13, 0.21, 0.49, 0.89], - "C1H": [0.11, 0.18, 0.41, 0.74], - "C2L": [0.18, 0.30, 0.49, 0.87], - "C2M": [0.15, 0.26, 0.55, 1.02], - "C2H": [0.12, 0.23, 0.57, 1.07], - "PC1": [0.18, 0.24, 0.44, 0.71], - "PC2L": [0.18, 0.25, 0.40, 0.74], - "PC2M": [0.15, 0.21, 0.45, 0.86], - "PC2H": [0.12, 0.19, 0.46, 0.90], - "RM1L": [0.22, 0.30, 0.50, 0.85], - "RM1M": [0.18, 0.26, 0.51, 1.03], - "RM2L": [0.20, 0.28, 0.47, 0.81], - "RM2M": [0.16, 0.23, 0.48, 0.99], - "RM2H": [0.12, 0.20, 0.48, 1.01], - "MH": [0.11, 0.18, 0.31, 0.60] - }, - "Low_code": { - "W1": [0.20, 0.34, 0.61, 0.95], - "W2": [0.14, 0.23, 0.48, 0.75], - "S1L": [0.12, 0.17, 0.30, 0.48], - "S1M": [0.12, 0.18, 0.29, 0.49], - "S1H": [0.10, 0.15, 0.28, 0.48], - "S2L": [0.13, 0.17, 0.30, 0.50], - "S2M": [0.12, 0.18, 0.35, 0.58], - "S2H": [0.11, 0.17, 0.36, 0.63], - "S3": [0.10, 0.13, 0.20, 0.38], - "S4L": [0.13, 0.16, 0.26, 0.46], - "S4M": [0.12, 0.17, 0.31, 0.54], - "S4H": [0.12, 0.17, 0.33, 0.59], - "S5L": [0.13, 0.17, 0.28, 0.45], - "S5M": [0.11, 0.18, 0.34, 0.53], - "S5H": [0.10, 0.18, 0.35, 0.58], - "C1L": [0.12, 0.15, 0.27, 0.45], - "C1M": [0.12, 0.17, 0.32, 0.54], - "C1H": [0.10, 0.15, 0.27, 0.44], - "C2L": [0.14, 0.19, 0.30, 0.52], - "C2M": [0.12, 0.19, 0.38, 0.63], - "C2H": [0.11, 0.19, 0.38, 0.65], - "C3L": [0.12, 0.17, 0.26, 0.44], - "C3M": [0.11, 0.17, 0.32, 0.51], - "C3H": [0.09, 0.16, 0.33, 0.53], - "PC1": [0.13, 0.17, 0.25, 0.45], - "PC2L": [0.13, 0.15, 0.24, 0.44], - "PC2M": [0.11, 0.16, 0.31, 0.52], - "PC2H": [0.11, 0.16, 0.31, 0.55], - "RM1L": [0.16, 0.20, 0.29, 0.54], - "RM1M": [0.14, 0.19, 0.35, 0.63], - "RM2L": [0.14, 0.18, 0.28, 0.51], - "RM2M": [0.12, 0.17, 0.34, 0.60], - "RM2H": [0.11, 0.17, 0.35, 0.62], - "URML": [0.14, 0.20, 0.32, 0.46], - "URMM": [0.10, 0.16, 0.27, 0.46], - "MH": [0.11, 0.18, 0.31, 0.60] - }, - "Pre_code": { - "W1": [0.18, 0.29, 0.51, 0.77], - "W2": [0.12, 0.19, 0.37, 0.60], - "S1L": [0.09, 0.13, 0.22, 0.38], - "S1M": [0.09, 0.14, 0.23, 0.39], - "S1H": [0.08, 0.12, 0.22, 0.38], - "S2L": [0.11, 0.14, 0.23, 0.39], - "S2M": [0.10, 0.14, 0.28, 0.47], - "S2H": [0.09, 0.13, 0.29, 0.50], - "S3": [0.08, 0.10, 0.16, 0.30], - "S4L": [0.10, 0.13, 0.20, 0.36], - "S4M": [0.09, 0.13, 0.25, 0.43], - "S4H": [0.09, 0.14, 0.27, 0.47], - "S5L": [0.11, 0.14, 0.22, 0.37], - "S5M": [0.09, 0.14, 0.28, 0.43], - "S5H": [0.08, 0.14, 0.29, 0.46], - "C1L": [0.10, 0.12, 0.21, 0.36], - "C1M": [0.09, 0.13, 0.26, 0.43], - "C1H": [0.08, 0.12, 0.21, 0.35], - "C2L": [0.11, 0.15, 0.24, 0.42], - "C2M": [0.10, 0.15, 0.30, 0.50], - "C2H": [0.09, 0.15, 0.31, 0.52], - "C3L": [0.10, 0.14, 0.21, 0.35], - "C3M": [0.09, 0.14, 0.25, 0.41], - "C3H": [0.08, 0.13, 0.27, 0.43], - "PC1": [0.11, 0.14, 0.21, 0.35], - "PC2L": [0.10, 0.13, 0.19, 0.35], - "PC2M": [0.09, 0.13, 0.24, 0.42], - "PC2H": [0.09, 0.13, 0.25, 0.43], - "RM1L": [0.13, 0.16, 0.24, 0.43], - "RM1M": [0.11, 0.15, 0.28, 0.50], - "RM2L": [0.12, 0.15, 0.22, 0.41], - "RM2M": [0.10, 0.14, 0.26, 0.47], - "RM2H": [0.09, 0.13, 0.27, 0.50], - "URML": [0.13, 0.17, 0.26, 0.37], - "URMM": [0.09, 0.13, 0.21, 0.38], - "MH": [0.08, 0.11, 0.18, 0.34] - } - }, - "Fragility_beta":{ - "High_code": 0.65, - "Moderate_code": 0.65, - "Low_code": 0.65, - "Pre_code": 0.65 - }, - "P_collapse": { - "W1": 0.03, - "W2": 0.03, - "S1L": 0.08, - "S1M": 0.05, - "S1H": 0.03, - "S2L": 0.08, - "S2M": 0.05, - "S2H": 0.03, - "S3": 0.03, - "S4L": 0.08, - "S4M": 0.05, - "S4H": 0.03, - "S5L": 0.08, - "S5M": 0.05, - "S5H": 0.03, - "C1L": 0.13, - "C1M": 0.10, - "C1H": 0.05, - "C2L": 0.13, - "C2M": 0.10, - "C2H": 0.05, - "C3L": 0.15, - "C3M": 0.13, - "C3H": 0.10, - "PC1": 0.15, - "PC2L": 0.15, - "PC2M": 0.13, - "PC2H": 0.10, - "RM1L": 0.13, - "RM1M": 0.10, - "RM2L": 0.13, - "RM2M": 0.10, - "RM2H": 0.05, - "URML": 0.15, - "URMM": 0.15, - "MH": 0.03 - }, - "Injury_rates":{ - "DS1": { - "W1": [0.05, 0, 0, 0], - "W2": [0.05, 0, 0, 0], - "S1L": [0.05, 0, 0, 0], - "S1M": [0.05, 0, 0, 0], - "S1H": [0.05, 0, 0, 0], - "S2L": [0.05, 0, 0, 0], - "S2M": [0.05, 0, 0, 0], - "S2H": [0.05, 0, 0, 0], - "S3": [0.05, 0, 0, 0], - "S4L": [0.05, 0, 0, 0], - "S4M": [0.05, 0, 0, 0], - "S4H": [0.05, 0, 0, 0], - "S5L": [0.05, 0, 0, 0], - "S5M": [0.05, 0, 0, 0], - "S5H": [0.05, 0, 0, 0], - "C1L": [0.05, 0, 0, 0], - "C1M": [0.05, 0, 0, 0], - "C1H": [0.05, 0, 0, 0], - "C2L": [0.05, 0, 0, 0], - "C2M": [0.05, 0, 0, 0], - "C2H": [0.05, 0, 0, 0], - "C3L": [0.05, 0, 0, 0], - "C3M": [0.05, 0, 0, 0], - "C3H": [0.05, 0, 0, 0], - "PC1": [0.05, 0, 0, 0], - "PC2L": [0.05, 0, 0, 0], - "PC2M": [0.05, 0, 0, 0], - "PC2H": [0.05, 0, 0, 0], - "RM1L": [0.05, 0, 0, 0], - "RM1M": [0.05, 0, 0, 0], - "RM2L": [0.05, 0, 0, 0], - "RM2M": [0.05, 0, 0, 0], - "RM2H": [0.05, 0, 0, 0], - "URML": [0.05, 0, 0, 0], - "URMM": [0.05, 0, 0, 0], - "MH": [0.05, 0, 0, 0] - }, - "DS2": { - "W1": [0.25, 0.030, 0, 0], - "W2": [0.20, 0.025, 0, 0], - "S1L": [0.20, 0.025, 0, 0], - "S1M": [0.20, 0.025, 0, 0], - "S1H": [0.20, 0.025, 0, 0], - "S2L": [0.20, 0.025, 0, 0], - "S2M": [0.20, 0.025, 0, 0], - "S2H": [0.20, 0.025, 0, 0], - "S3": [0.20, 0.025, 0, 0], - "S4L": [0.25, 0.030, 0, 0], - "S4M": [0.25, 0.030, 0, 0], - "S4H": [0.25, 0.030, 0, 0], - "S5L": [0.20, 0.025, 0, 0], - "S5M": [0.20, 0.025, 0, 0], - "S5H": [0.20, 0.025, 0, 0], - "C1L": [0.25, 0.030, 0, 0], - "C1M": [0.25, 0.030, 0, 0], - "C1H": [0.25, 0.030, 0, 0], - "C2L": [0.25, 0.030, 0, 0], - "C2M": [0.25, 0.030, 0, 0], - "C2H": [0.25, 0.030, 0, 0], - "C3L": [0.20, 0.025, 0, 0], - "C3M": [0.20, 0.025, 0, 0], - "C3H": [0.20, 0.025, 0, 0], - "PC1": [0.25, 0.030, 0, 0], - "PC2L": [0.25, 0.030, 0, 0], - "PC2M": [0.25, 0.030, 0, 0], - "PC2H": [0.25, 0.030, 0, 0], - "RM1L": [0.20, 0.025, 0, 0], - "RM1M": [0.20, 0.025, 0, 0], - "RM2L": [0.20, 0.025, 0, 0], - "RM2M": [0.20, 0.025, 0, 0], - "RM2H": [0.20, 0.025, 0, 0], - "URML": [0.35, 0.400, 0.001, 0.001], - "URMM": [0.35, 0.400, 0.001, 0.001], - "MH": [0.25, 0.030, 0, 0] - }, - "DS3": { - "W1": [1, 0.1, 0.001, 0.001], - "W2": [1, 0.1, 0.001, 0.001], - "S1L": [1, 0.1, 0.001, 0.001], - "S1M": [1, 0.1, 0.001, 0.001], - "S1H": [1, 0.1, 0.001, 0.001], - "S2L": [1, 0.1, 0.001, 0.001], - "S2M": [1, 0.1, 0.001, 0.001], - "S2H": [1, 0.1, 0.001, 0.001], - "S3": [1, 0.1, 0.001, 0.001], - "S4L": [1, 0.1, 0.001, 0.001], - "S4M": [1, 0.1, 0.001, 0.001], - "S4H": [1, 0.1, 0.001, 0.001], - "S5L": [1, 0.1, 0.001, 0.001], - "S5M": [1, 0.1, 0.001, 0.001], - "S5H": [1, 0.1, 0.001, 0.001], - "C1L": [1, 0.1, 0.001, 0.001], - "C1M": [1, 0.1, 0.001, 0.001], - "C1H": [1, 0.1, 0.001, 0.001], - "C2L": [1, 0.1, 0.001, 0.001], - "C2M": [1, 0.1, 0.001, 0.001], - "C2H": [1, 0.1, 0.001, 0.001], - "C3L": [1, 0.1, 0.001, 0.001], - "C3M": [1, 0.1, 0.001, 0.001], - "C3H": [1, 0.1, 0.001, 0.001], - "PC1": [1, 0.1, 0.001, 0.001], - "PC2L": [1, 0.1, 0.001, 0.001], - "PC2M": [1, 0.1, 0.001, 0.001], - "PC2H": [1, 0.1, 0.001, 0.001], - "RM1L": [1, 0.1, 0.001, 0.001], - "RM1M": [1, 0.1, 0.001, 0.001], - "RM2L": [1, 0.1, 0.001, 0.001], - "RM2M": [1, 0.1, 0.001, 0.001], - "RM2H": [1, 0.1, 0.001, 0.001], - "URML": [2, 0.2, 0.002, 0.002], - "URMM": [2, 0.2, 0.002, 0.002], - "MH": [1, 0.1, 0.001, 0.001] - }, - "DS4": { - "W1": [5, 1, 0.01, 0.01], - "W2": [5, 1, 0.01, 0.01], - "S1L": [5, 1, 0.01, 0.01], - "S1M": [5, 1, 0.01, 0.01], - "S1H": [5, 1, 0.01, 0.01], - "S2L": [5, 1, 0.01, 0.01], - "S2M": [5, 1, 0.01, 0.01], - "S2H": [5, 1, 0.01, 0.01], - "S3": [5, 1, 0.01, 0.01], - "S4L": [5, 1, 0.01, 0.01], - "S4M": [5, 1, 0.01, 0.01], - "S4H": [5, 1, 0.01, 0.01], - "S5L": [5, 1, 0.01, 0.01], - "S5M": [5, 1, 0.01, 0.01], - "S5H": [5, 1, 0.01, 0.01], - "C1L": [5, 1, 0.01, 0.01], - "C1M": [5, 1, 0.01, 0.01], - "C1H": [5, 1, 0.01, 0.01], - "C2L": [5, 1, 0.01, 0.01], - "C2M": [5, 1, 0.01, 0.01], - "C2H": [5, 1, 0.01, 0.01], - "C3L": [5, 1, 0.01, 0.01], - "C3M": [5, 1, 0.01, 0.01], - "C3H": [5, 1, 0.01, 0.01], - "PC1": [5, 1, 0.01, 0.01], - "PC2L": [5, 1, 0.01, 0.01], - "PC2M": [5, 1, 0.01, 0.01], - "PC2H": [5, 1, 0.01, 0.01], - "RM1L": [5, 1, 0.01, 0.01], - "RM1M": [5, 1, 0.01, 0.01], - "RM2L": [5, 1, 0.01, 0.01], - "RM2M": [5, 1, 0.01, 0.01], - "RM2H": [5, 1, 0.01, 0.01], - "URML": [10, 2, 0.02, 0.02], - "URMM": [10, 2, 0.02, 0.02], - "MH": [5, 1, 0.01, 0.01] - }, - "DS5": { - "W1": [40, 20, 3, 5], - "W2": [40, 20, 5, 10], - "S1L": [40, 20, 5, 10], - "S1M": [40, 20, 5, 10], - "S1H": [40, 20, 5, 10], - "S2L": [40, 20, 5, 10], - "S2M": [40, 20, 5, 10], - "S2H": [40, 20, 5, 10], - "S3": [40, 20, 3, 5], - "S4L": [40, 20, 5, 10], - "S4M": [40, 20, 5, 10], - "S4H": [40, 20, 5, 10], - "S5L": [40, 20, 5, 10], - "S5M": [40, 20, 5, 10], - "S5H": [40, 20, 5, 10], - "C1L": [40, 20, 5, 10], - "C1M": [40, 20, 5, 10], - "C1H": [40, 20, 5, 10], - "C2L": [40, 20, 5, 10], - "C2M": [40, 20, 5, 10], - "C2H": [40, 20, 5, 10], - "C3L": [40, 20, 5, 10], - "C3M": [40, 20, 5, 10], - "C3H": [40, 20, 5, 10], - "PC1": [40, 20, 5, 10], - "PC2L": [40, 20, 5, 10], - "PC2M": [40, 20, 5, 10], - "PC2H": [40, 20, 5, 10], - "RM1L": [40, 20, 5, 10], - "RM1M": [40, 20, 5, 10], - "RM2L": [40, 20, 5, 10], - "RM2M": [40, 20, 5, 10], - "RM2H": [40, 20, 5, 10], - "URML": [40, 20, 5, 10], - "URMM": [40, 20, 5, 10], - "MH": [40, 20, 3, 5] - } - }, - "Reconstruction_cost": { - "RES1": [2.0, 10.0, 44.7, 100.0], - "RES2": [2.0, 10.0, 37.5, 100.0], - "RES3": [2.0, 10.0, 41.3, 100.0], - "RES4": [2.0, 10.0, 41.4, 100.0], - "RES5": [2.0, 10.0, 41.8, 100.0], - "RES6": [2.0, 10.0, 41.8, 100.0], - "COM1": [2.0, 10.0, 41.4, 100.0], - "COM2": [2.0, 10.0, 41.8, 100.0], - "COM3": [2.0, 10.0, 40.0, 100.0], - "COM4": [2.0, 10.0, 40.4, 100.0], - "COM5": [2.0, 10.0, 39.6, 100.0], - "COM6": [2.0, 10.0, 39.8, 100.0], - "COM7": [2.0, 10.0, 39.7, 100.0], - "COM8": [2.0, 10.0, 39.1, 100.0], - "COM9": [2.0, 10.0, 39.5, 100.0], - "COM10": [2.0, 10.0, 45.6, 100.0], - "IND1": [2.0, 10.0, 35.5, 100.0], - "IND2": [2.0, 10.0, 35.5, 100.0], - "IND3": [2.0, 10.0, 35.5, 100.0], - "IND4": [2.0, 10.0, 35.5, 100.0], - "IND5": [2.0, 10.0, 35.5, 100.0], - "IND6": [2.0, 10.0, 35.5, 100.0], - "AGR1": [1.6, 10.0, 40.7, 100.0], - "REL1": [2.0, 10.0, 40.5, 100.0], - "GOV1": [2.0, 10.0, 40.2, 100.0], - "GOV2": [2.0, 10.0, 39.9, 100.0], - "EDU1": [2.0, 10.0, 43.5, 100.0], - "EDU2": [2.0, 10.0, 44.2, 100.0] - }, - "Reconstruction_time": { - "RES1": [2, 30, 90, 180], - "RES2": [2, 10, 30, 60], - "RES3": [5, 30, 120, 240], - "RES4": [5, 30, 120, 240], - "RES5": [5, 30, 120, 240], - "RES6": [5, 30, 120, 240], - "COM1": [5, 30, 90, 180], - "COM2": [5, 30, 90, 180], - "COM3": [5, 30, 90, 180], - "COM4": [5, 30, 120, 240], - "COM5": [5, 30, 90, 180], - "COM6": [10, 45, 180, 360], - "COM7": [10, 45, 180, 240], - "COM8": [5, 30, 90, 180], - "COM9": [5, 30, 120, 240], - "COM10": [2, 20, 80, 160], - "IND1": [10, 30, 120, 240], - "IND2": [10, 30, 120, 240], - "IND3": [10, 30, 120, 240], - "IND4": [10, 30, 120, 240], - "IND5": [20, 45, 180, 360], - "IND6": [5, 20, 80, 160], - "AGR1": [2, 10, 30, 60], - "REL1": [10, 30, 120, 240], - "GOV1": [10, 30, 120, 240], - "GOV2": [5, 20, 90, 180], - "EDU1": [10, 30, 120, 240], - "EDU2": [10, 45, 180, 360] - } - }, - "Ground_Failure":{ - "EDP_limits": { - "H_S": [ 60.0, 865.0], - "H_D": [ 184.0, 2919.0], - "V_S": [ 10.0, 144.5], - "V_D": [ 486.0, 8845.0] - }, - "Fragility_beta": { - "H_S": [1.256, 2.083], - "H_D": [1.659, 2.362], - "V_S": [1.256, 2.084], - "V_D": [2.362, 2.917] - }, - "P_collapse": { - "W1": 0.03, - "W2": 0.03, - "S1L": 0.08, - "S1M": 0.05, - "S1H": 0.03, - "S2L": 0.08, - "S2M": 0.05, - "S2H": 0.03, - "S3": 0.03, - "S4L": 0.08, - "S4M": 0.05, - "S4H": 0.03, - "S5L": 0.08, - "S5M": 0.05, - "S5H": 0.03, - "C1L": 0.13, - "C1M": 0.10, - "C1H": 0.05, - "C2L": 0.13, - "C2M": 0.10, - "C2H": 0.05, - "C3L": 0.15, - "C3M": 0.13, - "C3H": 0.10, - "PC1": 0.15, - "PC2L": 0.15, - "PC2M": 0.13, - "PC2H": 0.10, - "RM1L": 0.13, - "RM1M": 0.10, - "RM2L": 0.13, - "RM2M": 0.10, - "RM2H": 0.05, - "URML": 0.15, - "URMM": 0.15, - "MH": 0.03 - } - }, - "Parts_of_day":{ - "Nighttime": [0, 1, 2, 3, 4, 5, 20, 21, 22, 23], - "Daytime": [9, 10, 11, 12, 13, 14, 15], - "Commute": [6, 7, 8, 16, 17, 18, 19] - }, - "Population_Distribution":{ - "Residential": [1.00, 0.53, 0.35], - "Commercial": [0.01, 1.00, 0.75], - "Educational": [0.00, 1.00, 0.50], - "Industrial": [0.14, 1.00, 0.63], - "Hotels": [1.00, 0.19, 0.30] - } -} - diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/pop_template.json b/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/pop_template.json deleted file mode 100644 index 299cb24d5..000000000 --- a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_eqv_PGA/pop_template.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "weekday": { - "daily": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ], - "monthly": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ] - }, - "weekend": { - "daily": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ], - "monthly": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ] - } -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/DL_template.json b/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/DL_template.json deleted file mode 100644 index 92966b329..000000000 --- a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/DL_template.json +++ /dev/null @@ -1,197 +0,0 @@ -{ - "Name": "string", - "QuantityUnit": [ - "float", - "string" - ], - "Directional": "bool", - "Correlated": "bool", - "EDP": { - "Type": "string", - "Unit": [ - "float", - "string" - ], - "Offset": "string" - }, - "GeneralInformation": { - "ID": "string", - "Description": "string", - "Author": "string", - "Official": "bool", - "DateCreated": "string", - "Approved": "bool", - "Incomplete": "bool", - "Notes": "string" - }, - "Ratings": { - "DataQuality": "string", - "DataRelevance": "string", - "Documentation": "string", - "Rationality": "string" - }, - "DSGroups": [ - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - }, - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/hazus_data_eq.json b/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/hazus_data_eq.json deleted file mode 100644 index b3bcf1eda..000000000 --- a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/hazus_data_eq.json +++ /dev/null @@ -1,576 +0,0 @@ -{ - "Structural_Fragility_Groups": { - "EDP_limits": { - "High_code": { - "W1": [0.0040, 0.0120, 0.0400, 0.1000], - "W2": [0.0040, 0.0120, 0.0400, 0.1000], - "S1L": [0.0060, 0.0120, 0.0300, 0.0800], - "S1M": [0.0060, 0.0120, 0.0300, 0.0800], - "S1H": [0.0060, 0.0120, 0.0300, 0.0800], - "S2L": [0.0050, 0.0100, 0.0300, 0.0800], - "S2M": [0.0050, 0.0100, 0.0300, 0.0800], - "S2H": [0.0050, 0.0100, 0.0300, 0.0800], - "S3": [0.0040, 0.0080, 0.0240, 0.0700], - "S4L": [0.0040, 0.0080, 0.0240, 0.0700], - "S4M": [0.0040, 0.0080, 0.0240, 0.0700], - "S4H": [0.0040, 0.0080, 0.0240, 0.0700], - "C1L": [0.0050, 0.0100, 0.0300, 0.0800], - "C1M": [0.0050, 0.0100, 0.0300, 0.0800], - "C1H": [0.0050, 0.0100, 0.0300, 0.0800], - "C2L": [0.0040, 0.0100, 0.0300, 0.0800], - "C2M": [0.0040, 0.0100, 0.0300, 0.0800], - "C2H": [0.0040, 0.0100, 0.0300, 0.0800], - "PC1": [0.0040, 0.0080, 0.0240, 0.0700], - "PC2L": [0.0040, 0.0080, 0.0240, 0.0700], - "PC2M": [0.0040, 0.0080, 0.0240, 0.0700], - "PC2H": [0.0040, 0.0080, 0.0240, 0.0700], - "RM1L": [0.0040, 0.0080, 0.0240, 0.0700], - "RM1M": [0.0040, 0.0080, 0.0240, 0.0700], - "RM2L": [0.0040, 0.0080, 0.0240, 0.0700], - "RM2M": [0.0040, 0.0080, 0.0240, 0.0700], - "RM2H": [0.0040, 0.0080, 0.0240, 0.0700], - "MH": [0.0040, 0.0080, 0.0240, 0.0700] - }, - "Moderate_code": { - "W1": [0.0040, 0.0099, 0.0306, 0.0750], - "W2": [0.0040, 0.0099, 0.0306, 0.0750], - "S1L": [0.0060, 0.0104, 0.0235, 0.0600], - "S1M": [0.0060, 0.0104, 0.0235, 0.0600], - "S1H": [0.0060, 0.0104, 0.0235, 0.0600], - "S2L": [0.0050, 0.0087, 0.0233, 0.0600], - "S2M": [0.0050, 0.0087, 0.0233, 0.0600], - "S2H": [0.0050, 0.0087, 0.0233, 0.0600], - "S3": [0.0040, 0.0070, 0.0187, 0.0525], - "S4L": [0.0040, 0.0069, 0.0187, 0.0525], - "S4M": [0.0040, 0.0069, 0.0187, 0.0525], - "S4H": [0.0040, 0.0069, 0.0187, 0.0525], - "C1L": [0.0050, 0.0087, 0.0233, 0.0600], - "C1M": [0.0050, 0.0087, 0.0233, 0.0600], - "C1H": [0.0050, 0.0087, 0.0233, 0.0600], - "C2L": [0.0040, 0.0084, 0.0232, 0.0600], - "C2M": [0.0040, 0.0084, 0.0232, 0.0600], - "C2H": [0.0040, 0.0084, 0.0232, 0.0600], - "PC1": [0.0040, 0.0070, 0.0187, 0.0525], - "PC2L": [0.0040, 0.0069, 0.0187, 0.0525], - "PC2M": [0.0040, 0.0069, 0.0187, 0.0525], - "PC2H": [0.0040, 0.0069, 0.0187, 0.0525], - "RM1L": [0.0040, 0.0069, 0.0187, 0.0525], - "RM1M": [0.0040, 0.0069, 0.0187, 0.0525], - "RM2L": [0.0040, 0.0069, 0.0187, 0.0525], - "RM2M": [0.0040, 0.0069, 0.0187, 0.0525], - "RM2H": [0.0040, 0.0069, 0.0187, 0.0525], - "MH": [0.0040, 0.0080, 0.0240, 0.0700] - }, - "Low_code": { - "W1": [0.0040, 0.0099, 0.0306, 0.0750], - "W2": [0.0040, 0.0099, 0.0306, 0.0750], - "S1L": [0.0060, 0.0096, 0.0203, 0.0500], - "S1M": [0.0060, 0.0096, 0.0203, 0.0500], - "S1H": [0.0060, 0.0096, 0.0203, 0.0500], - "S2L": [0.0050, 0.0080, 0.0200, 0.0500], - "S2M": [0.0050, 0.0080, 0.0200, 0.0500], - "S2H": [0.0050, 0.0080, 0.0200, 0.0500], - "S3": [0.0040, 0.0064, 0.0161, 0.0438], - "S4L": [0.0040, 0.0064, 0.0161, 0.0438], - "S4M": [0.0040, 0.0064, 0.0161, 0.0438], - "S4H": [0.0040, 0.0064, 0.0161, 0.0438], - "S5L": [0.0030, 0.0060, 0.0150, 0.0350], - "S5M": [0.0030, 0.0060, 0.0150, 0.0350], - "S5H": [0.0030, 0.0060, 0.0150, 0.0350], - "C1L": [0.0050, 0.0080, 0.0200, 0.0500], - "C1M": [0.0050, 0.0080, 0.0200, 0.0500], - "C1H": [0.0050, 0.0080, 0.0200, 0.0500], - "C2L": [0.0040, 0.0076, 0.0197, 0.0500], - "C2M": [0.0040, 0.0076, 0.0197, 0.0500], - "C2H": [0.0040, 0.0076, 0.0197, 0.0500], - "C3L": [0.0030, 0.0060, 0.0150, 0.0350], - "C3M": [0.0030, 0.0060, 0.0150, 0.0350], - "C3H": [0.0030, 0.0060, 0.0150, 0.0350], - "PC1": [0.0040, 0.0064, 0.0161, 0.0438], - "PC2L": [0.0040, 0.0064, 0.0161, 0.0438], - "PC2M": [0.0040, 0.0064, 0.0161, 0.0438], - "PC2H": [0.0040, 0.0064, 0.0161, 0.0438], - "RM1L": [0.0040, 0.0064, 0.0161, 0.0438], - "RM1M": [0.0040, 0.0064, 0.0161, 0.0438], - "RM2L": [0.0040, 0.0064, 0.0161, 0.0438], - "RM2M": [0.0040, 0.0064, 0.0161, 0.0438], - "RM2H": [0.0040, 0.0064, 0.0161, 0.0438], - "URML": [0.0030, 0.0060, 0.0150, 0.0350], - "URMM": [0.0020, 0.0040, 0.0100, 0.0233], - "MH": [0.0040, 0.0080, 0.0240, 0.0700] - }, - "Pre_code": { - "W1": [0.0032, 0.0079, 0.0245, 0.0600], - "W2": [0.0032, 0.0079, 0.0245, 0.0600], - "S1L": [0.0048, 0.0076, 0.0162, 0.0400], - "S1M": [0.0048, 0.0076, 0.0162, 0.0400], - "S1H": [0.0048, 0.0076, 0.0162, 0.0400], - "S2L": [0.0040, 0.0064, 0.0160, 0.0400], - "S2M": [0.0040, 0.0064, 0.0160, 0.0400], - "S2H": [0.0040, 0.0064, 0.0160, 0.0400], - "S3": [0.0032, 0.0051, 0.0128, 0.0350], - "S4L": [0.0032, 0.0051, 0.0128, 0.0350], - "S4M": [0.0032, 0.0051, 0.0128, 0.0350], - "S4H": [0.0032, 0.0051, 0.0128, 0.0350], - "S5L": [0.0024, 0.0048, 0.0120, 0.0280], - "S5M": [0.0024, 0.0048, 0.0120, 0.0280], - "S5H": [0.0024, 0.0048, 0.0120, 0.0280], - "C1L": [0.0040, 0.0064, 0.0160, 0.0400], - "C1M": [0.0040, 0.0064, 0.0160, 0.0400], - "C1H": [0.0040, 0.0064, 0.0160, 0.0400], - "C2L": [0.0032, 0.0061, 0.0158, 0.0400], - "C2M": [0.0032, 0.0061, 0.0158, 0.0400], - "C2H": [0.0032, 0.0061, 0.0158, 0.0400], - "C3L": [0.0024, 0.0048, 0.0120, 0.0280], - "C3M": [0.0024, 0.0048, 0.0120, 0.0280], - "C3H": [0.0024, 0.0048, 0.0120, 0.0280], - "PC1": [0.0032, 0.0051, 0.0128, 0.0350], - "PC2L": [0.0032, 0.0051, 0.0128, 0.0350], - "PC2M": [0.0032, 0.0051, 0.0128, 0.0350], - "PC2H": [0.0032, 0.0051, 0.0128, 0.0350], - "RM1L": [0.0032, 0.0051, 0.0128, 0.0350], - "RM1M": [0.0032, 0.0051, 0.0128, 0.0350], - "RM2L": [0.0032, 0.0051, 0.0128, 0.0350], - "RM2M": [0.0032, 0.0051, 0.0128, 0.0350], - "RM2H": [0.0032, 0.0051, 0.0128, 0.0350], - "URML": [0.0024, 0.0048, 0.0120, 0.0280], - "URMM": [0.0016, 0.0032, 0.0080, 0.0187], - "MH": [0.0032, 0.0064, 0.0192, 0.0560] - } - }, - "Fragility_beta":{ - "High_code": 0.4, - "Moderate_code": 0.4, - "Low_code": 0.4, - "Pre_code": 0.4 - }, - "P_collapse": { - "W1": 0.03, - "W2": 0.03, - "S1L": 0.08, - "S1M": 0.05, - "S1H": 0.03, - "S2L": 0.08, - "S2M": 0.05, - "S2H": 0.03, - "S3": 0.03, - "S4L": 0.08, - "S4M": 0.05, - "S4H": 0.03, - "S5L": 0.08, - "S5M": 0.05, - "S5H": 0.03, - "C1L": 0.13, - "C1M": 0.10, - "C1H": 0.05, - "C2L": 0.13, - "C2M": 0.10, - "C2H": 0.05, - "C3L": 0.15, - "C3M": 0.13, - "C3H": 0.10, - "PC1": 0.15, - "PC2L": 0.15, - "PC2M": 0.13, - "PC2H": 0.10, - "RM1L": 0.13, - "RM1M": 0.10, - "RM2L": 0.13, - "RM2M": 0.10, - "RM2H": 0.05, - "URML": 0.15, - "URMM": 0.15, - "MH": 0.03 - }, - "Injury_rates":{ - "DS1": { - "W1": [0.05, 0, 0, 0], - "W2": [0.05, 0, 0, 0], - "S1L": [0.05, 0, 0, 0], - "S1M": [0.05, 0, 0, 0], - "S1H": [0.05, 0, 0, 0], - "S2L": [0.05, 0, 0, 0], - "S2M": [0.05, 0, 0, 0], - "S2H": [0.05, 0, 0, 0], - "S3": [0.05, 0, 0, 0], - "S4L": [0.05, 0, 0, 0], - "S4M": [0.05, 0, 0, 0], - "S4H": [0.05, 0, 0, 0], - "S5L": [0.05, 0, 0, 0], - "S5M": [0.05, 0, 0, 0], - "S5H": [0.05, 0, 0, 0], - "C1L": [0.05, 0, 0, 0], - "C1M": [0.05, 0, 0, 0], - "C1H": [0.05, 0, 0, 0], - "C2L": [0.05, 0, 0, 0], - "C2M": [0.05, 0, 0, 0], - "C2H": [0.05, 0, 0, 0], - "C3L": [0.05, 0, 0, 0], - "C3M": [0.05, 0, 0, 0], - "C3H": [0.05, 0, 0, 0], - "PC1": [0.05, 0, 0, 0], - "PC2L": [0.05, 0, 0, 0], - "PC2M": [0.05, 0, 0, 0], - "PC2H": [0.05, 0, 0, 0], - "RM1L": [0.05, 0, 0, 0], - "RM1M": [0.05, 0, 0, 0], - "RM2L": [0.05, 0, 0, 0], - "RM2M": [0.05, 0, 0, 0], - "RM2H": [0.05, 0, 0, 0], - "URML": [0.05, 0, 0, 0], - "URMM": [0.05, 0, 0, 0], - "MH": [0.05, 0, 0, 0] - }, - "DS2": { - "W1": [0.25, 0.030, 0, 0], - "W2": [0.20, 0.025, 0, 0], - "S1L": [0.20, 0.025, 0, 0], - "S1M": [0.20, 0.025, 0, 0], - "S1H": [0.20, 0.025, 0, 0], - "S2L": [0.20, 0.025, 0, 0], - "S2M": [0.20, 0.025, 0, 0], - "S2H": [0.20, 0.025, 0, 0], - "S3": [0.20, 0.025, 0, 0], - "S4L": [0.25, 0.030, 0, 0], - "S4M": [0.25, 0.030, 0, 0], - "S4H": [0.25, 0.030, 0, 0], - "S5L": [0.20, 0.025, 0, 0], - "S5M": [0.20, 0.025, 0, 0], - "S5H": [0.20, 0.025, 0, 0], - "C1L": [0.25, 0.030, 0, 0], - "C1M": [0.25, 0.030, 0, 0], - "C1H": [0.25, 0.030, 0, 0], - "C2L": [0.25, 0.030, 0, 0], - "C2M": [0.25, 0.030, 0, 0], - "C2H": [0.25, 0.030, 0, 0], - "C3L": [0.20, 0.025, 0, 0], - "C3M": [0.20, 0.025, 0, 0], - "C3H": [0.20, 0.025, 0, 0], - "PC1": [0.25, 0.030, 0, 0], - "PC2L": [0.25, 0.030, 0, 0], - "PC2M": [0.25, 0.030, 0, 0], - "PC2H": [0.25, 0.030, 0, 0], - "RM1L": [0.20, 0.025, 0, 0], - "RM1M": [0.20, 0.025, 0, 0], - "RM2L": [0.20, 0.025, 0, 0], - "RM2M": [0.20, 0.025, 0, 0], - "RM2H": [0.20, 0.025, 0, 0], - "URML": [0.35, 0.400, 0.001, 0.001], - "URMM": [0.35, 0.400, 0.001, 0.001], - "MH": [0.25, 0.030, 0, 0] - }, - "DS3": { - "W1": [1, 0.1, 0.001, 0.001], - "W2": [1, 0.1, 0.001, 0.001], - "S1L": [1, 0.1, 0.001, 0.001], - "S1M": [1, 0.1, 0.001, 0.001], - "S1H": [1, 0.1, 0.001, 0.001], - "S2L": [1, 0.1, 0.001, 0.001], - "S2M": [1, 0.1, 0.001, 0.001], - "S2H": [1, 0.1, 0.001, 0.001], - "S3": [1, 0.1, 0.001, 0.001], - "S4L": [1, 0.1, 0.001, 0.001], - "S4M": [1, 0.1, 0.001, 0.001], - "S4H": [1, 0.1, 0.001, 0.001], - "S5L": [1, 0.1, 0.001, 0.001], - "S5M": [1, 0.1, 0.001, 0.001], - "S5H": [1, 0.1, 0.001, 0.001], - "C1L": [1, 0.1, 0.001, 0.001], - "C1M": [1, 0.1, 0.001, 0.001], - "C1H": [1, 0.1, 0.001, 0.001], - "C2L": [1, 0.1, 0.001, 0.001], - "C2M": [1, 0.1, 0.001, 0.001], - "C2H": [1, 0.1, 0.001, 0.001], - "C3L": [1, 0.1, 0.001, 0.001], - "C3M": [1, 0.1, 0.001, 0.001], - "C3H": [1, 0.1, 0.001, 0.001], - "PC1": [1, 0.1, 0.001, 0.001], - "PC2L": [1, 0.1, 0.001, 0.001], - "PC2M": [1, 0.1, 0.001, 0.001], - "PC2H": [1, 0.1, 0.001, 0.001], - "RM1L": [1, 0.1, 0.001, 0.001], - "RM1M": [1, 0.1, 0.001, 0.001], - "RM2L": [1, 0.1, 0.001, 0.001], - "RM2M": [1, 0.1, 0.001, 0.001], - "RM2H": [1, 0.1, 0.001, 0.001], - "URML": [2, 0.2, 0.002, 0.002], - "URMM": [2, 0.2, 0.002, 0.002], - "MH": [1, 0.1, 0.001, 0.001] - }, - "DS4": { - "W1": [5, 1, 0.01, 0.01], - "W2": [5, 1, 0.01, 0.01], - "S1L": [5, 1, 0.01, 0.01], - "S1M": [5, 1, 0.01, 0.01], - "S1H": [5, 1, 0.01, 0.01], - "S2L": [5, 1, 0.01, 0.01], - "S2M": [5, 1, 0.01, 0.01], - "S2H": [5, 1, 0.01, 0.01], - "S3": [5, 1, 0.01, 0.01], - "S4L": [5, 1, 0.01, 0.01], - "S4M": [5, 1, 0.01, 0.01], - "S4H": [5, 1, 0.01, 0.01], - "S5L": [5, 1, 0.01, 0.01], - "S5M": [5, 1, 0.01, 0.01], - "S5H": [5, 1, 0.01, 0.01], - "C1L": [5, 1, 0.01, 0.01], - "C1M": [5, 1, 0.01, 0.01], - "C1H": [5, 1, 0.01, 0.01], - "C2L": [5, 1, 0.01, 0.01], - "C2M": [5, 1, 0.01, 0.01], - "C2H": [5, 1, 0.01, 0.01], - "C3L": [5, 1, 0.01, 0.01], - "C3M": [5, 1, 0.01, 0.01], - "C3H": [5, 1, 0.01, 0.01], - "PC1": [5, 1, 0.01, 0.01], - "PC2L": [5, 1, 0.01, 0.01], - "PC2M": [5, 1, 0.01, 0.01], - "PC2H": [5, 1, 0.01, 0.01], - "RM1L": [5, 1, 0.01, 0.01], - "RM1M": [5, 1, 0.01, 0.01], - "RM2L": [5, 1, 0.01, 0.01], - "RM2M": [5, 1, 0.01, 0.01], - "RM2H": [5, 1, 0.01, 0.01], - "URML": [10, 2, 0.02, 0.02], - "URMM": [10, 2, 0.02, 0.02], - "MH": [5, 1, 0.01, 0.01] - }, - "DS5": { - "W1": [40, 20, 3, 5], - "W2": [40, 20, 5, 10], - "S1L": [40, 20, 5, 10], - "S1M": [40, 20, 5, 10], - "S1H": [40, 20, 5, 10], - "S2L": [40, 20, 5, 10], - "S2M": [40, 20, 5, 10], - "S2H": [40, 20, 5, 10], - "S3": [40, 20, 3, 5], - "S4L": [40, 20, 5, 10], - "S4M": [40, 20, 5, 10], - "S4H": [40, 20, 5, 10], - "S5L": [40, 20, 5, 10], - "S5M": [40, 20, 5, 10], - "S5H": [40, 20, 5, 10], - "C1L": [40, 20, 5, 10], - "C1M": [40, 20, 5, 10], - "C1H": [40, 20, 5, 10], - "C2L": [40, 20, 5, 10], - "C2M": [40, 20, 5, 10], - "C2H": [40, 20, 5, 10], - "C3L": [40, 20, 5, 10], - "C3M": [40, 20, 5, 10], - "C3H": [40, 20, 5, 10], - "PC1": [40, 20, 5, 10], - "PC2L": [40, 20, 5, 10], - "PC2M": [40, 20, 5, 10], - "PC2H": [40, 20, 5, 10], - "RM1L": [40, 20, 5, 10], - "RM1M": [40, 20, 5, 10], - "RM2L": [40, 20, 5, 10], - "RM2M": [40, 20, 5, 10], - "RM2H": [40, 20, 5, 10], - "URML": [40, 20, 5, 10], - "URMM": [40, 20, 5, 10], - "MH": [40, 20, 3, 5] - } - }, - "Reconstruction_cost": { - "RES1": [0.5, 2.3, 11.7, 23.4], - "RES2": [0.4, 2.4, 7.3, 24.4], - "RES3": [0.3, 1.4, 6.9, 13.8], - "RES4": [0.2, 1.4, 6.8, 13.6], - "RES5": [0.4, 1.9, 9.4, 18.8], - "RES6": [0.4, 1.8, 9.2, 18.4], - "COM1": [0.6, 2.9, 14.7, 29.4], - "COM2": [0.6, 3.2, 16.2, 32.4], - "COM3": [0.3, 1.6, 8.1, 16.2], - "COM4": [0.4, 1.9, 9.6, 19.2], - "COM5": [0.3, 1.4, 6.9, 13.8], - "COM6": [0.2, 1.4, 7.0, 14.0], - "COM7": [0.3, 1.4, 7.2, 14.4], - "COM8": [0.2, 1.0, 5.0, 10.0], - "COM9": [0.3, 1.2, 6.1, 12.2], - "COM10": [1.3, 6.1, 30.4, 60.9], - "IND1": [0.4, 1.6, 7.8, 15.7], - "IND2": [0.4, 1.6, 7.8, 15.7], - "IND3": [0.4, 1.6, 7.8, 15.7], - "IND4": [0.4, 1.6, 7.8, 15.7], - "IND5": [0.4, 1.6, 7.8, 15.7], - "IND6": [0.4, 1.6, 7.8, 15.7], - "AGR1": [0.8, 4.6, 23.1, 46.2], - "REL1": [0.3, 2.0, 9.9, 19.8], - "GOV1": [0.3, 1.8, 9.0, 17.9], - "GOV2": [0.3, 1.5, 7.7, 15.3], - "EDU1": [0.4, 1.9, 9.5, 18.9], - "EDU2": [0.2, 1.1, 5.5, 11.0] - }, - "Reconstruction_time": { - "RES1": [2, 30, 90, 180], - "RES2": [2, 10, 30, 60], - "RES3": [5, 30, 120, 240], - "RES4": [5, 30, 120, 240], - "RES5": [5, 30, 120, 240], - "RES6": [5, 30, 120, 240], - "COM1": [5, 30, 90, 180], - "COM2": [5, 30, 90, 180], - "COM3": [5, 30, 90, 180], - "COM4": [5, 30, 120, 240], - "COM5": [5, 30, 90, 180], - "COM6": [10, 45, 180, 360], - "COM7": [10, 45, 180, 240], - "COM8": [5, 30, 90, 180], - "COM9": [5, 30, 120, 240], - "COM10": [2, 20, 80, 160], - "IND1": [10, 30, 120, 240], - "IND2": [10, 30, 120, 240], - "IND3": [10, 30, 120, 240], - "IND4": [10, 30, 120, 240], - "IND5": [20, 45, 180, 360], - "IND6": [5, 20, 80, 160], - "AGR1": [2, 10, 30, 60], - "REL1": [10, 30, 120, 240], - "GOV1": [10, 30, 120, 240], - "GOV2": [5, 20, 90, 180], - "EDU1": [10, 30, 120, 240], - "EDU2": [10, 45, 180, 360] - } - }, - "NonStructural_Drift_Sensitive_Fragility_Groups":{ - "EDP_limits": [0.004, 0.008, 0.025, 0.050], - "Fragility_beta": 0.5, - "Reconstruction_cost": { - "RES1": [1.0, 5.0, 25.0, 50.0], - "RES2": [0.8, 3.8, 18.9, 37.8], - "RES3": [0.9, 4.3, 21.3, 42.5], - "RES4": [0.9, 4.3, 21.6, 43.2], - "RES5": [0.8, 4.0, 20.0, 40.0], - "RES6": [0.8, 4.1, 20.4, 40.8], - "COM1": [0.6, 2.7, 13.8, 27.5], - "COM2": [0.6, 2.6, 13.2, 26.5], - "COM3": [0.7, 3.4, 16.9, 33.8], - "COM4": [0.7, 3.3, 16.4, 32.9], - "COM5": [0.7, 3.4, 17.2, 34.5], - "COM6": [0.8, 3.5, 17.4, 34.7], - "COM7": [0.7, 3.4, 17.2, 34.4], - "COM8": [0.7, 3.6, 17.8, 35.6], - "COM9": [0.7, 3.5, 17.6, 35.1], - "COM10": [0.4, 1.7, 8.7, 17.4], - "IND1": [0.2, 1.2, 5.9, 11.8], - "IND2": [0.2, 1.2, 5.9, 11.8], - "IND3": [0.2, 1.2, 5.9, 11.8], - "IND4": [0.2, 1.2, 5.9, 11.8], - "IND5": [0.2, 1.2, 5.9, 11.8], - "IND6": [0.2, 1.2, 5.9, 11.8], - "AGR1": [0.0, 0.8, 3.8, 7.7], - "REL1": [0.8, 3.3, 16.3, 32.6], - "GOV1": [0.7, 3.3, 16.4, 32.8], - "GOV2": [0.7, 3.4, 17.1, 34.2], - "EDU1": [0.9, 4.9, 24.3, 48.7], - "EDU2": [1.2, 6.0, 30.0, 60.0] - } - }, - "NonStructural_Acceleration_Sensitive_Fragility_Groups":{ - "EDP_limits": { - "High_code": [0.30, 0.60, 1.20, 2.40], - "Moderate_code": [0.25, 0.50, 1.00, 2.00], - "Low_code": [0.20, 0.40, 0.80, 1.60], - "Pre_code": [0.20, 0.40, 0.80, 1.60] - }, - "Offset": 1, - "Fragility_beta": 0.6, - "Reconstruction_cost": { - "RES1": [0.5, 2.7, 8.0, 26.6], - "RES2": [0.8, 3.8, 11.3, 37.8], - "RES3": [0.8, 4.3, 13.1, 43.7], - "RES4": [0.9, 4.3, 13.0, 43.2], - "RES5": [0.8, 4.1, 12.4, 41.2], - "RES6": [0.8, 4.1, 12.2, 40.8], - "COM1": [0.8, 4.4, 12.9, 43.1], - "COM2": [0.8, 4.2, 12.4, 41.1], - "COM3": [1.0, 5, 15, 50.0], - "COM4": [0.9, 4.8, 14.4, 47.9], - "COM5": [1.0, 5.2, 15.5, 51.7], - "COM6": [1.0, 5.1, 15.4, 51.3], - "COM7": [1.0, 5.2, 15.3, 51.2], - "COM8": [1.1, 5.4, 16.3, 54.4], - "COM9": [1.0, 5.3, 15.8, 52.7], - "COM10": [0.3, 2.2, 6.5, 21.7], - "IND1": [1.4, 7.2, 21.8, 72.5], - "IND2": [1.4, 7.2, 21.8, 72.5], - "IND3": [1.4, 7.2, 21.8, 72.5], - "IND4": [1.4, 7.2, 21.8, 72.5], - "IND5": [1.4, 7.2, 21.8, 72.5], - "IND6": [1.4, 7.2, 21.8, 72.5], - "AGR1": [0.8, 4.6, 13.8, 46.1], - "REL1": [0.9, 4.7, 14.3, 47.6], - "GOV1": [1.0, 4.9, 14.8, 49.3], - "GOV2": [1.0, 5.1, 15.1, 50.5], - "EDU1": [0.7, 3.2, 9.7, 32.4], - "EDU2": [0.6, 2.9, 8.7, 29.0] - } - }, - "Ground_Failure":{ - "EDP_limits": { - "H_S": [ 60.0, 865.0], - "H_D": [ 184.0, 2919.0], - "V_S": [ 10.0, 144.5], - "V_D": [ 486.0, 8845.0] - }, - "Fragility_beta": { - "H_S": [1.256, 2.083], - "H_D": [1.659, 2.362], - "V_S": [1.256, 2.084], - "V_D": [2.362, 2.917] - }, - "P_collapse": { - "W1": 0.03, - "W2": 0.03, - "S1L": 0.08, - "S1M": 0.05, - "S1H": 0.03, - "S2L": 0.08, - "S2M": 0.05, - "S2H": 0.03, - "S3": 0.03, - "S4L": 0.08, - "S4M": 0.05, - "S4H": 0.03, - "S5L": 0.08, - "S5M": 0.05, - "S5H": 0.03, - "C1L": 0.13, - "C1M": 0.10, - "C1H": 0.05, - "C2L": 0.13, - "C2M": 0.10, - "C2H": 0.05, - "C3L": 0.15, - "C3M": 0.13, - "C3H": 0.10, - "PC1": 0.15, - "PC2L": 0.15, - "PC2M": 0.13, - "PC2H": 0.10, - "RM1L": 0.13, - "RM1M": 0.10, - "RM2L": 0.13, - "RM2M": 0.10, - "RM2H": 0.05, - "URML": 0.15, - "URMM": 0.15, - "MH": 0.03 - } - }, - "Parts_of_day":{ - "Nighttime": [0, 1, 2, 3, 4, 5, 20, 21, 22, 23], - "Daytime": [9, 10, 11, 12, 13, 14, 15], - "Commute": [6, 7, 8, 16, 17, 18, 19] - }, - "Population_Distribution":{ - "Residential": [1.00, 0.53, 0.35], - "Commercial": [0.01, 1.00, 0.75], - "Educational": [0.00, 1.00, 0.50], - "Industrial": [0.14, 1.00, 0.63], - "Hotels": [1.00, 0.19, 0.30] - } -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/pop_template.json b/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/pop_template.json deleted file mode 100644 index 299cb24d5..000000000 --- a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ_story/pop_template.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "weekday": { - "daily": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ], - "monthly": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ] - }, - "weekend": { - "daily": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ], - "monthly": [ - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float", - "float" - ] - } -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_HU/DL_template.json b/pelicun/resources/data_sources/HAZUS_MH_2.1_HU/DL_template.json deleted file mode 100644 index 4e8b5c22c..000000000 --- a/pelicun/resources/data_sources/HAZUS_MH_2.1_HU/DL_template.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "Name": "string", - "Directional": "bool", - "GeneralInformation": { - "ID": "string", - "Description": "string", - "Building type": "string", - "Roof Shape": "string", - "Roof Cover Type": "string", - "Roof Cover Quality": "string", - "Roof Deck Attachment": "string", - "Roof-Wall Connection": "string", - "Secondary Water Resistance": "bool", - "Garage": "string", - "Shutters": "bool", - "Terrain": "string" - }, - "EDP": { - "Type": "string", - "Unit": [ - "float", - "string" - ] - }, - "DSGroups": [ - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - }, - { - "MedianEDP": "float", - "Beta": "float", - "CurveType": "string", - "DSGroupType": "string", - "DamageStates": [ - { - "Weight": "float", - "Consequences": { - "Injuries": [ - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - }, - { - "Amount": "float" - } - ], - "ReconstructionCost": { - "Amount": "float" - }, - "ReconstructionTime": { - "Amount": "float" - } - }, - "Description": "string" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_HU/hu_Wood.xlsx b/pelicun/resources/data_sources/HAZUS_MH_2.1_HU/hu_Wood.xlsx deleted file mode 100644 index 917f762f6..000000000 Binary files a/pelicun/resources/data_sources/HAZUS_MH_2.1_HU/hu_Wood.xlsx and /dev/null differ diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ/DL_template.json b/pelicun/resources/data_sources/HAZUS_MH_4.2.3_EQ/DL_template.json similarity index 100% rename from pelicun/resources/data_sources/HAZUS_MH_2.1_EQ/DL_template.json rename to pelicun/resources/data_sources/HAZUS_MH_4.2.3_EQ/DL_template.json diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ/hazus_data_eq.json b/pelicun/resources/data_sources/HAZUS_MH_4.2.3_EQ/hazus_data_eq.json similarity index 57% rename from pelicun/resources/data_sources/HAZUS_MH_2.1_EQ/hazus_data_eq.json rename to pelicun/resources/data_sources/HAZUS_MH_4.2.3_EQ/hazus_data_eq.json index 0987e198e..3404c94f7 100644 --- a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ/hazus_data_eq.json +++ b/pelicun/resources/data_sources/HAZUS_MH_4.2.3_EQ/hazus_data_eq.json @@ -335,7 +335,7 @@ "URMM": [10, 2, 0.02, 0.02], "MH": [5, 1, 0.01, 0.01] }, - "DS5": { + "Collapse": { "W1": [40, 20, 3, 5], "W2": [40, 20, 5, 10], "S1L": [40, 20, 5, 10], @@ -374,7 +374,7 @@ "MH": [40, 20, 3, 5] } }, - "Reconstruction_cost": { + "Repair_cost": { "RES1": [0.5, 2.3, 11.7, 23.4], "RES2": [0.4, 2.4, 7.3, 24.4], "RES3": [0.3, 1.4, 6.9, 13.8], @@ -404,7 +404,7 @@ "EDU1": [0.4, 1.9, 9.5, 18.9], "EDU2": [0.2, 1.1, 5.5, 11.0] }, - "Reconstruction_time": { + "Repair_time": { "RES1": [2, 30, 90, 180], "RES2": [2, 10, 30, 60], "RES3": [5, 30, 120, 240], @@ -438,7 +438,7 @@ "NonStructural_Drift_Sensitive_Fragility_Groups":{ "EDP_limits": [0.004, 0.008, 0.025, 0.050], "Fragility_beta": 0.5, - "Reconstruction_cost": { + "Repair_cost": { "RES1": [1.0, 5.0, 25.0, 50.0], "RES2": [0.8, 3.8, 18.9, 37.8], "RES3": [0.9, 4.3, 21.3, 42.5], @@ -478,7 +478,7 @@ }, "Offset": 1, "Fragility_beta": 0.6, - "Reconstruction_cost": { + "Repair_cost": { "RES1": [0.5, 2.7, 8.0, 26.6], "RES2": [0.8, 3.8, 11.3, 37.8], "RES3": [0.8, 4.3, 13.1, 43.7], @@ -509,18 +509,150 @@ "EDU2": [0.6, 2.9, 8.7, 29.0] } }, - "Ground_Failure":{ + "Lifeline_Facilities": { "EDP_limits": { - "H_S": [ 60.0, 865.0], - "H_D": [ 184.0, 2919.0], - "V_S": [ 10.0, 144.5], - "V_D": [ 486.0, 8845.0] + "High_code": { + "W1": [0.26, 0.55, 1.28, 2.01], + "W2": [0.26, 0.56, 1.15, 2.08], + "S1L": [0.19, 0.31, 0.64, 1.49], + "S1M": [0.14, 0.26, 0.62, 1.43], + "S1H": [0.10, 0.21, 0.52, 1.31], + "S2L": [0.24, 0.41, 0.76, 1.46], + "S2M": [0.14, 0.27, 0.73, 1.62], + "S2H": [0.11, 0.22, 0.65, 1.60], + "S3": [0.15, 0.26, 0.54, 1.00], + "S4L": [0.24, 0.39, 0.71, 1.33], + "S4M": [0.16, 0.28, 0.73, 1.56], + "S4H": [0.13, 0.25, 0.69, 1.63], + "C1L": [0.21, 0.35, 0.70, 1.37], + "C1M": [0.15, 0.27, 0.73, 1.61], + "C1H": [0.11, 0.22, 0.62, 1.35], + "C2L": [0.24, 0.45, 0.90, 1.55], + "C2M": [0.17, 0.36, 0.87, 1.95], + "C2H": [0.12, 0.29, 0.82, 1.87], + "PC1": [0.20, 0.35, 0.72, 1.25], + "PC2L": [0.24, 0.36, 0.69, 1.23], + "PC2M": [0.17, 0.29, 0.67, 1.51], + "PC2H": [0.12, 0.23, 0.63, 1.49], + "RM1L": [0.30, 0.46, 0.93, 1.57], + "RM1M": [0.20, 0.37, 0.81, 1.90], + "RM2L": [0.26, 0.42, 0.87, 1.49], + "RM2M": [0.17, 0.33, 0.75, 1.83], + "RM2H": [0.12, 0.24, 0.67, 1.78], + "MH": [0.11, 0.18, 0.31, 0.60] + }, + "Moderate_code": { + "W1": [0.24, 0.43, 0.91, 1.34], + "W2": [0.20, 0.35, 0.64, 1.13], + "S1L": [0.15, 0.22, 0.42, 0.80], + "S1M": [0.13, 0.21, 0.44, 0.82], + "S1H": [0.10, 0.18, 0.39, 0.78], + "S2L": [0.20, 0.26, 0.46, 0.84], + "S2M": [0.14, 0.22, 0.53, 0.97], + "S2H": [0.11, 0.19, 0.49, 1.02], + "S3": [0.13, 0.19, 0.33, 0.60], + "S4L": [0.19, 0.26, 0.41, 0.78], + "S4M": [0.14, 0.22, 0.51, 0.92], + "S4H": [0.12, 0.21, 0.51, 0.97], + "C1L": [0.16, 0.23, 0.41, 0.77], + "C1M": [0.13, 0.21, 0.49, 0.89], + "C1H": [0.11, 0.18, 0.41, 0.74], + "C2L": [0.18, 0.30, 0.49, 0.87], + "C2M": [0.15, 0.26, 0.55, 1.02], + "C2H": [0.12, 0.23, 0.57, 1.07], + "PC1": [0.18, 0.24, 0.44, 0.71], + "PC2L": [0.18, 0.25, 0.40, 0.74], + "PC2M": [0.15, 0.21, 0.45, 0.86], + "PC2H": [0.12, 0.19, 0.46, 0.90], + "RM1L": [0.22, 0.30, 0.50, 0.85], + "RM1M": [0.18, 0.26, 0.51, 1.03], + "RM2L": [0.20, 0.28, 0.47, 0.81], + "RM2M": [0.16, 0.23, 0.48, 0.99], + "RM2H": [0.12, 0.20, 0.48, 1.01], + "MH": [0.11, 0.18, 0.31, 0.60] + }, + "Low_code": { + "W1": [0.20, 0.34, 0.61, 0.95], + "W2": [0.14, 0.23, 0.48, 0.75], + "S1L": [0.12, 0.17, 0.30, 0.48], + "S1M": [0.12, 0.18, 0.29, 0.49], + "S1H": [0.10, 0.15, 0.28, 0.48], + "S2L": [0.13, 0.17, 0.30, 0.50], + "S2M": [0.12, 0.18, 0.35, 0.58], + "S2H": [0.11, 0.17, 0.36, 0.63], + "S3": [0.10, 0.13, 0.20, 0.38], + "S4L": [0.13, 0.16, 0.26, 0.46], + "S4M": [0.12, 0.17, 0.31, 0.54], + "S4H": [0.12, 0.17, 0.33, 0.59], + "S5L": [0.13, 0.17, 0.28, 0.45], + "S5M": [0.11, 0.18, 0.34, 0.53], + "S5H": [0.10, 0.18, 0.35, 0.58], + "C1L": [0.12, 0.15, 0.27, 0.45], + "C1M": [0.12, 0.17, 0.32, 0.54], + "C1H": [0.10, 0.15, 0.27, 0.44], + "C2L": [0.14, 0.19, 0.30, 0.52], + "C2M": [0.12, 0.19, 0.38, 0.63], + "C2H": [0.11, 0.19, 0.38, 0.65], + "C3L": [0.12, 0.17, 0.26, 0.44], + "C3M": [0.11, 0.17, 0.32, 0.51], + "C3H": [0.09, 0.16, 0.33, 0.53], + "PC1": [0.13, 0.17, 0.25, 0.45], + "PC2L": [0.13, 0.15, 0.24, 0.44], + "PC2M": [0.11, 0.16, 0.31, 0.52], + "PC2H": [0.11, 0.16, 0.31, 0.55], + "RM1L": [0.16, 0.20, 0.29, 0.54], + "RM1M": [0.14, 0.19, 0.35, 0.63], + "RM2L": [0.14, 0.18, 0.28, 0.51], + "RM2M": [0.12, 0.17, 0.34, 0.60], + "RM2H": [0.11, 0.17, 0.35, 0.62], + "URML": [0.14, 0.20, 0.32, 0.46], + "URMM": [0.10, 0.16, 0.27, 0.46], + "MH": [0.11, 0.18, 0.31, 0.60] + }, + "Pre_code": { + "W1": [0.18, 0.29, 0.51, 0.77], + "W2": [0.12, 0.19, 0.37, 0.60], + "S1L": [0.09, 0.13, 0.22, 0.38], + "S1M": [0.09, 0.14, 0.23, 0.39], + "S1H": [0.08, 0.12, 0.22, 0.38], + "S2L": [0.11, 0.14, 0.23, 0.39], + "S2M": [0.10, 0.14, 0.28, 0.47], + "S2H": [0.09, 0.13, 0.29, 0.50], + "S3": [0.08, 0.10, 0.16, 0.30], + "S4L": [0.10, 0.13, 0.20, 0.36], + "S4M": [0.09, 0.13, 0.25, 0.43], + "S4H": [0.09, 0.14, 0.27, 0.47], + "S5L": [0.11, 0.14, 0.22, 0.37], + "S5M": [0.09, 0.14, 0.28, 0.43], + "S5H": [0.08, 0.14, 0.29, 0.46], + "C1L": [0.10, 0.12, 0.21, 0.36], + "C1M": [0.09, 0.13, 0.26, 0.43], + "C1H": [0.08, 0.12, 0.21, 0.35], + "C2L": [0.11, 0.15, 0.24, 0.42], + "C2M": [0.10, 0.15, 0.30, 0.50], + "C2H": [0.09, 0.15, 0.31, 0.52], + "C3L": [0.10, 0.14, 0.21, 0.35], + "C3M": [0.09, 0.14, 0.25, 0.41], + "C3H": [0.08, 0.13, 0.27, 0.43], + "PC1": [0.11, 0.14, 0.21, 0.35], + "PC2L": [0.10, 0.13, 0.19, 0.35], + "PC2M": [0.09, 0.13, 0.24, 0.42], + "PC2H": [0.09, 0.13, 0.25, 0.43], + "RM1L": [0.13, 0.16, 0.24, 0.43], + "RM1M": [0.11, 0.15, 0.28, 0.50], + "RM2L": [0.12, 0.15, 0.22, 0.41], + "RM2M": [0.10, 0.14, 0.26, 0.47], + "RM2H": [0.09, 0.13, 0.27, 0.50], + "URML": [0.13, 0.17, 0.26, 0.37], + "URMM": [0.09, 0.13, 0.21, 0.38], + "MH": [0.08, 0.11, 0.18, 0.34] + } }, - "Fragility_beta": { - "H_S": [1.256, 2.083], - "H_D": [1.659, 2.362], - "V_S": [1.256, 2.084], - "V_D": [2.362, 2.917] + "Fragility_beta":{ + "High_code": 0.65, + "Moderate_code": 0.65, + "Low_code": 0.65, + "Pre_code": 0.65 }, "P_collapse": { "W1": 0.03, @@ -559,8 +691,283 @@ "URML": 0.15, "URMM": 0.15, "MH": 0.03 + }, + "Injury_rates":{ + "DS1": { + "W1": [0.05, 0, 0, 0], + "W2": [0.05, 0, 0, 0], + "S1L": [0.05, 0, 0, 0], + "S1M": [0.05, 0, 0, 0], + "S1H": [0.05, 0, 0, 0], + "S2L": [0.05, 0, 0, 0], + "S2M": [0.05, 0, 0, 0], + "S2H": [0.05, 0, 0, 0], + "S3": [0.05, 0, 0, 0], + "S4L": [0.05, 0, 0, 0], + "S4M": [0.05, 0, 0, 0], + "S4H": [0.05, 0, 0, 0], + "S5L": [0.05, 0, 0, 0], + "S5M": [0.05, 0, 0, 0], + "S5H": [0.05, 0, 0, 0], + "C1L": [0.05, 0, 0, 0], + "C1M": [0.05, 0, 0, 0], + "C1H": [0.05, 0, 0, 0], + "C2L": [0.05, 0, 0, 0], + "C2M": [0.05, 0, 0, 0], + "C2H": [0.05, 0, 0, 0], + "C3L": [0.05, 0, 0, 0], + "C3M": [0.05, 0, 0, 0], + "C3H": [0.05, 0, 0, 0], + "PC1": [0.05, 0, 0, 0], + "PC2L": [0.05, 0, 0, 0], + "PC2M": [0.05, 0, 0, 0], + "PC2H": [0.05, 0, 0, 0], + "RM1L": [0.05, 0, 0, 0], + "RM1M": [0.05, 0, 0, 0], + "RM2L": [0.05, 0, 0, 0], + "RM2M": [0.05, 0, 0, 0], + "RM2H": [0.05, 0, 0, 0], + "URML": [0.05, 0, 0, 0], + "URMM": [0.05, 0, 0, 0], + "MH": [0.05, 0, 0, 0] + }, + "DS2": { + "W1": [0.25, 0.030, 0, 0], + "W2": [0.20, 0.025, 0, 0], + "S1L": [0.20, 0.025, 0, 0], + "S1M": [0.20, 0.025, 0, 0], + "S1H": [0.20, 0.025, 0, 0], + "S2L": [0.20, 0.025, 0, 0], + "S2M": [0.20, 0.025, 0, 0], + "S2H": [0.20, 0.025, 0, 0], + "S3": [0.20, 0.025, 0, 0], + "S4L": [0.25, 0.030, 0, 0], + "S4M": [0.25, 0.030, 0, 0], + "S4H": [0.25, 0.030, 0, 0], + "S5L": [0.20, 0.025, 0, 0], + "S5M": [0.20, 0.025, 0, 0], + "S5H": [0.20, 0.025, 0, 0], + "C1L": [0.25, 0.030, 0, 0], + "C1M": [0.25, 0.030, 0, 0], + "C1H": [0.25, 0.030, 0, 0], + "C2L": [0.25, 0.030, 0, 0], + "C2M": [0.25, 0.030, 0, 0], + "C2H": [0.25, 0.030, 0, 0], + "C3L": [0.20, 0.025, 0, 0], + "C3M": [0.20, 0.025, 0, 0], + "C3H": [0.20, 0.025, 0, 0], + "PC1": [0.25, 0.030, 0, 0], + "PC2L": [0.25, 0.030, 0, 0], + "PC2M": [0.25, 0.030, 0, 0], + "PC2H": [0.25, 0.030, 0, 0], + "RM1L": [0.20, 0.025, 0, 0], + "RM1M": [0.20, 0.025, 0, 0], + "RM2L": [0.20, 0.025, 0, 0], + "RM2M": [0.20, 0.025, 0, 0], + "RM2H": [0.20, 0.025, 0, 0], + "URML": [0.35, 0.400, 0.001, 0.001], + "URMM": [0.35, 0.400, 0.001, 0.001], + "MH": [0.25, 0.030, 0, 0] + }, + "DS3": { + "W1": [1, 0.1, 0.001, 0.001], + "W2": [1, 0.1, 0.001, 0.001], + "S1L": [1, 0.1, 0.001, 0.001], + "S1M": [1, 0.1, 0.001, 0.001], + "S1H": [1, 0.1, 0.001, 0.001], + "S2L": [1, 0.1, 0.001, 0.001], + "S2M": [1, 0.1, 0.001, 0.001], + "S2H": [1, 0.1, 0.001, 0.001], + "S3": [1, 0.1, 0.001, 0.001], + "S4L": [1, 0.1, 0.001, 0.001], + "S4M": [1, 0.1, 0.001, 0.001], + "S4H": [1, 0.1, 0.001, 0.001], + "S5L": [1, 0.1, 0.001, 0.001], + "S5M": [1, 0.1, 0.001, 0.001], + "S5H": [1, 0.1, 0.001, 0.001], + "C1L": [1, 0.1, 0.001, 0.001], + "C1M": [1, 0.1, 0.001, 0.001], + "C1H": [1, 0.1, 0.001, 0.001], + "C2L": [1, 0.1, 0.001, 0.001], + "C2M": [1, 0.1, 0.001, 0.001], + "C2H": [1, 0.1, 0.001, 0.001], + "C3L": [1, 0.1, 0.001, 0.001], + "C3M": [1, 0.1, 0.001, 0.001], + "C3H": [1, 0.1, 0.001, 0.001], + "PC1": [1, 0.1, 0.001, 0.001], + "PC2L": [1, 0.1, 0.001, 0.001], + "PC2M": [1, 0.1, 0.001, 0.001], + "PC2H": [1, 0.1, 0.001, 0.001], + "RM1L": [1, 0.1, 0.001, 0.001], + "RM1M": [1, 0.1, 0.001, 0.001], + "RM2L": [1, 0.1, 0.001, 0.001], + "RM2M": [1, 0.1, 0.001, 0.001], + "RM2H": [1, 0.1, 0.001, 0.001], + "URML": [2, 0.2, 0.002, 0.002], + "URMM": [2, 0.2, 0.002, 0.002], + "MH": [1, 0.1, 0.001, 0.001] + }, + "DS4": { + "W1": [5, 1, 0.01, 0.01], + "W2": [5, 1, 0.01, 0.01], + "S1L": [5, 1, 0.01, 0.01], + "S1M": [5, 1, 0.01, 0.01], + "S1H": [5, 1, 0.01, 0.01], + "S2L": [5, 1, 0.01, 0.01], + "S2M": [5, 1, 0.01, 0.01], + "S2H": [5, 1, 0.01, 0.01], + "S3": [5, 1, 0.01, 0.01], + "S4L": [5, 1, 0.01, 0.01], + "S4M": [5, 1, 0.01, 0.01], + "S4H": [5, 1, 0.01, 0.01], + "S5L": [5, 1, 0.01, 0.01], + "S5M": [5, 1, 0.01, 0.01], + "S5H": [5, 1, 0.01, 0.01], + "C1L": [5, 1, 0.01, 0.01], + "C1M": [5, 1, 0.01, 0.01], + "C1H": [5, 1, 0.01, 0.01], + "C2L": [5, 1, 0.01, 0.01], + "C2M": [5, 1, 0.01, 0.01], + "C2H": [5, 1, 0.01, 0.01], + "C3L": [5, 1, 0.01, 0.01], + "C3M": [5, 1, 0.01, 0.01], + "C3H": [5, 1, 0.01, 0.01], + "PC1": [5, 1, 0.01, 0.01], + "PC2L": [5, 1, 0.01, 0.01], + "PC2M": [5, 1, 0.01, 0.01], + "PC2H": [5, 1, 0.01, 0.01], + "RM1L": [5, 1, 0.01, 0.01], + "RM1M": [5, 1, 0.01, 0.01], + "RM2L": [5, 1, 0.01, 0.01], + "RM2M": [5, 1, 0.01, 0.01], + "RM2H": [5, 1, 0.01, 0.01], + "URML": [10, 2, 0.02, 0.02], + "URMM": [10, 2, 0.02, 0.02], + "MH": [5, 1, 0.01, 0.01] + }, + "DS5": { + "W1": [40, 20, 3, 5], + "W2": [40, 20, 5, 10], + "S1L": [40, 20, 5, 10], + "S1M": [40, 20, 5, 10], + "S1H": [40, 20, 5, 10], + "S2L": [40, 20, 5, 10], + "S2M": [40, 20, 5, 10], + "S2H": [40, 20, 5, 10], + "S3": [40, 20, 3, 5], + "S4L": [40, 20, 5, 10], + "S4M": [40, 20, 5, 10], + "S4H": [40, 20, 5, 10], + "S5L": [40, 20, 5, 10], + "S5M": [40, 20, 5, 10], + "S5H": [40, 20, 5, 10], + "C1L": [40, 20, 5, 10], + "C1M": [40, 20, 5, 10], + "C1H": [40, 20, 5, 10], + "C2L": [40, 20, 5, 10], + "C2M": [40, 20, 5, 10], + "C2H": [40, 20, 5, 10], + "C3L": [40, 20, 5, 10], + "C3M": [40, 20, 5, 10], + "C3H": [40, 20, 5, 10], + "PC1": [40, 20, 5, 10], + "PC2L": [40, 20, 5, 10], + "PC2M": [40, 20, 5, 10], + "PC2H": [40, 20, 5, 10], + "RM1L": [40, 20, 5, 10], + "RM1M": [40, 20, 5, 10], + "RM2L": [40, 20, 5, 10], + "RM2M": [40, 20, 5, 10], + "RM2H": [40, 20, 5, 10], + "URML": [40, 20, 5, 10], + "URMM": [40, 20, 5, 10], + "MH": [40, 20, 3, 5] + } + }, + "Repair_cost": { + "RES1": [2.0, 10.0, 44.7, 100.0], + "RES2": [2.0, 10.0, 37.5, 100.0], + "RES3": [2.0, 10.0, 41.3, 100.0], + "RES4": [2.0, 10.0, 41.4, 100.0], + "RES5": [2.0, 10.0, 41.8, 100.0], + "RES6": [2.0, 10.0, 41.8, 100.0], + "COM1": [2.0, 10.0, 41.4, 100.0], + "COM2": [2.0, 10.0, 41.8, 100.0], + "COM3": [2.0, 10.0, 40.0, 100.0], + "COM4": [2.0, 10.0, 40.4, 100.0], + "COM5": [2.0, 10.0, 39.6, 100.0], + "COM6": [2.0, 10.0, 39.8, 100.0], + "COM7": [2.0, 10.0, 39.7, 100.0], + "COM8": [2.0, 10.0, 39.1, 100.0], + "COM9": [2.0, 10.0, 39.5, 100.0], + "COM10": [2.0, 10.0, 45.6, 100.0], + "IND1": [2.0, 10.0, 35.5, 100.0], + "IND2": [2.0, 10.0, 35.5, 100.0], + "IND3": [2.0, 10.0, 35.5, 100.0], + "IND4": [2.0, 10.0, 35.5, 100.0], + "IND5": [2.0, 10.0, 35.5, 100.0], + "IND6": [2.0, 10.0, 35.5, 100.0], + "AGR1": [1.6, 10.0, 40.7, 100.0], + "REL1": [2.0, 10.0, 40.5, 100.0], + "GOV1": [2.0, 10.0, 40.2, 100.0], + "GOV2": [2.0, 10.0, 39.9, 100.0], + "EDU1": [2.0, 10.0, 43.5, 100.0], + "EDU2": [2.0, 10.0, 44.2, 100.0] + }, + "Repair_time": { + "RES1": [2, 30, 90, 180], + "RES2": [2, 10, 30, 60], + "RES3": [5, 30, 120, 240], + "RES4": [5, 30, 120, 240], + "RES5": [5, 30, 120, 240], + "RES6": [5, 30, 120, 240], + "COM1": [5, 30, 90, 180], + "COM2": [5, 30, 90, 180], + "COM3": [5, 30, 90, 180], + "COM4": [5, 30, 120, 240], + "COM5": [5, 30, 90, 180], + "COM6": [10, 45, 180, 360], + "COM7": [10, 45, 180, 240], + "COM8": [5, 30, 90, 180], + "COM9": [5, 30, 120, 240], + "COM10": [2, 20, 80, 160], + "IND1": [10, 30, 120, 240], + "IND2": [10, 30, 120, 240], + "IND3": [10, 30, 120, 240], + "IND4": [10, 30, 120, 240], + "IND5": [20, 45, 180, 360], + "IND6": [5, 20, 80, 160], + "AGR1": [2, 10, 30, 60], + "REL1": [10, 30, 120, 240], + "GOV1": [10, 30, 120, 240], + "GOV2": [5, 20, 90, 180], + "EDU1": [10, 30, 120, 240], + "EDU2": [10, 45, 180, 360] } }, + "Ground_Failure":{ + "EDP_limits": { + "Horizontal": { + "Shallow": 60.0, + "Deep": 184.0 + }, + "Vertical": { + "Shallow": 10.0, + "Deep": 486.0 + } + }, + "Fragility_beta":{ + "Horizontal": { + "Shallow": 1.256, + "Deep": 1.659 + }, + "Vertical": { + "Shallow": 1.256, + "Deep": 2.362 + } + }, + "P_Complete": 0.2 + }, "Parts_of_day":{ "Nighttime": [0, 1, 2, 3, 4, 5, 20, 21, 22, 23], "Daytime": [9, 10, 11, 12, 13, 14, 15], diff --git a/pelicun/resources/data_sources/HAZUS_MH_2.1_EQ/pop_template.json b/pelicun/resources/data_sources/HAZUS_MH_4.2.3_EQ/pop_template.json similarity index 100% rename from pelicun/resources/data_sources/HAZUS_MH_2.1_EQ/pop_template.json rename to pelicun/resources/data_sources/HAZUS_MH_4.2.3_EQ/pop_template.json diff --git a/pelicun/resources/fragility_DB_FEMA_P58_2nd.csv b/pelicun/resources/fragility_DB_FEMA_P58_2nd.csv new file mode 100644 index 000000000..c8a249190 --- /dev/null +++ b/pelicun/resources/fragility_DB_FEMA_P58_2nd.csv @@ -0,0 +1,765 @@ +ID,Incomplete,Demand-Type,Demand-Unit,Demand-Offset,Demand-Directional,LS1-Family,LS1-Theta_0,LS1-Theta_1,LS1-DamageStateWeights,LS2-Family,LS2-Theta_0,LS2-Theta_1,LS2-DamageStateWeights,LS3-Family,LS3-Theta_0,LS3-Theta_1,LS3-DamageStateWeights,LS4-Family,LS4-Theta_0,LS4-Theta_1,LS4-DamageStateWeights +B1031.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.04,0.4,0.950000 | 0.050000,lognormal,0.08,0.4,,lognormal,0.11,0.4,,,,, +B1031.011a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.04,0.4,0.950000 | 0.050000,lognormal,0.07,0.4,,lognormal,0.1,0.4,,,,, +B1031.011b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.04,0.4,0.950000 | 0.050000,lognormal,0.07,0.4,,lognormal,0.1,0.4,,,,, +B1031.011c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.04,0.4,0.950000 | 0.050000,lognormal,0.07,0.4,,lognormal,0.1,0.4,,,,, +B1031.021a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,0.950000 | 0.050000,lognormal,0.05,0.4,,,,,,,,, +B1031.021b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,0.950000 | 0.050000,lognormal,0.05,0.4,,,,,,,,, +B1031.021c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,0.950000 | 0.050000,lognormal,0.05,0.4,,,,,,,,, +B1033.001a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.001b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.001c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.002a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.002b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.002c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.003a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.003b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.003c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0058,0.65,,lognormal,0.0142,0.5,,lognormal,0.0283,0.25, +B1033.011a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.011b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.011c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.012a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.012b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.012c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.013a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.013b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.013c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.45,,lognormal,0.0092,0.3,,lognormal,0.0167,0.15,,lognormal,0.0223,0.15, +B1033.021a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.021b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.021c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.022a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.022b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.022c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.023a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.023b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.023c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0037,0.3,,lognormal,0.0075,0.25,,lognormal,0.0145,0.25,,lognormal,0.0199,0.35, +B1033.031a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0074,0.3,,lognormal,0.0121,0.25,,lognormal,0.0152,0.35,,,,, +B1033.031b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0074,0.3,,lognormal,0.0121,0.25,,lognormal,0.0152,0.35,,,,, +B1033.031c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0074,0.3,,lognormal,0.0121,0.25,,lognormal,0.0152,0.35,,,,, +B1033.032a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0074,0.3,,lognormal,0.0121,0.25,,lognormal,0.0152,0.35,,,,, +B1033.032b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0074,0.3,,lognormal,0.0121,0.25,,lognormal,0.0152,0.35,,,,, +B1033.032c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0074,0.3,,lognormal,0.0121,0.25,,lognormal,0.0152,0.35,,,,, +B1033.033a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0038,0.3,,lognormal,0.0075,0.55,,lognormal,0.0145,0.25,,lognormal,0.0185,0.35, +B1033.033b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0038,0.3,,lognormal,0.0075,0.55,,lognormal,0.0145,0.25,,lognormal,0.0185,0.35, +B1033.033c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0038,0.3,,lognormal,0.0075,0.55,,lognormal,0.0145,0.25,,lognormal,0.0185,0.35, +B1033.041a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.041b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.041c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.042a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.042b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.042c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.043a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.043b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.043c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00256,0.3,,lognormal,0.0048,0.3,,lognormal,0.0112,0.3,,,,, +B1033.051a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.051b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.051c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.052a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.052b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.052c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.053a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.053b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.053c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.0178,0.3,,,,, +B1033.061a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.061b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.061c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.062a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.062b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.062c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.063a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.063b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.063c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.00159,0.7,,lognormal,0.01,0.3,,lognormal,0.01776,0.3,,,,, +B1033.071a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.071b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.071c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.072a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.072b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.072c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.073a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.073b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.073c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0042,0.25,,,,,,,,,,,,, +B1033.101a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,,,,,,,,,,,, +B1033.101b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,,,,,,,,,,,, +B1033.101c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,,,,,,,,,,,, +B1033.111a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,,,,,,,,,,,, +B1033.111b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,,,,,,,,,,,, +B1033.111c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,,,,,,,,,,,, +B1035.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,0.3,,lognormal,0.04,0.3,,lognormal,0.05,0.3,,,,, +B1035.002,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,0.3,,lognormal,0.04,0.3,,lognormal,0.05,0.3,,,,, +B1035.011,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,0.3,,lognormal,0.04,0.3,,lognormal,0.05,0.3,,,,, +B1035.012,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,0.3,,lognormal,0.04,0.3,,lognormal,0.05,0.3,,,,, +B1035.021,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,0.3,,lognormal,0.04,0.3,,lognormal,0.05,0.3,,,,, +B1035.022,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,0.3,,lognormal,0.04,0.3,,lognormal,0.05,0.3,,,,, +B1035.031,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,0.3,,lognormal,0.04,0.3,,lognormal,0.05,0.3,,,,, +B1035.032,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,0.3,,lognormal,0.04,0.3,,lognormal,0.05,0.3,,,,, +B1035.041,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.017,0.4,0.750000 | 0.250000,lognormal,0.025,0.4,0.750000 | 0.250000,lognormal,0.03,0.4,,,,, +B1035.042,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.017,0.4,0.750000 | 0.250000,lognormal,0.025,0.4,0.750000 | 0.250000,lognormal,0.03,0.4,,,,, +B1035.051,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.017,0.4,0.750000 | 0.250000,lognormal,0.025,0.4,0.750000 | 0.250000,lognormal,0.03,0.4,,,,, +B1035.052,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.017,0.4,0.750000 | 0.250000,lognormal,0.025,0.4,0.750000 | 0.250000,lognormal,0.03,0.4,,,,, +B1035.061a,0,Peak Link Rotation Angle,rad,0,1,lognormal,0.04,0.3,,lognormal,0.06,0.3,,lognormal,0.08,0.3,,,,, +B1035.061b,0,Peak Link Rotation Angle,rad,0,1,lognormal,0.04,0.3,,lognormal,0.06,0.3,,lognormal,0.08,0.3,,,,, +B1035.062a,0,Peak Link Rotation Angle,rad,0,1,lognormal,0.04,0.3,,lognormal,0.06,0.3,,lognormal,0.08,0.3,,,,, +B1035.062b,0,Peak Link Rotation Angle,rad,0,1,lognormal,0.04,0.3,,lognormal,0.06,0.3,,lognormal,0.08,0.3,,,,, +B1041.001a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.0275,0.3,,lognormal,0.05,0.3,0.800000 | 0.200000,,,, +B1041.001b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.0275,0.3,,lognormal,0.05,0.3,0.800000 | 0.200000,,,, +B1041.002a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.0275,0.3,,lognormal,0.05,0.3,0.800000 | 0.200000,,,, +B1041.002b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.0275,0.3,,lognormal,0.05,0.3,0.800000 | 0.200000,,,, +B1041.003a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.0275,0.3,,lognormal,0.05,0.3,0.800000 | 0.200000,,,, +B1041.003b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.0275,0.3,,lognormal,0.05,0.3,0.800000 | 0.200000,,,, +B1041.011a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.04,0.3,0.500000 | 0.500000,,,, +B1041.011b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.04,0.3,0.500000 | 0.500000,,,, +B1041.012a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.04,0.3,0.500000 | 0.500000,,,, +B1041.012b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.04,0.3,0.500000 | 0.500000,,,, +B1041.013a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.04,0.3,0.500000 | 0.500000,,,, +B1041.013b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.04,0.3,0.500000 | 0.500000,,,, +B1041.021a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.035,0.3,0.400000 | 0.600000,,,, +B1041.021b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.035,0.3,0.400000 | 0.600000,,,, +B1041.022a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.035,0.3,0.400000 | 0.600000,,,, +B1041.022b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.035,0.3,0.400000 | 0.600000,,,, +B1041.023a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.035,0.3,0.400000 | 0.600000,,,, +B1041.023b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.4,,lognormal,0.025,0.3,,lognormal,0.035,0.3,0.400000 | 0.600000,,,, +B1041.031a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.031b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.032a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.032b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.033a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.033b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.041a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.041b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.042a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.042b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.043a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.043b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.051a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,lognormal,0.03,0.4,,,,, +B1041.051b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,lognormal,0.03,0.4,,,,, +B1041.052a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,lognormal,0.03,0.4,,,,, +B1041.052b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,lognormal,0.03,0.4,,,,, +B1041.053a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,lognormal,0.03,0.4,,,,, +B1041.053b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,lognormal,0.03,0.4,,,,, +B1041.061a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.061b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.062a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.062b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.063a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.063b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.071a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.071b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.072a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.072b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.073a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.073b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.081a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.081b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.082a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.082b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.083a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.083b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0175,0.4,,lognormal,0.0225,0.4,,lognormal,0.0322,0.4,,,,, +B1041.091a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.091b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.092a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.092b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.093a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.093b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0175,0.4,,lognormal,0.02,0.4,,,,, +B1041.101a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.101b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.102a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.102b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.103a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.103b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.111a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.111b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.112a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.112b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.113a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.113b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,lognormal,0.025,0.4,,,,, +B1041.121a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.121b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.122a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.122b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.123a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.123b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.4,,lognormal,0.005,0.5,,,,,,,,, +B1041.131a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,,,,,,,, +B1041.131b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,,,,,,,, +B1041.132a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,,,,,,,, +B1041.132b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,,,,,,,, +B1041.133a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,,,,,,,, +B1041.133b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.02,0.4,,,,,,,,, +B1042.001a,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.0179,0.38,,lognormal,0.0352,0.44,,lognormal,0.0543,0.95,,,,, +B1042.001b,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.0203,0.39,,lognormal,0.0394,0.35,,lognormal,0.0602,1.0,,,,, +B1042.002a,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.013700000000000002,0.21,,lognormal,0.026400000000000003,0.33,,lognormal,0.042800000000000005,0.74,,,,, +B1042.002b,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.013700000000000002,0.21,,lognormal,0.026400000000000003,0.33,,lognormal,0.04070000000000001,0.75,,,,, +B1042.011a,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.0179,0.38,,lognormal,0.0352,0.44,,lognormal,0.0543,0.95,,,,, +B1042.011b,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.0203,0.39,,lognormal,0.0394,0.35,,lognormal,0.0602,1.0,,,,, +B1042.012a,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.013700000000000002,0.21,,lognormal,0.026400000000000003,0.33,,lognormal,0.042800000000000005,0.74,,,,, +B1042.012b,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.013700000000000002,0.21,,lognormal,0.026400000000000003,0.33,,lognormal,0.04070000000000001,0.75,,,,, +B1042.021a,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.0179,0.38,,lognormal,0.0352,0.44,,lognormal,0.0543,0.95,,,,, +B1042.021b,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.0203,0.39,,lognormal,0.0394,0.35,,lognormal,0.0602,1.0,,,,, +B1042.022a,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.013700000000000002,0.21,,lognormal,0.026400000000000003,0.33,,lognormal,0.042800000000000005,0.74,,,,, +B1042.022b,0,Peak Link Beam Chord Rotation,rad,0,1,lognormal,0.013700000000000002,0.21,,lognormal,0.026400000000000003,0.33,,lognormal,0.04070000000000001,0.75,,,,, +B1044.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.002,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.003,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.011,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.012,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.013,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.021,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.022,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.023,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0055,0.36,,lognormal,0.0109,0.3,,lognormal,0.013,0.36,,,,, +B1044.031,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.032,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.033,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.041,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.042,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.043,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.051,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.052,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.053,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0076,0.35,,lognormal,0.0134,0.45,,,,,,,,, +B1044.061,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.062,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.063,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.071,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.072,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.073,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.081,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.082,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.083,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0033,0.35,,lognormal,0.0087,0.2,,,,,,,,, +B1044.091,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1044.092,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1044.093,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1044.101,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1044.102,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1044.103,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1044.111,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1044.112,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1044.113,0,Peak Effective Drift Ratio,ea,0,1,lognormal,0.009300000000000001,0.5,,lognormal,0.0128,0.35,,lognormal,0.018600000000000002,0.45,,,,, +B1049.001a,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.025,0.25,,lognormal,0.04,0.25,,,,,,,,, +B1049.001b,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.025,0.25,,lognormal,0.04,0.25,,,,,,,,, +B1049.002a,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.02,0.4,,lognormal,0.035,0.4,,,,,,,,, +B1049.002b,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.02,0.4,,lognormal,0.035,0.4,,,,,,,,, +B1049.003a,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.012,0.4,,lognormal,0.016,0.4,,,,,,,,, +B1049.003b,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.012,0.4,,lognormal,0.016,0.4,,,,,,,,, +B1049.011,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.03,0.4,,lognormal,0.048,0.4,,,,,,,,, +B1049.012,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.022,0.4,,lognormal,0.03,0.4,,,,,,,,, +B1049.021a,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.018,0.4,,lognormal,0.03,0.4,,,,,,,,, +B1049.021b,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.018,0.4,,lognormal,0.03,0.4,,,,,,,,, +B1049.022a,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.013,0.5,,lognormal,0.019,0.55,,,,,,,,, +B1049.022b,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.013,0.5,,lognormal,0.019,0.55,,,,,,,,, +B1049.031,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.028,0.5,,lognormal,0.04,0.5,,,,,,,,, +B1049.032,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.023,0.5,,lognormal,0.032,0.5,,,,,,,,, +B1049.041a,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.025,0.5,,lognormal,0.042,0.5,,,,,,,,, +B1049.041b,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.025,0.5,,lognormal,0.042,0.5,,,,,,,,, +B1049.042a,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.017,0.5,,lognormal,0.023,0.5,,,,,,,,, +B1049.042b,0,Peak Interstory Drift Ratio,ea,0,0,lognormal,0.017,0.5,,lognormal,0.023,0.5,,,,,,,,, +B1051.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.86,,lognormal,0.0033,0.77,,,,,,,,, +B1051.002,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.86,,lognormal,0.0033,0.77,,,,,,,,, +B1051.003,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0018,0.73,,lognormal,0.0051,0.65,,lognormal,0.0086,0.56,,,,, +B1051.004,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0018,0.73,,lognormal,0.0051,0.65,,lognormal,0.0086,0.56,,,,, +B1051.011,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.86,,lognormal,0.0033,0.77,,,,,,,,, +B1051.012,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.86,,lognormal,0.0033,0.77,,,,,,,,, +B1051.013,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0018,0.73,,lognormal,0.0051,0.65,,lognormal,0.0086,0.56,,,,, +B1051.014,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0018,0.73,,lognormal,0.0051,0.65,,lognormal,0.0086,0.56,,,,, +B1051.021,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.86,,lognormal,0.0033,0.77,,,,,,,,, +B1051.022,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.86,,lognormal,0.0033,0.77,,,,,,,,, +B1051.023,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0018,0.73,,lognormal,0.0051,0.65,,lognormal,0.0086,0.56,,,,, +B1051.024,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0018,0.73,,lognormal,0.0051,0.65,,lognormal,0.0086,0.56,,,,, +B1052.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0036,0.59,,lognormal,0.0059,0.51,,,,,,,,, +B1052.002,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0036,0.59,,lognormal,0.0059,0.51,,,,,,,,, +B1052.003,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0031,0.47,,lognormal,0.009,0.4,,lognormal,0.0151,0.32,,,,, +B1052.004,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0031,0.47,,lognormal,0.009,0.4,,lognormal,0.0151,0.32,,,,, +B1052.011,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0036,0.59,,lognormal,0.0059,0.51,,,,,,,,, +B1052.012,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0036,0.59,,lognormal,0.0059,0.51,,,,,,,,, +B1052.013,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0031,0.47,,lognormal,0.009,0.4,,lognormal,0.0151,0.32,,,,, +B1052.014,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0031,0.47,,lognormal,0.009,0.4,,lognormal,0.0151,0.32,,,,, +B1061.001a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.004,0.4,,lognormal,0.0226,0.3,,lognormal,0.0267,0.25,,,,, +B1061.001b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.004,0.4,,lognormal,0.0226,0.3,,lognormal,0.0267,0.25,,,,, +B1061.011a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0139,0.25,,lognormal,0.0179,0.25,,,,,,,,, +B1061.011b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0139,0.25,,lognormal,0.0179,0.25,,,,,,,,, +B1061.021a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.019,0.25,,lognormal,0.0253,0.25,,,,,,,,, +B1061.021b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.019,0.25,,lognormal,0.0253,0.25,,,,,,,,, +B1071.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.01,0.4,,lognormal,0.0175,0.4,,lognormal,0.025,0.4,,,,, +B1071.002,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0262,0.19,,lognormal,0.0369,0.2,,,,, +B1071.011,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0017,0.5,,lognormal,0.0035,0.4,,lognormal,0.017,0.4,,,,, +B1071.012,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.44,,lognormal,0.0052,0.3,,lognormal,0.0252,0.16,,,,, +B1071.031,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.01,0.4,,,,,,,,,,,,, +B1071.041,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0021,0.6,,lognormal,0.0071,0.45,,lognormal,0.012,0.45,,,,, +B2011.001a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.004,0.4,,lognormal,0.0226,0.3,,lognormal,0.0267,0.25,,,,, +B2011.001b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.004,0.4,,lognormal,0.0226,0.3,,lognormal,0.0267,0.25,,,,, +B2011.011a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0139,0.25,,lognormal,0.0179,0.25,,,,,,,,, +B2011.011b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0139,0.25,,lognormal,0.0179,0.25,,,,,,,,, +B2011.021a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.019,0.25,,lognormal,0.0253,0.25,,,,,,,,, +B2011.021b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.019,0.25,,lognormal,0.0253,0.25,,,,,,,,, +B2011.101,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.01,0.4,,lognormal,0.0175,0.4,,lognormal,0.025,0.4,,,,, +B2011.102,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0025,0.44,,lognormal,0.0052,0.3,,lognormal,0.0252,0.16,,,,, +B2011.111,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0017,0.5,,lognormal,0.0035,0.4,,lognormal,0.017,0.4,,,,, +B2011.121,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.015,0.4,,lognormal,0.0262,0.19,,lognormal,0.0369,0.2,,,,, +B2011.131,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.01,0.4,,,,,,,,,,,,, +B2011.201a,1,Peak Interstory Drift Ratio,ea,0,1,lognormal,,,0.500000 | 0.500000,,,,,,,,,,,, +B2011.201b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +B2022.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0338,0.4,,lognormal,0.0383,0.4,,,,,,,,, +B2022.002,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.021,0.45,,lognormal,0.024,0.45,,,,,,,,, +B2022.011,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.026,0.25,,lognormal,0.0268,0.25,,lognormal,0.0339,0.25,,,,, +B2022.021,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0156,0.35,,lognormal,0.0561,0.3,,,,,,,,, +B2022.022,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0392,0.29,,lognormal,0.0434,0.25,,,,,,,,, +B2022.023,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0347,0.26,,lognormal,0.04,0.6,,,,,,,,, +B2022.031,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0138,0.25,,lognormal,0.0219,0.3,,,,,,,,, +B2022.032,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0088,0.25,,lognormal,0.0108,0.25,,,,,,,,, +B2022.033,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0084,0.25,,lognormal,0.0107,0.35,,,,,,,,, +B2022.034,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0147,0.25,,lognormal,0.0164,0.25,,,,,,,,, +B2022.035,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0181,0.25,,lognormal,0.0212,0.25,,,,,,,,, +B2022.036,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.022,0.3,,lognormal,0.0257,0.25,,,,,,,,, +B2022.037,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0288,0.26,,lognormal,0.04,0.6,,,,,,,,, +B2022.038,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0273,0.28,,lognormal,0.0286,0.28,,,,,,,,, +B2022.039,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.027,0.26,,lognormal,0.029,0.26,,,,,,,,, +B2022.040,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.02,0.26,,lognormal,0.023,0.28,,,,,,,,, +B2022.041,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.024,0.25,,lognormal,0.027,0.32,,,,,,,,, +B2022.051,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.043,0.25,,lognormal,0.05,0.25,,,,,,,,, +B2022.052,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.042,0.3,,lognormal,0.052,0.3,,,,,,,,, +B2022.053,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.029,0.3,,lognormal,0.039,0.3,,,,,,,,, +B2022.054,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.033,0.25,,lognormal,0.043,0.25,,,,,,,,, +B2022.061,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.024,0.29,,lognormal,0.025,0.29,,,,,,,,, +B2022.071,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.027,0.3,,lognormal,0.0276,0.3,,lognormal,0.0303,0.3,,,,, +B2022.072,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0262,0.3,,lognormal,0.0266,0.3,,lognormal,0.0299,0.3,,,,, +B2022.081,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0234,0.3,,lognormal,0.031,0.3,,,,,,,,, +B2022.082,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0142,0.25,,lognormal,0.0221,0.25,,,,,,,,, +B2022.083,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.026,0.11,,lognormal,0.051,0.25,,lognormal,0.054,0.25,,,,, +B2022.084,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.026,0.11,,lognormal,0.051,0.25,,lognormal,0.054,0.25,,,,, +B2022.091,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.026,0.11,,lognormal,0.031,0.25,,lognormal,0.032,0.25,,,,, +B2022.101,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.026,0.3,,lognormal,0.027,0.3,,lognormal,0.028,0.3,,,,, +B2022.201,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.026,0.45,,lognormal,0.05,0.25,,lognormal,0.1,0.25,,,,, +B2023.001,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.029,0.5,,lognormal,0.0473,0.25,,lognormal,0.07,0.25,,,,, +B2023.002,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0423,0.3,,lognormal,0.059,0.25,,lognormal,0.0665,0.35,,,,, +B2023.011,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.029,0.5,,lognormal,0.0567,0.3,,lognormal,0.08,0.3,,,,, +B2023.021,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0303,0.5,,lognormal,0.0413,0.3,,lognormal,0.051,0.3,,,,, +B2023.031,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,1.0,,lognormal,0.052,0.4,,,,,,,,, +B2023.032,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.042,0.55,,lognormal,0.05,1.0,,,,,,,,, +B2023.033,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.03,1.0,,lognormal,0.05,0.4,,,,,,,,, +B2023.034,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.036,0.75,,lognormal,0.05,1.0,,,,,,,,, +B2023.041,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0423,0.3,,lognormal,0.059,0.25,,lognormal,0.0665,0.25,,,,, +B2023.051,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.05,0.29,,lognormal,0.16,1.0,,,,,,,,, +B2023.052,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.054,0.28,,lognormal,0.16,1.0,,,,,,,,, +B2023.053,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.05,0.28,,lognormal,0.16,1.0,,,,,,,,, +B2023.054,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.1,0.32,,lognormal,0.11,0.32,,,,,,,,, +B2023.055,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.055,0.29,,lognormal,0.1,0.32,,,,,,,,, +B2023.056,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.055,0.32,,lognormal,0.1,0.32,,,,,,,,, +B2023.057,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.055,0.32,,lognormal,0.1,0.32,,,,,,,,, +B2023.058,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.09,1.0,,lognormal,0.1,0.32,,,,,,,,, +B3011.011,0,Peak Floor Acceleration,g,0,0,lognormal,1.1,0.4,,lognormal,1.4,0.4,,,,,,,,, +B3011.012,0,Peak Floor Acceleration,g,0,0,lognormal,1.4,0.3,,lognormal,1.7,0.3,,,,,,,,, +B3011.013,0,Peak Floor Acceleration,g,0,0,lognormal,0.5,0.4,,lognormal,0.7,0.4,,,,,,,,, +B3011.014,0,Peak Floor Acceleration,g,0,0,lognormal,0.4,0.3,,lognormal,0.5,0.3,,,,,,,,, +B3031.001a,0,Peak Floor Acceleration,g,0,0,lognormal,0.35,0.6,,lognormal,0.5,0.6,,,,,,,,, +B3031.001b,0,Peak Floor Acceleration,g,0,0,lognormal,0.35,0.6,,lognormal,0.5,0.6,,,,,,,,, +B3031.001c,0,Peak Floor Acceleration,g,0,0,lognormal,0.35,0.6,,lognormal,0.5,0.6,,,,,,,,, +B3031.002a,0,Peak Floor Acceleration,g,0,0,lognormal,0.35,0.6,,lognormal,0.5,0.6,,,,,,,,, +B3031.002b,0,Peak Floor Acceleration,g,0,0,lognormal,0.35,0.6,,lognormal,0.5,0.6,,,,,,,,, +B3031.002c,0,Peak Floor Acceleration,g,0,0,lognormal,0.35,0.6,,lognormal,0.5,0.6,,,,,,,,, +B3041.001,0,Peak Floor Acceleration,g,0,0,lognormal,0.2,0.6,,lognormal,0.4,0.6,,,,,,,,, +C1011.001a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.005,0.4,,lognormal,0.01,0.3,,lognormal,0.021,0.2,,,,, +C1011.001b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.01,0.3,,lognormal,0.013,0.3,,lognormal,0.018,0.3,,,,, +C1011.001c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.004,0.45,,lognormal,0.011,0.35,,lognormal,0.019,0.25,,,,, +C1011.001d,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.6,,lognormal,0.0095,0.45,,,,,,,,, +C1011.011a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0021,0.6,,lognormal,0.0071,0.45,0.800000 | 0.200000,,,,,,,, +C2011.001a,1,Peak Interstory Drift Ratio,ea,0,1,lognormal,,,,lognormal,,,,lognormal,,,,,,, +C2011.001b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.005,0.6,,lognormal,0.017,0.6,,lognormal,0.028,0.45,,,,, +C2011.011a,1,Peak Interstory Drift Ratio,ea,0,1,lognormal,,,,lognormal,,,,lognormal,,,,,,, +C2011.011b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.005,0.6,,lognormal,0.017,0.6,,lognormal,0.028,0.45,,,,, +C2011.021a,1,Peak Interstory Drift Ratio,ea,0,1,lognormal,,,,lognormal,,,,lognormal,,,,,,, +C2011.021b,1,Peak Interstory Drift Ratio,ea,0,1,lognormal,,,,lognormal,,,,lognormal,,,,,,, +C2011.021c,1,Peak Interstory Drift Ratio,ea,0,1,lognormal,,,,lognormal,,,,lognormal,,,,,,, +C2011.021d,1,Peak Interstory Drift Ratio,ea,0,1,lognormal,,,,lognormal,,,,lognormal,,,,,,, +C2011.031a,1,Peak Interstory Drift Ratio,ea,0,1,lognormal,,,,lognormal,,,,lognormal,,,,,,, +C2011.031b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.005,0.6,,lognormal,0.017,0.6,,lognormal,0.028,0.45,,,,, +C3011.001a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0021,0.6,,,,,,,,,,,,, +C3011.001b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0064,0.3,,,,,,,,,,,,, +C3011.001c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.7,,,,,,,,,,,,, +C3011.001d,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.7,,,,,,,,,,,,, +C3011.002a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0021,0.6,,lognormal,0.0071,0.45,,,,,,,,, +C3011.002b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0064,0.3,,lognormal,0.011,0.3,,,,,,,,, +C3011.002c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.7,,lognormal,0.005,0.4,,,,,,,,, +C3011.002d,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.7,,lognormal,0.0093,0.45,,,,,,,,, +C3011.003a,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0021,0.6,,lognormal,0.0071,0.45,,,,,,,,, +C3011.003b,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0064,0.3,,lognormal,0.011,0.3,,,,,,,,, +C3011.003c,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.002,0.7,,lognormal,0.005,0.4,,,,,,,,, +C3011.003d,0,Peak Interstory Drift Ratio,ea,0,1,lognormal,0.0035,0.7,,lognormal,0.0093,0.45,,,,,,,,, +C3021.001a,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001b,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001c,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001d,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001e,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001f,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001g,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001h,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001i,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001j,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001k,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001l,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001m,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001n,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001o,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3021.001p,1,Peak Floor Acceleration,g,1,0,lognormal,,,,,,,,,,,,,,, +C3027.001,0,Peak Floor Acceleration,g,0,0,lognormal,0.5,0.5,,,,,,,,,,,,, +C3027.002,0,Peak Floor Acceleration,g,0,0,lognormal,1.5,0.4,,,,,,,,,,,,, +C3032.001a,0,Peak Floor Acceleration,g,1,0,lognormal,1.17,0.25,,lognormal,1.58,0.25,,lognormal,1.82,0.25,,,,, +C3032.001b,0,Peak Floor Acceleration,g,1,0,lognormal,1.01,0.25,,lognormal,1.45,0.25,,lognormal,1.69,0.25,,,,, +C3032.001c,0,Peak Floor Acceleration,g,1,0,lognormal,0.7,0.25,,lognormal,1.2,0.25,,lognormal,1.43,0.25,,,,, +C3032.001d,0,Peak Floor Acceleration,g,1,0,lognormal,0.56,0.25,,lognormal,1.08,0.25,,lognormal,1.31,0.25,,,,, +C3032.003a,0,Peak Floor Acceleration,g,1,0,lognormal,1.6,0.3,,lognormal,1.95,0.3,,lognormal,2.07,0.3,,,,, +C3032.003b,0,Peak Floor Acceleration,g,1,0,lognormal,1.47,0.3,,lognormal,1.88,0.3,,lognormal,2.03,0.3,,,,, +C3032.003c,0,Peak Floor Acceleration,g,1,0,lognormal,1.21,0.3,,lognormal,1.75,0.3,,lognormal,1.95,0.3,,,,, +C3032.003d,0,Peak Floor Acceleration,g,1,0,lognormal,1.09,0.3,,lognormal,1.69,0.3,,lognormal,1.91,0.3,,,,, +C3032.004a,0,Peak Floor Acceleration,g,1,0,lognormal,1.92,0.3,,lognormal,2.34,0.3,,lognormal,2.48,0.3,,,,, +C3032.004b,0,Peak Floor Acceleration,g,1,0,lognormal,1.76,0.3,,lognormal,2.26,0.3,,lognormal,2.44,0.3,,,,, +C3032.004c,0,Peak Floor Acceleration,g,1,0,lognormal,1.45,0.3,,lognormal,2.1,0.3,,lognormal,2.34,0.3,,,,, +C3032.004d,0,Peak Floor Acceleration,g,1,0,lognormal,1.31,0.3,,lognormal,2.03,0.3,,lognormal,2.29,0.3,,,,, +C3034.001,0,Peak Floor Acceleration,g,1,0,lognormal,0.6,0.4,,,,,,,,,,,,, +C3034.002,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,,,,,,,,,,,, +D1014.011,0,Peak Floor Acceleration,g,0,0,lognormal,0.39,0.45,0.015126 | 0.161954 | 0.056903 | 0.091484 | 0.032143 | 0.344153 | 0.120919 | 0.008818 | 0.003098 | 0.033171 | 0.011655 | 0.018738 | 0.006583 | 0.070489 | 0.024766,,,,,,,,,,,, +D1014.012,0,Peak Floor Acceleration,g,0,0,lognormal,0.31,0.45,0.015126 | 0.161954 | 0.056903 | 0.091484 | 0.032143 | 0.344153 | 0.120919 | 0.008818 | 0.003098 | 0.033171 | 0.011655 | 0.018738 | 0.006583 | 0.070489 | 0.024766,,,,,,,,,,,, +D1014.021,0,Peak Floor Acceleration,g,0,0,lognormal,0.5,0.3,0.061757 | 0.138448 | 0.059335 | 0.113220 | 0.048523 | 0.108780 | 0.046620 | 0.084629 | 0.036270 | 0.081311 | 0.034847 | 0.066495 | 0.028498 | 0.063887 | 0.027380,,,,,,,,,,,, +D1014.022,0,Peak Floor Acceleration,g,0,0,lognormal,0.3,0.3,0.061757 | 0.138448 | 0.059335 | 0.113220 | 0.048523 | 0.108780 | 0.046620 | 0.084629 | 0.036270 | 0.081311 | 0.034847 | 0.066495 | 0.028498 | 0.063887 | 0.027380,,,,,,,,,,,, +D2021.011a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.6,0.4,,,,,,,,, +D2021.011b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.6,0.4,,,,,,,,, +D2021.012a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.6,0.4,,,,,,,,, +D2021.012b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.6,0.4,,,,,,,,, +D2021.013a,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,lognormal,4.1,0.4,,,,,,,,, +D2021.013b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,,,,,,,,,,,, +D2021.014a,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,lognormal,4.1,0.4,,,,,,,,, +D2021.014b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,,,,,,,,,,,, +D2021.021a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.6,0.4,,,,,,,,, +D2021.022a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.6,0.4,,,,,,,,, +D2021.023a,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,lognormal,4.1,0.4,,,,,,,,, +D2021.023b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D2021.024a,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,lognormal,4.1,0.4,,,,,,,,, +D2021.024b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D2022.011a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2022.011b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2022.012a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2022.012b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2022.013a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2022.013b,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,,,,,,,,,,,, +D2022.014a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2022.014b,1,Peak Floor Acceleration,g,1,0,lognormal,3.0,,,,,,,,,,,,,, +D2022.021a,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.6,,,,,,,,,, +D2022.022a,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.6,,,,,,,,,, +D2022.023a,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,lognormal,4.1,,,,,,,,,, +D2022.023b,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.25,,,,,,,,,, +D2022.024a,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,lognormal,4.1,,,,,,,,,, +D2022.024b,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.25,,,,,,,,,, +D2031.011b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2031.012b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2031.013b,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,,,,,,,,,,,, +D2031.014b,1,Peak Floor Acceleration,g,1,0,lognormal,3.0,,,,,,,,,,,,,, +D2031.021a,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,,,,,,,,,,,, +D2031.021b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2031.022a,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,,,,,,,,,,,, +D2031.022b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2031.023a,1,Peak Floor Acceleration,g,1,0,lognormal,3.0,,,,,,,,,,,,,, +D2031.023b,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,,,,,,,,,,,, +D2031.024a,1,Peak Floor Acceleration,g,1,0,lognormal,3.0,,,,,,,,,,,,,, +D2031.024b,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,,,,,,,,,,,, +D2051.011a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2051.011b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2051.012a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2051.012b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2051.013a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2051.013b,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,,,,,,,,,,,, +D2051.014a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2051.014b,1,Peak Floor Acceleration,g,1,0,lognormal,3.0,,,,,,,,,,,,,, +D2051.021a,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.6,,,,,,,,,, +D2051.021b,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,,,,,,,,,,,, +D2051.022a,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.6,,,,,,,,,, +D2051.023a,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,lognormal,4.1,,,,,,,,,, +D2051.023b,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.25,,,,,,,,,, +D2051.024a,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,lognormal,4.1,,,,,,,,,, +D2051.024b,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.25,,,,,,,,,, +D2061.011a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2061.011b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2061.012a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2061.012b,1,Peak Floor Acceleration,g,1,0,lognormal,1.2,,,lognormal,2.4,,,,,,,,,, +D2061.013a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2061.013b,1,Peak Floor Acceleration,g,1,0,lognormal,2.25,,,,,,,,,,,,,, +D2061.014a,1,Peak Floor Acceleration,g,1,0,lognormal,0.55,,,lognormal,1.1,,,,,,,,,, +D2061.014b,1,Peak Floor Acceleration,g,1,0,lognormal,3.0,,,,,,,,,,,,,, +D2061.021a,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.6,,,,,,,,,, +D2061.022a,1,Peak Floor Acceleration,g,1,0,lognormal,1.5,,,lognormal,2.6,,,,,,,,,, +D2061.023a,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,lognormal,4.1,0.4,,,,,,,,, +D2061.023b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D2061.024a,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,lognormal,4.1,0.4,,,,,,,,, +D2061.024b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3031.011a,0,Peak Floor Acceleration,g,0,0,lognormal,0.2,0.4,,,,,,,,,,,,, +D3031.011b,0,Peak Floor Acceleration,g,0,0,lognormal,0.2,0.4,,,,,,,,,,,,, +D3031.011c,0,Peak Floor Acceleration,g,0,0,lognormal,0.2,0.4,,,,,,,,,,,,, +D3031.011d,0,Peak Floor Acceleration,g,0,0,lognormal,0.2,0.4,,,,,,,,,,,,, +D3031.012a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.012b,0,Peak Floor Acceleration,g,0,0,lognormal,0.43,0.6,,,,,,,,,,,,, +D3031.012c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.012d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.012e,0,Peak Floor Acceleration,g,0,0,lognormal,0.43,0.6,,,,,,,,,,,,, +D3031.012f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.012g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.012h,0,Peak Floor Acceleration,g,0,0,lognormal,0.43,0.6,,,,,,,,,,,,, +D3031.012i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.012j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.012k,0,Peak Floor Acceleration,g,0,0,lognormal,0.43,0.6,,,,,,,,,,,,, +D3031.012l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.013a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.013b,0,Peak Floor Acceleration,g,0,0,lognormal,0.72,0.2,,,,,,,,,,,,, +D3031.013c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.013d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.013e,0,Peak Floor Acceleration,g,0,0,lognormal,0.72,0.2,,,,,,,,,,,,, +D3031.013f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.013g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.013h,0,Peak Floor Acceleration,g,0,0,lognormal,0.72,0.2,,,,,,,,,,,,, +D3031.013i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.013j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.013k,0,Peak Floor Acceleration,g,0,0,lognormal,0.72,0.2,,,,,,,,,,,,, +D3031.013l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.021a,0,Peak Floor Acceleration,g,0,0,lognormal,0.5,0.4,,,,,,,,,,,,, +D3031.021b,0,Peak Floor Acceleration,g,0,0,lognormal,0.5,0.4,,,,,,,,,,,,, +D3031.021c,0,Peak Floor Acceleration,g,0,0,lognormal,0.5,0.4,,,,,,,,,,,,, +D3031.021d,0,Peak Floor Acceleration,g,0,0,lognormal,0.5,0.4,,,,,,,,,,,,, +D3031.022a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.022b,0,Peak Floor Acceleration,g,0,0,lognormal,0.97,0.6,,,,,,,,,,,,, +D3031.022c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.022d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.022e,0,Peak Floor Acceleration,g,0,0,lognormal,0.97,0.6,,,,,,,,,,,,, +D3031.022f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.022g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.022h,0,Peak Floor Acceleration,g,0,0,lognormal,0.97,0.6,,,,,,,,,,,,, +D3031.022i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.022j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.022k,0,Peak Floor Acceleration,g,0,0,lognormal,0.97,0.6,,,,,,,,,,,,, +D3031.022l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.023a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.023b,0,Peak Floor Acceleration,g,0,0,lognormal,1.52,0.4,,,,,,,,,,,,, +D3031.023c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.023d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.023e,0,Peak Floor Acceleration,g,0,0,lognormal,1.52,0.4,,,,,,,,,,,,, +D3031.023f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.023g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.023h,0,Peak Floor Acceleration,g,0,0,lognormal,1.52,0.4,,,,,,,,,,,,, +D3031.023i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3031.023j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3031.023k,0,Peak Floor Acceleration,g,0,0,lognormal,1.52,0.4,,,,,,,,,,,,, +D3031.023l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3032.011a,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.45,0.500000 | 0.500000,,,,,,,,,,,, +D3032.011b,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.45,0.500000 | 0.500000,,,,,,,,,,,, +D3032.011c,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.45,0.500000 | 0.500000,,,,,,,,,,,, +D3032.011d,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.45,0.500000 | 0.500000,,,,,,,,,,,, +D3032.012a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3032.012b,0,Peak Floor Acceleration,g,0,0,lognormal,0.47,0.2,0.500000 | 0.500000,,,,,,,,,,,, +D3032.012c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D3032.012d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3032.012e,0,Peak Floor Acceleration,g,0,0,lognormal,0.47,0.2,0.500000 | 0.500000,,,,,,,,,,,, +D3032.012f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D3032.012g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3032.012h,0,Peak Floor Acceleration,g,0,0,lognormal,0.47,0.2,0.500000 | 0.500000,,,,,,,,,,,, +D3032.012i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D3032.012j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3032.012k,0,Peak Floor Acceleration,g,0,0,lognormal,0.47,0.2,0.500000 | 0.500000,,,,,,,,,,,, +D3032.012l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D3032.013a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3032.013b,0,Peak Floor Acceleration,g,0,0,lognormal,1.84,0.6,0.500000 | 0.500000,,,,,,,,,,,, +D3032.013c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D3032.013d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3032.013e,0,Peak Floor Acceleration,g,0,0,lognormal,1.84,0.6,0.500000 | 0.500000,,,,,,,,,,,, +D3032.013f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D3032.013g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3032.013h,0,Peak Floor Acceleration,g,0,0,lognormal,1.84,0.6,0.500000 | 0.500000,,,,,,,,,,,, +D3032.013i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D3032.013j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3032.013k,0,Peak Floor Acceleration,g,0,0,lognormal,1.84,0.6,0.500000 | 0.500000,,,,,,,,,,,, +D3032.013l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D3041.001a,0,Peak Floor Acceleration,g,1,0,lognormal,1.92,0.5,,lognormal,2.4,0.5,,,,,,,,, +D3041.001b,0,Peak Floor Acceleration,g,1,0,lognormal,1.92,0.5,,lognormal,2.4,0.5,,,,,,,,, +D3041.001c,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,lognormal,2.6,0.4,,,,,,,,, +D3041.001d,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,lognormal,2.6,0.4,,,,,,,,, +D3041.002a,0,Peak Floor Acceleration,g,1,0,lognormal,1.9,0.4,,,,,,,,,,,,, +D3041.002b,0,Peak Floor Acceleration,g,1,0,lognormal,1.9,0.4,,,,,,,,,,,,, +D3041.002c,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,,,,,,,,,,,, +D3041.002d,0,Peak Floor Acceleration,g,1,0,lognormal,2.25,0.4,,,,,,,,,,,,, +D3041.011a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.011b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.011c,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.011d,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.012a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.012b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.012c,0,Peak Floor Acceleration,g,1,0,lognormal,3.75,0.4,,lognormal,4.5,0.4,,,,,,,,, +D3041.012d,0,Peak Floor Acceleration,g,1,0,lognormal,3.75,0.4,,lognormal,4.5,0.4,,,,,,,,, +D3041.021a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.021b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.021c,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.021d,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.022a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.022b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D3041.022c,0,Peak Floor Acceleration,g,1,0,lognormal,3.75,0.4,,lognormal,4.5,0.4,,,,,,,,, +D3041.022d,0,Peak Floor Acceleration,g,1,0,lognormal,3.75,0.4,,lognormal,4.5,0.4,,,,,,,,, +D3041.031a,0,Peak Floor Acceleration,g,1,0,lognormal,1.3,0.4,,,,,,,,,,,,, +D3041.031b,0,Peak Floor Acceleration,g,1,0,lognormal,1.3,0.4,,,,,,,,,,,,, +D3041.032a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,,,,,,,,,,,, +D3041.032b,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,,,,,,,,,,,, +D3041.032c,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,,,,,,,,,,,, +D3041.032d,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,,,,,,,,,,,, +D3041.041a,0,Peak Floor Acceleration,g,1,0,lognormal,1.9,0.4,,,,,,,,,,,,, +D3041.041b,0,Peak Floor Acceleration,g,1,0,lognormal,1.9,0.4,,,,,,,,,,,,, +D3041.101a,0,Peak Floor Acceleration,g,0,0,lognormal,0.5,0.4,,,,,,,,,,,,, +D3041.102a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3041.102b,0,Peak Floor Acceleration,g,0,0,lognormal,1.0,0.6,,,,,,,,,,,,, +D3041.102c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3041.103a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3041.103b,0,Peak Floor Acceleration,g,0,0,lognormal,4.8,0.6,,,,,,,,,,,,, +D3041.103c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D3052.011a,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.4,0.670000 | 0.330000,,,,,,,,,,,, +D3052.011b,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.4,0.670000 | 0.330000,,,,,,,,,,,, +D3052.011c,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.4,0.670000 | 0.330000,,,,,,,,,,,, +D3052.011d,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.4,0.670000 | 0.330000,,,,,,,,,,,, +D3052.013a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3052.013b,0,Peak Floor Acceleration,g,0,0,lognormal,1.54,0.6,0.670000 | 0.330000,,,,,,,,,,,, +D3052.013c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.350000 | 0.150000,,,,,,,,,,,, +D3052.013d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3052.013e,0,Peak Floor Acceleration,g,0,0,lognormal,1.54,0.6,0.670000 | 0.330000,,,,,,,,,,,, +D3052.013f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.350000 | 0.150000,,,,,,,,,,,, +D3052.013g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3052.013h,0,Peak Floor Acceleration,g,0,0,lognormal,1.54,0.6,0.670000 | 0.330000,,,,,,,,,,,, +D3052.013i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.350000 | 0.150000,,,,,,,,,,,, +D3052.013j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3052.013k,0,Peak Floor Acceleration,g,0,0,lognormal,1.54,0.6,0.670000 | 0.330000,,,,,,,,,,,, +D3052.013l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.350000 | 0.150000,,,,,,,,,,,, +D3067.011a,0,Peak Floor Acceleration,g,0,0,lognormal,0.69,0.4,,,,,,,,,,,,, +D3067.012a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D3067.012b,0,Peak Floor Acceleration,g,0,0,lognormal,3.0,0.4,,,,,,,,,,,,, +D3067.012c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D4011.021a,0,Peak Floor Acceleration,g,1,0,lognormal,1.1,0.4,,lognormal,2.4,0.5,,,,,,,,, +D4011.022a,0,Peak Floor Acceleration,g,1,0,lognormal,1.1,0.4,,lognormal,2.4,0.5,,,,,,,,, +D4011.023a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.6,0.4,,,,,,,,, +D4011.024a,0,Peak Floor Acceleration,g,1,0,lognormal,1.9,0.4,,lognormal,3.4,0.4,,,,,,,,, +D4011.031a,0,Peak Floor Acceleration,g,1,0,lognormal,0.75,0.4,,lognormal,0.95,0.4,,,,,,,,, +D4011.032a,0,Peak Floor Acceleration,g,1,0,lognormal,0.75,0.4,,lognormal,0.95,0.4,,,,,,,,, +D4011.033a,0,Peak Floor Acceleration,g,1,0,lognormal,0.95,0.4,,,,,,,,,,,,, +D4011.034a,0,Peak Floor Acceleration,g,1,0,lognormal,1.3,0.4,,,,,,,,,,,,, +D4011.041a,0,Peak Floor Acceleration,g,1,0,lognormal,0.55,0.4,,lognormal,0.95,0.4,,,,,,,,, +D4011.042a,0,Peak Floor Acceleration,g,1,0,lognormal,0.55,0.4,,lognormal,0.95,0.4,,,,,,,,, +D4011.053a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D4011.054a,0,Peak Floor Acceleration,g,1,0,lognormal,1.9,0.4,,lognormal,3.0,0.4,,,,,,,,, +D4011.063a,0,Peak Floor Acceleration,g,1,0,lognormal,0.55,0.4,,lognormal,1.3,0.4,,,,,,,,, +D4011.064a,0,Peak Floor Acceleration,g,1,0,lognormal,1.1,0.4,,lognormal,2.25,0.4,,,,,,,,, +D4011.071a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D4011.072a,0,Peak Floor Acceleration,g,1,0,lognormal,1.5,0.4,,lognormal,2.25,0.4,,,,,,,,, +D4011.073a,0,Peak Floor Acceleration,g,1,0,lognormal,2.6,0.4,,lognormal,3.0,0.4,,,,,,,,, +D4011.074a,0,Peak Floor Acceleration,g,1,0,lognormal,3.75,0.4,,lognormal,4.5,0.4,,,,,,,,, +D5011.011a,0,Peak Floor Acceleration,g,0,0,lognormal,1.01,0.6,,,,,,,,,,,,, +D5011.011b,0,Peak Floor Acceleration,g,0,0,lognormal,1.01,0.6,,,,,,,,,,,,, +D5011.011c,0,Peak Floor Acceleration,g,0,0,lognormal,1.01,0.6,,,,,,,,,,,,, +D5011.011d,0,Peak Floor Acceleration,g,0,0,lognormal,1.01,0.6,,,,,,,,,,,,, +D5011.013a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5011.013b,0,Peak Floor Acceleration,g,0,0,lognormal,3.05,0.5,,,,,,,,,,,,, +D5011.013c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5011.013d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5011.013e,0,Peak Floor Acceleration,g,0,0,lognormal,3.05,0.5,,,,,,,,,,,,, +D5011.013f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5011.013g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5011.013h,0,Peak Floor Acceleration,g,0,0,lognormal,3.05,0.5,,,,,,,,,,,,, +D5011.013i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5011.013j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5011.013k,0,Peak Floor Acceleration,g,0,0,lognormal,3.05,0.5,,,,,,,,,,,,, +D5011.013l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.013a,0,Peak Floor Acceleration,g,0,0,lognormal,0.73,0.45,,,,,,,,,,,,, +D5012.013b,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.013c,0,Peak Floor Acceleration,g,0,0,lognormal,2.5,0.4,,,,,,,,,,,,, +D5012.013d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.021a,0,Peak Floor Acceleration,g,0,0,lognormal,1.28,0.4,,,,,,,,,,,,, +D5012.021b,0,Peak Floor Acceleration,g,0,0,lognormal,1.28,0.4,,,,,,,,,,,,, +D5012.021c,0,Peak Floor Acceleration,g,0,0,lognormal,1.28,0.4,,,,,,,,,,,,, +D5012.021d,0,Peak Floor Acceleration,g,0,0,lognormal,1.28,0.4,,,,,,,,,,,,, +D5012.023a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.023b,0,Peak Floor Acceleration,g,0,0,lognormal,2.4,0.4,,,,,,,,,,,,, +D5012.023c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.023d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.023e,0,Peak Floor Acceleration,g,0,0,lognormal,2.4,0.4,,,,,,,,,,,,, +D5012.023f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.023g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.023h,0,Peak Floor Acceleration,g,0,0,lognormal,2.4,0.4,,,,,,,,,,,,, +D5012.023i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.023j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.023k,0,Peak Floor Acceleration,g,0,0,lognormal,2.4,0.4,,,,,,,,,,,,, +D5012.023l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.031a,0,Peak Floor Acceleration,g,0,0,lognormal,2.16,0.45,,,,,,,,,,,,, +D5012.031b,0,Peak Floor Acceleration,g,0,0,lognormal,2.16,0.45,,,,,,,,,,,,, +D5012.031c,0,Peak Floor Acceleration,g,0,0,lognormal,2.16,0.45,,,,,,,,,,,,, +D5012.031d,0,Peak Floor Acceleration,g,0,0,lognormal,2.16,0.45,,,,,,,,,,,,, +D5012.033a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.033b,0,Peak Floor Acceleration,g,0,0,lognormal,3.05,0.4,,,,,,,,,,,,, +D5012.033c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.033d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.033e,0,Peak Floor Acceleration,g,0,0,lognormal,3.05,0.4,,,,,,,,,,,,, +D5012.033f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.033g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.033h,0,Peak Floor Acceleration,g,0,0,lognormal,3.05,0.4,,,,,,,,,,,,, +D5012.033i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5012.033j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5012.033k,0,Peak Floor Acceleration,g,0,0,lognormal,3.05,0.4,,,,,,,,,,,,, +D5012.033l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.500000,,,,,,,,,,,, +D5092.011a,0,Peak Floor Acceleration,g,0,0,lognormal,1.11,0.6,0.450000 | 0.000000 | 0.450000 | 0.000000 | 0.050000 | 0.000000 | 0.050000,,,,,,,,,,,, +D5092.013a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.013b,0,Peak Floor Acceleration,g,0,0,lognormal,2.32,0.2,0.450000 | 0.000000 | 0.450000 | 0.000000 | 0.050000 | 0.000000 | 0.050000,,,,,,,,,,,, +D5092.013c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.150000 | 0.250000 | 0.100000,,,,,,,,,,,, +D5092.021a,0,Peak Floor Acceleration,g,0,0,lognormal,1.07,0.4,0.500000 | 0.500000,,,,,,,,,,,, +D5092.023a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.023b,0,Peak Floor Acceleration,g,0,0,lognormal,2.7,0.6,0.500000 | 0.500000,,,,,,,,,,,, +D5092.023c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.250000 | 0.250000,,,,,,,,,,,, +D5092.031a,0,Peak Floor Acceleration,g,0,0,lognormal,0.9,0.4,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.031b,0,Peak Floor Acceleration,g,0,0,lognormal,0.9,0.4,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.031c,0,Peak Floor Acceleration,g,0,0,lognormal,0.9,0.4,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.031d,0,Peak Floor Acceleration,g,0,0,lognormal,0.9,0.4,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.032a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.032b,0,Peak Floor Acceleration,g,0,0,lognormal,1.07,0.4,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.032c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.400000 | 0.050000 | 0.050000,,,,,,,,,,,, +D5092.032d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.032e,0,Peak Floor Acceleration,g,0,0,lognormal,1.07,0.4,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.032f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.400000 | 0.050000 | 0.050000,,,,,,,,,,,, +D5092.032g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.032h,0,Peak Floor Acceleration,g,0,0,lognormal,1.07,0.4,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.032i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.400000 | 0.050000 | 0.050000,,,,,,,,,,,, +D5092.032j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.032k,0,Peak Floor Acceleration,g,0,0,lognormal,1.07,0.4,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.032l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.400000 | 0.050000 | 0.050000,,,,,,,,,,,, +D5092.033a,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.033b,0,Peak Floor Acceleration,g,0,0,lognormal,2.0,0.2,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.033c,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.400000 | 0.050000 | 0.050000,,,,,,,,,,,, +D5092.033d,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.033e,0,Peak Floor Acceleration,g,0,0,lognormal,2.0,0.2,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.033f,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.400000 | 0.050000 | 0.050000,,,,,,,,,,,, +D5092.033g,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.033h,0,Peak Floor Acceleration,g,0,0,lognormal,2.0,0.2,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.033i,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.400000 | 0.050000 | 0.050000,,,,,,,,,,,, +D5092.033j,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.700000 | 0.300000,,,,,,,,,,,, +D5092.033k,0,Peak Floor Acceleration,g,0,0,lognormal,2.0,0.2,0.700000 | 0.100000 | 0.100000 | 0.100000,,,,,,,,,,,, +D5092.033l,1,Peak Floor Acceleration,g,0,0,lognormal,,,0.350000 | 0.150000 | 0.400000 | 0.050000 | 0.050000,,,,,,,,,,,, +E2022.001,0,Peak Floor Acceleration,g,0,0,lognormal,1.0,0.4,,,,,,,,,,,,, +E2022.010,0,Peak Floor Acceleration,g,0,0,lognormal,0.4,0.6,,,,,,,,,,,,, +E2022.011,0,Peak Floor Acceleration,g,0,0,lognormal,1.0,0.5,,,,,,,,,,,,, +E2022.012,0,Peak Floor Acceleration,g,0,0,lognormal,0.6,0.6,,,,,,,,,,,,, +E2022.013,0,Peak Floor Acceleration,g,0,0,lognormal,0.25,0.5,,,,,,,,,,,,, +E2022.020,0,Peak Floor Acceleration,g,0,0,lognormal,0.8,0.45,,,,,,,,,,,,, +E2022.021,0,Peak Floor Acceleration,g,0,0,lognormal,2.5,0.5,,,,,,,,,,,,, +E2022.022,0,Peak Floor Acceleration,g,0,0,lognormal,1.0,0.5,,,,,,,,,,,,, +E2022.023,0,Peak Floor Acceleration,g,0,0,lognormal,0.4,0.5,,,,,,,,,,,,, +E2022.102a,0,Peak Floor Velocity,mps,0,0,lognormal,0.724,0.5,,,,,,,,,,,,, +E2022.102b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +E2022.103a,0,Peak Floor Velocity,mps,0,0,lognormal,0.493,0.5,,,,,,,,,,,,, +E2022.103b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +E2022.104a,0,Peak Floor Velocity,mps,0,0,lognormal,0.361,0.5,,,,,,,,,,,,, +E2022.104b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +E2022.105a,0,Peak Floor Velocity,mps,0,0,lognormal,0.29,0.5,,,,,,,,,,,,, +E2022.105b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +E2022.106a,0,Peak Floor Velocity,mps,0,0,lognormal,0.251,0.5,,,,,,,,,,,,, +E2022.106b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +E2022.112a,0,Peak Floor Velocity,mps,0,0,lognormal,1.229,0.5,,,,,,,,,,,,, +E2022.112b,1,Peak Floor Velocity,mps,0,0,lognormal,,,,,,,,,,,,,,, +E2022.114a,0,Peak Floor Velocity,mps,0,0,lognormal,0.498,0.5,,,,,,,,,,,,, +E2022.114b,1,Peak Floor Velocity,mps,0,0,lognormal,,,,,,,,,,,,,,, +E2022.124a,0,Peak Floor Velocity,mps,0,0,lognormal,0.688,0.5,,,,,,,,,,,,, +E2022.124b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +E2022.125a,0,Peak Floor Velocity,mps,0,0,lognormal,0.526,0.5,,,,,,,,,,,,, +E2022.125b,1,Peak Floor Acceleration,g,0,0,lognormal,,,,,,,,,,,,,,, +F1012.001,0,Peak Floor Acceleration,g,0,0,lognormal,0.42,0.4,0.600000 | 0.400000,,,,,,,,,,,, diff --git a/pelicun/resources/fragility_DB_FEMA_P58_2nd.json b/pelicun/resources/fragility_DB_FEMA_P58_2nd.json new file mode 100644 index 000000000..4f6a67526 --- /dev/null +++ b/pelicun/resources/fragility_DB_FEMA_P58_2nd.json @@ -0,0 +1,16492 @@ +{ + "B1031.001": { + "Description": "Bolted shear tab gravity connections", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "Careful inspection and welded repair to any cracks and possible replacement of shear tab if bolt hole deformations are excessive (possible for deeper 6-bolt or deeper shear tabs). Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. ", + "RepairAction": "Careful inspection and welded repair to any cracks and possible replacement of shear tab if bolt hole deformations are excessive (possible for deeper 6-bolt or deeper shear tabs). " + } + }, + "LS2": { + "DS3": { + "Description": "Partial tearing of shear tab and possibility of bolt shear failure (6-bolt or deeper connections).", + "RepairAction": "Repairs will include either welded repair of shear tab or possible complete replacement of shear tab and installation of new bolts. Repairs may require shoring of beam." + } + }, + "LS3": { + "DS4": { + "Description": "Complete separation of shear tab, close to complete loss of vertical load resistance. ", + "RepairAction": "Repair will include complete replacement of shear tab and installation of new bolts. Repairs will require shoring of beam." + } + } + } + }, + "B1031.011a": { + "Description": "Steel Column Base Plates, Column W < 150 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. " + } + }, + "LS2": { + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. ", + "RepairAction": "Depending on the crack trajectory, the repair will range from replacement of a portion of the column or base plate to full replacement of the column base. Replacement will require shoring of column, torch cutting to remove damaged material, and fabrication and field welding to install replacement material." + } + }, + "LS3": { + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base.", + "RepairAction": "Repair would likely involve replacing the entire base plate assembly and most of the column in the story above the base plate." + } + } + } + }, + "B1031.011b": { + "Description": "Steel Column Base Plates, Column 150 plf < W < 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. " + } + }, + "LS2": { + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. ", + "RepairAction": "Depending on the crack trajectory, the repair will range from replacement of a portion of the column or base plate to full replacement of the column base. Replacement will require shoring of column, torch cutting to remove damaged material, and fabrication" + } + }, + "LS3": { + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base.", + "RepairAction": "Repair would likely involve replacing the entire base plate assembly and most of the column in the story above the base plate. " + } + } + } + }, + "B1031.011c": { + "Description": "Steel Column Base Plates, Column W > 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Initiation of crack at the fusion line between the column flange and the base plate weld.", + "RepairAction": "The repair will involve removal of a portion of grade slab, gouging out material surrounding the fracture initiating and re-welding, then repair of slab. " + } + }, + "LS2": { + "DS3": { + "Description": "Propagation of brittle crack into column and/or base plate. ", + "RepairAction": "Depending on the crack trajectory, the repair will range from replacement of a portion of the column or base plate to full replacement of the column base. Replacement will require shoring of column, torch cutting to remove damaged material, and fabrication" + } + }, + "LS3": { + "DS4": { + "Description": "Complete fracture of the column (or column weld) and dislocation of column relative to the base.", + "RepairAction": "Repair would likely involve replacing the entire base plate assembly and most of the column in the story above the base plate. " + } + } + } + }, + "B1031.021a": { + "Description": "Welded column splices, Column W < 150 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. ", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. " + } + }, + "LS2": { + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. ", + "RepairAction": " Repair may not be practically feasible, but would require either realignment or replacement of adjacent column segments and rewelding of splice." + } + } + } + }, + "B1031.021b": { + "Description": "Welded column splices, Column 150 plf < W < 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. ", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. " + } + }, + "LS2": { + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. ", + "RepairAction": " Repair may not be practically feasible, but would require either realignment or replacement of adjacent column segments and rewelding of splice." + } + } + } + }, + "B1031.021c": { + "Description": "Welded column splices, Column W > 300 plf", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.\nNotes: Fracture is not expected where weld has adequate toughness and the maximum weld root stress is below 1.5Fu from column P/A+M/S under story drift using A and S from weld root area. \nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Ductile fracture of the groove weld flange splice. Damage in field is either obscured or deemed to not warrant repair. No repair conducted.", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. Field condition is deemed to not warrant repair by field observation. This Damage State is Mutually Exclusive with DS2. See fragility DS1 and DS2 probabilities." + }, + "DS2": { + "Description": "Ductile fracture of the groove weld flange splice. ", + "RepairAction": "Repair would involve gouging out the material adjacent to the fracture and repairing with a new groove weld. " + } + }, + "LS2": { + "DS3": { + "Description": "DS1 followed by complete failure of the web splice plate and dislocation of the two column segments on either side of the splice. ", + "RepairAction": " Repair may not be practically feasible, but would require either realignment or replacement of adjacent column segments and rewelding of splice." + } + } + } + }, + "B1033.001a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.001b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.001c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.002a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.002b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.002c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.003a": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.003b": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.003c": { + "Description": "Special Concentric Braced Frame w WF braces, balanced design criteria, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.011a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.011b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.011c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.012a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.012b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.012c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.013a": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.013b": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.013c": { + "Description": "Special Concentric Braced Frame w HSS braces, balanced design criteria, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. ", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.021a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.021b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.021c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.022a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.022b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.022c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.023a": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.023b": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.023c": { + "Description": "Special Concentric Braced Frame w HSS braces, tapered gusset plates & design to AISC minimum standard, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. Tapered gusset plates typically sustain greater damage and there is a higher probability that replacement will be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.031a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.031b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.031c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.032a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.032b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.032c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.033a": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace w < 40 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.033b": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.033c": { + "Description": "Special Concentric Braced Frame, design to AISC minimum standards, X Brace, Brace w > 100 PLF", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of brace in excess of 2 times brace depth . Yielding and out-of-plane deformation of gusset . Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture . Significant yielding and local buckling in beams and columns adjacent to gusset . ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + }, + "LS4": { + "DS4": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibly local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and or gusset have fractured and require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.041a": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.041b": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.041c": { + "Description": "Special Concentric Braced Frame w double angle braces, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.042a": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.042b": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.042c": { + "Description": "Special Concentric Braced Frame w double angle braces, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.043a": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.043b": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.043c": { + "Description": "Special Concentric Braced Frame w double angle braces, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC minimum SCBF criteria. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual buckling of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace has lost significant axial capacity, and replacement braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.051a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.051b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.051c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.052a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.052b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.052c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.053a": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.053b": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.053c": { + "Description": "Ordinary Concentric Braced Frame w compact braces, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of the brace has begun but does not exceed the depth of the brace. Initial yielding of the gusset has begun. Yielding has initiated in framing at gusset plates but no buckling has occurred. Residual deformation of the brace has occurred but is barely noticeable to the naked eye and does not exceed half the brace depth. Residual drift is slight.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Brace has buckled but residual displacement does not exceed two times brace depth. Brace has not fractured. Gusset plate exhibits extensive yielding. Yielding extends well into the members.", + "RepairAction": "Replace brace. Gusset plate must be replaced 50% of the time. Heat straightening of deformed beams and columns may be required." + } + }, + "LS3": { + "DS3": { + "Description": "Brace has fractured. Gusset plate has torn, possibly completely free of framing. Local buckling of flanges and web of framing members. Bolt fractures in beam-column connections.", + "RepairAction": "Replace brace. Gusset plate must be replaced 90% of the time. Replacement of portions (deformed flanges, webs) of permanently deformed beams and columns likely required." + } + } + } + }, + "B1033.061a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.061b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.061c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.062a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.062b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.062c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.063a": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.063b": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.063c": { + "Description": "Ordinary Concentric Braced Frame, braces design to ductile slenderness limits, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to AISC OCBF criteria. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Buckling of brace in excess of the brace depth. Initiation of yielding and out-of-plane deformation of the gusset. Initiation of cracking of welds of gusset. Initiation of yielding in beams and columns adjacent to gusset.", + "RepairAction": "Brace damage is largely aesthetic. Heat straightening may be desirable but replacement would be for aesthetic reasons. Gusset has minor loss of strength and stiffness and straightening or repair may be desirable aesthetic reasons." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of brace in excess of 2 time brace depth. Yielding and out-of-plane deformation of gusset. Cracking and tearing of welds and gussets adjacent to welds but crack length is less than critical for fracture. Significant yielding and local buckling in beams and columns adjacent to gusset. ", + "RepairAction": "Brace has lost significant axial capacity, and replacement of braces is likely required. The gusset plate may have significant deformation and replacement may also be needed. Local beam and column yielding has occurred and straightening may be desirable for aesthetic reasons." + } + }, + "LS3": { + "DS3": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Nearly total loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed" + } + } + } + }, + "B1033.071a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.071b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.071c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.072a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.072b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.072c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, Single Diagonal Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.073a": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace w < 40 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.073b": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace 41 PLF < w < 99 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.073c": { + "Description": "Braced frame, design for factored loads, no additional seismic detailing, X Brace, Brace w > 100 PLF", + "Comments": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.\nNotes: Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.101a": { + "Description": "Steel Buckling Restrained Brace (BRB), Chevron Brace, Weight of brace < 40 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.101b": { + "Description": "Steel Buckling Restrained Brace (BRB), Chevron brace, Weight of brace > 41 plf and < 99 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.101c": { + "Description": "Steel Buckling Restrained Brace (BRB), Chevron Brace, Weight of brace > 100 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.111a": { + "Description": "Steel Buckling Restrained Brace (BRB), Single Diagonal Brace, Weight of brace < 40 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.111b": { + "Description": "Steel Buckling Restrained Brace (BRB), Single Diagonal brace, Weight of brace > 41 plf and < 99 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1033.111c": { + "Description": "Steel Buckling Restrained Brace (BRB), Single Diagonal Brace, Weight of brace > 100 plf.", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of brace or gusset. Buckling of gusset. Severe yielding of beams and columns adjacent to the gusset with possibility of local buckling and cracking in the yielded areas. Severe loss of lateral resistance.", + "RepairAction": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed." + } + } + } + }, + "B1035.001": { + "Description": "Post-Northridge RBS connection with welded web, beam one side of column only, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + } + }, + "LS2": { + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + } + }, + "LS3": { + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + } + }, + "B1035.002": { + "Description": "Post-Northridge RBS connection with welded web, beam one side of column only, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + } + }, + "LS2": { + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + } + }, + "LS3": { + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + } + }, + "B1035.011": { + "Description": "Post-Northridge RBS connection with welded web, beams both sides of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + } + }, + "LS2": { + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + } + }, + "LS3": { + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + } + }, + "B1035.012": { + "Description": "Post-Northridge RBS connection with welded web, beams both sides of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + } + }, + "LS2": { + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + } + }, + "LS3": { + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + } + }, + "B1035.021": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beam one side, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + } + }, + "LS2": { + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + } + }, + "LS3": { + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + } + }, + "B1035.022": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beam one side, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + } + }, + "LS2": { + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + } + }, + "LS3": { + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + } + }, + "B1035.031": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beams both sides, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + } + }, + "LS2": { + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + } + }, + "LS3": { + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + } + }, + "B1035.032": { + "Description": "Post-Northridge welded steel moment connection other than RBS, beams both sides, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local beam flange and web buckling. ", + "RepairAction": "The likely repair state is heat straightening of the buckled flanges and web. Repair and replace partitions at connection." + } + }, + "LS2": { + "DS2": { + "Description": "DS1 plus lateral-torsional distortion of beam in hinge region. ", + "RepairAction": "Repair will necessitate removal and replacement of distorted and or fractured portion of beam. Repair and replace partitions at connection." + } + }, + "LS3": { + "DS3": { + "Description": "Low-cycle fatigue fracture in buckled region of RBS.", + "RepairAction": "Repair will necessitate removal and replacement of distorted and/or fractured portion of beam. Repair and replace partitions at connection." + } + } + } + }, + "B1035.041": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam one side of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", + "RepairAction": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS1, repairs to column will be necessary. Cover plate, patch, or replace damaged column flange at connection." + } + }, + "LS2": { + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", + "RepairAction": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal and replacement of a portion of the floor slab above the weld." + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange." + } + }, + "LS3": { + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", + "RepairAction": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced." + } + } + } + }, + "B1035.042": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam one side of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", + "RepairAction": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS1, repairs to column will be necessary. Cover plate, patch, or replace damaged column flange at connection." + } + }, + "LS2": { + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", + "RepairAction": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal and replacement of a portion of the floor slab above the weld." + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange." + } + }, + "LS3": { + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", + "RepairAction": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced." + } + } + } + }, + "B1035.051": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam both sides of column, beam depth <= W27", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", + "RepairAction": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS1, repairs to column will be necessary. Cover plate, patch, or replace damaged column flange at connection." + } + }, + "LS2": { + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", + "RepairAction": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal and replacement of a portion of the floor slab above the weld." + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange." + } + }, + "LS3": { + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", + "RepairAction": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced." + } + } + } + }, + "B1035.052": { + "Description": "Pre-Northridge WUF-B beam-column joint, beam both sides of column, beam depth >= W30", + "Comments": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.\nAuthor: Greg Deierlein", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", + "RepairAction": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. Repair and replace partitions at connection." + }, + "DS2": { + "Description": "Similar to DS1, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS1, repairs to column will be necessary. Cover plate, patch, or replace damaged column flange at connection." + } + }, + "LS2": { + "DS3": { + "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", + "RepairAction": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal and replacement of a portion of the floor slab above the weld." + }, + "DS4": { + "Description": "Similar to DS3, except that fracture propagates into column flanges.", + "RepairAction": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange." + } + }, + "LS3": { + "DS5": { + "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", + "RepairAction": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced." + } + } + } + }, + "B1035.061a": { + "Description": "EBF Shear Link, no floor beams, link w < 100 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage to concrete slab above the link beam.", + "RepairAction": "Replace concrete slab and finishes in 400 SF at EBF link." + } + }, + "LS2": { + "DS2": { + "Description": "Web local buckling, flange local buckling.", + "RepairAction": "Heat straightening of buckled elements." + } + }, + "LS3": { + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange.", + "RepairAction": "Replace EBF link." + } + } + } + }, + "B1035.061b": { + "Description": "EBF Shear Link, no floor beams, link w < 200 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage to concrete slab above the link beam.", + "RepairAction": "Replace concrete slab and finishes in 400 SF at EBF link." + } + }, + "LS2": { + "DS2": { + "Description": "Web local buckling, flange local buckling.", + "RepairAction": "Heat straightening of buckled elements." + } + }, + "LS3": { + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange.", + "RepairAction": "Replace EBF link." + } + } + } + }, + "B1035.062a": { + "Description": "EBF Shear Link, with floor beams, link w < 100 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage to concrete slab above the link beam.", + "RepairAction": "Replace concrete slab and finishes in 400 SF at EBF link." + } + }, + "LS2": { + "DS2": { + "Description": "Web local buckling, flange local buckling.", + "RepairAction": "Heat straightening of buckled elements." + } + }, + "LS3": { + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange.", + "RepairAction": "Replace EBF link." + } + } + } + }, + "B1035.062b": { + "Description": "EBF Shear Link, with floor beams, link w < 200 PLF", + "Comments": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage to concrete slab above the link beam.", + "RepairAction": "Replace concrete slab and finishes in 400 SF at EBF link." + } + }, + "LS2": { + "DS2": { + "Description": "Web local buckling, flange local buckling.", + "RepairAction": "Heat straightening of buckled elements." + } + }, + "LS3": { + "DS3": { + "Description": "Initiation of fracture in the link beam and link flange.", + "RepairAction": "Replace EBF link." + } + } + } + }, + "B1041.001a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.001b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.002a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.002b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.003a": { + "Description": "ACI 318 SMF , Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.003b": { + "Description": "ACI 318 SMF , Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.011a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.011b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.012a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.012b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.013a": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.013b": { + "Description": "MF with SMF-conforming beam and column flexural and confinement reinforcement but weak joints , Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-conforming SMF, joint shear damage, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Column Pu < 0.6f'cAg, (3) Column flexural response with HIGH ductility, (4) Beam compliant transverse reinforcing with low beam V/bwd(f'c)^0.5, (5) Joints with compliant transverse reinforcing details with spacing < d(column)/2 and Joint V/Vn < 1.2. Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.021a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.021b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.022a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.022b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.023a": { + "Description": "ACI 318 IMF, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.023b": { + "Description": "ACI 318 IMF, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 IMF, joint shear damage or failure, beam or column flexure-shear response. Meets the following requirements: (1) Column Pu < 0.3Agf'c Costing is on a per joint basis.\nNotes: Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + }, + "DS4": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary)." + } + } + } + }, + "B1041.031a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.031b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.032a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.032b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.033a": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.033b": { + "Description": "ACI 318 OMF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary)." + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.041a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.041b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.042a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.042b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.043a": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.043b": { + "Description": "ACI 318 OMF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) Beam Vn > Veq, (3) Column Vn > Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly Residual concrete crack widths exceed 0.06 in. (1.5 mm). Column exhibit residual crack widths that require epoxy injection.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Spalling: slabs, beams, joints or possibly columns exhibit spalling of cover concrete that exposes transverse but not longitudinal reinforcing steel. Spalling of cover concrete possibly exposing transverse reinforcement.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement OR strength loss initiates in laboratory testing. exhibit concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.051a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary." + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.051b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.052a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.052b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove\ndamaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.053a": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove\ndamaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.053b": { + "Description": "ACI 318 OMF with weak beams and weak joints, beam flexural or shear response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, beam flexure-shear or shear failure, beam flexural response. Meets the following requirements: (1) Beam Vn < Veq. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.061a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.061b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.062a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.062b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.063a": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.063b": { + "Description": "ACI 318 OMF with weak columns, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column shear or flexural-shear failure, column flexural response. Meets the following requirements: (1) Column Pu < 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.071a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.071b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.072a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.072b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.073a": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.073b": { + "Description": "ACI 318 OMF weak columns w/ high axial load, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "ACI318 OMF, column flexure, flexural-shear, or shear failure at high axial load. Column flexural-shear response. Meets the following requirements: (1) Column Pu > 0.6Agf'c, (2) Column Vn < Veq Costing is on a per joint basis.\nNotes: This fragility has been changed to match B1041.121. ASCE6 is closest to column high axial OMF.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm).\nColumn exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.081a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.081b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.082a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.082b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.083a": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.083b": { + "Description": "Non-conforming MF with weak joints and beam flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, beam flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam > 1.2, (2) ASCE41 non-compliant joint transverse reinforcing and or joint V/Vn > 1.2, (3) IGH beam ductility per ASCE41-06 Table 6-7i, (4) Compliant beam transverse reinforcing with LOW beam V / bwd(f'c)^0.5. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of\none level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement or column longitudinal reinforcement in the joint. Crushing of beam or joint core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.091a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.091b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.092a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.092b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.093a": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.093b": { + "Description": "Non-conforming MF with weak joints and column flexural response, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, joint shear failure, column flexural response. Meets the following requirements: (1) Sum Mcol / Sum Mbeam < 0.8, (2) [...TBD\u2026], (3) Non-compliant column transverse reinforcement and or joint V/Vn > 1.2 Costing is on a per joint basis.\nNotes: This fragility is same as B1041.061. Closest match available.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinf. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.101a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.101b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.102a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.102b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.103a": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.103b": { + "Description": "Non-conforming MF, weak beams and strong joints, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, beam shear failure, beam flexural response. Meets the following requirements: (1) Beam with HIGH V/bwd(f'c)^0.5 or non-compliant transverse beam reinforcing. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Beams exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Beams exhibit residual crack widths > 0.06 in. Spalling of beam cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of beam core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.111a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.111b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.112a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.112b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.113a": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.113b": { + "Description": "Non-conforming MF, weak columns, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure-shear or shear failure, column flexural response. Meets the following requirements: (1) [\u2026TBD\u2026] Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Columns exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes column transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + }, + "LS3": { + "DS3": { + "Description": "Columns exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinforcing requiring replacement may occur.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.121a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.121b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.122a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.122b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.123a": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.123b": { + "Description": "Non-conforming MF, weak columns and strong joints, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, column flexure, flexure-shear, or shear failure, column flexural response. Meets the following requirements: (1) Column Pu > 0.6f'cAg, (2) Column Vn < Veq Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Concrete Cracking: beams, joints or possibly. Residual concrete crack widths exceed 0.06in. (1.5 mm). Column exhibits residual crack widths that require epoxy injection.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Concrete Crushing: slabs, beams or joints. Spalling of beam, column or joint cover concrete exposes longitudinal reinforcement or strength loss initiates in laboratory testing.\nExhibits concrete spalling that exposes longitudinal steel or crushing of core concrete.\n", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.131a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 24\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.131b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 24\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.132a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.132b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 24\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.133a": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 36\" x 36\", Beam one side", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1041.133b": { + "Description": "Non-conforming MF with inadequate development of reinforcing, Conc Col & Bm = 36\" x 36\", Beam both sides", + "Comments": "Non-Conforming MF, non-ductile failure, non-ductile response. May exhibit the following: (1) Splice detailing or length inadequate per ASCE 41-06 Table 6-7iii, (2) Beam or column reinforcing spliced at the face of joint, (3) Beam longitudinal steel discontinuous through joint per ASCE41-06 Table 6-7iii. Costing is on a per joint basis.\nAuthor: Laura Lowes", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.\n" + } + }, + "LS2": { + "DS2": { + "Description": "Damage is concentrated in beams, columns or joints depending on location of non-compliant detail. Beams, columns or joints exhibit residual crack widths > 0.06 in. Spalling of column cover concrete exposes a significant length of column longitudinal reinforcement. Crushing of column core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. ", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n" + } + } + } + }, + "B1042.001a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.001b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.002a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.002b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam < 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.011a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.011b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.012a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.012b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam > 16\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.021a": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 1.0 and 2.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.021b": { + "Description": "Concrete link beam, diagonally reinforced, aspect ratio between 2.0 and 4.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.022a": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 1.0 and 2.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1042.022b": { + "Description": "Concrete link beam, conventionally reinforced, aspect ratio between 2.0 and 4.0, beam > 24\" wide and depth < 30\"", + "Comments": "None\nAuthor: John Wallace", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Residual cracks no greater than 1/16 inch. Cracks are mainly at the beam to wall interface, some limited flexural cracking.", + "RepairAction": "Epoxy inject cracks (200 to 240 inches in length)." + } + }, + "LS2": { + "DS2": { + "Description": "Residual cracks greater than 1/8 inch and minor spalling of concrete.", + "RepairAction": "Epoxy inject cracks (600 to 720 inches) and slab (300 inches), replace spalled concrete." + } + }, + "LS3": { + "DS3": { + "Description": "Significant strength degradation (<0.8Vn), buckling or fracture of diagonal reinforcing, crushing of concrete.", + "RepairAction": "Chip away damaged concrete, attached mechanical couplers to the diagonal bars still embedded in the wall, replace damaged or fractured reinforcing. Replace damaged concrete. " + } + } + } + }, + "B1044.001": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.002": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain 16' high to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.003": { + "Description": "Rectangular low aspect ratio concrete walls 8\" or less thick single curtain 25' high to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.011": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of up to 15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.012": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of 16' to 24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.013": { + "Description": "Rectangular low aspect ratio concrete walls 8\"-16\" double curtain; with heights of 24' to 40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.021": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights up to 15' ", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.022": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights 16' - 24' ", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.023": { + "Description": "Rectangular low aspect ratio concrete walls 18\"-24\" thick with double curtain and heights 25' - 40' ", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracks with maximum widths greater than 0.04 in but less than 0.12 in.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "(1) Relocate office eqpt & furniture within 6 ft. of wall, both sides. Install protective covers on floor finishes & adjacent curtain wall system. (2) Remove arch. finishes on wall, both sides. (3) Relocate MEP systems within 6 ft. of wall. (4) Prepare & inject grout 330 ft. of crack per 100 ft2 of wall. (5) Remove 15 ft2 per 100 ft2 of wall & 10 1-ft. long sections of #8 buckled vert. rebar. (6) Replace buckled rebar with new rebar, attach to exposed ends of (E) rebar with mech splices; provide 8 #4 seismic ties at 4 in. oc, ea end of wall; re-bend 16 horiz. rebar in wall around new rebar. (7) Install formwork & cast 5ksi concrete into pockets cut in step 5. (8) Strip forms, clean-up, reinstall/return office eqpt., finishes, furniture & MEP." + } + }, + "LS3": { + "DS3": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.031": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.032": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.033": { + "Description": "Low-rise reinforced concrete walls with return flanges, less than 8\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.041": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.042": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.043": { + "Description": "Low-rise reinforced concrete walls with return flanges, 8\" to 16\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.051": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick\" up to 15' high", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.052": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick, 16' to 24' high", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.053": { + "Description": "Low-rise reinforced concrete walls with return flanges, 17\" to 24\" thick, 25' to 40' high", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.061": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.062": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.063": { + "Description": "Low rise reinforced concrete walls with boundary columns, less than 8\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.071": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.072": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.073": { + "Description": "Low rise reinforced concrete walls with boundary columns, 8\" to 16\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.081": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height <15'", + "Comments": "Costing for each 144 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.082": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height between 16'-24'", + "Comments": "Costing for each 400 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "400 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.083": { + "Description": "Low rise reinforced concrete walls with boundary columns, 17\"-24\" thick, height between 24'-40'", + "Comments": "Costing for each 900 ft^2 Wall Panel, Orthogonal web reinforcement, f'c > 2500 psi, P/(A*f'c) <= 0.2\nNotes: Full repair description does not fully fit on sheet - consider shortening. Description will fit in PACT.\nAuthor: Andrew Whittaker", + "SuggestedComponentBlockSize": "900 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Crushed core concrete; localized concrete cracking with widths greater than 0.12 in; buckling of vertical rebar.", + "RepairAction": "Remove furnishings, ceilings and mechanical, electrical and plumping systems (as necessary) 5 feet either side of damaged area. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumping systems (as necessary)." + } + }, + "LS2": { + "DS2": { + "Description": "Sliding of the wall resulting in large residual displacement; distributed concrete cracking with widths greater than 0.12 in; fracture of rebar.", + "RepairAction": "(1) Relocate eqpt.& furniture within 10 ft. of wall, both sides. Install protection on floor & adjacent walls. (2) Remove wall finishes, both sides. (3) Relocate MEP within 10 ft. of wall. (4) Remove damaged wall in 5-ft.lengths. (5) Install bars: a. 12#9 A706 bars in bz ea. end; mech splices to (E) ; b. #4 A706 dbl sets of seismic ties at 4 in. oc ea bz; c. #4 A706 bar at 6 in. oc, ewef; lap new vert. bars to (E) at top of wall; drill & epoxy bars into wall/fdn at 6 in. oc to match new rebar above. Anchor horiz. Bars in bz with seismic hks or lap 24 in. with (E) horiz. bars. (6) Form wall. Cast 5ksi concrete in 3-ft. lifts; with 1-in. top gap for grout day after casting. (7) Remove forms, clean-up & reinstall/return eqpt, finishes, furniture & MEP." + } + } + } + }, + "B1044.091": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1044.092": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1044.093": { + "Description": "Slender Concrete Wall, 12\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1044.101": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1044.102": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1044.103": { + "Description": "Slender Concrete Wall, 18\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1044.111": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 15' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1044.112": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 20' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1044.113": { + "Description": "Slender Concrete Wall, 30\" thick, 12' high, 30' long", + "Comments": "Slender concrete shear wall with aspect ratio greater than or equal to 2.0. Costing assumes a 144 ft^2 wall panel.", + "SuggestedComponentBlockSize": "144 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spalling of cover, vertical cracks greater than 1/16 inch.", + "RepairAction": "Epoxy inject cracks and patch spalled concrete." + } + }, + "LS2": { + "DS2": { + "Description": "Exposed longitudinal reinforcing.", + "RepairAction": "Shore wall, remove all concrete in damaged regions, replace concrete. " + } + }, + "LS3": { + "DS3": { + "Description": "Core concrete damage, buckled reinforcing, fractured reinforcing, shear failure, web failure, bond slip", + "RepairAction": "Replace wall or reinforce with R/C jacket if possible. Shore floor and wall, remove damaged concrete and steel within one development length of damaged region, replace removed concrete and steel." + } + } + } + }, + "B1049.001a": { + "Description": "Reinforced concrete flat slabs- columns without shear reinforcing 0 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + } + }, + "LS2": { + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + } + }, + "B3031.001b": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 10 ft, replace with masonry", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + } + }, + "LS2": { + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + } + }, + "B3031.001c": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 15 ft, replace with masonry", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + } + }, + "LS2": { + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + } + }, + "B3031.002a": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 5 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + } + }, + "LS2": { + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + } + }, + "B3031.002b": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 10 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + } + }, + "LS2": { + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + } + }, + "B3031.002c": { + "Description": "Masonry Chimney - unreinforced, non industrial, above roof 15 ft, replace with framing", + "Comments": "Demand parameter shall be defined as the first floor peak floor acceleration. Unreinforced masonry chimney as a component of wood frame buildings. Includes firebox and chimney, excludes exterior veneer or ornamentation. May include chimneys where the quality of reinforcing is unknown. For multiple story buildings enter the chimney fragility once at the first floor, do not specify this fragility at subsequent elevated floors.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. ", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Rebuild above break or replace entire chimney.\nAddl comments (edit or delete as necessary): Rebuilding with masonry will restore the chimney to its pre-earthquake condition. Some jurisdictions prohibit unreinforced reconstruction and require either replacement of the damaged portion of the chimney with a metal flue within wood frame chase or a complete removal of the existing fireplace and chimney with replacement with a code compliant reinforced masonry design. \nToppled chimney may cause damage to adjacent structure. " + } + }, + "LS2": { + "DS2": { + "Description": "Toppling of all or a portion of the chimney.", + "RepairAction": "Rebuild above break or replace entire chimney." + } + } + } + }, + "B3041.001": { + "Description": "Masonry Parapet - unreinforced, unbraced", + "Comments": "Unreinforced and unbraced masonry parapet as a component of a masonry building. Parapet height / width of approximately 3. Costing based upon repair of 3ft tall x 10ft segment.\nConstruction Quality: Normal\nSeismic Installation Conditions: All", + "SuggestedComponentBlockSize": "10 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracking with offset > 1/16\"", + "RepairAction": "Replace and reinforce" + } + }, + "LS2": { + "DS2": { + "Description": "Toppling of all or portion of parapet.", + "RepairAction": "Replace and reinforce" + } + } + } + }, + "C1011.001a": { + "Description": "Wall Partition, Type: Gypsum with metal studs, Full Height, Fixed Below, Fixed Above", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Screw pop-out, cracking of wall board, warping or cracking of tape, slight crushing of wall panel at corners.", + "RepairAction": "Retape joints, paste and repaint. May require cutting and replacing corner sections of board. Repair 5% wallboard, 10% retape, 25% repaint." + } + }, + "LS2": { + "DS2": { + "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners). Moderate corner gap openings, bending of boundary studs.", + "RepairAction": "Remove and replace 10% of wall board (both sides), retape and paste 25% of wall, paint 50% of wall. Replace boundary studs of approximately 5 intersections per 100 ft of wall length." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of studs and tearing of tracks. Tearing or bending of top track, tearing at corners with transverse walls, large gap openings, walls displaced.", + "RepairAction": "Remove and replace 50% of length of metal stud wall, 50% of both sides of the gypsum, and any embedded utilities. Retape and paste as required. Repaint 100%." + } + } + } + }, + "C1011.001b": { + "Description": "Wall Partition, Type: Gypsum with metal studs, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Screw pop-out, cracking of wall board, warping or cracking of tape, slight crushing of wall panel at corners.", + "RepairAction": "Retape joints, paste and repaint. May require cutting and replacing corner sections of board. Repair 5% wallboard, 10% retape, 25% repaint." + } + }, + "LS2": { + "DS2": { + "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners). Moderate corner gap openings, bending of boundary studs.", + "RepairAction": "Remove and replace 10% of wall board (both sides), retape and paste 25% of wall, paint 50% of wall. Replace boundary studs of approximately 5 intersections per 100 ft of wall length." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of studs and tearing of tracks. Tearing or bending of top track, tearing at corners with transverse walls, large gap openings, walls displaced.", + "RepairAction": "Remove and replace 50% of length of metal stud wall, 50% of both sides of the gypsum, and any embedded utilities. Retape and paste as required. Repaint 100%." + } + } + } + }, + "C1011.001c": { + "Description": "Wall Partition, Type: Gypsum with metal studs, Full Height, Fixed Below, Slip Track Above with returns", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Screw pop-out, cracking of wall board, warping or cracking of tape, slight crushing of wall panel at corners.", + "RepairAction": "Retape joints, paste and repaint. May require cutting and replacing corner sections of board. Repair 5% wallboard, 10% retape, 25% repaint." + } + }, + "LS2": { + "DS2": { + "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners). Moderate corner gap openings, bending of boundary studs.", + "RepairAction": "Remove and replace 10% of wall board (both sides), retape and paste 25% of wall, paint 50% of wall. Replace boundary studs of approximately 5 intersections per 100 ft of wall length." + } + }, + "LS3": { + "DS3": { + "Description": "Buckling of studs and tearing of tracks. Tearing or bending of top track, tearing at corners with transverse walls, large gap openings, walls displaced.", + "RepairAction": "Remove and replace 50% of length of metal stud wall, 50% of both sides of the gypsum, and any embedded utilities. Retape and paste as required. Repaint 100%." + } + } + } + }, + "C1011.001d": { + "Description": "Wall Partition, Type: Gypsum with metal studs, Full Height, Fixed Below, Slip Track Above w/o returns (friction connections)", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Screw pop-out, cracking of wall board, warping or cracking of tape, slight crushing of wall panel at corners.", + "RepairAction": "Retape joints, paste and repaint. May require cutting and replacing corner sections of board. Repair 5% wallboard, 10% retape, 25% repaint." + } + }, + "LS2": { + "DS2": { + "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners). Moderate corner gap openings, bending of boundary studs.", + "RepairAction": "Remove and replace 10% of wall board (both sides), retape and paste 25% of wall, paint 50% of wall. Replace boundary studs of approximately 5 intersections per 100 ft of wall length." + } + } + } + }, + "C1011.011a": { + "Description": "Wall Partition, Type: Gypsum with wood studs, Full Height, Fixed Below, Fixed Above", + "Comments": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Cracking of paint over fasteners or joints.", + "RepairAction": "Gypsum wallboard repaired by replacing the tape along the seam of two adjacent panels, applying new joint compound, sanding, and repainting." + } + }, + "LS2": { + "DS2": { + "Description": "Local and global buckling out-of-plane and crushing of gypsum wallboards. Studs are typically not damaged by failure of the gypsum wallboard.", + "RepairAction": "Replace 25 feet of the affected panel along with the application of new tape, joint compound, followed by sanding and repainting. Studs are not damaged." + }, + "DS3": { + "Description": "Local and global buckling out-of-plane and crushing of gypsum wallboards. Studs are typically not damaged by failure of the gypsum wallboard.", + "RepairAction": "Replace 100 feet of the affected panel along with the application of new tape, joint compound, followed by sanding and repainting. Studs are not damaged." + } + } + } + }, + "C2011.001a": { + "Description": "Prefabricated steel stair with steel treads and landings with seismic joints that accommodate drift.", + "Comments": "Flexible stair with seismic interstory slip joint. Steel prefab stringers, steel or concrete filled pan treads.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Non structural damage, local steel yielding.", + "RepairAction": "Patch, paint." + } + }, + "LS2": { + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Buckling of steel, weld cracking.", + "RepairAction": "Removal and replacement of damaged components. Field repair of damage (such as welding). Repair finsihes." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. Connection and or weld fracture.", + "RepairAction": "Replace stair and handrail. Repair and replace affected soffits and floor finishes." + } + } + } + }, + "C2011.001b": { + "Description": "Prefabricated steel stair with steel treads and landings with no seismic joint.", + "Comments": "Flexible stair without seismic interstory slip joint. Steel prefab stringers, steel or concrete filled pan treads.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Confirm median demand and dispersion values", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Non structural damage, local steel yielding.", + "RepairAction": "Patch, paint." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of steel, weld cracking.", + "RepairAction": "Removal and replacement of damaged components. Field repair of damage (such as welding). Repair finsihes." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. Connection and or weld fracture.", + "RepairAction": "Replace stair and handrail. Repair and replace affected soffits and floor finishes." + } + } + } + }, + "C2011.011a": { + "Description": "Non-monolithic precast concrete stair assembly with concrete stringers and treads with seismic joints that accommodate drift.", + "Comments": "Rigid stair with seismic interstory drift joint. Precast concrete stair.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Non structural damage, local concrete cracking, localized concrete spalling, localized rebar yielding.", + "RepairAction": "Patch, paint, epoxy injection. Repair finishes." + } + }, + "LS2": { + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Extensive concrete cracking, concrete crushing, buckling of rebar.", + "RepairAction": "Remove damaged components, install replacement components." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. Extensive concrete crushing, connection failure.", + "RepairAction": "Replace stair and handrail. Repair and replace affected soffits and floor finishes." + } + } + } + }, + "C2011.011b": { + "Description": "Non-monolithic precast concrete stair assembly with concrete stringers and treads with no seismic joint.", + "Comments": "Rigid stair without seismic interstory drift joint. Precast concrete stair.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Confirm median demand and dispersion values. Base document noted that there was insufficient data to establish median demand or dispersion values. The median demand and dispersion values listed are from a best fit approximation of the data performed by MKA.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Non structural damage, local concrete cracking, localized concrete spalling, localized rebar yielding.", + "RepairAction": "Patch, paint, epoxy injection. Repair finishes." + } + }, + "LS2": { + "DS2": { + "Description": "Structural damage but live load capacity remains intact. Extensive concrete cracking, concrete crushing, buckling of rebar.", + "RepairAction": "Remove damaged components, install replacement components." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. Extensive concrete crushing, connection failure.", + "RepairAction": "Replace stair and handrail. Repair and replace affected soffits and floor finishes." + } + } + } + }, + "C2011.021a": { + "Description": "Monolithic cast-in-place and precast concrete stairs with seismic joints that accommodate drift - replace in kind if replacement is required.", + "Comments": "Cast in place concrete stair, with seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling", + "RepairAction": "Protect surrounding space, epoxy inject cracks, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS2": { + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing", + "RepairAction": "Protect floor, cut out damaged areas, repair buckled rebar, patch / cast concrete, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + } + }, + "C2011.021b": { + "Description": "Monolithic cast-in-place and precast concrete stairs with no seismic joints - replace in kind if replacement is required.", + "Comments": "Cast in place concrete stair, no seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling", + "RepairAction": "Protect surrounding space, epoxy inject cracks, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS2": { + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing", + "RepairAction": "Protect floor, cut out damaged areas, repair buckled rebar, patch / cast concrete, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + } + }, + "C2011.021c": { + "Description": "Monolithic cast-in-place and precast concrete stairs with seismic joints that accommodate drift - replace with prefabricated steel stair if replacement is required.", + "Comments": "Cast in place concrete stair, with seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling", + "RepairAction": "Protect surrounding space, epoxy inject cracks, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS2": { + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing", + "RepairAction": "Protect floor, cut out damaged areas, repair buckled rebar, patch / cast concrete, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + } + }, + "C2011.021d": { + "Description": "Monolithic cast-in-place and precast concrete stairs with no seismic joints - replace with prefabricated steel stair if replacement is required.", + "Comments": "Cast in place concrete stair, no seismic interstory drift joint\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Local concrete cracking, localized concrete spalling", + "RepairAction": "Protect surrounding space, epoxy inject cracks, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS2": { + "DS2": { + "Description": "Extensive concrete cracking, concrete crushing", + "RepairAction": "Protect floor, cut out damaged areas, repair buckled rebar, patch / cast concrete, repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": NaN + } + } + } + }, + "C2011.031a": { + "Description": "Hybrid stair assembly with steel stringers and concrete treads and landings with seismic joints that accommodate drift.", + "Comments": "Stair consists of steel stringers with precast treads rigidly linked to stringer\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Localized steel yielding.", + "RepairAction": "Protect surrounding space. Minor repair of finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of steel, weld cracking.", + "RepairAction": "Protect floor, cut out damaged areas, reweld. Repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + } + }, + "C2011.031b": { + "Description": "Hybrid stair assembly with steel stringers and concrete treads and landings with no seismic joints.", + "Comments": "Stair consists of steel stringers with precast treads rigidly linked to stringer\nConstruction Quality: Normal\nSeismic Installation Conditions: All", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Localized steel yielding.", + "RepairAction": "Protect surrounding space. Minor repair of finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS2": { + "DS2": { + "Description": "Buckling of steel, weld cracking.", + "RepairAction": "Protect floor, cut out damaged areas, reweld. Repair finishes. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + }, + "LS3": { + "DS3": { + "Description": "Loss of live load capacity. ", + "RepairAction": "Protect area, remove damaged stair including landings and handrails. Remove and reinstall damaged soffit and mechanical systems. Replace stair, landings, and handrail. Modify or relocate mechanical and electrical as required for repair work. Repair finishes." + } + } + } + }, + "C3011.001a": { + "Description": "Wall Partition, Type: Gypsum + Wallpaper, Full Height, Fixed Below, Fixed Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Wall paper warped and torn.", + "RepairAction": "Remove existing wall paper (or wall) and install new wall paper for full 100 foot length of wall. Existing wall damage per wall type NISTIR file." + } + } + } + }, + "C3011.001b": { + "Description": "Wall Partition, Type: Gypsum + Wallpaper, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Wall paper warped and torn.", + "RepairAction": "Remove existing wall paper (or wall) and install new wall paper for full 100 foot length of wall. Existing wall damage per wall type NISTIR file." + } + } + } + }, + "C3011.001c": { + "Description": "Wall Partition, Type: Gypsum + Wallpaper, Full Height, Fixed Below, Slip Track Above w/ returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Wall paper warped and torn.", + "RepairAction": "Remove existing wall paper (or wall) and install new wall paper for full 100 foot length of wall. Existing wall damage per wall type NISTIR file." + } + } + } + }, + "C3011.001d": { + "Description": "Wall Partition, Type: Gypsum + Wallpaper, Full Height, Fixed Below, Slip Track Above w/o returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Wall paper warped and torn.", + "RepairAction": "Remove existing wall paper (or wall) and install new wall paper for full 100 foot length of wall. Existing wall damage per wall type NISTIR file." + } + } + } + }, + "C3011.002a": { + "Description": "Wall Partition, Type: Gypsum + Ceramic Tile, Full Height, Fixed Below, Fixed Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor cracked joints and tile.", + "RepairAction": "Carefully remove cracked tile and grout at cracked joints, install new ceramic tile and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain in place." + } + }, + "LS2": { + "DS2": { + "Description": "Cracked joints and tile.", + "RepairAction": "Install ceramic tile and grout all joints for full 100 foot length of wall. Note: gypsum wall board will also be removed and replaced which means the removal of ceramic tile will be part of the gypsum wall board removal. " + } + } + } + }, + "C3011.002b": { + "Description": "Wall Partition, Type: Gypsum + Ceramic Tile, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor cracked joints and tile.", + "RepairAction": "Carefully remove cracked tile and grout at cracked joints, install new ceramic tile and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain in place." + } + }, + "LS2": { + "DS2": { + "Description": "Cracked joints and tile.", + "RepairAction": "Install ceramic tile and grout all joints for full 100 foot length of wall. Note: gypsum wall board will also be removed and replaced which means the removal of ceramic tile will be part of the gypsum wall board removal. " + } + } + } + }, + "C3011.002c": { + "Description": "Wall Partition, Type: Gypsum + Ceramic Tile, Full Height, Fixed Below, Slip Track Above w/ returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor cracked joints and tile.", + "RepairAction": "Carefully remove cracked tile and grout at cracked joints, install new ceramic tile and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain in place." + } + }, + "LS2": { + "DS2": { + "Description": "Cracked joints and tile.", + "RepairAction": "Install ceramic tile and grout all joints for full 100 foot length of wall. Note: gypsum wall board will also be removed and replaced which means the removal of ceramic tile will be part of the gypsum wall board removal. " + } + } + } + }, + "C3011.002d": { + "Description": "Wall Partition, Type: Gypsum + Ceramic Tile, Full Height, Fixed Below, Slip Track Above w/o returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor cracked joints and tile.", + "RepairAction": "Carefully remove cracked tile and grout at cracked joints, install new ceramic tile and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain in place." + } + }, + "LS2": { + "DS2": { + "Description": "Cracked joints and tile.", + "RepairAction": "Install ceramic tile and grout all joints for full 100 foot length of wall. Note: gypsum wall board will also be removed and replaced which means the removal of ceramic tile will be part of the gypsum wall board removal. " + } + } + } + }, + "C3011.003a": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Fixed Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling.", + "RepairAction": "Carefully remove cracked marble/paneling and grout at cracked joints, and install new marble/paneling and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain place." + } + }, + "LS2": { + "DS2": { + "Description": "significant cracks in marble / wood paneling.", + "RepairAction": "Install new marble/paneling for full 100 foot length of wall. Note: the gypsum wall board will also be removed and replaced which means the removal of the marble/paneling will be part of the gypsum wall board removal. " + } + } + } + }, + "C3011.003b": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Partial Height, Fixed Below, Lateral Braced Above", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling.", + "RepairAction": "Carefully remove cracked marble/paneling and grout at cracked joints, and install new marble/paneling and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain place." + } + }, + "LS2": { + "DS2": { + "Description": "significant cracks in marble / wood paneling.", + "RepairAction": "Install new marble/paneling for full 100 foot length of wall. Note: the gypsum wall board will also be removed and replaced which means the removal of the marble/paneling will be part of the gypsum wall board removal. " + } + } + } + }, + "C3011.003c": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Slip Track Above w/ returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling.", + "RepairAction": "Carefully remove cracked marble/paneling and grout at cracked joints, and install new marble/paneling and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain place." + } + }, + "LS2": { + "DS2": { + "Description": "significant cracks in marble / wood paneling.", + "RepairAction": "Install new marble/paneling for full 100 foot length of wall. Note: the gypsum wall board will also be removed and replaced which means the removal of the marble/paneling will be part of the gypsum wall board removal. " + } + } + } + }, + "C3011.003d": { + "Description": "Wall Partition, Type: High End Marble or Wood Panel, Full Height, Fixed Below, Slip Track Above w/o returns (friction connection)", + "Comments": "Costing based upon 9'x100' Panels\nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "100 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "minor cracked joints and minor cracks in marble / wood paneling.", + "RepairAction": "Carefully remove cracked marble/paneling and grout at cracked joints, and install new marble/paneling and re-grout joints for 10% of full 100 foot length of wall. Existing wall board will remain place." + } + }, + "LS2": { + "DS2": { + "Description": "significant cracks in marble / wood paneling.", + "RepairAction": "Install new marble/paneling for full 100 foot length of wall. Note: the gypsum wall board will also be removed and replaced which means the removal of the marble/paneling will be part of the gypsum wall board removal. " + } + } + } + }, + "C3021.001a": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Office - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet or vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe. ", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001b": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Office - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet or vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001c": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Laboratory - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sheet vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001d": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Laboratory - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sheet vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001e": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Hospital - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sheet vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001f": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Hospital - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sheet vinyl. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001g": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - School - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be vinyl composition tile. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001h": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - School - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be vinyl composition tile. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001i": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Apartments - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001j": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Apartments - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001k": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Retail - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be vinyl composition tile. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001l": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Retail - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be vinyl composition tile. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001m": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Warehouse - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sealed concrete. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001n": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Warehouse - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be sealed concrete. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001o": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Hospitality - Dry", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3021.001p": { + "Description": "Generic Floor Covering - Flooding of floor caused by failure of pipe - Hospitality - Humid", + "Comments": "The user needs to review the fragilities of all piping modeled in the ceiling of the floor and input the peak floor acceleration value for the pipe with the lowest median peak floor acceleration value, along with the associated total dispersion (beta). Flooring type assumed to be carpet. Available costs are per one square foot of floor area. \nConstruction Quality: Normal", + "SuggestedComponentBlockSize": "1 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Flooding of all or a portion of the total floor associated with a major leakage of a pipe.", + "RepairAction": "Replace or dry out of the affected flooring materials, equipment and contents. Remove areas that could be affected by mold. Potentially considerable downtime. Cleanup and replacement of all water damaged items on floor. User must establish area of floor with flooding. Default recommendation is flooding of total floor area. Damage to unit floor area shall be entered to consequence which is multiplied by PACT \"Fragility Unit of Measure\"." + } + } + } + }, + "C3027.001": { + "Description": "Raised Access Floor, non seismically rated.", + "Comments": "Access floor unanchored or anchored with adhesive. Costing is based upon a xxx SF floor area.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Consequence Note: Some downtime for repair of floor and equipment.", + "SuggestedComponentBlockSize": "100 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor damage to the flooring system. Damage to the equipment of the flooring system.", + "RepairAction": "Repair the flooring system, assume cost equal to 5% of the replacement cost. Repair the flooring equipment, assume a cost equal to 10% of the replacement cost." + } + } + } + }, + "C3027.002": { + "Description": "Raised Access Floor, seismically rated.", + "Comments": "Access floor is designed to meet code requirements and mechanically anchored and braced as necessary to resist anchor loads. Equipment is anchored to floor systems and heavier equipment is anchored directly to the structural floor. Costing is based upon a xxx SF floor area.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Consequence Note: Some downtime for repair of floor and equipment.", + "SuggestedComponentBlockSize": "100 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor damage to the flooring system. Damage to the equipment of the flooring system.", + "RepairAction": "Repair the flooring system, assume cost equal to 5% of the replacement cost. Repair the flooring equipment, assume a cost equal to 10% of the replacement cost." + } + } + } + }, + "C3032.001a": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): A < 250, Vert support only", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.001b": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): 250 < A < 1000, Vert support only", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.001c": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): 1000 < A < 2500, Vert support only", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.001d": { + "Description": "Suspended Ceiling, SDC A,B,C, Area (A): A > 2500, Vert support only", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B, or C", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.003a": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): A < 250, Vert & Lat support", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.003b": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): 250 < A < 1000, Vert & Lat support", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.003c": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): 1000 < A < 2500, Vert & Lat support", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.003d": { + "Description": "Suspended Ceiling, SDC D,E (Ip=1.0), Area (A): A > 2500, Vert & Lat support", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D or E (Ip = 1.0)", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.004a": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): A < 250, Vert & Lat support", + "Comments": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "250 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.004b": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): 250 < A < 1000, Vert & Lat support", + "Comments": "Costing for each 600 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "600 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.004c": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): 1000 < A < 2500, Vert & Lat support", + "Comments": "Costing for each 1800 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "1800 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3032.004d": { + "Description": "Suspended Ceiling, SDC D,E,F (Ip=1.5), Area (A): A > 2500, Vert & Lat support", + "Comments": "Costing for each 2500 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wire, diagonal wires, and compression posts, 2 inch wide ledger support angles at wall and oversize holes around tile openings. Includes lighting fixtures in suspended ceiling.\nConstruction Quality: Special Inspection (e.g. OSHPD)\nSeismic Installation Conditions: SDC D, E or F (Ip = 1.5)", + "SuggestedComponentBlockSize": "2500 SF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "5 % of ceiling grid and tile damage. ", + "RepairAction": "Reinstall, repair, or replace 5% of the ceiling area." + } + }, + "LS2": { + "DS2": { + "Description": "30% of ceiling grid and tile damage.", + "RepairAction": "Replace 30% of the ceiling area." + } + }, + "LS3": { + "DS3": { + "Description": "50% of ceiling grid and tile damage.", + "RepairAction": "Replace the entire ceiling " + } + } + } + }, + "C3034.001": { + "Description": "Independent Pendant Lighting - non seismic", + "Comments": "Horizontal light fixtures 4 to 16 ft long suspended 12 to 24 inches from ceiling. No seismic design or bracing. Hung from ceiling above by two or more rods or cables. \nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Low cost industrial hung lighting in warehouse or gymnasium that is not part of suspended ceiling or hanging from a suspended ceiling space.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Disassembly of rod system at connections with horizontal light fixture, low cycle fatigue failure of the threaded rod, pullout of rods from ceiling assembly.", + "RepairAction": "Replace damaged lighting components." + } + } + } + }, + "C3034.002": { + "Description": "Independent Pendant Lighting - seismically rated", + "Comments": "Horizontal light fixtures 4 to 16 ft long suspended 12 to 24 inches from ceiling. Hung from ceiling above by two or more rods or cables. Fixture and rods or cables are either designed for seismic movements or are laterally braced to prevent sway.\nConstruction Quality: Normal\nSeismic Installation Conditions: All\nNotes: Low cost industrial hung lighting in warehouse or gymnasium that is not part of suspended ceiling or hanging from a suspended ceiling space.", + "SuggestedComponentBlockSize": " 1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Disassembly of rod system at connections with horizontal light fixture, low cycle fatigue failure of the threaded rod, pullout of rods from ceiling assembly.", + "RepairAction": "Replace damaged lighting components." + } + } + } + }, + "D1014.011": { + "Description": "Traction Elevator \u2013 Applies to most California Installations 1976 or later, most western states installations 1982 or later and most other U.S installations 1998 or later.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Pure DS1. Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures.", + "RepairAction": "Multiple repairs possible (% change of each): Reinstall or replace controller (4%), and or reinstall or replace motor generator (63%), and or Install new generator with appropriate anchors (23%), and or Install new governor (7%), and or Reinstall or replace rope guards (15%)." + }, + "DS2": { + "Description": "Pure DS2. Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted", + "RepairAction": "Multiple repairs possible (% change of each): Replace rail (62%), and or replace bracket or tie rod (28%), and or replace counterweight bracket 14%), and or replace intermediate bracket (28%), and or replace car guide shoes (35%), and or replace counterweight guide shoe (28%), and or repair or replace counterweight frame (28%), and or repair or replace tail sheave (1%)" + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Cab stabilizers bent, or cab walls damaged, or cab doors damaged.", + "RepairAction": "Multiple repairs possible (% change of each): Repair or replace cab walls (3%), and or repair or replace cab doors (17%), and or repair or replace cab stabilizers (92%) " + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS8": { + "Description": "Pure DS4. Cab ceiling damaged.", + "RepairAction": "Multiple repairs possible (% change of each): Repair or replace cab ceiling (100%)" + }, + "DS9": { + "Description": "Combination of DS1 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS10": { + "Description": "Combination of DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS12": { + "Description": "Combination of DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + } + } + } + }, + "D1014.012": { + "Description": "Traction Elevator \u2013 Applies to most California Installations prior to 1976, most western states installations prior to 1982 and most other U.S installations prior to 1998.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Pure DS1. Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures.", + "RepairAction": "Multiple repairs possible (% change of each): Reinstall or replace controller (4%), and or reinstall or replace motor generator (63%), and or Install new generator with appropriate anchors (23%), and or Install new governor (7%), and or Reinstall or replace rope guards (15%)." + }, + "DS2": { + "Description": "Pure DS2. Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted", + "RepairAction": "Multiple repairs possible (% change of each): Replace rail (62%), and or replace bracket or tie rod (28%), and or replace counterweight bracket 14%), and or replace intermediate bracket (28%), and or replace car guide shoes (35%), and or replace counterweight guide shoe (28%), and or repair or replace counterweight frame (28%), and or repair or replace tail sheave (1%)" + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Cab stabilizers bent, or cab walls damaged, or cab doors damaged.", + "RepairAction": "Multiple repairs possible (% change of each): Repair or replace cab walls (3%), and or repair or replace cab doors (17%), and or repair or replace cab stabilizers (92%) " + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS8": { + "Description": "Pure DS4. Cab ceiling damaged.", + "RepairAction": "Multiple repairs possible (% change of each): Repair or replace cab ceiling (100%)" + }, + "DS9": { + "Description": "Combination of DS1 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS10": { + "Description": "Combination of DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS12": { + "Description": "Combination of DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + } + } + } + }, + "D1014.021": { + "Description": "Hydraulic Elevator \u2013 Applies to most California Installations 1976 or later, most western states installations postdating 1982 and most U.S installations postdating 1998.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Pure DS1. Damaged controls.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damaged controls (100%)" + }, + "DS2": { + "Description": "Pure DS2. Damaged vane and hoist-way switches, and or bent cab stabilizers, and or damaged car guide shoes.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damaged vane and hoist-way switches (41%), and or repair bent cab stabilizers (41%), and or repair damaged car guide shoes (41%). " + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Damaged entrance and car door, and or flooring damage.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damage to doors (68%), and or repair flooring (46%)" + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS8": { + "Description": "Pure DS4. Oil leak in hydraulic line, and or hydraulic tank failure.", + "RepairAction": "Multiple repairs possible (% change of each): Repair oil leak in hydraulic line (27%), and or hydraulic tank failure (81%)" + }, + "DS9": { + "Description": "Combination of DS1 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS10": { + "Description": "Combination of DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS12": { + "Description": "Combination of DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + } + } + } + }, + "D1014.022": { + "Description": "Hydraulic Elevator \u2013 Applies to most California Installations prior to 1976, most western states installations prior to 1982 and most U.S installations prior to 1998.", + "Comments": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.\nConstruction Quality: Any", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Pure DS1. Damaged controls.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damaged controls (100%)" + }, + "DS2": { + "Description": "Pure DS2. Damaged vane and hoist-way switches, and or bent cab stabilizers, and or damaged car guide shoes.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damaged vane and hoist-way switches (41%), and or repair bent cab stabilizers (41%), and or repair damaged car guide shoes (41%). " + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Damaged entrance and car door, and or flooring damage.", + "RepairAction": "Multiple repairs possible (% change of each): Repair damage to cab door (68%), and or repair cab flooring (46%)" + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS8": { + "Description": "Pure DS4. Oil leak in hydraulic line, and or hydraulic tank failure.", + "RepairAction": "Multiple repairs possible (% change of each): Repair oil leak in hydraulic line (27%), and or hydraulic tank failure (81%)" + }, + "DS9": { + "Description": "Combination of DS1 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS10": { + "Description": "Combination of DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS11": { + "Description": "Combination of DS1 & DS2 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS12": { + "Description": "Combination of DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS13": { + "Description": "Combination of DS1 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS14": { + "Description": "Combination of DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS15": { + "Description": "Combination of DS1 & DS2 & DS3 & DS4", + "RepairAction": "Combination of pure DS repair actions." + } + } + } + }, + "D2021.011a": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. ", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2021.011b": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2021.012a": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + } + }, + "D2021.012b": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF.." + } + } + } + }, + "D2021.013a": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + } + }, + "D2021.013b": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints. One joint per 1000 LF." + } + } + } + }, + "D2021.014a": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + } + } + }, + "D2021.014b": { + "Description": "Cold or Hot Potable - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints. One joint per 1000 LF." + } + } + } + }, + "D2021.021a": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC A or B, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. ", + "RepairAction": "Replace failed 60 ft pipe sections including supports. One repair per 1000 LF." + } + } + } + }, + "D2021.022a": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC C, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints. One joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. ", + "RepairAction": "Replace 20 ft section of pipe at leaking joints. One repair per 1000 LF." + } + } + } + }, + "D2021.023a": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC D,E,F, PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": NaN + } + } + } + }, + "D2021.023b": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC D,E,F, BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints. One joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints. One repair per 1000 LF." + } + } + } + }, + "D2021.024a": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC D,E,F (OSPHD or sim), PIPING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": NaN + } + } + } + }, + "D2021.024b": { + "Description": "Cold or Hot Potable Water Piping (dia > 2.5 inches), SDC D,E,F (OSPHD or sim), BRACING FRAGILITY", + "Comments": "Potable water. Costing based upon 1000 ft segments.\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2022.011a": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2022.011b": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2022.012a": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + } + }, + "D2022.012b": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2022.013a": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + } + }, + "D2022.013b": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + } + } + }, + "D2022.014a": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed 60 ft pipe sections including supports. One repair per 1000 LF." + } + } + } + }, + "D2022.014b": { + "Description": "Heating hot Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + } + } + }, + "D2022.021a": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC A or B, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": NaN + } + } + } + }, + "D2022.022a": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC C, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe. ", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": NaN + } + } + } + }, + "D2022.023a": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe. ", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 60 ft pipe sections including supports. One repair per 1000 LF." + } + } + } + }, + "D2022.023b": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 foot of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": NaN + } + } + } + }, + "D2022.024a": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe. ", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 60 ft pipe sections including supports. One repair per 1000 LF." + } + } + } + }, + "D2022.024b": { + "Description": "Heating hot Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Heating water. Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 foot of pipe.", + "RepairAction": "Replace failed supports. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe. ", + "RepairAction": NaN + } + } + } + }, + "D2031.011b": { + "Description": "Sanitary Waste Piping - Cast Iron w/flexible couplings, SDC A,B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports and 60 ft pipe per 1000 LF." + } + } + } + }, + "D2031.012b": { + "Description": "Sanitary Waste Piping - Cast Iron w/flexible couplings, SDC C, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports and 60 ft pipe per 1000 LF." + } + } + } + }, + "D2031.013b": { + "Description": "Sanitary Waste Piping - Cast Iron w/flexible couplings, SDC D,E,F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + } + } + }, + "D2031.014b": { + "Description": "Sanitary Waste Piping - Cast Iron w/flexible couplings, SDC D,E,F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + } + } + }, + "D2031.021a": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC A,B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Joints break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 20 ft pipe sections including supports - one per 1000 LF." + } + } + } + }, + "D2031.021b": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC A,B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet)", + "RepairAction": "Replace failed supports and 60 ft pipe per 1000 LF." + } + } + } + }, + "D2031.022a": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed 20 ft pipe sections including supports - one per 1000 LF." + } + } + } + }, + "D2031.022b": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC C, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet)", + "RepairAction": "Replace failed supports and 60 ft pipe per 1000 LF." + } + } + } + }, + "D2031.023a": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC D,E,F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Joints break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 20 ft pipe sections including supports - one per 1000 LF." + } + } + } + }, + "D2031.023b": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC D,E,F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports - 0.5 per 1000 LF. " + } + } + } + }, + "D2031.024a": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC D,E,F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Joints break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace failed 20 ft pipe sections including supports - one per 1000 LF." + } + } + } + }, + "D2031.024b": { + "Description": "Sanitary Waste Piping - Cast Iron w/bell and spigot couplings, SDC D,E,F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe\nConstruction Quality: Special Regulation (e.g. OSHPD) for piping installations\nSeismic Installation Conditions: SDC D, E or F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten flange bolts at leaking joints." + } + } + } + }, + "D2051.011a": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": NaN + } + } + } + }, + "D2051.011b": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2051.012a": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2051.012b": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed vertical braces. One repair per 1000 LF." + } + } + } + }, + "D2051.013a": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints. One repair per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur. One repair per 1000 LF." + } + } + } + }, + "D2051.013b": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed lateral braces. One repair per 1000 LF." + } + } + } + }, + "D2051.014a": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + } + }, + "D2051.014b": { + "Description": "Chilled Water Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 0.5 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + } + } + } + }, + "D2051.021a": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe. Retighten flange at leaking joint.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + } + }, + "D2051.021b": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC A or B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe ", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + } + }, + "D2051.022a": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + } + }, + "D2051.023a": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + } + }, + "D2051.023b": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 0.01 failures per 20 foot pipe section.", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + } + }, + "D2051.024a": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + } + }, + "D2051.024b": { + "Description": "Chilled Water Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 foot of pipe.", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + } + }, + "D2061.011a": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten leaking joints, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 ft section of pipe at leaking joints, one per 1000 LF." + } + } + } + }, + "D2061.011b": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC A or B, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 1 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 60 ft pipe and supports per 1000 LF." + } + } + } + }, + "D2061.012a": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + } + }, + "D2061.012b": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC C, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 1 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Multiple supports failure and 60 feet of pipe fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace 60 ft pipe and supports per 1000 LF." + } + } + } + }, + "D2061.013a": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + } + }, + "D2061.013b": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 1 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + } + }, + "D2061.014a": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Small Leakage at joints - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Large Leakage w/ major repair - 1 leak per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + } + }, + "D2061.014b": { + "Description": "Steam Piping - Small Diameter Threaded Steel - (2.5 inches in diameter or less), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe 2.5 inches in diameter or less\nConstruction Quality: Special Regulations (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Isolated support failure w/o leakage - 1 supports fail per 1000 feet of pipe (assuming supports every 20 feet).", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + } + }, + "D2061.021a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + } + }, + "D2061.022a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe. Replace one 20 ft section per 1000 LF pipe.", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + } + }, + "D2061.023a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + } + }, + "D2061.023b": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F, BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe .", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe ", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + } + }, + "D2061.024a": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe.", + "RepairAction": "Retighten flange bolts at leaking joints, 1 joint per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Pipe Break - 1 break per 1000 feet of pipe", + "RepairAction": "Replace 20 foot sections of pipe where breaks occur, one per 1000 LF." + } + } + } + }, + "D2061.024b": { + "Description": "Steam Piping - Large Diameter Welded Steel - (greater than 2.5 inches in diameter), SDC D, E, or F (OSHPD or sim), BRACING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, pipe greater than 2.5 inches in diameter\nConstruction Quality: Special Regulation (e.g. OSHPD) for Piping Installations\nSeismic Installation Conditions: SDC D, E, F (high seismic design)\nNotes: Consequence is for piping only. Enter floor wetting consequence seperately. Cost includes allowance for MEP relocation to perform work.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Lateral Brace Failure - 1 failure per 1000 feet of pipe.", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + }, + "LS2": { + "DS2": { + "Description": "Vertical Brace Failure - 1 failure per 1000 feet of pipe ", + "RepairAction": "Replace failed supports, one per 1000 LF." + } + } + } + }, + "D3031.011a": { + "Description": "Chiller - Capacity: < 100 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.011b": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.011c": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.011d": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012a": { + "Description": "Chiller - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012b": { + "Description": "Chiller - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012c": { + "Description": "Chiller - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012d": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012e": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012f": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012g": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012h": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012i": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012j": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012k": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.012l": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013a": { + "Description": "Chiller - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013b": { + "Description": "Chiller - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013c": { + "Description": "Chiller - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013d": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013e": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013f": { + "Description": "Chiller - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013g": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013h": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013i": { + "Description": "Chiller - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013j": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013k": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.013l": { + "Description": "Chiller - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Chiller removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Repair chiller and attached piping. Chiller removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.021a": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.021b": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.021c": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.021d": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022a": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022b": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022c": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022d": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022e": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022f": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022g": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022h": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022i": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022j": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022k": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.022l": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023a": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023b": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023c": { + "Description": "Cooling Tower - Capacity: < 100 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023d": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023e": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023f": { + "Description": "Cooling Tower - Capacity: 100 to <350 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023g": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023h": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023i": { + "Description": "Cooling Tower - Capacity: 350 to <750 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023j": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023k": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged equipment and attached piping but anchorage is OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3031.023l": { + "Description": "Cooling Tower - Capacity: 750 to <1000 Ton - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 850 Ton.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Cooling tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged equipment and attached piping but anchorage OK.", + "RepairAction": "Repair damaged equipment and attached piping. Cooling tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D3032.011a": { + "Description": "Compressor - Capacity: Small non medical air supply - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.011b": { + "Description": "Compressor - Capacity: Large non medical air supply - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.011c": { + "Description": "Compressor - Capacity: Small medical quality air supply - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.011d": { + "Description": "Compressor - Capacity: Large medical quality air supply - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.012a": { + "Description": "Compressor - Capacity: Small non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3032.012b": { + "Description": "Compressor - Capacity: Small non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.012c": { + "Description": "Compressor - Capacity: Small non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require replacement" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3032.012d": { + "Description": "Compressor - Capacity: Large non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3032.012e": { + "Description": "Compressor - Capacity: Large non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.012f": { + "Description": "Compressor - Capacity: Large non medical air supply - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require replacement" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3032.012g": { + "Description": "Compressor - Capacity: Small medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3032.012h": { + "Description": "Compressor - Capacity: Small medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.012i": { + "Description": "Compressor - Capacity: Small medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require replacement" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3032.012j": { + "Description": "Compressor - Capacity: Large medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3032.012k": { + "Description": "Compressor - Capacity: Large medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.012l": { + "Description": "Compressor - Capacity: Large medical quality air supply - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require replacement" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3032.013a": { + "Description": "Compressor - Capacity: Small non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3032.013b": { + "Description": "Compressor - Capacity: Small non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.013c": { + "Description": "Compressor - Capacity: Small non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require repair." + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3032.013d": { + "Description": "Compressor - Capacity: Large non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3032.013e": { + "Description": "Compressor - Capacity: Large non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.013f": { + "Description": "Compressor - Capacity: Large non medical air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require repair." + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3032.013g": { + "Description": "Compressor - Capacity: Small medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3032.013h": { + "Description": "Compressor - Capacity: Small medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.013i": { + "Description": "Compressor - Capacity: Small medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require repair." + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3032.013j": { + "Description": "Compressor - Capacity: Large medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3032.013k": { + "Description": "Compressor - Capacity: Large medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Motor is damaged.", + "RepairAction": "Repair motor." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3032.013l": { + "Description": "Compressor - Capacity: Large medical quality air supply - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Motor damaged but anchorage is OK.", + "RepairAction": "Repair Motor - Anchorage and Concrete do not require repair." + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3041.001a": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC A or B", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + }, + "LS2": { + "DS2": { + "Description": "Fan dislodges from isolators and drops.", + "RepairAction": "Replace fan, isolators and section of ducting to which fan is connected." + } + } + } + }, + "D3041.001b": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC C", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + }, + "LS2": { + "DS2": { + "Description": "Fan dislodges from isolators and drops.", + "RepairAction": "Replace fan, isolators and section of ducting to which fan is connected." + } + } + } + }, + "D3041.001c": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC D, E, F", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + }, + "LS2": { + "DS2": { + "Description": "Fan dislodges from isolators and drops.", + "RepairAction": "Replace fan, isolators and section of ducting to which fan is connected." + } + } + } + }, + "D3041.001d": { + "Description": "HVAC Fan In Line Fan, Fan independently supported and vibration isolators, SDC D, E, F (OSHPD or sim)", + "Comments": "Costing per 10 units\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC installations\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC installations - SDC D, E or F (high seismic design)\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + }, + "LS2": { + "DS2": { + "Description": "Fan dislodges from isolators and drops.", + "RepairAction": "Replace fan, isolators and section of ducting to which fan is connected." + } + } + } + }, + "D3041.002a": { + "Description": "HVAC Fan In Line Fan, Fan independently supported but not on vibration isolators, SDC A or B", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + } + } + }, + "D3041.002b": { + "Description": "HVAC Fan In Line Fan, Fan independently supported but not on vibration isolators, SDC C", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + } + } + }, + "D3041.002c": { + "Description": "HVAC Fan In Line Fan, Fan independently supported but not on vibration isolators, SDC D, E, F", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + } + } + }, + "D3041.002d": { + "Description": "HVAC Fan In Line Fan, Fan independently supported but not on vibration isolators, SDC D, E, F (OSHPD or sim)", + "Comments": "Costing per 10 units\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC installations\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC installations - SDC D, E or F (high seismic design)\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Bellows fails at fans.", + "RepairAction": "Replace failed bellows." + } + } + } + }, + "D3041.011a": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.011b": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.011c": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.011d": { + "Description": "HVAC Galvanized Sheet Metal Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.012a": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.012b": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.012c": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.012d": { + "Description": "HVAC Galvanized Sheet Metal Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.021a": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.021b": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.021c": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.021d": { + "Description": "HVAC Stainless Steel Ducting less than 6 sq. ft in cross sectional area, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.022a": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC A or B", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.022b": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC C", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.022c": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.022d": { + "Description": "HVAC Stainless Steel Ducting - 6 sq. ft cross sectional area or greater, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing based upon 1000 ft segments of duct\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC ducting installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC ducting installation - SDC D, E or F (high seismic design)", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Individual supports fail and duct sags - 1 failed support per 1000 feet of ducting.", + "RepairAction": "Replace failed supports and repair ducting in vicinity of failed supports." + } + }, + "LS2": { + "DS2": { + "Description": "Several adjacent supports fail and sections of ducting fall - 60 feet of ducting fail and fall per 1000 foot of ducting.", + "RepairAction": "Replace sections of failed ducting and supports." + } + } + } + }, + "D3041.031a": { + "Description": "HVAC Drops / Diffusers in suspended ceilings - No independent safety wires, SDC A or B", + "Comments": "Costing per 10 units, No independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + } + }, + "D3041.031b": { + "Description": "HVAC Drops / Diffusers in suspended ceilings - No independent safety wires, SDC C", + "Comments": "Costing per 10 units, No independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + } + }, + "D3041.032a": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC A or B", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + } + }, + "D3041.032b": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC C", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + } + }, + "D3041.032c": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC D, E, or F", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC D, E or F\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + } + }, + "D3041.032d": { + "Description": "HVAC Drops / Diffusers without ceilings - supported by ducting only - No independent safety wires, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 10 units, unit supported by ducting only, no independent safety wires\nConstruction Quality: Special Regulation (e.g. OSHPD) for HVAC Ducting Installation\nSeismic Installation Conditions: Special Regulation (e.g. OSHPD) for HVAC Ducting Installation - SDC D, E or F (high seismic design)\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "HVAC drops or diffusers dislodges and falls.", + "RepairAction": "Replace diffuser/drop and sections of ceiling and ducting in vicinity to which diffuser/drop is connected." + } + } + } + }, + "D3041.041a": { + "Description": "Variable Air Volume (VAV) box with in-line coil, SDC A or B", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC A or B\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Coil damages connection to plumbing. Leakage of hot water.", + "RepairAction": "Replace coil and cleanup water damage." + } + } + } + }, + "D3041.041b": { + "Description": "Variable Air Volume (VAV) box with in-line coil, SDC C", + "Comments": "Costing per 10 units\nConstruction Quality: Normal\nSeismic Installation Conditions: Normal - SDC C\nNotes: One failure is expected per 10 units.", + "SuggestedComponentBlockSize": "10 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Coil damages connection to plumbing. Leakage of hot water.", + "RepairAction": "Replace coil and cleanup water damage." + } + } + } + }, + "D3041.101a": { + "Description": "HVAC Fan - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3041.102a": { + "Description": "HVAC Fan - Capacity: all - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Repair anchorage and replace equipment." + } + } + } + }, + "D3041.102b": { + "Description": "HVAC Fan - Capacity: all - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D3041.102c": { + "Description": "HVAC Fan - Capacity: all - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Repair anchorage and replace equipment." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair equipment." + } + } + } + }, + "D3041.103a": { + "Description": "HVAC Fan - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Repair anchorage and replace equipment." + } + } + } + }, + "D3041.103b": { + "Description": "HVAC Fan - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Repair equipment." + } + } + } + }, + "D3041.103c": { + "Description": "HVAC Fan - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Repair anchorage and replace equipment." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair equipment." + } + } + } + }, + "D3052.011a": { + "Description": "Air Handling Unit - Capacity: <5000 CFM - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 4000 CFM.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.011b": { + "Description": "Air Handling Unit - Capacity: 5000 to <10000 CFM - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 8000 CFM.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.011c": { + "Description": "Air Handling Unit - Capacity: 10000 to <25000 CFM - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 20000 CFM.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.011d": { + "Description": "Air Handling Unit - Capacity: 25000 to <40000 CFM - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 30000 CFM.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013a": { + "Description": "Air Handling Unit - Capacity: <5000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 4000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013b": { + "Description": "Air Handling Unit - Capacity: <5000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 4000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013c": { + "Description": "Air Handling Unit - Capacity: <5000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 4000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + }, + "DS3": { + "Description": "Damage to attached ducting or piping but anchorage is OK.", + "RepairAction": "Repair attached ducting or piping - equipment does not require replacement and anchorage does not require repair" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3052.013d": { + "Description": "Air Handling Unit - Capacity: 5000 to <10000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 8000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013e": { + "Description": "Air Handling Unit - Capacity: 5000 to <10000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 8000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013f": { + "Description": "Air Handling Unit - Capacity: 5000 to <10000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 8000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + }, + "DS3": { + "Description": "Damage to attached ducting or piping but anchorage is OK.", + "RepairAction": "Repair attached ducting or piping - equipment does not require replacement and anchorage does not require repair" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3052.013g": { + "Description": "Air Handling Unit - Capacity: 10000 to <25000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 20000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013h": { + "Description": "Air Handling Unit - Capacity: 10000 to <25000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 20000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013i": { + "Description": "Air Handling Unit - Capacity: 10000 to <25000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 20000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + }, + "DS3": { + "Description": "Damage to attached ducting or piping but anchorage is OK.", + "RepairAction": "Repair attached ducting or piping - equipment does not require replacement and anchorage does not require repair" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3052.013j": { + "Description": "Air Handling Unit - Capacity: 25000 to <40000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 30000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013k": { + "Description": "Air Handling Unit - Capacity: 25000 to <40000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 30000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Equipment does not function but anchorage is OK. Damage to attached ducting or piping.", + "RepairAction": "Repair attached ducting or piping." + }, + "DS2": { + "Description": "Equipment does not function but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment. Remove, repair offsite, and reinstall air handler." + } + } + } + }, + "D3052.013l": { + "Description": "Air Handling Unit - Capacity: 25000 to <40000 CFM - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 30000 CFM.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Remove, repair offsite, and reinstall air handler." + }, + "DS3": { + "Description": "Damage to attached ducting or piping but anchorage is OK.", + "RepairAction": "Repair attached ducting or piping - equipment does not require replacement and anchorage does not require repair" + }, + "DS4": { + "Description": "Equipment damaged beyond repair but anchorage is OK.", + "RepairAction": "Replace and install equipment including new anchorage if anchorage is post-installed." + } + } + } + }, + "D3067.011a": { + "Description": "Control Panel - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace some components (relays, circuit boards)." + } + } + } + }, + "D3067.012a": { + "Description": "Control Panel - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D3067.012b": { + "Description": "Control Panel - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace some components (relays, circuit boards)." + } + } + } + }, + "D3067.012c": { + "Description": "Control Panel - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Replace some components (relays, circuit boards" + } + } + } + }, + "D4011.021a": { + "Description": "Fire Sprinkler Water Piping - Horizontal Mains and Branches - Old Style Victaulic - Thin Wall Steel - No bracing, SDC A or B, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, horizontal main and branches\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: One failure is expected per 1000 feet of pipe. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at joints - 0.02 leaks per 20 ft section of pipe.", + "RepairAction": "Replace leaking joints and minor water cleanup. " + } + }, + "LS2": { + "DS2": { + "Description": "Joints Break - Major Leakage - 0.02 breaks per 20 ft section of pipe.", + "RepairAction": "Replace 20 ft section of pipe, joints and major water cleanup at leaking joints. " + } + } + } + }, + "D4011.022a": { + "Description": "Fire Sprinkler Water Piping - Horizontal Mains and Branches - Old Style Victaulic - Thin Wall Steel - No bracing, SDC C, PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, horizontal main and branches\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: One failure is expected per 1000 feet of pipe. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at joints - 0.02 leaks per 20 ft section of pipe.", + "RepairAction": "Replace leaking joints and minor water cleanup. " + } + }, + "LS2": { + "DS2": { + "Description": "Joints Break - Major Leakage - 0.02 breaks per 20 ft section of pipe.", + "RepairAction": "Replace 20 ft section of pipe, joints and major water cleanup at leaking joints. " + } + } + } + }, + "D4011.023a": { + "Description": "Fire Sprinkler Water Piping - Horizontal Mains and Branches - Old Style Victaulic - Thin Wall Steel - Poorly designed bracing, SDC D, E, or F , PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, horizontal main and branches\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 1000 feet of pipe. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at joints - 0.02 leaks per 20 ft section of pipe.", + "RepairAction": "Replace leaking joints and minor water cleanup. " + } + }, + "LS2": { + "DS2": { + "Description": "Joints Break - Major Leakage - 0.02 breaks per 20 ft section of pipe.", + "RepairAction": "Replace 20 ft section of pipe, joints and major water cleanup at leaking joints. " + } + } + } + }, + "D4011.024a": { + "Description": "Fire Sprinkler Water Piping - Horizontal Mains and Branches - Old Style Victaulic - Thin Wall Steel - with designed bracing, SDC D, E, or F (OSHPD or sim), PIPING FRAGILITY", + "Comments": "Costing based upon 1000 ft segments of pipe, horizontal main and branches\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 1000 feet of pipe. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "1000 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at joints - 0.02 leaks per 20 ft section of pipe.", + "RepairAction": "Replace leaking joints and minor water cleanup. " + } + }, + "LS2": { + "DS2": { + "Description": "Joints Break - Major Leakage - 0.02 breaks per 20 ft section of pipe.", + "RepairAction": "Replace 20 ft section of pipe, joints and major water cleanup at leaking joints. " + } + } + } + }, + "D4011.031a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC A or B", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.032a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC C", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.033a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC D, E, or F", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + } + } + }, + "D4011.034a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + } + } + }, + "D4011.041a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile HARD ceiling - 6 ft. long drop maximum, SDC A or B", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A or B (no seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.042a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into unbraced lay-in tile HARD ceiling - 6 ft. long drop maximum, SDC C", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C (low seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.053a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into braced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC D, E, or F", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.054a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into braced lay-in tile SOFT ceiling - 6 ft. long drop maximum, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.063a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into braced lay-in tile HARD ceiling - 6 ft. long drop maximum, SDC D, E, or F", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.064a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - Dropping into braced lay-in tile HARD ceiling - 6 ft. long drop maximum, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.071a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - No Ceiling - 6 ft. long drop maximum, SDC A or B", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC A, B ( no seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.072a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - No Ceiling - 6 ft. long drop maximum, SDC C", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC C ( low seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.073a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - No Ceiling - 6 ft. long drop maximum, SDC D, E, or F", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Normal\nSeismic Installation Conditions: SDC D,E,F (high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D4011.074a": { + "Description": "Fire Sprinkler Drop Standard Threaded Steel - No Ceiling - 6 ft. long drop maximum, SDC D, E, or F (OSHPD or sim)", + "Comments": "Costing per 100 units, Standard threaded steel drop, 6 ft. long drop maximum\nConstruction Quality: Special Regulation (e.g. OSHPD) for sprinkler installations\nSeismic Installation Conditions: SDC D,E,F ( high seismic design)\nNotes: One failure is expected per 100 units. Allowance included for MEP modifications for repair.", + "SuggestedComponentBlockSize": "100 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Spraying & Dripping Leakage at drop joints - 0.01 leaks per drop.", + "RepairAction": "Replace sprinkler drops and minor water cleanup at broken joints." + } + }, + "LS2": { + "DS2": { + "Description": "Drop Joints Break - Major Leakage - 0.01 breaks per drop.", + "RepairAction": "Replace sprinkler drops and major water cleanup at broken joints" + } + } + } + }, + "D5011.011a": { + "Description": "Transformer/primary service - Capacity: <100 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.011b": { + "Description": "Transformer/primary service - Capacity: 100 to <350 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.011c": { + "Description": "Transformer/primary service - Capacity: 350 to <750 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.011d": { + "Description": "Transformer/primary service - Capacity: 750 to 1500 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013a": { + "Description": "Transformer/primary service - Capacity: <100 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 75 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013b": { + "Description": "Transformer/primary service - Capacity: <100 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 75 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013c": { + "Description": "Transformer/primary service - Capacity: <100 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 75 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013d": { + "Description": "Transformer/primary service - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013e": { + "Description": "Transformer/primary service - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013f": { + "Description": "Transformer/primary service - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013g": { + "Description": "Transformer/primary service - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013h": { + "Description": "Transformer/primary service - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013i": { + "Description": "Transformer/primary service - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013j": { + "Description": "Transformer/primary service - Capacity: 750 to 1500 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013k": { + "Description": "Transformer/primary service - Capacity: 750 to 1500 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5011.013l": { + "Description": "Transformer/primary service - Capacity: 750 to 1500 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad. Transformer tower removed, repaired offsite, and reinstalled." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Service and repair existing transformer. Transformer tower removed, repaired offsite, and reinstalled." + } + } + } + }, + "D5012.013a": { + "Description": "Motor Control Center - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5012.013b": { + "Description": "Motor Control Center - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5012.013c": { + "Description": "Motor Control Center - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5012.013d": { + "Description": "Motor Control Center - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "If anchored repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad if anchored." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5012.021a": { + "Description": "Low Voltage Switchgear - Capacity: 100 to <350 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace insulator." + } + } + } + }, + "D5012.021b": { + "Description": "Low Voltage Switchgear - Capacity: 350 to <750 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace insulator." + } + } + } + }, + "D5012.021c": { + "Description": "Low Voltage Switchgear - Capacity: 750 to <1200 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace insulator." + } + } + } + }, + "D5012.021d": { + "Description": "Low Voltage Switchgear - Capacity: 1200 to 2000 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative.", + "RepairAction": "Replace insulator." + } + } + } + }, + "D5012.023a": { + "Description": "Low Voltage Switchgear - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5012.023b": { + "Description": "Low Voltage Switchgear - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + } + }, + "D5012.023c": { + "Description": "Low Voltage Switchgear - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + } + }, + "D5012.023d": { + "Description": "Low Voltage Switchgear - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5012.023e": { + "Description": "Low Voltage Switchgear - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + } + }, + "D5012.023f": { + "Description": "Low Voltage Switchgear - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + } + }, + "D5012.023g": { + "Description": "Low Voltage Switchgear - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5012.023h": { + "Description": "Low Voltage Switchgear - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + } + }, + "D5012.023i": { + "Description": "Low Voltage Switchgear - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + } + }, + "D5012.023j": { + "Description": "Low Voltage Switchgear - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5012.023k": { + "Description": "Low Voltage Switchgear - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + } + }, + "D5012.023l": { + "Description": "Low Voltage Switchgear - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace fiberglass insulator supporting the vertical bus bars in the rear of the switchgear assembly" + } + } + } + }, + "D5012.031a": { + "Description": "Distribution Panel - Capacity: 100 to <350 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + } + }, + "D5012.031b": { + "Description": "Distribution Panel - Capacity: 350 to <750 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + } + }, + "D5012.031c": { + "Description": "Distribution Panel - Capacity: 750 to <1200 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + } + }, + "D5012.031d": { + "Description": "Distribution Panel - Capacity: 1200 to 2000 Amp - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + } + }, + "D5012.033a": { + "Description": "Distribution Panel - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + } + } + } + }, + "D5012.033b": { + "Description": "Distribution Panel - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + } + }, + "D5012.033c": { + "Description": "Distribution Panel - Capacity: 100 to <350 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 225 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5012.033d": { + "Description": "Distribution Panel - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + } + } + } + }, + "D5012.033e": { + "Description": "Distribution Panel - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + } + }, + "D5012.033f": { + "Description": "Distribution Panel - Capacity: 350 to <750 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 400 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5012.033g": { + "Description": "Distribution Panel - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + } + } + } + }, + "D5012.033h": { + "Description": "Distribution Panel - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + } + }, + "D5012.033i": { + "Description": "Distribution Panel - Capacity: 750 to <1200 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 800 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5012.033j": { + "Description": "Distribution Panel - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + } + } + } + }, + "D5012.033k": { + "Description": "Distribution Panel - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Replace equipment" + } + } + } + }, + "D5012.033l": { + "Description": "Distribution Panel - Capacity: 1200 to 2000 Amp - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1600 Amp.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment in addition to repairing anchorage and concrete pad if floor mounted or wall if wall mounted." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5092.011a": { + "Description": "Battery Rack - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Pure DS1. Damaged, inoperative. Batteries fall, crack cases, dislodge conductors, or are otherwise damaged.", + "RepairAction": "Replace batteries." + }, + "DS2": { + "Description": "Pure DS2. Batteries spill battery acid.", + "RepairAction": "Clean up spilled acid." + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Battery rack collapses.", + "RepairAction": "Replace battery rack." + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + } + } + } + }, + "D5092.013a": { + "Description": "Battery Rack - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.013b": { + "Description": "Battery Rack - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Pure DS1. Damaged, inoperative but anchorage is OK. Batteries fall, crack cases, dislodge conductors, or are otherwise damaged.", + "RepairAction": "Replace batteries." + }, + "DS2": { + "Description": "Pure DS2. Batteries spill battery acid.", + "RepairAction": "Clean up spilled acid." + }, + "DS3": { + "Description": "Combination of DS1 & DS2", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS4": { + "Description": "Pure DS3. Battery rack collapses.", + "RepairAction": "Replace battery rack." + }, + "DS5": { + "Description": "Combination of DS1 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS6": { + "Description": "Combination of DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + }, + "DS7": { + "Description": "Combination of DS1 & DS2 & DS3", + "RepairAction": "Combination of pure DS repair actions." + } + } + } + }, + "D5092.013c": { + "Description": "Battery Rack - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Replace batteries." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Replace batteries and clean up acid." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Replace rack including batteries and clean up acid." + } + } + } + }, + "D5092.021a": { + "Description": "Battery Charger - Capacity: all - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service for intermittent voltage output or for blown surge suppressor." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5092.023a": { + "Description": "Battery Charger - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad / wall." + } + } + } + }, + "D5092.023b": { + "Description": "Battery Charger - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK.", + "RepairAction": "Service for intermittent voltage output or for blown surge suppressor." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Equipment damaged beyond repair.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5092.023c": { + "Description": "Battery Charger - Capacity: all - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad (if floor mounted and wall if wall mounted) and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad / wall." + }, + "DS3": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Service for intermittent voltage output or for blown surge suppressor." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative.", + "RepairAction": "Replace equipment." + } + } + } + }, + "D5092.031a": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.031b": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.031c": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.031d": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Unanchored equipment that is not vibration isolated - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Unanchored equipment that is not vibration isolated", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.032a": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.032b": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.032c": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + } + }, + "D5092.032d": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.032e": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.032f": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + } + }, + "D5092.032g": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.032h": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.032i": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + } + }, + "D5092.032j": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Vibration isolated equipment that is not snubbed or restrained - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.032k": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Vibration isolated equipment that is not snubbed or restrained - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.032l": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Vibration isolated equipment that is not snubbed or restrained - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Not designed for seismic loads\nSeismic Installation Conditions: Vibration isolated equipment that is not snubbed or restrained\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + } + }, + "D5092.033a": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.033b": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.033c": { + "Description": "Diesel generator - Capacity: 100 to <350 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 250 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + } + }, + "D5092.033d": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.033e": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.033f": { + "Description": "Diesel generator - Capacity: 350 to <750 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + } + }, + "D5092.033g": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.033h": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.033i": { + "Description": "Diesel generator - Capacity: 750 to 1200 kVA - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1000 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + } + }, + "D5092.033j": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Anchorage fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + } + } + } + }, + "D5092.033k": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Equipment fragility only", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Damaged, inoperative but anchorage is OK. Pipes and nozzles damaged.", + "RepairAction": "Repair fracture pipes and damaged nozzles." + }, + "DS2": { + "Description": "Damaged, inoperative but anchorage is OK. Drive shaft misalignment.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS3": { + "Description": "Damaged, inoperative but anchorage is OK. Minor electrical damage, e.g., failed relay.", + "RepairAction": "Minor electrical repair e.g., replace relay." + }, + "DS4": { + "Description": "Damaged, inoperative but anchorage is OK. Exhaust line disconnected at expansion bellows.", + "RepairAction": "Reconnect exhaust line." + } + } + } + }, + "D5092.033l": { + "Description": "Diesel generator - Capacity: 1200 to 2000 kVa - Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints - Combined anchorage/isolator & equipment fragility", + "Comments": "Costing is per unit and is based upon 1500 kVa.\nConstruction Quality: Normal - Designed for seismic loads but no special seismic certification\nSeismic Installation Conditions: Equipment that is either hard anchored or is vibration isolated with seismic snubbers/restraints\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": true, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Anchorage failure.", + "RepairAction": "Repair anchorage and concrete pad and remount equipment." + }, + "DS2": { + "Description": "Anchorage failure & Equipment damaged beyond repair.", + "RepairAction": "Replace equipment including attached utilities in addition to repairing anchorage and concrete pad." + }, + "DS3": { + "Description": "Damaged, Inoperative but anchorage is OK", + "RepairAction": "Repair fracture pipes & damaged nozzles, and or reconnect exhaust line." + }, + "DS4": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "Overhaul because of drive shaft misalignment." + }, + "DS5": { + "Description": "Equipment is damaged and inoperative but anchorage is OK.", + "RepairAction": "minor electrical repair e.g., replace relays." + } + } + } + }, + "E2022.001": { + "Description": "Modular office work stations. ", + "Comments": "Unanchored and installed per manufacturer's recommendations on a carpeted floor.\nConstruction Quality: Any\nSeismic Installation Conditions: Unsecured\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Wall units need to be adjusted and straightened. Some elements are bent / damaged and need to be replaced. ", + "RepairAction": "Adjust and or straightened wall units. Replace damaged units. Assume a repair cost of 5% of the replacement value." + } + } + } + }, + "E2022.010": { + "Description": "Unsecured fragile objects on shelves, unknown restraint", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Unknown conditions: some objects may have museum putty. Some cabinets may have latches. Some cabinets may be secured to the wall.\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Object falls off shelf or shelf overturns and object breaks or object breaks within cabinet.", + "RepairAction": "Replace object. Note: user must supply cost of replacement." + } + } + } + }, + "E2022.011": { + "Description": "Fragile contents secured by museum putty, Velcro or other weak but sticky stuff", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: High adhesion surface (e.g., museum putty) and secured in cabinets (e.g., with latches & cabinet is secured to wall)\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Object falls off shelf or shelf overturns and object breaks or object breaks within cabinet.", + "RepairAction": "Replace object. Note: user must supply cost of replacement." + } + } + } + }, + "E2022.012": { + "Description": "Fragile contents on shelves in storage cabinets with latches", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: In secured cabinets (e.g., with latches)\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Object falls off shelf or shelf overturns and object breaks or object breaks within cabinet.", + "RepairAction": "Replace object. Note: user must supply cost of replacement." + } + } + } + }, + "E2022.013": { + "Description": "Unsecured fragile objects on shelves, low friction surface", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Low friction coefficient (e.g., glass or metal on wood), in unsecured cabinets (e.g., no latches)\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Object falls off shelf or shelf overturns and object breaks or object breaks within cabinet.", + "RepairAction": "Replace object. Note: user must supply cost of replacement." + } + } + } + }, + "E2022.020": { + "Description": "Home entertainment equipment, unknown installation", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Falls, does not function.", + "RepairAction": "Replace equipment. User must supply replacement cost." + } + } + } + }, + "E2022.021": { + "Description": "Electronic equipment on wall mount brackets", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Unsecured\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Falls, does not function.", + "RepairAction": "Replace equipment. User must supply replacement cost." + } + } + } + }, + "E2022.022": { + "Description": "Desktop electronics including computers, monitors, stereos, etc on a slip resistant surface", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Unsecured\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Falls, does not function.", + "RepairAction": "Replace equipment. User must supply replacement cost." + } + } + } + }, + "E2022.023": { + "Description": "Desktop electronics including computers, monitors, stereos, etc, smooth surface", + "Comments": "Costing to be furnished by user. Consequence data assumes 16 SF of damage area.\nConstruction Quality: Any\nSeismic Installation Conditions: Unsecured\nNotes: This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Falls, does not function.", + "RepairAction": "Replace equipment. User must supply replacement cost." + } + } + } + }, + "E2022.102a": { + "Description": "Bookcase, 2 shelves, unanchored laterally", + "Comments": "Standard bookcase, unanchored laterally. Bookcase is 12-5/8\" deep x 29\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.102b": { + "Description": "Bookcase, 2 shelves, anchored laterally", + "Comments": "Standard bookcase, anchored laterally. Bookcase is 12-5/8\" deep x 29\" tall.\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.103a": { + "Description": "Bookcase, 3 shelves, unanchored laterally", + "Comments": "Standard bookcase, unanchored laterally. Bookcase is 12-5/8\" deep x 41\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.103b": { + "Description": "Bookcase, 3 shelves, anchored laterally", + "Comments": "Standard bookcase, anchored laterally. Bookcase is 12-5/8\" deep x 41\" tall.\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.104a": { + "Description": "Bookcase, 4 shelves, unanchored laterally", + "Comments": "Standard bookcase, unanchored laterally. Bookcase is 12-5/8\" deep x 56\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.104b": { + "Description": "Bookcase, 4 shelves, anchored laterally", + "Comments": "Standard bookcase, anchored laterally. Bookcase is 12-5/8\" deep x 56\" tall.\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.105a": { + "Description": "Bookcase, 5 shelves, unanchored laterally", + "Comments": "Standard bookcase, unanchored laterally. Bookcase is 12-5/8\" deep x 71\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.105b": { + "Description": "Bookcase, 5 shelves, anchored laterally", + "Comments": "Standard bookcase, anchored laterally. Bookcase is 12-5/8\" deep x 71\" tall.\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.106a": { + "Description": "Bookcase, 6 shelves, unanchored laterally", + "Comments": "Standard bookcase, unanchored laterally. Bookcase is 12-5/8\" deep x 81-1/4\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.106b": { + "Description": "Bookcase, 6 shelves, anchored laterally", + "Comments": "Standard bookcase, anchored laterally. Bookcase is 12-5/8\" deep x 81-1/4\" tall.\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Book case falls over and contents are scattered. Likely damage to bookcase. ", + "RepairAction": "Replace bookcase and restack / replace contents. " + } + } + } + }, + "E2022.112a": { + "Description": "Vertical Filing Cabinet, 2 drawer, unanchored laterally", + "Comments": "Filing cabinet, unanchored laterally. Cabinet has 2 drawers and is 15\" deep x 24\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. ", + "RepairAction": "Replace filing cabinet and refile / replace contents. " + } + } + } + }, + "E2022.112b": { + "Description": "Vertical Filing Cabinet, 2 drawer, anchored laterally", + "Comments": "Filing cabinet, anchored laterally. Cabinet has 2 drawers and is 15\" deep x 24\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. ", + "RepairAction": "Replace filing cabinet and refile / replace contents. " + } + } + } + }, + "E2022.114a": { + "Description": "Vertical Filing Cabinet, 4 drawer, unanchored laterally", + "Comments": "Filing cabinet, unanchored laterally. Cabinet has 4 drawers and is 15\" deep x 52\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. ", + "RepairAction": "Replace filing cabinet and refile / replace contents. " + } + } + } + }, + "E2022.114b": { + "Description": "Vertical Filing Cabinet, 4 drawer, anchored laterally", + "Comments": "Filing cabinet, anchored laterally. Cabinet has 4 drawers and is 15\" deep x 52\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. ", + "RepairAction": "Replace filing cabinet and refile / replace contents. " + } + } + } + }, + "E2022.124a": { + "Description": "Lateral Filing Cabinet, 2 drawer, unanchored laterally", + "Comments": "Filing cabinet, unanchored laterally. Cabinet has 4 drawers and is 18.6\" deep x 52.5\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. ", + "RepairAction": "Replace filing cabinet and refile / replace contents. " + } + } + } + }, + "E2022.124b": { + "Description": "Lateral Filing Cabinet, 2 drawer, anchored laterally", + "Comments": "Filing cabinet, anchored laterally. Cabinet has 4 drawers and is 18.6\" deep x 52.5\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. ", + "RepairAction": "Replace filing cabinet and refile / replace contents. " + } + } + } + }, + "E2022.125a": { + "Description": "Lateral Filing Cabinet, 4 drawer, unanchored laterally", + "Comments": "Filing cabinet, unanchored laterally. Cabinet has 5 drawers and is 18.6\" deep x 67.75\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Unsecured\nNotes: Peak floor velocity limit is calculated as a function of the aspect ratio of the filing cabinet and the building period, T. At the ground floor the fragility will be based upon the ground motion only. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. ", + "RepairAction": "Replace filing cabinet and refile / replace contents. " + } + } + } + }, + "E2022.125b": { + "Description": "Lateral Filing Cabinet, 4 drawer, anchored laterally", + "Comments": "Filing cabinet, anchored laterally. Cabinet has 5 drawers and is 18.6\" deep x 67.75\" tall\nConstruction Quality: Normal\nSeismic Installation Conditions: Secured\nNotes: User to provide median demand and dispersion values. The values listed are default PACT values and do not represent the response of this component. This component requires user specified cost and time consequence data. Values within PACT are defaults (equal to zero) and do not represent actual consequence.", + "SuggestedComponentBlockSize": "1 EA", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Filing cabinet falls over and contents are scattered. Likely damage to file cabinet. ", + "RepairAction": "Replace filing cabinet and refile / replace contents. " + } + } + } + }, + "F1012.001": { + "Description": "Storage racks designed and installed before 2007, big box retail (12' to 15' tall)", + "Comments": "Standard pallet back to back storage rack. Three to five levels tall with total height from 15 to 20 ft. Costing assumes one single side access rack. Costing of rack and restocking based upon 50 LF of rack. Costing of rack contents to be furnished by user. \nConstruction Quality: Normal\nSeismic Installation Conditions: Varies", + "SuggestedComponentBlockSize": "50 LF", + "RoundUpToIntegerQuantity": false, + "LimitStates": { + "LS1": { + "DS1": { + "Description": "Significant merchandise shedding from rack shelves.", + "RepairAction": "Minor repair to storage rack. Resort and restock shelves. Clean up debris. " + }, + "DS2": { + "Description": "Significant structural damage to rack structure.", + "RepairAction": "Remove and replace storage rack system. Make minor repair to adjacent finishes. Resort and restock shelves. Clean up debris. " + } + } + } + } +} \ No newline at end of file diff --git a/pelicun/resources/fragility_DB_HAZUS_EQ.csv b/pelicun/resources/fragility_DB_HAZUS_EQ.csv new file mode 100644 index 000000000..552029d21 --- /dev/null +++ b/pelicun/resources/fragility_DB_HAZUS_EQ.csv @@ -0,0 +1,266 @@ +ID,Incomplete,Demand-Type,Demand-Unit,Demand-Offset,Demand-Directional,LS1-Family,LS1-Theta_0,LS1-Theta_1,LS1-DamageStateWeights,LS2-Family,LS2-Theta_0,LS2-Theta_1,LS2-DamageStateWeights,LS3-Family,LS3-Theta_0,LS3-Theta_1,LS3-DamageStateWeights,LS4-Family,LS4-Theta_0,LS4-Theta_1,LS4-DamageStateWeights +STR.W1.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.012,0.4,,lognormal,0.04,0.4,,lognormal,0.1,0.4,0.97 | 0.03 +STR.W1.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0099,0.4,,lognormal,0.0306,0.4,,lognormal,0.075,0.4,0.97 | 0.03 +STR.W1.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0099,0.4,,lognormal,0.0306,0.4,,lognormal,0.075,0.4,0.97 | 0.03 +STR.W1.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0079,0.4,,lognormal,0.0245,0.4,,lognormal,0.06,0.4,0.97 | 0.03 +STR.W2.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.012,0.4,,lognormal,0.04,0.4,,lognormal,0.1,0.4,0.97 | 0.03 +STR.W2.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0099,0.4,,lognormal,0.0306,0.4,,lognormal,0.075,0.4,0.97 | 0.03 +STR.W2.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0099,0.4,,lognormal,0.0306,0.4,,lognormal,0.075,0.4,0.97 | 0.03 +STR.W2.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0079,0.4,,lognormal,0.0245,0.4,,lognormal,0.06,0.4,0.97 | 0.03 +STR.S1L.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.006,0.4,,lognormal,0.012,0.4,,lognormal,0.03,0.4,,lognormal,0.08,0.4,0.92 | 0.08 +STR.S1L.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.006,0.4,,lognormal,0.0104,0.4,,lognormal,0.0235,0.4,,lognormal,0.06,0.4,0.92 | 0.08 +STR.S1L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.006,0.4,,lognormal,0.0096,0.4,,lognormal,0.0203,0.4,,lognormal,0.05,0.4,0.92 | 0.08 +STR.S1L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0048,0.4,,lognormal,0.0076,0.4,,lognormal,0.0162,0.4,,lognormal,0.04,0.4,0.92 | 0.08 +STR.S1M.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.02,0.4,,lognormal,0.0533,0.4,0.95 | 0.05 +STR.S1M.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0069,0.4,,lognormal,0.0157,0.4,,lognormal,0.04,0.4,0.95 | 0.05 +STR.S1M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.0135,0.4,,lognormal,0.0333,0.4,0.95 | 0.05 +STR.S1M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0051,0.4,,lognormal,0.0108,0.4,,lognormal,0.0267,0.4,0.95 | 0.05 +STR.S1H.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.003,0.4,,lognormal,0.006,0.4,,lognormal,0.015,0.4,,lognormal,0.04,0.4,0.97 | 0.03 +STR.S1H.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.003,0.4,,lognormal,0.0052,0.4,,lognormal,0.0118,0.4,,lognormal,0.03,0.4,0.97 | 0.03 +STR.S1H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.003,0.4,,lognormal,0.0048,0.4,,lognormal,0.0101,0.4,,lognormal,0.025,0.4,0.97 | 0.03 +STR.S1H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0024,0.4,,lognormal,0.0038,0.4,,lognormal,0.0081,0.4,,lognormal,0.02,0.4,0.97 | 0.03 +STR.S2L.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.005,0.4,,lognormal,0.01,0.4,,lognormal,0.03,0.4,,lognormal,0.08,0.4,0.92 | 0.08 +STR.S2L.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.005,0.4,,lognormal,0.0087,0.4,,lognormal,0.0233,0.4,,lognormal,0.06,0.4,0.92 | 0.08 +STR.S2L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.005,0.4,,lognormal,0.008,0.4,,lognormal,0.02,0.4,,lognormal,0.05,0.4,0.92 | 0.08 +STR.S2L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.016,0.4,,lognormal,0.04,0.4,0.92 | 0.08 +STR.S2M.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0033,0.4,,lognormal,0.0067,0.4,,lognormal,0.02,0.4,,lognormal,0.0533,0.4,0.95 | 0.05 +STR.S2M.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0033,0.4,,lognormal,0.0058,0.4,,lognormal,0.0156,0.4,,lognormal,0.04,0.4,0.95 | 0.05 +STR.S2M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0033,0.4,,lognormal,0.0053,0.4,,lognormal,0.0133,0.4,,lognormal,0.0333,0.4,0.95 | 0.05 +STR.S2M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0043,0.4,,lognormal,0.0107,0.4,,lognormal,0.0267,0.4,0.95 | 0.05 +STR.S2H.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0025,0.4,,lognormal,0.005,0.4,,lognormal,0.015,0.4,,lognormal,0.04,0.4,0.97 | 0.03 +STR.S2H.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0025,0.4,,lognormal,0.0043,0.4,,lognormal,0.0117,0.4,,lognormal,0.03,0.4,0.97 | 0.03 +STR.S2H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0025,0.4,,lognormal,0.004,0.4,,lognormal,0.01,0.4,,lognormal,0.025,0.4,0.97 | 0.03 +STR.S2H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0032,0.4,,lognormal,0.008,0.4,,lognormal,0.02,0.4,0.97 | 0.03 +STR.S3.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.97 | 0.03 +STR.S3.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.007,0.4,,lognormal,0.0187,0.4,,lognormal,0.0525,0.4,0.97 | 0.03 +STR.S3.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.0161,0.4,,lognormal,0.0438,0.4,0.97 | 0.03 +STR.S3.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0051,0.4,,lognormal,0.0128,0.4,,lognormal,0.035,0.4,0.97 | 0.03 +STR.S4L.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.92 | 0.08 +STR.S4L.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0069,0.4,,lognormal,0.0187,0.4,,lognormal,0.0525,0.4,0.92 | 0.08 +STR.S4L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.0161,0.4,,lognormal,0.0438,0.4,0.92 | 0.08 +STR.S4L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0051,0.4,,lognormal,0.0128,0.4,,lognormal,0.035,0.4,0.92 | 0.08 +STR.S4M.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0053,0.4,,lognormal,0.016,0.4,,lognormal,0.0467,0.4,0.95 | 0.05 +STR.S4M.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0046,0.4,,lognormal,0.0125,0.4,,lognormal,0.035,0.4,0.95 | 0.05 +STR.S4M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0043,0.4,,lognormal,0.0107,0.4,,lognormal,0.0292,0.4,0.95 | 0.05 +STR.S4M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0021,0.4,,lognormal,0.0034,0.4,,lognormal,0.0086,0.4,,lognormal,0.0233,0.4,0.95 | 0.05 +STR.S4H.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.004,0.4,,lognormal,0.012,0.4,,lognormal,0.035,0.4,0.97 | 0.03 +STR.S4H.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0035,0.4,,lognormal,0.0093,0.4,,lognormal,0.0262,0.4,0.97 | 0.03 +STR.S4H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0032,0.4,,lognormal,0.008,0.4,,lognormal,0.0219,0.4,0.97 | 0.03 +STR.S4H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0016,0.4,,lognormal,0.0026,0.4,,lognormal,0.0064,0.4,,lognormal,0.0175,0.4,0.97 | 0.03 +STR.S5L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.003,0.4,,lognormal,0.006,0.4,,lognormal,0.015,0.4,,lognormal,0.035,0.4,0.92 | 0.08 +STR.S5L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0024,0.4,,lognormal,0.0048,0.4,,lognormal,0.012,0.4,,lognormal,0.028,0.4,0.92 | 0.08 +STR.S5M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.004,0.4,,lognormal,0.01,0.4,,lognormal,0.0233,0.4,0.95 | 0.05 +STR.S5M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0016,0.4,,lognormal,0.0032,0.4,,lognormal,0.008,0.4,,lognormal,0.0187,0.4,0.95 | 0.05 +STR.S5H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0015,0.4,,lognormal,0.003,0.4,,lognormal,0.0075,0.4,,lognormal,0.0175,0.4,0.97 | 0.03 +STR.S5H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0012,0.4,,lognormal,0.0024,0.4,,lognormal,0.006,0.4,,lognormal,0.014,0.4,0.97 | 0.03 +STR.C1L.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.005,0.4,,lognormal,0.01,0.4,,lognormal,0.03,0.4,,lognormal,0.08,0.4,0.87 | 0.13 +STR.C1L.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.005,0.4,,lognormal,0.0087,0.4,,lognormal,0.0233,0.4,,lognormal,0.06,0.4,0.87 | 0.13 +STR.C1L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.005,0.4,,lognormal,0.008,0.4,,lognormal,0.02,0.4,,lognormal,0.05,0.4,0.87 | 0.13 +STR.C1L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.016,0.4,,lognormal,0.04,0.4,0.87 | 0.13 +STR.C1M.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0033,0.4,,lognormal,0.0067,0.4,,lognormal,0.02,0.4,,lognormal,0.0533,0.4,0.9 | 0.1 +STR.C1M.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0033,0.4,,lognormal,0.0058,0.4,,lognormal,0.0156,0.4,,lognormal,0.04,0.4,0.9 | 0.1 +STR.C1M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0033,0.4,,lognormal,0.0053,0.4,,lognormal,0.0133,0.4,,lognormal,0.0333,0.4,0.9 | 0.1 +STR.C1M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0043,0.4,,lognormal,0.0107,0.4,,lognormal,0.0267,0.4,0.9 | 0.1 +STR.C1H.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0025,0.4,,lognormal,0.005,0.4,,lognormal,0.015,0.4,,lognormal,0.04,0.4,0.95 | 0.05 +STR.C1H.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0025,0.4,,lognormal,0.0043,0.4,,lognormal,0.0117,0.4,,lognormal,0.03,0.4,0.95 | 0.05 +STR.C1H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0025,0.4,,lognormal,0.004,0.4,,lognormal,0.01,0.4,,lognormal,0.025,0.4,0.95 | 0.05 +STR.C1H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0032,0.4,,lognormal,0.008,0.4,,lognormal,0.02,0.4,0.95 | 0.05 +STR.C2L.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.01,0.4,,lognormal,0.03,0.4,,lognormal,0.08,0.4,0.87 | 0.13 +STR.C2L.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0084,0.4,,lognormal,0.0232,0.4,,lognormal,0.06,0.4,0.87 | 0.13 +STR.C2L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0076,0.4,,lognormal,0.0197,0.4,,lognormal,0.05,0.4,0.87 | 0.13 +STR.C2L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0061,0.4,,lognormal,0.0158,0.4,,lognormal,0.04,0.4,0.87 | 0.13 +STR.C2M.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0067,0.4,,lognormal,0.02,0.4,,lognormal,0.0533,0.4,0.9 | 0.1 +STR.C2M.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0056,0.4,,lognormal,0.0154,0.4,,lognormal,0.04,0.4,0.9 | 0.1 +STR.C2M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0051,0.4,,lognormal,0.0132,0.4,,lognormal,0.0333,0.4,0.9 | 0.1 +STR.C2M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0021,0.4,,lognormal,0.0041,0.4,,lognormal,0.0105,0.4,,lognormal,0.0267,0.4,0.9 | 0.1 +STR.C2H.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.005,0.4,,lognormal,0.015,0.4,,lognormal,0.04,0.4,0.95 | 0.05 +STR.C2H.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0042,0.4,,lognormal,0.0116,0.4,,lognormal,0.03,0.4,0.95 | 0.05 +STR.C2H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0038,0.4,,lognormal,0.0099,0.4,,lognormal,0.025,0.4,0.95 | 0.05 +STR.C2H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0016,0.4,,lognormal,0.0031,0.4,,lognormal,0.0079,0.4,,lognormal,0.02,0.4,0.95 | 0.05 +STR.C3L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.003,0.4,,lognormal,0.006,0.4,,lognormal,0.015,0.4,,lognormal,0.035,0.4,0.85 | 0.15 +STR.C3L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0024,0.4,,lognormal,0.0048,0.4,,lognormal,0.012,0.4,,lognormal,0.028,0.4,0.85 | 0.15 +STR.C3M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.004,0.4,,lognormal,0.01,0.4,,lognormal,0.0233,0.4,0.87 | 0.13 +STR.C3M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0016,0.4,,lognormal,0.0032,0.4,,lognormal,0.008,0.4,,lognormal,0.0187,0.4,0.87 | 0.13 +STR.C3H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0015,0.4,,lognormal,0.003,0.4,,lognormal,0.0075,0.4,,lognormal,0.0175,0.4,0.9 | 0.1 +STR.C3H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0012,0.4,,lognormal,0.0024,0.4,,lognormal,0.006,0.4,,lognormal,0.014,0.4,0.9 | 0.1 +STR.PC1.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.85 | 0.15 +STR.PC1.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.007,0.4,,lognormal,0.0187,0.4,,lognormal,0.0525,0.4,0.85 | 0.15 +STR.PC1.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.0161,0.4,,lognormal,0.0438,0.4,0.85 | 0.15 +STR.PC1.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0051,0.4,,lognormal,0.0128,0.4,,lognormal,0.035,0.4,0.85 | 0.15 +STR.PC2L.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.85 | 0.15 +STR.PC2L.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0069,0.4,,lognormal,0.0187,0.4,,lognormal,0.0525,0.4,0.85 | 0.15 +STR.PC2L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.0161,0.4,,lognormal,0.0438,0.4,0.85 | 0.15 +STR.PC2L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0051,0.4,,lognormal,0.0128,0.4,,lognormal,0.035,0.4,0.85 | 0.15 +STR.PC2M.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0053,0.4,,lognormal,0.016,0.4,,lognormal,0.0467,0.4,0.87 | 0.13 +STR.PC2M.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0046,0.4,,lognormal,0.0125,0.4,,lognormal,0.035,0.4,0.87 | 0.13 +STR.PC2M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0043,0.4,,lognormal,0.0107,0.4,,lognormal,0.0292,0.4,0.87 | 0.13 +STR.PC2M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0021,0.4,,lognormal,0.0034,0.4,,lognormal,0.0086,0.4,,lognormal,0.0233,0.4,0.87 | 0.13 +STR.PC2H.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.004,0.4,,lognormal,0.012,0.4,,lognormal,0.035,0.4,0.9 | 0.1 +STR.PC2H.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0035,0.4,,lognormal,0.0094,0.4,,lognormal,0.0263,0.4,0.9 | 0.1 +STR.PC2H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0032,0.4,,lognormal,0.008,0.4,,lognormal,0.0219,0.4,0.9 | 0.1 +STR.PC2H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0016,0.4,,lognormal,0.0026,0.4,,lognormal,0.0064,0.4,,lognormal,0.0175,0.4,0.9 | 0.1 +STR.RM1L.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.87 | 0.13 +STR.RM1L.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0069,0.4,,lognormal,0.0187,0.4,,lognormal,0.0525,0.4,0.87 | 0.13 +STR.RM1L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.0161,0.4,,lognormal,0.0438,0.4,0.87 | 0.13 +STR.RM1L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0051,0.4,,lognormal,0.0128,0.4,,lognormal,0.035,0.4,0.87 | 0.13 +STR.RM1M.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0053,0.4,,lognormal,0.016,0.4,,lognormal,0.0467,0.4,0.9 | 0.1 +STR.RM1M.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0046,0.4,,lognormal,0.0125,0.4,,lognormal,0.035,0.4,0.9 | 0.1 +STR.RM1M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0043,0.4,,lognormal,0.0107,0.4,,lognormal,0.0292,0.4,0.9 | 0.1 +STR.RM1M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0021,0.4,,lognormal,0.0034,0.4,,lognormal,0.0086,0.4,,lognormal,0.0233,0.4,0.9 | 0.1 +STR.RM2L.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.87 | 0.13 +STR.RM2L.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0069,0.4,,lognormal,0.0187,0.4,,lognormal,0.0525,0.4,0.87 | 0.13 +STR.RM2L.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.0064,0.4,,lognormal,0.0161,0.4,,lognormal,0.0438,0.4,0.87 | 0.13 +STR.RM2L.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0051,0.4,,lognormal,0.0128,0.4,,lognormal,0.035,0.4,0.87 | 0.13 +STR.RM2M.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0053,0.4,,lognormal,0.016,0.4,,lognormal,0.0467,0.4,0.9 | 0.1 +STR.RM2M.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0046,0.4,,lognormal,0.0125,0.4,,lognormal,0.035,0.4,0.9 | 0.1 +STR.RM2M.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0027,0.4,,lognormal,0.0043,0.4,,lognormal,0.0107,0.4,,lognormal,0.0292,0.4,0.9 | 0.1 +STR.RM2M.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0021,0.4,,lognormal,0.0034,0.4,,lognormal,0.0086,0.4,,lognormal,0.0233,0.4,0.9 | 0.1 +STR.RM2H.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.004,0.4,,lognormal,0.012,0.4,,lognormal,0.035,0.4,0.95 | 0.05 +STR.RM2H.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0035,0.4,,lognormal,0.0094,0.4,,lognormal,0.0263,0.4,0.95 | 0.05 +STR.RM2H.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.0032,0.4,,lognormal,0.008,0.4,,lognormal,0.0219,0.4,0.95 | 0.05 +STR.RM2H.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0016,0.4,,lognormal,0.0026,0.4,,lognormal,0.0064,0.4,,lognormal,0.0175,0.4,0.95 | 0.05 +STR.URML.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.003,0.4,,lognormal,0.006,0.4,,lognormal,0.015,0.4,,lognormal,0.035,0.4,0.85 | 0.15 +STR.URML.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0024,0.4,,lognormal,0.0048,0.4,,lognormal,0.012,0.4,,lognormal,0.028,0.4,0.85 | 0.15 +STR.URMM.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.002,0.4,,lognormal,0.004,0.4,,lognormal,0.01,0.4,,lognormal,0.0233,0.4,0.85 | 0.15 +STR.URMM.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0016,0.4,,lognormal,0.0032,0.4,,lognormal,0.008,0.4,,lognormal,0.0187,0.4,0.85 | 0.15 +STR.MH.HC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.97 | 0.03 +STR.MH.MC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.97 | 0.03 +STR.MH.LC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.4,,lognormal,0.008,0.4,,lognormal,0.024,0.4,,lognormal,0.07,0.4,0.97 | 0.03 +STR.MH.PC,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.0032,0.4,,lognormal,0.0064,0.4,,lognormal,0.0192,0.4,,lognormal,0.056,0.4,0.97 | 0.03 +NSD,0,Peak Roof Drift Ratio,rad,0,0,lognormal,0.004,0.5,,lognormal,0.008,0.5,,lognormal,0.025,0.5,,lognormal,0.05,0.5, +NSA.HC,0,Peak Floor Acceleration,g,1,0,lognormal,0.3,0.6,,lognormal,0.6,0.6,,lognormal,1.2,0.6,,lognormal,2.4,0.6, +NSA.MC,0,Peak Floor Acceleration,g,1,0,lognormal,0.25,0.6,,lognormal,0.5,0.6,,lognormal,1.0,0.6,,lognormal,2.0,0.6, +NSA.LC,0,Peak Floor Acceleration,g,1,0,lognormal,0.2,0.6,,lognormal,0.4,0.6,,lognormal,0.8,0.6,,lognormal,1.6,0.6, +NSA.PC,0,Peak Floor Acceleration,g,1,0,lognormal,0.2,0.6,,lognormal,0.4,0.6,,lognormal,0.8,0.6,,lognormal,1.6,0.6, +LF.W1.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.26,0.65,,lognormal,0.55,0.65,,lognormal,1.28,0.65,,lognormal,2.01,0.65,0.97 | 0.03 +LF.W1.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.24,0.65,,lognormal,0.43,0.65,,lognormal,0.91,0.65,,lognormal,1.34,0.65,0.97 | 0.03 +LF.W1.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.2,0.65,,lognormal,0.34,0.65,,lognormal,0.61,0.65,,lognormal,0.95,0.65,0.97 | 0.03 +LF.W1.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.18,0.65,,lognormal,0.29,0.65,,lognormal,0.51,0.65,,lognormal,0.77,0.65,0.97 | 0.03 +LF.W2.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.26,0.65,,lognormal,0.56,0.65,,lognormal,1.15,0.65,,lognormal,2.08,0.65,0.97 | 0.03 +LF.W2.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.2,0.65,,lognormal,0.35,0.65,,lognormal,0.64,0.65,,lognormal,1.13,0.65,0.97 | 0.03 +LF.W2.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.23,0.65,,lognormal,0.48,0.65,,lognormal,0.75,0.65,0.97 | 0.03 +LF.W2.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.19,0.65,,lognormal,0.37,0.65,,lognormal,0.6,0.65,0.97 | 0.03 +LF.S1L.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.19,0.65,,lognormal,0.31,0.65,,lognormal,0.64,0.65,,lognormal,1.49,0.65,0.92 | 0.08 +LF.S1L.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.15,0.65,,lognormal,0.22,0.65,,lognormal,0.42,0.65,,lognormal,0.8,0.65,0.92 | 0.08 +LF.S1L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.17,0.65,,lognormal,0.3,0.65,,lognormal,0.48,0.65,0.92 | 0.08 +LF.S1L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.13,0.65,,lognormal,0.22,0.65,,lognormal,0.38,0.65,0.92 | 0.08 +LF.S1M.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.26,0.65,,lognormal,0.62,0.65,,lognormal,1.43,0.65,0.95 | 0.05 +LF.S1M.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.21,0.65,,lognormal,0.44,0.65,,lognormal,0.82,0.65,0.95 | 0.05 +LF.S1M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.18,0.65,,lognormal,0.29,0.65,,lognormal,0.49,0.65,0.95 | 0.05 +LF.S1M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.14,0.65,,lognormal,0.23,0.65,,lognormal,0.39,0.65,0.95 | 0.05 +LF.S1H.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.21,0.65,,lognormal,0.52,0.65,,lognormal,1.31,0.65,0.97 | 0.03 +LF.S1H.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.18,0.65,,lognormal,0.39,0.65,,lognormal,0.78,0.65,0.97 | 0.03 +LF.S1H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.15,0.65,,lognormal,0.28,0.65,,lognormal,0.48,0.65,0.97 | 0.03 +LF.S1H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.08,0.65,,lognormal,0.12,0.65,,lognormal,0.22,0.65,,lognormal,0.38,0.65,0.97 | 0.03 +LF.S2L.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.24,0.65,,lognormal,0.41,0.65,,lognormal,0.76,0.65,,lognormal,1.46,0.65,0.92 | 0.08 +LF.S2L.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.2,0.65,,lognormal,0.26,0.65,,lognormal,0.46,0.65,,lognormal,0.84,0.65,0.92 | 0.08 +LF.S2L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.17,0.65,,lognormal,0.3,0.65,,lognormal,0.5,0.65,0.92 | 0.08 +LF.S2L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.14,0.65,,lognormal,0.23,0.65,,lognormal,0.39,0.65,0.92 | 0.08 +LF.S2M.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.27,0.65,,lognormal,0.73,0.65,,lognormal,1.62,0.65,0.95 | 0.05 +LF.S2M.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.22,0.65,,lognormal,0.53,0.65,,lognormal,0.97,0.65,0.95 | 0.05 +LF.S2M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.18,0.65,,lognormal,0.35,0.65,,lognormal,0.58,0.65,0.95 | 0.05 +LF.S2M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.14,0.65,,lognormal,0.28,0.65,,lognormal,0.47,0.65,0.95 | 0.05 +LF.S2H.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.22,0.65,,lognormal,0.65,0.65,,lognormal,1.6,0.65,0.97 | 0.03 +LF.S2H.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.19,0.65,,lognormal,0.49,0.65,,lognormal,1.02,0.65,0.97 | 0.03 +LF.S2H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.17,0.65,,lognormal,0.36,0.65,,lognormal,0.63,0.65,0.97 | 0.03 +LF.S2H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.13,0.65,,lognormal,0.29,0.65,,lognormal,0.5,0.65,0.97 | 0.03 +LF.S3.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.15,0.65,,lognormal,0.26,0.65,,lognormal,0.54,0.65,,lognormal,1.0,0.65,0.97 | 0.03 +LF.S3.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.19,0.65,,lognormal,0.33,0.65,,lognormal,0.6,0.65,0.97 | 0.03 +LF.S3.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.13,0.65,,lognormal,0.2,0.65,,lognormal,0.38,0.65,0.97 | 0.03 +LF.S3.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.08,0.65,,lognormal,0.1,0.65,,lognormal,0.16,0.65,,lognormal,0.3,0.65,0.97 | 0.03 +LF.S4L.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.24,0.65,,lognormal,0.39,0.65,,lognormal,0.71,0.65,,lognormal,1.33,0.65,0.92 | 0.08 +LF.S4L.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.19,0.65,,lognormal,0.26,0.65,,lognormal,0.41,0.65,,lognormal,0.78,0.65,0.92 | 0.08 +LF.S4L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.16,0.65,,lognormal,0.26,0.65,,lognormal,0.46,0.65,0.92 | 0.08 +LF.S4L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.13,0.65,,lognormal,0.2,0.65,,lognormal,0.36,0.65,0.92 | 0.08 +LF.S4M.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.16,0.65,,lognormal,0.28,0.65,,lognormal,0.73,0.65,,lognormal,1.56,0.65,0.95 | 0.05 +LF.S4M.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.22,0.65,,lognormal,0.51,0.65,,lognormal,0.92,0.65,0.95 | 0.05 +LF.S4M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.17,0.65,,lognormal,0.31,0.65,,lognormal,0.54,0.65,0.95 | 0.05 +LF.S4M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.13,0.65,,lognormal,0.25,0.65,,lognormal,0.43,0.65,0.95 | 0.05 +LF.S4H.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.25,0.65,,lognormal,0.69,0.65,,lognormal,1.63,0.65,0.97 | 0.03 +LF.S4H.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.21,0.65,,lognormal,0.51,0.65,,lognormal,0.97,0.65,0.97 | 0.03 +LF.S4H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.17,0.65,,lognormal,0.33,0.65,,lognormal,0.59,0.65,0.97 | 0.03 +LF.S4H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.14,0.65,,lognormal,0.27,0.65,,lognormal,0.47,0.65,0.97 | 0.03 +LF.S5L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.17,0.65,,lognormal,0.28,0.65,,lognormal,0.45,0.65,0.92 | 0.08 +LF.S5L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.14,0.65,,lognormal,0.22,0.65,,lognormal,0.37,0.65,0.92 | 0.08 +LF.S5M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.18,0.65,,lognormal,0.34,0.65,,lognormal,0.53,0.65,0.95 | 0.05 +LF.S5M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.14,0.65,,lognormal,0.28,0.65,,lognormal,0.43,0.65,0.95 | 0.05 +LF.S5H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.18,0.65,,lognormal,0.35,0.65,,lognormal,0.58,0.65,0.97 | 0.03 +LF.S5H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.08,0.65,,lognormal,0.14,0.65,,lognormal,0.29,0.65,,lognormal,0.46,0.65,0.97 | 0.03 +LF.C1L.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.21,0.65,,lognormal,0.35,0.65,,lognormal,0.7,0.65,,lognormal,1.37,0.65,0.87 | 0.13 +LF.C1L.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.16,0.65,,lognormal,0.23,0.65,,lognormal,0.41,0.65,,lognormal,0.77,0.65,0.87 | 0.13 +LF.C1L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.15,0.65,,lognormal,0.27,0.65,,lognormal,0.45,0.65,0.87 | 0.13 +LF.C1L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.12,0.65,,lognormal,0.21,0.65,,lognormal,0.36,0.65,0.87 | 0.13 +LF.C1M.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.15,0.65,,lognormal,0.27,0.65,,lognormal,0.73,0.65,,lognormal,1.61,0.65,0.9 | 0.1 +LF.C1M.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.21,0.65,,lognormal,0.49,0.65,,lognormal,0.89,0.65,0.9 | 0.1 +LF.C1M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.17,0.65,,lognormal,0.32,0.65,,lognormal,0.54,0.65,0.9 | 0.1 +LF.C1M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.13,0.65,,lognormal,0.26,0.65,,lognormal,0.43,0.65,0.9 | 0.1 +LF.C1H.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.22,0.65,,lognormal,0.62,0.65,,lognormal,1.35,0.65,0.95 | 0.05 +LF.C1H.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.18,0.65,,lognormal,0.41,0.65,,lognormal,0.74,0.65,0.95 | 0.05 +LF.C1H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.15,0.65,,lognormal,0.27,0.65,,lognormal,0.44,0.65,0.95 | 0.05 +LF.C1H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.08,0.65,,lognormal,0.12,0.65,,lognormal,0.21,0.65,,lognormal,0.35,0.65,0.95 | 0.05 +LF.C2L.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.24,0.65,,lognormal,0.45,0.65,,lognormal,0.9,0.65,,lognormal,1.55,0.65,0.87 | 0.13 +LF.C2L.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.18,0.65,,lognormal,0.3,0.65,,lognormal,0.49,0.65,,lognormal,0.87,0.65,0.87 | 0.13 +LF.C2L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.19,0.65,,lognormal,0.3,0.65,,lognormal,0.52,0.65,0.87 | 0.13 +LF.C2L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.15,0.65,,lognormal,0.24,0.65,,lognormal,0.42,0.65,0.87 | 0.13 +LF.C2M.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.17,0.65,,lognormal,0.36,0.65,,lognormal,0.87,0.65,,lognormal,1.95,0.65,0.9 | 0.1 +LF.C2M.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.15,0.65,,lognormal,0.26,0.65,,lognormal,0.55,0.65,,lognormal,1.02,0.65,0.9 | 0.1 +LF.C2M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.19,0.65,,lognormal,0.38,0.65,,lognormal,0.63,0.65,0.9 | 0.1 +LF.C2M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.15,0.65,,lognormal,0.3,0.65,,lognormal,0.5,0.65,0.9 | 0.1 +LF.C2H.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.29,0.65,,lognormal,0.82,0.65,,lognormal,1.87,0.65,0.95 | 0.05 +LF.C2H.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.23,0.65,,lognormal,0.57,0.65,,lognormal,1.07,0.65,0.95 | 0.05 +LF.C2H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.19,0.65,,lognormal,0.38,0.65,,lognormal,0.65,0.65,0.95 | 0.05 +LF.C2H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.15,0.65,,lognormal,0.31,0.65,,lognormal,0.52,0.65,0.95 | 0.05 +LF.C3L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.17,0.65,,lognormal,0.26,0.65,,lognormal,0.44,0.65,0.85 | 0.15 +LF.C3L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.14,0.65,,lognormal,0.21,0.65,,lognormal,0.35,0.65,0.85 | 0.15 +LF.C3M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.17,0.65,,lognormal,0.32,0.65,,lognormal,0.51,0.65,0.87 | 0.13 +LF.C3M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.14,0.65,,lognormal,0.25,0.65,,lognormal,0.41,0.65,0.87 | 0.13 +LF.C3H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.16,0.65,,lognormal,0.33,0.65,,lognormal,0.53,0.65,0.9 | 0.1 +LF.C3H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.08,0.65,,lognormal,0.13,0.65,,lognormal,0.27,0.65,,lognormal,0.43,0.65,0.9 | 0.1 +LF.PC1.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.2,0.65,,lognormal,0.35,0.65,,lognormal,0.72,0.65,,lognormal,1.25,0.65,0.85 | 0.15 +LF.PC1.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.18,0.65,,lognormal,0.24,0.65,,lognormal,0.44,0.65,,lognormal,0.71,0.65,0.85 | 0.15 +LF.PC1.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.17,0.65,,lognormal,0.25,0.65,,lognormal,0.45,0.65,0.85 | 0.15 +LF.PC1.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.14,0.65,,lognormal,0.21,0.65,,lognormal,0.35,0.65,0.85 | 0.15 +LF.PC2L.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.24,0.65,,lognormal,0.36,0.65,,lognormal,0.69,0.65,,lognormal,1.23,0.65,0.85 | 0.15 +LF.PC2L.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.18,0.65,,lognormal,0.25,0.65,,lognormal,0.4,0.65,,lognormal,0.74,0.65,0.85 | 0.15 +LF.PC2L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.15,0.65,,lognormal,0.24,0.65,,lognormal,0.44,0.65,0.85 | 0.15 +LF.PC2L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.13,0.65,,lognormal,0.19,0.65,,lognormal,0.35,0.65,0.85 | 0.15 +LF.PC2M.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.17,0.65,,lognormal,0.29,0.65,,lognormal,0.67,0.65,,lognormal,1.51,0.65,0.87 | 0.13 +LF.PC2M.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.15,0.65,,lognormal,0.21,0.65,,lognormal,0.45,0.65,,lognormal,0.86,0.65,0.87 | 0.13 +LF.PC2M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.16,0.65,,lognormal,0.31,0.65,,lognormal,0.52,0.65,0.87 | 0.13 +LF.PC2M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.13,0.65,,lognormal,0.24,0.65,,lognormal,0.42,0.65,0.87 | 0.13 +LF.PC2H.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.23,0.65,,lognormal,0.63,0.65,,lognormal,1.49,0.65,0.9 | 0.1 +LF.PC2H.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.19,0.65,,lognormal,0.46,0.65,,lognormal,0.9,0.65,0.9 | 0.1 +LF.PC2H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.16,0.65,,lognormal,0.31,0.65,,lognormal,0.55,0.65,0.9 | 0.1 +LF.PC2H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.13,0.65,,lognormal,0.25,0.65,,lognormal,0.43,0.65,0.9 | 0.1 +LF.RM1L.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.3,0.65,,lognormal,0.46,0.65,,lognormal,0.93,0.65,,lognormal,1.57,0.65,0.87 | 0.13 +LF.RM1L.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.22,0.65,,lognormal,0.3,0.65,,lognormal,0.5,0.65,,lognormal,0.85,0.65,0.87 | 0.13 +LF.RM1L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.16,0.65,,lognormal,0.2,0.65,,lognormal,0.29,0.65,,lognormal,0.54,0.65,0.87 | 0.13 +LF.RM1L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.16,0.65,,lognormal,0.24,0.65,,lognormal,0.43,0.65,0.87 | 0.13 +LF.RM1M.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.2,0.65,,lognormal,0.37,0.65,,lognormal,0.81,0.65,,lognormal,1.9,0.65,0.9 | 0.1 +LF.RM1M.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.18,0.65,,lognormal,0.26,0.65,,lognormal,0.51,0.65,,lognormal,1.03,0.65,0.9 | 0.1 +LF.RM1M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.19,0.65,,lognormal,0.35,0.65,,lognormal,0.63,0.65,0.9 | 0.1 +LF.RM1M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.15,0.65,,lognormal,0.28,0.65,,lognormal,0.5,0.65,0.9 | 0.1 +LF.RM2L.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.26,0.65,,lognormal,0.42,0.65,,lognormal,0.87,0.65,,lognormal,1.49,0.65,0.87 | 0.13 +LF.RM2L.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.2,0.65,,lognormal,0.28,0.65,,lognormal,0.47,0.65,,lognormal,0.81,0.65,0.87 | 0.13 +LF.RM2L.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.18,0.65,,lognormal,0.28,0.65,,lognormal,0.51,0.65,0.87 | 0.13 +LF.RM2L.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.15,0.65,,lognormal,0.22,0.65,,lognormal,0.41,0.65,0.87 | 0.13 +LF.RM2M.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.17,0.65,,lognormal,0.33,0.65,,lognormal,0.75,0.65,,lognormal,1.83,0.65,0.9 | 0.1 +LF.RM2M.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.16,0.65,,lognormal,0.23,0.65,,lognormal,0.48,0.65,,lognormal,0.99,0.65,0.9 | 0.1 +LF.RM2M.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.17,0.65,,lognormal,0.34,0.65,,lognormal,0.6,0.65,0.9 | 0.1 +LF.RM2M.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.14,0.65,,lognormal,0.26,0.65,,lognormal,0.47,0.65,0.9 | 0.1 +LF.RM2H.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.24,0.65,,lognormal,0.67,0.65,,lognormal,1.78,0.65,0.95 | 0.05 +LF.RM2H.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.12,0.65,,lognormal,0.2,0.65,,lognormal,0.48,0.65,,lognormal,1.01,0.65,0.95 | 0.05 +LF.RM2H.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.17,0.65,,lognormal,0.35,0.65,,lognormal,0.62,0.65,0.95 | 0.05 +LF.RM2H.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.13,0.65,,lognormal,0.27,0.65,,lognormal,0.5,0.65,0.95 | 0.05 +LF.URML.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.14,0.65,,lognormal,0.2,0.65,,lognormal,0.32,0.65,,lognormal,0.46,0.65,0.85 | 0.15 +LF.URML.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.13,0.65,,lognormal,0.17,0.65,,lognormal,0.26,0.65,,lognormal,0.37,0.65,0.85 | 0.15 +LF.URMM.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.1,0.65,,lognormal,0.16,0.65,,lognormal,0.27,0.65,,lognormal,0.46,0.65,0.85 | 0.15 +LF.URMM.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.09,0.65,,lognormal,0.13,0.65,,lognormal,0.21,0.65,,lognormal,0.38,0.65,0.85 | 0.15 +LF.MH.HC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.18,0.65,,lognormal,0.31,0.65,,lognormal,0.6,0.65,0.97 | 0.03 +LF.MH.MC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.18,0.65,,lognormal,0.31,0.65,,lognormal,0.6,0.65,0.97 | 0.03 +LF.MH.LC,0,Peak Ground Acceleration,g,0,0,lognormal,0.11,0.65,,lognormal,0.18,0.65,,lognormal,0.31,0.65,,lognormal,0.6,0.65,0.97 | 0.03 +LF.MH.PC,0,Peak Ground Acceleration,g,0,0,lognormal,0.08,0.65,,lognormal,0.11,0.65,,lognormal,0.18,0.65,,lognormal,0.34,0.65,0.97 | 0.03 +GF.H.S,0,Permanent Ground Deformation,inch,0,0,lognormal,60.0,1.256,0.8 | 0.2,,,,,,,,,,,, +GF.H.D,0,Permanent Ground Deformation,inch,0,0,lognormal,184.0,1.659,0.8 | 0.2,,,,,,,,,,,, +GF.V.S,0,Permanent Ground Deformation,inch,0,0,lognormal,10.0,1.256,0.8 | 0.2,,,,,,,,,,,, +GF.V.D,0,Permanent Ground Deformation,inch,0,0,lognormal,486.0,2.362,0.8 | 0.2,,,,,,,,,,,, diff --git a/pelicun/settings/default_config.json b/pelicun/settings/default_config.json new file mode 100644 index 000000000..eccd0d42c --- /dev/null +++ b/pelicun/settings/default_config.json @@ -0,0 +1,35 @@ +{ + "Options": { + "Verbose": false, + "Seed": null, + "LogShowMS": false, + "LogFile": "pelicun_log.txt", + "PrintLog": false, + "DemandOffset": { + "PFA": -1, + "PFV": -1 + }, + "SamplingMethod": "LHS_midpoint", + "NonDirectionalMultipliers": { + "ALL": 1.2 + }, + "EconomiesOfScale": { + "AcrossFloors": true, + "AcrossDamageStates": false + }, + "RepairCostAndTimeCorrelation": 1.0 + }, + "DemandAssessment": { + "Calibration": { + "Marginals": { + "ALL": { + "DistributionFamily": "lognormal" + } + } + }, + "Sampling": { + "SampleSize": 1000, + "PreserveRawOrder": false + } + } +} \ No newline at end of file diff --git a/pelicun/tests/.coveragerc b/pelicun/tests/.coveragerc deleted file mode 100644 index d1be75f1a..000000000 --- a/pelicun/tests/.coveragerc +++ /dev/null @@ -1,11 +0,0 @@ -[run] -source = - pelicun -omit = *test* - *lab.py - */python?.?/* - */site-packages/nose/* - setup.py - /docs/* - /examples/* - /resources/* \ No newline at end of file diff --git a/pelicun/tests/__init__.py b/pelicun/tests/__init__.py deleted file mode 100644 index be670cee6..000000000 --- a/pelicun/tests/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -# the sole purpose of this file is to make python 2.7 treat the tests folder -# as a module and load the other files appropriately \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0001.001.json b/pelicun/tests/resources/DL data/json/T0001.001.json deleted file mode 100644 index 1a8af8c68..000000000 --- a/pelicun/tests/resources/DL data/json/T0001.001.json +++ /dev/null @@ -1,165 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": false, - "Correlated": false, - "EDP": { - "Type": "Peak Floor Acceleration", - "Unit": [1, "g"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0001.001", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.444, - "Beta": 0.3, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DS", - "Weight": 1.0, - "AffectedArea": [0, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.0, - "Beta": 0.0, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.0, - "Beta": 0.0, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.0, - "Beta": 0.0, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [836.1, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.8361, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.6, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Second DS", - "Weight": 1.0, - "AffectedArea": [20, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.3, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.1, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.5, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [8361.0, 929.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [8.361, 0.929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.984, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Third DS", - "Weight": 1.0, - "AffectedArea": [20, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.3, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.1, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.25, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [83610.0, 9290.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [83.61, 9.29], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0002.001.json b/pelicun/tests/resources/DL data/json/T0002.001.json deleted file mode 100644 index 19a72afe6..000000000 --- a/pelicun/tests/resources/DL data/json/T0002.001.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": true, - "Correlated": false, - "EDP": { - "Type": "Story Drift Ratio", - "Unit": [1, "rad"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0002.001", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.05488, - "Beta": 0.0001, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.5, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.1, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.75, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [836.1, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.8361, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0002.002.json b/pelicun/tests/resources/DL data/json/T0002.002.json deleted file mode 100644 index 064dd92a3..000000000 --- a/pelicun/tests/resources/DL data/json/T0002.002.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": true, - "Correlated": false, - "EDP": { - "Type": "Peak Floor Acceleration", - "Unit": [1, "g"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0002.002", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 1.0, - "Beta": 0.0001, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DS", - "Weight": 1.0, - "AffectedArea": [200, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.5, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.1, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.25, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [836.1, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.8361, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0003.001.json b/pelicun/tests/resources/DL data/json/T0003.001.json deleted file mode 100644 index af12ea4d4..000000000 --- a/pelicun/tests/resources/DL data/json/T0003.001.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": false, - "Correlated": true, - "EDP": { - "Type": "Story Drift Ratio", - "Unit": [1, "rad"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0003.001", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.048, - "Beta": 0.50, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [92.901, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.092901, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.096, - "Beta": 0.25, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Second DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [9290.1, 9290.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [9.2901, 9.29], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0003.002.json b/pelicun/tests/resources/DL data/json/T0003.002.json deleted file mode 100644 index ccbc6e7c1..000000000 --- a/pelicun/tests/resources/DL data/json/T0003.002.json +++ /dev/null @@ -1,165 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": false, - "Correlated": true, - "EDP": { - "Type": "Story Drift Ratio", - "Unit": [1, "rad"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0003.002", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.048, - "Beta": 1.0, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [92.901, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.092901, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.072, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Second DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [929.01, 929.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.92901, 0.929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.096, - "Beta": 0.25, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Third DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [9290.1, 9290.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [9.2901, 9.29], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0003.003.json b/pelicun/tests/resources/DL data/json/T0003.003.json deleted file mode 100644 index 48c062bdd..000000000 --- a/pelicun/tests/resources/DL data/json/T0003.003.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": false, - "Correlated": true, - "EDP": { - "Type": "Peak Floor Acceleration", - "Unit": [1, "g"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0003.003", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.3, - "Beta": 1.0, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DSG", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [92.901, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.092901, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.6, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "MutuallyExclusive", - "DamageStates": [ - { - "Description": "First DS of Second DSG", - "Weight": 0.5, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [464.501, 464.5], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.464501, 0.4645], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - }, - { - "Description": "Second DS of Second DSG", - "Weight": 0.3, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [929.01, 929.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.92901, 0.929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - }, - { - "Description": "Third DS of Second DSG", - "Weight": 0.2, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [1858.01, 1858.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [1.85801, 1.858], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 1.2, - "Beta": 0.25, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Third DSG", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [9290.1, 9290.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [9.2901, 9.29], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0003.004.json b/pelicun/tests/resources/DL data/json/T0003.004.json deleted file mode 100644 index 413114cb6..000000000 --- a/pelicun/tests/resources/DL data/json/T0003.004.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": false, - "Correlated": true, - "EDP": { - "Type": "Peak Floor Acceleration", - "Unit": [1, "g"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0003.004", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.3, - "Beta": 1.0, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DSG", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [92.901, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.092901, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.6, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Simultaneous", - "DamageStates": [ - { - "Description": "First DS of Second DSG", - "Weight": 0.5, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [464.501, 464.5], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.464501, 0.4645], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - }, - { - "Description": "Second DS of Second DSG", - "Weight": 0.3, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [929.01, 929.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.92901, 0.929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - }, - { - "Description": "Third DS of Second DSG", - "Weight": 0.2, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [1858.01, 1858.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [1.85801, 1.858], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 1.2, - "Beta": 0.25, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Third DSG", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.49, - "Beta": 0.0001, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [9290.1, 9290.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [9.2901, 9.29], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.0001, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0004.001.json b/pelicun/tests/resources/DL data/json/T0004.001.json deleted file mode 100644 index ef8c5539e..000000000 --- a/pelicun/tests/resources/DL data/json/T0004.001.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": false, - "Correlated": false, - "EDP": { - "Type": "Story Drift Ratio", - "Unit": [1, "rad"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0004.001", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.03, - "Beta": 0.40, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.5, - "Beta": 0.34, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.1, - "Beta": 0.35, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.87, - "Beta": 0.33, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [92.901, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.31, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.092901, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "Normal", - "Beta": 0.32, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.06, - "Beta": 0.40, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Second DS", - "Weight": 1.0, - "AffectedArea": [100, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.74, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.75, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.23185, - "Beta": 0.73, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [9290.1, 9290.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "Normal", - "Beta": 0.71, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [9.2901, 9.29], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.72, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0004.001b.json b/pelicun/tests/resources/DL data/json/T0004.001b.json deleted file mode 100644 index 431e91d35..000000000 --- a/pelicun/tests/resources/DL data/json/T0004.001b.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": false, - "Correlated": false, - "EDP": { - "Type": "Story Drift Ratio", - "Unit": [1, "rad"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0004.001", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.03, - "Beta": 0.40, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "ReconstructionCost": { - "Amount": [92.901, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.31, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.092901, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "Normal", - "Beta": 0.32, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.06, - "Beta": 0.40, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Second DS", - "Weight": 1.0, - "AffectedArea": [100, "SF"], - "Consequences": { - "ReconstructionCost": { - "Amount": [9290.1, 9290.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "Normal", - "Beta": 0.71, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [9.2901, 9.29], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.72, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/json/T0004.002.json b/pelicun/tests/resources/DL data/json/T0004.002.json deleted file mode 100644 index 816813862..000000000 --- a/pelicun/tests/resources/DL data/json/T0004.002.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "Name": "Made-up component to test loss assessment", - "QuantityUnit": [100, "SF"], - "Directional": false, - "Correlated": false, - "EDP": { - "Type": "Story Drift Ratio", - "Unit": [1, "rad"], - "Offset": 0 - }, - "GeneralInformation": { - "ID": "T0004.002", - "Description": "Costing per square unit (100 SF)", - "Incomplete": false - }, - "DSGroups": [ - { - "MedianEDP": 0.03, - "Beta": 0.40, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "First DS", - "Weight": 1.0, - "AffectedArea": [50, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.5, - "Beta": 0.34, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.1, - "Beta": 0.35, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.50, - "Beta": 0.33, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [92.901, 92.9], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.31, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [0.092901, 0.0929], - "Quantity": [1.0764, 9.6878], - "CurveType": "LogNormal", - "Beta": 0.32, - "Bounds": [0, "None"] - } - } - } - ] - }, - { - "MedianEDP": 0.06, - "Beta": 0.40, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Description": "Second DS", - "Weight": 1.0, - "AffectedArea": [100, "SF"], - "Consequences": { - "Injuries": [ - { - "Amount": 0.6, - "Beta": 0.74, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - { - "Amount": 0.2, - "Beta": 0.75, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - } - ], - "RedTag": { - "Amount": 0.23185, - "Beta": 0.73, - "CurveType": "Normal", - "Bounds": [0.0, 1.0] - }, - "ReconstructionCost": { - "Amount": [9290.1, 9290.0], - "Quantity": [1.0764, 9.6878], - "CurveType": "Normal", - "Beta": 0.71, - "Bounds": [0, "None"] - }, - "ReconstructionTime": { - "Amount": [9.2901, 9.29], - "Quantity": [1.0764, 9.6878], - "CurveType": "Normal", - "Beta": 0.72, - "Bounds": [0, "None"] - } - } - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0001.001.xml b/pelicun/tests/resources/DL data/xml/T0001.001.xml deleted file mode 100644 index 906e80ff4..000000000 --- a/pelicun/tests/resources/DL data/xml/T0001.001.xml +++ /dev/null @@ -1,123 +0,0 @@ - - - T0001.001 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 0 - false - - NumLevelsPlusOne - Acceleration - g - false - - false - false - - Sequential - - First DS - - Minor repair measures - - 0 - 0 - 0 - 0 - 0 - 0 - - 1.0764 - 836.1 - 9.6878 - 92.9 - 0.0001 - LogNormal - - - 1.0764 - 0.8361 - 9.6878 - 0.0929 - 0.0001 - LogNormal - - - 0.37 - 0.3 - - - Second DS - - Intermediate repair measures - - - Square Foot - 20 - - - 0.1 - 0.3 - 0.0001 - 0.0001 - 0.5 - 0.0001 - - 1.0764 - 8361.0 - 9.6878 - 929.0 - 0.0001 - LogNormal - - - 1.0764 - 8.361 - 9.6878 - 0.929 - 0.0001 - LogNormal - - - 0.5 - 0.4 - - - Third DS - - Major repair measures - - - Square Foot - 20 - - - 0.1 - 0.3 - 0.0001 - 0.0001 - 0.25 - 0.0001 - - 1.0764 - 83610.0 - 9.6878 - 9290.0 - 0.0001 - LogNormal - - - 1.0764 - 83.61 - 9.6878 - 9.29 - 0.0001 - LogNormal - - - 0.82 - 0.5 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0002.001.xml b/pelicun/tests/resources/DL data/xml/T0002.001.xml deleted file mode 100644 index a64f19da3..000000000 --- a/pelicun/tests/resources/DL data/xml/T0002.001.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - T0007.001 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 0 - false - - NumLevelsPlusOne - Story Drift Ratio - Radian - false - - false - false - - Sequential - - First DS - - Minor repair measures - - - Square Foot - 50 - - - 0.1 - 0.5 - 0.0001 - 0.0001 - 0.75 - 0.0001 - - 1.0764 - 836.1 - 9.6878 - 92.9 - 0.0001 - LogNormal - - - 1.0764 - 0.8361 - 9.6878 - 0.0929 - 0.0001 - LogNormal - - - 0.05488 - 0.0001 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0002.002.xml b/pelicun/tests/resources/DL data/xml/T0002.002.xml deleted file mode 100644 index 791ea7040..000000000 --- a/pelicun/tests/resources/DL data/xml/T0002.002.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - T0002.002 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 0 - false - - NumLevelsPlusOne - Acceleration - g - false - - false - false - - Sequential - - First DS - - Minor repair measures - - - Square Foot - 200 - - - 0.1 - 0.5 - 0.0001 - 0.0001 - 0.25 - 0.0001 - - 1.0764 - 836.1 - 9.6878 - 92.9 - 0.0001 - LogNormal - - - 1.0764 - 0.8361 - 9.6878 - 0.0929 - 0.0001 - LogNormal - - - 1.00 - 0.0001 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0003.001.xml b/pelicun/tests/resources/DL data/xml/T0003.001.xml deleted file mode 100644 index e0fbe64f8..000000000 --- a/pelicun/tests/resources/DL data/xml/T0003.001.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - T0003.001 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 1 - false - - NumLevelsPlusOne - Story Drift Ratio - Radian - false - - false - false - - Sequential - - First DS - - Minor repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 92.901 - 9.6878 - 92.9 - 0.0001 - LogNormal - - - 1.0764 - 0.092901 - 9.6878 - 0.0929 - 0.0001 - LogNormal - - - 0.04 - 0.50 - - - Second DS - - Major repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 9290.1 - 9.6878 - 9290.0 - 0.0001 - LogNormal - - - 1.0764 - 9.2901 - 9.6878 - 9.29 - 0.0001 - LogNormal - - - 0.08 - 0.25 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0003.002.xml b/pelicun/tests/resources/DL data/xml/T0003.002.xml deleted file mode 100644 index a1ea9dd07..000000000 --- a/pelicun/tests/resources/DL data/xml/T0003.002.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - T0003.002 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 1 - false - - NumLevelsPlusOne - Story Drift Ratio - Radian - false - - false - false - - Sequential - - First DS - - Minor repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 92.901 - 9.6878 - 92.9 - 0.0001 - LogNormal - - - 1.0764 - 0.092901 - 9.6878 - 0.0929 - 0.0001 - LogNormal - - - 0.04 - 1.0 - - - Second DS - - Intermediate repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 929.01 - 9.6878 - 929.0 - 0.0001 - LogNormal - - - 1.0764 - 0.92901 - 9.6878 - 0.929 - 0.0001 - LogNormal - - - 0.06 - 0.5 - - - Third DS - - Major repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 9290.1 - 9.6878 - 9290.0 - 0.0001 - LogNormal - - - 1.0764 - 9.2901 - 9.6878 - 9.29 - 0.0001 - LogNormal - - - 0.08 - 0.25 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0003.003.xml b/pelicun/tests/resources/DL data/xml/T0003.003.xml deleted file mode 100644 index cc25731d2..000000000 --- a/pelicun/tests/resources/DL data/xml/T0003.003.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - T0003.003 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 1 - false - - NumLevelsPlusOne - Acceleration - g - false - - false - false - - Sequential - - First DSG - - Minor repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 92.901 - 9.6878 - 92.9 - 0.0001 - LogNormal - - - 1.0764 - 0.092901 - 9.6878 - 0.0929 - 0.0001 - LogNormal - - - 0.25 - 1.0 - - - Second DSG - - MutuallyExclusive - - First DS of Second DSG - - Intermediate repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 464.501 - 9.6878 - 464.5 - 0.0001 - LogNormal - - - 1.0764 - 0.464501 - 9.6878 - 0.4645 - 0.0001 - LogNormal - - - 0.5 - - - Second DS of Second DSG - - Intermediate repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 929.01 - 9.6878 - 929.0 - 0.0001 - LogNormal - - - 1.0764 - 0.92901 - 9.6878 - 0.929 - 0.0001 - LogNormal - - - 0.3 - - - Third DS of Second DSG - - Intermediate repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 1858.01 - 9.6878 - 1858.0 - 0.0001 - LogNormal - - - 1.0764 - 1.85801 - 9.6878 - 1.858 - 0.0001 - LogNormal - - - 0.2 - - - 0.5 - 0.5 - - - Third DSG - - Major repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 9290.01 - 9.6878 - 9290.0 - 0.0001 - LogNormal - - - 1.0764 - 9.2901 - 9.6878 - 9.29 - 0.0001 - LogNormal - - - 1.0 - 0.25 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0003.004.xml b/pelicun/tests/resources/DL data/xml/T0003.004.xml deleted file mode 100644 index 74f340a17..000000000 --- a/pelicun/tests/resources/DL data/xml/T0003.004.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - T0003.004 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 1 - false - - NumLevelsPlusOne - Acceleration - g - false - - false - false - - Sequential - - First DSG - - Minor repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 92.901 - 9.6878 - 92.9 - 0.0001 - LogNormal - - - 1.0764 - 0.092901 - 9.6878 - 0.0929 - 0.0001 - LogNormal - - - 0.25 - 1.0 - - - Second DSG - - Simultaneous - - First DS of Second DSG - - Intermediate repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 464.501 - 9.6878 - 464.5 - 0.0001 - LogNormal - - - 1.0764 - 0.464501 - 9.6878 - 0.4645 - 0.0001 - LogNormal - - - 0.5 - - - Second DS of Second DSG - - Intermediate repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 929.01 - 9.6878 - 929.0 - 0.0001 - LogNormal - - - 1.0764 - 0.92901 - 9.6878 - 0.929 - 0.0001 - LogNormal - - - 0.3 - - - Third DS of Second DSG - - Intermediate repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 1858.01 - 9.6878 - 1858.0 - 0.0001 - LogNormal - - - 1.0764 - 1.85801 - 9.6878 - 1.858 - 0.0001 - LogNormal - - - 0.2 - - - 0.5 - 0.5 - - - Third DSG - - Major repair measures - - - Square Foot - 50 - - - 0.2 - 0.6 - 0.0001 - 0.0001 - 0.49 - 0.0001 - - 1.0764 - 9290.01 - 9.6878 - 9290.0 - 0.0001 - LogNormal - - - 1.0764 - 9.2901 - 9.6878 - 9.29 - 0.0001 - LogNormal - - - 1.0 - 0.25 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0004.001.xml b/pelicun/tests/resources/DL data/xml/T0004.001.xml deleted file mode 100644 index be8cb123e..000000000 --- a/pelicun/tests/resources/DL data/xml/T0004.001.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - T0004.001 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 0 - false - - NumLevelsPlusOne - Story Drift Ratio - Radian - false - - false - false - - Sequential - - First DS - - Minor repair measures - - - Square Foot - 50 - - - 0.1 - 0.5 - 0.35 - 0.34 - 0.87 - 0.33 - - 1.0764 - 92.901 - 9.6878 - 92.9 - 0.31 - LogNormal - - - 1.0764 - 0.092901 - 9.6878 - 0.0929 - 0.32 - Normal - - - 0.03 - 0.40 - - - Second DS - - Major repair measures - - - Square Foot - 100 - - - 0.2 - 0.6 - 0.75 - 0.74 - 0.23185 - 0.73 - - 1.0764 - 9290.1 - 9.6878 - 9290.0 - 0.71 - Normal - - - 1.0764 - 9.2901 - 9.6878 - 9.29 - 0.72 - LogNormal - - - 0.06 - 0.40 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/DL data/xml/T0004.002.xml b/pelicun/tests/resources/DL data/xml/T0004.002.xml deleted file mode 100644 index d68d461c6..000000000 --- a/pelicun/tests/resources/DL data/xml/T0004.002.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - T0004.001 - Costing per square unit (100 SF) - Each - Made-up component to test loss assessment - 0 - false - - NumLevelsPlusOne - Story Drift Ratio - Radian - false - - false - false - - Sequential - - First DS - - Minor repair measures - - - Square Foot - 50 - - - 0.1 - 0.5 - 0.35 - 0.34 - 0.50 - 0.33 - - 1.0764 - 92.901 - 9.6878 - 92.9 - 0.31 - LogNormal - - - 1.0764 - 0.092901 - 9.6878 - 0.0929 - 0.32 - LogNormal - - - 0.03 - 0.40 - - - Second DS - - Major repair measures - - - Square Foot - 100 - - - 0.2 - 0.6 - 0.75 - 0.74 - 0.23185 - 0.73 - - 1.0764 - 9290.1 - 9.6878 - 9290.0 - 0.71 - Normal - - - 1.0764 - 9.2901 - 9.6878 - 9.29 - 0.72 - Normal - - - 0.06 - 0.40 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test.out b/pelicun/tests/resources/EDP data/EDP_table_test.out deleted file mode 100644 index 213ed2990..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test.out +++ /dev/null @@ -1,2 +0,0 @@ -%eval_id 1-PFA-0-1 -1 4.903325 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_10.out b/pelicun/tests/resources/EDP data/EDP_table_test_10.out deleted file mode 100644 index 6cf3a73c7..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_10.out +++ /dev/null @@ -1,2 +0,0 @@ - 1-PID-1-1 1-PID-1-2 1-PID-2-1 1-PID-2-2 -1 0.042000 0.042000 0.042000 0.042000 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_11.out b/pelicun/tests/resources/EDP data/EDP_table_test_11.out deleted file mode 100644 index 6cf3a73c7..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_11.out +++ /dev/null @@ -1,2 +0,0 @@ - 1-PID-1-1 1-PID-1-2 1-PID-2-1 1-PID-2-2 -1 0.042000 0.042000 0.042000 0.042000 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_2.out b/pelicun/tests/resources/EDP data/EDP_table_test_2.out deleted file mode 100644 index 056c5cbc6..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_2.out +++ /dev/null @@ -1,10001 +0,0 @@ - 1-PID-1-1 1-PID-2-1 1-PFA-0-1 1-PFA-1-1 -1 0.084034 0.055758 9.612194 8.521800 -2 0.071598 0.048692 9.675150 11.193573 -3 0.074622 0.045064 12.668798 19.998608 -4 0.116373 0.126565 9.221696 15.844972 -5 0.050433 0.016872 12.543347 13.331059 -6 0.088671 0.058806 10.687041 10.333828 -7 0.098995 0.047933 9.103575 13.814606 -8 0.054194 0.057625 8.701449 10.576258 -9 0.074110 0.028333 10.514232 10.217392 -10 0.063398 0.030743 10.835177 11.920620 -11 0.076070 0.041588 12.998148 13.394312 -12 0.093196 0.094329 10.543328 12.602819 -13 0.056932 0.032777 9.092682 10.477496 -14 0.077995 0.098243 11.412408 9.689539 -15 0.035537 0.013985 5.850706 11.616164 -16 0.078505 0.040754 13.533522 18.540643 -17 0.058991 0.032022 9.599608 9.986433 -18 0.066816 0.035512 8.102305 15.835313 -19 0.063943 0.023249 10.081932 12.914038 -20 0.095898 0.057419 14.416237 17.094278 -21 0.071524 0.050031 10.121787 11.233320 -22 0.092512 0.065868 13.174663 19.920234 -23 0.049158 0.026160 6.794900 11.594216 -24 0.095625 0.047312 9.451341 11.863481 -25 0.062134 0.031639 12.970827 11.189020 -26 0.088053 0.044309 16.160386 13.282056 -27 0.078030 0.042363 6.861270 11.046626 -28 0.056607 0.028148 9.483462 9.760088 -29 0.049747 0.022060 9.317966 8.758632 -30 0.048219 0.023857 9.809739 10.230630 -31 0.063666 0.026354 13.133158 14.397037 -32 0.084491 0.034811 13.341097 18.424505 -33 0.102518 0.054352 10.745479 13.775770 -34 0.082852 0.057457 13.960151 16.773328 -35 0.061468 0.030543 7.799797 8.028217 -36 0.074965 0.035188 11.440816 11.724960 -37 0.093782 0.077039 13.794515 17.004499 -38 0.106721 0.055041 13.309334 14.446057 -39 0.059147 0.027497 9.855089 10.749336 -40 0.073866 0.042607 20.388725 29.613452 -41 0.127974 0.057037 10.357752 13.715921 -42 0.061603 0.029395 12.730060 11.031036 -43 0.094537 0.045310 14.537426 11.780727 -44 0.107550 0.070448 12.960514 12.608819 -45 0.051481 0.038254 9.621851 10.777329 -46 0.169338 0.096753 13.581022 13.100751 -47 0.125185 0.067075 10.783161 10.387152 -48 0.076287 0.050903 8.218719 8.607601 -49 0.083091 0.039571 10.944450 15.514196 -50 0.060442 0.048724 6.243118 14.491071 -51 0.076796 0.045613 8.568868 11.900006 -52 0.075385 0.053715 11.181350 15.053894 -53 0.095101 0.066562 11.658953 13.397512 -54 0.108413 0.059534 8.403669 13.849830 -55 0.104532 0.070729 9.922139 13.031251 -56 0.088810 0.043939 10.263977 14.170798 -57 0.061631 0.051270 12.004925 14.272941 -58 0.137235 0.064297 10.884595 14.263419 -59 0.114280 0.072307 13.613298 14.355221 -60 0.051567 0.053222 11.733564 15.108550 -61 0.095062 0.042095 7.836120 10.161571 -62 0.093283 0.069105 7.701145 12.441442 -63 0.086179 0.038897 9.742228 15.228627 -64 0.111221 0.060980 11.857421 19.527196 -65 0.115089 0.084818 11.865050 15.862264 -66 0.098450 0.092856 8.728246 10.885734 -67 0.065752 0.049626 7.067444 9.792725 -68 0.052492 0.029025 10.877503 13.080180 -69 0.115153 0.089726 11.591917 15.805891 -70 0.091255 0.069726 11.960551 14.006025 -71 0.067821 0.038361 7.661558 15.798903 -72 0.089240 0.125711 15.735097 20.874242 -73 0.090248 0.046322 9.487544 10.583336 -74 0.104369 0.059690 7.116912 7.659131 -75 0.068823 0.041265 10.145908 8.888624 -76 0.142035 0.061646 11.929040 14.134047 -77 0.138014 0.070979 11.454078 22.794415 -78 0.113375 0.059288 14.893521 22.133001 -79 0.087057 0.034782 8.052492 8.553314 -80 0.081417 0.038073 9.950568 19.291685 -81 0.054829 0.036375 6.268553 12.817782 -82 0.093864 0.087730 11.937456 11.905643 -83 0.057085 0.031418 10.627330 19.605384 -84 0.055192 0.034421 13.249988 7.446689 -85 0.070202 0.049691 9.782797 12.554170 -86 0.084567 0.035649 10.107707 12.214953 -87 0.057852 0.028901 8.191937 12.927255 -88 0.071334 0.031692 11.035181 17.411536 -89 0.093899 0.057453 12.281544 13.543508 -90 0.085715 0.076175 10.501681 12.734672 -91 0.128224 0.077286 10.788955 11.234523 -92 0.092213 0.037599 9.116890 9.820075 -93 0.085956 0.070566 12.045865 11.481578 -94 0.080267 0.046964 11.736609 10.985795 -95 0.047505 0.034288 5.989446 7.299811 -96 0.110548 0.066098 7.344849 9.694192 -97 0.070717 0.060514 10.990775 12.370855 -98 0.090804 0.037711 12.081220 11.999331 -99 0.055838 0.055658 14.266516 11.480602 -100 0.052084 0.020709 6.233274 10.901486 -101 0.100063 0.061349 15.252423 18.359304 -102 0.075378 0.041913 13.700764 13.122987 -103 0.073924 0.037791 10.496621 10.179652 -104 0.063546 0.051553 10.492454 11.898130 -105 0.043187 0.029542 8.582116 11.010487 -106 0.055127 0.021967 7.892521 9.222777 -107 0.075734 0.029134 10.589515 14.763042 -108 0.092445 0.032722 13.140210 13.618313 -109 0.041262 0.037077 6.685669 10.991112 -110 0.092326 0.050392 12.154315 15.490818 -111 0.092209 0.063445 13.492318 13.634792 -112 0.055431 0.035494 13.229951 11.877052 -113 0.048012 0.019943 13.247545 9.938524 -114 0.090554 0.041731 11.758210 15.283622 -115 0.116000 0.078544 12.078616 17.948355 -116 0.045542 0.031014 9.238624 11.855134 -117 0.156085 0.121121 9.597161 10.688820 -118 0.064639 0.036388 7.632474 11.468517 -119 0.142308 0.111454 8.000611 8.317653 -120 0.103219 0.069591 15.881096 18.758289 -121 0.084442 0.041063 12.352554 13.914608 -122 0.076571 0.053467 7.917099 14.665887 -123 0.107946 0.035453 4.860350 9.553923 -124 0.096669 0.073539 8.484385 13.564415 -125 0.083775 0.043295 8.850517 13.209373 -126 0.083054 0.036707 11.513138 13.252584 -127 0.116317 0.084216 9.058384 18.923550 -128 0.062083 0.044493 10.309880 12.408948 -129 0.065566 0.037747 13.396479 16.904097 -130 0.081410 0.035593 8.706655 9.053617 -131 0.083564 0.064695 9.383406 13.834096 -132 0.092107 0.059444 9.704353 16.201634 -133 0.065471 0.043388 13.034161 15.236806 -134 0.037357 0.030041 9.287593 9.203296 -135 0.075451 0.041306 14.015662 18.066339 -136 0.081753 0.039874 8.846151 13.792511 -137 0.065830 0.040932 8.822065 9.442370 -138 0.082981 0.079265 9.914382 11.922153 -139 0.071095 0.035434 12.111674 11.413622 -140 0.087669 0.046305 16.696113 12.009539 -141 0.073045 0.026064 11.306703 10.728369 -142 0.065846 0.049681 11.115201 13.869762 -143 0.053765 0.028551 9.805299 12.956699 -144 0.045541 0.024293 7.791763 11.606962 -145 0.080730 0.068361 9.658218 11.472760 -146 0.067995 0.040809 10.078516 8.218543 -147 0.108320 0.058647 10.094464 14.230494 -148 0.071491 0.057522 9.140901 17.188271 -149 0.083179 0.036383 11.639257 9.622498 -150 0.047365 0.026014 7.029267 10.059897 -151 0.070878 0.087514 10.620487 13.127805 -152 0.070152 0.033354 12.032358 11.216850 -153 0.039616 0.017903 7.312562 8.720252 -154 0.048438 0.029570 10.441688 11.004391 -155 0.042906 0.030972 6.274096 9.896581 -156 0.057750 0.027456 10.493388 11.515004 -157 0.098262 0.071810 11.950936 17.102522 -158 0.035416 0.019811 13.114890 12.968839 -159 0.079001 0.078565 10.950098 14.912009 -160 0.064112 0.057601 11.195073 17.320793 -161 0.058643 0.057024 7.127612 11.108503 -162 0.036692 0.023530 10.339594 8.767201 -163 0.051661 0.062135 9.055269 13.944916 -164 0.035391 0.011866 5.082503 6.427080 -165 0.106397 0.044450 16.195095 12.506058 -166 0.106411 0.090577 9.982185 11.814003 -167 0.111705 0.074408 11.534516 14.245311 -168 0.183768 0.064706 13.520630 17.121069 -169 0.062238 0.031347 7.529748 8.660591 -170 0.074581 0.031587 9.429717 8.132427 -171 0.061047 0.033570 10.052439 12.047824 -172 0.062651 0.043390 8.094944 11.918338 -173 0.099521 0.037989 8.201325 16.016862 -174 0.065698 0.040442 11.390798 13.844537 -175 0.094192 0.034754 10.515116 9.076152 -176 0.102209 0.067574 11.377214 14.118543 -177 0.057372 0.038493 13.236594 13.928834 -178 0.081499 0.048486 11.098676 11.915917 -179 0.071688 0.044675 6.097764 10.774186 -180 0.064253 0.048502 6.139511 8.058595 -181 0.075677 0.042953 10.796222 12.849748 -182 0.084652 0.047997 11.031632 20.530685 -183 0.041549 0.018088 8.617576 12.026337 -184 0.081263 0.072772 19.123892 19.145415 -185 0.081904 0.029762 9.800998 16.213651 -186 0.101002 0.055980 11.232874 16.775323 -187 0.095537 0.036132 17.028958 17.063420 -188 0.041016 0.034424 10.078666 9.202537 -189 0.048089 0.032319 9.895064 12.593052 -190 0.079844 0.067615 9.518507 14.119268 -191 0.096272 0.075407 8.629595 12.286564 -192 0.058254 0.045920 8.300524 8.320637 -193 0.099537 0.066576 11.072249 15.455822 -194 0.065478 0.041733 5.742363 6.636033 -195 0.075116 0.032413 7.325792 13.347797 -196 0.080417 0.063442 7.651534 10.773705 -197 0.039724 0.030218 6.254866 6.422231 -198 0.082939 0.042239 12.774866 20.722075 -199 0.038996 0.024274 5.332493 6.466948 -200 0.075671 0.092377 12.434714 12.906577 -201 0.068300 0.050465 7.411098 12.731898 -202 0.091672 0.047641 6.193550 7.808704 -203 0.077194 0.044480 15.457287 13.578885 -204 0.080838 0.034839 7.793543 13.042546 -205 0.071077 0.027097 7.892070 9.658787 -206 0.058800 0.035362 11.875595 13.243499 -207 0.049196 0.031160 8.294048 10.695725 -208 0.031673 0.017325 6.270678 7.882884 -209 0.120557 0.078411 22.560780 20.128948 -210 0.058135 0.039681 10.556783 13.888289 -211 0.081621 0.039344 9.008276 15.201127 -212 0.100050 0.078891 9.232017 13.796280 -213 0.090615 0.074834 8.652628 9.253538 -214 0.099211 0.055093 18.940214 23.444033 -215 0.107366 0.064342 9.938559 15.341349 -216 0.103125 0.045189 10.127949 10.716815 -217 0.113143 0.045321 10.671456 10.403228 -218 0.101691 0.043364 7.069486 10.601555 -219 0.050145 0.026399 8.492813 10.616463 -220 0.124259 0.050306 15.044497 16.856063 -221 0.070526 0.034437 7.397501 17.782101 -222 0.048982 0.038288 6.618762 9.475394 -223 0.046626 0.040330 9.467192 10.310269 -224 0.089940 0.052156 9.739813 8.329723 -225 0.087781 0.065055 9.955529 17.685796 -226 0.062039 0.041351 6.551487 8.414994 -227 0.097735 0.064647 16.458480 16.035596 -228 0.079417 0.051183 6.316846 9.444517 -229 0.091062 0.060926 12.316199 16.215485 -230 0.054131 0.053516 6.479343 10.681225 -231 0.052361 0.023054 9.658206 14.047890 -232 0.084768 0.063751 10.647507 15.539068 -233 0.050503 0.030776 9.557106 15.909827 -234 0.050268 0.045525 8.611599 13.392073 -235 0.073604 0.035734 12.523092 18.526107 -236 0.075869 0.035130 9.988210 7.092738 -237 0.079686 0.074045 6.975554 10.853688 -238 0.094291 0.053405 13.716252 17.476382 -239 0.100352 0.081541 12.373589 10.850392 -240 0.065293 0.044472 12.375935 13.378510 -241 0.060830 0.030656 7.012534 11.842818 -242 0.114024 0.090296 10.834633 15.892398 -243 0.121728 0.054884 9.209693 11.058585 -244 0.100734 0.048417 9.902957 11.687881 -245 0.073079 0.026918 8.949539 10.934714 -246 0.074820 0.043188 7.675930 9.259880 -247 0.066572 0.021500 8.424233 11.034616 -248 0.071323 0.063146 10.103210 15.360269 -249 0.098708 0.064485 14.607914 15.652281 -250 0.079023 0.043004 11.758425 17.772478 -251 0.056876 0.061103 8.981358 11.222877 -252 0.124860 0.058220 13.232006 30.290109 -253 0.075870 0.042015 9.096111 12.201924 -254 0.045617 0.027445 7.105760 8.912201 -255 0.064628 0.040941 9.294784 10.417611 -256 0.067496 0.037630 9.587111 10.222507 -257 0.129299 0.093149 11.213727 13.282754 -258 0.072280 0.024923 15.267010 15.719756 -259 0.061959 0.020351 8.407309 13.747634 -260 0.084657 0.070026 9.928264 14.220137 -261 0.107484 0.041834 8.707069 11.028831 -262 0.072895 0.051434 9.691719 14.886388 -263 0.132577 0.112616 12.508178 10.484097 -264 0.106464 0.083782 7.087503 9.352473 -265 0.061730 0.060023 14.660419 18.151924 -266 0.064111 0.046316 13.269620 16.194037 -267 0.105856 0.049868 7.524546 12.873279 -268 0.072605 0.049893 12.664213 16.137060 -269 0.076736 0.066698 8.021957 14.784851 -270 0.038847 0.024303 8.689729 11.155590 -271 0.068921 0.034206 8.555379 11.965421 -272 0.076798 0.058856 9.341472 9.049011 -273 0.088886 0.046075 11.745904 13.739405 -274 0.070126 0.036697 9.551576 11.622673 -275 0.071426 0.030115 8.173217 9.705786 -276 0.121939 0.088484 15.853052 17.315035 -277 0.085233 0.092759 13.007022 19.848155 -278 0.088545 0.068782 8.337093 9.471604 -279 0.100332 0.072512 19.423869 13.966434 -280 0.070290 0.040413 5.810392 8.540841 -281 0.064281 0.046380 10.442575 12.841980 -282 0.069266 0.034540 10.328272 12.704832 -283 0.077344 0.030433 11.448618 15.360847 -284 0.048130 0.035167 8.324330 13.121107 -285 0.046449 0.021526 6.815686 10.848668 -286 0.063417 0.026927 6.466133 9.468956 -287 0.058941 0.053756 16.781407 16.375194 -288 0.051929 0.038272 6.274688 8.349880 -289 0.067677 0.041798 12.176144 17.447013 -290 0.087428 0.051288 9.441730 11.083675 -291 0.087992 0.050110 14.080969 21.306847 -292 0.067648 0.043825 13.167682 13.088540 -293 0.049284 0.021398 9.829672 9.965105 -294 0.079027 0.047972 11.855847 15.925853 -295 0.089708 0.048889 11.244843 17.734378 -296 0.070709 0.033423 8.969528 12.577842 -297 0.131662 0.064275 7.498601 8.955160 -298 0.063677 0.033169 9.553058 10.445972 -299 0.065108 0.034711 10.964014 10.151266 -300 0.082946 0.036238 11.050475 11.118496 -301 0.080115 0.067827 11.060906 10.785766 -302 0.085812 0.062068 7.232616 9.060320 -303 0.039710 0.032899 9.078131 9.637127 -304 0.108516 0.094081 7.166002 8.613862 -305 0.086671 0.067591 13.293437 13.483631 -306 0.095141 0.045732 12.742216 13.624141 -307 0.059694 0.031651 8.594792 14.037541 -308 0.071792 0.045521 10.006537 11.891473 -309 0.063547 0.039511 7.857811 14.560639 -310 0.079840 0.035345 14.469678 15.977114 -311 0.053874 0.031159 12.028654 18.310261 -312 0.041839 0.036073 8.190442 14.496080 -313 0.060368 0.031922 9.263563 10.596287 -314 0.059581 0.039098 8.810525 9.860254 -315 0.036045 0.026376 9.072244 17.679447 -316 0.134116 0.096634 8.748757 12.090907 -317 0.082416 0.039840 8.157492 11.860340 -318 0.123221 0.068833 9.802495 14.911594 -319 0.062239 0.048527 5.206649 6.993678 -320 0.077181 0.039371 5.104234 7.453646 -321 0.063465 0.036543 8.967898 9.923694 -322 0.061527 0.039304 7.290409 12.952579 -323 0.070503 0.044782 10.519061 12.963449 -324 0.099740 0.040583 11.460636 16.189234 -325 0.082925 0.061446 13.053059 15.377502 -326 0.058822 0.033564 7.977690 9.414355 -327 0.037368 0.036478 6.728056 10.460863 -328 0.045773 0.040886 5.330475 6.644946 -329 0.094829 0.056201 12.941058 14.412869 -330 0.069261 0.054719 6.583725 9.899016 -331 0.058553 0.033591 15.467758 17.307774 -332 0.061975 0.058635 14.484053 14.652921 -333 0.075227 0.035993 5.274288 9.927504 -334 0.093519 0.041547 11.268082 11.960989 -335 0.058752 0.026575 14.771224 18.220111 -336 0.083423 0.047894 12.357504 16.744982 -337 0.067544 0.031598 7.819065 10.108108 -338 0.073974 0.053097 11.341174 17.392386 -339 0.086086 0.034236 7.601245 10.531464 -340 0.082437 0.049390 9.178123 11.705496 -341 0.066995 0.029887 8.483986 9.600050 -342 0.073208 0.057050 10.956635 17.086515 -343 0.077039 0.040447 8.927329 10.482280 -344 0.078653 0.064538 8.401654 8.830571 -345 0.093800 0.056922 12.277018 16.005432 -346 0.082568 0.039516 12.882962 18.639033 -347 0.053540 0.027753 4.897905 6.965483 -348 0.052111 0.026874 12.534893 11.056491 -349 0.058689 0.024295 10.659586 13.946432 -350 0.123180 0.050408 11.086674 16.975429 -351 0.085185 0.044127 8.335687 13.472290 -352 0.054417 0.031796 9.961327 9.001337 -353 0.057700 0.064396 8.399219 9.728827 -354 0.113909 0.104090 15.648904 21.157986 -355 0.057125 0.037525 7.827816 14.589071 -356 0.057307 0.030115 7.794297 13.674000 -357 0.088143 0.019351 12.420909 21.995727 -358 0.089028 0.085762 12.510451 13.958868 -359 0.048503 0.029844 13.400570 14.346398 -360 0.068893 0.055389 9.510791 10.334151 -361 0.126773 0.078588 12.597740 16.660723 -362 0.042930 0.027011 7.577760 12.645329 -363 0.103639 0.097501 11.073861 13.200221 -364 0.126818 0.072901 10.371481 17.169458 -365 0.105474 0.076390 6.836404 8.343680 -366 0.088302 0.059714 13.348212 17.564538 -367 0.108453 0.102301 8.698786 12.106639 -368 0.070469 0.052572 12.196501 16.053779 -369 0.096127 0.078758 5.962205 8.572052 -370 0.065041 0.073988 12.329252 20.412687 -371 0.064413 0.039965 8.398435 11.365587 -372 0.078627 0.033183 8.970644 9.106946 -373 0.053771 0.033856 9.136567 13.374182 -374 0.101409 0.062647 10.501887 16.077151 -375 0.054706 0.042710 11.141413 10.703114 -376 0.127300 0.076865 6.897872 9.009297 -377 0.048642 0.023363 7.732279 14.640376 -378 0.128236 0.092979 11.666127 18.926392 -379 0.047294 0.022720 6.525020 10.728615 -380 0.056281 0.030982 11.484679 14.045077 -381 0.050796 0.023405 5.238299 8.343240 -382 0.077152 0.023260 10.889508 11.023230 -383 0.068510 0.050965 8.827961 8.381617 -384 0.077410 0.058532 9.963712 13.312285 -385 0.049043 0.023709 8.729925 14.338121 -386 0.102208 0.049359 16.877785 17.684724 -387 0.057071 0.049323 9.881731 10.579432 -388 0.105667 0.083143 17.392664 20.096319 -389 0.047634 0.018070 9.295104 14.516752 -390 0.052872 0.024563 14.327045 14.807197 -391 0.102439 0.068558 8.083222 18.465992 -392 0.100815 0.082079 10.259224 15.137912 -393 0.098200 0.050387 14.097401 11.302113 -394 0.072689 0.062153 17.376198 16.040111 -395 0.091719 0.050073 11.376655 17.580854 -396 0.106013 0.056212 11.115233 15.448288 -397 0.079880 0.049882 10.183317 14.280280 -398 0.128525 0.091256 5.862989 12.469343 -399 0.047373 0.042055 13.569121 16.642289 -400 0.089455 0.041887 10.062397 9.321009 -401 0.075628 0.037121 8.011564 13.697388 -402 0.068356 0.044342 12.948620 12.668185 -403 0.108293 0.065672 9.178379 10.320696 -404 0.070857 0.040071 9.580797 11.259374 -405 0.080669 0.046054 9.140057 13.434955 -406 0.063797 0.037267 7.547346 10.944628 -407 0.063650 0.046423 8.547198 10.493193 -408 0.090077 0.040585 7.292263 7.171892 -409 0.094562 0.043292 12.156212 17.297358 -410 0.054101 0.069220 9.748656 12.654775 -411 0.165827 0.098289 15.143183 15.245699 -412 0.095854 0.049174 8.376711 13.447989 -413 0.055454 0.019370 8.879012 10.420829 -414 0.088233 0.046477 9.522345 12.017755 -415 0.064529 0.030398 7.322060 9.771820 -416 0.124417 0.074940 9.866661 17.812079 -417 0.118151 0.090413 11.879595 15.050655 -418 0.073218 0.031866 9.663706 10.688641 -419 0.112144 0.040542 6.293395 10.294830 -420 0.075858 0.032579 8.083496 16.376267 -421 0.053778 0.050190 15.033864 12.867395 -422 0.067411 0.040693 11.773406 11.691355 -423 0.069358 0.040372 9.938073 13.577759 -424 0.071490 0.035512 10.339027 8.503569 -425 0.071780 0.047583 6.027201 11.237445 -426 0.041691 0.031982 7.682304 12.095249 -427 0.086990 0.064334 10.027245 14.762007 -428 0.107133 0.091775 14.147112 20.381616 -429 0.072384 0.045392 7.598721 10.381200 -430 0.094890 0.073920 9.369930 15.504376 -431 0.052809 0.025518 10.594953 8.037234 -432 0.114368 0.056793 14.661921 20.883486 -433 0.062165 0.019601 11.033279 10.050541 -434 0.058771 0.020959 10.372110 14.869968 -435 0.084908 0.050312 7.672657 8.949434 -436 0.082481 0.029613 9.579152 8.995930 -437 0.084835 0.062007 13.206835 15.382127 -438 0.047214 0.048448 9.696881 10.901394 -439 0.047520 0.038150 15.232720 16.869217 -440 0.056565 0.030536 8.191003 14.195469 -441 0.070356 0.031873 10.838928 9.778043 -442 0.058240 0.036158 8.367532 10.274071 -443 0.086428 0.062486 11.793888 14.005230 -444 0.076021 0.036857 8.410576 9.744712 -445 0.106656 0.055581 13.050665 17.134484 -446 0.037931 0.020987 8.745443 10.087010 -447 0.100995 0.038404 12.163518 16.873870 -448 0.084712 0.034890 12.485953 15.051873 -449 0.064402 0.032338 11.533429 12.839231 -450 0.085094 0.039272 11.519999 11.524960 -451 0.071335 0.047687 8.608302 9.644563 -452 0.074986 0.032151 6.998328 17.503836 -453 0.058041 0.040014 11.112410 13.594067 -454 0.071637 0.041887 8.229043 11.199492 -455 0.075446 0.075238 8.836079 21.545443 -456 0.051513 0.054429 10.688092 9.639678 -457 0.086472 0.055420 11.510367 14.521104 -458 0.059210 0.023745 10.608849 11.623829 -459 0.108315 0.092725 12.302685 15.167906 -460 0.134182 0.069824 9.538338 7.142414 -461 0.098027 0.055618 11.274332 16.390103 -462 0.078368 0.043078 8.609905 10.186543 -463 0.070876 0.047285 9.113563 14.481302 -464 0.084028 0.071388 10.412152 19.040429 -465 0.122055 0.052187 11.845797 14.000136 -466 0.053852 0.033389 10.691848 13.559023 -467 0.046611 0.042118 11.417999 16.773046 -468 0.054536 0.027163 10.523040 8.654479 -469 0.058571 0.021488 10.500488 11.500682 -470 0.080545 0.060168 12.374023 9.479016 -471 0.098910 0.076996 9.639848 10.145108 -472 0.056997 0.032155 10.005926 11.776167 -473 0.097332 0.066728 11.366907 18.352524 -474 0.062457 0.032217 11.758952 9.727954 -475 0.113906 0.068168 14.705510 12.982567 -476 0.110838 0.089868 11.155667 12.974083 -477 0.079319 0.053168 9.442802 9.659342 -478 0.084125 0.031525 11.964020 14.987463 -479 0.099929 0.053268 10.270413 12.148279 -480 0.096999 0.050038 16.946992 16.781391 -481 0.049312 0.027006 8.105209 11.944557 -482 0.075296 0.040811 8.958723 13.526577 -483 0.104176 0.048049 10.440747 10.165864 -484 0.087300 0.040918 17.998037 24.813710 -485 0.068519 0.035365 11.257760 12.276809 -486 0.058147 0.033789 10.756136 12.743421 -487 0.078077 0.092895 11.792538 17.537919 -488 0.061246 0.043365 7.229026 13.185542 -489 0.054997 0.024921 7.229531 7.336954 -490 0.026695 0.017262 8.556618 8.313026 -491 0.066227 0.033531 11.672189 15.441895 -492 0.074565 0.055398 10.113830 10.452371 -493 0.082405 0.079190 9.412100 11.661261 -494 0.057052 0.028587 8.860732 9.387828 -495 0.140941 0.065348 9.223067 10.998874 -496 0.059157 0.058223 7.843813 13.068743 -497 0.115852 0.066001 9.248253 16.335923 -498 0.096954 0.062754 12.570572 16.293096 -499 0.112451 0.077645 13.647131 18.872884 -500 0.061712 0.040376 12.478330 9.543965 -501 0.109268 0.046063 10.848233 9.347648 -502 0.067637 0.028699 11.049528 10.946299 -503 0.075786 0.032141 9.482284 12.330698 -504 0.068232 0.032148 9.491102 11.061549 -505 0.057450 0.038775 11.138878 16.479421 -506 0.085794 0.043322 11.511716 16.992931 -507 0.117913 0.105959 10.720738 16.368286 -508 0.030564 0.023448 11.945565 8.687227 -509 0.118549 0.122782 12.151658 16.644021 -510 0.100310 0.053496 12.086531 9.935730 -511 0.072227 0.040263 10.160429 12.366134 -512 0.120336 0.062551 7.173131 10.585722 -513 0.144180 0.115362 15.392500 15.776370 -514 0.067238 0.035504 6.399854 7.876474 -515 0.073406 0.054847 11.052150 13.755164 -516 0.059068 0.056205 8.933942 10.358676 -517 0.051549 0.046417 8.956524 10.729259 -518 0.118730 0.109081 10.131266 11.339133 -519 0.069047 0.048236 9.383051 12.013308 -520 0.047914 0.030564 13.106541 15.144247 -521 0.062021 0.051407 7.822781 17.140824 -522 0.036108 0.033208 9.020985 13.968906 -523 0.056878 0.034505 6.252928 10.941503 -524 0.108938 0.079998 11.772793 13.515989 -525 0.118798 0.071725 9.766843 15.641699 -526 0.055044 0.035597 8.697590 12.425500 -527 0.086216 0.074079 8.248901 11.091292 -528 0.075323 0.046829 6.442653 14.209889 -529 0.089643 0.072100 14.498546 14.877067 -530 0.088748 0.059582 13.807354 14.967563 -531 0.144613 0.150325 14.798339 23.855842 -532 0.042685 0.019494 6.595779 6.461099 -533 0.056424 0.029632 13.753399 16.372775 -534 0.056797 0.039863 11.133396 15.071595 -535 0.036913 0.022330 8.064012 9.682612 -536 0.050095 0.046288 8.617558 13.657100 -537 0.057085 0.027774 7.664470 7.629793 -538 0.084066 0.053019 13.677099 13.001871 -539 0.076530 0.035804 8.906460 10.035946 -540 0.068263 0.046491 10.367204 15.372014 -541 0.097382 0.062463 14.928472 14.378812 -542 0.092864 0.102460 12.592264 18.203807 -543 0.115362 0.061075 11.986176 16.247787 -544 0.117277 0.088960 13.952708 19.929758 -545 0.064593 0.075198 8.746851 12.836690 -546 0.077751 0.033873 11.020026 14.474581 -547 0.035062 0.027530 8.914072 11.370550 -548 0.075069 0.036421 8.456795 17.519361 -549 0.089253 0.074197 9.448177 14.022553 -550 0.108007 0.062792 9.333342 9.453441 -551 0.093662 0.070026 9.582746 12.165264 -552 0.093726 0.039631 9.272392 10.426543 -553 0.146155 0.070704 16.194197 15.388021 -554 0.086528 0.103748 12.614464 21.266315 -555 0.060955 0.033611 9.474236 13.741369 -556 0.055237 0.032377 11.821131 9.651803 -557 0.068851 0.060897 8.206145 13.253457 -558 0.077942 0.054165 8.137741 13.201148 -559 0.055629 0.034046 12.974855 14.390248 -560 0.051404 0.045505 11.073422 14.302237 -561 0.142393 0.071482 10.549824 20.734397 -562 0.068824 0.026629 6.455376 7.559803 -563 0.067367 0.037569 9.518221 13.441757 -564 0.078278 0.055505 13.690769 16.217894 -565 0.095258 0.072770 9.748221 12.374651 -566 0.085307 0.034082 9.741414 9.769063 -567 0.094968 0.044906 12.524247 13.527290 -568 0.058904 0.034835 11.956491 9.645832 -569 0.081910 0.064437 11.432436 11.213969 -570 0.084010 0.058098 10.112985 10.647712 -571 0.142988 0.076438 12.716107 16.683281 -572 0.044461 0.039013 10.984861 9.753152 -573 0.062464 0.056544 14.472579 18.020343 -574 0.119251 0.085113 10.519100 17.114649 -575 0.084921 0.068784 9.854943 10.876429 -576 0.068229 0.063376 9.562132 13.247128 -577 0.062340 0.038957 10.014350 14.128107 -578 0.048485 0.023541 7.515992 11.466950 -579 0.082359 0.045555 10.056311 15.232952 -580 0.049486 0.033623 8.177343 7.972410 -581 0.073239 0.074604 13.493114 15.160839 -582 0.072570 0.036473 7.863738 15.377915 -583 0.073522 0.050222 9.068013 12.147737 -584 0.102177 0.052792 10.110802 12.434046 -585 0.067902 0.042079 8.593330 10.666622 -586 0.079815 0.044171 6.671073 13.408074 -587 0.081230 0.066572 9.308292 15.127587 -588 0.071479 0.042750 8.447917 13.818051 -589 0.063478 0.033285 10.353286 12.801136 -590 0.042446 0.019302 7.059652 9.875209 -591 0.060077 0.028343 7.750667 8.317892 -592 0.048763 0.025367 12.012527 11.186423 -593 0.099711 0.049765 9.527913 13.310843 -594 0.081877 0.035384 8.620754 13.079599 -595 0.095041 0.049620 8.676654 17.098994 -596 0.086584 0.112803 12.352631 17.338564 -597 0.063102 0.032889 12.304568 15.960112 -598 0.072713 0.043547 11.639243 14.787242 -599 0.063169 0.058764 9.674192 16.067771 -600 0.091017 0.059803 11.286009 10.366888 -601 0.078566 0.025287 10.519823 10.458525 -602 0.059852 0.019286 7.753705 8.204576 -603 0.136186 0.098970 13.840643 18.015872 -604 0.077735 0.039772 9.994583 11.100338 -605 0.051903 0.029296 9.932808 13.299086 -606 0.099998 0.041981 12.339963 11.681131 -607 0.066089 0.051291 9.043752 11.862895 -608 0.090517 0.040744 10.822390 17.410727 -609 0.059733 0.025256 9.676177 9.958510 -610 0.044458 0.024791 9.509142 11.080936 -611 0.111626 0.095809 12.678084 18.637376 -612 0.077924 0.056477 15.230642 18.123629 -613 0.070909 0.047568 12.100718 13.942080 -614 0.131726 0.092116 14.891221 20.944542 -615 0.127654 0.064278 15.488939 17.329029 -616 0.086031 0.041356 8.131956 12.095915 -617 0.038768 0.020289 7.303762 9.208544 -618 0.054363 0.053958 7.801040 7.670009 -619 0.097836 0.054835 12.169123 14.170648 -620 0.166788 0.089284 11.975268 17.873611 -621 0.079289 0.068897 9.142514 13.469073 -622 0.053179 0.021824 10.797768 13.452088 -623 0.134139 0.058379 12.132550 17.065289 -624 0.054470 0.037001 8.181461 11.885074 -625 0.078038 0.065688 8.883582 10.152158 -626 0.064484 0.047116 12.811679 9.239633 -627 0.055774 0.027014 11.063119 12.991953 -628 0.124848 0.084861 9.056622 12.391131 -629 0.105624 0.047413 8.310555 16.284022 -630 0.086742 0.057463 14.330867 13.312749 -631 0.086926 0.064186 10.275808 14.876309 -632 0.130656 0.051047 14.684977 11.037703 -633 0.062476 0.057530 9.455687 14.307187 -634 0.054805 0.053545 9.710111 11.447760 -635 0.049902 0.029438 8.866152 10.376149 -636 0.096472 0.053599 10.887382 12.774069 -637 0.050367 0.031047 9.686768 13.310988 -638 0.069192 0.055359 14.929365 21.313863 -639 0.096011 0.058749 12.799028 16.221407 -640 0.083920 0.030302 5.110503 9.743102 -641 0.068319 0.021229 6.490221 11.526576 -642 0.061610 0.030326 9.447620 9.856670 -643 0.089325 0.050514 10.259347 15.226458 -644 0.064700 0.033141 14.116098 12.982718 -645 0.107312 0.088187 8.900894 17.376730 -646 0.110844 0.063116 9.752624 15.693111 -647 0.057071 0.051976 10.780839 13.263892 -648 0.066678 0.028151 6.750721 9.687201 -649 0.073392 0.023994 7.966432 11.071954 -650 0.071474 0.047037 7.051641 7.802976 -651 0.076405 0.037808 7.314488 8.758935 -652 0.101447 0.066640 12.926231 14.020587 -653 0.086683 0.040556 5.563143 8.032846 -654 0.077609 0.031945 8.998222 9.755147 -655 0.067434 0.050535 7.318275 9.652729 -656 0.116115 0.056072 6.250022 13.427810 -657 0.076125 0.042041 9.064854 10.346224 -658 0.066561 0.028921 12.434717 11.729409 -659 0.060630 0.035915 9.102191 9.970460 -660 0.081788 0.045844 8.891371 9.351852 -661 0.082002 0.036223 9.358247 9.456200 -662 0.051645 0.027760 11.400110 9.811355 -663 0.101963 0.052440 8.369956 7.042826 -664 0.063371 0.037281 9.281843 11.387773 -665 0.091276 0.058602 15.518874 15.328909 -666 0.079590 0.042677 7.411398 14.581764 -667 0.045769 0.026578 5.288280 7.857032 -668 0.073535 0.041955 14.584854 14.862724 -669 0.054695 0.036211 10.394347 14.434284 -670 0.142721 0.063310 10.785393 15.876863 -671 0.082242 0.061632 9.448225 15.695497 -672 0.050683 0.030140 6.750313 10.244506 -673 0.039525 0.018035 8.201560 9.070163 -674 0.076478 0.029326 7.407572 10.950281 -675 0.041769 0.017845 6.359994 5.540534 -676 0.046530 0.026829 11.028636 15.579312 -677 0.084539 0.033843 12.199144 13.086574 -678 0.084136 0.024032 7.552058 12.242645 -679 0.097554 0.048203 13.178246 14.616945 -680 0.126435 0.089052 11.450864 14.737919 -681 0.095342 0.042864 14.316351 16.129581 -682 0.064657 0.033835 10.822914 19.416051 -683 0.150151 0.048289 9.882036 13.779657 -684 0.073238 0.031274 10.480177 13.356297 -685 0.061844 0.030714 8.207552 14.183131 -686 0.079465 0.055746 11.638763 16.677758 -687 0.079208 0.054509 15.828569 17.430273 -688 0.075038 0.045017 12.123218 16.259292 -689 0.064451 0.045893 6.123927 10.061680 -690 0.078976 0.041016 9.510102 8.551871 -691 0.069089 0.040620 9.641850 9.773732 -692 0.070094 0.036163 12.491423 15.203750 -693 0.071549 0.045188 9.933882 9.671820 -694 0.134023 0.070450 10.732625 16.262243 -695 0.070549 0.031209 9.131087 12.417639 -696 0.072590 0.037920 9.083492 10.092350 -697 0.079289 0.047754 10.502959 11.204543 -698 0.070305 0.051261 9.138985 11.487166 -699 0.058396 0.048451 11.899955 13.991010 -700 0.072063 0.045957 11.569087 14.326816 -701 0.101476 0.044736 7.947097 9.706191 -702 0.078456 0.044850 9.377221 12.902291 -703 0.055789 0.026257 6.107872 8.541731 -704 0.058346 0.033593 11.893707 18.136424 -705 0.060249 0.033297 6.341975 7.591748 -706 0.070643 0.029408 8.383786 10.850268 -707 0.100958 0.059269 10.000701 13.279763 -708 0.082821 0.063091 8.008347 7.041884 -709 0.076471 0.053785 10.291538 10.471568 -710 0.072967 0.041912 11.199921 11.397076 -711 0.046922 0.045043 9.959483 11.427831 -712 0.057524 0.057806 7.263775 15.635753 -713 0.072399 0.050423 8.468366 11.138227 -714 0.150487 0.097175 13.188920 15.474944 -715 0.097121 0.113131 11.857678 16.671475 -716 0.050068 0.030409 12.949097 15.396413 -717 0.068076 0.041048 13.672752 16.068369 -718 0.067974 0.035882 9.341281 10.645621 -719 0.111041 0.063270 8.269314 11.257310 -720 0.056087 0.022794 17.071260 19.998481 -721 0.062417 0.026435 11.674217 15.087171 -722 0.093429 0.042533 6.616122 9.446264 -723 0.083879 0.056062 8.611847 11.558924 -724 0.088126 0.041916 11.209469 15.870230 -725 0.065351 0.033892 10.747381 13.471670 -726 0.100440 0.059991 9.532949 12.212312 -727 0.082528 0.072265 12.191321 12.273605 -728 0.057828 0.023147 9.640211 9.387020 -729 0.080070 0.036572 11.403515 14.897819 -730 0.099978 0.042144 11.478871 14.409341 -731 0.057392 0.033039 14.346835 21.970514 -732 0.092449 0.053413 12.263161 14.761976 -733 0.036635 0.013769 7.549488 10.084784 -734 0.072827 0.019964 8.527307 13.712679 -735 0.063338 0.045318 15.452432 19.776125 -736 0.120427 0.114381 11.927097 11.830135 -737 0.045607 0.025821 8.064951 9.170908 -738 0.102330 0.031923 7.158924 15.032108 -739 0.077992 0.042228 9.478702 16.238334 -740 0.052833 0.038862 7.294827 9.541520 -741 0.084330 0.046207 7.108025 10.128436 -742 0.084329 0.052930 13.306747 11.353550 -743 0.088563 0.042172 8.346758 10.270908 -744 0.119022 0.074197 11.784816 16.523442 -745 0.087998 0.049745 13.382487 12.944680 -746 0.082581 0.048417 8.361719 13.521525 -747 0.176872 0.133575 11.595928 14.020997 -748 0.072193 0.036732 10.234684 11.125256 -749 0.080450 0.041744 12.464004 14.567250 -750 0.082905 0.044702 8.643615 14.803111 -751 0.059549 0.028533 10.281667 11.068773 -752 0.058213 0.031634 7.070125 9.146174 -753 0.200135 0.100395 13.664109 19.041069 -754 0.058791 0.036900 6.570852 6.209234 -755 0.048220 0.027948 11.379731 17.776339 -756 0.085110 0.069464 12.663032 13.583434 -757 0.074493 0.034933 10.161700 9.847762 -758 0.083367 0.028707 12.138322 16.928505 -759 0.073678 0.035789 8.996887 14.275814 -760 0.062677 0.057151 7.919061 11.505594 -761 0.092918 0.083994 6.458884 8.893236 -762 0.061945 0.063762 7.912240 9.199825 -763 0.069843 0.069172 8.911593 8.073709 -764 0.051353 0.059051 14.547355 14.895243 -765 0.061030 0.025344 9.291521 13.441630 -766 0.090558 0.052224 10.947423 17.634357 -767 0.053145 0.030926 10.333727 14.041250 -768 0.171337 0.068953 17.309959 28.401346 -769 0.056399 0.031628 8.950604 9.080432 -770 0.037760 0.019422 11.975815 14.347575 -771 0.064759 0.062152 13.020978 11.186613 -772 0.109109 0.095738 11.339686 12.834154 -773 0.054811 0.025761 7.676936 9.086583 -774 0.079078 0.073483 6.233847 14.465103 -775 0.098747 0.070596 13.684739 13.610252 -776 0.069412 0.035502 8.496401 15.188554 -777 0.047536 0.045105 8.077384 12.501791 -778 0.094831 0.076265 8.398491 16.638704 -779 0.066023 0.048155 10.720372 14.855391 -780 0.132600 0.076464 11.333389 12.023178 -781 0.138122 0.100404 12.788758 15.716254 -782 0.112478 0.045039 12.786367 10.654739 -783 0.090478 0.058235 9.458634 15.075983 -784 0.066612 0.032303 9.292326 11.927200 -785 0.066086 0.029709 9.556058 10.441952 -786 0.093196 0.065896 10.503214 16.385965 -787 0.065736 0.027221 13.534651 16.539201 -788 0.072829 0.038719 8.934284 12.276923 -789 0.051158 0.032622 6.762160 8.998180 -790 0.050940 0.030860 6.256527 8.313236 -791 0.074784 0.052779 15.724830 19.083318 -792 0.075991 0.034608 8.846370 8.517645 -793 0.061632 0.034207 5.291652 9.864207 -794 0.070309 0.057245 13.426200 12.987744 -795 0.080866 0.045693 12.883219 17.249252 -796 0.093065 0.067024 16.063138 23.448692 -797 0.076509 0.053438 15.138196 14.392440 -798 0.112433 0.075808 7.709381 11.435728 -799 0.065233 0.023289 9.263305 9.016639 -800 0.067604 0.040966 12.030534 16.971345 -801 0.053826 0.034848 8.704444 12.624743 -802 0.086129 0.041576 11.573203 15.696549 -803 0.049045 0.028550 11.633722 15.691723 -804 0.038137 0.024800 9.391960 14.273091 -805 0.136870 0.047429 9.455892 11.167100 -806 0.051459 0.033955 9.223480 9.955925 -807 0.079084 0.059501 10.279894 13.050689 -808 0.041967 0.029494 11.245293 12.571355 -809 0.093982 0.048876 9.011263 7.844232 -810 0.074032 0.050469 12.338424 17.654532 -811 0.059134 0.019130 7.935388 12.075007 -812 0.088640 0.083651 11.150283 14.553024 -813 0.080242 0.058568 8.078505 8.676455 -814 0.079710 0.043853 9.732946 10.510998 -815 0.072904 0.062225 9.127160 11.585586 -816 0.094971 0.069787 7.187181 8.665475 -817 0.051995 0.017268 12.380071 13.916439 -818 0.050566 0.019775 6.304639 7.265976 -819 0.104606 0.033747 11.612358 12.727791 -820 0.078314 0.043542 11.357245 13.166451 -821 0.090369 0.041344 9.665104 10.744157 -822 0.052899 0.038561 7.185861 10.760275 -823 0.090505 0.050785 8.840977 17.214262 -824 0.067530 0.036332 14.019421 11.081743 -825 0.081992 0.027791 8.099442 9.638271 -826 0.054374 0.036104 7.600607 9.951107 -827 0.104961 0.045906 8.508974 12.496106 -828 0.037974 0.034051 6.209357 7.464893 -829 0.078602 0.041770 9.625592 11.065234 -830 0.081077 0.032314 9.179469 20.080879 -831 0.065120 0.048890 7.232656 14.697933 -832 0.061418 0.025178 6.182131 8.907890 -833 0.111288 0.042535 11.871426 12.251322 -834 0.059472 0.035626 9.347338 12.420665 -835 0.052635 0.034394 8.648851 9.849502 -836 0.079014 0.097538 7.349567 10.688907 -837 0.066287 0.036768 13.066739 17.176825 -838 0.054311 0.025339 7.683672 10.112438 -839 0.052449 0.024727 7.191024 11.539272 -840 0.054910 0.036163 9.928354 9.012998 -841 0.142850 0.100389 11.204219 12.455983 -842 0.060771 0.033012 6.930582 10.315348 -843 0.079327 0.074884 8.700307 11.594469 -844 0.071185 0.036340 16.099029 17.532818 -845 0.044357 0.020853 10.627424 15.972366 -846 0.106761 0.061343 10.872746 14.457286 -847 0.070427 0.058070 8.075629 7.605433 -848 0.073690 0.051101 10.931620 16.086122 -849 0.071611 0.035866 8.916085 8.678810 -850 0.061490 0.038253 8.142646 9.521977 -851 0.090450 0.057945 10.625343 10.354022 -852 0.063144 0.039660 15.321327 18.124242 -853 0.084877 0.061592 13.131860 16.734216 -854 0.060036 0.034030 8.054894 14.584234 -855 0.082689 0.039520 13.878537 12.101208 -856 0.066332 0.033834 7.262273 6.357871 -857 0.061464 0.042050 7.472113 11.945520 -858 0.066717 0.055961 7.319972 8.682084 -859 0.073136 0.045481 13.640712 13.155188 -860 0.090729 0.048516 13.201459 19.399675 -861 0.055932 0.039269 9.580285 14.328234 -862 0.072381 0.058830 11.642053 10.074089 -863 0.124935 0.056408 8.983767 9.951870 -864 0.084523 0.045103 8.146976 9.957989 -865 0.059119 0.029484 7.288796 9.048822 -866 0.059657 0.049052 7.029110 13.959339 -867 0.087029 0.050468 10.225073 15.805830 -868 0.039025 0.017340 6.969665 8.901790 -869 0.058793 0.026679 10.860280 12.155907 -870 0.077316 0.059059 9.660607 11.600636 -871 0.073556 0.033668 10.777451 13.343294 -872 0.089405 0.070777 6.450591 11.933622 -873 0.085001 0.045120 9.300581 8.625303 -874 0.070236 0.034115 5.685468 6.884149 -875 0.065195 0.042047 6.861946 9.423662 -876 0.055655 0.042450 9.708284 11.071038 -877 0.090558 0.046615 9.917063 14.024511 -878 0.095746 0.038498 9.015199 9.503130 -879 0.063704 0.023850 8.241687 12.149754 -880 0.033176 0.029407 7.232332 15.403743 -881 0.059263 0.023067 8.511583 9.773398 -882 0.106309 0.073364 8.658811 12.500797 -883 0.078037 0.078977 12.364276 14.476886 -884 0.062207 0.044570 12.804287 13.400662 -885 0.136602 0.092837 10.659710 16.477426 -886 0.065936 0.054205 10.669860 9.708004 -887 0.059681 0.040416 8.705730 13.751837 -888 0.080519 0.030883 7.962873 13.952635 -889 0.046949 0.031134 10.299511 9.215146 -890 0.066509 0.032757 8.080040 11.714974 -891 0.098152 0.088114 9.722249 12.785746 -892 0.115600 0.071314 8.748282 10.479708 -893 0.088940 0.061061 13.101896 16.180002 -894 0.115371 0.052902 13.749520 15.506496 -895 0.125298 0.058084 11.193221 11.462631 -896 0.104092 0.068775 9.743266 14.303159 -897 0.059397 0.034442 9.406146 14.199355 -898 0.091842 0.052953 14.477378 17.372159 -899 0.087202 0.043021 14.493477 11.492884 -900 0.073054 0.047973 7.151852 13.722441 -901 0.055164 0.030123 14.889039 15.344674 -902 0.079598 0.053671 8.313676 8.656683 -903 0.093947 0.054587 9.239263 14.035540 -904 0.073132 0.068971 9.113815 12.350858 -905 0.058409 0.036976 7.356350 9.566992 -906 0.044173 0.026236 10.323107 12.918880 -907 0.051762 0.027699 6.980939 10.910675 -908 0.058417 0.031234 8.947270 15.211504 -909 0.048365 0.025043 7.660842 11.131297 -910 0.052084 0.027735 11.243306 11.081824 -911 0.129543 0.103685 10.437112 12.114761 -912 0.070226 0.049362 5.521274 8.462732 -913 0.043860 0.029886 8.752127 10.258112 -914 0.051657 0.031252 6.744424 8.192688 -915 0.080022 0.086350 15.648874 19.029175 -916 0.055021 0.028027 10.736340 24.415208 -917 0.075603 0.065496 8.370229 13.349388 -918 0.096078 0.047341 13.899577 14.413384 -919 0.084450 0.074360 10.733770 13.623469 -920 0.115210 0.059051 24.192797 30.237190 -921 0.070516 0.045835 9.049121 10.248856 -922 0.053162 0.030901 13.605617 19.993545 -923 0.070677 0.040287 6.175649 9.833634 -924 0.075138 0.061730 13.813285 12.129304 -925 0.059895 0.041346 13.800546 11.629086 -926 0.085105 0.052376 9.637347 11.490835 -927 0.046947 0.019200 7.449086 13.009302 -928 0.036911 0.028310 8.105576 10.850946 -929 0.057880 0.053246 10.771334 12.218520 -930 0.136567 0.098216 15.114762 11.976534 -931 0.107213 0.101542 11.133146 22.054387 -932 0.106929 0.088253 13.152117 23.534097 -933 0.095720 0.063763 11.821320 13.157147 -934 0.062729 0.049146 9.991847 16.402624 -935 0.062865 0.028436 7.555997 8.243535 -936 0.070040 0.031166 11.970191 15.690316 -937 0.097102 0.046427 13.902849 13.861350 -938 0.083913 0.052787 7.295274 10.414346 -939 0.090215 0.030806 5.720368 10.413447 -940 0.050803 0.034226 14.589444 18.260103 -941 0.074627 0.049152 11.381438 14.648211 -942 0.055764 0.053299 10.274340 12.146476 -943 0.077410 0.050277 10.254450 9.403127 -944 0.110374 0.037768 12.885691 16.651374 -945 0.110249 0.081598 15.873873 19.079551 -946 0.058291 0.023068 6.323898 8.212749 -947 0.063233 0.042291 9.852121 13.677286 -948 0.076556 0.026945 7.668983 12.900032 -949 0.042607 0.014913 8.660097 10.920922 -950 0.101020 0.088217 11.841767 13.543285 -951 0.085551 0.063794 16.767932 16.440397 -952 0.068112 0.034773 10.996305 14.079466 -953 0.082410 0.048165 14.768264 15.579004 -954 0.069655 0.029128 7.825519 10.176605 -955 0.049602 0.048228 6.169757 10.288815 -956 0.088514 0.087136 10.396923 14.250815 -957 0.083944 0.065914 12.507291 15.337969 -958 0.060982 0.048238 8.856533 8.447010 -959 0.128951 0.056186 5.732213 10.329765 -960 0.069339 0.068975 9.588455 10.915175 -961 0.037248 0.025874 8.653563 10.257879 -962 0.069724 0.036656 13.355209 17.547567 -963 0.099399 0.057042 9.121769 13.998499 -964 0.057096 0.022138 9.019416 13.499614 -965 0.077336 0.039753 7.890383 10.719157 -966 0.069217 0.075471 9.338985 11.024519 -967 0.049519 0.031160 9.203596 11.290082 -968 0.063523 0.044909 8.713130 15.810251 -969 0.065573 0.038948 8.488022 9.460289 -970 0.078966 0.037901 8.457706 8.757849 -971 0.071111 0.047971 15.556667 14.064972 -972 0.052679 0.048755 14.973782 10.155447 -973 0.055488 0.025514 6.963582 9.367627 -974 0.047813 0.029909 10.984592 14.307369 -975 0.085974 0.044500 9.714390 11.692852 -976 0.101002 0.117265 17.969758 17.026934 -977 0.058151 0.024894 8.815112 9.685889 -978 0.074796 0.051734 11.181924 15.519485 -979 0.052642 0.028545 8.624199 13.224186 -980 0.067470 0.047654 7.493827 12.331614 -981 0.083434 0.047806 10.930673 13.944761 -982 0.063522 0.028845 7.893274 5.301554 -983 0.071278 0.059733 14.523700 15.412748 -984 0.070497 0.045196 8.960076 12.278833 -985 0.045355 0.040459 8.835625 9.798556 -986 0.071392 0.046789 9.221443 9.458542 -987 0.067485 0.036496 10.138405 15.333523 -988 0.076948 0.065709 9.233452 12.395033 -989 0.070712 0.035018 11.132945 11.011395 -990 0.108252 0.062181 9.621412 16.440096 -991 0.063610 0.050073 7.447842 12.045063 -992 0.078665 0.058243 10.745754 18.882013 -993 0.166738 0.127644 9.780133 13.446628 -994 0.066793 0.043491 12.217422 11.674682 -995 0.077296 0.034198 9.423294 12.682270 -996 0.070050 0.032490 7.593496 9.962595 -997 0.110239 0.038962 6.559188 16.246723 -998 0.040951 0.015553 6.509763 8.065568 -999 0.093489 0.056977 9.238330 13.147803 -1000 0.069826 0.040315 9.483189 7.350383 -1001 0.060756 0.049312 6.573593 8.522588 -1002 0.069218 0.028514 9.936576 15.329412 -1003 0.057568 0.054006 9.234869 11.046802 -1004 0.067307 0.036145 7.413739 10.196257 -1005 0.082082 0.040268 11.851660 16.596600 -1006 0.092186 0.062064 8.494539 11.694107 -1007 0.073879 0.053004 7.666924 13.568041 -1008 0.100678 0.057283 11.602615 17.738864 -1009 0.104641 0.096072 12.490777 14.414713 -1010 0.049774 0.030339 8.278028 8.919415 -1011 0.068997 0.032288 8.051379 10.750700 -1012 0.062728 0.034954 12.416435 13.141706 -1013 0.116119 0.096373 8.433209 14.090055 -1014 0.065226 0.024766 9.179110 11.844148 -1015 0.046682 0.042718 11.553176 8.454641 -1016 0.084829 0.034149 4.869609 7.335567 -1017 0.069906 0.021766 6.282334 6.570905 -1018 0.112446 0.037630 9.308699 12.090504 -1019 0.057160 0.037095 7.941077 13.299966 -1020 0.073966 0.030344 6.976535 8.044022 -1021 0.065455 0.039341 7.827588 11.811117 -1022 0.052601 0.026799 10.871404 11.355790 -1023 0.085168 0.046348 9.984990 14.866701 -1024 0.138592 0.095109 8.893993 19.801058 -1025 0.069349 0.028662 10.216258 14.171898 -1026 0.060357 0.027454 8.610959 11.112032 -1027 0.091357 0.065115 9.489625 15.855860 -1028 0.095720 0.129915 11.160713 15.698558 -1029 0.082000 0.034727 6.942428 11.285443 -1030 0.073149 0.038804 13.430459 17.355354 -1031 0.086063 0.059122 11.805329 12.923003 -1032 0.056250 0.035837 10.780230 12.617118 -1033 0.069087 0.038242 8.097005 10.473483 -1034 0.053212 0.025291 7.221615 8.681973 -1035 0.055780 0.030883 5.993111 9.504949 -1036 0.037230 0.021282 8.877344 13.733548 -1037 0.070084 0.059061 10.387090 9.342722 -1038 0.075572 0.054427 15.608449 21.346248 -1039 0.083753 0.070846 12.576256 13.840265 -1040 0.061760 0.030159 7.064500 9.630217 -1041 0.079290 0.069490 10.429847 12.624881 -1042 0.092612 0.043387 7.514176 12.138302 -1043 0.077067 0.046518 14.929134 10.650042 -1044 0.041615 0.033569 11.171592 9.654763 -1045 0.084118 0.101837 10.088815 11.319353 -1046 0.079099 0.048236 10.334881 8.322001 -1047 0.045745 0.040336 8.193643 12.358699 -1048 0.050057 0.032717 8.902992 7.971988 -1049 0.094037 0.057902 11.235563 9.461384 -1050 0.056323 0.046385 11.296924 17.773567 -1051 0.063639 0.018093 12.963090 16.155502 -1052 0.073167 0.045569 8.198985 11.945348 -1053 0.072992 0.047575 9.066481 13.277428 -1054 0.065219 0.027704 6.299282 10.375248 -1055 0.063535 0.029910 6.280779 10.195120 -1056 0.096672 0.047476 7.994078 9.178492 -1057 0.065279 0.040951 8.131094 12.952055 -1058 0.116535 0.086003 7.188494 12.279512 -1059 0.053872 0.019826 12.607065 13.704931 -1060 0.074963 0.045796 10.827789 19.787473 -1061 0.047587 0.030077 10.825969 14.178700 -1062 0.062472 0.039975 9.087074 17.269515 -1063 0.083711 0.039884 11.184572 13.476610 -1064 0.079638 0.039367 12.375190 20.785626 -1065 0.068926 0.028621 10.787420 11.545381 -1066 0.110009 0.083878 12.471018 10.325146 -1067 0.058750 0.027719 9.109811 8.232340 -1068 0.060196 0.055277 11.968673 13.034622 -1069 0.064666 0.049370 9.413020 10.322549 -1070 0.075167 0.043210 10.739265 15.373728 -1071 0.095562 0.055950 10.850165 13.185959 -1072 0.069838 0.055205 8.698448 12.347895 -1073 0.055356 0.024657 9.179400 13.690093 -1074 0.139225 0.070991 10.313817 14.056640 -1075 0.084170 0.038667 15.205171 14.306373 -1076 0.057661 0.052588 13.280624 17.017988 -1077 0.135716 0.118839 8.470077 20.371296 -1078 0.090339 0.051045 10.232731 14.885752 -1079 0.059347 0.025613 9.775152 10.136173 -1080 0.078029 0.043001 9.998730 14.647813 -1081 0.145352 0.066945 7.221769 8.953300 -1082 0.102562 0.043035 11.716141 15.321314 -1083 0.067747 0.048123 11.793520 12.034371 -1084 0.079950 0.068560 10.731881 14.376239 -1085 0.061880 0.028765 10.503209 10.643138 -1086 0.102074 0.049900 6.692707 11.442322 -1087 0.098980 0.046386 7.969280 10.739507 -1088 0.119542 0.052738 7.137195 12.306210 -1089 0.135673 0.073771 8.775047 12.050717 -1090 0.051796 0.035214 9.326659 15.339260 -1091 0.049813 0.044680 10.015601 11.253226 -1092 0.072743 0.046855 9.985116 16.701044 -1093 0.089181 0.062932 20.956358 22.893179 -1094 0.077326 0.032836 7.562488 12.481760 -1095 0.072616 0.030135 8.185815 9.387725 -1096 0.076057 0.057088 7.124602 9.933541 -1097 0.059017 0.031243 10.283781 16.566137 -1098 0.057484 0.038715 7.502962 15.361585 -1099 0.082734 0.041785 11.328798 15.410623 -1100 0.069468 0.045895 7.217528 8.518956 -1101 0.056847 0.052519 8.089050 16.271146 -1102 0.074756 0.039434 6.955292 11.978122 -1103 0.036892 0.018625 9.745257 9.888859 -1104 0.061828 0.036501 7.624344 12.349417 -1105 0.068893 0.054928 8.783019 13.285681 -1106 0.110684 0.080135 9.643735 13.481677 -1107 0.080134 0.051953 8.455803 10.668358 -1108 0.060133 0.052410 12.230743 11.184178 -1109 0.070195 0.034195 7.630539 12.785157 -1110 0.060293 0.040075 8.882654 12.532199 -1111 0.084932 0.047240 13.235785 13.888860 -1112 0.083968 0.051377 10.604919 19.779700 -1113 0.043669 0.029663 7.615102 12.217648 -1114 0.108742 0.048992 9.009638 12.638238 -1115 0.076689 0.052209 7.874198 16.587253 -1116 0.075517 0.063083 9.920098 9.643293 -1117 0.091453 0.076800 12.786763 16.274824 -1118 0.056285 0.056007 11.403655 11.049975 -1119 0.094792 0.065312 12.705295 20.029343 -1120 0.044396 0.023915 12.946583 17.461472 -1121 0.072927 0.028934 10.669910 14.939755 -1122 0.075023 0.048091 8.258265 10.153825 -1123 0.087167 0.057819 9.363631 9.910282 -1124 0.133920 0.064384 16.084655 12.457128 -1125 0.086570 0.055869 11.664785 14.405163 -1126 0.106998 0.082576 9.213117 13.022820 -1127 0.047574 0.033661 7.957520 9.131498 -1128 0.072057 0.045480 10.495313 20.448110 -1129 0.100057 0.046972 17.149829 20.819608 -1130 0.054262 0.028177 7.902236 7.953449 -1131 0.081181 0.077053 10.941482 14.019503 -1132 0.077465 0.041368 14.416032 18.227864 -1133 0.051944 0.011665 7.869925 9.932308 -1134 0.084659 0.078865 7.415405 12.379851 -1135 0.137860 0.082405 13.882727 13.861442 -1136 0.060140 0.025536 6.802082 7.393653 -1137 0.081964 0.032124 7.694000 9.196451 -1138 0.083412 0.050921 11.549686 13.039847 -1139 0.107339 0.051121 10.873399 16.314125 -1140 0.070253 0.028583 8.777362 9.726168 -1141 0.169223 0.131620 17.182645 20.531750 -1142 0.094679 0.047045 7.632088 10.649605 -1143 0.072113 0.030830 10.284592 19.169505 -1144 0.087471 0.071563 11.288095 14.990240 -1145 0.114856 0.060406 9.915657 17.202754 -1146 0.051332 0.032986 7.479362 15.394786 -1147 0.059057 0.045619 9.483160 12.412412 -1148 0.079635 0.049635 8.830203 9.155639 -1149 0.061264 0.040779 7.220145 15.363696 -1150 0.093265 0.068514 12.249402 16.734952 -1151 0.087957 0.063418 10.019694 10.911542 -1152 0.043428 0.025846 6.367400 13.011459 -1153 0.063808 0.076826 6.830943 11.480714 -1154 0.056926 0.033645 8.303673 10.470495 -1155 0.086756 0.055800 11.428318 12.166392 -1156 0.080676 0.043800 11.177166 8.131671 -1157 0.062311 0.041741 11.517133 13.448041 -1158 0.092569 0.042133 8.750921 10.141974 -1159 0.109198 0.079534 13.229466 14.200003 -1160 0.036537 0.018211 14.037714 16.456583 -1161 0.046446 0.042576 10.904687 14.724858 -1162 0.058682 0.046973 7.073502 9.649422 -1163 0.063937 0.063089 10.877601 14.089327 -1164 0.073798 0.053886 8.617329 13.531864 -1165 0.051344 0.033825 4.287441 6.469830 -1166 0.141099 0.097316 14.020780 15.347637 -1167 0.084483 0.073380 8.187259 12.748958 -1168 0.094893 0.052090 9.902848 14.791743 -1169 0.086697 0.056624 7.977763 12.089931 -1170 0.098184 0.072367 10.397975 12.753946 -1171 0.059885 0.032070 9.398772 16.695151 -1172 0.043605 0.023357 8.036625 14.344397 -1173 0.072310 0.043903 12.569196 14.779357 -1174 0.075858 0.035176 11.781105 11.704667 -1175 0.093791 0.056315 13.816591 17.072044 -1176 0.089403 0.073036 7.455203 7.599241 -1177 0.095738 0.088037 10.547786 9.494157 -1178 0.056068 0.031456 8.421784 11.117915 -1179 0.104655 0.077922 7.031054 12.969488 -1180 0.066727 0.043890 10.417842 10.458759 -1181 0.043842 0.022565 9.979608 11.243181 -1182 0.074564 0.045749 7.007277 10.511956 -1183 0.068297 0.042597 9.862009 13.618782 -1184 0.053587 0.034798 5.339134 7.829274 -1185 0.037094 0.019598 7.844326 10.189549 -1186 0.105624 0.048438 14.495313 20.370082 -1187 0.082365 0.054202 10.584366 20.065437 -1188 0.086195 0.054391 11.333363 17.007766 -1189 0.090231 0.045419 10.925797 13.879993 -1190 0.071919 0.044809 12.053089 16.006877 -1191 0.087283 0.050561 10.974253 13.330819 -1192 0.071915 0.038588 7.047323 7.287198 -1193 0.108830 0.064946 9.106933 19.013625 -1194 0.073105 0.032034 12.058452 10.525086 -1195 0.083821 0.048877 13.961267 18.632394 -1196 0.049122 0.032062 8.154032 10.537315 -1197 0.081631 0.062036 7.391266 10.343575 -1198 0.093916 0.056993 12.861347 13.243180 -1199 0.087967 0.052023 6.537626 13.904897 -1200 0.065678 0.041510 8.899694 9.877179 -1201 0.054198 0.045810 9.613030 13.032801 -1202 0.079668 0.062724 9.636299 9.731945 -1203 0.072280 0.028694 7.729763 10.175520 -1204 0.114389 0.046268 11.986969 13.334541 -1205 0.057676 0.026927 9.933383 12.136859 -1206 0.065202 0.038626 12.348532 10.554007 -1207 0.092161 0.064914 11.549484 12.722039 -1208 0.085653 0.047728 11.465928 10.306336 -1209 0.036095 0.022461 11.149525 11.432490 -1210 0.077010 0.037223 7.547818 8.099424 -1211 0.106812 0.056755 9.987333 20.294092 -1212 0.054147 0.026700 6.713295 12.129471 -1213 0.056561 0.028619 9.788218 10.212934 -1214 0.045285 0.028794 10.155169 11.315617 -1215 0.083451 0.070260 10.731068 12.634442 -1216 0.036284 0.026453 8.554063 11.005462 -1217 0.041755 0.030954 7.080376 10.387759 -1218 0.086572 0.042851 11.923172 12.674491 -1219 0.087421 0.057217 8.445124 11.307542 -1220 0.088389 0.082790 13.084167 13.048713 -1221 0.111814 0.079619 10.260271 14.995206 -1222 0.056498 0.041769 12.960512 16.267866 -1223 0.078185 0.038177 8.805222 11.954936 -1224 0.086667 0.048925 8.542755 12.244968 -1225 0.078967 0.053206 6.504772 11.147215 -1226 0.086734 0.032148 9.141572 14.560700 -1227 0.053974 0.031838 6.985343 9.156434 -1228 0.052475 0.035617 11.081123 7.167363 -1229 0.087995 0.068442 7.535708 9.056333 -1230 0.057610 0.045699 9.271260 15.952072 -1231 0.068294 0.034025 11.680591 9.589817 -1232 0.089824 0.071036 5.304419 10.594771 -1233 0.045847 0.026112 7.558533 9.319436 -1234 0.072917 0.064577 8.368025 10.059516 -1235 0.062705 0.041349 9.630708 12.262499 -1236 0.087768 0.060955 9.147403 15.287312 -1237 0.079036 0.037647 9.962503 10.451706 -1238 0.100924 0.039769 11.044190 15.558335 -1239 0.034613 0.016916 7.653858 11.244305 -1240 0.071717 0.053245 11.388571 15.316292 -1241 0.078590 0.064206 17.683711 18.214436 -1242 0.085135 0.063001 9.695391 13.464059 -1243 0.053036 0.027700 10.690115 9.904252 -1244 0.051128 0.031064 9.851282 12.722061 -1245 0.084074 0.073788 6.999994 11.921943 -1246 0.073725 0.046646 8.956652 14.386876 -1247 0.070940 0.056446 11.451727 8.028241 -1248 0.135059 0.048885 9.807588 16.191719 -1249 0.124924 0.064702 8.235902 12.529355 -1250 0.097273 0.055499 15.189496 16.104004 -1251 0.122896 0.088070 8.600567 17.224536 -1252 0.155120 0.113874 11.142686 16.114047 -1253 0.072279 0.030991 14.369651 14.219808 -1254 0.046934 0.023536 6.580581 9.565046 -1255 0.064570 0.045182 13.867790 18.920082 -1256 0.074846 0.042001 11.467690 16.266487 -1257 0.112951 0.035422 9.102925 13.083591 -1258 0.078613 0.037321 7.629169 9.696515 -1259 0.105039 0.040135 8.062662 14.910457 -1260 0.069385 0.035992 9.962687 12.420856 -1261 0.049635 0.031229 8.689957 11.634627 -1262 0.081642 0.048150 16.778547 15.474708 -1263 0.066166 0.044543 7.025818 10.995126 -1264 0.086299 0.073336 8.941812 10.016212 -1265 0.066051 0.043326 11.872237 11.949456 -1266 0.064073 0.026765 9.783171 13.965495 -1267 0.061219 0.024979 9.478613 15.986653 -1268 0.113357 0.049317 9.767329 14.006749 -1269 0.111626 0.051037 6.913228 11.605272 -1270 0.070438 0.038296 9.372434 8.989350 -1271 0.080199 0.083827 10.322776 10.994511 -1272 0.092126 0.037914 12.206575 13.439757 -1273 0.059336 0.027428 11.060262 13.343443 -1274 0.097067 0.070573 12.911310 19.131880 -1275 0.122191 0.072694 10.486254 11.249049 -1276 0.081646 0.032757 9.132152 18.138311 -1277 0.064101 0.032034 9.407196 8.975429 -1278 0.084754 0.053209 9.694866 12.529989 -1279 0.092691 0.079238 9.277208 13.484696 -1280 0.130727 0.079069 17.629956 19.568530 -1281 0.059407 0.047779 12.024405 12.336538 -1282 0.044474 0.043089 10.617796 16.458625 -1283 0.077848 0.046334 10.290383 16.721723 -1284 0.094151 0.061503 8.351712 16.756024 -1285 0.064708 0.041805 11.964110 12.901387 -1286 0.069210 0.052418 11.419204 11.422822 -1287 0.083921 0.052195 10.256894 12.807158 -1288 0.056989 0.036642 8.730843 10.000306 -1289 0.077404 0.054956 8.486196 11.852410 -1290 0.065552 0.042207 8.674901 9.361584 -1291 0.096408 0.036983 13.309616 17.254316 -1292 0.064251 0.033519 10.654811 11.834210 -1293 0.096574 0.061806 11.039990 14.149064 -1294 0.068971 0.052706 8.946893 15.607341 -1295 0.061205 0.033512 7.421330 11.907418 -1296 0.046974 0.031632 8.270700 14.936268 -1297 0.053728 0.041625 9.592585 10.809800 -1298 0.103648 0.060531 6.465294 7.898391 -1299 0.073732 0.036466 8.008908 12.746289 -1300 0.069896 0.039754 10.649783 13.698400 -1301 0.090638 0.056333 8.997335 14.730917 -1302 0.086116 0.044551 15.020340 16.603450 -1303 0.096726 0.075680 11.909425 19.088879 -1304 0.100243 0.074016 11.714710 11.139590 -1305 0.065718 0.035964 7.376436 12.643310 -1306 0.074231 0.058674 18.449114 18.056780 -1307 0.034468 0.018112 4.807224 8.094674 -1308 0.105523 0.049351 12.040824 16.337091 -1309 0.082261 0.027123 7.964643 15.938487 -1310 0.062393 0.032128 8.698412 14.559454 -1311 0.070860 0.047806 11.226943 14.942324 -1312 0.064640 0.029083 8.656833 11.680549 -1313 0.057320 0.033961 7.985057 9.114156 -1314 0.101553 0.054806 6.441432 9.548917 -1315 0.075026 0.032506 7.049284 14.301445 -1316 0.070918 0.039952 9.572839 11.704690 -1317 0.063698 0.049614 15.286460 24.259366 -1318 0.080914 0.058488 8.672010 12.350586 -1319 0.048654 0.034902 8.536677 12.721286 -1320 0.063161 0.029632 10.025674 12.556843 -1321 0.084855 0.032347 9.931625 12.037379 -1322 0.056431 0.065011 13.902658 12.795381 -1323 0.120935 0.111106 14.345506 25.295235 -1324 0.066321 0.037927 12.212315 18.737775 -1325 0.066066 0.056416 11.898131 9.333922 -1326 0.088727 0.056179 7.906360 11.962443 -1327 0.068096 0.035295 8.099238 9.791344 -1328 0.067026 0.052959 10.074470 14.882270 -1329 0.085022 0.060091 10.375113 13.669521 -1330 0.063612 0.074835 7.942386 11.211602 -1331 0.036349 0.025547 7.623918 8.457361 -1332 0.066753 0.049737 12.503054 14.183985 -1333 0.086446 0.038411 8.604438 12.399280 -1334 0.074584 0.061800 11.929049 11.528724 -1335 0.075149 0.073727 17.159523 17.658318 -1336 0.058302 0.028455 10.870964 11.675317 -1337 0.079380 0.036670 10.095732 10.895673 -1338 0.085308 0.050226 10.307471 14.716946 -1339 0.070159 0.035912 7.315429 11.992130 -1340 0.070832 0.029161 12.924882 18.008890 -1341 0.114029 0.056434 10.525578 11.872041 -1342 0.089032 0.037787 6.681797 9.743733 -1343 0.115524 0.091349 10.776461 17.979073 -1344 0.059100 0.029756 6.213697 8.125197 -1345 0.071331 0.071151 13.086473 18.979028 -1346 0.058386 0.044925 11.852124 10.563566 -1347 0.080279 0.043884 11.504031 13.365547 -1348 0.080689 0.065289 11.168839 11.592013 -1349 0.085318 0.036649 11.098593 11.465170 -1350 0.082987 0.038501 7.243918 8.953211 -1351 0.082617 0.071075 12.767216 12.369113 -1352 0.109245 0.029759 11.955881 17.163809 -1353 0.050538 0.023591 5.910155 8.706369 -1354 0.088798 0.049484 12.744512 15.076375 -1355 0.073840 0.037525 5.280580 9.725579 -1356 0.065701 0.045495 10.082261 14.095788 -1357 0.096605 0.047780 12.746692 12.754525 -1358 0.134193 0.076488 14.460500 22.934328 -1359 0.069643 0.058572 11.367298 12.895444 -1360 0.078406 0.028756 7.456202 11.588892 -1361 0.053808 0.035040 7.215405 11.977851 -1362 0.055654 0.047233 9.993172 12.240537 -1363 0.058701 0.031758 7.571583 14.085261 -1364 0.140593 0.072959 14.182786 20.451755 -1365 0.057083 0.057267 11.026872 10.702067 -1366 0.078088 0.048913 13.927588 15.490231 -1367 0.083537 0.052714 11.073435 13.871741 -1368 0.060883 0.024941 8.417853 7.949931 -1369 0.065788 0.048448 12.098977 13.915310 -1370 0.063362 0.038437 6.222043 9.666163 -1371 0.102321 0.029701 9.579916 12.867761 -1372 0.068629 0.068521 14.347396 10.208382 -1373 0.097676 0.116706 11.273499 16.380033 -1374 0.042967 0.024155 8.372147 13.741456 -1375 0.074695 0.052518 7.317900 10.770180 -1376 0.076265 0.025992 16.340409 13.761247 -1377 0.064608 0.051717 9.269688 14.131938 -1378 0.056125 0.035386 5.055155 10.047238 -1379 0.084797 0.079862 10.066873 13.332828 -1380 0.051575 0.029270 9.852283 15.239065 -1381 0.094396 0.056977 9.451921 11.483736 -1382 0.150353 0.077545 11.302922 12.263394 -1383 0.047617 0.030007 7.486353 9.036522 -1384 0.061633 0.053168 10.575864 12.273633 -1385 0.075971 0.056572 7.824117 8.797835 -1386 0.082370 0.061438 8.146944 7.749431 -1387 0.073509 0.032457 9.957620 17.969866 -1388 0.051784 0.025064 6.061357 9.129562 -1389 0.062987 0.030661 8.231349 19.948143 -1390 0.084196 0.049940 12.709646 16.684420 -1391 0.064966 0.032557 14.070912 20.032778 -1392 0.047725 0.031272 8.685427 15.586301 -1393 0.083777 0.041288 9.006158 12.158501 -1394 0.124152 0.077268 13.564709 15.814368 -1395 0.073598 0.036063 8.829845 9.558116 -1396 0.086901 0.031721 6.662901 8.444087 -1397 0.089591 0.070851 9.196396 14.791611 -1398 0.057917 0.031851 7.692415 13.181467 -1399 0.057173 0.042147 12.697431 10.679220 -1400 0.065405 0.027179 8.292021 11.925156 -1401 0.099066 0.042616 10.947341 13.129843 -1402 0.098574 0.049655 5.708918 7.370490 -1403 0.081092 0.036708 8.028582 8.545380 -1404 0.068154 0.046365 10.554056 11.168243 -1405 0.064858 0.038189 8.148929 11.524843 -1406 0.049117 0.024363 10.310856 15.866584 -1407 0.069436 0.036826 9.403701 12.330345 -1408 0.086349 0.048430 11.318992 13.358454 -1409 0.103445 0.072361 12.282568 19.389039 -1410 0.064160 0.050428 9.546172 15.235283 -1411 0.051062 0.039839 7.297121 10.978073 -1412 0.129320 0.082291 14.209141 17.673562 -1413 0.068844 0.029013 7.795909 7.470187 -1414 0.051173 0.040323 7.319925 12.632482 -1415 0.077648 0.048317 8.569083 13.869311 -1416 0.077626 0.037301 4.617215 7.769490 -1417 0.076761 0.065664 8.283130 10.297070 -1418 0.124703 0.051382 10.093483 16.369432 -1419 0.072739 0.081350 13.738533 10.758791 -1420 0.065239 0.021687 8.567830 10.345429 -1421 0.091339 0.055901 9.028836 14.348287 -1422 0.109282 0.073302 11.318940 14.974296 -1423 0.068528 0.045387 7.687306 10.310201 -1424 0.034931 0.013502 6.337337 6.296145 -1425 0.059544 0.023993 14.113022 13.622028 -1426 0.053685 0.042774 7.779219 10.263317 -1427 0.071258 0.066299 9.751382 9.969568 -1428 0.073970 0.046573 11.085759 12.967473 -1429 0.058513 0.027817 7.497976 15.997346 -1430 0.053778 0.030274 6.775559 9.416819 -1431 0.072080 0.053541 8.258717 7.966201 -1432 0.063010 0.047286 9.040153 12.837020 -1433 0.047278 0.037682 9.794881 11.858888 -1434 0.074621 0.077708 11.187142 13.405562 -1435 0.153120 0.082351 13.701051 16.351330 -1436 0.105035 0.100944 10.875770 11.881554 -1437 0.036360 0.030428 7.274274 9.305573 -1438 0.073750 0.059194 12.546586 13.329089 -1439 0.058179 0.032042 11.810878 14.032400 -1440 0.071694 0.044913 7.676716 12.146298 -1441 0.074467 0.041177 9.644644 10.347875 -1442 0.043817 0.035404 10.416770 15.560950 -1443 0.066355 0.051110 11.441548 19.230751 -1444 0.110232 0.057770 11.538588 12.548884 -1445 0.087773 0.060222 8.865310 10.836321 -1446 0.092134 0.053972 9.208858 13.548623 -1447 0.059444 0.034786 6.847668 11.521760 -1448 0.074993 0.040584 10.475448 12.173863 -1449 0.088721 0.064684 10.713430 15.342005 -1450 0.074633 0.037321 10.257805 10.035527 -1451 0.053348 0.020094 7.468573 13.017522 -1452 0.082950 0.043768 10.494361 15.093447 -1453 0.064804 0.033551 8.799245 15.206256 -1454 0.107456 0.050208 10.004726 19.868039 -1455 0.118819 0.078616 9.068800 9.173211 -1456 0.053354 0.034253 11.413839 11.467973 -1457 0.082522 0.069751 11.913549 14.441370 -1458 0.087617 0.035893 10.946159 12.349801 -1459 0.048912 0.032238 5.122676 7.803721 -1460 0.123741 0.061839 12.004484 14.884289 -1461 0.093011 0.046689 9.052854 11.961579 -1462 0.086392 0.049375 13.371185 15.300464 -1463 0.061594 0.055597 9.341034 11.649184 -1464 0.034443 0.027167 5.292236 7.140087 -1465 0.037278 0.016735 8.889782 7.932762 -1466 0.077651 0.055459 6.091392 8.799248 -1467 0.090060 0.038028 10.324089 17.185673 -1468 0.055484 0.036126 8.748980 14.407940 -1469 0.067513 0.060881 6.570538 7.839112 -1470 0.117607 0.054976 16.973065 22.579954 -1471 0.061947 0.028353 10.829300 12.570671 -1472 0.079480 0.097071 16.088462 15.694577 -1473 0.058529 0.039529 10.253530 12.399845 -1474 0.114204 0.111648 10.227838 13.016167 -1475 0.108880 0.062336 10.847511 11.142062 -1476 0.107367 0.053160 10.342132 16.433853 -1477 0.088190 0.043573 13.360262 17.155837 -1478 0.063498 0.030342 8.454820 12.177898 -1479 0.066602 0.059832 10.273771 15.756087 -1480 0.042560 0.029294 8.391858 12.187132 -1481 0.074781 0.055165 9.872773 15.872927 -1482 0.093217 0.090706 9.262485 15.989390 -1483 0.058734 0.036626 9.911922 11.582507 -1484 0.098307 0.066664 7.430269 11.528544 -1485 0.064093 0.036512 8.791723 13.163681 -1486 0.091714 0.084402 6.560646 10.941116 -1487 0.094660 0.042515 7.751870 9.520547 -1488 0.082624 0.055158 10.161333 10.382960 -1489 0.052784 0.029973 7.012666 5.966039 -1490 0.052738 0.026162 7.129494 9.639676 -1491 0.052899 0.025666 5.167287 8.597267 -1492 0.067127 0.040923 10.522796 12.957414 -1493 0.110318 0.081162 11.864073 15.968824 -1494 0.068650 0.033569 9.344486 14.836501 -1495 0.058431 0.029211 9.764623 14.497940 -1496 0.080810 0.044118 8.618989 11.121157 -1497 0.089693 0.058806 10.111549 11.257271 -1498 0.073469 0.056801 10.845179 14.017576 -1499 0.103542 0.069246 10.289475 12.684061 -1500 0.148904 0.083602 11.450910 14.646971 -1501 0.058312 0.030006 9.982474 8.737831 -1502 0.046428 0.043258 5.760820 8.040488 -1503 0.053257 0.044905 12.856085 14.946638 -1504 0.066940 0.056272 8.981256 13.215086 -1505 0.092519 0.054494 11.297613 14.555092 -1506 0.068294 0.071911 13.926847 19.500882 -1507 0.053002 0.034728 8.671601 20.714090 -1508 0.086440 0.042493 12.733214 18.264935 -1509 0.069602 0.033893 8.146333 12.795996 -1510 0.057329 0.031153 7.703019 12.600001 -1511 0.083703 0.059707 12.152019 16.946912 -1512 0.084601 0.056361 9.564668 12.086849 -1513 0.084176 0.079025 8.894143 8.820445 -1514 0.093062 0.092480 13.009129 12.987863 -1515 0.072082 0.042803 7.338817 8.432025 -1516 0.111699 0.074194 9.809757 11.909995 -1517 0.067011 0.044410 10.829490 16.211828 -1518 0.060449 0.037507 7.665282 10.149983 -1519 0.055114 0.043208 10.221282 14.950066 -1520 0.051147 0.032051 13.120383 16.664618 -1521 0.085252 0.039115 9.994679 5.787379 -1522 0.101992 0.045839 10.050399 10.380448 -1523 0.090182 0.047319 11.246931 14.236923 -1524 0.077301 0.037375 14.527119 26.003913 -1525 0.065232 0.062583 5.996781 8.559416 -1526 0.051436 0.022608 6.822403 8.681852 -1527 0.069322 0.045734 5.748787 9.213415 -1528 0.106218 0.108605 11.187107 14.805377 -1529 0.078073 0.045722 14.531102 12.881143 -1530 0.049502 0.043596 12.137004 12.823204 -1531 0.060524 0.041842 6.778884 9.892710 -1532 0.127129 0.048706 12.777908 14.318348 -1533 0.119553 0.125395 14.435191 20.006966 -1534 0.067711 0.052215 9.806119 14.250431 -1535 0.083775 0.041329 8.123932 9.801376 -1536 0.068570 0.040645 8.779131 11.249241 -1537 0.051018 0.024027 7.209403 8.982252 -1538 0.066382 0.042328 13.236794 21.492018 -1539 0.097219 0.047283 12.293823 15.487553 -1540 0.052392 0.017040 6.180651 12.342752 -1541 0.114500 0.078996 14.336464 16.226162 -1542 0.140886 0.160831 14.931856 13.860876 -1543 0.087576 0.046260 7.765313 11.896411 -1544 0.046217 0.022806 10.489231 10.997759 -1545 0.050336 0.018170 9.699383 10.859570 -1546 0.061109 0.055700 9.541975 13.129694 -1547 0.062876 0.063344 9.826659 19.400422 -1548 0.045937 0.026598 10.287585 13.780275 -1549 0.048411 0.030159 7.186994 9.548019 -1550 0.076034 0.028344 9.123768 10.160040 -1551 0.070289 0.043916 9.557334 15.354418 -1552 0.091334 0.052066 13.495137 14.428605 -1553 0.062987 0.032354 8.737540 10.882960 -1554 0.078527 0.049431 7.114862 7.990945 -1555 0.090952 0.050768 12.864280 16.921441 -1556 0.083297 0.040824 9.577292 10.163615 -1557 0.048465 0.027232 8.183212 14.802965 -1558 0.050075 0.059575 9.270248 10.134836 -1559 0.065651 0.040903 11.989195 17.674268 -1560 0.087352 0.040576 11.254804 10.732793 -1561 0.050279 0.046002 10.507209 14.794710 -1562 0.092800 0.057571 6.386768 9.478730 -1563 0.087463 0.066408 8.484764 17.318916 -1564 0.054066 0.039790 9.299589 13.716117 -1565 0.065938 0.053340 13.029835 14.437269 -1566 0.047398 0.049691 10.337926 14.541657 -1567 0.080367 0.079229 10.431468 14.322995 -1568 0.106676 0.050073 7.919651 11.093523 -1569 0.077032 0.050343 10.318320 12.543335 -1570 0.091986 0.061846 9.856510 11.575647 -1571 0.080079 0.048142 7.655191 13.451890 -1572 0.095691 0.061881 9.257118 15.203835 -1573 0.136199 0.056626 8.362090 17.351184 -1574 0.048025 0.031730 8.446973 9.752880 -1575 0.073420 0.039221 8.452156 9.679015 -1576 0.053623 0.037732 9.395525 10.365957 -1577 0.059128 0.031565 7.260579 12.060957 -1578 0.064330 0.066711 6.386134 8.248274 -1579 0.083814 0.062587 12.586274 14.785934 -1580 0.062943 0.045486 11.197559 13.282936 -1581 0.101660 0.080283 13.708863 14.659692 -1582 0.076523 0.028073 7.326747 8.965340 -1583 0.060597 0.031145 8.810396 13.388459 -1584 0.057285 0.030274 8.770626 10.424374 -1585 0.116993 0.057962 10.056676 13.589756 -1586 0.050358 0.036266 9.381113 13.270877 -1587 0.060052 0.033903 10.267494 9.892315 -1588 0.046957 0.028418 14.772028 10.867819 -1589 0.056423 0.029173 8.642824 10.924505 -1590 0.054277 0.030956 10.811701 18.533882 -1591 0.075191 0.055132 13.088826 19.032515 -1592 0.035510 0.018821 7.187419 11.647017 -1593 0.099025 0.029140 10.766188 15.117710 -1594 0.059715 0.032177 9.207279 12.820861 -1595 0.080792 0.038167 8.225471 9.943906 -1596 0.052293 0.029783 6.168101 6.678239 -1597 0.073129 0.036175 8.689113 12.338109 -1598 0.071119 0.046073 16.093504 18.950385 -1599 0.050881 0.018399 9.815421 11.567317 -1600 0.033001 0.013929 11.446680 10.493658 -1601 0.113342 0.081559 9.301539 9.686435 -1602 0.069180 0.017525 10.072303 14.654294 -1603 0.071251 0.063892 8.390340 17.029316 -1604 0.118393 0.066573 11.275374 8.178703 -1605 0.067228 0.044313 8.559790 14.840524 -1606 0.067264 0.054785 10.757406 14.353586 -1607 0.095246 0.095692 12.184219 18.252173 -1608 0.065080 0.045127 7.892138 15.138180 -1609 0.064562 0.032306 9.005491 11.061053 -1610 0.063601 0.027483 7.896646 10.687570 -1611 0.088779 0.063575 11.345497 12.269072 -1612 0.063761 0.059366 9.909868 15.172207 -1613 0.069144 0.037583 7.063902 9.602042 -1614 0.107530 0.056081 8.510945 17.431034 -1615 0.066416 0.044766 7.208130 12.269913 -1616 0.059161 0.064789 6.208107 10.207161 -1617 0.064052 0.038633 6.160722 7.854056 -1618 0.107095 0.059869 11.768910 11.756517 -1619 0.114904 0.095702 22.240176 23.615258 -1620 0.076797 0.047422 9.423269 10.592430 -1621 0.061329 0.073516 11.035039 14.209147 -1622 0.057720 0.035759 8.145496 14.915876 -1623 0.091739 0.065730 10.714390 14.544890 -1624 0.056340 0.033746 13.732763 17.993498 -1625 0.086136 0.081929 12.454318 20.338220 -1626 0.071448 0.048550 11.817779 12.181356 -1627 0.102344 0.065297 10.237398 13.893084 -1628 0.091150 0.095506 17.305063 23.076930 -1629 0.058360 0.053219 9.138468 12.007249 -1630 0.115281 0.054961 10.137639 15.076252 -1631 0.078930 0.048409 11.766199 15.696255 -1632 0.063914 0.042734 7.206348 11.366289 -1633 0.071165 0.060095 8.247783 10.119996 -1634 0.052743 0.035382 10.632492 12.922586 -1635 0.071413 0.033389 13.402314 13.553154 -1636 0.074898 0.032134 10.273520 13.664846 -1637 0.051366 0.021850 7.730081 8.755685 -1638 0.050900 0.024872 9.912614 14.808757 -1639 0.049536 0.034165 8.027905 12.842289 -1640 0.079665 0.087229 13.355087 15.552027 -1641 0.076916 0.042159 8.951658 13.262011 -1642 0.063322 0.030586 13.267643 12.883374 -1643 0.068306 0.048742 9.071455 13.089937 -1644 0.080609 0.052705 8.176277 9.493476 -1645 0.053656 0.026171 6.523788 12.074809 -1646 0.133382 0.085690 10.025107 15.396650 -1647 0.062302 0.024982 8.482549 10.319513 -1648 0.079403 0.056468 12.756360 16.378951 -1649 0.095051 0.042110 7.943680 10.893887 -1650 0.075372 0.043776 13.164200 15.715549 -1651 0.062415 0.035768 7.394689 9.143479 -1652 0.078833 0.062882 8.051671 12.621419 -1653 0.086621 0.066688 15.125423 12.879360 -1654 0.088979 0.057485 7.358967 13.297142 -1655 0.095052 0.042205 9.174353 15.853244 -1656 0.129720 0.094464 8.623044 15.900522 -1657 0.115537 0.071699 17.311599 19.666178 -1658 0.105097 0.051749 14.849801 18.751211 -1659 0.038607 0.025903 7.467323 9.359312 -1660 0.061808 0.052411 5.727108 9.652724 -1661 0.073907 0.069836 8.637203 12.386180 -1662 0.065751 0.045723 20.458346 19.457846 -1663 0.080688 0.056639 15.731728 14.641637 -1664 0.070500 0.035660 11.097442 14.055591 -1665 0.096888 0.069549 13.314340 15.795073 -1666 0.059722 0.033179 11.726760 15.395859 -1667 0.038443 0.026502 11.202873 12.775134 -1668 0.058281 0.044256 6.165515 11.671839 -1669 0.060930 0.034632 12.866116 11.091288 -1670 0.067053 0.042961 11.048149 19.310249 -1671 0.075615 0.033355 5.020819 8.717788 -1672 0.085570 0.073965 10.281066 9.989015 -1673 0.039273 0.024078 5.594573 8.934218 -1674 0.059540 0.039414 11.083660 14.339121 -1675 0.047744 0.017840 5.755237 7.819445 -1676 0.058945 0.044231 8.240917 10.660464 -1677 0.094004 0.055215 12.439280 15.545798 -1678 0.094609 0.044402 10.691220 10.509379 -1679 0.071313 0.049904 5.302416 13.442926 -1680 0.081490 0.058657 8.982682 11.688035 -1681 0.112005 0.071377 13.096782 14.146655 -1682 0.058658 0.034136 7.677616 6.161574 -1683 0.086644 0.087500 7.945838 11.480007 -1684 0.129255 0.073011 9.516155 13.709894 -1685 0.042776 0.023324 8.423930 10.477351 -1686 0.077021 0.071613 12.348426 17.087532 -1687 0.058351 0.040560 6.625430 9.956731 -1688 0.061043 0.072100 6.769673 13.696523 -1689 0.099140 0.051956 13.657574 14.494372 -1690 0.076741 0.052187 14.421984 16.162332 -1691 0.075193 0.048517 7.336759 9.774574 -1692 0.099807 0.064865 9.468993 18.117095 -1693 0.086453 0.043552 5.446219 9.738355 -1694 0.077958 0.047037 13.325640 17.282509 -1695 0.070051 0.046037 11.031630 13.881856 -1696 0.064080 0.059894 10.550547 13.257989 -1697 0.057520 0.030119 10.039227 11.196006 -1698 0.053936 0.045198 8.900821 13.091824 -1699 0.061401 0.038128 7.907934 11.595492 -1700 0.088771 0.065575 6.855998 12.282693 -1701 0.104985 0.052453 11.841257 11.637395 -1702 0.061974 0.052458 10.362886 15.009024 -1703 0.057537 0.032483 7.906237 14.378312 -1704 0.059943 0.028712 7.053034 11.105798 -1705 0.078584 0.030038 7.001391 11.644094 -1706 0.089749 0.042862 10.909944 11.430740 -1707 0.074370 0.045955 8.950003 16.099437 -1708 0.071352 0.029804 8.647392 10.247272 -1709 0.078862 0.056239 23.136261 20.414726 -1710 0.076449 0.050794 9.144273 13.091767 -1711 0.094121 0.100785 10.364972 11.000048 -1712 0.112077 0.052549 11.927221 9.850332 -1713 0.086918 0.025597 11.105320 12.619509 -1714 0.055442 0.029489 7.825783 13.854676 -1715 0.061997 0.038985 10.888169 13.723776 -1716 0.110161 0.065907 9.421700 11.881708 -1717 0.074539 0.043120 7.396613 11.359555 -1718 0.077454 0.045465 8.476379 16.818846 -1719 0.040647 0.030829 12.696357 15.486678 -1720 0.096620 0.063248 9.173920 10.832819 -1721 0.038505 0.015995 6.929860 7.690836 -1722 0.097541 0.033872 6.034277 12.252099 -1723 0.120968 0.071322 10.629583 16.363468 -1724 0.081261 0.044655 12.422345 17.919319 -1725 0.097822 0.056338 13.017257 24.426651 -1726 0.076216 0.059254 8.806560 8.310353 -1727 0.062867 0.039447 11.639126 16.868052 -1728 0.095547 0.045546 11.787382 12.555747 -1729 0.052445 0.030879 9.551791 9.303482 -1730 0.110157 0.064244 9.587628 14.339339 -1731 0.074914 0.040034 13.133315 10.453708 -1732 0.109628 0.105184 9.314695 9.142671 -1733 0.131676 0.113182 13.601546 14.127152 -1734 0.045810 0.025128 7.017211 12.322997 -1735 0.053833 0.034876 7.412885 10.671343 -1736 0.075110 0.040781 11.468012 10.864289 -1737 0.082361 0.046566 11.629413 10.545428 -1738 0.084516 0.056639 10.395519 13.631449 -1739 0.053690 0.023181 11.639958 14.006299 -1740 0.088189 0.067460 11.890849 12.793151 -1741 0.067422 0.063533 7.809798 9.665656 -1742 0.059492 0.033749 10.235698 10.351946 -1743 0.045632 0.022251 7.364388 10.192401 -1744 0.045768 0.053812 17.124547 17.034392 -1745 0.080490 0.053150 8.423039 9.470780 -1746 0.153592 0.077602 11.798680 12.481272 -1747 0.081148 0.066089 11.108338 20.291409 -1748 0.033836 0.015732 8.194412 7.739771 -1749 0.059540 0.027084 12.417663 15.837640 -1750 0.026684 0.015806 6.624175 8.386846 -1751 0.055054 0.024465 9.342763 8.291752 -1752 0.063662 0.036617 13.819772 16.734600 -1753 0.070594 0.047141 7.131385 8.133657 -1754 0.063958 0.028041 11.309752 13.708322 -1755 0.067161 0.024504 6.350305 12.237602 -1756 0.078404 0.044171 6.872167 8.716373 -1757 0.076870 0.057884 11.553880 15.975135 -1758 0.067620 0.030592 8.605743 11.109414 -1759 0.057523 0.062087 9.635544 12.076623 -1760 0.071602 0.034658 12.914211 11.098878 -1761 0.070263 0.041728 11.508679 8.521431 -1762 0.059937 0.034630 10.219394 9.946030 -1763 0.154694 0.073116 10.545670 16.405791 -1764 0.081973 0.037208 8.150316 10.208744 -1765 0.075460 0.048884 7.196918 10.903131 -1766 0.077740 0.069060 12.296117 17.757608 -1767 0.032339 0.016870 10.629635 9.925683 -1768 0.065204 0.059230 10.523264 15.754730 -1769 0.067513 0.052679 9.674622 8.277976 -1770 0.052405 0.058883 11.917724 14.113168 -1771 0.072421 0.021016 12.045314 10.893558 -1772 0.102901 0.063678 12.670889 13.502189 -1773 0.099920 0.067184 17.410390 23.581755 -1774 0.094577 0.060394 10.133816 13.807715 -1775 0.114637 0.124894 11.000334 12.494577 -1776 0.069961 0.038598 10.033789 14.376325 -1777 0.064230 0.060337 11.890544 14.512342 -1778 0.051635 0.021370 7.523737 12.672691 -1779 0.077889 0.034025 11.272273 12.481394 -1780 0.100591 0.079389 13.074920 18.108931 -1781 0.065012 0.046742 10.147432 11.951464 -1782 0.043503 0.033537 11.311327 20.293050 -1783 0.088511 0.044399 13.584349 17.690284 -1784 0.052856 0.055696 11.178334 15.885165 -1785 0.092183 0.040103 14.607780 10.676748 -1786 0.088833 0.045760 7.645729 13.763921 -1787 0.068794 0.039218 7.385786 9.040832 -1788 0.069901 0.082183 7.569728 14.226505 -1789 0.057485 0.050004 12.430154 10.846372 -1790 0.064601 0.050788 10.631027 16.143155 -1791 0.082654 0.045755 7.861307 8.746429 -1792 0.055675 0.024780 6.806553 11.996451 -1793 0.078240 0.030910 5.807001 7.370792 -1794 0.050832 0.028032 12.802746 13.043168 -1795 0.143510 0.151251 10.698603 13.331718 -1796 0.057717 0.044123 14.721133 17.677490 -1797 0.057828 0.030588 8.445793 10.398702 -1798 0.074766 0.037922 12.909145 16.854202 -1799 0.073421 0.045880 8.608015 14.598965 -1800 0.064378 0.063406 9.999341 9.663586 -1801 0.168455 0.097706 10.994332 13.923803 -1802 0.056500 0.061578 9.095767 12.117974 -1803 0.087332 0.084646 11.950248 18.394730 -1804 0.069845 0.046889 12.594406 16.663610 -1805 0.073362 0.032890 12.749327 15.584162 -1806 0.094469 0.049629 6.339916 11.207102 -1807 0.059770 0.057397 8.746245 10.358118 -1808 0.128219 0.104909 14.008821 20.223589 -1809 0.060615 0.037498 11.232169 16.332858 -1810 0.057271 0.037352 6.852422 9.013147 -1811 0.082144 0.055901 11.502619 14.046387 -1812 0.096654 0.059617 5.782032 9.091542 -1813 0.101043 0.071862 12.558927 14.228210 -1814 0.051523 0.036062 7.653522 8.424235 -1815 0.075794 0.081011 7.420145 11.401028 -1816 0.057970 0.030048 9.551461 9.167822 -1817 0.063366 0.025750 11.264790 12.465108 -1818 0.117346 0.088427 19.946000 17.701094 -1819 0.066981 0.020979 10.435555 13.342472 -1820 0.067563 0.026538 7.297118 11.839104 -1821 0.044848 0.029249 14.228568 14.635879 -1822 0.067562 0.052893 7.392550 8.822013 -1823 0.072057 0.048931 6.297531 9.885007 -1824 0.054280 0.031906 10.515287 15.998943 -1825 0.086061 0.061255 9.662978 15.191658 -1826 0.033147 0.014085 6.439433 8.021064 -1827 0.053109 0.048008 10.229517 16.219569 -1828 0.063108 0.052504 9.879545 12.349002 -1829 0.103669 0.042600 6.373700 11.778948 -1830 0.080824 0.051732 7.502867 9.349354 -1831 0.052556 0.024018 8.430038 10.607026 -1832 0.069353 0.048020 13.380514 11.173739 -1833 0.050350 0.043669 12.216022 8.801420 -1834 0.065699 0.048071 11.641870 11.263776 -1835 0.108672 0.114178 14.179134 14.931211 -1836 0.049879 0.020139 8.855802 10.182917 -1837 0.096416 0.044570 8.495144 13.284475 -1838 0.066407 0.046910 7.316699 9.083545 -1839 0.061740 0.029169 7.541508 8.296270 -1840 0.098745 0.045021 7.580520 9.300759 -1841 0.041806 0.031530 13.178270 14.936666 -1842 0.072182 0.051274 9.709878 10.661278 -1843 0.056240 0.034014 7.610754 7.660344 -1844 0.079124 0.043256 12.263251 15.871561 -1845 0.096329 0.091966 11.778313 17.320840 -1846 0.071545 0.019545 8.326599 7.662614 -1847 0.069518 0.040070 9.487871 9.811429 -1848 0.076041 0.063552 15.548533 17.916998 -1849 0.034251 0.041870 10.457349 11.071727 -1850 0.101276 0.055866 7.851013 8.783730 -1851 0.080114 0.022542 9.421333 15.037083 -1852 0.116536 0.117562 11.901390 18.504080 -1853 0.114868 0.071567 12.620211 13.508557 -1854 0.057431 0.044892 8.617716 13.741048 -1855 0.047487 0.025593 5.807580 7.251087 -1856 0.039308 0.018807 9.989397 10.707105 -1857 0.059984 0.037596 7.318000 10.976856 -1858 0.095630 0.042324 8.736078 10.893907 -1859 0.071767 0.033146 10.262713 15.700758 -1860 0.063755 0.053154 12.055296 13.179779 -1861 0.077680 0.042398 11.275312 11.517337 -1862 0.067119 0.026903 11.757954 13.707657 -1863 0.098140 0.046239 7.265990 10.403113 -1864 0.127070 0.080902 9.197854 13.449060 -1865 0.087308 0.077928 8.343433 10.921956 -1866 0.062672 0.031537 13.369063 12.589557 -1867 0.058958 0.028980 9.855564 10.193594 -1868 0.060714 0.031699 6.555795 10.417212 -1869 0.092526 0.072003 16.196706 26.547169 -1870 0.047246 0.030700 8.076070 12.251561 -1871 0.098165 0.071700 8.983198 13.675041 -1872 0.101774 0.058640 9.337625 12.990572 -1873 0.110750 0.082032 9.839639 14.640552 -1874 0.068461 0.056254 10.772712 11.975517 -1875 0.060759 0.038176 10.950961 17.891475 -1876 0.055943 0.038551 8.743678 13.580162 -1877 0.124792 0.054905 11.513035 14.647223 -1878 0.096071 0.068131 11.872873 13.582309 -1879 0.050166 0.037117 9.747863 10.944869 -1880 0.068393 0.051866 9.160164 12.072043 -1881 0.073340 0.046438 16.626001 12.263660 -1882 0.090145 0.054439 8.350673 13.794013 -1883 0.056957 0.031831 6.772011 9.413511 -1884 0.085549 0.026708 12.601444 17.020761 -1885 0.090173 0.038942 8.374850 12.470397 -1886 0.076298 0.029232 10.045827 12.455540 -1887 0.095735 0.029508 12.041978 11.684711 -1888 0.053422 0.030550 9.841027 12.271602 -1889 0.067979 0.056113 11.821382 13.047196 -1890 0.054309 0.021455 12.162485 11.746886 -1891 0.066501 0.045847 10.470742 15.639046 -1892 0.059071 0.037355 9.748601 10.329365 -1893 0.108598 0.177750 11.623255 17.166480 -1894 0.071563 0.039153 10.784917 7.602332 -1895 0.077919 0.044674 9.415333 12.643149 -1896 0.103993 0.050279 13.950858 10.014769 -1897 0.103328 0.098157 11.485366 13.346116 -1898 0.084439 0.059694 11.655629 14.277758 -1899 0.095483 0.073986 11.980617 15.277846 -1900 0.108465 0.062652 11.533927 10.161169 -1901 0.065260 0.031131 10.534433 18.125444 -1902 0.046696 0.032663 8.011118 11.845481 -1903 0.073435 0.055235 8.707206 7.824728 -1904 0.143569 0.091195 11.682249 14.572230 -1905 0.065005 0.039115 8.482780 11.628164 -1906 0.055601 0.054789 12.113901 9.848769 -1907 0.079860 0.080413 12.098883 11.321340 -1908 0.096937 0.053685 9.465595 9.287739 -1909 0.094190 0.051015 17.483952 20.630054 -1910 0.079084 0.039915 9.543556 11.657336 -1911 0.087995 0.045868 6.852001 9.576304 -1912 0.061490 0.071173 9.569957 13.564411 -1913 0.157973 0.116396 10.235038 10.468085 -1914 0.065812 0.047036 6.375482 8.651241 -1915 0.053068 0.019346 13.241932 12.516271 -1916 0.080210 0.037794 7.894073 10.836855 -1917 0.053297 0.043509 8.307201 11.111279 -1918 0.055931 0.031832 8.580261 13.474726 -1919 0.055651 0.035575 11.457446 11.659446 -1920 0.109692 0.111408 13.201610 15.546461 -1921 0.113646 0.063860 13.491568 13.733300 -1922 0.119592 0.057746 7.820561 14.225741 -1923 0.076483 0.042424 14.488000 18.367480 -1924 0.045582 0.025643 5.560156 7.408459 -1925 0.063769 0.034897 7.251635 12.497526 -1926 0.077720 0.059328 7.501611 10.754044 -1927 0.065520 0.036225 12.473935 11.646886 -1928 0.075432 0.041718 6.691394 7.933417 -1929 0.078741 0.052058 15.016296 14.214690 -1930 0.066592 0.050606 12.605094 19.133838 -1931 0.197757 0.171563 17.982860 27.592495 -1932 0.121257 0.089148 11.214126 15.179242 -1933 0.101105 0.062579 12.451266 13.202052 -1934 0.067040 0.048384 9.359038 15.273595 -1935 0.068647 0.026102 10.649084 15.835558 -1936 0.053157 0.056391 11.254260 12.877542 -1937 0.048413 0.018423 10.379729 11.592524 -1938 0.090430 0.063139 9.497401 10.346970 -1939 0.057275 0.027462 6.828639 10.060548 -1940 0.129048 0.085032 15.422156 24.167623 -1941 0.063494 0.024172 7.367163 9.169590 -1942 0.065170 0.033405 9.146360 14.779019 -1943 0.097693 0.046390 11.371098 12.384828 -1944 0.074311 0.045345 7.290663 11.650860 -1945 0.083026 0.043173 9.096510 11.161075 -1946 0.079314 0.061820 10.738962 10.950770 -1947 0.079791 0.044217 12.099868 13.009682 -1948 0.072617 0.039511 7.886802 11.190692 -1949 0.064225 0.050393 10.208091 13.167217 -1950 0.067553 0.046898 7.833608 9.315507 -1951 0.060477 0.024869 6.684395 13.183434 -1952 0.063551 0.034496 10.286800 13.934837 -1953 0.047841 0.023963 7.489542 9.328379 -1954 0.095889 0.056514 10.128123 11.942166 -1955 0.060928 0.026571 10.648359 11.287457 -1956 0.106003 0.050718 13.003554 13.651266 -1957 0.068709 0.046078 6.918927 8.980394 -1958 0.073593 0.040727 10.605895 12.769235 -1959 0.067270 0.060972 8.059508 11.796960 -1960 0.073582 0.058784 9.244048 8.613343 -1961 0.097211 0.071666 13.375166 14.053954 -1962 0.069655 0.038480 11.279068 15.342007 -1963 0.064416 0.030412 9.468437 11.115366 -1964 0.081895 0.047552 7.978556 12.228164 -1965 0.069924 0.032118 8.106158 12.139672 -1966 0.069766 0.028168 10.872764 13.088496 -1967 0.058891 0.043831 9.859519 12.533276 -1968 0.046175 0.047250 10.114211 14.079155 -1969 0.083932 0.053113 8.567728 11.358975 -1970 0.085645 0.036759 9.531714 10.141317 -1971 0.055253 0.034248 9.756208 12.061291 -1972 0.074612 0.034831 7.459451 9.737314 -1973 0.050227 0.032569 6.919833 7.003635 -1974 0.054861 0.025998 13.993077 13.897841 -1975 0.106054 0.048631 10.046063 13.844534 -1976 0.052533 0.027241 7.456487 7.390372 -1977 0.091751 0.057857 18.594746 17.782909 -1978 0.035806 0.015690 7.274793 10.940284 -1979 0.080165 0.052020 9.389393 12.061782 -1980 0.057934 0.028752 9.792685 16.061554 -1981 0.080085 0.053526 12.506449 10.460829 -1982 0.093777 0.050541 9.848040 11.440853 -1983 0.085360 0.086401 10.543844 17.768655 -1984 0.056788 0.030467 8.090603 8.284511 -1985 0.070237 0.025787 6.212595 10.669349 -1986 0.054913 0.044228 10.285480 15.545852 -1987 0.081860 0.076369 6.351661 9.699759 -1988 0.104355 0.031981 14.149673 14.488777 -1989 0.117755 0.111849 12.297118 15.234277 -1990 0.097641 0.038324 10.616666 14.003165 -1991 0.076219 0.040403 9.767919 11.492694 -1992 0.097055 0.039369 11.930374 14.037750 -1993 0.082418 0.051075 9.158853 12.246628 -1994 0.087189 0.079115 17.755164 13.645489 -1995 0.052686 0.026081 8.321913 7.524371 -1996 0.076797 0.049595 15.123988 14.073640 -1997 0.105924 0.074903 19.974890 19.354028 -1998 0.077296 0.049751 7.647296 9.074172 -1999 0.063019 0.024623 6.591745 9.351156 -2000 0.078334 0.045220 8.481642 13.717262 -2001 0.137759 0.074516 12.565494 15.228853 -2002 0.080202 0.045006 6.257762 8.735914 -2003 0.080285 0.040460 14.727396 19.829821 -2004 0.075847 0.058428 11.757537 14.672723 -2005 0.096092 0.051963 12.038433 12.818894 -2006 0.121444 0.079276 10.201574 14.110421 -2007 0.104494 0.074154 13.408214 12.763626 -2008 0.061473 0.045177 9.394483 13.716138 -2009 0.128875 0.086980 12.043216 16.137616 -2010 0.099013 0.061880 8.382656 11.420637 -2011 0.056879 0.026948 8.086277 10.156073 -2012 0.045636 0.025049 7.241560 13.053293 -2013 0.056807 0.044470 13.967606 18.869368 -2014 0.091847 0.087827 8.125267 11.239233 -2015 0.152671 0.059921 9.361382 11.470859 -2016 0.064481 0.041010 8.523997 12.973024 -2017 0.069974 0.042452 15.421832 17.752220 -2018 0.069582 0.064484 12.681563 15.192855 -2019 0.081002 0.059679 15.053136 12.936084 -2020 0.101501 0.089205 10.272257 10.381558 -2021 0.080794 0.067596 16.114307 16.411630 -2022 0.065561 0.049042 8.316301 13.717555 -2023 0.075128 0.026282 6.890536 14.213883 -2024 0.084515 0.074844 12.508424 14.958507 -2025 0.111345 0.076544 14.254632 13.902129 -2026 0.058755 0.056255 14.216661 15.036830 -2027 0.057932 0.040277 9.977052 11.965613 -2028 0.094469 0.035676 11.741888 14.802650 -2029 0.106742 0.067448 13.538621 15.476494 -2030 0.086985 0.042954 10.650633 15.973848 -2031 0.080444 0.047549 12.105535 13.505533 -2032 0.073549 0.057000 7.632180 14.922554 -2033 0.080596 0.070628 13.066719 15.997428 -2034 0.086735 0.061486 10.024270 9.704579 -2035 0.088871 0.024241 8.636406 12.063626 -2036 0.074602 0.044358 7.610286 8.685012 -2037 0.080031 0.048762 9.367456 13.766109 -2038 0.072313 0.053841 8.316100 9.544842 -2039 0.056815 0.030118 9.761452 11.794811 -2040 0.067821 0.029263 8.707152 10.840464 -2041 0.075411 0.030637 12.023704 14.197914 -2042 0.060317 0.027715 8.745629 9.702212 -2043 0.095853 0.066066 10.649984 12.617644 -2044 0.085122 0.048712 8.888888 16.451579 -2045 0.086140 0.068643 9.746632 12.042273 -2046 0.095125 0.042223 9.892857 14.942063 -2047 0.106227 0.060542 8.110145 9.754500 -2048 0.091717 0.094486 10.633049 13.389864 -2049 0.065417 0.045361 10.486776 14.951710 -2050 0.059994 0.021469 12.962333 15.333855 -2051 0.048029 0.037933 12.597783 17.734517 -2052 0.109136 0.096049 15.198689 15.376586 -2053 0.046125 0.041325 8.832326 10.010343 -2054 0.095052 0.069305 13.906523 12.352588 -2055 0.099004 0.079258 10.946939 11.193679 -2056 0.053776 0.048128 10.345037 13.108619 -2057 0.079414 0.035222 8.120395 11.888866 -2058 0.119255 0.045933 12.335102 16.684148 -2059 0.071555 0.039005 12.883093 14.090738 -2060 0.081211 0.057045 7.119437 8.589339 -2061 0.040000 0.023165 11.037205 17.806490 -2062 0.058835 0.030712 9.226087 12.787533 -2063 0.077837 0.060741 9.020060 17.198327 -2064 0.065745 0.031185 10.116840 13.436104 -2065 0.038987 0.030901 7.962299 8.435863 -2066 0.077635 0.051373 6.126375 6.769318 -2067 0.134683 0.079446 10.600584 15.394920 -2068 0.122313 0.068052 8.789976 10.566228 -2069 0.079044 0.027354 5.878017 11.515195 -2070 0.056824 0.034055 8.509310 13.545152 -2071 0.073785 0.054988 10.758455 12.025282 -2072 0.079901 0.053995 13.958059 18.565421 -2073 0.056489 0.043617 7.162990 9.120336 -2074 0.061586 0.020440 8.108745 11.640100 -2075 0.065734 0.027426 7.952363 13.676078 -2076 0.053412 0.026314 9.668055 12.133544 -2077 0.085195 0.057165 13.131586 17.680508 -2078 0.065264 0.037133 6.269625 10.274415 -2079 0.056696 0.036287 7.106997 9.042425 -2080 0.092175 0.053540 16.316077 15.025755 -2081 0.090638 0.055324 7.876018 10.855370 -2082 0.100125 0.068696 10.446447 10.529915 -2083 0.142756 0.068895 10.874365 13.247194 -2084 0.059045 0.029090 11.413871 12.718385 -2085 0.081691 0.045338 10.949594 11.451720 -2086 0.078955 0.036918 7.720763 12.943397 -2087 0.089807 0.038577 11.368923 14.328191 -2088 0.074522 0.037426 9.182943 11.875561 -2089 0.081184 0.058427 9.950565 11.189232 -2090 0.087994 0.052409 6.101434 8.556679 -2091 0.079859 0.023855 8.354932 7.384741 -2092 0.170649 0.084156 11.074186 12.277139 -2093 0.113288 0.065274 12.503179 17.893242 -2094 0.054091 0.027143 11.529798 15.691794 -2095 0.118948 0.098988 11.842564 17.208141 -2096 0.052124 0.056943 7.974337 11.830272 -2097 0.059554 0.039853 9.355617 9.105672 -2098 0.081090 0.032403 9.887942 17.191380 -2099 0.093735 0.026175 8.468284 9.521508 -2100 0.066907 0.038570 18.531343 16.206430 -2101 0.048266 0.034795 5.656725 7.252345 -2102 0.050745 0.029074 17.996689 15.085903 -2103 0.062738 0.028303 7.397168 9.994685 -2104 0.049980 0.027456 7.984027 10.773683 -2105 0.066372 0.044255 10.613251 10.140985 -2106 0.041491 0.022649 10.186596 13.145328 -2107 0.059606 0.054245 7.167624 11.705224 -2108 0.073295 0.047953 11.282753 17.040087 -2109 0.063494 0.030300 7.887394 14.631183 -2110 0.118387 0.075468 7.129740 6.304762 -2111 0.076807 0.060748 9.394034 10.406803 -2112 0.063453 0.036351 9.832183 13.345643 -2113 0.056336 0.039015 10.491639 11.669457 -2114 0.088845 0.044144 8.141521 16.010722 -2115 0.060100 0.028993 6.774822 10.375748 -2116 0.074272 0.037795 8.768881 15.033497 -2117 0.090408 0.045700 14.342209 11.752786 -2118 0.064968 0.029623 5.621081 9.321468 -2119 0.132029 0.046716 12.695843 13.331123 -2120 0.069886 0.042250 11.579567 11.720411 -2121 0.072413 0.052694 10.651687 14.401859 -2122 0.103186 0.051580 11.777003 13.711439 -2123 0.073544 0.069737 9.402440 11.197265 -2124 0.053138 0.025370 7.996994 12.976391 -2125 0.060619 0.054348 10.071156 15.271845 -2126 0.079355 0.034015 8.986765 11.834390 -2127 0.051864 0.031220 6.532127 8.211325 -2128 0.085211 0.064541 10.995123 13.539516 -2129 0.108497 0.044905 12.994193 18.158246 -2130 0.064648 0.047959 7.213945 10.705481 -2131 0.134425 0.099860 13.616070 21.907774 -2132 0.088839 0.039496 8.412122 19.405600 -2133 0.057946 0.034514 9.745309 9.615790 -2134 0.114834 0.089773 9.374448 11.337989 -2135 0.110298 0.078198 15.135467 14.723334 -2136 0.134540 0.108806 8.322632 13.381877 -2137 0.076642 0.050476 12.546418 16.130398 -2138 0.064114 0.067594 18.887879 14.232265 -2139 0.087974 0.063381 14.114248 16.437322 -2140 0.046789 0.027888 9.591973 11.158540 -2141 0.098715 0.077669 13.537365 14.389488 -2142 0.053790 0.031924 12.532051 13.390234 -2143 0.096109 0.084171 12.226956 13.887272 -2144 0.065675 0.039481 10.171858 11.808767 -2145 0.100675 0.070994 12.453756 20.054205 -2146 0.069337 0.047305 13.616030 11.326168 -2147 0.043127 0.019311 10.003885 13.505339 -2148 0.068446 0.045745 9.771799 11.701219 -2149 0.085208 0.062695 13.007281 15.035065 -2150 0.081387 0.045609 9.002509 8.294370 -2151 0.079884 0.037623 8.957948 12.102942 -2152 0.139406 0.120929 8.497340 20.448503 -2153 0.074957 0.075960 15.622704 15.340271 -2154 0.065424 0.036287 6.607332 8.506069 -2155 0.068233 0.039856 9.730033 14.762910 -2156 0.068422 0.053973 8.973373 12.861317 -2157 0.099152 0.048722 13.175667 15.404189 -2158 0.047176 0.022156 6.484857 9.311759 -2159 0.090744 0.056030 10.045311 10.279015 -2160 0.061268 0.028916 12.395524 15.862561 -2161 0.099534 0.087259 10.949945 15.192654 -2162 0.097515 0.059070 9.108328 8.561724 -2163 0.080739 0.028228 8.776793 11.347264 -2164 0.063124 0.053927 12.000969 11.355149 -2165 0.063824 0.045075 8.872192 10.926466 -2166 0.083174 0.060134 8.429260 10.881418 -2167 0.061847 0.037937 11.078950 14.868273 -2168 0.052771 0.018474 9.467988 10.775404 -2169 0.100629 0.056269 6.007965 14.825445 -2170 0.108299 0.058725 7.071633 14.272994 -2171 0.072245 0.064686 9.094874 11.474573 -2172 0.084546 0.069952 9.280741 9.896787 -2173 0.106934 0.067287 13.362533 15.719127 -2174 0.080502 0.054626 10.161119 13.196234 -2175 0.067512 0.059388 10.596903 11.010468 -2176 0.071837 0.046167 9.197668 11.032367 -2177 0.090609 0.042215 7.879831 9.943515 -2178 0.114364 0.058356 6.706146 9.342825 -2179 0.090901 0.035410 9.086528 10.211756 -2180 0.047647 0.064987 8.984808 8.668940 -2181 0.069668 0.056909 11.498687 14.086257 -2182 0.086639 0.051717 13.321873 16.135576 -2183 0.037913 0.030390 8.148759 12.136241 -2184 0.095645 0.053318 8.991377 13.125508 -2185 0.093567 0.049505 8.743286 8.978123 -2186 0.045273 0.048054 10.239824 11.501462 -2187 0.059882 0.031351 10.308830 11.130939 -2188 0.041790 0.019576 6.683536 6.052962 -2189 0.079243 0.045204 12.931687 10.012520 -2190 0.096982 0.068958 7.233447 12.780496 -2191 0.056114 0.029359 12.588815 11.165424 -2192 0.093438 0.070799 8.566743 10.232979 -2193 0.082097 0.066769 9.305227 12.045207 -2194 0.141333 0.066118 14.585712 18.579357 -2195 0.162900 0.069220 11.441610 18.116990 -2196 0.068553 0.084189 13.119460 16.814848 -2197 0.153697 0.095548 10.346169 19.694813 -2198 0.041139 0.033063 8.922189 12.499936 -2199 0.081157 0.060667 10.001329 10.290834 -2200 0.076790 0.054244 12.531582 13.452959 -2201 0.063355 0.044760 9.379242 17.020723 -2202 0.048307 0.025464 11.640760 11.274760 -2203 0.063546 0.042944 11.501873 13.348231 -2204 0.051111 0.023500 12.042420 10.780215 -2205 0.111294 0.038260 10.448619 11.338382 -2206 0.113048 0.056397 10.965551 12.390768 -2207 0.071330 0.035133 7.110387 13.916285 -2208 0.057770 0.039104 11.808100 16.459843 -2209 0.067066 0.034760 7.503736 11.739810 -2210 0.092440 0.069926 10.683343 10.880896 -2211 0.134595 0.111812 13.222461 19.471626 -2212 0.072047 0.081119 5.696748 9.942743 -2213 0.105584 0.040447 14.350119 19.327801 -2214 0.114898 0.061584 11.434188 17.112948 -2215 0.083804 0.049711 9.409931 14.805711 -2216 0.070077 0.044169 7.955918 8.884031 -2217 0.069160 0.024599 11.037435 13.514172 -2218 0.061025 0.023713 6.431057 6.781891 -2219 0.070329 0.044084 13.997487 19.531977 -2220 0.071285 0.038781 11.252849 10.956256 -2221 0.057307 0.038933 6.161745 11.083907 -2222 0.102722 0.111706 15.717923 23.016194 -2223 0.066085 0.053281 10.688015 9.784519 -2224 0.106291 0.043400 11.946592 12.926127 -2225 0.058167 0.039103 9.996069 11.217220 -2226 0.033641 0.016437 6.787354 7.482716 -2227 0.080910 0.037295 8.787574 10.741412 -2228 0.055554 0.061991 9.613615 7.900634 -2229 0.054136 0.029879 7.328758 8.890353 -2230 0.083244 0.060117 11.806175 12.030639 -2231 0.184558 0.111089 13.121690 12.446616 -2232 0.077297 0.037489 9.464370 12.305269 -2233 0.049986 0.041688 6.917062 8.501647 -2234 0.076113 0.047464 9.935249 11.682460 -2235 0.093128 0.036117 15.460609 16.984396 -2236 0.071106 0.043375 10.843450 14.241239 -2237 0.064511 0.053044 18.719615 21.283166 -2238 0.105527 0.087242 10.781091 10.842388 -2239 0.129418 0.079140 10.129829 13.632274 -2240 0.069986 0.022984 7.578924 15.780660 -2241 0.109848 0.041618 11.303805 19.077488 -2242 0.079908 0.049613 11.250269 18.161535 -2243 0.081452 0.027740 6.482713 7.209208 -2244 0.085357 0.049473 6.759195 9.077504 -2245 0.063151 0.058371 7.343648 9.356961 -2246 0.158844 0.116805 17.916475 14.347284 -2247 0.077881 0.098709 12.161284 16.404519 -2248 0.086086 0.079126 11.562354 12.750950 -2249 0.139488 0.060916 8.607225 12.716889 -2250 0.043552 0.019023 5.671156 8.321815 -2251 0.056184 0.029377 10.942775 14.262415 -2252 0.089267 0.075251 9.960151 18.903598 -2253 0.053409 0.028725 10.274244 12.166047 -2254 0.084534 0.077165 7.867859 11.090792 -2255 0.063947 0.048836 12.601434 14.164124 -2256 0.118149 0.100138 13.607393 11.387518 -2257 0.063551 0.029634 7.599601 13.452563 -2258 0.102426 0.101546 8.805326 11.166924 -2259 0.055600 0.047099 16.082037 16.102635 -2260 0.069290 0.039416 6.959102 7.309131 -2261 0.067139 0.027982 9.278467 11.214548 -2262 0.059901 0.027590 8.524364 8.060132 -2263 0.070729 0.048854 7.133218 12.086431 -2264 0.082434 0.026582 8.769699 11.501249 -2265 0.086910 0.038920 10.941508 11.946752 -2266 0.114741 0.058307 12.246943 10.927200 -2267 0.064721 0.038121 10.291456 17.073735 -2268 0.070852 0.040830 8.681878 10.655228 -2269 0.061246 0.036065 11.754908 9.203782 -2270 0.114534 0.055933 15.963083 20.130802 -2271 0.055947 0.024674 6.276993 6.640484 -2272 0.083548 0.050384 8.384173 12.823415 -2273 0.069153 0.054853 6.743570 10.607658 -2274 0.109926 0.035989 12.890585 18.292118 -2275 0.071789 0.048320 12.258021 14.903420 -2276 0.119099 0.094476 20.300975 20.674579 -2277 0.086757 0.034284 8.364810 11.787694 -2278 0.099031 0.085104 8.355601 14.864644 -2279 0.078650 0.042217 11.485556 10.806659 -2280 0.086625 0.049239 6.633919 6.944338 -2281 0.091540 0.046761 10.817494 11.821439 -2282 0.057055 0.036564 5.985919 7.222088 -2283 0.051146 0.031482 7.952207 9.238115 -2284 0.056565 0.041246 12.380173 13.194852 -2285 0.105465 0.049694 8.196709 13.211758 -2286 0.058305 0.046246 7.267810 14.308745 -2287 0.065605 0.066800 10.667906 13.353441 -2288 0.042988 0.023028 6.401252 9.385970 -2289 0.055805 0.046312 9.275703 13.562365 -2290 0.075813 0.028815 7.378918 12.870050 -2291 0.082608 0.048809 8.664943 16.815207 -2292 0.090093 0.058331 15.394264 15.493221 -2293 0.076235 0.047965 8.666196 11.605747 -2294 0.069602 0.029293 8.136187 8.448741 -2295 0.047242 0.027361 9.552131 10.740357 -2296 0.071894 0.043658 10.330597 12.579883 -2297 0.066061 0.033823 9.348349 8.718108 -2298 0.059819 0.031886 5.795441 7.232159 -2299 0.119471 0.073744 12.586366 13.670902 -2300 0.060078 0.036858 13.722464 15.094118 -2301 0.064754 0.025398 8.981466 12.139062 -2302 0.089311 0.037314 11.341883 10.317042 -2303 0.068709 0.050720 8.051444 10.655394 -2304 0.096821 0.070951 8.504296 14.307929 -2305 0.089173 0.043956 8.691650 13.309132 -2306 0.085889 0.097532 7.661621 11.443475 -2307 0.075737 0.042229 8.309248 17.062543 -2308 0.089205 0.042347 9.508161 13.351387 -2309 0.074470 0.033568 6.934129 11.983962 -2310 0.072886 0.029510 7.897825 10.191079 -2311 0.121951 0.075926 9.165795 11.939872 -2312 0.049244 0.040071 10.263438 12.437468 -2313 0.086712 0.041541 11.237046 10.993401 -2314 0.097909 0.084690 8.569787 10.698182 -2315 0.036339 0.027999 7.341379 8.092482 -2316 0.077261 0.039208 11.207006 15.058326 -2317 0.084092 0.043868 9.454874 11.560089 -2318 0.054891 0.036379 6.789899 12.574108 -2319 0.050735 0.041868 9.867656 15.563944 -2320 0.100745 0.032163 10.027081 15.831937 -2321 0.066966 0.031627 10.665053 15.765651 -2322 0.087833 0.053631 9.631997 11.095375 -2323 0.060794 0.037619 6.659818 6.933196 -2324 0.055488 0.042357 10.219921 11.899400 -2325 0.066556 0.026855 8.021112 10.512408 -2326 0.062294 0.053249 12.893934 14.481358 -2327 0.040347 0.024116 11.163813 16.499849 -2328 0.079641 0.034210 9.835064 9.762232 -2329 0.051301 0.027483 10.645363 10.498607 -2330 0.078324 0.058768 9.684058 11.570946 -2331 0.057721 0.028276 9.398250 8.823634 -2332 0.079121 0.044466 14.745955 15.395011 -2333 0.047568 0.042732 8.484097 16.724580 -2334 0.053945 0.058893 11.836120 14.601158 -2335 0.085097 0.052680 7.590894 12.915634 -2336 0.056629 0.033601 9.299428 15.962819 -2337 0.112631 0.037865 8.572714 12.285185 -2338 0.065852 0.024960 5.074112 7.317166 -2339 0.064694 0.051955 7.893525 9.068019 -2340 0.080237 0.081530 11.358559 15.802697 -2341 0.058619 0.037795 12.506900 14.428938 -2342 0.084732 0.055558 12.040722 19.935319 -2343 0.093748 0.062502 12.022952 16.965106 -2344 0.047845 0.022093 9.397667 12.221587 -2345 0.070016 0.039143 9.307925 9.267993 -2346 0.075307 0.029584 10.286753 15.726827 -2347 0.080647 0.066899 8.385325 14.500584 -2348 0.053766 0.020804 8.801934 10.445326 -2349 0.097958 0.072078 16.158909 14.948795 -2350 0.051440 0.038180 7.109673 8.821052 -2351 0.069380 0.059528 10.951857 10.292756 -2352 0.070628 0.045659 12.657432 11.475383 -2353 0.113789 0.081703 12.652115 17.656005 -2354 0.073064 0.040093 10.313063 11.921409 -2355 0.092537 0.065136 13.313101 10.343069 -2356 0.068797 0.031540 11.513525 10.208920 -2357 0.111666 0.099717 11.254888 10.726947 -2358 0.073321 0.039140 14.097224 20.808480 -2359 0.113626 0.077849 7.763251 12.761860 -2360 0.089629 0.048599 13.991500 14.747320 -2361 0.068765 0.037458 11.017086 10.930700 -2362 0.102206 0.056718 8.368739 14.572670 -2363 0.086572 0.041743 8.189885 13.639576 -2364 0.034033 0.029535 7.376101 11.012117 -2365 0.049792 0.026417 11.743323 13.150536 -2366 0.082967 0.055677 12.514162 17.532507 -2367 0.072632 0.055970 12.291794 14.711737 -2368 0.043351 0.029638 8.482524 15.883766 -2369 0.125077 0.069940 12.955828 16.804578 -2370 0.053890 0.048207 9.420558 10.916216 -2371 0.085706 0.081708 11.762531 16.383239 -2372 0.077750 0.060396 6.913850 9.419122 -2373 0.062270 0.033056 8.890323 10.657700 -2374 0.080596 0.034463 9.871683 10.209528 -2375 0.077507 0.048641 7.027935 7.927850 -2376 0.075439 0.041327 12.579825 15.674957 -2377 0.066110 0.037527 7.182091 10.181888 -2378 0.037793 0.023517 7.822245 11.353455 -2379 0.124115 0.096693 9.865676 15.082091 -2380 0.074875 0.063903 10.193434 13.751201 -2381 0.104101 0.102385 13.870409 17.400872 -2382 0.134944 0.061979 8.637556 12.388604 -2383 0.091647 0.046028 12.170840 17.995710 -2384 0.074777 0.059316 6.867926 10.774237 -2385 0.072952 0.053173 13.631556 10.618178 -2386 0.059771 0.025340 9.317744 10.768526 -2387 0.064906 0.063575 9.635754 10.178147 -2388 0.094490 0.029170 9.421875 12.856065 -2389 0.134263 0.103030 12.104566 10.723022 -2390 0.090664 0.053427 11.508711 14.608195 -2391 0.087301 0.073134 11.845439 13.297712 -2392 0.130703 0.055319 8.204764 10.142984 -2393 0.085122 0.048820 11.274520 18.859094 -2394 0.043196 0.049659 7.329355 8.418345 -2395 0.079256 0.039187 9.584797 13.151352 -2396 0.071215 0.043352 11.147766 13.274836 -2397 0.085372 0.027228 9.937144 12.234504 -2398 0.052584 0.025219 5.523612 7.488351 -2399 0.087604 0.065433 10.052137 15.299902 -2400 0.077004 0.040905 8.668692 11.771918 -2401 0.053312 0.033121 12.101600 13.108584 -2402 0.074702 0.039201 12.103805 11.521185 -2403 0.088521 0.039816 10.572813 10.376318 -2404 0.053256 0.039815 7.301907 11.212923 -2405 0.074242 0.051962 8.339515 17.150341 -2406 0.074946 0.071515 9.612002 11.373753 -2407 0.082084 0.043091 10.118122 10.125312 -2408 0.041257 0.023609 7.210713 11.711168 -2409 0.099351 0.055372 10.934818 15.891195 -2410 0.183364 0.076554 13.147286 16.102951 -2411 0.081980 0.026553 15.308512 15.038291 -2412 0.071805 0.052336 12.636898 12.450971 -2413 0.055543 0.022372 8.220506 9.411362 -2414 0.047438 0.019871 6.360360 9.013592 -2415 0.040613 0.035615 8.091159 8.792612 -2416 0.052141 0.033836 8.023285 11.792930 -2417 0.061071 0.032275 8.770431 9.246690 -2418 0.079883 0.042347 6.665638 10.650567 -2419 0.082651 0.125405 9.634851 15.342434 -2420 0.092404 0.046791 9.822637 11.319940 -2421 0.124205 0.080399 12.412108 14.111642 -2422 0.104930 0.055238 9.245315 14.113782 -2423 0.047930 0.021097 8.207505 8.775068 -2424 0.091836 0.069307 10.522495 17.639681 -2425 0.057238 0.030013 7.503763 14.555353 -2426 0.049370 0.031740 8.334697 11.874016 -2427 0.049972 0.032953 9.192294 13.601442 -2428 0.106574 0.094474 12.168274 11.785478 -2429 0.092124 0.061535 13.046360 18.192099 -2430 0.111055 0.065255 10.575334 18.383920 -2431 0.126924 0.061560 12.061980 19.871792 -2432 0.069260 0.059740 10.327388 13.908488 -2433 0.062884 0.031465 9.561468 8.883292 -2434 0.096138 0.046628 10.385642 12.786320 -2435 0.077645 0.033963 14.519777 11.455359 -2436 0.089043 0.050069 9.594431 11.292746 -2437 0.114253 0.053881 14.175254 18.725513 -2438 0.052534 0.028647 9.049120 12.238272 -2439 0.060034 0.039040 9.536535 10.032398 -2440 0.086676 0.043499 13.828845 12.730135 -2441 0.107487 0.044584 7.875629 11.909994 -2442 0.063216 0.039604 9.117276 14.467631 -2443 0.059859 0.035884 10.306146 12.373974 -2444 0.083685 0.056945 6.527666 10.873337 -2445 0.055017 0.029410 7.671672 10.258123 -2446 0.086388 0.038141 7.527155 11.017384 -2447 0.071828 0.045350 8.940071 11.901395 -2448 0.077958 0.054053 12.710630 11.843870 -2449 0.061416 0.043980 10.492919 13.236896 -2450 0.066910 0.032807 11.220749 15.367727 -2451 0.080588 0.079051 10.604322 17.326948 -2452 0.048592 0.033981 11.175302 15.817574 -2453 0.089414 0.064280 6.044560 11.446813 -2454 0.052952 0.060697 11.557389 11.019214 -2455 0.079233 0.052198 12.881573 11.593281 -2456 0.104525 0.078562 8.848014 15.658476 -2457 0.071840 0.057498 16.098191 16.714519 -2458 0.107095 0.063126 10.646940 10.771629 -2459 0.122778 0.107594 18.101735 19.522706 -2460 0.085503 0.059616 12.990407 27.973981 -2461 0.075456 0.068745 11.601028 17.553231 -2462 0.106211 0.067302 8.643468 13.753447 -2463 0.080655 0.057233 8.158282 12.536552 -2464 0.035804 0.048261 6.867250 7.527840 -2465 0.050670 0.037167 8.691071 10.812624 -2466 0.059311 0.031606 11.639668 14.382595 -2467 0.070472 0.041042 12.424351 13.806828 -2468 0.094481 0.073239 8.625618 12.617319 -2469 0.085603 0.056737 11.552661 12.919405 -2470 0.104411 0.061150 12.563798 17.778248 -2471 0.091258 0.053785 9.817058 14.618958 -2472 0.071622 0.043069 6.597002 9.991530 -2473 0.051845 0.037950 7.598057 9.703370 -2474 0.112532 0.079062 6.580852 8.040145 -2475 0.079128 0.060553 8.576756 13.732693 -2476 0.068458 0.047321 8.421578 18.636028 -2477 0.048210 0.032299 9.820145 10.995794 -2478 0.043078 0.047312 8.457224 12.010848 -2479 0.053993 0.036409 10.159727 12.978775 -2480 0.060567 0.043033 10.565917 13.357769 -2481 0.043065 0.014402 8.329608 10.246086 -2482 0.093146 0.100812 9.337316 13.541687 -2483 0.092003 0.052456 11.903757 15.430857 -2484 0.088600 0.060452 10.106293 9.415848 -2485 0.055676 0.037837 8.458500 11.364024 -2486 0.082790 0.046500 9.085105 10.517447 -2487 0.085997 0.064940 9.797842 19.480270 -2488 0.093753 0.043678 7.300344 9.627169 -2489 0.062811 0.029711 8.842158 10.345637 -2490 0.093516 0.066382 11.854692 12.393580 -2491 0.069838 0.034928 7.897765 9.598804 -2492 0.087390 0.063593 11.225954 13.433153 -2493 0.047286 0.042127 10.894349 11.602613 -2494 0.137227 0.043509 5.806567 7.323749 -2495 0.068372 0.022309 10.111383 12.427739 -2496 0.123408 0.071970 11.197543 14.057128 -2497 0.087503 0.055208 9.195621 12.831861 -2498 0.102684 0.046194 12.628841 12.856245 -2499 0.131617 0.057964 9.327633 11.083538 -2500 0.069448 0.049247 9.190513 15.596970 -2501 0.066370 0.035347 10.509448 14.608256 -2502 0.084698 0.062426 12.970923 14.912743 -2503 0.065878 0.055173 8.819896 13.290583 -2504 0.050723 0.043226 9.171914 19.744978 -2505 0.095233 0.064912 12.713691 12.745865 -2506 0.099356 0.036227 9.336113 10.651751 -2507 0.052098 0.063113 12.658870 17.371444 -2508 0.073438 0.030068 7.283918 12.431758 -2509 0.099297 0.039827 8.227355 13.716589 -2510 0.070869 0.049412 10.446242 10.396988 -2511 0.083067 0.039866 8.270231 12.242459 -2512 0.075840 0.051935 10.849402 14.243153 -2513 0.031736 0.020374 6.643467 7.096990 -2514 0.069482 0.062062 9.571183 10.800299 -2515 0.077512 0.048839 12.104975 9.454883 -2516 0.064488 0.029029 12.329395 16.434096 -2517 0.056033 0.024767 8.035766 15.204826 -2518 0.120753 0.062013 8.561567 12.583792 -2519 0.101953 0.042416 21.187147 22.362674 -2520 0.071462 0.069003 11.222885 7.800477 -2521 0.081336 0.038413 7.115957 9.304675 -2522 0.102439 0.043060 12.812850 13.084188 -2523 0.109074 0.070063 15.253929 13.740251 -2524 0.085598 0.057994 11.111164 14.153039 -2525 0.146673 0.110929 15.748586 22.964251 -2526 0.072100 0.024341 10.488164 11.071415 -2527 0.075130 0.040560 7.303544 10.583224 -2528 0.066488 0.064674 16.558913 18.235687 -2529 0.070666 0.041051 6.552100 6.940153 -2530 0.074930 0.046339 14.132284 14.923154 -2531 0.100996 0.097234 10.656274 16.986322 -2532 0.071824 0.045806 8.636970 12.207949 -2533 0.086151 0.038599 11.592913 14.290583 -2534 0.059116 0.037504 10.428799 11.360018 -2535 0.068424 0.030598 11.289331 8.745465 -2536 0.102357 0.056814 6.662484 6.698268 -2537 0.068959 0.028944 12.576671 15.423280 -2538 0.083491 0.052137 11.098522 18.004632 -2539 0.064801 0.027594 10.654787 14.623689 -2540 0.057553 0.037206 9.330183 13.946710 -2541 0.062130 0.033434 9.497724 20.634079 -2542 0.062273 0.042728 6.350270 9.553286 -2543 0.062286 0.024321 6.919289 9.509685 -2544 0.052951 0.043961 10.019655 13.206658 -2545 0.084701 0.041935 9.679187 12.855561 -2546 0.057293 0.029502 11.813818 10.722058 -2547 0.038214 0.027727 8.620624 9.303752 -2548 0.046017 0.051442 8.550076 10.353317 -2549 0.130566 0.090000 10.879149 15.627817 -2550 0.065240 0.027954 8.714180 10.811595 -2551 0.066275 0.040535 11.496400 10.512350 -2552 0.086425 0.040244 7.507410 11.033442 -2553 0.151886 0.109719 10.847509 15.998293 -2554 0.053077 0.029304 8.809723 9.139020 -2555 0.050799 0.055958 15.778573 16.019667 -2556 0.090921 0.087636 9.456102 18.363467 -2557 0.081832 0.038838 14.914228 17.695728 -2558 0.090091 0.043623 13.063697 15.872374 -2559 0.094664 0.086554 13.232972 12.146825 -2560 0.060545 0.029445 7.701187 11.129991 -2561 0.141652 0.073391 8.124255 17.353555 -2562 0.089184 0.061665 7.116104 8.298286 -2563 0.063928 0.036582 13.197398 15.437256 -2564 0.092092 0.062111 11.635590 18.211208 -2565 0.086954 0.094906 8.838865 6.919123 -2566 0.089399 0.052912 12.498300 13.343788 -2567 0.097143 0.044038 10.763180 11.572508 -2568 0.107334 0.057936 13.108325 11.832499 -2569 0.063784 0.033336 9.384949 11.534924 -2570 0.054249 0.033101 8.188571 7.914180 -2571 0.081057 0.045411 10.616776 11.240848 -2572 0.081715 0.042856 12.015699 14.816114 -2573 0.052741 0.027738 8.968623 11.683886 -2574 0.091860 0.024696 10.109714 12.310839 -2575 0.102771 0.049490 11.838153 14.960059 -2576 0.084227 0.052249 7.087535 12.955111 -2577 0.090740 0.075295 9.812984 17.839525 -2578 0.065889 0.015423 8.274059 14.327179 -2579 0.061534 0.025570 12.402874 21.544007 -2580 0.116402 0.066433 17.545133 18.372689 -2581 0.073794 0.044322 10.614425 14.806723 -2582 0.085093 0.038171 10.845737 13.617339 -2583 0.115904 0.043015 12.557056 16.400298 -2584 0.097534 0.068213 9.763219 15.633054 -2585 0.067066 0.039506 13.518923 13.666044 -2586 0.067862 0.062024 7.817948 9.989693 -2587 0.060750 0.052176 9.124578 13.821538 -2588 0.042767 0.022070 7.809219 10.943610 -2589 0.042503 0.022317 5.589498 10.430518 -2590 0.037654 0.019692 10.825010 11.332987 -2591 0.085555 0.068138 9.587396 14.883509 -2592 0.068136 0.047241 9.264536 16.941795 -2593 0.126657 0.103435 12.712798 13.334641 -2594 0.054622 0.045725 11.293947 13.257293 -2595 0.035148 0.024964 14.523241 11.708616 -2596 0.084358 0.047865 8.269818 11.975206 -2597 0.061698 0.032204 11.793065 22.273330 -2598 0.094673 0.058464 11.493806 12.298594 -2599 0.074665 0.049302 9.720935 14.880862 -2600 0.044814 0.043695 5.847999 11.386269 -2601 0.097272 0.053643 7.241941 16.637624 -2602 0.056367 0.066221 10.882831 11.983271 -2603 0.069691 0.040123 7.380838 8.701413 -2604 0.072305 0.037978 15.470762 19.597576 -2605 0.051668 0.038552 10.103199 9.573145 -2606 0.065680 0.038648 12.127839 14.625478 -2607 0.081318 0.048408 10.407993 16.105182 -2608 0.057124 0.044954 8.662102 11.193935 -2609 0.085593 0.071802 13.422248 18.938630 -2610 0.052757 0.034318 12.028940 9.942090 -2611 0.080228 0.055445 10.132001 10.375214 -2612 0.068649 0.042205 6.856849 10.674161 -2613 0.065000 0.047900 10.938286 13.660506 -2614 0.086855 0.075729 10.190931 14.140355 -2615 0.076376 0.024823 7.672715 11.669459 -2616 0.082488 0.087386 11.980770 11.077463 -2617 0.098490 0.034112 16.048138 13.322599 -2618 0.052216 0.024558 6.622009 10.854813 -2619 0.083065 0.026768 9.576903 11.773305 -2620 0.045071 0.033853 12.541235 12.873783 -2621 0.105849 0.066241 10.799582 16.406434 -2622 0.098099 0.068778 11.840731 13.175339 -2623 0.057103 0.030128 11.347316 13.792387 -2624 0.110776 0.056544 13.555727 13.500779 -2625 0.082708 0.049699 11.624174 19.644146 -2626 0.135481 0.069577 18.124283 15.727001 -2627 0.118808 0.072422 15.982628 22.697993 -2628 0.071762 0.046310 11.410088 19.077348 -2629 0.055024 0.021166 8.836797 8.977779 -2630 0.041419 0.028808 8.219944 9.500832 -2631 0.063631 0.029449 9.447115 13.606125 -2632 0.056075 0.042309 10.760285 16.282130 -2633 0.026659 0.011378 5.825826 9.997257 -2634 0.117616 0.064461 7.327204 9.753382 -2635 0.066954 0.022315 9.425587 16.135100 -2636 0.098552 0.053538 12.916770 14.711089 -2637 0.073096 0.047830 10.866074 15.819875 -2638 0.052402 0.021408 11.016797 11.074555 -2639 0.047891 0.048563 8.523850 15.679271 -2640 0.083516 0.058711 11.514540 13.812630 -2641 0.073845 0.044439 8.304691 12.696881 -2642 0.082306 0.048164 9.268885 11.987196 -2643 0.117291 0.060420 17.018689 16.019113 -2644 0.066351 0.048457 11.442568 11.535304 -2645 0.121708 0.071033 9.833568 15.730679 -2646 0.033512 0.012916 6.529460 8.892041 -2647 0.047648 0.031261 12.774778 15.805260 -2648 0.128228 0.077231 11.602073 13.587717 -2649 0.062815 0.037634 10.684323 15.234401 -2650 0.096545 0.063074 7.529323 10.252970 -2651 0.076486 0.040411 7.346871 8.430388 -2652 0.116431 0.054805 8.823003 14.166317 -2653 0.070139 0.039105 8.905817 15.969188 -2654 0.060391 0.052068 7.803714 10.020399 -2655 0.120323 0.127395 12.753016 12.473838 -2656 0.087921 0.043222 10.936739 12.851142 -2657 0.067680 0.047769 6.836374 12.895336 -2658 0.051262 0.032626 9.284366 14.880366 -2659 0.043659 0.031079 6.202282 10.432560 -2660 0.062302 0.041552 10.591905 14.386348 -2661 0.081308 0.033024 7.273914 9.338816 -2662 0.084711 0.079745 11.047837 13.223642 -2663 0.147235 0.121203 14.925605 16.117022 -2664 0.064738 0.030641 9.408640 11.866661 -2665 0.111030 0.083544 17.748592 23.766547 -2666 0.063993 0.044285 11.441994 15.656344 -2667 0.057473 0.032104 8.407260 10.782914 -2668 0.085301 0.074802 9.449405 11.723760 -2669 0.045528 0.036263 5.992378 13.289101 -2670 0.062400 0.026021 10.688540 12.848833 -2671 0.084707 0.036124 9.794070 14.897696 -2672 0.100696 0.060120 11.625532 19.383607 -2673 0.071251 0.044298 7.777294 9.451819 -2674 0.071895 0.035822 9.794417 12.870093 -2675 0.049081 0.041119 10.288344 11.797689 -2676 0.061898 0.038994 10.519712 16.840383 -2677 0.104596 0.040883 13.947383 11.822859 -2678 0.101320 0.065071 11.087559 15.249450 -2679 0.040207 0.012772 7.001454 6.953884 -2680 0.073970 0.050985 12.313535 12.729548 -2681 0.063513 0.031129 8.363375 11.140854 -2682 0.146416 0.090994 12.193390 15.368056 -2683 0.105236 0.056042 11.544766 13.497481 -2684 0.063713 0.045875 6.448843 9.897894 -2685 0.074715 0.064798 9.218086 12.388151 -2686 0.061722 0.052649 9.885255 9.872860 -2687 0.070958 0.089695 10.857691 14.478459 -2688 0.073850 0.033341 7.113979 13.607371 -2689 0.071611 0.061199 6.932435 10.392324 -2690 0.086128 0.035882 13.348165 13.335153 -2691 0.047732 0.018220 8.042377 9.383704 -2692 0.115613 0.059063 12.826107 12.237685 -2693 0.062286 0.036997 9.031531 8.506980 -2694 0.064015 0.026209 9.452152 14.272413 -2695 0.100245 0.052268 8.930428 10.130092 -2696 0.046156 0.024701 8.266344 11.584081 -2697 0.049887 0.019276 6.150145 9.792196 -2698 0.083913 0.056926 7.649799 11.587766 -2699 0.088886 0.075704 14.545312 20.594978 -2700 0.067440 0.028658 7.852864 9.224447 -2701 0.099730 0.060283 13.051199 12.650427 -2702 0.077745 0.085476 15.141690 16.010144 -2703 0.070241 0.060720 13.397757 13.026472 -2704 0.075452 0.059570 8.290849 12.605077 -2705 0.058274 0.035301 9.071575 9.492495 -2706 0.078738 0.043691 10.484322 12.840621 -2707 0.079149 0.047818 9.293471 8.321734 -2708 0.130801 0.089123 16.565888 17.747023 -2709 0.088051 0.062581 7.962172 9.897424 -2710 0.069168 0.038384 14.614885 18.216004 -2711 0.045274 0.027399 7.186787 12.202533 -2712 0.080540 0.049829 11.225318 18.479842 -2713 0.049197 0.028887 8.420300 14.324365 -2714 0.066723 0.047714 13.228198 20.403093 -2715 0.086976 0.079026 11.813113 15.156500 -2716 0.059858 0.045577 7.258023 10.717077 -2717 0.079955 0.038426 13.183906 16.205830 -2718 0.059626 0.027683 9.820586 13.388136 -2719 0.056702 0.025239 10.989746 13.082703 -2720 0.088264 0.029731 11.664906 14.787661 -2721 0.069128 0.033946 12.337139 12.286028 -2722 0.089309 0.037197 7.932351 14.250008 -2723 0.094989 0.079913 10.053215 11.789605 -2724 0.074448 0.028586 7.988216 9.837348 -2725 0.079694 0.038485 10.623792 13.597636 -2726 0.109516 0.046483 12.024975 11.036267 -2727 0.067125 0.043399 10.656937 12.841627 -2728 0.081611 0.068081 12.410758 9.856176 -2729 0.076470 0.060039 11.957263 15.735833 -2730 0.071146 0.063539 8.063895 14.068471 -2731 0.071557 0.036388 7.322882 11.796800 -2732 0.103974 0.054421 12.450766 22.547094 -2733 0.064263 0.032769 7.966345 9.664233 -2734 0.082333 0.059910 11.251533 15.635000 -2735 0.071457 0.046842 10.162461 9.423437 -2736 0.102111 0.056173 10.140343 18.104642 -2737 0.090086 0.039120 9.331855 14.043643 -2738 0.087499 0.045152 10.002077 15.963411 -2739 0.054776 0.030911 12.407856 13.441910 -2740 0.089184 0.051903 14.208100 16.625116 -2741 0.062817 0.041517 7.621238 10.921024 -2742 0.087547 0.079962 11.668107 12.066807 -2743 0.074990 0.048386 10.182331 10.209160 -2744 0.050836 0.035228 6.647875 8.963750 -2745 0.061012 0.021640 10.092907 16.046378 -2746 0.078193 0.031784 11.799980 10.781860 -2747 0.058261 0.042678 10.310531 11.461756 -2748 0.070346 0.040492 11.401066 11.917273 -2749 0.040076 0.012609 8.867666 9.967705 -2750 0.064870 0.047052 8.541334 14.101992 -2751 0.095267 0.039705 13.099892 19.817635 -2752 0.058083 0.031226 6.237361 7.429323 -2753 0.087701 0.036676 7.875632 7.952032 -2754 0.086598 0.054270 7.172301 11.244181 -2755 0.064069 0.067477 9.596574 13.061542 -2756 0.054699 0.046231 10.780861 9.875638 -2757 0.084169 0.056498 14.303592 22.376021 -2758 0.058655 0.035954 8.179634 12.157852 -2759 0.077685 0.032029 7.294831 11.860823 -2760 0.065441 0.031380 9.756147 14.781688 -2761 0.057846 0.020861 9.801317 14.964332 -2762 0.044776 0.040003 9.299252 11.150310 -2763 0.085595 0.085521 12.938510 11.130254 -2764 0.052661 0.034311 10.527427 10.443399 -2765 0.035649 0.046215 8.720583 11.487121 -2766 0.061154 0.019850 8.144466 9.560282 -2767 0.079953 0.073146 12.632248 11.500464 -2768 0.064934 0.037656 12.761176 14.585635 -2769 0.081433 0.043966 13.914558 16.446432 -2770 0.055719 0.028556 9.261350 17.850157 -2771 0.061306 0.035776 8.843778 9.799548 -2772 0.101143 0.066004 12.866714 12.659671 -2773 0.128959 0.073282 13.672671 17.093592 -2774 0.076373 0.060205 7.836662 12.962137 -2775 0.112497 0.058720 12.968873 19.298959 -2776 0.078933 0.046042 14.354220 15.559995 -2777 0.056130 0.030720 6.409061 7.019929 -2778 0.076904 0.046187 11.848787 23.358660 -2779 0.075668 0.076913 7.204783 14.145295 -2780 0.085754 0.058382 11.290090 13.635500 -2781 0.082993 0.049473 13.193064 19.107475 -2782 0.065599 0.053630 10.085431 12.105617 -2783 0.042160 0.036576 7.336422 10.240873 -2784 0.073046 0.045286 7.791531 10.540041 -2785 0.113220 0.076509 11.383606 13.972273 -2786 0.096877 0.063449 12.504581 16.470930 -2787 0.088403 0.048300 6.203676 8.165745 -2788 0.111863 0.064605 7.805989 15.100487 -2789 0.074380 0.054196 12.320320 13.389322 -2790 0.104938 0.053520 9.842322 9.697016 -2791 0.068269 0.027476 10.295845 13.423945 -2792 0.099739 0.037225 6.949544 11.892780 -2793 0.049460 0.037762 9.514973 14.399207 -2794 0.055701 0.026941 7.985299 13.491729 -2795 0.074215 0.037118 13.891281 12.059162 -2796 0.058216 0.025000 7.834375 13.062803 -2797 0.086821 0.042439 9.135028 13.411883 -2798 0.075303 0.045481 7.624213 7.882510 -2799 0.088530 0.101798 9.707914 19.759313 -2800 0.095248 0.081377 8.352942 17.098848 -2801 0.030145 0.012856 7.620601 10.036444 -2802 0.058540 0.031074 8.308854 9.417405 -2803 0.126839 0.065061 9.667565 12.608377 -2804 0.053061 0.031610 8.184956 14.384276 -2805 0.077973 0.057349 8.637564 11.178087 -2806 0.090172 0.033630 10.115305 19.686879 -2807 0.055014 0.024631 10.464058 14.513646 -2808 0.081968 0.055286 7.734856 8.958392 -2809 0.050079 0.038353 8.920766 10.905392 -2810 0.050678 0.038562 8.017580 7.937677 -2811 0.101535 0.069921 9.856994 8.656369 -2812 0.100023 0.038333 7.547870 10.068062 -2813 0.081427 0.052715 9.089178 12.773731 -2814 0.048027 0.032385 8.454384 9.672905 -2815 0.070556 0.027516 12.607145 21.445514 -2816 0.090239 0.047139 10.211660 10.509147 -2817 0.065036 0.042170 8.758316 14.025247 -2818 0.074101 0.068660 12.403867 11.435865 -2819 0.118686 0.068840 14.007484 13.016960 -2820 0.083917 0.051386 7.606845 11.527753 -2821 0.058569 0.037807 10.263058 9.777352 -2822 0.142988 0.074669 11.091326 12.296391 -2823 0.063039 0.064238 14.831548 22.533080 -2824 0.054003 0.019691 6.781189 10.860168 -2825 0.055441 0.030395 9.515976 12.584635 -2826 0.055379 0.040667 14.234020 13.202800 -2827 0.070382 0.044498 8.212241 11.930012 -2828 0.059950 0.075366 7.846890 6.875582 -2829 0.046161 0.029512 8.034050 12.956276 -2830 0.092041 0.064799 13.588312 18.703236 -2831 0.095496 0.047283 8.086736 9.489547 -2832 0.055467 0.024446 11.720691 12.367342 -2833 0.087905 0.101695 8.071041 12.769752 -2834 0.063592 0.028238 8.330449 11.166737 -2835 0.129792 0.089460 18.577761 21.236919 -2836 0.029875 0.014736 11.584441 15.962539 -2837 0.096047 0.058817 9.305712 13.453709 -2838 0.083245 0.076489 10.134974 14.187240 -2839 0.081791 0.057940 17.101829 21.549839 -2840 0.077543 0.062279 14.001300 20.823108 -2841 0.123269 0.097152 13.273474 17.336659 -2842 0.062695 0.035139 11.628321 16.152570 -2843 0.082761 0.034741 9.302860 12.111083 -2844 0.073258 0.035878 6.768953 12.191367 -2845 0.084526 0.044180 11.668186 11.919460 -2846 0.072143 0.035617 9.151253 12.315693 -2847 0.087509 0.037746 9.703442 10.090246 -2848 0.074706 0.047905 9.881161 14.275342 -2849 0.079355 0.054264 17.546090 13.928819 -2850 0.043163 0.059196 7.091137 7.715311 -2851 0.090263 0.096388 14.964063 17.333566 -2852 0.048122 0.027288 7.326929 9.595741 -2853 0.070499 0.028266 10.560455 13.807025 -2854 0.039762 0.017066 6.963036 13.120805 -2855 0.114804 0.068933 7.661331 7.681474 -2856 0.076634 0.092795 10.957634 14.291610 -2857 0.085490 0.043273 15.571837 16.805339 -2858 0.070608 0.085187 9.967077 21.221576 -2859 0.054124 0.047351 8.326647 9.429741 -2860 0.076970 0.059326 11.600795 15.710598 -2861 0.076428 0.033681 7.382094 11.134211 -2862 0.085224 0.040669 11.132347 13.056125 -2863 0.125326 0.053931 9.794452 13.851226 -2864 0.130212 0.043595 8.907575 9.277012 -2865 0.088233 0.056908 8.573827 10.108335 -2866 0.066231 0.038098 8.279307 10.985549 -2867 0.077600 0.034820 14.844708 24.863394 -2868 0.059662 0.039362 7.846854 11.706619 -2869 0.060594 0.035455 7.047268 12.974057 -2870 0.072976 0.057669 13.755428 19.672339 -2871 0.119676 0.080985 11.317394 19.723999 -2872 0.061013 0.043910 8.137114 12.271224 -2873 0.071889 0.038475 10.659753 15.344794 -2874 0.053063 0.039124 6.942029 10.992944 -2875 0.088462 0.044295 6.698710 11.977855 -2876 0.077848 0.032196 13.276762 12.079014 -2877 0.092354 0.057202 9.802859 14.157883 -2878 0.066724 0.038113 6.935103 8.516411 -2879 0.058794 0.029922 15.063236 16.675362 -2880 0.052263 0.028819 9.359727 13.554249 -2881 0.093397 0.057719 11.823241 14.952715 -2882 0.080547 0.036805 7.771613 10.745310 -2883 0.044567 0.028985 10.547549 9.053202 -2884 0.048923 0.028346 10.383506 11.169134 -2885 0.059128 0.044124 9.955633 9.308829 -2886 0.056524 0.032546 6.335321 7.437995 -2887 0.061092 0.047901 10.711586 13.200392 -2888 0.084706 0.039647 7.317716 9.254043 -2889 0.115574 0.054162 10.625509 16.816735 -2890 0.074832 0.056431 10.203257 12.071721 -2891 0.070482 0.042673 9.441708 12.085405 -2892 0.079782 0.037950 6.910600 11.940000 -2893 0.059163 0.035529 9.049810 13.905743 -2894 0.114814 0.073819 10.460918 16.844515 -2895 0.070387 0.039767 8.913980 9.974860 -2896 0.096174 0.082109 5.932524 10.419761 -2897 0.083136 0.074345 11.409656 16.914823 -2898 0.094653 0.064292 10.415098 11.097992 -2899 0.080679 0.038286 7.006183 11.871217 -2900 0.045714 0.026931 12.484497 14.628517 -2901 0.091766 0.072358 10.934768 12.889906 -2902 0.071376 0.029951 9.407453 14.046179 -2903 0.100857 0.051526 11.777528 13.817532 -2904 0.050693 0.027060 7.555393 8.184418 -2905 0.057577 0.040130 9.304781 11.500417 -2906 0.056239 0.041415 9.896099 12.709792 -2907 0.078490 0.046142 7.010123 12.326406 -2908 0.059599 0.039059 8.474096 10.056246 -2909 0.093647 0.035700 8.484173 10.130253 -2910 0.059908 0.031757 8.895200 10.338740 -2911 0.096195 0.079420 13.222525 13.181672 -2912 0.135268 0.094176 11.642678 21.353850 -2913 0.086971 0.037203 13.060357 13.615530 -2914 0.079112 0.034637 12.234390 15.442757 -2915 0.065340 0.052059 8.477358 8.676650 -2916 0.045561 0.030549 7.689987 9.437073 -2917 0.116392 0.062511 14.672643 21.458501 -2918 0.038952 0.024471 9.745391 8.720536 -2919 0.065764 0.051128 8.448370 9.308308 -2920 0.032694 0.027074 7.517673 8.731477 -2921 0.071637 0.080512 10.554643 12.382465 -2922 0.063688 0.040778 8.360297 13.620407 -2923 0.063439 0.050738 17.192552 19.767785 -2924 0.067015 0.040111 10.203735 15.447338 -2925 0.036381 0.039190 11.591135 10.409248 -2926 0.106186 0.063918 10.271946 14.836396 -2927 0.082135 0.064129 8.752583 9.174936 -2928 0.069865 0.038387 10.696491 17.064047 -2929 0.103831 0.051659 9.945558 14.983909 -2930 0.031718 0.020093 6.622995 8.412409 -2931 0.087468 0.051723 12.170859 10.911541 -2932 0.078743 0.042401 7.481857 14.122235 -2933 0.087364 0.081777 11.332418 15.859886 -2934 0.090298 0.041443 6.317206 6.020184 -2935 0.044617 0.017921 11.759496 14.811681 -2936 0.091637 0.037670 14.086908 15.190390 -2937 0.090220 0.048950 12.564770 13.176478 -2938 0.044203 0.043099 6.929480 8.084917 -2939 0.064949 0.044046 12.135679 15.871824 -2940 0.063662 0.030891 9.766024 11.841834 -2941 0.072369 0.045703 10.679462 11.925648 -2942 0.096247 0.035146 10.294694 15.668597 -2943 0.064907 0.056682 17.654363 21.483719 -2944 0.075666 0.041737 7.732461 8.788562 -2945 0.100404 0.078548 9.153504 9.314763 -2946 0.080319 0.038050 8.796508 12.739088 -2947 0.093743 0.040539 13.465644 15.969709 -2948 0.096602 0.058756 6.910930 10.741333 -2949 0.057893 0.031104 7.673905 12.700844 -2950 0.083758 0.081681 7.749197 11.357739 -2951 0.096897 0.068391 11.003748 20.018322 -2952 0.093153 0.067214 11.512522 11.557575 -2953 0.062252 0.034442 10.023002 13.556174 -2954 0.058901 0.031855 14.786058 14.184127 -2955 0.143663 0.063153 14.256487 16.741170 -2956 0.111058 0.030222 9.661010 9.571170 -2957 0.075673 0.068704 10.046065 13.109200 -2958 0.061802 0.059641 7.363565 9.293288 -2959 0.118382 0.042915 11.753575 13.300040 -2960 0.066819 0.036632 8.825679 12.012739 -2961 0.052314 0.036549 7.946408 10.795470 -2962 0.099195 0.073348 12.676551 23.745527 -2963 0.086034 0.054712 11.252479 13.105568 -2964 0.099705 0.048814 11.828369 10.793910 -2965 0.072798 0.040564 13.814600 13.282607 -2966 0.071005 0.036314 7.196059 14.065906 -2967 0.064682 0.026750 8.469523 14.107624 -2968 0.055535 0.044484 11.390925 7.553475 -2969 0.077601 0.050998 11.680997 16.266161 -2970 0.054216 0.055211 7.475526 9.198889 -2971 0.092683 0.044696 12.227448 16.713000 -2972 0.092483 0.054571 7.503969 15.129169 -2973 0.073669 0.042132 12.829783 15.031825 -2974 0.075117 0.030745 8.922769 15.664363 -2975 0.050764 0.033803 5.623672 10.265364 -2976 0.109860 0.042347 11.190358 14.807401 -2977 0.058892 0.027540 10.695357 15.389769 -2978 0.054061 0.024970 9.940901 11.566900 -2979 0.072002 0.051800 8.280776 13.299333 -2980 0.064588 0.035379 7.332879 13.763850 -2981 0.089785 0.076427 13.626483 15.557930 -2982 0.094236 0.052623 11.018089 18.825171 -2983 0.089626 0.036194 6.858191 13.698008 -2984 0.060420 0.046956 10.629430 17.016206 -2985 0.103649 0.091942 14.527568 17.324669 -2986 0.099112 0.044578 11.433901 14.490008 -2987 0.143403 0.102144 11.818016 9.850302 -2988 0.094031 0.043032 11.307908 11.900224 -2989 0.080030 0.044388 10.894655 18.331387 -2990 0.071082 0.038842 9.006849 12.904505 -2991 0.107148 0.088517 9.307526 10.441380 -2992 0.080464 0.058112 9.794902 12.324440 -2993 0.094594 0.047633 8.507312 13.436518 -2994 0.051904 0.046397 10.872093 10.742320 -2995 0.058374 0.036838 10.263966 11.622090 -2996 0.095047 0.079762 9.578332 13.056631 -2997 0.102469 0.093049 8.200214 11.704604 -2998 0.050314 0.034551 6.359707 10.375795 -2999 0.077312 0.046315 13.192390 17.715242 -3000 0.066854 0.031854 7.877342 13.374423 -3001 0.064245 0.074852 7.518219 11.592150 -3002 0.068523 0.049610 10.553005 12.182633 -3003 0.045703 0.041930 7.786104 12.924633 -3004 0.049548 0.030656 7.775053 10.694973 -3005 0.060543 0.043808 8.487138 8.690545 -3006 0.080140 0.052025 15.529123 16.624437 -3007 0.085232 0.058796 10.547576 11.580244 -3008 0.085352 0.042488 8.290890 10.266209 -3009 0.078098 0.031609 17.461758 16.711343 -3010 0.045387 0.021929 6.477444 9.769902 -3011 0.141032 0.087051 9.411836 14.245056 -3012 0.084457 0.057688 12.384396 14.962598 -3013 0.069893 0.071324 14.490185 16.017325 -3014 0.111849 0.053588 11.992339 12.777963 -3015 0.029343 0.020435 5.794174 6.425171 -3016 0.073159 0.034442 6.990724 10.099613 -3017 0.067118 0.032507 15.485749 18.642724 -3018 0.077315 0.052607 9.423782 10.313621 -3019 0.075357 0.041037 14.858615 10.165934 -3020 0.080016 0.054171 8.942749 11.890910 -3021 0.075798 0.078466 13.337211 15.302728 -3022 0.071578 0.067394 7.414230 12.895942 -3023 0.077739 0.064362 18.238191 19.911517 -3024 0.048737 0.049827 8.740323 7.816789 -3025 0.068338 0.033901 11.279344 14.381975 -3026 0.085566 0.046184 7.229959 8.364117 -3027 0.070568 0.047205 8.907696 13.198015 -3028 0.088673 0.034528 10.160364 14.809725 -3029 0.082605 0.088230 9.235503 10.868647 -3030 0.067568 0.031659 9.477270 16.200041 -3031 0.086273 0.033587 11.622316 11.542702 -3032 0.052728 0.047958 9.386977 12.051460 -3033 0.068642 0.032805 10.606919 20.462357 -3034 0.109984 0.066463 12.361262 12.683498 -3035 0.074574 0.041346 8.031223 9.934869 -3036 0.062270 0.054404 8.904130 12.289553 -3037 0.089735 0.043624 9.496120 13.017696 -3038 0.077847 0.038896 7.775621 12.032280 -3039 0.039367 0.021379 6.846874 10.950991 -3040 0.047498 0.037724 8.372288 12.391643 -3041 0.072442 0.028462 11.130123 11.838407 -3042 0.065967 0.045133 7.761986 11.610292 -3043 0.065602 0.043102 10.156869 14.889700 -3044 0.072582 0.071652 10.956713 16.063066 -3045 0.060872 0.043646 9.004081 11.575696 -3046 0.051621 0.029825 11.478459 16.018487 -3047 0.068991 0.052599 8.512115 11.636427 -3048 0.054928 0.038951 9.666396 8.793752 -3049 0.053471 0.033621 8.471166 11.967741 -3050 0.098563 0.054170 9.962213 14.331130 -3051 0.084464 0.073039 9.712986 12.410806 -3052 0.115201 0.049169 11.546720 9.144616 -3053 0.132856 0.101713 9.775283 12.461401 -3054 0.136291 0.094200 10.625135 12.625739 -3055 0.056757 0.039320 9.846199 14.335345 -3056 0.064546 0.041143 8.552544 10.047037 -3057 0.056133 0.038800 13.290439 11.993742 -3058 0.066627 0.026294 8.538957 8.230306 -3059 0.079883 0.035011 7.126222 9.335679 -3060 0.097693 0.059640 11.125550 17.889274 -3061 0.099080 0.074725 7.160093 13.339895 -3062 0.094386 0.059230 10.318861 7.354479 -3063 0.050756 0.023348 9.192904 11.411425 -3064 0.077289 0.044866 7.329356 11.342047 -3065 0.148931 0.101158 14.602586 14.574484 -3066 0.068169 0.053841 9.688924 14.462545 -3067 0.060863 0.036889 10.021047 13.428118 -3068 0.057584 0.037537 9.363202 14.331172 -3069 0.062231 0.023935 9.776916 10.572653 -3070 0.087503 0.066722 8.063902 7.761351 -3071 0.059477 0.036820 8.774585 12.337476 -3072 0.095934 0.035240 10.893835 11.823947 -3073 0.094248 0.038932 8.903638 14.546222 -3074 0.075646 0.034837 7.642428 9.721544 -3075 0.115369 0.053356 9.151416 14.036890 -3076 0.083359 0.053909 7.854678 10.438555 -3077 0.102467 0.065503 8.817095 10.632350 -3078 0.073728 0.051468 9.597095 14.272633 -3079 0.051191 0.029517 10.303885 11.016230 -3080 0.072602 0.044684 9.785568 12.316765 -3081 0.050285 0.033852 8.948533 13.006143 -3082 0.073857 0.042017 10.795825 16.051014 -3083 0.077360 0.056999 15.174085 15.537248 -3084 0.069946 0.113134 12.970869 13.632087 -3085 0.079708 0.041404 14.837272 16.463250 -3086 0.081840 0.049500 10.504430 12.337731 -3087 0.117525 0.073282 9.067602 10.389105 -3088 0.069538 0.043412 8.385180 11.330886 -3089 0.109532 0.043994 11.634679 14.543571 -3090 0.061399 0.039758 13.090838 10.832620 -3091 0.061861 0.051846 13.244944 12.694119 -3092 0.110301 0.054363 12.747729 17.375268 -3093 0.127724 0.104282 19.539047 16.564931 -3094 0.065087 0.026853 7.684244 8.952457 -3095 0.077533 0.069403 15.355798 14.719717 -3096 0.094865 0.071788 10.928586 15.597708 -3097 0.071824 0.037197 7.961411 14.696028 -3098 0.066920 0.051702 11.984692 19.581002 -3099 0.053924 0.024059 7.033314 10.784033 -3100 0.120827 0.058813 10.330112 12.221172 -3101 0.076227 0.049347 11.530077 11.356690 -3102 0.047865 0.051747 8.109806 13.297586 -3103 0.085247 0.095210 12.751929 17.004467 -3104 0.093815 0.049627 7.696834 16.822021 -3105 0.134671 0.054866 13.175310 15.704540 -3106 0.040575 0.016203 9.102621 9.153972 -3107 0.097770 0.080222 13.600009 18.853640 -3108 0.075678 0.053828 11.796775 18.535899 -3109 0.041100 0.015674 8.507141 13.023260 -3110 0.076609 0.049378 8.336203 12.088103 -3111 0.063496 0.032363 8.615227 9.793118 -3112 0.114536 0.116389 17.230191 17.475344 -3113 0.124872 0.109922 13.705771 15.304048 -3114 0.063394 0.028863 10.541543 13.457883 -3115 0.104531 0.039745 8.064845 11.874315 -3116 0.114991 0.056304 12.947352 18.969053 -3117 0.070256 0.025761 6.765752 9.996476 -3118 0.125073 0.061522 6.265821 10.736189 -3119 0.089609 0.049448 10.531490 16.220341 -3120 0.105908 0.055452 18.383768 16.379853 -3121 0.047323 0.021608 12.199292 12.125290 -3122 0.071382 0.027891 5.870473 9.530499 -3123 0.064776 0.034964 8.865931 10.291720 -3124 0.042306 0.024426 9.823755 10.110670 -3125 0.099554 0.063586 13.415368 16.241729 -3126 0.083683 0.040129 8.152819 10.656841 -3127 0.063652 0.049659 11.589544 13.264647 -3128 0.063938 0.066467 6.445525 6.207235 -3129 0.053823 0.037025 8.217725 10.333081 -3130 0.053266 0.038793 10.743977 15.204592 -3131 0.059157 0.053005 9.796180 11.614183 -3132 0.058427 0.024906 8.178962 10.164572 -3133 0.055612 0.020118 7.795120 8.300944 -3134 0.064754 0.032075 7.614848 12.176552 -3135 0.067386 0.057995 7.795758 12.519265 -3136 0.142237 0.048707 8.566103 10.749566 -3137 0.042716 0.035708 7.151302 7.530334 -3138 0.034070 0.032488 8.429626 12.302040 -3139 0.066185 0.031903 8.966499 9.158979 -3140 0.116888 0.047773 8.770199 12.218496 -3141 0.095031 0.041874 13.077529 16.347319 -3142 0.056767 0.018511 9.922987 11.844273 -3143 0.079917 0.058396 9.909331 16.823090 -3144 0.071639 0.055876 14.269092 17.672339 -3145 0.060399 0.040251 7.994430 10.416441 -3146 0.127577 0.114838 14.659266 19.378607 -3147 0.068429 0.035373 10.478398 12.374133 -3148 0.074215 0.053501 12.832231 16.228839 -3149 0.063202 0.023146 8.365808 9.930370 -3150 0.043553 0.026756 5.717722 8.993187 -3151 0.083852 0.065588 13.999053 10.728418 -3152 0.121944 0.065985 10.034544 11.431981 -3153 0.047996 0.026957 10.178340 19.490662 -3154 0.042790 0.022265 6.510503 10.718172 -3155 0.137019 0.099928 14.402160 19.875100 -3156 0.068694 0.058051 13.467538 16.076995 -3157 0.066296 0.040347 5.530467 12.630469 -3158 0.089864 0.069794 8.230920 15.354884 -3159 0.101625 0.034361 8.087417 14.512063 -3160 0.072136 0.061110 9.887458 8.274095 -3161 0.044994 0.045018 8.863893 12.861085 -3162 0.087769 0.036923 8.501568 13.679524 -3163 0.092332 0.052184 7.962446 10.308789 -3164 0.060061 0.027923 10.996476 11.574519 -3165 0.061994 0.032721 10.775393 15.244413 -3166 0.072897 0.032341 9.787872 10.481732 -3167 0.117070 0.054533 9.772718 14.682459 -3168 0.098118 0.063389 12.537349 12.492842 -3169 0.063669 0.032908 7.024016 13.058892 -3170 0.066369 0.035907 8.960739 13.774197 -3171 0.043575 0.030881 13.354876 12.645284 -3172 0.118961 0.085195 15.302076 17.101958 -3173 0.071602 0.045761 15.785727 22.626322 -3174 0.086467 0.074040 9.149287 14.123682 -3175 0.090420 0.073504 11.730676 18.887684 -3176 0.087675 0.060776 9.694033 13.568998 -3177 0.040816 0.020831 11.272811 12.292887 -3178 0.052812 0.040403 9.670308 14.274443 -3179 0.068734 0.039142 9.908976 9.707582 -3180 0.067066 0.054272 5.942607 8.783685 -3181 0.078486 0.041697 7.773950 8.910122 -3182 0.130140 0.068358 8.247868 16.406000 -3183 0.073169 0.037065 12.849374 14.342620 -3184 0.063082 0.065803 16.504483 15.969876 -3185 0.096731 0.049487 11.174364 12.857854 -3186 0.113376 0.056382 12.745754 15.303376 -3187 0.076213 0.049866 9.576914 15.556991 -3188 0.100620 0.105280 10.975577 12.749591 -3189 0.119530 0.064637 9.366743 9.898616 -3190 0.059719 0.042525 12.662541 11.219667 -3191 0.054149 0.034122 7.723992 12.782284 -3192 0.064163 0.029224 8.912279 10.339538 -3193 0.061730 0.037954 5.414021 10.027825 -3194 0.065322 0.026681 11.227725 12.663200 -3195 0.074644 0.020978 7.663260 12.931945 -3196 0.053529 0.028021 10.446196 11.186170 -3197 0.097053 0.068520 8.869015 13.122304 -3198 0.083324 0.045774 6.089284 8.111083 -3199 0.069285 0.041994 10.515336 14.597862 -3200 0.090565 0.054071 9.876159 11.086522 -3201 0.079887 0.051185 12.603687 14.187225 -3202 0.072104 0.031482 11.055413 14.248408 -3203 0.061005 0.029700 7.900031 9.411813 -3204 0.130486 0.067917 10.179216 15.884571 -3205 0.142173 0.111574 11.171068 13.922628 -3206 0.115211 0.097560 13.976323 17.756615 -3207 0.088951 0.049149 7.197006 10.994124 -3208 0.058172 0.032075 11.848616 16.694301 -3209 0.138471 0.102091 14.346083 17.697341 -3210 0.062587 0.036323 8.633905 11.768937 -3211 0.056632 0.021836 4.638213 6.870807 -3212 0.047726 0.017226 5.883861 10.216882 -3213 0.074123 0.033715 15.592569 18.397040 -3214 0.075977 0.037979 9.558770 12.976660 -3215 0.049640 0.038483 11.447179 14.378512 -3216 0.101825 0.086106 9.677056 16.479875 -3217 0.053541 0.036722 9.874523 15.890140 -3218 0.049997 0.024103 5.334692 10.278574 -3219 0.061159 0.028451 8.227184 7.313574 -3220 0.095148 0.059158 13.217411 15.402163 -3221 0.069768 0.043964 12.491201 12.892082 -3222 0.070600 0.040155 14.087354 18.698447 -3223 0.069321 0.049481 7.479855 9.190795 -3224 0.092080 0.033372 12.818907 17.823778 -3225 0.084086 0.053563 9.670374 12.532986 -3226 0.057340 0.068204 9.479858 10.145868 -3227 0.139665 0.110898 8.925289 10.427569 -3228 0.104142 0.053467 16.657861 21.381656 -3229 0.111628 0.064215 6.139069 16.813959 -3230 0.066529 0.042453 7.537093 14.813844 -3231 0.081295 0.044417 13.120562 14.312451 -3232 0.075788 0.053258 10.888809 14.392551 -3233 0.052004 0.038652 7.794175 11.560015 -3234 0.051624 0.026779 10.957388 13.542269 -3235 0.074789 0.045163 9.065614 12.484018 -3236 0.059601 0.046727 10.762103 16.696092 -3237 0.067166 0.046503 8.932752 8.267139 -3238 0.071594 0.037196 7.781157 10.177220 -3239 0.065244 0.058828 8.477365 11.526684 -3240 0.092772 0.065884 7.760147 11.410183 -3241 0.055845 0.062421 13.453322 12.929098 -3242 0.079748 0.053504 11.181801 12.727973 -3243 0.091431 0.086265 13.795664 12.642230 -3244 0.101297 0.054512 9.305329 15.989556 -3245 0.056057 0.039150 10.567853 14.315800 -3246 0.132718 0.050163 8.302152 15.677367 -3247 0.055511 0.046184 10.955249 16.867467 -3248 0.083869 0.049764 7.752916 7.169305 -3249 0.067509 0.026291 7.732859 10.313194 -3250 0.066186 0.047782 7.202981 10.682529 -3251 0.057430 0.024590 9.533830 12.087501 -3252 0.046303 0.028359 8.296814 10.301420 -3253 0.067181 0.049748 11.283966 14.986353 -3254 0.095450 0.066668 11.595680 18.539815 -3255 0.084378 0.047045 8.264829 11.940014 -3256 0.112278 0.047354 7.612997 15.337737 -3257 0.059660 0.045478 8.111613 12.711100 -3258 0.060844 0.041555 10.387517 13.920876 -3259 0.072519 0.034246 9.248939 16.045695 -3260 0.067190 0.029227 8.291733 10.468013 -3261 0.069368 0.038301 8.517140 12.610529 -3262 0.060669 0.042997 8.417616 10.417465 -3263 0.113294 0.090234 8.571024 12.653432 -3264 0.077410 0.038782 8.244236 12.544493 -3265 0.096382 0.045329 8.491161 18.939355 -3266 0.075063 0.049194 8.889574 14.265632 -3267 0.072119 0.063033 10.448273 12.248885 -3268 0.088572 0.047482 7.001769 9.270530 -3269 0.058838 0.044957 13.774395 13.786903 -3270 0.055758 0.044930 15.327772 18.514185 -3271 0.065846 0.035174 7.207499 9.415130 -3272 0.055312 0.034724 8.000988 10.601551 -3273 0.058896 0.021113 15.296407 16.563793 -3274 0.043343 0.021766 9.081654 15.647327 -3275 0.067836 0.043286 7.960417 9.894546 -3276 0.089986 0.074991 10.106018 11.993080 -3277 0.070418 0.043907 11.197377 12.586387 -3278 0.101667 0.047628 12.098928 15.243810 -3279 0.110499 0.062290 8.040492 10.637457 -3280 0.119437 0.098681 14.895773 14.072701 -3281 0.099417 0.080531 12.299078 15.454846 -3282 0.050008 0.032332 8.476431 10.421737 -3283 0.085229 0.037868 10.684005 11.940541 -3284 0.090347 0.034467 10.450764 11.801336 -3285 0.141778 0.080314 11.090036 12.978263 -3286 0.047523 0.026614 8.992228 10.326193 -3287 0.050859 0.044593 8.203634 11.625705 -3288 0.068704 0.058714 13.817417 15.385089 -3289 0.046614 0.045618 8.699779 9.969650 -3290 0.085973 0.088167 7.640771 18.756045 -3291 0.061412 0.021285 6.220521 8.927463 -3292 0.077031 0.055724 11.769246 14.002706 -3293 0.049036 0.027391 8.997216 11.017752 -3294 0.060532 0.045747 12.405712 10.386890 -3295 0.111304 0.078823 10.563424 10.633698 -3296 0.063058 0.043327 8.584892 11.031942 -3297 0.108160 0.056618 15.612113 20.317621 -3298 0.086167 0.048617 9.957769 16.051473 -3299 0.073851 0.048280 12.798796 19.401799 -3300 0.050272 0.044776 9.409843 9.767943 -3301 0.117310 0.056480 7.436311 15.933495 -3302 0.051650 0.029777 8.377550 9.285414 -3303 0.086855 0.046651 9.653635 13.525198 -3304 0.047925 0.024036 7.906645 9.533837 -3305 0.057486 0.030763 13.673912 17.665921 -3306 0.095228 0.039555 8.767264 13.934706 -3307 0.124954 0.125763 14.053974 13.049205 -3308 0.146085 0.074262 16.455313 16.223519 -3309 0.087080 0.063039 10.359232 12.118931 -3310 0.084709 0.065763 9.383817 12.925536 -3311 0.063975 0.035273 10.262643 12.759044 -3312 0.063271 0.027938 10.324330 11.964598 -3313 0.052576 0.037022 8.213614 8.467029 -3314 0.102192 0.056218 13.905328 16.107142 -3315 0.076386 0.047660 7.101402 8.951763 -3316 0.070308 0.044557 11.300746 16.454274 -3317 0.072269 0.061160 13.572045 19.851549 -3318 0.120703 0.062932 12.484034 18.354730 -3319 0.051917 0.037360 8.473217 8.639002 -3320 0.096758 0.037134 13.092110 18.821849 -3321 0.043775 0.026557 11.282237 15.193823 -3322 0.044635 0.047042 6.833605 9.372237 -3323 0.075066 0.043089 12.185963 12.263869 -3324 0.057749 0.033991 11.554000 15.736754 -3325 0.056985 0.017760 8.977648 12.189190 -3326 0.055602 0.025272 8.271172 13.240682 -3327 0.109547 0.069153 13.224552 17.778837 -3328 0.086451 0.050827 9.969534 11.771240 -3329 0.074605 0.061966 11.065447 10.999115 -3330 0.066259 0.039750 13.542817 15.359298 -3331 0.131035 0.037044 6.680272 11.463393 -3332 0.051264 0.028887 9.699051 11.194983 -3333 0.148741 0.096027 13.079084 18.921000 -3334 0.090441 0.079445 8.463433 9.806437 -3335 0.060277 0.034508 9.893336 13.525221 -3336 0.056806 0.023693 11.006637 15.410011 -3337 0.068173 0.036626 5.595995 10.179254 -3338 0.067166 0.058385 13.680515 16.232013 -3339 0.085269 0.053550 9.788890 11.714373 -3340 0.063735 0.049474 8.292813 11.068502 -3341 0.082339 0.090774 7.351710 9.535974 -3342 0.072445 0.031727 8.575061 8.612220 -3343 0.084366 0.038309 12.419626 17.050557 -3344 0.039165 0.014245 12.128306 10.102974 -3345 0.079825 0.052940 9.209241 9.029004 -3346 0.080902 0.057401 8.461968 8.252009 -3347 0.058194 0.056387 10.982452 10.140314 -3348 0.102398 0.045848 10.735228 12.374475 -3349 0.085954 0.053631 14.409642 20.529594 -3350 0.068073 0.026830 12.516181 14.454102 -3351 0.047905 0.024503 7.419437 10.894685 -3352 0.089411 0.054579 12.098037 11.122758 -3353 0.083687 0.043175 10.413553 12.097960 -3354 0.064750 0.029893 8.074554 11.309860 -3355 0.049259 0.039246 10.309017 13.919163 -3356 0.062908 0.033568 12.793525 12.520811 -3357 0.060900 0.024288 6.822146 11.496667 -3358 0.081286 0.092552 10.862899 11.921617 -3359 0.081786 0.043747 7.367022 14.378638 -3360 0.099019 0.070720 11.359777 14.388223 -3361 0.054297 0.024689 5.595057 6.308379 -3362 0.092814 0.092247 11.519708 15.335224 -3363 0.038474 0.017760 8.957631 12.778455 -3364 0.065703 0.043022 11.226170 13.937905 -3365 0.057672 0.022217 13.006104 8.188625 -3366 0.060778 0.042930 7.765455 8.714294 -3367 0.085173 0.033733 9.233534 11.570591 -3368 0.060211 0.047196 10.011385 13.798304 -3369 0.097118 0.037013 11.588812 14.410819 -3370 0.055518 0.025825 6.328162 8.046459 -3371 0.078703 0.056996 13.312222 13.700698 -3372 0.076960 0.055052 5.404814 9.257969 -3373 0.063643 0.038787 8.403709 8.325358 -3374 0.086666 0.024761 13.027018 11.750275 -3375 0.064767 0.028742 7.994501 13.001178 -3376 0.089706 0.057074 9.981986 10.267491 -3377 0.053655 0.036831 14.370711 20.183696 -3378 0.097441 0.054093 14.745483 15.738683 -3379 0.051756 0.029386 9.190088 13.381662 -3380 0.078393 0.041162 9.685650 14.741859 -3381 0.059613 0.031816 7.650501 9.314512 -3382 0.157469 0.126987 10.049136 14.922486 -3383 0.063775 0.026276 9.236011 15.446501 -3384 0.076946 0.044957 10.627619 15.293324 -3385 0.070283 0.051875 9.765646 11.091187 -3386 0.094521 0.052353 11.705968 13.933152 -3387 0.071875 0.028659 7.168815 7.192093 -3388 0.099600 0.059276 8.818051 15.470598 -3389 0.063703 0.050336 6.192822 13.422292 -3390 0.037317 0.019467 14.906129 16.729869 -3391 0.046939 0.017031 7.286866 9.296069 -3392 0.049973 0.042645 12.482232 19.056626 -3393 0.093381 0.045887 11.057109 11.863187 -3394 0.048671 0.034578 7.906655 13.284186 -3395 0.063825 0.032635 10.045867 12.862379 -3396 0.074343 0.055131 12.647395 10.023387 -3397 0.071154 0.038507 7.805148 12.433526 -3398 0.090323 0.048753 5.933326 8.515924 -3399 0.063085 0.032838 7.067668 8.467323 -3400 0.109983 0.059037 16.548784 18.279107 -3401 0.068039 0.030324 11.112912 10.070927 -3402 0.065445 0.037692 10.073409 11.877653 -3403 0.060672 0.033915 9.836327 11.872420 -3404 0.100290 0.071887 6.527487 9.659608 -3405 0.051477 0.027502 8.520360 6.319611 -3406 0.079163 0.036300 7.189578 11.144041 -3407 0.055244 0.048678 10.057809 12.007772 -3408 0.067929 0.047766 7.708165 10.967869 -3409 0.092462 0.065688 10.024501 14.826863 -3410 0.052182 0.038286 11.487833 13.217019 -3411 0.041366 0.026568 7.214643 9.954576 -3412 0.031277 0.019317 7.171315 10.135076 -3413 0.067000 0.024062 5.606593 10.379917 -3414 0.117296 0.073338 8.895492 9.046975 -3415 0.064350 0.059803 6.878207 9.983028 -3416 0.093846 0.045984 12.167305 11.996743 -3417 0.091403 0.064685 7.837114 11.942420 -3418 0.047880 0.033749 8.384313 10.373271 -3419 0.077934 0.073656 9.273549 15.365006 -3420 0.051378 0.023806 8.575725 10.201744 -3421 0.117918 0.041572 8.754570 14.024703 -3422 0.057144 0.031786 18.450234 21.590149 -3423 0.081097 0.042171 13.254764 14.057981 -3424 0.109614 0.057603 9.649786 15.333314 -3425 0.050582 0.027674 10.313426 8.518483 -3426 0.042696 0.020854 12.264456 16.111476 -3427 0.067984 0.041425 10.054155 13.460639 -3428 0.103609 0.069477 9.835039 14.288691 -3429 0.076421 0.032352 9.824430 12.790883 -3430 0.083665 0.064311 15.045336 17.769640 -3431 0.103649 0.110974 9.264526 9.531687 -3432 0.053850 0.052022 9.802608 10.169530 -3433 0.125350 0.051852 10.735797 14.476610 -3434 0.125924 0.083762 14.590979 18.268048 -3435 0.039864 0.014564 5.854449 6.769747 -3436 0.063499 0.048722 6.391572 8.517040 -3437 0.064560 0.053998 8.070960 9.128277 -3438 0.035473 0.018930 8.040446 15.803908 -3439 0.070681 0.039259 9.113472 11.945368 -3440 0.047346 0.019951 6.933557 9.509652 -3441 0.051342 0.028061 7.563277 7.025188 -3442 0.054717 0.051056 10.034178 15.804464 -3443 0.046406 0.033982 5.855479 9.219077 -3444 0.074831 0.038159 10.123488 10.169574 -3445 0.068036 0.053975 5.801300 10.860333 -3446 0.144705 0.064329 9.480452 9.628903 -3447 0.074247 0.039866 16.806485 11.416733 -3448 0.147083 0.097382 11.731901 14.073808 -3449 0.097470 0.086197 9.538476 16.304523 -3450 0.072947 0.040875 11.670252 17.921061 -3451 0.042166 0.023050 7.243329 10.939079 -3452 0.066872 0.048360 6.934250 7.581429 -3453 0.065674 0.049154 12.087092 17.617421 -3454 0.068381 0.033939 6.998704 7.333746 -3455 0.075705 0.065267 13.183286 9.003259 -3456 0.063631 0.063705 12.288355 12.747183 -3457 0.057697 0.031457 7.375801 13.301273 -3458 0.084602 0.045411 12.817949 17.071329 -3459 0.061398 0.036512 9.627095 10.935671 -3460 0.060700 0.042482 13.555020 13.735696 -3461 0.092391 0.045495 11.758511 17.121756 -3462 0.042197 0.031915 9.129799 10.208518 -3463 0.073081 0.092308 11.749916 16.625841 -3464 0.064606 0.064670 11.852046 12.864817 -3465 0.066554 0.024702 5.543854 8.753717 -3466 0.063303 0.033144 9.335515 10.754451 -3467 0.072840 0.038352 6.143256 11.557561 -3468 0.070898 0.045706 7.394774 10.993328 -3469 0.082506 0.041810 10.622846 11.346589 -3470 0.066322 0.039408 10.021002 9.454410 -3471 0.091084 0.060720 11.960693 15.563273 -3472 0.056352 0.031192 11.240160 17.862087 -3473 0.074663 0.040829 9.204176 16.802060 -3474 0.055994 0.017347 8.776095 11.420383 -3475 0.079562 0.065329 8.663668 14.110691 -3476 0.085729 0.045845 10.910463 11.663540 -3477 0.115606 0.065458 14.646504 13.392057 -3478 0.104352 0.098936 9.154056 11.880548 -3479 0.080768 0.044726 7.506918 12.627103 -3480 0.092684 0.036929 14.159061 19.339890 -3481 0.076003 0.049384 15.346618 18.393873 -3482 0.083639 0.044293 10.693613 16.522691 -3483 0.088575 0.043957 12.436890 17.659128 -3484 0.054871 0.022122 8.726546 13.834078 -3485 0.051522 0.031995 6.565585 10.105334 -3486 0.136678 0.106349 12.033750 17.902383 -3487 0.079474 0.034186 9.386732 12.878262 -3488 0.086448 0.057002 11.246153 13.753057 -3489 0.083555 0.033800 6.862702 11.151009 -3490 0.052220 0.055465 9.255782 12.611337 -3491 0.071378 0.058670 13.590216 24.081816 -3492 0.057921 0.049271 8.677944 10.837280 -3493 0.067211 0.020798 10.139514 12.896522 -3494 0.080287 0.050236 9.314259 14.603788 -3495 0.048363 0.016690 8.739539 8.180137 -3496 0.055198 0.058820 7.728587 12.201967 -3497 0.092019 0.078672 7.929134 14.157997 -3498 0.083683 0.052502 7.205873 8.670208 -3499 0.075304 0.059294 10.760693 13.180466 -3500 0.061937 0.032515 6.879357 9.019104 -3501 0.064004 0.043710 9.838229 11.345969 -3502 0.075814 0.032700 10.578069 9.391724 -3503 0.092006 0.048269 11.112625 12.350799 -3504 0.110241 0.073904 13.371837 14.782119 -3505 0.067686 0.053178 10.146763 10.649261 -3506 0.078876 0.054088 9.960890 15.917391 -3507 0.105633 0.048164 11.402470 11.209167 -3508 0.061993 0.039751 7.714766 9.950307 -3509 0.117833 0.051273 11.770761 9.195843 -3510 0.105787 0.049344 8.713788 10.969444 -3511 0.067812 0.048336 10.264407 11.141795 -3512 0.076182 0.032668 9.687594 12.421691 -3513 0.056740 0.037606 9.966016 12.114679 -3514 0.036423 0.024344 7.744871 9.924174 -3515 0.105697 0.080014 8.252630 12.536921 -3516 0.087059 0.047993 7.689935 14.916969 -3517 0.087719 0.034223 7.511181 9.053824 -3518 0.148177 0.066175 12.215267 11.852464 -3519 0.055571 0.023190 9.327941 11.165526 -3520 0.058592 0.048397 10.953204 14.961602 -3521 0.100484 0.061550 9.221175 15.461881 -3522 0.084689 0.044154 14.836244 12.573268 -3523 0.104443 0.103009 7.645785 8.453558 -3524 0.069788 0.032386 8.898884 12.696797 -3525 0.046140 0.029380 8.893300 14.311451 -3526 0.053490 0.028339 9.555622 13.270723 -3527 0.052523 0.031224 11.754042 21.108223 -3528 0.143683 0.098680 8.808422 15.807781 -3529 0.068195 0.033036 15.116306 11.523790 -3530 0.068261 0.041210 8.107339 15.113327 -3531 0.042319 0.026496 10.407744 12.207953 -3532 0.064375 0.041333 8.354871 12.871052 -3533 0.081377 0.064319 7.089787 12.484126 -3534 0.068126 0.020425 10.822561 10.835246 -3535 0.113088 0.058328 11.524613 16.350498 -3536 0.068780 0.027620 10.885444 18.750256 -3537 0.061723 0.019971 9.024890 12.442181 -3538 0.105405 0.039626 13.035993 15.866255 -3539 0.062866 0.058596 10.106643 15.101218 -3540 0.100697 0.033275 8.860206 12.091338 -3541 0.058681 0.016877 5.948149 7.787908 -3542 0.077287 0.036140 7.339956 9.383108 -3543 0.130216 0.120426 12.275702 18.641183 -3544 0.058006 0.027727 9.669586 16.362503 -3545 0.074191 0.039762 11.986719 12.253071 -3546 0.080006 0.056906 9.664766 11.648938 -3547 0.063420 0.032228 8.222472 13.624479 -3548 0.067056 0.053353 6.655515 11.405753 -3549 0.056060 0.028573 9.569589 12.707733 -3550 0.060366 0.029827 7.451424 12.170065 -3551 0.076157 0.040470 11.812035 11.883931 -3552 0.034979 0.025093 9.047380 10.151402 -3553 0.104321 0.066468 13.126656 13.719672 -3554 0.071950 0.050844 12.731655 14.302662 -3555 0.098260 0.047635 9.230142 9.648074 -3556 0.083584 0.055462 13.320883 16.848114 -3557 0.088115 0.047327 10.437254 11.344940 -3558 0.058505 0.022821 11.143421 9.337769 -3559 0.093617 0.050991 12.427112 15.114452 -3560 0.061702 0.040242 14.120926 15.894397 -3561 0.089655 0.061960 10.500676 19.316323 -3562 0.072450 0.055187 8.706143 11.465090 -3563 0.060894 0.042335 8.626533 11.126840 -3564 0.077533 0.050102 8.586759 12.292842 -3565 0.095585 0.070352 8.220167 11.106398 -3566 0.057722 0.037596 5.139854 7.258336 -3567 0.078229 0.069332 15.453363 17.180263 -3568 0.079045 0.069812 10.719132 12.105400 -3569 0.049018 0.020746 8.171517 12.666350 -3570 0.074981 0.060504 9.085594 17.264338 -3571 0.113940 0.065481 7.367179 8.362880 -3572 0.086491 0.071810 11.973436 20.283163 -3573 0.050125 0.028520 6.213605 7.483253 -3574 0.078590 0.072357 12.307583 16.595785 -3575 0.049194 0.027778 7.684791 11.893352 -3576 0.096863 0.089884 9.378230 16.949907 -3577 0.137023 0.069959 8.677882 15.004450 -3578 0.156975 0.101879 8.989219 13.920283 -3579 0.076106 0.047505 9.098597 8.590819 -3580 0.049493 0.024079 13.581262 15.265147 -3581 0.040382 0.034460 17.429665 20.506877 -3582 0.068713 0.032028 7.753829 11.089111 -3583 0.077351 0.062949 8.440962 10.670842 -3584 0.062044 0.039028 7.941743 14.775046 -3585 0.059789 0.048444 8.486739 10.870666 -3586 0.098690 0.067070 9.688371 13.415728 -3587 0.110289 0.046986 16.673583 20.531827 -3588 0.073815 0.033924 11.989099 13.141698 -3589 0.067466 0.049509 7.582749 12.143492 -3590 0.065422 0.031857 12.331933 14.978856 -3591 0.074926 0.061944 10.794643 14.799584 -3592 0.099943 0.047253 9.060087 8.701579 -3593 0.098627 0.060963 11.276697 15.133981 -3594 0.045657 0.057843 8.769992 9.470246 -3595 0.090394 0.061789 14.731176 19.474132 -3596 0.072994 0.042481 7.436752 12.900602 -3597 0.062558 0.046055 8.958953 12.992979 -3598 0.150771 0.072878 8.415871 14.561403 -3599 0.088551 0.035459 15.079043 22.644707 -3600 0.069081 0.041743 9.567405 18.781034 -3601 0.081359 0.042036 10.286536 11.264107 -3602 0.085888 0.032604 8.744555 16.476591 -3603 0.055589 0.029415 9.231075 10.278651 -3604 0.080030 0.045571 13.526899 14.636001 -3605 0.094162 0.040828 6.315251 8.454929 -3606 0.085946 0.038851 8.898559 9.472165 -3607 0.092662 0.077615 13.789145 18.098681 -3608 0.061788 0.049929 12.048858 12.145182 -3609 0.040962 0.025051 7.743749 13.011887 -3610 0.042233 0.020482 10.473941 12.980859 -3611 0.062076 0.054391 11.980803 16.165254 -3612 0.073305 0.057362 9.120905 12.411714 -3613 0.082195 0.062706 9.527652 12.350214 -3614 0.105268 0.065127 7.768248 10.964714 -3615 0.048399 0.053080 9.243990 14.630586 -3616 0.059407 0.045568 7.436444 10.455371 -3617 0.104927 0.057721 7.213872 12.267442 -3618 0.084802 0.048256 9.158817 15.032937 -3619 0.037505 0.038331 11.458978 12.904114 -3620 0.042017 0.033687 11.900254 12.510669 -3621 0.073188 0.059005 11.358124 12.162579 -3622 0.061889 0.037199 10.557969 15.134137 -3623 0.069437 0.047731 13.495778 17.931334 -3624 0.059970 0.043722 9.446108 11.161500 -3625 0.061572 0.035174 7.088838 12.415290 -3626 0.082672 0.059101 9.526678 11.578129 -3627 0.075471 0.054994 10.795139 13.026616 -3628 0.085557 0.052442 10.961548 10.954258 -3629 0.052692 0.024387 6.279730 9.653698 -3630 0.120641 0.066402 10.927468 16.633998 -3631 0.116388 0.114990 12.091783 20.294028 -3632 0.059237 0.045215 9.626840 11.811969 -3633 0.092014 0.055162 14.745944 16.419763 -3634 0.079241 0.048268 11.204850 10.587122 -3635 0.092068 0.027249 12.742483 13.143758 -3636 0.099717 0.078895 6.412004 11.044448 -3637 0.084094 0.082822 8.903361 13.823696 -3638 0.056462 0.021749 8.095833 15.401733 -3639 0.069419 0.048640 9.901056 9.968354 -3640 0.063694 0.035821 15.587721 11.481210 -3641 0.054347 0.035588 11.102634 11.703859 -3642 0.082073 0.060406 10.175944 13.480121 -3643 0.097979 0.078473 8.048432 12.064434 -3644 0.064431 0.038189 7.357119 10.277297 -3645 0.088411 0.053590 10.406660 13.655578 -3646 0.058097 0.044708 10.438330 16.452540 -3647 0.060537 0.028258 8.335519 7.325530 -3648 0.052895 0.027498 7.894040 11.804843 -3649 0.053295 0.042030 14.209412 21.272293 -3650 0.061239 0.041520 12.773014 14.334098 -3651 0.085231 0.045758 9.545723 7.641812 -3652 0.058278 0.025683 11.696446 10.473668 -3653 0.075684 0.033568 8.570559 11.407237 -3654 0.048532 0.030185 14.305739 16.918799 -3655 0.113731 0.051295 11.847479 16.096491 -3656 0.076416 0.045944 9.205345 9.395074 -3657 0.076428 0.029043 8.622167 10.458953 -3658 0.142371 0.040607 11.524992 9.270602 -3659 0.105951 0.095916 10.300452 15.303755 -3660 0.077790 0.035871 6.992574 10.633270 -3661 0.099229 0.065606 7.888019 15.773293 -3662 0.113883 0.078114 8.691006 8.441571 -3663 0.098676 0.047647 11.463317 18.832693 -3664 0.120745 0.095491 9.758787 11.669830 -3665 0.066428 0.038070 10.139687 17.222730 -3666 0.119448 0.051934 11.148155 11.367441 -3667 0.101931 0.081215 9.207221 17.473376 -3668 0.075393 0.062575 10.569663 15.701222 -3669 0.044322 0.026567 10.595771 11.986006 -3670 0.066816 0.029861 11.470339 16.526406 -3671 0.055476 0.080679 6.524641 8.422201 -3672 0.058034 0.043070 15.761324 17.488936 -3673 0.063359 0.037380 12.773776 12.676895 -3674 0.067519 0.042752 9.501120 14.710961 -3675 0.071536 0.037990 13.128235 7.659197 -3676 0.090788 0.057905 10.333680 9.669755 -3677 0.124548 0.145407 7.766142 11.689614 -3678 0.102782 0.049208 8.683268 8.878766 -3679 0.079569 0.073582 11.877728 14.647707 -3680 0.168207 0.074764 12.999738 16.344022 -3681 0.091206 0.038325 14.425011 16.802770 -3682 0.059784 0.030297 6.022671 8.449750 -3683 0.069195 0.032139 7.831780 9.153206 -3684 0.082228 0.051477 10.957362 13.758087 -3685 0.123494 0.077853 8.726017 11.349078 -3686 0.079311 0.063886 8.763126 10.821047 -3687 0.060202 0.030311 15.137927 24.522583 -3688 0.076376 0.068823 9.363933 11.658153 -3689 0.056845 0.037058 9.543856 12.764417 -3690 0.097170 0.049304 15.513551 17.306418 -3691 0.059775 0.065301 10.014258 12.108624 -3692 0.081552 0.081486 11.611071 15.482674 -3693 0.103529 0.073911 7.626262 13.224404 -3694 0.065091 0.023951 11.474838 16.194507 -3695 0.089613 0.032156 13.029636 14.116513 -3696 0.187302 0.197248 11.711747 16.085724 -3697 0.040546 0.020225 6.869313 12.171491 -3698 0.060359 0.021658 8.765559 9.122668 -3699 0.091812 0.046311 7.256686 10.160145 -3700 0.096528 0.084657 12.446453 19.017549 -3701 0.100659 0.069131 13.463407 13.427672 -3702 0.070475 0.059132 6.576661 10.619223 -3703 0.109013 0.049038 10.898158 16.382736 -3704 0.106817 0.076504 9.105281 14.038732 -3705 0.106675 0.081526 9.541786 8.992566 -3706 0.081168 0.050317 12.338797 17.856415 -3707 0.062331 0.036143 9.574289 18.294750 -3708 0.072141 0.039322 10.185202 14.464725 -3709 0.088869 0.055415 13.215019 13.403069 -3710 0.078008 0.032388 9.154425 11.476128 -3711 0.089041 0.065818 12.784454 17.786177 -3712 0.080557 0.059623 11.438546 13.680409 -3713 0.058107 0.036416 7.545157 6.290905 -3714 0.047005 0.033720 10.858048 9.802116 -3715 0.103264 0.064121 11.772835 10.404730 -3716 0.072391 0.048280 10.479221 14.655237 -3717 0.056819 0.038885 14.222933 12.549263 -3718 0.061409 0.029746 11.145505 13.616457 -3719 0.072953 0.043661 8.996589 9.846250 -3720 0.052310 0.039437 6.515185 9.459791 -3721 0.046251 0.030150 8.138568 12.317001 -3722 0.042234 0.023228 4.523150 8.270556 -3723 0.103737 0.064702 10.474309 22.275610 -3724 0.080853 0.040423 13.743835 14.675637 -3725 0.093592 0.029856 9.605215 10.525657 -3726 0.111955 0.062616 7.203726 6.584634 -3727 0.068896 0.042844 9.892960 14.051284 -3728 0.058668 0.025017 8.096884 8.504919 -3729 0.094179 0.077902 8.155435 11.733743 -3730 0.043884 0.027251 8.117028 8.486109 -3731 0.065565 0.022163 6.882591 9.617471 -3732 0.079089 0.043963 10.412133 16.108265 -3733 0.070274 0.054043 9.010160 13.687084 -3734 0.059095 0.045643 8.537422 9.655016 -3735 0.087976 0.076684 9.870006 16.124133 -3736 0.058443 0.048675 9.699628 16.504449 -3737 0.087169 0.034674 7.699618 12.481364 -3738 0.057572 0.030682 9.594695 11.102283 -3739 0.059168 0.036912 11.822184 12.120560 -3740 0.124809 0.139468 14.226963 21.259131 -3741 0.117474 0.089549 11.466264 14.333533 -3742 0.053862 0.032887 4.358047 6.744028 -3743 0.090849 0.044645 8.996160 10.658977 -3744 0.059465 0.036020 9.814756 11.645833 -3745 0.063038 0.027318 8.731013 13.507568 -3746 0.084238 0.032879 8.591008 10.804969 -3747 0.116680 0.084982 10.020332 11.582345 -3748 0.036955 0.023223 6.728513 7.287292 -3749 0.062474 0.048870 7.981160 11.233038 -3750 0.075506 0.042470 8.163494 9.471038 -3751 0.058655 0.033947 9.045087 9.432307 -3752 0.057742 0.036514 10.974689 15.053681 -3753 0.075080 0.028353 13.106667 16.214959 -3754 0.067358 0.075588 20.114488 15.145974 -3755 0.075664 0.049618 11.968900 12.383085 -3756 0.102679 0.074152 8.011356 12.321507 -3757 0.092315 0.041723 8.333271 12.956387 -3758 0.068071 0.058709 11.876475 16.017000 -3759 0.070173 0.039914 11.821513 10.368101 -3760 0.080485 0.044006 7.723989 10.983171 -3761 0.059777 0.033942 9.464567 11.019927 -3762 0.079638 0.048532 8.867542 12.619686 -3763 0.124805 0.079905 11.331427 14.502099 -3764 0.053039 0.023004 10.856396 11.998350 -3765 0.093654 0.061469 8.592561 13.302513 -3766 0.059397 0.035809 7.424931 8.747119 -3767 0.073760 0.038726 8.266333 12.930951 -3768 0.098749 0.089191 11.383512 13.470040 -3769 0.075147 0.057759 7.641555 8.845144 -3770 0.101228 0.039752 14.902747 21.288406 -3771 0.066439 0.043990 6.250203 10.010705 -3772 0.103148 0.042103 10.298448 9.265800 -3773 0.070676 0.055596 15.017953 12.536949 -3774 0.062805 0.042864 11.091381 12.010461 -3775 0.062532 0.069077 7.274308 8.269580 -3776 0.046427 0.017308 6.755539 9.286538 -3777 0.102990 0.058779 8.791814 9.841343 -3778 0.071848 0.052742 11.237391 15.343094 -3779 0.068032 0.046207 8.722205 14.354629 -3780 0.085778 0.034416 9.481307 15.079552 -3781 0.103515 0.075301 7.427854 14.953606 -3782 0.093348 0.079275 8.372841 11.417012 -3783 0.069468 0.060128 8.809727 11.074548 -3784 0.058726 0.033371 12.493936 15.778662 -3785 0.061870 0.029293 8.631124 12.204406 -3786 0.087824 0.050196 9.434621 14.633030 -3787 0.060566 0.036101 9.326425 9.135435 -3788 0.082466 0.083802 12.244606 15.966863 -3789 0.083734 0.059338 7.249110 6.853875 -3790 0.086333 0.090636 14.263293 15.033213 -3791 0.079982 0.046119 10.857106 9.755899 -3792 0.039800 0.029444 6.936869 8.036667 -3793 0.054242 0.024303 7.831489 10.087107 -3794 0.074542 0.026867 6.360954 8.378453 -3795 0.108888 0.066691 13.703076 14.661739 -3796 0.052234 0.044292 8.874910 11.920565 -3797 0.098775 0.036671 10.496316 14.036082 -3798 0.063600 0.030798 8.084030 10.350478 -3799 0.076680 0.054687 14.510212 10.630610 -3800 0.070897 0.049426 8.217417 13.105981 -3801 0.069337 0.045355 9.185332 16.232900 -3802 0.066425 0.042075 5.820320 11.400556 -3803 0.072259 0.048103 8.772163 12.161733 -3804 0.064548 0.041422 7.799276 13.559712 -3805 0.074619 0.050359 11.930087 13.599713 -3806 0.049104 0.034032 10.974891 10.450797 -3807 0.115651 0.080563 8.007168 11.355132 -3808 0.071152 0.041433 9.805600 6.228758 -3809 0.088558 0.060778 12.979594 17.492615 -3810 0.101422 0.066377 11.848803 10.288168 -3811 0.089590 0.064601 9.982239 7.657121 -3812 0.050181 0.023190 8.137861 11.386581 -3813 0.083661 0.042025 8.758025 9.274347 -3814 0.040942 0.034730 10.006137 12.409461 -3815 0.076760 0.037987 8.809074 10.356685 -3816 0.060860 0.027298 10.393491 14.105894 -3817 0.087583 0.057773 8.475312 11.542229 -3818 0.069937 0.034768 12.265287 10.053935 -3819 0.059306 0.031767 10.565618 10.262087 -3820 0.106492 0.054202 9.474647 12.137730 -3821 0.079769 0.064172 8.292171 12.283691 -3822 0.119725 0.083145 12.312508 16.558581 -3823 0.078069 0.043304 10.472891 12.650481 -3824 0.069291 0.039294 17.386673 19.462217 -3825 0.093406 0.060979 22.812915 25.005287 -3826 0.063556 0.030003 8.293472 7.182910 -3827 0.099250 0.072049 8.038417 9.914413 -3828 0.044087 0.031666 12.314779 9.846666 -3829 0.045886 0.022689 7.678939 9.757781 -3830 0.094840 0.085934 8.513253 15.132553 -3831 0.066182 0.042770 11.915609 13.462317 -3832 0.068823 0.063332 13.549825 13.894989 -3833 0.079057 0.033627 9.448716 11.178697 -3834 0.042218 0.035379 7.848064 9.487862 -3835 0.070114 0.046269 11.125875 14.881114 -3836 0.094946 0.054812 16.738183 18.873056 -3837 0.078914 0.030380 7.009348 9.360915 -3838 0.066461 0.031263 5.584141 10.609101 -3839 0.051923 0.035240 7.524781 8.391900 -3840 0.080868 0.041676 9.695635 14.937381 -3841 0.077012 0.045785 10.818965 14.495670 -3842 0.071870 0.052457 12.344983 13.225002 -3843 0.059717 0.039135 6.666945 11.488103 -3844 0.059861 0.036038 19.327323 17.342321 -3845 0.060046 0.042567 7.727879 11.284001 -3846 0.112357 0.059042 12.611059 17.729490 -3847 0.069228 0.031885 8.615072 10.705090 -3848 0.047466 0.034449 9.051473 12.372015 -3849 0.092038 0.071058 11.367955 13.557296 -3850 0.059315 0.023604 12.091162 17.216916 -3851 0.058189 0.050620 9.077473 15.752801 -3852 0.068637 0.040159 12.524622 12.506320 -3853 0.065735 0.034813 12.352450 15.012902 -3854 0.045526 0.022640 9.890751 14.409563 -3855 0.067551 0.032132 8.157424 10.297008 -3856 0.086789 0.073217 13.772736 13.385094 -3857 0.059168 0.042564 11.636613 16.086103 -3858 0.079796 0.074415 8.775155 15.413086 -3859 0.053468 0.046257 5.313096 7.281402 -3860 0.048155 0.028710 8.968449 8.254781 -3861 0.052654 0.020338 10.115283 8.854124 -3862 0.033825 0.022954 8.428745 10.527455 -3863 0.054130 0.028237 6.557950 11.800760 -3864 0.056620 0.018584 12.540845 12.779808 -3865 0.042711 0.038171 10.678709 13.967569 -3866 0.091384 0.043195 6.619541 8.610255 -3867 0.069640 0.053513 7.885946 9.590313 -3868 0.047086 0.028807 8.257854 13.052551 -3869 0.062457 0.032617 9.956243 13.895118 -3870 0.055801 0.035641 9.081274 10.151949 -3871 0.055227 0.036704 7.200508 8.364244 -3872 0.101933 0.046618 7.396744 13.113317 -3873 0.072334 0.039388 11.076141 10.042350 -3874 0.116036 0.066336 12.031219 16.789010 -3875 0.076299 0.072249 8.802752 13.845002 -3876 0.080926 0.054805 9.159182 9.834579 -3877 0.076292 0.081540 10.280517 13.221994 -3878 0.080454 0.057707 8.536064 10.784690 -3879 0.062633 0.030162 10.281109 15.712235 -3880 0.050170 0.041884 6.875544 9.687277 -3881 0.054987 0.028631 14.039964 15.960638 -3882 0.069827 0.028030 13.438640 16.565326 -3883 0.080818 0.031196 9.858362 16.113657 -3884 0.125302 0.064199 8.538517 12.451669 -3885 0.054664 0.039180 9.704850 13.665777 -3886 0.087815 0.044996 8.371907 10.366414 -3887 0.104977 0.083531 8.629998 19.761295 -3888 0.113870 0.062143 6.664986 11.627489 -3889 0.067958 0.062053 16.897012 16.067470 -3890 0.069316 0.037660 8.965368 21.100179 -3891 0.073855 0.052872 10.291375 15.802611 -3892 0.124285 0.084516 13.064787 15.880075 -3893 0.092344 0.042407 8.451065 12.951018 -3894 0.087559 0.057779 7.932704 11.394364 -3895 0.082106 0.041309 13.686673 14.929819 -3896 0.052089 0.037282 8.258812 8.880744 -3897 0.071194 0.026121 12.595353 16.307505 -3898 0.075758 0.041712 6.974921 14.049477 -3899 0.117575 0.061058 10.583032 11.179990 -3900 0.121962 0.060192 10.795212 12.300675 -3901 0.075385 0.042288 11.187303 12.910888 -3902 0.088486 0.098044 7.921949 12.401999 -3903 0.078333 0.078373 15.910738 16.546255 -3904 0.079028 0.043385 9.756494 13.287740 -3905 0.059904 0.038152 11.578569 12.314335 -3906 0.103350 0.060604 12.595058 14.603475 -3907 0.096999 0.057346 11.988791 11.936334 -3908 0.038482 0.029250 6.980061 10.388074 -3909 0.049620 0.026429 6.710931 11.813251 -3910 0.068364 0.040171 12.472671 11.225262 -3911 0.069595 0.039528 8.060666 8.370729 -3912 0.117416 0.062916 11.438436 14.029731 -3913 0.053684 0.036345 11.752628 11.780213 -3914 0.100125 0.083005 13.225084 15.627743 -3915 0.058017 0.028878 11.649157 15.181589 -3916 0.061967 0.032775 9.067661 10.949180 -3917 0.112217 0.049841 8.363328 13.645089 -3918 0.092955 0.043223 11.767200 15.527678 -3919 0.114181 0.055325 12.107251 9.634618 -3920 0.051268 0.029570 12.850659 10.913957 -3921 0.076670 0.046627 7.132266 11.438437 -3922 0.061550 0.025260 14.320270 13.115216 -3923 0.074668 0.037679 10.068731 11.420502 -3924 0.114500 0.076572 10.462961 14.527516 -3925 0.059815 0.038376 7.907406 13.064729 -3926 0.097680 0.075066 12.172964 12.809282 -3927 0.065538 0.046105 10.086392 12.888678 -3928 0.065628 0.047102 11.696205 16.290732 -3929 0.139948 0.104679 9.227909 13.667416 -3930 0.081796 0.060354 14.458333 15.467217 -3931 0.136998 0.164770 12.480975 14.733910 -3932 0.070707 0.033177 9.692221 11.671012 -3933 0.088095 0.070128 5.899140 13.846136 -3934 0.068648 0.034639 13.049095 14.561163 -3935 0.085463 0.036056 9.497671 13.987995 -3936 0.050052 0.025744 8.974182 7.756907 -3937 0.062574 0.032498 6.834300 7.438868 -3938 0.076389 0.040553 11.061911 11.980287 -3939 0.048414 0.034689 7.972558 10.123754 -3940 0.110604 0.054998 12.768931 14.045549 -3941 0.067569 0.043120 10.894319 14.512340 -3942 0.040612 0.020333 6.466249 11.552494 -3943 0.086682 0.075084 16.734789 16.310789 -3944 0.113199 0.078944 8.685476 16.590352 -3945 0.137985 0.116012 10.011279 13.726257 -3946 0.087808 0.067148 7.140584 9.471026 -3947 0.049198 0.035714 10.696850 12.795249 -3948 0.074690 0.050120 13.292716 17.360747 -3949 0.076080 0.069932 7.228199 9.588397 -3950 0.071385 0.027479 6.717500 11.458266 -3951 0.092788 0.045051 11.306339 15.541813 -3952 0.076753 0.054335 10.686351 11.404734 -3953 0.122231 0.079852 10.347893 13.416844 -3954 0.105790 0.089255 15.412011 19.347931 -3955 0.056551 0.039657 8.106500 10.645749 -3956 0.059933 0.022143 10.906474 8.628490 -3957 0.080413 0.061697 10.252620 11.187839 -3958 0.047776 0.024185 11.385032 10.943903 -3959 0.073730 0.043722 15.687011 13.936168 -3960 0.066661 0.035808 8.580722 9.444568 -3961 0.062138 0.047607 9.207475 10.057175 -3962 0.108566 0.076261 11.794871 14.665068 -3963 0.048136 0.031446 6.179794 8.302193 -3964 0.108136 0.051387 9.222728 9.943336 -3965 0.047802 0.024431 11.621697 10.414150 -3966 0.057980 0.038403 6.803878 11.553722 -3967 0.049715 0.022832 7.553517 14.964693 -3968 0.120972 0.043715 10.804878 14.547456 -3969 0.055196 0.025275 12.617823 11.495314 -3970 0.079370 0.049815 12.844119 11.869672 -3971 0.095188 0.030825 9.401261 10.636729 -3972 0.091758 0.051022 8.095853 11.029310 -3973 0.087258 0.070912 9.913226 9.482780 -3974 0.068246 0.033912 17.350937 26.797462 -3975 0.072934 0.075239 12.205969 16.591602 -3976 0.060722 0.044924 6.116040 9.167776 -3977 0.067239 0.023864 9.332609 11.373213 -3978 0.094979 0.037705 9.750292 14.110200 -3979 0.042713 0.023642 9.714472 14.075381 -3980 0.076818 0.059911 14.848289 19.805616 -3981 0.115456 0.052417 10.737145 16.456466 -3982 0.071143 0.044971 10.228029 9.273486 -3983 0.121235 0.067419 10.984020 12.410530 -3984 0.079563 0.080313 11.554807 13.753109 -3985 0.069846 0.061307 15.328061 16.906377 -3986 0.081091 0.044813 8.264217 11.174459 -3987 0.105626 0.047568 8.212413 12.805966 -3988 0.098484 0.052981 14.735843 14.992255 -3989 0.062231 0.034737 14.113061 12.745852 -3990 0.052668 0.041662 11.647734 14.233375 -3991 0.086802 0.052117 9.803360 14.404606 -3992 0.093414 0.036168 9.143143 14.671430 -3993 0.056060 0.041967 6.314110 10.060572 -3994 0.116982 0.071291 7.150207 13.001068 -3995 0.087344 0.054630 12.249135 15.649310 -3996 0.057622 0.044490 8.409737 11.292172 -3997 0.084886 0.057151 9.211572 15.083619 -3998 0.044204 0.021296 8.029478 10.275214 -3999 0.092689 0.048700 6.927654 11.162240 -4000 0.082594 0.031550 11.995167 15.391814 -4001 0.037895 0.016938 6.512795 9.978259 -4002 0.104062 0.061951 12.713607 16.470876 -4003 0.102928 0.089047 15.528025 23.287272 -4004 0.067577 0.052776 8.843299 9.469192 -4005 0.082298 0.044462 12.510840 15.887807 -4006 0.035035 0.021632 8.061736 11.169746 -4007 0.123521 0.084836 11.493162 13.309522 -4008 0.071421 0.057508 11.934212 18.290218 -4009 0.114712 0.071772 6.452336 10.783948 -4010 0.114434 0.075535 15.602685 21.279084 -4011 0.125971 0.097634 11.433355 12.727458 -4012 0.064676 0.074530 14.928252 17.854735 -4013 0.089426 0.071806 14.007662 16.605166 -4014 0.083337 0.063333 12.820926 16.191640 -4015 0.093781 0.046463 8.649107 11.485117 -4016 0.075669 0.062981 6.979497 10.561235 -4017 0.057718 0.024883 6.851802 8.675839 -4018 0.043104 0.025648 8.274276 9.971812 -4019 0.061317 0.048821 10.209155 16.983493 -4020 0.076848 0.034519 14.565702 21.284947 -4021 0.071041 0.053258 11.898780 13.127071 -4022 0.069244 0.029605 10.438758 15.711946 -4023 0.047559 0.033495 8.653659 13.872391 -4024 0.064895 0.043493 8.676134 16.840101 -4025 0.132953 0.069262 10.395358 13.222347 -4026 0.106609 0.099046 14.064611 16.791430 -4027 0.079598 0.046099 14.671228 15.086740 -4028 0.033646 0.016296 5.395792 8.502702 -4029 0.067156 0.033990 6.986794 10.604204 -4030 0.047970 0.025693 6.838225 8.842627 -4031 0.118684 0.094157 11.253805 19.462441 -4032 0.052757 0.035726 8.419972 9.687835 -4033 0.076101 0.037511 9.863100 13.164935 -4034 0.065485 0.032049 8.055432 13.403522 -4035 0.093452 0.062797 12.216293 14.367912 -4036 0.109592 0.040579 8.732681 14.781319 -4037 0.069916 0.036158 6.548350 8.357429 -4038 0.069663 0.059344 8.696162 11.240882 -4039 0.083668 0.078916 9.750619 12.021895 -4040 0.066690 0.046219 12.341287 12.051229 -4041 0.062387 0.033535 15.495393 14.316521 -4042 0.071121 0.053220 7.988042 6.510738 -4043 0.080031 0.053949 11.067475 14.400019 -4044 0.079308 0.034227 11.430344 13.007610 -4045 0.062742 0.030947 11.885571 13.078047 -4046 0.054536 0.043984 8.701585 17.554154 -4047 0.075445 0.058631 14.629199 16.089240 -4048 0.132120 0.043155 11.454874 17.448412 -4049 0.092547 0.039644 9.154747 15.817442 -4050 0.111382 0.066922 8.049863 9.762485 -4051 0.063603 0.076736 8.673994 14.112400 -4052 0.103591 0.051826 12.410279 18.546001 -4053 0.091327 0.045607 10.607964 16.372387 -4054 0.069248 0.035593 9.536179 10.678740 -4055 0.132118 0.094246 15.134587 25.700647 -4056 0.060908 0.043354 13.291219 16.778031 -4057 0.074239 0.035210 8.565950 11.842823 -4058 0.052014 0.037726 12.525085 9.227764 -4059 0.099780 0.043551 10.395803 12.569891 -4060 0.066790 0.042174 11.787802 11.222085 -4061 0.059811 0.034562 17.903647 15.290584 -4062 0.051528 0.018474 9.345811 9.206914 -4063 0.131978 0.084341 10.795740 12.751684 -4064 0.061728 0.036379 11.913498 14.842524 -4065 0.141532 0.066867 6.565569 8.964326 -4066 0.039841 0.025570 7.839082 12.707277 -4067 0.052149 0.038532 11.035111 13.140383 -4068 0.127705 0.079830 11.996573 20.908573 -4069 0.073813 0.039126 12.503893 11.198278 -4070 0.085346 0.049971 8.009799 11.376601 -4071 0.113643 0.043908 10.177987 11.078137 -4072 0.091982 0.065828 10.074936 21.588544 -4073 0.072248 0.063298 8.790364 7.654431 -4074 0.084730 0.030580 10.939071 12.041426 -4075 0.063502 0.058240 7.902196 10.402520 -4076 0.035452 0.020714 9.124003 6.817322 -4077 0.062350 0.055664 8.645537 11.499327 -4078 0.039261 0.034921 10.495436 11.416994 -4079 0.048936 0.029865 9.462399 11.324191 -4080 0.112739 0.072443 12.154189 12.699601 -4081 0.101516 0.046702 7.275873 9.878789 -4082 0.067270 0.036062 11.680517 15.786790 -4083 0.052658 0.037245 19.051096 17.680888 -4084 0.122616 0.051897 9.302539 14.048216 -4085 0.086589 0.061137 9.084906 8.792738 -4086 0.106566 0.073396 12.059437 14.112776 -4087 0.065612 0.033690 12.538794 13.039146 -4088 0.072030 0.049376 9.775659 12.528716 -4089 0.073298 0.038962 10.561303 9.056738 -4090 0.084222 0.029401 10.924775 11.906856 -4091 0.095776 0.060227 10.249342 17.737139 -4092 0.077043 0.033741 11.209707 16.341717 -4093 0.043087 0.027778 10.314254 11.131658 -4094 0.082448 0.048938 9.920048 12.983576 -4095 0.060508 0.038747 7.487954 9.490250 -4096 0.129730 0.076191 11.260168 15.363228 -4097 0.096527 0.062637 10.232930 10.575693 -4098 0.077912 0.038032 9.645406 13.129342 -4099 0.052239 0.032286 10.556908 8.896176 -4100 0.092299 0.076338 10.798952 11.862351 -4101 0.124174 0.095344 19.018918 18.767280 -4102 0.073208 0.028256 9.521777 14.793226 -4103 0.053441 0.022390 10.804000 11.657265 -4104 0.080033 0.034331 7.341176 12.561047 -4105 0.041152 0.027068 7.756290 8.914485 -4106 0.056630 0.026441 7.433628 12.169236 -4107 0.063527 0.019004 7.154528 21.436788 -4108 0.067715 0.058446 9.478076 11.649132 -4109 0.099526 0.086997 17.073322 15.103900 -4110 0.070698 0.058742 12.653648 16.766609 -4111 0.080098 0.045871 6.455093 6.901343 -4112 0.066439 0.065371 16.892604 14.922433 -4113 0.057380 0.047796 6.509862 8.080948 -4114 0.068276 0.028521 5.506592 7.181081 -4115 0.099156 0.046447 8.444751 11.390101 -4116 0.079179 0.040271 11.023272 17.031035 -4117 0.122731 0.059725 11.385740 18.297623 -4118 0.072324 0.044427 12.223448 12.471916 -4119 0.084829 0.059072 13.207408 15.092394 -4120 0.162615 0.046802 11.652742 15.575202 -4121 0.054029 0.025913 11.545716 10.785103 -4122 0.066111 0.036938 8.407604 14.212909 -4123 0.101287 0.062103 15.216622 16.479930 -4124 0.040313 0.026253 7.413257 9.493298 -4125 0.057447 0.034125 10.452124 9.600036 -4126 0.066650 0.045205 8.419415 14.440538 -4127 0.054496 0.042347 7.814703 10.540285 -4128 0.055318 0.033214 9.766765 13.496269 -4129 0.063108 0.060278 6.644792 8.106651 -4130 0.073323 0.073822 14.425667 17.680914 -4131 0.063858 0.056766 9.973214 14.779552 -4132 0.113205 0.079690 8.100083 9.021555 -4133 0.055296 0.034067 8.586849 11.014363 -4134 0.071646 0.046776 6.720433 13.365046 -4135 0.105201 0.091872 8.938723 11.902015 -4136 0.091288 0.078832 6.628025 13.814074 -4137 0.055625 0.019268 12.240144 13.070706 -4138 0.069312 0.025378 8.228434 12.028149 -4139 0.097434 0.041796 9.645596 14.302390 -4140 0.128815 0.083338 14.328323 13.443258 -4141 0.057311 0.051795 5.418260 7.162790 -4142 0.082114 0.026961 9.127882 14.133180 -4143 0.066898 0.056057 8.743289 14.666482 -4144 0.039984 0.031028 4.962887 7.254580 -4145 0.084267 0.049519 10.076311 11.860944 -4146 0.056666 0.033082 7.348592 8.978520 -4147 0.063229 0.027307 12.175412 17.161325 -4148 0.041725 0.056769 7.513841 11.192786 -4149 0.098572 0.062207 11.794153 17.526747 -4150 0.051296 0.027153 10.989038 10.757275 -4151 0.052262 0.044784 7.581359 11.027390 -4152 0.044068 0.036936 4.442539 6.458068 -4153 0.108744 0.065233 14.111619 15.624547 -4154 0.077208 0.047866 10.392522 12.583196 -4155 0.093863 0.084658 8.688876 10.019043 -4156 0.061621 0.052914 6.735579 9.990036 -4157 0.076810 0.033001 8.851063 12.264108 -4158 0.074619 0.018746 13.332957 15.206131 -4159 0.111028 0.056188 9.136322 11.251049 -4160 0.052637 0.046495 15.264936 15.620439 -4161 0.078762 0.029336 7.360595 11.466284 -4162 0.150254 0.089234 10.108256 23.399290 -4163 0.048036 0.023624 9.831696 8.506393 -4164 0.068107 0.033137 10.999197 10.838288 -4165 0.107038 0.040964 10.091969 18.630879 -4166 0.118347 0.070247 10.056337 9.504589 -4167 0.056209 0.033233 7.390260 5.706585 -4168 0.081095 0.074287 9.572764 15.152442 -4169 0.068344 0.037704 14.029118 12.472103 -4170 0.090020 0.028273 7.395949 12.226984 -4171 0.088311 0.043024 10.972464 14.187856 -4172 0.058428 0.035860 9.624828 10.719486 -4173 0.077019 0.043774 12.782123 17.081231 -4174 0.044537 0.041290 7.196394 12.275233 -4175 0.071492 0.050273 8.396053 9.655287 -4176 0.051312 0.033651 8.964844 7.654887 -4177 0.038817 0.018687 7.134907 9.782840 -4178 0.087162 0.050393 8.566262 8.514997 -4179 0.091745 0.052369 11.437847 21.819356 -4180 0.087964 0.032002 7.224430 7.880512 -4181 0.059034 0.035063 11.112273 11.423396 -4182 0.084519 0.030904 9.816557 11.640528 -4183 0.067571 0.031978 7.586513 11.401011 -4184 0.061224 0.031234 10.197789 10.037180 -4185 0.083789 0.048179 9.182171 14.286375 -4186 0.050504 0.028200 7.985587 12.203031 -4187 0.052391 0.033740 8.665430 15.423146 -4188 0.084801 0.045163 9.488979 11.631333 -4189 0.079370 0.058381 10.509356 11.194737 -4190 0.070016 0.046668 12.962408 13.396526 -4191 0.061611 0.021724 8.956035 15.015754 -4192 0.077767 0.049769 10.881221 15.742610 -4193 0.074843 0.052167 9.418501 10.374743 -4194 0.087604 0.043168 9.071167 13.623667 -4195 0.076152 0.030128 15.459950 12.350702 -4196 0.081868 0.042497 10.724020 8.235612 -4197 0.055479 0.038310 8.691276 13.599676 -4198 0.046266 0.023320 10.205145 12.478374 -4199 0.056813 0.027306 10.731942 11.370823 -4200 0.065858 0.044936 12.411084 15.387062 -4201 0.049968 0.056755 8.918110 8.727838 -4202 0.076479 0.047145 11.356717 9.645402 -4203 0.081136 0.043603 12.840992 20.268709 -4204 0.072084 0.029791 10.363142 18.003459 -4205 0.098107 0.047907 11.529620 13.738414 -4206 0.064324 0.039436 11.548913 14.039543 -4207 0.046021 0.062078 14.009478 15.507349 -4208 0.077141 0.040213 9.861522 13.704962 -4209 0.063229 0.064296 8.820175 13.761625 -4210 0.059842 0.037363 9.805373 10.734989 -4211 0.083214 0.068280 9.402859 15.360159 -4212 0.076959 0.043329 8.852929 10.362797 -4213 0.133719 0.083310 14.352184 23.127181 -4214 0.102906 0.070987 11.628884 12.635660 -4215 0.110315 0.064613 9.162328 12.502938 -4216 0.058360 0.041317 12.188789 12.773273 -4217 0.057803 0.040817 11.519454 19.184169 -4218 0.077360 0.080810 10.656112 14.469664 -4219 0.099651 0.068422 11.745276 9.867664 -4220 0.062124 0.036307 12.044728 11.475047 -4221 0.061639 0.035308 10.525991 11.993681 -4222 0.120420 0.050705 7.206182 14.040910 -4223 0.184515 0.104173 13.134020 15.390584 -4224 0.066711 0.030740 8.026118 13.165381 -4225 0.065735 0.026831 12.207861 15.753080 -4226 0.070973 0.032807 10.070366 10.372524 -4227 0.100925 0.046190 9.845955 14.632317 -4228 0.092061 0.045102 10.857744 22.260103 -4229 0.065549 0.025492 8.603185 13.974061 -4230 0.071904 0.067063 9.536125 11.805558 -4231 0.086824 0.058904 9.823253 16.309277 -4232 0.089137 0.047344 9.659604 8.126448 -4233 0.062742 0.039064 14.879203 14.878378 -4234 0.114423 0.106543 15.624015 19.941452 -4235 0.052956 0.034052 7.368192 6.456953 -4236 0.076205 0.038096 9.353337 7.906905 -4237 0.078621 0.038544 7.139951 6.093712 -4238 0.116934 0.096475 9.254301 10.835478 -4239 0.071905 0.040503 6.093285 8.756275 -4240 0.056504 0.031130 11.947314 11.348747 -4241 0.056551 0.031407 9.266551 8.977316 -4242 0.102107 0.070401 8.367759 10.493760 -4243 0.064009 0.020090 8.038254 14.029541 -4244 0.072667 0.058562 7.946545 11.774104 -4245 0.087800 0.053861 8.713819 11.480523 -4246 0.056652 0.042398 9.157041 8.409697 -4247 0.076403 0.074762 15.089146 16.827946 -4248 0.060658 0.037448 11.013930 12.822665 -4249 0.039086 0.039512 13.061260 14.761831 -4250 0.053519 0.036820 9.292791 9.120178 -4251 0.083532 0.078421 8.150875 13.097840 -4252 0.101999 0.046673 12.227859 21.700930 -4253 0.045911 0.022190 9.083861 11.163477 -4254 0.061282 0.047403 13.828324 11.495953 -4255 0.062814 0.027597 13.151975 14.111454 -4256 0.065994 0.037243 11.588281 14.016005 -4257 0.084389 0.089063 8.314201 10.730521 -4258 0.089140 0.037387 15.480060 20.520883 -4259 0.105328 0.065105 6.334665 12.676412 -4260 0.038381 0.045826 10.303201 11.839222 -4261 0.111205 0.075398 13.639350 21.276103 -4262 0.120440 0.072347 11.733080 11.883300 -4263 0.042092 0.022912 10.946418 11.851351 -4264 0.045837 0.026200 11.401508 16.247262 -4265 0.076354 0.047794 9.119702 9.458483 -4266 0.104511 0.047998 6.880974 11.410693 -4267 0.083953 0.068236 8.167006 6.971461 -4268 0.052564 0.021038 8.586309 11.982810 -4269 0.119690 0.083067 18.467215 18.165488 -4270 0.089024 0.037429 8.357640 10.934349 -4271 0.069575 0.032939 8.290752 10.826763 -4272 0.057153 0.029372 7.639208 9.790493 -4273 0.077520 0.050255 11.052554 15.031818 -4274 0.087677 0.049685 8.359258 9.944661 -4275 0.105719 0.130612 20.255776 27.024178 -4276 0.067644 0.049939 13.522434 18.313614 -4277 0.061076 0.035659 5.733315 6.345095 -4278 0.115177 0.057893 16.835795 17.184794 -4279 0.050006 0.037599 7.872993 8.617881 -4280 0.108534 0.062021 9.101300 13.708432 -4281 0.048729 0.028775 7.817624 14.996220 -4282 0.062649 0.039624 9.328667 13.214717 -4283 0.058679 0.072558 8.687069 12.036395 -4284 0.093106 0.060211 8.585870 9.594751 -4285 0.080145 0.092710 7.548519 11.604605 -4286 0.084036 0.069986 9.427310 16.397803 -4287 0.058956 0.049940 7.014933 8.463173 -4288 0.084633 0.056762 11.639672 15.324058 -4289 0.043415 0.030382 9.919635 11.697311 -4290 0.058668 0.027973 8.770440 13.347253 -4291 0.059351 0.034466 6.119897 11.348314 -4292 0.119000 0.086274 7.401406 12.420388 -4293 0.056350 0.023436 10.254423 14.606895 -4294 0.091979 0.073825 11.020262 12.864020 -4295 0.085218 0.065711 11.250990 9.720468 -4296 0.083408 0.048323 11.790475 9.930677 -4297 0.047398 0.030053 15.446699 19.425108 -4298 0.169616 0.089622 10.034920 13.313834 -4299 0.069061 0.057223 11.187383 13.501874 -4300 0.079951 0.036503 10.464049 14.596994 -4301 0.062839 0.047838 7.456921 7.534445 -4302 0.079869 0.042813 7.489466 11.841482 -4303 0.072479 0.058644 7.719994 12.809859 -4304 0.046946 0.047680 15.228142 15.158066 -4305 0.054044 0.035243 11.542693 10.187155 -4306 0.083615 0.089524 9.013935 9.730711 -4307 0.085570 0.030538 8.780962 13.555002 -4308 0.090071 0.036657 7.420725 10.740732 -4309 0.095273 0.061491 18.126629 18.594474 -4310 0.074423 0.060044 11.330967 13.675027 -4311 0.068457 0.057041 11.168515 10.403952 -4312 0.103636 0.113859 10.417081 10.484945 -4313 0.064811 0.034925 9.483270 7.636960 -4314 0.070549 0.028435 7.370093 17.616944 -4315 0.059162 0.034412 9.393963 13.909142 -4316 0.118390 0.081736 14.392737 16.019791 -4317 0.068084 0.086157 11.209900 12.269639 -4318 0.090033 0.052914 13.209781 15.741834 -4319 0.068756 0.080359 9.041081 10.906545 -4320 0.072342 0.100495 19.817679 29.890440 -4321 0.066002 0.026609 9.720951 13.878629 -4322 0.077182 0.030325 12.353435 16.446256 -4323 0.097753 0.041590 10.631374 11.879202 -4324 0.078885 0.043773 12.315764 14.786802 -4325 0.101618 0.056673 6.953050 8.719607 -4326 0.089952 0.055887 9.364720 11.649745 -4327 0.063988 0.040077 7.229867 10.109310 -4328 0.067577 0.031795 10.307378 17.640153 -4329 0.092555 0.032196 9.302895 13.170437 -4330 0.096232 0.042587 6.884108 8.653215 -4331 0.070831 0.023396 10.114128 13.528589 -4332 0.090524 0.044287 10.402661 13.857419 -4333 0.090152 0.053990 8.593920 16.145288 -4334 0.080564 0.049278 12.887237 18.659300 -4335 0.102814 0.061542 9.730726 11.660038 -4336 0.071965 0.063530 12.816633 18.464809 -4337 0.079038 0.048235 7.445178 9.689671 -4338 0.068850 0.054074 10.514322 16.636436 -4339 0.085357 0.069662 7.975587 12.529858 -4340 0.064995 0.041377 8.215418 9.521379 -4341 0.072455 0.025196 8.479117 10.031850 -4342 0.077738 0.042526 7.471875 10.598036 -4343 0.070294 0.034754 10.770134 15.366605 -4344 0.094827 0.041170 7.806595 12.986625 -4345 0.069561 0.039151 8.936933 15.078505 -4346 0.063784 0.037052 8.412211 13.624252 -4347 0.065263 0.041159 9.203665 8.162188 -4348 0.093710 0.064243 12.133899 19.124996 -4349 0.206423 0.105009 18.028848 20.866584 -4350 0.155026 0.113844 7.425583 12.443479 -4351 0.081333 0.041078 8.336969 11.017265 -4352 0.038890 0.019662 7.814633 8.083740 -4353 0.077014 0.100851 10.863175 12.848512 -4354 0.097980 0.064927 13.352838 15.633969 -4355 0.116387 0.121047 11.757839 12.504537 -4356 0.111904 0.047085 6.967435 12.951042 -4357 0.103970 0.072303 9.370426 17.743243 -4358 0.078820 0.039548 8.944815 11.976847 -4359 0.058270 0.047400 12.835053 14.790526 -4360 0.077154 0.048643 7.470441 8.846102 -4361 0.057846 0.038319 10.205161 14.439578 -4362 0.124805 0.072117 10.426425 17.252092 -4363 0.076684 0.057040 8.743065 17.218098 -4364 0.102609 0.079705 14.862560 17.667086 -4365 0.064719 0.030223 12.195708 11.110198 -4366 0.044577 0.025531 11.126955 13.470290 -4367 0.082043 0.048711 8.942768 13.120659 -4368 0.072180 0.062235 10.860522 18.570730 -4369 0.040919 0.033531 8.257332 12.042541 -4370 0.057723 0.032032 5.570839 8.250842 -4371 0.080867 0.048567 10.454967 16.595578 -4372 0.092315 0.085885 9.498886 14.663335 -4373 0.101526 0.105787 6.348967 12.491517 -4374 0.108116 0.064564 12.896014 22.787666 -4375 0.049789 0.026147 9.899596 13.346146 -4376 0.108468 0.049809 8.747236 12.419211 -4377 0.057111 0.027310 11.251405 9.843235 -4378 0.058931 0.048789 8.501502 14.886024 -4379 0.123458 0.055979 7.749272 7.491125 -4380 0.065003 0.043419 8.571704 9.493520 -4381 0.098212 0.066415 7.742636 16.341490 -4382 0.081217 0.031928 8.310674 11.483683 -4383 0.133854 0.072594 10.997811 12.242313 -4384 0.058037 0.024047 8.623477 10.416623 -4385 0.052814 0.045119 7.766713 14.633294 -4386 0.086956 0.067157 14.161341 13.954520 -4387 0.072611 0.075682 11.280467 14.586999 -4388 0.111369 0.079098 13.304098 16.893614 -4389 0.072583 0.062628 9.623097 9.271851 -4390 0.109560 0.053388 12.490370 23.667390 -4391 0.100073 0.078365 11.231170 14.107152 -4392 0.075511 0.042799 10.528493 16.830384 -4393 0.127539 0.085300 10.316141 17.161854 -4394 0.056295 0.057177 9.778951 13.752211 -4395 0.059240 0.044437 12.876406 16.957047 -4396 0.118492 0.067534 11.521899 13.458466 -4397 0.091484 0.097843 11.444520 10.658631 -4398 0.047667 0.020754 10.961211 16.778376 -4399 0.055370 0.024095 13.320969 15.256073 -4400 0.099705 0.091322 12.729929 12.234459 -4401 0.085353 0.068477 12.075536 14.431524 -4402 0.032711 0.011448 8.888473 10.451763 -4403 0.077900 0.029165 7.746583 15.272549 -4404 0.091874 0.106651 12.919434 20.727618 -4405 0.075047 0.055145 13.264638 11.440822 -4406 0.069001 0.052105 11.242634 15.971243 -4407 0.030794 0.027537 5.209241 8.408088 -4408 0.063534 0.028067 6.379122 9.897662 -4409 0.098660 0.081294 10.814415 12.968220 -4410 0.075291 0.037015 8.980122 13.469029 -4411 0.154135 0.068481 10.667397 12.066397 -4412 0.057782 0.034233 7.959458 11.838758 -4413 0.090713 0.072256 9.025605 10.415912 -4414 0.080948 0.057553 9.110657 11.311150 -4415 0.080511 0.039277 7.766352 9.698507 -4416 0.125499 0.122651 13.759424 16.535660 -4417 0.077433 0.048535 12.433746 15.589355 -4418 0.060875 0.029428 9.634694 8.425097 -4419 0.060807 0.030191 5.114042 9.189416 -4420 0.094388 0.057082 12.549158 17.133413 -4421 0.069476 0.050550 6.011087 7.576443 -4422 0.150097 0.125604 17.066660 20.869316 -4423 0.093322 0.081908 7.040041 11.606775 -4424 0.072282 0.047772 11.485567 18.601712 -4425 0.078695 0.066680 6.066368 7.017805 -4426 0.086748 0.041506 9.031261 15.059203 -4427 0.061473 0.024746 6.966658 8.433673 -4428 0.073358 0.036026 9.368854 13.277445 -4429 0.070977 0.052212 11.064988 15.663886 -4430 0.073135 0.063634 11.798280 19.266459 -4431 0.098594 0.059815 10.200910 12.229253 -4432 0.091206 0.043579 6.968698 10.520788 -4433 0.093602 0.080467 11.502113 17.970108 -4434 0.076879 0.113201 13.777079 14.864442 -4435 0.078014 0.044946 7.942565 13.514294 -4436 0.089963 0.050723 11.173390 16.979808 -4437 0.037583 0.015235 7.399444 13.563459 -4438 0.068501 0.041151 10.885915 13.403072 -4439 0.097578 0.059481 8.188837 11.990929 -4440 0.074058 0.040316 7.803530 13.125064 -4441 0.073198 0.069848 10.966475 11.441520 -4442 0.056086 0.045886 7.492666 11.370710 -4443 0.069480 0.048349 7.948483 9.352636 -4444 0.062404 0.032990 6.658833 8.670530 -4445 0.047387 0.042914 7.558746 11.185340 -4446 0.045572 0.022634 6.927946 11.890798 -4447 0.063002 0.036107 11.011534 13.242668 -4448 0.096074 0.046822 14.121486 11.178864 -4449 0.029794 0.023881 7.319665 10.180466 -4450 0.125431 0.084312 7.768774 12.071023 -4451 0.068447 0.032592 8.934187 7.834601 -4452 0.064015 0.068955 10.379804 14.279286 -4453 0.086262 0.043411 7.566862 9.504706 -4454 0.049896 0.029032 7.559686 8.450351 -4455 0.105614 0.051902 10.685483 12.831867 -4456 0.106554 0.053445 6.982243 10.525257 -4457 0.048070 0.041324 7.317483 9.557857 -4458 0.056748 0.038907 9.855157 9.661440 -4459 0.048549 0.024647 9.046123 13.581789 -4460 0.038485 0.027094 8.234942 10.455415 -4461 0.116702 0.061713 9.497757 9.692072 -4462 0.059932 0.023703 8.708967 14.857746 -4463 0.058855 0.050413 8.901385 12.755308 -4464 0.089556 0.051180 10.167389 15.539726 -4465 0.079647 0.050521 10.055925 12.800863 -4466 0.051545 0.032340 7.257867 9.694312 -4467 0.112108 0.057183 5.828687 9.428416 -4468 0.125367 0.064164 12.737168 15.003087 -4469 0.110948 0.062828 9.550238 9.811223 -4470 0.096393 0.063180 6.885796 16.123576 -4471 0.051048 0.045127 13.387445 20.197474 -4472 0.071878 0.025907 10.961252 11.105516 -4473 0.102373 0.033115 12.483534 14.237667 -4474 0.131511 0.070745 9.941781 19.264015 -4475 0.048315 0.037600 8.005146 11.956568 -4476 0.101667 0.060714 6.944812 13.719968 -4477 0.105635 0.052909 14.264095 14.107363 -4478 0.054863 0.025642 6.951049 9.465981 -4479 0.060234 0.035887 17.594959 13.762734 -4480 0.096127 0.062796 10.082160 11.741124 -4481 0.053857 0.030025 13.561943 19.969158 -4482 0.097402 0.048933 8.239476 16.390412 -4483 0.062506 0.053996 8.612345 12.569469 -4484 0.083194 0.064433 7.336472 11.777134 -4485 0.079470 0.065777 10.384774 17.916340 -4486 0.110439 0.081509 12.586427 15.423133 -4487 0.095053 0.029772 10.319504 12.701132 -4488 0.079243 0.037511 6.395049 14.664350 -4489 0.063614 0.040188 11.038393 10.805494 -4490 0.110435 0.035116 14.694131 18.205677 -4491 0.094365 0.044007 7.137356 9.139371 -4492 0.054067 0.027901 6.891618 9.995622 -4493 0.081334 0.061670 10.619833 9.630187 -4494 0.052975 0.035257 12.397633 11.526894 -4495 0.111021 0.059519 11.578151 19.667586 -4496 0.114640 0.045053 9.755165 9.485691 -4497 0.101989 0.077732 11.059664 14.562359 -4498 0.091809 0.052916 9.929269 11.939695 -4499 0.070889 0.038177 9.208387 11.705809 -4500 0.072986 0.043664 8.168478 8.381345 -4501 0.190240 0.072326 11.285353 12.819737 -4502 0.086406 0.093985 12.273033 11.161831 -4503 0.068880 0.029948 11.688239 13.345792 -4504 0.072388 0.068223 12.108296 16.638868 -4505 0.075962 0.065459 13.208335 13.417071 -4506 0.110512 0.056048 6.749073 7.657419 -4507 0.054895 0.037919 12.567940 16.153482 -4508 0.116413 0.077149 12.738716 15.251842 -4509 0.117268 0.154960 13.668674 15.566342 -4510 0.059414 0.040519 8.313185 13.352063 -4511 0.061015 0.037172 10.341778 11.045747 -4512 0.068033 0.059180 7.592273 13.169797 -4513 0.098964 0.077791 6.599344 13.391806 -4514 0.087836 0.054052 11.983100 10.232230 -4515 0.049970 0.035688 9.924682 11.453716 -4516 0.092308 0.047507 10.579502 14.759358 -4517 0.158556 0.058863 10.699588 12.215599 -4518 0.074168 0.058127 10.091617 12.632652 -4519 0.143542 0.052995 12.158942 12.552191 -4520 0.076140 0.051351 12.329735 15.397061 -4521 0.057714 0.045337 7.671169 8.852013 -4522 0.063137 0.050157 10.542301 8.790712 -4523 0.096083 0.063502 12.861563 16.069258 -4524 0.107083 0.046162 14.146877 13.334343 -4525 0.095084 0.064720 13.465139 17.790345 -4526 0.072384 0.053998 7.539499 11.789759 -4527 0.117438 0.049191 11.989905 16.449545 -4528 0.102716 0.052106 8.469458 10.566331 -4529 0.072279 0.047942 10.647366 16.154595 -4530 0.058309 0.028636 11.495789 14.973591 -4531 0.088039 0.052197 14.968519 12.599395 -4532 0.068018 0.030472 7.044815 10.579197 -4533 0.112626 0.086650 8.336789 13.446199 -4534 0.073662 0.048444 9.590664 13.015976 -4535 0.083546 0.062488 8.143965 9.607842 -4536 0.051251 0.026356 9.075510 15.035924 -4537 0.039082 0.023223 6.140645 9.870595 -4538 0.074617 0.046290 9.514004 8.971307 -4539 0.058813 0.023948 10.083335 11.848267 -4540 0.070130 0.028231 5.965205 9.038859 -4541 0.073883 0.035573 9.631643 9.718917 -4542 0.069798 0.040186 14.456882 18.710435 -4543 0.094614 0.037663 6.712213 9.656226 -4544 0.093929 0.062161 11.126992 13.598921 -4545 0.076781 0.044596 8.185177 10.294905 -4546 0.074133 0.031529 13.968146 18.537427 -4547 0.063111 0.042077 13.810175 14.928837 -4548 0.065618 0.055293 8.561152 15.923451 -4549 0.055804 0.035632 11.455935 15.334715 -4550 0.143530 0.078477 16.053193 16.486685 -4551 0.038788 0.032454 5.931053 9.149986 -4552 0.091331 0.080916 7.085579 9.804272 -4553 0.068569 0.044379 7.863959 12.908477 -4554 0.042729 0.033035 7.975824 10.030507 -4555 0.114962 0.081397 12.375315 15.445192 -4556 0.084012 0.070670 14.578284 12.623297 -4557 0.101719 0.068007 10.191162 16.390896 -4558 0.056499 0.038688 10.261599 11.526295 -4559 0.117704 0.084632 8.872050 14.840044 -4560 0.119417 0.081322 7.172609 10.826760 -4561 0.072302 0.047693 9.069910 13.633898 -4562 0.075857 0.035821 8.168559 10.633705 -4563 0.042419 0.036322 10.721483 10.415754 -4564 0.081137 0.041211 10.185430 13.115967 -4565 0.068426 0.049425 9.490613 12.030123 -4566 0.066125 0.030834 7.644381 11.001751 -4567 0.089488 0.067329 11.943080 18.157344 -4568 0.051325 0.029848 6.605825 9.073810 -4569 0.104052 0.055549 9.992086 14.597179 -4570 0.151718 0.108450 12.214948 13.646278 -4571 0.069212 0.026744 9.194128 10.654722 -4572 0.086456 0.038171 8.083160 15.258866 -4573 0.065714 0.030552 7.464125 9.724805 -4574 0.090352 0.068265 15.047652 17.533439 -4575 0.054338 0.064022 7.873793 11.792743 -4576 0.118666 0.102779 12.960407 8.279060 -4577 0.061281 0.042786 10.526786 13.535002 -4578 0.098988 0.104803 9.886172 15.293099 -4579 0.090263 0.056209 11.247634 11.931123 -4580 0.096580 0.036670 11.181871 16.475647 -4581 0.096644 0.044781 9.596246 15.745751 -4582 0.078393 0.058132 9.923944 13.795127 -4583 0.085133 0.084725 12.829024 14.416874 -4584 0.076878 0.049315 9.949085 11.424444 -4585 0.076124 0.054377 11.365837 16.179239 -4586 0.168892 0.064699 10.920232 11.937294 -4587 0.117436 0.087755 12.163389 12.641745 -4588 0.088934 0.060090 13.825246 17.800373 -4589 0.054445 0.040221 12.883865 21.072879 -4590 0.055372 0.030487 9.964269 12.316375 -4591 0.048462 0.041886 12.760369 12.102329 -4592 0.067650 0.042381 8.301665 10.614337 -4593 0.095566 0.037013 7.466729 10.700416 -4594 0.122432 0.057299 12.431158 13.335317 -4595 0.098177 0.050693 8.780870 13.600370 -4596 0.067698 0.026156 9.957725 14.326612 -4597 0.053822 0.035576 9.420003 9.230100 -4598 0.062264 0.033767 7.295125 10.319632 -4599 0.059360 0.026938 6.775373 7.447531 -4600 0.079281 0.040186 9.889467 6.338745 -4601 0.109914 0.062875 15.707867 18.208460 -4602 0.069296 0.043336 10.131013 16.489444 -4603 0.077886 0.061469 9.721281 15.860250 -4604 0.055330 0.029527 10.102937 9.423341 -4605 0.064911 0.024918 6.889305 10.880474 -4606 0.113183 0.078068 8.725515 11.512870 -4607 0.040205 0.044092 8.660058 11.767221 -4608 0.036104 0.029378 8.161589 11.589324 -4609 0.055214 0.035669 8.437585 12.387340 -4610 0.073395 0.060919 11.809182 13.880994 -4611 0.056716 0.054212 7.020404 14.322122 -4612 0.119024 0.066296 12.350120 14.798013 -4613 0.072552 0.059817 10.841219 11.976603 -4614 0.064022 0.040050 9.930130 10.202032 -4615 0.099548 0.080599 11.271896 16.299723 -4616 0.137519 0.142663 12.923080 18.336172 -4617 0.043563 0.020464 9.158034 11.182866 -4618 0.080324 0.057859 6.919051 9.349559 -4619 0.046777 0.038754 9.160837 11.557348 -4620 0.041972 0.043589 8.537297 9.810085 -4621 0.047376 0.033263 7.400741 11.378875 -4622 0.075254 0.045756 9.545573 11.541856 -4623 0.076635 0.069223 12.652413 14.388199 -4624 0.064828 0.039023 9.797626 13.693042 -4625 0.039766 0.032242 7.507842 6.081679 -4626 0.048881 0.023052 6.170011 14.201384 -4627 0.066865 0.067785 11.010001 15.901661 -4628 0.066046 0.033025 12.182069 11.019311 -4629 0.048773 0.034777 9.014984 10.982919 -4630 0.111851 0.047015 15.174537 17.959277 -4631 0.065494 0.058967 16.274035 18.403249 -4632 0.047617 0.033393 8.563109 11.315955 -4633 0.081362 0.024547 8.073693 6.684134 -4634 0.068794 0.029794 8.318855 14.481156 -4635 0.035347 0.032044 8.946575 9.150315 -4636 0.075288 0.043485 10.831991 14.361040 -4637 0.090000 0.030716 9.493734 10.063930 -4638 0.085916 0.056699 10.228621 16.405161 -4639 0.062871 0.051703 10.867701 14.975691 -4640 0.126150 0.097492 8.463073 12.625916 -4641 0.075482 0.043882 6.647068 11.103344 -4642 0.084139 0.053394 15.063216 14.513311 -4643 0.096045 0.053444 10.634883 15.446631 -4644 0.083002 0.089326 7.563057 10.635684 -4645 0.066707 0.029422 5.810067 10.040157 -4646 0.104949 0.070128 7.569990 13.818897 -4647 0.056339 0.034094 7.220219 8.620824 -4648 0.089067 0.050938 13.005675 13.716900 -4649 0.093075 0.065557 9.783957 14.225764 -4650 0.052761 0.032891 12.300058 19.016391 -4651 0.071879 0.030798 7.731063 11.589771 -4652 0.096911 0.030966 10.696011 10.482998 -4653 0.046085 0.030066 11.518522 15.088304 -4654 0.093710 0.065650 9.468652 13.818385 -4655 0.047510 0.032801 7.997807 12.164802 -4656 0.153204 0.075363 10.790313 21.723997 -4657 0.063499 0.060555 9.609415 10.874950 -4658 0.115372 0.078378 14.334708 11.338405 -4659 0.081000 0.031658 11.744967 14.030695 -4660 0.064445 0.066066 10.117807 13.334126 -4661 0.066831 0.036976 7.385307 12.464313 -4662 0.140850 0.108297 15.404615 19.408888 -4663 0.081034 0.043277 7.565573 10.064457 -4664 0.050252 0.034643 8.991613 11.206175 -4665 0.033117 0.027928 9.335751 9.922263 -4666 0.037486 0.026951 14.627458 16.300242 -4667 0.090356 0.044370 9.170825 17.750150 -4668 0.057783 0.037657 10.439813 14.704506 -4669 0.052228 0.031582 5.794828 7.185659 -4670 0.085147 0.038611 11.536902 13.930754 -4671 0.052090 0.022587 10.718394 11.505899 -4672 0.076751 0.047066 13.207467 10.807152 -4673 0.056688 0.031961 12.929718 15.543829 -4674 0.122378 0.079702 7.717676 10.223882 -4675 0.061563 0.023549 13.867917 13.886374 -4676 0.125999 0.080395 7.709221 10.564156 -4677 0.097174 0.056023 9.858668 12.857568 -4678 0.062960 0.025888 9.453930 10.825269 -4679 0.061893 0.033143 11.820377 14.863948 -4680 0.062327 0.034575 7.651515 10.137942 -4681 0.063619 0.052230 11.945598 10.800274 -4682 0.071933 0.026582 7.482917 10.342123 -4683 0.114120 0.097734 9.267277 13.390990 -4684 0.054850 0.035923 9.326263 13.429456 -4685 0.135816 0.126265 10.985320 12.634459 -4686 0.057423 0.034051 7.578099 15.407946 -4687 0.125186 0.098577 11.977878 17.653389 -4688 0.079448 0.037913 6.900686 10.290625 -4689 0.078987 0.050997 14.057153 13.033913 -4690 0.137415 0.119805 7.954501 10.811832 -4691 0.051482 0.033190 8.453586 10.053015 -4692 0.062303 0.033511 8.481615 9.958906 -4693 0.068763 0.039161 11.858971 13.123069 -4694 0.077678 0.048670 8.999855 12.157668 -4695 0.070216 0.043914 12.649731 12.961745 -4696 0.091844 0.029657 7.704110 12.554322 -4697 0.103159 0.064530 18.033551 13.647144 -4698 0.083252 0.079148 8.320131 10.655962 -4699 0.088157 0.045114 7.613336 12.620982 -4700 0.067691 0.033972 9.915016 11.977648 -4701 0.064722 0.030955 7.391010 11.979692 -4702 0.101093 0.080907 7.367084 8.531003 -4703 0.139576 0.046126 10.785975 11.731784 -4704 0.056342 0.022334 10.916318 12.639699 -4705 0.068813 0.037746 10.873087 13.580176 -4706 0.051038 0.034935 7.440608 11.857120 -4707 0.098952 0.060597 8.169168 13.203872 -4708 0.066879 0.048421 13.928818 16.376334 -4709 0.053059 0.017682 10.397284 12.284548 -4710 0.077384 0.053071 8.582839 9.607334 -4711 0.076565 0.041590 5.766270 6.317571 -4712 0.082753 0.077580 11.225196 11.500868 -4713 0.082279 0.044681 8.873135 12.039865 -4714 0.100456 0.059467 9.167167 12.398495 -4715 0.102279 0.067690 14.790522 21.544570 -4716 0.098573 0.061169 9.773672 15.357726 -4717 0.096918 0.037054 9.632137 17.290337 -4718 0.043283 0.025428 13.227729 10.971703 -4719 0.066297 0.034312 12.713963 12.409265 -4720 0.061867 0.061419 10.018385 15.964877 -4721 0.148692 0.114521 11.663607 17.567407 -4722 0.150862 0.081735 13.054969 17.790608 -4723 0.104191 0.059629 10.296585 13.011948 -4724 0.130641 0.073123 12.044924 11.232698 -4725 0.065252 0.025107 10.556244 20.210956 -4726 0.079148 0.025511 9.302223 10.541982 -4727 0.057822 0.032989 7.477024 9.605273 -4728 0.120896 0.076134 11.587522 11.043230 -4729 0.064094 0.020702 6.075553 9.246508 -4730 0.041927 0.030468 9.448294 10.358245 -4731 0.071975 0.066496 8.025000 16.758938 -4732 0.077095 0.034109 8.598820 10.784326 -4733 0.046946 0.022878 7.242594 7.729462 -4734 0.060482 0.067148 9.419375 16.414517 -4735 0.068180 0.025681 10.328284 10.104039 -4736 0.079325 0.045538 7.808063 9.143178 -4737 0.071407 0.051190 8.555246 12.898357 -4738 0.084609 0.048928 8.420121 14.029443 -4739 0.074655 0.033820 9.294383 13.277353 -4740 0.039930 0.017054 5.489815 8.272456 -4741 0.072013 0.051178 12.932511 14.151013 -4742 0.051535 0.028653 9.500046 10.770297 -4743 0.071770 0.045761 9.448150 9.699388 -4744 0.057058 0.026006 6.471807 10.859736 -4745 0.055123 0.037188 8.888087 8.185160 -4746 0.123351 0.105684 15.562419 20.841047 -4747 0.063238 0.038577 11.483358 12.527871 -4748 0.081979 0.045359 9.471756 15.921495 -4749 0.079864 0.036533 9.255318 16.629702 -4750 0.056248 0.036142 9.638575 7.371248 -4751 0.074996 0.051425 8.852043 12.037072 -4752 0.079429 0.062010 8.097034 13.246630 -4753 0.054029 0.027546 8.154045 12.800161 -4754 0.061830 0.035625 9.152536 15.756634 -4755 0.082881 0.047006 12.622304 19.510671 -4756 0.060063 0.026285 8.427066 11.127192 -4757 0.068974 0.034502 7.569869 13.801005 -4758 0.061135 0.024965 10.028205 12.150943 -4759 0.037437 0.020149 5.741799 7.859700 -4760 0.130790 0.075368 12.707618 13.957662 -4761 0.055264 0.055305 8.150301 9.565583 -4762 0.072517 0.050307 9.931104 9.935890 -4763 0.099121 0.096175 12.820025 17.156201 -4764 0.049147 0.028170 11.199779 15.029320 -4765 0.068815 0.045223 9.972355 12.889526 -4766 0.073628 0.038641 6.670776 10.456740 -4767 0.106791 0.084163 10.950796 12.325491 -4768 0.053046 0.025669 8.694828 10.713068 -4769 0.056461 0.036157 7.631717 7.264532 -4770 0.086712 0.079536 9.730692 18.359859 -4771 0.052170 0.029589 7.231944 7.962789 -4772 0.047545 0.021951 9.468403 10.781935 -4773 0.174327 0.117974 17.787428 22.710485 -4774 0.135098 0.098631 10.786671 12.260714 -4775 0.099830 0.039518 9.734488 11.396078 -4776 0.087996 0.045960 8.569809 16.445683 -4777 0.092027 0.053269 11.299372 9.435988 -4778 0.099285 0.053853 9.251875 11.499938 -4779 0.092738 0.041777 7.647147 12.289861 -4780 0.117505 0.118966 10.188984 12.188329 -4781 0.106106 0.053026 11.084674 11.898418 -4782 0.056809 0.034427 12.548957 14.889017 -4783 0.109117 0.088805 11.921900 14.406671 -4784 0.069146 0.047304 8.868096 10.898131 -4785 0.076178 0.034735 8.921808 12.716232 -4786 0.092338 0.051225 10.581933 20.713685 -4787 0.049759 0.036373 11.773990 12.490924 -4788 0.051996 0.027851 9.697680 16.449708 -4789 0.072080 0.045304 8.222908 10.257637 -4790 0.109438 0.080134 13.641779 18.186554 -4791 0.083055 0.059547 19.163388 19.353059 -4792 0.067959 0.045219 8.868184 11.333872 -4793 0.060969 0.045448 9.787018 12.258561 -4794 0.111913 0.068502 7.605970 9.181386 -4795 0.080637 0.063984 8.389369 10.598629 -4796 0.114734 0.061481 7.039140 8.712185 -4797 0.150245 0.070018 12.422798 16.508262 -4798 0.076063 0.057612 8.819620 11.262523 -4799 0.087411 0.043283 9.195383 9.420922 -4800 0.168048 0.099884 11.497840 16.902780 -4801 0.061421 0.018843 9.182657 15.847455 -4802 0.049426 0.034079 10.556893 17.569198 -4803 0.100914 0.052772 9.385879 12.822806 -4804 0.039561 0.031861 7.502571 12.725338 -4805 0.097053 0.031238 9.753683 10.196420 -4806 0.062503 0.056575 11.718577 16.478737 -4807 0.069015 0.047274 10.624124 13.469749 -4808 0.091339 0.047607 15.316253 14.375742 -4809 0.105673 0.074959 9.999798 15.127788 -4810 0.108513 0.057477 9.476361 13.760691 -4811 0.100407 0.055534 8.341978 14.283606 -4812 0.055210 0.039842 9.277342 14.673228 -4813 0.086637 0.037806 9.963477 22.826311 -4814 0.079758 0.050553 15.828707 16.358651 -4815 0.078096 0.043106 7.726642 12.094326 -4816 0.053492 0.030216 6.394329 6.166212 -4817 0.057517 0.040159 12.357054 16.024295 -4818 0.083302 0.037137 8.986025 12.655732 -4819 0.102431 0.043930 11.409215 19.686046 -4820 0.078549 0.047447 7.031352 12.592699 -4821 0.128741 0.071743 11.991629 10.560626 -4822 0.108046 0.097036 9.066291 10.147561 -4823 0.055323 0.022591 8.529343 12.399946 -4824 0.070656 0.035191 7.963543 10.858257 -4825 0.070823 0.036613 7.828434 14.693906 -4826 0.050231 0.033148 10.500098 8.297301 -4827 0.069626 0.058867 10.982967 14.414806 -4828 0.067342 0.022432 12.789439 10.150094 -4829 0.091672 0.068117 9.162339 13.033257 -4830 0.111420 0.050961 8.940637 12.824480 -4831 0.058383 0.022567 9.223677 11.252009 -4832 0.051783 0.021539 10.789635 17.515708 -4833 0.078260 0.037316 9.352450 12.916345 -4834 0.052191 0.033237 14.507607 14.883977 -4835 0.063796 0.039270 7.361445 10.745944 -4836 0.104323 0.075782 12.011481 11.864933 -4837 0.096171 0.044228 7.605509 14.773933 -4838 0.047633 0.027345 7.605246 14.281670 -4839 0.074594 0.040516 9.830468 14.841084 -4840 0.058291 0.030569 6.763460 10.221414 -4841 0.076878 0.035260 11.573920 14.271978 -4842 0.094797 0.033763 6.319816 10.394682 -4843 0.101083 0.073904 10.600584 12.321609 -4844 0.063047 0.036122 7.628501 8.579115 -4845 0.049033 0.044238 8.460655 10.802765 -4846 0.047200 0.024162 11.222676 10.509067 -4847 0.068594 0.027025 9.762842 16.168132 -4848 0.045013 0.032528 7.106917 7.896876 -4849 0.046856 0.039792 10.860455 11.083592 -4850 0.100135 0.035452 13.276092 17.454630 -4851 0.090667 0.044139 13.378222 18.058167 -4852 0.067863 0.049611 8.894487 16.464009 -4853 0.102554 0.050802 10.932574 13.121701 -4854 0.059195 0.024225 7.188289 11.773236 -4855 0.077466 0.079295 10.954106 9.743749 -4856 0.064470 0.023271 11.932943 12.190347 -4857 0.066505 0.066646 7.441555 7.983496 -4858 0.088895 0.055090 9.481444 10.182199 -4859 0.054119 0.050656 10.885066 12.589823 -4860 0.090822 0.059219 6.583149 10.009374 -4861 0.057176 0.039746 10.896147 11.838219 -4862 0.091219 0.069433 9.185322 10.938351 -4863 0.078532 0.041879 12.777817 21.580863 -4864 0.072404 0.072833 5.550583 9.800779 -4865 0.076626 0.040952 11.584141 12.072381 -4866 0.104041 0.054559 14.989431 21.810124 -4867 0.100661 0.054974 12.708024 13.825978 -4868 0.038284 0.023490 9.661710 19.806592 -4869 0.111306 0.069100 12.337993 11.805319 -4870 0.088477 0.078672 13.091643 17.438189 -4871 0.059676 0.043432 9.842397 9.834960 -4872 0.102310 0.069870 8.715476 8.658972 -4873 0.069534 0.056051 12.158609 23.223564 -4874 0.063307 0.040376 6.653654 7.526820 -4875 0.057977 0.033696 9.819835 18.254936 -4876 0.041633 0.020408 8.376720 8.799256 -4877 0.096631 0.058397 11.466062 17.556297 -4878 0.075104 0.047229 7.310985 10.046990 -4879 0.076820 0.063842 8.343589 13.250012 -4880 0.116032 0.065167 10.304071 17.069597 -4881 0.091797 0.063577 12.391713 19.712531 -4882 0.097622 0.040798 14.724554 17.778782 -4883 0.061059 0.054958 8.510863 8.031349 -4884 0.054837 0.038579 8.156092 9.273487 -4885 0.083717 0.047923 14.117790 18.448409 -4886 0.063257 0.025243 15.139030 13.451903 -4887 0.052092 0.032147 10.247086 9.556412 -4888 0.041296 0.048876 8.023703 12.981134 -4889 0.071405 0.037674 8.156954 11.493666 -4890 0.091899 0.068541 12.134182 13.661064 -4891 0.170367 0.074179 7.497653 15.426690 -4892 0.107530 0.049466 13.897832 16.678520 -4893 0.091470 0.051253 6.369540 11.392558 -4894 0.067574 0.058934 9.512955 12.560833 -4895 0.089525 0.050421 10.240380 14.653299 -4896 0.074110 0.058662 7.829979 15.804199 -4897 0.097137 0.069313 14.398588 12.084798 -4898 0.057080 0.030955 9.408139 14.639350 -4899 0.076694 0.048757 8.920986 12.220894 -4900 0.084641 0.042626 7.493771 8.778672 -4901 0.053130 0.023529 8.459140 9.863288 -4902 0.068663 0.039309 6.668620 13.200271 -4903 0.063791 0.047117 10.773506 14.392019 -4904 0.066577 0.034961 9.289120 10.516253 -4905 0.051113 0.022082 8.509162 10.220345 -4906 0.095937 0.083638 9.854527 11.067666 -4907 0.089607 0.032493 9.374816 14.556000 -4908 0.114294 0.082035 6.075014 8.719589 -4909 0.061932 0.022511 12.024389 15.942285 -4910 0.086870 0.048333 10.364799 13.815696 -4911 0.050587 0.029360 7.370824 10.603566 -4912 0.071563 0.050572 8.111150 7.647892 -4913 0.132319 0.088292 11.558783 15.720325 -4914 0.066156 0.028671 7.607565 14.946326 -4915 0.069230 0.026254 9.025415 12.191671 -4916 0.078802 0.079314 11.080302 18.127056 -4917 0.066976 0.021762 8.339463 12.567033 -4918 0.062354 0.033629 7.058893 10.237537 -4919 0.045223 0.029084 5.175872 6.587299 -4920 0.062680 0.043308 8.283707 9.233330 -4921 0.111612 0.061320 9.013874 14.180752 -4922 0.132642 0.049798 9.817905 7.354942 -4923 0.109580 0.054751 14.048278 19.840201 -4924 0.055300 0.027274 8.277079 13.402354 -4925 0.086681 0.043288 11.702462 12.992592 -4926 0.068194 0.037455 9.496959 13.977135 -4927 0.071902 0.046606 11.130782 14.012798 -4928 0.099294 0.052718 17.584381 15.589117 -4929 0.151328 0.130270 14.069817 24.109559 -4930 0.068071 0.046455 11.446563 14.414295 -4931 0.078531 0.028260 11.231241 12.146473 -4932 0.050703 0.027362 7.742690 10.987350 -4933 0.135790 0.056155 15.562216 15.206731 -4934 0.093079 0.050277 16.266674 19.746810 -4935 0.051645 0.031104 12.329483 19.393959 -4936 0.048251 0.022736 11.293848 12.437399 -4937 0.065439 0.035194 11.580168 14.693062 -4938 0.032625 0.020829 7.706858 11.532527 -4939 0.085243 0.032681 9.801201 12.660376 -4940 0.037643 0.033856 11.205449 14.088511 -4941 0.054341 0.033000 8.749705 10.793753 -4942 0.041703 0.027950 8.102308 8.371965 -4943 0.070431 0.033438 13.384699 13.527404 -4944 0.107161 0.061136 11.042129 15.683308 -4945 0.082565 0.033293 11.994587 9.940138 -4946 0.051219 0.019716 7.960436 14.777696 -4947 0.080556 0.057288 10.009709 11.502733 -4948 0.057063 0.026929 7.251749 8.626847 -4949 0.124825 0.079053 9.998337 13.698433 -4950 0.086598 0.059975 13.326588 16.362154 -4951 0.076065 0.065819 11.691713 14.568261 -4952 0.063151 0.043840 8.085822 10.532141 -4953 0.078256 0.053483 10.895914 14.011604 -4954 0.048930 0.033018 8.284686 8.841475 -4955 0.097223 0.044646 8.541288 9.360313 -4956 0.057588 0.039021 9.502137 9.687198 -4957 0.087261 0.051015 7.155874 15.457045 -4958 0.097982 0.075410 10.237582 16.648035 -4959 0.088050 0.060505 11.608472 14.160151 -4960 0.092900 0.048381 11.746149 9.220327 -4961 0.053175 0.047537 10.783871 17.975391 -4962 0.071078 0.041857 6.705341 7.905042 -4963 0.072424 0.050023 16.085625 20.610092 -4964 0.099164 0.037991 9.416486 14.117461 -4965 0.077977 0.044069 10.558061 12.395309 -4966 0.071685 0.064824 11.505130 14.406533 -4967 0.079828 0.057158 11.276556 11.302689 -4968 0.097650 0.064422 11.380222 11.463302 -4969 0.055627 0.027684 6.108032 9.557103 -4970 0.045304 0.030219 6.607884 6.484066 -4971 0.047489 0.033121 7.566704 14.523304 -4972 0.074870 0.057512 8.927903 13.971792 -4973 0.054998 0.044185 10.528526 8.416145 -4974 0.050402 0.028338 8.355589 11.169046 -4975 0.094502 0.094711 8.625923 13.370907 -4976 0.142758 0.066617 11.448668 15.363632 -4977 0.056061 0.077471 9.363903 14.699951 -4978 0.078785 0.041269 8.173631 9.637227 -4979 0.064298 0.035777 7.219741 9.050735 -4980 0.040565 0.025229 11.406298 18.106844 -4981 0.047965 0.032512 11.638160 9.968468 -4982 0.074271 0.040251 8.793577 10.764689 -4983 0.044419 0.026663 11.599090 13.263416 -4984 0.090927 0.040436 13.190563 12.741327 -4985 0.065019 0.034641 7.345158 9.330481 -4986 0.048329 0.023398 13.158735 13.787313 -4987 0.081827 0.083172 6.780163 10.109704 -4988 0.045918 0.031327 6.490889 8.896169 -4989 0.089430 0.078774 14.711582 19.353778 -4990 0.068922 0.044837 12.870663 13.384286 -4991 0.081170 0.053744 7.438318 9.762568 -4992 0.091376 0.040062 6.461413 8.314988 -4993 0.088529 0.060128 8.400064 13.307099 -4994 0.058973 0.045959 8.837663 11.238923 -4995 0.064480 0.072739 10.500811 17.301625 -4996 0.062524 0.032223 10.973557 17.193489 -4997 0.074713 0.052114 11.062680 12.744270 -4998 0.076129 0.052735 9.694188 14.352663 -4999 0.044674 0.019601 7.741785 7.497870 -5000 0.048888 0.028235 8.438464 11.979282 -5001 0.103427 0.073741 9.105090 9.973870 -5002 0.068558 0.071319 9.107281 10.119169 -5003 0.096841 0.045563 9.154266 10.067080 -5004 0.078294 0.038749 6.152942 8.112921 -5005 0.052123 0.035815 5.772335 9.946307 -5006 0.045989 0.035290 5.951215 11.889906 -5007 0.079708 0.030535 13.421508 18.997275 -5008 0.067412 0.059250 10.799251 12.699652 -5009 0.065083 0.042935 7.052127 10.585416 -5010 0.060823 0.033019 10.615651 14.301233 -5011 0.071012 0.069011 15.348559 14.417523 -5012 0.057134 0.028575 7.274345 11.250572 -5013 0.133610 0.096870 13.671573 21.818867 -5014 0.054809 0.042328 8.290010 7.714855 -5015 0.097745 0.041511 9.342588 12.534655 -5016 0.085132 0.048529 11.773202 10.617114 -5017 0.038849 0.019289 9.649298 12.009046 -5018 0.090124 0.051534 8.275607 13.745330 -5019 0.099852 0.060499 14.567971 12.179461 -5020 0.076095 0.050924 9.926767 11.488484 -5021 0.041848 0.037057 6.217734 8.964060 -5022 0.084702 0.071240 11.072220 17.557884 -5023 0.063756 0.036450 12.056661 15.583096 -5024 0.078020 0.028241 6.785983 10.269297 -5025 0.092601 0.061076 7.583939 13.043274 -5026 0.112048 0.048944 11.193035 19.160033 -5027 0.066368 0.026485 6.356206 12.875613 -5028 0.046853 0.017199 6.076424 7.758109 -5029 0.130139 0.095122 13.345331 21.205055 -5030 0.051727 0.038431 8.082486 15.605296 -5031 0.079528 0.044991 10.581106 12.103223 -5032 0.064892 0.052452 11.954062 16.897176 -5033 0.128127 0.083269 11.636186 16.196829 -5034 0.061016 0.048433 9.949541 10.712913 -5035 0.090923 0.043500 13.744952 20.447187 -5036 0.074395 0.068229 8.610849 9.066032 -5037 0.101701 0.066288 8.046107 15.889164 -5038 0.063428 0.060704 8.788935 9.861231 -5039 0.062988 0.037436 6.880879 11.252969 -5040 0.071891 0.046006 8.890048 11.117448 -5041 0.081077 0.071440 9.357653 11.063207 -5042 0.098361 0.072580 8.782684 15.169965 -5043 0.070188 0.050282 8.728700 12.785418 -5044 0.105291 0.041926 11.882911 14.328322 -5045 0.113839 0.086059 12.428223 20.984537 -5046 0.072783 0.021425 8.558462 8.630661 -5047 0.125243 0.094848 10.311218 13.074950 -5048 0.091879 0.038887 9.670881 8.972481 -5049 0.046281 0.027037 8.135231 11.025668 -5050 0.048467 0.028791 8.465296 12.894283 -5051 0.057046 0.058685 9.384995 16.794219 -5052 0.053257 0.042764 9.854446 15.769318 -5053 0.074388 0.051807 9.784586 11.740960 -5054 0.062092 0.042905 7.526409 9.761434 -5055 0.060202 0.047361 8.985742 8.209155 -5056 0.128995 0.204336 11.897529 14.512042 -5057 0.081774 0.064282 11.399215 13.310408 -5058 0.110064 0.107466 9.093449 14.343422 -5059 0.057107 0.027132 8.450597 11.048815 -5060 0.074154 0.033668 8.879338 6.785207 -5061 0.101807 0.052033 12.053053 12.170119 -5062 0.076541 0.043298 14.229130 16.091933 -5063 0.098967 0.070990 7.596770 7.852542 -5064 0.044644 0.026520 9.112980 7.329229 -5065 0.088573 0.042209 8.366080 14.348177 -5066 0.046988 0.031143 10.142953 13.535333 -5067 0.053263 0.053490 10.039117 8.905621 -5068 0.062227 0.033001 9.540919 11.743096 -5069 0.058263 0.031576 9.343255 9.532883 -5070 0.116998 0.073147 5.771479 12.467616 -5071 0.071801 0.034001 7.772895 11.294802 -5072 0.075822 0.040544 6.630816 10.363119 -5073 0.062253 0.034037 9.087855 10.539602 -5074 0.064181 0.061235 13.504160 14.047163 -5075 0.075356 0.041521 11.423536 15.378043 -5076 0.060447 0.074552 9.435382 11.910851 -5077 0.050412 0.050126 12.032256 12.274675 -5078 0.079913 0.068145 10.816176 15.838110 -5079 0.134388 0.078645 10.727092 10.211604 -5080 0.073426 0.038941 8.859121 13.233074 -5081 0.076394 0.057655 9.251550 12.377073 -5082 0.118813 0.084603 13.964700 16.798596 -5083 0.049456 0.029764 9.148722 12.251604 -5084 0.104079 0.149682 15.027121 18.958538 -5085 0.186817 0.133409 9.737918 12.775683 -5086 0.074758 0.034565 7.486377 9.654029 -5087 0.109577 0.069940 9.818699 17.756776 -5088 0.054728 0.092728 16.355589 21.777734 -5089 0.106911 0.062653 12.095460 16.105106 -5090 0.079970 0.026349 10.596966 10.851663 -5091 0.064447 0.025698 12.078866 10.007539 -5092 0.068758 0.045017 8.315327 8.644042 -5093 0.057536 0.035065 11.588815 12.243901 -5094 0.075100 0.049001 9.196170 13.842666 -5095 0.066290 0.067552 17.877106 17.163956 -5096 0.097378 0.082167 7.378765 10.160797 -5097 0.054920 0.032667 8.143402 9.072974 -5098 0.064802 0.037110 7.243051 7.903606 -5099 0.047903 0.026233 11.776013 12.308452 -5100 0.056580 0.028689 4.801270 7.537441 -5101 0.088975 0.060424 7.837861 13.613120 -5102 0.120606 0.041146 7.427364 7.060747 -5103 0.052863 0.064590 8.442181 11.678639 -5104 0.079631 0.050781 9.078495 7.586216 -5105 0.069289 0.048963 9.028832 10.733936 -5106 0.108903 0.084586 13.270113 17.701647 -5107 0.078014 0.045428 9.209251 12.044774 -5108 0.047063 0.032260 6.095321 7.884944 -5109 0.080241 0.032908 9.180945 13.086837 -5110 0.091868 0.067769 11.177455 20.516212 -5111 0.055193 0.020622 9.522384 11.519314 -5112 0.155627 0.066259 8.157000 15.332568 -5113 0.037306 0.024990 8.958385 15.393957 -5114 0.060873 0.035270 7.851994 11.591293 -5115 0.057300 0.038642 5.997515 8.993985 -5116 0.073923 0.038600 5.610264 8.215642 -5117 0.096431 0.062600 15.790681 16.102160 -5118 0.063462 0.052619 9.193542 15.514327 -5119 0.115364 0.063366 12.035266 13.997298 -5120 0.057104 0.041768 12.130491 12.513492 -5121 0.044537 0.021900 7.780617 9.190489 -5122 0.059114 0.027732 7.138002 17.979173 -5123 0.086285 0.060848 20.799454 24.307126 -5124 0.085866 0.048436 13.247423 17.661481 -5125 0.064001 0.036287 10.455806 10.969650 -5126 0.061614 0.026056 8.313131 9.863516 -5127 0.052628 0.024165 7.508483 10.289583 -5128 0.079546 0.048466 10.643671 15.340012 -5129 0.080977 0.071133 7.607368 10.625803 -5130 0.059643 0.026041 6.756722 9.368329 -5131 0.078409 0.087374 7.526762 13.244504 -5132 0.081142 0.045781 12.660984 14.015845 -5133 0.088337 0.040411 8.865741 11.864191 -5134 0.125695 0.121923 11.802750 16.237094 -5135 0.054093 0.041302 9.477351 13.787616 -5136 0.072852 0.049826 10.606539 18.767541 -5137 0.070781 0.045154 10.272974 16.135436 -5138 0.074335 0.031579 7.795430 11.303611 -5139 0.057086 0.029520 9.138775 10.697321 -5140 0.065214 0.053919 8.080593 10.650554 -5141 0.092962 0.061381 18.798642 15.949083 -5142 0.070037 0.054794 21.475276 16.150265 -5143 0.058196 0.040519 12.086356 16.970350 -5144 0.051178 0.024008 11.948734 14.466709 -5145 0.080423 0.048392 7.758775 12.249614 -5146 0.112951 0.101549 17.171575 18.368688 -5147 0.074894 0.046073 10.421941 12.333505 -5148 0.053961 0.047401 10.349830 11.420811 -5149 0.082432 0.030573 11.763540 10.891353 -5150 0.122907 0.076776 15.688486 23.120144 -5151 0.056688 0.084486 9.151603 13.372690 -5152 0.053696 0.039428 8.153225 14.148967 -5153 0.071714 0.055496 15.567578 13.648228 -5154 0.060871 0.027913 5.117706 7.452341 -5155 0.078679 0.043974 9.585628 14.389217 -5156 0.076981 0.060445 8.501632 14.310580 -5157 0.059186 0.039320 5.821394 9.300746 -5158 0.051708 0.020736 8.298439 7.597805 -5159 0.047771 0.016843 11.081466 10.621639 -5160 0.056736 0.042613 10.431713 12.659004 -5161 0.112469 0.102012 9.983809 11.140278 -5162 0.054158 0.024408 6.679072 11.053702 -5163 0.059749 0.032000 8.156061 10.873927 -5164 0.108021 0.079192 13.243796 15.073564 -5165 0.048627 0.030999 9.427119 11.135842 -5166 0.050395 0.019997 5.903494 10.595773 -5167 0.071942 0.039485 8.426857 9.571223 -5168 0.055466 0.037450 8.205277 8.449071 -5169 0.075529 0.059956 14.199922 25.371295 -5170 0.044730 0.035011 11.155722 11.209932 -5171 0.038626 0.023570 8.697334 9.567543 -5172 0.084045 0.069243 16.211113 12.216355 -5173 0.076453 0.042205 9.098567 12.348985 -5174 0.086508 0.044428 8.120675 11.015951 -5175 0.071880 0.056553 9.218977 10.538246 -5176 0.064514 0.041583 12.399117 14.325346 -5177 0.059575 0.037709 7.408419 11.749625 -5178 0.043211 0.029692 8.735402 12.146332 -5179 0.062808 0.045989 10.101211 8.985618 -5180 0.062234 0.031954 13.079601 19.832637 -5181 0.078255 0.041240 7.139958 15.218275 -5182 0.058528 0.033071 6.989504 10.803514 -5183 0.087467 0.061143 9.981486 14.159393 -5184 0.098523 0.066587 8.558642 11.867956 -5185 0.058918 0.039594 10.152748 12.811918 -5186 0.085320 0.041759 7.087347 10.748415 -5187 0.079154 0.033500 7.787045 9.911666 -5188 0.087870 0.049590 5.833598 9.557812 -5189 0.107314 0.050601 17.002366 15.084350 -5190 0.057714 0.030659 17.128882 15.900558 -5191 0.057476 0.045387 6.099095 7.013095 -5192 0.075465 0.054368 9.591818 13.345444 -5193 0.077237 0.057346 10.741810 12.764494 -5194 0.091849 0.036293 12.247413 19.002273 -5195 0.058970 0.036390 13.164714 9.905143 -5196 0.088599 0.074958 10.460580 14.543990 -5197 0.149344 0.093022 10.174558 12.306262 -5198 0.086844 0.040606 4.869512 12.012665 -5199 0.090816 0.067650 7.352310 11.059870 -5200 0.083948 0.048493 13.281436 17.357499 -5201 0.057574 0.030831 7.794423 12.434722 -5202 0.073204 0.021577 12.821770 11.373460 -5203 0.064624 0.048452 7.586433 14.259295 -5204 0.039343 0.027981 9.641906 12.948505 -5205 0.058167 0.037536 9.673030 9.797097 -5206 0.069527 0.044252 10.694841 8.534963 -5207 0.061618 0.051558 7.007519 17.104811 -5208 0.094275 0.051924 7.974892 11.465860 -5209 0.078773 0.055742 10.393160 12.748583 -5210 0.065556 0.050442 7.502503 6.838069 -5211 0.055717 0.024611 10.775143 12.552788 -5212 0.046092 0.048632 7.179180 8.220779 -5213 0.133712 0.136020 11.240646 12.707541 -5214 0.069968 0.032168 8.152126 11.503591 -5215 0.074250 0.034546 14.556925 14.061462 -5216 0.110253 0.048364 9.681587 11.157874 -5217 0.058547 0.037507 11.546935 17.183159 -5218 0.083839 0.040910 12.207355 9.340834 -5219 0.079154 0.056398 11.283781 13.915828 -5220 0.087636 0.076100 17.588141 17.590263 -5221 0.087023 0.056918 8.913395 11.566593 -5222 0.082523 0.036197 9.804764 19.276221 -5223 0.066135 0.042847 7.436705 7.928822 -5224 0.055228 0.017773 4.424376 9.349010 -5225 0.091285 0.040941 8.184375 9.718190 -5226 0.113605 0.094505 9.885154 14.601014 -5227 0.128676 0.090663 9.940720 15.541066 -5228 0.043638 0.021007 9.826259 13.978893 -5229 0.072981 0.054671 7.585892 10.483723 -5230 0.105885 0.067240 13.836758 15.389007 -5231 0.055961 0.046439 12.565128 14.645640 -5232 0.091120 0.095286 14.196270 15.580995 -5233 0.064839 0.039404 8.954101 13.183816 -5234 0.111856 0.068838 6.704560 12.788209 -5235 0.054427 0.029617 10.969201 11.082596 -5236 0.069424 0.051403 11.465020 11.670983 -5237 0.081503 0.045121 6.675064 8.402299 -5238 0.128703 0.047830 11.547275 14.150172 -5239 0.036525 0.014568 6.305178 8.923986 -5240 0.146085 0.114654 12.366182 19.571969 -5241 0.034642 0.024941 8.873086 8.991752 -5242 0.080162 0.065917 9.200954 11.955911 -5243 0.077415 0.036563 8.697660 11.668572 -5244 0.109979 0.084524 10.555480 13.791096 -5245 0.154915 0.076708 14.109794 14.752667 -5246 0.046580 0.038748 10.592037 11.286672 -5247 0.078747 0.052397 7.472038 9.145598 -5248 0.075030 0.036816 10.282215 9.362032 -5249 0.064448 0.053830 12.133050 15.762436 -5250 0.079159 0.039332 7.511628 13.141242 -5251 0.053997 0.044980 8.857981 12.692493 -5252 0.073377 0.052155 12.781530 13.171779 -5253 0.091689 0.060823 15.550712 12.598473 -5254 0.088647 0.067581 9.009551 13.664629 -5255 0.119062 0.105481 11.228892 12.630270 -5256 0.102278 0.066346 6.899166 8.320565 -5257 0.063370 0.037955 7.791432 8.587744 -5258 0.056829 0.044851 6.722951 12.123100 -5259 0.103636 0.049611 9.670109 8.893382 -5260 0.151014 0.105142 13.687609 18.391817 -5261 0.058466 0.016589 7.703626 9.676093 -5262 0.117758 0.099785 7.645509 10.465230 -5263 0.084021 0.032728 8.913142 13.950757 -5264 0.092853 0.077953 12.607067 13.029809 -5265 0.108380 0.086844 10.862240 13.801928 -5266 0.127009 0.083740 9.349673 20.337153 -5267 0.058127 0.030136 8.445600 12.072982 -5268 0.088541 0.037326 9.908130 11.038657 -5269 0.083632 0.049973 6.797958 9.382149 -5270 0.048145 0.034661 7.583832 9.041808 -5271 0.112119 0.087299 13.911652 14.771484 -5272 0.048254 0.035637 7.781357 10.124225 -5273 0.074051 0.035003 7.126192 9.211869 -5274 0.063693 0.059729 11.253600 14.290193 -5275 0.055235 0.032263 8.856524 10.292709 -5276 0.093666 0.058447 8.541186 13.207339 -5277 0.077223 0.058056 13.792280 16.742341 -5278 0.087716 0.055171 7.339907 9.150096 -5279 0.088637 0.030943 7.955384 11.387491 -5280 0.061413 0.035499 10.791652 15.570486 -5281 0.058228 0.049658 12.035371 13.217700 -5282 0.069271 0.032732 9.483999 9.394106 -5283 0.049232 0.033939 8.182113 9.865956 -5284 0.096875 0.052932 9.279239 10.637486 -5285 0.142298 0.060253 11.503452 12.543953 -5286 0.126075 0.074908 16.708109 13.420748 -5287 0.035778 0.017054 9.796891 9.933628 -5288 0.067582 0.073605 10.988351 15.844528 -5289 0.063603 0.064300 8.920105 9.834680 -5290 0.077991 0.039099 7.950887 12.377246 -5291 0.103204 0.074061 9.070100 11.944479 -5292 0.062553 0.034678 6.697263 12.112803 -5293 0.072448 0.033753 7.717307 9.162278 -5294 0.074743 0.057130 7.270821 12.475107 -5295 0.058523 0.032350 14.364116 11.078722 -5296 0.059382 0.036311 12.521288 13.007303 -5297 0.114472 0.060317 9.955606 11.567801 -5298 0.076140 0.058282 11.149344 14.289220 -5299 0.045505 0.034450 11.728951 12.757342 -5300 0.050379 0.025056 7.559396 12.738722 -5301 0.076898 0.030058 9.792142 11.469591 -5302 0.051103 0.017899 7.450009 10.386279 -5303 0.043981 0.041588 7.081443 9.062541 -5304 0.067750 0.044875 10.520026 11.809326 -5305 0.045114 0.036379 12.520629 11.719013 -5306 0.059594 0.036773 11.040058 16.383663 -5307 0.053695 0.023788 10.868168 10.520543 -5308 0.089777 0.071655 11.921330 12.882356 -5309 0.073246 0.044911 15.155503 16.123750 -5310 0.085186 0.069508 12.281149 12.184546 -5311 0.061894 0.059426 8.400767 18.812840 -5312 0.060158 0.046621 10.664231 8.858117 -5313 0.087675 0.049560 11.305303 10.826580 -5314 0.061292 0.021574 10.527496 14.069795 -5315 0.080583 0.048151 10.248804 15.258166 -5316 0.047651 0.026797 7.112196 9.669717 -5317 0.061307 0.028826 7.805504 7.839214 -5318 0.062732 0.031890 9.362777 12.157761 -5319 0.099740 0.077099 8.848591 14.150127 -5320 0.066782 0.048100 8.802767 11.737882 -5321 0.085645 0.047002 11.592778 10.985182 -5322 0.076119 0.034999 9.189172 14.277257 -5323 0.103081 0.059281 10.015173 8.563422 -5324 0.090895 0.049828 8.852308 11.064051 -5325 0.068106 0.030291 9.675989 11.574084 -5326 0.145948 0.047464 8.438479 12.491829 -5327 0.117564 0.033773 9.378605 14.629316 -5328 0.091712 0.054583 14.624246 14.182604 -5329 0.085864 0.043963 8.490725 9.929687 -5330 0.053335 0.029182 10.547545 16.245729 -5331 0.112694 0.052218 10.587205 12.164061 -5332 0.081528 0.062159 10.104356 12.889352 -5333 0.090663 0.069493 9.436523 9.371707 -5334 0.082435 0.043759 13.059827 16.470375 -5335 0.065484 0.026087 8.477656 10.874250 -5336 0.128179 0.117540 16.605375 17.153540 -5337 0.159680 0.062574 12.210186 15.885997 -5338 0.065683 0.040593 6.423150 10.156808 -5339 0.071212 0.103524 11.147769 11.174233 -5340 0.065942 0.054070 12.170776 22.358818 -5341 0.091014 0.067761 13.379422 17.808416 -5342 0.053381 0.043262 10.130575 13.886869 -5343 0.128897 0.054916 10.624756 11.540718 -5344 0.082545 0.049394 7.491020 9.703096 -5345 0.093246 0.049570 12.355694 10.048724 -5346 0.086790 0.043521 5.661400 5.773805 -5347 0.062606 0.047717 7.435879 9.214897 -5348 0.079761 0.034183 10.231815 10.982670 -5349 0.143122 0.077047 14.284427 15.275670 -5350 0.084164 0.042814 6.426888 8.864236 -5351 0.067395 0.031956 8.654928 12.490177 -5352 0.094608 0.085058 9.685084 13.711459 -5353 0.079870 0.041869 11.018832 12.554334 -5354 0.104844 0.028366 8.098096 12.551834 -5355 0.094158 0.059971 14.682127 17.436675 -5356 0.121157 0.085462 12.204426 15.668251 -5357 0.073759 0.043313 7.546702 10.118248 -5358 0.108538 0.046212 7.049945 13.857731 -5359 0.082043 0.033022 7.503634 12.912964 -5360 0.079131 0.031979 9.310521 12.092936 -5361 0.092901 0.029067 7.181589 7.287592 -5362 0.094652 0.042415 8.645808 10.864034 -5363 0.057182 0.034253 11.872772 11.877824 -5364 0.116889 0.062989 10.052543 11.064790 -5365 0.042721 0.017984 8.807231 9.400769 -5366 0.098348 0.067066 13.185944 18.599215 -5367 0.070025 0.028298 8.002427 12.115374 -5368 0.084128 0.043728 8.662739 10.659233 -5369 0.077779 0.037613 7.841980 13.253654 -5370 0.111088 0.057618 14.227531 14.617120 -5371 0.100895 0.065917 16.211491 16.636194 -5372 0.060806 0.025959 10.069186 22.036900 -5373 0.068961 0.076010 8.888552 13.670888 -5374 0.118983 0.057372 9.294076 13.007809 -5375 0.041110 0.023000 7.756003 9.658110 -5376 0.073793 0.051780 10.048414 9.185508 -5377 0.099048 0.066779 12.124366 13.535970 -5378 0.092256 0.042566 12.530498 13.600617 -5379 0.068950 0.053254 15.241563 17.128929 -5380 0.140084 0.084903 10.216581 12.583840 -5381 0.062152 0.043260 15.681698 26.743308 -5382 0.063460 0.029835 6.631368 9.379840 -5383 0.062820 0.046373 10.023738 12.552533 -5384 0.048330 0.037654 8.828353 12.948148 -5385 0.079135 0.039427 14.832974 14.457627 -5386 0.052042 0.023211 8.465955 12.969309 -5387 0.090310 0.048220 8.702927 9.456030 -5388 0.062266 0.051198 14.683947 13.473798 -5389 0.073597 0.076221 10.118793 12.998133 -5390 0.076293 0.046952 9.870660 12.563985 -5391 0.107730 0.065762 10.705992 10.529397 -5392 0.125477 0.067829 10.826854 11.403177 -5393 0.046085 0.023295 10.709132 17.205322 -5394 0.055860 0.025880 8.657366 8.681488 -5395 0.063609 0.027143 12.779201 9.305476 -5396 0.048483 0.027083 8.448961 14.899107 -5397 0.082032 0.037159 9.709486 13.813743 -5398 0.085858 0.045995 12.454135 13.143343 -5399 0.068697 0.041290 9.974964 12.259764 -5400 0.059546 0.035137 10.364722 14.550553 -5401 0.048921 0.030610 12.949887 16.899715 -5402 0.075778 0.057050 9.928547 17.215282 -5403 0.092533 0.043343 9.643549 11.684696 -5404 0.050529 0.035447 9.303309 11.956537 -5405 0.086853 0.057971 10.599234 13.053582 -5406 0.103031 0.065435 6.594704 8.590918 -5407 0.085956 0.047750 10.974560 15.102763 -5408 0.084981 0.056894 8.033653 11.171850 -5409 0.066766 0.052048 10.755790 12.685003 -5410 0.081860 0.035034 9.630321 8.719905 -5411 0.066990 0.038484 8.125699 10.640906 -5412 0.117822 0.116884 6.556112 13.973461 -5413 0.078773 0.038368 9.051344 14.557673 -5414 0.102910 0.061651 10.137442 14.999980 -5415 0.081625 0.063592 7.332208 11.199177 -5416 0.096204 0.069777 18.750656 19.625328 -5417 0.074691 0.039852 9.278999 11.556887 -5418 0.101293 0.069573 10.827923 17.214751 -5419 0.073180 0.024730 11.353192 12.367731 -5420 0.052974 0.022519 7.397560 13.970045 -5421 0.119059 0.089330 9.195596 13.266746 -5422 0.065420 0.038381 9.287737 12.628386 -5423 0.062173 0.028631 9.065513 8.802424 -5424 0.103558 0.043817 13.547248 14.214063 -5425 0.103102 0.076743 10.937670 18.357698 -5426 0.056445 0.028931 12.119088 16.991885 -5427 0.064410 0.040792 10.467033 9.669322 -5428 0.126854 0.051552 22.640885 22.218534 -5429 0.089595 0.062798 13.408401 17.494285 -5430 0.110804 0.067710 9.529973 14.790657 -5431 0.123453 0.051342 12.766111 20.092947 -5432 0.069426 0.033946 10.535944 10.925980 -5433 0.101024 0.067728 7.863210 13.375620 -5434 0.066841 0.039359 7.387134 9.389894 -5435 0.099824 0.038121 9.391498 13.579631 -5436 0.046954 0.040739 14.227882 18.517619 -5437 0.046469 0.037848 11.105096 12.455579 -5438 0.078124 0.028449 6.371908 10.734689 -5439 0.086926 0.056022 17.443487 18.241464 -5440 0.083454 0.043794 7.046643 11.990704 -5441 0.067622 0.031835 10.573846 10.938860 -5442 0.045586 0.028934 13.923815 18.955495 -5443 0.077418 0.069671 10.571867 12.980710 -5444 0.069329 0.063261 11.694313 13.176302 -5445 0.078491 0.044243 13.735188 26.931494 -5446 0.101503 0.062013 15.708825 22.340590 -5447 0.133892 0.067928 10.810921 15.195678 -5448 0.112349 0.058544 10.278278 11.472515 -5449 0.115469 0.062240 12.058075 15.266825 -5450 0.097599 0.069452 12.074842 13.907080 -5451 0.044495 0.028118 6.453717 10.619865 -5452 0.098034 0.068938 11.753708 17.764564 -5453 0.074402 0.046083 6.838798 9.337739 -5454 0.059550 0.052790 6.607777 12.467017 -5455 0.048705 0.057369 9.200696 11.492331 -5456 0.054211 0.032158 9.050067 14.512468 -5457 0.088950 0.049465 12.169554 15.611290 -5458 0.070103 0.055539 12.276170 15.571611 -5459 0.049987 0.024496 5.847109 7.810591 -5460 0.050712 0.045693 7.201817 11.108392 -5461 0.090234 0.047083 12.426581 14.737311 -5462 0.057936 0.031023 12.500360 12.563747 -5463 0.090403 0.058199 10.509604 14.752086 -5464 0.036859 0.016495 11.344971 11.530044 -5465 0.091834 0.035097 10.415444 16.557223 -5466 0.063486 0.049407 6.239217 11.597505 -5467 0.069753 0.038824 11.304234 19.129143 -5468 0.089880 0.064693 12.377307 16.165950 -5469 0.158007 0.122896 12.394969 16.638531 -5470 0.043925 0.029600 12.516383 14.578746 -5471 0.062719 0.025472 8.302518 12.376447 -5472 0.079336 0.048014 9.756952 17.559682 -5473 0.132193 0.041941 8.382480 16.690413 -5474 0.074916 0.051133 10.514846 14.227509 -5475 0.083488 0.044236 6.121601 7.561531 -5476 0.089793 0.035526 8.093587 10.993876 -5477 0.083129 0.048143 13.716323 15.124779 -5478 0.122893 0.063710 11.475997 18.922349 -5479 0.062254 0.049245 9.288443 12.376463 -5480 0.054237 0.024347 6.369452 12.723022 -5481 0.105446 0.056829 9.309311 13.810998 -5482 0.088886 0.067483 13.571546 23.154124 -5483 0.061621 0.045116 6.991327 8.783748 -5484 0.062082 0.030432 9.029145 8.924691 -5485 0.064553 0.057630 9.875228 11.360940 -5486 0.083461 0.039100 13.038726 15.288193 -5487 0.105202 0.078226 17.609749 13.896251 -5488 0.073466 0.044829 10.525618 11.963568 -5489 0.073438 0.044546 9.554778 11.815408 -5490 0.069907 0.048098 9.363509 9.524428 -5491 0.046411 0.024364 8.204911 11.101220 -5492 0.093496 0.061804 6.801775 9.400041 -5493 0.118722 0.086627 12.218707 15.191541 -5494 0.102238 0.058091 15.279972 16.402665 -5495 0.145528 0.119187 15.314938 16.774558 -5496 0.052322 0.033379 7.329158 8.907823 -5497 0.083541 0.053129 12.959510 14.352761 -5498 0.109318 0.067315 7.820569 11.362468 -5499 0.070519 0.060109 10.193019 15.264918 -5500 0.060925 0.046291 7.304848 8.189558 -5501 0.101879 0.044919 11.660203 16.287672 -5502 0.050974 0.023957 14.971315 14.035766 -5503 0.062966 0.030435 9.451778 12.890147 -5504 0.164208 0.047295 8.262399 7.825890 -5505 0.056402 0.041704 9.877818 9.454873 -5506 0.086742 0.058896 8.305776 15.173453 -5507 0.087791 0.028246 12.185978 12.878422 -5508 0.052737 0.028023 8.780038 9.545874 -5509 0.067916 0.032814 7.450414 12.411574 -5510 0.097642 0.032784 8.965749 9.860243 -5511 0.051442 0.038590 8.674722 13.927554 -5512 0.135023 0.044110 12.604489 13.869442 -5513 0.058464 0.038571 10.750796 10.595876 -5514 0.047146 0.024891 9.873972 15.723260 -5515 0.097233 0.050759 7.490598 9.839447 -5516 0.074033 0.048179 9.882304 13.426767 -5517 0.086086 0.064730 7.486159 10.981109 -5518 0.088946 0.048874 7.868755 14.177175 -5519 0.060390 0.032653 11.733601 12.690252 -5520 0.046518 0.032578 5.254189 10.448999 -5521 0.065509 0.036991 10.246153 11.992668 -5522 0.084236 0.061623 9.644497 12.911674 -5523 0.049287 0.038331 10.046127 17.674771 -5524 0.065887 0.026182 9.759243 13.410893 -5525 0.086169 0.046136 9.813237 12.919473 -5526 0.048775 0.033784 8.948779 11.494920 -5527 0.053967 0.034707 6.831547 7.207628 -5528 0.065968 0.040149 6.604944 8.143571 -5529 0.086146 0.066482 11.662141 11.879648 -5530 0.062327 0.034524 13.814071 13.081180 -5531 0.072894 0.033463 10.574463 12.713181 -5532 0.073234 0.073094 11.356927 9.700353 -5533 0.074431 0.037093 11.905569 15.775521 -5534 0.100466 0.059503 9.255535 12.410527 -5535 0.063778 0.027918 8.531012 13.000982 -5536 0.124874 0.069170 7.933734 11.123216 -5537 0.096837 0.056323 9.849288 15.897520 -5538 0.038355 0.019653 8.388025 7.955301 -5539 0.110667 0.085228 9.579528 16.688937 -5540 0.039656 0.015971 9.465634 9.110840 -5541 0.055807 0.017111 7.770733 10.653454 -5542 0.077407 0.037390 11.744954 13.565009 -5543 0.056371 0.033545 7.987897 8.701181 -5544 0.077976 0.049748 10.363307 10.864392 -5545 0.076579 0.027231 10.471291 14.179223 -5546 0.065638 0.042909 9.327946 15.801624 -5547 0.056676 0.034517 10.349848 12.092066 -5548 0.050454 0.021788 10.109711 12.233479 -5549 0.072918 0.042723 8.725055 13.300128 -5550 0.076705 0.048683 8.627254 12.504104 -5551 0.081263 0.044636 8.451800 10.865604 -5552 0.076418 0.067697 10.936887 18.698572 -5553 0.068414 0.082360 11.624708 15.989750 -5554 0.056581 0.033185 14.716743 16.904242 -5555 0.076511 0.046144 9.285452 11.729315 -5556 0.066529 0.050981 8.813229 12.126835 -5557 0.064929 0.038459 11.079094 11.474555 -5558 0.045556 0.022136 7.410414 6.825503 -5559 0.048000 0.051800 10.047611 12.817126 -5560 0.054452 0.026783 7.653284 9.871611 -5561 0.093213 0.045487 10.899668 15.906218 -5562 0.074333 0.040467 10.605178 12.580198 -5563 0.126962 0.068688 12.165711 12.849152 -5564 0.053110 0.029548 11.424714 12.649149 -5565 0.071395 0.045060 9.270482 13.820595 -5566 0.090150 0.058563 11.850012 12.799544 -5567 0.069190 0.045946 11.960838 13.425240 -5568 0.075352 0.068016 13.152375 16.242969 -5569 0.053837 0.020234 8.423596 11.040303 -5570 0.051075 0.039818 6.766799 12.252984 -5571 0.109178 0.061826 13.574226 14.474440 -5572 0.059971 0.051168 8.242399 8.873779 -5573 0.095314 0.075628 8.669270 8.697642 -5574 0.087136 0.032962 11.333682 12.692866 -5575 0.046815 0.032969 14.649247 17.854814 -5576 0.037197 0.032461 10.478237 14.092144 -5577 0.089665 0.027651 12.184164 15.721743 -5578 0.089081 0.040827 8.048854 9.481592 -5579 0.128968 0.094822 12.044680 17.051214 -5580 0.057247 0.026311 9.455957 9.699868 -5581 0.063944 0.046845 8.488189 13.667433 -5582 0.093374 0.053702 13.456754 11.426468 -5583 0.077502 0.046885 9.976292 11.716871 -5584 0.114075 0.058913 7.606787 13.384259 -5585 0.089759 0.059856 11.615950 14.668019 -5586 0.078939 0.052698 13.448213 11.509702 -5587 0.073622 0.035350 8.392155 11.420696 -5588 0.077550 0.105849 8.160077 17.666729 -5589 0.081923 0.044876 6.907637 13.278601 -5590 0.068939 0.071153 10.799264 13.465235 -5591 0.075233 0.024654 13.983025 10.513055 -5592 0.061105 0.035546 11.736496 11.790109 -5593 0.050803 0.043709 13.964751 12.584362 -5594 0.065608 0.040244 9.517090 15.532785 -5595 0.139985 0.099459 12.056640 12.663616 -5596 0.048946 0.024481 7.644840 11.048421 -5597 0.091919 0.074627 8.000122 10.447777 -5598 0.072268 0.038649 12.233528 11.562811 -5599 0.095949 0.083385 6.964701 13.619098 -5600 0.048320 0.034999 7.773864 10.419000 -5601 0.075691 0.081931 14.058468 12.785244 -5602 0.076057 0.044255 6.947532 12.148921 -5603 0.160297 0.101322 9.718860 13.169846 -5604 0.074235 0.026978 7.926380 10.823525 -5605 0.070009 0.043477 6.236361 9.938862 -5606 0.073627 0.058867 11.925447 23.900877 -5607 0.095580 0.042792 9.520327 12.542267 -5608 0.089165 0.041716 7.554356 11.272776 -5609 0.064791 0.039844 6.124657 10.383102 -5610 0.075683 0.051307 12.596553 15.154592 -5611 0.068160 0.043711 12.218830 15.833129 -5612 0.052932 0.057749 7.653894 13.298998 -5613 0.042574 0.020998 7.810336 6.918544 -5614 0.073307 0.034476 9.521269 14.018259 -5615 0.068094 0.033850 11.106295 9.297967 -5616 0.062555 0.052990 10.783853 9.404492 -5617 0.081660 0.052014 8.690487 11.590689 -5618 0.094393 0.032708 7.577926 10.393990 -5619 0.084838 0.050788 10.003832 14.771530 -5620 0.055371 0.045959 7.637669 10.198493 -5621 0.072293 0.071661 17.669407 17.312725 -5622 0.080101 0.046975 8.108311 13.074131 -5623 0.066546 0.046846 10.396070 9.663910 -5624 0.050469 0.023518 9.840812 12.799001 -5625 0.071238 0.046063 14.163713 18.181949 -5626 0.062640 0.055599 11.257649 14.439236 -5627 0.102317 0.082939 8.730929 10.807435 -5628 0.075138 0.029480 7.386115 13.068682 -5629 0.073153 0.043546 9.972506 10.431469 -5630 0.098497 0.074573 10.627420 18.720371 -5631 0.070244 0.034620 6.467091 7.664326 -5632 0.054216 0.018451 7.920285 9.692412 -5633 0.091566 0.055388 8.147605 9.518747 -5634 0.119280 0.076161 6.473533 10.465288 -5635 0.076217 0.043680 12.535631 14.176353 -5636 0.095166 0.054773 7.887618 9.929587 -5637 0.063149 0.051241 7.903259 11.837185 -5638 0.101429 0.038343 7.512458 17.584170 -5639 0.055163 0.024606 10.440466 15.917503 -5640 0.070114 0.029775 12.202967 14.697410 -5641 0.079117 0.029295 12.601036 15.398521 -5642 0.071496 0.025669 10.747257 11.654071 -5643 0.056861 0.023006 7.245399 12.753800 -5644 0.077798 0.048542 18.749316 20.546824 -5645 0.106953 0.107879 9.416846 8.885819 -5646 0.060360 0.035985 8.987196 9.251862 -5647 0.052219 0.028497 8.519516 10.455287 -5648 0.106697 0.071724 10.435802 14.267164 -5649 0.056603 0.025175 6.885339 12.589094 -5650 0.036586 0.012428 8.048702 10.665329 -5651 0.051239 0.057838 8.560068 12.106780 -5652 0.106496 0.054990 9.134156 11.599278 -5653 0.092488 0.044624 8.580875 7.950750 -5654 0.191681 0.089106 8.067592 12.855020 -5655 0.088960 0.040485 9.556534 13.291497 -5656 0.111908 0.077036 14.333150 15.342710 -5657 0.044834 0.032114 7.065794 9.806283 -5658 0.059504 0.032328 14.528681 15.190460 -5659 0.113624 0.036536 7.162562 15.437031 -5660 0.053147 0.037329 11.547824 20.207696 -5661 0.085580 0.023978 7.122596 9.281858 -5662 0.052832 0.041853 9.832295 14.360900 -5663 0.116121 0.064906 12.315610 16.809258 -5664 0.073575 0.078112 10.256987 12.329689 -5665 0.085648 0.036216 11.877089 13.489205 -5666 0.083867 0.037742 10.375239 16.854638 -5667 0.125952 0.088931 6.576831 10.309561 -5668 0.085930 0.043810 9.400401 14.752209 -5669 0.095539 0.056115 11.313094 10.775231 -5670 0.112646 0.089644 12.077167 12.084688 -5671 0.048213 0.036321 11.365102 15.038780 -5672 0.070816 0.047415 13.887632 13.008550 -5673 0.052108 0.032489 8.012138 7.620481 -5674 0.084442 0.033852 7.808766 9.988520 -5675 0.063775 0.041052 8.560752 11.731554 -5676 0.088606 0.049083 13.229037 17.975415 -5677 0.093474 0.060671 7.500071 11.136710 -5678 0.078968 0.036891 12.208179 10.004549 -5679 0.057747 0.021827 6.521711 10.288128 -5680 0.078388 0.037051 7.602820 13.583610 -5681 0.103149 0.055855 9.088003 15.372455 -5682 0.080554 0.032156 10.147885 13.419582 -5683 0.073657 0.044169 14.948481 15.944721 -5684 0.113427 0.068063 12.202448 14.073677 -5685 0.080973 0.060073 9.670759 17.514821 -5686 0.096939 0.041258 8.335402 8.853266 -5687 0.077062 0.061733 7.045427 11.239490 -5688 0.073159 0.039192 10.181275 9.817680 -5689 0.092294 0.058043 12.124482 11.078040 -5690 0.071347 0.045746 6.053890 14.942402 -5691 0.095645 0.046837 15.450446 15.382555 -5692 0.058604 0.039821 10.626275 11.281747 -5693 0.092473 0.055992 11.845484 15.132227 -5694 0.093873 0.052677 17.024507 25.470133 -5695 0.069611 0.042554 8.713900 11.492263 -5696 0.161897 0.094705 15.738187 17.346337 -5697 0.066984 0.041969 13.584278 15.214940 -5698 0.059734 0.039509 6.643890 12.706417 -5699 0.099438 0.050346 9.094153 11.947117 -5700 0.046779 0.048694 10.884360 16.248055 -5701 0.074811 0.038754 14.245187 18.907552 -5702 0.085355 0.046268 10.052213 13.980659 -5703 0.055350 0.033179 8.342099 7.101511 -5704 0.061132 0.034426 7.537204 10.521199 -5705 0.077436 0.058986 11.328592 9.223905 -5706 0.064723 0.047953 11.701588 13.830721 -5707 0.105478 0.039558 10.049384 11.283318 -5708 0.115877 0.074951 10.679291 13.963267 -5709 0.095352 0.071310 13.593093 18.024850 -5710 0.059024 0.038356 9.458898 8.533211 -5711 0.095176 0.035125 7.394306 11.389636 -5712 0.058546 0.052568 11.661157 15.792016 -5713 0.068246 0.057246 8.201356 13.393082 -5714 0.058067 0.043719 9.802720 15.860066 -5715 0.076713 0.054404 12.079153 15.724176 -5716 0.084919 0.075839 9.067629 13.037886 -5717 0.076641 0.046384 10.311732 15.446002 -5718 0.098221 0.043468 9.923057 11.535828 -5719 0.053950 0.022765 7.079459 15.164999 -5720 0.078625 0.045269 14.593346 15.430451 -5721 0.147633 0.119753 11.495947 14.906304 -5722 0.072535 0.067584 11.578525 13.215863 -5723 0.034778 0.013732 6.938964 12.073120 -5724 0.075830 0.070589 12.840810 12.327224 -5725 0.060656 0.053087 10.019777 15.650932 -5726 0.062185 0.043390 8.877465 10.199979 -5727 0.090371 0.067414 11.539601 14.389879 -5728 0.045164 0.026479 11.495868 12.765167 -5729 0.132373 0.044878 8.279923 13.986974 -5730 0.062720 0.041633 11.110872 15.003127 -5731 0.078324 0.036030 10.340534 15.974831 -5732 0.076482 0.026824 12.186793 12.469828 -5733 0.081938 0.042151 9.032168 15.304360 -5734 0.061909 0.039550 7.846886 12.173406 -5735 0.073499 0.032657 9.295508 13.383214 -5736 0.072009 0.034600 11.976260 13.757583 -5737 0.107060 0.066575 12.879052 14.390163 -5738 0.047224 0.019637 7.964127 9.801728 -5739 0.092100 0.073951 14.525699 18.177270 -5740 0.186611 0.136287 8.939827 14.329306 -5741 0.062839 0.037345 10.511023 12.665937 -5742 0.086446 0.055898 7.832802 10.318224 -5743 0.036103 0.022437 7.866065 9.192207 -5744 0.121549 0.078654 12.873291 16.262632 -5745 0.074910 0.059779 12.606474 12.249717 -5746 0.080682 0.084388 11.486947 14.343905 -5747 0.062478 0.044399 8.573521 9.328787 -5748 0.148120 0.075046 11.779304 9.776521 -5749 0.079901 0.069737 11.280599 12.321825 -5750 0.142512 0.082407 7.907635 11.629366 -5751 0.086883 0.044759 11.062491 16.095070 -5752 0.045176 0.034989 11.726364 13.047340 -5753 0.070934 0.042865 11.616997 13.307011 -5754 0.048915 0.031508 11.623430 11.596077 -5755 0.116452 0.086364 15.323477 19.617984 -5756 0.084619 0.047583 10.981759 16.035071 -5757 0.064148 0.038692 7.102153 15.096556 -5758 0.086236 0.069840 7.756095 8.754385 -5759 0.061544 0.033907 8.239590 14.581702 -5760 0.070279 0.058822 8.058872 8.170279 -5761 0.064567 0.091613 11.468300 13.400491 -5762 0.093087 0.091710 11.163771 11.037034 -5763 0.061720 0.031733 13.940131 18.521478 -5764 0.081948 0.055844 10.585223 14.158243 -5765 0.064448 0.068355 12.731630 9.940214 -5766 0.055542 0.038698 10.141350 15.206004 -5767 0.047786 0.030846 5.435104 6.924458 -5768 0.092010 0.072050 7.214804 11.436177 -5769 0.060905 0.042819 10.446920 14.018985 -5770 0.094962 0.042972 9.266782 15.867816 -5771 0.050450 0.027186 12.336698 13.085571 -5772 0.125697 0.071272 8.955845 10.854168 -5773 0.075652 0.048542 7.781645 10.974282 -5774 0.036709 0.035764 7.727373 9.804889 -5775 0.090397 0.048362 15.720173 18.503195 -5776 0.088968 0.042122 10.859638 10.463256 -5777 0.070883 0.033351 8.607187 11.425278 -5778 0.045973 0.038321 6.224533 11.390952 -5779 0.165648 0.098415 13.266002 25.349389 -5780 0.109371 0.079934 12.335243 20.940077 -5781 0.143337 0.102220 13.868548 18.027051 -5782 0.073773 0.065927 6.653979 15.716075 -5783 0.053736 0.042009 11.058401 14.040398 -5784 0.119214 0.051440 11.735337 12.473567 -5785 0.124440 0.063356 7.908741 11.499318 -5786 0.054722 0.036740 14.386452 15.640919 -5787 0.057648 0.032081 7.147074 14.360560 -5788 0.095818 0.066176 8.931222 16.362105 -5789 0.080676 0.067541 5.325112 11.045521 -5790 0.071897 0.038663 7.758600 11.154011 -5791 0.056198 0.046707 9.410119 9.102481 -5792 0.067660 0.031605 17.052759 19.215314 -5793 0.049413 0.012195 8.155965 9.766736 -5794 0.085696 0.045365 9.160727 14.305771 -5795 0.062907 0.053869 8.535802 10.171641 -5796 0.069103 0.035912 10.927354 13.772882 -5797 0.044408 0.023932 7.691705 10.970564 -5798 0.080356 0.020682 6.773308 16.560927 -5799 0.086720 0.044126 10.238134 18.625669 -5800 0.081388 0.037243 9.801625 13.379785 -5801 0.050667 0.026703 10.545903 10.837969 -5802 0.060679 0.047757 7.923850 10.327347 -5803 0.060983 0.056599 11.568426 14.850877 -5804 0.050571 0.031495 8.193303 13.794324 -5805 0.089765 0.055989 10.996137 12.208948 -5806 0.058198 0.037489 8.980653 10.641748 -5807 0.044911 0.019260 7.464373 10.338785 -5808 0.051243 0.035295 11.301059 15.225602 -5809 0.064539 0.044767 8.469624 11.222217 -5810 0.083243 0.094306 4.978084 8.963342 -5811 0.079021 0.063729 7.988095 7.704200 -5812 0.031352 0.018710 8.285577 11.315758 -5813 0.121211 0.058659 14.966932 16.084526 -5814 0.050168 0.035119 8.004316 11.359632 -5815 0.044841 0.024787 8.026160 12.129213 -5816 0.080738 0.037303 6.920741 14.910910 -5817 0.072130 0.038099 7.318159 10.341541 -5818 0.068546 0.058277 8.964197 12.497337 -5819 0.095296 0.060207 7.550152 10.619007 -5820 0.150078 0.068468 11.258144 12.319983 -5821 0.105334 0.064479 11.502382 15.930473 -5822 0.054994 0.045141 6.873865 9.688243 -5823 0.059504 0.031251 10.052852 8.617697 -5824 0.120455 0.087345 15.067771 18.792302 -5825 0.041086 0.032955 6.624814 11.202464 -5826 0.079124 0.092993 12.420801 14.053406 -5827 0.067797 0.046679 9.568755 10.549536 -5828 0.058241 0.040333 10.369644 14.563354 -5829 0.091139 0.070559 11.162908 11.707539 -5830 0.065945 0.032942 8.701291 11.032681 -5831 0.061650 0.040301 17.444137 15.051463 -5832 0.108094 0.067708 11.100359 12.621036 -5833 0.049215 0.033025 11.687521 16.405413 -5834 0.120758 0.079298 10.064234 12.694695 -5835 0.108141 0.060865 11.545279 12.489939 -5836 0.101618 0.046272 7.319780 9.719585 -5837 0.116345 0.057109 12.777799 17.127600 -5838 0.080624 0.044154 7.297867 8.130077 -5839 0.090706 0.057609 9.080536 10.126267 -5840 0.086787 0.046152 8.843028 14.628987 -5841 0.061198 0.047138 10.823054 13.652343 -5842 0.062200 0.055781 8.179353 16.198369 -5843 0.074631 0.044434 12.501353 12.794664 -5844 0.104169 0.048250 16.083013 14.481418 -5845 0.111853 0.094592 15.395364 16.222724 -5846 0.078657 0.047451 7.878408 10.956763 -5847 0.069995 0.063796 7.082524 14.005150 -5848 0.065634 0.031308 7.445443 11.569075 -5849 0.070555 0.050770 10.452013 15.976499 -5850 0.056873 0.029194 5.589962 7.856670 -5851 0.069124 0.040831 8.164190 16.666355 -5852 0.084947 0.054729 9.000811 14.370161 -5853 0.057824 0.021229 8.330270 9.356911 -5854 0.097081 0.046315 8.610318 11.263638 -5855 0.100930 0.091377 11.453249 13.576404 -5856 0.056181 0.024912 7.152696 10.561492 -5857 0.075359 0.051571 10.607504 11.750317 -5858 0.078190 0.038746 7.671511 11.117614 -5859 0.069192 0.064582 10.992663 11.253971 -5860 0.091051 0.041755 12.486257 13.881309 -5861 0.067922 0.035417 9.845073 7.897811 -5862 0.074532 0.052168 10.746521 15.204798 -5863 0.077506 0.058128 10.864397 14.311326 -5864 0.087064 0.085098 11.924949 17.020226 -5865 0.082355 0.052420 17.616611 14.437706 -5866 0.051853 0.037228 9.594151 12.446030 -5867 0.150344 0.064198 11.042470 18.277965 -5868 0.095710 0.041567 10.866213 12.313452 -5869 0.056815 0.027521 7.707235 10.589854 -5870 0.095866 0.045133 12.467681 15.296211 -5871 0.065016 0.054607 16.673630 19.543880 -5872 0.072257 0.042151 9.282306 22.797149 -5873 0.096613 0.087245 9.458260 15.990162 -5874 0.081868 0.054516 9.340137 14.010446 -5875 0.077181 0.036550 9.545247 10.158718 -5876 0.040719 0.033787 11.718227 11.784659 -5877 0.100309 0.065058 8.383040 11.051240 -5878 0.087255 0.068702 9.464649 11.783675 -5879 0.095717 0.064142 11.641633 13.143220 -5880 0.069812 0.060865 16.318349 17.275270 -5881 0.047805 0.024223 7.542380 13.174955 -5882 0.057557 0.042758 13.571570 14.575481 -5883 0.070027 0.031794 12.457896 13.665728 -5884 0.123220 0.076927 11.266876 15.197232 -5885 0.071458 0.045283 9.897936 12.076170 -5886 0.065948 0.058618 7.657802 9.184065 -5887 0.118305 0.071953 12.150044 15.729976 -5888 0.069480 0.045549 9.584123 12.641133 -5889 0.062090 0.047000 14.291904 21.189202 -5890 0.073655 0.045044 10.682636 14.529431 -5891 0.099388 0.058004 13.060712 13.440015 -5892 0.052897 0.032715 11.603638 13.963178 -5893 0.106160 0.079162 10.346340 17.410158 -5894 0.082560 0.046320 14.435130 20.215098 -5895 0.049263 0.032866 9.293072 16.208474 -5896 0.042698 0.029640 8.351387 7.585362 -5897 0.091894 0.061986 14.386600 18.734140 -5898 0.069603 0.059077 10.310573 11.751024 -5899 0.100505 0.042478 10.261874 13.744082 -5900 0.057715 0.052458 8.898181 12.623442 -5901 0.060945 0.044249 10.655954 11.232935 -5902 0.064741 0.044597 10.429650 11.829137 -5903 0.070452 0.035586 8.308351 8.961035 -5904 0.130840 0.074047 10.091161 13.495349 -5905 0.101627 0.046707 21.422677 14.168615 -5906 0.075278 0.061317 10.799481 10.182043 -5907 0.044449 0.022535 7.720181 10.145207 -5908 0.095921 0.059301 9.668781 11.651830 -5909 0.048283 0.025962 7.040188 7.848737 -5910 0.041035 0.041399 7.917430 11.793503 -5911 0.096476 0.074848 15.145403 16.059652 -5912 0.080798 0.037804 8.955699 9.827203 -5913 0.084504 0.033381 12.354812 12.088988 -5914 0.095209 0.056532 11.827952 13.352037 -5915 0.048477 0.034818 12.614596 10.380321 -5916 0.101763 0.101650 10.157927 15.888867 -5917 0.062768 0.038642 7.362833 8.418102 -5918 0.076209 0.042542 15.399589 14.051526 -5919 0.080803 0.083030 13.040606 19.100970 -5920 0.049753 0.024303 10.736726 10.213282 -5921 0.068585 0.063855 9.684763 15.586111 -5922 0.046005 0.022222 15.139890 10.644205 -5923 0.080287 0.035785 7.588230 9.616556 -5924 0.113803 0.108468 8.717125 13.963478 -5925 0.093343 0.050360 12.860031 11.190414 -5926 0.063538 0.034076 8.290782 11.346976 -5927 0.048815 0.039012 9.957508 11.836451 -5928 0.045050 0.014050 8.874019 12.284295 -5929 0.064173 0.056971 11.474362 11.870523 -5930 0.100981 0.114709 12.559127 15.561365 -5931 0.080483 0.063810 10.108663 13.584026 -5932 0.039975 0.022052 6.290340 10.169771 -5933 0.083375 0.051075 7.370458 14.913979 -5934 0.048656 0.019421 6.825951 14.016310 -5935 0.075176 0.032565 8.534384 10.424847 -5936 0.080081 0.039555 14.436593 17.786552 -5937 0.084184 0.054800 8.960626 14.539464 -5938 0.068194 0.057553 12.495229 13.958879 -5939 0.048173 0.024542 10.383938 15.963457 -5940 0.122549 0.070111 10.435831 15.573345 -5941 0.067627 0.048881 13.006062 11.406516 -5942 0.090484 0.075867 7.512715 8.203114 -5943 0.053439 0.029634 11.562071 11.051181 -5944 0.070542 0.042501 11.401469 15.287234 -5945 0.043347 0.033407 10.083832 13.387541 -5946 0.101745 0.057378 7.314115 15.861429 -5947 0.078860 0.037902 10.493229 13.178257 -5948 0.062310 0.053128 7.873685 12.903671 -5949 0.044285 0.026682 8.602932 10.840424 -5950 0.087571 0.041282 10.667130 11.026657 -5951 0.142811 0.051879 13.652795 16.945753 -5952 0.060600 0.033011 10.930190 12.659625 -5953 0.071349 0.051522 9.207545 8.921912 -5954 0.059507 0.038826 12.462610 14.495053 -5955 0.083577 0.027145 9.592168 14.010058 -5956 0.092977 0.047301 7.613770 9.645435 -5957 0.092948 0.064647 12.522526 17.605296 -5958 0.057272 0.030017 9.013942 8.931091 -5959 0.102816 0.070628 11.940988 13.474478 -5960 0.091610 0.073711 12.200001 12.741459 -5961 0.061398 0.030711 9.408003 13.471693 -5962 0.085075 0.031338 11.027715 9.563327 -5963 0.049247 0.015533 8.338057 8.746315 -5964 0.064586 0.070615 9.783896 17.929311 -5965 0.120316 0.063840 11.720701 13.065196 -5966 0.123666 0.057832 12.082701 14.518824 -5967 0.059713 0.030360 9.045091 11.923779 -5968 0.061856 0.041533 9.235171 12.563842 -5969 0.075288 0.043772 19.997842 22.505645 -5970 0.083603 0.059218 7.040344 11.444251 -5971 0.109162 0.050138 7.895266 10.806316 -5972 0.111439 0.068103 10.867116 13.750435 -5973 0.052805 0.037325 7.197938 8.524172 -5974 0.091899 0.076101 9.344286 10.745961 -5975 0.080323 0.043382 8.967551 14.113282 -5976 0.081430 0.069962 9.514967 17.488687 -5977 0.104044 0.074694 8.526765 7.074056 -5978 0.060356 0.030613 8.317686 7.674715 -5979 0.052606 0.051684 11.327084 15.981847 -5980 0.108110 0.059575 12.506714 17.114651 -5981 0.092691 0.052836 11.625379 12.661852 -5982 0.075739 0.049934 13.244183 14.507351 -5983 0.092592 0.060987 9.113600 17.737972 -5984 0.065690 0.050943 7.878551 13.493991 -5985 0.059904 0.051492 11.258669 14.131148 -5986 0.076289 0.038016 6.839547 12.713233 -5987 0.057820 0.043601 7.712531 8.356044 -5988 0.085011 0.043918 8.691262 9.117228 -5989 0.134323 0.123077 12.297319 13.662407 -5990 0.053822 0.036871 13.316944 11.850910 -5991 0.064629 0.043234 6.047696 10.111002 -5992 0.048434 0.042096 7.592098 11.541780 -5993 0.064552 0.036414 6.537878 7.660628 -5994 0.120180 0.056627 12.121436 13.423382 -5995 0.082145 0.061985 8.749107 8.955734 -5996 0.103712 0.045578 13.684718 18.797170 -5997 0.083931 0.048010 8.605402 9.979230 -5998 0.033581 0.022603 9.716310 11.446322 -5999 0.076614 0.075675 12.073569 11.369526 -6000 0.090015 0.044560 9.363429 10.285529 -6001 0.062771 0.042106 9.141635 13.292329 -6002 0.071257 0.036476 9.729402 9.103140 -6003 0.082994 0.069954 13.112872 14.256215 -6004 0.053760 0.022465 8.185352 9.157912 -6005 0.048991 0.040649 7.665260 10.353600 -6006 0.107379 0.074600 9.060829 14.912536 -6007 0.066354 0.039987 10.717487 13.217491 -6008 0.072450 0.023643 6.026196 10.098300 -6009 0.057477 0.025896 7.126711 12.654498 -6010 0.060400 0.035671 11.954173 10.143462 -6011 0.069712 0.050504 13.104914 16.503148 -6012 0.034954 0.022988 8.235220 8.157524 -6013 0.068738 0.043051 11.006152 13.726531 -6014 0.092001 0.052657 12.973201 12.037027 -6015 0.109013 0.066390 9.584092 12.109870 -6016 0.090265 0.049550 11.176317 12.665231 -6017 0.066142 0.053984 11.216798 20.672578 -6018 0.067470 0.064210 6.840138 11.862076 -6019 0.117535 0.093824 12.622523 14.401167 -6020 0.063241 0.039506 9.107180 12.808467 -6021 0.047401 0.030079 11.432441 10.672238 -6022 0.086205 0.048910 9.302257 12.900311 -6023 0.066219 0.037728 7.218944 16.685445 -6024 0.081173 0.065954 10.857430 9.885539 -6025 0.091437 0.039316 13.111342 13.699112 -6026 0.040543 0.028397 8.376957 12.635251 -6027 0.079463 0.032168 12.647227 13.725608 -6028 0.053789 0.057097 10.409154 10.929204 -6029 0.095754 0.056977 8.381464 13.992307 -6030 0.072220 0.032835 7.695599 8.511204 -6031 0.084677 0.043087 9.659410 11.038675 -6032 0.073560 0.027892 10.413083 13.995125 -6033 0.075066 0.110471 11.345677 16.039193 -6034 0.092359 0.072898 9.519666 16.419876 -6035 0.066471 0.052943 8.947910 13.097379 -6036 0.119498 0.061001 9.675823 15.463289 -6037 0.220033 0.136115 10.395462 12.429579 -6038 0.059948 0.030257 15.073717 14.922483 -6039 0.043122 0.033786 11.467522 18.049777 -6040 0.064007 0.040506 8.064439 13.203681 -6041 0.046702 0.046747 10.736392 12.294286 -6042 0.060648 0.062859 8.577118 14.612821 -6043 0.079108 0.039406 7.863552 15.690172 -6044 0.123670 0.069302 9.652030 12.163109 -6045 0.064817 0.016079 7.339726 10.100729 -6046 0.084436 0.031082 9.657905 9.176055 -6047 0.090551 0.055557 10.231230 10.584354 -6048 0.085532 0.033647 11.269767 13.122135 -6049 0.108501 0.071910 8.588997 11.603651 -6050 0.055284 0.018752 8.546100 10.949439 -6051 0.084955 0.050415 12.433990 12.505690 -6052 0.096272 0.075455 12.871752 15.745849 -6053 0.075701 0.048799 11.428675 10.481296 -6054 0.097857 0.059096 8.081250 13.867975 -6055 0.100060 0.059668 8.657451 13.283131 -6056 0.049464 0.029012 7.903043 8.649872 -6057 0.084907 0.086307 10.945242 17.537200 -6058 0.077324 0.043618 11.744414 12.222246 -6059 0.059709 0.026810 10.033738 7.590040 -6060 0.074651 0.034922 8.910035 9.920230 -6061 0.129677 0.078344 13.824333 17.815724 -6062 0.033505 0.013646 9.014625 9.614462 -6063 0.069950 0.098461 10.503885 8.846886 -6064 0.046698 0.018589 7.052117 6.085880 -6065 0.067424 0.035303 10.027876 9.985286 -6066 0.099853 0.063030 12.509519 15.269387 -6067 0.110060 0.052308 8.957308 11.031693 -6068 0.100875 0.059221 7.583651 11.626253 -6069 0.036945 0.034138 6.932084 9.590050 -6070 0.094248 0.055346 14.415987 18.444194 -6071 0.077323 0.054483 9.251024 14.981568 -6072 0.077237 0.059412 7.324324 11.147649 -6073 0.129783 0.082198 12.507362 15.845171 -6074 0.048962 0.020930 17.601382 16.945351 -6075 0.078975 0.030170 8.366243 13.403686 -6076 0.064168 0.032397 11.414477 21.274851 -6077 0.065123 0.035747 10.964498 10.111346 -6078 0.068501 0.037251 6.617154 10.202311 -6079 0.069097 0.033476 9.848518 12.253979 -6080 0.065030 0.022979 9.142292 10.890139 -6081 0.060681 0.045211 11.662415 12.404842 -6082 0.109176 0.071321 15.243272 19.058654 -6083 0.113685 0.070286 8.707350 12.101434 -6084 0.088618 0.059223 13.824061 12.813394 -6085 0.081385 0.045281 6.637053 9.657490 -6086 0.047573 0.026762 9.554578 11.115725 -6087 0.075242 0.045964 16.397346 15.262574 -6088 0.062064 0.046137 9.931138 16.381289 -6089 0.073805 0.043841 8.936519 12.713916 -6090 0.062151 0.021787 8.300278 9.353879 -6091 0.067578 0.032803 6.104768 11.599606 -6092 0.090118 0.042702 7.412653 8.897989 -6093 0.109476 0.111954 11.233824 10.581737 -6094 0.087211 0.038701 13.293399 18.079810 -6095 0.081160 0.043303 12.251315 11.197164 -6096 0.050666 0.026242 9.345668 9.232013 -6097 0.087680 0.066418 12.277455 15.518953 -6098 0.061862 0.033380 8.726125 9.907741 -6099 0.050278 0.035670 10.013907 13.694909 -6100 0.081407 0.036897 8.040333 10.238827 -6101 0.099391 0.064818 12.827600 11.113953 -6102 0.076504 0.028922 7.642521 11.111912 -6103 0.074072 0.052875 13.501080 13.400028 -6104 0.062933 0.049186 8.211817 13.222250 -6105 0.063879 0.020736 7.718450 10.450674 -6106 0.104433 0.078963 12.360080 11.148318 -6107 0.065624 0.055002 9.311738 9.338385 -6108 0.116733 0.086230 15.014798 24.080713 -6109 0.067252 0.041427 11.963470 13.533646 -6110 0.046689 0.030509 8.439430 9.562927 -6111 0.089050 0.048145 15.443120 19.469267 -6112 0.089983 0.054436 14.506683 21.575900 -6113 0.072508 0.034877 5.886789 9.270397 -6114 0.057780 0.027811 10.798364 16.070061 -6115 0.080937 0.036261 10.583730 12.649528 -6116 0.101058 0.044122 8.712432 12.003354 -6117 0.093168 0.055505 7.728274 9.054942 -6118 0.061559 0.044101 12.321464 14.897196 -6119 0.058807 0.046334 9.917606 10.124009 -6120 0.137875 0.074333 12.135196 13.873155 -6121 0.076817 0.052813 10.797530 14.195213 -6122 0.039491 0.030836 13.072823 10.475058 -6123 0.072504 0.031482 11.777460 11.588062 -6124 0.048435 0.022454 11.615646 13.402678 -6125 0.095490 0.050532 11.957720 15.346316 -6126 0.104720 0.041928 9.684618 13.390936 -6127 0.055312 0.023326 11.179883 10.007676 -6128 0.076846 0.039263 13.237551 15.957484 -6129 0.079793 0.058260 9.107143 8.941071 -6130 0.057076 0.041202 14.613262 19.761074 -6131 0.124647 0.092626 9.328421 11.868969 -6132 0.054973 0.029208 8.726448 13.465098 -6133 0.072766 0.063721 8.457972 14.973529 -6134 0.098614 0.030792 6.500753 11.705615 -6135 0.086437 0.058677 17.426119 17.144761 -6136 0.068421 0.050458 6.654054 9.805592 -6137 0.097439 0.075422 11.799743 14.629856 -6138 0.120195 0.051853 10.792488 16.910916 -6139 0.069417 0.038716 8.965383 8.282520 -6140 0.067848 0.036389 6.635685 8.492471 -6141 0.057853 0.028457 8.772157 15.587143 -6142 0.083033 0.029003 11.724930 13.993079 -6143 0.079270 0.051285 7.726043 9.154836 -6144 0.044620 0.025956 6.966890 12.569259 -6145 0.071780 0.053002 8.672118 13.437509 -6146 0.058845 0.022427 8.448702 8.065091 -6147 0.060939 0.029356 12.201300 14.650244 -6148 0.070255 0.044428 7.822075 7.956123 -6149 0.112961 0.090578 11.757296 14.949203 -6150 0.053716 0.039296 8.665350 10.389290 -6151 0.062600 0.032452 9.317730 13.237982 -6152 0.072906 0.038358 7.061379 10.028220 -6153 0.071286 0.045966 10.126452 9.086840 -6154 0.063862 0.039768 9.400872 10.977471 -6155 0.114048 0.076109 17.360445 18.514281 -6156 0.101677 0.068085 10.780200 12.702478 -6157 0.035729 0.019810 8.229347 12.044332 -6158 0.128126 0.074628 14.345388 18.219384 -6159 0.170761 0.081858 13.456705 21.855873 -6160 0.064265 0.028998 6.746402 9.677710 -6161 0.058862 0.046140 8.007336 10.040269 -6162 0.044203 0.031959 12.889125 17.605487 -6163 0.075268 0.053560 11.185797 10.625456 -6164 0.049772 0.039020 6.206869 6.587832 -6165 0.087515 0.070554 12.084746 13.165705 -6166 0.075193 0.072854 13.345342 11.291006 -6167 0.063161 0.020847 8.767623 14.089802 -6168 0.056708 0.031616 9.751036 13.136607 -6169 0.087554 0.054214 9.962119 17.603767 -6170 0.090169 0.047724 10.695559 13.015945 -6171 0.057472 0.069227 8.134994 18.060684 -6172 0.120910 0.080424 11.186915 15.898960 -6173 0.088505 0.029353 8.300332 10.435071 -6174 0.054419 0.015552 7.316346 13.294865 -6175 0.072553 0.040360 11.680221 15.895000 -6176 0.078633 0.054021 17.770709 21.597676 -6177 0.110551 0.036589 9.891876 12.700813 -6178 0.058626 0.030224 11.585704 16.796182 -6179 0.104528 0.116044 15.564022 21.620577 -6180 0.111027 0.070132 9.837985 12.318394 -6181 0.064578 0.029350 12.838619 15.224325 -6182 0.118161 0.083214 15.277512 13.471004 -6183 0.090761 0.033610 10.067348 13.580048 -6184 0.059962 0.038649 8.272509 9.221852 -6185 0.087495 0.068336 7.041406 8.263187 -6186 0.089388 0.159183 12.000867 16.927931 -6187 0.091316 0.051385 14.108879 12.234189 -6188 0.100352 0.081564 9.575469 12.487679 -6189 0.065826 0.048879 18.546220 17.914483 -6190 0.113973 0.068645 8.512998 17.795135 -6191 0.121186 0.044885 9.803983 10.779305 -6192 0.073038 0.048225 11.322207 9.938177 -6193 0.074631 0.037215 9.170495 19.069634 -6194 0.075221 0.044724 12.823999 20.252929 -6195 0.077415 0.056118 13.522381 20.035614 -6196 0.065364 0.042276 7.796502 12.725973 -6197 0.092692 0.058838 13.243353 12.579054 -6198 0.063805 0.085785 10.182970 11.426741 -6199 0.072376 0.048816 5.965736 13.023187 -6200 0.059428 0.051149 14.134033 19.554369 -6201 0.070139 0.037067 11.641992 13.755489 -6202 0.097243 0.049438 10.996156 14.960676 -6203 0.091108 0.051654 12.451275 18.551969 -6204 0.076441 0.049166 14.607757 14.566630 -6205 0.081453 0.033480 9.395027 16.079556 -6206 0.045601 0.031090 8.087728 10.511309 -6207 0.096678 0.040541 14.146779 12.164423 -6208 0.089486 0.058060 9.935708 11.778049 -6209 0.132859 0.081235 9.117570 10.938935 -6210 0.155568 0.057190 10.306120 15.812947 -6211 0.063664 0.044265 10.232996 11.958394 -6212 0.100982 0.072557 7.963645 10.190113 -6213 0.064602 0.055211 7.563402 11.527274 -6214 0.061496 0.029429 7.881170 11.108422 -6215 0.112277 0.077116 11.586439 21.801462 -6216 0.063061 0.045981 6.751074 11.467026 -6217 0.061776 0.024152 16.382113 16.764418 -6218 0.121917 0.090320 11.492282 17.883726 -6219 0.075543 0.057347 8.820790 10.588207 -6220 0.047469 0.031620 8.292183 15.110195 -6221 0.037678 0.029573 8.720177 8.220266 -6222 0.092000 0.073158 8.825256 9.542281 -6223 0.068172 0.042880 8.943303 11.637442 -6224 0.090126 0.038930 12.634222 19.236870 -6225 0.052956 0.033124 6.633794 15.117319 -6226 0.107990 0.034008 12.806957 19.576518 -6227 0.067014 0.026702 11.393993 14.774170 -6228 0.076035 0.041635 8.340157 11.542202 -6229 0.086455 0.073303 15.437466 14.391580 -6230 0.089255 0.061627 12.373958 16.260673 -6231 0.036845 0.028844 8.923197 9.811413 -6232 0.058282 0.034677 16.114947 17.398959 -6233 0.079544 0.068912 8.778605 12.286846 -6234 0.112043 0.065947 8.342312 8.736951 -6235 0.035557 0.024774 8.517430 8.793975 -6236 0.028666 0.021432 8.467608 12.200407 -6237 0.072128 0.052975 12.664293 14.714679 -6238 0.089731 0.044707 10.812792 13.498349 -6239 0.082404 0.063871 9.441321 12.230475 -6240 0.073587 0.062217 10.466000 16.151692 -6241 0.102621 0.072290 7.675586 13.808564 -6242 0.082186 0.055902 12.461948 10.334770 -6243 0.069990 0.053390 7.582560 12.153038 -6244 0.097669 0.042195 10.517263 14.418988 -6245 0.107806 0.102063 11.752933 10.083315 -6246 0.093092 0.034056 13.375094 10.368250 -6247 0.047556 0.023058 7.268064 11.252992 -6248 0.071716 0.036799 12.930729 12.433992 -6249 0.110483 0.096321 10.773867 19.226687 -6250 0.135338 0.050870 12.234831 11.973945 -6251 0.058753 0.032794 15.417319 11.712909 -6252 0.071839 0.041616 11.455821 15.419684 -6253 0.082501 0.034596 10.420808 11.875682 -6254 0.097878 0.048608 7.769426 10.224831 -6255 0.091361 0.044561 8.075870 10.120453 -6256 0.078960 0.057068 12.045948 14.683322 -6257 0.129953 0.071407 11.538894 19.314312 -6258 0.055854 0.031692 9.148029 11.788792 -6259 0.051573 0.027100 7.331050 12.007630 -6260 0.097620 0.054287 6.290495 8.808387 -6261 0.064399 0.029289 11.679012 14.693304 -6262 0.065400 0.050712 9.985327 9.093871 -6263 0.060987 0.030980 6.472948 8.426865 -6264 0.079546 0.046813 8.621164 13.931884 -6265 0.074549 0.060937 7.536851 9.738012 -6266 0.141919 0.034605 14.752730 13.864311 -6267 0.194267 0.074292 17.508483 15.736824 -6268 0.085891 0.051222 12.808028 16.860086 -6269 0.062068 0.030403 7.691576 11.803362 -6270 0.106155 0.058157 10.077079 13.667605 -6271 0.052817 0.033984 10.589711 8.808676 -6272 0.073842 0.046239 9.655334 10.964508 -6273 0.064450 0.037373 10.809518 12.972702 -6274 0.057088 0.033471 12.959563 15.616943 -6275 0.066511 0.039883 10.503429 12.472994 -6276 0.051227 0.040747 8.785191 16.659373 -6277 0.074076 0.040734 7.366857 9.175099 -6278 0.061492 0.043720 7.049817 9.532968 -6279 0.066802 0.029417 7.667162 7.489039 -6280 0.093105 0.063135 9.058211 11.566189 -6281 0.078769 0.064507 10.380359 20.284530 -6282 0.068322 0.067444 12.829252 11.851140 -6283 0.062453 0.031979 16.956482 15.987250 -6284 0.096234 0.037805 12.109132 16.090195 -6285 0.065543 0.038897 8.833064 19.504508 -6286 0.097551 0.069664 12.099403 15.609623 -6287 0.113121 0.049668 11.050029 16.363120 -6288 0.046216 0.026767 7.778865 8.114373 -6289 0.066865 0.028356 10.759166 13.569280 -6290 0.088469 0.071360 10.545682 12.198210 -6291 0.090913 0.055592 8.848680 14.366291 -6292 0.106336 0.040021 13.255533 21.621346 -6293 0.049052 0.027578 7.872018 11.134541 -6294 0.059255 0.042150 14.421687 19.858265 -6295 0.151897 0.126709 11.801978 19.379701 -6296 0.075632 0.040729 10.991195 12.381553 -6297 0.104017 0.071892 9.736825 7.824199 -6298 0.106663 0.061514 10.824309 13.515891 -6299 0.058404 0.025578 6.048235 10.642536 -6300 0.082920 0.055507 10.150867 10.371376 -6301 0.098025 0.058007 9.445444 13.363703 -6302 0.058558 0.043037 8.681477 13.931499 -6303 0.091969 0.056346 7.395321 13.823441 -6304 0.069686 0.036750 9.494334 12.776110 -6305 0.117602 0.052027 7.965814 11.904777 -6306 0.105083 0.084678 18.457780 14.458459 -6307 0.122187 0.078948 10.986586 12.330037 -6308 0.082421 0.040356 8.231922 9.787405 -6309 0.072906 0.057917 9.988977 15.861123 -6310 0.078807 0.035307 11.905406 12.358283 -6311 0.037799 0.021489 8.391817 8.477114 -6312 0.099363 0.069360 10.167142 14.211756 -6313 0.091396 0.065233 7.794889 15.487053 -6314 0.088285 0.075583 13.063034 13.436584 -6315 0.055350 0.032990 9.036610 13.151228 -6316 0.096998 0.056401 7.893892 13.038253 -6317 0.039204 0.027117 7.803408 14.071871 -6318 0.095919 0.110291 7.142634 11.300891 -6319 0.101398 0.053406 8.928525 13.113276 -6320 0.111851 0.095998 8.206867 11.235792 -6321 0.079010 0.033580 11.590060 13.564114 -6322 0.055167 0.024836 12.879487 23.759603 -6323 0.100970 0.085771 10.524300 12.605220 -6324 0.077316 0.059192 8.314738 11.653577 -6325 0.090650 0.066168 9.768275 15.340994 -6326 0.042573 0.021083 7.374984 12.486119 -6327 0.071694 0.080593 9.831587 10.041115 -6328 0.082996 0.055157 7.933869 13.501910 -6329 0.075204 0.053648 9.045711 11.953869 -6330 0.066663 0.047663 9.315483 15.679039 -6331 0.063178 0.057049 8.548981 9.888494 -6332 0.052222 0.025105 10.984242 13.046718 -6333 0.118330 0.079610 12.027968 12.316193 -6334 0.058898 0.019565 7.185121 10.762082 -6335 0.057496 0.034081 13.066206 13.028977 -6336 0.086500 0.052651 13.543432 23.343474 -6337 0.053569 0.022976 6.426881 8.364227 -6338 0.125816 0.049933 14.113258 15.131635 -6339 0.082426 0.047093 10.555348 14.551777 -6340 0.051895 0.050864 6.773008 10.528696 -6341 0.119697 0.121150 14.624821 14.881485 -6342 0.048387 0.036819 4.891514 7.751604 -6343 0.103181 0.062010 11.284333 15.788676 -6344 0.065159 0.030699 8.920438 14.259209 -6345 0.091535 0.039158 15.000811 19.915382 -6346 0.089924 0.049985 8.098761 9.484468 -6347 0.070055 0.047866 10.011200 17.038807 -6348 0.057359 0.046560 7.823222 12.755850 -6349 0.069354 0.040822 10.027644 12.534915 -6350 0.084292 0.037437 10.562166 15.245446 -6351 0.052614 0.042675 8.872270 13.790185 -6352 0.116672 0.070811 18.883098 20.855036 -6353 0.145650 0.064647 9.741737 13.283484 -6354 0.057199 0.039452 8.918879 9.307732 -6355 0.055334 0.019433 7.758258 14.113871 -6356 0.069373 0.036608 9.785971 12.406434 -6357 0.063264 0.053789 8.822920 12.640101 -6358 0.032245 0.022483 7.184689 7.577153 -6359 0.044459 0.027009 6.719057 7.681951 -6360 0.110556 0.104696 11.735559 11.040882 -6361 0.053423 0.024221 10.094101 11.616784 -6362 0.046381 0.036207 10.369759 12.917131 -6363 0.063361 0.039382 11.922466 9.816335 -6364 0.065733 0.074786 9.047167 12.434326 -6365 0.053691 0.032896 10.283195 11.027952 -6366 0.057377 0.027412 5.413917 11.232587 -6367 0.072839 0.039985 8.095715 10.914488 -6368 0.119608 0.108471 11.551794 16.725478 -6369 0.061472 0.033419 10.529477 14.136625 -6370 0.051266 0.023796 7.570114 8.048911 -6371 0.081287 0.036043 8.712927 12.221985 -6372 0.103999 0.047143 8.765970 22.604510 -6373 0.074942 0.073526 11.218693 11.845520 -6374 0.074214 0.029610 10.028894 13.112334 -6375 0.062734 0.046529 10.011380 14.209371 -6376 0.054105 0.032939 9.897185 13.389541 -6377 0.072941 0.058940 12.048283 14.314001 -6378 0.051283 0.036519 7.367383 9.910987 -6379 0.074038 0.036247 10.381304 11.133029 -6380 0.079740 0.071916 9.239149 13.079150 -6381 0.061498 0.030381 8.344014 8.202340 -6382 0.088137 0.031150 10.334946 11.569887 -6383 0.079808 0.054060 6.907833 12.506482 -6384 0.071417 0.036023 11.379810 10.512472 -6385 0.064732 0.062435 10.942814 10.339110 -6386 0.149925 0.133177 9.307286 15.334259 -6387 0.051044 0.020172 7.890902 8.109479 -6388 0.094275 0.029456 9.239083 7.737986 -6389 0.138077 0.065166 9.643338 11.236725 -6390 0.062106 0.024545 4.835815 9.647756 -6391 0.068320 0.060617 7.240010 9.006213 -6392 0.096487 0.058302 13.547661 16.738359 -6393 0.082680 0.083464 11.207254 12.600245 -6394 0.071380 0.036048 7.353253 9.938466 -6395 0.061142 0.038931 8.368578 12.549435 -6396 0.077170 0.033788 9.407327 13.662459 -6397 0.106382 0.100038 9.234371 12.288996 -6398 0.109335 0.075253 9.514750 11.540031 -6399 0.065555 0.037751 5.231053 8.068660 -6400 0.068584 0.046732 8.013515 10.674754 -6401 0.071986 0.028833 10.300029 14.176962 -6402 0.142180 0.088977 11.983256 19.230506 -6403 0.088156 0.039487 9.114404 8.435175 -6404 0.077723 0.028902 10.247626 14.831928 -6405 0.071827 0.042572 11.901595 12.515204 -6406 0.071747 0.039711 5.779460 11.375790 -6407 0.063055 0.043513 5.739941 12.342579 -6408 0.098054 0.055655 10.389539 14.260117 -6409 0.088075 0.044556 11.717516 13.880803 -6410 0.074646 0.044405 11.487606 13.178617 -6411 0.065253 0.041047 8.131753 8.747360 -6412 0.092037 0.063994 9.263850 15.357987 -6413 0.083647 0.073250 10.237053 12.224162 -6414 0.044326 0.027867 7.310260 11.973182 -6415 0.114944 0.049980 11.672308 15.290144 -6416 0.100142 0.070378 13.676410 12.149979 -6417 0.043130 0.026284 6.157188 9.288548 -6418 0.068412 0.064175 10.192396 13.132836 -6419 0.140182 0.112416 15.287081 16.718206 -6420 0.078607 0.069449 9.571123 15.464679 -6421 0.088022 0.078578 16.388289 18.113051 -6422 0.121596 0.060760 15.472447 11.597411 -6423 0.055576 0.033427 8.303934 15.667665 -6424 0.102299 0.096188 8.365330 14.121295 -6425 0.072494 0.037408 12.190246 8.388691 -6426 0.092520 0.048125 7.769066 11.403506 -6427 0.049832 0.027924 13.045593 18.057720 -6428 0.094653 0.075200 6.777338 11.392587 -6429 0.072554 0.037207 10.445770 9.248957 -6430 0.089429 0.048198 9.398411 12.198183 -6431 0.073317 0.034960 9.370117 12.745160 -6432 0.060331 0.030380 10.915566 13.022658 -6433 0.113331 0.061650 7.938696 10.725509 -6434 0.061392 0.034489 10.039097 11.239155 -6435 0.070447 0.044362 8.039295 11.532951 -6436 0.084799 0.049808 12.269737 12.835520 -6437 0.055263 0.029268 8.367224 12.431812 -6438 0.116296 0.070171 11.165450 17.690319 -6439 0.072415 0.073548 7.449926 12.742174 -6440 0.079628 0.034472 8.859145 10.029638 -6441 0.073962 0.035487 12.421304 16.365395 -6442 0.170401 0.121979 11.963833 20.899975 -6443 0.090302 0.046527 8.690797 14.275550 -6444 0.080010 0.037616 9.739109 11.404998 -6445 0.095038 0.081533 14.197980 16.292708 -6446 0.051991 0.039997 5.181500 7.640419 -6447 0.059311 0.026270 7.147174 11.816443 -6448 0.076551 0.039297 8.450976 12.177313 -6449 0.057809 0.035702 6.167888 11.332907 -6450 0.086978 0.022794 10.728534 13.633558 -6451 0.074475 0.060076 10.941318 9.433887 -6452 0.103901 0.065660 11.961832 13.194083 -6453 0.059736 0.039456 12.353657 13.021190 -6454 0.082750 0.046652 7.698569 11.515281 -6455 0.075907 0.039536 10.795251 10.360447 -6456 0.041185 0.031888 7.395995 6.304968 -6457 0.089218 0.084206 9.442196 12.711644 -6458 0.076961 0.064128 11.531407 14.470276 -6459 0.057253 0.023793 9.592455 10.956238 -6460 0.045739 0.028311 4.561087 7.889170 -6461 0.046526 0.022220 11.341895 12.026655 -6462 0.084137 0.063004 8.933938 12.139219 -6463 0.067413 0.044264 11.989383 11.411679 -6464 0.079943 0.042756 7.134522 8.827644 -6465 0.101634 0.046564 13.593880 9.534730 -6466 0.064758 0.053508 12.543435 12.567492 -6467 0.076790 0.055307 14.818665 18.806373 -6468 0.145429 0.051519 11.817572 16.159146 -6469 0.045122 0.027120 8.737227 8.047040 -6470 0.061235 0.044049 12.280355 10.323392 -6471 0.127324 0.077203 9.452110 15.807441 -6472 0.073796 0.048025 7.154268 11.916152 -6473 0.091109 0.035965 8.015517 12.544033 -6474 0.088331 0.052095 8.610238 11.467003 -6475 0.058789 0.028459 9.295487 13.444531 -6476 0.100294 0.046715 11.170250 14.353219 -6477 0.117416 0.071245 10.283292 10.471049 -6478 0.070123 0.047157 10.439821 15.176691 -6479 0.090047 0.065653 9.855781 14.486997 -6480 0.066823 0.037630 10.754802 15.281884 -6481 0.079986 0.031469 10.299964 14.853400 -6482 0.054201 0.028974 9.773137 13.232926 -6483 0.062322 0.044010 8.430737 7.897703 -6484 0.068588 0.043231 12.559902 15.792531 -6485 0.137293 0.095867 10.693606 13.521873 -6486 0.084184 0.040470 13.697409 17.668609 -6487 0.110584 0.068425 12.491117 15.110609 -6488 0.095461 0.059673 12.281772 15.286845 -6489 0.088357 0.026669 7.906639 9.157130 -6490 0.096437 0.072995 9.952509 11.324733 -6491 0.046534 0.033073 7.706993 10.909122 -6492 0.109636 0.111141 12.417582 12.646512 -6493 0.048749 0.042238 9.462182 11.367064 -6494 0.101270 0.050909 8.375893 12.371792 -6495 0.119704 0.083389 15.116936 22.710065 -6496 0.093637 0.075137 12.762044 10.649655 -6497 0.060037 0.026531 9.889868 13.073639 -6498 0.084757 0.057118 12.726811 17.279968 -6499 0.070550 0.053162 9.019148 8.557027 -6500 0.061924 0.034838 10.520784 14.780798 -6501 0.041094 0.028411 7.244949 6.546323 -6502 0.076358 0.039464 8.912803 10.776144 -6503 0.070578 0.051057 7.537582 11.783818 -6504 0.066894 0.030952 10.293144 11.868265 -6505 0.090394 0.065382 10.291153 19.470580 -6506 0.093163 0.062790 12.511992 15.349384 -6507 0.127349 0.048537 13.521622 14.806662 -6508 0.062585 0.028006 5.811685 9.500645 -6509 0.066703 0.063859 8.609052 12.853119 -6510 0.059437 0.047587 7.770337 8.333941 -6511 0.096046 0.057534 9.471981 8.725372 -6512 0.094762 0.044611 11.288849 17.571305 -6513 0.075331 0.060909 20.023663 17.228415 -6514 0.074286 0.057901 9.091606 13.434377 -6515 0.083981 0.034849 9.483893 15.025883 -6516 0.070542 0.042211 8.562427 11.024641 -6517 0.109921 0.050791 10.341110 12.884532 -6518 0.093619 0.042834 6.858159 10.856586 -6519 0.047399 0.038950 8.393674 8.376852 -6520 0.073890 0.048427 11.202479 12.754030 -6521 0.065007 0.041845 11.087846 11.300723 -6522 0.084956 0.083972 11.632802 13.538240 -6523 0.064745 0.034647 12.419428 14.503074 -6524 0.083176 0.046815 11.802317 10.079057 -6525 0.091636 0.032630 15.814148 13.443388 -6526 0.089840 0.045893 10.466916 18.654971 -6527 0.110226 0.045415 13.763130 15.367313 -6528 0.086376 0.030976 9.357925 14.228280 -6529 0.074212 0.069062 10.168056 14.224675 -6530 0.090762 0.038870 14.964417 18.307519 -6531 0.049854 0.022793 8.537577 8.469038 -6532 0.061251 0.045695 8.467908 12.987246 -6533 0.084544 0.047185 10.485898 12.139172 -6534 0.117656 0.066341 12.132979 13.592456 -6535 0.045657 0.063771 11.138663 12.468097 -6536 0.067838 0.045844 12.550219 14.719254 -6537 0.049345 0.027801 6.630584 7.729880 -6538 0.102447 0.046081 12.466003 15.267928 -6539 0.064819 0.039539 6.950137 19.366412 -6540 0.073901 0.049445 8.604310 8.783368 -6541 0.066048 0.035430 12.179921 15.192213 -6542 0.097953 0.039826 17.630106 19.935031 -6543 0.046082 0.032479 5.904147 12.103188 -6544 0.065144 0.036300 7.231438 8.549894 -6545 0.036330 0.029763 7.026462 7.764233 -6546 0.102961 0.052775 10.245643 11.662928 -6547 0.067733 0.028445 7.842616 11.632019 -6548 0.089601 0.030976 10.030252 14.846689 -6549 0.138198 0.098452 12.587688 15.485809 -6550 0.069143 0.027678 6.714498 10.669299 -6551 0.091650 0.051590 6.128416 9.269461 -6552 0.061251 0.038234 9.699833 10.189801 -6553 0.077277 0.040375 9.490865 9.286857 -6554 0.068665 0.043994 5.962657 10.154295 -6555 0.089115 0.057041 7.321625 10.711882 -6556 0.074063 0.059574 10.364859 14.337227 -6557 0.080001 0.058993 10.270937 10.899319 -6558 0.067776 0.051020 14.508617 16.168384 -6559 0.081749 0.052311 12.582678 13.982767 -6560 0.069808 0.054717 9.230706 12.107669 -6561 0.075992 0.039696 9.579596 18.253675 -6562 0.041811 0.020669 10.478942 12.844692 -6563 0.099406 0.062484 10.562454 12.491320 -6564 0.047408 0.027346 10.307893 15.014653 -6565 0.054863 0.027654 12.141789 9.726519 -6566 0.095653 0.122676 10.700026 14.539961 -6567 0.046457 0.021278 9.534136 8.513929 -6568 0.054383 0.033889 11.294108 14.423663 -6569 0.080428 0.051260 8.757733 13.492070 -6570 0.073802 0.031948 6.505746 6.996647 -6571 0.079329 0.038276 10.257113 13.812853 -6572 0.070877 0.028769 9.904544 14.810457 -6573 0.074242 0.063639 11.330334 11.910606 -6574 0.075705 0.033006 6.818606 8.447422 -6575 0.107136 0.068061 11.854901 17.273778 -6576 0.047547 0.022701 10.187229 13.042559 -6577 0.037196 0.022473 8.308433 13.296708 -6578 0.118966 0.078652 15.836385 25.057539 -6579 0.065039 0.023951 8.968532 8.976759 -6580 0.077509 0.058801 11.893456 12.539460 -6581 0.081988 0.053535 12.575816 13.220304 -6582 0.094730 0.040981 9.915000 10.609151 -6583 0.036927 0.016358 7.653769 10.659067 -6584 0.052689 0.039707 9.007983 15.752981 -6585 0.063668 0.051084 7.394724 10.891488 -6586 0.093106 0.046615 11.822469 10.268099 -6587 0.113669 0.039724 9.278454 12.578680 -6588 0.115854 0.084063 11.808163 15.994433 -6589 0.050509 0.040471 10.868768 11.029466 -6590 0.059326 0.026720 14.209308 14.989601 -6591 0.064068 0.044282 13.900921 15.592954 -6592 0.048780 0.038943 11.687817 16.294343 -6593 0.074682 0.051837 11.870476 12.404722 -6594 0.057129 0.033529 7.043024 10.118427 -6595 0.089449 0.032236 8.301028 12.082429 -6596 0.078059 0.066744 9.185859 13.050200 -6597 0.064816 0.021756 8.607045 14.123903 -6598 0.053551 0.055527 10.681807 15.833422 -6599 0.051056 0.031789 10.092676 15.938962 -6600 0.069579 0.026790 10.000131 16.502962 -6601 0.039569 0.027079 5.672559 10.840666 -6602 0.055005 0.024228 5.284167 7.912446 -6603 0.113343 0.094149 13.523351 15.485306 -6604 0.075306 0.040466 8.337522 12.173512 -6605 0.088490 0.042672 12.571418 18.328229 -6606 0.056671 0.049165 11.537468 12.880175 -6607 0.104145 0.067854 11.998695 15.505075 -6608 0.079260 0.033142 9.115621 10.101885 -6609 0.064384 0.035775 10.187581 16.842466 -6610 0.094641 0.077076 9.506897 12.541496 -6611 0.074401 0.055992 13.612089 14.539475 -6612 0.076707 0.054614 6.903539 11.553969 -6613 0.107723 0.057965 11.441292 14.689444 -6614 0.046208 0.038557 16.016425 20.202711 -6615 0.063102 0.030323 8.467671 12.512707 -6616 0.072767 0.074456 8.424139 11.664006 -6617 0.099433 0.027434 8.961926 9.203551 -6618 0.056085 0.035562 9.684920 11.348555 -6619 0.050634 0.031444 8.232586 11.959578 -6620 0.082300 0.052255 10.577554 13.611727 -6621 0.103175 0.065044 14.573206 14.257856 -6622 0.097257 0.063847 13.724026 16.594685 -6623 0.058492 0.035028 10.780833 17.768663 -6624 0.091914 0.058969 13.757456 17.355889 -6625 0.109732 0.095137 9.049873 11.216976 -6626 0.074487 0.026808 9.827011 11.875291 -6627 0.160495 0.158513 12.731807 16.641235 -6628 0.117291 0.066523 7.207347 11.262382 -6629 0.067462 0.038622 10.222225 12.035008 -6630 0.047500 0.018724 9.981239 13.934370 -6631 0.056191 0.031836 8.858065 15.633947 -6632 0.113101 0.080447 6.070451 8.980807 -6633 0.103972 0.074855 10.141447 12.216046 -6634 0.066230 0.055870 9.042328 19.646917 -6635 0.057802 0.030235 6.009898 10.780215 -6636 0.102183 0.079642 9.398723 14.125730 -6637 0.083466 0.068369 12.415460 13.383665 -6638 0.075449 0.038925 10.956560 14.065840 -6639 0.057077 0.057394 11.633492 11.302226 -6640 0.083754 0.061820 7.814767 9.191709 -6641 0.147328 0.053910 7.482434 11.746680 -6642 0.161917 0.070397 13.262460 14.300531 -6643 0.095653 0.092783 10.977895 13.817621 -6644 0.078813 0.028963 8.060130 13.197804 -6645 0.069351 0.041420 12.316465 12.103347 -6646 0.079058 0.043544 9.949701 13.867785 -6647 0.045481 0.031183 9.768917 10.238007 -6648 0.066598 0.053117 11.787571 11.358829 -6649 0.053742 0.037670 11.547797 17.631584 -6650 0.042554 0.039733 10.178268 13.573843 -6651 0.107790 0.083721 10.474914 10.519519 -6652 0.070738 0.042595 12.077934 13.538360 -6653 0.074472 0.035403 12.317353 16.934310 -6654 0.060853 0.050380 7.452673 10.857961 -6655 0.077102 0.049173 8.286823 12.340751 -6656 0.079955 0.032370 7.839909 7.878574 -6657 0.061636 0.034558 9.949785 15.134153 -6658 0.049889 0.039865 9.592516 11.514669 -6659 0.076273 0.046676 8.135180 9.554435 -6660 0.040617 0.031697 9.428147 10.276547 -6661 0.063857 0.039470 7.908319 12.309414 -6662 0.070215 0.029847 8.031399 9.017165 -6663 0.051397 0.024593 9.554473 13.938027 -6664 0.056946 0.036699 6.635745 9.062913 -6665 0.087249 0.067688 10.667820 14.528807 -6666 0.080701 0.053838 10.762020 13.256086 -6667 0.078239 0.045727 10.476231 16.631294 -6668 0.109810 0.074352 6.892772 8.065473 -6669 0.052056 0.027996 8.260141 11.981515 -6670 0.083520 0.034884 9.459707 9.707597 -6671 0.084360 0.037793 10.275100 13.147983 -6672 0.059711 0.036540 9.731304 11.775667 -6673 0.134193 0.073021 7.877217 8.731184 -6674 0.068949 0.044296 13.911079 14.935090 -6675 0.078463 0.083007 18.959406 20.437533 -6676 0.089704 0.026630 8.945389 9.311104 -6677 0.028594 0.032935 11.260293 13.832901 -6678 0.041323 0.029229 9.406312 10.586788 -6679 0.101680 0.082705 10.245381 11.461004 -6680 0.053124 0.021141 9.480726 11.103259 -6681 0.079964 0.060248 8.636218 18.652263 -6682 0.052384 0.027671 9.072886 14.484653 -6683 0.083942 0.069638 9.800006 8.885398 -6684 0.111346 0.045296 19.729284 27.312784 -6685 0.083006 0.058596 12.298240 21.739183 -6686 0.045938 0.037494 7.440408 12.557142 -6687 0.114792 0.097635 10.277244 15.953729 -6688 0.044516 0.032002 10.546467 11.926283 -6689 0.060132 0.040598 11.862777 18.758261 -6690 0.109484 0.101901 12.459519 15.301573 -6691 0.073450 0.041494 9.729154 13.358151 -6692 0.075323 0.049449 9.233756 10.115977 -6693 0.145373 0.060455 12.880400 16.693692 -6694 0.060566 0.029423 10.067613 15.047661 -6695 0.058044 0.030610 9.579320 11.980073 -6696 0.096735 0.035200 13.874408 13.061646 -6697 0.058223 0.029399 11.828119 8.831535 -6698 0.065804 0.042168 10.079907 12.229448 -6699 0.093374 0.038279 9.906943 11.933963 -6700 0.089413 0.043532 15.769780 21.537800 -6701 0.086909 0.062479 9.687730 14.090083 -6702 0.061745 0.030591 8.844916 8.659901 -6703 0.066181 0.061222 8.321547 12.991695 -6704 0.040320 0.027445 7.721286 7.246537 -6705 0.051680 0.028402 10.206142 7.076865 -6706 0.071337 0.033209 6.756184 9.369200 -6707 0.073421 0.039680 9.122762 9.798044 -6708 0.102772 0.104060 14.531347 15.527496 -6709 0.071139 0.057606 10.651653 10.766625 -6710 0.062606 0.055571 5.940772 9.810664 -6711 0.100665 0.050128 9.191171 14.984901 -6712 0.088822 0.025006 5.389249 6.987844 -6713 0.054687 0.070073 11.316875 11.245920 -6714 0.090848 0.050405 8.899563 12.126267 -6715 0.086532 0.060090 14.791256 23.663376 -6716 0.092419 0.053475 7.544365 10.098369 -6717 0.090711 0.043966 8.962137 12.081635 -6718 0.098306 0.059801 10.213040 15.762226 -6719 0.085749 0.040911 6.178745 8.725487 -6720 0.048380 0.029982 6.012883 10.131260 -6721 0.067819 0.049103 15.076811 19.214293 -6722 0.059956 0.025497 13.579632 14.198802 -6723 0.068482 0.048559 10.794605 12.058130 -6724 0.060170 0.064356 15.311099 16.397877 -6725 0.070553 0.061301 11.327873 15.831728 -6726 0.068467 0.035275 9.596028 8.934724 -6727 0.056128 0.049238 9.330547 15.653675 -6728 0.077396 0.048648 9.423957 10.711238 -6729 0.053531 0.044386 10.009211 10.396189 -6730 0.097137 0.064036 9.956473 14.433748 -6731 0.047502 0.034584 17.208966 19.715301 -6732 0.066366 0.033631 10.429574 10.729277 -6733 0.097763 0.083312 6.979875 11.658724 -6734 0.119354 0.039832 16.487817 17.030154 -6735 0.043620 0.029783 7.791270 12.004082 -6736 0.053294 0.047277 6.795466 8.353389 -6737 0.102143 0.055870 11.413950 12.715087 -6738 0.057208 0.029255 8.491796 7.722202 -6739 0.102893 0.066019 9.514843 17.006125 -6740 0.113332 0.051694 11.060416 15.973840 -6741 0.059251 0.033159 11.782495 14.081510 -6742 0.067132 0.056728 11.197940 17.418957 -6743 0.081459 0.057587 9.908104 9.288616 -6744 0.081483 0.051077 4.923942 8.391057 -6745 0.045434 0.063939 14.540234 14.982078 -6746 0.117769 0.097194 8.289986 12.038287 -6747 0.082708 0.051145 8.066548 10.469418 -6748 0.058526 0.037782 7.680290 7.137103 -6749 0.129620 0.078176 11.704358 11.673428 -6750 0.119293 0.088614 16.823311 16.886620 -6751 0.070005 0.045535 13.447199 18.457074 -6752 0.073016 0.029365 9.347693 12.125713 -6753 0.110916 0.060146 14.316796 13.735570 -6754 0.088331 0.062596 8.794385 14.965607 -6755 0.054426 0.041267 9.267686 10.475290 -6756 0.080965 0.063583 8.763253 20.038975 -6757 0.088816 0.079939 7.823235 14.429749 -6758 0.062953 0.050308 16.977508 10.774190 -6759 0.045893 0.030741 7.813154 8.008911 -6760 0.077878 0.034494 6.638839 12.298243 -6761 0.058773 0.037393 6.911985 11.522531 -6762 0.075578 0.064412 9.542643 11.189257 -6763 0.049718 0.039316 8.163995 11.820493 -6764 0.036584 0.022893 12.387936 9.604602 -6765 0.094916 0.065180 7.035146 12.335127 -6766 0.115334 0.058457 10.576572 13.976074 -6767 0.131119 0.070607 11.274793 17.335122 -6768 0.071748 0.045053 5.600358 8.742721 -6769 0.087432 0.050252 14.857527 16.402210 -6770 0.081515 0.064889 14.086437 32.592744 -6771 0.070033 0.033632 6.524982 9.167202 -6772 0.077320 0.037991 12.493070 14.884319 -6773 0.095114 0.051128 13.655189 15.807307 -6774 0.057196 0.067244 14.097935 12.514914 -6775 0.057846 0.026665 9.760069 11.426629 -6776 0.064586 0.027381 10.187552 14.350323 -6777 0.067111 0.042853 20.063209 21.917048 -6778 0.038428 0.028535 8.307274 10.461644 -6779 0.077316 0.060179 11.685467 10.279470 -6780 0.075821 0.055092 10.261065 11.763647 -6781 0.095257 0.064115 13.743086 18.014611 -6782 0.075939 0.030203 12.315177 15.383815 -6783 0.108912 0.069059 9.655793 10.080781 -6784 0.109347 0.062818 9.001711 12.992934 -6785 0.091195 0.038092 10.841358 16.031382 -6786 0.048280 0.045996 10.646894 14.627416 -6787 0.103378 0.067884 9.551633 11.618873 -6788 0.084609 0.036540 7.655054 13.471323 -6789 0.102422 0.033676 8.398499 14.181426 -6790 0.062536 0.061815 9.741878 10.867656 -6791 0.095602 0.061701 14.767343 14.479839 -6792 0.102487 0.071740 9.300732 15.686655 -6793 0.055960 0.027026 14.812351 15.881532 -6794 0.120377 0.071262 14.060112 22.109444 -6795 0.092181 0.039831 16.894838 15.033006 -6796 0.073624 0.066186 14.287697 15.002759 -6797 0.105032 0.075990 8.764421 14.993427 -6798 0.089931 0.049378 10.039307 11.181452 -6799 0.065132 0.046115 7.320350 9.434077 -6800 0.090976 0.066150 9.450692 11.526915 -6801 0.043276 0.026071 8.199441 9.658500 -6802 0.097647 0.038879 11.879061 13.200719 -6803 0.062719 0.034854 9.044007 9.368273 -6804 0.076156 0.038912 9.749490 13.992035 -6805 0.066963 0.043992 10.577305 13.870090 -6806 0.106051 0.071533 9.138749 11.994716 -6807 0.101763 0.044050 12.888729 22.401248 -6808 0.092769 0.042291 8.066598 11.264952 -6809 0.059357 0.044241 5.955427 10.143374 -6810 0.065064 0.051844 9.790377 15.049614 -6811 0.088507 0.040924 8.691141 11.463121 -6812 0.094559 0.045434 8.604545 11.169512 -6813 0.104242 0.050060 9.610713 9.712625 -6814 0.064229 0.023894 6.947565 14.313184 -6815 0.041613 0.021096 8.307066 10.350458 -6816 0.058646 0.028388 10.199387 10.629013 -6817 0.052422 0.034986 15.951795 15.795306 -6818 0.086764 0.082392 11.482666 10.912447 -6819 0.066443 0.042080 11.875404 17.259745 -6820 0.083925 0.074001 13.308803 16.622172 -6821 0.055976 0.048810 13.974765 20.291982 -6822 0.109156 0.062522 16.261655 12.451308 -6823 0.095214 0.050224 12.802858 12.409104 -6824 0.074039 0.049450 10.922995 12.335736 -6825 0.065994 0.055018 9.639654 11.823233 -6826 0.117017 0.074456 11.886455 13.905398 -6827 0.055667 0.034838 12.867651 18.417532 -6828 0.062057 0.024664 7.716755 9.357222 -6829 0.058059 0.040155 9.566199 11.358594 -6830 0.072405 0.041250 7.487764 6.958500 -6831 0.073783 0.066190 12.471283 12.034050 -6832 0.065908 0.032046 8.617148 8.664522 -6833 0.070993 0.036749 6.333733 9.402542 -6834 0.083306 0.065843 7.907360 10.634309 -6835 0.059284 0.025292 6.606596 13.461751 -6836 0.055606 0.043657 9.832034 8.860547 -6837 0.043907 0.037434 8.921875 13.521298 -6838 0.110207 0.088087 12.935990 21.797017 -6839 0.122839 0.047291 11.938913 16.165702 -6840 0.091740 0.072222 6.802854 7.933711 -6841 0.075739 0.042558 7.774324 10.535430 -6842 0.062865 0.028528 12.639794 17.703943 -6843 0.087464 0.043459 7.574410 11.095183 -6844 0.077389 0.033337 7.979347 9.342264 -6845 0.049555 0.025045 9.466103 11.796875 -6846 0.104562 0.067750 11.080766 10.320791 -6847 0.075240 0.038994 9.955662 15.313226 -6848 0.076318 0.051973 15.113260 15.589259 -6849 0.062886 0.044293 14.256270 18.893640 -6850 0.065220 0.037830 7.726106 8.204287 -6851 0.062993 0.026937 7.748917 8.015651 -6852 0.089253 0.059303 16.282152 16.758700 -6853 0.079191 0.055633 9.906344 11.309860 -6854 0.053369 0.038901 10.161470 9.174360 -6855 0.113156 0.086570 13.510847 16.682314 -6856 0.095999 0.076442 10.059106 12.586167 -6857 0.097513 0.067657 13.699042 24.330777 -6858 0.076600 0.023487 6.325725 10.055989 -6859 0.044816 0.046730 9.083545 11.030799 -6860 0.056993 0.028924 8.723153 9.287366 -6861 0.051352 0.029370 6.062490 6.778720 -6862 0.055436 0.058024 8.254999 12.582790 -6863 0.060366 0.039249 11.350153 13.085071 -6864 0.055162 0.038904 4.624028 7.877010 -6865 0.133415 0.057639 13.776022 22.457902 -6866 0.057086 0.024994 5.968544 9.170090 -6867 0.045952 0.042789 6.856574 10.885001 -6868 0.124403 0.073518 12.829693 20.708582 -6869 0.058388 0.024207 13.027697 18.973694 -6870 0.070096 0.031369 11.838256 8.566197 -6871 0.080278 0.053188 13.931179 14.393838 -6872 0.066942 0.029293 11.091847 12.749369 -6873 0.060151 0.036441 10.160461 14.972181 -6874 0.054027 0.030155 8.340730 10.542070 -6875 0.088153 0.056525 8.571119 13.097712 -6876 0.105868 0.063023 13.482670 12.568329 -6877 0.171290 0.079592 11.430728 12.213101 -6878 0.069326 0.033569 12.236905 12.741568 -6879 0.082167 0.068799 9.365743 17.221699 -6880 0.052244 0.046732 12.705675 16.436447 -6881 0.066652 0.045398 15.505984 16.763030 -6882 0.103312 0.076416 8.880157 11.625755 -6883 0.104483 0.093869 12.727125 14.604697 -6884 0.098726 0.049532 8.621544 15.272436 -6885 0.077938 0.043542 8.275092 12.538385 -6886 0.096597 0.045784 9.028546 12.593834 -6887 0.115813 0.041262 10.345259 20.893482 -6888 0.088252 0.025260 8.859444 13.573076 -6889 0.062519 0.027127 10.396182 9.883812 -6890 0.089157 0.073086 7.601600 13.797694 -6891 0.057861 0.034974 7.359632 10.403433 -6892 0.044190 0.019620 7.185241 16.528735 -6893 0.099337 0.064339 11.102774 19.455530 -6894 0.092318 0.066981 6.214489 13.178802 -6895 0.055680 0.039897 7.825999 12.396691 -6896 0.063176 0.051455 15.263184 14.153817 -6897 0.080296 0.053825 8.388316 7.621326 -6898 0.115586 0.048371 9.718454 11.943244 -6899 0.053646 0.031637 7.263231 12.967062 -6900 0.069243 0.030931 12.905256 14.231853 -6901 0.104110 0.037740 9.316386 12.989446 -6902 0.079241 0.062001 11.764008 9.354893 -6903 0.115616 0.051941 9.948970 15.368632 -6904 0.114374 0.068121 9.630246 9.836665 -6905 0.134496 0.092368 9.396684 12.007941 -6906 0.072252 0.041878 8.602000 8.630037 -6907 0.063116 0.040808 7.775045 9.404641 -6908 0.042844 0.032211 8.233109 8.948026 -6909 0.109674 0.083578 15.811537 15.567224 -6910 0.113450 0.088875 12.728223 16.149492 -6911 0.039828 0.032219 9.244809 15.238857 -6912 0.108749 0.086673 6.750126 9.364672 -6913 0.045927 0.036448 7.875494 8.489515 -6914 0.061341 0.031341 8.835889 16.207250 -6915 0.055481 0.044792 8.437275 15.181355 -6916 0.078354 0.070557 6.821855 12.224047 -6917 0.078872 0.038130 11.392433 10.383749 -6918 0.063563 0.024158 8.260294 10.799338 -6919 0.082682 0.060897 10.358322 19.353947 -6920 0.084465 0.050448 7.870002 13.833217 -6921 0.063817 0.022547 17.058464 14.860786 -6922 0.073909 0.029004 5.683721 11.997743 -6923 0.055270 0.024478 10.708972 13.029665 -6924 0.066229 0.029576 6.002975 12.605001 -6925 0.068019 0.051167 8.048443 15.541135 -6926 0.075080 0.026072 6.847853 11.426021 -6927 0.063288 0.049893 6.418645 12.455673 -6928 0.037155 0.025761 10.808068 14.851892 -6929 0.046850 0.022002 9.480224 9.450970 -6930 0.108424 0.063462 9.877616 11.542098 -6931 0.059621 0.024150 7.359477 12.314677 -6932 0.058107 0.030237 7.010323 8.432705 -6933 0.058665 0.042376 12.331115 15.406964 -6934 0.062869 0.041562 7.187709 9.562462 -6935 0.074599 0.039592 15.151689 18.604484 -6936 0.083460 0.038137 11.653942 10.767540 -6937 0.084944 0.062500 14.536002 19.242750 -6938 0.115474 0.064623 12.337828 12.643263 -6939 0.076674 0.096061 11.667055 17.194023 -6940 0.080553 0.043273 7.813732 8.149182 -6941 0.076255 0.042492 16.888000 17.881588 -6942 0.089833 0.062970 17.140766 16.806220 -6943 0.071208 0.044603 13.769724 12.508145 -6944 0.050237 0.036705 9.278321 12.843315 -6945 0.074989 0.053158 10.041577 14.045122 -6946 0.103120 0.049222 11.025564 13.113724 -6947 0.070247 0.072910 11.063274 14.122669 -6948 0.048044 0.022560 8.339320 10.413362 -6949 0.052470 0.041420 10.234713 16.140305 -6950 0.093963 0.053929 8.597531 12.393528 -6951 0.070232 0.036558 11.418195 13.224286 -6952 0.067569 0.034301 11.319480 12.270884 -6953 0.122007 0.065122 21.683771 19.642564 -6954 0.059929 0.041132 9.053422 10.919092 -6955 0.062534 0.041814 8.274231 9.855178 -6956 0.068994 0.053822 8.991814 11.135301 -6957 0.090899 0.047072 7.413924 13.046078 -6958 0.072944 0.058156 8.668634 9.770688 -6959 0.044458 0.021820 6.600661 9.978567 -6960 0.082732 0.060307 15.980671 17.295889 -6961 0.106703 0.054732 9.344057 14.730895 -6962 0.055950 0.041037 5.963138 7.143832 -6963 0.072514 0.035121 6.173046 8.143695 -6964 0.082885 0.039109 11.936265 18.411667 -6965 0.064698 0.057202 10.937772 14.240290 -6966 0.063727 0.049706 7.850044 10.916255 -6967 0.086052 0.074522 7.836106 10.860772 -6968 0.086743 0.065741 8.134756 8.816537 -6969 0.084749 0.054322 8.864366 19.699438 -6970 0.088618 0.054404 7.547363 10.233673 -6971 0.077199 0.041260 9.983221 10.703952 -6972 0.166943 0.103212 13.704565 23.845477 -6973 0.060098 0.044659 11.866308 13.561525 -6974 0.053018 0.039326 8.467352 14.092174 -6975 0.065380 0.042886 11.877385 10.970640 -6976 0.068712 0.065448 5.540385 8.244232 -6977 0.063565 0.033224 8.441429 15.805312 -6978 0.054869 0.037353 8.078099 8.345643 -6979 0.082202 0.055171 11.652554 17.891831 -6980 0.097167 0.053582 6.346759 9.050241 -6981 0.113216 0.053344 9.070863 11.236731 -6982 0.073436 0.042792 11.250638 16.167137 -6983 0.110743 0.108836 14.367029 20.874465 -6984 0.061017 0.027910 8.242200 12.215627 -6985 0.074759 0.030365 13.830686 16.198937 -6986 0.082793 0.090614 12.867531 16.844056 -6987 0.073518 0.056475 7.339687 13.054777 -6988 0.069298 0.039114 9.042943 11.433007 -6989 0.071910 0.042936 11.367288 13.446023 -6990 0.078304 0.057298 8.618306 18.224780 -6991 0.091556 0.045032 9.363998 13.971063 -6992 0.122516 0.061087 13.774549 12.657706 -6993 0.082216 0.042248 9.961687 14.972472 -6994 0.048049 0.015743 9.543842 11.003979 -6995 0.079328 0.050575 10.400601 12.704833 -6996 0.075207 0.055743 9.110337 15.517882 -6997 0.083791 0.053695 7.928869 10.433685 -6998 0.052433 0.034469 10.621663 11.633339 -6999 0.041334 0.017594 7.091059 10.043907 -7000 0.083994 0.056586 7.218276 10.088793 -7001 0.081324 0.079708 16.377271 20.842818 -7002 0.049230 0.036923 8.171592 11.335261 -7003 0.072834 0.027532 11.656796 15.764789 -7004 0.079279 0.039822 10.785733 13.452564 -7005 0.041854 0.022681 11.784761 12.602525 -7006 0.153263 0.057856 19.589815 22.720106 -7007 0.096154 0.051406 8.821940 14.617102 -7008 0.070005 0.041172 6.091726 11.048827 -7009 0.090505 0.053167 13.122740 10.374628 -7010 0.070600 0.040326 6.274198 10.751328 -7011 0.037826 0.025775 6.674267 10.073103 -7012 0.073002 0.046067 11.993295 15.638978 -7013 0.046855 0.027624 7.217636 9.953337 -7014 0.066341 0.069947 8.129832 10.998766 -7015 0.089248 0.042463 8.838787 11.050530 -7016 0.080191 0.042231 9.903320 14.304452 -7017 0.151710 0.093185 8.975767 13.512354 -7018 0.109710 0.085542 16.100919 23.721189 -7019 0.122823 0.097850 9.958112 15.391069 -7020 0.051211 0.032350 10.147297 11.111873 -7021 0.044086 0.033974 8.703168 15.540410 -7022 0.076783 0.043305 7.936322 10.643348 -7023 0.045999 0.027061 10.843096 18.478334 -7024 0.086464 0.049270 7.497687 11.227719 -7025 0.119719 0.072969 12.924854 11.691922 -7026 0.076291 0.043599 10.850594 13.409679 -7027 0.053991 0.047907 6.870476 8.648222 -7028 0.068456 0.049093 8.829179 9.597087 -7029 0.091738 0.052542 9.011712 13.820643 -7030 0.051608 0.032048 6.832601 12.262096 -7031 0.166901 0.143756 16.702471 15.209818 -7032 0.154820 0.106029 9.409830 11.993420 -7033 0.093513 0.060719 11.904109 14.586005 -7034 0.059990 0.035218 10.243967 13.575638 -7035 0.071458 0.051789 11.941005 20.788433 -7036 0.102322 0.065437 7.469062 11.459940 -7037 0.059062 0.043565 12.664106 15.615812 -7038 0.079106 0.052165 11.040251 14.134737 -7039 0.051539 0.039574 7.532966 9.898634 -7040 0.096256 0.059404 12.893495 12.748726 -7041 0.066285 0.029220 8.011509 12.424507 -7042 0.052007 0.029808 7.895317 10.454814 -7043 0.090053 0.072628 17.245119 16.977999 -7044 0.069710 0.027360 13.718815 14.020551 -7045 0.119978 0.103964 10.828990 14.332475 -7046 0.070205 0.048842 9.473205 11.323828 -7047 0.052829 0.033373 6.666999 7.951023 -7048 0.093271 0.052558 10.532804 12.565050 -7049 0.056622 0.036975 11.177136 16.778507 -7050 0.062974 0.044508 10.086776 9.168528 -7051 0.110674 0.066826 10.464295 14.597135 -7052 0.091675 0.042792 11.145321 14.677145 -7053 0.104095 0.074194 15.347214 16.739299 -7054 0.055410 0.039674 8.378597 9.739401 -7055 0.079656 0.027613 7.736951 13.999855 -7056 0.047773 0.028070 7.478397 15.933646 -7057 0.121965 0.069286 12.118375 13.707704 -7058 0.087333 0.034574 10.775940 16.504944 -7059 0.061373 0.023359 12.250767 19.319356 -7060 0.058610 0.025281 10.748643 6.976705 -7061 0.055533 0.033348 8.077218 8.710609 -7062 0.103598 0.041849 6.808066 10.041787 -7063 0.092280 0.064692 10.698390 10.769018 -7064 0.053648 0.027011 7.660424 10.532679 -7065 0.071747 0.033956 12.547922 16.742458 -7066 0.084666 0.048003 10.069523 13.738036 -7067 0.076181 0.032362 7.627160 6.945632 -7068 0.044805 0.025849 12.358973 10.797135 -7069 0.048408 0.026001 8.631138 8.643706 -7070 0.091952 0.037426 8.536762 12.301452 -7071 0.116630 0.035655 9.652918 13.312254 -7072 0.099638 0.056885 6.398748 9.541217 -7073 0.057317 0.025133 9.324191 7.552652 -7074 0.146651 0.099806 9.696677 13.937157 -7075 0.055174 0.040658 7.821205 10.557035 -7076 0.072520 0.042322 8.645435 9.103852 -7077 0.073623 0.048616 15.990713 17.806289 -7078 0.066930 0.056431 12.669092 10.870087 -7079 0.074702 0.043911 11.300332 16.141369 -7080 0.076331 0.041755 6.798002 9.360266 -7081 0.081292 0.056346 11.183214 19.118845 -7082 0.046870 0.036684 8.603902 14.055127 -7083 0.090734 0.038331 10.844501 18.191024 -7084 0.102447 0.079063 12.616688 24.234981 -7085 0.047572 0.036124 8.145972 10.288532 -7086 0.105020 0.061323 14.915305 15.056916 -7087 0.084942 0.036250 7.197909 10.594072 -7088 0.060340 0.027775 9.684203 13.470488 -7089 0.045395 0.022851 10.311717 11.422092 -7090 0.073309 0.040197 16.381582 19.169301 -7091 0.079597 0.070695 8.321580 13.011974 -7092 0.070505 0.047661 16.137828 18.796776 -7093 0.037920 0.014793 6.954192 9.282340 -7094 0.047853 0.045206 9.579149 16.426951 -7095 0.106197 0.042076 8.053432 14.947525 -7096 0.098714 0.057529 7.374880 12.812856 -7097 0.104411 0.058549 14.125509 15.044534 -7098 0.079392 0.041914 12.933960 26.251875 -7099 0.047946 0.053057 13.405933 18.609349 -7100 0.077396 0.057295 11.060892 12.487615 -7101 0.099025 0.047812 9.574950 14.624628 -7102 0.061989 0.032571 7.659208 8.140246 -7103 0.069186 0.034722 11.020864 11.790855 -7104 0.045590 0.029271 6.174975 7.159427 -7105 0.048435 0.030743 8.970220 10.955172 -7106 0.094974 0.090346 10.405858 12.399503 -7107 0.071178 0.061376 11.548597 14.091647 -7108 0.068036 0.042906 17.017162 17.200950 -7109 0.080564 0.031417 7.833157 10.334136 -7110 0.104292 0.056489 10.575216 13.316601 -7111 0.059064 0.020632 9.362917 11.597446 -7112 0.051888 0.046914 10.400448 13.753645 -7113 0.067636 0.031829 7.286093 11.221833 -7114 0.101811 0.077366 12.532972 15.451980 -7115 0.044100 0.019049 8.260207 12.006427 -7116 0.071980 0.029971 5.331089 8.027325 -7117 0.090582 0.070345 10.469781 16.387351 -7118 0.079237 0.027582 8.438314 11.682631 -7119 0.059086 0.030326 9.567209 15.318000 -7120 0.075375 0.072847 8.921463 9.530822 -7121 0.087340 0.064184 9.340393 10.000090 -7122 0.076301 0.070240 8.150203 11.526027 -7123 0.064771 0.033882 6.061757 8.616698 -7124 0.088894 0.062106 7.705515 15.437723 -7125 0.100326 0.052665 8.617916 14.529139 -7126 0.075338 0.022971 7.673833 9.562301 -7127 0.065438 0.032260 10.295433 8.698440 -7128 0.113818 0.073563 15.909665 18.368920 -7129 0.085489 0.050682 14.315291 14.514092 -7130 0.037459 0.022655 5.314433 8.765046 -7131 0.059502 0.041629 11.862765 14.422690 -7132 0.069012 0.024161 6.569676 9.464845 -7133 0.089194 0.057626 12.028292 14.377096 -7134 0.068616 0.066877 13.107627 12.850974 -7135 0.087627 0.025639 12.194214 14.769243 -7136 0.070102 0.042757 11.081806 12.511610 -7137 0.064558 0.035712 9.899561 14.426192 -7138 0.079900 0.035873 16.022410 12.399635 -7139 0.085021 0.048789 15.025035 17.662115 -7140 0.079632 0.066820 12.395672 14.625952 -7141 0.063724 0.075928 10.259186 11.763145 -7142 0.102168 0.047653 7.912948 12.573750 -7143 0.049662 0.030517 10.741061 14.050725 -7144 0.067449 0.046121 11.448527 12.395232 -7145 0.072475 0.025162 12.325741 14.150772 -7146 0.090836 0.048424 10.926083 15.245254 -7147 0.073615 0.048186 8.635968 13.346482 -7148 0.055491 0.036556 6.503359 9.652841 -7149 0.063832 0.031777 9.657018 14.635297 -7150 0.064202 0.042411 9.262874 12.270336 -7151 0.164188 0.092988 12.620276 20.168478 -7152 0.059913 0.035951 11.688822 14.142822 -7153 0.126397 0.065564 7.501057 12.930290 -7154 0.109985 0.065863 13.051534 15.830123 -7155 0.042163 0.022383 10.809158 7.643747 -7156 0.068752 0.048108 6.525817 10.950976 -7157 0.080676 0.050472 8.887341 13.927182 -7158 0.114519 0.096961 8.119095 12.127419 -7159 0.070069 0.067727 10.156481 15.759609 -7160 0.076791 0.052054 15.582866 14.772687 -7161 0.074210 0.059201 10.456758 20.421540 -7162 0.049719 0.036464 8.087563 9.499973 -7163 0.098872 0.048398 8.901512 10.956911 -7164 0.065644 0.036574 5.989985 9.340963 -7165 0.061506 0.032540 6.856528 12.765272 -7166 0.073657 0.048560 6.348283 7.031487 -7167 0.118099 0.070837 10.963512 13.993422 -7168 0.085013 0.088333 12.374750 11.388475 -7169 0.104212 0.081517 12.919514 12.841661 -7170 0.148544 0.054644 8.856876 12.180289 -7171 0.078765 0.040755 12.192801 15.340659 -7172 0.048838 0.044768 14.107704 13.644026 -7173 0.085236 0.057277 10.568007 13.645859 -7174 0.068566 0.046209 10.097948 12.158856 -7175 0.106990 0.058594 8.746334 12.197650 -7176 0.094624 0.087146 9.397686 15.762028 -7177 0.045223 0.035233 7.745396 9.738795 -7178 0.046673 0.028439 8.769646 13.193207 -7179 0.049218 0.030534 11.636693 15.440653 -7180 0.079302 0.040694 9.345045 15.039520 -7181 0.094335 0.061966 8.437137 12.640303 -7182 0.056628 0.046542 8.051618 10.728206 -7183 0.069072 0.034909 9.982058 14.822973 -7184 0.039267 0.024341 8.176709 10.332298 -7185 0.167223 0.126521 14.487584 20.479403 -7186 0.062149 0.038669 8.681453 12.683458 -7187 0.078885 0.044720 9.234930 13.415720 -7188 0.054791 0.029864 6.674508 9.011374 -7189 0.065005 0.067409 10.801610 14.332433 -7190 0.083319 0.041785 9.817049 13.134463 -7191 0.072111 0.030079 13.614458 12.026733 -7192 0.070926 0.050283 12.108829 12.713711 -7193 0.050872 0.041726 8.698091 13.551466 -7194 0.067459 0.034028 6.437337 8.710868 -7195 0.049850 0.030312 10.641152 16.720287 -7196 0.067193 0.041248 9.419445 13.135517 -7197 0.079741 0.034913 11.699146 12.739776 -7198 0.096966 0.065410 11.649264 12.150624 -7199 0.131268 0.085037 12.191567 14.410772 -7200 0.095417 0.072258 8.570565 11.023807 -7201 0.103361 0.068479 8.777872 10.019846 -7202 0.055773 0.039556 5.399354 10.139762 -7203 0.066711 0.052804 10.478590 12.545495 -7204 0.046560 0.026728 9.683385 8.987813 -7205 0.065896 0.029925 9.393937 8.266328 -7206 0.057885 0.039952 7.867038 7.801471 -7207 0.082208 0.041531 6.538260 12.921424 -7208 0.068608 0.035577 7.418746 10.866934 -7209 0.041712 0.028904 8.456875 8.847501 -7210 0.063247 0.021371 12.573132 12.026004 -7211 0.057020 0.040503 7.375566 15.410011 -7212 0.050063 0.046857 6.994204 12.648388 -7213 0.066240 0.056831 9.860392 12.104963 -7214 0.052606 0.030757 9.561067 17.474918 -7215 0.092312 0.073488 10.815301 9.955755 -7216 0.074828 0.035886 8.136303 12.175923 -7217 0.049155 0.037708 7.638624 12.808153 -7218 0.054091 0.028103 12.849368 22.560001 -7219 0.106495 0.049841 15.627270 24.448385 -7220 0.061892 0.055036 8.255543 7.536048 -7221 0.083360 0.050103 10.859504 12.712998 -7222 0.058054 0.054485 16.647316 16.257737 -7223 0.064923 0.042234 9.611922 11.730386 -7224 0.062134 0.036013 6.977623 12.788793 -7225 0.090911 0.044392 8.061604 9.501000 -7226 0.077749 0.046745 11.676164 13.275000 -7227 0.063201 0.036017 12.127605 10.694864 -7228 0.095749 0.050428 13.013683 11.438282 -7229 0.092685 0.034306 8.858423 10.318533 -7230 0.072111 0.038342 11.129836 15.113939 -7231 0.100653 0.034192 7.804002 8.164958 -7232 0.088577 0.108519 11.278118 10.662976 -7233 0.087504 0.038636 10.452039 11.364783 -7234 0.050368 0.026647 8.148571 12.015964 -7235 0.098627 0.049434 6.497321 10.622493 -7236 0.056498 0.023783 9.758678 15.251079 -7237 0.081263 0.031113 6.588275 9.400039 -7238 0.044913 0.028547 7.826054 9.877202 -7239 0.069061 0.040394 16.387074 17.302438 -7240 0.093662 0.032651 10.550479 15.193858 -7241 0.090024 0.052249 8.996159 10.880585 -7242 0.046226 0.038415 9.331453 9.479358 -7243 0.074969 0.030815 10.109922 13.538527 -7244 0.104360 0.041342 6.518359 15.377147 -7245 0.069965 0.053871 13.032176 18.829678 -7246 0.053480 0.043748 11.199306 12.065057 -7247 0.058144 0.045308 7.715244 9.429237 -7248 0.054238 0.031546 11.205518 14.715238 -7249 0.088688 0.057337 6.135839 11.425860 -7250 0.065411 0.057038 8.264099 12.418882 -7251 0.065336 0.066364 11.932236 12.439019 -7252 0.105616 0.047409 11.704975 13.210466 -7253 0.089494 0.034860 12.634702 14.494874 -7254 0.048543 0.024340 7.349974 8.950539 -7255 0.054196 0.040482 9.279875 18.447810 -7256 0.064688 0.064501 9.139977 12.807123 -7257 0.100462 0.070660 7.987767 14.447295 -7258 0.095793 0.063548 9.438069 13.003548 -7259 0.065018 0.028404 8.933882 11.067862 -7260 0.062116 0.052700 8.847377 15.239180 -7261 0.091509 0.053580 8.724614 12.881445 -7262 0.095904 0.036701 14.536280 19.960531 -7263 0.069939 0.026717 8.574487 10.254864 -7264 0.075727 0.027025 8.428347 13.141948 -7265 0.069673 0.066897 8.400601 10.918284 -7266 0.049726 0.023363 7.270618 10.875707 -7267 0.073715 0.041021 8.188584 12.009247 -7268 0.080513 0.054657 14.192459 17.605739 -7269 0.140272 0.078639 13.750670 15.007601 -7270 0.070348 0.024494 8.045283 10.424447 -7271 0.069248 0.043827 17.948466 11.414634 -7272 0.046668 0.046143 7.494758 14.239850 -7273 0.060105 0.061194 12.000985 15.549029 -7274 0.060021 0.044761 7.676244 10.169731 -7275 0.110373 0.064269 8.797756 14.016914 -7276 0.059206 0.045343 12.875526 14.175193 -7277 0.110971 0.047920 8.132218 10.946995 -7278 0.054204 0.028705 10.429321 14.764415 -7279 0.103230 0.104918 13.916787 15.155846 -7280 0.071602 0.024855 7.213177 8.779198 -7281 0.069437 0.056508 13.951884 16.541727 -7282 0.077216 0.048245 9.025540 16.067405 -7283 0.064022 0.038080 9.566557 10.376015 -7284 0.052588 0.033177 9.238877 12.921077 -7285 0.107051 0.032588 11.884303 13.005478 -7286 0.070064 0.063341 8.723139 12.800560 -7287 0.073295 0.045614 9.701715 10.443975 -7288 0.047069 0.037319 9.376014 12.799159 -7289 0.076951 0.033637 8.343148 15.239824 -7290 0.057594 0.034510 7.355799 10.807332 -7291 0.069358 0.038863 9.892527 10.669933 -7292 0.056855 0.028271 10.279625 11.049849 -7293 0.030324 0.015676 7.932779 11.298998 -7294 0.094640 0.076030 11.619994 12.990192 -7295 0.096101 0.111061 15.067206 16.804574 -7296 0.091777 0.052330 11.287172 16.995254 -7297 0.103955 0.048108 13.961775 20.886732 -7298 0.116120 0.046586 16.903443 17.946701 -7299 0.101446 0.066904 8.573323 13.074390 -7300 0.068329 0.057254 13.884459 13.424981 -7301 0.077777 0.055653 6.741883 11.961862 -7302 0.092617 0.039825 8.585143 10.707993 -7303 0.067360 0.054661 10.331518 17.150289 -7304 0.087278 0.043206 9.389625 10.812158 -7305 0.068240 0.025404 11.661603 11.472862 -7306 0.077300 0.064186 9.741536 12.239857 -7307 0.157981 0.060019 10.442669 16.344586 -7308 0.056743 0.037729 10.791159 11.924201 -7309 0.103803 0.057728 7.294938 11.074519 -7310 0.068543 0.051880 9.485558 16.266610 -7311 0.146169 0.084948 11.486544 17.869985 -7312 0.081651 0.097665 12.899424 13.271590 -7313 0.075143 0.044134 8.318401 10.112929 -7314 0.060116 0.030279 12.049360 15.379166 -7315 0.065559 0.014810 8.327215 10.774354 -7316 0.074372 0.034228 9.850010 10.142204 -7317 0.067036 0.039525 13.926686 15.277768 -7318 0.125196 0.065337 11.189469 18.133526 -7319 0.042376 0.029311 7.150480 8.664364 -7320 0.125941 0.074557 10.010397 7.993595 -7321 0.106873 0.047122 8.865255 13.650963 -7322 0.107499 0.073158 9.303717 12.434328 -7323 0.036278 0.024406 8.987429 9.333908 -7324 0.057764 0.046422 5.626166 9.895777 -7325 0.070251 0.049209 8.388701 10.556571 -7326 0.069666 0.063721 9.837820 10.596883 -7327 0.079349 0.045983 8.032809 13.651297 -7328 0.074127 0.088214 16.887948 19.966883 -7329 0.117630 0.056041 7.781202 13.393004 -7330 0.098050 0.055923 9.970543 10.036058 -7331 0.058189 0.039654 11.983143 15.177080 -7332 0.093768 0.047590 10.676040 13.534834 -7333 0.073680 0.026491 9.136444 12.612036 -7334 0.054854 0.036321 13.120978 17.104661 -7335 0.086659 0.048005 8.897228 12.258687 -7336 0.075811 0.030652 8.264930 14.614406 -7337 0.107075 0.066033 11.849161 14.719453 -7338 0.105458 0.079350 11.508197 15.467312 -7339 0.113868 0.084846 7.376638 7.733849 -7340 0.069755 0.038310 9.170803 8.531324 -7341 0.072827 0.033405 11.315629 14.441947 -7342 0.058439 0.037282 6.782815 9.595321 -7343 0.084727 0.072315 13.928605 12.142667 -7344 0.078846 0.048432 6.596939 10.711255 -7345 0.112497 0.071866 11.486894 13.961601 -7346 0.114663 0.076876 12.768212 13.230446 -7347 0.084478 0.047630 18.659953 23.056194 -7348 0.062657 0.033801 13.647045 12.173288 -7349 0.068554 0.044493 8.594374 12.556529 -7350 0.109403 0.058921 11.849447 11.793895 -7351 0.091096 0.047940 8.594568 8.958363 -7352 0.080140 0.049836 9.620190 12.222200 -7353 0.079627 0.026832 8.584801 8.429819 -7354 0.045097 0.050254 9.783609 12.936091 -7355 0.076200 0.046917 10.626675 16.403337 -7356 0.080887 0.049114 12.297281 12.234988 -7357 0.067046 0.044585 8.225462 11.100854 -7358 0.040768 0.022357 13.194739 12.693296 -7359 0.056416 0.044433 7.972927 13.485327 -7360 0.056083 0.034462 9.471510 11.367789 -7361 0.077109 0.042079 10.946723 12.211870 -7362 0.064266 0.029749 9.006413 12.986854 -7363 0.082949 0.044772 12.805280 14.516640 -7364 0.128300 0.091802 7.908467 11.525828 -7365 0.065902 0.041517 11.807504 22.731500 -7366 0.084438 0.034350 10.755601 15.613638 -7367 0.089873 0.041032 7.865466 13.318989 -7368 0.083918 0.073198 10.691172 16.133265 -7369 0.072293 0.037009 9.917767 12.866583 -7370 0.075408 0.059237 10.426028 11.763666 -7371 0.065687 0.038086 8.356560 10.375955 -7372 0.060459 0.040556 10.641986 9.854512 -7373 0.088126 0.068913 11.921572 16.343315 -7374 0.039334 0.034584 11.906791 13.168712 -7375 0.089541 0.047843 12.444934 14.257264 -7376 0.071029 0.044715 9.752409 11.314485 -7377 0.072738 0.056661 10.158717 13.750584 -7378 0.069223 0.067138 8.202038 11.924119 -7379 0.089799 0.031566 12.360813 13.346414 -7380 0.057772 0.028698 8.413409 12.726475 -7381 0.079926 0.047641 7.365322 8.595134 -7382 0.091590 0.065244 10.736535 15.206805 -7383 0.076749 0.060178 12.891661 12.282379 -7384 0.050002 0.041552 10.252167 19.109066 -7385 0.069021 0.049068 10.363154 17.254526 -7386 0.067049 0.034480 6.774048 9.023540 -7387 0.101564 0.082142 8.345284 16.960517 -7388 0.052046 0.041302 14.528642 14.443964 -7389 0.062114 0.045198 13.960182 12.394944 -7390 0.077405 0.049932 10.607755 12.341778 -7391 0.065157 0.037182 7.505931 13.473303 -7392 0.096280 0.080702 11.134571 13.638437 -7393 0.076542 0.048217 7.252512 11.192685 -7394 0.073173 0.030801 7.987462 11.292411 -7395 0.081530 0.047509 8.915543 9.576317 -7396 0.069164 0.024176 7.284498 8.911669 -7397 0.087307 0.060474 7.352916 9.053195 -7398 0.058643 0.026893 8.671898 14.509585 -7399 0.106063 0.049694 15.653585 18.617070 -7400 0.052942 0.043646 8.907937 15.009287 -7401 0.093323 0.042181 7.664212 13.988631 -7402 0.103581 0.089211 13.318499 17.045976 -7403 0.044875 0.021011 6.082005 12.423842 -7404 0.077659 0.058882 8.069074 10.880777 -7405 0.103590 0.040222 12.571935 16.822391 -7406 0.114850 0.111021 8.744247 10.433655 -7407 0.070037 0.029721 7.860164 12.447993 -7408 0.088858 0.047946 9.412426 9.684787 -7409 0.065532 0.035168 11.636684 13.002327 -7410 0.049441 0.038133 8.585412 10.486639 -7411 0.067961 0.043125 7.198718 7.537278 -7412 0.048307 0.020996 7.480710 9.199382 -7413 0.054589 0.024280 8.935590 9.991426 -7414 0.072162 0.031875 7.686346 14.558706 -7415 0.052883 0.040100 8.498577 7.350892 -7416 0.108791 0.059041 11.906655 17.599665 -7417 0.100614 0.064347 15.228899 12.948912 -7418 0.086113 0.046203 11.170426 12.640998 -7419 0.089306 0.095740 8.502147 12.042046 -7420 0.071916 0.033748 8.299631 10.918609 -7421 0.054987 0.034644 6.586411 12.746369 -7422 0.067977 0.046567 8.029755 8.450386 -7423 0.075235 0.031138 8.738883 12.644586 -7424 0.052091 0.021497 5.550486 10.050984 -7425 0.065756 0.060498 11.759971 10.132993 -7426 0.046583 0.038638 6.813220 8.311194 -7427 0.069205 0.050467 18.036066 19.013467 -7428 0.039758 0.024939 6.140780 8.491733 -7429 0.054472 0.034638 13.712270 17.847088 -7430 0.064108 0.041493 7.488886 12.672244 -7431 0.068490 0.025423 7.296903 13.872077 -7432 0.078368 0.054863 11.857232 13.212934 -7433 0.070426 0.042740 7.135462 8.197418 -7434 0.092618 0.084627 9.975143 11.963828 -7435 0.093553 0.082586 13.965415 16.081218 -7436 0.069983 0.038980 8.276443 10.283972 -7437 0.093239 0.104060 14.445455 23.931260 -7438 0.080320 0.057635 13.253896 16.905235 -7439 0.067673 0.044217 13.022314 9.245430 -7440 0.082823 0.051999 11.126713 14.111691 -7441 0.056580 0.027067 9.241373 10.273374 -7442 0.062357 0.035705 6.764717 8.155744 -7443 0.041057 0.040811 7.354204 11.027390 -7444 0.091056 0.066095 11.079315 9.333798 -7445 0.171563 0.117702 10.270428 11.407675 -7446 0.124790 0.045631 9.152237 12.713770 -7447 0.059770 0.037711 10.686811 16.182157 -7448 0.053986 0.028992 8.533709 7.509087 -7449 0.038510 0.026939 9.963071 11.707152 -7450 0.057889 0.060284 9.467716 14.902742 -7451 0.055873 0.022851 10.341811 16.143987 -7452 0.083731 0.044602 8.510445 10.866791 -7453 0.042605 0.035339 6.499248 6.656931 -7454 0.044495 0.021668 10.525770 16.359486 -7455 0.052999 0.031277 7.530776 12.354853 -7456 0.082774 0.088070 9.293336 11.104682 -7457 0.096998 0.052219 8.997672 10.391939 -7458 0.055270 0.031221 7.891592 11.037647 -7459 0.045394 0.019216 6.527106 11.024874 -7460 0.041371 0.027536 8.625873 11.585840 -7461 0.144445 0.114472 18.217976 20.794608 -7462 0.103427 0.045479 7.173079 10.475008 -7463 0.084847 0.042632 15.419517 16.260683 -7464 0.074774 0.050001 9.738669 13.413516 -7465 0.087287 0.055132 14.317147 13.048493 -7466 0.062697 0.025125 8.447064 9.174286 -7467 0.082015 0.048718 10.707868 13.672577 -7468 0.085222 0.064038 7.698196 14.457544 -7469 0.102114 0.072731 12.380102 15.853520 -7470 0.069486 0.027154 8.024923 9.921315 -7471 0.072737 0.053180 9.447090 12.016360 -7472 0.074488 0.051678 9.289027 10.891253 -7473 0.103735 0.048435 18.435986 20.954946 -7474 0.063016 0.047225 7.310076 7.901320 -7475 0.040031 0.023277 9.628161 9.050520 -7476 0.125478 0.122275 9.891733 16.306008 -7477 0.084501 0.057813 11.817562 16.808346 -7478 0.034760 0.026102 7.562097 6.067361 -7479 0.069891 0.054526 10.868769 12.992035 -7480 0.158360 0.082002 14.139158 14.441149 -7481 0.071655 0.069310 15.259268 17.182523 -7482 0.050142 0.023781 7.802920 15.586509 -7483 0.063509 0.042699 9.912269 10.034666 -7484 0.097353 0.040449 13.211958 18.512638 -7485 0.061485 0.040068 8.937792 11.364764 -7486 0.091178 0.059889 6.741390 8.675796 -7487 0.062728 0.044168 6.447226 8.957394 -7488 0.100377 0.074444 9.852287 14.963206 -7489 0.089108 0.046946 8.797165 11.741152 -7490 0.044294 0.021029 6.602810 10.731904 -7491 0.078904 0.047579 8.380607 13.567185 -7492 0.075912 0.077442 9.879582 13.402724 -7493 0.060451 0.028445 8.319976 11.642556 -7494 0.098928 0.072106 8.409447 13.573751 -7495 0.078813 0.048076 9.486982 13.441578 -7496 0.058692 0.032791 10.529856 14.178061 -7497 0.148879 0.084874 10.460726 11.473164 -7498 0.064384 0.022430 6.377830 10.687203 -7499 0.061675 0.037923 8.699726 12.646138 -7500 0.142657 0.130982 12.662005 24.004349 -7501 0.090718 0.036408 12.671071 17.024103 -7502 0.113508 0.057103 14.060742 13.190143 -7503 0.077397 0.044107 6.510698 13.943472 -7504 0.073088 0.034017 11.872108 15.882690 -7505 0.087774 0.060712 8.451491 16.722822 -7506 0.060483 0.090780 13.635673 21.858057 -7507 0.085759 0.051268 11.983004 13.195361 -7508 0.127788 0.054140 10.727188 15.840106 -7509 0.085221 0.043500 10.247027 12.117849 -7510 0.108622 0.069709 11.778028 13.498667 -7511 0.077771 0.061205 12.339457 13.794594 -7512 0.083719 0.043051 6.516044 10.131465 -7513 0.125561 0.088732 16.907296 15.899298 -7514 0.057557 0.029569 11.800686 15.675240 -7515 0.062430 0.028291 7.384216 12.527362 -7516 0.098807 0.063300 8.491159 15.769209 -7517 0.088466 0.045245 9.126145 12.438743 -7518 0.067840 0.053931 11.414888 12.357184 -7519 0.065026 0.041152 5.285301 9.840051 -7520 0.065117 0.038271 10.796581 17.565777 -7521 0.087433 0.031619 7.862893 12.093504 -7522 0.085785 0.047524 6.454228 9.984198 -7523 0.067025 0.060237 12.280790 12.625452 -7524 0.074357 0.072886 15.807603 14.470537 -7525 0.071216 0.047924 7.539495 9.435644 -7526 0.055605 0.025553 8.470000 15.597556 -7527 0.056308 0.019002 12.649385 21.795141 -7528 0.061277 0.049531 10.221775 10.846353 -7529 0.100373 0.053050 10.913797 11.265626 -7530 0.060174 0.038256 8.605365 16.021496 -7531 0.068501 0.040750 10.982373 11.962400 -7532 0.035330 0.024029 8.612381 8.762967 -7533 0.076995 0.052536 9.318499 11.559303 -7534 0.103530 0.065071 9.578591 10.840405 -7535 0.058508 0.056025 12.166147 14.145068 -7536 0.098458 0.049510 10.928044 23.584478 -7537 0.156077 0.201998 15.668506 14.171603 -7538 0.035084 0.021491 14.291565 16.048800 -7539 0.049491 0.031016 7.052400 10.778922 -7540 0.095600 0.056170 10.347719 11.229841 -7541 0.072499 0.033994 9.051319 12.092238 -7542 0.097592 0.056054 8.825802 13.520483 -7543 0.063426 0.032540 9.382005 11.409969 -7544 0.093218 0.097703 14.417966 11.789847 -7545 0.082806 0.044797 12.014732 15.955251 -7546 0.057160 0.035546 8.825461 10.812260 -7547 0.094813 0.045777 12.436114 20.081150 -7548 0.071897 0.043015 10.078344 10.024254 -7549 0.076151 0.049651 8.330458 13.556242 -7550 0.057860 0.034084 7.235498 9.493111 -7551 0.077446 0.036335 8.854884 11.906812 -7552 0.090266 0.091642 12.870096 12.851126 -7553 0.061726 0.029488 7.808598 15.949014 -7554 0.061725 0.041166 8.183717 10.737426 -7555 0.076772 0.031739 7.918114 11.048878 -7556 0.082940 0.031924 8.263423 8.741696 -7557 0.062868 0.044420 8.664074 13.078009 -7558 0.062000 0.035689 7.394339 13.052609 -7559 0.072653 0.045977 10.093717 16.361108 -7560 0.091404 0.084824 8.583462 12.431815 -7561 0.049592 0.022618 9.922237 7.786516 -7562 0.066293 0.073693 10.405882 16.294935 -7563 0.089592 0.097854 11.875043 12.900818 -7564 0.063879 0.058533 11.748523 10.754390 -7565 0.086070 0.058900 11.101297 19.731090 -7566 0.105757 0.073589 9.144098 13.957312 -7567 0.062708 0.030362 11.450235 14.713926 -7568 0.064812 0.059545 10.049286 11.403955 -7569 0.104061 0.063905 9.378690 18.303849 -7570 0.067484 0.037362 13.582530 14.542296 -7571 0.057162 0.032708 9.434262 9.618290 -7572 0.088121 0.054187 11.001083 13.435704 -7573 0.072759 0.040163 9.358532 10.077905 -7574 0.068811 0.042737 7.028390 10.472474 -7575 0.083621 0.036500 8.020068 7.493224 -7576 0.056610 0.032360 9.359927 9.064027 -7577 0.064217 0.040867 13.341707 12.587199 -7578 0.066563 0.030914 8.891210 11.211606 -7579 0.059278 0.042085 6.743132 7.956771 -7580 0.104307 0.043843 12.780696 15.030187 -7581 0.054677 0.027015 10.097066 9.183674 -7582 0.075540 0.045938 9.225570 11.260695 -7583 0.089918 0.052940 10.271796 11.855639 -7584 0.124676 0.083501 10.844817 17.072913 -7585 0.060334 0.043886 9.246585 16.929403 -7586 0.099673 0.074276 12.331762 16.710576 -7587 0.070687 0.062225 10.712628 14.499840 -7588 0.126707 0.063805 11.936560 16.932266 -7589 0.081040 0.061734 11.695223 26.852160 -7590 0.091205 0.048231 8.192280 14.036327 -7591 0.091800 0.070744 10.291405 13.603063 -7592 0.069493 0.042080 8.724090 10.529344 -7593 0.060677 0.031411 11.623761 19.074647 -7594 0.057498 0.051168 9.454345 10.678828 -7595 0.178767 0.074966 8.684033 13.765364 -7596 0.109923 0.057292 13.294636 11.145324 -7597 0.098302 0.035860 9.010171 12.059353 -7598 0.079113 0.044506 6.775845 7.677604 -7599 0.100179 0.040149 6.407795 13.962713 -7600 0.079088 0.048795 9.310523 11.521360 -7601 0.069010 0.042508 14.698604 14.713410 -7602 0.047937 0.043611 15.401272 16.291932 -7603 0.045848 0.015740 7.608223 12.006302 -7604 0.077543 0.038709 8.252460 10.698416 -7605 0.077552 0.035166 9.083639 9.076731 -7606 0.098546 0.054789 9.077595 15.554418 -7607 0.063194 0.036090 14.937838 14.659551 -7608 0.081446 0.040726 9.492670 8.721349 -7609 0.047064 0.049940 8.725409 14.655515 -7610 0.058607 0.030720 6.580747 9.001780 -7611 0.083992 0.062339 16.691248 19.653639 -7612 0.074579 0.054942 10.288534 13.224297 -7613 0.052706 0.054141 9.830102 14.798692 -7614 0.134434 0.045845 11.775315 11.895456 -7615 0.072688 0.086173 6.969977 13.456861 -7616 0.038601 0.030632 6.424681 12.019133 -7617 0.038684 0.037834 7.555370 8.577385 -7618 0.097588 0.048683 16.545581 15.945670 -7619 0.048054 0.025444 13.095009 22.080831 -7620 0.061638 0.043939 7.735339 8.344159 -7621 0.130562 0.099255 13.249153 20.232672 -7622 0.103087 0.052747 11.462386 16.864122 -7623 0.077427 0.057819 8.141218 14.417435 -7624 0.093498 0.060048 9.280474 11.724008 -7625 0.061153 0.051218 12.629046 18.711888 -7626 0.065931 0.053147 11.003886 16.069074 -7627 0.084134 0.049896 9.927505 11.824108 -7628 0.046188 0.051020 11.279577 12.861161 -7629 0.075437 0.033909 8.203561 15.246279 -7630 0.100600 0.047007 6.800745 10.705990 -7631 0.085250 0.056232 12.302122 14.553012 -7632 0.048116 0.047126 9.025790 14.175887 -7633 0.065122 0.034137 8.086788 11.661760 -7634 0.094821 0.055387 7.629337 9.518308 -7635 0.057317 0.028430 12.434674 11.418842 -7636 0.081912 0.078707 15.265909 17.481674 -7637 0.054456 0.040270 8.813019 10.896203 -7638 0.077342 0.044381 8.879365 15.291356 -7639 0.071225 0.089084 8.178404 11.672814 -7640 0.044866 0.038755 10.127617 15.659493 -7641 0.084221 0.051242 13.247258 19.238466 -7642 0.090001 0.055771 17.297064 14.173833 -7643 0.101406 0.061061 9.485499 10.944754 -7644 0.064821 0.032287 9.301429 14.646249 -7645 0.087730 0.051713 8.770921 13.470905 -7646 0.074254 0.041562 10.384335 11.841906 -7647 0.068266 0.052854 9.996591 15.085094 -7648 0.096300 0.066105 10.327754 12.944173 -7649 0.071126 0.022365 8.668443 9.529918 -7650 0.118388 0.076801 13.757812 19.521366 -7651 0.066003 0.063787 8.775977 11.336585 -7652 0.083298 0.060026 10.643513 15.741542 -7653 0.072998 0.035181 9.893890 18.611180 -7654 0.090353 0.038644 10.724227 13.275431 -7655 0.068583 0.055288 11.055054 10.533225 -7656 0.154582 0.093625 15.107960 12.637285 -7657 0.056951 0.039710 9.045379 11.830712 -7658 0.074259 0.050815 6.842014 12.847548 -7659 0.061869 0.033755 13.948245 14.611644 -7660 0.092953 0.046611 11.426148 14.656106 -7661 0.064799 0.043593 6.492348 9.540359 -7662 0.066260 0.047467 11.485212 16.511117 -7663 0.048897 0.035221 14.773808 12.640941 -7664 0.054207 0.037800 10.482904 11.231770 -7665 0.041420 0.038269 11.867927 10.724150 -7666 0.134442 0.101284 9.514943 14.050978 -7667 0.087903 0.034935 11.496093 10.743268 -7668 0.074048 0.041817 11.620785 14.778308 -7669 0.094379 0.047913 8.990964 9.349113 -7670 0.063411 0.035812 12.406716 12.656565 -7671 0.104275 0.067612 14.188295 16.954280 -7672 0.084652 0.046493 12.030916 12.372885 -7673 0.092426 0.065794 9.952314 13.590128 -7674 0.071653 0.042878 10.171823 14.279635 -7675 0.079324 0.049389 11.868371 11.619675 -7676 0.075931 0.060430 10.994888 10.036420 -7677 0.091143 0.054758 10.063933 14.654699 -7678 0.094064 0.028469 10.623694 9.917221 -7679 0.084466 0.062134 9.950153 16.806107 -7680 0.098966 0.050630 8.809589 10.573349 -7681 0.073610 0.040920 10.497584 12.026692 -7682 0.057838 0.046351 6.075629 8.818201 -7683 0.104105 0.069693 17.865878 17.958253 -7684 0.119267 0.073168 13.723827 13.985897 -7685 0.081850 0.032979 9.641110 11.742408 -7686 0.077050 0.044675 8.503073 12.522263 -7687 0.149728 0.075258 9.570941 14.571716 -7688 0.071663 0.058182 7.040837 8.704694 -7689 0.053635 0.034683 13.532558 16.576993 -7690 0.053118 0.027664 8.772836 13.282543 -7691 0.063261 0.056041 13.126584 16.255218 -7692 0.051661 0.040664 11.331301 10.693917 -7693 0.086371 0.058789 14.250706 21.659061 -7694 0.048398 0.027263 13.233369 13.017631 -7695 0.072459 0.040569 15.269344 9.162246 -7696 0.056132 0.035161 7.777476 8.740004 -7697 0.071355 0.054765 6.142620 11.789491 -7698 0.056325 0.031563 8.987664 10.279857 -7699 0.053092 0.036259 6.182714 9.544098 -7700 0.078494 0.043381 10.378631 12.954130 -7701 0.056543 0.020634 8.699701 14.930520 -7702 0.053514 0.046202 13.195200 10.391099 -7703 0.055627 0.045412 12.618712 10.084292 -7704 0.112526 0.043421 11.190295 10.143932 -7705 0.038609 0.027976 11.416075 15.091844 -7706 0.102601 0.059160 8.511115 16.162414 -7707 0.102757 0.074236 12.409052 12.408700 -7708 0.037606 0.022442 9.004134 9.176325 -7709 0.067067 0.039660 12.051856 9.782807 -7710 0.060483 0.061176 7.450178 8.716760 -7711 0.103487 0.061318 9.552092 15.557384 -7712 0.071367 0.047914 9.580419 14.653229 -7713 0.076123 0.036642 17.445422 15.308975 -7714 0.067865 0.029806 12.634290 15.888046 -7715 0.063281 0.045446 9.695383 6.380451 -7716 0.079898 0.053154 11.095001 10.604039 -7717 0.118779 0.102207 16.081252 19.338698 -7718 0.075043 0.052295 12.541877 11.989021 -7719 0.104297 0.051068 10.305979 11.335277 -7720 0.087465 0.060178 7.071919 9.903599 -7721 0.063645 0.027927 7.330796 8.564302 -7722 0.088939 0.072745 11.395652 12.627594 -7723 0.050776 0.019505 4.947248 9.435447 -7724 0.051032 0.039096 10.577107 9.500715 -7725 0.055595 0.053025 9.970471 10.523404 -7726 0.090313 0.034988 6.352967 9.938985 -7727 0.048355 0.025827 12.052310 11.905440 -7728 0.094015 0.041916 13.007310 13.547295 -7729 0.070406 0.081371 10.142136 11.509647 -7730 0.076949 0.043778 11.380921 12.791212 -7731 0.097228 0.075707 9.070824 12.106041 -7732 0.077216 0.050755 10.729494 13.369767 -7733 0.077960 0.070025 9.140486 14.004864 -7734 0.071196 0.055310 10.038869 15.058481 -7735 0.075643 0.042620 9.342772 10.547154 -7736 0.067500 0.037997 12.382914 13.288228 -7737 0.096067 0.050209 12.591249 13.148305 -7738 0.087775 0.082104 9.656847 13.679577 -7739 0.080110 0.054910 5.285006 9.313737 -7740 0.051102 0.032281 7.241315 13.646177 -7741 0.091830 0.070616 9.853952 14.390442 -7742 0.067806 0.061074 13.421188 10.270280 -7743 0.064164 0.044037 7.815991 14.485308 -7744 0.127727 0.065300 12.460272 12.745722 -7745 0.079376 0.038010 11.419852 11.647181 -7746 0.054440 0.022250 7.322560 14.312394 -7747 0.073953 0.037476 9.224564 9.900671 -7748 0.070560 0.030680 9.329833 11.274181 -7749 0.068610 0.052977 9.893535 11.145680 -7750 0.126343 0.119889 10.438448 18.070146 -7751 0.081144 0.035536 9.897636 8.162366 -7752 0.046741 0.042959 8.817780 10.644695 -7753 0.072155 0.052188 9.184956 11.836195 -7754 0.084941 0.047938 9.595806 11.775556 -7755 0.041664 0.020290 12.032534 11.658004 -7756 0.046100 0.024893 8.115221 9.964984 -7757 0.065289 0.058993 15.300501 10.789123 -7758 0.078520 0.027749 9.793591 10.852507 -7759 0.037993 0.036259 14.247678 12.924890 -7760 0.056757 0.056538 10.971900 21.689061 -7761 0.075815 0.059793 13.114811 13.919165 -7762 0.092965 0.067284 10.383057 16.401196 -7763 0.057722 0.036378 8.433016 9.937645 -7764 0.073621 0.031656 15.749164 13.747285 -7765 0.035943 0.022757 5.897633 6.648655 -7766 0.044313 0.033334 8.748311 12.281313 -7767 0.062842 0.040234 10.054717 12.758476 -7768 0.116026 0.060591 15.237976 24.631718 -7769 0.039787 0.037521 7.538074 13.452228 -7770 0.119708 0.068309 8.650894 18.687301 -7771 0.104407 0.075202 6.176517 11.429114 -7772 0.064793 0.033880 10.954812 9.783607 -7773 0.085548 0.036098 7.132598 11.877072 -7774 0.052419 0.027130 7.650837 10.729490 -7775 0.105468 0.040676 9.151264 13.279049 -7776 0.076290 0.058314 8.901075 14.109398 -7777 0.081106 0.066036 6.848302 11.790563 -7778 0.104367 0.057601 9.630431 9.331563 -7779 0.078324 0.059991 8.572963 10.513891 -7780 0.066288 0.052765 6.911758 10.889789 -7781 0.107300 0.066249 8.854555 12.816261 -7782 0.077674 0.053305 10.071016 9.920242 -7783 0.084658 0.041515 11.410467 13.413234 -7784 0.075244 0.063883 11.344449 10.116761 -7785 0.064395 0.051287 9.877858 10.100386 -7786 0.135653 0.063729 8.934915 9.934996 -7787 0.059667 0.033462 7.948432 7.976183 -7788 0.106570 0.078539 12.516692 15.829971 -7789 0.074531 0.033549 11.244137 7.419892 -7790 0.103117 0.034419 11.603562 11.944236 -7791 0.082611 0.039087 13.924882 13.896490 -7792 0.059727 0.046175 7.748088 13.067585 -7793 0.092267 0.042136 6.916327 10.882264 -7794 0.091030 0.042197 11.637173 17.314506 -7795 0.070942 0.041009 9.045379 17.500157 -7796 0.073841 0.044788 8.435134 12.066442 -7797 0.051667 0.029214 9.626334 11.585826 -7798 0.089748 0.038977 7.727957 7.652753 -7799 0.077913 0.061141 8.999859 13.538504 -7800 0.093337 0.049285 14.578101 17.080839 -7801 0.084717 0.049505 8.929756 12.794254 -7802 0.076147 0.022610 16.998140 28.438260 -7803 0.054543 0.021539 8.621152 9.994220 -7804 0.054561 0.038464 7.672555 8.336606 -7805 0.054018 0.041261 10.925947 8.566712 -7806 0.077197 0.042098 12.173791 15.548236 -7807 0.078929 0.043068 5.903288 13.009025 -7808 0.056461 0.022705 11.769004 14.542977 -7809 0.069025 0.072506 5.624874 14.886626 -7810 0.085956 0.056073 10.354898 13.073611 -7811 0.071650 0.031494 10.106081 9.541491 -7812 0.105967 0.048293 10.200874 9.370967 -7813 0.048629 0.033717 19.722139 13.854498 -7814 0.060466 0.042579 10.531845 10.519533 -7815 0.076579 0.060321 9.629505 12.076897 -7816 0.089417 0.044732 6.801660 8.555640 -7817 0.066019 0.055801 9.648143 11.842963 -7818 0.089233 0.083813 8.877708 13.692367 -7819 0.059502 0.039756 13.478959 12.789121 -7820 0.195927 0.104341 14.889679 15.110942 -7821 0.053897 0.030782 9.624765 16.431855 -7822 0.071968 0.045563 12.613771 12.483904 -7823 0.088421 0.044480 12.663515 20.116813 -7824 0.073862 0.047669 9.136636 9.263563 -7825 0.094949 0.046437 7.480394 12.403717 -7826 0.064648 0.030492 9.538720 13.760290 -7827 0.074276 0.018308 10.421110 10.279925 -7828 0.095260 0.052754 11.968236 16.064817 -7829 0.093135 0.110700 9.751481 14.515864 -7830 0.039984 0.038190 7.573369 12.077173 -7831 0.074298 0.052551 9.672850 9.252692 -7832 0.096980 0.064258 12.993812 19.777377 -7833 0.083800 0.073596 13.163025 14.529925 -7834 0.043407 0.018033 9.584062 10.230178 -7835 0.039125 0.029140 9.986879 14.437465 -7836 0.060849 0.014070 8.598889 11.401097 -7837 0.062376 0.030969 15.788581 12.450995 -7838 0.067260 0.060866 9.960119 12.230382 -7839 0.094770 0.041425 8.982692 14.050368 -7840 0.064066 0.036488 7.046363 7.669315 -7841 0.055451 0.034433 9.791693 12.220029 -7842 0.042240 0.023724 9.825754 13.548577 -7843 0.119863 0.086373 12.384003 14.382208 -7844 0.095164 0.072957 13.233305 14.294720 -7845 0.069228 0.057243 12.093046 16.320154 -7846 0.071460 0.043498 8.524642 12.304418 -7847 0.064357 0.034988 8.742993 11.826149 -7848 0.060006 0.022569 7.917884 12.642185 -7849 0.088275 0.035189 8.470510 7.817661 -7850 0.049708 0.037798 9.767646 23.069185 -7851 0.066108 0.037901 12.353341 12.451354 -7852 0.100252 0.119041 14.277805 15.024038 -7853 0.074946 0.053367 11.374714 14.589380 -7854 0.062442 0.039635 6.082540 9.969139 -7855 0.054808 0.050901 7.590650 8.480977 -7856 0.062671 0.024173 10.184485 13.319124 -7857 0.080264 0.028949 10.481357 14.654824 -7858 0.059550 0.033018 12.831716 9.973055 -7859 0.106122 0.076883 12.204517 15.118706 -7860 0.104155 0.044901 6.841007 7.393424 -7861 0.060769 0.034830 9.443179 8.233701 -7862 0.055893 0.035700 7.680270 12.369857 -7863 0.083591 0.060588 9.216440 15.736004 -7864 0.073308 0.048377 10.808246 16.451006 -7865 0.046825 0.022568 8.793567 15.056688 -7866 0.085973 0.056745 10.067419 10.341328 -7867 0.128659 0.101590 9.577967 9.031077 -7868 0.067431 0.027794 9.043564 10.549810 -7869 0.065207 0.033204 8.346805 13.234315 -7870 0.089813 0.059118 11.241808 14.482342 -7871 0.119314 0.109951 11.947392 19.211307 -7872 0.072302 0.057553 12.271784 19.959941 -7873 0.076909 0.049824 9.169096 13.472174 -7874 0.069323 0.064142 7.741761 12.639431 -7875 0.060888 0.033364 8.561967 11.279333 -7876 0.074019 0.034786 8.772739 17.138088 -7877 0.129586 0.062753 16.814583 19.630697 -7878 0.063430 0.019904 14.856648 11.125283 -7879 0.063697 0.046812 6.705440 6.889994 -7880 0.062157 0.023016 11.591654 12.905053 -7881 0.116892 0.058745 10.671670 15.910556 -7882 0.049268 0.023795 6.954255 8.711577 -7883 0.098478 0.071966 9.942938 13.512080 -7884 0.052881 0.035187 7.215762 6.811543 -7885 0.126291 0.101760 10.878934 12.890276 -7886 0.067474 0.036931 9.053790 12.497391 -7887 0.078104 0.062388 11.411520 11.705759 -7888 0.055347 0.040066 12.044350 16.075286 -7889 0.155689 0.079421 12.870670 14.424664 -7890 0.057199 0.028529 11.458301 11.525188 -7891 0.071924 0.049401 11.694212 11.124066 -7892 0.046059 0.040719 9.822437 12.644023 -7893 0.082819 0.023204 8.337914 13.167447 -7894 0.070533 0.032462 9.011872 7.482331 -7895 0.057764 0.042846 11.062321 13.769489 -7896 0.101617 0.091675 16.662176 23.853369 -7897 0.117160 0.052839 11.614412 14.862136 -7898 0.087070 0.044842 10.527267 11.983055 -7899 0.159678 0.059327 9.787282 10.885574 -7900 0.061120 0.034972 9.514553 9.223912 -7901 0.094267 0.040662 8.152328 19.572760 -7902 0.073115 0.049960 7.446453 9.163512 -7903 0.071131 0.062324 13.029286 22.007291 -7904 0.123050 0.084626 12.837834 11.979203 -7905 0.057870 0.022485 6.910678 10.884881 -7906 0.043613 0.022731 6.816766 12.204601 -7907 0.088569 0.055070 12.862289 15.481918 -7908 0.125785 0.068793 8.682922 11.831054 -7909 0.058793 0.029860 6.730236 7.974408 -7910 0.048600 0.033322 14.077846 11.253102 -7911 0.049595 0.026004 9.877624 13.317482 -7912 0.076010 0.050961 9.286750 15.177542 -7913 0.079840 0.037563 8.330068 11.919516 -7914 0.071998 0.026927 8.626569 11.450943 -7915 0.085636 0.038131 10.711928 10.204591 -7916 0.088115 0.057198 13.604359 21.137889 -7917 0.032447 0.019280 7.055750 5.800441 -7918 0.085755 0.045735 12.191935 11.798382 -7919 0.063918 0.038176 5.727161 6.158873 -7920 0.083154 0.051859 8.589858 12.844508 -7921 0.053604 0.041727 11.187455 13.567901 -7922 0.140438 0.085370 9.896885 12.759518 -7923 0.104051 0.062582 12.586186 14.154857 -7924 0.094326 0.047801 9.922585 14.786448 -7925 0.154360 0.118315 11.663358 18.887104 -7926 0.039893 0.023647 10.803724 11.552787 -7927 0.088213 0.054283 10.515423 12.583682 -7928 0.126953 0.053112 15.310906 12.170164 -7929 0.060804 0.025225 7.466891 10.127879 -7930 0.053403 0.023401 7.338144 9.151510 -7931 0.047597 0.038501 14.157532 10.070445 -7932 0.067528 0.036935 8.589194 9.196837 -7933 0.036309 0.027381 9.962017 16.659521 -7934 0.047315 0.046642 11.026886 10.804680 -7935 0.052930 0.034191 12.717605 12.126507 -7936 0.068272 0.052890 7.684464 10.727300 -7937 0.067542 0.049666 10.188474 15.731174 -7938 0.115223 0.058953 9.530959 16.091760 -7939 0.090495 0.031832 7.954657 6.034758 -7940 0.111101 0.066491 8.088466 10.106404 -7941 0.089259 0.051776 10.168694 13.595013 -7942 0.052744 0.023672 7.943984 11.589428 -7943 0.081412 0.050995 10.856868 15.063804 -7944 0.064936 0.050350 10.365636 12.817311 -7945 0.079204 0.038610 6.732373 12.506029 -7946 0.119790 0.054810 12.337358 16.158137 -7947 0.060493 0.045404 6.132228 12.814343 -7948 0.076615 0.054197 9.927151 11.741361 -7949 0.041084 0.025290 9.073473 15.451992 -7950 0.084947 0.034371 10.675796 12.646556 -7951 0.048045 0.028385 11.685782 13.157212 -7952 0.071645 0.110931 10.746724 9.937570 -7953 0.052303 0.028803 9.634723 15.510462 -7954 0.096203 0.044136 11.241725 13.096345 -7955 0.115397 0.040794 17.122344 21.815754 -7956 0.085595 0.063979 7.204146 9.775381 -7957 0.084881 0.054901 9.571913 12.301895 -7958 0.061918 0.055733 10.953576 11.160294 -7959 0.060514 0.036270 9.904014 9.357223 -7960 0.064860 0.033028 13.515854 14.693356 -7961 0.062013 0.063681 10.420657 12.970799 -7962 0.039458 0.021315 9.086577 9.999706 -7963 0.172866 0.111741 9.771544 12.162133 -7964 0.132794 0.068832 13.664547 20.340392 -7965 0.101956 0.063682 10.121382 12.689436 -7966 0.042572 0.025602 9.136591 13.865334 -7967 0.071151 0.056031 10.065975 15.886148 -7968 0.084586 0.051204 8.619518 9.422877 -7969 0.079579 0.087093 9.082043 15.626992 -7970 0.094868 0.071840 8.216396 12.364443 -7971 0.077105 0.035156 13.155680 13.630750 -7972 0.085496 0.040724 10.615251 10.918836 -7973 0.080708 0.049270 6.994400 10.017451 -7974 0.089198 0.038214 14.211344 13.370588 -7975 0.069738 0.055966 12.383818 14.622762 -7976 0.106541 0.124214 17.400000 17.042358 -7977 0.066744 0.035106 10.609472 11.616057 -7978 0.059565 0.027727 8.257125 12.868243 -7979 0.116795 0.078379 10.534724 13.955935 -7980 0.061985 0.029681 12.759966 19.354495 -7981 0.065083 0.032940 8.618828 12.637159 -7982 0.085727 0.044080 12.252591 18.332924 -7983 0.069337 0.035378 13.920618 10.634870 -7984 0.073765 0.043985 10.478842 12.844701 -7985 0.063232 0.029541 8.674944 11.943446 -7986 0.095745 0.072409 11.613822 16.948836 -7987 0.054176 0.061089 10.769407 11.564873 -7988 0.062188 0.028341 6.809947 12.243950 -7989 0.070917 0.042005 6.189222 8.973064 -7990 0.090998 0.039936 10.675949 11.356066 -7991 0.077852 0.048653 10.704830 11.104022 -7992 0.059569 0.026720 9.471636 11.817570 -7993 0.065683 0.044324 6.430008 9.929684 -7994 0.094558 0.077724 10.960202 13.001823 -7995 0.054625 0.032867 9.077104 12.021161 -7996 0.095517 0.040489 10.882620 22.460661 -7997 0.052705 0.019988 10.286870 14.407624 -7998 0.046985 0.049011 8.253229 11.091321 -7999 0.069286 0.059126 7.459546 13.269448 -8000 0.086051 0.056004 10.597775 11.421184 -8001 0.094079 0.038165 15.780175 17.751908 -8002 0.066369 0.039371 10.427494 11.182804 -8003 0.137174 0.070835 14.791963 15.492870 -8004 0.078781 0.040127 11.623865 12.387879 -8005 0.055534 0.038305 8.232291 14.135622 -8006 0.058043 0.035607 15.367651 15.489308 -8007 0.066979 0.056905 8.996265 13.809592 -8008 0.136184 0.044241 9.373945 11.677970 -8009 0.123241 0.068530 9.849469 12.031419 -8010 0.086672 0.055627 9.699544 10.921933 -8011 0.065457 0.048898 10.267765 11.924932 -8012 0.093994 0.053719 15.042077 15.308629 -8013 0.081954 0.045981 10.360104 14.116971 -8014 0.101032 0.065354 9.661691 15.843762 -8015 0.087426 0.074039 8.601508 14.999751 -8016 0.068722 0.033616 7.490536 12.179192 -8017 0.067032 0.038470 7.719468 14.268984 -8018 0.069628 0.060908 11.506441 12.826106 -8019 0.046587 0.056460 10.951939 12.838866 -8020 0.108167 0.072120 10.267360 15.008246 -8021 0.109927 0.076550 11.070352 14.793838 -8022 0.131528 0.149373 10.103506 17.409345 -8023 0.060628 0.052967 7.327225 8.317943 -8024 0.072219 0.026614 10.733776 11.483450 -8025 0.108922 0.074306 13.332284 16.633789 -8026 0.074474 0.039396 7.568972 8.670930 -8027 0.057066 0.036053 14.285534 21.261471 -8028 0.057565 0.032313 8.762975 11.055215 -8029 0.066110 0.044659 11.030655 9.970658 -8030 0.072661 0.040196 10.816214 10.090475 -8031 0.076408 0.035383 10.814670 13.936674 -8032 0.104978 0.056656 9.101155 11.686150 -8033 0.065511 0.028980 7.108855 14.935482 -8034 0.093498 0.054898 10.001372 15.599757 -8035 0.056752 0.031235 12.434349 16.258539 -8036 0.057295 0.035183 7.071802 12.484277 -8037 0.102384 0.047373 7.433227 11.337755 -8038 0.116277 0.070000 12.226676 18.734965 -8039 0.083721 0.053675 8.279342 11.603324 -8040 0.065075 0.024585 11.771768 14.221991 -8041 0.054794 0.029482 8.902512 11.115272 -8042 0.086928 0.046315 11.687221 11.952957 -8043 0.081736 0.047424 13.458020 12.196447 -8044 0.073792 0.023234 7.686431 11.299894 -8045 0.103421 0.083012 12.342243 16.877995 -8046 0.059131 0.051652 9.500962 12.484201 -8047 0.053009 0.040721 5.717220 7.316664 -8048 0.084929 0.058535 13.251198 18.694934 -8049 0.081904 0.052731 8.495580 11.975421 -8050 0.076313 0.035533 10.357404 15.765057 -8051 0.066084 0.040440 8.070557 7.920193 -8052 0.081437 0.050705 10.385389 11.990566 -8053 0.065884 0.031577 7.729965 11.745387 -8054 0.061658 0.031847 11.681418 10.255583 -8055 0.050805 0.035700 7.158291 9.234901 -8056 0.072951 0.084150 8.467168 11.550007 -8057 0.073985 0.058740 10.495877 15.367511 -8058 0.097010 0.068353 10.908520 18.124295 -8059 0.096616 0.078833 8.520851 8.392313 -8060 0.071480 0.037668 10.312281 12.445337 -8061 0.077050 0.043287 10.552268 10.988610 -8062 0.043340 0.030527 6.818279 9.877866 -8063 0.076454 0.068526 11.950300 13.019521 -8064 0.045560 0.059433 7.800179 17.028143 -8065 0.119879 0.045236 9.736437 19.326534 -8066 0.086376 0.086484 12.502878 15.891032 -8067 0.029680 0.016635 7.279915 12.680230 -8068 0.099717 0.054298 9.758060 13.563553 -8069 0.045150 0.022279 12.832451 13.305992 -8070 0.102777 0.076745 11.735299 18.562287 -8071 0.076480 0.051207 7.469830 8.408668 -8072 0.074835 0.046922 7.156930 10.780178 -8073 0.162520 0.120408 10.561772 14.713736 -8074 0.084638 0.029842 9.493067 17.378335 -8075 0.084750 0.068741 12.214996 19.124116 -8076 0.083116 0.042391 8.788293 9.893498 -8077 0.089723 0.040299 8.150430 8.618087 -8078 0.049167 0.031514 6.871983 12.963426 -8079 0.087741 0.055561 11.681333 13.973828 -8080 0.074120 0.029008 11.928648 13.556987 -8081 0.044919 0.026514 7.450511 9.763002 -8082 0.083639 0.042873 9.637279 9.583925 -8083 0.051881 0.041301 12.846686 11.525188 -8084 0.081449 0.050556 7.134879 13.579594 -8085 0.053685 0.043185 7.700314 10.504011 -8086 0.085511 0.042298 9.824837 17.466997 -8087 0.087615 0.048404 9.103395 11.315205 -8088 0.093166 0.046973 12.098712 15.336476 -8089 0.091148 0.068183 16.254271 15.180956 -8090 0.037458 0.018595 8.879892 9.257798 -8091 0.071248 0.041910 11.651963 11.962127 -8092 0.074909 0.058691 8.750076 10.281352 -8093 0.097528 0.064830 10.128903 10.526343 -8094 0.069480 0.071618 7.955197 11.732836 -8095 0.089264 0.072240 12.408992 13.743878 -8096 0.056156 0.041077 10.645923 10.578872 -8097 0.100570 0.058970 8.613856 13.230562 -8098 0.059288 0.035736 6.604947 10.577685 -8099 0.080607 0.035536 7.479156 12.364156 -8100 0.075290 0.045088 15.617866 13.042223 -8101 0.078089 0.050649 11.530829 19.303325 -8102 0.073562 0.036026 7.171803 8.862016 -8103 0.085032 0.051423 10.569194 11.823854 -8104 0.052781 0.033230 8.875819 9.816405 -8105 0.052556 0.021311 6.856956 12.279524 -8106 0.055023 0.027829 10.749760 9.901457 -8107 0.046983 0.028335 9.891389 9.694178 -8108 0.063700 0.031219 6.663061 10.813311 -8109 0.090349 0.057475 10.338994 12.819464 -8110 0.079818 0.057370 9.056487 10.337895 -8111 0.100216 0.049527 8.295714 11.088761 -8112 0.044195 0.031467 10.363050 14.987312 -8113 0.101250 0.079257 10.196334 14.758633 -8114 0.101323 0.063611 10.360759 16.918173 -8115 0.037835 0.026417 13.335011 11.516333 -8116 0.114810 0.052513 15.554771 17.947768 -8117 0.141988 0.106151 8.956825 11.714155 -8118 0.062110 0.043248 9.292721 13.977981 -8119 0.068561 0.037463 10.550733 14.348523 -8120 0.101609 0.040251 7.542707 12.118621 -8121 0.143321 0.084894 18.908951 20.752915 -8122 0.085293 0.031128 12.059386 13.183121 -8123 0.104257 0.030954 6.602708 9.957445 -8124 0.041978 0.037898 9.843854 13.942383 -8125 0.112199 0.055703 8.938281 14.688049 -8126 0.071051 0.044717 10.449924 13.798547 -8127 0.076860 0.057057 10.456356 14.003151 -8128 0.093812 0.056436 7.890778 14.567568 -8129 0.068348 0.029369 9.887981 10.033340 -8130 0.081502 0.056108 11.468710 11.708099 -8131 0.048871 0.021570 10.108673 11.474775 -8132 0.057184 0.030798 7.596644 7.116497 -8133 0.072620 0.064240 9.238154 8.890561 -8134 0.036179 0.017553 8.058326 8.219115 -8135 0.100838 0.051929 8.692290 12.211518 -8136 0.064161 0.053610 14.184987 16.384784 -8137 0.129184 0.082772 11.062255 12.011429 -8138 0.075871 0.038677 11.839818 17.728314 -8139 0.062126 0.043847 8.092855 7.155461 -8140 0.093585 0.045552 6.863504 12.591336 -8141 0.064657 0.034986 7.916348 11.760586 -8142 0.080335 0.075153 9.899811 16.317407 -8143 0.107423 0.047621 14.896390 17.826899 -8144 0.093208 0.055211 11.274537 14.068543 -8145 0.076970 0.054107 8.254009 10.770106 -8146 0.070668 0.036113 10.954776 15.994465 -8147 0.073609 0.029487 7.451308 11.977176 -8148 0.046340 0.015385 6.958685 7.287009 -8149 0.086785 0.059715 7.557501 10.216915 -8150 0.057062 0.039026 5.970220 13.093482 -8151 0.075256 0.052544 10.011606 13.279129 -8152 0.100899 0.044138 11.536438 13.055449 -8153 0.066153 0.065041 10.615480 11.735772 -8154 0.084975 0.067360 15.632041 16.556039 -8155 0.075686 0.037729 6.918567 8.422938 -8156 0.056252 0.033271 9.456144 14.527974 -8157 0.078545 0.040679 7.727043 11.817297 -8158 0.122969 0.062484 7.806314 11.918922 -8159 0.067789 0.025507 11.764722 11.430399 -8160 0.053395 0.043437 10.034150 7.253389 -8161 0.075443 0.061321 8.220195 11.098459 -8162 0.084968 0.046922 7.819398 10.833862 -8163 0.210031 0.102635 9.538394 15.903471 -8164 0.060758 0.023701 7.605438 9.952475 -8165 0.102866 0.058472 10.403362 17.941703 -8166 0.140641 0.110625 12.494613 12.837013 -8167 0.099814 0.045991 11.922754 17.570399 -8168 0.047393 0.034693 6.737856 8.718730 -8169 0.055751 0.019995 7.933188 14.451177 -8170 0.071867 0.037813 13.255551 10.964390 -8171 0.072483 0.048930 9.674313 12.151301 -8172 0.105807 0.057494 15.073109 14.596978 -8173 0.106709 0.065221 10.503409 14.380965 -8174 0.087812 0.058367 14.949303 17.037176 -8175 0.056893 0.040892 7.579261 10.199143 -8176 0.067329 0.070196 10.740157 8.695740 -8177 0.053307 0.032968 11.125247 11.027811 -8178 0.058633 0.025936 8.905148 10.499242 -8179 0.069078 0.051218 10.008039 14.407664 -8180 0.051350 0.035237 8.397425 9.531076 -8181 0.089933 0.062480 6.560849 9.871128 -8182 0.105865 0.063684 9.862796 9.165867 -8183 0.058609 0.031963 10.480390 11.669503 -8184 0.071495 0.046897 10.815275 13.545439 -8185 0.033071 0.032099 9.862214 8.993600 -8186 0.078091 0.052153 16.580466 10.349713 -8187 0.084213 0.039280 13.651577 13.602976 -8188 0.110929 0.068326 6.713363 11.509500 -8189 0.090937 0.045382 16.375699 13.971685 -8190 0.100053 0.054547 7.636388 13.382725 -8191 0.063377 0.041863 15.254203 14.603821 -8192 0.078424 0.038889 11.438383 13.607836 -8193 0.107022 0.040195 8.852119 8.212765 -8194 0.052534 0.029503 6.177390 7.394725 -8195 0.066370 0.046005 5.404836 7.201061 -8196 0.098937 0.086178 9.014965 11.207112 -8197 0.066374 0.022581 9.882944 13.338958 -8198 0.095185 0.096863 10.690853 12.973164 -8199 0.074310 0.055141 13.265336 17.306304 -8200 0.047907 0.028333 10.795497 14.129849 -8201 0.102522 0.065599 11.176578 13.296316 -8202 0.131024 0.079951 18.253589 19.314493 -8203 0.129890 0.089919 7.183793 9.602162 -8204 0.077834 0.033710 9.005274 8.881417 -8205 0.092648 0.029464 12.983524 15.296061 -8206 0.087182 0.052397 11.991450 15.423986 -8207 0.058298 0.048474 9.934877 12.930682 -8208 0.111564 0.096929 10.349222 17.846998 -8209 0.039193 0.033428 9.832010 16.479927 -8210 0.076274 0.042736 6.170934 15.612097 -8211 0.070033 0.028460 11.107858 17.406670 -8212 0.092390 0.068193 6.133072 11.263419 -8213 0.102713 0.055118 15.157037 19.539053 -8214 0.086874 0.048263 11.796835 13.147762 -8215 0.120050 0.080971 9.477425 12.585339 -8216 0.120936 0.058205 9.298103 9.174557 -8217 0.042891 0.016873 10.279229 9.556864 -8218 0.050034 0.033295 6.039347 6.746840 -8219 0.067605 0.036197 9.354139 13.575751 -8220 0.052252 0.017920 6.459181 8.119717 -8221 0.089425 0.054143 13.752260 15.664486 -8222 0.059648 0.040607 6.224028 9.057574 -8223 0.055365 0.033293 13.214437 9.134214 -8224 0.071464 0.048044 9.124932 11.783342 -8225 0.076693 0.038430 7.981574 14.968770 -8226 0.094802 0.060601 5.364861 7.903464 -8227 0.062799 0.033119 9.827594 11.810992 -8228 0.064873 0.040712 10.975431 12.682297 -8229 0.107392 0.060950 9.576400 12.460859 -8230 0.122235 0.054100 10.253954 13.377061 -8231 0.089847 0.059111 10.275792 17.867564 -8232 0.063574 0.043546 11.802184 11.605470 -8233 0.066084 0.052992 11.680687 13.470442 -8234 0.051762 0.033502 7.881505 9.361283 -8235 0.094252 0.061747 10.236266 17.241869 -8236 0.094135 0.090596 14.127312 20.598012 -8237 0.054409 0.024117 7.118764 10.271311 -8238 0.047266 0.034328 13.394869 13.503084 -8239 0.073618 0.058818 11.859172 16.266878 -8240 0.055408 0.050594 6.473921 10.843709 -8241 0.121821 0.048044 6.638998 9.999421 -8242 0.136042 0.066116 10.236230 12.701231 -8243 0.085306 0.048943 9.463717 10.764255 -8244 0.065418 0.034996 6.689808 14.192808 -8245 0.047053 0.026397 8.516277 11.489396 -8246 0.084996 0.056075 11.555946 13.690771 -8247 0.094164 0.045653 9.414700 13.314527 -8248 0.071258 0.035088 6.989926 9.653830 -8249 0.096044 0.049666 12.008968 17.631262 -8250 0.111348 0.074249 10.340841 14.110099 -8251 0.068130 0.032555 8.816470 10.845735 -8252 0.081123 0.035740 8.447846 9.351641 -8253 0.063339 0.041453 10.636774 11.737361 -8254 0.104124 0.065433 13.562572 17.430485 -8255 0.075698 0.040187 14.902553 16.001278 -8256 0.065232 0.053661 11.120316 10.930529 -8257 0.049888 0.031253 9.376821 11.494386 -8258 0.072895 0.070767 11.941153 10.828948 -8259 0.067122 0.052128 11.541045 10.716361 -8260 0.085761 0.029757 10.376778 15.096507 -8261 0.052449 0.043281 8.588257 8.602630 -8262 0.071637 0.049856 10.000038 11.793978 -8263 0.051911 0.028599 5.180714 12.732687 -8264 0.106311 0.049125 10.063815 11.249494 -8265 0.075147 0.052083 14.197637 14.686233 -8266 0.136760 0.073427 11.101792 9.173538 -8267 0.084324 0.045475 6.062668 8.341454 -8268 0.065258 0.061191 12.132759 13.936463 -8269 0.045608 0.040534 6.861631 12.517079 -8270 0.053455 0.025835 8.074589 11.501674 -8271 0.073211 0.055804 11.583418 13.984228 -8272 0.063009 0.033475 8.603087 9.198198 -8273 0.091134 0.040887 11.904730 15.906549 -8274 0.100700 0.085053 13.582654 17.904278 -8275 0.066217 0.046934 10.592039 11.988165 -8276 0.075965 0.085418 10.467438 14.504192 -8277 0.040407 0.030083 9.858571 14.861127 -8278 0.069839 0.033921 6.694738 14.060189 -8279 0.049320 0.028112 8.920928 10.040605 -8280 0.114429 0.040959 9.961305 14.042738 -8281 0.033079 0.019708 8.186276 10.559968 -8282 0.082343 0.042314 6.938954 11.200127 -8283 0.044589 0.035751 9.390798 10.941106 -8284 0.130929 0.059750 7.401508 7.071706 -8285 0.088074 0.124390 15.524720 24.412738 -8286 0.057416 0.024138 10.238583 11.664326 -8287 0.048388 0.052799 11.958391 14.215511 -8288 0.099302 0.066184 13.509346 14.497702 -8289 0.072350 0.061076 10.571553 19.190770 -8290 0.043684 0.027875 6.089521 8.146082 -8291 0.072829 0.061162 12.377104 18.046700 -8292 0.041169 0.020465 8.233186 9.462349 -8293 0.102281 0.054536 8.824970 12.909020 -8294 0.068391 0.033530 9.028918 13.785821 -8295 0.131356 0.091357 9.273991 17.575063 -8296 0.110237 0.076427 12.859863 12.894271 -8297 0.065780 0.032385 7.114926 15.018579 -8298 0.053895 0.026994 9.116889 12.177398 -8299 0.068208 0.044355 11.399509 10.395895 -8300 0.041686 0.029665 8.859222 8.982398 -8301 0.044761 0.025641 14.805647 15.418086 -8302 0.078597 0.071652 9.905595 16.220478 -8303 0.072588 0.063074 7.784402 10.575959 -8304 0.076783 0.051741 7.542538 10.875370 -8305 0.057326 0.034709 10.532164 13.038493 -8306 0.191403 0.107617 14.395316 22.624794 -8307 0.071432 0.024592 5.986994 8.509573 -8308 0.092287 0.056186 9.175125 7.877364 -8309 0.065428 0.046946 11.748521 11.280956 -8310 0.062714 0.031697 11.603974 15.245030 -8311 0.105415 0.054659 11.318969 9.854512 -8312 0.060850 0.025052 7.933594 8.833600 -8313 0.069153 0.043645 7.200865 8.973621 -8314 0.090839 0.039896 10.238045 20.026757 -8315 0.096855 0.048626 8.859460 12.947511 -8316 0.044536 0.016447 8.031666 8.732563 -8317 0.102055 0.054231 10.610983 14.717989 -8318 0.074413 0.035554 12.698975 15.990649 -8319 0.072219 0.042489 13.070220 16.258371 -8320 0.041901 0.039167 7.958681 11.585191 -8321 0.065099 0.064684 6.811733 11.082295 -8322 0.092536 0.070667 13.481458 9.610212 -8323 0.048051 0.044224 8.876454 13.780938 -8324 0.100773 0.078924 9.834841 11.747305 -8325 0.091193 0.050173 10.152146 18.665484 -8326 0.097272 0.072948 9.614498 14.423312 -8327 0.057743 0.029590 8.230929 12.714928 -8328 0.062704 0.035867 9.204986 11.889233 -8329 0.048498 0.026375 9.535808 15.697654 -8330 0.092780 0.051628 8.966162 13.589845 -8331 0.078849 0.031199 8.310597 10.101049 -8332 0.087031 0.054426 10.356363 11.296757 -8333 0.124488 0.084767 13.764006 15.699859 -8334 0.144856 0.093193 14.096362 14.417166 -8335 0.057717 0.035344 6.148360 9.194826 -8336 0.082885 0.043338 9.598183 8.657753 -8337 0.074448 0.053358 8.122983 11.738026 -8338 0.066825 0.061278 8.619957 11.407696 -8339 0.051081 0.029787 11.243079 14.179923 -8340 0.055465 0.052262 12.042483 11.437452 -8341 0.099680 0.045020 10.658550 14.240330 -8342 0.064846 0.035321 10.964215 16.794899 -8343 0.087780 0.094068 13.758732 10.480416 -8344 0.052764 0.021804 9.986738 11.582187 -8345 0.103898 0.059610 11.484847 13.269257 -8346 0.083052 0.060746 9.256183 14.284755 -8347 0.074216 0.036141 6.693605 8.511211 -8348 0.096767 0.034301 8.582817 15.536427 -8349 0.049507 0.030890 6.143880 9.833383 -8350 0.054125 0.053440 11.054279 17.016026 -8351 0.060726 0.053191 7.727834 11.219291 -8352 0.063058 0.045276 7.999683 9.730601 -8353 0.097486 0.054133 10.452032 15.847456 -8354 0.053297 0.030994 11.460603 14.572777 -8355 0.089595 0.063014 13.502816 10.799398 -8356 0.112746 0.070442 10.248895 17.280748 -8357 0.065274 0.053732 8.369872 8.993545 -8358 0.049601 0.030173 5.333611 9.727927 -8359 0.066422 0.043644 11.612034 17.230310 -8360 0.075795 0.063949 10.972815 15.057079 -8361 0.082426 0.047038 5.723687 7.847568 -8362 0.082701 0.072746 9.110214 11.411084 -8363 0.063667 0.041957 9.685131 9.908220 -8364 0.072915 0.043258 12.770390 11.241744 -8365 0.070696 0.051499 8.018459 12.409065 -8366 0.046840 0.039860 5.969756 11.866572 -8367 0.077664 0.046834 10.967345 17.178923 -8368 0.111788 0.120566 7.992997 12.098152 -8369 0.138079 0.054727 7.315071 9.169378 -8370 0.087633 0.033788 8.021884 11.061909 -8371 0.034763 0.018264 12.323748 13.586949 -8372 0.054825 0.035301 9.087196 13.927143 -8373 0.057184 0.044127 8.167564 13.881803 -8374 0.080166 0.037315 9.245416 12.313050 -8375 0.043904 0.033191 7.280527 10.680000 -8376 0.079510 0.071643 11.824032 14.897758 -8377 0.100873 0.061445 10.075490 13.402239 -8378 0.146984 0.096016 10.342739 13.661221 -8379 0.078418 0.061517 11.686827 17.430963 -8380 0.095085 0.038427 12.884401 19.325323 -8381 0.038407 0.031494 7.928970 11.244720 -8382 0.067835 0.043401 9.023453 12.350530 -8383 0.079706 0.068746 9.852464 13.442549 -8384 0.055073 0.032907 10.018472 13.354979 -8385 0.046304 0.060049 10.742186 20.349850 -8386 0.093378 0.036385 12.096914 13.123336 -8387 0.074867 0.030156 11.795712 15.901756 -8388 0.077938 0.073095 11.275618 14.249766 -8389 0.043000 0.019708 7.782891 10.949643 -8390 0.052815 0.027575 14.101247 16.828446 -8391 0.079926 0.045818 6.034897 9.366990 -8392 0.106794 0.054992 9.839237 14.983316 -8393 0.075482 0.059003 11.280369 16.913759 -8394 0.053942 0.045686 10.148048 14.318155 -8395 0.066215 0.046347 10.816718 15.167734 -8396 0.088814 0.048648 8.770067 11.208179 -8397 0.091580 0.070371 15.226024 13.074353 -8398 0.098687 0.061327 7.317739 11.937615 -8399 0.062316 0.043910 9.139865 19.070339 -8400 0.037696 0.016486 7.349985 8.943544 -8401 0.076005 0.067264 15.051616 16.425418 -8402 0.055634 0.045885 12.327252 10.865782 -8403 0.054172 0.030769 13.289832 10.580296 -8404 0.063935 0.036943 11.521632 11.564029 -8405 0.098506 0.064631 9.953346 13.687541 -8406 0.069542 0.037414 7.284122 15.079587 -8407 0.084428 0.061245 7.793797 16.771430 -8408 0.071573 0.048869 9.931051 19.178028 -8409 0.052910 0.035621 13.286229 14.142950 -8410 0.072265 0.043753 15.448428 18.255031 -8411 0.081639 0.072880 8.730230 9.549167 -8412 0.081848 0.039342 9.138867 10.926338 -8413 0.065749 0.046926 7.107196 8.839780 -8414 0.060557 0.039937 11.646786 10.330527 -8415 0.069990 0.038444 12.148269 16.644867 -8416 0.096166 0.059408 10.352960 12.548105 -8417 0.074441 0.031460 8.677624 11.475933 -8418 0.075647 0.036472 8.113594 9.659114 -8419 0.074040 0.039711 6.754926 9.874034 -8420 0.062274 0.027742 6.214997 6.414220 -8421 0.100298 0.048853 8.961822 15.643269 -8422 0.091342 0.040862 12.746141 14.869959 -8423 0.023357 0.009726 7.278177 7.045098 -8424 0.075100 0.039687 16.599341 12.883829 -8425 0.082615 0.073857 11.051370 15.290940 -8426 0.060717 0.028774 9.006955 15.482522 -8427 0.104367 0.070458 12.002413 19.417126 -8428 0.079886 0.054088 13.470161 14.990239 -8429 0.079754 0.051633 10.280495 10.287419 -8430 0.051970 0.029755 7.441069 9.492411 -8431 0.082636 0.047946 10.516760 14.256685 -8432 0.095818 0.038363 9.829841 16.691800 -8433 0.064409 0.065967 10.412297 12.718738 -8434 0.093759 0.050817 11.452626 16.147767 -8435 0.055522 0.028719 8.858413 11.861814 -8436 0.064766 0.063007 9.227984 11.290251 -8437 0.062171 0.046904 9.603319 14.746941 -8438 0.061866 0.024542 10.828077 12.346336 -8439 0.064051 0.035332 11.574610 10.903039 -8440 0.078547 0.064089 10.048307 11.525379 -8441 0.071169 0.042042 7.673963 8.937258 -8442 0.060825 0.021068 9.377719 14.382391 -8443 0.109615 0.070524 12.038449 15.236288 -8444 0.056094 0.034341 8.347195 10.152198 -8445 0.057478 0.050014 7.653267 11.271320 -8446 0.049713 0.044744 9.781913 12.058114 -8447 0.080334 0.037948 12.710315 15.887856 -8448 0.061800 0.029561 6.618689 8.048912 -8449 0.090133 0.069672 7.392835 7.526963 -8450 0.080176 0.058710 8.035345 13.093207 -8451 0.080373 0.099506 10.279108 13.558057 -8452 0.047629 0.042876 7.540629 14.095848 -8453 0.099570 0.073626 10.000952 11.650731 -8454 0.076254 0.041655 10.530980 11.164523 -8455 0.054803 0.024706 10.063591 11.769813 -8456 0.064600 0.046823 9.828434 24.710072 -8457 0.064739 0.050278 7.455526 11.996287 -8458 0.089667 0.049690 13.179395 12.388288 -8459 0.100469 0.031815 10.776840 12.514006 -8460 0.098070 0.086905 7.958480 7.529929 -8461 0.141576 0.078823 11.646218 18.328828 -8462 0.113518 0.049369 9.348449 13.543940 -8463 0.059732 0.024784 13.328070 12.655697 -8464 0.059908 0.047625 8.024421 11.632118 -8465 0.113329 0.109575 12.635530 12.633821 -8466 0.058101 0.025560 6.682524 12.029117 -8467 0.062692 0.048569 10.797940 18.884071 -8468 0.077795 0.041947 9.182891 12.306804 -8469 0.052315 0.021198 6.825158 9.017288 -8470 0.058465 0.028674 6.864122 10.945074 -8471 0.063117 0.044583 10.632179 10.896553 -8472 0.103615 0.072219 9.441796 19.358465 -8473 0.087780 0.044822 10.416049 8.968014 -8474 0.066823 0.064723 6.946537 10.822889 -8475 0.088906 0.070947 7.805458 9.872886 -8476 0.083644 0.045863 8.466783 12.155606 -8477 0.042502 0.024438 6.822038 7.981665 -8478 0.062743 0.032012 15.332488 16.509175 -8479 0.049893 0.027471 9.326837 12.221040 -8480 0.088915 0.089508 7.078086 10.243445 -8481 0.073960 0.053067 12.506887 17.303400 -8482 0.103010 0.067061 11.235475 15.150509 -8483 0.081987 0.051828 6.859254 11.526959 -8484 0.087275 0.056664 8.217694 9.074082 -8485 0.052937 0.033833 11.062368 13.676844 -8486 0.053258 0.024254 4.945772 7.441683 -8487 0.070945 0.049143 12.123206 14.062461 -8488 0.074454 0.051540 7.291849 11.238821 -8489 0.075257 0.055121 7.908178 12.155205 -8490 0.079759 0.039487 11.537902 9.201049 -8491 0.127190 0.047515 11.438645 15.287378 -8492 0.093013 0.086874 11.010491 16.718809 -8493 0.056498 0.021965 8.449986 12.307499 -8494 0.071334 0.038564 9.413903 13.438947 -8495 0.093667 0.139382 9.684278 15.828359 -8496 0.055333 0.045743 13.864992 11.870487 -8497 0.069041 0.026391 9.579207 11.297454 -8498 0.082868 0.046408 7.260051 10.103614 -8499 0.044239 0.034453 11.213902 14.757710 -8500 0.046995 0.033129 5.575607 10.997333 -8501 0.127694 0.073833 13.302228 17.416838 -8502 0.084783 0.044806 13.786002 16.634528 -8503 0.086374 0.027587 6.616110 8.604591 -8504 0.086973 0.027516 12.306713 12.605502 -8505 0.104074 0.058009 15.052494 11.477326 -8506 0.090697 0.069845 8.278549 7.957370 -8507 0.058196 0.027462 8.722663 10.835166 -8508 0.090712 0.078419 11.921696 18.842205 -8509 0.065116 0.031449 9.443247 14.362197 -8510 0.092012 0.050368 11.975979 17.230227 -8511 0.074698 0.038921 9.988587 13.045579 -8512 0.095086 0.071328 9.159182 10.443030 -8513 0.092376 0.039047 9.320976 13.646011 -8514 0.061911 0.047235 13.610762 13.747518 -8515 0.087399 0.052490 10.555112 12.179004 -8516 0.188083 0.106576 14.455929 14.118949 -8517 0.107395 0.063590 8.348973 10.631635 -8518 0.050346 0.017591 8.154389 8.582869 -8519 0.093287 0.074727 8.012244 11.104385 -8520 0.051077 0.045659 13.230910 19.291283 -8521 0.085376 0.045889 7.343760 10.865144 -8522 0.057984 0.024455 7.613190 8.960646 -8523 0.063218 0.051853 6.035233 9.826598 -8524 0.089672 0.083935 18.939507 12.548695 -8525 0.092317 0.090623 11.105183 17.620606 -8526 0.078074 0.046835 13.072612 22.160759 -8527 0.081304 0.043748 14.670507 13.921779 -8528 0.069807 0.054720 8.626870 11.509742 -8529 0.037773 0.033313 9.541878 9.410504 -8530 0.109789 0.094688 12.567730 17.157944 -8531 0.087208 0.071739 12.048270 13.988597 -8532 0.066809 0.044873 10.079586 11.524334 -8533 0.075299 0.043051 8.320912 12.919832 -8534 0.113486 0.078580 9.003793 10.235118 -8535 0.080777 0.089387 9.385618 14.084843 -8536 0.126853 0.077780 14.046416 22.176317 -8537 0.061637 0.039359 9.573667 11.150179 -8538 0.069827 0.043591 7.452198 7.477277 -8539 0.056341 0.038673 5.718084 7.938076 -8540 0.129345 0.106108 7.719521 13.280163 -8541 0.077976 0.064677 11.768317 12.700704 -8542 0.056552 0.057790 17.851563 15.894962 -8543 0.122785 0.064561 8.411024 13.700676 -8544 0.056071 0.049924 14.676315 12.156334 -8545 0.113634 0.111522 14.359825 23.828810 -8546 0.046327 0.026033 8.049183 8.592941 -8547 0.072960 0.049929 9.334614 10.947793 -8548 0.054046 0.033480 7.797617 13.158237 -8549 0.099403 0.061632 12.613676 14.031261 -8550 0.086820 0.114136 8.822831 14.502499 -8551 0.055323 0.056225 5.716353 8.390963 -8552 0.054469 0.021245 9.801479 15.116610 -8553 0.063704 0.082059 8.741076 15.053825 -8554 0.050850 0.048813 12.388233 12.139489 -8555 0.051767 0.040507 11.773229 11.657734 -8556 0.106611 0.079831 10.500973 16.519781 -8557 0.070711 0.044550 7.456426 11.691531 -8558 0.066421 0.039512 20.547591 24.593640 -8559 0.065608 0.030344 13.615720 16.316665 -8560 0.061769 0.027911 6.120372 8.778620 -8561 0.060527 0.032720 7.907739 11.221809 -8562 0.081616 0.065724 7.496492 15.812237 -8563 0.057089 0.030082 6.004096 18.325023 -8564 0.076538 0.044937 8.885016 10.627646 -8565 0.091389 0.074602 8.003177 12.784613 -8566 0.056796 0.040681 6.818724 8.661405 -8567 0.077624 0.041147 8.066801 11.431981 -8568 0.068691 0.053930 13.844250 14.816522 -8569 0.059838 0.029663 8.605179 13.240040 -8570 0.061164 0.030690 13.879690 14.010440 -8571 0.120573 0.081906 15.827119 15.548786 -8572 0.068505 0.050783 12.641534 13.799394 -8573 0.077912 0.055199 12.949183 16.403993 -8574 0.071488 0.053253 10.755778 18.818432 -8575 0.077677 0.048199 7.287048 8.297648 -8576 0.068029 0.041443 6.103440 7.090436 -8577 0.097094 0.051178 9.539247 13.505287 -8578 0.068903 0.036228 11.438409 10.465573 -8579 0.060270 0.032301 6.534324 10.468072 -8580 0.068316 0.028531 6.738184 10.184082 -8581 0.046764 0.014523 8.987274 11.293734 -8582 0.071559 0.058399 12.332210 13.647171 -8583 0.083100 0.036765 8.494656 12.644943 -8584 0.054316 0.071317 7.331123 10.784732 -8585 0.078861 0.055400 14.867298 17.956853 -8586 0.101687 0.088995 9.650330 15.288175 -8587 0.051972 0.029733 8.269461 11.103300 -8588 0.052532 0.046730 10.700916 13.508400 -8589 0.061201 0.052552 10.298196 8.912166 -8590 0.074373 0.032370 7.471868 10.626087 -8591 0.043986 0.022505 7.735211 8.094899 -8592 0.053803 0.040977 8.540269 9.549006 -8593 0.069934 0.039887 10.447639 12.374630 -8594 0.086806 0.045865 12.799652 10.921941 -8595 0.081545 0.059838 12.437803 15.258271 -8596 0.086299 0.061533 11.412616 15.697399 -8597 0.054357 0.041285 10.652583 12.412344 -8598 0.072240 0.043751 12.483074 15.370214 -8599 0.079627 0.063583 10.858265 12.084384 -8600 0.079240 0.027764 4.599217 8.412479 -8601 0.038242 0.024251 10.444279 12.015535 -8602 0.066066 0.029405 7.406341 8.362706 -8603 0.117509 0.096210 13.253169 16.977277 -8604 0.059581 0.023435 11.348244 12.439869 -8605 0.119307 0.063389 11.913530 17.600038 -8606 0.082662 0.032416 10.146601 14.993910 -8607 0.078213 0.048533 9.572519 19.579127 -8608 0.046771 0.019033 13.584159 11.623031 -8609 0.062763 0.050925 8.051304 11.917997 -8610 0.063997 0.028560 9.185862 16.857927 -8611 0.084254 0.063805 9.125288 16.831812 -8612 0.075528 0.053504 10.386322 14.428764 -8613 0.074005 0.044422 14.789276 13.423809 -8614 0.099604 0.079215 10.000166 16.758142 -8615 0.087446 0.059173 5.631465 12.656424 -8616 0.076117 0.084865 8.519596 14.495536 -8617 0.056228 0.035580 12.573477 13.165533 -8618 0.062050 0.045524 10.224568 10.396655 -8619 0.099033 0.072313 11.339524 11.941610 -8620 0.099426 0.049029 5.847441 6.601811 -8621 0.053888 0.047412 8.553597 10.377590 -8622 0.118152 0.043293 12.881862 18.587456 -8623 0.051361 0.036958 7.803062 9.753193 -8624 0.062282 0.017324 9.891546 14.458088 -8625 0.083343 0.031892 9.352164 18.699502 -8626 0.040490 0.021897 9.084226 12.927300 -8627 0.060811 0.058063 9.806559 15.926893 -8628 0.113188 0.047664 15.017458 22.624846 -8629 0.060915 0.041511 13.032520 14.844548 -8630 0.092763 0.034427 13.196607 14.985802 -8631 0.054582 0.029230 5.821319 7.186284 -8632 0.072709 0.034337 8.588791 7.441845 -8633 0.057790 0.036895 11.060520 10.821898 -8634 0.036019 0.019686 8.022167 11.565093 -8635 0.104820 0.074810 15.165037 21.123740 -8636 0.051696 0.021524 9.104742 11.971916 -8637 0.069059 0.055166 12.373291 15.347317 -8638 0.070050 0.032749 9.780997 11.915597 -8639 0.075972 0.059046 7.513750 13.473865 -8640 0.096118 0.048165 9.647037 11.354001 -8641 0.068838 0.022143 7.425213 12.988176 -8642 0.064810 0.027838 9.280504 16.112647 -8643 0.044162 0.026004 8.159852 7.224296 -8644 0.069278 0.055568 10.381105 14.911565 -8645 0.076728 0.040267 10.918336 14.680500 -8646 0.080037 0.086257 12.172351 12.260564 -8647 0.059429 0.024987 7.496279 14.830727 -8648 0.068367 0.029177 10.503181 9.556502 -8649 0.202321 0.123790 12.925813 21.257260 -8650 0.090719 0.059390 12.832613 9.330143 -8651 0.061663 0.060693 8.392503 10.297204 -8652 0.092309 0.088520 10.773160 12.523475 -8653 0.057051 0.016942 9.100603 16.137471 -8654 0.111604 0.073250 9.558878 11.555735 -8655 0.051231 0.023729 7.538450 7.345001 -8656 0.098508 0.073095 9.072894 13.111545 -8657 0.047213 0.023051 9.430980 8.787370 -8658 0.046535 0.022428 14.608874 16.738717 -8659 0.060233 0.042623 19.722358 16.010546 -8660 0.074409 0.062202 9.997668 14.126094 -8661 0.063494 0.023624 7.533598 10.611835 -8662 0.052354 0.027807 7.434041 8.152795 -8663 0.065412 0.035151 7.483895 9.181832 -8664 0.051726 0.022773 9.959869 9.931703 -8665 0.070167 0.049494 9.132983 11.311660 -8666 0.053300 0.033745 8.412784 11.728505 -8667 0.059750 0.032879 8.735161 13.071678 -8668 0.095981 0.053177 8.488301 14.433040 -8669 0.061619 0.048848 11.883403 15.795305 -8670 0.069416 0.035093 10.221769 11.886279 -8671 0.118366 0.050615 9.956015 15.585781 -8672 0.064333 0.027723 11.379169 12.948179 -8673 0.063826 0.040292 11.166494 12.391975 -8674 0.030971 0.020643 9.327119 11.817525 -8675 0.077444 0.042025 14.658821 16.444867 -8676 0.069631 0.044951 10.944886 14.700790 -8677 0.078968 0.032566 8.906357 9.449080 -8678 0.067707 0.077632 7.967470 14.406969 -8679 0.060159 0.035714 8.899508 15.327582 -8680 0.074115 0.033301 6.288201 13.363828 -8681 0.051234 0.034352 10.421138 11.512794 -8682 0.056596 0.041264 10.162477 15.160483 -8683 0.082478 0.064583 8.654006 14.635979 -8684 0.067380 0.044717 12.703356 16.919424 -8685 0.045356 0.013793 8.355127 12.993751 -8686 0.081627 0.043071 7.387961 13.318421 -8687 0.089344 0.034780 8.900987 11.301239 -8688 0.048163 0.025953 8.325852 9.162745 -8689 0.106450 0.050174 6.467195 9.162748 -8690 0.129778 0.088357 17.640288 14.115400 -8691 0.105972 0.065520 11.993548 20.083991 -8692 0.109043 0.046743 11.660301 11.277144 -8693 0.078773 0.054710 11.064360 15.521573 -8694 0.069352 0.038594 7.752380 7.238326 -8695 0.070045 0.034075 8.849106 11.861053 -8696 0.059167 0.031844 12.876551 12.010131 -8697 0.072679 0.043755 6.595886 10.932032 -8698 0.098497 0.045831 10.810965 12.731986 -8699 0.065879 0.037231 12.137636 15.448063 -8700 0.080401 0.033831 12.466976 14.914908 -8701 0.049127 0.020583 5.765606 6.940702 -8702 0.089484 0.065096 8.460617 13.955126 -8703 0.094553 0.049600 9.348299 15.825372 -8704 0.093900 0.049338 14.405670 16.960120 -8705 0.050035 0.025297 10.581533 10.992631 -8706 0.154181 0.109654 12.031355 15.585584 -8707 0.104063 0.046991 10.705566 12.996066 -8708 0.072632 0.038636 11.801217 13.808035 -8709 0.065595 0.063420 8.436775 14.245121 -8710 0.090099 0.049756 15.514061 17.016970 -8711 0.078041 0.039112 8.384441 9.846195 -8712 0.068309 0.029950 7.517250 8.619294 -8713 0.138205 0.096532 10.179294 11.275185 -8714 0.064593 0.040304 11.666618 10.517641 -8715 0.059856 0.036881 6.782680 11.075642 -8716 0.092227 0.081254 10.047717 14.977133 -8717 0.074963 0.090470 15.427166 18.292172 -8718 0.056887 0.044456 6.963171 9.860340 -8719 0.126984 0.127340 12.996709 16.464062 -8720 0.053783 0.021487 9.533172 13.286226 -8721 0.066067 0.018858 8.697949 10.021853 -8722 0.083763 0.036348 18.005065 11.766413 -8723 0.063386 0.064954 12.147300 9.302634 -8724 0.057452 0.028870 6.646571 10.721577 -8725 0.052059 0.025047 9.095511 13.795711 -8726 0.042567 0.027028 6.966326 10.720729 -8727 0.095378 0.045468 6.183685 9.138951 -8728 0.120047 0.087796 11.290603 12.538454 -8729 0.090786 0.100830 9.181533 9.600895 -8730 0.055598 0.018125 8.845281 12.500673 -8731 0.094519 0.042463 13.016692 17.534475 -8732 0.157350 0.092012 10.147928 17.583017 -8733 0.056654 0.056701 9.650372 13.883389 -8734 0.055355 0.058486 12.121190 12.796378 -8735 0.059937 0.030024 8.793673 10.019210 -8736 0.058926 0.034078 9.229021 10.377186 -8737 0.074492 0.045626 8.406796 12.424044 -8738 0.073409 0.044519 11.700740 11.505795 -8739 0.056226 0.032376 7.885074 7.895974 -8740 0.104870 0.045930 11.424842 14.892790 -8741 0.070955 0.039677 6.259201 7.389885 -8742 0.067337 0.022647 8.498581 11.418556 -8743 0.096336 0.115094 9.343301 12.305769 -8744 0.068376 0.059227 8.066618 11.068661 -8745 0.053218 0.030560 12.508179 20.652301 -8746 0.067550 0.033195 10.045203 10.446343 -8747 0.089810 0.068952 6.767536 8.596150 -8748 0.084131 0.052908 15.763544 15.627182 -8749 0.060187 0.037808 8.023443 9.853268 -8750 0.082017 0.041470 8.644761 10.168148 -8751 0.066575 0.046538 9.785987 11.370609 -8752 0.064559 0.064989 11.588684 17.220910 -8753 0.054758 0.013633 5.856232 8.096516 -8754 0.063462 0.060204 10.037777 15.542309 -8755 0.078436 0.045279 7.220865 11.979853 -8756 0.052610 0.026124 10.248366 15.646054 -8757 0.090982 0.040770 9.559443 11.113959 -8758 0.052653 0.016496 6.415270 7.714136 -8759 0.074971 0.070270 7.602837 9.933160 -8760 0.078578 0.029820 11.889415 12.604681 -8761 0.119259 0.095229 11.787520 16.846424 -8762 0.086913 0.060999 13.079144 15.307468 -8763 0.061153 0.040834 6.635127 6.429560 -8764 0.066313 0.050714 8.016666 11.513791 -8765 0.064143 0.045425 10.677645 16.203897 -8766 0.099345 0.096147 10.876713 13.240274 -8767 0.054984 0.040910 10.289634 10.959652 -8768 0.048472 0.033530 11.120570 12.913219 -8769 0.053034 0.032442 11.109522 14.142330 -8770 0.059656 0.039486 6.778408 8.857855 -8771 0.060882 0.035106 7.534877 7.865804 -8772 0.093153 0.030768 7.956182 8.464224 -8773 0.070779 0.037434 10.064575 9.093770 -8774 0.048131 0.033656 9.102403 9.343080 -8775 0.069049 0.031406 11.269399 13.184199 -8776 0.081749 0.048677 8.470218 10.350465 -8777 0.089101 0.042034 7.230467 7.528854 -8778 0.061744 0.033361 11.660260 12.690465 -8779 0.038712 0.026925 7.899105 12.536026 -8780 0.069636 0.037131 9.568381 10.565410 -8781 0.044870 0.016970 8.433574 9.641246 -8782 0.078979 0.050638 11.082835 16.290680 -8783 0.074511 0.029938 12.267831 14.554452 -8784 0.132160 0.072555 13.667740 12.504779 -8785 0.077538 0.040344 10.268091 10.578859 -8786 0.065525 0.048849 7.940238 8.959903 -8787 0.080231 0.037842 12.556462 12.363298 -8788 0.045547 0.027419 9.697849 10.250856 -8789 0.079005 0.049114 8.014772 8.066075 -8790 0.073058 0.056465 8.024513 12.944991 -8791 0.065782 0.062914 7.979242 11.065982 -8792 0.075479 0.052917 10.787975 11.758556 -8793 0.067799 0.046760 6.392503 8.781786 -8794 0.039899 0.031346 6.275356 7.942054 -8795 0.061640 0.037792 6.980186 10.440806 -8796 0.071943 0.027366 11.496303 15.990260 -8797 0.082528 0.051207 9.759987 12.155043 -8798 0.093824 0.066977 11.464188 14.656231 -8799 0.065086 0.017821 4.680519 7.499897 -8800 0.063119 0.041578 11.430665 15.445500 -8801 0.099632 0.077743 15.344252 14.593912 -8802 0.073688 0.045543 14.316899 15.490699 -8803 0.064119 0.043611 8.697030 13.925615 -8804 0.092249 0.046832 7.552088 11.973052 -8805 0.106013 0.048217 5.593508 12.528203 -8806 0.069552 0.044732 9.971620 9.867710 -8807 0.053137 0.040197 10.491031 15.449766 -8808 0.071654 0.044756 11.954840 15.909694 -8809 0.044624 0.019880 8.795498 9.256913 -8810 0.069660 0.077711 10.112636 14.277485 -8811 0.062506 0.030889 8.868305 11.713619 -8812 0.072492 0.043433 9.576435 11.998017 -8813 0.103073 0.042729 9.689366 18.331138 -8814 0.065840 0.038463 12.762588 8.866178 -8815 0.108764 0.062962 8.505301 12.799860 -8816 0.074934 0.031061 15.701079 14.375372 -8817 0.061740 0.024427 12.201647 11.982158 -8818 0.088337 0.070596 9.402079 10.382554 -8819 0.070289 0.035300 6.407773 7.405035 -8820 0.113611 0.079302 11.680785 11.764585 -8821 0.078038 0.038525 8.233130 9.174191 -8822 0.075873 0.044447 11.563644 13.729143 -8823 0.090910 0.045853 9.984731 7.872360 -8824 0.095845 0.064108 9.099022 15.469370 -8825 0.082029 0.037904 8.299187 9.487440 -8826 0.066335 0.035843 9.308575 11.199606 -8827 0.067523 0.054795 11.336251 14.173580 -8828 0.088994 0.037787 9.450154 15.832568 -8829 0.056467 0.055375 10.869607 14.567690 -8830 0.083537 0.084208 10.266919 18.167412 -8831 0.071965 0.041091 9.228112 9.866666 -8832 0.067929 0.041940 10.202721 10.549203 -8833 0.082783 0.053663 7.503822 13.065465 -8834 0.068616 0.034021 8.763835 11.579089 -8835 0.098123 0.050506 12.501784 17.259665 -8836 0.046571 0.028369 10.812620 12.157114 -8837 0.058004 0.032483 7.818225 11.531855 -8838 0.062687 0.062464 10.091783 13.497216 -8839 0.053731 0.038240 7.766082 9.124903 -8840 0.102168 0.076777 13.591860 22.201706 -8841 0.058946 0.020735 6.279337 7.749111 -8842 0.095554 0.039710 7.143580 11.259176 -8843 0.068136 0.061728 7.343091 7.682036 -8844 0.057986 0.031273 15.866569 13.149749 -8845 0.098149 0.066612 7.329266 15.856667 -8846 0.061452 0.037997 10.744032 13.254225 -8847 0.074912 0.046947 9.695634 9.130416 -8848 0.129767 0.071701 13.477035 14.714995 -8849 0.095457 0.042835 12.117407 17.283846 -8850 0.085906 0.043980 9.533470 15.729962 -8851 0.058750 0.036694 10.433411 11.259127 -8852 0.081961 0.050715 11.288576 10.025974 -8853 0.097937 0.051672 14.535341 9.133042 -8854 0.090541 0.044599 16.371620 19.132159 -8855 0.092174 0.062990 9.410223 16.456453 -8856 0.095957 0.058229 8.539099 16.083434 -8857 0.055002 0.029833 9.069123 12.752297 -8858 0.069017 0.070127 9.985247 18.435898 -8859 0.087653 0.055292 10.245904 14.861108 -8860 0.060819 0.033465 8.768491 12.808210 -8861 0.059134 0.042137 8.726203 11.035159 -8862 0.080371 0.033868 11.114679 16.545385 -8863 0.056030 0.038914 12.173638 11.670939 -8864 0.107248 0.052865 11.605234 13.792016 -8865 0.086557 0.053616 10.421580 12.340852 -8866 0.068898 0.034848 9.397213 12.250324 -8867 0.067344 0.037212 7.394720 12.588345 -8868 0.050344 0.048858 9.429755 14.671794 -8869 0.113116 0.093684 17.047345 16.055075 -8870 0.113195 0.058098 12.526248 13.754136 -8871 0.109589 0.065843 12.227212 15.254597 -8872 0.077906 0.044273 5.834440 8.142448 -8873 0.094581 0.051074 13.409246 14.456650 -8874 0.071060 0.040662 11.203988 15.955913 -8875 0.056807 0.027524 9.750776 9.702686 -8876 0.084567 0.034452 11.103503 8.775131 -8877 0.065918 0.037212 6.184462 11.249502 -8878 0.081042 0.059401 7.167378 13.296954 -8879 0.095760 0.066237 10.677738 13.329390 -8880 0.076552 0.068606 8.939029 14.011127 -8881 0.074390 0.035417 11.205370 12.511901 -8882 0.106885 0.041818 13.996023 18.170573 -8883 0.074946 0.043662 15.422494 15.189289 -8884 0.096516 0.060336 12.907228 20.176171 -8885 0.060919 0.023565 8.439554 13.546337 -8886 0.063174 0.076693 10.585350 16.356130 -8887 0.053559 0.031399 11.503326 12.829343 -8888 0.064862 0.032076 9.080027 8.453991 -8889 0.056327 0.030575 11.789614 11.415009 -8890 0.098960 0.084597 13.691841 15.479413 -8891 0.102477 0.071767 13.792295 10.048111 -8892 0.099087 0.067071 10.885641 12.201308 -8893 0.064061 0.040384 11.302490 10.779549 -8894 0.067994 0.068139 9.509679 11.792374 -8895 0.063593 0.050150 8.709911 12.899827 -8896 0.077480 0.046475 8.684119 11.065904 -8897 0.054027 0.069816 8.038174 16.776204 -8898 0.084738 0.078983 10.129892 15.694827 -8899 0.062674 0.043843 11.037098 10.208469 -8900 0.064102 0.039169 9.108732 8.898932 -8901 0.101696 0.079308 9.271857 9.280871 -8902 0.140344 0.052973 15.776808 14.388314 -8903 0.088021 0.068150 7.202525 13.555410 -8904 0.057693 0.056858 7.229953 9.729656 -8905 0.086000 0.031297 14.877682 13.247548 -8906 0.074017 0.040102 8.507313 9.537067 -8907 0.070364 0.031546 7.097896 8.911060 -8908 0.104692 0.059866 9.550926 11.595415 -8909 0.093294 0.050077 9.625847 13.953599 -8910 0.067779 0.037282 10.700662 15.654939 -8911 0.084074 0.054751 9.880560 9.358162 -8912 0.081721 0.059215 8.568390 11.142247 -8913 0.082979 0.025234 9.059013 12.228961 -8914 0.057737 0.025312 8.435482 13.196120 -8915 0.096140 0.109461 17.193480 13.693043 -8916 0.099246 0.050051 11.295536 16.212352 -8917 0.049541 0.024305 9.089911 10.454830 -8918 0.055650 0.035554 8.355965 14.506686 -8919 0.077500 0.030021 9.225939 15.621136 -8920 0.079849 0.035498 6.875326 12.775860 -8921 0.112093 0.070177 11.292241 26.781304 -8922 0.074714 0.065738 11.356053 18.091722 -8923 0.083877 0.057881 11.611239 16.655020 -8924 0.058026 0.048863 10.440026 13.739718 -8925 0.060279 0.029903 8.615231 9.255772 -8926 0.075678 0.037343 14.233676 19.306635 -8927 0.083142 0.077302 9.554859 13.726537 -8928 0.065239 0.031359 9.644422 9.578262 -8929 0.070710 0.033455 10.370387 11.898294 -8930 0.066451 0.051015 17.490959 21.418206 -8931 0.075302 0.042707 11.650875 18.416002 -8932 0.086335 0.084474 6.726241 10.652872 -8933 0.091073 0.066008 16.611679 20.134687 -8934 0.060401 0.024716 9.057770 8.862806 -8935 0.094044 0.049554 8.805436 9.999001 -8936 0.111522 0.063483 7.429782 9.073228 -8937 0.124628 0.069015 12.225947 13.321744 -8938 0.097111 0.044660 17.997591 19.477452 -8939 0.086363 0.054208 16.140043 16.201791 -8940 0.077129 0.080656 13.804359 13.207532 -8941 0.099201 0.085957 8.901794 12.544509 -8942 0.063860 0.037763 11.827980 14.546326 -8943 0.063227 0.039003 7.091159 11.061046 -8944 0.058781 0.040166 8.472210 11.406637 -8945 0.067414 0.031728 10.162139 8.382011 -8946 0.078272 0.050873 9.273452 8.569802 -8947 0.076981 0.048518 10.075668 15.552199 -8948 0.099583 0.055386 12.558381 11.616130 -8949 0.059527 0.030624 9.521687 16.026403 -8950 0.068996 0.033777 10.005718 15.719293 -8951 0.075630 0.048689 11.462281 14.459231 -8952 0.057855 0.027126 8.311040 12.753182 -8953 0.049966 0.028415 6.838143 7.507541 -8954 0.092498 0.087854 11.340295 13.754939 -8955 0.080243 0.037341 8.766798 12.677972 -8956 0.082889 0.082231 12.177414 13.577090 -8957 0.063128 0.031981 9.304048 11.836083 -8958 0.072309 0.039132 6.008521 8.355014 -8959 0.044742 0.036088 11.719394 15.248911 -8960 0.067947 0.038442 7.376865 12.982441 -8961 0.116721 0.096392 7.829353 13.578014 -8962 0.075268 0.049830 7.747055 7.657364 -8963 0.090371 0.055199 7.014997 15.023570 -8964 0.070588 0.045526 13.393474 14.312031 -8965 0.105683 0.044651 9.219997 9.636517 -8966 0.060332 0.033982 7.047230 8.681635 -8967 0.053175 0.025260 7.614804 8.962389 -8968 0.053642 0.044346 9.109240 10.076325 -8969 0.065120 0.056043 8.533902 15.687593 -8970 0.091758 0.045137 8.467462 14.863073 -8971 0.086892 0.068555 9.894338 16.890197 -8972 0.065815 0.084947 11.055946 14.298857 -8973 0.132943 0.096086 11.859839 13.075878 -8974 0.054694 0.015256 10.295069 14.549066 -8975 0.136254 0.124630 10.519821 13.805963 -8976 0.069883 0.036836 12.526900 12.289510 -8977 0.089868 0.070429 8.665809 15.507933 -8978 0.123789 0.041652 9.542544 17.795682 -8979 0.085947 0.052467 11.193765 21.982244 -8980 0.074401 0.064287 16.890569 17.460354 -8981 0.092695 0.081902 11.389284 12.052670 -8982 0.066029 0.065240 7.850222 12.308356 -8983 0.118719 0.052629 8.555549 10.417803 -8984 0.054553 0.036069 13.141134 17.446443 -8985 0.065258 0.033074 8.851902 10.630665 -8986 0.080922 0.043902 6.669997 8.173128 -8987 0.056587 0.033032 6.873840 10.136137 -8988 0.074428 0.053242 9.687011 15.736132 -8989 0.048386 0.030242 8.973762 14.363526 -8990 0.072879 0.051662 8.716342 11.621152 -8991 0.062999 0.040816 6.283770 11.429916 -8992 0.098661 0.056845 9.408928 12.821608 -8993 0.086734 0.065203 12.104296 13.548171 -8994 0.072049 0.055301 10.056556 14.525009 -8995 0.047663 0.021770 5.282660 7.605929 -8996 0.081783 0.043162 7.563595 9.646036 -8997 0.119029 0.071442 11.919685 13.729165 -8998 0.089677 0.057174 13.980708 16.216476 -8999 0.066439 0.042537 7.842398 11.953589 -9000 0.076417 0.058939 8.088476 11.880980 -9001 0.159232 0.061686 13.238504 15.111243 -9002 0.080314 0.053411 8.476018 13.591348 -9003 0.077036 0.056267 9.495437 14.770307 -9004 0.089437 0.053426 9.821934 12.480171 -9005 0.068682 0.056298 8.808638 8.922560 -9006 0.152008 0.083130 14.219957 13.728988 -9007 0.053678 0.038752 8.488179 11.170396 -9008 0.081591 0.039518 7.771452 10.268796 -9009 0.092877 0.054558 7.308940 8.671739 -9010 0.059913 0.050165 12.077069 11.030892 -9011 0.100682 0.035369 9.106437 15.983313 -9012 0.107877 0.046711 7.214404 13.397937 -9013 0.066780 0.025505 8.559234 12.677833 -9014 0.052985 0.044337 8.361811 11.474747 -9015 0.076571 0.034396 10.764707 14.483055 -9016 0.084761 0.046238 9.520752 12.983861 -9017 0.086601 0.048093 7.793295 11.168643 -9018 0.095986 0.060016 10.584761 14.654947 -9019 0.073345 0.066147 11.253980 9.962927 -9020 0.040686 0.023896 6.364544 10.892371 -9021 0.085889 0.033951 9.170187 11.366758 -9022 0.076048 0.052804 7.996930 11.409079 -9023 0.045603 0.023241 10.443300 9.258581 -9024 0.077052 0.032916 10.509518 11.026639 -9025 0.045206 0.038492 8.992962 10.591115 -9026 0.096248 0.068447 11.915991 12.613756 -9027 0.094509 0.068366 7.647301 10.977158 -9028 0.075469 0.063980 6.734568 8.737852 -9029 0.050609 0.025119 6.973779 9.439581 -9030 0.062277 0.025947 10.102445 9.831826 -9031 0.052404 0.021086 11.572276 16.852601 -9032 0.063325 0.034426 10.104974 13.501808 -9033 0.123969 0.085227 7.932199 12.937786 -9034 0.077584 0.054310 7.722237 13.627483 -9035 0.133458 0.095331 18.204386 18.496815 -9036 0.117837 0.078527 15.241892 18.328632 -9037 0.085215 0.047986 13.346762 12.307523 -9038 0.070193 0.026696 8.524481 11.563240 -9039 0.073933 0.052196 7.289390 9.857764 -9040 0.048668 0.024186 10.750277 10.933939 -9041 0.049744 0.021907 7.926006 11.230260 -9042 0.080244 0.029107 10.934935 19.638992 -9043 0.100501 0.059870 9.640140 13.493758 -9044 0.068539 0.031821 13.582245 14.954132 -9045 0.084308 0.046949 10.093635 7.905629 -9046 0.150661 0.041622 7.089562 13.214165 -9047 0.048239 0.033854 10.110917 11.850288 -9048 0.087006 0.042522 10.751524 10.815963 -9049 0.090222 0.073377 14.010830 24.567789 -9050 0.065755 0.036887 8.479855 12.900312 -9051 0.066821 0.057659 7.826754 11.285474 -9052 0.102447 0.051957 6.929386 11.979939 -9053 0.084721 0.051013 6.440431 13.097503 -9054 0.062121 0.041253 8.280555 10.086787 -9055 0.089515 0.053848 11.048107 16.446992 -9056 0.039494 0.032307 7.790942 9.638201 -9057 0.071540 0.041590 10.439870 14.347264 -9058 0.105517 0.046785 11.881603 16.159073 -9059 0.073344 0.033296 7.337632 9.168527 -9060 0.101300 0.092819 16.709825 21.691871 -9061 0.079106 0.072721 10.461763 14.333340 -9062 0.119928 0.064349 10.479434 15.254155 -9063 0.067897 0.029911 7.957738 11.691997 -9064 0.090655 0.054986 9.711518 10.369982 -9065 0.085275 0.044622 8.347841 13.634617 -9066 0.088316 0.043773 11.556945 15.836116 -9067 0.098825 0.065075 9.868473 12.356443 -9068 0.095888 0.046483 14.917730 15.026284 -9069 0.045526 0.035662 11.378812 18.341376 -9070 0.099737 0.062776 13.570155 16.599331 -9071 0.060510 0.032900 8.951147 13.470180 -9072 0.084588 0.034691 10.570316 9.449827 -9073 0.095673 0.058958 12.034531 16.579354 -9074 0.074550 0.049608 7.026342 14.263382 -9075 0.099722 0.049520 10.306970 8.762271 -9076 0.058656 0.036840 11.087477 18.343065 -9077 0.100189 0.038306 9.118384 15.496479 -9078 0.071361 0.041169 9.364125 9.888005 -9079 0.109431 0.063157 7.931334 16.096527 -9080 0.050737 0.032184 9.508736 9.733429 -9081 0.087181 0.053934 5.622296 8.872317 -9082 0.077808 0.054422 8.774363 10.120869 -9083 0.041441 0.026613 7.582934 10.838183 -9084 0.056050 0.028954 9.799596 13.194297 -9085 0.064465 0.029422 8.678386 11.103018 -9086 0.059578 0.032751 12.480514 7.633528 -9087 0.084071 0.059159 8.801456 11.839167 -9088 0.053205 0.039687 12.926755 11.443352 -9089 0.070171 0.032343 7.964751 8.024155 -9090 0.080188 0.037248 10.446884 11.093203 -9091 0.104267 0.106521 14.267026 16.176302 -9092 0.068662 0.034862 8.959846 10.332405 -9093 0.081958 0.052488 10.833579 13.998868 -9094 0.065868 0.050273 9.601932 13.473562 -9095 0.084271 0.040890 8.504566 11.010194 -9096 0.073194 0.037496 13.520239 15.502674 -9097 0.077326 0.079462 11.478077 17.572826 -9098 0.095116 0.033453 10.364141 13.778217 -9099 0.046264 0.028703 7.852451 10.759016 -9100 0.074382 0.083040 6.518694 10.266572 -9101 0.048344 0.026429 9.793842 10.140460 -9102 0.080320 0.037690 14.738296 12.097882 -9103 0.074040 0.054434 8.847125 9.200812 -9104 0.061621 0.025431 8.896123 10.084083 -9105 0.063215 0.036399 8.438932 12.200639 -9106 0.070794 0.044735 14.072908 14.482839 -9107 0.057290 0.049150 8.719283 9.388513 -9108 0.046203 0.057175 9.248821 9.252103 -9109 0.076344 0.039345 11.532665 11.724395 -9110 0.072021 0.038928 6.568464 7.877383 -9111 0.087824 0.036905 8.607250 10.563542 -9112 0.062848 0.040058 7.261451 11.112776 -9113 0.041806 0.033476 10.343871 11.827833 -9114 0.097554 0.064279 12.745561 13.786004 -9115 0.047001 0.029247 11.251193 13.026074 -9116 0.074013 0.053050 8.426070 12.194575 -9117 0.082491 0.059323 9.463831 10.273095 -9118 0.080700 0.040564 9.818307 12.278159 -9119 0.072544 0.028097 12.749726 16.025699 -9120 0.074136 0.032182 10.325537 17.897131 -9121 0.063509 0.072888 6.943815 9.677904 -9122 0.080982 0.035523 7.015696 12.069666 -9123 0.068647 0.038293 12.172463 18.001980 -9124 0.082234 0.034993 14.644631 22.499883 -9125 0.076014 0.025352 8.112209 12.090470 -9126 0.076017 0.030547 6.674338 10.706111 -9127 0.069900 0.042101 11.019410 10.351220 -9128 0.068710 0.038927 7.227901 11.580658 -9129 0.097869 0.069619 12.063996 14.540934 -9130 0.085710 0.051133 10.223212 11.947074 -9131 0.085927 0.050527 7.145436 12.352964 -9132 0.051123 0.031103 7.659880 8.969882 -9133 0.044035 0.033747 9.458041 12.418513 -9134 0.075587 0.040769 10.468359 16.292086 -9135 0.058036 0.044004 7.735921 14.323369 -9136 0.030126 0.016528 7.114805 9.984273 -9137 0.084330 0.046306 12.847140 12.183638 -9138 0.040843 0.026666 9.349868 10.927011 -9139 0.056283 0.053145 9.987335 10.613515 -9140 0.055733 0.035622 12.054887 12.538724 -9141 0.087602 0.085869 10.310392 14.160433 -9142 0.071878 0.045880 10.980888 12.735866 -9143 0.074240 0.040611 6.046525 14.180810 -9144 0.051898 0.020701 6.941091 17.631808 -9145 0.067143 0.041411 11.881312 16.175539 -9146 0.042376 0.019967 7.764357 11.032575 -9147 0.128093 0.084964 9.261885 9.625536 -9148 0.057927 0.052327 10.887975 14.957583 -9149 0.089355 0.052224 9.297894 11.905458 -9150 0.047423 0.027423 10.465657 11.620188 -9151 0.071696 0.043858 10.697200 9.532136 -9152 0.053220 0.032396 15.257550 13.779881 -9153 0.060941 0.039413 6.140920 11.794721 -9154 0.090596 0.066558 8.146568 10.774211 -9155 0.089086 0.040202 15.261416 17.343126 -9156 0.048601 0.047662 15.095874 18.368764 -9157 0.171670 0.106161 8.250317 10.463374 -9158 0.080207 0.044750 12.513085 12.519534 -9159 0.060398 0.029904 10.632968 12.379027 -9160 0.076792 0.043872 7.723684 11.038065 -9161 0.051601 0.038473 8.357476 9.046239 -9162 0.062133 0.038704 15.435126 12.930700 -9163 0.064474 0.032095 8.622719 9.792073 -9164 0.050177 0.029777 10.873714 14.742027 -9165 0.046503 0.035698 11.296991 12.600084 -9166 0.056462 0.041731 13.011245 14.333646 -9167 0.077006 0.076837 6.785127 10.185312 -9168 0.066530 0.042781 7.862357 9.392051 -9169 0.053367 0.036247 7.871326 9.242529 -9170 0.089569 0.034948 11.627281 13.388750 -9171 0.116966 0.056407 10.524386 11.460202 -9172 0.074114 0.032836 7.608192 11.567938 -9173 0.082473 0.049203 11.254492 16.571131 -9174 0.076316 0.032183 9.344583 11.767813 -9175 0.094483 0.048710 10.089559 14.131047 -9176 0.101103 0.043205 14.146178 15.616038 -9177 0.081099 0.076527 8.948237 9.981169 -9178 0.050947 0.024012 5.891112 9.455509 -9179 0.063486 0.033353 8.304633 14.443946 -9180 0.052552 0.027024 4.467556 8.901662 -9181 0.080753 0.037878 15.095181 14.262124 -9182 0.085294 0.029543 10.134444 13.044133 -9183 0.103253 0.046767 10.383351 11.742497 -9184 0.088087 0.027764 7.307367 11.058537 -9185 0.077211 0.044957 7.893247 10.340213 -9186 0.061214 0.046652 12.596601 18.035283 -9187 0.070983 0.044567 6.695543 11.085818 -9188 0.143069 0.090843 12.784344 17.960271 -9189 0.066978 0.043450 7.440634 15.544291 -9190 0.063742 0.048875 14.923218 17.577883 -9191 0.057361 0.045003 9.005183 10.638117 -9192 0.064554 0.025318 8.622545 9.677087 -9193 0.061778 0.032553 10.568033 13.801736 -9194 0.072493 0.047702 6.896683 10.076070 -9195 0.073432 0.040070 7.826152 10.852943 -9196 0.107446 0.089816 13.679629 16.752438 -9197 0.068512 0.051568 10.793084 10.468945 -9198 0.041766 0.027093 5.897317 8.179994 -9199 0.055911 0.044226 9.282596 14.464841 -9200 0.081433 0.052789 9.151117 13.197169 -9201 0.128034 0.036701 11.013146 16.015500 -9202 0.049077 0.036782 7.167900 11.709043 -9203 0.068481 0.057684 9.837876 17.067926 -9204 0.093822 0.037060 10.860147 14.636883 -9205 0.090110 0.036980 9.389344 11.286699 -9206 0.070008 0.055576 6.633063 9.509309 -9207 0.071907 0.034210 13.879579 14.383602 -9208 0.071082 0.055074 14.962883 18.427918 -9209 0.110825 0.079666 11.003793 12.806006 -9210 0.052981 0.020947 10.718843 15.155680 -9211 0.049997 0.020023 6.392287 11.029218 -9212 0.061766 0.027791 7.829381 9.386266 -9213 0.066662 0.036507 7.800192 10.463862 -9214 0.088495 0.047588 8.638588 11.573941 -9215 0.076914 0.044804 8.157757 15.924327 -9216 0.087600 0.042567 7.151597 6.918866 -9217 0.060901 0.055337 8.567738 11.283385 -9218 0.070777 0.064769 8.554673 11.676986 -9219 0.068871 0.033835 10.244455 9.708808 -9220 0.096325 0.040160 11.083829 13.438463 -9221 0.121315 0.056107 13.614223 13.723707 -9222 0.079066 0.053803 9.739230 9.941289 -9223 0.080325 0.052830 10.679155 12.998452 -9224 0.044757 0.022089 6.446474 13.483892 -9225 0.085401 0.046545 6.996769 12.326052 -9226 0.110465 0.100108 11.074179 10.495505 -9227 0.055114 0.031356 10.740761 12.363648 -9228 0.040866 0.017304 6.279798 9.118557 -9229 0.079528 0.044137 7.811045 13.978344 -9230 0.067081 0.073868 10.646880 16.276577 -9231 0.062305 0.044677 9.536217 17.909894 -9232 0.065151 0.058199 12.322911 11.951220 -9233 0.096585 0.063288 13.623919 17.346626 -9234 0.068615 0.039729 5.484388 8.446283 -9235 0.097136 0.037593 8.362488 11.474350 -9236 0.057485 0.039522 8.242371 9.334341 -9237 0.053453 0.021822 6.927529 8.862847 -9238 0.070199 0.048513 5.743084 9.987103 -9239 0.063066 0.052500 8.684597 10.018258 -9240 0.118248 0.071494 8.559092 11.986140 -9241 0.055463 0.033770 8.269522 13.123062 -9242 0.108834 0.073846 14.886855 18.576719 -9243 0.060719 0.047268 7.881218 10.943177 -9244 0.079430 0.049022 6.804699 11.326896 -9245 0.076198 0.044747 9.255297 16.916779 -9246 0.099321 0.034673 7.834498 11.459067 -9247 0.095692 0.073608 9.918489 14.775485 -9248 0.085525 0.056000 13.974928 14.013193 -9249 0.089118 0.041993 16.202702 13.385891 -9250 0.040225 0.025116 5.898731 8.809487 -9251 0.100904 0.072882 12.557944 18.679193 -9252 0.063921 0.034954 7.874255 14.568758 -9253 0.065280 0.055905 14.439468 23.065925 -9254 0.110599 0.073971 15.015642 23.916429 -9255 0.073342 0.084833 10.352511 10.020835 -9256 0.081923 0.027412 10.392021 11.285586 -9257 0.051069 0.024373 7.386528 12.711565 -9258 0.081239 0.048947 6.625919 7.862519 -9259 0.084028 0.049689 7.996209 10.274889 -9260 0.048776 0.036447 7.251372 9.892532 -9261 0.082652 0.050229 9.568439 11.454601 -9262 0.084259 0.066923 9.890015 20.086334 -9263 0.064167 0.056577 10.610542 11.502988 -9264 0.100246 0.057556 9.710050 17.844223 -9265 0.075298 0.040663 7.126859 8.358381 -9266 0.051988 0.034360 8.625495 12.038378 -9267 0.057269 0.014241 7.157222 9.642818 -9268 0.107168 0.058029 10.157968 13.521036 -9269 0.080811 0.032239 8.776121 14.669053 -9270 0.078339 0.045000 15.882650 21.627189 -9271 0.061261 0.049858 10.409900 9.818403 -9272 0.095748 0.059651 9.248729 10.509724 -9273 0.108476 0.089006 15.093078 15.548046 -9274 0.103426 0.043757 11.316843 10.736187 -9275 0.048324 0.025335 6.086259 8.933023 -9276 0.125133 0.101825 9.841456 13.787642 -9277 0.055348 0.025964 9.592955 12.200119 -9278 0.102726 0.049089 16.997879 22.967623 -9279 0.108228 0.058559 7.588745 7.277396 -9280 0.075782 0.050841 8.044048 14.868040 -9281 0.056491 0.061175 8.043730 13.976859 -9282 0.057212 0.031925 9.003243 12.261735 -9283 0.073095 0.070948 7.763572 13.179777 -9284 0.104935 0.064522 10.078903 12.389344 -9285 0.080294 0.051173 11.234219 16.473580 -9286 0.062960 0.026525 9.514034 10.032130 -9287 0.057870 0.045374 9.264396 12.817187 -9288 0.044977 0.046628 14.262210 15.252636 -9289 0.058755 0.034199 8.575500 12.727130 -9290 0.091229 0.060327 9.225004 13.411199 -9291 0.068595 0.059735 7.356987 9.688509 -9292 0.049211 0.027562 8.367281 8.718253 -9293 0.059860 0.028802 7.848627 11.026826 -9294 0.104961 0.054019 6.681292 8.382370 -9295 0.074584 0.036890 7.822883 8.708379 -9296 0.045996 0.021454 5.723059 6.564897 -9297 0.116761 0.047432 6.755313 8.636002 -9298 0.081000 0.059653 9.760240 15.975280 -9299 0.092078 0.069845 13.037198 16.511600 -9300 0.067182 0.045134 10.949878 15.186783 -9301 0.054251 0.083852 9.058205 11.441704 -9302 0.058850 0.036461 10.592036 13.937842 -9303 0.083099 0.061288 12.399099 20.315890 -9304 0.084099 0.037602 9.127224 10.742375 -9305 0.086186 0.036084 6.467014 9.764480 -9306 0.067350 0.048042 10.811134 9.042674 -9307 0.060523 0.038301 9.390761 12.452023 -9308 0.058509 0.032476 9.015832 13.563832 -9309 0.083465 0.061104 7.976436 11.383454 -9310 0.058562 0.036425 8.336439 18.857718 -9311 0.085398 0.055249 11.160238 19.908472 -9312 0.056792 0.032839 9.192070 12.175684 -9313 0.072063 0.030154 10.858018 11.327873 -9314 0.045388 0.021583 9.329606 13.241451 -9315 0.069472 0.031192 6.514382 11.835254 -9316 0.100577 0.082416 13.011729 17.111286 -9317 0.054696 0.042099 9.107541 10.173910 -9318 0.067775 0.045140 10.957525 13.550424 -9319 0.058291 0.029510 9.821963 8.987813 -9320 0.049237 0.036950 7.146717 12.433816 -9321 0.070188 0.037463 6.330650 9.556770 -9322 0.057561 0.035519 8.936443 13.449926 -9323 0.062871 0.055251 12.637014 11.524413 -9324 0.058108 0.029025 9.870488 12.413530 -9325 0.049178 0.028877 13.352353 14.773040 -9326 0.090221 0.067646 8.755831 9.768306 -9327 0.062493 0.034261 8.082975 9.654785 -9328 0.096712 0.042617 9.536520 13.000752 -9329 0.115862 0.085103 7.920681 11.597990 -9330 0.086872 0.039835 7.036071 6.744387 -9331 0.061394 0.033561 9.915676 9.451755 -9332 0.055417 0.034353 15.367883 16.502616 -9333 0.078918 0.062561 6.955661 10.528530 -9334 0.091978 0.051994 12.990336 14.297918 -9335 0.070816 0.043417 6.745828 16.790932 -9336 0.073159 0.032273 10.087353 14.358090 -9337 0.060565 0.030089 9.816551 8.887446 -9338 0.085065 0.039106 9.911328 13.944679 -9339 0.054936 0.022474 8.468265 11.868120 -9340 0.061493 0.053208 10.343842 10.918432 -9341 0.082817 0.042407 15.411393 16.021162 -9342 0.081958 0.044957 11.643374 11.245422 -9343 0.118265 0.060010 9.906272 14.528766 -9344 0.056737 0.053230 8.416041 11.409996 -9345 0.123533 0.056203 10.099409 13.412462 -9346 0.063341 0.054446 17.124940 14.321552 -9347 0.061812 0.029987 7.641679 12.045421 -9348 0.126120 0.097496 8.536502 11.336880 -9349 0.053852 0.029572 8.790050 14.292745 -9350 0.103929 0.048157 10.981604 14.987572 -9351 0.056602 0.040396 8.424790 16.730105 -9352 0.042521 0.022846 10.404505 11.218590 -9353 0.050014 0.029074 14.522937 12.698431 -9354 0.107582 0.047364 10.310587 11.168233 -9355 0.071489 0.064807 6.015330 9.920868 -9356 0.080546 0.048523 7.544120 9.950008 -9357 0.051151 0.045564 10.586613 11.343441 -9358 0.108425 0.131254 10.537146 12.303201 -9359 0.076730 0.057889 12.379560 14.580588 -9360 0.069731 0.049484 8.956646 12.997577 -9361 0.092246 0.097018 10.590946 14.494601 -9362 0.073780 0.035671 10.858125 11.777715 -9363 0.078825 0.069780 5.893212 10.100991 -9364 0.059488 0.058258 6.490276 9.103545 -9365 0.051307 0.042903 12.467876 12.566761 -9366 0.081616 0.041007 5.691067 9.132435 -9367 0.097849 0.043773 8.655186 9.531968 -9368 0.037725 0.015485 9.014376 10.145383 -9369 0.123869 0.084787 12.592872 19.727133 -9370 0.041287 0.034610 10.242070 10.395919 -9371 0.077816 0.070372 7.771483 12.539889 -9372 0.087740 0.040114 7.781940 9.961333 -9373 0.059101 0.036728 10.274235 11.996323 -9374 0.045427 0.034398 8.364545 9.963909 -9375 0.099972 0.058873 7.863191 14.132948 -9376 0.059384 0.025219 13.285158 13.737695 -9377 0.085194 0.032533 11.048696 10.362165 -9378 0.081807 0.077930 10.905242 18.355839 -9379 0.067115 0.026309 6.502457 11.866387 -9380 0.078112 0.041455 9.860276 9.670178 -9381 0.062680 0.063065 11.841183 17.746610 -9382 0.058119 0.044269 11.070780 12.695285 -9383 0.064860 0.032769 10.473520 10.989362 -9384 0.046782 0.033947 8.259200 8.635022 -9385 0.045812 0.032682 9.694996 8.764902 -9386 0.072998 0.052623 11.378697 9.730241 -9387 0.097208 0.076639 11.353507 14.562707 -9388 0.061332 0.032991 7.950951 11.697634 -9389 0.030487 0.021450 8.439378 13.071309 -9390 0.096301 0.068166 9.467743 13.621310 -9391 0.124157 0.075332 6.043535 12.066746 -9392 0.066162 0.023987 14.107859 16.142599 -9393 0.103604 0.077230 10.546224 16.097992 -9394 0.066155 0.033333 9.592059 10.870119 -9395 0.081881 0.065075 12.550351 13.574932 -9396 0.057254 0.028177 12.790436 12.631050 -9397 0.036202 0.013679 7.515316 9.841170 -9398 0.077647 0.050365 12.020295 13.539629 -9399 0.098632 0.057678 6.311707 10.428092 -9400 0.092878 0.073243 11.098055 12.180485 -9401 0.090149 0.061247 15.384014 16.326442 -9402 0.098275 0.049540 10.792342 15.102485 -9403 0.062721 0.038773 13.498335 13.854572 -9404 0.114520 0.071631 8.312038 14.653628 -9405 0.042359 0.032950 8.120701 9.202898 -9406 0.047522 0.029523 8.238728 10.701983 -9407 0.077172 0.054229 16.291131 15.568314 -9408 0.100512 0.055637 14.020262 18.063066 -9409 0.083932 0.039770 10.857071 15.637565 -9410 0.052778 0.020983 9.424418 10.470948 -9411 0.077611 0.026771 13.083238 15.238966 -9412 0.072234 0.020891 11.576559 10.905304 -9413 0.038446 0.035437 10.171376 9.164256 -9414 0.102033 0.103295 8.090687 14.085625 -9415 0.068239 0.029235 6.363204 8.425645 -9416 0.121710 0.084219 9.100997 10.810307 -9417 0.060203 0.047020 8.188128 13.831302 -9418 0.051987 0.031846 7.376758 10.026116 -9419 0.107845 0.042489 11.042330 16.395481 -9420 0.057238 0.038488 9.887905 12.701508 -9421 0.076179 0.036472 8.526948 10.987381 -9422 0.064342 0.052725 8.643985 11.156627 -9423 0.059478 0.041032 5.395024 8.986674 -9424 0.090325 0.045815 8.278362 8.862805 -9425 0.036941 0.019640 7.378637 10.072725 -9426 0.074644 0.032958 7.648855 12.267695 -9427 0.073120 0.045534 10.281734 14.193919 -9428 0.097280 0.053530 8.117050 10.429517 -9429 0.108309 0.080060 9.795154 14.287858 -9430 0.137275 0.051052 9.022748 10.202187 -9431 0.057192 0.029111 9.228752 11.359928 -9432 0.084719 0.081192 18.923506 17.382902 -9433 0.097865 0.060610 10.132723 12.689064 -9434 0.054553 0.045139 9.319836 10.915049 -9435 0.090196 0.040549 8.658938 11.175103 -9436 0.038745 0.025349 8.962086 9.402572 -9437 0.058424 0.040868 6.864232 11.819395 -9438 0.065178 0.037149 7.025533 10.449199 -9439 0.113588 0.077735 7.294674 12.694096 -9440 0.054518 0.036014 14.929376 14.713686 -9441 0.039723 0.025875 8.915903 9.808975 -9442 0.045162 0.024017 8.178150 15.954495 -9443 0.052807 0.017388 7.221474 6.875281 -9444 0.128241 0.100434 9.460119 20.217693 -9445 0.077326 0.043519 11.014322 12.503751 -9446 0.068789 0.030667 13.408233 14.839751 -9447 0.144053 0.171888 15.345228 12.778605 -9448 0.114436 0.070667 11.200145 12.650578 -9449 0.084081 0.065763 11.727373 12.583054 -9450 0.054318 0.021852 10.656284 9.012787 -9451 0.076015 0.043855 12.882778 17.733073 -9452 0.040315 0.023090 6.301915 7.800073 -9453 0.064507 0.046499 17.146021 15.904865 -9454 0.076487 0.034591 8.280080 13.984138 -9455 0.051689 0.049437 11.366982 13.914857 -9456 0.066518 0.067071 11.846500 8.596359 -9457 0.082216 0.051135 9.663923 12.755831 -9458 0.064327 0.029055 6.118927 9.637392 -9459 0.050155 0.027060 7.946185 9.897580 -9460 0.073995 0.055002 13.971482 16.832925 -9461 0.094932 0.059757 11.054375 16.016887 -9462 0.053632 0.029587 9.653830 9.826455 -9463 0.076483 0.039102 14.425768 21.661422 -9464 0.060345 0.051466 13.547567 12.505290 -9465 0.075536 0.034227 9.409933 13.121643 -9466 0.078450 0.061527 10.775871 12.784553 -9467 0.070264 0.034104 5.809663 8.491702 -9468 0.071457 0.032399 8.675707 12.530362 -9469 0.086425 0.077839 7.672745 13.606509 -9470 0.060466 0.025203 8.042154 10.008283 -9471 0.132572 0.051667 8.928151 12.209058 -9472 0.088515 0.068891 11.515731 12.659457 -9473 0.066360 0.042297 9.084587 13.361634 -9474 0.048986 0.031885 4.045788 7.068826 -9475 0.051358 0.025223 9.740197 12.054648 -9476 0.043869 0.020247 7.147458 7.597554 -9477 0.122556 0.092591 16.607016 18.465499 -9478 0.075171 0.043051 7.300775 11.816681 -9479 0.056000 0.035825 9.240499 13.113196 -9480 0.062280 0.037507 12.082583 14.692435 -9481 0.095617 0.062993 11.422725 15.435089 -9482 0.036804 0.029705 9.210940 10.187815 -9483 0.063531 0.040407 7.423095 9.891849 -9484 0.074643 0.070235 7.056380 11.507914 -9485 0.056297 0.062905 9.100088 11.292604 -9486 0.072200 0.044403 8.548340 12.580281 -9487 0.121176 0.053359 7.903241 10.441808 -9488 0.095452 0.076434 13.268146 13.990301 -9489 0.053101 0.029990 7.175054 8.493646 -9490 0.108371 0.078096 14.495299 15.660702 -9491 0.068718 0.067470 9.387637 11.188978 -9492 0.066051 0.028988 11.447883 10.105130 -9493 0.050447 0.023634 13.283806 14.848785 -9494 0.068957 0.042224 10.255623 16.333542 -9495 0.147204 0.078632 8.639805 15.379970 -9496 0.075035 0.061543 10.673588 14.775176 -9497 0.066827 0.035035 7.855743 16.431852 -9498 0.092283 0.070155 7.396065 13.595947 -9499 0.047475 0.022226 9.931669 9.889341 -9500 0.059891 0.032866 10.444530 15.202648 -9501 0.054861 0.031754 10.669645 12.565233 -9502 0.071267 0.049145 10.855040 13.283318 -9503 0.075357 0.027747 8.939418 10.683114 -9504 0.044656 0.036744 7.543793 8.041644 -9505 0.050820 0.045781 10.108755 17.098450 -9506 0.073781 0.044802 8.666098 8.859337 -9507 0.095533 0.050890 8.767409 14.595117 -9508 0.068481 0.037665 9.079835 9.411544 -9509 0.097849 0.065121 11.732298 17.009502 -9510 0.056420 0.035378 8.534034 9.889804 -9511 0.084949 0.065872 13.668897 19.272400 -9512 0.065479 0.036974 9.312629 10.057186 -9513 0.086289 0.067392 14.619736 19.604797 -9514 0.068590 0.021603 9.267680 11.459200 -9515 0.104476 0.081840 9.754485 12.587163 -9516 0.068122 0.033216 12.861120 14.601860 -9517 0.086243 0.074547 11.787776 15.083379 -9518 0.068207 0.055239 8.292313 10.184895 -9519 0.046988 0.044882 6.250288 12.276497 -9520 0.070722 0.035444 12.099218 16.702342 -9521 0.048504 0.036566 8.766163 9.643330 -9522 0.085939 0.045840 15.057380 15.041197 -9523 0.116609 0.059738 11.276934 11.591129 -9524 0.092866 0.062057 9.627110 9.805041 -9525 0.066331 0.033017 8.999889 15.928755 -9526 0.102192 0.028121 7.986591 9.519174 -9527 0.048067 0.034531 7.236086 7.526322 -9528 0.069313 0.039570 9.176061 12.085108 -9529 0.041407 0.058916 10.907006 17.985197 -9530 0.067919 0.047121 12.105489 15.760636 -9531 0.073620 0.046344 8.762485 13.178885 -9532 0.049207 0.021965 11.324361 7.697811 -9533 0.049256 0.031912 7.854724 12.625439 -9534 0.064965 0.044647 6.797567 9.015636 -9535 0.087540 0.055345 12.286743 24.229278 -9536 0.085627 0.073957 12.773116 22.275424 -9537 0.088007 0.031386 11.620283 13.760214 -9538 0.042932 0.032550 8.766371 9.858870 -9539 0.054033 0.031598 7.736643 13.609305 -9540 0.078604 0.048475 8.082082 8.165837 -9541 0.089198 0.052417 15.081444 12.911182 -9542 0.062733 0.038989 7.402329 12.571570 -9543 0.075213 0.030215 12.037973 12.780453 -9544 0.079463 0.054485 12.388171 15.429884 -9545 0.049029 0.034787 8.467054 11.844169 -9546 0.047348 0.024636 7.727769 10.360018 -9547 0.092625 0.048555 10.010185 14.791289 -9548 0.095614 0.049106 10.478372 10.766244 -9549 0.075591 0.026801 12.434701 13.777692 -9550 0.064470 0.024876 10.789468 12.673291 -9551 0.049379 0.028695 7.753356 10.597390 -9552 0.051028 0.053337 12.325489 17.017353 -9553 0.046469 0.030695 12.718534 13.845831 -9554 0.111656 0.075858 10.743574 16.943808 -9555 0.042493 0.016637 10.268253 12.888951 -9556 0.096338 0.048860 12.558174 13.989883 -9557 0.069583 0.037830 12.989471 10.616857 -9558 0.076630 0.049625 8.728469 10.150948 -9559 0.052555 0.022339 6.383859 6.578047 -9560 0.070742 0.071160 10.661942 13.875245 -9561 0.083812 0.046876 12.121734 13.861717 -9562 0.067376 0.043385 8.108194 9.334568 -9563 0.124614 0.052773 13.863003 15.823248 -9564 0.037379 0.026430 7.259602 13.133462 -9565 0.084997 0.035482 11.297614 11.386404 -9566 0.068172 0.053928 8.968927 11.443137 -9567 0.069781 0.055796 14.724111 13.987840 -9568 0.088701 0.090561 15.331828 20.531897 -9569 0.072269 0.041086 14.563741 13.911862 -9570 0.077155 0.064130 10.457975 14.038624 -9571 0.075284 0.053658 7.922807 17.386400 -9572 0.065837 0.025565 5.904140 8.829875 -9573 0.078886 0.035586 9.584193 12.463374 -9574 0.064039 0.040476 8.185042 13.934409 -9575 0.095811 0.041327 9.412358 15.414666 -9576 0.100815 0.040282 8.940004 16.194800 -9577 0.054552 0.040000 13.829566 13.838369 -9578 0.090022 0.061038 13.088229 17.274414 -9579 0.047183 0.034983 6.405997 7.948032 -9580 0.038624 0.048038 10.118816 12.636637 -9581 0.063010 0.055945 12.013559 11.370359 -9582 0.088380 0.052150 11.487610 14.701568 -9583 0.084185 0.043849 12.847831 15.967301 -9584 0.058518 0.034094 14.543383 19.858423 -9585 0.072236 0.061895 10.024122 11.657306 -9586 0.058362 0.027264 6.738956 7.437986 -9587 0.130005 0.074586 21.987772 23.763583 -9588 0.062038 0.047300 11.223404 9.591950 -9589 0.064226 0.029912 11.682354 13.188071 -9590 0.090354 0.054233 12.910673 19.002137 -9591 0.041072 0.030214 11.007294 13.214347 -9592 0.095143 0.059880 9.635274 10.241559 -9593 0.072567 0.027068 8.443348 9.652703 -9594 0.075577 0.039233 12.929203 14.273289 -9595 0.096513 0.095492 12.064879 15.427581 -9596 0.086940 0.024166 9.409389 11.440233 -9597 0.055918 0.028951 8.022315 13.151938 -9598 0.090102 0.050578 10.433067 14.662561 -9599 0.049130 0.039713 6.337640 7.984615 -9600 0.060630 0.055863 14.858136 13.176880 -9601 0.068254 0.048199 8.997120 14.355767 -9602 0.087310 0.025426 7.622313 12.725373 -9603 0.119830 0.073449 11.749719 17.598505 -9604 0.096462 0.035698 8.951411 13.893221 -9605 0.038027 0.019413 7.179379 6.997486 -9606 0.070141 0.035812 9.037089 12.608170 -9607 0.083404 0.049496 11.354426 14.146507 -9608 0.097347 0.070807 9.519910 15.092591 -9609 0.146578 0.084797 15.210493 14.977327 -9610 0.048096 0.036776 8.456264 9.978777 -9611 0.078054 0.057060 15.293357 18.909079 -9612 0.109620 0.054160 9.173613 11.430829 -9613 0.052708 0.042826 7.055741 7.079661 -9614 0.076738 0.034028 13.156272 14.344233 -9615 0.084773 0.053575 7.790606 12.109303 -9616 0.068603 0.042986 13.251555 13.599374 -9617 0.034009 0.009769 8.880528 14.966641 -9618 0.065805 0.046628 9.248291 15.370736 -9619 0.054927 0.041645 10.310248 13.286730 -9620 0.077568 0.048203 10.166172 15.432717 -9621 0.103190 0.092561 12.761959 17.925252 -9622 0.071395 0.034636 10.964011 13.234930 -9623 0.088313 0.034226 7.741331 10.151660 -9624 0.081579 0.043256 12.926314 11.747275 -9625 0.052688 0.029447 8.910094 9.671376 -9626 0.074541 0.063878 12.372509 15.148703 -9627 0.061467 0.036837 7.864062 15.746582 -9628 0.074285 0.034241 10.098654 12.744771 -9629 0.118202 0.045736 6.494745 8.304438 -9630 0.122142 0.039349 10.406875 12.810475 -9631 0.061171 0.025262 7.934203 12.249827 -9632 0.104043 0.045931 10.355150 22.881668 -9633 0.125993 0.090041 16.591670 21.587944 -9634 0.054371 0.031963 8.910101 14.041782 -9635 0.057412 0.021126 9.463632 12.126959 -9636 0.070591 0.045810 6.241198 9.660847 -9637 0.080309 0.061869 9.708252 15.598987 -9638 0.035006 0.027141 6.886936 10.636476 -9639 0.071761 0.038452 7.912137 10.043613 -9640 0.088277 0.052923 13.105038 12.635160 -9641 0.048428 0.032357 13.101885 15.365951 -9642 0.084903 0.049018 10.614160 12.214910 -9643 0.057930 0.035404 9.633921 11.858232 -9644 0.063819 0.054094 8.285197 10.681136 -9645 0.046172 0.029096 7.250903 13.915990 -9646 0.118206 0.049963 12.289944 16.555776 -9647 0.119651 0.050237 8.612748 12.931995 -9648 0.052437 0.031057 10.291603 14.611404 -9649 0.151668 0.077976 11.614022 10.919440 -9650 0.060552 0.048368 10.773824 17.595711 -9651 0.094426 0.054510 12.804877 22.508898 -9652 0.080972 0.045489 12.020729 17.112267 -9653 0.125102 0.078413 12.698839 14.606663 -9654 0.132020 0.070580 9.284410 8.240032 -9655 0.092870 0.061168 10.181623 10.742623 -9656 0.061807 0.032007 8.738019 8.907133 -9657 0.038628 0.027104 10.969034 12.945009 -9658 0.050324 0.021543 8.982963 13.130176 -9659 0.067369 0.055162 8.904484 11.690127 -9660 0.051965 0.023855 7.337180 11.341554 -9661 0.069058 0.039830 6.759454 7.596371 -9662 0.076835 0.046854 6.356579 9.558143 -9663 0.051823 0.021681 7.359346 12.987426 -9664 0.058983 0.029410 15.853789 19.190756 -9665 0.087713 0.054734 9.412110 14.207191 -9666 0.039935 0.016962 10.303045 9.625736 -9667 0.109348 0.050804 12.520832 13.079979 -9668 0.072970 0.040577 9.434653 15.793285 -9669 0.078221 0.072341 13.118430 16.411952 -9670 0.058269 0.044873 9.543329 10.877942 -9671 0.047088 0.031102 9.767420 13.905739 -9672 0.066985 0.033561 9.012493 11.514124 -9673 0.137255 0.074070 13.339955 17.394803 -9674 0.065116 0.042264 8.410015 13.979822 -9675 0.061189 0.034398 9.044748 12.676731 -9676 0.052815 0.025692 7.932426 7.867830 -9677 0.052214 0.028528 9.387404 11.102617 -9678 0.060193 0.036742 10.946494 11.325742 -9679 0.071312 0.066800 10.899570 20.099244 -9680 0.055392 0.026713 11.622098 14.065425 -9681 0.050750 0.021482 8.665469 14.124478 -9682 0.064344 0.038432 13.600924 15.178367 -9683 0.055189 0.042892 7.476050 9.559038 -9684 0.069189 0.036125 14.290881 16.067395 -9685 0.087418 0.063715 12.602683 19.441233 -9686 0.125587 0.057535 12.012548 14.400500 -9687 0.067641 0.035258 8.684519 12.330408 -9688 0.068324 0.038486 8.726768 12.265206 -9689 0.091652 0.059672 11.734427 12.063970 -9690 0.079931 0.051415 12.527504 15.546470 -9691 0.059742 0.018673 7.068730 8.365872 -9692 0.110745 0.046960 10.684878 13.725575 -9693 0.070098 0.037572 9.023325 14.186093 -9694 0.087051 0.038397 14.374472 10.647377 -9695 0.081493 0.036609 10.345284 11.297647 -9696 0.088379 0.042328 8.665628 11.677415 -9697 0.094084 0.056043 15.799876 15.910269 -9698 0.092780 0.057593 10.603132 15.825909 -9699 0.071013 0.037406 8.602958 11.314637 -9700 0.066358 0.049616 8.119632 11.977687 -9701 0.062640 0.037329 7.702648 9.046412 -9702 0.065012 0.055034 7.788808 8.226440 -9703 0.092198 0.032007 6.734857 12.231449 -9704 0.062991 0.035383 9.024839 11.056350 -9705 0.047567 0.021061 6.213512 12.709108 -9706 0.066762 0.078086 14.009349 19.181087 -9707 0.074405 0.057850 11.230677 10.640975 -9708 0.066757 0.028422 10.309916 11.842738 -9709 0.052566 0.023990 9.799853 9.913731 -9710 0.072957 0.048233 12.292852 23.020338 -9711 0.049593 0.042490 7.592264 12.580269 -9712 0.068193 0.045693 8.090897 7.967852 -9713 0.120164 0.043830 8.965059 11.271051 -9714 0.064134 0.056808 11.572936 11.998767 -9715 0.135701 0.079080 11.473331 15.756801 -9716 0.089398 0.059004 8.936171 12.861559 -9717 0.083982 0.038600 13.724305 13.501781 -9718 0.071687 0.027830 12.009304 19.350197 -9719 0.076144 0.036518 12.088643 18.141253 -9720 0.064531 0.031090 7.730836 10.403763 -9721 0.066612 0.050481 5.877043 6.908067 -9722 0.090717 0.046291 11.073643 21.540563 -9723 0.080101 0.070698 8.634353 9.500412 -9724 0.053734 0.023065 7.505756 10.251655 -9725 0.068723 0.028457 7.871640 11.041099 -9726 0.107400 0.068777 10.689865 17.612297 -9727 0.049402 0.027902 12.406279 16.043772 -9728 0.081238 0.040214 11.804304 9.265159 -9729 0.066024 0.031070 13.838889 18.685064 -9730 0.061440 0.032679 7.256898 10.833033 -9731 0.094048 0.049748 8.085678 9.905866 -9732 0.080615 0.063997 13.125441 18.582224 -9733 0.064339 0.048760 7.583935 8.377956 -9734 0.071266 0.041545 11.073928 12.327199 -9735 0.067221 0.030170 16.461416 19.527770 -9736 0.134113 0.074026 10.663743 13.767765 -9737 0.125823 0.134064 11.884031 13.402049 -9738 0.097197 0.069728 10.993129 21.315289 -9739 0.064767 0.053623 10.795162 12.114163 -9740 0.149190 0.068218 11.074696 16.066931 -9741 0.056188 0.058749 12.117966 19.064333 -9742 0.075440 0.039389 10.936669 13.583749 -9743 0.050663 0.021866 6.610507 9.522680 -9744 0.075256 0.038959 10.413113 15.392928 -9745 0.072620 0.037784 6.807225 9.327310 -9746 0.124572 0.079729 7.127917 10.509791 -9747 0.056940 0.038182 8.534551 9.933191 -9748 0.078240 0.057353 10.706465 17.311867 -9749 0.094881 0.044320 9.016041 5.939366 -9750 0.113988 0.102543 10.865881 12.299106 -9751 0.052540 0.031071 7.038441 9.372404 -9752 0.118427 0.053419 7.918951 10.443814 -9753 0.072462 0.048123 10.214818 12.385902 -9754 0.075172 0.042663 12.002846 10.737308 -9755 0.136118 0.066932 5.864202 8.086811 -9756 0.064222 0.056546 9.993355 13.165976 -9757 0.097513 0.044412 9.538219 9.701621 -9758 0.065362 0.029843 6.180800 11.364819 -9759 0.065325 0.043208 8.517220 12.727831 -9760 0.136145 0.092875 7.703004 12.118846 -9761 0.098760 0.058610 11.805107 10.942281 -9762 0.071092 0.042384 7.835824 7.290357 -9763 0.086458 0.035997 11.376178 9.013811 -9764 0.103453 0.054703 13.181080 16.657838 -9765 0.061747 0.049262 10.291064 13.590822 -9766 0.073752 0.041795 12.989018 11.455960 -9767 0.067071 0.043357 7.812213 12.092439 -9768 0.150997 0.094188 12.107883 21.761909 -9769 0.068529 0.024341 9.380528 11.713696 -9770 0.081075 0.039916 8.372712 9.849649 -9771 0.065319 0.060852 7.587442 13.063565 -9772 0.046811 0.023444 11.613825 10.487806 -9773 0.046817 0.032330 8.670755 13.685302 -9774 0.056716 0.036121 10.863960 25.190440 -9775 0.079384 0.048982 8.802375 14.666879 -9776 0.075834 0.049579 11.486721 17.761808 -9777 0.070325 0.053263 8.547007 9.159487 -9778 0.073529 0.040841 6.780662 9.899956 -9779 0.093546 0.050768 10.978140 8.655256 -9780 0.107814 0.107381 8.949790 9.183763 -9781 0.120136 0.056329 11.628993 13.868264 -9782 0.079086 0.054802 11.060276 15.990802 -9783 0.042928 0.013553 11.640677 9.218632 -9784 0.074869 0.047741 8.281781 9.443548 -9785 0.078019 0.039018 8.624912 10.606010 -9786 0.065102 0.048033 12.181930 12.283657 -9787 0.134397 0.120111 10.608924 16.759329 -9788 0.054813 0.027128 6.679715 10.645887 -9789 0.109811 0.044987 7.794334 10.247424 -9790 0.085522 0.067280 11.332478 15.954061 -9791 0.067970 0.020213 9.227361 10.168248 -9792 0.070490 0.026904 8.794431 15.783217 -9793 0.071672 0.050360 10.228763 11.329867 -9794 0.070060 0.059949 7.607206 11.164787 -9795 0.055835 0.038104 11.423896 10.334127 -9796 0.042942 0.028660 7.709556 11.870799 -9797 0.091561 0.049878 8.910967 11.757648 -9798 0.066130 0.039795 6.397919 10.759468 -9799 0.116445 0.064801 10.539464 13.750494 -9800 0.042731 0.023259 10.568566 16.808136 -9801 0.071875 0.060522 14.414870 15.844024 -9802 0.072095 0.031288 7.900647 11.538823 -9803 0.116732 0.073063 11.971323 14.967296 -9804 0.081292 0.060444 8.190705 10.821973 -9805 0.084285 0.080096 12.044511 11.692423 -9806 0.065438 0.030550 12.607394 11.170766 -9807 0.045625 0.026245 6.502876 7.748771 -9808 0.065601 0.047169 11.068912 12.523183 -9809 0.087656 0.039591 9.463660 12.189341 -9810 0.075676 0.044122 11.216457 16.966831 -9811 0.092264 0.060296 9.093947 18.511311 -9812 0.074226 0.059750 8.944402 16.240781 -9813 0.060017 0.040677 13.607395 14.621365 -9814 0.068580 0.040825 7.399142 10.082066 -9815 0.082239 0.052656 9.317352 14.745979 -9816 0.109316 0.040884 7.052073 10.825892 -9817 0.083879 0.056557 10.760301 11.490093 -9818 0.127237 0.055402 14.376438 19.237444 -9819 0.066966 0.049135 9.999777 12.034608 -9820 0.040358 0.022355 7.439100 12.089313 -9821 0.083185 0.035205 9.922223 12.718859 -9822 0.046413 0.025635 5.902208 13.386631 -9823 0.071953 0.053600 8.594194 8.135930 -9824 0.191868 0.151111 16.261486 25.684462 -9825 0.084722 0.073115 10.288370 11.196685 -9826 0.096482 0.042485 8.009525 12.038988 -9827 0.087095 0.044651 9.782814 7.757635 -9828 0.055866 0.026052 8.558661 10.980280 -9829 0.063302 0.040120 11.563416 13.015442 -9830 0.073712 0.040804 9.670476 11.778053 -9831 0.084709 0.059726 24.471460 29.806452 -9832 0.053991 0.039321 12.035946 12.738421 -9833 0.063348 0.034599 16.002459 16.114981 -9834 0.073986 0.046036 11.829829 20.083289 -9835 0.062888 0.051298 7.590163 9.562633 -9836 0.074493 0.051453 10.214894 11.213856 -9837 0.043109 0.021695 7.429802 9.868319 -9838 0.071980 0.047280 9.229960 10.365057 -9839 0.083996 0.059380 10.332655 14.134021 -9840 0.049582 0.027360 11.438297 16.627952 -9841 0.076219 0.032498 9.457717 16.282895 -9842 0.184031 0.075078 10.354515 12.351228 -9843 0.035841 0.032355 4.845559 6.570104 -9844 0.071373 0.030394 11.027690 13.976113 -9845 0.071005 0.036623 13.784650 14.885098 -9846 0.071220 0.083007 13.370141 19.161176 -9847 0.094550 0.072294 8.603502 9.526604 -9848 0.054798 0.028037 11.277249 17.154495 -9849 0.082176 0.080012 8.239985 10.875678 -9850 0.090036 0.050600 10.211388 10.523135 -9851 0.058325 0.033905 8.456201 10.518689 -9852 0.133685 0.108668 12.490337 10.785599 -9853 0.102708 0.044312 16.753388 16.251847 -9854 0.069216 0.043374 9.228204 13.799051 -9855 0.131046 0.051460 9.533026 17.555586 -9856 0.059505 0.071830 9.923036 15.913218 -9857 0.143278 0.071894 11.474839 15.817644 -9858 0.088583 0.035371 7.566636 10.785718 -9859 0.051966 0.025200 8.670491 18.365153 -9860 0.079662 0.043474 10.617334 10.288498 -9861 0.073057 0.034253 10.902518 11.594471 -9862 0.156149 0.059497 10.472617 13.609774 -9863 0.046542 0.020981 9.323971 10.488700 -9864 0.083345 0.042653 12.036834 8.741051 -9865 0.085289 0.066733 13.469246 13.173296 -9866 0.054934 0.037491 6.444994 9.556775 -9867 0.075309 0.028065 12.871660 12.158672 -9868 0.111881 0.079267 14.177948 18.325639 -9869 0.086107 0.095086 11.980824 14.590829 -9870 0.075759 0.041288 9.785377 11.975155 -9871 0.140386 0.075077 8.404326 8.840625 -9872 0.041071 0.026492 6.506570 7.310725 -9873 0.069959 0.025749 10.132539 14.807667 -9874 0.044633 0.021251 8.931128 7.803585 -9875 0.070458 0.041214 9.073372 14.124930 -9876 0.066889 0.030876 8.617199 8.262081 -9877 0.090185 0.053294 9.764133 8.514638 -9878 0.051974 0.038756 6.652646 12.594215 -9879 0.055988 0.035314 14.899004 11.616912 -9880 0.066810 0.048470 6.111937 8.749248 -9881 0.087104 0.040454 11.680332 14.457222 -9882 0.088077 0.039996 9.848357 14.043753 -9883 0.049708 0.032915 12.142716 14.746870 -9884 0.042659 0.032392 7.893037 9.455603 -9885 0.097552 0.046083 8.881471 13.617986 -9886 0.101378 0.067614 10.577389 10.947940 -9887 0.079056 0.043776 8.574725 11.583619 -9888 0.062456 0.022525 9.279367 10.704974 -9889 0.072183 0.048051 11.213264 17.726652 -9890 0.081718 0.035664 12.408087 14.542230 -9891 0.078433 0.035436 12.661381 13.938260 -9892 0.097573 0.055065 9.681766 15.590083 -9893 0.095096 0.064323 11.113938 21.006296 -9894 0.068946 0.044582 7.509441 11.670015 -9895 0.059454 0.035489 9.601199 12.807628 -9896 0.053352 0.027006 8.381996 8.618857 -9897 0.041377 0.018857 8.863691 13.802791 -9898 0.052771 0.029472 8.556450 12.985720 -9899 0.075966 0.036022 13.677781 17.495667 -9900 0.089187 0.068390 13.887540 21.529118 -9901 0.066838 0.028824 10.321834 8.397003 -9902 0.125619 0.068041 13.708721 13.998647 -9903 0.107922 0.083550 10.985197 15.089825 -9904 0.070318 0.027512 5.383549 5.982205 -9905 0.067560 0.021129 8.197689 13.007717 -9906 0.059276 0.028215 13.951868 15.619260 -9907 0.071171 0.035569 9.492236 11.423651 -9908 0.097865 0.070991 11.606404 15.991760 -9909 0.039754 0.029136 8.616717 8.507102 -9910 0.097278 0.039108 9.552722 11.984482 -9911 0.080219 0.060156 18.275141 18.985097 -9912 0.081304 0.040592 11.305719 14.532328 -9913 0.066822 0.049083 9.798632 12.505441 -9914 0.077446 0.067608 9.201207 8.087675 -9915 0.081389 0.056977 7.085581 13.552815 -9916 0.072313 0.047963 10.218073 18.231630 -9917 0.080345 0.052821 8.338932 13.425211 -9918 0.090037 0.059812 8.251022 11.967902 -9919 0.049149 0.039933 6.045692 10.295241 -9920 0.133058 0.118278 13.372361 15.299546 -9921 0.075172 0.041915 10.330886 10.341565 -9922 0.061020 0.029245 9.613219 11.209035 -9923 0.061336 0.029474 13.916127 13.814910 -9924 0.082766 0.054289 12.294213 12.888817 -9925 0.092643 0.031188 15.204405 15.170328 -9926 0.076996 0.057346 10.410451 13.415025 -9927 0.113347 0.060264 11.289709 14.689599 -9928 0.092349 0.054895 6.352281 8.969228 -9929 0.089809 0.059637 12.109323 13.203153 -9930 0.126020 0.048449 8.983957 13.706575 -9931 0.082681 0.055124 11.955978 16.092379 -9932 0.105491 0.043286 12.943161 15.818580 -9933 0.086950 0.056379 13.282423 13.517806 -9934 0.061492 0.027016 13.001901 12.037267 -9935 0.114657 0.081014 9.513431 15.119491 -9936 0.053899 0.028933 10.683274 11.218957 -9937 0.094161 0.046930 15.845884 23.181677 -9938 0.112469 0.043657 10.448041 9.513496 -9939 0.072576 0.052669 13.709037 14.860595 -9940 0.058780 0.039705 5.691165 10.703504 -9941 0.101059 0.062708 11.314252 13.050429 -9942 0.045608 0.036218 8.356428 10.965989 -9943 0.160351 0.103401 10.354048 15.680974 -9944 0.040274 0.021016 7.288880 8.372708 -9945 0.076733 0.056385 9.692008 14.910740 -9946 0.065241 0.043102 9.733538 9.712327 -9947 0.063850 0.031514 11.457706 12.810091 -9948 0.075734 0.058102 8.405950 10.121900 -9949 0.046801 0.028023 8.088832 9.989647 -9950 0.093376 0.061640 10.563490 17.828838 -9951 0.052447 0.044170 13.012289 14.000530 -9952 0.088398 0.068481 9.350399 20.544830 -9953 0.042147 0.021214 7.814368 8.857259 -9954 0.071682 0.027952 8.136050 10.570841 -9955 0.059444 0.035753 9.183719 7.248796 -9956 0.080654 0.057131 9.644848 20.047297 -9957 0.048152 0.019628 7.964279 9.435597 -9958 0.095939 0.072041 16.502534 14.960729 -9959 0.064186 0.029625 9.427514 9.791830 -9960 0.050100 0.024854 10.588156 18.358950 -9961 0.097765 0.054713 12.997151 18.288886 -9962 0.101680 0.073524 12.295661 12.404785 -9963 0.091968 0.067108 11.899991 13.986294 -9964 0.104262 0.032306 6.353674 8.626294 -9965 0.079883 0.062572 15.260755 13.301128 -9966 0.103048 0.048621 9.275098 10.017944 -9967 0.050958 0.032571 8.568853 14.044439 -9968 0.089641 0.065390 9.761606 13.380344 -9969 0.060062 0.028542 7.252760 9.854929 -9970 0.102000 0.038404 11.426960 13.020276 -9971 0.112718 0.106140 13.128292 19.050561 -9972 0.075825 0.042880 16.437717 15.432581 -9973 0.123236 0.097610 13.610977 15.777258 -9974 0.085226 0.053808 16.197670 21.699804 -9975 0.075433 0.066257 12.526425 14.707993 -9976 0.058395 0.031194 8.176354 7.932118 -9977 0.067891 0.065103 10.270505 12.207341 -9978 0.081002 0.035545 10.491186 11.258536 -9979 0.037971 0.020580 9.459469 13.071005 -9980 0.130091 0.097344 9.853603 10.144565 -9981 0.098142 0.045615 7.167931 20.008848 -9982 0.038797 0.029340 6.657073 7.551918 -9983 0.048565 0.031742 6.948752 10.968509 -9984 0.067851 0.042738 8.376885 9.341133 -9985 0.061358 0.023193 10.165107 12.935793 -9986 0.072467 0.036529 7.054647 13.542640 -9987 0.076363 0.058610 13.703890 17.224158 -9988 0.099443 0.068378 12.527309 19.138424 -9989 0.065888 0.049114 7.866391 16.331361 -9990 0.063286 0.027749 10.265846 10.102630 -9991 0.041118 0.039062 8.071810 11.582058 -9992 0.072049 0.026214 8.350211 14.484402 -9993 0.084429 0.051925 15.072072 12.662981 -9994 0.061112 0.034091 14.872032 11.851345 -9995 0.108089 0.045496 9.835409 16.098381 -9996 0.091816 0.087993 10.277784 17.507529 -9997 0.093448 0.089417 10.070423 14.514612 -9998 0.083835 0.039307 9.380990 13.536962 -9999 0.042842 0.041395 11.199185 11.693451 -10000 0.056437 0.035505 8.365728 14.121690 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_3.out b/pelicun/tests/resources/EDP data/EDP_table_test_3.out deleted file mode 100644 index b234b4381..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_3.out +++ /dev/null @@ -1,10001 +0,0 @@ - 1-PID-1-1 1-PID-2-1 1-PFA-0-1 1-PFA-1-1 -1 0.084034 0.055758 9.612194 8.521800 -2 0.071598 0.048692 9.675150 11.193573 -3 0.074622 0.045064 12.668798 19.998608 -4 0.108855 0.178137 9.221696 15.844972 -5 0.050433 0.016872 12.543347 13.331059 -6 0.088671 0.058806 10.687041 10.333828 -7 0.098995 0.047933 9.103575 13.814606 -8 0.054194 0.057625 8.701449 10.576258 -9 0.074110 0.028333 10.514232 10.217392 -10 0.063398 0.030743 10.835177 11.920620 -11 0.076070 0.041588 12.998148 13.394312 -12 0.093196 0.094329 10.543328 12.602819 -13 0.056932 0.032777 9.092682 10.477496 -14 0.077995 0.098243 11.412408 9.689539 -15 0.035537 0.013985 5.850706 11.616164 -16 0.078505 0.040754 13.533522 18.540643 -17 0.058991 0.032022 9.599608 9.986433 -18 0.066816 0.035512 8.102305 15.835313 -19 0.063943 0.023249 10.081932 12.914038 -20 0.095898 0.057419 14.416237 17.094278 -21 0.071524 0.050031 10.121787 11.233320 -22 0.092512 0.065868 13.174663 19.920234 -23 0.049158 0.026160 6.794900 11.594216 -24 0.095625 0.047312 9.451341 11.863481 -25 0.062134 0.031639 12.970827 11.189020 -26 0.088053 0.044309 16.160386 13.282056 -27 0.078030 0.042363 6.861270 11.046626 -28 0.056607 0.028148 9.483462 9.760088 -29 0.049747 0.022060 9.317966 8.758632 -30 0.048219 0.023857 9.809739 10.230630 -31 0.063666 0.026354 13.133158 14.397037 -32 0.084491 0.034811 13.341097 18.424505 -33 0.293902 0.054352 10.745479 13.775770 -34 0.082852 0.057457 13.960151 16.773328 -35 0.061468 0.030543 7.799797 8.028217 -36 0.074965 0.035188 11.440816 11.724960 -37 0.093782 0.077039 13.794515 17.004499 -38 0.175488 0.055041 13.309334 14.446057 -39 0.059147 0.027497 9.855089 10.749336 -40 0.073866 0.042607 20.388725 29.613452 -41 0.186761 0.057037 10.357752 13.715921 -42 0.061603 0.029395 12.730060 11.031036 -43 0.094537 0.045310 14.537426 11.780727 -44 0.229801 0.070448 12.960514 12.608819 -45 0.051481 0.038254 9.621851 10.777329 -46 0.147039 0.096753 13.581022 13.100751 -47 0.228256 0.067075 10.783161 10.387152 -48 0.076287 0.050903 8.218719 8.607601 -49 0.083091 0.039571 10.944450 15.514196 -50 0.060442 0.048724 6.243118 14.491071 -51 0.076796 0.045613 8.568868 11.900006 -52 0.075385 0.053715 11.181350 15.053894 -53 0.095101 0.066562 11.658953 13.397512 -54 0.256840 0.059534 8.403669 13.849830 -55 0.172994 0.070729 9.922139 13.031251 -56 0.088810 0.043939 10.263977 14.170798 -57 0.061631 0.051270 12.004925 14.272941 -58 0.174419 0.064297 10.884595 14.263419 -59 0.215681 0.072307 13.613298 14.355221 -60 0.051567 0.053222 11.733564 15.108550 -61 0.095062 0.042095 7.836120 10.161571 -62 0.093283 0.069105 7.701145 12.441442 -63 0.086179 0.038897 9.742228 15.228627 -64 0.240564 0.060980 11.857421 19.527196 -65 0.207708 0.084818 11.865050 15.862264 -66 0.098450 0.092856 8.728246 10.885734 -67 0.065752 0.049626 7.067444 9.792725 -68 0.052492 0.029025 10.877503 13.080180 -69 0.108136 0.089726 11.591917 15.805891 -70 0.091255 0.069726 11.960551 14.006025 -71 0.067821 0.038361 7.661558 15.798903 -72 0.089240 0.171168 15.735097 20.874242 -73 0.090248 0.046322 9.487544 10.583336 -74 0.259062 0.059690 7.116912 7.659131 -75 0.068823 0.041265 10.145908 8.888624 -76 0.170842 0.061646 11.929040 14.134047 -77 0.293720 0.070979 11.454078 22.794415 -78 0.278874 0.059288 14.893521 22.133001 -79 0.087057 0.034782 8.052492 8.553314 -80 0.081417 0.038073 9.950568 19.291685 -81 0.054829 0.036375 6.268553 12.817782 -82 0.093864 0.087730 11.937456 11.905643 -83 0.057085 0.031418 10.627330 19.605384 -84 0.055192 0.034421 13.249988 7.446689 -85 0.070202 0.049691 9.782797 12.554170 -86 0.084567 0.035649 10.107707 12.214953 -87 0.057852 0.028901 8.191937 12.927255 -88 0.071334 0.031692 11.035181 17.411536 -89 0.093899 0.057453 12.281544 13.543508 -90 0.085715 0.076175 10.501681 12.734672 -91 0.277324 0.077286 10.788955 11.234523 -92 0.092213 0.037599 9.116890 9.820075 -93 0.085956 0.070566 12.045865 11.481578 -94 0.080267 0.046964 11.736609 10.985795 -95 0.047505 0.034288 5.989446 7.299811 -96 0.124854 0.066098 7.344849 9.694192 -97 0.070717 0.060514 10.990775 12.370855 -98 0.090804 0.037711 12.081220 11.999331 -99 0.055838 0.055658 14.266516 11.480602 -100 0.052084 0.020709 6.233274 10.901486 -101 0.113071 0.061349 15.252423 18.359304 -102 0.075378 0.041913 13.700764 13.122987 -103 0.073924 0.037791 10.496621 10.179652 -104 0.063546 0.051553 10.492454 11.898130 -105 0.043187 0.029542 8.582116 11.010487 -106 0.055127 0.021967 7.892521 9.222777 -107 0.075734 0.029134 10.589515 14.763042 -108 0.092445 0.032722 13.140210 13.618313 -109 0.041262 0.037077 6.685669 10.991112 -110 0.092326 0.050392 12.154315 15.490818 -111 0.092209 0.063445 13.492318 13.634792 -112 0.055431 0.035494 13.229951 11.877052 -113 0.048012 0.019943 13.247545 9.938524 -114 0.090554 0.041731 11.758210 15.283622 -115 0.252043 0.078544 12.078616 17.948355 -116 0.045542 0.031014 9.238624 11.855134 -117 0.197601 0.263533 9.597161 10.688820 -118 0.064639 0.036388 7.632474 11.468517 -119 0.167304 0.294909 8.000611 8.317653 -120 0.165509 0.069591 15.881096 18.758289 -121 0.084442 0.041063 12.352554 13.914608 -122 0.076571 0.053467 7.917099 14.665887 -123 0.125158 0.035453 4.860350 9.553923 -124 0.096669 0.073539 8.484385 13.564415 -125 0.083775 0.043295 8.850517 13.209373 -126 0.083054 0.036707 11.513138 13.252584 -127 0.191419 0.084216 9.058384 18.923550 -128 0.062083 0.044493 10.309880 12.408948 -129 0.065566 0.037747 13.396479 16.904097 -130 0.081410 0.035593 8.706655 9.053617 -131 0.083564 0.064695 9.383406 13.834096 -132 0.092107 0.059444 9.704353 16.201634 -133 0.065471 0.043388 13.034161 15.236806 -134 0.037357 0.030041 9.287593 9.203296 -135 0.075451 0.041306 14.015662 18.066339 -136 0.081753 0.039874 8.846151 13.792511 -137 0.065830 0.040932 8.822065 9.442370 -138 0.082981 0.079265 9.914382 11.922153 -139 0.071095 0.035434 12.111674 11.413622 -140 0.087669 0.046305 16.696113 12.009539 -141 0.073045 0.026064 11.306703 10.728369 -142 0.065846 0.049681 11.115201 13.869762 -143 0.053765 0.028551 9.805299 12.956699 -144 0.045541 0.024293 7.791763 11.606962 -145 0.080730 0.068361 9.658218 11.472760 -146 0.067995 0.040809 10.078516 8.218543 -147 0.175832 0.058647 10.094464 14.230494 -148 0.071491 0.057522 9.140901 17.188271 -149 0.083179 0.036383 11.639257 9.622498 -150 0.047365 0.026014 7.029267 10.059897 -151 0.070878 0.087514 10.620487 13.127805 -152 0.070152 0.033354 12.032358 11.216850 -153 0.039616 0.017903 7.312562 8.720252 -154 0.048438 0.029570 10.441688 11.004391 -155 0.042906 0.030972 6.274096 9.896581 -156 0.057750 0.027456 10.493388 11.515004 -157 0.098262 0.071810 11.950936 17.102522 -158 0.035416 0.019811 13.114890 12.968839 -159 0.079001 0.078565 10.950098 14.912009 -160 0.064112 0.057601 11.195073 17.320793 -161 0.058643 0.057024 7.127612 11.108503 -162 0.036692 0.023530 10.339594 8.767201 -163 0.051661 0.062135 9.055269 13.944916 -164 0.035391 0.011866 5.082503 6.427080 -165 0.275769 0.044450 16.195095 12.506058 -166 0.224848 0.090577 9.982185 11.814003 -167 0.274812 0.074408 11.534516 14.245311 -168 0.291919 0.064706 13.520630 17.121069 -169 0.062238 0.031347 7.529748 8.660591 -170 0.074581 0.031587 9.429717 8.132427 -171 0.061047 0.033570 10.052439 12.047824 -172 0.062651 0.043390 8.094944 11.918338 -173 0.099521 0.037989 8.201325 16.016862 -174 0.065698 0.040442 11.390798 13.844537 -175 0.094192 0.034754 10.515116 9.076152 -176 0.287265 0.067574 11.377214 14.118543 -177 0.057372 0.038493 13.236594 13.928834 -178 0.081499 0.048486 11.098676 11.915917 -179 0.071688 0.044675 6.097764 10.774186 -180 0.064253 0.048502 6.139511 8.058595 -181 0.075677 0.042953 10.796222 12.849748 -182 0.084652 0.047997 11.031632 20.530685 -183 0.041549 0.018088 8.617576 12.026337 -184 0.081263 0.072772 19.123892 19.145415 -185 0.081904 0.029762 9.800998 16.213651 -186 0.231715 0.055980 11.232874 16.775323 -187 0.095537 0.036132 17.028958 17.063420 -188 0.041016 0.034424 10.078666 9.202537 -189 0.048089 0.032319 9.895064 12.593052 -190 0.079844 0.067615 9.518507 14.119268 -191 0.096272 0.075407 8.629595 12.286564 -192 0.058254 0.045920 8.300524 8.320637 -193 0.099537 0.066576 11.072249 15.455822 -194 0.065478 0.041733 5.742363 6.636033 -195 0.075116 0.032413 7.325792 13.347797 -196 0.080417 0.063442 7.651534 10.773705 -197 0.039724 0.030218 6.254866 6.422231 -198 0.082939 0.042239 12.774866 20.722075 -199 0.038996 0.024274 5.332493 6.466948 -200 0.075671 0.092377 12.434714 12.906577 -201 0.068300 0.050465 7.411098 12.731898 -202 0.091672 0.047641 6.193550 7.808704 -203 0.077194 0.044480 15.457287 13.578885 -204 0.080838 0.034839 7.793543 13.042546 -205 0.071077 0.027097 7.892070 9.658787 -206 0.058800 0.035362 11.875595 13.243499 -207 0.049196 0.031160 8.294048 10.695725 -208 0.031673 0.017325 6.270678 7.882884 -209 0.217174 0.078411 22.560780 20.128948 -210 0.058135 0.039681 10.556783 13.888289 -211 0.081621 0.039344 9.008276 15.201127 -212 0.147099 0.078891 9.232017 13.796280 -213 0.090615 0.074834 8.652628 9.253538 -214 0.099211 0.055093 18.940214 23.444033 -215 0.125622 0.064342 9.938559 15.341349 -216 0.261535 0.045189 10.127949 10.716815 -217 0.250754 0.045321 10.671456 10.403228 -218 0.159850 0.043364 7.069486 10.601555 -219 0.050145 0.026399 8.492813 10.616463 -220 0.274832 0.050306 15.044497 16.856063 -221 0.070526 0.034437 7.397501 17.782101 -222 0.048982 0.038288 6.618762 9.475394 -223 0.046626 0.040330 9.467192 10.310269 -224 0.089940 0.052156 9.739813 8.329723 -225 0.087781 0.065055 9.955529 17.685796 -226 0.062039 0.041351 6.551487 8.414994 -227 0.097735 0.064647 16.458480 16.035596 -228 0.079417 0.051183 6.316846 9.444517 -229 0.091062 0.060926 12.316199 16.215485 -230 0.054131 0.053516 6.479343 10.681225 -231 0.052361 0.023054 9.658206 14.047890 -232 0.084768 0.063751 10.647507 15.539068 -233 0.050503 0.030776 9.557106 15.909827 -234 0.050268 0.045525 8.611599 13.392073 -235 0.073604 0.035734 12.523092 18.526107 -236 0.075869 0.035130 9.988210 7.092738 -237 0.079686 0.074045 6.975554 10.853688 -238 0.094291 0.053405 13.716252 17.476382 -239 0.290384 0.081541 12.373589 10.850392 -240 0.065293 0.044472 12.375935 13.378510 -241 0.060830 0.030656 7.012534 11.842818 -242 0.217874 0.090296 10.834633 15.892398 -243 0.241670 0.054884 9.209693 11.058585 -244 0.168477 0.048417 9.902957 11.687881 -245 0.073079 0.026918 8.949539 10.934714 -246 0.074820 0.043188 7.675930 9.259880 -247 0.066572 0.021500 8.424233 11.034616 -248 0.071323 0.063146 10.103210 15.360269 -249 0.098708 0.064485 14.607914 15.652281 -250 0.079023 0.043004 11.758425 17.772478 -251 0.056876 0.061103 8.981358 11.222877 -252 0.237603 0.058220 13.232006 30.290109 -253 0.075870 0.042015 9.096111 12.201924 -254 0.045617 0.027445 7.105760 8.912201 -255 0.064628 0.040941 9.294784 10.417611 -256 0.067496 0.037630 9.587111 10.222507 -257 0.221040 0.093149 11.213727 13.282754 -258 0.072280 0.024923 15.267010 15.719756 -259 0.061959 0.020351 8.407309 13.747634 -260 0.084657 0.070026 9.928264 14.220137 -261 0.191378 0.041834 8.707069 11.028831 -262 0.072895 0.051434 9.691719 14.886388 -263 0.230005 0.115339 12.508178 10.484097 -264 0.232546 0.083782 7.087503 9.352473 -265 0.061730 0.060023 14.660419 18.151924 -266 0.064111 0.046316 13.269620 16.194037 -267 0.197032 0.049868 7.524546 12.873279 -268 0.072605 0.049893 12.664213 16.137060 -269 0.076736 0.066698 8.021957 14.784851 -270 0.038847 0.024303 8.689729 11.155590 -271 0.068921 0.034206 8.555379 11.965421 -272 0.076798 0.058856 9.341472 9.049011 -273 0.088886 0.046075 11.745904 13.739405 -274 0.070126 0.036697 9.551576 11.622673 -275 0.071426 0.030115 8.173217 9.705786 -276 0.217276 0.088484 15.853052 17.315035 -277 0.085233 0.092759 13.007022 19.848155 -278 0.088545 0.068782 8.337093 9.471604 -279 0.147940 0.072512 19.423869 13.966434 -280 0.070290 0.040413 5.810392 8.540841 -281 0.064281 0.046380 10.442575 12.841980 -282 0.069266 0.034540 10.328272 12.704832 -283 0.077344 0.030433 11.448618 15.360847 -284 0.048130 0.035167 8.324330 13.121107 -285 0.046449 0.021526 6.815686 10.848668 -286 0.063417 0.026927 6.466133 9.468956 -287 0.058941 0.053756 16.781407 16.375194 -288 0.051929 0.038272 6.274688 8.349880 -289 0.067677 0.041798 12.176144 17.447013 -290 0.087428 0.051288 9.441730 11.083675 -291 0.087992 0.050110 14.080969 21.306847 -292 0.067648 0.043825 13.167682 13.088540 -293 0.049284 0.021398 9.829672 9.965105 -294 0.079027 0.047972 11.855847 15.925853 -295 0.089708 0.048889 11.244843 17.734378 -296 0.070709 0.033423 8.969528 12.577842 -297 0.173007 0.064275 7.498601 8.955160 -298 0.063677 0.033169 9.553058 10.445972 -299 0.065108 0.034711 10.964014 10.151266 -300 0.082946 0.036238 11.050475 11.118496 -301 0.080115 0.067827 11.060906 10.785766 -302 0.085812 0.062068 7.232616 9.060320 -303 0.039710 0.032899 9.078131 9.637127 -304 0.109935 0.094081 7.166002 8.613862 -305 0.086671 0.067591 13.293437 13.483631 -306 0.095141 0.045732 12.742216 13.624141 -307 0.059694 0.031651 8.594792 14.037541 -308 0.071792 0.045521 10.006537 11.891473 -309 0.063547 0.039511 7.857811 14.560639 -310 0.079840 0.035345 14.469678 15.977114 -311 0.053874 0.031159 12.028654 18.310261 -312 0.041839 0.036073 8.190442 14.496080 -313 0.060368 0.031922 9.263563 10.596287 -314 0.059581 0.039098 8.810525 9.860254 -315 0.036045 0.026376 9.072244 17.679447 -316 0.178928 0.096634 8.748757 12.090907 -317 0.082416 0.039840 8.157492 11.860340 -318 0.147957 0.068833 9.802495 14.911594 -319 0.062239 0.048527 5.206649 6.993678 -320 0.077181 0.039371 5.104234 7.453646 -321 0.063465 0.036543 8.967898 9.923694 -322 0.061527 0.039304 7.290409 12.952579 -323 0.070503 0.044782 10.519061 12.963449 -324 0.099740 0.040583 11.460636 16.189234 -325 0.082925 0.061446 13.053059 15.377502 -326 0.058822 0.033564 7.977690 9.414355 -327 0.037368 0.036478 6.728056 10.460863 -328 0.045773 0.040886 5.330475 6.644946 -329 0.094829 0.056201 12.941058 14.412869 -330 0.069261 0.054719 6.583725 9.899016 -331 0.058553 0.033591 15.467758 17.307774 -332 0.061975 0.058635 14.484053 14.652921 -333 0.075227 0.035993 5.274288 9.927504 -334 0.093519 0.041547 11.268082 11.960989 -335 0.058752 0.026575 14.771224 18.220111 -336 0.083423 0.047894 12.357504 16.744982 -337 0.067544 0.031598 7.819065 10.108108 -338 0.073974 0.053097 11.341174 17.392386 -339 0.086086 0.034236 7.601245 10.531464 -340 0.082437 0.049390 9.178123 11.705496 -341 0.066995 0.029887 8.483986 9.600050 -342 0.073208 0.057050 10.956635 17.086515 -343 0.077039 0.040447 8.927329 10.482280 -344 0.078653 0.064538 8.401654 8.830571 -345 0.093800 0.056922 12.277018 16.005432 -346 0.082568 0.039516 12.882962 18.639033 -347 0.053540 0.027753 4.897905 6.965483 -348 0.052111 0.026874 12.534893 11.056491 -349 0.058689 0.024295 10.659586 13.946432 -350 0.185535 0.050408 11.086674 16.975429 -351 0.085185 0.044127 8.335687 13.472290 -352 0.054417 0.031796 9.961327 9.001337 -353 0.057700 0.064396 8.399219 9.728827 -354 0.133028 0.189587 15.648904 21.157986 -355 0.057125 0.037525 7.827816 14.589071 -356 0.057307 0.030115 7.794297 13.674000 -357 0.088143 0.019351 12.420909 21.995727 -358 0.089028 0.085762 12.510451 13.958868 -359 0.048503 0.029844 13.400570 14.346398 -360 0.068893 0.055389 9.510791 10.334151 -361 0.254425 0.078588 12.597740 16.660723 -362 0.042930 0.027011 7.577760 12.645329 -363 0.100786 0.097501 11.073861 13.200221 -364 0.203235 0.072901 10.371481 17.169458 -365 0.112049 0.076390 6.836404 8.343680 -366 0.088302 0.059714 13.348212 17.564538 -367 0.196462 0.175820 8.698786 12.106639 -368 0.070469 0.052572 12.196501 16.053779 -369 0.096127 0.078758 5.962205 8.572052 -370 0.065041 0.073988 12.329252 20.412687 -371 0.064413 0.039965 8.398435 11.365587 -372 0.078627 0.033183 8.970644 9.106946 -373 0.053771 0.033856 9.136567 13.374182 -374 0.184469 0.062647 10.501887 16.077151 -375 0.054706 0.042710 11.141413 10.703114 -376 0.127142 0.076865 6.897872 9.009297 -377 0.048642 0.023363 7.732279 14.640376 -378 0.292435 0.092979 11.666127 18.926392 -379 0.047294 0.022720 6.525020 10.728615 -380 0.056281 0.030982 11.484679 14.045077 -381 0.050796 0.023405 5.238299 8.343240 -382 0.077152 0.023260 10.889508 11.023230 -383 0.068510 0.050965 8.827961 8.381617 -384 0.077410 0.058532 9.963712 13.312285 -385 0.049043 0.023709 8.729925 14.338121 -386 0.109112 0.049359 16.877785 17.684724 -387 0.057071 0.049323 9.881731 10.579432 -388 0.255724 0.083143 17.392664 20.096319 -389 0.047634 0.018070 9.295104 14.516752 -390 0.052872 0.024563 14.327045 14.807197 -391 0.295549 0.068558 8.083222 18.465992 -392 0.186790 0.082079 10.259224 15.137912 -393 0.098200 0.050387 14.097401 11.302113 -394 0.072689 0.062153 17.376198 16.040111 -395 0.091719 0.050073 11.376655 17.580854 -396 0.257473 0.056212 11.115233 15.448288 -397 0.079880 0.049882 10.183317 14.280280 -398 0.298386 0.091256 5.862989 12.469343 -399 0.047373 0.042055 13.569121 16.642289 -400 0.089455 0.041887 10.062397 9.321009 -401 0.075628 0.037121 8.011564 13.697388 -402 0.068356 0.044342 12.948620 12.668185 -403 0.193830 0.065672 9.178379 10.320696 -404 0.070857 0.040071 9.580797 11.259374 -405 0.080669 0.046054 9.140057 13.434955 -406 0.063797 0.037267 7.547346 10.944628 -407 0.063650 0.046423 8.547198 10.493193 -408 0.090077 0.040585 7.292263 7.171892 -409 0.094562 0.043292 12.156212 17.297358 -410 0.054101 0.069220 9.748656 12.654775 -411 0.129862 0.098289 15.143183 15.245699 -412 0.095854 0.049174 8.376711 13.447989 -413 0.055454 0.019370 8.879012 10.420829 -414 0.088233 0.046477 9.522345 12.017755 -415 0.064529 0.030398 7.322060 9.771820 -416 0.298904 0.074940 9.866661 17.812079 -417 0.109378 0.090413 11.879595 15.050655 -418 0.073218 0.031866 9.663706 10.688641 -419 0.276518 0.040542 6.293395 10.294830 -420 0.075858 0.032579 8.083496 16.376267 -421 0.053778 0.050190 15.033864 12.867395 -422 0.067411 0.040693 11.773406 11.691355 -423 0.069358 0.040372 9.938073 13.577759 -424 0.071490 0.035512 10.339027 8.503569 -425 0.071780 0.047583 6.027201 11.237445 -426 0.041691 0.031982 7.682304 12.095249 -427 0.086990 0.064334 10.027245 14.762007 -428 0.120470 0.091775 14.147112 20.381616 -429 0.072384 0.045392 7.598721 10.381200 -430 0.094890 0.073920 9.369930 15.504376 -431 0.052809 0.025518 10.594953 8.037234 -432 0.208643 0.056793 14.661921 20.883486 -433 0.062165 0.019601 11.033279 10.050541 -434 0.058771 0.020959 10.372110 14.869968 -435 0.084908 0.050312 7.672657 8.949434 -436 0.082481 0.029613 9.579152 8.995930 -437 0.084835 0.062007 13.206835 15.382127 -438 0.047214 0.048448 9.696881 10.901394 -439 0.047520 0.038150 15.232720 16.869217 -440 0.056565 0.030536 8.191003 14.195469 -441 0.070356 0.031873 10.838928 9.778043 -442 0.058240 0.036158 8.367532 10.274071 -443 0.086428 0.062486 11.793888 14.005230 -444 0.076021 0.036857 8.410576 9.744712 -445 0.203983 0.055581 13.050665 17.134484 -446 0.037931 0.020987 8.745443 10.087010 -447 0.296511 0.038404 12.163518 16.873870 -448 0.084712 0.034890 12.485953 15.051873 -449 0.064402 0.032338 11.533429 12.839231 -450 0.085094 0.039272 11.519999 11.524960 -451 0.071335 0.047687 8.608302 9.644563 -452 0.074986 0.032151 6.998328 17.503836 -453 0.058041 0.040014 11.112410 13.594067 -454 0.071637 0.041887 8.229043 11.199492 -455 0.075446 0.075238 8.836079 21.545443 -456 0.051513 0.054429 10.688092 9.639678 -457 0.086472 0.055420 11.510367 14.521104 -458 0.059210 0.023745 10.608849 11.623829 -459 0.233984 0.092725 12.302685 15.167906 -460 0.288800 0.069824 9.538338 7.142414 -461 0.098027 0.055618 11.274332 16.390103 -462 0.078368 0.043078 8.609905 10.186543 -463 0.070876 0.047285 9.113563 14.481302 -464 0.084028 0.071388 10.412152 19.040429 -465 0.194032 0.052187 11.845797 14.000136 -466 0.053852 0.033389 10.691848 13.559023 -467 0.046611 0.042118 11.417999 16.773046 -468 0.054536 0.027163 10.523040 8.654479 -469 0.058571 0.021488 10.500488 11.500682 -470 0.080545 0.060168 12.374023 9.479016 -471 0.098910 0.076996 9.639848 10.145108 -472 0.056997 0.032155 10.005926 11.776167 -473 0.097332 0.066728 11.366907 18.352524 -474 0.062457 0.032217 11.758952 9.727954 -475 0.121737 0.068168 14.705510 12.982567 -476 0.270978 0.089868 11.155667 12.974083 -477 0.079319 0.053168 9.442802 9.659342 -478 0.084125 0.031525 11.964020 14.987463 -479 0.099929 0.053268 10.270413 12.148279 -480 0.096999 0.050038 16.946992 16.781391 -481 0.049312 0.027006 8.105209 11.944557 -482 0.075296 0.040811 8.958723 13.526577 -483 0.249500 0.048049 10.440747 10.165864 -484 0.087300 0.040918 17.998037 24.813710 -485 0.068519 0.035365 11.257760 12.276809 -486 0.058147 0.033789 10.756136 12.743421 -487 0.078077 0.092895 11.792538 17.537919 -488 0.061246 0.043365 7.229026 13.185542 -489 0.054997 0.024921 7.229531 7.336954 -490 0.026695 0.017262 8.556618 8.313026 -491 0.066227 0.033531 11.672189 15.441895 -492 0.074565 0.055398 10.113830 10.452371 -493 0.082405 0.079190 9.412100 11.661261 -494 0.057052 0.028587 8.860732 9.387828 -495 0.225817 0.065348 9.223067 10.998874 -496 0.059157 0.058223 7.843813 13.068743 -497 0.159885 0.066001 9.248253 16.335923 -498 0.096954 0.062754 12.570572 16.293096 -499 0.120897 0.077645 13.647131 18.872884 -500 0.061712 0.040376 12.478330 9.543965 -501 0.273741 0.046063 10.848233 9.347648 -502 0.067637 0.028699 11.049528 10.946299 -503 0.075786 0.032141 9.482284 12.330698 -504 0.068232 0.032148 9.491102 11.061549 -505 0.057450 0.038775 11.138878 16.479421 -506 0.085794 0.043322 11.511716 16.992931 -507 0.273190 0.299789 10.720738 16.368286 -508 0.030564 0.023448 11.945565 8.687227 -509 0.160889 0.149295 12.151658 16.644021 -510 0.215876 0.053496 12.086531 9.935730 -511 0.072227 0.040263 10.160429 12.366134 -512 0.126775 0.062551 7.173131 10.585722 -513 0.176152 0.191561 15.392500 15.776370 -514 0.067238 0.035504 6.399854 7.876474 -515 0.073406 0.054847 11.052150 13.755164 -516 0.059068 0.056205 8.933942 10.358676 -517 0.051549 0.046417 8.956524 10.729259 -518 0.266178 0.121640 10.131266 11.339133 -519 0.069047 0.048236 9.383051 12.013308 -520 0.047914 0.030564 13.106541 15.144247 -521 0.062021 0.051407 7.822781 17.140824 -522 0.036108 0.033208 9.020985 13.968906 -523 0.056878 0.034505 6.252928 10.941503 -524 0.174639 0.079998 11.772793 13.515989 -525 0.294735 0.071725 9.766843 15.641699 -526 0.055044 0.035597 8.697590 12.425500 -527 0.086216 0.074079 8.248901 11.091292 -528 0.075323 0.046829 6.442653 14.209889 -529 0.089643 0.072100 14.498546 14.877067 -530 0.088748 0.059582 13.807354 14.967563 -531 0.254271 0.176430 14.798339 23.855842 -532 0.042685 0.019494 6.595779 6.461099 -533 0.056424 0.029632 13.753399 16.372775 -534 0.056797 0.039863 11.133396 15.071595 -535 0.036913 0.022330 8.064012 9.682612 -536 0.050095 0.046288 8.617558 13.657100 -537 0.057085 0.027774 7.664470 7.629793 -538 0.084066 0.053019 13.677099 13.001871 -539 0.076530 0.035804 8.906460 10.035946 -540 0.068263 0.046491 10.367204 15.372014 -541 0.097382 0.062463 14.928472 14.378812 -542 0.092864 0.142930 12.592264 18.203807 -543 0.299834 0.061075 11.986176 16.247787 -544 0.143687 0.088960 13.952708 19.929758 -545 0.064593 0.075198 8.746851 12.836690 -546 0.077751 0.033873 11.020026 14.474581 -547 0.035062 0.027530 8.914072 11.370550 -548 0.075069 0.036421 8.456795 17.519361 -549 0.089253 0.074197 9.448177 14.022553 -550 0.147472 0.062792 9.333342 9.453441 -551 0.093662 0.070026 9.582746 12.165264 -552 0.093726 0.039631 9.272392 10.426543 -553 0.113892 0.070704 16.194197 15.388021 -554 0.086528 0.298380 12.614464 21.266315 -555 0.060955 0.033611 9.474236 13.741369 -556 0.055237 0.032377 11.821131 9.651803 -557 0.068851 0.060897 8.206145 13.253457 -558 0.077942 0.054165 8.137741 13.201148 -559 0.055629 0.034046 12.974855 14.390248 -560 0.051404 0.045505 11.073422 14.302237 -561 0.108072 0.071482 10.549824 20.734397 -562 0.068824 0.026629 6.455376 7.559803 -563 0.067367 0.037569 9.518221 13.441757 -564 0.078278 0.055505 13.690769 16.217894 -565 0.095258 0.072770 9.748221 12.374651 -566 0.085307 0.034082 9.741414 9.769063 -567 0.094968 0.044906 12.524247 13.527290 -568 0.058904 0.034835 11.956491 9.645832 -569 0.081910 0.064437 11.432436 11.213969 -570 0.084010 0.058098 10.112985 10.647712 -571 0.101919 0.076438 12.716107 16.683281 -572 0.044461 0.039013 10.984861 9.753152 -573 0.062464 0.056544 14.472579 18.020343 -574 0.295914 0.085113 10.519100 17.114649 -575 0.084921 0.068784 9.854943 10.876429 -576 0.068229 0.063376 9.562132 13.247128 -577 0.062340 0.038957 10.014350 14.128107 -578 0.048485 0.023541 7.515992 11.466950 -579 0.082359 0.045555 10.056311 15.232952 -580 0.049486 0.033623 8.177343 7.972410 -581 0.073239 0.074604 13.493114 15.160839 -582 0.072570 0.036473 7.863738 15.377915 -583 0.073522 0.050222 9.068013 12.147737 -584 0.104563 0.052792 10.110802 12.434046 -585 0.067902 0.042079 8.593330 10.666622 -586 0.079815 0.044171 6.671073 13.408074 -587 0.081230 0.066572 9.308292 15.127587 -588 0.071479 0.042750 8.447917 13.818051 -589 0.063478 0.033285 10.353286 12.801136 -590 0.042446 0.019302 7.059652 9.875209 -591 0.060077 0.028343 7.750667 8.317892 -592 0.048763 0.025367 12.012527 11.186423 -593 0.099711 0.049765 9.527913 13.310843 -594 0.081877 0.035384 8.620754 13.079599 -595 0.095041 0.049620 8.676654 17.098994 -596 0.086584 0.201011 12.352631 17.338564 -597 0.063102 0.032889 12.304568 15.960112 -598 0.072713 0.043547 11.639243 14.787242 -599 0.063169 0.058764 9.674192 16.067771 -600 0.091017 0.059803 11.286009 10.366888 -601 0.078566 0.025287 10.519823 10.458525 -602 0.059852 0.019286 7.753705 8.204576 -603 0.210461 0.098970 13.840643 18.015872 -604 0.077735 0.039772 9.994583 11.100338 -605 0.051903 0.029296 9.932808 13.299086 -606 0.099998 0.041981 12.339963 11.681131 -607 0.066089 0.051291 9.043752 11.862895 -608 0.090517 0.040744 10.822390 17.410727 -609 0.059733 0.025256 9.676177 9.958510 -610 0.044458 0.024791 9.509142 11.080936 -611 0.187749 0.095809 12.678084 18.637376 -612 0.077924 0.056477 15.230642 18.123629 -613 0.070909 0.047568 12.100718 13.942080 -614 0.122276 0.092116 14.891221 20.944542 -615 0.196724 0.064278 15.488939 17.329029 -616 0.086031 0.041356 8.131956 12.095915 -617 0.038768 0.020289 7.303762 9.208544 -618 0.054363 0.053958 7.801040 7.670009 -619 0.097836 0.054835 12.169123 14.170648 -620 0.260520 0.089284 11.975268 17.873611 -621 0.079289 0.068897 9.142514 13.469073 -622 0.053179 0.021824 10.797768 13.452088 -623 0.194767 0.058379 12.132550 17.065289 -624 0.054470 0.037001 8.181461 11.885074 -625 0.078038 0.065688 8.883582 10.152158 -626 0.064484 0.047116 12.811679 9.239633 -627 0.055774 0.027014 11.063119 12.991953 -628 0.296873 0.084861 9.056622 12.391131 -629 0.209075 0.047413 8.310555 16.284022 -630 0.086742 0.057463 14.330867 13.312749 -631 0.086926 0.064186 10.275808 14.876309 -632 0.210938 0.051047 14.684977 11.037703 -633 0.062476 0.057530 9.455687 14.307187 -634 0.054805 0.053545 9.710111 11.447760 -635 0.049902 0.029438 8.866152 10.376149 -636 0.096472 0.053599 10.887382 12.774069 -637 0.050367 0.031047 9.686768 13.310988 -638 0.069192 0.055359 14.929365 21.313863 -639 0.096011 0.058749 12.799028 16.221407 -640 0.083920 0.030302 5.110503 9.743102 -641 0.068319 0.021229 6.490221 11.526576 -642 0.061610 0.030326 9.447620 9.856670 -643 0.089325 0.050514 10.259347 15.226458 -644 0.064700 0.033141 14.116098 12.982718 -645 0.154592 0.088187 8.900894 17.376730 -646 0.268491 0.063116 9.752624 15.693111 -647 0.057071 0.051976 10.780839 13.263892 -648 0.066678 0.028151 6.750721 9.687201 -649 0.073392 0.023994 7.966432 11.071954 -650 0.071474 0.047037 7.051641 7.802976 -651 0.076405 0.037808 7.314488 8.758935 -652 0.164955 0.066640 12.926231 14.020587 -653 0.086683 0.040556 5.563143 8.032846 -654 0.077609 0.031945 8.998222 9.755147 -655 0.067434 0.050535 7.318275 9.652729 -656 0.228390 0.056072 6.250022 13.427810 -657 0.076125 0.042041 9.064854 10.346224 -658 0.066561 0.028921 12.434717 11.729409 -659 0.060630 0.035915 9.102191 9.970460 -660 0.081788 0.045844 8.891371 9.351852 -661 0.082002 0.036223 9.358247 9.456200 -662 0.051645 0.027760 11.400110 9.811355 -663 0.155142 0.052440 8.369956 7.042826 -664 0.063371 0.037281 9.281843 11.387773 -665 0.091276 0.058602 15.518874 15.328909 -666 0.079590 0.042677 7.411398 14.581764 -667 0.045769 0.026578 5.288280 7.857032 -668 0.073535 0.041955 14.584854 14.862724 -669 0.054695 0.036211 10.394347 14.434284 -670 0.106153 0.063310 10.785393 15.876863 -671 0.082242 0.061632 9.448225 15.695497 -672 0.050683 0.030140 6.750313 10.244506 -673 0.039525 0.018035 8.201560 9.070163 -674 0.076478 0.029326 7.407572 10.950281 -675 0.041769 0.017845 6.359994 5.540534 -676 0.046530 0.026829 11.028636 15.579312 -677 0.084539 0.033843 12.199144 13.086574 -678 0.084136 0.024032 7.552058 12.242645 -679 0.097554 0.048203 13.178246 14.616945 -680 0.223250 0.089052 11.450864 14.737919 -681 0.095342 0.042864 14.316351 16.129581 -682 0.064657 0.033835 10.822914 19.416051 -683 0.100379 0.048289 9.882036 13.779657 -684 0.073238 0.031274 10.480177 13.356297 -685 0.061844 0.030714 8.207552 14.183131 -686 0.079465 0.055746 11.638763 16.677758 -687 0.079208 0.054509 15.828569 17.430273 -688 0.075038 0.045017 12.123218 16.259292 -689 0.064451 0.045893 6.123927 10.061680 -690 0.078976 0.041016 9.510102 8.551871 -691 0.069089 0.040620 9.641850 9.773732 -692 0.070094 0.036163 12.491423 15.203750 -693 0.071549 0.045188 9.933882 9.671820 -694 0.107275 0.070450 10.732625 16.262243 -695 0.070549 0.031209 9.131087 12.417639 -696 0.072590 0.037920 9.083492 10.092350 -697 0.079289 0.047754 10.502959 11.204543 -698 0.070305 0.051261 9.138985 11.487166 -699 0.058396 0.048451 11.899955 13.991010 -700 0.072063 0.045957 11.569087 14.326816 -701 0.218475 0.044736 7.947097 9.706191 -702 0.078456 0.044850 9.377221 12.902291 -703 0.055789 0.026257 6.107872 8.541731 -704 0.058346 0.033593 11.893707 18.136424 -705 0.060249 0.033297 6.341975 7.591748 -706 0.070643 0.029408 8.383786 10.850268 -707 0.109933 0.059269 10.000701 13.279763 -708 0.082821 0.063091 8.008347 7.041884 -709 0.076471 0.053785 10.291538 10.471568 -710 0.072967 0.041912 11.199921 11.397076 -711 0.046922 0.045043 9.959483 11.427831 -712 0.057524 0.057806 7.263775 15.635753 -713 0.072399 0.050423 8.468366 11.138227 -714 0.239993 0.097175 13.188920 15.474944 -715 0.097121 0.139363 11.857678 16.671475 -716 0.050068 0.030409 12.949097 15.396413 -717 0.068076 0.041048 13.672752 16.068369 -718 0.067974 0.035882 9.341281 10.645621 -719 0.100274 0.063270 8.269314 11.257310 -720 0.056087 0.022794 17.071260 19.998481 -721 0.062417 0.026435 11.674217 15.087171 -722 0.093429 0.042533 6.616122 9.446264 -723 0.083879 0.056062 8.611847 11.558924 -724 0.088126 0.041916 11.209469 15.870230 -725 0.065351 0.033892 10.747381 13.471670 -726 0.187869 0.059991 9.532949 12.212312 -727 0.082528 0.072265 12.191321 12.273605 -728 0.057828 0.023147 9.640211 9.387020 -729 0.080070 0.036572 11.403515 14.897819 -730 0.099978 0.042144 11.478871 14.409341 -731 0.057392 0.033039 14.346835 21.970514 -732 0.092449 0.053413 12.263161 14.761976 -733 0.036635 0.013769 7.549488 10.084784 -734 0.072827 0.019964 8.527307 13.712679 -735 0.063338 0.045318 15.452432 19.776125 -736 0.118029 0.105069 11.927097 11.830135 -737 0.045607 0.025821 8.064951 9.170908 -738 0.187931 0.031923 7.158924 15.032108 -739 0.077992 0.042228 9.478702 16.238334 -740 0.052833 0.038862 7.294827 9.541520 -741 0.084330 0.046207 7.108025 10.128436 -742 0.084329 0.052930 13.306747 11.353550 -743 0.088563 0.042172 8.346758 10.270908 -744 0.253477 0.074197 11.784816 16.523442 -745 0.087998 0.049745 13.382487 12.944680 -746 0.082581 0.048417 8.361719 13.521525 -747 0.272194 0.232385 11.595928 14.020997 -748 0.072193 0.036732 10.234684 11.125256 -749 0.080450 0.041744 12.464004 14.567250 -750 0.082905 0.044702 8.643615 14.803111 -751 0.059549 0.028533 10.281667 11.068773 -752 0.058213 0.031634 7.070125 9.146174 -753 0.195035 0.187633 13.664109 19.041069 -754 0.058791 0.036900 6.570852 6.209234 -755 0.048220 0.027948 11.379731 17.776339 -756 0.085110 0.069464 12.663032 13.583434 -757 0.074493 0.034933 10.161700 9.847762 -758 0.083367 0.028707 12.138322 16.928505 -759 0.073678 0.035789 8.996887 14.275814 -760 0.062677 0.057151 7.919061 11.505594 -761 0.092918 0.083994 6.458884 8.893236 -762 0.061945 0.063762 7.912240 9.199825 -763 0.069843 0.069172 8.911593 8.073709 -764 0.051353 0.059051 14.547355 14.895243 -765 0.061030 0.025344 9.291521 13.441630 -766 0.090558 0.052224 10.947423 17.634357 -767 0.053145 0.030926 10.333727 14.041250 -768 0.256143 0.068953 17.309959 28.401346 -769 0.056399 0.031628 8.950604 9.080432 -770 0.037760 0.019422 11.975815 14.347575 -771 0.064759 0.062152 13.020978 11.186613 -772 0.209974 0.095738 11.339686 12.834154 -773 0.054811 0.025761 7.676936 9.086583 -774 0.079078 0.073483 6.233847 14.465103 -775 0.098747 0.070596 13.684739 13.610252 -776 0.069412 0.035502 8.496401 15.188554 -777 0.047536 0.045105 8.077384 12.501791 -778 0.094831 0.076265 8.398491 16.638704 -779 0.066023 0.048155 10.720372 14.855391 -780 0.182621 0.076464 11.333389 12.023178 -781 0.102625 0.292558 12.788758 15.716254 -782 0.119373 0.045039 12.786367 10.654739 -783 0.090478 0.058235 9.458634 15.075983 -784 0.066612 0.032303 9.292326 11.927200 -785 0.066086 0.029709 9.556058 10.441952 -786 0.093196 0.065896 10.503214 16.385965 -787 0.065736 0.027221 13.534651 16.539201 -788 0.072829 0.038719 8.934284 12.276923 -789 0.051158 0.032622 6.762160 8.998180 -790 0.050940 0.030860 6.256527 8.313236 -791 0.074784 0.052779 15.724830 19.083318 -792 0.075991 0.034608 8.846370 8.517645 -793 0.061632 0.034207 5.291652 9.864207 -794 0.070309 0.057245 13.426200 12.987744 -795 0.080866 0.045693 12.883219 17.249252 -796 0.093065 0.067024 16.063138 23.448692 -797 0.076509 0.053438 15.138196 14.392440 -798 0.290286 0.075808 7.709381 11.435728 -799 0.065233 0.023289 9.263305 9.016639 -800 0.067604 0.040966 12.030534 16.971345 -801 0.053826 0.034848 8.704444 12.624743 -802 0.086129 0.041576 11.573203 15.696549 -803 0.049045 0.028550 11.633722 15.691723 -804 0.038137 0.024800 9.391960 14.273091 -805 0.118610 0.047429 9.455892 11.167100 -806 0.051459 0.033955 9.223480 9.955925 -807 0.079084 0.059501 10.279894 13.050689 -808 0.041967 0.029494 11.245293 12.571355 -809 0.093982 0.048876 9.011263 7.844232 -810 0.074032 0.050469 12.338424 17.654532 -811 0.059134 0.019130 7.935388 12.075007 -812 0.088640 0.083651 11.150283 14.553024 -813 0.080242 0.058568 8.078505 8.676455 -814 0.079710 0.043853 9.732946 10.510998 -815 0.072904 0.062225 9.127160 11.585586 -816 0.094971 0.069787 7.187181 8.665475 -817 0.051995 0.017268 12.380071 13.916439 -818 0.050566 0.019775 6.304639 7.265976 -819 0.260798 0.033747 11.612358 12.727791 -820 0.078314 0.043542 11.357245 13.166451 -821 0.090369 0.041344 9.665104 10.744157 -822 0.052899 0.038561 7.185861 10.760275 -823 0.090505 0.050785 8.840977 17.214262 -824 0.067530 0.036332 14.019421 11.081743 -825 0.081992 0.027791 8.099442 9.638271 -826 0.054374 0.036104 7.600607 9.951107 -827 0.242265 0.045906 8.508974 12.496106 -828 0.037974 0.034051 6.209357 7.464893 -829 0.078602 0.041770 9.625592 11.065234 -830 0.081077 0.032314 9.179469 20.080879 -831 0.065120 0.048890 7.232656 14.697933 -832 0.061418 0.025178 6.182131 8.907890 -833 0.205225 0.042535 11.871426 12.251322 -834 0.059472 0.035626 9.347338 12.420665 -835 0.052635 0.034394 8.648851 9.849502 -836 0.079014 0.097538 7.349567 10.688907 -837 0.066287 0.036768 13.066739 17.176825 -838 0.054311 0.025339 7.683672 10.112438 -839 0.052449 0.024727 7.191024 11.539272 -840 0.054910 0.036163 9.928354 9.012998 -841 0.246809 0.218344 11.204219 12.455983 -842 0.060771 0.033012 6.930582 10.315348 -843 0.079327 0.074884 8.700307 11.594469 -844 0.071185 0.036340 16.099029 17.532818 -845 0.044357 0.020853 10.627424 15.972366 -846 0.201992 0.061343 10.872746 14.457286 -847 0.070427 0.058070 8.075629 7.605433 -848 0.073690 0.051101 10.931620 16.086122 -849 0.071611 0.035866 8.916085 8.678810 -850 0.061490 0.038253 8.142646 9.521977 -851 0.090450 0.057945 10.625343 10.354022 -852 0.063144 0.039660 15.321327 18.124242 -853 0.084877 0.061592 13.131860 16.734216 -854 0.060036 0.034030 8.054894 14.584234 -855 0.082689 0.039520 13.878537 12.101208 -856 0.066332 0.033834 7.262273 6.357871 -857 0.061464 0.042050 7.472113 11.945520 -858 0.066717 0.055961 7.319972 8.682084 -859 0.073136 0.045481 13.640712 13.155188 -860 0.090729 0.048516 13.201459 19.399675 -861 0.055932 0.039269 9.580285 14.328234 -862 0.072381 0.058830 11.642053 10.074089 -863 0.166668 0.056408 8.983767 9.951870 -864 0.084523 0.045103 8.146976 9.957989 -865 0.059119 0.029484 7.288796 9.048822 -866 0.059657 0.049052 7.029110 13.959339 -867 0.087029 0.050468 10.225073 15.805830 -868 0.039025 0.017340 6.969665 8.901790 -869 0.058793 0.026679 10.860280 12.155907 -870 0.077316 0.059059 9.660607 11.600636 -871 0.073556 0.033668 10.777451 13.343294 -872 0.089405 0.070777 6.450591 11.933622 -873 0.085001 0.045120 9.300581 8.625303 -874 0.070236 0.034115 5.685468 6.884149 -875 0.065195 0.042047 6.861946 9.423662 -876 0.055655 0.042450 9.708284 11.071038 -877 0.090558 0.046615 9.917063 14.024511 -878 0.095746 0.038498 9.015199 9.503130 -879 0.063704 0.023850 8.241687 12.149754 -880 0.033176 0.029407 7.232332 15.403743 -881 0.059263 0.023067 8.511583 9.773398 -882 0.214865 0.073364 8.658811 12.500797 -883 0.078037 0.078977 12.364276 14.476886 -884 0.062207 0.044570 12.804287 13.400662 -885 0.120396 0.092837 10.659710 16.477426 -886 0.065936 0.054205 10.669860 9.708004 -887 0.059681 0.040416 8.705730 13.751837 -888 0.080519 0.030883 7.962873 13.952635 -889 0.046949 0.031134 10.299511 9.215146 -890 0.066509 0.032757 8.080040 11.714974 -891 0.098152 0.088114 9.722249 12.785746 -892 0.259429 0.071314 8.748282 10.479708 -893 0.088940 0.061061 13.101896 16.180002 -894 0.252001 0.052902 13.749520 15.506496 -895 0.239175 0.058084 11.193221 11.462631 -896 0.266504 0.068775 9.743266 14.303159 -897 0.059397 0.034442 9.406146 14.199355 -898 0.091842 0.052953 14.477378 17.372159 -899 0.087202 0.043021 14.493477 11.492884 -900 0.073054 0.047973 7.151852 13.722441 -901 0.055164 0.030123 14.889039 15.344674 -902 0.079598 0.053671 8.313676 8.656683 -903 0.093947 0.054587 9.239263 14.035540 -904 0.073132 0.068971 9.113815 12.350858 -905 0.058409 0.036976 7.356350 9.566992 -906 0.044173 0.026236 10.323107 12.918880 -907 0.051762 0.027699 6.980939 10.910675 -908 0.058417 0.031234 8.947270 15.211504 -909 0.048365 0.025043 7.660842 11.131297 -910 0.052084 0.027735 11.243306 11.081824 -911 0.255737 0.236861 10.437112 12.114761 -912 0.070226 0.049362 5.521274 8.462732 -913 0.043860 0.029886 8.752127 10.258112 -914 0.051657 0.031252 6.744424 8.192688 -915 0.080022 0.086350 15.648874 19.029175 -916 0.055021 0.028027 10.736340 24.415208 -917 0.075603 0.065496 8.370229 13.349388 -918 0.096078 0.047341 13.899577 14.413384 -919 0.084450 0.074360 10.733770 13.623469 -920 0.168989 0.059051 24.192797 30.237190 -921 0.070516 0.045835 9.049121 10.248856 -922 0.053162 0.030901 13.605617 19.993545 -923 0.070677 0.040287 6.175649 9.833634 -924 0.075138 0.061730 13.813285 12.129304 -925 0.059895 0.041346 13.800546 11.629086 -926 0.085105 0.052376 9.637347 11.490835 -927 0.046947 0.019200 7.449086 13.009302 -928 0.036911 0.028310 8.105576 10.850946 -929 0.057880 0.053246 10.771334 12.218520 -930 0.237614 0.098216 15.114762 11.976534 -931 0.214062 0.200686 11.133146 22.054387 -932 0.154065 0.088253 13.152117 23.534097 -933 0.095720 0.063763 11.821320 13.157147 -934 0.062729 0.049146 9.991847 16.402624 -935 0.062865 0.028436 7.555997 8.243535 -936 0.070040 0.031166 11.970191 15.690316 -937 0.097102 0.046427 13.902849 13.861350 -938 0.083913 0.052787 7.295274 10.414346 -939 0.090215 0.030806 5.720368 10.413447 -940 0.050803 0.034226 14.589444 18.260103 -941 0.074627 0.049152 11.381438 14.648211 -942 0.055764 0.053299 10.274340 12.146476 -943 0.077410 0.050277 10.254450 9.403127 -944 0.274607 0.037768 12.885691 16.651374 -945 0.259495 0.081598 15.873873 19.079551 -946 0.058291 0.023068 6.323898 8.212749 -947 0.063233 0.042291 9.852121 13.677286 -948 0.076556 0.026945 7.668983 12.900032 -949 0.042607 0.014913 8.660097 10.920922 -950 0.183748 0.088217 11.841767 13.543285 -951 0.085551 0.063794 16.767932 16.440397 -952 0.068112 0.034773 10.996305 14.079466 -953 0.082410 0.048165 14.768264 15.579004 -954 0.069655 0.029128 7.825519 10.176605 -955 0.049602 0.048228 6.169757 10.288815 -956 0.088514 0.087136 10.396923 14.250815 -957 0.083944 0.065914 12.507291 15.337969 -958 0.060982 0.048238 8.856533 8.447010 -959 0.113800 0.056186 5.732213 10.329765 -960 0.069339 0.068975 9.588455 10.915175 -961 0.037248 0.025874 8.653563 10.257879 -962 0.069724 0.036656 13.355209 17.547567 -963 0.099399 0.057042 9.121769 13.998499 -964 0.057096 0.022138 9.019416 13.499614 -965 0.077336 0.039753 7.890383 10.719157 -966 0.069217 0.075471 9.338985 11.024519 -967 0.049519 0.031160 9.203596 11.290082 -968 0.063523 0.044909 8.713130 15.810251 -969 0.065573 0.038948 8.488022 9.460289 -970 0.078966 0.037901 8.457706 8.757849 -971 0.071111 0.047971 15.556667 14.064972 -972 0.052679 0.048755 14.973782 10.155447 -973 0.055488 0.025514 6.963582 9.367627 -974 0.047813 0.029909 10.984592 14.307369 -975 0.085974 0.044500 9.714390 11.692852 -976 0.257069 0.189911 17.969758 17.026934 -977 0.058151 0.024894 8.815112 9.685889 -978 0.074796 0.051734 11.181924 15.519485 -979 0.052642 0.028545 8.624199 13.224186 -980 0.067470 0.047654 7.493827 12.331614 -981 0.083434 0.047806 10.930673 13.944761 -982 0.063522 0.028845 7.893274 5.301554 -983 0.071278 0.059733 14.523700 15.412748 -984 0.070497 0.045196 8.960076 12.278833 -985 0.045355 0.040459 8.835625 9.798556 -986 0.071392 0.046789 9.221443 9.458542 -987 0.067485 0.036496 10.138405 15.333523 -988 0.076948 0.065709 9.233452 12.395033 -989 0.070712 0.035018 11.132945 11.011395 -990 0.292840 0.062181 9.621412 16.440096 -991 0.063610 0.050073 7.447842 12.045063 -992 0.078665 0.058243 10.745754 18.882013 -993 0.208449 0.131052 9.780133 13.446628 -994 0.066793 0.043491 12.217422 11.674682 -995 0.077296 0.034198 9.423294 12.682270 -996 0.070050 0.032490 7.593496 9.962595 -997 0.103314 0.038962 6.559188 16.246723 -998 0.040951 0.015553 6.509763 8.065568 -999 0.093489 0.056977 9.238330 13.147803 -1000 0.069826 0.040315 9.483189 7.350383 -1001 0.060756 0.049312 6.573593 8.522588 -1002 0.069218 0.028514 9.936576 15.329412 -1003 0.057568 0.054006 9.234869 11.046802 -1004 0.067307 0.036145 7.413739 10.196257 -1005 0.082082 0.040268 11.851660 16.596600 -1006 0.092186 0.062064 8.494539 11.694107 -1007 0.073879 0.053004 7.666924 13.568041 -1008 0.178012 0.057283 11.602615 17.738864 -1009 0.197755 0.096072 12.490777 14.414713 -1010 0.049774 0.030339 8.278028 8.919415 -1011 0.068997 0.032288 8.051379 10.750700 -1012 0.062728 0.034954 12.416435 13.141706 -1013 0.140151 0.096373 8.433209 14.090055 -1014 0.065226 0.024766 9.179110 11.844148 -1015 0.046682 0.042718 11.553176 8.454641 -1016 0.084829 0.034149 4.869609 7.335567 -1017 0.069906 0.021766 6.282334 6.570905 -1018 0.105536 0.037630 9.308699 12.090504 -1019 0.057160 0.037095 7.941077 13.299966 -1020 0.073966 0.030344 6.976535 8.044022 -1021 0.065455 0.039341 7.827588 11.811117 -1022 0.052601 0.026799 10.871404 11.355790 -1023 0.085168 0.046348 9.984990 14.866701 -1024 0.239464 0.095109 8.893993 19.801058 -1025 0.069349 0.028662 10.216258 14.171898 -1026 0.060357 0.027454 8.610959 11.112032 -1027 0.091357 0.065115 9.489625 15.855860 -1028 0.095720 0.153010 11.160713 15.698558 -1029 0.082000 0.034727 6.942428 11.285443 -1030 0.073149 0.038804 13.430459 17.355354 -1031 0.086063 0.059122 11.805329 12.923003 -1032 0.056250 0.035837 10.780230 12.617118 -1033 0.069087 0.038242 8.097005 10.473483 -1034 0.053212 0.025291 7.221615 8.681973 -1035 0.055780 0.030883 5.993111 9.504949 -1036 0.037230 0.021282 8.877344 13.733548 -1037 0.070084 0.059061 10.387090 9.342722 -1038 0.075572 0.054427 15.608449 21.346248 -1039 0.083753 0.070846 12.576256 13.840265 -1040 0.061760 0.030159 7.064500 9.630217 -1041 0.079290 0.069490 10.429847 12.624881 -1042 0.092612 0.043387 7.514176 12.138302 -1043 0.077067 0.046518 14.929134 10.650042 -1044 0.041615 0.033569 11.171592 9.654763 -1045 0.084118 0.249773 10.088815 11.319353 -1046 0.079099 0.048236 10.334881 8.322001 -1047 0.045745 0.040336 8.193643 12.358699 -1048 0.050057 0.032717 8.902992 7.971988 -1049 0.094037 0.057902 11.235563 9.461384 -1050 0.056323 0.046385 11.296924 17.773567 -1051 0.063639 0.018093 12.963090 16.155502 -1052 0.073167 0.045569 8.198985 11.945348 -1053 0.072992 0.047575 9.066481 13.277428 -1054 0.065219 0.027704 6.299282 10.375248 -1055 0.063535 0.029910 6.280779 10.195120 -1056 0.096672 0.047476 7.994078 9.178492 -1057 0.065279 0.040951 8.131094 12.952055 -1058 0.272660 0.086003 7.188494 12.279512 -1059 0.053872 0.019826 12.607065 13.704931 -1060 0.074963 0.045796 10.827789 19.787473 -1061 0.047587 0.030077 10.825969 14.178700 -1062 0.062472 0.039975 9.087074 17.269515 -1063 0.083711 0.039884 11.184572 13.476610 -1064 0.079638 0.039367 12.375190 20.785626 -1065 0.068926 0.028621 10.787420 11.545381 -1066 0.245148 0.083878 12.471018 10.325146 -1067 0.058750 0.027719 9.109811 8.232340 -1068 0.060196 0.055277 11.968673 13.034622 -1069 0.064666 0.049370 9.413020 10.322549 -1070 0.075167 0.043210 10.739265 15.373728 -1071 0.095562 0.055950 10.850165 13.185959 -1072 0.069838 0.055205 8.698448 12.347895 -1073 0.055356 0.024657 9.179400 13.690093 -1074 0.225262 0.070991 10.313817 14.056640 -1075 0.084170 0.038667 15.205171 14.306373 -1076 0.057661 0.052588 13.280624 17.017988 -1077 0.201474 0.282242 8.470077 20.371296 -1078 0.090339 0.051045 10.232731 14.885752 -1079 0.059347 0.025613 9.775152 10.136173 -1080 0.078029 0.043001 9.998730 14.647813 -1081 0.295054 0.066945 7.221769 8.953300 -1082 0.283415 0.043035 11.716141 15.321314 -1083 0.067747 0.048123 11.793520 12.034371 -1084 0.079950 0.068560 10.731881 14.376239 -1085 0.061880 0.028765 10.503209 10.643138 -1086 0.269307 0.049900 6.692707 11.442322 -1087 0.098980 0.046386 7.969280 10.739507 -1088 0.248210 0.052738 7.137195 12.306210 -1089 0.179769 0.073771 8.775047 12.050717 -1090 0.051796 0.035214 9.326659 15.339260 -1091 0.049813 0.044680 10.015601 11.253226 -1092 0.072743 0.046855 9.985116 16.701044 -1093 0.089181 0.062932 20.956358 22.893179 -1094 0.077326 0.032836 7.562488 12.481760 -1095 0.072616 0.030135 8.185815 9.387725 -1096 0.076057 0.057088 7.124602 9.933541 -1097 0.059017 0.031243 10.283781 16.566137 -1098 0.057484 0.038715 7.502962 15.361585 -1099 0.082734 0.041785 11.328798 15.410623 -1100 0.069468 0.045895 7.217528 8.518956 -1101 0.056847 0.052519 8.089050 16.271146 -1102 0.074756 0.039434 6.955292 11.978122 -1103 0.036892 0.018625 9.745257 9.888859 -1104 0.061828 0.036501 7.624344 12.349417 -1105 0.068893 0.054928 8.783019 13.285681 -1106 0.193861 0.080135 9.643735 13.481677 -1107 0.080134 0.051953 8.455803 10.668358 -1108 0.060133 0.052410 12.230743 11.184178 -1109 0.070195 0.034195 7.630539 12.785157 -1110 0.060293 0.040075 8.882654 12.532199 -1111 0.084932 0.047240 13.235785 13.888860 -1112 0.083968 0.051377 10.604919 19.779700 -1113 0.043669 0.029663 7.615102 12.217648 -1114 0.208886 0.048992 9.009638 12.638238 -1115 0.076689 0.052209 7.874198 16.587253 -1116 0.075517 0.063083 9.920098 9.643293 -1117 0.091453 0.076800 12.786763 16.274824 -1118 0.056285 0.056007 11.403655 11.049975 -1119 0.094792 0.065312 12.705295 20.029343 -1120 0.044396 0.023915 12.946583 17.461472 -1121 0.072927 0.028934 10.669910 14.939755 -1122 0.075023 0.048091 8.258265 10.153825 -1123 0.087167 0.057819 9.363631 9.910282 -1124 0.217078 0.064384 16.084655 12.457128 -1125 0.086570 0.055869 11.664785 14.405163 -1126 0.185749 0.082576 9.213117 13.022820 -1127 0.047574 0.033661 7.957520 9.131498 -1128 0.072057 0.045480 10.495313 20.448110 -1129 0.204304 0.046972 17.149829 20.819608 -1130 0.054262 0.028177 7.902236 7.953449 -1131 0.081181 0.077053 10.941482 14.019503 -1132 0.077465 0.041368 14.416032 18.227864 -1133 0.051944 0.011665 7.869925 9.932308 -1134 0.084659 0.078865 7.415405 12.379851 -1135 0.257086 0.082405 13.882727 13.861442 -1136 0.060140 0.025536 6.802082 7.393653 -1137 0.081964 0.032124 7.694000 9.196451 -1138 0.083412 0.050921 11.549686 13.039847 -1139 0.155099 0.051121 10.873399 16.314125 -1140 0.070253 0.028583 8.777362 9.726168 -1141 0.185981 0.172221 17.182645 20.531750 -1142 0.094679 0.047045 7.632088 10.649605 -1143 0.072113 0.030830 10.284592 19.169505 -1144 0.087471 0.071563 11.288095 14.990240 -1145 0.246166 0.060406 9.915657 17.202754 -1146 0.051332 0.032986 7.479362 15.394786 -1147 0.059057 0.045619 9.483160 12.412412 -1148 0.079635 0.049635 8.830203 9.155639 -1149 0.061264 0.040779 7.220145 15.363696 -1150 0.093265 0.068514 12.249402 16.734952 -1151 0.087957 0.063418 10.019694 10.911542 -1152 0.043428 0.025846 6.367400 13.011459 -1153 0.063808 0.076826 6.830943 11.480714 -1154 0.056926 0.033645 8.303673 10.470495 -1155 0.086756 0.055800 11.428318 12.166392 -1156 0.080676 0.043800 11.177166 8.131671 -1157 0.062311 0.041741 11.517133 13.448041 -1158 0.092569 0.042133 8.750921 10.141974 -1159 0.121889 0.079534 13.229466 14.200003 -1160 0.036537 0.018211 14.037714 16.456583 -1161 0.046446 0.042576 10.904687 14.724858 -1162 0.058682 0.046973 7.073502 9.649422 -1163 0.063937 0.063089 10.877601 14.089327 -1164 0.073798 0.053886 8.617329 13.531864 -1165 0.051344 0.033825 4.287441 6.469830 -1166 0.219106 0.097316 14.020780 15.347637 -1167 0.084483 0.073380 8.187259 12.748958 -1168 0.094893 0.052090 9.902848 14.791743 -1169 0.086697 0.056624 7.977763 12.089931 -1170 0.098184 0.072367 10.397975 12.753946 -1171 0.059885 0.032070 9.398772 16.695151 -1172 0.043605 0.023357 8.036625 14.344397 -1173 0.072310 0.043903 12.569196 14.779357 -1174 0.075858 0.035176 11.781105 11.704667 -1175 0.093791 0.056315 13.816591 17.072044 -1176 0.089403 0.073036 7.455203 7.599241 -1177 0.095738 0.088037 10.547786 9.494157 -1178 0.056068 0.031456 8.421784 11.117915 -1179 0.285050 0.077922 7.031054 12.969488 -1180 0.066727 0.043890 10.417842 10.458759 -1181 0.043842 0.022565 9.979608 11.243181 -1182 0.074564 0.045749 7.007277 10.511956 -1183 0.068297 0.042597 9.862009 13.618782 -1184 0.053587 0.034798 5.339134 7.829274 -1185 0.037094 0.019598 7.844326 10.189549 -1186 0.220609 0.048438 14.495313 20.370082 -1187 0.082365 0.054202 10.584366 20.065437 -1188 0.086195 0.054391 11.333363 17.007766 -1189 0.090231 0.045419 10.925797 13.879993 -1190 0.071919 0.044809 12.053089 16.006877 -1191 0.087283 0.050561 10.974253 13.330819 -1192 0.071915 0.038588 7.047323 7.287198 -1193 0.273057 0.064946 9.106933 19.013625 -1194 0.073105 0.032034 12.058452 10.525086 -1195 0.083821 0.048877 13.961267 18.632394 -1196 0.049122 0.032062 8.154032 10.537315 -1197 0.081631 0.062036 7.391266 10.343575 -1198 0.093916 0.056993 12.861347 13.243180 -1199 0.087967 0.052023 6.537626 13.904897 -1200 0.065678 0.041510 8.899694 9.877179 -1201 0.054198 0.045810 9.613030 13.032801 -1202 0.079668 0.062724 9.636299 9.731945 -1203 0.072280 0.028694 7.729763 10.175520 -1204 0.206460 0.046268 11.986969 13.334541 -1205 0.057676 0.026927 9.933383 12.136859 -1206 0.065202 0.038626 12.348532 10.554007 -1207 0.092161 0.064914 11.549484 12.722039 -1208 0.085653 0.047728 11.465928 10.306336 -1209 0.036095 0.022461 11.149525 11.432490 -1210 0.077010 0.037223 7.547818 8.099424 -1211 0.155639 0.056755 9.987333 20.294092 -1212 0.054147 0.026700 6.713295 12.129471 -1213 0.056561 0.028619 9.788218 10.212934 -1214 0.045285 0.028794 10.155169 11.315617 -1215 0.083451 0.070260 10.731068 12.634442 -1216 0.036284 0.026453 8.554063 11.005462 -1217 0.041755 0.030954 7.080376 10.387759 -1218 0.086572 0.042851 11.923172 12.674491 -1219 0.087421 0.057217 8.445124 11.307542 -1220 0.088389 0.082790 13.084167 13.048713 -1221 0.137280 0.079619 10.260271 14.995206 -1222 0.056498 0.041769 12.960512 16.267866 -1223 0.078185 0.038177 8.805222 11.954936 -1224 0.086667 0.048925 8.542755 12.244968 -1225 0.078967 0.053206 6.504772 11.147215 -1226 0.086734 0.032148 9.141572 14.560700 -1227 0.053974 0.031838 6.985343 9.156434 -1228 0.052475 0.035617 11.081123 7.167363 -1229 0.087995 0.068442 7.535708 9.056333 -1230 0.057610 0.045699 9.271260 15.952072 -1231 0.068294 0.034025 11.680591 9.589817 -1232 0.089824 0.071036 5.304419 10.594771 -1233 0.045847 0.026112 7.558533 9.319436 -1234 0.072917 0.064577 8.368025 10.059516 -1235 0.062705 0.041349 9.630708 12.262499 -1236 0.087768 0.060955 9.147403 15.287312 -1237 0.079036 0.037647 9.962503 10.451706 -1238 0.190209 0.039769 11.044190 15.558335 -1239 0.034613 0.016916 7.653858 11.244305 -1240 0.071717 0.053245 11.388571 15.316292 -1241 0.078590 0.064206 17.683711 18.214436 -1242 0.085135 0.063001 9.695391 13.464059 -1243 0.053036 0.027700 10.690115 9.904252 -1244 0.051128 0.031064 9.851282 12.722061 -1245 0.084074 0.073788 6.999994 11.921943 -1246 0.073725 0.046646 8.956652 14.386876 -1247 0.070940 0.056446 11.451727 8.028241 -1248 0.162941 0.048885 9.807588 16.191719 -1249 0.228438 0.064702 8.235902 12.529355 -1250 0.097273 0.055499 15.189496 16.104004 -1251 0.235900 0.088070 8.600567 17.224536 -1252 0.152586 0.264658 11.142686 16.114047 -1253 0.072279 0.030991 14.369651 14.219808 -1254 0.046934 0.023536 6.580581 9.565046 -1255 0.064570 0.045182 13.867790 18.920082 -1256 0.074846 0.042001 11.467690 16.266487 -1257 0.122893 0.035422 9.102925 13.083591 -1258 0.078613 0.037321 7.629169 9.696515 -1259 0.217068 0.040135 8.062662 14.910457 -1260 0.069385 0.035992 9.962687 12.420856 -1261 0.049635 0.031229 8.689957 11.634627 -1262 0.081642 0.048150 16.778547 15.474708 -1263 0.066166 0.044543 7.025818 10.995126 -1264 0.086299 0.073336 8.941812 10.016212 -1265 0.066051 0.043326 11.872237 11.949456 -1266 0.064073 0.026765 9.783171 13.965495 -1267 0.061219 0.024979 9.478613 15.986653 -1268 0.133245 0.049317 9.767329 14.006749 -1269 0.205380 0.051037 6.913228 11.605272 -1270 0.070438 0.038296 9.372434 8.989350 -1271 0.080199 0.083827 10.322776 10.994511 -1272 0.092126 0.037914 12.206575 13.439757 -1273 0.059336 0.027428 11.060262 13.343443 -1274 0.097067 0.070573 12.911310 19.131880 -1275 0.178814 0.072694 10.486254 11.249049 -1276 0.081646 0.032757 9.132152 18.138311 -1277 0.064101 0.032034 9.407196 8.975429 -1278 0.084754 0.053209 9.694866 12.529989 -1279 0.092691 0.079238 9.277208 13.484696 -1280 0.261968 0.079069 17.629956 19.568530 -1281 0.059407 0.047779 12.024405 12.336538 -1282 0.044474 0.043089 10.617796 16.458625 -1283 0.077848 0.046334 10.290383 16.721723 -1284 0.094151 0.061503 8.351712 16.756024 -1285 0.064708 0.041805 11.964110 12.901387 -1286 0.069210 0.052418 11.419204 11.422822 -1287 0.083921 0.052195 10.256894 12.807158 -1288 0.056989 0.036642 8.730843 10.000306 -1289 0.077404 0.054956 8.486196 11.852410 -1290 0.065552 0.042207 8.674901 9.361584 -1291 0.096408 0.036983 13.309616 17.254316 -1292 0.064251 0.033519 10.654811 11.834210 -1293 0.096574 0.061806 11.039990 14.149064 -1294 0.068971 0.052706 8.946893 15.607341 -1295 0.061205 0.033512 7.421330 11.907418 -1296 0.046974 0.031632 8.270700 14.936268 -1297 0.053728 0.041625 9.592585 10.809800 -1298 0.256146 0.060531 6.465294 7.898391 -1299 0.073732 0.036466 8.008908 12.746289 -1300 0.069896 0.039754 10.649783 13.698400 -1301 0.090638 0.056333 8.997335 14.730917 -1302 0.086116 0.044551 15.020340 16.603450 -1303 0.096726 0.075680 11.909425 19.088879 -1304 0.295271 0.074016 11.714710 11.139590 -1305 0.065718 0.035964 7.376436 12.643310 -1306 0.074231 0.058674 18.449114 18.056780 -1307 0.034468 0.018112 4.807224 8.094674 -1308 0.271707 0.049351 12.040824 16.337091 -1309 0.082261 0.027123 7.964643 15.938487 -1310 0.062393 0.032128 8.698412 14.559454 -1311 0.070860 0.047806 11.226943 14.942324 -1312 0.064640 0.029083 8.656833 11.680549 -1313 0.057320 0.033961 7.985057 9.114156 -1314 0.206038 0.054806 6.441432 9.548917 -1315 0.075026 0.032506 7.049284 14.301445 -1316 0.070918 0.039952 9.572839 11.704690 -1317 0.063698 0.049614 15.286460 24.259366 -1318 0.080914 0.058488 8.672010 12.350586 -1319 0.048654 0.034902 8.536677 12.721286 -1320 0.063161 0.029632 10.025674 12.556843 -1321 0.084855 0.032347 9.931625 12.037379 -1322 0.056431 0.065011 13.902658 12.795381 -1323 0.177100 0.299292 14.345506 25.295235 -1324 0.066321 0.037927 12.212315 18.737775 -1325 0.066066 0.056416 11.898131 9.333922 -1326 0.088727 0.056179 7.906360 11.962443 -1327 0.068096 0.035295 8.099238 9.791344 -1328 0.067026 0.052959 10.074470 14.882270 -1329 0.085022 0.060091 10.375113 13.669521 -1330 0.063612 0.074835 7.942386 11.211602 -1331 0.036349 0.025547 7.623918 8.457361 -1332 0.066753 0.049737 12.503054 14.183985 -1333 0.086446 0.038411 8.604438 12.399280 -1334 0.074584 0.061800 11.929049 11.528724 -1335 0.075149 0.073727 17.159523 17.658318 -1336 0.058302 0.028455 10.870964 11.675317 -1337 0.079380 0.036670 10.095732 10.895673 -1338 0.085308 0.050226 10.307471 14.716946 -1339 0.070159 0.035912 7.315429 11.992130 -1340 0.070832 0.029161 12.924882 18.008890 -1341 0.217735 0.056434 10.525578 11.872041 -1342 0.089032 0.037787 6.681797 9.743733 -1343 0.242577 0.091349 10.776461 17.979073 -1344 0.059100 0.029756 6.213697 8.125197 -1345 0.071331 0.071151 13.086473 18.979028 -1346 0.058386 0.044925 11.852124 10.563566 -1347 0.080279 0.043884 11.504031 13.365547 -1348 0.080689 0.065289 11.168839 11.592013 -1349 0.085318 0.036649 11.098593 11.465170 -1350 0.082987 0.038501 7.243918 8.953211 -1351 0.082617 0.071075 12.767216 12.369113 -1352 0.285760 0.029759 11.955881 17.163809 -1353 0.050538 0.023591 5.910155 8.706369 -1354 0.088798 0.049484 12.744512 15.076375 -1355 0.073840 0.037525 5.280580 9.725579 -1356 0.065701 0.045495 10.082261 14.095788 -1357 0.096605 0.047780 12.746692 12.754525 -1358 0.220728 0.076488 14.460500 22.934328 -1359 0.069643 0.058572 11.367298 12.895444 -1360 0.078406 0.028756 7.456202 11.588892 -1361 0.053808 0.035040 7.215405 11.977851 -1362 0.055654 0.047233 9.993172 12.240537 -1363 0.058701 0.031758 7.571583 14.085261 -1364 0.119609 0.072959 14.182786 20.451755 -1365 0.057083 0.057267 11.026872 10.702067 -1366 0.078088 0.048913 13.927588 15.490231 -1367 0.083537 0.052714 11.073435 13.871741 -1368 0.060883 0.024941 8.417853 7.949931 -1369 0.065788 0.048448 12.098977 13.915310 -1370 0.063362 0.038437 6.222043 9.666163 -1371 0.132443 0.029701 9.579916 12.867761 -1372 0.068629 0.068521 14.347396 10.208382 -1373 0.097676 0.203840 11.273499 16.380033 -1374 0.042967 0.024155 8.372147 13.741456 -1375 0.074695 0.052518 7.317900 10.770180 -1376 0.076265 0.025992 16.340409 13.761247 -1377 0.064608 0.051717 9.269688 14.131938 -1378 0.056125 0.035386 5.055155 10.047238 -1379 0.084797 0.079862 10.066873 13.332828 -1380 0.051575 0.029270 9.852283 15.239065 -1381 0.094396 0.056977 9.451921 11.483736 -1382 0.255480 0.077545 11.302922 12.263394 -1383 0.047617 0.030007 7.486353 9.036522 -1384 0.061633 0.053168 10.575864 12.273633 -1385 0.075971 0.056572 7.824117 8.797835 -1386 0.082370 0.061438 8.146944 7.749431 -1387 0.073509 0.032457 9.957620 17.969866 -1388 0.051784 0.025064 6.061357 9.129562 -1389 0.062987 0.030661 8.231349 19.948143 -1390 0.084196 0.049940 12.709646 16.684420 -1391 0.064966 0.032557 14.070912 20.032778 -1392 0.047725 0.031272 8.685427 15.586301 -1393 0.083777 0.041288 9.006158 12.158501 -1394 0.117493 0.077268 13.564709 15.814368 -1395 0.073598 0.036063 8.829845 9.558116 -1396 0.086901 0.031721 6.662901 8.444087 -1397 0.089591 0.070851 9.196396 14.791611 -1398 0.057917 0.031851 7.692415 13.181467 -1399 0.057173 0.042147 12.697431 10.679220 -1400 0.065405 0.027179 8.292021 11.925156 -1401 0.099066 0.042616 10.947341 13.129843 -1402 0.098574 0.049655 5.708918 7.370490 -1403 0.081092 0.036708 8.028582 8.545380 -1404 0.068154 0.046365 10.554056 11.168243 -1405 0.064858 0.038189 8.148929 11.524843 -1406 0.049117 0.024363 10.310856 15.866584 -1407 0.069436 0.036826 9.403701 12.330345 -1408 0.086349 0.048430 11.318992 13.358454 -1409 0.219418 0.072361 12.282568 19.389039 -1410 0.064160 0.050428 9.546172 15.235283 -1411 0.051062 0.039839 7.297121 10.978073 -1412 0.193710 0.082291 14.209141 17.673562 -1413 0.068844 0.029013 7.795909 7.470187 -1414 0.051173 0.040323 7.319925 12.632482 -1415 0.077648 0.048317 8.569083 13.869311 -1416 0.077626 0.037301 4.617215 7.769490 -1417 0.076761 0.065664 8.283130 10.297070 -1418 0.298881 0.051382 10.093483 16.369432 -1419 0.072739 0.081350 13.738533 10.758791 -1420 0.065239 0.021687 8.567830 10.345429 -1421 0.091339 0.055901 9.028836 14.348287 -1422 0.199542 0.073302 11.318940 14.974296 -1423 0.068528 0.045387 7.687306 10.310201 -1424 0.034931 0.013502 6.337337 6.296145 -1425 0.059544 0.023993 14.113022 13.622028 -1426 0.053685 0.042774 7.779219 10.263317 -1427 0.071258 0.066299 9.751382 9.969568 -1428 0.073970 0.046573 11.085759 12.967473 -1429 0.058513 0.027817 7.497976 15.997346 -1430 0.053778 0.030274 6.775559 9.416819 -1431 0.072080 0.053541 8.258717 7.966201 -1432 0.063010 0.047286 9.040153 12.837020 -1433 0.047278 0.037682 9.794881 11.858888 -1434 0.074621 0.077708 11.187142 13.405562 -1435 0.291550 0.082351 13.701051 16.351330 -1436 0.125360 0.251888 10.875770 11.881554 -1437 0.036360 0.030428 7.274274 9.305573 -1438 0.073750 0.059194 12.546586 13.329089 -1439 0.058179 0.032042 11.810878 14.032400 -1440 0.071694 0.044913 7.676716 12.146298 -1441 0.074467 0.041177 9.644644 10.347875 -1442 0.043817 0.035404 10.416770 15.560950 -1443 0.066355 0.051110 11.441548 19.230751 -1444 0.261448 0.057770 11.538588 12.548884 -1445 0.087773 0.060222 8.865310 10.836321 -1446 0.092134 0.053972 9.208858 13.548623 -1447 0.059444 0.034786 6.847668 11.521760 -1448 0.074993 0.040584 10.475448 12.173863 -1449 0.088721 0.064684 10.713430 15.342005 -1450 0.074633 0.037321 10.257805 10.035527 -1451 0.053348 0.020094 7.468573 13.017522 -1452 0.082950 0.043768 10.494361 15.093447 -1453 0.064804 0.033551 8.799245 15.206256 -1454 0.109769 0.050208 10.004726 19.868039 -1455 0.115371 0.078616 9.068800 9.173211 -1456 0.053354 0.034253 11.413839 11.467973 -1457 0.082522 0.069751 11.913549 14.441370 -1458 0.087617 0.035893 10.946159 12.349801 -1459 0.048912 0.032238 5.122676 7.803721 -1460 0.153883 0.061839 12.004484 14.884289 -1461 0.093011 0.046689 9.052854 11.961579 -1462 0.086392 0.049375 13.371185 15.300464 -1463 0.061594 0.055597 9.341034 11.649184 -1464 0.034443 0.027167 5.292236 7.140087 -1465 0.037278 0.016735 8.889782 7.932762 -1466 0.077651 0.055459 6.091392 8.799248 -1467 0.090060 0.038028 10.324089 17.185673 -1468 0.055484 0.036126 8.748980 14.407940 -1469 0.067513 0.060881 6.570538 7.839112 -1470 0.248093 0.054976 16.973065 22.579954 -1471 0.061947 0.028353 10.829300 12.570671 -1472 0.079480 0.097071 16.088462 15.694577 -1473 0.058529 0.039529 10.253530 12.399845 -1474 0.182350 0.272917 10.227838 13.016167 -1475 0.230366 0.062336 10.847511 11.142062 -1476 0.186616 0.053160 10.342132 16.433853 -1477 0.088190 0.043573 13.360262 17.155837 -1478 0.063498 0.030342 8.454820 12.177898 -1479 0.066602 0.059832 10.273771 15.756087 -1480 0.042560 0.029294 8.391858 12.187132 -1481 0.074781 0.055165 9.872773 15.872927 -1482 0.093217 0.090706 9.262485 15.989390 -1483 0.058734 0.036626 9.911922 11.582507 -1484 0.098307 0.066664 7.430269 11.528544 -1485 0.064093 0.036512 8.791723 13.163681 -1486 0.091714 0.084402 6.560646 10.941116 -1487 0.094660 0.042515 7.751870 9.520547 -1488 0.082624 0.055158 10.161333 10.382960 -1489 0.052784 0.029973 7.012666 5.966039 -1490 0.052738 0.026162 7.129494 9.639676 -1491 0.052899 0.025666 5.167287 8.597267 -1492 0.067127 0.040923 10.522796 12.957414 -1493 0.217354 0.081162 11.864073 15.968824 -1494 0.068650 0.033569 9.344486 14.836501 -1495 0.058431 0.029211 9.764623 14.497940 -1496 0.080810 0.044118 8.618989 11.121157 -1497 0.089693 0.058806 10.111549 11.257271 -1498 0.073469 0.056801 10.845179 14.017576 -1499 0.192860 0.069246 10.289475 12.684061 -1500 0.101918 0.083602 11.450910 14.646971 -1501 0.058312 0.030006 9.982474 8.737831 -1502 0.046428 0.043258 5.760820 8.040488 -1503 0.053257 0.044905 12.856085 14.946638 -1504 0.066940 0.056272 8.981256 13.215086 -1505 0.092519 0.054494 11.297613 14.555092 -1506 0.068294 0.071911 13.926847 19.500882 -1507 0.053002 0.034728 8.671601 20.714090 -1508 0.086440 0.042493 12.733214 18.264935 -1509 0.069602 0.033893 8.146333 12.795996 -1510 0.057329 0.031153 7.703019 12.600001 -1511 0.083703 0.059707 12.152019 16.946912 -1512 0.084601 0.056361 9.564668 12.086849 -1513 0.084176 0.079025 8.894143 8.820445 -1514 0.093062 0.092480 13.009129 12.987863 -1515 0.072082 0.042803 7.338817 8.432025 -1516 0.148619 0.074194 9.809757 11.909995 -1517 0.067011 0.044410 10.829490 16.211828 -1518 0.060449 0.037507 7.665282 10.149983 -1519 0.055114 0.043208 10.221282 14.950066 -1520 0.051147 0.032051 13.120383 16.664618 -1521 0.085252 0.039115 9.994679 5.787379 -1522 0.106969 0.045839 10.050399 10.380448 -1523 0.090182 0.047319 11.246931 14.236923 -1524 0.077301 0.037375 14.527119 26.003913 -1525 0.065232 0.062583 5.996781 8.559416 -1526 0.051436 0.022608 6.822403 8.681852 -1527 0.069322 0.045734 5.748787 9.213415 -1528 0.128808 0.223641 11.187107 14.805377 -1529 0.078073 0.045722 14.531102 12.881143 -1530 0.049502 0.043596 12.137004 12.823204 -1531 0.060524 0.041842 6.778884 9.892710 -1532 0.166572 0.048706 12.777908 14.318348 -1533 0.100898 0.202676 14.435191 20.006966 -1534 0.067711 0.052215 9.806119 14.250431 -1535 0.083775 0.041329 8.123932 9.801376 -1536 0.068570 0.040645 8.779131 11.249241 -1537 0.051018 0.024027 7.209403 8.982252 -1538 0.066382 0.042328 13.236794 21.492018 -1539 0.097219 0.047283 12.293823 15.487553 -1540 0.052392 0.017040 6.180651 12.342752 -1541 0.195448 0.078996 14.336464 16.226162 -1542 0.188763 0.200728 14.931856 13.860876 -1543 0.087576 0.046260 7.765313 11.896411 -1544 0.046217 0.022806 10.489231 10.997759 -1545 0.050336 0.018170 9.699383 10.859570 -1546 0.061109 0.055700 9.541975 13.129694 -1547 0.062876 0.063344 9.826659 19.400422 -1548 0.045937 0.026598 10.287585 13.780275 -1549 0.048411 0.030159 7.186994 9.548019 -1550 0.076034 0.028344 9.123768 10.160040 -1551 0.070289 0.043916 9.557334 15.354418 -1552 0.091334 0.052066 13.495137 14.428605 -1553 0.062987 0.032354 8.737540 10.882960 -1554 0.078527 0.049431 7.114862 7.990945 -1555 0.090952 0.050768 12.864280 16.921441 -1556 0.083297 0.040824 9.577292 10.163615 -1557 0.048465 0.027232 8.183212 14.802965 -1558 0.050075 0.059575 9.270248 10.134836 -1559 0.065651 0.040903 11.989195 17.674268 -1560 0.087352 0.040576 11.254804 10.732793 -1561 0.050279 0.046002 10.507209 14.794710 -1562 0.092800 0.057571 6.386768 9.478730 -1563 0.087463 0.066408 8.484764 17.318916 -1564 0.054066 0.039790 9.299589 13.716117 -1565 0.065938 0.053340 13.029835 14.437269 -1566 0.047398 0.049691 10.337926 14.541657 -1567 0.080367 0.079229 10.431468 14.322995 -1568 0.143801 0.050073 7.919651 11.093523 -1569 0.077032 0.050343 10.318320 12.543335 -1570 0.091986 0.061846 9.856510 11.575647 -1571 0.080079 0.048142 7.655191 13.451890 -1572 0.095691 0.061881 9.257118 15.203835 -1573 0.298959 0.056626 8.362090 17.351184 -1574 0.048025 0.031730 8.446973 9.752880 -1575 0.073420 0.039221 8.452156 9.679015 -1576 0.053623 0.037732 9.395525 10.365957 -1577 0.059128 0.031565 7.260579 12.060957 -1578 0.064330 0.066711 6.386134 8.248274 -1579 0.083814 0.062587 12.586274 14.785934 -1580 0.062943 0.045486 11.197559 13.282936 -1581 0.274104 0.080283 13.708863 14.659692 -1582 0.076523 0.028073 7.326747 8.965340 -1583 0.060597 0.031145 8.810396 13.388459 -1584 0.057285 0.030274 8.770626 10.424374 -1585 0.259598 0.057962 10.056676 13.589756 -1586 0.050358 0.036266 9.381113 13.270877 -1587 0.060052 0.033903 10.267494 9.892315 -1588 0.046957 0.028418 14.772028 10.867819 -1589 0.056423 0.029173 8.642824 10.924505 -1590 0.054277 0.030956 10.811701 18.533882 -1591 0.075191 0.055132 13.088826 19.032515 -1592 0.035510 0.018821 7.187419 11.647017 -1593 0.099025 0.029140 10.766188 15.117710 -1594 0.059715 0.032177 9.207279 12.820861 -1595 0.080792 0.038167 8.225471 9.943906 -1596 0.052293 0.029783 6.168101 6.678239 -1597 0.073129 0.036175 8.689113 12.338109 -1598 0.071119 0.046073 16.093504 18.950385 -1599 0.050881 0.018399 9.815421 11.567317 -1600 0.033001 0.013929 11.446680 10.493658 -1601 0.101491 0.081559 9.301539 9.686435 -1602 0.069180 0.017525 10.072303 14.654294 -1603 0.071251 0.063892 8.390340 17.029316 -1604 0.122068 0.066573 11.275374 8.178703 -1605 0.067228 0.044313 8.559790 14.840524 -1606 0.067264 0.054785 10.757406 14.353586 -1607 0.095246 0.095692 12.184219 18.252173 -1608 0.065080 0.045127 7.892138 15.138180 -1609 0.064562 0.032306 9.005491 11.061053 -1610 0.063601 0.027483 7.896646 10.687570 -1611 0.088779 0.063575 11.345497 12.269072 -1612 0.063761 0.059366 9.909868 15.172207 -1613 0.069144 0.037583 7.063902 9.602042 -1614 0.267136 0.056081 8.510945 17.431034 -1615 0.066416 0.044766 7.208130 12.269913 -1616 0.059161 0.064789 6.208107 10.207161 -1617 0.064052 0.038633 6.160722 7.854056 -1618 0.123372 0.059869 11.768910 11.756517 -1619 0.106161 0.095702 22.240176 23.615258 -1620 0.076797 0.047422 9.423269 10.592430 -1621 0.061329 0.073516 11.035039 14.209147 -1622 0.057720 0.035759 8.145496 14.915876 -1623 0.091739 0.065730 10.714390 14.544890 -1624 0.056340 0.033746 13.732763 17.993498 -1625 0.086136 0.081929 12.454318 20.338220 -1626 0.071448 0.048550 11.817779 12.181356 -1627 0.126344 0.065297 10.237398 13.893084 -1628 0.091150 0.095506 17.305063 23.076930 -1629 0.058360 0.053219 9.138468 12.007249 -1630 0.167171 0.054961 10.137639 15.076252 -1631 0.078930 0.048409 11.766199 15.696255 -1632 0.063914 0.042734 7.206348 11.366289 -1633 0.071165 0.060095 8.247783 10.119996 -1634 0.052743 0.035382 10.632492 12.922586 -1635 0.071413 0.033389 13.402314 13.553154 -1636 0.074898 0.032134 10.273520 13.664846 -1637 0.051366 0.021850 7.730081 8.755685 -1638 0.050900 0.024872 9.912614 14.808757 -1639 0.049536 0.034165 8.027905 12.842289 -1640 0.079665 0.087229 13.355087 15.552027 -1641 0.076916 0.042159 8.951658 13.262011 -1642 0.063322 0.030586 13.267643 12.883374 -1643 0.068306 0.048742 9.071455 13.089937 -1644 0.080609 0.052705 8.176277 9.493476 -1645 0.053656 0.026171 6.523788 12.074809 -1646 0.123640 0.085690 10.025107 15.396650 -1647 0.062302 0.024982 8.482549 10.319513 -1648 0.079403 0.056468 12.756360 16.378951 -1649 0.095051 0.042110 7.943680 10.893887 -1650 0.075372 0.043776 13.164200 15.715549 -1651 0.062415 0.035768 7.394689 9.143479 -1652 0.078833 0.062882 8.051671 12.621419 -1653 0.086621 0.066688 15.125423 12.879360 -1654 0.088979 0.057485 7.358967 13.297142 -1655 0.095052 0.042205 9.174353 15.853244 -1656 0.289287 0.094464 8.623044 15.900522 -1657 0.142685 0.071699 17.311599 19.666178 -1658 0.163942 0.051749 14.849801 18.751211 -1659 0.038607 0.025903 7.467323 9.359312 -1660 0.061808 0.052411 5.727108 9.652724 -1661 0.073907 0.069836 8.637203 12.386180 -1662 0.065751 0.045723 20.458346 19.457846 -1663 0.080688 0.056639 15.731728 14.641637 -1664 0.070500 0.035660 11.097442 14.055591 -1665 0.096888 0.069549 13.314340 15.795073 -1666 0.059722 0.033179 11.726760 15.395859 -1667 0.038443 0.026502 11.202873 12.775134 -1668 0.058281 0.044256 6.165515 11.671839 -1669 0.060930 0.034632 12.866116 11.091288 -1670 0.067053 0.042961 11.048149 19.310249 -1671 0.075615 0.033355 5.020819 8.717788 -1672 0.085570 0.073965 10.281066 9.989015 -1673 0.039273 0.024078 5.594573 8.934218 -1674 0.059540 0.039414 11.083660 14.339121 -1675 0.047744 0.017840 5.755237 7.819445 -1676 0.058945 0.044231 8.240917 10.660464 -1677 0.094004 0.055215 12.439280 15.545798 -1678 0.094609 0.044402 10.691220 10.509379 -1679 0.071313 0.049904 5.302416 13.442926 -1680 0.081490 0.058657 8.982682 11.688035 -1681 0.281401 0.071377 13.096782 14.146655 -1682 0.058658 0.034136 7.677616 6.161574 -1683 0.086644 0.087500 7.945838 11.480007 -1684 0.256453 0.073011 9.516155 13.709894 -1685 0.042776 0.023324 8.423930 10.477351 -1686 0.077021 0.071613 12.348426 17.087532 -1687 0.058351 0.040560 6.625430 9.956731 -1688 0.061043 0.072100 6.769673 13.696523 -1689 0.099140 0.051956 13.657574 14.494372 -1690 0.076741 0.052187 14.421984 16.162332 -1691 0.075193 0.048517 7.336759 9.774574 -1692 0.099807 0.064865 9.468993 18.117095 -1693 0.086453 0.043552 5.446219 9.738355 -1694 0.077958 0.047037 13.325640 17.282509 -1695 0.070051 0.046037 11.031630 13.881856 -1696 0.064080 0.059894 10.550547 13.257989 -1697 0.057520 0.030119 10.039227 11.196006 -1698 0.053936 0.045198 8.900821 13.091824 -1699 0.061401 0.038128 7.907934 11.595492 -1700 0.088771 0.065575 6.855998 12.282693 -1701 0.273368 0.052453 11.841257 11.637395 -1702 0.061974 0.052458 10.362886 15.009024 -1703 0.057537 0.032483 7.906237 14.378312 -1704 0.059943 0.028712 7.053034 11.105798 -1705 0.078584 0.030038 7.001391 11.644094 -1706 0.089749 0.042862 10.909944 11.430740 -1707 0.074370 0.045955 8.950003 16.099437 -1708 0.071352 0.029804 8.647392 10.247272 -1709 0.078862 0.056239 23.136261 20.414726 -1710 0.076449 0.050794 9.144273 13.091767 -1711 0.094121 0.204992 10.364972 11.000048 -1712 0.222307 0.052549 11.927221 9.850332 -1713 0.086918 0.025597 11.105320 12.619509 -1714 0.055442 0.029489 7.825783 13.854676 -1715 0.061997 0.038985 10.888169 13.723776 -1716 0.275818 0.065907 9.421700 11.881708 -1717 0.074539 0.043120 7.396613 11.359555 -1718 0.077454 0.045465 8.476379 16.818846 -1719 0.040647 0.030829 12.696357 15.486678 -1720 0.096620 0.063248 9.173920 10.832819 -1721 0.038505 0.015995 6.929860 7.690836 -1722 0.097541 0.033872 6.034277 12.252099 -1723 0.101944 0.071322 10.629583 16.363468 -1724 0.081261 0.044655 12.422345 17.919319 -1725 0.097822 0.056338 13.017257 24.426651 -1726 0.076216 0.059254 8.806560 8.310353 -1727 0.062867 0.039447 11.639126 16.868052 -1728 0.095547 0.045546 11.787382 12.555747 -1729 0.052445 0.030879 9.551791 9.303482 -1730 0.255215 0.064244 9.587628 14.339339 -1731 0.074914 0.040034 13.133315 10.453708 -1732 0.178616 0.254785 9.314695 9.142671 -1733 0.137919 0.185034 13.601546 14.127152 -1734 0.045810 0.025128 7.017211 12.322997 -1735 0.053833 0.034876 7.412885 10.671343 -1736 0.075110 0.040781 11.468012 10.864289 -1737 0.082361 0.046566 11.629413 10.545428 -1738 0.084516 0.056639 10.395519 13.631449 -1739 0.053690 0.023181 11.639958 14.006299 -1740 0.088189 0.067460 11.890849 12.793151 -1741 0.067422 0.063533 7.809798 9.665656 -1742 0.059492 0.033749 10.235698 10.351946 -1743 0.045632 0.022251 7.364388 10.192401 -1744 0.045768 0.053812 17.124547 17.034392 -1745 0.080490 0.053150 8.423039 9.470780 -1746 0.278727 0.077602 11.798680 12.481272 -1747 0.081148 0.066089 11.108338 20.291409 -1748 0.033836 0.015732 8.194412 7.739771 -1749 0.059540 0.027084 12.417663 15.837640 -1750 0.026684 0.015806 6.624175 8.386846 -1751 0.055054 0.024465 9.342763 8.291752 -1752 0.063662 0.036617 13.819772 16.734600 -1753 0.070594 0.047141 7.131385 8.133657 -1754 0.063958 0.028041 11.309752 13.708322 -1755 0.067161 0.024504 6.350305 12.237602 -1756 0.078404 0.044171 6.872167 8.716373 -1757 0.076870 0.057884 11.553880 15.975135 -1758 0.067620 0.030592 8.605743 11.109414 -1759 0.057523 0.062087 9.635544 12.076623 -1760 0.071602 0.034658 12.914211 11.098878 -1761 0.070263 0.041728 11.508679 8.521431 -1762 0.059937 0.034630 10.219394 9.946030 -1763 0.226874 0.073116 10.545670 16.405791 -1764 0.081973 0.037208 8.150316 10.208744 -1765 0.075460 0.048884 7.196918 10.903131 -1766 0.077740 0.069060 12.296117 17.757608 -1767 0.032339 0.016870 10.629635 9.925683 -1768 0.065204 0.059230 10.523264 15.754730 -1769 0.067513 0.052679 9.674622 8.277976 -1770 0.052405 0.058883 11.917724 14.113168 -1771 0.072421 0.021016 12.045314 10.893558 -1772 0.268720 0.063678 12.670889 13.502189 -1773 0.099920 0.067184 17.410390 23.581755 -1774 0.094577 0.060394 10.133816 13.807715 -1775 0.210524 0.290677 11.000334 12.494577 -1776 0.069961 0.038598 10.033789 14.376325 -1777 0.064230 0.060337 11.890544 14.512342 -1778 0.051635 0.021370 7.523737 12.672691 -1779 0.077889 0.034025 11.272273 12.481394 -1780 0.224591 0.079389 13.074920 18.108931 -1781 0.065012 0.046742 10.147432 11.951464 -1782 0.043503 0.033537 11.311327 20.293050 -1783 0.088511 0.044399 13.584349 17.690284 -1784 0.052856 0.055696 11.178334 15.885165 -1785 0.092183 0.040103 14.607780 10.676748 -1786 0.088833 0.045760 7.645729 13.763921 -1787 0.068794 0.039218 7.385786 9.040832 -1788 0.069901 0.082183 7.569728 14.226505 -1789 0.057485 0.050004 12.430154 10.846372 -1790 0.064601 0.050788 10.631027 16.143155 -1791 0.082654 0.045755 7.861307 8.746429 -1792 0.055675 0.024780 6.806553 11.996451 -1793 0.078240 0.030910 5.807001 7.370792 -1794 0.050832 0.028032 12.802746 13.043168 -1795 0.260653 0.144562 10.698603 13.331718 -1796 0.057717 0.044123 14.721133 17.677490 -1797 0.057828 0.030588 8.445793 10.398702 -1798 0.074766 0.037922 12.909145 16.854202 -1799 0.073421 0.045880 8.608015 14.598965 -1800 0.064378 0.063406 9.999341 9.663586 -1801 0.187438 0.097706 10.994332 13.923803 -1802 0.056500 0.061578 9.095767 12.117974 -1803 0.087332 0.084646 11.950248 18.394730 -1804 0.069845 0.046889 12.594406 16.663610 -1805 0.073362 0.032890 12.749327 15.584162 -1806 0.094469 0.049629 6.339916 11.207102 -1807 0.059770 0.057397 8.746245 10.358118 -1808 0.224080 0.283536 14.008821 20.223589 -1809 0.060615 0.037498 11.232169 16.332858 -1810 0.057271 0.037352 6.852422 9.013147 -1811 0.082144 0.055901 11.502619 14.046387 -1812 0.096654 0.059617 5.782032 9.091542 -1813 0.174043 0.071862 12.558927 14.228210 -1814 0.051523 0.036062 7.653522 8.424235 -1815 0.075794 0.081011 7.420145 11.401028 -1816 0.057970 0.030048 9.551461 9.167822 -1817 0.063366 0.025750 11.264790 12.465108 -1818 0.141969 0.088427 19.946000 17.701094 -1819 0.066981 0.020979 10.435555 13.342472 -1820 0.067563 0.026538 7.297118 11.839104 -1821 0.044848 0.029249 14.228568 14.635879 -1822 0.067562 0.052893 7.392550 8.822013 -1823 0.072057 0.048931 6.297531 9.885007 -1824 0.054280 0.031906 10.515287 15.998943 -1825 0.086061 0.061255 9.662978 15.191658 -1826 0.033147 0.014085 6.439433 8.021064 -1827 0.053109 0.048008 10.229517 16.219569 -1828 0.063108 0.052504 9.879545 12.349002 -1829 0.112530 0.042600 6.373700 11.778948 -1830 0.080824 0.051732 7.502867 9.349354 -1831 0.052556 0.024018 8.430038 10.607026 -1832 0.069353 0.048020 13.380514 11.173739 -1833 0.050350 0.043669 12.216022 8.801420 -1834 0.065699 0.048071 11.641870 11.263776 -1835 0.222419 0.130161 14.179134 14.931211 -1836 0.049879 0.020139 8.855802 10.182917 -1837 0.096416 0.044570 8.495144 13.284475 -1838 0.066407 0.046910 7.316699 9.083545 -1839 0.061740 0.029169 7.541508 8.296270 -1840 0.098745 0.045021 7.580520 9.300759 -1841 0.041806 0.031530 13.178270 14.936666 -1842 0.072182 0.051274 9.709878 10.661278 -1843 0.056240 0.034014 7.610754 7.660344 -1844 0.079124 0.043256 12.263251 15.871561 -1845 0.096329 0.091966 11.778313 17.320840 -1846 0.071545 0.019545 8.326599 7.662614 -1847 0.069518 0.040070 9.487871 9.811429 -1848 0.076041 0.063552 15.548533 17.916998 -1849 0.034251 0.041870 10.457349 11.071727 -1850 0.263613 0.055866 7.851013 8.783730 -1851 0.080114 0.022542 9.421333 15.037083 -1852 0.262243 0.107551 11.901390 18.504080 -1853 0.147375 0.071567 12.620211 13.508557 -1854 0.057431 0.044892 8.617716 13.741048 -1855 0.047487 0.025593 5.807580 7.251087 -1856 0.039308 0.018807 9.989397 10.707105 -1857 0.059984 0.037596 7.318000 10.976856 -1858 0.095630 0.042324 8.736078 10.893907 -1859 0.071767 0.033146 10.262713 15.700758 -1860 0.063755 0.053154 12.055296 13.179779 -1861 0.077680 0.042398 11.275312 11.517337 -1862 0.067119 0.026903 11.757954 13.707657 -1863 0.098140 0.046239 7.265990 10.403113 -1864 0.138317 0.080902 9.197854 13.449060 -1865 0.087308 0.077928 8.343433 10.921956 -1866 0.062672 0.031537 13.369063 12.589557 -1867 0.058958 0.028980 9.855564 10.193594 -1868 0.060714 0.031699 6.555795 10.417212 -1869 0.092526 0.072003 16.196706 26.547169 -1870 0.047246 0.030700 8.076070 12.251561 -1871 0.098165 0.071700 8.983198 13.675041 -1872 0.257535 0.058640 9.337625 12.990572 -1873 0.274955 0.082032 9.839639 14.640552 -1874 0.068461 0.056254 10.772712 11.975517 -1875 0.060759 0.038176 10.950961 17.891475 -1876 0.055943 0.038551 8.743678 13.580162 -1877 0.231179 0.054905 11.513035 14.647223 -1878 0.096071 0.068131 11.872873 13.582309 -1879 0.050166 0.037117 9.747863 10.944869 -1880 0.068393 0.051866 9.160164 12.072043 -1881 0.073340 0.046438 16.626001 12.263660 -1882 0.090145 0.054439 8.350673 13.794013 -1883 0.056957 0.031831 6.772011 9.413511 -1884 0.085549 0.026708 12.601444 17.020761 -1885 0.090173 0.038942 8.374850 12.470397 -1886 0.076298 0.029232 10.045827 12.455540 -1887 0.095735 0.029508 12.041978 11.684711 -1888 0.053422 0.030550 9.841027 12.271602 -1889 0.067979 0.056113 11.821382 13.047196 -1890 0.054309 0.021455 12.162485 11.746886 -1891 0.066501 0.045847 10.470742 15.639046 -1892 0.059071 0.037355 9.748601 10.329365 -1893 0.181484 0.183574 11.623255 17.166480 -1894 0.071563 0.039153 10.784917 7.602332 -1895 0.077919 0.044674 9.415333 12.643149 -1896 0.281748 0.050279 13.950858 10.014769 -1897 0.243586 0.098157 11.485366 13.346116 -1898 0.084439 0.059694 11.655629 14.277758 -1899 0.095483 0.073986 11.980617 15.277846 -1900 0.140139 0.062652 11.533927 10.161169 -1901 0.065260 0.031131 10.534433 18.125444 -1902 0.046696 0.032663 8.011118 11.845481 -1903 0.073435 0.055235 8.707206 7.824728 -1904 0.210225 0.091195 11.682249 14.572230 -1905 0.065005 0.039115 8.482780 11.628164 -1906 0.055601 0.054789 12.113901 9.848769 -1907 0.079860 0.080413 12.098883 11.321340 -1908 0.096937 0.053685 9.465595 9.287739 -1909 0.094190 0.051015 17.483952 20.630054 -1910 0.079084 0.039915 9.543556 11.657336 -1911 0.087995 0.045868 6.852001 9.576304 -1912 0.061490 0.071173 9.569957 13.564411 -1913 0.155465 0.202486 10.235038 10.468085 -1914 0.065812 0.047036 6.375482 8.651241 -1915 0.053068 0.019346 13.241932 12.516271 -1916 0.080210 0.037794 7.894073 10.836855 -1917 0.053297 0.043509 8.307201 11.111279 -1918 0.055931 0.031832 8.580261 13.474726 -1919 0.055651 0.035575 11.457446 11.659446 -1920 0.218666 0.114334 13.201610 15.546461 -1921 0.185590 0.063860 13.491568 13.733300 -1922 0.102153 0.057746 7.820561 14.225741 -1923 0.076483 0.042424 14.488000 18.367480 -1924 0.045582 0.025643 5.560156 7.408459 -1925 0.063769 0.034897 7.251635 12.497526 -1926 0.077720 0.059328 7.501611 10.754044 -1927 0.065520 0.036225 12.473935 11.646886 -1928 0.075432 0.041718 6.691394 7.933417 -1929 0.078741 0.052058 15.016296 14.214690 -1930 0.066592 0.050606 12.605094 19.133838 -1931 0.120215 0.121359 17.982860 27.592495 -1932 0.231813 0.089148 11.214126 15.179242 -1933 0.168905 0.062579 12.451266 13.202052 -1934 0.067040 0.048384 9.359038 15.273595 -1935 0.068647 0.026102 10.649084 15.835558 -1936 0.053157 0.056391 11.254260 12.877542 -1937 0.048413 0.018423 10.379729 11.592524 -1938 0.090430 0.063139 9.497401 10.346970 -1939 0.057275 0.027462 6.828639 10.060548 -1940 0.252693 0.085032 15.422156 24.167623 -1941 0.063494 0.024172 7.367163 9.169590 -1942 0.065170 0.033405 9.146360 14.779019 -1943 0.097693 0.046390 11.371098 12.384828 -1944 0.074311 0.045345 7.290663 11.650860 -1945 0.083026 0.043173 9.096510 11.161075 -1946 0.079314 0.061820 10.738962 10.950770 -1947 0.079791 0.044217 12.099868 13.009682 -1948 0.072617 0.039511 7.886802 11.190692 -1949 0.064225 0.050393 10.208091 13.167217 -1950 0.067553 0.046898 7.833608 9.315507 -1951 0.060477 0.024869 6.684395 13.183434 -1952 0.063551 0.034496 10.286800 13.934837 -1953 0.047841 0.023963 7.489542 9.328379 -1954 0.095889 0.056514 10.128123 11.942166 -1955 0.060928 0.026571 10.648359 11.287457 -1956 0.167131 0.050718 13.003554 13.651266 -1957 0.068709 0.046078 6.918927 8.980394 -1958 0.073593 0.040727 10.605895 12.769235 -1959 0.067270 0.060972 8.059508 11.796960 -1960 0.073582 0.058784 9.244048 8.613343 -1961 0.097211 0.071666 13.375166 14.053954 -1962 0.069655 0.038480 11.279068 15.342007 -1963 0.064416 0.030412 9.468437 11.115366 -1964 0.081895 0.047552 7.978556 12.228164 -1965 0.069924 0.032118 8.106158 12.139672 -1966 0.069766 0.028168 10.872764 13.088496 -1967 0.058891 0.043831 9.859519 12.533276 -1968 0.046175 0.047250 10.114211 14.079155 -1969 0.083932 0.053113 8.567728 11.358975 -1970 0.085645 0.036759 9.531714 10.141317 -1971 0.055253 0.034248 9.756208 12.061291 -1972 0.074612 0.034831 7.459451 9.737314 -1973 0.050227 0.032569 6.919833 7.003635 -1974 0.054861 0.025998 13.993077 13.897841 -1975 0.181701 0.048631 10.046063 13.844534 -1976 0.052533 0.027241 7.456487 7.390372 -1977 0.091751 0.057857 18.594746 17.782909 -1978 0.035806 0.015690 7.274793 10.940284 -1979 0.080165 0.052020 9.389393 12.061782 -1980 0.057934 0.028752 9.792685 16.061554 -1981 0.080085 0.053526 12.506449 10.460829 -1982 0.093777 0.050541 9.848040 11.440853 -1983 0.085360 0.086401 10.543844 17.768655 -1984 0.056788 0.030467 8.090603 8.284511 -1985 0.070237 0.025787 6.212595 10.669349 -1986 0.054913 0.044228 10.285480 15.545852 -1987 0.081860 0.076369 6.351661 9.699759 -1988 0.173626 0.031981 14.149673 14.488777 -1989 0.211775 0.125301 12.297118 15.234277 -1990 0.097641 0.038324 10.616666 14.003165 -1991 0.076219 0.040403 9.767919 11.492694 -1992 0.097055 0.039369 11.930374 14.037750 -1993 0.082418 0.051075 9.158853 12.246628 -1994 0.087189 0.079115 17.755164 13.645489 -1995 0.052686 0.026081 8.321913 7.524371 -1996 0.076797 0.049595 15.123988 14.073640 -1997 0.180797 0.074903 19.974890 19.354028 -1998 0.077296 0.049751 7.647296 9.074172 -1999 0.063019 0.024623 6.591745 9.351156 -2000 0.078334 0.045220 8.481642 13.717262 -2001 0.206185 0.074516 12.565494 15.228853 -2002 0.080202 0.045006 6.257762 8.735914 -2003 0.080285 0.040460 14.727396 19.829821 -2004 0.075847 0.058428 11.757537 14.672723 -2005 0.096092 0.051963 12.038433 12.818894 -2006 0.270648 0.079276 10.201574 14.110421 -2007 0.205091 0.074154 13.408214 12.763626 -2008 0.061473 0.045177 9.394483 13.716138 -2009 0.233480 0.086980 12.043216 16.137616 -2010 0.099013 0.061880 8.382656 11.420637 -2011 0.056879 0.026948 8.086277 10.156073 -2012 0.045636 0.025049 7.241560 13.053293 -2013 0.056807 0.044470 13.967606 18.869368 -2014 0.091847 0.087827 8.125267 11.239233 -2015 0.126380 0.059921 9.361382 11.470859 -2016 0.064481 0.041010 8.523997 12.973024 -2017 0.069974 0.042452 15.421832 17.752220 -2018 0.069582 0.064484 12.681563 15.192855 -2019 0.081002 0.059679 15.053136 12.936084 -2020 0.145340 0.089205 10.272257 10.381558 -2021 0.080794 0.067596 16.114307 16.411630 -2022 0.065561 0.049042 8.316301 13.717555 -2023 0.075128 0.026282 6.890536 14.213883 -2024 0.084515 0.074844 12.508424 14.958507 -2025 0.136255 0.076544 14.254632 13.902129 -2026 0.058755 0.056255 14.216661 15.036830 -2027 0.057932 0.040277 9.977052 11.965613 -2028 0.094469 0.035676 11.741888 14.802650 -2029 0.247300 0.067448 13.538621 15.476494 -2030 0.086985 0.042954 10.650633 15.973848 -2031 0.080444 0.047549 12.105535 13.505533 -2032 0.073549 0.057000 7.632180 14.922554 -2033 0.080596 0.070628 13.066719 15.997428 -2034 0.086735 0.061486 10.024270 9.704579 -2035 0.088871 0.024241 8.636406 12.063626 -2036 0.074602 0.044358 7.610286 8.685012 -2037 0.080031 0.048762 9.367456 13.766109 -2038 0.072313 0.053841 8.316100 9.544842 -2039 0.056815 0.030118 9.761452 11.794811 -2040 0.067821 0.029263 8.707152 10.840464 -2041 0.075411 0.030637 12.023704 14.197914 -2042 0.060317 0.027715 8.745629 9.702212 -2043 0.095853 0.066066 10.649984 12.617644 -2044 0.085122 0.048712 8.888888 16.451579 -2045 0.086140 0.068643 9.746632 12.042273 -2046 0.095125 0.042223 9.892857 14.942063 -2047 0.218863 0.060542 8.110145 9.754500 -2048 0.091717 0.094486 10.633049 13.389864 -2049 0.065417 0.045361 10.486776 14.951710 -2050 0.059994 0.021469 12.962333 15.333855 -2051 0.048029 0.037933 12.597783 17.734517 -2052 0.163133 0.096049 15.198689 15.376586 -2053 0.046125 0.041325 8.832326 10.010343 -2054 0.095052 0.069305 13.906523 12.352588 -2055 0.099004 0.079258 10.946939 11.193679 -2056 0.053776 0.048128 10.345037 13.108619 -2057 0.079414 0.035222 8.120395 11.888866 -2058 0.145469 0.045933 12.335102 16.684148 -2059 0.071555 0.039005 12.883093 14.090738 -2060 0.081211 0.057045 7.119437 8.589339 -2061 0.040000 0.023165 11.037205 17.806490 -2062 0.058835 0.030712 9.226087 12.787533 -2063 0.077837 0.060741 9.020060 17.198327 -2064 0.065745 0.031185 10.116840 13.436104 -2065 0.038987 0.030901 7.962299 8.435863 -2066 0.077635 0.051373 6.126375 6.769318 -2067 0.238623 0.079446 10.600584 15.394920 -2068 0.171992 0.068052 8.789976 10.566228 -2069 0.079044 0.027354 5.878017 11.515195 -2070 0.056824 0.034055 8.509310 13.545152 -2071 0.073785 0.054988 10.758455 12.025282 -2072 0.079901 0.053995 13.958059 18.565421 -2073 0.056489 0.043617 7.162990 9.120336 -2074 0.061586 0.020440 8.108745 11.640100 -2075 0.065734 0.027426 7.952363 13.676078 -2076 0.053412 0.026314 9.668055 12.133544 -2077 0.085195 0.057165 13.131586 17.680508 -2078 0.065264 0.037133 6.269625 10.274415 -2079 0.056696 0.036287 7.106997 9.042425 -2080 0.092175 0.053540 16.316077 15.025755 -2081 0.090638 0.055324 7.876018 10.855370 -2082 0.132581 0.068696 10.446447 10.529915 -2083 0.272288 0.068895 10.874365 13.247194 -2084 0.059045 0.029090 11.413871 12.718385 -2085 0.081691 0.045338 10.949594 11.451720 -2086 0.078955 0.036918 7.720763 12.943397 -2087 0.089807 0.038577 11.368923 14.328191 -2088 0.074522 0.037426 9.182943 11.875561 -2089 0.081184 0.058427 9.950565 11.189232 -2090 0.087994 0.052409 6.101434 8.556679 -2091 0.079859 0.023855 8.354932 7.384741 -2092 0.283542 0.084156 11.074186 12.277139 -2093 0.279564 0.065274 12.503179 17.893242 -2094 0.054091 0.027143 11.529798 15.691794 -2095 0.206892 0.098988 11.842564 17.208141 -2096 0.052124 0.056943 7.974337 11.830272 -2097 0.059554 0.039853 9.355617 9.105672 -2098 0.081090 0.032403 9.887942 17.191380 -2099 0.093735 0.026175 8.468284 9.521508 -2100 0.066907 0.038570 18.531343 16.206430 -2101 0.048266 0.034795 5.656725 7.252345 -2102 0.050745 0.029074 17.996689 15.085903 -2103 0.062738 0.028303 7.397168 9.994685 -2104 0.049980 0.027456 7.984027 10.773683 -2105 0.066372 0.044255 10.613251 10.140985 -2106 0.041491 0.022649 10.186596 13.145328 -2107 0.059606 0.054245 7.167624 11.705224 -2108 0.073295 0.047953 11.282753 17.040087 -2109 0.063494 0.030300 7.887394 14.631183 -2110 0.281821 0.075468 7.129740 6.304762 -2111 0.076807 0.060748 9.394034 10.406803 -2112 0.063453 0.036351 9.832183 13.345643 -2113 0.056336 0.039015 10.491639 11.669457 -2114 0.088845 0.044144 8.141521 16.010722 -2115 0.060100 0.028993 6.774822 10.375748 -2116 0.074272 0.037795 8.768881 15.033497 -2117 0.090408 0.045700 14.342209 11.752786 -2118 0.064968 0.029623 5.621081 9.321468 -2119 0.147353 0.046716 12.695843 13.331123 -2120 0.069886 0.042250 11.579567 11.720411 -2121 0.072413 0.052694 10.651687 14.401859 -2122 0.186375 0.051580 11.777003 13.711439 -2123 0.073544 0.069737 9.402440 11.197265 -2124 0.053138 0.025370 7.996994 12.976391 -2125 0.060619 0.054348 10.071156 15.271845 -2126 0.079355 0.034015 8.986765 11.834390 -2127 0.051864 0.031220 6.532127 8.211325 -2128 0.085211 0.064541 10.995123 13.539516 -2129 0.135765 0.044905 12.994193 18.158246 -2130 0.064648 0.047959 7.213945 10.705481 -2131 0.111565 0.099860 13.616070 21.907774 -2132 0.088839 0.039496 8.412122 19.405600 -2133 0.057946 0.034514 9.745309 9.615790 -2134 0.218724 0.089773 9.374448 11.337989 -2135 0.114737 0.078198 15.135467 14.723334 -2136 0.297399 0.169141 8.322632 13.381877 -2137 0.076642 0.050476 12.546418 16.130398 -2138 0.064114 0.067594 18.887879 14.232265 -2139 0.087974 0.063381 14.114248 16.437322 -2140 0.046789 0.027888 9.591973 11.158540 -2141 0.098715 0.077669 13.537365 14.389488 -2142 0.053790 0.031924 12.532051 13.390234 -2143 0.096109 0.084171 12.226956 13.887272 -2144 0.065675 0.039481 10.171858 11.808767 -2145 0.118321 0.070994 12.453756 20.054205 -2146 0.069337 0.047305 13.616030 11.326168 -2147 0.043127 0.019311 10.003885 13.505339 -2148 0.068446 0.045745 9.771799 11.701219 -2149 0.085208 0.062695 13.007281 15.035065 -2150 0.081387 0.045609 9.002509 8.294370 -2151 0.079884 0.037623 8.957948 12.102942 -2152 0.117291 0.169259 8.497340 20.448503 -2153 0.074957 0.075960 15.622704 15.340271 -2154 0.065424 0.036287 6.607332 8.506069 -2155 0.068233 0.039856 9.730033 14.762910 -2156 0.068422 0.053973 8.973373 12.861317 -2157 0.099152 0.048722 13.175667 15.404189 -2158 0.047176 0.022156 6.484857 9.311759 -2159 0.090744 0.056030 10.045311 10.279015 -2160 0.061268 0.028916 12.395524 15.862561 -2161 0.099534 0.087259 10.949945 15.192654 -2162 0.097515 0.059070 9.108328 8.561724 -2163 0.080739 0.028228 8.776793 11.347264 -2164 0.063124 0.053927 12.000969 11.355149 -2165 0.063824 0.045075 8.872192 10.926466 -2166 0.083174 0.060134 8.429260 10.881418 -2167 0.061847 0.037937 11.078950 14.868273 -2168 0.052771 0.018474 9.467988 10.775404 -2169 0.264106 0.056269 6.007965 14.825445 -2170 0.212720 0.058725 7.071633 14.272994 -2171 0.072245 0.064686 9.094874 11.474573 -2172 0.084546 0.069952 9.280741 9.896787 -2173 0.153927 0.067287 13.362533 15.719127 -2174 0.080502 0.054626 10.161119 13.196234 -2175 0.067512 0.059388 10.596903 11.010468 -2176 0.071837 0.046167 9.197668 11.032367 -2177 0.090609 0.042215 7.879831 9.943515 -2178 0.183752 0.058356 6.706146 9.342825 -2179 0.090901 0.035410 9.086528 10.211756 -2180 0.047647 0.064987 8.984808 8.668940 -2181 0.069668 0.056909 11.498687 14.086257 -2182 0.086639 0.051717 13.321873 16.135576 -2183 0.037913 0.030390 8.148759 12.136241 -2184 0.095645 0.053318 8.991377 13.125508 -2185 0.093567 0.049505 8.743286 8.978123 -2186 0.045273 0.048054 10.239824 11.501462 -2187 0.059882 0.031351 10.308830 11.130939 -2188 0.041790 0.019576 6.683536 6.052962 -2189 0.079243 0.045204 12.931687 10.012520 -2190 0.096982 0.068958 7.233447 12.780496 -2191 0.056114 0.029359 12.588815 11.165424 -2192 0.093438 0.070799 8.566743 10.232979 -2193 0.082097 0.066769 9.305227 12.045207 -2194 0.179509 0.066118 14.585712 18.579357 -2195 0.138047 0.069220 11.441610 18.116990 -2196 0.068553 0.084189 13.119460 16.814848 -2197 0.229811 0.095548 10.346169 19.694813 -2198 0.041139 0.033063 8.922189 12.499936 -2199 0.081157 0.060667 10.001329 10.290834 -2200 0.076790 0.054244 12.531582 13.452959 -2201 0.063355 0.044760 9.379242 17.020723 -2202 0.048307 0.025464 11.640760 11.274760 -2203 0.063546 0.042944 11.501873 13.348231 -2204 0.051111 0.023500 12.042420 10.780215 -2205 0.178476 0.038260 10.448619 11.338382 -2206 0.219760 0.056397 10.965551 12.390768 -2207 0.071330 0.035133 7.110387 13.916285 -2208 0.057770 0.039104 11.808100 16.459843 -2209 0.067066 0.034760 7.503736 11.739810 -2210 0.092440 0.069926 10.683343 10.880896 -2211 0.195247 0.220536 13.222461 19.471626 -2212 0.072047 0.081119 5.696748 9.942743 -2213 0.141391 0.040447 14.350119 19.327801 -2214 0.205813 0.061584 11.434188 17.112948 -2215 0.083804 0.049711 9.409931 14.805711 -2216 0.070077 0.044169 7.955918 8.884031 -2217 0.069160 0.024599 11.037435 13.514172 -2218 0.061025 0.023713 6.431057 6.781891 -2219 0.070329 0.044084 13.997487 19.531977 -2220 0.071285 0.038781 11.252849 10.956256 -2221 0.057307 0.038933 6.161745 11.083907 -2222 0.283883 0.245134 15.717923 23.016194 -2223 0.066085 0.053281 10.688015 9.784519 -2224 0.132483 0.043400 11.946592 12.926127 -2225 0.058167 0.039103 9.996069 11.217220 -2226 0.033641 0.016437 6.787354 7.482716 -2227 0.080910 0.037295 8.787574 10.741412 -2228 0.055554 0.061991 9.613615 7.900634 -2229 0.054136 0.029879 7.328758 8.890353 -2230 0.083244 0.060117 11.806175 12.030639 -2231 0.200130 0.137120 13.121690 12.446616 -2232 0.077297 0.037489 9.464370 12.305269 -2233 0.049986 0.041688 6.917062 8.501647 -2234 0.076113 0.047464 9.935249 11.682460 -2235 0.093128 0.036117 15.460609 16.984396 -2236 0.071106 0.043375 10.843450 14.241239 -2237 0.064511 0.053044 18.719615 21.283166 -2238 0.118134 0.087242 10.781091 10.842388 -2239 0.223706 0.079140 10.129829 13.632274 -2240 0.069986 0.022984 7.578924 15.780660 -2241 0.283387 0.041618 11.303805 19.077488 -2242 0.079908 0.049613 11.250269 18.161535 -2243 0.081452 0.027740 6.482713 7.209208 -2244 0.085357 0.049473 6.759195 9.077504 -2245 0.063151 0.058371 7.343648 9.356961 -2246 0.126633 0.234417 17.916475 14.347284 -2247 0.077881 0.098709 12.161284 16.404519 -2248 0.086086 0.079126 11.562354 12.750950 -2249 0.229140 0.060916 8.607225 12.716889 -2250 0.043552 0.019023 5.671156 8.321815 -2251 0.056184 0.029377 10.942775 14.262415 -2252 0.089267 0.075251 9.960151 18.903598 -2253 0.053409 0.028725 10.274244 12.166047 -2254 0.084534 0.077165 7.867859 11.090792 -2255 0.063947 0.048836 12.601434 14.164124 -2256 0.217338 0.164638 13.607393 11.387518 -2257 0.063551 0.029634 7.599601 13.452563 -2258 0.136303 0.152657 8.805326 11.166924 -2259 0.055600 0.047099 16.082037 16.102635 -2260 0.069290 0.039416 6.959102 7.309131 -2261 0.067139 0.027982 9.278467 11.214548 -2262 0.059901 0.027590 8.524364 8.060132 -2263 0.070729 0.048854 7.133218 12.086431 -2264 0.082434 0.026582 8.769699 11.501249 -2265 0.086910 0.038920 10.941508 11.946752 -2266 0.273144 0.058307 12.246943 10.927200 -2267 0.064721 0.038121 10.291456 17.073735 -2268 0.070852 0.040830 8.681878 10.655228 -2269 0.061246 0.036065 11.754908 9.203782 -2270 0.253979 0.055933 15.963083 20.130802 -2271 0.055947 0.024674 6.276993 6.640484 -2272 0.083548 0.050384 8.384173 12.823415 -2273 0.069153 0.054853 6.743570 10.607658 -2274 0.179483 0.035989 12.890585 18.292118 -2275 0.071789 0.048320 12.258021 14.903420 -2276 0.119169 0.094476 20.300975 20.674579 -2277 0.086757 0.034284 8.364810 11.787694 -2278 0.099031 0.085104 8.355601 14.864644 -2279 0.078650 0.042217 11.485556 10.806659 -2280 0.086625 0.049239 6.633919 6.944338 -2281 0.091540 0.046761 10.817494 11.821439 -2282 0.057055 0.036564 5.985919 7.222088 -2283 0.051146 0.031482 7.952207 9.238115 -2284 0.056565 0.041246 12.380173 13.194852 -2285 0.210742 0.049694 8.196709 13.211758 -2286 0.058305 0.046246 7.267810 14.308745 -2287 0.065605 0.066800 10.667906 13.353441 -2288 0.042988 0.023028 6.401252 9.385970 -2289 0.055805 0.046312 9.275703 13.562365 -2290 0.075813 0.028815 7.378918 12.870050 -2291 0.082608 0.048809 8.664943 16.815207 -2292 0.090093 0.058331 15.394264 15.493221 -2293 0.076235 0.047965 8.666196 11.605747 -2294 0.069602 0.029293 8.136187 8.448741 -2295 0.047242 0.027361 9.552131 10.740357 -2296 0.071894 0.043658 10.330597 12.579883 -2297 0.066061 0.033823 9.348349 8.718108 -2298 0.059819 0.031886 5.795441 7.232159 -2299 0.205479 0.073744 12.586366 13.670902 -2300 0.060078 0.036858 13.722464 15.094118 -2301 0.064754 0.025398 8.981466 12.139062 -2302 0.089311 0.037314 11.341883 10.317042 -2303 0.068709 0.050720 8.051444 10.655394 -2304 0.096821 0.070951 8.504296 14.307929 -2305 0.089173 0.043956 8.691650 13.309132 -2306 0.085889 0.097532 7.661621 11.443475 -2307 0.075737 0.042229 8.309248 17.062543 -2308 0.089205 0.042347 9.508161 13.351387 -2309 0.074470 0.033568 6.934129 11.983962 -2310 0.072886 0.029510 7.897825 10.191079 -2311 0.220911 0.075926 9.165795 11.939872 -2312 0.049244 0.040071 10.263438 12.437468 -2313 0.086712 0.041541 11.237046 10.993401 -2314 0.097909 0.084690 8.569787 10.698182 -2315 0.036339 0.027999 7.341379 8.092482 -2316 0.077261 0.039208 11.207006 15.058326 -2317 0.084092 0.043868 9.454874 11.560089 -2318 0.054891 0.036379 6.789899 12.574108 -2319 0.050735 0.041868 9.867656 15.563944 -2320 0.254428 0.032163 10.027081 15.831937 -2321 0.066966 0.031627 10.665053 15.765651 -2322 0.087833 0.053631 9.631997 11.095375 -2323 0.060794 0.037619 6.659818 6.933196 -2324 0.055488 0.042357 10.219921 11.899400 -2325 0.066556 0.026855 8.021112 10.512408 -2326 0.062294 0.053249 12.893934 14.481358 -2327 0.040347 0.024116 11.163813 16.499849 -2328 0.079641 0.034210 9.835064 9.762232 -2329 0.051301 0.027483 10.645363 10.498607 -2330 0.078324 0.058768 9.684058 11.570946 -2331 0.057721 0.028276 9.398250 8.823634 -2332 0.079121 0.044466 14.745955 15.395011 -2333 0.047568 0.042732 8.484097 16.724580 -2334 0.053945 0.058893 11.836120 14.601158 -2335 0.085097 0.052680 7.590894 12.915634 -2336 0.056629 0.033601 9.299428 15.962819 -2337 0.269021 0.037865 8.572714 12.285185 -2338 0.065852 0.024960 5.074112 7.317166 -2339 0.064694 0.051955 7.893525 9.068019 -2340 0.080237 0.081530 11.358559 15.802697 -2341 0.058619 0.037795 12.506900 14.428938 -2342 0.084732 0.055558 12.040722 19.935319 -2343 0.093748 0.062502 12.022952 16.965106 -2344 0.047845 0.022093 9.397667 12.221587 -2345 0.070016 0.039143 9.307925 9.267993 -2346 0.075307 0.029584 10.286753 15.726827 -2347 0.080647 0.066899 8.385325 14.500584 -2348 0.053766 0.020804 8.801934 10.445326 -2349 0.097958 0.072078 16.158909 14.948795 -2350 0.051440 0.038180 7.109673 8.821052 -2351 0.069380 0.059528 10.951857 10.292756 -2352 0.070628 0.045659 12.657432 11.475383 -2353 0.263050 0.081703 12.652115 17.656005 -2354 0.073064 0.040093 10.313063 11.921409 -2355 0.092537 0.065136 13.313101 10.343069 -2356 0.068797 0.031540 11.513525 10.208920 -2357 0.145322 0.099717 11.254888 10.726947 -2358 0.073321 0.039140 14.097224 20.808480 -2359 0.290508 0.077849 7.763251 12.761860 -2360 0.089629 0.048599 13.991500 14.747320 -2361 0.068765 0.037458 11.017086 10.930700 -2362 0.241428 0.056718 8.368739 14.572670 -2363 0.086572 0.041743 8.189885 13.639576 -2364 0.034033 0.029535 7.376101 11.012117 -2365 0.049792 0.026417 11.743323 13.150536 -2366 0.082967 0.055677 12.514162 17.532507 -2367 0.072632 0.055970 12.291794 14.711737 -2368 0.043351 0.029638 8.482524 15.883766 -2369 0.139809 0.069940 12.955828 16.804578 -2370 0.053890 0.048207 9.420558 10.916216 -2371 0.085706 0.081708 11.762531 16.383239 -2372 0.077750 0.060396 6.913850 9.419122 -2373 0.062270 0.033056 8.890323 10.657700 -2374 0.080596 0.034463 9.871683 10.209528 -2375 0.077507 0.048641 7.027935 7.927850 -2376 0.075439 0.041327 12.579825 15.674957 -2377 0.066110 0.037527 7.182091 10.181888 -2378 0.037793 0.023517 7.822245 11.353455 -2379 0.290136 0.096693 9.865676 15.082091 -2380 0.074875 0.063903 10.193434 13.751201 -2381 0.127096 0.216250 13.870409 17.400872 -2382 0.186186 0.061979 8.637556 12.388604 -2383 0.091647 0.046028 12.170840 17.995710 -2384 0.074777 0.059316 6.867926 10.774237 -2385 0.072952 0.053173 13.631556 10.618178 -2386 0.059771 0.025340 9.317744 10.768526 -2387 0.064906 0.063575 9.635754 10.178147 -2388 0.094490 0.029170 9.421875 12.856065 -2389 0.127096 0.246278 12.104566 10.723022 -2390 0.090664 0.053427 11.508711 14.608195 -2391 0.087301 0.073134 11.845439 13.297712 -2392 0.250543 0.055319 8.204764 10.142984 -2393 0.085122 0.048820 11.274520 18.859094 -2394 0.043196 0.049659 7.329355 8.418345 -2395 0.079256 0.039187 9.584797 13.151352 -2396 0.071215 0.043352 11.147766 13.274836 -2397 0.085372 0.027228 9.937144 12.234504 -2398 0.052584 0.025219 5.523612 7.488351 -2399 0.087604 0.065433 10.052137 15.299902 -2400 0.077004 0.040905 8.668692 11.771918 -2401 0.053312 0.033121 12.101600 13.108584 -2402 0.074702 0.039201 12.103805 11.521185 -2403 0.088521 0.039816 10.572813 10.376318 -2404 0.053256 0.039815 7.301907 11.212923 -2405 0.074242 0.051962 8.339515 17.150341 -2406 0.074946 0.071515 9.612002 11.373753 -2407 0.082084 0.043091 10.118122 10.125312 -2408 0.041257 0.023609 7.210713 11.711168 -2409 0.099351 0.055372 10.934818 15.891195 -2410 0.211516 0.076554 13.147286 16.102951 -2411 0.081980 0.026553 15.308512 15.038291 -2412 0.071805 0.052336 12.636898 12.450971 -2413 0.055543 0.022372 8.220506 9.411362 -2414 0.047438 0.019871 6.360360 9.013592 -2415 0.040613 0.035615 8.091159 8.792612 -2416 0.052141 0.033836 8.023285 11.792930 -2417 0.061071 0.032275 8.770431 9.246690 -2418 0.079883 0.042347 6.665638 10.650567 -2419 0.082651 0.186688 9.634851 15.342434 -2420 0.092404 0.046791 9.822637 11.319940 -2421 0.117923 0.080399 12.412108 14.111642 -2422 0.127146 0.055238 9.245315 14.113782 -2423 0.047930 0.021097 8.207505 8.775068 -2424 0.091836 0.069307 10.522495 17.639681 -2425 0.057238 0.030013 7.503763 14.555353 -2426 0.049370 0.031740 8.334697 11.874016 -2427 0.049972 0.032953 9.192294 13.601442 -2428 0.165906 0.094474 12.168274 11.785478 -2429 0.092124 0.061535 13.046360 18.192099 -2430 0.126515 0.065255 10.575334 18.383920 -2431 0.265178 0.061560 12.061980 19.871792 -2432 0.069260 0.059740 10.327388 13.908488 -2433 0.062884 0.031465 9.561468 8.883292 -2434 0.096138 0.046628 10.385642 12.786320 -2435 0.077645 0.033963 14.519777 11.455359 -2436 0.089043 0.050069 9.594431 11.292746 -2437 0.124392 0.053881 14.175254 18.725513 -2438 0.052534 0.028647 9.049120 12.238272 -2439 0.060034 0.039040 9.536535 10.032398 -2440 0.086676 0.043499 13.828845 12.730135 -2441 0.254351 0.044584 7.875629 11.909994 -2442 0.063216 0.039604 9.117276 14.467631 -2443 0.059859 0.035884 10.306146 12.373974 -2444 0.083685 0.056945 6.527666 10.873337 -2445 0.055017 0.029410 7.671672 10.258123 -2446 0.086388 0.038141 7.527155 11.017384 -2447 0.071828 0.045350 8.940071 11.901395 -2448 0.077958 0.054053 12.710630 11.843870 -2449 0.061416 0.043980 10.492919 13.236896 -2450 0.066910 0.032807 11.220749 15.367727 -2451 0.080588 0.079051 10.604322 17.326948 -2452 0.048592 0.033981 11.175302 15.817574 -2453 0.089414 0.064280 6.044560 11.446813 -2454 0.052952 0.060697 11.557389 11.019214 -2455 0.079233 0.052198 12.881573 11.593281 -2456 0.297862 0.078562 8.848014 15.658476 -2457 0.071840 0.057498 16.098191 16.714519 -2458 0.184449 0.063126 10.646940 10.771629 -2459 0.275445 0.142117 18.101735 19.522706 -2460 0.085503 0.059616 12.990407 27.973981 -2461 0.075456 0.068745 11.601028 17.553231 -2462 0.187967 0.067302 8.643468 13.753447 -2463 0.080655 0.057233 8.158282 12.536552 -2464 0.035804 0.048261 6.867250 7.527840 -2465 0.050670 0.037167 8.691071 10.812624 -2466 0.059311 0.031606 11.639668 14.382595 -2467 0.070472 0.041042 12.424351 13.806828 -2468 0.094481 0.073239 8.625618 12.617319 -2469 0.085603 0.056737 11.552661 12.919405 -2470 0.254533 0.061150 12.563798 17.778248 -2471 0.091258 0.053785 9.817058 14.618958 -2472 0.071622 0.043069 6.597002 9.991530 -2473 0.051845 0.037950 7.598057 9.703370 -2474 0.137773 0.079062 6.580852 8.040145 -2475 0.079128 0.060553 8.576756 13.732693 -2476 0.068458 0.047321 8.421578 18.636028 -2477 0.048210 0.032299 9.820145 10.995794 -2478 0.043078 0.047312 8.457224 12.010848 -2479 0.053993 0.036409 10.159727 12.978775 -2480 0.060567 0.043033 10.565917 13.357769 -2481 0.043065 0.014402 8.329608 10.246086 -2482 0.093146 0.168868 9.337316 13.541687 -2483 0.092003 0.052456 11.903757 15.430857 -2484 0.088600 0.060452 10.106293 9.415848 -2485 0.055676 0.037837 8.458500 11.364024 -2486 0.082790 0.046500 9.085105 10.517447 -2487 0.085997 0.064940 9.797842 19.480270 -2488 0.093753 0.043678 7.300344 9.627169 -2489 0.062811 0.029711 8.842158 10.345637 -2490 0.093516 0.066382 11.854692 12.393580 -2491 0.069838 0.034928 7.897765 9.598804 -2492 0.087390 0.063593 11.225954 13.433153 -2493 0.047286 0.042127 10.894349 11.602613 -2494 0.160239 0.043509 5.806567 7.323749 -2495 0.068372 0.022309 10.111383 12.427739 -2496 0.231136 0.071970 11.197543 14.057128 -2497 0.087503 0.055208 9.195621 12.831861 -2498 0.219776 0.046194 12.628841 12.856245 -2499 0.183060 0.057964 9.327633 11.083538 -2500 0.069448 0.049247 9.190513 15.596970 -2501 0.066370 0.035347 10.509448 14.608256 -2502 0.084698 0.062426 12.970923 14.912743 -2503 0.065878 0.055173 8.819896 13.290583 -2504 0.050723 0.043226 9.171914 19.744978 -2505 0.095233 0.064912 12.713691 12.745865 -2506 0.099356 0.036227 9.336113 10.651751 -2507 0.052098 0.063113 12.658870 17.371444 -2508 0.073438 0.030068 7.283918 12.431758 -2509 0.099297 0.039827 8.227355 13.716589 -2510 0.070869 0.049412 10.446242 10.396988 -2511 0.083067 0.039866 8.270231 12.242459 -2512 0.075840 0.051935 10.849402 14.243153 -2513 0.031736 0.020374 6.643467 7.096990 -2514 0.069482 0.062062 9.571183 10.800299 -2515 0.077512 0.048839 12.104975 9.454883 -2516 0.064488 0.029029 12.329395 16.434096 -2517 0.056033 0.024767 8.035766 15.204826 -2518 0.201850 0.062013 8.561567 12.583792 -2519 0.107984 0.042416 21.187147 22.362674 -2520 0.071462 0.069003 11.222885 7.800477 -2521 0.081336 0.038413 7.115957 9.304675 -2522 0.115454 0.043060 12.812850 13.084188 -2523 0.133771 0.070063 15.253929 13.740251 -2524 0.085598 0.057994 11.111164 14.153039 -2525 0.204471 0.269828 15.748586 22.964251 -2526 0.072100 0.024341 10.488164 11.071415 -2527 0.075130 0.040560 7.303544 10.583224 -2528 0.066488 0.064674 16.558913 18.235687 -2529 0.070666 0.041051 6.552100 6.940153 -2530 0.074930 0.046339 14.132284 14.923154 -2531 0.211432 0.097234 10.656274 16.986322 -2532 0.071824 0.045806 8.636970 12.207949 -2533 0.086151 0.038599 11.592913 14.290583 -2534 0.059116 0.037504 10.428799 11.360018 -2535 0.068424 0.030598 11.289331 8.745465 -2536 0.183585 0.056814 6.662484 6.698268 -2537 0.068959 0.028944 12.576671 15.423280 -2538 0.083491 0.052137 11.098522 18.004632 -2539 0.064801 0.027594 10.654787 14.623689 -2540 0.057553 0.037206 9.330183 13.946710 -2541 0.062130 0.033434 9.497724 20.634079 -2542 0.062273 0.042728 6.350270 9.553286 -2543 0.062286 0.024321 6.919289 9.509685 -2544 0.052951 0.043961 10.019655 13.206658 -2545 0.084701 0.041935 9.679187 12.855561 -2546 0.057293 0.029502 11.813818 10.722058 -2547 0.038214 0.027727 8.620624 9.303752 -2548 0.046017 0.051442 8.550076 10.353317 -2549 0.208943 0.090000 10.879149 15.627817 -2550 0.065240 0.027954 8.714180 10.811595 -2551 0.066275 0.040535 11.496400 10.512350 -2552 0.086425 0.040244 7.507410 11.033442 -2553 0.253798 0.276289 10.847509 15.998293 -2554 0.053077 0.029304 8.809723 9.139020 -2555 0.050799 0.055958 15.778573 16.019667 -2556 0.090921 0.087636 9.456102 18.363467 -2557 0.081832 0.038838 14.914228 17.695728 -2558 0.090091 0.043623 13.063697 15.872374 -2559 0.094664 0.086554 13.232972 12.146825 -2560 0.060545 0.029445 7.701187 11.129991 -2561 0.186042 0.073391 8.124255 17.353555 -2562 0.089184 0.061665 7.116104 8.298286 -2563 0.063928 0.036582 13.197398 15.437256 -2564 0.092092 0.062111 11.635590 18.211208 -2565 0.086954 0.094906 8.838865 6.919123 -2566 0.089399 0.052912 12.498300 13.343788 -2567 0.097143 0.044038 10.763180 11.572508 -2568 0.262074 0.057936 13.108325 11.832499 -2569 0.063784 0.033336 9.384949 11.534924 -2570 0.054249 0.033101 8.188571 7.914180 -2571 0.081057 0.045411 10.616776 11.240848 -2572 0.081715 0.042856 12.015699 14.816114 -2573 0.052741 0.027738 8.968623 11.683886 -2574 0.091860 0.024696 10.109714 12.310839 -2575 0.269447 0.049490 11.838153 14.960059 -2576 0.084227 0.052249 7.087535 12.955111 -2577 0.090740 0.075295 9.812984 17.839525 -2578 0.065889 0.015423 8.274059 14.327179 -2579 0.061534 0.025570 12.402874 21.544007 -2580 0.263626 0.066433 17.545133 18.372689 -2581 0.073794 0.044322 10.614425 14.806723 -2582 0.085093 0.038171 10.845737 13.617339 -2583 0.265641 0.043015 12.557056 16.400298 -2584 0.097534 0.068213 9.763219 15.633054 -2585 0.067066 0.039506 13.518923 13.666044 -2586 0.067862 0.062024 7.817948 9.989693 -2587 0.060750 0.052176 9.124578 13.821538 -2588 0.042767 0.022070 7.809219 10.943610 -2589 0.042503 0.022317 5.589498 10.430518 -2590 0.037654 0.019692 10.825010 11.332987 -2591 0.085555 0.068138 9.587396 14.883509 -2592 0.068136 0.047241 9.264536 16.941795 -2593 0.263344 0.125524 12.712798 13.334641 -2594 0.054622 0.045725 11.293947 13.257293 -2595 0.035148 0.024964 14.523241 11.708616 -2596 0.084358 0.047865 8.269818 11.975206 -2597 0.061698 0.032204 11.793065 22.273330 -2598 0.094673 0.058464 11.493806 12.298594 -2599 0.074665 0.049302 9.720935 14.880862 -2600 0.044814 0.043695 5.847999 11.386269 -2601 0.097272 0.053643 7.241941 16.637624 -2602 0.056367 0.066221 10.882831 11.983271 -2603 0.069691 0.040123 7.380838 8.701413 -2604 0.072305 0.037978 15.470762 19.597576 -2605 0.051668 0.038552 10.103199 9.573145 -2606 0.065680 0.038648 12.127839 14.625478 -2607 0.081318 0.048408 10.407993 16.105182 -2608 0.057124 0.044954 8.662102 11.193935 -2609 0.085593 0.071802 13.422248 18.938630 -2610 0.052757 0.034318 12.028940 9.942090 -2611 0.080228 0.055445 10.132001 10.375214 -2612 0.068649 0.042205 6.856849 10.674161 -2613 0.065000 0.047900 10.938286 13.660506 -2614 0.086855 0.075729 10.190931 14.140355 -2615 0.076376 0.024823 7.672715 11.669459 -2616 0.082488 0.087386 11.980770 11.077463 -2617 0.098490 0.034112 16.048138 13.322599 -2618 0.052216 0.024558 6.622009 10.854813 -2619 0.083065 0.026768 9.576903 11.773305 -2620 0.045071 0.033853 12.541235 12.873783 -2621 0.102934 0.066241 10.799582 16.406434 -2622 0.098099 0.068778 11.840731 13.175339 -2623 0.057103 0.030128 11.347316 13.792387 -2624 0.238569 0.056544 13.555727 13.500779 -2625 0.082708 0.049699 11.624174 19.644146 -2626 0.145768 0.069577 18.124283 15.727001 -2627 0.243732 0.072422 15.982628 22.697993 -2628 0.071762 0.046310 11.410088 19.077348 -2629 0.055024 0.021166 8.836797 8.977779 -2630 0.041419 0.028808 8.219944 9.500832 -2631 0.063631 0.029449 9.447115 13.606125 -2632 0.056075 0.042309 10.760285 16.282130 -2633 0.026659 0.011378 5.825826 9.997257 -2634 0.248241 0.064461 7.327204 9.753382 -2635 0.066954 0.022315 9.425587 16.135100 -2636 0.098552 0.053538 12.916770 14.711089 -2637 0.073096 0.047830 10.866074 15.819875 -2638 0.052402 0.021408 11.016797 11.074555 -2639 0.047891 0.048563 8.523850 15.679271 -2640 0.083516 0.058711 11.514540 13.812630 -2641 0.073845 0.044439 8.304691 12.696881 -2642 0.082306 0.048164 9.268885 11.987196 -2643 0.165738 0.060420 17.018689 16.019113 -2644 0.066351 0.048457 11.442568 11.535304 -2645 0.244229 0.071033 9.833568 15.730679 -2646 0.033512 0.012916 6.529460 8.892041 -2647 0.047648 0.031261 12.774778 15.805260 -2648 0.262055 0.077231 11.602073 13.587717 -2649 0.062815 0.037634 10.684323 15.234401 -2650 0.096545 0.063074 7.529323 10.252970 -2651 0.076486 0.040411 7.346871 8.430388 -2652 0.230399 0.054805 8.823003 14.166317 -2653 0.070139 0.039105 8.905817 15.969188 -2654 0.060391 0.052068 7.803714 10.020399 -2655 0.133112 0.115229 12.753016 12.473838 -2656 0.087921 0.043222 10.936739 12.851142 -2657 0.067680 0.047769 6.836374 12.895336 -2658 0.051262 0.032626 9.284366 14.880366 -2659 0.043659 0.031079 6.202282 10.432560 -2660 0.062302 0.041552 10.591905 14.386348 -2661 0.081308 0.033024 7.273914 9.338816 -2662 0.084711 0.079745 11.047837 13.223642 -2663 0.280644 0.267775 14.925605 16.117022 -2664 0.064738 0.030641 9.408640 11.866661 -2665 0.169211 0.083544 17.748592 23.766547 -2666 0.063993 0.044285 11.441994 15.656344 -2667 0.057473 0.032104 8.407260 10.782914 -2668 0.085301 0.074802 9.449405 11.723760 -2669 0.045528 0.036263 5.992378 13.289101 -2670 0.062400 0.026021 10.688540 12.848833 -2671 0.084707 0.036124 9.794070 14.897696 -2672 0.145694 0.060120 11.625532 19.383607 -2673 0.071251 0.044298 7.777294 9.451819 -2674 0.071895 0.035822 9.794417 12.870093 -2675 0.049081 0.041119 10.288344 11.797689 -2676 0.061898 0.038994 10.519712 16.840383 -2677 0.280007 0.040883 13.947383 11.822859 -2678 0.228926 0.065071 11.087559 15.249450 -2679 0.040207 0.012772 7.001454 6.953884 -2680 0.073970 0.050985 12.313535 12.729548 -2681 0.063513 0.031129 8.363375 11.140854 -2682 0.269916 0.090994 12.193390 15.368056 -2683 0.140914 0.056042 11.544766 13.497481 -2684 0.063713 0.045875 6.448843 9.897894 -2685 0.074715 0.064798 9.218086 12.388151 -2686 0.061722 0.052649 9.885255 9.872860 -2687 0.070958 0.089695 10.857691 14.478459 -2688 0.073850 0.033341 7.113979 13.607371 -2689 0.071611 0.061199 6.932435 10.392324 -2690 0.086128 0.035882 13.348165 13.335153 -2691 0.047732 0.018220 8.042377 9.383704 -2692 0.175124 0.059063 12.826107 12.237685 -2693 0.062286 0.036997 9.031531 8.506980 -2694 0.064015 0.026209 9.452152 14.272413 -2695 0.184093 0.052268 8.930428 10.130092 -2696 0.046156 0.024701 8.266344 11.584081 -2697 0.049887 0.019276 6.150145 9.792196 -2698 0.083913 0.056926 7.649799 11.587766 -2699 0.088886 0.075704 14.545312 20.594978 -2700 0.067440 0.028658 7.852864 9.224447 -2701 0.099730 0.060283 13.051199 12.650427 -2702 0.077745 0.085476 15.141690 16.010144 -2703 0.070241 0.060720 13.397757 13.026472 -2704 0.075452 0.059570 8.290849 12.605077 -2705 0.058274 0.035301 9.071575 9.492495 -2706 0.078738 0.043691 10.484322 12.840621 -2707 0.079149 0.047818 9.293471 8.321734 -2708 0.273865 0.089123 16.565888 17.747023 -2709 0.088051 0.062581 7.962172 9.897424 -2710 0.069168 0.038384 14.614885 18.216004 -2711 0.045274 0.027399 7.186787 12.202533 -2712 0.080540 0.049829 11.225318 18.479842 -2713 0.049197 0.028887 8.420300 14.324365 -2714 0.066723 0.047714 13.228198 20.403093 -2715 0.086976 0.079026 11.813113 15.156500 -2716 0.059858 0.045577 7.258023 10.717077 -2717 0.079955 0.038426 13.183906 16.205830 -2718 0.059626 0.027683 9.820586 13.388136 -2719 0.056702 0.025239 10.989746 13.082703 -2720 0.088264 0.029731 11.664906 14.787661 -2721 0.069128 0.033946 12.337139 12.286028 -2722 0.089309 0.037197 7.932351 14.250008 -2723 0.094989 0.079913 10.053215 11.789605 -2724 0.074448 0.028586 7.988216 9.837348 -2725 0.079694 0.038485 10.623792 13.597636 -2726 0.265576 0.046483 12.024975 11.036267 -2727 0.067125 0.043399 10.656937 12.841627 -2728 0.081611 0.068081 12.410758 9.856176 -2729 0.076470 0.060039 11.957263 15.735833 -2730 0.071146 0.063539 8.063895 14.068471 -2731 0.071557 0.036388 7.322882 11.796800 -2732 0.180752 0.054421 12.450766 22.547094 -2733 0.064263 0.032769 7.966345 9.664233 -2734 0.082333 0.059910 11.251533 15.635000 -2735 0.071457 0.046842 10.162461 9.423437 -2736 0.255704 0.056173 10.140343 18.104642 -2737 0.090086 0.039120 9.331855 14.043643 -2738 0.087499 0.045152 10.002077 15.963411 -2739 0.054776 0.030911 12.407856 13.441910 -2740 0.089184 0.051903 14.208100 16.625116 -2741 0.062817 0.041517 7.621238 10.921024 -2742 0.087547 0.079962 11.668107 12.066807 -2743 0.074990 0.048386 10.182331 10.209160 -2744 0.050836 0.035228 6.647875 8.963750 -2745 0.061012 0.021640 10.092907 16.046378 -2746 0.078193 0.031784 11.799980 10.781860 -2747 0.058261 0.042678 10.310531 11.461756 -2748 0.070346 0.040492 11.401066 11.917273 -2749 0.040076 0.012609 8.867666 9.967705 -2750 0.064870 0.047052 8.541334 14.101992 -2751 0.095267 0.039705 13.099892 19.817635 -2752 0.058083 0.031226 6.237361 7.429323 -2753 0.087701 0.036676 7.875632 7.952032 -2754 0.086598 0.054270 7.172301 11.244181 -2755 0.064069 0.067477 9.596574 13.061542 -2756 0.054699 0.046231 10.780861 9.875638 -2757 0.084169 0.056498 14.303592 22.376021 -2758 0.058655 0.035954 8.179634 12.157852 -2759 0.077685 0.032029 7.294831 11.860823 -2760 0.065441 0.031380 9.756147 14.781688 -2761 0.057846 0.020861 9.801317 14.964332 -2762 0.044776 0.040003 9.299252 11.150310 -2763 0.085595 0.085521 12.938510 11.130254 -2764 0.052661 0.034311 10.527427 10.443399 -2765 0.035649 0.046215 8.720583 11.487121 -2766 0.061154 0.019850 8.144466 9.560282 -2767 0.079953 0.073146 12.632248 11.500464 -2768 0.064934 0.037656 12.761176 14.585635 -2769 0.081433 0.043966 13.914558 16.446432 -2770 0.055719 0.028556 9.261350 17.850157 -2771 0.061306 0.035776 8.843778 9.799548 -2772 0.230100 0.066004 12.866714 12.659671 -2773 0.245115 0.073282 13.672671 17.093592 -2774 0.076373 0.060205 7.836662 12.962137 -2775 0.255328 0.058720 12.968873 19.298959 -2776 0.078933 0.046042 14.354220 15.559995 -2777 0.056130 0.030720 6.409061 7.019929 -2778 0.076904 0.046187 11.848787 23.358660 -2779 0.075668 0.076913 7.204783 14.145295 -2780 0.085754 0.058382 11.290090 13.635500 -2781 0.082993 0.049473 13.193064 19.107475 -2782 0.065599 0.053630 10.085431 12.105617 -2783 0.042160 0.036576 7.336422 10.240873 -2784 0.073046 0.045286 7.791531 10.540041 -2785 0.285998 0.076509 11.383606 13.972273 -2786 0.096877 0.063449 12.504581 16.470930 -2787 0.088403 0.048300 6.203676 8.165745 -2788 0.174933 0.064605 7.805989 15.100487 -2789 0.074380 0.054196 12.320320 13.389322 -2790 0.276265 0.053520 9.842322 9.697016 -2791 0.068269 0.027476 10.295845 13.423945 -2792 0.099739 0.037225 6.949544 11.892780 -2793 0.049460 0.037762 9.514973 14.399207 -2794 0.055701 0.026941 7.985299 13.491729 -2795 0.074215 0.037118 13.891281 12.059162 -2796 0.058216 0.025000 7.834375 13.062803 -2797 0.086821 0.042439 9.135028 13.411883 -2798 0.075303 0.045481 7.624213 7.882510 -2799 0.088530 0.241503 9.707914 19.759313 -2800 0.095248 0.081377 8.352942 17.098848 -2801 0.030145 0.012856 7.620601 10.036444 -2802 0.058540 0.031074 8.308854 9.417405 -2803 0.255374 0.065061 9.667565 12.608377 -2804 0.053061 0.031610 8.184956 14.384276 -2805 0.077973 0.057349 8.637564 11.178087 -2806 0.090172 0.033630 10.115305 19.686879 -2807 0.055014 0.024631 10.464058 14.513646 -2808 0.081968 0.055286 7.734856 8.958392 -2809 0.050079 0.038353 8.920766 10.905392 -2810 0.050678 0.038562 8.017580 7.937677 -2811 0.290064 0.069921 9.856994 8.656369 -2812 0.139378 0.038333 7.547870 10.068062 -2813 0.081427 0.052715 9.089178 12.773731 -2814 0.048027 0.032385 8.454384 9.672905 -2815 0.070556 0.027516 12.607145 21.445514 -2816 0.090239 0.047139 10.211660 10.509147 -2817 0.065036 0.042170 8.758316 14.025247 -2818 0.074101 0.068660 12.403867 11.435865 -2819 0.143411 0.068840 14.007484 13.016960 -2820 0.083917 0.051386 7.606845 11.527753 -2821 0.058569 0.037807 10.263058 9.777352 -2822 0.210659 0.074669 11.091326 12.296391 -2823 0.063039 0.064238 14.831548 22.533080 -2824 0.054003 0.019691 6.781189 10.860168 -2825 0.055441 0.030395 9.515976 12.584635 -2826 0.055379 0.040667 14.234020 13.202800 -2827 0.070382 0.044498 8.212241 11.930012 -2828 0.059950 0.075366 7.846890 6.875582 -2829 0.046161 0.029512 8.034050 12.956276 -2830 0.092041 0.064799 13.588312 18.703236 -2831 0.095496 0.047283 8.086736 9.489547 -2832 0.055467 0.024446 11.720691 12.367342 -2833 0.087905 0.245935 8.071041 12.769752 -2834 0.063592 0.028238 8.330449 11.166737 -2835 0.153558 0.089460 18.577761 21.236919 -2836 0.029875 0.014736 11.584441 15.962539 -2837 0.096047 0.058817 9.305712 13.453709 -2838 0.083245 0.076489 10.134974 14.187240 -2839 0.081791 0.057940 17.101829 21.549839 -2840 0.077543 0.062279 14.001300 20.823108 -2841 0.251204 0.097152 13.273474 17.336659 -2842 0.062695 0.035139 11.628321 16.152570 -2843 0.082761 0.034741 9.302860 12.111083 -2844 0.073258 0.035878 6.768953 12.191367 -2845 0.084526 0.044180 11.668186 11.919460 -2846 0.072143 0.035617 9.151253 12.315693 -2847 0.087509 0.037746 9.703442 10.090246 -2848 0.074706 0.047905 9.881161 14.275342 -2849 0.079355 0.054264 17.546090 13.928819 -2850 0.043163 0.059196 7.091137 7.715311 -2851 0.090263 0.096388 14.964063 17.333566 -2852 0.048122 0.027288 7.326929 9.595741 -2853 0.070499 0.028266 10.560455 13.807025 -2854 0.039762 0.017066 6.963036 13.120805 -2855 0.206672 0.068933 7.661331 7.681474 -2856 0.076634 0.092795 10.957634 14.291610 -2857 0.085490 0.043273 15.571837 16.805339 -2858 0.070608 0.085187 9.967077 21.221576 -2859 0.054124 0.047351 8.326647 9.429741 -2860 0.076970 0.059326 11.600795 15.710598 -2861 0.076428 0.033681 7.382094 11.134211 -2862 0.085224 0.040669 11.132347 13.056125 -2863 0.265888 0.053931 9.794452 13.851226 -2864 0.256945 0.043595 8.907575 9.277012 -2865 0.088233 0.056908 8.573827 10.108335 -2866 0.066231 0.038098 8.279307 10.985549 -2867 0.077600 0.034820 14.844708 24.863394 -2868 0.059662 0.039362 7.846854 11.706619 -2869 0.060594 0.035455 7.047268 12.974057 -2870 0.072976 0.057669 13.755428 19.672339 -2871 0.194689 0.080985 11.317394 19.723999 -2872 0.061013 0.043910 8.137114 12.271224 -2873 0.071889 0.038475 10.659753 15.344794 -2874 0.053063 0.039124 6.942029 10.992944 -2875 0.088462 0.044295 6.698710 11.977855 -2876 0.077848 0.032196 13.276762 12.079014 -2877 0.092354 0.057202 9.802859 14.157883 -2878 0.066724 0.038113 6.935103 8.516411 -2879 0.058794 0.029922 15.063236 16.675362 -2880 0.052263 0.028819 9.359727 13.554249 -2881 0.093397 0.057719 11.823241 14.952715 -2882 0.080547 0.036805 7.771613 10.745310 -2883 0.044567 0.028985 10.547549 9.053202 -2884 0.048923 0.028346 10.383506 11.169134 -2885 0.059128 0.044124 9.955633 9.308829 -2886 0.056524 0.032546 6.335321 7.437995 -2887 0.061092 0.047901 10.711586 13.200392 -2888 0.084706 0.039647 7.317716 9.254043 -2889 0.161031 0.054162 10.625509 16.816735 -2890 0.074832 0.056431 10.203257 12.071721 -2891 0.070482 0.042673 9.441708 12.085405 -2892 0.079782 0.037950 6.910600 11.940000 -2893 0.059163 0.035529 9.049810 13.905743 -2894 0.119934 0.073819 10.460918 16.844515 -2895 0.070387 0.039767 8.913980 9.974860 -2896 0.096174 0.082109 5.932524 10.419761 -2897 0.083136 0.074345 11.409656 16.914823 -2898 0.094653 0.064292 10.415098 11.097992 -2899 0.080679 0.038286 7.006183 11.871217 -2900 0.045714 0.026931 12.484497 14.628517 -2901 0.091766 0.072358 10.934768 12.889906 -2902 0.071376 0.029951 9.407453 14.046179 -2903 0.149397 0.051526 11.777528 13.817532 -2904 0.050693 0.027060 7.555393 8.184418 -2905 0.057577 0.040130 9.304781 11.500417 -2906 0.056239 0.041415 9.896099 12.709792 -2907 0.078490 0.046142 7.010123 12.326406 -2908 0.059599 0.039059 8.474096 10.056246 -2909 0.093647 0.035700 8.484173 10.130253 -2910 0.059908 0.031757 8.895200 10.338740 -2911 0.096195 0.079420 13.222525 13.181672 -2912 0.257361 0.094176 11.642678 21.353850 -2913 0.086971 0.037203 13.060357 13.615530 -2914 0.079112 0.034637 12.234390 15.442757 -2915 0.065340 0.052059 8.477358 8.676650 -2916 0.045561 0.030549 7.689987 9.437073 -2917 0.275533 0.062511 14.672643 21.458501 -2918 0.038952 0.024471 9.745391 8.720536 -2919 0.065764 0.051128 8.448370 9.308308 -2920 0.032694 0.027074 7.517673 8.731477 -2921 0.071637 0.080512 10.554643 12.382465 -2922 0.063688 0.040778 8.360297 13.620407 -2923 0.063439 0.050738 17.192552 19.767785 -2924 0.067015 0.040111 10.203735 15.447338 -2925 0.036381 0.039190 11.591135 10.409248 -2926 0.167015 0.063918 10.271946 14.836396 -2927 0.082135 0.064129 8.752583 9.174936 -2928 0.069865 0.038387 10.696491 17.064047 -2929 0.237378 0.051659 9.945558 14.983909 -2930 0.031718 0.020093 6.622995 8.412409 -2931 0.087468 0.051723 12.170859 10.911541 -2932 0.078743 0.042401 7.481857 14.122235 -2933 0.087364 0.081777 11.332418 15.859886 -2934 0.090298 0.041443 6.317206 6.020184 -2935 0.044617 0.017921 11.759496 14.811681 -2936 0.091637 0.037670 14.086908 15.190390 -2937 0.090220 0.048950 12.564770 13.176478 -2938 0.044203 0.043099 6.929480 8.084917 -2939 0.064949 0.044046 12.135679 15.871824 -2940 0.063662 0.030891 9.766024 11.841834 -2941 0.072369 0.045703 10.679462 11.925648 -2942 0.096247 0.035146 10.294694 15.668597 -2943 0.064907 0.056682 17.654363 21.483719 -2944 0.075666 0.041737 7.732461 8.788562 -2945 0.257372 0.078548 9.153504 9.314763 -2946 0.080319 0.038050 8.796508 12.739088 -2947 0.093743 0.040539 13.465644 15.969709 -2948 0.096602 0.058756 6.910930 10.741333 -2949 0.057893 0.031104 7.673905 12.700844 -2950 0.083758 0.081681 7.749197 11.357739 -2951 0.096897 0.068391 11.003748 20.018322 -2952 0.093153 0.067214 11.512522 11.557575 -2953 0.062252 0.034442 10.023002 13.556174 -2954 0.058901 0.031855 14.786058 14.184127 -2955 0.107876 0.063153 14.256487 16.741170 -2956 0.117902 0.030222 9.661010 9.571170 -2957 0.075673 0.068704 10.046065 13.109200 -2958 0.061802 0.059641 7.363565 9.293288 -2959 0.235018 0.042915 11.753575 13.300040 -2960 0.066819 0.036632 8.825679 12.012739 -2961 0.052314 0.036549 7.946408 10.795470 -2962 0.099195 0.073348 12.676551 23.745527 -2963 0.086034 0.054712 11.252479 13.105568 -2964 0.099705 0.048814 11.828369 10.793910 -2965 0.072798 0.040564 13.814600 13.282607 -2966 0.071005 0.036314 7.196059 14.065906 -2967 0.064682 0.026750 8.469523 14.107624 -2968 0.055535 0.044484 11.390925 7.553475 -2969 0.077601 0.050998 11.680997 16.266161 -2970 0.054216 0.055211 7.475526 9.198889 -2971 0.092683 0.044696 12.227448 16.713000 -2972 0.092483 0.054571 7.503969 15.129169 -2973 0.073669 0.042132 12.829783 15.031825 -2974 0.075117 0.030745 8.922769 15.664363 -2975 0.050764 0.033803 5.623672 10.265364 -2976 0.266048 0.042347 11.190358 14.807401 -2977 0.058892 0.027540 10.695357 15.389769 -2978 0.054061 0.024970 9.940901 11.566900 -2979 0.072002 0.051800 8.280776 13.299333 -2980 0.064588 0.035379 7.332879 13.763850 -2981 0.089785 0.076427 13.626483 15.557930 -2982 0.094236 0.052623 11.018089 18.825171 -2983 0.089626 0.036194 6.858191 13.698008 -2984 0.060420 0.046956 10.629430 17.016206 -2985 0.235339 0.091942 14.527568 17.324669 -2986 0.099112 0.044578 11.433901 14.490008 -2987 0.297524 0.268315 11.818016 9.850302 -2988 0.094031 0.043032 11.307908 11.900224 -2989 0.080030 0.044388 10.894655 18.331387 -2990 0.071082 0.038842 9.006849 12.904505 -2991 0.214540 0.088517 9.307526 10.441380 -2992 0.080464 0.058112 9.794902 12.324440 -2993 0.094594 0.047633 8.507312 13.436518 -2994 0.051904 0.046397 10.872093 10.742320 -2995 0.058374 0.036838 10.263966 11.622090 -2996 0.095047 0.079762 9.578332 13.056631 -2997 0.214447 0.093049 8.200214 11.704604 -2998 0.050314 0.034551 6.359707 10.375795 -2999 0.077312 0.046315 13.192390 17.715242 -3000 0.066854 0.031854 7.877342 13.374423 -3001 0.064245 0.074852 7.518219 11.592150 -3002 0.068523 0.049610 10.553005 12.182633 -3003 0.045703 0.041930 7.786104 12.924633 -3004 0.049548 0.030656 7.775053 10.694973 -3005 0.060543 0.043808 8.487138 8.690545 -3006 0.080140 0.052025 15.529123 16.624437 -3007 0.085232 0.058796 10.547576 11.580244 -3008 0.085352 0.042488 8.290890 10.266209 -3009 0.078098 0.031609 17.461758 16.711343 -3010 0.045387 0.021929 6.477444 9.769902 -3011 0.132509 0.087051 9.411836 14.245056 -3012 0.084457 0.057688 12.384396 14.962598 -3013 0.069893 0.071324 14.490185 16.017325 -3014 0.165045 0.053588 11.992339 12.777963 -3015 0.029343 0.020435 5.794174 6.425171 -3016 0.073159 0.034442 6.990724 10.099613 -3017 0.067118 0.032507 15.485749 18.642724 -3018 0.077315 0.052607 9.423782 10.313621 -3019 0.075357 0.041037 14.858615 10.165934 -3020 0.080016 0.054171 8.942749 11.890910 -3021 0.075798 0.078466 13.337211 15.302728 -3022 0.071578 0.067394 7.414230 12.895942 -3023 0.077739 0.064362 18.238191 19.911517 -3024 0.048737 0.049827 8.740323 7.816789 -3025 0.068338 0.033901 11.279344 14.381975 -3026 0.085566 0.046184 7.229959 8.364117 -3027 0.070568 0.047205 8.907696 13.198015 -3028 0.088673 0.034528 10.160364 14.809725 -3029 0.082605 0.088230 9.235503 10.868647 -3030 0.067568 0.031659 9.477270 16.200041 -3031 0.086273 0.033587 11.622316 11.542702 -3032 0.052728 0.047958 9.386977 12.051460 -3033 0.068642 0.032805 10.606919 20.462357 -3034 0.150535 0.066463 12.361262 12.683498 -3035 0.074574 0.041346 8.031223 9.934869 -3036 0.062270 0.054404 8.904130 12.289553 -3037 0.089735 0.043624 9.496120 13.017696 -3038 0.077847 0.038896 7.775621 12.032280 -3039 0.039367 0.021379 6.846874 10.950991 -3040 0.047498 0.037724 8.372288 12.391643 -3041 0.072442 0.028462 11.130123 11.838407 -3042 0.065967 0.045133 7.761986 11.610292 -3043 0.065602 0.043102 10.156869 14.889700 -3044 0.072582 0.071652 10.956713 16.063066 -3045 0.060872 0.043646 9.004081 11.575696 -3046 0.051621 0.029825 11.478459 16.018487 -3047 0.068991 0.052599 8.512115 11.636427 -3048 0.054928 0.038951 9.666396 8.793752 -3049 0.053471 0.033621 8.471166 11.967741 -3050 0.098563 0.054170 9.962213 14.331130 -3051 0.084464 0.073039 9.712986 12.410806 -3052 0.204529 0.049169 11.546720 9.144616 -3053 0.238961 0.196103 9.775283 12.461401 -3054 0.104973 0.094200 10.625135 12.625739 -3055 0.056757 0.039320 9.846199 14.335345 -3056 0.064546 0.041143 8.552544 10.047037 -3057 0.056133 0.038800 13.290439 11.993742 -3058 0.066627 0.026294 8.538957 8.230306 -3059 0.079883 0.035011 7.126222 9.335679 -3060 0.097693 0.059640 11.125550 17.889274 -3061 0.099080 0.074725 7.160093 13.339895 -3062 0.094386 0.059230 10.318861 7.354479 -3063 0.050756 0.023348 9.192904 11.411425 -3064 0.077289 0.044866 7.329356 11.342047 -3065 0.195954 0.242104 14.602586 14.574484 -3066 0.068169 0.053841 9.688924 14.462545 -3067 0.060863 0.036889 10.021047 13.428118 -3068 0.057584 0.037537 9.363202 14.331172 -3069 0.062231 0.023935 9.776916 10.572653 -3070 0.087503 0.066722 8.063902 7.761351 -3071 0.059477 0.036820 8.774585 12.337476 -3072 0.095934 0.035240 10.893835 11.823947 -3073 0.094248 0.038932 8.903638 14.546222 -3074 0.075646 0.034837 7.642428 9.721544 -3075 0.247100 0.053356 9.151416 14.036890 -3076 0.083359 0.053909 7.854678 10.438555 -3077 0.298932 0.065503 8.817095 10.632350 -3078 0.073728 0.051468 9.597095 14.272633 -3079 0.051191 0.029517 10.303885 11.016230 -3080 0.072602 0.044684 9.785568 12.316765 -3081 0.050285 0.033852 8.948533 13.006143 -3082 0.073857 0.042017 10.795825 16.051014 -3083 0.077360 0.056999 15.174085 15.537248 -3084 0.069946 0.175675 12.970869 13.632087 -3085 0.079708 0.041404 14.837272 16.463250 -3086 0.081840 0.049500 10.504430 12.337731 -3087 0.273391 0.073282 9.067602 10.389105 -3088 0.069538 0.043412 8.385180 11.330886 -3089 0.230750 0.043994 11.634679 14.543571 -3090 0.061399 0.039758 13.090838 10.832620 -3091 0.061861 0.051846 13.244944 12.694119 -3092 0.169480 0.054363 12.747729 17.375268 -3093 0.261410 0.226483 19.539047 16.564931 -3094 0.065087 0.026853 7.684244 8.952457 -3095 0.077533 0.069403 15.355798 14.719717 -3096 0.094865 0.071788 10.928586 15.597708 -3097 0.071824 0.037197 7.961411 14.696028 -3098 0.066920 0.051702 11.984692 19.581002 -3099 0.053924 0.024059 7.033314 10.784033 -3100 0.143723 0.058813 10.330112 12.221172 -3101 0.076227 0.049347 11.530077 11.356690 -3102 0.047865 0.051747 8.109806 13.297586 -3103 0.085247 0.095210 12.751929 17.004467 -3104 0.093815 0.049627 7.696834 16.822021 -3105 0.219184 0.054866 13.175310 15.704540 -3106 0.040575 0.016203 9.102621 9.153972 -3107 0.097770 0.080222 13.600009 18.853640 -3108 0.075678 0.053828 11.796775 18.535899 -3109 0.041100 0.015674 8.507141 13.023260 -3110 0.076609 0.049378 8.336203 12.088103 -3111 0.063496 0.032363 8.615227 9.793118 -3112 0.101082 0.213496 17.230191 17.475344 -3113 0.184253 0.202189 13.705771 15.304048 -3114 0.063394 0.028863 10.541543 13.457883 -3115 0.159027 0.039745 8.064845 11.874315 -3116 0.193847 0.056304 12.947352 18.969053 -3117 0.070256 0.025761 6.765752 9.996476 -3118 0.274188 0.061522 6.265821 10.736189 -3119 0.089609 0.049448 10.531490 16.220341 -3120 0.240195 0.055452 18.383768 16.379853 -3121 0.047323 0.021608 12.199292 12.125290 -3122 0.071382 0.027891 5.870473 9.530499 -3123 0.064776 0.034964 8.865931 10.291720 -3124 0.042306 0.024426 9.823755 10.110670 -3125 0.099554 0.063586 13.415368 16.241729 -3126 0.083683 0.040129 8.152819 10.656841 -3127 0.063652 0.049659 11.589544 13.264647 -3128 0.063938 0.066467 6.445525 6.207235 -3129 0.053823 0.037025 8.217725 10.333081 -3130 0.053266 0.038793 10.743977 15.204592 -3131 0.059157 0.053005 9.796180 11.614183 -3132 0.058427 0.024906 8.178962 10.164572 -3133 0.055612 0.020118 7.795120 8.300944 -3134 0.064754 0.032075 7.614848 12.176552 -3135 0.067386 0.057995 7.795758 12.519265 -3136 0.231613 0.048707 8.566103 10.749566 -3137 0.042716 0.035708 7.151302 7.530334 -3138 0.034070 0.032488 8.429626 12.302040 -3139 0.066185 0.031903 8.966499 9.158979 -3140 0.253942 0.047773 8.770199 12.218496 -3141 0.095031 0.041874 13.077529 16.347319 -3142 0.056767 0.018511 9.922987 11.844273 -3143 0.079917 0.058396 9.909331 16.823090 -3144 0.071639 0.055876 14.269092 17.672339 -3145 0.060399 0.040251 7.994430 10.416441 -3146 0.282371 0.165528 14.659266 19.378607 -3147 0.068429 0.035373 10.478398 12.374133 -3148 0.074215 0.053501 12.832231 16.228839 -3149 0.063202 0.023146 8.365808 9.930370 -3150 0.043553 0.026756 5.717722 8.993187 -3151 0.083852 0.065588 13.999053 10.728418 -3152 0.265440 0.065985 10.034544 11.431981 -3153 0.047996 0.026957 10.178340 19.490662 -3154 0.042790 0.022265 6.510503 10.718172 -3155 0.235345 0.099928 14.402160 19.875100 -3156 0.068694 0.058051 13.467538 16.076995 -3157 0.066296 0.040347 5.530467 12.630469 -3158 0.089864 0.069794 8.230920 15.354884 -3159 0.165976 0.034361 8.087417 14.512063 -3160 0.072136 0.061110 9.887458 8.274095 -3161 0.044994 0.045018 8.863893 12.861085 -3162 0.087769 0.036923 8.501568 13.679524 -3163 0.092332 0.052184 7.962446 10.308789 -3164 0.060061 0.027923 10.996476 11.574519 -3165 0.061994 0.032721 10.775393 15.244413 -3166 0.072897 0.032341 9.787872 10.481732 -3167 0.150698 0.054533 9.772718 14.682459 -3168 0.098118 0.063389 12.537349 12.492842 -3169 0.063669 0.032908 7.024016 13.058892 -3170 0.066369 0.035907 8.960739 13.774197 -3171 0.043575 0.030881 13.354876 12.645284 -3172 0.151136 0.085195 15.302076 17.101958 -3173 0.071602 0.045761 15.785727 22.626322 -3174 0.086467 0.074040 9.149287 14.123682 -3175 0.090420 0.073504 11.730676 18.887684 -3176 0.087675 0.060776 9.694033 13.568998 -3177 0.040816 0.020831 11.272811 12.292887 -3178 0.052812 0.040403 9.670308 14.274443 -3179 0.068734 0.039142 9.908976 9.707582 -3180 0.067066 0.054272 5.942607 8.783685 -3181 0.078486 0.041697 7.773950 8.910122 -3182 0.156498 0.068358 8.247868 16.406000 -3183 0.073169 0.037065 12.849374 14.342620 -3184 0.063082 0.065803 16.504483 15.969876 -3185 0.096731 0.049487 11.174364 12.857854 -3186 0.186103 0.056382 12.745754 15.303376 -3187 0.076213 0.049866 9.576914 15.556991 -3188 0.101132 0.167704 10.975577 12.749591 -3189 0.152498 0.064637 9.366743 9.898616 -3190 0.059719 0.042525 12.662541 11.219667 -3191 0.054149 0.034122 7.723992 12.782284 -3192 0.064163 0.029224 8.912279 10.339538 -3193 0.061730 0.037954 5.414021 10.027825 -3194 0.065322 0.026681 11.227725 12.663200 -3195 0.074644 0.020978 7.663260 12.931945 -3196 0.053529 0.028021 10.446196 11.186170 -3197 0.097053 0.068520 8.869015 13.122304 -3198 0.083324 0.045774 6.089284 8.111083 -3199 0.069285 0.041994 10.515336 14.597862 -3200 0.090565 0.054071 9.876159 11.086522 -3201 0.079887 0.051185 12.603687 14.187225 -3202 0.072104 0.031482 11.055413 14.248408 -3203 0.061005 0.029700 7.900031 9.411813 -3204 0.299939 0.067917 10.179216 15.884571 -3205 0.238975 0.121817 11.171068 13.922628 -3206 0.239231 0.097560 13.976323 17.756615 -3207 0.088951 0.049149 7.197006 10.994124 -3208 0.058172 0.032075 11.848616 16.694301 -3209 0.149456 0.135102 14.346083 17.697341 -3210 0.062587 0.036323 8.633905 11.768937 -3211 0.056632 0.021836 4.638213 6.870807 -3212 0.047726 0.017226 5.883861 10.216882 -3213 0.074123 0.033715 15.592569 18.397040 -3214 0.075977 0.037979 9.558770 12.976660 -3215 0.049640 0.038483 11.447179 14.378512 -3216 0.256254 0.086106 9.677056 16.479875 -3217 0.053541 0.036722 9.874523 15.890140 -3218 0.049997 0.024103 5.334692 10.278574 -3219 0.061159 0.028451 8.227184 7.313574 -3220 0.095148 0.059158 13.217411 15.402163 -3221 0.069768 0.043964 12.491201 12.892082 -3222 0.070600 0.040155 14.087354 18.698447 -3223 0.069321 0.049481 7.479855 9.190795 -3224 0.092080 0.033372 12.818907 17.823778 -3225 0.084086 0.053563 9.670374 12.532986 -3226 0.057340 0.068204 9.479858 10.145868 -3227 0.289441 0.241021 8.925289 10.427569 -3228 0.233782 0.053467 16.657861 21.381656 -3229 0.108861 0.064215 6.139069 16.813959 -3230 0.066529 0.042453 7.537093 14.813844 -3231 0.081295 0.044417 13.120562 14.312451 -3232 0.075788 0.053258 10.888809 14.392551 -3233 0.052004 0.038652 7.794175 11.560015 -3234 0.051624 0.026779 10.957388 13.542269 -3235 0.074789 0.045163 9.065614 12.484018 -3236 0.059601 0.046727 10.762103 16.696092 -3237 0.067166 0.046503 8.932752 8.267139 -3238 0.071594 0.037196 7.781157 10.177220 -3239 0.065244 0.058828 8.477365 11.526684 -3240 0.092772 0.065884 7.760147 11.410183 -3241 0.055845 0.062421 13.453322 12.929098 -3242 0.079748 0.053504 11.181801 12.727973 -3243 0.091431 0.086265 13.795664 12.642230 -3244 0.118463 0.054512 9.305329 15.989556 -3245 0.056057 0.039150 10.567853 14.315800 -3246 0.101007 0.050163 8.302152 15.677367 -3247 0.055511 0.046184 10.955249 16.867467 -3248 0.083869 0.049764 7.752916 7.169305 -3249 0.067509 0.026291 7.732859 10.313194 -3250 0.066186 0.047782 7.202981 10.682529 -3251 0.057430 0.024590 9.533830 12.087501 -3252 0.046303 0.028359 8.296814 10.301420 -3253 0.067181 0.049748 11.283966 14.986353 -3254 0.095450 0.066668 11.595680 18.539815 -3255 0.084378 0.047045 8.264829 11.940014 -3256 0.143211 0.047354 7.612997 15.337737 -3257 0.059660 0.045478 8.111613 12.711100 -3258 0.060844 0.041555 10.387517 13.920876 -3259 0.072519 0.034246 9.248939 16.045695 -3260 0.067190 0.029227 8.291733 10.468013 -3261 0.069368 0.038301 8.517140 12.610529 -3262 0.060669 0.042997 8.417616 10.417465 -3263 0.119358 0.090234 8.571024 12.653432 -3264 0.077410 0.038782 8.244236 12.544493 -3265 0.096382 0.045329 8.491161 18.939355 -3266 0.075063 0.049194 8.889574 14.265632 -3267 0.072119 0.063033 10.448273 12.248885 -3268 0.088572 0.047482 7.001769 9.270530 -3269 0.058838 0.044957 13.774395 13.786903 -3270 0.055758 0.044930 15.327772 18.514185 -3271 0.065846 0.035174 7.207499 9.415130 -3272 0.055312 0.034724 8.000988 10.601551 -3273 0.058896 0.021113 15.296407 16.563793 -3274 0.043343 0.021766 9.081654 15.647327 -3275 0.067836 0.043286 7.960417 9.894546 -3276 0.089986 0.074991 10.106018 11.993080 -3277 0.070418 0.043907 11.197377 12.586387 -3278 0.226718 0.047628 12.098928 15.243810 -3279 0.121895 0.062290 8.040492 10.637457 -3280 0.210488 0.098681 14.895773 14.072701 -3281 0.099417 0.080531 12.299078 15.454846 -3282 0.050008 0.032332 8.476431 10.421737 -3283 0.085229 0.037868 10.684005 11.940541 -3284 0.090347 0.034467 10.450764 11.801336 -3285 0.202009 0.080314 11.090036 12.978263 -3286 0.047523 0.026614 8.992228 10.326193 -3287 0.050859 0.044593 8.203634 11.625705 -3288 0.068704 0.058714 13.817417 15.385089 -3289 0.046614 0.045618 8.699779 9.969650 -3290 0.085973 0.088167 7.640771 18.756045 -3291 0.061412 0.021285 6.220521 8.927463 -3292 0.077031 0.055724 11.769246 14.002706 -3293 0.049036 0.027391 8.997216 11.017752 -3294 0.060532 0.045747 12.405712 10.386890 -3295 0.278280 0.078823 10.563424 10.633698 -3296 0.063058 0.043327 8.584892 11.031942 -3297 0.249625 0.056618 15.612113 20.317621 -3298 0.086167 0.048617 9.957769 16.051473 -3299 0.073851 0.048280 12.798796 19.401799 -3300 0.050272 0.044776 9.409843 9.767943 -3301 0.245448 0.056480 7.436311 15.933495 -3302 0.051650 0.029777 8.377550 9.285414 -3303 0.086855 0.046651 9.653635 13.525198 -3304 0.047925 0.024036 7.906645 9.533837 -3305 0.057486 0.030763 13.673912 17.665921 -3306 0.095228 0.039555 8.767264 13.934706 -3307 0.106684 0.131443 14.053974 13.049205 -3308 0.155175 0.074262 16.455313 16.223519 -3309 0.087080 0.063039 10.359232 12.118931 -3310 0.084709 0.065763 9.383817 12.925536 -3311 0.063975 0.035273 10.262643 12.759044 -3312 0.063271 0.027938 10.324330 11.964598 -3313 0.052576 0.037022 8.213614 8.467029 -3314 0.224053 0.056218 13.905328 16.107142 -3315 0.076386 0.047660 7.101402 8.951763 -3316 0.070308 0.044557 11.300746 16.454274 -3317 0.072269 0.061160 13.572045 19.851549 -3318 0.108262 0.062932 12.484034 18.354730 -3319 0.051917 0.037360 8.473217 8.639002 -3320 0.096758 0.037134 13.092110 18.821849 -3321 0.043775 0.026557 11.282237 15.193823 -3322 0.044635 0.047042 6.833605 9.372237 -3323 0.075066 0.043089 12.185963 12.263869 -3324 0.057749 0.033991 11.554000 15.736754 -3325 0.056985 0.017760 8.977648 12.189190 -3326 0.055602 0.025272 8.271172 13.240682 -3327 0.155006 0.069153 13.224552 17.778837 -3328 0.086451 0.050827 9.969534 11.771240 -3329 0.074605 0.061966 11.065447 10.999115 -3330 0.066259 0.039750 13.542817 15.359298 -3331 0.157286 0.037044 6.680272 11.463393 -3332 0.051264 0.028887 9.699051 11.194983 -3333 0.215961 0.096027 13.079084 18.921000 -3334 0.090441 0.079445 8.463433 9.806437 -3335 0.060277 0.034508 9.893336 13.525221 -3336 0.056806 0.023693 11.006637 15.410011 -3337 0.068173 0.036626 5.595995 10.179254 -3338 0.067166 0.058385 13.680515 16.232013 -3339 0.085269 0.053550 9.788890 11.714373 -3340 0.063735 0.049474 8.292813 11.068502 -3341 0.082339 0.090774 7.351710 9.535974 -3342 0.072445 0.031727 8.575061 8.612220 -3343 0.084366 0.038309 12.419626 17.050557 -3344 0.039165 0.014245 12.128306 10.102974 -3345 0.079825 0.052940 9.209241 9.029004 -3346 0.080902 0.057401 8.461968 8.252009 -3347 0.058194 0.056387 10.982452 10.140314 -3348 0.268478 0.045848 10.735228 12.374475 -3349 0.085954 0.053631 14.409642 20.529594 -3350 0.068073 0.026830 12.516181 14.454102 -3351 0.047905 0.024503 7.419437 10.894685 -3352 0.089411 0.054579 12.098037 11.122758 -3353 0.083687 0.043175 10.413553 12.097960 -3354 0.064750 0.029893 8.074554 11.309860 -3355 0.049259 0.039246 10.309017 13.919163 -3356 0.062908 0.033568 12.793525 12.520811 -3357 0.060900 0.024288 6.822146 11.496667 -3358 0.081286 0.092552 10.862899 11.921617 -3359 0.081786 0.043747 7.367022 14.378638 -3360 0.099019 0.070720 11.359777 14.388223 -3361 0.054297 0.024689 5.595057 6.308379 -3362 0.092814 0.092247 11.519708 15.335224 -3363 0.038474 0.017760 8.957631 12.778455 -3364 0.065703 0.043022 11.226170 13.937905 -3365 0.057672 0.022217 13.006104 8.188625 -3366 0.060778 0.042930 7.765455 8.714294 -3367 0.085173 0.033733 9.233534 11.570591 -3368 0.060211 0.047196 10.011385 13.798304 -3369 0.097118 0.037013 11.588812 14.410819 -3370 0.055518 0.025825 6.328162 8.046459 -3371 0.078703 0.056996 13.312222 13.700698 -3372 0.076960 0.055052 5.404814 9.257969 -3373 0.063643 0.038787 8.403709 8.325358 -3374 0.086666 0.024761 13.027018 11.750275 -3375 0.064767 0.028742 7.994501 13.001178 -3376 0.089706 0.057074 9.981986 10.267491 -3377 0.053655 0.036831 14.370711 20.183696 -3378 0.097441 0.054093 14.745483 15.738683 -3379 0.051756 0.029386 9.190088 13.381662 -3380 0.078393 0.041162 9.685650 14.741859 -3381 0.059613 0.031816 7.650501 9.314512 -3382 0.253747 0.236550 10.049136 14.922486 -3383 0.063775 0.026276 9.236011 15.446501 -3384 0.076946 0.044957 10.627619 15.293324 -3385 0.070283 0.051875 9.765646 11.091187 -3386 0.094521 0.052353 11.705968 13.933152 -3387 0.071875 0.028659 7.168815 7.192093 -3388 0.099600 0.059276 8.818051 15.470598 -3389 0.063703 0.050336 6.192822 13.422292 -3390 0.037317 0.019467 14.906129 16.729869 -3391 0.046939 0.017031 7.286866 9.296069 -3392 0.049973 0.042645 12.482232 19.056626 -3393 0.093381 0.045887 11.057109 11.863187 -3394 0.048671 0.034578 7.906655 13.284186 -3395 0.063825 0.032635 10.045867 12.862379 -3396 0.074343 0.055131 12.647395 10.023387 -3397 0.071154 0.038507 7.805148 12.433526 -3398 0.090323 0.048753 5.933326 8.515924 -3399 0.063085 0.032838 7.067668 8.467323 -3400 0.151106 0.059037 16.548784 18.279107 -3401 0.068039 0.030324 11.112912 10.070927 -3402 0.065445 0.037692 10.073409 11.877653 -3403 0.060672 0.033915 9.836327 11.872420 -3404 0.165966 0.071887 6.527487 9.659608 -3405 0.051477 0.027502 8.520360 6.319611 -3406 0.079163 0.036300 7.189578 11.144041 -3407 0.055244 0.048678 10.057809 12.007772 -3408 0.067929 0.047766 7.708165 10.967869 -3409 0.092462 0.065688 10.024501 14.826863 -3410 0.052182 0.038286 11.487833 13.217019 -3411 0.041366 0.026568 7.214643 9.954576 -3412 0.031277 0.019317 7.171315 10.135076 -3413 0.067000 0.024062 5.606593 10.379917 -3414 0.202937 0.073338 8.895492 9.046975 -3415 0.064350 0.059803 6.878207 9.983028 -3416 0.093846 0.045984 12.167305 11.996743 -3417 0.091403 0.064685 7.837114 11.942420 -3418 0.047880 0.033749 8.384313 10.373271 -3419 0.077934 0.073656 9.273549 15.365006 -3420 0.051378 0.023806 8.575725 10.201744 -3421 0.222390 0.041572 8.754570 14.024703 -3422 0.057144 0.031786 18.450234 21.590149 -3423 0.081097 0.042171 13.254764 14.057981 -3424 0.217499 0.057603 9.649786 15.333314 -3425 0.050582 0.027674 10.313426 8.518483 -3426 0.042696 0.020854 12.264456 16.111476 -3427 0.067984 0.041425 10.054155 13.460639 -3428 0.191589 0.069477 9.835039 14.288691 -3429 0.076421 0.032352 9.824430 12.790883 -3430 0.083665 0.064311 15.045336 17.769640 -3431 0.130065 0.159508 9.264526 9.531687 -3432 0.053850 0.052022 9.802608 10.169530 -3433 0.227164 0.051852 10.735797 14.476610 -3434 0.193005 0.083762 14.590979 18.268048 -3435 0.039864 0.014564 5.854449 6.769747 -3436 0.063499 0.048722 6.391572 8.517040 -3437 0.064560 0.053998 8.070960 9.128277 -3438 0.035473 0.018930 8.040446 15.803908 -3439 0.070681 0.039259 9.113472 11.945368 -3440 0.047346 0.019951 6.933557 9.509652 -3441 0.051342 0.028061 7.563277 7.025188 -3442 0.054717 0.051056 10.034178 15.804464 -3443 0.046406 0.033982 5.855479 9.219077 -3444 0.074831 0.038159 10.123488 10.169574 -3445 0.068036 0.053975 5.801300 10.860333 -3446 0.169038 0.064329 9.480452 9.628903 -3447 0.074247 0.039866 16.806485 11.416733 -3448 0.251771 0.097382 11.731901 14.073808 -3449 0.097470 0.086197 9.538476 16.304523 -3450 0.072947 0.040875 11.670252 17.921061 -3451 0.042166 0.023050 7.243329 10.939079 -3452 0.066872 0.048360 6.934250 7.581429 -3453 0.065674 0.049154 12.087092 17.617421 -3454 0.068381 0.033939 6.998704 7.333746 -3455 0.075705 0.065267 13.183286 9.003259 -3456 0.063631 0.063705 12.288355 12.747183 -3457 0.057697 0.031457 7.375801 13.301273 -3458 0.084602 0.045411 12.817949 17.071329 -3459 0.061398 0.036512 9.627095 10.935671 -3460 0.060700 0.042482 13.555020 13.735696 -3461 0.092391 0.045495 11.758511 17.121756 -3462 0.042197 0.031915 9.129799 10.208518 -3463 0.073081 0.092308 11.749916 16.625841 -3464 0.064606 0.064670 11.852046 12.864817 -3465 0.066554 0.024702 5.543854 8.753717 -3466 0.063303 0.033144 9.335515 10.754451 -3467 0.072840 0.038352 6.143256 11.557561 -3468 0.070898 0.045706 7.394774 10.993328 -3469 0.082506 0.041810 10.622846 11.346589 -3470 0.066322 0.039408 10.021002 9.454410 -3471 0.091084 0.060720 11.960693 15.563273 -3472 0.056352 0.031192 11.240160 17.862087 -3473 0.074663 0.040829 9.204176 16.802060 -3474 0.055994 0.017347 8.776095 11.420383 -3475 0.079562 0.065329 8.663668 14.110691 -3476 0.085729 0.045845 10.910463 11.663540 -3477 0.280176 0.065458 14.646504 13.392057 -3478 0.177799 0.098936 9.154056 11.880548 -3479 0.080768 0.044726 7.506918 12.627103 -3480 0.092684 0.036929 14.159061 19.339890 -3481 0.076003 0.049384 15.346618 18.393873 -3482 0.083639 0.044293 10.693613 16.522691 -3483 0.088575 0.043957 12.436890 17.659128 -3484 0.054871 0.022122 8.726546 13.834078 -3485 0.051522 0.031995 6.565585 10.105334 -3486 0.214395 0.183753 12.033750 17.902383 -3487 0.079474 0.034186 9.386732 12.878262 -3488 0.086448 0.057002 11.246153 13.753057 -3489 0.083555 0.033800 6.862702 11.151009 -3490 0.052220 0.055465 9.255782 12.611337 -3491 0.071378 0.058670 13.590216 24.081816 -3492 0.057921 0.049271 8.677944 10.837280 -3493 0.067211 0.020798 10.139514 12.896522 -3494 0.080287 0.050236 9.314259 14.603788 -3495 0.048363 0.016690 8.739539 8.180137 -3496 0.055198 0.058820 7.728587 12.201967 -3497 0.092019 0.078672 7.929134 14.157997 -3498 0.083683 0.052502 7.205873 8.670208 -3499 0.075304 0.059294 10.760693 13.180466 -3500 0.061937 0.032515 6.879357 9.019104 -3501 0.064004 0.043710 9.838229 11.345969 -3502 0.075814 0.032700 10.578069 9.391724 -3503 0.092006 0.048269 11.112625 12.350799 -3504 0.173985 0.073904 13.371837 14.782119 -3505 0.067686 0.053178 10.146763 10.649261 -3506 0.078876 0.054088 9.960890 15.917391 -3507 0.133712 0.048164 11.402470 11.209167 -3508 0.061993 0.039751 7.714766 9.950307 -3509 0.289025 0.051273 11.770761 9.195843 -3510 0.144138 0.049344 8.713788 10.969444 -3511 0.067812 0.048336 10.264407 11.141795 -3512 0.076182 0.032668 9.687594 12.421691 -3513 0.056740 0.037606 9.966016 12.114679 -3514 0.036423 0.024344 7.744871 9.924174 -3515 0.228203 0.080014 8.252630 12.536921 -3516 0.087059 0.047993 7.689935 14.916969 -3517 0.087719 0.034223 7.511181 9.053824 -3518 0.179703 0.066175 12.215267 11.852464 -3519 0.055571 0.023190 9.327941 11.165526 -3520 0.058592 0.048397 10.953204 14.961602 -3521 0.118123 0.061550 9.221175 15.461881 -3522 0.084689 0.044154 14.836244 12.573268 -3523 0.161018 0.259081 7.645785 8.453558 -3524 0.069788 0.032386 8.898884 12.696797 -3525 0.046140 0.029380 8.893300 14.311451 -3526 0.053490 0.028339 9.555622 13.270723 -3527 0.052523 0.031224 11.754042 21.108223 -3528 0.247306 0.098680 8.808422 15.807781 -3529 0.068195 0.033036 15.116306 11.523790 -3530 0.068261 0.041210 8.107339 15.113327 -3531 0.042319 0.026496 10.407744 12.207953 -3532 0.064375 0.041333 8.354871 12.871052 -3533 0.081377 0.064319 7.089787 12.484126 -3534 0.068126 0.020425 10.822561 10.835246 -3535 0.257735 0.058328 11.524613 16.350498 -3536 0.068780 0.027620 10.885444 18.750256 -3537 0.061723 0.019971 9.024890 12.442181 -3538 0.105989 0.039626 13.035993 15.866255 -3539 0.062866 0.058596 10.106643 15.101218 -3540 0.106191 0.033275 8.860206 12.091338 -3541 0.058681 0.016877 5.948149 7.787908 -3542 0.077287 0.036140 7.339956 9.383108 -3543 0.105157 0.118279 12.275702 18.641183 -3544 0.058006 0.027727 9.669586 16.362503 -3545 0.074191 0.039762 11.986719 12.253071 -3546 0.080006 0.056906 9.664766 11.648938 -3547 0.063420 0.032228 8.222472 13.624479 -3548 0.067056 0.053353 6.655515 11.405753 -3549 0.056060 0.028573 9.569589 12.707733 -3550 0.060366 0.029827 7.451424 12.170065 -3551 0.076157 0.040470 11.812035 11.883931 -3552 0.034979 0.025093 9.047380 10.151402 -3553 0.181115 0.066468 13.126656 13.719672 -3554 0.071950 0.050844 12.731655 14.302662 -3555 0.098260 0.047635 9.230142 9.648074 -3556 0.083584 0.055462 13.320883 16.848114 -3557 0.088115 0.047327 10.437254 11.344940 -3558 0.058505 0.022821 11.143421 9.337769 -3559 0.093617 0.050991 12.427112 15.114452 -3560 0.061702 0.040242 14.120926 15.894397 -3561 0.089655 0.061960 10.500676 19.316323 -3562 0.072450 0.055187 8.706143 11.465090 -3563 0.060894 0.042335 8.626533 11.126840 -3564 0.077533 0.050102 8.586759 12.292842 -3565 0.095585 0.070352 8.220167 11.106398 -3566 0.057722 0.037596 5.139854 7.258336 -3567 0.078229 0.069332 15.453363 17.180263 -3568 0.079045 0.069812 10.719132 12.105400 -3569 0.049018 0.020746 8.171517 12.666350 -3570 0.074981 0.060504 9.085594 17.264338 -3571 0.171999 0.065481 7.367179 8.362880 -3572 0.086491 0.071810 11.973436 20.283163 -3573 0.050125 0.028520 6.213605 7.483253 -3574 0.078590 0.072357 12.307583 16.595785 -3575 0.049194 0.027778 7.684791 11.893352 -3576 0.096863 0.089884 9.378230 16.949907 -3577 0.137586 0.069959 8.677882 15.004450 -3578 0.192900 0.205536 8.989219 13.920283 -3579 0.076106 0.047505 9.098597 8.590819 -3580 0.049493 0.024079 13.581262 15.265147 -3581 0.040382 0.034460 17.429665 20.506877 -3582 0.068713 0.032028 7.753829 11.089111 -3583 0.077351 0.062949 8.440962 10.670842 -3584 0.062044 0.039028 7.941743 14.775046 -3585 0.059789 0.048444 8.486739 10.870666 -3586 0.098690 0.067070 9.688371 13.415728 -3587 0.151082 0.046986 16.673583 20.531827 -3588 0.073815 0.033924 11.989099 13.141698 -3589 0.067466 0.049509 7.582749 12.143492 -3590 0.065422 0.031857 12.331933 14.978856 -3591 0.074926 0.061944 10.794643 14.799584 -3592 0.099943 0.047253 9.060087 8.701579 -3593 0.098627 0.060963 11.276697 15.133981 -3594 0.045657 0.057843 8.769992 9.470246 -3595 0.090394 0.061789 14.731176 19.474132 -3596 0.072994 0.042481 7.436752 12.900602 -3597 0.062558 0.046055 8.958953 12.992979 -3598 0.121127 0.072878 8.415871 14.561403 -3599 0.088551 0.035459 15.079043 22.644707 -3600 0.069081 0.041743 9.567405 18.781034 -3601 0.081359 0.042036 10.286536 11.264107 -3602 0.085888 0.032604 8.744555 16.476591 -3603 0.055589 0.029415 9.231075 10.278651 -3604 0.080030 0.045571 13.526899 14.636001 -3605 0.094162 0.040828 6.315251 8.454929 -3606 0.085946 0.038851 8.898559 9.472165 -3607 0.092662 0.077615 13.789145 18.098681 -3608 0.061788 0.049929 12.048858 12.145182 -3609 0.040962 0.025051 7.743749 13.011887 -3610 0.042233 0.020482 10.473941 12.980859 -3611 0.062076 0.054391 11.980803 16.165254 -3612 0.073305 0.057362 9.120905 12.411714 -3613 0.082195 0.062706 9.527652 12.350214 -3614 0.118413 0.065127 7.768248 10.964714 -3615 0.048399 0.053080 9.243990 14.630586 -3616 0.059407 0.045568 7.436444 10.455371 -3617 0.184545 0.057721 7.213872 12.267442 -3618 0.084802 0.048256 9.158817 15.032937 -3619 0.037505 0.038331 11.458978 12.904114 -3620 0.042017 0.033687 11.900254 12.510669 -3621 0.073188 0.059005 11.358124 12.162579 -3622 0.061889 0.037199 10.557969 15.134137 -3623 0.069437 0.047731 13.495778 17.931334 -3624 0.059970 0.043722 9.446108 11.161500 -3625 0.061572 0.035174 7.088838 12.415290 -3626 0.082672 0.059101 9.526678 11.578129 -3627 0.075471 0.054994 10.795139 13.026616 -3628 0.085557 0.052442 10.961548 10.954258 -3629 0.052692 0.024387 6.279730 9.653698 -3630 0.291692 0.066402 10.927468 16.633998 -3631 0.259802 0.130621 12.091783 20.294028 -3632 0.059237 0.045215 9.626840 11.811969 -3633 0.092014 0.055162 14.745944 16.419763 -3634 0.079241 0.048268 11.204850 10.587122 -3635 0.092068 0.027249 12.742483 13.143758 -3636 0.099717 0.078895 6.412004 11.044448 -3637 0.084094 0.082822 8.903361 13.823696 -3638 0.056462 0.021749 8.095833 15.401733 -3639 0.069419 0.048640 9.901056 9.968354 -3640 0.063694 0.035821 15.587721 11.481210 -3641 0.054347 0.035588 11.102634 11.703859 -3642 0.082073 0.060406 10.175944 13.480121 -3643 0.097979 0.078473 8.048432 12.064434 -3644 0.064431 0.038189 7.357119 10.277297 -3645 0.088411 0.053590 10.406660 13.655578 -3646 0.058097 0.044708 10.438330 16.452540 -3647 0.060537 0.028258 8.335519 7.325530 -3648 0.052895 0.027498 7.894040 11.804843 -3649 0.053295 0.042030 14.209412 21.272293 -3650 0.061239 0.041520 12.773014 14.334098 -3651 0.085231 0.045758 9.545723 7.641812 -3652 0.058278 0.025683 11.696446 10.473668 -3653 0.075684 0.033568 8.570559 11.407237 -3654 0.048532 0.030185 14.305739 16.918799 -3655 0.256622 0.051295 11.847479 16.096491 -3656 0.076416 0.045944 9.205345 9.395074 -3657 0.076428 0.029043 8.622167 10.458953 -3658 0.131192 0.040607 11.524992 9.270602 -3659 0.190349 0.095916 10.300452 15.303755 -3660 0.077790 0.035871 6.992574 10.633270 -3661 0.099229 0.065606 7.888019 15.773293 -3662 0.121999 0.078114 8.691006 8.441571 -3663 0.098676 0.047647 11.463317 18.832693 -3664 0.257310 0.095491 9.758787 11.669830 -3665 0.066428 0.038070 10.139687 17.222730 -3666 0.200427 0.051934 11.148155 11.367441 -3667 0.187942 0.081215 9.207221 17.473376 -3668 0.075393 0.062575 10.569663 15.701222 -3669 0.044322 0.026567 10.595771 11.986006 -3670 0.066816 0.029861 11.470339 16.526406 -3671 0.055476 0.080679 6.524641 8.422201 -3672 0.058034 0.043070 15.761324 17.488936 -3673 0.063359 0.037380 12.773776 12.676895 -3674 0.067519 0.042752 9.501120 14.710961 -3675 0.071536 0.037990 13.128235 7.659197 -3676 0.090788 0.057905 10.333680 9.669755 -3677 0.130047 0.242774 7.766142 11.689614 -3678 0.230849 0.049208 8.683268 8.878766 -3679 0.079569 0.073582 11.877728 14.647707 -3680 0.223207 0.074764 12.999738 16.344022 -3681 0.091206 0.038325 14.425011 16.802770 -3682 0.059784 0.030297 6.022671 8.449750 -3683 0.069195 0.032139 7.831780 9.153206 -3684 0.082228 0.051477 10.957362 13.758087 -3685 0.234063 0.077853 8.726017 11.349078 -3686 0.079311 0.063886 8.763126 10.821047 -3687 0.060202 0.030311 15.137927 24.522583 -3688 0.076376 0.068823 9.363933 11.658153 -3689 0.056845 0.037058 9.543856 12.764417 -3690 0.097170 0.049304 15.513551 17.306418 -3691 0.059775 0.065301 10.014258 12.108624 -3692 0.081552 0.081486 11.611071 15.482674 -3693 0.208531 0.073911 7.626262 13.224404 -3694 0.065091 0.023951 11.474838 16.194507 -3695 0.089613 0.032156 13.029636 14.116513 -3696 0.261714 0.258110 11.711747 16.085724 -3697 0.040546 0.020225 6.869313 12.171491 -3698 0.060359 0.021658 8.765559 9.122668 -3699 0.091812 0.046311 7.256686 10.160145 -3700 0.096528 0.084657 12.446453 19.017549 -3701 0.240043 0.069131 13.463407 13.427672 -3702 0.070475 0.059132 6.576661 10.619223 -3703 0.144136 0.049038 10.898158 16.382736 -3704 0.286305 0.076504 9.105281 14.038732 -3705 0.153734 0.081526 9.541786 8.992566 -3706 0.081168 0.050317 12.338797 17.856415 -3707 0.062331 0.036143 9.574289 18.294750 -3708 0.072141 0.039322 10.185202 14.464725 -3709 0.088869 0.055415 13.215019 13.403069 -3710 0.078008 0.032388 9.154425 11.476128 -3711 0.089041 0.065818 12.784454 17.786177 -3712 0.080557 0.059623 11.438546 13.680409 -3713 0.058107 0.036416 7.545157 6.290905 -3714 0.047005 0.033720 10.858048 9.802116 -3715 0.243797 0.064121 11.772835 10.404730 -3716 0.072391 0.048280 10.479221 14.655237 -3717 0.056819 0.038885 14.222933 12.549263 -3718 0.061409 0.029746 11.145505 13.616457 -3719 0.072953 0.043661 8.996589 9.846250 -3720 0.052310 0.039437 6.515185 9.459791 -3721 0.046251 0.030150 8.138568 12.317001 -3722 0.042234 0.023228 4.523150 8.270556 -3723 0.225085 0.064702 10.474309 22.275610 -3724 0.080853 0.040423 13.743835 14.675637 -3725 0.093592 0.029856 9.605215 10.525657 -3726 0.109665 0.062616 7.203726 6.584634 -3727 0.068896 0.042844 9.892960 14.051284 -3728 0.058668 0.025017 8.096884 8.504919 -3729 0.094179 0.077902 8.155435 11.733743 -3730 0.043884 0.027251 8.117028 8.486109 -3731 0.065565 0.022163 6.882591 9.617471 -3732 0.079089 0.043963 10.412133 16.108265 -3733 0.070274 0.054043 9.010160 13.687084 -3734 0.059095 0.045643 8.537422 9.655016 -3735 0.087976 0.076684 9.870006 16.124133 -3736 0.058443 0.048675 9.699628 16.504449 -3737 0.087169 0.034674 7.699618 12.481364 -3738 0.057572 0.030682 9.594695 11.102283 -3739 0.059168 0.036912 11.822184 12.120560 -3740 0.181814 0.216641 14.226963 21.259131 -3741 0.176585 0.089549 11.466264 14.333533 -3742 0.053862 0.032887 4.358047 6.744028 -3743 0.090849 0.044645 8.996160 10.658977 -3744 0.059465 0.036020 9.814756 11.645833 -3745 0.063038 0.027318 8.731013 13.507568 -3746 0.084238 0.032879 8.591008 10.804969 -3747 0.178966 0.084982 10.020332 11.582345 -3748 0.036955 0.023223 6.728513 7.287292 -3749 0.062474 0.048870 7.981160 11.233038 -3750 0.075506 0.042470 8.163494 9.471038 -3751 0.058655 0.033947 9.045087 9.432307 -3752 0.057742 0.036514 10.974689 15.053681 -3753 0.075080 0.028353 13.106667 16.214959 -3754 0.067358 0.075588 20.114488 15.145974 -3755 0.075664 0.049618 11.968900 12.383085 -3756 0.275939 0.074152 8.011356 12.321507 -3757 0.092315 0.041723 8.333271 12.956387 -3758 0.068071 0.058709 11.876475 16.017000 -3759 0.070173 0.039914 11.821513 10.368101 -3760 0.080485 0.044006 7.723989 10.983171 -3761 0.059777 0.033942 9.464567 11.019927 -3762 0.079638 0.048532 8.867542 12.619686 -3763 0.126374 0.079905 11.331427 14.502099 -3764 0.053039 0.023004 10.856396 11.998350 -3765 0.093654 0.061469 8.592561 13.302513 -3766 0.059397 0.035809 7.424931 8.747119 -3767 0.073760 0.038726 8.266333 12.930951 -3768 0.098749 0.089191 11.383512 13.470040 -3769 0.075147 0.057759 7.641555 8.845144 -3770 0.134256 0.039752 14.902747 21.288406 -3771 0.066439 0.043990 6.250203 10.010705 -3772 0.154174 0.042103 10.298448 9.265800 -3773 0.070676 0.055596 15.017953 12.536949 -3774 0.062805 0.042864 11.091381 12.010461 -3775 0.062532 0.069077 7.274308 8.269580 -3776 0.046427 0.017308 6.755539 9.286538 -3777 0.123825 0.058779 8.791814 9.841343 -3778 0.071848 0.052742 11.237391 15.343094 -3779 0.068032 0.046207 8.722205 14.354629 -3780 0.085778 0.034416 9.481307 15.079552 -3781 0.228580 0.075301 7.427854 14.953606 -3782 0.093348 0.079275 8.372841 11.417012 -3783 0.069468 0.060128 8.809727 11.074548 -3784 0.058726 0.033371 12.493936 15.778662 -3785 0.061870 0.029293 8.631124 12.204406 -3786 0.087824 0.050196 9.434621 14.633030 -3787 0.060566 0.036101 9.326425 9.135435 -3788 0.082466 0.083802 12.244606 15.966863 -3789 0.083734 0.059338 7.249110 6.853875 -3790 0.086333 0.090636 14.263293 15.033213 -3791 0.079982 0.046119 10.857106 9.755899 -3792 0.039800 0.029444 6.936869 8.036667 -3793 0.054242 0.024303 7.831489 10.087107 -3794 0.074542 0.026867 6.360954 8.378453 -3795 0.268206 0.066691 13.703076 14.661739 -3796 0.052234 0.044292 8.874910 11.920565 -3797 0.098775 0.036671 10.496316 14.036082 -3798 0.063600 0.030798 8.084030 10.350478 -3799 0.076680 0.054687 14.510212 10.630610 -3800 0.070897 0.049426 8.217417 13.105981 -3801 0.069337 0.045355 9.185332 16.232900 -3802 0.066425 0.042075 5.820320 11.400556 -3803 0.072259 0.048103 8.772163 12.161733 -3804 0.064548 0.041422 7.799276 13.559712 -3805 0.074619 0.050359 11.930087 13.599713 -3806 0.049104 0.034032 10.974891 10.450797 -3807 0.125821 0.080563 8.007168 11.355132 -3808 0.071152 0.041433 9.805600 6.228758 -3809 0.088558 0.060778 12.979594 17.492615 -3810 0.126883 0.066377 11.848803 10.288168 -3811 0.089590 0.064601 9.982239 7.657121 -3812 0.050181 0.023190 8.137861 11.386581 -3813 0.083661 0.042025 8.758025 9.274347 -3814 0.040942 0.034730 10.006137 12.409461 -3815 0.076760 0.037987 8.809074 10.356685 -3816 0.060860 0.027298 10.393491 14.105894 -3817 0.087583 0.057773 8.475312 11.542229 -3818 0.069937 0.034768 12.265287 10.053935 -3819 0.059306 0.031767 10.565618 10.262087 -3820 0.165381 0.054202 9.474647 12.137730 -3821 0.079769 0.064172 8.292171 12.283691 -3822 0.138048 0.083145 12.312508 16.558581 -3823 0.078069 0.043304 10.472891 12.650481 -3824 0.069291 0.039294 17.386673 19.462217 -3825 0.093406 0.060979 22.812915 25.005287 -3826 0.063556 0.030003 8.293472 7.182910 -3827 0.099250 0.072049 8.038417 9.914413 -3828 0.044087 0.031666 12.314779 9.846666 -3829 0.045886 0.022689 7.678939 9.757781 -3830 0.094840 0.085934 8.513253 15.132553 -3831 0.066182 0.042770 11.915609 13.462317 -3832 0.068823 0.063332 13.549825 13.894989 -3833 0.079057 0.033627 9.448716 11.178697 -3834 0.042218 0.035379 7.848064 9.487862 -3835 0.070114 0.046269 11.125875 14.881114 -3836 0.094946 0.054812 16.738183 18.873056 -3837 0.078914 0.030380 7.009348 9.360915 -3838 0.066461 0.031263 5.584141 10.609101 -3839 0.051923 0.035240 7.524781 8.391900 -3840 0.080868 0.041676 9.695635 14.937381 -3841 0.077012 0.045785 10.818965 14.495670 -3842 0.071870 0.052457 12.344983 13.225002 -3843 0.059717 0.039135 6.666945 11.488103 -3844 0.059861 0.036038 19.327323 17.342321 -3845 0.060046 0.042567 7.727879 11.284001 -3846 0.112051 0.059042 12.611059 17.729490 -3847 0.069228 0.031885 8.615072 10.705090 -3848 0.047466 0.034449 9.051473 12.372015 -3849 0.092038 0.071058 11.367955 13.557296 -3850 0.059315 0.023604 12.091162 17.216916 -3851 0.058189 0.050620 9.077473 15.752801 -3852 0.068637 0.040159 12.524622 12.506320 -3853 0.065735 0.034813 12.352450 15.012902 -3854 0.045526 0.022640 9.890751 14.409563 -3855 0.067551 0.032132 8.157424 10.297008 -3856 0.086789 0.073217 13.772736 13.385094 -3857 0.059168 0.042564 11.636613 16.086103 -3858 0.079796 0.074415 8.775155 15.413086 -3859 0.053468 0.046257 5.313096 7.281402 -3860 0.048155 0.028710 8.968449 8.254781 -3861 0.052654 0.020338 10.115283 8.854124 -3862 0.033825 0.022954 8.428745 10.527455 -3863 0.054130 0.028237 6.557950 11.800760 -3864 0.056620 0.018584 12.540845 12.779808 -3865 0.042711 0.038171 10.678709 13.967569 -3866 0.091384 0.043195 6.619541 8.610255 -3867 0.069640 0.053513 7.885946 9.590313 -3868 0.047086 0.028807 8.257854 13.052551 -3869 0.062457 0.032617 9.956243 13.895118 -3870 0.055801 0.035641 9.081274 10.151949 -3871 0.055227 0.036704 7.200508 8.364244 -3872 0.149984 0.046618 7.396744 13.113317 -3873 0.072334 0.039388 11.076141 10.042350 -3874 0.119315 0.066336 12.031219 16.789010 -3875 0.076299 0.072249 8.802752 13.845002 -3876 0.080926 0.054805 9.159182 9.834579 -3877 0.076292 0.081540 10.280517 13.221994 -3878 0.080454 0.057707 8.536064 10.784690 -3879 0.062633 0.030162 10.281109 15.712235 -3880 0.050170 0.041884 6.875544 9.687277 -3881 0.054987 0.028631 14.039964 15.960638 -3882 0.069827 0.028030 13.438640 16.565326 -3883 0.080818 0.031196 9.858362 16.113657 -3884 0.125007 0.064199 8.538517 12.451669 -3885 0.054664 0.039180 9.704850 13.665777 -3886 0.087815 0.044996 8.371907 10.366414 -3887 0.119927 0.083531 8.629998 19.761295 -3888 0.238514 0.062143 6.664986 11.627489 -3889 0.067958 0.062053 16.897012 16.067470 -3890 0.069316 0.037660 8.965368 21.100179 -3891 0.073855 0.052872 10.291375 15.802611 -3892 0.173539 0.084516 13.064787 15.880075 -3893 0.092344 0.042407 8.451065 12.951018 -3894 0.087559 0.057779 7.932704 11.394364 -3895 0.082106 0.041309 13.686673 14.929819 -3896 0.052089 0.037282 8.258812 8.880744 -3897 0.071194 0.026121 12.595353 16.307505 -3898 0.075758 0.041712 6.974921 14.049477 -3899 0.157935 0.061058 10.583032 11.179990 -3900 0.161708 0.060192 10.795212 12.300675 -3901 0.075385 0.042288 11.187303 12.910888 -3902 0.088486 0.098044 7.921949 12.401999 -3903 0.078333 0.078373 15.910738 16.546255 -3904 0.079028 0.043385 9.756494 13.287740 -3905 0.059904 0.038152 11.578569 12.314335 -3906 0.131455 0.060604 12.595058 14.603475 -3907 0.096999 0.057346 11.988791 11.936334 -3908 0.038482 0.029250 6.980061 10.388074 -3909 0.049620 0.026429 6.710931 11.813251 -3910 0.068364 0.040171 12.472671 11.225262 -3911 0.069595 0.039528 8.060666 8.370729 -3912 0.231809 0.062916 11.438436 14.029731 -3913 0.053684 0.036345 11.752628 11.780213 -3914 0.178715 0.083005 13.225084 15.627743 -3915 0.058017 0.028878 11.649157 15.181589 -3916 0.061967 0.032775 9.067661 10.949180 -3917 0.260692 0.049841 8.363328 13.645089 -3918 0.092955 0.043223 11.767200 15.527678 -3919 0.257078 0.055325 12.107251 9.634618 -3920 0.051268 0.029570 12.850659 10.913957 -3921 0.076670 0.046627 7.132266 11.438437 -3922 0.061550 0.025260 14.320270 13.115216 -3923 0.074668 0.037679 10.068731 11.420502 -3924 0.169769 0.076572 10.462961 14.527516 -3925 0.059815 0.038376 7.907406 13.064729 -3926 0.097680 0.075066 12.172964 12.809282 -3927 0.065538 0.046105 10.086392 12.888678 -3928 0.065628 0.047102 11.696205 16.290732 -3929 0.240587 0.234474 9.227909 13.667416 -3930 0.081796 0.060354 14.458333 15.467217 -3931 0.186353 0.279967 12.480975 14.733910 -3932 0.070707 0.033177 9.692221 11.671012 -3933 0.088095 0.070128 5.899140 13.846136 -3934 0.068648 0.034639 13.049095 14.561163 -3935 0.085463 0.036056 9.497671 13.987995 -3936 0.050052 0.025744 8.974182 7.756907 -3937 0.062574 0.032498 6.834300 7.438868 -3938 0.076389 0.040553 11.061911 11.980287 -3939 0.048414 0.034689 7.972558 10.123754 -3940 0.112487 0.054998 12.768931 14.045549 -3941 0.067569 0.043120 10.894319 14.512340 -3942 0.040612 0.020333 6.466249 11.552494 -3943 0.086682 0.075084 16.734789 16.310789 -3944 0.286584 0.078944 8.685476 16.590352 -3945 0.156161 0.264583 10.011279 13.726257 -3946 0.087808 0.067148 7.140584 9.471026 -3947 0.049198 0.035714 10.696850 12.795249 -3948 0.074690 0.050120 13.292716 17.360747 -3949 0.076080 0.069932 7.228199 9.588397 -3950 0.071385 0.027479 6.717500 11.458266 -3951 0.092788 0.045051 11.306339 15.541813 -3952 0.076753 0.054335 10.686351 11.404734 -3953 0.154934 0.079852 10.347893 13.416844 -3954 0.298541 0.089255 15.412011 19.347931 -3955 0.056551 0.039657 8.106500 10.645749 -3956 0.059933 0.022143 10.906474 8.628490 -3957 0.080413 0.061697 10.252620 11.187839 -3958 0.047776 0.024185 11.385032 10.943903 -3959 0.073730 0.043722 15.687011 13.936168 -3960 0.066661 0.035808 8.580722 9.444568 -3961 0.062138 0.047607 9.207475 10.057175 -3962 0.298734 0.076261 11.794871 14.665068 -3963 0.048136 0.031446 6.179794 8.302193 -3964 0.200634 0.051387 9.222728 9.943336 -3965 0.047802 0.024431 11.621697 10.414150 -3966 0.057980 0.038403 6.803878 11.553722 -3967 0.049715 0.022832 7.553517 14.964693 -3968 0.290218 0.043715 10.804878 14.547456 -3969 0.055196 0.025275 12.617823 11.495314 -3970 0.079370 0.049815 12.844119 11.869672 -3971 0.095188 0.030825 9.401261 10.636729 -3972 0.091758 0.051022 8.095853 11.029310 -3973 0.087258 0.070912 9.913226 9.482780 -3974 0.068246 0.033912 17.350937 26.797462 -3975 0.072934 0.075239 12.205969 16.591602 -3976 0.060722 0.044924 6.116040 9.167776 -3977 0.067239 0.023864 9.332609 11.373213 -3978 0.094979 0.037705 9.750292 14.110200 -3979 0.042713 0.023642 9.714472 14.075381 -3980 0.076818 0.059911 14.848289 19.805616 -3981 0.199581 0.052417 10.737145 16.456466 -3982 0.071143 0.044971 10.228029 9.273486 -3983 0.103851 0.067419 10.984020 12.410530 -3984 0.079563 0.080313 11.554807 13.753109 -3985 0.069846 0.061307 15.328061 16.906377 -3986 0.081091 0.044813 8.264217 11.174459 -3987 0.187843 0.047568 8.212413 12.805966 -3988 0.098484 0.052981 14.735843 14.992255 -3989 0.062231 0.034737 14.113061 12.745852 -3990 0.052668 0.041662 11.647734 14.233375 -3991 0.086802 0.052117 9.803360 14.404606 -3992 0.093414 0.036168 9.143143 14.671430 -3993 0.056060 0.041967 6.314110 10.060572 -3994 0.177943 0.071291 7.150207 13.001068 -3995 0.087344 0.054630 12.249135 15.649310 -3996 0.057622 0.044490 8.409737 11.292172 -3997 0.084886 0.057151 9.211572 15.083619 -3998 0.044204 0.021296 8.029478 10.275214 -3999 0.092689 0.048700 6.927654 11.162240 -4000 0.082594 0.031550 11.995167 15.391814 -4001 0.037895 0.016938 6.512795 9.978259 -4002 0.210586 0.061951 12.713607 16.470876 -4003 0.224837 0.089047 15.528025 23.287272 -4004 0.067577 0.052776 8.843299 9.469192 -4005 0.082298 0.044462 12.510840 15.887807 -4006 0.035035 0.021632 8.061736 11.169746 -4007 0.254310 0.084836 11.493162 13.309522 -4008 0.071421 0.057508 11.934212 18.290218 -4009 0.290846 0.071772 6.452336 10.783948 -4010 0.114932 0.075535 15.602685 21.279084 -4011 0.104012 0.097634 11.433355 12.727458 -4012 0.064676 0.074530 14.928252 17.854735 -4013 0.089426 0.071806 14.007662 16.605166 -4014 0.083337 0.063333 12.820926 16.191640 -4015 0.093781 0.046463 8.649107 11.485117 -4016 0.075669 0.062981 6.979497 10.561235 -4017 0.057718 0.024883 6.851802 8.675839 -4018 0.043104 0.025648 8.274276 9.971812 -4019 0.061317 0.048821 10.209155 16.983493 -4020 0.076848 0.034519 14.565702 21.284947 -4021 0.071041 0.053258 11.898780 13.127071 -4022 0.069244 0.029605 10.438758 15.711946 -4023 0.047559 0.033495 8.653659 13.872391 -4024 0.064895 0.043493 8.676134 16.840101 -4025 0.286527 0.069262 10.395358 13.222347 -4026 0.220687 0.099046 14.064611 16.791430 -4027 0.079598 0.046099 14.671228 15.086740 -4028 0.033646 0.016296 5.395792 8.502702 -4029 0.067156 0.033990 6.986794 10.604204 -4030 0.047970 0.025693 6.838225 8.842627 -4031 0.143541 0.094157 11.253805 19.462441 -4032 0.052757 0.035726 8.419972 9.687835 -4033 0.076101 0.037511 9.863100 13.164935 -4034 0.065485 0.032049 8.055432 13.403522 -4035 0.093452 0.062797 12.216293 14.367912 -4036 0.139467 0.040579 8.732681 14.781319 -4037 0.069916 0.036158 6.548350 8.357429 -4038 0.069663 0.059344 8.696162 11.240882 -4039 0.083668 0.078916 9.750619 12.021895 -4040 0.066690 0.046219 12.341287 12.051229 -4041 0.062387 0.033535 15.495393 14.316521 -4042 0.071121 0.053220 7.988042 6.510738 -4043 0.080031 0.053949 11.067475 14.400019 -4044 0.079308 0.034227 11.430344 13.007610 -4045 0.062742 0.030947 11.885571 13.078047 -4046 0.054536 0.043984 8.701585 17.554154 -4047 0.075445 0.058631 14.629199 16.089240 -4048 0.221995 0.043155 11.454874 17.448412 -4049 0.092547 0.039644 9.154747 15.817442 -4050 0.231659 0.066922 8.049863 9.762485 -4051 0.063603 0.076736 8.673994 14.112400 -4052 0.107280 0.051826 12.410279 18.546001 -4053 0.091327 0.045607 10.607964 16.372387 -4054 0.069248 0.035593 9.536179 10.678740 -4055 0.202079 0.094246 15.134587 25.700647 -4056 0.060908 0.043354 13.291219 16.778031 -4057 0.074239 0.035210 8.565950 11.842823 -4058 0.052014 0.037726 12.525085 9.227764 -4059 0.099780 0.043551 10.395803 12.569891 -4060 0.066790 0.042174 11.787802 11.222085 -4061 0.059811 0.034562 17.903647 15.290584 -4062 0.051528 0.018474 9.345811 9.206914 -4063 0.183904 0.084341 10.795740 12.751684 -4064 0.061728 0.036379 11.913498 14.842524 -4065 0.182920 0.066867 6.565569 8.964326 -4066 0.039841 0.025570 7.839082 12.707277 -4067 0.052149 0.038532 11.035111 13.140383 -4068 0.116898 0.079830 11.996573 20.908573 -4069 0.073813 0.039126 12.503893 11.198278 -4070 0.085346 0.049971 8.009799 11.376601 -4071 0.127452 0.043908 10.177987 11.078137 -4072 0.091982 0.065828 10.074936 21.588544 -4073 0.072248 0.063298 8.790364 7.654431 -4074 0.084730 0.030580 10.939071 12.041426 -4075 0.063502 0.058240 7.902196 10.402520 -4076 0.035452 0.020714 9.124003 6.817322 -4077 0.062350 0.055664 8.645537 11.499327 -4078 0.039261 0.034921 10.495436 11.416994 -4079 0.048936 0.029865 9.462399 11.324191 -4080 0.217461 0.072443 12.154189 12.699601 -4081 0.222687 0.046702 7.275873 9.878789 -4082 0.067270 0.036062 11.680517 15.786790 -4083 0.052658 0.037245 19.051096 17.680888 -4084 0.134054 0.051897 9.302539 14.048216 -4085 0.086589 0.061137 9.084906 8.792738 -4086 0.196971 0.073396 12.059437 14.112776 -4087 0.065612 0.033690 12.538794 13.039146 -4088 0.072030 0.049376 9.775659 12.528716 -4089 0.073298 0.038962 10.561303 9.056738 -4090 0.084222 0.029401 10.924775 11.906856 -4091 0.095776 0.060227 10.249342 17.737139 -4092 0.077043 0.033741 11.209707 16.341717 -4093 0.043087 0.027778 10.314254 11.131658 -4094 0.082448 0.048938 9.920048 12.983576 -4095 0.060508 0.038747 7.487954 9.490250 -4096 0.286109 0.076191 11.260168 15.363228 -4097 0.096527 0.062637 10.232930 10.575693 -4098 0.077912 0.038032 9.645406 13.129342 -4099 0.052239 0.032286 10.556908 8.896176 -4100 0.092299 0.076338 10.798952 11.862351 -4101 0.278614 0.095344 19.018918 18.767280 -4102 0.073208 0.028256 9.521777 14.793226 -4103 0.053441 0.022390 10.804000 11.657265 -4104 0.080033 0.034331 7.341176 12.561047 -4105 0.041152 0.027068 7.756290 8.914485 -4106 0.056630 0.026441 7.433628 12.169236 -4107 0.063527 0.019004 7.154528 21.436788 -4108 0.067715 0.058446 9.478076 11.649132 -4109 0.099526 0.086997 17.073322 15.103900 -4110 0.070698 0.058742 12.653648 16.766609 -4111 0.080098 0.045871 6.455093 6.901343 -4112 0.066439 0.065371 16.892604 14.922433 -4113 0.057380 0.047796 6.509862 8.080948 -4114 0.068276 0.028521 5.506592 7.181081 -4115 0.099156 0.046447 8.444751 11.390101 -4116 0.079179 0.040271 11.023272 17.031035 -4117 0.190518 0.059725 11.385740 18.297623 -4118 0.072324 0.044427 12.223448 12.471916 -4119 0.084829 0.059072 13.207408 15.092394 -4120 0.122725 0.046802 11.652742 15.575202 -4121 0.054029 0.025913 11.545716 10.785103 -4122 0.066111 0.036938 8.407604 14.212909 -4123 0.147303 0.062103 15.216622 16.479930 -4124 0.040313 0.026253 7.413257 9.493298 -4125 0.057447 0.034125 10.452124 9.600036 -4126 0.066650 0.045205 8.419415 14.440538 -4127 0.054496 0.042347 7.814703 10.540285 -4128 0.055318 0.033214 9.766765 13.496269 -4129 0.063108 0.060278 6.644792 8.106651 -4130 0.073323 0.073822 14.425667 17.680914 -4131 0.063858 0.056766 9.973214 14.779552 -4132 0.249985 0.079690 8.100083 9.021555 -4133 0.055296 0.034067 8.586849 11.014363 -4134 0.071646 0.046776 6.720433 13.365046 -4135 0.101705 0.091872 8.938723 11.902015 -4136 0.091288 0.078832 6.628025 13.814074 -4137 0.055625 0.019268 12.240144 13.070706 -4138 0.069312 0.025378 8.228434 12.028149 -4139 0.097434 0.041796 9.645596 14.302390 -4140 0.233983 0.083338 14.328323 13.443258 -4141 0.057311 0.051795 5.418260 7.162790 -4142 0.082114 0.026961 9.127882 14.133180 -4143 0.066898 0.056057 8.743289 14.666482 -4144 0.039984 0.031028 4.962887 7.254580 -4145 0.084267 0.049519 10.076311 11.860944 -4146 0.056666 0.033082 7.348592 8.978520 -4147 0.063229 0.027307 12.175412 17.161325 -4148 0.041725 0.056769 7.513841 11.192786 -4149 0.098572 0.062207 11.794153 17.526747 -4150 0.051296 0.027153 10.989038 10.757275 -4151 0.052262 0.044784 7.581359 11.027390 -4152 0.044068 0.036936 4.442539 6.458068 -4153 0.206021 0.065233 14.111619 15.624547 -4154 0.077208 0.047866 10.392522 12.583196 -4155 0.093863 0.084658 8.688876 10.019043 -4156 0.061621 0.052914 6.735579 9.990036 -4157 0.076810 0.033001 8.851063 12.264108 -4158 0.074619 0.018746 13.332957 15.206131 -4159 0.281284 0.056188 9.136322 11.251049 -4160 0.052637 0.046495 15.264936 15.620439 -4161 0.078762 0.029336 7.360595 11.466284 -4162 0.191407 0.089234 10.108256 23.399290 -4163 0.048036 0.023624 9.831696 8.506393 -4164 0.068107 0.033137 10.999197 10.838288 -4165 0.163309 0.040964 10.091969 18.630879 -4166 0.124299 0.070247 10.056337 9.504589 -4167 0.056209 0.033233 7.390260 5.706585 -4168 0.081095 0.074287 9.572764 15.152442 -4169 0.068344 0.037704 14.029118 12.472103 -4170 0.090020 0.028273 7.395949 12.226984 -4171 0.088311 0.043024 10.972464 14.187856 -4172 0.058428 0.035860 9.624828 10.719486 -4173 0.077019 0.043774 12.782123 17.081231 -4174 0.044537 0.041290 7.196394 12.275233 -4175 0.071492 0.050273 8.396053 9.655287 -4176 0.051312 0.033651 8.964844 7.654887 -4177 0.038817 0.018687 7.134907 9.782840 -4178 0.087162 0.050393 8.566262 8.514997 -4179 0.091745 0.052369 11.437847 21.819356 -4180 0.087964 0.032002 7.224430 7.880512 -4181 0.059034 0.035063 11.112273 11.423396 -4182 0.084519 0.030904 9.816557 11.640528 -4183 0.067571 0.031978 7.586513 11.401011 -4184 0.061224 0.031234 10.197789 10.037180 -4185 0.083789 0.048179 9.182171 14.286375 -4186 0.050504 0.028200 7.985587 12.203031 -4187 0.052391 0.033740 8.665430 15.423146 -4188 0.084801 0.045163 9.488979 11.631333 -4189 0.079370 0.058381 10.509356 11.194737 -4190 0.070016 0.046668 12.962408 13.396526 -4191 0.061611 0.021724 8.956035 15.015754 -4192 0.077767 0.049769 10.881221 15.742610 -4193 0.074843 0.052167 9.418501 10.374743 -4194 0.087604 0.043168 9.071167 13.623667 -4195 0.076152 0.030128 15.459950 12.350702 -4196 0.081868 0.042497 10.724020 8.235612 -4197 0.055479 0.038310 8.691276 13.599676 -4198 0.046266 0.023320 10.205145 12.478374 -4199 0.056813 0.027306 10.731942 11.370823 -4200 0.065858 0.044936 12.411084 15.387062 -4201 0.049968 0.056755 8.918110 8.727838 -4202 0.076479 0.047145 11.356717 9.645402 -4203 0.081136 0.043603 12.840992 20.268709 -4204 0.072084 0.029791 10.363142 18.003459 -4205 0.098107 0.047907 11.529620 13.738414 -4206 0.064324 0.039436 11.548913 14.039543 -4207 0.046021 0.062078 14.009478 15.507349 -4208 0.077141 0.040213 9.861522 13.704962 -4209 0.063229 0.064296 8.820175 13.761625 -4210 0.059842 0.037363 9.805373 10.734989 -4211 0.083214 0.068280 9.402859 15.360159 -4212 0.076959 0.043329 8.852929 10.362797 -4213 0.250535 0.083310 14.352184 23.127181 -4214 0.119757 0.070987 11.628884 12.635660 -4215 0.176090 0.064613 9.162328 12.502938 -4216 0.058360 0.041317 12.188789 12.773273 -4217 0.057803 0.040817 11.519454 19.184169 -4218 0.077360 0.080810 10.656112 14.469664 -4219 0.099651 0.068422 11.745276 9.867664 -4220 0.062124 0.036307 12.044728 11.475047 -4221 0.061639 0.035308 10.525991 11.993681 -4222 0.154482 0.050705 7.206182 14.040910 -4223 0.138202 0.170845 13.134020 15.390584 -4224 0.066711 0.030740 8.026118 13.165381 -4225 0.065735 0.026831 12.207861 15.753080 -4226 0.070973 0.032807 10.070366 10.372524 -4227 0.158658 0.046190 9.845955 14.632317 -4228 0.092061 0.045102 10.857744 22.260103 -4229 0.065549 0.025492 8.603185 13.974061 -4230 0.071904 0.067063 9.536125 11.805558 -4231 0.086824 0.058904 9.823253 16.309277 -4232 0.089137 0.047344 9.659604 8.126448 -4233 0.062742 0.039064 14.879203 14.878378 -4234 0.275301 0.118577 15.624015 19.941452 -4235 0.052956 0.034052 7.368192 6.456953 -4236 0.076205 0.038096 9.353337 7.906905 -4237 0.078621 0.038544 7.139951 6.093712 -4238 0.236650 0.096475 9.254301 10.835478 -4239 0.071905 0.040503 6.093285 8.756275 -4240 0.056504 0.031130 11.947314 11.348747 -4241 0.056551 0.031407 9.266551 8.977316 -4242 0.251817 0.070401 8.367759 10.493760 -4243 0.064009 0.020090 8.038254 14.029541 -4244 0.072667 0.058562 7.946545 11.774104 -4245 0.087800 0.053861 8.713819 11.480523 -4246 0.056652 0.042398 9.157041 8.409697 -4247 0.076403 0.074762 15.089146 16.827946 -4248 0.060658 0.037448 11.013930 12.822665 -4249 0.039086 0.039512 13.061260 14.761831 -4250 0.053519 0.036820 9.292791 9.120178 -4251 0.083532 0.078421 8.150875 13.097840 -4252 0.297447 0.046673 12.227859 21.700930 -4253 0.045911 0.022190 9.083861 11.163477 -4254 0.061282 0.047403 13.828324 11.495953 -4255 0.062814 0.027597 13.151975 14.111454 -4256 0.065994 0.037243 11.588281 14.016005 -4257 0.084389 0.089063 8.314201 10.730521 -4258 0.089140 0.037387 15.480060 20.520883 -4259 0.181587 0.065105 6.334665 12.676412 -4260 0.038381 0.045826 10.303201 11.839222 -4261 0.127537 0.075398 13.639350 21.276103 -4262 0.176736 0.072347 11.733080 11.883300 -4263 0.042092 0.022912 10.946418 11.851351 -4264 0.045837 0.026200 11.401508 16.247262 -4265 0.076354 0.047794 9.119702 9.458483 -4266 0.225082 0.047998 6.880974 11.410693 -4267 0.083953 0.068236 8.167006 6.971461 -4268 0.052564 0.021038 8.586309 11.982810 -4269 0.246673 0.083067 18.467215 18.165488 -4270 0.089024 0.037429 8.357640 10.934349 -4271 0.069575 0.032939 8.290752 10.826763 -4272 0.057153 0.029372 7.639208 9.790493 -4273 0.077520 0.050255 11.052554 15.031818 -4274 0.087677 0.049685 8.359258 9.944661 -4275 0.132935 0.286508 20.255776 27.024178 -4276 0.067644 0.049939 13.522434 18.313614 -4277 0.061076 0.035659 5.733315 6.345095 -4278 0.204930 0.057893 16.835795 17.184794 -4279 0.050006 0.037599 7.872993 8.617881 -4280 0.232615 0.062021 9.101300 13.708432 -4281 0.048729 0.028775 7.817624 14.996220 -4282 0.062649 0.039624 9.328667 13.214717 -4283 0.058679 0.072558 8.687069 12.036395 -4284 0.093106 0.060211 8.585870 9.594751 -4285 0.080145 0.092710 7.548519 11.604605 -4286 0.084036 0.069986 9.427310 16.397803 -4287 0.058956 0.049940 7.014933 8.463173 -4288 0.084633 0.056762 11.639672 15.324058 -4289 0.043415 0.030382 9.919635 11.697311 -4290 0.058668 0.027973 8.770440 13.347253 -4291 0.059351 0.034466 6.119897 11.348314 -4292 0.125346 0.086274 7.401406 12.420388 -4293 0.056350 0.023436 10.254423 14.606895 -4294 0.091979 0.073825 11.020262 12.864020 -4295 0.085218 0.065711 11.250990 9.720468 -4296 0.083408 0.048323 11.790475 9.930677 -4297 0.047398 0.030053 15.446699 19.425108 -4298 0.109287 0.089622 10.034920 13.313834 -4299 0.069061 0.057223 11.187383 13.501874 -4300 0.079951 0.036503 10.464049 14.596994 -4301 0.062839 0.047838 7.456921 7.534445 -4302 0.079869 0.042813 7.489466 11.841482 -4303 0.072479 0.058644 7.719994 12.809859 -4304 0.046946 0.047680 15.228142 15.158066 -4305 0.054044 0.035243 11.542693 10.187155 -4306 0.083615 0.089524 9.013935 9.730711 -4307 0.085570 0.030538 8.780962 13.555002 -4308 0.090071 0.036657 7.420725 10.740732 -4309 0.095273 0.061491 18.126629 18.594474 -4310 0.074423 0.060044 11.330967 13.675027 -4311 0.068457 0.057041 11.168515 10.403952 -4312 0.253110 0.177192 10.417081 10.484945 -4313 0.064811 0.034925 9.483270 7.636960 -4314 0.070549 0.028435 7.370093 17.616944 -4315 0.059162 0.034412 9.393963 13.909142 -4316 0.150725 0.081736 14.392737 16.019791 -4317 0.068084 0.086157 11.209900 12.269639 -4318 0.090033 0.052914 13.209781 15.741834 -4319 0.068756 0.080359 9.041081 10.906545 -4320 0.072342 0.106171 19.817679 29.890440 -4321 0.066002 0.026609 9.720951 13.878629 -4322 0.077182 0.030325 12.353435 16.446256 -4323 0.097753 0.041590 10.631374 11.879202 -4324 0.078885 0.043773 12.315764 14.786802 -4325 0.176669 0.056673 6.953050 8.719607 -4326 0.089952 0.055887 9.364720 11.649745 -4327 0.063988 0.040077 7.229867 10.109310 -4328 0.067577 0.031795 10.307378 17.640153 -4329 0.092555 0.032196 9.302895 13.170437 -4330 0.096232 0.042587 6.884108 8.653215 -4331 0.070831 0.023396 10.114128 13.528589 -4332 0.090524 0.044287 10.402661 13.857419 -4333 0.090152 0.053990 8.593920 16.145288 -4334 0.080564 0.049278 12.887237 18.659300 -4335 0.149772 0.061542 9.730726 11.660038 -4336 0.071965 0.063530 12.816633 18.464809 -4337 0.079038 0.048235 7.445178 9.689671 -4338 0.068850 0.054074 10.514322 16.636436 -4339 0.085357 0.069662 7.975587 12.529858 -4340 0.064995 0.041377 8.215418 9.521379 -4341 0.072455 0.025196 8.479117 10.031850 -4342 0.077738 0.042526 7.471875 10.598036 -4343 0.070294 0.034754 10.770134 15.366605 -4344 0.094827 0.041170 7.806595 12.986625 -4345 0.069561 0.039151 8.936933 15.078505 -4346 0.063784 0.037052 8.412211 13.624252 -4347 0.065263 0.041159 9.203665 8.162188 -4348 0.093710 0.064243 12.133899 19.124996 -4349 0.184057 0.250445 18.028848 20.866584 -4350 0.205416 0.224239 7.425583 12.443479 -4351 0.081333 0.041078 8.336969 11.017265 -4352 0.038890 0.019662 7.814633 8.083740 -4353 0.077014 0.129864 10.863175 12.848512 -4354 0.097980 0.064927 13.352838 15.633969 -4355 0.117736 0.187797 11.757839 12.504537 -4356 0.260108 0.047085 6.967435 12.951042 -4357 0.238757 0.072303 9.370426 17.743243 -4358 0.078820 0.039548 8.944815 11.976847 -4359 0.058270 0.047400 12.835053 14.790526 -4360 0.077154 0.048643 7.470441 8.846102 -4361 0.057846 0.038319 10.205161 14.439578 -4362 0.104233 0.072117 10.426425 17.252092 -4363 0.076684 0.057040 8.743065 17.218098 -4364 0.141187 0.079705 14.862560 17.667086 -4365 0.064719 0.030223 12.195708 11.110198 -4366 0.044577 0.025531 11.126955 13.470290 -4367 0.082043 0.048711 8.942768 13.120659 -4368 0.072180 0.062235 10.860522 18.570730 -4369 0.040919 0.033531 8.257332 12.042541 -4370 0.057723 0.032032 5.570839 8.250842 -4371 0.080867 0.048567 10.454967 16.595578 -4372 0.092315 0.085885 9.498886 14.663335 -4373 0.234628 0.288491 6.348967 12.491517 -4374 0.115918 0.064564 12.896014 22.787666 -4375 0.049789 0.026147 9.899596 13.346146 -4376 0.246122 0.049809 8.747236 12.419211 -4377 0.057111 0.027310 11.251405 9.843235 -4378 0.058931 0.048789 8.501502 14.886024 -4379 0.243902 0.055979 7.749272 7.491125 -4380 0.065003 0.043419 8.571704 9.493520 -4381 0.098212 0.066415 7.742636 16.341490 -4382 0.081217 0.031928 8.310674 11.483683 -4383 0.170806 0.072594 10.997811 12.242313 -4384 0.058037 0.024047 8.623477 10.416623 -4385 0.052814 0.045119 7.766713 14.633294 -4386 0.086956 0.067157 14.161341 13.954520 -4387 0.072611 0.075682 11.280467 14.586999 -4388 0.278300 0.079098 13.304098 16.893614 -4389 0.072583 0.062628 9.623097 9.271851 -4390 0.178957 0.053388 12.490370 23.667390 -4391 0.271545 0.078365 11.231170 14.107152 -4392 0.075511 0.042799 10.528493 16.830384 -4393 0.155811 0.085300 10.316141 17.161854 -4394 0.056295 0.057177 9.778951 13.752211 -4395 0.059240 0.044437 12.876406 16.957047 -4396 0.266196 0.067534 11.521899 13.458466 -4397 0.091484 0.097843 11.444520 10.658631 -4398 0.047667 0.020754 10.961211 16.778376 -4399 0.055370 0.024095 13.320969 15.256073 -4400 0.099705 0.091322 12.729929 12.234459 -4401 0.085353 0.068477 12.075536 14.431524 -4402 0.032711 0.011448 8.888473 10.451763 -4403 0.077900 0.029165 7.746583 15.272549 -4404 0.091874 0.200166 12.919434 20.727618 -4405 0.075047 0.055145 13.264638 11.440822 -4406 0.069001 0.052105 11.242634 15.971243 -4407 0.030794 0.027537 5.209241 8.408088 -4408 0.063534 0.028067 6.379122 9.897662 -4409 0.098660 0.081294 10.814415 12.968220 -4410 0.075291 0.037015 8.980122 13.469029 -4411 0.150906 0.068481 10.667397 12.066397 -4412 0.057782 0.034233 7.959458 11.838758 -4413 0.090713 0.072256 9.025605 10.415912 -4414 0.080948 0.057553 9.110657 11.311150 -4415 0.080511 0.039277 7.766352 9.698507 -4416 0.187293 0.225916 13.759424 16.535660 -4417 0.077433 0.048535 12.433746 15.589355 -4418 0.060875 0.029428 9.634694 8.425097 -4419 0.060807 0.030191 5.114042 9.189416 -4420 0.094388 0.057082 12.549158 17.133413 -4421 0.069476 0.050550 6.011087 7.576443 -4422 0.260296 0.282319 17.066660 20.869316 -4423 0.093322 0.081908 7.040041 11.606775 -4424 0.072282 0.047772 11.485567 18.601712 -4425 0.078695 0.066680 6.066368 7.017805 -4426 0.086748 0.041506 9.031261 15.059203 -4427 0.061473 0.024746 6.966658 8.433673 -4428 0.073358 0.036026 9.368854 13.277445 -4429 0.070977 0.052212 11.064988 15.663886 -4430 0.073135 0.063634 11.798280 19.266459 -4431 0.098594 0.059815 10.200910 12.229253 -4432 0.091206 0.043579 6.968698 10.520788 -4433 0.093602 0.080467 11.502113 17.970108 -4434 0.076879 0.127533 13.777079 14.864442 -4435 0.078014 0.044946 7.942565 13.514294 -4436 0.089963 0.050723 11.173390 16.979808 -4437 0.037583 0.015235 7.399444 13.563459 -4438 0.068501 0.041151 10.885915 13.403072 -4439 0.097578 0.059481 8.188837 11.990929 -4440 0.074058 0.040316 7.803530 13.125064 -4441 0.073198 0.069848 10.966475 11.441520 -4442 0.056086 0.045886 7.492666 11.370710 -4443 0.069480 0.048349 7.948483 9.352636 -4444 0.062404 0.032990 6.658833 8.670530 -4445 0.047387 0.042914 7.558746 11.185340 -4446 0.045572 0.022634 6.927946 11.890798 -4447 0.063002 0.036107 11.011534 13.242668 -4448 0.096074 0.046822 14.121486 11.178864 -4449 0.029794 0.023881 7.319665 10.180466 -4450 0.287854 0.084312 7.768774 12.071023 -4451 0.068447 0.032592 8.934187 7.834601 -4452 0.064015 0.068955 10.379804 14.279286 -4453 0.086262 0.043411 7.566862 9.504706 -4454 0.049896 0.029032 7.559686 8.450351 -4455 0.108547 0.051902 10.685483 12.831867 -4456 0.146490 0.053445 6.982243 10.525257 -4457 0.048070 0.041324 7.317483 9.557857 -4458 0.056748 0.038907 9.855157 9.661440 -4459 0.048549 0.024647 9.046123 13.581789 -4460 0.038485 0.027094 8.234942 10.455415 -4461 0.125353 0.061713 9.497757 9.692072 -4462 0.059932 0.023703 8.708967 14.857746 -4463 0.058855 0.050413 8.901385 12.755308 -4464 0.089556 0.051180 10.167389 15.539726 -4465 0.079647 0.050521 10.055925 12.800863 -4466 0.051545 0.032340 7.257867 9.694312 -4467 0.149421 0.057183 5.828687 9.428416 -4468 0.167641 0.064164 12.737168 15.003087 -4469 0.283811 0.062828 9.550238 9.811223 -4470 0.096393 0.063180 6.885796 16.123576 -4471 0.051048 0.045127 13.387445 20.197474 -4472 0.071878 0.025907 10.961252 11.105516 -4473 0.192915 0.033115 12.483534 14.237667 -4474 0.196946 0.070745 9.941781 19.264015 -4475 0.048315 0.037600 8.005146 11.956568 -4476 0.144665 0.060714 6.944812 13.719968 -4477 0.253978 0.052909 14.264095 14.107363 -4478 0.054863 0.025642 6.951049 9.465981 -4479 0.060234 0.035887 17.594959 13.762734 -4480 0.096127 0.062796 10.082160 11.741124 -4481 0.053857 0.030025 13.561943 19.969158 -4482 0.097402 0.048933 8.239476 16.390412 -4483 0.062506 0.053996 8.612345 12.569469 -4484 0.083194 0.064433 7.336472 11.777134 -4485 0.079470 0.065777 10.384774 17.916340 -4486 0.212877 0.081509 12.586427 15.423133 -4487 0.095053 0.029772 10.319504 12.701132 -4488 0.079243 0.037511 6.395049 14.664350 -4489 0.063614 0.040188 11.038393 10.805494 -4490 0.248070 0.035116 14.694131 18.205677 -4491 0.094365 0.044007 7.137356 9.139371 -4492 0.054067 0.027901 6.891618 9.995622 -4493 0.081334 0.061670 10.619833 9.630187 -4494 0.052975 0.035257 12.397633 11.526894 -4495 0.126579 0.059519 11.578151 19.667586 -4496 0.102267 0.045053 9.755165 9.485691 -4497 0.139062 0.077732 11.059664 14.562359 -4498 0.091809 0.052916 9.929269 11.939695 -4499 0.070889 0.038177 9.208387 11.705809 -4500 0.072986 0.043664 8.168478 8.381345 -4501 0.236948 0.072326 11.285353 12.819737 -4502 0.086406 0.093985 12.273033 11.161831 -4503 0.068880 0.029948 11.688239 13.345792 -4504 0.072388 0.068223 12.108296 16.638868 -4505 0.075962 0.065459 13.208335 13.417071 -4506 0.178163 0.056048 6.749073 7.657419 -4507 0.054895 0.037919 12.567940 16.153482 -4508 0.207160 0.077149 12.738716 15.251842 -4509 0.109779 0.131314 13.668674 15.566342 -4510 0.059414 0.040519 8.313185 13.352063 -4511 0.061015 0.037172 10.341778 11.045747 -4512 0.068033 0.059180 7.592273 13.169797 -4513 0.098964 0.077791 6.599344 13.391806 -4514 0.087836 0.054052 11.983100 10.232230 -4515 0.049970 0.035688 9.924682 11.453716 -4516 0.092308 0.047507 10.579502 14.759358 -4517 0.111752 0.058863 10.699588 12.215599 -4518 0.074168 0.058127 10.091617 12.632652 -4519 0.269518 0.052995 12.158942 12.552191 -4520 0.076140 0.051351 12.329735 15.397061 -4521 0.057714 0.045337 7.671169 8.852013 -4522 0.063137 0.050157 10.542301 8.790712 -4523 0.096083 0.063502 12.861563 16.069258 -4524 0.291555 0.046162 14.146877 13.334343 -4525 0.095084 0.064720 13.465139 17.790345 -4526 0.072384 0.053998 7.539499 11.789759 -4527 0.197182 0.049191 11.989905 16.449545 -4528 0.206874 0.052106 8.469458 10.566331 -4529 0.072279 0.047942 10.647366 16.154595 -4530 0.058309 0.028636 11.495789 14.973591 -4531 0.088039 0.052197 14.968519 12.599395 -4532 0.068018 0.030472 7.044815 10.579197 -4533 0.121565 0.086650 8.336789 13.446199 -4534 0.073662 0.048444 9.590664 13.015976 -4535 0.083546 0.062488 8.143965 9.607842 -4536 0.051251 0.026356 9.075510 15.035924 -4537 0.039082 0.023223 6.140645 9.870595 -4538 0.074617 0.046290 9.514004 8.971307 -4539 0.058813 0.023948 10.083335 11.848267 -4540 0.070130 0.028231 5.965205 9.038859 -4541 0.073883 0.035573 9.631643 9.718917 -4542 0.069798 0.040186 14.456882 18.710435 -4543 0.094614 0.037663 6.712213 9.656226 -4544 0.093929 0.062161 11.126992 13.598921 -4545 0.076781 0.044596 8.185177 10.294905 -4546 0.074133 0.031529 13.968146 18.537427 -4547 0.063111 0.042077 13.810175 14.928837 -4548 0.065618 0.055293 8.561152 15.923451 -4549 0.055804 0.035632 11.455935 15.334715 -4550 0.244111 0.078477 16.053193 16.486685 -4551 0.038788 0.032454 5.931053 9.149986 -4552 0.091331 0.080916 7.085579 9.804272 -4553 0.068569 0.044379 7.863959 12.908477 -4554 0.042729 0.033035 7.975824 10.030507 -4555 0.159796 0.081397 12.375315 15.445192 -4556 0.084012 0.070670 14.578284 12.623297 -4557 0.200231 0.068007 10.191162 16.390896 -4558 0.056499 0.038688 10.261599 11.526295 -4559 0.196438 0.084632 8.872050 14.840044 -4560 0.114329 0.081322 7.172609 10.826760 -4561 0.072302 0.047693 9.069910 13.633898 -4562 0.075857 0.035821 8.168559 10.633705 -4563 0.042419 0.036322 10.721483 10.415754 -4564 0.081137 0.041211 10.185430 13.115967 -4565 0.068426 0.049425 9.490613 12.030123 -4566 0.066125 0.030834 7.644381 11.001751 -4567 0.089488 0.067329 11.943080 18.157344 -4568 0.051325 0.029848 6.605825 9.073810 -4569 0.291796 0.055549 9.992086 14.597179 -4570 0.244201 0.171283 12.214948 13.646278 -4571 0.069212 0.026744 9.194128 10.654722 -4572 0.086456 0.038171 8.083160 15.258866 -4573 0.065714 0.030552 7.464125 9.724805 -4574 0.090352 0.068265 15.047652 17.533439 -4575 0.054338 0.064022 7.873793 11.792743 -4576 0.207864 0.123761 12.960407 8.279060 -4577 0.061281 0.042786 10.526786 13.535002 -4578 0.098988 0.103268 9.886172 15.293099 -4579 0.090263 0.056209 11.247634 11.931123 -4580 0.096580 0.036670 11.181871 16.475647 -4581 0.096644 0.044781 9.596246 15.745751 -4582 0.078393 0.058132 9.923944 13.795127 -4583 0.085133 0.084725 12.829024 14.416874 -4584 0.076878 0.049315 9.949085 11.424444 -4585 0.076124 0.054377 11.365837 16.179239 -4586 0.190781 0.064699 10.920232 11.937294 -4587 0.136176 0.087755 12.163389 12.641745 -4588 0.088934 0.060090 13.825246 17.800373 -4589 0.054445 0.040221 12.883865 21.072879 -4590 0.055372 0.030487 9.964269 12.316375 -4591 0.048462 0.041886 12.760369 12.102329 -4592 0.067650 0.042381 8.301665 10.614337 -4593 0.095566 0.037013 7.466729 10.700416 -4594 0.138449 0.057299 12.431158 13.335317 -4595 0.098177 0.050693 8.780870 13.600370 -4596 0.067698 0.026156 9.957725 14.326612 -4597 0.053822 0.035576 9.420003 9.230100 -4598 0.062264 0.033767 7.295125 10.319632 -4599 0.059360 0.026938 6.775373 7.447531 -4600 0.079281 0.040186 9.889467 6.338745 -4601 0.136925 0.062875 15.707867 18.208460 -4602 0.069296 0.043336 10.131013 16.489444 -4603 0.077886 0.061469 9.721281 15.860250 -4604 0.055330 0.029527 10.102937 9.423341 -4605 0.064911 0.024918 6.889305 10.880474 -4606 0.117082 0.078068 8.725515 11.512870 -4607 0.040205 0.044092 8.660058 11.767221 -4608 0.036104 0.029378 8.161589 11.589324 -4609 0.055214 0.035669 8.437585 12.387340 -4610 0.073395 0.060919 11.809182 13.880994 -4611 0.056716 0.054212 7.020404 14.322122 -4612 0.160339 0.066296 12.350120 14.798013 -4613 0.072552 0.059817 10.841219 11.976603 -4614 0.064022 0.040050 9.930130 10.202032 -4615 0.099548 0.080599 11.271896 16.299723 -4616 0.144247 0.293137 12.923080 18.336172 -4617 0.043563 0.020464 9.158034 11.182866 -4618 0.080324 0.057859 6.919051 9.349559 -4619 0.046777 0.038754 9.160837 11.557348 -4620 0.041972 0.043589 8.537297 9.810085 -4621 0.047376 0.033263 7.400741 11.378875 -4622 0.075254 0.045756 9.545573 11.541856 -4623 0.076635 0.069223 12.652413 14.388199 -4624 0.064828 0.039023 9.797626 13.693042 -4625 0.039766 0.032242 7.507842 6.081679 -4626 0.048881 0.023052 6.170011 14.201384 -4627 0.066865 0.067785 11.010001 15.901661 -4628 0.066046 0.033025 12.182069 11.019311 -4629 0.048773 0.034777 9.014984 10.982919 -4630 0.257468 0.047015 15.174537 17.959277 -4631 0.065494 0.058967 16.274035 18.403249 -4632 0.047617 0.033393 8.563109 11.315955 -4633 0.081362 0.024547 8.073693 6.684134 -4634 0.068794 0.029794 8.318855 14.481156 -4635 0.035347 0.032044 8.946575 9.150315 -4636 0.075288 0.043485 10.831991 14.361040 -4637 0.090000 0.030716 9.493734 10.063930 -4638 0.085916 0.056699 10.228621 16.405161 -4639 0.062871 0.051703 10.867701 14.975691 -4640 0.153956 0.097492 8.463073 12.625916 -4641 0.075482 0.043882 6.647068 11.103344 -4642 0.084139 0.053394 15.063216 14.513311 -4643 0.096045 0.053444 10.634883 15.446631 -4644 0.083002 0.089326 7.563057 10.635684 -4645 0.066707 0.029422 5.810067 10.040157 -4646 0.251492 0.070128 7.569990 13.818897 -4647 0.056339 0.034094 7.220219 8.620824 -4648 0.089067 0.050938 13.005675 13.716900 -4649 0.093075 0.065557 9.783957 14.225764 -4650 0.052761 0.032891 12.300058 19.016391 -4651 0.071879 0.030798 7.731063 11.589771 -4652 0.096911 0.030966 10.696011 10.482998 -4653 0.046085 0.030066 11.518522 15.088304 -4654 0.093710 0.065650 9.468652 13.818385 -4655 0.047510 0.032801 7.997807 12.164802 -4656 0.273247 0.075363 10.790313 21.723997 -4657 0.063499 0.060555 9.609415 10.874950 -4658 0.295963 0.078378 14.334708 11.338405 -4659 0.081000 0.031658 11.744967 14.030695 -4660 0.064445 0.066066 10.117807 13.334126 -4661 0.066831 0.036976 7.385307 12.464313 -4662 0.148569 0.124588 15.404615 19.408888 -4663 0.081034 0.043277 7.565573 10.064457 -4664 0.050252 0.034643 8.991613 11.206175 -4665 0.033117 0.027928 9.335751 9.922263 -4666 0.037486 0.026951 14.627458 16.300242 -4667 0.090356 0.044370 9.170825 17.750150 -4668 0.057783 0.037657 10.439813 14.704506 -4669 0.052228 0.031582 5.794828 7.185659 -4670 0.085147 0.038611 11.536902 13.930754 -4671 0.052090 0.022587 10.718394 11.505899 -4672 0.076751 0.047066 13.207467 10.807152 -4673 0.056688 0.031961 12.929718 15.543829 -4674 0.225039 0.079702 7.717676 10.223882 -4675 0.061563 0.023549 13.867917 13.886374 -4676 0.268707 0.080395 7.709221 10.564156 -4677 0.097174 0.056023 9.858668 12.857568 -4678 0.062960 0.025888 9.453930 10.825269 -4679 0.061893 0.033143 11.820377 14.863948 -4680 0.062327 0.034575 7.651515 10.137942 -4681 0.063619 0.052230 11.945598 10.800274 -4682 0.071933 0.026582 7.482917 10.342123 -4683 0.203853 0.097734 9.267277 13.390990 -4684 0.054850 0.035923 9.326263 13.429456 -4685 0.211688 0.246129 10.985320 12.634459 -4686 0.057423 0.034051 7.578099 15.407946 -4687 0.119865 0.098577 11.977878 17.653389 -4688 0.079448 0.037913 6.900686 10.290625 -4689 0.078987 0.050997 14.057153 13.033913 -4690 0.275941 0.108863 7.954501 10.811832 -4691 0.051482 0.033190 8.453586 10.053015 -4692 0.062303 0.033511 8.481615 9.958906 -4693 0.068763 0.039161 11.858971 13.123069 -4694 0.077678 0.048670 8.999855 12.157668 -4695 0.070216 0.043914 12.649731 12.961745 -4696 0.091844 0.029657 7.704110 12.554322 -4697 0.277877 0.064530 18.033551 13.647144 -4698 0.083252 0.079148 8.320131 10.655962 -4699 0.088157 0.045114 7.613336 12.620982 -4700 0.067691 0.033972 9.915016 11.977648 -4701 0.064722 0.030955 7.391010 11.979692 -4702 0.181565 0.080907 7.367084 8.531003 -4703 0.167337 0.046126 10.785975 11.731784 -4704 0.056342 0.022334 10.916318 12.639699 -4705 0.068813 0.037746 10.873087 13.580176 -4706 0.051038 0.034935 7.440608 11.857120 -4707 0.098952 0.060597 8.169168 13.203872 -4708 0.066879 0.048421 13.928818 16.376334 -4709 0.053059 0.017682 10.397284 12.284548 -4710 0.077384 0.053071 8.582839 9.607334 -4711 0.076565 0.041590 5.766270 6.317571 -4712 0.082753 0.077580 11.225196 11.500868 -4713 0.082279 0.044681 8.873135 12.039865 -4714 0.223993 0.059467 9.167167 12.398495 -4715 0.156779 0.067690 14.790522 21.544570 -4716 0.098573 0.061169 9.773672 15.357726 -4717 0.096918 0.037054 9.632137 17.290337 -4718 0.043283 0.025428 13.227729 10.971703 -4719 0.066297 0.034312 12.713963 12.409265 -4720 0.061867 0.061419 10.018385 15.964877 -4721 0.210380 0.147574 11.663607 17.567407 -4722 0.297492 0.081735 13.054969 17.790608 -4723 0.130475 0.059629 10.296585 13.011948 -4724 0.280012 0.073123 12.044924 11.232698 -4725 0.065252 0.025107 10.556244 20.210956 -4726 0.079148 0.025511 9.302223 10.541982 -4727 0.057822 0.032989 7.477024 9.605273 -4728 0.249639 0.076134 11.587522 11.043230 -4729 0.064094 0.020702 6.075553 9.246508 -4730 0.041927 0.030468 9.448294 10.358245 -4731 0.071975 0.066496 8.025000 16.758938 -4732 0.077095 0.034109 8.598820 10.784326 -4733 0.046946 0.022878 7.242594 7.729462 -4734 0.060482 0.067148 9.419375 16.414517 -4735 0.068180 0.025681 10.328284 10.104039 -4736 0.079325 0.045538 7.808063 9.143178 -4737 0.071407 0.051190 8.555246 12.898357 -4738 0.084609 0.048928 8.420121 14.029443 -4739 0.074655 0.033820 9.294383 13.277353 -4740 0.039930 0.017054 5.489815 8.272456 -4741 0.072013 0.051178 12.932511 14.151013 -4742 0.051535 0.028653 9.500046 10.770297 -4743 0.071770 0.045761 9.448150 9.699388 -4744 0.057058 0.026006 6.471807 10.859736 -4745 0.055123 0.037188 8.888087 8.185160 -4746 0.109905 0.134813 15.562419 20.841047 -4747 0.063238 0.038577 11.483358 12.527871 -4748 0.081979 0.045359 9.471756 15.921495 -4749 0.079864 0.036533 9.255318 16.629702 -4750 0.056248 0.036142 9.638575 7.371248 -4751 0.074996 0.051425 8.852043 12.037072 -4752 0.079429 0.062010 8.097034 13.246630 -4753 0.054029 0.027546 8.154045 12.800161 -4754 0.061830 0.035625 9.152536 15.756634 -4755 0.082881 0.047006 12.622304 19.510671 -4756 0.060063 0.026285 8.427066 11.127192 -4757 0.068974 0.034502 7.569869 13.801005 -4758 0.061135 0.024965 10.028205 12.150943 -4759 0.037437 0.020149 5.741799 7.859700 -4760 0.149861 0.075368 12.707618 13.957662 -4761 0.055264 0.055305 8.150301 9.565583 -4762 0.072517 0.050307 9.931104 9.935890 -4763 0.099121 0.096175 12.820025 17.156201 -4764 0.049147 0.028170 11.199779 15.029320 -4765 0.068815 0.045223 9.972355 12.889526 -4766 0.073628 0.038641 6.670776 10.456740 -4767 0.282537 0.084163 10.950796 12.325491 -4768 0.053046 0.025669 8.694828 10.713068 -4769 0.056461 0.036157 7.631717 7.264532 -4770 0.086712 0.079536 9.730692 18.359859 -4771 0.052170 0.029589 7.231944 7.962789 -4772 0.047545 0.021951 9.468403 10.781935 -4773 0.172856 0.135012 17.787428 22.710485 -4774 0.255937 0.098631 10.786671 12.260714 -4775 0.099830 0.039518 9.734488 11.396078 -4776 0.087996 0.045960 8.569809 16.445683 -4777 0.092027 0.053269 11.299372 9.435988 -4778 0.099285 0.053853 9.251875 11.499938 -4779 0.092738 0.041777 7.647147 12.289861 -4780 0.234628 0.272164 10.188984 12.188329 -4781 0.152079 0.053026 11.084674 11.898418 -4782 0.056809 0.034427 12.548957 14.889017 -4783 0.230524 0.088805 11.921900 14.406671 -4784 0.069146 0.047304 8.868096 10.898131 -4785 0.076178 0.034735 8.921808 12.716232 -4786 0.092338 0.051225 10.581933 20.713685 -4787 0.049759 0.036373 11.773990 12.490924 -4788 0.051996 0.027851 9.697680 16.449708 -4789 0.072080 0.045304 8.222908 10.257637 -4790 0.273688 0.080134 13.641779 18.186554 -4791 0.083055 0.059547 19.163388 19.353059 -4792 0.067959 0.045219 8.868184 11.333872 -4793 0.060969 0.045448 9.787018 12.258561 -4794 0.186780 0.068502 7.605970 9.181386 -4795 0.080637 0.063984 8.389369 10.598629 -4796 0.286237 0.061481 7.039140 8.712185 -4797 0.216371 0.070018 12.422798 16.508262 -4798 0.076063 0.057612 8.819620 11.262523 -4799 0.087411 0.043283 9.195383 9.420922 -4800 0.213674 0.099884 11.497840 16.902780 -4801 0.061421 0.018843 9.182657 15.847455 -4802 0.049426 0.034079 10.556893 17.569198 -4803 0.232093 0.052772 9.385879 12.822806 -4804 0.039561 0.031861 7.502571 12.725338 -4805 0.097053 0.031238 9.753683 10.196420 -4806 0.062503 0.056575 11.718577 16.478737 -4807 0.069015 0.047274 10.624124 13.469749 -4808 0.091339 0.047607 15.316253 14.375742 -4809 0.125749 0.074959 9.999798 15.127788 -4810 0.216546 0.057477 9.476361 13.760691 -4811 0.265438 0.055534 8.341978 14.283606 -4812 0.055210 0.039842 9.277342 14.673228 -4813 0.086637 0.037806 9.963477 22.826311 -4814 0.079758 0.050553 15.828707 16.358651 -4815 0.078096 0.043106 7.726642 12.094326 -4816 0.053492 0.030216 6.394329 6.166212 -4817 0.057517 0.040159 12.357054 16.024295 -4818 0.083302 0.037137 8.986025 12.655732 -4819 0.223762 0.043930 11.409215 19.686046 -4820 0.078549 0.047447 7.031352 12.592699 -4821 0.239891 0.071743 11.991629 10.560626 -4822 0.260541 0.097036 9.066291 10.147561 -4823 0.055323 0.022591 8.529343 12.399946 -4824 0.070656 0.035191 7.963543 10.858257 -4825 0.070823 0.036613 7.828434 14.693906 -4826 0.050231 0.033148 10.500098 8.297301 -4827 0.069626 0.058867 10.982967 14.414806 -4828 0.067342 0.022432 12.789439 10.150094 -4829 0.091672 0.068117 9.162339 13.033257 -4830 0.225208 0.050961 8.940637 12.824480 -4831 0.058383 0.022567 9.223677 11.252009 -4832 0.051783 0.021539 10.789635 17.515708 -4833 0.078260 0.037316 9.352450 12.916345 -4834 0.052191 0.033237 14.507607 14.883977 -4835 0.063796 0.039270 7.361445 10.745944 -4836 0.186395 0.075782 12.011481 11.864933 -4837 0.096171 0.044228 7.605509 14.773933 -4838 0.047633 0.027345 7.605246 14.281670 -4839 0.074594 0.040516 9.830468 14.841084 -4840 0.058291 0.030569 6.763460 10.221414 -4841 0.076878 0.035260 11.573920 14.271978 -4842 0.094797 0.033763 6.319816 10.394682 -4843 0.276168 0.073904 10.600584 12.321609 -4844 0.063047 0.036122 7.628501 8.579115 -4845 0.049033 0.044238 8.460655 10.802765 -4846 0.047200 0.024162 11.222676 10.509067 -4847 0.068594 0.027025 9.762842 16.168132 -4848 0.045013 0.032528 7.106917 7.896876 -4849 0.046856 0.039792 10.860455 11.083592 -4850 0.274974 0.035452 13.276092 17.454630 -4851 0.090667 0.044139 13.378222 18.058167 -4852 0.067863 0.049611 8.894487 16.464009 -4853 0.183305 0.050802 10.932574 13.121701 -4854 0.059195 0.024225 7.188289 11.773236 -4855 0.077466 0.079295 10.954106 9.743749 -4856 0.064470 0.023271 11.932943 12.190347 -4857 0.066505 0.066646 7.441555 7.983496 -4858 0.088895 0.055090 9.481444 10.182199 -4859 0.054119 0.050656 10.885066 12.589823 -4860 0.090822 0.059219 6.583149 10.009374 -4861 0.057176 0.039746 10.896147 11.838219 -4862 0.091219 0.069433 9.185322 10.938351 -4863 0.078532 0.041879 12.777817 21.580863 -4864 0.072404 0.072833 5.550583 9.800779 -4865 0.076626 0.040952 11.584141 12.072381 -4866 0.262106 0.054559 14.989431 21.810124 -4867 0.248553 0.054974 12.708024 13.825978 -4868 0.038284 0.023490 9.661710 19.806592 -4869 0.267963 0.069100 12.337993 11.805319 -4870 0.088477 0.078672 13.091643 17.438189 -4871 0.059676 0.043432 9.842397 9.834960 -4872 0.288958 0.069870 8.715476 8.658972 -4873 0.069534 0.056051 12.158609 23.223564 -4874 0.063307 0.040376 6.653654 7.526820 -4875 0.057977 0.033696 9.819835 18.254936 -4876 0.041633 0.020408 8.376720 8.799256 -4877 0.096631 0.058397 11.466062 17.556297 -4878 0.075104 0.047229 7.310985 10.046990 -4879 0.076820 0.063842 8.343589 13.250012 -4880 0.243040 0.065167 10.304071 17.069597 -4881 0.091797 0.063577 12.391713 19.712531 -4882 0.097622 0.040798 14.724554 17.778782 -4883 0.061059 0.054958 8.510863 8.031349 -4884 0.054837 0.038579 8.156092 9.273487 -4885 0.083717 0.047923 14.117790 18.448409 -4886 0.063257 0.025243 15.139030 13.451903 -4887 0.052092 0.032147 10.247086 9.556412 -4888 0.041296 0.048876 8.023703 12.981134 -4889 0.071405 0.037674 8.156954 11.493666 -4890 0.091899 0.068541 12.134182 13.661064 -4891 0.105956 0.074179 7.497653 15.426690 -4892 0.153413 0.049466 13.897832 16.678520 -4893 0.091470 0.051253 6.369540 11.392558 -4894 0.067574 0.058934 9.512955 12.560833 -4895 0.089525 0.050421 10.240380 14.653299 -4896 0.074110 0.058662 7.829979 15.804199 -4897 0.097137 0.069313 14.398588 12.084798 -4898 0.057080 0.030955 9.408139 14.639350 -4899 0.076694 0.048757 8.920986 12.220894 -4900 0.084641 0.042626 7.493771 8.778672 -4901 0.053130 0.023529 8.459140 9.863288 -4902 0.068663 0.039309 6.668620 13.200271 -4903 0.063791 0.047117 10.773506 14.392019 -4904 0.066577 0.034961 9.289120 10.516253 -4905 0.051113 0.022082 8.509162 10.220345 -4906 0.095937 0.083638 9.854527 11.067666 -4907 0.089607 0.032493 9.374816 14.556000 -4908 0.118175 0.082035 6.075014 8.719589 -4909 0.061932 0.022511 12.024389 15.942285 -4910 0.086870 0.048333 10.364799 13.815696 -4911 0.050587 0.029360 7.370824 10.603566 -4912 0.071563 0.050572 8.111150 7.647892 -4913 0.114820 0.088292 11.558783 15.720325 -4914 0.066156 0.028671 7.607565 14.946326 -4915 0.069230 0.026254 9.025415 12.191671 -4916 0.078802 0.079314 11.080302 18.127056 -4917 0.066976 0.021762 8.339463 12.567033 -4918 0.062354 0.033629 7.058893 10.237537 -4919 0.045223 0.029084 5.175872 6.587299 -4920 0.062680 0.043308 8.283707 9.233330 -4921 0.253196 0.061320 9.013874 14.180752 -4922 0.269566 0.049798 9.817905 7.354942 -4923 0.248706 0.054751 14.048278 19.840201 -4924 0.055300 0.027274 8.277079 13.402354 -4925 0.086681 0.043288 11.702462 12.992592 -4926 0.068194 0.037455 9.496959 13.977135 -4927 0.071902 0.046606 11.130782 14.012798 -4928 0.099294 0.052718 17.584381 15.589117 -4929 0.188099 0.133395 14.069817 24.109559 -4930 0.068071 0.046455 11.446563 14.414295 -4931 0.078531 0.028260 11.231241 12.146473 -4932 0.050703 0.027362 7.742690 10.987350 -4933 0.169160 0.056155 15.562216 15.206731 -4934 0.093079 0.050277 16.266674 19.746810 -4935 0.051645 0.031104 12.329483 19.393959 -4936 0.048251 0.022736 11.293848 12.437399 -4937 0.065439 0.035194 11.580168 14.693062 -4938 0.032625 0.020829 7.706858 11.532527 -4939 0.085243 0.032681 9.801201 12.660376 -4940 0.037643 0.033856 11.205449 14.088511 -4941 0.054341 0.033000 8.749705 10.793753 -4942 0.041703 0.027950 8.102308 8.371965 -4943 0.070431 0.033438 13.384699 13.527404 -4944 0.250817 0.061136 11.042129 15.683308 -4945 0.082565 0.033293 11.994587 9.940138 -4946 0.051219 0.019716 7.960436 14.777696 -4947 0.080556 0.057288 10.009709 11.502733 -4948 0.057063 0.026929 7.251749 8.626847 -4949 0.143354 0.079053 9.998337 13.698433 -4950 0.086598 0.059975 13.326588 16.362154 -4951 0.076065 0.065819 11.691713 14.568261 -4952 0.063151 0.043840 8.085822 10.532141 -4953 0.078256 0.053483 10.895914 14.011604 -4954 0.048930 0.033018 8.284686 8.841475 -4955 0.097223 0.044646 8.541288 9.360313 -4956 0.057588 0.039021 9.502137 9.687198 -4957 0.087261 0.051015 7.155874 15.457045 -4958 0.097982 0.075410 10.237582 16.648035 -4959 0.088050 0.060505 11.608472 14.160151 -4960 0.092900 0.048381 11.746149 9.220327 -4961 0.053175 0.047537 10.783871 17.975391 -4962 0.071078 0.041857 6.705341 7.905042 -4963 0.072424 0.050023 16.085625 20.610092 -4964 0.099164 0.037991 9.416486 14.117461 -4965 0.077977 0.044069 10.558061 12.395309 -4966 0.071685 0.064824 11.505130 14.406533 -4967 0.079828 0.057158 11.276556 11.302689 -4968 0.097650 0.064422 11.380222 11.463302 -4969 0.055627 0.027684 6.108032 9.557103 -4970 0.045304 0.030219 6.607884 6.484066 -4971 0.047489 0.033121 7.566704 14.523304 -4972 0.074870 0.057512 8.927903 13.971792 -4973 0.054998 0.044185 10.528526 8.416145 -4974 0.050402 0.028338 8.355589 11.169046 -4975 0.094502 0.094711 8.625923 13.370907 -4976 0.211701 0.066617 11.448668 15.363632 -4977 0.056061 0.077471 9.363903 14.699951 -4978 0.078785 0.041269 8.173631 9.637227 -4979 0.064298 0.035777 7.219741 9.050735 -4980 0.040565 0.025229 11.406298 18.106844 -4981 0.047965 0.032512 11.638160 9.968468 -4982 0.074271 0.040251 8.793577 10.764689 -4983 0.044419 0.026663 11.599090 13.263416 -4984 0.090927 0.040436 13.190563 12.741327 -4985 0.065019 0.034641 7.345158 9.330481 -4986 0.048329 0.023398 13.158735 13.787313 -4987 0.081827 0.083172 6.780163 10.109704 -4988 0.045918 0.031327 6.490889 8.896169 -4989 0.089430 0.078774 14.711582 19.353778 -4990 0.068922 0.044837 12.870663 13.384286 -4991 0.081170 0.053744 7.438318 9.762568 -4992 0.091376 0.040062 6.461413 8.314988 -4993 0.088529 0.060128 8.400064 13.307099 -4994 0.058973 0.045959 8.837663 11.238923 -4995 0.064480 0.072739 10.500811 17.301625 -4996 0.062524 0.032223 10.973557 17.193489 -4997 0.074713 0.052114 11.062680 12.744270 -4998 0.076129 0.052735 9.694188 14.352663 -4999 0.044674 0.019601 7.741785 7.497870 -5000 0.048888 0.028235 8.438464 11.979282 -5001 0.245486 0.073741 9.105090 9.973870 -5002 0.068558 0.071319 9.107281 10.119169 -5003 0.096841 0.045563 9.154266 10.067080 -5004 0.078294 0.038749 6.152942 8.112921 -5005 0.052123 0.035815 5.772335 9.946307 -5006 0.045989 0.035290 5.951215 11.889906 -5007 0.079708 0.030535 13.421508 18.997275 -5008 0.067412 0.059250 10.799251 12.699652 -5009 0.065083 0.042935 7.052127 10.585416 -5010 0.060823 0.033019 10.615651 14.301233 -5011 0.071012 0.069011 15.348559 14.417523 -5012 0.057134 0.028575 7.274345 11.250572 -5013 0.187897 0.096870 13.671573 21.818867 -5014 0.054809 0.042328 8.290010 7.714855 -5015 0.097745 0.041511 9.342588 12.534655 -5016 0.085132 0.048529 11.773202 10.617114 -5017 0.038849 0.019289 9.649298 12.009046 -5018 0.090124 0.051534 8.275607 13.745330 -5019 0.099852 0.060499 14.567971 12.179461 -5020 0.076095 0.050924 9.926767 11.488484 -5021 0.041848 0.037057 6.217734 8.964060 -5022 0.084702 0.071240 11.072220 17.557884 -5023 0.063756 0.036450 12.056661 15.583096 -5024 0.078020 0.028241 6.785983 10.269297 -5025 0.092601 0.061076 7.583939 13.043274 -5026 0.145632 0.048944 11.193035 19.160033 -5027 0.066368 0.026485 6.356206 12.875613 -5028 0.046853 0.017199 6.076424 7.758109 -5029 0.208052 0.095122 13.345331 21.205055 -5030 0.051727 0.038431 8.082486 15.605296 -5031 0.079528 0.044991 10.581106 12.103223 -5032 0.064892 0.052452 11.954062 16.897176 -5033 0.169575 0.083269 11.636186 16.196829 -5034 0.061016 0.048433 9.949541 10.712913 -5035 0.090923 0.043500 13.744952 20.447187 -5036 0.074395 0.068229 8.610849 9.066032 -5037 0.256812 0.066288 8.046107 15.889164 -5038 0.063428 0.060704 8.788935 9.861231 -5039 0.062988 0.037436 6.880879 11.252969 -5040 0.071891 0.046006 8.890048 11.117448 -5041 0.081077 0.071440 9.357653 11.063207 -5042 0.098361 0.072580 8.782684 15.169965 -5043 0.070188 0.050282 8.728700 12.785418 -5044 0.227959 0.041926 11.882911 14.328322 -5045 0.122729 0.086059 12.428223 20.984537 -5046 0.072783 0.021425 8.558462 8.630661 -5047 0.234778 0.094848 10.311218 13.074950 -5048 0.091879 0.038887 9.670881 8.972481 -5049 0.046281 0.027037 8.135231 11.025668 -5050 0.048467 0.028791 8.465296 12.894283 -5051 0.057046 0.058685 9.384995 16.794219 -5052 0.053257 0.042764 9.854446 15.769318 -5053 0.074388 0.051807 9.784586 11.740960 -5054 0.062092 0.042905 7.526409 9.761434 -5055 0.060202 0.047361 8.985742 8.209155 -5056 0.150855 0.231949 11.897529 14.512042 -5057 0.081774 0.064282 11.399215 13.310408 -5058 0.132157 0.295476 9.093449 14.343422 -5059 0.057107 0.027132 8.450597 11.048815 -5060 0.074154 0.033668 8.879338 6.785207 -5061 0.127803 0.052033 12.053053 12.170119 -5062 0.076541 0.043298 14.229130 16.091933 -5063 0.098967 0.070990 7.596770 7.852542 -5064 0.044644 0.026520 9.112980 7.329229 -5065 0.088573 0.042209 8.366080 14.348177 -5066 0.046988 0.031143 10.142953 13.535333 -5067 0.053263 0.053490 10.039117 8.905621 -5068 0.062227 0.033001 9.540919 11.743096 -5069 0.058263 0.031576 9.343255 9.532883 -5070 0.214783 0.073147 5.771479 12.467616 -5071 0.071801 0.034001 7.772895 11.294802 -5072 0.075822 0.040544 6.630816 10.363119 -5073 0.062253 0.034037 9.087855 10.539602 -5074 0.064181 0.061235 13.504160 14.047163 -5075 0.075356 0.041521 11.423536 15.378043 -5076 0.060447 0.074552 9.435382 11.910851 -5077 0.050412 0.050126 12.032256 12.274675 -5078 0.079913 0.068145 10.816176 15.838110 -5079 0.284524 0.078645 10.727092 10.211604 -5080 0.073426 0.038941 8.859121 13.233074 -5081 0.076394 0.057655 9.251550 12.377073 -5082 0.242774 0.084603 13.964700 16.798596 -5083 0.049456 0.029764 9.148722 12.251604 -5084 0.258794 0.261061 15.027121 18.958538 -5085 0.128879 0.102220 9.737918 12.775683 -5086 0.074758 0.034565 7.486377 9.654029 -5087 0.142179 0.069940 9.818699 17.756776 -5088 0.054728 0.092728 16.355589 21.777734 -5089 0.121652 0.062653 12.095460 16.105106 -5090 0.079970 0.026349 10.596966 10.851663 -5091 0.064447 0.025698 12.078866 10.007539 -5092 0.068758 0.045017 8.315327 8.644042 -5093 0.057536 0.035065 11.588815 12.243901 -5094 0.075100 0.049001 9.196170 13.842666 -5095 0.066290 0.067552 17.877106 17.163956 -5096 0.097378 0.082167 7.378765 10.160797 -5097 0.054920 0.032667 8.143402 9.072974 -5098 0.064802 0.037110 7.243051 7.903606 -5099 0.047903 0.026233 11.776013 12.308452 -5100 0.056580 0.028689 4.801270 7.537441 -5101 0.088975 0.060424 7.837861 13.613120 -5102 0.211743 0.041146 7.427364 7.060747 -5103 0.052863 0.064590 8.442181 11.678639 -5104 0.079631 0.050781 9.078495 7.586216 -5105 0.069289 0.048963 9.028832 10.733936 -5106 0.259531 0.084586 13.270113 17.701647 -5107 0.078014 0.045428 9.209251 12.044774 -5108 0.047063 0.032260 6.095321 7.884944 -5109 0.080241 0.032908 9.180945 13.086837 -5110 0.091868 0.067769 11.177455 20.516212 -5111 0.055193 0.020622 9.522384 11.519314 -5112 0.146370 0.066259 8.157000 15.332568 -5113 0.037306 0.024990 8.958385 15.393957 -5114 0.060873 0.035270 7.851994 11.591293 -5115 0.057300 0.038642 5.997515 8.993985 -5116 0.073923 0.038600 5.610264 8.215642 -5117 0.096431 0.062600 15.790681 16.102160 -5118 0.063462 0.052619 9.193542 15.514327 -5119 0.133661 0.063366 12.035266 13.997298 -5120 0.057104 0.041768 12.130491 12.513492 -5121 0.044537 0.021900 7.780617 9.190489 -5122 0.059114 0.027732 7.138002 17.979173 -5123 0.086285 0.060848 20.799454 24.307126 -5124 0.085866 0.048436 13.247423 17.661481 -5125 0.064001 0.036287 10.455806 10.969650 -5126 0.061614 0.026056 8.313131 9.863516 -5127 0.052628 0.024165 7.508483 10.289583 -5128 0.079546 0.048466 10.643671 15.340012 -5129 0.080977 0.071133 7.607368 10.625803 -5130 0.059643 0.026041 6.756722 9.368329 -5131 0.078409 0.087374 7.526762 13.244504 -5132 0.081142 0.045781 12.660984 14.015845 -5133 0.088337 0.040411 8.865741 11.864191 -5134 0.255826 0.178569 11.802750 16.237094 -5135 0.054093 0.041302 9.477351 13.787616 -5136 0.072852 0.049826 10.606539 18.767541 -5137 0.070781 0.045154 10.272974 16.135436 -5138 0.074335 0.031579 7.795430 11.303611 -5139 0.057086 0.029520 9.138775 10.697321 -5140 0.065214 0.053919 8.080593 10.650554 -5141 0.092962 0.061381 18.798642 15.949083 -5142 0.070037 0.054794 21.475276 16.150265 -5143 0.058196 0.040519 12.086356 16.970350 -5144 0.051178 0.024008 11.948734 14.466709 -5145 0.080423 0.048392 7.758775 12.249614 -5146 0.222703 0.105368 17.171575 18.368688 -5147 0.074894 0.046073 10.421941 12.333505 -5148 0.053961 0.047401 10.349830 11.420811 -5149 0.082432 0.030573 11.763540 10.891353 -5150 0.164214 0.076776 15.688486 23.120144 -5151 0.056688 0.084486 9.151603 13.372690 -5152 0.053696 0.039428 8.153225 14.148967 -5153 0.071714 0.055496 15.567578 13.648228 -5154 0.060871 0.027913 5.117706 7.452341 -5155 0.078679 0.043974 9.585628 14.389217 -5156 0.076981 0.060445 8.501632 14.310580 -5157 0.059186 0.039320 5.821394 9.300746 -5158 0.051708 0.020736 8.298439 7.597805 -5159 0.047771 0.016843 11.081466 10.621639 -5160 0.056736 0.042613 10.431713 12.659004 -5161 0.175964 0.277581 9.983809 11.140278 -5162 0.054158 0.024408 6.679072 11.053702 -5163 0.059749 0.032000 8.156061 10.873927 -5164 0.163665 0.079192 13.243796 15.073564 -5165 0.048627 0.030999 9.427119 11.135842 -5166 0.050395 0.019997 5.903494 10.595773 -5167 0.071942 0.039485 8.426857 9.571223 -5168 0.055466 0.037450 8.205277 8.449071 -5169 0.075529 0.059956 14.199922 25.371295 -5170 0.044730 0.035011 11.155722 11.209932 -5171 0.038626 0.023570 8.697334 9.567543 -5172 0.084045 0.069243 16.211113 12.216355 -5173 0.076453 0.042205 9.098567 12.348985 -5174 0.086508 0.044428 8.120675 11.015951 -5175 0.071880 0.056553 9.218977 10.538246 -5176 0.064514 0.041583 12.399117 14.325346 -5177 0.059575 0.037709 7.408419 11.749625 -5178 0.043211 0.029692 8.735402 12.146332 -5179 0.062808 0.045989 10.101211 8.985618 -5180 0.062234 0.031954 13.079601 19.832637 -5181 0.078255 0.041240 7.139958 15.218275 -5182 0.058528 0.033071 6.989504 10.803514 -5183 0.087467 0.061143 9.981486 14.159393 -5184 0.098523 0.066587 8.558642 11.867956 -5185 0.058918 0.039594 10.152748 12.811918 -5186 0.085320 0.041759 7.087347 10.748415 -5187 0.079154 0.033500 7.787045 9.911666 -5188 0.087870 0.049590 5.833598 9.557812 -5189 0.101992 0.050601 17.002366 15.084350 -5190 0.057714 0.030659 17.128882 15.900558 -5191 0.057476 0.045387 6.099095 7.013095 -5192 0.075465 0.054368 9.591818 13.345444 -5193 0.077237 0.057346 10.741810 12.764494 -5194 0.091849 0.036293 12.247413 19.002273 -5195 0.058970 0.036390 13.164714 9.905143 -5196 0.088599 0.074958 10.460580 14.543990 -5197 0.234901 0.093022 10.174558 12.306262 -5198 0.086844 0.040606 4.869512 12.012665 -5199 0.090816 0.067650 7.352310 11.059870 -5200 0.083948 0.048493 13.281436 17.357499 -5201 0.057574 0.030831 7.794423 12.434722 -5202 0.073204 0.021577 12.821770 11.373460 -5203 0.064624 0.048452 7.586433 14.259295 -5204 0.039343 0.027981 9.641906 12.948505 -5205 0.058167 0.037536 9.673030 9.797097 -5206 0.069527 0.044252 10.694841 8.534963 -5207 0.061618 0.051558 7.007519 17.104811 -5208 0.094275 0.051924 7.974892 11.465860 -5209 0.078773 0.055742 10.393160 12.748583 -5210 0.065556 0.050442 7.502503 6.838069 -5211 0.055717 0.024611 10.775143 12.552788 -5212 0.046092 0.048632 7.179180 8.220779 -5213 0.112760 0.131052 11.240646 12.707541 -5214 0.069968 0.032168 8.152126 11.503591 -5215 0.074250 0.034546 14.556925 14.061462 -5216 0.111951 0.048364 9.681587 11.157874 -5217 0.058547 0.037507 11.546935 17.183159 -5218 0.083839 0.040910 12.207355 9.340834 -5219 0.079154 0.056398 11.283781 13.915828 -5220 0.087636 0.076100 17.588141 17.590263 -5221 0.087023 0.056918 8.913395 11.566593 -5222 0.082523 0.036197 9.804764 19.276221 -5223 0.066135 0.042847 7.436705 7.928822 -5224 0.055228 0.017773 4.424376 9.349010 -5225 0.091285 0.040941 8.184375 9.718190 -5226 0.262763 0.094505 9.885154 14.601014 -5227 0.279301 0.090663 9.940720 15.541066 -5228 0.043638 0.021007 9.826259 13.978893 -5229 0.072981 0.054671 7.585892 10.483723 -5230 0.153274 0.067240 13.836758 15.389007 -5231 0.055961 0.046439 12.565128 14.645640 -5232 0.091120 0.095286 14.196270 15.580995 -5233 0.064839 0.039404 8.954101 13.183816 -5234 0.118429 0.068838 6.704560 12.788209 -5235 0.054427 0.029617 10.969201 11.082596 -5236 0.069424 0.051403 11.465020 11.670983 -5237 0.081503 0.045121 6.675064 8.402299 -5238 0.141777 0.047830 11.547275 14.150172 -5239 0.036525 0.014568 6.305178 8.923986 -5240 0.153151 0.243226 12.366182 19.571969 -5241 0.034642 0.024941 8.873086 8.991752 -5242 0.080162 0.065917 9.200954 11.955911 -5243 0.077415 0.036563 8.697660 11.668572 -5244 0.191997 0.084524 10.555480 13.791096 -5245 0.114214 0.076708 14.109794 14.752667 -5246 0.046580 0.038748 10.592037 11.286672 -5247 0.078747 0.052397 7.472038 9.145598 -5248 0.075030 0.036816 10.282215 9.362032 -5249 0.064448 0.053830 12.133050 15.762436 -5250 0.079159 0.039332 7.511628 13.141242 -5251 0.053997 0.044980 8.857981 12.692493 -5252 0.073377 0.052155 12.781530 13.171779 -5253 0.091689 0.060823 15.550712 12.598473 -5254 0.088647 0.067581 9.009551 13.664629 -5255 0.266099 0.279945 11.228892 12.630270 -5256 0.181498 0.066346 6.899166 8.320565 -5257 0.063370 0.037955 7.791432 8.587744 -5258 0.056829 0.044851 6.722951 12.123100 -5259 0.127675 0.049611 9.670109 8.893382 -5260 0.254475 0.136339 13.687609 18.391817 -5261 0.058466 0.016589 7.703626 9.676093 -5262 0.187818 0.099785 7.645509 10.465230 -5263 0.084021 0.032728 8.913142 13.950757 -5264 0.092853 0.077953 12.607067 13.029809 -5265 0.289287 0.086844 10.862240 13.801928 -5266 0.295168 0.083740 9.349673 20.337153 -5267 0.058127 0.030136 8.445600 12.072982 -5268 0.088541 0.037326 9.908130 11.038657 -5269 0.083632 0.049973 6.797958 9.382149 -5270 0.048145 0.034661 7.583832 9.041808 -5271 0.282046 0.087299 13.911652 14.771484 -5272 0.048254 0.035637 7.781357 10.124225 -5273 0.074051 0.035003 7.126192 9.211869 -5274 0.063693 0.059729 11.253600 14.290193 -5275 0.055235 0.032263 8.856524 10.292709 -5276 0.093666 0.058447 8.541186 13.207339 -5277 0.077223 0.058056 13.792280 16.742341 -5278 0.087716 0.055171 7.339907 9.150096 -5279 0.088637 0.030943 7.955384 11.387491 -5280 0.061413 0.035499 10.791652 15.570486 -5281 0.058228 0.049658 12.035371 13.217700 -5282 0.069271 0.032732 9.483999 9.394106 -5283 0.049232 0.033939 8.182113 9.865956 -5284 0.096875 0.052932 9.279239 10.637486 -5285 0.142300 0.060253 11.503452 12.543953 -5286 0.280386 0.074908 16.708109 13.420748 -5287 0.035778 0.017054 9.796891 9.933628 -5288 0.067582 0.073605 10.988351 15.844528 -5289 0.063603 0.064300 8.920105 9.834680 -5290 0.077991 0.039099 7.950887 12.377246 -5291 0.190442 0.074061 9.070100 11.944479 -5292 0.062553 0.034678 6.697263 12.112803 -5293 0.072448 0.033753 7.717307 9.162278 -5294 0.074743 0.057130 7.270821 12.475107 -5295 0.058523 0.032350 14.364116 11.078722 -5296 0.059382 0.036311 12.521288 13.007303 -5297 0.240828 0.060317 9.955606 11.567801 -5298 0.076140 0.058282 11.149344 14.289220 -5299 0.045505 0.034450 11.728951 12.757342 -5300 0.050379 0.025056 7.559396 12.738722 -5301 0.076898 0.030058 9.792142 11.469591 -5302 0.051103 0.017899 7.450009 10.386279 -5303 0.043981 0.041588 7.081443 9.062541 -5304 0.067750 0.044875 10.520026 11.809326 -5305 0.045114 0.036379 12.520629 11.719013 -5306 0.059594 0.036773 11.040058 16.383663 -5307 0.053695 0.023788 10.868168 10.520543 -5308 0.089777 0.071655 11.921330 12.882356 -5309 0.073246 0.044911 15.155503 16.123750 -5310 0.085186 0.069508 12.281149 12.184546 -5311 0.061894 0.059426 8.400767 18.812840 -5312 0.060158 0.046621 10.664231 8.858117 -5313 0.087675 0.049560 11.305303 10.826580 -5314 0.061292 0.021574 10.527496 14.069795 -5315 0.080583 0.048151 10.248804 15.258166 -5316 0.047651 0.026797 7.112196 9.669717 -5317 0.061307 0.028826 7.805504 7.839214 -5318 0.062732 0.031890 9.362777 12.157761 -5319 0.099740 0.077099 8.848591 14.150127 -5320 0.066782 0.048100 8.802767 11.737882 -5321 0.085645 0.047002 11.592778 10.985182 -5322 0.076119 0.034999 9.189172 14.277257 -5323 0.296091 0.059281 10.015173 8.563422 -5324 0.090895 0.049828 8.852308 11.064051 -5325 0.068106 0.030291 9.675989 11.574084 -5326 0.115483 0.047464 8.438479 12.491829 -5327 0.213710 0.033773 9.378605 14.629316 -5328 0.091712 0.054583 14.624246 14.182604 -5329 0.085864 0.043963 8.490725 9.929687 -5330 0.053335 0.029182 10.547545 16.245729 -5331 0.264347 0.052218 10.587205 12.164061 -5332 0.081528 0.062159 10.104356 12.889352 -5333 0.090663 0.069493 9.436523 9.371707 -5334 0.082435 0.043759 13.059827 16.470375 -5335 0.065484 0.026087 8.477656 10.874250 -5336 0.110571 0.150086 16.605375 17.153540 -5337 0.299256 0.062574 12.210186 15.885997 -5338 0.065683 0.040593 6.423150 10.156808 -5339 0.071212 0.261264 11.147769 11.174233 -5340 0.065942 0.054070 12.170776 22.358818 -5341 0.091014 0.067761 13.379422 17.808416 -5342 0.053381 0.043262 10.130575 13.886869 -5343 0.192938 0.054916 10.624756 11.540718 -5344 0.082545 0.049394 7.491020 9.703096 -5345 0.093246 0.049570 12.355694 10.048724 -5346 0.086790 0.043521 5.661400 5.773805 -5347 0.062606 0.047717 7.435879 9.214897 -5348 0.079761 0.034183 10.231815 10.982670 -5349 0.133484 0.077047 14.284427 15.275670 -5350 0.084164 0.042814 6.426888 8.864236 -5351 0.067395 0.031956 8.654928 12.490177 -5352 0.094608 0.085058 9.685084 13.711459 -5353 0.079870 0.041869 11.018832 12.554334 -5354 0.133185 0.028366 8.098096 12.551834 -5355 0.094158 0.059971 14.682127 17.436675 -5356 0.156041 0.085462 12.204426 15.668251 -5357 0.073759 0.043313 7.546702 10.118248 -5358 0.170238 0.046212 7.049945 13.857731 -5359 0.082043 0.033022 7.503634 12.912964 -5360 0.079131 0.031979 9.310521 12.092936 -5361 0.092901 0.029067 7.181589 7.287592 -5362 0.094652 0.042415 8.645808 10.864034 -5363 0.057182 0.034253 11.872772 11.877824 -5364 0.296570 0.062989 10.052543 11.064790 -5365 0.042721 0.017984 8.807231 9.400769 -5366 0.098348 0.067066 13.185944 18.599215 -5367 0.070025 0.028298 8.002427 12.115374 -5368 0.084128 0.043728 8.662739 10.659233 -5369 0.077779 0.037613 7.841980 13.253654 -5370 0.152325 0.057618 14.227531 14.617120 -5371 0.149904 0.065917 16.211491 16.636194 -5372 0.060806 0.025959 10.069186 22.036900 -5373 0.068961 0.076010 8.888552 13.670888 -5374 0.203778 0.057372 9.294076 13.007809 -5375 0.041110 0.023000 7.756003 9.658110 -5376 0.073793 0.051780 10.048414 9.185508 -5377 0.099048 0.066779 12.124366 13.535970 -5378 0.092256 0.042566 12.530498 13.600617 -5379 0.068950 0.053254 15.241563 17.128929 -5380 0.189185 0.084903 10.216581 12.583840 -5381 0.062152 0.043260 15.681698 26.743308 -5382 0.063460 0.029835 6.631368 9.379840 -5383 0.062820 0.046373 10.023738 12.552533 -5384 0.048330 0.037654 8.828353 12.948148 -5385 0.079135 0.039427 14.832974 14.457627 -5386 0.052042 0.023211 8.465955 12.969309 -5387 0.090310 0.048220 8.702927 9.456030 -5388 0.062266 0.051198 14.683947 13.473798 -5389 0.073597 0.076221 10.118793 12.998133 -5390 0.076293 0.046952 9.870660 12.563985 -5391 0.153739 0.065762 10.705992 10.529397 -5392 0.253604 0.067829 10.826854 11.403177 -5393 0.046085 0.023295 10.709132 17.205322 -5394 0.055860 0.025880 8.657366 8.681488 -5395 0.063609 0.027143 12.779201 9.305476 -5396 0.048483 0.027083 8.448961 14.899107 -5397 0.082032 0.037159 9.709486 13.813743 -5398 0.085858 0.045995 12.454135 13.143343 -5399 0.068697 0.041290 9.974964 12.259764 -5400 0.059546 0.035137 10.364722 14.550553 -5401 0.048921 0.030610 12.949887 16.899715 -5402 0.075778 0.057050 9.928547 17.215282 -5403 0.092533 0.043343 9.643549 11.684696 -5404 0.050529 0.035447 9.303309 11.956537 -5405 0.086853 0.057971 10.599234 13.053582 -5406 0.189658 0.065435 6.594704 8.590918 -5407 0.085956 0.047750 10.974560 15.102763 -5408 0.084981 0.056894 8.033653 11.171850 -5409 0.066766 0.052048 10.755790 12.685003 -5410 0.081860 0.035034 9.630321 8.719905 -5411 0.066990 0.038484 8.125699 10.640906 -5412 0.286713 0.142938 6.556112 13.973461 -5413 0.078773 0.038368 9.051344 14.557673 -5414 0.269615 0.061651 10.137442 14.999980 -5415 0.081625 0.063592 7.332208 11.199177 -5416 0.096204 0.069777 18.750656 19.625328 -5417 0.074691 0.039852 9.278999 11.556887 -5418 0.291576 0.069573 10.827923 17.214751 -5419 0.073180 0.024730 11.353192 12.367731 -5420 0.052974 0.022519 7.397560 13.970045 -5421 0.190610 0.089330 9.195596 13.266746 -5422 0.065420 0.038381 9.287737 12.628386 -5423 0.062173 0.028631 9.065513 8.802424 -5424 0.109948 0.043817 13.547248 14.214063 -5425 0.108703 0.076743 10.937670 18.357698 -5426 0.056445 0.028931 12.119088 16.991885 -5427 0.064410 0.040792 10.467033 9.669322 -5428 0.234768 0.051552 22.640885 22.218534 -5429 0.089595 0.062798 13.408401 17.494285 -5430 0.210602 0.067710 9.529973 14.790657 -5431 0.234416 0.051342 12.766111 20.092947 -5432 0.069426 0.033946 10.535944 10.925980 -5433 0.125334 0.067728 7.863210 13.375620 -5434 0.066841 0.039359 7.387134 9.389894 -5435 0.099824 0.038121 9.391498 13.579631 -5436 0.046954 0.040739 14.227882 18.517619 -5437 0.046469 0.037848 11.105096 12.455579 -5438 0.078124 0.028449 6.371908 10.734689 -5439 0.086926 0.056022 17.443487 18.241464 -5440 0.083454 0.043794 7.046643 11.990704 -5441 0.067622 0.031835 10.573846 10.938860 -5442 0.045586 0.028934 13.923815 18.955495 -5443 0.077418 0.069671 10.571867 12.980710 -5444 0.069329 0.063261 11.694313 13.176302 -5445 0.078491 0.044243 13.735188 26.931494 -5446 0.153828 0.062013 15.708825 22.340590 -5447 0.106765 0.067928 10.810921 15.195678 -5448 0.110379 0.058544 10.278278 11.472515 -5449 0.154769 0.062240 12.058075 15.266825 -5450 0.097599 0.069452 12.074842 13.907080 -5451 0.044495 0.028118 6.453717 10.619865 -5452 0.098034 0.068938 11.753708 17.764564 -5453 0.074402 0.046083 6.838798 9.337739 -5454 0.059550 0.052790 6.607777 12.467017 -5455 0.048705 0.057369 9.200696 11.492331 -5456 0.054211 0.032158 9.050067 14.512468 -5457 0.088950 0.049465 12.169554 15.611290 -5458 0.070103 0.055539 12.276170 15.571611 -5459 0.049987 0.024496 5.847109 7.810591 -5460 0.050712 0.045693 7.201817 11.108392 -5461 0.090234 0.047083 12.426581 14.737311 -5462 0.057936 0.031023 12.500360 12.563747 -5463 0.090403 0.058199 10.509604 14.752086 -5464 0.036859 0.016495 11.344971 11.530044 -5465 0.091834 0.035097 10.415444 16.557223 -5466 0.063486 0.049407 6.239217 11.597505 -5467 0.069753 0.038824 11.304234 19.129143 -5468 0.089880 0.064693 12.377307 16.165950 -5469 0.132584 0.252083 12.394969 16.638531 -5470 0.043925 0.029600 12.516383 14.578746 -5471 0.062719 0.025472 8.302518 12.376447 -5472 0.079336 0.048014 9.756952 17.559682 -5473 0.103149 0.041941 8.382480 16.690413 -5474 0.074916 0.051133 10.514846 14.227509 -5475 0.083488 0.044236 6.121601 7.561531 -5476 0.089793 0.035526 8.093587 10.993876 -5477 0.083129 0.048143 13.716323 15.124779 -5478 0.249510 0.063710 11.475997 18.922349 -5479 0.062254 0.049245 9.288443 12.376463 -5480 0.054237 0.024347 6.369452 12.723022 -5481 0.149588 0.056829 9.309311 13.810998 -5482 0.088886 0.067483 13.571546 23.154124 -5483 0.061621 0.045116 6.991327 8.783748 -5484 0.062082 0.030432 9.029145 8.924691 -5485 0.064553 0.057630 9.875228 11.360940 -5486 0.083461 0.039100 13.038726 15.288193 -5487 0.297744 0.078226 17.609749 13.896251 -5488 0.073466 0.044829 10.525618 11.963568 -5489 0.073438 0.044546 9.554778 11.815408 -5490 0.069907 0.048098 9.363509 9.524428 -5491 0.046411 0.024364 8.204911 11.101220 -5492 0.093496 0.061804 6.801775 9.400041 -5493 0.252334 0.086627 12.218707 15.191541 -5494 0.278032 0.058091 15.279972 16.402665 -5495 0.240916 0.220586 15.314938 16.774558 -5496 0.052322 0.033379 7.329158 8.907823 -5497 0.083541 0.053129 12.959510 14.352761 -5498 0.137046 0.067315 7.820569 11.362468 -5499 0.070519 0.060109 10.193019 15.264918 -5500 0.060925 0.046291 7.304848 8.189558 -5501 0.274425 0.044919 11.660203 16.287672 -5502 0.050974 0.023957 14.971315 14.035766 -5503 0.062966 0.030435 9.451778 12.890147 -5504 0.137609 0.047295 8.262399 7.825890 -5505 0.056402 0.041704 9.877818 9.454873 -5506 0.086742 0.058896 8.305776 15.173453 -5507 0.087791 0.028246 12.185978 12.878422 -5508 0.052737 0.028023 8.780038 9.545874 -5509 0.067916 0.032814 7.450414 12.411574 -5510 0.097642 0.032784 8.965749 9.860243 -5511 0.051442 0.038590 8.674722 13.927554 -5512 0.212741 0.044110 12.604489 13.869442 -5513 0.058464 0.038571 10.750796 10.595876 -5514 0.047146 0.024891 9.873972 15.723260 -5515 0.097233 0.050759 7.490598 9.839447 -5516 0.074033 0.048179 9.882304 13.426767 -5517 0.086086 0.064730 7.486159 10.981109 -5518 0.088946 0.048874 7.868755 14.177175 -5519 0.060390 0.032653 11.733601 12.690252 -5520 0.046518 0.032578 5.254189 10.448999 -5521 0.065509 0.036991 10.246153 11.992668 -5522 0.084236 0.061623 9.644497 12.911674 -5523 0.049287 0.038331 10.046127 17.674771 -5524 0.065887 0.026182 9.759243 13.410893 -5525 0.086169 0.046136 9.813237 12.919473 -5526 0.048775 0.033784 8.948779 11.494920 -5527 0.053967 0.034707 6.831547 7.207628 -5528 0.065968 0.040149 6.604944 8.143571 -5529 0.086146 0.066482 11.662141 11.879648 -5530 0.062327 0.034524 13.814071 13.081180 -5531 0.072894 0.033463 10.574463 12.713181 -5532 0.073234 0.073094 11.356927 9.700353 -5533 0.074431 0.037093 11.905569 15.775521 -5534 0.264856 0.059503 9.255535 12.410527 -5535 0.063778 0.027918 8.531012 13.000982 -5536 0.145225 0.069170 7.933734 11.123216 -5537 0.096837 0.056323 9.849288 15.897520 -5538 0.038355 0.019653 8.388025 7.955301 -5539 0.201820 0.085228 9.579528 16.688937 -5540 0.039656 0.015971 9.465634 9.110840 -5541 0.055807 0.017111 7.770733 10.653454 -5542 0.077407 0.037390 11.744954 13.565009 -5543 0.056371 0.033545 7.987897 8.701181 -5544 0.077976 0.049748 10.363307 10.864392 -5545 0.076579 0.027231 10.471291 14.179223 -5546 0.065638 0.042909 9.327946 15.801624 -5547 0.056676 0.034517 10.349848 12.092066 -5548 0.050454 0.021788 10.109711 12.233479 -5549 0.072918 0.042723 8.725055 13.300128 -5550 0.076705 0.048683 8.627254 12.504104 -5551 0.081263 0.044636 8.451800 10.865604 -5552 0.076418 0.067697 10.936887 18.698572 -5553 0.068414 0.082360 11.624708 15.989750 -5554 0.056581 0.033185 14.716743 16.904242 -5555 0.076511 0.046144 9.285452 11.729315 -5556 0.066529 0.050981 8.813229 12.126835 -5557 0.064929 0.038459 11.079094 11.474555 -5558 0.045556 0.022136 7.410414 6.825503 -5559 0.048000 0.051800 10.047611 12.817126 -5560 0.054452 0.026783 7.653284 9.871611 -5561 0.093213 0.045487 10.899668 15.906218 -5562 0.074333 0.040467 10.605178 12.580198 -5563 0.227273 0.068688 12.165711 12.849152 -5564 0.053110 0.029548 11.424714 12.649149 -5565 0.071395 0.045060 9.270482 13.820595 -5566 0.090150 0.058563 11.850012 12.799544 -5567 0.069190 0.045946 11.960838 13.425240 -5568 0.075352 0.068016 13.152375 16.242969 -5569 0.053837 0.020234 8.423596 11.040303 -5570 0.051075 0.039818 6.766799 12.252984 -5571 0.235811 0.061826 13.574226 14.474440 -5572 0.059971 0.051168 8.242399 8.873779 -5573 0.095314 0.075628 8.669270 8.697642 -5574 0.087136 0.032962 11.333682 12.692866 -5575 0.046815 0.032969 14.649247 17.854814 -5576 0.037197 0.032461 10.478237 14.092144 -5577 0.089665 0.027651 12.184164 15.721743 -5578 0.089081 0.040827 8.048854 9.481592 -5579 0.197116 0.094822 12.044680 17.051214 -5580 0.057247 0.026311 9.455957 9.699868 -5581 0.063944 0.046845 8.488189 13.667433 -5582 0.093374 0.053702 13.456754 11.426468 -5583 0.077502 0.046885 9.976292 11.716871 -5584 0.268576 0.058913 7.606787 13.384259 -5585 0.089759 0.059856 11.615950 14.668019 -5586 0.078939 0.052698 13.448213 11.509702 -5587 0.073622 0.035350 8.392155 11.420696 -5588 0.077550 0.110394 8.160077 17.666729 -5589 0.081923 0.044876 6.907637 13.278601 -5590 0.068939 0.071153 10.799264 13.465235 -5591 0.075233 0.024654 13.983025 10.513055 -5592 0.061105 0.035546 11.736496 11.790109 -5593 0.050803 0.043709 13.964751 12.584362 -5594 0.065608 0.040244 9.517090 15.532785 -5595 0.257522 0.099459 12.056640 12.663616 -5596 0.048946 0.024481 7.644840 11.048421 -5597 0.091919 0.074627 8.000122 10.447777 -5598 0.072268 0.038649 12.233528 11.562811 -5599 0.095949 0.083385 6.964701 13.619098 -5600 0.048320 0.034999 7.773864 10.419000 -5601 0.075691 0.081931 14.058468 12.785244 -5602 0.076057 0.044255 6.947532 12.148921 -5603 0.215163 0.122393 9.718860 13.169846 -5604 0.074235 0.026978 7.926380 10.823525 -5605 0.070009 0.043477 6.236361 9.938862 -5606 0.073627 0.058867 11.925447 23.900877 -5607 0.095580 0.042792 9.520327 12.542267 -5608 0.089165 0.041716 7.554356 11.272776 -5609 0.064791 0.039844 6.124657 10.383102 -5610 0.075683 0.051307 12.596553 15.154592 -5611 0.068160 0.043711 12.218830 15.833129 -5612 0.052932 0.057749 7.653894 13.298998 -5613 0.042574 0.020998 7.810336 6.918544 -5614 0.073307 0.034476 9.521269 14.018259 -5615 0.068094 0.033850 11.106295 9.297967 -5616 0.062555 0.052990 10.783853 9.404492 -5617 0.081660 0.052014 8.690487 11.590689 -5618 0.094393 0.032708 7.577926 10.393990 -5619 0.084838 0.050788 10.003832 14.771530 -5620 0.055371 0.045959 7.637669 10.198493 -5621 0.072293 0.071661 17.669407 17.312725 -5622 0.080101 0.046975 8.108311 13.074131 -5623 0.066546 0.046846 10.396070 9.663910 -5624 0.050469 0.023518 9.840812 12.799001 -5625 0.071238 0.046063 14.163713 18.181949 -5626 0.062640 0.055599 11.257649 14.439236 -5627 0.204705 0.082939 8.730929 10.807435 -5628 0.075138 0.029480 7.386115 13.068682 -5629 0.073153 0.043546 9.972506 10.431469 -5630 0.098497 0.074573 10.627420 18.720371 -5631 0.070244 0.034620 6.467091 7.664326 -5632 0.054216 0.018451 7.920285 9.692412 -5633 0.091566 0.055388 8.147605 9.518747 -5634 0.226510 0.076161 6.473533 10.465288 -5635 0.076217 0.043680 12.535631 14.176353 -5636 0.095166 0.054773 7.887618 9.929587 -5637 0.063149 0.051241 7.903259 11.837185 -5638 0.102302 0.038343 7.512458 17.584170 -5639 0.055163 0.024606 10.440466 15.917503 -5640 0.070114 0.029775 12.202967 14.697410 -5641 0.079117 0.029295 12.601036 15.398521 -5642 0.071496 0.025669 10.747257 11.654071 -5643 0.056861 0.023006 7.245399 12.753800 -5644 0.077798 0.048542 18.749316 20.546824 -5645 0.171755 0.235040 9.416846 8.885819 -5646 0.060360 0.035985 8.987196 9.251862 -5647 0.052219 0.028497 8.519516 10.455287 -5648 0.256106 0.071724 10.435802 14.267164 -5649 0.056603 0.025175 6.885339 12.589094 -5650 0.036586 0.012428 8.048702 10.665329 -5651 0.051239 0.057838 8.560068 12.106780 -5652 0.189941 0.054990 9.134156 11.599278 -5653 0.092488 0.044624 8.580875 7.950750 -5654 0.196731 0.089106 8.067592 12.855020 -5655 0.088960 0.040485 9.556534 13.291497 -5656 0.138075 0.077036 14.333150 15.342710 -5657 0.044834 0.032114 7.065794 9.806283 -5658 0.059504 0.032328 14.528681 15.190460 -5659 0.254680 0.036536 7.162562 15.437031 -5660 0.053147 0.037329 11.547824 20.207696 -5661 0.085580 0.023978 7.122596 9.281858 -5662 0.052832 0.041853 9.832295 14.360900 -5663 0.167311 0.064906 12.315610 16.809258 -5664 0.073575 0.078112 10.256987 12.329689 -5665 0.085648 0.036216 11.877089 13.489205 -5666 0.083867 0.037742 10.375239 16.854638 -5667 0.269928 0.088931 6.576831 10.309561 -5668 0.085930 0.043810 9.400401 14.752209 -5669 0.095539 0.056115 11.313094 10.775231 -5670 0.183538 0.089644 12.077167 12.084688 -5671 0.048213 0.036321 11.365102 15.038780 -5672 0.070816 0.047415 13.887632 13.008550 -5673 0.052108 0.032489 8.012138 7.620481 -5674 0.084442 0.033852 7.808766 9.988520 -5675 0.063775 0.041052 8.560752 11.731554 -5676 0.088606 0.049083 13.229037 17.975415 -5677 0.093474 0.060671 7.500071 11.136710 -5678 0.078968 0.036891 12.208179 10.004549 -5679 0.057747 0.021827 6.521711 10.288128 -5680 0.078388 0.037051 7.602820 13.583610 -5681 0.271161 0.055855 9.088003 15.372455 -5682 0.080554 0.032156 10.147885 13.419582 -5683 0.073657 0.044169 14.948481 15.944721 -5684 0.217761 0.068063 12.202448 14.073677 -5685 0.080973 0.060073 9.670759 17.514821 -5686 0.096939 0.041258 8.335402 8.853266 -5687 0.077062 0.061733 7.045427 11.239490 -5688 0.073159 0.039192 10.181275 9.817680 -5689 0.092294 0.058043 12.124482 11.078040 -5690 0.071347 0.045746 6.053890 14.942402 -5691 0.095645 0.046837 15.450446 15.382555 -5692 0.058604 0.039821 10.626275 11.281747 -5693 0.092473 0.055992 11.845484 15.132227 -5694 0.093873 0.052677 17.024507 25.470133 -5695 0.069611 0.042554 8.713900 11.492263 -5696 0.279362 0.094705 15.738187 17.346337 -5697 0.066984 0.041969 13.584278 15.214940 -5698 0.059734 0.039509 6.643890 12.706417 -5699 0.099438 0.050346 9.094153 11.947117 -5700 0.046779 0.048694 10.884360 16.248055 -5701 0.074811 0.038754 14.245187 18.907552 -5702 0.085355 0.046268 10.052213 13.980659 -5703 0.055350 0.033179 8.342099 7.101511 -5704 0.061132 0.034426 7.537204 10.521199 -5705 0.077436 0.058986 11.328592 9.223905 -5706 0.064723 0.047953 11.701588 13.830721 -5707 0.107115 0.039558 10.049384 11.283318 -5708 0.194531 0.074951 10.679291 13.963267 -5709 0.095352 0.071310 13.593093 18.024850 -5710 0.059024 0.038356 9.458898 8.533211 -5711 0.095176 0.035125 7.394306 11.389636 -5712 0.058546 0.052568 11.661157 15.792016 -5713 0.068246 0.057246 8.201356 13.393082 -5714 0.058067 0.043719 9.802720 15.860066 -5715 0.076713 0.054404 12.079153 15.724176 -5716 0.084919 0.075839 9.067629 13.037886 -5717 0.076641 0.046384 10.311732 15.446002 -5718 0.098221 0.043468 9.923057 11.535828 -5719 0.053950 0.022765 7.079459 15.164999 -5720 0.078625 0.045269 14.593346 15.430451 -5721 0.115822 0.224499 11.495947 14.906304 -5722 0.072535 0.067584 11.578525 13.215863 -5723 0.034778 0.013732 6.938964 12.073120 -5724 0.075830 0.070589 12.840810 12.327224 -5725 0.060656 0.053087 10.019777 15.650932 -5726 0.062185 0.043390 8.877465 10.199979 -5727 0.090371 0.067414 11.539601 14.389879 -5728 0.045164 0.026479 11.495868 12.765167 -5729 0.199792 0.044878 8.279923 13.986974 -5730 0.062720 0.041633 11.110872 15.003127 -5731 0.078324 0.036030 10.340534 15.974831 -5732 0.076482 0.026824 12.186793 12.469828 -5733 0.081938 0.042151 9.032168 15.304360 -5734 0.061909 0.039550 7.846886 12.173406 -5735 0.073499 0.032657 9.295508 13.383214 -5736 0.072009 0.034600 11.976260 13.757583 -5737 0.204162 0.066575 12.879052 14.390163 -5738 0.047224 0.019637 7.964127 9.801728 -5739 0.092100 0.073951 14.525699 18.177270 -5740 0.219723 0.244883 8.939827 14.329306 -5741 0.062839 0.037345 10.511023 12.665937 -5742 0.086446 0.055898 7.832802 10.318224 -5743 0.036103 0.022437 7.866065 9.192207 -5744 0.172738 0.078654 12.873291 16.262632 -5745 0.074910 0.059779 12.606474 12.249717 -5746 0.080682 0.084388 11.486947 14.343905 -5747 0.062478 0.044399 8.573521 9.328787 -5748 0.191796 0.075046 11.779304 9.776521 -5749 0.079901 0.069737 11.280599 12.321825 -5750 0.104415 0.082407 7.907635 11.629366 -5751 0.086883 0.044759 11.062491 16.095070 -5752 0.045176 0.034989 11.726364 13.047340 -5753 0.070934 0.042865 11.616997 13.307011 -5754 0.048915 0.031508 11.623430 11.596077 -5755 0.100280 0.086364 15.323477 19.617984 -5756 0.084619 0.047583 10.981759 16.035071 -5757 0.064148 0.038692 7.102153 15.096556 -5758 0.086236 0.069840 7.756095 8.754385 -5759 0.061544 0.033907 8.239590 14.581702 -5760 0.070279 0.058822 8.058872 8.170279 -5761 0.064567 0.091613 11.468300 13.400491 -5762 0.093087 0.091710 11.163771 11.037034 -5763 0.061720 0.031733 13.940131 18.521478 -5764 0.081948 0.055844 10.585223 14.158243 -5765 0.064448 0.068355 12.731630 9.940214 -5766 0.055542 0.038698 10.141350 15.206004 -5767 0.047786 0.030846 5.435104 6.924458 -5768 0.092010 0.072050 7.214804 11.436177 -5769 0.060905 0.042819 10.446920 14.018985 -5770 0.094962 0.042972 9.266782 15.867816 -5771 0.050450 0.027186 12.336698 13.085571 -5772 0.245385 0.071272 8.955845 10.854168 -5773 0.075652 0.048542 7.781645 10.974282 -5774 0.036709 0.035764 7.727373 9.804889 -5775 0.090397 0.048362 15.720173 18.503195 -5776 0.088968 0.042122 10.859638 10.463256 -5777 0.070883 0.033351 8.607187 11.425278 -5778 0.045973 0.038321 6.224533 11.390952 -5779 0.233216 0.098415 13.266002 25.349389 -5780 0.265287 0.079934 12.335243 20.940077 -5781 0.225001 0.273990 13.868548 18.027051 -5782 0.073773 0.065927 6.653979 15.716075 -5783 0.053736 0.042009 11.058401 14.040398 -5784 0.172141 0.051440 11.735337 12.473567 -5785 0.234525 0.063356 7.908741 11.499318 -5786 0.054722 0.036740 14.386452 15.640919 -5787 0.057648 0.032081 7.147074 14.360560 -5788 0.095818 0.066176 8.931222 16.362105 -5789 0.080676 0.067541 5.325112 11.045521 -5790 0.071897 0.038663 7.758600 11.154011 -5791 0.056198 0.046707 9.410119 9.102481 -5792 0.067660 0.031605 17.052759 19.215314 -5793 0.049413 0.012195 8.155965 9.766736 -5794 0.085696 0.045365 9.160727 14.305771 -5795 0.062907 0.053869 8.535802 10.171641 -5796 0.069103 0.035912 10.927354 13.772882 -5797 0.044408 0.023932 7.691705 10.970564 -5798 0.080356 0.020682 6.773308 16.560927 -5799 0.086720 0.044126 10.238134 18.625669 -5800 0.081388 0.037243 9.801625 13.379785 -5801 0.050667 0.026703 10.545903 10.837969 -5802 0.060679 0.047757 7.923850 10.327347 -5803 0.060983 0.056599 11.568426 14.850877 -5804 0.050571 0.031495 8.193303 13.794324 -5805 0.089765 0.055989 10.996137 12.208948 -5806 0.058198 0.037489 8.980653 10.641748 -5807 0.044911 0.019260 7.464373 10.338785 -5808 0.051243 0.035295 11.301059 15.225602 -5809 0.064539 0.044767 8.469624 11.222217 -5810 0.083243 0.094306 4.978084 8.963342 -5811 0.079021 0.063729 7.988095 7.704200 -5812 0.031352 0.018710 8.285577 11.315758 -5813 0.272152 0.058659 14.966932 16.084526 -5814 0.050168 0.035119 8.004316 11.359632 -5815 0.044841 0.024787 8.026160 12.129213 -5816 0.080738 0.037303 6.920741 14.910910 -5817 0.072130 0.038099 7.318159 10.341541 -5818 0.068546 0.058277 8.964197 12.497337 -5819 0.095296 0.060207 7.550152 10.619007 -5820 0.221704 0.068468 11.258144 12.319983 -5821 0.120567 0.064479 11.502382 15.930473 -5822 0.054994 0.045141 6.873865 9.688243 -5823 0.059504 0.031251 10.052852 8.617697 -5824 0.262218 0.087345 15.067771 18.792302 -5825 0.041086 0.032955 6.624814 11.202464 -5826 0.079124 0.092993 12.420801 14.053406 -5827 0.067797 0.046679 9.568755 10.549536 -5828 0.058241 0.040333 10.369644 14.563354 -5829 0.091139 0.070559 11.162908 11.707539 -5830 0.065945 0.032942 8.701291 11.032681 -5831 0.061650 0.040301 17.444137 15.051463 -5832 0.167916 0.067708 11.100359 12.621036 -5833 0.049215 0.033025 11.687521 16.405413 -5834 0.254046 0.079298 10.064234 12.694695 -5835 0.127987 0.060865 11.545279 12.489939 -5836 0.210193 0.046272 7.319780 9.719585 -5837 0.282665 0.057109 12.777799 17.127600 -5838 0.080624 0.044154 7.297867 8.130077 -5839 0.090706 0.057609 9.080536 10.126267 -5840 0.086787 0.046152 8.843028 14.628987 -5841 0.061198 0.047138 10.823054 13.652343 -5842 0.062200 0.055781 8.179353 16.198369 -5843 0.074631 0.044434 12.501353 12.794664 -5844 0.287953 0.048250 16.083013 14.481418 -5845 0.281581 0.094592 15.395364 16.222724 -5846 0.078657 0.047451 7.878408 10.956763 -5847 0.069995 0.063796 7.082524 14.005150 -5848 0.065634 0.031308 7.445443 11.569075 -5849 0.070555 0.050770 10.452013 15.976499 -5850 0.056873 0.029194 5.589962 7.856670 -5851 0.069124 0.040831 8.164190 16.666355 -5852 0.084947 0.054729 9.000811 14.370161 -5853 0.057824 0.021229 8.330270 9.356911 -5854 0.097081 0.046315 8.610318 11.263638 -5855 0.280647 0.091377 11.453249 13.576404 -5856 0.056181 0.024912 7.152696 10.561492 -5857 0.075359 0.051571 10.607504 11.750317 -5858 0.078190 0.038746 7.671511 11.117614 -5859 0.069192 0.064582 10.992663 11.253971 -5860 0.091051 0.041755 12.486257 13.881309 -5861 0.067922 0.035417 9.845073 7.897811 -5862 0.074532 0.052168 10.746521 15.204798 -5863 0.077506 0.058128 10.864397 14.311326 -5864 0.087064 0.085098 11.924949 17.020226 -5865 0.082355 0.052420 17.616611 14.437706 -5866 0.051853 0.037228 9.594151 12.446030 -5867 0.217217 0.064198 11.042470 18.277965 -5868 0.095710 0.041567 10.866213 12.313452 -5869 0.056815 0.027521 7.707235 10.589854 -5870 0.095866 0.045133 12.467681 15.296211 -5871 0.065016 0.054607 16.673630 19.543880 -5872 0.072257 0.042151 9.282306 22.797149 -5873 0.096613 0.087245 9.458260 15.990162 -5874 0.081868 0.054516 9.340137 14.010446 -5875 0.077181 0.036550 9.545247 10.158718 -5876 0.040719 0.033787 11.718227 11.784659 -5877 0.126590 0.065058 8.383040 11.051240 -5878 0.087255 0.068702 9.464649 11.783675 -5879 0.095717 0.064142 11.641633 13.143220 -5880 0.069812 0.060865 16.318349 17.275270 -5881 0.047805 0.024223 7.542380 13.174955 -5882 0.057557 0.042758 13.571570 14.575481 -5883 0.070027 0.031794 12.457896 13.665728 -5884 0.258139 0.076927 11.266876 15.197232 -5885 0.071458 0.045283 9.897936 12.076170 -5886 0.065948 0.058618 7.657802 9.184065 -5887 0.196395 0.071953 12.150044 15.729976 -5888 0.069480 0.045549 9.584123 12.641133 -5889 0.062090 0.047000 14.291904 21.189202 -5890 0.073655 0.045044 10.682636 14.529431 -5891 0.099388 0.058004 13.060712 13.440015 -5892 0.052897 0.032715 11.603638 13.963178 -5893 0.132815 0.079162 10.346340 17.410158 -5894 0.082560 0.046320 14.435130 20.215098 -5895 0.049263 0.032866 9.293072 16.208474 -5896 0.042698 0.029640 8.351387 7.585362 -5897 0.091894 0.061986 14.386600 18.734140 -5898 0.069603 0.059077 10.310573 11.751024 -5899 0.243640 0.042478 10.261874 13.744082 -5900 0.057715 0.052458 8.898181 12.623442 -5901 0.060945 0.044249 10.655954 11.232935 -5902 0.064741 0.044597 10.429650 11.829137 -5903 0.070452 0.035586 8.308351 8.961035 -5904 0.205860 0.074047 10.091161 13.495349 -5905 0.212129 0.046707 21.422677 14.168615 -5906 0.075278 0.061317 10.799481 10.182043 -5907 0.044449 0.022535 7.720181 10.145207 -5908 0.095921 0.059301 9.668781 11.651830 -5909 0.048283 0.025962 7.040188 7.848737 -5910 0.041035 0.041399 7.917430 11.793503 -5911 0.096476 0.074848 15.145403 16.059652 -5912 0.080798 0.037804 8.955699 9.827203 -5913 0.084504 0.033381 12.354812 12.088988 -5914 0.095209 0.056532 11.827952 13.352037 -5915 0.048477 0.034818 12.614596 10.380321 -5916 0.278773 0.254950 10.157927 15.888867 -5917 0.062768 0.038642 7.362833 8.418102 -5918 0.076209 0.042542 15.399589 14.051526 -5919 0.080803 0.083030 13.040606 19.100970 -5920 0.049753 0.024303 10.736726 10.213282 -5921 0.068585 0.063855 9.684763 15.586111 -5922 0.046005 0.022222 15.139890 10.644205 -5923 0.080287 0.035785 7.588230 9.616556 -5924 0.117012 0.169131 8.717125 13.963478 -5925 0.093343 0.050360 12.860031 11.190414 -5926 0.063538 0.034076 8.290782 11.346976 -5927 0.048815 0.039012 9.957508 11.836451 -5928 0.045050 0.014050 8.874019 12.284295 -5929 0.064173 0.056971 11.474362 11.870523 -5930 0.160273 0.203237 12.559127 15.561365 -5931 0.080483 0.063810 10.108663 13.584026 -5932 0.039975 0.022052 6.290340 10.169771 -5933 0.083375 0.051075 7.370458 14.913979 -5934 0.048656 0.019421 6.825951 14.016310 -5935 0.075176 0.032565 8.534384 10.424847 -5936 0.080081 0.039555 14.436593 17.786552 -5937 0.084184 0.054800 8.960626 14.539464 -5938 0.068194 0.057553 12.495229 13.958879 -5939 0.048173 0.024542 10.383938 15.963457 -5940 0.193233 0.070111 10.435831 15.573345 -5941 0.067627 0.048881 13.006062 11.406516 -5942 0.090484 0.075867 7.512715 8.203114 -5943 0.053439 0.029634 11.562071 11.051181 -5944 0.070542 0.042501 11.401469 15.287234 -5945 0.043347 0.033407 10.083832 13.387541 -5946 0.266620 0.057378 7.314115 15.861429 -5947 0.078860 0.037902 10.493229 13.178257 -5948 0.062310 0.053128 7.873685 12.903671 -5949 0.044285 0.026682 8.602932 10.840424 -5950 0.087571 0.041282 10.667130 11.026657 -5951 0.149979 0.051879 13.652795 16.945753 -5952 0.060600 0.033011 10.930190 12.659625 -5953 0.071349 0.051522 9.207545 8.921912 -5954 0.059507 0.038826 12.462610 14.495053 -5955 0.083577 0.027145 9.592168 14.010058 -5956 0.092977 0.047301 7.613770 9.645435 -5957 0.092948 0.064647 12.522526 17.605296 -5958 0.057272 0.030017 9.013942 8.931091 -5959 0.107682 0.070628 11.940988 13.474478 -5960 0.091610 0.073711 12.200001 12.741459 -5961 0.061398 0.030711 9.408003 13.471693 -5962 0.085075 0.031338 11.027715 9.563327 -5963 0.049247 0.015533 8.338057 8.746315 -5964 0.064586 0.070615 9.783896 17.929311 -5965 0.122836 0.063840 11.720701 13.065196 -5966 0.209834 0.057832 12.082701 14.518824 -5967 0.059713 0.030360 9.045091 11.923779 -5968 0.061856 0.041533 9.235171 12.563842 -5969 0.075288 0.043772 19.997842 22.505645 -5970 0.083603 0.059218 7.040344 11.444251 -5971 0.141914 0.050138 7.895266 10.806316 -5972 0.194399 0.068103 10.867116 13.750435 -5973 0.052805 0.037325 7.197938 8.524172 -5974 0.091899 0.076101 9.344286 10.745961 -5975 0.080323 0.043382 8.967551 14.113282 -5976 0.081430 0.069962 9.514967 17.488687 -5977 0.173852 0.074694 8.526765 7.074056 -5978 0.060356 0.030613 8.317686 7.674715 -5979 0.052606 0.051684 11.327084 15.981847 -5980 0.173449 0.059575 12.506714 17.114651 -5981 0.092691 0.052836 11.625379 12.661852 -5982 0.075739 0.049934 13.244183 14.507351 -5983 0.092592 0.060987 9.113600 17.737972 -5984 0.065690 0.050943 7.878551 13.493991 -5985 0.059904 0.051492 11.258669 14.131148 -5986 0.076289 0.038016 6.839547 12.713233 -5987 0.057820 0.043601 7.712531 8.356044 -5988 0.085011 0.043918 8.691262 9.117228 -5989 0.240868 0.221605 12.297319 13.662407 -5990 0.053822 0.036871 13.316944 11.850910 -5991 0.064629 0.043234 6.047696 10.111002 -5992 0.048434 0.042096 7.592098 11.541780 -5993 0.064552 0.036414 6.537878 7.660628 -5994 0.119913 0.056627 12.121436 13.423382 -5995 0.082145 0.061985 8.749107 8.955734 -5996 0.129246 0.045578 13.684718 18.797170 -5997 0.083931 0.048010 8.605402 9.979230 -5998 0.033581 0.022603 9.716310 11.446322 -5999 0.076614 0.075675 12.073569 11.369526 -6000 0.090015 0.044560 9.363429 10.285529 -6001 0.062771 0.042106 9.141635 13.292329 -6002 0.071257 0.036476 9.729402 9.103140 -6003 0.082994 0.069954 13.112872 14.256215 -6004 0.053760 0.022465 8.185352 9.157912 -6005 0.048991 0.040649 7.665260 10.353600 -6006 0.141612 0.074600 9.060829 14.912536 -6007 0.066354 0.039987 10.717487 13.217491 -6008 0.072450 0.023643 6.026196 10.098300 -6009 0.057477 0.025896 7.126711 12.654498 -6010 0.060400 0.035671 11.954173 10.143462 -6011 0.069712 0.050504 13.104914 16.503148 -6012 0.034954 0.022988 8.235220 8.157524 -6013 0.068738 0.043051 11.006152 13.726531 -6014 0.092001 0.052657 12.973201 12.037027 -6015 0.268401 0.066390 9.584092 12.109870 -6016 0.090265 0.049550 11.176317 12.665231 -6017 0.066142 0.053984 11.216798 20.672578 -6018 0.067470 0.064210 6.840138 11.862076 -6019 0.209362 0.093824 12.622523 14.401167 -6020 0.063241 0.039506 9.107180 12.808467 -6021 0.047401 0.030079 11.432441 10.672238 -6022 0.086205 0.048910 9.302257 12.900311 -6023 0.066219 0.037728 7.218944 16.685445 -6024 0.081173 0.065954 10.857430 9.885539 -6025 0.091437 0.039316 13.111342 13.699112 -6026 0.040543 0.028397 8.376957 12.635251 -6027 0.079463 0.032168 12.647227 13.725608 -6028 0.053789 0.057097 10.409154 10.929204 -6029 0.095754 0.056977 8.381464 13.992307 -6030 0.072220 0.032835 7.695599 8.511204 -6031 0.084677 0.043087 9.659410 11.038675 -6032 0.073560 0.027892 10.413083 13.995125 -6033 0.075066 0.160546 11.345677 16.039193 -6034 0.092359 0.072898 9.519666 16.419876 -6035 0.066471 0.052943 8.947910 13.097379 -6036 0.144833 0.061001 9.675823 15.463289 -6037 0.158588 0.285518 10.395462 12.429579 -6038 0.059948 0.030257 15.073717 14.922483 -6039 0.043122 0.033786 11.467522 18.049777 -6040 0.064007 0.040506 8.064439 13.203681 -6041 0.046702 0.046747 10.736392 12.294286 -6042 0.060648 0.062859 8.577118 14.612821 -6043 0.079108 0.039406 7.863552 15.690172 -6044 0.119707 0.069302 9.652030 12.163109 -6045 0.064817 0.016079 7.339726 10.100729 -6046 0.084436 0.031082 9.657905 9.176055 -6047 0.090551 0.055557 10.231230 10.584354 -6048 0.085532 0.033647 11.269767 13.122135 -6049 0.294361 0.071910 8.588997 11.603651 -6050 0.055284 0.018752 8.546100 10.949439 -6051 0.084955 0.050415 12.433990 12.505690 -6052 0.096272 0.075455 12.871752 15.745849 -6053 0.075701 0.048799 11.428675 10.481296 -6054 0.097857 0.059096 8.081250 13.867975 -6055 0.298609 0.059668 8.657451 13.283131 -6056 0.049464 0.029012 7.903043 8.649872 -6057 0.084907 0.086307 10.945242 17.537200 -6058 0.077324 0.043618 11.744414 12.222246 -6059 0.059709 0.026810 10.033738 7.590040 -6060 0.074651 0.034922 8.910035 9.920230 -6061 0.292044 0.078344 13.824333 17.815724 -6062 0.033505 0.013646 9.014625 9.614462 -6063 0.069950 0.098461 10.503885 8.846886 -6064 0.046698 0.018589 7.052117 6.085880 -6065 0.067424 0.035303 10.027876 9.985286 -6066 0.099853 0.063030 12.509519 15.269387 -6067 0.189941 0.052308 8.957308 11.031693 -6068 0.110610 0.059221 7.583651 11.626253 -6069 0.036945 0.034138 6.932084 9.590050 -6070 0.094248 0.055346 14.415987 18.444194 -6071 0.077323 0.054483 9.251024 14.981568 -6072 0.077237 0.059412 7.324324 11.147649 -6073 0.129075 0.082198 12.507362 15.845171 -6074 0.048962 0.020930 17.601382 16.945351 -6075 0.078975 0.030170 8.366243 13.403686 -6076 0.064168 0.032397 11.414477 21.274851 -6077 0.065123 0.035747 10.964498 10.111346 -6078 0.068501 0.037251 6.617154 10.202311 -6079 0.069097 0.033476 9.848518 12.253979 -6080 0.065030 0.022979 9.142292 10.890139 -6081 0.060681 0.045211 11.662415 12.404842 -6082 0.256403 0.071321 15.243272 19.058654 -6083 0.173536 0.070286 8.707350 12.101434 -6084 0.088618 0.059223 13.824061 12.813394 -6085 0.081385 0.045281 6.637053 9.657490 -6086 0.047573 0.026762 9.554578 11.115725 -6087 0.075242 0.045964 16.397346 15.262574 -6088 0.062064 0.046137 9.931138 16.381289 -6089 0.073805 0.043841 8.936519 12.713916 -6090 0.062151 0.021787 8.300278 9.353879 -6091 0.067578 0.032803 6.104768 11.599606 -6092 0.090118 0.042702 7.412653 8.897989 -6093 0.281667 0.185432 11.233824 10.581737 -6094 0.087211 0.038701 13.293399 18.079810 -6095 0.081160 0.043303 12.251315 11.197164 -6096 0.050666 0.026242 9.345668 9.232013 -6097 0.087680 0.066418 12.277455 15.518953 -6098 0.061862 0.033380 8.726125 9.907741 -6099 0.050278 0.035670 10.013907 13.694909 -6100 0.081407 0.036897 8.040333 10.238827 -6101 0.099391 0.064818 12.827600 11.113953 -6102 0.076504 0.028922 7.642521 11.111912 -6103 0.074072 0.052875 13.501080 13.400028 -6104 0.062933 0.049186 8.211817 13.222250 -6105 0.063879 0.020736 7.718450 10.450674 -6106 0.189729 0.078963 12.360080 11.148318 -6107 0.065624 0.055002 9.311738 9.338385 -6108 0.291236 0.086230 15.014798 24.080713 -6109 0.067252 0.041427 11.963470 13.533646 -6110 0.046689 0.030509 8.439430 9.562927 -6111 0.089050 0.048145 15.443120 19.469267 -6112 0.089983 0.054436 14.506683 21.575900 -6113 0.072508 0.034877 5.886789 9.270397 -6114 0.057780 0.027811 10.798364 16.070061 -6115 0.080937 0.036261 10.583730 12.649528 -6116 0.244543 0.044122 8.712432 12.003354 -6117 0.093168 0.055505 7.728274 9.054942 -6118 0.061559 0.044101 12.321464 14.897196 -6119 0.058807 0.046334 9.917606 10.124009 -6120 0.273199 0.074333 12.135196 13.873155 -6121 0.076817 0.052813 10.797530 14.195213 -6122 0.039491 0.030836 13.072823 10.475058 -6123 0.072504 0.031482 11.777460 11.588062 -6124 0.048435 0.022454 11.615646 13.402678 -6125 0.095490 0.050532 11.957720 15.346316 -6126 0.238026 0.041928 9.684618 13.390936 -6127 0.055312 0.023326 11.179883 10.007676 -6128 0.076846 0.039263 13.237551 15.957484 -6129 0.079793 0.058260 9.107143 8.941071 -6130 0.057076 0.041202 14.613262 19.761074 -6131 0.117254 0.092626 9.328421 11.868969 -6132 0.054973 0.029208 8.726448 13.465098 -6133 0.072766 0.063721 8.457972 14.973529 -6134 0.098614 0.030792 6.500753 11.705615 -6135 0.086437 0.058677 17.426119 17.144761 -6136 0.068421 0.050458 6.654054 9.805592 -6137 0.097439 0.075422 11.799743 14.629856 -6138 0.176400 0.051853 10.792488 16.910916 -6139 0.069417 0.038716 8.965383 8.282520 -6140 0.067848 0.036389 6.635685 8.492471 -6141 0.057853 0.028457 8.772157 15.587143 -6142 0.083033 0.029003 11.724930 13.993079 -6143 0.079270 0.051285 7.726043 9.154836 -6144 0.044620 0.025956 6.966890 12.569259 -6145 0.071780 0.053002 8.672118 13.437509 -6146 0.058845 0.022427 8.448702 8.065091 -6147 0.060939 0.029356 12.201300 14.650244 -6148 0.070255 0.044428 7.822075 7.956123 -6149 0.258475 0.090578 11.757296 14.949203 -6150 0.053716 0.039296 8.665350 10.389290 -6151 0.062600 0.032452 9.317730 13.237982 -6152 0.072906 0.038358 7.061379 10.028220 -6153 0.071286 0.045966 10.126452 9.086840 -6154 0.063862 0.039768 9.400872 10.977471 -6155 0.218074 0.076109 17.360445 18.514281 -6156 0.239553 0.068085 10.780200 12.702478 -6157 0.035729 0.019810 8.229347 12.044332 -6158 0.186544 0.074628 14.345388 18.219384 -6159 0.152667 0.081858 13.456705 21.855873 -6160 0.064265 0.028998 6.746402 9.677710 -6161 0.058862 0.046140 8.007336 10.040269 -6162 0.044203 0.031959 12.889125 17.605487 -6163 0.075268 0.053560 11.185797 10.625456 -6164 0.049772 0.039020 6.206869 6.587832 -6165 0.087515 0.070554 12.084746 13.165705 -6166 0.075193 0.072854 13.345342 11.291006 -6167 0.063161 0.020847 8.767623 14.089802 -6168 0.056708 0.031616 9.751036 13.136607 -6169 0.087554 0.054214 9.962119 17.603767 -6170 0.090169 0.047724 10.695559 13.015945 -6171 0.057472 0.069227 8.134994 18.060684 -6172 0.133321 0.080424 11.186915 15.898960 -6173 0.088505 0.029353 8.300332 10.435071 -6174 0.054419 0.015552 7.316346 13.294865 -6175 0.072553 0.040360 11.680221 15.895000 -6176 0.078633 0.054021 17.770709 21.597676 -6177 0.291822 0.036589 9.891876 12.700813 -6178 0.058626 0.030224 11.585704 16.796182 -6179 0.105761 0.280360 15.564022 21.620577 -6180 0.205751 0.070132 9.837985 12.318394 -6181 0.064578 0.029350 12.838619 15.224325 -6182 0.238306 0.083214 15.277512 13.471004 -6183 0.090761 0.033610 10.067348 13.580048 -6184 0.059962 0.038649 8.272509 9.221852 -6185 0.087495 0.068336 7.041406 8.263187 -6186 0.089388 0.196816 12.000867 16.927931 -6187 0.091316 0.051385 14.108879 12.234189 -6188 0.223799 0.081564 9.575469 12.487679 -6189 0.065826 0.048879 18.546220 17.914483 -6190 0.133573 0.068645 8.512998 17.795135 -6191 0.121156 0.044885 9.803983 10.779305 -6192 0.073038 0.048225 11.322207 9.938177 -6193 0.074631 0.037215 9.170495 19.069634 -6194 0.075221 0.044724 12.823999 20.252929 -6195 0.077415 0.056118 13.522381 20.035614 -6196 0.065364 0.042276 7.796502 12.725973 -6197 0.092692 0.058838 13.243353 12.579054 -6198 0.063805 0.085785 10.182970 11.426741 -6199 0.072376 0.048816 5.965736 13.023187 -6200 0.059428 0.051149 14.134033 19.554369 -6201 0.070139 0.037067 11.641992 13.755489 -6202 0.097243 0.049438 10.996156 14.960676 -6203 0.091108 0.051654 12.451275 18.551969 -6204 0.076441 0.049166 14.607757 14.566630 -6205 0.081453 0.033480 9.395027 16.079556 -6206 0.045601 0.031090 8.087728 10.511309 -6207 0.096678 0.040541 14.146779 12.164423 -6208 0.089486 0.058060 9.935708 11.778049 -6209 0.125115 0.081235 9.117570 10.938935 -6210 0.246507 0.057190 10.306120 15.812947 -6211 0.063664 0.044265 10.232996 11.958394 -6212 0.116503 0.072557 7.963645 10.190113 -6213 0.064602 0.055211 7.563402 11.527274 -6214 0.061496 0.029429 7.881170 11.108422 -6215 0.188647 0.077116 11.586439 21.801462 -6216 0.063061 0.045981 6.751074 11.467026 -6217 0.061776 0.024152 16.382113 16.764418 -6218 0.140283 0.090320 11.492282 17.883726 -6219 0.075543 0.057347 8.820790 10.588207 -6220 0.047469 0.031620 8.292183 15.110195 -6221 0.037678 0.029573 8.720177 8.220266 -6222 0.092000 0.073158 8.825256 9.542281 -6223 0.068172 0.042880 8.943303 11.637442 -6224 0.090126 0.038930 12.634222 19.236870 -6225 0.052956 0.033124 6.633794 15.117319 -6226 0.128039 0.034008 12.806957 19.576518 -6227 0.067014 0.026702 11.393993 14.774170 -6228 0.076035 0.041635 8.340157 11.542202 -6229 0.086455 0.073303 15.437466 14.391580 -6230 0.089255 0.061627 12.373958 16.260673 -6231 0.036845 0.028844 8.923197 9.811413 -6232 0.058282 0.034677 16.114947 17.398959 -6233 0.079544 0.068912 8.778605 12.286846 -6234 0.275280 0.065947 8.342312 8.736951 -6235 0.035557 0.024774 8.517430 8.793975 -6236 0.028666 0.021432 8.467608 12.200407 -6237 0.072128 0.052975 12.664293 14.714679 -6238 0.089731 0.044707 10.812792 13.498349 -6239 0.082404 0.063871 9.441321 12.230475 -6240 0.073587 0.062217 10.466000 16.151692 -6241 0.225033 0.072290 7.675586 13.808564 -6242 0.082186 0.055902 12.461948 10.334770 -6243 0.069990 0.053390 7.582560 12.153038 -6244 0.097669 0.042195 10.517263 14.418988 -6245 0.164512 0.106226 11.752933 10.083315 -6246 0.093092 0.034056 13.375094 10.368250 -6247 0.047556 0.023058 7.268064 11.252992 -6248 0.071716 0.036799 12.930729 12.433992 -6249 0.261596 0.096321 10.773867 19.226687 -6250 0.141929 0.050870 12.234831 11.973945 -6251 0.058753 0.032794 15.417319 11.712909 -6252 0.071839 0.041616 11.455821 15.419684 -6253 0.082501 0.034596 10.420808 11.875682 -6254 0.097878 0.048608 7.769426 10.224831 -6255 0.091361 0.044561 8.075870 10.120453 -6256 0.078960 0.057068 12.045948 14.683322 -6257 0.271280 0.071407 11.538894 19.314312 -6258 0.055854 0.031692 9.148029 11.788792 -6259 0.051573 0.027100 7.331050 12.007630 -6260 0.097620 0.054287 6.290495 8.808387 -6261 0.064399 0.029289 11.679012 14.693304 -6262 0.065400 0.050712 9.985327 9.093871 -6263 0.060987 0.030980 6.472948 8.426865 -6264 0.079546 0.046813 8.621164 13.931884 -6265 0.074549 0.060937 7.536851 9.738012 -6266 0.145898 0.034605 14.752730 13.864311 -6267 0.143242 0.074292 17.508483 15.736824 -6268 0.085891 0.051222 12.808028 16.860086 -6269 0.062068 0.030403 7.691576 11.803362 -6270 0.286320 0.058157 10.077079 13.667605 -6271 0.052817 0.033984 10.589711 8.808676 -6272 0.073842 0.046239 9.655334 10.964508 -6273 0.064450 0.037373 10.809518 12.972702 -6274 0.057088 0.033471 12.959563 15.616943 -6275 0.066511 0.039883 10.503429 12.472994 -6276 0.051227 0.040747 8.785191 16.659373 -6277 0.074076 0.040734 7.366857 9.175099 -6278 0.061492 0.043720 7.049817 9.532968 -6279 0.066802 0.029417 7.667162 7.489039 -6280 0.093105 0.063135 9.058211 11.566189 -6281 0.078769 0.064507 10.380359 20.284530 -6282 0.068322 0.067444 12.829252 11.851140 -6283 0.062453 0.031979 16.956482 15.987250 -6284 0.096234 0.037805 12.109132 16.090195 -6285 0.065543 0.038897 8.833064 19.504508 -6286 0.097551 0.069664 12.099403 15.609623 -6287 0.116475 0.049668 11.050029 16.363120 -6288 0.046216 0.026767 7.778865 8.114373 -6289 0.066865 0.028356 10.759166 13.569280 -6290 0.088469 0.071360 10.545682 12.198210 -6291 0.090913 0.055592 8.848680 14.366291 -6292 0.224538 0.040021 13.255533 21.621346 -6293 0.049052 0.027578 7.872018 11.134541 -6294 0.059255 0.042150 14.421687 19.858265 -6295 0.230479 0.137436 11.801978 19.379701 -6296 0.075632 0.040729 10.991195 12.381553 -6297 0.162315 0.071892 9.736825 7.824199 -6298 0.197483 0.061514 10.824309 13.515891 -6299 0.058404 0.025578 6.048235 10.642536 -6300 0.082920 0.055507 10.150867 10.371376 -6301 0.098025 0.058007 9.445444 13.363703 -6302 0.058558 0.043037 8.681477 13.931499 -6303 0.091969 0.056346 7.395321 13.823441 -6304 0.069686 0.036750 9.494334 12.776110 -6305 0.155207 0.052027 7.965814 11.904777 -6306 0.186971 0.084678 18.457780 14.458459 -6307 0.278602 0.078948 10.986586 12.330037 -6308 0.082421 0.040356 8.231922 9.787405 -6309 0.072906 0.057917 9.988977 15.861123 -6310 0.078807 0.035307 11.905406 12.358283 -6311 0.037799 0.021489 8.391817 8.477114 -6312 0.099363 0.069360 10.167142 14.211756 -6313 0.091396 0.065233 7.794889 15.487053 -6314 0.088285 0.075583 13.063034 13.436584 -6315 0.055350 0.032990 9.036610 13.151228 -6316 0.096998 0.056401 7.893892 13.038253 -6317 0.039204 0.027117 7.803408 14.071871 -6318 0.095919 0.101965 7.142634 11.300891 -6319 0.196651 0.053406 8.928525 13.113276 -6320 0.205596 0.095998 8.206867 11.235792 -6321 0.079010 0.033580 11.590060 13.564114 -6322 0.055167 0.024836 12.879487 23.759603 -6323 0.260671 0.085771 10.524300 12.605220 -6324 0.077316 0.059192 8.314738 11.653577 -6325 0.090650 0.066168 9.768275 15.340994 -6326 0.042573 0.021083 7.374984 12.486119 -6327 0.071694 0.080593 9.831587 10.041115 -6328 0.082996 0.055157 7.933869 13.501910 -6329 0.075204 0.053648 9.045711 11.953869 -6330 0.066663 0.047663 9.315483 15.679039 -6331 0.063178 0.057049 8.548981 9.888494 -6332 0.052222 0.025105 10.984242 13.046718 -6333 0.188524 0.079610 12.027968 12.316193 -6334 0.058898 0.019565 7.185121 10.762082 -6335 0.057496 0.034081 13.066206 13.028977 -6336 0.086500 0.052651 13.543432 23.343474 -6337 0.053569 0.022976 6.426881 8.364227 -6338 0.286243 0.049933 14.113258 15.131635 -6339 0.082426 0.047093 10.555348 14.551777 -6340 0.051895 0.050864 6.773008 10.528696 -6341 0.146091 0.164617 14.624821 14.881485 -6342 0.048387 0.036819 4.891514 7.751604 -6343 0.156260 0.062010 11.284333 15.788676 -6344 0.065159 0.030699 8.920438 14.259209 -6345 0.091535 0.039158 15.000811 19.915382 -6346 0.089924 0.049985 8.098761 9.484468 -6347 0.070055 0.047866 10.011200 17.038807 -6348 0.057359 0.046560 7.823222 12.755850 -6349 0.069354 0.040822 10.027644 12.534915 -6350 0.084292 0.037437 10.562166 15.245446 -6351 0.052614 0.042675 8.872270 13.790185 -6352 0.269648 0.070811 18.883098 20.855036 -6353 0.101894 0.064647 9.741737 13.283484 -6354 0.057199 0.039452 8.918879 9.307732 -6355 0.055334 0.019433 7.758258 14.113871 -6356 0.069373 0.036608 9.785971 12.406434 -6357 0.063264 0.053789 8.822920 12.640101 -6358 0.032245 0.022483 7.184689 7.577153 -6359 0.044459 0.027009 6.719057 7.681951 -6360 0.285581 0.118296 11.735559 11.040882 -6361 0.053423 0.024221 10.094101 11.616784 -6362 0.046381 0.036207 10.369759 12.917131 -6363 0.063361 0.039382 11.922466 9.816335 -6364 0.065733 0.074786 9.047167 12.434326 -6365 0.053691 0.032896 10.283195 11.027952 -6366 0.057377 0.027412 5.413917 11.232587 -6367 0.072839 0.039985 8.095715 10.914488 -6368 0.222899 0.286208 11.551794 16.725478 -6369 0.061472 0.033419 10.529477 14.136625 -6370 0.051266 0.023796 7.570114 8.048911 -6371 0.081287 0.036043 8.712927 12.221985 -6372 0.232133 0.047143 8.765970 22.604510 -6373 0.074942 0.073526 11.218693 11.845520 -6374 0.074214 0.029610 10.028894 13.112334 -6375 0.062734 0.046529 10.011380 14.209371 -6376 0.054105 0.032939 9.897185 13.389541 -6377 0.072941 0.058940 12.048283 14.314001 -6378 0.051283 0.036519 7.367383 9.910987 -6379 0.074038 0.036247 10.381304 11.133029 -6380 0.079740 0.071916 9.239149 13.079150 -6381 0.061498 0.030381 8.344014 8.202340 -6382 0.088137 0.031150 10.334946 11.569887 -6383 0.079808 0.054060 6.907833 12.506482 -6384 0.071417 0.036023 11.379810 10.512472 -6385 0.064732 0.062435 10.942814 10.339110 -6386 0.127440 0.192694 9.307286 15.334259 -6387 0.051044 0.020172 7.890902 8.109479 -6388 0.094275 0.029456 9.239083 7.737986 -6389 0.183921 0.065166 9.643338 11.236725 -6390 0.062106 0.024545 4.835815 9.647756 -6391 0.068320 0.060617 7.240010 9.006213 -6392 0.096487 0.058302 13.547661 16.738359 -6393 0.082680 0.083464 11.207254 12.600245 -6394 0.071380 0.036048 7.353253 9.938466 -6395 0.061142 0.038931 8.368578 12.549435 -6396 0.077170 0.033788 9.407327 13.662459 -6397 0.112590 0.121219 9.234371 12.288996 -6398 0.232328 0.075253 9.514750 11.540031 -6399 0.065555 0.037751 5.231053 8.068660 -6400 0.068584 0.046732 8.013515 10.674754 -6401 0.071986 0.028833 10.300029 14.176962 -6402 0.102935 0.088977 11.983256 19.230506 -6403 0.088156 0.039487 9.114404 8.435175 -6404 0.077723 0.028902 10.247626 14.831928 -6405 0.071827 0.042572 11.901595 12.515204 -6406 0.071747 0.039711 5.779460 11.375790 -6407 0.063055 0.043513 5.739941 12.342579 -6408 0.098054 0.055655 10.389539 14.260117 -6409 0.088075 0.044556 11.717516 13.880803 -6410 0.074646 0.044405 11.487606 13.178617 -6411 0.065253 0.041047 8.131753 8.747360 -6412 0.092037 0.063994 9.263850 15.357987 -6413 0.083647 0.073250 10.237053 12.224162 -6414 0.044326 0.027867 7.310260 11.973182 -6415 0.127708 0.049980 11.672308 15.290144 -6416 0.139512 0.070378 13.676410 12.149979 -6417 0.043130 0.026284 6.157188 9.288548 -6418 0.068412 0.064175 10.192396 13.132836 -6419 0.151761 0.253585 15.287081 16.718206 -6420 0.078607 0.069449 9.571123 15.464679 -6421 0.088022 0.078578 16.388289 18.113051 -6422 0.108319 0.060760 15.472447 11.597411 -6423 0.055576 0.033427 8.303934 15.667665 -6424 0.169657 0.096188 8.365330 14.121295 -6425 0.072494 0.037408 12.190246 8.388691 -6426 0.092520 0.048125 7.769066 11.403506 -6427 0.049832 0.027924 13.045593 18.057720 -6428 0.094653 0.075200 6.777338 11.392587 -6429 0.072554 0.037207 10.445770 9.248957 -6430 0.089429 0.048198 9.398411 12.198183 -6431 0.073317 0.034960 9.370117 12.745160 -6432 0.060331 0.030380 10.915566 13.022658 -6433 0.118031 0.061650 7.938696 10.725509 -6434 0.061392 0.034489 10.039097 11.239155 -6435 0.070447 0.044362 8.039295 11.532951 -6436 0.084799 0.049808 12.269737 12.835520 -6437 0.055263 0.029268 8.367224 12.431812 -6438 0.211624 0.070171 11.165450 17.690319 -6439 0.072415 0.073548 7.449926 12.742174 -6440 0.079628 0.034472 8.859145 10.029638 -6441 0.073962 0.035487 12.421304 16.365395 -6442 0.295508 0.290361 11.963833 20.899975 -6443 0.090302 0.046527 8.690797 14.275550 -6444 0.080010 0.037616 9.739109 11.404998 -6445 0.095038 0.081533 14.197980 16.292708 -6446 0.051991 0.039997 5.181500 7.640419 -6447 0.059311 0.026270 7.147174 11.816443 -6448 0.076551 0.039297 8.450976 12.177313 -6449 0.057809 0.035702 6.167888 11.332907 -6450 0.086978 0.022794 10.728534 13.633558 -6451 0.074475 0.060076 10.941318 9.433887 -6452 0.253671 0.065660 11.961832 13.194083 -6453 0.059736 0.039456 12.353657 13.021190 -6454 0.082750 0.046652 7.698569 11.515281 -6455 0.075907 0.039536 10.795251 10.360447 -6456 0.041185 0.031888 7.395995 6.304968 -6457 0.089218 0.084206 9.442196 12.711644 -6458 0.076961 0.064128 11.531407 14.470276 -6459 0.057253 0.023793 9.592455 10.956238 -6460 0.045739 0.028311 4.561087 7.889170 -6461 0.046526 0.022220 11.341895 12.026655 -6462 0.084137 0.063004 8.933938 12.139219 -6463 0.067413 0.044264 11.989383 11.411679 -6464 0.079943 0.042756 7.134522 8.827644 -6465 0.148029 0.046564 13.593880 9.534730 -6466 0.064758 0.053508 12.543435 12.567492 -6467 0.076790 0.055307 14.818665 18.806373 -6468 0.277638 0.051519 11.817572 16.159146 -6469 0.045122 0.027120 8.737227 8.047040 -6470 0.061235 0.044049 12.280355 10.323392 -6471 0.285568 0.077203 9.452110 15.807441 -6472 0.073796 0.048025 7.154268 11.916152 -6473 0.091109 0.035965 8.015517 12.544033 -6474 0.088331 0.052095 8.610238 11.467003 -6475 0.058789 0.028459 9.295487 13.444531 -6476 0.190604 0.046715 11.170250 14.353219 -6477 0.263909 0.071245 10.283292 10.471049 -6478 0.070123 0.047157 10.439821 15.176691 -6479 0.090047 0.065653 9.855781 14.486997 -6480 0.066823 0.037630 10.754802 15.281884 -6481 0.079986 0.031469 10.299964 14.853400 -6482 0.054201 0.028974 9.773137 13.232926 -6483 0.062322 0.044010 8.430737 7.897703 -6484 0.068588 0.043231 12.559902 15.792531 -6485 0.118232 0.095867 10.693606 13.521873 -6486 0.084184 0.040470 13.697409 17.668609 -6487 0.111174 0.068425 12.491117 15.110609 -6488 0.095461 0.059673 12.281772 15.286845 -6489 0.088357 0.026669 7.906639 9.157130 -6490 0.096437 0.072995 9.952509 11.324733 -6491 0.046534 0.033073 7.706993 10.909122 -6492 0.194355 0.183916 12.417582 12.646512 -6493 0.048749 0.042238 9.462182 11.367064 -6494 0.124008 0.050909 8.375893 12.371792 -6495 0.292519 0.083389 15.116936 22.710065 -6496 0.093637 0.075137 12.762044 10.649655 -6497 0.060037 0.026531 9.889868 13.073639 -6498 0.084757 0.057118 12.726811 17.279968 -6499 0.070550 0.053162 9.019148 8.557027 -6500 0.061924 0.034838 10.520784 14.780798 -6501 0.041094 0.028411 7.244949 6.546323 -6502 0.076358 0.039464 8.912803 10.776144 -6503 0.070578 0.051057 7.537582 11.783818 -6504 0.066894 0.030952 10.293144 11.868265 -6505 0.090394 0.065382 10.291153 19.470580 -6506 0.093163 0.062790 12.511992 15.349384 -6507 0.260676 0.048537 13.521622 14.806662 -6508 0.062585 0.028006 5.811685 9.500645 -6509 0.066703 0.063859 8.609052 12.853119 -6510 0.059437 0.047587 7.770337 8.333941 -6511 0.096046 0.057534 9.471981 8.725372 -6512 0.094762 0.044611 11.288849 17.571305 -6513 0.075331 0.060909 20.023663 17.228415 -6514 0.074286 0.057901 9.091606 13.434377 -6515 0.083981 0.034849 9.483893 15.025883 -6516 0.070542 0.042211 8.562427 11.024641 -6517 0.206938 0.050791 10.341110 12.884532 -6518 0.093619 0.042834 6.858159 10.856586 -6519 0.047399 0.038950 8.393674 8.376852 -6520 0.073890 0.048427 11.202479 12.754030 -6521 0.065007 0.041845 11.087846 11.300723 -6522 0.084956 0.083972 11.632802 13.538240 -6523 0.064745 0.034647 12.419428 14.503074 -6524 0.083176 0.046815 11.802317 10.079057 -6525 0.091636 0.032630 15.814148 13.443388 -6526 0.089840 0.045893 10.466916 18.654971 -6527 0.119659 0.045415 13.763130 15.367313 -6528 0.086376 0.030976 9.357925 14.228280 -6529 0.074212 0.069062 10.168056 14.224675 -6530 0.090762 0.038870 14.964417 18.307519 -6531 0.049854 0.022793 8.537577 8.469038 -6532 0.061251 0.045695 8.467908 12.987246 -6533 0.084544 0.047185 10.485898 12.139172 -6534 0.262113 0.066341 12.132979 13.592456 -6535 0.045657 0.063771 11.138663 12.468097 -6536 0.067838 0.045844 12.550219 14.719254 -6537 0.049345 0.027801 6.630584 7.729880 -6538 0.294016 0.046081 12.466003 15.267928 -6539 0.064819 0.039539 6.950137 19.366412 -6540 0.073901 0.049445 8.604310 8.783368 -6541 0.066048 0.035430 12.179921 15.192213 -6542 0.097953 0.039826 17.630106 19.935031 -6543 0.046082 0.032479 5.904147 12.103188 -6544 0.065144 0.036300 7.231438 8.549894 -6545 0.036330 0.029763 7.026462 7.764233 -6546 0.124104 0.052775 10.245643 11.662928 -6547 0.067733 0.028445 7.842616 11.632019 -6548 0.089601 0.030976 10.030252 14.846689 -6549 0.122972 0.098452 12.587688 15.485809 -6550 0.069143 0.027678 6.714498 10.669299 -6551 0.091650 0.051590 6.128416 9.269461 -6552 0.061251 0.038234 9.699833 10.189801 -6553 0.077277 0.040375 9.490865 9.286857 -6554 0.068665 0.043994 5.962657 10.154295 -6555 0.089115 0.057041 7.321625 10.711882 -6556 0.074063 0.059574 10.364859 14.337227 -6557 0.080001 0.058993 10.270937 10.899319 -6558 0.067776 0.051020 14.508617 16.168384 -6559 0.081749 0.052311 12.582678 13.982767 -6560 0.069808 0.054717 9.230706 12.107669 -6561 0.075992 0.039696 9.579596 18.253675 -6562 0.041811 0.020669 10.478942 12.844692 -6563 0.099406 0.062484 10.562454 12.491320 -6564 0.047408 0.027346 10.307893 15.014653 -6565 0.054863 0.027654 12.141789 9.726519 -6566 0.095653 0.228875 10.700026 14.539961 -6567 0.046457 0.021278 9.534136 8.513929 -6568 0.054383 0.033889 11.294108 14.423663 -6569 0.080428 0.051260 8.757733 13.492070 -6570 0.073802 0.031948 6.505746 6.996647 -6571 0.079329 0.038276 10.257113 13.812853 -6572 0.070877 0.028769 9.904544 14.810457 -6573 0.074242 0.063639 11.330334 11.910606 -6574 0.075705 0.033006 6.818606 8.447422 -6575 0.288731 0.068061 11.854901 17.273778 -6576 0.047547 0.022701 10.187229 13.042559 -6577 0.037196 0.022473 8.308433 13.296708 -6578 0.171437 0.078652 15.836385 25.057539 -6579 0.065039 0.023951 8.968532 8.976759 -6580 0.077509 0.058801 11.893456 12.539460 -6581 0.081988 0.053535 12.575816 13.220304 -6582 0.094730 0.040981 9.915000 10.609151 -6583 0.036927 0.016358 7.653769 10.659067 -6584 0.052689 0.039707 9.007983 15.752981 -6585 0.063668 0.051084 7.394724 10.891488 -6586 0.093106 0.046615 11.822469 10.268099 -6587 0.200265 0.039724 9.278454 12.578680 -6588 0.274454 0.084063 11.808163 15.994433 -6589 0.050509 0.040471 10.868768 11.029466 -6590 0.059326 0.026720 14.209308 14.989601 -6591 0.064068 0.044282 13.900921 15.592954 -6592 0.048780 0.038943 11.687817 16.294343 -6593 0.074682 0.051837 11.870476 12.404722 -6594 0.057129 0.033529 7.043024 10.118427 -6595 0.089449 0.032236 8.301028 12.082429 -6596 0.078059 0.066744 9.185859 13.050200 -6597 0.064816 0.021756 8.607045 14.123903 -6598 0.053551 0.055527 10.681807 15.833422 -6599 0.051056 0.031789 10.092676 15.938962 -6600 0.069579 0.026790 10.000131 16.502962 -6601 0.039569 0.027079 5.672559 10.840666 -6602 0.055005 0.024228 5.284167 7.912446 -6603 0.285782 0.094149 13.523351 15.485306 -6604 0.075306 0.040466 8.337522 12.173512 -6605 0.088490 0.042672 12.571418 18.328229 -6606 0.056671 0.049165 11.537468 12.880175 -6607 0.299280 0.067854 11.998695 15.505075 -6608 0.079260 0.033142 9.115621 10.101885 -6609 0.064384 0.035775 10.187581 16.842466 -6610 0.094641 0.077076 9.506897 12.541496 -6611 0.074401 0.055992 13.612089 14.539475 -6612 0.076707 0.054614 6.903539 11.553969 -6613 0.123468 0.057965 11.441292 14.689444 -6614 0.046208 0.038557 16.016425 20.202711 -6615 0.063102 0.030323 8.467671 12.512707 -6616 0.072767 0.074456 8.424139 11.664006 -6617 0.099433 0.027434 8.961926 9.203551 -6618 0.056085 0.035562 9.684920 11.348555 -6619 0.050634 0.031444 8.232586 11.959578 -6620 0.082300 0.052255 10.577554 13.611727 -6621 0.211620 0.065044 14.573206 14.257856 -6622 0.097257 0.063847 13.724026 16.594685 -6623 0.058492 0.035028 10.780833 17.768663 -6624 0.091914 0.058969 13.757456 17.355889 -6625 0.188272 0.095137 9.049873 11.216976 -6626 0.074487 0.026808 9.827011 11.875291 -6627 0.105135 0.173442 12.731807 16.641235 -6628 0.260038 0.066523 7.207347 11.262382 -6629 0.067462 0.038622 10.222225 12.035008 -6630 0.047500 0.018724 9.981239 13.934370 -6631 0.056191 0.031836 8.858065 15.633947 -6632 0.228465 0.080447 6.070451 8.980807 -6633 0.154297 0.074855 10.141447 12.216046 -6634 0.066230 0.055870 9.042328 19.646917 -6635 0.057802 0.030235 6.009898 10.780215 -6636 0.268333 0.079642 9.398723 14.125730 -6637 0.083466 0.068369 12.415460 13.383665 -6638 0.075449 0.038925 10.956560 14.065840 -6639 0.057077 0.057394 11.633492 11.302226 -6640 0.083754 0.061820 7.814767 9.191709 -6641 0.141947 0.053910 7.482434 11.746680 -6642 0.186037 0.070397 13.262460 14.300531 -6643 0.095653 0.092783 10.977895 13.817621 -6644 0.078813 0.028963 8.060130 13.197804 -6645 0.069351 0.041420 12.316465 12.103347 -6646 0.079058 0.043544 9.949701 13.867785 -6647 0.045481 0.031183 9.768917 10.238007 -6648 0.066598 0.053117 11.787571 11.358829 -6649 0.053742 0.037670 11.547797 17.631584 -6650 0.042554 0.039733 10.178268 13.573843 -6651 0.257855 0.083721 10.474914 10.519519 -6652 0.070738 0.042595 12.077934 13.538360 -6653 0.074472 0.035403 12.317353 16.934310 -6654 0.060853 0.050380 7.452673 10.857961 -6655 0.077102 0.049173 8.286823 12.340751 -6656 0.079955 0.032370 7.839909 7.878574 -6657 0.061636 0.034558 9.949785 15.134153 -6658 0.049889 0.039865 9.592516 11.514669 -6659 0.076273 0.046676 8.135180 9.554435 -6660 0.040617 0.031697 9.428147 10.276547 -6661 0.063857 0.039470 7.908319 12.309414 -6662 0.070215 0.029847 8.031399 9.017165 -6663 0.051397 0.024593 9.554473 13.938027 -6664 0.056946 0.036699 6.635745 9.062913 -6665 0.087249 0.067688 10.667820 14.528807 -6666 0.080701 0.053838 10.762020 13.256086 -6667 0.078239 0.045727 10.476231 16.631294 -6668 0.277058 0.074352 6.892772 8.065473 -6669 0.052056 0.027996 8.260141 11.981515 -6670 0.083520 0.034884 9.459707 9.707597 -6671 0.084360 0.037793 10.275100 13.147983 -6672 0.059711 0.036540 9.731304 11.775667 -6673 0.232537 0.073021 7.877217 8.731184 -6674 0.068949 0.044296 13.911079 14.935090 -6675 0.078463 0.083007 18.959406 20.437533 -6676 0.089704 0.026630 8.945389 9.311104 -6677 0.028594 0.032935 11.260293 13.832901 -6678 0.041323 0.029229 9.406312 10.586788 -6679 0.174884 0.082705 10.245381 11.461004 -6680 0.053124 0.021141 9.480726 11.103259 -6681 0.079964 0.060248 8.636218 18.652263 -6682 0.052384 0.027671 9.072886 14.484653 -6683 0.083942 0.069638 9.800006 8.885398 -6684 0.222122 0.045296 19.729284 27.312784 -6685 0.083006 0.058596 12.298240 21.739183 -6686 0.045938 0.037494 7.440408 12.557142 -6687 0.143216 0.097635 10.277244 15.953729 -6688 0.044516 0.032002 10.546467 11.926283 -6689 0.060132 0.040598 11.862777 18.758261 -6690 0.200002 0.206599 12.459519 15.301573 -6691 0.073450 0.041494 9.729154 13.358151 -6692 0.075323 0.049449 9.233756 10.115977 -6693 0.299362 0.060455 12.880400 16.693692 -6694 0.060566 0.029423 10.067613 15.047661 -6695 0.058044 0.030610 9.579320 11.980073 -6696 0.096735 0.035200 13.874408 13.061646 -6697 0.058223 0.029399 11.828119 8.831535 -6698 0.065804 0.042168 10.079907 12.229448 -6699 0.093374 0.038279 9.906943 11.933963 -6700 0.089413 0.043532 15.769780 21.537800 -6701 0.086909 0.062479 9.687730 14.090083 -6702 0.061745 0.030591 8.844916 8.659901 -6703 0.066181 0.061222 8.321547 12.991695 -6704 0.040320 0.027445 7.721286 7.246537 -6705 0.051680 0.028402 10.206142 7.076865 -6706 0.071337 0.033209 6.756184 9.369200 -6707 0.073421 0.039680 9.122762 9.798044 -6708 0.293275 0.283514 14.531347 15.527496 -6709 0.071139 0.057606 10.651653 10.766625 -6710 0.062606 0.055571 5.940772 9.810664 -6711 0.260656 0.050128 9.191171 14.984901 -6712 0.088822 0.025006 5.389249 6.987844 -6713 0.054687 0.070073 11.316875 11.245920 -6714 0.090848 0.050405 8.899563 12.126267 -6715 0.086532 0.060090 14.791256 23.663376 -6716 0.092419 0.053475 7.544365 10.098369 -6717 0.090711 0.043966 8.962137 12.081635 -6718 0.098306 0.059801 10.213040 15.762226 -6719 0.085749 0.040911 6.178745 8.725487 -6720 0.048380 0.029982 6.012883 10.131260 -6721 0.067819 0.049103 15.076811 19.214293 -6722 0.059956 0.025497 13.579632 14.198802 -6723 0.068482 0.048559 10.794605 12.058130 -6724 0.060170 0.064356 15.311099 16.397877 -6725 0.070553 0.061301 11.327873 15.831728 -6726 0.068467 0.035275 9.596028 8.934724 -6727 0.056128 0.049238 9.330547 15.653675 -6728 0.077396 0.048648 9.423957 10.711238 -6729 0.053531 0.044386 10.009211 10.396189 -6730 0.097137 0.064036 9.956473 14.433748 -6731 0.047502 0.034584 17.208966 19.715301 -6732 0.066366 0.033631 10.429574 10.729277 -6733 0.097763 0.083312 6.979875 11.658724 -6734 0.287617 0.039832 16.487817 17.030154 -6735 0.043620 0.029783 7.791270 12.004082 -6736 0.053294 0.047277 6.795466 8.353389 -6737 0.195714 0.055870 11.413950 12.715087 -6738 0.057208 0.029255 8.491796 7.722202 -6739 0.139037 0.066019 9.514843 17.006125 -6740 0.176227 0.051694 11.060416 15.973840 -6741 0.059251 0.033159 11.782495 14.081510 -6742 0.067132 0.056728 11.197940 17.418957 -6743 0.081459 0.057587 9.908104 9.288616 -6744 0.081483 0.051077 4.923942 8.391057 -6745 0.045434 0.063939 14.540234 14.982078 -6746 0.173911 0.097194 8.289986 12.038287 -6747 0.082708 0.051145 8.066548 10.469418 -6748 0.058526 0.037782 7.680290 7.137103 -6749 0.140101 0.078176 11.704358 11.673428 -6750 0.168156 0.088614 16.823311 16.886620 -6751 0.070005 0.045535 13.447199 18.457074 -6752 0.073016 0.029365 9.347693 12.125713 -6753 0.272239 0.060146 14.316796 13.735570 -6754 0.088331 0.062596 8.794385 14.965607 -6755 0.054426 0.041267 9.267686 10.475290 -6756 0.080965 0.063583 8.763253 20.038975 -6757 0.088816 0.079939 7.823235 14.429749 -6758 0.062953 0.050308 16.977508 10.774190 -6759 0.045893 0.030741 7.813154 8.008911 -6760 0.077878 0.034494 6.638839 12.298243 -6761 0.058773 0.037393 6.911985 11.522531 -6762 0.075578 0.064412 9.542643 11.189257 -6763 0.049718 0.039316 8.163995 11.820493 -6764 0.036584 0.022893 12.387936 9.604602 -6765 0.094916 0.065180 7.035146 12.335127 -6766 0.239730 0.058457 10.576572 13.976074 -6767 0.168742 0.070607 11.274793 17.335122 -6768 0.071748 0.045053 5.600358 8.742721 -6769 0.087432 0.050252 14.857527 16.402210 -6770 0.081515 0.064889 14.086437 32.592744 -6771 0.070033 0.033632 6.524982 9.167202 -6772 0.077320 0.037991 12.493070 14.884319 -6773 0.095114 0.051128 13.655189 15.807307 -6774 0.057196 0.067244 14.097935 12.514914 -6775 0.057846 0.026665 9.760069 11.426629 -6776 0.064586 0.027381 10.187552 14.350323 -6777 0.067111 0.042853 20.063209 21.917048 -6778 0.038428 0.028535 8.307274 10.461644 -6779 0.077316 0.060179 11.685467 10.279470 -6780 0.075821 0.055092 10.261065 11.763647 -6781 0.095257 0.064115 13.743086 18.014611 -6782 0.075939 0.030203 12.315177 15.383815 -6783 0.144025 0.069059 9.655793 10.080781 -6784 0.259216 0.062818 9.001711 12.992934 -6785 0.091195 0.038092 10.841358 16.031382 -6786 0.048280 0.045996 10.646894 14.627416 -6787 0.102523 0.067884 9.551633 11.618873 -6788 0.084609 0.036540 7.655054 13.471323 -6789 0.128680 0.033676 8.398499 14.181426 -6790 0.062536 0.061815 9.741878 10.867656 -6791 0.095602 0.061701 14.767343 14.479839 -6792 0.119240 0.071740 9.300732 15.686655 -6793 0.055960 0.027026 14.812351 15.881532 -6794 0.238710 0.071262 14.060112 22.109444 -6795 0.092181 0.039831 16.894838 15.033006 -6796 0.073624 0.066186 14.287697 15.002759 -6797 0.186011 0.075990 8.764421 14.993427 -6798 0.089931 0.049378 10.039307 11.181452 -6799 0.065132 0.046115 7.320350 9.434077 -6800 0.090976 0.066150 9.450692 11.526915 -6801 0.043276 0.026071 8.199441 9.658500 -6802 0.097647 0.038879 11.879061 13.200719 -6803 0.062719 0.034854 9.044007 9.368273 -6804 0.076156 0.038912 9.749490 13.992035 -6805 0.066963 0.043992 10.577305 13.870090 -6806 0.279556 0.071533 9.138749 11.994716 -6807 0.149765 0.044050 12.888729 22.401248 -6808 0.092769 0.042291 8.066598 11.264952 -6809 0.059357 0.044241 5.955427 10.143374 -6810 0.065064 0.051844 9.790377 15.049614 -6811 0.088507 0.040924 8.691141 11.463121 -6812 0.094559 0.045434 8.604545 11.169512 -6813 0.109230 0.050060 9.610713 9.712625 -6814 0.064229 0.023894 6.947565 14.313184 -6815 0.041613 0.021096 8.307066 10.350458 -6816 0.058646 0.028388 10.199387 10.629013 -6817 0.052422 0.034986 15.951795 15.795306 -6818 0.086764 0.082392 11.482666 10.912447 -6819 0.066443 0.042080 11.875404 17.259745 -6820 0.083925 0.074001 13.308803 16.622172 -6821 0.055976 0.048810 13.974765 20.291982 -6822 0.229578 0.062522 16.261655 12.451308 -6823 0.095214 0.050224 12.802858 12.409104 -6824 0.074039 0.049450 10.922995 12.335736 -6825 0.065994 0.055018 9.639654 11.823233 -6826 0.211630 0.074456 11.886455 13.905398 -6827 0.055667 0.034838 12.867651 18.417532 -6828 0.062057 0.024664 7.716755 9.357222 -6829 0.058059 0.040155 9.566199 11.358594 -6830 0.072405 0.041250 7.487764 6.958500 -6831 0.073783 0.066190 12.471283 12.034050 -6832 0.065908 0.032046 8.617148 8.664522 -6833 0.070993 0.036749 6.333733 9.402542 -6834 0.083306 0.065843 7.907360 10.634309 -6835 0.059284 0.025292 6.606596 13.461751 -6836 0.055606 0.043657 9.832034 8.860547 -6837 0.043907 0.037434 8.921875 13.521298 -6838 0.280174 0.088087 12.935990 21.797017 -6839 0.191008 0.047291 11.938913 16.165702 -6840 0.091740 0.072222 6.802854 7.933711 -6841 0.075739 0.042558 7.774324 10.535430 -6842 0.062865 0.028528 12.639794 17.703943 -6843 0.087464 0.043459 7.574410 11.095183 -6844 0.077389 0.033337 7.979347 9.342264 -6845 0.049555 0.025045 9.466103 11.796875 -6846 0.105252 0.067750 11.080766 10.320791 -6847 0.075240 0.038994 9.955662 15.313226 -6848 0.076318 0.051973 15.113260 15.589259 -6849 0.062886 0.044293 14.256270 18.893640 -6850 0.065220 0.037830 7.726106 8.204287 -6851 0.062993 0.026937 7.748917 8.015651 -6852 0.089253 0.059303 16.282152 16.758700 -6853 0.079191 0.055633 9.906344 11.309860 -6854 0.053369 0.038901 10.161470 9.174360 -6855 0.216829 0.086570 13.510847 16.682314 -6856 0.095999 0.076442 10.059106 12.586167 -6857 0.097513 0.067657 13.699042 24.330777 -6858 0.076600 0.023487 6.325725 10.055989 -6859 0.044816 0.046730 9.083545 11.030799 -6860 0.056993 0.028924 8.723153 9.287366 -6861 0.051352 0.029370 6.062490 6.778720 -6862 0.055436 0.058024 8.254999 12.582790 -6863 0.060366 0.039249 11.350153 13.085071 -6864 0.055162 0.038904 4.624028 7.877010 -6865 0.299752 0.057639 13.776022 22.457902 -6866 0.057086 0.024994 5.968544 9.170090 -6867 0.045952 0.042789 6.856574 10.885001 -6868 0.209645 0.073518 12.829693 20.708582 -6869 0.058388 0.024207 13.027697 18.973694 -6870 0.070096 0.031369 11.838256 8.566197 -6871 0.080278 0.053188 13.931179 14.393838 -6872 0.066942 0.029293 11.091847 12.749369 -6873 0.060151 0.036441 10.160461 14.972181 -6874 0.054027 0.030155 8.340730 10.542070 -6875 0.088153 0.056525 8.571119 13.097712 -6876 0.161470 0.063023 13.482670 12.568329 -6877 0.166924 0.079592 11.430728 12.213101 -6878 0.069326 0.033569 12.236905 12.741568 -6879 0.082167 0.068799 9.365743 17.221699 -6880 0.052244 0.046732 12.705675 16.436447 -6881 0.066652 0.045398 15.505984 16.763030 -6882 0.249530 0.076416 8.880157 11.625755 -6883 0.218076 0.093869 12.727125 14.604697 -6884 0.098726 0.049532 8.621544 15.272436 -6885 0.077938 0.043542 8.275092 12.538385 -6886 0.096597 0.045784 9.028546 12.593834 -6887 0.160845 0.041262 10.345259 20.893482 -6888 0.088252 0.025260 8.859444 13.573076 -6889 0.062519 0.027127 10.396182 9.883812 -6890 0.089157 0.073086 7.601600 13.797694 -6891 0.057861 0.034974 7.359632 10.403433 -6892 0.044190 0.019620 7.185241 16.528735 -6893 0.099337 0.064339 11.102774 19.455530 -6894 0.092318 0.066981 6.214489 13.178802 -6895 0.055680 0.039897 7.825999 12.396691 -6896 0.063176 0.051455 15.263184 14.153817 -6897 0.080296 0.053825 8.388316 7.621326 -6898 0.240592 0.048371 9.718454 11.943244 -6899 0.053646 0.031637 7.263231 12.967062 -6900 0.069243 0.030931 12.905256 14.231853 -6901 0.297325 0.037740 9.316386 12.989446 -6902 0.079241 0.062001 11.764008 9.354893 -6903 0.126239 0.051941 9.948970 15.368632 -6904 0.199352 0.068121 9.630246 9.836665 -6905 0.193406 0.092368 9.396684 12.007941 -6906 0.072252 0.041878 8.602000 8.630037 -6907 0.063116 0.040808 7.775045 9.404641 -6908 0.042844 0.032211 8.233109 8.948026 -6909 0.100484 0.083578 15.811537 15.567224 -6910 0.225329 0.088875 12.728223 16.149492 -6911 0.039828 0.032219 9.244809 15.238857 -6912 0.130842 0.086673 6.750126 9.364672 -6913 0.045927 0.036448 7.875494 8.489515 -6914 0.061341 0.031341 8.835889 16.207250 -6915 0.055481 0.044792 8.437275 15.181355 -6916 0.078354 0.070557 6.821855 12.224047 -6917 0.078872 0.038130 11.392433 10.383749 -6918 0.063563 0.024158 8.260294 10.799338 -6919 0.082682 0.060897 10.358322 19.353947 -6920 0.084465 0.050448 7.870002 13.833217 -6921 0.063817 0.022547 17.058464 14.860786 -6922 0.073909 0.029004 5.683721 11.997743 -6923 0.055270 0.024478 10.708972 13.029665 -6924 0.066229 0.029576 6.002975 12.605001 -6925 0.068019 0.051167 8.048443 15.541135 -6926 0.075080 0.026072 6.847853 11.426021 -6927 0.063288 0.049893 6.418645 12.455673 -6928 0.037155 0.025761 10.808068 14.851892 -6929 0.046850 0.022002 9.480224 9.450970 -6930 0.132348 0.063462 9.877616 11.542098 -6931 0.059621 0.024150 7.359477 12.314677 -6932 0.058107 0.030237 7.010323 8.432705 -6933 0.058665 0.042376 12.331115 15.406964 -6934 0.062869 0.041562 7.187709 9.562462 -6935 0.074599 0.039592 15.151689 18.604484 -6936 0.083460 0.038137 11.653942 10.767540 -6937 0.084944 0.062500 14.536002 19.242750 -6938 0.172981 0.064623 12.337828 12.643263 -6939 0.076674 0.096061 11.667055 17.194023 -6940 0.080553 0.043273 7.813732 8.149182 -6941 0.076255 0.042492 16.888000 17.881588 -6942 0.089833 0.062970 17.140766 16.806220 -6943 0.071208 0.044603 13.769724 12.508145 -6944 0.050237 0.036705 9.278321 12.843315 -6945 0.074989 0.053158 10.041577 14.045122 -6946 0.192492 0.049222 11.025564 13.113724 -6947 0.070247 0.072910 11.063274 14.122669 -6948 0.048044 0.022560 8.339320 10.413362 -6949 0.052470 0.041420 10.234713 16.140305 -6950 0.093963 0.053929 8.597531 12.393528 -6951 0.070232 0.036558 11.418195 13.224286 -6952 0.067569 0.034301 11.319480 12.270884 -6953 0.272062 0.065122 21.683771 19.642564 -6954 0.059929 0.041132 9.053422 10.919092 -6955 0.062534 0.041814 8.274231 9.855178 -6956 0.068994 0.053822 8.991814 11.135301 -6957 0.090899 0.047072 7.413924 13.046078 -6958 0.072944 0.058156 8.668634 9.770688 -6959 0.044458 0.021820 6.600661 9.978567 -6960 0.082732 0.060307 15.980671 17.295889 -6961 0.198786 0.054732 9.344057 14.730895 -6962 0.055950 0.041037 5.963138 7.143832 -6963 0.072514 0.035121 6.173046 8.143695 -6964 0.082885 0.039109 11.936265 18.411667 -6965 0.064698 0.057202 10.937772 14.240290 -6966 0.063727 0.049706 7.850044 10.916255 -6967 0.086052 0.074522 7.836106 10.860772 -6968 0.086743 0.065741 8.134756 8.816537 -6969 0.084749 0.054322 8.864366 19.699438 -6970 0.088618 0.054404 7.547363 10.233673 -6971 0.077199 0.041260 9.983221 10.703952 -6972 0.105056 0.154782 13.704565 23.845477 -6973 0.060098 0.044659 11.866308 13.561525 -6974 0.053018 0.039326 8.467352 14.092174 -6975 0.065380 0.042886 11.877385 10.970640 -6976 0.068712 0.065448 5.540385 8.244232 -6977 0.063565 0.033224 8.441429 15.805312 -6978 0.054869 0.037353 8.078099 8.345643 -6979 0.082202 0.055171 11.652554 17.891831 -6980 0.097167 0.053582 6.346759 9.050241 -6981 0.156833 0.053344 9.070863 11.236731 -6982 0.073436 0.042792 11.250638 16.167137 -6983 0.188443 0.259202 14.367029 20.874465 -6984 0.061017 0.027910 8.242200 12.215627 -6985 0.074759 0.030365 13.830686 16.198937 -6986 0.082793 0.090614 12.867531 16.844056 -6987 0.073518 0.056475 7.339687 13.054777 -6988 0.069298 0.039114 9.042943 11.433007 -6989 0.071910 0.042936 11.367288 13.446023 -6990 0.078304 0.057298 8.618306 18.224780 -6991 0.091556 0.045032 9.363998 13.971063 -6992 0.126463 0.061087 13.774549 12.657706 -6993 0.082216 0.042248 9.961687 14.972472 -6994 0.048049 0.015743 9.543842 11.003979 -6995 0.079328 0.050575 10.400601 12.704833 -6996 0.075207 0.055743 9.110337 15.517882 -6997 0.083791 0.053695 7.928869 10.433685 -6998 0.052433 0.034469 10.621663 11.633339 -6999 0.041334 0.017594 7.091059 10.043907 -7000 0.083994 0.056586 7.218276 10.088793 -7001 0.081324 0.079708 16.377271 20.842818 -7002 0.049230 0.036923 8.171592 11.335261 -7003 0.072834 0.027532 11.656796 15.764789 -7004 0.079279 0.039822 10.785733 13.452564 -7005 0.041854 0.022681 11.784761 12.602525 -7006 0.132887 0.057856 19.589815 22.720106 -7007 0.096154 0.051406 8.821940 14.617102 -7008 0.070005 0.041172 6.091726 11.048827 -7009 0.090505 0.053167 13.122740 10.374628 -7010 0.070600 0.040326 6.274198 10.751328 -7011 0.037826 0.025775 6.674267 10.073103 -7012 0.073002 0.046067 11.993295 15.638978 -7013 0.046855 0.027624 7.217636 9.953337 -7014 0.066341 0.069947 8.129832 10.998766 -7015 0.089248 0.042463 8.838787 11.050530 -7016 0.080191 0.042231 9.903320 14.304452 -7017 0.128364 0.093185 8.975767 13.512354 -7018 0.122977 0.085542 16.100919 23.721189 -7019 0.292647 0.097850 9.958112 15.391069 -7020 0.051211 0.032350 10.147297 11.111873 -7021 0.044086 0.033974 8.703168 15.540410 -7022 0.076783 0.043305 7.936322 10.643348 -7023 0.045999 0.027061 10.843096 18.478334 -7024 0.086464 0.049270 7.497687 11.227719 -7025 0.147357 0.072969 12.924854 11.691922 -7026 0.076291 0.043599 10.850594 13.409679 -7027 0.053991 0.047907 6.870476 8.648222 -7028 0.068456 0.049093 8.829179 9.597087 -7029 0.091738 0.052542 9.011712 13.820643 -7030 0.051608 0.032048 6.832601 12.262096 -7031 0.257198 0.243476 16.702471 15.209818 -7032 0.228138 0.244881 9.409830 11.993420 -7033 0.093513 0.060719 11.904109 14.586005 -7034 0.059990 0.035218 10.243967 13.575638 -7035 0.071458 0.051789 11.941005 20.788433 -7036 0.167721 0.065437 7.469062 11.459940 -7037 0.059062 0.043565 12.664106 15.615812 -7038 0.079106 0.052165 11.040251 14.134737 -7039 0.051539 0.039574 7.532966 9.898634 -7040 0.096256 0.059404 12.893495 12.748726 -7041 0.066285 0.029220 8.011509 12.424507 -7042 0.052007 0.029808 7.895317 10.454814 -7043 0.090053 0.072628 17.245119 16.977999 -7044 0.069710 0.027360 13.718815 14.020551 -7045 0.273343 0.282809 10.828990 14.332475 -7046 0.070205 0.048842 9.473205 11.323828 -7047 0.052829 0.033373 6.666999 7.951023 -7048 0.093271 0.052558 10.532804 12.565050 -7049 0.056622 0.036975 11.177136 16.778507 -7050 0.062974 0.044508 10.086776 9.168528 -7051 0.294449 0.066826 10.464295 14.597135 -7052 0.091675 0.042792 11.145321 14.677145 -7053 0.129950 0.074194 15.347214 16.739299 -7054 0.055410 0.039674 8.378597 9.739401 -7055 0.079656 0.027613 7.736951 13.999855 -7056 0.047773 0.028070 7.478397 15.933646 -7057 0.269091 0.069286 12.118375 13.707704 -7058 0.087333 0.034574 10.775940 16.504944 -7059 0.061373 0.023359 12.250767 19.319356 -7060 0.058610 0.025281 10.748643 6.976705 -7061 0.055533 0.033348 8.077218 8.710609 -7062 0.203164 0.041849 6.808066 10.041787 -7063 0.092280 0.064692 10.698390 10.769018 -7064 0.053648 0.027011 7.660424 10.532679 -7065 0.071747 0.033956 12.547922 16.742458 -7066 0.084666 0.048003 10.069523 13.738036 -7067 0.076181 0.032362 7.627160 6.945632 -7068 0.044805 0.025849 12.358973 10.797135 -7069 0.048408 0.026001 8.631138 8.643706 -7070 0.091952 0.037426 8.536762 12.301452 -7071 0.129498 0.035655 9.652918 13.312254 -7072 0.099638 0.056885 6.398748 9.541217 -7073 0.057317 0.025133 9.324191 7.552652 -7074 0.137109 0.099806 9.696677 13.937157 -7075 0.055174 0.040658 7.821205 10.557035 -7076 0.072520 0.042322 8.645435 9.103852 -7077 0.073623 0.048616 15.990713 17.806289 -7078 0.066930 0.056431 12.669092 10.870087 -7079 0.074702 0.043911 11.300332 16.141369 -7080 0.076331 0.041755 6.798002 9.360266 -7081 0.081292 0.056346 11.183214 19.118845 -7082 0.046870 0.036684 8.603902 14.055127 -7083 0.090734 0.038331 10.844501 18.191024 -7084 0.262435 0.079063 12.616688 24.234981 -7085 0.047572 0.036124 8.145972 10.288532 -7086 0.253594 0.061323 14.915305 15.056916 -7087 0.084942 0.036250 7.197909 10.594072 -7088 0.060340 0.027775 9.684203 13.470488 -7089 0.045395 0.022851 10.311717 11.422092 -7090 0.073309 0.040197 16.381582 19.169301 -7091 0.079597 0.070695 8.321580 13.011974 -7092 0.070505 0.047661 16.137828 18.796776 -7093 0.037920 0.014793 6.954192 9.282340 -7094 0.047853 0.045206 9.579149 16.426951 -7095 0.207746 0.042076 8.053432 14.947525 -7096 0.098714 0.057529 7.374880 12.812856 -7097 0.235448 0.058549 14.125509 15.044534 -7098 0.079392 0.041914 12.933960 26.251875 -7099 0.047946 0.053057 13.405933 18.609349 -7100 0.077396 0.057295 11.060892 12.487615 -7101 0.099025 0.047812 9.574950 14.624628 -7102 0.061989 0.032571 7.659208 8.140246 -7103 0.069186 0.034722 11.020864 11.790855 -7104 0.045590 0.029271 6.174975 7.159427 -7105 0.048435 0.030743 8.970220 10.955172 -7106 0.094974 0.090346 10.405858 12.399503 -7107 0.071178 0.061376 11.548597 14.091647 -7108 0.068036 0.042906 17.017162 17.200950 -7109 0.080564 0.031417 7.833157 10.334136 -7110 0.236579 0.056489 10.575216 13.316601 -7111 0.059064 0.020632 9.362917 11.597446 -7112 0.051888 0.046914 10.400448 13.753645 -7113 0.067636 0.031829 7.286093 11.221833 -7114 0.152152 0.077366 12.532972 15.451980 -7115 0.044100 0.019049 8.260207 12.006427 -7116 0.071980 0.029971 5.331089 8.027325 -7117 0.090582 0.070345 10.469781 16.387351 -7118 0.079237 0.027582 8.438314 11.682631 -7119 0.059086 0.030326 9.567209 15.318000 -7120 0.075375 0.072847 8.921463 9.530822 -7121 0.087340 0.064184 9.340393 10.000090 -7122 0.076301 0.070240 8.150203 11.526027 -7123 0.064771 0.033882 6.061757 8.616698 -7124 0.088894 0.062106 7.705515 15.437723 -7125 0.134806 0.052665 8.617916 14.529139 -7126 0.075338 0.022971 7.673833 9.562301 -7127 0.065438 0.032260 10.295433 8.698440 -7128 0.129605 0.073563 15.909665 18.368920 -7129 0.085489 0.050682 14.315291 14.514092 -7130 0.037459 0.022655 5.314433 8.765046 -7131 0.059502 0.041629 11.862765 14.422690 -7132 0.069012 0.024161 6.569676 9.464845 -7133 0.089194 0.057626 12.028292 14.377096 -7134 0.068616 0.066877 13.107627 12.850974 -7135 0.087627 0.025639 12.194214 14.769243 -7136 0.070102 0.042757 11.081806 12.511610 -7137 0.064558 0.035712 9.899561 14.426192 -7138 0.079900 0.035873 16.022410 12.399635 -7139 0.085021 0.048789 15.025035 17.662115 -7140 0.079632 0.066820 12.395672 14.625952 -7141 0.063724 0.075928 10.259186 11.763145 -7142 0.173242 0.047653 7.912948 12.573750 -7143 0.049662 0.030517 10.741061 14.050725 -7144 0.067449 0.046121 11.448527 12.395232 -7145 0.072475 0.025162 12.325741 14.150772 -7146 0.090836 0.048424 10.926083 15.245254 -7147 0.073615 0.048186 8.635968 13.346482 -7148 0.055491 0.036556 6.503359 9.652841 -7149 0.063832 0.031777 9.657018 14.635297 -7150 0.064202 0.042411 9.262874 12.270336 -7151 0.258591 0.092988 12.620276 20.168478 -7152 0.059913 0.035951 11.688822 14.142822 -7153 0.213066 0.065564 7.501057 12.930290 -7154 0.256592 0.065863 13.051534 15.830123 -7155 0.042163 0.022383 10.809158 7.643747 -7156 0.068752 0.048108 6.525817 10.950976 -7157 0.080676 0.050472 8.887341 13.927182 -7158 0.184661 0.096961 8.119095 12.127419 -7159 0.070069 0.067727 10.156481 15.759609 -7160 0.076791 0.052054 15.582866 14.772687 -7161 0.074210 0.059201 10.456758 20.421540 -7162 0.049719 0.036464 8.087563 9.499973 -7163 0.098872 0.048398 8.901512 10.956911 -7164 0.065644 0.036574 5.989985 9.340963 -7165 0.061506 0.032540 6.856528 12.765272 -7166 0.073657 0.048560 6.348283 7.031487 -7167 0.273084 0.070837 10.963512 13.993422 -7168 0.085013 0.088333 12.374750 11.388475 -7169 0.187665 0.081517 12.919514 12.841661 -7170 0.260568 0.054644 8.856876 12.180289 -7171 0.078765 0.040755 12.192801 15.340659 -7172 0.048838 0.044768 14.107704 13.644026 -7173 0.085236 0.057277 10.568007 13.645859 -7174 0.068566 0.046209 10.097948 12.158856 -7175 0.254106 0.058594 8.746334 12.197650 -7176 0.094624 0.087146 9.397686 15.762028 -7177 0.045223 0.035233 7.745396 9.738795 -7178 0.046673 0.028439 8.769646 13.193207 -7179 0.049218 0.030534 11.636693 15.440653 -7180 0.079302 0.040694 9.345045 15.039520 -7181 0.094335 0.061966 8.437137 12.640303 -7182 0.056628 0.046542 8.051618 10.728206 -7183 0.069072 0.034909 9.982058 14.822973 -7184 0.039267 0.024341 8.176709 10.332298 -7185 0.105105 0.109138 14.487584 20.479403 -7186 0.062149 0.038669 8.681453 12.683458 -7187 0.078885 0.044720 9.234930 13.415720 -7188 0.054791 0.029864 6.674508 9.011374 -7189 0.065005 0.067409 10.801610 14.332433 -7190 0.083319 0.041785 9.817049 13.134463 -7191 0.072111 0.030079 13.614458 12.026733 -7192 0.070926 0.050283 12.108829 12.713711 -7193 0.050872 0.041726 8.698091 13.551466 -7194 0.067459 0.034028 6.437337 8.710868 -7195 0.049850 0.030312 10.641152 16.720287 -7196 0.067193 0.041248 9.419445 13.135517 -7197 0.079741 0.034913 11.699146 12.739776 -7198 0.096966 0.065410 11.649264 12.150624 -7199 0.163268 0.085037 12.191567 14.410772 -7200 0.095417 0.072258 8.570565 11.023807 -7201 0.200480 0.068479 8.777872 10.019846 -7202 0.055773 0.039556 5.399354 10.139762 -7203 0.066711 0.052804 10.478590 12.545495 -7204 0.046560 0.026728 9.683385 8.987813 -7205 0.065896 0.029925 9.393937 8.266328 -7206 0.057885 0.039952 7.867038 7.801471 -7207 0.082208 0.041531 6.538260 12.921424 -7208 0.068608 0.035577 7.418746 10.866934 -7209 0.041712 0.028904 8.456875 8.847501 -7210 0.063247 0.021371 12.573132 12.026004 -7211 0.057020 0.040503 7.375566 15.410011 -7212 0.050063 0.046857 6.994204 12.648388 -7213 0.066240 0.056831 9.860392 12.104963 -7214 0.052606 0.030757 9.561067 17.474918 -7215 0.092312 0.073488 10.815301 9.955755 -7216 0.074828 0.035886 8.136303 12.175923 -7217 0.049155 0.037708 7.638624 12.808153 -7218 0.054091 0.028103 12.849368 22.560001 -7219 0.146987 0.049841 15.627270 24.448385 -7220 0.061892 0.055036 8.255543 7.536048 -7221 0.083360 0.050103 10.859504 12.712998 -7222 0.058054 0.054485 16.647316 16.257737 -7223 0.064923 0.042234 9.611922 11.730386 -7224 0.062134 0.036013 6.977623 12.788793 -7225 0.090911 0.044392 8.061604 9.501000 -7226 0.077749 0.046745 11.676164 13.275000 -7227 0.063201 0.036017 12.127605 10.694864 -7228 0.095749 0.050428 13.013683 11.438282 -7229 0.092685 0.034306 8.858423 10.318533 -7230 0.072111 0.038342 11.129836 15.113939 -7231 0.214620 0.034192 7.804002 8.164958 -7232 0.088577 0.112570 11.278118 10.662976 -7233 0.087504 0.038636 10.452039 11.364783 -7234 0.050368 0.026647 8.148571 12.015964 -7235 0.098627 0.049434 6.497321 10.622493 -7236 0.056498 0.023783 9.758678 15.251079 -7237 0.081263 0.031113 6.588275 9.400039 -7238 0.044913 0.028547 7.826054 9.877202 -7239 0.069061 0.040394 16.387074 17.302438 -7240 0.093662 0.032651 10.550479 15.193858 -7241 0.090024 0.052249 8.996159 10.880585 -7242 0.046226 0.038415 9.331453 9.479358 -7243 0.074969 0.030815 10.109922 13.538527 -7244 0.247878 0.041342 6.518359 15.377147 -7245 0.069965 0.053871 13.032176 18.829678 -7246 0.053480 0.043748 11.199306 12.065057 -7247 0.058144 0.045308 7.715244 9.429237 -7248 0.054238 0.031546 11.205518 14.715238 -7249 0.088688 0.057337 6.135839 11.425860 -7250 0.065411 0.057038 8.264099 12.418882 -7251 0.065336 0.066364 11.932236 12.439019 -7252 0.185975 0.047409 11.704975 13.210466 -7253 0.089494 0.034860 12.634702 14.494874 -7254 0.048543 0.024340 7.349974 8.950539 -7255 0.054196 0.040482 9.279875 18.447810 -7256 0.064688 0.064501 9.139977 12.807123 -7257 0.249568 0.070660 7.987767 14.447295 -7258 0.095793 0.063548 9.438069 13.003548 -7259 0.065018 0.028404 8.933882 11.067862 -7260 0.062116 0.052700 8.847377 15.239180 -7261 0.091509 0.053580 8.724614 12.881445 -7262 0.095904 0.036701 14.536280 19.960531 -7263 0.069939 0.026717 8.574487 10.254864 -7264 0.075727 0.027025 8.428347 13.141948 -7265 0.069673 0.066897 8.400601 10.918284 -7266 0.049726 0.023363 7.270618 10.875707 -7267 0.073715 0.041021 8.188584 12.009247 -7268 0.080513 0.054657 14.192459 17.605739 -7269 0.283978 0.078639 13.750670 15.007601 -7270 0.070348 0.024494 8.045283 10.424447 -7271 0.069248 0.043827 17.948466 11.414634 -7272 0.046668 0.046143 7.494758 14.239850 -7273 0.060105 0.061194 12.000985 15.549029 -7274 0.060021 0.044761 7.676244 10.169731 -7275 0.164999 0.064269 8.797756 14.016914 -7276 0.059206 0.045343 12.875526 14.175193 -7277 0.130695 0.047920 8.132218 10.946995 -7278 0.054204 0.028705 10.429321 14.764415 -7279 0.131651 0.120847 13.916787 15.155846 -7280 0.071602 0.024855 7.213177 8.779198 -7281 0.069437 0.056508 13.951884 16.541727 -7282 0.077216 0.048245 9.025540 16.067405 -7283 0.064022 0.038080 9.566557 10.376015 -7284 0.052588 0.033177 9.238877 12.921077 -7285 0.151032 0.032588 11.884303 13.005478 -7286 0.070064 0.063341 8.723139 12.800560 -7287 0.073295 0.045614 9.701715 10.443975 -7288 0.047069 0.037319 9.376014 12.799159 -7289 0.076951 0.033637 8.343148 15.239824 -7290 0.057594 0.034510 7.355799 10.807332 -7291 0.069358 0.038863 9.892527 10.669933 -7292 0.056855 0.028271 10.279625 11.049849 -7293 0.030324 0.015676 7.932779 11.298998 -7294 0.094640 0.076030 11.619994 12.990192 -7295 0.096101 0.284520 15.067206 16.804574 -7296 0.091777 0.052330 11.287172 16.995254 -7297 0.124816 0.048108 13.961775 20.886732 -7298 0.263639 0.046586 16.903443 17.946701 -7299 0.175102 0.066904 8.573323 13.074390 -7300 0.068329 0.057254 13.884459 13.424981 -7301 0.077777 0.055653 6.741883 11.961862 -7302 0.092617 0.039825 8.585143 10.707993 -7303 0.067360 0.054661 10.331518 17.150289 -7304 0.087278 0.043206 9.389625 10.812158 -7305 0.068240 0.025404 11.661603 11.472862 -7306 0.077300 0.064186 9.741536 12.239857 -7307 0.237868 0.060019 10.442669 16.344586 -7308 0.056743 0.037729 10.791159 11.924201 -7309 0.210787 0.057728 7.294938 11.074519 -7310 0.068543 0.051880 9.485558 16.266610 -7311 0.195211 0.084948 11.486544 17.869985 -7312 0.081651 0.097665 12.899424 13.271590 -7313 0.075143 0.044134 8.318401 10.112929 -7314 0.060116 0.030279 12.049360 15.379166 -7315 0.065559 0.014810 8.327215 10.774354 -7316 0.074372 0.034228 9.850010 10.142204 -7317 0.067036 0.039525 13.926686 15.277768 -7318 0.152895 0.065337 11.189469 18.133526 -7319 0.042376 0.029311 7.150480 8.664364 -7320 0.293082 0.074557 10.010397 7.993595 -7321 0.142939 0.047122 8.865255 13.650963 -7322 0.139060 0.073158 9.303717 12.434328 -7323 0.036278 0.024406 8.987429 9.333908 -7324 0.057764 0.046422 5.626166 9.895777 -7325 0.070251 0.049209 8.388701 10.556571 -7326 0.069666 0.063721 9.837820 10.596883 -7327 0.079349 0.045983 8.032809 13.651297 -7328 0.074127 0.088214 16.887948 19.966883 -7329 0.277884 0.056041 7.781202 13.393004 -7330 0.098050 0.055923 9.970543 10.036058 -7331 0.058189 0.039654 11.983143 15.177080 -7332 0.093768 0.047590 10.676040 13.534834 -7333 0.073680 0.026491 9.136444 12.612036 -7334 0.054854 0.036321 13.120978 17.104661 -7335 0.086659 0.048005 8.897228 12.258687 -7336 0.075811 0.030652 8.264930 14.614406 -7337 0.150923 0.066033 11.849161 14.719453 -7338 0.117514 0.079350 11.508197 15.467312 -7339 0.257756 0.084846 7.376638 7.733849 -7340 0.069755 0.038310 9.170803 8.531324 -7341 0.072827 0.033405 11.315629 14.441947 -7342 0.058439 0.037282 6.782815 9.595321 -7343 0.084727 0.072315 13.928605 12.142667 -7344 0.078846 0.048432 6.596939 10.711255 -7345 0.201054 0.071866 11.486894 13.961601 -7346 0.168759 0.076876 12.768212 13.230446 -7347 0.084478 0.047630 18.659953 23.056194 -7348 0.062657 0.033801 13.647045 12.173288 -7349 0.068554 0.044493 8.594374 12.556529 -7350 0.107408 0.058921 11.849447 11.793895 -7351 0.091096 0.047940 8.594568 8.958363 -7352 0.080140 0.049836 9.620190 12.222200 -7353 0.079627 0.026832 8.584801 8.429819 -7354 0.045097 0.050254 9.783609 12.936091 -7355 0.076200 0.046917 10.626675 16.403337 -7356 0.080887 0.049114 12.297281 12.234988 -7357 0.067046 0.044585 8.225462 11.100854 -7358 0.040768 0.022357 13.194739 12.693296 -7359 0.056416 0.044433 7.972927 13.485327 -7360 0.056083 0.034462 9.471510 11.367789 -7361 0.077109 0.042079 10.946723 12.211870 -7362 0.064266 0.029749 9.006413 12.986854 -7363 0.082949 0.044772 12.805280 14.516640 -7364 0.236755 0.091802 7.908467 11.525828 -7365 0.065902 0.041517 11.807504 22.731500 -7366 0.084438 0.034350 10.755601 15.613638 -7367 0.089873 0.041032 7.865466 13.318989 -7368 0.083918 0.073198 10.691172 16.133265 -7369 0.072293 0.037009 9.917767 12.866583 -7370 0.075408 0.059237 10.426028 11.763666 -7371 0.065687 0.038086 8.356560 10.375955 -7372 0.060459 0.040556 10.641986 9.854512 -7373 0.088126 0.068913 11.921572 16.343315 -7374 0.039334 0.034584 11.906791 13.168712 -7375 0.089541 0.047843 12.444934 14.257264 -7376 0.071029 0.044715 9.752409 11.314485 -7377 0.072738 0.056661 10.158717 13.750584 -7378 0.069223 0.067138 8.202038 11.924119 -7379 0.089799 0.031566 12.360813 13.346414 -7380 0.057772 0.028698 8.413409 12.726475 -7381 0.079926 0.047641 7.365322 8.595134 -7382 0.091590 0.065244 10.736535 15.206805 -7383 0.076749 0.060178 12.891661 12.282379 -7384 0.050002 0.041552 10.252167 19.109066 -7385 0.069021 0.049068 10.363154 17.254526 -7386 0.067049 0.034480 6.774048 9.023540 -7387 0.186099 0.082142 8.345284 16.960517 -7388 0.052046 0.041302 14.528642 14.443964 -7389 0.062114 0.045198 13.960182 12.394944 -7390 0.077405 0.049932 10.607755 12.341778 -7391 0.065157 0.037182 7.505931 13.473303 -7392 0.096280 0.080702 11.134571 13.638437 -7393 0.076542 0.048217 7.252512 11.192685 -7394 0.073173 0.030801 7.987462 11.292411 -7395 0.081530 0.047509 8.915543 9.576317 -7396 0.069164 0.024176 7.284498 8.911669 -7397 0.087307 0.060474 7.352916 9.053195 -7398 0.058643 0.026893 8.671898 14.509585 -7399 0.258175 0.049694 15.653585 18.617070 -7400 0.052942 0.043646 8.907937 15.009287 -7401 0.093323 0.042181 7.664212 13.988631 -7402 0.234223 0.089211 13.318499 17.045976 -7403 0.044875 0.021011 6.082005 12.423842 -7404 0.077659 0.058882 8.069074 10.880777 -7405 0.189750 0.040222 12.571935 16.822391 -7406 0.106111 0.185011 8.744247 10.433655 -7407 0.070037 0.029721 7.860164 12.447993 -7408 0.088858 0.047946 9.412426 9.684787 -7409 0.065532 0.035168 11.636684 13.002327 -7410 0.049441 0.038133 8.585412 10.486639 -7411 0.067961 0.043125 7.198718 7.537278 -7412 0.048307 0.020996 7.480710 9.199382 -7413 0.054589 0.024280 8.935590 9.991426 -7414 0.072162 0.031875 7.686346 14.558706 -7415 0.052883 0.040100 8.498577 7.350892 -7416 0.286934 0.059041 11.906655 17.599665 -7417 0.166144 0.064347 15.228899 12.948912 -7418 0.086113 0.046203 11.170426 12.640998 -7419 0.089306 0.095740 8.502147 12.042046 -7420 0.071916 0.033748 8.299631 10.918609 -7421 0.054987 0.034644 6.586411 12.746369 -7422 0.067977 0.046567 8.029755 8.450386 -7423 0.075235 0.031138 8.738883 12.644586 -7424 0.052091 0.021497 5.550486 10.050984 -7425 0.065756 0.060498 11.759971 10.132993 -7426 0.046583 0.038638 6.813220 8.311194 -7427 0.069205 0.050467 18.036066 19.013467 -7428 0.039758 0.024939 6.140780 8.491733 -7429 0.054472 0.034638 13.712270 17.847088 -7430 0.064108 0.041493 7.488886 12.672244 -7431 0.068490 0.025423 7.296903 13.872077 -7432 0.078368 0.054863 11.857232 13.212934 -7433 0.070426 0.042740 7.135462 8.197418 -7434 0.092618 0.084627 9.975143 11.963828 -7435 0.093553 0.082586 13.965415 16.081218 -7436 0.069983 0.038980 8.276443 10.283972 -7437 0.093239 0.161414 14.445455 23.931260 -7438 0.080320 0.057635 13.253896 16.905235 -7439 0.067673 0.044217 13.022314 9.245430 -7440 0.082823 0.051999 11.126713 14.111691 -7441 0.056580 0.027067 9.241373 10.273374 -7442 0.062357 0.035705 6.764717 8.155744 -7443 0.041057 0.040811 7.354204 11.027390 -7444 0.091056 0.066095 11.079315 9.333798 -7445 0.250237 0.156337 10.270428 11.407675 -7446 0.276182 0.045631 9.152237 12.713770 -7447 0.059770 0.037711 10.686811 16.182157 -7448 0.053986 0.028992 8.533709 7.509087 -7449 0.038510 0.026939 9.963071 11.707152 -7450 0.057889 0.060284 9.467716 14.902742 -7451 0.055873 0.022851 10.341811 16.143987 -7452 0.083731 0.044602 8.510445 10.866791 -7453 0.042605 0.035339 6.499248 6.656931 -7454 0.044495 0.021668 10.525770 16.359486 -7455 0.052999 0.031277 7.530776 12.354853 -7456 0.082774 0.088070 9.293336 11.104682 -7457 0.096998 0.052219 8.997672 10.391939 -7458 0.055270 0.031221 7.891592 11.037647 -7459 0.045394 0.019216 6.527106 11.024874 -7460 0.041371 0.027536 8.625873 11.585840 -7461 0.177302 0.242736 18.217976 20.794608 -7462 0.227262 0.045479 7.173079 10.475008 -7463 0.084847 0.042632 15.419517 16.260683 -7464 0.074774 0.050001 9.738669 13.413516 -7465 0.087287 0.055132 14.317147 13.048493 -7466 0.062697 0.025125 8.447064 9.174286 -7467 0.082015 0.048718 10.707868 13.672577 -7468 0.085222 0.064038 7.698196 14.457544 -7469 0.159637 0.072731 12.380102 15.853520 -7470 0.069486 0.027154 8.024923 9.921315 -7471 0.072737 0.053180 9.447090 12.016360 -7472 0.074488 0.051678 9.289027 10.891253 -7473 0.133708 0.048435 18.435986 20.954946 -7474 0.063016 0.047225 7.310076 7.901320 -7475 0.040031 0.023277 9.628161 9.050520 -7476 0.104880 0.121966 9.891733 16.306008 -7477 0.084501 0.057813 11.817562 16.808346 -7478 0.034760 0.026102 7.562097 6.067361 -7479 0.069891 0.054526 10.868769 12.992035 -7480 0.154481 0.082002 14.139158 14.441149 -7481 0.071655 0.069310 15.259268 17.182523 -7482 0.050142 0.023781 7.802920 15.586509 -7483 0.063509 0.042699 9.912269 10.034666 -7484 0.097353 0.040449 13.211958 18.512638 -7485 0.061485 0.040068 8.937792 11.364764 -7486 0.091178 0.059889 6.741390 8.675796 -7487 0.062728 0.044168 6.447226 8.957394 -7488 0.116362 0.074444 9.852287 14.963206 -7489 0.089108 0.046946 8.797165 11.741152 -7490 0.044294 0.021029 6.602810 10.731904 -7491 0.078904 0.047579 8.380607 13.567185 -7492 0.075912 0.077442 9.879582 13.402724 -7493 0.060451 0.028445 8.319976 11.642556 -7494 0.098928 0.072106 8.409447 13.573751 -7495 0.078813 0.048076 9.486982 13.441578 -7496 0.058692 0.032791 10.529856 14.178061 -7497 0.278895 0.084874 10.460726 11.473164 -7498 0.064384 0.022430 6.377830 10.687203 -7499 0.061675 0.037923 8.699726 12.646138 -7500 0.125875 0.232652 12.662005 24.004349 -7501 0.090718 0.036408 12.671071 17.024103 -7502 0.148321 0.057103 14.060742 13.190143 -7503 0.077397 0.044107 6.510698 13.943472 -7504 0.073088 0.034017 11.872108 15.882690 -7505 0.087774 0.060712 8.451491 16.722822 -7506 0.060483 0.090780 13.635673 21.858057 -7507 0.085759 0.051268 11.983004 13.195361 -7508 0.134055 0.054140 10.727188 15.840106 -7509 0.085221 0.043500 10.247027 12.117849 -7510 0.264858 0.069709 11.778028 13.498667 -7511 0.077771 0.061205 12.339457 13.794594 -7512 0.083719 0.043051 6.516044 10.131465 -7513 0.116884 0.088732 16.907296 15.899298 -7514 0.057557 0.029569 11.800686 15.675240 -7515 0.062430 0.028291 7.384216 12.527362 -7516 0.098807 0.063300 8.491159 15.769209 -7517 0.088466 0.045245 9.126145 12.438743 -7518 0.067840 0.053931 11.414888 12.357184 -7519 0.065026 0.041152 5.285301 9.840051 -7520 0.065117 0.038271 10.796581 17.565777 -7521 0.087433 0.031619 7.862893 12.093504 -7522 0.085785 0.047524 6.454228 9.984198 -7523 0.067025 0.060237 12.280790 12.625452 -7524 0.074357 0.072886 15.807603 14.470537 -7525 0.071216 0.047924 7.539495 9.435644 -7526 0.055605 0.025553 8.470000 15.597556 -7527 0.056308 0.019002 12.649385 21.795141 -7528 0.061277 0.049531 10.221775 10.846353 -7529 0.199619 0.053050 10.913797 11.265626 -7530 0.060174 0.038256 8.605365 16.021496 -7531 0.068501 0.040750 10.982373 11.962400 -7532 0.035330 0.024029 8.612381 8.762967 -7533 0.076995 0.052536 9.318499 11.559303 -7534 0.175094 0.065071 9.578591 10.840405 -7535 0.058508 0.056025 12.166147 14.145068 -7536 0.098458 0.049510 10.928044 23.584478 -7537 0.224356 0.254288 15.668506 14.171603 -7538 0.035084 0.021491 14.291565 16.048800 -7539 0.049491 0.031016 7.052400 10.778922 -7540 0.095600 0.056170 10.347719 11.229841 -7541 0.072499 0.033994 9.051319 12.092238 -7542 0.097592 0.056054 8.825802 13.520483 -7543 0.063426 0.032540 9.382005 11.409969 -7544 0.093218 0.097703 14.417966 11.789847 -7545 0.082806 0.044797 12.014732 15.955251 -7546 0.057160 0.035546 8.825461 10.812260 -7547 0.094813 0.045777 12.436114 20.081150 -7548 0.071897 0.043015 10.078344 10.024254 -7549 0.076151 0.049651 8.330458 13.556242 -7550 0.057860 0.034084 7.235498 9.493111 -7551 0.077446 0.036335 8.854884 11.906812 -7552 0.090266 0.091642 12.870096 12.851126 -7553 0.061726 0.029488 7.808598 15.949014 -7554 0.061725 0.041166 8.183717 10.737426 -7555 0.076772 0.031739 7.918114 11.048878 -7556 0.082940 0.031924 8.263423 8.741696 -7557 0.062868 0.044420 8.664074 13.078009 -7558 0.062000 0.035689 7.394339 13.052609 -7559 0.072653 0.045977 10.093717 16.361108 -7560 0.091404 0.084824 8.583462 12.431815 -7561 0.049592 0.022618 9.922237 7.786516 -7562 0.066293 0.073693 10.405882 16.294935 -7563 0.089592 0.097854 11.875043 12.900818 -7564 0.063879 0.058533 11.748523 10.754390 -7565 0.086070 0.058900 11.101297 19.731090 -7566 0.253992 0.073589 9.144098 13.957312 -7567 0.062708 0.030362 11.450235 14.713926 -7568 0.064812 0.059545 10.049286 11.403955 -7569 0.232928 0.063905 9.378690 18.303849 -7570 0.067484 0.037362 13.582530 14.542296 -7571 0.057162 0.032708 9.434262 9.618290 -7572 0.088121 0.054187 11.001083 13.435704 -7573 0.072759 0.040163 9.358532 10.077905 -7574 0.068811 0.042737 7.028390 10.472474 -7575 0.083621 0.036500 8.020068 7.493224 -7576 0.056610 0.032360 9.359927 9.064027 -7577 0.064217 0.040867 13.341707 12.587199 -7578 0.066563 0.030914 8.891210 11.211606 -7579 0.059278 0.042085 6.743132 7.956771 -7580 0.219698 0.043843 12.780696 15.030187 -7581 0.054677 0.027015 10.097066 9.183674 -7582 0.075540 0.045938 9.225570 11.260695 -7583 0.089918 0.052940 10.271796 11.855639 -7584 0.226132 0.083501 10.844817 17.072913 -7585 0.060334 0.043886 9.246585 16.929403 -7586 0.099673 0.074276 12.331762 16.710576 -7587 0.070687 0.062225 10.712628 14.499840 -7588 0.222067 0.063805 11.936560 16.932266 -7589 0.081040 0.061734 11.695223 26.852160 -7590 0.091205 0.048231 8.192280 14.036327 -7591 0.091800 0.070744 10.291405 13.603063 -7592 0.069493 0.042080 8.724090 10.529344 -7593 0.060677 0.031411 11.623761 19.074647 -7594 0.057498 0.051168 9.454345 10.678828 -7595 0.146414 0.074966 8.684033 13.765364 -7596 0.129207 0.057292 13.294636 11.145324 -7597 0.098302 0.035860 9.010171 12.059353 -7598 0.079113 0.044506 6.775845 7.677604 -7599 0.254756 0.040149 6.407795 13.962713 -7600 0.079088 0.048795 9.310523 11.521360 -7601 0.069010 0.042508 14.698604 14.713410 -7602 0.047937 0.043611 15.401272 16.291932 -7603 0.045848 0.015740 7.608223 12.006302 -7604 0.077543 0.038709 8.252460 10.698416 -7605 0.077552 0.035166 9.083639 9.076731 -7606 0.098546 0.054789 9.077595 15.554418 -7607 0.063194 0.036090 14.937838 14.659551 -7608 0.081446 0.040726 9.492670 8.721349 -7609 0.047064 0.049940 8.725409 14.655515 -7610 0.058607 0.030720 6.580747 9.001780 -7611 0.083992 0.062339 16.691248 19.653639 -7612 0.074579 0.054942 10.288534 13.224297 -7613 0.052706 0.054141 9.830102 14.798692 -7614 0.269874 0.045845 11.775315 11.895456 -7615 0.072688 0.086173 6.969977 13.456861 -7616 0.038601 0.030632 6.424681 12.019133 -7617 0.038684 0.037834 7.555370 8.577385 -7618 0.097588 0.048683 16.545581 15.945670 -7619 0.048054 0.025444 13.095009 22.080831 -7620 0.061638 0.043939 7.735339 8.344159 -7621 0.298045 0.099255 13.249153 20.232672 -7622 0.180039 0.052747 11.462386 16.864122 -7623 0.077427 0.057819 8.141218 14.417435 -7624 0.093498 0.060048 9.280474 11.724008 -7625 0.061153 0.051218 12.629046 18.711888 -7626 0.065931 0.053147 11.003886 16.069074 -7627 0.084134 0.049896 9.927505 11.824108 -7628 0.046188 0.051020 11.279577 12.861161 -7629 0.075437 0.033909 8.203561 15.246279 -7630 0.206169 0.047007 6.800745 10.705990 -7631 0.085250 0.056232 12.302122 14.553012 -7632 0.048116 0.047126 9.025790 14.175887 -7633 0.065122 0.034137 8.086788 11.661760 -7634 0.094821 0.055387 7.629337 9.518308 -7635 0.057317 0.028430 12.434674 11.418842 -7636 0.081912 0.078707 15.265909 17.481674 -7637 0.054456 0.040270 8.813019 10.896203 -7638 0.077342 0.044381 8.879365 15.291356 -7639 0.071225 0.089084 8.178404 11.672814 -7640 0.044866 0.038755 10.127617 15.659493 -7641 0.084221 0.051242 13.247258 19.238466 -7642 0.090001 0.055771 17.297064 14.173833 -7643 0.105468 0.061061 9.485499 10.944754 -7644 0.064821 0.032287 9.301429 14.646249 -7645 0.087730 0.051713 8.770921 13.470905 -7646 0.074254 0.041562 10.384335 11.841906 -7647 0.068266 0.052854 9.996591 15.085094 -7648 0.096300 0.066105 10.327754 12.944173 -7649 0.071126 0.022365 8.668443 9.529918 -7650 0.281683 0.076801 13.757812 19.521366 -7651 0.066003 0.063787 8.775977 11.336585 -7652 0.083298 0.060026 10.643513 15.741542 -7653 0.072998 0.035181 9.893890 18.611180 -7654 0.090353 0.038644 10.724227 13.275431 -7655 0.068583 0.055288 11.055054 10.533225 -7656 0.213932 0.093625 15.107960 12.637285 -7657 0.056951 0.039710 9.045379 11.830712 -7658 0.074259 0.050815 6.842014 12.847548 -7659 0.061869 0.033755 13.948245 14.611644 -7660 0.092953 0.046611 11.426148 14.656106 -7661 0.064799 0.043593 6.492348 9.540359 -7662 0.066260 0.047467 11.485212 16.511117 -7663 0.048897 0.035221 14.773808 12.640941 -7664 0.054207 0.037800 10.482904 11.231770 -7665 0.041420 0.038269 11.867927 10.724150 -7666 0.120704 0.181746 9.514943 14.050978 -7667 0.087903 0.034935 11.496093 10.743268 -7668 0.074048 0.041817 11.620785 14.778308 -7669 0.094379 0.047913 8.990964 9.349113 -7670 0.063411 0.035812 12.406716 12.656565 -7671 0.241425 0.067612 14.188295 16.954280 -7672 0.084652 0.046493 12.030916 12.372885 -7673 0.092426 0.065794 9.952314 13.590128 -7674 0.071653 0.042878 10.171823 14.279635 -7675 0.079324 0.049389 11.868371 11.619675 -7676 0.075931 0.060430 10.994888 10.036420 -7677 0.091143 0.054758 10.063933 14.654699 -7678 0.094064 0.028469 10.623694 9.917221 -7679 0.084466 0.062134 9.950153 16.806107 -7680 0.098966 0.050630 8.809589 10.573349 -7681 0.073610 0.040920 10.497584 12.026692 -7682 0.057838 0.046351 6.075629 8.818201 -7683 0.128431 0.069693 17.865878 17.958253 -7684 0.227747 0.073168 13.723827 13.985897 -7685 0.081850 0.032979 9.641110 11.742408 -7686 0.077050 0.044675 8.503073 12.522263 -7687 0.140651 0.075258 9.570941 14.571716 -7688 0.071663 0.058182 7.040837 8.704694 -7689 0.053635 0.034683 13.532558 16.576993 -7690 0.053118 0.027664 8.772836 13.282543 -7691 0.063261 0.056041 13.126584 16.255218 -7692 0.051661 0.040664 11.331301 10.693917 -7693 0.086371 0.058789 14.250706 21.659061 -7694 0.048398 0.027263 13.233369 13.017631 -7695 0.072459 0.040569 15.269344 9.162246 -7696 0.056132 0.035161 7.777476 8.740004 -7697 0.071355 0.054765 6.142620 11.789491 -7698 0.056325 0.031563 8.987664 10.279857 -7699 0.053092 0.036259 6.182714 9.544098 -7700 0.078494 0.043381 10.378631 12.954130 -7701 0.056543 0.020634 8.699701 14.930520 -7702 0.053514 0.046202 13.195200 10.391099 -7703 0.055627 0.045412 12.618712 10.084292 -7704 0.236040 0.043421 11.190295 10.143932 -7705 0.038609 0.027976 11.416075 15.091844 -7706 0.130577 0.059160 8.511115 16.162414 -7707 0.240183 0.074236 12.409052 12.408700 -7708 0.037606 0.022442 9.004134 9.176325 -7709 0.067067 0.039660 12.051856 9.782807 -7710 0.060483 0.061176 7.450178 8.716760 -7711 0.103681 0.061318 9.552092 15.557384 -7712 0.071367 0.047914 9.580419 14.653229 -7713 0.076123 0.036642 17.445422 15.308975 -7714 0.067865 0.029806 12.634290 15.888046 -7715 0.063281 0.045446 9.695383 6.380451 -7716 0.079898 0.053154 11.095001 10.604039 -7717 0.296723 0.169303 16.081252 19.338698 -7718 0.075043 0.052295 12.541877 11.989021 -7719 0.250685 0.051068 10.305979 11.335277 -7720 0.087465 0.060178 7.071919 9.903599 -7721 0.063645 0.027927 7.330796 8.564302 -7722 0.088939 0.072745 11.395652 12.627594 -7723 0.050776 0.019505 4.947248 9.435447 -7724 0.051032 0.039096 10.577107 9.500715 -7725 0.055595 0.053025 9.970471 10.523404 -7726 0.090313 0.034988 6.352967 9.938985 -7727 0.048355 0.025827 12.052310 11.905440 -7728 0.094015 0.041916 13.007310 13.547295 -7729 0.070406 0.081371 10.142136 11.509647 -7730 0.076949 0.043778 11.380921 12.791212 -7731 0.097228 0.075707 9.070824 12.106041 -7732 0.077216 0.050755 10.729494 13.369767 -7733 0.077960 0.070025 9.140486 14.004864 -7734 0.071196 0.055310 10.038869 15.058481 -7735 0.075643 0.042620 9.342772 10.547154 -7736 0.067500 0.037997 12.382914 13.288228 -7737 0.096067 0.050209 12.591249 13.148305 -7738 0.087775 0.082104 9.656847 13.679577 -7739 0.080110 0.054910 5.285006 9.313737 -7740 0.051102 0.032281 7.241315 13.646177 -7741 0.091830 0.070616 9.853952 14.390442 -7742 0.067806 0.061074 13.421188 10.270280 -7743 0.064164 0.044037 7.815991 14.485308 -7744 0.272644 0.065300 12.460272 12.745722 -7745 0.079376 0.038010 11.419852 11.647181 -7746 0.054440 0.022250 7.322560 14.312394 -7747 0.073953 0.037476 9.224564 9.900671 -7748 0.070560 0.030680 9.329833 11.274181 -7749 0.068610 0.052977 9.893535 11.145680 -7750 0.135498 0.115152 10.438448 18.070146 -7751 0.081144 0.035536 9.897636 8.162366 -7752 0.046741 0.042959 8.817780 10.644695 -7753 0.072155 0.052188 9.184956 11.836195 -7754 0.084941 0.047938 9.595806 11.775556 -7755 0.041664 0.020290 12.032534 11.658004 -7756 0.046100 0.024893 8.115221 9.964984 -7757 0.065289 0.058993 15.300501 10.789123 -7758 0.078520 0.027749 9.793591 10.852507 -7759 0.037993 0.036259 14.247678 12.924890 -7760 0.056757 0.056538 10.971900 21.689061 -7761 0.075815 0.059793 13.114811 13.919165 -7762 0.092965 0.067284 10.383057 16.401196 -7763 0.057722 0.036378 8.433016 9.937645 -7764 0.073621 0.031656 15.749164 13.747285 -7765 0.035943 0.022757 5.897633 6.648655 -7766 0.044313 0.033334 8.748311 12.281313 -7767 0.062842 0.040234 10.054717 12.758476 -7768 0.197735 0.060591 15.237976 24.631718 -7769 0.039787 0.037521 7.538074 13.452228 -7770 0.275505 0.068309 8.650894 18.687301 -7771 0.141474 0.075202 6.176517 11.429114 -7772 0.064793 0.033880 10.954812 9.783607 -7773 0.085548 0.036098 7.132598 11.877072 -7774 0.052419 0.027130 7.650837 10.729490 -7775 0.126058 0.040676 9.151264 13.279049 -7776 0.076290 0.058314 8.901075 14.109398 -7777 0.081106 0.066036 6.848302 11.790563 -7778 0.241835 0.057601 9.630431 9.331563 -7779 0.078324 0.059991 8.572963 10.513891 -7780 0.066288 0.052765 6.911758 10.889789 -7781 0.213567 0.066249 8.854555 12.816261 -7782 0.077674 0.053305 10.071016 9.920242 -7783 0.084658 0.041515 11.410467 13.413234 -7784 0.075244 0.063883 11.344449 10.116761 -7785 0.064395 0.051287 9.877858 10.100386 -7786 0.269692 0.063729 8.934915 9.934996 -7787 0.059667 0.033462 7.948432 7.976183 -7788 0.173327 0.078539 12.516692 15.829971 -7789 0.074531 0.033549 11.244137 7.419892 -7790 0.290541 0.034419 11.603562 11.944236 -7791 0.082611 0.039087 13.924882 13.896490 -7792 0.059727 0.046175 7.748088 13.067585 -7793 0.092267 0.042136 6.916327 10.882264 -7794 0.091030 0.042197 11.637173 17.314506 -7795 0.070942 0.041009 9.045379 17.500157 -7796 0.073841 0.044788 8.435134 12.066442 -7797 0.051667 0.029214 9.626334 11.585826 -7798 0.089748 0.038977 7.727957 7.652753 -7799 0.077913 0.061141 8.999859 13.538504 -7800 0.093337 0.049285 14.578101 17.080839 -7801 0.084717 0.049505 8.929756 12.794254 -7802 0.076147 0.022610 16.998140 28.438260 -7803 0.054543 0.021539 8.621152 9.994220 -7804 0.054561 0.038464 7.672555 8.336606 -7805 0.054018 0.041261 10.925947 8.566712 -7806 0.077197 0.042098 12.173791 15.548236 -7807 0.078929 0.043068 5.903288 13.009025 -7808 0.056461 0.022705 11.769004 14.542977 -7809 0.069025 0.072506 5.624874 14.886626 -7810 0.085956 0.056073 10.354898 13.073611 -7811 0.071650 0.031494 10.106081 9.541491 -7812 0.212922 0.048293 10.200874 9.370967 -7813 0.048629 0.033717 19.722139 13.854498 -7814 0.060466 0.042579 10.531845 10.519533 -7815 0.076579 0.060321 9.629505 12.076897 -7816 0.089417 0.044732 6.801660 8.555640 -7817 0.066019 0.055801 9.648143 11.842963 -7818 0.089233 0.083813 8.877708 13.692367 -7819 0.059502 0.039756 13.478959 12.789121 -7820 0.211120 0.117811 14.889679 15.110942 -7821 0.053897 0.030782 9.624765 16.431855 -7822 0.071968 0.045563 12.613771 12.483904 -7823 0.088421 0.044480 12.663515 20.116813 -7824 0.073862 0.047669 9.136636 9.263563 -7825 0.094949 0.046437 7.480394 12.403717 -7826 0.064648 0.030492 9.538720 13.760290 -7827 0.074276 0.018308 10.421110 10.279925 -7828 0.095260 0.052754 11.968236 16.064817 -7829 0.093135 0.233793 9.751481 14.515864 -7830 0.039984 0.038190 7.573369 12.077173 -7831 0.074298 0.052551 9.672850 9.252692 -7832 0.096980 0.064258 12.993812 19.777377 -7833 0.083800 0.073596 13.163025 14.529925 -7834 0.043407 0.018033 9.584062 10.230178 -7835 0.039125 0.029140 9.986879 14.437465 -7836 0.060849 0.014070 8.598889 11.401097 -7837 0.062376 0.030969 15.788581 12.450995 -7838 0.067260 0.060866 9.960119 12.230382 -7839 0.094770 0.041425 8.982692 14.050368 -7840 0.064066 0.036488 7.046363 7.669315 -7841 0.055451 0.034433 9.791693 12.220029 -7842 0.042240 0.023724 9.825754 13.548577 -7843 0.195603 0.086373 12.384003 14.382208 -7844 0.095164 0.072957 13.233305 14.294720 -7845 0.069228 0.057243 12.093046 16.320154 -7846 0.071460 0.043498 8.524642 12.304418 -7847 0.064357 0.034988 8.742993 11.826149 -7848 0.060006 0.022569 7.917884 12.642185 -7849 0.088275 0.035189 8.470510 7.817661 -7850 0.049708 0.037798 9.767646 23.069185 -7851 0.066108 0.037901 12.353341 12.451354 -7852 0.226444 0.115201 14.277805 15.024038 -7853 0.074946 0.053367 11.374714 14.589380 -7854 0.062442 0.039635 6.082540 9.969139 -7855 0.054808 0.050901 7.590650 8.480977 -7856 0.062671 0.024173 10.184485 13.319124 -7857 0.080264 0.028949 10.481357 14.654824 -7858 0.059550 0.033018 12.831716 9.973055 -7859 0.139454 0.076883 12.204517 15.118706 -7860 0.207082 0.044901 6.841007 7.393424 -7861 0.060769 0.034830 9.443179 8.233701 -7862 0.055893 0.035700 7.680270 12.369857 -7863 0.083591 0.060588 9.216440 15.736004 -7864 0.073308 0.048377 10.808246 16.451006 -7865 0.046825 0.022568 8.793567 15.056688 -7866 0.085973 0.056745 10.067419 10.341328 -7867 0.147728 0.168907 9.577967 9.031077 -7868 0.067431 0.027794 9.043564 10.549810 -7869 0.065207 0.033204 8.346805 13.234315 -7870 0.089813 0.059118 11.241808 14.482342 -7871 0.115966 0.266917 11.947392 19.211307 -7872 0.072302 0.057553 12.271784 19.959941 -7873 0.076909 0.049824 9.169096 13.472174 -7874 0.069323 0.064142 7.741761 12.639431 -7875 0.060888 0.033364 8.561967 11.279333 -7876 0.074019 0.034786 8.772739 17.138088 -7877 0.287970 0.062753 16.814583 19.630697 -7878 0.063430 0.019904 14.856648 11.125283 -7879 0.063697 0.046812 6.705440 6.889994 -7880 0.062157 0.023016 11.591654 12.905053 -7881 0.254698 0.058745 10.671670 15.910556 -7882 0.049268 0.023795 6.954255 8.711577 -7883 0.098478 0.071966 9.942938 13.512080 -7884 0.052881 0.035187 7.215762 6.811543 -7885 0.172888 0.237600 10.878934 12.890276 -7886 0.067474 0.036931 9.053790 12.497391 -7887 0.078104 0.062388 11.411520 11.705759 -7888 0.055347 0.040066 12.044350 16.075286 -7889 0.130289 0.079421 12.870670 14.424664 -7890 0.057199 0.028529 11.458301 11.525188 -7891 0.071924 0.049401 11.694212 11.124066 -7892 0.046059 0.040719 9.822437 12.644023 -7893 0.082819 0.023204 8.337914 13.167447 -7894 0.070533 0.032462 9.011872 7.482331 -7895 0.057764 0.042846 11.062321 13.769489 -7896 0.172057 0.091675 16.662176 23.853369 -7897 0.278152 0.052839 11.614412 14.862136 -7898 0.087070 0.044842 10.527267 11.983055 -7899 0.223084 0.059327 9.787282 10.885574 -7900 0.061120 0.034972 9.514553 9.223912 -7901 0.094267 0.040662 8.152328 19.572760 -7902 0.073115 0.049960 7.446453 9.163512 -7903 0.071131 0.062324 13.029286 22.007291 -7904 0.288874 0.084626 12.837834 11.979203 -7905 0.057870 0.022485 6.910678 10.884881 -7906 0.043613 0.022731 6.816766 12.204601 -7907 0.088569 0.055070 12.862289 15.481918 -7908 0.166194 0.068793 8.682922 11.831054 -7909 0.058793 0.029860 6.730236 7.974408 -7910 0.048600 0.033322 14.077846 11.253102 -7911 0.049595 0.026004 9.877624 13.317482 -7912 0.076010 0.050961 9.286750 15.177542 -7913 0.079840 0.037563 8.330068 11.919516 -7914 0.071998 0.026927 8.626569 11.450943 -7915 0.085636 0.038131 10.711928 10.204591 -7916 0.088115 0.057198 13.604359 21.137889 -7917 0.032447 0.019280 7.055750 5.800441 -7918 0.085755 0.045735 12.191935 11.798382 -7919 0.063918 0.038176 5.727161 6.158873 -7920 0.083154 0.051859 8.589858 12.844508 -7921 0.053604 0.041727 11.187455 13.567901 -7922 0.196879 0.085370 9.896885 12.759518 -7923 0.213657 0.062582 12.586186 14.154857 -7924 0.094326 0.047801 9.922585 14.786448 -7925 0.224938 0.112161 11.663358 18.887104 -7926 0.039893 0.023647 10.803724 11.552787 -7927 0.088213 0.054283 10.515423 12.583682 -7928 0.182029 0.053112 15.310906 12.170164 -7929 0.060804 0.025225 7.466891 10.127879 -7930 0.053403 0.023401 7.338144 9.151510 -7931 0.047597 0.038501 14.157532 10.070445 -7932 0.067528 0.036935 8.589194 9.196837 -7933 0.036309 0.027381 9.962017 16.659521 -7934 0.047315 0.046642 11.026886 10.804680 -7935 0.052930 0.034191 12.717605 12.126507 -7936 0.068272 0.052890 7.684464 10.727300 -7937 0.067542 0.049666 10.188474 15.731174 -7938 0.172858 0.058953 9.530959 16.091760 -7939 0.090495 0.031832 7.954657 6.034758 -7940 0.276651 0.066491 8.088466 10.106404 -7941 0.089259 0.051776 10.168694 13.595013 -7942 0.052744 0.023672 7.943984 11.589428 -7943 0.081412 0.050995 10.856868 15.063804 -7944 0.064936 0.050350 10.365636 12.817311 -7945 0.079204 0.038610 6.732373 12.506029 -7946 0.265107 0.054810 12.337358 16.158137 -7947 0.060493 0.045404 6.132228 12.814343 -7948 0.076615 0.054197 9.927151 11.741361 -7949 0.041084 0.025290 9.073473 15.451992 -7950 0.084947 0.034371 10.675796 12.646556 -7951 0.048045 0.028385 11.685782 13.157212 -7952 0.071645 0.209893 10.746724 9.937570 -7953 0.052303 0.028803 9.634723 15.510462 -7954 0.096203 0.044136 11.241725 13.096345 -7955 0.239583 0.040794 17.122344 21.815754 -7956 0.085595 0.063979 7.204146 9.775381 -7957 0.084881 0.054901 9.571913 12.301895 -7958 0.061918 0.055733 10.953576 11.160294 -7959 0.060514 0.036270 9.904014 9.357223 -7960 0.064860 0.033028 13.515854 14.693356 -7961 0.062013 0.063681 10.420657 12.970799 -7962 0.039458 0.021315 9.086577 9.999706 -7963 0.250630 0.259927 9.771544 12.162133 -7964 0.197409 0.068832 13.664547 20.340392 -7965 0.258187 0.063682 10.121382 12.689436 -7966 0.042572 0.025602 9.136591 13.865334 -7967 0.071151 0.056031 10.065975 15.886148 -7968 0.084586 0.051204 8.619518 9.422877 -7969 0.079579 0.087093 9.082043 15.626992 -7970 0.094868 0.071840 8.216396 12.364443 -7971 0.077105 0.035156 13.155680 13.630750 -7972 0.085496 0.040724 10.615251 10.918836 -7973 0.080708 0.049270 6.994400 10.017451 -7974 0.089198 0.038214 14.211344 13.370588 -7975 0.069738 0.055966 12.383818 14.622762 -7976 0.127135 0.192004 17.400000 17.042358 -7977 0.066744 0.035106 10.609472 11.616057 -7978 0.059565 0.027727 8.257125 12.868243 -7979 0.175074 0.078379 10.534724 13.955935 -7980 0.061985 0.029681 12.759966 19.354495 -7981 0.065083 0.032940 8.618828 12.637159 -7982 0.085727 0.044080 12.252591 18.332924 -7983 0.069337 0.035378 13.920618 10.634870 -7984 0.073765 0.043985 10.478842 12.844701 -7985 0.063232 0.029541 8.674944 11.943446 -7986 0.095745 0.072409 11.613822 16.948836 -7987 0.054176 0.061089 10.769407 11.564873 -7988 0.062188 0.028341 6.809947 12.243950 -7989 0.070917 0.042005 6.189222 8.973064 -7990 0.090998 0.039936 10.675949 11.356066 -7991 0.077852 0.048653 10.704830 11.104022 -7992 0.059569 0.026720 9.471636 11.817570 -7993 0.065683 0.044324 6.430008 9.929684 -7994 0.094558 0.077724 10.960202 13.001823 -7995 0.054625 0.032867 9.077104 12.021161 -7996 0.095517 0.040489 10.882620 22.460661 -7997 0.052705 0.019988 10.286870 14.407624 -7998 0.046985 0.049011 8.253229 11.091321 -7999 0.069286 0.059126 7.459546 13.269448 -8000 0.086051 0.056004 10.597775 11.421184 -8001 0.094079 0.038165 15.780175 17.751908 -8002 0.066369 0.039371 10.427494 11.182804 -8003 0.198784 0.070835 14.791963 15.492870 -8004 0.078781 0.040127 11.623865 12.387879 -8005 0.055534 0.038305 8.232291 14.135622 -8006 0.058043 0.035607 15.367651 15.489308 -8007 0.066979 0.056905 8.996265 13.809592 -8008 0.287530 0.044241 9.373945 11.677970 -8009 0.209984 0.068530 9.849469 12.031419 -8010 0.086672 0.055627 9.699544 10.921933 -8011 0.065457 0.048898 10.267765 11.924932 -8012 0.093994 0.053719 15.042077 15.308629 -8013 0.081954 0.045981 10.360104 14.116971 -8014 0.113933 0.065354 9.661691 15.843762 -8015 0.087426 0.074039 8.601508 14.999751 -8016 0.068722 0.033616 7.490536 12.179192 -8017 0.067032 0.038470 7.719468 14.268984 -8018 0.069628 0.060908 11.506441 12.826106 -8019 0.046587 0.056460 10.951939 12.838866 -8020 0.205874 0.072120 10.267360 15.008246 -8021 0.150765 0.076550 11.070352 14.793838 -8022 0.102673 0.196443 10.103506 17.409345 -8023 0.060628 0.052967 7.327225 8.317943 -8024 0.072219 0.026614 10.733776 11.483450 -8025 0.102105 0.074306 13.332284 16.633789 -8026 0.074474 0.039396 7.568972 8.670930 -8027 0.057066 0.036053 14.285534 21.261471 -8028 0.057565 0.032313 8.762975 11.055215 -8029 0.066110 0.044659 11.030655 9.970658 -8030 0.072661 0.040196 10.816214 10.090475 -8031 0.076408 0.035383 10.814670 13.936674 -8032 0.224567 0.056656 9.101155 11.686150 -8033 0.065511 0.028980 7.108855 14.935482 -8034 0.093498 0.054898 10.001372 15.599757 -8035 0.056752 0.031235 12.434349 16.258539 -8036 0.057295 0.035183 7.071802 12.484277 -8037 0.252993 0.047373 7.433227 11.337755 -8038 0.243055 0.070000 12.226676 18.734965 -8039 0.083721 0.053675 8.279342 11.603324 -8040 0.065075 0.024585 11.771768 14.221991 -8041 0.054794 0.029482 8.902512 11.115272 -8042 0.086928 0.046315 11.687221 11.952957 -8043 0.081736 0.047424 13.458020 12.196447 -8044 0.073792 0.023234 7.686431 11.299894 -8045 0.269590 0.083012 12.342243 16.877995 -8046 0.059131 0.051652 9.500962 12.484201 -8047 0.053009 0.040721 5.717220 7.316664 -8048 0.084929 0.058535 13.251198 18.694934 -8049 0.081904 0.052731 8.495580 11.975421 -8050 0.076313 0.035533 10.357404 15.765057 -8051 0.066084 0.040440 8.070557 7.920193 -8052 0.081437 0.050705 10.385389 11.990566 -8053 0.065884 0.031577 7.729965 11.745387 -8054 0.061658 0.031847 11.681418 10.255583 -8055 0.050805 0.035700 7.158291 9.234901 -8056 0.072951 0.084150 8.467168 11.550007 -8057 0.073985 0.058740 10.495877 15.367511 -8058 0.097010 0.068353 10.908520 18.124295 -8059 0.096616 0.078833 8.520851 8.392313 -8060 0.071480 0.037668 10.312281 12.445337 -8061 0.077050 0.043287 10.552268 10.988610 -8062 0.043340 0.030527 6.818279 9.877866 -8063 0.076454 0.068526 11.950300 13.019521 -8064 0.045560 0.059433 7.800179 17.028143 -8065 0.204124 0.045236 9.736437 19.326534 -8066 0.086376 0.086484 12.502878 15.891032 -8067 0.029680 0.016635 7.279915 12.680230 -8068 0.099717 0.054298 9.758060 13.563553 -8069 0.045150 0.022279 12.832451 13.305992 -8070 0.295494 0.076745 11.735299 18.562287 -8071 0.076480 0.051207 7.469830 8.408668 -8072 0.074835 0.046922 7.156930 10.780178 -8073 0.257947 0.289958 10.561772 14.713736 -8074 0.084638 0.029842 9.493067 17.378335 -8075 0.084750 0.068741 12.214996 19.124116 -8076 0.083116 0.042391 8.788293 9.893498 -8077 0.089723 0.040299 8.150430 8.618087 -8078 0.049167 0.031514 6.871983 12.963426 -8079 0.087741 0.055561 11.681333 13.973828 -8080 0.074120 0.029008 11.928648 13.556987 -8081 0.044919 0.026514 7.450511 9.763002 -8082 0.083639 0.042873 9.637279 9.583925 -8083 0.051881 0.041301 12.846686 11.525188 -8084 0.081449 0.050556 7.134879 13.579594 -8085 0.053685 0.043185 7.700314 10.504011 -8086 0.085511 0.042298 9.824837 17.466997 -8087 0.087615 0.048404 9.103395 11.315205 -8088 0.093166 0.046973 12.098712 15.336476 -8089 0.091148 0.068183 16.254271 15.180956 -8090 0.037458 0.018595 8.879892 9.257798 -8091 0.071248 0.041910 11.651963 11.962127 -8092 0.074909 0.058691 8.750076 10.281352 -8093 0.097528 0.064830 10.128903 10.526343 -8094 0.069480 0.071618 7.955197 11.732836 -8095 0.089264 0.072240 12.408992 13.743878 -8096 0.056156 0.041077 10.645923 10.578872 -8097 0.160009 0.058970 8.613856 13.230562 -8098 0.059288 0.035736 6.604947 10.577685 -8099 0.080607 0.035536 7.479156 12.364156 -8100 0.075290 0.045088 15.617866 13.042223 -8101 0.078089 0.050649 11.530829 19.303325 -8102 0.073562 0.036026 7.171803 8.862016 -8103 0.085032 0.051423 10.569194 11.823854 -8104 0.052781 0.033230 8.875819 9.816405 -8105 0.052556 0.021311 6.856956 12.279524 -8106 0.055023 0.027829 10.749760 9.901457 -8107 0.046983 0.028335 9.891389 9.694178 -8108 0.063700 0.031219 6.663061 10.813311 -8109 0.090349 0.057475 10.338994 12.819464 -8110 0.079818 0.057370 9.056487 10.337895 -8111 0.291901 0.049527 8.295714 11.088761 -8112 0.044195 0.031467 10.363050 14.987312 -8113 0.234991 0.079257 10.196334 14.758633 -8114 0.175416 0.063611 10.360759 16.918173 -8115 0.037835 0.026417 13.335011 11.516333 -8116 0.215173 0.052513 15.554771 17.947768 -8117 0.185397 0.242245 8.956825 11.714155 -8118 0.062110 0.043248 9.292721 13.977981 -8119 0.068561 0.037463 10.550733 14.348523 -8120 0.179075 0.040251 7.542707 12.118621 -8121 0.251211 0.084894 18.908951 20.752915 -8122 0.085293 0.031128 12.059386 13.183121 -8123 0.133317 0.030954 6.602708 9.957445 -8124 0.041978 0.037898 9.843854 13.942383 -8125 0.177948 0.055703 8.938281 14.688049 -8126 0.071051 0.044717 10.449924 13.798547 -8127 0.076860 0.057057 10.456356 14.003151 -8128 0.093812 0.056436 7.890778 14.567568 -8129 0.068348 0.029369 9.887981 10.033340 -8130 0.081502 0.056108 11.468710 11.708099 -8131 0.048871 0.021570 10.108673 11.474775 -8132 0.057184 0.030798 7.596644 7.116497 -8133 0.072620 0.064240 9.238154 8.890561 -8134 0.036179 0.017553 8.058326 8.219115 -8135 0.231412 0.051929 8.692290 12.211518 -8136 0.064161 0.053610 14.184987 16.384784 -8137 0.180857 0.082772 11.062255 12.011429 -8138 0.075871 0.038677 11.839818 17.728314 -8139 0.062126 0.043847 8.092855 7.155461 -8140 0.093585 0.045552 6.863504 12.591336 -8141 0.064657 0.034986 7.916348 11.760586 -8142 0.080335 0.075153 9.899811 16.317407 -8143 0.192150 0.047621 14.896390 17.826899 -8144 0.093208 0.055211 11.274537 14.068543 -8145 0.076970 0.054107 8.254009 10.770106 -8146 0.070668 0.036113 10.954776 15.994465 -8147 0.073609 0.029487 7.451308 11.977176 -8148 0.046340 0.015385 6.958685 7.287009 -8149 0.086785 0.059715 7.557501 10.216915 -8150 0.057062 0.039026 5.970220 13.093482 -8151 0.075256 0.052544 10.011606 13.279129 -8152 0.158262 0.044138 11.536438 13.055449 -8153 0.066153 0.065041 10.615480 11.735772 -8154 0.084975 0.067360 15.632041 16.556039 -8155 0.075686 0.037729 6.918567 8.422938 -8156 0.056252 0.033271 9.456144 14.527974 -8157 0.078545 0.040679 7.727043 11.817297 -8158 0.288081 0.062484 7.806314 11.918922 -8159 0.067789 0.025507 11.764722 11.430399 -8160 0.053395 0.043437 10.034150 7.253389 -8161 0.075443 0.061321 8.220195 11.098459 -8162 0.084968 0.046922 7.819398 10.833862 -8163 0.200062 0.188969 9.538394 15.903471 -8164 0.060758 0.023701 7.605438 9.952475 -8165 0.257065 0.058472 10.403362 17.941703 -8166 0.185125 0.192172 12.494613 12.837013 -8167 0.099814 0.045991 11.922754 17.570399 -8168 0.047393 0.034693 6.737856 8.718730 -8169 0.055751 0.019995 7.933188 14.451177 -8170 0.071867 0.037813 13.255551 10.964390 -8171 0.072483 0.048930 9.674313 12.151301 -8172 0.130850 0.057494 15.073109 14.596978 -8173 0.233075 0.065221 10.503409 14.380965 -8174 0.087812 0.058367 14.949303 17.037176 -8175 0.056893 0.040892 7.579261 10.199143 -8176 0.067329 0.070196 10.740157 8.695740 -8177 0.053307 0.032968 11.125247 11.027811 -8178 0.058633 0.025936 8.905148 10.499242 -8179 0.069078 0.051218 10.008039 14.407664 -8180 0.051350 0.035237 8.397425 9.531076 -8181 0.089933 0.062480 6.560849 9.871128 -8182 0.188893 0.063684 9.862796 9.165867 -8183 0.058609 0.031963 10.480390 11.669503 -8184 0.071495 0.046897 10.815275 13.545439 -8185 0.033071 0.032099 9.862214 8.993600 -8186 0.078091 0.052153 16.580466 10.349713 -8187 0.084213 0.039280 13.651577 13.602976 -8188 0.268158 0.068326 6.713363 11.509500 -8189 0.090937 0.045382 16.375699 13.971685 -8190 0.298399 0.054547 7.636388 13.382725 -8191 0.063377 0.041863 15.254203 14.603821 -8192 0.078424 0.038889 11.438383 13.607836 -8193 0.110454 0.040195 8.852119 8.212765 -8194 0.052534 0.029503 6.177390 7.394725 -8195 0.066370 0.046005 5.404836 7.201061 -8196 0.098937 0.086178 9.014965 11.207112 -8197 0.066374 0.022581 9.882944 13.338958 -8198 0.095185 0.096863 10.690853 12.973164 -8199 0.074310 0.055141 13.265336 17.306304 -8200 0.047907 0.028333 10.795497 14.129849 -8201 0.262479 0.065599 11.176578 13.296316 -8202 0.258021 0.079951 18.253589 19.314493 -8203 0.185973 0.089919 7.183793 9.602162 -8204 0.077834 0.033710 9.005274 8.881417 -8205 0.092648 0.029464 12.983524 15.296061 -8206 0.087182 0.052397 11.991450 15.423986 -8207 0.058298 0.048474 9.934877 12.930682 -8208 0.279200 0.096929 10.349222 17.846998 -8209 0.039193 0.033428 9.832010 16.479927 -8210 0.076274 0.042736 6.170934 15.612097 -8211 0.070033 0.028460 11.107858 17.406670 -8212 0.092390 0.068193 6.133072 11.263419 -8213 0.222899 0.055118 15.157037 19.539053 -8214 0.086874 0.048263 11.796835 13.147762 -8215 0.247852 0.080971 9.477425 12.585339 -8216 0.118327 0.058205 9.298103 9.174557 -8217 0.042891 0.016873 10.279229 9.556864 -8218 0.050034 0.033295 6.039347 6.746840 -8219 0.067605 0.036197 9.354139 13.575751 -8220 0.052252 0.017920 6.459181 8.119717 -8221 0.089425 0.054143 13.752260 15.664486 -8222 0.059648 0.040607 6.224028 9.057574 -8223 0.055365 0.033293 13.214437 9.134214 -8224 0.071464 0.048044 9.124932 11.783342 -8225 0.076693 0.038430 7.981574 14.968770 -8226 0.094802 0.060601 5.364861 7.903464 -8227 0.062799 0.033119 9.827594 11.810992 -8228 0.064873 0.040712 10.975431 12.682297 -8229 0.219313 0.060950 9.576400 12.460859 -8230 0.291160 0.054100 10.253954 13.377061 -8231 0.089847 0.059111 10.275792 17.867564 -8232 0.063574 0.043546 11.802184 11.605470 -8233 0.066084 0.052992 11.680687 13.470442 -8234 0.051762 0.033502 7.881505 9.361283 -8235 0.094252 0.061747 10.236266 17.241869 -8236 0.094135 0.090596 14.127312 20.598012 -8237 0.054409 0.024117 7.118764 10.271311 -8238 0.047266 0.034328 13.394869 13.503084 -8239 0.073618 0.058818 11.859172 16.266878 -8240 0.055408 0.050594 6.473921 10.843709 -8241 0.223896 0.048044 6.638998 9.999421 -8242 0.261154 0.066116 10.236230 12.701231 -8243 0.085306 0.048943 9.463717 10.764255 -8244 0.065418 0.034996 6.689808 14.192808 -8245 0.047053 0.026397 8.516277 11.489396 -8246 0.084996 0.056075 11.555946 13.690771 -8247 0.094164 0.045653 9.414700 13.314527 -8248 0.071258 0.035088 6.989926 9.653830 -8249 0.096044 0.049666 12.008968 17.631262 -8250 0.177002 0.074249 10.340841 14.110099 -8251 0.068130 0.032555 8.816470 10.845735 -8252 0.081123 0.035740 8.447846 9.351641 -8253 0.063339 0.041453 10.636774 11.737361 -8254 0.196867 0.065433 13.562572 17.430485 -8255 0.075698 0.040187 14.902553 16.001278 -8256 0.065232 0.053661 11.120316 10.930529 -8257 0.049888 0.031253 9.376821 11.494386 -8258 0.072895 0.070767 11.941153 10.828948 -8259 0.067122 0.052128 11.541045 10.716361 -8260 0.085761 0.029757 10.376778 15.096507 -8261 0.052449 0.043281 8.588257 8.602630 -8262 0.071637 0.049856 10.000038 11.793978 -8263 0.051911 0.028599 5.180714 12.732687 -8264 0.137162 0.049125 10.063815 11.249494 -8265 0.075147 0.052083 14.197637 14.686233 -8266 0.181662 0.073427 11.101792 9.173538 -8267 0.084324 0.045475 6.062668 8.341454 -8268 0.065258 0.061191 12.132759 13.936463 -8269 0.045608 0.040534 6.861631 12.517079 -8270 0.053455 0.025835 8.074589 11.501674 -8271 0.073211 0.055804 11.583418 13.984228 -8272 0.063009 0.033475 8.603087 9.198198 -8273 0.091134 0.040887 11.904730 15.906549 -8274 0.191571 0.085053 13.582654 17.904278 -8275 0.066217 0.046934 10.592039 11.988165 -8276 0.075965 0.085418 10.467438 14.504192 -8277 0.040407 0.030083 9.858571 14.861127 -8278 0.069839 0.033921 6.694738 14.060189 -8279 0.049320 0.028112 8.920928 10.040605 -8280 0.140114 0.040959 9.961305 14.042738 -8281 0.033079 0.019708 8.186276 10.559968 -8282 0.082343 0.042314 6.938954 11.200127 -8283 0.044589 0.035751 9.390798 10.941106 -8284 0.275980 0.059750 7.401508 7.071706 -8285 0.088074 0.223909 15.524720 24.412738 -8286 0.057416 0.024138 10.238583 11.664326 -8287 0.048388 0.052799 11.958391 14.215511 -8288 0.099302 0.066184 13.509346 14.497702 -8289 0.072350 0.061076 10.571553 19.190770 -8290 0.043684 0.027875 6.089521 8.146082 -8291 0.072829 0.061162 12.377104 18.046700 -8292 0.041169 0.020465 8.233186 9.462349 -8293 0.262713 0.054536 8.824970 12.909020 -8294 0.068391 0.033530 9.028918 13.785821 -8295 0.147367 0.091357 9.273991 17.575063 -8296 0.272001 0.076427 12.859863 12.894271 -8297 0.065780 0.032385 7.114926 15.018579 -8298 0.053895 0.026994 9.116889 12.177398 -8299 0.068208 0.044355 11.399509 10.395895 -8300 0.041686 0.029665 8.859222 8.982398 -8301 0.044761 0.025641 14.805647 15.418086 -8302 0.078597 0.071652 9.905595 16.220478 -8303 0.072588 0.063074 7.784402 10.575959 -8304 0.076783 0.051741 7.542538 10.875370 -8305 0.057326 0.034709 10.532164 13.038493 -8306 0.155643 0.122285 14.395316 22.624794 -8307 0.071432 0.024592 5.986994 8.509573 -8308 0.092287 0.056186 9.175125 7.877364 -8309 0.065428 0.046946 11.748521 11.280956 -8310 0.062714 0.031697 11.603974 15.245030 -8311 0.259891 0.054659 11.318969 9.854512 -8312 0.060850 0.025052 7.933594 8.833600 -8313 0.069153 0.043645 7.200865 8.973621 -8314 0.090839 0.039896 10.238045 20.026757 -8315 0.096855 0.048626 8.859460 12.947511 -8316 0.044536 0.016447 8.031666 8.732563 -8317 0.238248 0.054231 10.610983 14.717989 -8318 0.074413 0.035554 12.698975 15.990649 -8319 0.072219 0.042489 13.070220 16.258371 -8320 0.041901 0.039167 7.958681 11.585191 -8321 0.065099 0.064684 6.811733 11.082295 -8322 0.092536 0.070667 13.481458 9.610212 -8323 0.048051 0.044224 8.876454 13.780938 -8324 0.291804 0.078924 9.834841 11.747305 -8325 0.091193 0.050173 10.152146 18.665484 -8326 0.097272 0.072948 9.614498 14.423312 -8327 0.057743 0.029590 8.230929 12.714928 -8328 0.062704 0.035867 9.204986 11.889233 -8329 0.048498 0.026375 9.535808 15.697654 -8330 0.092780 0.051628 8.966162 13.589845 -8331 0.078849 0.031199 8.310597 10.101049 -8332 0.087031 0.054426 10.356363 11.296757 -8333 0.246758 0.084767 13.764006 15.699859 -8334 0.222356 0.093193 14.096362 14.417166 -8335 0.057717 0.035344 6.148360 9.194826 -8336 0.082885 0.043338 9.598183 8.657753 -8337 0.074448 0.053358 8.122983 11.738026 -8338 0.066825 0.061278 8.619957 11.407696 -8339 0.051081 0.029787 11.243079 14.179923 -8340 0.055465 0.052262 12.042483 11.437452 -8341 0.099680 0.045020 10.658550 14.240330 -8342 0.064846 0.035321 10.964215 16.794899 -8343 0.087780 0.094068 13.758732 10.480416 -8344 0.052764 0.021804 9.986738 11.582187 -8345 0.224812 0.059610 11.484847 13.269257 -8346 0.083052 0.060746 9.256183 14.284755 -8347 0.074216 0.036141 6.693605 8.511211 -8348 0.096767 0.034301 8.582817 15.536427 -8349 0.049507 0.030890 6.143880 9.833383 -8350 0.054125 0.053440 11.054279 17.016026 -8351 0.060726 0.053191 7.727834 11.219291 -8352 0.063058 0.045276 7.999683 9.730601 -8353 0.097486 0.054133 10.452032 15.847456 -8354 0.053297 0.030994 11.460603 14.572777 -8355 0.089595 0.063014 13.502816 10.799398 -8356 0.155204 0.070442 10.248895 17.280748 -8357 0.065274 0.053732 8.369872 8.993545 -8358 0.049601 0.030173 5.333611 9.727927 -8359 0.066422 0.043644 11.612034 17.230310 -8360 0.075795 0.063949 10.972815 15.057079 -8361 0.082426 0.047038 5.723687 7.847568 -8362 0.082701 0.072746 9.110214 11.411084 -8363 0.063667 0.041957 9.685131 9.908220 -8364 0.072915 0.043258 12.770390 11.241744 -8365 0.070696 0.051499 8.018459 12.409065 -8366 0.046840 0.039860 5.969756 11.866572 -8367 0.077664 0.046834 10.967345 17.178923 -8368 0.182969 0.131015 7.992997 12.098152 -8369 0.155359 0.054727 7.315071 9.169378 -8370 0.087633 0.033788 8.021884 11.061909 -8371 0.034763 0.018264 12.323748 13.586949 -8372 0.054825 0.035301 9.087196 13.927143 -8373 0.057184 0.044127 8.167564 13.881803 -8374 0.080166 0.037315 9.245416 12.313050 -8375 0.043904 0.033191 7.280527 10.680000 -8376 0.079510 0.071643 11.824032 14.897758 -8377 0.242037 0.061445 10.075490 13.402239 -8378 0.238342 0.096016 10.342739 13.661221 -8379 0.078418 0.061517 11.686827 17.430963 -8380 0.095085 0.038427 12.884401 19.325323 -8381 0.038407 0.031494 7.928970 11.244720 -8382 0.067835 0.043401 9.023453 12.350530 -8383 0.079706 0.068746 9.852464 13.442549 -8384 0.055073 0.032907 10.018472 13.354979 -8385 0.046304 0.060049 10.742186 20.349850 -8386 0.093378 0.036385 12.096914 13.123336 -8387 0.074867 0.030156 11.795712 15.901756 -8388 0.077938 0.073095 11.275618 14.249766 -8389 0.043000 0.019708 7.782891 10.949643 -8390 0.052815 0.027575 14.101247 16.828446 -8391 0.079926 0.045818 6.034897 9.366990 -8392 0.112983 0.054992 9.839237 14.983316 -8393 0.075482 0.059003 11.280369 16.913759 -8394 0.053942 0.045686 10.148048 14.318155 -8395 0.066215 0.046347 10.816718 15.167734 -8396 0.088814 0.048648 8.770067 11.208179 -8397 0.091580 0.070371 15.226024 13.074353 -8398 0.098687 0.061327 7.317739 11.937615 -8399 0.062316 0.043910 9.139865 19.070339 -8400 0.037696 0.016486 7.349985 8.943544 -8401 0.076005 0.067264 15.051616 16.425418 -8402 0.055634 0.045885 12.327252 10.865782 -8403 0.054172 0.030769 13.289832 10.580296 -8404 0.063935 0.036943 11.521632 11.564029 -8405 0.098506 0.064631 9.953346 13.687541 -8406 0.069542 0.037414 7.284122 15.079587 -8407 0.084428 0.061245 7.793797 16.771430 -8408 0.071573 0.048869 9.931051 19.178028 -8409 0.052910 0.035621 13.286229 14.142950 -8410 0.072265 0.043753 15.448428 18.255031 -8411 0.081639 0.072880 8.730230 9.549167 -8412 0.081848 0.039342 9.138867 10.926338 -8413 0.065749 0.046926 7.107196 8.839780 -8414 0.060557 0.039937 11.646786 10.330527 -8415 0.069990 0.038444 12.148269 16.644867 -8416 0.096166 0.059408 10.352960 12.548105 -8417 0.074441 0.031460 8.677624 11.475933 -8418 0.075647 0.036472 8.113594 9.659114 -8419 0.074040 0.039711 6.754926 9.874034 -8420 0.062274 0.027742 6.214997 6.414220 -8421 0.150794 0.048853 8.961822 15.643269 -8422 0.091342 0.040862 12.746141 14.869959 -8423 0.023357 0.009726 7.278177 7.045098 -8424 0.075100 0.039687 16.599341 12.883829 -8425 0.082615 0.073857 11.051370 15.290940 -8426 0.060717 0.028774 9.006955 15.482522 -8427 0.219919 0.070458 12.002413 19.417126 -8428 0.079886 0.054088 13.470161 14.990239 -8429 0.079754 0.051633 10.280495 10.287419 -8430 0.051970 0.029755 7.441069 9.492411 -8431 0.082636 0.047946 10.516760 14.256685 -8432 0.095818 0.038363 9.829841 16.691800 -8433 0.064409 0.065967 10.412297 12.718738 -8434 0.093759 0.050817 11.452626 16.147767 -8435 0.055522 0.028719 8.858413 11.861814 -8436 0.064766 0.063007 9.227984 11.290251 -8437 0.062171 0.046904 9.603319 14.746941 -8438 0.061866 0.024542 10.828077 12.346336 -8439 0.064051 0.035332 11.574610 10.903039 -8440 0.078547 0.064089 10.048307 11.525379 -8441 0.071169 0.042042 7.673963 8.937258 -8442 0.060825 0.021068 9.377719 14.382391 -8443 0.201815 0.070524 12.038449 15.236288 -8444 0.056094 0.034341 8.347195 10.152198 -8445 0.057478 0.050014 7.653267 11.271320 -8446 0.049713 0.044744 9.781913 12.058114 -8447 0.080334 0.037948 12.710315 15.887856 -8448 0.061800 0.029561 6.618689 8.048912 -8449 0.090133 0.069672 7.392835 7.526963 -8450 0.080176 0.058710 8.035345 13.093207 -8451 0.080373 0.099506 10.279108 13.558057 -8452 0.047629 0.042876 7.540629 14.095848 -8453 0.099570 0.073626 10.000952 11.650731 -8454 0.076254 0.041655 10.530980 11.164523 -8455 0.054803 0.024706 10.063591 11.769813 -8456 0.064600 0.046823 9.828434 24.710072 -8457 0.064739 0.050278 7.455526 11.996287 -8458 0.089667 0.049690 13.179395 12.388288 -8459 0.279745 0.031815 10.776840 12.514006 -8460 0.098070 0.086905 7.958480 7.529929 -8461 0.106687 0.078823 11.646218 18.328828 -8462 0.188934 0.049369 9.348449 13.543940 -8463 0.059732 0.024784 13.328070 12.655697 -8464 0.059908 0.047625 8.024421 11.632118 -8465 0.160773 0.178270 12.635530 12.633821 -8466 0.058101 0.025560 6.682524 12.029117 -8467 0.062692 0.048569 10.797940 18.884071 -8468 0.077795 0.041947 9.182891 12.306804 -8469 0.052315 0.021198 6.825158 9.017288 -8470 0.058465 0.028674 6.864122 10.945074 -8471 0.063117 0.044583 10.632179 10.896553 -8472 0.261944 0.072219 9.441796 19.358465 -8473 0.087780 0.044822 10.416049 8.968014 -8474 0.066823 0.064723 6.946537 10.822889 -8475 0.088906 0.070947 7.805458 9.872886 -8476 0.083644 0.045863 8.466783 12.155606 -8477 0.042502 0.024438 6.822038 7.981665 -8478 0.062743 0.032012 15.332488 16.509175 -8479 0.049893 0.027471 9.326837 12.221040 -8480 0.088915 0.089508 7.078086 10.243445 -8481 0.073960 0.053067 12.506887 17.303400 -8482 0.249172 0.067061 11.235475 15.150509 -8483 0.081987 0.051828 6.859254 11.526959 -8484 0.087275 0.056664 8.217694 9.074082 -8485 0.052937 0.033833 11.062368 13.676844 -8486 0.053258 0.024254 4.945772 7.441683 -8487 0.070945 0.049143 12.123206 14.062461 -8488 0.074454 0.051540 7.291849 11.238821 -8489 0.075257 0.055121 7.908178 12.155205 -8490 0.079759 0.039487 11.537902 9.201049 -8491 0.219855 0.047515 11.438645 15.287378 -8492 0.093013 0.086874 11.010491 16.718809 -8493 0.056498 0.021965 8.449986 12.307499 -8494 0.071334 0.038564 9.413903 13.438947 -8495 0.093667 0.203569 9.684278 15.828359 -8496 0.055333 0.045743 13.864992 11.870487 -8497 0.069041 0.026391 9.579207 11.297454 -8498 0.082868 0.046408 7.260051 10.103614 -8499 0.044239 0.034453 11.213902 14.757710 -8500 0.046995 0.033129 5.575607 10.997333 -8501 0.249104 0.073833 13.302228 17.416838 -8502 0.084783 0.044806 13.786002 16.634528 -8503 0.086374 0.027587 6.616110 8.604591 -8504 0.086973 0.027516 12.306713 12.605502 -8505 0.295215 0.058009 15.052494 11.477326 -8506 0.090697 0.069845 8.278549 7.957370 -8507 0.058196 0.027462 8.722663 10.835166 -8508 0.090712 0.078419 11.921696 18.842205 -8509 0.065116 0.031449 9.443247 14.362197 -8510 0.092012 0.050368 11.975979 17.230227 -8511 0.074698 0.038921 9.988587 13.045579 -8512 0.095086 0.071328 9.159182 10.443030 -8513 0.092376 0.039047 9.320976 13.646011 -8514 0.061911 0.047235 13.610762 13.747518 -8515 0.087399 0.052490 10.555112 12.179004 -8516 0.152129 0.203154 14.455929 14.118949 -8517 0.232839 0.063590 8.348973 10.631635 -8518 0.050346 0.017591 8.154389 8.582869 -8519 0.093287 0.074727 8.012244 11.104385 -8520 0.051077 0.045659 13.230910 19.291283 -8521 0.085376 0.045889 7.343760 10.865144 -8522 0.057984 0.024455 7.613190 8.960646 -8523 0.063218 0.051853 6.035233 9.826598 -8524 0.089672 0.083935 18.939507 12.548695 -8525 0.092317 0.090623 11.105183 17.620606 -8526 0.078074 0.046835 13.072612 22.160759 -8527 0.081304 0.043748 14.670507 13.921779 -8528 0.069807 0.054720 8.626870 11.509742 -8529 0.037773 0.033313 9.541878 9.410504 -8530 0.174658 0.094688 12.567730 17.157944 -8531 0.087208 0.071739 12.048270 13.988597 -8532 0.066809 0.044873 10.079586 11.524334 -8533 0.075299 0.043051 8.320912 12.919832 -8534 0.276729 0.078580 9.003793 10.235118 -8535 0.080777 0.089387 9.385618 14.084843 -8536 0.144675 0.077780 14.046416 22.176317 -8537 0.061637 0.039359 9.573667 11.150179 -8538 0.069827 0.043591 7.452198 7.477277 -8539 0.056341 0.038673 5.718084 7.938076 -8540 0.150280 0.208093 7.719521 13.280163 -8541 0.077976 0.064677 11.768317 12.700704 -8542 0.056552 0.057790 17.851563 15.894962 -8543 0.136088 0.064561 8.411024 13.700676 -8544 0.056071 0.049924 14.676315 12.156334 -8545 0.246956 0.129641 14.359825 23.828810 -8546 0.046327 0.026033 8.049183 8.592941 -8547 0.072960 0.049929 9.334614 10.947793 -8548 0.054046 0.033480 7.797617 13.158237 -8549 0.099403 0.061632 12.613676 14.031261 -8550 0.086820 0.269633 8.822831 14.502499 -8551 0.055323 0.056225 5.716353 8.390963 -8552 0.054469 0.021245 9.801479 15.116610 -8553 0.063704 0.082059 8.741076 15.053825 -8554 0.050850 0.048813 12.388233 12.139489 -8555 0.051767 0.040507 11.773229 11.657734 -8556 0.233649 0.079831 10.500973 16.519781 -8557 0.070711 0.044550 7.456426 11.691531 -8558 0.066421 0.039512 20.547591 24.593640 -8559 0.065608 0.030344 13.615720 16.316665 -8560 0.061769 0.027911 6.120372 8.778620 -8561 0.060527 0.032720 7.907739 11.221809 -8562 0.081616 0.065724 7.496492 15.812237 -8563 0.057089 0.030082 6.004096 18.325023 -8564 0.076538 0.044937 8.885016 10.627646 -8565 0.091389 0.074602 8.003177 12.784613 -8566 0.056796 0.040681 6.818724 8.661405 -8567 0.077624 0.041147 8.066801 11.431981 -8568 0.068691 0.053930 13.844250 14.816522 -8569 0.059838 0.029663 8.605179 13.240040 -8570 0.061164 0.030690 13.879690 14.010440 -8571 0.275819 0.081906 15.827119 15.548786 -8572 0.068505 0.050783 12.641534 13.799394 -8573 0.077912 0.055199 12.949183 16.403993 -8574 0.071488 0.053253 10.755778 18.818432 -8575 0.077677 0.048199 7.287048 8.297648 -8576 0.068029 0.041443 6.103440 7.090436 -8577 0.097094 0.051178 9.539247 13.505287 -8578 0.068903 0.036228 11.438409 10.465573 -8579 0.060270 0.032301 6.534324 10.468072 -8580 0.068316 0.028531 6.738184 10.184082 -8581 0.046764 0.014523 8.987274 11.293734 -8582 0.071559 0.058399 12.332210 13.647171 -8583 0.083100 0.036765 8.494656 12.644943 -8584 0.054316 0.071317 7.331123 10.784732 -8585 0.078861 0.055400 14.867298 17.956853 -8586 0.171933 0.088995 9.650330 15.288175 -8587 0.051972 0.029733 8.269461 11.103300 -8588 0.052532 0.046730 10.700916 13.508400 -8589 0.061201 0.052552 10.298196 8.912166 -8590 0.074373 0.032370 7.471868 10.626087 -8591 0.043986 0.022505 7.735211 8.094899 -8592 0.053803 0.040977 8.540269 9.549006 -8593 0.069934 0.039887 10.447639 12.374630 -8594 0.086806 0.045865 12.799652 10.921941 -8595 0.081545 0.059838 12.437803 15.258271 -8596 0.086299 0.061533 11.412616 15.697399 -8597 0.054357 0.041285 10.652583 12.412344 -8598 0.072240 0.043751 12.483074 15.370214 -8599 0.079627 0.063583 10.858265 12.084384 -8600 0.079240 0.027764 4.599217 8.412479 -8601 0.038242 0.024251 10.444279 12.015535 -8602 0.066066 0.029405 7.406341 8.362706 -8603 0.284578 0.096210 13.253169 16.977277 -8604 0.059581 0.023435 11.348244 12.439869 -8605 0.215408 0.063389 11.913530 17.600038 -8606 0.082662 0.032416 10.146601 14.993910 -8607 0.078213 0.048533 9.572519 19.579127 -8608 0.046771 0.019033 13.584159 11.623031 -8609 0.062763 0.050925 8.051304 11.917997 -8610 0.063997 0.028560 9.185862 16.857927 -8611 0.084254 0.063805 9.125288 16.831812 -8612 0.075528 0.053504 10.386322 14.428764 -8613 0.074005 0.044422 14.789276 13.423809 -8614 0.099604 0.079215 10.000166 16.758142 -8615 0.087446 0.059173 5.631465 12.656424 -8616 0.076117 0.084865 8.519596 14.495536 -8617 0.056228 0.035580 12.573477 13.165533 -8618 0.062050 0.045524 10.224568 10.396655 -8619 0.099033 0.072313 11.339524 11.941610 -8620 0.099426 0.049029 5.847441 6.601811 -8621 0.053888 0.047412 8.553597 10.377590 -8622 0.194979 0.043293 12.881862 18.587456 -8623 0.051361 0.036958 7.803062 9.753193 -8624 0.062282 0.017324 9.891546 14.458088 -8625 0.083343 0.031892 9.352164 18.699502 -8626 0.040490 0.021897 9.084226 12.927300 -8627 0.060811 0.058063 9.806559 15.926893 -8628 0.283262 0.047664 15.017458 22.624846 -8629 0.060915 0.041511 13.032520 14.844548 -8630 0.092763 0.034427 13.196607 14.985802 -8631 0.054582 0.029230 5.821319 7.186284 -8632 0.072709 0.034337 8.588791 7.441845 -8633 0.057790 0.036895 11.060520 10.821898 -8634 0.036019 0.019686 8.022167 11.565093 -8635 0.142980 0.074810 15.165037 21.123740 -8636 0.051696 0.021524 9.104742 11.971916 -8637 0.069059 0.055166 12.373291 15.347317 -8638 0.070050 0.032749 9.780997 11.915597 -8639 0.075972 0.059046 7.513750 13.473865 -8640 0.096118 0.048165 9.647037 11.354001 -8641 0.068838 0.022143 7.425213 12.988176 -8642 0.064810 0.027838 9.280504 16.112647 -8643 0.044162 0.026004 8.159852 7.224296 -8644 0.069278 0.055568 10.381105 14.911565 -8645 0.076728 0.040267 10.918336 14.680500 -8646 0.080037 0.086257 12.172351 12.260564 -8647 0.059429 0.024987 7.496279 14.830727 -8648 0.068367 0.029177 10.503181 9.556502 -8649 0.244340 0.176942 12.925813 21.257260 -8650 0.090719 0.059390 12.832613 9.330143 -8651 0.061663 0.060693 8.392503 10.297204 -8652 0.092309 0.088520 10.773160 12.523475 -8653 0.057051 0.016942 9.100603 16.137471 -8654 0.252802 0.073250 9.558878 11.555735 -8655 0.051231 0.023729 7.538450 7.345001 -8656 0.098508 0.073095 9.072894 13.111545 -8657 0.047213 0.023051 9.430980 8.787370 -8658 0.046535 0.022428 14.608874 16.738717 -8659 0.060233 0.042623 19.722358 16.010546 -8660 0.074409 0.062202 9.997668 14.126094 -8661 0.063494 0.023624 7.533598 10.611835 -8662 0.052354 0.027807 7.434041 8.152795 -8663 0.065412 0.035151 7.483895 9.181832 -8664 0.051726 0.022773 9.959869 9.931703 -8665 0.070167 0.049494 9.132983 11.311660 -8666 0.053300 0.033745 8.412784 11.728505 -8667 0.059750 0.032879 8.735161 13.071678 -8668 0.095981 0.053177 8.488301 14.433040 -8669 0.061619 0.048848 11.883403 15.795305 -8670 0.069416 0.035093 10.221769 11.886279 -8671 0.111532 0.050615 9.956015 15.585781 -8672 0.064333 0.027723 11.379169 12.948179 -8673 0.063826 0.040292 11.166494 12.391975 -8674 0.030971 0.020643 9.327119 11.817525 -8675 0.077444 0.042025 14.658821 16.444867 -8676 0.069631 0.044951 10.944886 14.700790 -8677 0.078968 0.032566 8.906357 9.449080 -8678 0.067707 0.077632 7.967470 14.406969 -8679 0.060159 0.035714 8.899508 15.327582 -8680 0.074115 0.033301 6.288201 13.363828 -8681 0.051234 0.034352 10.421138 11.512794 -8682 0.056596 0.041264 10.162477 15.160483 -8683 0.082478 0.064583 8.654006 14.635979 -8684 0.067380 0.044717 12.703356 16.919424 -8685 0.045356 0.013793 8.355127 12.993751 -8686 0.081627 0.043071 7.387961 13.318421 -8687 0.089344 0.034780 8.900987 11.301239 -8688 0.048163 0.025953 8.325852 9.162745 -8689 0.182041 0.050174 6.467195 9.162748 -8690 0.235755 0.088357 17.640288 14.115400 -8691 0.148941 0.065520 11.993548 20.083991 -8692 0.187241 0.046743 11.660301 11.277144 -8693 0.078773 0.054710 11.064360 15.521573 -8694 0.069352 0.038594 7.752380 7.238326 -8695 0.070045 0.034075 8.849106 11.861053 -8696 0.059167 0.031844 12.876551 12.010131 -8697 0.072679 0.043755 6.595886 10.932032 -8698 0.098497 0.045831 10.810965 12.731986 -8699 0.065879 0.037231 12.137636 15.448063 -8700 0.080401 0.033831 12.466976 14.914908 -8701 0.049127 0.020583 5.765606 6.940702 -8702 0.089484 0.065096 8.460617 13.955126 -8703 0.094553 0.049600 9.348299 15.825372 -8704 0.093900 0.049338 14.405670 16.960120 -8705 0.050035 0.025297 10.581533 10.992631 -8706 0.118224 0.119068 12.031355 15.585584 -8707 0.106677 0.046991 10.705566 12.996066 -8708 0.072632 0.038636 11.801217 13.808035 -8709 0.065595 0.063420 8.436775 14.245121 -8710 0.090099 0.049756 15.514061 17.016970 -8711 0.078041 0.039112 8.384441 9.846195 -8712 0.068309 0.029950 7.517250 8.619294 -8713 0.237561 0.096532 10.179294 11.275185 -8714 0.064593 0.040304 11.666618 10.517641 -8715 0.059856 0.036881 6.782680 11.075642 -8716 0.092227 0.081254 10.047717 14.977133 -8717 0.074963 0.090470 15.427166 18.292172 -8718 0.056887 0.044456 6.963171 9.860340 -8719 0.254566 0.178929 12.996709 16.464062 -8720 0.053783 0.021487 9.533172 13.286226 -8721 0.066067 0.018858 8.697949 10.021853 -8722 0.083763 0.036348 18.005065 11.766413 -8723 0.063386 0.064954 12.147300 9.302634 -8724 0.057452 0.028870 6.646571 10.721577 -8725 0.052059 0.025047 9.095511 13.795711 -8726 0.042567 0.027028 6.966326 10.720729 -8727 0.095378 0.045468 6.183685 9.138951 -8728 0.176142 0.087796 11.290603 12.538454 -8729 0.090786 0.116565 9.181533 9.600895 -8730 0.055598 0.018125 8.845281 12.500673 -8731 0.094519 0.042463 13.016692 17.534475 -8732 0.190426 0.092012 10.147928 17.583017 -8733 0.056654 0.056701 9.650372 13.883389 -8734 0.055355 0.058486 12.121190 12.796378 -8735 0.059937 0.030024 8.793673 10.019210 -8736 0.058926 0.034078 9.229021 10.377186 -8737 0.074492 0.045626 8.406796 12.424044 -8738 0.073409 0.044519 11.700740 11.505795 -8739 0.056226 0.032376 7.885074 7.895974 -8740 0.165731 0.045930 11.424842 14.892790 -8741 0.070955 0.039677 6.259201 7.389885 -8742 0.067337 0.022647 8.498581 11.418556 -8743 0.096336 0.208567 9.343301 12.305769 -8744 0.068376 0.059227 8.066618 11.068661 -8745 0.053218 0.030560 12.508179 20.652301 -8746 0.067550 0.033195 10.045203 10.446343 -8747 0.089810 0.068952 6.767536 8.596150 -8748 0.084131 0.052908 15.763544 15.627182 -8749 0.060187 0.037808 8.023443 9.853268 -8750 0.082017 0.041470 8.644761 10.168148 -8751 0.066575 0.046538 9.785987 11.370609 -8752 0.064559 0.064989 11.588684 17.220910 -8753 0.054758 0.013633 5.856232 8.096516 -8754 0.063462 0.060204 10.037777 15.542309 -8755 0.078436 0.045279 7.220865 11.979853 -8756 0.052610 0.026124 10.248366 15.646054 -8757 0.090982 0.040770 9.559443 11.113959 -8758 0.052653 0.016496 6.415270 7.714136 -8759 0.074971 0.070270 7.602837 9.933160 -8760 0.078578 0.029820 11.889415 12.604681 -8761 0.190425 0.095229 11.787520 16.846424 -8762 0.086913 0.060999 13.079144 15.307468 -8763 0.061153 0.040834 6.635127 6.429560 -8764 0.066313 0.050714 8.016666 11.513791 -8765 0.064143 0.045425 10.677645 16.203897 -8766 0.099345 0.096147 10.876713 13.240274 -8767 0.054984 0.040910 10.289634 10.959652 -8768 0.048472 0.033530 11.120570 12.913219 -8769 0.053034 0.032442 11.109522 14.142330 -8770 0.059656 0.039486 6.778408 8.857855 -8771 0.060882 0.035106 7.534877 7.865804 -8772 0.093153 0.030768 7.956182 8.464224 -8773 0.070779 0.037434 10.064575 9.093770 -8774 0.048131 0.033656 9.102403 9.343080 -8775 0.069049 0.031406 11.269399 13.184199 -8776 0.081749 0.048677 8.470218 10.350465 -8777 0.089101 0.042034 7.230467 7.528854 -8778 0.061744 0.033361 11.660260 12.690465 -8779 0.038712 0.026925 7.899105 12.536026 -8780 0.069636 0.037131 9.568381 10.565410 -8781 0.044870 0.016970 8.433574 9.641246 -8782 0.078979 0.050638 11.082835 16.290680 -8783 0.074511 0.029938 12.267831 14.554452 -8784 0.140671 0.072555 13.667740 12.504779 -8785 0.077538 0.040344 10.268091 10.578859 -8786 0.065525 0.048849 7.940238 8.959903 -8787 0.080231 0.037842 12.556462 12.363298 -8788 0.045547 0.027419 9.697849 10.250856 -8789 0.079005 0.049114 8.014772 8.066075 -8790 0.073058 0.056465 8.024513 12.944991 -8791 0.065782 0.062914 7.979242 11.065982 -8792 0.075479 0.052917 10.787975 11.758556 -8793 0.067799 0.046760 6.392503 8.781786 -8794 0.039899 0.031346 6.275356 7.942054 -8795 0.061640 0.037792 6.980186 10.440806 -8796 0.071943 0.027366 11.496303 15.990260 -8797 0.082528 0.051207 9.759987 12.155043 -8798 0.093824 0.066977 11.464188 14.656231 -8799 0.065086 0.017821 4.680519 7.499897 -8800 0.063119 0.041578 11.430665 15.445500 -8801 0.099632 0.077743 15.344252 14.593912 -8802 0.073688 0.045543 14.316899 15.490699 -8803 0.064119 0.043611 8.697030 13.925615 -8804 0.092249 0.046832 7.552088 11.973052 -8805 0.294889 0.048217 5.593508 12.528203 -8806 0.069552 0.044732 9.971620 9.867710 -8807 0.053137 0.040197 10.491031 15.449766 -8808 0.071654 0.044756 11.954840 15.909694 -8809 0.044624 0.019880 8.795498 9.256913 -8810 0.069660 0.077711 10.112636 14.277485 -8811 0.062506 0.030889 8.868305 11.713619 -8812 0.072492 0.043433 9.576435 11.998017 -8813 0.170065 0.042729 9.689366 18.331138 -8814 0.065840 0.038463 12.762588 8.866178 -8815 0.124474 0.062962 8.505301 12.799860 -8816 0.074934 0.031061 15.701079 14.375372 -8817 0.061740 0.024427 12.201647 11.982158 -8818 0.088337 0.070596 9.402079 10.382554 -8819 0.070289 0.035300 6.407773 7.405035 -8820 0.108116 0.079302 11.680785 11.764585 -8821 0.078038 0.038525 8.233130 9.174191 -8822 0.075873 0.044447 11.563644 13.729143 -8823 0.090910 0.045853 9.984731 7.872360 -8824 0.095845 0.064108 9.099022 15.469370 -8825 0.082029 0.037904 8.299187 9.487440 -8826 0.066335 0.035843 9.308575 11.199606 -8827 0.067523 0.054795 11.336251 14.173580 -8828 0.088994 0.037787 9.450154 15.832568 -8829 0.056467 0.055375 10.869607 14.567690 -8830 0.083537 0.084208 10.266919 18.167412 -8831 0.071965 0.041091 9.228112 9.866666 -8832 0.067929 0.041940 10.202721 10.549203 -8833 0.082783 0.053663 7.503822 13.065465 -8834 0.068616 0.034021 8.763835 11.579089 -8835 0.098123 0.050506 12.501784 17.259665 -8836 0.046571 0.028369 10.812620 12.157114 -8837 0.058004 0.032483 7.818225 11.531855 -8838 0.062687 0.062464 10.091783 13.497216 -8839 0.053731 0.038240 7.766082 9.124903 -8840 0.265306 0.076777 13.591860 22.201706 -8841 0.058946 0.020735 6.279337 7.749111 -8842 0.095554 0.039710 7.143580 11.259176 -8843 0.068136 0.061728 7.343091 7.682036 -8844 0.057986 0.031273 15.866569 13.149749 -8845 0.098149 0.066612 7.329266 15.856667 -8846 0.061452 0.037997 10.744032 13.254225 -8847 0.074912 0.046947 9.695634 9.130416 -8848 0.214108 0.071701 13.477035 14.714995 -8849 0.095457 0.042835 12.117407 17.283846 -8850 0.085906 0.043980 9.533470 15.729962 -8851 0.058750 0.036694 10.433411 11.259127 -8852 0.081961 0.050715 11.288576 10.025974 -8853 0.097937 0.051672 14.535341 9.133042 -8854 0.090541 0.044599 16.371620 19.132159 -8855 0.092174 0.062990 9.410223 16.456453 -8856 0.095957 0.058229 8.539099 16.083434 -8857 0.055002 0.029833 9.069123 12.752297 -8858 0.069017 0.070127 9.985247 18.435898 -8859 0.087653 0.055292 10.245904 14.861108 -8860 0.060819 0.033465 8.768491 12.808210 -8861 0.059134 0.042137 8.726203 11.035159 -8862 0.080371 0.033868 11.114679 16.545385 -8863 0.056030 0.038914 12.173638 11.670939 -8864 0.264302 0.052865 11.605234 13.792016 -8865 0.086557 0.053616 10.421580 12.340852 -8866 0.068898 0.034848 9.397213 12.250324 -8867 0.067344 0.037212 7.394720 12.588345 -8868 0.050344 0.048858 9.429755 14.671794 -8869 0.200532 0.093684 17.047345 16.055075 -8870 0.190837 0.058098 12.526248 13.754136 -8871 0.272952 0.065843 12.227212 15.254597 -8872 0.077906 0.044273 5.834440 8.142448 -8873 0.094581 0.051074 13.409246 14.456650 -8874 0.071060 0.040662 11.203988 15.955913 -8875 0.056807 0.027524 9.750776 9.702686 -8876 0.084567 0.034452 11.103503 8.775131 -8877 0.065918 0.037212 6.184462 11.249502 -8878 0.081042 0.059401 7.167378 13.296954 -8879 0.095760 0.066237 10.677738 13.329390 -8880 0.076552 0.068606 8.939029 14.011127 -8881 0.074390 0.035417 11.205370 12.511901 -8882 0.101899 0.041818 13.996023 18.170573 -8883 0.074946 0.043662 15.422494 15.189289 -8884 0.096516 0.060336 12.907228 20.176171 -8885 0.060919 0.023565 8.439554 13.546337 -8886 0.063174 0.076693 10.585350 16.356130 -8887 0.053559 0.031399 11.503326 12.829343 -8888 0.064862 0.032076 9.080027 8.453991 -8889 0.056327 0.030575 11.789614 11.415009 -8890 0.098960 0.084597 13.691841 15.479413 -8891 0.259461 0.071767 13.792295 10.048111 -8892 0.099087 0.067071 10.885641 12.201308 -8893 0.064061 0.040384 11.302490 10.779549 -8894 0.067994 0.068139 9.509679 11.792374 -8895 0.063593 0.050150 8.709911 12.899827 -8896 0.077480 0.046475 8.684119 11.065904 -8897 0.054027 0.069816 8.038174 16.776204 -8898 0.084738 0.078983 10.129892 15.694827 -8899 0.062674 0.043843 11.037098 10.208469 -8900 0.064102 0.039169 9.108732 8.898932 -8901 0.291042 0.079308 9.271857 9.280871 -8902 0.269396 0.052973 15.776808 14.388314 -8903 0.088021 0.068150 7.202525 13.555410 -8904 0.057693 0.056858 7.229953 9.729656 -8905 0.086000 0.031297 14.877682 13.247548 -8906 0.074017 0.040102 8.507313 9.537067 -8907 0.070364 0.031546 7.097896 8.911060 -8908 0.285508 0.059866 9.550926 11.595415 -8909 0.093294 0.050077 9.625847 13.953599 -8910 0.067779 0.037282 10.700662 15.654939 -8911 0.084074 0.054751 9.880560 9.358162 -8912 0.081721 0.059215 8.568390 11.142247 -8913 0.082979 0.025234 9.059013 12.228961 -8914 0.057737 0.025312 8.435482 13.196120 -8915 0.096140 0.192367 17.193480 13.693043 -8916 0.099246 0.050051 11.295536 16.212352 -8917 0.049541 0.024305 9.089911 10.454830 -8918 0.055650 0.035554 8.355965 14.506686 -8919 0.077500 0.030021 9.225939 15.621136 -8920 0.079849 0.035498 6.875326 12.775860 -8921 0.268407 0.070177 11.292241 26.781304 -8922 0.074714 0.065738 11.356053 18.091722 -8923 0.083877 0.057881 11.611239 16.655020 -8924 0.058026 0.048863 10.440026 13.739718 -8925 0.060279 0.029903 8.615231 9.255772 -8926 0.075678 0.037343 14.233676 19.306635 -8927 0.083142 0.077302 9.554859 13.726537 -8928 0.065239 0.031359 9.644422 9.578262 -8929 0.070710 0.033455 10.370387 11.898294 -8930 0.066451 0.051015 17.490959 21.418206 -8931 0.075302 0.042707 11.650875 18.416002 -8932 0.086335 0.084474 6.726241 10.652872 -8933 0.091073 0.066008 16.611679 20.134687 -8934 0.060401 0.024716 9.057770 8.862806 -8935 0.094044 0.049554 8.805436 9.999001 -8936 0.108342 0.063483 7.429782 9.073228 -8937 0.129389 0.069015 12.225947 13.321744 -8938 0.097111 0.044660 17.997591 19.477452 -8939 0.086363 0.054208 16.140043 16.201791 -8940 0.077129 0.080656 13.804359 13.207532 -8941 0.099201 0.085957 8.901794 12.544509 -8942 0.063860 0.037763 11.827980 14.546326 -8943 0.063227 0.039003 7.091159 11.061046 -8944 0.058781 0.040166 8.472210 11.406637 -8945 0.067414 0.031728 10.162139 8.382011 -8946 0.078272 0.050873 9.273452 8.569802 -8947 0.076981 0.048518 10.075668 15.552199 -8948 0.099583 0.055386 12.558381 11.616130 -8949 0.059527 0.030624 9.521687 16.026403 -8950 0.068996 0.033777 10.005718 15.719293 -8951 0.075630 0.048689 11.462281 14.459231 -8952 0.057855 0.027126 8.311040 12.753182 -8953 0.049966 0.028415 6.838143 7.507541 -8954 0.092498 0.087854 11.340295 13.754939 -8955 0.080243 0.037341 8.766798 12.677972 -8956 0.082889 0.082231 12.177414 13.577090 -8957 0.063128 0.031981 9.304048 11.836083 -8958 0.072309 0.039132 6.008521 8.355014 -8959 0.044742 0.036088 11.719394 15.248911 -8960 0.067947 0.038442 7.376865 12.982441 -8961 0.102692 0.096392 7.829353 13.578014 -8962 0.075268 0.049830 7.747055 7.657364 -8963 0.090371 0.055199 7.014997 15.023570 -8964 0.070588 0.045526 13.393474 14.312031 -8965 0.243590 0.044651 9.219997 9.636517 -8966 0.060332 0.033982 7.047230 8.681635 -8967 0.053175 0.025260 7.614804 8.962389 -8968 0.053642 0.044346 9.109240 10.076325 -8969 0.065120 0.056043 8.533902 15.687593 -8970 0.091758 0.045137 8.467462 14.863073 -8971 0.086892 0.068555 9.894338 16.890197 -8972 0.065815 0.084947 11.055946 14.298857 -8973 0.251319 0.096086 11.859839 13.075878 -8974 0.054694 0.015256 10.295069 14.549066 -8975 0.153050 0.142766 10.519821 13.805963 -8976 0.069883 0.036836 12.526900 12.289510 -8977 0.089868 0.070429 8.665809 15.507933 -8978 0.158828 0.041652 9.542544 17.795682 -8979 0.085947 0.052467 11.193765 21.982244 -8980 0.074401 0.064287 16.890569 17.460354 -8981 0.092695 0.081902 11.389284 12.052670 -8982 0.066029 0.065240 7.850222 12.308356 -8983 0.149986 0.052629 8.555549 10.417803 -8984 0.054553 0.036069 13.141134 17.446443 -8985 0.065258 0.033074 8.851902 10.630665 -8986 0.080922 0.043902 6.669997 8.173128 -8987 0.056587 0.033032 6.873840 10.136137 -8988 0.074428 0.053242 9.687011 15.736132 -8989 0.048386 0.030242 8.973762 14.363526 -8990 0.072879 0.051662 8.716342 11.621152 -8991 0.062999 0.040816 6.283770 11.429916 -8992 0.098661 0.056845 9.408928 12.821608 -8993 0.086734 0.065203 12.104296 13.548171 -8994 0.072049 0.055301 10.056556 14.525009 -8995 0.047663 0.021770 5.282660 7.605929 -8996 0.081783 0.043162 7.563595 9.646036 -8997 0.297110 0.071442 11.919685 13.729165 -8998 0.089677 0.057174 13.980708 16.216476 -8999 0.066439 0.042537 7.842398 11.953589 -9000 0.076417 0.058939 8.088476 11.880980 -9001 0.188260 0.061686 13.238504 15.111243 -9002 0.080314 0.053411 8.476018 13.591348 -9003 0.077036 0.056267 9.495437 14.770307 -9004 0.089437 0.053426 9.821934 12.480171 -9005 0.068682 0.056298 8.808638 8.922560 -9006 0.178210 0.083130 14.219957 13.728988 -9007 0.053678 0.038752 8.488179 11.170396 -9008 0.081591 0.039518 7.771452 10.268796 -9009 0.092877 0.054558 7.308940 8.671739 -9010 0.059913 0.050165 12.077069 11.030892 -9011 0.223861 0.035369 9.106437 15.983313 -9012 0.134334 0.046711 7.214404 13.397937 -9013 0.066780 0.025505 8.559234 12.677833 -9014 0.052985 0.044337 8.361811 11.474747 -9015 0.076571 0.034396 10.764707 14.483055 -9016 0.084761 0.046238 9.520752 12.983861 -9017 0.086601 0.048093 7.793295 11.168643 -9018 0.095986 0.060016 10.584761 14.654947 -9019 0.073345 0.066147 11.253980 9.962927 -9020 0.040686 0.023896 6.364544 10.892371 -9021 0.085889 0.033951 9.170187 11.366758 -9022 0.076048 0.052804 7.996930 11.409079 -9023 0.045603 0.023241 10.443300 9.258581 -9024 0.077052 0.032916 10.509518 11.026639 -9025 0.045206 0.038492 8.992962 10.591115 -9026 0.096248 0.068447 11.915991 12.613756 -9027 0.094509 0.068366 7.647301 10.977158 -9028 0.075469 0.063980 6.734568 8.737852 -9029 0.050609 0.025119 6.973779 9.439581 -9030 0.062277 0.025947 10.102445 9.831826 -9031 0.052404 0.021086 11.572276 16.852601 -9032 0.063325 0.034426 10.104974 13.501808 -9033 0.285443 0.085227 7.932199 12.937786 -9034 0.077584 0.054310 7.722237 13.627483 -9035 0.267777 0.095331 18.204386 18.496815 -9036 0.295199 0.078527 15.241892 18.328632 -9037 0.085215 0.047986 13.346762 12.307523 -9038 0.070193 0.026696 8.524481 11.563240 -9039 0.073933 0.052196 7.289390 9.857764 -9040 0.048668 0.024186 10.750277 10.933939 -9041 0.049744 0.021907 7.926006 11.230260 -9042 0.080244 0.029107 10.934935 19.638992 -9043 0.163116 0.059870 9.640140 13.493758 -9044 0.068539 0.031821 13.582245 14.954132 -9045 0.084308 0.046949 10.093635 7.905629 -9046 0.174986 0.041622 7.089562 13.214165 -9047 0.048239 0.033854 10.110917 11.850288 -9048 0.087006 0.042522 10.751524 10.815963 -9049 0.090222 0.073377 14.010830 24.567789 -9050 0.065755 0.036887 8.479855 12.900312 -9051 0.066821 0.057659 7.826754 11.285474 -9052 0.204317 0.051957 6.929386 11.979939 -9053 0.084721 0.051013 6.440431 13.097503 -9054 0.062121 0.041253 8.280555 10.086787 -9055 0.089515 0.053848 11.048107 16.446992 -9056 0.039494 0.032307 7.790942 9.638201 -9057 0.071540 0.041590 10.439870 14.347264 -9058 0.164019 0.046785 11.881603 16.159073 -9059 0.073344 0.033296 7.337632 9.168527 -9060 0.152206 0.092819 16.709825 21.691871 -9061 0.079106 0.072721 10.461763 14.333340 -9062 0.168628 0.064349 10.479434 15.254155 -9063 0.067897 0.029911 7.957738 11.691997 -9064 0.090655 0.054986 9.711518 10.369982 -9065 0.085275 0.044622 8.347841 13.634617 -9066 0.088316 0.043773 11.556945 15.836116 -9067 0.098825 0.065075 9.868473 12.356443 -9068 0.095888 0.046483 14.917730 15.026284 -9069 0.045526 0.035662 11.378812 18.341376 -9070 0.099737 0.062776 13.570155 16.599331 -9071 0.060510 0.032900 8.951147 13.470180 -9072 0.084588 0.034691 10.570316 9.449827 -9073 0.095673 0.058958 12.034531 16.579354 -9074 0.074550 0.049608 7.026342 14.263382 -9075 0.099722 0.049520 10.306970 8.762271 -9076 0.058656 0.036840 11.087477 18.343065 -9077 0.202996 0.038306 9.118384 15.496479 -9078 0.071361 0.041169 9.364125 9.888005 -9079 0.243665 0.063157 7.931334 16.096527 -9080 0.050737 0.032184 9.508736 9.733429 -9081 0.087181 0.053934 5.622296 8.872317 -9082 0.077808 0.054422 8.774363 10.120869 -9083 0.041441 0.026613 7.582934 10.838183 -9084 0.056050 0.028954 9.799596 13.194297 -9085 0.064465 0.029422 8.678386 11.103018 -9086 0.059578 0.032751 12.480514 7.633528 -9087 0.084071 0.059159 8.801456 11.839167 -9088 0.053205 0.039687 12.926755 11.443352 -9089 0.070171 0.032343 7.964751 8.024155 -9090 0.080188 0.037248 10.446884 11.093203 -9091 0.171506 0.290739 14.267026 16.176302 -9092 0.068662 0.034862 8.959846 10.332405 -9093 0.081958 0.052488 10.833579 13.998868 -9094 0.065868 0.050273 9.601932 13.473562 -9095 0.084271 0.040890 8.504566 11.010194 -9096 0.073194 0.037496 13.520239 15.502674 -9097 0.077326 0.079462 11.478077 17.572826 -9098 0.095116 0.033453 10.364141 13.778217 -9099 0.046264 0.028703 7.852451 10.759016 -9100 0.074382 0.083040 6.518694 10.266572 -9101 0.048344 0.026429 9.793842 10.140460 -9102 0.080320 0.037690 14.738296 12.097882 -9103 0.074040 0.054434 8.847125 9.200812 -9104 0.061621 0.025431 8.896123 10.084083 -9105 0.063215 0.036399 8.438932 12.200639 -9106 0.070794 0.044735 14.072908 14.482839 -9107 0.057290 0.049150 8.719283 9.388513 -9108 0.046203 0.057175 9.248821 9.252103 -9109 0.076344 0.039345 11.532665 11.724395 -9110 0.072021 0.038928 6.568464 7.877383 -9111 0.087824 0.036905 8.607250 10.563542 -9112 0.062848 0.040058 7.261451 11.112776 -9113 0.041806 0.033476 10.343871 11.827833 -9114 0.097554 0.064279 12.745561 13.786004 -9115 0.047001 0.029247 11.251193 13.026074 -9116 0.074013 0.053050 8.426070 12.194575 -9117 0.082491 0.059323 9.463831 10.273095 -9118 0.080700 0.040564 9.818307 12.278159 -9119 0.072544 0.028097 12.749726 16.025699 -9120 0.074136 0.032182 10.325537 17.897131 -9121 0.063509 0.072888 6.943815 9.677904 -9122 0.080982 0.035523 7.015696 12.069666 -9123 0.068647 0.038293 12.172463 18.001980 -9124 0.082234 0.034993 14.644631 22.499883 -9125 0.076014 0.025352 8.112209 12.090470 -9126 0.076017 0.030547 6.674338 10.706111 -9127 0.069900 0.042101 11.019410 10.351220 -9128 0.068710 0.038927 7.227901 11.580658 -9129 0.097869 0.069619 12.063996 14.540934 -9130 0.085710 0.051133 10.223212 11.947074 -9131 0.085927 0.050527 7.145436 12.352964 -9132 0.051123 0.031103 7.659880 8.969882 -9133 0.044035 0.033747 9.458041 12.418513 -9134 0.075587 0.040769 10.468359 16.292086 -9135 0.058036 0.044004 7.735921 14.323369 -9136 0.030126 0.016528 7.114805 9.984273 -9137 0.084330 0.046306 12.847140 12.183638 -9138 0.040843 0.026666 9.349868 10.927011 -9139 0.056283 0.053145 9.987335 10.613515 -9140 0.055733 0.035622 12.054887 12.538724 -9141 0.087602 0.085869 10.310392 14.160433 -9142 0.071878 0.045880 10.980888 12.735866 -9143 0.074240 0.040611 6.046525 14.180810 -9144 0.051898 0.020701 6.941091 17.631808 -9145 0.067143 0.041411 11.881312 16.175539 -9146 0.042376 0.019967 7.764357 11.032575 -9147 0.133113 0.084964 9.261885 9.625536 -9148 0.057927 0.052327 10.887975 14.957583 -9149 0.089355 0.052224 9.297894 11.905458 -9150 0.047423 0.027423 10.465657 11.620188 -9151 0.071696 0.043858 10.697200 9.532136 -9152 0.053220 0.032396 15.257550 13.779881 -9153 0.060941 0.039413 6.140920 11.794721 -9154 0.090596 0.066558 8.146568 10.774211 -9155 0.089086 0.040202 15.261416 17.343126 -9156 0.048601 0.047662 15.095874 18.368764 -9157 0.294278 0.129278 8.250317 10.463374 -9158 0.080207 0.044750 12.513085 12.519534 -9159 0.060398 0.029904 10.632968 12.379027 -9160 0.076792 0.043872 7.723684 11.038065 -9161 0.051601 0.038473 8.357476 9.046239 -9162 0.062133 0.038704 15.435126 12.930700 -9163 0.064474 0.032095 8.622719 9.792073 -9164 0.050177 0.029777 10.873714 14.742027 -9165 0.046503 0.035698 11.296991 12.600084 -9166 0.056462 0.041731 13.011245 14.333646 -9167 0.077006 0.076837 6.785127 10.185312 -9168 0.066530 0.042781 7.862357 9.392051 -9169 0.053367 0.036247 7.871326 9.242529 -9170 0.089569 0.034948 11.627281 13.388750 -9171 0.189337 0.056407 10.524386 11.460202 -9172 0.074114 0.032836 7.608192 11.567938 -9173 0.082473 0.049203 11.254492 16.571131 -9174 0.076316 0.032183 9.344583 11.767813 -9175 0.094483 0.048710 10.089559 14.131047 -9176 0.184131 0.043205 14.146178 15.616038 -9177 0.081099 0.076527 8.948237 9.981169 -9178 0.050947 0.024012 5.891112 9.455509 -9179 0.063486 0.033353 8.304633 14.443946 -9180 0.052552 0.027024 4.467556 8.901662 -9181 0.080753 0.037878 15.095181 14.262124 -9182 0.085294 0.029543 10.134444 13.044133 -9183 0.114171 0.046767 10.383351 11.742497 -9184 0.088087 0.027764 7.307367 11.058537 -9185 0.077211 0.044957 7.893247 10.340213 -9186 0.061214 0.046652 12.596601 18.035283 -9187 0.070983 0.044567 6.695543 11.085818 -9188 0.177367 0.090843 12.784344 17.960271 -9189 0.066978 0.043450 7.440634 15.544291 -9190 0.063742 0.048875 14.923218 17.577883 -9191 0.057361 0.045003 9.005183 10.638117 -9192 0.064554 0.025318 8.622545 9.677087 -9193 0.061778 0.032553 10.568033 13.801736 -9194 0.072493 0.047702 6.896683 10.076070 -9195 0.073432 0.040070 7.826152 10.852943 -9196 0.207421 0.089816 13.679629 16.752438 -9197 0.068512 0.051568 10.793084 10.468945 -9198 0.041766 0.027093 5.897317 8.179994 -9199 0.055911 0.044226 9.282596 14.464841 -9200 0.081433 0.052789 9.151117 13.197169 -9201 0.229964 0.036701 11.013146 16.015500 -9202 0.049077 0.036782 7.167900 11.709043 -9203 0.068481 0.057684 9.837876 17.067926 -9204 0.093822 0.037060 10.860147 14.636883 -9205 0.090110 0.036980 9.389344 11.286699 -9206 0.070008 0.055576 6.633063 9.509309 -9207 0.071907 0.034210 13.879579 14.383602 -9208 0.071082 0.055074 14.962883 18.427918 -9209 0.125084 0.079666 11.003793 12.806006 -9210 0.052981 0.020947 10.718843 15.155680 -9211 0.049997 0.020023 6.392287 11.029218 -9212 0.061766 0.027791 7.829381 9.386266 -9213 0.066662 0.036507 7.800192 10.463862 -9214 0.088495 0.047588 8.638588 11.573941 -9215 0.076914 0.044804 8.157757 15.924327 -9216 0.087600 0.042567 7.151597 6.918866 -9217 0.060901 0.055337 8.567738 11.283385 -9218 0.070777 0.064769 8.554673 11.676986 -9219 0.068871 0.033835 10.244455 9.708808 -9220 0.096325 0.040160 11.083829 13.438463 -9221 0.215968 0.056107 13.614223 13.723707 -9222 0.079066 0.053803 9.739230 9.941289 -9223 0.080325 0.052830 10.679155 12.998452 -9224 0.044757 0.022089 6.446474 13.483892 -9225 0.085401 0.046545 6.996769 12.326052 -9226 0.163880 0.180699 11.074179 10.495505 -9227 0.055114 0.031356 10.740761 12.363648 -9228 0.040866 0.017304 6.279798 9.118557 -9229 0.079528 0.044137 7.811045 13.978344 -9230 0.067081 0.073868 10.646880 16.276577 -9231 0.062305 0.044677 9.536217 17.909894 -9232 0.065151 0.058199 12.322911 11.951220 -9233 0.096585 0.063288 13.623919 17.346626 -9234 0.068615 0.039729 5.484388 8.446283 -9235 0.097136 0.037593 8.362488 11.474350 -9236 0.057485 0.039522 8.242371 9.334341 -9237 0.053453 0.021822 6.927529 8.862847 -9238 0.070199 0.048513 5.743084 9.987103 -9239 0.063066 0.052500 8.684597 10.018258 -9240 0.142452 0.071494 8.559092 11.986140 -9241 0.055463 0.033770 8.269522 13.123062 -9242 0.214561 0.073846 14.886855 18.576719 -9243 0.060719 0.047268 7.881218 10.943177 -9244 0.079430 0.049022 6.804699 11.326896 -9245 0.076198 0.044747 9.255297 16.916779 -9246 0.099321 0.034673 7.834498 11.459067 -9247 0.095692 0.073608 9.918489 14.775485 -9248 0.085525 0.056000 13.974928 14.013193 -9249 0.089118 0.041993 16.202702 13.385891 -9250 0.040225 0.025116 5.898731 8.809487 -9251 0.209303 0.072882 12.557944 18.679193 -9252 0.063921 0.034954 7.874255 14.568758 -9253 0.065280 0.055905 14.439468 23.065925 -9254 0.285143 0.073971 15.015642 23.916429 -9255 0.073342 0.084833 10.352511 10.020835 -9256 0.081923 0.027412 10.392021 11.285586 -9257 0.051069 0.024373 7.386528 12.711565 -9258 0.081239 0.048947 6.625919 7.862519 -9259 0.084028 0.049689 7.996209 10.274889 -9260 0.048776 0.036447 7.251372 9.892532 -9261 0.082652 0.050229 9.568439 11.454601 -9262 0.084259 0.066923 9.890015 20.086334 -9263 0.064167 0.056577 10.610542 11.502988 -9264 0.267855 0.057556 9.710050 17.844223 -9265 0.075298 0.040663 7.126859 8.358381 -9266 0.051988 0.034360 8.625495 12.038378 -9267 0.057269 0.014241 7.157222 9.642818 -9268 0.267692 0.058029 10.157968 13.521036 -9269 0.080811 0.032239 8.776121 14.669053 -9270 0.078339 0.045000 15.882650 21.627189 -9271 0.061261 0.049858 10.409900 9.818403 -9272 0.095748 0.059651 9.248729 10.509724 -9273 0.176329 0.089006 15.093078 15.548046 -9274 0.177371 0.043757 11.316843 10.736187 -9275 0.048324 0.025335 6.086259 8.933023 -9276 0.178404 0.279505 9.841456 13.787642 -9277 0.055348 0.025964 9.592955 12.200119 -9278 0.281130 0.049089 16.997879 22.967623 -9279 0.238249 0.058559 7.588745 7.277396 -9280 0.075782 0.050841 8.044048 14.868040 -9281 0.056491 0.061175 8.043730 13.976859 -9282 0.057212 0.031925 9.003243 12.261735 -9283 0.073095 0.070948 7.763572 13.179777 -9284 0.157970 0.064522 10.078903 12.389344 -9285 0.080294 0.051173 11.234219 16.473580 -9286 0.062960 0.026525 9.514034 10.032130 -9287 0.057870 0.045374 9.264396 12.817187 -9288 0.044977 0.046628 14.262210 15.252636 -9289 0.058755 0.034199 8.575500 12.727130 -9290 0.091229 0.060327 9.225004 13.411199 -9291 0.068595 0.059735 7.356987 9.688509 -9292 0.049211 0.027562 8.367281 8.718253 -9293 0.059860 0.028802 7.848627 11.026826 -9294 0.145985 0.054019 6.681292 8.382370 -9295 0.074584 0.036890 7.822883 8.708379 -9296 0.045996 0.021454 5.723059 6.564897 -9297 0.154512 0.047432 6.755313 8.636002 -9298 0.081000 0.059653 9.760240 15.975280 -9299 0.092078 0.069845 13.037198 16.511600 -9300 0.067182 0.045134 10.949878 15.186783 -9301 0.054251 0.083852 9.058205 11.441704 -9302 0.058850 0.036461 10.592036 13.937842 -9303 0.083099 0.061288 12.399099 20.315890 -9304 0.084099 0.037602 9.127224 10.742375 -9305 0.086186 0.036084 6.467014 9.764480 -9306 0.067350 0.048042 10.811134 9.042674 -9307 0.060523 0.038301 9.390761 12.452023 -9308 0.058509 0.032476 9.015832 13.563832 -9309 0.083465 0.061104 7.976436 11.383454 -9310 0.058562 0.036425 8.336439 18.857718 -9311 0.085398 0.055249 11.160238 19.908472 -9312 0.056792 0.032839 9.192070 12.175684 -9313 0.072063 0.030154 10.858018 11.327873 -9314 0.045388 0.021583 9.329606 13.241451 -9315 0.069472 0.031192 6.514382 11.835254 -9316 0.262361 0.082416 13.011729 17.111286 -9317 0.054696 0.042099 9.107541 10.173910 -9318 0.067775 0.045140 10.957525 13.550424 -9319 0.058291 0.029510 9.821963 8.987813 -9320 0.049237 0.036950 7.146717 12.433816 -9321 0.070188 0.037463 6.330650 9.556770 -9322 0.057561 0.035519 8.936443 13.449926 -9323 0.062871 0.055251 12.637014 11.524413 -9324 0.058108 0.029025 9.870488 12.413530 -9325 0.049178 0.028877 13.352353 14.773040 -9326 0.090221 0.067646 8.755831 9.768306 -9327 0.062493 0.034261 8.082975 9.654785 -9328 0.096712 0.042617 9.536520 13.000752 -9329 0.188362 0.085103 7.920681 11.597990 -9330 0.086872 0.039835 7.036071 6.744387 -9331 0.061394 0.033561 9.915676 9.451755 -9332 0.055417 0.034353 15.367883 16.502616 -9333 0.078918 0.062561 6.955661 10.528530 -9334 0.091978 0.051994 12.990336 14.297918 -9335 0.070816 0.043417 6.745828 16.790932 -9336 0.073159 0.032273 10.087353 14.358090 -9337 0.060565 0.030089 9.816551 8.887446 -9338 0.085065 0.039106 9.911328 13.944679 -9339 0.054936 0.022474 8.468265 11.868120 -9340 0.061493 0.053208 10.343842 10.918432 -9341 0.082817 0.042407 15.411393 16.021162 -9342 0.081958 0.044957 11.643374 11.245422 -9343 0.165860 0.060010 9.906272 14.528766 -9344 0.056737 0.053230 8.416041 11.409996 -9345 0.178580 0.056203 10.099409 13.412462 -9346 0.063341 0.054446 17.124940 14.321552 -9347 0.061812 0.029987 7.641679 12.045421 -9348 0.124365 0.097496 8.536502 11.336880 -9349 0.053852 0.029572 8.790050 14.292745 -9350 0.184110 0.048157 10.981604 14.987572 -9351 0.056602 0.040396 8.424790 16.730105 -9352 0.042521 0.022846 10.404505 11.218590 -9353 0.050014 0.029074 14.522937 12.698431 -9354 0.109446 0.047364 10.310587 11.168233 -9355 0.071489 0.064807 6.015330 9.920868 -9356 0.080546 0.048523 7.544120 9.950008 -9357 0.051151 0.045564 10.586613 11.343441 -9358 0.210787 0.290617 10.537146 12.303201 -9359 0.076730 0.057889 12.379560 14.580588 -9360 0.069731 0.049484 8.956646 12.997577 -9361 0.092246 0.097018 10.590946 14.494601 -9362 0.073780 0.035671 10.858125 11.777715 -9363 0.078825 0.069780 5.893212 10.100991 -9364 0.059488 0.058258 6.490276 9.103545 -9365 0.051307 0.042903 12.467876 12.566761 -9366 0.081616 0.041007 5.691067 9.132435 -9367 0.097849 0.043773 8.655186 9.531968 -9368 0.037725 0.015485 9.014376 10.145383 -9369 0.226541 0.084787 12.592872 19.727133 -9370 0.041287 0.034610 10.242070 10.395919 -9371 0.077816 0.070372 7.771483 12.539889 -9372 0.087740 0.040114 7.781940 9.961333 -9373 0.059101 0.036728 10.274235 11.996323 -9374 0.045427 0.034398 8.364545 9.963909 -9375 0.099972 0.058873 7.863191 14.132948 -9376 0.059384 0.025219 13.285158 13.737695 -9377 0.085194 0.032533 11.048696 10.362165 -9378 0.081807 0.077930 10.905242 18.355839 -9379 0.067115 0.026309 6.502457 11.866387 -9380 0.078112 0.041455 9.860276 9.670178 -9381 0.062680 0.063065 11.841183 17.746610 -9382 0.058119 0.044269 11.070780 12.695285 -9383 0.064860 0.032769 10.473520 10.989362 -9384 0.046782 0.033947 8.259200 8.635022 -9385 0.045812 0.032682 9.694996 8.764902 -9386 0.072998 0.052623 11.378697 9.730241 -9387 0.097208 0.076639 11.353507 14.562707 -9388 0.061332 0.032991 7.950951 11.697634 -9389 0.030487 0.021450 8.439378 13.071309 -9390 0.096301 0.068166 9.467743 13.621310 -9391 0.124002 0.075332 6.043535 12.066746 -9392 0.066162 0.023987 14.107859 16.142599 -9393 0.111726 0.077230 10.546224 16.097992 -9394 0.066155 0.033333 9.592059 10.870119 -9395 0.081881 0.065075 12.550351 13.574932 -9396 0.057254 0.028177 12.790436 12.631050 -9397 0.036202 0.013679 7.515316 9.841170 -9398 0.077647 0.050365 12.020295 13.539629 -9399 0.098632 0.057678 6.311707 10.428092 -9400 0.092878 0.073243 11.098055 12.180485 -9401 0.090149 0.061247 15.384014 16.326442 -9402 0.098275 0.049540 10.792342 15.102485 -9403 0.062721 0.038773 13.498335 13.854572 -9404 0.252207 0.071631 8.312038 14.653628 -9405 0.042359 0.032950 8.120701 9.202898 -9406 0.047522 0.029523 8.238728 10.701983 -9407 0.077172 0.054229 16.291131 15.568314 -9408 0.150061 0.055637 14.020262 18.063066 -9409 0.083932 0.039770 10.857071 15.637565 -9410 0.052778 0.020983 9.424418 10.470948 -9411 0.077611 0.026771 13.083238 15.238966 -9412 0.072234 0.020891 11.576559 10.905304 -9413 0.038446 0.035437 10.171376 9.164256 -9414 0.291838 0.194580 8.090687 14.085625 -9415 0.068239 0.029235 6.363204 8.425645 -9416 0.258728 0.084219 9.100997 10.810307 -9417 0.060203 0.047020 8.188128 13.831302 -9418 0.051987 0.031846 7.376758 10.026116 -9419 0.183067 0.042489 11.042330 16.395481 -9420 0.057238 0.038488 9.887905 12.701508 -9421 0.076179 0.036472 8.526948 10.987381 -9422 0.064342 0.052725 8.643985 11.156627 -9423 0.059478 0.041032 5.395024 8.986674 -9424 0.090325 0.045815 8.278362 8.862805 -9425 0.036941 0.019640 7.378637 10.072725 -9426 0.074644 0.032958 7.648855 12.267695 -9427 0.073120 0.045534 10.281734 14.193919 -9428 0.097280 0.053530 8.117050 10.429517 -9429 0.190055 0.080060 9.795154 14.287858 -9430 0.126128 0.051052 9.022748 10.202187 -9431 0.057192 0.029111 9.228752 11.359928 -9432 0.084719 0.081192 18.923506 17.382902 -9433 0.097865 0.060610 10.132723 12.689064 -9434 0.054553 0.045139 9.319836 10.915049 -9435 0.090196 0.040549 8.658938 11.175103 -9436 0.038745 0.025349 8.962086 9.402572 -9437 0.058424 0.040868 6.864232 11.819395 -9438 0.065178 0.037149 7.025533 10.449199 -9439 0.129935 0.077735 7.294674 12.694096 -9440 0.054518 0.036014 14.929376 14.713686 -9441 0.039723 0.025875 8.915903 9.808975 -9442 0.045162 0.024017 8.178150 15.954495 -9443 0.052807 0.017388 7.221474 6.875281 -9444 0.124789 0.232404 9.460119 20.217693 -9445 0.077326 0.043519 11.014322 12.503751 -9446 0.068789 0.030667 13.408233 14.839751 -9447 0.107763 0.185438 15.345228 12.778605 -9448 0.232389 0.070667 11.200145 12.650578 -9449 0.084081 0.065763 11.727373 12.583054 -9450 0.054318 0.021852 10.656284 9.012787 -9451 0.076015 0.043855 12.882778 17.733073 -9452 0.040315 0.023090 6.301915 7.800073 -9453 0.064507 0.046499 17.146021 15.904865 -9454 0.076487 0.034591 8.280080 13.984138 -9455 0.051689 0.049437 11.366982 13.914857 -9456 0.066518 0.067071 11.846500 8.596359 -9457 0.082216 0.051135 9.663923 12.755831 -9458 0.064327 0.029055 6.118927 9.637392 -9459 0.050155 0.027060 7.946185 9.897580 -9460 0.073995 0.055002 13.971482 16.832925 -9461 0.094932 0.059757 11.054375 16.016887 -9462 0.053632 0.029587 9.653830 9.826455 -9463 0.076483 0.039102 14.425768 21.661422 -9464 0.060345 0.051466 13.547567 12.505290 -9465 0.075536 0.034227 9.409933 13.121643 -9466 0.078450 0.061527 10.775871 12.784553 -9467 0.070264 0.034104 5.809663 8.491702 -9468 0.071457 0.032399 8.675707 12.530362 -9469 0.086425 0.077839 7.672745 13.606509 -9470 0.060466 0.025203 8.042154 10.008283 -9471 0.210746 0.051667 8.928151 12.209058 -9472 0.088515 0.068891 11.515731 12.659457 -9473 0.066360 0.042297 9.084587 13.361634 -9474 0.048986 0.031885 4.045788 7.068826 -9475 0.051358 0.025223 9.740197 12.054648 -9476 0.043869 0.020247 7.147458 7.597554 -9477 0.236337 0.092591 16.607016 18.465499 -9478 0.075171 0.043051 7.300775 11.816681 -9479 0.056000 0.035825 9.240499 13.113196 -9480 0.062280 0.037507 12.082583 14.692435 -9481 0.095617 0.062993 11.422725 15.435089 -9482 0.036804 0.029705 9.210940 10.187815 -9483 0.063531 0.040407 7.423095 9.891849 -9484 0.074643 0.070235 7.056380 11.507914 -9485 0.056297 0.062905 9.100088 11.292604 -9486 0.072200 0.044403 8.548340 12.580281 -9487 0.254633 0.053359 7.903241 10.441808 -9488 0.095452 0.076434 13.268146 13.990301 -9489 0.053101 0.029990 7.175054 8.493646 -9490 0.297030 0.078096 14.495299 15.660702 -9491 0.068718 0.067470 9.387637 11.188978 -9492 0.066051 0.028988 11.447883 10.105130 -9493 0.050447 0.023634 13.283806 14.848785 -9494 0.068957 0.042224 10.255623 16.333542 -9495 0.122701 0.078632 8.639805 15.379970 -9496 0.075035 0.061543 10.673588 14.775176 -9497 0.066827 0.035035 7.855743 16.431852 -9498 0.092283 0.070155 7.396065 13.595947 -9499 0.047475 0.022226 9.931669 9.889341 -9500 0.059891 0.032866 10.444530 15.202648 -9501 0.054861 0.031754 10.669645 12.565233 -9502 0.071267 0.049145 10.855040 13.283318 -9503 0.075357 0.027747 8.939418 10.683114 -9504 0.044656 0.036744 7.543793 8.041644 -9505 0.050820 0.045781 10.108755 17.098450 -9506 0.073781 0.044802 8.666098 8.859337 -9507 0.095533 0.050890 8.767409 14.595117 -9508 0.068481 0.037665 9.079835 9.411544 -9509 0.097849 0.065121 11.732298 17.009502 -9510 0.056420 0.035378 8.534034 9.889804 -9511 0.084949 0.065872 13.668897 19.272400 -9512 0.065479 0.036974 9.312629 10.057186 -9513 0.086289 0.067392 14.619736 19.604797 -9514 0.068590 0.021603 9.267680 11.459200 -9515 0.202868 0.081840 9.754485 12.587163 -9516 0.068122 0.033216 12.861120 14.601860 -9517 0.086243 0.074547 11.787776 15.083379 -9518 0.068207 0.055239 8.292313 10.184895 -9519 0.046988 0.044882 6.250288 12.276497 -9520 0.070722 0.035444 12.099218 16.702342 -9521 0.048504 0.036566 8.766163 9.643330 -9522 0.085939 0.045840 15.057380 15.041197 -9523 0.167886 0.059738 11.276934 11.591129 -9524 0.092866 0.062057 9.627110 9.805041 -9525 0.066331 0.033017 8.999889 15.928755 -9526 0.226839 0.028121 7.986591 9.519174 -9527 0.048067 0.034531 7.236086 7.526322 -9528 0.069313 0.039570 9.176061 12.085108 -9529 0.041407 0.058916 10.907006 17.985197 -9530 0.067919 0.047121 12.105489 15.760636 -9531 0.073620 0.046344 8.762485 13.178885 -9532 0.049207 0.021965 11.324361 7.697811 -9533 0.049256 0.031912 7.854724 12.625439 -9534 0.064965 0.044647 6.797567 9.015636 -9535 0.087540 0.055345 12.286743 24.229278 -9536 0.085627 0.073957 12.773116 22.275424 -9537 0.088007 0.031386 11.620283 13.760214 -9538 0.042932 0.032550 8.766371 9.858870 -9539 0.054033 0.031598 7.736643 13.609305 -9540 0.078604 0.048475 8.082082 8.165837 -9541 0.089198 0.052417 15.081444 12.911182 -9542 0.062733 0.038989 7.402329 12.571570 -9543 0.075213 0.030215 12.037973 12.780453 -9544 0.079463 0.054485 12.388171 15.429884 -9545 0.049029 0.034787 8.467054 11.844169 -9546 0.047348 0.024636 7.727769 10.360018 -9547 0.092625 0.048555 10.010185 14.791289 -9548 0.095614 0.049106 10.478372 10.766244 -9549 0.075591 0.026801 12.434701 13.777692 -9550 0.064470 0.024876 10.789468 12.673291 -9551 0.049379 0.028695 7.753356 10.597390 -9552 0.051028 0.053337 12.325489 17.017353 -9553 0.046469 0.030695 12.718534 13.845831 -9554 0.185955 0.075858 10.743574 16.943808 -9555 0.042493 0.016637 10.268253 12.888951 -9556 0.096338 0.048860 12.558174 13.989883 -9557 0.069583 0.037830 12.989471 10.616857 -9558 0.076630 0.049625 8.728469 10.150948 -9559 0.052555 0.022339 6.383859 6.578047 -9560 0.070742 0.071160 10.661942 13.875245 -9561 0.083812 0.046876 12.121734 13.861717 -9562 0.067376 0.043385 8.108194 9.334568 -9563 0.294764 0.052773 13.863003 15.823248 -9564 0.037379 0.026430 7.259602 13.133462 -9565 0.084997 0.035482 11.297614 11.386404 -9566 0.068172 0.053928 8.968927 11.443137 -9567 0.069781 0.055796 14.724111 13.987840 -9568 0.088701 0.090561 15.331828 20.531897 -9569 0.072269 0.041086 14.563741 13.911862 -9570 0.077155 0.064130 10.457975 14.038624 -9571 0.075284 0.053658 7.922807 17.386400 -9572 0.065837 0.025565 5.904140 8.829875 -9573 0.078886 0.035586 9.584193 12.463374 -9574 0.064039 0.040476 8.185042 13.934409 -9575 0.095811 0.041327 9.412358 15.414666 -9576 0.168015 0.040282 8.940004 16.194800 -9577 0.054552 0.040000 13.829566 13.838369 -9578 0.090022 0.061038 13.088229 17.274414 -9579 0.047183 0.034983 6.405997 7.948032 -9580 0.038624 0.048038 10.118816 12.636637 -9581 0.063010 0.055945 12.013559 11.370359 -9582 0.088380 0.052150 11.487610 14.701568 -9583 0.084185 0.043849 12.847831 15.967301 -9584 0.058518 0.034094 14.543383 19.858423 -9585 0.072236 0.061895 10.024122 11.657306 -9586 0.058362 0.027264 6.738956 7.437986 -9587 0.223988 0.074586 21.987772 23.763583 -9588 0.062038 0.047300 11.223404 9.591950 -9589 0.064226 0.029912 11.682354 13.188071 -9590 0.090354 0.054233 12.910673 19.002137 -9591 0.041072 0.030214 11.007294 13.214347 -9592 0.095143 0.059880 9.635274 10.241559 -9593 0.072567 0.027068 8.443348 9.652703 -9594 0.075577 0.039233 12.929203 14.273289 -9595 0.096513 0.095492 12.064879 15.427581 -9596 0.086940 0.024166 9.409389 11.440233 -9597 0.055918 0.028951 8.022315 13.151938 -9598 0.090102 0.050578 10.433067 14.662561 -9599 0.049130 0.039713 6.337640 7.984615 -9600 0.060630 0.055863 14.858136 13.176880 -9601 0.068254 0.048199 8.997120 14.355767 -9602 0.087310 0.025426 7.622313 12.725373 -9603 0.160219 0.073449 11.749719 17.598505 -9604 0.096462 0.035698 8.951411 13.893221 -9605 0.038027 0.019413 7.179379 6.997486 -9606 0.070141 0.035812 9.037089 12.608170 -9607 0.083404 0.049496 11.354426 14.146507 -9608 0.097347 0.070807 9.519910 15.092591 -9609 0.220799 0.084797 15.210493 14.977327 -9610 0.048096 0.036776 8.456264 9.978777 -9611 0.078054 0.057060 15.293357 18.909079 -9612 0.226836 0.054160 9.173613 11.430829 -9613 0.052708 0.042826 7.055741 7.079661 -9614 0.076738 0.034028 13.156272 14.344233 -9615 0.084773 0.053575 7.790606 12.109303 -9616 0.068603 0.042986 13.251555 13.599374 -9617 0.034009 0.009769 8.880528 14.966641 -9618 0.065805 0.046628 9.248291 15.370736 -9619 0.054927 0.041645 10.310248 13.286730 -9620 0.077568 0.048203 10.166172 15.432717 -9621 0.180199 0.092561 12.761959 17.925252 -9622 0.071395 0.034636 10.964011 13.234930 -9623 0.088313 0.034226 7.741331 10.151660 -9624 0.081579 0.043256 12.926314 11.747275 -9625 0.052688 0.029447 8.910094 9.671376 -9626 0.074541 0.063878 12.372509 15.148703 -9627 0.061467 0.036837 7.864062 15.746582 -9628 0.074285 0.034241 10.098654 12.744771 -9629 0.272066 0.045736 6.494745 8.304438 -9630 0.120521 0.039349 10.406875 12.810475 -9631 0.061171 0.025262 7.934203 12.249827 -9632 0.234220 0.045931 10.355150 22.881668 -9633 0.218297 0.090041 16.591670 21.587944 -9634 0.054371 0.031963 8.910101 14.041782 -9635 0.057412 0.021126 9.463632 12.126959 -9636 0.070591 0.045810 6.241198 9.660847 -9637 0.080309 0.061869 9.708252 15.598987 -9638 0.035006 0.027141 6.886936 10.636476 -9639 0.071761 0.038452 7.912137 10.043613 -9640 0.088277 0.052923 13.105038 12.635160 -9641 0.048428 0.032357 13.101885 15.365951 -9642 0.084903 0.049018 10.614160 12.214910 -9643 0.057930 0.035404 9.633921 11.858232 -9644 0.063819 0.054094 8.285197 10.681136 -9645 0.046172 0.029096 7.250903 13.915990 -9646 0.126353 0.049963 12.289944 16.555776 -9647 0.128847 0.050237 8.612748 12.931995 -9648 0.052437 0.031057 10.291603 14.611404 -9649 0.268468 0.077976 11.614022 10.919440 -9650 0.060552 0.048368 10.773824 17.595711 -9651 0.094426 0.054510 12.804877 22.508898 -9652 0.080972 0.045489 12.020729 17.112267 -9653 0.152055 0.078413 12.698839 14.606663 -9654 0.183305 0.070580 9.284410 8.240032 -9655 0.092870 0.061168 10.181623 10.742623 -9656 0.061807 0.032007 8.738019 8.907133 -9657 0.038628 0.027104 10.969034 12.945009 -9658 0.050324 0.021543 8.982963 13.130176 -9659 0.067369 0.055162 8.904484 11.690127 -9660 0.051965 0.023855 7.337180 11.341554 -9661 0.069058 0.039830 6.759454 7.596371 -9662 0.076835 0.046854 6.356579 9.558143 -9663 0.051823 0.021681 7.359346 12.987426 -9664 0.058983 0.029410 15.853789 19.190756 -9665 0.087713 0.054734 9.412110 14.207191 -9666 0.039935 0.016962 10.303045 9.625736 -9667 0.208320 0.050804 12.520832 13.079979 -9668 0.072970 0.040577 9.434653 15.793285 -9669 0.078221 0.072341 13.118430 16.411952 -9670 0.058269 0.044873 9.543329 10.877942 -9671 0.047088 0.031102 9.767420 13.905739 -9672 0.066985 0.033561 9.012493 11.514124 -9673 0.280690 0.074070 13.339955 17.394803 -9674 0.065116 0.042264 8.410015 13.979822 -9675 0.061189 0.034398 9.044748 12.676731 -9676 0.052815 0.025692 7.932426 7.867830 -9677 0.052214 0.028528 9.387404 11.102617 -9678 0.060193 0.036742 10.946494 11.325742 -9679 0.071312 0.066800 10.899570 20.099244 -9680 0.055392 0.026713 11.622098 14.065425 -9681 0.050750 0.021482 8.665469 14.124478 -9682 0.064344 0.038432 13.600924 15.178367 -9683 0.055189 0.042892 7.476050 9.559038 -9684 0.069189 0.036125 14.290881 16.067395 -9685 0.087418 0.063715 12.602683 19.441233 -9686 0.223390 0.057535 12.012548 14.400500 -9687 0.067641 0.035258 8.684519 12.330408 -9688 0.068324 0.038486 8.726768 12.265206 -9689 0.091652 0.059672 11.734427 12.063970 -9690 0.079931 0.051415 12.527504 15.546470 -9691 0.059742 0.018673 7.068730 8.365872 -9692 0.104498 0.046960 10.684878 13.725575 -9693 0.070098 0.037572 9.023325 14.186093 -9694 0.087051 0.038397 14.374472 10.647377 -9695 0.081493 0.036609 10.345284 11.297647 -9696 0.088379 0.042328 8.665628 11.677415 -9697 0.094084 0.056043 15.799876 15.910269 -9698 0.092780 0.057593 10.603132 15.825909 -9699 0.071013 0.037406 8.602958 11.314637 -9700 0.066358 0.049616 8.119632 11.977687 -9701 0.062640 0.037329 7.702648 9.046412 -9702 0.065012 0.055034 7.788808 8.226440 -9703 0.092198 0.032007 6.734857 12.231449 -9704 0.062991 0.035383 9.024839 11.056350 -9705 0.047567 0.021061 6.213512 12.709108 -9706 0.066762 0.078086 14.009349 19.181087 -9707 0.074405 0.057850 11.230677 10.640975 -9708 0.066757 0.028422 10.309916 11.842738 -9709 0.052566 0.023990 9.799853 9.913731 -9710 0.072957 0.048233 12.292852 23.020338 -9711 0.049593 0.042490 7.592264 12.580269 -9712 0.068193 0.045693 8.090897 7.967852 -9713 0.190006 0.043830 8.965059 11.271051 -9714 0.064134 0.056808 11.572936 11.998767 -9715 0.177761 0.079080 11.473331 15.756801 -9716 0.089398 0.059004 8.936171 12.861559 -9717 0.083982 0.038600 13.724305 13.501781 -9718 0.071687 0.027830 12.009304 19.350197 -9719 0.076144 0.036518 12.088643 18.141253 -9720 0.064531 0.031090 7.730836 10.403763 -9721 0.066612 0.050481 5.877043 6.908067 -9722 0.090717 0.046291 11.073643 21.540563 -9723 0.080101 0.070698 8.634353 9.500412 -9724 0.053734 0.023065 7.505756 10.251655 -9725 0.068723 0.028457 7.871640 11.041099 -9726 0.212982 0.068777 10.689865 17.612297 -9727 0.049402 0.027902 12.406279 16.043772 -9728 0.081238 0.040214 11.804304 9.265159 -9729 0.066024 0.031070 13.838889 18.685064 -9730 0.061440 0.032679 7.256898 10.833033 -9731 0.094048 0.049748 8.085678 9.905866 -9732 0.080615 0.063997 13.125441 18.582224 -9733 0.064339 0.048760 7.583935 8.377956 -9734 0.071266 0.041545 11.073928 12.327199 -9735 0.067221 0.030170 16.461416 19.527770 -9736 0.170796 0.074026 10.663743 13.767765 -9737 0.231254 0.133615 11.884031 13.402049 -9738 0.097197 0.069728 10.993129 21.315289 -9739 0.064767 0.053623 10.795162 12.114163 -9740 0.191185 0.068218 11.074696 16.066931 -9741 0.056188 0.058749 12.117966 19.064333 -9742 0.075440 0.039389 10.936669 13.583749 -9743 0.050663 0.021866 6.610507 9.522680 -9744 0.075256 0.038959 10.413113 15.392928 -9745 0.072620 0.037784 6.807225 9.327310 -9746 0.247931 0.079729 7.127917 10.509791 -9747 0.056940 0.038182 8.534551 9.933191 -9748 0.078240 0.057353 10.706465 17.311867 -9749 0.094881 0.044320 9.016041 5.939366 -9750 0.224143 0.258524 10.865881 12.299106 -9751 0.052540 0.031071 7.038441 9.372404 -9752 0.226621 0.053419 7.918951 10.443814 -9753 0.072462 0.048123 10.214818 12.385902 -9754 0.075172 0.042663 12.002846 10.737308 -9755 0.115621 0.066932 5.864202 8.086811 -9756 0.064222 0.056546 9.993355 13.165976 -9757 0.097513 0.044412 9.538219 9.701621 -9758 0.065362 0.029843 6.180800 11.364819 -9759 0.065325 0.043208 8.517220 12.727831 -9760 0.155689 0.092875 7.703004 12.118846 -9761 0.098760 0.058610 11.805107 10.942281 -9762 0.071092 0.042384 7.835824 7.290357 -9763 0.086458 0.035997 11.376178 9.013811 -9764 0.125554 0.054703 13.181080 16.657838 -9765 0.061747 0.049262 10.291064 13.590822 -9766 0.073752 0.041795 12.989018 11.455960 -9767 0.067071 0.043357 7.812213 12.092439 -9768 0.288139 0.094188 12.107883 21.761909 -9769 0.068529 0.024341 9.380528 11.713696 -9770 0.081075 0.039916 8.372712 9.849649 -9771 0.065319 0.060852 7.587442 13.063565 -9772 0.046811 0.023444 11.613825 10.487806 -9773 0.046817 0.032330 8.670755 13.685302 -9774 0.056716 0.036121 10.863960 25.190440 -9775 0.079384 0.048982 8.802375 14.666879 -9776 0.075834 0.049579 11.486721 17.761808 -9777 0.070325 0.053263 8.547007 9.159487 -9778 0.073529 0.040841 6.780662 9.899956 -9779 0.093546 0.050768 10.978140 8.655256 -9780 0.269383 0.110516 8.949790 9.183763 -9781 0.238655 0.056329 11.628993 13.868264 -9782 0.079086 0.054802 11.060276 15.990802 -9783 0.042928 0.013553 11.640677 9.218632 -9784 0.074869 0.047741 8.281781 9.443548 -9785 0.078019 0.039018 8.624912 10.606010 -9786 0.065102 0.048033 12.181930 12.283657 -9787 0.293243 0.120967 10.608924 16.759329 -9788 0.054813 0.027128 6.679715 10.645887 -9789 0.190414 0.044987 7.794334 10.247424 -9790 0.085522 0.067280 11.332478 15.954061 -9791 0.067970 0.020213 9.227361 10.168248 -9792 0.070490 0.026904 8.794431 15.783217 -9793 0.071672 0.050360 10.228763 11.329867 -9794 0.070060 0.059949 7.607206 11.164787 -9795 0.055835 0.038104 11.423896 10.334127 -9796 0.042942 0.028660 7.709556 11.870799 -9797 0.091561 0.049878 8.910967 11.757648 -9798 0.066130 0.039795 6.397919 10.759468 -9799 0.146506 0.064801 10.539464 13.750494 -9800 0.042731 0.023259 10.568566 16.808136 -9801 0.071875 0.060522 14.414870 15.844024 -9802 0.072095 0.031288 7.900647 11.538823 -9803 0.182323 0.073063 11.971323 14.967296 -9804 0.081292 0.060444 8.190705 10.821973 -9805 0.084285 0.080096 12.044511 11.692423 -9806 0.065438 0.030550 12.607394 11.170766 -9807 0.045625 0.026245 6.502876 7.748771 -9808 0.065601 0.047169 11.068912 12.523183 -9809 0.087656 0.039591 9.463660 12.189341 -9810 0.075676 0.044122 11.216457 16.966831 -9811 0.092264 0.060296 9.093947 18.511311 -9812 0.074226 0.059750 8.944402 16.240781 -9813 0.060017 0.040677 13.607395 14.621365 -9814 0.068580 0.040825 7.399142 10.082066 -9815 0.082239 0.052656 9.317352 14.745979 -9816 0.224551 0.040884 7.052073 10.825892 -9817 0.083879 0.056557 10.760301 11.490093 -9818 0.289810 0.055402 14.376438 19.237444 -9819 0.066966 0.049135 9.999777 12.034608 -9820 0.040358 0.022355 7.439100 12.089313 -9821 0.083185 0.035205 9.922223 12.718859 -9822 0.046413 0.025635 5.902208 13.386631 -9823 0.071953 0.053600 8.594194 8.135930 -9824 0.295314 0.218098 16.261486 25.684462 -9825 0.084722 0.073115 10.288370 11.196685 -9826 0.096482 0.042485 8.009525 12.038988 -9827 0.087095 0.044651 9.782814 7.757635 -9828 0.055866 0.026052 8.558661 10.980280 -9829 0.063302 0.040120 11.563416 13.015442 -9830 0.073712 0.040804 9.670476 11.778053 -9831 0.084709 0.059726 24.471460 29.806452 -9832 0.053991 0.039321 12.035946 12.738421 -9833 0.063348 0.034599 16.002459 16.114981 -9834 0.073986 0.046036 11.829829 20.083289 -9835 0.062888 0.051298 7.590163 9.562633 -9836 0.074493 0.051453 10.214894 11.213856 -9837 0.043109 0.021695 7.429802 9.868319 -9838 0.071980 0.047280 9.229960 10.365057 -9839 0.083996 0.059380 10.332655 14.134021 -9840 0.049582 0.027360 11.438297 16.627952 -9841 0.076219 0.032498 9.457717 16.282895 -9842 0.256539 0.075078 10.354515 12.351228 -9843 0.035841 0.032355 4.845559 6.570104 -9844 0.071373 0.030394 11.027690 13.976113 -9845 0.071005 0.036623 13.784650 14.885098 -9846 0.071220 0.083007 13.370141 19.161176 -9847 0.094550 0.072294 8.603502 9.526604 -9848 0.054798 0.028037 11.277249 17.154495 -9849 0.082176 0.080012 8.239985 10.875678 -9850 0.090036 0.050600 10.211388 10.523135 -9851 0.058325 0.033905 8.456201 10.518689 -9852 0.261201 0.132212 12.490337 10.785599 -9853 0.144236 0.044312 16.753388 16.251847 -9854 0.069216 0.043374 9.228204 13.799051 -9855 0.123053 0.051460 9.533026 17.555586 -9856 0.059505 0.071830 9.923036 15.913218 -9857 0.118782 0.071894 11.474839 15.817644 -9858 0.088583 0.035371 7.566636 10.785718 -9859 0.051966 0.025200 8.670491 18.365153 -9860 0.079662 0.043474 10.617334 10.288498 -9861 0.073057 0.034253 10.902518 11.594471 -9862 0.169840 0.059497 10.472617 13.609774 -9863 0.046542 0.020981 9.323971 10.488700 -9864 0.083345 0.042653 12.036834 8.741051 -9865 0.085289 0.066733 13.469246 13.173296 -9866 0.054934 0.037491 6.444994 9.556775 -9867 0.075309 0.028065 12.871660 12.158672 -9868 0.256181 0.079267 14.177948 18.325639 -9869 0.086107 0.095086 11.980824 14.590829 -9870 0.075759 0.041288 9.785377 11.975155 -9871 0.290559 0.075077 8.404326 8.840625 -9872 0.041071 0.026492 6.506570 7.310725 -9873 0.069959 0.025749 10.132539 14.807667 -9874 0.044633 0.021251 8.931128 7.803585 -9875 0.070458 0.041214 9.073372 14.124930 -9876 0.066889 0.030876 8.617199 8.262081 -9877 0.090185 0.053294 9.764133 8.514638 -9878 0.051974 0.038756 6.652646 12.594215 -9879 0.055988 0.035314 14.899004 11.616912 -9880 0.066810 0.048470 6.111937 8.749248 -9881 0.087104 0.040454 11.680332 14.457222 -9882 0.088077 0.039996 9.848357 14.043753 -9883 0.049708 0.032915 12.142716 14.746870 -9884 0.042659 0.032392 7.893037 9.455603 -9885 0.097552 0.046083 8.881471 13.617986 -9886 0.131681 0.067614 10.577389 10.947940 -9887 0.079056 0.043776 8.574725 11.583619 -9888 0.062456 0.022525 9.279367 10.704974 -9889 0.072183 0.048051 11.213264 17.726652 -9890 0.081718 0.035664 12.408087 14.542230 -9891 0.078433 0.035436 12.661381 13.938260 -9892 0.097573 0.055065 9.681766 15.590083 -9893 0.095096 0.064323 11.113938 21.006296 -9894 0.068946 0.044582 7.509441 11.670015 -9895 0.059454 0.035489 9.601199 12.807628 -9896 0.053352 0.027006 8.381996 8.618857 -9897 0.041377 0.018857 8.863691 13.802791 -9898 0.052771 0.029472 8.556450 12.985720 -9899 0.075966 0.036022 13.677781 17.495667 -9900 0.089187 0.068390 13.887540 21.529118 -9901 0.066838 0.028824 10.321834 8.397003 -9902 0.197059 0.068041 13.708721 13.998647 -9903 0.104398 0.083550 10.985197 15.089825 -9904 0.070318 0.027512 5.383549 5.982205 -9905 0.067560 0.021129 8.197689 13.007717 -9906 0.059276 0.028215 13.951868 15.619260 -9907 0.071171 0.035569 9.492236 11.423651 -9908 0.097865 0.070991 11.606404 15.991760 -9909 0.039754 0.029136 8.616717 8.507102 -9910 0.097278 0.039108 9.552722 11.984482 -9911 0.080219 0.060156 18.275141 18.985097 -9912 0.081304 0.040592 11.305719 14.532328 -9913 0.066822 0.049083 9.798632 12.505441 -9914 0.077446 0.067608 9.201207 8.087675 -9915 0.081389 0.056977 7.085581 13.552815 -9916 0.072313 0.047963 10.218073 18.231630 -9917 0.080345 0.052821 8.338932 13.425211 -9918 0.090037 0.059812 8.251022 11.967902 -9919 0.049149 0.039933 6.045692 10.295241 -9920 0.134390 0.194557 13.372361 15.299546 -9921 0.075172 0.041915 10.330886 10.341565 -9922 0.061020 0.029245 9.613219 11.209035 -9923 0.061336 0.029474 13.916127 13.814910 -9924 0.082766 0.054289 12.294213 12.888817 -9925 0.092643 0.031188 15.204405 15.170328 -9926 0.076996 0.057346 10.410451 13.415025 -9927 0.110291 0.060264 11.289709 14.689599 -9928 0.092349 0.054895 6.352281 8.969228 -9929 0.089809 0.059637 12.109323 13.203153 -9930 0.152935 0.048449 8.983957 13.706575 -9931 0.082681 0.055124 11.955978 16.092379 -9932 0.127754 0.043286 12.943161 15.818580 -9933 0.086950 0.056379 13.282423 13.517806 -9934 0.061492 0.027016 13.001901 12.037267 -9935 0.247473 0.081014 9.513431 15.119491 -9936 0.053899 0.028933 10.683274 11.218957 -9937 0.094161 0.046930 15.845884 23.181677 -9938 0.100358 0.043657 10.448041 9.513496 -9939 0.072576 0.052669 13.709037 14.860595 -9940 0.058780 0.039705 5.691165 10.703504 -9941 0.170611 0.062708 11.314252 13.050429 -9942 0.045608 0.036218 8.356428 10.965989 -9943 0.131368 0.255969 10.354048 15.680974 -9944 0.040274 0.021016 7.288880 8.372708 -9945 0.076733 0.056385 9.692008 14.910740 -9946 0.065241 0.043102 9.733538 9.712327 -9947 0.063850 0.031514 11.457706 12.810091 -9948 0.075734 0.058102 8.405950 10.121900 -9949 0.046801 0.028023 8.088832 9.989647 -9950 0.093376 0.061640 10.563490 17.828838 -9951 0.052447 0.044170 13.012289 14.000530 -9952 0.088398 0.068481 9.350399 20.544830 -9953 0.042147 0.021214 7.814368 8.857259 -9954 0.071682 0.027952 8.136050 10.570841 -9955 0.059444 0.035753 9.183719 7.248796 -9956 0.080654 0.057131 9.644848 20.047297 -9957 0.048152 0.019628 7.964279 9.435597 -9958 0.095939 0.072041 16.502534 14.960729 -9959 0.064186 0.029625 9.427514 9.791830 -9960 0.050100 0.024854 10.588156 18.358950 -9961 0.097765 0.054713 12.997151 18.288886 -9962 0.235453 0.073524 12.295661 12.404785 -9963 0.091968 0.067108 11.899991 13.986294 -9964 0.103262 0.032306 6.353674 8.626294 -9965 0.079883 0.062572 15.260755 13.301128 -9966 0.266414 0.048621 9.275098 10.017944 -9967 0.050958 0.032571 8.568853 14.044439 -9968 0.089641 0.065390 9.761606 13.380344 -9969 0.060062 0.028542 7.252760 9.854929 -9970 0.280938 0.038404 11.426960 13.020276 -9971 0.168401 0.227590 13.128292 19.050561 -9972 0.075825 0.042880 16.437717 15.432581 -9973 0.269273 0.097610 13.610977 15.777258 -9974 0.085226 0.053808 16.197670 21.699804 -9975 0.075433 0.066257 12.526425 14.707993 -9976 0.058395 0.031194 8.176354 7.932118 -9977 0.067891 0.065103 10.270505 12.207341 -9978 0.081002 0.035545 10.491186 11.258536 -9979 0.037971 0.020580 9.459469 13.071005 -9980 0.265238 0.097344 9.853603 10.144565 -9981 0.098142 0.045615 7.167931 20.008848 -9982 0.038797 0.029340 6.657073 7.551918 -9983 0.048565 0.031742 6.948752 10.968509 -9984 0.067851 0.042738 8.376885 9.341133 -9985 0.061358 0.023193 10.165107 12.935793 -9986 0.072467 0.036529 7.054647 13.542640 -9987 0.076363 0.058610 13.703890 17.224158 -9988 0.099443 0.068378 12.527309 19.138424 -9989 0.065888 0.049114 7.866391 16.331361 -9990 0.063286 0.027749 10.265846 10.102630 -9991 0.041118 0.039062 8.071810 11.582058 -9992 0.072049 0.026214 8.350211 14.484402 -9993 0.084429 0.051925 15.072072 12.662981 -9994 0.061112 0.034091 14.872032 11.851345 -9995 0.117344 0.045496 9.835409 16.098381 -9996 0.091816 0.087993 10.277784 17.507529 -9997 0.093448 0.089417 10.070423 14.514612 -9998 0.083835 0.039307 9.380990 13.536962 -9999 0.042842 0.041395 11.199185 11.693451 -10000 0.056437 0.035505 8.365728 14.121690 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_4.out b/pelicun/tests/resources/EDP data/EDP_table_test_4.out deleted file mode 100644 index 5ea8135de..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_4.out +++ /dev/null @@ -1,10001 +0,0 @@ - 1-PID-1-1 1-PID-2-1 1-PFA-0-1 1-PFA-1-1 -1 0.084034 0.055758 9.612194 8.521800 -2 0.071598 0.048692 9.675150 11.193573 -3 0.074622 0.045064 12.668798 19.998608 -4 1.000000 1.000000 100.000000 100.000000 -5 0.050433 0.016872 12.543347 13.331059 -6 0.088671 0.058806 10.687041 10.333828 -7 0.098995 0.047933 9.103575 13.814606 -8 0.054194 0.057625 8.701449 10.576258 -9 0.074110 0.028333 10.514232 10.217392 -10 0.063398 0.030743 10.835177 11.920620 -11 0.076070 0.041588 12.998148 13.394312 -12 0.093196 0.094329 10.543328 12.602819 -13 0.056932 0.032777 9.092682 10.477496 -14 0.077995 0.098243 11.412408 9.689539 -15 0.035537 0.013985 5.850706 11.616164 -16 0.078505 0.040754 13.533522 18.540643 -17 0.058991 0.032022 9.599608 9.986433 -18 0.066816 0.035512 8.102305 15.835313 -19 0.063943 0.023249 10.081932 12.914038 -20 0.095898 0.057419 14.416237 17.094278 -21 0.071524 0.050031 10.121787 11.233320 -22 0.092512 0.065868 13.174663 19.920234 -23 0.049158 0.026160 6.794900 11.594216 -24 0.095625 0.047312 9.451341 11.863481 -25 0.062134 0.031639 12.970827 11.189020 -26 0.088053 0.044309 16.160386 13.282056 -27 0.078030 0.042363 6.861270 11.046626 -28 0.056607 0.028148 9.483462 9.760088 -29 0.049747 0.022060 9.317966 8.758632 -30 0.048219 0.023857 9.809739 10.230630 -31 0.063666 0.026354 13.133158 14.397037 -32 0.084491 0.034811 13.341097 18.424505 -33 1.000000 1.000000 100.000000 100.000000 -34 0.082852 0.057457 13.960151 16.773328 -35 0.061468 0.030543 7.799797 8.028217 -36 0.074965 0.035188 11.440816 11.724960 -37 0.093782 0.077039 13.794515 17.004499 -38 1.000000 1.000000 100.000000 100.000000 -39 0.059147 0.027497 9.855089 10.749336 -40 1.000000 1.000000 100.000000 100.000000 -41 1.000000 1.000000 100.000000 100.000000 -42 0.061603 0.029395 12.730060 11.031036 -43 0.094537 0.045310 14.537426 11.780727 -44 1.000000 1.000000 100.000000 100.000000 -45 0.051481 0.038254 9.621851 10.777329 -46 1.000000 1.000000 100.000000 100.000000 -47 1.000000 1.000000 100.000000 100.000000 -48 0.076287 0.050903 8.218719 8.607601 -49 0.083091 0.039571 10.944450 15.514196 -50 0.060442 0.048724 6.243118 14.491071 -51 0.076796 0.045613 8.568868 11.900006 -52 0.075385 0.053715 11.181350 15.053894 -53 0.095101 0.066562 11.658953 13.397512 -54 1.000000 1.000000 100.000000 100.000000 -55 1.000000 1.000000 100.000000 100.000000 -56 0.088810 0.043939 10.263977 14.170798 -57 0.061631 0.051270 12.004925 14.272941 -58 1.000000 1.000000 100.000000 100.000000 -59 1.000000 1.000000 100.000000 100.000000 -60 0.051567 0.053222 11.733564 15.108550 -61 0.095062 0.042095 7.836120 10.161571 -62 0.093283 0.069105 7.701145 12.441442 -63 0.086179 0.038897 9.742228 15.228627 -64 1.000000 1.000000 100.000000 100.000000 -65 1.000000 1.000000 100.000000 100.000000 -66 0.098450 0.092856 8.728246 10.885734 -67 0.065752 0.049626 7.067444 9.792725 -68 0.052492 0.029025 10.877503 13.080180 -69 1.000000 1.000000 100.000000 100.000000 -70 0.091255 0.069726 11.960551 14.006025 -71 0.067821 0.038361 7.661558 15.798903 -72 1.000000 1.000000 100.000000 100.000000 -73 0.090248 0.046322 9.487544 10.583336 -74 1.000000 1.000000 100.000000 100.000000 -75 0.068823 0.041265 10.145908 8.888624 -76 1.000000 1.000000 100.000000 100.000000 -77 1.000000 1.000000 100.000000 100.000000 -78 1.000000 1.000000 100.000000 100.000000 -79 0.087057 0.034782 8.052492 8.553314 -80 0.081417 0.038073 9.950568 19.291685 -81 0.054829 0.036375 6.268553 12.817782 -82 0.093864 0.087730 11.937456 11.905643 -83 0.057085 0.031418 10.627330 19.605384 -84 0.055192 0.034421 13.249988 7.446689 -85 0.070202 0.049691 9.782797 12.554170 -86 0.084567 0.035649 10.107707 12.214953 -87 0.057852 0.028901 8.191937 12.927255 -88 0.071334 0.031692 11.035181 17.411536 -89 0.093899 0.057453 12.281544 13.543508 -90 0.085715 0.076175 10.501681 12.734672 -91 1.000000 1.000000 100.000000 100.000000 -92 0.092213 0.037599 9.116890 9.820075 -93 0.085956 0.070566 12.045865 11.481578 -94 0.080267 0.046964 11.736609 10.985795 -95 0.047505 0.034288 5.989446 7.299811 -96 1.000000 1.000000 100.000000 100.000000 -97 0.070717 0.060514 10.990775 12.370855 -98 0.090804 0.037711 12.081220 11.999331 -99 0.055838 0.055658 14.266516 11.480602 -100 0.052084 0.020709 6.233274 10.901486 -101 1.000000 1.000000 100.000000 100.000000 -102 0.075378 0.041913 13.700764 13.122987 -103 0.073924 0.037791 10.496621 10.179652 -104 0.063546 0.051553 10.492454 11.898130 -105 0.043187 0.029542 8.582116 11.010487 -106 0.055127 0.021967 7.892521 9.222777 -107 0.075734 0.029134 10.589515 14.763042 -108 0.092445 0.032722 13.140210 13.618313 -109 0.041262 0.037077 6.685669 10.991112 -110 0.092326 0.050392 12.154315 15.490818 -111 0.092209 0.063445 13.492318 13.634792 -112 0.055431 0.035494 13.229951 11.877052 -113 0.048012 0.019943 13.247545 9.938524 -114 0.090554 0.041731 11.758210 15.283622 -115 1.000000 1.000000 100.000000 100.000000 -116 0.045542 0.031014 9.238624 11.855134 -117 1.000000 1.000000 100.000000 100.000000 -118 0.064639 0.036388 7.632474 11.468517 -119 1.000000 1.000000 100.000000 100.000000 -120 1.000000 1.000000 100.000000 100.000000 -121 0.084442 0.041063 12.352554 13.914608 -122 0.076571 0.053467 7.917099 14.665887 -123 1.000000 1.000000 100.000000 100.000000 -124 0.096669 0.073539 8.484385 13.564415 -125 0.083775 0.043295 8.850517 13.209373 -126 0.083054 0.036707 11.513138 13.252584 -127 1.000000 1.000000 100.000000 100.000000 -128 0.062083 0.044493 10.309880 12.408948 -129 0.065566 0.037747 13.396479 16.904097 -130 0.081410 0.035593 8.706655 9.053617 -131 0.083564 0.064695 9.383406 13.834096 -132 0.092107 0.059444 9.704353 16.201634 -133 0.065471 0.043388 13.034161 15.236806 -134 0.037357 0.030041 9.287593 9.203296 -135 0.075451 0.041306 14.015662 18.066339 -136 0.081753 0.039874 8.846151 13.792511 -137 0.065830 0.040932 8.822065 9.442370 -138 0.082981 0.079265 9.914382 11.922153 -139 0.071095 0.035434 12.111674 11.413622 -140 0.087669 0.046305 16.696113 12.009539 -141 0.073045 0.026064 11.306703 10.728369 -142 0.065846 0.049681 11.115201 13.869762 -143 0.053765 0.028551 9.805299 12.956699 -144 0.045541 0.024293 7.791763 11.606962 -145 0.080730 0.068361 9.658218 11.472760 -146 0.067995 0.040809 10.078516 8.218543 -147 1.000000 1.000000 100.000000 100.000000 -148 0.071491 0.057522 9.140901 17.188271 -149 0.083179 0.036383 11.639257 9.622498 -150 0.047365 0.026014 7.029267 10.059897 -151 0.070878 0.087514 10.620487 13.127805 -152 0.070152 0.033354 12.032358 11.216850 -153 0.039616 0.017903 7.312562 8.720252 -154 0.048438 0.029570 10.441688 11.004391 -155 0.042906 0.030972 6.274096 9.896581 -156 0.057750 0.027456 10.493388 11.515004 -157 0.098262 0.071810 11.950936 17.102522 -158 0.035416 0.019811 13.114890 12.968839 -159 0.079001 0.078565 10.950098 14.912009 -160 0.064112 0.057601 11.195073 17.320793 -161 0.058643 0.057024 7.127612 11.108503 -162 0.036692 0.023530 10.339594 8.767201 -163 0.051661 0.062135 9.055269 13.944916 -164 0.035391 0.011866 5.082503 6.427080 -165 1.000000 1.000000 100.000000 100.000000 -166 1.000000 1.000000 100.000000 100.000000 -167 1.000000 1.000000 100.000000 100.000000 -168 1.000000 1.000000 100.000000 100.000000 -169 0.062238 0.031347 7.529748 8.660591 -170 0.074581 0.031587 9.429717 8.132427 -171 0.061047 0.033570 10.052439 12.047824 -172 0.062651 0.043390 8.094944 11.918338 -173 0.099521 0.037989 8.201325 16.016862 -174 0.065698 0.040442 11.390798 13.844537 -175 0.094192 0.034754 10.515116 9.076152 -176 1.000000 1.000000 100.000000 100.000000 -177 0.057372 0.038493 13.236594 13.928834 -178 0.081499 0.048486 11.098676 11.915917 -179 0.071688 0.044675 6.097764 10.774186 -180 0.064253 0.048502 6.139511 8.058595 -181 0.075677 0.042953 10.796222 12.849748 -182 0.084652 0.047997 11.031632 20.530685 -183 0.041549 0.018088 8.617576 12.026337 -184 0.081263 0.072772 19.123892 19.145415 -185 0.081904 0.029762 9.800998 16.213651 -186 1.000000 1.000000 100.000000 100.000000 -187 0.095537 0.036132 17.028958 17.063420 -188 0.041016 0.034424 10.078666 9.202537 -189 0.048089 0.032319 9.895064 12.593052 -190 0.079844 0.067615 9.518507 14.119268 -191 0.096272 0.075407 8.629595 12.286564 -192 0.058254 0.045920 8.300524 8.320637 -193 0.099537 0.066576 11.072249 15.455822 -194 0.065478 0.041733 5.742363 6.636033 -195 0.075116 0.032413 7.325792 13.347797 -196 0.080417 0.063442 7.651534 10.773705 -197 0.039724 0.030218 6.254866 6.422231 -198 0.082939 0.042239 12.774866 20.722075 -199 0.038996 0.024274 5.332493 6.466948 -200 0.075671 0.092377 12.434714 12.906577 -201 0.068300 0.050465 7.411098 12.731898 -202 0.091672 0.047641 6.193550 7.808704 -203 0.077194 0.044480 15.457287 13.578885 -204 0.080838 0.034839 7.793543 13.042546 -205 0.071077 0.027097 7.892070 9.658787 -206 0.058800 0.035362 11.875595 13.243499 -207 0.049196 0.031160 8.294048 10.695725 -208 0.031673 0.017325 6.270678 7.882884 -209 1.000000 1.000000 100.000000 100.000000 -210 0.058135 0.039681 10.556783 13.888289 -211 0.081621 0.039344 9.008276 15.201127 -212 1.000000 1.000000 100.000000 100.000000 -213 0.090615 0.074834 8.652628 9.253538 -214 0.099211 0.055093 18.940214 23.444033 -215 1.000000 1.000000 100.000000 100.000000 -216 1.000000 1.000000 100.000000 100.000000 -217 1.000000 1.000000 100.000000 100.000000 -218 1.000000 1.000000 100.000000 100.000000 -219 0.050145 0.026399 8.492813 10.616463 -220 1.000000 1.000000 100.000000 100.000000 -221 0.070526 0.034437 7.397501 17.782101 -222 0.048982 0.038288 6.618762 9.475394 -223 0.046626 0.040330 9.467192 10.310269 -224 0.089940 0.052156 9.739813 8.329723 -225 0.087781 0.065055 9.955529 17.685796 -226 0.062039 0.041351 6.551487 8.414994 -227 0.097735 0.064647 16.458480 16.035596 -228 0.079417 0.051183 6.316846 9.444517 -229 0.091062 0.060926 12.316199 16.215485 -230 0.054131 0.053516 6.479343 10.681225 -231 0.052361 0.023054 9.658206 14.047890 -232 0.084768 0.063751 10.647507 15.539068 -233 0.050503 0.030776 9.557106 15.909827 -234 0.050268 0.045525 8.611599 13.392073 -235 0.073604 0.035734 12.523092 18.526107 -236 0.075869 0.035130 9.988210 7.092738 -237 0.079686 0.074045 6.975554 10.853688 -238 0.094291 0.053405 13.716252 17.476382 -239 1.000000 1.000000 100.000000 100.000000 -240 0.065293 0.044472 12.375935 13.378510 -241 0.060830 0.030656 7.012534 11.842818 -242 1.000000 1.000000 100.000000 100.000000 -243 1.000000 1.000000 100.000000 100.000000 -244 1.000000 1.000000 100.000000 100.000000 -245 0.073079 0.026918 8.949539 10.934714 -246 0.074820 0.043188 7.675930 9.259880 -247 0.066572 0.021500 8.424233 11.034616 -248 0.071323 0.063146 10.103210 15.360269 -249 0.098708 0.064485 14.607914 15.652281 -250 0.079023 0.043004 11.758425 17.772478 -251 0.056876 0.061103 8.981358 11.222877 -252 1.000000 1.000000 100.000000 100.000000 -253 0.075870 0.042015 9.096111 12.201924 -254 0.045617 0.027445 7.105760 8.912201 -255 0.064628 0.040941 9.294784 10.417611 -256 0.067496 0.037630 9.587111 10.222507 -257 1.000000 1.000000 100.000000 100.000000 -258 0.072280 0.024923 15.267010 15.719756 -259 0.061959 0.020351 8.407309 13.747634 -260 0.084657 0.070026 9.928264 14.220137 -261 1.000000 1.000000 100.000000 100.000000 -262 0.072895 0.051434 9.691719 14.886388 -263 1.000000 1.000000 100.000000 100.000000 -264 1.000000 1.000000 100.000000 100.000000 -265 0.061730 0.060023 14.660419 18.151924 -266 0.064111 0.046316 13.269620 16.194037 -267 1.000000 1.000000 100.000000 100.000000 -268 0.072605 0.049893 12.664213 16.137060 -269 0.076736 0.066698 8.021957 14.784851 -270 0.038847 0.024303 8.689729 11.155590 -271 0.068921 0.034206 8.555379 11.965421 -272 0.076798 0.058856 9.341472 9.049011 -273 0.088886 0.046075 11.745904 13.739405 -274 0.070126 0.036697 9.551576 11.622673 -275 0.071426 0.030115 8.173217 9.705786 -276 1.000000 1.000000 100.000000 100.000000 -277 0.085233 0.092759 13.007022 19.848155 -278 0.088545 0.068782 8.337093 9.471604 -279 1.000000 1.000000 100.000000 100.000000 -280 0.070290 0.040413 5.810392 8.540841 -281 0.064281 0.046380 10.442575 12.841980 -282 0.069266 0.034540 10.328272 12.704832 -283 0.077344 0.030433 11.448618 15.360847 -284 0.048130 0.035167 8.324330 13.121107 -285 0.046449 0.021526 6.815686 10.848668 -286 0.063417 0.026927 6.466133 9.468956 -287 0.058941 0.053756 16.781407 16.375194 -288 0.051929 0.038272 6.274688 8.349880 -289 0.067677 0.041798 12.176144 17.447013 -290 0.087428 0.051288 9.441730 11.083675 -291 0.087992 0.050110 14.080969 21.306847 -292 0.067648 0.043825 13.167682 13.088540 -293 0.049284 0.021398 9.829672 9.965105 -294 0.079027 0.047972 11.855847 15.925853 -295 0.089708 0.048889 11.244843 17.734378 -296 0.070709 0.033423 8.969528 12.577842 -297 1.000000 1.000000 100.000000 100.000000 -298 0.063677 0.033169 9.553058 10.445972 -299 0.065108 0.034711 10.964014 10.151266 -300 0.082946 0.036238 11.050475 11.118496 -301 0.080115 0.067827 11.060906 10.785766 -302 0.085812 0.062068 7.232616 9.060320 -303 0.039710 0.032899 9.078131 9.637127 -304 1.000000 1.000000 100.000000 100.000000 -305 0.086671 0.067591 13.293437 13.483631 -306 0.095141 0.045732 12.742216 13.624141 -307 0.059694 0.031651 8.594792 14.037541 -308 0.071792 0.045521 10.006537 11.891473 -309 0.063547 0.039511 7.857811 14.560639 -310 0.079840 0.035345 14.469678 15.977114 -311 0.053874 0.031159 12.028654 18.310261 -312 0.041839 0.036073 8.190442 14.496080 -313 0.060368 0.031922 9.263563 10.596287 -314 0.059581 0.039098 8.810525 9.860254 -315 0.036045 0.026376 9.072244 17.679447 -316 1.000000 1.000000 100.000000 100.000000 -317 0.082416 0.039840 8.157492 11.860340 -318 1.000000 1.000000 100.000000 100.000000 -319 0.062239 0.048527 5.206649 6.993678 -320 0.077181 0.039371 5.104234 7.453646 -321 0.063465 0.036543 8.967898 9.923694 -322 0.061527 0.039304 7.290409 12.952579 -323 0.070503 0.044782 10.519061 12.963449 -324 0.099740 0.040583 11.460636 16.189234 -325 0.082925 0.061446 13.053059 15.377502 -326 0.058822 0.033564 7.977690 9.414355 -327 0.037368 0.036478 6.728056 10.460863 -328 0.045773 0.040886 5.330475 6.644946 -329 0.094829 0.056201 12.941058 14.412869 -330 0.069261 0.054719 6.583725 9.899016 -331 0.058553 0.033591 15.467758 17.307774 -332 0.061975 0.058635 14.484053 14.652921 -333 0.075227 0.035993 5.274288 9.927504 -334 0.093519 0.041547 11.268082 11.960989 -335 0.058752 0.026575 14.771224 18.220111 -336 0.083423 0.047894 12.357504 16.744982 -337 0.067544 0.031598 7.819065 10.108108 -338 0.073974 0.053097 11.341174 17.392386 -339 0.086086 0.034236 7.601245 10.531464 -340 0.082437 0.049390 9.178123 11.705496 -341 0.066995 0.029887 8.483986 9.600050 -342 0.073208 0.057050 10.956635 17.086515 -343 0.077039 0.040447 8.927329 10.482280 -344 0.078653 0.064538 8.401654 8.830571 -345 0.093800 0.056922 12.277018 16.005432 -346 0.082568 0.039516 12.882962 18.639033 -347 0.053540 0.027753 4.897905 6.965483 -348 0.052111 0.026874 12.534893 11.056491 -349 0.058689 0.024295 10.659586 13.946432 -350 1.000000 1.000000 100.000000 100.000000 -351 0.085185 0.044127 8.335687 13.472290 -352 0.054417 0.031796 9.961327 9.001337 -353 0.057700 0.064396 8.399219 9.728827 -354 1.000000 1.000000 100.000000 100.000000 -355 0.057125 0.037525 7.827816 14.589071 -356 0.057307 0.030115 7.794297 13.674000 -357 0.088143 0.019351 12.420909 21.995727 -358 0.089028 0.085762 12.510451 13.958868 -359 0.048503 0.029844 13.400570 14.346398 -360 0.068893 0.055389 9.510791 10.334151 -361 1.000000 1.000000 100.000000 100.000000 -362 0.042930 0.027011 7.577760 12.645329 -363 1.000000 1.000000 100.000000 100.000000 -364 1.000000 1.000000 100.000000 100.000000 -365 1.000000 1.000000 100.000000 100.000000 -366 0.088302 0.059714 13.348212 17.564538 -367 1.000000 1.000000 100.000000 100.000000 -368 0.070469 0.052572 12.196501 16.053779 -369 0.096127 0.078758 5.962205 8.572052 -370 0.065041 0.073988 12.329252 20.412687 -371 0.064413 0.039965 8.398435 11.365587 -372 0.078627 0.033183 8.970644 9.106946 -373 0.053771 0.033856 9.136567 13.374182 -374 1.000000 1.000000 100.000000 100.000000 -375 0.054706 0.042710 11.141413 10.703114 -376 1.000000 1.000000 100.000000 100.000000 -377 0.048642 0.023363 7.732279 14.640376 -378 1.000000 1.000000 100.000000 100.000000 -379 0.047294 0.022720 6.525020 10.728615 -380 0.056281 0.030982 11.484679 14.045077 -381 0.050796 0.023405 5.238299 8.343240 -382 0.077152 0.023260 10.889508 11.023230 -383 0.068510 0.050965 8.827961 8.381617 -384 0.077410 0.058532 9.963712 13.312285 -385 0.049043 0.023709 8.729925 14.338121 -386 1.000000 1.000000 100.000000 100.000000 -387 0.057071 0.049323 9.881731 10.579432 -388 1.000000 1.000000 100.000000 100.000000 -389 0.047634 0.018070 9.295104 14.516752 -390 0.052872 0.024563 14.327045 14.807197 -391 1.000000 1.000000 100.000000 100.000000 -392 1.000000 1.000000 100.000000 100.000000 -393 0.098200 0.050387 14.097401 11.302113 -394 0.072689 0.062153 17.376198 16.040111 -395 0.091719 0.050073 11.376655 17.580854 -396 1.000000 1.000000 100.000000 100.000000 -397 0.079880 0.049882 10.183317 14.280280 -398 1.000000 1.000000 100.000000 100.000000 -399 0.047373 0.042055 13.569121 16.642289 -400 0.089455 0.041887 10.062397 9.321009 -401 0.075628 0.037121 8.011564 13.697388 -402 0.068356 0.044342 12.948620 12.668185 -403 1.000000 1.000000 100.000000 100.000000 -404 0.070857 0.040071 9.580797 11.259374 -405 0.080669 0.046054 9.140057 13.434955 -406 0.063797 0.037267 7.547346 10.944628 -407 0.063650 0.046423 8.547198 10.493193 -408 0.090077 0.040585 7.292263 7.171892 -409 0.094562 0.043292 12.156212 17.297358 -410 0.054101 0.069220 9.748656 12.654775 -411 1.000000 1.000000 100.000000 100.000000 -412 0.095854 0.049174 8.376711 13.447989 -413 0.055454 0.019370 8.879012 10.420829 -414 0.088233 0.046477 9.522345 12.017755 -415 0.064529 0.030398 7.322060 9.771820 -416 1.000000 1.000000 100.000000 100.000000 -417 1.000000 1.000000 100.000000 100.000000 -418 0.073218 0.031866 9.663706 10.688641 -419 1.000000 1.000000 100.000000 100.000000 -420 0.075858 0.032579 8.083496 16.376267 -421 0.053778 0.050190 15.033864 12.867395 -422 0.067411 0.040693 11.773406 11.691355 -423 0.069358 0.040372 9.938073 13.577759 -424 0.071490 0.035512 10.339027 8.503569 -425 0.071780 0.047583 6.027201 11.237445 -426 0.041691 0.031982 7.682304 12.095249 -427 0.086990 0.064334 10.027245 14.762007 -428 1.000000 1.000000 100.000000 100.000000 -429 0.072384 0.045392 7.598721 10.381200 -430 0.094890 0.073920 9.369930 15.504376 -431 0.052809 0.025518 10.594953 8.037234 -432 1.000000 1.000000 100.000000 100.000000 -433 0.062165 0.019601 11.033279 10.050541 -434 0.058771 0.020959 10.372110 14.869968 -435 0.084908 0.050312 7.672657 8.949434 -436 0.082481 0.029613 9.579152 8.995930 -437 0.084835 0.062007 13.206835 15.382127 -438 0.047214 0.048448 9.696881 10.901394 -439 0.047520 0.038150 15.232720 16.869217 -440 0.056565 0.030536 8.191003 14.195469 -441 0.070356 0.031873 10.838928 9.778043 -442 0.058240 0.036158 8.367532 10.274071 -443 0.086428 0.062486 11.793888 14.005230 -444 0.076021 0.036857 8.410576 9.744712 -445 1.000000 1.000000 100.000000 100.000000 -446 0.037931 0.020987 8.745443 10.087010 -447 1.000000 1.000000 100.000000 100.000000 -448 0.084712 0.034890 12.485953 15.051873 -449 0.064402 0.032338 11.533429 12.839231 -450 0.085094 0.039272 11.519999 11.524960 -451 0.071335 0.047687 8.608302 9.644563 -452 0.074986 0.032151 6.998328 17.503836 -453 0.058041 0.040014 11.112410 13.594067 -454 0.071637 0.041887 8.229043 11.199492 -455 0.075446 0.075238 8.836079 21.545443 -456 0.051513 0.054429 10.688092 9.639678 -457 0.086472 0.055420 11.510367 14.521104 -458 0.059210 0.023745 10.608849 11.623829 -459 1.000000 1.000000 100.000000 100.000000 -460 1.000000 1.000000 100.000000 100.000000 -461 0.098027 0.055618 11.274332 16.390103 -462 0.078368 0.043078 8.609905 10.186543 -463 0.070876 0.047285 9.113563 14.481302 -464 0.084028 0.071388 10.412152 19.040429 -465 1.000000 1.000000 100.000000 100.000000 -466 0.053852 0.033389 10.691848 13.559023 -467 0.046611 0.042118 11.417999 16.773046 -468 0.054536 0.027163 10.523040 8.654479 -469 0.058571 0.021488 10.500488 11.500682 -470 0.080545 0.060168 12.374023 9.479016 -471 0.098910 0.076996 9.639848 10.145108 -472 0.056997 0.032155 10.005926 11.776167 -473 0.097332 0.066728 11.366907 18.352524 -474 0.062457 0.032217 11.758952 9.727954 -475 1.000000 1.000000 100.000000 100.000000 -476 1.000000 1.000000 100.000000 100.000000 -477 0.079319 0.053168 9.442802 9.659342 -478 0.084125 0.031525 11.964020 14.987463 -479 0.099929 0.053268 10.270413 12.148279 -480 0.096999 0.050038 16.946992 16.781391 -481 0.049312 0.027006 8.105209 11.944557 -482 0.075296 0.040811 8.958723 13.526577 -483 1.000000 1.000000 100.000000 100.000000 -484 0.087300 0.040918 17.998037 24.813710 -485 0.068519 0.035365 11.257760 12.276809 -486 0.058147 0.033789 10.756136 12.743421 -487 0.078077 0.092895 11.792538 17.537919 -488 0.061246 0.043365 7.229026 13.185542 -489 0.054997 0.024921 7.229531 7.336954 -490 0.026695 0.017262 8.556618 8.313026 -491 0.066227 0.033531 11.672189 15.441895 -492 0.074565 0.055398 10.113830 10.452371 -493 0.082405 0.079190 9.412100 11.661261 -494 0.057052 0.028587 8.860732 9.387828 -495 1.000000 1.000000 100.000000 100.000000 -496 0.059157 0.058223 7.843813 13.068743 -497 1.000000 1.000000 100.000000 100.000000 -498 0.096954 0.062754 12.570572 16.293096 -499 1.000000 1.000000 100.000000 100.000000 -500 0.061712 0.040376 12.478330 9.543965 -501 1.000000 1.000000 100.000000 100.000000 -502 0.067637 0.028699 11.049528 10.946299 -503 0.075786 0.032141 9.482284 12.330698 -504 0.068232 0.032148 9.491102 11.061549 -505 0.057450 0.038775 11.138878 16.479421 -506 0.085794 0.043322 11.511716 16.992931 -507 1.000000 1.000000 100.000000 100.000000 -508 0.030564 0.023448 11.945565 8.687227 -509 1.000000 1.000000 100.000000 100.000000 -510 1.000000 1.000000 100.000000 100.000000 -511 0.072227 0.040263 10.160429 12.366134 -512 1.000000 1.000000 100.000000 100.000000 -513 1.000000 1.000000 100.000000 100.000000 -514 0.067238 0.035504 6.399854 7.876474 -515 0.073406 0.054847 11.052150 13.755164 -516 0.059068 0.056205 8.933942 10.358676 -517 0.051549 0.046417 8.956524 10.729259 -518 1.000000 1.000000 100.000000 100.000000 -519 0.069047 0.048236 9.383051 12.013308 -520 0.047914 0.030564 13.106541 15.144247 -521 0.062021 0.051407 7.822781 17.140824 -522 0.036108 0.033208 9.020985 13.968906 -523 0.056878 0.034505 6.252928 10.941503 -524 1.000000 1.000000 100.000000 100.000000 -525 1.000000 1.000000 100.000000 100.000000 -526 0.055044 0.035597 8.697590 12.425500 -527 0.086216 0.074079 8.248901 11.091292 -528 0.075323 0.046829 6.442653 14.209889 -529 0.089643 0.072100 14.498546 14.877067 -530 0.088748 0.059582 13.807354 14.967563 -531 1.000000 1.000000 100.000000 100.000000 -532 0.042685 0.019494 6.595779 6.461099 -533 0.056424 0.029632 13.753399 16.372775 -534 0.056797 0.039863 11.133396 15.071595 -535 0.036913 0.022330 8.064012 9.682612 -536 0.050095 0.046288 8.617558 13.657100 -537 0.057085 0.027774 7.664470 7.629793 -538 0.084066 0.053019 13.677099 13.001871 -539 0.076530 0.035804 8.906460 10.035946 -540 0.068263 0.046491 10.367204 15.372014 -541 0.097382 0.062463 14.928472 14.378812 -542 1.000000 1.000000 100.000000 100.000000 -543 1.000000 1.000000 100.000000 100.000000 -544 1.000000 1.000000 100.000000 100.000000 -545 0.064593 0.075198 8.746851 12.836690 -546 0.077751 0.033873 11.020026 14.474581 -547 0.035062 0.027530 8.914072 11.370550 -548 0.075069 0.036421 8.456795 17.519361 -549 0.089253 0.074197 9.448177 14.022553 -550 1.000000 1.000000 100.000000 100.000000 -551 0.093662 0.070026 9.582746 12.165264 -552 0.093726 0.039631 9.272392 10.426543 -553 1.000000 1.000000 100.000000 100.000000 -554 1.000000 1.000000 100.000000 100.000000 -555 0.060955 0.033611 9.474236 13.741369 -556 0.055237 0.032377 11.821131 9.651803 -557 0.068851 0.060897 8.206145 13.253457 -558 0.077942 0.054165 8.137741 13.201148 -559 0.055629 0.034046 12.974855 14.390248 -560 0.051404 0.045505 11.073422 14.302237 -561 1.000000 1.000000 100.000000 100.000000 -562 0.068824 0.026629 6.455376 7.559803 -563 0.067367 0.037569 9.518221 13.441757 -564 0.078278 0.055505 13.690769 16.217894 -565 0.095258 0.072770 9.748221 12.374651 -566 0.085307 0.034082 9.741414 9.769063 -567 0.094968 0.044906 12.524247 13.527290 -568 0.058904 0.034835 11.956491 9.645832 -569 0.081910 0.064437 11.432436 11.213969 -570 0.084010 0.058098 10.112985 10.647712 -571 1.000000 1.000000 100.000000 100.000000 -572 0.044461 0.039013 10.984861 9.753152 -573 0.062464 0.056544 14.472579 18.020343 -574 1.000000 1.000000 100.000000 100.000000 -575 0.084921 0.068784 9.854943 10.876429 -576 0.068229 0.063376 9.562132 13.247128 -577 0.062340 0.038957 10.014350 14.128107 -578 0.048485 0.023541 7.515992 11.466950 -579 0.082359 0.045555 10.056311 15.232952 -580 0.049486 0.033623 8.177343 7.972410 -581 0.073239 0.074604 13.493114 15.160839 -582 0.072570 0.036473 7.863738 15.377915 -583 0.073522 0.050222 9.068013 12.147737 -584 1.000000 1.000000 100.000000 100.000000 -585 0.067902 0.042079 8.593330 10.666622 -586 0.079815 0.044171 6.671073 13.408074 -587 0.081230 0.066572 9.308292 15.127587 -588 0.071479 0.042750 8.447917 13.818051 -589 0.063478 0.033285 10.353286 12.801136 -590 0.042446 0.019302 7.059652 9.875209 -591 0.060077 0.028343 7.750667 8.317892 -592 0.048763 0.025367 12.012527 11.186423 -593 0.099711 0.049765 9.527913 13.310843 -594 0.081877 0.035384 8.620754 13.079599 -595 0.095041 0.049620 8.676654 17.098994 -596 1.000000 1.000000 100.000000 100.000000 -597 0.063102 0.032889 12.304568 15.960112 -598 0.072713 0.043547 11.639243 14.787242 -599 0.063169 0.058764 9.674192 16.067771 -600 0.091017 0.059803 11.286009 10.366888 -601 0.078566 0.025287 10.519823 10.458525 -602 0.059852 0.019286 7.753705 8.204576 -603 1.000000 1.000000 100.000000 100.000000 -604 0.077735 0.039772 9.994583 11.100338 -605 0.051903 0.029296 9.932808 13.299086 -606 0.099998 0.041981 12.339963 11.681131 -607 0.066089 0.051291 9.043752 11.862895 -608 0.090517 0.040744 10.822390 17.410727 -609 0.059733 0.025256 9.676177 9.958510 -610 0.044458 0.024791 9.509142 11.080936 -611 1.000000 1.000000 100.000000 100.000000 -612 0.077924 0.056477 15.230642 18.123629 -613 0.070909 0.047568 12.100718 13.942080 -614 1.000000 1.000000 100.000000 100.000000 -615 1.000000 1.000000 100.000000 100.000000 -616 0.086031 0.041356 8.131956 12.095915 -617 0.038768 0.020289 7.303762 9.208544 -618 0.054363 0.053958 7.801040 7.670009 -619 0.097836 0.054835 12.169123 14.170648 -620 1.000000 1.000000 100.000000 100.000000 -621 0.079289 0.068897 9.142514 13.469073 -622 0.053179 0.021824 10.797768 13.452088 -623 1.000000 1.000000 100.000000 100.000000 -624 0.054470 0.037001 8.181461 11.885074 -625 0.078038 0.065688 8.883582 10.152158 -626 0.064484 0.047116 12.811679 9.239633 -627 0.055774 0.027014 11.063119 12.991953 -628 1.000000 1.000000 100.000000 100.000000 -629 1.000000 1.000000 100.000000 100.000000 -630 0.086742 0.057463 14.330867 13.312749 -631 0.086926 0.064186 10.275808 14.876309 -632 1.000000 1.000000 100.000000 100.000000 -633 0.062476 0.057530 9.455687 14.307187 -634 0.054805 0.053545 9.710111 11.447760 -635 0.049902 0.029438 8.866152 10.376149 -636 0.096472 0.053599 10.887382 12.774069 -637 0.050367 0.031047 9.686768 13.310988 -638 0.069192 0.055359 14.929365 21.313863 -639 0.096011 0.058749 12.799028 16.221407 -640 0.083920 0.030302 5.110503 9.743102 -641 0.068319 0.021229 6.490221 11.526576 -642 0.061610 0.030326 9.447620 9.856670 -643 0.089325 0.050514 10.259347 15.226458 -644 0.064700 0.033141 14.116098 12.982718 -645 1.000000 1.000000 100.000000 100.000000 -646 1.000000 1.000000 100.000000 100.000000 -647 0.057071 0.051976 10.780839 13.263892 -648 0.066678 0.028151 6.750721 9.687201 -649 0.073392 0.023994 7.966432 11.071954 -650 0.071474 0.047037 7.051641 7.802976 -651 0.076405 0.037808 7.314488 8.758935 -652 1.000000 1.000000 100.000000 100.000000 -653 0.086683 0.040556 5.563143 8.032846 -654 0.077609 0.031945 8.998222 9.755147 -655 0.067434 0.050535 7.318275 9.652729 -656 1.000000 1.000000 100.000000 100.000000 -657 0.076125 0.042041 9.064854 10.346224 -658 0.066561 0.028921 12.434717 11.729409 -659 0.060630 0.035915 9.102191 9.970460 -660 0.081788 0.045844 8.891371 9.351852 -661 0.082002 0.036223 9.358247 9.456200 -662 0.051645 0.027760 11.400110 9.811355 -663 1.000000 1.000000 100.000000 100.000000 -664 0.063371 0.037281 9.281843 11.387773 -665 0.091276 0.058602 15.518874 15.328909 -666 0.079590 0.042677 7.411398 14.581764 -667 0.045769 0.026578 5.288280 7.857032 -668 0.073535 0.041955 14.584854 14.862724 -669 0.054695 0.036211 10.394347 14.434284 -670 1.000000 1.000000 100.000000 100.000000 -671 0.082242 0.061632 9.448225 15.695497 -672 0.050683 0.030140 6.750313 10.244506 -673 0.039525 0.018035 8.201560 9.070163 -674 0.076478 0.029326 7.407572 10.950281 -675 0.041769 0.017845 6.359994 5.540534 -676 0.046530 0.026829 11.028636 15.579312 -677 0.084539 0.033843 12.199144 13.086574 -678 0.084136 0.024032 7.552058 12.242645 -679 0.097554 0.048203 13.178246 14.616945 -680 1.000000 1.000000 100.000000 100.000000 -681 0.095342 0.042864 14.316351 16.129581 -682 0.064657 0.033835 10.822914 19.416051 -683 1.000000 1.000000 100.000000 100.000000 -684 0.073238 0.031274 10.480177 13.356297 -685 0.061844 0.030714 8.207552 14.183131 -686 0.079465 0.055746 11.638763 16.677758 -687 0.079208 0.054509 15.828569 17.430273 -688 0.075038 0.045017 12.123218 16.259292 -689 0.064451 0.045893 6.123927 10.061680 -690 0.078976 0.041016 9.510102 8.551871 -691 0.069089 0.040620 9.641850 9.773732 -692 0.070094 0.036163 12.491423 15.203750 -693 0.071549 0.045188 9.933882 9.671820 -694 1.000000 1.000000 100.000000 100.000000 -695 0.070549 0.031209 9.131087 12.417639 -696 0.072590 0.037920 9.083492 10.092350 -697 0.079289 0.047754 10.502959 11.204543 -698 0.070305 0.051261 9.138985 11.487166 -699 0.058396 0.048451 11.899955 13.991010 -700 0.072063 0.045957 11.569087 14.326816 -701 1.000000 1.000000 100.000000 100.000000 -702 0.078456 0.044850 9.377221 12.902291 -703 0.055789 0.026257 6.107872 8.541731 -704 0.058346 0.033593 11.893707 18.136424 -705 0.060249 0.033297 6.341975 7.591748 -706 0.070643 0.029408 8.383786 10.850268 -707 1.000000 1.000000 100.000000 100.000000 -708 0.082821 0.063091 8.008347 7.041884 -709 0.076471 0.053785 10.291538 10.471568 -710 0.072967 0.041912 11.199921 11.397076 -711 0.046922 0.045043 9.959483 11.427831 -712 0.057524 0.057806 7.263775 15.635753 -713 0.072399 0.050423 8.468366 11.138227 -714 1.000000 1.000000 100.000000 100.000000 -715 1.000000 1.000000 100.000000 100.000000 -716 0.050068 0.030409 12.949097 15.396413 -717 0.068076 0.041048 13.672752 16.068369 -718 0.067974 0.035882 9.341281 10.645621 -719 1.000000 1.000000 100.000000 100.000000 -720 0.056087 0.022794 17.071260 19.998481 -721 0.062417 0.026435 11.674217 15.087171 -722 0.093429 0.042533 6.616122 9.446264 -723 0.083879 0.056062 8.611847 11.558924 -724 0.088126 0.041916 11.209469 15.870230 -725 0.065351 0.033892 10.747381 13.471670 -726 1.000000 1.000000 100.000000 100.000000 -727 0.082528 0.072265 12.191321 12.273605 -728 0.057828 0.023147 9.640211 9.387020 -729 0.080070 0.036572 11.403515 14.897819 -730 0.099978 0.042144 11.478871 14.409341 -731 0.057392 0.033039 14.346835 21.970514 -732 0.092449 0.053413 12.263161 14.761976 -733 0.036635 0.013769 7.549488 10.084784 -734 0.072827 0.019964 8.527307 13.712679 -735 0.063338 0.045318 15.452432 19.776125 -736 1.000000 1.000000 100.000000 100.000000 -737 0.045607 0.025821 8.064951 9.170908 -738 1.000000 1.000000 100.000000 100.000000 -739 0.077992 0.042228 9.478702 16.238334 -740 0.052833 0.038862 7.294827 9.541520 -741 0.084330 0.046207 7.108025 10.128436 -742 0.084329 0.052930 13.306747 11.353550 -743 0.088563 0.042172 8.346758 10.270908 -744 1.000000 1.000000 100.000000 100.000000 -745 0.087998 0.049745 13.382487 12.944680 -746 0.082581 0.048417 8.361719 13.521525 -747 1.000000 1.000000 100.000000 100.000000 -748 0.072193 0.036732 10.234684 11.125256 -749 0.080450 0.041744 12.464004 14.567250 -750 0.082905 0.044702 8.643615 14.803111 -751 0.059549 0.028533 10.281667 11.068773 -752 0.058213 0.031634 7.070125 9.146174 -753 1.000000 1.000000 100.000000 100.000000 -754 0.058791 0.036900 6.570852 6.209234 -755 0.048220 0.027948 11.379731 17.776339 -756 0.085110 0.069464 12.663032 13.583434 -757 0.074493 0.034933 10.161700 9.847762 -758 0.083367 0.028707 12.138322 16.928505 -759 0.073678 0.035789 8.996887 14.275814 -760 0.062677 0.057151 7.919061 11.505594 -761 0.092918 0.083994 6.458884 8.893236 -762 0.061945 0.063762 7.912240 9.199825 -763 0.069843 0.069172 8.911593 8.073709 -764 0.051353 0.059051 14.547355 14.895243 -765 0.061030 0.025344 9.291521 13.441630 -766 0.090558 0.052224 10.947423 17.634357 -767 0.053145 0.030926 10.333727 14.041250 -768 1.000000 1.000000 100.000000 100.000000 -769 0.056399 0.031628 8.950604 9.080432 -770 0.037760 0.019422 11.975815 14.347575 -771 0.064759 0.062152 13.020978 11.186613 -772 1.000000 1.000000 100.000000 100.000000 -773 0.054811 0.025761 7.676936 9.086583 -774 0.079078 0.073483 6.233847 14.465103 -775 0.098747 0.070596 13.684739 13.610252 -776 0.069412 0.035502 8.496401 15.188554 -777 0.047536 0.045105 8.077384 12.501791 -778 0.094831 0.076265 8.398491 16.638704 -779 0.066023 0.048155 10.720372 14.855391 -780 1.000000 1.000000 100.000000 100.000000 -781 1.000000 1.000000 100.000000 100.000000 -782 1.000000 1.000000 100.000000 100.000000 -783 0.090478 0.058235 9.458634 15.075983 -784 0.066612 0.032303 9.292326 11.927200 -785 0.066086 0.029709 9.556058 10.441952 -786 0.093196 0.065896 10.503214 16.385965 -787 0.065736 0.027221 13.534651 16.539201 -788 0.072829 0.038719 8.934284 12.276923 -789 0.051158 0.032622 6.762160 8.998180 -790 0.050940 0.030860 6.256527 8.313236 -791 0.074784 0.052779 15.724830 19.083318 -792 0.075991 0.034608 8.846370 8.517645 -793 0.061632 0.034207 5.291652 9.864207 -794 0.070309 0.057245 13.426200 12.987744 -795 0.080866 0.045693 12.883219 17.249252 -796 0.093065 0.067024 16.063138 23.448692 -797 0.076509 0.053438 15.138196 14.392440 -798 1.000000 1.000000 100.000000 100.000000 -799 0.065233 0.023289 9.263305 9.016639 -800 0.067604 0.040966 12.030534 16.971345 -801 0.053826 0.034848 8.704444 12.624743 -802 0.086129 0.041576 11.573203 15.696549 -803 0.049045 0.028550 11.633722 15.691723 -804 0.038137 0.024800 9.391960 14.273091 -805 1.000000 1.000000 100.000000 100.000000 -806 0.051459 0.033955 9.223480 9.955925 -807 0.079084 0.059501 10.279894 13.050689 -808 0.041967 0.029494 11.245293 12.571355 -809 0.093982 0.048876 9.011263 7.844232 -810 0.074032 0.050469 12.338424 17.654532 -811 0.059134 0.019130 7.935388 12.075007 -812 0.088640 0.083651 11.150283 14.553024 -813 0.080242 0.058568 8.078505 8.676455 -814 0.079710 0.043853 9.732946 10.510998 -815 0.072904 0.062225 9.127160 11.585586 -816 0.094971 0.069787 7.187181 8.665475 -817 0.051995 0.017268 12.380071 13.916439 -818 0.050566 0.019775 6.304639 7.265976 -819 1.000000 1.000000 100.000000 100.000000 -820 0.078314 0.043542 11.357245 13.166451 -821 0.090369 0.041344 9.665104 10.744157 -822 0.052899 0.038561 7.185861 10.760275 -823 0.090505 0.050785 8.840977 17.214262 -824 0.067530 0.036332 14.019421 11.081743 -825 0.081992 0.027791 8.099442 9.638271 -826 0.054374 0.036104 7.600607 9.951107 -827 1.000000 1.000000 100.000000 100.000000 -828 0.037974 0.034051 6.209357 7.464893 -829 0.078602 0.041770 9.625592 11.065234 -830 0.081077 0.032314 9.179469 20.080879 -831 0.065120 0.048890 7.232656 14.697933 -832 0.061418 0.025178 6.182131 8.907890 -833 1.000000 1.000000 100.000000 100.000000 -834 0.059472 0.035626 9.347338 12.420665 -835 0.052635 0.034394 8.648851 9.849502 -836 0.079014 0.097538 7.349567 10.688907 -837 0.066287 0.036768 13.066739 17.176825 -838 0.054311 0.025339 7.683672 10.112438 -839 0.052449 0.024727 7.191024 11.539272 -840 0.054910 0.036163 9.928354 9.012998 -841 1.000000 1.000000 100.000000 100.000000 -842 0.060771 0.033012 6.930582 10.315348 -843 0.079327 0.074884 8.700307 11.594469 -844 0.071185 0.036340 16.099029 17.532818 -845 0.044357 0.020853 10.627424 15.972366 -846 1.000000 1.000000 100.000000 100.000000 -847 0.070427 0.058070 8.075629 7.605433 -848 0.073690 0.051101 10.931620 16.086122 -849 0.071611 0.035866 8.916085 8.678810 -850 0.061490 0.038253 8.142646 9.521977 -851 0.090450 0.057945 10.625343 10.354022 -852 0.063144 0.039660 15.321327 18.124242 -853 0.084877 0.061592 13.131860 16.734216 -854 0.060036 0.034030 8.054894 14.584234 -855 0.082689 0.039520 13.878537 12.101208 -856 0.066332 0.033834 7.262273 6.357871 -857 0.061464 0.042050 7.472113 11.945520 -858 0.066717 0.055961 7.319972 8.682084 -859 0.073136 0.045481 13.640712 13.155188 -860 0.090729 0.048516 13.201459 19.399675 -861 0.055932 0.039269 9.580285 14.328234 -862 0.072381 0.058830 11.642053 10.074089 -863 1.000000 1.000000 100.000000 100.000000 -864 0.084523 0.045103 8.146976 9.957989 -865 0.059119 0.029484 7.288796 9.048822 -866 0.059657 0.049052 7.029110 13.959339 -867 0.087029 0.050468 10.225073 15.805830 -868 0.039025 0.017340 6.969665 8.901790 -869 0.058793 0.026679 10.860280 12.155907 -870 0.077316 0.059059 9.660607 11.600636 -871 0.073556 0.033668 10.777451 13.343294 -872 0.089405 0.070777 6.450591 11.933622 -873 0.085001 0.045120 9.300581 8.625303 -874 0.070236 0.034115 5.685468 6.884149 -875 0.065195 0.042047 6.861946 9.423662 -876 0.055655 0.042450 9.708284 11.071038 -877 0.090558 0.046615 9.917063 14.024511 -878 0.095746 0.038498 9.015199 9.503130 -879 0.063704 0.023850 8.241687 12.149754 -880 0.033176 0.029407 7.232332 15.403743 -881 0.059263 0.023067 8.511583 9.773398 -882 1.000000 1.000000 100.000000 100.000000 -883 0.078037 0.078977 12.364276 14.476886 -884 0.062207 0.044570 12.804287 13.400662 -885 1.000000 1.000000 100.000000 100.000000 -886 0.065936 0.054205 10.669860 9.708004 -887 0.059681 0.040416 8.705730 13.751837 -888 0.080519 0.030883 7.962873 13.952635 -889 0.046949 0.031134 10.299511 9.215146 -890 0.066509 0.032757 8.080040 11.714974 -891 0.098152 0.088114 9.722249 12.785746 -892 1.000000 1.000000 100.000000 100.000000 -893 0.088940 0.061061 13.101896 16.180002 -894 1.000000 1.000000 100.000000 100.000000 -895 1.000000 1.000000 100.000000 100.000000 -896 1.000000 1.000000 100.000000 100.000000 -897 0.059397 0.034442 9.406146 14.199355 -898 0.091842 0.052953 14.477378 17.372159 -899 0.087202 0.043021 14.493477 11.492884 -900 0.073054 0.047973 7.151852 13.722441 -901 0.055164 0.030123 14.889039 15.344674 -902 0.079598 0.053671 8.313676 8.656683 -903 0.093947 0.054587 9.239263 14.035540 -904 0.073132 0.068971 9.113815 12.350858 -905 0.058409 0.036976 7.356350 9.566992 -906 0.044173 0.026236 10.323107 12.918880 -907 0.051762 0.027699 6.980939 10.910675 -908 0.058417 0.031234 8.947270 15.211504 -909 0.048365 0.025043 7.660842 11.131297 -910 0.052084 0.027735 11.243306 11.081824 -911 1.000000 1.000000 100.000000 100.000000 -912 0.070226 0.049362 5.521274 8.462732 -913 0.043860 0.029886 8.752127 10.258112 -914 0.051657 0.031252 6.744424 8.192688 -915 0.080022 0.086350 15.648874 19.029175 -916 0.055021 0.028027 10.736340 24.415208 -917 0.075603 0.065496 8.370229 13.349388 -918 0.096078 0.047341 13.899577 14.413384 -919 0.084450 0.074360 10.733770 13.623469 -920 1.000000 1.000000 100.000000 100.000000 -921 0.070516 0.045835 9.049121 10.248856 -922 0.053162 0.030901 13.605617 19.993545 -923 0.070677 0.040287 6.175649 9.833634 -924 0.075138 0.061730 13.813285 12.129304 -925 0.059895 0.041346 13.800546 11.629086 -926 0.085105 0.052376 9.637347 11.490835 -927 0.046947 0.019200 7.449086 13.009302 -928 0.036911 0.028310 8.105576 10.850946 -929 0.057880 0.053246 10.771334 12.218520 -930 1.000000 1.000000 100.000000 100.000000 -931 1.000000 1.000000 100.000000 100.000000 -932 1.000000 1.000000 100.000000 100.000000 -933 0.095720 0.063763 11.821320 13.157147 -934 0.062729 0.049146 9.991847 16.402624 -935 0.062865 0.028436 7.555997 8.243535 -936 0.070040 0.031166 11.970191 15.690316 -937 0.097102 0.046427 13.902849 13.861350 -938 0.083913 0.052787 7.295274 10.414346 -939 0.090215 0.030806 5.720368 10.413447 -940 0.050803 0.034226 14.589444 18.260103 -941 0.074627 0.049152 11.381438 14.648211 -942 0.055764 0.053299 10.274340 12.146476 -943 0.077410 0.050277 10.254450 9.403127 -944 1.000000 1.000000 100.000000 100.000000 -945 1.000000 1.000000 100.000000 100.000000 -946 0.058291 0.023068 6.323898 8.212749 -947 0.063233 0.042291 9.852121 13.677286 -948 0.076556 0.026945 7.668983 12.900032 -949 0.042607 0.014913 8.660097 10.920922 -950 1.000000 1.000000 100.000000 100.000000 -951 0.085551 0.063794 16.767932 16.440397 -952 0.068112 0.034773 10.996305 14.079466 -953 0.082410 0.048165 14.768264 15.579004 -954 0.069655 0.029128 7.825519 10.176605 -955 0.049602 0.048228 6.169757 10.288815 -956 0.088514 0.087136 10.396923 14.250815 -957 0.083944 0.065914 12.507291 15.337969 -958 0.060982 0.048238 8.856533 8.447010 -959 1.000000 1.000000 100.000000 100.000000 -960 0.069339 0.068975 9.588455 10.915175 -961 0.037248 0.025874 8.653563 10.257879 -962 0.069724 0.036656 13.355209 17.547567 -963 0.099399 0.057042 9.121769 13.998499 -964 0.057096 0.022138 9.019416 13.499614 -965 0.077336 0.039753 7.890383 10.719157 -966 0.069217 0.075471 9.338985 11.024519 -967 0.049519 0.031160 9.203596 11.290082 -968 0.063523 0.044909 8.713130 15.810251 -969 0.065573 0.038948 8.488022 9.460289 -970 0.078966 0.037901 8.457706 8.757849 -971 0.071111 0.047971 15.556667 14.064972 -972 0.052679 0.048755 14.973782 10.155447 -973 0.055488 0.025514 6.963582 9.367627 -974 0.047813 0.029909 10.984592 14.307369 -975 0.085974 0.044500 9.714390 11.692852 -976 1.000000 1.000000 100.000000 100.000000 -977 0.058151 0.024894 8.815112 9.685889 -978 0.074796 0.051734 11.181924 15.519485 -979 0.052642 0.028545 8.624199 13.224186 -980 0.067470 0.047654 7.493827 12.331614 -981 0.083434 0.047806 10.930673 13.944761 -982 0.063522 0.028845 7.893274 5.301554 -983 0.071278 0.059733 14.523700 15.412748 -984 0.070497 0.045196 8.960076 12.278833 -985 0.045355 0.040459 8.835625 9.798556 -986 0.071392 0.046789 9.221443 9.458542 -987 0.067485 0.036496 10.138405 15.333523 -988 0.076948 0.065709 9.233452 12.395033 -989 0.070712 0.035018 11.132945 11.011395 -990 1.000000 1.000000 100.000000 100.000000 -991 0.063610 0.050073 7.447842 12.045063 -992 0.078665 0.058243 10.745754 18.882013 -993 1.000000 1.000000 100.000000 100.000000 -994 0.066793 0.043491 12.217422 11.674682 -995 0.077296 0.034198 9.423294 12.682270 -996 0.070050 0.032490 7.593496 9.962595 -997 1.000000 1.000000 100.000000 100.000000 -998 0.040951 0.015553 6.509763 8.065568 -999 0.093489 0.056977 9.238330 13.147803 -1000 0.069826 0.040315 9.483189 7.350383 -1001 0.060756 0.049312 6.573593 8.522588 -1002 0.069218 0.028514 9.936576 15.329412 -1003 0.057568 0.054006 9.234869 11.046802 -1004 0.067307 0.036145 7.413739 10.196257 -1005 0.082082 0.040268 11.851660 16.596600 -1006 0.092186 0.062064 8.494539 11.694107 -1007 0.073879 0.053004 7.666924 13.568041 -1008 1.000000 1.000000 100.000000 100.000000 -1009 1.000000 1.000000 100.000000 100.000000 -1010 0.049774 0.030339 8.278028 8.919415 -1011 0.068997 0.032288 8.051379 10.750700 -1012 0.062728 0.034954 12.416435 13.141706 -1013 1.000000 1.000000 100.000000 100.000000 -1014 0.065226 0.024766 9.179110 11.844148 -1015 0.046682 0.042718 11.553176 8.454641 -1016 0.084829 0.034149 4.869609 7.335567 -1017 0.069906 0.021766 6.282334 6.570905 -1018 1.000000 1.000000 100.000000 100.000000 -1019 0.057160 0.037095 7.941077 13.299966 -1020 0.073966 0.030344 6.976535 8.044022 -1021 0.065455 0.039341 7.827588 11.811117 -1022 0.052601 0.026799 10.871404 11.355790 -1023 0.085168 0.046348 9.984990 14.866701 -1024 1.000000 1.000000 100.000000 100.000000 -1025 0.069349 0.028662 10.216258 14.171898 -1026 0.060357 0.027454 8.610959 11.112032 -1027 0.091357 0.065115 9.489625 15.855860 -1028 1.000000 1.000000 100.000000 100.000000 -1029 0.082000 0.034727 6.942428 11.285443 -1030 0.073149 0.038804 13.430459 17.355354 -1031 0.086063 0.059122 11.805329 12.923003 -1032 0.056250 0.035837 10.780230 12.617118 -1033 0.069087 0.038242 8.097005 10.473483 -1034 0.053212 0.025291 7.221615 8.681973 -1035 0.055780 0.030883 5.993111 9.504949 -1036 0.037230 0.021282 8.877344 13.733548 -1037 0.070084 0.059061 10.387090 9.342722 -1038 0.075572 0.054427 15.608449 21.346248 -1039 0.083753 0.070846 12.576256 13.840265 -1040 0.061760 0.030159 7.064500 9.630217 -1041 0.079290 0.069490 10.429847 12.624881 -1042 0.092612 0.043387 7.514176 12.138302 -1043 0.077067 0.046518 14.929134 10.650042 -1044 0.041615 0.033569 11.171592 9.654763 -1045 1.000000 1.000000 100.000000 100.000000 -1046 0.079099 0.048236 10.334881 8.322001 -1047 0.045745 0.040336 8.193643 12.358699 -1048 0.050057 0.032717 8.902992 7.971988 -1049 0.094037 0.057902 11.235563 9.461384 -1050 0.056323 0.046385 11.296924 17.773567 -1051 0.063639 0.018093 12.963090 16.155502 -1052 0.073167 0.045569 8.198985 11.945348 -1053 0.072992 0.047575 9.066481 13.277428 -1054 0.065219 0.027704 6.299282 10.375248 -1055 0.063535 0.029910 6.280779 10.195120 -1056 0.096672 0.047476 7.994078 9.178492 -1057 0.065279 0.040951 8.131094 12.952055 -1058 1.000000 1.000000 100.000000 100.000000 -1059 0.053872 0.019826 12.607065 13.704931 -1060 0.074963 0.045796 10.827789 19.787473 -1061 0.047587 0.030077 10.825969 14.178700 -1062 0.062472 0.039975 9.087074 17.269515 -1063 0.083711 0.039884 11.184572 13.476610 -1064 0.079638 0.039367 12.375190 20.785626 -1065 0.068926 0.028621 10.787420 11.545381 -1066 1.000000 1.000000 100.000000 100.000000 -1067 0.058750 0.027719 9.109811 8.232340 -1068 0.060196 0.055277 11.968673 13.034622 -1069 0.064666 0.049370 9.413020 10.322549 -1070 0.075167 0.043210 10.739265 15.373728 -1071 0.095562 0.055950 10.850165 13.185959 -1072 0.069838 0.055205 8.698448 12.347895 -1073 0.055356 0.024657 9.179400 13.690093 -1074 1.000000 1.000000 100.000000 100.000000 -1075 0.084170 0.038667 15.205171 14.306373 -1076 0.057661 0.052588 13.280624 17.017988 -1077 1.000000 1.000000 100.000000 100.000000 -1078 0.090339 0.051045 10.232731 14.885752 -1079 0.059347 0.025613 9.775152 10.136173 -1080 0.078029 0.043001 9.998730 14.647813 -1081 1.000000 1.000000 100.000000 100.000000 -1082 1.000000 1.000000 100.000000 100.000000 -1083 0.067747 0.048123 11.793520 12.034371 -1084 0.079950 0.068560 10.731881 14.376239 -1085 0.061880 0.028765 10.503209 10.643138 -1086 1.000000 1.000000 100.000000 100.000000 -1087 0.098980 0.046386 7.969280 10.739507 -1088 1.000000 1.000000 100.000000 100.000000 -1089 1.000000 1.000000 100.000000 100.000000 -1090 0.051796 0.035214 9.326659 15.339260 -1091 0.049813 0.044680 10.015601 11.253226 -1092 0.072743 0.046855 9.985116 16.701044 -1093 0.089181 0.062932 20.956358 22.893179 -1094 0.077326 0.032836 7.562488 12.481760 -1095 0.072616 0.030135 8.185815 9.387725 -1096 0.076057 0.057088 7.124602 9.933541 -1097 0.059017 0.031243 10.283781 16.566137 -1098 0.057484 0.038715 7.502962 15.361585 -1099 0.082734 0.041785 11.328798 15.410623 -1100 0.069468 0.045895 7.217528 8.518956 -1101 0.056847 0.052519 8.089050 16.271146 -1102 0.074756 0.039434 6.955292 11.978122 -1103 0.036892 0.018625 9.745257 9.888859 -1104 0.061828 0.036501 7.624344 12.349417 -1105 0.068893 0.054928 8.783019 13.285681 -1106 1.000000 1.000000 100.000000 100.000000 -1107 0.080134 0.051953 8.455803 10.668358 -1108 0.060133 0.052410 12.230743 11.184178 -1109 0.070195 0.034195 7.630539 12.785157 -1110 0.060293 0.040075 8.882654 12.532199 -1111 0.084932 0.047240 13.235785 13.888860 -1112 0.083968 0.051377 10.604919 19.779700 -1113 0.043669 0.029663 7.615102 12.217648 -1114 1.000000 1.000000 100.000000 100.000000 -1115 0.076689 0.052209 7.874198 16.587253 -1116 0.075517 0.063083 9.920098 9.643293 -1117 0.091453 0.076800 12.786763 16.274824 -1118 0.056285 0.056007 11.403655 11.049975 -1119 0.094792 0.065312 12.705295 20.029343 -1120 0.044396 0.023915 12.946583 17.461472 -1121 0.072927 0.028934 10.669910 14.939755 -1122 0.075023 0.048091 8.258265 10.153825 -1123 0.087167 0.057819 9.363631 9.910282 -1124 1.000000 1.000000 100.000000 100.000000 -1125 0.086570 0.055869 11.664785 14.405163 -1126 1.000000 1.000000 100.000000 100.000000 -1127 0.047574 0.033661 7.957520 9.131498 -1128 0.072057 0.045480 10.495313 20.448110 -1129 1.000000 1.000000 100.000000 100.000000 -1130 0.054262 0.028177 7.902236 7.953449 -1131 0.081181 0.077053 10.941482 14.019503 -1132 0.077465 0.041368 14.416032 18.227864 -1133 0.051944 0.011665 7.869925 9.932308 -1134 0.084659 0.078865 7.415405 12.379851 -1135 1.000000 1.000000 100.000000 100.000000 -1136 0.060140 0.025536 6.802082 7.393653 -1137 0.081964 0.032124 7.694000 9.196451 -1138 0.083412 0.050921 11.549686 13.039847 -1139 1.000000 1.000000 100.000000 100.000000 -1140 0.070253 0.028583 8.777362 9.726168 -1141 1.000000 1.000000 100.000000 100.000000 -1142 0.094679 0.047045 7.632088 10.649605 -1143 0.072113 0.030830 10.284592 19.169505 -1144 0.087471 0.071563 11.288095 14.990240 -1145 1.000000 1.000000 100.000000 100.000000 -1146 0.051332 0.032986 7.479362 15.394786 -1147 0.059057 0.045619 9.483160 12.412412 -1148 0.079635 0.049635 8.830203 9.155639 -1149 0.061264 0.040779 7.220145 15.363696 -1150 0.093265 0.068514 12.249402 16.734952 -1151 0.087957 0.063418 10.019694 10.911542 -1152 0.043428 0.025846 6.367400 13.011459 -1153 0.063808 0.076826 6.830943 11.480714 -1154 0.056926 0.033645 8.303673 10.470495 -1155 0.086756 0.055800 11.428318 12.166392 -1156 0.080676 0.043800 11.177166 8.131671 -1157 0.062311 0.041741 11.517133 13.448041 -1158 0.092569 0.042133 8.750921 10.141974 -1159 1.000000 1.000000 100.000000 100.000000 -1160 0.036537 0.018211 14.037714 16.456583 -1161 0.046446 0.042576 10.904687 14.724858 -1162 0.058682 0.046973 7.073502 9.649422 -1163 0.063937 0.063089 10.877601 14.089327 -1164 0.073798 0.053886 8.617329 13.531864 -1165 0.051344 0.033825 4.287441 6.469830 -1166 1.000000 1.000000 100.000000 100.000000 -1167 0.084483 0.073380 8.187259 12.748958 -1168 0.094893 0.052090 9.902848 14.791743 -1169 0.086697 0.056624 7.977763 12.089931 -1170 0.098184 0.072367 10.397975 12.753946 -1171 0.059885 0.032070 9.398772 16.695151 -1172 0.043605 0.023357 8.036625 14.344397 -1173 0.072310 0.043903 12.569196 14.779357 -1174 0.075858 0.035176 11.781105 11.704667 -1175 0.093791 0.056315 13.816591 17.072044 -1176 0.089403 0.073036 7.455203 7.599241 -1177 0.095738 0.088037 10.547786 9.494157 -1178 0.056068 0.031456 8.421784 11.117915 -1179 1.000000 1.000000 100.000000 100.000000 -1180 0.066727 0.043890 10.417842 10.458759 -1181 0.043842 0.022565 9.979608 11.243181 -1182 0.074564 0.045749 7.007277 10.511956 -1183 0.068297 0.042597 9.862009 13.618782 -1184 0.053587 0.034798 5.339134 7.829274 -1185 0.037094 0.019598 7.844326 10.189549 -1186 1.000000 1.000000 100.000000 100.000000 -1187 0.082365 0.054202 10.584366 20.065437 -1188 0.086195 0.054391 11.333363 17.007766 -1189 0.090231 0.045419 10.925797 13.879993 -1190 0.071919 0.044809 12.053089 16.006877 -1191 0.087283 0.050561 10.974253 13.330819 -1192 0.071915 0.038588 7.047323 7.287198 -1193 1.000000 1.000000 100.000000 100.000000 -1194 0.073105 0.032034 12.058452 10.525086 -1195 0.083821 0.048877 13.961267 18.632394 -1196 0.049122 0.032062 8.154032 10.537315 -1197 0.081631 0.062036 7.391266 10.343575 -1198 0.093916 0.056993 12.861347 13.243180 -1199 0.087967 0.052023 6.537626 13.904897 -1200 0.065678 0.041510 8.899694 9.877179 -1201 0.054198 0.045810 9.613030 13.032801 -1202 0.079668 0.062724 9.636299 9.731945 -1203 0.072280 0.028694 7.729763 10.175520 -1204 1.000000 1.000000 100.000000 100.000000 -1205 0.057676 0.026927 9.933383 12.136859 -1206 0.065202 0.038626 12.348532 10.554007 -1207 0.092161 0.064914 11.549484 12.722039 -1208 0.085653 0.047728 11.465928 10.306336 -1209 0.036095 0.022461 11.149525 11.432490 -1210 0.077010 0.037223 7.547818 8.099424 -1211 1.000000 1.000000 100.000000 100.000000 -1212 0.054147 0.026700 6.713295 12.129471 -1213 0.056561 0.028619 9.788218 10.212934 -1214 0.045285 0.028794 10.155169 11.315617 -1215 0.083451 0.070260 10.731068 12.634442 -1216 0.036284 0.026453 8.554063 11.005462 -1217 0.041755 0.030954 7.080376 10.387759 -1218 0.086572 0.042851 11.923172 12.674491 -1219 0.087421 0.057217 8.445124 11.307542 -1220 0.088389 0.082790 13.084167 13.048713 -1221 1.000000 1.000000 100.000000 100.000000 -1222 0.056498 0.041769 12.960512 16.267866 -1223 0.078185 0.038177 8.805222 11.954936 -1224 0.086667 0.048925 8.542755 12.244968 -1225 0.078967 0.053206 6.504772 11.147215 -1226 0.086734 0.032148 9.141572 14.560700 -1227 0.053974 0.031838 6.985343 9.156434 -1228 0.052475 0.035617 11.081123 7.167363 -1229 0.087995 0.068442 7.535708 9.056333 -1230 0.057610 0.045699 9.271260 15.952072 -1231 0.068294 0.034025 11.680591 9.589817 -1232 0.089824 0.071036 5.304419 10.594771 -1233 0.045847 0.026112 7.558533 9.319436 -1234 0.072917 0.064577 8.368025 10.059516 -1235 0.062705 0.041349 9.630708 12.262499 -1236 0.087768 0.060955 9.147403 15.287312 -1237 0.079036 0.037647 9.962503 10.451706 -1238 1.000000 1.000000 100.000000 100.000000 -1239 0.034613 0.016916 7.653858 11.244305 -1240 0.071717 0.053245 11.388571 15.316292 -1241 0.078590 0.064206 17.683711 18.214436 -1242 0.085135 0.063001 9.695391 13.464059 -1243 0.053036 0.027700 10.690115 9.904252 -1244 0.051128 0.031064 9.851282 12.722061 -1245 0.084074 0.073788 6.999994 11.921943 -1246 0.073725 0.046646 8.956652 14.386876 -1247 0.070940 0.056446 11.451727 8.028241 -1248 1.000000 1.000000 100.000000 100.000000 -1249 1.000000 1.000000 100.000000 100.000000 -1250 0.097273 0.055499 15.189496 16.104004 -1251 1.000000 1.000000 100.000000 100.000000 -1252 1.000000 1.000000 100.000000 100.000000 -1253 0.072279 0.030991 14.369651 14.219808 -1254 0.046934 0.023536 6.580581 9.565046 -1255 0.064570 0.045182 13.867790 18.920082 -1256 0.074846 0.042001 11.467690 16.266487 -1257 1.000000 1.000000 100.000000 100.000000 -1258 0.078613 0.037321 7.629169 9.696515 -1259 1.000000 1.000000 100.000000 100.000000 -1260 0.069385 0.035992 9.962687 12.420856 -1261 0.049635 0.031229 8.689957 11.634627 -1262 0.081642 0.048150 16.778547 15.474708 -1263 0.066166 0.044543 7.025818 10.995126 -1264 0.086299 0.073336 8.941812 10.016212 -1265 0.066051 0.043326 11.872237 11.949456 -1266 0.064073 0.026765 9.783171 13.965495 -1267 0.061219 0.024979 9.478613 15.986653 -1268 1.000000 1.000000 100.000000 100.000000 -1269 1.000000 1.000000 100.000000 100.000000 -1270 0.070438 0.038296 9.372434 8.989350 -1271 0.080199 0.083827 10.322776 10.994511 -1272 0.092126 0.037914 12.206575 13.439757 -1273 0.059336 0.027428 11.060262 13.343443 -1274 0.097067 0.070573 12.911310 19.131880 -1275 1.000000 1.000000 100.000000 100.000000 -1276 0.081646 0.032757 9.132152 18.138311 -1277 0.064101 0.032034 9.407196 8.975429 -1278 0.084754 0.053209 9.694866 12.529989 -1279 0.092691 0.079238 9.277208 13.484696 -1280 1.000000 1.000000 100.000000 100.000000 -1281 0.059407 0.047779 12.024405 12.336538 -1282 0.044474 0.043089 10.617796 16.458625 -1283 0.077848 0.046334 10.290383 16.721723 -1284 0.094151 0.061503 8.351712 16.756024 -1285 0.064708 0.041805 11.964110 12.901387 -1286 0.069210 0.052418 11.419204 11.422822 -1287 0.083921 0.052195 10.256894 12.807158 -1288 0.056989 0.036642 8.730843 10.000306 -1289 0.077404 0.054956 8.486196 11.852410 -1290 0.065552 0.042207 8.674901 9.361584 -1291 0.096408 0.036983 13.309616 17.254316 -1292 0.064251 0.033519 10.654811 11.834210 -1293 0.096574 0.061806 11.039990 14.149064 -1294 0.068971 0.052706 8.946893 15.607341 -1295 0.061205 0.033512 7.421330 11.907418 -1296 0.046974 0.031632 8.270700 14.936268 -1297 0.053728 0.041625 9.592585 10.809800 -1298 1.000000 1.000000 100.000000 100.000000 -1299 0.073732 0.036466 8.008908 12.746289 -1300 0.069896 0.039754 10.649783 13.698400 -1301 0.090638 0.056333 8.997335 14.730917 -1302 0.086116 0.044551 15.020340 16.603450 -1303 0.096726 0.075680 11.909425 19.088879 -1304 1.000000 1.000000 100.000000 100.000000 -1305 0.065718 0.035964 7.376436 12.643310 -1306 0.074231 0.058674 18.449114 18.056780 -1307 0.034468 0.018112 4.807224 8.094674 -1308 1.000000 1.000000 100.000000 100.000000 -1309 0.082261 0.027123 7.964643 15.938487 -1310 0.062393 0.032128 8.698412 14.559454 -1311 0.070860 0.047806 11.226943 14.942324 -1312 0.064640 0.029083 8.656833 11.680549 -1313 0.057320 0.033961 7.985057 9.114156 -1314 1.000000 1.000000 100.000000 100.000000 -1315 0.075026 0.032506 7.049284 14.301445 -1316 0.070918 0.039952 9.572839 11.704690 -1317 0.063698 0.049614 15.286460 24.259366 -1318 0.080914 0.058488 8.672010 12.350586 -1319 0.048654 0.034902 8.536677 12.721286 -1320 0.063161 0.029632 10.025674 12.556843 -1321 0.084855 0.032347 9.931625 12.037379 -1322 0.056431 0.065011 13.902658 12.795381 -1323 1.000000 1.000000 100.000000 100.000000 -1324 0.066321 0.037927 12.212315 18.737775 -1325 0.066066 0.056416 11.898131 9.333922 -1326 0.088727 0.056179 7.906360 11.962443 -1327 0.068096 0.035295 8.099238 9.791344 -1328 0.067026 0.052959 10.074470 14.882270 -1329 0.085022 0.060091 10.375113 13.669521 -1330 0.063612 0.074835 7.942386 11.211602 -1331 0.036349 0.025547 7.623918 8.457361 -1332 0.066753 0.049737 12.503054 14.183985 -1333 0.086446 0.038411 8.604438 12.399280 -1334 0.074584 0.061800 11.929049 11.528724 -1335 0.075149 0.073727 17.159523 17.658318 -1336 0.058302 0.028455 10.870964 11.675317 -1337 0.079380 0.036670 10.095732 10.895673 -1338 0.085308 0.050226 10.307471 14.716946 -1339 0.070159 0.035912 7.315429 11.992130 -1340 0.070832 0.029161 12.924882 18.008890 -1341 1.000000 1.000000 100.000000 100.000000 -1342 0.089032 0.037787 6.681797 9.743733 -1343 1.000000 1.000000 100.000000 100.000000 -1344 0.059100 0.029756 6.213697 8.125197 -1345 0.071331 0.071151 13.086473 18.979028 -1346 0.058386 0.044925 11.852124 10.563566 -1347 0.080279 0.043884 11.504031 13.365547 -1348 0.080689 0.065289 11.168839 11.592013 -1349 0.085318 0.036649 11.098593 11.465170 -1350 0.082987 0.038501 7.243918 8.953211 -1351 0.082617 0.071075 12.767216 12.369113 -1352 1.000000 1.000000 100.000000 100.000000 -1353 0.050538 0.023591 5.910155 8.706369 -1354 0.088798 0.049484 12.744512 15.076375 -1355 0.073840 0.037525 5.280580 9.725579 -1356 0.065701 0.045495 10.082261 14.095788 -1357 0.096605 0.047780 12.746692 12.754525 -1358 1.000000 1.000000 100.000000 100.000000 -1359 0.069643 0.058572 11.367298 12.895444 -1360 0.078406 0.028756 7.456202 11.588892 -1361 0.053808 0.035040 7.215405 11.977851 -1362 0.055654 0.047233 9.993172 12.240537 -1363 0.058701 0.031758 7.571583 14.085261 -1364 1.000000 1.000000 100.000000 100.000000 -1365 0.057083 0.057267 11.026872 10.702067 -1366 0.078088 0.048913 13.927588 15.490231 -1367 0.083537 0.052714 11.073435 13.871741 -1368 0.060883 0.024941 8.417853 7.949931 -1369 0.065788 0.048448 12.098977 13.915310 -1370 0.063362 0.038437 6.222043 9.666163 -1371 1.000000 1.000000 100.000000 100.000000 -1372 0.068629 0.068521 14.347396 10.208382 -1373 1.000000 1.000000 100.000000 100.000000 -1374 0.042967 0.024155 8.372147 13.741456 -1375 0.074695 0.052518 7.317900 10.770180 -1376 0.076265 0.025992 16.340409 13.761247 -1377 0.064608 0.051717 9.269688 14.131938 -1378 0.056125 0.035386 5.055155 10.047238 -1379 0.084797 0.079862 10.066873 13.332828 -1380 0.051575 0.029270 9.852283 15.239065 -1381 0.094396 0.056977 9.451921 11.483736 -1382 1.000000 1.000000 100.000000 100.000000 -1383 0.047617 0.030007 7.486353 9.036522 -1384 0.061633 0.053168 10.575864 12.273633 -1385 0.075971 0.056572 7.824117 8.797835 -1386 0.082370 0.061438 8.146944 7.749431 -1387 0.073509 0.032457 9.957620 17.969866 -1388 0.051784 0.025064 6.061357 9.129562 -1389 0.062987 0.030661 8.231349 19.948143 -1390 0.084196 0.049940 12.709646 16.684420 -1391 0.064966 0.032557 14.070912 20.032778 -1392 0.047725 0.031272 8.685427 15.586301 -1393 0.083777 0.041288 9.006158 12.158501 -1394 1.000000 1.000000 100.000000 100.000000 -1395 0.073598 0.036063 8.829845 9.558116 -1396 0.086901 0.031721 6.662901 8.444087 -1397 0.089591 0.070851 9.196396 14.791611 -1398 0.057917 0.031851 7.692415 13.181467 -1399 0.057173 0.042147 12.697431 10.679220 -1400 0.065405 0.027179 8.292021 11.925156 -1401 0.099066 0.042616 10.947341 13.129843 -1402 0.098574 0.049655 5.708918 7.370490 -1403 0.081092 0.036708 8.028582 8.545380 -1404 0.068154 0.046365 10.554056 11.168243 -1405 0.064858 0.038189 8.148929 11.524843 -1406 0.049117 0.024363 10.310856 15.866584 -1407 0.069436 0.036826 9.403701 12.330345 -1408 0.086349 0.048430 11.318992 13.358454 -1409 1.000000 1.000000 100.000000 100.000000 -1410 0.064160 0.050428 9.546172 15.235283 -1411 0.051062 0.039839 7.297121 10.978073 -1412 1.000000 1.000000 100.000000 100.000000 -1413 0.068844 0.029013 7.795909 7.470187 -1414 0.051173 0.040323 7.319925 12.632482 -1415 0.077648 0.048317 8.569083 13.869311 -1416 0.077626 0.037301 4.617215 7.769490 -1417 0.076761 0.065664 8.283130 10.297070 -1418 1.000000 1.000000 100.000000 100.000000 -1419 0.072739 0.081350 13.738533 10.758791 -1420 0.065239 0.021687 8.567830 10.345429 -1421 0.091339 0.055901 9.028836 14.348287 -1422 1.000000 1.000000 100.000000 100.000000 -1423 0.068528 0.045387 7.687306 10.310201 -1424 0.034931 0.013502 6.337337 6.296145 -1425 0.059544 0.023993 14.113022 13.622028 -1426 0.053685 0.042774 7.779219 10.263317 -1427 0.071258 0.066299 9.751382 9.969568 -1428 0.073970 0.046573 11.085759 12.967473 -1429 0.058513 0.027817 7.497976 15.997346 -1430 0.053778 0.030274 6.775559 9.416819 -1431 0.072080 0.053541 8.258717 7.966201 -1432 0.063010 0.047286 9.040153 12.837020 -1433 0.047278 0.037682 9.794881 11.858888 -1434 0.074621 0.077708 11.187142 13.405562 -1435 1.000000 1.000000 100.000000 100.000000 -1436 1.000000 1.000000 100.000000 100.000000 -1437 0.036360 0.030428 7.274274 9.305573 -1438 0.073750 0.059194 12.546586 13.329089 -1439 0.058179 0.032042 11.810878 14.032400 -1440 0.071694 0.044913 7.676716 12.146298 -1441 0.074467 0.041177 9.644644 10.347875 -1442 0.043817 0.035404 10.416770 15.560950 -1443 0.066355 0.051110 11.441548 19.230751 -1444 1.000000 1.000000 100.000000 100.000000 -1445 0.087773 0.060222 8.865310 10.836321 -1446 0.092134 0.053972 9.208858 13.548623 -1447 0.059444 0.034786 6.847668 11.521760 -1448 0.074993 0.040584 10.475448 12.173863 -1449 0.088721 0.064684 10.713430 15.342005 -1450 0.074633 0.037321 10.257805 10.035527 -1451 0.053348 0.020094 7.468573 13.017522 -1452 0.082950 0.043768 10.494361 15.093447 -1453 0.064804 0.033551 8.799245 15.206256 -1454 1.000000 1.000000 100.000000 100.000000 -1455 1.000000 1.000000 100.000000 100.000000 -1456 0.053354 0.034253 11.413839 11.467973 -1457 0.082522 0.069751 11.913549 14.441370 -1458 0.087617 0.035893 10.946159 12.349801 -1459 0.048912 0.032238 5.122676 7.803721 -1460 1.000000 1.000000 100.000000 100.000000 -1461 0.093011 0.046689 9.052854 11.961579 -1462 0.086392 0.049375 13.371185 15.300464 -1463 0.061594 0.055597 9.341034 11.649184 -1464 0.034443 0.027167 5.292236 7.140087 -1465 0.037278 0.016735 8.889782 7.932762 -1466 0.077651 0.055459 6.091392 8.799248 -1467 0.090060 0.038028 10.324089 17.185673 -1468 0.055484 0.036126 8.748980 14.407940 -1469 0.067513 0.060881 6.570538 7.839112 -1470 1.000000 1.000000 100.000000 100.000000 -1471 0.061947 0.028353 10.829300 12.570671 -1472 0.079480 0.097071 16.088462 15.694577 -1473 0.058529 0.039529 10.253530 12.399845 -1474 1.000000 1.000000 100.000000 100.000000 -1475 1.000000 1.000000 100.000000 100.000000 -1476 1.000000 1.000000 100.000000 100.000000 -1477 0.088190 0.043573 13.360262 17.155837 -1478 0.063498 0.030342 8.454820 12.177898 -1479 0.066602 0.059832 10.273771 15.756087 -1480 0.042560 0.029294 8.391858 12.187132 -1481 0.074781 0.055165 9.872773 15.872927 -1482 0.093217 0.090706 9.262485 15.989390 -1483 0.058734 0.036626 9.911922 11.582507 -1484 0.098307 0.066664 7.430269 11.528544 -1485 0.064093 0.036512 8.791723 13.163681 -1486 0.091714 0.084402 6.560646 10.941116 -1487 0.094660 0.042515 7.751870 9.520547 -1488 0.082624 0.055158 10.161333 10.382960 -1489 0.052784 0.029973 7.012666 5.966039 -1490 0.052738 0.026162 7.129494 9.639676 -1491 0.052899 0.025666 5.167287 8.597267 -1492 0.067127 0.040923 10.522796 12.957414 -1493 1.000000 1.000000 100.000000 100.000000 -1494 0.068650 0.033569 9.344486 14.836501 -1495 0.058431 0.029211 9.764623 14.497940 -1496 0.080810 0.044118 8.618989 11.121157 -1497 0.089693 0.058806 10.111549 11.257271 -1498 0.073469 0.056801 10.845179 14.017576 -1499 1.000000 1.000000 100.000000 100.000000 -1500 1.000000 1.000000 100.000000 100.000000 -1501 0.058312 0.030006 9.982474 8.737831 -1502 0.046428 0.043258 5.760820 8.040488 -1503 0.053257 0.044905 12.856085 14.946638 -1504 0.066940 0.056272 8.981256 13.215086 -1505 0.092519 0.054494 11.297613 14.555092 -1506 0.068294 0.071911 13.926847 19.500882 -1507 0.053002 0.034728 8.671601 20.714090 -1508 0.086440 0.042493 12.733214 18.264935 -1509 0.069602 0.033893 8.146333 12.795996 -1510 0.057329 0.031153 7.703019 12.600001 -1511 0.083703 0.059707 12.152019 16.946912 -1512 0.084601 0.056361 9.564668 12.086849 -1513 0.084176 0.079025 8.894143 8.820445 -1514 0.093062 0.092480 13.009129 12.987863 -1515 0.072082 0.042803 7.338817 8.432025 -1516 1.000000 1.000000 100.000000 100.000000 -1517 0.067011 0.044410 10.829490 16.211828 -1518 0.060449 0.037507 7.665282 10.149983 -1519 0.055114 0.043208 10.221282 14.950066 -1520 0.051147 0.032051 13.120383 16.664618 -1521 0.085252 0.039115 9.994679 5.787379 -1522 1.000000 1.000000 100.000000 100.000000 -1523 0.090182 0.047319 11.246931 14.236923 -1524 1.000000 1.000000 100.000000 100.000000 -1525 0.065232 0.062583 5.996781 8.559416 -1526 0.051436 0.022608 6.822403 8.681852 -1527 0.069322 0.045734 5.748787 9.213415 -1528 1.000000 1.000000 100.000000 100.000000 -1529 0.078073 0.045722 14.531102 12.881143 -1530 0.049502 0.043596 12.137004 12.823204 -1531 0.060524 0.041842 6.778884 9.892710 -1532 1.000000 1.000000 100.000000 100.000000 -1533 1.000000 1.000000 100.000000 100.000000 -1534 0.067711 0.052215 9.806119 14.250431 -1535 0.083775 0.041329 8.123932 9.801376 -1536 0.068570 0.040645 8.779131 11.249241 -1537 0.051018 0.024027 7.209403 8.982252 -1538 0.066382 0.042328 13.236794 21.492018 -1539 0.097219 0.047283 12.293823 15.487553 -1540 0.052392 0.017040 6.180651 12.342752 -1541 1.000000 1.000000 100.000000 100.000000 -1542 1.000000 1.000000 100.000000 100.000000 -1543 0.087576 0.046260 7.765313 11.896411 -1544 0.046217 0.022806 10.489231 10.997759 -1545 0.050336 0.018170 9.699383 10.859570 -1546 0.061109 0.055700 9.541975 13.129694 -1547 0.062876 0.063344 9.826659 19.400422 -1548 0.045937 0.026598 10.287585 13.780275 -1549 0.048411 0.030159 7.186994 9.548019 -1550 0.076034 0.028344 9.123768 10.160040 -1551 0.070289 0.043916 9.557334 15.354418 -1552 0.091334 0.052066 13.495137 14.428605 -1553 0.062987 0.032354 8.737540 10.882960 -1554 0.078527 0.049431 7.114862 7.990945 -1555 0.090952 0.050768 12.864280 16.921441 -1556 0.083297 0.040824 9.577292 10.163615 -1557 0.048465 0.027232 8.183212 14.802965 -1558 0.050075 0.059575 9.270248 10.134836 -1559 0.065651 0.040903 11.989195 17.674268 -1560 0.087352 0.040576 11.254804 10.732793 -1561 0.050279 0.046002 10.507209 14.794710 -1562 0.092800 0.057571 6.386768 9.478730 -1563 0.087463 0.066408 8.484764 17.318916 -1564 0.054066 0.039790 9.299589 13.716117 -1565 0.065938 0.053340 13.029835 14.437269 -1566 0.047398 0.049691 10.337926 14.541657 -1567 0.080367 0.079229 10.431468 14.322995 -1568 1.000000 1.000000 100.000000 100.000000 -1569 0.077032 0.050343 10.318320 12.543335 -1570 0.091986 0.061846 9.856510 11.575647 -1571 0.080079 0.048142 7.655191 13.451890 -1572 0.095691 0.061881 9.257118 15.203835 -1573 1.000000 1.000000 100.000000 100.000000 -1574 0.048025 0.031730 8.446973 9.752880 -1575 0.073420 0.039221 8.452156 9.679015 -1576 0.053623 0.037732 9.395525 10.365957 -1577 0.059128 0.031565 7.260579 12.060957 -1578 0.064330 0.066711 6.386134 8.248274 -1579 0.083814 0.062587 12.586274 14.785934 -1580 0.062943 0.045486 11.197559 13.282936 -1581 1.000000 1.000000 100.000000 100.000000 -1582 0.076523 0.028073 7.326747 8.965340 -1583 0.060597 0.031145 8.810396 13.388459 -1584 0.057285 0.030274 8.770626 10.424374 -1585 1.000000 1.000000 100.000000 100.000000 -1586 0.050358 0.036266 9.381113 13.270877 -1587 0.060052 0.033903 10.267494 9.892315 -1588 0.046957 0.028418 14.772028 10.867819 -1589 0.056423 0.029173 8.642824 10.924505 -1590 0.054277 0.030956 10.811701 18.533882 -1591 0.075191 0.055132 13.088826 19.032515 -1592 0.035510 0.018821 7.187419 11.647017 -1593 0.099025 0.029140 10.766188 15.117710 -1594 0.059715 0.032177 9.207279 12.820861 -1595 0.080792 0.038167 8.225471 9.943906 -1596 0.052293 0.029783 6.168101 6.678239 -1597 0.073129 0.036175 8.689113 12.338109 -1598 0.071119 0.046073 16.093504 18.950385 -1599 0.050881 0.018399 9.815421 11.567317 -1600 0.033001 0.013929 11.446680 10.493658 -1601 1.000000 1.000000 100.000000 100.000000 -1602 0.069180 0.017525 10.072303 14.654294 -1603 0.071251 0.063892 8.390340 17.029316 -1604 1.000000 1.000000 100.000000 100.000000 -1605 0.067228 0.044313 8.559790 14.840524 -1606 0.067264 0.054785 10.757406 14.353586 -1607 0.095246 0.095692 12.184219 18.252173 -1608 0.065080 0.045127 7.892138 15.138180 -1609 0.064562 0.032306 9.005491 11.061053 -1610 0.063601 0.027483 7.896646 10.687570 -1611 0.088779 0.063575 11.345497 12.269072 -1612 0.063761 0.059366 9.909868 15.172207 -1613 0.069144 0.037583 7.063902 9.602042 -1614 1.000000 1.000000 100.000000 100.000000 -1615 0.066416 0.044766 7.208130 12.269913 -1616 0.059161 0.064789 6.208107 10.207161 -1617 0.064052 0.038633 6.160722 7.854056 -1618 1.000000 1.000000 100.000000 100.000000 -1619 1.000000 1.000000 100.000000 100.000000 -1620 0.076797 0.047422 9.423269 10.592430 -1621 0.061329 0.073516 11.035039 14.209147 -1622 0.057720 0.035759 8.145496 14.915876 -1623 0.091739 0.065730 10.714390 14.544890 -1624 0.056340 0.033746 13.732763 17.993498 -1625 0.086136 0.081929 12.454318 20.338220 -1626 0.071448 0.048550 11.817779 12.181356 -1627 1.000000 1.000000 100.000000 100.000000 -1628 0.091150 0.095506 17.305063 23.076930 -1629 0.058360 0.053219 9.138468 12.007249 -1630 1.000000 1.000000 100.000000 100.000000 -1631 0.078930 0.048409 11.766199 15.696255 -1632 0.063914 0.042734 7.206348 11.366289 -1633 0.071165 0.060095 8.247783 10.119996 -1634 0.052743 0.035382 10.632492 12.922586 -1635 0.071413 0.033389 13.402314 13.553154 -1636 0.074898 0.032134 10.273520 13.664846 -1637 0.051366 0.021850 7.730081 8.755685 -1638 0.050900 0.024872 9.912614 14.808757 -1639 0.049536 0.034165 8.027905 12.842289 -1640 0.079665 0.087229 13.355087 15.552027 -1641 0.076916 0.042159 8.951658 13.262011 -1642 0.063322 0.030586 13.267643 12.883374 -1643 0.068306 0.048742 9.071455 13.089937 -1644 0.080609 0.052705 8.176277 9.493476 -1645 0.053656 0.026171 6.523788 12.074809 -1646 1.000000 1.000000 100.000000 100.000000 -1647 0.062302 0.024982 8.482549 10.319513 -1648 0.079403 0.056468 12.756360 16.378951 -1649 0.095051 0.042110 7.943680 10.893887 -1650 0.075372 0.043776 13.164200 15.715549 -1651 0.062415 0.035768 7.394689 9.143479 -1652 0.078833 0.062882 8.051671 12.621419 -1653 0.086621 0.066688 15.125423 12.879360 -1654 0.088979 0.057485 7.358967 13.297142 -1655 0.095052 0.042205 9.174353 15.853244 -1656 1.000000 1.000000 100.000000 100.000000 -1657 1.000000 1.000000 100.000000 100.000000 -1658 1.000000 1.000000 100.000000 100.000000 -1659 0.038607 0.025903 7.467323 9.359312 -1660 0.061808 0.052411 5.727108 9.652724 -1661 0.073907 0.069836 8.637203 12.386180 -1662 0.065751 0.045723 20.458346 19.457846 -1663 0.080688 0.056639 15.731728 14.641637 -1664 0.070500 0.035660 11.097442 14.055591 -1665 0.096888 0.069549 13.314340 15.795073 -1666 0.059722 0.033179 11.726760 15.395859 -1667 0.038443 0.026502 11.202873 12.775134 -1668 0.058281 0.044256 6.165515 11.671839 -1669 0.060930 0.034632 12.866116 11.091288 -1670 0.067053 0.042961 11.048149 19.310249 -1671 0.075615 0.033355 5.020819 8.717788 -1672 0.085570 0.073965 10.281066 9.989015 -1673 0.039273 0.024078 5.594573 8.934218 -1674 0.059540 0.039414 11.083660 14.339121 -1675 0.047744 0.017840 5.755237 7.819445 -1676 0.058945 0.044231 8.240917 10.660464 -1677 0.094004 0.055215 12.439280 15.545798 -1678 0.094609 0.044402 10.691220 10.509379 -1679 0.071313 0.049904 5.302416 13.442926 -1680 0.081490 0.058657 8.982682 11.688035 -1681 1.000000 1.000000 100.000000 100.000000 -1682 0.058658 0.034136 7.677616 6.161574 -1683 0.086644 0.087500 7.945838 11.480007 -1684 1.000000 1.000000 100.000000 100.000000 -1685 0.042776 0.023324 8.423930 10.477351 -1686 0.077021 0.071613 12.348426 17.087532 -1687 0.058351 0.040560 6.625430 9.956731 -1688 0.061043 0.072100 6.769673 13.696523 -1689 0.099140 0.051956 13.657574 14.494372 -1690 0.076741 0.052187 14.421984 16.162332 -1691 0.075193 0.048517 7.336759 9.774574 -1692 0.099807 0.064865 9.468993 18.117095 -1693 0.086453 0.043552 5.446219 9.738355 -1694 0.077958 0.047037 13.325640 17.282509 -1695 0.070051 0.046037 11.031630 13.881856 -1696 0.064080 0.059894 10.550547 13.257989 -1697 0.057520 0.030119 10.039227 11.196006 -1698 0.053936 0.045198 8.900821 13.091824 -1699 0.061401 0.038128 7.907934 11.595492 -1700 0.088771 0.065575 6.855998 12.282693 -1701 1.000000 1.000000 100.000000 100.000000 -1702 0.061974 0.052458 10.362886 15.009024 -1703 0.057537 0.032483 7.906237 14.378312 -1704 0.059943 0.028712 7.053034 11.105798 -1705 0.078584 0.030038 7.001391 11.644094 -1706 0.089749 0.042862 10.909944 11.430740 -1707 0.074370 0.045955 8.950003 16.099437 -1708 0.071352 0.029804 8.647392 10.247272 -1709 0.078862 0.056239 23.136261 20.414726 -1710 0.076449 0.050794 9.144273 13.091767 -1711 1.000000 1.000000 100.000000 100.000000 -1712 1.000000 1.000000 100.000000 100.000000 -1713 0.086918 0.025597 11.105320 12.619509 -1714 0.055442 0.029489 7.825783 13.854676 -1715 0.061997 0.038985 10.888169 13.723776 -1716 1.000000 1.000000 100.000000 100.000000 -1717 0.074539 0.043120 7.396613 11.359555 -1718 0.077454 0.045465 8.476379 16.818846 -1719 0.040647 0.030829 12.696357 15.486678 -1720 0.096620 0.063248 9.173920 10.832819 -1721 0.038505 0.015995 6.929860 7.690836 -1722 0.097541 0.033872 6.034277 12.252099 -1723 1.000000 1.000000 100.000000 100.000000 -1724 0.081261 0.044655 12.422345 17.919319 -1725 0.097822 0.056338 13.017257 24.426651 -1726 0.076216 0.059254 8.806560 8.310353 -1727 0.062867 0.039447 11.639126 16.868052 -1728 0.095547 0.045546 11.787382 12.555747 -1729 0.052445 0.030879 9.551791 9.303482 -1730 1.000000 1.000000 100.000000 100.000000 -1731 0.074914 0.040034 13.133315 10.453708 -1732 1.000000 1.000000 100.000000 100.000000 -1733 1.000000 1.000000 100.000000 100.000000 -1734 0.045810 0.025128 7.017211 12.322997 -1735 0.053833 0.034876 7.412885 10.671343 -1736 0.075110 0.040781 11.468012 10.864289 -1737 0.082361 0.046566 11.629413 10.545428 -1738 0.084516 0.056639 10.395519 13.631449 -1739 0.053690 0.023181 11.639958 14.006299 -1740 0.088189 0.067460 11.890849 12.793151 -1741 0.067422 0.063533 7.809798 9.665656 -1742 0.059492 0.033749 10.235698 10.351946 -1743 0.045632 0.022251 7.364388 10.192401 -1744 0.045768 0.053812 17.124547 17.034392 -1745 0.080490 0.053150 8.423039 9.470780 -1746 1.000000 1.000000 100.000000 100.000000 -1747 0.081148 0.066089 11.108338 20.291409 -1748 0.033836 0.015732 8.194412 7.739771 -1749 0.059540 0.027084 12.417663 15.837640 -1750 0.026684 0.015806 6.624175 8.386846 -1751 0.055054 0.024465 9.342763 8.291752 -1752 0.063662 0.036617 13.819772 16.734600 -1753 0.070594 0.047141 7.131385 8.133657 -1754 0.063958 0.028041 11.309752 13.708322 -1755 0.067161 0.024504 6.350305 12.237602 -1756 0.078404 0.044171 6.872167 8.716373 -1757 0.076870 0.057884 11.553880 15.975135 -1758 0.067620 0.030592 8.605743 11.109414 -1759 0.057523 0.062087 9.635544 12.076623 -1760 0.071602 0.034658 12.914211 11.098878 -1761 0.070263 0.041728 11.508679 8.521431 -1762 0.059937 0.034630 10.219394 9.946030 -1763 1.000000 1.000000 100.000000 100.000000 -1764 0.081973 0.037208 8.150316 10.208744 -1765 0.075460 0.048884 7.196918 10.903131 -1766 0.077740 0.069060 12.296117 17.757608 -1767 0.032339 0.016870 10.629635 9.925683 -1768 0.065204 0.059230 10.523264 15.754730 -1769 0.067513 0.052679 9.674622 8.277976 -1770 0.052405 0.058883 11.917724 14.113168 -1771 0.072421 0.021016 12.045314 10.893558 -1772 1.000000 1.000000 100.000000 100.000000 -1773 0.099920 0.067184 17.410390 23.581755 -1774 0.094577 0.060394 10.133816 13.807715 -1775 1.000000 1.000000 100.000000 100.000000 -1776 0.069961 0.038598 10.033789 14.376325 -1777 0.064230 0.060337 11.890544 14.512342 -1778 0.051635 0.021370 7.523737 12.672691 -1779 0.077889 0.034025 11.272273 12.481394 -1780 1.000000 1.000000 100.000000 100.000000 -1781 0.065012 0.046742 10.147432 11.951464 -1782 0.043503 0.033537 11.311327 20.293050 -1783 0.088511 0.044399 13.584349 17.690284 -1784 0.052856 0.055696 11.178334 15.885165 -1785 0.092183 0.040103 14.607780 10.676748 -1786 0.088833 0.045760 7.645729 13.763921 -1787 0.068794 0.039218 7.385786 9.040832 -1788 0.069901 0.082183 7.569728 14.226505 -1789 0.057485 0.050004 12.430154 10.846372 -1790 0.064601 0.050788 10.631027 16.143155 -1791 0.082654 0.045755 7.861307 8.746429 -1792 0.055675 0.024780 6.806553 11.996451 -1793 0.078240 0.030910 5.807001 7.370792 -1794 0.050832 0.028032 12.802746 13.043168 -1795 1.000000 1.000000 100.000000 100.000000 -1796 0.057717 0.044123 14.721133 17.677490 -1797 0.057828 0.030588 8.445793 10.398702 -1798 0.074766 0.037922 12.909145 16.854202 -1799 0.073421 0.045880 8.608015 14.598965 -1800 0.064378 0.063406 9.999341 9.663586 -1801 1.000000 1.000000 100.000000 100.000000 -1802 0.056500 0.061578 9.095767 12.117974 -1803 0.087332 0.084646 11.950248 18.394730 -1804 0.069845 0.046889 12.594406 16.663610 -1805 0.073362 0.032890 12.749327 15.584162 -1806 0.094469 0.049629 6.339916 11.207102 -1807 0.059770 0.057397 8.746245 10.358118 -1808 1.000000 1.000000 100.000000 100.000000 -1809 0.060615 0.037498 11.232169 16.332858 -1810 0.057271 0.037352 6.852422 9.013147 -1811 0.082144 0.055901 11.502619 14.046387 -1812 0.096654 0.059617 5.782032 9.091542 -1813 1.000000 1.000000 100.000000 100.000000 -1814 0.051523 0.036062 7.653522 8.424235 -1815 0.075794 0.081011 7.420145 11.401028 -1816 0.057970 0.030048 9.551461 9.167822 -1817 0.063366 0.025750 11.264790 12.465108 -1818 1.000000 1.000000 100.000000 100.000000 -1819 0.066981 0.020979 10.435555 13.342472 -1820 0.067563 0.026538 7.297118 11.839104 -1821 0.044848 0.029249 14.228568 14.635879 -1822 0.067562 0.052893 7.392550 8.822013 -1823 0.072057 0.048931 6.297531 9.885007 -1824 0.054280 0.031906 10.515287 15.998943 -1825 0.086061 0.061255 9.662978 15.191658 -1826 0.033147 0.014085 6.439433 8.021064 -1827 0.053109 0.048008 10.229517 16.219569 -1828 0.063108 0.052504 9.879545 12.349002 -1829 1.000000 1.000000 100.000000 100.000000 -1830 0.080824 0.051732 7.502867 9.349354 -1831 0.052556 0.024018 8.430038 10.607026 -1832 0.069353 0.048020 13.380514 11.173739 -1833 0.050350 0.043669 12.216022 8.801420 -1834 0.065699 0.048071 11.641870 11.263776 -1835 1.000000 1.000000 100.000000 100.000000 -1836 0.049879 0.020139 8.855802 10.182917 -1837 0.096416 0.044570 8.495144 13.284475 -1838 0.066407 0.046910 7.316699 9.083545 -1839 0.061740 0.029169 7.541508 8.296270 -1840 0.098745 0.045021 7.580520 9.300759 -1841 0.041806 0.031530 13.178270 14.936666 -1842 0.072182 0.051274 9.709878 10.661278 -1843 0.056240 0.034014 7.610754 7.660344 -1844 0.079124 0.043256 12.263251 15.871561 -1845 0.096329 0.091966 11.778313 17.320840 -1846 0.071545 0.019545 8.326599 7.662614 -1847 0.069518 0.040070 9.487871 9.811429 -1848 0.076041 0.063552 15.548533 17.916998 -1849 0.034251 0.041870 10.457349 11.071727 -1850 1.000000 1.000000 100.000000 100.000000 -1851 0.080114 0.022542 9.421333 15.037083 -1852 1.000000 1.000000 100.000000 100.000000 -1853 1.000000 1.000000 100.000000 100.000000 -1854 0.057431 0.044892 8.617716 13.741048 -1855 0.047487 0.025593 5.807580 7.251087 -1856 0.039308 0.018807 9.989397 10.707105 -1857 0.059984 0.037596 7.318000 10.976856 -1858 0.095630 0.042324 8.736078 10.893907 -1859 0.071767 0.033146 10.262713 15.700758 -1860 0.063755 0.053154 12.055296 13.179779 -1861 0.077680 0.042398 11.275312 11.517337 -1862 0.067119 0.026903 11.757954 13.707657 -1863 0.098140 0.046239 7.265990 10.403113 -1864 1.000000 1.000000 100.000000 100.000000 -1865 0.087308 0.077928 8.343433 10.921956 -1866 0.062672 0.031537 13.369063 12.589557 -1867 0.058958 0.028980 9.855564 10.193594 -1868 0.060714 0.031699 6.555795 10.417212 -1869 1.000000 1.000000 100.000000 100.000000 -1870 0.047246 0.030700 8.076070 12.251561 -1871 0.098165 0.071700 8.983198 13.675041 -1872 1.000000 1.000000 100.000000 100.000000 -1873 1.000000 1.000000 100.000000 100.000000 -1874 0.068461 0.056254 10.772712 11.975517 -1875 0.060759 0.038176 10.950961 17.891475 -1876 0.055943 0.038551 8.743678 13.580162 -1877 1.000000 1.000000 100.000000 100.000000 -1878 0.096071 0.068131 11.872873 13.582309 -1879 0.050166 0.037117 9.747863 10.944869 -1880 0.068393 0.051866 9.160164 12.072043 -1881 0.073340 0.046438 16.626001 12.263660 -1882 0.090145 0.054439 8.350673 13.794013 -1883 0.056957 0.031831 6.772011 9.413511 -1884 0.085549 0.026708 12.601444 17.020761 -1885 0.090173 0.038942 8.374850 12.470397 -1886 0.076298 0.029232 10.045827 12.455540 -1887 0.095735 0.029508 12.041978 11.684711 -1888 0.053422 0.030550 9.841027 12.271602 -1889 0.067979 0.056113 11.821382 13.047196 -1890 0.054309 0.021455 12.162485 11.746886 -1891 0.066501 0.045847 10.470742 15.639046 -1892 0.059071 0.037355 9.748601 10.329365 -1893 1.000000 1.000000 100.000000 100.000000 -1894 0.071563 0.039153 10.784917 7.602332 -1895 0.077919 0.044674 9.415333 12.643149 -1896 1.000000 1.000000 100.000000 100.000000 -1897 1.000000 1.000000 100.000000 100.000000 -1898 0.084439 0.059694 11.655629 14.277758 -1899 0.095483 0.073986 11.980617 15.277846 -1900 1.000000 1.000000 100.000000 100.000000 -1901 0.065260 0.031131 10.534433 18.125444 -1902 0.046696 0.032663 8.011118 11.845481 -1903 0.073435 0.055235 8.707206 7.824728 -1904 1.000000 1.000000 100.000000 100.000000 -1905 0.065005 0.039115 8.482780 11.628164 -1906 0.055601 0.054789 12.113901 9.848769 -1907 0.079860 0.080413 12.098883 11.321340 -1908 0.096937 0.053685 9.465595 9.287739 -1909 0.094190 0.051015 17.483952 20.630054 -1910 0.079084 0.039915 9.543556 11.657336 -1911 0.087995 0.045868 6.852001 9.576304 -1912 0.061490 0.071173 9.569957 13.564411 -1913 1.000000 1.000000 100.000000 100.000000 -1914 0.065812 0.047036 6.375482 8.651241 -1915 0.053068 0.019346 13.241932 12.516271 -1916 0.080210 0.037794 7.894073 10.836855 -1917 0.053297 0.043509 8.307201 11.111279 -1918 0.055931 0.031832 8.580261 13.474726 -1919 0.055651 0.035575 11.457446 11.659446 -1920 1.000000 1.000000 100.000000 100.000000 -1921 1.000000 1.000000 100.000000 100.000000 -1922 1.000000 1.000000 100.000000 100.000000 -1923 0.076483 0.042424 14.488000 18.367480 -1924 0.045582 0.025643 5.560156 7.408459 -1925 0.063769 0.034897 7.251635 12.497526 -1926 0.077720 0.059328 7.501611 10.754044 -1927 0.065520 0.036225 12.473935 11.646886 -1928 0.075432 0.041718 6.691394 7.933417 -1929 0.078741 0.052058 15.016296 14.214690 -1930 0.066592 0.050606 12.605094 19.133838 -1931 1.000000 1.000000 100.000000 100.000000 -1932 1.000000 1.000000 100.000000 100.000000 -1933 1.000000 1.000000 100.000000 100.000000 -1934 0.067040 0.048384 9.359038 15.273595 -1935 0.068647 0.026102 10.649084 15.835558 -1936 0.053157 0.056391 11.254260 12.877542 -1937 0.048413 0.018423 10.379729 11.592524 -1938 0.090430 0.063139 9.497401 10.346970 -1939 0.057275 0.027462 6.828639 10.060548 -1940 1.000000 1.000000 100.000000 100.000000 -1941 0.063494 0.024172 7.367163 9.169590 -1942 0.065170 0.033405 9.146360 14.779019 -1943 0.097693 0.046390 11.371098 12.384828 -1944 0.074311 0.045345 7.290663 11.650860 -1945 0.083026 0.043173 9.096510 11.161075 -1946 0.079314 0.061820 10.738962 10.950770 -1947 0.079791 0.044217 12.099868 13.009682 -1948 0.072617 0.039511 7.886802 11.190692 -1949 0.064225 0.050393 10.208091 13.167217 -1950 0.067553 0.046898 7.833608 9.315507 -1951 0.060477 0.024869 6.684395 13.183434 -1952 0.063551 0.034496 10.286800 13.934837 -1953 0.047841 0.023963 7.489542 9.328379 -1954 0.095889 0.056514 10.128123 11.942166 -1955 0.060928 0.026571 10.648359 11.287457 -1956 1.000000 1.000000 100.000000 100.000000 -1957 0.068709 0.046078 6.918927 8.980394 -1958 0.073593 0.040727 10.605895 12.769235 -1959 0.067270 0.060972 8.059508 11.796960 -1960 0.073582 0.058784 9.244048 8.613343 -1961 0.097211 0.071666 13.375166 14.053954 -1962 0.069655 0.038480 11.279068 15.342007 -1963 0.064416 0.030412 9.468437 11.115366 -1964 0.081895 0.047552 7.978556 12.228164 -1965 0.069924 0.032118 8.106158 12.139672 -1966 0.069766 0.028168 10.872764 13.088496 -1967 0.058891 0.043831 9.859519 12.533276 -1968 0.046175 0.047250 10.114211 14.079155 -1969 0.083932 0.053113 8.567728 11.358975 -1970 0.085645 0.036759 9.531714 10.141317 -1971 0.055253 0.034248 9.756208 12.061291 -1972 0.074612 0.034831 7.459451 9.737314 -1973 0.050227 0.032569 6.919833 7.003635 -1974 0.054861 0.025998 13.993077 13.897841 -1975 1.000000 1.000000 100.000000 100.000000 -1976 0.052533 0.027241 7.456487 7.390372 -1977 0.091751 0.057857 18.594746 17.782909 -1978 0.035806 0.015690 7.274793 10.940284 -1979 0.080165 0.052020 9.389393 12.061782 -1980 0.057934 0.028752 9.792685 16.061554 -1981 0.080085 0.053526 12.506449 10.460829 -1982 0.093777 0.050541 9.848040 11.440853 -1983 0.085360 0.086401 10.543844 17.768655 -1984 0.056788 0.030467 8.090603 8.284511 -1985 0.070237 0.025787 6.212595 10.669349 -1986 0.054913 0.044228 10.285480 15.545852 -1987 0.081860 0.076369 6.351661 9.699759 -1988 1.000000 1.000000 100.000000 100.000000 -1989 1.000000 1.000000 100.000000 100.000000 -1990 0.097641 0.038324 10.616666 14.003165 -1991 0.076219 0.040403 9.767919 11.492694 -1992 0.097055 0.039369 11.930374 14.037750 -1993 0.082418 0.051075 9.158853 12.246628 -1994 0.087189 0.079115 17.755164 13.645489 -1995 0.052686 0.026081 8.321913 7.524371 -1996 0.076797 0.049595 15.123988 14.073640 -1997 1.000000 1.000000 100.000000 100.000000 -1998 0.077296 0.049751 7.647296 9.074172 -1999 0.063019 0.024623 6.591745 9.351156 -2000 0.078334 0.045220 8.481642 13.717262 -2001 1.000000 1.000000 100.000000 100.000000 -2002 0.080202 0.045006 6.257762 8.735914 -2003 0.080285 0.040460 14.727396 19.829821 -2004 0.075847 0.058428 11.757537 14.672723 -2005 0.096092 0.051963 12.038433 12.818894 -2006 1.000000 1.000000 100.000000 100.000000 -2007 1.000000 1.000000 100.000000 100.000000 -2008 0.061473 0.045177 9.394483 13.716138 -2009 1.000000 1.000000 100.000000 100.000000 -2010 0.099013 0.061880 8.382656 11.420637 -2011 0.056879 0.026948 8.086277 10.156073 -2012 0.045636 0.025049 7.241560 13.053293 -2013 0.056807 0.044470 13.967606 18.869368 -2014 0.091847 0.087827 8.125267 11.239233 -2015 1.000000 1.000000 100.000000 100.000000 -2016 0.064481 0.041010 8.523997 12.973024 -2017 0.069974 0.042452 15.421832 17.752220 -2018 0.069582 0.064484 12.681563 15.192855 -2019 0.081002 0.059679 15.053136 12.936084 -2020 1.000000 1.000000 100.000000 100.000000 -2021 0.080794 0.067596 16.114307 16.411630 -2022 0.065561 0.049042 8.316301 13.717555 -2023 0.075128 0.026282 6.890536 14.213883 -2024 0.084515 0.074844 12.508424 14.958507 -2025 1.000000 1.000000 100.000000 100.000000 -2026 0.058755 0.056255 14.216661 15.036830 -2027 0.057932 0.040277 9.977052 11.965613 -2028 0.094469 0.035676 11.741888 14.802650 -2029 1.000000 1.000000 100.000000 100.000000 -2030 0.086985 0.042954 10.650633 15.973848 -2031 0.080444 0.047549 12.105535 13.505533 -2032 0.073549 0.057000 7.632180 14.922554 -2033 0.080596 0.070628 13.066719 15.997428 -2034 0.086735 0.061486 10.024270 9.704579 -2035 0.088871 0.024241 8.636406 12.063626 -2036 0.074602 0.044358 7.610286 8.685012 -2037 0.080031 0.048762 9.367456 13.766109 -2038 0.072313 0.053841 8.316100 9.544842 -2039 0.056815 0.030118 9.761452 11.794811 -2040 0.067821 0.029263 8.707152 10.840464 -2041 0.075411 0.030637 12.023704 14.197914 -2042 0.060317 0.027715 8.745629 9.702212 -2043 0.095853 0.066066 10.649984 12.617644 -2044 0.085122 0.048712 8.888888 16.451579 -2045 0.086140 0.068643 9.746632 12.042273 -2046 0.095125 0.042223 9.892857 14.942063 -2047 1.000000 1.000000 100.000000 100.000000 -2048 0.091717 0.094486 10.633049 13.389864 -2049 0.065417 0.045361 10.486776 14.951710 -2050 0.059994 0.021469 12.962333 15.333855 -2051 0.048029 0.037933 12.597783 17.734517 -2052 1.000000 1.000000 100.000000 100.000000 -2053 0.046125 0.041325 8.832326 10.010343 -2054 0.095052 0.069305 13.906523 12.352588 -2055 0.099004 0.079258 10.946939 11.193679 -2056 0.053776 0.048128 10.345037 13.108619 -2057 0.079414 0.035222 8.120395 11.888866 -2058 1.000000 1.000000 100.000000 100.000000 -2059 0.071555 0.039005 12.883093 14.090738 -2060 0.081211 0.057045 7.119437 8.589339 -2061 0.040000 0.023165 11.037205 17.806490 -2062 0.058835 0.030712 9.226087 12.787533 -2063 0.077837 0.060741 9.020060 17.198327 -2064 0.065745 0.031185 10.116840 13.436104 -2065 0.038987 0.030901 7.962299 8.435863 -2066 0.077635 0.051373 6.126375 6.769318 -2067 1.000000 1.000000 100.000000 100.000000 -2068 1.000000 1.000000 100.000000 100.000000 -2069 0.079044 0.027354 5.878017 11.515195 -2070 0.056824 0.034055 8.509310 13.545152 -2071 0.073785 0.054988 10.758455 12.025282 -2072 0.079901 0.053995 13.958059 18.565421 -2073 0.056489 0.043617 7.162990 9.120336 -2074 0.061586 0.020440 8.108745 11.640100 -2075 0.065734 0.027426 7.952363 13.676078 -2076 0.053412 0.026314 9.668055 12.133544 -2077 0.085195 0.057165 13.131586 17.680508 -2078 0.065264 0.037133 6.269625 10.274415 -2079 0.056696 0.036287 7.106997 9.042425 -2080 0.092175 0.053540 16.316077 15.025755 -2081 0.090638 0.055324 7.876018 10.855370 -2082 1.000000 1.000000 100.000000 100.000000 -2083 1.000000 1.000000 100.000000 100.000000 -2084 0.059045 0.029090 11.413871 12.718385 -2085 0.081691 0.045338 10.949594 11.451720 -2086 0.078955 0.036918 7.720763 12.943397 -2087 0.089807 0.038577 11.368923 14.328191 -2088 0.074522 0.037426 9.182943 11.875561 -2089 0.081184 0.058427 9.950565 11.189232 -2090 0.087994 0.052409 6.101434 8.556679 -2091 0.079859 0.023855 8.354932 7.384741 -2092 1.000000 1.000000 100.000000 100.000000 -2093 1.000000 1.000000 100.000000 100.000000 -2094 0.054091 0.027143 11.529798 15.691794 -2095 1.000000 1.000000 100.000000 100.000000 -2096 0.052124 0.056943 7.974337 11.830272 -2097 0.059554 0.039853 9.355617 9.105672 -2098 0.081090 0.032403 9.887942 17.191380 -2099 0.093735 0.026175 8.468284 9.521508 -2100 0.066907 0.038570 18.531343 16.206430 -2101 0.048266 0.034795 5.656725 7.252345 -2102 0.050745 0.029074 17.996689 15.085903 -2103 0.062738 0.028303 7.397168 9.994685 -2104 0.049980 0.027456 7.984027 10.773683 -2105 0.066372 0.044255 10.613251 10.140985 -2106 0.041491 0.022649 10.186596 13.145328 -2107 0.059606 0.054245 7.167624 11.705224 -2108 0.073295 0.047953 11.282753 17.040087 -2109 0.063494 0.030300 7.887394 14.631183 -2110 1.000000 1.000000 100.000000 100.000000 -2111 0.076807 0.060748 9.394034 10.406803 -2112 0.063453 0.036351 9.832183 13.345643 -2113 0.056336 0.039015 10.491639 11.669457 -2114 0.088845 0.044144 8.141521 16.010722 -2115 0.060100 0.028993 6.774822 10.375748 -2116 0.074272 0.037795 8.768881 15.033497 -2117 0.090408 0.045700 14.342209 11.752786 -2118 0.064968 0.029623 5.621081 9.321468 -2119 1.000000 1.000000 100.000000 100.000000 -2120 0.069886 0.042250 11.579567 11.720411 -2121 0.072413 0.052694 10.651687 14.401859 -2122 1.000000 1.000000 100.000000 100.000000 -2123 0.073544 0.069737 9.402440 11.197265 -2124 0.053138 0.025370 7.996994 12.976391 -2125 0.060619 0.054348 10.071156 15.271845 -2126 0.079355 0.034015 8.986765 11.834390 -2127 0.051864 0.031220 6.532127 8.211325 -2128 0.085211 0.064541 10.995123 13.539516 -2129 1.000000 1.000000 100.000000 100.000000 -2130 0.064648 0.047959 7.213945 10.705481 -2131 1.000000 1.000000 100.000000 100.000000 -2132 0.088839 0.039496 8.412122 19.405600 -2133 0.057946 0.034514 9.745309 9.615790 -2134 1.000000 1.000000 100.000000 100.000000 -2135 1.000000 1.000000 100.000000 100.000000 -2136 1.000000 1.000000 100.000000 100.000000 -2137 0.076642 0.050476 12.546418 16.130398 -2138 0.064114 0.067594 18.887879 14.232265 -2139 0.087974 0.063381 14.114248 16.437322 -2140 0.046789 0.027888 9.591973 11.158540 -2141 0.098715 0.077669 13.537365 14.389488 -2142 0.053790 0.031924 12.532051 13.390234 -2143 0.096109 0.084171 12.226956 13.887272 -2144 0.065675 0.039481 10.171858 11.808767 -2145 1.000000 1.000000 100.000000 100.000000 -2146 0.069337 0.047305 13.616030 11.326168 -2147 0.043127 0.019311 10.003885 13.505339 -2148 0.068446 0.045745 9.771799 11.701219 -2149 0.085208 0.062695 13.007281 15.035065 -2150 0.081387 0.045609 9.002509 8.294370 -2151 0.079884 0.037623 8.957948 12.102942 -2152 1.000000 1.000000 100.000000 100.000000 -2153 0.074957 0.075960 15.622704 15.340271 -2154 0.065424 0.036287 6.607332 8.506069 -2155 0.068233 0.039856 9.730033 14.762910 -2156 0.068422 0.053973 8.973373 12.861317 -2157 0.099152 0.048722 13.175667 15.404189 -2158 0.047176 0.022156 6.484857 9.311759 -2159 0.090744 0.056030 10.045311 10.279015 -2160 0.061268 0.028916 12.395524 15.862561 -2161 0.099534 0.087259 10.949945 15.192654 -2162 0.097515 0.059070 9.108328 8.561724 -2163 0.080739 0.028228 8.776793 11.347264 -2164 0.063124 0.053927 12.000969 11.355149 -2165 0.063824 0.045075 8.872192 10.926466 -2166 0.083174 0.060134 8.429260 10.881418 -2167 0.061847 0.037937 11.078950 14.868273 -2168 0.052771 0.018474 9.467988 10.775404 -2169 1.000000 1.000000 100.000000 100.000000 -2170 1.000000 1.000000 100.000000 100.000000 -2171 0.072245 0.064686 9.094874 11.474573 -2172 0.084546 0.069952 9.280741 9.896787 -2173 1.000000 1.000000 100.000000 100.000000 -2174 0.080502 0.054626 10.161119 13.196234 -2175 0.067512 0.059388 10.596903 11.010468 -2176 0.071837 0.046167 9.197668 11.032367 -2177 0.090609 0.042215 7.879831 9.943515 -2178 1.000000 1.000000 100.000000 100.000000 -2179 0.090901 0.035410 9.086528 10.211756 -2180 0.047647 0.064987 8.984808 8.668940 -2181 0.069668 0.056909 11.498687 14.086257 -2182 0.086639 0.051717 13.321873 16.135576 -2183 0.037913 0.030390 8.148759 12.136241 -2184 0.095645 0.053318 8.991377 13.125508 -2185 0.093567 0.049505 8.743286 8.978123 -2186 0.045273 0.048054 10.239824 11.501462 -2187 0.059882 0.031351 10.308830 11.130939 -2188 0.041790 0.019576 6.683536 6.052962 -2189 0.079243 0.045204 12.931687 10.012520 -2190 0.096982 0.068958 7.233447 12.780496 -2191 0.056114 0.029359 12.588815 11.165424 -2192 0.093438 0.070799 8.566743 10.232979 -2193 0.082097 0.066769 9.305227 12.045207 -2194 1.000000 1.000000 100.000000 100.000000 -2195 1.000000 1.000000 100.000000 100.000000 -2196 0.068553 0.084189 13.119460 16.814848 -2197 1.000000 1.000000 100.000000 100.000000 -2198 0.041139 0.033063 8.922189 12.499936 -2199 0.081157 0.060667 10.001329 10.290834 -2200 0.076790 0.054244 12.531582 13.452959 -2201 0.063355 0.044760 9.379242 17.020723 -2202 0.048307 0.025464 11.640760 11.274760 -2203 0.063546 0.042944 11.501873 13.348231 -2204 0.051111 0.023500 12.042420 10.780215 -2205 1.000000 1.000000 100.000000 100.000000 -2206 1.000000 1.000000 100.000000 100.000000 -2207 0.071330 0.035133 7.110387 13.916285 -2208 0.057770 0.039104 11.808100 16.459843 -2209 0.067066 0.034760 7.503736 11.739810 -2210 0.092440 0.069926 10.683343 10.880896 -2211 1.000000 1.000000 100.000000 100.000000 -2212 0.072047 0.081119 5.696748 9.942743 -2213 1.000000 1.000000 100.000000 100.000000 -2214 1.000000 1.000000 100.000000 100.000000 -2215 0.083804 0.049711 9.409931 14.805711 -2216 0.070077 0.044169 7.955918 8.884031 -2217 0.069160 0.024599 11.037435 13.514172 -2218 0.061025 0.023713 6.431057 6.781891 -2219 0.070329 0.044084 13.997487 19.531977 -2220 0.071285 0.038781 11.252849 10.956256 -2221 0.057307 0.038933 6.161745 11.083907 -2222 1.000000 1.000000 100.000000 100.000000 -2223 0.066085 0.053281 10.688015 9.784519 -2224 1.000000 1.000000 100.000000 100.000000 -2225 0.058167 0.039103 9.996069 11.217220 -2226 0.033641 0.016437 6.787354 7.482716 -2227 0.080910 0.037295 8.787574 10.741412 -2228 0.055554 0.061991 9.613615 7.900634 -2229 0.054136 0.029879 7.328758 8.890353 -2230 0.083244 0.060117 11.806175 12.030639 -2231 1.000000 1.000000 100.000000 100.000000 -2232 0.077297 0.037489 9.464370 12.305269 -2233 0.049986 0.041688 6.917062 8.501647 -2234 0.076113 0.047464 9.935249 11.682460 -2235 0.093128 0.036117 15.460609 16.984396 -2236 0.071106 0.043375 10.843450 14.241239 -2237 0.064511 0.053044 18.719615 21.283166 -2238 1.000000 1.000000 100.000000 100.000000 -2239 1.000000 1.000000 100.000000 100.000000 -2240 0.069986 0.022984 7.578924 15.780660 -2241 1.000000 1.000000 100.000000 100.000000 -2242 0.079908 0.049613 11.250269 18.161535 -2243 0.081452 0.027740 6.482713 7.209208 -2244 0.085357 0.049473 6.759195 9.077504 -2245 0.063151 0.058371 7.343648 9.356961 -2246 1.000000 1.000000 100.000000 100.000000 -2247 0.077881 0.098709 12.161284 16.404519 -2248 0.086086 0.079126 11.562354 12.750950 -2249 1.000000 1.000000 100.000000 100.000000 -2250 0.043552 0.019023 5.671156 8.321815 -2251 0.056184 0.029377 10.942775 14.262415 -2252 0.089267 0.075251 9.960151 18.903598 -2253 0.053409 0.028725 10.274244 12.166047 -2254 0.084534 0.077165 7.867859 11.090792 -2255 0.063947 0.048836 12.601434 14.164124 -2256 1.000000 1.000000 100.000000 100.000000 -2257 0.063551 0.029634 7.599601 13.452563 -2258 1.000000 1.000000 100.000000 100.000000 -2259 0.055600 0.047099 16.082037 16.102635 -2260 0.069290 0.039416 6.959102 7.309131 -2261 0.067139 0.027982 9.278467 11.214548 -2262 0.059901 0.027590 8.524364 8.060132 -2263 0.070729 0.048854 7.133218 12.086431 -2264 0.082434 0.026582 8.769699 11.501249 -2265 0.086910 0.038920 10.941508 11.946752 -2266 1.000000 1.000000 100.000000 100.000000 -2267 0.064721 0.038121 10.291456 17.073735 -2268 0.070852 0.040830 8.681878 10.655228 -2269 0.061246 0.036065 11.754908 9.203782 -2270 1.000000 1.000000 100.000000 100.000000 -2271 0.055947 0.024674 6.276993 6.640484 -2272 0.083548 0.050384 8.384173 12.823415 -2273 0.069153 0.054853 6.743570 10.607658 -2274 1.000000 1.000000 100.000000 100.000000 -2275 0.071789 0.048320 12.258021 14.903420 -2276 1.000000 1.000000 100.000000 100.000000 -2277 0.086757 0.034284 8.364810 11.787694 -2278 0.099031 0.085104 8.355601 14.864644 -2279 0.078650 0.042217 11.485556 10.806659 -2280 0.086625 0.049239 6.633919 6.944338 -2281 0.091540 0.046761 10.817494 11.821439 -2282 0.057055 0.036564 5.985919 7.222088 -2283 0.051146 0.031482 7.952207 9.238115 -2284 0.056565 0.041246 12.380173 13.194852 -2285 1.000000 1.000000 100.000000 100.000000 -2286 0.058305 0.046246 7.267810 14.308745 -2287 0.065605 0.066800 10.667906 13.353441 -2288 0.042988 0.023028 6.401252 9.385970 -2289 0.055805 0.046312 9.275703 13.562365 -2290 0.075813 0.028815 7.378918 12.870050 -2291 0.082608 0.048809 8.664943 16.815207 -2292 0.090093 0.058331 15.394264 15.493221 -2293 0.076235 0.047965 8.666196 11.605747 -2294 0.069602 0.029293 8.136187 8.448741 -2295 0.047242 0.027361 9.552131 10.740357 -2296 0.071894 0.043658 10.330597 12.579883 -2297 0.066061 0.033823 9.348349 8.718108 -2298 0.059819 0.031886 5.795441 7.232159 -2299 1.000000 1.000000 100.000000 100.000000 -2300 0.060078 0.036858 13.722464 15.094118 -2301 0.064754 0.025398 8.981466 12.139062 -2302 0.089311 0.037314 11.341883 10.317042 -2303 0.068709 0.050720 8.051444 10.655394 -2304 0.096821 0.070951 8.504296 14.307929 -2305 0.089173 0.043956 8.691650 13.309132 -2306 0.085889 0.097532 7.661621 11.443475 -2307 0.075737 0.042229 8.309248 17.062543 -2308 0.089205 0.042347 9.508161 13.351387 -2309 0.074470 0.033568 6.934129 11.983962 -2310 0.072886 0.029510 7.897825 10.191079 -2311 1.000000 1.000000 100.000000 100.000000 -2312 0.049244 0.040071 10.263438 12.437468 -2313 0.086712 0.041541 11.237046 10.993401 -2314 0.097909 0.084690 8.569787 10.698182 -2315 0.036339 0.027999 7.341379 8.092482 -2316 0.077261 0.039208 11.207006 15.058326 -2317 0.084092 0.043868 9.454874 11.560089 -2318 0.054891 0.036379 6.789899 12.574108 -2319 0.050735 0.041868 9.867656 15.563944 -2320 1.000000 1.000000 100.000000 100.000000 -2321 0.066966 0.031627 10.665053 15.765651 -2322 0.087833 0.053631 9.631997 11.095375 -2323 0.060794 0.037619 6.659818 6.933196 -2324 0.055488 0.042357 10.219921 11.899400 -2325 0.066556 0.026855 8.021112 10.512408 -2326 0.062294 0.053249 12.893934 14.481358 -2327 0.040347 0.024116 11.163813 16.499849 -2328 0.079641 0.034210 9.835064 9.762232 -2329 0.051301 0.027483 10.645363 10.498607 -2330 0.078324 0.058768 9.684058 11.570946 -2331 0.057721 0.028276 9.398250 8.823634 -2332 0.079121 0.044466 14.745955 15.395011 -2333 0.047568 0.042732 8.484097 16.724580 -2334 0.053945 0.058893 11.836120 14.601158 -2335 0.085097 0.052680 7.590894 12.915634 -2336 0.056629 0.033601 9.299428 15.962819 -2337 1.000000 1.000000 100.000000 100.000000 -2338 0.065852 0.024960 5.074112 7.317166 -2339 0.064694 0.051955 7.893525 9.068019 -2340 0.080237 0.081530 11.358559 15.802697 -2341 0.058619 0.037795 12.506900 14.428938 -2342 0.084732 0.055558 12.040722 19.935319 -2343 0.093748 0.062502 12.022952 16.965106 -2344 0.047845 0.022093 9.397667 12.221587 -2345 0.070016 0.039143 9.307925 9.267993 -2346 0.075307 0.029584 10.286753 15.726827 -2347 0.080647 0.066899 8.385325 14.500584 -2348 0.053766 0.020804 8.801934 10.445326 -2349 0.097958 0.072078 16.158909 14.948795 -2350 0.051440 0.038180 7.109673 8.821052 -2351 0.069380 0.059528 10.951857 10.292756 -2352 0.070628 0.045659 12.657432 11.475383 -2353 1.000000 1.000000 100.000000 100.000000 -2354 0.073064 0.040093 10.313063 11.921409 -2355 0.092537 0.065136 13.313101 10.343069 -2356 0.068797 0.031540 11.513525 10.208920 -2357 1.000000 1.000000 100.000000 100.000000 -2358 0.073321 0.039140 14.097224 20.808480 -2359 1.000000 1.000000 100.000000 100.000000 -2360 0.089629 0.048599 13.991500 14.747320 -2361 0.068765 0.037458 11.017086 10.930700 -2362 1.000000 1.000000 100.000000 100.000000 -2363 0.086572 0.041743 8.189885 13.639576 -2364 0.034033 0.029535 7.376101 11.012117 -2365 0.049792 0.026417 11.743323 13.150536 -2366 0.082967 0.055677 12.514162 17.532507 -2367 0.072632 0.055970 12.291794 14.711737 -2368 0.043351 0.029638 8.482524 15.883766 -2369 1.000000 1.000000 100.000000 100.000000 -2370 0.053890 0.048207 9.420558 10.916216 -2371 0.085706 0.081708 11.762531 16.383239 -2372 0.077750 0.060396 6.913850 9.419122 -2373 0.062270 0.033056 8.890323 10.657700 -2374 0.080596 0.034463 9.871683 10.209528 -2375 0.077507 0.048641 7.027935 7.927850 -2376 0.075439 0.041327 12.579825 15.674957 -2377 0.066110 0.037527 7.182091 10.181888 -2378 0.037793 0.023517 7.822245 11.353455 -2379 1.000000 1.000000 100.000000 100.000000 -2380 0.074875 0.063903 10.193434 13.751201 -2381 1.000000 1.000000 100.000000 100.000000 -2382 1.000000 1.000000 100.000000 100.000000 -2383 0.091647 0.046028 12.170840 17.995710 -2384 0.074777 0.059316 6.867926 10.774237 -2385 0.072952 0.053173 13.631556 10.618178 -2386 0.059771 0.025340 9.317744 10.768526 -2387 0.064906 0.063575 9.635754 10.178147 -2388 0.094490 0.029170 9.421875 12.856065 -2389 1.000000 1.000000 100.000000 100.000000 -2390 0.090664 0.053427 11.508711 14.608195 -2391 0.087301 0.073134 11.845439 13.297712 -2392 1.000000 1.000000 100.000000 100.000000 -2393 0.085122 0.048820 11.274520 18.859094 -2394 0.043196 0.049659 7.329355 8.418345 -2395 0.079256 0.039187 9.584797 13.151352 -2396 0.071215 0.043352 11.147766 13.274836 -2397 0.085372 0.027228 9.937144 12.234504 -2398 0.052584 0.025219 5.523612 7.488351 -2399 0.087604 0.065433 10.052137 15.299902 -2400 0.077004 0.040905 8.668692 11.771918 -2401 0.053312 0.033121 12.101600 13.108584 -2402 0.074702 0.039201 12.103805 11.521185 -2403 0.088521 0.039816 10.572813 10.376318 -2404 0.053256 0.039815 7.301907 11.212923 -2405 0.074242 0.051962 8.339515 17.150341 -2406 0.074946 0.071515 9.612002 11.373753 -2407 0.082084 0.043091 10.118122 10.125312 -2408 0.041257 0.023609 7.210713 11.711168 -2409 0.099351 0.055372 10.934818 15.891195 -2410 1.000000 1.000000 100.000000 100.000000 -2411 0.081980 0.026553 15.308512 15.038291 -2412 0.071805 0.052336 12.636898 12.450971 -2413 0.055543 0.022372 8.220506 9.411362 -2414 0.047438 0.019871 6.360360 9.013592 -2415 0.040613 0.035615 8.091159 8.792612 -2416 0.052141 0.033836 8.023285 11.792930 -2417 0.061071 0.032275 8.770431 9.246690 -2418 0.079883 0.042347 6.665638 10.650567 -2419 1.000000 1.000000 100.000000 100.000000 -2420 0.092404 0.046791 9.822637 11.319940 -2421 1.000000 1.000000 100.000000 100.000000 -2422 1.000000 1.000000 100.000000 100.000000 -2423 0.047930 0.021097 8.207505 8.775068 -2424 0.091836 0.069307 10.522495 17.639681 -2425 0.057238 0.030013 7.503763 14.555353 -2426 0.049370 0.031740 8.334697 11.874016 -2427 0.049972 0.032953 9.192294 13.601442 -2428 1.000000 1.000000 100.000000 100.000000 -2429 0.092124 0.061535 13.046360 18.192099 -2430 1.000000 1.000000 100.000000 100.000000 -2431 1.000000 1.000000 100.000000 100.000000 -2432 0.069260 0.059740 10.327388 13.908488 -2433 0.062884 0.031465 9.561468 8.883292 -2434 0.096138 0.046628 10.385642 12.786320 -2435 0.077645 0.033963 14.519777 11.455359 -2436 0.089043 0.050069 9.594431 11.292746 -2437 1.000000 1.000000 100.000000 100.000000 -2438 0.052534 0.028647 9.049120 12.238272 -2439 0.060034 0.039040 9.536535 10.032398 -2440 0.086676 0.043499 13.828845 12.730135 -2441 1.000000 1.000000 100.000000 100.000000 -2442 0.063216 0.039604 9.117276 14.467631 -2443 0.059859 0.035884 10.306146 12.373974 -2444 0.083685 0.056945 6.527666 10.873337 -2445 0.055017 0.029410 7.671672 10.258123 -2446 0.086388 0.038141 7.527155 11.017384 -2447 0.071828 0.045350 8.940071 11.901395 -2448 0.077958 0.054053 12.710630 11.843870 -2449 0.061416 0.043980 10.492919 13.236896 -2450 0.066910 0.032807 11.220749 15.367727 -2451 0.080588 0.079051 10.604322 17.326948 -2452 0.048592 0.033981 11.175302 15.817574 -2453 0.089414 0.064280 6.044560 11.446813 -2454 0.052952 0.060697 11.557389 11.019214 -2455 0.079233 0.052198 12.881573 11.593281 -2456 1.000000 1.000000 100.000000 100.000000 -2457 0.071840 0.057498 16.098191 16.714519 -2458 1.000000 1.000000 100.000000 100.000000 -2459 1.000000 1.000000 100.000000 100.000000 -2460 1.000000 1.000000 100.000000 100.000000 -2461 0.075456 0.068745 11.601028 17.553231 -2462 1.000000 1.000000 100.000000 100.000000 -2463 0.080655 0.057233 8.158282 12.536552 -2464 0.035804 0.048261 6.867250 7.527840 -2465 0.050670 0.037167 8.691071 10.812624 -2466 0.059311 0.031606 11.639668 14.382595 -2467 0.070472 0.041042 12.424351 13.806828 -2468 0.094481 0.073239 8.625618 12.617319 -2469 0.085603 0.056737 11.552661 12.919405 -2470 1.000000 1.000000 100.000000 100.000000 -2471 0.091258 0.053785 9.817058 14.618958 -2472 0.071622 0.043069 6.597002 9.991530 -2473 0.051845 0.037950 7.598057 9.703370 -2474 1.000000 1.000000 100.000000 100.000000 -2475 0.079128 0.060553 8.576756 13.732693 -2476 0.068458 0.047321 8.421578 18.636028 -2477 0.048210 0.032299 9.820145 10.995794 -2478 0.043078 0.047312 8.457224 12.010848 -2479 0.053993 0.036409 10.159727 12.978775 -2480 0.060567 0.043033 10.565917 13.357769 -2481 0.043065 0.014402 8.329608 10.246086 -2482 1.000000 1.000000 100.000000 100.000000 -2483 0.092003 0.052456 11.903757 15.430857 -2484 0.088600 0.060452 10.106293 9.415848 -2485 0.055676 0.037837 8.458500 11.364024 -2486 0.082790 0.046500 9.085105 10.517447 -2487 0.085997 0.064940 9.797842 19.480270 -2488 0.093753 0.043678 7.300344 9.627169 -2489 0.062811 0.029711 8.842158 10.345637 -2490 0.093516 0.066382 11.854692 12.393580 -2491 0.069838 0.034928 7.897765 9.598804 -2492 0.087390 0.063593 11.225954 13.433153 -2493 0.047286 0.042127 10.894349 11.602613 -2494 1.000000 1.000000 100.000000 100.000000 -2495 0.068372 0.022309 10.111383 12.427739 -2496 1.000000 1.000000 100.000000 100.000000 -2497 0.087503 0.055208 9.195621 12.831861 -2498 1.000000 1.000000 100.000000 100.000000 -2499 1.000000 1.000000 100.000000 100.000000 -2500 0.069448 0.049247 9.190513 15.596970 -2501 0.066370 0.035347 10.509448 14.608256 -2502 0.084698 0.062426 12.970923 14.912743 -2503 0.065878 0.055173 8.819896 13.290583 -2504 0.050723 0.043226 9.171914 19.744978 -2505 0.095233 0.064912 12.713691 12.745865 -2506 0.099356 0.036227 9.336113 10.651751 -2507 0.052098 0.063113 12.658870 17.371444 -2508 0.073438 0.030068 7.283918 12.431758 -2509 0.099297 0.039827 8.227355 13.716589 -2510 0.070869 0.049412 10.446242 10.396988 -2511 0.083067 0.039866 8.270231 12.242459 -2512 0.075840 0.051935 10.849402 14.243153 -2513 0.031736 0.020374 6.643467 7.096990 -2514 0.069482 0.062062 9.571183 10.800299 -2515 0.077512 0.048839 12.104975 9.454883 -2516 0.064488 0.029029 12.329395 16.434096 -2517 0.056033 0.024767 8.035766 15.204826 -2518 1.000000 1.000000 100.000000 100.000000 -2519 1.000000 1.000000 100.000000 100.000000 -2520 0.071462 0.069003 11.222885 7.800477 -2521 0.081336 0.038413 7.115957 9.304675 -2522 1.000000 1.000000 100.000000 100.000000 -2523 1.000000 1.000000 100.000000 100.000000 -2524 0.085598 0.057994 11.111164 14.153039 -2525 1.000000 1.000000 100.000000 100.000000 -2526 0.072100 0.024341 10.488164 11.071415 -2527 0.075130 0.040560 7.303544 10.583224 -2528 0.066488 0.064674 16.558913 18.235687 -2529 0.070666 0.041051 6.552100 6.940153 -2530 0.074930 0.046339 14.132284 14.923154 -2531 1.000000 1.000000 100.000000 100.000000 -2532 0.071824 0.045806 8.636970 12.207949 -2533 0.086151 0.038599 11.592913 14.290583 -2534 0.059116 0.037504 10.428799 11.360018 -2535 0.068424 0.030598 11.289331 8.745465 -2536 1.000000 1.000000 100.000000 100.000000 -2537 0.068959 0.028944 12.576671 15.423280 -2538 0.083491 0.052137 11.098522 18.004632 -2539 0.064801 0.027594 10.654787 14.623689 -2540 0.057553 0.037206 9.330183 13.946710 -2541 0.062130 0.033434 9.497724 20.634079 -2542 0.062273 0.042728 6.350270 9.553286 -2543 0.062286 0.024321 6.919289 9.509685 -2544 0.052951 0.043961 10.019655 13.206658 -2545 0.084701 0.041935 9.679187 12.855561 -2546 0.057293 0.029502 11.813818 10.722058 -2547 0.038214 0.027727 8.620624 9.303752 -2548 0.046017 0.051442 8.550076 10.353317 -2549 1.000000 1.000000 100.000000 100.000000 -2550 0.065240 0.027954 8.714180 10.811595 -2551 0.066275 0.040535 11.496400 10.512350 -2552 0.086425 0.040244 7.507410 11.033442 -2553 1.000000 1.000000 100.000000 100.000000 -2554 0.053077 0.029304 8.809723 9.139020 -2555 0.050799 0.055958 15.778573 16.019667 -2556 0.090921 0.087636 9.456102 18.363467 -2557 0.081832 0.038838 14.914228 17.695728 -2558 0.090091 0.043623 13.063697 15.872374 -2559 0.094664 0.086554 13.232972 12.146825 -2560 0.060545 0.029445 7.701187 11.129991 -2561 1.000000 1.000000 100.000000 100.000000 -2562 0.089184 0.061665 7.116104 8.298286 -2563 0.063928 0.036582 13.197398 15.437256 -2564 0.092092 0.062111 11.635590 18.211208 -2565 0.086954 0.094906 8.838865 6.919123 -2566 0.089399 0.052912 12.498300 13.343788 -2567 0.097143 0.044038 10.763180 11.572508 -2568 1.000000 1.000000 100.000000 100.000000 -2569 0.063784 0.033336 9.384949 11.534924 -2570 0.054249 0.033101 8.188571 7.914180 -2571 0.081057 0.045411 10.616776 11.240848 -2572 0.081715 0.042856 12.015699 14.816114 -2573 0.052741 0.027738 8.968623 11.683886 -2574 0.091860 0.024696 10.109714 12.310839 -2575 1.000000 1.000000 100.000000 100.000000 -2576 0.084227 0.052249 7.087535 12.955111 -2577 0.090740 0.075295 9.812984 17.839525 -2578 0.065889 0.015423 8.274059 14.327179 -2579 0.061534 0.025570 12.402874 21.544007 -2580 1.000000 1.000000 100.000000 100.000000 -2581 0.073794 0.044322 10.614425 14.806723 -2582 0.085093 0.038171 10.845737 13.617339 -2583 1.000000 1.000000 100.000000 100.000000 -2584 0.097534 0.068213 9.763219 15.633054 -2585 0.067066 0.039506 13.518923 13.666044 -2586 0.067862 0.062024 7.817948 9.989693 -2587 0.060750 0.052176 9.124578 13.821538 -2588 0.042767 0.022070 7.809219 10.943610 -2589 0.042503 0.022317 5.589498 10.430518 -2590 0.037654 0.019692 10.825010 11.332987 -2591 0.085555 0.068138 9.587396 14.883509 -2592 0.068136 0.047241 9.264536 16.941795 -2593 1.000000 1.000000 100.000000 100.000000 -2594 0.054622 0.045725 11.293947 13.257293 -2595 0.035148 0.024964 14.523241 11.708616 -2596 0.084358 0.047865 8.269818 11.975206 -2597 0.061698 0.032204 11.793065 22.273330 -2598 0.094673 0.058464 11.493806 12.298594 -2599 0.074665 0.049302 9.720935 14.880862 -2600 0.044814 0.043695 5.847999 11.386269 -2601 0.097272 0.053643 7.241941 16.637624 -2602 0.056367 0.066221 10.882831 11.983271 -2603 0.069691 0.040123 7.380838 8.701413 -2604 0.072305 0.037978 15.470762 19.597576 -2605 0.051668 0.038552 10.103199 9.573145 -2606 0.065680 0.038648 12.127839 14.625478 -2607 0.081318 0.048408 10.407993 16.105182 -2608 0.057124 0.044954 8.662102 11.193935 -2609 0.085593 0.071802 13.422248 18.938630 -2610 0.052757 0.034318 12.028940 9.942090 -2611 0.080228 0.055445 10.132001 10.375214 -2612 0.068649 0.042205 6.856849 10.674161 -2613 0.065000 0.047900 10.938286 13.660506 -2614 0.086855 0.075729 10.190931 14.140355 -2615 0.076376 0.024823 7.672715 11.669459 -2616 0.082488 0.087386 11.980770 11.077463 -2617 0.098490 0.034112 16.048138 13.322599 -2618 0.052216 0.024558 6.622009 10.854813 -2619 0.083065 0.026768 9.576903 11.773305 -2620 0.045071 0.033853 12.541235 12.873783 -2621 1.000000 1.000000 100.000000 100.000000 -2622 0.098099 0.068778 11.840731 13.175339 -2623 0.057103 0.030128 11.347316 13.792387 -2624 1.000000 1.000000 100.000000 100.000000 -2625 0.082708 0.049699 11.624174 19.644146 -2626 1.000000 1.000000 100.000000 100.000000 -2627 1.000000 1.000000 100.000000 100.000000 -2628 0.071762 0.046310 11.410088 19.077348 -2629 0.055024 0.021166 8.836797 8.977779 -2630 0.041419 0.028808 8.219944 9.500832 -2631 0.063631 0.029449 9.447115 13.606125 -2632 0.056075 0.042309 10.760285 16.282130 -2633 0.026659 0.011378 5.825826 9.997257 -2634 1.000000 1.000000 100.000000 100.000000 -2635 0.066954 0.022315 9.425587 16.135100 -2636 0.098552 0.053538 12.916770 14.711089 -2637 0.073096 0.047830 10.866074 15.819875 -2638 0.052402 0.021408 11.016797 11.074555 -2639 0.047891 0.048563 8.523850 15.679271 -2640 0.083516 0.058711 11.514540 13.812630 -2641 0.073845 0.044439 8.304691 12.696881 -2642 0.082306 0.048164 9.268885 11.987196 -2643 1.000000 1.000000 100.000000 100.000000 -2644 0.066351 0.048457 11.442568 11.535304 -2645 1.000000 1.000000 100.000000 100.000000 -2646 0.033512 0.012916 6.529460 8.892041 -2647 0.047648 0.031261 12.774778 15.805260 -2648 1.000000 1.000000 100.000000 100.000000 -2649 0.062815 0.037634 10.684323 15.234401 -2650 0.096545 0.063074 7.529323 10.252970 -2651 0.076486 0.040411 7.346871 8.430388 -2652 1.000000 1.000000 100.000000 100.000000 -2653 0.070139 0.039105 8.905817 15.969188 -2654 0.060391 0.052068 7.803714 10.020399 -2655 1.000000 1.000000 100.000000 100.000000 -2656 0.087921 0.043222 10.936739 12.851142 -2657 0.067680 0.047769 6.836374 12.895336 -2658 0.051262 0.032626 9.284366 14.880366 -2659 0.043659 0.031079 6.202282 10.432560 -2660 0.062302 0.041552 10.591905 14.386348 -2661 0.081308 0.033024 7.273914 9.338816 -2662 0.084711 0.079745 11.047837 13.223642 -2663 1.000000 1.000000 100.000000 100.000000 -2664 0.064738 0.030641 9.408640 11.866661 -2665 1.000000 1.000000 100.000000 100.000000 -2666 0.063993 0.044285 11.441994 15.656344 -2667 0.057473 0.032104 8.407260 10.782914 -2668 0.085301 0.074802 9.449405 11.723760 -2669 0.045528 0.036263 5.992378 13.289101 -2670 0.062400 0.026021 10.688540 12.848833 -2671 0.084707 0.036124 9.794070 14.897696 -2672 1.000000 1.000000 100.000000 100.000000 -2673 0.071251 0.044298 7.777294 9.451819 -2674 0.071895 0.035822 9.794417 12.870093 -2675 0.049081 0.041119 10.288344 11.797689 -2676 0.061898 0.038994 10.519712 16.840383 -2677 1.000000 1.000000 100.000000 100.000000 -2678 1.000000 1.000000 100.000000 100.000000 -2679 0.040207 0.012772 7.001454 6.953884 -2680 0.073970 0.050985 12.313535 12.729548 -2681 0.063513 0.031129 8.363375 11.140854 -2682 1.000000 1.000000 100.000000 100.000000 -2683 1.000000 1.000000 100.000000 100.000000 -2684 0.063713 0.045875 6.448843 9.897894 -2685 0.074715 0.064798 9.218086 12.388151 -2686 0.061722 0.052649 9.885255 9.872860 -2687 0.070958 0.089695 10.857691 14.478459 -2688 0.073850 0.033341 7.113979 13.607371 -2689 0.071611 0.061199 6.932435 10.392324 -2690 0.086128 0.035882 13.348165 13.335153 -2691 0.047732 0.018220 8.042377 9.383704 -2692 1.000000 1.000000 100.000000 100.000000 -2693 0.062286 0.036997 9.031531 8.506980 -2694 0.064015 0.026209 9.452152 14.272413 -2695 1.000000 1.000000 100.000000 100.000000 -2696 0.046156 0.024701 8.266344 11.584081 -2697 0.049887 0.019276 6.150145 9.792196 -2698 0.083913 0.056926 7.649799 11.587766 -2699 0.088886 0.075704 14.545312 20.594978 -2700 0.067440 0.028658 7.852864 9.224447 -2701 0.099730 0.060283 13.051199 12.650427 -2702 0.077745 0.085476 15.141690 16.010144 -2703 0.070241 0.060720 13.397757 13.026472 -2704 0.075452 0.059570 8.290849 12.605077 -2705 0.058274 0.035301 9.071575 9.492495 -2706 0.078738 0.043691 10.484322 12.840621 -2707 0.079149 0.047818 9.293471 8.321734 -2708 1.000000 1.000000 100.000000 100.000000 -2709 0.088051 0.062581 7.962172 9.897424 -2710 0.069168 0.038384 14.614885 18.216004 -2711 0.045274 0.027399 7.186787 12.202533 -2712 0.080540 0.049829 11.225318 18.479842 -2713 0.049197 0.028887 8.420300 14.324365 -2714 0.066723 0.047714 13.228198 20.403093 -2715 0.086976 0.079026 11.813113 15.156500 -2716 0.059858 0.045577 7.258023 10.717077 -2717 0.079955 0.038426 13.183906 16.205830 -2718 0.059626 0.027683 9.820586 13.388136 -2719 0.056702 0.025239 10.989746 13.082703 -2720 0.088264 0.029731 11.664906 14.787661 -2721 0.069128 0.033946 12.337139 12.286028 -2722 0.089309 0.037197 7.932351 14.250008 -2723 0.094989 0.079913 10.053215 11.789605 -2724 0.074448 0.028586 7.988216 9.837348 -2725 0.079694 0.038485 10.623792 13.597636 -2726 1.000000 1.000000 100.000000 100.000000 -2727 0.067125 0.043399 10.656937 12.841627 -2728 0.081611 0.068081 12.410758 9.856176 -2729 0.076470 0.060039 11.957263 15.735833 -2730 0.071146 0.063539 8.063895 14.068471 -2731 0.071557 0.036388 7.322882 11.796800 -2732 1.000000 1.000000 100.000000 100.000000 -2733 0.064263 0.032769 7.966345 9.664233 -2734 0.082333 0.059910 11.251533 15.635000 -2735 0.071457 0.046842 10.162461 9.423437 -2736 1.000000 1.000000 100.000000 100.000000 -2737 0.090086 0.039120 9.331855 14.043643 -2738 0.087499 0.045152 10.002077 15.963411 -2739 0.054776 0.030911 12.407856 13.441910 -2740 0.089184 0.051903 14.208100 16.625116 -2741 0.062817 0.041517 7.621238 10.921024 -2742 0.087547 0.079962 11.668107 12.066807 -2743 0.074990 0.048386 10.182331 10.209160 -2744 0.050836 0.035228 6.647875 8.963750 -2745 0.061012 0.021640 10.092907 16.046378 -2746 0.078193 0.031784 11.799980 10.781860 -2747 0.058261 0.042678 10.310531 11.461756 -2748 0.070346 0.040492 11.401066 11.917273 -2749 0.040076 0.012609 8.867666 9.967705 -2750 0.064870 0.047052 8.541334 14.101992 -2751 0.095267 0.039705 13.099892 19.817635 -2752 0.058083 0.031226 6.237361 7.429323 -2753 0.087701 0.036676 7.875632 7.952032 -2754 0.086598 0.054270 7.172301 11.244181 -2755 0.064069 0.067477 9.596574 13.061542 -2756 0.054699 0.046231 10.780861 9.875638 -2757 0.084169 0.056498 14.303592 22.376021 -2758 0.058655 0.035954 8.179634 12.157852 -2759 0.077685 0.032029 7.294831 11.860823 -2760 0.065441 0.031380 9.756147 14.781688 -2761 0.057846 0.020861 9.801317 14.964332 -2762 0.044776 0.040003 9.299252 11.150310 -2763 0.085595 0.085521 12.938510 11.130254 -2764 0.052661 0.034311 10.527427 10.443399 -2765 0.035649 0.046215 8.720583 11.487121 -2766 0.061154 0.019850 8.144466 9.560282 -2767 0.079953 0.073146 12.632248 11.500464 -2768 0.064934 0.037656 12.761176 14.585635 -2769 0.081433 0.043966 13.914558 16.446432 -2770 0.055719 0.028556 9.261350 17.850157 -2771 0.061306 0.035776 8.843778 9.799548 -2772 1.000000 1.000000 100.000000 100.000000 -2773 1.000000 1.000000 100.000000 100.000000 -2774 0.076373 0.060205 7.836662 12.962137 -2775 1.000000 1.000000 100.000000 100.000000 -2776 0.078933 0.046042 14.354220 15.559995 -2777 0.056130 0.030720 6.409061 7.019929 -2778 0.076904 0.046187 11.848787 23.358660 -2779 0.075668 0.076913 7.204783 14.145295 -2780 0.085754 0.058382 11.290090 13.635500 -2781 0.082993 0.049473 13.193064 19.107475 -2782 0.065599 0.053630 10.085431 12.105617 -2783 0.042160 0.036576 7.336422 10.240873 -2784 0.073046 0.045286 7.791531 10.540041 -2785 1.000000 1.000000 100.000000 100.000000 -2786 0.096877 0.063449 12.504581 16.470930 -2787 0.088403 0.048300 6.203676 8.165745 -2788 1.000000 1.000000 100.000000 100.000000 -2789 0.074380 0.054196 12.320320 13.389322 -2790 1.000000 1.000000 100.000000 100.000000 -2791 0.068269 0.027476 10.295845 13.423945 -2792 0.099739 0.037225 6.949544 11.892780 -2793 0.049460 0.037762 9.514973 14.399207 -2794 0.055701 0.026941 7.985299 13.491729 -2795 0.074215 0.037118 13.891281 12.059162 -2796 0.058216 0.025000 7.834375 13.062803 -2797 0.086821 0.042439 9.135028 13.411883 -2798 0.075303 0.045481 7.624213 7.882510 -2799 1.000000 1.000000 100.000000 100.000000 -2800 0.095248 0.081377 8.352942 17.098848 -2801 0.030145 0.012856 7.620601 10.036444 -2802 0.058540 0.031074 8.308854 9.417405 -2803 1.000000 1.000000 100.000000 100.000000 -2804 0.053061 0.031610 8.184956 14.384276 -2805 0.077973 0.057349 8.637564 11.178087 -2806 0.090172 0.033630 10.115305 19.686879 -2807 0.055014 0.024631 10.464058 14.513646 -2808 0.081968 0.055286 7.734856 8.958392 -2809 0.050079 0.038353 8.920766 10.905392 -2810 0.050678 0.038562 8.017580 7.937677 -2811 1.000000 1.000000 100.000000 100.000000 -2812 1.000000 1.000000 100.000000 100.000000 -2813 0.081427 0.052715 9.089178 12.773731 -2814 0.048027 0.032385 8.454384 9.672905 -2815 0.070556 0.027516 12.607145 21.445514 -2816 0.090239 0.047139 10.211660 10.509147 -2817 0.065036 0.042170 8.758316 14.025247 -2818 0.074101 0.068660 12.403867 11.435865 -2819 1.000000 1.000000 100.000000 100.000000 -2820 0.083917 0.051386 7.606845 11.527753 -2821 0.058569 0.037807 10.263058 9.777352 -2822 1.000000 1.000000 100.000000 100.000000 -2823 0.063039 0.064238 14.831548 22.533080 -2824 0.054003 0.019691 6.781189 10.860168 -2825 0.055441 0.030395 9.515976 12.584635 -2826 0.055379 0.040667 14.234020 13.202800 -2827 0.070382 0.044498 8.212241 11.930012 -2828 0.059950 0.075366 7.846890 6.875582 -2829 0.046161 0.029512 8.034050 12.956276 -2830 0.092041 0.064799 13.588312 18.703236 -2831 0.095496 0.047283 8.086736 9.489547 -2832 0.055467 0.024446 11.720691 12.367342 -2833 1.000000 1.000000 100.000000 100.000000 -2834 0.063592 0.028238 8.330449 11.166737 -2835 1.000000 1.000000 100.000000 100.000000 -2836 0.029875 0.014736 11.584441 15.962539 -2837 0.096047 0.058817 9.305712 13.453709 -2838 0.083245 0.076489 10.134974 14.187240 -2839 0.081791 0.057940 17.101829 21.549839 -2840 0.077543 0.062279 14.001300 20.823108 -2841 1.000000 1.000000 100.000000 100.000000 -2842 0.062695 0.035139 11.628321 16.152570 -2843 0.082761 0.034741 9.302860 12.111083 -2844 0.073258 0.035878 6.768953 12.191367 -2845 0.084526 0.044180 11.668186 11.919460 -2846 0.072143 0.035617 9.151253 12.315693 -2847 0.087509 0.037746 9.703442 10.090246 -2848 0.074706 0.047905 9.881161 14.275342 -2849 0.079355 0.054264 17.546090 13.928819 -2850 0.043163 0.059196 7.091137 7.715311 -2851 0.090263 0.096388 14.964063 17.333566 -2852 0.048122 0.027288 7.326929 9.595741 -2853 0.070499 0.028266 10.560455 13.807025 -2854 0.039762 0.017066 6.963036 13.120805 -2855 1.000000 1.000000 100.000000 100.000000 -2856 0.076634 0.092795 10.957634 14.291610 -2857 0.085490 0.043273 15.571837 16.805339 -2858 0.070608 0.085187 9.967077 21.221576 -2859 0.054124 0.047351 8.326647 9.429741 -2860 0.076970 0.059326 11.600795 15.710598 -2861 0.076428 0.033681 7.382094 11.134211 -2862 0.085224 0.040669 11.132347 13.056125 -2863 1.000000 1.000000 100.000000 100.000000 -2864 1.000000 1.000000 100.000000 100.000000 -2865 0.088233 0.056908 8.573827 10.108335 -2866 0.066231 0.038098 8.279307 10.985549 -2867 0.077600 0.034820 14.844708 24.863394 -2868 0.059662 0.039362 7.846854 11.706619 -2869 0.060594 0.035455 7.047268 12.974057 -2870 0.072976 0.057669 13.755428 19.672339 -2871 1.000000 1.000000 100.000000 100.000000 -2872 0.061013 0.043910 8.137114 12.271224 -2873 0.071889 0.038475 10.659753 15.344794 -2874 0.053063 0.039124 6.942029 10.992944 -2875 0.088462 0.044295 6.698710 11.977855 -2876 0.077848 0.032196 13.276762 12.079014 -2877 0.092354 0.057202 9.802859 14.157883 -2878 0.066724 0.038113 6.935103 8.516411 -2879 0.058794 0.029922 15.063236 16.675362 -2880 0.052263 0.028819 9.359727 13.554249 -2881 0.093397 0.057719 11.823241 14.952715 -2882 0.080547 0.036805 7.771613 10.745310 -2883 0.044567 0.028985 10.547549 9.053202 -2884 0.048923 0.028346 10.383506 11.169134 -2885 0.059128 0.044124 9.955633 9.308829 -2886 0.056524 0.032546 6.335321 7.437995 -2887 0.061092 0.047901 10.711586 13.200392 -2888 0.084706 0.039647 7.317716 9.254043 -2889 1.000000 1.000000 100.000000 100.000000 -2890 0.074832 0.056431 10.203257 12.071721 -2891 0.070482 0.042673 9.441708 12.085405 -2892 0.079782 0.037950 6.910600 11.940000 -2893 0.059163 0.035529 9.049810 13.905743 -2894 1.000000 1.000000 100.000000 100.000000 -2895 0.070387 0.039767 8.913980 9.974860 -2896 0.096174 0.082109 5.932524 10.419761 -2897 0.083136 0.074345 11.409656 16.914823 -2898 0.094653 0.064292 10.415098 11.097992 -2899 0.080679 0.038286 7.006183 11.871217 -2900 0.045714 0.026931 12.484497 14.628517 -2901 0.091766 0.072358 10.934768 12.889906 -2902 0.071376 0.029951 9.407453 14.046179 -2903 1.000000 1.000000 100.000000 100.000000 -2904 0.050693 0.027060 7.555393 8.184418 -2905 0.057577 0.040130 9.304781 11.500417 -2906 0.056239 0.041415 9.896099 12.709792 -2907 0.078490 0.046142 7.010123 12.326406 -2908 0.059599 0.039059 8.474096 10.056246 -2909 0.093647 0.035700 8.484173 10.130253 -2910 0.059908 0.031757 8.895200 10.338740 -2911 0.096195 0.079420 13.222525 13.181672 -2912 1.000000 1.000000 100.000000 100.000000 -2913 0.086971 0.037203 13.060357 13.615530 -2914 0.079112 0.034637 12.234390 15.442757 -2915 0.065340 0.052059 8.477358 8.676650 -2916 0.045561 0.030549 7.689987 9.437073 -2917 1.000000 1.000000 100.000000 100.000000 -2918 0.038952 0.024471 9.745391 8.720536 -2919 0.065764 0.051128 8.448370 9.308308 -2920 0.032694 0.027074 7.517673 8.731477 -2921 0.071637 0.080512 10.554643 12.382465 -2922 0.063688 0.040778 8.360297 13.620407 -2923 0.063439 0.050738 17.192552 19.767785 -2924 0.067015 0.040111 10.203735 15.447338 -2925 0.036381 0.039190 11.591135 10.409248 -2926 1.000000 1.000000 100.000000 100.000000 -2927 0.082135 0.064129 8.752583 9.174936 -2928 0.069865 0.038387 10.696491 17.064047 -2929 1.000000 1.000000 100.000000 100.000000 -2930 0.031718 0.020093 6.622995 8.412409 -2931 0.087468 0.051723 12.170859 10.911541 -2932 0.078743 0.042401 7.481857 14.122235 -2933 0.087364 0.081777 11.332418 15.859886 -2934 0.090298 0.041443 6.317206 6.020184 -2935 0.044617 0.017921 11.759496 14.811681 -2936 0.091637 0.037670 14.086908 15.190390 -2937 0.090220 0.048950 12.564770 13.176478 -2938 0.044203 0.043099 6.929480 8.084917 -2939 0.064949 0.044046 12.135679 15.871824 -2940 0.063662 0.030891 9.766024 11.841834 -2941 0.072369 0.045703 10.679462 11.925648 -2942 0.096247 0.035146 10.294694 15.668597 -2943 0.064907 0.056682 17.654363 21.483719 -2944 0.075666 0.041737 7.732461 8.788562 -2945 1.000000 1.000000 100.000000 100.000000 -2946 0.080319 0.038050 8.796508 12.739088 -2947 0.093743 0.040539 13.465644 15.969709 -2948 0.096602 0.058756 6.910930 10.741333 -2949 0.057893 0.031104 7.673905 12.700844 -2950 0.083758 0.081681 7.749197 11.357739 -2951 0.096897 0.068391 11.003748 20.018322 -2952 0.093153 0.067214 11.512522 11.557575 -2953 0.062252 0.034442 10.023002 13.556174 -2954 0.058901 0.031855 14.786058 14.184127 -2955 1.000000 1.000000 100.000000 100.000000 -2956 1.000000 1.000000 100.000000 100.000000 -2957 0.075673 0.068704 10.046065 13.109200 -2958 0.061802 0.059641 7.363565 9.293288 -2959 1.000000 1.000000 100.000000 100.000000 -2960 0.066819 0.036632 8.825679 12.012739 -2961 0.052314 0.036549 7.946408 10.795470 -2962 0.099195 0.073348 12.676551 23.745527 -2963 0.086034 0.054712 11.252479 13.105568 -2964 0.099705 0.048814 11.828369 10.793910 -2965 0.072798 0.040564 13.814600 13.282607 -2966 0.071005 0.036314 7.196059 14.065906 -2967 0.064682 0.026750 8.469523 14.107624 -2968 0.055535 0.044484 11.390925 7.553475 -2969 0.077601 0.050998 11.680997 16.266161 -2970 0.054216 0.055211 7.475526 9.198889 -2971 0.092683 0.044696 12.227448 16.713000 -2972 0.092483 0.054571 7.503969 15.129169 -2973 0.073669 0.042132 12.829783 15.031825 -2974 0.075117 0.030745 8.922769 15.664363 -2975 0.050764 0.033803 5.623672 10.265364 -2976 1.000000 1.000000 100.000000 100.000000 -2977 0.058892 0.027540 10.695357 15.389769 -2978 0.054061 0.024970 9.940901 11.566900 -2979 0.072002 0.051800 8.280776 13.299333 -2980 0.064588 0.035379 7.332879 13.763850 -2981 0.089785 0.076427 13.626483 15.557930 -2982 0.094236 0.052623 11.018089 18.825171 -2983 0.089626 0.036194 6.858191 13.698008 -2984 0.060420 0.046956 10.629430 17.016206 -2985 1.000000 1.000000 100.000000 100.000000 -2986 0.099112 0.044578 11.433901 14.490008 -2987 1.000000 1.000000 100.000000 100.000000 -2988 0.094031 0.043032 11.307908 11.900224 -2989 0.080030 0.044388 10.894655 18.331387 -2990 0.071082 0.038842 9.006849 12.904505 -2991 1.000000 1.000000 100.000000 100.000000 -2992 0.080464 0.058112 9.794902 12.324440 -2993 0.094594 0.047633 8.507312 13.436518 -2994 0.051904 0.046397 10.872093 10.742320 -2995 0.058374 0.036838 10.263966 11.622090 -2996 0.095047 0.079762 9.578332 13.056631 -2997 1.000000 1.000000 100.000000 100.000000 -2998 0.050314 0.034551 6.359707 10.375795 -2999 0.077312 0.046315 13.192390 17.715242 -3000 0.066854 0.031854 7.877342 13.374423 -3001 0.064245 0.074852 7.518219 11.592150 -3002 0.068523 0.049610 10.553005 12.182633 -3003 0.045703 0.041930 7.786104 12.924633 -3004 0.049548 0.030656 7.775053 10.694973 -3005 0.060543 0.043808 8.487138 8.690545 -3006 0.080140 0.052025 15.529123 16.624437 -3007 0.085232 0.058796 10.547576 11.580244 -3008 0.085352 0.042488 8.290890 10.266209 -3009 0.078098 0.031609 17.461758 16.711343 -3010 0.045387 0.021929 6.477444 9.769902 -3011 1.000000 1.000000 100.000000 100.000000 -3012 0.084457 0.057688 12.384396 14.962598 -3013 0.069893 0.071324 14.490185 16.017325 -3014 1.000000 1.000000 100.000000 100.000000 -3015 0.029343 0.020435 5.794174 6.425171 -3016 0.073159 0.034442 6.990724 10.099613 -3017 0.067118 0.032507 15.485749 18.642724 -3018 0.077315 0.052607 9.423782 10.313621 -3019 0.075357 0.041037 14.858615 10.165934 -3020 0.080016 0.054171 8.942749 11.890910 -3021 0.075798 0.078466 13.337211 15.302728 -3022 0.071578 0.067394 7.414230 12.895942 -3023 0.077739 0.064362 18.238191 19.911517 -3024 0.048737 0.049827 8.740323 7.816789 -3025 0.068338 0.033901 11.279344 14.381975 -3026 0.085566 0.046184 7.229959 8.364117 -3027 0.070568 0.047205 8.907696 13.198015 -3028 0.088673 0.034528 10.160364 14.809725 -3029 0.082605 0.088230 9.235503 10.868647 -3030 0.067568 0.031659 9.477270 16.200041 -3031 0.086273 0.033587 11.622316 11.542702 -3032 0.052728 0.047958 9.386977 12.051460 -3033 0.068642 0.032805 10.606919 20.462357 -3034 1.000000 1.000000 100.000000 100.000000 -3035 0.074574 0.041346 8.031223 9.934869 -3036 0.062270 0.054404 8.904130 12.289553 -3037 0.089735 0.043624 9.496120 13.017696 -3038 0.077847 0.038896 7.775621 12.032280 -3039 0.039367 0.021379 6.846874 10.950991 -3040 0.047498 0.037724 8.372288 12.391643 -3041 0.072442 0.028462 11.130123 11.838407 -3042 0.065967 0.045133 7.761986 11.610292 -3043 0.065602 0.043102 10.156869 14.889700 -3044 0.072582 0.071652 10.956713 16.063066 -3045 0.060872 0.043646 9.004081 11.575696 -3046 0.051621 0.029825 11.478459 16.018487 -3047 0.068991 0.052599 8.512115 11.636427 -3048 0.054928 0.038951 9.666396 8.793752 -3049 0.053471 0.033621 8.471166 11.967741 -3050 0.098563 0.054170 9.962213 14.331130 -3051 0.084464 0.073039 9.712986 12.410806 -3052 1.000000 1.000000 100.000000 100.000000 -3053 1.000000 1.000000 100.000000 100.000000 -3054 1.000000 1.000000 100.000000 100.000000 -3055 0.056757 0.039320 9.846199 14.335345 -3056 0.064546 0.041143 8.552544 10.047037 -3057 0.056133 0.038800 13.290439 11.993742 -3058 0.066627 0.026294 8.538957 8.230306 -3059 0.079883 0.035011 7.126222 9.335679 -3060 0.097693 0.059640 11.125550 17.889274 -3061 0.099080 0.074725 7.160093 13.339895 -3062 0.094386 0.059230 10.318861 7.354479 -3063 0.050756 0.023348 9.192904 11.411425 -3064 0.077289 0.044866 7.329356 11.342047 -3065 1.000000 1.000000 100.000000 100.000000 -3066 0.068169 0.053841 9.688924 14.462545 -3067 0.060863 0.036889 10.021047 13.428118 -3068 0.057584 0.037537 9.363202 14.331172 -3069 0.062231 0.023935 9.776916 10.572653 -3070 0.087503 0.066722 8.063902 7.761351 -3071 0.059477 0.036820 8.774585 12.337476 -3072 0.095934 0.035240 10.893835 11.823947 -3073 0.094248 0.038932 8.903638 14.546222 -3074 0.075646 0.034837 7.642428 9.721544 -3075 1.000000 1.000000 100.000000 100.000000 -3076 0.083359 0.053909 7.854678 10.438555 -3077 1.000000 1.000000 100.000000 100.000000 -3078 0.073728 0.051468 9.597095 14.272633 -3079 0.051191 0.029517 10.303885 11.016230 -3080 0.072602 0.044684 9.785568 12.316765 -3081 0.050285 0.033852 8.948533 13.006143 -3082 0.073857 0.042017 10.795825 16.051014 -3083 0.077360 0.056999 15.174085 15.537248 -3084 1.000000 1.000000 100.000000 100.000000 -3085 0.079708 0.041404 14.837272 16.463250 -3086 0.081840 0.049500 10.504430 12.337731 -3087 1.000000 1.000000 100.000000 100.000000 -3088 0.069538 0.043412 8.385180 11.330886 -3089 1.000000 1.000000 100.000000 100.000000 -3090 0.061399 0.039758 13.090838 10.832620 -3091 0.061861 0.051846 13.244944 12.694119 -3092 1.000000 1.000000 100.000000 100.000000 -3093 1.000000 1.000000 100.000000 100.000000 -3094 0.065087 0.026853 7.684244 8.952457 -3095 0.077533 0.069403 15.355798 14.719717 -3096 0.094865 0.071788 10.928586 15.597708 -3097 0.071824 0.037197 7.961411 14.696028 -3098 0.066920 0.051702 11.984692 19.581002 -3099 0.053924 0.024059 7.033314 10.784033 -3100 1.000000 1.000000 100.000000 100.000000 -3101 0.076227 0.049347 11.530077 11.356690 -3102 0.047865 0.051747 8.109806 13.297586 -3103 0.085247 0.095210 12.751929 17.004467 -3104 0.093815 0.049627 7.696834 16.822021 -3105 1.000000 1.000000 100.000000 100.000000 -3106 0.040575 0.016203 9.102621 9.153972 -3107 0.097770 0.080222 13.600009 18.853640 -3108 0.075678 0.053828 11.796775 18.535899 -3109 0.041100 0.015674 8.507141 13.023260 -3110 0.076609 0.049378 8.336203 12.088103 -3111 0.063496 0.032363 8.615227 9.793118 -3112 1.000000 1.000000 100.000000 100.000000 -3113 1.000000 1.000000 100.000000 100.000000 -3114 0.063394 0.028863 10.541543 13.457883 -3115 1.000000 1.000000 100.000000 100.000000 -3116 1.000000 1.000000 100.000000 100.000000 -3117 0.070256 0.025761 6.765752 9.996476 -3118 1.000000 1.000000 100.000000 100.000000 -3119 0.089609 0.049448 10.531490 16.220341 -3120 1.000000 1.000000 100.000000 100.000000 -3121 0.047323 0.021608 12.199292 12.125290 -3122 0.071382 0.027891 5.870473 9.530499 -3123 0.064776 0.034964 8.865931 10.291720 -3124 0.042306 0.024426 9.823755 10.110670 -3125 0.099554 0.063586 13.415368 16.241729 -3126 0.083683 0.040129 8.152819 10.656841 -3127 0.063652 0.049659 11.589544 13.264647 -3128 0.063938 0.066467 6.445525 6.207235 -3129 0.053823 0.037025 8.217725 10.333081 -3130 0.053266 0.038793 10.743977 15.204592 -3131 0.059157 0.053005 9.796180 11.614183 -3132 0.058427 0.024906 8.178962 10.164572 -3133 0.055612 0.020118 7.795120 8.300944 -3134 0.064754 0.032075 7.614848 12.176552 -3135 0.067386 0.057995 7.795758 12.519265 -3136 1.000000 1.000000 100.000000 100.000000 -3137 0.042716 0.035708 7.151302 7.530334 -3138 0.034070 0.032488 8.429626 12.302040 -3139 0.066185 0.031903 8.966499 9.158979 -3140 1.000000 1.000000 100.000000 100.000000 -3141 0.095031 0.041874 13.077529 16.347319 -3142 0.056767 0.018511 9.922987 11.844273 -3143 0.079917 0.058396 9.909331 16.823090 -3144 0.071639 0.055876 14.269092 17.672339 -3145 0.060399 0.040251 7.994430 10.416441 -3146 1.000000 1.000000 100.000000 100.000000 -3147 0.068429 0.035373 10.478398 12.374133 -3148 0.074215 0.053501 12.832231 16.228839 -3149 0.063202 0.023146 8.365808 9.930370 -3150 0.043553 0.026756 5.717722 8.993187 -3151 0.083852 0.065588 13.999053 10.728418 -3152 1.000000 1.000000 100.000000 100.000000 -3153 0.047996 0.026957 10.178340 19.490662 -3154 0.042790 0.022265 6.510503 10.718172 -3155 1.000000 1.000000 100.000000 100.000000 -3156 0.068694 0.058051 13.467538 16.076995 -3157 0.066296 0.040347 5.530467 12.630469 -3158 0.089864 0.069794 8.230920 15.354884 -3159 1.000000 1.000000 100.000000 100.000000 -3160 0.072136 0.061110 9.887458 8.274095 -3161 0.044994 0.045018 8.863893 12.861085 -3162 0.087769 0.036923 8.501568 13.679524 -3163 0.092332 0.052184 7.962446 10.308789 -3164 0.060061 0.027923 10.996476 11.574519 -3165 0.061994 0.032721 10.775393 15.244413 -3166 0.072897 0.032341 9.787872 10.481732 -3167 1.000000 1.000000 100.000000 100.000000 -3168 0.098118 0.063389 12.537349 12.492842 -3169 0.063669 0.032908 7.024016 13.058892 -3170 0.066369 0.035907 8.960739 13.774197 -3171 0.043575 0.030881 13.354876 12.645284 -3172 1.000000 1.000000 100.000000 100.000000 -3173 0.071602 0.045761 15.785727 22.626322 -3174 0.086467 0.074040 9.149287 14.123682 -3175 0.090420 0.073504 11.730676 18.887684 -3176 0.087675 0.060776 9.694033 13.568998 -3177 0.040816 0.020831 11.272811 12.292887 -3178 0.052812 0.040403 9.670308 14.274443 -3179 0.068734 0.039142 9.908976 9.707582 -3180 0.067066 0.054272 5.942607 8.783685 -3181 0.078486 0.041697 7.773950 8.910122 -3182 1.000000 1.000000 100.000000 100.000000 -3183 0.073169 0.037065 12.849374 14.342620 -3184 0.063082 0.065803 16.504483 15.969876 -3185 0.096731 0.049487 11.174364 12.857854 -3186 1.000000 1.000000 100.000000 100.000000 -3187 0.076213 0.049866 9.576914 15.556991 -3188 1.000000 1.000000 100.000000 100.000000 -3189 1.000000 1.000000 100.000000 100.000000 -3190 0.059719 0.042525 12.662541 11.219667 -3191 0.054149 0.034122 7.723992 12.782284 -3192 0.064163 0.029224 8.912279 10.339538 -3193 0.061730 0.037954 5.414021 10.027825 -3194 0.065322 0.026681 11.227725 12.663200 -3195 0.074644 0.020978 7.663260 12.931945 -3196 0.053529 0.028021 10.446196 11.186170 -3197 0.097053 0.068520 8.869015 13.122304 -3198 0.083324 0.045774 6.089284 8.111083 -3199 0.069285 0.041994 10.515336 14.597862 -3200 0.090565 0.054071 9.876159 11.086522 -3201 0.079887 0.051185 12.603687 14.187225 -3202 0.072104 0.031482 11.055413 14.248408 -3203 0.061005 0.029700 7.900031 9.411813 -3204 1.000000 1.000000 100.000000 100.000000 -3205 1.000000 1.000000 100.000000 100.000000 -3206 1.000000 1.000000 100.000000 100.000000 -3207 0.088951 0.049149 7.197006 10.994124 -3208 0.058172 0.032075 11.848616 16.694301 -3209 1.000000 1.000000 100.000000 100.000000 -3210 0.062587 0.036323 8.633905 11.768937 -3211 0.056632 0.021836 4.638213 6.870807 -3212 0.047726 0.017226 5.883861 10.216882 -3213 0.074123 0.033715 15.592569 18.397040 -3214 0.075977 0.037979 9.558770 12.976660 -3215 0.049640 0.038483 11.447179 14.378512 -3216 1.000000 1.000000 100.000000 100.000000 -3217 0.053541 0.036722 9.874523 15.890140 -3218 0.049997 0.024103 5.334692 10.278574 -3219 0.061159 0.028451 8.227184 7.313574 -3220 0.095148 0.059158 13.217411 15.402163 -3221 0.069768 0.043964 12.491201 12.892082 -3222 0.070600 0.040155 14.087354 18.698447 -3223 0.069321 0.049481 7.479855 9.190795 -3224 0.092080 0.033372 12.818907 17.823778 -3225 0.084086 0.053563 9.670374 12.532986 -3226 0.057340 0.068204 9.479858 10.145868 -3227 1.000000 1.000000 100.000000 100.000000 -3228 1.000000 1.000000 100.000000 100.000000 -3229 1.000000 1.000000 100.000000 100.000000 -3230 0.066529 0.042453 7.537093 14.813844 -3231 0.081295 0.044417 13.120562 14.312451 -3232 0.075788 0.053258 10.888809 14.392551 -3233 0.052004 0.038652 7.794175 11.560015 -3234 0.051624 0.026779 10.957388 13.542269 -3235 0.074789 0.045163 9.065614 12.484018 -3236 0.059601 0.046727 10.762103 16.696092 -3237 0.067166 0.046503 8.932752 8.267139 -3238 0.071594 0.037196 7.781157 10.177220 -3239 0.065244 0.058828 8.477365 11.526684 -3240 0.092772 0.065884 7.760147 11.410183 -3241 0.055845 0.062421 13.453322 12.929098 -3242 0.079748 0.053504 11.181801 12.727973 -3243 0.091431 0.086265 13.795664 12.642230 -3244 1.000000 1.000000 100.000000 100.000000 -3245 0.056057 0.039150 10.567853 14.315800 -3246 1.000000 1.000000 100.000000 100.000000 -3247 0.055511 0.046184 10.955249 16.867467 -3248 0.083869 0.049764 7.752916 7.169305 -3249 0.067509 0.026291 7.732859 10.313194 -3250 0.066186 0.047782 7.202981 10.682529 -3251 0.057430 0.024590 9.533830 12.087501 -3252 0.046303 0.028359 8.296814 10.301420 -3253 0.067181 0.049748 11.283966 14.986353 -3254 0.095450 0.066668 11.595680 18.539815 -3255 0.084378 0.047045 8.264829 11.940014 -3256 1.000000 1.000000 100.000000 100.000000 -3257 0.059660 0.045478 8.111613 12.711100 -3258 0.060844 0.041555 10.387517 13.920876 -3259 0.072519 0.034246 9.248939 16.045695 -3260 0.067190 0.029227 8.291733 10.468013 -3261 0.069368 0.038301 8.517140 12.610529 -3262 0.060669 0.042997 8.417616 10.417465 -3263 1.000000 1.000000 100.000000 100.000000 -3264 0.077410 0.038782 8.244236 12.544493 -3265 0.096382 0.045329 8.491161 18.939355 -3266 0.075063 0.049194 8.889574 14.265632 -3267 0.072119 0.063033 10.448273 12.248885 -3268 0.088572 0.047482 7.001769 9.270530 -3269 0.058838 0.044957 13.774395 13.786903 -3270 0.055758 0.044930 15.327772 18.514185 -3271 0.065846 0.035174 7.207499 9.415130 -3272 0.055312 0.034724 8.000988 10.601551 -3273 0.058896 0.021113 15.296407 16.563793 -3274 0.043343 0.021766 9.081654 15.647327 -3275 0.067836 0.043286 7.960417 9.894546 -3276 0.089986 0.074991 10.106018 11.993080 -3277 0.070418 0.043907 11.197377 12.586387 -3278 1.000000 1.000000 100.000000 100.000000 -3279 1.000000 1.000000 100.000000 100.000000 -3280 1.000000 1.000000 100.000000 100.000000 -3281 0.099417 0.080531 12.299078 15.454846 -3282 0.050008 0.032332 8.476431 10.421737 -3283 0.085229 0.037868 10.684005 11.940541 -3284 0.090347 0.034467 10.450764 11.801336 -3285 1.000000 1.000000 100.000000 100.000000 -3286 0.047523 0.026614 8.992228 10.326193 -3287 0.050859 0.044593 8.203634 11.625705 -3288 0.068704 0.058714 13.817417 15.385089 -3289 0.046614 0.045618 8.699779 9.969650 -3290 0.085973 0.088167 7.640771 18.756045 -3291 0.061412 0.021285 6.220521 8.927463 -3292 0.077031 0.055724 11.769246 14.002706 -3293 0.049036 0.027391 8.997216 11.017752 -3294 0.060532 0.045747 12.405712 10.386890 -3295 1.000000 1.000000 100.000000 100.000000 -3296 0.063058 0.043327 8.584892 11.031942 -3297 1.000000 1.000000 100.000000 100.000000 -3298 0.086167 0.048617 9.957769 16.051473 -3299 0.073851 0.048280 12.798796 19.401799 -3300 0.050272 0.044776 9.409843 9.767943 -3301 1.000000 1.000000 100.000000 100.000000 -3302 0.051650 0.029777 8.377550 9.285414 -3303 0.086855 0.046651 9.653635 13.525198 -3304 0.047925 0.024036 7.906645 9.533837 -3305 0.057486 0.030763 13.673912 17.665921 -3306 0.095228 0.039555 8.767264 13.934706 -3307 1.000000 1.000000 100.000000 100.000000 -3308 1.000000 1.000000 100.000000 100.000000 -3309 0.087080 0.063039 10.359232 12.118931 -3310 0.084709 0.065763 9.383817 12.925536 -3311 0.063975 0.035273 10.262643 12.759044 -3312 0.063271 0.027938 10.324330 11.964598 -3313 0.052576 0.037022 8.213614 8.467029 -3314 1.000000 1.000000 100.000000 100.000000 -3315 0.076386 0.047660 7.101402 8.951763 -3316 0.070308 0.044557 11.300746 16.454274 -3317 0.072269 0.061160 13.572045 19.851549 -3318 1.000000 1.000000 100.000000 100.000000 -3319 0.051917 0.037360 8.473217 8.639002 -3320 0.096758 0.037134 13.092110 18.821849 -3321 0.043775 0.026557 11.282237 15.193823 -3322 0.044635 0.047042 6.833605 9.372237 -3323 0.075066 0.043089 12.185963 12.263869 -3324 0.057749 0.033991 11.554000 15.736754 -3325 0.056985 0.017760 8.977648 12.189190 -3326 0.055602 0.025272 8.271172 13.240682 -3327 1.000000 1.000000 100.000000 100.000000 -3328 0.086451 0.050827 9.969534 11.771240 -3329 0.074605 0.061966 11.065447 10.999115 -3330 0.066259 0.039750 13.542817 15.359298 -3331 1.000000 1.000000 100.000000 100.000000 -3332 0.051264 0.028887 9.699051 11.194983 -3333 1.000000 1.000000 100.000000 100.000000 -3334 0.090441 0.079445 8.463433 9.806437 -3335 0.060277 0.034508 9.893336 13.525221 -3336 0.056806 0.023693 11.006637 15.410011 -3337 0.068173 0.036626 5.595995 10.179254 -3338 0.067166 0.058385 13.680515 16.232013 -3339 0.085269 0.053550 9.788890 11.714373 -3340 0.063735 0.049474 8.292813 11.068502 -3341 0.082339 0.090774 7.351710 9.535974 -3342 0.072445 0.031727 8.575061 8.612220 -3343 0.084366 0.038309 12.419626 17.050557 -3344 0.039165 0.014245 12.128306 10.102974 -3345 0.079825 0.052940 9.209241 9.029004 -3346 0.080902 0.057401 8.461968 8.252009 -3347 0.058194 0.056387 10.982452 10.140314 -3348 1.000000 1.000000 100.000000 100.000000 -3349 0.085954 0.053631 14.409642 20.529594 -3350 0.068073 0.026830 12.516181 14.454102 -3351 0.047905 0.024503 7.419437 10.894685 -3352 0.089411 0.054579 12.098037 11.122758 -3353 0.083687 0.043175 10.413553 12.097960 -3354 0.064750 0.029893 8.074554 11.309860 -3355 0.049259 0.039246 10.309017 13.919163 -3356 0.062908 0.033568 12.793525 12.520811 -3357 0.060900 0.024288 6.822146 11.496667 -3358 0.081286 0.092552 10.862899 11.921617 -3359 0.081786 0.043747 7.367022 14.378638 -3360 0.099019 0.070720 11.359777 14.388223 -3361 0.054297 0.024689 5.595057 6.308379 -3362 0.092814 0.092247 11.519708 15.335224 -3363 0.038474 0.017760 8.957631 12.778455 -3364 0.065703 0.043022 11.226170 13.937905 -3365 0.057672 0.022217 13.006104 8.188625 -3366 0.060778 0.042930 7.765455 8.714294 -3367 0.085173 0.033733 9.233534 11.570591 -3368 0.060211 0.047196 10.011385 13.798304 -3369 0.097118 0.037013 11.588812 14.410819 -3370 0.055518 0.025825 6.328162 8.046459 -3371 0.078703 0.056996 13.312222 13.700698 -3372 0.076960 0.055052 5.404814 9.257969 -3373 0.063643 0.038787 8.403709 8.325358 -3374 0.086666 0.024761 13.027018 11.750275 -3375 0.064767 0.028742 7.994501 13.001178 -3376 0.089706 0.057074 9.981986 10.267491 -3377 0.053655 0.036831 14.370711 20.183696 -3378 0.097441 0.054093 14.745483 15.738683 -3379 0.051756 0.029386 9.190088 13.381662 -3380 0.078393 0.041162 9.685650 14.741859 -3381 0.059613 0.031816 7.650501 9.314512 -3382 1.000000 1.000000 100.000000 100.000000 -3383 0.063775 0.026276 9.236011 15.446501 -3384 0.076946 0.044957 10.627619 15.293324 -3385 0.070283 0.051875 9.765646 11.091187 -3386 0.094521 0.052353 11.705968 13.933152 -3387 0.071875 0.028659 7.168815 7.192093 -3388 0.099600 0.059276 8.818051 15.470598 -3389 0.063703 0.050336 6.192822 13.422292 -3390 0.037317 0.019467 14.906129 16.729869 -3391 0.046939 0.017031 7.286866 9.296069 -3392 0.049973 0.042645 12.482232 19.056626 -3393 0.093381 0.045887 11.057109 11.863187 -3394 0.048671 0.034578 7.906655 13.284186 -3395 0.063825 0.032635 10.045867 12.862379 -3396 0.074343 0.055131 12.647395 10.023387 -3397 0.071154 0.038507 7.805148 12.433526 -3398 0.090323 0.048753 5.933326 8.515924 -3399 0.063085 0.032838 7.067668 8.467323 -3400 1.000000 1.000000 100.000000 100.000000 -3401 0.068039 0.030324 11.112912 10.070927 -3402 0.065445 0.037692 10.073409 11.877653 -3403 0.060672 0.033915 9.836327 11.872420 -3404 1.000000 1.000000 100.000000 100.000000 -3405 0.051477 0.027502 8.520360 6.319611 -3406 0.079163 0.036300 7.189578 11.144041 -3407 0.055244 0.048678 10.057809 12.007772 -3408 0.067929 0.047766 7.708165 10.967869 -3409 0.092462 0.065688 10.024501 14.826863 -3410 0.052182 0.038286 11.487833 13.217019 -3411 0.041366 0.026568 7.214643 9.954576 -3412 0.031277 0.019317 7.171315 10.135076 -3413 0.067000 0.024062 5.606593 10.379917 -3414 1.000000 1.000000 100.000000 100.000000 -3415 0.064350 0.059803 6.878207 9.983028 -3416 0.093846 0.045984 12.167305 11.996743 -3417 0.091403 0.064685 7.837114 11.942420 -3418 0.047880 0.033749 8.384313 10.373271 -3419 0.077934 0.073656 9.273549 15.365006 -3420 0.051378 0.023806 8.575725 10.201744 -3421 1.000000 1.000000 100.000000 100.000000 -3422 0.057144 0.031786 18.450234 21.590149 -3423 0.081097 0.042171 13.254764 14.057981 -3424 1.000000 1.000000 100.000000 100.000000 -3425 0.050582 0.027674 10.313426 8.518483 -3426 0.042696 0.020854 12.264456 16.111476 -3427 0.067984 0.041425 10.054155 13.460639 -3428 1.000000 1.000000 100.000000 100.000000 -3429 0.076421 0.032352 9.824430 12.790883 -3430 0.083665 0.064311 15.045336 17.769640 -3431 1.000000 1.000000 100.000000 100.000000 -3432 0.053850 0.052022 9.802608 10.169530 -3433 1.000000 1.000000 100.000000 100.000000 -3434 1.000000 1.000000 100.000000 100.000000 -3435 0.039864 0.014564 5.854449 6.769747 -3436 0.063499 0.048722 6.391572 8.517040 -3437 0.064560 0.053998 8.070960 9.128277 -3438 0.035473 0.018930 8.040446 15.803908 -3439 0.070681 0.039259 9.113472 11.945368 -3440 0.047346 0.019951 6.933557 9.509652 -3441 0.051342 0.028061 7.563277 7.025188 -3442 0.054717 0.051056 10.034178 15.804464 -3443 0.046406 0.033982 5.855479 9.219077 -3444 0.074831 0.038159 10.123488 10.169574 -3445 0.068036 0.053975 5.801300 10.860333 -3446 1.000000 1.000000 100.000000 100.000000 -3447 0.074247 0.039866 16.806485 11.416733 -3448 1.000000 1.000000 100.000000 100.000000 -3449 0.097470 0.086197 9.538476 16.304523 -3450 0.072947 0.040875 11.670252 17.921061 -3451 0.042166 0.023050 7.243329 10.939079 -3452 0.066872 0.048360 6.934250 7.581429 -3453 0.065674 0.049154 12.087092 17.617421 -3454 0.068381 0.033939 6.998704 7.333746 -3455 0.075705 0.065267 13.183286 9.003259 -3456 0.063631 0.063705 12.288355 12.747183 -3457 0.057697 0.031457 7.375801 13.301273 -3458 0.084602 0.045411 12.817949 17.071329 -3459 0.061398 0.036512 9.627095 10.935671 -3460 0.060700 0.042482 13.555020 13.735696 -3461 0.092391 0.045495 11.758511 17.121756 -3462 0.042197 0.031915 9.129799 10.208518 -3463 0.073081 0.092308 11.749916 16.625841 -3464 0.064606 0.064670 11.852046 12.864817 -3465 0.066554 0.024702 5.543854 8.753717 -3466 0.063303 0.033144 9.335515 10.754451 -3467 0.072840 0.038352 6.143256 11.557561 -3468 0.070898 0.045706 7.394774 10.993328 -3469 0.082506 0.041810 10.622846 11.346589 -3470 0.066322 0.039408 10.021002 9.454410 -3471 0.091084 0.060720 11.960693 15.563273 -3472 0.056352 0.031192 11.240160 17.862087 -3473 0.074663 0.040829 9.204176 16.802060 -3474 0.055994 0.017347 8.776095 11.420383 -3475 0.079562 0.065329 8.663668 14.110691 -3476 0.085729 0.045845 10.910463 11.663540 -3477 1.000000 1.000000 100.000000 100.000000 -3478 1.000000 1.000000 100.000000 100.000000 -3479 0.080768 0.044726 7.506918 12.627103 -3480 0.092684 0.036929 14.159061 19.339890 -3481 0.076003 0.049384 15.346618 18.393873 -3482 0.083639 0.044293 10.693613 16.522691 -3483 0.088575 0.043957 12.436890 17.659128 -3484 0.054871 0.022122 8.726546 13.834078 -3485 0.051522 0.031995 6.565585 10.105334 -3486 1.000000 1.000000 100.000000 100.000000 -3487 0.079474 0.034186 9.386732 12.878262 -3488 0.086448 0.057002 11.246153 13.753057 -3489 0.083555 0.033800 6.862702 11.151009 -3490 0.052220 0.055465 9.255782 12.611337 -3491 0.071378 0.058670 13.590216 24.081816 -3492 0.057921 0.049271 8.677944 10.837280 -3493 0.067211 0.020798 10.139514 12.896522 -3494 0.080287 0.050236 9.314259 14.603788 -3495 0.048363 0.016690 8.739539 8.180137 -3496 0.055198 0.058820 7.728587 12.201967 -3497 0.092019 0.078672 7.929134 14.157997 -3498 0.083683 0.052502 7.205873 8.670208 -3499 0.075304 0.059294 10.760693 13.180466 -3500 0.061937 0.032515 6.879357 9.019104 -3501 0.064004 0.043710 9.838229 11.345969 -3502 0.075814 0.032700 10.578069 9.391724 -3503 0.092006 0.048269 11.112625 12.350799 -3504 1.000000 1.000000 100.000000 100.000000 -3505 0.067686 0.053178 10.146763 10.649261 -3506 0.078876 0.054088 9.960890 15.917391 -3507 1.000000 1.000000 100.000000 100.000000 -3508 0.061993 0.039751 7.714766 9.950307 -3509 1.000000 1.000000 100.000000 100.000000 -3510 1.000000 1.000000 100.000000 100.000000 -3511 0.067812 0.048336 10.264407 11.141795 -3512 0.076182 0.032668 9.687594 12.421691 -3513 0.056740 0.037606 9.966016 12.114679 -3514 0.036423 0.024344 7.744871 9.924174 -3515 1.000000 1.000000 100.000000 100.000000 -3516 0.087059 0.047993 7.689935 14.916969 -3517 0.087719 0.034223 7.511181 9.053824 -3518 1.000000 1.000000 100.000000 100.000000 -3519 0.055571 0.023190 9.327941 11.165526 -3520 0.058592 0.048397 10.953204 14.961602 -3521 1.000000 1.000000 100.000000 100.000000 -3522 0.084689 0.044154 14.836244 12.573268 -3523 1.000000 1.000000 100.000000 100.000000 -3524 0.069788 0.032386 8.898884 12.696797 -3525 0.046140 0.029380 8.893300 14.311451 -3526 0.053490 0.028339 9.555622 13.270723 -3527 0.052523 0.031224 11.754042 21.108223 -3528 1.000000 1.000000 100.000000 100.000000 -3529 0.068195 0.033036 15.116306 11.523790 -3530 0.068261 0.041210 8.107339 15.113327 -3531 0.042319 0.026496 10.407744 12.207953 -3532 0.064375 0.041333 8.354871 12.871052 -3533 0.081377 0.064319 7.089787 12.484126 -3534 0.068126 0.020425 10.822561 10.835246 -3535 1.000000 1.000000 100.000000 100.000000 -3536 0.068780 0.027620 10.885444 18.750256 -3537 0.061723 0.019971 9.024890 12.442181 -3538 1.000000 1.000000 100.000000 100.000000 -3539 0.062866 0.058596 10.106643 15.101218 -3540 1.000000 1.000000 100.000000 100.000000 -3541 0.058681 0.016877 5.948149 7.787908 -3542 0.077287 0.036140 7.339956 9.383108 -3543 1.000000 1.000000 100.000000 100.000000 -3544 0.058006 0.027727 9.669586 16.362503 -3545 0.074191 0.039762 11.986719 12.253071 -3546 0.080006 0.056906 9.664766 11.648938 -3547 0.063420 0.032228 8.222472 13.624479 -3548 0.067056 0.053353 6.655515 11.405753 -3549 0.056060 0.028573 9.569589 12.707733 -3550 0.060366 0.029827 7.451424 12.170065 -3551 0.076157 0.040470 11.812035 11.883931 -3552 0.034979 0.025093 9.047380 10.151402 -3553 1.000000 1.000000 100.000000 100.000000 -3554 0.071950 0.050844 12.731655 14.302662 -3555 0.098260 0.047635 9.230142 9.648074 -3556 0.083584 0.055462 13.320883 16.848114 -3557 0.088115 0.047327 10.437254 11.344940 -3558 0.058505 0.022821 11.143421 9.337769 -3559 0.093617 0.050991 12.427112 15.114452 -3560 0.061702 0.040242 14.120926 15.894397 -3561 0.089655 0.061960 10.500676 19.316323 -3562 0.072450 0.055187 8.706143 11.465090 -3563 0.060894 0.042335 8.626533 11.126840 -3564 0.077533 0.050102 8.586759 12.292842 -3565 0.095585 0.070352 8.220167 11.106398 -3566 0.057722 0.037596 5.139854 7.258336 -3567 0.078229 0.069332 15.453363 17.180263 -3568 0.079045 0.069812 10.719132 12.105400 -3569 0.049018 0.020746 8.171517 12.666350 -3570 0.074981 0.060504 9.085594 17.264338 -3571 1.000000 1.000000 100.000000 100.000000 -3572 0.086491 0.071810 11.973436 20.283163 -3573 0.050125 0.028520 6.213605 7.483253 -3574 0.078590 0.072357 12.307583 16.595785 -3575 0.049194 0.027778 7.684791 11.893352 -3576 0.096863 0.089884 9.378230 16.949907 -3577 1.000000 1.000000 100.000000 100.000000 -3578 1.000000 1.000000 100.000000 100.000000 -3579 0.076106 0.047505 9.098597 8.590819 -3580 0.049493 0.024079 13.581262 15.265147 -3581 0.040382 0.034460 17.429665 20.506877 -3582 0.068713 0.032028 7.753829 11.089111 -3583 0.077351 0.062949 8.440962 10.670842 -3584 0.062044 0.039028 7.941743 14.775046 -3585 0.059789 0.048444 8.486739 10.870666 -3586 0.098690 0.067070 9.688371 13.415728 -3587 1.000000 1.000000 100.000000 100.000000 -3588 0.073815 0.033924 11.989099 13.141698 -3589 0.067466 0.049509 7.582749 12.143492 -3590 0.065422 0.031857 12.331933 14.978856 -3591 0.074926 0.061944 10.794643 14.799584 -3592 0.099943 0.047253 9.060087 8.701579 -3593 0.098627 0.060963 11.276697 15.133981 -3594 0.045657 0.057843 8.769992 9.470246 -3595 0.090394 0.061789 14.731176 19.474132 -3596 0.072994 0.042481 7.436752 12.900602 -3597 0.062558 0.046055 8.958953 12.992979 -3598 1.000000 1.000000 100.000000 100.000000 -3599 0.088551 0.035459 15.079043 22.644707 -3600 0.069081 0.041743 9.567405 18.781034 -3601 0.081359 0.042036 10.286536 11.264107 -3602 0.085888 0.032604 8.744555 16.476591 -3603 0.055589 0.029415 9.231075 10.278651 -3604 0.080030 0.045571 13.526899 14.636001 -3605 0.094162 0.040828 6.315251 8.454929 -3606 0.085946 0.038851 8.898559 9.472165 -3607 0.092662 0.077615 13.789145 18.098681 -3608 0.061788 0.049929 12.048858 12.145182 -3609 0.040962 0.025051 7.743749 13.011887 -3610 0.042233 0.020482 10.473941 12.980859 -3611 0.062076 0.054391 11.980803 16.165254 -3612 0.073305 0.057362 9.120905 12.411714 -3613 0.082195 0.062706 9.527652 12.350214 -3614 1.000000 1.000000 100.000000 100.000000 -3615 0.048399 0.053080 9.243990 14.630586 -3616 0.059407 0.045568 7.436444 10.455371 -3617 1.000000 1.000000 100.000000 100.000000 -3618 0.084802 0.048256 9.158817 15.032937 -3619 0.037505 0.038331 11.458978 12.904114 -3620 0.042017 0.033687 11.900254 12.510669 -3621 0.073188 0.059005 11.358124 12.162579 -3622 0.061889 0.037199 10.557969 15.134137 -3623 0.069437 0.047731 13.495778 17.931334 -3624 0.059970 0.043722 9.446108 11.161500 -3625 0.061572 0.035174 7.088838 12.415290 -3626 0.082672 0.059101 9.526678 11.578129 -3627 0.075471 0.054994 10.795139 13.026616 -3628 0.085557 0.052442 10.961548 10.954258 -3629 0.052692 0.024387 6.279730 9.653698 -3630 1.000000 1.000000 100.000000 100.000000 -3631 1.000000 1.000000 100.000000 100.000000 -3632 0.059237 0.045215 9.626840 11.811969 -3633 0.092014 0.055162 14.745944 16.419763 -3634 0.079241 0.048268 11.204850 10.587122 -3635 0.092068 0.027249 12.742483 13.143758 -3636 0.099717 0.078895 6.412004 11.044448 -3637 0.084094 0.082822 8.903361 13.823696 -3638 0.056462 0.021749 8.095833 15.401733 -3639 0.069419 0.048640 9.901056 9.968354 -3640 0.063694 0.035821 15.587721 11.481210 -3641 0.054347 0.035588 11.102634 11.703859 -3642 0.082073 0.060406 10.175944 13.480121 -3643 0.097979 0.078473 8.048432 12.064434 -3644 0.064431 0.038189 7.357119 10.277297 -3645 0.088411 0.053590 10.406660 13.655578 -3646 0.058097 0.044708 10.438330 16.452540 -3647 0.060537 0.028258 8.335519 7.325530 -3648 0.052895 0.027498 7.894040 11.804843 -3649 0.053295 0.042030 14.209412 21.272293 -3650 0.061239 0.041520 12.773014 14.334098 -3651 0.085231 0.045758 9.545723 7.641812 -3652 0.058278 0.025683 11.696446 10.473668 -3653 0.075684 0.033568 8.570559 11.407237 -3654 0.048532 0.030185 14.305739 16.918799 -3655 1.000000 1.000000 100.000000 100.000000 -3656 0.076416 0.045944 9.205345 9.395074 -3657 0.076428 0.029043 8.622167 10.458953 -3658 1.000000 1.000000 100.000000 100.000000 -3659 1.000000 1.000000 100.000000 100.000000 -3660 0.077790 0.035871 6.992574 10.633270 -3661 0.099229 0.065606 7.888019 15.773293 -3662 1.000000 1.000000 100.000000 100.000000 -3663 0.098676 0.047647 11.463317 18.832693 -3664 1.000000 1.000000 100.000000 100.000000 -3665 0.066428 0.038070 10.139687 17.222730 -3666 1.000000 1.000000 100.000000 100.000000 -3667 1.000000 1.000000 100.000000 100.000000 -3668 0.075393 0.062575 10.569663 15.701222 -3669 0.044322 0.026567 10.595771 11.986006 -3670 0.066816 0.029861 11.470339 16.526406 -3671 0.055476 0.080679 6.524641 8.422201 -3672 0.058034 0.043070 15.761324 17.488936 -3673 0.063359 0.037380 12.773776 12.676895 -3674 0.067519 0.042752 9.501120 14.710961 -3675 0.071536 0.037990 13.128235 7.659197 -3676 0.090788 0.057905 10.333680 9.669755 -3677 1.000000 1.000000 100.000000 100.000000 -3678 1.000000 1.000000 100.000000 100.000000 -3679 0.079569 0.073582 11.877728 14.647707 -3680 1.000000 1.000000 100.000000 100.000000 -3681 0.091206 0.038325 14.425011 16.802770 -3682 0.059784 0.030297 6.022671 8.449750 -3683 0.069195 0.032139 7.831780 9.153206 -3684 0.082228 0.051477 10.957362 13.758087 -3685 1.000000 1.000000 100.000000 100.000000 -3686 0.079311 0.063886 8.763126 10.821047 -3687 0.060202 0.030311 15.137927 24.522583 -3688 0.076376 0.068823 9.363933 11.658153 -3689 0.056845 0.037058 9.543856 12.764417 -3690 0.097170 0.049304 15.513551 17.306418 -3691 0.059775 0.065301 10.014258 12.108624 -3692 0.081552 0.081486 11.611071 15.482674 -3693 1.000000 1.000000 100.000000 100.000000 -3694 0.065091 0.023951 11.474838 16.194507 -3695 0.089613 0.032156 13.029636 14.116513 -3696 1.000000 1.000000 100.000000 100.000000 -3697 0.040546 0.020225 6.869313 12.171491 -3698 0.060359 0.021658 8.765559 9.122668 -3699 0.091812 0.046311 7.256686 10.160145 -3700 0.096528 0.084657 12.446453 19.017549 -3701 1.000000 1.000000 100.000000 100.000000 -3702 0.070475 0.059132 6.576661 10.619223 -3703 1.000000 1.000000 100.000000 100.000000 -3704 1.000000 1.000000 100.000000 100.000000 -3705 1.000000 1.000000 100.000000 100.000000 -3706 0.081168 0.050317 12.338797 17.856415 -3707 0.062331 0.036143 9.574289 18.294750 -3708 0.072141 0.039322 10.185202 14.464725 -3709 0.088869 0.055415 13.215019 13.403069 -3710 0.078008 0.032388 9.154425 11.476128 -3711 0.089041 0.065818 12.784454 17.786177 -3712 0.080557 0.059623 11.438546 13.680409 -3713 0.058107 0.036416 7.545157 6.290905 -3714 0.047005 0.033720 10.858048 9.802116 -3715 1.000000 1.000000 100.000000 100.000000 -3716 0.072391 0.048280 10.479221 14.655237 -3717 0.056819 0.038885 14.222933 12.549263 -3718 0.061409 0.029746 11.145505 13.616457 -3719 0.072953 0.043661 8.996589 9.846250 -3720 0.052310 0.039437 6.515185 9.459791 -3721 0.046251 0.030150 8.138568 12.317001 -3722 0.042234 0.023228 4.523150 8.270556 -3723 1.000000 1.000000 100.000000 100.000000 -3724 0.080853 0.040423 13.743835 14.675637 -3725 0.093592 0.029856 9.605215 10.525657 -3726 1.000000 1.000000 100.000000 100.000000 -3727 0.068896 0.042844 9.892960 14.051284 -3728 0.058668 0.025017 8.096884 8.504919 -3729 0.094179 0.077902 8.155435 11.733743 -3730 0.043884 0.027251 8.117028 8.486109 -3731 0.065565 0.022163 6.882591 9.617471 -3732 0.079089 0.043963 10.412133 16.108265 -3733 0.070274 0.054043 9.010160 13.687084 -3734 0.059095 0.045643 8.537422 9.655016 -3735 0.087976 0.076684 9.870006 16.124133 -3736 0.058443 0.048675 9.699628 16.504449 -3737 0.087169 0.034674 7.699618 12.481364 -3738 0.057572 0.030682 9.594695 11.102283 -3739 0.059168 0.036912 11.822184 12.120560 -3740 1.000000 1.000000 100.000000 100.000000 -3741 1.000000 1.000000 100.000000 100.000000 -3742 0.053862 0.032887 4.358047 6.744028 -3743 0.090849 0.044645 8.996160 10.658977 -3744 0.059465 0.036020 9.814756 11.645833 -3745 0.063038 0.027318 8.731013 13.507568 -3746 0.084238 0.032879 8.591008 10.804969 -3747 1.000000 1.000000 100.000000 100.000000 -3748 0.036955 0.023223 6.728513 7.287292 -3749 0.062474 0.048870 7.981160 11.233038 -3750 0.075506 0.042470 8.163494 9.471038 -3751 0.058655 0.033947 9.045087 9.432307 -3752 0.057742 0.036514 10.974689 15.053681 -3753 0.075080 0.028353 13.106667 16.214959 -3754 0.067358 0.075588 20.114488 15.145974 -3755 0.075664 0.049618 11.968900 12.383085 -3756 1.000000 1.000000 100.000000 100.000000 -3757 0.092315 0.041723 8.333271 12.956387 -3758 0.068071 0.058709 11.876475 16.017000 -3759 0.070173 0.039914 11.821513 10.368101 -3760 0.080485 0.044006 7.723989 10.983171 -3761 0.059777 0.033942 9.464567 11.019927 -3762 0.079638 0.048532 8.867542 12.619686 -3763 1.000000 1.000000 100.000000 100.000000 -3764 0.053039 0.023004 10.856396 11.998350 -3765 0.093654 0.061469 8.592561 13.302513 -3766 0.059397 0.035809 7.424931 8.747119 -3767 0.073760 0.038726 8.266333 12.930951 -3768 0.098749 0.089191 11.383512 13.470040 -3769 0.075147 0.057759 7.641555 8.845144 -3770 1.000000 1.000000 100.000000 100.000000 -3771 0.066439 0.043990 6.250203 10.010705 -3772 1.000000 1.000000 100.000000 100.000000 -3773 0.070676 0.055596 15.017953 12.536949 -3774 0.062805 0.042864 11.091381 12.010461 -3775 0.062532 0.069077 7.274308 8.269580 -3776 0.046427 0.017308 6.755539 9.286538 -3777 1.000000 1.000000 100.000000 100.000000 -3778 0.071848 0.052742 11.237391 15.343094 -3779 0.068032 0.046207 8.722205 14.354629 -3780 0.085778 0.034416 9.481307 15.079552 -3781 1.000000 1.000000 100.000000 100.000000 -3782 0.093348 0.079275 8.372841 11.417012 -3783 0.069468 0.060128 8.809727 11.074548 -3784 0.058726 0.033371 12.493936 15.778662 -3785 0.061870 0.029293 8.631124 12.204406 -3786 0.087824 0.050196 9.434621 14.633030 -3787 0.060566 0.036101 9.326425 9.135435 -3788 0.082466 0.083802 12.244606 15.966863 -3789 0.083734 0.059338 7.249110 6.853875 -3790 0.086333 0.090636 14.263293 15.033213 -3791 0.079982 0.046119 10.857106 9.755899 -3792 0.039800 0.029444 6.936869 8.036667 -3793 0.054242 0.024303 7.831489 10.087107 -3794 0.074542 0.026867 6.360954 8.378453 -3795 1.000000 1.000000 100.000000 100.000000 -3796 0.052234 0.044292 8.874910 11.920565 -3797 0.098775 0.036671 10.496316 14.036082 -3798 0.063600 0.030798 8.084030 10.350478 -3799 0.076680 0.054687 14.510212 10.630610 -3800 0.070897 0.049426 8.217417 13.105981 -3801 0.069337 0.045355 9.185332 16.232900 -3802 0.066425 0.042075 5.820320 11.400556 -3803 0.072259 0.048103 8.772163 12.161733 -3804 0.064548 0.041422 7.799276 13.559712 -3805 0.074619 0.050359 11.930087 13.599713 -3806 0.049104 0.034032 10.974891 10.450797 -3807 1.000000 1.000000 100.000000 100.000000 -3808 0.071152 0.041433 9.805600 6.228758 -3809 0.088558 0.060778 12.979594 17.492615 -3810 1.000000 1.000000 100.000000 100.000000 -3811 0.089590 0.064601 9.982239 7.657121 -3812 0.050181 0.023190 8.137861 11.386581 -3813 0.083661 0.042025 8.758025 9.274347 -3814 0.040942 0.034730 10.006137 12.409461 -3815 0.076760 0.037987 8.809074 10.356685 -3816 0.060860 0.027298 10.393491 14.105894 -3817 0.087583 0.057773 8.475312 11.542229 -3818 0.069937 0.034768 12.265287 10.053935 -3819 0.059306 0.031767 10.565618 10.262087 -3820 1.000000 1.000000 100.000000 100.000000 -3821 0.079769 0.064172 8.292171 12.283691 -3822 1.000000 1.000000 100.000000 100.000000 -3823 0.078069 0.043304 10.472891 12.650481 -3824 0.069291 0.039294 17.386673 19.462217 -3825 1.000000 1.000000 100.000000 100.000000 -3826 0.063556 0.030003 8.293472 7.182910 -3827 0.099250 0.072049 8.038417 9.914413 -3828 0.044087 0.031666 12.314779 9.846666 -3829 0.045886 0.022689 7.678939 9.757781 -3830 0.094840 0.085934 8.513253 15.132553 -3831 0.066182 0.042770 11.915609 13.462317 -3832 0.068823 0.063332 13.549825 13.894989 -3833 0.079057 0.033627 9.448716 11.178697 -3834 0.042218 0.035379 7.848064 9.487862 -3835 0.070114 0.046269 11.125875 14.881114 -3836 0.094946 0.054812 16.738183 18.873056 -3837 0.078914 0.030380 7.009348 9.360915 -3838 0.066461 0.031263 5.584141 10.609101 -3839 0.051923 0.035240 7.524781 8.391900 -3840 0.080868 0.041676 9.695635 14.937381 -3841 0.077012 0.045785 10.818965 14.495670 -3842 0.071870 0.052457 12.344983 13.225002 -3843 0.059717 0.039135 6.666945 11.488103 -3844 0.059861 0.036038 19.327323 17.342321 -3845 0.060046 0.042567 7.727879 11.284001 -3846 1.000000 1.000000 100.000000 100.000000 -3847 0.069228 0.031885 8.615072 10.705090 -3848 0.047466 0.034449 9.051473 12.372015 -3849 0.092038 0.071058 11.367955 13.557296 -3850 0.059315 0.023604 12.091162 17.216916 -3851 0.058189 0.050620 9.077473 15.752801 -3852 0.068637 0.040159 12.524622 12.506320 -3853 0.065735 0.034813 12.352450 15.012902 -3854 0.045526 0.022640 9.890751 14.409563 -3855 0.067551 0.032132 8.157424 10.297008 -3856 0.086789 0.073217 13.772736 13.385094 -3857 0.059168 0.042564 11.636613 16.086103 -3858 0.079796 0.074415 8.775155 15.413086 -3859 0.053468 0.046257 5.313096 7.281402 -3860 0.048155 0.028710 8.968449 8.254781 -3861 0.052654 0.020338 10.115283 8.854124 -3862 0.033825 0.022954 8.428745 10.527455 -3863 0.054130 0.028237 6.557950 11.800760 -3864 0.056620 0.018584 12.540845 12.779808 -3865 0.042711 0.038171 10.678709 13.967569 -3866 0.091384 0.043195 6.619541 8.610255 -3867 0.069640 0.053513 7.885946 9.590313 -3868 0.047086 0.028807 8.257854 13.052551 -3869 0.062457 0.032617 9.956243 13.895118 -3870 0.055801 0.035641 9.081274 10.151949 -3871 0.055227 0.036704 7.200508 8.364244 -3872 1.000000 1.000000 100.000000 100.000000 -3873 0.072334 0.039388 11.076141 10.042350 -3874 1.000000 1.000000 100.000000 100.000000 -3875 0.076299 0.072249 8.802752 13.845002 -3876 0.080926 0.054805 9.159182 9.834579 -3877 0.076292 0.081540 10.280517 13.221994 -3878 0.080454 0.057707 8.536064 10.784690 -3879 0.062633 0.030162 10.281109 15.712235 -3880 0.050170 0.041884 6.875544 9.687277 -3881 0.054987 0.028631 14.039964 15.960638 -3882 0.069827 0.028030 13.438640 16.565326 -3883 0.080818 0.031196 9.858362 16.113657 -3884 1.000000 1.000000 100.000000 100.000000 -3885 0.054664 0.039180 9.704850 13.665777 -3886 0.087815 0.044996 8.371907 10.366414 -3887 1.000000 1.000000 100.000000 100.000000 -3888 1.000000 1.000000 100.000000 100.000000 -3889 0.067958 0.062053 16.897012 16.067470 -3890 0.069316 0.037660 8.965368 21.100179 -3891 0.073855 0.052872 10.291375 15.802611 -3892 1.000000 1.000000 100.000000 100.000000 -3893 0.092344 0.042407 8.451065 12.951018 -3894 0.087559 0.057779 7.932704 11.394364 -3895 0.082106 0.041309 13.686673 14.929819 -3896 0.052089 0.037282 8.258812 8.880744 -3897 0.071194 0.026121 12.595353 16.307505 -3898 0.075758 0.041712 6.974921 14.049477 -3899 1.000000 1.000000 100.000000 100.000000 -3900 1.000000 1.000000 100.000000 100.000000 -3901 0.075385 0.042288 11.187303 12.910888 -3902 0.088486 0.098044 7.921949 12.401999 -3903 0.078333 0.078373 15.910738 16.546255 -3904 0.079028 0.043385 9.756494 13.287740 -3905 0.059904 0.038152 11.578569 12.314335 -3906 1.000000 1.000000 100.000000 100.000000 -3907 0.096999 0.057346 11.988791 11.936334 -3908 0.038482 0.029250 6.980061 10.388074 -3909 0.049620 0.026429 6.710931 11.813251 -3910 0.068364 0.040171 12.472671 11.225262 -3911 0.069595 0.039528 8.060666 8.370729 -3912 1.000000 1.000000 100.000000 100.000000 -3913 0.053684 0.036345 11.752628 11.780213 -3914 1.000000 1.000000 100.000000 100.000000 -3915 0.058017 0.028878 11.649157 15.181589 -3916 0.061967 0.032775 9.067661 10.949180 -3917 1.000000 1.000000 100.000000 100.000000 -3918 0.092955 0.043223 11.767200 15.527678 -3919 1.000000 1.000000 100.000000 100.000000 -3920 0.051268 0.029570 12.850659 10.913957 -3921 0.076670 0.046627 7.132266 11.438437 -3922 0.061550 0.025260 14.320270 13.115216 -3923 0.074668 0.037679 10.068731 11.420502 -3924 1.000000 1.000000 100.000000 100.000000 -3925 0.059815 0.038376 7.907406 13.064729 -3926 0.097680 0.075066 12.172964 12.809282 -3927 0.065538 0.046105 10.086392 12.888678 -3928 0.065628 0.047102 11.696205 16.290732 -3929 1.000000 1.000000 100.000000 100.000000 -3930 0.081796 0.060354 14.458333 15.467217 -3931 1.000000 1.000000 100.000000 100.000000 -3932 0.070707 0.033177 9.692221 11.671012 -3933 0.088095 0.070128 5.899140 13.846136 -3934 0.068648 0.034639 13.049095 14.561163 -3935 0.085463 0.036056 9.497671 13.987995 -3936 0.050052 0.025744 8.974182 7.756907 -3937 0.062574 0.032498 6.834300 7.438868 -3938 0.076389 0.040553 11.061911 11.980287 -3939 0.048414 0.034689 7.972558 10.123754 -3940 1.000000 1.000000 100.000000 100.000000 -3941 0.067569 0.043120 10.894319 14.512340 -3942 0.040612 0.020333 6.466249 11.552494 -3943 0.086682 0.075084 16.734789 16.310789 -3944 1.000000 1.000000 100.000000 100.000000 -3945 1.000000 1.000000 100.000000 100.000000 -3946 0.087808 0.067148 7.140584 9.471026 -3947 0.049198 0.035714 10.696850 12.795249 -3948 0.074690 0.050120 13.292716 17.360747 -3949 0.076080 0.069932 7.228199 9.588397 -3950 0.071385 0.027479 6.717500 11.458266 -3951 0.092788 0.045051 11.306339 15.541813 -3952 0.076753 0.054335 10.686351 11.404734 -3953 1.000000 1.000000 100.000000 100.000000 -3954 1.000000 1.000000 100.000000 100.000000 -3955 0.056551 0.039657 8.106500 10.645749 -3956 0.059933 0.022143 10.906474 8.628490 -3957 0.080413 0.061697 10.252620 11.187839 -3958 0.047776 0.024185 11.385032 10.943903 -3959 0.073730 0.043722 15.687011 13.936168 -3960 0.066661 0.035808 8.580722 9.444568 -3961 0.062138 0.047607 9.207475 10.057175 -3962 1.000000 1.000000 100.000000 100.000000 -3963 0.048136 0.031446 6.179794 8.302193 -3964 1.000000 1.000000 100.000000 100.000000 -3965 0.047802 0.024431 11.621697 10.414150 -3966 0.057980 0.038403 6.803878 11.553722 -3967 0.049715 0.022832 7.553517 14.964693 -3968 1.000000 1.000000 100.000000 100.000000 -3969 0.055196 0.025275 12.617823 11.495314 -3970 0.079370 0.049815 12.844119 11.869672 -3971 0.095188 0.030825 9.401261 10.636729 -3972 0.091758 0.051022 8.095853 11.029310 -3973 0.087258 0.070912 9.913226 9.482780 -3974 1.000000 1.000000 100.000000 100.000000 -3975 0.072934 0.075239 12.205969 16.591602 -3976 0.060722 0.044924 6.116040 9.167776 -3977 0.067239 0.023864 9.332609 11.373213 -3978 0.094979 0.037705 9.750292 14.110200 -3979 0.042713 0.023642 9.714472 14.075381 -3980 0.076818 0.059911 14.848289 19.805616 -3981 1.000000 1.000000 100.000000 100.000000 -3982 0.071143 0.044971 10.228029 9.273486 -3983 1.000000 1.000000 100.000000 100.000000 -3984 0.079563 0.080313 11.554807 13.753109 -3985 0.069846 0.061307 15.328061 16.906377 -3986 0.081091 0.044813 8.264217 11.174459 -3987 1.000000 1.000000 100.000000 100.000000 -3988 0.098484 0.052981 14.735843 14.992255 -3989 0.062231 0.034737 14.113061 12.745852 -3990 0.052668 0.041662 11.647734 14.233375 -3991 0.086802 0.052117 9.803360 14.404606 -3992 0.093414 0.036168 9.143143 14.671430 -3993 0.056060 0.041967 6.314110 10.060572 -3994 1.000000 1.000000 100.000000 100.000000 -3995 0.087344 0.054630 12.249135 15.649310 -3996 0.057622 0.044490 8.409737 11.292172 -3997 0.084886 0.057151 9.211572 15.083619 -3998 0.044204 0.021296 8.029478 10.275214 -3999 0.092689 0.048700 6.927654 11.162240 -4000 0.082594 0.031550 11.995167 15.391814 -4001 0.037895 0.016938 6.512795 9.978259 -4002 1.000000 1.000000 100.000000 100.000000 -4003 1.000000 1.000000 100.000000 100.000000 -4004 0.067577 0.052776 8.843299 9.469192 -4005 0.082298 0.044462 12.510840 15.887807 -4006 0.035035 0.021632 8.061736 11.169746 -4007 1.000000 1.000000 100.000000 100.000000 -4008 0.071421 0.057508 11.934212 18.290218 -4009 1.000000 1.000000 100.000000 100.000000 -4010 1.000000 1.000000 100.000000 100.000000 -4011 1.000000 1.000000 100.000000 100.000000 -4012 0.064676 0.074530 14.928252 17.854735 -4013 0.089426 0.071806 14.007662 16.605166 -4014 0.083337 0.063333 12.820926 16.191640 -4015 0.093781 0.046463 8.649107 11.485117 -4016 0.075669 0.062981 6.979497 10.561235 -4017 0.057718 0.024883 6.851802 8.675839 -4018 0.043104 0.025648 8.274276 9.971812 -4019 0.061317 0.048821 10.209155 16.983493 -4020 0.076848 0.034519 14.565702 21.284947 -4021 0.071041 0.053258 11.898780 13.127071 -4022 0.069244 0.029605 10.438758 15.711946 -4023 0.047559 0.033495 8.653659 13.872391 -4024 0.064895 0.043493 8.676134 16.840101 -4025 1.000000 1.000000 100.000000 100.000000 -4026 1.000000 1.000000 100.000000 100.000000 -4027 0.079598 0.046099 14.671228 15.086740 -4028 0.033646 0.016296 5.395792 8.502702 -4029 0.067156 0.033990 6.986794 10.604204 -4030 0.047970 0.025693 6.838225 8.842627 -4031 1.000000 1.000000 100.000000 100.000000 -4032 0.052757 0.035726 8.419972 9.687835 -4033 0.076101 0.037511 9.863100 13.164935 -4034 0.065485 0.032049 8.055432 13.403522 -4035 0.093452 0.062797 12.216293 14.367912 -4036 1.000000 1.000000 100.000000 100.000000 -4037 0.069916 0.036158 6.548350 8.357429 -4038 0.069663 0.059344 8.696162 11.240882 -4039 0.083668 0.078916 9.750619 12.021895 -4040 0.066690 0.046219 12.341287 12.051229 -4041 0.062387 0.033535 15.495393 14.316521 -4042 0.071121 0.053220 7.988042 6.510738 -4043 0.080031 0.053949 11.067475 14.400019 -4044 0.079308 0.034227 11.430344 13.007610 -4045 0.062742 0.030947 11.885571 13.078047 -4046 0.054536 0.043984 8.701585 17.554154 -4047 0.075445 0.058631 14.629199 16.089240 -4048 1.000000 1.000000 100.000000 100.000000 -4049 0.092547 0.039644 9.154747 15.817442 -4050 1.000000 1.000000 100.000000 100.000000 -4051 0.063603 0.076736 8.673994 14.112400 -4052 1.000000 1.000000 100.000000 100.000000 -4053 0.091327 0.045607 10.607964 16.372387 -4054 0.069248 0.035593 9.536179 10.678740 -4055 1.000000 1.000000 100.000000 100.000000 -4056 0.060908 0.043354 13.291219 16.778031 -4057 0.074239 0.035210 8.565950 11.842823 -4058 0.052014 0.037726 12.525085 9.227764 -4059 0.099780 0.043551 10.395803 12.569891 -4060 0.066790 0.042174 11.787802 11.222085 -4061 0.059811 0.034562 17.903647 15.290584 -4062 0.051528 0.018474 9.345811 9.206914 -4063 1.000000 1.000000 100.000000 100.000000 -4064 0.061728 0.036379 11.913498 14.842524 -4065 1.000000 1.000000 100.000000 100.000000 -4066 0.039841 0.025570 7.839082 12.707277 -4067 0.052149 0.038532 11.035111 13.140383 -4068 1.000000 1.000000 100.000000 100.000000 -4069 0.073813 0.039126 12.503893 11.198278 -4070 0.085346 0.049971 8.009799 11.376601 -4071 1.000000 1.000000 100.000000 100.000000 -4072 0.091982 0.065828 10.074936 21.588544 -4073 0.072248 0.063298 8.790364 7.654431 -4074 0.084730 0.030580 10.939071 12.041426 -4075 0.063502 0.058240 7.902196 10.402520 -4076 0.035452 0.020714 9.124003 6.817322 -4077 0.062350 0.055664 8.645537 11.499327 -4078 0.039261 0.034921 10.495436 11.416994 -4079 0.048936 0.029865 9.462399 11.324191 -4080 1.000000 1.000000 100.000000 100.000000 -4081 1.000000 1.000000 100.000000 100.000000 -4082 0.067270 0.036062 11.680517 15.786790 -4083 0.052658 0.037245 19.051096 17.680888 -4084 1.000000 1.000000 100.000000 100.000000 -4085 0.086589 0.061137 9.084906 8.792738 -4086 1.000000 1.000000 100.000000 100.000000 -4087 0.065612 0.033690 12.538794 13.039146 -4088 0.072030 0.049376 9.775659 12.528716 -4089 0.073298 0.038962 10.561303 9.056738 -4090 0.084222 0.029401 10.924775 11.906856 -4091 0.095776 0.060227 10.249342 17.737139 -4092 0.077043 0.033741 11.209707 16.341717 -4093 0.043087 0.027778 10.314254 11.131658 -4094 0.082448 0.048938 9.920048 12.983576 -4095 0.060508 0.038747 7.487954 9.490250 -4096 1.000000 1.000000 100.000000 100.000000 -4097 0.096527 0.062637 10.232930 10.575693 -4098 0.077912 0.038032 9.645406 13.129342 -4099 0.052239 0.032286 10.556908 8.896176 -4100 0.092299 0.076338 10.798952 11.862351 -4101 1.000000 1.000000 100.000000 100.000000 -4102 0.073208 0.028256 9.521777 14.793226 -4103 0.053441 0.022390 10.804000 11.657265 -4104 0.080033 0.034331 7.341176 12.561047 -4105 0.041152 0.027068 7.756290 8.914485 -4106 0.056630 0.026441 7.433628 12.169236 -4107 0.063527 0.019004 7.154528 21.436788 -4108 0.067715 0.058446 9.478076 11.649132 -4109 0.099526 0.086997 17.073322 15.103900 -4110 0.070698 0.058742 12.653648 16.766609 -4111 0.080098 0.045871 6.455093 6.901343 -4112 0.066439 0.065371 16.892604 14.922433 -4113 0.057380 0.047796 6.509862 8.080948 -4114 0.068276 0.028521 5.506592 7.181081 -4115 0.099156 0.046447 8.444751 11.390101 -4116 0.079179 0.040271 11.023272 17.031035 -4117 1.000000 1.000000 100.000000 100.000000 -4118 0.072324 0.044427 12.223448 12.471916 -4119 0.084829 0.059072 13.207408 15.092394 -4120 1.000000 1.000000 100.000000 100.000000 -4121 0.054029 0.025913 11.545716 10.785103 -4122 0.066111 0.036938 8.407604 14.212909 -4123 1.000000 1.000000 100.000000 100.000000 -4124 0.040313 0.026253 7.413257 9.493298 -4125 0.057447 0.034125 10.452124 9.600036 -4126 0.066650 0.045205 8.419415 14.440538 -4127 0.054496 0.042347 7.814703 10.540285 -4128 0.055318 0.033214 9.766765 13.496269 -4129 0.063108 0.060278 6.644792 8.106651 -4130 0.073323 0.073822 14.425667 17.680914 -4131 0.063858 0.056766 9.973214 14.779552 -4132 1.000000 1.000000 100.000000 100.000000 -4133 0.055296 0.034067 8.586849 11.014363 -4134 0.071646 0.046776 6.720433 13.365046 -4135 1.000000 1.000000 100.000000 100.000000 -4136 0.091288 0.078832 6.628025 13.814074 -4137 0.055625 0.019268 12.240144 13.070706 -4138 0.069312 0.025378 8.228434 12.028149 -4139 0.097434 0.041796 9.645596 14.302390 -4140 1.000000 1.000000 100.000000 100.000000 -4141 0.057311 0.051795 5.418260 7.162790 -4142 0.082114 0.026961 9.127882 14.133180 -4143 0.066898 0.056057 8.743289 14.666482 -4144 0.039984 0.031028 4.962887 7.254580 -4145 0.084267 0.049519 10.076311 11.860944 -4146 0.056666 0.033082 7.348592 8.978520 -4147 0.063229 0.027307 12.175412 17.161325 -4148 0.041725 0.056769 7.513841 11.192786 -4149 0.098572 0.062207 11.794153 17.526747 -4150 0.051296 0.027153 10.989038 10.757275 -4151 0.052262 0.044784 7.581359 11.027390 -4152 0.044068 0.036936 4.442539 6.458068 -4153 1.000000 1.000000 100.000000 100.000000 -4154 0.077208 0.047866 10.392522 12.583196 -4155 0.093863 0.084658 8.688876 10.019043 -4156 0.061621 0.052914 6.735579 9.990036 -4157 0.076810 0.033001 8.851063 12.264108 -4158 0.074619 0.018746 13.332957 15.206131 -4159 1.000000 1.000000 100.000000 100.000000 -4160 0.052637 0.046495 15.264936 15.620439 -4161 0.078762 0.029336 7.360595 11.466284 -4162 1.000000 1.000000 100.000000 100.000000 -4163 0.048036 0.023624 9.831696 8.506393 -4164 0.068107 0.033137 10.999197 10.838288 -4165 1.000000 1.000000 100.000000 100.000000 -4166 1.000000 1.000000 100.000000 100.000000 -4167 0.056209 0.033233 7.390260 5.706585 -4168 0.081095 0.074287 9.572764 15.152442 -4169 0.068344 0.037704 14.029118 12.472103 -4170 0.090020 0.028273 7.395949 12.226984 -4171 0.088311 0.043024 10.972464 14.187856 -4172 0.058428 0.035860 9.624828 10.719486 -4173 0.077019 0.043774 12.782123 17.081231 -4174 0.044537 0.041290 7.196394 12.275233 -4175 0.071492 0.050273 8.396053 9.655287 -4176 0.051312 0.033651 8.964844 7.654887 -4177 0.038817 0.018687 7.134907 9.782840 -4178 0.087162 0.050393 8.566262 8.514997 -4179 0.091745 0.052369 11.437847 21.819356 -4180 0.087964 0.032002 7.224430 7.880512 -4181 0.059034 0.035063 11.112273 11.423396 -4182 0.084519 0.030904 9.816557 11.640528 -4183 0.067571 0.031978 7.586513 11.401011 -4184 0.061224 0.031234 10.197789 10.037180 -4185 0.083789 0.048179 9.182171 14.286375 -4186 0.050504 0.028200 7.985587 12.203031 -4187 0.052391 0.033740 8.665430 15.423146 -4188 0.084801 0.045163 9.488979 11.631333 -4189 0.079370 0.058381 10.509356 11.194737 -4190 0.070016 0.046668 12.962408 13.396526 -4191 0.061611 0.021724 8.956035 15.015754 -4192 0.077767 0.049769 10.881221 15.742610 -4193 0.074843 0.052167 9.418501 10.374743 -4194 0.087604 0.043168 9.071167 13.623667 -4195 0.076152 0.030128 15.459950 12.350702 -4196 0.081868 0.042497 10.724020 8.235612 -4197 0.055479 0.038310 8.691276 13.599676 -4198 0.046266 0.023320 10.205145 12.478374 -4199 0.056813 0.027306 10.731942 11.370823 -4200 0.065858 0.044936 12.411084 15.387062 -4201 0.049968 0.056755 8.918110 8.727838 -4202 0.076479 0.047145 11.356717 9.645402 -4203 0.081136 0.043603 12.840992 20.268709 -4204 0.072084 0.029791 10.363142 18.003459 -4205 0.098107 0.047907 11.529620 13.738414 -4206 0.064324 0.039436 11.548913 14.039543 -4207 0.046021 0.062078 14.009478 15.507349 -4208 0.077141 0.040213 9.861522 13.704962 -4209 0.063229 0.064296 8.820175 13.761625 -4210 0.059842 0.037363 9.805373 10.734989 -4211 0.083214 0.068280 9.402859 15.360159 -4212 0.076959 0.043329 8.852929 10.362797 -4213 1.000000 1.000000 100.000000 100.000000 -4214 1.000000 1.000000 100.000000 100.000000 -4215 1.000000 1.000000 100.000000 100.000000 -4216 0.058360 0.041317 12.188789 12.773273 -4217 0.057803 0.040817 11.519454 19.184169 -4218 0.077360 0.080810 10.656112 14.469664 -4219 0.099651 0.068422 11.745276 9.867664 -4220 0.062124 0.036307 12.044728 11.475047 -4221 0.061639 0.035308 10.525991 11.993681 -4222 1.000000 1.000000 100.000000 100.000000 -4223 1.000000 1.000000 100.000000 100.000000 -4224 0.066711 0.030740 8.026118 13.165381 -4225 0.065735 0.026831 12.207861 15.753080 -4226 0.070973 0.032807 10.070366 10.372524 -4227 1.000000 1.000000 100.000000 100.000000 -4228 0.092061 0.045102 10.857744 22.260103 -4229 0.065549 0.025492 8.603185 13.974061 -4230 0.071904 0.067063 9.536125 11.805558 -4231 0.086824 0.058904 9.823253 16.309277 -4232 0.089137 0.047344 9.659604 8.126448 -4233 0.062742 0.039064 14.879203 14.878378 -4234 1.000000 1.000000 100.000000 100.000000 -4235 0.052956 0.034052 7.368192 6.456953 -4236 0.076205 0.038096 9.353337 7.906905 -4237 0.078621 0.038544 7.139951 6.093712 -4238 1.000000 1.000000 100.000000 100.000000 -4239 0.071905 0.040503 6.093285 8.756275 -4240 0.056504 0.031130 11.947314 11.348747 -4241 0.056551 0.031407 9.266551 8.977316 -4242 1.000000 1.000000 100.000000 100.000000 -4243 0.064009 0.020090 8.038254 14.029541 -4244 0.072667 0.058562 7.946545 11.774104 -4245 0.087800 0.053861 8.713819 11.480523 -4246 0.056652 0.042398 9.157041 8.409697 -4247 0.076403 0.074762 15.089146 16.827946 -4248 0.060658 0.037448 11.013930 12.822665 -4249 0.039086 0.039512 13.061260 14.761831 -4250 0.053519 0.036820 9.292791 9.120178 -4251 0.083532 0.078421 8.150875 13.097840 -4252 1.000000 1.000000 100.000000 100.000000 -4253 0.045911 0.022190 9.083861 11.163477 -4254 0.061282 0.047403 13.828324 11.495953 -4255 0.062814 0.027597 13.151975 14.111454 -4256 0.065994 0.037243 11.588281 14.016005 -4257 0.084389 0.089063 8.314201 10.730521 -4258 0.089140 0.037387 15.480060 20.520883 -4259 1.000000 1.000000 100.000000 100.000000 -4260 0.038381 0.045826 10.303201 11.839222 -4261 1.000000 1.000000 100.000000 100.000000 -4262 1.000000 1.000000 100.000000 100.000000 -4263 0.042092 0.022912 10.946418 11.851351 -4264 0.045837 0.026200 11.401508 16.247262 -4265 0.076354 0.047794 9.119702 9.458483 -4266 1.000000 1.000000 100.000000 100.000000 -4267 0.083953 0.068236 8.167006 6.971461 -4268 0.052564 0.021038 8.586309 11.982810 -4269 1.000000 1.000000 100.000000 100.000000 -4270 0.089024 0.037429 8.357640 10.934349 -4271 0.069575 0.032939 8.290752 10.826763 -4272 0.057153 0.029372 7.639208 9.790493 -4273 0.077520 0.050255 11.052554 15.031818 -4274 0.087677 0.049685 8.359258 9.944661 -4275 1.000000 1.000000 100.000000 100.000000 -4276 0.067644 0.049939 13.522434 18.313614 -4277 0.061076 0.035659 5.733315 6.345095 -4278 1.000000 1.000000 100.000000 100.000000 -4279 0.050006 0.037599 7.872993 8.617881 -4280 1.000000 1.000000 100.000000 100.000000 -4281 0.048729 0.028775 7.817624 14.996220 -4282 0.062649 0.039624 9.328667 13.214717 -4283 0.058679 0.072558 8.687069 12.036395 -4284 0.093106 0.060211 8.585870 9.594751 -4285 0.080145 0.092710 7.548519 11.604605 -4286 0.084036 0.069986 9.427310 16.397803 -4287 0.058956 0.049940 7.014933 8.463173 -4288 0.084633 0.056762 11.639672 15.324058 -4289 0.043415 0.030382 9.919635 11.697311 -4290 0.058668 0.027973 8.770440 13.347253 -4291 0.059351 0.034466 6.119897 11.348314 -4292 1.000000 1.000000 100.000000 100.000000 -4293 0.056350 0.023436 10.254423 14.606895 -4294 0.091979 0.073825 11.020262 12.864020 -4295 0.085218 0.065711 11.250990 9.720468 -4296 0.083408 0.048323 11.790475 9.930677 -4297 0.047398 0.030053 15.446699 19.425108 -4298 1.000000 1.000000 100.000000 100.000000 -4299 0.069061 0.057223 11.187383 13.501874 -4300 0.079951 0.036503 10.464049 14.596994 -4301 0.062839 0.047838 7.456921 7.534445 -4302 0.079869 0.042813 7.489466 11.841482 -4303 0.072479 0.058644 7.719994 12.809859 -4304 0.046946 0.047680 15.228142 15.158066 -4305 0.054044 0.035243 11.542693 10.187155 -4306 0.083615 0.089524 9.013935 9.730711 -4307 0.085570 0.030538 8.780962 13.555002 -4308 0.090071 0.036657 7.420725 10.740732 -4309 0.095273 0.061491 18.126629 18.594474 -4310 0.074423 0.060044 11.330967 13.675027 -4311 0.068457 0.057041 11.168515 10.403952 -4312 1.000000 1.000000 100.000000 100.000000 -4313 0.064811 0.034925 9.483270 7.636960 -4314 0.070549 0.028435 7.370093 17.616944 -4315 0.059162 0.034412 9.393963 13.909142 -4316 1.000000 1.000000 100.000000 100.000000 -4317 0.068084 0.086157 11.209900 12.269639 -4318 0.090033 0.052914 13.209781 15.741834 -4319 0.068756 0.080359 9.041081 10.906545 -4320 1.000000 1.000000 100.000000 100.000000 -4321 0.066002 0.026609 9.720951 13.878629 -4322 0.077182 0.030325 12.353435 16.446256 -4323 0.097753 0.041590 10.631374 11.879202 -4324 0.078885 0.043773 12.315764 14.786802 -4325 1.000000 1.000000 100.000000 100.000000 -4326 0.089952 0.055887 9.364720 11.649745 -4327 0.063988 0.040077 7.229867 10.109310 -4328 0.067577 0.031795 10.307378 17.640153 -4329 0.092555 0.032196 9.302895 13.170437 -4330 0.096232 0.042587 6.884108 8.653215 -4331 0.070831 0.023396 10.114128 13.528589 -4332 0.090524 0.044287 10.402661 13.857419 -4333 0.090152 0.053990 8.593920 16.145288 -4334 0.080564 0.049278 12.887237 18.659300 -4335 1.000000 1.000000 100.000000 100.000000 -4336 0.071965 0.063530 12.816633 18.464809 -4337 0.079038 0.048235 7.445178 9.689671 -4338 0.068850 0.054074 10.514322 16.636436 -4339 0.085357 0.069662 7.975587 12.529858 -4340 0.064995 0.041377 8.215418 9.521379 -4341 0.072455 0.025196 8.479117 10.031850 -4342 0.077738 0.042526 7.471875 10.598036 -4343 0.070294 0.034754 10.770134 15.366605 -4344 0.094827 0.041170 7.806595 12.986625 -4345 0.069561 0.039151 8.936933 15.078505 -4346 0.063784 0.037052 8.412211 13.624252 -4347 0.065263 0.041159 9.203665 8.162188 -4348 0.093710 0.064243 12.133899 19.124996 -4349 1.000000 1.000000 100.000000 100.000000 -4350 1.000000 1.000000 100.000000 100.000000 -4351 0.081333 0.041078 8.336969 11.017265 -4352 0.038890 0.019662 7.814633 8.083740 -4353 1.000000 1.000000 100.000000 100.000000 -4354 0.097980 0.064927 13.352838 15.633969 -4355 1.000000 1.000000 100.000000 100.000000 -4356 1.000000 1.000000 100.000000 100.000000 -4357 1.000000 1.000000 100.000000 100.000000 -4358 0.078820 0.039548 8.944815 11.976847 -4359 0.058270 0.047400 12.835053 14.790526 -4360 0.077154 0.048643 7.470441 8.846102 -4361 0.057846 0.038319 10.205161 14.439578 -4362 1.000000 1.000000 100.000000 100.000000 -4363 0.076684 0.057040 8.743065 17.218098 -4364 1.000000 1.000000 100.000000 100.000000 -4365 0.064719 0.030223 12.195708 11.110198 -4366 0.044577 0.025531 11.126955 13.470290 -4367 0.082043 0.048711 8.942768 13.120659 -4368 0.072180 0.062235 10.860522 18.570730 -4369 0.040919 0.033531 8.257332 12.042541 -4370 0.057723 0.032032 5.570839 8.250842 -4371 0.080867 0.048567 10.454967 16.595578 -4372 0.092315 0.085885 9.498886 14.663335 -4373 1.000000 1.000000 100.000000 100.000000 -4374 1.000000 1.000000 100.000000 100.000000 -4375 0.049789 0.026147 9.899596 13.346146 -4376 1.000000 1.000000 100.000000 100.000000 -4377 0.057111 0.027310 11.251405 9.843235 -4378 0.058931 0.048789 8.501502 14.886024 -4379 1.000000 1.000000 100.000000 100.000000 -4380 0.065003 0.043419 8.571704 9.493520 -4381 0.098212 0.066415 7.742636 16.341490 -4382 0.081217 0.031928 8.310674 11.483683 -4383 1.000000 1.000000 100.000000 100.000000 -4384 0.058037 0.024047 8.623477 10.416623 -4385 0.052814 0.045119 7.766713 14.633294 -4386 0.086956 0.067157 14.161341 13.954520 -4387 0.072611 0.075682 11.280467 14.586999 -4388 1.000000 1.000000 100.000000 100.000000 -4389 0.072583 0.062628 9.623097 9.271851 -4390 1.000000 1.000000 100.000000 100.000000 -4391 1.000000 1.000000 100.000000 100.000000 -4392 0.075511 0.042799 10.528493 16.830384 -4393 1.000000 1.000000 100.000000 100.000000 -4394 0.056295 0.057177 9.778951 13.752211 -4395 0.059240 0.044437 12.876406 16.957047 -4396 1.000000 1.000000 100.000000 100.000000 -4397 0.091484 0.097843 11.444520 10.658631 -4398 0.047667 0.020754 10.961211 16.778376 -4399 0.055370 0.024095 13.320969 15.256073 -4400 0.099705 0.091322 12.729929 12.234459 -4401 0.085353 0.068477 12.075536 14.431524 -4402 0.032711 0.011448 8.888473 10.451763 -4403 0.077900 0.029165 7.746583 15.272549 -4404 1.000000 1.000000 100.000000 100.000000 -4405 0.075047 0.055145 13.264638 11.440822 -4406 0.069001 0.052105 11.242634 15.971243 -4407 0.030794 0.027537 5.209241 8.408088 -4408 0.063534 0.028067 6.379122 9.897662 -4409 0.098660 0.081294 10.814415 12.968220 -4410 0.075291 0.037015 8.980122 13.469029 -4411 1.000000 1.000000 100.000000 100.000000 -4412 0.057782 0.034233 7.959458 11.838758 -4413 0.090713 0.072256 9.025605 10.415912 -4414 0.080948 0.057553 9.110657 11.311150 -4415 0.080511 0.039277 7.766352 9.698507 -4416 1.000000 1.000000 100.000000 100.000000 -4417 0.077433 0.048535 12.433746 15.589355 -4418 0.060875 0.029428 9.634694 8.425097 -4419 0.060807 0.030191 5.114042 9.189416 -4420 0.094388 0.057082 12.549158 17.133413 -4421 0.069476 0.050550 6.011087 7.576443 -4422 1.000000 1.000000 100.000000 100.000000 -4423 0.093322 0.081908 7.040041 11.606775 -4424 0.072282 0.047772 11.485567 18.601712 -4425 0.078695 0.066680 6.066368 7.017805 -4426 0.086748 0.041506 9.031261 15.059203 -4427 0.061473 0.024746 6.966658 8.433673 -4428 0.073358 0.036026 9.368854 13.277445 -4429 0.070977 0.052212 11.064988 15.663886 -4430 0.073135 0.063634 11.798280 19.266459 -4431 0.098594 0.059815 10.200910 12.229253 -4432 0.091206 0.043579 6.968698 10.520788 -4433 0.093602 0.080467 11.502113 17.970108 -4434 1.000000 1.000000 100.000000 100.000000 -4435 0.078014 0.044946 7.942565 13.514294 -4436 0.089963 0.050723 11.173390 16.979808 -4437 0.037583 0.015235 7.399444 13.563459 -4438 0.068501 0.041151 10.885915 13.403072 -4439 0.097578 0.059481 8.188837 11.990929 -4440 0.074058 0.040316 7.803530 13.125064 -4441 0.073198 0.069848 10.966475 11.441520 -4442 0.056086 0.045886 7.492666 11.370710 -4443 0.069480 0.048349 7.948483 9.352636 -4444 0.062404 0.032990 6.658833 8.670530 -4445 0.047387 0.042914 7.558746 11.185340 -4446 0.045572 0.022634 6.927946 11.890798 -4447 0.063002 0.036107 11.011534 13.242668 -4448 0.096074 0.046822 14.121486 11.178864 -4449 0.029794 0.023881 7.319665 10.180466 -4450 1.000000 1.000000 100.000000 100.000000 -4451 0.068447 0.032592 8.934187 7.834601 -4452 0.064015 0.068955 10.379804 14.279286 -4453 0.086262 0.043411 7.566862 9.504706 -4454 0.049896 0.029032 7.559686 8.450351 -4455 1.000000 1.000000 100.000000 100.000000 -4456 1.000000 1.000000 100.000000 100.000000 -4457 0.048070 0.041324 7.317483 9.557857 -4458 0.056748 0.038907 9.855157 9.661440 -4459 0.048549 0.024647 9.046123 13.581789 -4460 0.038485 0.027094 8.234942 10.455415 -4461 1.000000 1.000000 100.000000 100.000000 -4462 0.059932 0.023703 8.708967 14.857746 -4463 0.058855 0.050413 8.901385 12.755308 -4464 0.089556 0.051180 10.167389 15.539726 -4465 0.079647 0.050521 10.055925 12.800863 -4466 0.051545 0.032340 7.257867 9.694312 -4467 1.000000 1.000000 100.000000 100.000000 -4468 1.000000 1.000000 100.000000 100.000000 -4469 1.000000 1.000000 100.000000 100.000000 -4470 0.096393 0.063180 6.885796 16.123576 -4471 0.051048 0.045127 13.387445 20.197474 -4472 0.071878 0.025907 10.961252 11.105516 -4473 1.000000 1.000000 100.000000 100.000000 -4474 1.000000 1.000000 100.000000 100.000000 -4475 0.048315 0.037600 8.005146 11.956568 -4476 1.000000 1.000000 100.000000 100.000000 -4477 1.000000 1.000000 100.000000 100.000000 -4478 0.054863 0.025642 6.951049 9.465981 -4479 0.060234 0.035887 17.594959 13.762734 -4480 0.096127 0.062796 10.082160 11.741124 -4481 0.053857 0.030025 13.561943 19.969158 -4482 0.097402 0.048933 8.239476 16.390412 -4483 0.062506 0.053996 8.612345 12.569469 -4484 0.083194 0.064433 7.336472 11.777134 -4485 0.079470 0.065777 10.384774 17.916340 -4486 1.000000 1.000000 100.000000 100.000000 -4487 0.095053 0.029772 10.319504 12.701132 -4488 0.079243 0.037511 6.395049 14.664350 -4489 0.063614 0.040188 11.038393 10.805494 -4490 1.000000 1.000000 100.000000 100.000000 -4491 0.094365 0.044007 7.137356 9.139371 -4492 0.054067 0.027901 6.891618 9.995622 -4493 0.081334 0.061670 10.619833 9.630187 -4494 0.052975 0.035257 12.397633 11.526894 -4495 1.000000 1.000000 100.000000 100.000000 -4496 1.000000 1.000000 100.000000 100.000000 -4497 1.000000 1.000000 100.000000 100.000000 -4498 0.091809 0.052916 9.929269 11.939695 -4499 0.070889 0.038177 9.208387 11.705809 -4500 0.072986 0.043664 8.168478 8.381345 -4501 1.000000 1.000000 100.000000 100.000000 -4502 0.086406 0.093985 12.273033 11.161831 -4503 0.068880 0.029948 11.688239 13.345792 -4504 0.072388 0.068223 12.108296 16.638868 -4505 0.075962 0.065459 13.208335 13.417071 -4506 1.000000 1.000000 100.000000 100.000000 -4507 0.054895 0.037919 12.567940 16.153482 -4508 1.000000 1.000000 100.000000 100.000000 -4509 1.000000 1.000000 100.000000 100.000000 -4510 0.059414 0.040519 8.313185 13.352063 -4511 0.061015 0.037172 10.341778 11.045747 -4512 0.068033 0.059180 7.592273 13.169797 -4513 0.098964 0.077791 6.599344 13.391806 -4514 0.087836 0.054052 11.983100 10.232230 -4515 0.049970 0.035688 9.924682 11.453716 -4516 0.092308 0.047507 10.579502 14.759358 -4517 1.000000 1.000000 100.000000 100.000000 -4518 0.074168 0.058127 10.091617 12.632652 -4519 1.000000 1.000000 100.000000 100.000000 -4520 0.076140 0.051351 12.329735 15.397061 -4521 0.057714 0.045337 7.671169 8.852013 -4522 0.063137 0.050157 10.542301 8.790712 -4523 0.096083 0.063502 12.861563 16.069258 -4524 1.000000 1.000000 100.000000 100.000000 -4525 0.095084 0.064720 13.465139 17.790345 -4526 0.072384 0.053998 7.539499 11.789759 -4527 1.000000 1.000000 100.000000 100.000000 -4528 1.000000 1.000000 100.000000 100.000000 -4529 0.072279 0.047942 10.647366 16.154595 -4530 0.058309 0.028636 11.495789 14.973591 -4531 0.088039 0.052197 14.968519 12.599395 -4532 0.068018 0.030472 7.044815 10.579197 -4533 1.000000 1.000000 100.000000 100.000000 -4534 0.073662 0.048444 9.590664 13.015976 -4535 0.083546 0.062488 8.143965 9.607842 -4536 0.051251 0.026356 9.075510 15.035924 -4537 0.039082 0.023223 6.140645 9.870595 -4538 0.074617 0.046290 9.514004 8.971307 -4539 0.058813 0.023948 10.083335 11.848267 -4540 0.070130 0.028231 5.965205 9.038859 -4541 0.073883 0.035573 9.631643 9.718917 -4542 0.069798 0.040186 14.456882 18.710435 -4543 0.094614 0.037663 6.712213 9.656226 -4544 0.093929 0.062161 11.126992 13.598921 -4545 0.076781 0.044596 8.185177 10.294905 -4546 0.074133 0.031529 13.968146 18.537427 -4547 0.063111 0.042077 13.810175 14.928837 -4548 0.065618 0.055293 8.561152 15.923451 -4549 0.055804 0.035632 11.455935 15.334715 -4550 1.000000 1.000000 100.000000 100.000000 -4551 0.038788 0.032454 5.931053 9.149986 -4552 0.091331 0.080916 7.085579 9.804272 -4553 0.068569 0.044379 7.863959 12.908477 -4554 0.042729 0.033035 7.975824 10.030507 -4555 1.000000 1.000000 100.000000 100.000000 -4556 0.084012 0.070670 14.578284 12.623297 -4557 1.000000 1.000000 100.000000 100.000000 -4558 0.056499 0.038688 10.261599 11.526295 -4559 1.000000 1.000000 100.000000 100.000000 -4560 1.000000 1.000000 100.000000 100.000000 -4561 0.072302 0.047693 9.069910 13.633898 -4562 0.075857 0.035821 8.168559 10.633705 -4563 0.042419 0.036322 10.721483 10.415754 -4564 0.081137 0.041211 10.185430 13.115967 -4565 0.068426 0.049425 9.490613 12.030123 -4566 0.066125 0.030834 7.644381 11.001751 -4567 0.089488 0.067329 11.943080 18.157344 -4568 0.051325 0.029848 6.605825 9.073810 -4569 1.000000 1.000000 100.000000 100.000000 -4570 1.000000 1.000000 100.000000 100.000000 -4571 0.069212 0.026744 9.194128 10.654722 -4572 0.086456 0.038171 8.083160 15.258866 -4573 0.065714 0.030552 7.464125 9.724805 -4574 0.090352 0.068265 15.047652 17.533439 -4575 0.054338 0.064022 7.873793 11.792743 -4576 1.000000 1.000000 100.000000 100.000000 -4577 0.061281 0.042786 10.526786 13.535002 -4578 1.000000 1.000000 100.000000 100.000000 -4579 0.090263 0.056209 11.247634 11.931123 -4580 0.096580 0.036670 11.181871 16.475647 -4581 0.096644 0.044781 9.596246 15.745751 -4582 0.078393 0.058132 9.923944 13.795127 -4583 0.085133 0.084725 12.829024 14.416874 -4584 0.076878 0.049315 9.949085 11.424444 -4585 0.076124 0.054377 11.365837 16.179239 -4586 1.000000 1.000000 100.000000 100.000000 -4587 1.000000 1.000000 100.000000 100.000000 -4588 0.088934 0.060090 13.825246 17.800373 -4589 0.054445 0.040221 12.883865 21.072879 -4590 0.055372 0.030487 9.964269 12.316375 -4591 0.048462 0.041886 12.760369 12.102329 -4592 0.067650 0.042381 8.301665 10.614337 -4593 0.095566 0.037013 7.466729 10.700416 -4594 1.000000 1.000000 100.000000 100.000000 -4595 0.098177 0.050693 8.780870 13.600370 -4596 0.067698 0.026156 9.957725 14.326612 -4597 0.053822 0.035576 9.420003 9.230100 -4598 0.062264 0.033767 7.295125 10.319632 -4599 0.059360 0.026938 6.775373 7.447531 -4600 0.079281 0.040186 9.889467 6.338745 -4601 1.000000 1.000000 100.000000 100.000000 -4602 0.069296 0.043336 10.131013 16.489444 -4603 0.077886 0.061469 9.721281 15.860250 -4604 0.055330 0.029527 10.102937 9.423341 -4605 0.064911 0.024918 6.889305 10.880474 -4606 1.000000 1.000000 100.000000 100.000000 -4607 0.040205 0.044092 8.660058 11.767221 -4608 0.036104 0.029378 8.161589 11.589324 -4609 0.055214 0.035669 8.437585 12.387340 -4610 0.073395 0.060919 11.809182 13.880994 -4611 0.056716 0.054212 7.020404 14.322122 -4612 1.000000 1.000000 100.000000 100.000000 -4613 0.072552 0.059817 10.841219 11.976603 -4614 0.064022 0.040050 9.930130 10.202032 -4615 0.099548 0.080599 11.271896 16.299723 -4616 1.000000 1.000000 100.000000 100.000000 -4617 0.043563 0.020464 9.158034 11.182866 -4618 0.080324 0.057859 6.919051 9.349559 -4619 0.046777 0.038754 9.160837 11.557348 -4620 0.041972 0.043589 8.537297 9.810085 -4621 0.047376 0.033263 7.400741 11.378875 -4622 0.075254 0.045756 9.545573 11.541856 -4623 0.076635 0.069223 12.652413 14.388199 -4624 0.064828 0.039023 9.797626 13.693042 -4625 0.039766 0.032242 7.507842 6.081679 -4626 0.048881 0.023052 6.170011 14.201384 -4627 0.066865 0.067785 11.010001 15.901661 -4628 0.066046 0.033025 12.182069 11.019311 -4629 0.048773 0.034777 9.014984 10.982919 -4630 1.000000 1.000000 100.000000 100.000000 -4631 0.065494 0.058967 16.274035 18.403249 -4632 0.047617 0.033393 8.563109 11.315955 -4633 0.081362 0.024547 8.073693 6.684134 -4634 0.068794 0.029794 8.318855 14.481156 -4635 0.035347 0.032044 8.946575 9.150315 -4636 0.075288 0.043485 10.831991 14.361040 -4637 0.090000 0.030716 9.493734 10.063930 -4638 0.085916 0.056699 10.228621 16.405161 -4639 0.062871 0.051703 10.867701 14.975691 -4640 1.000000 1.000000 100.000000 100.000000 -4641 0.075482 0.043882 6.647068 11.103344 -4642 0.084139 0.053394 15.063216 14.513311 -4643 0.096045 0.053444 10.634883 15.446631 -4644 0.083002 0.089326 7.563057 10.635684 -4645 0.066707 0.029422 5.810067 10.040157 -4646 1.000000 1.000000 100.000000 100.000000 -4647 0.056339 0.034094 7.220219 8.620824 -4648 0.089067 0.050938 13.005675 13.716900 -4649 0.093075 0.065557 9.783957 14.225764 -4650 0.052761 0.032891 12.300058 19.016391 -4651 0.071879 0.030798 7.731063 11.589771 -4652 0.096911 0.030966 10.696011 10.482998 -4653 0.046085 0.030066 11.518522 15.088304 -4654 0.093710 0.065650 9.468652 13.818385 -4655 0.047510 0.032801 7.997807 12.164802 -4656 1.000000 1.000000 100.000000 100.000000 -4657 0.063499 0.060555 9.609415 10.874950 -4658 1.000000 1.000000 100.000000 100.000000 -4659 0.081000 0.031658 11.744967 14.030695 -4660 0.064445 0.066066 10.117807 13.334126 -4661 0.066831 0.036976 7.385307 12.464313 -4662 1.000000 1.000000 100.000000 100.000000 -4663 0.081034 0.043277 7.565573 10.064457 -4664 0.050252 0.034643 8.991613 11.206175 -4665 0.033117 0.027928 9.335751 9.922263 -4666 0.037486 0.026951 14.627458 16.300242 -4667 0.090356 0.044370 9.170825 17.750150 -4668 0.057783 0.037657 10.439813 14.704506 -4669 0.052228 0.031582 5.794828 7.185659 -4670 0.085147 0.038611 11.536902 13.930754 -4671 0.052090 0.022587 10.718394 11.505899 -4672 0.076751 0.047066 13.207467 10.807152 -4673 0.056688 0.031961 12.929718 15.543829 -4674 1.000000 1.000000 100.000000 100.000000 -4675 0.061563 0.023549 13.867917 13.886374 -4676 1.000000 1.000000 100.000000 100.000000 -4677 0.097174 0.056023 9.858668 12.857568 -4678 0.062960 0.025888 9.453930 10.825269 -4679 0.061893 0.033143 11.820377 14.863948 -4680 0.062327 0.034575 7.651515 10.137942 -4681 0.063619 0.052230 11.945598 10.800274 -4682 0.071933 0.026582 7.482917 10.342123 -4683 1.000000 1.000000 100.000000 100.000000 -4684 0.054850 0.035923 9.326263 13.429456 -4685 1.000000 1.000000 100.000000 100.000000 -4686 0.057423 0.034051 7.578099 15.407946 -4687 1.000000 1.000000 100.000000 100.000000 -4688 0.079448 0.037913 6.900686 10.290625 -4689 0.078987 0.050997 14.057153 13.033913 -4690 1.000000 1.000000 100.000000 100.000000 -4691 0.051482 0.033190 8.453586 10.053015 -4692 0.062303 0.033511 8.481615 9.958906 -4693 0.068763 0.039161 11.858971 13.123069 -4694 0.077678 0.048670 8.999855 12.157668 -4695 0.070216 0.043914 12.649731 12.961745 -4696 0.091844 0.029657 7.704110 12.554322 -4697 1.000000 1.000000 100.000000 100.000000 -4698 0.083252 0.079148 8.320131 10.655962 -4699 0.088157 0.045114 7.613336 12.620982 -4700 0.067691 0.033972 9.915016 11.977648 -4701 0.064722 0.030955 7.391010 11.979692 -4702 1.000000 1.000000 100.000000 100.000000 -4703 1.000000 1.000000 100.000000 100.000000 -4704 0.056342 0.022334 10.916318 12.639699 -4705 0.068813 0.037746 10.873087 13.580176 -4706 0.051038 0.034935 7.440608 11.857120 -4707 0.098952 0.060597 8.169168 13.203872 -4708 0.066879 0.048421 13.928818 16.376334 -4709 0.053059 0.017682 10.397284 12.284548 -4710 0.077384 0.053071 8.582839 9.607334 -4711 0.076565 0.041590 5.766270 6.317571 -4712 0.082753 0.077580 11.225196 11.500868 -4713 0.082279 0.044681 8.873135 12.039865 -4714 1.000000 1.000000 100.000000 100.000000 -4715 1.000000 1.000000 100.000000 100.000000 -4716 0.098573 0.061169 9.773672 15.357726 -4717 0.096918 0.037054 9.632137 17.290337 -4718 0.043283 0.025428 13.227729 10.971703 -4719 0.066297 0.034312 12.713963 12.409265 -4720 0.061867 0.061419 10.018385 15.964877 -4721 1.000000 1.000000 100.000000 100.000000 -4722 1.000000 1.000000 100.000000 100.000000 -4723 1.000000 1.000000 100.000000 100.000000 -4724 1.000000 1.000000 100.000000 100.000000 -4725 0.065252 0.025107 10.556244 20.210956 -4726 0.079148 0.025511 9.302223 10.541982 -4727 0.057822 0.032989 7.477024 9.605273 -4728 1.000000 1.000000 100.000000 100.000000 -4729 0.064094 0.020702 6.075553 9.246508 -4730 0.041927 0.030468 9.448294 10.358245 -4731 0.071975 0.066496 8.025000 16.758938 -4732 0.077095 0.034109 8.598820 10.784326 -4733 0.046946 0.022878 7.242594 7.729462 -4734 0.060482 0.067148 9.419375 16.414517 -4735 0.068180 0.025681 10.328284 10.104039 -4736 0.079325 0.045538 7.808063 9.143178 -4737 0.071407 0.051190 8.555246 12.898357 -4738 0.084609 0.048928 8.420121 14.029443 -4739 0.074655 0.033820 9.294383 13.277353 -4740 0.039930 0.017054 5.489815 8.272456 -4741 0.072013 0.051178 12.932511 14.151013 -4742 0.051535 0.028653 9.500046 10.770297 -4743 0.071770 0.045761 9.448150 9.699388 -4744 0.057058 0.026006 6.471807 10.859736 -4745 0.055123 0.037188 8.888087 8.185160 -4746 1.000000 1.000000 100.000000 100.000000 -4747 0.063238 0.038577 11.483358 12.527871 -4748 0.081979 0.045359 9.471756 15.921495 -4749 0.079864 0.036533 9.255318 16.629702 -4750 0.056248 0.036142 9.638575 7.371248 -4751 0.074996 0.051425 8.852043 12.037072 -4752 0.079429 0.062010 8.097034 13.246630 -4753 0.054029 0.027546 8.154045 12.800161 -4754 0.061830 0.035625 9.152536 15.756634 -4755 0.082881 0.047006 12.622304 19.510671 -4756 0.060063 0.026285 8.427066 11.127192 -4757 0.068974 0.034502 7.569869 13.801005 -4758 0.061135 0.024965 10.028205 12.150943 -4759 0.037437 0.020149 5.741799 7.859700 -4760 1.000000 1.000000 100.000000 100.000000 -4761 0.055264 0.055305 8.150301 9.565583 -4762 0.072517 0.050307 9.931104 9.935890 -4763 0.099121 0.096175 12.820025 17.156201 -4764 0.049147 0.028170 11.199779 15.029320 -4765 0.068815 0.045223 9.972355 12.889526 -4766 0.073628 0.038641 6.670776 10.456740 -4767 1.000000 1.000000 100.000000 100.000000 -4768 0.053046 0.025669 8.694828 10.713068 -4769 0.056461 0.036157 7.631717 7.264532 -4770 0.086712 0.079536 9.730692 18.359859 -4771 0.052170 0.029589 7.231944 7.962789 -4772 0.047545 0.021951 9.468403 10.781935 -4773 1.000000 1.000000 100.000000 100.000000 -4774 1.000000 1.000000 100.000000 100.000000 -4775 0.099830 0.039518 9.734488 11.396078 -4776 0.087996 0.045960 8.569809 16.445683 -4777 0.092027 0.053269 11.299372 9.435988 -4778 0.099285 0.053853 9.251875 11.499938 -4779 0.092738 0.041777 7.647147 12.289861 -4780 1.000000 1.000000 100.000000 100.000000 -4781 1.000000 1.000000 100.000000 100.000000 -4782 0.056809 0.034427 12.548957 14.889017 -4783 1.000000 1.000000 100.000000 100.000000 -4784 0.069146 0.047304 8.868096 10.898131 -4785 0.076178 0.034735 8.921808 12.716232 -4786 0.092338 0.051225 10.581933 20.713685 -4787 0.049759 0.036373 11.773990 12.490924 -4788 0.051996 0.027851 9.697680 16.449708 -4789 0.072080 0.045304 8.222908 10.257637 -4790 1.000000 1.000000 100.000000 100.000000 -4791 0.083055 0.059547 19.163388 19.353059 -4792 0.067959 0.045219 8.868184 11.333872 -4793 0.060969 0.045448 9.787018 12.258561 -4794 1.000000 1.000000 100.000000 100.000000 -4795 0.080637 0.063984 8.389369 10.598629 -4796 1.000000 1.000000 100.000000 100.000000 -4797 1.000000 1.000000 100.000000 100.000000 -4798 0.076063 0.057612 8.819620 11.262523 -4799 0.087411 0.043283 9.195383 9.420922 -4800 1.000000 1.000000 100.000000 100.000000 -4801 0.061421 0.018843 9.182657 15.847455 -4802 0.049426 0.034079 10.556893 17.569198 -4803 1.000000 1.000000 100.000000 100.000000 -4804 0.039561 0.031861 7.502571 12.725338 -4805 0.097053 0.031238 9.753683 10.196420 -4806 0.062503 0.056575 11.718577 16.478737 -4807 0.069015 0.047274 10.624124 13.469749 -4808 0.091339 0.047607 15.316253 14.375742 -4809 1.000000 1.000000 100.000000 100.000000 -4810 1.000000 1.000000 100.000000 100.000000 -4811 1.000000 1.000000 100.000000 100.000000 -4812 0.055210 0.039842 9.277342 14.673228 -4813 0.086637 0.037806 9.963477 22.826311 -4814 0.079758 0.050553 15.828707 16.358651 -4815 0.078096 0.043106 7.726642 12.094326 -4816 0.053492 0.030216 6.394329 6.166212 -4817 0.057517 0.040159 12.357054 16.024295 -4818 0.083302 0.037137 8.986025 12.655732 -4819 1.000000 1.000000 100.000000 100.000000 -4820 0.078549 0.047447 7.031352 12.592699 -4821 1.000000 1.000000 100.000000 100.000000 -4822 1.000000 1.000000 100.000000 100.000000 -4823 0.055323 0.022591 8.529343 12.399946 -4824 0.070656 0.035191 7.963543 10.858257 -4825 0.070823 0.036613 7.828434 14.693906 -4826 0.050231 0.033148 10.500098 8.297301 -4827 0.069626 0.058867 10.982967 14.414806 -4828 0.067342 0.022432 12.789439 10.150094 -4829 0.091672 0.068117 9.162339 13.033257 -4830 1.000000 1.000000 100.000000 100.000000 -4831 0.058383 0.022567 9.223677 11.252009 -4832 0.051783 0.021539 10.789635 17.515708 -4833 0.078260 0.037316 9.352450 12.916345 -4834 0.052191 0.033237 14.507607 14.883977 -4835 0.063796 0.039270 7.361445 10.745944 -4836 1.000000 1.000000 100.000000 100.000000 -4837 0.096171 0.044228 7.605509 14.773933 -4838 0.047633 0.027345 7.605246 14.281670 -4839 0.074594 0.040516 9.830468 14.841084 -4840 0.058291 0.030569 6.763460 10.221414 -4841 0.076878 0.035260 11.573920 14.271978 -4842 0.094797 0.033763 6.319816 10.394682 -4843 1.000000 1.000000 100.000000 100.000000 -4844 0.063047 0.036122 7.628501 8.579115 -4845 0.049033 0.044238 8.460655 10.802765 -4846 0.047200 0.024162 11.222676 10.509067 -4847 0.068594 0.027025 9.762842 16.168132 -4848 0.045013 0.032528 7.106917 7.896876 -4849 0.046856 0.039792 10.860455 11.083592 -4850 1.000000 1.000000 100.000000 100.000000 -4851 0.090667 0.044139 13.378222 18.058167 -4852 0.067863 0.049611 8.894487 16.464009 -4853 1.000000 1.000000 100.000000 100.000000 -4854 0.059195 0.024225 7.188289 11.773236 -4855 0.077466 0.079295 10.954106 9.743749 -4856 0.064470 0.023271 11.932943 12.190347 -4857 0.066505 0.066646 7.441555 7.983496 -4858 0.088895 0.055090 9.481444 10.182199 -4859 0.054119 0.050656 10.885066 12.589823 -4860 0.090822 0.059219 6.583149 10.009374 -4861 0.057176 0.039746 10.896147 11.838219 -4862 0.091219 0.069433 9.185322 10.938351 -4863 0.078532 0.041879 12.777817 21.580863 -4864 0.072404 0.072833 5.550583 9.800779 -4865 0.076626 0.040952 11.584141 12.072381 -4866 1.000000 1.000000 100.000000 100.000000 -4867 1.000000 1.000000 100.000000 100.000000 -4868 0.038284 0.023490 9.661710 19.806592 -4869 1.000000 1.000000 100.000000 100.000000 -4870 0.088477 0.078672 13.091643 17.438189 -4871 0.059676 0.043432 9.842397 9.834960 -4872 1.000000 1.000000 100.000000 100.000000 -4873 0.069534 0.056051 12.158609 23.223564 -4874 0.063307 0.040376 6.653654 7.526820 -4875 0.057977 0.033696 9.819835 18.254936 -4876 0.041633 0.020408 8.376720 8.799256 -4877 0.096631 0.058397 11.466062 17.556297 -4878 0.075104 0.047229 7.310985 10.046990 -4879 0.076820 0.063842 8.343589 13.250012 -4880 1.000000 1.000000 100.000000 100.000000 -4881 0.091797 0.063577 12.391713 19.712531 -4882 0.097622 0.040798 14.724554 17.778782 -4883 0.061059 0.054958 8.510863 8.031349 -4884 0.054837 0.038579 8.156092 9.273487 -4885 0.083717 0.047923 14.117790 18.448409 -4886 0.063257 0.025243 15.139030 13.451903 -4887 0.052092 0.032147 10.247086 9.556412 -4888 0.041296 0.048876 8.023703 12.981134 -4889 0.071405 0.037674 8.156954 11.493666 -4890 0.091899 0.068541 12.134182 13.661064 -4891 1.000000 1.000000 100.000000 100.000000 -4892 1.000000 1.000000 100.000000 100.000000 -4893 0.091470 0.051253 6.369540 11.392558 -4894 0.067574 0.058934 9.512955 12.560833 -4895 0.089525 0.050421 10.240380 14.653299 -4896 0.074110 0.058662 7.829979 15.804199 -4897 0.097137 0.069313 14.398588 12.084798 -4898 0.057080 0.030955 9.408139 14.639350 -4899 0.076694 0.048757 8.920986 12.220894 -4900 0.084641 0.042626 7.493771 8.778672 -4901 0.053130 0.023529 8.459140 9.863288 -4902 0.068663 0.039309 6.668620 13.200271 -4903 0.063791 0.047117 10.773506 14.392019 -4904 0.066577 0.034961 9.289120 10.516253 -4905 0.051113 0.022082 8.509162 10.220345 -4906 0.095937 0.083638 9.854527 11.067666 -4907 0.089607 0.032493 9.374816 14.556000 -4908 1.000000 1.000000 100.000000 100.000000 -4909 0.061932 0.022511 12.024389 15.942285 -4910 0.086870 0.048333 10.364799 13.815696 -4911 0.050587 0.029360 7.370824 10.603566 -4912 0.071563 0.050572 8.111150 7.647892 -4913 1.000000 1.000000 100.000000 100.000000 -4914 0.066156 0.028671 7.607565 14.946326 -4915 0.069230 0.026254 9.025415 12.191671 -4916 0.078802 0.079314 11.080302 18.127056 -4917 0.066976 0.021762 8.339463 12.567033 -4918 0.062354 0.033629 7.058893 10.237537 -4919 0.045223 0.029084 5.175872 6.587299 -4920 0.062680 0.043308 8.283707 9.233330 -4921 1.000000 1.000000 100.000000 100.000000 -4922 1.000000 1.000000 100.000000 100.000000 -4923 1.000000 1.000000 100.000000 100.000000 -4924 0.055300 0.027274 8.277079 13.402354 -4925 0.086681 0.043288 11.702462 12.992592 -4926 0.068194 0.037455 9.496959 13.977135 -4927 0.071902 0.046606 11.130782 14.012798 -4928 0.099294 0.052718 17.584381 15.589117 -4929 1.000000 1.000000 100.000000 100.000000 -4930 0.068071 0.046455 11.446563 14.414295 -4931 0.078531 0.028260 11.231241 12.146473 -4932 0.050703 0.027362 7.742690 10.987350 -4933 1.000000 1.000000 100.000000 100.000000 -4934 0.093079 0.050277 16.266674 19.746810 -4935 0.051645 0.031104 12.329483 19.393959 -4936 0.048251 0.022736 11.293848 12.437399 -4937 0.065439 0.035194 11.580168 14.693062 -4938 0.032625 0.020829 7.706858 11.532527 -4939 0.085243 0.032681 9.801201 12.660376 -4940 0.037643 0.033856 11.205449 14.088511 -4941 0.054341 0.033000 8.749705 10.793753 -4942 0.041703 0.027950 8.102308 8.371965 -4943 0.070431 0.033438 13.384699 13.527404 -4944 1.000000 1.000000 100.000000 100.000000 -4945 0.082565 0.033293 11.994587 9.940138 -4946 0.051219 0.019716 7.960436 14.777696 -4947 0.080556 0.057288 10.009709 11.502733 -4948 0.057063 0.026929 7.251749 8.626847 -4949 1.000000 1.000000 100.000000 100.000000 -4950 0.086598 0.059975 13.326588 16.362154 -4951 0.076065 0.065819 11.691713 14.568261 -4952 0.063151 0.043840 8.085822 10.532141 -4953 0.078256 0.053483 10.895914 14.011604 -4954 0.048930 0.033018 8.284686 8.841475 -4955 0.097223 0.044646 8.541288 9.360313 -4956 0.057588 0.039021 9.502137 9.687198 -4957 0.087261 0.051015 7.155874 15.457045 -4958 0.097982 0.075410 10.237582 16.648035 -4959 0.088050 0.060505 11.608472 14.160151 -4960 0.092900 0.048381 11.746149 9.220327 -4961 0.053175 0.047537 10.783871 17.975391 -4962 0.071078 0.041857 6.705341 7.905042 -4963 0.072424 0.050023 16.085625 20.610092 -4964 0.099164 0.037991 9.416486 14.117461 -4965 0.077977 0.044069 10.558061 12.395309 -4966 0.071685 0.064824 11.505130 14.406533 -4967 0.079828 0.057158 11.276556 11.302689 -4968 0.097650 0.064422 11.380222 11.463302 -4969 0.055627 0.027684 6.108032 9.557103 -4970 0.045304 0.030219 6.607884 6.484066 -4971 0.047489 0.033121 7.566704 14.523304 -4972 0.074870 0.057512 8.927903 13.971792 -4973 0.054998 0.044185 10.528526 8.416145 -4974 0.050402 0.028338 8.355589 11.169046 -4975 0.094502 0.094711 8.625923 13.370907 -4976 1.000000 1.000000 100.000000 100.000000 -4977 0.056061 0.077471 9.363903 14.699951 -4978 0.078785 0.041269 8.173631 9.637227 -4979 0.064298 0.035777 7.219741 9.050735 -4980 0.040565 0.025229 11.406298 18.106844 -4981 0.047965 0.032512 11.638160 9.968468 -4982 0.074271 0.040251 8.793577 10.764689 -4983 0.044419 0.026663 11.599090 13.263416 -4984 0.090927 0.040436 13.190563 12.741327 -4985 0.065019 0.034641 7.345158 9.330481 -4986 0.048329 0.023398 13.158735 13.787313 -4987 0.081827 0.083172 6.780163 10.109704 -4988 0.045918 0.031327 6.490889 8.896169 -4989 0.089430 0.078774 14.711582 19.353778 -4990 0.068922 0.044837 12.870663 13.384286 -4991 0.081170 0.053744 7.438318 9.762568 -4992 0.091376 0.040062 6.461413 8.314988 -4993 0.088529 0.060128 8.400064 13.307099 -4994 0.058973 0.045959 8.837663 11.238923 -4995 0.064480 0.072739 10.500811 17.301625 -4996 0.062524 0.032223 10.973557 17.193489 -4997 0.074713 0.052114 11.062680 12.744270 -4998 0.076129 0.052735 9.694188 14.352663 -4999 0.044674 0.019601 7.741785 7.497870 -5000 0.048888 0.028235 8.438464 11.979282 -5001 1.000000 1.000000 100.000000 100.000000 -5002 0.068558 0.071319 9.107281 10.119169 -5003 0.096841 0.045563 9.154266 10.067080 -5004 0.078294 0.038749 6.152942 8.112921 -5005 0.052123 0.035815 5.772335 9.946307 -5006 0.045989 0.035290 5.951215 11.889906 -5007 0.079708 0.030535 13.421508 18.997275 -5008 0.067412 0.059250 10.799251 12.699652 -5009 0.065083 0.042935 7.052127 10.585416 -5010 0.060823 0.033019 10.615651 14.301233 -5011 0.071012 0.069011 15.348559 14.417523 -5012 0.057134 0.028575 7.274345 11.250572 -5013 1.000000 1.000000 100.000000 100.000000 -5014 0.054809 0.042328 8.290010 7.714855 -5015 0.097745 0.041511 9.342588 12.534655 -5016 0.085132 0.048529 11.773202 10.617114 -5017 0.038849 0.019289 9.649298 12.009046 -5018 0.090124 0.051534 8.275607 13.745330 -5019 0.099852 0.060499 14.567971 12.179461 -5020 0.076095 0.050924 9.926767 11.488484 -5021 0.041848 0.037057 6.217734 8.964060 -5022 0.084702 0.071240 11.072220 17.557884 -5023 0.063756 0.036450 12.056661 15.583096 -5024 0.078020 0.028241 6.785983 10.269297 -5025 0.092601 0.061076 7.583939 13.043274 -5026 1.000000 1.000000 100.000000 100.000000 -5027 0.066368 0.026485 6.356206 12.875613 -5028 0.046853 0.017199 6.076424 7.758109 -5029 1.000000 1.000000 100.000000 100.000000 -5030 0.051727 0.038431 8.082486 15.605296 -5031 0.079528 0.044991 10.581106 12.103223 -5032 0.064892 0.052452 11.954062 16.897176 -5033 1.000000 1.000000 100.000000 100.000000 -5034 0.061016 0.048433 9.949541 10.712913 -5035 0.090923 0.043500 13.744952 20.447187 -5036 0.074395 0.068229 8.610849 9.066032 -5037 1.000000 1.000000 100.000000 100.000000 -5038 0.063428 0.060704 8.788935 9.861231 -5039 0.062988 0.037436 6.880879 11.252969 -5040 0.071891 0.046006 8.890048 11.117448 -5041 0.081077 0.071440 9.357653 11.063207 -5042 0.098361 0.072580 8.782684 15.169965 -5043 0.070188 0.050282 8.728700 12.785418 -5044 1.000000 1.000000 100.000000 100.000000 -5045 1.000000 1.000000 100.000000 100.000000 -5046 0.072783 0.021425 8.558462 8.630661 -5047 1.000000 1.000000 100.000000 100.000000 -5048 0.091879 0.038887 9.670881 8.972481 -5049 0.046281 0.027037 8.135231 11.025668 -5050 0.048467 0.028791 8.465296 12.894283 -5051 0.057046 0.058685 9.384995 16.794219 -5052 0.053257 0.042764 9.854446 15.769318 -5053 0.074388 0.051807 9.784586 11.740960 -5054 0.062092 0.042905 7.526409 9.761434 -5055 0.060202 0.047361 8.985742 8.209155 -5056 1.000000 1.000000 100.000000 100.000000 -5057 0.081774 0.064282 11.399215 13.310408 -5058 1.000000 1.000000 100.000000 100.000000 -5059 0.057107 0.027132 8.450597 11.048815 -5060 0.074154 0.033668 8.879338 6.785207 -5061 1.000000 1.000000 100.000000 100.000000 -5062 0.076541 0.043298 14.229130 16.091933 -5063 0.098967 0.070990 7.596770 7.852542 -5064 0.044644 0.026520 9.112980 7.329229 -5065 0.088573 0.042209 8.366080 14.348177 -5066 0.046988 0.031143 10.142953 13.535333 -5067 0.053263 0.053490 10.039117 8.905621 -5068 0.062227 0.033001 9.540919 11.743096 -5069 0.058263 0.031576 9.343255 9.532883 -5070 1.000000 1.000000 100.000000 100.000000 -5071 0.071801 0.034001 7.772895 11.294802 -5072 0.075822 0.040544 6.630816 10.363119 -5073 0.062253 0.034037 9.087855 10.539602 -5074 0.064181 0.061235 13.504160 14.047163 -5075 0.075356 0.041521 11.423536 15.378043 -5076 0.060447 0.074552 9.435382 11.910851 -5077 0.050412 0.050126 12.032256 12.274675 -5078 0.079913 0.068145 10.816176 15.838110 -5079 1.000000 1.000000 100.000000 100.000000 -5080 0.073426 0.038941 8.859121 13.233074 -5081 0.076394 0.057655 9.251550 12.377073 -5082 1.000000 1.000000 100.000000 100.000000 -5083 0.049456 0.029764 9.148722 12.251604 -5084 1.000000 1.000000 100.000000 100.000000 -5085 1.000000 1.000000 100.000000 100.000000 -5086 0.074758 0.034565 7.486377 9.654029 -5087 1.000000 1.000000 100.000000 100.000000 -5088 0.054728 0.092728 16.355589 21.777734 -5089 1.000000 1.000000 100.000000 100.000000 -5090 0.079970 0.026349 10.596966 10.851663 -5091 0.064447 0.025698 12.078866 10.007539 -5092 0.068758 0.045017 8.315327 8.644042 -5093 0.057536 0.035065 11.588815 12.243901 -5094 0.075100 0.049001 9.196170 13.842666 -5095 0.066290 0.067552 17.877106 17.163956 -5096 0.097378 0.082167 7.378765 10.160797 -5097 0.054920 0.032667 8.143402 9.072974 -5098 0.064802 0.037110 7.243051 7.903606 -5099 0.047903 0.026233 11.776013 12.308452 -5100 0.056580 0.028689 4.801270 7.537441 -5101 0.088975 0.060424 7.837861 13.613120 -5102 1.000000 1.000000 100.000000 100.000000 -5103 0.052863 0.064590 8.442181 11.678639 -5104 0.079631 0.050781 9.078495 7.586216 -5105 0.069289 0.048963 9.028832 10.733936 -5106 1.000000 1.000000 100.000000 100.000000 -5107 0.078014 0.045428 9.209251 12.044774 -5108 0.047063 0.032260 6.095321 7.884944 -5109 0.080241 0.032908 9.180945 13.086837 -5110 0.091868 0.067769 11.177455 20.516212 -5111 0.055193 0.020622 9.522384 11.519314 -5112 1.000000 1.000000 100.000000 100.000000 -5113 0.037306 0.024990 8.958385 15.393957 -5114 0.060873 0.035270 7.851994 11.591293 -5115 0.057300 0.038642 5.997515 8.993985 -5116 0.073923 0.038600 5.610264 8.215642 -5117 0.096431 0.062600 15.790681 16.102160 -5118 0.063462 0.052619 9.193542 15.514327 -5119 1.000000 1.000000 100.000000 100.000000 -5120 0.057104 0.041768 12.130491 12.513492 -5121 0.044537 0.021900 7.780617 9.190489 -5122 0.059114 0.027732 7.138002 17.979173 -5123 0.086285 0.060848 20.799454 24.307126 -5124 0.085866 0.048436 13.247423 17.661481 -5125 0.064001 0.036287 10.455806 10.969650 -5126 0.061614 0.026056 8.313131 9.863516 -5127 0.052628 0.024165 7.508483 10.289583 -5128 0.079546 0.048466 10.643671 15.340012 -5129 0.080977 0.071133 7.607368 10.625803 -5130 0.059643 0.026041 6.756722 9.368329 -5131 0.078409 0.087374 7.526762 13.244504 -5132 0.081142 0.045781 12.660984 14.015845 -5133 0.088337 0.040411 8.865741 11.864191 -5134 1.000000 1.000000 100.000000 100.000000 -5135 0.054093 0.041302 9.477351 13.787616 -5136 0.072852 0.049826 10.606539 18.767541 -5137 0.070781 0.045154 10.272974 16.135436 -5138 0.074335 0.031579 7.795430 11.303611 -5139 0.057086 0.029520 9.138775 10.697321 -5140 0.065214 0.053919 8.080593 10.650554 -5141 0.092962 0.061381 18.798642 15.949083 -5142 0.070037 0.054794 21.475276 16.150265 -5143 0.058196 0.040519 12.086356 16.970350 -5144 0.051178 0.024008 11.948734 14.466709 -5145 0.080423 0.048392 7.758775 12.249614 -5146 1.000000 1.000000 100.000000 100.000000 -5147 0.074894 0.046073 10.421941 12.333505 -5148 0.053961 0.047401 10.349830 11.420811 -5149 0.082432 0.030573 11.763540 10.891353 -5150 1.000000 1.000000 100.000000 100.000000 -5151 0.056688 0.084486 9.151603 13.372690 -5152 0.053696 0.039428 8.153225 14.148967 -5153 0.071714 0.055496 15.567578 13.648228 -5154 0.060871 0.027913 5.117706 7.452341 -5155 0.078679 0.043974 9.585628 14.389217 -5156 0.076981 0.060445 8.501632 14.310580 -5157 0.059186 0.039320 5.821394 9.300746 -5158 0.051708 0.020736 8.298439 7.597805 -5159 0.047771 0.016843 11.081466 10.621639 -5160 0.056736 0.042613 10.431713 12.659004 -5161 1.000000 1.000000 100.000000 100.000000 -5162 0.054158 0.024408 6.679072 11.053702 -5163 0.059749 0.032000 8.156061 10.873927 -5164 1.000000 1.000000 100.000000 100.000000 -5165 0.048627 0.030999 9.427119 11.135842 -5166 0.050395 0.019997 5.903494 10.595773 -5167 0.071942 0.039485 8.426857 9.571223 -5168 0.055466 0.037450 8.205277 8.449071 -5169 1.000000 1.000000 100.000000 100.000000 -5170 0.044730 0.035011 11.155722 11.209932 -5171 0.038626 0.023570 8.697334 9.567543 -5172 0.084045 0.069243 16.211113 12.216355 -5173 0.076453 0.042205 9.098567 12.348985 -5174 0.086508 0.044428 8.120675 11.015951 -5175 0.071880 0.056553 9.218977 10.538246 -5176 0.064514 0.041583 12.399117 14.325346 -5177 0.059575 0.037709 7.408419 11.749625 -5178 0.043211 0.029692 8.735402 12.146332 -5179 0.062808 0.045989 10.101211 8.985618 -5180 0.062234 0.031954 13.079601 19.832637 -5181 0.078255 0.041240 7.139958 15.218275 -5182 0.058528 0.033071 6.989504 10.803514 -5183 0.087467 0.061143 9.981486 14.159393 -5184 0.098523 0.066587 8.558642 11.867956 -5185 0.058918 0.039594 10.152748 12.811918 -5186 0.085320 0.041759 7.087347 10.748415 -5187 0.079154 0.033500 7.787045 9.911666 -5188 0.087870 0.049590 5.833598 9.557812 -5189 1.000000 1.000000 100.000000 100.000000 -5190 0.057714 0.030659 17.128882 15.900558 -5191 0.057476 0.045387 6.099095 7.013095 -5192 0.075465 0.054368 9.591818 13.345444 -5193 0.077237 0.057346 10.741810 12.764494 -5194 0.091849 0.036293 12.247413 19.002273 -5195 0.058970 0.036390 13.164714 9.905143 -5196 0.088599 0.074958 10.460580 14.543990 -5197 1.000000 1.000000 100.000000 100.000000 -5198 0.086844 0.040606 4.869512 12.012665 -5199 0.090816 0.067650 7.352310 11.059870 -5200 0.083948 0.048493 13.281436 17.357499 -5201 0.057574 0.030831 7.794423 12.434722 -5202 0.073204 0.021577 12.821770 11.373460 -5203 0.064624 0.048452 7.586433 14.259295 -5204 0.039343 0.027981 9.641906 12.948505 -5205 0.058167 0.037536 9.673030 9.797097 -5206 0.069527 0.044252 10.694841 8.534963 -5207 0.061618 0.051558 7.007519 17.104811 -5208 0.094275 0.051924 7.974892 11.465860 -5209 0.078773 0.055742 10.393160 12.748583 -5210 0.065556 0.050442 7.502503 6.838069 -5211 0.055717 0.024611 10.775143 12.552788 -5212 0.046092 0.048632 7.179180 8.220779 -5213 1.000000 1.000000 100.000000 100.000000 -5214 0.069968 0.032168 8.152126 11.503591 -5215 0.074250 0.034546 14.556925 14.061462 -5216 1.000000 1.000000 100.000000 100.000000 -5217 0.058547 0.037507 11.546935 17.183159 -5218 0.083839 0.040910 12.207355 9.340834 -5219 0.079154 0.056398 11.283781 13.915828 -5220 0.087636 0.076100 17.588141 17.590263 -5221 0.087023 0.056918 8.913395 11.566593 -5222 0.082523 0.036197 9.804764 19.276221 -5223 0.066135 0.042847 7.436705 7.928822 -5224 0.055228 0.017773 4.424376 9.349010 -5225 0.091285 0.040941 8.184375 9.718190 -5226 1.000000 1.000000 100.000000 100.000000 -5227 1.000000 1.000000 100.000000 100.000000 -5228 0.043638 0.021007 9.826259 13.978893 -5229 0.072981 0.054671 7.585892 10.483723 -5230 1.000000 1.000000 100.000000 100.000000 -5231 0.055961 0.046439 12.565128 14.645640 -5232 0.091120 0.095286 14.196270 15.580995 -5233 0.064839 0.039404 8.954101 13.183816 -5234 1.000000 1.000000 100.000000 100.000000 -5235 0.054427 0.029617 10.969201 11.082596 -5236 0.069424 0.051403 11.465020 11.670983 -5237 0.081503 0.045121 6.675064 8.402299 -5238 1.000000 1.000000 100.000000 100.000000 -5239 0.036525 0.014568 6.305178 8.923986 -5240 1.000000 1.000000 100.000000 100.000000 -5241 0.034642 0.024941 8.873086 8.991752 -5242 0.080162 0.065917 9.200954 11.955911 -5243 0.077415 0.036563 8.697660 11.668572 -5244 1.000000 1.000000 100.000000 100.000000 -5245 1.000000 1.000000 100.000000 100.000000 -5246 0.046580 0.038748 10.592037 11.286672 -5247 0.078747 0.052397 7.472038 9.145598 -5248 0.075030 0.036816 10.282215 9.362032 -5249 0.064448 0.053830 12.133050 15.762436 -5250 0.079159 0.039332 7.511628 13.141242 -5251 0.053997 0.044980 8.857981 12.692493 -5252 0.073377 0.052155 12.781530 13.171779 -5253 0.091689 0.060823 15.550712 12.598473 -5254 0.088647 0.067581 9.009551 13.664629 -5255 1.000000 1.000000 100.000000 100.000000 -5256 1.000000 1.000000 100.000000 100.000000 -5257 0.063370 0.037955 7.791432 8.587744 -5258 0.056829 0.044851 6.722951 12.123100 -5259 1.000000 1.000000 100.000000 100.000000 -5260 1.000000 1.000000 100.000000 100.000000 -5261 0.058466 0.016589 7.703626 9.676093 -5262 1.000000 1.000000 100.000000 100.000000 -5263 0.084021 0.032728 8.913142 13.950757 -5264 0.092853 0.077953 12.607067 13.029809 -5265 1.000000 1.000000 100.000000 100.000000 -5266 1.000000 1.000000 100.000000 100.000000 -5267 0.058127 0.030136 8.445600 12.072982 -5268 0.088541 0.037326 9.908130 11.038657 -5269 0.083632 0.049973 6.797958 9.382149 -5270 0.048145 0.034661 7.583832 9.041808 -5271 1.000000 1.000000 100.000000 100.000000 -5272 0.048254 0.035637 7.781357 10.124225 -5273 0.074051 0.035003 7.126192 9.211869 -5274 0.063693 0.059729 11.253600 14.290193 -5275 0.055235 0.032263 8.856524 10.292709 -5276 0.093666 0.058447 8.541186 13.207339 -5277 0.077223 0.058056 13.792280 16.742341 -5278 0.087716 0.055171 7.339907 9.150096 -5279 0.088637 0.030943 7.955384 11.387491 -5280 0.061413 0.035499 10.791652 15.570486 -5281 0.058228 0.049658 12.035371 13.217700 -5282 0.069271 0.032732 9.483999 9.394106 -5283 0.049232 0.033939 8.182113 9.865956 -5284 0.096875 0.052932 9.279239 10.637486 -5285 1.000000 1.000000 100.000000 100.000000 -5286 1.000000 1.000000 100.000000 100.000000 -5287 0.035778 0.017054 9.796891 9.933628 -5288 0.067582 0.073605 10.988351 15.844528 -5289 0.063603 0.064300 8.920105 9.834680 -5290 0.077991 0.039099 7.950887 12.377246 -5291 1.000000 1.000000 100.000000 100.000000 -5292 0.062553 0.034678 6.697263 12.112803 -5293 0.072448 0.033753 7.717307 9.162278 -5294 0.074743 0.057130 7.270821 12.475107 -5295 0.058523 0.032350 14.364116 11.078722 -5296 0.059382 0.036311 12.521288 13.007303 -5297 1.000000 1.000000 100.000000 100.000000 -5298 0.076140 0.058282 11.149344 14.289220 -5299 0.045505 0.034450 11.728951 12.757342 -5300 0.050379 0.025056 7.559396 12.738722 -5301 0.076898 0.030058 9.792142 11.469591 -5302 0.051103 0.017899 7.450009 10.386279 -5303 0.043981 0.041588 7.081443 9.062541 -5304 0.067750 0.044875 10.520026 11.809326 -5305 0.045114 0.036379 12.520629 11.719013 -5306 0.059594 0.036773 11.040058 16.383663 -5307 0.053695 0.023788 10.868168 10.520543 -5308 0.089777 0.071655 11.921330 12.882356 -5309 0.073246 0.044911 15.155503 16.123750 -5310 0.085186 0.069508 12.281149 12.184546 -5311 0.061894 0.059426 8.400767 18.812840 -5312 0.060158 0.046621 10.664231 8.858117 -5313 0.087675 0.049560 11.305303 10.826580 -5314 0.061292 0.021574 10.527496 14.069795 -5315 0.080583 0.048151 10.248804 15.258166 -5316 0.047651 0.026797 7.112196 9.669717 -5317 0.061307 0.028826 7.805504 7.839214 -5318 0.062732 0.031890 9.362777 12.157761 -5319 0.099740 0.077099 8.848591 14.150127 -5320 0.066782 0.048100 8.802767 11.737882 -5321 0.085645 0.047002 11.592778 10.985182 -5322 0.076119 0.034999 9.189172 14.277257 -5323 1.000000 1.000000 100.000000 100.000000 -5324 0.090895 0.049828 8.852308 11.064051 -5325 0.068106 0.030291 9.675989 11.574084 -5326 1.000000 1.000000 100.000000 100.000000 -5327 1.000000 1.000000 100.000000 100.000000 -5328 0.091712 0.054583 14.624246 14.182604 -5329 0.085864 0.043963 8.490725 9.929687 -5330 0.053335 0.029182 10.547545 16.245729 -5331 1.000000 1.000000 100.000000 100.000000 -5332 0.081528 0.062159 10.104356 12.889352 -5333 0.090663 0.069493 9.436523 9.371707 -5334 0.082435 0.043759 13.059827 16.470375 -5335 0.065484 0.026087 8.477656 10.874250 -5336 1.000000 1.000000 100.000000 100.000000 -5337 1.000000 1.000000 100.000000 100.000000 -5338 0.065683 0.040593 6.423150 10.156808 -5339 1.000000 1.000000 100.000000 100.000000 -5340 0.065942 0.054070 12.170776 22.358818 -5341 0.091014 0.067761 13.379422 17.808416 -5342 0.053381 0.043262 10.130575 13.886869 -5343 1.000000 1.000000 100.000000 100.000000 -5344 0.082545 0.049394 7.491020 9.703096 -5345 0.093246 0.049570 12.355694 10.048724 -5346 0.086790 0.043521 5.661400 5.773805 -5347 0.062606 0.047717 7.435879 9.214897 -5348 0.079761 0.034183 10.231815 10.982670 -5349 1.000000 1.000000 100.000000 100.000000 -5350 0.084164 0.042814 6.426888 8.864236 -5351 0.067395 0.031956 8.654928 12.490177 -5352 0.094608 0.085058 9.685084 13.711459 -5353 0.079870 0.041869 11.018832 12.554334 -5354 1.000000 1.000000 100.000000 100.000000 -5355 0.094158 0.059971 14.682127 17.436675 -5356 1.000000 1.000000 100.000000 100.000000 -5357 0.073759 0.043313 7.546702 10.118248 -5358 1.000000 1.000000 100.000000 100.000000 -5359 0.082043 0.033022 7.503634 12.912964 -5360 0.079131 0.031979 9.310521 12.092936 -5361 0.092901 0.029067 7.181589 7.287592 -5362 0.094652 0.042415 8.645808 10.864034 -5363 0.057182 0.034253 11.872772 11.877824 -5364 1.000000 1.000000 100.000000 100.000000 -5365 0.042721 0.017984 8.807231 9.400769 -5366 0.098348 0.067066 13.185944 18.599215 -5367 0.070025 0.028298 8.002427 12.115374 -5368 0.084128 0.043728 8.662739 10.659233 -5369 0.077779 0.037613 7.841980 13.253654 -5370 1.000000 1.000000 100.000000 100.000000 -5371 1.000000 1.000000 100.000000 100.000000 -5372 0.060806 0.025959 10.069186 22.036900 -5373 0.068961 0.076010 8.888552 13.670888 -5374 1.000000 1.000000 100.000000 100.000000 -5375 0.041110 0.023000 7.756003 9.658110 -5376 0.073793 0.051780 10.048414 9.185508 -5377 0.099048 0.066779 12.124366 13.535970 -5378 0.092256 0.042566 12.530498 13.600617 -5379 0.068950 0.053254 15.241563 17.128929 -5380 1.000000 1.000000 100.000000 100.000000 -5381 1.000000 1.000000 100.000000 100.000000 -5382 0.063460 0.029835 6.631368 9.379840 -5383 0.062820 0.046373 10.023738 12.552533 -5384 0.048330 0.037654 8.828353 12.948148 -5385 0.079135 0.039427 14.832974 14.457627 -5386 0.052042 0.023211 8.465955 12.969309 -5387 0.090310 0.048220 8.702927 9.456030 -5388 0.062266 0.051198 14.683947 13.473798 -5389 0.073597 0.076221 10.118793 12.998133 -5390 0.076293 0.046952 9.870660 12.563985 -5391 1.000000 1.000000 100.000000 100.000000 -5392 1.000000 1.000000 100.000000 100.000000 -5393 0.046085 0.023295 10.709132 17.205322 -5394 0.055860 0.025880 8.657366 8.681488 -5395 0.063609 0.027143 12.779201 9.305476 -5396 0.048483 0.027083 8.448961 14.899107 -5397 0.082032 0.037159 9.709486 13.813743 -5398 0.085858 0.045995 12.454135 13.143343 -5399 0.068697 0.041290 9.974964 12.259764 -5400 0.059546 0.035137 10.364722 14.550553 -5401 0.048921 0.030610 12.949887 16.899715 -5402 0.075778 0.057050 9.928547 17.215282 -5403 0.092533 0.043343 9.643549 11.684696 -5404 0.050529 0.035447 9.303309 11.956537 -5405 0.086853 0.057971 10.599234 13.053582 -5406 1.000000 1.000000 100.000000 100.000000 -5407 0.085956 0.047750 10.974560 15.102763 -5408 0.084981 0.056894 8.033653 11.171850 -5409 0.066766 0.052048 10.755790 12.685003 -5410 0.081860 0.035034 9.630321 8.719905 -5411 0.066990 0.038484 8.125699 10.640906 -5412 1.000000 1.000000 100.000000 100.000000 -5413 0.078773 0.038368 9.051344 14.557673 -5414 1.000000 1.000000 100.000000 100.000000 -5415 0.081625 0.063592 7.332208 11.199177 -5416 0.096204 0.069777 18.750656 19.625328 -5417 0.074691 0.039852 9.278999 11.556887 -5418 1.000000 1.000000 100.000000 100.000000 -5419 0.073180 0.024730 11.353192 12.367731 -5420 0.052974 0.022519 7.397560 13.970045 -5421 1.000000 1.000000 100.000000 100.000000 -5422 0.065420 0.038381 9.287737 12.628386 -5423 0.062173 0.028631 9.065513 8.802424 -5424 1.000000 1.000000 100.000000 100.000000 -5425 1.000000 1.000000 100.000000 100.000000 -5426 0.056445 0.028931 12.119088 16.991885 -5427 0.064410 0.040792 10.467033 9.669322 -5428 1.000000 1.000000 100.000000 100.000000 -5429 0.089595 0.062798 13.408401 17.494285 -5430 1.000000 1.000000 100.000000 100.000000 -5431 1.000000 1.000000 100.000000 100.000000 -5432 0.069426 0.033946 10.535944 10.925980 -5433 1.000000 1.000000 100.000000 100.000000 -5434 0.066841 0.039359 7.387134 9.389894 -5435 0.099824 0.038121 9.391498 13.579631 -5436 0.046954 0.040739 14.227882 18.517619 -5437 0.046469 0.037848 11.105096 12.455579 -5438 0.078124 0.028449 6.371908 10.734689 -5439 0.086926 0.056022 17.443487 18.241464 -5440 0.083454 0.043794 7.046643 11.990704 -5441 0.067622 0.031835 10.573846 10.938860 -5442 0.045586 0.028934 13.923815 18.955495 -5443 0.077418 0.069671 10.571867 12.980710 -5444 0.069329 0.063261 11.694313 13.176302 -5445 1.000000 1.000000 100.000000 100.000000 -5446 1.000000 1.000000 100.000000 100.000000 -5447 1.000000 1.000000 100.000000 100.000000 -5448 1.000000 1.000000 100.000000 100.000000 -5449 1.000000 1.000000 100.000000 100.000000 -5450 0.097599 0.069452 12.074842 13.907080 -5451 0.044495 0.028118 6.453717 10.619865 -5452 0.098034 0.068938 11.753708 17.764564 -5453 0.074402 0.046083 6.838798 9.337739 -5454 0.059550 0.052790 6.607777 12.467017 -5455 0.048705 0.057369 9.200696 11.492331 -5456 0.054211 0.032158 9.050067 14.512468 -5457 0.088950 0.049465 12.169554 15.611290 -5458 0.070103 0.055539 12.276170 15.571611 -5459 0.049987 0.024496 5.847109 7.810591 -5460 0.050712 0.045693 7.201817 11.108392 -5461 0.090234 0.047083 12.426581 14.737311 -5462 0.057936 0.031023 12.500360 12.563747 -5463 0.090403 0.058199 10.509604 14.752086 -5464 0.036859 0.016495 11.344971 11.530044 -5465 0.091834 0.035097 10.415444 16.557223 -5466 0.063486 0.049407 6.239217 11.597505 -5467 0.069753 0.038824 11.304234 19.129143 -5468 0.089880 0.064693 12.377307 16.165950 -5469 1.000000 1.000000 100.000000 100.000000 -5470 0.043925 0.029600 12.516383 14.578746 -5471 0.062719 0.025472 8.302518 12.376447 -5472 0.079336 0.048014 9.756952 17.559682 -5473 1.000000 1.000000 100.000000 100.000000 -5474 0.074916 0.051133 10.514846 14.227509 -5475 0.083488 0.044236 6.121601 7.561531 -5476 0.089793 0.035526 8.093587 10.993876 -5477 0.083129 0.048143 13.716323 15.124779 -5478 1.000000 1.000000 100.000000 100.000000 -5479 0.062254 0.049245 9.288443 12.376463 -5480 0.054237 0.024347 6.369452 12.723022 -5481 1.000000 1.000000 100.000000 100.000000 -5482 0.088886 0.067483 13.571546 23.154124 -5483 0.061621 0.045116 6.991327 8.783748 -5484 0.062082 0.030432 9.029145 8.924691 -5485 0.064553 0.057630 9.875228 11.360940 -5486 0.083461 0.039100 13.038726 15.288193 -5487 1.000000 1.000000 100.000000 100.000000 -5488 0.073466 0.044829 10.525618 11.963568 -5489 0.073438 0.044546 9.554778 11.815408 -5490 0.069907 0.048098 9.363509 9.524428 -5491 0.046411 0.024364 8.204911 11.101220 -5492 0.093496 0.061804 6.801775 9.400041 -5493 1.000000 1.000000 100.000000 100.000000 -5494 1.000000 1.000000 100.000000 100.000000 -5495 1.000000 1.000000 100.000000 100.000000 -5496 0.052322 0.033379 7.329158 8.907823 -5497 0.083541 0.053129 12.959510 14.352761 -5498 1.000000 1.000000 100.000000 100.000000 -5499 0.070519 0.060109 10.193019 15.264918 -5500 0.060925 0.046291 7.304848 8.189558 -5501 1.000000 1.000000 100.000000 100.000000 -5502 0.050974 0.023957 14.971315 14.035766 -5503 0.062966 0.030435 9.451778 12.890147 -5504 1.000000 1.000000 100.000000 100.000000 -5505 0.056402 0.041704 9.877818 9.454873 -5506 0.086742 0.058896 8.305776 15.173453 -5507 0.087791 0.028246 12.185978 12.878422 -5508 0.052737 0.028023 8.780038 9.545874 -5509 0.067916 0.032814 7.450414 12.411574 -5510 0.097642 0.032784 8.965749 9.860243 -5511 0.051442 0.038590 8.674722 13.927554 -5512 1.000000 1.000000 100.000000 100.000000 -5513 0.058464 0.038571 10.750796 10.595876 -5514 0.047146 0.024891 9.873972 15.723260 -5515 0.097233 0.050759 7.490598 9.839447 -5516 0.074033 0.048179 9.882304 13.426767 -5517 0.086086 0.064730 7.486159 10.981109 -5518 0.088946 0.048874 7.868755 14.177175 -5519 0.060390 0.032653 11.733601 12.690252 -5520 0.046518 0.032578 5.254189 10.448999 -5521 0.065509 0.036991 10.246153 11.992668 -5522 0.084236 0.061623 9.644497 12.911674 -5523 0.049287 0.038331 10.046127 17.674771 -5524 0.065887 0.026182 9.759243 13.410893 -5525 0.086169 0.046136 9.813237 12.919473 -5526 0.048775 0.033784 8.948779 11.494920 -5527 0.053967 0.034707 6.831547 7.207628 -5528 0.065968 0.040149 6.604944 8.143571 -5529 0.086146 0.066482 11.662141 11.879648 -5530 0.062327 0.034524 13.814071 13.081180 -5531 0.072894 0.033463 10.574463 12.713181 -5532 0.073234 0.073094 11.356927 9.700353 -5533 0.074431 0.037093 11.905569 15.775521 -5534 1.000000 1.000000 100.000000 100.000000 -5535 0.063778 0.027918 8.531012 13.000982 -5536 1.000000 1.000000 100.000000 100.000000 -5537 0.096837 0.056323 9.849288 15.897520 -5538 0.038355 0.019653 8.388025 7.955301 -5539 1.000000 1.000000 100.000000 100.000000 -5540 0.039656 0.015971 9.465634 9.110840 -5541 0.055807 0.017111 7.770733 10.653454 -5542 0.077407 0.037390 11.744954 13.565009 -5543 0.056371 0.033545 7.987897 8.701181 -5544 0.077976 0.049748 10.363307 10.864392 -5545 0.076579 0.027231 10.471291 14.179223 -5546 0.065638 0.042909 9.327946 15.801624 -5547 0.056676 0.034517 10.349848 12.092066 -5548 0.050454 0.021788 10.109711 12.233479 -5549 0.072918 0.042723 8.725055 13.300128 -5550 0.076705 0.048683 8.627254 12.504104 -5551 0.081263 0.044636 8.451800 10.865604 -5552 0.076418 0.067697 10.936887 18.698572 -5553 0.068414 0.082360 11.624708 15.989750 -5554 0.056581 0.033185 14.716743 16.904242 -5555 0.076511 0.046144 9.285452 11.729315 -5556 0.066529 0.050981 8.813229 12.126835 -5557 0.064929 0.038459 11.079094 11.474555 -5558 0.045556 0.022136 7.410414 6.825503 -5559 0.048000 0.051800 10.047611 12.817126 -5560 0.054452 0.026783 7.653284 9.871611 -5561 0.093213 0.045487 10.899668 15.906218 -5562 0.074333 0.040467 10.605178 12.580198 -5563 1.000000 1.000000 100.000000 100.000000 -5564 0.053110 0.029548 11.424714 12.649149 -5565 0.071395 0.045060 9.270482 13.820595 -5566 0.090150 0.058563 11.850012 12.799544 -5567 0.069190 0.045946 11.960838 13.425240 -5568 0.075352 0.068016 13.152375 16.242969 -5569 0.053837 0.020234 8.423596 11.040303 -5570 0.051075 0.039818 6.766799 12.252984 -5571 1.000000 1.000000 100.000000 100.000000 -5572 0.059971 0.051168 8.242399 8.873779 -5573 0.095314 0.075628 8.669270 8.697642 -5574 0.087136 0.032962 11.333682 12.692866 -5575 0.046815 0.032969 14.649247 17.854814 -5576 0.037197 0.032461 10.478237 14.092144 -5577 0.089665 0.027651 12.184164 15.721743 -5578 0.089081 0.040827 8.048854 9.481592 -5579 1.000000 1.000000 100.000000 100.000000 -5580 0.057247 0.026311 9.455957 9.699868 -5581 0.063944 0.046845 8.488189 13.667433 -5582 0.093374 0.053702 13.456754 11.426468 -5583 0.077502 0.046885 9.976292 11.716871 -5584 1.000000 1.000000 100.000000 100.000000 -5585 0.089759 0.059856 11.615950 14.668019 -5586 0.078939 0.052698 13.448213 11.509702 -5587 0.073622 0.035350 8.392155 11.420696 -5588 1.000000 1.000000 100.000000 100.000000 -5589 0.081923 0.044876 6.907637 13.278601 -5590 0.068939 0.071153 10.799264 13.465235 -5591 0.075233 0.024654 13.983025 10.513055 -5592 0.061105 0.035546 11.736496 11.790109 -5593 0.050803 0.043709 13.964751 12.584362 -5594 0.065608 0.040244 9.517090 15.532785 -5595 1.000000 1.000000 100.000000 100.000000 -5596 0.048946 0.024481 7.644840 11.048421 -5597 0.091919 0.074627 8.000122 10.447777 -5598 0.072268 0.038649 12.233528 11.562811 -5599 0.095949 0.083385 6.964701 13.619098 -5600 0.048320 0.034999 7.773864 10.419000 -5601 0.075691 0.081931 14.058468 12.785244 -5602 0.076057 0.044255 6.947532 12.148921 -5603 1.000000 1.000000 100.000000 100.000000 -5604 0.074235 0.026978 7.926380 10.823525 -5605 0.070009 0.043477 6.236361 9.938862 -5606 0.073627 0.058867 11.925447 23.900877 -5607 0.095580 0.042792 9.520327 12.542267 -5608 0.089165 0.041716 7.554356 11.272776 -5609 0.064791 0.039844 6.124657 10.383102 -5610 0.075683 0.051307 12.596553 15.154592 -5611 0.068160 0.043711 12.218830 15.833129 -5612 0.052932 0.057749 7.653894 13.298998 -5613 0.042574 0.020998 7.810336 6.918544 -5614 0.073307 0.034476 9.521269 14.018259 -5615 0.068094 0.033850 11.106295 9.297967 -5616 0.062555 0.052990 10.783853 9.404492 -5617 0.081660 0.052014 8.690487 11.590689 -5618 0.094393 0.032708 7.577926 10.393990 -5619 0.084838 0.050788 10.003832 14.771530 -5620 0.055371 0.045959 7.637669 10.198493 -5621 0.072293 0.071661 17.669407 17.312725 -5622 0.080101 0.046975 8.108311 13.074131 -5623 0.066546 0.046846 10.396070 9.663910 -5624 0.050469 0.023518 9.840812 12.799001 -5625 0.071238 0.046063 14.163713 18.181949 -5626 0.062640 0.055599 11.257649 14.439236 -5627 1.000000 1.000000 100.000000 100.000000 -5628 0.075138 0.029480 7.386115 13.068682 -5629 0.073153 0.043546 9.972506 10.431469 -5630 0.098497 0.074573 10.627420 18.720371 -5631 0.070244 0.034620 6.467091 7.664326 -5632 0.054216 0.018451 7.920285 9.692412 -5633 0.091566 0.055388 8.147605 9.518747 -5634 1.000000 1.000000 100.000000 100.000000 -5635 0.076217 0.043680 12.535631 14.176353 -5636 0.095166 0.054773 7.887618 9.929587 -5637 0.063149 0.051241 7.903259 11.837185 -5638 1.000000 1.000000 100.000000 100.000000 -5639 0.055163 0.024606 10.440466 15.917503 -5640 0.070114 0.029775 12.202967 14.697410 -5641 0.079117 0.029295 12.601036 15.398521 -5642 0.071496 0.025669 10.747257 11.654071 -5643 0.056861 0.023006 7.245399 12.753800 -5644 0.077798 0.048542 18.749316 20.546824 -5645 1.000000 1.000000 100.000000 100.000000 -5646 0.060360 0.035985 8.987196 9.251862 -5647 0.052219 0.028497 8.519516 10.455287 -5648 1.000000 1.000000 100.000000 100.000000 -5649 0.056603 0.025175 6.885339 12.589094 -5650 0.036586 0.012428 8.048702 10.665329 -5651 0.051239 0.057838 8.560068 12.106780 -5652 1.000000 1.000000 100.000000 100.000000 -5653 0.092488 0.044624 8.580875 7.950750 -5654 1.000000 1.000000 100.000000 100.000000 -5655 0.088960 0.040485 9.556534 13.291497 -5656 1.000000 1.000000 100.000000 100.000000 -5657 0.044834 0.032114 7.065794 9.806283 -5658 0.059504 0.032328 14.528681 15.190460 -5659 1.000000 1.000000 100.000000 100.000000 -5660 0.053147 0.037329 11.547824 20.207696 -5661 0.085580 0.023978 7.122596 9.281858 -5662 0.052832 0.041853 9.832295 14.360900 -5663 1.000000 1.000000 100.000000 100.000000 -5664 0.073575 0.078112 10.256987 12.329689 -5665 0.085648 0.036216 11.877089 13.489205 -5666 0.083867 0.037742 10.375239 16.854638 -5667 1.000000 1.000000 100.000000 100.000000 -5668 0.085930 0.043810 9.400401 14.752209 -5669 0.095539 0.056115 11.313094 10.775231 -5670 1.000000 1.000000 100.000000 100.000000 -5671 0.048213 0.036321 11.365102 15.038780 -5672 0.070816 0.047415 13.887632 13.008550 -5673 0.052108 0.032489 8.012138 7.620481 -5674 0.084442 0.033852 7.808766 9.988520 -5675 0.063775 0.041052 8.560752 11.731554 -5676 0.088606 0.049083 13.229037 17.975415 -5677 0.093474 0.060671 7.500071 11.136710 -5678 0.078968 0.036891 12.208179 10.004549 -5679 0.057747 0.021827 6.521711 10.288128 -5680 0.078388 0.037051 7.602820 13.583610 -5681 1.000000 1.000000 100.000000 100.000000 -5682 0.080554 0.032156 10.147885 13.419582 -5683 0.073657 0.044169 14.948481 15.944721 -5684 1.000000 1.000000 100.000000 100.000000 -5685 0.080973 0.060073 9.670759 17.514821 -5686 0.096939 0.041258 8.335402 8.853266 -5687 0.077062 0.061733 7.045427 11.239490 -5688 0.073159 0.039192 10.181275 9.817680 -5689 0.092294 0.058043 12.124482 11.078040 -5690 0.071347 0.045746 6.053890 14.942402 -5691 0.095645 0.046837 15.450446 15.382555 -5692 0.058604 0.039821 10.626275 11.281747 -5693 0.092473 0.055992 11.845484 15.132227 -5694 1.000000 1.000000 100.000000 100.000000 -5695 0.069611 0.042554 8.713900 11.492263 -5696 1.000000 1.000000 100.000000 100.000000 -5697 0.066984 0.041969 13.584278 15.214940 -5698 0.059734 0.039509 6.643890 12.706417 -5699 0.099438 0.050346 9.094153 11.947117 -5700 0.046779 0.048694 10.884360 16.248055 -5701 0.074811 0.038754 14.245187 18.907552 -5702 0.085355 0.046268 10.052213 13.980659 -5703 0.055350 0.033179 8.342099 7.101511 -5704 0.061132 0.034426 7.537204 10.521199 -5705 0.077436 0.058986 11.328592 9.223905 -5706 0.064723 0.047953 11.701588 13.830721 -5707 1.000000 1.000000 100.000000 100.000000 -5708 1.000000 1.000000 100.000000 100.000000 -5709 0.095352 0.071310 13.593093 18.024850 -5710 0.059024 0.038356 9.458898 8.533211 -5711 0.095176 0.035125 7.394306 11.389636 -5712 0.058546 0.052568 11.661157 15.792016 -5713 0.068246 0.057246 8.201356 13.393082 -5714 0.058067 0.043719 9.802720 15.860066 -5715 0.076713 0.054404 12.079153 15.724176 -5716 0.084919 0.075839 9.067629 13.037886 -5717 0.076641 0.046384 10.311732 15.446002 -5718 0.098221 0.043468 9.923057 11.535828 -5719 0.053950 0.022765 7.079459 15.164999 -5720 0.078625 0.045269 14.593346 15.430451 -5721 1.000000 1.000000 100.000000 100.000000 -5722 0.072535 0.067584 11.578525 13.215863 -5723 0.034778 0.013732 6.938964 12.073120 -5724 0.075830 0.070589 12.840810 12.327224 -5725 0.060656 0.053087 10.019777 15.650932 -5726 0.062185 0.043390 8.877465 10.199979 -5727 0.090371 0.067414 11.539601 14.389879 -5728 0.045164 0.026479 11.495868 12.765167 -5729 1.000000 1.000000 100.000000 100.000000 -5730 0.062720 0.041633 11.110872 15.003127 -5731 0.078324 0.036030 10.340534 15.974831 -5732 0.076482 0.026824 12.186793 12.469828 -5733 0.081938 0.042151 9.032168 15.304360 -5734 0.061909 0.039550 7.846886 12.173406 -5735 0.073499 0.032657 9.295508 13.383214 -5736 0.072009 0.034600 11.976260 13.757583 -5737 1.000000 1.000000 100.000000 100.000000 -5738 0.047224 0.019637 7.964127 9.801728 -5739 0.092100 0.073951 14.525699 18.177270 -5740 1.000000 1.000000 100.000000 100.000000 -5741 0.062839 0.037345 10.511023 12.665937 -5742 0.086446 0.055898 7.832802 10.318224 -5743 0.036103 0.022437 7.866065 9.192207 -5744 1.000000 1.000000 100.000000 100.000000 -5745 0.074910 0.059779 12.606474 12.249717 -5746 0.080682 0.084388 11.486947 14.343905 -5747 0.062478 0.044399 8.573521 9.328787 -5748 1.000000 1.000000 100.000000 100.000000 -5749 0.079901 0.069737 11.280599 12.321825 -5750 1.000000 1.000000 100.000000 100.000000 -5751 0.086883 0.044759 11.062491 16.095070 -5752 0.045176 0.034989 11.726364 13.047340 -5753 0.070934 0.042865 11.616997 13.307011 -5754 0.048915 0.031508 11.623430 11.596077 -5755 1.000000 1.000000 100.000000 100.000000 -5756 0.084619 0.047583 10.981759 16.035071 -5757 0.064148 0.038692 7.102153 15.096556 -5758 0.086236 0.069840 7.756095 8.754385 -5759 0.061544 0.033907 8.239590 14.581702 -5760 0.070279 0.058822 8.058872 8.170279 -5761 0.064567 0.091613 11.468300 13.400491 -5762 0.093087 0.091710 11.163771 11.037034 -5763 0.061720 0.031733 13.940131 18.521478 -5764 0.081948 0.055844 10.585223 14.158243 -5765 0.064448 0.068355 12.731630 9.940214 -5766 0.055542 0.038698 10.141350 15.206004 -5767 0.047786 0.030846 5.435104 6.924458 -5768 0.092010 0.072050 7.214804 11.436177 -5769 0.060905 0.042819 10.446920 14.018985 -5770 0.094962 0.042972 9.266782 15.867816 -5771 0.050450 0.027186 12.336698 13.085571 -5772 1.000000 1.000000 100.000000 100.000000 -5773 0.075652 0.048542 7.781645 10.974282 -5774 0.036709 0.035764 7.727373 9.804889 -5775 0.090397 0.048362 15.720173 18.503195 -5776 0.088968 0.042122 10.859638 10.463256 -5777 0.070883 0.033351 8.607187 11.425278 -5778 0.045973 0.038321 6.224533 11.390952 -5779 1.000000 1.000000 100.000000 100.000000 -5780 1.000000 1.000000 100.000000 100.000000 -5781 1.000000 1.000000 100.000000 100.000000 -5782 0.073773 0.065927 6.653979 15.716075 -5783 0.053736 0.042009 11.058401 14.040398 -5784 1.000000 1.000000 100.000000 100.000000 -5785 1.000000 1.000000 100.000000 100.000000 -5786 0.054722 0.036740 14.386452 15.640919 -5787 0.057648 0.032081 7.147074 14.360560 -5788 0.095818 0.066176 8.931222 16.362105 -5789 0.080676 0.067541 5.325112 11.045521 -5790 0.071897 0.038663 7.758600 11.154011 -5791 0.056198 0.046707 9.410119 9.102481 -5792 0.067660 0.031605 17.052759 19.215314 -5793 0.049413 0.012195 8.155965 9.766736 -5794 0.085696 0.045365 9.160727 14.305771 -5795 0.062907 0.053869 8.535802 10.171641 -5796 0.069103 0.035912 10.927354 13.772882 -5797 0.044408 0.023932 7.691705 10.970564 -5798 0.080356 0.020682 6.773308 16.560927 -5799 0.086720 0.044126 10.238134 18.625669 -5800 0.081388 0.037243 9.801625 13.379785 -5801 0.050667 0.026703 10.545903 10.837969 -5802 0.060679 0.047757 7.923850 10.327347 -5803 0.060983 0.056599 11.568426 14.850877 -5804 0.050571 0.031495 8.193303 13.794324 -5805 0.089765 0.055989 10.996137 12.208948 -5806 0.058198 0.037489 8.980653 10.641748 -5807 0.044911 0.019260 7.464373 10.338785 -5808 0.051243 0.035295 11.301059 15.225602 -5809 0.064539 0.044767 8.469624 11.222217 -5810 0.083243 0.094306 4.978084 8.963342 -5811 0.079021 0.063729 7.988095 7.704200 -5812 0.031352 0.018710 8.285577 11.315758 -5813 1.000000 1.000000 100.000000 100.000000 -5814 0.050168 0.035119 8.004316 11.359632 -5815 0.044841 0.024787 8.026160 12.129213 -5816 0.080738 0.037303 6.920741 14.910910 -5817 0.072130 0.038099 7.318159 10.341541 -5818 0.068546 0.058277 8.964197 12.497337 -5819 0.095296 0.060207 7.550152 10.619007 -5820 1.000000 1.000000 100.000000 100.000000 -5821 1.000000 1.000000 100.000000 100.000000 -5822 0.054994 0.045141 6.873865 9.688243 -5823 0.059504 0.031251 10.052852 8.617697 -5824 1.000000 1.000000 100.000000 100.000000 -5825 0.041086 0.032955 6.624814 11.202464 -5826 0.079124 0.092993 12.420801 14.053406 -5827 0.067797 0.046679 9.568755 10.549536 -5828 0.058241 0.040333 10.369644 14.563354 -5829 0.091139 0.070559 11.162908 11.707539 -5830 0.065945 0.032942 8.701291 11.032681 -5831 0.061650 0.040301 17.444137 15.051463 -5832 1.000000 1.000000 100.000000 100.000000 -5833 0.049215 0.033025 11.687521 16.405413 -5834 1.000000 1.000000 100.000000 100.000000 -5835 1.000000 1.000000 100.000000 100.000000 -5836 1.000000 1.000000 100.000000 100.000000 -5837 1.000000 1.000000 100.000000 100.000000 -5838 0.080624 0.044154 7.297867 8.130077 -5839 0.090706 0.057609 9.080536 10.126267 -5840 0.086787 0.046152 8.843028 14.628987 -5841 0.061198 0.047138 10.823054 13.652343 -5842 0.062200 0.055781 8.179353 16.198369 -5843 0.074631 0.044434 12.501353 12.794664 -5844 1.000000 1.000000 100.000000 100.000000 -5845 1.000000 1.000000 100.000000 100.000000 -5846 0.078657 0.047451 7.878408 10.956763 -5847 0.069995 0.063796 7.082524 14.005150 -5848 0.065634 0.031308 7.445443 11.569075 -5849 0.070555 0.050770 10.452013 15.976499 -5850 0.056873 0.029194 5.589962 7.856670 -5851 0.069124 0.040831 8.164190 16.666355 -5852 0.084947 0.054729 9.000811 14.370161 -5853 0.057824 0.021229 8.330270 9.356911 -5854 0.097081 0.046315 8.610318 11.263638 -5855 1.000000 1.000000 100.000000 100.000000 -5856 0.056181 0.024912 7.152696 10.561492 -5857 0.075359 0.051571 10.607504 11.750317 -5858 0.078190 0.038746 7.671511 11.117614 -5859 0.069192 0.064582 10.992663 11.253971 -5860 0.091051 0.041755 12.486257 13.881309 -5861 0.067922 0.035417 9.845073 7.897811 -5862 0.074532 0.052168 10.746521 15.204798 -5863 0.077506 0.058128 10.864397 14.311326 -5864 0.087064 0.085098 11.924949 17.020226 -5865 0.082355 0.052420 17.616611 14.437706 -5866 0.051853 0.037228 9.594151 12.446030 -5867 1.000000 1.000000 100.000000 100.000000 -5868 0.095710 0.041567 10.866213 12.313452 -5869 0.056815 0.027521 7.707235 10.589854 -5870 0.095866 0.045133 12.467681 15.296211 -5871 0.065016 0.054607 16.673630 19.543880 -5872 0.072257 0.042151 9.282306 22.797149 -5873 0.096613 0.087245 9.458260 15.990162 -5874 0.081868 0.054516 9.340137 14.010446 -5875 0.077181 0.036550 9.545247 10.158718 -5876 0.040719 0.033787 11.718227 11.784659 -5877 1.000000 1.000000 100.000000 100.000000 -5878 0.087255 0.068702 9.464649 11.783675 -5879 0.095717 0.064142 11.641633 13.143220 -5880 0.069812 0.060865 16.318349 17.275270 -5881 0.047805 0.024223 7.542380 13.174955 -5882 0.057557 0.042758 13.571570 14.575481 -5883 0.070027 0.031794 12.457896 13.665728 -5884 1.000000 1.000000 100.000000 100.000000 -5885 0.071458 0.045283 9.897936 12.076170 -5886 0.065948 0.058618 7.657802 9.184065 -5887 1.000000 1.000000 100.000000 100.000000 -5888 0.069480 0.045549 9.584123 12.641133 -5889 0.062090 0.047000 14.291904 21.189202 -5890 0.073655 0.045044 10.682636 14.529431 -5891 0.099388 0.058004 13.060712 13.440015 -5892 0.052897 0.032715 11.603638 13.963178 -5893 1.000000 1.000000 100.000000 100.000000 -5894 0.082560 0.046320 14.435130 20.215098 -5895 0.049263 0.032866 9.293072 16.208474 -5896 0.042698 0.029640 8.351387 7.585362 -5897 0.091894 0.061986 14.386600 18.734140 -5898 0.069603 0.059077 10.310573 11.751024 -5899 1.000000 1.000000 100.000000 100.000000 -5900 0.057715 0.052458 8.898181 12.623442 -5901 0.060945 0.044249 10.655954 11.232935 -5902 0.064741 0.044597 10.429650 11.829137 -5903 0.070452 0.035586 8.308351 8.961035 -5904 1.000000 1.000000 100.000000 100.000000 -5905 1.000000 1.000000 100.000000 100.000000 -5906 0.075278 0.061317 10.799481 10.182043 -5907 0.044449 0.022535 7.720181 10.145207 -5908 0.095921 0.059301 9.668781 11.651830 -5909 0.048283 0.025962 7.040188 7.848737 -5910 0.041035 0.041399 7.917430 11.793503 -5911 0.096476 0.074848 15.145403 16.059652 -5912 0.080798 0.037804 8.955699 9.827203 -5913 0.084504 0.033381 12.354812 12.088988 -5914 0.095209 0.056532 11.827952 13.352037 -5915 0.048477 0.034818 12.614596 10.380321 -5916 1.000000 1.000000 100.000000 100.000000 -5917 0.062768 0.038642 7.362833 8.418102 -5918 0.076209 0.042542 15.399589 14.051526 -5919 0.080803 0.083030 13.040606 19.100970 -5920 0.049753 0.024303 10.736726 10.213282 -5921 0.068585 0.063855 9.684763 15.586111 -5922 0.046005 0.022222 15.139890 10.644205 -5923 0.080287 0.035785 7.588230 9.616556 -5924 1.000000 1.000000 100.000000 100.000000 -5925 0.093343 0.050360 12.860031 11.190414 -5926 0.063538 0.034076 8.290782 11.346976 -5927 0.048815 0.039012 9.957508 11.836451 -5928 0.045050 0.014050 8.874019 12.284295 -5929 0.064173 0.056971 11.474362 11.870523 -5930 1.000000 1.000000 100.000000 100.000000 -5931 0.080483 0.063810 10.108663 13.584026 -5932 0.039975 0.022052 6.290340 10.169771 -5933 0.083375 0.051075 7.370458 14.913979 -5934 0.048656 0.019421 6.825951 14.016310 -5935 0.075176 0.032565 8.534384 10.424847 -5936 0.080081 0.039555 14.436593 17.786552 -5937 0.084184 0.054800 8.960626 14.539464 -5938 0.068194 0.057553 12.495229 13.958879 -5939 0.048173 0.024542 10.383938 15.963457 -5940 1.000000 1.000000 100.000000 100.000000 -5941 0.067627 0.048881 13.006062 11.406516 -5942 0.090484 0.075867 7.512715 8.203114 -5943 0.053439 0.029634 11.562071 11.051181 -5944 0.070542 0.042501 11.401469 15.287234 -5945 0.043347 0.033407 10.083832 13.387541 -5946 1.000000 1.000000 100.000000 100.000000 -5947 0.078860 0.037902 10.493229 13.178257 -5948 0.062310 0.053128 7.873685 12.903671 -5949 0.044285 0.026682 8.602932 10.840424 -5950 0.087571 0.041282 10.667130 11.026657 -5951 1.000000 1.000000 100.000000 100.000000 -5952 0.060600 0.033011 10.930190 12.659625 -5953 0.071349 0.051522 9.207545 8.921912 -5954 0.059507 0.038826 12.462610 14.495053 -5955 0.083577 0.027145 9.592168 14.010058 -5956 0.092977 0.047301 7.613770 9.645435 -5957 0.092948 0.064647 12.522526 17.605296 -5958 0.057272 0.030017 9.013942 8.931091 -5959 1.000000 1.000000 100.000000 100.000000 -5960 0.091610 0.073711 12.200001 12.741459 -5961 0.061398 0.030711 9.408003 13.471693 -5962 0.085075 0.031338 11.027715 9.563327 -5963 0.049247 0.015533 8.338057 8.746315 -5964 0.064586 0.070615 9.783896 17.929311 -5965 1.000000 1.000000 100.000000 100.000000 -5966 1.000000 1.000000 100.000000 100.000000 -5967 0.059713 0.030360 9.045091 11.923779 -5968 0.061856 0.041533 9.235171 12.563842 -5969 0.075288 0.043772 19.997842 22.505645 -5970 0.083603 0.059218 7.040344 11.444251 -5971 1.000000 1.000000 100.000000 100.000000 -5972 1.000000 1.000000 100.000000 100.000000 -5973 0.052805 0.037325 7.197938 8.524172 -5974 0.091899 0.076101 9.344286 10.745961 -5975 0.080323 0.043382 8.967551 14.113282 -5976 0.081430 0.069962 9.514967 17.488687 -5977 1.000000 1.000000 100.000000 100.000000 -5978 0.060356 0.030613 8.317686 7.674715 -5979 0.052606 0.051684 11.327084 15.981847 -5980 1.000000 1.000000 100.000000 100.000000 -5981 0.092691 0.052836 11.625379 12.661852 -5982 0.075739 0.049934 13.244183 14.507351 -5983 0.092592 0.060987 9.113600 17.737972 -5984 0.065690 0.050943 7.878551 13.493991 -5985 0.059904 0.051492 11.258669 14.131148 -5986 0.076289 0.038016 6.839547 12.713233 -5987 0.057820 0.043601 7.712531 8.356044 -5988 0.085011 0.043918 8.691262 9.117228 -5989 1.000000 1.000000 100.000000 100.000000 -5990 0.053822 0.036871 13.316944 11.850910 -5991 0.064629 0.043234 6.047696 10.111002 -5992 0.048434 0.042096 7.592098 11.541780 -5993 0.064552 0.036414 6.537878 7.660628 -5994 1.000000 1.000000 100.000000 100.000000 -5995 0.082145 0.061985 8.749107 8.955734 -5996 1.000000 1.000000 100.000000 100.000000 -5997 0.083931 0.048010 8.605402 9.979230 -5998 0.033581 0.022603 9.716310 11.446322 -5999 0.076614 0.075675 12.073569 11.369526 -6000 0.090015 0.044560 9.363429 10.285529 -6001 0.062771 0.042106 9.141635 13.292329 -6002 0.071257 0.036476 9.729402 9.103140 -6003 0.082994 0.069954 13.112872 14.256215 -6004 0.053760 0.022465 8.185352 9.157912 -6005 0.048991 0.040649 7.665260 10.353600 -6006 1.000000 1.000000 100.000000 100.000000 -6007 0.066354 0.039987 10.717487 13.217491 -6008 0.072450 0.023643 6.026196 10.098300 -6009 0.057477 0.025896 7.126711 12.654498 -6010 0.060400 0.035671 11.954173 10.143462 -6011 0.069712 0.050504 13.104914 16.503148 -6012 0.034954 0.022988 8.235220 8.157524 -6013 0.068738 0.043051 11.006152 13.726531 -6014 0.092001 0.052657 12.973201 12.037027 -6015 1.000000 1.000000 100.000000 100.000000 -6016 0.090265 0.049550 11.176317 12.665231 -6017 0.066142 0.053984 11.216798 20.672578 -6018 0.067470 0.064210 6.840138 11.862076 -6019 1.000000 1.000000 100.000000 100.000000 -6020 0.063241 0.039506 9.107180 12.808467 -6021 0.047401 0.030079 11.432441 10.672238 -6022 0.086205 0.048910 9.302257 12.900311 -6023 0.066219 0.037728 7.218944 16.685445 -6024 0.081173 0.065954 10.857430 9.885539 -6025 0.091437 0.039316 13.111342 13.699112 -6026 0.040543 0.028397 8.376957 12.635251 -6027 0.079463 0.032168 12.647227 13.725608 -6028 0.053789 0.057097 10.409154 10.929204 -6029 0.095754 0.056977 8.381464 13.992307 -6030 0.072220 0.032835 7.695599 8.511204 -6031 0.084677 0.043087 9.659410 11.038675 -6032 0.073560 0.027892 10.413083 13.995125 -6033 1.000000 1.000000 100.000000 100.000000 -6034 0.092359 0.072898 9.519666 16.419876 -6035 0.066471 0.052943 8.947910 13.097379 -6036 1.000000 1.000000 100.000000 100.000000 -6037 1.000000 1.000000 100.000000 100.000000 -6038 0.059948 0.030257 15.073717 14.922483 -6039 0.043122 0.033786 11.467522 18.049777 -6040 0.064007 0.040506 8.064439 13.203681 -6041 0.046702 0.046747 10.736392 12.294286 -6042 0.060648 0.062859 8.577118 14.612821 -6043 0.079108 0.039406 7.863552 15.690172 -6044 1.000000 1.000000 100.000000 100.000000 -6045 0.064817 0.016079 7.339726 10.100729 -6046 0.084436 0.031082 9.657905 9.176055 -6047 0.090551 0.055557 10.231230 10.584354 -6048 0.085532 0.033647 11.269767 13.122135 -6049 1.000000 1.000000 100.000000 100.000000 -6050 0.055284 0.018752 8.546100 10.949439 -6051 0.084955 0.050415 12.433990 12.505690 -6052 0.096272 0.075455 12.871752 15.745849 -6053 0.075701 0.048799 11.428675 10.481296 -6054 0.097857 0.059096 8.081250 13.867975 -6055 1.000000 1.000000 100.000000 100.000000 -6056 0.049464 0.029012 7.903043 8.649872 -6057 0.084907 0.086307 10.945242 17.537200 -6058 0.077324 0.043618 11.744414 12.222246 -6059 0.059709 0.026810 10.033738 7.590040 -6060 0.074651 0.034922 8.910035 9.920230 -6061 1.000000 1.000000 100.000000 100.000000 -6062 0.033505 0.013646 9.014625 9.614462 -6063 0.069950 0.098461 10.503885 8.846886 -6064 0.046698 0.018589 7.052117 6.085880 -6065 0.067424 0.035303 10.027876 9.985286 -6066 0.099853 0.063030 12.509519 15.269387 -6067 1.000000 1.000000 100.000000 100.000000 -6068 1.000000 1.000000 100.000000 100.000000 -6069 0.036945 0.034138 6.932084 9.590050 -6070 0.094248 0.055346 14.415987 18.444194 -6071 0.077323 0.054483 9.251024 14.981568 -6072 0.077237 0.059412 7.324324 11.147649 -6073 1.000000 1.000000 100.000000 100.000000 -6074 0.048962 0.020930 17.601382 16.945351 -6075 0.078975 0.030170 8.366243 13.403686 -6076 0.064168 0.032397 11.414477 21.274851 -6077 0.065123 0.035747 10.964498 10.111346 -6078 0.068501 0.037251 6.617154 10.202311 -6079 0.069097 0.033476 9.848518 12.253979 -6080 0.065030 0.022979 9.142292 10.890139 -6081 0.060681 0.045211 11.662415 12.404842 -6082 1.000000 1.000000 100.000000 100.000000 -6083 1.000000 1.000000 100.000000 100.000000 -6084 0.088618 0.059223 13.824061 12.813394 -6085 0.081385 0.045281 6.637053 9.657490 -6086 0.047573 0.026762 9.554578 11.115725 -6087 0.075242 0.045964 16.397346 15.262574 -6088 0.062064 0.046137 9.931138 16.381289 -6089 0.073805 0.043841 8.936519 12.713916 -6090 0.062151 0.021787 8.300278 9.353879 -6091 0.067578 0.032803 6.104768 11.599606 -6092 0.090118 0.042702 7.412653 8.897989 -6093 1.000000 1.000000 100.000000 100.000000 -6094 0.087211 0.038701 13.293399 18.079810 -6095 0.081160 0.043303 12.251315 11.197164 -6096 0.050666 0.026242 9.345668 9.232013 -6097 0.087680 0.066418 12.277455 15.518953 -6098 0.061862 0.033380 8.726125 9.907741 -6099 0.050278 0.035670 10.013907 13.694909 -6100 0.081407 0.036897 8.040333 10.238827 -6101 0.099391 0.064818 12.827600 11.113953 -6102 0.076504 0.028922 7.642521 11.111912 -6103 0.074072 0.052875 13.501080 13.400028 -6104 0.062933 0.049186 8.211817 13.222250 -6105 0.063879 0.020736 7.718450 10.450674 -6106 1.000000 1.000000 100.000000 100.000000 -6107 0.065624 0.055002 9.311738 9.338385 -6108 1.000000 1.000000 100.000000 100.000000 -6109 0.067252 0.041427 11.963470 13.533646 -6110 0.046689 0.030509 8.439430 9.562927 -6111 0.089050 0.048145 15.443120 19.469267 -6112 0.089983 0.054436 14.506683 21.575900 -6113 0.072508 0.034877 5.886789 9.270397 -6114 0.057780 0.027811 10.798364 16.070061 -6115 0.080937 0.036261 10.583730 12.649528 -6116 1.000000 1.000000 100.000000 100.000000 -6117 0.093168 0.055505 7.728274 9.054942 -6118 0.061559 0.044101 12.321464 14.897196 -6119 0.058807 0.046334 9.917606 10.124009 -6120 1.000000 1.000000 100.000000 100.000000 -6121 0.076817 0.052813 10.797530 14.195213 -6122 0.039491 0.030836 13.072823 10.475058 -6123 0.072504 0.031482 11.777460 11.588062 -6124 0.048435 0.022454 11.615646 13.402678 -6125 0.095490 0.050532 11.957720 15.346316 -6126 1.000000 1.000000 100.000000 100.000000 -6127 0.055312 0.023326 11.179883 10.007676 -6128 0.076846 0.039263 13.237551 15.957484 -6129 0.079793 0.058260 9.107143 8.941071 -6130 0.057076 0.041202 14.613262 19.761074 -6131 1.000000 1.000000 100.000000 100.000000 -6132 0.054973 0.029208 8.726448 13.465098 -6133 0.072766 0.063721 8.457972 14.973529 -6134 0.098614 0.030792 6.500753 11.705615 -6135 0.086437 0.058677 17.426119 17.144761 -6136 0.068421 0.050458 6.654054 9.805592 -6137 0.097439 0.075422 11.799743 14.629856 -6138 1.000000 1.000000 100.000000 100.000000 -6139 0.069417 0.038716 8.965383 8.282520 -6140 0.067848 0.036389 6.635685 8.492471 -6141 0.057853 0.028457 8.772157 15.587143 -6142 0.083033 0.029003 11.724930 13.993079 -6143 0.079270 0.051285 7.726043 9.154836 -6144 0.044620 0.025956 6.966890 12.569259 -6145 0.071780 0.053002 8.672118 13.437509 -6146 0.058845 0.022427 8.448702 8.065091 -6147 0.060939 0.029356 12.201300 14.650244 -6148 0.070255 0.044428 7.822075 7.956123 -6149 1.000000 1.000000 100.000000 100.000000 -6150 0.053716 0.039296 8.665350 10.389290 -6151 0.062600 0.032452 9.317730 13.237982 -6152 0.072906 0.038358 7.061379 10.028220 -6153 0.071286 0.045966 10.126452 9.086840 -6154 0.063862 0.039768 9.400872 10.977471 -6155 1.000000 1.000000 100.000000 100.000000 -6156 1.000000 1.000000 100.000000 100.000000 -6157 0.035729 0.019810 8.229347 12.044332 -6158 1.000000 1.000000 100.000000 100.000000 -6159 1.000000 1.000000 100.000000 100.000000 -6160 0.064265 0.028998 6.746402 9.677710 -6161 0.058862 0.046140 8.007336 10.040269 -6162 0.044203 0.031959 12.889125 17.605487 -6163 0.075268 0.053560 11.185797 10.625456 -6164 0.049772 0.039020 6.206869 6.587832 -6165 0.087515 0.070554 12.084746 13.165705 -6166 0.075193 0.072854 13.345342 11.291006 -6167 0.063161 0.020847 8.767623 14.089802 -6168 0.056708 0.031616 9.751036 13.136607 -6169 0.087554 0.054214 9.962119 17.603767 -6170 0.090169 0.047724 10.695559 13.015945 -6171 0.057472 0.069227 8.134994 18.060684 -6172 1.000000 1.000000 100.000000 100.000000 -6173 0.088505 0.029353 8.300332 10.435071 -6174 0.054419 0.015552 7.316346 13.294865 -6175 0.072553 0.040360 11.680221 15.895000 -6176 0.078633 0.054021 17.770709 21.597676 -6177 1.000000 1.000000 100.000000 100.000000 -6178 0.058626 0.030224 11.585704 16.796182 -6179 1.000000 1.000000 100.000000 100.000000 -6180 1.000000 1.000000 100.000000 100.000000 -6181 0.064578 0.029350 12.838619 15.224325 -6182 1.000000 1.000000 100.000000 100.000000 -6183 0.090761 0.033610 10.067348 13.580048 -6184 0.059962 0.038649 8.272509 9.221852 -6185 0.087495 0.068336 7.041406 8.263187 -6186 1.000000 1.000000 100.000000 100.000000 -6187 0.091316 0.051385 14.108879 12.234189 -6188 1.000000 1.000000 100.000000 100.000000 -6189 0.065826 0.048879 18.546220 17.914483 -6190 1.000000 1.000000 100.000000 100.000000 -6191 1.000000 1.000000 100.000000 100.000000 -6192 0.073038 0.048225 11.322207 9.938177 -6193 0.074631 0.037215 9.170495 19.069634 -6194 0.075221 0.044724 12.823999 20.252929 -6195 0.077415 0.056118 13.522381 20.035614 -6196 0.065364 0.042276 7.796502 12.725973 -6197 0.092692 0.058838 13.243353 12.579054 -6198 0.063805 0.085785 10.182970 11.426741 -6199 0.072376 0.048816 5.965736 13.023187 -6200 0.059428 0.051149 14.134033 19.554369 -6201 0.070139 0.037067 11.641992 13.755489 -6202 0.097243 0.049438 10.996156 14.960676 -6203 0.091108 0.051654 12.451275 18.551969 -6204 0.076441 0.049166 14.607757 14.566630 -6205 0.081453 0.033480 9.395027 16.079556 -6206 0.045601 0.031090 8.087728 10.511309 -6207 0.096678 0.040541 14.146779 12.164423 -6208 0.089486 0.058060 9.935708 11.778049 -6209 1.000000 1.000000 100.000000 100.000000 -6210 1.000000 1.000000 100.000000 100.000000 -6211 0.063664 0.044265 10.232996 11.958394 -6212 1.000000 1.000000 100.000000 100.000000 -6213 0.064602 0.055211 7.563402 11.527274 -6214 0.061496 0.029429 7.881170 11.108422 -6215 1.000000 1.000000 100.000000 100.000000 -6216 0.063061 0.045981 6.751074 11.467026 -6217 0.061776 0.024152 16.382113 16.764418 -6218 1.000000 1.000000 100.000000 100.000000 -6219 0.075543 0.057347 8.820790 10.588207 -6220 0.047469 0.031620 8.292183 15.110195 -6221 0.037678 0.029573 8.720177 8.220266 -6222 0.092000 0.073158 8.825256 9.542281 -6223 0.068172 0.042880 8.943303 11.637442 -6224 0.090126 0.038930 12.634222 19.236870 -6225 0.052956 0.033124 6.633794 15.117319 -6226 1.000000 1.000000 100.000000 100.000000 -6227 0.067014 0.026702 11.393993 14.774170 -6228 0.076035 0.041635 8.340157 11.542202 -6229 0.086455 0.073303 15.437466 14.391580 -6230 0.089255 0.061627 12.373958 16.260673 -6231 0.036845 0.028844 8.923197 9.811413 -6232 0.058282 0.034677 16.114947 17.398959 -6233 0.079544 0.068912 8.778605 12.286846 -6234 1.000000 1.000000 100.000000 100.000000 -6235 0.035557 0.024774 8.517430 8.793975 -6236 0.028666 0.021432 8.467608 12.200407 -6237 0.072128 0.052975 12.664293 14.714679 -6238 0.089731 0.044707 10.812792 13.498349 -6239 0.082404 0.063871 9.441321 12.230475 -6240 0.073587 0.062217 10.466000 16.151692 -6241 1.000000 1.000000 100.000000 100.000000 -6242 0.082186 0.055902 12.461948 10.334770 -6243 0.069990 0.053390 7.582560 12.153038 -6244 0.097669 0.042195 10.517263 14.418988 -6245 1.000000 1.000000 100.000000 100.000000 -6246 0.093092 0.034056 13.375094 10.368250 -6247 0.047556 0.023058 7.268064 11.252992 -6248 0.071716 0.036799 12.930729 12.433992 -6249 1.000000 1.000000 100.000000 100.000000 -6250 1.000000 1.000000 100.000000 100.000000 -6251 0.058753 0.032794 15.417319 11.712909 -6252 0.071839 0.041616 11.455821 15.419684 -6253 0.082501 0.034596 10.420808 11.875682 -6254 0.097878 0.048608 7.769426 10.224831 -6255 0.091361 0.044561 8.075870 10.120453 -6256 0.078960 0.057068 12.045948 14.683322 -6257 1.000000 1.000000 100.000000 100.000000 -6258 0.055854 0.031692 9.148029 11.788792 -6259 0.051573 0.027100 7.331050 12.007630 -6260 0.097620 0.054287 6.290495 8.808387 -6261 0.064399 0.029289 11.679012 14.693304 -6262 0.065400 0.050712 9.985327 9.093871 -6263 0.060987 0.030980 6.472948 8.426865 -6264 0.079546 0.046813 8.621164 13.931884 -6265 0.074549 0.060937 7.536851 9.738012 -6266 1.000000 1.000000 100.000000 100.000000 -6267 1.000000 1.000000 100.000000 100.000000 -6268 0.085891 0.051222 12.808028 16.860086 -6269 0.062068 0.030403 7.691576 11.803362 -6270 1.000000 1.000000 100.000000 100.000000 -6271 0.052817 0.033984 10.589711 8.808676 -6272 0.073842 0.046239 9.655334 10.964508 -6273 0.064450 0.037373 10.809518 12.972702 -6274 0.057088 0.033471 12.959563 15.616943 -6275 0.066511 0.039883 10.503429 12.472994 -6276 0.051227 0.040747 8.785191 16.659373 -6277 0.074076 0.040734 7.366857 9.175099 -6278 0.061492 0.043720 7.049817 9.532968 -6279 0.066802 0.029417 7.667162 7.489039 -6280 0.093105 0.063135 9.058211 11.566189 -6281 0.078769 0.064507 10.380359 20.284530 -6282 0.068322 0.067444 12.829252 11.851140 -6283 0.062453 0.031979 16.956482 15.987250 -6284 0.096234 0.037805 12.109132 16.090195 -6285 0.065543 0.038897 8.833064 19.504508 -6286 0.097551 0.069664 12.099403 15.609623 -6287 1.000000 1.000000 100.000000 100.000000 -6288 0.046216 0.026767 7.778865 8.114373 -6289 0.066865 0.028356 10.759166 13.569280 -6290 0.088469 0.071360 10.545682 12.198210 -6291 0.090913 0.055592 8.848680 14.366291 -6292 1.000000 1.000000 100.000000 100.000000 -6293 0.049052 0.027578 7.872018 11.134541 -6294 0.059255 0.042150 14.421687 19.858265 -6295 1.000000 1.000000 100.000000 100.000000 -6296 0.075632 0.040729 10.991195 12.381553 -6297 1.000000 1.000000 100.000000 100.000000 -6298 1.000000 1.000000 100.000000 100.000000 -6299 0.058404 0.025578 6.048235 10.642536 -6300 0.082920 0.055507 10.150867 10.371376 -6301 0.098025 0.058007 9.445444 13.363703 -6302 0.058558 0.043037 8.681477 13.931499 -6303 0.091969 0.056346 7.395321 13.823441 -6304 0.069686 0.036750 9.494334 12.776110 -6305 1.000000 1.000000 100.000000 100.000000 -6306 1.000000 1.000000 100.000000 100.000000 -6307 1.000000 1.000000 100.000000 100.000000 -6308 0.082421 0.040356 8.231922 9.787405 -6309 0.072906 0.057917 9.988977 15.861123 -6310 0.078807 0.035307 11.905406 12.358283 -6311 0.037799 0.021489 8.391817 8.477114 -6312 0.099363 0.069360 10.167142 14.211756 -6313 0.091396 0.065233 7.794889 15.487053 -6314 0.088285 0.075583 13.063034 13.436584 -6315 0.055350 0.032990 9.036610 13.151228 -6316 0.096998 0.056401 7.893892 13.038253 -6317 0.039204 0.027117 7.803408 14.071871 -6318 1.000000 1.000000 100.000000 100.000000 -6319 1.000000 1.000000 100.000000 100.000000 -6320 1.000000 1.000000 100.000000 100.000000 -6321 0.079010 0.033580 11.590060 13.564114 -6322 0.055167 0.024836 12.879487 23.759603 -6323 1.000000 1.000000 100.000000 100.000000 -6324 0.077316 0.059192 8.314738 11.653577 -6325 0.090650 0.066168 9.768275 15.340994 -6326 0.042573 0.021083 7.374984 12.486119 -6327 0.071694 0.080593 9.831587 10.041115 -6328 0.082996 0.055157 7.933869 13.501910 -6329 0.075204 0.053648 9.045711 11.953869 -6330 0.066663 0.047663 9.315483 15.679039 -6331 0.063178 0.057049 8.548981 9.888494 -6332 0.052222 0.025105 10.984242 13.046718 -6333 1.000000 1.000000 100.000000 100.000000 -6334 0.058898 0.019565 7.185121 10.762082 -6335 0.057496 0.034081 13.066206 13.028977 -6336 0.086500 0.052651 13.543432 23.343474 -6337 0.053569 0.022976 6.426881 8.364227 -6338 1.000000 1.000000 100.000000 100.000000 -6339 0.082426 0.047093 10.555348 14.551777 -6340 0.051895 0.050864 6.773008 10.528696 -6341 1.000000 1.000000 100.000000 100.000000 -6342 0.048387 0.036819 4.891514 7.751604 -6343 1.000000 1.000000 100.000000 100.000000 -6344 0.065159 0.030699 8.920438 14.259209 -6345 0.091535 0.039158 15.000811 19.915382 -6346 0.089924 0.049985 8.098761 9.484468 -6347 0.070055 0.047866 10.011200 17.038807 -6348 0.057359 0.046560 7.823222 12.755850 -6349 0.069354 0.040822 10.027644 12.534915 -6350 0.084292 0.037437 10.562166 15.245446 -6351 0.052614 0.042675 8.872270 13.790185 -6352 1.000000 1.000000 100.000000 100.000000 -6353 1.000000 1.000000 100.000000 100.000000 -6354 0.057199 0.039452 8.918879 9.307732 -6355 0.055334 0.019433 7.758258 14.113871 -6356 0.069373 0.036608 9.785971 12.406434 -6357 0.063264 0.053789 8.822920 12.640101 -6358 0.032245 0.022483 7.184689 7.577153 -6359 0.044459 0.027009 6.719057 7.681951 -6360 1.000000 1.000000 100.000000 100.000000 -6361 0.053423 0.024221 10.094101 11.616784 -6362 0.046381 0.036207 10.369759 12.917131 -6363 0.063361 0.039382 11.922466 9.816335 -6364 0.065733 0.074786 9.047167 12.434326 -6365 0.053691 0.032896 10.283195 11.027952 -6366 0.057377 0.027412 5.413917 11.232587 -6367 0.072839 0.039985 8.095715 10.914488 -6368 1.000000 1.000000 100.000000 100.000000 -6369 0.061472 0.033419 10.529477 14.136625 -6370 0.051266 0.023796 7.570114 8.048911 -6371 0.081287 0.036043 8.712927 12.221985 -6372 1.000000 1.000000 100.000000 100.000000 -6373 0.074942 0.073526 11.218693 11.845520 -6374 0.074214 0.029610 10.028894 13.112334 -6375 0.062734 0.046529 10.011380 14.209371 -6376 0.054105 0.032939 9.897185 13.389541 -6377 0.072941 0.058940 12.048283 14.314001 -6378 0.051283 0.036519 7.367383 9.910987 -6379 0.074038 0.036247 10.381304 11.133029 -6380 0.079740 0.071916 9.239149 13.079150 -6381 0.061498 0.030381 8.344014 8.202340 -6382 0.088137 0.031150 10.334946 11.569887 -6383 0.079808 0.054060 6.907833 12.506482 -6384 0.071417 0.036023 11.379810 10.512472 -6385 0.064732 0.062435 10.942814 10.339110 -6386 1.000000 1.000000 100.000000 100.000000 -6387 0.051044 0.020172 7.890902 8.109479 -6388 0.094275 0.029456 9.239083 7.737986 -6389 1.000000 1.000000 100.000000 100.000000 -6390 0.062106 0.024545 4.835815 9.647756 -6391 0.068320 0.060617 7.240010 9.006213 -6392 0.096487 0.058302 13.547661 16.738359 -6393 0.082680 0.083464 11.207254 12.600245 -6394 0.071380 0.036048 7.353253 9.938466 -6395 0.061142 0.038931 8.368578 12.549435 -6396 0.077170 0.033788 9.407327 13.662459 -6397 1.000000 1.000000 100.000000 100.000000 -6398 1.000000 1.000000 100.000000 100.000000 -6399 0.065555 0.037751 5.231053 8.068660 -6400 0.068584 0.046732 8.013515 10.674754 -6401 0.071986 0.028833 10.300029 14.176962 -6402 1.000000 1.000000 100.000000 100.000000 -6403 0.088156 0.039487 9.114404 8.435175 -6404 0.077723 0.028902 10.247626 14.831928 -6405 0.071827 0.042572 11.901595 12.515204 -6406 0.071747 0.039711 5.779460 11.375790 -6407 0.063055 0.043513 5.739941 12.342579 -6408 0.098054 0.055655 10.389539 14.260117 -6409 0.088075 0.044556 11.717516 13.880803 -6410 0.074646 0.044405 11.487606 13.178617 -6411 0.065253 0.041047 8.131753 8.747360 -6412 0.092037 0.063994 9.263850 15.357987 -6413 0.083647 0.073250 10.237053 12.224162 -6414 0.044326 0.027867 7.310260 11.973182 -6415 1.000000 1.000000 100.000000 100.000000 -6416 1.000000 1.000000 100.000000 100.000000 -6417 0.043130 0.026284 6.157188 9.288548 -6418 0.068412 0.064175 10.192396 13.132836 -6419 1.000000 1.000000 100.000000 100.000000 -6420 0.078607 0.069449 9.571123 15.464679 -6421 0.088022 0.078578 16.388289 18.113051 -6422 1.000000 1.000000 100.000000 100.000000 -6423 0.055576 0.033427 8.303934 15.667665 -6424 1.000000 1.000000 100.000000 100.000000 -6425 0.072494 0.037408 12.190246 8.388691 -6426 0.092520 0.048125 7.769066 11.403506 -6427 0.049832 0.027924 13.045593 18.057720 -6428 0.094653 0.075200 6.777338 11.392587 -6429 0.072554 0.037207 10.445770 9.248957 -6430 0.089429 0.048198 9.398411 12.198183 -6431 0.073317 0.034960 9.370117 12.745160 -6432 0.060331 0.030380 10.915566 13.022658 -6433 1.000000 1.000000 100.000000 100.000000 -6434 0.061392 0.034489 10.039097 11.239155 -6435 0.070447 0.044362 8.039295 11.532951 -6436 0.084799 0.049808 12.269737 12.835520 -6437 0.055263 0.029268 8.367224 12.431812 -6438 1.000000 1.000000 100.000000 100.000000 -6439 0.072415 0.073548 7.449926 12.742174 -6440 0.079628 0.034472 8.859145 10.029638 -6441 0.073962 0.035487 12.421304 16.365395 -6442 1.000000 1.000000 100.000000 100.000000 -6443 0.090302 0.046527 8.690797 14.275550 -6444 0.080010 0.037616 9.739109 11.404998 -6445 0.095038 0.081533 14.197980 16.292708 -6446 0.051991 0.039997 5.181500 7.640419 -6447 0.059311 0.026270 7.147174 11.816443 -6448 0.076551 0.039297 8.450976 12.177313 -6449 0.057809 0.035702 6.167888 11.332907 -6450 0.086978 0.022794 10.728534 13.633558 -6451 0.074475 0.060076 10.941318 9.433887 -6452 1.000000 1.000000 100.000000 100.000000 -6453 0.059736 0.039456 12.353657 13.021190 -6454 0.082750 0.046652 7.698569 11.515281 -6455 0.075907 0.039536 10.795251 10.360447 -6456 0.041185 0.031888 7.395995 6.304968 -6457 0.089218 0.084206 9.442196 12.711644 -6458 0.076961 0.064128 11.531407 14.470276 -6459 0.057253 0.023793 9.592455 10.956238 -6460 0.045739 0.028311 4.561087 7.889170 -6461 0.046526 0.022220 11.341895 12.026655 -6462 0.084137 0.063004 8.933938 12.139219 -6463 0.067413 0.044264 11.989383 11.411679 -6464 0.079943 0.042756 7.134522 8.827644 -6465 1.000000 1.000000 100.000000 100.000000 -6466 0.064758 0.053508 12.543435 12.567492 -6467 0.076790 0.055307 14.818665 18.806373 -6468 1.000000 1.000000 100.000000 100.000000 -6469 0.045122 0.027120 8.737227 8.047040 -6470 0.061235 0.044049 12.280355 10.323392 -6471 1.000000 1.000000 100.000000 100.000000 -6472 0.073796 0.048025 7.154268 11.916152 -6473 0.091109 0.035965 8.015517 12.544033 -6474 0.088331 0.052095 8.610238 11.467003 -6475 0.058789 0.028459 9.295487 13.444531 -6476 1.000000 1.000000 100.000000 100.000000 -6477 1.000000 1.000000 100.000000 100.000000 -6478 0.070123 0.047157 10.439821 15.176691 -6479 0.090047 0.065653 9.855781 14.486997 -6480 0.066823 0.037630 10.754802 15.281884 -6481 0.079986 0.031469 10.299964 14.853400 -6482 0.054201 0.028974 9.773137 13.232926 -6483 0.062322 0.044010 8.430737 7.897703 -6484 0.068588 0.043231 12.559902 15.792531 -6485 1.000000 1.000000 100.000000 100.000000 -6486 0.084184 0.040470 13.697409 17.668609 -6487 1.000000 1.000000 100.000000 100.000000 -6488 0.095461 0.059673 12.281772 15.286845 -6489 0.088357 0.026669 7.906639 9.157130 -6490 0.096437 0.072995 9.952509 11.324733 -6491 0.046534 0.033073 7.706993 10.909122 -6492 1.000000 1.000000 100.000000 100.000000 -6493 0.048749 0.042238 9.462182 11.367064 -6494 1.000000 1.000000 100.000000 100.000000 -6495 1.000000 1.000000 100.000000 100.000000 -6496 0.093637 0.075137 12.762044 10.649655 -6497 0.060037 0.026531 9.889868 13.073639 -6498 0.084757 0.057118 12.726811 17.279968 -6499 0.070550 0.053162 9.019148 8.557027 -6500 0.061924 0.034838 10.520784 14.780798 -6501 0.041094 0.028411 7.244949 6.546323 -6502 0.076358 0.039464 8.912803 10.776144 -6503 0.070578 0.051057 7.537582 11.783818 -6504 0.066894 0.030952 10.293144 11.868265 -6505 0.090394 0.065382 10.291153 19.470580 -6506 0.093163 0.062790 12.511992 15.349384 -6507 1.000000 1.000000 100.000000 100.000000 -6508 0.062585 0.028006 5.811685 9.500645 -6509 0.066703 0.063859 8.609052 12.853119 -6510 0.059437 0.047587 7.770337 8.333941 -6511 0.096046 0.057534 9.471981 8.725372 -6512 0.094762 0.044611 11.288849 17.571305 -6513 0.075331 0.060909 20.023663 17.228415 -6514 0.074286 0.057901 9.091606 13.434377 -6515 0.083981 0.034849 9.483893 15.025883 -6516 0.070542 0.042211 8.562427 11.024641 -6517 1.000000 1.000000 100.000000 100.000000 -6518 0.093619 0.042834 6.858159 10.856586 -6519 0.047399 0.038950 8.393674 8.376852 -6520 0.073890 0.048427 11.202479 12.754030 -6521 0.065007 0.041845 11.087846 11.300723 -6522 0.084956 0.083972 11.632802 13.538240 -6523 0.064745 0.034647 12.419428 14.503074 -6524 0.083176 0.046815 11.802317 10.079057 -6525 0.091636 0.032630 15.814148 13.443388 -6526 0.089840 0.045893 10.466916 18.654971 -6527 1.000000 1.000000 100.000000 100.000000 -6528 0.086376 0.030976 9.357925 14.228280 -6529 0.074212 0.069062 10.168056 14.224675 -6530 0.090762 0.038870 14.964417 18.307519 -6531 0.049854 0.022793 8.537577 8.469038 -6532 0.061251 0.045695 8.467908 12.987246 -6533 0.084544 0.047185 10.485898 12.139172 -6534 1.000000 1.000000 100.000000 100.000000 -6535 0.045657 0.063771 11.138663 12.468097 -6536 0.067838 0.045844 12.550219 14.719254 -6537 0.049345 0.027801 6.630584 7.729880 -6538 1.000000 1.000000 100.000000 100.000000 -6539 0.064819 0.039539 6.950137 19.366412 -6540 0.073901 0.049445 8.604310 8.783368 -6541 0.066048 0.035430 12.179921 15.192213 -6542 0.097953 0.039826 17.630106 19.935031 -6543 0.046082 0.032479 5.904147 12.103188 -6544 0.065144 0.036300 7.231438 8.549894 -6545 0.036330 0.029763 7.026462 7.764233 -6546 1.000000 1.000000 100.000000 100.000000 -6547 0.067733 0.028445 7.842616 11.632019 -6548 0.089601 0.030976 10.030252 14.846689 -6549 1.000000 1.000000 100.000000 100.000000 -6550 0.069143 0.027678 6.714498 10.669299 -6551 0.091650 0.051590 6.128416 9.269461 -6552 0.061251 0.038234 9.699833 10.189801 -6553 0.077277 0.040375 9.490865 9.286857 -6554 0.068665 0.043994 5.962657 10.154295 -6555 0.089115 0.057041 7.321625 10.711882 -6556 0.074063 0.059574 10.364859 14.337227 -6557 0.080001 0.058993 10.270937 10.899319 -6558 0.067776 0.051020 14.508617 16.168384 -6559 0.081749 0.052311 12.582678 13.982767 -6560 0.069808 0.054717 9.230706 12.107669 -6561 0.075992 0.039696 9.579596 18.253675 -6562 0.041811 0.020669 10.478942 12.844692 -6563 0.099406 0.062484 10.562454 12.491320 -6564 0.047408 0.027346 10.307893 15.014653 -6565 0.054863 0.027654 12.141789 9.726519 -6566 1.000000 1.000000 100.000000 100.000000 -6567 0.046457 0.021278 9.534136 8.513929 -6568 0.054383 0.033889 11.294108 14.423663 -6569 0.080428 0.051260 8.757733 13.492070 -6570 0.073802 0.031948 6.505746 6.996647 -6571 0.079329 0.038276 10.257113 13.812853 -6572 0.070877 0.028769 9.904544 14.810457 -6573 0.074242 0.063639 11.330334 11.910606 -6574 0.075705 0.033006 6.818606 8.447422 -6575 1.000000 1.000000 100.000000 100.000000 -6576 0.047547 0.022701 10.187229 13.042559 -6577 0.037196 0.022473 8.308433 13.296708 -6578 1.000000 1.000000 100.000000 100.000000 -6579 0.065039 0.023951 8.968532 8.976759 -6580 0.077509 0.058801 11.893456 12.539460 -6581 0.081988 0.053535 12.575816 13.220304 -6582 0.094730 0.040981 9.915000 10.609151 -6583 0.036927 0.016358 7.653769 10.659067 -6584 0.052689 0.039707 9.007983 15.752981 -6585 0.063668 0.051084 7.394724 10.891488 -6586 0.093106 0.046615 11.822469 10.268099 -6587 1.000000 1.000000 100.000000 100.000000 -6588 1.000000 1.000000 100.000000 100.000000 -6589 0.050509 0.040471 10.868768 11.029466 -6590 0.059326 0.026720 14.209308 14.989601 -6591 0.064068 0.044282 13.900921 15.592954 -6592 0.048780 0.038943 11.687817 16.294343 -6593 0.074682 0.051837 11.870476 12.404722 -6594 0.057129 0.033529 7.043024 10.118427 -6595 0.089449 0.032236 8.301028 12.082429 -6596 0.078059 0.066744 9.185859 13.050200 -6597 0.064816 0.021756 8.607045 14.123903 -6598 0.053551 0.055527 10.681807 15.833422 -6599 0.051056 0.031789 10.092676 15.938962 -6600 0.069579 0.026790 10.000131 16.502962 -6601 0.039569 0.027079 5.672559 10.840666 -6602 0.055005 0.024228 5.284167 7.912446 -6603 1.000000 1.000000 100.000000 100.000000 -6604 0.075306 0.040466 8.337522 12.173512 -6605 0.088490 0.042672 12.571418 18.328229 -6606 0.056671 0.049165 11.537468 12.880175 -6607 1.000000 1.000000 100.000000 100.000000 -6608 0.079260 0.033142 9.115621 10.101885 -6609 0.064384 0.035775 10.187581 16.842466 -6610 0.094641 0.077076 9.506897 12.541496 -6611 0.074401 0.055992 13.612089 14.539475 -6612 0.076707 0.054614 6.903539 11.553969 -6613 1.000000 1.000000 100.000000 100.000000 -6614 0.046208 0.038557 16.016425 20.202711 -6615 0.063102 0.030323 8.467671 12.512707 -6616 0.072767 0.074456 8.424139 11.664006 -6617 0.099433 0.027434 8.961926 9.203551 -6618 0.056085 0.035562 9.684920 11.348555 -6619 0.050634 0.031444 8.232586 11.959578 -6620 0.082300 0.052255 10.577554 13.611727 -6621 1.000000 1.000000 100.000000 100.000000 -6622 0.097257 0.063847 13.724026 16.594685 -6623 0.058492 0.035028 10.780833 17.768663 -6624 0.091914 0.058969 13.757456 17.355889 -6625 1.000000 1.000000 100.000000 100.000000 -6626 0.074487 0.026808 9.827011 11.875291 -6627 1.000000 1.000000 100.000000 100.000000 -6628 1.000000 1.000000 100.000000 100.000000 -6629 0.067462 0.038622 10.222225 12.035008 -6630 0.047500 0.018724 9.981239 13.934370 -6631 0.056191 0.031836 8.858065 15.633947 -6632 1.000000 1.000000 100.000000 100.000000 -6633 1.000000 1.000000 100.000000 100.000000 -6634 0.066230 0.055870 9.042328 19.646917 -6635 0.057802 0.030235 6.009898 10.780215 -6636 1.000000 1.000000 100.000000 100.000000 -6637 0.083466 0.068369 12.415460 13.383665 -6638 0.075449 0.038925 10.956560 14.065840 -6639 0.057077 0.057394 11.633492 11.302226 -6640 0.083754 0.061820 7.814767 9.191709 -6641 1.000000 1.000000 100.000000 100.000000 -6642 1.000000 1.000000 100.000000 100.000000 -6643 0.095653 0.092783 10.977895 13.817621 -6644 0.078813 0.028963 8.060130 13.197804 -6645 0.069351 0.041420 12.316465 12.103347 -6646 0.079058 0.043544 9.949701 13.867785 -6647 0.045481 0.031183 9.768917 10.238007 -6648 0.066598 0.053117 11.787571 11.358829 -6649 0.053742 0.037670 11.547797 17.631584 -6650 0.042554 0.039733 10.178268 13.573843 -6651 1.000000 1.000000 100.000000 100.000000 -6652 0.070738 0.042595 12.077934 13.538360 -6653 0.074472 0.035403 12.317353 16.934310 -6654 0.060853 0.050380 7.452673 10.857961 -6655 0.077102 0.049173 8.286823 12.340751 -6656 0.079955 0.032370 7.839909 7.878574 -6657 0.061636 0.034558 9.949785 15.134153 -6658 0.049889 0.039865 9.592516 11.514669 -6659 0.076273 0.046676 8.135180 9.554435 -6660 0.040617 0.031697 9.428147 10.276547 -6661 0.063857 0.039470 7.908319 12.309414 -6662 0.070215 0.029847 8.031399 9.017165 -6663 0.051397 0.024593 9.554473 13.938027 -6664 0.056946 0.036699 6.635745 9.062913 -6665 0.087249 0.067688 10.667820 14.528807 -6666 0.080701 0.053838 10.762020 13.256086 -6667 0.078239 0.045727 10.476231 16.631294 -6668 1.000000 1.000000 100.000000 100.000000 -6669 0.052056 0.027996 8.260141 11.981515 -6670 0.083520 0.034884 9.459707 9.707597 -6671 0.084360 0.037793 10.275100 13.147983 -6672 0.059711 0.036540 9.731304 11.775667 -6673 1.000000 1.000000 100.000000 100.000000 -6674 0.068949 0.044296 13.911079 14.935090 -6675 0.078463 0.083007 18.959406 20.437533 -6676 0.089704 0.026630 8.945389 9.311104 -6677 0.028594 0.032935 11.260293 13.832901 -6678 0.041323 0.029229 9.406312 10.586788 -6679 1.000000 1.000000 100.000000 100.000000 -6680 0.053124 0.021141 9.480726 11.103259 -6681 0.079964 0.060248 8.636218 18.652263 -6682 0.052384 0.027671 9.072886 14.484653 -6683 0.083942 0.069638 9.800006 8.885398 -6684 1.000000 1.000000 100.000000 100.000000 -6685 0.083006 0.058596 12.298240 21.739183 -6686 0.045938 0.037494 7.440408 12.557142 -6687 1.000000 1.000000 100.000000 100.000000 -6688 0.044516 0.032002 10.546467 11.926283 -6689 0.060132 0.040598 11.862777 18.758261 -6690 1.000000 1.000000 100.000000 100.000000 -6691 0.073450 0.041494 9.729154 13.358151 -6692 0.075323 0.049449 9.233756 10.115977 -6693 1.000000 1.000000 100.000000 100.000000 -6694 0.060566 0.029423 10.067613 15.047661 -6695 0.058044 0.030610 9.579320 11.980073 -6696 0.096735 0.035200 13.874408 13.061646 -6697 0.058223 0.029399 11.828119 8.831535 -6698 0.065804 0.042168 10.079907 12.229448 -6699 0.093374 0.038279 9.906943 11.933963 -6700 0.089413 0.043532 15.769780 21.537800 -6701 0.086909 0.062479 9.687730 14.090083 -6702 0.061745 0.030591 8.844916 8.659901 -6703 0.066181 0.061222 8.321547 12.991695 -6704 0.040320 0.027445 7.721286 7.246537 -6705 0.051680 0.028402 10.206142 7.076865 -6706 0.071337 0.033209 6.756184 9.369200 -6707 0.073421 0.039680 9.122762 9.798044 -6708 1.000000 1.000000 100.000000 100.000000 -6709 0.071139 0.057606 10.651653 10.766625 -6710 0.062606 0.055571 5.940772 9.810664 -6711 1.000000 1.000000 100.000000 100.000000 -6712 0.088822 0.025006 5.389249 6.987844 -6713 0.054687 0.070073 11.316875 11.245920 -6714 0.090848 0.050405 8.899563 12.126267 -6715 0.086532 0.060090 14.791256 23.663376 -6716 0.092419 0.053475 7.544365 10.098369 -6717 0.090711 0.043966 8.962137 12.081635 -6718 0.098306 0.059801 10.213040 15.762226 -6719 0.085749 0.040911 6.178745 8.725487 -6720 0.048380 0.029982 6.012883 10.131260 -6721 0.067819 0.049103 15.076811 19.214293 -6722 0.059956 0.025497 13.579632 14.198802 -6723 0.068482 0.048559 10.794605 12.058130 -6724 0.060170 0.064356 15.311099 16.397877 -6725 0.070553 0.061301 11.327873 15.831728 -6726 0.068467 0.035275 9.596028 8.934724 -6727 0.056128 0.049238 9.330547 15.653675 -6728 0.077396 0.048648 9.423957 10.711238 -6729 0.053531 0.044386 10.009211 10.396189 -6730 0.097137 0.064036 9.956473 14.433748 -6731 0.047502 0.034584 17.208966 19.715301 -6732 0.066366 0.033631 10.429574 10.729277 -6733 0.097763 0.083312 6.979875 11.658724 -6734 1.000000 1.000000 100.000000 100.000000 -6735 0.043620 0.029783 7.791270 12.004082 -6736 0.053294 0.047277 6.795466 8.353389 -6737 1.000000 1.000000 100.000000 100.000000 -6738 0.057208 0.029255 8.491796 7.722202 -6739 1.000000 1.000000 100.000000 100.000000 -6740 1.000000 1.000000 100.000000 100.000000 -6741 0.059251 0.033159 11.782495 14.081510 -6742 0.067132 0.056728 11.197940 17.418957 -6743 0.081459 0.057587 9.908104 9.288616 -6744 0.081483 0.051077 4.923942 8.391057 -6745 0.045434 0.063939 14.540234 14.982078 -6746 1.000000 1.000000 100.000000 100.000000 -6747 0.082708 0.051145 8.066548 10.469418 -6748 0.058526 0.037782 7.680290 7.137103 -6749 1.000000 1.000000 100.000000 100.000000 -6750 1.000000 1.000000 100.000000 100.000000 -6751 0.070005 0.045535 13.447199 18.457074 -6752 0.073016 0.029365 9.347693 12.125713 -6753 1.000000 1.000000 100.000000 100.000000 -6754 0.088331 0.062596 8.794385 14.965607 -6755 0.054426 0.041267 9.267686 10.475290 -6756 0.080965 0.063583 8.763253 20.038975 -6757 0.088816 0.079939 7.823235 14.429749 -6758 0.062953 0.050308 16.977508 10.774190 -6759 0.045893 0.030741 7.813154 8.008911 -6760 0.077878 0.034494 6.638839 12.298243 -6761 0.058773 0.037393 6.911985 11.522531 -6762 0.075578 0.064412 9.542643 11.189257 -6763 0.049718 0.039316 8.163995 11.820493 -6764 0.036584 0.022893 12.387936 9.604602 -6765 0.094916 0.065180 7.035146 12.335127 -6766 1.000000 1.000000 100.000000 100.000000 -6767 1.000000 1.000000 100.000000 100.000000 -6768 0.071748 0.045053 5.600358 8.742721 -6769 0.087432 0.050252 14.857527 16.402210 -6770 1.000000 1.000000 100.000000 100.000000 -6771 0.070033 0.033632 6.524982 9.167202 -6772 0.077320 0.037991 12.493070 14.884319 -6773 0.095114 0.051128 13.655189 15.807307 -6774 0.057196 0.067244 14.097935 12.514914 -6775 0.057846 0.026665 9.760069 11.426629 -6776 0.064586 0.027381 10.187552 14.350323 -6777 0.067111 0.042853 20.063209 21.917048 -6778 0.038428 0.028535 8.307274 10.461644 -6779 0.077316 0.060179 11.685467 10.279470 -6780 0.075821 0.055092 10.261065 11.763647 -6781 0.095257 0.064115 13.743086 18.014611 -6782 0.075939 0.030203 12.315177 15.383815 -6783 1.000000 1.000000 100.000000 100.000000 -6784 1.000000 1.000000 100.000000 100.000000 -6785 0.091195 0.038092 10.841358 16.031382 -6786 0.048280 0.045996 10.646894 14.627416 -6787 1.000000 1.000000 100.000000 100.000000 -6788 0.084609 0.036540 7.655054 13.471323 -6789 1.000000 1.000000 100.000000 100.000000 -6790 0.062536 0.061815 9.741878 10.867656 -6791 0.095602 0.061701 14.767343 14.479839 -6792 1.000000 1.000000 100.000000 100.000000 -6793 0.055960 0.027026 14.812351 15.881532 -6794 1.000000 1.000000 100.000000 100.000000 -6795 0.092181 0.039831 16.894838 15.033006 -6796 0.073624 0.066186 14.287697 15.002759 -6797 1.000000 1.000000 100.000000 100.000000 -6798 0.089931 0.049378 10.039307 11.181452 -6799 0.065132 0.046115 7.320350 9.434077 -6800 0.090976 0.066150 9.450692 11.526915 -6801 0.043276 0.026071 8.199441 9.658500 -6802 0.097647 0.038879 11.879061 13.200719 -6803 0.062719 0.034854 9.044007 9.368273 -6804 0.076156 0.038912 9.749490 13.992035 -6805 0.066963 0.043992 10.577305 13.870090 -6806 1.000000 1.000000 100.000000 100.000000 -6807 1.000000 1.000000 100.000000 100.000000 -6808 0.092769 0.042291 8.066598 11.264952 -6809 0.059357 0.044241 5.955427 10.143374 -6810 0.065064 0.051844 9.790377 15.049614 -6811 0.088507 0.040924 8.691141 11.463121 -6812 0.094559 0.045434 8.604545 11.169512 -6813 1.000000 1.000000 100.000000 100.000000 -6814 0.064229 0.023894 6.947565 14.313184 -6815 0.041613 0.021096 8.307066 10.350458 -6816 0.058646 0.028388 10.199387 10.629013 -6817 0.052422 0.034986 15.951795 15.795306 -6818 0.086764 0.082392 11.482666 10.912447 -6819 0.066443 0.042080 11.875404 17.259745 -6820 0.083925 0.074001 13.308803 16.622172 -6821 0.055976 0.048810 13.974765 20.291982 -6822 1.000000 1.000000 100.000000 100.000000 -6823 0.095214 0.050224 12.802858 12.409104 -6824 0.074039 0.049450 10.922995 12.335736 -6825 0.065994 0.055018 9.639654 11.823233 -6826 1.000000 1.000000 100.000000 100.000000 -6827 0.055667 0.034838 12.867651 18.417532 -6828 0.062057 0.024664 7.716755 9.357222 -6829 0.058059 0.040155 9.566199 11.358594 -6830 0.072405 0.041250 7.487764 6.958500 -6831 0.073783 0.066190 12.471283 12.034050 -6832 0.065908 0.032046 8.617148 8.664522 -6833 0.070993 0.036749 6.333733 9.402542 -6834 0.083306 0.065843 7.907360 10.634309 -6835 0.059284 0.025292 6.606596 13.461751 -6836 0.055606 0.043657 9.832034 8.860547 -6837 0.043907 0.037434 8.921875 13.521298 -6838 1.000000 1.000000 100.000000 100.000000 -6839 1.000000 1.000000 100.000000 100.000000 -6840 0.091740 0.072222 6.802854 7.933711 -6841 0.075739 0.042558 7.774324 10.535430 -6842 0.062865 0.028528 12.639794 17.703943 -6843 0.087464 0.043459 7.574410 11.095183 -6844 0.077389 0.033337 7.979347 9.342264 -6845 0.049555 0.025045 9.466103 11.796875 -6846 1.000000 1.000000 100.000000 100.000000 -6847 0.075240 0.038994 9.955662 15.313226 -6848 0.076318 0.051973 15.113260 15.589259 -6849 0.062886 0.044293 14.256270 18.893640 -6850 0.065220 0.037830 7.726106 8.204287 -6851 0.062993 0.026937 7.748917 8.015651 -6852 0.089253 0.059303 16.282152 16.758700 -6853 0.079191 0.055633 9.906344 11.309860 -6854 0.053369 0.038901 10.161470 9.174360 -6855 1.000000 1.000000 100.000000 100.000000 -6856 0.095999 0.076442 10.059106 12.586167 -6857 0.097513 0.067657 13.699042 24.330777 -6858 0.076600 0.023487 6.325725 10.055989 -6859 0.044816 0.046730 9.083545 11.030799 -6860 0.056993 0.028924 8.723153 9.287366 -6861 0.051352 0.029370 6.062490 6.778720 -6862 0.055436 0.058024 8.254999 12.582790 -6863 0.060366 0.039249 11.350153 13.085071 -6864 0.055162 0.038904 4.624028 7.877010 -6865 1.000000 1.000000 100.000000 100.000000 -6866 0.057086 0.024994 5.968544 9.170090 -6867 0.045952 0.042789 6.856574 10.885001 -6868 1.000000 1.000000 100.000000 100.000000 -6869 0.058388 0.024207 13.027697 18.973694 -6870 0.070096 0.031369 11.838256 8.566197 -6871 0.080278 0.053188 13.931179 14.393838 -6872 0.066942 0.029293 11.091847 12.749369 -6873 0.060151 0.036441 10.160461 14.972181 -6874 0.054027 0.030155 8.340730 10.542070 -6875 0.088153 0.056525 8.571119 13.097712 -6876 1.000000 1.000000 100.000000 100.000000 -6877 1.000000 1.000000 100.000000 100.000000 -6878 0.069326 0.033569 12.236905 12.741568 -6879 0.082167 0.068799 9.365743 17.221699 -6880 0.052244 0.046732 12.705675 16.436447 -6881 0.066652 0.045398 15.505984 16.763030 -6882 1.000000 1.000000 100.000000 100.000000 -6883 1.000000 1.000000 100.000000 100.000000 -6884 0.098726 0.049532 8.621544 15.272436 -6885 0.077938 0.043542 8.275092 12.538385 -6886 0.096597 0.045784 9.028546 12.593834 -6887 1.000000 1.000000 100.000000 100.000000 -6888 0.088252 0.025260 8.859444 13.573076 -6889 0.062519 0.027127 10.396182 9.883812 -6890 0.089157 0.073086 7.601600 13.797694 -6891 0.057861 0.034974 7.359632 10.403433 -6892 0.044190 0.019620 7.185241 16.528735 -6893 0.099337 0.064339 11.102774 19.455530 -6894 0.092318 0.066981 6.214489 13.178802 -6895 0.055680 0.039897 7.825999 12.396691 -6896 0.063176 0.051455 15.263184 14.153817 -6897 0.080296 0.053825 8.388316 7.621326 -6898 1.000000 1.000000 100.000000 100.000000 -6899 0.053646 0.031637 7.263231 12.967062 -6900 0.069243 0.030931 12.905256 14.231853 -6901 1.000000 1.000000 100.000000 100.000000 -6902 0.079241 0.062001 11.764008 9.354893 -6903 1.000000 1.000000 100.000000 100.000000 -6904 1.000000 1.000000 100.000000 100.000000 -6905 1.000000 1.000000 100.000000 100.000000 -6906 0.072252 0.041878 8.602000 8.630037 -6907 0.063116 0.040808 7.775045 9.404641 -6908 0.042844 0.032211 8.233109 8.948026 -6909 1.000000 1.000000 100.000000 100.000000 -6910 1.000000 1.000000 100.000000 100.000000 -6911 0.039828 0.032219 9.244809 15.238857 -6912 1.000000 1.000000 100.000000 100.000000 -6913 0.045927 0.036448 7.875494 8.489515 -6914 0.061341 0.031341 8.835889 16.207250 -6915 0.055481 0.044792 8.437275 15.181355 -6916 0.078354 0.070557 6.821855 12.224047 -6917 0.078872 0.038130 11.392433 10.383749 -6918 0.063563 0.024158 8.260294 10.799338 -6919 0.082682 0.060897 10.358322 19.353947 -6920 0.084465 0.050448 7.870002 13.833217 -6921 0.063817 0.022547 17.058464 14.860786 -6922 0.073909 0.029004 5.683721 11.997743 -6923 0.055270 0.024478 10.708972 13.029665 -6924 0.066229 0.029576 6.002975 12.605001 -6925 0.068019 0.051167 8.048443 15.541135 -6926 0.075080 0.026072 6.847853 11.426021 -6927 0.063288 0.049893 6.418645 12.455673 -6928 0.037155 0.025761 10.808068 14.851892 -6929 0.046850 0.022002 9.480224 9.450970 -6930 1.000000 1.000000 100.000000 100.000000 -6931 0.059621 0.024150 7.359477 12.314677 -6932 0.058107 0.030237 7.010323 8.432705 -6933 0.058665 0.042376 12.331115 15.406964 -6934 0.062869 0.041562 7.187709 9.562462 -6935 0.074599 0.039592 15.151689 18.604484 -6936 0.083460 0.038137 11.653942 10.767540 -6937 0.084944 0.062500 14.536002 19.242750 -6938 1.000000 1.000000 100.000000 100.000000 -6939 0.076674 0.096061 11.667055 17.194023 -6940 0.080553 0.043273 7.813732 8.149182 -6941 0.076255 0.042492 16.888000 17.881588 -6942 0.089833 0.062970 17.140766 16.806220 -6943 0.071208 0.044603 13.769724 12.508145 -6944 0.050237 0.036705 9.278321 12.843315 -6945 0.074989 0.053158 10.041577 14.045122 -6946 1.000000 1.000000 100.000000 100.000000 -6947 0.070247 0.072910 11.063274 14.122669 -6948 0.048044 0.022560 8.339320 10.413362 -6949 0.052470 0.041420 10.234713 16.140305 -6950 0.093963 0.053929 8.597531 12.393528 -6951 0.070232 0.036558 11.418195 13.224286 -6952 0.067569 0.034301 11.319480 12.270884 -6953 1.000000 1.000000 100.000000 100.000000 -6954 0.059929 0.041132 9.053422 10.919092 -6955 0.062534 0.041814 8.274231 9.855178 -6956 0.068994 0.053822 8.991814 11.135301 -6957 0.090899 0.047072 7.413924 13.046078 -6958 0.072944 0.058156 8.668634 9.770688 -6959 0.044458 0.021820 6.600661 9.978567 -6960 0.082732 0.060307 15.980671 17.295889 -6961 1.000000 1.000000 100.000000 100.000000 -6962 0.055950 0.041037 5.963138 7.143832 -6963 0.072514 0.035121 6.173046 8.143695 -6964 0.082885 0.039109 11.936265 18.411667 -6965 0.064698 0.057202 10.937772 14.240290 -6966 0.063727 0.049706 7.850044 10.916255 -6967 0.086052 0.074522 7.836106 10.860772 -6968 0.086743 0.065741 8.134756 8.816537 -6969 0.084749 0.054322 8.864366 19.699438 -6970 0.088618 0.054404 7.547363 10.233673 -6971 0.077199 0.041260 9.983221 10.703952 -6972 1.000000 1.000000 100.000000 100.000000 -6973 0.060098 0.044659 11.866308 13.561525 -6974 0.053018 0.039326 8.467352 14.092174 -6975 0.065380 0.042886 11.877385 10.970640 -6976 0.068712 0.065448 5.540385 8.244232 -6977 0.063565 0.033224 8.441429 15.805312 -6978 0.054869 0.037353 8.078099 8.345643 -6979 0.082202 0.055171 11.652554 17.891831 -6980 0.097167 0.053582 6.346759 9.050241 -6981 1.000000 1.000000 100.000000 100.000000 -6982 0.073436 0.042792 11.250638 16.167137 -6983 1.000000 1.000000 100.000000 100.000000 -6984 0.061017 0.027910 8.242200 12.215627 -6985 0.074759 0.030365 13.830686 16.198937 -6986 0.082793 0.090614 12.867531 16.844056 -6987 0.073518 0.056475 7.339687 13.054777 -6988 0.069298 0.039114 9.042943 11.433007 -6989 0.071910 0.042936 11.367288 13.446023 -6990 0.078304 0.057298 8.618306 18.224780 -6991 0.091556 0.045032 9.363998 13.971063 -6992 1.000000 1.000000 100.000000 100.000000 -6993 0.082216 0.042248 9.961687 14.972472 -6994 0.048049 0.015743 9.543842 11.003979 -6995 0.079328 0.050575 10.400601 12.704833 -6996 0.075207 0.055743 9.110337 15.517882 -6997 0.083791 0.053695 7.928869 10.433685 -6998 0.052433 0.034469 10.621663 11.633339 -6999 0.041334 0.017594 7.091059 10.043907 -7000 0.083994 0.056586 7.218276 10.088793 -7001 0.081324 0.079708 16.377271 20.842818 -7002 0.049230 0.036923 8.171592 11.335261 -7003 0.072834 0.027532 11.656796 15.764789 -7004 0.079279 0.039822 10.785733 13.452564 -7005 0.041854 0.022681 11.784761 12.602525 -7006 1.000000 1.000000 100.000000 100.000000 -7007 0.096154 0.051406 8.821940 14.617102 -7008 0.070005 0.041172 6.091726 11.048827 -7009 0.090505 0.053167 13.122740 10.374628 -7010 0.070600 0.040326 6.274198 10.751328 -7011 0.037826 0.025775 6.674267 10.073103 -7012 0.073002 0.046067 11.993295 15.638978 -7013 0.046855 0.027624 7.217636 9.953337 -7014 0.066341 0.069947 8.129832 10.998766 -7015 0.089248 0.042463 8.838787 11.050530 -7016 0.080191 0.042231 9.903320 14.304452 -7017 1.000000 1.000000 100.000000 100.000000 -7018 1.000000 1.000000 100.000000 100.000000 -7019 1.000000 1.000000 100.000000 100.000000 -7020 0.051211 0.032350 10.147297 11.111873 -7021 0.044086 0.033974 8.703168 15.540410 -7022 0.076783 0.043305 7.936322 10.643348 -7023 0.045999 0.027061 10.843096 18.478334 -7024 0.086464 0.049270 7.497687 11.227719 -7025 1.000000 1.000000 100.000000 100.000000 -7026 0.076291 0.043599 10.850594 13.409679 -7027 0.053991 0.047907 6.870476 8.648222 -7028 0.068456 0.049093 8.829179 9.597087 -7029 0.091738 0.052542 9.011712 13.820643 -7030 0.051608 0.032048 6.832601 12.262096 -7031 1.000000 1.000000 100.000000 100.000000 -7032 1.000000 1.000000 100.000000 100.000000 -7033 0.093513 0.060719 11.904109 14.586005 -7034 0.059990 0.035218 10.243967 13.575638 -7035 0.071458 0.051789 11.941005 20.788433 -7036 1.000000 1.000000 100.000000 100.000000 -7037 0.059062 0.043565 12.664106 15.615812 -7038 0.079106 0.052165 11.040251 14.134737 -7039 0.051539 0.039574 7.532966 9.898634 -7040 0.096256 0.059404 12.893495 12.748726 -7041 0.066285 0.029220 8.011509 12.424507 -7042 0.052007 0.029808 7.895317 10.454814 -7043 0.090053 0.072628 17.245119 16.977999 -7044 0.069710 0.027360 13.718815 14.020551 -7045 1.000000 1.000000 100.000000 100.000000 -7046 0.070205 0.048842 9.473205 11.323828 -7047 0.052829 0.033373 6.666999 7.951023 -7048 0.093271 0.052558 10.532804 12.565050 -7049 0.056622 0.036975 11.177136 16.778507 -7050 0.062974 0.044508 10.086776 9.168528 -7051 1.000000 1.000000 100.000000 100.000000 -7052 0.091675 0.042792 11.145321 14.677145 -7053 1.000000 1.000000 100.000000 100.000000 -7054 0.055410 0.039674 8.378597 9.739401 -7055 0.079656 0.027613 7.736951 13.999855 -7056 0.047773 0.028070 7.478397 15.933646 -7057 1.000000 1.000000 100.000000 100.000000 -7058 0.087333 0.034574 10.775940 16.504944 -7059 0.061373 0.023359 12.250767 19.319356 -7060 0.058610 0.025281 10.748643 6.976705 -7061 0.055533 0.033348 8.077218 8.710609 -7062 1.000000 1.000000 100.000000 100.000000 -7063 0.092280 0.064692 10.698390 10.769018 -7064 0.053648 0.027011 7.660424 10.532679 -7065 0.071747 0.033956 12.547922 16.742458 -7066 0.084666 0.048003 10.069523 13.738036 -7067 0.076181 0.032362 7.627160 6.945632 -7068 0.044805 0.025849 12.358973 10.797135 -7069 0.048408 0.026001 8.631138 8.643706 -7070 0.091952 0.037426 8.536762 12.301452 -7071 1.000000 1.000000 100.000000 100.000000 -7072 0.099638 0.056885 6.398748 9.541217 -7073 0.057317 0.025133 9.324191 7.552652 -7074 1.000000 1.000000 100.000000 100.000000 -7075 0.055174 0.040658 7.821205 10.557035 -7076 0.072520 0.042322 8.645435 9.103852 -7077 0.073623 0.048616 15.990713 17.806289 -7078 0.066930 0.056431 12.669092 10.870087 -7079 0.074702 0.043911 11.300332 16.141369 -7080 0.076331 0.041755 6.798002 9.360266 -7081 0.081292 0.056346 11.183214 19.118845 -7082 0.046870 0.036684 8.603902 14.055127 -7083 0.090734 0.038331 10.844501 18.191024 -7084 1.000000 1.000000 100.000000 100.000000 -7085 0.047572 0.036124 8.145972 10.288532 -7086 1.000000 1.000000 100.000000 100.000000 -7087 0.084942 0.036250 7.197909 10.594072 -7088 0.060340 0.027775 9.684203 13.470488 -7089 0.045395 0.022851 10.311717 11.422092 -7090 0.073309 0.040197 16.381582 19.169301 -7091 0.079597 0.070695 8.321580 13.011974 -7092 0.070505 0.047661 16.137828 18.796776 -7093 0.037920 0.014793 6.954192 9.282340 -7094 0.047853 0.045206 9.579149 16.426951 -7095 1.000000 1.000000 100.000000 100.000000 -7096 0.098714 0.057529 7.374880 12.812856 -7097 1.000000 1.000000 100.000000 100.000000 -7098 1.000000 1.000000 100.000000 100.000000 -7099 0.047946 0.053057 13.405933 18.609349 -7100 0.077396 0.057295 11.060892 12.487615 -7101 0.099025 0.047812 9.574950 14.624628 -7102 0.061989 0.032571 7.659208 8.140246 -7103 0.069186 0.034722 11.020864 11.790855 -7104 0.045590 0.029271 6.174975 7.159427 -7105 0.048435 0.030743 8.970220 10.955172 -7106 0.094974 0.090346 10.405858 12.399503 -7107 0.071178 0.061376 11.548597 14.091647 -7108 0.068036 0.042906 17.017162 17.200950 -7109 0.080564 0.031417 7.833157 10.334136 -7110 1.000000 1.000000 100.000000 100.000000 -7111 0.059064 0.020632 9.362917 11.597446 -7112 0.051888 0.046914 10.400448 13.753645 -7113 0.067636 0.031829 7.286093 11.221833 -7114 1.000000 1.000000 100.000000 100.000000 -7115 0.044100 0.019049 8.260207 12.006427 -7116 0.071980 0.029971 5.331089 8.027325 -7117 0.090582 0.070345 10.469781 16.387351 -7118 0.079237 0.027582 8.438314 11.682631 -7119 0.059086 0.030326 9.567209 15.318000 -7120 0.075375 0.072847 8.921463 9.530822 -7121 0.087340 0.064184 9.340393 10.000090 -7122 0.076301 0.070240 8.150203 11.526027 -7123 0.064771 0.033882 6.061757 8.616698 -7124 0.088894 0.062106 7.705515 15.437723 -7125 1.000000 1.000000 100.000000 100.000000 -7126 0.075338 0.022971 7.673833 9.562301 -7127 0.065438 0.032260 10.295433 8.698440 -7128 1.000000 1.000000 100.000000 100.000000 -7129 0.085489 0.050682 14.315291 14.514092 -7130 0.037459 0.022655 5.314433 8.765046 -7131 0.059502 0.041629 11.862765 14.422690 -7132 0.069012 0.024161 6.569676 9.464845 -7133 0.089194 0.057626 12.028292 14.377096 -7134 0.068616 0.066877 13.107627 12.850974 -7135 0.087627 0.025639 12.194214 14.769243 -7136 0.070102 0.042757 11.081806 12.511610 -7137 0.064558 0.035712 9.899561 14.426192 -7138 0.079900 0.035873 16.022410 12.399635 -7139 0.085021 0.048789 15.025035 17.662115 -7140 0.079632 0.066820 12.395672 14.625952 -7141 0.063724 0.075928 10.259186 11.763145 -7142 1.000000 1.000000 100.000000 100.000000 -7143 0.049662 0.030517 10.741061 14.050725 -7144 0.067449 0.046121 11.448527 12.395232 -7145 0.072475 0.025162 12.325741 14.150772 -7146 0.090836 0.048424 10.926083 15.245254 -7147 0.073615 0.048186 8.635968 13.346482 -7148 0.055491 0.036556 6.503359 9.652841 -7149 0.063832 0.031777 9.657018 14.635297 -7150 0.064202 0.042411 9.262874 12.270336 -7151 1.000000 1.000000 100.000000 100.000000 -7152 0.059913 0.035951 11.688822 14.142822 -7153 1.000000 1.000000 100.000000 100.000000 -7154 1.000000 1.000000 100.000000 100.000000 -7155 0.042163 0.022383 10.809158 7.643747 -7156 0.068752 0.048108 6.525817 10.950976 -7157 0.080676 0.050472 8.887341 13.927182 -7158 1.000000 1.000000 100.000000 100.000000 -7159 0.070069 0.067727 10.156481 15.759609 -7160 0.076791 0.052054 15.582866 14.772687 -7161 0.074210 0.059201 10.456758 20.421540 -7162 0.049719 0.036464 8.087563 9.499973 -7163 0.098872 0.048398 8.901512 10.956911 -7164 0.065644 0.036574 5.989985 9.340963 -7165 0.061506 0.032540 6.856528 12.765272 -7166 0.073657 0.048560 6.348283 7.031487 -7167 1.000000 1.000000 100.000000 100.000000 -7168 0.085013 0.088333 12.374750 11.388475 -7169 1.000000 1.000000 100.000000 100.000000 -7170 1.000000 1.000000 100.000000 100.000000 -7171 0.078765 0.040755 12.192801 15.340659 -7172 0.048838 0.044768 14.107704 13.644026 -7173 0.085236 0.057277 10.568007 13.645859 -7174 0.068566 0.046209 10.097948 12.158856 -7175 1.000000 1.000000 100.000000 100.000000 -7176 0.094624 0.087146 9.397686 15.762028 -7177 0.045223 0.035233 7.745396 9.738795 -7178 0.046673 0.028439 8.769646 13.193207 -7179 0.049218 0.030534 11.636693 15.440653 -7180 0.079302 0.040694 9.345045 15.039520 -7181 0.094335 0.061966 8.437137 12.640303 -7182 0.056628 0.046542 8.051618 10.728206 -7183 0.069072 0.034909 9.982058 14.822973 -7184 0.039267 0.024341 8.176709 10.332298 -7185 1.000000 1.000000 100.000000 100.000000 -7186 0.062149 0.038669 8.681453 12.683458 -7187 0.078885 0.044720 9.234930 13.415720 -7188 0.054791 0.029864 6.674508 9.011374 -7189 0.065005 0.067409 10.801610 14.332433 -7190 0.083319 0.041785 9.817049 13.134463 -7191 0.072111 0.030079 13.614458 12.026733 -7192 0.070926 0.050283 12.108829 12.713711 -7193 0.050872 0.041726 8.698091 13.551466 -7194 0.067459 0.034028 6.437337 8.710868 -7195 0.049850 0.030312 10.641152 16.720287 -7196 0.067193 0.041248 9.419445 13.135517 -7197 0.079741 0.034913 11.699146 12.739776 -7198 0.096966 0.065410 11.649264 12.150624 -7199 1.000000 1.000000 100.000000 100.000000 -7200 0.095417 0.072258 8.570565 11.023807 -7201 1.000000 1.000000 100.000000 100.000000 -7202 0.055773 0.039556 5.399354 10.139762 -7203 0.066711 0.052804 10.478590 12.545495 -7204 0.046560 0.026728 9.683385 8.987813 -7205 0.065896 0.029925 9.393937 8.266328 -7206 0.057885 0.039952 7.867038 7.801471 -7207 0.082208 0.041531 6.538260 12.921424 -7208 0.068608 0.035577 7.418746 10.866934 -7209 0.041712 0.028904 8.456875 8.847501 -7210 0.063247 0.021371 12.573132 12.026004 -7211 0.057020 0.040503 7.375566 15.410011 -7212 0.050063 0.046857 6.994204 12.648388 -7213 0.066240 0.056831 9.860392 12.104963 -7214 0.052606 0.030757 9.561067 17.474918 -7215 0.092312 0.073488 10.815301 9.955755 -7216 0.074828 0.035886 8.136303 12.175923 -7217 0.049155 0.037708 7.638624 12.808153 -7218 0.054091 0.028103 12.849368 22.560001 -7219 1.000000 1.000000 100.000000 100.000000 -7220 0.061892 0.055036 8.255543 7.536048 -7221 0.083360 0.050103 10.859504 12.712998 -7222 0.058054 0.054485 16.647316 16.257737 -7223 0.064923 0.042234 9.611922 11.730386 -7224 0.062134 0.036013 6.977623 12.788793 -7225 0.090911 0.044392 8.061604 9.501000 -7226 0.077749 0.046745 11.676164 13.275000 -7227 0.063201 0.036017 12.127605 10.694864 -7228 0.095749 0.050428 13.013683 11.438282 -7229 0.092685 0.034306 8.858423 10.318533 -7230 0.072111 0.038342 11.129836 15.113939 -7231 1.000000 1.000000 100.000000 100.000000 -7232 1.000000 1.000000 100.000000 100.000000 -7233 0.087504 0.038636 10.452039 11.364783 -7234 0.050368 0.026647 8.148571 12.015964 -7235 0.098627 0.049434 6.497321 10.622493 -7236 0.056498 0.023783 9.758678 15.251079 -7237 0.081263 0.031113 6.588275 9.400039 -7238 0.044913 0.028547 7.826054 9.877202 -7239 0.069061 0.040394 16.387074 17.302438 -7240 0.093662 0.032651 10.550479 15.193858 -7241 0.090024 0.052249 8.996159 10.880585 -7242 0.046226 0.038415 9.331453 9.479358 -7243 0.074969 0.030815 10.109922 13.538527 -7244 1.000000 1.000000 100.000000 100.000000 -7245 0.069965 0.053871 13.032176 18.829678 -7246 0.053480 0.043748 11.199306 12.065057 -7247 0.058144 0.045308 7.715244 9.429237 -7248 0.054238 0.031546 11.205518 14.715238 -7249 0.088688 0.057337 6.135839 11.425860 -7250 0.065411 0.057038 8.264099 12.418882 -7251 0.065336 0.066364 11.932236 12.439019 -7252 1.000000 1.000000 100.000000 100.000000 -7253 0.089494 0.034860 12.634702 14.494874 -7254 0.048543 0.024340 7.349974 8.950539 -7255 0.054196 0.040482 9.279875 18.447810 -7256 0.064688 0.064501 9.139977 12.807123 -7257 1.000000 1.000000 100.000000 100.000000 -7258 0.095793 0.063548 9.438069 13.003548 -7259 0.065018 0.028404 8.933882 11.067862 -7260 0.062116 0.052700 8.847377 15.239180 -7261 0.091509 0.053580 8.724614 12.881445 -7262 0.095904 0.036701 14.536280 19.960531 -7263 0.069939 0.026717 8.574487 10.254864 -7264 0.075727 0.027025 8.428347 13.141948 -7265 0.069673 0.066897 8.400601 10.918284 -7266 0.049726 0.023363 7.270618 10.875707 -7267 0.073715 0.041021 8.188584 12.009247 -7268 0.080513 0.054657 14.192459 17.605739 -7269 1.000000 1.000000 100.000000 100.000000 -7270 0.070348 0.024494 8.045283 10.424447 -7271 0.069248 0.043827 17.948466 11.414634 -7272 0.046668 0.046143 7.494758 14.239850 -7273 0.060105 0.061194 12.000985 15.549029 -7274 0.060021 0.044761 7.676244 10.169731 -7275 1.000000 1.000000 100.000000 100.000000 -7276 0.059206 0.045343 12.875526 14.175193 -7277 1.000000 1.000000 100.000000 100.000000 -7278 0.054204 0.028705 10.429321 14.764415 -7279 1.000000 1.000000 100.000000 100.000000 -7280 0.071602 0.024855 7.213177 8.779198 -7281 0.069437 0.056508 13.951884 16.541727 -7282 0.077216 0.048245 9.025540 16.067405 -7283 0.064022 0.038080 9.566557 10.376015 -7284 0.052588 0.033177 9.238877 12.921077 -7285 1.000000 1.000000 100.000000 100.000000 -7286 0.070064 0.063341 8.723139 12.800560 -7287 0.073295 0.045614 9.701715 10.443975 -7288 0.047069 0.037319 9.376014 12.799159 -7289 0.076951 0.033637 8.343148 15.239824 -7290 0.057594 0.034510 7.355799 10.807332 -7291 0.069358 0.038863 9.892527 10.669933 -7292 0.056855 0.028271 10.279625 11.049849 -7293 0.030324 0.015676 7.932779 11.298998 -7294 0.094640 0.076030 11.619994 12.990192 -7295 1.000000 1.000000 100.000000 100.000000 -7296 0.091777 0.052330 11.287172 16.995254 -7297 1.000000 1.000000 100.000000 100.000000 -7298 1.000000 1.000000 100.000000 100.000000 -7299 1.000000 1.000000 100.000000 100.000000 -7300 0.068329 0.057254 13.884459 13.424981 -7301 0.077777 0.055653 6.741883 11.961862 -7302 0.092617 0.039825 8.585143 10.707993 -7303 0.067360 0.054661 10.331518 17.150289 -7304 0.087278 0.043206 9.389625 10.812158 -7305 0.068240 0.025404 11.661603 11.472862 -7306 0.077300 0.064186 9.741536 12.239857 -7307 1.000000 1.000000 100.000000 100.000000 -7308 0.056743 0.037729 10.791159 11.924201 -7309 1.000000 1.000000 100.000000 100.000000 -7310 0.068543 0.051880 9.485558 16.266610 -7311 1.000000 1.000000 100.000000 100.000000 -7312 0.081651 0.097665 12.899424 13.271590 -7313 0.075143 0.044134 8.318401 10.112929 -7314 0.060116 0.030279 12.049360 15.379166 -7315 0.065559 0.014810 8.327215 10.774354 -7316 0.074372 0.034228 9.850010 10.142204 -7317 0.067036 0.039525 13.926686 15.277768 -7318 1.000000 1.000000 100.000000 100.000000 -7319 0.042376 0.029311 7.150480 8.664364 -7320 1.000000 1.000000 100.000000 100.000000 -7321 1.000000 1.000000 100.000000 100.000000 -7322 1.000000 1.000000 100.000000 100.000000 -7323 0.036278 0.024406 8.987429 9.333908 -7324 0.057764 0.046422 5.626166 9.895777 -7325 0.070251 0.049209 8.388701 10.556571 -7326 0.069666 0.063721 9.837820 10.596883 -7327 0.079349 0.045983 8.032809 13.651297 -7328 0.074127 0.088214 16.887948 19.966883 -7329 1.000000 1.000000 100.000000 100.000000 -7330 0.098050 0.055923 9.970543 10.036058 -7331 0.058189 0.039654 11.983143 15.177080 -7332 0.093768 0.047590 10.676040 13.534834 -7333 0.073680 0.026491 9.136444 12.612036 -7334 0.054854 0.036321 13.120978 17.104661 -7335 0.086659 0.048005 8.897228 12.258687 -7336 0.075811 0.030652 8.264930 14.614406 -7337 1.000000 1.000000 100.000000 100.000000 -7338 1.000000 1.000000 100.000000 100.000000 -7339 1.000000 1.000000 100.000000 100.000000 -7340 0.069755 0.038310 9.170803 8.531324 -7341 0.072827 0.033405 11.315629 14.441947 -7342 0.058439 0.037282 6.782815 9.595321 -7343 0.084727 0.072315 13.928605 12.142667 -7344 0.078846 0.048432 6.596939 10.711255 -7345 1.000000 1.000000 100.000000 100.000000 -7346 1.000000 1.000000 100.000000 100.000000 -7347 0.084478 0.047630 18.659953 23.056194 -7348 0.062657 0.033801 13.647045 12.173288 -7349 0.068554 0.044493 8.594374 12.556529 -7350 1.000000 1.000000 100.000000 100.000000 -7351 0.091096 0.047940 8.594568 8.958363 -7352 0.080140 0.049836 9.620190 12.222200 -7353 0.079627 0.026832 8.584801 8.429819 -7354 0.045097 0.050254 9.783609 12.936091 -7355 0.076200 0.046917 10.626675 16.403337 -7356 0.080887 0.049114 12.297281 12.234988 -7357 0.067046 0.044585 8.225462 11.100854 -7358 0.040768 0.022357 13.194739 12.693296 -7359 0.056416 0.044433 7.972927 13.485327 -7360 0.056083 0.034462 9.471510 11.367789 -7361 0.077109 0.042079 10.946723 12.211870 -7362 0.064266 0.029749 9.006413 12.986854 -7363 0.082949 0.044772 12.805280 14.516640 -7364 1.000000 1.000000 100.000000 100.000000 -7365 0.065902 0.041517 11.807504 22.731500 -7366 0.084438 0.034350 10.755601 15.613638 -7367 0.089873 0.041032 7.865466 13.318989 -7368 0.083918 0.073198 10.691172 16.133265 -7369 0.072293 0.037009 9.917767 12.866583 -7370 0.075408 0.059237 10.426028 11.763666 -7371 0.065687 0.038086 8.356560 10.375955 -7372 0.060459 0.040556 10.641986 9.854512 -7373 0.088126 0.068913 11.921572 16.343315 -7374 0.039334 0.034584 11.906791 13.168712 -7375 0.089541 0.047843 12.444934 14.257264 -7376 0.071029 0.044715 9.752409 11.314485 -7377 0.072738 0.056661 10.158717 13.750584 -7378 0.069223 0.067138 8.202038 11.924119 -7379 0.089799 0.031566 12.360813 13.346414 -7380 0.057772 0.028698 8.413409 12.726475 -7381 0.079926 0.047641 7.365322 8.595134 -7382 0.091590 0.065244 10.736535 15.206805 -7383 0.076749 0.060178 12.891661 12.282379 -7384 0.050002 0.041552 10.252167 19.109066 -7385 0.069021 0.049068 10.363154 17.254526 -7386 0.067049 0.034480 6.774048 9.023540 -7387 1.000000 1.000000 100.000000 100.000000 -7388 0.052046 0.041302 14.528642 14.443964 -7389 0.062114 0.045198 13.960182 12.394944 -7390 0.077405 0.049932 10.607755 12.341778 -7391 0.065157 0.037182 7.505931 13.473303 -7392 0.096280 0.080702 11.134571 13.638437 -7393 0.076542 0.048217 7.252512 11.192685 -7394 0.073173 0.030801 7.987462 11.292411 -7395 0.081530 0.047509 8.915543 9.576317 -7396 0.069164 0.024176 7.284498 8.911669 -7397 0.087307 0.060474 7.352916 9.053195 -7398 0.058643 0.026893 8.671898 14.509585 -7399 1.000000 1.000000 100.000000 100.000000 -7400 0.052942 0.043646 8.907937 15.009287 -7401 0.093323 0.042181 7.664212 13.988631 -7402 1.000000 1.000000 100.000000 100.000000 -7403 0.044875 0.021011 6.082005 12.423842 -7404 0.077659 0.058882 8.069074 10.880777 -7405 1.000000 1.000000 100.000000 100.000000 -7406 1.000000 1.000000 100.000000 100.000000 -7407 0.070037 0.029721 7.860164 12.447993 -7408 0.088858 0.047946 9.412426 9.684787 -7409 0.065532 0.035168 11.636684 13.002327 -7410 0.049441 0.038133 8.585412 10.486639 -7411 0.067961 0.043125 7.198718 7.537278 -7412 0.048307 0.020996 7.480710 9.199382 -7413 0.054589 0.024280 8.935590 9.991426 -7414 0.072162 0.031875 7.686346 14.558706 -7415 0.052883 0.040100 8.498577 7.350892 -7416 1.000000 1.000000 100.000000 100.000000 -7417 1.000000 1.000000 100.000000 100.000000 -7418 0.086113 0.046203 11.170426 12.640998 -7419 0.089306 0.095740 8.502147 12.042046 -7420 0.071916 0.033748 8.299631 10.918609 -7421 0.054987 0.034644 6.586411 12.746369 -7422 0.067977 0.046567 8.029755 8.450386 -7423 0.075235 0.031138 8.738883 12.644586 -7424 0.052091 0.021497 5.550486 10.050984 -7425 0.065756 0.060498 11.759971 10.132993 -7426 0.046583 0.038638 6.813220 8.311194 -7427 0.069205 0.050467 18.036066 19.013467 -7428 0.039758 0.024939 6.140780 8.491733 -7429 0.054472 0.034638 13.712270 17.847088 -7430 0.064108 0.041493 7.488886 12.672244 -7431 0.068490 0.025423 7.296903 13.872077 -7432 0.078368 0.054863 11.857232 13.212934 -7433 0.070426 0.042740 7.135462 8.197418 -7434 0.092618 0.084627 9.975143 11.963828 -7435 0.093553 0.082586 13.965415 16.081218 -7436 0.069983 0.038980 8.276443 10.283972 -7437 1.000000 1.000000 100.000000 100.000000 -7438 0.080320 0.057635 13.253896 16.905235 -7439 0.067673 0.044217 13.022314 9.245430 -7440 0.082823 0.051999 11.126713 14.111691 -7441 0.056580 0.027067 9.241373 10.273374 -7442 0.062357 0.035705 6.764717 8.155744 -7443 0.041057 0.040811 7.354204 11.027390 -7444 0.091056 0.066095 11.079315 9.333798 -7445 1.000000 1.000000 100.000000 100.000000 -7446 1.000000 1.000000 100.000000 100.000000 -7447 0.059770 0.037711 10.686811 16.182157 -7448 0.053986 0.028992 8.533709 7.509087 -7449 0.038510 0.026939 9.963071 11.707152 -7450 0.057889 0.060284 9.467716 14.902742 -7451 0.055873 0.022851 10.341811 16.143987 -7452 0.083731 0.044602 8.510445 10.866791 -7453 0.042605 0.035339 6.499248 6.656931 -7454 0.044495 0.021668 10.525770 16.359486 -7455 0.052999 0.031277 7.530776 12.354853 -7456 0.082774 0.088070 9.293336 11.104682 -7457 0.096998 0.052219 8.997672 10.391939 -7458 0.055270 0.031221 7.891592 11.037647 -7459 0.045394 0.019216 6.527106 11.024874 -7460 0.041371 0.027536 8.625873 11.585840 -7461 1.000000 1.000000 100.000000 100.000000 -7462 1.000000 1.000000 100.000000 100.000000 -7463 0.084847 0.042632 15.419517 16.260683 -7464 0.074774 0.050001 9.738669 13.413516 -7465 0.087287 0.055132 14.317147 13.048493 -7466 0.062697 0.025125 8.447064 9.174286 -7467 0.082015 0.048718 10.707868 13.672577 -7468 0.085222 0.064038 7.698196 14.457544 -7469 1.000000 1.000000 100.000000 100.000000 -7470 0.069486 0.027154 8.024923 9.921315 -7471 0.072737 0.053180 9.447090 12.016360 -7472 0.074488 0.051678 9.289027 10.891253 -7473 1.000000 1.000000 100.000000 100.000000 -7474 0.063016 0.047225 7.310076 7.901320 -7475 0.040031 0.023277 9.628161 9.050520 -7476 1.000000 1.000000 100.000000 100.000000 -7477 0.084501 0.057813 11.817562 16.808346 -7478 0.034760 0.026102 7.562097 6.067361 -7479 0.069891 0.054526 10.868769 12.992035 -7480 1.000000 1.000000 100.000000 100.000000 -7481 0.071655 0.069310 15.259268 17.182523 -7482 0.050142 0.023781 7.802920 15.586509 -7483 0.063509 0.042699 9.912269 10.034666 -7484 0.097353 0.040449 13.211958 18.512638 -7485 0.061485 0.040068 8.937792 11.364764 -7486 0.091178 0.059889 6.741390 8.675796 -7487 0.062728 0.044168 6.447226 8.957394 -7488 1.000000 1.000000 100.000000 100.000000 -7489 0.089108 0.046946 8.797165 11.741152 -7490 0.044294 0.021029 6.602810 10.731904 -7491 0.078904 0.047579 8.380607 13.567185 -7492 0.075912 0.077442 9.879582 13.402724 -7493 0.060451 0.028445 8.319976 11.642556 -7494 0.098928 0.072106 8.409447 13.573751 -7495 0.078813 0.048076 9.486982 13.441578 -7496 0.058692 0.032791 10.529856 14.178061 -7497 1.000000 1.000000 100.000000 100.000000 -7498 0.064384 0.022430 6.377830 10.687203 -7499 0.061675 0.037923 8.699726 12.646138 -7500 1.000000 1.000000 100.000000 100.000000 -7501 0.090718 0.036408 12.671071 17.024103 -7502 1.000000 1.000000 100.000000 100.000000 -7503 0.077397 0.044107 6.510698 13.943472 -7504 0.073088 0.034017 11.872108 15.882690 -7505 0.087774 0.060712 8.451491 16.722822 -7506 0.060483 0.090780 13.635673 21.858057 -7507 0.085759 0.051268 11.983004 13.195361 -7508 1.000000 1.000000 100.000000 100.000000 -7509 0.085221 0.043500 10.247027 12.117849 -7510 1.000000 1.000000 100.000000 100.000000 -7511 0.077771 0.061205 12.339457 13.794594 -7512 0.083719 0.043051 6.516044 10.131465 -7513 1.000000 1.000000 100.000000 100.000000 -7514 0.057557 0.029569 11.800686 15.675240 -7515 0.062430 0.028291 7.384216 12.527362 -7516 0.098807 0.063300 8.491159 15.769209 -7517 0.088466 0.045245 9.126145 12.438743 -7518 0.067840 0.053931 11.414888 12.357184 -7519 0.065026 0.041152 5.285301 9.840051 -7520 0.065117 0.038271 10.796581 17.565777 -7521 0.087433 0.031619 7.862893 12.093504 -7522 0.085785 0.047524 6.454228 9.984198 -7523 0.067025 0.060237 12.280790 12.625452 -7524 0.074357 0.072886 15.807603 14.470537 -7525 0.071216 0.047924 7.539495 9.435644 -7526 0.055605 0.025553 8.470000 15.597556 -7527 0.056308 0.019002 12.649385 21.795141 -7528 0.061277 0.049531 10.221775 10.846353 -7529 1.000000 1.000000 100.000000 100.000000 -7530 0.060174 0.038256 8.605365 16.021496 -7531 0.068501 0.040750 10.982373 11.962400 -7532 0.035330 0.024029 8.612381 8.762967 -7533 0.076995 0.052536 9.318499 11.559303 -7534 1.000000 1.000000 100.000000 100.000000 -7535 0.058508 0.056025 12.166147 14.145068 -7536 0.098458 0.049510 10.928044 23.584478 -7537 1.000000 1.000000 100.000000 100.000000 -7538 0.035084 0.021491 14.291565 16.048800 -7539 0.049491 0.031016 7.052400 10.778922 -7540 0.095600 0.056170 10.347719 11.229841 -7541 0.072499 0.033994 9.051319 12.092238 -7542 0.097592 0.056054 8.825802 13.520483 -7543 0.063426 0.032540 9.382005 11.409969 -7544 0.093218 0.097703 14.417966 11.789847 -7545 0.082806 0.044797 12.014732 15.955251 -7546 0.057160 0.035546 8.825461 10.812260 -7547 0.094813 0.045777 12.436114 20.081150 -7548 0.071897 0.043015 10.078344 10.024254 -7549 0.076151 0.049651 8.330458 13.556242 -7550 0.057860 0.034084 7.235498 9.493111 -7551 0.077446 0.036335 8.854884 11.906812 -7552 0.090266 0.091642 12.870096 12.851126 -7553 0.061726 0.029488 7.808598 15.949014 -7554 0.061725 0.041166 8.183717 10.737426 -7555 0.076772 0.031739 7.918114 11.048878 -7556 0.082940 0.031924 8.263423 8.741696 -7557 0.062868 0.044420 8.664074 13.078009 -7558 0.062000 0.035689 7.394339 13.052609 -7559 0.072653 0.045977 10.093717 16.361108 -7560 0.091404 0.084824 8.583462 12.431815 -7561 0.049592 0.022618 9.922237 7.786516 -7562 0.066293 0.073693 10.405882 16.294935 -7563 0.089592 0.097854 11.875043 12.900818 -7564 0.063879 0.058533 11.748523 10.754390 -7565 0.086070 0.058900 11.101297 19.731090 -7566 1.000000 1.000000 100.000000 100.000000 -7567 0.062708 0.030362 11.450235 14.713926 -7568 0.064812 0.059545 10.049286 11.403955 -7569 1.000000 1.000000 100.000000 100.000000 -7570 0.067484 0.037362 13.582530 14.542296 -7571 0.057162 0.032708 9.434262 9.618290 -7572 0.088121 0.054187 11.001083 13.435704 -7573 0.072759 0.040163 9.358532 10.077905 -7574 0.068811 0.042737 7.028390 10.472474 -7575 0.083621 0.036500 8.020068 7.493224 -7576 0.056610 0.032360 9.359927 9.064027 -7577 0.064217 0.040867 13.341707 12.587199 -7578 0.066563 0.030914 8.891210 11.211606 -7579 0.059278 0.042085 6.743132 7.956771 -7580 1.000000 1.000000 100.000000 100.000000 -7581 0.054677 0.027015 10.097066 9.183674 -7582 0.075540 0.045938 9.225570 11.260695 -7583 0.089918 0.052940 10.271796 11.855639 -7584 1.000000 1.000000 100.000000 100.000000 -7585 0.060334 0.043886 9.246585 16.929403 -7586 0.099673 0.074276 12.331762 16.710576 -7587 0.070687 0.062225 10.712628 14.499840 -7588 1.000000 1.000000 100.000000 100.000000 -7589 1.000000 1.000000 100.000000 100.000000 -7590 0.091205 0.048231 8.192280 14.036327 -7591 0.091800 0.070744 10.291405 13.603063 -7592 0.069493 0.042080 8.724090 10.529344 -7593 0.060677 0.031411 11.623761 19.074647 -7594 0.057498 0.051168 9.454345 10.678828 -7595 1.000000 1.000000 100.000000 100.000000 -7596 1.000000 1.000000 100.000000 100.000000 -7597 0.098302 0.035860 9.010171 12.059353 -7598 0.079113 0.044506 6.775845 7.677604 -7599 1.000000 1.000000 100.000000 100.000000 -7600 0.079088 0.048795 9.310523 11.521360 -7601 0.069010 0.042508 14.698604 14.713410 -7602 0.047937 0.043611 15.401272 16.291932 -7603 0.045848 0.015740 7.608223 12.006302 -7604 0.077543 0.038709 8.252460 10.698416 -7605 0.077552 0.035166 9.083639 9.076731 -7606 0.098546 0.054789 9.077595 15.554418 -7607 0.063194 0.036090 14.937838 14.659551 -7608 0.081446 0.040726 9.492670 8.721349 -7609 0.047064 0.049940 8.725409 14.655515 -7610 0.058607 0.030720 6.580747 9.001780 -7611 0.083992 0.062339 16.691248 19.653639 -7612 0.074579 0.054942 10.288534 13.224297 -7613 0.052706 0.054141 9.830102 14.798692 -7614 1.000000 1.000000 100.000000 100.000000 -7615 0.072688 0.086173 6.969977 13.456861 -7616 0.038601 0.030632 6.424681 12.019133 -7617 0.038684 0.037834 7.555370 8.577385 -7618 0.097588 0.048683 16.545581 15.945670 -7619 0.048054 0.025444 13.095009 22.080831 -7620 0.061638 0.043939 7.735339 8.344159 -7621 1.000000 1.000000 100.000000 100.000000 -7622 1.000000 1.000000 100.000000 100.000000 -7623 0.077427 0.057819 8.141218 14.417435 -7624 0.093498 0.060048 9.280474 11.724008 -7625 0.061153 0.051218 12.629046 18.711888 -7626 0.065931 0.053147 11.003886 16.069074 -7627 0.084134 0.049896 9.927505 11.824108 -7628 0.046188 0.051020 11.279577 12.861161 -7629 0.075437 0.033909 8.203561 15.246279 -7630 1.000000 1.000000 100.000000 100.000000 -7631 0.085250 0.056232 12.302122 14.553012 -7632 0.048116 0.047126 9.025790 14.175887 -7633 0.065122 0.034137 8.086788 11.661760 -7634 0.094821 0.055387 7.629337 9.518308 -7635 0.057317 0.028430 12.434674 11.418842 -7636 0.081912 0.078707 15.265909 17.481674 -7637 0.054456 0.040270 8.813019 10.896203 -7638 0.077342 0.044381 8.879365 15.291356 -7639 0.071225 0.089084 8.178404 11.672814 -7640 0.044866 0.038755 10.127617 15.659493 -7641 0.084221 0.051242 13.247258 19.238466 -7642 0.090001 0.055771 17.297064 14.173833 -7643 1.000000 1.000000 100.000000 100.000000 -7644 0.064821 0.032287 9.301429 14.646249 -7645 0.087730 0.051713 8.770921 13.470905 -7646 0.074254 0.041562 10.384335 11.841906 -7647 0.068266 0.052854 9.996591 15.085094 -7648 0.096300 0.066105 10.327754 12.944173 -7649 0.071126 0.022365 8.668443 9.529918 -7650 1.000000 1.000000 100.000000 100.000000 -7651 0.066003 0.063787 8.775977 11.336585 -7652 0.083298 0.060026 10.643513 15.741542 -7653 0.072998 0.035181 9.893890 18.611180 -7654 0.090353 0.038644 10.724227 13.275431 -7655 0.068583 0.055288 11.055054 10.533225 -7656 1.000000 1.000000 100.000000 100.000000 -7657 0.056951 0.039710 9.045379 11.830712 -7658 0.074259 0.050815 6.842014 12.847548 -7659 0.061869 0.033755 13.948245 14.611644 -7660 0.092953 0.046611 11.426148 14.656106 -7661 0.064799 0.043593 6.492348 9.540359 -7662 0.066260 0.047467 11.485212 16.511117 -7663 0.048897 0.035221 14.773808 12.640941 -7664 0.054207 0.037800 10.482904 11.231770 -7665 0.041420 0.038269 11.867927 10.724150 -7666 1.000000 1.000000 100.000000 100.000000 -7667 0.087903 0.034935 11.496093 10.743268 -7668 0.074048 0.041817 11.620785 14.778308 -7669 0.094379 0.047913 8.990964 9.349113 -7670 0.063411 0.035812 12.406716 12.656565 -7671 1.000000 1.000000 100.000000 100.000000 -7672 0.084652 0.046493 12.030916 12.372885 -7673 0.092426 0.065794 9.952314 13.590128 -7674 0.071653 0.042878 10.171823 14.279635 -7675 0.079324 0.049389 11.868371 11.619675 -7676 0.075931 0.060430 10.994888 10.036420 -7677 0.091143 0.054758 10.063933 14.654699 -7678 0.094064 0.028469 10.623694 9.917221 -7679 0.084466 0.062134 9.950153 16.806107 -7680 0.098966 0.050630 8.809589 10.573349 -7681 0.073610 0.040920 10.497584 12.026692 -7682 0.057838 0.046351 6.075629 8.818201 -7683 1.000000 1.000000 100.000000 100.000000 -7684 1.000000 1.000000 100.000000 100.000000 -7685 0.081850 0.032979 9.641110 11.742408 -7686 0.077050 0.044675 8.503073 12.522263 -7687 1.000000 1.000000 100.000000 100.000000 -7688 0.071663 0.058182 7.040837 8.704694 -7689 0.053635 0.034683 13.532558 16.576993 -7690 0.053118 0.027664 8.772836 13.282543 -7691 0.063261 0.056041 13.126584 16.255218 -7692 0.051661 0.040664 11.331301 10.693917 -7693 0.086371 0.058789 14.250706 21.659061 -7694 0.048398 0.027263 13.233369 13.017631 -7695 0.072459 0.040569 15.269344 9.162246 -7696 0.056132 0.035161 7.777476 8.740004 -7697 0.071355 0.054765 6.142620 11.789491 -7698 0.056325 0.031563 8.987664 10.279857 -7699 0.053092 0.036259 6.182714 9.544098 -7700 0.078494 0.043381 10.378631 12.954130 -7701 0.056543 0.020634 8.699701 14.930520 -7702 0.053514 0.046202 13.195200 10.391099 -7703 0.055627 0.045412 12.618712 10.084292 -7704 1.000000 1.000000 100.000000 100.000000 -7705 0.038609 0.027976 11.416075 15.091844 -7706 1.000000 1.000000 100.000000 100.000000 -7707 1.000000 1.000000 100.000000 100.000000 -7708 0.037606 0.022442 9.004134 9.176325 -7709 0.067067 0.039660 12.051856 9.782807 -7710 0.060483 0.061176 7.450178 8.716760 -7711 1.000000 1.000000 100.000000 100.000000 -7712 0.071367 0.047914 9.580419 14.653229 -7713 0.076123 0.036642 17.445422 15.308975 -7714 0.067865 0.029806 12.634290 15.888046 -7715 0.063281 0.045446 9.695383 6.380451 -7716 0.079898 0.053154 11.095001 10.604039 -7717 1.000000 1.000000 100.000000 100.000000 -7718 0.075043 0.052295 12.541877 11.989021 -7719 1.000000 1.000000 100.000000 100.000000 -7720 0.087465 0.060178 7.071919 9.903599 -7721 0.063645 0.027927 7.330796 8.564302 -7722 0.088939 0.072745 11.395652 12.627594 -7723 0.050776 0.019505 4.947248 9.435447 -7724 0.051032 0.039096 10.577107 9.500715 -7725 0.055595 0.053025 9.970471 10.523404 -7726 0.090313 0.034988 6.352967 9.938985 -7727 0.048355 0.025827 12.052310 11.905440 -7728 0.094015 0.041916 13.007310 13.547295 -7729 0.070406 0.081371 10.142136 11.509647 -7730 0.076949 0.043778 11.380921 12.791212 -7731 0.097228 0.075707 9.070824 12.106041 -7732 0.077216 0.050755 10.729494 13.369767 -7733 0.077960 0.070025 9.140486 14.004864 -7734 0.071196 0.055310 10.038869 15.058481 -7735 0.075643 0.042620 9.342772 10.547154 -7736 0.067500 0.037997 12.382914 13.288228 -7737 0.096067 0.050209 12.591249 13.148305 -7738 0.087775 0.082104 9.656847 13.679577 -7739 0.080110 0.054910 5.285006 9.313737 -7740 0.051102 0.032281 7.241315 13.646177 -7741 0.091830 0.070616 9.853952 14.390442 -7742 0.067806 0.061074 13.421188 10.270280 -7743 0.064164 0.044037 7.815991 14.485308 -7744 1.000000 1.000000 100.000000 100.000000 -7745 0.079376 0.038010 11.419852 11.647181 -7746 0.054440 0.022250 7.322560 14.312394 -7747 0.073953 0.037476 9.224564 9.900671 -7748 0.070560 0.030680 9.329833 11.274181 -7749 0.068610 0.052977 9.893535 11.145680 -7750 1.000000 1.000000 100.000000 100.000000 -7751 0.081144 0.035536 9.897636 8.162366 -7752 0.046741 0.042959 8.817780 10.644695 -7753 0.072155 0.052188 9.184956 11.836195 -7754 0.084941 0.047938 9.595806 11.775556 -7755 0.041664 0.020290 12.032534 11.658004 -7756 0.046100 0.024893 8.115221 9.964984 -7757 0.065289 0.058993 15.300501 10.789123 -7758 0.078520 0.027749 9.793591 10.852507 -7759 0.037993 0.036259 14.247678 12.924890 -7760 0.056757 0.056538 10.971900 21.689061 -7761 0.075815 0.059793 13.114811 13.919165 -7762 0.092965 0.067284 10.383057 16.401196 -7763 0.057722 0.036378 8.433016 9.937645 -7764 0.073621 0.031656 15.749164 13.747285 -7765 0.035943 0.022757 5.897633 6.648655 -7766 0.044313 0.033334 8.748311 12.281313 -7767 0.062842 0.040234 10.054717 12.758476 -7768 1.000000 1.000000 100.000000 100.000000 -7769 0.039787 0.037521 7.538074 13.452228 -7770 1.000000 1.000000 100.000000 100.000000 -7771 1.000000 1.000000 100.000000 100.000000 -7772 0.064793 0.033880 10.954812 9.783607 -7773 0.085548 0.036098 7.132598 11.877072 -7774 0.052419 0.027130 7.650837 10.729490 -7775 1.000000 1.000000 100.000000 100.000000 -7776 0.076290 0.058314 8.901075 14.109398 -7777 0.081106 0.066036 6.848302 11.790563 -7778 1.000000 1.000000 100.000000 100.000000 -7779 0.078324 0.059991 8.572963 10.513891 -7780 0.066288 0.052765 6.911758 10.889789 -7781 1.000000 1.000000 100.000000 100.000000 -7782 0.077674 0.053305 10.071016 9.920242 -7783 0.084658 0.041515 11.410467 13.413234 -7784 0.075244 0.063883 11.344449 10.116761 -7785 0.064395 0.051287 9.877858 10.100386 -7786 1.000000 1.000000 100.000000 100.000000 -7787 0.059667 0.033462 7.948432 7.976183 -7788 1.000000 1.000000 100.000000 100.000000 -7789 0.074531 0.033549 11.244137 7.419892 -7790 1.000000 1.000000 100.000000 100.000000 -7791 0.082611 0.039087 13.924882 13.896490 -7792 0.059727 0.046175 7.748088 13.067585 -7793 0.092267 0.042136 6.916327 10.882264 -7794 0.091030 0.042197 11.637173 17.314506 -7795 0.070942 0.041009 9.045379 17.500157 -7796 0.073841 0.044788 8.435134 12.066442 -7797 0.051667 0.029214 9.626334 11.585826 -7798 0.089748 0.038977 7.727957 7.652753 -7799 0.077913 0.061141 8.999859 13.538504 -7800 0.093337 0.049285 14.578101 17.080839 -7801 0.084717 0.049505 8.929756 12.794254 -7802 1.000000 1.000000 100.000000 100.000000 -7803 0.054543 0.021539 8.621152 9.994220 -7804 0.054561 0.038464 7.672555 8.336606 -7805 0.054018 0.041261 10.925947 8.566712 -7806 0.077197 0.042098 12.173791 15.548236 -7807 0.078929 0.043068 5.903288 13.009025 -7808 0.056461 0.022705 11.769004 14.542977 -7809 0.069025 0.072506 5.624874 14.886626 -7810 0.085956 0.056073 10.354898 13.073611 -7811 0.071650 0.031494 10.106081 9.541491 -7812 1.000000 1.000000 100.000000 100.000000 -7813 0.048629 0.033717 19.722139 13.854498 -7814 0.060466 0.042579 10.531845 10.519533 -7815 0.076579 0.060321 9.629505 12.076897 -7816 0.089417 0.044732 6.801660 8.555640 -7817 0.066019 0.055801 9.648143 11.842963 -7818 0.089233 0.083813 8.877708 13.692367 -7819 0.059502 0.039756 13.478959 12.789121 -7820 1.000000 1.000000 100.000000 100.000000 -7821 0.053897 0.030782 9.624765 16.431855 -7822 0.071968 0.045563 12.613771 12.483904 -7823 0.088421 0.044480 12.663515 20.116813 -7824 0.073862 0.047669 9.136636 9.263563 -7825 0.094949 0.046437 7.480394 12.403717 -7826 0.064648 0.030492 9.538720 13.760290 -7827 0.074276 0.018308 10.421110 10.279925 -7828 0.095260 0.052754 11.968236 16.064817 -7829 1.000000 1.000000 100.000000 100.000000 -7830 0.039984 0.038190 7.573369 12.077173 -7831 0.074298 0.052551 9.672850 9.252692 -7832 0.096980 0.064258 12.993812 19.777377 -7833 0.083800 0.073596 13.163025 14.529925 -7834 0.043407 0.018033 9.584062 10.230178 -7835 0.039125 0.029140 9.986879 14.437465 -7836 0.060849 0.014070 8.598889 11.401097 -7837 0.062376 0.030969 15.788581 12.450995 -7838 0.067260 0.060866 9.960119 12.230382 -7839 0.094770 0.041425 8.982692 14.050368 -7840 0.064066 0.036488 7.046363 7.669315 -7841 0.055451 0.034433 9.791693 12.220029 -7842 0.042240 0.023724 9.825754 13.548577 -7843 1.000000 1.000000 100.000000 100.000000 -7844 0.095164 0.072957 13.233305 14.294720 -7845 0.069228 0.057243 12.093046 16.320154 -7846 0.071460 0.043498 8.524642 12.304418 -7847 0.064357 0.034988 8.742993 11.826149 -7848 0.060006 0.022569 7.917884 12.642185 -7849 0.088275 0.035189 8.470510 7.817661 -7850 0.049708 0.037798 9.767646 23.069185 -7851 0.066108 0.037901 12.353341 12.451354 -7852 1.000000 1.000000 100.000000 100.000000 -7853 0.074946 0.053367 11.374714 14.589380 -7854 0.062442 0.039635 6.082540 9.969139 -7855 0.054808 0.050901 7.590650 8.480977 -7856 0.062671 0.024173 10.184485 13.319124 -7857 0.080264 0.028949 10.481357 14.654824 -7858 0.059550 0.033018 12.831716 9.973055 -7859 1.000000 1.000000 100.000000 100.000000 -7860 1.000000 1.000000 100.000000 100.000000 -7861 0.060769 0.034830 9.443179 8.233701 -7862 0.055893 0.035700 7.680270 12.369857 -7863 0.083591 0.060588 9.216440 15.736004 -7864 0.073308 0.048377 10.808246 16.451006 -7865 0.046825 0.022568 8.793567 15.056688 -7866 0.085973 0.056745 10.067419 10.341328 -7867 1.000000 1.000000 100.000000 100.000000 -7868 0.067431 0.027794 9.043564 10.549810 -7869 0.065207 0.033204 8.346805 13.234315 -7870 0.089813 0.059118 11.241808 14.482342 -7871 1.000000 1.000000 100.000000 100.000000 -7872 0.072302 0.057553 12.271784 19.959941 -7873 0.076909 0.049824 9.169096 13.472174 -7874 0.069323 0.064142 7.741761 12.639431 -7875 0.060888 0.033364 8.561967 11.279333 -7876 0.074019 0.034786 8.772739 17.138088 -7877 1.000000 1.000000 100.000000 100.000000 -7878 0.063430 0.019904 14.856648 11.125283 -7879 0.063697 0.046812 6.705440 6.889994 -7880 0.062157 0.023016 11.591654 12.905053 -7881 1.000000 1.000000 100.000000 100.000000 -7882 0.049268 0.023795 6.954255 8.711577 -7883 0.098478 0.071966 9.942938 13.512080 -7884 0.052881 0.035187 7.215762 6.811543 -7885 1.000000 1.000000 100.000000 100.000000 -7886 0.067474 0.036931 9.053790 12.497391 -7887 0.078104 0.062388 11.411520 11.705759 -7888 0.055347 0.040066 12.044350 16.075286 -7889 1.000000 1.000000 100.000000 100.000000 -7890 0.057199 0.028529 11.458301 11.525188 -7891 0.071924 0.049401 11.694212 11.124066 -7892 0.046059 0.040719 9.822437 12.644023 -7893 0.082819 0.023204 8.337914 13.167447 -7894 0.070533 0.032462 9.011872 7.482331 -7895 0.057764 0.042846 11.062321 13.769489 -7896 1.000000 1.000000 100.000000 100.000000 -7897 1.000000 1.000000 100.000000 100.000000 -7898 0.087070 0.044842 10.527267 11.983055 -7899 1.000000 1.000000 100.000000 100.000000 -7900 0.061120 0.034972 9.514553 9.223912 -7901 0.094267 0.040662 8.152328 19.572760 -7902 0.073115 0.049960 7.446453 9.163512 -7903 0.071131 0.062324 13.029286 22.007291 -7904 1.000000 1.000000 100.000000 100.000000 -7905 0.057870 0.022485 6.910678 10.884881 -7906 0.043613 0.022731 6.816766 12.204601 -7907 0.088569 0.055070 12.862289 15.481918 -7908 1.000000 1.000000 100.000000 100.000000 -7909 0.058793 0.029860 6.730236 7.974408 -7910 0.048600 0.033322 14.077846 11.253102 -7911 0.049595 0.026004 9.877624 13.317482 -7912 0.076010 0.050961 9.286750 15.177542 -7913 0.079840 0.037563 8.330068 11.919516 -7914 0.071998 0.026927 8.626569 11.450943 -7915 0.085636 0.038131 10.711928 10.204591 -7916 0.088115 0.057198 13.604359 21.137889 -7917 0.032447 0.019280 7.055750 5.800441 -7918 0.085755 0.045735 12.191935 11.798382 -7919 0.063918 0.038176 5.727161 6.158873 -7920 0.083154 0.051859 8.589858 12.844508 -7921 0.053604 0.041727 11.187455 13.567901 -7922 1.000000 1.000000 100.000000 100.000000 -7923 1.000000 1.000000 100.000000 100.000000 -7924 0.094326 0.047801 9.922585 14.786448 -7925 1.000000 1.000000 100.000000 100.000000 -7926 0.039893 0.023647 10.803724 11.552787 -7927 0.088213 0.054283 10.515423 12.583682 -7928 1.000000 1.000000 100.000000 100.000000 -7929 0.060804 0.025225 7.466891 10.127879 -7930 0.053403 0.023401 7.338144 9.151510 -7931 0.047597 0.038501 14.157532 10.070445 -7932 0.067528 0.036935 8.589194 9.196837 -7933 0.036309 0.027381 9.962017 16.659521 -7934 0.047315 0.046642 11.026886 10.804680 -7935 0.052930 0.034191 12.717605 12.126507 -7936 0.068272 0.052890 7.684464 10.727300 -7937 0.067542 0.049666 10.188474 15.731174 -7938 1.000000 1.000000 100.000000 100.000000 -7939 0.090495 0.031832 7.954657 6.034758 -7940 1.000000 1.000000 100.000000 100.000000 -7941 0.089259 0.051776 10.168694 13.595013 -7942 0.052744 0.023672 7.943984 11.589428 -7943 0.081412 0.050995 10.856868 15.063804 -7944 0.064936 0.050350 10.365636 12.817311 -7945 0.079204 0.038610 6.732373 12.506029 -7946 1.000000 1.000000 100.000000 100.000000 -7947 0.060493 0.045404 6.132228 12.814343 -7948 0.076615 0.054197 9.927151 11.741361 -7949 0.041084 0.025290 9.073473 15.451992 -7950 0.084947 0.034371 10.675796 12.646556 -7951 0.048045 0.028385 11.685782 13.157212 -7952 1.000000 1.000000 100.000000 100.000000 -7953 0.052303 0.028803 9.634723 15.510462 -7954 0.096203 0.044136 11.241725 13.096345 -7955 1.000000 1.000000 100.000000 100.000000 -7956 0.085595 0.063979 7.204146 9.775381 -7957 0.084881 0.054901 9.571913 12.301895 -7958 0.061918 0.055733 10.953576 11.160294 -7959 0.060514 0.036270 9.904014 9.357223 -7960 0.064860 0.033028 13.515854 14.693356 -7961 0.062013 0.063681 10.420657 12.970799 -7962 0.039458 0.021315 9.086577 9.999706 -7963 1.000000 1.000000 100.000000 100.000000 -7964 1.000000 1.000000 100.000000 100.000000 -7965 1.000000 1.000000 100.000000 100.000000 -7966 0.042572 0.025602 9.136591 13.865334 -7967 0.071151 0.056031 10.065975 15.886148 -7968 0.084586 0.051204 8.619518 9.422877 -7969 0.079579 0.087093 9.082043 15.626992 -7970 0.094868 0.071840 8.216396 12.364443 -7971 0.077105 0.035156 13.155680 13.630750 -7972 0.085496 0.040724 10.615251 10.918836 -7973 0.080708 0.049270 6.994400 10.017451 -7974 0.089198 0.038214 14.211344 13.370588 -7975 0.069738 0.055966 12.383818 14.622762 -7976 1.000000 1.000000 100.000000 100.000000 -7977 0.066744 0.035106 10.609472 11.616057 -7978 0.059565 0.027727 8.257125 12.868243 -7979 1.000000 1.000000 100.000000 100.000000 -7980 0.061985 0.029681 12.759966 19.354495 -7981 0.065083 0.032940 8.618828 12.637159 -7982 0.085727 0.044080 12.252591 18.332924 -7983 0.069337 0.035378 13.920618 10.634870 -7984 0.073765 0.043985 10.478842 12.844701 -7985 0.063232 0.029541 8.674944 11.943446 -7986 0.095745 0.072409 11.613822 16.948836 -7987 0.054176 0.061089 10.769407 11.564873 -7988 0.062188 0.028341 6.809947 12.243950 -7989 0.070917 0.042005 6.189222 8.973064 -7990 0.090998 0.039936 10.675949 11.356066 -7991 0.077852 0.048653 10.704830 11.104022 -7992 0.059569 0.026720 9.471636 11.817570 -7993 0.065683 0.044324 6.430008 9.929684 -7994 0.094558 0.077724 10.960202 13.001823 -7995 0.054625 0.032867 9.077104 12.021161 -7996 0.095517 0.040489 10.882620 22.460661 -7997 0.052705 0.019988 10.286870 14.407624 -7998 0.046985 0.049011 8.253229 11.091321 -7999 0.069286 0.059126 7.459546 13.269448 -8000 0.086051 0.056004 10.597775 11.421184 -8001 0.094079 0.038165 15.780175 17.751908 -8002 0.066369 0.039371 10.427494 11.182804 -8003 1.000000 1.000000 100.000000 100.000000 -8004 0.078781 0.040127 11.623865 12.387879 -8005 0.055534 0.038305 8.232291 14.135622 -8006 0.058043 0.035607 15.367651 15.489308 -8007 0.066979 0.056905 8.996265 13.809592 -8008 1.000000 1.000000 100.000000 100.000000 -8009 1.000000 1.000000 100.000000 100.000000 -8010 0.086672 0.055627 9.699544 10.921933 -8011 0.065457 0.048898 10.267765 11.924932 -8012 0.093994 0.053719 15.042077 15.308629 -8013 0.081954 0.045981 10.360104 14.116971 -8014 1.000000 1.000000 100.000000 100.000000 -8015 0.087426 0.074039 8.601508 14.999751 -8016 0.068722 0.033616 7.490536 12.179192 -8017 0.067032 0.038470 7.719468 14.268984 -8018 0.069628 0.060908 11.506441 12.826106 -8019 0.046587 0.056460 10.951939 12.838866 -8020 1.000000 1.000000 100.000000 100.000000 -8021 1.000000 1.000000 100.000000 100.000000 -8022 1.000000 1.000000 100.000000 100.000000 -8023 0.060628 0.052967 7.327225 8.317943 -8024 0.072219 0.026614 10.733776 11.483450 -8025 1.000000 1.000000 100.000000 100.000000 -8026 0.074474 0.039396 7.568972 8.670930 -8027 0.057066 0.036053 14.285534 21.261471 -8028 0.057565 0.032313 8.762975 11.055215 -8029 0.066110 0.044659 11.030655 9.970658 -8030 0.072661 0.040196 10.816214 10.090475 -8031 0.076408 0.035383 10.814670 13.936674 -8032 1.000000 1.000000 100.000000 100.000000 -8033 0.065511 0.028980 7.108855 14.935482 -8034 0.093498 0.054898 10.001372 15.599757 -8035 0.056752 0.031235 12.434349 16.258539 -8036 0.057295 0.035183 7.071802 12.484277 -8037 1.000000 1.000000 100.000000 100.000000 -8038 1.000000 1.000000 100.000000 100.000000 -8039 0.083721 0.053675 8.279342 11.603324 -8040 0.065075 0.024585 11.771768 14.221991 -8041 0.054794 0.029482 8.902512 11.115272 -8042 0.086928 0.046315 11.687221 11.952957 -8043 0.081736 0.047424 13.458020 12.196447 -8044 0.073792 0.023234 7.686431 11.299894 -8045 1.000000 1.000000 100.000000 100.000000 -8046 0.059131 0.051652 9.500962 12.484201 -8047 0.053009 0.040721 5.717220 7.316664 -8048 0.084929 0.058535 13.251198 18.694934 -8049 0.081904 0.052731 8.495580 11.975421 -8050 0.076313 0.035533 10.357404 15.765057 -8051 0.066084 0.040440 8.070557 7.920193 -8052 0.081437 0.050705 10.385389 11.990566 -8053 0.065884 0.031577 7.729965 11.745387 -8054 0.061658 0.031847 11.681418 10.255583 -8055 0.050805 0.035700 7.158291 9.234901 -8056 0.072951 0.084150 8.467168 11.550007 -8057 0.073985 0.058740 10.495877 15.367511 -8058 0.097010 0.068353 10.908520 18.124295 -8059 0.096616 0.078833 8.520851 8.392313 -8060 0.071480 0.037668 10.312281 12.445337 -8061 0.077050 0.043287 10.552268 10.988610 -8062 0.043340 0.030527 6.818279 9.877866 -8063 0.076454 0.068526 11.950300 13.019521 -8064 0.045560 0.059433 7.800179 17.028143 -8065 1.000000 1.000000 100.000000 100.000000 -8066 0.086376 0.086484 12.502878 15.891032 -8067 0.029680 0.016635 7.279915 12.680230 -8068 0.099717 0.054298 9.758060 13.563553 -8069 0.045150 0.022279 12.832451 13.305992 -8070 1.000000 1.000000 100.000000 100.000000 -8071 0.076480 0.051207 7.469830 8.408668 -8072 0.074835 0.046922 7.156930 10.780178 -8073 1.000000 1.000000 100.000000 100.000000 -8074 0.084638 0.029842 9.493067 17.378335 -8075 0.084750 0.068741 12.214996 19.124116 -8076 0.083116 0.042391 8.788293 9.893498 -8077 0.089723 0.040299 8.150430 8.618087 -8078 0.049167 0.031514 6.871983 12.963426 -8079 0.087741 0.055561 11.681333 13.973828 -8080 0.074120 0.029008 11.928648 13.556987 -8081 0.044919 0.026514 7.450511 9.763002 -8082 0.083639 0.042873 9.637279 9.583925 -8083 0.051881 0.041301 12.846686 11.525188 -8084 0.081449 0.050556 7.134879 13.579594 -8085 0.053685 0.043185 7.700314 10.504011 -8086 0.085511 0.042298 9.824837 17.466997 -8087 0.087615 0.048404 9.103395 11.315205 -8088 0.093166 0.046973 12.098712 15.336476 -8089 0.091148 0.068183 16.254271 15.180956 -8090 0.037458 0.018595 8.879892 9.257798 -8091 0.071248 0.041910 11.651963 11.962127 -8092 0.074909 0.058691 8.750076 10.281352 -8093 0.097528 0.064830 10.128903 10.526343 -8094 0.069480 0.071618 7.955197 11.732836 -8095 0.089264 0.072240 12.408992 13.743878 -8096 0.056156 0.041077 10.645923 10.578872 -8097 1.000000 1.000000 100.000000 100.000000 -8098 0.059288 0.035736 6.604947 10.577685 -8099 0.080607 0.035536 7.479156 12.364156 -8100 0.075290 0.045088 15.617866 13.042223 -8101 0.078089 0.050649 11.530829 19.303325 -8102 0.073562 0.036026 7.171803 8.862016 -8103 0.085032 0.051423 10.569194 11.823854 -8104 0.052781 0.033230 8.875819 9.816405 -8105 0.052556 0.021311 6.856956 12.279524 -8106 0.055023 0.027829 10.749760 9.901457 -8107 0.046983 0.028335 9.891389 9.694178 -8108 0.063700 0.031219 6.663061 10.813311 -8109 0.090349 0.057475 10.338994 12.819464 -8110 0.079818 0.057370 9.056487 10.337895 -8111 1.000000 1.000000 100.000000 100.000000 -8112 0.044195 0.031467 10.363050 14.987312 -8113 1.000000 1.000000 100.000000 100.000000 -8114 1.000000 1.000000 100.000000 100.000000 -8115 0.037835 0.026417 13.335011 11.516333 -8116 1.000000 1.000000 100.000000 100.000000 -8117 1.000000 1.000000 100.000000 100.000000 -8118 0.062110 0.043248 9.292721 13.977981 -8119 0.068561 0.037463 10.550733 14.348523 -8120 1.000000 1.000000 100.000000 100.000000 -8121 1.000000 1.000000 100.000000 100.000000 -8122 0.085293 0.031128 12.059386 13.183121 -8123 1.000000 1.000000 100.000000 100.000000 -8124 0.041978 0.037898 9.843854 13.942383 -8125 1.000000 1.000000 100.000000 100.000000 -8126 0.071051 0.044717 10.449924 13.798547 -8127 0.076860 0.057057 10.456356 14.003151 -8128 0.093812 0.056436 7.890778 14.567568 -8129 0.068348 0.029369 9.887981 10.033340 -8130 0.081502 0.056108 11.468710 11.708099 -8131 0.048871 0.021570 10.108673 11.474775 -8132 0.057184 0.030798 7.596644 7.116497 -8133 0.072620 0.064240 9.238154 8.890561 -8134 0.036179 0.017553 8.058326 8.219115 -8135 1.000000 1.000000 100.000000 100.000000 -8136 0.064161 0.053610 14.184987 16.384784 -8137 1.000000 1.000000 100.000000 100.000000 -8138 0.075871 0.038677 11.839818 17.728314 -8139 0.062126 0.043847 8.092855 7.155461 -8140 0.093585 0.045552 6.863504 12.591336 -8141 0.064657 0.034986 7.916348 11.760586 -8142 0.080335 0.075153 9.899811 16.317407 -8143 1.000000 1.000000 100.000000 100.000000 -8144 0.093208 0.055211 11.274537 14.068543 -8145 0.076970 0.054107 8.254009 10.770106 -8146 0.070668 0.036113 10.954776 15.994465 -8147 0.073609 0.029487 7.451308 11.977176 -8148 0.046340 0.015385 6.958685 7.287009 -8149 0.086785 0.059715 7.557501 10.216915 -8150 0.057062 0.039026 5.970220 13.093482 -8151 0.075256 0.052544 10.011606 13.279129 -8152 1.000000 1.000000 100.000000 100.000000 -8153 0.066153 0.065041 10.615480 11.735772 -8154 0.084975 0.067360 15.632041 16.556039 -8155 0.075686 0.037729 6.918567 8.422938 -8156 0.056252 0.033271 9.456144 14.527974 -8157 0.078545 0.040679 7.727043 11.817297 -8158 1.000000 1.000000 100.000000 100.000000 -8159 0.067789 0.025507 11.764722 11.430399 -8160 0.053395 0.043437 10.034150 7.253389 -8161 0.075443 0.061321 8.220195 11.098459 -8162 0.084968 0.046922 7.819398 10.833862 -8163 1.000000 1.000000 100.000000 100.000000 -8164 0.060758 0.023701 7.605438 9.952475 -8165 1.000000 1.000000 100.000000 100.000000 -8166 1.000000 1.000000 100.000000 100.000000 -8167 0.099814 0.045991 11.922754 17.570399 -8168 0.047393 0.034693 6.737856 8.718730 -8169 0.055751 0.019995 7.933188 14.451177 -8170 0.071867 0.037813 13.255551 10.964390 -8171 0.072483 0.048930 9.674313 12.151301 -8172 1.000000 1.000000 100.000000 100.000000 -8173 1.000000 1.000000 100.000000 100.000000 -8174 0.087812 0.058367 14.949303 17.037176 -8175 0.056893 0.040892 7.579261 10.199143 -8176 0.067329 0.070196 10.740157 8.695740 -8177 0.053307 0.032968 11.125247 11.027811 -8178 0.058633 0.025936 8.905148 10.499242 -8179 0.069078 0.051218 10.008039 14.407664 -8180 0.051350 0.035237 8.397425 9.531076 -8181 0.089933 0.062480 6.560849 9.871128 -8182 1.000000 1.000000 100.000000 100.000000 -8183 0.058609 0.031963 10.480390 11.669503 -8184 0.071495 0.046897 10.815275 13.545439 -8185 0.033071 0.032099 9.862214 8.993600 -8186 0.078091 0.052153 16.580466 10.349713 -8187 0.084213 0.039280 13.651577 13.602976 -8188 1.000000 1.000000 100.000000 100.000000 -8189 0.090937 0.045382 16.375699 13.971685 -8190 1.000000 1.000000 100.000000 100.000000 -8191 0.063377 0.041863 15.254203 14.603821 -8192 0.078424 0.038889 11.438383 13.607836 -8193 1.000000 1.000000 100.000000 100.000000 -8194 0.052534 0.029503 6.177390 7.394725 -8195 0.066370 0.046005 5.404836 7.201061 -8196 0.098937 0.086178 9.014965 11.207112 -8197 0.066374 0.022581 9.882944 13.338958 -8198 0.095185 0.096863 10.690853 12.973164 -8199 0.074310 0.055141 13.265336 17.306304 -8200 0.047907 0.028333 10.795497 14.129849 -8201 1.000000 1.000000 100.000000 100.000000 -8202 1.000000 1.000000 100.000000 100.000000 -8203 1.000000 1.000000 100.000000 100.000000 -8204 0.077834 0.033710 9.005274 8.881417 -8205 0.092648 0.029464 12.983524 15.296061 -8206 0.087182 0.052397 11.991450 15.423986 -8207 0.058298 0.048474 9.934877 12.930682 -8208 1.000000 1.000000 100.000000 100.000000 -8209 0.039193 0.033428 9.832010 16.479927 -8210 0.076274 0.042736 6.170934 15.612097 -8211 0.070033 0.028460 11.107858 17.406670 -8212 0.092390 0.068193 6.133072 11.263419 -8213 1.000000 1.000000 100.000000 100.000000 -8214 0.086874 0.048263 11.796835 13.147762 -8215 1.000000 1.000000 100.000000 100.000000 -8216 1.000000 1.000000 100.000000 100.000000 -8217 0.042891 0.016873 10.279229 9.556864 -8218 0.050034 0.033295 6.039347 6.746840 -8219 0.067605 0.036197 9.354139 13.575751 -8220 0.052252 0.017920 6.459181 8.119717 -8221 0.089425 0.054143 13.752260 15.664486 -8222 0.059648 0.040607 6.224028 9.057574 -8223 0.055365 0.033293 13.214437 9.134214 -8224 0.071464 0.048044 9.124932 11.783342 -8225 0.076693 0.038430 7.981574 14.968770 -8226 0.094802 0.060601 5.364861 7.903464 -8227 0.062799 0.033119 9.827594 11.810992 -8228 0.064873 0.040712 10.975431 12.682297 -8229 1.000000 1.000000 100.000000 100.000000 -8230 1.000000 1.000000 100.000000 100.000000 -8231 0.089847 0.059111 10.275792 17.867564 -8232 0.063574 0.043546 11.802184 11.605470 -8233 0.066084 0.052992 11.680687 13.470442 -8234 0.051762 0.033502 7.881505 9.361283 -8235 0.094252 0.061747 10.236266 17.241869 -8236 0.094135 0.090596 14.127312 20.598012 -8237 0.054409 0.024117 7.118764 10.271311 -8238 0.047266 0.034328 13.394869 13.503084 -8239 0.073618 0.058818 11.859172 16.266878 -8240 0.055408 0.050594 6.473921 10.843709 -8241 1.000000 1.000000 100.000000 100.000000 -8242 1.000000 1.000000 100.000000 100.000000 -8243 0.085306 0.048943 9.463717 10.764255 -8244 0.065418 0.034996 6.689808 14.192808 -8245 0.047053 0.026397 8.516277 11.489396 -8246 0.084996 0.056075 11.555946 13.690771 -8247 0.094164 0.045653 9.414700 13.314527 -8248 0.071258 0.035088 6.989926 9.653830 -8249 0.096044 0.049666 12.008968 17.631262 -8250 1.000000 1.000000 100.000000 100.000000 -8251 0.068130 0.032555 8.816470 10.845735 -8252 0.081123 0.035740 8.447846 9.351641 -8253 0.063339 0.041453 10.636774 11.737361 -8254 1.000000 1.000000 100.000000 100.000000 -8255 0.075698 0.040187 14.902553 16.001278 -8256 0.065232 0.053661 11.120316 10.930529 -8257 0.049888 0.031253 9.376821 11.494386 -8258 0.072895 0.070767 11.941153 10.828948 -8259 0.067122 0.052128 11.541045 10.716361 -8260 0.085761 0.029757 10.376778 15.096507 -8261 0.052449 0.043281 8.588257 8.602630 -8262 0.071637 0.049856 10.000038 11.793978 -8263 0.051911 0.028599 5.180714 12.732687 -8264 1.000000 1.000000 100.000000 100.000000 -8265 0.075147 0.052083 14.197637 14.686233 -8266 1.000000 1.000000 100.000000 100.000000 -8267 0.084324 0.045475 6.062668 8.341454 -8268 0.065258 0.061191 12.132759 13.936463 -8269 0.045608 0.040534 6.861631 12.517079 -8270 0.053455 0.025835 8.074589 11.501674 -8271 0.073211 0.055804 11.583418 13.984228 -8272 0.063009 0.033475 8.603087 9.198198 -8273 0.091134 0.040887 11.904730 15.906549 -8274 1.000000 1.000000 100.000000 100.000000 -8275 0.066217 0.046934 10.592039 11.988165 -8276 0.075965 0.085418 10.467438 14.504192 -8277 0.040407 0.030083 9.858571 14.861127 -8278 0.069839 0.033921 6.694738 14.060189 -8279 0.049320 0.028112 8.920928 10.040605 -8280 1.000000 1.000000 100.000000 100.000000 -8281 0.033079 0.019708 8.186276 10.559968 -8282 0.082343 0.042314 6.938954 11.200127 -8283 0.044589 0.035751 9.390798 10.941106 -8284 1.000000 1.000000 100.000000 100.000000 -8285 1.000000 1.000000 100.000000 100.000000 -8286 0.057416 0.024138 10.238583 11.664326 -8287 0.048388 0.052799 11.958391 14.215511 -8288 0.099302 0.066184 13.509346 14.497702 -8289 0.072350 0.061076 10.571553 19.190770 -8290 0.043684 0.027875 6.089521 8.146082 -8291 0.072829 0.061162 12.377104 18.046700 -8292 0.041169 0.020465 8.233186 9.462349 -8293 1.000000 1.000000 100.000000 100.000000 -8294 0.068391 0.033530 9.028918 13.785821 -8295 1.000000 1.000000 100.000000 100.000000 -8296 1.000000 1.000000 100.000000 100.000000 -8297 0.065780 0.032385 7.114926 15.018579 -8298 0.053895 0.026994 9.116889 12.177398 -8299 0.068208 0.044355 11.399509 10.395895 -8300 0.041686 0.029665 8.859222 8.982398 -8301 0.044761 0.025641 14.805647 15.418086 -8302 0.078597 0.071652 9.905595 16.220478 -8303 0.072588 0.063074 7.784402 10.575959 -8304 0.076783 0.051741 7.542538 10.875370 -8305 0.057326 0.034709 10.532164 13.038493 -8306 1.000000 1.000000 100.000000 100.000000 -8307 0.071432 0.024592 5.986994 8.509573 -8308 0.092287 0.056186 9.175125 7.877364 -8309 0.065428 0.046946 11.748521 11.280956 -8310 0.062714 0.031697 11.603974 15.245030 -8311 1.000000 1.000000 100.000000 100.000000 -8312 0.060850 0.025052 7.933594 8.833600 -8313 0.069153 0.043645 7.200865 8.973621 -8314 0.090839 0.039896 10.238045 20.026757 -8315 0.096855 0.048626 8.859460 12.947511 -8316 0.044536 0.016447 8.031666 8.732563 -8317 1.000000 1.000000 100.000000 100.000000 -8318 0.074413 0.035554 12.698975 15.990649 -8319 0.072219 0.042489 13.070220 16.258371 -8320 0.041901 0.039167 7.958681 11.585191 -8321 0.065099 0.064684 6.811733 11.082295 -8322 0.092536 0.070667 13.481458 9.610212 -8323 0.048051 0.044224 8.876454 13.780938 -8324 1.000000 1.000000 100.000000 100.000000 -8325 0.091193 0.050173 10.152146 18.665484 -8326 0.097272 0.072948 9.614498 14.423312 -8327 0.057743 0.029590 8.230929 12.714928 -8328 0.062704 0.035867 9.204986 11.889233 -8329 0.048498 0.026375 9.535808 15.697654 -8330 0.092780 0.051628 8.966162 13.589845 -8331 0.078849 0.031199 8.310597 10.101049 -8332 0.087031 0.054426 10.356363 11.296757 -8333 1.000000 1.000000 100.000000 100.000000 -8334 1.000000 1.000000 100.000000 100.000000 -8335 0.057717 0.035344 6.148360 9.194826 -8336 0.082885 0.043338 9.598183 8.657753 -8337 0.074448 0.053358 8.122983 11.738026 -8338 0.066825 0.061278 8.619957 11.407696 -8339 0.051081 0.029787 11.243079 14.179923 -8340 0.055465 0.052262 12.042483 11.437452 -8341 0.099680 0.045020 10.658550 14.240330 -8342 0.064846 0.035321 10.964215 16.794899 -8343 0.087780 0.094068 13.758732 10.480416 -8344 0.052764 0.021804 9.986738 11.582187 -8345 1.000000 1.000000 100.000000 100.000000 -8346 0.083052 0.060746 9.256183 14.284755 -8347 0.074216 0.036141 6.693605 8.511211 -8348 0.096767 0.034301 8.582817 15.536427 -8349 0.049507 0.030890 6.143880 9.833383 -8350 0.054125 0.053440 11.054279 17.016026 -8351 0.060726 0.053191 7.727834 11.219291 -8352 0.063058 0.045276 7.999683 9.730601 -8353 0.097486 0.054133 10.452032 15.847456 -8354 0.053297 0.030994 11.460603 14.572777 -8355 0.089595 0.063014 13.502816 10.799398 -8356 1.000000 1.000000 100.000000 100.000000 -8357 0.065274 0.053732 8.369872 8.993545 -8358 0.049601 0.030173 5.333611 9.727927 -8359 0.066422 0.043644 11.612034 17.230310 -8360 0.075795 0.063949 10.972815 15.057079 -8361 0.082426 0.047038 5.723687 7.847568 -8362 0.082701 0.072746 9.110214 11.411084 -8363 0.063667 0.041957 9.685131 9.908220 -8364 0.072915 0.043258 12.770390 11.241744 -8365 0.070696 0.051499 8.018459 12.409065 -8366 0.046840 0.039860 5.969756 11.866572 -8367 0.077664 0.046834 10.967345 17.178923 -8368 1.000000 1.000000 100.000000 100.000000 -8369 1.000000 1.000000 100.000000 100.000000 -8370 0.087633 0.033788 8.021884 11.061909 -8371 0.034763 0.018264 12.323748 13.586949 -8372 0.054825 0.035301 9.087196 13.927143 -8373 0.057184 0.044127 8.167564 13.881803 -8374 0.080166 0.037315 9.245416 12.313050 -8375 0.043904 0.033191 7.280527 10.680000 -8376 0.079510 0.071643 11.824032 14.897758 -8377 1.000000 1.000000 100.000000 100.000000 -8378 1.000000 1.000000 100.000000 100.000000 -8379 0.078418 0.061517 11.686827 17.430963 -8380 0.095085 0.038427 12.884401 19.325323 -8381 0.038407 0.031494 7.928970 11.244720 -8382 0.067835 0.043401 9.023453 12.350530 -8383 0.079706 0.068746 9.852464 13.442549 -8384 0.055073 0.032907 10.018472 13.354979 -8385 0.046304 0.060049 10.742186 20.349850 -8386 0.093378 0.036385 12.096914 13.123336 -8387 0.074867 0.030156 11.795712 15.901756 -8388 0.077938 0.073095 11.275618 14.249766 -8389 0.043000 0.019708 7.782891 10.949643 -8390 0.052815 0.027575 14.101247 16.828446 -8391 0.079926 0.045818 6.034897 9.366990 -8392 1.000000 1.000000 100.000000 100.000000 -8393 0.075482 0.059003 11.280369 16.913759 -8394 0.053942 0.045686 10.148048 14.318155 -8395 0.066215 0.046347 10.816718 15.167734 -8396 0.088814 0.048648 8.770067 11.208179 -8397 0.091580 0.070371 15.226024 13.074353 -8398 0.098687 0.061327 7.317739 11.937615 -8399 0.062316 0.043910 9.139865 19.070339 -8400 0.037696 0.016486 7.349985 8.943544 -8401 0.076005 0.067264 15.051616 16.425418 -8402 0.055634 0.045885 12.327252 10.865782 -8403 0.054172 0.030769 13.289832 10.580296 -8404 0.063935 0.036943 11.521632 11.564029 -8405 0.098506 0.064631 9.953346 13.687541 -8406 0.069542 0.037414 7.284122 15.079587 -8407 0.084428 0.061245 7.793797 16.771430 -8408 0.071573 0.048869 9.931051 19.178028 -8409 0.052910 0.035621 13.286229 14.142950 -8410 0.072265 0.043753 15.448428 18.255031 -8411 0.081639 0.072880 8.730230 9.549167 -8412 0.081848 0.039342 9.138867 10.926338 -8413 0.065749 0.046926 7.107196 8.839780 -8414 0.060557 0.039937 11.646786 10.330527 -8415 0.069990 0.038444 12.148269 16.644867 -8416 0.096166 0.059408 10.352960 12.548105 -8417 0.074441 0.031460 8.677624 11.475933 -8418 0.075647 0.036472 8.113594 9.659114 -8419 0.074040 0.039711 6.754926 9.874034 -8420 0.062274 0.027742 6.214997 6.414220 -8421 1.000000 1.000000 100.000000 100.000000 -8422 0.091342 0.040862 12.746141 14.869959 -8423 0.023357 0.009726 7.278177 7.045098 -8424 0.075100 0.039687 16.599341 12.883829 -8425 0.082615 0.073857 11.051370 15.290940 -8426 0.060717 0.028774 9.006955 15.482522 -8427 1.000000 1.000000 100.000000 100.000000 -8428 0.079886 0.054088 13.470161 14.990239 -8429 0.079754 0.051633 10.280495 10.287419 -8430 0.051970 0.029755 7.441069 9.492411 -8431 0.082636 0.047946 10.516760 14.256685 -8432 0.095818 0.038363 9.829841 16.691800 -8433 0.064409 0.065967 10.412297 12.718738 -8434 0.093759 0.050817 11.452626 16.147767 -8435 0.055522 0.028719 8.858413 11.861814 -8436 0.064766 0.063007 9.227984 11.290251 -8437 0.062171 0.046904 9.603319 14.746941 -8438 0.061866 0.024542 10.828077 12.346336 -8439 0.064051 0.035332 11.574610 10.903039 -8440 0.078547 0.064089 10.048307 11.525379 -8441 0.071169 0.042042 7.673963 8.937258 -8442 0.060825 0.021068 9.377719 14.382391 -8443 1.000000 1.000000 100.000000 100.000000 -8444 0.056094 0.034341 8.347195 10.152198 -8445 0.057478 0.050014 7.653267 11.271320 -8446 0.049713 0.044744 9.781913 12.058114 -8447 0.080334 0.037948 12.710315 15.887856 -8448 0.061800 0.029561 6.618689 8.048912 -8449 0.090133 0.069672 7.392835 7.526963 -8450 0.080176 0.058710 8.035345 13.093207 -8451 0.080373 0.099506 10.279108 13.558057 -8452 0.047629 0.042876 7.540629 14.095848 -8453 0.099570 0.073626 10.000952 11.650731 -8454 0.076254 0.041655 10.530980 11.164523 -8455 0.054803 0.024706 10.063591 11.769813 -8456 0.064600 0.046823 9.828434 24.710072 -8457 0.064739 0.050278 7.455526 11.996287 -8458 0.089667 0.049690 13.179395 12.388288 -8459 1.000000 1.000000 100.000000 100.000000 -8460 0.098070 0.086905 7.958480 7.529929 -8461 1.000000 1.000000 100.000000 100.000000 -8462 1.000000 1.000000 100.000000 100.000000 -8463 0.059732 0.024784 13.328070 12.655697 -8464 0.059908 0.047625 8.024421 11.632118 -8465 1.000000 1.000000 100.000000 100.000000 -8466 0.058101 0.025560 6.682524 12.029117 -8467 0.062692 0.048569 10.797940 18.884071 -8468 0.077795 0.041947 9.182891 12.306804 -8469 0.052315 0.021198 6.825158 9.017288 -8470 0.058465 0.028674 6.864122 10.945074 -8471 0.063117 0.044583 10.632179 10.896553 -8472 1.000000 1.000000 100.000000 100.000000 -8473 0.087780 0.044822 10.416049 8.968014 -8474 0.066823 0.064723 6.946537 10.822889 -8475 0.088906 0.070947 7.805458 9.872886 -8476 0.083644 0.045863 8.466783 12.155606 -8477 0.042502 0.024438 6.822038 7.981665 -8478 0.062743 0.032012 15.332488 16.509175 -8479 0.049893 0.027471 9.326837 12.221040 -8480 0.088915 0.089508 7.078086 10.243445 -8481 0.073960 0.053067 12.506887 17.303400 -8482 1.000000 1.000000 100.000000 100.000000 -8483 0.081987 0.051828 6.859254 11.526959 -8484 0.087275 0.056664 8.217694 9.074082 -8485 0.052937 0.033833 11.062368 13.676844 -8486 0.053258 0.024254 4.945772 7.441683 -8487 0.070945 0.049143 12.123206 14.062461 -8488 0.074454 0.051540 7.291849 11.238821 -8489 0.075257 0.055121 7.908178 12.155205 -8490 0.079759 0.039487 11.537902 9.201049 -8491 1.000000 1.000000 100.000000 100.000000 -8492 0.093013 0.086874 11.010491 16.718809 -8493 0.056498 0.021965 8.449986 12.307499 -8494 0.071334 0.038564 9.413903 13.438947 -8495 1.000000 1.000000 100.000000 100.000000 -8496 0.055333 0.045743 13.864992 11.870487 -8497 0.069041 0.026391 9.579207 11.297454 -8498 0.082868 0.046408 7.260051 10.103614 -8499 0.044239 0.034453 11.213902 14.757710 -8500 0.046995 0.033129 5.575607 10.997333 -8501 1.000000 1.000000 100.000000 100.000000 -8502 0.084783 0.044806 13.786002 16.634528 -8503 0.086374 0.027587 6.616110 8.604591 -8504 0.086973 0.027516 12.306713 12.605502 -8505 1.000000 1.000000 100.000000 100.000000 -8506 0.090697 0.069845 8.278549 7.957370 -8507 0.058196 0.027462 8.722663 10.835166 -8508 0.090712 0.078419 11.921696 18.842205 -8509 0.065116 0.031449 9.443247 14.362197 -8510 0.092012 0.050368 11.975979 17.230227 -8511 0.074698 0.038921 9.988587 13.045579 -8512 0.095086 0.071328 9.159182 10.443030 -8513 0.092376 0.039047 9.320976 13.646011 -8514 0.061911 0.047235 13.610762 13.747518 -8515 0.087399 0.052490 10.555112 12.179004 -8516 1.000000 1.000000 100.000000 100.000000 -8517 1.000000 1.000000 100.000000 100.000000 -8518 0.050346 0.017591 8.154389 8.582869 -8519 0.093287 0.074727 8.012244 11.104385 -8520 0.051077 0.045659 13.230910 19.291283 -8521 0.085376 0.045889 7.343760 10.865144 -8522 0.057984 0.024455 7.613190 8.960646 -8523 0.063218 0.051853 6.035233 9.826598 -8524 0.089672 0.083935 18.939507 12.548695 -8525 0.092317 0.090623 11.105183 17.620606 -8526 0.078074 0.046835 13.072612 22.160759 -8527 0.081304 0.043748 14.670507 13.921779 -8528 0.069807 0.054720 8.626870 11.509742 -8529 0.037773 0.033313 9.541878 9.410504 -8530 1.000000 1.000000 100.000000 100.000000 -8531 0.087208 0.071739 12.048270 13.988597 -8532 0.066809 0.044873 10.079586 11.524334 -8533 0.075299 0.043051 8.320912 12.919832 -8534 1.000000 1.000000 100.000000 100.000000 -8535 0.080777 0.089387 9.385618 14.084843 -8536 1.000000 1.000000 100.000000 100.000000 -8537 0.061637 0.039359 9.573667 11.150179 -8538 0.069827 0.043591 7.452198 7.477277 -8539 0.056341 0.038673 5.718084 7.938076 -8540 1.000000 1.000000 100.000000 100.000000 -8541 0.077976 0.064677 11.768317 12.700704 -8542 0.056552 0.057790 17.851563 15.894962 -8543 1.000000 1.000000 100.000000 100.000000 -8544 0.056071 0.049924 14.676315 12.156334 -8545 1.000000 1.000000 100.000000 100.000000 -8546 0.046327 0.026033 8.049183 8.592941 -8547 0.072960 0.049929 9.334614 10.947793 -8548 0.054046 0.033480 7.797617 13.158237 -8549 0.099403 0.061632 12.613676 14.031261 -8550 1.000000 1.000000 100.000000 100.000000 -8551 0.055323 0.056225 5.716353 8.390963 -8552 0.054469 0.021245 9.801479 15.116610 -8553 0.063704 0.082059 8.741076 15.053825 -8554 0.050850 0.048813 12.388233 12.139489 -8555 0.051767 0.040507 11.773229 11.657734 -8556 1.000000 1.000000 100.000000 100.000000 -8557 0.070711 0.044550 7.456426 11.691531 -8558 0.066421 0.039512 20.547591 24.593640 -8559 0.065608 0.030344 13.615720 16.316665 -8560 0.061769 0.027911 6.120372 8.778620 -8561 0.060527 0.032720 7.907739 11.221809 -8562 0.081616 0.065724 7.496492 15.812237 -8563 0.057089 0.030082 6.004096 18.325023 -8564 0.076538 0.044937 8.885016 10.627646 -8565 0.091389 0.074602 8.003177 12.784613 -8566 0.056796 0.040681 6.818724 8.661405 -8567 0.077624 0.041147 8.066801 11.431981 -8568 0.068691 0.053930 13.844250 14.816522 -8569 0.059838 0.029663 8.605179 13.240040 -8570 0.061164 0.030690 13.879690 14.010440 -8571 1.000000 1.000000 100.000000 100.000000 -8572 0.068505 0.050783 12.641534 13.799394 -8573 0.077912 0.055199 12.949183 16.403993 -8574 0.071488 0.053253 10.755778 18.818432 -8575 0.077677 0.048199 7.287048 8.297648 -8576 0.068029 0.041443 6.103440 7.090436 -8577 0.097094 0.051178 9.539247 13.505287 -8578 0.068903 0.036228 11.438409 10.465573 -8579 0.060270 0.032301 6.534324 10.468072 -8580 0.068316 0.028531 6.738184 10.184082 -8581 0.046764 0.014523 8.987274 11.293734 -8582 0.071559 0.058399 12.332210 13.647171 -8583 0.083100 0.036765 8.494656 12.644943 -8584 0.054316 0.071317 7.331123 10.784732 -8585 0.078861 0.055400 14.867298 17.956853 -8586 1.000000 1.000000 100.000000 100.000000 -8587 0.051972 0.029733 8.269461 11.103300 -8588 0.052532 0.046730 10.700916 13.508400 -8589 0.061201 0.052552 10.298196 8.912166 -8590 0.074373 0.032370 7.471868 10.626087 -8591 0.043986 0.022505 7.735211 8.094899 -8592 0.053803 0.040977 8.540269 9.549006 -8593 0.069934 0.039887 10.447639 12.374630 -8594 0.086806 0.045865 12.799652 10.921941 -8595 0.081545 0.059838 12.437803 15.258271 -8596 0.086299 0.061533 11.412616 15.697399 -8597 0.054357 0.041285 10.652583 12.412344 -8598 0.072240 0.043751 12.483074 15.370214 -8599 0.079627 0.063583 10.858265 12.084384 -8600 0.079240 0.027764 4.599217 8.412479 -8601 0.038242 0.024251 10.444279 12.015535 -8602 0.066066 0.029405 7.406341 8.362706 -8603 1.000000 1.000000 100.000000 100.000000 -8604 0.059581 0.023435 11.348244 12.439869 -8605 1.000000 1.000000 100.000000 100.000000 -8606 0.082662 0.032416 10.146601 14.993910 -8607 0.078213 0.048533 9.572519 19.579127 -8608 0.046771 0.019033 13.584159 11.623031 -8609 0.062763 0.050925 8.051304 11.917997 -8610 0.063997 0.028560 9.185862 16.857927 -8611 0.084254 0.063805 9.125288 16.831812 -8612 0.075528 0.053504 10.386322 14.428764 -8613 0.074005 0.044422 14.789276 13.423809 -8614 0.099604 0.079215 10.000166 16.758142 -8615 0.087446 0.059173 5.631465 12.656424 -8616 0.076117 0.084865 8.519596 14.495536 -8617 0.056228 0.035580 12.573477 13.165533 -8618 0.062050 0.045524 10.224568 10.396655 -8619 0.099033 0.072313 11.339524 11.941610 -8620 0.099426 0.049029 5.847441 6.601811 -8621 0.053888 0.047412 8.553597 10.377590 -8622 1.000000 1.000000 100.000000 100.000000 -8623 0.051361 0.036958 7.803062 9.753193 -8624 0.062282 0.017324 9.891546 14.458088 -8625 0.083343 0.031892 9.352164 18.699502 -8626 0.040490 0.021897 9.084226 12.927300 -8627 0.060811 0.058063 9.806559 15.926893 -8628 1.000000 1.000000 100.000000 100.000000 -8629 0.060915 0.041511 13.032520 14.844548 -8630 0.092763 0.034427 13.196607 14.985802 -8631 0.054582 0.029230 5.821319 7.186284 -8632 0.072709 0.034337 8.588791 7.441845 -8633 0.057790 0.036895 11.060520 10.821898 -8634 0.036019 0.019686 8.022167 11.565093 -8635 1.000000 1.000000 100.000000 100.000000 -8636 0.051696 0.021524 9.104742 11.971916 -8637 0.069059 0.055166 12.373291 15.347317 -8638 0.070050 0.032749 9.780997 11.915597 -8639 0.075972 0.059046 7.513750 13.473865 -8640 0.096118 0.048165 9.647037 11.354001 -8641 0.068838 0.022143 7.425213 12.988176 -8642 0.064810 0.027838 9.280504 16.112647 -8643 0.044162 0.026004 8.159852 7.224296 -8644 0.069278 0.055568 10.381105 14.911565 -8645 0.076728 0.040267 10.918336 14.680500 -8646 0.080037 0.086257 12.172351 12.260564 -8647 0.059429 0.024987 7.496279 14.830727 -8648 0.068367 0.029177 10.503181 9.556502 -8649 1.000000 1.000000 100.000000 100.000000 -8650 0.090719 0.059390 12.832613 9.330143 -8651 0.061663 0.060693 8.392503 10.297204 -8652 0.092309 0.088520 10.773160 12.523475 -8653 0.057051 0.016942 9.100603 16.137471 -8654 1.000000 1.000000 100.000000 100.000000 -8655 0.051231 0.023729 7.538450 7.345001 -8656 0.098508 0.073095 9.072894 13.111545 -8657 0.047213 0.023051 9.430980 8.787370 -8658 0.046535 0.022428 14.608874 16.738717 -8659 0.060233 0.042623 19.722358 16.010546 -8660 0.074409 0.062202 9.997668 14.126094 -8661 0.063494 0.023624 7.533598 10.611835 -8662 0.052354 0.027807 7.434041 8.152795 -8663 0.065412 0.035151 7.483895 9.181832 -8664 0.051726 0.022773 9.959869 9.931703 -8665 0.070167 0.049494 9.132983 11.311660 -8666 0.053300 0.033745 8.412784 11.728505 -8667 0.059750 0.032879 8.735161 13.071678 -8668 0.095981 0.053177 8.488301 14.433040 -8669 0.061619 0.048848 11.883403 15.795305 -8670 0.069416 0.035093 10.221769 11.886279 -8671 1.000000 1.000000 100.000000 100.000000 -8672 0.064333 0.027723 11.379169 12.948179 -8673 0.063826 0.040292 11.166494 12.391975 -8674 0.030971 0.020643 9.327119 11.817525 -8675 0.077444 0.042025 14.658821 16.444867 -8676 0.069631 0.044951 10.944886 14.700790 -8677 0.078968 0.032566 8.906357 9.449080 -8678 0.067707 0.077632 7.967470 14.406969 -8679 0.060159 0.035714 8.899508 15.327582 -8680 0.074115 0.033301 6.288201 13.363828 -8681 0.051234 0.034352 10.421138 11.512794 -8682 0.056596 0.041264 10.162477 15.160483 -8683 0.082478 0.064583 8.654006 14.635979 -8684 0.067380 0.044717 12.703356 16.919424 -8685 0.045356 0.013793 8.355127 12.993751 -8686 0.081627 0.043071 7.387961 13.318421 -8687 0.089344 0.034780 8.900987 11.301239 -8688 0.048163 0.025953 8.325852 9.162745 -8689 1.000000 1.000000 100.000000 100.000000 -8690 1.000000 1.000000 100.000000 100.000000 -8691 1.000000 1.000000 100.000000 100.000000 -8692 1.000000 1.000000 100.000000 100.000000 -8693 0.078773 0.054710 11.064360 15.521573 -8694 0.069352 0.038594 7.752380 7.238326 -8695 0.070045 0.034075 8.849106 11.861053 -8696 0.059167 0.031844 12.876551 12.010131 -8697 0.072679 0.043755 6.595886 10.932032 -8698 0.098497 0.045831 10.810965 12.731986 -8699 0.065879 0.037231 12.137636 15.448063 -8700 0.080401 0.033831 12.466976 14.914908 -8701 0.049127 0.020583 5.765606 6.940702 -8702 0.089484 0.065096 8.460617 13.955126 -8703 0.094553 0.049600 9.348299 15.825372 -8704 0.093900 0.049338 14.405670 16.960120 -8705 0.050035 0.025297 10.581533 10.992631 -8706 1.000000 1.000000 100.000000 100.000000 -8707 1.000000 1.000000 100.000000 100.000000 -8708 0.072632 0.038636 11.801217 13.808035 -8709 0.065595 0.063420 8.436775 14.245121 -8710 0.090099 0.049756 15.514061 17.016970 -8711 0.078041 0.039112 8.384441 9.846195 -8712 0.068309 0.029950 7.517250 8.619294 -8713 1.000000 1.000000 100.000000 100.000000 -8714 0.064593 0.040304 11.666618 10.517641 -8715 0.059856 0.036881 6.782680 11.075642 -8716 0.092227 0.081254 10.047717 14.977133 -8717 0.074963 0.090470 15.427166 18.292172 -8718 0.056887 0.044456 6.963171 9.860340 -8719 1.000000 1.000000 100.000000 100.000000 -8720 0.053783 0.021487 9.533172 13.286226 -8721 0.066067 0.018858 8.697949 10.021853 -8722 0.083763 0.036348 18.005065 11.766413 -8723 0.063386 0.064954 12.147300 9.302634 -8724 0.057452 0.028870 6.646571 10.721577 -8725 0.052059 0.025047 9.095511 13.795711 -8726 0.042567 0.027028 6.966326 10.720729 -8727 0.095378 0.045468 6.183685 9.138951 -8728 1.000000 1.000000 100.000000 100.000000 -8729 1.000000 1.000000 100.000000 100.000000 -8730 0.055598 0.018125 8.845281 12.500673 -8731 0.094519 0.042463 13.016692 17.534475 -8732 1.000000 1.000000 100.000000 100.000000 -8733 0.056654 0.056701 9.650372 13.883389 -8734 0.055355 0.058486 12.121190 12.796378 -8735 0.059937 0.030024 8.793673 10.019210 -8736 0.058926 0.034078 9.229021 10.377186 -8737 0.074492 0.045626 8.406796 12.424044 -8738 0.073409 0.044519 11.700740 11.505795 -8739 0.056226 0.032376 7.885074 7.895974 -8740 1.000000 1.000000 100.000000 100.000000 -8741 0.070955 0.039677 6.259201 7.389885 -8742 0.067337 0.022647 8.498581 11.418556 -8743 1.000000 1.000000 100.000000 100.000000 -8744 0.068376 0.059227 8.066618 11.068661 -8745 0.053218 0.030560 12.508179 20.652301 -8746 0.067550 0.033195 10.045203 10.446343 -8747 0.089810 0.068952 6.767536 8.596150 -8748 0.084131 0.052908 15.763544 15.627182 -8749 0.060187 0.037808 8.023443 9.853268 -8750 0.082017 0.041470 8.644761 10.168148 -8751 0.066575 0.046538 9.785987 11.370609 -8752 0.064559 0.064989 11.588684 17.220910 -8753 0.054758 0.013633 5.856232 8.096516 -8754 0.063462 0.060204 10.037777 15.542309 -8755 0.078436 0.045279 7.220865 11.979853 -8756 0.052610 0.026124 10.248366 15.646054 -8757 0.090982 0.040770 9.559443 11.113959 -8758 0.052653 0.016496 6.415270 7.714136 -8759 0.074971 0.070270 7.602837 9.933160 -8760 0.078578 0.029820 11.889415 12.604681 -8761 1.000000 1.000000 100.000000 100.000000 -8762 0.086913 0.060999 13.079144 15.307468 -8763 0.061153 0.040834 6.635127 6.429560 -8764 0.066313 0.050714 8.016666 11.513791 -8765 0.064143 0.045425 10.677645 16.203897 -8766 0.099345 0.096147 10.876713 13.240274 -8767 0.054984 0.040910 10.289634 10.959652 -8768 0.048472 0.033530 11.120570 12.913219 -8769 0.053034 0.032442 11.109522 14.142330 -8770 0.059656 0.039486 6.778408 8.857855 -8771 0.060882 0.035106 7.534877 7.865804 -8772 0.093153 0.030768 7.956182 8.464224 -8773 0.070779 0.037434 10.064575 9.093770 -8774 0.048131 0.033656 9.102403 9.343080 -8775 0.069049 0.031406 11.269399 13.184199 -8776 0.081749 0.048677 8.470218 10.350465 -8777 0.089101 0.042034 7.230467 7.528854 -8778 0.061744 0.033361 11.660260 12.690465 -8779 0.038712 0.026925 7.899105 12.536026 -8780 0.069636 0.037131 9.568381 10.565410 -8781 0.044870 0.016970 8.433574 9.641246 -8782 0.078979 0.050638 11.082835 16.290680 -8783 0.074511 0.029938 12.267831 14.554452 -8784 1.000000 1.000000 100.000000 100.000000 -8785 0.077538 0.040344 10.268091 10.578859 -8786 0.065525 0.048849 7.940238 8.959903 -8787 0.080231 0.037842 12.556462 12.363298 -8788 0.045547 0.027419 9.697849 10.250856 -8789 0.079005 0.049114 8.014772 8.066075 -8790 0.073058 0.056465 8.024513 12.944991 -8791 0.065782 0.062914 7.979242 11.065982 -8792 0.075479 0.052917 10.787975 11.758556 -8793 0.067799 0.046760 6.392503 8.781786 -8794 0.039899 0.031346 6.275356 7.942054 -8795 0.061640 0.037792 6.980186 10.440806 -8796 0.071943 0.027366 11.496303 15.990260 -8797 0.082528 0.051207 9.759987 12.155043 -8798 0.093824 0.066977 11.464188 14.656231 -8799 0.065086 0.017821 4.680519 7.499897 -8800 0.063119 0.041578 11.430665 15.445500 -8801 0.099632 0.077743 15.344252 14.593912 -8802 0.073688 0.045543 14.316899 15.490699 -8803 0.064119 0.043611 8.697030 13.925615 -8804 0.092249 0.046832 7.552088 11.973052 -8805 1.000000 1.000000 100.000000 100.000000 -8806 0.069552 0.044732 9.971620 9.867710 -8807 0.053137 0.040197 10.491031 15.449766 -8808 0.071654 0.044756 11.954840 15.909694 -8809 0.044624 0.019880 8.795498 9.256913 -8810 0.069660 0.077711 10.112636 14.277485 -8811 0.062506 0.030889 8.868305 11.713619 -8812 0.072492 0.043433 9.576435 11.998017 -8813 1.000000 1.000000 100.000000 100.000000 -8814 0.065840 0.038463 12.762588 8.866178 -8815 1.000000 1.000000 100.000000 100.000000 -8816 0.074934 0.031061 15.701079 14.375372 -8817 0.061740 0.024427 12.201647 11.982158 -8818 0.088337 0.070596 9.402079 10.382554 -8819 0.070289 0.035300 6.407773 7.405035 -8820 1.000000 1.000000 100.000000 100.000000 -8821 0.078038 0.038525 8.233130 9.174191 -8822 0.075873 0.044447 11.563644 13.729143 -8823 0.090910 0.045853 9.984731 7.872360 -8824 0.095845 0.064108 9.099022 15.469370 -8825 0.082029 0.037904 8.299187 9.487440 -8826 0.066335 0.035843 9.308575 11.199606 -8827 0.067523 0.054795 11.336251 14.173580 -8828 0.088994 0.037787 9.450154 15.832568 -8829 0.056467 0.055375 10.869607 14.567690 -8830 0.083537 0.084208 10.266919 18.167412 -8831 0.071965 0.041091 9.228112 9.866666 -8832 0.067929 0.041940 10.202721 10.549203 -8833 0.082783 0.053663 7.503822 13.065465 -8834 0.068616 0.034021 8.763835 11.579089 -8835 0.098123 0.050506 12.501784 17.259665 -8836 0.046571 0.028369 10.812620 12.157114 -8837 0.058004 0.032483 7.818225 11.531855 -8838 0.062687 0.062464 10.091783 13.497216 -8839 0.053731 0.038240 7.766082 9.124903 -8840 1.000000 1.000000 100.000000 100.000000 -8841 0.058946 0.020735 6.279337 7.749111 -8842 0.095554 0.039710 7.143580 11.259176 -8843 0.068136 0.061728 7.343091 7.682036 -8844 0.057986 0.031273 15.866569 13.149749 -8845 0.098149 0.066612 7.329266 15.856667 -8846 0.061452 0.037997 10.744032 13.254225 -8847 0.074912 0.046947 9.695634 9.130416 -8848 1.000000 1.000000 100.000000 100.000000 -8849 0.095457 0.042835 12.117407 17.283846 -8850 0.085906 0.043980 9.533470 15.729962 -8851 0.058750 0.036694 10.433411 11.259127 -8852 0.081961 0.050715 11.288576 10.025974 -8853 0.097937 0.051672 14.535341 9.133042 -8854 0.090541 0.044599 16.371620 19.132159 -8855 0.092174 0.062990 9.410223 16.456453 -8856 0.095957 0.058229 8.539099 16.083434 -8857 0.055002 0.029833 9.069123 12.752297 -8858 0.069017 0.070127 9.985247 18.435898 -8859 0.087653 0.055292 10.245904 14.861108 -8860 0.060819 0.033465 8.768491 12.808210 -8861 0.059134 0.042137 8.726203 11.035159 -8862 0.080371 0.033868 11.114679 16.545385 -8863 0.056030 0.038914 12.173638 11.670939 -8864 1.000000 1.000000 100.000000 100.000000 -8865 0.086557 0.053616 10.421580 12.340852 -8866 0.068898 0.034848 9.397213 12.250324 -8867 0.067344 0.037212 7.394720 12.588345 -8868 0.050344 0.048858 9.429755 14.671794 -8869 1.000000 1.000000 100.000000 100.000000 -8870 1.000000 1.000000 100.000000 100.000000 -8871 1.000000 1.000000 100.000000 100.000000 -8872 0.077906 0.044273 5.834440 8.142448 -8873 0.094581 0.051074 13.409246 14.456650 -8874 0.071060 0.040662 11.203988 15.955913 -8875 0.056807 0.027524 9.750776 9.702686 -8876 0.084567 0.034452 11.103503 8.775131 -8877 0.065918 0.037212 6.184462 11.249502 -8878 0.081042 0.059401 7.167378 13.296954 -8879 0.095760 0.066237 10.677738 13.329390 -8880 0.076552 0.068606 8.939029 14.011127 -8881 0.074390 0.035417 11.205370 12.511901 -8882 1.000000 1.000000 100.000000 100.000000 -8883 0.074946 0.043662 15.422494 15.189289 -8884 0.096516 0.060336 12.907228 20.176171 -8885 0.060919 0.023565 8.439554 13.546337 -8886 0.063174 0.076693 10.585350 16.356130 -8887 0.053559 0.031399 11.503326 12.829343 -8888 0.064862 0.032076 9.080027 8.453991 -8889 0.056327 0.030575 11.789614 11.415009 -8890 0.098960 0.084597 13.691841 15.479413 -8891 1.000000 1.000000 100.000000 100.000000 -8892 0.099087 0.067071 10.885641 12.201308 -8893 0.064061 0.040384 11.302490 10.779549 -8894 0.067994 0.068139 9.509679 11.792374 -8895 0.063593 0.050150 8.709911 12.899827 -8896 0.077480 0.046475 8.684119 11.065904 -8897 0.054027 0.069816 8.038174 16.776204 -8898 0.084738 0.078983 10.129892 15.694827 -8899 0.062674 0.043843 11.037098 10.208469 -8900 0.064102 0.039169 9.108732 8.898932 -8901 1.000000 1.000000 100.000000 100.000000 -8902 1.000000 1.000000 100.000000 100.000000 -8903 0.088021 0.068150 7.202525 13.555410 -8904 0.057693 0.056858 7.229953 9.729656 -8905 0.086000 0.031297 14.877682 13.247548 -8906 0.074017 0.040102 8.507313 9.537067 -8907 0.070364 0.031546 7.097896 8.911060 -8908 1.000000 1.000000 100.000000 100.000000 -8909 0.093294 0.050077 9.625847 13.953599 -8910 0.067779 0.037282 10.700662 15.654939 -8911 0.084074 0.054751 9.880560 9.358162 -8912 0.081721 0.059215 8.568390 11.142247 -8913 0.082979 0.025234 9.059013 12.228961 -8914 0.057737 0.025312 8.435482 13.196120 -8915 1.000000 1.000000 100.000000 100.000000 -8916 0.099246 0.050051 11.295536 16.212352 -8917 0.049541 0.024305 9.089911 10.454830 -8918 0.055650 0.035554 8.355965 14.506686 -8919 0.077500 0.030021 9.225939 15.621136 -8920 0.079849 0.035498 6.875326 12.775860 -8921 1.000000 1.000000 100.000000 100.000000 -8922 0.074714 0.065738 11.356053 18.091722 -8923 0.083877 0.057881 11.611239 16.655020 -8924 0.058026 0.048863 10.440026 13.739718 -8925 0.060279 0.029903 8.615231 9.255772 -8926 0.075678 0.037343 14.233676 19.306635 -8927 0.083142 0.077302 9.554859 13.726537 -8928 0.065239 0.031359 9.644422 9.578262 -8929 0.070710 0.033455 10.370387 11.898294 -8930 0.066451 0.051015 17.490959 21.418206 -8931 0.075302 0.042707 11.650875 18.416002 -8932 0.086335 0.084474 6.726241 10.652872 -8933 0.091073 0.066008 16.611679 20.134687 -8934 0.060401 0.024716 9.057770 8.862806 -8935 0.094044 0.049554 8.805436 9.999001 -8936 1.000000 1.000000 100.000000 100.000000 -8937 1.000000 1.000000 100.000000 100.000000 -8938 0.097111 0.044660 17.997591 19.477452 -8939 0.086363 0.054208 16.140043 16.201791 -8940 0.077129 0.080656 13.804359 13.207532 -8941 0.099201 0.085957 8.901794 12.544509 -8942 0.063860 0.037763 11.827980 14.546326 -8943 0.063227 0.039003 7.091159 11.061046 -8944 0.058781 0.040166 8.472210 11.406637 -8945 0.067414 0.031728 10.162139 8.382011 -8946 0.078272 0.050873 9.273452 8.569802 -8947 0.076981 0.048518 10.075668 15.552199 -8948 0.099583 0.055386 12.558381 11.616130 -8949 0.059527 0.030624 9.521687 16.026403 -8950 0.068996 0.033777 10.005718 15.719293 -8951 0.075630 0.048689 11.462281 14.459231 -8952 0.057855 0.027126 8.311040 12.753182 -8953 0.049966 0.028415 6.838143 7.507541 -8954 0.092498 0.087854 11.340295 13.754939 -8955 0.080243 0.037341 8.766798 12.677972 -8956 0.082889 0.082231 12.177414 13.577090 -8957 0.063128 0.031981 9.304048 11.836083 -8958 0.072309 0.039132 6.008521 8.355014 -8959 0.044742 0.036088 11.719394 15.248911 -8960 0.067947 0.038442 7.376865 12.982441 -8961 1.000000 1.000000 100.000000 100.000000 -8962 0.075268 0.049830 7.747055 7.657364 -8963 0.090371 0.055199 7.014997 15.023570 -8964 0.070588 0.045526 13.393474 14.312031 -8965 1.000000 1.000000 100.000000 100.000000 -8966 0.060332 0.033982 7.047230 8.681635 -8967 0.053175 0.025260 7.614804 8.962389 -8968 0.053642 0.044346 9.109240 10.076325 -8969 0.065120 0.056043 8.533902 15.687593 -8970 0.091758 0.045137 8.467462 14.863073 -8971 0.086892 0.068555 9.894338 16.890197 -8972 0.065815 0.084947 11.055946 14.298857 -8973 1.000000 1.000000 100.000000 100.000000 -8974 0.054694 0.015256 10.295069 14.549066 -8975 1.000000 1.000000 100.000000 100.000000 -8976 0.069883 0.036836 12.526900 12.289510 -8977 0.089868 0.070429 8.665809 15.507933 -8978 1.000000 1.000000 100.000000 100.000000 -8979 0.085947 0.052467 11.193765 21.982244 -8980 0.074401 0.064287 16.890569 17.460354 -8981 0.092695 0.081902 11.389284 12.052670 -8982 0.066029 0.065240 7.850222 12.308356 -8983 1.000000 1.000000 100.000000 100.000000 -8984 0.054553 0.036069 13.141134 17.446443 -8985 0.065258 0.033074 8.851902 10.630665 -8986 0.080922 0.043902 6.669997 8.173128 -8987 0.056587 0.033032 6.873840 10.136137 -8988 0.074428 0.053242 9.687011 15.736132 -8989 0.048386 0.030242 8.973762 14.363526 -8990 0.072879 0.051662 8.716342 11.621152 -8991 0.062999 0.040816 6.283770 11.429916 -8992 0.098661 0.056845 9.408928 12.821608 -8993 0.086734 0.065203 12.104296 13.548171 -8994 0.072049 0.055301 10.056556 14.525009 -8995 0.047663 0.021770 5.282660 7.605929 -8996 0.081783 0.043162 7.563595 9.646036 -8997 1.000000 1.000000 100.000000 100.000000 -8998 0.089677 0.057174 13.980708 16.216476 -8999 0.066439 0.042537 7.842398 11.953589 -9000 0.076417 0.058939 8.088476 11.880980 -9001 1.000000 1.000000 100.000000 100.000000 -9002 0.080314 0.053411 8.476018 13.591348 -9003 0.077036 0.056267 9.495437 14.770307 -9004 0.089437 0.053426 9.821934 12.480171 -9005 0.068682 0.056298 8.808638 8.922560 -9006 1.000000 1.000000 100.000000 100.000000 -9007 0.053678 0.038752 8.488179 11.170396 -9008 0.081591 0.039518 7.771452 10.268796 -9009 0.092877 0.054558 7.308940 8.671739 -9010 0.059913 0.050165 12.077069 11.030892 -9011 1.000000 1.000000 100.000000 100.000000 -9012 1.000000 1.000000 100.000000 100.000000 -9013 0.066780 0.025505 8.559234 12.677833 -9014 0.052985 0.044337 8.361811 11.474747 -9015 0.076571 0.034396 10.764707 14.483055 -9016 0.084761 0.046238 9.520752 12.983861 -9017 0.086601 0.048093 7.793295 11.168643 -9018 0.095986 0.060016 10.584761 14.654947 -9019 0.073345 0.066147 11.253980 9.962927 -9020 0.040686 0.023896 6.364544 10.892371 -9021 0.085889 0.033951 9.170187 11.366758 -9022 0.076048 0.052804 7.996930 11.409079 -9023 0.045603 0.023241 10.443300 9.258581 -9024 0.077052 0.032916 10.509518 11.026639 -9025 0.045206 0.038492 8.992962 10.591115 -9026 0.096248 0.068447 11.915991 12.613756 -9027 0.094509 0.068366 7.647301 10.977158 -9028 0.075469 0.063980 6.734568 8.737852 -9029 0.050609 0.025119 6.973779 9.439581 -9030 0.062277 0.025947 10.102445 9.831826 -9031 0.052404 0.021086 11.572276 16.852601 -9032 0.063325 0.034426 10.104974 13.501808 -9033 1.000000 1.000000 100.000000 100.000000 -9034 0.077584 0.054310 7.722237 13.627483 -9035 1.000000 1.000000 100.000000 100.000000 -9036 1.000000 1.000000 100.000000 100.000000 -9037 0.085215 0.047986 13.346762 12.307523 -9038 0.070193 0.026696 8.524481 11.563240 -9039 0.073933 0.052196 7.289390 9.857764 -9040 0.048668 0.024186 10.750277 10.933939 -9041 0.049744 0.021907 7.926006 11.230260 -9042 0.080244 0.029107 10.934935 19.638992 -9043 1.000000 1.000000 100.000000 100.000000 -9044 0.068539 0.031821 13.582245 14.954132 -9045 0.084308 0.046949 10.093635 7.905629 -9046 1.000000 1.000000 100.000000 100.000000 -9047 0.048239 0.033854 10.110917 11.850288 -9048 0.087006 0.042522 10.751524 10.815963 -9049 0.090222 0.073377 14.010830 24.567789 -9050 0.065755 0.036887 8.479855 12.900312 -9051 0.066821 0.057659 7.826754 11.285474 -9052 1.000000 1.000000 100.000000 100.000000 -9053 0.084721 0.051013 6.440431 13.097503 -9054 0.062121 0.041253 8.280555 10.086787 -9055 0.089515 0.053848 11.048107 16.446992 -9056 0.039494 0.032307 7.790942 9.638201 -9057 0.071540 0.041590 10.439870 14.347264 -9058 1.000000 1.000000 100.000000 100.000000 -9059 0.073344 0.033296 7.337632 9.168527 -9060 1.000000 1.000000 100.000000 100.000000 -9061 0.079106 0.072721 10.461763 14.333340 -9062 1.000000 1.000000 100.000000 100.000000 -9063 0.067897 0.029911 7.957738 11.691997 -9064 0.090655 0.054986 9.711518 10.369982 -9065 0.085275 0.044622 8.347841 13.634617 -9066 0.088316 0.043773 11.556945 15.836116 -9067 0.098825 0.065075 9.868473 12.356443 -9068 0.095888 0.046483 14.917730 15.026284 -9069 0.045526 0.035662 11.378812 18.341376 -9070 0.099737 0.062776 13.570155 16.599331 -9071 0.060510 0.032900 8.951147 13.470180 -9072 0.084588 0.034691 10.570316 9.449827 -9073 0.095673 0.058958 12.034531 16.579354 -9074 0.074550 0.049608 7.026342 14.263382 -9075 0.099722 0.049520 10.306970 8.762271 -9076 0.058656 0.036840 11.087477 18.343065 -9077 1.000000 1.000000 100.000000 100.000000 -9078 0.071361 0.041169 9.364125 9.888005 -9079 1.000000 1.000000 100.000000 100.000000 -9080 0.050737 0.032184 9.508736 9.733429 -9081 0.087181 0.053934 5.622296 8.872317 -9082 0.077808 0.054422 8.774363 10.120869 -9083 0.041441 0.026613 7.582934 10.838183 -9084 0.056050 0.028954 9.799596 13.194297 -9085 0.064465 0.029422 8.678386 11.103018 -9086 0.059578 0.032751 12.480514 7.633528 -9087 0.084071 0.059159 8.801456 11.839167 -9088 0.053205 0.039687 12.926755 11.443352 -9089 0.070171 0.032343 7.964751 8.024155 -9090 0.080188 0.037248 10.446884 11.093203 -9091 1.000000 1.000000 100.000000 100.000000 -9092 0.068662 0.034862 8.959846 10.332405 -9093 0.081958 0.052488 10.833579 13.998868 -9094 0.065868 0.050273 9.601932 13.473562 -9095 0.084271 0.040890 8.504566 11.010194 -9096 0.073194 0.037496 13.520239 15.502674 -9097 0.077326 0.079462 11.478077 17.572826 -9098 0.095116 0.033453 10.364141 13.778217 -9099 0.046264 0.028703 7.852451 10.759016 -9100 0.074382 0.083040 6.518694 10.266572 -9101 0.048344 0.026429 9.793842 10.140460 -9102 0.080320 0.037690 14.738296 12.097882 -9103 0.074040 0.054434 8.847125 9.200812 -9104 0.061621 0.025431 8.896123 10.084083 -9105 0.063215 0.036399 8.438932 12.200639 -9106 0.070794 0.044735 14.072908 14.482839 -9107 0.057290 0.049150 8.719283 9.388513 -9108 0.046203 0.057175 9.248821 9.252103 -9109 0.076344 0.039345 11.532665 11.724395 -9110 0.072021 0.038928 6.568464 7.877383 -9111 0.087824 0.036905 8.607250 10.563542 -9112 0.062848 0.040058 7.261451 11.112776 -9113 0.041806 0.033476 10.343871 11.827833 -9114 0.097554 0.064279 12.745561 13.786004 -9115 0.047001 0.029247 11.251193 13.026074 -9116 0.074013 0.053050 8.426070 12.194575 -9117 0.082491 0.059323 9.463831 10.273095 -9118 0.080700 0.040564 9.818307 12.278159 -9119 0.072544 0.028097 12.749726 16.025699 -9120 0.074136 0.032182 10.325537 17.897131 -9121 0.063509 0.072888 6.943815 9.677904 -9122 0.080982 0.035523 7.015696 12.069666 -9123 0.068647 0.038293 12.172463 18.001980 -9124 0.082234 0.034993 14.644631 22.499883 -9125 0.076014 0.025352 8.112209 12.090470 -9126 0.076017 0.030547 6.674338 10.706111 -9127 0.069900 0.042101 11.019410 10.351220 -9128 0.068710 0.038927 7.227901 11.580658 -9129 0.097869 0.069619 12.063996 14.540934 -9130 0.085710 0.051133 10.223212 11.947074 -9131 0.085927 0.050527 7.145436 12.352964 -9132 0.051123 0.031103 7.659880 8.969882 -9133 0.044035 0.033747 9.458041 12.418513 -9134 0.075587 0.040769 10.468359 16.292086 -9135 0.058036 0.044004 7.735921 14.323369 -9136 0.030126 0.016528 7.114805 9.984273 -9137 0.084330 0.046306 12.847140 12.183638 -9138 0.040843 0.026666 9.349868 10.927011 -9139 0.056283 0.053145 9.987335 10.613515 -9140 0.055733 0.035622 12.054887 12.538724 -9141 0.087602 0.085869 10.310392 14.160433 -9142 0.071878 0.045880 10.980888 12.735866 -9143 0.074240 0.040611 6.046525 14.180810 -9144 0.051898 0.020701 6.941091 17.631808 -9145 0.067143 0.041411 11.881312 16.175539 -9146 0.042376 0.019967 7.764357 11.032575 -9147 1.000000 1.000000 100.000000 100.000000 -9148 0.057927 0.052327 10.887975 14.957583 -9149 0.089355 0.052224 9.297894 11.905458 -9150 0.047423 0.027423 10.465657 11.620188 -9151 0.071696 0.043858 10.697200 9.532136 -9152 0.053220 0.032396 15.257550 13.779881 -9153 0.060941 0.039413 6.140920 11.794721 -9154 0.090596 0.066558 8.146568 10.774211 -9155 0.089086 0.040202 15.261416 17.343126 -9156 0.048601 0.047662 15.095874 18.368764 -9157 1.000000 1.000000 100.000000 100.000000 -9158 0.080207 0.044750 12.513085 12.519534 -9159 0.060398 0.029904 10.632968 12.379027 -9160 0.076792 0.043872 7.723684 11.038065 -9161 0.051601 0.038473 8.357476 9.046239 -9162 0.062133 0.038704 15.435126 12.930700 -9163 0.064474 0.032095 8.622719 9.792073 -9164 0.050177 0.029777 10.873714 14.742027 -9165 0.046503 0.035698 11.296991 12.600084 -9166 0.056462 0.041731 13.011245 14.333646 -9167 0.077006 0.076837 6.785127 10.185312 -9168 0.066530 0.042781 7.862357 9.392051 -9169 0.053367 0.036247 7.871326 9.242529 -9170 0.089569 0.034948 11.627281 13.388750 -9171 1.000000 1.000000 100.000000 100.000000 -9172 0.074114 0.032836 7.608192 11.567938 -9173 0.082473 0.049203 11.254492 16.571131 -9174 0.076316 0.032183 9.344583 11.767813 -9175 0.094483 0.048710 10.089559 14.131047 -9176 1.000000 1.000000 100.000000 100.000000 -9177 0.081099 0.076527 8.948237 9.981169 -9178 0.050947 0.024012 5.891112 9.455509 -9179 0.063486 0.033353 8.304633 14.443946 -9180 0.052552 0.027024 4.467556 8.901662 -9181 0.080753 0.037878 15.095181 14.262124 -9182 0.085294 0.029543 10.134444 13.044133 -9183 1.000000 1.000000 100.000000 100.000000 -9184 0.088087 0.027764 7.307367 11.058537 -9185 0.077211 0.044957 7.893247 10.340213 -9186 0.061214 0.046652 12.596601 18.035283 -9187 0.070983 0.044567 6.695543 11.085818 -9188 1.000000 1.000000 100.000000 100.000000 -9189 0.066978 0.043450 7.440634 15.544291 -9190 0.063742 0.048875 14.923218 17.577883 -9191 0.057361 0.045003 9.005183 10.638117 -9192 0.064554 0.025318 8.622545 9.677087 -9193 0.061778 0.032553 10.568033 13.801736 -9194 0.072493 0.047702 6.896683 10.076070 -9195 0.073432 0.040070 7.826152 10.852943 -9196 1.000000 1.000000 100.000000 100.000000 -9197 0.068512 0.051568 10.793084 10.468945 -9198 0.041766 0.027093 5.897317 8.179994 -9199 0.055911 0.044226 9.282596 14.464841 -9200 0.081433 0.052789 9.151117 13.197169 -9201 1.000000 1.000000 100.000000 100.000000 -9202 0.049077 0.036782 7.167900 11.709043 -9203 0.068481 0.057684 9.837876 17.067926 -9204 0.093822 0.037060 10.860147 14.636883 -9205 0.090110 0.036980 9.389344 11.286699 -9206 0.070008 0.055576 6.633063 9.509309 -9207 0.071907 0.034210 13.879579 14.383602 -9208 0.071082 0.055074 14.962883 18.427918 -9209 1.000000 1.000000 100.000000 100.000000 -9210 0.052981 0.020947 10.718843 15.155680 -9211 0.049997 0.020023 6.392287 11.029218 -9212 0.061766 0.027791 7.829381 9.386266 -9213 0.066662 0.036507 7.800192 10.463862 -9214 0.088495 0.047588 8.638588 11.573941 -9215 0.076914 0.044804 8.157757 15.924327 -9216 0.087600 0.042567 7.151597 6.918866 -9217 0.060901 0.055337 8.567738 11.283385 -9218 0.070777 0.064769 8.554673 11.676986 -9219 0.068871 0.033835 10.244455 9.708808 -9220 0.096325 0.040160 11.083829 13.438463 -9221 1.000000 1.000000 100.000000 100.000000 -9222 0.079066 0.053803 9.739230 9.941289 -9223 0.080325 0.052830 10.679155 12.998452 -9224 0.044757 0.022089 6.446474 13.483892 -9225 0.085401 0.046545 6.996769 12.326052 -9226 1.000000 1.000000 100.000000 100.000000 -9227 0.055114 0.031356 10.740761 12.363648 -9228 0.040866 0.017304 6.279798 9.118557 -9229 0.079528 0.044137 7.811045 13.978344 -9230 0.067081 0.073868 10.646880 16.276577 -9231 0.062305 0.044677 9.536217 17.909894 -9232 0.065151 0.058199 12.322911 11.951220 -9233 0.096585 0.063288 13.623919 17.346626 -9234 0.068615 0.039729 5.484388 8.446283 -9235 0.097136 0.037593 8.362488 11.474350 -9236 0.057485 0.039522 8.242371 9.334341 -9237 0.053453 0.021822 6.927529 8.862847 -9238 0.070199 0.048513 5.743084 9.987103 -9239 0.063066 0.052500 8.684597 10.018258 -9240 1.000000 1.000000 100.000000 100.000000 -9241 0.055463 0.033770 8.269522 13.123062 -9242 1.000000 1.000000 100.000000 100.000000 -9243 0.060719 0.047268 7.881218 10.943177 -9244 0.079430 0.049022 6.804699 11.326896 -9245 0.076198 0.044747 9.255297 16.916779 -9246 0.099321 0.034673 7.834498 11.459067 -9247 0.095692 0.073608 9.918489 14.775485 -9248 0.085525 0.056000 13.974928 14.013193 -9249 0.089118 0.041993 16.202702 13.385891 -9250 0.040225 0.025116 5.898731 8.809487 -9251 1.000000 1.000000 100.000000 100.000000 -9252 0.063921 0.034954 7.874255 14.568758 -9253 0.065280 0.055905 14.439468 23.065925 -9254 1.000000 1.000000 100.000000 100.000000 -9255 0.073342 0.084833 10.352511 10.020835 -9256 0.081923 0.027412 10.392021 11.285586 -9257 0.051069 0.024373 7.386528 12.711565 -9258 0.081239 0.048947 6.625919 7.862519 -9259 0.084028 0.049689 7.996209 10.274889 -9260 0.048776 0.036447 7.251372 9.892532 -9261 0.082652 0.050229 9.568439 11.454601 -9262 0.084259 0.066923 9.890015 20.086334 -9263 0.064167 0.056577 10.610542 11.502988 -9264 1.000000 1.000000 100.000000 100.000000 -9265 0.075298 0.040663 7.126859 8.358381 -9266 0.051988 0.034360 8.625495 12.038378 -9267 0.057269 0.014241 7.157222 9.642818 -9268 1.000000 1.000000 100.000000 100.000000 -9269 0.080811 0.032239 8.776121 14.669053 -9270 0.078339 0.045000 15.882650 21.627189 -9271 0.061261 0.049858 10.409900 9.818403 -9272 0.095748 0.059651 9.248729 10.509724 -9273 1.000000 1.000000 100.000000 100.000000 -9274 1.000000 1.000000 100.000000 100.000000 -9275 0.048324 0.025335 6.086259 8.933023 -9276 1.000000 1.000000 100.000000 100.000000 -9277 0.055348 0.025964 9.592955 12.200119 -9278 1.000000 1.000000 100.000000 100.000000 -9279 1.000000 1.000000 100.000000 100.000000 -9280 0.075782 0.050841 8.044048 14.868040 -9281 0.056491 0.061175 8.043730 13.976859 -9282 0.057212 0.031925 9.003243 12.261735 -9283 0.073095 0.070948 7.763572 13.179777 -9284 1.000000 1.000000 100.000000 100.000000 -9285 0.080294 0.051173 11.234219 16.473580 -9286 0.062960 0.026525 9.514034 10.032130 -9287 0.057870 0.045374 9.264396 12.817187 -9288 0.044977 0.046628 14.262210 15.252636 -9289 0.058755 0.034199 8.575500 12.727130 -9290 0.091229 0.060327 9.225004 13.411199 -9291 0.068595 0.059735 7.356987 9.688509 -9292 0.049211 0.027562 8.367281 8.718253 -9293 0.059860 0.028802 7.848627 11.026826 -9294 1.000000 1.000000 100.000000 100.000000 -9295 0.074584 0.036890 7.822883 8.708379 -9296 0.045996 0.021454 5.723059 6.564897 -9297 1.000000 1.000000 100.000000 100.000000 -9298 0.081000 0.059653 9.760240 15.975280 -9299 0.092078 0.069845 13.037198 16.511600 -9300 0.067182 0.045134 10.949878 15.186783 -9301 0.054251 0.083852 9.058205 11.441704 -9302 0.058850 0.036461 10.592036 13.937842 -9303 0.083099 0.061288 12.399099 20.315890 -9304 0.084099 0.037602 9.127224 10.742375 -9305 0.086186 0.036084 6.467014 9.764480 -9306 0.067350 0.048042 10.811134 9.042674 -9307 0.060523 0.038301 9.390761 12.452023 -9308 0.058509 0.032476 9.015832 13.563832 -9309 0.083465 0.061104 7.976436 11.383454 -9310 0.058562 0.036425 8.336439 18.857718 -9311 0.085398 0.055249 11.160238 19.908472 -9312 0.056792 0.032839 9.192070 12.175684 -9313 0.072063 0.030154 10.858018 11.327873 -9314 0.045388 0.021583 9.329606 13.241451 -9315 0.069472 0.031192 6.514382 11.835254 -9316 1.000000 1.000000 100.000000 100.000000 -9317 0.054696 0.042099 9.107541 10.173910 -9318 0.067775 0.045140 10.957525 13.550424 -9319 0.058291 0.029510 9.821963 8.987813 -9320 0.049237 0.036950 7.146717 12.433816 -9321 0.070188 0.037463 6.330650 9.556770 -9322 0.057561 0.035519 8.936443 13.449926 -9323 0.062871 0.055251 12.637014 11.524413 -9324 0.058108 0.029025 9.870488 12.413530 -9325 0.049178 0.028877 13.352353 14.773040 -9326 0.090221 0.067646 8.755831 9.768306 -9327 0.062493 0.034261 8.082975 9.654785 -9328 0.096712 0.042617 9.536520 13.000752 -9329 1.000000 1.000000 100.000000 100.000000 -9330 0.086872 0.039835 7.036071 6.744387 -9331 0.061394 0.033561 9.915676 9.451755 -9332 0.055417 0.034353 15.367883 16.502616 -9333 0.078918 0.062561 6.955661 10.528530 -9334 0.091978 0.051994 12.990336 14.297918 -9335 0.070816 0.043417 6.745828 16.790932 -9336 0.073159 0.032273 10.087353 14.358090 -9337 0.060565 0.030089 9.816551 8.887446 -9338 0.085065 0.039106 9.911328 13.944679 -9339 0.054936 0.022474 8.468265 11.868120 -9340 0.061493 0.053208 10.343842 10.918432 -9341 0.082817 0.042407 15.411393 16.021162 -9342 0.081958 0.044957 11.643374 11.245422 -9343 1.000000 1.000000 100.000000 100.000000 -9344 0.056737 0.053230 8.416041 11.409996 -9345 1.000000 1.000000 100.000000 100.000000 -9346 0.063341 0.054446 17.124940 14.321552 -9347 0.061812 0.029987 7.641679 12.045421 -9348 1.000000 1.000000 100.000000 100.000000 -9349 0.053852 0.029572 8.790050 14.292745 -9350 1.000000 1.000000 100.000000 100.000000 -9351 0.056602 0.040396 8.424790 16.730105 -9352 0.042521 0.022846 10.404505 11.218590 -9353 0.050014 0.029074 14.522937 12.698431 -9354 1.000000 1.000000 100.000000 100.000000 -9355 0.071489 0.064807 6.015330 9.920868 -9356 0.080546 0.048523 7.544120 9.950008 -9357 0.051151 0.045564 10.586613 11.343441 -9358 1.000000 1.000000 100.000000 100.000000 -9359 0.076730 0.057889 12.379560 14.580588 -9360 0.069731 0.049484 8.956646 12.997577 -9361 0.092246 0.097018 10.590946 14.494601 -9362 0.073780 0.035671 10.858125 11.777715 -9363 0.078825 0.069780 5.893212 10.100991 -9364 0.059488 0.058258 6.490276 9.103545 -9365 0.051307 0.042903 12.467876 12.566761 -9366 0.081616 0.041007 5.691067 9.132435 -9367 0.097849 0.043773 8.655186 9.531968 -9368 0.037725 0.015485 9.014376 10.145383 -9369 1.000000 1.000000 100.000000 100.000000 -9370 0.041287 0.034610 10.242070 10.395919 -9371 0.077816 0.070372 7.771483 12.539889 -9372 0.087740 0.040114 7.781940 9.961333 -9373 0.059101 0.036728 10.274235 11.996323 -9374 0.045427 0.034398 8.364545 9.963909 -9375 0.099972 0.058873 7.863191 14.132948 -9376 0.059384 0.025219 13.285158 13.737695 -9377 0.085194 0.032533 11.048696 10.362165 -9378 0.081807 0.077930 10.905242 18.355839 -9379 0.067115 0.026309 6.502457 11.866387 -9380 0.078112 0.041455 9.860276 9.670178 -9381 0.062680 0.063065 11.841183 17.746610 -9382 0.058119 0.044269 11.070780 12.695285 -9383 0.064860 0.032769 10.473520 10.989362 -9384 0.046782 0.033947 8.259200 8.635022 -9385 0.045812 0.032682 9.694996 8.764902 -9386 0.072998 0.052623 11.378697 9.730241 -9387 0.097208 0.076639 11.353507 14.562707 -9388 0.061332 0.032991 7.950951 11.697634 -9389 0.030487 0.021450 8.439378 13.071309 -9390 0.096301 0.068166 9.467743 13.621310 -9391 1.000000 1.000000 100.000000 100.000000 -9392 0.066162 0.023987 14.107859 16.142599 -9393 1.000000 1.000000 100.000000 100.000000 -9394 0.066155 0.033333 9.592059 10.870119 -9395 0.081881 0.065075 12.550351 13.574932 -9396 0.057254 0.028177 12.790436 12.631050 -9397 0.036202 0.013679 7.515316 9.841170 -9398 0.077647 0.050365 12.020295 13.539629 -9399 0.098632 0.057678 6.311707 10.428092 -9400 0.092878 0.073243 11.098055 12.180485 -9401 0.090149 0.061247 15.384014 16.326442 -9402 0.098275 0.049540 10.792342 15.102485 -9403 0.062721 0.038773 13.498335 13.854572 -9404 1.000000 1.000000 100.000000 100.000000 -9405 0.042359 0.032950 8.120701 9.202898 -9406 0.047522 0.029523 8.238728 10.701983 -9407 0.077172 0.054229 16.291131 15.568314 -9408 1.000000 1.000000 100.000000 100.000000 -9409 0.083932 0.039770 10.857071 15.637565 -9410 0.052778 0.020983 9.424418 10.470948 -9411 0.077611 0.026771 13.083238 15.238966 -9412 0.072234 0.020891 11.576559 10.905304 -9413 0.038446 0.035437 10.171376 9.164256 -9414 1.000000 1.000000 100.000000 100.000000 -9415 0.068239 0.029235 6.363204 8.425645 -9416 1.000000 1.000000 100.000000 100.000000 -9417 0.060203 0.047020 8.188128 13.831302 -9418 0.051987 0.031846 7.376758 10.026116 -9419 1.000000 1.000000 100.000000 100.000000 -9420 0.057238 0.038488 9.887905 12.701508 -9421 0.076179 0.036472 8.526948 10.987381 -9422 0.064342 0.052725 8.643985 11.156627 -9423 0.059478 0.041032 5.395024 8.986674 -9424 0.090325 0.045815 8.278362 8.862805 -9425 0.036941 0.019640 7.378637 10.072725 -9426 0.074644 0.032958 7.648855 12.267695 -9427 0.073120 0.045534 10.281734 14.193919 -9428 0.097280 0.053530 8.117050 10.429517 -9429 1.000000 1.000000 100.000000 100.000000 -9430 1.000000 1.000000 100.000000 100.000000 -9431 0.057192 0.029111 9.228752 11.359928 -9432 0.084719 0.081192 18.923506 17.382902 -9433 0.097865 0.060610 10.132723 12.689064 -9434 0.054553 0.045139 9.319836 10.915049 -9435 0.090196 0.040549 8.658938 11.175103 -9436 0.038745 0.025349 8.962086 9.402572 -9437 0.058424 0.040868 6.864232 11.819395 -9438 0.065178 0.037149 7.025533 10.449199 -9439 1.000000 1.000000 100.000000 100.000000 -9440 0.054518 0.036014 14.929376 14.713686 -9441 0.039723 0.025875 8.915903 9.808975 -9442 0.045162 0.024017 8.178150 15.954495 -9443 0.052807 0.017388 7.221474 6.875281 -9444 1.000000 1.000000 100.000000 100.000000 -9445 0.077326 0.043519 11.014322 12.503751 -9446 0.068789 0.030667 13.408233 14.839751 -9447 1.000000 1.000000 100.000000 100.000000 -9448 1.000000 1.000000 100.000000 100.000000 -9449 0.084081 0.065763 11.727373 12.583054 -9450 0.054318 0.021852 10.656284 9.012787 -9451 0.076015 0.043855 12.882778 17.733073 -9452 0.040315 0.023090 6.301915 7.800073 -9453 0.064507 0.046499 17.146021 15.904865 -9454 0.076487 0.034591 8.280080 13.984138 -9455 0.051689 0.049437 11.366982 13.914857 -9456 0.066518 0.067071 11.846500 8.596359 -9457 0.082216 0.051135 9.663923 12.755831 -9458 0.064327 0.029055 6.118927 9.637392 -9459 0.050155 0.027060 7.946185 9.897580 -9460 0.073995 0.055002 13.971482 16.832925 -9461 0.094932 0.059757 11.054375 16.016887 -9462 0.053632 0.029587 9.653830 9.826455 -9463 0.076483 0.039102 14.425768 21.661422 -9464 0.060345 0.051466 13.547567 12.505290 -9465 0.075536 0.034227 9.409933 13.121643 -9466 0.078450 0.061527 10.775871 12.784553 -9467 0.070264 0.034104 5.809663 8.491702 -9468 0.071457 0.032399 8.675707 12.530362 -9469 0.086425 0.077839 7.672745 13.606509 -9470 0.060466 0.025203 8.042154 10.008283 -9471 1.000000 1.000000 100.000000 100.000000 -9472 0.088515 0.068891 11.515731 12.659457 -9473 0.066360 0.042297 9.084587 13.361634 -9474 0.048986 0.031885 4.045788 7.068826 -9475 0.051358 0.025223 9.740197 12.054648 -9476 0.043869 0.020247 7.147458 7.597554 -9477 1.000000 1.000000 100.000000 100.000000 -9478 0.075171 0.043051 7.300775 11.816681 -9479 0.056000 0.035825 9.240499 13.113196 -9480 0.062280 0.037507 12.082583 14.692435 -9481 0.095617 0.062993 11.422725 15.435089 -9482 0.036804 0.029705 9.210940 10.187815 -9483 0.063531 0.040407 7.423095 9.891849 -9484 0.074643 0.070235 7.056380 11.507914 -9485 0.056297 0.062905 9.100088 11.292604 -9486 0.072200 0.044403 8.548340 12.580281 -9487 1.000000 1.000000 100.000000 100.000000 -9488 0.095452 0.076434 13.268146 13.990301 -9489 0.053101 0.029990 7.175054 8.493646 -9490 1.000000 1.000000 100.000000 100.000000 -9491 0.068718 0.067470 9.387637 11.188978 -9492 0.066051 0.028988 11.447883 10.105130 -9493 0.050447 0.023634 13.283806 14.848785 -9494 0.068957 0.042224 10.255623 16.333542 -9495 1.000000 1.000000 100.000000 100.000000 -9496 0.075035 0.061543 10.673588 14.775176 -9497 0.066827 0.035035 7.855743 16.431852 -9498 0.092283 0.070155 7.396065 13.595947 -9499 0.047475 0.022226 9.931669 9.889341 -9500 0.059891 0.032866 10.444530 15.202648 -9501 0.054861 0.031754 10.669645 12.565233 -9502 0.071267 0.049145 10.855040 13.283318 -9503 0.075357 0.027747 8.939418 10.683114 -9504 0.044656 0.036744 7.543793 8.041644 -9505 0.050820 0.045781 10.108755 17.098450 -9506 0.073781 0.044802 8.666098 8.859337 -9507 0.095533 0.050890 8.767409 14.595117 -9508 0.068481 0.037665 9.079835 9.411544 -9509 0.097849 0.065121 11.732298 17.009502 -9510 0.056420 0.035378 8.534034 9.889804 -9511 0.084949 0.065872 13.668897 19.272400 -9512 0.065479 0.036974 9.312629 10.057186 -9513 0.086289 0.067392 14.619736 19.604797 -9514 0.068590 0.021603 9.267680 11.459200 -9515 1.000000 1.000000 100.000000 100.000000 -9516 0.068122 0.033216 12.861120 14.601860 -9517 0.086243 0.074547 11.787776 15.083379 -9518 0.068207 0.055239 8.292313 10.184895 -9519 0.046988 0.044882 6.250288 12.276497 -9520 0.070722 0.035444 12.099218 16.702342 -9521 0.048504 0.036566 8.766163 9.643330 -9522 0.085939 0.045840 15.057380 15.041197 -9523 1.000000 1.000000 100.000000 100.000000 -9524 0.092866 0.062057 9.627110 9.805041 -9525 0.066331 0.033017 8.999889 15.928755 -9526 1.000000 1.000000 100.000000 100.000000 -9527 0.048067 0.034531 7.236086 7.526322 -9528 0.069313 0.039570 9.176061 12.085108 -9529 0.041407 0.058916 10.907006 17.985197 -9530 0.067919 0.047121 12.105489 15.760636 -9531 0.073620 0.046344 8.762485 13.178885 -9532 0.049207 0.021965 11.324361 7.697811 -9533 0.049256 0.031912 7.854724 12.625439 -9534 0.064965 0.044647 6.797567 9.015636 -9535 0.087540 0.055345 12.286743 24.229278 -9536 0.085627 0.073957 12.773116 22.275424 -9537 0.088007 0.031386 11.620283 13.760214 -9538 0.042932 0.032550 8.766371 9.858870 -9539 0.054033 0.031598 7.736643 13.609305 -9540 0.078604 0.048475 8.082082 8.165837 -9541 0.089198 0.052417 15.081444 12.911182 -9542 0.062733 0.038989 7.402329 12.571570 -9543 0.075213 0.030215 12.037973 12.780453 -9544 0.079463 0.054485 12.388171 15.429884 -9545 0.049029 0.034787 8.467054 11.844169 -9546 0.047348 0.024636 7.727769 10.360018 -9547 0.092625 0.048555 10.010185 14.791289 -9548 0.095614 0.049106 10.478372 10.766244 -9549 0.075591 0.026801 12.434701 13.777692 -9550 0.064470 0.024876 10.789468 12.673291 -9551 0.049379 0.028695 7.753356 10.597390 -9552 0.051028 0.053337 12.325489 17.017353 -9553 0.046469 0.030695 12.718534 13.845831 -9554 1.000000 1.000000 100.000000 100.000000 -9555 0.042493 0.016637 10.268253 12.888951 -9556 0.096338 0.048860 12.558174 13.989883 -9557 0.069583 0.037830 12.989471 10.616857 -9558 0.076630 0.049625 8.728469 10.150948 -9559 0.052555 0.022339 6.383859 6.578047 -9560 0.070742 0.071160 10.661942 13.875245 -9561 0.083812 0.046876 12.121734 13.861717 -9562 0.067376 0.043385 8.108194 9.334568 -9563 1.000000 1.000000 100.000000 100.000000 -9564 0.037379 0.026430 7.259602 13.133462 -9565 0.084997 0.035482 11.297614 11.386404 -9566 0.068172 0.053928 8.968927 11.443137 -9567 0.069781 0.055796 14.724111 13.987840 -9568 0.088701 0.090561 15.331828 20.531897 -9569 0.072269 0.041086 14.563741 13.911862 -9570 0.077155 0.064130 10.457975 14.038624 -9571 0.075284 0.053658 7.922807 17.386400 -9572 0.065837 0.025565 5.904140 8.829875 -9573 0.078886 0.035586 9.584193 12.463374 -9574 0.064039 0.040476 8.185042 13.934409 -9575 0.095811 0.041327 9.412358 15.414666 -9576 1.000000 1.000000 100.000000 100.000000 -9577 0.054552 0.040000 13.829566 13.838369 -9578 0.090022 0.061038 13.088229 17.274414 -9579 0.047183 0.034983 6.405997 7.948032 -9580 0.038624 0.048038 10.118816 12.636637 -9581 0.063010 0.055945 12.013559 11.370359 -9582 0.088380 0.052150 11.487610 14.701568 -9583 0.084185 0.043849 12.847831 15.967301 -9584 0.058518 0.034094 14.543383 19.858423 -9585 0.072236 0.061895 10.024122 11.657306 -9586 0.058362 0.027264 6.738956 7.437986 -9587 1.000000 1.000000 100.000000 100.000000 -9588 0.062038 0.047300 11.223404 9.591950 -9589 0.064226 0.029912 11.682354 13.188071 -9590 0.090354 0.054233 12.910673 19.002137 -9591 0.041072 0.030214 11.007294 13.214347 -9592 0.095143 0.059880 9.635274 10.241559 -9593 0.072567 0.027068 8.443348 9.652703 -9594 0.075577 0.039233 12.929203 14.273289 -9595 0.096513 0.095492 12.064879 15.427581 -9596 0.086940 0.024166 9.409389 11.440233 -9597 0.055918 0.028951 8.022315 13.151938 -9598 0.090102 0.050578 10.433067 14.662561 -9599 0.049130 0.039713 6.337640 7.984615 -9600 0.060630 0.055863 14.858136 13.176880 -9601 0.068254 0.048199 8.997120 14.355767 -9602 0.087310 0.025426 7.622313 12.725373 -9603 1.000000 1.000000 100.000000 100.000000 -9604 0.096462 0.035698 8.951411 13.893221 -9605 0.038027 0.019413 7.179379 6.997486 -9606 0.070141 0.035812 9.037089 12.608170 -9607 0.083404 0.049496 11.354426 14.146507 -9608 0.097347 0.070807 9.519910 15.092591 -9609 1.000000 1.000000 100.000000 100.000000 -9610 0.048096 0.036776 8.456264 9.978777 -9611 0.078054 0.057060 15.293357 18.909079 -9612 1.000000 1.000000 100.000000 100.000000 -9613 0.052708 0.042826 7.055741 7.079661 -9614 0.076738 0.034028 13.156272 14.344233 -9615 0.084773 0.053575 7.790606 12.109303 -9616 0.068603 0.042986 13.251555 13.599374 -9617 0.034009 0.009769 8.880528 14.966641 -9618 0.065805 0.046628 9.248291 15.370736 -9619 0.054927 0.041645 10.310248 13.286730 -9620 0.077568 0.048203 10.166172 15.432717 -9621 1.000000 1.000000 100.000000 100.000000 -9622 0.071395 0.034636 10.964011 13.234930 -9623 0.088313 0.034226 7.741331 10.151660 -9624 0.081579 0.043256 12.926314 11.747275 -9625 0.052688 0.029447 8.910094 9.671376 -9626 0.074541 0.063878 12.372509 15.148703 -9627 0.061467 0.036837 7.864062 15.746582 -9628 0.074285 0.034241 10.098654 12.744771 -9629 1.000000 1.000000 100.000000 100.000000 -9630 1.000000 1.000000 100.000000 100.000000 -9631 0.061171 0.025262 7.934203 12.249827 -9632 1.000000 1.000000 100.000000 100.000000 -9633 1.000000 1.000000 100.000000 100.000000 -9634 0.054371 0.031963 8.910101 14.041782 -9635 0.057412 0.021126 9.463632 12.126959 -9636 0.070591 0.045810 6.241198 9.660847 -9637 0.080309 0.061869 9.708252 15.598987 -9638 0.035006 0.027141 6.886936 10.636476 -9639 0.071761 0.038452 7.912137 10.043613 -9640 0.088277 0.052923 13.105038 12.635160 -9641 0.048428 0.032357 13.101885 15.365951 -9642 0.084903 0.049018 10.614160 12.214910 -9643 0.057930 0.035404 9.633921 11.858232 -9644 0.063819 0.054094 8.285197 10.681136 -9645 0.046172 0.029096 7.250903 13.915990 -9646 1.000000 1.000000 100.000000 100.000000 -9647 1.000000 1.000000 100.000000 100.000000 -9648 0.052437 0.031057 10.291603 14.611404 -9649 1.000000 1.000000 100.000000 100.000000 -9650 0.060552 0.048368 10.773824 17.595711 -9651 0.094426 0.054510 12.804877 22.508898 -9652 0.080972 0.045489 12.020729 17.112267 -9653 1.000000 1.000000 100.000000 100.000000 -9654 1.000000 1.000000 100.000000 100.000000 -9655 0.092870 0.061168 10.181623 10.742623 -9656 0.061807 0.032007 8.738019 8.907133 -9657 0.038628 0.027104 10.969034 12.945009 -9658 0.050324 0.021543 8.982963 13.130176 -9659 0.067369 0.055162 8.904484 11.690127 -9660 0.051965 0.023855 7.337180 11.341554 -9661 0.069058 0.039830 6.759454 7.596371 -9662 0.076835 0.046854 6.356579 9.558143 -9663 0.051823 0.021681 7.359346 12.987426 -9664 0.058983 0.029410 15.853789 19.190756 -9665 0.087713 0.054734 9.412110 14.207191 -9666 0.039935 0.016962 10.303045 9.625736 -9667 1.000000 1.000000 100.000000 100.000000 -9668 0.072970 0.040577 9.434653 15.793285 -9669 0.078221 0.072341 13.118430 16.411952 -9670 0.058269 0.044873 9.543329 10.877942 -9671 0.047088 0.031102 9.767420 13.905739 -9672 0.066985 0.033561 9.012493 11.514124 -9673 1.000000 1.000000 100.000000 100.000000 -9674 0.065116 0.042264 8.410015 13.979822 -9675 0.061189 0.034398 9.044748 12.676731 -9676 0.052815 0.025692 7.932426 7.867830 -9677 0.052214 0.028528 9.387404 11.102617 -9678 0.060193 0.036742 10.946494 11.325742 -9679 0.071312 0.066800 10.899570 20.099244 -9680 0.055392 0.026713 11.622098 14.065425 -9681 0.050750 0.021482 8.665469 14.124478 -9682 0.064344 0.038432 13.600924 15.178367 -9683 0.055189 0.042892 7.476050 9.559038 -9684 0.069189 0.036125 14.290881 16.067395 -9685 0.087418 0.063715 12.602683 19.441233 -9686 1.000000 1.000000 100.000000 100.000000 -9687 0.067641 0.035258 8.684519 12.330408 -9688 0.068324 0.038486 8.726768 12.265206 -9689 0.091652 0.059672 11.734427 12.063970 -9690 0.079931 0.051415 12.527504 15.546470 -9691 0.059742 0.018673 7.068730 8.365872 -9692 1.000000 1.000000 100.000000 100.000000 -9693 0.070098 0.037572 9.023325 14.186093 -9694 0.087051 0.038397 14.374472 10.647377 -9695 0.081493 0.036609 10.345284 11.297647 -9696 0.088379 0.042328 8.665628 11.677415 -9697 0.094084 0.056043 15.799876 15.910269 -9698 0.092780 0.057593 10.603132 15.825909 -9699 0.071013 0.037406 8.602958 11.314637 -9700 0.066358 0.049616 8.119632 11.977687 -9701 0.062640 0.037329 7.702648 9.046412 -9702 0.065012 0.055034 7.788808 8.226440 -9703 0.092198 0.032007 6.734857 12.231449 -9704 0.062991 0.035383 9.024839 11.056350 -9705 0.047567 0.021061 6.213512 12.709108 -9706 0.066762 0.078086 14.009349 19.181087 -9707 0.074405 0.057850 11.230677 10.640975 -9708 0.066757 0.028422 10.309916 11.842738 -9709 0.052566 0.023990 9.799853 9.913731 -9710 0.072957 0.048233 12.292852 23.020338 -9711 0.049593 0.042490 7.592264 12.580269 -9712 0.068193 0.045693 8.090897 7.967852 -9713 1.000000 1.000000 100.000000 100.000000 -9714 0.064134 0.056808 11.572936 11.998767 -9715 1.000000 1.000000 100.000000 100.000000 -9716 0.089398 0.059004 8.936171 12.861559 -9717 0.083982 0.038600 13.724305 13.501781 -9718 0.071687 0.027830 12.009304 19.350197 -9719 0.076144 0.036518 12.088643 18.141253 -9720 0.064531 0.031090 7.730836 10.403763 -9721 0.066612 0.050481 5.877043 6.908067 -9722 0.090717 0.046291 11.073643 21.540563 -9723 0.080101 0.070698 8.634353 9.500412 -9724 0.053734 0.023065 7.505756 10.251655 -9725 0.068723 0.028457 7.871640 11.041099 -9726 1.000000 1.000000 100.000000 100.000000 -9727 0.049402 0.027902 12.406279 16.043772 -9728 0.081238 0.040214 11.804304 9.265159 -9729 0.066024 0.031070 13.838889 18.685064 -9730 0.061440 0.032679 7.256898 10.833033 -9731 0.094048 0.049748 8.085678 9.905866 -9732 0.080615 0.063997 13.125441 18.582224 -9733 0.064339 0.048760 7.583935 8.377956 -9734 0.071266 0.041545 11.073928 12.327199 -9735 0.067221 0.030170 16.461416 19.527770 -9736 1.000000 1.000000 100.000000 100.000000 -9737 1.000000 1.000000 100.000000 100.000000 -9738 0.097197 0.069728 10.993129 21.315289 -9739 0.064767 0.053623 10.795162 12.114163 -9740 1.000000 1.000000 100.000000 100.000000 -9741 0.056188 0.058749 12.117966 19.064333 -9742 0.075440 0.039389 10.936669 13.583749 -9743 0.050663 0.021866 6.610507 9.522680 -9744 0.075256 0.038959 10.413113 15.392928 -9745 0.072620 0.037784 6.807225 9.327310 -9746 1.000000 1.000000 100.000000 100.000000 -9747 0.056940 0.038182 8.534551 9.933191 -9748 0.078240 0.057353 10.706465 17.311867 -9749 0.094881 0.044320 9.016041 5.939366 -9750 1.000000 1.000000 100.000000 100.000000 -9751 0.052540 0.031071 7.038441 9.372404 -9752 1.000000 1.000000 100.000000 100.000000 -9753 0.072462 0.048123 10.214818 12.385902 -9754 0.075172 0.042663 12.002846 10.737308 -9755 1.000000 1.000000 100.000000 100.000000 -9756 0.064222 0.056546 9.993355 13.165976 -9757 0.097513 0.044412 9.538219 9.701621 -9758 0.065362 0.029843 6.180800 11.364819 -9759 0.065325 0.043208 8.517220 12.727831 -9760 1.000000 1.000000 100.000000 100.000000 -9761 0.098760 0.058610 11.805107 10.942281 -9762 0.071092 0.042384 7.835824 7.290357 -9763 0.086458 0.035997 11.376178 9.013811 -9764 1.000000 1.000000 100.000000 100.000000 -9765 0.061747 0.049262 10.291064 13.590822 -9766 0.073752 0.041795 12.989018 11.455960 -9767 0.067071 0.043357 7.812213 12.092439 -9768 1.000000 1.000000 100.000000 100.000000 -9769 0.068529 0.024341 9.380528 11.713696 -9770 0.081075 0.039916 8.372712 9.849649 -9771 0.065319 0.060852 7.587442 13.063565 -9772 0.046811 0.023444 11.613825 10.487806 -9773 0.046817 0.032330 8.670755 13.685302 -9774 1.000000 1.000000 100.000000 100.000000 -9775 0.079384 0.048982 8.802375 14.666879 -9776 0.075834 0.049579 11.486721 17.761808 -9777 0.070325 0.053263 8.547007 9.159487 -9778 0.073529 0.040841 6.780662 9.899956 -9779 0.093546 0.050768 10.978140 8.655256 -9780 1.000000 1.000000 100.000000 100.000000 -9781 1.000000 1.000000 100.000000 100.000000 -9782 0.079086 0.054802 11.060276 15.990802 -9783 0.042928 0.013553 11.640677 9.218632 -9784 0.074869 0.047741 8.281781 9.443548 -9785 0.078019 0.039018 8.624912 10.606010 -9786 0.065102 0.048033 12.181930 12.283657 -9787 1.000000 1.000000 100.000000 100.000000 -9788 0.054813 0.027128 6.679715 10.645887 -9789 1.000000 1.000000 100.000000 100.000000 -9790 0.085522 0.067280 11.332478 15.954061 -9791 0.067970 0.020213 9.227361 10.168248 -9792 0.070490 0.026904 8.794431 15.783217 -9793 0.071672 0.050360 10.228763 11.329867 -9794 0.070060 0.059949 7.607206 11.164787 -9795 0.055835 0.038104 11.423896 10.334127 -9796 0.042942 0.028660 7.709556 11.870799 -9797 0.091561 0.049878 8.910967 11.757648 -9798 0.066130 0.039795 6.397919 10.759468 -9799 1.000000 1.000000 100.000000 100.000000 -9800 0.042731 0.023259 10.568566 16.808136 -9801 0.071875 0.060522 14.414870 15.844024 -9802 0.072095 0.031288 7.900647 11.538823 -9803 1.000000 1.000000 100.000000 100.000000 -9804 0.081292 0.060444 8.190705 10.821973 -9805 0.084285 0.080096 12.044511 11.692423 -9806 0.065438 0.030550 12.607394 11.170766 -9807 0.045625 0.026245 6.502876 7.748771 -9808 0.065601 0.047169 11.068912 12.523183 -9809 0.087656 0.039591 9.463660 12.189341 -9810 0.075676 0.044122 11.216457 16.966831 -9811 0.092264 0.060296 9.093947 18.511311 -9812 0.074226 0.059750 8.944402 16.240781 -9813 0.060017 0.040677 13.607395 14.621365 -9814 0.068580 0.040825 7.399142 10.082066 -9815 0.082239 0.052656 9.317352 14.745979 -9816 1.000000 1.000000 100.000000 100.000000 -9817 0.083879 0.056557 10.760301 11.490093 -9818 1.000000 1.000000 100.000000 100.000000 -9819 0.066966 0.049135 9.999777 12.034608 -9820 0.040358 0.022355 7.439100 12.089313 -9821 0.083185 0.035205 9.922223 12.718859 -9822 0.046413 0.025635 5.902208 13.386631 -9823 0.071953 0.053600 8.594194 8.135930 -9824 1.000000 1.000000 100.000000 100.000000 -9825 0.084722 0.073115 10.288370 11.196685 -9826 0.096482 0.042485 8.009525 12.038988 -9827 0.087095 0.044651 9.782814 7.757635 -9828 0.055866 0.026052 8.558661 10.980280 -9829 0.063302 0.040120 11.563416 13.015442 -9830 0.073712 0.040804 9.670476 11.778053 -9831 1.000000 1.000000 100.000000 100.000000 -9832 0.053991 0.039321 12.035946 12.738421 -9833 0.063348 0.034599 16.002459 16.114981 -9834 0.073986 0.046036 11.829829 20.083289 -9835 0.062888 0.051298 7.590163 9.562633 -9836 0.074493 0.051453 10.214894 11.213856 -9837 0.043109 0.021695 7.429802 9.868319 -9838 0.071980 0.047280 9.229960 10.365057 -9839 0.083996 0.059380 10.332655 14.134021 -9840 0.049582 0.027360 11.438297 16.627952 -9841 0.076219 0.032498 9.457717 16.282895 -9842 1.000000 1.000000 100.000000 100.000000 -9843 0.035841 0.032355 4.845559 6.570104 -9844 0.071373 0.030394 11.027690 13.976113 -9845 0.071005 0.036623 13.784650 14.885098 -9846 0.071220 0.083007 13.370141 19.161176 -9847 0.094550 0.072294 8.603502 9.526604 -9848 0.054798 0.028037 11.277249 17.154495 -9849 0.082176 0.080012 8.239985 10.875678 -9850 0.090036 0.050600 10.211388 10.523135 -9851 0.058325 0.033905 8.456201 10.518689 -9852 1.000000 1.000000 100.000000 100.000000 -9853 1.000000 1.000000 100.000000 100.000000 -9854 0.069216 0.043374 9.228204 13.799051 -9855 1.000000 1.000000 100.000000 100.000000 -9856 0.059505 0.071830 9.923036 15.913218 -9857 1.000000 1.000000 100.000000 100.000000 -9858 0.088583 0.035371 7.566636 10.785718 -9859 0.051966 0.025200 8.670491 18.365153 -9860 0.079662 0.043474 10.617334 10.288498 -9861 0.073057 0.034253 10.902518 11.594471 -9862 1.000000 1.000000 100.000000 100.000000 -9863 0.046542 0.020981 9.323971 10.488700 -9864 0.083345 0.042653 12.036834 8.741051 -9865 0.085289 0.066733 13.469246 13.173296 -9866 0.054934 0.037491 6.444994 9.556775 -9867 0.075309 0.028065 12.871660 12.158672 -9868 1.000000 1.000000 100.000000 100.000000 -9869 0.086107 0.095086 11.980824 14.590829 -9870 0.075759 0.041288 9.785377 11.975155 -9871 1.000000 1.000000 100.000000 100.000000 -9872 0.041071 0.026492 6.506570 7.310725 -9873 0.069959 0.025749 10.132539 14.807667 -9874 0.044633 0.021251 8.931128 7.803585 -9875 0.070458 0.041214 9.073372 14.124930 -9876 0.066889 0.030876 8.617199 8.262081 -9877 0.090185 0.053294 9.764133 8.514638 -9878 0.051974 0.038756 6.652646 12.594215 -9879 0.055988 0.035314 14.899004 11.616912 -9880 0.066810 0.048470 6.111937 8.749248 -9881 0.087104 0.040454 11.680332 14.457222 -9882 0.088077 0.039996 9.848357 14.043753 -9883 0.049708 0.032915 12.142716 14.746870 -9884 0.042659 0.032392 7.893037 9.455603 -9885 0.097552 0.046083 8.881471 13.617986 -9886 1.000000 1.000000 100.000000 100.000000 -9887 0.079056 0.043776 8.574725 11.583619 -9888 0.062456 0.022525 9.279367 10.704974 -9889 0.072183 0.048051 11.213264 17.726652 -9890 0.081718 0.035664 12.408087 14.542230 -9891 0.078433 0.035436 12.661381 13.938260 -9892 0.097573 0.055065 9.681766 15.590083 -9893 0.095096 0.064323 11.113938 21.006296 -9894 0.068946 0.044582 7.509441 11.670015 -9895 0.059454 0.035489 9.601199 12.807628 -9896 0.053352 0.027006 8.381996 8.618857 -9897 0.041377 0.018857 8.863691 13.802791 -9898 0.052771 0.029472 8.556450 12.985720 -9899 0.075966 0.036022 13.677781 17.495667 -9900 0.089187 0.068390 13.887540 21.529118 -9901 0.066838 0.028824 10.321834 8.397003 -9902 1.000000 1.000000 100.000000 100.000000 -9903 1.000000 1.000000 100.000000 100.000000 -9904 0.070318 0.027512 5.383549 5.982205 -9905 0.067560 0.021129 8.197689 13.007717 -9906 0.059276 0.028215 13.951868 15.619260 -9907 0.071171 0.035569 9.492236 11.423651 -9908 0.097865 0.070991 11.606404 15.991760 -9909 0.039754 0.029136 8.616717 8.507102 -9910 0.097278 0.039108 9.552722 11.984482 -9911 0.080219 0.060156 18.275141 18.985097 -9912 0.081304 0.040592 11.305719 14.532328 -9913 0.066822 0.049083 9.798632 12.505441 -9914 0.077446 0.067608 9.201207 8.087675 -9915 0.081389 0.056977 7.085581 13.552815 -9916 0.072313 0.047963 10.218073 18.231630 -9917 0.080345 0.052821 8.338932 13.425211 -9918 0.090037 0.059812 8.251022 11.967902 -9919 0.049149 0.039933 6.045692 10.295241 -9920 1.000000 1.000000 100.000000 100.000000 -9921 0.075172 0.041915 10.330886 10.341565 -9922 0.061020 0.029245 9.613219 11.209035 -9923 0.061336 0.029474 13.916127 13.814910 -9924 0.082766 0.054289 12.294213 12.888817 -9925 0.092643 0.031188 15.204405 15.170328 -9926 0.076996 0.057346 10.410451 13.415025 -9927 1.000000 1.000000 100.000000 100.000000 -9928 0.092349 0.054895 6.352281 8.969228 -9929 0.089809 0.059637 12.109323 13.203153 -9930 1.000000 1.000000 100.000000 100.000000 -9931 0.082681 0.055124 11.955978 16.092379 -9932 1.000000 1.000000 100.000000 100.000000 -9933 0.086950 0.056379 13.282423 13.517806 -9934 0.061492 0.027016 13.001901 12.037267 -9935 1.000000 1.000000 100.000000 100.000000 -9936 0.053899 0.028933 10.683274 11.218957 -9937 0.094161 0.046930 15.845884 23.181677 -9938 1.000000 1.000000 100.000000 100.000000 -9939 0.072576 0.052669 13.709037 14.860595 -9940 0.058780 0.039705 5.691165 10.703504 -9941 1.000000 1.000000 100.000000 100.000000 -9942 0.045608 0.036218 8.356428 10.965989 -9943 1.000000 1.000000 100.000000 100.000000 -9944 0.040274 0.021016 7.288880 8.372708 -9945 0.076733 0.056385 9.692008 14.910740 -9946 0.065241 0.043102 9.733538 9.712327 -9947 0.063850 0.031514 11.457706 12.810091 -9948 0.075734 0.058102 8.405950 10.121900 -9949 0.046801 0.028023 8.088832 9.989647 -9950 0.093376 0.061640 10.563490 17.828838 -9951 0.052447 0.044170 13.012289 14.000530 -9952 0.088398 0.068481 9.350399 20.544830 -9953 0.042147 0.021214 7.814368 8.857259 -9954 0.071682 0.027952 8.136050 10.570841 -9955 0.059444 0.035753 9.183719 7.248796 -9956 0.080654 0.057131 9.644848 20.047297 -9957 0.048152 0.019628 7.964279 9.435597 -9958 0.095939 0.072041 16.502534 14.960729 -9959 0.064186 0.029625 9.427514 9.791830 -9960 0.050100 0.024854 10.588156 18.358950 -9961 0.097765 0.054713 12.997151 18.288886 -9962 1.000000 1.000000 100.000000 100.000000 -9963 0.091968 0.067108 11.899991 13.986294 -9964 1.000000 1.000000 100.000000 100.000000 -9965 0.079883 0.062572 15.260755 13.301128 -9966 1.000000 1.000000 100.000000 100.000000 -9967 0.050958 0.032571 8.568853 14.044439 -9968 0.089641 0.065390 9.761606 13.380344 -9969 0.060062 0.028542 7.252760 9.854929 -9970 1.000000 1.000000 100.000000 100.000000 -9971 1.000000 1.000000 100.000000 100.000000 -9972 0.075825 0.042880 16.437717 15.432581 -9973 1.000000 1.000000 100.000000 100.000000 -9974 0.085226 0.053808 16.197670 21.699804 -9975 0.075433 0.066257 12.526425 14.707993 -9976 0.058395 0.031194 8.176354 7.932118 -9977 0.067891 0.065103 10.270505 12.207341 -9978 0.081002 0.035545 10.491186 11.258536 -9979 0.037971 0.020580 9.459469 13.071005 -9980 1.000000 1.000000 100.000000 100.000000 -9981 0.098142 0.045615 7.167931 20.008848 -9982 0.038797 0.029340 6.657073 7.551918 -9983 0.048565 0.031742 6.948752 10.968509 -9984 0.067851 0.042738 8.376885 9.341133 -9985 0.061358 0.023193 10.165107 12.935793 -9986 0.072467 0.036529 7.054647 13.542640 -9987 0.076363 0.058610 13.703890 17.224158 -9988 0.099443 0.068378 12.527309 19.138424 -9989 0.065888 0.049114 7.866391 16.331361 -9990 0.063286 0.027749 10.265846 10.102630 -9991 0.041118 0.039062 8.071810 11.582058 -9992 0.072049 0.026214 8.350211 14.484402 -9993 0.084429 0.051925 15.072072 12.662981 -9994 0.061112 0.034091 14.872032 11.851345 -9995 1.000000 1.000000 100.000000 100.000000 -9996 0.091816 0.087993 10.277784 17.507529 -9997 0.093448 0.089417 10.070423 14.514612 -9998 0.083835 0.039307 9.380990 13.536962 -9999 0.042842 0.041395 11.199185 11.693451 -10000 0.056437 0.035505 8.365728 14.121690 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_5.out b/pelicun/tests/resources/EDP data/EDP_table_test_5.out deleted file mode 100644 index ed1883ff2..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_5.out +++ /dev/null @@ -1,10001 +0,0 @@ - 1-PID-1-1 1-PID-1-2 1-PID-2-1 1-PID-2-2 1-PFA-0-1 1-PFA-0-2 1-PFA-1-1 1-PFA-1-2 -1 0.061364 0.048515 0.033256 0.020352 7.634901 6.856130 14.685934 12.565554 -2 0.060758 0.067687 0.027976 0.033571 5.601088 6.558925 9.683363 10.133710 -3 0.105738 0.078564 0.057184 0.046485 12.575335 11.127772 14.287231 12.392118 -4 0.048497 0.033446 0.054879 0.026247 9.566818 10.176966 13.955909 12.324853 -5 0.060764 0.053194 0.024307 0.024578 8.962879 7.772640 10.043096 9.005398 -6 0.047859 0.034161 0.025244 0.022384 8.323108 8.387719 10.408101 12.470768 -7 0.080567 0.052216 0.040146 0.022675 11.696443 10.726320 16.719380 12.647788 -8 0.082141 0.066241 0.041236 0.036386 11.143838 9.124809 8.563608 9.522815 -9 0.046716 0.038935 0.027959 0.022860 8.671981 8.461794 8.863070 8.025032 -10 0.102080 0.103357 0.088279 0.081025 7.449146 7.112882 10.884938 12.118143 -11 0.056560 0.050177 0.021466 0.026428 7.880066 6.157210 9.104051 7.042143 -12 0.075079 0.074358 0.048358 0.039443 13.773264 10.035753 17.506664 16.373116 -13 0.071755 0.058040 0.060604 0.039236 10.199460 9.106694 17.074826 17.917331 -14 0.098348 0.090465 0.058314 0.062959 7.960357 5.485841 15.211164 10.721316 -15 0.143364 0.099803 0.059165 0.047346 14.216385 12.958105 14.042366 13.494462 -16 0.085955 0.073521 0.036564 0.031977 8.206005 7.687323 15.384319 14.424093 -17 0.062427 0.044311 0.039685 0.029320 7.480793 7.468979 11.552013 9.751858 -18 0.063827 0.074937 0.031432 0.044728 8.403152 10.098953 11.106118 12.541581 -19 0.070976 0.049020 0.050778 0.026704 10.276296 8.126362 14.135943 9.904609 -20 0.088371 0.059446 0.044677 0.044097 10.321298 8.771536 14.172490 13.056555 -21 0.106782 0.100519 0.072205 0.054809 9.450997 12.290779 13.783527 13.869269 -22 0.100131 0.153327 0.077879 0.090974 12.439218 9.768973 13.793363 12.303758 -23 0.071948 0.057023 0.024154 0.018928 9.922308 6.305011 11.183421 9.400516 -24 0.079565 0.055210 0.030765 0.031937 10.197540 9.590690 10.986851 10.784403 -25 0.065496 0.053221 0.030991 0.023797 7.759767 9.942223 10.165083 10.551786 -26 0.046686 0.055987 0.036982 0.021082 9.236329 8.005883 16.778603 9.535644 -27 0.072064 0.059965 0.058863 0.051209 7.002995 5.441065 14.555897 11.794143 -28 0.091337 0.075727 0.047997 0.036818 13.914388 10.871123 18.748596 17.320402 -29 0.073523 0.071355 0.067329 0.087840 13.238224 9.539709 12.872318 10.008973 -30 0.083213 0.076893 0.047499 0.042323 9.909889 8.053082 10.582683 9.465027 -31 0.067927 0.060133 0.062962 0.037449 11.499778 5.679647 14.204733 8.728188 -32 0.075091 0.073554 0.022587 0.025406 9.888524 9.945380 11.681994 13.207457 -33 0.076177 0.050078 0.072207 0.040349 8.037965 7.540623 13.314690 10.317307 -34 0.105331 0.087924 0.087066 0.077142 11.730366 10.763298 12.293451 12.247979 -35 0.108396 0.115381 0.045550 0.036342 8.297038 8.187885 9.079601 10.816750 -36 0.066311 0.052080 0.024807 0.020969 9.297110 7.244968 15.518840 10.994474 -37 0.057611 0.050529 0.031235 0.032783 7.774496 5.911324 9.871750 8.842486 -38 0.078980 0.064316 0.056491 0.039816 15.266256 9.444052 16.093768 11.788318 -39 0.098653 0.084995 0.103599 0.063821 12.324688 9.858648 10.833371 11.001516 -40 0.078390 0.115463 0.044196 0.066634 8.561965 9.258743 12.874767 13.094575 -41 0.102004 0.056970 0.065337 0.037185 10.390235 8.699099 13.355783 12.717880 -42 0.085795 0.074993 0.040917 0.033846 7.853495 7.780988 9.694579 7.949632 -43 0.095242 0.067183 0.062694 0.037497 10.548754 7.389704 9.496581 9.278596 -44 0.068342 0.052902 0.025988 0.019571 6.541307 5.673511 13.033291 12.050841 -45 0.112658 0.087016 0.087596 0.068796 7.443861 7.027628 13.211736 11.197381 -46 0.051633 0.044167 0.029634 0.034922 10.197507 8.197955 13.250667 13.480263 -47 0.067239 0.060593 0.037684 0.044973 17.620509 12.027227 16.346254 10.908215 -48 0.066267 0.058762 0.048985 0.046021 7.566310 9.572191 12.523890 17.586315 -49 0.084674 0.070380 0.043159 0.056110 7.461739 8.276600 8.581601 10.335006 -50 0.087332 0.088118 0.026115 0.026821 11.176501 9.184807 11.589565 10.474980 -51 0.076337 0.059786 0.039964 0.032825 6.518347 5.964852 9.682070 8.448725 -52 0.096657 0.096930 0.069350 0.063949 11.010807 8.335575 17.836229 12.620195 -53 0.085353 0.078857 0.032033 0.038578 8.444795 9.021348 9.243157 8.853006 -54 0.045191 0.044141 0.016365 0.012834 8.371856 6.835241 9.638072 7.051320 -55 0.096249 0.102466 0.046091 0.046411 7.956938 9.172959 13.032318 11.679617 -56 0.117751 0.089290 0.071737 0.050161 8.115814 7.934988 7.939609 9.118374 -57 0.059350 0.063089 0.034710 0.028952 7.751825 10.400730 7.535596 9.657599 -58 0.086054 0.071342 0.091555 0.056042 7.740554 8.818765 9.847182 7.760323 -59 0.094972 0.075655 0.061771 0.057943 9.141193 6.921477 16.384294 14.005404 -60 0.066396 0.054191 0.035453 0.025108 12.045112 12.283941 15.358766 12.887404 -61 0.059679 0.041312 0.056080 0.044988 8.354672 8.545879 12.538719 11.499458 -62 0.074122 0.054847 0.050287 0.048644 11.294206 10.934011 9.943378 11.893767 -63 0.084230 0.081455 0.039019 0.040991 8.977344 8.544960 14.884033 11.619629 -64 0.111160 0.115157 0.054754 0.053686 14.714773 11.932309 18.318004 13.861945 -65 0.073145 0.057330 0.042621 0.032552 7.285101 7.736557 13.263662 10.587038 -66 0.110824 0.080826 0.064636 0.044238 7.282717 7.382698 13.495050 12.048315 -67 0.052514 0.040583 0.047075 0.038485 14.054982 11.041076 15.403039 14.436153 -68 0.051384 0.064836 0.044192 0.044292 8.625290 6.978294 9.417331 7.372794 -69 0.047938 0.047801 0.028815 0.038373 8.268308 8.663898 10.327094 10.842840 -70 0.046728 0.032722 0.031993 0.021664 6.684634 4.978015 8.551050 7.642681 -71 0.065282 0.057530 0.032342 0.024556 10.884722 7.909902 14.500103 12.577254 -72 0.064408 0.061863 0.034923 0.029015 7.551799 7.724614 12.472875 11.714135 -73 0.057182 0.072428 0.055359 0.058203 8.314778 5.778306 10.436675 8.613708 -74 0.045357 0.054837 0.036629 0.025251 10.436158 7.773886 18.232118 15.012707 -75 0.073535 0.053193 0.033782 0.034039 6.231059 6.428758 9.326653 7.951118 -76 0.091593 0.089446 0.040072 0.044581 6.552067 7.926202 11.191010 8.838529 -77 0.072391 0.070282 0.033137 0.041561 12.439698 10.147994 10.580851 11.007593 -78 0.070220 0.065147 0.046913 0.040832 16.831957 10.059807 17.003789 13.331230 -79 0.042563 0.040582 0.019623 0.016767 8.300289 6.965655 5.469094 7.228720 -80 0.070491 0.050689 0.040458 0.027844 12.039505 12.914398 15.006258 17.854359 -81 0.053633 0.054249 0.032500 0.024148 7.181470 6.418190 10.054068 8.247577 -82 0.101968 0.069286 0.061455 0.044595 6.720313 6.210798 9.338314 10.721933 -83 0.041777 0.029288 0.026198 0.019456 8.233726 6.793618 13.882925 10.249845 -84 0.056091 0.062975 0.031571 0.030181 8.632074 7.003511 15.560298 9.283114 -85 0.080189 0.090906 0.049192 0.063500 9.938775 8.099630 13.870921 12.915410 -86 0.088236 0.089342 0.040723 0.050309 10.081244 8.566033 11.042870 8.431051 -87 0.064821 0.043067 0.045428 0.037410 16.740583 15.255048 16.486022 12.960820 -88 0.081451 0.075379 0.057945 0.055295 12.501522 6.476136 13.053935 9.143476 -89 0.075813 0.058533 0.052500 0.041657 6.000588 6.519097 12.867540 12.116862 -90 0.121795 0.103304 0.055833 0.043334 9.471498 8.028306 9.236030 8.293140 -91 0.066329 0.051546 0.023388 0.017144 6.463249 6.391561 9.489166 10.188424 -92 0.074541 0.078843 0.043912 0.048440 8.792121 9.906045 9.428052 9.883873 -93 0.068621 0.080253 0.045740 0.044900 8.481946 6.385593 8.898344 7.467466 -94 0.067771 0.054489 0.050952 0.035105 8.778369 7.069086 10.219431 9.562320 -95 0.079558 0.075005 0.044092 0.065004 8.056799 5.801027 9.898547 6.661682 -96 0.098689 0.104815 0.078133 0.082739 11.539705 10.616711 13.781740 17.474115 -97 0.081805 0.066429 0.042030 0.029625 10.665673 10.875984 13.938939 12.073278 -98 0.065097 0.063782 0.038942 0.033925 13.199452 12.631303 19.812222 18.309560 -99 0.080459 0.069760 0.049704 0.047614 8.272284 9.753332 13.923026 16.784324 -100 0.127367 0.077932 0.109228 0.056904 9.947680 8.826344 11.764709 10.627012 -101 0.051190 0.052984 0.051322 0.046924 7.211960 8.119973 9.233766 10.716861 -102 0.054797 0.051271 0.027994 0.042912 10.962746 7.501528 12.650950 8.847668 -103 0.110238 0.094651 0.054434 0.055900 7.745452 7.761685 12.542373 12.767490 -104 0.074649 0.047001 0.035207 0.024422 11.556726 9.219098 12.773092 9.428813 -105 0.063692 0.066552 0.045689 0.035108 5.884227 5.873770 10.369420 10.540490 -106 0.060769 0.036562 0.030281 0.026630 5.383208 6.277057 7.130830 6.771799 -107 0.109986 0.090752 0.072374 0.044144 8.664605 11.202819 10.443139 13.395410 -108 0.093768 0.071081 0.059343 0.044984 19.151416 12.845209 22.907083 19.837883 -109 0.097533 0.088137 0.100089 0.083714 8.434120 8.760507 10.084495 8.725222 -110 0.100925 0.060903 0.062952 0.043976 16.328459 11.547234 13.712484 10.853393 -111 0.078805 0.090263 0.059260 0.049700 9.610385 8.504218 10.285175 9.201855 -112 0.068303 0.060341 0.052417 0.043573 5.808673 5.224550 10.061901 7.460261 -113 0.095306 0.097071 0.046926 0.034187 9.925614 9.312139 11.429195 9.969359 -114 0.085011 0.059526 0.041468 0.030019 9.544975 11.864453 12.736847 13.768772 -115 0.072251 0.061702 0.051146 0.028714 16.221104 11.992249 21.171170 15.603097 -116 0.050152 0.046164 0.029643 0.027708 6.818032 7.399178 8.056422 10.587535 -117 0.082614 0.064005 0.044093 0.021826 17.288675 14.852082 18.067949 18.831720 -118 0.073285 0.060855 0.054049 0.035104 10.844708 10.414361 13.122992 14.535050 -119 0.100878 0.078694 0.047181 0.039607 11.133336 10.195598 11.320933 9.856763 -120 0.057995 0.037296 0.046825 0.033314 9.035862 7.562095 10.441262 10.085648 -121 0.075326 0.063520 0.029026 0.035778 12.825163 11.522920 13.387307 12.691786 -122 0.080510 0.076576 0.059502 0.062201 11.726311 9.447670 14.361130 15.465115 -123 0.056803 0.048067 0.042074 0.030211 11.747738 11.832650 17.434727 16.778623 -124 0.097846 0.076451 0.079823 0.065043 17.187188 15.926334 16.788066 12.902502 -125 0.061742 0.053231 0.042397 0.032495 11.864593 10.532884 11.496868 13.549383 -126 0.062116 0.068158 0.042259 0.027018 10.036158 8.227406 17.215649 13.780620 -127 0.148348 0.126451 0.084170 0.062882 10.822627 14.138191 15.719904 14.367896 -128 0.059368 0.059133 0.054431 0.042868 13.345212 12.392630 11.758782 9.472534 -129 0.056514 0.043803 0.043263 0.023903 6.321475 5.179797 11.581178 8.966187 -130 0.073569 0.076661 0.051252 0.047335 6.819703 7.081506 9.650787 9.512450 -131 0.060127 0.043051 0.034128 0.021798 12.302640 10.487979 8.396232 7.996038 -132 0.096044 0.080260 0.028872 0.024860 11.820441 8.646794 14.957505 9.463957 -133 0.088948 0.076244 0.054007 0.037994 14.445828 11.642223 10.904186 11.064875 -134 0.089857 0.064813 0.067800 0.037697 9.995755 8.865531 11.744634 11.750874 -135 0.046252 0.033675 0.024632 0.020126 9.430474 8.489705 11.571557 12.958073 -136 0.076701 0.059381 0.029143 0.025819 11.177382 10.812560 14.613757 11.376961 -137 0.045037 0.031623 0.027977 0.020239 7.265226 8.292275 8.426309 8.864495 -138 0.083716 0.081896 0.046178 0.035431 7.827031 8.093912 13.253261 11.868374 -139 0.066669 0.052800 0.039063 0.034982 9.396715 5.863085 10.920276 7.487087 -140 0.107344 0.107059 0.065420 0.056270 14.576148 11.792750 18.366802 12.615191 -141 0.065514 0.078462 0.056319 0.056097 7.595086 7.383627 14.053658 13.297113 -142 0.061506 0.064245 0.029648 0.034023 7.633108 7.252290 8.234512 9.326551 -143 0.049645 0.051703 0.040653 0.030878 10.529529 7.965003 9.921904 9.505260 -144 0.065242 0.064193 0.040070 0.028992 9.766461 8.857296 12.679826 10.220429 -145 0.139454 0.096857 0.062363 0.046884 9.142647 8.288721 12.205442 11.379802 -146 0.066911 0.047180 0.025311 0.022904 7.427178 6.574029 13.455294 10.645431 -147 0.080935 0.067756 0.044796 0.039321 9.394293 8.611538 10.065493 8.770585 -148 0.070387 0.067835 0.035419 0.030431 12.354158 9.431129 13.243445 9.916831 -149 0.062159 0.058304 0.047273 0.039181 8.498192 8.141183 13.539038 15.040806 -150 0.114544 0.070923 0.067286 0.037811 13.161786 8.182464 18.861355 12.927110 -151 0.100423 0.076260 0.069207 0.039210 9.181155 8.767447 14.920269 16.982402 -152 0.108988 0.086180 0.066751 0.055443 13.551632 8.810378 16.960753 13.179959 -153 0.128643 0.107780 0.094184 0.070947 14.255711 11.520318 15.734830 13.168204 -154 0.088951 0.069401 0.044661 0.031896 8.059646 8.059808 16.689317 13.363802 -155 0.065387 0.054937 0.027036 0.024838 10.584074 10.450441 13.258995 11.428475 -156 0.151923 0.145769 0.114752 0.159010 12.641624 10.343547 16.028266 11.554697 -157 0.105790 0.090926 0.056175 0.033749 11.527682 8.544598 13.222279 10.460548 -158 0.072640 0.076696 0.038861 0.041416 9.507360 9.488454 11.977441 10.142026 -159 0.100832 0.072956 0.054478 0.069239 5.186730 6.857756 8.940647 11.531874 -160 0.119335 0.098014 0.066432 0.038296 14.231408 11.354860 14.861626 14.753290 -161 0.154425 0.119880 0.078509 0.060991 8.894915 11.613264 11.579266 12.691122 -162 0.073693 0.056154 0.078917 0.035158 9.008027 8.285343 13.508969 12.777474 -163 0.095849 0.094628 0.088034 0.067451 9.129802 9.545483 11.044791 11.508850 -164 0.126789 0.089348 0.077252 0.056630 11.195136 7.958324 15.475964 10.687991 -165 0.088386 0.073597 0.027670 0.027774 10.826126 10.677815 19.252782 15.514176 -166 0.072087 0.056126 0.039510 0.026460 8.035530 8.343364 13.502194 11.826347 -167 0.080658 0.082139 0.041386 0.040310 10.438424 8.557624 14.507320 11.839952 -168 0.049794 0.046965 0.025632 0.030543 7.679492 6.128850 8.747782 6.979182 -169 0.077441 0.047751 0.041324 0.027337 10.153431 8.291878 15.129917 11.297438 -170 0.056444 0.054958 0.039121 0.043255 14.361129 11.796132 12.973478 12.412512 -171 0.070821 0.076288 0.037633 0.041401 12.348439 7.179023 12.758928 8.795555 -172 0.080007 0.064497 0.045177 0.035687 7.829802 9.165318 7.738641 8.720008 -173 0.062021 0.078090 0.048203 0.048378 11.728851 12.161393 13.403625 13.545503 -174 0.070156 0.078720 0.038232 0.032443 11.588068 9.476891 12.736903 12.164599 -175 0.077022 0.045895 0.079098 0.046477 9.749085 10.812707 12.458644 14.025450 -176 0.085015 0.109264 0.048664 0.062595 11.960982 12.117207 15.941243 15.181621 -177 0.070317 0.050760 0.037262 0.022503 7.394588 6.137655 9.353272 8.779240 -178 0.049663 0.044407 0.019069 0.018215 7.479827 6.893807 13.938145 11.216286 -179 0.073634 0.065191 0.052554 0.032944 7.891811 6.642547 12.476917 10.213861 -180 0.067180 0.055494 0.033254 0.033755 8.132906 5.788454 9.140472 7.320211 -181 0.047179 0.052266 0.018338 0.021832 9.414973 8.113253 11.491764 11.302731 -182 0.081772 0.092840 0.047757 0.049073 8.158965 7.003334 10.329615 9.716496 -183 0.071181 0.060464 0.044440 0.030808 11.391330 10.462147 11.923349 9.682191 -184 0.058257 0.061873 0.072492 0.079365 11.684615 10.268129 15.245054 12.482421 -185 0.075187 0.055380 0.043068 0.025477 11.631519 9.944424 14.566666 12.377405 -186 0.082371 0.086947 0.061096 0.071137 11.203318 9.264326 11.034112 8.137022 -187 0.046168 0.041933 0.016185 0.016792 13.070231 8.759379 13.155319 9.894027 -188 0.041907 0.043704 0.041319 0.029304 6.899614 9.271008 10.131580 13.556611 -189 0.044688 0.046058 0.028120 0.019119 6.567393 6.603616 9.857715 8.338920 -190 0.099332 0.064128 0.051994 0.039275 7.611587 7.591217 11.536116 10.132128 -191 0.064701 0.052797 0.036552 0.026216 5.844814 5.097020 8.670966 7.434330 -192 0.105884 0.071646 0.067519 0.043561 12.347950 11.502455 14.958156 13.683287 -193 0.085526 0.062554 0.029562 0.023702 9.606784 9.194601 16.455318 13.942475 -194 0.073490 0.075842 0.097743 0.078297 11.778044 11.240554 26.316202 21.486381 -195 0.061491 0.051077 0.030115 0.026156 12.723614 8.129062 16.889452 13.235268 -196 0.120455 0.064007 0.068905 0.044038 10.679821 9.183407 14.693594 14.599294 -197 0.084288 0.063033 0.047469 0.034783 11.488251 8.874268 10.348426 9.053026 -198 0.169225 0.105289 0.084459 0.066465 12.515776 9.052254 24.759127 15.735459 -199 0.078414 0.089115 0.027260 0.027151 12.411361 10.820247 11.942006 11.784505 -200 0.098603 0.066796 0.035181 0.039803 11.505142 11.024298 12.989547 12.395934 -201 0.104240 0.094628 0.114149 0.070500 15.783879 13.186429 20.523708 18.167823 -202 0.069163 0.050474 0.027172 0.029037 12.119417 10.143771 13.061767 12.492672 -203 0.093160 0.089699 0.049166 0.059760 5.416084 6.175104 12.728734 13.919178 -204 0.098065 0.073866 0.059858 0.056556 9.789013 8.614175 14.984604 15.250129 -205 0.049607 0.048132 0.028477 0.031067 7.682517 6.726701 12.460498 12.555265 -206 0.116052 0.086741 0.054496 0.039972 12.464385 12.113876 19.708324 18.283968 -207 0.067008 0.081042 0.036009 0.031840 8.124256 8.204960 10.517484 9.760799 -208 0.093762 0.063630 0.045572 0.033471 7.081101 8.048304 12.933950 11.946433 -209 0.054202 0.043445 0.053647 0.035949 9.260509 7.086036 14.037056 11.513795 -210 0.137150 0.099489 0.077776 0.050707 10.579914 10.921938 16.361213 15.273844 -211 0.076206 0.063195 0.045563 0.026202 9.471815 9.120807 19.171590 17.137016 -212 0.038482 0.038039 0.026250 0.031429 7.426238 6.267012 6.957955 5.258524 -213 0.043337 0.042055 0.019011 0.015023 10.086882 9.494007 13.028746 10.580031 -214 0.053925 0.040917 0.021263 0.021936 9.637734 9.177718 9.950048 9.691870 -215 0.101663 0.066339 0.046784 0.025662 15.180569 12.098051 20.290899 14.269253 -216 0.096130 0.073999 0.042054 0.026628 8.169686 7.864584 7.639561 7.311621 -217 0.065944 0.069991 0.040644 0.033169 11.472205 10.063458 11.187128 11.111619 -218 0.060520 0.052683 0.030528 0.027171 10.353512 8.040091 11.522063 9.456962 -219 0.101836 0.099823 0.041564 0.057043 15.421049 10.855078 18.634473 16.677281 -220 0.037125 0.042655 0.015790 0.017509 8.834481 10.989957 9.329882 9.125347 -221 0.076738 0.068883 0.068429 0.044616 14.118305 11.339049 16.271986 15.036077 -222 0.067561 0.057230 0.038370 0.033737 10.371782 10.126443 12.832685 11.884332 -223 0.096379 0.101973 0.051365 0.065570 13.236085 14.013981 16.779654 19.997120 -224 0.080821 0.068326 0.056306 0.042271 10.381063 8.325484 14.575064 15.685431 -225 0.073563 0.051673 0.035248 0.023932 7.122296 9.106933 9.987350 10.864693 -226 0.081123 0.071443 0.053511 0.048885 10.715551 8.992328 12.998129 12.421985 -227 0.067486 0.052835 0.047604 0.040814 7.910731 8.667553 9.452502 11.028113 -228 0.068050 0.052038 0.035919 0.029801 7.440917 6.614008 12.920923 9.417028 -229 0.086897 0.103738 0.026007 0.030497 10.215654 9.971420 21.712193 16.497900 -230 0.071911 0.059100 0.036118 0.026884 8.425224 7.546625 13.252184 10.962100 -231 0.051313 0.051536 0.027791 0.021955 9.670301 9.128854 11.495965 11.067359 -232 0.086883 0.058311 0.035692 0.026519 10.451173 9.053520 8.810549 8.211920 -233 0.089320 0.076843 0.058446 0.058752 8.596494 9.873988 14.910967 12.753467 -234 0.093022 0.097965 0.047801 0.038522 9.377585 9.333529 13.828892 13.416811 -235 0.082042 0.076577 0.066534 0.036413 11.316206 8.040358 19.351957 13.645216 -236 0.070052 0.066378 0.037965 0.026282 10.235864 10.537511 9.225406 12.941012 -237 0.085421 0.068611 0.061190 0.039070 8.523914 6.588525 11.498076 8.697622 -238 0.109077 0.064837 0.105497 0.047701 10.719392 9.777767 10.316398 9.074475 -239 0.077712 0.070244 0.044653 0.054658 13.131763 11.338892 14.952018 14.096012 -240 0.071736 0.048450 0.068705 0.063146 9.262236 8.532343 14.489437 14.416572 -241 0.045009 0.037457 0.026673 0.029155 9.058386 6.518610 12.518077 9.227815 -242 0.098792 0.075342 0.055129 0.039643 12.906463 10.124374 18.440692 15.961835 -243 0.107094 0.092635 0.067946 0.057367 15.238018 12.416698 17.416593 16.373064 -244 0.093140 0.064576 0.094183 0.049353 12.597613 11.761796 16.281503 16.348230 -245 0.061422 0.072444 0.041756 0.036642 12.509379 12.619693 15.958465 14.395209 -246 0.117022 0.071832 0.068012 0.045104 15.718379 12.608964 14.659895 10.245792 -247 0.075060 0.065308 0.036165 0.028936 9.569782 7.242899 12.005066 11.829230 -248 0.049645 0.038307 0.036026 0.018725 7.811502 7.088657 8.631195 8.337916 -249 0.078670 0.066675 0.044291 0.035426 9.556394 9.938860 13.231666 14.209481 -250 0.095198 0.069978 0.030374 0.024944 15.822182 14.308065 14.730457 12.484638 -251 0.097926 0.070654 0.066828 0.052893 5.789157 5.933077 11.962994 11.205069 -252 0.106823 0.102618 0.053111 0.056821 8.994075 10.344980 9.733524 8.719545 -253 0.063077 0.072856 0.060932 0.080933 9.544575 9.195003 8.654089 9.052112 -254 0.134034 0.119065 0.058217 0.065892 10.979425 8.670557 13.780429 12.850639 -255 0.082801 0.078128 0.053130 0.042143 12.035748 8.254229 11.848519 9.006850 -256 0.052030 0.057138 0.030371 0.023095 9.664583 14.528366 15.217008 20.826654 -257 0.099634 0.083387 0.045476 0.042700 8.891320 9.052648 10.608394 9.119644 -258 0.096409 0.076455 0.070824 0.062001 9.641749 8.306990 17.580039 16.277750 -259 0.056083 0.058809 0.059959 0.047604 8.330193 6.317059 10.336603 9.213995 -260 0.071162 0.079196 0.039974 0.041850 11.842285 9.791993 9.277955 8.713174 -261 0.038999 0.032968 0.022262 0.028942 6.910355 6.469652 12.730822 7.900094 -262 0.096440 0.087290 0.069657 0.080277 10.604477 7.801737 18.401195 13.619742 -263 0.061544 0.066765 0.058596 0.044564 8.920998 8.249610 10.367897 9.270391 -264 0.061968 0.056808 0.030555 0.025076 8.779460 8.105874 11.500035 9.054852 -265 0.053445 0.040754 0.020311 0.018547 8.241157 7.894495 11.129788 11.195435 -266 0.074265 0.046868 0.066792 0.046209 6.946089 7.775820 10.408315 10.343370 -267 0.130426 0.079413 0.053956 0.034863 17.096672 15.379203 24.367055 19.073763 -268 0.085059 0.073900 0.050394 0.049516 11.855024 8.759564 11.725686 9.858862 -269 0.044995 0.042406 0.028925 0.024706 12.788134 10.219292 14.839148 11.311445 -270 0.050776 0.048480 0.024022 0.021546 11.709691 9.140632 14.357885 11.171979 -271 0.071963 0.063102 0.043412 0.027903 12.810216 10.753319 15.317002 10.356103 -272 0.051677 0.050533 0.027530 0.024616 11.525536 8.412644 14.122032 11.613891 -273 0.061607 0.057681 0.033131 0.032628 12.002349 12.384262 16.716794 12.899745 -274 0.097761 0.070447 0.068355 0.047417 12.309470 8.183500 17.107975 8.069307 -275 0.037711 0.033587 0.018937 0.013512 11.378108 10.879201 13.204987 11.655268 -276 0.093136 0.067599 0.060976 0.044727 16.673918 10.367788 26.821509 15.153980 -277 0.126784 0.074245 0.071777 0.056037 10.868012 12.315216 14.159146 12.151918 -278 0.088634 0.067103 0.051488 0.039659 8.922244 10.016013 14.539031 14.097616 -279 0.088410 0.070076 0.047092 0.037254 11.371911 12.027981 14.025973 17.701829 -280 0.062487 0.050621 0.027273 0.025301 10.938403 11.198908 11.276701 11.588932 -281 0.066011 0.048618 0.038047 0.024915 12.057833 9.085995 10.449372 8.247628 -282 0.064534 0.064313 0.038237 0.041702 6.566628 7.661663 7.513162 8.486006 -283 0.064262 0.061276 0.034243 0.025056 9.950226 9.532435 10.915169 11.202189 -284 0.117013 0.115745 0.106077 0.071177 8.924118 8.003383 9.222896 8.127214 -285 0.055646 0.043168 0.031018 0.031889 6.620778 5.113860 10.063174 9.827378 -286 0.080649 0.083846 0.067459 0.060960 6.400700 6.835236 11.516192 14.917728 -287 0.058772 0.059444 0.029037 0.022755 8.113105 9.854494 9.713852 9.238582 -288 0.059632 0.057197 0.051747 0.043812 8.435297 6.888820 12.223201 9.929484 -289 0.050949 0.047653 0.045509 0.030667 16.725646 13.373942 31.031318 19.158613 -290 0.107810 0.082255 0.092389 0.067687 13.116420 10.704733 17.262368 17.823627 -291 0.086043 0.068516 0.062910 0.041348 7.808889 7.931609 10.688845 9.302962 -292 0.078200 0.056145 0.049803 0.034217 8.885387 8.947485 11.127896 10.949298 -293 0.073865 0.078307 0.044227 0.047164 9.562063 9.353051 14.645233 13.060064 -294 0.071867 0.067040 0.061755 0.044480 11.781584 9.366684 15.563832 12.633949 -295 0.080807 0.062358 0.069401 0.031150 7.613523 5.481053 10.321619 8.802303 -296 0.072933 0.069297 0.028357 0.015623 10.426622 10.708996 12.928146 11.028565 -297 0.039039 0.038771 0.026128 0.028494 8.373499 5.119514 9.327585 6.349179 -298 0.056870 0.042792 0.054473 0.033229 10.403241 8.470356 10.874354 6.953153 -299 0.056286 0.050772 0.035210 0.025406 8.239846 5.850069 13.597183 9.727678 -300 0.081884 0.065919 0.047368 0.050992 8.576781 9.436176 11.846416 11.144214 -301 0.062813 0.056670 0.042058 0.036980 8.311212 7.132101 9.200423 9.171958 -302 0.084550 0.105255 0.041299 0.040712 15.077545 9.892231 13.153813 11.387294 -303 0.063961 0.051497 0.036449 0.029488 7.835319 6.100060 10.282091 7.616319 -304 0.076071 0.066795 0.043750 0.053592 14.697584 15.795878 12.918295 15.784354 -305 0.069070 0.064207 0.041956 0.044925 11.328691 10.234416 14.242329 14.681182 -306 0.083265 0.083631 0.045408 0.043687 6.690920 7.291132 14.191878 15.368577 -307 0.070065 0.053755 0.064730 0.050429 10.651263 12.516677 11.257442 12.036337 -308 0.124871 0.089705 0.069700 0.050563 12.334741 12.091051 11.178220 11.152135 -309 0.083594 0.081534 0.031745 0.031719 9.005163 8.541886 13.333300 11.698742 -310 0.086437 0.072877 0.035736 0.030356 17.364237 11.564786 16.049859 9.231984 -311 0.097930 0.088610 0.040575 0.046051 10.241132 10.161320 14.482766 17.295764 -312 0.049979 0.044460 0.033824 0.024772 9.238623 6.143994 7.842915 6.780191 -313 0.056186 0.062962 0.032260 0.034746 10.457902 7.295407 17.052750 10.703730 -314 0.060854 0.054755 0.036158 0.034301 7.307540 7.132013 10.097011 9.644800 -315 0.068254 0.043442 0.045235 0.026099 11.172588 7.164673 10.411205 7.128007 -316 0.073660 0.049003 0.039575 0.048050 9.591245 8.073138 12.080198 8.851385 -317 0.083732 0.073241 0.053891 0.045025 12.778901 10.083431 13.541089 12.309751 -318 0.065922 0.071354 0.049158 0.029772 10.750588 7.857462 17.395768 12.840886 -319 0.067834 0.087413 0.078188 0.048433 11.274010 11.331139 15.174244 16.993482 -320 0.083297 0.076756 0.064353 0.064837 9.663654 9.440262 11.020907 11.361680 -321 0.065450 0.069483 0.054548 0.043663 8.198451 6.489750 8.055444 10.904145 -322 0.085641 0.081049 0.055645 0.036153 8.104902 6.898952 10.949422 11.486027 -323 0.042916 0.044189 0.031358 0.025936 6.564734 5.930549 11.147291 7.422560 -324 0.059388 0.064872 0.036022 0.028196 11.797542 9.259287 9.908336 9.717601 -325 0.046624 0.045127 0.029829 0.024556 8.846303 7.976519 15.719807 11.869318 -326 0.100778 0.081695 0.083810 0.043855 7.748960 8.195961 11.155649 10.493867 -327 0.066352 0.064156 0.055286 0.040435 8.214176 11.194706 10.413612 10.455278 -328 0.124082 0.096529 0.044415 0.038601 11.161720 9.803173 13.974749 11.216001 -329 0.042702 0.036799 0.043940 0.040303 11.457545 9.518024 11.360895 10.115494 -330 0.068121 0.056756 0.064719 0.039836 9.330092 8.199039 13.140148 13.456369 -331 0.083928 0.066880 0.029717 0.024978 7.442286 7.336989 8.765291 8.501594 -332 0.055188 0.048974 0.020921 0.026174 9.821887 8.605518 11.426588 12.196631 -333 0.045572 0.035819 0.036291 0.029957 8.283785 6.635005 9.184695 7.464702 -334 0.101894 0.086818 0.074174 0.073027 13.268582 10.609812 13.908989 9.202515 -335 0.065387 0.063134 0.051421 0.052410 8.820144 7.846067 9.297896 8.764227 -336 0.089495 0.057825 0.043127 0.034285 9.287423 9.484012 10.392621 10.504869 -337 0.050552 0.059430 0.051868 0.044076 13.627038 10.609864 15.890186 10.285757 -338 0.075785 0.095338 0.044902 0.050838 9.847280 8.415832 13.212500 13.286967 -339 0.076443 0.062316 0.055802 0.040913 10.733909 8.659151 17.678551 15.592689 -340 0.064314 0.052841 0.041252 0.028368 11.058560 9.928138 9.742236 10.897934 -341 0.065680 0.057541 0.043012 0.028568 10.503503 9.763742 10.463222 10.555957 -342 0.052697 0.054586 0.031931 0.034428 9.840428 10.989708 13.653881 15.047752 -343 0.088114 0.048258 0.071555 0.023539 10.263082 8.122138 13.252426 11.287324 -344 0.056285 0.059610 0.032517 0.043255 9.534394 8.851842 12.709170 11.275385 -345 0.062342 0.055042 0.041469 0.035743 7.097079 5.788640 11.644741 8.973383 -346 0.140810 0.125100 0.083681 0.081351 18.119651 11.550866 25.062225 18.831623 -347 0.085070 0.095247 0.061400 0.055795 9.268693 8.516167 11.285539 10.850636 -348 0.045783 0.040134 0.032738 0.024395 8.506094 5.770723 11.885260 9.958703 -349 0.080213 0.050167 0.039409 0.019890 8.705521 8.545091 12.480958 11.063967 -350 0.097958 0.074149 0.052367 0.049468 11.908400 11.248035 12.646521 11.715962 -351 0.068461 0.066038 0.071465 0.068962 9.675594 8.656358 9.396700 8.969706 -352 0.079535 0.062697 0.053130 0.035196 10.760195 10.000978 21.492864 14.677889 -353 0.036466 0.030260 0.034708 0.025818 8.250444 9.281986 13.302511 16.251327 -354 0.053314 0.056234 0.031803 0.042073 10.749003 9.943821 20.522527 18.077206 -355 0.091581 0.075276 0.084397 0.071983 11.002099 8.198024 16.176187 13.436713 -356 0.061392 0.062571 0.037044 0.041306 8.230077 6.736001 12.878034 8.573979 -357 0.054582 0.055039 0.035111 0.031642 9.137514 6.620215 9.369420 7.870191 -358 0.057900 0.052084 0.039520 0.038260 10.676192 8.484628 14.757588 13.296615 -359 0.062564 0.049126 0.051647 0.054844 7.569553 5.844351 9.127624 8.424190 -360 0.079370 0.065824 0.028759 0.020987 10.443655 7.537620 14.451296 10.933160 -361 0.108886 0.090466 0.060301 0.058085 10.238555 8.688742 10.193832 10.707164 -362 0.087910 0.073245 0.058332 0.055187 9.991413 8.401884 12.892987 9.835858 -363 0.110670 0.113171 0.083144 0.060189 12.154711 9.527710 14.604466 9.700826 -364 0.062407 0.071303 0.035683 0.037447 11.651424 10.851538 13.808225 11.696760 -365 0.056065 0.046340 0.056064 0.032415 13.767207 10.514389 19.128576 15.625461 -366 0.058815 0.045881 0.024907 0.022280 6.810490 6.173501 7.214851 8.337354 -367 0.057978 0.056790 0.022314 0.019137 6.419291 4.965986 6.269232 5.118755 -368 0.097501 0.067242 0.063932 0.031405 7.734732 7.614464 12.712515 11.333876 -369 0.087837 0.072296 0.068782 0.034539 11.131221 9.832568 15.920645 13.616786 -370 0.103797 0.110628 0.048288 0.068045 17.078868 12.016763 16.395558 12.198969 -371 0.064453 0.050153 0.042545 0.028659 7.837603 6.939867 11.659855 11.663043 -372 0.171600 0.133545 0.078287 0.086004 19.294042 16.741981 16.858480 16.947902 -373 0.065210 0.047672 0.037437 0.031231 8.398368 5.326392 11.665842 9.912960 -374 0.064636 0.052810 0.022848 0.026402 10.495964 7.722262 11.118765 12.067041 -375 0.048869 0.059188 0.017882 0.028685 10.681735 6.843233 19.751169 12.928453 -376 0.071433 0.052313 0.048216 0.034663 8.752524 6.298775 13.750389 9.974840 -377 0.062415 0.041897 0.032862 0.042982 13.130542 12.676841 16.518300 14.602848 -378 0.097794 0.068943 0.059273 0.046151 15.093437 13.912809 15.594311 12.827915 -379 0.091355 0.098321 0.061262 0.052919 10.011638 7.895422 11.720512 10.920753 -380 0.047329 0.031582 0.017927 0.017352 11.220137 9.430868 14.216747 14.773317 -381 0.080573 0.062334 0.043479 0.027130 10.691058 10.099153 12.780368 13.208591 -382 0.082230 0.054479 0.037564 0.022114 9.466714 8.521379 12.020729 10.213920 -383 0.065258 0.058032 0.070219 0.045188 9.941085 10.580316 14.175483 12.295758 -384 0.083675 0.071887 0.045295 0.032277 10.069014 6.111161 9.664848 8.439377 -385 0.080459 0.072106 0.054776 0.045634 8.804343 7.731944 11.440714 8.565714 -386 0.079274 0.082817 0.057504 0.051427 10.803890 7.441107 13.364433 9.265956 -387 0.088823 0.083800 0.044120 0.031203 15.226553 11.411934 18.530887 15.445916 -388 0.057264 0.061254 0.032244 0.026162 5.877815 6.029932 10.191898 7.910402 -389 0.083113 0.085424 0.059878 0.043620 7.791585 6.750395 15.067050 10.732932 -390 0.093152 0.094974 0.052523 0.042277 12.018226 10.495785 12.696302 11.055121 -391 0.046513 0.044366 0.020906 0.025300 12.810346 10.021603 13.450099 10.133278 -392 0.044240 0.044884 0.021768 0.027503 6.432170 5.509836 10.813095 8.118392 -393 0.082378 0.080634 0.080920 0.070910 13.202067 10.380293 14.332161 13.000823 -394 0.065767 0.052377 0.038729 0.027700 8.468257 6.767503 11.721627 9.354120 -395 0.060759 0.039212 0.027628 0.025356 8.255587 6.488771 16.133104 10.603759 -396 0.115576 0.082339 0.039131 0.034832 9.341881 7.698863 12.469739 9.300162 -397 0.116682 0.070838 0.068039 0.047026 13.090146 12.927269 13.893261 13.033683 -398 0.093224 0.058660 0.054996 0.029135 9.810892 7.716727 11.763739 11.078499 -399 0.069420 0.073498 0.063677 0.059599 10.809249 10.807432 12.608425 10.369527 -400 0.133615 0.104599 0.095869 0.055747 8.753594 6.932966 13.435018 9.687557 -401 0.071617 0.068197 0.036485 0.036135 8.273071 6.720016 9.359253 7.135130 -402 0.049276 0.042890 0.028479 0.025990 6.744395 5.063114 10.675185 6.850736 -403 0.087088 0.083368 0.054138 0.047340 12.151194 9.163787 17.293446 13.876569 -404 0.071596 0.061078 0.059801 0.047337 8.371698 7.201586 16.002211 13.507645 -405 0.098310 0.097164 0.033175 0.050337 8.816135 11.805428 13.623184 18.329655 -406 0.105882 0.064706 0.100808 0.057726 10.363844 10.856151 11.566528 12.415580 -407 0.072301 0.049558 0.055259 0.057488 9.767261 9.238902 15.079012 11.251606 -408 0.075059 0.058920 0.037803 0.031298 12.727219 12.720409 14.166176 15.272024 -409 0.067346 0.062873 0.031199 0.026097 10.896636 6.865252 16.321272 10.196653 -410 0.088279 0.086402 0.041005 0.048783 11.711482 9.926355 13.847225 14.111076 -411 0.077462 0.092001 0.045305 0.066988 11.043908 10.292528 11.287497 8.605401 -412 0.079494 0.059894 0.052639 0.041243 9.110877 8.075881 13.326128 9.028406 -413 0.096682 0.090117 0.047251 0.047371 8.807964 11.017401 16.284618 16.773161 -414 0.051607 0.036049 0.041028 0.027936 10.952415 8.581991 11.677838 9.608466 -415 0.084254 0.082685 0.056548 0.055171 9.959921 7.188205 17.668830 10.520629 -416 0.062067 0.059522 0.030855 0.030553 8.756216 6.363337 10.956567 10.237625 -417 0.059558 0.044975 0.033142 0.021153 9.623544 7.515173 11.901255 11.136965 -418 0.090664 0.076500 0.059285 0.056484 9.422809 8.405151 10.886371 10.883781 -419 0.050524 0.063322 0.030980 0.034609 6.213113 6.099300 12.853766 11.161623 -420 0.061524 0.046717 0.048774 0.029561 9.606563 9.411777 8.578307 9.005557 -421 0.068186 0.050896 0.039458 0.021717 7.620330 4.840277 11.502627 7.620035 -422 0.098310 0.110596 0.097313 0.090773 10.907732 14.882848 17.104156 15.879247 -423 0.061852 0.049011 0.037514 0.020944 6.499147 6.319800 7.467323 7.559321 -424 0.094161 0.061107 0.040374 0.026208 8.439511 7.571088 13.081692 9.520853 -425 0.055670 0.039757 0.027180 0.019184 5.627509 5.972910 7.490106 8.082472 -426 0.024743 0.023492 0.014420 0.013118 7.603799 7.441973 10.000259 9.910327 -427 0.111043 0.081026 0.097095 0.064053 9.849859 8.607405 15.719043 10.527791 -428 0.068532 0.051885 0.039287 0.022771 7.701042 7.771991 10.833949 11.937136 -429 0.041552 0.037408 0.028175 0.026639 5.605857 5.197598 8.502084 7.704824 -430 0.037421 0.034845 0.024347 0.022093 6.816576 6.403163 12.627043 10.205871 -431 0.071276 0.062500 0.034848 0.022150 7.301032 7.490295 10.772974 10.043652 -432 0.072113 0.060644 0.062935 0.048792 10.125688 9.953788 11.529720 10.661139 -433 0.072948 0.053209 0.054322 0.035152 7.935124 6.448784 10.710321 8.060604 -434 0.079980 0.065070 0.030839 0.024485 7.725683 4.725935 9.573252 8.426620 -435 0.085252 0.056946 0.088223 0.055073 16.062536 14.341380 14.160718 15.050872 -436 0.046000 0.046666 0.021931 0.023149 4.949444 6.055672 11.114642 13.232972 -437 0.057911 0.070724 0.041100 0.043477 14.007539 10.812510 9.185017 8.108651 -438 0.061568 0.049988 0.034252 0.024431 8.194620 6.541967 9.523948 9.319403 -439 0.087543 0.100994 0.051793 0.061438 9.574936 8.090641 11.939530 11.090565 -440 0.059341 0.052511 0.030700 0.025207 13.041190 8.575869 16.903454 11.929362 -441 0.081641 0.061557 0.040677 0.031975 11.513893 12.261241 9.975578 8.827498 -442 0.053940 0.066513 0.034059 0.041308 12.657440 8.859588 13.754146 12.814906 -443 0.080841 0.068488 0.056865 0.045866 16.057940 11.084896 16.815443 11.432871 -444 0.038529 0.034220 0.032013 0.027167 8.958279 7.818813 13.032154 13.485920 -445 0.059762 0.050464 0.045659 0.028476 8.077205 7.660967 8.064820 8.936591 -446 0.078246 0.078737 0.051444 0.033049 9.586917 7.959848 17.233388 13.416651 -447 0.077329 0.052579 0.054499 0.029147 9.426377 7.520215 12.408764 8.284896 -448 0.039601 0.035897 0.019946 0.016397 8.848285 6.844302 20.508894 15.828526 -449 0.108454 0.079376 0.090833 0.047340 8.993797 9.644010 12.392503 12.330342 -450 0.123148 0.105639 0.044359 0.042759 8.325373 7.121805 14.259294 11.498974 -451 0.058151 0.043389 0.028015 0.025492 8.385840 9.396511 12.378864 9.692941 -452 0.146129 0.113325 0.084506 0.061574 11.379284 10.670971 18.264467 18.032300 -453 0.065650 0.070173 0.021998 0.017220 6.137063 4.350518 10.138396 7.696677 -454 0.144438 0.087431 0.129457 0.072926 16.876894 14.720949 18.331738 16.321236 -455 0.053409 0.054462 0.039248 0.039475 11.421535 8.586264 10.593312 7.267492 -456 0.062320 0.060120 0.029006 0.026259 7.958859 6.221793 8.810635 7.058261 -457 0.093140 0.085424 0.064435 0.067561 12.425216 10.085137 9.561123 9.091918 -458 0.044514 0.054184 0.025705 0.032872 9.933600 9.254400 16.664605 15.776455 -459 0.047928 0.057909 0.035745 0.042883 8.961443 7.571543 12.874049 9.975281 -460 0.099687 0.073881 0.050916 0.042144 6.681406 8.130549 8.998477 10.098818 -461 0.066234 0.053198 0.052722 0.051305 13.614812 11.481071 13.354045 11.259186 -462 0.077576 0.081053 0.043090 0.039197 7.056166 5.788328 9.279512 8.305958 -463 0.082277 0.060197 0.072906 0.043317 8.694373 7.827874 13.739243 11.886295 -464 0.081583 0.058527 0.029235 0.021807 9.831855 8.132820 12.512725 10.054958 -465 0.075616 0.086181 0.039805 0.048719 9.815196 7.481866 11.736079 10.354180 -466 0.103746 0.075002 0.082401 0.053617 6.679412 3.981181 8.097452 6.082301 -467 0.064554 0.052873 0.033646 0.024991 11.081505 10.500755 10.240669 8.859223 -468 0.063234 0.059922 0.036348 0.029551 9.523061 8.349100 9.960017 8.859955 -469 0.062672 0.060432 0.035588 0.046313 5.560734 5.898683 9.299535 9.965156 -470 0.073536 0.081382 0.040553 0.044235 7.972460 7.807919 9.673767 10.147474 -471 0.045487 0.039539 0.034979 0.043681 7.597296 7.624014 9.979232 9.110227 -472 0.051768 0.054208 0.060152 0.037524 8.300005 9.078602 14.416118 13.063298 -473 0.083241 0.073801 0.074895 0.047750 7.748824 6.752569 11.679482 11.954800 -474 0.095253 0.085438 0.051909 0.051482 14.954296 11.998510 12.554706 9.682534 -475 0.052028 0.044218 0.026912 0.022563 7.287283 7.321366 9.343970 8.376379 -476 0.136130 0.101637 0.061820 0.060461 7.556506 6.148745 7.859713 6.557800 -477 0.086005 0.083217 0.057485 0.055622 11.343149 10.737631 19.283055 16.636861 -478 0.082366 0.060734 0.059862 0.032944 10.503978 7.891062 14.823987 15.443489 -479 0.085416 0.054306 0.064562 0.024823 11.516277 9.822983 10.937067 10.149748 -480 0.102130 0.076145 0.052625 0.029918 11.317198 8.274487 13.455617 12.196021 -481 0.058502 0.055172 0.023961 0.039642 15.440284 12.118632 19.499575 18.896396 -482 0.062149 0.044609 0.052735 0.045636 10.851347 7.374858 10.875084 9.777573 -483 0.121915 0.117460 0.081955 0.063853 12.909030 12.410015 17.571616 18.219685 -484 0.056896 0.067300 0.039361 0.035082 8.762651 9.218819 13.687066 15.113415 -485 0.092549 0.045211 0.041794 0.027695 8.697139 6.616949 9.383490 10.047088 -486 0.107376 0.082969 0.044851 0.043687 12.395470 10.077968 17.355816 14.935259 -487 0.072608 0.066184 0.047596 0.028409 11.538729 10.041708 11.076679 8.038457 -488 0.054839 0.072090 0.050708 0.041207 6.612259 6.636390 10.864419 9.620415 -489 0.086648 0.060885 0.048526 0.045916 9.888311 7.232620 18.233612 13.662090 -490 0.079655 0.064459 0.057234 0.044560 6.303087 4.818610 9.853460 8.601076 -491 0.112802 0.070423 0.065055 0.053758 11.817517 11.815847 10.315405 10.937478 -492 0.051586 0.045049 0.023731 0.024229 7.185157 6.796410 10.991287 8.111135 -493 0.065946 0.055603 0.029492 0.022561 17.283775 16.182800 21.588492 16.292821 -494 0.078277 0.063304 0.074249 0.051678 9.925571 7.974088 14.656402 12.112156 -495 0.124263 0.101403 0.071946 0.086764 10.356448 11.053324 17.635854 13.894043 -496 0.084183 0.071944 0.069463 0.052721 6.202468 5.592297 9.019313 8.069578 -497 0.066092 0.058132 0.055928 0.062914 9.356940 10.172521 17.881456 17.741861 -498 0.064553 0.051270 0.038720 0.027827 9.203180 6.430879 9.213039 7.782593 -499 0.128719 0.104850 0.076892 0.069243 12.705978 10.327404 19.908274 16.760921 -500 0.140012 0.109394 0.056235 0.050165 9.998957 8.535609 16.476196 12.346348 -501 0.043950 0.038453 0.020805 0.013486 5.860206 5.204709 6.077498 4.848070 -502 0.091581 0.081253 0.065029 0.057034 12.849289 10.092473 19.172344 13.877507 -503 0.118179 0.100227 0.075539 0.081077 12.623135 12.935402 14.452427 18.687389 -504 0.091390 0.065865 0.066041 0.033972 7.517073 7.349612 9.746889 7.969081 -505 0.097181 0.091700 0.090349 0.060543 8.713385 6.993707 11.910314 10.051327 -506 0.099237 0.073833 0.075840 0.047288 11.415442 9.488465 13.818981 11.799297 -507 0.064169 0.052058 0.058570 0.035198 11.188582 8.432048 12.135929 8.828357 -508 0.045250 0.045553 0.030744 0.026999 7.754536 5.309080 11.582988 10.340775 -509 0.071451 0.061479 0.070072 0.051605 11.777824 10.577366 16.205354 13.421984 -510 0.071542 0.063776 0.031706 0.029007 12.905686 10.563683 8.670145 9.119977 -511 0.096639 0.075620 0.059441 0.063664 10.207043 9.768872 13.356506 11.605003 -512 0.100050 0.089713 0.070682 0.069089 11.916079 9.420990 11.651306 10.199172 -513 0.113191 0.097715 0.089428 0.081780 14.903419 12.677958 22.023673 17.696925 -514 0.105140 0.087373 0.061756 0.045332 10.970590 9.714080 13.719407 13.410085 -515 0.083502 0.060817 0.066404 0.036334 11.817083 9.439731 14.755169 8.907672 -516 0.083941 0.057002 0.044047 0.027099 10.319168 8.697909 12.689256 10.289317 -517 0.106796 0.066648 0.064601 0.030279 12.451455 8.317643 13.773936 12.648928 -518 0.050299 0.048415 0.043679 0.038152 7.747924 6.624304 12.375529 9.565336 -519 0.069399 0.060424 0.045933 0.025421 9.379260 9.686385 18.935071 16.628414 -520 0.070282 0.047057 0.056179 0.028053 13.434182 10.839756 13.984584 11.111127 -521 0.074740 0.069962 0.035675 0.032842 11.494240 12.375534 9.950653 9.879590 -522 0.058964 0.050321 0.054870 0.037405 10.338390 11.932123 13.570902 14.085276 -523 0.074223 0.056308 0.056712 0.051396 10.402704 7.105829 13.496458 12.439282 -524 0.106528 0.103225 0.076763 0.080977 6.121759 7.185470 9.458969 10.839419 -525 0.067944 0.067741 0.044659 0.042999 11.361457 6.540816 16.997665 12.374880 -526 0.110885 0.115546 0.065761 0.073902 10.792420 9.539395 11.968010 10.757666 -527 0.111859 0.063449 0.047314 0.038236 12.078084 10.469248 11.722499 10.937716 -528 0.091055 0.091386 0.103934 0.073252 8.454703 7.363485 14.003885 11.320577 -529 0.052237 0.040039 0.020551 0.015740 9.489957 7.418552 14.808503 11.450663 -530 0.081395 0.066930 0.051657 0.055586 9.375113 9.321602 12.224875 8.992182 -531 0.061134 0.050306 0.027389 0.023651 7.297383 6.264760 10.364231 8.539406 -532 0.074861 0.060422 0.054041 0.043423 9.126256 9.345244 12.094733 12.263360 -533 0.084225 0.068790 0.061080 0.052440 9.159972 7.067279 13.733207 9.236976 -534 0.055097 0.049676 0.061669 0.039498 12.249783 9.283964 16.244451 13.560971 -535 0.065879 0.065479 0.033884 0.031894 7.348571 5.182106 11.767008 8.667065 -536 0.078676 0.067620 0.036636 0.030437 8.850759 8.291193 9.995158 7.505630 -537 0.042711 0.037416 0.024732 0.027046 9.159917 7.488751 11.422438 12.158877 -538 0.101231 0.089062 0.109035 0.091491 14.592159 10.641353 16.782086 12.413079 -539 0.099396 0.057316 0.061351 0.044534 7.699898 5.334566 11.271374 8.002333 -540 0.087032 0.075939 0.059059 0.044295 12.156994 7.775604 12.949866 9.829002 -541 0.053342 0.034064 0.020783 0.015866 8.040213 5.500479 9.779308 6.853825 -542 0.040457 0.034376 0.028868 0.026963 7.004809 5.384786 7.962120 6.675175 -543 0.096085 0.068010 0.068067 0.051280 11.212303 9.589456 11.918610 10.720915 -544 0.120238 0.123370 0.072763 0.058180 10.984032 9.074478 13.712318 13.977376 -545 0.049816 0.043375 0.042475 0.033316 7.205997 10.228407 9.340905 11.603379 -546 0.045166 0.048678 0.018126 0.023464 9.774888 7.942979 11.595990 9.481958 -547 0.080208 0.065996 0.068167 0.057925 10.788986 8.920778 13.287539 11.818320 -548 0.054728 0.050048 0.060321 0.029938 7.046515 6.560233 11.971636 8.839074 -549 0.088426 0.065884 0.066771 0.051645 9.587631 9.056583 14.759816 12.709497 -550 0.085959 0.076184 0.049013 0.031543 10.398129 9.180524 14.209287 10.987341 -551 0.097438 0.066719 0.056553 0.035741 12.124878 8.700231 17.673610 13.075719 -552 0.073603 0.065656 0.053904 0.040254 9.830894 8.943512 11.777409 10.460785 -553 0.063027 0.050949 0.028062 0.018385 10.675545 8.972819 15.562245 14.074925 -554 0.074453 0.060641 0.040392 0.030199 6.511817 5.505350 9.013845 8.207090 -555 0.053880 0.060068 0.015373 0.013830 8.376072 6.647377 8.843962 7.314608 -556 0.070733 0.052266 0.052848 0.029241 10.191818 9.406173 11.846638 8.786163 -557 0.047465 0.044258 0.019656 0.018379 6.152579 7.145488 10.083508 10.887803 -558 0.073101 0.058765 0.020671 0.023619 9.207980 6.989581 9.074473 9.804722 -559 0.068363 0.045007 0.034886 0.026803 10.075870 7.420641 14.153778 10.991842 -560 0.103292 0.087581 0.037077 0.024959 8.921614 9.917019 17.617221 15.774092 -561 0.060059 0.068243 0.050385 0.036738 8.152787 8.129597 14.475130 13.287133 -562 0.053969 0.030857 0.035109 0.033352 7.133591 6.274303 11.953598 11.561994 -563 0.081753 0.059629 0.052342 0.033518 8.942117 6.065661 10.043229 8.047412 -564 0.046203 0.045473 0.030173 0.031367 9.651215 10.282093 13.476646 14.416499 -565 0.082324 0.080150 0.038599 0.034439 11.324133 10.929500 14.340573 15.302978 -566 0.088146 0.109044 0.058796 0.061088 11.772928 14.662389 14.955462 13.475575 -567 0.082019 0.071448 0.040514 0.029042 11.221427 10.255404 14.561706 13.597169 -568 0.109997 0.067313 0.053060 0.036531 10.666536 10.478757 9.281767 9.947610 -569 0.096996 0.090256 0.028857 0.035271 10.042606 9.974362 17.678590 14.624022 -570 0.074453 0.052348 0.045946 0.033116 12.776379 10.438230 10.832215 12.512003 -571 0.048227 0.039308 0.033067 0.023063 8.407350 7.922429 9.166701 7.848912 -572 0.100546 0.088632 0.060469 0.050257 14.992902 10.938371 27.326953 17.116220 -573 0.045182 0.039606 0.033244 0.023476 7.215217 6.746622 10.838798 6.311088 -574 0.092115 0.114498 0.057684 0.095447 13.253252 11.786376 21.847333 16.810334 -575 0.086942 0.083706 0.059362 0.038023 11.262160 8.021544 15.867862 11.531192 -576 0.078066 0.054212 0.040005 0.037063 9.977081 6.044617 22.868580 11.850150 -577 0.103755 0.080990 0.067327 0.047636 8.968688 8.361215 15.862866 11.998432 -578 0.062068 0.062155 0.026901 0.029089 10.145730 11.485178 12.721013 10.805296 -579 0.129602 0.096795 0.058213 0.043386 14.235021 12.160666 11.385418 10.552240 -580 0.074779 0.054768 0.046791 0.026952 8.446111 6.438123 10.403702 10.707573 -581 0.090777 0.078675 0.042354 0.033464 6.679779 6.909295 9.767303 7.935466 -582 0.052882 0.067320 0.042810 0.030814 7.741478 9.738476 14.271453 13.580471 -583 0.055657 0.037372 0.023811 0.019605 10.119634 7.565812 12.054416 8.196042 -584 0.055234 0.051102 0.026529 0.019145 5.490428 4.984917 7.185569 6.803358 -585 0.114153 0.079803 0.050511 0.036756 16.798315 11.981443 19.226026 13.494146 -586 0.073947 0.083422 0.051113 0.034701 8.795575 8.915389 17.191255 14.847643 -587 0.079636 0.070527 0.059453 0.038314 9.394554 8.318571 13.695526 12.517078 -588 0.063454 0.061694 0.063497 0.054861 9.779683 9.076335 15.114180 12.581658 -589 0.074404 0.054138 0.033884 0.032484 10.283470 9.975871 16.651387 13.788762 -590 0.098764 0.079416 0.057509 0.043324 10.475573 7.516343 10.319139 7.861435 -591 0.046148 0.054665 0.026909 0.021708 10.229425 8.049111 14.299112 12.815931 -592 0.107503 0.089055 0.051936 0.040317 12.125548 10.474830 17.754393 15.488700 -593 0.053572 0.039580 0.037066 0.020097 6.699129 6.681558 10.543816 8.866227 -594 0.101695 0.065056 0.085432 0.078996 8.402967 9.362424 11.663032 11.988341 -595 0.073726 0.048216 0.050992 0.034210 11.370394 9.093987 13.718809 13.295044 -596 0.086848 0.055928 0.057508 0.039148 13.461792 11.109854 14.600263 14.949264 -597 0.074270 0.075708 0.046583 0.051475 8.370572 8.354004 8.987739 7.043966 -598 0.103371 0.072130 0.030572 0.014513 7.930180 8.739613 13.014409 11.068721 -599 0.070999 0.058845 0.029829 0.026482 6.190387 7.881238 10.785720 9.733169 -600 0.147816 0.087978 0.041774 0.033090 12.524432 10.401142 12.927079 12.524959 -601 0.070131 0.068000 0.042990 0.031062 13.359353 13.132862 19.078601 18.036786 -602 0.051404 0.059118 0.027632 0.029857 9.104024 9.912665 11.912610 10.505606 -603 0.086696 0.058195 0.057444 0.043020 9.711778 9.964458 14.793087 12.238491 -604 0.071611 0.073278 0.060551 0.048436 7.244496 6.217433 8.820024 5.747009 -605 0.116389 0.093307 0.060586 0.042532 11.008757 10.169711 12.456529 11.742765 -606 0.089254 0.063031 0.064019 0.052845 12.175576 12.365200 14.132744 13.610168 -607 0.060117 0.046427 0.054964 0.035730 10.071997 7.715089 12.930300 10.413355 -608 0.064042 0.064954 0.035127 0.032887 14.011209 9.932729 17.260867 11.879671 -609 0.070632 0.064744 0.065276 0.041867 10.624384 10.242199 11.630698 11.674519 -610 0.050365 0.035733 0.039138 0.024474 6.109695 4.429773 10.236159 7.069994 -611 0.085141 0.045870 0.044795 0.033351 8.518474 8.325780 7.544787 6.384357 -612 0.046642 0.044156 0.028308 0.023763 20.079505 15.860671 18.599024 16.580963 -613 0.070887 0.060146 0.040417 0.029050 13.186587 15.678093 15.762095 16.230727 -614 0.064262 0.093599 0.045480 0.064052 14.213413 9.866158 14.682325 10.001821 -615 0.064765 0.060191 0.054489 0.038183 13.710249 10.675229 15.451008 10.613248 -616 0.062960 0.046441 0.033339 0.026072 11.240245 7.116742 14.123706 10.556649 -617 0.104614 0.092930 0.069209 0.045607 13.304647 11.011977 11.392562 8.330995 -618 0.135047 0.130030 0.117218 0.076323 17.809042 12.536323 23.244493 20.641427 -619 0.043769 0.045269 0.021567 0.024678 6.772490 5.096825 10.118487 7.431085 -620 0.051364 0.053844 0.051882 0.030746 11.806613 10.967929 11.423913 11.340037 -621 0.072060 0.050373 0.021174 0.017175 9.904073 9.370685 7.774921 8.365780 -622 0.065610 0.069955 0.052111 0.057414 8.184743 7.650700 13.125124 9.638092 -623 0.088411 0.058853 0.065610 0.043985 10.172783 11.962910 12.835686 13.529971 -624 0.104284 0.092023 0.067274 0.048900 18.929994 13.539846 23.123313 17.288825 -625 0.083338 0.052852 0.056347 0.029602 10.394255 10.570319 13.665746 12.456820 -626 0.074688 0.050823 0.042267 0.036859 6.747019 6.360393 10.552184 8.896191 -627 0.109169 0.083900 0.100464 0.050962 20.857370 18.751742 15.461066 14.823703 -628 0.076928 0.042853 0.055985 0.030850 7.031754 6.648999 16.617061 11.143405 -629 0.091096 0.114289 0.049807 0.050406 12.983678 10.250608 9.981078 10.257016 -630 0.085519 0.050723 0.040919 0.029517 6.342035 5.116040 7.970214 6.519668 -631 0.055250 0.042427 0.034387 0.024586 8.208750 7.044980 8.718500 8.952124 -632 0.035071 0.023930 0.023426 0.017074 6.823698 7.289665 9.814251 8.566899 -633 0.134670 0.124028 0.073983 0.055125 11.205209 9.830527 17.391590 13.206097 -634 0.090166 0.075978 0.052168 0.051576 11.043459 9.354186 12.473365 12.749663 -635 0.066208 0.080841 0.038848 0.053764 10.086015 9.433879 12.235770 11.013958 -636 0.053021 0.048083 0.024669 0.019484 10.700291 9.703278 13.064109 11.104784 -637 0.103662 0.075665 0.054667 0.042918 11.092934 10.777546 14.820522 12.974733 -638 0.068722 0.059486 0.055978 0.049402 12.742118 9.317114 13.573276 11.491316 -639 0.052039 0.056116 0.018912 0.018994 8.901730 7.025416 12.693088 10.370662 -640 0.114863 0.082611 0.078814 0.052359 13.065887 16.692997 22.612807 22.287262 -641 0.066956 0.058307 0.065764 0.050683 10.241056 10.397545 14.798039 15.882918 -642 0.097026 0.090367 0.071557 0.080329 13.858493 9.316031 14.668015 10.521633 -643 0.076067 0.082006 0.044744 0.060038 8.720894 5.894405 10.432078 9.712686 -644 0.071995 0.058704 0.035083 0.033733 12.160537 9.949352 13.248345 12.001692 -645 0.076509 0.060438 0.034688 0.026332 7.875983 8.318756 6.602261 6.653589 -646 0.106911 0.092914 0.069602 0.060663 10.382722 9.110459 14.562879 13.792253 -647 0.063062 0.057087 0.050008 0.036276 11.886341 14.336905 16.675190 16.865472 -648 0.073143 0.066318 0.031096 0.026646 16.096812 11.719377 15.240879 11.333085 -649 0.074478 0.073731 0.073222 0.065452 9.213143 7.205457 10.098999 9.104041 -650 0.066305 0.041576 0.032478 0.021939 8.317509 8.033923 10.532491 10.951564 -651 0.157882 0.125206 0.085918 0.062899 15.192037 11.587512 15.318406 10.361342 -652 0.062263 0.055961 0.057338 0.054787 13.047251 10.608621 14.851055 13.815391 -653 0.099858 0.094479 0.064133 0.054619 12.718698 13.520978 16.905543 15.551568 -654 0.045732 0.051980 0.029847 0.033633 11.181470 9.926748 9.585783 10.258314 -655 0.072922 0.073700 0.032819 0.031107 8.052889 6.510582 9.095873 7.645993 -656 0.078522 0.057771 0.034247 0.025667 9.293075 7.607638 19.285712 16.411931 -657 0.068652 0.063357 0.054749 0.034569 6.673745 5.509149 10.412489 9.719515 -658 0.062420 0.048745 0.053086 0.028508 7.600524 6.035663 12.002175 7.693046 -659 0.074231 0.062511 0.075262 0.031092 9.996480 8.407723 11.598566 14.141941 -660 0.051716 0.041673 0.037655 0.022712 9.703706 7.048477 13.654526 10.423841 -661 0.111110 0.097910 0.067052 0.076655 11.725757 10.328117 11.166105 12.550364 -662 0.038268 0.033535 0.023175 0.022548 7.838877 7.851975 11.550373 10.277078 -663 0.064887 0.055247 0.033426 0.028795 11.968494 11.063787 16.130652 13.583291 -664 0.103912 0.061159 0.072791 0.046835 10.382278 8.135710 10.704679 9.364759 -665 0.064933 0.057473 0.048232 0.031287 10.327856 9.945407 12.135256 11.296167 -666 0.063550 0.071676 0.026849 0.017941 7.390024 6.115809 11.530959 10.415902 -667 0.066118 0.047894 0.034847 0.021477 6.665340 4.640397 5.355618 5.469406 -668 0.089825 0.058922 0.044618 0.025851 9.714183 8.945399 7.297088 7.001222 -669 0.077429 0.097788 0.041077 0.051788 10.741711 8.503103 12.730015 9.927571 -670 0.063134 0.067762 0.032184 0.024677 12.348748 6.959403 7.880645 6.020297 -671 0.160985 0.148058 0.133591 0.149881 13.580084 10.897287 14.868995 12.731758 -672 0.062020 0.056420 0.025276 0.025182 10.781506 9.417875 11.390312 9.956450 -673 0.052715 0.047669 0.035394 0.030230 10.426469 7.394346 11.878897 12.240181 -674 0.045724 0.048980 0.037360 0.053988 9.209693 9.729137 16.561513 16.951089 -675 0.080471 0.074379 0.034462 0.039963 7.570069 9.665068 9.667038 8.907779 -676 0.042613 0.041685 0.022952 0.028632 7.234402 6.259458 10.706198 8.856785 -677 0.094289 0.086066 0.046742 0.053198 15.172972 10.285928 15.750518 15.891179 -678 0.083821 0.056138 0.037838 0.035765 11.636139 10.473871 9.669000 10.346985 -679 0.055522 0.051729 0.040462 0.034640 11.150132 6.864848 13.007229 10.330562 -680 0.098410 0.065879 0.048624 0.035371 12.896006 9.955026 12.637243 10.203805 -681 0.062558 0.055054 0.051567 0.036429 6.633763 6.608400 10.490996 12.409927 -682 0.067487 0.060397 0.095338 0.059154 7.533103 8.351577 9.266785 9.145558 -683 0.092072 0.065783 0.048360 0.039846 8.702053 7.126955 14.222513 14.383817 -684 0.094687 0.091751 0.061426 0.043058 10.238122 7.610742 12.189079 9.723927 -685 0.077383 0.058649 0.044582 0.024821 11.153153 8.971672 12.904780 10.779816 -686 0.141768 0.115781 0.088794 0.099325 13.600113 13.389262 15.083927 13.081408 -687 0.071760 0.048243 0.035887 0.026845 11.398725 9.871773 14.854282 13.860765 -688 0.054858 0.050806 0.026930 0.024571 12.435191 7.826166 11.782213 8.792192 -689 0.091102 0.101556 0.031327 0.041233 8.848622 6.839107 13.243263 11.888113 -690 0.100850 0.077956 0.050975 0.035149 8.373457 7.301985 13.743809 12.214126 -691 0.086119 0.100648 0.041279 0.052404 15.105167 13.693236 28.884082 17.947215 -692 0.046382 0.039609 0.013121 0.009713 7.969903 6.566764 8.817602 6.856704 -693 0.037530 0.027843 0.031156 0.019118 7.160709 5.521910 6.733546 5.713103 -694 0.071984 0.073169 0.038471 0.024706 4.565777 4.694571 6.691156 6.406806 -695 0.091702 0.106193 0.048264 0.069201 7.672638 6.156957 13.168692 10.376155 -696 0.068839 0.049799 0.034839 0.024210 8.580038 7.104913 11.446049 9.106494 -697 0.087053 0.088245 0.083985 0.060650 10.167332 9.946051 13.817947 11.624149 -698 0.062277 0.068522 0.055285 0.070831 9.634475 8.706055 12.660784 11.404879 -699 0.048403 0.044495 0.027568 0.023200 6.523355 5.631812 9.521248 6.821221 -700 0.055168 0.066042 0.037275 0.031268 16.238942 13.944873 17.206060 13.989903 -701 0.053917 0.041944 0.035007 0.024751 13.804119 10.071021 14.442185 10.086396 -702 0.078317 0.066160 0.040341 0.056174 10.397499 10.538114 16.263047 15.081766 -703 0.124660 0.123225 0.067107 0.067715 14.080079 10.387267 15.927596 14.983053 -704 0.082610 0.059652 0.048809 0.029554 7.906677 5.527717 11.629596 9.539148 -705 0.072487 0.058878 0.038408 0.034361 13.136451 8.866036 17.538861 12.568710 -706 0.077949 0.057954 0.068243 0.052673 10.913357 10.809092 12.775637 12.754853 -707 0.099991 0.082446 0.045731 0.039702 17.435414 17.540756 17.916255 14.099301 -708 0.096740 0.074584 0.055014 0.037697 9.996027 7.971405 15.077864 13.154836 -709 0.072223 0.061737 0.026547 0.031469 5.755160 5.028917 10.653557 7.330505 -710 0.076669 0.056750 0.048988 0.030046 6.590730 4.123759 8.393832 6.660891 -711 0.097034 0.107334 0.033370 0.046958 7.246795 8.853581 8.046847 8.486801 -712 0.051711 0.040425 0.038653 0.033477 6.535376 5.256897 9.531182 9.118765 -713 0.056745 0.055367 0.038681 0.034856 6.262062 6.209870 14.311721 11.699960 -714 0.044641 0.059109 0.035285 0.035986 5.633488 5.160776 10.022283 10.240388 -715 0.079945 0.076392 0.049239 0.032214 10.087693 6.864613 15.515958 12.043156 -716 0.049680 0.058886 0.028784 0.028131 7.817083 6.016801 11.702528 11.342465 -717 0.110899 0.080500 0.075128 0.059926 13.371143 7.572519 21.282002 14.555092 -718 0.098912 0.099395 0.040560 0.044906 7.464784 6.188741 11.449584 9.275234 -719 0.065939 0.047635 0.021066 0.017776 8.272331 8.909632 11.610535 10.483127 -720 0.050538 0.035846 0.017881 0.010768 8.188123 8.453257 10.069673 10.206657 -721 0.082931 0.074302 0.035534 0.036997 6.851513 5.747972 11.762802 7.999337 -722 0.087888 0.097148 0.049422 0.040675 13.423466 8.287792 18.401018 13.098067 -723 0.092032 0.098805 0.052668 0.042892 14.235015 12.415165 21.364422 16.554244 -724 0.080346 0.084194 0.096917 0.055876 9.913152 9.918422 11.800789 14.103079 -725 0.031732 0.028198 0.024055 0.015938 6.336780 4.967666 7.114577 6.890816 -726 0.062311 0.056107 0.045124 0.038858 9.620990 7.674163 11.928480 9.363027 -727 0.091609 0.064574 0.056871 0.035494 12.711288 12.866892 17.411921 16.171757 -728 0.084229 0.067615 0.050834 0.031491 7.705642 6.057391 9.914978 10.232406 -729 0.051177 0.051731 0.017319 0.017352 7.201250 5.438674 9.005724 8.562972 -730 0.062740 0.035994 0.045447 0.026131 9.502084 8.609894 15.172488 11.726782 -731 0.040272 0.044487 0.031672 0.026455 4.997318 4.900938 9.786622 9.057270 -732 0.095604 0.082343 0.051891 0.065184 9.332769 7.297975 14.803134 11.841511 -733 0.081865 0.085578 0.053795 0.091160 8.750773 7.381866 12.145081 12.762851 -734 0.079814 0.052443 0.059842 0.023685 9.401733 7.476407 11.000420 8.115287 -735 0.089919 0.076834 0.046778 0.045645 8.357021 5.952233 12.162964 9.969000 -736 0.077624 0.067569 0.067549 0.059269 11.991628 9.930416 8.499308 9.052625 -737 0.045129 0.060053 0.038091 0.036399 15.218838 12.515435 12.814832 12.570578 -738 0.067048 0.073733 0.041942 0.030622 11.463476 11.766555 16.984078 15.207440 -739 0.049134 0.043275 0.047640 0.039839 6.008450 5.680782 8.662293 7.047576 -740 0.051758 0.043783 0.040515 0.027842 9.150313 8.504784 12.417093 15.922403 -741 0.065084 0.040274 0.031311 0.017180 10.117171 9.018722 10.300444 8.462839 -742 0.096242 0.068154 0.046516 0.030710 7.743990 5.658349 13.926271 9.900299 -743 0.062317 0.047099 0.030966 0.029155 9.144592 7.036838 12.110927 10.035659 -744 0.059159 0.054171 0.025732 0.034042 11.573490 9.762789 18.033238 12.498284 -745 0.097978 0.069686 0.066550 0.054731 8.509287 8.704932 8.367892 9.430185 -746 0.114316 0.082997 0.070786 0.046507 10.357142 8.981422 13.878968 9.462612 -747 0.079215 0.066090 0.046798 0.036635 8.543034 9.019653 14.994802 11.312568 -748 0.062821 0.053822 0.030262 0.027039 8.613837 8.616759 10.592449 9.824243 -749 0.075719 0.078444 0.040842 0.050153 7.860747 7.815454 13.399763 14.538262 -750 0.089450 0.067888 0.033870 0.030273 17.463303 8.021100 19.437702 10.385949 -751 0.026771 0.030013 0.019754 0.018028 11.199252 7.666723 8.976171 8.008574 -752 0.066709 0.049804 0.060250 0.042835 8.491285 7.933502 9.070643 8.400754 -753 0.059178 0.057763 0.051060 0.034206 11.781861 8.095598 13.430502 12.693701 -754 0.088610 0.071336 0.045934 0.038774 8.387496 7.706976 10.561327 11.606283 -755 0.032305 0.033404 0.022962 0.018660 9.361414 7.717812 10.180105 8.295909 -756 0.098058 0.053240 0.073467 0.038734 12.794645 10.193698 16.509389 11.708109 -757 0.077105 0.069760 0.033738 0.038824 12.247249 11.191225 17.259759 14.631399 -758 0.073620 0.063354 0.038741 0.025770 9.897124 7.647999 14.642668 12.365348 -759 0.055324 0.054357 0.056136 0.053104 7.914240 6.334783 14.209784 11.841024 -760 0.092613 0.088751 0.048653 0.051080 6.760334 6.409937 12.294305 10.586710 -761 0.055613 0.063961 0.031184 0.043431 9.620839 9.063601 12.162110 11.485443 -762 0.083898 0.056956 0.060873 0.032080 12.375835 10.072344 11.193564 9.043321 -763 0.083754 0.106400 0.069279 0.074813 10.203867 9.458811 15.495987 11.031383 -764 0.105440 0.091373 0.060918 0.050742 12.745469 10.698869 18.249225 16.892067 -765 0.070259 0.057800 0.047141 0.036477 9.345013 7.812608 11.942973 9.957629 -766 0.077326 0.078821 0.046529 0.044775 12.872279 8.409104 14.278698 8.948214 -767 0.042548 0.042089 0.027489 0.028110 11.551962 5.499027 12.002767 7.838966 -768 0.108581 0.072292 0.081794 0.058699 11.653709 9.183720 13.331528 11.353426 -769 0.107807 0.097132 0.116529 0.069479 10.223362 10.370384 11.993175 13.450514 -770 0.072244 0.071132 0.040765 0.037879 8.017395 6.036067 9.857323 9.245548 -771 0.067134 0.052737 0.044483 0.044270 12.985122 12.886708 16.736695 13.994092 -772 0.049070 0.052701 0.033908 0.035640 8.115125 6.894147 13.562293 10.873484 -773 0.057677 0.058412 0.032447 0.023162 8.357319 8.959208 11.155827 12.691061 -774 0.052454 0.048341 0.039778 0.034071 10.773843 7.358690 14.513575 12.068489 -775 0.079421 0.058438 0.052094 0.039974 10.629514 7.803069 13.384482 9.752498 -776 0.089988 0.082724 0.072868 0.071069 14.318735 14.058277 18.040106 13.223070 -777 0.059419 0.054417 0.047144 0.052361 8.661047 9.095805 15.525208 17.817080 -778 0.076423 0.062173 0.055717 0.036087 9.104422 9.804150 11.905143 15.440432 -779 0.045908 0.043779 0.025549 0.023692 14.424099 11.668572 11.817569 10.562820 -780 0.052300 0.049633 0.033772 0.025784 6.890736 6.818255 9.412564 7.438006 -781 0.102521 0.090133 0.079715 0.071528 12.761203 11.766700 18.537033 15.693211 -782 0.060050 0.053964 0.041166 0.031437 9.817184 7.420637 13.670387 11.832573 -783 0.114669 0.072978 0.030608 0.029379 11.247613 11.357467 16.214652 14.635505 -784 0.086014 0.091906 0.053938 0.049433 6.909918 6.600552 9.144278 6.654213 -785 0.063216 0.039556 0.023437 0.020767 5.696112 6.190879 11.768418 11.268630 -786 0.072044 0.069397 0.032507 0.024869 12.708374 10.770687 11.026779 9.523908 -787 0.039598 0.048241 0.028046 0.020132 9.142425 5.354493 10.058202 7.090839 -788 0.073303 0.078242 0.043418 0.030302 10.128345 9.119316 13.054563 8.577670 -789 0.051470 0.042382 0.033171 0.024280 7.155660 6.111666 7.996638 6.844251 -790 0.083272 0.048898 0.053050 0.042496 10.143515 9.434680 13.077772 10.330380 -791 0.039879 0.032196 0.024518 0.018694 9.649040 8.105875 13.126076 12.117793 -792 0.079027 0.067847 0.052351 0.045022 8.393619 7.355945 12.788063 13.445132 -793 0.089210 0.097360 0.036405 0.052363 9.782959 7.221914 17.323708 11.687783 -794 0.107238 0.100118 0.045627 0.024793 11.989798 10.003382 15.324397 13.172385 -795 0.063303 0.055296 0.039518 0.024031 13.998439 13.916336 13.839331 12.658547 -796 0.090007 0.070841 0.051150 0.040902 11.532156 12.975729 13.383671 15.452137 -797 0.062828 0.039810 0.026353 0.021895 5.604167 5.271864 8.982475 7.184392 -798 0.075684 0.081197 0.045088 0.051049 8.377796 10.734298 15.274472 14.761355 -799 0.077583 0.091312 0.035347 0.038064 10.561751 8.884165 11.792828 9.952390 -800 0.078526 0.065203 0.052137 0.039349 8.031522 7.450935 9.006179 8.813884 -801 0.112250 0.090679 0.028071 0.031052 11.335913 8.253004 16.068644 10.855860 -802 0.085211 0.073070 0.041740 0.024556 7.749393 7.144945 12.783659 9.073567 -803 0.069411 0.074652 0.046237 0.031087 7.312939 6.303193 7.368848 6.564103 -804 0.064023 0.046230 0.052461 0.035019 10.781926 7.848803 12.370654 10.419848 -805 0.127307 0.099421 0.083766 0.052773 10.950777 8.960058 12.083215 11.739071 -806 0.133989 0.100359 0.074890 0.068225 11.918314 12.564032 15.011670 15.669705 -807 0.056369 0.054122 0.030369 0.029526 5.676519 4.815731 10.035444 6.777945 -808 0.075153 0.076224 0.055814 0.044520 8.943899 9.723890 10.277845 12.067341 -809 0.070844 0.075314 0.046926 0.062862 13.588285 9.276408 15.534303 10.538873 -810 0.148493 0.161925 0.107845 0.146211 10.925250 9.072100 16.665745 15.843838 -811 0.148809 0.087958 0.070994 0.044722 9.688654 10.706327 11.374785 13.464700 -812 0.071283 0.076564 0.062661 0.074452 10.178486 7.702332 13.744221 9.852877 -813 0.116537 0.083675 0.070561 0.063237 12.013810 11.940625 13.251434 12.591354 -814 0.059121 0.059758 0.052755 0.027469 7.908419 6.123401 12.410290 10.577940 -815 0.067021 0.059818 0.045663 0.057852 11.017136 9.782552 16.656308 14.861815 -816 0.091525 0.076772 0.085480 0.056814 10.366365 8.453476 15.694058 12.828600 -817 0.085064 0.077529 0.056767 0.058749 12.431968 11.792576 20.121985 17.265175 -818 0.098873 0.063383 0.055098 0.029538 9.266618 10.212452 11.842836 12.612871 -819 0.131334 0.095326 0.072368 0.054709 12.490995 9.294715 17.187932 13.189425 -820 0.065829 0.051089 0.052960 0.026236 8.131883 8.159434 14.657744 11.684939 -821 0.044188 0.037448 0.017987 0.019221 5.876377 5.693260 13.712793 10.468217 -822 0.071780 0.069314 0.052712 0.043667 11.627417 9.775848 11.978253 10.482124 -823 0.069741 0.052437 0.062732 0.035167 11.828688 8.349641 9.995857 8.558038 -824 0.083664 0.084561 0.067196 0.059962 11.636494 11.370062 14.627619 13.464007 -825 0.080070 0.066973 0.038204 0.026853 8.515306 7.238550 12.188512 12.882787 -826 0.048698 0.047181 0.028555 0.034426 7.279302 6.450336 11.077705 9.721883 -827 0.093955 0.064623 0.037706 0.028383 13.400957 8.375152 17.932860 14.163167 -828 0.090928 0.097039 0.053575 0.070356 12.136937 12.563429 17.014050 12.793307 -829 0.057243 0.065522 0.051769 0.049395 14.868674 12.574266 14.951562 12.730098 -830 0.132473 0.126720 0.133525 0.141695 14.944602 11.222748 21.062357 17.311112 -831 0.075933 0.066802 0.032867 0.032139 10.484212 8.955872 15.159891 11.788257 -832 0.107740 0.067403 0.052129 0.040977 9.134873 10.040851 9.898679 11.524251 -833 0.061585 0.051591 0.045289 0.034198 9.174088 6.318836 11.375596 7.357252 -834 0.086749 0.076158 0.071207 0.041171 8.850015 6.746833 10.660765 10.702029 -835 0.068065 0.045439 0.052745 0.031671 6.021094 6.448708 10.661324 10.157972 -836 0.105512 0.082587 0.050801 0.029274 8.384552 6.350283 11.904609 10.990880 -837 0.075943 0.083160 0.088953 0.085276 7.009572 7.468963 10.736448 10.057689 -838 0.074292 0.065070 0.042920 0.023649 9.301736 8.062891 11.000323 9.071281 -839 0.103729 0.076576 0.043915 0.028747 9.696875 6.110275 12.730403 8.119874 -840 0.092657 0.052695 0.051965 0.025210 7.955144 5.603681 7.846401 6.786364 -841 0.094080 0.065235 0.074190 0.041581 8.364582 7.706088 11.905427 10.575107 -842 0.145630 0.149556 0.080181 0.080195 14.305788 10.505283 22.406647 17.318786 -843 0.057404 0.059748 0.030295 0.031544 13.279968 8.723056 14.173764 11.921053 -844 0.052505 0.049222 0.047529 0.055898 9.499569 7.724412 10.368899 10.620033 -845 0.084969 0.070205 0.067863 0.061482 8.749460 7.300678 11.481845 9.477445 -846 0.095317 0.084755 0.096464 0.055387 8.153757 10.674560 13.594231 16.038453 -847 0.066329 0.047827 0.060662 0.035264 10.804946 8.610130 14.772685 12.752583 -848 0.114809 0.093564 0.046319 0.062645 11.851731 10.309941 17.881414 14.533725 -849 0.114778 0.078236 0.088744 0.049986 10.447477 8.181342 14.894695 9.636581 -850 0.063195 0.044314 0.040115 0.031828 13.621513 10.337802 15.872731 13.499398 -851 0.077757 0.048754 0.043626 0.033728 10.125187 9.343119 12.606903 12.551161 -852 0.076383 0.077508 0.068994 0.053063 11.641750 9.876643 12.347976 11.235611 -853 0.091368 0.101708 0.051602 0.059980 9.184755 9.409600 12.273240 15.132121 -854 0.059558 0.081533 0.040406 0.041134 10.832535 11.245805 14.816216 19.082513 -855 0.097764 0.073860 0.052024 0.051890 11.543254 13.096280 12.646202 12.637882 -856 0.061156 0.048057 0.032227 0.030627 11.316018 9.555033 10.808798 8.790110 -857 0.097430 0.086542 0.072983 0.057598 13.663371 12.884991 15.151778 12.895489 -858 0.093075 0.067604 0.077225 0.065482 10.759832 7.422717 15.485917 10.149947 -859 0.068810 0.054293 0.069584 0.043032 8.061115 9.063840 12.204574 11.895484 -860 0.060322 0.048408 0.052224 0.028258 9.357272 8.713974 12.581883 10.358964 -861 0.059992 0.054682 0.060129 0.049638 11.246709 10.684551 14.624175 14.104458 -862 0.091161 0.061128 0.054744 0.040110 6.117911 9.153138 8.090566 7.942241 -863 0.087823 0.080388 0.052314 0.054297 9.425466 7.923145 9.816394 9.152801 -864 0.088350 0.063707 0.021453 0.023603 11.151091 7.337551 13.274890 13.097708 -865 0.071870 0.073905 0.056512 0.052593 10.732017 7.637048 10.235074 8.867126 -866 0.062209 0.055177 0.035592 0.023578 8.535882 9.020426 10.816850 10.913272 -867 0.106335 0.060817 0.066447 0.059851 10.923231 9.194445 10.273518 9.791984 -868 0.106207 0.061270 0.041898 0.034375 10.855089 10.740891 10.284021 11.356122 -869 0.042652 0.035408 0.038264 0.022178 9.710080 8.026727 11.513681 9.179095 -870 0.055218 0.051549 0.037539 0.034050 5.724956 6.351110 6.558371 8.371509 -871 0.073452 0.061001 0.046318 0.032443 11.413258 9.694415 9.974195 8.326937 -872 0.074505 0.061201 0.041712 0.044832 9.487949 8.954727 24.670073 15.099301 -873 0.071286 0.068279 0.045594 0.044853 11.842185 9.862226 11.463498 11.316333 -874 0.071358 0.085535 0.067662 0.067194 14.470924 12.205703 12.786280 13.419810 -875 0.061593 0.067881 0.040555 0.038996 8.076906 7.053491 12.161727 11.531701 -876 0.141115 0.102978 0.094118 0.079704 15.633078 15.098922 16.857199 12.699316 -877 0.066114 0.060836 0.036146 0.034020 14.654698 11.084170 13.569927 12.102742 -878 0.131482 0.099368 0.087477 0.067464 16.619065 13.758623 19.928067 16.421804 -879 0.077708 0.066310 0.053129 0.050403 7.662474 6.814071 14.444023 13.152733 -880 0.035114 0.038747 0.014205 0.017353 10.078880 9.475721 11.845902 9.723192 -881 0.028397 0.034267 0.020961 0.022174 6.886974 5.965338 15.950451 11.946256 -882 0.053144 0.057389 0.044469 0.050627 12.972818 10.978367 12.243101 13.210982 -883 0.058798 0.056160 0.041239 0.026435 10.234520 9.161842 11.390635 8.820128 -884 0.092213 0.077487 0.027678 0.038287 6.932364 6.282064 12.390401 10.596270 -885 0.082650 0.075812 0.054684 0.038839 9.127631 10.465651 13.281158 12.699493 -886 0.073544 0.062673 0.043797 0.037036 12.512470 10.299588 10.045263 8.427144 -887 0.087766 0.081019 0.041277 0.031101 8.809033 7.450643 15.951354 14.448115 -888 0.142225 0.108176 0.087632 0.066660 11.229678 10.067828 10.190460 9.538590 -889 0.075692 0.061087 0.036952 0.038925 8.525139 6.928714 9.377707 7.627085 -890 0.135555 0.093462 0.086134 0.049186 13.828322 15.254531 14.103597 14.251275 -891 0.076444 0.080475 0.045617 0.037465 8.462762 8.665108 15.114582 13.699570 -892 0.170027 0.112977 0.134515 0.063965 12.037727 11.798731 17.278252 15.555691 -893 0.115851 0.086574 0.147734 0.062323 13.482841 11.694413 15.365338 14.271484 -894 0.126498 0.117871 0.064171 0.044055 15.872612 13.859899 24.144692 18.493315 -895 0.103004 0.088622 0.093063 0.086322 13.587978 10.266206 17.407342 14.808353 -896 0.090376 0.062205 0.032558 0.027971 7.638237 8.183385 11.248205 10.417205 -897 0.079269 0.060542 0.039622 0.024918 14.061664 12.392684 12.373441 11.273241 -898 0.091030 0.082129 0.045335 0.047655 9.917431 8.679597 13.125268 11.607650 -899 0.097333 0.063798 0.055764 0.036889 8.487973 9.055929 14.234984 15.151830 -900 0.057486 0.056847 0.038501 0.036953 12.733776 12.136012 12.324086 10.624675 -901 0.083045 0.059090 0.067948 0.036384 9.283945 9.689424 12.398550 10.372781 -902 0.046932 0.042158 0.019969 0.013737 6.281656 5.391326 7.340282 8.700540 -903 0.064518 0.053178 0.033179 0.028744 6.788404 6.990272 6.098135 8.937442 -904 0.060330 0.046435 0.037940 0.024397 9.768545 10.924308 15.469979 13.638893 -905 0.076761 0.046178 0.050961 0.026809 8.531940 7.445874 8.653666 9.093218 -906 0.099780 0.074974 0.063409 0.041979 11.825168 9.629837 15.301799 14.755613 -907 0.073978 0.066238 0.043609 0.031111 9.489481 9.821656 12.215889 11.928381 -908 0.050914 0.052849 0.037119 0.037753 7.840645 7.352177 11.447451 8.101455 -909 0.055560 0.058504 0.030636 0.037006 7.962666 6.663320 11.428235 12.300426 -910 0.084733 0.077334 0.047779 0.037649 7.991837 9.330137 17.817146 14.980564 -911 0.048500 0.071854 0.048041 0.027670 8.296634 7.857672 8.368251 7.287956 -912 0.091815 0.062906 0.058702 0.036788 15.079583 11.634296 14.517842 13.121172 -913 0.141614 0.108332 0.106660 0.048725 10.298301 13.133678 13.611697 13.469020 -914 0.063356 0.064184 0.045854 0.041459 9.360251 8.482894 16.136047 12.564356 -915 0.078868 0.100032 0.043806 0.045726 12.504183 11.081579 14.134821 11.127225 -916 0.069128 0.083875 0.038492 0.039829 12.740631 12.006063 13.871067 12.025699 -917 0.073246 0.058212 0.037574 0.037557 9.000834 9.683739 13.834459 11.507131 -918 0.065714 0.067499 0.032056 0.035543 8.074778 7.660734 11.745824 10.367943 -919 0.052646 0.044373 0.031689 0.026028 8.688165 7.860903 15.396445 12.206526 -920 0.087355 0.110553 0.052961 0.055066 10.186750 9.213875 16.066553 12.211642 -921 0.058886 0.055779 0.060052 0.043779 8.728890 7.800959 13.547372 10.274293 -922 0.168425 0.093368 0.092299 0.083353 14.125240 10.734176 10.907351 11.292362 -923 0.073504 0.043572 0.031184 0.020670 7.238417 7.164127 10.368919 11.985929 -924 0.066674 0.066023 0.021276 0.030533 7.500406 8.017639 9.150220 7.961046 -925 0.068676 0.076298 0.048339 0.034489 13.316798 10.795350 10.297203 11.042229 -926 0.045077 0.043734 0.032335 0.020495 11.257776 11.796835 11.898468 10.829122 -927 0.078858 0.056790 0.057923 0.043354 18.209341 9.916359 19.891266 12.809860 -928 0.103587 0.098279 0.056815 0.043717 8.549168 6.428319 10.801804 10.401103 -929 0.075246 0.054671 0.054171 0.056372 11.394347 9.906805 13.666443 13.257608 -930 0.073293 0.060224 0.038040 0.045453 12.729398 9.505990 18.142333 13.614200 -931 0.054795 0.050097 0.021355 0.020573 8.207974 7.388142 8.040921 7.569959 -932 0.064317 0.054329 0.024892 0.016433 6.920478 8.658480 8.035336 10.122151 -933 0.092830 0.067137 0.034155 0.029266 8.580460 7.920697 7.579427 8.106389 -934 0.081915 0.066406 0.042229 0.037555 10.371142 9.137532 10.644079 9.461205 -935 0.083522 0.075739 0.083932 0.063348 7.930689 5.882922 13.059650 11.861570 -936 0.076725 0.055834 0.032169 0.032265 11.228471 11.106696 9.890559 11.231578 -937 0.137537 0.139743 0.070042 0.070586 16.823525 15.866336 15.672541 13.430995 -938 0.093921 0.075433 0.053134 0.039284 10.781764 7.907134 12.664770 8.400105 -939 0.057754 0.045260 0.046807 0.043039 10.547113 7.489924 12.753601 9.209671 -940 0.078419 0.041157 0.070766 0.041732 7.293481 7.662524 14.807965 11.468763 -941 0.058102 0.048886 0.036873 0.024786 10.729903 11.246701 14.003580 12.104820 -942 0.070957 0.049829 0.028085 0.019378 8.209975 7.399960 11.829657 10.340355 -943 0.075915 0.063899 0.067214 0.049001 11.188459 10.233719 8.078809 9.375637 -944 0.067598 0.043636 0.033844 0.017649 9.540682 9.854793 11.687251 10.131807 -945 0.098123 0.049101 0.049665 0.030668 16.454950 17.310780 13.897905 15.090815 -946 0.048572 0.038170 0.022432 0.023078 6.916115 6.614022 14.507476 12.518450 -947 0.058049 0.050163 0.047424 0.030541 16.154464 11.498163 17.555092 10.005947 -948 0.092231 0.091381 0.058296 0.043422 9.843078 6.387708 11.417636 7.955610 -949 0.057676 0.050664 0.018782 0.022223 4.592927 4.704014 6.561585 6.936657 -950 0.044312 0.042431 0.021850 0.017226 10.586829 9.633696 9.559472 9.346549 -951 0.060761 0.076064 0.036058 0.041900 8.594556 7.184971 14.322870 15.575775 -952 0.054086 0.045862 0.044356 0.025315 8.168464 8.576673 9.511052 8.768103 -953 0.066920 0.052843 0.049213 0.033362 6.308282 7.225942 8.071778 9.222403 -954 0.050811 0.051755 0.035297 0.036923 10.038473 8.420599 13.199168 12.741941 -955 0.058469 0.048755 0.047654 0.032432 9.738143 9.462619 14.828044 11.981179 -956 0.087699 0.084463 0.056602 0.037985 11.129496 9.389599 14.840662 12.653375 -957 0.055537 0.050364 0.045756 0.035811 12.477299 12.194380 12.488451 13.133507 -958 0.099837 0.076096 0.070590 0.044561 8.719432 9.024063 10.682060 11.078800 -959 0.072218 0.062169 0.056109 0.025180 9.947388 9.315595 10.438720 10.048462 -960 0.087889 0.056695 0.055749 0.032130 8.777714 8.752453 10.864612 8.772427 -961 0.062750 0.044644 0.024965 0.019491 8.200125 7.300753 13.000449 11.623975 -962 0.096034 0.064126 0.043373 0.037682 11.149735 11.293153 12.620507 15.549382 -963 0.066557 0.050983 0.066323 0.051113 10.885370 10.842342 13.030850 10.300438 -964 0.086181 0.091968 0.047153 0.055308 9.569019 7.148473 10.825854 12.755191 -965 0.040855 0.048493 0.024944 0.024892 6.866903 6.793422 9.520378 10.609918 -966 0.092401 0.109002 0.105341 0.097091 12.543838 10.682791 14.350361 11.760415 -967 0.069133 0.068364 0.041124 0.036362 7.234768 5.791836 11.686573 9.453744 -968 0.092099 0.072350 0.036763 0.023282 13.585104 10.616757 13.972174 9.709930 -969 0.081245 0.077523 0.057700 0.053360 10.055027 10.527222 12.624865 14.326037 -970 0.071887 0.064157 0.051356 0.048707 11.235595 9.222418 11.268130 11.798710 -971 0.052444 0.062050 0.028579 0.028782 9.676402 8.917178 14.232273 12.143211 -972 0.095637 0.094920 0.058363 0.043286 15.878731 13.945225 18.486146 19.146695 -973 0.061556 0.042183 0.050331 0.036779 10.541831 10.698023 9.151573 8.195774 -974 0.070634 0.102232 0.035810 0.046053 8.611735 9.219810 13.501797 13.188500 -975 0.091597 0.084992 0.055692 0.052676 13.032988 10.492313 14.985027 11.612027 -976 0.054191 0.054476 0.029537 0.034734 10.167406 8.796114 13.859699 12.149568 -977 0.052768 0.051535 0.039207 0.029290 11.241428 10.428282 12.345627 12.391651 -978 0.052351 0.051177 0.034957 0.028825 8.384316 8.615110 15.621929 12.583521 -979 0.093049 0.100821 0.067190 0.060843 12.250591 9.222696 14.281954 10.040376 -980 0.089665 0.077287 0.076929 0.053520 12.363861 7.932161 13.967599 10.074183 -981 0.052887 0.060707 0.048997 0.046774 8.270237 8.126345 9.570005 9.740471 -982 0.101602 0.127291 0.044631 0.044604 9.099490 9.253529 12.301281 10.031196 -983 0.045473 0.038908 0.028082 0.023322 8.097587 7.327086 10.298490 8.675002 -984 0.094414 0.068346 0.096230 0.074777 8.742655 7.548934 11.427471 10.224967 -985 0.027950 0.025083 0.024109 0.022520 4.998151 6.219888 6.544899 9.136584 -986 0.139247 0.142762 0.067834 0.060601 15.024488 13.394299 20.192381 18.845362 -987 0.088175 0.080261 0.054666 0.029964 9.800736 8.602994 16.210913 17.369330 -988 0.089340 0.077342 0.054812 0.045654 8.912758 8.414166 12.775733 11.833215 -989 0.079184 0.041238 0.044654 0.032580 10.721264 8.048919 11.233253 11.452251 -990 0.073266 0.092420 0.057664 0.065070 13.214583 12.613530 13.301136 12.565338 -991 0.052030 0.039604 0.022087 0.019309 8.790330 7.955774 14.284386 13.301365 -992 0.073013 0.073491 0.050679 0.041632 8.576558 7.723988 12.509284 12.730986 -993 0.062896 0.083491 0.048257 0.050384 9.738595 10.509263 17.346785 19.292589 -994 0.062913 0.060088 0.041213 0.032855 8.196027 6.781589 12.161533 10.739211 -995 0.097597 0.075907 0.092093 0.046349 12.214936 8.657711 15.874236 11.259785 -996 0.052125 0.039053 0.027578 0.029065 6.475914 5.694120 9.530515 9.771087 -997 0.138061 0.092349 0.054779 0.048988 8.601309 8.256022 14.599135 13.113335 -998 0.057336 0.055897 0.043210 0.026529 12.269399 10.107075 11.292498 11.622425 -999 0.046672 0.043962 0.024004 0.017493 9.142555 6.441292 13.332629 8.945293 -1000 0.125540 0.082180 0.051076 0.050202 9.568334 11.245652 19.678852 16.802099 -1001 0.057372 0.066678 0.034202 0.028743 9.865903 8.209296 11.723992 9.481055 -1002 0.047817 0.034855 0.025451 0.018323 9.755144 8.549124 11.633511 9.742957 -1003 0.096618 0.096126 0.070266 0.060783 15.745992 13.277475 24.858287 22.014020 -1004 0.058732 0.052199 0.034689 0.033288 8.025649 6.646107 10.279607 10.747336 -1005 0.089365 0.072843 0.082195 0.084637 13.694776 10.913343 16.747185 14.458458 -1006 0.090024 0.053916 0.032366 0.027127 6.228453 6.181991 11.053043 9.549075 -1007 0.056292 0.067312 0.057484 0.054305 8.727099 8.495908 13.963862 12.998929 -1008 0.087450 0.048527 0.045169 0.032765 10.530551 9.809306 17.832506 16.580480 -1009 0.053132 0.049403 0.020302 0.017980 10.040216 9.674904 12.971011 14.533827 -1010 0.086293 0.075318 0.041550 0.043456 10.025187 8.184697 14.330383 10.888618 -1011 0.086681 0.052941 0.059074 0.041446 9.700296 6.496467 13.414430 12.564007 -1012 0.056189 0.046973 0.022962 0.015605 9.638200 8.444330 12.073703 11.579403 -1013 0.051082 0.056429 0.032978 0.027662 6.620803 5.588933 10.095993 8.779084 -1014 0.082840 0.071014 0.025798 0.027202 13.781977 13.901814 14.879459 12.319472 -1015 0.046159 0.045918 0.044102 0.031366 7.953460 6.793659 16.362000 11.474771 -1016 0.064378 0.061718 0.066528 0.032363 7.713805 5.883745 9.253726 7.532990 -1017 0.102817 0.078984 0.057912 0.047880 9.062794 8.297057 13.863444 9.870096 -1018 0.113901 0.091699 0.060406 0.074286 9.119884 10.829447 17.076913 19.664802 -1019 0.056816 0.049278 0.038043 0.038607 11.368277 9.903233 17.175362 13.148999 -1020 0.056506 0.049083 0.065514 0.045314 6.500212 6.725015 6.812958 7.035172 -1021 0.057175 0.058596 0.053161 0.048241 8.961841 6.543218 12.794329 9.614149 -1022 0.063435 0.044583 0.027424 0.034642 7.787455 6.312196 10.693171 10.389270 -1023 0.032019 0.031944 0.021074 0.018745 10.318292 8.155008 9.586943 8.740009 -1024 0.061785 0.052543 0.051975 0.040696 10.185094 9.315585 11.841809 9.682263 -1025 0.084906 0.066009 0.045899 0.038304 8.148875 7.623588 12.798611 10.621775 -1026 0.060540 0.050183 0.024381 0.026118 7.890010 7.228158 14.710928 10.972146 -1027 0.049012 0.046525 0.037682 0.040671 8.922546 7.765994 10.357351 8.400398 -1028 0.046513 0.036759 0.026274 0.026027 7.059462 7.195904 12.087305 12.276641 -1029 0.060211 0.057464 0.026459 0.031505 8.282638 7.673338 12.058994 9.225223 -1030 0.097113 0.053151 0.039383 0.025619 9.791180 9.182869 13.729675 10.741019 -1031 0.093064 0.086557 0.053787 0.058721 8.877763 10.858647 8.502404 10.129861 -1032 0.084629 0.085189 0.133011 0.095721 17.438092 13.704955 23.462274 17.815171 -1033 0.094277 0.072331 0.039885 0.027360 11.426768 9.055611 14.110432 9.814557 -1034 0.105710 0.076963 0.058875 0.029199 11.409477 10.914176 11.345735 10.165973 -1035 0.070647 0.070505 0.033714 0.041436 13.647812 11.040977 14.670807 13.189479 -1036 0.071493 0.075900 0.062333 0.066136 9.683348 8.256161 10.406005 8.261578 -1037 0.081677 0.075807 0.031389 0.032616 10.664112 8.808820 13.891495 8.824265 -1038 0.095826 0.097184 0.054628 0.057416 8.802317 7.329779 14.678552 9.538774 -1039 0.113760 0.093236 0.073234 0.073548 10.209676 7.673215 11.141874 8.740070 -1040 0.064083 0.046452 0.030366 0.019293 9.117046 6.878370 12.094519 11.048546 -1041 0.071805 0.054509 0.031787 0.036247 7.279081 7.632246 12.982275 13.579868 -1042 0.060376 0.047878 0.022236 0.017615 5.557973 5.463421 8.171331 8.722112 -1043 0.070593 0.063594 0.035182 0.037510 14.138978 12.498543 16.713801 13.800657 -1044 0.098650 0.061496 0.051482 0.042807 8.025428 9.746949 9.751961 10.516121 -1045 0.067995 0.059026 0.065991 0.039131 8.150840 7.489486 12.946956 11.612885 -1046 0.073872 0.057693 0.043305 0.045480 8.535972 6.806389 9.703705 8.000474 -1047 0.092967 0.058910 0.043534 0.031003 10.958134 9.869070 13.700819 10.326467 -1048 0.073601 0.067757 0.035282 0.026575 8.695569 8.081480 12.317342 10.689292 -1049 0.045603 0.041408 0.023402 0.020866 9.830256 7.506769 10.718695 11.926320 -1050 0.096915 0.083448 0.068440 0.064656 9.570036 10.777759 12.837357 14.646585 -1051 0.068804 0.107331 0.045183 0.053546 9.244449 9.310774 21.141254 19.958326 -1052 0.111831 0.103817 0.051580 0.063530 10.960582 11.271158 17.184611 18.765351 -1053 0.070034 0.071255 0.047701 0.032247 8.930180 10.445625 10.452863 10.794386 -1054 0.060258 0.052442 0.049521 0.030363 6.346145 5.791113 10.945619 9.424065 -1055 0.036400 0.041064 0.036421 0.031679 15.060282 12.365810 12.447409 12.317266 -1056 0.088664 0.081101 0.031466 0.027260 10.019205 7.448271 12.322101 12.212094 -1057 0.041994 0.043700 0.026980 0.021820 8.043948 7.771128 13.087618 11.818598 -1058 0.046227 0.055885 0.018056 0.021802 8.061005 7.582812 7.792868 6.290268 -1059 0.068958 0.056560 0.069044 0.036454 12.669963 14.563835 17.875905 17.341964 -1060 0.163517 0.110162 0.115486 0.080171 15.751562 11.003679 14.668813 11.933950 -1061 0.097412 0.066844 0.059363 0.043483 7.086828 7.157968 9.719539 7.191712 -1062 0.100482 0.077622 0.044737 0.044333 8.636720 7.425546 12.208911 10.471716 -1063 0.100048 0.063050 0.044310 0.037168 11.123086 8.922476 15.307413 11.820987 -1064 0.046940 0.047111 0.025440 0.024991 8.403596 5.609929 6.657872 8.188271 -1065 0.058758 0.062472 0.051022 0.042411 9.105030 5.740537 12.019784 8.597490 -1066 0.112487 0.055773 0.059755 0.034329 14.767449 12.328366 19.299274 15.282155 -1067 0.071402 0.067664 0.037688 0.045502 11.583852 11.482531 17.313019 15.387852 -1068 0.072763 0.066202 0.053265 0.047544 9.753532 7.732333 13.818776 12.582285 -1069 0.153448 0.111276 0.064777 0.054117 12.582419 8.306375 13.955299 10.947423 -1070 0.071611 0.045201 0.051014 0.039719 9.705210 9.691975 10.961684 9.560152 -1071 0.098362 0.084341 0.071572 0.058472 13.519885 14.366599 16.741190 16.684951 -1072 0.052570 0.034989 0.037709 0.018135 9.268748 7.165802 11.392455 8.257011 -1073 0.051899 0.048574 0.036201 0.031250 8.121198 6.617907 11.391441 7.079837 -1074 0.055622 0.042481 0.017533 0.011621 7.199615 6.428047 7.766584 7.187839 -1075 0.072266 0.067533 0.057130 0.039802 9.940270 9.088232 15.850979 14.436217 -1076 0.060871 0.039166 0.029908 0.022288 5.346844 5.001795 8.283513 7.830743 -1077 0.074549 0.084282 0.073610 0.073791 8.786520 9.408536 9.331761 9.756185 -1078 0.098592 0.112898 0.049620 0.042216 15.562304 13.453491 15.376519 14.418056 -1079 0.086389 0.056683 0.050848 0.035415 8.672679 5.229484 10.707815 8.623769 -1080 0.106993 0.061099 0.072705 0.046164 10.982375 9.431801 14.553430 11.775403 -1081 0.079462 0.066419 0.064744 0.047193 7.877659 7.468773 7.926906 7.499437 -1082 0.134977 0.079521 0.143705 0.087345 11.904852 13.352610 15.546045 16.064153 -1083 0.080007 0.093816 0.047317 0.059986 12.946231 11.918760 19.483660 17.312899 -1084 0.054660 0.042725 0.048461 0.031060 8.027292 6.837250 7.185085 9.453302 -1085 0.076062 0.060482 0.056594 0.040321 6.627001 6.603404 10.410298 9.277437 -1086 0.065882 0.072779 0.050710 0.045185 6.968059 5.720747 8.841782 7.594418 -1087 0.036577 0.026978 0.025500 0.022672 10.209605 9.582521 11.667945 9.274118 -1088 0.094122 0.087192 0.058473 0.058379 10.684628 10.562599 11.757534 8.905266 -1089 0.044256 0.045924 0.038865 0.029720 10.835070 10.336834 10.359638 12.473082 -1090 0.064410 0.051916 0.051250 0.036674 9.045753 7.266020 10.070034 9.428209 -1091 0.058362 0.047193 0.033434 0.017178 6.640912 5.513538 8.730587 7.181408 -1092 0.138437 0.127045 0.067756 0.056257 11.202124 8.911227 18.780399 15.989924 -1093 0.092519 0.076511 0.055547 0.047547 12.920164 11.968450 17.041678 14.411853 -1094 0.059406 0.045166 0.022077 0.015900 9.083760 7.892702 10.485161 8.471540 -1095 0.069616 0.049372 0.043852 0.036071 9.652722 7.916076 11.765379 10.885765 -1096 0.080668 0.078495 0.040992 0.053581 8.379317 7.066417 11.120536 11.348084 -1097 0.059057 0.046218 0.031175 0.016899 9.872049 6.174383 11.454411 7.670319 -1098 0.065921 0.047966 0.043169 0.023565 9.183370 7.780049 15.796845 12.282292 -1099 0.056395 0.065147 0.037055 0.039275 9.778374 10.740728 11.994995 14.643616 -1100 0.159256 0.131287 0.093166 0.058329 11.317848 10.504335 11.913669 11.179820 -1101 0.057914 0.054448 0.025580 0.021916 11.905910 9.237285 10.628803 7.882467 -1102 0.082031 0.066632 0.058986 0.053477 13.388529 10.424728 15.545734 15.223818 -1103 0.080262 0.074133 0.036723 0.038985 9.382133 9.468016 10.418945 9.714208 -1104 0.149725 0.102937 0.096437 0.078345 11.528696 8.430781 15.908346 9.085166 -1105 0.071654 0.067105 0.067676 0.059840 6.821670 7.946911 7.958676 8.349029 -1106 0.087018 0.066598 0.047511 0.038572 8.634524 7.702720 12.814692 15.538204 -1107 0.043469 0.030727 0.042324 0.033150 8.176078 7.656543 8.745190 9.834564 -1108 0.049066 0.057038 0.020360 0.021567 4.538744 3.986934 6.441762 6.161532 -1109 0.096692 0.115422 0.039862 0.033074 11.387519 9.606714 12.036845 12.317879 -1110 0.102680 0.069268 0.060739 0.032432 11.977965 8.327161 14.694373 12.869681 -1111 0.065966 0.068203 0.042208 0.049006 12.114882 10.506934 12.114016 8.976860 -1112 0.087758 0.062969 0.052551 0.036586 15.653000 15.030459 18.498346 15.115359 -1113 0.098526 0.068570 0.049506 0.045663 11.396420 11.539975 21.441475 22.372796 -1114 0.070568 0.066504 0.052275 0.038945 11.415544 9.981545 13.250678 12.953872 -1115 0.114311 0.113647 0.072657 0.075774 17.943800 14.514305 18.183176 15.758868 -1116 0.056312 0.037249 0.026678 0.018593 8.562525 8.114197 10.464402 10.104722 -1117 0.044351 0.048708 0.031978 0.034096 9.073142 7.939256 13.489601 12.708923 -1118 0.070975 0.053078 0.053328 0.037132 6.978612 6.535138 7.901270 6.290902 -1119 0.059348 0.049207 0.029717 0.027246 9.373295 7.289857 11.799190 10.019761 -1120 0.083784 0.060399 0.064626 0.030005 7.322850 6.332519 9.756918 7.118626 -1121 0.105080 0.078684 0.044083 0.039277 10.044803 11.517094 12.450421 13.566906 -1122 0.075966 0.068447 0.075008 0.050460 9.423428 10.682645 13.292187 12.826590 -1123 0.093154 0.077610 0.062518 0.046205 14.920208 10.844316 13.188065 12.367300 -1124 0.084433 0.080651 0.050454 0.056323 7.479063 8.562184 7.610280 8.955656 -1125 0.052531 0.050446 0.031097 0.027175 13.311852 10.853248 18.156312 15.139486 -1126 0.125389 0.099881 0.069144 0.056535 12.515718 12.722872 15.840186 19.637770 -1127 0.082778 0.052957 0.077853 0.060381 11.095829 8.328250 12.216602 9.303733 -1128 0.070423 0.053488 0.062091 0.059475 9.894697 10.114046 11.579747 13.272310 -1129 0.063264 0.048065 0.037096 0.027885 6.624409 6.062299 10.088905 10.373953 -1130 0.072695 0.042725 0.052442 0.020675 9.578723 8.894153 16.259041 15.584769 -1131 0.071397 0.065327 0.051661 0.036483 10.089008 10.807886 9.700222 10.463017 -1132 0.078196 0.061968 0.033530 0.038446 8.769955 6.668179 12.309751 11.268052 -1133 0.117932 0.087353 0.069833 0.065107 9.830819 8.423818 14.593941 12.529372 -1134 0.104275 0.064088 0.062148 0.040132 10.958348 8.633604 14.324316 10.383284 -1135 0.090748 0.080747 0.087822 0.061535 10.998444 9.957816 12.556501 10.455250 -1136 0.064738 0.059192 0.028330 0.027474 13.725429 11.724844 16.771271 13.049912 -1137 0.072888 0.051044 0.050189 0.034626 10.543378 10.352359 12.623339 13.830705 -1138 0.045175 0.044242 0.025834 0.027655 6.628320 5.669269 8.694276 8.094968 -1139 0.068691 0.050784 0.040095 0.026730 11.648794 9.563208 12.559174 10.942931 -1140 0.066280 0.051455 0.027648 0.020258 8.245353 7.129036 11.058261 8.545054 -1141 0.103554 0.073972 0.072604 0.033399 12.420680 11.338060 11.405723 9.452291 -1142 0.054029 0.044998 0.036271 0.025057 11.830560 8.907232 9.255455 8.373355 -1143 0.066348 0.043470 0.029429 0.025742 9.697326 10.215319 17.142734 16.651193 -1144 0.060100 0.047663 0.031094 0.028295 9.478963 5.189068 9.371233 7.320962 -1145 0.103466 0.069689 0.044527 0.027591 8.204140 8.304721 12.299252 13.731284 -1146 0.090433 0.051681 0.047693 0.032876 12.077857 9.352485 16.181524 12.655821 -1147 0.071195 0.066038 0.039860 0.036234 10.416404 10.512150 12.646812 16.948086 -1148 0.084104 0.079855 0.046468 0.045498 10.538396 8.169828 13.060589 13.155033 -1149 0.084398 0.086397 0.075085 0.056970 6.966161 7.214147 8.835062 8.649821 -1150 0.078433 0.059835 0.049340 0.045185 7.688347 8.246468 8.973314 8.649033 -1151 0.052307 0.051474 0.022528 0.030402 9.747121 8.177891 12.982663 10.463224 -1152 0.092489 0.089067 0.048509 0.076756 11.710845 12.285492 13.108084 14.572674 -1153 0.098589 0.062649 0.086551 0.040653 16.173344 12.728087 19.314841 15.230438 -1154 0.085465 0.070492 0.062788 0.038482 13.081983 10.977921 17.090055 13.655898 -1155 0.092767 0.097751 0.053774 0.033956 10.051901 7.954784 13.005776 11.382261 -1156 0.078660 0.056404 0.051050 0.030123 12.128343 10.574042 19.935286 14.838954 -1157 0.087486 0.053763 0.048108 0.025068 14.780856 14.370625 15.596527 15.006773 -1158 0.104849 0.081769 0.056416 0.050098 14.370047 13.571831 19.842111 13.691090 -1159 0.097908 0.069767 0.047305 0.031628 10.224341 8.751566 14.365397 10.206963 -1160 0.064179 0.055125 0.050874 0.032799 9.672019 8.774256 10.701434 10.730454 -1161 0.060953 0.064950 0.037617 0.040873 9.293477 7.476898 11.530591 9.089703 -1162 0.075275 0.062853 0.061876 0.068193 7.182012 7.148795 9.779865 10.219279 -1163 0.082027 0.058339 0.059021 0.035446 13.312504 9.857426 16.314888 12.775427 -1164 0.104784 0.093750 0.044880 0.040952 8.809688 6.619488 14.980538 12.557423 -1165 0.063234 0.041173 0.031344 0.021144 7.035496 6.971907 11.318088 9.807088 -1166 0.075823 0.062000 0.045140 0.033477 9.577204 8.301039 10.904188 8.307215 -1167 0.122202 0.096435 0.054247 0.049153 8.315850 7.936956 9.993491 10.578334 -1168 0.068341 0.081125 0.046805 0.042082 15.804622 11.089839 14.763584 9.843303 -1169 0.051973 0.048525 0.031959 0.037015 9.380086 8.580997 14.316756 8.380744 -1170 0.095642 0.085012 0.060024 0.039882 8.831666 9.132639 9.442514 10.356524 -1171 0.075131 0.054917 0.049313 0.039840 7.926075 8.851832 14.710258 17.222365 -1172 0.115479 0.095902 0.093597 0.066191 11.606104 10.936833 14.709428 13.766896 -1173 0.087738 0.067989 0.048132 0.052828 9.052687 8.100433 12.763659 11.616415 -1174 0.080353 0.073800 0.051008 0.041863 10.652566 12.833254 11.162244 11.627204 -1175 0.078513 0.061978 0.044154 0.032039 9.606168 12.567269 15.416023 12.835502 -1176 0.102304 0.068074 0.044846 0.024723 6.455052 4.798960 7.841887 6.442913 -1177 0.091538 0.078182 0.075181 0.051863 11.566418 11.270112 12.811883 12.252973 -1178 0.094165 0.062757 0.043062 0.028560 9.104132 8.820990 10.884681 11.272594 -1179 0.048156 0.050121 0.045206 0.025086 10.053486 8.625594 9.947193 9.236834 -1180 0.070019 0.040099 0.037045 0.030166 13.139631 10.425302 16.470371 11.418855 -1181 0.089535 0.087859 0.056534 0.059336 10.938431 7.680790 12.840764 9.811662 -1182 0.106820 0.125173 0.080528 0.069666 8.799279 6.919934 11.695404 8.185600 -1183 0.079222 0.075349 0.043653 0.037554 10.050566 9.268687 12.202623 11.507934 -1184 0.062205 0.051300 0.029310 0.024833 10.434045 9.477995 12.099847 9.532906 -1185 0.039738 0.029556 0.019255 0.011609 11.107766 10.406096 9.176530 10.862118 -1186 0.096885 0.074658 0.085087 0.067325 11.199484 9.591316 12.444291 10.401183 -1187 0.096104 0.079091 0.057245 0.046383 13.766754 10.577459 13.254601 12.500807 -1188 0.092204 0.092178 0.075733 0.062260 12.151058 9.760045 19.683207 17.961279 -1189 0.069912 0.076784 0.046787 0.034775 9.579900 8.231726 15.079669 15.642523 -1190 0.068579 0.054362 0.035729 0.025377 8.643424 6.920108 16.715089 10.556731 -1191 0.091228 0.087278 0.040965 0.037961 10.822929 9.657750 13.475209 12.520963 -1192 0.088487 0.058195 0.034725 0.029097 8.854862 10.450517 9.352487 12.738847 -1193 0.093829 0.064647 0.075583 0.040389 12.820125 9.465420 11.920000 12.547836 -1194 0.085490 0.070571 0.074504 0.064176 8.210913 6.742789 11.055779 10.072418 -1195 0.084565 0.061472 0.082115 0.034878 7.572990 7.966403 11.071161 9.142000 -1196 0.066429 0.063598 0.039039 0.023959 10.577051 10.488839 13.199616 15.487708 -1197 0.054440 0.048575 0.030410 0.031660 7.380455 6.706209 13.561114 12.713916 -1198 0.068128 0.071486 0.027487 0.029733 5.572109 5.282828 10.214693 6.369026 -1199 0.119958 0.091255 0.102809 0.080502 13.880122 9.920050 17.863134 15.149808 -1200 0.050233 0.043279 0.025048 0.027141 9.763645 9.827550 11.525582 13.224762 -1201 0.081580 0.048557 0.050926 0.036498 6.816550 5.027099 9.890827 7.018228 -1202 0.101853 0.071133 0.086476 0.052609 11.372717 8.055812 9.900669 7.557530 -1203 0.076750 0.112374 0.074470 0.074889 9.768658 7.512851 19.579682 12.359824 -1204 0.106733 0.091763 0.051431 0.036061 10.739921 11.679398 23.793513 22.722458 -1205 0.092484 0.077402 0.058845 0.044925 15.286172 9.939612 11.923959 8.939570 -1206 0.148102 0.119177 0.075899 0.065185 11.507794 9.847741 12.729863 13.558915 -1207 0.141182 0.106842 0.066234 0.040776 12.586634 10.245948 12.210737 11.718055 -1208 0.055685 0.059957 0.029536 0.027265 10.610108 10.344980 12.639257 11.481798 -1209 0.066048 0.042058 0.028516 0.022323 10.609969 9.560019 14.364706 10.732300 -1210 0.105722 0.076279 0.050717 0.035205 12.522365 9.280508 18.029135 11.597521 -1211 0.109164 0.066961 0.062570 0.042583 11.159531 8.284875 13.365991 10.562287 -1212 0.041193 0.041380 0.027804 0.030393 11.446190 11.383501 13.816883 15.098469 -1213 0.088589 0.073657 0.054113 0.037657 11.264014 9.896024 16.825403 13.079204 -1214 0.093249 0.091115 0.048110 0.068611 11.068522 8.656932 23.268868 13.995138 -1215 0.052922 0.036817 0.074291 0.037458 14.075298 12.754768 15.103812 12.617008 -1216 0.054545 0.042195 0.028438 0.027381 10.925522 9.361063 12.760128 13.791476 -1217 0.074782 0.084864 0.091512 0.065583 10.043835 6.921666 9.911269 8.126703 -1218 0.074737 0.049372 0.062378 0.040001 7.898701 8.508640 8.464809 9.192519 -1219 0.082043 0.088138 0.046983 0.044701 16.989505 14.245289 13.277205 10.025740 -1220 0.064406 0.052024 0.036483 0.027114 9.077747 7.726561 12.035645 9.561060 -1221 0.050881 0.050017 0.022269 0.033301 8.887177 9.291837 14.381916 10.912039 -1222 0.131483 0.077578 0.093677 0.051590 9.901636 11.506270 11.947337 12.846156 -1223 0.081204 0.087060 0.049120 0.046500 10.965949 13.174310 14.308325 15.994462 -1224 0.050215 0.054117 0.034255 0.029996 13.177233 10.596603 16.611399 11.107378 -1225 0.074838 0.065702 0.046896 0.034141 11.938132 11.163917 17.861870 13.792133 -1226 0.090239 0.075294 0.072289 0.054674 10.820926 9.105827 11.113924 10.470300 -1227 0.108683 0.133697 0.086712 0.079522 11.856079 10.252215 14.560302 11.754638 -1228 0.108476 0.084378 0.070570 0.063915 14.963455 12.730357 19.823961 17.417138 -1229 0.068058 0.060561 0.040579 0.044881 9.210913 10.443697 13.493768 16.346951 -1230 0.087884 0.071162 0.048142 0.039647 9.862107 7.327645 9.134150 6.900803 -1231 0.076447 0.066957 0.062607 0.058473 8.748539 6.429665 12.321039 11.743601 -1232 0.052502 0.047056 0.029558 0.027238 9.067348 7.388335 12.946910 9.841301 -1233 0.057943 0.052349 0.030011 0.032542 6.490231 6.228342 7.781610 7.093035 -1234 0.065276 0.058179 0.015986 0.017166 8.450851 5.620376 11.614528 9.859055 -1235 0.093993 0.073357 0.041570 0.030381 9.102702 8.204064 13.622196 9.801006 -1236 0.104935 0.079584 0.080823 0.062234 10.125391 10.399559 17.520204 14.589843 -1237 0.073926 0.067680 0.060415 0.056392 8.994123 9.029107 15.791076 12.780926 -1238 0.054524 0.038228 0.036171 0.031944 12.165348 9.551487 12.313618 10.703836 -1239 0.102703 0.083522 0.048787 0.046015 11.174692 11.241549 13.661987 15.146109 -1240 0.055850 0.035849 0.047296 0.027876 9.611866 8.748138 10.612761 9.342271 -1241 0.114034 0.110263 0.099372 0.073543 9.729574 9.373378 19.606805 16.409808 -1242 0.092630 0.095337 0.053694 0.067750 12.940346 8.670482 13.996860 10.964092 -1243 0.065248 0.058510 0.051495 0.031412 14.665355 13.306690 15.117504 12.682267 -1244 0.070064 0.052723 0.030310 0.028251 9.575152 7.780600 10.662198 9.580688 -1245 0.046661 0.034868 0.024402 0.013536 5.890984 3.841734 11.437015 8.775111 -1246 0.086565 0.080452 0.077060 0.060576 10.796628 15.404668 15.402492 14.065564 -1247 0.103035 0.093199 0.093853 0.073384 10.999774 11.525312 14.083771 12.085942 -1248 0.090544 0.071896 0.064903 0.046937 17.143269 12.851839 19.111706 11.661661 -1249 0.091645 0.063698 0.061022 0.048917 13.766208 10.680959 10.710327 12.085355 -1250 0.062180 0.074594 0.049287 0.045268 8.485032 7.840902 10.953893 13.747337 -1251 0.067381 0.077518 0.035560 0.033492 5.335641 5.774189 8.374355 6.659568 -1252 0.047533 0.059476 0.034289 0.036331 8.103115 8.875821 11.839399 12.256934 -1253 0.077629 0.059535 0.056494 0.029317 8.729096 8.507368 12.459298 9.761081 -1254 0.080745 0.067941 0.030187 0.034856 9.052586 8.211529 10.751496 9.309026 -1255 0.083275 0.066514 0.036316 0.022237 15.838495 12.298309 22.938953 20.312810 -1256 0.078930 0.059741 0.063936 0.043091 6.308194 6.285831 12.032208 9.095682 -1257 0.101921 0.052971 0.040698 0.022867 9.256213 8.827229 12.622328 10.277423 -1258 0.068272 0.069693 0.034239 0.029972 13.989473 10.216165 19.880905 14.255437 -1259 0.096418 0.081804 0.065109 0.058170 11.267412 8.574719 14.666684 11.769784 -1260 0.062374 0.060660 0.061119 0.033723 11.293267 11.371235 10.586118 12.467408 -1261 0.078896 0.067210 0.034239 0.026911 11.223913 8.136825 10.899662 8.551551 -1262 0.072536 0.056717 0.033128 0.032607 11.777727 8.921166 9.615856 8.037957 -1263 0.135370 0.114802 0.066796 0.057888 8.230983 7.007242 9.963854 10.645091 -1264 0.072229 0.070903 0.033929 0.036475 6.194670 6.116975 8.841408 8.261106 -1265 0.104430 0.078308 0.076392 0.056041 11.759689 10.975951 11.289514 10.239802 -1266 0.056709 0.049313 0.043595 0.028427 10.710880 9.030417 11.558899 10.489044 -1267 0.086924 0.055829 0.075530 0.053793 10.118738 8.860234 17.173139 13.691485 -1268 0.061357 0.068109 0.035565 0.034375 10.102363 7.932995 13.189947 11.893718 -1269 0.069597 0.070050 0.069492 0.068697 11.860525 11.221045 12.863536 11.079788 -1270 0.058470 0.041721 0.026575 0.019658 8.886530 7.040835 11.806729 7.437168 -1271 0.088881 0.072370 0.079295 0.061889 11.910538 10.039535 9.588911 10.799860 -1272 0.065579 0.048789 0.027834 0.019646 9.064838 7.808003 10.171178 11.220895 -1273 0.095322 0.059373 0.035821 0.022374 11.646557 9.663880 9.322386 9.441397 -1274 0.099027 0.099878 0.043770 0.035629 10.219793 9.683739 13.600125 12.757204 -1275 0.078456 0.085574 0.031119 0.024638 11.355566 9.879565 10.188101 8.695602 -1276 0.098353 0.074236 0.074911 0.063024 12.301808 12.471010 16.547546 14.994626 -1277 0.070058 0.056518 0.048163 0.035571 12.187046 11.319289 14.800556 14.942468 -1278 0.078845 0.074599 0.079942 0.068876 14.565458 11.732083 16.178847 12.662851 -1279 0.045140 0.041327 0.029639 0.044012 10.397357 9.058498 15.617294 13.436571 -1280 0.088749 0.068026 0.073445 0.068301 12.415870 13.203466 20.853560 19.241857 -1281 0.038387 0.043807 0.030123 0.031180 7.535820 9.348884 7.734300 7.810021 -1282 0.080238 0.048850 0.050393 0.043746 8.433261 9.507101 12.641130 13.459932 -1283 0.058543 0.057646 0.028352 0.035946 10.576959 8.464895 14.019251 11.683931 -1284 0.055737 0.066607 0.074349 0.071770 13.255868 11.275602 19.518402 15.817391 -1285 0.062576 0.049512 0.075478 0.039532 8.759241 8.807313 11.078160 8.520081 -1286 0.059862 0.052618 0.037560 0.026790 10.704395 10.576659 16.440992 12.829776 -1287 0.060744 0.067384 0.065212 0.055946 10.500119 9.783540 10.565122 7.804452 -1288 0.081262 0.081411 0.035527 0.042949 9.620332 8.404779 14.032197 11.985531 -1289 0.051450 0.061909 0.024174 0.020399 9.860532 8.764660 13.252672 11.505951 -1290 0.072949 0.084925 0.041155 0.048404 9.506901 8.223094 11.696732 10.853089 -1291 0.054396 0.047122 0.062237 0.036255 10.398020 9.855792 13.684612 11.682164 -1292 0.139865 0.104359 0.092368 0.062048 9.106122 9.864864 9.272738 11.858277 -1293 0.107165 0.077081 0.051214 0.042706 8.231826 7.492503 9.135874 8.426565 -1294 0.097537 0.106246 0.054194 0.060837 9.403712 9.483833 16.196929 14.283711 -1295 0.074493 0.072531 0.026114 0.030945 11.983667 8.657307 11.170684 11.865785 -1296 0.076872 0.058493 0.037416 0.026446 7.060646 7.586497 8.029087 7.979890 -1297 0.073537 0.063283 0.026772 0.025528 11.123919 7.756153 14.088998 10.254164 -1298 0.049019 0.054788 0.044405 0.028100 11.436906 7.868246 14.540554 9.950828 -1299 0.127500 0.091172 0.091457 0.062441 9.288536 11.090127 12.397135 14.344709 -1300 0.097981 0.079791 0.053055 0.055402 7.208683 6.659340 10.908053 9.359260 -1301 0.083877 0.068482 0.040583 0.035940 6.733579 4.531289 11.110532 8.440824 -1302 0.063453 0.055814 0.039431 0.024467 8.319432 7.092103 8.776681 10.977232 -1303 0.059107 0.038521 0.035679 0.028608 14.730815 11.138889 18.879527 13.005377 -1304 0.080987 0.056879 0.051659 0.027322 9.507346 10.109629 15.099921 15.075814 -1305 0.099618 0.078659 0.056757 0.047340 8.264828 7.621574 13.644338 10.765131 -1306 0.087908 0.085032 0.073427 0.050810 12.449606 16.842485 17.957122 21.073949 -1307 0.091897 0.087973 0.044173 0.039913 9.572872 9.783563 14.250578 12.437528 -1308 0.087852 0.057331 0.054171 0.032748 13.780578 10.497655 11.350940 11.148173 -1309 0.042021 0.028650 0.025797 0.017457 6.734126 6.385729 7.248131 5.993215 -1310 0.104189 0.064949 0.053719 0.028481 6.912750 5.594740 9.567933 7.976363 -1311 0.103424 0.096276 0.062737 0.039926 6.533883 6.771568 9.230721 8.726154 -1312 0.057870 0.070187 0.034604 0.027739 7.035647 7.312399 8.010255 7.760277 -1313 0.071290 0.070035 0.057850 0.066507 9.521659 7.755368 11.137987 11.117944 -1314 0.080973 0.076897 0.058652 0.068779 12.438309 12.250244 17.878172 18.127120 -1315 0.063626 0.055555 0.045937 0.062558 13.112574 12.824593 13.320045 14.603305 -1316 0.048598 0.049083 0.049336 0.035981 5.940541 7.712095 10.110131 11.151251 -1317 0.042714 0.051452 0.016555 0.019789 5.331695 5.818498 6.451856 6.594383 -1318 0.088539 0.065244 0.047699 0.035557 12.951406 12.118988 13.070742 12.273303 -1319 0.068779 0.062416 0.048995 0.033430 8.697261 8.747017 9.872417 11.282656 -1320 0.044489 0.047361 0.029715 0.030494 10.168325 7.763376 15.872783 12.536491 -1321 0.065850 0.052241 0.032255 0.041898 7.521863 6.570885 10.302989 8.084359 -1322 0.061620 0.060817 0.058092 0.074806 8.057816 8.656490 9.155616 12.331097 -1323 0.054213 0.049770 0.036728 0.026441 7.980070 6.405000 14.529185 10.261841 -1324 0.078507 0.060736 0.041331 0.034404 15.811441 12.375032 16.515906 14.152874 -1325 0.072251 0.050241 0.041365 0.040629 13.416290 9.979033 13.205728 11.217670 -1326 0.078155 0.062687 0.031405 0.023619 7.239813 6.837521 11.299387 11.882938 -1327 0.121591 0.110546 0.057521 0.043284 12.895999 10.035501 15.296375 10.092626 -1328 0.081612 0.071652 0.040886 0.035826 12.042784 10.378455 13.046126 12.662594 -1329 0.130897 0.081516 0.066624 0.040657 11.525224 7.834206 13.930598 10.932927 -1330 0.066502 0.070460 0.052441 0.038778 8.811137 9.392348 11.180808 11.109251 -1331 0.078420 0.073094 0.032131 0.020003 7.290046 6.226881 8.272753 8.312892 -1332 0.124299 0.082680 0.064921 0.041071 8.349713 7.043542 8.783737 8.495345 -1333 0.092969 0.083859 0.063765 0.056667 8.134860 9.292488 9.708737 9.502338 -1334 0.070843 0.072303 0.053555 0.043922 11.097748 10.020188 14.690387 13.462654 -1335 0.028490 0.027212 0.020728 0.016737 5.222047 4.286826 9.389825 6.718280 -1336 0.066283 0.049757 0.045518 0.036343 12.190342 11.352772 20.483673 18.787834 -1337 0.095515 0.116621 0.080321 0.092561 11.109002 9.123266 17.462421 12.683931 -1338 0.079353 0.041171 0.036623 0.019707 7.679333 7.238722 13.715351 15.264041 -1339 0.107638 0.086635 0.088580 0.068910 12.177766 7.619154 12.728007 11.354290 -1340 0.079253 0.072221 0.045878 0.044825 11.524598 10.853287 12.528021 10.031035 -1341 0.073796 0.082536 0.051127 0.059553 9.660694 9.785656 11.149360 9.981344 -1342 0.089837 0.090502 0.103760 0.062393 14.935642 13.296899 15.947927 12.327423 -1343 0.055411 0.053334 0.034217 0.027958 9.009694 9.415201 11.476786 12.775066 -1344 0.086985 0.091466 0.053658 0.052502 12.695359 10.778638 14.751158 15.174497 -1345 0.099514 0.070700 0.054884 0.038051 9.093092 12.535120 10.252978 12.181478 -1346 0.058477 0.055239 0.032729 0.036244 12.073655 9.880359 17.917743 15.615972 -1347 0.075951 0.053661 0.046295 0.053741 8.917825 8.646081 11.172973 10.445611 -1348 0.080946 0.073559 0.045429 0.051599 8.572281 8.912740 13.402729 11.035604 -1349 0.088329 0.070434 0.052648 0.038242 10.047232 6.905302 13.029288 9.670327 -1350 0.064038 0.075639 0.039072 0.055974 13.920571 10.682328 24.791276 19.142272 -1351 0.070196 0.054033 0.034956 0.029887 10.032692 12.070112 10.337051 9.762931 -1352 0.060406 0.072272 0.032636 0.031830 8.470348 8.083306 11.739977 10.999833 -1353 0.071708 0.067653 0.040889 0.039747 13.810835 11.740578 15.247573 11.520771 -1354 0.075248 0.062485 0.054664 0.052952 10.966938 9.642935 12.382048 12.154035 -1355 0.084221 0.060328 0.038907 0.027968 12.761350 10.542020 15.903430 10.365587 -1356 0.094768 0.072112 0.053936 0.029987 9.513358 8.852308 12.012018 11.532102 -1357 0.055208 0.064243 0.037977 0.024042 10.120072 7.971567 12.820674 11.756979 -1358 0.053721 0.046458 0.023091 0.017220 7.255503 7.286134 10.449608 11.423487 -1359 0.065955 0.075062 0.040698 0.037472 8.093263 7.364506 9.887060 7.895828 -1360 0.078601 0.055732 0.042366 0.031249 6.576245 6.470338 12.414715 10.997006 -1361 0.073357 0.076067 0.025167 0.032250 8.737782 6.935601 14.305792 11.600219 -1362 0.043834 0.036670 0.024861 0.023546 8.963540 6.604133 9.702460 7.576608 -1363 0.060597 0.051004 0.037248 0.030286 10.139286 8.701346 16.876694 13.141993 -1364 0.092890 0.072300 0.058672 0.039205 6.569898 8.554451 8.997755 7.692832 -1365 0.066215 0.060521 0.045899 0.046499 13.988068 10.091817 16.804865 9.852302 -1366 0.109443 0.070329 0.095705 0.050028 12.710335 9.214186 16.700150 10.600061 -1367 0.105607 0.058885 0.062931 0.023499 10.900052 9.331936 11.650460 10.579369 -1368 0.065712 0.053428 0.026749 0.027551 7.821903 6.385294 11.576804 9.102085 -1369 0.076423 0.076928 0.050970 0.038556 8.363514 7.666397 14.734007 10.509340 -1370 0.080992 0.078870 0.070566 0.042276 15.382716 11.142433 12.675041 8.839214 -1371 0.089050 0.078880 0.053558 0.049094 7.452311 8.315253 9.326161 11.678337 -1372 0.054384 0.053928 0.033883 0.021487 8.166669 7.875274 9.763807 8.853978 -1373 0.132110 0.111443 0.078843 0.078608 16.934060 14.098635 14.224898 10.953704 -1374 0.108026 0.067945 0.047870 0.028062 17.367985 16.463299 15.140075 15.084045 -1375 0.063656 0.063138 0.043060 0.035460 8.549073 6.230685 13.618397 12.145484 -1376 0.088566 0.100722 0.062799 0.052590 11.397655 10.659059 12.732185 11.159244 -1377 0.090034 0.065730 0.038231 0.043070 12.657998 8.626667 13.863427 8.408384 -1378 0.071147 0.070653 0.033760 0.042066 11.202762 8.793207 17.316751 13.997513 -1379 0.055870 0.053395 0.033513 0.023125 8.930819 9.573978 13.661149 12.307326 -1380 0.075116 0.067751 0.037823 0.048218 15.985496 11.797508 16.617639 13.435794 -1381 0.071442 0.060243 0.027022 0.017492 11.112281 9.579317 10.469437 8.011362 -1382 0.108781 0.087436 0.097803 0.062427 9.878216 8.275220 11.867191 11.115279 -1383 0.055626 0.058221 0.041188 0.034685 9.240144 7.116979 11.113416 7.604278 -1384 0.093776 0.108494 0.084941 0.086272 10.298009 6.805208 8.588082 7.093926 -1385 0.062937 0.060990 0.062305 0.047731 9.465431 10.392018 16.594040 11.240207 -1386 0.064945 0.051935 0.025258 0.025251 7.119000 11.275850 7.956497 9.777071 -1387 0.056025 0.074034 0.059089 0.076309 13.767659 14.159234 13.238676 14.019123 -1388 0.057715 0.076642 0.019871 0.026330 10.101548 9.447134 10.839007 10.256021 -1389 0.105502 0.082611 0.050587 0.044034 13.545889 8.579113 15.760805 11.586808 -1390 0.068266 0.086252 0.034542 0.046229 11.278412 11.513695 11.613834 10.556558 -1391 0.071047 0.048784 0.028589 0.021370 11.305786 9.468011 16.860851 16.308518 -1392 0.040215 0.034367 0.030043 0.017228 6.201894 6.242444 9.125787 8.026714 -1393 0.073158 0.063885 0.054159 0.047438 7.604383 6.934199 9.324126 7.472132 -1394 0.050655 0.038978 0.027698 0.021490 9.734650 7.052409 11.529832 9.445423 -1395 0.050965 0.052952 0.042599 0.058650 8.485656 7.127450 12.024044 8.791413 -1396 0.103425 0.120026 0.036345 0.042231 14.229114 15.185959 20.436123 19.503518 -1397 0.069781 0.066375 0.034447 0.031785 14.821654 12.682595 13.959014 12.166948 -1398 0.063856 0.051356 0.034075 0.022921 12.648889 9.065314 17.365026 12.093782 -1399 0.090430 0.085250 0.056632 0.065850 12.790511 10.829046 12.761137 12.508325 -1400 0.049998 0.049715 0.041806 0.029780 12.835821 13.300686 14.763765 12.027270 -1401 0.228150 0.137201 0.082048 0.062145 11.374655 9.843425 18.180416 15.261684 -1402 0.075845 0.083872 0.028183 0.027419 9.471708 10.206086 11.075112 12.001033 -1403 0.131445 0.111888 0.107666 0.085797 14.078598 15.435397 17.259258 14.551768 -1404 0.087960 0.070179 0.037662 0.027401 8.258802 8.165316 9.535380 8.164433 -1405 0.054600 0.051241 0.021923 0.030528 15.142069 10.536084 13.092333 10.879121 -1406 0.071804 0.066269 0.033472 0.037495 8.738120 9.508563 14.169449 12.038785 -1407 0.090068 0.059992 0.051725 0.047215 8.565827 7.465314 11.416804 9.816874 -1408 0.067937 0.060354 0.071838 0.043220 8.052053 6.563833 13.515591 15.524619 -1409 0.081873 0.054498 0.048261 0.036164 9.126464 8.473071 12.674615 10.833431 -1410 0.108889 0.085399 0.058266 0.040633 12.608494 9.110462 15.727069 11.468337 -1411 0.056343 0.054302 0.047088 0.034123 8.300220 7.334969 11.202649 10.398562 -1412 0.038842 0.027689 0.023279 0.015116 7.959242 6.996945 9.161475 6.494986 -1413 0.073652 0.093903 0.038190 0.032094 12.096378 11.251092 11.344314 9.405356 -1414 0.089705 0.053320 0.038899 0.028728 7.816758 7.163082 8.965080 7.320403 -1415 0.110930 0.084319 0.068413 0.037838 9.107259 7.532549 14.609218 11.584253 -1416 0.070500 0.050448 0.041149 0.032065 11.469231 7.489414 16.143062 10.632994 -1417 0.054974 0.045422 0.023798 0.021559 7.284386 6.442789 12.976914 10.883557 -1418 0.123127 0.094818 0.096799 0.074495 8.140044 8.069755 24.087372 14.249459 -1419 0.060442 0.067092 0.033578 0.028497 8.130936 6.542923 14.176689 12.072709 -1420 0.083409 0.097338 0.061193 0.057356 13.724465 15.177152 17.242775 14.430173 -1421 0.081321 0.075302 0.050527 0.033146 9.929167 8.204471 11.643431 11.222521 -1422 0.085192 0.071517 0.052556 0.061420 5.651446 6.552250 11.707054 14.454653 -1423 0.080866 0.066720 0.044223 0.034421 14.276500 10.418080 13.669670 9.413610 -1424 0.041150 0.045732 0.022385 0.025353 9.811822 9.679631 12.769544 9.410729 -1425 0.135581 0.103203 0.090072 0.061067 12.608491 13.916419 15.457088 16.724794 -1426 0.096532 0.066879 0.049485 0.040912 9.179754 8.368307 9.583696 8.565260 -1427 0.075069 0.086795 0.045139 0.030393 8.498950 9.404135 11.811874 10.382737 -1428 0.071577 0.060319 0.032523 0.029936 7.631913 6.968673 11.014206 8.119958 -1429 0.090327 0.096218 0.056859 0.074514 9.175887 11.672586 10.187992 11.363944 -1430 0.097026 0.057443 0.037792 0.017041 10.254000 8.310665 9.689568 9.530140 -1431 0.100403 0.065219 0.039576 0.039376 7.875595 8.975666 8.541303 8.671371 -1432 0.076090 0.062630 0.068714 0.061555 9.984289 8.940250 10.231019 10.572527 -1433 0.071626 0.060540 0.032936 0.027850 8.814884 8.282215 12.675893 10.828600 -1434 0.095438 0.087080 0.095871 0.083249 7.162057 5.655759 10.435618 9.072031 -1435 0.071738 0.083226 0.052453 0.046213 9.957291 9.706329 13.718272 11.488671 -1436 0.076308 0.087826 0.034823 0.044925 10.352401 10.445144 10.310174 10.177095 -1437 0.106566 0.075579 0.097409 0.089329 15.030664 13.671112 17.985942 12.150550 -1438 0.051756 0.059680 0.041055 0.028113 6.913549 8.020310 10.124395 13.888156 -1439 0.112182 0.114903 0.097673 0.080784 10.336495 9.236386 9.816410 10.244476 -1440 0.058009 0.044413 0.024444 0.017992 11.186146 11.140977 9.929737 11.786141 -1441 0.089702 0.066716 0.075465 0.070869 13.542729 12.223780 9.983651 8.389465 -1442 0.070038 0.048700 0.021550 0.023813 6.436802 6.974386 10.367766 9.774759 -1443 0.072483 0.067415 0.050208 0.042107 10.346263 7.343686 16.618769 10.415231 -1444 0.105781 0.093999 0.051154 0.056992 11.281415 10.694642 14.920207 12.423448 -1445 0.088791 0.071201 0.050756 0.034390 7.693902 6.366144 9.108124 7.353562 -1446 0.047864 0.046797 0.028502 0.025375 11.002184 10.478307 15.072644 13.327380 -1447 0.090032 0.066958 0.039096 0.053460 12.099122 8.812440 15.589652 12.952865 -1448 0.088269 0.056334 0.050081 0.027820 13.114342 11.187308 14.509718 15.064646 -1449 0.088606 0.055587 0.049815 0.029069 11.178353 10.637239 13.833384 11.967225 -1450 0.083753 0.060767 0.043167 0.033283 11.524761 8.420922 15.652317 9.599940 -1451 0.061519 0.068011 0.030827 0.035009 10.939534 9.640657 12.716868 12.894522 -1452 0.065414 0.048510 0.035436 0.027416 10.214315 9.563018 13.543778 11.575912 -1453 0.062719 0.072078 0.029310 0.028901 8.140843 7.554700 10.660075 8.855035 -1454 0.057641 0.055990 0.027390 0.021881 7.375103 6.552131 17.715812 9.386461 -1455 0.063851 0.065195 0.044424 0.046645 9.887958 10.446737 11.473261 11.668476 -1456 0.106001 0.079788 0.061660 0.080892 10.383869 9.973455 14.093585 11.701852 -1457 0.052867 0.053695 0.034856 0.021729 8.096738 8.139899 10.857687 11.989795 -1458 0.121801 0.094070 0.058714 0.041906 9.287184 8.724410 16.004396 15.731134 -1459 0.118786 0.081999 0.121573 0.076825 13.230973 9.751256 17.911809 14.763453 -1460 0.067180 0.072373 0.055654 0.042933 12.097936 10.775512 12.405566 9.942933 -1461 0.095367 0.097895 0.046216 0.032520 8.370403 5.635398 15.911288 10.682656 -1462 0.055931 0.043531 0.041864 0.038541 11.286918 11.441646 11.405725 10.651168 -1463 0.065136 0.049180 0.031671 0.033866 8.767993 9.849126 9.356799 10.682891 -1464 0.076470 0.045294 0.031032 0.017894 6.519864 5.890430 12.143732 10.982167 -1465 0.093443 0.064095 0.069000 0.045460 11.006456 10.438653 13.160687 11.283432 -1466 0.060225 0.063792 0.042555 0.036657 8.962995 7.840181 10.202860 10.259078 -1467 0.089356 0.078039 0.059760 0.046267 7.917017 9.319356 10.856123 8.467643 -1468 0.055239 0.052814 0.038069 0.035708 11.383812 9.904115 14.597494 10.909980 -1469 0.072503 0.059035 0.071586 0.048626 7.471088 7.656684 17.041794 15.302812 -1470 0.092109 0.103378 0.056676 0.044316 11.058597 9.215056 13.470777 11.393992 -1471 0.085820 0.086634 0.053882 0.051541 17.872528 13.660393 16.575490 11.965489 -1472 0.049325 0.037529 0.029084 0.027492 10.315114 7.472921 12.833462 11.664049 -1473 0.056325 0.068833 0.031733 0.044130 8.477266 6.488090 12.971307 11.314110 -1474 0.062901 0.043048 0.059616 0.037972 14.865780 14.140014 15.267958 9.688155 -1475 0.075675 0.066953 0.030683 0.024488 14.332935 12.164677 16.460437 18.316226 -1476 0.082964 0.071744 0.056019 0.052738 9.230028 7.145150 19.660586 15.463044 -1477 0.061814 0.071400 0.025831 0.029228 7.309216 6.731257 12.039536 8.947349 -1478 0.056199 0.042896 0.037679 0.023581 10.710656 10.443483 12.429041 12.149058 -1479 0.063073 0.058807 0.033330 0.035002 10.334259 8.001544 12.460346 10.111028 -1480 0.067627 0.061990 0.051662 0.034104 10.773401 8.368032 14.623679 10.683985 -1481 0.074341 0.064802 0.044473 0.031922 6.998835 7.483212 6.261215 7.233193 -1482 0.129934 0.136760 0.059130 0.057622 13.140953 11.965064 17.572788 12.706572 -1483 0.084712 0.101489 0.046404 0.075653 11.194562 9.089864 13.862508 14.820831 -1484 0.094068 0.081562 0.065538 0.057087 17.620023 12.620149 15.726872 14.770193 -1485 0.067891 0.053271 0.079152 0.049158 13.097799 10.088572 14.406331 11.912960 -1486 0.055987 0.043516 0.045779 0.024254 7.802904 7.088481 10.002857 7.927285 -1487 0.075649 0.079151 0.042116 0.052497 10.688222 8.028332 13.984160 10.427253 -1488 0.072473 0.047103 0.053819 0.022292 8.512990 6.950384 9.224077 7.508706 -1489 0.055491 0.062625 0.024242 0.021986 8.017095 5.452451 10.854884 8.878297 -1490 0.097834 0.071408 0.085014 0.040999 13.548385 11.764843 15.347671 12.185223 -1491 0.084879 0.058765 0.058003 0.045994 9.069264 8.905709 18.008053 19.412421 -1492 0.084623 0.108941 0.040659 0.038823 8.653445 7.783302 9.316816 7.693872 -1493 0.120364 0.143870 0.063632 0.073003 12.981704 10.658281 15.254366 14.848265 -1494 0.043065 0.038770 0.024545 0.024939 10.008583 7.267414 10.098706 9.549059 -1495 0.072524 0.079641 0.057363 0.054966 8.884991 8.013377 13.379109 13.202854 -1496 0.052697 0.036036 0.049009 0.024792 7.099702 7.044370 13.678070 13.401952 -1497 0.093071 0.084593 0.080922 0.066443 12.162098 10.759213 19.054843 15.539762 -1498 0.066606 0.057531 0.040475 0.031137 11.375950 8.995654 15.427672 12.984410 -1499 0.068496 0.055519 0.030332 0.022349 11.867308 9.902561 16.448233 16.052710 -1500 0.062877 0.046041 0.024096 0.016189 9.517749 6.746335 10.162982 8.848002 -1501 0.119340 0.085230 0.041651 0.030650 8.369472 6.799835 10.177746 8.540316 -1502 0.074776 0.049160 0.038942 0.024911 12.259045 11.786083 14.620116 11.349454 -1503 0.064308 0.071249 0.037015 0.045013 7.116925 6.377123 8.132112 7.102280 -1504 0.079635 0.058465 0.048003 0.041047 9.118187 9.287188 15.220087 12.306869 -1505 0.082922 0.069069 0.050943 0.030677 9.819448 12.843088 12.595486 13.998579 -1506 0.099386 0.085123 0.054477 0.039968 10.673658 6.619927 10.928410 9.165979 -1507 0.060038 0.044028 0.036195 0.024305 9.470721 7.794226 13.420077 12.941913 -1508 0.060499 0.059864 0.023197 0.032175 9.735298 8.505023 16.291116 14.594159 -1509 0.118831 0.066650 0.079133 0.039552 10.868449 9.316666 12.968306 12.613074 -1510 0.084532 0.071720 0.055450 0.043564 11.261964 9.143850 9.551392 11.184689 -1511 0.071468 0.055486 0.054896 0.037229 7.579513 7.364442 12.653416 11.329022 -1512 0.062286 0.072090 0.056771 0.067490 13.436094 12.797784 16.723219 13.544260 -1513 0.105539 0.069310 0.044385 0.033526 15.171605 9.969284 13.612922 12.008400 -1514 0.061435 0.068070 0.019582 0.018279 8.195360 7.494322 12.771011 9.065250 -1515 0.064208 0.048780 0.043532 0.017320 9.184638 9.636660 8.193579 7.773048 -1516 0.136082 0.107145 0.137150 0.070060 14.205553 8.678152 18.047417 13.963991 -1517 0.058204 0.059531 0.046761 0.034685 12.961044 12.693083 15.322284 14.477275 -1518 0.069429 0.050875 0.039061 0.031961 10.864451 8.981486 14.328417 12.896463 -1519 0.086407 0.068303 0.069490 0.051465 11.018515 8.674690 9.817685 9.755376 -1520 0.084809 0.063594 0.059527 0.060839 11.142361 8.735565 10.636493 9.908657 -1521 0.069274 0.045522 0.044811 0.021439 12.467854 8.806367 12.160129 9.326395 -1522 0.090364 0.100847 0.091574 0.073509 7.433043 8.114443 8.974861 12.163495 -1523 0.111246 0.095635 0.100555 0.060711 11.047042 11.507463 14.028490 14.552755 -1524 0.040605 0.033684 0.032158 0.025660 8.773127 5.818958 8.211104 7.070691 -1525 0.051197 0.051620 0.032797 0.048672 6.000875 5.868733 8.980197 7.460659 -1526 0.057679 0.058647 0.036962 0.036103 11.181394 11.582392 18.163658 18.552752 -1527 0.061072 0.047907 0.045233 0.038833 4.370412 4.415298 9.811942 9.975862 -1528 0.085571 0.050076 0.063919 0.032778 8.467648 7.558153 8.714135 6.522158 -1529 0.071534 0.065002 0.031223 0.028352 9.699139 8.716877 9.468006 9.529487 -1530 0.065654 0.056448 0.040715 0.034325 9.133305 9.829975 10.487052 10.987241 -1531 0.066488 0.045768 0.028181 0.020814 8.465139 9.739515 10.392395 11.049132 -1532 0.069964 0.065065 0.046102 0.039279 9.593385 10.610202 11.194977 11.718795 -1533 0.087448 0.054266 0.045590 0.034062 7.865339 7.960427 13.064149 12.886354 -1534 0.118096 0.126727 0.082415 0.092095 16.238070 12.675405 20.032783 18.538188 -1535 0.066707 0.059167 0.059796 0.039314 7.331601 7.170090 8.867278 9.100660 -1536 0.111437 0.110913 0.084287 0.050778 13.248231 11.917857 13.297584 12.593122 -1537 0.055077 0.049025 0.051104 0.037087 12.182641 9.031218 14.182500 10.223891 -1538 0.073875 0.053268 0.022802 0.021008 8.193886 6.986293 8.072265 7.399328 -1539 0.113754 0.080092 0.067380 0.043886 10.799666 11.491366 11.842302 11.855199 -1540 0.085484 0.077201 0.027911 0.036036 10.114343 8.301619 14.391985 10.315191 -1541 0.042786 0.043614 0.031891 0.029824 8.526659 6.856880 16.066370 11.594395 -1542 0.038643 0.041123 0.023970 0.016836 13.964002 8.422727 15.065497 10.819546 -1543 0.089026 0.082928 0.049444 0.043230 10.802804 10.983950 11.371562 11.578444 -1544 0.071497 0.066377 0.034707 0.037706 9.123270 8.209857 8.066631 7.492840 -1545 0.068786 0.049937 0.045068 0.036728 12.450977 9.545414 15.912563 12.704120 -1546 0.111154 0.076931 0.066725 0.059341 9.006201 6.883590 12.112152 8.143636 -1547 0.100551 0.069101 0.052344 0.036840 9.811062 7.111315 13.079887 9.946786 -1548 0.111902 0.073567 0.066189 0.047279 11.918613 8.912046 17.773289 12.573965 -1549 0.102965 0.088794 0.049377 0.047303 13.907349 11.441844 15.063180 13.829830 -1550 0.084581 0.070079 0.040485 0.042566 9.171726 8.633411 15.577409 13.926621 -1551 0.128199 0.085855 0.042572 0.033130 8.098169 8.335432 12.522706 9.267741 -1552 0.052777 0.036049 0.027128 0.016618 14.230759 9.756960 14.625637 12.090874 -1553 0.084710 0.063057 0.030192 0.016304 14.706721 9.383814 13.587778 11.198934 -1554 0.049864 0.066502 0.020978 0.024621 11.074617 10.383221 8.929247 9.363035 -1555 0.118346 0.086757 0.070623 0.047575 10.483222 8.506425 11.994477 7.011404 -1556 0.133490 0.071821 0.088303 0.030978 7.620188 6.721452 9.939774 10.697465 -1557 0.058770 0.034665 0.054030 0.031611 7.708384 8.988028 10.987450 10.720611 -1558 0.062155 0.070100 0.047081 0.050564 10.754802 8.666418 15.630373 13.125848 -1559 0.052423 0.053749 0.032712 0.032436 8.750046 8.911634 8.712342 8.349499 -1560 0.065868 0.057948 0.037767 0.028552 9.536061 9.725362 12.190226 13.935793 -1561 0.055846 0.054956 0.031373 0.030078 9.102966 8.741601 12.791971 10.505297 -1562 0.070709 0.066296 0.039550 0.025356 12.312024 11.385110 19.700422 15.933640 -1563 0.083018 0.067977 0.052857 0.047053 16.692655 10.480177 19.739758 14.073993 -1564 0.054027 0.038767 0.024836 0.021181 7.711853 6.722048 11.053643 8.671482 -1565 0.047421 0.045968 0.050982 0.043428 9.157014 7.798641 14.339386 12.752882 -1566 0.075641 0.065152 0.044807 0.045078 12.007944 9.722754 16.657267 12.703013 -1567 0.074299 0.068711 0.033593 0.023528 9.549251 9.225145 8.562773 8.509470 -1568 0.085186 0.064326 0.072417 0.035689 11.041119 8.469586 15.145574 12.673620 -1569 0.041198 0.046762 0.025378 0.024800 10.539324 7.335415 16.964967 10.534227 -1570 0.067570 0.059577 0.048222 0.031552 9.362715 11.597779 14.672512 11.337484 -1571 0.053739 0.052942 0.028339 0.031251 9.021140 10.969418 11.270080 12.137310 -1572 0.063740 0.049789 0.055076 0.025126 10.169889 10.215114 14.245822 12.876170 -1573 0.070319 0.065959 0.037610 0.035032 13.081255 10.916638 14.063087 10.905705 -1574 0.118150 0.085028 0.071603 0.065244 10.300220 8.648200 22.734479 19.904835 -1575 0.118571 0.099207 0.084222 0.048238 7.465602 7.420209 9.666424 10.614774 -1576 0.108633 0.109542 0.073778 0.040645 9.778115 7.683033 10.169470 8.019539 -1577 0.053316 0.047992 0.036383 0.020704 6.091094 4.429169 7.345887 6.705111 -1578 0.069046 0.063947 0.050040 0.039799 11.019829 8.131792 11.191608 12.115723 -1579 0.052299 0.040017 0.028715 0.025677 11.359364 10.213661 13.330930 13.940038 -1580 0.090291 0.096724 0.028164 0.026185 8.289497 7.512120 11.954593 14.222410 -1581 0.068231 0.055621 0.040762 0.035891 7.149614 6.954690 13.414195 13.824432 -1582 0.086129 0.059133 0.061846 0.035818 9.060035 8.205179 16.581463 11.959215 -1583 0.072421 0.047096 0.052388 0.042257 8.308107 5.663093 13.336463 7.982515 -1584 0.106409 0.089001 0.043423 0.054261 7.952989 7.767988 14.956080 14.588795 -1585 0.073175 0.059274 0.059487 0.036565 9.448890 7.595322 11.251783 12.024726 -1586 0.048024 0.043539 0.041686 0.028893 10.790861 10.357655 15.221013 11.597605 -1587 0.058558 0.056393 0.022743 0.035511 6.846680 6.742807 8.983573 9.249334 -1588 0.070584 0.075525 0.041088 0.044261 10.721940 5.999902 11.629378 9.443765 -1589 0.071679 0.066939 0.036535 0.031329 7.441605 8.226145 8.192061 8.970095 -1590 0.039054 0.037744 0.021522 0.017524 7.414571 7.028841 13.162647 9.414412 -1591 0.081721 0.074689 0.040204 0.025442 11.146777 11.671270 11.193893 11.402740 -1592 0.078154 0.078404 0.042337 0.040608 5.721514 4.692593 8.996162 7.344284 -1593 0.050950 0.056639 0.030988 0.027954 11.523078 9.562010 16.189424 14.996728 -1594 0.122470 0.111431 0.053924 0.047269 10.704573 8.905523 14.813609 16.550947 -1595 0.129818 0.108464 0.076653 0.052157 11.960380 11.995770 14.360725 13.601334 -1596 0.085228 0.052448 0.056970 0.027335 9.123104 10.296278 11.932656 14.566955 -1597 0.123192 0.087089 0.131047 0.080737 10.963428 8.060469 10.565157 9.269499 -1598 0.159535 0.155018 0.080071 0.075514 14.469446 10.267499 18.236115 11.373623 -1599 0.076927 0.059284 0.040323 0.039487 10.108919 9.070878 14.628985 14.939182 -1600 0.088435 0.072615 0.063110 0.041914 11.087811 9.519932 14.143682 14.635669 -1601 0.065446 0.059372 0.031505 0.022761 6.264634 5.631944 14.538267 11.058108 -1602 0.077428 0.078592 0.045085 0.030946 10.751422 10.011857 15.244792 11.757844 -1603 0.142400 0.126641 0.087655 0.048803 10.663980 8.476569 18.711167 13.214588 -1604 0.072778 0.080613 0.047049 0.065515 11.383390 7.645749 18.316019 12.963010 -1605 0.081601 0.072109 0.061442 0.030892 11.503109 9.352340 13.015919 11.187208 -1606 0.067079 0.100221 0.037464 0.036051 8.676708 9.496945 9.727962 8.554089 -1607 0.050619 0.047721 0.035048 0.025930 6.797115 6.073949 8.867950 7.128821 -1608 0.081642 0.036579 0.051416 0.026238 8.266797 6.492890 10.268629 8.453159 -1609 0.074743 0.058135 0.060500 0.036067 9.865483 7.070606 16.957613 12.997036 -1610 0.070682 0.062569 0.052148 0.051254 13.250669 10.629359 23.481322 16.738345 -1611 0.046109 0.040791 0.023686 0.028221 14.748584 12.239490 15.715207 12.932158 -1612 0.057000 0.053139 0.039469 0.034509 5.624979 5.684482 7.050841 7.387375 -1613 0.083384 0.068826 0.030410 0.032081 8.279192 5.918535 10.649919 8.829742 -1614 0.058646 0.049317 0.030391 0.033677 11.741363 9.173031 20.865520 12.747496 -1615 0.104050 0.080278 0.105309 0.100019 10.121609 8.099994 12.870695 10.411557 -1616 0.075865 0.066595 0.034122 0.023558 8.269772 6.235297 19.428524 11.949325 -1617 0.072146 0.064498 0.052973 0.046595 10.712963 8.492236 16.428806 11.988368 -1618 0.127989 0.091634 0.100900 0.071481 9.498959 10.249022 8.624461 10.120312 -1619 0.073258 0.059444 0.066161 0.048693 7.390480 5.635869 10.591370 8.199521 -1620 0.132659 0.083423 0.101968 0.062277 8.582233 8.018928 12.115520 10.456752 -1621 0.049470 0.032128 0.027254 0.013289 10.721447 6.444648 16.711848 11.283432 -1622 0.077039 0.054414 0.029450 0.029857 8.401688 7.596380 11.346174 10.154277 -1623 0.073372 0.051327 0.045160 0.039252 8.914680 8.246557 11.441828 10.384206 -1624 0.082594 0.081859 0.101390 0.070480 9.448323 8.304403 13.835366 11.181212 -1625 0.057878 0.061229 0.037003 0.035914 10.694502 8.885489 10.300387 11.532341 -1626 0.053975 0.057377 0.031764 0.022196 11.567404 9.862033 16.065199 13.892232 -1627 0.057205 0.046240 0.032083 0.025478 6.665041 6.659263 13.187540 14.431228 -1628 0.061145 0.055552 0.050641 0.034823 10.229897 10.358029 11.380871 12.145845 -1629 0.058407 0.053472 0.053417 0.044067 9.058842 6.544418 13.714111 9.816775 -1630 0.086447 0.065321 0.053159 0.037878 7.680652 6.921223 12.098282 10.663829 -1631 0.077351 0.049003 0.080743 0.052474 14.381436 14.012397 21.616035 17.578974 -1632 0.092989 0.073099 0.049131 0.059396 8.989091 8.964315 15.004067 12.831927 -1633 0.082010 0.072794 0.041106 0.040864 8.854322 9.006546 13.159407 12.756876 -1634 0.049370 0.035761 0.022557 0.022140 6.328814 5.520725 7.524093 5.445864 -1635 0.057703 0.061140 0.036917 0.029839 7.843674 5.509800 14.315075 11.027226 -1636 0.050162 0.036515 0.019287 0.014207 9.408793 7.607273 11.465725 10.297738 -1637 0.072159 0.059671 0.034268 0.026234 9.512592 8.171518 10.411323 10.194132 -1638 0.077870 0.040118 0.046502 0.035258 10.075673 8.322436 12.412273 9.779481 -1639 0.074893 0.074693 0.036509 0.033593 9.593449 8.396861 15.895963 15.960732 -1640 0.073016 0.062430 0.029492 0.023474 7.178866 7.291877 10.511494 10.503109 -1641 0.054049 0.044280 0.032322 0.024979 12.924478 11.270475 14.862207 13.144290 -1642 0.088582 0.079913 0.065791 0.050328 12.574774 8.542024 13.316072 9.246234 -1643 0.098469 0.059788 0.043824 0.034092 13.169447 12.223248 15.032645 13.585499 -1644 0.071412 0.067866 0.060296 0.032996 8.778130 8.542485 11.494570 10.589328 -1645 0.088329 0.077095 0.024066 0.016290 11.528275 8.432845 22.260571 17.336553 -1646 0.050507 0.043817 0.033610 0.018994 8.267393 8.646047 13.185473 12.227535 -1647 0.084950 0.094631 0.067206 0.066773 11.910501 9.924030 12.321968 12.443646 -1648 0.067711 0.048878 0.033390 0.024325 8.606130 10.007411 11.090335 9.679825 -1649 0.082614 0.079274 0.043750 0.029053 15.100437 13.808119 18.073072 13.557167 -1650 0.061241 0.059586 0.038748 0.044469 4.391043 4.974677 9.393640 8.967623 -1651 0.104017 0.064597 0.032908 0.016613 6.305440 6.126007 11.980108 11.984455 -1652 0.037033 0.036389 0.030122 0.019754 6.094171 5.224604 10.592796 7.848555 -1653 0.105759 0.080590 0.079361 0.055978 8.373540 8.387632 9.140030 9.553802 -1654 0.081629 0.085491 0.044940 0.030564 8.452630 6.943652 12.034017 9.220964 -1655 0.052788 0.058592 0.033647 0.030472 14.455425 11.740055 17.919397 15.490407 -1656 0.052134 0.045114 0.028217 0.020025 7.268320 5.197744 9.213651 6.517463 -1657 0.130492 0.104995 0.059413 0.049548 16.338034 12.684182 19.942771 16.335569 -1658 0.114523 0.065874 0.057677 0.029966 8.289307 6.606981 16.073218 11.098814 -1659 0.060944 0.068813 0.031734 0.030670 11.261246 10.014207 14.126654 12.144007 -1660 0.077205 0.077072 0.039994 0.033365 8.944251 8.783130 11.365171 10.116269 -1661 0.073233 0.058063 0.049269 0.027862 6.960305 7.712629 7.561626 7.714625 -1662 0.056610 0.038116 0.021132 0.017155 8.420085 6.541853 12.854778 8.592834 -1663 0.081518 0.076799 0.057782 0.043467 9.546840 9.049991 15.704779 12.447867 -1664 0.069821 0.074476 0.058727 0.040445 7.239072 6.419704 12.675990 12.350102 -1665 0.090382 0.071307 0.054438 0.044411 9.413815 10.698674 11.506230 16.439828 -1666 0.072288 0.061495 0.050252 0.032910 10.952795 7.253592 13.150422 9.201875 -1667 0.060041 0.051241 0.035534 0.033084 8.941287 7.593957 13.102610 12.286752 -1668 0.098356 0.077865 0.054498 0.031240 9.914007 9.224729 15.363201 13.689189 -1669 0.070277 0.084943 0.058490 0.048478 10.781424 10.352567 15.355980 11.917017 -1670 0.085914 0.070477 0.055360 0.051253 11.038073 8.796606 13.385241 11.473924 -1671 0.048082 0.031406 0.024789 0.021958 10.189394 10.363677 9.340740 11.293901 -1672 0.052416 0.034151 0.025530 0.015151 8.334723 8.367517 11.278339 9.509552 -1673 0.068669 0.089675 0.028061 0.033350 12.967176 13.468162 15.201662 14.680641 -1674 0.066949 0.064637 0.036962 0.036147 8.448848 7.977269 8.371979 8.107874 -1675 0.065243 0.063651 0.035456 0.026500 12.311119 12.008790 12.378464 11.104329 -1676 0.073639 0.062595 0.048160 0.046500 9.866220 7.839711 12.838454 11.405387 -1677 0.055058 0.063453 0.048569 0.055666 9.838514 8.845163 10.355425 8.612664 -1678 0.050980 0.045181 0.040359 0.036617 9.382953 7.714309 13.855950 12.169657 -1679 0.119975 0.071773 0.063825 0.047423 7.864354 6.677984 10.789734 9.028496 -1680 0.085692 0.069262 0.065372 0.056269 10.460214 10.035120 11.881772 11.369731 -1681 0.059332 0.056908 0.049497 0.032981 10.598175 9.136937 14.384536 11.770329 -1682 0.053413 0.046233 0.026710 0.028280 8.545991 6.832036 9.332420 7.500527 -1683 0.044779 0.045417 0.038356 0.026980 7.719750 7.343852 9.839704 9.656802 -1684 0.034950 0.046853 0.027730 0.036816 6.621967 5.250969 9.932904 9.156938 -1685 0.115313 0.100750 0.069014 0.063163 20.190368 15.302612 21.235221 18.657575 -1686 0.068406 0.045248 0.033527 0.018016 7.723984 6.595880 13.247020 11.800146 -1687 0.135775 0.131895 0.077842 0.054716 8.437160 7.331594 15.182291 12.142962 -1688 0.074102 0.049323 0.027915 0.031317 13.060063 9.584107 17.611940 12.846782 -1689 0.111263 0.099898 0.069385 0.079836 7.426350 7.386467 13.930126 10.033432 -1690 0.044542 0.048231 0.028484 0.027480 10.567471 9.861070 10.842502 9.409266 -1691 0.047227 0.038810 0.022519 0.021044 8.131450 7.503510 12.951500 11.758569 -1692 0.053578 0.056783 0.019899 0.020345 8.414632 7.837633 12.296797 9.072809 -1693 0.081955 0.090882 0.056395 0.033567 12.044499 7.463553 11.326529 8.573762 -1694 0.068582 0.056875 0.073606 0.035892 11.349566 11.159823 14.434470 12.810148 -1695 0.084484 0.071167 0.037536 0.074466 8.724782 6.708636 13.729712 11.214142 -1696 0.061210 0.059997 0.043384 0.043031 8.079687 6.941511 14.444653 9.773093 -1697 0.078878 0.059452 0.054577 0.033866 7.838882 7.826929 13.562230 12.175280 -1698 0.095079 0.057530 0.066828 0.035471 9.628645 6.664706 13.191843 12.420214 -1699 0.056263 0.053195 0.036255 0.040175 18.841259 15.363118 21.386191 17.837932 -1700 0.141841 0.105227 0.077321 0.066898 8.603630 8.271606 14.202309 11.964674 -1701 0.054077 0.039149 0.024887 0.019555 7.501128 6.658665 9.000936 8.373257 -1702 0.046462 0.041392 0.022077 0.027380 9.279810 8.007848 13.153848 13.478788 -1703 0.062205 0.057223 0.054853 0.042903 7.550067 6.519801 10.833453 10.638048 -1704 0.078599 0.056078 0.028962 0.023209 9.675633 8.603876 10.252794 9.566984 -1705 0.044294 0.037679 0.033479 0.019521 7.191330 7.386807 9.205793 8.847948 -1706 0.107655 0.103550 0.044664 0.040752 9.391868 7.889727 14.081832 8.840510 -1707 0.050923 0.037834 0.021451 0.020217 9.881570 8.511440 9.962455 10.077358 -1708 0.108621 0.080506 0.066809 0.048085 8.194541 7.650342 14.564113 12.103984 -1709 0.047001 0.046220 0.036631 0.027298 11.652207 9.135018 10.650200 11.463276 -1710 0.079081 0.064754 0.069489 0.047251 9.752720 10.846554 12.537288 13.222673 -1711 0.107257 0.109964 0.063856 0.048687 10.618894 8.228471 15.553664 11.606123 -1712 0.093425 0.071690 0.089128 0.053118 12.369285 11.656800 15.412922 13.066556 -1713 0.080820 0.078066 0.037469 0.035364 10.295452 7.685588 15.254457 14.067458 -1714 0.062681 0.054472 0.045243 0.060775 9.699302 8.236756 15.075083 12.867813 -1715 0.067486 0.055942 0.033506 0.028070 11.947493 8.591694 14.013335 7.387884 -1716 0.084968 0.084938 0.047931 0.038422 8.376361 7.407621 15.863262 12.888808 -1717 0.035036 0.024450 0.033160 0.020394 11.367494 12.773167 12.621149 15.001000 -1718 0.073315 0.060920 0.038559 0.030200 11.679536 10.680958 13.040740 15.551300 -1719 0.063658 0.056685 0.034110 0.027166 10.975617 8.360426 13.472882 10.969995 -1720 0.079114 0.073007 0.070873 0.063047 8.284946 7.842795 10.598360 8.422595 -1721 0.044773 0.038895 0.009479 0.011529 9.163440 7.948531 7.774384 6.991947 -1722 0.124907 0.100505 0.095652 0.076593 10.428707 10.482357 10.684911 11.332833 -1723 0.061988 0.060478 0.050351 0.040768 11.741673 12.219550 12.973057 11.637276 -1724 0.105820 0.080248 0.060630 0.069369 16.694524 15.402661 18.666958 13.670758 -1725 0.099892 0.073476 0.051758 0.055000 12.352030 12.509529 15.952069 14.720136 -1726 0.091339 0.086734 0.036147 0.030969 5.361723 5.532646 8.494447 8.563070 -1727 0.075180 0.076803 0.032359 0.030495 12.762942 12.466750 16.863744 15.197943 -1728 0.113040 0.081640 0.057068 0.028941 9.732446 12.001459 15.271784 18.786559 -1729 0.103602 0.091984 0.117564 0.094521 19.141761 15.587313 15.205269 14.038657 -1730 0.052482 0.038415 0.024554 0.016610 10.539479 7.013759 9.736354 9.503354 -1731 0.064220 0.070934 0.063264 0.059264 11.472333 11.192350 13.873162 12.028875 -1732 0.059772 0.031971 0.034264 0.015280 8.574422 8.339776 8.986962 8.892302 -1733 0.072154 0.090153 0.056936 0.059941 9.692650 7.655159 14.045328 12.114932 -1734 0.091215 0.078129 0.074619 0.054509 12.412472 10.654850 12.108441 11.493649 -1735 0.058684 0.065308 0.052512 0.035976 9.918820 8.391367 14.835596 10.224242 -1736 0.090230 0.085721 0.060126 0.049673 14.709947 17.407993 17.033172 17.827963 -1737 0.080504 0.047622 0.028295 0.016519 8.167362 6.197098 10.116418 10.399019 -1738 0.134623 0.139206 0.124785 0.074809 11.398443 9.364278 15.660250 16.767794 -1739 0.032949 0.028254 0.010938 0.010922 7.533360 7.941333 11.689525 8.674065 -1740 0.061859 0.042506 0.041314 0.022734 10.153209 12.145551 11.041045 13.055549 -1741 0.057522 0.066963 0.033978 0.035417 10.824715 10.001254 14.030066 10.613043 -1742 0.096137 0.096678 0.083492 0.089275 9.285732 7.489646 18.704595 17.022045 -1743 0.089682 0.066163 0.054926 0.038403 7.840773 6.365576 8.773902 8.418225 -1744 0.067805 0.081691 0.041220 0.052988 9.592766 10.894784 15.195405 12.642774 -1745 0.061792 0.058518 0.055790 0.034665 10.529331 8.256541 16.393764 13.755585 -1746 0.039568 0.043009 0.022210 0.025740 7.985896 7.167435 13.284986 11.359814 -1747 0.070130 0.061420 0.033393 0.022020 10.607053 8.769362 12.574092 10.922492 -1748 0.060870 0.069352 0.037986 0.049056 12.583961 9.515540 10.602230 10.554648 -1749 0.050273 0.044191 0.042592 0.032625 6.985008 5.303523 7.459539 7.662030 -1750 0.096563 0.068385 0.062153 0.030735 6.616795 6.841741 8.526471 8.307455 -1751 0.086354 0.073204 0.029319 0.032670 6.978535 7.258427 10.663435 9.023025 -1752 0.040434 0.041779 0.033184 0.033789 10.956680 8.456246 11.659995 10.603752 -1753 0.063890 0.055787 0.023667 0.020450 7.476950 6.796024 10.299339 9.692971 -1754 0.079736 0.082540 0.080131 0.069913 8.856426 9.780193 11.482468 11.380757 -1755 0.118643 0.094904 0.064761 0.046479 11.367081 7.830187 11.911691 9.790776 -1756 0.100068 0.089669 0.059791 0.040088 10.556507 10.468588 12.370732 10.326054 -1757 0.049370 0.032543 0.047257 0.029511 8.404482 6.037175 12.159971 8.643235 -1758 0.073002 0.081113 0.044175 0.060152 8.111058 9.025723 14.867334 12.215307 -1759 0.090388 0.062089 0.049157 0.030118 6.371995 6.240439 7.376104 6.745993 -1760 0.074616 0.072630 0.044774 0.053832 9.198958 9.154573 13.516861 13.714003 -1761 0.078914 0.077829 0.044463 0.038381 16.285968 11.809300 12.731117 11.867907 -1762 0.043751 0.047277 0.024222 0.029361 8.700787 7.372390 18.292173 12.293789 -1763 0.049373 0.042250 0.020275 0.025300 7.674124 8.084595 9.822572 11.476316 -1764 0.046967 0.041639 0.043940 0.026502 14.353229 12.457462 12.049678 11.973468 -1765 0.090465 0.070208 0.049254 0.041878 12.805941 10.763183 14.852212 13.692632 -1766 0.059626 0.058902 0.049579 0.047425 11.000537 9.706693 12.275856 10.061685 -1767 0.136571 0.104934 0.066652 0.059449 11.241603 11.231465 16.748736 16.901557 -1768 0.094299 0.063102 0.046328 0.031477 6.647125 8.340294 13.869663 13.938129 -1769 0.099027 0.082650 0.049135 0.044176 13.005915 10.422190 15.785665 13.970282 -1770 0.079254 0.047347 0.052832 0.029697 9.548210 10.989977 11.040217 11.299115 -1771 0.083505 0.063447 0.036386 0.039049 5.872957 5.657310 8.080972 6.116559 -1772 0.119282 0.127602 0.074156 0.074127 13.984673 10.709166 18.419881 14.980982 -1773 0.088409 0.082630 0.053118 0.048117 12.671748 10.451979 13.934408 12.650186 -1774 0.059687 0.070625 0.061333 0.052606 10.886340 7.846072 14.233897 10.036905 -1775 0.053965 0.057888 0.021953 0.017973 7.325275 8.288917 7.800272 9.452381 -1776 0.077571 0.082674 0.047494 0.037013 12.614562 13.289515 15.927205 11.541249 -1777 0.053615 0.046596 0.024642 0.026150 10.088693 10.595098 17.931530 15.624225 -1778 0.085355 0.075078 0.054386 0.036806 8.280139 7.749016 12.673036 11.898598 -1779 0.063486 0.064371 0.028156 0.035382 13.600869 11.645904 13.313972 12.814957 -1780 0.093483 0.059362 0.063570 0.037166 12.745161 9.024151 17.941381 13.923570 -1781 0.067478 0.041736 0.050322 0.039004 11.730860 8.489007 11.497910 9.010619 -1782 0.091090 0.058920 0.072922 0.044546 11.302147 11.175452 10.433384 8.346612 -1783 0.111953 0.076759 0.060319 0.039060 8.865583 10.553150 12.455736 9.422099 -1784 0.077142 0.080956 0.042385 0.041892 11.403821 9.129950 14.673922 14.276871 -1785 0.044753 0.037477 0.031950 0.022502 8.368084 7.110956 11.152754 9.723284 -1786 0.057703 0.055225 0.023077 0.024125 8.585993 8.714039 10.638033 10.609473 -1787 0.027383 0.040927 0.022414 0.015293 6.232114 5.784848 7.267740 7.453915 -1788 0.062595 0.054757 0.051933 0.033202 9.110561 7.078778 16.577168 12.476780 -1789 0.060698 0.042482 0.047850 0.026534 11.372496 8.488399 15.931362 15.084123 -1790 0.107477 0.079650 0.072549 0.048036 15.343625 12.636622 20.926339 17.375226 -1791 0.116024 0.091289 0.063896 0.049416 9.339741 9.605728 14.235076 11.034784 -1792 0.045476 0.041588 0.023876 0.023001 8.599213 5.778150 12.610566 8.107917 -1793 0.061389 0.056528 0.029156 0.028915 9.699844 11.322531 11.013438 14.732787 -1794 0.065891 0.070415 0.080258 0.068753 13.344887 11.188155 18.896827 15.359259 -1795 0.054825 0.040819 0.026578 0.028330 7.585161 5.405536 12.740806 9.368953 -1796 0.100272 0.082603 0.050181 0.044196 9.916903 8.630903 11.272491 8.563898 -1797 0.062387 0.060131 0.028076 0.022809 9.732358 6.155645 13.680114 12.841266 -1798 0.091986 0.076548 0.051903 0.040450 7.490976 7.247909 9.141696 10.709863 -1799 0.050655 0.052175 0.052858 0.042918 11.086405 10.454317 12.898176 9.841340 -1800 0.049428 0.033586 0.028404 0.015872 10.195033 8.853447 9.898198 10.592145 -1801 0.077877 0.052638 0.064109 0.047179 10.900540 8.388875 14.720396 9.832269 -1802 0.052396 0.046907 0.029767 0.034076 9.289177 9.155703 15.126686 13.802264 -1803 0.119291 0.076861 0.059227 0.039205 7.265555 5.613567 12.397597 8.711923 -1804 0.037775 0.034442 0.030987 0.025317 8.492381 6.056348 9.300017 7.283180 -1805 0.086328 0.070145 0.068632 0.049246 8.094092 10.353001 6.487319 8.991731 -1806 0.038841 0.052108 0.024897 0.032947 10.633998 9.189139 10.119311 9.584698 -1807 0.069675 0.078686 0.052542 0.053088 10.369799 8.539048 11.947236 8.786865 -1808 0.079649 0.088908 0.060054 0.052456 7.138951 6.412647 10.716247 12.094034 -1809 0.040971 0.044895 0.026925 0.026962 6.419381 7.008219 12.364552 11.660752 -1810 0.042702 0.042676 0.028227 0.016535 11.242493 8.137806 10.728208 9.470614 -1811 0.075115 0.066076 0.056726 0.052574 7.501244 7.645347 13.787264 12.351470 -1812 0.110449 0.099354 0.063584 0.035383 10.717934 9.530432 16.706177 15.067441 -1813 0.079853 0.074663 0.044143 0.037907 11.592129 12.324674 14.587655 16.085508 -1814 0.080423 0.057869 0.064543 0.037193 13.193987 12.654203 20.903088 15.990095 -1815 0.062189 0.054321 0.033877 0.036258 9.295384 6.804824 13.032120 10.539493 -1816 0.086310 0.059193 0.064144 0.049097 15.328773 12.333432 16.398324 15.198233 -1817 0.046879 0.043368 0.025823 0.023901 9.653878 8.197208 10.261944 8.109520 -1818 0.070111 0.064073 0.036653 0.043758 10.353478 9.173689 13.757674 12.905621 -1819 0.172311 0.153499 0.211787 0.140946 9.774482 7.013479 13.928333 9.719939 -1820 0.098958 0.091151 0.067852 0.067973 7.239586 5.611864 9.957291 9.261720 -1821 0.104192 0.073116 0.048593 0.034152 11.493181 10.162842 14.856673 13.137058 -1822 0.088256 0.051613 0.050928 0.030056 8.928464 9.149546 9.286973 9.292507 -1823 0.050247 0.053223 0.022295 0.026794 10.752092 9.481886 14.312628 11.362220 -1824 0.067166 0.088277 0.029255 0.031256 10.802945 6.998351 11.734103 10.076689 -1825 0.138436 0.098279 0.067046 0.069456 13.163068 10.330328 24.573808 14.533109 -1826 0.040378 0.039649 0.016675 0.014766 5.440529 4.826354 9.804379 7.885377 -1827 0.083856 0.092421 0.042199 0.039074 12.809405 8.478596 16.579469 12.617488 -1828 0.101722 0.063072 0.065103 0.050786 6.501542 4.633540 10.603039 6.053145 -1829 0.049605 0.048889 0.041002 0.037420 8.301110 6.532441 13.773183 10.203164 -1830 0.062307 0.055058 0.047580 0.033939 11.463521 12.625885 9.536949 9.585042 -1831 0.067170 0.049675 0.067967 0.034333 5.584206 6.531084 8.868640 7.826519 -1832 0.057243 0.043237 0.029354 0.021285 7.507282 7.303931 10.246095 10.690200 -1833 0.130812 0.117554 0.093261 0.064061 17.938565 13.212924 26.846725 22.684118 -1834 0.096840 0.099311 0.065808 0.051628 14.051856 8.359622 13.885429 9.376478 -1835 0.089528 0.104480 0.064845 0.058520 16.068031 13.713136 17.871624 14.269243 -1836 0.032916 0.041918 0.016919 0.021698 9.142463 7.228177 11.574868 10.967257 -1837 0.071152 0.068041 0.031387 0.021806 8.981230 6.877328 15.589664 13.035781 -1838 0.062145 0.072419 0.046667 0.057747 7.706970 6.867488 8.963590 8.176492 -1839 0.094641 0.108678 0.069089 0.044876 11.325436 9.992175 18.141017 10.742873 -1840 0.081038 0.060401 0.061647 0.029116 12.119103 9.972493 15.368515 11.039375 -1841 0.099031 0.074813 0.073368 0.058374 9.383936 8.318422 15.455961 14.399116 -1842 0.081498 0.088678 0.049654 0.039836 8.725242 9.192975 9.878040 11.562223 -1843 0.081116 0.051038 0.035260 0.025327 8.418617 8.730109 9.072759 8.972878 -1844 0.072598 0.054138 0.037518 0.031098 7.266571 8.015375 9.552507 8.853724 -1845 0.080071 0.067727 0.063441 0.039772 9.523911 8.816752 9.908234 7.802341 -1846 0.061237 0.062271 0.052579 0.041617 11.850915 7.385384 12.351430 9.009828 -1847 0.094160 0.064310 0.057518 0.033204 8.950306 7.820974 12.090857 10.016246 -1848 0.092019 0.067558 0.046094 0.043854 14.244186 9.693136 17.315882 10.896285 -1849 0.068242 0.053729 0.022798 0.023167 8.654026 8.115486 11.386869 10.056679 -1850 0.079621 0.069179 0.065425 0.042410 7.817434 7.568164 10.858958 11.859008 -1851 0.099153 0.093171 0.049226 0.037880 8.680112 6.421391 16.830487 10.618959 -1852 0.077499 0.058724 0.075003 0.040298 6.698570 5.366904 7.187083 6.082345 -1853 0.098534 0.070916 0.043789 0.021436 9.979551 9.471303 13.579321 16.156177 -1854 0.049656 0.032408 0.031513 0.018394 7.207303 6.226625 7.411314 6.884712 -1855 0.068796 0.060080 0.035522 0.039645 6.626277 7.747632 13.157386 11.468535 -1856 0.081325 0.071400 0.070240 0.046904 8.997189 7.952684 16.973366 14.321934 -1857 0.093588 0.053348 0.072355 0.042469 9.272537 9.989890 10.636670 10.636689 -1858 0.052482 0.042722 0.034246 0.034301 9.131274 7.700528 9.785248 8.139493 -1859 0.092685 0.091520 0.038961 0.037705 10.662127 8.757778 16.872096 15.565542 -1860 0.082876 0.083494 0.044452 0.045139 10.880451 8.556703 16.669861 11.248521 -1861 0.077756 0.070844 0.030776 0.028719 10.191300 9.009939 18.641862 12.480048 -1862 0.120663 0.101492 0.135946 0.076744 14.195252 11.370248 15.334241 11.439312 -1863 0.066209 0.045661 0.039634 0.022527 9.228562 5.895537 9.719984 7.737384 -1864 0.080444 0.081384 0.045269 0.044419 11.758603 9.182460 15.024389 10.882907 -1865 0.072915 0.080487 0.107070 0.129695 9.381956 8.241743 14.782009 11.508832 -1866 0.064342 0.053377 0.043167 0.031039 9.614044 6.502106 8.865765 6.119700 -1867 0.083109 0.060029 0.046888 0.035482 11.625352 9.862162 10.582446 9.727916 -1868 0.052197 0.057058 0.023838 0.034801 8.417470 7.815278 12.050539 8.754504 -1869 0.067367 0.044541 0.030392 0.020844 6.762849 6.528558 9.524978 13.114020 -1870 0.084343 0.070923 0.051542 0.050417 15.566618 12.860644 19.358325 14.745588 -1871 0.061276 0.028772 0.059275 0.035732 13.935608 9.495996 10.723526 7.504608 -1872 0.131801 0.088906 0.057930 0.028817 13.998518 13.065447 14.810115 13.583192 -1873 0.086493 0.124083 0.060931 0.066339 12.536665 10.752242 16.853244 12.759666 -1874 0.111550 0.084180 0.048037 0.051525 14.827128 14.263836 14.305218 14.136730 -1875 0.084030 0.055948 0.074252 0.048535 10.813112 9.962622 11.475926 9.736298 -1876 0.087146 0.055435 0.055654 0.044474 11.103007 9.661328 11.824918 12.766604 -1877 0.047967 0.041153 0.021269 0.020800 8.995666 9.524890 16.506527 17.143578 -1878 0.129895 0.135489 0.079575 0.077668 9.478387 7.882876 14.271993 13.007759 -1879 0.083062 0.074035 0.038651 0.030627 10.541734 12.179184 18.424831 19.387274 -1880 0.080458 0.055599 0.025545 0.016522 10.088250 8.167317 9.426624 8.316111 -1881 0.084798 0.077618 0.054715 0.040707 10.851628 8.893141 10.452957 9.086750 -1882 0.087808 0.092022 0.061309 0.048102 9.208839 8.919247 10.439083 10.678389 -1883 0.085075 0.064522 0.067435 0.045488 10.207669 7.090253 14.052281 9.677019 -1884 0.107508 0.092203 0.048482 0.043127 9.668203 10.442906 16.160072 15.514074 -1885 0.116230 0.099097 0.098304 0.065535 15.221842 11.645596 11.880420 10.488184 -1886 0.074609 0.050228 0.035397 0.022867 9.373651 7.804385 9.255737 7.578368 -1887 0.084507 0.063912 0.043677 0.033833 8.752866 9.696113 15.586279 16.194203 -1888 0.071596 0.052586 0.029318 0.027329 14.619004 12.448721 20.006435 17.442110 -1889 0.086562 0.067556 0.055416 0.043679 11.445644 9.395693 9.805040 7.950565 -1890 0.052794 0.052119 0.037420 0.023671 9.738132 7.403200 15.740206 10.699844 -1891 0.098034 0.091204 0.050675 0.040037 7.868084 6.679720 14.217247 11.368441 -1892 0.109006 0.130920 0.056678 0.056164 10.172761 8.201671 16.126931 13.589583 -1893 0.046319 0.055007 0.018783 0.029077 11.301178 7.966157 12.895298 10.663296 -1894 0.073280 0.075432 0.055308 0.043535 11.020384 9.533631 13.376069 10.354167 -1895 0.071615 0.062606 0.039868 0.024577 7.036650 7.838519 13.372869 11.905753 -1896 0.086890 0.061844 0.043342 0.029307 9.915965 9.860581 16.483237 14.758047 -1897 0.051307 0.052124 0.038170 0.034729 8.791203 9.987594 12.708998 11.575680 -1898 0.089412 0.077249 0.069100 0.047391 12.015043 10.472854 16.911316 14.077475 -1899 0.088454 0.093262 0.092963 0.053805 11.493567 8.647749 14.064950 11.646657 -1900 0.070907 0.058077 0.055081 0.044636 10.783981 9.805240 15.440703 15.523116 -1901 0.060538 0.066966 0.035801 0.049292 14.670721 11.090609 12.535653 11.658108 -1902 0.055966 0.051655 0.024092 0.029002 7.471278 6.035888 7.500663 7.616968 -1903 0.085969 0.055683 0.036698 0.029684 12.996362 9.039436 14.659839 11.940112 -1904 0.105407 0.072600 0.092753 0.058408 13.859986 9.277718 15.311310 11.810415 -1905 0.043558 0.057266 0.046306 0.039921 9.704340 6.601841 15.960999 9.342019 -1906 0.113642 0.101948 0.050053 0.049395 12.010729 13.291759 12.862087 12.807747 -1907 0.083893 0.079041 0.038728 0.033895 12.778247 12.179494 14.392027 11.714388 -1908 0.094129 0.082427 0.037181 0.024711 9.281980 6.887390 8.860547 7.255424 -1909 0.121278 0.098770 0.078968 0.070094 12.070818 9.661279 16.379489 13.161358 -1910 0.068494 0.054572 0.036144 0.034307 10.048095 11.036105 7.578584 9.157498 -1911 0.046625 0.047018 0.032152 0.023993 10.891346 6.638328 13.788971 9.763290 -1912 0.051723 0.045433 0.047588 0.035128 6.897472 5.132964 8.764986 7.874419 -1913 0.050459 0.044811 0.034383 0.028285 11.381845 7.834821 9.894001 8.791679 -1914 0.069870 0.056851 0.043769 0.036574 8.338431 6.451399 15.960388 11.750822 -1915 0.082977 0.066971 0.058408 0.060965 9.121976 8.914046 9.006509 9.572069 -1916 0.104588 0.085330 0.059463 0.048705 13.018284 12.112352 15.575817 11.399075 -1917 0.136505 0.084993 0.080527 0.059640 8.070540 8.152919 13.289694 13.670983 -1918 0.045012 0.041078 0.032662 0.046088 7.587979 7.470276 6.988072 7.334564 -1919 0.094118 0.070205 0.036126 0.022950 10.752479 8.349965 10.397840 7.395882 -1920 0.102035 0.100026 0.085867 0.052158 11.524754 10.043428 14.348034 10.649381 -1921 0.079985 0.076814 0.061032 0.048277 12.384838 11.759508 17.832137 13.961651 -1922 0.073989 0.075476 0.040293 0.034794 9.905353 8.992626 12.688889 10.373903 -1923 0.097191 0.088952 0.064191 0.047778 9.389520 8.737142 11.879088 10.554566 -1924 0.110251 0.068849 0.055309 0.035725 11.930762 8.899645 11.163660 10.968767 -1925 0.055537 0.064632 0.042387 0.041106 10.833598 9.969091 9.726260 9.476964 -1926 0.052881 0.039788 0.019711 0.019311 4.758720 4.612190 6.383792 6.548702 -1927 0.054909 0.040159 0.031491 0.020830 10.112992 9.032879 10.917969 11.112397 -1928 0.056072 0.045530 0.046594 0.036539 10.091601 7.484765 13.150584 10.948783 -1929 0.075023 0.063569 0.068456 0.046001 10.145780 9.624430 11.296722 9.806961 -1930 0.042877 0.041211 0.026827 0.022249 8.682056 8.696092 8.405793 8.145674 -1931 0.082818 0.070747 0.045847 0.038156 8.830923 7.034345 10.199401 9.420022 -1932 0.114093 0.099275 0.080073 0.072019 12.504983 13.910624 21.193868 22.385600 -1933 0.085325 0.060243 0.077939 0.042318 7.172564 6.712590 12.732879 11.518034 -1934 0.090066 0.069713 0.044335 0.033766 11.067619 8.448063 14.143108 11.381563 -1935 0.106707 0.090151 0.080465 0.074086 9.463480 8.355315 11.544409 13.960733 -1936 0.117269 0.093400 0.058405 0.067634 7.492715 7.355563 9.724991 9.130831 -1937 0.104803 0.084036 0.039729 0.037157 9.401398 6.360916 13.606015 10.941947 -1938 0.078753 0.060673 0.097702 0.074654 8.426955 6.364430 13.504687 9.462812 -1939 0.134614 0.101475 0.044185 0.038630 13.838298 11.817471 16.653060 11.955918 -1940 0.087702 0.082017 0.128639 0.059599 14.555532 10.186306 12.453664 10.747456 -1941 0.059681 0.063087 0.033405 0.041587 7.603499 8.832968 12.620704 13.800868 -1942 0.060509 0.053066 0.053612 0.040233 15.505204 10.676156 19.017760 12.997541 -1943 0.055595 0.043605 0.019873 0.013434 6.634818 6.425050 8.255496 8.247386 -1944 0.146206 0.129543 0.090457 0.076209 12.700941 10.271901 18.949448 12.918397 -1945 0.069717 0.065108 0.044936 0.022712 8.503182 8.478037 12.859590 10.181250 -1946 0.054359 0.045973 0.029993 0.021989 9.002979 8.563415 10.186960 9.120768 -1947 0.051254 0.049589 0.024897 0.028856 7.483966 6.204976 8.928832 6.919084 -1948 0.089576 0.078995 0.074515 0.049616 14.185778 11.405751 10.823158 9.210016 -1949 0.085620 0.081905 0.045407 0.040308 16.128986 14.254219 14.715024 16.348398 -1950 0.078488 0.072210 0.049904 0.053468 10.436252 11.101029 11.648776 10.736410 -1951 0.070398 0.082868 0.069576 0.052745 10.363176 10.820784 13.642318 13.324501 -1952 0.045300 0.055254 0.032925 0.036886 7.672205 5.448488 11.920502 10.587412 -1953 0.051418 0.044706 0.034516 0.024773 6.338242 5.810620 6.656188 6.358734 -1954 0.050415 0.056438 0.030262 0.052160 7.944905 7.184451 10.702089 10.871427 -1955 0.115852 0.088931 0.069900 0.087136 10.517113 11.290179 13.170013 13.947310 -1956 0.128609 0.075218 0.086340 0.060113 11.025007 10.496522 12.827835 13.091806 -1957 0.082965 0.094638 0.049545 0.055463 12.349420 9.488708 13.838220 15.738143 -1958 0.102209 0.076476 0.054551 0.035985 10.128543 10.887835 9.841485 10.241115 -1959 0.077390 0.073342 0.087560 0.057383 9.829424 9.628124 11.854328 12.348917 -1960 0.050259 0.035001 0.029911 0.015570 8.457903 9.362068 10.312977 9.620712 -1961 0.095481 0.092364 0.044337 0.040412 8.562671 8.975152 11.756788 11.320505 -1962 0.153325 0.122546 0.156674 0.098226 10.964376 8.113647 13.954341 10.732422 -1963 0.089894 0.061783 0.048520 0.033913 9.403915 6.952220 12.055297 7.098439 -1964 0.060270 0.055837 0.062333 0.046924 5.753250 4.351309 6.071520 4.994779 -1965 0.062134 0.073995 0.035533 0.045247 11.710839 13.087949 16.188513 14.012335 -1966 0.086312 0.088360 0.083358 0.050552 11.535790 9.194102 9.822823 8.308514 -1967 0.094645 0.072272 0.036922 0.035132 8.736633 9.099345 10.476621 9.717915 -1968 0.037195 0.040670 0.033102 0.035087 9.471000 8.227768 13.679962 11.088240 -1969 0.062646 0.055409 0.047296 0.037716 5.015436 5.237387 8.499338 8.538874 -1970 0.059311 0.040453 0.033017 0.019802 6.645745 6.259113 11.285623 6.837034 -1971 0.054462 0.058845 0.032059 0.033838 8.334444 6.253181 13.350794 11.563330 -1972 0.051845 0.053497 0.016304 0.017035 12.919126 8.985363 12.166703 10.362373 -1973 0.065917 0.053310 0.030891 0.029164 10.687981 10.261077 12.365294 10.498522 -1974 0.067533 0.049755 0.037112 0.027436 8.817342 7.400514 16.945570 13.270588 -1975 0.082168 0.062857 0.054635 0.052299 8.124688 8.850833 11.715129 11.031400 -1976 0.112634 0.078113 0.063686 0.034509 13.401608 11.515600 14.272741 11.901615 -1977 0.078938 0.096056 0.068060 0.053898 13.817975 12.069858 16.410365 14.672198 -1978 0.042319 0.040043 0.024795 0.017927 8.154883 6.780770 13.281681 13.233722 -1979 0.118399 0.083857 0.062800 0.052316 14.867768 12.671044 14.698113 12.460417 -1980 0.073757 0.068926 0.058348 0.038074 12.514550 12.008785 15.583273 14.581660 -1981 0.095589 0.085281 0.057924 0.034704 15.068281 15.037035 13.905860 11.568353 -1982 0.131717 0.094328 0.091786 0.065997 11.698410 11.008634 10.947680 13.001358 -1983 0.089165 0.068364 0.063681 0.055440 11.941227 11.012471 12.264283 10.342885 -1984 0.047945 0.043371 0.030350 0.023472 10.509189 12.519869 10.795392 11.722849 -1985 0.089099 0.081057 0.076844 0.061391 17.930021 17.866077 21.374352 20.410896 -1986 0.089202 0.075241 0.062904 0.046569 10.395604 7.227118 9.235684 7.178772 -1987 0.109463 0.103670 0.051117 0.044570 14.870594 14.596780 12.022792 13.999679 -1988 0.097904 0.094289 0.107638 0.104550 8.819419 9.887687 14.896813 14.962043 -1989 0.080899 0.072302 0.040320 0.034576 8.754980 8.973783 18.741013 18.686572 -1990 0.114799 0.112357 0.053844 0.039902 12.512922 9.544559 12.037794 10.282450 -1991 0.065215 0.054711 0.036252 0.022214 10.261309 8.733413 16.856947 17.566954 -1992 0.052003 0.042794 0.024622 0.020803 8.111727 6.132745 16.764680 12.860483 -1993 0.032088 0.031699 0.013634 0.013614 7.468046 5.502478 8.458122 6.522142 -1994 0.062696 0.072385 0.026725 0.032912 8.848610 6.675396 13.088725 13.500128 -1995 0.065346 0.057462 0.023517 0.016148 10.525092 9.267810 8.873095 9.041248 -1996 0.089958 0.073075 0.039094 0.033365 9.995110 9.867573 12.472978 11.716364 -1997 0.075386 0.069982 0.046916 0.040314 13.833344 9.863751 16.785019 14.419059 -1998 0.056732 0.051137 0.032158 0.036193 7.768007 5.797155 14.064051 10.001615 -1999 0.134215 0.092452 0.066091 0.041223 10.978729 9.294186 12.505933 14.166610 -2000 0.070003 0.091039 0.037285 0.028454 7.478936 6.517362 9.157696 10.367355 -2001 0.056371 0.056440 0.029843 0.027573 10.851988 11.363478 9.345046 9.606933 -2002 0.083764 0.077939 0.043870 0.036002 11.444277 9.132123 10.637485 12.117031 -2003 0.056185 0.054679 0.027519 0.033498 11.058106 13.259755 12.339694 14.120644 -2004 0.079067 0.073160 0.060334 0.050571 8.883222 9.620421 13.055703 12.874307 -2005 0.089601 0.072780 0.036888 0.029053 12.710146 8.979649 13.644970 10.854280 -2006 0.060103 0.056065 0.028507 0.018712 8.832920 5.754651 10.129415 7.311662 -2007 0.038162 0.040815 0.024305 0.025187 11.213997 9.493152 15.837930 11.006284 -2008 0.066036 0.049924 0.058040 0.045414 8.773377 7.716061 10.994591 9.776625 -2009 0.045992 0.052183 0.026902 0.020760 9.628188 11.674410 9.041367 12.460952 -2010 0.061017 0.053186 0.036677 0.035006 9.070316 9.501028 8.971923 8.698580 -2011 0.124956 0.136792 0.065085 0.085093 13.791746 13.074363 16.370108 14.149824 -2012 0.085945 0.070476 0.058469 0.053478 10.280844 9.343659 11.321916 10.762586 -2013 0.069785 0.053795 0.043545 0.039057 7.804786 6.406905 13.792086 8.052391 -2014 0.043775 0.040815 0.036608 0.020548 8.540910 7.357980 9.497679 8.823924 -2015 0.078751 0.064917 0.044359 0.050759 7.861490 7.340627 11.428213 9.951256 -2016 0.057156 0.058815 0.048508 0.036941 8.482651 5.929581 10.710559 9.225369 -2017 0.062446 0.067699 0.033195 0.028222 10.610208 10.598320 12.272151 11.918071 -2018 0.095104 0.080746 0.052947 0.043338 14.370137 11.232448 13.791292 11.993093 -2019 0.097419 0.072992 0.046959 0.045199 11.661725 8.105276 15.921775 13.170977 -2020 0.093241 0.073249 0.056858 0.040036 8.025209 8.048775 9.984001 9.316575 -2021 0.077298 0.071307 0.047580 0.039329 9.349433 9.624067 12.889668 10.875039 -2022 0.091737 0.089180 0.099820 0.052139 11.230645 7.987388 15.232375 10.937679 -2023 0.069889 0.049835 0.027692 0.025989 11.145391 7.733997 11.353538 10.617871 -2024 0.085353 0.079448 0.043510 0.047654 14.689742 14.469273 17.126736 15.739676 -2025 0.093586 0.078985 0.063652 0.037578 11.558251 10.924942 15.763578 10.767384 -2026 0.065758 0.054898 0.039784 0.021225 8.243675 7.242006 10.107762 8.312253 -2027 0.065390 0.064229 0.030656 0.038164 8.240912 7.412509 14.923332 12.910996 -2028 0.065216 0.073162 0.049890 0.033524 13.967512 10.186319 20.217692 13.765438 -2029 0.075739 0.087022 0.061066 0.055391 11.134446 13.291708 13.068311 12.700735 -2030 0.075521 0.047693 0.055320 0.040563 10.269223 7.924586 13.111885 13.305972 -2031 0.067466 0.061322 0.041902 0.032624 12.190586 9.734728 19.232558 12.142016 -2032 0.053157 0.060302 0.021677 0.026785 8.256084 8.175428 15.098906 14.117155 -2033 0.075112 0.073765 0.044695 0.045038 14.477024 12.303004 19.691216 15.373377 -2034 0.063881 0.077925 0.063733 0.057515 11.942226 9.100492 18.625972 15.374279 -2035 0.043085 0.048762 0.047278 0.037854 8.208521 7.376724 8.580426 6.890804 -2036 0.058417 0.055353 0.028104 0.021628 8.023738 9.170011 10.509622 10.630989 -2037 0.055017 0.054939 0.033523 0.031385 11.561958 11.656497 11.903897 11.672484 -2038 0.064487 0.067481 0.039287 0.027813 8.844792 8.009767 10.849389 10.804392 -2039 0.040691 0.039257 0.025969 0.028101 6.412418 6.521626 8.577076 9.313659 -2040 0.122301 0.084067 0.088520 0.052252 12.710714 11.389653 14.899256 12.581878 -2041 0.076505 0.058221 0.041740 0.039363 7.522666 8.870656 12.186984 12.785963 -2042 0.112259 0.098626 0.054706 0.052417 12.007593 12.908651 13.544349 11.880834 -2043 0.090707 0.070319 0.066736 0.056734 12.038409 12.951985 10.891641 11.587053 -2044 0.067132 0.075852 0.069640 0.064313 13.159641 9.285170 18.376638 12.178354 -2045 0.066766 0.059938 0.032886 0.033730 7.884764 6.981421 9.251235 7.409063 -2046 0.060087 0.047426 0.026132 0.021890 7.758890 6.528717 7.053763 7.298114 -2047 0.080231 0.078044 0.036370 0.054593 11.170647 11.031383 15.942449 12.206505 -2048 0.096669 0.079042 0.040640 0.035664 12.067968 8.380801 18.012755 14.556830 -2049 0.042677 0.043264 0.038175 0.026789 9.633866 8.186959 15.105059 12.364103 -2050 0.070128 0.052346 0.059198 0.041311 7.166773 6.910787 11.565527 9.753904 -2051 0.057793 0.049734 0.047552 0.031509 9.736781 7.597220 13.913231 10.151460 -2052 0.082565 0.066097 0.047344 0.038638 6.925302 7.323750 13.189492 14.335647 -2053 0.042035 0.061351 0.024754 0.031604 8.742266 6.777543 13.346322 9.650129 -2054 0.079051 0.098703 0.036733 0.055482 12.608545 13.189515 13.644701 13.081001 -2055 0.041239 0.026083 0.030122 0.017632 8.277737 4.738047 10.622667 9.154090 -2056 0.035862 0.036974 0.027567 0.024401 8.506092 9.110898 11.875816 16.900439 -2057 0.061894 0.045289 0.042679 0.025724 10.569877 8.172012 13.432824 14.448291 -2058 0.069242 0.067548 0.045894 0.050877 9.535498 9.020137 9.266063 8.812034 -2059 0.058709 0.043206 0.025866 0.019287 9.989084 10.954955 10.346622 12.177454 -2060 0.073404 0.068137 0.049803 0.049741 10.725012 10.255522 11.450963 14.776309 -2061 0.082690 0.064693 0.050754 0.045011 13.513910 10.852234 14.451449 12.379802 -2062 0.042969 0.044850 0.026658 0.022269 8.361504 8.575725 9.887087 7.583944 -2063 0.082351 0.060559 0.051291 0.044109 11.121963 9.150150 15.512145 11.970619 -2064 0.089918 0.070833 0.048613 0.033574 10.393183 7.649916 10.830184 6.855151 -2065 0.058301 0.054679 0.027725 0.022062 8.302858 6.986327 10.582097 10.726521 -2066 0.070268 0.044842 0.037257 0.028612 9.030933 7.531238 9.526755 8.728073 -2067 0.100046 0.085777 0.044269 0.047719 8.856315 11.037654 9.533156 11.988216 -2068 0.057747 0.049227 0.024464 0.025262 9.808026 7.721891 9.006155 9.109247 -2069 0.056890 0.051435 0.026642 0.020835 4.962047 5.704122 10.680265 9.766118 -2070 0.085163 0.076165 0.051493 0.036890 9.028438 7.275865 8.907211 7.559018 -2071 0.065993 0.054914 0.044409 0.046463 9.168455 7.639073 13.644928 10.411916 -2072 0.072246 0.069235 0.048748 0.040093 11.215026 11.130770 14.883178 13.845851 -2073 0.080323 0.065797 0.043218 0.027753 10.658336 9.108419 17.559212 12.516010 -2074 0.055790 0.051621 0.036949 0.035918 11.360136 8.617738 12.697789 10.460318 -2075 0.066992 0.096661 0.045621 0.046443 8.125736 5.871580 11.437501 8.325193 -2076 0.062686 0.039113 0.056098 0.050090 12.207378 10.385867 16.647473 14.832327 -2077 0.052820 0.062641 0.026319 0.030666 10.469236 12.137850 21.384980 17.482646 -2078 0.076197 0.063037 0.050142 0.034924 7.610864 8.023129 11.587151 13.429471 -2079 0.083155 0.057421 0.045344 0.032834 10.130265 7.453156 11.627155 9.372348 -2080 0.053569 0.042116 0.028207 0.025500 6.783139 5.647226 10.501292 10.314493 -2081 0.061731 0.052394 0.049862 0.045496 9.054085 7.794875 12.976719 11.378998 -2082 0.125395 0.097387 0.070226 0.053776 10.600232 6.381327 10.397892 8.017776 -2083 0.087713 0.095963 0.055676 0.054029 8.435642 9.919536 11.698581 13.498636 -2084 0.067043 0.077247 0.030219 0.032448 7.858346 6.419111 13.143622 12.392564 -2085 0.103583 0.071102 0.049257 0.053948 12.461873 13.486125 19.757387 14.755587 -2086 0.106774 0.074167 0.067008 0.043606 9.457948 8.116038 10.958856 9.350212 -2087 0.067578 0.082747 0.030857 0.023207 9.483712 7.474442 17.198774 14.639818 -2088 0.046686 0.045519 0.036633 0.034507 6.590708 6.338268 7.261872 7.331753 -2089 0.073484 0.060288 0.053202 0.035724 11.572369 8.170852 11.493764 10.390655 -2090 0.100589 0.075795 0.057728 0.050401 11.642120 9.232809 13.263856 9.309927 -2091 0.039893 0.029939 0.024592 0.012071 7.993558 6.243458 11.247912 11.625118 -2092 0.093705 0.100700 0.029745 0.041788 8.546619 9.585356 14.531920 13.662305 -2093 0.069139 0.084428 0.075269 0.054039 9.298067 10.294870 14.067866 15.890229 -2094 0.041489 0.041382 0.023108 0.024224 6.004187 6.511359 9.242393 8.717024 -2095 0.070599 0.054142 0.068691 0.045254 7.724959 6.632528 7.501336 7.248010 -2096 0.090315 0.068275 0.033731 0.035327 12.996990 12.862801 11.465671 11.093537 -2097 0.068714 0.086897 0.066800 0.065273 10.140974 10.006813 13.154648 12.128912 -2098 0.093987 0.059250 0.084779 0.028335 9.326659 7.731448 8.965770 9.933514 -2099 0.072573 0.061513 0.037998 0.039590 7.839963 7.776530 12.661748 10.628510 -2100 0.133699 0.099326 0.086465 0.065806 11.450225 9.454463 19.181865 13.857346 -2101 0.064201 0.053359 0.035733 0.030819 6.867929 6.931627 12.091736 8.918485 -2102 0.070099 0.047564 0.034461 0.017793 7.362488 6.755426 7.425587 7.311493 -2103 0.073597 0.061559 0.080209 0.088771 16.146947 11.353506 13.553221 15.366106 -2104 0.107248 0.076551 0.074097 0.043228 10.378625 9.150932 13.432283 10.991294 -2105 0.077844 0.067077 0.090792 0.067699 7.497677 7.618510 14.336546 11.873213 -2106 0.063420 0.070281 0.064784 0.042853 10.471647 9.210675 15.317424 14.610441 -2107 0.073258 0.067774 0.046469 0.062000 8.549093 9.404491 15.555053 11.740844 -2108 0.085903 0.067322 0.040969 0.041283 12.729007 12.935053 12.694716 11.552459 -2109 0.109389 0.123124 0.101685 0.085085 12.847476 11.922833 21.100315 20.394423 -2110 0.058664 0.051651 0.055602 0.036611 7.985413 7.727061 10.660167 9.741643 -2111 0.071839 0.083320 0.050281 0.038072 8.302176 9.402903 10.692660 10.599435 -2112 0.052967 0.037333 0.046375 0.026276 8.587255 6.905481 11.587236 9.615278 -2113 0.054739 0.047660 0.032290 0.020640 7.072354 6.431124 10.289581 9.444045 -2114 0.076328 0.062401 0.039509 0.020858 6.226046 5.846735 11.367961 11.466350 -2115 0.066399 0.046580 0.048632 0.030212 12.508261 11.157595 12.951898 13.376809 -2116 0.096518 0.076527 0.048973 0.045937 14.457052 11.630162 15.498438 14.835592 -2117 0.082582 0.071471 0.036917 0.034902 16.401121 11.356328 17.312839 13.516021 -2118 0.061897 0.057180 0.072740 0.050408 9.761898 8.322218 12.610775 8.759240 -2119 0.059770 0.051299 0.044873 0.029698 12.085072 10.872441 14.434887 13.062270 -2120 0.071783 0.075387 0.043319 0.054490 15.109546 12.908650 13.523275 13.934629 -2121 0.069482 0.065188 0.036917 0.031668 7.578964 6.482108 11.846239 9.592651 -2122 0.071190 0.049944 0.044390 0.036442 10.255511 6.909650 13.476366 7.780339 -2123 0.038589 0.040651 0.020752 0.026247 10.783146 8.143435 10.794299 10.855756 -2124 0.056978 0.056384 0.050306 0.026106 8.986060 9.463192 9.373489 7.592841 -2125 0.083456 0.068646 0.044419 0.027815 10.490814 5.484910 13.326106 9.692801 -2126 0.057497 0.043153 0.048478 0.033757 8.522077 7.362079 9.161979 8.958076 -2127 0.073947 0.061024 0.061367 0.057573 10.802844 14.354299 13.277749 16.795596 -2128 0.092119 0.078197 0.037879 0.025365 7.593110 9.247197 10.266298 10.743567 -2129 0.074142 0.055058 0.020265 0.017415 10.674225 7.852507 10.461882 8.072533 -2130 0.048527 0.045115 0.038822 0.036218 10.283128 9.221075 12.646526 14.153896 -2131 0.031140 0.036461 0.020706 0.023277 7.001678 5.242632 8.649112 7.300394 -2132 0.101227 0.077329 0.100559 0.052772 7.923306 7.824578 13.595869 14.799833 -2133 0.119217 0.094394 0.072929 0.046077 10.389890 8.162799 13.906536 14.024985 -2134 0.050263 0.049508 0.027788 0.023269 8.170235 7.243963 9.381332 8.698544 -2135 0.092551 0.052701 0.062971 0.040098 9.271314 7.197652 10.300118 8.568686 -2136 0.128459 0.097432 0.107681 0.096558 9.646633 8.099402 13.438622 12.335631 -2137 0.054551 0.078721 0.030880 0.025177 10.096817 8.639831 11.971863 12.888324 -2138 0.056027 0.059967 0.039576 0.051117 8.972203 7.633390 15.145245 10.749482 -2139 0.083628 0.098460 0.041582 0.043865 8.743943 7.339060 14.207884 12.215409 -2140 0.023663 0.023846 0.022710 0.024061 11.911406 8.214822 13.918311 11.203861 -2141 0.062961 0.060358 0.023750 0.023137 11.650073 8.224162 18.221068 15.131837 -2142 0.075152 0.064663 0.042588 0.029165 7.579163 8.511558 8.752919 8.326114 -2143 0.070363 0.055115 0.037161 0.027217 6.072381 5.657357 10.419911 9.728772 -2144 0.040879 0.049997 0.030675 0.027338 11.090338 9.529813 12.544047 9.791289 -2145 0.124678 0.092158 0.045942 0.042466 11.313323 11.604356 19.515617 13.943490 -2146 0.089969 0.070901 0.088428 0.054659 9.904502 8.584908 14.239116 10.945325 -2147 0.084239 0.061955 0.043252 0.056615 7.939502 7.366225 8.871358 8.071637 -2148 0.111793 0.079318 0.073940 0.050159 10.999236 10.088632 10.479284 9.176228 -2149 0.045393 0.046873 0.032206 0.021508 7.866460 7.536002 10.147635 9.180404 -2150 0.089963 0.073539 0.049696 0.036611 7.089024 7.713452 16.310799 19.059523 -2151 0.072802 0.060166 0.061443 0.035308 6.964275 6.565730 13.404691 10.863410 -2152 0.055422 0.063347 0.035314 0.027743 10.021701 8.157857 11.466196 11.377648 -2153 0.078681 0.063349 0.029977 0.033503 9.855142 8.262883 11.520531 12.578421 -2154 0.071227 0.079661 0.038094 0.045855 7.301389 6.133898 11.710621 10.268180 -2155 0.053369 0.039548 0.043659 0.038248 14.638987 11.264308 11.253142 8.708455 -2156 0.063883 0.069305 0.034295 0.044738 11.582785 9.897546 17.651715 14.241085 -2157 0.102824 0.088613 0.057422 0.049345 8.362238 7.137567 14.649306 9.396341 -2158 0.102271 0.106737 0.054205 0.044470 10.124496 9.205084 16.192319 14.856342 -2159 0.070678 0.057760 0.050630 0.031729 10.433021 7.816604 14.171890 12.053581 -2160 0.108209 0.080646 0.071760 0.047312 9.677616 11.143310 11.600266 12.261685 -2161 0.042610 0.039752 0.025508 0.022860 8.418652 6.587316 10.749627 10.939342 -2162 0.058546 0.050984 0.030157 0.022815 10.958061 7.690109 11.619839 9.291848 -2163 0.074501 0.082762 0.054957 0.050924 9.587561 6.042118 13.823627 11.940367 -2164 0.052105 0.047181 0.049262 0.036471 8.031441 9.403471 9.004451 8.654326 -2165 0.139073 0.122599 0.095102 0.074607 12.419765 10.306050 14.728148 13.087134 -2166 0.069972 0.069705 0.070744 0.072109 10.238908 10.770576 14.924786 15.951761 -2167 0.077709 0.069147 0.059333 0.061086 7.195385 6.689688 10.567947 10.429823 -2168 0.062867 0.059135 0.031793 0.023441 10.247149 9.705755 12.264915 11.160488 -2169 0.098483 0.073000 0.034456 0.034179 7.512384 8.244759 11.445885 10.900853 -2170 0.060752 0.057749 0.027077 0.029969 7.915926 7.808044 10.245391 10.911853 -2171 0.075148 0.064641 0.073738 0.070553 10.045861 7.386871 13.709651 9.922553 -2172 0.072805 0.069754 0.035165 0.029664 14.407357 11.063624 11.970699 9.265034 -2173 0.083348 0.054574 0.052759 0.035358 10.193709 11.877337 11.919897 12.570995 -2174 0.149300 0.111442 0.099698 0.090385 11.457602 9.384994 13.668918 12.008195 -2175 0.099758 0.071798 0.070017 0.052250 9.500732 7.490869 14.426375 12.872563 -2176 0.066889 0.042778 0.030932 0.030804 9.032890 6.479036 12.518660 8.566698 -2177 0.072967 0.043944 0.047657 0.037758 14.575924 11.750056 14.830844 11.205165 -2178 0.093492 0.069896 0.042394 0.035945 6.873282 7.228037 11.096049 12.033672 -2179 0.057955 0.049259 0.048183 0.040291 7.597598 7.164449 10.986777 8.561959 -2180 0.054800 0.047165 0.012376 0.011696 11.465175 8.803419 15.018693 9.617412 -2181 0.081984 0.071152 0.111395 0.075008 8.465403 7.943072 14.942158 11.206129 -2182 0.084885 0.055206 0.061906 0.058479 12.378156 10.008688 15.220739 11.776932 -2183 0.088196 0.095903 0.049955 0.050073 12.763973 11.132682 12.418705 14.144865 -2184 0.051773 0.048238 0.027258 0.025796 12.223794 11.463205 12.253655 11.446823 -2185 0.096434 0.086055 0.041697 0.042019 11.875228 11.073334 12.999646 11.333668 -2186 0.122818 0.093971 0.090904 0.068207 9.612293 7.150501 11.513848 9.042987 -2187 0.057318 0.043971 0.017456 0.012282 7.124344 6.516617 7.901098 8.463124 -2188 0.128739 0.125688 0.065702 0.049656 11.375235 8.630449 20.100542 13.336748 -2189 0.125712 0.099370 0.088322 0.069828 12.165522 11.657761 14.992171 14.037868 -2190 0.130132 0.084803 0.051583 0.034219 9.055423 8.353709 12.280049 9.957999 -2191 0.063780 0.057449 0.022940 0.020981 11.639344 7.786257 15.373812 10.107293 -2192 0.088241 0.081993 0.065425 0.070641 14.691643 13.597561 12.878572 12.089158 -2193 0.125670 0.103432 0.063740 0.098377 10.069261 7.574184 15.596984 14.593497 -2194 0.096350 0.098189 0.040918 0.034741 14.265046 11.939176 17.721553 15.384478 -2195 0.071542 0.083188 0.046142 0.035305 8.131473 6.056923 11.476099 11.179819 -2196 0.055396 0.060215 0.055776 0.034827 14.847979 11.692173 19.275056 15.914321 -2197 0.053629 0.045650 0.037169 0.022903 10.923745 7.775705 11.671667 9.411564 -2198 0.109340 0.113150 0.056825 0.057912 10.659159 10.658538 15.267202 14.284647 -2199 0.076468 0.075685 0.045635 0.026937 10.669573 9.350460 12.188306 9.854126 -2200 0.087622 0.046045 0.095975 0.045543 9.901461 7.847940 11.200530 9.570325 -2201 0.071948 0.082502 0.048202 0.035001 9.755722 7.701324 16.777773 9.905069 -2202 0.116287 0.107139 0.058923 0.057611 12.524097 10.394550 16.671234 14.699632 -2203 0.071485 0.057438 0.052179 0.051795 11.040568 8.867254 17.274552 13.972782 -2204 0.067331 0.058884 0.038780 0.056879 6.207627 6.710499 8.348029 7.538809 -2205 0.112204 0.114377 0.087975 0.076373 8.418248 9.628729 9.907381 10.393578 -2206 0.041014 0.041596 0.021353 0.022375 12.348152 10.818751 14.154749 9.257155 -2207 0.064960 0.054726 0.044681 0.027226 9.953578 8.977598 9.977131 10.470584 -2208 0.057425 0.063814 0.029802 0.030400 11.097174 8.358913 17.964427 12.448531 -2209 0.148498 0.125944 0.046419 0.044355 11.086625 11.378452 10.920616 13.271715 -2210 0.139743 0.113449 0.075645 0.069450 9.635471 10.485540 14.226125 12.156542 -2211 0.058208 0.055387 0.051885 0.057300 8.220896 7.246198 11.340367 10.504942 -2212 0.076488 0.058660 0.046780 0.043501 10.799025 9.070805 11.354924 10.556506 -2213 0.070916 0.078236 0.027760 0.029444 8.040203 8.131086 10.861966 10.250168 -2214 0.045663 0.069192 0.025660 0.030135 7.961374 10.614637 15.605545 14.056396 -2215 0.087437 0.095099 0.052660 0.068376 10.913512 10.998003 10.316187 9.294498 -2216 0.096326 0.097721 0.050186 0.058383 10.420675 8.411791 11.185535 8.781801 -2217 0.111299 0.094025 0.091070 0.080101 12.745264 10.671486 9.485910 9.956929 -2218 0.055248 0.047110 0.033816 0.021027 8.604373 5.599880 13.817515 10.831569 -2219 0.071858 0.061964 0.047817 0.040616 8.190827 8.806641 11.305243 11.805522 -2220 0.066017 0.084884 0.030432 0.027711 7.104488 7.320467 11.739244 13.528085 -2221 0.057586 0.056999 0.024670 0.023741 6.735738 6.584329 8.581148 9.671542 -2222 0.064888 0.068019 0.042986 0.033233 9.963645 10.253921 11.184189 11.260682 -2223 0.055585 0.066211 0.038309 0.037344 10.901275 13.132787 11.244728 14.576813 -2224 0.079921 0.064574 0.045012 0.025301 11.485616 11.227173 15.039035 15.453886 -2225 0.127785 0.082133 0.065459 0.046272 18.484393 12.236241 20.897787 15.829237 -2226 0.102337 0.074307 0.061552 0.027400 7.360908 4.370084 10.888320 8.905698 -2227 0.084553 0.062752 0.063202 0.034834 12.150100 9.113649 11.039342 10.375048 -2228 0.076341 0.071322 0.039300 0.027922 12.525134 9.254282 12.337962 10.696289 -2229 0.093036 0.110418 0.066304 0.070743 9.010745 10.443986 14.969707 12.502403 -2230 0.102074 0.081979 0.046796 0.033257 9.599075 7.951233 10.612818 10.968811 -2231 0.066025 0.051523 0.056833 0.029791 6.481005 8.730020 11.725832 14.110481 -2232 0.073524 0.075636 0.051375 0.051568 18.209535 13.590107 19.506327 16.445239 -2233 0.086984 0.067588 0.052452 0.041751 10.841961 8.313435 16.795100 12.379732 -2234 0.079131 0.061685 0.042715 0.019117 9.945631 7.002408 9.942317 6.019377 -2235 0.085193 0.067946 0.051887 0.033370 14.135307 12.234722 13.836759 12.886064 -2236 0.096354 0.060446 0.032488 0.035909 9.167801 6.086543 13.390128 9.861295 -2237 0.079790 0.059240 0.071099 0.050643 11.445585 8.598365 11.193811 10.936651 -2238 0.066051 0.041655 0.038572 0.025639 10.664357 8.807070 11.427206 9.149744 -2239 0.083368 0.073018 0.041027 0.024148 8.284931 7.855560 9.254677 8.719880 -2240 0.066169 0.060252 0.046354 0.035411 14.303691 14.141746 19.856910 17.187960 -2241 0.070031 0.053988 0.046540 0.021661 5.276639 5.414438 10.209519 9.632632 -2242 0.114289 0.077745 0.100601 0.058240 14.190351 10.723780 21.070216 17.046542 -2243 0.061842 0.056408 0.035598 0.031874 9.549363 6.336013 15.074593 9.020121 -2244 0.076203 0.064094 0.040562 0.032950 12.902781 9.634367 13.734982 10.938976 -2245 0.079819 0.069191 0.030359 0.036574 12.065217 12.014497 12.896374 11.593278 -2246 0.119105 0.076784 0.068176 0.054410 15.535092 13.176822 16.396105 16.624067 -2247 0.098679 0.082797 0.063109 0.056338 8.103743 8.236137 13.880510 10.325469 -2248 0.078838 0.088959 0.059887 0.046771 11.439355 12.651895 15.265290 15.005242 -2249 0.056958 0.047691 0.030508 0.032502 7.119140 4.647029 10.278953 8.047381 -2250 0.068050 0.068176 0.040098 0.039823 8.141956 7.772745 12.059787 10.666608 -2251 0.075463 0.072296 0.030018 0.048394 15.547370 8.765343 17.692391 11.130127 -2252 0.092548 0.069565 0.065147 0.046926 12.475714 8.893341 13.869908 11.236649 -2253 0.135314 0.106846 0.068736 0.059510 20.153596 15.953644 18.488407 14.970222 -2254 0.070498 0.070834 0.041127 0.029562 10.577562 9.505508 15.099634 14.478038 -2255 0.087827 0.091198 0.052585 0.046361 8.820721 6.583039 10.328193 8.932059 -2256 0.063336 0.053814 0.070334 0.047145 10.717177 8.045836 15.779735 13.126594 -2257 0.137635 0.116561 0.133937 0.082496 10.973676 9.352041 16.430558 13.763235 -2258 0.076062 0.067357 0.048057 0.031469 10.581556 8.908539 16.028368 14.787646 -2259 0.118990 0.102305 0.088967 0.067040 16.230747 14.752144 19.345397 15.808870 -2260 0.048777 0.030328 0.046355 0.024015 7.481646 7.163001 10.629519 10.090362 -2261 0.054205 0.039743 0.024854 0.019274 7.898632 6.936104 12.191408 10.234108 -2262 0.151338 0.085368 0.042905 0.037444 11.871151 7.645739 16.077992 10.430717 -2263 0.056558 0.071086 0.039846 0.035996 14.553976 10.328977 12.370385 9.952148 -2264 0.060346 0.056917 0.032947 0.033657 7.942097 7.801392 13.412552 10.454298 -2265 0.033841 0.032425 0.015294 0.027681 9.645284 7.945528 12.382886 9.816360 -2266 0.066168 0.059816 0.034497 0.027354 6.820684 5.035117 7.967022 6.909712 -2267 0.047786 0.036548 0.034465 0.021847 8.829916 7.876189 15.951366 14.932544 -2268 0.099593 0.078514 0.036196 0.043741 11.452057 9.594969 10.727409 7.580675 -2269 0.066093 0.052620 0.048783 0.038730 12.177377 10.062115 18.547397 16.901933 -2270 0.080892 0.077515 0.031693 0.027116 12.981793 11.613097 23.504169 17.593977 -2271 0.082511 0.081016 0.052958 0.053179 11.660116 8.587082 9.160681 8.097814 -2272 0.052745 0.044708 0.032143 0.028320 14.287417 12.592763 17.925660 13.689392 -2273 0.078802 0.067945 0.077871 0.050473 9.417338 9.588232 10.192610 10.053569 -2274 0.074377 0.064602 0.065305 0.044051 13.814108 9.471096 18.945006 15.287305 -2275 0.104069 0.089629 0.069514 0.072827 14.351513 16.389531 15.399209 18.011136 -2276 0.074917 0.056764 0.062706 0.044442 9.959650 9.902153 12.046207 11.507835 -2277 0.074611 0.052360 0.059672 0.041562 8.651911 8.358380 10.442768 8.470950 -2278 0.124661 0.090245 0.080343 0.041095 14.467891 11.444913 14.353054 12.891848 -2279 0.070313 0.045849 0.029060 0.024035 8.657745 8.419363 10.489202 9.577021 -2280 0.054191 0.049645 0.020260 0.019065 9.776160 9.419299 11.399432 9.589706 -2281 0.039639 0.030402 0.044270 0.027448 8.725277 9.587414 9.733174 7.279593 -2282 0.056039 0.058058 0.048322 0.050865 8.344071 9.072140 7.341045 7.769651 -2283 0.059786 0.052656 0.061605 0.051046 8.279650 9.781738 11.804009 11.515659 -2284 0.052272 0.047442 0.034233 0.034984 8.720039 10.752478 13.850127 13.735487 -2285 0.135166 0.125799 0.050760 0.042742 7.357383 6.972295 12.433528 9.669353 -2286 0.072399 0.043992 0.053337 0.035170 12.533653 9.418247 16.528054 11.503255 -2287 0.092082 0.091474 0.046713 0.073540 11.929550 12.326193 15.666490 15.535776 -2288 0.045810 0.042216 0.038298 0.031119 10.871038 10.849049 16.400206 12.806254 -2289 0.078403 0.074799 0.035488 0.027782 12.102008 9.467666 11.079797 8.912630 -2290 0.065910 0.055463 0.034712 0.029074 18.691024 15.881329 13.152568 11.899195 -2291 0.095941 0.081121 0.037005 0.032590 6.248565 6.660965 11.493648 10.882593 -2292 0.075784 0.065509 0.045027 0.048264 8.632685 7.378259 9.142340 6.782770 -2293 0.121919 0.087286 0.043140 0.028078 8.503087 9.681633 13.422732 12.335215 -2294 0.043304 0.041228 0.040211 0.035941 8.914797 8.141099 10.871915 8.833151 -2295 0.071525 0.061388 0.031132 0.043449 11.525980 10.804037 13.888901 13.896905 -2296 0.051212 0.055617 0.016937 0.027502 12.442040 10.605347 17.373463 17.058410 -2297 0.060421 0.060510 0.028068 0.030347 15.079325 12.199831 20.068533 16.838943 -2298 0.039501 0.028242 0.014228 0.011691 6.324185 5.456939 6.610966 6.065128 -2299 0.069680 0.048432 0.063203 0.049825 12.993813 11.578853 12.687890 12.451848 -2300 0.089461 0.061930 0.039287 0.032940 10.465156 10.099831 14.142126 12.164738 -2301 0.080329 0.064650 0.032471 0.027038 8.348046 8.230073 12.177535 12.733552 -2302 0.094989 0.092757 0.108120 0.100985 12.039534 9.068346 17.536932 15.313310 -2303 0.105625 0.087035 0.064396 0.036660 9.262807 9.053370 17.260443 13.161064 -2304 0.101786 0.091050 0.061914 0.038160 12.556046 9.129003 13.265521 11.019082 -2305 0.115306 0.082182 0.072019 0.081798 17.506719 16.736423 18.999601 19.136753 -2306 0.114575 0.140365 0.077086 0.071802 13.924327 14.626603 19.280287 15.574735 -2307 0.054320 0.049417 0.050002 0.043063 9.077196 8.437214 11.618537 11.367150 -2308 0.063186 0.043204 0.033339 0.024606 10.932263 8.953036 8.890599 9.207194 -2309 0.084298 0.082657 0.048854 0.037543 12.473923 10.336167 13.075606 9.461312 -2310 0.063897 0.064312 0.035852 0.035556 10.775740 10.385016 19.644588 15.673373 -2311 0.052932 0.043303 0.034899 0.032650 9.308219 8.032725 10.557803 9.937539 -2312 0.084496 0.076874 0.056891 0.054532 11.646625 8.551942 16.802632 11.107147 -2313 0.059775 0.051939 0.039267 0.025181 7.618873 7.909183 11.415691 10.147754 -2314 0.090222 0.073692 0.034777 0.034364 13.552194 10.380442 15.318886 11.466816 -2315 0.117253 0.078789 0.062391 0.055929 10.396434 9.542143 10.388666 10.378504 -2316 0.042660 0.046765 0.023833 0.027258 7.320440 6.329045 13.363404 11.389843 -2317 0.057136 0.057106 0.040054 0.053183 6.866424 6.912619 8.599246 7.391048 -2318 0.105142 0.083215 0.091770 0.088290 8.192896 9.077986 15.533247 15.996118 -2319 0.093997 0.096267 0.046264 0.040331 8.895431 9.102575 17.940371 12.482199 -2320 0.069707 0.056247 0.036593 0.043890 10.408359 10.744741 12.475274 12.991249 -2321 0.102438 0.063936 0.053727 0.034223 10.086343 10.566177 16.709069 15.458904 -2322 0.134096 0.107161 0.069542 0.040173 8.860273 11.263788 12.387475 16.786375 -2323 0.085203 0.078364 0.058489 0.039239 11.545469 11.374514 11.525000 8.682668 -2324 0.103248 0.075575 0.043161 0.028668 8.221589 7.672012 12.494633 12.261766 -2325 0.085079 0.070225 0.049815 0.028377 11.080207 7.361491 19.377431 10.691625 -2326 0.064162 0.069462 0.047366 0.048516 10.010309 6.805348 12.002467 8.008123 -2327 0.071757 0.063748 0.036880 0.030391 12.381109 11.369194 14.135951 11.574520 -2328 0.066013 0.060422 0.064034 0.038725 8.620630 7.714039 13.469982 13.069119 -2329 0.102844 0.082075 0.054456 0.030608 8.221287 6.600584 12.360046 9.957678 -2330 0.060530 0.051658 0.028551 0.027145 11.114934 8.088237 20.095843 14.172763 -2331 0.087844 0.061779 0.062133 0.052002 7.768599 5.472563 11.857616 8.941306 -2332 0.051745 0.035156 0.037096 0.019763 10.076399 7.734961 12.666133 9.520181 -2333 0.112871 0.080199 0.086217 0.065021 11.627021 10.855418 20.104898 15.498745 -2334 0.050713 0.049481 0.032960 0.024954 9.856206 9.484956 10.724491 13.403605 -2335 0.060843 0.056281 0.029490 0.027215 5.819158 5.821652 7.386796 7.581107 -2336 0.065536 0.048348 0.048470 0.033363 5.613639 5.289258 9.104185 8.530177 -2337 0.098916 0.079086 0.079580 0.092263 13.476362 10.385204 17.104952 13.062621 -2338 0.110794 0.115924 0.087205 0.083919 11.303678 9.956727 12.814468 12.164102 -2339 0.149661 0.119141 0.079419 0.070487 13.864707 13.311093 18.207125 16.902766 -2340 0.053383 0.044695 0.033033 0.020740 6.084891 6.195507 9.641983 9.968922 -2341 0.072326 0.084779 0.044588 0.042676 12.355472 9.337569 8.986187 7.337034 -2342 0.050535 0.043362 0.065616 0.036149 9.188390 7.016503 12.760372 9.480044 -2343 0.087406 0.088206 0.053805 0.058152 10.226105 10.839152 12.444909 9.226431 -2344 0.099164 0.118539 0.044776 0.047219 12.138906 9.146751 14.347962 11.162489 -2345 0.071771 0.074552 0.055862 0.057106 6.697762 6.772103 9.337506 9.861346 -2346 0.044210 0.052028 0.030774 0.042160 11.223648 9.525160 9.612391 7.742040 -2347 0.135685 0.107252 0.072313 0.056945 11.272194 11.877416 17.686906 20.072663 -2348 0.076417 0.067837 0.051112 0.064220 8.810154 10.946279 12.955426 11.214072 -2349 0.124886 0.075341 0.065464 0.045730 9.738050 9.305512 15.625600 15.953204 -2350 0.054918 0.046324 0.032933 0.023813 8.270514 7.743666 13.905978 12.290939 -2351 0.079927 0.061672 0.031415 0.029064 10.266404 7.284402 12.429616 8.972378 -2352 0.071926 0.046008 0.037897 0.017207 9.446231 8.967506 10.052014 10.480261 -2353 0.085482 0.061352 0.044978 0.041311 9.536075 10.331789 18.525423 15.418231 -2354 0.075346 0.058032 0.049118 0.031127 5.549412 6.549279 7.861963 8.660514 -2355 0.052827 0.044868 0.045623 0.034360 10.445956 10.173647 11.688498 11.003613 -2356 0.091958 0.087983 0.061730 0.050794 18.418591 20.448141 20.891851 18.892014 -2357 0.071314 0.069574 0.053371 0.049671 10.497804 9.334886 9.116690 8.918124 -2358 0.079768 0.064221 0.047692 0.038372 7.958180 6.825521 9.115917 9.827978 -2359 0.076075 0.067413 0.054977 0.045399 7.970997 6.083611 12.097249 9.548118 -2360 0.191804 0.137819 0.128549 0.073476 14.422611 11.380306 17.249701 13.796478 -2361 0.072624 0.070163 0.069578 0.055257 8.191109 7.796540 15.070254 14.029744 -2362 0.060582 0.046549 0.026551 0.021332 8.382848 8.228690 7.235160 7.444042 -2363 0.048333 0.037722 0.029411 0.031125 11.457586 9.974104 15.832754 14.333114 -2364 0.086710 0.064967 0.057615 0.038337 11.940486 11.031628 12.792181 11.889454 -2365 0.043730 0.036733 0.025455 0.019886 7.191655 6.501459 10.006387 8.885312 -2366 0.063611 0.064746 0.051008 0.054565 10.220586 7.975973 14.976587 11.543355 -2367 0.055195 0.069121 0.035801 0.044935 8.951597 7.096186 13.766462 11.450903 -2368 0.073891 0.094111 0.046256 0.057817 7.493597 8.409837 14.147019 13.683234 -2369 0.072656 0.078420 0.033661 0.041635 9.496349 8.667724 13.316605 10.396170 -2370 0.045208 0.050911 0.037066 0.038635 8.764406 7.262817 16.168732 11.836857 -2371 0.095895 0.067596 0.032437 0.020716 7.441873 5.441807 10.677730 7.598900 -2372 0.088415 0.084505 0.069423 0.039420 11.086213 8.983735 13.354294 9.407626 -2373 0.038100 0.046908 0.026015 0.023953 6.317639 4.722844 7.050020 5.169252 -2374 0.046260 0.049768 0.020902 0.021599 8.754693 11.042631 8.435674 9.811511 -2375 0.103594 0.069034 0.095147 0.041305 10.822361 10.742032 14.552399 15.858091 -2376 0.070452 0.065267 0.061344 0.063471 10.751682 8.548563 13.121608 10.621879 -2377 0.063165 0.059533 0.047774 0.021702 6.695724 6.599566 10.348529 9.983701 -2378 0.074430 0.060081 0.044365 0.028127 8.681665 9.494662 11.461181 13.415000 -2379 0.054798 0.045106 0.041366 0.025873 8.229068 6.809799 13.590842 9.194769 -2380 0.072965 0.076535 0.057466 0.044627 9.434060 9.866418 14.610224 15.738235 -2381 0.074582 0.076546 0.063321 0.043477 7.563659 7.492528 8.675676 8.269092 -2382 0.074773 0.065526 0.049728 0.049992 9.431097 11.972046 13.050612 14.896811 -2383 0.091926 0.070140 0.034588 0.020879 8.812975 6.478782 9.661705 7.302128 -2384 0.101247 0.096358 0.037896 0.028508 10.918670 9.901936 9.507515 7.145776 -2385 0.076925 0.055920 0.067153 0.029883 12.677383 12.357348 14.039598 14.372530 -2386 0.079007 0.071820 0.037805 0.046744 8.326351 7.958896 10.023049 9.818698 -2387 0.061856 0.063612 0.065869 0.063679 12.993250 9.821869 18.078469 16.039399 -2388 0.090103 0.071216 0.029067 0.022663 10.503637 9.267808 10.996679 11.658227 -2389 0.070157 0.057441 0.061206 0.041927 8.495332 6.527537 15.022179 12.624227 -2390 0.079246 0.056323 0.070226 0.046740 7.206380 9.413705 13.775991 17.626248 -2391 0.053946 0.046016 0.031711 0.035403 9.522739 8.185457 14.753063 11.081085 -2392 0.054165 0.045789 0.032662 0.030662 9.725713 11.192299 12.725971 12.260038 -2393 0.071794 0.055351 0.054831 0.037941 9.864348 8.065026 11.868111 10.146520 -2394 0.068690 0.057047 0.044846 0.029810 7.160795 6.267322 8.408383 7.658417 -2395 0.132551 0.098187 0.084018 0.050390 15.745269 12.467666 22.335412 15.499289 -2396 0.054318 0.051814 0.021057 0.018920 9.940270 6.235115 11.842817 8.800944 -2397 0.081633 0.045122 0.066295 0.033446 14.849427 14.639920 21.175549 23.558814 -2398 0.067893 0.078709 0.037335 0.052013 9.464174 6.205486 11.917086 10.817301 -2399 0.088196 0.068949 0.041046 0.041561 7.801655 8.431855 9.150667 11.037664 -2400 0.070127 0.064870 0.061833 0.052043 8.054019 6.947406 15.758157 12.758503 -2401 0.137046 0.137919 0.098604 0.095063 7.400973 8.279286 8.924144 8.951913 -2402 0.102838 0.101002 0.024634 0.029664 7.368569 7.351279 16.010672 13.933116 -2403 0.075674 0.069686 0.050490 0.041799 11.765813 8.171488 14.958281 11.084464 -2404 0.077533 0.060522 0.043582 0.036087 6.997966 8.275201 10.656700 10.935852 -2405 0.055907 0.060810 0.045945 0.050304 6.670418 4.769520 9.309757 7.098251 -2406 0.145807 0.150216 0.118501 0.112417 13.016917 10.608574 14.098955 12.544274 -2407 0.085295 0.079363 0.051053 0.050762 9.977438 8.219720 15.613011 15.249215 -2408 0.080418 0.049871 0.061212 0.034293 10.806207 8.012324 13.155518 9.952269 -2409 0.112761 0.077007 0.039013 0.031650 9.782545 10.729644 10.989155 10.991183 -2410 0.088519 0.071482 0.075407 0.077860 12.197044 10.010845 10.627844 9.505823 -2411 0.053937 0.058413 0.036048 0.029706 10.432084 7.997656 11.491856 10.186799 -2412 0.084176 0.071255 0.088873 0.040445 15.082406 14.100933 15.762028 12.548071 -2413 0.127011 0.092066 0.065950 0.044024 14.460638 11.114448 14.364512 12.145493 -2414 0.071888 0.061294 0.037603 0.035369 11.232605 10.393893 13.306417 12.846525 -2415 0.081293 0.104629 0.062654 0.062586 10.196109 10.816609 16.175351 14.017400 -2416 0.051270 0.061412 0.022022 0.028851 10.397035 7.280763 13.699312 11.578030 -2417 0.072925 0.054167 0.074580 0.066447 8.680651 8.256291 11.353484 8.604921 -2418 0.097090 0.087556 0.062680 0.037587 12.201232 9.892615 16.272201 14.448824 -2419 0.047603 0.041978 0.017230 0.026259 6.730352 6.647783 9.417615 9.153219 -2420 0.055969 0.046405 0.032679 0.036558 8.315154 7.169768 11.804598 8.868376 -2421 0.095851 0.073264 0.050037 0.029650 5.968487 5.733849 13.525779 10.904706 -2422 0.070004 0.079759 0.055764 0.050216 10.302531 10.667253 12.036539 11.025388 -2423 0.070297 0.064172 0.050102 0.050010 16.858764 12.935870 18.167667 12.564981 -2424 0.068521 0.040570 0.063729 0.039090 11.419463 11.584162 14.765134 13.592907 -2425 0.102436 0.074873 0.069062 0.039437 11.249722 8.855559 11.798409 10.767953 -2426 0.066444 0.036255 0.042005 0.025933 6.565778 6.418172 10.132446 10.848413 -2427 0.067525 0.054178 0.027696 0.021097 9.615661 7.177358 11.676666 10.949076 -2428 0.080168 0.058745 0.031370 0.017818 7.589156 5.748701 10.601217 7.445625 -2429 0.057928 0.043373 0.035180 0.020538 5.841776 5.635471 7.393496 7.363586 -2430 0.082054 0.076440 0.037295 0.026558 9.932799 8.704265 11.833054 11.549517 -2431 0.097527 0.085792 0.059165 0.043479 6.375653 7.977243 9.659707 9.612309 -2432 0.069303 0.063205 0.035190 0.031832 7.955814 5.420390 10.240538 7.906429 -2433 0.063144 0.056510 0.035137 0.025311 8.354728 6.434437 9.180052 6.903116 -2434 0.101797 0.113680 0.038843 0.047278 7.987158 8.313414 14.527693 13.264395 -2435 0.052481 0.055374 0.039272 0.050095 11.322248 12.695573 11.937397 12.000943 -2436 0.085654 0.108169 0.045458 0.050558 9.536920 7.076599 11.389232 11.035900 -2437 0.089910 0.081910 0.054773 0.044574 8.286732 6.783837 11.591202 7.952767 -2438 0.064510 0.071077 0.045090 0.052616 6.891237 6.342864 11.191584 11.385311 -2439 0.046339 0.045778 0.024794 0.040429 8.994614 9.601506 12.674042 14.352007 -2440 0.131241 0.067607 0.091587 0.079252 6.076019 6.169159 11.264456 10.296313 -2441 0.083221 0.100218 0.059843 0.046542 10.575527 10.311212 10.730826 13.533592 -2442 0.065481 0.068378 0.030892 0.027015 10.173921 11.085897 10.596436 11.716287 -2443 0.075441 0.079057 0.030450 0.024057 8.141121 8.054277 12.646400 10.220889 -2444 0.115622 0.099001 0.043785 0.049878 11.744456 10.522559 11.113348 13.884977 -2445 0.040545 0.038977 0.030588 0.018060 11.486487 8.232352 13.851018 10.319766 -2446 0.119428 0.125090 0.099793 0.080055 11.625866 10.582139 11.253409 11.132405 -2447 0.100795 0.091768 0.035421 0.042550 6.404993 5.855293 10.907318 8.233174 -2448 0.077988 0.090750 0.069607 0.060370 13.529558 13.644605 12.263262 14.128812 -2449 0.140670 0.136111 0.098491 0.101883 10.814503 9.600291 14.994346 11.706004 -2450 0.063410 0.053415 0.029978 0.025315 9.670003 9.507654 9.896242 9.464939 -2451 0.064730 0.052598 0.043548 0.029226 7.925735 7.342165 10.842815 7.848125 -2452 0.112860 0.111301 0.056399 0.059065 8.518920 9.290492 15.355062 16.676285 -2453 0.067987 0.041820 0.054920 0.036979 10.700840 9.663690 11.310282 9.574803 -2454 0.120763 0.121045 0.084984 0.074268 12.437214 9.993748 12.245585 11.613563 -2455 0.073386 0.063145 0.029069 0.021305 11.084916 11.795084 10.605492 11.515695 -2456 0.078188 0.077089 0.031262 0.032131 7.581170 6.610231 11.571436 9.284155 -2457 0.070164 0.062215 0.039910 0.032488 12.433204 10.060199 16.821743 15.319641 -2458 0.079357 0.077650 0.081180 0.062349 9.630640 8.243278 11.534864 10.169124 -2459 0.063686 0.063557 0.053148 0.047418 6.954073 6.726062 6.961894 6.760130 -2460 0.091656 0.099733 0.057371 0.055471 10.175771 8.556368 15.146697 15.152091 -2461 0.077171 0.095361 0.048160 0.078882 9.261876 9.765986 11.934097 14.017841 -2462 0.115272 0.116066 0.061304 0.049648 14.529171 11.550059 14.184321 12.560736 -2463 0.067424 0.057732 0.024950 0.031900 8.139760 6.665079 6.440038 6.236801 -2464 0.087268 0.065788 0.035000 0.024397 11.351846 9.247312 10.779557 7.659501 -2465 0.108338 0.092652 0.053093 0.039404 14.968336 11.556457 14.080061 11.543894 -2466 0.051810 0.058317 0.039984 0.048945 7.294003 9.346322 10.878661 12.283485 -2467 0.061545 0.044075 0.040192 0.022601 5.817554 6.071134 9.154432 7.532493 -2468 0.055243 0.049033 0.044340 0.029226 10.492755 9.595289 10.393640 8.003473 -2469 0.066224 0.062018 0.026212 0.024123 12.329028 10.485528 15.266145 13.925315 -2470 0.043813 0.033257 0.016509 0.015891 9.046084 6.484795 12.217082 11.297755 -2471 0.114457 0.096630 0.059981 0.043541 13.914663 12.257726 17.840764 17.331737 -2472 0.067724 0.078146 0.034353 0.046824 15.404896 13.130955 17.105507 13.841666 -2473 0.058992 0.057614 0.027888 0.020842 10.623605 8.514177 14.122760 12.689420 -2474 0.072525 0.055345 0.035099 0.024711 8.044977 7.861927 10.939019 11.889209 -2475 0.067834 0.059474 0.035959 0.037209 9.575726 9.350755 9.126740 7.576421 -2476 0.077505 0.049674 0.045650 0.030999 7.267321 5.907084 12.085877 9.694284 -2477 0.085833 0.057157 0.033885 0.039291 8.287767 7.348270 10.198097 12.092261 -2478 0.069846 0.056618 0.041547 0.039542 6.992204 8.381416 9.327735 8.839176 -2479 0.050822 0.036774 0.048012 0.041335 9.727049 9.575768 12.724475 13.008604 -2480 0.071737 0.044362 0.037783 0.018701 6.636465 6.764640 8.266890 7.187203 -2481 0.087262 0.075521 0.057024 0.058669 10.147442 8.887989 13.265414 11.870182 -2482 0.089275 0.092331 0.055359 0.033174 15.740245 15.450776 16.568444 13.055010 -2483 0.070257 0.047958 0.046052 0.029843 11.868137 9.295994 18.743472 14.988746 -2484 0.053395 0.046025 0.052456 0.034246 5.222022 5.146939 5.369520 4.897757 -2485 0.078850 0.093522 0.033254 0.041746 11.020058 11.073293 11.345147 10.753151 -2486 0.063406 0.071567 0.031114 0.034561 10.501637 11.393253 10.852419 11.053690 -2487 0.065332 0.065077 0.046174 0.037379 12.897023 11.584080 11.652254 14.573454 -2488 0.048719 0.041333 0.022362 0.019327 9.882006 7.586513 11.879634 9.861937 -2489 0.097806 0.082112 0.100498 0.080262 14.765857 13.003983 16.891348 12.833285 -2490 0.062519 0.058671 0.030988 0.041880 9.861817 8.807968 13.186028 9.180572 -2491 0.054332 0.040543 0.039199 0.029065 6.533674 8.612588 12.781144 12.318969 -2492 0.110375 0.088605 0.078011 0.035895 10.564778 9.717869 9.636284 8.988291 -2493 0.040325 0.031247 0.023275 0.012691 8.034598 6.067316 10.019419 8.588096 -2494 0.071563 0.092743 0.055113 0.037359 10.210752 9.102843 13.460247 11.057230 -2495 0.068718 0.072648 0.037165 0.051776 14.599901 12.656758 23.005559 24.810302 -2496 0.104171 0.085035 0.053657 0.054169 12.676247 12.576802 12.868665 11.352896 -2497 0.065522 0.046233 0.049651 0.037950 9.505595 7.349658 14.982988 11.829043 -2498 0.066606 0.054089 0.039410 0.032692 12.310192 11.216189 16.151275 10.386964 -2499 0.058654 0.059731 0.029209 0.035065 13.747948 10.998643 22.621731 19.198507 -2500 0.067201 0.059733 0.035084 0.030624 7.232815 5.240578 8.137362 7.664315 -2501 0.083431 0.061859 0.041084 0.026970 10.155284 7.453818 12.726676 11.023242 -2502 0.146304 0.119843 0.059253 0.054790 9.664025 9.575440 11.819116 11.520529 -2503 0.062513 0.044612 0.039823 0.021931 7.518780 6.877815 7.061918 6.082393 -2504 0.061490 0.050470 0.032086 0.027779 11.809174 10.161113 14.218469 14.364169 -2505 0.058137 0.068546 0.032719 0.022896 6.316001 4.769504 9.097478 8.345828 -2506 0.095687 0.088603 0.054921 0.049312 9.791229 8.919139 11.562186 9.180487 -2507 0.050643 0.040308 0.023311 0.016225 6.312770 6.790699 7.384943 6.842298 -2508 0.048867 0.048378 0.026108 0.022841 7.640776 7.113021 8.631747 7.345511 -2509 0.052738 0.048145 0.031553 0.021514 9.360285 10.113157 12.455188 13.151249 -2510 0.097444 0.087034 0.050077 0.051406 9.885985 7.533949 11.284481 11.457434 -2511 0.063047 0.069039 0.041785 0.031661 12.445214 9.843796 17.011937 14.023439 -2512 0.057772 0.039267 0.036872 0.024794 7.403053 5.977505 9.373871 8.002875 -2513 0.071059 0.063499 0.079687 0.057582 8.703088 9.484784 9.915332 10.663619 -2514 0.074104 0.057299 0.039773 0.043865 12.131199 10.177217 19.064505 12.230421 -2515 0.058638 0.049640 0.043793 0.027876 6.106570 5.142355 9.605562 11.557964 -2516 0.106559 0.079128 0.053660 0.036221 10.139976 8.227274 11.801918 10.913231 -2517 0.078521 0.101763 0.080317 0.096921 11.625391 11.622555 13.994265 12.962230 -2518 0.050845 0.045947 0.047831 0.041053 7.967027 5.524162 12.778046 8.247605 -2519 0.055209 0.044511 0.035763 0.054707 6.633059 7.864206 7.630893 7.606778 -2520 0.116504 0.102810 0.069713 0.048982 20.480530 18.649882 26.044144 20.659431 -2521 0.089624 0.061122 0.061523 0.043473 6.311881 4.670685 11.563192 11.440139 -2522 0.082250 0.080633 0.042658 0.035584 11.353668 8.844333 11.640572 11.000456 -2523 0.068664 0.056171 0.055635 0.040385 6.662762 7.006624 7.372052 9.353216 -2524 0.053650 0.050971 0.026814 0.031312 5.759016 5.105111 7.779246 7.121003 -2525 0.042780 0.036668 0.018367 0.010785 6.176971 6.549994 9.546699 7.168439 -2526 0.054823 0.047713 0.027508 0.021240 6.713840 5.862823 8.919153 8.385902 -2527 0.069787 0.063804 0.043860 0.049029 13.284744 12.188163 13.482726 12.095661 -2528 0.092730 0.085974 0.034747 0.022120 12.014877 12.362400 10.294033 10.392330 -2529 0.079132 0.059685 0.051530 0.039880 10.013775 8.463767 15.108202 11.124976 -2530 0.069641 0.065756 0.025561 0.026233 12.849522 9.596382 11.919298 8.362933 -2531 0.076869 0.065591 0.052324 0.049677 8.512746 8.111839 8.209811 8.250449 -2532 0.050550 0.050160 0.033449 0.026489 9.441972 7.457026 12.373648 9.921662 -2533 0.081087 0.053413 0.040400 0.030611 8.893090 7.902484 10.196048 8.996897 -2534 0.068191 0.067106 0.046022 0.046171 8.938952 9.751632 15.965964 16.992119 -2535 0.063961 0.051724 0.058928 0.044531 8.179527 5.842581 13.594253 9.096697 -2536 0.070297 0.054468 0.036763 0.023969 8.663606 8.031757 10.452479 10.706460 -2537 0.055816 0.042609 0.044824 0.042045 10.225414 8.229835 9.905334 8.375459 -2538 0.050573 0.049474 0.021778 0.021241 9.370979 8.067001 11.694946 10.321346 -2539 0.081263 0.077045 0.053561 0.042073 7.008861 8.475288 9.971870 9.918175 -2540 0.056985 0.062384 0.041684 0.057913 10.413893 9.263347 9.231800 8.540841 -2541 0.134154 0.095039 0.043316 0.039676 14.653491 13.215269 14.436269 11.462578 -2542 0.096718 0.102183 0.079407 0.076891 12.929188 10.642606 17.851995 18.725138 -2543 0.069423 0.056904 0.045551 0.038292 14.094558 10.715262 18.392014 13.412277 -2544 0.053983 0.056637 0.024901 0.030883 8.467410 7.672354 10.102528 9.047356 -2545 0.073162 0.052181 0.028820 0.027083 11.020378 11.130473 14.433275 15.428093 -2546 0.037177 0.030145 0.033096 0.028193 9.888794 7.916244 12.900755 9.712843 -2547 0.072669 0.077429 0.042397 0.026984 10.314664 7.622550 17.786682 10.144367 -2548 0.037928 0.034606 0.036158 0.038485 6.918941 5.540316 10.159668 8.249193 -2549 0.079535 0.060369 0.039271 0.019995 8.158360 8.902037 10.476544 9.777145 -2550 0.044277 0.026445 0.027577 0.017072 8.800697 8.268558 11.889889 10.693365 -2551 0.067260 0.063013 0.035984 0.029996 8.673440 8.972150 11.001514 10.744416 -2552 0.076362 0.051469 0.032787 0.021873 6.625527 5.400602 12.312155 8.404756 -2553 0.055519 0.044814 0.032279 0.034005 12.742429 8.614719 11.402151 9.131958 -2554 0.056082 0.062831 0.054741 0.047611 11.091832 7.617870 9.858994 8.111640 -2555 0.071890 0.047655 0.035743 0.035566 7.952651 7.254444 12.350796 13.689957 -2556 0.055613 0.055887 0.035464 0.040126 15.999302 10.258419 16.557223 11.665935 -2557 0.075655 0.070312 0.053115 0.035095 11.673558 11.952024 14.622611 13.492900 -2558 0.120932 0.088425 0.080309 0.064300 8.797296 6.949462 14.069692 10.332001 -2559 0.072630 0.047765 0.043506 0.026618 8.442107 8.190212 9.484321 9.338747 -2560 0.084595 0.068168 0.047514 0.029318 10.757337 9.969690 13.627792 9.148698 -2561 0.115379 0.106319 0.039437 0.031820 10.618630 9.037532 10.274644 8.174787 -2562 0.055838 0.061268 0.037298 0.038428 9.527145 6.460979 9.953619 8.383513 -2563 0.157206 0.113087 0.089095 0.052204 10.127722 10.974474 18.411975 16.517257 -2564 0.063132 0.048503 0.055940 0.050526 6.944999 6.681023 7.153545 7.012838 -2565 0.092496 0.090673 0.041141 0.028581 18.281594 17.085525 18.982954 19.268391 -2566 0.058514 0.081750 0.049975 0.052922 10.190939 8.215818 19.567005 15.473622 -2567 0.069831 0.064603 0.055840 0.048824 8.680919 6.955447 13.853541 10.884908 -2568 0.050929 0.051044 0.025695 0.028775 12.782062 8.610084 13.657419 9.344457 -2569 0.123182 0.091398 0.075759 0.051194 10.564835 10.912299 16.758578 13.739486 -2570 0.111144 0.080293 0.063489 0.053044 14.416151 12.749817 19.058137 14.638625 -2571 0.065436 0.053942 0.025968 0.026180 14.058723 9.594906 12.891711 9.865456 -2572 0.048569 0.069916 0.035105 0.034338 8.805019 6.945191 11.699939 9.123270 -2573 0.053095 0.055249 0.023161 0.024135 5.119696 4.999493 7.873000 7.521836 -2574 0.064954 0.061988 0.038565 0.036857 10.971603 9.201801 10.735422 9.426020 -2575 0.085629 0.069084 0.065025 0.048145 6.101467 5.800124 10.653438 9.565687 -2576 0.045651 0.041896 0.033968 0.026077 11.695126 8.064914 10.085988 6.423891 -2577 0.065736 0.046603 0.029363 0.021138 7.785353 6.815983 14.818588 12.073316 -2578 0.097132 0.081943 0.048441 0.033505 12.137055 12.703623 16.309314 13.702945 -2579 0.049264 0.042122 0.026971 0.021483 8.084716 6.795524 12.061405 9.369493 -2580 0.053746 0.045290 0.025808 0.026530 7.067336 8.246056 7.996999 10.257386 -2581 0.097458 0.086242 0.063050 0.054580 9.995771 9.897731 13.411114 11.050956 -2582 0.074171 0.058824 0.045294 0.037412 10.189892 14.623245 15.035637 15.611463 -2583 0.039728 0.033099 0.029998 0.021925 8.642986 6.396765 12.344328 9.223583 -2584 0.077715 0.069358 0.058960 0.062294 10.737833 8.716615 18.303043 12.310887 -2585 0.053673 0.047833 0.043974 0.040399 9.608007 6.391481 14.782596 12.136948 -2586 0.054865 0.051767 0.040984 0.034978 11.392600 8.253759 11.192692 8.913093 -2587 0.054601 0.046589 0.021220 0.025188 10.593032 9.172473 13.829403 11.512205 -2588 0.055413 0.061656 0.052745 0.044912 11.343424 8.616890 14.096415 13.107274 -2589 0.081325 0.055217 0.040728 0.025720 6.781290 6.340871 6.795513 7.262086 -2590 0.046793 0.041887 0.029806 0.020265 8.716780 8.457966 13.565858 11.773774 -2591 0.075595 0.049959 0.058969 0.035047 10.469729 11.453314 10.248315 10.323303 -2592 0.068354 0.063181 0.053304 0.039332 9.792444 9.345814 10.116122 8.342586 -2593 0.039768 0.041931 0.018145 0.018918 7.973201 6.846066 8.024160 6.709190 -2594 0.056103 0.069068 0.050427 0.064873 13.098800 12.509092 12.066667 13.796827 -2595 0.040052 0.046237 0.027649 0.020281 9.814643 8.955592 14.652170 13.746034 -2596 0.088236 0.104118 0.090003 0.096437 10.333522 8.241289 13.909203 14.682243 -2597 0.099685 0.061580 0.082508 0.057606 11.808448 9.486680 14.035563 11.822466 -2598 0.065677 0.073140 0.031812 0.030635 6.175118 5.553286 11.410232 9.566993 -2599 0.085480 0.045332 0.077541 0.045313 13.352834 10.344589 14.595036 11.880566 -2600 0.084887 0.092660 0.047215 0.057250 12.239106 12.790171 16.979469 14.173552 -2601 0.069931 0.052549 0.037964 0.033345 6.712151 7.572956 8.173435 10.067471 -2602 0.042534 0.039553 0.029295 0.022796 8.461341 9.021162 6.972363 6.154706 -2603 0.067467 0.053289 0.042696 0.029058 9.718016 7.105940 11.578413 7.419502 -2604 0.071436 0.046149 0.034265 0.021912 6.441251 6.877697 12.850606 11.166876 -2605 0.057882 0.059457 0.027712 0.035259 7.760810 6.760492 13.703872 7.655612 -2606 0.054989 0.045392 0.040906 0.033444 10.509707 12.503237 22.230905 24.101474 -2607 0.128719 0.109573 0.084185 0.070014 13.869732 16.873845 22.107948 20.807680 -2608 0.120654 0.101339 0.075232 0.070674 10.558670 8.704152 13.009820 10.844896 -2609 0.087156 0.050444 0.057646 0.025559 8.877830 12.672686 10.066412 14.844149 -2610 0.104854 0.108425 0.064953 0.064752 10.475254 9.194847 14.226590 16.114465 -2611 0.078328 0.075715 0.061798 0.040499 13.143492 9.607075 16.044343 13.034853 -2612 0.067483 0.057400 0.042887 0.039214 10.138298 6.653230 14.406076 12.026819 -2613 0.083146 0.094213 0.072838 0.052910 10.169855 10.608898 11.241836 10.767288 -2614 0.060738 0.052036 0.033643 0.020945 8.323884 5.973956 11.169231 8.107094 -2615 0.082388 0.086483 0.072801 0.052140 9.267310 7.935410 14.134733 11.664405 -2616 0.050684 0.041693 0.059567 0.068858 10.819712 7.834860 10.088503 10.040929 -2617 0.105054 0.077697 0.092654 0.051066 8.222848 7.062940 9.148968 7.029318 -2618 0.082821 0.058343 0.065791 0.041146 10.488964 9.242959 12.892646 10.542181 -2619 0.061804 0.047431 0.051111 0.023118 11.826707 10.920925 20.552326 19.194790 -2620 0.090549 0.081294 0.084457 0.044821 13.530235 11.264559 17.847073 14.826690 -2621 0.056323 0.057898 0.054867 0.049057 9.694941 7.133696 17.566280 12.716236 -2622 0.093953 0.073127 0.070826 0.049535 9.402273 8.260291 16.823314 14.684739 -2623 0.076016 0.066509 0.081599 0.062731 11.668188 10.224092 12.400543 10.744820 -2624 0.085979 0.054278 0.076271 0.041944 9.332535 8.955424 12.741226 10.802920 -2625 0.085780 0.086698 0.051777 0.056533 11.528712 11.632155 15.471465 11.085184 -2626 0.085076 0.078274 0.093586 0.070502 7.824157 9.330430 13.502182 11.372821 -2627 0.068329 0.054254 0.025079 0.023499 14.073868 9.930278 19.257587 14.969838 -2628 0.128339 0.099743 0.064527 0.071783 15.132506 13.443406 12.698977 12.691600 -2629 0.053106 0.052312 0.031244 0.022502 6.767777 7.206896 8.553253 7.497020 -2630 0.089433 0.095338 0.044039 0.059445 10.007661 8.278480 13.231351 11.808469 -2631 0.085302 0.072673 0.071396 0.047376 10.688077 13.254282 11.697016 10.772989 -2632 0.060042 0.058790 0.048062 0.037133 11.227116 8.567339 15.183170 12.452826 -2633 0.065921 0.055933 0.064888 0.038889 10.400308 8.337192 15.933053 13.286857 -2634 0.053618 0.048065 0.022163 0.028428 8.660403 7.037476 11.011905 9.123116 -2635 0.057597 0.054634 0.029014 0.026824 9.105071 7.063080 9.530294 8.070095 -2636 0.053856 0.050992 0.031834 0.029299 10.330605 8.022115 14.977550 12.076121 -2637 0.099494 0.083063 0.057607 0.048368 8.227473 9.614442 13.283590 10.145257 -2638 0.085766 0.061717 0.067798 0.033993 9.984105 8.866413 12.474473 13.001778 -2639 0.035433 0.037943 0.016569 0.017094 10.434389 8.551661 10.839165 9.442493 -2640 0.064502 0.056784 0.042151 0.025780 7.174853 5.813037 7.688883 6.059558 -2641 0.099123 0.071590 0.046949 0.036520 11.362936 11.204533 11.368586 10.865764 -2642 0.095564 0.078443 0.058281 0.044626 14.299443 10.792718 15.412565 11.490590 -2643 0.094967 0.066075 0.053026 0.045662 9.136673 8.200951 11.116954 9.530852 -2644 0.067395 0.064783 0.042738 0.035794 12.648206 9.354670 19.808711 16.207909 -2645 0.139691 0.131445 0.098937 0.050067 11.866333 9.409201 22.653183 16.259054 -2646 0.080112 0.073374 0.026743 0.028215 10.189715 8.497927 12.890497 11.252825 -2647 0.054004 0.061748 0.048591 0.042762 12.002000 11.933149 11.298187 11.088352 -2648 0.053555 0.076787 0.047595 0.047980 12.442643 12.702333 12.023004 13.628755 -2649 0.053070 0.056268 0.043493 0.037990 20.205523 16.711600 15.712476 14.553819 -2650 0.061848 0.054028 0.040672 0.029704 9.045996 8.207999 8.727287 9.633408 -2651 0.077650 0.061157 0.040280 0.023017 8.442972 8.679940 11.923261 9.376351 -2652 0.079686 0.084409 0.062996 0.071082 7.370134 7.443778 10.693030 8.976295 -2653 0.078907 0.076514 0.029067 0.024564 7.755609 8.108751 11.223596 10.765733 -2654 0.128904 0.122534 0.074365 0.079834 9.325138 8.553406 14.894910 10.941537 -2655 0.075997 0.071222 0.067059 0.042399 14.643494 12.102921 15.120459 16.618663 -2656 0.077317 0.084150 0.069310 0.064836 8.477300 6.988807 11.252622 9.822072 -2657 0.086924 0.082253 0.056762 0.060173 6.668095 6.699088 10.134443 10.758108 -2658 0.106106 0.076252 0.082002 0.052926 10.512764 9.717568 12.033170 9.345922 -2659 0.069072 0.061844 0.030372 0.028065 10.396314 6.453470 10.294762 7.294993 -2660 0.038771 0.034843 0.023194 0.017551 7.449350 5.408884 10.964607 6.987038 -2661 0.068214 0.057714 0.042289 0.041019 8.359780 8.115433 10.998107 8.734331 -2662 0.059971 0.052824 0.046419 0.053635 11.489339 8.987045 15.319880 11.224172 -2663 0.049988 0.042009 0.025829 0.019738 5.600353 5.325595 8.724279 9.415795 -2664 0.062946 0.055486 0.049525 0.032136 6.028095 5.375917 9.218568 7.582981 -2665 0.076076 0.081345 0.030474 0.026142 12.144968 9.354208 12.893797 11.080491 -2666 0.107441 0.106083 0.046786 0.043766 10.265989 9.075731 17.226486 14.006597 -2667 0.047273 0.040473 0.038180 0.026052 9.876371 12.143843 10.298864 9.894418 -2668 0.082134 0.094259 0.053057 0.053395 12.584705 10.499526 12.470053 10.120321 -2669 0.059816 0.051853 0.041915 0.031259 9.100812 7.774395 16.914846 14.686466 -2670 0.099227 0.069086 0.071452 0.052059 11.315326 9.373657 12.644793 9.821515 -2671 0.036602 0.041137 0.021055 0.019175 11.369137 10.860489 18.668113 18.111789 -2672 0.072157 0.057274 0.041270 0.028797 7.464849 7.334141 10.799982 10.259829 -2673 0.059685 0.050669 0.047301 0.031156 7.979804 7.612324 11.200447 9.873165 -2674 0.041927 0.032195 0.018689 0.012063 7.111084 7.015711 11.452429 9.303436 -2675 0.061512 0.049438 0.018990 0.017397 7.399008 6.000698 8.723015 6.572187 -2676 0.049336 0.070141 0.064960 0.062465 15.029507 10.905660 18.211275 20.219243 -2677 0.038295 0.040692 0.018820 0.014475 5.450873 5.156233 8.889443 8.660820 -2678 0.103269 0.108782 0.080494 0.080685 7.875747 8.017291 14.193584 13.394637 -2679 0.085573 0.097803 0.093428 0.054659 19.839421 15.593202 15.857163 12.627511 -2680 0.079334 0.062473 0.079578 0.057301 8.926847 8.186882 13.915742 12.891319 -2681 0.067899 0.048945 0.072509 0.040902 8.686536 7.360947 10.000400 9.289403 -2682 0.068047 0.065688 0.048929 0.040657 7.970683 8.108613 14.793232 13.082267 -2683 0.114826 0.092450 0.052763 0.043040 15.310366 11.653698 12.248501 8.434755 -2684 0.047739 0.052163 0.028418 0.026899 8.411641 7.251925 9.651419 9.541143 -2685 0.070461 0.077559 0.047787 0.063246 13.257765 14.421633 16.258009 15.276003 -2686 0.120388 0.099517 0.061540 0.042692 9.050629 8.684778 13.322407 13.518995 -2687 0.063041 0.084084 0.031215 0.046944 8.478014 6.759974 10.287176 10.567320 -2688 0.083273 0.082479 0.032680 0.043206 10.921696 9.173016 11.468125 12.684803 -2689 0.081952 0.076070 0.041038 0.037711 10.703316 11.629275 16.976132 14.896207 -2690 0.075697 0.074578 0.052919 0.037430 13.957330 9.441169 25.111513 16.697765 -2691 0.100533 0.081584 0.050715 0.053584 8.500287 8.135479 10.272174 9.340879 -2692 0.061479 0.045324 0.027973 0.022236 9.285937 9.525935 17.563698 12.851294 -2693 0.041123 0.042231 0.026887 0.026978 11.364465 7.683127 15.850529 11.741688 -2694 0.119304 0.128412 0.068861 0.064518 10.629986 10.658220 15.305806 15.234739 -2695 0.063240 0.060809 0.031139 0.038902 8.112515 7.159109 11.050910 11.158546 -2696 0.051641 0.043381 0.023196 0.022896 5.258113 5.139578 8.029400 5.264524 -2697 0.124615 0.117794 0.051646 0.050794 7.280682 8.177984 12.902552 10.516161 -2698 0.094739 0.074120 0.059427 0.045303 8.924555 9.068294 11.259492 11.471842 -2699 0.073994 0.057257 0.035152 0.026903 8.205704 7.024703 10.598696 8.605091 -2700 0.051684 0.044825 0.032658 0.033784 10.978286 8.903170 14.256534 13.394685 -2701 0.079296 0.047152 0.039789 0.032367 8.841993 6.892758 14.497890 11.034456 -2702 0.125221 0.096617 0.063288 0.045925 10.128804 7.715084 14.579039 12.604985 -2703 0.090781 0.094579 0.052753 0.051320 13.963277 8.950271 11.438627 12.583400 -2704 0.065650 0.078015 0.043612 0.060038 7.228333 7.299973 9.701709 10.048822 -2705 0.081750 0.080508 0.045743 0.038506 16.133707 15.599745 20.765315 18.978760 -2706 0.040916 0.037015 0.017730 0.014055 7.358326 6.809813 9.754866 7.153843 -2707 0.125893 0.091223 0.106624 0.070089 8.202325 10.040391 16.662300 16.701902 -2708 0.064464 0.065234 0.031374 0.024055 11.441860 7.912961 15.145185 10.635892 -2709 0.039157 0.028124 0.036963 0.025495 10.303311 10.185744 13.555499 11.358117 -2710 0.068009 0.061646 0.037082 0.024345 11.874722 10.191298 8.564508 6.368079 -2711 0.147675 0.098531 0.087621 0.058250 10.895436 10.817981 17.554414 14.588261 -2712 0.051988 0.056592 0.030401 0.029087 8.453664 6.915938 7.584095 6.649420 -2713 0.082104 0.079013 0.080615 0.062612 15.438979 14.572261 21.750086 24.818049 -2714 0.090891 0.076264 0.026101 0.036492 6.888110 6.692959 17.262845 14.093487 -2715 0.043517 0.051574 0.020952 0.018378 8.081193 8.655472 8.826873 9.180336 -2716 0.060340 0.053811 0.032847 0.024442 7.275159 6.654053 12.254862 10.187343 -2717 0.089108 0.059977 0.047382 0.035032 15.593629 12.427287 23.735871 15.912167 -2718 0.100897 0.110511 0.045047 0.059674 10.974624 9.838843 15.859492 14.146741 -2719 0.087892 0.057043 0.033554 0.029715 8.964061 10.517771 9.949174 10.004871 -2720 0.112133 0.105104 0.053716 0.057461 8.161777 9.658526 14.129439 14.823714 -2721 0.060772 0.049232 0.059453 0.037988 9.128252 7.109212 12.838375 10.191336 -2722 0.089004 0.083887 0.052373 0.042872 11.999485 10.839478 17.249868 12.494775 -2723 0.104303 0.110825 0.079872 0.072901 14.106366 12.098121 16.935758 12.430951 -2724 0.046940 0.059582 0.029880 0.025098 9.297943 6.899820 16.507909 11.548448 -2725 0.064747 0.049059 0.045199 0.027490 8.492624 7.402233 9.503694 8.635768 -2726 0.068219 0.054638 0.047745 0.033020 10.872668 7.724783 17.139988 10.848682 -2727 0.062424 0.062763 0.051469 0.038838 10.033624 8.652872 10.377603 8.475155 -2728 0.050960 0.034612 0.033653 0.020500 8.995757 6.964981 11.646931 9.051471 -2729 0.149014 0.099825 0.054981 0.048629 11.459646 10.235469 15.021729 11.767632 -2730 0.051836 0.056255 0.028716 0.020541 6.879645 7.388914 8.993030 10.460352 -2731 0.058959 0.043395 0.034156 0.020718 11.788879 8.840669 13.481883 10.136081 -2732 0.079596 0.052924 0.025283 0.023676 11.086740 9.662973 8.714187 7.552174 -2733 0.060363 0.061424 0.040353 0.033341 8.128604 8.724664 13.095596 11.449420 -2734 0.072702 0.049748 0.031536 0.023483 6.397811 5.578837 8.553760 8.681988 -2735 0.131606 0.089731 0.073529 0.055619 12.920112 10.035042 20.155306 16.235577 -2736 0.070989 0.059547 0.052337 0.032573 12.188050 8.533743 13.657264 8.987686 -2737 0.050247 0.047929 0.031102 0.026054 9.194540 7.355859 10.146283 7.585921 -2738 0.074642 0.079114 0.041391 0.030985 7.607292 8.597776 11.017824 9.759698 -2739 0.046209 0.053880 0.024944 0.026481 7.228394 5.748159 13.054300 10.378492 -2740 0.068757 0.065050 0.062908 0.061642 12.855197 7.536659 19.604124 14.767313 -2741 0.088961 0.080303 0.066781 0.059134 15.713491 15.158824 15.822134 14.877346 -2742 0.068496 0.062305 0.037000 0.026042 6.953651 9.156854 9.133107 10.708500 -2743 0.061851 0.065082 0.029456 0.028946 6.935614 6.287759 12.931495 12.040388 -2744 0.059413 0.051628 0.040689 0.031956 9.392621 7.368901 14.765035 12.153245 -2745 0.086718 0.094791 0.048596 0.081689 10.260649 9.822363 15.503648 14.299347 -2746 0.067428 0.049002 0.036444 0.025605 9.241090 6.697408 11.301413 10.153974 -2747 0.072935 0.067318 0.037998 0.029708 10.546167 11.321658 10.659599 11.555700 -2748 0.058854 0.067551 0.062880 0.062287 9.227376 7.811967 18.766468 14.825505 -2749 0.066985 0.072409 0.032972 0.033821 8.211450 9.243860 9.887252 9.708757 -2750 0.102622 0.065192 0.047898 0.058686 7.987223 8.298113 12.971567 9.329450 -2751 0.075114 0.069166 0.038271 0.053930 13.360077 10.688307 17.879167 13.002191 -2752 0.065976 0.069808 0.031369 0.029338 13.432873 11.114039 14.358584 10.886397 -2753 0.052196 0.047276 0.023240 0.015845 6.892703 5.630143 8.962177 7.920311 -2754 0.087796 0.068587 0.047358 0.037400 10.469963 11.973369 16.577382 19.075191 -2755 0.053869 0.050742 0.031334 0.031702 8.244356 8.261261 14.836531 17.168361 -2756 0.100201 0.091006 0.092388 0.066793 14.680587 14.197961 14.710618 12.813866 -2757 0.114686 0.088378 0.071553 0.055785 8.242745 8.729572 11.275424 10.571321 -2758 0.069960 0.040090 0.049712 0.029114 8.472638 9.439124 8.641840 8.365263 -2759 0.075611 0.065216 0.051539 0.057930 11.483817 8.030894 11.318062 10.498413 -2760 0.074540 0.092083 0.057604 0.036023 8.814526 8.209626 13.234309 11.899946 -2761 0.056176 0.054832 0.035364 0.027072 10.650052 8.197847 10.412106 9.676782 -2762 0.076982 0.062492 0.082178 0.063071 10.616668 8.899337 9.075934 7.894704 -2763 0.063929 0.044536 0.023676 0.024412 7.378519 6.452212 11.083365 11.351754 -2764 0.037599 0.032009 0.019345 0.023105 11.915530 12.120614 8.105412 8.350622 -2765 0.036265 0.037548 0.039517 0.027450 8.079145 6.717413 9.311296 8.753771 -2766 0.104586 0.099293 0.068626 0.049153 13.342598 10.763354 12.886130 9.855016 -2767 0.120415 0.088141 0.123370 0.070671 11.230466 7.387800 15.336551 13.036229 -2768 0.088474 0.062069 0.059472 0.057448 8.090084 6.080084 13.715869 10.854715 -2769 0.072379 0.068199 0.042912 0.037232 7.130358 7.815834 15.706514 14.828370 -2770 0.117883 0.081060 0.077440 0.050180 13.561310 13.861135 14.315268 15.774502 -2771 0.070694 0.060471 0.025992 0.039444 11.236638 9.726366 13.318658 12.666736 -2772 0.080471 0.072480 0.043417 0.029508 11.771972 10.295693 13.074570 11.981595 -2773 0.098325 0.074840 0.038677 0.031618 10.699002 8.052345 9.557835 6.424800 -2774 0.074207 0.051468 0.040187 0.024639 9.248955 9.841194 17.595866 15.344440 -2775 0.091880 0.090656 0.056765 0.038076 15.442499 12.574917 13.796001 16.116055 -2776 0.082535 0.071646 0.039461 0.038580 12.644676 10.231241 12.076867 12.383158 -2777 0.048252 0.037479 0.027406 0.021230 7.798167 7.083482 12.926519 11.528650 -2778 0.042836 0.047110 0.023886 0.019351 14.123856 9.898391 12.231677 10.942268 -2779 0.079753 0.047672 0.041089 0.028899 9.168316 7.060093 12.692364 11.136717 -2780 0.062220 0.044443 0.050174 0.033926 9.523348 8.108229 11.011499 9.328261 -2781 0.131921 0.099189 0.067823 0.082845 15.552470 12.184359 16.796284 13.900791 -2782 0.171015 0.110735 0.119495 0.104579 13.782453 11.214747 14.385138 13.435677 -2783 0.055625 0.036758 0.042207 0.029009 9.200739 7.765440 9.554636 7.675779 -2784 0.073024 0.065705 0.040181 0.028710 8.864563 8.652812 11.991533 11.285657 -2785 0.030776 0.035401 0.017914 0.023095 6.300056 6.732034 8.369864 7.688882 -2786 0.140837 0.088164 0.120556 0.068204 15.023415 12.609744 13.260265 13.700369 -2787 0.068096 0.048114 0.038116 0.023735 9.293112 7.264837 11.475612 10.305569 -2788 0.050533 0.044023 0.029082 0.020262 12.940172 12.610106 15.892803 11.725289 -2789 0.086283 0.098164 0.051194 0.052518 8.530045 8.033999 11.998813 11.270036 -2790 0.080188 0.088231 0.054768 0.043236 12.457779 8.307391 13.245519 10.092551 -2791 0.062829 0.066930 0.030748 0.021990 11.707538 8.652879 14.077968 10.034286 -2792 0.059108 0.046265 0.026897 0.020220 11.907426 9.025352 17.610287 13.158192 -2793 0.073830 0.069072 0.039937 0.034393 9.032635 7.830028 10.866989 10.310845 -2794 0.082944 0.055210 0.055412 0.027562 12.075014 11.289317 9.620136 9.315284 -2795 0.103345 0.088286 0.073709 0.068755 11.478131 9.835881 15.246049 14.656747 -2796 0.086754 0.058110 0.054209 0.031116 10.355601 8.947908 11.171440 9.202643 -2797 0.117171 0.124010 0.091719 0.062938 9.568272 7.794802 14.125591 13.100821 -2798 0.103635 0.066757 0.082804 0.049586 6.604871 6.264043 13.802287 12.202877 -2799 0.064910 0.053567 0.046535 0.030485 15.774732 10.146871 13.768176 9.724925 -2800 0.083264 0.066452 0.036330 0.025569 5.743899 6.537289 7.477991 9.648975 -2801 0.074584 0.059125 0.044272 0.039942 9.781672 8.170682 14.825265 11.731941 -2802 0.076241 0.063417 0.049115 0.049752 5.609926 4.382627 9.108501 7.213688 -2803 0.042804 0.048980 0.021585 0.028936 6.069672 4.040216 9.445783 6.470419 -2804 0.097456 0.079442 0.076303 0.061108 7.756751 8.828889 14.619555 12.551798 -2805 0.093564 0.057019 0.060560 0.035910 15.921355 9.560950 15.355057 13.898821 -2806 0.081776 0.093561 0.046437 0.045003 8.920977 10.184497 11.732885 11.196625 -2807 0.063337 0.046702 0.042416 0.019145 7.445782 6.089061 9.895553 8.229123 -2808 0.075526 0.067761 0.053204 0.074740 9.110385 7.941713 9.840792 8.180644 -2809 0.184495 0.154211 0.095358 0.068950 10.390362 10.690742 17.485017 15.620242 -2810 0.128068 0.104493 0.085734 0.065661 10.470941 9.671397 16.310923 14.250752 -2811 0.238249 0.274469 0.202594 0.169384 11.629551 10.558251 17.320029 19.064960 -2812 0.103111 0.066553 0.060929 0.036325 16.808138 12.019451 16.002008 15.680583 -2813 0.096393 0.090113 0.038106 0.049227 4.220768 4.719189 8.663500 8.401277 -2814 0.050068 0.042417 0.033700 0.021839 9.501227 9.492164 8.543529 9.549172 -2815 0.099266 0.067990 0.090680 0.102183 9.845419 10.538460 16.203280 13.786429 -2816 0.067636 0.057103 0.029763 0.035130 9.325652 8.160832 10.380914 8.470229 -2817 0.039178 0.046424 0.032967 0.031007 5.450118 4.965829 6.524869 7.424450 -2818 0.092479 0.064092 0.056003 0.048899 10.862040 8.697128 11.603062 9.746065 -2819 0.084356 0.078513 0.085137 0.063921 10.686849 10.435896 13.182979 13.224312 -2820 0.049143 0.031521 0.023129 0.015597 6.515195 5.844364 10.629386 7.297903 -2821 0.044860 0.044518 0.039266 0.041133 10.283581 9.074977 13.702223 9.790795 -2822 0.090087 0.079341 0.059407 0.047415 20.915166 16.420162 29.445305 19.553272 -2823 0.063875 0.072267 0.076278 0.059948 11.408432 10.105807 15.936806 15.968518 -2824 0.040185 0.030347 0.029736 0.022902 9.059979 8.287937 6.840476 7.306027 -2825 0.120461 0.081306 0.068595 0.055706 10.548842 8.485538 15.115534 11.807892 -2826 0.080793 0.066987 0.032261 0.029349 12.979013 8.952608 15.223909 8.214863 -2827 0.106303 0.077472 0.099449 0.077399 12.295322 12.413236 15.956278 15.389802 -2828 0.082183 0.077932 0.062973 0.041371 8.900740 7.214843 10.493490 10.852958 -2829 0.103460 0.078271 0.038035 0.043056 9.070877 8.268761 13.883133 11.536681 -2830 0.049610 0.041869 0.035933 0.019491 9.130246 8.126054 11.234455 9.413773 -2831 0.062292 0.046806 0.037991 0.034492 7.268575 6.476375 9.480792 7.393242 -2832 0.102487 0.089204 0.050161 0.038372 12.617597 12.344996 17.329117 16.561144 -2833 0.089485 0.069625 0.045875 0.044462 9.327217 9.274168 14.202233 15.254405 -2834 0.090507 0.093320 0.098405 0.089468 13.563278 8.679391 23.320765 16.093110 -2835 0.066016 0.064823 0.039254 0.046742 7.701107 8.748016 11.725356 9.248730 -2836 0.062946 0.040944 0.035738 0.028367 8.702505 8.212938 12.174036 15.430743 -2837 0.117121 0.091081 0.049940 0.045389 8.771126 8.517657 14.769688 12.507917 -2838 0.073282 0.049454 0.051464 0.041501 7.545405 7.281275 11.885266 10.451062 -2839 0.038433 0.029471 0.017578 0.017068 6.296099 5.241008 7.218551 5.031746 -2840 0.072947 0.067002 0.055457 0.053605 8.410806 7.596289 12.445437 10.482849 -2841 0.068413 0.060169 0.034541 0.026944 5.649584 5.574374 7.103849 9.219665 -2842 0.069989 0.065238 0.053722 0.032657 11.359882 11.185986 13.810160 12.704722 -2843 0.109366 0.108192 0.068681 0.080043 12.048860 11.334261 18.510179 16.175021 -2844 0.041174 0.039813 0.035451 0.030927 7.531970 6.372341 8.917310 8.574217 -2845 0.054010 0.060108 0.020995 0.019535 6.431778 6.400784 8.860297 9.321072 -2846 0.072301 0.067232 0.055387 0.036520 15.878277 13.708658 14.948593 15.432931 -2847 0.100258 0.088700 0.087680 0.067127 15.423292 13.278150 16.872898 14.858786 -2848 0.080781 0.079419 0.029779 0.029500 11.939074 8.903683 12.031114 9.989241 -2849 0.111438 0.105256 0.125477 0.120657 10.704930 13.259146 15.078979 13.646791 -2850 0.086302 0.075557 0.031289 0.031345 7.240189 6.818373 12.735775 12.118343 -2851 0.072210 0.069988 0.079638 0.074643 8.353622 8.255089 14.012623 15.890014 -2852 0.078997 0.064581 0.043795 0.046561 8.199865 6.828805 9.794463 9.847136 -2853 0.105052 0.061574 0.061192 0.058224 9.512302 7.375874 15.604367 11.248578 -2854 0.083337 0.073424 0.079363 0.058437 7.360912 6.334042 8.851533 11.524761 -2855 0.091960 0.075890 0.040322 0.040502 5.520855 6.157791 10.286391 9.692386 -2856 0.075758 0.060928 0.084406 0.046778 7.763601 6.845546 15.105261 11.650529 -2857 0.046613 0.045131 0.027004 0.029413 7.127333 6.422042 10.246035 9.592150 -2858 0.076782 0.058519 0.057178 0.040447 7.037112 7.441441 11.489220 13.798593 -2859 0.056382 0.056386 0.039140 0.037687 9.874207 7.626133 15.502398 14.500395 -2860 0.103786 0.116450 0.090330 0.078413 10.863433 8.574701 12.448933 13.853802 -2861 0.053235 0.050405 0.018802 0.019822 5.863126 6.007806 11.359410 9.951717 -2862 0.127038 0.079705 0.065555 0.041427 11.887450 7.318201 16.876064 12.050191 -2863 0.048894 0.052442 0.019428 0.025383 7.213330 5.943772 9.423453 9.981923 -2864 0.059485 0.045326 0.040474 0.026050 12.223621 8.879709 12.102288 8.580419 -2865 0.073897 0.062783 0.036079 0.028669 13.694780 13.821826 12.879855 13.395613 -2866 0.063846 0.058951 0.029509 0.026239 8.955878 7.416991 12.496077 11.850388 -2867 0.111853 0.078798 0.083275 0.057581 12.112208 14.638270 13.758212 13.178727 -2868 0.076962 0.067371 0.038581 0.029050 11.455770 9.818777 13.639985 11.725510 -2869 0.109396 0.107992 0.072635 0.064085 12.131571 10.450440 14.248989 12.721893 -2870 0.082779 0.068127 0.041988 0.028090 9.987012 7.733500 16.167108 15.010442 -2871 0.068374 0.059801 0.035747 0.026700 12.019268 8.906283 13.669190 11.237922 -2872 0.115445 0.100562 0.073944 0.071873 11.336858 7.250573 11.761766 7.382057 -2873 0.069811 0.048705 0.064268 0.039032 12.398178 9.859146 20.066069 17.118813 -2874 0.048961 0.064274 0.035095 0.034422 6.129477 5.091466 8.629618 7.439585 -2875 0.090819 0.054241 0.074933 0.046154 8.683061 6.227380 12.470422 10.539550 -2876 0.073005 0.065913 0.038743 0.037309 9.690691 8.188154 13.286528 11.464887 -2877 0.113076 0.056604 0.062847 0.034865 9.059863 8.646591 17.110918 16.604972 -2878 0.056284 0.045230 0.055057 0.046672 9.177088 8.422116 11.152212 11.267621 -2879 0.076865 0.057939 0.047565 0.032135 8.061715 8.887264 16.558800 14.643122 -2880 0.060718 0.058945 0.033736 0.031077 11.398393 11.515056 13.752758 12.233651 -2881 0.085056 0.072008 0.037265 0.038189 11.571054 9.540426 15.007936 12.817989 -2882 0.138819 0.101605 0.109902 0.064821 9.961226 6.767691 9.595319 8.761001 -2883 0.075834 0.052129 0.053807 0.055278 6.818351 6.531684 11.551685 10.648135 -2884 0.072449 0.071103 0.042454 0.035100 9.414828 11.006518 15.690028 16.134825 -2885 0.090226 0.065616 0.072920 0.060048 14.534181 9.891841 14.754128 8.837096 -2886 0.134193 0.132380 0.075197 0.057870 6.518430 5.321025 7.751718 6.210648 -2887 0.052933 0.052873 0.047371 0.044610 10.649493 8.000844 16.590173 13.679850 -2888 0.034886 0.039699 0.039322 0.043081 11.975083 10.220427 13.148515 11.803029 -2889 0.043286 0.049224 0.022543 0.016814 8.618451 6.564431 6.382340 5.214092 -2890 0.069375 0.066366 0.052373 0.041523 8.452258 6.077090 13.291562 11.760187 -2891 0.068418 0.070693 0.052644 0.045460 5.959947 6.230020 6.952325 8.098111 -2892 0.100483 0.071941 0.074553 0.046428 10.182190 9.235563 11.189307 10.475078 -2893 0.077411 0.076893 0.052703 0.032609 13.046388 18.184004 13.304293 19.997145 -2894 0.093638 0.055619 0.060605 0.038920 8.664882 7.650863 9.596902 9.295772 -2895 0.044340 0.048869 0.021765 0.021112 5.794968 4.483409 7.543273 5.632000 -2896 0.086377 0.063034 0.095059 0.058366 7.601050 6.946791 10.836848 9.497372 -2897 0.088980 0.058310 0.046862 0.036644 7.859044 7.152147 8.243895 5.317043 -2898 0.069827 0.058490 0.048347 0.041895 10.375799 8.605510 13.220532 12.395049 -2899 0.049902 0.046995 0.030191 0.028277 10.609434 10.347414 14.652912 11.969495 -2900 0.064208 0.042232 0.044960 0.031096 5.779765 4.122898 10.235398 6.948183 -2901 0.057717 0.038772 0.040496 0.033253 9.958176 9.630619 10.734384 11.230788 -2902 0.135626 0.084939 0.093667 0.074201 9.641982 8.450850 11.319938 11.010958 -2903 0.047774 0.039067 0.053236 0.043083 6.714226 7.210567 8.243136 8.193114 -2904 0.052709 0.052561 0.040822 0.029670 10.557911 7.662581 10.056660 7.798767 -2905 0.083665 0.068589 0.026540 0.027298 7.715457 7.628457 10.297188 10.011322 -2906 0.063426 0.050049 0.034666 0.020888 10.986874 10.842535 11.452637 11.026306 -2907 0.055427 0.049596 0.025113 0.025938 11.104124 10.380722 15.576882 13.979525 -2908 0.091820 0.081951 0.069006 0.045419 15.594419 12.073570 12.538046 10.592771 -2909 0.112556 0.111167 0.064089 0.062849 10.068315 8.831319 17.711254 17.249757 -2910 0.066438 0.049700 0.029766 0.024447 8.726024 7.633196 8.636364 7.598938 -2911 0.059576 0.058309 0.029380 0.030183 10.676312 7.930802 14.625154 15.027484 -2912 0.092618 0.092201 0.048806 0.043422 17.800833 12.288101 20.030644 14.341643 -2913 0.090413 0.046874 0.043865 0.020959 9.592792 7.792814 12.700940 10.545340 -2914 0.067342 0.082879 0.044627 0.039525 10.047260 8.515789 14.083905 14.111516 -2915 0.063373 0.073497 0.039972 0.034274 10.857595 7.919788 16.997275 12.031403 -2916 0.059160 0.046074 0.033930 0.030347 7.513510 7.922783 12.660050 9.532150 -2917 0.108267 0.094360 0.077101 0.049268 11.844897 14.888956 18.117824 19.849301 -2918 0.078765 0.060060 0.041968 0.023746 8.786495 7.374693 9.285161 9.839036 -2919 0.058786 0.051421 0.040869 0.028490 8.608096 8.543579 13.475965 9.283108 -2920 0.098737 0.075174 0.074898 0.039693 9.782311 11.796038 19.054587 14.640876 -2921 0.071308 0.071827 0.027990 0.026574 8.826647 5.257866 12.864931 10.352702 -2922 0.060372 0.037079 0.038622 0.026303 12.581229 10.563088 19.614432 15.889041 -2923 0.096412 0.071317 0.074108 0.073436 10.683231 8.615671 13.988037 13.529414 -2924 0.035426 0.041913 0.018070 0.018813 6.893389 7.169756 7.779178 8.482494 -2925 0.063869 0.061161 0.039363 0.038970 7.880723 6.974166 11.096268 10.490459 -2926 0.076732 0.044171 0.034896 0.023192 9.222645 6.962757 13.052488 14.162946 -2927 0.080440 0.058184 0.038481 0.030432 8.117874 6.794002 9.903123 8.517711 -2928 0.062423 0.064827 0.028948 0.025495 6.392930 5.681859 10.472781 9.297965 -2929 0.109309 0.098928 0.090225 0.066840 11.925252 10.421034 17.155365 13.753111 -2930 0.064387 0.047769 0.040169 0.028079 8.113383 7.719734 13.266540 11.320843 -2931 0.063610 0.069698 0.042829 0.035532 7.328345 5.531170 10.541084 8.395756 -2932 0.076160 0.073401 0.051543 0.053007 12.160537 13.467480 15.111712 14.907903 -2933 0.066474 0.061170 0.064235 0.053091 14.826231 10.335755 15.139390 15.234315 -2934 0.082052 0.066352 0.044572 0.033274 12.036800 12.901374 12.965182 14.330741 -2935 0.060577 0.050911 0.027153 0.027116 10.634197 8.158443 10.722591 8.169962 -2936 0.053807 0.051434 0.039053 0.029616 7.899108 7.163149 12.461524 13.835169 -2937 0.065523 0.057941 0.032119 0.030648 9.648938 9.857916 11.020739 10.133726 -2938 0.076836 0.072700 0.039275 0.028868 5.007947 6.430578 6.916568 6.609730 -2939 0.110353 0.073507 0.048862 0.039807 11.891290 12.081960 11.679116 15.006388 -2940 0.063107 0.068130 0.027703 0.027889 11.730219 11.099603 13.039665 10.522584 -2941 0.061387 0.038286 0.055183 0.030010 10.256676 6.269729 9.587736 7.350491 -2942 0.053053 0.039807 0.048154 0.025726 8.906489 6.859235 9.521970 9.169548 -2943 0.060016 0.068137 0.040824 0.040465 10.009632 11.097030 13.074376 12.055935 -2944 0.065309 0.037703 0.057591 0.037650 12.042035 10.826236 15.641362 12.650017 -2945 0.091503 0.089893 0.047899 0.035880 10.604003 9.200936 11.823709 10.693195 -2946 0.044787 0.036840 0.033426 0.031008 9.725972 7.158926 16.420555 10.652192 -2947 0.090299 0.091475 0.049793 0.037475 8.735681 7.319299 11.678568 9.111881 -2948 0.107519 0.095651 0.052166 0.051085 12.692551 10.709708 16.087795 13.849422 -2949 0.087240 0.061357 0.056617 0.034425 7.820058 5.165423 11.810305 10.878622 -2950 0.086789 0.085540 0.065775 0.047028 11.002587 8.019483 11.243697 9.851813 -2951 0.107223 0.092060 0.047724 0.034966 6.777967 6.176011 10.231118 8.896666 -2952 0.097114 0.085219 0.055822 0.054848 14.509129 12.948413 15.991280 13.424630 -2953 0.098469 0.079014 0.052207 0.036181 10.875871 7.690764 11.600416 9.111022 -2954 0.086937 0.089215 0.052921 0.040703 11.062255 10.147105 18.160112 15.185694 -2955 0.116003 0.084066 0.069518 0.037344 12.886537 10.876315 17.820373 16.790092 -2956 0.085718 0.073302 0.060934 0.059504 10.491693 9.053140 9.942209 9.676810 -2957 0.056376 0.044083 0.026887 0.019603 13.282526 10.135650 10.334630 7.222769 -2958 0.052228 0.047860 0.031218 0.019688 11.319921 9.663520 17.230727 13.489602 -2959 0.119055 0.098176 0.052221 0.044394 11.167568 9.636479 14.122274 11.505174 -2960 0.077837 0.081886 0.041204 0.039045 12.183974 11.353055 14.954526 14.289097 -2961 0.061004 0.060514 0.039538 0.033767 7.137081 5.856686 10.623254 6.673979 -2962 0.082651 0.067844 0.043390 0.064359 11.491173 9.624166 14.776388 13.093259 -2963 0.115509 0.089590 0.077175 0.066589 14.127631 12.399873 15.369312 14.240214 -2964 0.062798 0.061183 0.032962 0.026717 9.216238 6.140953 13.887522 9.477686 -2965 0.067641 0.067458 0.044824 0.047591 9.957098 9.619450 16.941981 18.744950 -2966 0.058781 0.069492 0.039879 0.038000 10.696557 11.380836 9.317876 9.209641 -2967 0.058748 0.047235 0.052933 0.060964 13.644559 10.450815 17.506811 13.604454 -2968 0.038038 0.032348 0.023708 0.015033 6.991076 6.155791 8.663708 7.370111 -2969 0.087124 0.123506 0.072307 0.073029 11.512951 11.895458 19.022474 14.914142 -2970 0.047485 0.046656 0.031527 0.029566 8.132101 7.044210 7.838029 7.355702 -2971 0.049946 0.062706 0.030056 0.028899 8.413704 6.331020 13.577008 11.688726 -2972 0.102041 0.081689 0.069701 0.059516 10.971485 9.943720 15.614078 11.706020 -2973 0.052132 0.050955 0.038158 0.034402 10.149469 9.119738 15.552617 12.638769 -2974 0.077227 0.060797 0.038220 0.032632 10.897718 9.376355 10.617819 10.304304 -2975 0.125719 0.110667 0.069867 0.057380 9.342566 6.180340 13.449937 8.965176 -2976 0.032256 0.033315 0.024073 0.017188 4.560177 3.742892 9.417880 7.381721 -2977 0.079881 0.091423 0.041881 0.043918 14.068474 12.081674 15.865015 12.447370 -2978 0.081138 0.074416 0.033714 0.046440 17.834669 11.758486 16.532506 12.420209 -2979 0.078287 0.063071 0.049372 0.036381 7.822744 6.892300 6.317582 6.593276 -2980 0.080284 0.045764 0.039218 0.017986 7.540335 6.143263 9.302474 10.289876 -2981 0.120798 0.079489 0.084475 0.064362 17.528543 10.969076 22.764292 15.649779 -2982 0.069707 0.052293 0.029113 0.021903 7.662153 6.879854 7.144201 7.361245 -2983 0.098119 0.076349 0.076866 0.057643 7.962162 8.317278 11.026326 8.414902 -2984 0.111978 0.084446 0.039822 0.029048 12.196750 14.387506 12.048016 13.041722 -2985 0.083142 0.085117 0.033721 0.053590 8.928592 10.241825 10.851350 13.126348 -2986 0.048427 0.047709 0.033790 0.028465 8.246146 5.548875 9.720522 6.598644 -2987 0.100551 0.073041 0.042369 0.037804 19.265103 13.503476 18.096464 13.521333 -2988 0.054974 0.062554 0.050519 0.040460 9.681877 10.095374 11.793221 10.416200 -2989 0.073120 0.067017 0.031252 0.035050 11.669054 9.609673 14.941656 16.224165 -2990 0.050905 0.058357 0.063135 0.053273 9.876455 7.137881 17.731471 11.528253 -2991 0.075293 0.063905 0.056368 0.051276 9.015647 9.220285 10.617861 8.851787 -2992 0.085459 0.078634 0.044997 0.033962 9.406961 7.691530 9.851022 8.583476 -2993 0.080773 0.064125 0.051097 0.040183 9.255409 7.855837 14.125507 11.458810 -2994 0.112740 0.101538 0.060560 0.053407 11.460482 11.529656 13.286503 13.017042 -2995 0.088376 0.081334 0.075757 0.072327 10.705592 12.216766 15.103142 17.383786 -2996 0.084204 0.083378 0.043758 0.049950 11.489491 11.311966 15.597892 11.817630 -2997 0.118506 0.090086 0.058949 0.053474 11.764242 10.844219 17.777600 15.732540 -2998 0.141022 0.097074 0.115525 0.074677 9.044171 8.073097 14.239614 9.940778 -2999 0.067596 0.039327 0.036550 0.033533 7.575833 5.942153 7.957053 7.453218 -3000 0.128766 0.080464 0.097248 0.056140 13.812672 13.552862 20.456400 14.900722 -3001 0.082464 0.071307 0.044398 0.037693 12.890545 9.446896 14.613324 12.078349 -3002 0.084358 0.070003 0.024065 0.023518 6.709533 7.411771 9.876008 10.066996 -3003 0.059566 0.044846 0.025612 0.020168 8.468735 4.859745 12.188316 8.105986 -3004 0.065423 0.057921 0.035869 0.040443 8.208329 7.314689 12.532751 11.648184 -3005 0.069855 0.070492 0.031223 0.031142 8.380244 7.046550 11.203679 9.919238 -3006 0.048645 0.041883 0.024093 0.030455 8.540114 6.936804 12.422315 13.970778 -3007 0.073708 0.072051 0.035696 0.025396 7.934400 8.007004 10.036599 9.045157 -3008 0.087119 0.054508 0.048203 0.043459 9.435068 6.794260 11.057430 9.051124 -3009 0.072249 0.057956 0.017578 0.013151 11.568872 10.299940 14.341145 11.195027 -3010 0.076396 0.062634 0.059773 0.049852 8.113465 7.585131 11.689723 11.612780 -3011 0.090073 0.084037 0.085155 0.060180 7.891464 6.336261 16.582539 14.160465 -3012 0.067260 0.052139 0.055454 0.033926 11.466167 9.893000 12.914110 14.128290 -3013 0.069656 0.058500 0.056358 0.042577 9.968803 8.014471 9.532863 9.148843 -3014 0.055884 0.054668 0.042977 0.023041 7.226291 7.290963 8.270412 11.092070 -3015 0.171400 0.199088 0.147749 0.105991 23.816772 19.459901 26.099041 21.046280 -3016 0.145145 0.105553 0.060936 0.049364 10.608368 9.029285 13.705069 12.933301 -3017 0.053405 0.048262 0.030906 0.023010 9.898821 8.746028 19.718791 13.044905 -3018 0.090495 0.073705 0.033070 0.030613 16.136339 15.179621 15.937256 15.067095 -3019 0.059231 0.051804 0.021350 0.020036 12.324806 11.311913 14.498721 12.720885 -3020 0.078525 0.053654 0.039882 0.024599 11.963279 9.754581 15.859667 11.148096 -3021 0.066381 0.049586 0.064941 0.038329 10.478139 7.553420 7.448358 5.959463 -3022 0.052102 0.042545 0.030467 0.023123 7.114756 7.591577 8.277168 11.143578 -3023 0.051058 0.050172 0.027377 0.030291 9.746830 9.981363 12.249236 11.914318 -3024 0.057612 0.052007 0.034468 0.029321 13.740766 10.079461 14.111716 11.349434 -3025 0.104904 0.101187 0.047179 0.053191 7.562526 7.330502 13.587300 8.847126 -3026 0.101872 0.079705 0.049212 0.052195 12.493312 9.662908 14.755481 14.228629 -3027 0.062408 0.058779 0.039348 0.037554 5.188606 6.144458 8.104743 11.060258 -3028 0.067133 0.054884 0.033099 0.026635 9.140397 7.341067 11.939852 8.769158 -3029 0.069579 0.055805 0.029966 0.031023 8.825422 7.821455 9.292147 11.361396 -3030 0.048356 0.057204 0.021898 0.026040 10.061384 6.670672 9.788145 8.289779 -3031 0.049765 0.042371 0.028690 0.026832 9.864700 6.594196 9.383576 6.672571 -3032 0.082804 0.074702 0.063383 0.055217 13.624394 10.747896 17.504119 12.859151 -3033 0.082658 0.049428 0.034062 0.028802 5.978193 4.788686 7.001005 7.411895 -3034 0.045369 0.046712 0.030879 0.017906 7.890129 6.787887 7.135347 6.095863 -3035 0.061136 0.045527 0.061070 0.040710 5.151239 5.316584 9.855473 9.156739 -3036 0.061650 0.080089 0.054623 0.050377 11.753701 7.576646 14.342160 11.755707 -3037 0.050260 0.046627 0.037133 0.039964 9.344761 8.260636 10.266447 10.838066 -3038 0.069944 0.055558 0.012612 0.011237 9.679744 8.979055 10.132172 11.895185 -3039 0.060376 0.052466 0.038312 0.033423 5.458677 5.939222 7.289959 5.948656 -3040 0.125072 0.104321 0.070254 0.044258 8.322012 8.323834 15.446304 13.023716 -3041 0.066170 0.054602 0.026163 0.022771 7.494055 5.720024 7.715622 5.782014 -3042 0.098586 0.071573 0.039855 0.030234 5.774295 5.924441 6.949589 8.078700 -3043 0.098208 0.087044 0.053904 0.048841 10.961593 8.325280 15.630396 9.663322 -3044 0.057217 0.036502 0.039881 0.031200 7.192321 7.240870 10.440547 8.797885 -3045 0.045207 0.055614 0.026443 0.030824 7.615809 7.237875 8.468539 8.011302 -3046 0.095278 0.078545 0.058412 0.049549 9.742795 9.078364 10.946268 9.605630 -3047 0.064176 0.068305 0.027213 0.024235 12.727626 11.218303 15.469645 12.423463 -3048 0.062842 0.048445 0.017981 0.019467 9.743968 9.297572 8.771414 9.226764 -3049 0.099064 0.071447 0.039230 0.025254 15.761106 10.628159 14.547301 10.412906 -3050 0.052553 0.040126 0.022120 0.018278 10.661331 10.469309 10.586692 12.037428 -3051 0.048428 0.045248 0.030015 0.020285 10.370485 9.435263 13.120470 10.713780 -3052 0.105040 0.080942 0.054430 0.051660 9.601145 7.046871 10.889799 9.231661 -3053 0.097482 0.074042 0.054761 0.053074 9.696959 7.946633 13.334052 12.612434 -3054 0.048449 0.072022 0.033743 0.038174 10.906308 8.921461 9.812105 6.849903 -3055 0.085665 0.050151 0.065791 0.050231 12.062526 8.971872 13.344402 11.357990 -3056 0.092530 0.052030 0.075450 0.042455 9.818290 7.645014 11.389888 8.877709 -3057 0.053151 0.058882 0.026553 0.022706 10.085329 7.791589 10.579754 10.051849 -3058 0.069556 0.062672 0.060546 0.076755 9.737041 9.471325 9.164071 9.362967 -3059 0.069461 0.046648 0.052132 0.038591 9.713232 9.345643 16.045700 14.648731 -3060 0.044469 0.036387 0.019656 0.015499 11.298000 6.809605 9.695418 6.630358 -3061 0.087975 0.095755 0.069152 0.046515 6.979063 8.895585 22.272978 20.302958 -3062 0.063319 0.043647 0.056077 0.037903 9.718737 7.212833 11.374518 8.599578 -3063 0.092003 0.066934 0.039954 0.033696 8.134383 7.125863 13.463614 12.808171 -3064 0.075407 0.059526 0.044067 0.052108 11.157489 12.200809 12.999908 11.914613 -3065 0.073577 0.060246 0.064015 0.064263 9.480409 10.943809 12.883298 17.752591 -3066 0.112154 0.080950 0.105987 0.090770 16.288970 16.873297 17.742699 17.075152 -3067 0.056777 0.065256 0.034612 0.029271 10.503806 11.275064 14.891740 11.765731 -3068 0.072030 0.048566 0.032637 0.021089 7.697656 8.080671 13.542335 10.400325 -3069 0.049948 0.052260 0.031633 0.029042 10.739840 9.829950 14.041426 8.359591 -3070 0.061675 0.044039 0.055569 0.029215 14.951232 11.295385 14.073256 11.952772 -3071 0.072210 0.049903 0.035416 0.018052 9.259839 9.723073 12.493576 14.421793 -3072 0.038908 0.057869 0.034950 0.044984 12.984346 9.088567 16.935967 18.685374 -3073 0.060716 0.055013 0.037889 0.022069 7.204732 5.680712 12.760826 10.819499 -3074 0.100407 0.100896 0.138421 0.109196 14.740467 10.822210 15.581372 11.839178 -3075 0.151065 0.093426 0.123570 0.069403 11.696961 9.672081 15.484274 13.219661 -3076 0.090044 0.058941 0.046932 0.043974 12.295463 11.299879 10.019092 8.564789 -3077 0.075474 0.062186 0.064046 0.051653 9.024739 6.942649 9.305871 8.570600 -3078 0.085371 0.071877 0.057861 0.041726 9.907060 9.788545 15.985233 14.928840 -3079 0.083362 0.078860 0.035755 0.024323 11.548666 10.369729 12.414936 8.809726 -3080 0.094077 0.087790 0.072266 0.049251 9.778247 6.792013 9.796806 7.037659 -3081 0.072877 0.056456 0.035880 0.025110 5.912194 6.278314 7.501861 6.687623 -3082 0.051326 0.049342 0.022307 0.015702 6.720626 8.768853 7.727763 8.750743 -3083 0.123651 0.083518 0.075794 0.067711 9.224952 8.644442 16.493125 13.410602 -3084 0.092039 0.081886 0.031221 0.034272 7.622419 6.999214 12.492932 9.417277 -3085 0.052481 0.046498 0.046087 0.026865 5.182125 4.864103 7.926325 8.529259 -3086 0.056792 0.059666 0.057431 0.041493 9.644378 6.778613 16.337742 12.236768 -3087 0.058642 0.059635 0.042006 0.037704 10.831792 7.949410 7.827232 6.939247 -3088 0.081066 0.062419 0.071476 0.052443 15.002709 10.860742 16.069338 11.974239 -3089 0.088767 0.077369 0.069631 0.086457 10.346324 9.048489 16.347903 13.127049 -3090 0.064091 0.056998 0.035018 0.037401 8.385740 5.876006 10.931592 9.258387 -3091 0.063404 0.075224 0.048500 0.032341 9.343650 8.300659 17.332004 13.844987 -3092 0.087678 0.091105 0.039342 0.035840 12.513590 10.235819 14.887490 9.365846 -3093 0.068189 0.062998 0.054369 0.038786 8.154729 7.214340 13.877450 11.308462 -3094 0.044121 0.047130 0.036510 0.030894 9.026296 6.061051 7.348665 6.132204 -3095 0.079996 0.096275 0.038980 0.040472 16.623396 15.933277 14.580884 15.460901 -3096 0.061276 0.062288 0.023842 0.026543 8.239168 6.648370 6.722618 6.473041 -3097 0.091532 0.077794 0.063120 0.041789 9.314246 6.475845 15.455121 12.753105 -3098 0.060061 0.054889 0.041981 0.035891 7.430330 6.614843 11.239604 9.935973 -3099 0.067377 0.048430 0.031221 0.029696 10.738734 8.886192 9.494426 8.659057 -3100 0.154825 0.092752 0.076083 0.055486 14.869159 13.995283 15.375720 13.822374 -3101 0.153439 0.131434 0.098608 0.066375 11.172281 8.839280 18.865776 14.914805 -3102 0.075071 0.066186 0.040433 0.030192 10.014130 8.600446 12.824596 10.849060 -3103 0.050780 0.053029 0.027969 0.042322 12.575942 11.407360 13.520868 14.303550 -3104 0.054368 0.049003 0.020682 0.026244 8.692427 6.823192 8.628547 7.995600 -3105 0.103137 0.071297 0.023333 0.027150 8.430474 6.438350 11.412894 11.039676 -3106 0.096959 0.106685 0.057159 0.056622 10.453491 12.644763 12.724510 15.494291 -3107 0.078945 0.082662 0.075761 0.068825 5.771329 5.678077 10.843527 10.105503 -3108 0.093657 0.078632 0.042958 0.032397 9.953107 9.925811 12.673230 11.200313 -3109 0.052093 0.056289 0.047738 0.035889 12.564453 10.071026 19.944615 13.203066 -3110 0.083738 0.082137 0.042549 0.052538 11.495137 11.314465 12.943980 12.397429 -3111 0.050547 0.048666 0.033145 0.025055 9.224206 8.502013 12.504887 12.069803 -3112 0.100574 0.059033 0.084785 0.053836 11.421596 10.490944 13.298625 12.827888 -3113 0.051483 0.053474 0.033503 0.041918 12.473968 9.617146 17.779488 18.180797 -3114 0.075089 0.065543 0.033131 0.030366 7.306569 5.153642 14.155326 10.828727 -3115 0.034904 0.039170 0.032910 0.034228 7.669812 9.011101 7.714066 9.174871 -3116 0.075512 0.068884 0.040317 0.030646 5.939306 6.214001 12.315083 10.279213 -3117 0.046230 0.049895 0.036376 0.042659 8.431745 7.051857 13.532880 8.953029 -3118 0.073056 0.063911 0.038273 0.037125 10.277736 8.080263 11.487345 11.751854 -3119 0.105176 0.099508 0.071297 0.070421 11.457767 12.037805 18.844074 15.836721 -3120 0.067076 0.070708 0.035863 0.036376 7.409866 6.646266 10.404675 8.787343 -3121 0.140471 0.096418 0.082801 0.042198 13.855335 11.753122 16.042546 14.001068 -3122 0.077610 0.065950 0.042602 0.045648 9.580688 6.445302 13.783769 13.319900 -3123 0.061840 0.058009 0.035150 0.038916 9.996617 8.470831 12.599036 11.631430 -3124 0.074354 0.068861 0.040525 0.030800 11.014363 9.507324 15.075191 13.317081 -3125 0.101236 0.088071 0.076501 0.058538 9.557591 9.797531 13.582377 11.072188 -3126 0.061178 0.054361 0.046616 0.041598 8.222811 7.440964 9.029593 7.145030 -3127 0.060382 0.037091 0.030881 0.025706 10.948382 9.198133 12.427599 8.304057 -3128 0.062610 0.064634 0.049450 0.049859 7.678975 7.777965 11.187742 10.952705 -3129 0.052971 0.045574 0.040806 0.026626 6.507722 5.864208 13.984156 12.553692 -3130 0.078426 0.078215 0.071189 0.054141 11.202755 9.569974 13.130609 11.023279 -3131 0.062580 0.052934 0.036802 0.041346 7.649255 7.687547 9.266149 7.801823 -3132 0.066544 0.062310 0.029103 0.032891 11.110766 10.560017 12.248799 11.055859 -3133 0.081923 0.069538 0.066329 0.045535 15.056333 8.534825 15.295211 12.796560 -3134 0.062173 0.053585 0.036370 0.021321 11.208465 8.794959 15.081159 12.218408 -3135 0.116882 0.073795 0.134317 0.059183 12.185831 10.500404 13.170528 12.103235 -3136 0.072128 0.044717 0.060534 0.041612 10.418246 8.656023 14.215152 10.789020 -3137 0.057868 0.059219 0.038678 0.037445 11.901032 8.555398 19.701985 15.582576 -3138 0.078506 0.061782 0.072119 0.030762 11.231713 9.097147 14.482604 13.776617 -3139 0.087246 0.083181 0.049510 0.036280 14.528751 15.214362 13.803569 14.689780 -3140 0.104552 0.079372 0.075200 0.056023 18.305388 14.536242 26.499602 19.806713 -3141 0.129752 0.135269 0.092016 0.055809 11.673800 11.300937 13.544558 12.734204 -3142 0.101792 0.070880 0.078370 0.033859 11.089209 9.847353 14.837955 10.162513 -3143 0.124086 0.066751 0.092649 0.048046 15.232830 14.071275 13.385747 12.695130 -3144 0.059648 0.055013 0.058615 0.026893 6.416871 6.598872 12.252587 12.334172 -3145 0.048452 0.066142 0.036944 0.030274 10.476178 8.536046 12.354659 11.869047 -3146 0.088846 0.067536 0.056189 0.052803 8.482156 7.004456 9.689384 8.455654 -3147 0.053651 0.043944 0.041229 0.051768 7.277936 6.364380 10.026368 9.125432 -3148 0.057195 0.049962 0.036458 0.018684 8.174480 7.832795 8.266701 9.367928 -3149 0.109421 0.090697 0.089221 0.059977 9.634516 9.123946 11.363762 10.564306 -3150 0.081032 0.083148 0.071386 0.050881 9.752776 6.478283 13.390309 10.582643 -3151 0.035920 0.039831 0.012062 0.014578 7.176647 7.889467 10.740038 9.741943 -3152 0.087188 0.080550 0.051527 0.041674 11.656746 7.712132 17.760625 14.378511 -3153 0.083269 0.060979 0.035278 0.032897 15.673720 17.805951 17.472851 20.691522 -3154 0.079365 0.064537 0.037168 0.038162 9.793664 7.281458 11.361377 11.203471 -3155 0.105113 0.074711 0.045476 0.036316 8.775181 8.830225 13.496180 10.985712 -3156 0.073954 0.085516 0.065828 0.045635 9.625778 9.297299 15.278431 14.929795 -3157 0.051445 0.041814 0.066073 0.030113 8.697568 6.501573 9.968997 11.216928 -3158 0.049268 0.055034 0.033813 0.041236 10.619962 10.439393 13.423545 14.931737 -3159 0.076045 0.050873 0.040702 0.030653 7.707899 8.962105 11.081693 8.484595 -3160 0.081709 0.072703 0.042758 0.036373 8.521921 9.008632 20.449084 20.606766 -3161 0.076813 0.064501 0.040209 0.039058 9.394309 9.569753 11.679197 10.580432 -3162 0.051336 0.043939 0.047122 0.028321 9.390302 10.855796 12.137030 12.441350 -3163 0.093140 0.076188 0.062360 0.041606 10.433329 9.482736 18.111411 13.523424 -3164 0.069623 0.066408 0.073999 0.056192 11.847857 10.652107 11.002121 13.314801 -3165 0.058975 0.048452 0.029459 0.027044 7.689767 7.877992 11.641676 13.193983 -3166 0.070018 0.074745 0.060220 0.050050 10.402616 9.432308 13.846836 13.396804 -3167 0.069236 0.068953 0.031530 0.040528 7.299666 6.307740 7.704783 6.090400 -3168 0.092190 0.070670 0.073342 0.039982 11.881728 12.398108 17.247361 17.313449 -3169 0.098710 0.092650 0.102845 0.063623 19.874680 12.277536 15.392932 11.919142 -3170 0.083154 0.088302 0.048359 0.039016 10.694513 9.955225 13.375296 14.209214 -3171 0.092443 0.072261 0.044591 0.053813 8.569830 7.686957 13.457660 11.834480 -3172 0.064735 0.050129 0.025713 0.012879 9.696309 8.226801 12.885570 10.154907 -3173 0.090634 0.081341 0.079597 0.050875 9.185620 8.265894 12.495092 10.816505 -3174 0.038560 0.043107 0.014963 0.017669 12.309777 10.327239 14.270070 14.243840 -3175 0.066567 0.064318 0.046962 0.047689 8.440400 6.961093 9.858610 10.401210 -3176 0.100622 0.087485 0.093552 0.107071 12.273525 13.817901 18.641888 18.787893 -3177 0.067166 0.093696 0.040969 0.074454 13.284395 10.705554 13.560054 14.050261 -3178 0.071111 0.083520 0.107429 0.075676 10.797517 10.729603 15.479907 15.031868 -3179 0.038860 0.031879 0.014797 0.011610 4.336043 4.957382 8.108122 8.746249 -3180 0.069238 0.054699 0.034856 0.028828 6.316654 7.657755 10.916771 9.316965 -3181 0.064926 0.046394 0.028861 0.026894 4.481025 4.589867 10.283422 8.226979 -3182 0.071349 0.064318 0.030117 0.033046 13.286209 12.773337 15.560316 11.136993 -3183 0.072371 0.074679 0.036744 0.033346 8.388770 7.393420 11.129964 10.206247 -3184 0.057460 0.060488 0.035055 0.029656 5.578016 6.750274 8.598874 8.711698 -3185 0.064900 0.054733 0.046013 0.049647 13.088362 9.309905 11.318967 8.623595 -3186 0.099403 0.078722 0.056090 0.054448 15.656969 14.110776 11.758192 13.843040 -3187 0.084975 0.081924 0.047097 0.030992 9.549817 10.436005 15.328621 13.759024 -3188 0.048252 0.040720 0.027258 0.029717 7.179478 5.673307 9.711190 8.723645 -3189 0.086161 0.062479 0.042579 0.032746 5.830766 5.532080 5.252369 5.906559 -3190 0.096888 0.064121 0.119281 0.072183 11.007607 10.778265 12.001849 13.397949 -3191 0.096921 0.089930 0.052521 0.067334 10.792301 8.518916 13.697015 12.100322 -3192 0.123265 0.099595 0.061209 0.049895 8.493672 7.442579 13.742737 12.465461 -3193 0.085837 0.070542 0.033282 0.024476 7.933413 5.788135 11.843727 10.421924 -3194 0.130126 0.135340 0.102519 0.095823 5.229903 6.302353 10.093968 11.643044 -3195 0.066918 0.050869 0.040852 0.035528 15.888873 12.877246 17.248198 15.165121 -3196 0.043649 0.034834 0.035828 0.017388 7.984169 8.094626 11.707832 11.566862 -3197 0.088229 0.097848 0.045330 0.062145 10.539498 8.147773 11.839440 11.358684 -3198 0.070590 0.048054 0.031252 0.026842 7.679591 9.365082 11.659102 12.915274 -3199 0.080449 0.081075 0.056462 0.043140 10.579725 8.444359 15.262713 11.753578 -3200 0.045690 0.050714 0.031274 0.024419 10.775531 11.868761 13.717890 14.652870 -3201 0.039460 0.043001 0.026586 0.031687 6.692074 5.742552 7.774933 6.285661 -3202 0.108197 0.085176 0.086238 0.047066 12.442015 9.710829 10.608486 9.765460 -3203 0.087231 0.080772 0.039291 0.039285 7.376927 6.226558 12.626315 10.454736 -3204 0.107062 0.076987 0.121437 0.093362 10.573612 10.048793 17.253474 15.145801 -3205 0.065841 0.066400 0.042028 0.044985 8.659769 6.224993 12.710173 10.345835 -3206 0.109386 0.086958 0.032298 0.032367 8.326029 7.675303 8.930134 7.781875 -3207 0.079734 0.075393 0.051846 0.054805 13.534927 13.065997 12.711348 13.396441 -3208 0.126334 0.093271 0.088239 0.058538 14.912413 15.756999 15.370208 15.408301 -3209 0.063846 0.055298 0.024167 0.023045 9.996455 8.377767 12.346086 9.694719 -3210 0.041065 0.028358 0.025101 0.022980 7.645473 4.731435 10.852318 7.143397 -3211 0.093968 0.091449 0.078899 0.059547 11.077863 9.059521 13.319719 11.342072 -3212 0.048613 0.046313 0.032089 0.026495 8.398326 5.320422 11.632019 8.583974 -3213 0.106436 0.077617 0.060994 0.046223 11.523224 14.871668 12.587019 10.611760 -3214 0.060247 0.062467 0.038151 0.040006 14.172668 13.254074 17.921644 19.675385 -3215 0.062978 0.070324 0.051615 0.044212 9.666959 9.143693 13.476375 11.015776 -3216 0.108377 0.082292 0.063375 0.066712 9.226982 7.919154 12.985844 11.405800 -3217 0.049139 0.048727 0.030538 0.031758 7.522806 7.312667 11.025937 11.402682 -3218 0.055945 0.038595 0.027766 0.014884 18.702265 14.236929 11.566475 11.343567 -3219 0.119886 0.108490 0.050766 0.038938 12.103976 9.146081 14.682353 9.403360 -3220 0.085045 0.069938 0.112428 0.072195 15.543864 13.127651 20.098170 15.389083 -3221 0.107499 0.095684 0.060568 0.050377 9.821241 5.836624 19.126939 14.359086 -3222 0.086168 0.075684 0.085252 0.081563 10.225512 7.836603 9.336854 10.126793 -3223 0.076353 0.054614 0.076341 0.046047 6.950203 7.171331 11.637841 10.343769 -3224 0.045073 0.039495 0.021739 0.023135 5.185119 6.540301 8.279800 8.186607 -3225 0.058739 0.047180 0.026026 0.021071 14.043419 8.512261 8.926649 10.635835 -3226 0.049584 0.052244 0.035447 0.032730 9.918100 9.886516 13.109078 11.379963 -3227 0.084618 0.061229 0.056919 0.056134 9.080254 11.457917 11.517304 12.474703 -3228 0.089097 0.074412 0.042090 0.027334 9.782754 6.770452 18.780855 12.773319 -3229 0.068237 0.058286 0.035403 0.025682 11.104856 9.925283 12.443867 10.020366 -3230 0.147174 0.091559 0.068355 0.054354 8.631225 9.025876 11.030735 10.174826 -3231 0.043724 0.048355 0.029102 0.031137 8.708499 6.284276 12.713128 10.726575 -3232 0.163820 0.133029 0.109490 0.110860 9.816424 9.937463 16.468890 17.859788 -3233 0.086942 0.065241 0.049596 0.050429 10.855499 9.782255 13.604816 14.123525 -3234 0.055783 0.050839 0.031128 0.028024 11.048595 9.876211 10.879969 10.617587 -3235 0.055343 0.048996 0.033922 0.028192 10.488791 8.710372 10.985107 8.592296 -3236 0.118518 0.093465 0.063911 0.030436 5.232676 5.874719 7.033672 7.125255 -3237 0.076040 0.073787 0.067987 0.063100 16.933380 10.623975 16.779744 11.883929 -3238 0.049547 0.041642 0.034536 0.023950 10.359250 8.836149 12.248867 11.047928 -3239 0.051108 0.066014 0.021699 0.027773 6.898819 5.974061 10.343764 9.954579 -3240 0.050235 0.051131 0.018402 0.016735 10.323886 8.995752 9.335390 11.212779 -3241 0.064389 0.051822 0.044613 0.025982 7.348891 7.066620 8.662195 10.984200 -3242 0.058399 0.051918 0.052468 0.035440 7.265593 7.610889 7.874392 9.220108 -3243 0.064441 0.053605 0.040193 0.033147 9.410610 7.002888 13.480565 11.259543 -3244 0.096319 0.071066 0.042102 0.038341 9.463196 8.499438 13.527061 12.059186 -3245 0.059466 0.080121 0.037248 0.038651 8.009732 7.730722 9.405334 6.842529 -3246 0.066343 0.035273 0.038412 0.021144 6.653972 5.898841 5.919500 5.385788 -3247 0.074206 0.054661 0.043561 0.031120 8.308517 7.750119 8.376248 8.516011 -3248 0.050718 0.056569 0.033801 0.032320 12.111479 11.970384 14.855505 16.793755 -3249 0.065159 0.059568 0.035211 0.026167 9.951092 8.764577 10.176142 9.538888 -3250 0.075642 0.051480 0.040194 0.020377 9.769378 6.971924 10.544507 9.709784 -3251 0.062652 0.057002 0.043484 0.045465 10.338766 6.967730 12.561805 8.152410 -3252 0.054268 0.064466 0.026417 0.031696 12.455478 9.291083 13.704418 12.439723 -3253 0.158168 0.128767 0.086381 0.064243 11.523415 10.589398 10.101604 9.624554 -3254 0.069938 0.061318 0.040743 0.032037 10.786188 9.556606 11.908364 9.683219 -3255 0.102559 0.081059 0.075859 0.054377 8.985193 8.160480 8.795188 6.816003 -3256 0.041002 0.039031 0.021677 0.020479 6.753593 6.436558 8.498885 9.535031 -3257 0.079666 0.072671 0.075078 0.047659 14.838914 15.292314 16.977728 17.518850 -3258 0.059767 0.049076 0.017160 0.022244 6.728590 6.103222 7.307824 6.959196 -3259 0.052409 0.049962 0.057565 0.057352 11.296957 8.073923 19.943259 11.599682 -3260 0.049904 0.053591 0.023494 0.034130 8.871149 9.645873 11.654651 12.731667 -3261 0.041690 0.048035 0.028396 0.030893 7.704882 6.506862 7.765733 7.083207 -3262 0.080530 0.063645 0.036737 0.024639 8.152331 6.809858 9.840506 7.090598 -3263 0.059170 0.070605 0.035420 0.036626 7.913870 7.805032 14.884173 13.179290 -3264 0.052001 0.043344 0.027469 0.019972 11.756730 9.922149 10.243801 9.778376 -3265 0.096060 0.060529 0.035951 0.024491 10.723956 10.178857 11.435207 11.742373 -3266 0.050752 0.041398 0.022352 0.017146 8.358436 6.735094 15.224545 11.265700 -3267 0.077087 0.085684 0.044080 0.039575 9.232899 10.498532 9.601591 12.332091 -3268 0.119191 0.094304 0.064006 0.053474 10.231307 7.554138 15.928505 11.535889 -3269 0.072136 0.040957 0.038659 0.021599 8.369800 11.355244 13.931316 18.959508 -3270 0.052812 0.040339 0.044133 0.025506 8.169776 8.084818 12.930226 11.794405 -3271 0.122091 0.115196 0.066506 0.050358 13.998930 15.485809 14.328715 16.543344 -3272 0.063916 0.051497 0.027908 0.027759 8.999178 7.876335 16.233095 12.338495 -3273 0.053136 0.039151 0.014425 0.015184 12.570005 10.569651 11.356027 9.439939 -3274 0.039647 0.040239 0.037058 0.030614 10.417064 7.031072 11.076268 7.901746 -3275 0.074593 0.085432 0.049627 0.052263 14.162654 12.633901 14.410209 14.756823 -3276 0.103617 0.085826 0.070557 0.049611 10.124487 7.787270 20.455028 12.383106 -3277 0.102016 0.080707 0.068640 0.052016 16.396303 13.782534 21.581357 16.779877 -3278 0.029788 0.023869 0.014799 0.013896 8.069205 8.144851 8.010157 9.469457 -3279 0.052235 0.043693 0.017009 0.012045 7.399233 7.275812 7.353480 7.970471 -3280 0.101085 0.079910 0.076650 0.057561 7.436919 7.679207 7.915171 8.323375 -3281 0.063944 0.060539 0.033666 0.031415 9.599506 8.055025 10.966235 11.317683 -3282 0.068534 0.043810 0.052659 0.024224 8.617775 8.696564 11.422728 11.760296 -3283 0.072836 0.052579 0.037523 0.023175 8.601547 8.861631 11.337263 10.513414 -3284 0.078261 0.074080 0.051503 0.043056 8.804285 7.783558 11.647582 10.341391 -3285 0.069346 0.055286 0.029298 0.023671 6.328829 6.609840 8.674864 8.496716 -3286 0.116908 0.067648 0.055837 0.035381 17.404330 11.223475 12.006933 9.717920 -3287 0.084771 0.083736 0.046417 0.046403 13.644189 10.352601 13.258493 11.748383 -3288 0.068169 0.074394 0.058218 0.047547 9.688810 9.430013 13.425403 13.381628 -3289 0.057327 0.055871 0.039560 0.042014 10.638956 10.355659 13.075291 12.274324 -3290 0.087548 0.073841 0.067910 0.044703 8.721709 9.086270 12.391319 11.391015 -3291 0.100950 0.065662 0.038649 0.019945 8.950167 9.420328 7.306978 6.113902 -3292 0.126080 0.101717 0.067819 0.041777 12.611486 8.043505 9.790446 7.331683 -3293 0.044177 0.037666 0.037124 0.026416 10.019879 11.267148 13.592776 15.523950 -3294 0.053820 0.045157 0.029426 0.024543 8.173867 7.857535 10.301367 10.994657 -3295 0.053574 0.047563 0.033591 0.035135 10.104258 8.919016 12.378419 10.164772 -3296 0.115156 0.105036 0.072332 0.075006 10.607596 11.114884 14.306935 13.610871 -3297 0.057587 0.055818 0.035357 0.025991 9.964430 11.966561 12.274538 12.774567 -3298 0.090524 0.077724 0.043735 0.037713 10.266991 7.753554 11.852968 9.843809 -3299 0.109364 0.079512 0.071057 0.048206 10.818963 10.743611 10.971345 10.878343 -3300 0.081315 0.067172 0.048317 0.050059 9.520663 11.521722 12.746306 13.084803 -3301 0.102616 0.077737 0.044195 0.034200 8.399039 9.659717 12.358703 13.230327 -3302 0.081853 0.083396 0.047091 0.037075 10.759378 10.262215 17.030881 14.237307 -3303 0.074337 0.042750 0.056604 0.032799 9.428690 8.370868 9.664677 9.133993 -3304 0.090273 0.101437 0.049397 0.053182 14.833846 10.203045 14.048851 10.018390 -3305 0.080351 0.069997 0.048068 0.038940 12.700716 9.292109 11.220286 9.891696 -3306 0.056035 0.062533 0.044650 0.036354 7.107129 6.992771 15.414250 13.836702 -3307 0.106207 0.104643 0.068214 0.060534 8.262320 7.323073 9.502742 7.527855 -3308 0.088507 0.077477 0.038338 0.028105 7.977149 4.171102 8.061174 6.152417 -3309 0.058632 0.031606 0.041688 0.019696 6.004247 6.012470 12.343773 9.677010 -3310 0.110933 0.088445 0.067948 0.051817 10.532169 9.096080 12.289392 11.256869 -3311 0.038165 0.046554 0.029589 0.025282 9.570680 8.937907 13.499454 11.255385 -3312 0.093564 0.090538 0.080899 0.073877 6.489362 6.096566 9.419969 9.762771 -3313 0.062436 0.055038 0.048170 0.065601 10.397488 9.412510 10.512138 8.883404 -3314 0.051856 0.046290 0.025023 0.018528 10.504762 8.577554 13.060821 11.165782 -3315 0.083985 0.063623 0.052765 0.041919 9.411097 8.711258 9.169797 9.252979 -3316 0.088541 0.095606 0.071950 0.083450 11.162624 10.626626 14.567788 12.785563 -3317 0.038132 0.044038 0.013379 0.020048 7.735552 5.639695 9.818386 7.764030 -3318 0.129287 0.093964 0.059209 0.053357 10.467440 9.985696 13.838854 13.294825 -3319 0.128921 0.091309 0.070563 0.050670 17.707617 14.992054 17.461410 16.353242 -3320 0.046701 0.041439 0.031340 0.031504 9.054400 6.324337 13.442587 9.904352 -3321 0.045175 0.047357 0.027877 0.016992 8.089592 7.238885 10.047919 10.159573 -3322 0.072959 0.045808 0.047464 0.030240 9.623038 7.717860 11.131157 8.475709 -3323 0.082450 0.054613 0.110499 0.064611 11.586925 8.702605 16.787883 10.470933 -3324 0.096290 0.077602 0.053939 0.037963 10.627633 9.919986 12.681576 12.102044 -3325 0.075037 0.059042 0.036199 0.036220 9.510717 8.262025 11.809760 10.732808 -3326 0.090108 0.078553 0.075610 0.070169 14.125305 12.005666 10.484675 12.054640 -3327 0.065281 0.048254 0.034379 0.038737 6.491630 6.766332 10.421729 7.749210 -3328 0.102042 0.095466 0.108578 0.069449 8.147465 7.279379 15.471359 13.266125 -3329 0.070005 0.081331 0.049184 0.034150 9.924220 7.039871 10.248420 6.869254 -3330 0.082002 0.064136 0.036283 0.026377 9.153107 9.312470 11.333956 9.994679 -3331 0.076552 0.055974 0.065778 0.040646 8.727236 7.114147 8.592827 6.843686 -3332 0.084432 0.065581 0.060609 0.039805 10.689956 8.086742 16.023868 12.717967 -3333 0.121875 0.100565 0.095806 0.079905 10.439075 10.028653 9.353135 10.282893 -3334 0.037466 0.035977 0.021334 0.020863 7.849056 7.021969 9.207835 8.429070 -3335 0.050099 0.055144 0.028805 0.030811 7.720323 5.613999 7.136407 4.912245 -3336 0.067961 0.068127 0.029959 0.032395 11.204598 9.622649 15.327536 12.877638 -3337 0.088944 0.085897 0.028391 0.036489 8.671252 7.470638 11.235077 11.042562 -3338 0.076050 0.063603 0.055856 0.031870 7.364988 7.344568 9.688119 8.444956 -3339 0.061545 0.058267 0.025442 0.024884 10.156579 9.231896 12.602363 13.108216 -3340 0.118145 0.097134 0.084098 0.051809 12.783443 11.080396 13.383431 9.405037 -3341 0.098753 0.069062 0.057051 0.043213 8.672438 6.638181 13.068146 8.219730 -3342 0.068987 0.072483 0.091053 0.096883 13.921025 8.675794 15.957052 10.409297 -3343 0.071342 0.070792 0.037574 0.027835 8.289575 7.821120 12.607494 12.267424 -3344 0.048051 0.033216 0.031130 0.019271 6.479527 6.190057 8.853605 8.084102 -3345 0.059134 0.046265 0.026930 0.019960 6.235368 6.175381 7.899699 7.982957 -3346 0.111403 0.100815 0.107548 0.057376 8.374597 7.065742 10.060248 10.959081 -3347 0.092970 0.063657 0.047319 0.036414 9.688764 10.799833 12.460326 13.493730 -3348 0.059122 0.039495 0.027892 0.026169 6.772811 7.025151 10.049458 7.216411 -3349 0.088306 0.094723 0.084405 0.051218 11.740089 9.789944 9.552569 9.613511 -3350 0.067171 0.062623 0.042252 0.033582 7.661332 6.439520 14.050474 10.690105 -3351 0.092649 0.063843 0.076790 0.055175 8.730785 7.358509 9.205852 7.423996 -3352 0.077708 0.053567 0.047343 0.037454 8.102800 7.255718 13.518100 10.317919 -3353 0.042929 0.048238 0.034669 0.039323 7.275738 5.315820 9.525127 7.488161 -3354 0.107140 0.077997 0.032418 0.041744 10.299590 7.769019 13.262278 10.769685 -3355 0.119042 0.109475 0.068458 0.065396 14.831422 12.025388 16.684214 11.693955 -3356 0.164554 0.128932 0.064071 0.056448 12.316102 10.881018 15.471989 14.024780 -3357 0.102882 0.070311 0.067805 0.056766 9.006079 9.393250 19.318439 15.311043 -3358 0.108754 0.101090 0.053550 0.043724 10.014969 9.890780 9.271587 8.665992 -3359 0.067106 0.075543 0.039611 0.039842 9.421144 6.742568 12.265566 10.437521 -3360 0.041754 0.023044 0.015585 0.009755 5.924386 4.942378 7.264237 6.388452 -3361 0.084931 0.087756 0.033019 0.040380 10.018054 10.288370 10.790067 11.392663 -3362 0.113897 0.089001 0.055914 0.030579 10.830865 9.879891 14.494392 12.240912 -3363 0.066239 0.055290 0.035797 0.033594 10.225468 7.867427 12.562737 11.738297 -3364 0.074992 0.093226 0.029207 0.037907 11.677152 9.362068 15.702586 11.963835 -3365 0.097380 0.074404 0.081970 0.073193 10.995704 9.958453 16.696521 15.832957 -3366 0.079569 0.074483 0.067189 0.050809 10.905535 6.612298 17.295887 11.895420 -3367 0.068928 0.061629 0.037367 0.036758 9.198388 8.584700 9.002293 7.978796 -3368 0.069695 0.059252 0.025490 0.017043 6.722802 6.011932 10.884392 7.329497 -3369 0.060120 0.071005 0.022842 0.022171 13.476052 12.536063 20.540335 20.781907 -3370 0.090211 0.093651 0.048832 0.049570 11.225651 8.321936 16.553063 12.622728 -3371 0.108639 0.083428 0.036287 0.028498 13.900014 12.566994 21.411031 16.934410 -3372 0.133444 0.099432 0.067361 0.063649 11.135815 7.854276 18.697710 12.643656 -3373 0.063705 0.055713 0.028094 0.022720 7.409609 7.641631 13.221604 14.210183 -3374 0.053618 0.054781 0.039927 0.045307 7.167457 7.447690 6.880189 6.665207 -3375 0.089667 0.076020 0.052673 0.035520 7.073701 6.525470 13.656482 11.407724 -3376 0.055684 0.042761 0.030204 0.031178 7.475190 7.240175 9.946498 8.350794 -3377 0.056552 0.046978 0.032069 0.019643 6.597589 7.603137 10.177215 12.923003 -3378 0.050493 0.053394 0.039247 0.031161 8.526291 8.182176 11.004692 9.999176 -3379 0.075476 0.061070 0.050237 0.041400 7.892611 5.965751 10.207149 7.551304 -3380 0.054563 0.063896 0.032298 0.027200 8.998869 8.354496 10.121932 10.253929 -3381 0.070625 0.062557 0.045495 0.047087 6.682953 5.757892 12.058321 10.642581 -3382 0.040748 0.045511 0.025025 0.031154 7.786505 9.909749 11.261483 12.533577 -3383 0.062986 0.048478 0.033780 0.026665 14.967847 11.982177 10.607539 8.918695 -3384 0.061479 0.046602 0.054747 0.028119 7.294260 5.672070 9.993928 8.556750 -3385 0.064763 0.052928 0.041534 0.034439 7.206584 6.066307 9.360242 6.979725 -3386 0.069115 0.053789 0.056080 0.040466 8.986088 6.566444 13.137279 10.157626 -3387 0.092829 0.095672 0.060453 0.093248 8.605172 7.413921 14.052237 10.317733 -3388 0.069030 0.067583 0.037246 0.027523 6.904464 6.800006 9.311590 11.143972 -3389 0.094116 0.085646 0.056578 0.042995 10.361681 8.708688 10.287468 14.200189 -3390 0.050423 0.047151 0.042847 0.034642 16.252671 12.735657 15.652471 14.184512 -3391 0.078180 0.076268 0.035378 0.033141 9.751421 8.933122 13.443836 11.544748 -3392 0.062887 0.045454 0.030893 0.014138 8.256852 7.302302 13.823505 12.640037 -3393 0.067201 0.064298 0.047928 0.035798 9.147029 9.779087 12.513339 11.876226 -3394 0.069649 0.046804 0.041283 0.023709 14.926317 13.402541 19.185804 16.887210 -3395 0.068697 0.049489 0.032999 0.033692 9.169652 8.076064 15.968812 12.045408 -3396 0.047945 0.068321 0.030492 0.048427 8.614726 6.105552 8.303728 5.583380 -3397 0.047473 0.058158 0.024726 0.028996 11.640372 10.046132 13.162155 11.421861 -3398 0.062862 0.036800 0.020638 0.013591 7.892773 7.919089 9.677727 9.255474 -3399 0.099019 0.063412 0.050572 0.029776 11.654310 11.031053 12.800024 13.589535 -3400 0.048246 0.053475 0.038778 0.039789 8.791680 9.433731 11.953775 10.875356 -3401 0.093615 0.085792 0.077083 0.058715 9.735590 6.634814 16.901543 16.158929 -3402 0.102624 0.067648 0.056596 0.041982 7.912597 7.130455 13.564020 12.115644 -3403 0.082508 0.065180 0.044044 0.030288 8.951470 7.323172 14.488081 10.556609 -3404 0.088737 0.073584 0.037506 0.041446 10.717561 8.378024 10.448852 10.365373 -3405 0.059852 0.061110 0.019367 0.013439 7.659272 7.785183 12.246309 10.403780 -3406 0.113021 0.093868 0.048192 0.035166 10.440793 10.280122 12.133754 12.604193 -3407 0.085287 0.082261 0.050592 0.040848 15.316618 18.158331 19.337369 21.179873 -3408 0.066609 0.074478 0.036702 0.036767 9.311365 8.982243 13.449695 9.328003 -3409 0.097977 0.087156 0.026096 0.031477 10.815136 9.083112 14.390130 11.375430 -3410 0.052080 0.064829 0.040767 0.052771 10.715177 9.515320 9.931830 8.792547 -3411 0.064927 0.044914 0.048639 0.030999 10.526493 12.065565 14.041874 12.254496 -3412 0.075300 0.058658 0.018707 0.017900 10.729514 8.082439 14.034494 10.944536 -3413 0.066558 0.066531 0.048605 0.053929 6.259951 5.602048 9.731281 8.134971 -3414 0.068578 0.047702 0.021869 0.023258 6.839156 6.144907 7.438862 7.477493 -3415 0.094609 0.068905 0.032509 0.037440 12.966710 8.613531 13.142220 8.934111 -3416 0.078636 0.088112 0.057420 0.042523 7.878189 6.346036 15.240706 12.273589 -3417 0.059364 0.052444 0.042432 0.026857 9.177290 10.754801 9.868242 11.380456 -3418 0.055286 0.061121 0.031649 0.030343 11.693779 12.343287 12.828354 13.368181 -3419 0.091172 0.064209 0.045495 0.039150 10.843155 6.792102 15.163883 10.821341 -3420 0.068860 0.061756 0.044708 0.040594 10.512601 9.673923 14.530960 13.241876 -3421 0.074761 0.090457 0.040905 0.043044 9.461386 7.843263 10.517056 9.252442 -3422 0.114908 0.097118 0.071345 0.072910 11.318126 9.668492 13.713449 12.337079 -3423 0.081333 0.114865 0.046533 0.041102 10.242312 9.042127 14.786284 13.973006 -3424 0.097661 0.060961 0.088396 0.052466 11.739672 8.145233 19.055699 12.849852 -3425 0.060898 0.047514 0.028729 0.019210 8.778941 8.879232 11.825708 12.191070 -3426 0.078916 0.061168 0.070405 0.044701 11.380660 13.417471 14.057018 11.816825 -3427 0.067032 0.047879 0.042364 0.023882 9.323049 9.774264 10.311156 9.667988 -3428 0.055633 0.050219 0.055621 0.050889 8.740657 9.983020 11.443768 12.653649 -3429 0.072061 0.063246 0.034395 0.037043 10.998710 7.126464 14.727707 10.886731 -3430 0.046042 0.049676 0.018603 0.021344 7.383021 7.597643 9.063066 10.379118 -3431 0.101994 0.124804 0.044214 0.042752 8.689865 10.008655 9.876888 10.143723 -3432 0.068221 0.045114 0.045992 0.030642 9.417514 8.651088 14.607625 11.543097 -3433 0.087113 0.074715 0.061172 0.049448 15.881052 15.067969 19.513470 20.044287 -3434 0.080176 0.050094 0.056098 0.028024 7.535489 6.844045 11.266303 11.230422 -3435 0.074918 0.065648 0.044612 0.030112 8.264428 7.635017 11.413951 10.487920 -3436 0.076768 0.056497 0.040326 0.024054 10.254480 6.254081 14.277875 14.522953 -3437 0.109868 0.095391 0.069787 0.042420 9.304697 8.466786 18.483436 13.815433 -3438 0.093365 0.070239 0.062073 0.035788 14.564210 11.327654 18.159618 13.135417 -3439 0.077037 0.062569 0.060927 0.041400 7.726046 6.554812 7.844857 8.484040 -3440 0.086758 0.074638 0.062716 0.042186 6.597410 6.312201 11.411706 10.613487 -3441 0.043493 0.044497 0.025462 0.027814 7.960404 6.732203 12.024300 9.957441 -3442 0.095282 0.098512 0.092044 0.102526 10.046316 9.533092 15.291966 13.657185 -3443 0.096474 0.076170 0.066860 0.035044 11.089683 10.541523 13.722672 14.785331 -3444 0.119355 0.072264 0.085811 0.069786 8.249022 8.749815 11.175570 9.904156 -3445 0.104160 0.088808 0.061432 0.050734 10.826846 9.982879 11.792837 11.430743 -3446 0.081887 0.069973 0.040531 0.051503 7.047344 6.423109 10.106201 11.200211 -3447 0.049800 0.057705 0.026625 0.029493 6.378087 6.119889 8.375142 5.845211 -3448 0.036403 0.033575 0.016162 0.014984 8.404078 8.080434 6.093385 5.303793 -3449 0.051761 0.049714 0.039268 0.048241 11.617436 7.521538 10.795665 9.566668 -3450 0.076508 0.057268 0.037131 0.024525 7.643357 7.834618 8.617184 8.303222 -3451 0.072506 0.061394 0.056056 0.052518 12.408965 9.634029 16.717726 14.597275 -3452 0.069246 0.057788 0.052166 0.043918 9.016626 6.730080 11.775500 9.449484 -3453 0.057169 0.043376 0.036284 0.028179 8.677500 8.650303 11.632634 11.816468 -3454 0.057988 0.050418 0.022534 0.023600 13.621530 9.257579 14.019435 10.158882 -3455 0.128147 0.149301 0.056906 0.043623 16.753998 17.959564 15.668078 17.394216 -3456 0.033159 0.034404 0.035353 0.019297 8.053633 6.796589 11.067614 9.324442 -3457 0.055284 0.049976 0.025194 0.026404 9.907521 9.205157 18.736309 15.150450 -3458 0.136191 0.100176 0.057464 0.050226 9.707487 6.944293 11.110864 9.798368 -3459 0.058429 0.052282 0.019950 0.021919 11.536724 9.745121 14.338536 13.504611 -3460 0.039262 0.048546 0.026379 0.043483 12.241406 12.411656 17.365614 16.687828 -3461 0.068038 0.062891 0.039057 0.046409 10.757529 7.796096 13.614581 13.557363 -3462 0.073979 0.065209 0.040089 0.039709 8.100289 6.858823 11.402050 8.192072 -3463 0.088432 0.074602 0.114524 0.069380 12.379421 10.975786 18.441375 16.969864 -3464 0.065146 0.045272 0.028099 0.023722 10.706160 10.616125 11.504057 9.499521 -3465 0.067219 0.054327 0.061267 0.049785 9.019976 6.114915 14.476297 9.412760 -3466 0.053125 0.062121 0.024808 0.025734 18.651006 11.604423 19.633782 16.230212 -3467 0.132348 0.108271 0.054583 0.068119 10.389912 9.063153 12.914965 11.593888 -3468 0.077827 0.068108 0.049293 0.046857 8.903219 8.304442 12.774223 10.443737 -3469 0.104069 0.086502 0.082120 0.056426 13.109873 12.064103 23.723599 17.795911 -3470 0.072507 0.050227 0.029816 0.017271 8.056829 8.824536 11.955117 8.689862 -3471 0.103575 0.081062 0.054162 0.032019 9.113335 6.767187 14.242546 12.685781 -3472 0.066523 0.054719 0.040181 0.026648 9.077363 6.564501 11.710905 7.700401 -3473 0.072403 0.064572 0.043753 0.033475 5.689925 6.586222 15.194248 15.610111 -3474 0.108189 0.110957 0.112816 0.059933 11.657674 9.084280 19.215986 15.300322 -3475 0.060038 0.069600 0.040524 0.046777 8.430961 7.257752 12.002151 9.567564 -3476 0.050821 0.040656 0.027175 0.021844 7.465288 7.638097 10.539762 10.018069 -3477 0.045350 0.036906 0.031392 0.024899 7.507647 6.192153 10.028207 8.821735 -3478 0.107586 0.075759 0.056616 0.036089 7.676769 8.153929 7.983386 9.495088 -3479 0.094228 0.084745 0.052058 0.050653 8.188907 9.019257 10.500830 9.056195 -3480 0.076506 0.108065 0.030449 0.046026 12.955668 8.938759 17.867153 12.913830 -3481 0.092619 0.073707 0.055873 0.041054 8.275049 7.239235 7.867660 7.033079 -3482 0.077281 0.044559 0.075843 0.031642 6.398038 5.593673 6.734962 5.301642 -3483 0.095619 0.110822 0.045630 0.043220 9.535730 8.518976 13.833899 11.372125 -3484 0.051492 0.033435 0.018458 0.015644 10.793146 10.921164 13.778005 11.972888 -3485 0.082759 0.048797 0.049027 0.026061 8.498597 8.174461 9.416882 6.602230 -3486 0.073041 0.062054 0.057503 0.036406 8.587913 6.207875 10.663374 9.901198 -3487 0.051540 0.049402 0.042394 0.034605 8.525172 7.334369 9.676013 8.360386 -3488 0.105802 0.080210 0.083957 0.064987 13.336683 11.454900 16.888322 14.469924 -3489 0.073737 0.059428 0.052290 0.044183 7.943761 6.302725 7.105403 8.911540 -3490 0.144024 0.126534 0.153856 0.139401 12.649978 11.366782 10.253282 10.871980 -3491 0.078738 0.059447 0.043447 0.038959 12.670485 11.189280 16.225419 12.057793 -3492 0.065738 0.055730 0.052392 0.045685 12.845749 11.529185 11.804134 11.503011 -3493 0.085708 0.060977 0.031655 0.028159 11.960843 10.006480 12.388839 10.379750 -3494 0.084272 0.083227 0.089582 0.055658 14.468933 13.133551 15.861750 16.388998 -3495 0.072062 0.071503 0.079608 0.064409 8.985637 8.174272 14.062980 11.264265 -3496 0.073543 0.049350 0.060419 0.042027 9.797178 10.734423 12.617143 11.376068 -3497 0.097303 0.055325 0.049317 0.031541 7.741701 7.868192 16.628528 11.056603 -3498 0.088802 0.062937 0.044054 0.033180 9.270763 6.830306 16.297060 12.655593 -3499 0.070795 0.045393 0.038679 0.026434 10.087401 9.162758 10.925764 10.133606 -3500 0.072134 0.064255 0.061124 0.043783 12.031199 9.725405 14.176794 11.546058 -3501 0.064207 0.068207 0.031406 0.025268 8.654046 7.169777 12.466556 12.123913 -3502 0.087545 0.049267 0.042804 0.027179 12.307343 11.378164 16.491901 17.769872 -3503 0.081154 0.060561 0.046027 0.022054 10.871085 9.193613 12.877210 12.510614 -3504 0.053511 0.055576 0.030090 0.038939 6.723740 5.259548 10.767806 9.477937 -3505 0.048765 0.054903 0.030513 0.029372 11.629121 10.840074 11.680951 10.724665 -3506 0.068427 0.043399 0.040152 0.026862 9.228193 8.879050 7.963209 7.802820 -3507 0.113664 0.093156 0.045020 0.045082 10.594664 8.723322 15.412503 13.035219 -3508 0.066595 0.051785 0.041952 0.027543 9.655622 7.256109 12.934940 13.475797 -3509 0.084232 0.092868 0.034963 0.046276 9.305191 10.400179 15.324998 15.643959 -3510 0.080403 0.078877 0.030781 0.033518 10.955264 10.850785 11.313133 11.356206 -3511 0.053553 0.043783 0.024831 0.022949 8.097136 8.247602 9.964369 8.384849 -3512 0.057538 0.046783 0.030302 0.022278 12.668429 8.024713 13.627460 13.662139 -3513 0.076777 0.053415 0.044332 0.034060 9.399713 8.011156 14.612506 9.066880 -3514 0.088200 0.100804 0.072304 0.077140 10.559268 9.397290 14.841293 14.279016 -3515 0.066133 0.054270 0.032814 0.035157 6.733490 6.019728 8.535530 8.185250 -3516 0.140628 0.101469 0.054948 0.054883 10.447805 7.931942 10.938444 6.867736 -3517 0.071586 0.086354 0.035491 0.042037 10.587080 10.906227 10.932397 11.587436 -3518 0.085324 0.080347 0.039344 0.030555 12.028619 7.044375 12.569660 7.525666 -3519 0.068375 0.046366 0.043570 0.032811 10.430269 8.004729 13.547963 10.174786 -3520 0.067214 0.074681 0.044275 0.039000 6.969584 7.618116 6.967042 6.357472 -3521 0.073836 0.048642 0.059371 0.038431 10.695340 9.521892 14.966868 13.013565 -3522 0.062882 0.054776 0.045464 0.028176 9.662777 10.580595 17.163401 14.796817 -3523 0.064099 0.065948 0.045871 0.040554 8.827152 8.484637 13.808273 12.981381 -3524 0.073621 0.056624 0.067130 0.039238 9.204966 8.477735 16.900921 17.236680 -3525 0.070052 0.064205 0.028924 0.028309 10.311748 9.574580 13.543592 12.182333 -3526 0.145882 0.096031 0.080797 0.071569 10.541144 10.639451 14.468487 14.985419 -3527 0.074114 0.057734 0.043784 0.027215 8.873068 7.292209 13.857614 10.115627 -3528 0.078847 0.062357 0.052915 0.046673 10.728884 10.756261 12.466977 10.197680 -3529 0.101599 0.085525 0.076297 0.043134 11.000099 9.051598 10.344634 8.947766 -3530 0.165468 0.139776 0.121205 0.117525 10.963571 10.255171 14.028520 12.527148 -3531 0.066791 0.046119 0.085447 0.043632 8.971745 8.353461 6.528106 5.568131 -3532 0.064063 0.065804 0.061376 0.042393 9.409239 7.253073 14.217044 12.720141 -3533 0.082614 0.086138 0.082268 0.052178 17.502477 15.170694 20.652706 19.501780 -3534 0.064176 0.065729 0.056895 0.054889 12.362362 8.340763 16.509701 15.432004 -3535 0.057449 0.060203 0.040584 0.035261 8.651546 7.832443 12.165022 10.072215 -3536 0.097367 0.067132 0.072857 0.057610 6.920242 6.170474 8.912871 9.069919 -3537 0.078460 0.071118 0.054781 0.035223 13.444658 9.418533 13.537913 12.857257 -3538 0.102544 0.071681 0.079672 0.052549 10.507900 7.452760 17.338207 16.164361 -3539 0.048033 0.058790 0.039133 0.031556 12.755641 11.210750 15.263564 12.674470 -3540 0.093803 0.076329 0.078846 0.052486 13.433342 11.360022 17.986432 12.800280 -3541 0.052370 0.045781 0.028726 0.033021 8.122906 9.054358 9.758496 11.057075 -3542 0.059745 0.044118 0.024508 0.031301 15.771829 12.934970 18.247799 13.023224 -3543 0.043112 0.045200 0.044701 0.039554 11.936550 9.507667 13.723806 10.467535 -3544 0.079769 0.052507 0.040104 0.045140 10.768709 11.480087 16.387442 13.853784 -3545 0.079376 0.069771 0.065277 0.050256 9.311944 9.004508 8.825117 8.861254 -3546 0.103274 0.072280 0.049685 0.034346 8.166163 7.650307 17.072411 13.279328 -3547 0.088637 0.090956 0.049976 0.045892 7.564874 7.522216 11.084572 11.879953 -3548 0.059002 0.062600 0.051328 0.043747 12.948886 12.912446 13.062585 13.453306 -3549 0.070083 0.089924 0.047548 0.056074 8.705930 7.419224 15.259121 13.344129 -3550 0.093059 0.080289 0.042971 0.040529 10.383597 9.026390 16.945892 13.247123 -3551 0.049833 0.038790 0.032331 0.023211 9.354074 7.365616 10.393110 9.480628 -3552 0.070412 0.065052 0.032211 0.027099 7.066562 8.029972 10.857785 10.199192 -3553 0.086422 0.081493 0.064685 0.037914 10.586031 9.668671 13.068564 11.360647 -3554 0.104055 0.071667 0.074349 0.047952 12.764465 13.119281 17.736402 16.427862 -3555 0.120518 0.098228 0.069110 0.040832 10.768687 10.214975 14.790816 13.199566 -3556 0.102437 0.081734 0.047988 0.044560 11.634995 9.233699 16.750084 16.784757 -3557 0.087330 0.068431 0.055894 0.065803 11.775764 11.237082 11.336079 12.957028 -3558 0.118926 0.123931 0.065219 0.082532 11.164154 9.392949 13.745893 10.933228 -3559 0.089009 0.067162 0.038019 0.031648 10.103804 5.878820 18.602577 10.223167 -3560 0.062647 0.042969 0.038592 0.023401 9.197537 9.119344 11.543061 11.628648 -3561 0.067930 0.059176 0.050927 0.041465 14.094762 10.758866 17.218158 12.951638 -3562 0.104701 0.099981 0.043583 0.041975 10.732183 9.079104 12.417242 10.121702 -3563 0.063774 0.051634 0.034379 0.036879 7.862572 6.531222 11.464236 10.614753 -3564 0.182463 0.109536 0.139401 0.096676 8.571846 10.233882 10.682236 8.540986 -3565 0.104411 0.059593 0.064637 0.054587 13.385087 9.347125 18.674109 16.897294 -3566 0.074850 0.055111 0.070927 0.042373 11.045204 10.523364 15.532031 13.742215 -3567 0.047688 0.046842 0.046998 0.037393 11.745686 10.351785 16.463231 13.174731 -3568 0.077572 0.077465 0.041666 0.039895 9.672350 9.713957 15.360248 13.301172 -3569 0.088700 0.080879 0.049754 0.051136 7.070472 8.606397 13.703448 12.977510 -3570 0.060890 0.042466 0.026847 0.018124 6.639758 4.425465 7.779805 6.619698 -3571 0.122496 0.104589 0.064744 0.035494 11.095475 8.870568 14.638292 11.814200 -3572 0.075778 0.046457 0.028532 0.020220 6.799270 6.372268 8.484415 8.155402 -3573 0.098607 0.088516 0.061258 0.033755 10.807295 10.664136 15.180874 11.346821 -3574 0.082752 0.065870 0.054263 0.053841 12.953379 9.532500 15.683280 13.346067 -3575 0.096604 0.067381 0.058437 0.028251 9.613322 8.472247 14.466021 12.078760 -3576 0.056454 0.059719 0.019344 0.026807 8.783995 7.693724 7.652721 8.606016 -3577 0.092724 0.071757 0.077647 0.062916 9.025153 10.006889 15.523328 16.176431 -3578 0.082937 0.076657 0.050022 0.039723 8.157706 5.310225 10.953153 7.209662 -3579 0.076294 0.090429 0.051290 0.035131 10.926841 9.317939 14.527061 11.827039 -3580 0.110564 0.109711 0.052067 0.048039 8.754453 7.713359 14.642166 10.843233 -3581 0.133161 0.091713 0.048332 0.051641 18.256381 16.243996 20.391831 18.308335 -3582 0.095131 0.061078 0.049122 0.033427 9.947159 9.037297 11.850502 9.976397 -3583 0.073333 0.076864 0.074854 0.071621 13.183568 11.105812 14.712009 13.300603 -3584 0.106557 0.083095 0.059343 0.047830 10.627177 9.694460 13.647081 14.042092 -3585 0.051944 0.041334 0.026043 0.014465 6.939164 6.532303 9.058875 10.004923 -3586 0.093449 0.078471 0.035965 0.033356 13.378009 8.039485 15.131389 10.422905 -3587 0.069751 0.058471 0.049389 0.044743 16.723940 11.541091 11.330202 10.164322 -3588 0.076310 0.040339 0.039016 0.019608 9.311648 8.193404 10.597525 9.879264 -3589 0.064601 0.056893 0.031021 0.019796 8.632494 6.442197 8.301165 8.638545 -3590 0.094486 0.067509 0.052246 0.046191 18.088631 11.629410 17.198636 11.763723 -3591 0.084504 0.072982 0.058006 0.040979 8.916718 7.971138 10.723588 7.529220 -3592 0.119961 0.099657 0.045352 0.043772 13.972819 8.818612 17.344330 13.414669 -3593 0.115917 0.090602 0.084222 0.060598 13.310795 11.112928 15.178846 14.834532 -3594 0.073324 0.058240 0.044607 0.044346 8.383702 9.864013 9.720674 10.061248 -3595 0.077599 0.062880 0.041848 0.036448 14.173291 14.424393 21.506061 17.097074 -3596 0.068248 0.059344 0.082022 0.078258 9.389212 7.740880 12.534712 10.820493 -3597 0.077818 0.091178 0.049176 0.052998 9.250762 8.565863 11.566552 11.386451 -3598 0.066614 0.063931 0.025769 0.019639 9.626003 8.842265 15.816776 14.527250 -3599 0.079577 0.059397 0.029148 0.040057 7.184730 6.473920 11.417898 9.579177 -3600 0.080719 0.070804 0.027899 0.017029 9.780965 6.901169 13.045729 10.802990 -3601 0.098872 0.073093 0.095143 0.053456 10.614615 12.049331 14.401053 13.773659 -3602 0.101082 0.100870 0.074008 0.067989 10.793981 9.145460 14.625638 12.897325 -3603 0.048717 0.056185 0.032266 0.033164 10.446002 9.915030 10.585492 10.945756 -3604 0.090512 0.078527 0.100068 0.107102 10.182487 10.214549 7.992834 9.799581 -3605 0.061428 0.049070 0.044281 0.027343 10.013198 9.945742 9.578666 10.033819 -3606 0.037404 0.036471 0.021269 0.015321 12.969398 12.715310 11.552613 10.744746 -3607 0.060766 0.079256 0.052766 0.063393 10.922151 12.218617 12.848490 12.242085 -3608 0.123943 0.092432 0.088263 0.077559 6.294548 7.507126 10.828457 10.332270 -3609 0.078072 0.078224 0.053713 0.047986 6.877492 5.863589 11.652813 6.901583 -3610 0.094347 0.079849 0.039873 0.034675 10.538382 10.200472 16.394585 14.940751 -3611 0.066889 0.055964 0.023058 0.030631 9.080855 6.853571 15.589278 10.127274 -3612 0.059187 0.046843 0.048470 0.034668 10.395773 12.785976 10.034280 10.201280 -3613 0.102465 0.107722 0.063124 0.060938 9.238017 8.482561 11.985791 10.926429 -3614 0.087103 0.061234 0.035438 0.032669 10.435339 9.000366 12.536003 9.499656 -3615 0.071453 0.045028 0.039828 0.025948 9.225226 8.008810 12.048801 11.827913 -3616 0.051393 0.055082 0.040200 0.029329 9.153737 7.865965 10.902162 12.441783 -3617 0.054015 0.050278 0.031823 0.038035 10.585593 6.788048 13.824364 9.175451 -3618 0.044292 0.036035 0.028424 0.023938 6.029237 6.693504 9.893152 11.998060 -3619 0.060322 0.043761 0.022912 0.014236 8.740680 9.956044 12.170217 11.445570 -3620 0.066794 0.056221 0.056019 0.036430 8.265092 9.844423 13.092088 12.884482 -3621 0.094737 0.060612 0.067362 0.041621 10.946541 7.591135 22.938861 17.651152 -3622 0.108606 0.103062 0.064910 0.049578 14.621236 13.408437 13.273807 12.710593 -3623 0.103819 0.088643 0.076380 0.064826 9.598018 8.237834 12.851776 11.379649 -3624 0.064322 0.059776 0.041108 0.038743 9.436925 6.019009 11.534558 7.739391 -3625 0.035455 0.035939 0.021296 0.020563 7.435821 7.644865 11.570037 10.586129 -3626 0.059402 0.047142 0.078026 0.038614 8.227344 7.618784 13.121124 12.100714 -3627 0.105292 0.123661 0.054236 0.095877 12.527785 8.177886 13.485148 9.039758 -3628 0.062050 0.060533 0.041198 0.042732 9.103696 7.637336 11.059772 8.192945 -3629 0.139267 0.105014 0.108246 0.095315 10.401894 8.336256 10.472600 9.961532 -3630 0.078264 0.063590 0.054501 0.041310 7.757912 9.272777 12.232695 13.263069 -3631 0.064799 0.048715 0.032514 0.022778 10.589099 9.920903 13.862588 13.627899 -3632 0.053287 0.052803 0.025416 0.025742 8.459238 7.104170 10.743789 9.210027 -3633 0.097782 0.081740 0.053533 0.052366 11.571021 9.124917 9.874934 7.568581 -3634 0.098658 0.107797 0.077588 0.057657 11.212108 11.866373 12.868860 9.382452 -3635 0.073920 0.078285 0.037655 0.026621 11.182026 9.681294 8.205600 6.971603 -3636 0.058284 0.052621 0.044676 0.030941 11.520795 12.049111 12.941348 16.745196 -3637 0.079669 0.084709 0.036963 0.040782 8.260359 6.538366 9.510424 7.596805 -3638 0.061638 0.057194 0.042096 0.029316 11.849679 10.809344 15.431636 15.956430 -3639 0.087204 0.066341 0.045911 0.041411 9.901208 11.417105 10.322154 9.653299 -3640 0.036022 0.033200 0.034109 0.025927 9.478464 7.943979 10.148851 6.759060 -3641 0.058057 0.055978 0.038530 0.033776 10.539907 8.189781 9.559902 8.166142 -3642 0.078640 0.088667 0.065201 0.057682 8.393227 7.584564 16.416650 11.445025 -3643 0.069479 0.056760 0.025326 0.022414 9.301258 7.618305 11.338143 9.354473 -3644 0.085409 0.070767 0.060561 0.036767 13.314300 11.263155 15.961862 12.387532 -3645 0.083586 0.087224 0.085058 0.064314 10.816835 7.751522 9.279148 7.384558 -3646 0.083989 0.108996 0.038435 0.046313 15.494314 11.242050 16.192173 15.341274 -3647 0.087691 0.065769 0.051874 0.053186 11.164240 8.754836 13.409281 13.692023 -3648 0.105454 0.064126 0.067822 0.060407 7.975061 7.309118 13.879767 12.559648 -3649 0.070855 0.049596 0.054647 0.035697 13.086519 11.354939 15.243751 13.969039 -3650 0.080524 0.066237 0.035773 0.027563 10.591747 7.995220 9.041541 7.182356 -3651 0.068852 0.051156 0.045465 0.050894 10.551292 10.933762 15.640499 16.722191 -3652 0.049618 0.052499 0.026553 0.028300 7.882223 8.227599 12.343176 10.872568 -3653 0.040671 0.032543 0.024897 0.019073 5.677532 6.608858 13.557500 14.006969 -3654 0.052418 0.048921 0.034770 0.024400 10.755442 6.181808 13.644707 8.016221 -3655 0.068536 0.059447 0.048576 0.025693 7.448374 6.925072 8.474671 8.157882 -3656 0.062954 0.060786 0.035998 0.033721 10.966274 11.701838 13.432345 11.264009 -3657 0.064607 0.053799 0.032151 0.023937 10.658159 9.575236 12.516764 11.169708 -3658 0.109413 0.116076 0.065948 0.045680 14.903928 14.216899 17.336549 15.455890 -3659 0.113783 0.103424 0.056915 0.048740 14.117815 11.706151 16.772915 14.546330 -3660 0.077465 0.066892 0.044095 0.044440 12.886678 8.586307 17.216379 13.052017 -3661 0.056516 0.063197 0.032566 0.036663 7.791128 8.173199 11.633162 11.703476 -3662 0.118386 0.113472 0.065625 0.064089 12.289759 15.942261 14.691854 15.659151 -3663 0.136480 0.089844 0.061263 0.046783 8.974842 8.484081 11.571869 11.291800 -3664 0.049857 0.057106 0.029230 0.031288 8.274458 7.576034 9.290112 9.309302 -3665 0.039944 0.036777 0.017454 0.021966 7.664245 6.885749 9.818554 7.302908 -3666 0.068423 0.077753 0.046945 0.042924 15.120136 14.389028 14.486825 14.392286 -3667 0.048437 0.040098 0.023192 0.018332 7.671230 6.852457 10.511092 12.504679 -3668 0.055007 0.046844 0.031084 0.020422 10.973139 9.252985 10.001341 10.290258 -3669 0.090395 0.056980 0.064154 0.027216 6.899491 4.755883 12.400937 8.520456 -3670 0.053360 0.047863 0.026212 0.019881 9.723923 8.797898 14.283354 11.699703 -3671 0.069835 0.056976 0.043964 0.034615 7.264661 7.440964 14.314409 11.657138 -3672 0.053762 0.059673 0.035182 0.030571 7.941654 8.581017 9.999530 10.256500 -3673 0.050175 0.040990 0.029220 0.017421 11.664437 10.953673 11.766519 10.391662 -3674 0.119946 0.106469 0.063305 0.076263 16.399282 15.419932 17.695977 17.694778 -3675 0.067817 0.078158 0.049881 0.040809 11.363803 8.433220 10.764420 9.286454 -3676 0.086678 0.050870 0.042652 0.034460 9.565988 7.687871 10.515322 10.250258 -3677 0.060123 0.049815 0.045058 0.026566 8.711690 8.118886 10.286440 8.160059 -3678 0.123038 0.082571 0.071323 0.056333 12.425949 10.817915 14.898254 12.182846 -3679 0.074795 0.051089 0.037946 0.022150 6.713783 6.129340 8.800100 6.986678 -3680 0.080534 0.094190 0.039045 0.037715 13.142458 13.196359 15.434180 13.236621 -3681 0.045382 0.048568 0.025982 0.033055 6.903312 6.187993 15.640797 11.001757 -3682 0.062669 0.048587 0.030307 0.029074 7.940337 6.643805 9.348703 9.248095 -3683 0.214276 0.164255 0.111570 0.091633 19.040193 14.108296 30.028831 22.474283 -3684 0.070597 0.051390 0.036596 0.029060 6.540518 7.073162 10.820952 11.097540 -3685 0.053870 0.062064 0.033823 0.024345 8.373089 8.734783 9.654124 10.223323 -3686 0.076735 0.084056 0.039891 0.032504 12.371391 15.685348 24.329767 22.897365 -3687 0.087466 0.073708 0.054872 0.043232 13.337821 14.617137 14.832919 17.180367 -3688 0.082563 0.055848 0.082539 0.041211 12.857151 12.985606 12.269621 12.106892 -3689 0.070415 0.060141 0.052638 0.052173 12.389168 13.275208 12.222748 11.431431 -3690 0.071491 0.057219 0.042739 0.030426 8.623287 7.546540 10.975314 9.671792 -3691 0.065863 0.052221 0.058727 0.036210 8.984442 8.738012 14.194734 10.941781 -3692 0.097283 0.097759 0.063578 0.055716 8.880579 8.076755 12.477372 11.918745 -3693 0.078364 0.057244 0.052330 0.043822 9.402105 8.340915 10.246678 10.522273 -3694 0.119899 0.079973 0.067016 0.059705 11.340215 9.382631 21.057764 13.690957 -3695 0.150900 0.125015 0.115287 0.111842 18.243616 12.092150 28.800748 21.537910 -3696 0.079373 0.065280 0.033653 0.031032 6.945772 5.868817 11.611372 11.560722 -3697 0.088435 0.068772 0.057707 0.035743 10.394418 9.007267 11.906438 12.376781 -3698 0.068168 0.049264 0.052171 0.029748 8.483465 7.130433 6.196646 5.590863 -3699 0.090570 0.074704 0.046054 0.031837 10.793016 10.108619 8.885196 9.634601 -3700 0.080676 0.053060 0.056695 0.030095 7.456164 6.821969 9.957201 10.574250 -3701 0.094968 0.056984 0.042476 0.031136 12.840084 10.767496 11.898390 11.444774 -3702 0.038267 0.031552 0.023604 0.022933 7.128878 6.671134 9.499942 8.050438 -3703 0.046095 0.032361 0.034080 0.019613 10.449495 8.984106 13.211857 9.931095 -3704 0.069000 0.067110 0.053405 0.038420 6.181783 7.314434 9.399366 13.329013 -3705 0.097089 0.077447 0.078841 0.058403 15.632945 14.047419 16.025870 13.462837 -3706 0.064567 0.048575 0.062233 0.047527 13.458269 9.525633 11.403167 8.990307 -3707 0.100998 0.072116 0.100177 0.046983 11.941308 9.430114 14.641708 12.206889 -3708 0.066650 0.057559 0.037439 0.026350 7.211211 5.258694 12.875607 9.729180 -3709 0.069397 0.061594 0.048549 0.035291 9.269786 8.709613 15.316569 12.892352 -3710 0.081734 0.063245 0.059013 0.040444 8.489161 10.275708 12.682938 15.441944 -3711 0.074456 0.060824 0.044754 0.042675 9.808232 10.052340 10.498842 10.270007 -3712 0.104783 0.097412 0.083649 0.058415 10.760378 10.411146 10.435177 11.512507 -3713 0.035840 0.039675 0.034169 0.031701 13.964263 13.069614 11.300990 9.353078 -3714 0.044334 0.045919 0.026140 0.024045 10.512851 10.051801 11.245276 10.364007 -3715 0.081585 0.070387 0.048265 0.034830 11.669856 10.206774 10.872783 9.460238 -3716 0.047251 0.044699 0.035315 0.030451 11.849329 11.377243 14.623211 11.930782 -3717 0.077727 0.052006 0.045552 0.028353 7.800936 8.225460 13.502084 12.061842 -3718 0.098590 0.066889 0.088001 0.050207 11.018752 8.838145 17.084004 11.762782 -3719 0.079601 0.063991 0.048805 0.030865 7.167915 6.094959 9.574527 6.858764 -3720 0.045101 0.038715 0.035167 0.024513 6.928558 7.810503 11.077594 8.682895 -3721 0.077754 0.052437 0.058399 0.037459 9.660010 5.641549 10.420458 8.507112 -3722 0.139674 0.123680 0.080500 0.054023 13.152312 11.445680 14.686643 17.055017 -3723 0.073056 0.046446 0.044908 0.027337 11.645007 10.945119 12.753071 15.595243 -3724 0.076268 0.057118 0.043005 0.027986 14.072282 13.137380 18.964387 15.684906 -3725 0.078731 0.068339 0.042189 0.036207 11.441793 8.867411 15.824246 10.225344 -3726 0.096830 0.074472 0.063923 0.049451 8.710929 5.847110 8.312609 7.365089 -3727 0.051941 0.039543 0.027226 0.029673 8.310523 6.787547 12.244872 9.223417 -3728 0.081063 0.073003 0.046529 0.034043 9.776553 9.685086 11.309038 11.203758 -3729 0.035434 0.046078 0.014066 0.016883 5.811296 4.300699 8.472024 7.516252 -3730 0.047833 0.045631 0.048034 0.034186 6.862364 6.659478 9.892576 9.782833 -3731 0.085423 0.086303 0.064384 0.067418 9.524096 6.881061 13.605024 8.935772 -3732 0.083013 0.070125 0.056005 0.040545 10.118810 8.599765 11.213861 8.424056 -3733 0.060894 0.058965 0.034198 0.043452 10.865633 6.650097 14.761312 10.040971 -3734 0.155949 0.137804 0.104448 0.084088 20.106832 13.539728 15.382214 14.485183 -3735 0.118430 0.089382 0.092289 0.079237 12.891169 10.379263 13.989968 12.346830 -3736 0.131707 0.094442 0.085603 0.051989 12.235943 12.035604 16.840947 14.863875 -3737 0.111323 0.073902 0.081141 0.035130 7.962495 7.772480 9.427620 11.047958 -3738 0.059159 0.057810 0.061515 0.052795 12.594639 12.274593 13.813411 13.446214 -3739 0.049147 0.043060 0.037138 0.022017 8.583624 7.477189 10.289035 9.813474 -3740 0.053964 0.049940 0.055633 0.044336 10.778092 11.072289 14.174863 13.602075 -3741 0.068843 0.049782 0.036899 0.032471 9.716999 7.201450 13.558866 11.253400 -3742 0.099736 0.057037 0.099047 0.049371 19.130174 15.346887 18.093577 14.974395 -3743 0.067848 0.042502 0.046569 0.036066 12.017066 9.569682 16.220193 14.368199 -3744 0.053217 0.033727 0.024393 0.018540 10.190769 5.991183 15.316574 12.162154 -3745 0.088104 0.076016 0.049722 0.036019 18.436134 10.830227 18.340359 11.676852 -3746 0.041562 0.042314 0.025163 0.031371 7.997013 8.460275 10.122126 11.368954 -3747 0.093272 0.072937 0.033636 0.025000 12.016661 12.576609 19.150266 21.499115 -3748 0.060391 0.040674 0.022948 0.014654 8.586816 6.126170 8.548910 6.903130 -3749 0.070529 0.054158 0.044948 0.023718 8.976904 8.004543 18.435028 15.936213 -3750 0.084328 0.069232 0.062441 0.034248 11.065837 10.589871 11.938290 11.361538 -3751 0.110962 0.080876 0.051542 0.033695 16.406953 13.148529 20.809308 15.255910 -3752 0.054746 0.056808 0.036008 0.026731 7.619862 5.296307 11.448697 9.417281 -3753 0.085385 0.088419 0.023149 0.024474 6.303074 6.255798 9.202307 9.800775 -3754 0.068067 0.051136 0.040406 0.025458 6.240361 7.074364 9.263493 9.869325 -3755 0.095399 0.081138 0.054504 0.055439 11.544694 7.374167 18.664212 14.693360 -3756 0.094852 0.073722 0.074305 0.067046 12.383454 6.709771 15.427502 12.387867 -3757 0.044894 0.054007 0.039941 0.039869 11.652595 9.675238 12.333898 11.455321 -3758 0.066559 0.066160 0.034956 0.028896 11.443069 9.922009 10.077136 8.707783 -3759 0.087243 0.090536 0.038462 0.034769 9.960781 6.657955 13.240040 10.384872 -3760 0.073343 0.048840 0.059370 0.028668 14.919765 9.453458 15.415920 12.229360 -3761 0.069354 0.054711 0.027608 0.026286 9.041347 10.124194 13.515097 13.347386 -3762 0.116034 0.086639 0.119325 0.062318 9.299161 9.114339 16.664079 14.549172 -3763 0.090964 0.085338 0.035400 0.022399 10.194021 7.965818 8.660197 6.561194 -3764 0.081088 0.078445 0.033563 0.027469 11.420581 10.345893 13.191521 9.714597 -3765 0.051278 0.051015 0.035862 0.029010 9.215939 6.873993 8.708140 6.997492 -3766 0.101118 0.075707 0.065308 0.054910 10.196443 8.716572 9.929214 8.785758 -3767 0.061225 0.048672 0.037279 0.028674 9.454833 8.759507 12.341016 8.844718 -3768 0.130321 0.102522 0.057204 0.039385 14.839876 12.928219 16.208168 13.208169 -3769 0.052422 0.053363 0.044063 0.029719 9.415049 8.861566 10.567591 10.577326 -3770 0.062363 0.046089 0.037942 0.033815 7.135114 8.268667 7.125923 9.567925 -3771 0.127379 0.097144 0.067866 0.049731 8.948585 10.474442 13.906602 9.366916 -3772 0.042595 0.032499 0.024628 0.022160 7.234830 6.662304 8.189320 8.943867 -3773 0.106494 0.083457 0.056135 0.050442 12.023603 10.594893 14.198250 12.730852 -3774 0.093448 0.089744 0.048253 0.041764 11.458309 8.792861 17.789465 11.728536 -3775 0.102376 0.079957 0.063663 0.054114 8.737561 7.295353 16.015470 13.776284 -3776 0.076103 0.040355 0.043726 0.019805 9.241945 8.009064 10.396449 10.160360 -3777 0.075497 0.084105 0.036615 0.033222 9.808292 8.260292 10.611191 9.516965 -3778 0.049746 0.049384 0.019559 0.021007 10.325457 8.197003 17.147375 12.436213 -3779 0.072884 0.058815 0.063226 0.052591 13.139267 11.013027 14.866841 11.507816 -3780 0.107746 0.088965 0.059646 0.044489 8.353626 8.928535 15.362160 14.659515 -3781 0.070089 0.070613 0.047919 0.050647 12.194203 10.312234 12.868822 11.463529 -3782 0.059438 0.042344 0.029278 0.023248 8.869808 8.219487 10.619036 12.658570 -3783 0.097578 0.077615 0.043853 0.034770 8.757912 9.394347 9.510849 7.768953 -3784 0.078696 0.069903 0.041272 0.041113 18.529449 15.657256 19.022970 14.899622 -3785 0.098093 0.089433 0.061377 0.062987 9.553334 9.381507 15.610139 14.241074 -3786 0.074781 0.057542 0.058180 0.041171 13.166039 8.415633 22.332976 18.102827 -3787 0.077215 0.070048 0.054171 0.057809 10.742061 9.430579 13.703469 13.963366 -3788 0.066236 0.069434 0.030791 0.030187 10.763290 8.608443 12.074261 10.284768 -3789 0.087471 0.073117 0.046166 0.038493 12.992181 10.370941 17.775951 13.231681 -3790 0.089543 0.067146 0.069575 0.041012 9.658175 7.698901 12.521502 9.310221 -3791 0.066473 0.059974 0.027355 0.027153 9.266186 11.332912 11.145991 12.351703 -3792 0.051792 0.043925 0.051852 0.039251 8.663273 6.197313 13.088130 10.486305 -3793 0.059632 0.055660 0.050590 0.032169 11.230684 8.573694 17.738740 15.117135 -3794 0.087633 0.045727 0.054901 0.024049 16.730597 14.506229 15.970023 13.626328 -3795 0.084082 0.084931 0.077202 0.096162 10.316853 7.343600 10.832973 8.857364 -3796 0.077342 0.068116 0.036512 0.027527 8.608380 9.477385 12.421573 12.677297 -3797 0.067259 0.062808 0.066205 0.037249 14.275698 12.282873 13.021566 11.626997 -3798 0.076363 0.075786 0.038186 0.030463 10.045327 10.348998 11.084462 12.228810 -3799 0.054503 0.043422 0.036230 0.019684 9.044665 6.540359 9.725180 7.912480 -3800 0.097773 0.072395 0.062554 0.051107 7.372700 7.010506 9.300788 8.336823 -3801 0.049910 0.039299 0.046036 0.030969 9.470191 9.484078 12.681479 12.597038 -3802 0.078125 0.068586 0.040018 0.044452 9.939180 9.472134 14.036552 10.964910 -3803 0.092589 0.085114 0.051477 0.037544 10.399008 11.447939 14.355646 13.897444 -3804 0.142946 0.089232 0.077339 0.053095 11.239928 10.473275 8.449527 9.338481 -3805 0.088018 0.087321 0.069382 0.041915 14.498756 14.360782 19.952616 22.004131 -3806 0.051782 0.037031 0.032104 0.019375 13.543241 10.934822 12.827297 11.180710 -3807 0.118014 0.076475 0.070851 0.032204 11.618862 7.581294 13.245032 11.327548 -3808 0.063468 0.060707 0.032197 0.038437 10.484906 6.532794 12.078594 10.275081 -3809 0.101164 0.084405 0.071366 0.061713 7.900022 7.739966 10.398059 12.512661 -3810 0.048311 0.032406 0.020257 0.014599 7.668726 6.673957 10.522751 9.037865 -3811 0.096174 0.067462 0.073802 0.050402 13.180656 14.469007 13.709834 13.529814 -3812 0.060423 0.050724 0.052388 0.040859 13.290240 9.219277 13.037545 9.183085 -3813 0.064098 0.071717 0.033525 0.036145 6.363828 6.453558 10.201976 9.978420 -3814 0.062893 0.061658 0.032568 0.027599 10.969992 8.701053 13.063558 12.009433 -3815 0.138946 0.132547 0.098340 0.102279 11.747509 8.152713 12.293438 8.751018 -3816 0.033232 0.027164 0.012003 0.011280 5.820176 6.419970 8.479546 9.610997 -3817 0.079165 0.055232 0.042861 0.034400 13.600442 13.353936 17.128118 13.282581 -3818 0.066845 0.060613 0.025164 0.030105 9.341900 9.294994 8.945747 10.084935 -3819 0.118491 0.069151 0.084600 0.041979 13.222458 11.020095 17.340286 15.558679 -3820 0.074015 0.050426 0.035407 0.023991 10.596296 8.129042 14.730600 12.488804 -3821 0.064605 0.057030 0.023615 0.016983 9.866422 7.538792 12.655992 10.269665 -3822 0.090664 0.075705 0.048500 0.048853 12.745219 13.750121 18.713369 16.059712 -3823 0.072263 0.073542 0.029415 0.038529 15.997700 12.194280 15.142422 12.463120 -3824 0.074409 0.060766 0.046088 0.040883 10.525793 8.416403 10.225603 10.832206 -3825 0.088281 0.069475 0.058445 0.041997 9.099684 9.060688 12.203250 10.129872 -3826 0.139092 0.102732 0.135950 0.072186 9.263669 8.887922 18.322995 19.729485 -3827 0.119497 0.135719 0.057587 0.057138 9.520920 9.008534 15.453617 13.672778 -3828 0.085104 0.058441 0.032339 0.019228 7.104812 7.533243 13.746531 15.952301 -3829 0.068277 0.087048 0.029166 0.040465 7.272439 5.890423 11.051237 9.800423 -3830 0.068760 0.072800 0.032060 0.040805 9.870985 7.816499 14.424593 13.284063 -3831 0.079717 0.064348 0.024498 0.020135 9.321339 7.911971 12.153408 9.995567 -3832 0.088404 0.101541 0.049099 0.043497 14.054001 12.573541 14.687713 12.412683 -3833 0.056943 0.038543 0.023664 0.017122 10.910610 9.291588 13.080971 9.677121 -3834 0.089208 0.079580 0.038557 0.030066 17.076102 11.559863 12.591016 11.825310 -3835 0.061276 0.044731 0.054128 0.036335 10.253210 9.575215 19.963088 15.278467 -3836 0.103533 0.078409 0.081144 0.038757 14.077292 11.793802 15.309406 9.814159 -3837 0.067379 0.048612 0.043200 0.036971 11.798572 8.688796 15.929601 11.910310 -3838 0.070583 0.055196 0.035622 0.032973 10.956340 9.032737 7.203451 6.016652 -3839 0.089472 0.092387 0.036408 0.039776 10.046686 10.305428 18.627136 15.784878 -3840 0.085463 0.054231 0.043554 0.027952 10.642955 7.762449 12.125724 10.676215 -3841 0.111646 0.077117 0.067008 0.065078 9.830583 7.508954 13.256579 8.836286 -3842 0.050518 0.037140 0.027545 0.020373 8.605613 6.849825 16.401527 10.559040 -3843 0.075454 0.053940 0.075349 0.041494 12.096232 12.128572 13.275124 11.259664 -3844 0.094504 0.068947 0.062402 0.064684 9.023387 8.516458 12.431221 14.484091 -3845 0.080530 0.108100 0.033828 0.049210 13.559453 9.941838 16.577611 17.241907 -3846 0.051466 0.047818 0.026354 0.024106 6.868210 5.952635 9.628333 7.550455 -3847 0.077936 0.048957 0.047557 0.039757 8.225647 7.695064 9.373880 8.182655 -3848 0.058936 0.045175 0.027930 0.021755 6.414810 5.895027 10.762770 9.810776 -3849 0.057288 0.062230 0.026587 0.031832 6.877846 5.927662 11.233683 9.505640 -3850 0.081487 0.044814 0.047565 0.024272 11.854357 11.333500 15.530790 14.826575 -3851 0.118530 0.085950 0.062447 0.057645 9.759979 9.754353 11.918192 12.849177 -3852 0.062544 0.077082 0.051927 0.060310 11.259023 12.135959 11.758838 9.815858 -3853 0.080501 0.050372 0.061142 0.042922 8.654595 7.111737 9.908579 8.635017 -3854 0.051061 0.044346 0.044155 0.035263 12.585909 10.280924 15.340698 13.357956 -3855 0.059233 0.040006 0.036583 0.020948 6.079339 4.484728 7.446125 7.431628 -3856 0.169384 0.096900 0.135153 0.066776 9.040709 8.569966 10.005088 8.674747 -3857 0.065779 0.068579 0.021993 0.023095 7.145938 5.858398 10.801033 9.289584 -3858 0.106744 0.080161 0.071420 0.056256 11.271766 9.566633 14.332021 12.570757 -3859 0.069899 0.076491 0.046134 0.035075 10.287983 7.513730 9.533755 7.322154 -3860 0.070926 0.055189 0.040942 0.041028 13.143114 13.860692 11.887447 15.107280 -3861 0.047169 0.054348 0.020523 0.033209 6.660627 6.539980 8.950793 8.565292 -3862 0.092920 0.104909 0.070923 0.056275 16.783852 13.210223 19.650334 16.082861 -3863 0.066956 0.059034 0.029785 0.027150 9.153503 6.525223 10.431424 8.426414 -3864 0.074565 0.063823 0.034038 0.034708 9.303322 11.550203 13.833344 13.135400 -3865 0.077673 0.051797 0.051418 0.035207 8.747954 6.628316 8.756847 10.314255 -3866 0.061870 0.082316 0.059665 0.057504 11.181925 12.168589 11.002761 10.959992 -3867 0.096703 0.061336 0.072819 0.046170 14.257262 11.385381 11.932583 11.839712 -3868 0.061840 0.071625 0.033885 0.049466 13.214105 13.973669 15.285012 15.900374 -3869 0.076689 0.071404 0.088668 0.087849 13.730311 11.375162 9.110434 9.923032 -3870 0.072679 0.051470 0.040089 0.031834 14.393958 10.121281 14.001507 9.028054 -3871 0.085264 0.075730 0.032116 0.027608 7.845996 6.440641 11.962703 9.116503 -3872 0.124105 0.079439 0.056540 0.044887 11.950088 9.734520 10.327013 9.381211 -3873 0.055484 0.037029 0.040389 0.027195 8.413674 6.717861 10.097265 10.496718 -3874 0.078229 0.060614 0.049872 0.033012 8.660721 7.282307 14.643391 11.352678 -3875 0.054806 0.061254 0.054241 0.037698 9.708191 9.425726 12.880943 11.664250 -3876 0.109300 0.061764 0.050980 0.049724 7.429463 5.522870 11.155920 7.110950 -3877 0.061904 0.061421 0.044028 0.049970 7.804755 7.152185 11.759344 12.022928 -3878 0.067495 0.065919 0.024888 0.026836 7.237209 6.164862 13.199981 8.736745 -3879 0.074452 0.100165 0.058463 0.073696 11.457871 8.383076 14.764069 14.887005 -3880 0.057052 0.073006 0.048094 0.063519 8.010130 8.230442 18.180161 16.036494 -3881 0.055044 0.049986 0.034207 0.039800 11.025104 7.585110 11.451203 9.740196 -3882 0.046036 0.041983 0.046018 0.047508 6.294429 6.450331 8.775719 8.786475 -3883 0.057277 0.057811 0.051095 0.046062 11.057994 7.880135 13.807211 10.356296 -3884 0.090935 0.076651 0.055071 0.036664 9.780309 7.816986 12.553409 9.600419 -3885 0.084883 0.066289 0.087187 0.045543 11.523019 9.084708 14.440581 12.737643 -3886 0.107741 0.083702 0.092985 0.063429 11.922099 11.049375 12.343367 11.823666 -3887 0.083354 0.086499 0.035346 0.038812 10.836024 9.235132 16.478730 13.673094 -3888 0.067930 0.058925 0.039848 0.021530 12.832486 9.432957 22.695893 17.227700 -3889 0.066992 0.082334 0.026215 0.033384 7.507555 7.230604 11.524994 11.122403 -3890 0.078106 0.062923 0.051464 0.034602 11.734346 10.747698 12.950192 10.194873 -3891 0.086638 0.063804 0.038643 0.026659 5.476149 5.448490 12.850744 14.941781 -3892 0.058521 0.043676 0.038804 0.028552 7.398724 10.801377 9.403296 12.188403 -3893 0.065273 0.054775 0.029656 0.030069 8.066981 6.073401 14.169607 11.082536 -3894 0.057711 0.052732 0.030377 0.029338 9.646716 7.962478 11.720941 10.921916 -3895 0.077670 0.076807 0.054043 0.046045 11.565901 9.057704 18.571468 12.892160 -3896 0.088504 0.076102 0.046293 0.045716 11.760145 11.518817 11.121955 10.894467 -3897 0.050815 0.038157 0.037724 0.020746 13.073665 10.199266 11.847928 8.264777 -3898 0.073697 0.058286 0.025831 0.026087 6.521417 6.196883 9.471175 8.372029 -3899 0.095789 0.067495 0.062243 0.045771 5.956019 5.641689 8.724524 7.772540 -3900 0.110691 0.102083 0.066611 0.046412 16.107938 12.007309 18.097394 15.879287 -3901 0.059789 0.043618 0.039230 0.030174 7.232226 6.988398 9.292606 9.170214 -3902 0.044257 0.041714 0.032857 0.022116 9.126504 7.013219 8.795611 7.857076 -3903 0.122056 0.089946 0.060641 0.047168 15.185621 10.904933 14.582495 11.979002 -3904 0.121848 0.092618 0.065455 0.064384 8.897069 7.421104 13.346854 12.574616 -3905 0.091182 0.068812 0.051070 0.045634 11.152281 10.996051 12.871919 9.806721 -3906 0.054015 0.048970 0.043853 0.032251 10.618893 10.508235 13.898473 10.708700 -3907 0.079063 0.104804 0.054089 0.045626 6.746726 5.472903 10.059503 9.530164 -3908 0.086348 0.064242 0.045181 0.024555 7.958076 8.234050 10.334938 9.175060 -3909 0.047845 0.057185 0.022100 0.025030 9.724015 9.065468 11.558691 11.166239 -3910 0.093807 0.083858 0.078061 0.066878 7.541762 6.469849 13.119953 10.305722 -3911 0.058433 0.050096 0.040195 0.039445 14.413279 13.760032 19.046031 17.962426 -3912 0.078704 0.090745 0.043037 0.044746 10.842236 8.775473 13.414605 10.677731 -3913 0.091930 0.072088 0.027974 0.027730 10.868366 8.831692 11.365644 10.902394 -3914 0.095527 0.067064 0.064265 0.046303 6.185577 5.552221 8.675832 10.244258 -3915 0.062624 0.063172 0.040674 0.064234 7.019830 7.683958 9.824463 9.691739 -3916 0.080646 0.072359 0.046986 0.031021 9.238235 9.338239 16.398574 14.740783 -3917 0.107578 0.079909 0.047772 0.046021 7.880670 6.708299 14.366949 11.390687 -3918 0.062502 0.059271 0.036134 0.029860 10.823588 8.617560 11.977223 11.177240 -3919 0.071941 0.074946 0.058327 0.053176 12.068409 12.216961 18.700916 17.466266 -3920 0.097288 0.087750 0.058612 0.047352 11.603608 10.233815 11.338884 12.395895 -3921 0.085245 0.053273 0.046007 0.036623 12.107794 12.857678 11.804099 12.060508 -3922 0.078697 0.071288 0.045882 0.032806 9.879096 8.210897 12.428459 9.288727 -3923 0.056528 0.048117 0.041146 0.037369 7.308498 5.470072 10.420652 7.578329 -3924 0.082743 0.073501 0.083249 0.065896 9.369943 10.205473 15.161005 12.347701 -3925 0.065738 0.061536 0.043714 0.039951 11.775667 11.128828 16.190944 12.390993 -3926 0.064504 0.087729 0.037741 0.033503 7.523123 6.199746 9.073030 8.357251 -3927 0.075837 0.050925 0.055003 0.033146 10.861847 9.532715 10.167239 12.060094 -3928 0.054051 0.034784 0.030681 0.023070 9.103688 7.689069 10.171546 7.353814 -3929 0.092398 0.094711 0.073207 0.051950 9.464394 9.894595 9.586980 9.872138 -3930 0.083745 0.044515 0.033803 0.024251 9.334291 9.758060 15.211457 13.673307 -3931 0.089192 0.077733 0.036761 0.037212 10.835759 8.238668 10.337718 8.323359 -3932 0.060253 0.052005 0.036559 0.035047 10.501101 9.797051 11.605855 11.387328 -3933 0.070320 0.066179 0.046163 0.048307 9.523321 9.348307 11.229994 9.703288 -3934 0.060974 0.049699 0.036473 0.024303 8.464609 6.760866 10.618081 8.152456 -3935 0.067245 0.092904 0.065090 0.100726 14.902469 14.879054 17.040438 14.997282 -3936 0.075592 0.051636 0.033230 0.021102 9.637392 10.881674 11.937097 13.523163 -3937 0.092142 0.073092 0.060743 0.046025 8.160370 5.324017 15.194706 11.418413 -3938 0.069263 0.066370 0.033093 0.029900 8.732248 8.948564 13.821463 12.648920 -3939 0.105204 0.092274 0.056918 0.064363 11.588162 13.130368 12.378334 13.591821 -3940 0.110084 0.076834 0.071728 0.043279 13.215330 11.054059 15.800071 14.368650 -3941 0.073709 0.046862 0.061875 0.034952 10.305610 8.291642 11.263941 9.483878 -3942 0.072378 0.064141 0.047899 0.054594 11.004932 9.447020 15.015312 10.606275 -3943 0.053105 0.045837 0.025253 0.016316 8.668136 6.949152 13.660686 11.179622 -3944 0.077113 0.066146 0.045583 0.026010 6.738288 6.292251 13.497526 12.929326 -3945 0.061417 0.068437 0.036161 0.027608 8.935606 7.152534 13.606575 10.800268 -3946 0.064050 0.059781 0.064736 0.049292 7.967340 6.282891 11.270127 9.046556 -3947 0.046513 0.049388 0.025308 0.029654 8.507044 7.013042 10.644886 11.221974 -3948 0.112849 0.129318 0.074672 0.067515 14.136915 9.157208 12.644098 8.310654 -3949 0.058197 0.043060 0.027488 0.028526 11.981638 7.749228 11.884029 7.428167 -3950 0.086848 0.064638 0.065354 0.034784 7.738202 6.467026 12.353544 9.638183 -3951 0.054262 0.052686 0.038215 0.026056 9.221758 8.895575 11.596456 10.974064 -3952 0.109791 0.111007 0.045668 0.038726 10.237341 9.698039 10.771833 8.732338 -3953 0.068238 0.066098 0.034827 0.032374 10.246835 8.777541 13.244933 8.469617 -3954 0.051845 0.037102 0.027604 0.017740 11.298819 7.208766 9.338687 7.488332 -3955 0.097042 0.070948 0.066126 0.055492 9.322741 6.802198 10.920645 11.210142 -3956 0.096323 0.082678 0.044223 0.040548 6.366595 7.595695 7.071313 6.972454 -3957 0.038433 0.027932 0.018587 0.015157 8.357052 8.132320 9.538426 9.179707 -3958 0.085802 0.084912 0.043445 0.038327 13.702994 14.083978 16.605673 14.002713 -3959 0.046694 0.056525 0.032356 0.028769 7.737965 7.700255 15.109877 14.076140 -3960 0.083176 0.060697 0.034203 0.026265 9.007552 9.472200 12.752428 15.435811 -3961 0.113921 0.064213 0.067669 0.043301 11.129913 6.743647 17.913484 14.197771 -3962 0.116850 0.130855 0.040334 0.040834 7.841671 8.032875 9.296465 10.742750 -3963 0.049669 0.044037 0.037429 0.019986 12.426122 10.213457 10.736424 11.735703 -3964 0.043115 0.048627 0.024107 0.018738 7.783687 7.030997 15.787429 13.279539 -3965 0.061434 0.042515 0.023618 0.021955 9.410636 8.757817 13.207011 11.327613 -3966 0.061353 0.051317 0.025818 0.030020 8.576269 6.943323 9.192247 6.150703 -3967 0.103284 0.086828 0.037989 0.034837 13.701065 14.414171 15.622936 13.553581 -3968 0.088434 0.067396 0.059932 0.046143 16.115076 15.549003 16.518359 19.371409 -3969 0.068820 0.052649 0.044545 0.042208 7.943576 8.162338 6.649260 6.271765 -3970 0.065070 0.050966 0.040106 0.033517 8.483049 8.130912 9.726938 8.063032 -3971 0.094087 0.092413 0.058145 0.041351 16.942671 13.699671 21.633116 18.208762 -3972 0.042737 0.047015 0.034070 0.031437 9.501357 9.680778 13.088215 12.427551 -3973 0.134921 0.117511 0.099983 0.069561 20.347687 13.669894 19.132586 14.202569 -3974 0.067138 0.059713 0.019737 0.016136 8.519371 8.871131 11.249756 10.857339 -3975 0.054196 0.051584 0.044294 0.036677 8.579014 7.033035 11.672076 12.635461 -3976 0.057437 0.043473 0.022191 0.015502 9.563092 8.258662 14.857363 11.830351 -3977 0.069433 0.074683 0.075169 0.073641 14.716357 10.713848 20.041902 17.637656 -3978 0.095747 0.054368 0.068360 0.034844 10.324587 9.446336 8.415940 9.326599 -3979 0.083957 0.065731 0.041706 0.046870 9.585688 9.192916 16.351109 16.180529 -3980 0.053370 0.055115 0.067898 0.051390 11.539703 7.319926 13.753332 9.925562 -3981 0.146325 0.137641 0.086882 0.085715 10.664649 8.357325 13.785508 11.305826 -3982 0.073592 0.064027 0.039265 0.040328 8.498271 9.414629 12.773012 13.084868 -3983 0.070781 0.090068 0.034091 0.041611 15.567021 11.799202 20.651263 15.914380 -3984 0.093650 0.072971 0.075367 0.052903 10.211744 9.404493 12.600057 12.208461 -3985 0.081309 0.056523 0.046407 0.036552 7.787110 7.735254 9.608331 8.980481 -3986 0.083105 0.064412 0.036560 0.028863 10.660764 11.967495 8.741974 8.229365 -3987 0.085778 0.078173 0.049149 0.045345 11.777187 9.048852 11.925892 9.915156 -3988 0.089223 0.069053 0.049267 0.033460 15.270744 12.012718 13.242813 11.215180 -3989 0.078561 0.110191 0.044884 0.038683 8.055422 7.005876 15.109182 14.023371 -3990 0.121369 0.080061 0.071516 0.045038 14.434732 11.747370 10.045696 8.611850 -3991 0.054263 0.066833 0.029953 0.030029 7.806751 7.674130 9.397013 10.130832 -3992 0.085615 0.081502 0.036857 0.041424 14.046207 10.099933 11.440361 6.984962 -3993 0.061034 0.063078 0.026570 0.032490 11.829722 12.047340 13.092524 11.241094 -3994 0.046681 0.038164 0.023460 0.019277 4.526872 4.789777 8.943723 8.627844 -3995 0.072551 0.099857 0.041708 0.057058 8.663991 7.342270 8.477034 8.876526 -3996 0.059166 0.032417 0.037470 0.015502 8.042617 7.359561 9.081203 8.745092 -3997 0.101035 0.068357 0.053292 0.040835 16.464000 12.418417 19.555965 16.364444 -3998 0.100317 0.081929 0.062221 0.054368 14.849753 10.539148 13.557780 13.532171 -3999 0.097582 0.075549 0.076298 0.066189 11.035809 10.473285 17.693351 15.242571 -4000 0.097600 0.095375 0.092831 0.074175 12.160627 11.177521 17.953142 13.724132 -4001 0.085633 0.044940 0.043449 0.019796 9.266014 7.571531 10.154655 10.398749 -4002 0.045402 0.036806 0.032517 0.026601 9.885363 8.194456 11.142200 8.510895 -4003 0.096807 0.069866 0.054249 0.045046 10.003704 10.343604 12.861841 11.396787 -4004 0.037317 0.040984 0.019366 0.016721 6.130783 6.299889 5.769733 5.716600 -4005 0.099960 0.060836 0.042914 0.036952 7.520438 6.634703 13.835342 10.726529 -4006 0.121599 0.093280 0.061187 0.056875 12.048708 11.311340 12.921646 11.981277 -4007 0.124102 0.085858 0.058733 0.032409 11.071021 8.749790 13.009551 8.347477 -4008 0.091069 0.069854 0.043547 0.023637 9.598380 11.892279 7.409733 7.766411 -4009 0.025944 0.027038 0.020932 0.017504 7.152267 6.958317 9.484568 9.035657 -4010 0.081015 0.057571 0.037810 0.027911 10.961848 9.016000 14.762270 11.912530 -4011 0.120852 0.094071 0.063045 0.069122 9.259341 10.339829 16.863210 18.899414 -4012 0.080729 0.046512 0.023471 0.023632 9.578034 11.206234 13.883253 18.895890 -4013 0.078997 0.046020 0.046816 0.024265 13.625360 15.534926 15.568794 12.111404 -4014 0.074294 0.057917 0.071331 0.056310 9.615284 8.007370 10.781237 10.167925 -4015 0.130290 0.073233 0.086614 0.051261 11.704248 11.192918 16.706243 14.169479 -4016 0.099211 0.093706 0.078557 0.055007 13.080783 10.865477 11.756621 8.286701 -4017 0.094695 0.064836 0.074894 0.072053 9.593496 9.424763 8.397174 11.901844 -4018 0.086148 0.065329 0.039463 0.033765 13.237466 12.302859 16.066517 13.497114 -4019 0.065405 0.057238 0.061282 0.043156 9.706526 7.710622 14.956566 11.682319 -4020 0.105247 0.056971 0.051536 0.033716 11.151099 9.034254 13.295518 13.441681 -4021 0.058185 0.047830 0.033172 0.026830 8.217624 7.502169 9.791119 8.386252 -4022 0.038713 0.040236 0.015587 0.020973 4.618373 4.415603 6.941661 6.274159 -4023 0.061262 0.047095 0.029362 0.021381 8.806144 7.078049 9.458933 8.689143 -4024 0.074527 0.057782 0.060814 0.061561 6.562670 7.268573 10.881882 8.682506 -4025 0.086331 0.052811 0.054994 0.045046 8.391851 8.843566 11.602768 11.191620 -4026 0.036398 0.039172 0.020182 0.026716 7.220449 5.090627 17.296866 12.081506 -4027 0.095116 0.067550 0.044671 0.047977 12.178723 9.037592 16.656652 11.926156 -4028 0.079898 0.067251 0.047344 0.034877 6.950371 5.323476 13.426046 10.253115 -4029 0.046865 0.047059 0.039539 0.024951 8.927391 10.555424 11.413615 11.791305 -4030 0.068206 0.056294 0.040632 0.039495 18.729398 15.378271 21.232989 16.503661 -4031 0.065936 0.052763 0.037937 0.023415 9.952265 9.056739 10.818972 9.841433 -4032 0.054671 0.048697 0.031037 0.020397 13.380288 12.489834 13.342873 13.745788 -4033 0.123783 0.091729 0.106328 0.101982 13.678647 9.006007 13.218296 9.206953 -4034 0.055536 0.048653 0.046267 0.035060 7.585054 5.645172 10.415031 9.984320 -4035 0.061327 0.071820 0.033178 0.024410 11.137368 11.164007 16.269012 13.217492 -4036 0.087273 0.070351 0.098627 0.077214 10.714572 11.562678 13.050953 11.017311 -4037 0.064239 0.067106 0.050026 0.037551 7.477681 7.735156 9.195031 8.808842 -4038 0.101252 0.086117 0.078860 0.058440 10.671004 9.349011 13.516281 12.999357 -4039 0.082248 0.070933 0.030202 0.034846 12.463282 10.199173 18.324586 12.992420 -4040 0.086207 0.081172 0.031420 0.045997 14.645055 12.466407 20.897922 17.157336 -4041 0.085412 0.080156 0.056179 0.057559 7.125606 5.339024 8.914511 7.548378 -4042 0.092184 0.066876 0.027864 0.023158 9.992226 10.040754 10.887903 10.514738 -4043 0.059822 0.061115 0.024850 0.025218 8.345119 5.808614 11.675637 9.463138 -4044 0.076819 0.095152 0.061561 0.056262 13.446055 11.361977 13.582258 10.777459 -4045 0.070753 0.066909 0.043156 0.032483 6.771498 6.859405 13.824658 12.516386 -4046 0.073279 0.071113 0.035729 0.033549 9.776507 8.483757 14.490861 12.228610 -4047 0.060788 0.048318 0.038239 0.029165 14.029263 10.303769 18.084727 13.603792 -4048 0.089227 0.081290 0.069118 0.054326 14.102561 9.151978 12.838482 9.215242 -4049 0.058144 0.051139 0.058001 0.031176 8.465728 9.836862 10.217398 11.347320 -4050 0.145178 0.108148 0.095745 0.070970 12.499855 12.914506 19.130256 16.540986 -4051 0.063042 0.060755 0.053073 0.044722 15.451976 12.067276 12.645544 10.892338 -4052 0.082858 0.068295 0.068365 0.046423 14.913774 8.698031 19.279140 14.565779 -4053 0.126972 0.066494 0.075882 0.031109 8.228218 8.520603 15.203262 11.429555 -4054 0.103077 0.092784 0.038352 0.041060 13.206097 10.989605 13.223240 11.227921 -4055 0.107297 0.105332 0.073871 0.057977 9.532502 9.423127 11.237601 11.066033 -4056 0.056217 0.034989 0.035835 0.023055 8.366568 7.529971 12.152476 12.635660 -4057 0.043946 0.043118 0.020724 0.017152 9.864773 9.181108 10.054481 10.744983 -4058 0.099293 0.067050 0.061884 0.044021 9.638230 8.062805 15.902946 11.687374 -4059 0.069167 0.067414 0.039698 0.038701 9.262697 8.734080 9.809686 9.470751 -4060 0.061026 0.047308 0.027693 0.021788 9.893136 9.042408 11.294043 9.842120 -4061 0.087782 0.060855 0.052038 0.034613 9.139740 8.396468 9.474828 9.951268 -4062 0.105599 0.095492 0.048300 0.043092 9.087788 9.445524 9.605683 10.953012 -4063 0.058367 0.050941 0.032366 0.036147 8.175755 6.695046 13.963349 12.766461 -4064 0.041894 0.042443 0.021414 0.014080 10.121515 11.145382 12.997088 12.761638 -4065 0.061759 0.045315 0.027896 0.024187 10.499516 8.810188 12.299360 12.836288 -4066 0.067281 0.058317 0.053155 0.027922 7.301669 7.518014 9.092614 8.053247 -4067 0.081225 0.060913 0.031572 0.031939 7.681641 5.641350 9.957377 8.061738 -4068 0.044943 0.046230 0.037471 0.045219 10.774975 10.388545 9.882141 8.305724 -4069 0.052711 0.053864 0.033243 0.028473 13.081990 11.287133 15.810873 11.522496 -4070 0.040862 0.040782 0.031048 0.030478 10.308976 8.953484 11.997473 9.322792 -4071 0.080309 0.071741 0.024409 0.023943 12.003583 10.067125 14.835939 12.919555 -4072 0.062462 0.059679 0.019537 0.023080 8.997425 6.482151 9.526750 9.385581 -4073 0.070129 0.052602 0.039059 0.036303 11.557629 10.057517 11.481238 12.002401 -4074 0.111514 0.083099 0.039532 0.028088 11.849792 9.407783 14.796750 11.538907 -4075 0.076671 0.053134 0.045784 0.030059 10.653002 9.395226 11.969034 8.874716 -4076 0.052861 0.037310 0.020672 0.013105 8.694638 6.723374 12.374510 8.881696 -4077 0.093215 0.080908 0.037824 0.037969 10.124952 9.389717 8.784140 7.979216 -4078 0.103739 0.060988 0.107367 0.068672 14.463752 11.415027 21.530262 21.108673 -4079 0.072972 0.060967 0.043443 0.030645 9.885072 11.539538 12.670234 16.648825 -4080 0.098175 0.097676 0.063761 0.066539 9.155998 8.970611 13.014857 12.846938 -4081 0.078941 0.068839 0.049308 0.041704 11.304083 8.383551 15.031964 10.060427 -4082 0.087870 0.080844 0.142820 0.067753 12.829327 8.651594 13.328300 12.618398 -4083 0.058982 0.049291 0.041382 0.032546 9.198000 8.830142 13.684640 15.237299 -4084 0.094491 0.066319 0.046453 0.031613 9.824049 9.253519 14.646055 14.762453 -4085 0.109732 0.089352 0.076407 0.064222 13.555359 11.058893 21.315171 17.047564 -4086 0.097783 0.066872 0.091793 0.048051 13.718932 11.302316 15.641991 14.453109 -4087 0.088884 0.070269 0.052156 0.040217 9.248257 8.708402 11.153753 9.470279 -4088 0.100009 0.064220 0.038048 0.031620 9.275745 8.331880 9.417122 6.668745 -4089 0.060775 0.041977 0.021661 0.016865 10.914296 9.779880 19.461956 16.246692 -4090 0.095832 0.062136 0.094353 0.058371 12.048906 9.648041 9.550922 9.669335 -4091 0.057486 0.064569 0.024274 0.023886 13.867946 12.891953 11.598736 12.468317 -4092 0.074493 0.066991 0.044025 0.027569 5.160485 5.731530 6.509301 7.884699 -4093 0.107326 0.085989 0.049563 0.048021 11.282937 9.587210 16.995060 12.470624 -4094 0.063280 0.045566 0.017309 0.021664 9.806058 8.086373 11.317383 11.031388 -4095 0.103205 0.087731 0.058935 0.039981 10.094517 11.997564 11.496844 13.846913 -4096 0.074091 0.069947 0.062348 0.037175 8.808020 8.032721 10.892814 7.621745 -4097 0.067974 0.062526 0.036828 0.034949 7.401232 6.420931 12.543335 10.357495 -4098 0.062694 0.070215 0.034099 0.030772 11.423868 7.712540 12.738510 9.832134 -4099 0.074600 0.065366 0.086374 0.041260 14.098683 10.541995 14.399467 8.250101 -4100 0.044328 0.041634 0.022446 0.022360 9.817947 7.009416 10.789013 7.953109 -4101 0.076396 0.059107 0.064287 0.050600 11.592745 12.406367 18.288461 17.374505 -4102 0.062778 0.050384 0.023288 0.022161 13.179162 9.579365 10.656207 10.209746 -4103 0.100442 0.085583 0.078636 0.059515 10.671284 10.387390 13.576794 12.115114 -4104 0.039566 0.036822 0.025352 0.021297 10.595974 8.922646 11.792315 10.075674 -4105 0.053047 0.048934 0.029995 0.021301 9.579283 11.913862 11.309898 11.576079 -4106 0.063624 0.055057 0.032208 0.026377 13.474641 9.687460 14.572943 11.580774 -4107 0.095079 0.100908 0.081440 0.058688 8.309853 6.755937 12.421469 9.728279 -4108 0.057038 0.040121 0.073251 0.051536 9.634885 7.143421 15.300325 10.646030 -4109 0.099470 0.061276 0.049262 0.033548 11.916660 11.684698 12.359706 10.921033 -4110 0.050895 0.034144 0.038451 0.020829 8.221941 7.212494 9.748112 8.921863 -4111 0.043840 0.055569 0.022406 0.032509 9.621018 8.230754 10.531473 7.836343 -4112 0.089554 0.084456 0.038228 0.039812 9.229354 9.124946 17.212488 14.498726 -4113 0.117375 0.112272 0.084052 0.053766 8.395411 7.652331 9.901991 8.331946 -4114 0.113621 0.068713 0.090770 0.071254 12.875982 10.024232 13.282551 10.505206 -4115 0.053313 0.046784 0.029450 0.022311 11.386575 8.995456 13.862043 10.482125 -4116 0.127759 0.090588 0.077226 0.078055 12.862403 10.890881 12.462726 11.262452 -4117 0.049940 0.056064 0.032119 0.024366 7.949010 8.097295 12.006807 12.164665 -4118 0.058746 0.057946 0.050713 0.049348 12.151656 12.048023 18.673373 14.514551 -4119 0.071153 0.059871 0.055408 0.041336 11.466159 8.665415 16.185565 15.952885 -4120 0.071340 0.064759 0.053754 0.042354 7.115838 6.927582 12.910586 13.064430 -4121 0.071914 0.057806 0.038966 0.022079 11.496039 10.763147 13.240169 14.229480 -4122 0.090787 0.088181 0.063359 0.048667 10.528895 9.772410 12.456462 11.891232 -4123 0.114928 0.072315 0.077295 0.058071 12.192155 12.530393 21.264243 17.846672 -4124 0.066185 0.044192 0.045288 0.028550 8.546890 6.590799 11.159866 7.978764 -4125 0.102946 0.109362 0.068235 0.056638 11.775732 9.386019 16.750882 13.517971 -4126 0.043113 0.055324 0.029468 0.035140 9.960659 9.137985 9.742152 8.140649 -4127 0.072148 0.054705 0.040684 0.034956 7.581194 5.792997 8.387103 6.570058 -4128 0.059061 0.062871 0.047629 0.038359 12.918550 10.408429 16.873491 15.216271 -4129 0.067302 0.068019 0.039598 0.056789 9.726437 6.636985 12.896034 11.886992 -4130 0.089907 0.124286 0.052328 0.057886 8.877573 8.493534 14.515181 14.519013 -4131 0.114891 0.070871 0.062335 0.044697 9.449671 6.950571 12.382949 11.244764 -4132 0.044807 0.049250 0.020934 0.014962 9.611512 7.489787 12.869206 9.721990 -4133 0.065573 0.046821 0.036941 0.019496 9.536082 7.514798 12.013398 9.187221 -4134 0.060471 0.054118 0.046245 0.027533 8.229009 6.077210 10.082372 8.497497 -4135 0.063772 0.050437 0.034882 0.051026 12.814768 12.027276 11.564083 10.642981 -4136 0.051195 0.053763 0.049377 0.032897 7.983688 6.099347 10.774957 9.263014 -4137 0.055876 0.047163 0.030092 0.033348 8.965943 7.469052 7.293917 7.337801 -4138 0.070812 0.052853 0.027188 0.018139 8.611199 7.556345 11.437232 11.754979 -4139 0.093658 0.069903 0.062135 0.040923 13.787506 11.089187 17.954980 14.216971 -4140 0.053415 0.059079 0.021989 0.023822 7.665389 6.654807 16.540567 12.523556 -4141 0.032239 0.041263 0.025380 0.021223 11.183109 9.944291 15.290531 14.308076 -4142 0.081684 0.084340 0.043463 0.045182 9.932549 8.749156 9.247611 9.368631 -4143 0.053575 0.058974 0.036303 0.032731 5.438606 5.565503 10.000532 9.569917 -4144 0.085653 0.082129 0.074754 0.071095 9.761566 9.745017 18.527548 14.112516 -4145 0.063330 0.046778 0.046973 0.024933 10.958244 8.598120 12.107173 9.164564 -4146 0.047282 0.052832 0.043020 0.030467 11.284058 8.533158 12.453042 7.286776 -4147 0.071505 0.067178 0.056880 0.051765 11.604059 9.216940 11.770694 10.120031 -4148 0.077641 0.060545 0.041437 0.032533 10.914355 9.464214 16.208226 13.377477 -4149 0.119422 0.094280 0.067760 0.050046 12.634345 10.570522 18.909684 13.964471 -4150 0.097706 0.108643 0.071546 0.069786 8.804765 11.204490 14.289934 13.724851 -4151 0.073056 0.044699 0.053016 0.034061 13.387518 13.018984 10.900100 9.393347 -4152 0.127687 0.147052 0.117871 0.061154 15.974779 14.803105 23.187517 15.267604 -4153 0.088607 0.073669 0.076179 0.034777 13.256739 9.237574 18.233714 13.353698 -4154 0.082036 0.062031 0.037308 0.033228 9.316065 7.801525 15.958505 12.988085 -4155 0.063093 0.066951 0.034349 0.033708 10.304746 8.517593 14.009360 10.614629 -4156 0.056996 0.048559 0.030285 0.028670 7.215259 7.181310 9.304726 8.328909 -4157 0.081790 0.081296 0.065472 0.060311 16.132635 12.458103 13.981958 13.441471 -4158 0.082619 0.059225 0.063722 0.055879 12.587241 11.673195 18.028702 14.719500 -4159 0.054491 0.043525 0.044104 0.031492 8.506163 7.188006 12.732997 12.765294 -4160 0.072010 0.041919 0.036063 0.026373 11.122007 6.551475 13.213461 8.838152 -4161 0.074396 0.082004 0.038980 0.042793 9.546104 9.825912 17.296350 14.090065 -4162 0.113709 0.109097 0.067867 0.066767 10.524712 9.828195 13.238849 13.797589 -4163 0.064799 0.072727 0.032709 0.034813 7.972547 8.050814 8.926568 10.669386 -4164 0.140753 0.077964 0.084454 0.028592 10.208465 10.212905 11.676225 10.873227 -4165 0.075131 0.058723 0.047719 0.027774 8.602976 7.792471 19.298835 16.012527 -4166 0.066053 0.065509 0.039823 0.033846 7.820130 8.239711 11.372275 9.243227 -4167 0.069463 0.049806 0.054420 0.045307 9.966791 9.388096 15.637874 13.654734 -4168 0.070017 0.060485 0.022699 0.025265 7.913871 9.696771 11.581666 13.242628 -4169 0.066377 0.054216 0.057336 0.050720 9.503800 7.556132 11.215843 8.535869 -4170 0.075007 0.059064 0.041383 0.031379 10.409203 9.010729 14.966593 14.335667 -4171 0.123910 0.091683 0.056078 0.051066 10.900779 9.693682 12.982335 11.141041 -4172 0.037233 0.033231 0.023380 0.021084 8.065623 9.619910 12.019647 10.588685 -4173 0.060784 0.055223 0.036902 0.027313 7.586910 8.656958 7.578117 6.524609 -4174 0.066135 0.034793 0.043053 0.022042 9.394365 7.799836 14.304677 11.428339 -4175 0.120278 0.079082 0.071927 0.051415 8.345518 8.252825 15.218759 11.609370 -4176 0.142057 0.090608 0.116309 0.058411 12.306806 11.471171 13.000617 14.291698 -4177 0.078012 0.091917 0.034917 0.030834 8.104235 7.865601 13.137792 13.202923 -4178 0.078747 0.056129 0.037637 0.029861 10.928505 8.104288 10.343820 10.215130 -4179 0.057915 0.058136 0.041178 0.034183 11.784317 9.577757 12.874914 9.738147 -4180 0.064344 0.053338 0.021557 0.018054 7.943512 6.560698 8.069734 8.343772 -4181 0.057743 0.058056 0.032938 0.028545 13.776695 8.856156 15.594134 11.921839 -4182 0.099184 0.090063 0.047771 0.043885 7.884751 7.918645 9.149093 8.354400 -4183 0.069446 0.056350 0.054214 0.032844 7.486899 8.681152 13.937304 10.668484 -4184 0.103672 0.054348 0.072011 0.031021 12.084772 6.851193 18.105321 15.826422 -4185 0.077971 0.073390 0.028812 0.021823 15.008638 14.095738 16.088446 14.556772 -4186 0.106493 0.079195 0.069620 0.056586 10.722631 9.596841 15.620351 15.246927 -4187 0.081367 0.065002 0.043104 0.026167 8.532094 6.548358 9.691240 9.507081 -4188 0.111709 0.060662 0.052892 0.025535 10.264571 8.629817 17.434052 14.183780 -4189 0.057128 0.062314 0.020702 0.020606 11.192319 8.105074 13.417186 12.294236 -4190 0.112252 0.098056 0.040062 0.035418 9.780510 8.647116 9.773310 9.956610 -4191 0.052766 0.052745 0.048785 0.050653 13.238036 10.410047 14.022729 11.500691 -4192 0.058770 0.055604 0.033933 0.028864 8.581288 7.593085 13.000358 9.852710 -4193 0.083092 0.070477 0.065221 0.050745 8.601220 8.837596 14.028237 12.426462 -4194 0.069605 0.059347 0.034341 0.027599 8.644357 8.624248 9.547017 10.853830 -4195 0.061684 0.064145 0.053412 0.053626 9.991264 8.715875 11.321600 10.617208 -4196 0.113342 0.099009 0.088527 0.058034 10.024620 7.530985 14.268230 11.932262 -4197 0.060416 0.058291 0.053966 0.039339 8.543682 8.177926 11.312780 11.655799 -4198 0.057072 0.053138 0.053536 0.037290 9.227359 7.550973 7.357369 8.182910 -4199 0.098755 0.111394 0.071209 0.051251 8.204631 8.479041 9.885530 10.552014 -4200 0.070154 0.080284 0.036269 0.054859 12.955849 11.514137 20.078700 19.254508 -4201 0.055595 0.048295 0.036781 0.037169 6.768459 5.458663 11.057718 9.093302 -4202 0.045759 0.033380 0.023522 0.024217 10.365863 8.497399 14.830626 10.619869 -4203 0.058945 0.037229 0.028857 0.019769 7.114207 7.363286 9.371268 9.228823 -4204 0.059068 0.041563 0.025115 0.022080 7.689108 8.347940 7.983610 6.970173 -4205 0.060413 0.044728 0.037456 0.021643 5.837690 6.771066 8.479009 8.958391 -4206 0.092558 0.092446 0.056606 0.050016 6.155324 5.985476 10.131182 9.843102 -4207 0.067111 0.059808 0.020817 0.017323 7.002717 6.256315 8.772672 6.693981 -4208 0.053322 0.040896 0.033652 0.026502 9.787221 9.259087 9.411260 7.783388 -4209 0.056592 0.054462 0.025512 0.018717 11.380002 7.809355 8.797087 9.016266 -4210 0.088218 0.075167 0.033669 0.033783 13.106867 10.504915 16.175762 14.279391 -4211 0.038327 0.035737 0.029679 0.023390 11.414222 12.195552 10.755495 12.226743 -4212 0.095688 0.092436 0.040027 0.055472 10.435466 8.576377 16.429821 11.738692 -4213 0.095156 0.091147 0.069009 0.033640 13.945464 9.061011 13.001346 13.868961 -4214 0.113999 0.083900 0.046176 0.040564 11.754731 12.438322 12.404202 10.959058 -4215 0.095392 0.087090 0.062342 0.050641 12.942786 8.356216 17.831992 9.191727 -4216 0.086939 0.082166 0.053502 0.050478 10.196686 9.512490 19.187748 19.116852 -4217 0.052817 0.049286 0.020040 0.021199 9.080761 5.871051 9.265476 8.088696 -4218 0.108510 0.098452 0.055831 0.053409 9.449654 9.686558 12.605970 9.753624 -4219 0.043578 0.043489 0.039532 0.022767 6.863677 5.869139 7.912412 8.420989 -4220 0.059578 0.041486 0.026459 0.015813 6.982106 5.205221 10.903147 8.788218 -4221 0.068675 0.045093 0.034828 0.019738 6.465883 6.521565 12.492852 12.070211 -4222 0.114273 0.078888 0.055227 0.057257 9.486387 6.536742 9.991552 8.332545 -4223 0.078542 0.075395 0.056173 0.046740 8.349214 9.438071 9.078694 11.990063 -4224 0.084830 0.069445 0.061557 0.058593 8.888393 8.251183 13.937673 12.747925 -4225 0.106263 0.079062 0.044480 0.024264 11.920398 8.090437 17.990396 9.903823 -4226 0.111201 0.107687 0.047336 0.043271 11.479284 10.071609 12.790105 11.350902 -4227 0.094084 0.092732 0.050136 0.055293 10.698165 9.654015 15.988178 14.797186 -4228 0.115816 0.060416 0.040985 0.027150 11.434044 9.446060 11.041930 11.173186 -4229 0.117367 0.100990 0.073614 0.072377 11.494707 13.178588 19.206128 16.540874 -4230 0.067110 0.039792 0.037274 0.025028 8.373663 6.254484 8.076689 5.799779 -4231 0.095074 0.076249 0.068392 0.036443 10.159108 9.348752 14.692342 13.538447 -4232 0.074024 0.061107 0.035666 0.032577 8.860899 8.326874 11.009615 12.656666 -4233 0.086402 0.065243 0.047377 0.042307 13.178269 13.010978 15.717840 14.901462 -4234 0.076258 0.044198 0.073039 0.044685 10.684033 8.296179 12.373506 9.400684 -4235 0.065591 0.069515 0.059465 0.055045 9.088959 7.760761 12.329513 13.734256 -4236 0.064580 0.056075 0.049956 0.019879 10.449259 9.628218 11.244809 9.475116 -4237 0.077717 0.091329 0.025653 0.022687 9.053228 8.939951 11.557170 9.689578 -4238 0.053911 0.046549 0.044241 0.027283 7.750337 8.814551 6.806481 9.305196 -4239 0.068610 0.054873 0.060623 0.048013 9.369741 7.798356 10.647892 8.686301 -4240 0.062294 0.044269 0.041296 0.027495 9.631156 9.828800 12.614058 8.695898 -4241 0.057037 0.050024 0.038499 0.027584 8.870765 8.936529 9.488938 8.578028 -4242 0.082990 0.107161 0.052252 0.061776 14.130801 13.868046 17.927996 16.562812 -4243 0.055329 0.053034 0.040593 0.034221 9.183284 7.909732 8.696254 7.749087 -4244 0.065819 0.060560 0.027841 0.032764 7.714065 6.409631 10.846791 8.788533 -4245 0.055868 0.048880 0.025237 0.024408 9.355397 8.102163 8.734516 7.234588 -4246 0.109937 0.095839 0.053198 0.047173 11.388498 9.514680 16.092558 12.334646 -4247 0.097577 0.081556 0.061171 0.036758 7.239377 8.329670 9.172419 8.558879 -4248 0.100737 0.094799 0.066294 0.056404 13.985597 11.099048 18.916194 15.356502 -4249 0.056994 0.046543 0.022962 0.017337 8.863319 6.702437 10.895684 9.161218 -4250 0.087269 0.053136 0.072413 0.044813 8.939597 6.634656 13.407859 10.865546 -4251 0.072833 0.056322 0.038750 0.027212 10.506439 9.555429 9.095870 9.771261 -4252 0.075565 0.051586 0.065579 0.031128 10.026918 9.313213 9.379902 10.914876 -4253 0.081098 0.082168 0.082930 0.086534 8.860776 8.713137 17.956364 17.168097 -4254 0.096558 0.055384 0.073225 0.041109 10.460547 9.342355 13.367161 11.917337 -4255 0.040796 0.043288 0.023981 0.016938 8.387472 9.691274 23.636624 18.342806 -4256 0.119184 0.115213 0.061164 0.043988 13.325993 12.136895 24.768685 18.621914 -4257 0.050465 0.035476 0.046225 0.037627 7.156983 7.741678 8.684539 8.500895 -4258 0.130815 0.094730 0.077194 0.043821 9.251729 6.984023 17.115372 13.390283 -4259 0.073965 0.066322 0.053024 0.027498 9.693468 9.830916 13.235090 10.137084 -4260 0.081069 0.066086 0.051227 0.035051 10.720158 8.787362 14.661038 13.193903 -4261 0.071628 0.056107 0.036025 0.028676 13.384711 13.301476 13.640183 9.763692 -4262 0.038921 0.039572 0.024583 0.024448 7.016120 5.035603 11.839716 8.391858 -4263 0.083056 0.071672 0.023519 0.022686 10.431416 10.461909 10.038569 9.720161 -4264 0.074546 0.055454 0.049630 0.049033 8.365413 9.897128 9.581919 12.057756 -4265 0.050596 0.038043 0.016166 0.012828 4.569561 4.274934 8.822234 8.102668 -4266 0.076753 0.074826 0.059318 0.062453 9.416920 8.173888 10.899018 8.337407 -4267 0.088030 0.074492 0.042935 0.032681 7.400338 7.300984 10.360142 8.077182 -4268 0.086985 0.074025 0.056124 0.046384 10.596397 9.819812 14.613718 13.341778 -4269 0.068453 0.049483 0.041277 0.017196 13.436219 12.996213 16.130814 18.226379 -4270 0.072531 0.071513 0.034404 0.031858 14.054097 12.552858 10.046340 9.314275 -4271 0.086219 0.076104 0.037614 0.031232 11.442230 10.584213 13.451315 12.617677 -4272 0.066696 0.069919 0.040873 0.056134 11.019874 9.671124 17.138479 11.913187 -4273 0.058146 0.043356 0.022231 0.014108 7.771262 4.945372 12.955092 13.439467 -4274 0.068946 0.064299 0.026125 0.022993 10.225052 7.631821 14.029239 13.244997 -4275 0.046480 0.043030 0.025820 0.027614 7.427622 6.385246 10.308120 9.286073 -4276 0.055936 0.036402 0.043634 0.030506 12.098728 9.918050 12.506340 13.224922 -4277 0.056382 0.045063 0.031667 0.029506 9.137687 7.311784 14.040623 14.162873 -4278 0.042671 0.039611 0.028079 0.019216 8.251531 7.724724 11.569981 9.251759 -4279 0.067172 0.058763 0.041481 0.032828 8.419167 6.087371 13.046334 9.497810 -4280 0.072245 0.059124 0.050782 0.043688 6.790620 6.945831 14.511873 11.927524 -4281 0.110969 0.097992 0.070255 0.065714 16.747263 11.698559 16.675563 16.466109 -4282 0.075771 0.064927 0.053579 0.053104 11.869860 7.898520 16.942430 11.686272 -4283 0.046543 0.047211 0.035324 0.031663 8.417166 6.820865 13.838120 10.825765 -4284 0.068922 0.054767 0.041658 0.028177 8.010318 8.215434 9.387815 9.068016 -4285 0.069544 0.064894 0.036504 0.032600 14.984727 11.811705 13.607379 12.821936 -4286 0.090369 0.079291 0.091144 0.055934 9.686174 7.454607 8.613640 8.717782 -4287 0.119040 0.090768 0.051946 0.049515 11.041089 10.370137 20.554245 14.817629 -4288 0.099157 0.099990 0.046140 0.042776 7.282871 6.230884 14.387189 10.310988 -4289 0.081423 0.063112 0.046860 0.028976 8.857329 6.463255 11.270429 9.074755 -4290 0.063837 0.037000 0.030078 0.018133 10.307790 11.431907 14.254778 10.894382 -4291 0.066187 0.036388 0.043112 0.020974 11.778064 12.780841 16.280068 13.992010 -4292 0.067823 0.047269 0.044401 0.023967 9.423668 8.033887 11.824297 8.721242 -4293 0.059614 0.051437 0.036351 0.038381 9.818400 9.693426 16.145642 13.814366 -4294 0.087474 0.084474 0.048316 0.032208 9.954084 11.378216 15.664539 13.959544 -4295 0.053794 0.058238 0.048913 0.033723 8.307407 8.143432 10.346490 8.513667 -4296 0.056928 0.038655 0.022569 0.017357 6.571184 8.556229 7.970633 9.445806 -4297 0.079991 0.069570 0.055302 0.049180 12.093207 10.099127 15.863006 10.947182 -4298 0.076602 0.052839 0.037782 0.025787 7.509910 5.685218 7.821096 6.568694 -4299 0.094133 0.063631 0.093459 0.045028 7.182009 5.546201 13.308007 9.972693 -4300 0.063018 0.040050 0.038312 0.023979 11.466377 8.187194 12.038190 12.287910 -4301 0.042864 0.038275 0.022716 0.018558 9.032267 8.295191 11.675511 9.255291 -4302 0.106721 0.116543 0.102010 0.092378 6.233972 7.453832 10.886126 12.557514 -4303 0.057608 0.042785 0.027762 0.023888 5.713405 5.402737 8.929716 7.674929 -4304 0.072680 0.064493 0.027445 0.026983 12.903324 12.166412 18.075108 13.638953 -4305 0.128834 0.078406 0.059180 0.053288 11.214386 8.377877 20.094206 15.809463 -4306 0.050340 0.046152 0.038635 0.027580 10.276070 10.054791 14.809169 14.723881 -4307 0.100099 0.098151 0.091922 0.069284 8.025398 8.134252 11.955116 9.199479 -4308 0.061738 0.041200 0.032907 0.027447 11.935988 8.828357 13.694207 9.450896 -4309 0.078605 0.083474 0.052479 0.046386 12.570495 11.086505 13.517388 10.952756 -4310 0.138339 0.100958 0.050189 0.055329 10.229823 9.767310 12.438501 13.855224 -4311 0.103356 0.073360 0.065728 0.037939 8.114115 10.183926 11.630103 10.580552 -4312 0.060408 0.049458 0.042224 0.026478 15.182322 10.548739 14.009694 12.577698 -4313 0.149142 0.115447 0.052089 0.056606 14.755115 13.454120 15.983247 12.863280 -4314 0.063337 0.056202 0.023331 0.026682 8.364675 7.002236 11.941336 10.531079 -4315 0.059545 0.056871 0.022255 0.017088 6.454529 6.278534 9.305249 8.423078 -4316 0.097673 0.069878 0.075955 0.060991 10.621489 11.360369 15.907401 16.049468 -4317 0.063361 0.049804 0.043244 0.027962 9.150647 7.094818 13.734404 9.630225 -4318 0.053883 0.051228 0.019286 0.026429 8.661290 7.384212 10.020141 9.423786 -4319 0.077708 0.079259 0.039472 0.045822 7.977187 7.820879 13.607275 10.898319 -4320 0.063466 0.056792 0.044486 0.027154 7.857830 8.260851 14.108375 11.996271 -4321 0.040560 0.032083 0.033813 0.023037 8.294539 7.147973 7.336521 6.447505 -4322 0.056333 0.050480 0.021942 0.017004 4.365234 4.627681 6.738023 6.869896 -4323 0.109023 0.071498 0.048601 0.035435 12.170710 8.410740 11.489178 9.339580 -4324 0.058329 0.056253 0.024631 0.026624 7.694951 8.074197 10.742046 10.565516 -4325 0.078900 0.087473 0.050759 0.052563 13.527263 12.592507 16.455200 16.599378 -4326 0.079025 0.051688 0.047077 0.035060 13.148740 11.441425 14.618725 10.971798 -4327 0.054556 0.039279 0.020762 0.022685 6.484368 5.712578 9.095316 7.713591 -4328 0.072054 0.071997 0.019042 0.026567 12.430878 10.496225 13.333575 10.727647 -4329 0.109551 0.071018 0.041972 0.039022 11.295701 9.992571 13.903595 11.900117 -4330 0.077270 0.064726 0.020279 0.017259 8.246685 7.438970 13.218527 13.321618 -4331 0.055420 0.065541 0.041775 0.042650 9.962800 7.845833 13.407443 12.749854 -4332 0.126487 0.124361 0.070160 0.064801 11.962048 11.525449 15.450818 13.993772 -4333 0.064551 0.045837 0.028295 0.021347 6.873548 6.935945 11.079528 9.190362 -4334 0.097466 0.080557 0.076581 0.065492 11.258168 9.019291 12.975281 10.810245 -4335 0.198858 0.153181 0.065183 0.067717 11.871468 12.022204 12.352425 12.234062 -4336 0.122445 0.088949 0.058980 0.060145 12.073121 8.527325 13.787556 11.902565 -4337 0.054843 0.070079 0.043642 0.040766 4.913926 5.391776 8.464091 7.037500 -4338 0.132211 0.113155 0.073069 0.064192 10.328148 10.525183 14.616283 14.329801 -4339 0.061038 0.053880 0.038334 0.030646 9.611776 9.442419 12.734113 10.530890 -4340 0.043383 0.042329 0.032903 0.021016 9.349893 8.319875 9.419757 7.610743 -4341 0.081903 0.073561 0.065913 0.051155 9.118367 8.597891 9.288387 9.258728 -4342 0.082627 0.055835 0.056173 0.036922 15.021707 10.749724 15.545163 13.066347 -4343 0.069039 0.067591 0.035860 0.027571 9.330491 9.476105 21.510422 19.300384 -4344 0.074565 0.042594 0.039158 0.031677 7.339301 7.437685 11.940747 11.395843 -4345 0.053728 0.051349 0.044242 0.031979 11.225786 10.319512 9.843802 10.491543 -4346 0.034048 0.029708 0.014435 0.011912 7.318933 6.144744 9.740862 7.877404 -4347 0.047144 0.047964 0.030302 0.023695 8.297679 6.267907 11.576723 8.663084 -4348 0.103365 0.080842 0.076998 0.052025 10.185506 10.423429 10.577080 11.759712 -4349 0.122637 0.082199 0.087177 0.062044 11.352976 10.495383 13.908831 9.704834 -4350 0.053300 0.070378 0.026136 0.024106 7.273563 6.982675 15.214633 13.812917 -4351 0.097077 0.071494 0.055501 0.063544 9.869656 10.004233 16.058827 15.865945 -4352 0.051202 0.053553 0.043338 0.049959 12.149362 9.795620 13.375043 11.660712 -4353 0.165232 0.137230 0.107112 0.073312 12.460996 10.727793 16.571805 12.726424 -4354 0.072299 0.066057 0.062246 0.045731 8.181403 7.331656 11.910340 10.542329 -4355 0.087705 0.072737 0.038838 0.028025 10.143743 8.080675 12.004222 10.642826 -4356 0.134349 0.120154 0.073936 0.065235 11.978419 12.709469 15.675331 13.978795 -4357 0.095503 0.088064 0.057635 0.038711 12.309573 9.000670 14.059492 12.802276 -4358 0.054155 0.061160 0.032869 0.030102 10.165783 9.960492 9.615344 11.050297 -4359 0.046306 0.043919 0.031979 0.026527 8.775305 9.009718 9.722545 9.681324 -4360 0.067387 0.090182 0.025592 0.027447 8.181303 7.254617 8.520511 7.778100 -4361 0.076572 0.089009 0.042300 0.053393 7.945130 9.037214 11.781529 8.929048 -4362 0.046453 0.037775 0.021136 0.015206 6.303358 5.479724 7.869633 8.589452 -4363 0.053327 0.044220 0.048632 0.035112 10.334463 6.767667 10.803741 10.121966 -4364 0.064824 0.051974 0.055545 0.032580 13.514642 11.820133 12.696457 12.947048 -4365 0.083520 0.081878 0.053758 0.029479 18.744111 14.111640 15.927125 14.902531 -4366 0.066776 0.049383 0.036273 0.029315 7.808369 7.970598 11.492709 10.031576 -4367 0.077147 0.053028 0.048905 0.036528 10.652995 10.098068 11.818516 13.793042 -4368 0.086126 0.095192 0.064619 0.038508 10.433894 12.984649 9.119817 8.469866 -4369 0.099538 0.067048 0.066729 0.048841 8.469244 7.233075 15.661517 12.311425 -4370 0.092310 0.083032 0.066197 0.048671 13.667555 10.201556 10.876239 10.224148 -4371 0.080114 0.063765 0.053895 0.034402 13.181172 11.873357 19.509944 13.293183 -4372 0.072007 0.085303 0.052371 0.053429 7.631440 7.026581 10.963393 8.921926 -4373 0.082501 0.049039 0.051943 0.027288 8.096624 7.529740 8.079012 8.913781 -4374 0.084465 0.068632 0.080600 0.079164 7.473675 7.806069 9.756018 10.264831 -4375 0.076075 0.064129 0.043621 0.038067 7.971907 6.861851 16.362419 15.512695 -4376 0.054073 0.037186 0.039625 0.024496 10.958568 9.516482 11.896957 11.266121 -4377 0.078671 0.072756 0.033936 0.031951 12.693917 9.564191 16.570320 11.397602 -4378 0.072016 0.059562 0.026081 0.031120 6.873598 5.747932 14.742557 11.855669 -4379 0.069359 0.044792 0.049956 0.035362 10.877170 8.967769 12.999348 9.206310 -4380 0.084773 0.046966 0.044747 0.025560 9.797494 8.809826 12.263006 10.402824 -4381 0.060627 0.063885 0.038911 0.031536 9.428690 8.825714 12.714540 12.161925 -4382 0.072109 0.046844 0.043816 0.028636 10.210896 7.319242 9.111531 9.205414 -4383 0.101423 0.069716 0.045725 0.023297 9.651369 7.764534 14.558652 14.080539 -4384 0.055814 0.056346 0.041966 0.041413 10.341203 7.944621 22.794337 15.801051 -4385 0.061637 0.056318 0.033450 0.030989 8.660828 7.684164 13.363764 9.661034 -4386 0.097536 0.112401 0.080737 0.078638 9.786441 7.416582 15.490731 12.118946 -4387 0.059000 0.035479 0.042085 0.033076 8.742006 9.340372 12.742545 11.784740 -4388 0.078111 0.041552 0.049759 0.026947 8.898601 8.872877 13.113526 12.999043 -4389 0.059893 0.036033 0.049275 0.037833 10.904434 9.241116 13.211584 10.787905 -4390 0.062746 0.050159 0.031722 0.021603 6.044868 6.873538 9.267572 9.737921 -4391 0.075179 0.060765 0.042714 0.039648 11.715424 12.427926 12.395336 12.887501 -4392 0.067274 0.070060 0.052365 0.047486 10.265368 9.801042 13.670059 11.090138 -4393 0.049272 0.042048 0.028803 0.023086 8.214485 6.413208 16.468959 10.512563 -4394 0.057380 0.048435 0.027951 0.024073 10.230161 7.971018 11.157334 9.724538 -4395 0.041677 0.043748 0.029552 0.024066 7.938340 6.780926 6.391076 5.838984 -4396 0.123798 0.077265 0.087137 0.046337 13.173030 13.889070 12.252751 13.079325 -4397 0.107319 0.096006 0.075815 0.065105 11.244618 10.321776 10.410888 10.245079 -4398 0.063135 0.059580 0.032610 0.026719 10.481676 9.260650 11.366864 9.122389 -4399 0.092091 0.064792 0.066565 0.042369 8.952139 7.113936 13.964668 12.901460 -4400 0.082547 0.066707 0.073750 0.083160 9.840709 11.156966 15.339381 13.113439 -4401 0.083188 0.066804 0.074042 0.047166 11.915970 9.414452 10.558299 10.310745 -4402 0.104857 0.093715 0.121569 0.078358 9.260354 11.004681 12.693131 10.475622 -4403 0.137938 0.094443 0.098807 0.079352 9.973669 15.493999 11.314004 13.515854 -4404 0.081197 0.068609 0.032647 0.035100 9.456113 9.503627 12.170446 11.362444 -4405 0.053641 0.036726 0.034984 0.025676 6.490958 5.548338 13.046804 10.766353 -4406 0.069547 0.072109 0.049484 0.055272 11.193733 9.066267 12.047932 11.502680 -4407 0.084487 0.073943 0.076851 0.042867 10.009588 10.640202 12.014096 12.844033 -4408 0.094061 0.106701 0.062115 0.065453 19.209060 15.140375 15.588840 11.214895 -4409 0.062036 0.048731 0.046765 0.035334 8.875762 6.837407 10.999669 9.599139 -4410 0.067582 0.059895 0.038733 0.033745 10.687008 7.323545 12.449013 12.108564 -4411 0.070519 0.050963 0.039282 0.022077 8.233923 9.264023 11.388933 11.897525 -4412 0.057735 0.062972 0.061915 0.050167 7.049983 6.104234 9.428843 8.555304 -4413 0.124787 0.112564 0.083083 0.090581 9.530991 7.201453 13.711662 12.891268 -4414 0.059993 0.053769 0.028192 0.022452 9.090239 8.325236 9.926226 9.271829 -4415 0.074346 0.082144 0.036981 0.038930 8.704079 6.934080 14.238390 9.653595 -4416 0.091860 0.054842 0.058427 0.036740 11.720496 8.930831 15.242043 10.331270 -4417 0.057365 0.073247 0.047609 0.047042 9.057031 7.183681 9.801940 9.454352 -4418 0.065421 0.057707 0.042446 0.034445 7.280172 8.108249 10.165066 11.909861 -4419 0.067186 0.048763 0.036031 0.033115 9.363521 8.183608 9.688745 10.235464 -4420 0.066754 0.057834 0.028629 0.027380 6.884607 6.560037 10.233570 8.034821 -4421 0.036366 0.033329 0.025482 0.020987 6.289408 6.087559 6.161361 6.939840 -4422 0.058331 0.060181 0.034858 0.030970 10.971966 10.802562 8.949971 9.350800 -4423 0.110299 0.066176 0.064795 0.024770 11.151787 11.478089 11.606497 11.406235 -4424 0.067351 0.060133 0.044965 0.037642 7.903296 8.242744 16.922621 19.933554 -4425 0.044042 0.051332 0.031959 0.027092 11.739920 11.133343 14.339447 12.245095 -4426 0.031601 0.039279 0.033387 0.030884 9.684138 10.554553 8.319341 9.918455 -4427 0.060138 0.044837 0.034431 0.028815 8.090810 7.227073 9.174956 7.389793 -4428 0.056371 0.054327 0.024119 0.026501 10.695532 9.649995 8.414163 8.143250 -4429 0.092265 0.086977 0.033660 0.037991 12.681440 10.433653 15.083872 14.898518 -4430 0.063338 0.066534 0.047649 0.042183 9.633958 10.211109 12.405594 9.058696 -4431 0.052892 0.051515 0.024840 0.025183 6.147551 6.090020 9.042285 7.831831 -4432 0.089946 0.071584 0.066699 0.033496 11.195150 10.811844 11.789458 15.078416 -4433 0.119097 0.081906 0.093132 0.062667 11.605392 10.415449 13.408173 10.026266 -4434 0.104762 0.104221 0.059938 0.050640 7.339027 4.669291 9.632305 6.867808 -4435 0.054360 0.059017 0.041543 0.041563 11.678354 9.892522 12.118165 10.696691 -4436 0.106661 0.117461 0.090176 0.090090 9.985251 13.477977 17.032198 19.737117 -4437 0.069817 0.062003 0.039054 0.027078 9.261196 7.515816 11.270166 11.839011 -4438 0.072158 0.071477 0.041637 0.028795 10.038744 6.956853 10.513686 9.862715 -4439 0.059220 0.056855 0.053092 0.029138 11.362440 8.263533 11.178819 10.278274 -4440 0.098122 0.103428 0.058299 0.050794 11.418911 13.466046 8.647708 10.390247 -4441 0.072075 0.046648 0.042260 0.036345 12.402228 9.172387 12.066143 10.100783 -4442 0.108997 0.107761 0.071722 0.046784 9.832903 10.785103 11.298727 13.801512 -4443 0.054618 0.040829 0.058611 0.045883 9.050476 10.562137 11.467921 11.181762 -4444 0.052395 0.061919 0.035796 0.040371 8.382125 6.984393 11.136730 9.643384 -4445 0.048912 0.051913 0.040221 0.026924 6.977662 6.426749 11.256386 7.887522 -4446 0.090289 0.078747 0.046756 0.034218 12.650085 14.035832 11.520769 11.636234 -4447 0.037367 0.057752 0.022891 0.034154 6.589448 6.082366 9.705252 8.345625 -4448 0.049081 0.044384 0.041265 0.058093 6.446260 7.353437 11.771504 12.088795 -4449 0.073597 0.075371 0.058243 0.042279 7.531177 5.117841 15.247518 11.554479 -4450 0.059484 0.058153 0.035964 0.025110 9.009398 8.811201 10.683786 10.198881 -4451 0.035223 0.027059 0.020903 0.013007 9.059496 7.881134 10.456189 10.429683 -4452 0.059467 0.054776 0.028063 0.022796 11.763726 11.531590 12.511045 10.694377 -4453 0.121954 0.127942 0.068419 0.057519 10.559613 10.712125 17.853890 15.535673 -4454 0.067410 0.049698 0.033372 0.024448 7.943209 6.567746 10.746553 8.830145 -4455 0.088725 0.085941 0.069286 0.050270 9.217583 6.046679 10.529415 8.918195 -4456 0.077287 0.068138 0.035871 0.020420 10.303288 8.764276 14.489631 10.266707 -4457 0.076876 0.088317 0.058602 0.085566 9.224295 7.538427 11.946037 11.567526 -4458 0.057171 0.041785 0.038305 0.019761 7.981697 8.254874 8.707484 8.405337 -4459 0.072406 0.043971 0.043698 0.024950 7.958598 8.616411 7.831824 8.769899 -4460 0.133443 0.090810 0.066740 0.048246 11.205452 10.003487 10.097511 9.635350 -4461 0.047890 0.035050 0.022198 0.016361 6.291641 5.519684 8.823789 8.075714 -4462 0.077359 0.070310 0.039896 0.030651 15.069473 13.196447 13.264867 14.570508 -4463 0.085731 0.091537 0.042231 0.052492 10.777186 11.782056 12.179599 10.629683 -4464 0.061470 0.057503 0.028370 0.037330 7.315502 5.295004 13.727040 10.785765 -4465 0.093178 0.060436 0.098556 0.038068 8.520213 7.689781 12.243077 10.489678 -4466 0.140746 0.154058 0.101974 0.095365 17.632809 18.125530 19.702088 21.144447 -4467 0.126458 0.077827 0.051541 0.040817 15.490407 14.540540 13.393957 11.777527 -4468 0.063712 0.059128 0.036456 0.033405 10.198447 10.136206 11.350037 11.439519 -4469 0.058317 0.046593 0.016730 0.019622 8.307386 5.762234 10.572803 7.217145 -4470 0.050314 0.054500 0.029695 0.029872 9.442348 7.620647 10.004216 9.048874 -4471 0.116255 0.075793 0.106082 0.050938 10.072230 7.779006 10.763686 10.732429 -4472 0.084252 0.082726 0.060584 0.059877 13.749006 11.175865 12.268245 11.102151 -4473 0.050501 0.043967 0.035518 0.025875 9.537024 9.269545 15.648421 15.340163 -4474 0.095805 0.101483 0.080757 0.052166 7.013385 7.052758 12.807318 14.703021 -4475 0.075240 0.051023 0.041852 0.029423 15.037243 13.366091 18.208391 17.560676 -4476 0.075508 0.068549 0.074076 0.038333 10.899614 10.121649 13.743791 12.972083 -4477 0.056194 0.067788 0.031973 0.045291 9.688659 8.997524 16.556639 11.771182 -4478 0.071735 0.063546 0.051508 0.040299 6.660296 7.626781 8.103878 8.329990 -4479 0.042587 0.036698 0.029415 0.015487 7.211940 5.756371 8.330904 7.737836 -4480 0.068959 0.051127 0.025597 0.017250 10.264306 8.796533 13.964589 12.339931 -4481 0.076667 0.054645 0.051428 0.039781 8.155120 5.416955 10.367119 6.955472 -4482 0.106536 0.087981 0.032641 0.035828 9.468584 7.123960 11.279257 9.246994 -4483 0.087709 0.085648 0.040679 0.071098 12.103383 11.399220 16.892912 19.357958 -4484 0.086372 0.068609 0.062768 0.038345 16.587973 12.347893 15.327730 11.254748 -4485 0.071913 0.064569 0.031569 0.031120 10.546371 10.873423 14.224783 10.866102 -4486 0.060612 0.074182 0.033647 0.035527 8.065327 4.331663 13.382718 9.314944 -4487 0.114910 0.088634 0.051597 0.038441 10.746383 9.664933 19.181023 17.731287 -4488 0.039767 0.047533 0.025332 0.023107 5.532379 6.225358 9.534518 8.591072 -4489 0.050151 0.053944 0.045114 0.039711 11.670306 6.717190 13.019457 8.096087 -4490 0.070321 0.063937 0.062229 0.038352 5.953353 5.793884 9.661375 7.893577 -4491 0.072222 0.071269 0.046998 0.057479 10.288301 10.783676 16.239083 14.683681 -4492 0.050604 0.065955 0.020711 0.025424 12.618986 13.638799 17.721622 15.404863 -4493 0.086238 0.075669 0.063534 0.043545 13.805541 13.608477 12.099289 10.165064 -4494 0.051507 0.038502 0.035182 0.025742 7.798454 7.325109 10.164802 12.398364 -4495 0.067571 0.070164 0.063242 0.064569 8.014643 7.817103 9.649637 8.411977 -4496 0.050855 0.030482 0.030559 0.026235 7.475875 8.733521 12.380483 11.612145 -4497 0.074564 0.063771 0.030779 0.025903 13.040589 12.227275 16.321733 13.425357 -4498 0.075325 0.064140 0.039559 0.040826 7.065622 8.022162 14.757194 18.247211 -4499 0.058415 0.057347 0.060944 0.059451 11.718292 11.533895 16.327136 13.637019 -4500 0.047444 0.044528 0.020369 0.020766 7.958306 7.435613 13.006937 11.279146 -4501 0.081505 0.057491 0.062334 0.033053 11.773939 10.948472 10.793656 10.542901 -4502 0.067453 0.077786 0.033712 0.048802 8.668764 8.117449 10.612815 11.682391 -4503 0.073867 0.046317 0.034800 0.025191 12.321272 12.557805 16.991236 11.378889 -4504 0.064368 0.037799 0.028723 0.015285 9.053904 8.438472 11.726272 13.404722 -4505 0.083826 0.057587 0.069537 0.049763 6.400034 6.185039 10.133460 6.893108 -4506 0.083717 0.053632 0.055299 0.032916 9.060327 8.131765 16.581974 14.444664 -4507 0.068225 0.066571 0.030210 0.045025 12.111389 11.174516 16.229012 11.831449 -4508 0.110013 0.093746 0.066555 0.049814 11.817655 7.942854 14.231779 12.921566 -4509 0.052001 0.045386 0.024962 0.025129 9.625255 7.812066 14.075410 11.959023 -4510 0.137244 0.107160 0.171247 0.122897 9.555760 13.404589 15.358545 14.250616 -4511 0.107737 0.099587 0.074063 0.063982 11.150333 10.589870 14.486993 14.234855 -4512 0.054928 0.053459 0.022315 0.034602 9.219061 9.353611 13.431385 13.384947 -4513 0.049303 0.046439 0.037800 0.025305 12.929379 11.025280 18.317575 13.151464 -4514 0.027660 0.030460 0.023458 0.018199 11.175288 9.164400 10.066007 9.334600 -4515 0.082860 0.073606 0.055283 0.044598 7.948381 5.486318 11.677378 8.709415 -4516 0.052479 0.042825 0.029616 0.032251 10.494047 8.382281 11.714896 10.577474 -4517 0.060970 0.055171 0.050980 0.050178 13.274411 8.965168 13.169029 11.341079 -4518 0.070806 0.070809 0.046799 0.048398 12.481367 9.400951 13.521846 11.734019 -4519 0.058116 0.050481 0.037624 0.046640 10.211405 11.466709 12.537326 10.756165 -4520 0.067000 0.080168 0.044312 0.047534 10.422788 8.096691 16.698342 11.724304 -4521 0.110902 0.125471 0.044536 0.044979 12.071421 11.105736 15.495668 12.468600 -4522 0.046830 0.039316 0.021618 0.015540 9.174110 8.276510 10.356235 9.059145 -4523 0.136393 0.095356 0.074453 0.043985 8.876133 8.707326 9.498469 10.113549 -4524 0.092213 0.071878 0.044623 0.041386 9.802781 7.659097 13.841306 11.153085 -4525 0.077990 0.074647 0.057002 0.048058 12.494633 11.190743 18.924087 18.671470 -4526 0.077044 0.059062 0.030246 0.038164 10.328695 7.256542 13.341564 9.475172 -4527 0.056431 0.049929 0.037397 0.037364 12.858782 8.857054 14.867927 12.473027 -4528 0.084390 0.067405 0.056207 0.035666 10.419743 8.700252 10.659067 9.534580 -4529 0.123660 0.090272 0.061540 0.056064 10.776432 7.394089 13.621282 10.701127 -4530 0.036053 0.039278 0.030113 0.020416 7.910939 5.343475 13.355421 10.918004 -4531 0.065546 0.047732 0.046742 0.030395 8.543838 6.750768 11.957466 9.242934 -4532 0.094720 0.091254 0.049557 0.032102 7.767951 8.132998 7.941568 8.543999 -4533 0.056346 0.060560 0.040612 0.043838 11.869387 8.409641 13.043589 12.302835 -4534 0.036711 0.035169 0.023511 0.023995 10.686549 7.875949 12.806458 9.203734 -4535 0.037365 0.031912 0.032301 0.028170 9.387384 7.259925 7.665521 7.631501 -4536 0.050061 0.039406 0.033266 0.021232 6.334106 5.249171 11.106719 8.899737 -4537 0.077202 0.063481 0.040178 0.037430 11.528592 9.110015 8.777189 9.744950 -4538 0.183745 0.176668 0.119060 0.102720 12.554768 8.892025 16.988031 13.227006 -4539 0.114703 0.120875 0.054849 0.058634 9.074355 6.653471 12.828369 10.517678 -4540 0.072307 0.076548 0.037018 0.049965 8.878128 6.462454 6.990235 6.449466 -4541 0.098708 0.094607 0.077331 0.056391 8.538762 7.640443 11.179981 8.875142 -4542 0.080109 0.094822 0.085223 0.078809 14.430610 9.911727 19.139479 12.131861 -4543 0.084881 0.079225 0.039202 0.034351 10.001950 9.449344 12.548586 11.577440 -4544 0.113324 0.100426 0.113549 0.069288 9.235169 11.181158 12.396078 10.138879 -4545 0.101920 0.073490 0.056179 0.036362 13.477449 10.090325 10.090963 10.146422 -4546 0.054705 0.047761 0.036621 0.042064 9.184534 8.964206 9.886963 9.189869 -4547 0.063916 0.037402 0.041188 0.022599 7.295236 7.940132 8.690177 7.704183 -4548 0.086445 0.076923 0.055904 0.053313 11.684289 9.336062 13.535201 14.984380 -4549 0.066062 0.071820 0.030736 0.027236 11.363577 11.963953 9.987228 11.803954 -4550 0.071384 0.052263 0.049604 0.027512 13.722407 9.175727 11.634612 9.473671 -4551 0.064526 0.044381 0.028413 0.023316 7.817964 6.715565 13.844390 11.535955 -4552 0.115571 0.094843 0.078558 0.069063 8.277712 7.056954 9.286882 9.875172 -4553 0.101311 0.089944 0.046696 0.032668 11.680965 10.231912 12.201039 11.935230 -4554 0.063839 0.054409 0.050440 0.030950 9.559711 8.112953 13.049145 10.769646 -4555 0.062094 0.058189 0.032706 0.029818 11.498507 9.573928 14.849418 12.225519 -4556 0.126696 0.099602 0.066872 0.077681 8.267391 7.455234 12.344856 8.379953 -4557 0.059707 0.052272 0.018308 0.010240 8.096731 9.484157 9.551962 9.845153 -4558 0.051532 0.042574 0.028120 0.023516 8.245827 5.062236 9.855856 7.124400 -4559 0.071908 0.053365 0.038048 0.027745 11.637638 9.571123 13.243433 11.750403 -4560 0.074124 0.056446 0.023335 0.019011 6.195313 6.108229 10.560764 9.880169 -4561 0.062246 0.074917 0.053189 0.061872 12.848718 14.332428 14.881423 13.601565 -4562 0.083876 0.066574 0.045760 0.049336 8.224261 7.965707 11.576611 13.494102 -4563 0.096539 0.078844 0.068957 0.041440 14.694788 13.280758 17.893712 12.675862 -4564 0.092853 0.087075 0.083638 0.060949 9.795995 8.078494 16.102101 12.454214 -4565 0.084116 0.052363 0.049456 0.041212 7.930479 5.676984 7.781651 6.284377 -4566 0.048971 0.037833 0.030661 0.025378 10.300309 10.003905 13.316867 15.409440 -4567 0.065363 0.044708 0.043810 0.032043 12.243151 7.996332 14.227764 9.472868 -4568 0.061709 0.044917 0.040178 0.019778 10.174811 7.926453 11.892288 10.442843 -4569 0.065475 0.050742 0.038360 0.028337 9.783859 9.026706 12.339989 12.241483 -4570 0.042598 0.047121 0.020648 0.017629 12.197018 10.879210 11.449274 9.645638 -4571 0.073650 0.071561 0.051190 0.036970 11.553470 9.081252 10.464104 8.246279 -4572 0.086472 0.065879 0.046694 0.039054 8.438006 8.316112 10.498830 9.024631 -4573 0.144541 0.112372 0.064089 0.047292 8.024347 8.017223 11.551275 13.193859 -4574 0.039372 0.038295 0.022439 0.021655 9.837059 7.747584 14.727998 10.081592 -4575 0.076701 0.060231 0.030830 0.024776 14.818122 10.047398 17.561660 14.380458 -4576 0.131695 0.104107 0.038608 0.032772 12.079863 10.828564 15.103039 13.677241 -4577 0.085983 0.078123 0.028889 0.041673 10.456811 8.897439 12.842189 11.582420 -4578 0.069946 0.063124 0.068490 0.058542 7.766752 6.265332 13.789845 10.109217 -4579 0.059377 0.044095 0.028054 0.019034 10.706183 9.915358 12.319210 10.305293 -4580 0.119433 0.124731 0.083894 0.063122 9.927618 11.200142 9.671103 10.881908 -4581 0.053274 0.043699 0.035227 0.025866 8.388629 6.345482 11.071735 8.867647 -4582 0.071046 0.063728 0.050556 0.058403 16.844362 13.466164 15.264020 12.384215 -4583 0.056464 0.054168 0.035049 0.026359 6.557777 7.505310 12.800485 12.040380 -4584 0.048014 0.055087 0.045142 0.038422 8.342087 8.261580 13.153593 14.148278 -4585 0.043099 0.045076 0.047847 0.037099 7.322426 6.507146 7.311773 7.070625 -4586 0.080167 0.065431 0.040405 0.027579 13.350472 10.931818 16.562458 13.651746 -4587 0.066874 0.052254 0.033383 0.023968 5.492551 7.568672 7.249137 8.396616 -4588 0.076343 0.084261 0.049856 0.037583 10.221513 8.953706 12.354639 13.967575 -4589 0.058233 0.048263 0.034324 0.028745 10.411553 8.242464 12.897168 11.030991 -4590 0.061861 0.042781 0.045971 0.029020 7.512908 6.165867 9.272416 10.262572 -4591 0.116379 0.100836 0.056735 0.055876 7.386318 5.313975 8.098139 7.793876 -4592 0.066271 0.055564 0.028688 0.031631 7.782248 7.473536 9.684570 9.479576 -4593 0.043790 0.037737 0.028067 0.021606 9.563931 10.923584 11.817856 10.808638 -4594 0.040746 0.028695 0.019414 0.009901 7.215245 8.238264 7.798652 8.468593 -4595 0.056705 0.047433 0.029224 0.022623 7.992962 7.941853 9.327783 10.561980 -4596 0.088795 0.075341 0.058432 0.042460 12.068726 11.098269 18.658341 21.695149 -4597 0.090503 0.057843 0.047374 0.028460 7.840922 4.429136 8.370159 6.977917 -4598 0.096543 0.073472 0.074775 0.051550 12.419764 11.668757 12.316996 9.781352 -4599 0.062967 0.051004 0.030256 0.025840 6.261045 4.446295 8.219918 5.907065 -4600 0.093865 0.099327 0.046840 0.052239 9.225656 8.943957 15.192611 11.565512 -4601 0.050545 0.050691 0.026910 0.026456 7.116408 7.277685 7.410189 7.073278 -4602 0.163872 0.112386 0.046463 0.032966 12.817098 13.937378 18.730672 15.695683 -4603 0.043302 0.040164 0.027616 0.028166 7.327422 9.071693 8.669830 8.243357 -4604 0.086601 0.058803 0.054514 0.043049 9.006655 8.655872 13.011073 12.452260 -4605 0.078786 0.064838 0.048196 0.039956 7.454954 7.254458 8.562219 8.274395 -4606 0.056586 0.059703 0.032152 0.023791 13.836286 12.114449 15.273741 12.503670 -4607 0.067780 0.066303 0.037710 0.032279 8.221879 8.794669 15.449881 16.447444 -4608 0.084354 0.068852 0.041035 0.028150 9.563513 6.648426 11.800540 8.144007 -4609 0.058729 0.039390 0.037956 0.024165 9.968490 7.763012 13.911665 12.051774 -4610 0.110876 0.094547 0.087006 0.052438 11.506348 12.638440 11.718932 11.928239 -4611 0.047532 0.049107 0.038101 0.041479 11.707909 8.017530 22.310572 16.522658 -4612 0.090006 0.087885 0.071181 0.038909 9.083798 7.483043 13.946188 11.749031 -4613 0.082480 0.064882 0.048355 0.025643 9.022205 8.661314 8.633729 8.655973 -4614 0.090598 0.071569 0.035934 0.033030 6.830917 6.367447 11.099633 9.780167 -4615 0.100405 0.070554 0.078076 0.051420 9.858198 9.030669 11.200718 9.934999 -4616 0.072526 0.064804 0.041477 0.032572 8.884865 7.349210 11.585336 7.565277 -4617 0.082552 0.074896 0.052126 0.038782 16.095959 12.616930 15.142268 14.494273 -4618 0.072625 0.076892 0.032801 0.041742 12.546124 8.443856 13.904321 8.511017 -4619 0.101871 0.100418 0.060501 0.052690 12.610840 9.669711 16.315940 14.035407 -4620 0.057706 0.047624 0.036149 0.026416 12.864131 10.888059 15.652295 11.976365 -4621 0.094292 0.065478 0.055823 0.030947 9.333103 7.948296 13.034559 12.178682 -4622 0.084455 0.080828 0.043710 0.042888 10.578056 7.822231 10.528957 10.796307 -4623 0.107191 0.087216 0.072077 0.060587 9.121768 8.119528 13.484338 15.823474 -4624 0.099433 0.093341 0.044143 0.033626 7.502154 8.591677 7.912277 8.202947 -4625 0.068412 0.079165 0.033778 0.038899 9.284663 9.401240 12.740424 11.429891 -4626 0.081441 0.054832 0.069983 0.045799 9.424478 7.210991 14.890130 12.493127 -4627 0.095473 0.066013 0.048911 0.035256 8.179933 7.892230 11.397006 9.127587 -4628 0.042027 0.036381 0.021759 0.016218 9.060718 7.934717 11.713496 7.867329 -4629 0.077035 0.063385 0.029774 0.022620 8.142521 9.613251 11.895648 11.873425 -4630 0.066791 0.050407 0.026472 0.035943 7.705325 7.061265 8.647423 6.354484 -4631 0.066931 0.053966 0.045900 0.053551 12.874394 10.379613 18.909143 15.604409 -4632 0.099118 0.092078 0.037615 0.043899 6.921733 5.605948 8.280028 8.045632 -4633 0.108716 0.088773 0.041747 0.026654 7.254262 7.447255 12.232320 12.536609 -4634 0.054368 0.048293 0.024177 0.016961 8.175488 6.376912 11.125973 8.593198 -4635 0.147897 0.109315 0.085311 0.053295 12.611817 8.443656 16.835436 12.993675 -4636 0.068147 0.054692 0.045557 0.036075 10.612744 10.100895 9.044285 8.662525 -4637 0.059229 0.061280 0.051937 0.043725 8.357654 8.279282 12.439803 11.708633 -4638 0.040443 0.048955 0.023309 0.021386 9.952741 10.309331 11.501365 11.926863 -4639 0.091630 0.071569 0.064707 0.059457 9.948182 7.774911 8.921971 7.706983 -4640 0.050811 0.048643 0.024345 0.030144 7.340628 5.803624 10.577669 8.064747 -4641 0.044344 0.044736 0.027073 0.020962 13.819605 10.430834 23.903077 12.829006 -4642 0.070386 0.064395 0.056526 0.045065 10.481211 9.923375 14.433615 12.292821 -4643 0.082172 0.083177 0.037754 0.043913 9.722981 8.369408 11.544818 10.296042 -4644 0.056771 0.043847 0.036859 0.031242 10.574280 8.523003 12.880336 10.882695 -4645 0.044118 0.055458 0.019318 0.024544 7.973067 8.455007 10.472083 9.790098 -4646 0.080707 0.072417 0.055430 0.035353 10.456879 8.236330 9.143275 9.552168 -4647 0.052826 0.051691 0.027104 0.022448 8.210755 7.541008 6.596699 6.704197 -4648 0.102573 0.095765 0.041357 0.041771 11.286004 10.957691 14.260398 14.219101 -4649 0.064146 0.068847 0.031051 0.037831 8.340860 5.264797 12.062230 9.816131 -4650 0.054441 0.046739 0.040405 0.022175 13.371177 9.289354 12.738894 7.372246 -4651 0.156543 0.141754 0.136945 0.135766 13.057098 19.089606 21.444126 21.114584 -4652 0.050687 0.040446 0.036004 0.022907 6.513544 7.908494 9.979693 10.752875 -4653 0.097803 0.090271 0.066328 0.044441 12.174660 8.919904 16.194289 14.921938 -4654 0.121681 0.091923 0.059858 0.052587 9.468501 8.031877 14.339905 10.976613 -4655 0.116506 0.081863 0.063587 0.032181 11.846993 8.104463 14.451014 13.395360 -4656 0.080040 0.063489 0.027734 0.026283 11.734333 10.896403 11.261295 9.724958 -4657 0.078719 0.094041 0.060767 0.037788 8.917528 9.210326 9.781009 9.996495 -4658 0.048025 0.042403 0.035545 0.026559 12.535067 8.600446 14.417735 10.578363 -4659 0.059279 0.052928 0.027904 0.035471 6.359101 5.546987 7.833715 7.593682 -4660 0.045055 0.036667 0.027876 0.026735 8.520275 8.433871 11.650157 10.748368 -4661 0.055681 0.039442 0.026629 0.015958 7.431352 6.206889 9.127179 8.455990 -4662 0.092036 0.074525 0.102602 0.110434 13.701896 14.840446 14.024301 15.531260 -4663 0.087092 0.086567 0.056149 0.057093 15.428731 12.251656 20.225105 19.234620 -4664 0.073149 0.063159 0.044245 0.040630 10.131515 6.825939 12.958014 11.048512 -4665 0.044627 0.046217 0.043294 0.050890 8.655002 7.457936 14.781163 12.772996 -4666 0.066333 0.051550 0.033429 0.030895 10.983858 7.448755 13.462713 11.584101 -4667 0.070269 0.065400 0.040752 0.035771 7.775923 7.081628 14.761126 10.838016 -4668 0.067074 0.045849 0.050017 0.053293 12.446792 11.412930 17.092028 14.310403 -4669 0.109172 0.084732 0.039021 0.031491 9.554633 6.892702 9.990656 7.559454 -4670 0.156046 0.100602 0.120609 0.062454 10.357968 9.217215 19.397168 15.763747 -4671 0.082654 0.087653 0.070155 0.060465 8.384032 7.451344 13.648922 12.724244 -4672 0.080356 0.061618 0.033331 0.026537 6.109031 6.209234 16.457260 12.239430 -4673 0.087360 0.045401 0.049784 0.040271 9.169575 10.778472 17.578213 15.686015 -4674 0.043057 0.045685 0.023499 0.017228 7.732400 5.633056 14.396108 11.978687 -4675 0.051528 0.041778 0.026123 0.023390 6.999682 7.664672 11.163813 9.882161 -4676 0.080896 0.065533 0.060412 0.041194 13.439538 11.117791 22.290960 17.039157 -4677 0.089425 0.101862 0.052368 0.042406 13.249073 10.509772 13.525261 10.577471 -4678 0.104815 0.101478 0.068473 0.054769 11.843570 11.843634 11.831762 11.336055 -4679 0.087664 0.064528 0.041095 0.021487 6.252742 6.542886 9.485462 9.327219 -4680 0.082659 0.072777 0.068400 0.048194 11.385592 7.688774 15.731723 13.772833 -4681 0.089321 0.063603 0.085451 0.052359 11.701086 9.931286 17.858717 12.220698 -4682 0.090088 0.061730 0.041447 0.034562 9.960715 8.644735 13.203879 11.580734 -4683 0.069865 0.040821 0.025554 0.018732 12.118281 10.107817 14.103499 13.511298 -4684 0.047513 0.054352 0.035419 0.031328 12.988149 11.121091 19.235340 15.528371 -4685 0.104683 0.070066 0.046714 0.028677 11.495232 8.909107 16.375394 9.858641 -4686 0.087116 0.083840 0.045582 0.052661 8.508432 6.608482 12.955019 12.288979 -4687 0.053967 0.052822 0.032516 0.027812 16.365592 13.788770 11.571518 11.130647 -4688 0.069407 0.071992 0.059359 0.038717 8.372977 7.577305 10.638214 10.781166 -4689 0.059575 0.068245 0.028940 0.037333 10.743996 9.996166 13.010693 11.805488 -4690 0.074526 0.071460 0.040283 0.028164 8.850907 9.109900 14.853714 12.220725 -4691 0.076922 0.069559 0.028778 0.025468 10.807264 8.658860 15.327857 10.818347 -4692 0.068306 0.032968 0.036998 0.026356 12.146377 8.552503 11.026824 10.813406 -4693 0.059350 0.038692 0.051399 0.030430 8.779862 8.524090 12.088246 12.454151 -4694 0.080382 0.086952 0.064148 0.043943 8.766542 7.182062 11.747980 9.402773 -4695 0.121738 0.102361 0.031423 0.038128 8.464273 6.941183 12.226125 14.068325 -4696 0.065081 0.076877 0.071399 0.056025 8.597539 8.582820 14.614689 11.730016 -4697 0.078972 0.059387 0.080216 0.058968 15.698668 10.192318 19.168993 16.213562 -4698 0.053222 0.041211 0.031154 0.029039 7.724504 6.268990 9.670187 6.150736 -4699 0.069763 0.057380 0.031611 0.033661 10.891118 10.538148 12.438896 11.201710 -4700 0.054394 0.043927 0.021135 0.018289 10.878370 10.021608 11.224886 10.536226 -4701 0.055335 0.041152 0.039024 0.027920 11.089473 10.930678 20.459745 21.424693 -4702 0.060562 0.045549 0.050632 0.025259 7.803681 6.407919 11.777840 10.088557 -4703 0.111266 0.098414 0.068571 0.048196 11.110213 12.448738 19.089159 18.541282 -4704 0.138301 0.122371 0.075443 0.055319 11.960321 8.947077 11.990817 11.071997 -4705 0.055288 0.049730 0.039991 0.027862 9.080168 8.166521 14.516099 14.611178 -4706 0.098949 0.099736 0.090556 0.053064 13.399947 10.170506 14.464809 11.304397 -4707 0.218362 0.174262 0.120275 0.076380 10.506274 8.195049 15.997392 11.106348 -4708 0.056391 0.056817 0.027092 0.025195 11.539294 9.889348 14.631137 12.300275 -4709 0.053110 0.040721 0.033426 0.021059 8.277093 8.562555 6.691896 6.463160 -4710 0.071521 0.057267 0.040067 0.035843 8.133773 7.881711 12.503436 11.467384 -4711 0.033637 0.034867 0.011772 0.015470 10.845649 9.009588 11.367802 10.572896 -4712 0.053186 0.064531 0.046179 0.045431 9.941435 8.574807 10.947681 8.558811 -4713 0.061827 0.051755 0.023547 0.020046 8.941850 8.006654 8.385626 8.599476 -4714 0.047415 0.054082 0.018685 0.020870 8.153378 6.621693 14.440420 9.983176 -4715 0.068353 0.059969 0.021109 0.028064 9.111698 8.049871 10.837046 9.034034 -4716 0.057563 0.053891 0.025848 0.015964 6.173357 5.963631 10.657219 8.276993 -4717 0.054756 0.055179 0.043253 0.028411 8.792966 8.036602 10.965580 10.644347 -4718 0.083706 0.077312 0.055978 0.049519 10.362110 7.744403 11.902868 12.906566 -4719 0.084319 0.064102 0.036972 0.020808 10.268044 8.546432 13.867678 10.253412 -4720 0.055785 0.060335 0.038460 0.048089 6.586139 6.829399 10.833526 12.989707 -4721 0.058620 0.046981 0.044417 0.029716 11.920410 9.527150 11.550522 11.134392 -4722 0.093841 0.080610 0.048708 0.045664 6.939603 7.105655 12.359694 11.287334 -4723 0.047922 0.039866 0.020144 0.021187 6.106387 7.786839 9.429548 11.897052 -4724 0.064005 0.062516 0.053066 0.030946 11.153735 9.911588 14.332022 9.271949 -4725 0.075302 0.050631 0.037641 0.025709 8.744937 8.839162 8.126557 7.428340 -4726 0.069091 0.069428 0.053189 0.050538 7.442296 7.227419 12.724097 14.181087 -4727 0.051152 0.041937 0.029459 0.020759 10.741186 9.845393 11.118117 10.254446 -4728 0.089662 0.092128 0.054591 0.041720 11.958915 10.278513 18.612719 22.112900 -4729 0.065363 0.064509 0.055001 0.057858 8.383808 7.045043 11.223042 10.894675 -4730 0.140152 0.093939 0.089494 0.076657 13.347160 9.517717 17.711564 13.387638 -4731 0.100427 0.091938 0.065835 0.047561 12.450885 11.269076 14.201749 15.683243 -4732 0.090704 0.086866 0.068756 0.054483 7.030137 6.494196 12.867902 13.151040 -4733 0.076277 0.063495 0.047574 0.029098 14.099733 10.955049 18.715018 16.245479 -4734 0.062705 0.064444 0.046179 0.044707 14.052605 11.285448 20.546870 15.026343 -4735 0.070698 0.062180 0.040337 0.040688 8.756192 7.584403 10.277394 10.702591 -4736 0.053916 0.049404 0.044531 0.060521 12.676195 10.886437 10.956201 12.247893 -4737 0.112196 0.103278 0.071592 0.073883 7.605212 6.245495 11.122657 9.107467 -4738 0.077307 0.051398 0.029859 0.014723 11.052396 8.888315 12.435517 10.665898 -4739 0.098640 0.064506 0.057041 0.032890 7.111492 5.592438 9.432409 7.504028 -4740 0.050128 0.061031 0.054627 0.059215 16.585860 12.765451 17.441753 15.029708 -4741 0.064835 0.072516 0.051332 0.047157 10.299272 9.616435 15.817543 14.499785 -4742 0.079872 0.082507 0.038090 0.041728 9.258706 7.744238 17.855036 15.015886 -4743 0.071404 0.076024 0.047427 0.034048 10.492856 9.668646 9.344539 8.000060 -4744 0.062374 0.080872 0.045961 0.059926 10.968948 7.873673 9.485464 8.865999 -4745 0.117130 0.107637 0.089273 0.076313 9.362847 8.923211 19.164026 18.465491 -4746 0.073450 0.064244 0.045665 0.030210 5.776340 6.090144 10.798451 10.137270 -4747 0.059289 0.057515 0.048933 0.044246 7.951792 6.097458 8.168769 8.099904 -4748 0.036944 0.037767 0.015898 0.020302 9.024909 7.917002 14.702590 10.790050 -4749 0.071130 0.056897 0.065471 0.054894 7.654002 7.896039 7.598074 8.368465 -4750 0.102261 0.076823 0.093170 0.054518 16.229969 15.865160 16.208753 18.187969 -4751 0.158789 0.110461 0.106819 0.068284 10.327210 9.486759 10.992443 10.185561 -4752 0.065624 0.062933 0.038061 0.043832 9.158450 7.455732 8.456532 9.128086 -4753 0.063276 0.038165 0.034457 0.019238 5.283817 5.885440 10.058050 8.380318 -4754 0.105839 0.094499 0.042337 0.045526 9.234972 7.960483 13.316859 13.943212 -4755 0.102186 0.064698 0.073927 0.042521 7.463664 6.084107 11.661792 9.783678 -4756 0.084407 0.071969 0.079284 0.067431 9.014451 9.036385 16.931517 13.661514 -4757 0.052438 0.041335 0.034361 0.034069 10.987258 10.718380 12.376049 9.264335 -4758 0.126104 0.079017 0.064756 0.048470 11.836866 10.169079 16.283615 15.542298 -4759 0.089609 0.046985 0.075884 0.044904 8.595338 6.277402 11.405315 9.325284 -4760 0.084710 0.102115 0.035079 0.042020 12.679528 10.463810 16.233236 12.220865 -4761 0.102204 0.073671 0.052726 0.031944 13.690261 9.498773 16.193549 12.682065 -4762 0.083549 0.067864 0.079315 0.043803 17.769619 12.635615 21.559185 16.196010 -4763 0.090691 0.068569 0.034013 0.027821 15.897374 13.431768 17.935630 17.864439 -4764 0.036397 0.033697 0.025918 0.023744 8.380241 9.984130 8.116181 9.308866 -4765 0.076865 0.067129 0.062214 0.046788 14.830154 10.428236 17.595900 16.755309 -4766 0.076307 0.061837 0.033485 0.028318 10.120890 8.862270 12.152328 10.786296 -4767 0.117287 0.075366 0.068218 0.053678 9.280241 11.658412 12.270768 13.059312 -4768 0.073130 0.062234 0.044118 0.041122 9.687970 10.566807 11.755744 11.303230 -4769 0.080860 0.070639 0.035595 0.036245 10.685336 9.327486 12.711229 10.237946 -4770 0.095747 0.098310 0.046527 0.037576 11.019663 8.460193 14.140366 10.643880 -4771 0.100176 0.100898 0.060073 0.033872 9.015767 8.058703 14.874338 16.657164 -4772 0.090751 0.061326 0.081931 0.046174 9.722423 9.509865 12.586211 15.500385 -4773 0.138490 0.127724 0.099930 0.065662 11.327075 10.100750 13.161951 13.628887 -4774 0.068602 0.062236 0.036857 0.031730 10.005271 6.517928 11.823191 8.929049 -4775 0.061541 0.061552 0.044614 0.042906 11.667870 9.332059 10.417013 7.647271 -4776 0.065024 0.052922 0.028503 0.028190 10.185060 10.897593 16.571282 15.779162 -4777 0.103376 0.089666 0.041968 0.052675 10.886392 8.616116 15.058747 13.611824 -4778 0.079218 0.063355 0.047644 0.056677 10.361953 12.258009 17.810702 14.092242 -4779 0.040673 0.031697 0.047682 0.025788 5.474975 4.373259 7.416629 6.338506 -4780 0.062377 0.046145 0.040794 0.034410 10.467813 8.327189 15.565939 14.759892 -4781 0.052702 0.049762 0.035966 0.026672 7.981227 7.710061 10.393952 9.671016 -4782 0.094438 0.059379 0.073771 0.042467 9.691025 9.411919 11.151453 8.811795 -4783 0.100350 0.059331 0.062460 0.039403 10.281748 8.277573 14.843330 12.889380 -4784 0.078476 0.072882 0.055743 0.033904 12.588329 9.841203 15.879768 12.812714 -4785 0.055263 0.045792 0.024840 0.026206 6.203515 6.076090 9.278439 7.022490 -4786 0.054357 0.046801 0.035108 0.031173 6.692352 8.458054 8.279742 9.589292 -4787 0.064603 0.050370 0.023286 0.017330 7.270516 7.484051 11.336032 9.640546 -4788 0.073971 0.062056 0.063260 0.039747 13.453189 10.858180 18.092215 14.481832 -4789 0.060061 0.041169 0.033098 0.027022 11.176417 8.453101 18.163690 13.473450 -4790 0.130844 0.089105 0.036692 0.041232 9.052893 8.390907 9.911278 11.133376 -4791 0.061023 0.053189 0.033284 0.030778 6.551887 7.542905 11.432690 10.987753 -4792 0.069307 0.048503 0.052743 0.031413 8.260503 6.340861 11.034088 10.756150 -4793 0.118407 0.090377 0.045078 0.035955 7.015380 5.698883 9.684645 9.277110 -4794 0.092658 0.096690 0.060224 0.058187 7.798254 7.786419 10.335222 9.102046 -4795 0.060535 0.044971 0.025267 0.018481 7.472534 5.658006 11.783301 8.231258 -4796 0.071537 0.060265 0.032707 0.029393 9.395104 9.588578 10.422891 9.593499 -4797 0.104001 0.104927 0.078173 0.044209 11.134225 9.382619 11.302704 13.506894 -4798 0.086162 0.069136 0.046966 0.027214 8.584470 6.599124 9.697379 8.176481 -4799 0.084337 0.069750 0.047774 0.040504 7.704318 6.577838 12.800946 9.174918 -4800 0.097831 0.076514 0.040469 0.029543 11.848217 9.559934 12.891507 10.639065 -4801 0.072194 0.051178 0.034346 0.029648 11.201610 11.355204 11.525347 10.059496 -4802 0.089208 0.085362 0.081938 0.077391 10.804750 11.404395 15.055451 12.291962 -4803 0.059235 0.055722 0.034599 0.026021 10.076188 10.308982 12.442982 12.568978 -4804 0.063176 0.062568 0.026512 0.032406 9.455958 5.777078 9.560742 6.069786 -4805 0.081694 0.075135 0.034997 0.035037 9.115511 6.988036 10.878591 8.998416 -4806 0.043374 0.039588 0.020178 0.022176 9.371997 7.322574 12.898319 9.740727 -4807 0.098802 0.051118 0.036194 0.020098 9.209688 6.468224 11.935517 10.826276 -4808 0.049269 0.055158 0.024347 0.035144 11.113543 8.480312 17.150591 12.793885 -4809 0.053530 0.067479 0.028096 0.035753 11.160748 8.022460 11.574460 11.870893 -4810 0.103687 0.105448 0.085854 0.072798 10.580119 8.606154 9.721866 8.005248 -4811 0.055686 0.064674 0.042833 0.041431 10.058284 8.121080 8.528135 7.165075 -4812 0.112150 0.090834 0.054541 0.042463 12.197943 11.867453 13.336572 13.883026 -4813 0.071714 0.052363 0.052268 0.034973 17.588312 14.600909 17.051036 17.163664 -4814 0.078886 0.092708 0.034999 0.051181 11.993476 9.477270 13.370893 14.242528 -4815 0.072488 0.044368 0.045861 0.026947 6.555145 5.062396 10.747219 9.464413 -4816 0.066280 0.057071 0.038186 0.038953 7.720999 6.139279 15.910852 12.712727 -4817 0.110071 0.086178 0.095496 0.064124 9.336272 6.386875 20.233697 15.966179 -4818 0.069145 0.051022 0.018002 0.019060 7.416436 6.779437 9.272786 9.002746 -4819 0.068306 0.064202 0.039680 0.033233 12.484437 9.065005 16.626866 12.732405 -4820 0.089909 0.093412 0.051185 0.035434 7.470971 9.195339 11.947995 13.246668 -4821 0.055777 0.055358 0.036046 0.022788 8.274411 7.285650 12.109888 8.272536 -4822 0.106171 0.076578 0.048647 0.052373 9.950827 9.448912 12.508583 11.673663 -4823 0.058097 0.069108 0.026937 0.039572 7.285269 6.068757 9.185701 7.124805 -4824 0.050017 0.073776 0.029291 0.036784 11.907710 10.236298 17.414072 15.553015 -4825 0.071421 0.068176 0.075454 0.053199 8.938620 7.187168 11.028122 8.459810 -4826 0.088770 0.086835 0.030889 0.032754 12.757851 12.120287 15.230693 15.562392 -4827 0.073779 0.060423 0.058957 0.044665 9.701494 7.743406 12.432568 8.774482 -4828 0.045124 0.030528 0.028461 0.022501 9.029263 7.824713 11.690573 9.410806 -4829 0.069433 0.051562 0.033147 0.020596 7.469016 5.651304 12.745595 10.473217 -4830 0.047999 0.052766 0.043060 0.037011 14.567022 12.588869 18.094289 13.027680 -4831 0.048912 0.053722 0.032938 0.027359 12.683575 10.109281 10.922998 8.691755 -4832 0.096241 0.075926 0.070350 0.052835 11.052665 8.975737 16.880626 16.945287 -4833 0.082740 0.070086 0.036020 0.043805 8.489095 8.351320 14.396768 12.880427 -4834 0.120425 0.105523 0.066368 0.029574 14.076781 11.555638 13.748546 11.704590 -4835 0.069353 0.058015 0.080170 0.056265 11.506094 6.715537 12.578511 7.297003 -4836 0.087712 0.077010 0.041499 0.029537 9.304660 8.871116 11.663988 9.937878 -4837 0.115192 0.073610 0.055710 0.044708 7.783971 6.561453 14.299902 10.943072 -4838 0.061861 0.064004 0.038974 0.044222 10.981990 9.618386 13.108545 11.145157 -4839 0.055564 0.041468 0.022089 0.018412 8.705901 8.321815 10.920315 12.326271 -4840 0.105333 0.089119 0.056731 0.046550 11.308235 8.547582 10.957851 11.025359 -4841 0.036459 0.044898 0.030338 0.030849 9.309482 6.886763 11.047246 9.407613 -4842 0.058881 0.041969 0.034270 0.016447 7.657031 7.436797 11.627034 12.027594 -4843 0.077984 0.030904 0.037517 0.022840 7.745826 5.619046 12.229574 10.569448 -4844 0.058928 0.047753 0.037543 0.020101 15.031855 11.514447 16.988931 14.886064 -4845 0.132150 0.086250 0.077568 0.060355 8.449675 7.159908 11.791598 10.221529 -4846 0.096933 0.065330 0.042804 0.033380 15.259955 15.955117 16.851373 13.899386 -4847 0.135699 0.108675 0.101101 0.093160 13.283348 12.223615 14.938702 12.963875 -4848 0.091294 0.071224 0.061322 0.051628 12.794791 9.550827 10.572446 8.304942 -4849 0.077841 0.068586 0.043636 0.028878 9.051857 6.539368 13.033207 10.552713 -4850 0.062695 0.072164 0.034973 0.031709 12.140605 10.818772 15.336044 11.392513 -4851 0.056408 0.055244 0.052740 0.035951 11.578697 8.035982 13.316966 9.760924 -4852 0.084594 0.091259 0.066951 0.050846 10.441083 8.028855 23.279835 15.278432 -4853 0.054990 0.037160 0.044247 0.018413 7.448760 6.091616 9.217591 9.599454 -4854 0.056041 0.063334 0.042578 0.042496 7.421654 6.082334 11.332982 9.765732 -4855 0.052674 0.049279 0.040854 0.033794 15.007754 17.463540 15.746043 13.502730 -4856 0.064388 0.073163 0.040733 0.034779 11.562560 9.539602 20.189188 18.648724 -4857 0.059135 0.074378 0.036321 0.037937 5.177239 4.462501 11.116105 8.886707 -4858 0.064894 0.054612 0.025084 0.023111 9.755579 8.476782 14.192894 15.356555 -4859 0.046309 0.035118 0.017796 0.013188 15.349817 10.571957 13.168645 12.980546 -4860 0.094654 0.124697 0.081778 0.089764 10.966362 10.700315 13.373472 16.282286 -4861 0.085338 0.064985 0.031243 0.022818 8.846796 10.744823 15.564250 16.238118 -4862 0.066265 0.053975 0.048220 0.056224 9.640051 10.471868 11.930895 10.017454 -4863 0.101364 0.099295 0.055175 0.086791 8.227319 6.728953 8.410499 8.454389 -4864 0.182171 0.134547 0.170141 0.077711 14.244906 13.604299 16.859301 11.597110 -4865 0.045405 0.049057 0.020086 0.026247 6.539271 6.415302 9.942987 7.203883 -4866 0.062410 0.060200 0.036049 0.025717 11.231231 10.199026 12.682817 11.877279 -4867 0.080579 0.076040 0.063038 0.061008 9.353136 7.340103 12.559697 9.073267 -4868 0.126128 0.104979 0.070244 0.088921 10.170254 8.779732 13.953016 10.926313 -4869 0.119642 0.085932 0.052485 0.039113 8.120069 6.917224 9.281243 7.244858 -4870 0.095880 0.053569 0.051234 0.032947 9.908434 11.139849 10.990970 10.562997 -4871 0.042623 0.040280 0.027914 0.022242 8.063177 8.709759 9.390759 9.412990 -4872 0.075360 0.087345 0.048811 0.028238 8.592427 7.436126 14.082605 13.644481 -4873 0.078274 0.075598 0.055637 0.060084 12.999882 9.515856 12.950812 12.228179 -4874 0.085146 0.095409 0.039445 0.038264 9.407459 9.910546 15.799056 17.407441 -4875 0.080461 0.054160 0.066729 0.062003 13.967559 11.015959 14.737229 14.039690 -4876 0.062131 0.057488 0.028621 0.024360 11.447847 9.182684 10.881625 9.770114 -4877 0.050949 0.035927 0.047328 0.028323 8.832902 8.805941 10.958849 12.471308 -4878 0.131907 0.112058 0.120086 0.063012 16.033514 15.251903 19.743345 19.360655 -4879 0.117725 0.092772 0.042155 0.025341 8.718394 8.221388 11.338633 11.743738 -4880 0.066705 0.051845 0.057227 0.043353 12.891351 11.807499 16.548726 13.682651 -4881 0.057148 0.071102 0.038381 0.048002 10.140793 8.966017 8.995645 7.117942 -4882 0.079981 0.067837 0.027461 0.024680 8.868215 8.001449 12.284104 9.708309 -4883 0.082037 0.062952 0.017072 0.014286 9.298102 8.054793 10.627874 7.783126 -4884 0.088270 0.061636 0.043692 0.027795 11.022641 9.077637 17.119163 14.768222 -4885 0.074790 0.061637 0.047681 0.041973 8.816744 8.718148 8.300485 9.866967 -4886 0.059855 0.047666 0.037044 0.035505 8.349774 8.688094 16.469646 13.421933 -4887 0.072663 0.057810 0.037954 0.027042 8.581361 7.604726 9.603194 6.809567 -4888 0.102930 0.093241 0.070836 0.080264 11.658952 9.088772 13.299754 10.440729 -4889 0.070434 0.060011 0.036361 0.029114 8.467704 7.903628 9.469909 10.668553 -4890 0.056490 0.052833 0.036082 0.023656 7.797815 6.407938 9.794896 9.472249 -4891 0.070715 0.065163 0.027401 0.028357 10.513603 9.388532 14.929526 12.894486 -4892 0.039676 0.041060 0.024845 0.016275 7.829681 6.453787 9.011475 8.023245 -4893 0.096641 0.072047 0.050296 0.040583 6.904396 8.034724 9.521651 8.084707 -4894 0.104432 0.096878 0.048921 0.057423 9.324363 7.826331 12.364983 10.260107 -4895 0.051865 0.037003 0.044496 0.024907 6.305576 6.493588 10.731939 9.224154 -4896 0.113781 0.097146 0.053839 0.063495 10.910354 9.716864 12.936346 14.700806 -4897 0.119594 0.058508 0.050812 0.039756 10.587354 8.265806 22.973835 17.879965 -4898 0.070887 0.045506 0.032292 0.041044 8.679203 10.716350 11.374914 12.798547 -4899 0.073932 0.076181 0.058018 0.053869 14.385876 8.545293 17.707854 13.165361 -4900 0.070735 0.061107 0.049127 0.035744 7.923564 6.050740 12.604762 9.175488 -4901 0.066173 0.058422 0.025051 0.027495 9.275361 8.282870 9.738283 10.433495 -4902 0.068861 0.046174 0.026665 0.021080 8.362004 8.142911 8.241819 6.480130 -4903 0.063291 0.069035 0.037114 0.036140 7.385419 6.383779 11.986134 10.218090 -4904 0.087486 0.077675 0.083130 0.049544 14.407468 13.458568 22.810298 18.570134 -4905 0.071770 0.067445 0.046683 0.034316 12.012773 12.661305 16.478981 17.809280 -4906 0.067090 0.043468 0.020732 0.017273 11.072855 7.597302 11.159766 7.926259 -4907 0.070226 0.054086 0.029775 0.023811 10.105827 6.874574 10.224108 7.502568 -4908 0.093824 0.070115 0.057202 0.035147 9.237613 9.876355 12.616527 16.974275 -4909 0.068616 0.040620 0.033416 0.027563 4.803987 4.057608 9.255198 7.552017 -4910 0.059350 0.069797 0.023031 0.023698 14.231445 8.417228 16.542690 10.883270 -4911 0.059513 0.045867 0.026033 0.020012 8.452065 6.262240 9.945542 8.052847 -4912 0.046344 0.049268 0.027615 0.028389 8.671705 8.297929 11.455466 10.009607 -4913 0.118719 0.089470 0.061580 0.040802 10.191690 8.602988 14.331509 10.011461 -4914 0.052994 0.058549 0.033764 0.029679 5.693044 4.947514 7.497526 6.182467 -4915 0.055926 0.048486 0.037824 0.038206 8.948445 9.026092 10.576452 12.310837 -4916 0.080201 0.052744 0.030894 0.016541 6.184722 7.309019 9.054690 10.635635 -4917 0.076218 0.072201 0.085768 0.059767 9.832209 7.923365 15.220352 10.724144 -4918 0.057041 0.070144 0.045267 0.050591 8.336080 9.485637 16.903867 19.665358 -4919 0.093878 0.074193 0.031287 0.036132 5.652933 5.737205 10.396165 9.869599 -4920 0.123403 0.090839 0.040685 0.029148 9.351238 6.339657 9.949375 6.913766 -4921 0.064114 0.045953 0.027194 0.018071 10.190235 10.577714 11.791111 11.644641 -4922 0.058037 0.048473 0.029259 0.017386 9.377987 9.921005 13.292608 12.890236 -4923 0.088707 0.071830 0.057853 0.052405 9.902822 9.114400 13.042705 11.924051 -4924 0.060911 0.046158 0.041226 0.035143 8.585351 8.667582 9.468443 11.264809 -4925 0.128539 0.091533 0.096369 0.075882 13.053082 12.770186 11.892930 12.104743 -4926 0.061000 0.072327 0.054658 0.049529 6.940755 5.795865 9.223124 10.068915 -4927 0.105875 0.108952 0.092642 0.054807 14.546646 15.041783 14.350721 16.838327 -4928 0.091017 0.070948 0.068976 0.058547 8.642707 6.448198 11.576745 8.217733 -4929 0.082259 0.068993 0.026138 0.022768 9.672532 7.226542 9.080686 7.399564 -4930 0.073662 0.064566 0.075919 0.044094 10.395697 7.949298 11.265774 9.979311 -4931 0.060149 0.053964 0.049926 0.046989 10.794967 6.949058 14.929243 9.135302 -4932 0.073435 0.053998 0.033536 0.026618 6.879783 7.819927 7.389085 7.895988 -4933 0.083360 0.073376 0.072407 0.049701 8.566169 8.829826 8.408241 9.767889 -4934 0.111279 0.084183 0.065021 0.043599 10.295876 7.637456 13.590370 10.149098 -4935 0.099209 0.087393 0.050937 0.036252 10.959691 11.408509 13.827332 13.855696 -4936 0.074632 0.058217 0.031709 0.031317 5.528390 4.728752 7.264133 6.453248 -4937 0.052522 0.052328 0.030063 0.038447 11.950222 10.152640 11.605244 13.080240 -4938 0.121984 0.080351 0.052761 0.039151 10.771260 10.431497 13.594789 13.591064 -4939 0.067401 0.050312 0.043553 0.027092 7.905824 8.217269 14.169942 14.973357 -4940 0.093986 0.075977 0.071793 0.070467 12.727414 10.694848 10.939900 12.915601 -4941 0.098285 0.074805 0.070468 0.044589 15.031655 12.066211 12.967387 10.024153 -4942 0.080695 0.059780 0.060066 0.045048 13.129217 11.007287 13.142418 14.016079 -4943 0.045564 0.039433 0.033312 0.028401 10.910260 8.509354 10.823361 9.739679 -4944 0.094821 0.083616 0.058723 0.043031 10.166325 7.764255 19.802035 14.864704 -4945 0.079876 0.061561 0.052725 0.034408 12.512809 11.124245 19.660939 16.075015 -4946 0.084826 0.082947 0.074819 0.040288 10.291606 9.498719 11.526307 13.372107 -4947 0.053134 0.055076 0.034984 0.032461 8.691773 10.333028 10.606213 13.468976 -4948 0.092061 0.060479 0.047797 0.024254 9.343948 6.392847 10.140448 8.502635 -4949 0.080169 0.087353 0.050560 0.055308 10.102887 7.877939 13.500261 12.597508 -4950 0.080665 0.058037 0.053252 0.041524 11.930333 11.040225 14.254567 11.561234 -4951 0.094551 0.100676 0.050473 0.044954 12.006937 8.267027 14.499016 11.020319 -4952 0.081771 0.056651 0.048881 0.036236 9.624660 9.133313 12.896394 8.801243 -4953 0.072457 0.050202 0.042800 0.033196 9.604522 9.128976 14.551175 10.812365 -4954 0.093253 0.063037 0.044216 0.033347 10.497496 8.952860 12.634419 12.370301 -4955 0.069498 0.056817 0.050361 0.026630 10.179983 9.779472 11.644179 10.753827 -4956 0.052953 0.057806 0.039405 0.047926 9.637610 8.218101 13.402635 15.623360 -4957 0.043816 0.028725 0.030720 0.018447 10.936366 9.371288 15.204446 15.042803 -4958 0.070438 0.055169 0.032703 0.024640 7.537470 7.642009 11.633153 9.462011 -4959 0.057969 0.072684 0.036342 0.035925 10.630736 7.999751 16.977447 10.312285 -4960 0.143388 0.127870 0.093025 0.068599 13.491738 14.785129 16.415996 17.934330 -4961 0.068539 0.067358 0.049373 0.041180 14.041366 10.564368 13.371693 10.949189 -4962 0.155371 0.146528 0.097051 0.111687 12.276504 12.451929 16.754304 19.419746 -4963 0.046073 0.044388 0.040514 0.029865 4.720436 4.836215 7.815171 7.370296 -4964 0.073832 0.052227 0.031831 0.024289 9.058069 8.039930 9.690453 9.312475 -4965 0.092128 0.053648 0.080048 0.035652 7.120418 8.456104 12.315753 10.219274 -4966 0.075560 0.067851 0.064633 0.062818 7.655892 7.232357 13.247529 13.906387 -4967 0.081784 0.075101 0.039685 0.037391 15.417827 14.392696 17.386322 15.192003 -4968 0.076236 0.053806 0.044113 0.032269 11.479168 8.079574 12.838542 9.468770 -4969 0.041322 0.047341 0.021441 0.024138 10.901036 7.838506 12.582266 11.186859 -4970 0.045723 0.035300 0.034770 0.011285 8.375530 7.800809 9.121732 11.686949 -4971 0.090358 0.051463 0.032922 0.022973 9.117633 9.201916 11.661979 10.888262 -4972 0.129692 0.118377 0.084573 0.084336 15.017673 9.645275 23.772131 15.165980 -4973 0.082730 0.085335 0.077593 0.088019 14.095806 13.833552 14.425633 12.140131 -4974 0.099844 0.063171 0.074706 0.040368 13.003189 9.928367 9.689166 7.651219 -4975 0.108305 0.074491 0.045340 0.027303 9.598496 8.564869 9.400420 8.994868 -4976 0.086375 0.063983 0.057794 0.050529 7.996924 7.190136 11.179271 8.771488 -4977 0.081333 0.079655 0.049151 0.078833 8.144702 8.216515 15.281239 12.148304 -4978 0.067335 0.068894 0.064265 0.044811 7.258914 5.576338 11.204515 7.197619 -4979 0.058019 0.069654 0.051321 0.070583 11.940700 8.461739 13.221171 10.900685 -4980 0.054187 0.030347 0.035710 0.024265 10.476372 10.097269 11.531322 12.393448 -4981 0.057182 0.059949 0.029770 0.021224 11.179398 8.520220 14.172718 11.029296 -4982 0.058475 0.052422 0.028550 0.022214 6.774547 7.439205 8.638141 8.268666 -4983 0.061123 0.071404 0.023638 0.024021 9.408885 7.034994 10.555721 8.269026 -4984 0.047852 0.059386 0.044163 0.030904 7.185059 6.562132 10.745922 11.069025 -4985 0.098436 0.065265 0.075478 0.064035 11.568075 11.205148 14.316365 11.548285 -4986 0.056519 0.062341 0.079726 0.068485 11.367703 8.189768 17.536850 11.762678 -4987 0.090226 0.063205 0.049579 0.033404 8.431529 7.966900 12.410094 10.936552 -4988 0.055584 0.066158 0.047411 0.048347 9.000709 9.091211 13.761885 11.138756 -4989 0.111933 0.095276 0.069636 0.048882 13.672446 11.686514 15.783795 14.657552 -4990 0.108581 0.102666 0.042644 0.039758 10.366827 7.932935 13.394828 10.743823 -4991 0.038814 0.035808 0.021954 0.017553 8.526433 8.266607 10.743581 10.127003 -4992 0.096198 0.095228 0.062192 0.057645 7.427750 5.751537 12.114838 10.252413 -4993 0.072151 0.075759 0.057771 0.037229 11.925669 15.790282 12.227055 13.052108 -4994 0.097192 0.083719 0.058435 0.062115 8.600382 6.821781 13.176154 12.787101 -4995 0.141834 0.134488 0.072627 0.066664 11.971311 11.284444 13.973900 12.556491 -4996 0.056538 0.051222 0.044667 0.031883 9.215800 9.009173 11.204201 10.976110 -4997 0.063831 0.055826 0.034509 0.039573 10.356715 7.341063 8.561476 6.003650 -4998 0.046649 0.060794 0.029086 0.039851 9.824166 7.153524 10.761173 9.028834 -4999 0.070668 0.057261 0.039207 0.042379 10.196882 8.780808 15.961367 12.718645 -5000 0.099632 0.062557 0.041337 0.027478 10.289350 9.409480 16.646749 16.808523 -5001 0.101392 0.100994 0.080975 0.072783 10.834747 9.571954 14.605377 13.733375 -5002 0.071710 0.073919 0.046595 0.049539 12.591124 12.286595 13.129608 15.286821 -5003 0.076776 0.054742 0.049227 0.029790 7.441895 7.142853 14.429235 11.486558 -5004 0.063681 0.056002 0.045779 0.048126 10.500142 9.479018 12.592156 11.895295 -5005 0.117111 0.091591 0.047596 0.031285 14.650120 11.588033 16.543354 12.461554 -5006 0.060979 0.043568 0.026147 0.022354 13.151809 12.552119 13.186448 9.036504 -5007 0.118925 0.110260 0.045502 0.036403 13.328746 11.568664 16.910945 14.663914 -5008 0.050807 0.052752 0.059343 0.031653 7.944848 5.375045 12.207169 7.423725 -5009 0.124570 0.116994 0.079442 0.070145 10.670743 10.438744 11.756394 13.018201 -5010 0.084271 0.066806 0.068142 0.056348 11.327483 9.621811 17.484905 13.732928 -5011 0.104554 0.070602 0.084658 0.057875 11.564682 9.849327 19.028726 16.147845 -5012 0.070600 0.098766 0.089000 0.063581 10.782284 8.868799 11.855151 11.286747 -5013 0.062261 0.061790 0.055760 0.053762 9.014869 8.669105 13.792464 13.957498 -5014 0.067111 0.064941 0.049894 0.030580 10.601054 8.615061 11.382201 10.811175 -5015 0.052101 0.036419 0.022264 0.016654 8.103810 6.353116 7.957382 8.901587 -5016 0.103589 0.086618 0.060831 0.045385 10.454195 10.518710 12.161968 13.054604 -5017 0.059435 0.042937 0.024628 0.017247 10.202492 10.386972 13.757951 10.526287 -5018 0.064295 0.058303 0.051103 0.035422 8.105268 10.571070 9.374195 12.675426 -5019 0.092881 0.088078 0.071874 0.053560 7.912803 8.240904 15.161521 13.241679 -5020 0.132301 0.125515 0.066542 0.059379 12.431804 11.435390 20.508202 23.686754 -5021 0.085958 0.071577 0.040039 0.023267 11.944453 11.921864 13.249633 12.792576 -5022 0.091549 0.071241 0.052592 0.046284 13.619315 12.041966 9.308117 7.918522 -5023 0.085717 0.061557 0.042492 0.028953 8.836839 5.580722 14.702305 9.644393 -5024 0.082427 0.062071 0.042598 0.033530 10.750687 9.626097 11.151637 8.620496 -5025 0.090848 0.081233 0.089759 0.052158 11.707071 10.864919 17.097811 13.002967 -5026 0.085276 0.064434 0.035422 0.024175 15.363572 11.561972 14.947329 13.483988 -5027 0.075509 0.046902 0.053641 0.038984 10.941605 7.388693 15.701556 12.939683 -5028 0.075372 0.073149 0.026137 0.032284 10.012025 7.755011 14.319257 10.981137 -5029 0.143787 0.113453 0.081769 0.075574 11.857615 10.249829 13.368125 11.262464 -5030 0.082718 0.079015 0.065739 0.051406 12.744065 9.465087 16.218568 13.109015 -5031 0.092056 0.068266 0.054057 0.029362 11.391245 11.651606 17.740411 17.575729 -5032 0.071606 0.056673 0.032061 0.031820 12.781418 12.154795 12.570184 12.394806 -5033 0.113359 0.102456 0.059765 0.052111 7.349507 5.957711 12.967297 10.951403 -5034 0.064720 0.060302 0.037010 0.048760 6.540771 6.432171 10.824124 13.003294 -5035 0.121850 0.119551 0.035114 0.045262 9.852554 8.759928 19.682027 20.933774 -5036 0.108890 0.093398 0.107484 0.084518 11.232001 9.191548 12.010261 11.519676 -5037 0.075052 0.076805 0.032378 0.023562 11.052361 8.203104 13.930000 12.112963 -5038 0.103458 0.107034 0.042097 0.053719 9.730664 9.166787 10.148235 9.421419 -5039 0.053021 0.052222 0.045245 0.031765 8.274473 6.577603 13.978538 12.326355 -5040 0.048772 0.034735 0.027299 0.021086 8.070171 7.359777 11.198471 11.316737 -5041 0.069470 0.074872 0.044132 0.041296 10.162368 9.062488 16.494142 14.011721 -5042 0.070127 0.053460 0.029689 0.029398 7.116425 7.014444 10.420770 13.204042 -5043 0.080927 0.067187 0.037342 0.034471 12.969880 9.683319 13.050978 9.910075 -5044 0.098850 0.095931 0.047189 0.039437 7.359569 6.764167 13.429785 11.463870 -5045 0.071482 0.065071 0.033344 0.040775 6.147035 5.355996 10.295074 7.612280 -5046 0.119874 0.078227 0.077088 0.050994 12.167130 8.926837 14.308579 11.852656 -5047 0.087574 0.079813 0.075192 0.048232 7.703590 6.119070 10.276895 8.211734 -5048 0.072094 0.069285 0.031939 0.026181 7.972404 8.867273 10.946026 10.964963 -5049 0.093621 0.085789 0.045494 0.040720 6.121686 5.149507 9.231512 9.716383 -5050 0.069369 0.045307 0.024319 0.023525 6.062358 7.278470 11.341982 9.310071 -5051 0.060277 0.039411 0.031059 0.021693 10.089235 9.372307 12.108394 12.931438 -5052 0.053812 0.043601 0.029002 0.028844 10.064238 8.146143 10.775313 10.305474 -5053 0.063471 0.055617 0.026726 0.026799 8.700011 6.731962 11.980724 10.591514 -5054 0.094297 0.076867 0.049827 0.043689 8.960828 7.665870 12.644314 10.817526 -5055 0.055848 0.057569 0.031456 0.028420 12.408912 8.945455 15.194201 10.728764 -5056 0.073696 0.060161 0.025255 0.015601 9.137471 7.646770 10.654324 10.503659 -5057 0.061383 0.039268 0.034127 0.019616 9.282505 9.406978 11.973394 11.690056 -5058 0.095679 0.068018 0.058511 0.032976 7.796489 6.931681 13.579981 13.449252 -5059 0.072587 0.058028 0.042711 0.038200 12.773772 9.762988 12.374663 9.884764 -5060 0.078950 0.057159 0.032587 0.021031 8.142445 7.598128 11.735491 9.865652 -5061 0.070930 0.082267 0.075909 0.048884 7.652500 7.580789 11.479151 12.133837 -5062 0.071420 0.078107 0.059763 0.045809 9.554726 9.239946 11.375075 10.099013 -5063 0.073022 0.074048 0.037267 0.035691 11.611774 10.044905 14.655136 17.466369 -5064 0.101262 0.077313 0.059383 0.046531 12.619792 11.201945 20.365364 17.472076 -5065 0.082274 0.065973 0.028813 0.034887 6.166324 6.859262 10.599583 11.265475 -5066 0.062049 0.056670 0.053783 0.030662 13.921360 10.505790 14.714376 10.354834 -5067 0.068552 0.073580 0.045201 0.059111 6.958323 6.239357 11.014728 10.951099 -5068 0.062603 0.052137 0.024037 0.031851 7.986334 6.758665 13.401323 11.569543 -5069 0.101720 0.089076 0.058676 0.044084 11.872731 12.475326 12.895573 11.507353 -5070 0.078993 0.060016 0.085362 0.075797 8.661925 7.563906 16.081446 10.158088 -5071 0.118961 0.071495 0.081252 0.053069 11.682584 10.954870 15.760996 13.988681 -5072 0.071714 0.054081 0.052510 0.034105 10.077808 6.876610 12.240667 8.399702 -5073 0.091955 0.070818 0.053262 0.038072 9.502033 9.271063 14.773839 12.429210 -5074 0.074393 0.066922 0.055799 0.041803 7.178391 7.149178 10.209441 8.220900 -5075 0.058303 0.058862 0.034722 0.027748 6.667905 7.089366 11.966409 14.137746 -5076 0.084625 0.105263 0.070874 0.043362 11.230311 10.078208 12.763958 10.119778 -5077 0.058773 0.044986 0.035386 0.027743 11.559436 9.797639 15.168737 13.447935 -5078 0.061441 0.052501 0.045432 0.036704 7.712106 5.750132 10.487523 7.700238 -5079 0.097013 0.064197 0.051375 0.050613 8.437623 6.751609 9.000117 7.808004 -5080 0.115494 0.077366 0.100634 0.054466 7.068296 5.284928 8.468899 7.431617 -5081 0.062719 0.047500 0.047141 0.033967 8.033180 8.127785 9.676323 9.370940 -5082 0.112228 0.070834 0.057061 0.035094 17.480021 13.491877 24.976042 16.664919 -5083 0.066738 0.052575 0.052548 0.071114 9.745071 8.898476 13.353539 10.813923 -5084 0.171898 0.095798 0.071467 0.042451 11.665415 13.494336 20.103140 17.439008 -5085 0.058792 0.071460 0.046559 0.033771 8.911695 5.600953 13.161188 9.739474 -5086 0.074889 0.079054 0.040380 0.045175 9.363701 9.222148 15.666510 11.986654 -5087 0.060989 0.050544 0.020009 0.019658 7.509669 6.999062 9.460537 8.358036 -5088 0.058867 0.059061 0.021202 0.019481 13.029531 9.927169 9.837734 9.598971 -5089 0.061026 0.053225 0.029872 0.029555 10.180752 9.178518 13.861713 12.818947 -5090 0.074684 0.047257 0.037172 0.023169 8.123116 7.144470 10.811376 10.696115 -5091 0.070820 0.077676 0.063137 0.062570 10.465276 9.902683 16.462712 15.401117 -5092 0.077944 0.061256 0.032227 0.045349 8.048605 6.811872 8.895508 6.553423 -5093 0.040587 0.033292 0.032620 0.035704 9.384140 8.359442 9.678404 9.089842 -5094 0.094173 0.097959 0.054139 0.043330 8.117152 7.720738 10.314376 8.600841 -5095 0.041951 0.031858 0.024437 0.020783 11.427466 11.040709 10.703595 9.934534 -5096 0.079043 0.049554 0.053013 0.047812 8.251028 6.800525 16.965309 12.191851 -5097 0.098054 0.083196 0.065964 0.054371 8.306502 7.671727 10.062182 9.271462 -5098 0.053927 0.055414 0.035147 0.036707 11.826437 9.463620 12.317474 9.707685 -5099 0.070150 0.053729 0.045587 0.034618 10.489367 10.683557 14.638501 12.792235 -5100 0.089766 0.074466 0.059945 0.054889 8.589927 5.753472 15.081816 12.782022 -5101 0.073927 0.074394 0.037118 0.026387 7.029267 5.995095 9.758576 9.184473 -5102 0.094618 0.044480 0.084812 0.040793 15.209000 11.361843 10.466575 10.310520 -5103 0.052531 0.049532 0.028418 0.022364 10.024426 7.684893 11.258831 9.589334 -5104 0.081342 0.060472 0.055182 0.038385 8.843530 6.116919 19.336552 11.863658 -5105 0.089789 0.063594 0.040182 0.026053 5.682200 4.628831 9.380527 7.942981 -5106 0.063875 0.063669 0.053352 0.058829 9.672549 11.111620 7.573909 11.165834 -5107 0.075936 0.056163 0.061070 0.048488 8.926652 9.614123 11.209494 9.170226 -5108 0.059330 0.046002 0.029312 0.016807 9.098037 6.733217 11.541066 11.508352 -5109 0.063531 0.056280 0.044268 0.036861 12.307707 9.462605 13.915746 12.926253 -5110 0.160785 0.129565 0.099420 0.099434 16.852616 11.403529 24.555771 18.632242 -5111 0.144143 0.104908 0.120006 0.090362 12.446540 9.399355 13.229308 11.355981 -5112 0.059375 0.047369 0.027065 0.020190 12.130643 7.092324 12.255936 9.527769 -5113 0.070261 0.067379 0.039887 0.033924 10.589782 8.963618 12.214683 9.755624 -5114 0.090476 0.067290 0.088618 0.071774 7.633106 6.037374 16.616393 13.271491 -5115 0.083315 0.087817 0.051030 0.057019 11.925136 10.764031 12.346176 10.916121 -5116 0.071041 0.053686 0.037943 0.024697 7.587841 6.549679 10.276858 9.094897 -5117 0.061640 0.048169 0.032831 0.025980 9.358341 7.602635 13.261758 9.453712 -5118 0.108063 0.072153 0.065452 0.044844 13.454285 10.537250 15.820910 14.321873 -5119 0.100543 0.083657 0.057794 0.040463 10.060332 8.882824 13.923038 10.561190 -5120 0.090471 0.065024 0.048910 0.025556 14.113148 11.249871 18.332836 17.144861 -5121 0.046164 0.049896 0.034321 0.042358 9.123741 8.248284 9.860688 8.727629 -5122 0.068852 0.049757 0.022746 0.022714 11.188348 10.640800 13.683346 10.370702 -5123 0.099039 0.063999 0.048939 0.027614 9.951451 9.017198 10.800841 10.812131 -5124 0.090978 0.057690 0.070601 0.035952 11.279667 10.953902 21.524138 19.510637 -5125 0.060262 0.058092 0.036939 0.033242 8.994598 7.577671 10.849862 10.639918 -5126 0.074329 0.054709 0.049096 0.029410 9.282395 10.076612 17.631895 18.168828 -5127 0.068688 0.068460 0.029351 0.040010 8.458293 7.057590 15.623023 11.332234 -5128 0.130470 0.092680 0.046383 0.034666 10.603694 8.424271 17.729239 12.562964 -5129 0.041378 0.037174 0.040203 0.024635 8.800534 8.014853 13.697292 10.349780 -5130 0.102347 0.074584 0.063270 0.061419 12.931962 14.133900 10.822300 12.918353 -5131 0.089265 0.064245 0.051399 0.030629 11.250291 10.084618 15.280405 14.302219 -5132 0.061341 0.053188 0.039888 0.040881 12.048478 8.628494 15.147668 11.615014 -5133 0.082218 0.103126 0.049597 0.058609 11.826901 13.380009 15.020131 15.252375 -5134 0.054815 0.045573 0.066792 0.040852 10.725130 9.575815 12.030318 10.892852 -5135 0.084044 0.075637 0.051967 0.054116 8.263871 7.115332 11.900353 10.172642 -5136 0.075797 0.062265 0.043418 0.049204 11.253866 7.266898 11.178317 8.734842 -5137 0.123467 0.089584 0.070418 0.058201 6.922890 6.192503 10.673244 8.428989 -5138 0.067531 0.085201 0.047247 0.043816 12.052305 8.035342 11.896600 8.402052 -5139 0.068000 0.065644 0.048965 0.035982 9.858565 9.044961 12.166163 12.859940 -5140 0.070963 0.070184 0.027204 0.035562 8.409284 9.373344 8.737230 8.885893 -5141 0.114719 0.120690 0.100408 0.086978 12.730772 9.472324 17.737732 20.526577 -5142 0.059091 0.084772 0.045356 0.055266 10.378440 6.310535 12.157132 10.073459 -5143 0.132210 0.124926 0.081153 0.061280 11.271783 9.007363 10.104149 9.367168 -5144 0.094791 0.067033 0.078414 0.040232 7.683921 7.397628 10.420042 9.103037 -5145 0.094540 0.067948 0.051061 0.032342 7.365760 5.816415 8.228039 6.436089 -5146 0.069938 0.052124 0.084255 0.045030 10.615733 7.263205 11.396821 9.455909 -5147 0.143430 0.100190 0.077696 0.047921 13.095312 8.788071 15.817812 11.081080 -5148 0.045298 0.046086 0.023890 0.023767 8.166051 7.115492 9.740780 8.343996 -5149 0.053729 0.044314 0.023643 0.022719 7.099417 6.427779 11.287696 10.246523 -5150 0.057421 0.054028 0.032939 0.048863 15.750399 12.517007 13.377225 12.210538 -5151 0.055277 0.061566 0.043724 0.044891 5.976910 7.731686 9.238715 9.913284 -5152 0.071554 0.055266 0.048145 0.044871 10.226586 9.934481 11.285733 12.504780 -5153 0.089414 0.065545 0.046752 0.034065 10.244159 9.368542 11.478815 8.597037 -5154 0.066888 0.053179 0.046652 0.039440 9.490754 9.473962 10.010173 8.595503 -5155 0.077694 0.080524 0.054251 0.046553 10.092951 12.080540 11.701788 12.177397 -5156 0.096191 0.082560 0.045887 0.034892 15.853538 12.479659 17.700484 18.468684 -5157 0.097051 0.081190 0.078970 0.059855 7.182079 6.207315 12.887842 11.592558 -5158 0.084726 0.065499 0.048744 0.037315 6.837997 5.586211 10.208696 9.401795 -5159 0.117528 0.099189 0.057726 0.054159 11.607709 10.324648 14.868022 13.696334 -5160 0.086230 0.072107 0.047445 0.036936 6.629903 6.223165 10.077350 6.740255 -5161 0.073419 0.059962 0.034608 0.032996 6.097507 6.169994 8.602157 8.972204 -5162 0.077340 0.058836 0.077961 0.054128 15.072009 13.914534 14.597118 14.131889 -5163 0.049986 0.040365 0.027604 0.019132 7.878501 6.806696 13.796861 11.394068 -5164 0.040666 0.041349 0.044901 0.044611 8.471805 7.726123 15.453382 11.637474 -5165 0.057756 0.062262 0.029247 0.025728 7.836393 6.539542 9.688117 10.182442 -5166 0.081449 0.050580 0.036933 0.032875 10.862862 9.197267 12.648997 10.585298 -5167 0.073237 0.077892 0.036466 0.033603 8.515385 6.082217 9.952037 8.321096 -5168 0.055908 0.067964 0.050872 0.039759 8.405845 6.252221 9.616796 8.779629 -5169 0.070661 0.070237 0.032942 0.027379 7.755416 8.577063 11.147673 17.480447 -5170 0.074818 0.098525 0.045849 0.070497 8.850159 6.970174 10.127255 8.022384 -5171 0.080917 0.074818 0.052169 0.036026 11.608678 12.731964 13.414817 15.125167 -5172 0.047902 0.054901 0.039487 0.039817 10.991719 9.221020 12.935003 11.769598 -5173 0.068674 0.050689 0.050383 0.042351 8.409429 7.113823 12.758950 9.941206 -5174 0.083980 0.063322 0.057474 0.032574 11.943313 10.024052 14.290120 12.777170 -5175 0.058096 0.061227 0.039745 0.042525 11.866961 13.590539 11.780901 14.452893 -5176 0.099811 0.062990 0.044682 0.030382 11.246455 8.841825 14.365889 10.535439 -5177 0.065405 0.059255 0.023115 0.022834 7.511133 7.743919 9.733250 8.543915 -5178 0.079841 0.049934 0.056146 0.030310 12.411573 14.792456 13.763517 17.372141 -5179 0.042400 0.049837 0.019053 0.023376 8.040297 5.924112 8.966474 8.228067 -5180 0.111829 0.078945 0.044433 0.034348 8.253114 7.728163 10.723925 8.343798 -5181 0.080158 0.070257 0.057452 0.036973 9.674733 8.708863 13.159480 11.848293 -5182 0.068526 0.065919 0.052103 0.057420 5.605615 5.633414 7.615907 7.006641 -5183 0.058442 0.059762 0.030249 0.042211 8.962749 8.638492 14.452248 13.338798 -5184 0.079690 0.064733 0.053695 0.030707 11.460305 12.158174 10.085571 11.915641 -5185 0.144784 0.130409 0.106264 0.106138 9.867956 9.280980 10.115293 9.690647 -5186 0.071951 0.067011 0.055616 0.043807 13.349272 8.377450 15.105275 11.291793 -5187 0.062729 0.058049 0.033797 0.026303 5.622580 5.131635 7.788188 6.391344 -5188 0.063396 0.055708 0.024878 0.030926 10.215350 8.649201 14.560206 11.265239 -5189 0.125032 0.130552 0.051758 0.054944 11.574540 10.243545 15.120429 14.380943 -5190 0.067356 0.051664 0.035989 0.021150 7.925616 6.152052 7.688926 7.808225 -5191 0.066153 0.063371 0.047186 0.046480 6.176699 6.802705 9.561381 9.510684 -5192 0.105072 0.070407 0.055833 0.048093 12.165431 9.631132 14.623437 12.867168 -5193 0.045495 0.042712 0.033323 0.019618 8.141697 7.444747 13.383052 9.220755 -5194 0.060792 0.038599 0.045038 0.023676 8.475458 7.662726 11.277281 8.058028 -5195 0.061108 0.052895 0.056129 0.042626 22.793999 14.141503 18.742047 12.144890 -5196 0.056750 0.045262 0.045775 0.042208 11.697471 10.305826 13.418374 14.319459 -5197 0.059489 0.066128 0.038603 0.033013 13.122127 9.691474 13.232964 11.606047 -5198 0.069830 0.074935 0.018755 0.023027 8.380852 9.343502 10.941971 11.089913 -5199 0.041840 0.034508 0.021771 0.014296 7.186867 8.680583 6.680466 7.985525 -5200 0.089337 0.088165 0.055668 0.058001 12.802548 9.193255 20.621585 11.531302 -5201 0.085946 0.063707 0.076112 0.044430 10.532566 7.475132 14.866729 13.110907 -5202 0.050916 0.064704 0.020998 0.016940 13.933549 9.562034 14.981464 10.983227 -5203 0.132922 0.100738 0.065500 0.070099 5.688701 7.037109 12.000235 13.471902 -5204 0.063882 0.041254 0.043787 0.044240 8.589928 8.196182 9.012085 8.165262 -5205 0.064497 0.051740 0.047370 0.031354 6.122483 5.799706 9.500233 8.105103 -5206 0.082822 0.063204 0.046364 0.034161 10.498778 9.669913 10.166637 8.087894 -5207 0.059992 0.037667 0.052935 0.034778 8.941714 7.151144 11.423437 7.403188 -5208 0.055085 0.046419 0.035138 0.030242 7.340799 5.410490 9.558004 7.098777 -5209 0.082742 0.083750 0.052131 0.051237 15.094899 15.019402 19.414494 18.226707 -5210 0.051581 0.050001 0.027930 0.019507 8.362282 8.394761 12.731889 12.793394 -5211 0.068607 0.073185 0.030750 0.034985 11.554708 9.312338 18.904504 14.199498 -5212 0.055215 0.050788 0.056540 0.044374 8.798316 7.663587 14.084487 14.162085 -5213 0.063803 0.064869 0.034226 0.028920 16.117678 13.050745 15.337366 14.339199 -5214 0.056893 0.043405 0.031834 0.027979 10.848388 7.552399 15.759659 12.738269 -5215 0.105148 0.097622 0.073814 0.060526 12.817787 10.469532 18.663871 17.288649 -5216 0.176421 0.106487 0.065005 0.058689 10.498392 8.695136 11.557951 9.813533 -5217 0.048688 0.045838 0.030636 0.029173 7.923493 8.223496 17.071117 12.899375 -5218 0.057844 0.046482 0.031729 0.027642 9.432975 8.024604 11.268056 11.369886 -5219 0.068613 0.047107 0.035860 0.026029 9.401704 6.959181 20.096225 12.865723 -5220 0.083181 0.045804 0.050405 0.027636 7.582189 8.909586 11.742337 12.405634 -5221 0.073365 0.070462 0.071738 0.055303 10.842338 8.439866 20.668834 15.624501 -5222 0.069641 0.041741 0.033272 0.017418 11.408691 9.188206 9.385462 7.783368 -5223 0.046468 0.044765 0.033816 0.023942 7.621658 7.289983 13.522915 10.780564 -5224 0.074674 0.053256 0.074140 0.043463 10.574182 8.423532 14.005128 10.912467 -5225 0.057845 0.056422 0.063228 0.045046 9.088201 10.817930 10.162186 12.553409 -5226 0.038503 0.045240 0.017262 0.021463 5.284321 6.009594 8.993870 10.061325 -5227 0.099754 0.071414 0.041831 0.041353 12.957823 10.369558 16.400266 14.294184 -5228 0.076343 0.054503 0.040621 0.028402 9.193079 6.656018 10.005591 6.770546 -5229 0.098643 0.075199 0.061462 0.062937 11.775813 9.363670 13.140685 10.888788 -5230 0.080132 0.075798 0.063005 0.081474 9.387339 7.482093 13.600358 11.309824 -5231 0.077541 0.066754 0.032865 0.041063 10.375753 8.152065 15.852197 11.116738 -5232 0.071728 0.048251 0.058871 0.033356 9.925046 9.637800 13.824442 10.455600 -5233 0.059076 0.054521 0.026882 0.022101 6.752928 5.648333 11.194051 7.508118 -5234 0.083474 0.091863 0.047720 0.054977 7.496921 6.606024 12.648926 12.696309 -5235 0.058320 0.057489 0.030991 0.024776 10.120184 8.329293 10.404377 9.831363 -5236 0.070350 0.047405 0.042987 0.043162 11.952704 8.996464 13.368274 9.505233 -5237 0.091945 0.068746 0.038501 0.025253 7.658618 7.932764 9.177479 6.401055 -5238 0.041201 0.038450 0.042300 0.041365 9.740696 8.363037 11.678133 11.397748 -5239 0.063068 0.049453 0.053221 0.036401 8.944005 7.552663 9.041126 7.491037 -5240 0.084220 0.085498 0.034580 0.029514 6.866494 5.046458 9.087233 7.761251 -5241 0.125663 0.089451 0.124802 0.113236 10.767611 11.512371 10.131994 10.327608 -5242 0.058874 0.044749 0.036381 0.025753 9.168247 9.172879 10.183576 10.210069 -5243 0.097473 0.110358 0.059304 0.069418 10.038644 7.851265 16.277208 17.551133 -5244 0.088501 0.084855 0.071788 0.069378 10.201819 7.829536 10.131241 8.543278 -5245 0.061007 0.040019 0.039607 0.018011 7.572928 6.134420 10.135325 9.835850 -5246 0.100433 0.081717 0.079108 0.048439 8.475673 9.058077 12.422137 11.388147 -5247 0.086286 0.053378 0.067193 0.044558 8.521731 7.883175 11.552411 9.925167 -5248 0.086562 0.056144 0.039091 0.030418 8.812629 8.265959 14.712726 13.639330 -5249 0.055367 0.039870 0.060539 0.035343 7.264023 6.389100 12.678927 12.084964 -5250 0.040717 0.040109 0.032784 0.022625 6.224785 5.201603 7.533782 7.282326 -5251 0.109957 0.082813 0.042700 0.036416 11.632857 8.259933 21.385941 12.168822 -5252 0.082247 0.092479 0.046942 0.048713 7.537994 6.389086 10.806059 7.948877 -5253 0.053370 0.045072 0.028316 0.033090 11.097673 9.017176 14.360799 9.803864 -5254 0.092596 0.069362 0.045634 0.034958 9.186928 9.623651 14.365747 16.962607 -5255 0.097465 0.078376 0.052093 0.050541 7.136544 6.320980 11.116286 11.505247 -5256 0.067451 0.046008 0.023239 0.014558 5.103523 5.328879 8.191552 7.589833 -5257 0.081174 0.060853 0.036990 0.035062 15.104170 12.447345 13.674546 11.787856 -5258 0.104303 0.075689 0.032499 0.034964 9.265767 7.334469 13.700273 11.735520 -5259 0.068882 0.060887 0.035397 0.032726 9.605033 8.664818 9.540169 10.027508 -5260 0.101930 0.066137 0.064875 0.046521 7.512575 7.353007 11.197076 11.908353 -5261 0.108494 0.074114 0.040642 0.037904 12.788432 10.393533 18.076442 15.349168 -5262 0.090892 0.094637 0.054093 0.041321 11.262854 10.948768 19.058683 17.128855 -5263 0.060090 0.047804 0.040847 0.024547 8.043510 7.609747 7.073957 6.114031 -5264 0.084569 0.068600 0.047916 0.042162 11.370294 10.608906 11.763440 11.391369 -5265 0.048542 0.042586 0.027394 0.022383 10.339592 7.823429 13.361408 10.119534 -5266 0.101711 0.081073 0.060521 0.049384 14.488456 12.662604 20.645645 18.040254 -5267 0.070796 0.053116 0.032426 0.019810 8.213187 10.282901 9.786044 11.403672 -5268 0.052940 0.056975 0.047176 0.046275 10.270400 8.274890 9.703502 8.366196 -5269 0.055925 0.050696 0.039347 0.033713 10.323464 7.999061 13.195033 13.159118 -5270 0.058551 0.044780 0.030733 0.022743 13.310611 9.974307 17.627815 16.836573 -5271 0.053403 0.062472 0.033114 0.027752 9.978642 9.772736 9.725250 8.718437 -5272 0.048776 0.042114 0.030723 0.026755 7.768538 6.566906 8.878116 7.357699 -5273 0.055473 0.054661 0.035009 0.029874 8.976139 9.146396 10.111590 9.201163 -5274 0.121369 0.086757 0.096669 0.065820 6.289412 6.566516 9.680443 11.165797 -5275 0.092836 0.072761 0.075483 0.045189 11.072282 10.492064 14.809159 13.797398 -5276 0.061832 0.057068 0.045877 0.045513 9.951804 8.829368 13.364646 10.544774 -5277 0.060314 0.059727 0.030831 0.027714 13.231133 10.728217 14.994276 12.889712 -5278 0.066977 0.064655 0.030808 0.027571 9.230431 10.126440 11.581389 11.786833 -5279 0.085743 0.075543 0.042382 0.048866 8.373724 7.004966 8.658851 9.507547 -5280 0.056731 0.055046 0.055700 0.048194 9.285317 11.501734 13.712920 12.091599 -5281 0.085324 0.084800 0.039672 0.038467 7.388234 8.058968 14.009736 11.496705 -5282 0.083948 0.063028 0.065421 0.068438 10.766975 9.971720 13.521966 13.462841 -5283 0.052887 0.050971 0.023466 0.021067 8.747933 7.077086 11.761322 9.048639 -5284 0.066113 0.050975 0.056827 0.035153 11.385556 11.763011 13.329833 10.826990 -5285 0.114624 0.095482 0.054892 0.059527 17.176384 13.643312 12.602988 9.338190 -5286 0.067793 0.063757 0.032552 0.027567 12.348760 12.366095 15.269594 15.811961 -5287 0.080610 0.060910 0.046864 0.032809 7.998506 7.306609 9.157354 9.038497 -5288 0.042021 0.043707 0.036811 0.040963 9.239339 9.254239 13.278190 13.318064 -5289 0.125916 0.122761 0.071960 0.076257 13.996337 13.535955 18.081612 18.023838 -5290 0.068043 0.052510 0.060120 0.031363 9.675127 7.368187 10.507544 8.795541 -5291 0.049526 0.039987 0.027496 0.023981 7.791765 5.699808 14.488401 10.691903 -5292 0.071902 0.064392 0.035323 0.043047 12.469853 9.454339 19.415817 14.459238 -5293 0.085205 0.078364 0.062536 0.049842 12.001963 13.168552 13.247195 11.589129 -5294 0.110360 0.067194 0.071906 0.026909 10.823492 10.243657 13.659020 11.469520 -5295 0.084233 0.050132 0.050983 0.034252 9.337435 8.329262 13.132063 13.680337 -5296 0.065315 0.042323 0.032192 0.020753 6.882242 6.360730 8.461261 9.594361 -5297 0.090494 0.076234 0.066110 0.080129 7.212847 6.605236 8.047897 6.834896 -5298 0.082069 0.051679 0.072895 0.040957 12.408290 9.541737 12.911017 10.112906 -5299 0.110218 0.109462 0.049320 0.042916 11.518138 9.877041 11.873250 12.862236 -5300 0.064509 0.055746 0.032207 0.027874 9.977414 10.128465 16.117164 13.911626 -5301 0.042449 0.043707 0.018642 0.021553 7.655148 8.230183 10.118964 7.862960 -5302 0.095251 0.075578 0.087874 0.047779 8.476998 7.285948 10.131581 9.810037 -5303 0.064742 0.049725 0.024693 0.030247 13.445697 10.232747 15.712897 14.065048 -5304 0.061823 0.048740 0.044140 0.031598 6.625549 6.841757 9.599450 9.282454 -5305 0.076315 0.065329 0.046017 0.035341 8.913673 7.997294 15.976346 12.416929 -5306 0.078473 0.050825 0.024743 0.015101 7.251920 5.436881 10.064366 8.436767 -5307 0.111211 0.080889 0.093349 0.054328 7.969719 5.431253 8.969567 7.369280 -5308 0.094540 0.102870 0.063859 0.066991 13.006341 13.240876 13.460333 12.566761 -5309 0.062719 0.052849 0.054274 0.030226 7.903651 5.956061 13.337111 8.605702 -5310 0.056404 0.055522 0.058162 0.031848 9.487215 7.102132 9.880798 6.891311 -5311 0.086880 0.106873 0.045264 0.033667 11.324219 8.778153 13.158256 9.164728 -5312 0.105243 0.065210 0.040833 0.034431 8.845871 8.627589 13.347775 11.122741 -5313 0.090160 0.066576 0.062256 0.056014 7.149099 6.405067 9.780047 8.317508 -5314 0.131623 0.101216 0.053205 0.049107 12.859859 8.923450 17.749722 14.734957 -5315 0.072073 0.048835 0.039557 0.034376 8.991070 7.709117 14.534633 13.900973 -5316 0.059374 0.056367 0.046544 0.030558 9.558243 5.394732 9.270032 6.914613 -5317 0.040087 0.034893 0.019008 0.012923 10.508517 8.835663 9.444078 8.065629 -5318 0.074456 0.058997 0.037122 0.033191 14.223101 14.317253 13.517227 14.028234 -5319 0.072322 0.049614 0.023305 0.024187 7.249482 6.289664 10.669823 9.455806 -5320 0.064633 0.049881 0.051331 0.037458 11.530150 13.586573 13.464422 12.628489 -5321 0.094505 0.069644 0.049949 0.047389 11.175914 9.516570 14.461074 13.421646 -5322 0.083720 0.087998 0.057386 0.035300 8.686573 8.764518 14.739285 15.416621 -5323 0.108831 0.063586 0.044277 0.026417 7.194328 5.584619 8.480231 7.681740 -5324 0.054402 0.044243 0.044242 0.023737 6.828039 6.923069 11.711425 12.248601 -5325 0.053717 0.060062 0.026422 0.017729 10.714998 8.488724 13.695837 11.033040 -5326 0.089161 0.071779 0.040126 0.036905 12.312331 11.547288 11.821369 11.610443 -5327 0.082778 0.057943 0.039615 0.029135 8.653738 9.384878 10.625300 9.629141 -5328 0.071519 0.050118 0.045715 0.029748 9.205427 8.400392 13.459391 11.669230 -5329 0.066317 0.047537 0.044734 0.027440 10.829469 10.281678 11.754243 12.544830 -5330 0.066456 0.064286 0.032965 0.038782 9.503035 7.843238 9.448374 8.863180 -5331 0.057182 0.053848 0.044213 0.032445 9.923527 8.695659 11.312811 12.606963 -5332 0.070873 0.059658 0.049135 0.040969 9.267385 7.657746 13.922144 13.423521 -5333 0.082747 0.078555 0.050182 0.044960 10.576948 8.858130 10.971907 7.844523 -5334 0.057045 0.035189 0.028345 0.019416 8.057981 5.700349 9.651665 8.308372 -5335 0.137949 0.124364 0.091742 0.068406 10.104042 11.739775 17.641376 17.465120 -5336 0.087087 0.088686 0.034452 0.031925 8.206621 8.297916 9.293033 10.439461 -5337 0.082438 0.068462 0.058151 0.036349 10.833251 10.217302 15.043066 17.062790 -5338 0.101074 0.102330 0.053397 0.035680 11.499416 12.040971 9.676314 9.197203 -5339 0.073026 0.046471 0.037838 0.027469 10.091184 11.725827 12.854770 10.450903 -5340 0.101135 0.079997 0.046551 0.035266 15.720618 13.738113 17.324842 15.045669 -5341 0.104245 0.073288 0.079177 0.050163 8.517312 8.514080 14.163783 13.913118 -5342 0.076302 0.060842 0.061237 0.027286 10.043177 9.679914 12.567193 12.447389 -5343 0.098704 0.092391 0.043871 0.039552 11.334113 9.794129 12.544058 13.672944 -5344 0.044654 0.045397 0.014984 0.019129 5.711651 4.669363 10.748303 9.122811 -5345 0.106950 0.060516 0.080254 0.040198 14.126179 12.324014 11.962657 9.356331 -5346 0.092736 0.061205 0.069342 0.055853 10.145290 8.119534 11.018259 9.694355 -5347 0.069816 0.071734 0.040763 0.048334 10.761317 11.430007 10.035486 11.225199 -5348 0.067096 0.066453 0.057171 0.048095 12.914121 10.804364 11.706918 13.599026 -5349 0.065148 0.052417 0.032648 0.026583 9.866707 7.600289 12.417572 10.224569 -5350 0.071834 0.061315 0.044226 0.036940 9.861874 11.071844 12.209805 13.905510 -5351 0.123752 0.072007 0.091438 0.065754 10.080190 7.721840 12.958884 10.838459 -5352 0.061139 0.047065 0.044994 0.031468 9.891507 8.931097 19.045684 17.820756 -5353 0.121064 0.113713 0.147833 0.098691 11.497902 9.345553 10.368882 9.640503 -5354 0.069843 0.042052 0.070596 0.047032 13.096685 13.368385 13.377368 14.656644 -5355 0.048902 0.040959 0.019906 0.022738 8.911923 9.247054 14.924582 13.052680 -5356 0.082650 0.090884 0.052709 0.061827 10.571937 12.671806 15.266309 14.178906 -5357 0.135741 0.092899 0.101625 0.086643 12.575456 9.611957 14.701905 13.268936 -5358 0.116772 0.089933 0.076520 0.044473 8.361694 6.670734 11.245366 9.124660 -5359 0.101254 0.104107 0.045540 0.055447 7.820222 6.200010 15.612205 13.059267 -5360 0.055360 0.067953 0.034653 0.033805 8.645538 12.243651 10.135184 13.570189 -5361 0.082640 0.060906 0.033208 0.023577 11.078507 11.808742 15.174619 13.262885 -5362 0.052310 0.063002 0.037849 0.028274 8.180072 6.756962 9.364028 8.400008 -5363 0.057001 0.049065 0.050246 0.032819 8.720961 6.010520 14.470495 9.268687 -5364 0.076915 0.073544 0.032587 0.026986 7.886755 9.239235 10.453685 12.683214 -5365 0.075270 0.068221 0.049562 0.044633 12.041383 8.159323 14.796177 11.258480 -5366 0.088392 0.061980 0.041110 0.039091 8.711329 7.830674 14.360186 9.706815 -5367 0.060667 0.047465 0.040584 0.027054 5.151466 4.682325 9.734015 8.330122 -5368 0.087836 0.069522 0.048861 0.033308 10.848966 9.315910 11.395284 11.854570 -5369 0.054545 0.050061 0.037571 0.027274 10.441030 10.901106 11.867034 11.822236 -5370 0.058864 0.065882 0.033199 0.029384 11.774804 10.076802 15.345120 15.134918 -5371 0.063539 0.048334 0.034620 0.022929 10.000957 9.866361 11.025176 12.265290 -5372 0.061084 0.052763 0.037713 0.034246 10.045347 9.373091 11.247794 11.950239 -5373 0.080417 0.061396 0.079692 0.044312 10.064280 8.167261 11.274175 10.086027 -5374 0.087538 0.073571 0.047297 0.053355 12.174986 10.600005 11.707587 11.430764 -5375 0.054456 0.058227 0.033122 0.033267 7.952165 7.204072 10.690747 7.594755 -5376 0.076900 0.090224 0.046550 0.040626 9.442668 11.410262 10.265409 9.321069 -5377 0.084206 0.063929 0.056939 0.047842 8.696619 6.902891 10.664510 9.451454 -5378 0.055796 0.039057 0.043474 0.030498 11.173147 10.454238 8.762746 9.416490 -5379 0.043083 0.032544 0.036426 0.027282 7.540794 7.218575 11.789289 12.257460 -5380 0.069709 0.059995 0.044535 0.031766 12.156395 10.279434 14.716578 13.872452 -5381 0.073950 0.062898 0.041646 0.042991 11.714329 10.099308 15.451019 9.812358 -5382 0.059688 0.037617 0.028255 0.013435 6.787649 7.074495 11.820030 13.232771 -5383 0.062577 0.046951 0.038196 0.035147 11.761733 9.860725 12.210921 10.922230 -5384 0.069426 0.058871 0.061133 0.040639 7.332358 9.084481 10.160560 11.055833 -5385 0.061326 0.051782 0.029842 0.028215 8.806996 8.073480 11.518819 9.206197 -5386 0.076630 0.082723 0.053344 0.049673 10.756685 9.298577 20.487410 22.123318 -5387 0.055102 0.043257 0.032080 0.016173 8.023636 8.044878 9.377706 8.774455 -5388 0.081787 0.075722 0.045890 0.046106 10.541812 8.987443 8.493122 8.466971 -5389 0.065029 0.068925 0.063705 0.051720 12.082509 12.668072 12.504158 10.809878 -5390 0.057493 0.076937 0.053873 0.053125 11.075593 10.248664 14.307198 13.726568 -5391 0.102965 0.084260 0.058627 0.035703 7.482873 8.450361 10.241475 8.763564 -5392 0.085450 0.064192 0.052568 0.037103 8.744766 9.081516 8.530895 8.788046 -5393 0.116752 0.075108 0.071093 0.066994 11.397478 10.357576 11.554240 13.899333 -5394 0.066285 0.059623 0.037945 0.047572 9.148077 7.480315 13.167266 10.679793 -5395 0.079331 0.068228 0.046437 0.032838 9.321220 8.036711 17.887812 12.615307 -5396 0.056076 0.049883 0.026491 0.022894 6.989213 6.432324 10.337931 8.947438 -5397 0.039683 0.038303 0.021446 0.021810 7.422594 8.148997 9.931819 10.263735 -5398 0.093557 0.088923 0.087734 0.070204 8.537668 7.627559 13.085000 11.648063 -5399 0.132700 0.102042 0.117402 0.112412 13.181346 11.613756 19.639208 19.175784 -5400 0.060724 0.046982 0.051587 0.041653 8.458561 5.851557 7.836006 7.592984 -5401 0.050702 0.056567 0.047569 0.026072 7.991187 7.094964 8.781540 7.966396 -5402 0.090304 0.073913 0.033277 0.026194 13.080087 9.881939 13.054721 12.315443 -5403 0.102759 0.086148 0.078245 0.051835 12.860392 9.951784 16.047864 14.430187 -5404 0.097320 0.083181 0.062122 0.057112 8.610453 9.474657 10.985067 11.385201 -5405 0.081089 0.069357 0.047349 0.031812 8.799685 9.075310 14.548618 14.020880 -5406 0.068024 0.078592 0.038659 0.043473 10.840624 8.698038 11.404501 8.488403 -5407 0.081281 0.074377 0.046671 0.035965 8.659561 6.173038 13.155154 11.154766 -5408 0.065104 0.065151 0.026050 0.033679 9.286228 8.374345 11.391803 9.204540 -5409 0.073521 0.058547 0.069158 0.050269 9.903898 8.565313 15.303672 11.091179 -5410 0.039007 0.040075 0.023043 0.017201 9.297165 8.426973 11.404503 9.905804 -5411 0.095721 0.070119 0.045969 0.028527 9.525809 10.258235 13.105389 12.781452 -5412 0.054959 0.058225 0.038049 0.040449 9.224160 9.824819 11.450499 13.757135 -5413 0.064585 0.060329 0.033862 0.026937 12.925672 12.322521 11.511066 10.810781 -5414 0.059216 0.053826 0.045117 0.033769 8.932183 9.249277 21.293432 20.039554 -5415 0.094346 0.081114 0.039866 0.055178 6.948278 7.155365 7.816885 9.863214 -5416 0.061481 0.048179 0.029509 0.020067 14.041496 10.723255 13.550748 10.093633 -5417 0.078861 0.107600 0.074389 0.064168 9.031624 7.895092 11.393658 9.839212 -5418 0.067217 0.050558 0.041232 0.025630 8.570483 8.411472 9.549474 11.805474 -5419 0.080014 0.087649 0.044514 0.050610 10.041146 10.744872 20.408095 17.399066 -5420 0.037500 0.030023 0.035904 0.024926 9.478097 6.677480 9.576160 8.441022 -5421 0.027464 0.029219 0.018171 0.019907 7.513982 6.537659 8.288895 7.862427 -5422 0.119384 0.105545 0.067425 0.061110 15.040671 12.107060 15.249831 13.418323 -5423 0.078543 0.063085 0.032218 0.035960 8.850184 7.135479 8.495126 7.700675 -5424 0.165378 0.106166 0.086052 0.058383 9.872994 8.019334 13.100981 12.670308 -5425 0.079064 0.054779 0.046124 0.023843 8.495185 8.544311 8.264180 10.522753 -5426 0.106098 0.074093 0.060445 0.047213 7.213004 6.818889 11.408712 10.063350 -5427 0.063944 0.065561 0.063389 0.055055 11.818586 13.647981 20.384442 17.095417 -5428 0.048815 0.043398 0.019127 0.016356 10.558626 10.041802 13.207652 10.991008 -5429 0.065034 0.061501 0.034811 0.030515 11.942284 9.744398 18.178957 13.163213 -5430 0.082606 0.075001 0.050561 0.048674 12.907103 10.223336 15.069222 14.519767 -5431 0.066965 0.053676 0.034768 0.020934 12.657178 9.376266 23.264879 18.228531 -5432 0.074238 0.063565 0.039019 0.040596 11.384946 10.427239 14.720385 16.200915 -5433 0.076537 0.090090 0.039851 0.041399 11.272135 8.073227 12.277796 8.018297 -5434 0.097606 0.075581 0.061419 0.051610 11.527115 10.276839 13.506649 12.579337 -5435 0.098737 0.052876 0.039971 0.021832 8.720500 6.885775 8.687703 7.649159 -5436 0.050116 0.054725 0.042442 0.029247 9.436116 8.871663 8.832546 9.243576 -5437 0.062449 0.051791 0.042011 0.027983 11.447546 8.301758 11.067217 7.984116 -5438 0.095906 0.099955 0.045123 0.048030 9.199874 9.071063 13.870366 11.312607 -5439 0.044685 0.033930 0.031928 0.020086 6.454505 6.724901 10.917162 11.543601 -5440 0.080348 0.072213 0.038629 0.029179 8.971166 6.783670 17.271761 12.725278 -5441 0.110531 0.081170 0.078366 0.039533 10.889002 8.158314 15.679811 13.703815 -5442 0.068973 0.071143 0.050652 0.043870 6.404452 7.435491 10.850325 10.803435 -5443 0.062176 0.063459 0.034512 0.041560 12.530712 10.719248 13.774913 13.226814 -5444 0.051986 0.048406 0.046729 0.027552 11.050098 12.877784 17.184892 15.915883 -5445 0.097004 0.070168 0.068252 0.062530 9.480446 8.335306 15.028697 12.587598 -5446 0.070612 0.049687 0.037714 0.033045 8.926907 11.155401 14.826174 17.176200 -5447 0.062909 0.068065 0.044528 0.054768 12.347245 7.689951 11.155845 7.007113 -5448 0.061370 0.050301 0.046754 0.023063 10.348790 6.895856 13.678455 11.423848 -5449 0.083859 0.070475 0.070750 0.036100 8.565215 9.305963 12.978981 13.682360 -5450 0.056025 0.045503 0.026984 0.020872 12.154432 10.343350 15.672939 13.416253 -5451 0.034797 0.024105 0.018376 0.011772 6.845361 6.493540 9.799112 8.529473 -5452 0.084529 0.080491 0.058457 0.048351 8.403584 6.101149 8.609372 7.609411 -5453 0.077943 0.038751 0.034369 0.023341 6.605331 7.063968 10.636910 11.178051 -5454 0.092417 0.068552 0.029541 0.027387 12.837919 7.513539 12.405799 6.833619 -5455 0.067419 0.067582 0.035750 0.039334 8.740996 8.227243 16.302781 14.472340 -5456 0.135261 0.124462 0.063279 0.053212 12.563961 10.757894 16.252165 11.842817 -5457 0.060252 0.052002 0.023681 0.021839 7.934097 6.014739 11.123867 8.816711 -5458 0.111426 0.088137 0.051290 0.031931 9.138965 7.539694 12.123479 10.820658 -5459 0.065288 0.052222 0.031980 0.037585 8.630064 8.222869 8.454159 10.892901 -5460 0.065585 0.055557 0.045721 0.036688 9.864277 7.733449 18.081095 12.342476 -5461 0.069466 0.075882 0.064863 0.047757 11.011816 8.594431 13.001395 11.311354 -5462 0.066126 0.052849 0.056984 0.042433 8.662282 7.929718 18.852446 17.446231 -5463 0.046802 0.035482 0.028198 0.021913 8.838405 7.688570 9.308477 7.972309 -5464 0.075346 0.060648 0.062099 0.039933 16.088482 12.858783 19.447421 14.235985 -5465 0.068908 0.052523 0.032713 0.026798 8.319074 8.229166 10.938688 12.168499 -5466 0.088670 0.050537 0.038890 0.025841 9.810742 7.768217 16.920001 17.087988 -5467 0.072278 0.062698 0.041977 0.049927 17.583864 13.980001 14.092565 11.489290 -5468 0.096317 0.083386 0.075567 0.064731 12.171700 9.193562 20.231680 11.854197 -5469 0.100389 0.096478 0.074059 0.051597 12.518333 11.777622 15.351191 15.737525 -5470 0.092363 0.100600 0.062872 0.070814 10.477112 9.579823 10.669991 9.802631 -5471 0.088471 0.093763 0.069262 0.045385 14.040763 11.476600 14.915476 12.529664 -5472 0.078644 0.065589 0.076120 0.068527 10.942479 10.962461 15.477598 17.940998 -5473 0.108147 0.069033 0.027454 0.023850 13.616510 10.930430 20.962981 16.318085 -5474 0.091570 0.059563 0.050275 0.036845 10.295150 7.917148 11.933293 9.981700 -5475 0.046562 0.037282 0.026956 0.018575 11.117720 9.691786 19.005933 15.030551 -5476 0.059434 0.052012 0.028323 0.024315 10.823034 10.504375 21.029034 16.354470 -5477 0.121681 0.093866 0.062849 0.043714 8.168596 7.884335 7.360506 8.109290 -5478 0.056509 0.048770 0.033006 0.032750 8.534050 8.291527 9.924237 9.279657 -5479 0.069279 0.059041 0.045449 0.052389 11.210656 8.251609 12.722284 9.541452 -5480 0.045448 0.038199 0.036003 0.029045 8.004238 7.757253 9.784702 9.508147 -5481 0.050458 0.066697 0.031588 0.029357 7.969409 6.708363 11.125039 9.614681 -5482 0.115835 0.122580 0.088198 0.078387 13.608181 10.635835 16.140246 15.781722 -5483 0.104216 0.081003 0.062580 0.038592 10.168443 10.381200 16.083877 12.915869 -5484 0.050337 0.040736 0.023215 0.014257 5.023365 5.671293 10.505905 9.827053 -5485 0.068186 0.063159 0.036531 0.034540 11.994738 12.281226 13.884505 12.820864 -5486 0.197501 0.135409 0.060469 0.058060 14.656893 12.017672 15.737784 13.387471 -5487 0.054088 0.084438 0.037482 0.041509 12.520256 16.431145 16.433936 16.168738 -5488 0.057756 0.057686 0.057384 0.060897 10.411479 7.714174 12.312178 8.794791 -5489 0.085171 0.070107 0.055333 0.043703 10.640941 8.025991 16.524637 12.724894 -5490 0.101909 0.075757 0.117924 0.073000 9.292785 7.047454 18.903459 17.684812 -5491 0.087194 0.069303 0.034308 0.028624 7.313629 8.188805 9.537662 8.119292 -5492 0.064841 0.046987 0.043171 0.026814 5.185614 4.832336 8.887375 9.187702 -5493 0.109264 0.127372 0.073755 0.102206 10.343015 8.670846 15.743210 18.426692 -5494 0.084881 0.064595 0.039830 0.035148 8.786861 9.123564 10.776955 9.877391 -5495 0.064342 0.064174 0.030888 0.029576 7.147694 8.054859 9.269614 8.979754 -5496 0.061740 0.052073 0.048303 0.046570 5.577146 5.612813 7.606741 9.403733 -5497 0.063834 0.058661 0.040687 0.042695 9.529744 8.210255 14.586447 14.623578 -5498 0.107462 0.091512 0.043898 0.043116 10.005787 8.935455 14.210567 14.606963 -5499 0.068660 0.063965 0.027488 0.022492 13.666115 11.520854 14.614873 12.140239 -5500 0.073012 0.048134 0.037023 0.022704 7.448665 6.391380 8.839754 9.889181 -5501 0.068623 0.052308 0.034589 0.027586 12.266982 11.217049 12.039669 11.128926 -5502 0.077510 0.057596 0.047468 0.047028 9.682582 7.390063 10.764238 9.332481 -5503 0.096553 0.071762 0.090458 0.053274 9.384201 7.301981 15.546564 10.793481 -5504 0.054816 0.035321 0.039056 0.027187 8.792777 6.158124 15.196321 10.067452 -5505 0.040476 0.041532 0.043124 0.029660 8.329450 7.380798 11.805197 9.143565 -5506 0.072574 0.099429 0.058614 0.101885 11.071186 7.588266 15.631518 13.432292 -5507 0.049024 0.059461 0.035990 0.026596 8.055759 5.480341 16.606339 10.693184 -5508 0.103883 0.066853 0.082413 0.054329 10.319841 8.419898 9.018594 8.266568 -5509 0.076443 0.078214 0.055402 0.059390 9.742510 8.999532 18.804929 16.404095 -5510 0.065961 0.037837 0.038062 0.022996 7.305760 6.938798 9.287401 8.692049 -5511 0.071375 0.055518 0.038843 0.036218 9.692592 8.305217 10.867758 8.074306 -5512 0.074766 0.072887 0.048790 0.036750 9.885963 7.809787 9.534110 9.066456 -5513 0.079741 0.065273 0.041046 0.030022 11.409368 7.012647 12.725444 9.142716 -5514 0.085977 0.103287 0.068805 0.054784 9.841365 10.494824 12.185076 11.280051 -5515 0.068757 0.059907 0.060761 0.039119 13.324369 10.058565 17.829154 11.925333 -5516 0.072278 0.081372 0.028616 0.035990 7.265132 8.890480 9.917268 12.780878 -5517 0.109388 0.084157 0.048124 0.048104 8.503064 8.376127 13.279195 10.804372 -5518 0.074223 0.047910 0.038199 0.021949 16.295229 12.777488 17.587105 13.869007 -5519 0.055870 0.041529 0.028810 0.018402 8.253013 8.436045 11.665643 8.794546 -5520 0.052780 0.045675 0.033356 0.024356 8.190742 7.080885 9.865984 7.482159 -5521 0.091524 0.079462 0.078244 0.060908 10.805436 6.422169 19.076464 19.157029 -5522 0.066657 0.064988 0.028002 0.017107 6.003705 5.113317 9.909900 10.211830 -5523 0.069112 0.065214 0.044392 0.034592 9.872259 10.016163 9.610870 11.863725 -5524 0.074585 0.055072 0.038037 0.048334 7.380851 6.085789 12.325439 14.135940 -5525 0.059101 0.050062 0.034580 0.022383 7.365148 7.190125 11.192336 9.360732 -5526 0.074345 0.058096 0.033660 0.018230 8.907994 7.238650 11.066805 8.467191 -5527 0.046922 0.052157 0.016525 0.016319 4.844870 5.336338 8.736637 8.622973 -5528 0.086782 0.064491 0.034835 0.025791 10.897926 9.927674 12.293539 10.683211 -5529 0.073383 0.058753 0.042600 0.029307 7.074932 8.529924 10.265511 13.227475 -5530 0.087279 0.083096 0.079705 0.074269 10.416639 8.352049 13.248229 12.100405 -5531 0.059374 0.074334 0.034093 0.043863 7.952026 7.855860 11.630668 10.164342 -5532 0.081239 0.083750 0.058639 0.070084 8.017858 7.574787 15.392953 14.956974 -5533 0.089554 0.060341 0.041132 0.034043 10.253270 8.838826 10.137176 10.475546 -5534 0.068562 0.059224 0.035923 0.038505 14.994756 11.125159 17.072075 13.967533 -5535 0.053416 0.039318 0.035901 0.020897 7.477174 6.600635 10.909311 9.692954 -5536 0.092957 0.083253 0.067353 0.039889 8.090162 7.737066 12.538548 12.601291 -5537 0.045555 0.031365 0.035769 0.024660 4.253346 4.267691 5.832699 5.289072 -5538 0.074738 0.057237 0.045163 0.031158 15.419535 9.795210 16.764956 12.442579 -5539 0.045213 0.043583 0.041145 0.034294 8.082213 8.123014 8.096464 7.344110 -5540 0.051296 0.050078 0.048005 0.037851 10.439618 6.989732 16.389239 12.401746 -5541 0.110937 0.087853 0.066986 0.062713 10.773571 9.345415 15.352304 13.236420 -5542 0.101001 0.086143 0.057771 0.043019 6.694491 5.115984 9.369411 9.234259 -5543 0.073089 0.052728 0.062202 0.026760 15.622283 13.711968 19.946283 13.009125 -5544 0.091882 0.077975 0.043494 0.037971 10.757251 9.313432 14.783922 16.944851 -5545 0.082295 0.059449 0.069121 0.040026 13.132527 9.715243 17.673528 9.950038 -5546 0.068357 0.055741 0.041116 0.022189 13.685673 10.173999 16.739722 13.369079 -5547 0.062406 0.051569 0.037020 0.034170 7.704673 8.366217 7.450271 8.038472 -5548 0.075285 0.056280 0.049217 0.034494 9.359514 7.419027 11.388822 10.397112 -5549 0.093483 0.067112 0.055977 0.038274 8.187030 9.300925 7.719173 9.232110 -5550 0.076717 0.074340 0.044667 0.047220 7.573466 6.961333 9.256466 7.843632 -5551 0.090667 0.076544 0.042114 0.026108 6.523495 5.705011 10.892808 10.287227 -5552 0.113179 0.084567 0.069807 0.052283 10.607344 9.936627 12.152731 10.477218 -5553 0.033433 0.032200 0.021556 0.022618 9.498454 7.912519 8.342372 6.089428 -5554 0.062305 0.047322 0.030481 0.031465 10.175764 11.701233 10.531825 13.347014 -5555 0.073202 0.056961 0.045635 0.035918 9.194540 8.495533 9.907322 9.914538 -5556 0.050963 0.044938 0.034106 0.016992 9.061325 9.252424 20.743964 17.708189 -5557 0.034658 0.031448 0.020821 0.022345 4.816634 4.435163 7.398705 5.043522 -5558 0.068896 0.091484 0.039589 0.050009 14.151236 12.568915 18.303957 11.915734 -5559 0.044877 0.042810 0.016379 0.012465 5.975242 6.560600 5.802326 6.474279 -5560 0.066170 0.068670 0.045162 0.029223 8.659267 7.540323 8.840198 9.220160 -5561 0.097712 0.065416 0.074242 0.050392 14.568927 11.101430 12.856662 11.729858 -5562 0.068073 0.054419 0.031329 0.025143 9.453608 10.872604 19.316151 16.652925 -5563 0.083276 0.076845 0.033268 0.019157 7.913291 6.752491 9.856792 9.748359 -5564 0.088155 0.079254 0.077018 0.077041 9.862016 13.141911 14.002327 15.416849 -5565 0.098389 0.079135 0.058138 0.040411 8.527233 8.342864 9.672829 11.540601 -5566 0.076665 0.084346 0.044657 0.050384 13.507758 9.761501 13.960669 12.420677 -5567 0.071491 0.045395 0.025596 0.023736 10.016931 7.753055 11.991016 8.920830 -5568 0.051586 0.062401 0.023784 0.033568 5.952998 4.784177 7.519241 8.241890 -5569 0.107602 0.097272 0.042131 0.050079 7.748041 8.393683 13.529226 13.641305 -5570 0.111267 0.097809 0.054079 0.033782 10.180029 10.416616 9.272120 12.306426 -5571 0.061741 0.042237 0.029421 0.019053 9.739647 7.096369 11.208652 9.434613 -5572 0.056809 0.048633 0.023042 0.018722 13.893273 11.154791 14.548346 9.384839 -5573 0.106416 0.098599 0.052832 0.056369 9.411504 11.793463 10.187635 11.738925 -5574 0.076044 0.074842 0.058384 0.067867 8.181170 9.436659 6.404258 8.072707 -5575 0.110261 0.113700 0.048974 0.067114 10.394803 11.636841 13.235334 14.087015 -5576 0.087963 0.125646 0.092697 0.121221 11.318000 9.145943 16.132562 14.142185 -5577 0.048285 0.052081 0.028891 0.022349 10.668954 10.249728 12.547864 10.421413 -5578 0.074531 0.061768 0.054399 0.035644 8.152360 7.199452 17.153606 14.519099 -5579 0.107310 0.077043 0.057869 0.046311 11.673168 7.619592 16.816338 12.361625 -5580 0.122477 0.084235 0.133226 0.051176 15.197410 11.357693 17.545965 15.333385 -5581 0.048307 0.045540 0.042631 0.035583 11.475952 9.898423 14.932803 11.700932 -5582 0.081132 0.098960 0.056436 0.055093 10.179183 9.203050 10.632426 10.814027 -5583 0.044050 0.055134 0.025320 0.024467 11.509073 10.162484 7.158364 6.287961 -5584 0.091269 0.066705 0.033263 0.027364 9.304074 8.411895 15.076758 13.222798 -5585 0.083664 0.112642 0.058842 0.087168 14.765770 11.581329 18.743052 13.540242 -5586 0.069471 0.050573 0.042563 0.022076 11.161154 10.076943 14.402823 13.236742 -5587 0.041116 0.032986 0.026276 0.024463 6.253666 5.046813 7.978250 6.545498 -5588 0.102856 0.092765 0.045244 0.041892 8.632838 7.534868 11.132330 9.927636 -5589 0.069361 0.044802 0.030128 0.016751 8.019258 5.990954 9.074703 8.179267 -5590 0.110924 0.130739 0.086453 0.082077 19.211145 19.594538 24.110842 21.507036 -5591 0.057419 0.058961 0.023231 0.025562 9.792774 9.865782 10.957550 8.728837 -5592 0.071300 0.059015 0.065477 0.054721 16.536836 14.322398 21.491938 17.450403 -5593 0.122666 0.101753 0.083810 0.071931 10.312851 9.694183 29.606791 18.557502 -5594 0.042294 0.048852 0.034275 0.034952 14.083592 15.326299 16.413797 13.773692 -5595 0.065887 0.046929 0.056615 0.051297 8.739611 8.345661 10.023434 10.528997 -5596 0.064373 0.056350 0.033784 0.031327 8.054641 7.614882 12.326151 11.055644 -5597 0.071543 0.076397 0.059498 0.069078 9.778621 8.196843 16.866826 13.232728 -5598 0.100940 0.075387 0.053970 0.036008 8.932056 7.669450 7.349452 6.829870 -5599 0.059666 0.076753 0.020849 0.023822 8.216011 7.236836 9.933058 9.228784 -5600 0.083786 0.086288 0.049485 0.052079 10.556060 8.204363 12.664393 12.536736 -5601 0.098234 0.100178 0.076813 0.069897 18.354778 12.827792 11.619740 12.448212 -5602 0.063883 0.067942 0.034057 0.035790 13.033075 13.664337 13.122538 13.355024 -5603 0.091977 0.077369 0.078276 0.066282 8.790087 7.444594 10.541456 11.094904 -5604 0.101759 0.094536 0.062430 0.050769 11.443372 10.767755 8.296667 9.514816 -5605 0.130391 0.121554 0.059884 0.065144 9.368392 6.840500 17.964350 14.384664 -5606 0.067808 0.050776 0.050740 0.043278 13.414118 9.702775 11.547433 9.657215 -5607 0.086361 0.070543 0.044394 0.031794 7.823633 6.805474 10.925918 10.154416 -5608 0.073104 0.067184 0.026204 0.020641 7.792778 7.192865 12.816222 10.928463 -5609 0.076780 0.070348 0.071873 0.056097 21.052959 14.350501 15.553454 11.886939 -5610 0.091351 0.053025 0.046603 0.026539 11.809560 9.708058 11.553969 8.986931 -5611 0.057372 0.056153 0.043371 0.038388 15.552180 14.050776 14.325722 14.417729 -5612 0.045760 0.057962 0.015907 0.023051 9.217638 7.228559 15.551224 12.921859 -5613 0.061018 0.047324 0.049847 0.033859 14.439707 11.134196 12.885074 14.428071 -5614 0.073169 0.068442 0.059223 0.047631 11.630041 9.782423 17.552128 13.337082 -5615 0.103213 0.086832 0.059836 0.047837 10.275455 10.112881 17.248342 14.706662 -5616 0.112069 0.081205 0.089615 0.055197 10.099667 9.225490 10.902981 11.109897 -5617 0.120609 0.089217 0.081712 0.087717 8.774246 9.031182 13.552451 12.891281 -5618 0.065822 0.053719 0.029247 0.028122 12.316814 8.368991 14.628119 10.343194 -5619 0.039217 0.024215 0.024384 0.018608 7.270140 6.856077 14.103379 13.490557 -5620 0.081107 0.071323 0.041697 0.044460 7.384405 9.408881 12.082896 14.069062 -5621 0.128778 0.115221 0.136371 0.099594 18.405729 14.428973 20.335648 15.950404 -5622 0.085360 0.070037 0.039232 0.039747 10.996969 9.374137 14.425719 12.906130 -5623 0.097086 0.055001 0.052831 0.035025 11.704654 7.737689 15.824461 13.096905 -5624 0.073050 0.060330 0.044726 0.029834 11.342349 9.652347 17.673522 12.017966 -5625 0.081170 0.103402 0.041801 0.056705 10.408590 9.623618 15.372253 13.676707 -5626 0.049359 0.051002 0.028295 0.029947 9.551363 7.577590 9.471579 8.369593 -5627 0.056768 0.053222 0.031182 0.014297 5.001287 4.795527 7.775594 7.127051 -5628 0.117537 0.097795 0.063765 0.057688 13.379429 11.232225 17.181935 14.998859 -5629 0.068916 0.073222 0.063111 0.077280 12.783596 10.689100 12.943102 11.216283 -5630 0.045006 0.044726 0.032115 0.033713 9.965987 7.568675 13.201915 8.693834 -5631 0.116803 0.084184 0.108646 0.073202 8.844560 8.717617 15.568723 13.928076 -5632 0.080643 0.079529 0.052772 0.058082 13.513390 12.933721 15.388237 15.225904 -5633 0.108450 0.061413 0.059199 0.040789 7.248069 5.923653 14.019839 10.958467 -5634 0.077780 0.061014 0.057632 0.026774 12.373056 9.362477 17.922105 13.305839 -5635 0.057053 0.052437 0.033040 0.027535 9.894637 9.114621 17.055425 16.654376 -5636 0.090334 0.083098 0.057246 0.050522 8.304226 7.553276 13.734593 9.619709 -5637 0.091352 0.063856 0.051431 0.037741 8.275031 9.186916 9.025681 9.509890 -5638 0.049435 0.046954 0.050608 0.029214 16.652973 11.516564 17.352275 13.560304 -5639 0.082236 0.067945 0.071462 0.044883 11.742262 11.931314 13.318607 11.235471 -5640 0.084921 0.084271 0.045573 0.045048 9.833955 8.827555 13.643004 12.363992 -5641 0.113616 0.097708 0.071873 0.058375 11.468250 11.243162 10.960815 10.741645 -5642 0.052898 0.053926 0.066011 0.046988 13.005941 12.510440 17.888427 11.563625 -5643 0.097358 0.102322 0.037135 0.036526 9.010347 7.782980 11.233301 10.314004 -5644 0.063822 0.044323 0.026867 0.027307 10.762352 10.450086 9.853402 10.038761 -5645 0.062477 0.056036 0.031268 0.025937 12.554662 10.863977 14.825176 11.545663 -5646 0.052980 0.071287 0.027701 0.040988 9.662599 9.909926 10.980080 11.621960 -5647 0.064979 0.065489 0.040660 0.039511 10.395453 8.644661 19.828789 12.712719 -5648 0.053748 0.051044 0.024500 0.021074 9.410260 8.400581 9.821897 10.133699 -5649 0.065236 0.060486 0.038133 0.046034 10.136023 10.615571 13.331277 15.565937 -5650 0.032528 0.030345 0.027641 0.031040 7.521323 7.935545 11.463687 10.673967 -5651 0.098543 0.078489 0.087852 0.051348 10.961222 10.996581 10.418925 9.342812 -5652 0.082651 0.067036 0.033954 0.038366 9.236640 6.264472 13.320551 8.690872 -5653 0.078746 0.074005 0.042873 0.025159 9.899522 9.031248 8.331782 8.288110 -5654 0.067315 0.049805 0.039731 0.043572 6.672812 6.205179 8.071770 6.959445 -5655 0.071490 0.073177 0.040157 0.037163 9.167659 9.527113 10.481149 10.721510 -5656 0.047450 0.054425 0.049570 0.042452 12.608473 11.260454 16.658060 19.520234 -5657 0.051544 0.049364 0.033764 0.040097 11.525402 7.619520 12.790578 9.363522 -5658 0.038670 0.031327 0.015972 0.013912 8.201607 8.925627 11.312693 10.777078 -5659 0.065909 0.066135 0.034437 0.042459 10.460453 9.554608 9.013615 8.609677 -5660 0.103301 0.072554 0.059466 0.042711 14.454769 11.206182 14.967536 12.378856 -5661 0.119338 0.067655 0.089967 0.050421 9.056794 9.053277 12.920117 13.343708 -5662 0.123703 0.112815 0.085098 0.045665 7.159378 7.260890 10.854730 12.401662 -5663 0.126444 0.097573 0.073566 0.050825 11.171070 10.809052 17.476309 14.310076 -5664 0.059554 0.045123 0.029231 0.028479 7.614222 6.532508 13.300370 12.063246 -5665 0.068890 0.036982 0.023326 0.015591 11.109689 8.991941 9.145997 8.323962 -5666 0.056529 0.042858 0.062004 0.040609 6.284098 5.175310 11.733858 10.032895 -5667 0.074649 0.064305 0.062466 0.047694 11.670169 10.424978 14.702233 9.804682 -5668 0.091611 0.086227 0.050938 0.058492 7.922107 6.951955 9.889686 7.981197 -5669 0.122961 0.107456 0.066938 0.060798 11.478081 10.076810 12.453483 13.800585 -5670 0.091632 0.058600 0.065831 0.033844 20.525721 16.656080 18.664566 16.537733 -5671 0.090807 0.073852 0.057658 0.048984 8.430596 6.881347 9.875627 8.121200 -5672 0.046118 0.063651 0.024931 0.034606 6.468339 6.760772 9.246456 9.464534 -5673 0.069069 0.067587 0.054503 0.045864 9.882501 10.735241 14.244253 13.083076 -5674 0.058466 0.050471 0.030869 0.028907 9.557095 10.836522 13.118746 11.281600 -5675 0.104620 0.076452 0.087224 0.062991 9.019953 7.116993 18.696018 14.953535 -5676 0.062528 0.059285 0.031920 0.022886 8.008145 7.879192 9.632316 7.745329 -5677 0.077697 0.063440 0.030510 0.024374 6.632122 6.303654 11.964119 10.266815 -5678 0.084779 0.082334 0.057796 0.042150 8.957540 11.212071 15.560713 16.753458 -5679 0.039199 0.054383 0.045193 0.056876 10.317820 8.599644 12.317542 11.071704 -5680 0.055407 0.045221 0.048734 0.043315 8.815667 7.233873 14.076731 12.739481 -5681 0.086712 0.111993 0.045939 0.060815 8.977759 6.535048 10.138518 7.067271 -5682 0.075632 0.086572 0.038182 0.041398 21.731680 16.422537 24.684811 17.405649 -5683 0.046979 0.035882 0.026538 0.025584 10.062053 9.994065 11.862377 12.058707 -5684 0.061421 0.084293 0.041084 0.057753 7.160818 6.000499 13.813889 13.628344 -5685 0.081279 0.051611 0.049612 0.039242 7.506691 9.071855 10.371262 8.755686 -5686 0.095956 0.071888 0.041945 0.033957 17.154023 14.386510 20.279620 15.357559 -5687 0.109831 0.101607 0.085618 0.058758 13.654160 11.795156 16.956072 13.663197 -5688 0.071642 0.064886 0.026061 0.032559 16.173534 12.029289 16.668057 14.290588 -5689 0.063025 0.065109 0.041009 0.059883 8.315218 9.603310 13.924597 13.228709 -5690 0.094915 0.079596 0.050053 0.043535 11.911636 13.572925 15.753238 18.010160 -5691 0.051229 0.056792 0.054312 0.040479 11.365797 9.517171 17.181515 14.591993 -5692 0.073489 0.080553 0.051605 0.039064 7.375380 7.495839 10.334763 8.163728 -5693 0.060748 0.054762 0.042668 0.029019 10.801177 12.202094 11.668002 9.675928 -5694 0.081872 0.094568 0.047013 0.031360 8.956908 8.210797 10.717439 11.091524 -5695 0.061125 0.049379 0.055851 0.035760 9.039577 7.328864 13.419582 10.989704 -5696 0.104884 0.073416 0.058743 0.033692 8.826830 10.055901 8.770376 8.896245 -5697 0.101536 0.069660 0.045305 0.033356 7.977329 7.721475 11.171429 8.481801 -5698 0.063308 0.055559 0.045350 0.057339 10.538555 8.935095 19.110658 12.222455 -5699 0.055099 0.052003 0.030561 0.032800 7.848711 7.430000 12.223908 11.049198 -5700 0.086088 0.079394 0.032699 0.031689 7.928490 7.513590 8.435775 8.157689 -5701 0.053308 0.044424 0.019924 0.026766 6.829004 7.162678 8.796785 8.241643 -5702 0.082374 0.085775 0.064686 0.038517 11.848131 7.212047 20.954666 14.768721 -5703 0.083410 0.063523 0.031503 0.032436 7.018512 6.040555 11.636616 10.310203 -5704 0.085015 0.103688 0.079476 0.065456 13.665537 11.784613 18.928344 17.306811 -5705 0.100186 0.075520 0.071877 0.051969 10.672706 7.423196 12.511303 9.922308 -5706 0.090513 0.084512 0.063522 0.041279 12.387571 11.893012 10.775425 8.888768 -5707 0.056971 0.064354 0.038273 0.047657 7.852276 6.899640 10.701395 8.854005 -5708 0.079384 0.069770 0.028986 0.026128 10.664534 8.066276 11.989165 10.694147 -5709 0.051212 0.060914 0.016957 0.018509 8.949455 7.794431 11.420130 10.293322 -5710 0.057624 0.049880 0.032842 0.029178 7.289389 7.055896 7.581645 5.053292 -5711 0.070145 0.069501 0.022986 0.019035 16.572950 13.137732 13.919929 12.450092 -5712 0.113075 0.072861 0.041809 0.027165 9.328089 6.712917 12.021475 9.426888 -5713 0.081273 0.097283 0.042682 0.050442 13.965715 9.178002 18.196891 11.439148 -5714 0.069526 0.058535 0.027230 0.023726 7.374599 5.650907 9.589979 7.354500 -5715 0.058577 0.042450 0.027598 0.026332 9.103947 7.471024 11.475095 11.060060 -5716 0.094228 0.090126 0.076755 0.041837 10.757588 8.718751 12.352122 11.479407 -5717 0.090851 0.070035 0.084522 0.043323 7.822612 7.222898 11.877400 10.404140 -5718 0.051758 0.043871 0.021543 0.018327 7.649119 6.512218 8.695114 7.995662 -5719 0.047332 0.056121 0.024585 0.032385 10.243324 7.198957 10.998384 8.230737 -5720 0.063353 0.047685 0.033380 0.029503 6.382909 6.062889 17.552126 12.853869 -5721 0.098552 0.076858 0.083633 0.051509 8.815195 9.773662 13.191419 11.091930 -5722 0.090411 0.066189 0.072648 0.057987 8.388684 5.805026 16.414173 10.174770 -5723 0.098725 0.087357 0.064035 0.048794 10.756050 7.942096 13.097585 8.535552 -5724 0.044931 0.040793 0.026657 0.019583 7.354188 5.936582 7.970941 6.753395 -5725 0.128027 0.094793 0.072745 0.037847 10.681393 9.043715 16.447683 15.270995 -5726 0.077193 0.052982 0.026577 0.022705 7.602947 10.267002 10.873357 14.473482 -5727 0.060979 0.057095 0.044603 0.037051 9.681994 8.544406 21.748779 13.979095 -5728 0.081140 0.076832 0.048238 0.050503 13.642808 11.311618 12.227239 12.368274 -5729 0.057224 0.061020 0.047892 0.033745 10.197966 9.858399 13.108224 13.688697 -5730 0.079806 0.072821 0.059911 0.059178 12.698199 13.016742 18.879746 14.581260 -5731 0.066333 0.041517 0.033439 0.024483 8.526256 8.354595 7.669122 6.230245 -5732 0.051248 0.040124 0.028029 0.022818 11.684362 9.958281 9.077938 8.165853 -5733 0.098167 0.073419 0.036003 0.027643 6.383736 7.454982 8.679537 8.928823 -5734 0.129588 0.107596 0.151592 0.106539 10.348943 11.666636 15.631166 16.514426 -5735 0.056258 0.041950 0.031571 0.019505 10.054364 10.066229 10.650700 10.314586 -5736 0.087596 0.056470 0.038450 0.031001 9.976511 9.520351 14.176408 12.647642 -5737 0.100979 0.122596 0.043722 0.054600 12.392453 8.776845 18.170367 12.485533 -5738 0.099016 0.069043 0.046393 0.034396 9.873202 7.593367 13.141153 12.535969 -5739 0.074765 0.068120 0.032046 0.038038 9.812201 8.105389 12.938242 10.040444 -5740 0.086800 0.055917 0.040065 0.024840 9.568729 10.297406 9.849582 11.013593 -5741 0.072467 0.074986 0.078045 0.060464 13.935395 11.924031 15.574779 11.073461 -5742 0.057137 0.053472 0.032044 0.037094 11.968287 12.889012 16.822407 17.664127 -5743 0.079142 0.054508 0.049280 0.040210 10.771423 9.753910 14.800487 14.418937 -5744 0.064487 0.064569 0.042524 0.023102 11.758661 8.162249 11.026046 8.386630 -5745 0.065977 0.073926 0.055534 0.047197 4.747659 6.569797 8.104520 9.060115 -5746 0.152526 0.125566 0.133581 0.069840 11.043934 9.066559 14.758170 11.593207 -5747 0.074016 0.068888 0.038608 0.037523 10.403442 9.475843 16.282156 14.113789 -5748 0.128414 0.077968 0.051005 0.039977 15.273313 14.154039 22.737987 18.899992 -5749 0.069670 0.039687 0.060233 0.032949 11.560004 8.680339 20.962607 15.451752 -5750 0.058113 0.067065 0.034088 0.026897 12.053824 10.457800 15.949445 11.730656 -5751 0.073918 0.053637 0.032460 0.028153 8.472279 8.218237 11.526117 9.166717 -5752 0.126684 0.066153 0.074329 0.038470 9.711374 8.834346 14.127538 12.176177 -5753 0.101720 0.098963 0.070935 0.086196 13.430545 10.183304 19.223132 16.563150 -5754 0.103780 0.077431 0.032547 0.032823 7.913919 7.240115 10.751293 9.686947 -5755 0.074503 0.068864 0.041529 0.050907 5.654353 5.874299 9.181285 8.204110 -5756 0.088898 0.067915 0.046162 0.041127 13.203343 12.071847 15.430856 11.153577 -5757 0.104909 0.074357 0.051711 0.032606 10.150030 10.153022 17.992503 15.706091 -5758 0.166064 0.148974 0.113410 0.071418 9.506718 10.915533 10.432837 10.938321 -5759 0.074738 0.061895 0.061790 0.048812 15.079254 14.947986 16.635094 13.443194 -5760 0.080634 0.064180 0.044881 0.031334 8.580219 6.379694 7.279716 6.280798 -5761 0.196689 0.117863 0.104369 0.088324 14.967228 15.744832 13.211373 15.980333 -5762 0.076427 0.063195 0.043712 0.031864 9.652373 8.018428 11.780225 9.552211 -5763 0.082649 0.056278 0.067198 0.062228 8.226674 9.333348 12.616262 13.232167 -5764 0.097575 0.080858 0.045602 0.048575 10.723225 8.630483 15.127130 9.625783 -5765 0.127059 0.099635 0.093389 0.058900 9.225400 11.119271 9.970652 12.191783 -5766 0.047207 0.047073 0.022303 0.025856 10.675927 10.162028 11.967245 10.068294 -5767 0.074996 0.050241 0.051019 0.034971 11.431802 11.381954 14.880142 12.616716 -5768 0.053174 0.051421 0.031599 0.030877 11.753282 7.876312 15.094406 12.172763 -5769 0.048485 0.062236 0.027116 0.036804 8.933682 9.904386 9.563786 10.785333 -5770 0.115564 0.089977 0.084892 0.080677 10.290637 7.620305 18.116942 13.811528 -5771 0.038750 0.033649 0.020819 0.014394 4.837363 5.672251 7.428369 8.730876 -5772 0.093143 0.067154 0.046837 0.033426 15.288449 13.427037 17.983129 15.904686 -5773 0.087488 0.064110 0.042955 0.035159 11.408199 8.734020 14.918859 14.148550 -5774 0.075239 0.072549 0.035256 0.028904 8.285889 6.116779 11.647793 8.882125 -5775 0.052194 0.056300 0.054766 0.053016 10.922857 8.041387 11.174255 9.223885 -5776 0.078259 0.065568 0.038021 0.019386 11.284911 8.766994 16.043934 11.834986 -5777 0.078866 0.063966 0.054032 0.040011 11.424179 9.083906 11.758744 9.844841 -5778 0.063951 0.047833 0.028718 0.018970 6.690737 6.464764 8.763264 9.428293 -5779 0.057039 0.050741 0.049205 0.054079 8.370883 7.280791 9.973110 8.221126 -5780 0.061406 0.044267 0.079524 0.044336 7.852432 8.185611 14.658025 14.229723 -5781 0.106477 0.111717 0.064798 0.074364 8.755146 8.643816 11.514336 9.667009 -5782 0.098173 0.087231 0.065318 0.057974 7.066295 6.497665 9.041751 7.221503 -5783 0.069853 0.064277 0.054157 0.040176 11.057533 8.070247 15.923915 11.520393 -5784 0.050738 0.057157 0.037585 0.044751 12.472440 12.156768 13.235051 11.727317 -5785 0.058669 0.046017 0.040590 0.037070 8.379581 6.027409 12.165696 11.122957 -5786 0.043994 0.049304 0.040126 0.043010 11.057305 8.424509 14.510621 11.887754 -5787 0.042266 0.037399 0.023792 0.019510 12.840817 9.652078 15.882757 13.439265 -5788 0.137730 0.102907 0.102160 0.059473 7.117451 5.552291 11.664660 10.198157 -5789 0.057948 0.041390 0.019665 0.016919 6.749408 4.737822 9.533933 9.121473 -5790 0.046255 0.042438 0.045223 0.041348 7.470247 7.701379 8.330467 7.784973 -5791 0.059600 0.051146 0.046343 0.031042 8.916417 7.422547 12.299991 9.778694 -5792 0.092897 0.082670 0.058748 0.045477 7.676589 11.516083 10.589935 14.305169 -5793 0.066007 0.049861 0.020567 0.014984 9.830083 6.841581 12.029252 8.925664 -5794 0.062593 0.065012 0.047026 0.036656 12.161109 11.883296 17.155981 15.937569 -5795 0.058198 0.041426 0.053902 0.028727 10.937097 8.649027 11.853145 8.788536 -5796 0.075688 0.061506 0.032409 0.020889 10.023777 7.889830 10.049345 7.927400 -5797 0.038233 0.043449 0.018354 0.023610 6.342107 5.749840 7.887795 8.538094 -5798 0.126442 0.083493 0.064561 0.039363 11.322503 9.345002 16.528136 14.432925 -5799 0.070107 0.061995 0.037200 0.047273 12.547679 10.242635 10.445008 8.369454 -5800 0.064660 0.071362 0.035608 0.027280 8.619549 9.737878 14.468718 14.440393 -5801 0.107604 0.088198 0.064438 0.045251 10.826544 10.840138 14.261278 14.926037 -5802 0.101787 0.076081 0.047546 0.046464 12.631344 9.920809 20.070287 15.865696 -5803 0.043606 0.040081 0.028520 0.027600 6.971060 6.648265 7.892616 7.335244 -5804 0.058077 0.038747 0.030609 0.026751 9.104233 7.630242 11.585318 8.889066 -5805 0.090505 0.071708 0.036301 0.035596 12.014928 10.116791 14.746094 12.899072 -5806 0.095753 0.064242 0.040459 0.033382 8.353154 6.322195 8.484031 6.825623 -5807 0.078657 0.069316 0.055556 0.044599 10.619587 9.555736 9.288015 8.982958 -5808 0.048977 0.041547 0.038919 0.022052 9.662890 8.043570 10.234624 9.559463 -5809 0.076707 0.056945 0.052228 0.024471 10.411942 6.962616 15.825411 9.855604 -5810 0.056636 0.038722 0.026618 0.017853 8.144485 6.934568 9.694407 8.135498 -5811 0.090417 0.080758 0.055882 0.043242 7.031329 7.090542 14.010507 13.324915 -5812 0.066403 0.051284 0.050386 0.043538 7.478137 7.515890 14.339777 9.783640 -5813 0.110594 0.085585 0.083084 0.055762 13.869933 13.037909 15.645797 15.623090 -5814 0.056855 0.049771 0.025031 0.017055 6.716998 7.169266 11.235954 8.616279 -5815 0.054383 0.047497 0.028176 0.025607 9.795518 8.907135 14.573265 11.397755 -5816 0.028545 0.031994 0.027161 0.029994 7.098009 5.502890 9.206082 6.429141 -5817 0.084917 0.058285 0.037330 0.028588 12.016587 10.282602 13.206156 13.076441 -5818 0.050158 0.039858 0.025882 0.029253 8.905473 8.319283 10.254251 10.633101 -5819 0.077673 0.061036 0.075105 0.043793 12.442401 10.387950 12.073385 10.364295 -5820 0.063178 0.102873 0.053438 0.077923 6.405972 6.165700 9.672214 8.647235 -5821 0.067746 0.060435 0.032994 0.034910 10.368584 9.969192 12.083154 11.383102 -5822 0.031527 0.030509 0.014086 0.011851 13.494832 9.818288 14.211815 10.716736 -5823 0.136257 0.115203 0.083100 0.067043 13.248827 12.712961 18.607594 17.867877 -5824 0.154108 0.140445 0.074674 0.050076 11.739626 11.139006 18.845303 13.781651 -5825 0.075284 0.068884 0.083318 0.053096 10.895759 11.439670 10.249261 10.973594 -5826 0.110363 0.105808 0.051203 0.051371 6.290666 5.687133 9.568293 8.391436 -5827 0.059881 0.061851 0.052685 0.036858 8.508121 8.175435 5.523628 7.962241 -5828 0.138284 0.078034 0.063860 0.047763 13.143147 12.561169 16.665183 15.856651 -5829 0.137437 0.130550 0.064234 0.069400 11.955236 9.247085 16.020750 13.495799 -5830 0.081173 0.093030 0.040721 0.039402 11.778959 10.031784 13.718040 12.656566 -5831 0.060476 0.058594 0.042318 0.032833 4.342422 4.739159 6.051596 6.841654 -5832 0.074533 0.056830 0.054302 0.035671 11.447882 7.921609 15.864867 13.720222 -5833 0.066273 0.057556 0.048272 0.027960 7.009870 6.665386 8.330411 9.253906 -5834 0.072668 0.068834 0.045647 0.038580 13.277644 11.081575 14.540611 12.061242 -5835 0.090956 0.082068 0.041557 0.048019 12.858878 12.524832 10.852138 11.202688 -5836 0.079088 0.069410 0.044094 0.044548 10.276299 7.127011 13.049646 9.211824 -5837 0.103832 0.068272 0.040319 0.035649 10.845828 10.863887 17.902377 17.667180 -5838 0.053668 0.038774 0.030715 0.018508 5.625392 5.232973 10.108848 10.318796 -5839 0.071799 0.056528 0.030279 0.028053 7.287902 7.825054 12.011765 10.053375 -5840 0.070855 0.072718 0.053361 0.051689 8.409788 5.535174 11.405728 10.734736 -5841 0.089436 0.069674 0.059745 0.030205 9.777606 9.804819 13.574695 13.090551 -5842 0.073262 0.061613 0.030007 0.021431 11.932376 14.036377 14.791086 12.567502 -5843 0.152838 0.195560 0.152110 0.110353 11.629614 11.359632 14.514968 12.254048 -5844 0.057460 0.045210 0.034838 0.024001 13.310028 13.165874 15.675020 13.867852 -5845 0.064221 0.055281 0.042050 0.034211 9.262977 7.514199 11.707044 8.920866 -5846 0.122452 0.125558 0.085578 0.043759 11.942616 8.338580 13.086210 9.065012 -5847 0.075536 0.068815 0.047874 0.051935 10.534019 8.464508 13.281617 9.428488 -5848 0.082610 0.080858 0.052848 0.043578 6.276933 6.273665 8.851861 7.268398 -5849 0.088794 0.071903 0.056077 0.056937 9.128997 8.016631 14.596330 10.363692 -5850 0.062432 0.057885 0.037330 0.032714 8.906563 8.375276 12.524293 11.211448 -5851 0.088486 0.068528 0.070918 0.056654 9.976537 9.571494 12.863945 11.274291 -5852 0.073110 0.064362 0.028735 0.029338 8.790340 6.840698 12.589736 12.013196 -5853 0.096174 0.084026 0.048394 0.033886 8.041923 8.454791 7.904098 7.349393 -5854 0.086047 0.081776 0.051845 0.077152 11.203887 7.300531 8.854165 7.151481 -5855 0.094421 0.083049 0.079617 0.070106 12.645478 10.423850 9.365932 9.386718 -5856 0.086012 0.054337 0.044103 0.036049 10.929164 9.865870 12.308322 12.618097 -5857 0.091697 0.064165 0.045378 0.037902 12.956430 10.333856 15.335139 13.190764 -5858 0.042699 0.039762 0.028365 0.018742 12.533851 11.188477 13.261594 13.938365 -5859 0.108906 0.087143 0.053776 0.049958 10.500276 10.307534 11.113631 13.361723 -5860 0.060002 0.062377 0.029243 0.035797 6.361953 6.620818 12.026068 10.141618 -5861 0.123701 0.081106 0.069594 0.040580 12.844847 10.236108 13.883672 11.082550 -5862 0.061791 0.052833 0.052947 0.026406 10.226179 7.082592 13.210685 9.635646 -5863 0.064270 0.055474 0.029328 0.025738 10.277405 11.383342 11.446174 12.640377 -5864 0.069153 0.058770 0.048685 0.040426 10.622867 10.762591 13.384416 12.155488 -5865 0.059440 0.052122 0.041215 0.030060 9.724135 8.883981 15.338465 12.535841 -5866 0.059481 0.064741 0.023784 0.032831 8.228679 7.000611 9.744530 9.445086 -5867 0.078933 0.077244 0.056147 0.037083 9.526355 6.358497 10.898861 7.881815 -5868 0.079585 0.090477 0.066489 0.057198 7.372538 5.721971 12.155320 9.596010 -5869 0.047524 0.051999 0.015786 0.016565 7.013615 6.106274 9.107757 8.987731 -5870 0.104514 0.090761 0.074940 0.054343 11.905433 12.315769 16.012439 12.308985 -5871 0.134857 0.116445 0.068080 0.057220 10.543552 13.297688 18.209452 17.092811 -5872 0.142988 0.090742 0.089098 0.057800 10.417767 11.219991 18.115985 14.751930 -5873 0.054793 0.066317 0.044315 0.038520 10.017964 7.836250 8.893662 7.393046 -5874 0.090107 0.081679 0.056505 0.054461 11.293908 11.147252 14.083585 11.334295 -5875 0.086342 0.070567 0.052512 0.037647 12.367996 11.728138 15.793607 11.032611 -5876 0.075454 0.061751 0.032331 0.027804 13.466220 11.711133 17.937644 12.792990 -5877 0.065378 0.063264 0.045937 0.043890 10.481478 9.039212 14.393256 9.702706 -5878 0.090456 0.086847 0.109444 0.074520 17.312536 16.045266 13.142760 12.342388 -5879 0.181778 0.117028 0.102340 0.096757 14.033956 14.162269 16.657820 17.581689 -5880 0.137659 0.140029 0.056457 0.047345 9.524103 7.516451 13.718087 12.393460 -5881 0.058029 0.043176 0.046973 0.033605 10.864575 8.614209 12.271688 9.943450 -5882 0.049643 0.054601 0.043791 0.035643 11.501915 9.206097 14.435389 15.004136 -5883 0.068659 0.052612 0.042467 0.039519 10.241463 8.519520 9.300881 7.436354 -5884 0.048775 0.046024 0.028644 0.026722 8.626946 7.750292 12.666956 12.958117 -5885 0.109555 0.101643 0.063955 0.040267 10.816663 10.869309 17.890216 14.057954 -5886 0.093227 0.070618 0.089889 0.049094 8.297051 12.209785 14.943603 13.861763 -5887 0.105078 0.065988 0.077681 0.052154 16.550429 11.828374 17.967736 16.247520 -5888 0.062336 0.047978 0.083890 0.045892 9.500134 7.037304 15.616518 15.675499 -5889 0.082971 0.098489 0.040300 0.051762 12.899760 9.572843 15.980281 13.241613 -5890 0.050769 0.040553 0.027900 0.018776 10.606652 9.699552 10.841224 10.621121 -5891 0.091186 0.083768 0.065614 0.054712 8.979852 9.319489 13.300770 12.861472 -5892 0.075041 0.055636 0.048252 0.046424 9.283204 8.250224 10.995625 8.233493 -5893 0.066049 0.056333 0.030935 0.021909 7.756506 6.780373 10.584731 8.093881 -5894 0.080645 0.075431 0.058513 0.038102 9.241953 8.783885 10.243960 10.946886 -5895 0.148228 0.101313 0.093881 0.067421 9.736577 7.976077 12.069892 10.295591 -5896 0.093877 0.070893 0.073841 0.045840 13.159477 12.345653 14.511606 11.311095 -5897 0.049718 0.041859 0.033287 0.029987 12.434230 12.767030 14.037944 16.121519 -5898 0.078272 0.068786 0.046252 0.028117 8.866048 7.031520 11.251402 10.829882 -5899 0.058906 0.054347 0.027375 0.017550 8.377496 6.130571 10.553317 8.138060 -5900 0.061352 0.062852 0.031213 0.023199 10.499724 8.176646 9.753868 8.058336 -5901 0.144313 0.130828 0.078635 0.052535 7.919579 7.057404 9.537178 8.430624 -5902 0.076762 0.063039 0.045962 0.059506 7.974707 7.469537 10.286181 10.105394 -5903 0.119276 0.063444 0.068414 0.036391 7.871782 7.262292 10.105548 9.390021 -5904 0.056626 0.045910 0.063221 0.045297 8.518410 6.180399 12.505191 8.721137 -5905 0.105407 0.083489 0.062581 0.056553 12.870057 8.240288 14.747107 10.838113 -5906 0.043290 0.061669 0.021121 0.027605 9.883958 8.929868 14.182571 14.724771 -5907 0.058699 0.041386 0.028023 0.019513 5.940970 6.311066 8.798651 7.130507 -5908 0.090764 0.056641 0.048790 0.039478 10.168825 7.466758 13.567274 10.559035 -5909 0.101240 0.073441 0.049663 0.034980 12.768591 9.815323 15.175442 12.536181 -5910 0.063883 0.048995 0.040631 0.040566 8.091144 7.690119 14.027471 14.736079 -5911 0.046329 0.045838 0.024255 0.017879 6.025794 5.353521 9.028146 7.175596 -5912 0.063436 0.045259 0.041391 0.034645 10.604877 9.124926 9.636570 8.646972 -5913 0.064395 0.050616 0.034837 0.032411 9.475244 8.264520 9.625618 8.478752 -5914 0.095282 0.110061 0.048971 0.056114 9.600616 6.983481 13.460042 10.679084 -5915 0.109281 0.122295 0.068332 0.073936 13.422641 11.475629 12.471650 12.379588 -5916 0.050953 0.058216 0.029932 0.034441 10.988379 12.194087 12.865418 12.871760 -5917 0.050933 0.043338 0.024851 0.029073 6.776362 5.106729 10.692284 6.995020 -5918 0.043132 0.048840 0.021915 0.023348 8.308943 7.900515 11.919714 11.489803 -5919 0.107353 0.075504 0.076659 0.045518 9.822492 8.873974 8.959299 9.126665 -5920 0.066598 0.051643 0.043540 0.046765 9.837595 7.218815 8.223208 7.204825 -5921 0.081135 0.076234 0.047559 0.065320 15.625697 9.598599 15.703229 12.469243 -5922 0.087094 0.062588 0.054700 0.053779 10.058857 8.644325 10.087263 7.568728 -5923 0.098408 0.077002 0.070919 0.055932 11.537986 8.484831 11.480418 8.776267 -5924 0.115616 0.112713 0.048589 0.054172 12.429339 11.513125 16.291346 14.259458 -5925 0.034782 0.032131 0.022824 0.019071 7.762308 8.400495 9.050922 11.153908 -5926 0.061776 0.051489 0.024015 0.020718 6.557481 4.840996 9.915245 7.391031 -5927 0.088170 0.087149 0.072757 0.048407 11.021049 10.724684 13.845372 15.510496 -5928 0.060801 0.067960 0.042823 0.057375 9.953123 8.177277 15.624639 11.038193 -5929 0.075318 0.056404 0.065858 0.030656 7.301171 5.542110 11.501441 7.394509 -5930 0.080545 0.056855 0.037904 0.040213 12.404613 9.362994 10.591860 8.600536 -5931 0.073750 0.079019 0.037945 0.044261 8.699589 7.885452 11.867089 10.436360 -5932 0.063255 0.075458 0.044161 0.046934 15.256389 13.337646 16.908979 16.841731 -5933 0.065600 0.053653 0.068064 0.056840 12.405493 9.677107 13.249462 11.604730 -5934 0.097260 0.083188 0.046342 0.032555 10.030475 7.980340 11.100238 9.666986 -5935 0.057527 0.045892 0.029273 0.028946 6.471060 5.975873 12.996723 11.403911 -5936 0.083385 0.069510 0.049382 0.038340 9.413368 9.826514 16.209521 11.733775 -5937 0.074416 0.097170 0.044323 0.046478 15.588008 10.909462 17.926911 17.096767 -5938 0.068199 0.068215 0.040001 0.042363 8.997107 9.638157 17.272107 16.829587 -5939 0.060542 0.048003 0.027720 0.018703 7.559655 6.832302 8.151734 9.019568 -5940 0.081403 0.070521 0.039211 0.035670 10.183842 10.296239 13.745068 14.201835 -5941 0.114243 0.100326 0.056740 0.063500 8.372179 9.825191 12.486617 11.712931 -5942 0.040113 0.044806 0.036526 0.054094 7.079492 6.583580 9.484858 8.063518 -5943 0.068120 0.063211 0.032304 0.025042 8.214451 5.843077 9.781261 10.212189 -5944 0.085121 0.080423 0.059101 0.040278 13.224523 12.820651 12.871513 12.288883 -5945 0.096240 0.104103 0.032536 0.029673 6.497065 7.611959 10.762555 11.235535 -5946 0.088886 0.092150 0.079582 0.083448 13.162315 11.182390 18.589264 15.947223 -5947 0.088700 0.059046 0.054160 0.036166 8.031532 8.294987 9.856675 12.797030 -5948 0.065930 0.084791 0.041601 0.039268 13.404853 11.525352 15.827515 11.847375 -5949 0.070599 0.060308 0.023250 0.023063 10.075720 7.197478 7.747375 10.240032 -5950 0.069901 0.061458 0.048436 0.036542 12.107810 11.798485 10.490834 9.850248 -5951 0.083535 0.069803 0.105185 0.070045 10.138770 8.660773 12.382764 10.427899 -5952 0.095860 0.095094 0.077901 0.070882 8.349413 8.646906 12.903262 11.766320 -5953 0.081016 0.075173 0.045095 0.035374 11.933345 8.399271 11.828832 8.402078 -5954 0.089704 0.070077 0.031075 0.025965 9.712125 8.449508 14.075906 13.194300 -5955 0.055358 0.062912 0.037443 0.029325 7.205603 6.593017 10.830399 9.502583 -5956 0.158599 0.107215 0.072665 0.040647 9.603628 9.310488 14.061619 13.316015 -5957 0.069405 0.074679 0.042477 0.041902 9.238550 9.832269 8.107876 7.691563 -5958 0.068174 0.050735 0.038304 0.034062 6.461176 5.516432 8.740175 10.000170 -5959 0.056272 0.038819 0.029560 0.016103 7.741621 7.344496 9.874082 11.463607 -5960 0.108549 0.071048 0.065437 0.048108 16.082659 12.588975 12.472510 11.038024 -5961 0.075959 0.088084 0.056067 0.066165 10.646873 7.530475 11.335880 9.695503 -5962 0.063334 0.047207 0.031184 0.020283 10.804530 9.499832 19.636635 15.639881 -5963 0.043392 0.044759 0.021079 0.021847 11.526404 9.625678 11.397605 9.260932 -5964 0.061245 0.055400 0.027411 0.027443 7.606320 5.708423 8.077999 6.692300 -5965 0.081139 0.075544 0.048589 0.060140 10.876558 7.844661 15.595383 12.726345 -5966 0.055343 0.040353 0.049357 0.033569 10.783876 9.277221 11.764452 9.727936 -5967 0.094299 0.092134 0.081730 0.058757 12.860006 13.152769 17.917026 14.643729 -5968 0.074398 0.049095 0.045996 0.027081 8.879520 8.276265 13.874156 12.094996 -5969 0.146933 0.104616 0.076925 0.041840 9.065729 5.729397 12.310432 6.540853 -5970 0.071863 0.085261 0.047239 0.049660 8.906597 8.026461 12.342821 10.547405 -5971 0.065561 0.048843 0.062462 0.042539 9.518877 8.593635 18.770101 14.378652 -5972 0.062936 0.049517 0.037102 0.029907 11.097173 10.233775 11.920297 12.856451 -5973 0.086688 0.062083 0.061076 0.054809 13.362162 11.057136 13.409871 11.321555 -5974 0.038498 0.038866 0.029651 0.024061 8.282013 8.522219 9.096244 10.539289 -5975 0.063297 0.039786 0.039840 0.019539 9.701291 7.078182 11.510255 7.579730 -5976 0.114793 0.081959 0.058579 0.048981 10.147531 10.966017 13.752500 15.736152 -5977 0.065708 0.067520 0.052074 0.046100 8.994237 8.205093 11.971368 10.293375 -5978 0.094893 0.091457 0.067340 0.046620 8.354783 8.469730 8.488743 9.470696 -5979 0.052730 0.048894 0.017536 0.016681 9.585529 7.872375 8.548096 7.699024 -5980 0.063093 0.050915 0.041738 0.022787 14.630526 10.985056 14.188143 11.305861 -5981 0.079380 0.075792 0.035001 0.034228 9.564944 9.905885 10.656593 10.158537 -5982 0.047952 0.043186 0.030499 0.032031 9.561112 8.222584 18.675049 15.027017 -5983 0.081677 0.070310 0.049538 0.034576 13.201400 7.892812 15.980586 15.842974 -5984 0.082441 0.087248 0.066787 0.087755 8.096058 8.688857 13.462616 11.277003 -5985 0.086724 0.080241 0.046069 0.046280 13.919551 11.843359 23.541417 17.522201 -5986 0.111632 0.073625 0.060265 0.025698 10.293447 11.918447 11.943594 14.513997 -5987 0.134695 0.126554 0.071149 0.057879 7.274695 7.265555 11.328970 10.328683 -5988 0.081269 0.065609 0.040531 0.051565 10.988365 13.138357 10.757123 10.775256 -5989 0.040288 0.059389 0.027568 0.035190 8.824216 7.450863 13.536805 12.703351 -5990 0.080422 0.082060 0.068710 0.057083 11.099288 9.273729 10.478926 10.083957 -5991 0.104505 0.074216 0.048106 0.036200 9.545484 8.099647 11.769164 10.600141 -5992 0.148538 0.124554 0.090192 0.060243 13.828417 10.920202 18.192489 15.011595 -5993 0.092140 0.068773 0.085608 0.051060 12.229403 10.611258 10.038781 9.324842 -5994 0.090162 0.073391 0.053501 0.039355 16.097248 16.026335 16.058809 16.815183 -5995 0.085272 0.061114 0.034529 0.023951 8.438523 9.681187 14.358333 14.787055 -5996 0.059324 0.046986 0.035393 0.030490 8.129049 7.709560 9.781364 9.858692 -5997 0.100921 0.058892 0.058285 0.029282 8.229877 6.334784 10.195036 8.925835 -5998 0.068359 0.064704 0.031218 0.035909 10.425624 10.410060 13.415640 12.222538 -5999 0.104479 0.093567 0.073275 0.067611 10.307725 9.496234 13.942144 12.385265 -6000 0.090399 0.062264 0.041517 0.053294 8.943088 10.954916 12.902957 10.610483 -6001 0.088157 0.067416 0.067835 0.036425 11.848499 9.692263 15.535519 13.823454 -6002 0.064109 0.053654 0.027765 0.014709 9.796226 6.807940 14.535529 10.578249 -6003 0.071134 0.050259 0.031227 0.019743 8.722606 8.631144 12.959544 12.704067 -6004 0.104795 0.096327 0.050162 0.054081 13.337196 11.248780 15.806224 14.890509 -6005 0.120652 0.070944 0.056741 0.042364 9.475075 8.627926 12.467974 15.179508 -6006 0.063493 0.049447 0.029379 0.023147 6.210870 6.147815 9.516396 9.852915 -6007 0.080776 0.053894 0.056650 0.034765 11.345708 9.778428 14.031264 11.629417 -6008 0.089228 0.085243 0.053446 0.072688 11.255476 7.826765 17.455966 11.687859 -6009 0.065080 0.047281 0.021540 0.020323 9.482096 8.523115 15.759192 11.730418 -6010 0.076922 0.062492 0.043717 0.028483 6.629520 6.226772 12.016525 10.985616 -6011 0.058626 0.030715 0.038842 0.017817 11.247909 6.732194 14.425205 10.592603 -6012 0.048729 0.052007 0.022071 0.029683 8.219274 7.362431 9.303975 7.640541 -6013 0.069243 0.068817 0.077291 0.048885 10.324748 7.792835 12.395682 10.626165 -6014 0.101581 0.102408 0.066174 0.060470 12.057419 11.639365 15.363203 12.089914 -6015 0.064687 0.054545 0.047362 0.025834 13.464059 8.656628 18.094808 11.161108 -6016 0.064346 0.050495 0.037759 0.031777 10.439535 7.984819 15.477544 13.887767 -6017 0.070713 0.065496 0.037121 0.028115 11.235423 10.462120 12.593416 14.026703 -6018 0.067292 0.062528 0.050453 0.050484 8.788447 8.865041 10.678229 12.516758 -6019 0.047008 0.051001 0.042357 0.029261 6.342031 5.240143 9.804623 10.464754 -6020 0.115006 0.094822 0.059342 0.042103 12.060796 9.998503 17.557585 14.477783 -6021 0.104342 0.086443 0.059569 0.049177 10.901318 9.099380 14.875991 12.524749 -6022 0.094035 0.075614 0.043893 0.043880 17.044572 12.631905 23.506039 14.683677 -6023 0.080778 0.090161 0.065550 0.059707 11.737079 8.798693 17.320096 14.574138 -6024 0.069104 0.057311 0.036767 0.030899 12.532080 8.657773 16.398844 13.273654 -6025 0.084136 0.049335 0.048340 0.032308 7.573895 6.996786 13.813156 14.599317 -6026 0.061973 0.055131 0.047206 0.033784 6.462695 6.117309 10.927860 10.748232 -6027 0.068586 0.052446 0.034155 0.024829 12.450700 9.355822 16.198291 10.696152 -6028 0.069055 0.066302 0.059401 0.049189 11.704827 8.988590 11.594338 10.883853 -6029 0.052405 0.039566 0.030391 0.020498 7.738896 6.118007 15.698903 12.279555 -6030 0.119145 0.132013 0.088821 0.081218 10.805668 11.416424 12.174810 12.498939 -6031 0.101004 0.064221 0.091812 0.053542 13.814294 15.985752 14.356740 12.345083 -6032 0.070235 0.055292 0.045098 0.045465 8.440557 10.409720 11.604322 10.286432 -6033 0.089040 0.055407 0.062625 0.039533 10.310962 8.071954 18.553679 13.064550 -6034 0.084780 0.081991 0.041549 0.041332 9.397723 6.512283 16.696723 12.205847 -6035 0.065326 0.054987 0.047695 0.046257 8.645594 8.702631 8.223864 8.419814 -6036 0.076622 0.058097 0.064241 0.029664 9.316846 9.247627 11.097105 10.541048 -6037 0.079042 0.076198 0.025988 0.026346 7.295675 4.741552 10.528859 8.042204 -6038 0.038908 0.035307 0.033021 0.034169 9.908458 11.001137 8.104548 8.197990 -6039 0.063524 0.061533 0.030885 0.039562 6.854440 5.828454 10.753708 7.541175 -6040 0.063310 0.051103 0.036360 0.036214 8.726060 6.615254 15.846568 11.929298 -6041 0.122578 0.082395 0.070664 0.048404 12.513982 10.389524 13.945004 12.675557 -6042 0.053828 0.051407 0.035917 0.023281 8.505647 8.205683 11.800520 11.665953 -6043 0.063495 0.071150 0.043617 0.045201 14.781350 10.917727 17.838317 17.199100 -6044 0.048901 0.036649 0.022919 0.017827 10.931860 6.741598 13.809628 9.551218 -6045 0.105551 0.069818 0.047667 0.037138 9.989773 9.648442 10.621762 10.374542 -6046 0.071152 0.075437 0.069163 0.081634 12.705993 12.181315 15.761660 12.092226 -6047 0.081255 0.072750 0.054896 0.049417 10.430441 10.149253 12.535825 12.299890 -6048 0.050044 0.042318 0.027576 0.028251 8.150914 7.708041 9.997875 8.174592 -6049 0.076832 0.053632 0.041801 0.026154 10.518771 8.551555 12.078531 9.329433 -6050 0.114969 0.105293 0.079742 0.056601 10.836262 10.459569 13.066445 13.612252 -6051 0.042123 0.030429 0.027037 0.016569 8.858043 6.527955 7.599538 6.075872 -6052 0.087818 0.072403 0.037902 0.029312 12.085316 8.909589 10.163928 8.642016 -6053 0.054219 0.036978 0.036414 0.022814 11.237262 9.947435 14.317108 11.888987 -6054 0.172615 0.096443 0.081575 0.052881 11.476753 12.347216 11.645034 10.418333 -6055 0.081186 0.049771 0.052288 0.043871 7.565490 8.504195 9.177240 10.539348 -6056 0.055410 0.040667 0.027070 0.020669 9.006571 10.384331 11.205201 10.233691 -6057 0.111943 0.083747 0.031841 0.038316 11.266453 8.402530 16.540951 12.425319 -6058 0.083603 0.091230 0.046479 0.042107 9.601168 7.895271 12.938940 9.902683 -6059 0.076042 0.067712 0.054148 0.056754 8.306698 7.867768 14.344186 14.825874 -6060 0.047651 0.057797 0.044947 0.039596 9.591467 7.400812 13.260634 12.145752 -6061 0.063538 0.066430 0.031592 0.032300 6.507680 5.700886 11.702101 9.036584 -6062 0.081723 0.059892 0.044438 0.035879 12.611306 12.586587 13.292212 12.726296 -6063 0.060595 0.049058 0.043414 0.023054 12.937175 13.640088 15.735444 17.781862 -6064 0.069074 0.053925 0.027701 0.023202 9.223305 8.175107 8.375037 6.920867 -6065 0.076906 0.067105 0.034171 0.023893 9.830568 9.564990 14.627360 11.688983 -6066 0.074254 0.058228 0.046209 0.027116 8.541471 7.846932 12.853633 10.682249 -6067 0.056146 0.038668 0.053794 0.028656 10.335186 8.354482 11.725815 8.137393 -6068 0.105351 0.086677 0.043489 0.040297 13.967639 12.622029 19.119682 14.040090 -6069 0.068722 0.049490 0.021063 0.018769 7.238861 7.043828 13.924707 10.763750 -6070 0.057163 0.049330 0.029570 0.026229 11.882328 15.227149 11.220246 13.694226 -6071 0.072383 0.053572 0.060472 0.057050 11.541165 9.874754 13.342669 11.076265 -6072 0.045909 0.059017 0.047002 0.040159 10.679363 10.685228 13.860008 12.723369 -6073 0.059562 0.060124 0.037087 0.034594 6.714808 7.845614 14.717488 11.811136 -6074 0.128971 0.079148 0.142101 0.087363 12.825103 11.777370 9.800473 9.246182 -6075 0.037814 0.037930 0.021110 0.033751 5.185250 5.301407 6.289066 6.261650 -6076 0.071328 0.064573 0.062535 0.050591 11.792283 8.629984 16.359737 12.017526 -6077 0.054997 0.042362 0.024473 0.023858 7.724940 7.205371 7.807799 6.354213 -6078 0.081673 0.071199 0.063589 0.041631 12.228432 10.357046 18.884884 15.003702 -6079 0.052896 0.054995 0.051282 0.024000 7.650052 6.128417 7.373387 6.154414 -6080 0.061134 0.058917 0.037046 0.034413 8.315539 9.071730 8.609630 8.520203 -6081 0.132974 0.104194 0.066900 0.049227 9.123127 8.323669 13.362615 10.810897 -6082 0.072526 0.050961 0.040842 0.021954 10.160360 7.596115 11.049837 7.821442 -6083 0.069798 0.052967 0.058221 0.046662 12.921556 11.267086 15.446272 17.617312 -6084 0.074084 0.060216 0.040321 0.030154 9.763244 9.387543 17.844503 14.933510 -6085 0.061452 0.039115 0.025753 0.025965 5.117779 4.047460 7.660260 7.376874 -6086 0.102409 0.058556 0.048171 0.029037 7.922809 7.087495 10.911901 8.439146 -6087 0.047858 0.031739 0.030666 0.014938 7.619423 6.668657 11.108175 11.443159 -6088 0.036010 0.036182 0.018696 0.020218 10.276402 6.426643 13.049877 11.302597 -6089 0.101242 0.102030 0.054792 0.041805 11.440596 9.765184 13.264625 10.712076 -6090 0.065874 0.044543 0.039904 0.043135 8.518110 7.081221 11.164816 10.810163 -6091 0.045930 0.048499 0.022707 0.021116 7.364467 7.943272 9.707414 10.374986 -6092 0.065101 0.055717 0.032883 0.030109 6.184595 6.577630 8.780227 12.031641 -6093 0.070353 0.053678 0.067155 0.039072 9.624210 9.972415 12.253276 13.372749 -6094 0.056268 0.054609 0.039443 0.028337 11.257785 10.356354 18.097106 11.445812 -6095 0.134527 0.104228 0.092518 0.076725 8.770647 9.414755 12.127564 9.814231 -6096 0.063171 0.069646 0.034260 0.025349 8.949103 7.834570 16.902561 13.106703 -6097 0.076057 0.063267 0.035419 0.027848 7.834803 7.011558 10.783295 7.835695 -6098 0.116677 0.122498 0.068982 0.051861 7.032813 6.447189 11.171832 9.760036 -6099 0.067325 0.051029 0.037599 0.037209 11.600069 9.491127 12.737162 13.834915 -6100 0.049086 0.046786 0.037281 0.034800 11.030689 11.265749 17.606361 10.215273 -6101 0.077863 0.048945 0.062400 0.031173 7.368724 6.259204 9.557066 9.125601 -6102 0.067952 0.060495 0.042524 0.032132 7.766308 6.675238 14.745287 12.541443 -6103 0.051752 0.038397 0.022993 0.014057 7.698954 6.921401 11.882506 11.446967 -6104 0.070032 0.064097 0.029621 0.027088 12.025104 10.899191 11.002450 13.130610 -6105 0.065426 0.042302 0.057294 0.021795 8.043979 8.802304 10.104112 10.594270 -6106 0.085187 0.065556 0.045784 0.048966 9.251167 6.607355 11.353937 9.993660 -6107 0.066581 0.052365 0.041273 0.031186 8.812593 8.611273 11.156822 11.832573 -6108 0.150520 0.123009 0.088188 0.054113 13.078477 16.287285 18.971261 18.571322 -6109 0.081347 0.081591 0.048127 0.054062 6.906343 8.360344 13.334099 14.050955 -6110 0.046522 0.042613 0.023918 0.026408 8.166045 6.446859 8.265099 6.717845 -6111 0.092648 0.080343 0.032567 0.034244 8.506742 7.963817 13.533606 12.362152 -6112 0.070390 0.072970 0.024991 0.015766 8.520263 9.392719 12.420716 14.129172 -6113 0.070179 0.056159 0.049846 0.038838 13.198265 11.191673 13.374832 11.098376 -6114 0.120619 0.104934 0.078721 0.066771 10.263621 9.116598 9.022204 8.637234 -6115 0.052059 0.042562 0.024582 0.021032 11.565871 9.042905 14.742953 14.219159 -6116 0.036508 0.044121 0.030566 0.032293 7.148711 7.189428 10.932116 10.780253 -6117 0.059041 0.036133 0.028341 0.018379 9.318306 7.328166 10.385634 8.081740 -6118 0.068727 0.087541 0.032310 0.043000 8.961662 5.710039 10.911311 9.147964 -6119 0.036518 0.041296 0.019868 0.021109 6.923621 5.145273 9.182203 7.869405 -6120 0.086815 0.078255 0.052650 0.055537 12.753949 12.519355 11.367345 10.841840 -6121 0.068458 0.069108 0.039173 0.029630 7.187168 7.564820 12.935061 12.323538 -6122 0.089901 0.065236 0.042835 0.031085 6.789354 6.444842 8.359113 8.739094 -6123 0.097931 0.101960 0.098626 0.099440 16.224519 13.030055 18.390703 15.906836 -6124 0.068986 0.050948 0.038330 0.030052 6.731875 5.699295 9.721217 9.412400 -6125 0.065228 0.056580 0.037027 0.025203 11.336571 10.058068 18.444935 16.393526 -6126 0.079140 0.052693 0.047942 0.026686 9.823477 9.548233 12.822803 12.304624 -6127 0.081527 0.058172 0.054962 0.031148 10.223718 9.459880 12.619884 11.862282 -6128 0.129072 0.109573 0.066846 0.040638 11.430782 12.278717 16.581993 19.512399 -6129 0.052012 0.044327 0.044023 0.032788 7.634215 6.693713 13.334506 10.937149 -6130 0.074530 0.064454 0.066825 0.045987 13.604735 11.027596 16.909828 12.461090 -6131 0.120344 0.070428 0.045474 0.029307 12.244727 12.297209 19.472206 15.167272 -6132 0.071124 0.060253 0.047512 0.037852 9.449428 6.269468 9.566554 6.360084 -6133 0.047418 0.050180 0.011287 0.030300 7.360517 7.394600 13.690102 13.452404 -6134 0.073747 0.080943 0.055775 0.063401 9.821617 8.745668 11.374133 11.069074 -6135 0.060995 0.073606 0.045221 0.038410 10.402677 7.129424 11.176425 8.697341 -6136 0.058448 0.044180 0.048414 0.030080 11.299925 11.218136 12.494812 12.558916 -6137 0.066093 0.059474 0.029312 0.022608 10.623344 7.046682 10.926368 8.640049 -6138 0.080271 0.055612 0.031854 0.031199 10.212864 8.383369 9.880860 8.838943 -6139 0.053275 0.043574 0.036011 0.035165 11.875389 12.583553 14.710639 14.391108 -6140 0.106338 0.097166 0.082989 0.045381 7.853654 8.202653 10.892628 9.876107 -6141 0.098568 0.084487 0.086653 0.079707 8.915803 7.779528 13.553199 9.833254 -6142 0.073018 0.070096 0.038578 0.040932 9.226163 6.891009 8.383555 6.175785 -6143 0.039118 0.029625 0.015084 0.011945 7.545267 6.403341 11.969002 10.621058 -6144 0.093441 0.080370 0.063902 0.063345 11.740333 10.177440 12.497161 10.337282 -6145 0.090924 0.077985 0.061150 0.055405 11.637738 9.385403 10.912859 8.652143 -6146 0.100444 0.110928 0.113552 0.083542 11.308109 7.863950 10.274516 9.008137 -6147 0.070558 0.063420 0.049370 0.043962 10.920468 12.362738 17.512488 16.121527 -6148 0.084394 0.067714 0.045604 0.039827 10.360127 9.909268 11.654266 13.992101 -6149 0.084065 0.085154 0.037288 0.045730 14.533783 12.174143 15.156161 11.234807 -6150 0.044619 0.041417 0.023285 0.022832 5.584849 4.969291 9.027966 6.310869 -6151 0.075077 0.057742 0.020806 0.023161 6.877918 7.438732 14.057676 11.616450 -6152 0.079869 0.060335 0.037704 0.031171 6.902740 6.586286 7.402251 9.113402 -6153 0.080242 0.073717 0.062731 0.040798 12.790000 14.104916 13.305222 12.711490 -6154 0.030573 0.035717 0.025800 0.023721 9.157329 8.421276 14.865350 14.798909 -6155 0.110775 0.077038 0.083364 0.053134 11.436726 9.931017 16.087564 13.348865 -6156 0.066573 0.060327 0.044782 0.042523 11.882638 9.462296 14.306495 9.950683 -6157 0.054413 0.057492 0.018402 0.015194 6.238405 3.966637 5.507213 5.599767 -6158 0.086517 0.069958 0.056664 0.033959 8.945029 9.589756 17.779696 15.470203 -6159 0.109541 0.086167 0.087018 0.082169 17.513521 14.971463 15.058544 12.814975 -6160 0.066938 0.037457 0.028548 0.017587 8.986545 5.003208 13.014284 6.907482 -6161 0.136322 0.076342 0.089619 0.077432 13.670455 9.518264 14.045595 10.532441 -6162 0.049553 0.043095 0.023822 0.028423 9.199552 7.097955 13.746179 12.057821 -6163 0.083891 0.081113 0.034508 0.030693 10.016123 9.152947 17.021975 13.078079 -6164 0.064970 0.052600 0.029634 0.027222 7.833642 8.530785 19.019621 17.057009 -6165 0.090472 0.082957 0.097259 0.085598 12.009826 10.250455 9.905694 9.148829 -6166 0.092148 0.065583 0.070107 0.039218 11.459793 9.667722 14.695342 12.699592 -6167 0.087552 0.121705 0.062550 0.087806 8.959494 10.320003 13.552829 13.288440 -6168 0.065736 0.047221 0.055488 0.052166 12.937854 9.400728 12.480809 10.185550 -6169 0.067312 0.053351 0.050215 0.043012 10.958761 8.600436 21.065959 18.617708 -6170 0.058669 0.047860 0.032963 0.020489 10.776020 10.493731 12.098561 9.596777 -6171 0.063512 0.052635 0.031677 0.032813 8.036849 7.695094 10.486057 9.218182 -6172 0.054371 0.039650 0.035166 0.026021 8.225359 6.501664 8.590376 8.403942 -6173 0.065536 0.065778 0.041214 0.041846 11.725384 13.590139 13.979905 17.295923 -6174 0.086807 0.077077 0.066257 0.055711 9.866386 8.837091 12.452211 10.085256 -6175 0.107779 0.091084 0.065080 0.065606 10.291533 9.436381 13.440728 10.658367 -6176 0.097887 0.088040 0.035240 0.037678 10.150713 7.435384 16.077680 11.121664 -6177 0.055098 0.043935 0.036129 0.022277 9.512046 7.832615 13.211338 13.025822 -6178 0.064392 0.057550 0.044799 0.033514 14.753739 12.497344 16.595380 12.392430 -6179 0.079248 0.064663 0.047259 0.042289 10.358666 9.183370 14.493899 7.916497 -6180 0.050749 0.058140 0.056235 0.048837 11.637706 10.511047 11.655666 10.757810 -6181 0.063709 0.046562 0.075313 0.044511 8.978291 6.478285 11.756322 8.074092 -6182 0.064774 0.078465 0.030497 0.023020 8.913815 6.631821 12.440166 10.509954 -6183 0.102575 0.082488 0.062851 0.040497 9.273238 11.481624 12.089905 10.948103 -6184 0.054998 0.042240 0.029492 0.025647 5.975296 5.550188 9.049703 10.056364 -6185 0.079466 0.050303 0.045521 0.028077 9.282448 8.788469 13.361465 12.447423 -6186 0.051486 0.053184 0.032412 0.042212 10.182037 10.815917 21.234011 14.071280 -6187 0.056563 0.060243 0.027515 0.028365 7.053915 6.556054 8.045123 7.844712 -6188 0.082989 0.060575 0.059166 0.054231 9.210563 8.455413 15.353166 15.470304 -6189 0.072930 0.057914 0.031251 0.026939 10.396111 6.926876 10.434411 8.889972 -6190 0.058898 0.072909 0.035830 0.039828 8.055600 7.771569 11.687344 9.384643 -6191 0.049426 0.037913 0.036703 0.029594 12.729236 13.084076 14.994670 19.333179 -6192 0.087463 0.067614 0.043824 0.057528 12.166456 9.365758 12.125549 10.196853 -6193 0.064498 0.047457 0.032582 0.026636 9.070920 9.704451 10.601256 10.098164 -6194 0.072705 0.060842 0.040035 0.032403 8.336424 6.828489 7.074172 6.989253 -6195 0.117299 0.091265 0.060873 0.056697 9.676314 7.624874 13.339744 11.413200 -6196 0.087176 0.066575 0.081122 0.039219 11.622642 9.537168 16.559539 13.262690 -6197 0.044186 0.057277 0.036292 0.037388 5.632919 5.220067 9.335752 9.856306 -6198 0.113908 0.085726 0.078358 0.057599 15.461396 14.686277 18.334128 12.609397 -6199 0.105869 0.101539 0.099927 0.070602 11.562618 12.189009 11.981912 15.153581 -6200 0.068994 0.061234 0.032232 0.029007 7.398992 5.867341 12.318773 9.298417 -6201 0.081755 0.076941 0.056153 0.033952 6.871771 7.346755 9.694368 7.081938 -6202 0.055166 0.057323 0.034826 0.023459 8.950693 7.005014 10.880372 8.526435 -6203 0.089763 0.094780 0.066487 0.082539 10.669531 10.676554 18.109850 18.377046 -6204 0.080464 0.059370 0.031409 0.030810 9.040987 8.920695 11.243241 9.943699 -6205 0.095339 0.068664 0.059507 0.065305 6.607728 6.663937 12.317154 11.388629 -6206 0.093574 0.071018 0.050490 0.028680 10.242757 7.751478 14.546361 13.174500 -6207 0.057644 0.061548 0.030480 0.026232 12.006877 9.769001 12.394116 13.127092 -6208 0.046811 0.037940 0.037122 0.023290 6.709956 7.630926 12.597523 13.263097 -6209 0.046722 0.045791 0.026781 0.026296 8.595838 10.745642 12.066717 13.656112 -6210 0.092280 0.077025 0.037666 0.038537 10.283978 8.034095 11.467805 8.787222 -6211 0.079253 0.068787 0.037954 0.032999 6.733629 5.782144 10.010873 8.066059 -6212 0.089317 0.059803 0.062805 0.057590 8.411350 6.619542 9.419652 8.602919 -6213 0.113273 0.108802 0.053312 0.043073 8.562721 8.964750 20.289904 12.615167 -6214 0.087657 0.077511 0.069154 0.046093 10.009735 10.487294 12.947088 10.509328 -6215 0.054841 0.043193 0.019715 0.015966 10.018949 7.945947 15.470342 11.185085 -6216 0.045613 0.037583 0.027597 0.025084 9.826165 8.770876 14.449231 10.702408 -6217 0.106023 0.093700 0.085216 0.047347 8.568109 8.606498 17.841740 12.144340 -6218 0.037071 0.033211 0.026234 0.016669 14.002947 11.359225 11.668880 9.704921 -6219 0.062361 0.060285 0.032003 0.027755 10.885517 8.376477 13.093560 10.374893 -6220 0.129681 0.099029 0.070209 0.061670 10.996307 8.668608 11.796656 10.909065 -6221 0.050156 0.038903 0.024744 0.014348 8.471931 8.758944 12.674865 10.713284 -6222 0.072081 0.071311 0.046060 0.055533 6.080797 7.098422 11.658651 9.869588 -6223 0.122064 0.098447 0.101650 0.088097 17.583711 15.933096 18.070987 14.769332 -6224 0.102580 0.097405 0.088509 0.057778 13.412596 11.497379 21.232550 15.997428 -6225 0.079106 0.055741 0.050726 0.034510 8.440960 7.903091 11.235511 10.944393 -6226 0.071757 0.065300 0.054271 0.035491 12.036195 9.274048 15.116797 9.672139 -6227 0.068682 0.063252 0.055962 0.045837 7.346743 6.602669 8.531021 8.449153 -6228 0.067282 0.059140 0.045289 0.048833 10.627792 8.963098 16.121950 11.474248 -6229 0.091273 0.092096 0.060846 0.080957 8.849676 9.486647 11.874688 11.085604 -6230 0.075443 0.062728 0.047333 0.024236 11.190586 8.983532 15.506637 11.916193 -6231 0.073524 0.086658 0.042567 0.036857 9.790412 11.384099 11.527287 12.490455 -6232 0.079110 0.057174 0.058135 0.036535 12.144474 9.410509 12.855780 12.902684 -6233 0.052569 0.045828 0.043696 0.028616 8.103166 7.228769 10.885587 9.992580 -6234 0.092816 0.070454 0.099755 0.054421 15.009738 12.445560 16.198054 12.706088 -6235 0.051253 0.034668 0.027768 0.015910 6.767932 6.103182 11.543923 9.104126 -6236 0.071473 0.079156 0.051649 0.042673 12.167044 12.081637 15.394431 15.543619 -6237 0.098525 0.073717 0.081044 0.052660 8.160201 6.915522 10.031746 7.968248 -6238 0.108766 0.110705 0.043475 0.063432 8.760993 8.331786 13.443713 14.217063 -6239 0.039123 0.036899 0.033037 0.027831 11.650657 9.469376 12.231908 9.237266 -6240 0.059002 0.044084 0.037349 0.029338 8.740247 6.940887 11.391403 9.162628 -6241 0.120179 0.100070 0.100197 0.072670 8.876541 8.456480 14.149879 13.216831 -6242 0.047622 0.033803 0.016326 0.013647 6.117644 5.301193 7.272907 6.186058 -6243 0.056636 0.052641 0.037644 0.030882 11.598628 9.746273 12.623952 9.826856 -6244 0.061229 0.058561 0.025336 0.021999 6.254616 6.776348 9.274057 9.906418 -6245 0.038651 0.028046 0.031843 0.022723 6.976813 6.579436 9.443990 9.616727 -6246 0.073292 0.058759 0.043599 0.047154 9.736800 5.889923 14.695667 8.855626 -6247 0.090075 0.064999 0.049421 0.027309 7.969669 8.464005 12.969177 13.885904 -6248 0.050628 0.052721 0.026030 0.023237 9.129047 7.246126 13.243750 10.960043 -6249 0.095027 0.071782 0.092114 0.068096 13.164164 12.446503 17.831057 12.709363 -6250 0.060990 0.048001 0.034180 0.028458 13.442815 12.469180 14.297559 12.270290 -6251 0.088558 0.060563 0.036601 0.042433 9.632049 8.049701 8.391361 8.413445 -6252 0.072694 0.063210 0.044432 0.043910 7.014892 7.581063 9.462013 8.987114 -6253 0.085167 0.063333 0.043330 0.029752 7.851671 8.260057 12.983614 12.357635 -6254 0.091424 0.067716 0.039261 0.029177 12.159663 9.982973 11.980974 9.605070 -6255 0.100845 0.089068 0.042719 0.044684 13.513764 9.187845 22.340918 15.541851 -6256 0.092052 0.075963 0.084438 0.074984 6.690225 8.865321 13.084878 12.933552 -6257 0.063166 0.051582 0.042484 0.031629 10.610130 7.027032 13.588937 9.982512 -6258 0.050361 0.040387 0.032330 0.026650 9.295905 8.060554 9.130708 9.989307 -6259 0.100168 0.127210 0.072142 0.061928 9.768844 10.489086 11.941033 11.645759 -6260 0.149460 0.086511 0.093965 0.070046 14.744617 14.253819 15.425224 14.909551 -6261 0.081340 0.060103 0.044259 0.030451 9.982944 8.581724 11.566673 11.590797 -6262 0.074563 0.071986 0.060639 0.049233 9.069989 8.497859 11.509490 11.631433 -6263 0.056445 0.050152 0.027177 0.020620 12.101665 14.381256 12.750143 13.705986 -6264 0.052476 0.063607 0.048591 0.029521 10.160199 8.639075 8.756498 8.247389 -6265 0.077796 0.074538 0.061816 0.057777 12.557269 9.647396 20.938431 20.768077 -6266 0.112472 0.086632 0.075220 0.063763 7.590938 6.914493 10.554022 8.571617 -6267 0.065484 0.070531 0.047972 0.039166 13.371680 9.837087 10.455007 9.189225 -6268 0.079235 0.079011 0.029989 0.029851 9.182502 6.845122 11.585223 7.765374 -6269 0.072609 0.068438 0.018354 0.017714 9.731114 11.975877 12.242067 13.906232 -6270 0.094973 0.090370 0.044774 0.055660 11.378838 10.082290 9.749084 9.389513 -6271 0.105781 0.066935 0.064553 0.042997 15.617004 11.903972 18.789083 14.520789 -6272 0.119507 0.085988 0.104543 0.060821 9.038012 10.106604 15.088724 15.152720 -6273 0.103838 0.094291 0.065306 0.035158 10.870832 9.639286 18.435654 13.557525 -6274 0.051621 0.051314 0.022964 0.019237 10.367642 9.622281 14.713044 13.361720 -6275 0.094823 0.072076 0.046437 0.037282 7.263154 6.970442 12.907825 11.419893 -6276 0.156764 0.109403 0.085208 0.042151 11.490804 11.495632 20.083513 16.695864 -6277 0.085405 0.072256 0.096189 0.066666 7.528617 7.250155 10.959691 10.596732 -6278 0.076087 0.066162 0.052951 0.036523 7.978988 8.704610 17.162157 14.505434 -6279 0.063590 0.038234 0.027637 0.026118 6.407525 5.070793 7.890599 7.189233 -6280 0.091162 0.075131 0.093112 0.068029 14.553703 10.687740 21.658124 20.239463 -6281 0.101820 0.084825 0.074940 0.049131 7.881940 7.430423 11.328509 10.487320 -6282 0.132273 0.097345 0.108696 0.069251 11.768280 12.546433 9.480434 11.422139 -6283 0.049202 0.049721 0.032100 0.032053 10.562367 10.577450 12.419520 10.711898 -6284 0.101637 0.078179 0.079658 0.065128 8.119028 10.893816 11.522649 14.323521 -6285 0.076389 0.079704 0.031337 0.031721 9.049574 8.217876 15.082855 9.876349 -6286 0.082823 0.062259 0.036587 0.037960 9.371179 9.119279 11.025965 8.471453 -6287 0.066852 0.071694 0.042624 0.040760 9.102622 8.203786 14.518609 13.934595 -6288 0.062939 0.066983 0.049895 0.044718 11.340709 11.702388 18.044445 17.153563 -6289 0.068754 0.067320 0.041205 0.046462 13.087235 11.567844 19.519332 15.217664 -6290 0.077725 0.085990 0.045898 0.047535 6.877153 6.933865 14.988869 16.350785 -6291 0.085837 0.103969 0.054640 0.073763 8.577901 7.701203 10.844739 9.472732 -6292 0.074708 0.046433 0.049326 0.031979 14.534189 12.528383 16.074904 12.676610 -6293 0.060762 0.053306 0.044206 0.044567 8.329680 7.740388 9.428292 7.348669 -6294 0.112990 0.096518 0.101534 0.067541 10.358087 8.019039 17.686995 13.744980 -6295 0.067897 0.042790 0.029627 0.028754 8.001970 7.609875 8.955121 9.561931 -6296 0.095085 0.075425 0.064133 0.040302 13.866436 12.462301 16.877238 17.071443 -6297 0.055296 0.054039 0.032047 0.023103 8.054856 5.992187 9.180524 8.212709 -6298 0.067366 0.059442 0.030253 0.021767 15.090897 11.851261 19.736485 16.520916 -6299 0.054213 0.047854 0.035565 0.027876 6.598727 6.544656 11.468440 10.222592 -6300 0.062327 0.072608 0.027098 0.033776 12.211232 10.166766 12.471746 13.987648 -6301 0.095769 0.067531 0.067431 0.043034 11.726009 11.473487 17.246804 16.080744 -6302 0.077635 0.052184 0.056418 0.039829 13.140864 11.865140 13.316071 11.156671 -6303 0.115492 0.088749 0.095660 0.065785 11.265367 9.573547 18.291241 16.225695 -6304 0.053613 0.068966 0.023308 0.034166 7.651532 6.481610 9.655183 7.143297 -6305 0.049100 0.042821 0.021550 0.015517 9.069607 8.869108 12.039271 10.441626 -6306 0.080608 0.068965 0.054223 0.052099 13.398684 10.228591 13.751294 12.516690 -6307 0.062579 0.082439 0.069312 0.056104 13.313566 10.539677 18.121790 14.667744 -6308 0.095671 0.079258 0.062401 0.045501 10.144205 9.289381 13.513469 10.632647 -6309 0.055533 0.037609 0.032235 0.020352 6.744509 6.342953 8.009932 7.531382 -6310 0.079494 0.082866 0.047158 0.053925 13.906194 12.220581 20.478287 18.082907 -6311 0.053540 0.036436 0.022348 0.016915 12.778482 11.397431 14.819441 14.128417 -6312 0.095312 0.074288 0.046441 0.047380 10.284030 8.965723 14.531622 13.620441 -6313 0.075547 0.075795 0.041797 0.033330 9.618187 7.658063 9.974031 8.167302 -6314 0.041756 0.029888 0.031281 0.028333 13.297670 9.143386 19.634859 14.221951 -6315 0.102359 0.111541 0.049486 0.056891 13.259690 12.447141 22.732592 15.032699 -6316 0.050182 0.043386 0.033603 0.039290 8.169923 8.371465 12.269230 8.937381 -6317 0.074813 0.053942 0.036825 0.028577 10.329654 7.787550 7.457012 6.480525 -6318 0.080239 0.061176 0.059638 0.042617 11.256737 10.243399 16.125711 14.191204 -6319 0.077482 0.055693 0.046739 0.051841 9.673238 8.699334 13.694435 12.936158 -6320 0.085304 0.058566 0.052130 0.042772 7.818453 6.913825 10.711471 9.736114 -6321 0.061963 0.059533 0.033612 0.029966 14.496215 12.424878 12.123858 11.062238 -6322 0.063883 0.061748 0.030935 0.029757 6.457460 6.190991 13.509884 11.835887 -6323 0.065288 0.057745 0.033244 0.025177 11.280989 11.328287 11.632542 12.199081 -6324 0.051368 0.055652 0.030599 0.029485 11.942912 9.146578 15.667804 13.115247 -6325 0.032721 0.032962 0.021940 0.026096 9.398184 8.225067 16.660020 14.420234 -6326 0.063464 0.045417 0.041145 0.027030 11.462314 8.665702 17.997196 12.416414 -6327 0.142292 0.099323 0.066487 0.041660 12.132708 12.245681 11.019489 10.475583 -6328 0.066624 0.080923 0.070155 0.063834 12.737386 9.856312 14.129474 8.724967 -6329 0.093855 0.069018 0.096319 0.065234 14.019669 10.656418 14.135785 12.739193 -6330 0.080036 0.058060 0.043411 0.030562 9.595382 7.433494 9.580437 8.611802 -6331 0.069240 0.062732 0.055933 0.031646 9.570012 8.252643 14.955864 11.774654 -6332 0.092493 0.051847 0.047872 0.030165 8.549735 7.498230 11.564005 9.787815 -6333 0.055455 0.037920 0.030400 0.033258 7.591481 7.504507 13.337778 8.975161 -6334 0.087304 0.082158 0.064952 0.045186 10.376719 11.468492 12.872987 12.183124 -6335 0.108264 0.092131 0.056148 0.052476 13.670720 9.697979 15.055783 15.165810 -6336 0.079976 0.064398 0.056431 0.036471 11.458428 9.621831 14.975759 13.046248 -6337 0.072132 0.048062 0.036955 0.030071 10.817018 9.815710 15.579436 16.271514 -6338 0.082371 0.074214 0.060296 0.036059 15.664166 13.336330 20.091991 18.088823 -6339 0.069169 0.088572 0.039707 0.037778 11.467457 9.625297 12.289136 10.534414 -6340 0.066253 0.037484 0.043410 0.021341 7.453660 6.605912 8.589971 7.443949 -6341 0.075229 0.073696 0.050179 0.046526 10.465504 9.886296 11.860296 9.746296 -6342 0.083056 0.066596 0.046015 0.047187 12.100271 9.791013 14.012953 11.570896 -6343 0.116664 0.089660 0.065008 0.054506 10.171702 9.792402 14.299694 11.739524 -6344 0.080482 0.074851 0.031969 0.026333 7.844123 7.760603 10.310021 12.870241 -6345 0.072035 0.048813 0.049609 0.033863 9.864361 8.145485 11.012894 9.621643 -6346 0.096144 0.061975 0.054669 0.043351 9.208983 7.865417 9.020216 9.198071 -6347 0.099856 0.058278 0.025904 0.020464 9.697177 10.279458 10.593787 10.027048 -6348 0.067776 0.068898 0.040701 0.036866 10.274857 9.138041 10.924267 7.557215 -6349 0.044312 0.040527 0.023038 0.030069 10.786673 7.434358 15.797596 9.065963 -6350 0.046836 0.052327 0.028104 0.030093 9.656854 9.018104 12.131633 13.497770 -6351 0.083208 0.051373 0.094774 0.055253 8.136629 8.133976 10.185796 9.211243 -6352 0.093535 0.091745 0.050187 0.048670 10.753636 10.231028 15.000817 15.197232 -6353 0.045131 0.040307 0.012521 0.011760 7.961785 7.004723 11.550028 7.040803 -6354 0.095669 0.078189 0.067414 0.037228 12.272882 9.034917 20.835559 14.849813 -6355 0.073424 0.081232 0.030149 0.034142 11.838944 11.890084 14.119279 14.456589 -6356 0.055602 0.059784 0.042307 0.031572 13.260600 10.986029 12.619488 14.694429 -6357 0.048821 0.050744 0.045081 0.032056 10.984175 8.589253 14.798396 15.217521 -6358 0.068494 0.049925 0.022182 0.029412 8.784191 8.492028 11.737666 11.598473 -6359 0.060909 0.048316 0.060489 0.034045 8.059758 8.437566 7.548390 8.859662 -6360 0.070024 0.051687 0.051576 0.045244 12.277102 10.415954 16.928981 14.480228 -6361 0.065278 0.061313 0.061061 0.050692 7.048872 6.782680 9.855515 10.676670 -6362 0.066034 0.070975 0.024606 0.021125 8.588263 7.423779 13.499139 10.767658 -6363 0.064534 0.050737 0.021472 0.018965 6.897558 6.559811 8.847246 8.695658 -6364 0.059560 0.052767 0.043871 0.045212 12.070860 8.482216 12.148969 12.470045 -6365 0.081300 0.080672 0.056572 0.039771 12.101992 8.584692 14.972874 10.806944 -6366 0.073418 0.084363 0.072464 0.081501 11.471354 10.396008 12.809839 12.196380 -6367 0.095707 0.077791 0.063327 0.044527 10.300763 9.203778 15.813301 13.908814 -6368 0.069134 0.065555 0.033032 0.032506 10.539755 9.670625 11.974422 11.789032 -6369 0.047196 0.049198 0.022957 0.023493 7.755509 6.433365 12.738311 10.244520 -6370 0.065070 0.052030 0.036092 0.025039 11.171940 8.243798 13.911541 10.338797 -6371 0.081352 0.085041 0.044583 0.033206 10.704378 7.710557 13.982901 12.232682 -6372 0.059505 0.044544 0.044507 0.028720 6.363948 6.666590 8.869093 8.826256 -6373 0.057512 0.039373 0.020283 0.015257 11.116591 11.180471 11.397103 11.840826 -6374 0.069960 0.050719 0.040405 0.028023 8.238378 6.343793 12.162229 9.786679 -6375 0.086585 0.074924 0.077487 0.043935 12.046002 9.012655 16.816655 14.382114 -6376 0.114509 0.076582 0.058369 0.036997 13.398045 10.664720 15.750306 11.158836 -6377 0.095671 0.077484 0.028325 0.029499 8.537486 7.869305 8.780413 8.655226 -6378 0.124135 0.091840 0.095622 0.045656 14.548076 13.309040 14.157170 13.329884 -6379 0.048945 0.049799 0.030654 0.037452 9.934519 8.206589 11.758760 9.611925 -6380 0.070889 0.064869 0.036652 0.027301 10.259873 9.019828 15.120581 10.266239 -6381 0.117669 0.111735 0.057075 0.045196 9.718425 8.756338 12.466353 12.299413 -6382 0.097632 0.082218 0.067443 0.043197 9.597388 9.522151 11.956109 11.525322 -6383 0.067555 0.056849 0.036286 0.028495 9.744024 9.680591 12.093110 11.350152 -6384 0.087953 0.094021 0.042258 0.051516 10.914557 8.130391 14.776590 11.573382 -6385 0.063689 0.052920 0.025257 0.037608 7.576345 6.444728 10.201473 9.328098 -6386 0.064736 0.041029 0.033868 0.023167 10.706877 10.931090 14.137167 16.318923 -6387 0.067785 0.055023 0.043641 0.032031 10.091578 8.640953 13.094979 11.324315 -6388 0.076911 0.051739 0.050521 0.027682 9.185657 10.508825 11.381776 9.178116 -6389 0.123734 0.079611 0.092589 0.060902 9.960540 8.906265 13.314636 12.898334 -6390 0.064854 0.059740 0.041398 0.032589 9.882119 10.123550 11.073888 12.646667 -6391 0.058289 0.054306 0.038109 0.041807 8.168870 9.426061 11.813372 10.994218 -6392 0.086621 0.089233 0.059051 0.087037 13.099744 11.887724 9.660099 10.183164 -6393 0.060620 0.053530 0.036079 0.033061 10.732096 9.027752 14.326923 13.124630 -6394 0.079045 0.063136 0.031557 0.038249 13.046901 11.707117 18.941770 20.845282 -6395 0.078578 0.084968 0.053709 0.047344 8.534944 10.099060 13.787461 11.960440 -6396 0.083523 0.063190 0.044671 0.036387 7.779560 8.301281 14.124690 14.365782 -6397 0.041657 0.045413 0.025876 0.013657 10.942258 7.240626 12.732620 10.641954 -6398 0.055084 0.040086 0.031870 0.033921 10.882900 10.700423 13.407813 12.828665 -6399 0.115953 0.077377 0.064851 0.041980 13.794272 12.594015 15.773242 13.067951 -6400 0.089052 0.071014 0.055071 0.041596 12.710082 12.417791 9.512407 12.900846 -6401 0.086205 0.063149 0.026268 0.028765 5.676274 5.607106 11.073245 12.233667 -6402 0.094142 0.065798 0.061022 0.046556 12.342480 9.639043 10.991723 13.079847 -6403 0.051448 0.045218 0.021276 0.019767 7.990315 9.308421 12.898024 11.331295 -6404 0.081849 0.055690 0.051946 0.039425 12.630154 10.776125 15.645648 11.553367 -6405 0.140253 0.112038 0.099671 0.062344 23.671711 19.185637 31.726894 26.932468 -6406 0.087226 0.064427 0.046139 0.034185 12.509971 9.504600 12.438757 10.965936 -6407 0.082316 0.050927 0.040617 0.025113 10.065634 10.343589 7.705900 8.470603 -6408 0.074397 0.050996 0.049793 0.028358 13.240764 8.683022 13.824215 9.451513 -6409 0.076925 0.073155 0.058638 0.065486 12.979248 11.484927 10.943818 10.720365 -6410 0.055726 0.050726 0.047027 0.039976 8.459465 8.612513 6.399284 7.449976 -6411 0.100049 0.078533 0.077134 0.044695 14.171732 11.659075 17.322700 15.032568 -6412 0.056463 0.043316 0.033273 0.033375 9.216227 6.997348 11.077854 8.046563 -6413 0.080037 0.067933 0.035017 0.035166 9.909770 8.434698 16.344164 16.725590 -6414 0.099203 0.086840 0.047078 0.051962 6.160344 6.171751 7.557529 8.161806 -6415 0.081271 0.075494 0.022636 0.036754 11.217129 10.239523 12.468419 12.247873 -6416 0.053361 0.044760 0.022582 0.025647 5.357338 6.752339 8.328027 7.962369 -6417 0.074569 0.087245 0.056174 0.066828 7.923057 9.558782 14.572437 13.625645 -6418 0.115868 0.089017 0.094701 0.047488 11.645821 8.830638 12.103995 11.976435 -6419 0.063693 0.050904 0.041361 0.030471 13.376428 10.776065 16.546051 12.284701 -6420 0.140126 0.111294 0.089452 0.062003 12.825499 11.517524 11.796502 11.438975 -6421 0.067298 0.074500 0.047391 0.027372 9.522476 9.066353 12.215833 8.105662 -6422 0.080944 0.057851 0.027851 0.017889 7.211214 7.780258 8.262802 7.194321 -6423 0.129804 0.108926 0.067774 0.075832 7.630721 6.895356 16.506014 16.641922 -6424 0.052333 0.051659 0.040468 0.033859 12.735028 7.890842 14.541458 9.263959 -6425 0.076931 0.076414 0.053384 0.054269 8.810429 8.631642 12.396470 10.636265 -6426 0.101141 0.080983 0.049579 0.041620 9.480487 9.157385 9.791159 9.147090 -6427 0.073066 0.077621 0.065209 0.064755 8.443874 8.968812 11.479749 10.531321 -6428 0.090069 0.065286 0.058695 0.045309 13.571102 10.899178 14.462463 13.273609 -6429 0.044798 0.044344 0.034743 0.045712 6.718090 7.741601 9.327886 9.003629 -6430 0.107195 0.085609 0.056928 0.049051 14.941073 8.194279 11.957177 8.411434 -6431 0.064438 0.047323 0.059409 0.042083 13.705902 10.927137 16.072093 13.779311 -6432 0.074530 0.066654 0.041070 0.037145 16.963711 12.690577 21.342756 14.999257 -6433 0.071415 0.048554 0.044919 0.029389 6.330604 4.720796 10.030823 8.336554 -6434 0.064611 0.071373 0.039047 0.034314 9.758048 10.300890 16.371819 13.861715 -6435 0.060238 0.054663 0.030717 0.027510 10.987233 9.503591 8.888410 8.946255 -6436 0.064978 0.061526 0.042709 0.035899 8.955520 9.069847 12.570347 11.827295 -6437 0.114626 0.112827 0.091236 0.062476 16.109471 12.257558 14.675714 11.631911 -6438 0.089279 0.093232 0.071565 0.077015 10.295394 12.228591 14.489630 13.159954 -6439 0.065378 0.057327 0.024017 0.025981 11.928704 7.673997 13.680075 7.520248 -6440 0.139316 0.115951 0.114286 0.087963 9.642009 7.730395 15.595669 9.559866 -6441 0.072553 0.072764 0.048999 0.049664 9.803618 8.424212 12.584332 11.945229 -6442 0.116241 0.093583 0.094574 0.051331 18.037675 16.141210 16.764971 17.421772 -6443 0.063660 0.072666 0.033610 0.040584 6.735671 5.850774 9.255805 8.924230 -6444 0.087921 0.103838 0.045628 0.032311 14.254166 11.462035 11.965496 10.108291 -6445 0.068059 0.067984 0.046380 0.046662 15.297476 12.892846 13.187253 10.587020 -6446 0.053642 0.039064 0.031624 0.018419 11.584368 8.673129 14.593145 9.335892 -6447 0.102440 0.084394 0.056239 0.030497 9.989148 8.130335 12.980846 9.300459 -6448 0.131234 0.091579 0.089765 0.044923 8.188999 8.166334 13.926254 13.299630 -6449 0.075068 0.058074 0.044854 0.031539 7.115046 7.692109 10.846512 10.087136 -6450 0.042708 0.049611 0.030645 0.029728 7.248368 6.415361 9.272382 9.659946 -6451 0.075487 0.086778 0.037199 0.050685 9.778821 9.999030 10.790587 10.419790 -6452 0.064790 0.051653 0.021589 0.021166 10.174745 7.822207 8.004022 7.242046 -6453 0.073302 0.068305 0.050157 0.046730 10.931618 10.181648 10.992203 9.976915 -6454 0.078331 0.062578 0.071987 0.045432 11.957497 11.882949 12.574375 10.051634 -6455 0.094359 0.053570 0.049688 0.045378 11.225834 11.166559 13.025956 13.813747 -6456 0.063597 0.047618 0.033937 0.021162 7.730975 7.898649 12.596924 12.020676 -6457 0.061649 0.049099 0.032307 0.028889 6.523312 5.999023 11.103996 9.845921 -6458 0.083611 0.068642 0.052295 0.039177 10.783975 7.413359 17.984857 14.751361 -6459 0.099040 0.049915 0.052543 0.039799 13.945225 10.589392 11.127297 10.881028 -6460 0.188521 0.136528 0.068493 0.042280 7.956065 7.352422 11.826914 9.579690 -6461 0.058718 0.039443 0.025012 0.014513 9.181428 6.475918 10.962213 9.063799 -6462 0.098069 0.085231 0.053200 0.037632 6.246568 5.323224 12.356948 8.636062 -6463 0.046836 0.052180 0.038285 0.031496 8.716688 6.742611 11.118978 12.529239 -6464 0.087841 0.082032 0.036647 0.032991 8.354518 8.456342 12.755541 11.428335 -6465 0.058895 0.095047 0.048404 0.075871 13.128585 8.398713 16.912947 14.295845 -6466 0.104401 0.078652 0.091178 0.074776 7.590551 8.612953 9.843598 10.982897 -6467 0.070524 0.049702 0.046341 0.061693 7.668016 6.365646 9.660394 7.638198 -6468 0.087577 0.052873 0.051163 0.029550 7.436889 7.129340 11.809419 9.438736 -6469 0.045648 0.042372 0.034441 0.023492 9.109097 8.365420 11.446559 10.484920 -6470 0.077334 0.062332 0.051741 0.048282 8.962248 7.009115 11.374338 10.917583 -6471 0.039867 0.045680 0.026993 0.035714 7.186432 8.018653 12.018269 11.410356 -6472 0.041875 0.037542 0.030950 0.024091 15.066098 11.405693 10.429942 7.133883 -6473 0.074530 0.061441 0.052123 0.030973 5.706735 6.927471 7.199089 6.799470 -6474 0.067148 0.050787 0.038391 0.029161 9.806968 8.995172 9.697639 9.144402 -6475 0.081285 0.061978 0.042806 0.031588 13.006263 9.711423 15.616665 13.368334 -6476 0.075706 0.073399 0.049257 0.051626 8.344140 8.100987 9.440225 8.121327 -6477 0.056929 0.037167 0.027383 0.021619 7.168768 6.677131 10.804676 10.094221 -6478 0.075937 0.081400 0.078092 0.068312 15.431107 12.837086 16.246565 13.703740 -6479 0.115415 0.096374 0.042189 0.050060 11.276356 9.352070 21.254306 17.990972 -6480 0.131524 0.086195 0.060342 0.035236 12.154520 10.475722 15.531348 12.442598 -6481 0.072229 0.070062 0.036598 0.033855 10.211652 8.892222 13.614845 11.782759 -6482 0.044498 0.041396 0.019072 0.018542 8.060977 6.799571 9.265286 8.420185 -6483 0.086703 0.068561 0.068291 0.064668 8.388858 8.145007 16.615676 13.513157 -6484 0.068755 0.072648 0.048068 0.042132 17.973826 11.347448 24.436202 15.397086 -6485 0.082860 0.055901 0.044538 0.036031 7.356141 8.175714 9.264397 8.381204 -6486 0.071202 0.061218 0.039939 0.033632 9.480306 7.948738 10.144191 7.838733 -6487 0.079714 0.061214 0.085053 0.046808 10.356339 7.907187 9.181115 8.410856 -6488 0.062109 0.066176 0.048326 0.044002 12.274975 9.363998 16.905920 14.796402 -6489 0.077793 0.070090 0.053348 0.039236 8.788115 7.537792 8.841315 7.665219 -6490 0.073940 0.058747 0.053730 0.038614 11.250717 10.029581 12.806434 13.023923 -6491 0.102333 0.085180 0.104679 0.094599 11.698335 7.448206 14.454824 9.521498 -6492 0.069708 0.067078 0.038944 0.035053 7.501981 7.064436 10.294332 10.478767 -6493 0.070449 0.060527 0.048711 0.028624 12.727758 10.114791 16.805842 12.769546 -6494 0.033963 0.029730 0.010317 0.011230 5.659804 3.957715 6.413689 5.452651 -6495 0.057256 0.032573 0.022660 0.012362 8.815311 8.648725 9.252890 7.244336 -6496 0.055825 0.035260 0.020358 0.014327 6.902228 6.674110 14.103765 15.161747 -6497 0.071138 0.065952 0.061223 0.051672 15.105199 11.558107 22.426460 17.088803 -6498 0.061323 0.074727 0.039886 0.040284 8.962724 7.569522 10.508452 11.583467 -6499 0.078480 0.086002 0.057273 0.041059 8.954158 5.849954 13.053181 8.820266 -6500 0.049192 0.052594 0.030598 0.033722 9.641734 7.374308 9.177532 8.428783 -6501 0.069152 0.051272 0.026177 0.021788 12.647857 9.219718 12.571696 11.942339 -6502 0.067638 0.047425 0.056133 0.035480 11.878199 10.268805 13.001012 13.633320 -6503 0.099215 0.085335 0.063031 0.053055 8.539251 7.208187 10.760684 10.211734 -6504 0.112430 0.086427 0.059093 0.041575 8.049871 6.014931 11.839634 11.104319 -6505 0.074258 0.054522 0.052438 0.044691 13.120191 11.716431 11.700108 11.684263 -6506 0.098618 0.093645 0.051130 0.035686 8.297344 6.925411 11.044239 9.793462 -6507 0.046134 0.040635 0.037629 0.032346 10.378991 9.402424 12.009790 8.774121 -6508 0.079431 0.068891 0.031242 0.030055 9.216574 8.145060 12.995947 11.661075 -6509 0.110709 0.097227 0.073250 0.076936 8.964586 9.003585 9.361080 9.943411 -6510 0.070537 0.053910 0.032311 0.026247 6.385927 10.016641 9.024615 9.849378 -6511 0.099514 0.096498 0.154908 0.104908 7.586404 8.367231 9.179035 11.435405 -6512 0.060080 0.092038 0.033644 0.049365 9.346525 9.424213 13.094439 11.053994 -6513 0.061476 0.053119 0.036204 0.022421 8.608510 6.262112 12.186988 10.204010 -6514 0.046317 0.039138 0.020171 0.014125 13.582986 12.584210 15.937959 14.471079 -6515 0.093728 0.071234 0.030127 0.020601 10.745388 9.284894 18.379568 15.798000 -6516 0.090293 0.108697 0.036010 0.054279 11.487122 6.617194 17.296918 14.587620 -6517 0.053416 0.037828 0.039291 0.016665 7.530832 8.221459 8.351911 6.956940 -6518 0.079823 0.059914 0.072304 0.046758 8.664147 6.856250 13.824215 11.230198 -6519 0.072922 0.057975 0.063941 0.046739 8.858601 9.892316 16.183387 16.594709 -6520 0.067369 0.055613 0.033532 0.036542 6.930084 6.201261 13.576766 13.987548 -6521 0.034349 0.034702 0.021951 0.027027 7.340840 7.743923 10.764793 11.560034 -6522 0.049698 0.044782 0.045989 0.026961 7.413779 7.547953 8.329386 8.114136 -6523 0.077330 0.082370 0.042088 0.046087 14.782720 12.990504 14.143433 12.401600 -6524 0.070716 0.060234 0.048124 0.029839 12.091156 11.004079 13.701307 11.662686 -6525 0.069922 0.073634 0.068959 0.050212 12.752956 10.797118 14.789251 9.755510 -6526 0.119196 0.101564 0.077983 0.072822 15.261994 13.940226 15.529765 15.488441 -6527 0.066885 0.043664 0.032915 0.022701 9.020071 8.265550 12.096931 12.571020 -6528 0.047682 0.047461 0.031097 0.031310 11.216136 10.928962 8.880092 8.345546 -6529 0.079106 0.052620 0.030531 0.024381 6.198020 6.776806 8.726320 8.182945 -6530 0.063709 0.079015 0.034665 0.036335 13.409765 12.345830 18.364554 16.734796 -6531 0.081784 0.065085 0.038115 0.034122 7.112612 6.358019 13.233991 10.581864 -6532 0.059195 0.037172 0.026655 0.015618 8.935354 8.655431 16.106174 15.314384 -6533 0.084934 0.067864 0.047811 0.048428 10.142306 8.652366 16.386115 14.176025 -6534 0.060425 0.051434 0.036102 0.036490 12.368401 11.578439 14.950928 12.061230 -6535 0.059577 0.052797 0.025440 0.015054 10.015200 7.618842 14.849909 11.027223 -6536 0.060411 0.054183 0.038907 0.026588 12.978565 9.702085 13.196646 8.998158 -6537 0.053951 0.055524 0.020918 0.020847 9.427994 7.571492 14.261025 11.245097 -6538 0.040142 0.029601 0.021894 0.019304 10.840197 9.156000 11.591184 12.409661 -6539 0.081128 0.077647 0.067071 0.047342 11.474919 8.876479 15.361293 11.951228 -6540 0.074725 0.070559 0.035233 0.033593 8.900435 6.843579 13.427473 10.796779 -6541 0.101251 0.106993 0.044292 0.056251 10.051562 9.502569 14.686106 10.940522 -6542 0.042919 0.029427 0.030925 0.017944 13.285367 13.919741 10.043347 10.833566 -6543 0.062770 0.057461 0.043576 0.035985 11.801895 9.980624 11.129716 11.049383 -6544 0.040231 0.056102 0.047274 0.027231 10.214341 9.565010 12.301282 13.258920 -6545 0.072720 0.073257 0.041970 0.038190 8.303791 7.735710 8.607597 11.874801 -6546 0.042283 0.039474 0.025232 0.023839 6.852543 6.111800 8.500561 7.838322 -6547 0.089562 0.094064 0.040925 0.027854 9.454321 6.750326 12.696530 8.512794 -6548 0.093243 0.108545 0.079908 0.054416 10.297292 12.479158 13.355152 13.514262 -6549 0.067599 0.066991 0.036747 0.024408 7.260903 8.209430 8.495458 8.741728 -6550 0.059785 0.052411 0.039349 0.051121 9.027720 10.429530 12.061612 9.687344 -6551 0.052723 0.053343 0.035602 0.049197 10.122778 7.692987 8.820310 6.017041 -6552 0.049148 0.057116 0.049923 0.049787 6.266004 6.690248 8.925930 10.259819 -6553 0.061221 0.052378 0.031562 0.019247 7.778040 7.537239 10.215519 8.653814 -6554 0.061889 0.056329 0.060522 0.051605 7.235012 7.236702 11.041159 11.382008 -6555 0.047240 0.047182 0.035508 0.028947 10.429284 7.306329 13.892524 11.655528 -6556 0.090384 0.066632 0.057203 0.037202 9.388422 8.404483 8.408344 8.878930 -6557 0.059444 0.048585 0.030424 0.026269 10.597625 10.581310 10.523034 8.747987 -6558 0.063025 0.056474 0.014754 0.016393 8.770810 8.513677 8.007727 9.037313 -6559 0.039833 0.033124 0.036277 0.034385 8.310548 7.859880 11.821632 9.678677 -6560 0.093083 0.063455 0.074073 0.044095 12.599060 10.778976 17.638801 12.697433 -6561 0.079074 0.076261 0.063130 0.066487 10.764246 9.925865 12.349947 11.434059 -6562 0.052791 0.036272 0.027239 0.020911 9.146369 9.691275 10.574345 11.213416 -6563 0.043813 0.051406 0.027477 0.030438 8.621316 8.189904 10.596470 7.959998 -6564 0.116754 0.089646 0.061703 0.057673 9.870083 8.844451 16.181763 13.158782 -6565 0.107455 0.084051 0.095811 0.067862 14.537007 11.761165 19.908849 15.491671 -6566 0.062171 0.050498 0.040750 0.048053 11.070634 9.374743 13.462836 12.688241 -6567 0.115861 0.095463 0.099297 0.085762 14.197493 10.079211 12.560206 11.542841 -6568 0.093351 0.065144 0.056894 0.052044 7.220946 7.241417 11.126763 11.983449 -6569 0.081481 0.107665 0.033189 0.039930 9.835328 9.204859 13.217711 12.655211 -6570 0.118069 0.100084 0.146728 0.110137 13.545988 11.828927 16.513512 15.022213 -6571 0.061245 0.062669 0.032910 0.035785 9.720654 8.882611 12.923411 8.918473 -6572 0.066393 0.054158 0.044164 0.046255 11.733460 11.837399 12.091312 13.161393 -6573 0.048835 0.031093 0.038008 0.018978 5.871763 5.301302 11.264199 9.425746 -6574 0.044027 0.055818 0.021414 0.021761 13.253216 8.718565 21.507799 14.109821 -6575 0.131327 0.101920 0.107797 0.053550 13.702940 9.393974 15.547313 12.969324 -6576 0.060844 0.052115 0.037902 0.039290 11.525488 9.989955 13.683534 13.899391 -6577 0.075644 0.063813 0.059053 0.053700 12.388544 10.087824 11.570382 10.921848 -6578 0.095238 0.067831 0.059657 0.042900 9.811925 9.670861 14.597792 12.261000 -6579 0.075401 0.081496 0.034909 0.041041 10.622620 8.651473 9.568461 7.617059 -6580 0.102183 0.077762 0.056299 0.040517 10.243443 8.528025 10.504005 9.660317 -6581 0.057719 0.046241 0.034856 0.026012 6.279418 6.242902 8.372317 9.596931 -6582 0.064479 0.060750 0.025323 0.018920 13.344272 9.248680 15.362640 10.957984 -6583 0.111132 0.096669 0.039885 0.042105 17.889513 11.962160 20.547566 16.429628 -6584 0.039873 0.038525 0.026376 0.020593 7.061628 6.827375 12.807456 12.517337 -6585 0.066078 0.053924 0.032535 0.029523 7.630713 6.016764 10.967227 9.736301 -6586 0.100531 0.089938 0.042085 0.039081 12.465457 9.321499 23.344847 16.697489 -6587 0.111302 0.088302 0.071311 0.051066 9.857919 7.836679 8.920586 7.990559 -6588 0.050683 0.056688 0.038702 0.036744 10.489650 7.586599 11.992803 9.205607 -6589 0.033764 0.029174 0.019052 0.016378 7.620578 6.639832 7.818763 7.237503 -6590 0.082805 0.063987 0.074379 0.048221 7.157574 6.763393 10.463202 7.820587 -6591 0.091465 0.096740 0.063985 0.056917 9.210435 7.357652 16.718696 14.539129 -6592 0.086883 0.051486 0.022226 0.018210 9.325173 6.503148 10.629710 7.613594 -6593 0.069736 0.066203 0.037250 0.044711 8.285524 7.910171 12.840941 11.169497 -6594 0.080651 0.070885 0.034855 0.032437 9.588963 8.076204 13.810228 12.845208 -6595 0.084439 0.072388 0.081618 0.064723 12.954465 10.711613 13.469697 11.949958 -6596 0.100635 0.067844 0.055830 0.036394 12.645223 8.539711 12.613940 8.972333 -6597 0.056619 0.049750 0.034001 0.022503 6.756333 6.317845 8.886093 9.020648 -6598 0.047934 0.040377 0.038931 0.030212 6.243040 5.465721 7.956801 6.493099 -6599 0.089353 0.090457 0.061208 0.064506 13.600676 12.686173 14.324844 15.216880 -6600 0.049816 0.061303 0.038938 0.043826 10.001774 8.475729 12.668816 10.156902 -6601 0.088755 0.057013 0.064105 0.034980 9.891264 7.635256 14.545817 11.746158 -6602 0.058120 0.052330 0.042397 0.031257 9.311635 7.314760 13.204773 10.244703 -6603 0.049688 0.053358 0.041634 0.039803 12.483199 9.435693 16.287679 12.837785 -6604 0.052056 0.061640 0.049657 0.049205 10.928362 11.267562 15.576066 14.768751 -6605 0.098144 0.078539 0.083885 0.055276 11.636735 10.211225 16.868443 14.323863 -6606 0.071440 0.072140 0.050350 0.061708 10.667871 8.251888 14.887356 12.130329 -6607 0.061709 0.045638 0.042256 0.033796 8.925936 8.811029 11.892861 9.948343 -6608 0.130537 0.093660 0.098577 0.064854 10.983452 10.663197 12.470190 13.304504 -6609 0.131213 0.091996 0.078150 0.061765 10.830632 8.595852 16.052594 11.925650 -6610 0.072101 0.066449 0.052389 0.031945 7.851812 10.187534 8.315004 8.912572 -6611 0.093433 0.088326 0.036327 0.021868 11.690915 11.310295 13.158866 11.283234 -6612 0.085345 0.090031 0.068133 0.063166 12.782679 11.181354 10.747035 10.613377 -6613 0.101273 0.083107 0.062353 0.066909 10.163080 10.772946 15.200019 15.491338 -6614 0.055372 0.050967 0.032379 0.017879 5.318152 6.536847 9.408135 9.680540 -6615 0.092192 0.065331 0.055658 0.041614 8.375974 9.049716 12.008045 11.426367 -6616 0.058689 0.055349 0.038058 0.022903 9.685021 8.251092 12.778434 10.107994 -6617 0.051266 0.053698 0.029497 0.024934 15.393518 11.581402 13.593844 12.817018 -6618 0.083628 0.068582 0.045902 0.035750 8.915027 6.247448 8.039652 6.267687 -6619 0.055731 0.064251 0.037144 0.034045 8.910616 9.857249 15.797547 12.166295 -6620 0.048030 0.041486 0.032764 0.030980 9.829585 7.446823 7.369004 6.732511 -6621 0.091225 0.072601 0.058141 0.060599 14.937825 9.479402 14.852768 11.465754 -6622 0.061932 0.064051 0.040968 0.050508 7.840272 7.161554 10.466032 10.494203 -6623 0.071135 0.077059 0.074044 0.047363 11.001154 12.096486 10.109378 11.550843 -6624 0.067041 0.050611 0.049253 0.029132 8.828230 6.478036 10.064685 8.760510 -6625 0.098587 0.091027 0.084205 0.045812 8.950360 8.456134 12.028861 12.226112 -6626 0.091776 0.081665 0.051884 0.039735 7.316514 5.289841 8.852039 7.617734 -6627 0.109919 0.095219 0.045922 0.058101 16.048715 12.132349 20.099357 18.823259 -6628 0.068148 0.072900 0.053443 0.038088 6.154445 5.929581 8.851302 8.458182 -6629 0.070860 0.058300 0.043970 0.027644 10.419453 8.957619 17.661156 12.487416 -6630 0.044422 0.045060 0.037295 0.028931 9.525858 9.562056 9.622411 10.632118 -6631 0.085983 0.057569 0.048924 0.025313 12.713315 10.601551 11.242283 11.811768 -6632 0.057926 0.063151 0.035092 0.031344 11.669567 12.815713 19.476518 15.551827 -6633 0.091329 0.098919 0.058716 0.069044 8.552227 6.918618 12.770422 10.301308 -6634 0.043153 0.049023 0.022893 0.026441 4.448982 4.258965 5.989015 4.915204 -6635 0.059641 0.052584 0.037481 0.033396 8.477126 5.264858 12.161641 8.272257 -6636 0.078914 0.068961 0.079552 0.061520 10.886529 8.446690 11.907670 9.485329 -6637 0.080974 0.104392 0.042826 0.034366 13.113586 12.062145 13.894195 10.262032 -6638 0.092474 0.069949 0.046160 0.040679 16.423774 14.598979 21.576663 17.834827 -6639 0.079241 0.045243 0.042569 0.037875 14.700480 14.300632 17.706363 16.238525 -6640 0.135384 0.104637 0.119740 0.085671 9.017730 9.492382 12.064318 12.115066 -6641 0.081863 0.073189 0.037880 0.046455 7.919640 7.252962 11.879345 12.093159 -6642 0.038949 0.041638 0.015261 0.017658 4.592953 5.100497 7.287305 7.334375 -6643 0.048825 0.052780 0.026117 0.030480 7.342001 5.697046 7.316573 10.105504 -6644 0.055439 0.050047 0.024416 0.025076 12.089196 7.945724 12.733575 13.054786 -6645 0.063819 0.058328 0.044071 0.043337 11.226450 9.715250 14.150018 16.387488 -6646 0.056193 0.034768 0.026033 0.020096 6.962476 5.528404 9.356688 8.270831 -6647 0.062813 0.038932 0.027009 0.014657 10.936814 8.699609 8.056957 8.240525 -6648 0.063490 0.057255 0.061154 0.037909 8.269661 7.421132 15.895467 12.750255 -6649 0.087498 0.109273 0.053915 0.074605 11.580998 9.208368 16.549059 11.129544 -6650 0.035891 0.034410 0.020175 0.014761 7.902177 7.717700 12.816920 8.205669 -6651 0.106050 0.094919 0.047071 0.045104 12.657694 9.356899 14.834876 13.371781 -6652 0.089321 0.067310 0.052540 0.043092 9.258377 7.022418 10.946860 8.552640 -6653 0.117445 0.102672 0.090179 0.088677 13.077342 12.924585 13.598735 12.924615 -6654 0.052348 0.066131 0.018033 0.031721 8.336678 7.930308 14.107402 10.629278 -6655 0.046575 0.040129 0.031597 0.033739 9.276992 7.759012 11.755082 7.537073 -6656 0.077209 0.078789 0.028033 0.035170 13.250631 13.404926 15.571312 16.164013 -6657 0.103156 0.069401 0.039304 0.043566 6.958174 7.285021 9.848217 8.530582 -6658 0.071912 0.061110 0.063947 0.068207 13.315488 10.379331 16.224939 10.581284 -6659 0.113178 0.072641 0.061337 0.039580 10.962008 8.199890 9.654491 10.356657 -6660 0.107191 0.084905 0.040508 0.037250 9.439782 10.578907 15.856315 18.501195 -6661 0.065071 0.077781 0.074349 0.077330 14.818576 7.962080 15.144040 13.416910 -6662 0.034333 0.040972 0.019883 0.018153 9.913986 8.242426 10.385927 6.960218 -6663 0.072097 0.045419 0.034683 0.031059 9.228179 7.591483 14.663429 10.114245 -6664 0.034309 0.026915 0.026251 0.025467 10.638364 9.128049 13.088934 9.222760 -6665 0.090851 0.086678 0.056780 0.038959 10.840445 9.824433 16.912025 14.478222 -6666 0.051111 0.038864 0.035913 0.020874 11.269519 10.646734 10.160995 10.262222 -6667 0.058605 0.057566 0.040511 0.027114 15.998543 10.446702 23.851403 14.920673 -6668 0.069252 0.084057 0.041111 0.058604 9.353062 7.447494 13.249509 12.605706 -6669 0.105720 0.079593 0.047888 0.035135 9.792348 9.281261 13.895233 14.315927 -6670 0.062321 0.072719 0.056864 0.050745 9.434732 11.129756 10.252119 10.585721 -6671 0.061846 0.061119 0.023153 0.019433 9.424101 7.548880 12.615316 11.812216 -6672 0.065946 0.042877 0.034917 0.027146 5.643258 4.796945 8.814632 6.267292 -6673 0.060719 0.050266 0.058029 0.032383 9.469013 9.240918 11.919671 13.294808 -6674 0.079262 0.056777 0.038871 0.033862 14.444349 12.266668 24.474464 20.438455 -6675 0.051121 0.038079 0.042660 0.025786 10.201562 8.121031 11.634983 9.594391 -6676 0.054606 0.048226 0.024634 0.015782 13.601421 11.083982 12.453657 9.144238 -6677 0.079994 0.065732 0.049030 0.042683 10.123509 8.509776 12.898808 12.873193 -6678 0.095485 0.090342 0.065678 0.048959 18.945275 13.107874 15.827615 10.921877 -6679 0.100841 0.073174 0.067855 0.031788 9.935010 7.384318 14.438191 9.997118 -6680 0.116733 0.083167 0.062114 0.053527 10.641763 7.255472 13.591143 12.270980 -6681 0.080896 0.098683 0.061322 0.059797 11.411538 9.854896 16.754111 14.313343 -6682 0.078406 0.052080 0.033603 0.030093 9.989017 8.158525 12.566279 11.433882 -6683 0.072922 0.068468 0.042474 0.037636 7.798796 7.724839 14.627556 16.408949 -6684 0.081625 0.077335 0.100335 0.055359 11.240459 11.275638 11.506209 12.249579 -6685 0.066225 0.058626 0.035243 0.023186 7.986532 6.049638 14.304042 11.471558 -6686 0.071928 0.053830 0.027498 0.024882 10.531684 7.970527 11.174360 8.981924 -6687 0.061768 0.048439 0.043424 0.018865 9.296989 8.774292 14.909233 11.852930 -6688 0.062722 0.045152 0.038466 0.025223 9.107419 8.424672 12.306654 13.201855 -6689 0.062911 0.056195 0.042433 0.042034 8.566340 6.785009 12.958455 8.682906 -6690 0.058266 0.048037 0.042097 0.035831 10.640027 10.459636 16.393718 14.022114 -6691 0.064030 0.059789 0.034412 0.040943 10.086537 6.556303 11.319575 11.179519 -6692 0.050603 0.037552 0.012181 0.013412 8.142237 5.682041 10.018452 9.027388 -6693 0.083112 0.074002 0.073945 0.049113 9.676891 8.300017 16.130787 11.073338 -6694 0.066336 0.047784 0.029003 0.017845 7.784963 7.444103 10.390667 9.101885 -6695 0.104964 0.072271 0.042895 0.035296 11.888467 11.418884 16.190534 16.000100 -6696 0.084719 0.071053 0.054325 0.037185 12.918013 9.717441 10.923331 8.923999 -6697 0.072521 0.067865 0.048255 0.033495 9.046831 8.180121 9.307085 10.170377 -6698 0.054155 0.048497 0.046278 0.037655 11.177492 8.155410 15.520774 11.748056 -6699 0.049344 0.054078 0.039616 0.026790 5.461523 7.012301 7.238519 6.565379 -6700 0.084723 0.061975 0.046332 0.037168 10.422541 7.338152 11.161054 11.237164 -6701 0.035343 0.038190 0.017810 0.020331 9.798598 8.687848 8.167250 7.983373 -6702 0.062635 0.081862 0.043499 0.049866 11.741020 8.747781 9.335212 7.737056 -6703 0.064359 0.065092 0.036241 0.034595 10.752680 12.767310 9.130021 9.778498 -6704 0.085834 0.063753 0.048013 0.032700 7.178513 7.794221 13.039245 11.225852 -6705 0.076302 0.068069 0.052154 0.030988 8.435939 9.975524 12.286512 13.642455 -6706 0.071112 0.056733 0.037037 0.033869 9.517186 7.448337 12.025082 8.666559 -6707 0.084533 0.048715 0.063536 0.035608 11.604570 9.699315 15.507763 13.155202 -6708 0.095190 0.090482 0.060268 0.066731 7.200119 5.558980 7.891278 8.786233 -6709 0.061561 0.059148 0.027943 0.025180 9.307935 7.909549 12.722497 10.443955 -6710 0.083376 0.076205 0.078128 0.050540 16.532439 12.130335 12.603395 10.894167 -6711 0.107782 0.077203 0.125177 0.091637 8.676165 6.955120 11.324979 10.006230 -6712 0.077949 0.077828 0.065307 0.045224 9.442695 9.513171 10.935884 11.438120 -6713 0.057007 0.038426 0.038612 0.021589 6.541646 4.874175 7.503968 5.826345 -6714 0.072285 0.056843 0.046939 0.032822 10.396762 8.512023 11.377240 9.464339 -6715 0.045036 0.042799 0.030629 0.023896 6.347728 6.840116 10.010704 9.826142 -6716 0.039432 0.041525 0.025176 0.016131 8.434000 8.445496 11.614469 8.987313 -6717 0.074441 0.063241 0.031429 0.025330 6.714035 6.692619 10.623068 8.963170 -6718 0.087150 0.060452 0.046786 0.037079 14.283005 11.661050 14.570620 14.009928 -6719 0.053062 0.047525 0.046248 0.028554 10.307168 10.849979 11.641442 12.700500 -6720 0.104559 0.070584 0.071920 0.053412 11.316913 7.638965 15.286492 11.476507 -6721 0.084134 0.064397 0.045797 0.044031 8.898857 7.114950 11.309048 9.931473 -6722 0.091741 0.079523 0.053730 0.044601 9.471926 10.805709 11.071850 13.100288 -6723 0.059277 0.057154 0.033730 0.019485 7.339083 6.630865 10.939853 7.995530 -6724 0.057533 0.046575 0.043126 0.033609 11.630640 9.695009 17.813860 16.404106 -6725 0.107726 0.077907 0.065246 0.042734 11.466197 9.871710 16.002953 15.143726 -6726 0.088267 0.106999 0.055662 0.064022 9.527511 8.442498 12.420629 12.069637 -6727 0.052522 0.050071 0.029293 0.031809 13.041308 13.026493 11.386098 11.187479 -6728 0.132707 0.088470 0.130623 0.071468 9.252386 7.177105 11.409360 10.165743 -6729 0.063431 0.068493 0.042388 0.038213 12.503404 9.642093 11.772565 11.149667 -6730 0.061492 0.075527 0.054601 0.050262 12.314011 10.320209 12.576810 11.985730 -6731 0.091918 0.090803 0.067342 0.054615 6.490662 5.871200 9.324221 7.433118 -6732 0.114019 0.099490 0.052186 0.039876 9.984554 8.508630 11.464928 12.924978 -6733 0.086203 0.083439 0.056744 0.050975 10.126144 8.128771 13.036797 11.444185 -6734 0.046062 0.044510 0.017757 0.019050 6.990895 6.711741 6.570021 7.428823 -6735 0.120282 0.079574 0.063702 0.029662 9.402415 12.081008 11.735906 10.788587 -6736 0.083955 0.062739 0.041708 0.031707 5.813060 6.223268 11.556815 9.273635 -6737 0.059224 0.063795 0.037229 0.045001 8.763659 7.958641 8.395690 9.742506 -6738 0.094745 0.071771 0.053208 0.034380 11.711426 13.833641 14.438981 13.469116 -6739 0.085091 0.066842 0.049318 0.044014 9.558454 8.059542 12.057200 13.126945 -6740 0.042853 0.048652 0.018952 0.014467 7.987596 6.254670 15.024173 10.586762 -6741 0.076879 0.068233 0.049235 0.033112 11.153253 8.904321 13.234593 9.288807 -6742 0.050595 0.051270 0.020821 0.022307 15.231707 12.996942 15.954768 10.789798 -6743 0.044995 0.038129 0.041655 0.037582 12.538161 10.363696 16.414166 16.398986 -6744 0.076429 0.077850 0.065231 0.043755 11.299779 9.866486 9.714683 8.966992 -6745 0.086303 0.061310 0.039640 0.027247 8.575433 10.691445 9.029871 11.146952 -6746 0.098051 0.087747 0.041369 0.052863 11.923939 7.805557 11.487949 8.256474 -6747 0.063769 0.055795 0.027825 0.016692 9.942631 6.798079 11.036458 7.572873 -6748 0.076872 0.088321 0.061793 0.050171 11.611900 10.901545 12.872163 10.297758 -6749 0.059142 0.053077 0.026008 0.024129 11.057718 7.247467 14.476577 10.711078 -6750 0.082523 0.073747 0.044241 0.032967 11.273842 8.604564 13.780407 10.757599 -6751 0.085820 0.073788 0.056284 0.077414 9.693360 6.057184 16.358207 9.535456 -6752 0.089667 0.053090 0.040704 0.028560 10.221491 10.969873 14.238256 13.186398 -6753 0.059415 0.048787 0.032085 0.031695 8.451875 6.751030 9.088117 7.371943 -6754 0.102383 0.087472 0.063884 0.036388 14.271560 14.721620 17.252999 15.078892 -6755 0.061247 0.061589 0.040475 0.049090 7.163791 4.518822 10.714982 8.417188 -6756 0.085467 0.065667 0.045195 0.038179 9.480117 7.893394 12.639053 11.193036 -6757 0.065959 0.072093 0.042103 0.054068 5.811118 4.108695 11.079230 7.990808 -6758 0.076030 0.070212 0.051591 0.048117 7.628623 9.222377 12.156404 11.934943 -6759 0.145774 0.095029 0.050989 0.040752 8.097911 10.323480 12.931972 13.622597 -6760 0.059528 0.045395 0.025670 0.030786 7.955339 7.086351 9.338012 9.594979 -6761 0.090514 0.100151 0.077667 0.069648 15.815495 13.994887 16.057270 14.151104 -6762 0.107464 0.099183 0.079014 0.112500 12.545654 9.350695 19.360897 14.664321 -6763 0.064980 0.048410 0.037132 0.030146 7.179726 6.342649 12.690089 10.926522 -6764 0.058770 0.039227 0.032352 0.024657 7.574287 6.975283 11.012636 8.426580 -6765 0.101331 0.096253 0.033400 0.026957 9.851869 7.054825 14.693227 9.741323 -6766 0.069882 0.067657 0.047721 0.033474 12.237995 6.791878 12.979612 9.527818 -6767 0.094954 0.076437 0.040768 0.041918 10.780569 9.934472 15.666552 13.551440 -6768 0.111386 0.100175 0.061528 0.057247 11.089830 9.862077 16.667720 14.553462 -6769 0.075023 0.063727 0.052838 0.044884 6.844249 7.289968 14.737205 17.545908 -6770 0.034191 0.023466 0.011398 0.007687 5.286827 5.599671 8.533525 6.906348 -6771 0.058681 0.056892 0.024101 0.026419 9.247219 11.448051 10.265046 11.267274 -6772 0.076691 0.069679 0.109735 0.084774 8.801273 9.345733 10.664039 8.054274 -6773 0.059767 0.054167 0.026874 0.026455 8.168652 6.159157 12.580793 10.566196 -6774 0.081400 0.082185 0.079424 0.054953 17.110357 14.518476 13.658412 12.808355 -6775 0.045261 0.038549 0.020845 0.012824 8.393437 7.844421 10.684926 8.980564 -6776 0.060182 0.050548 0.048467 0.038800 7.474968 6.501499 7.996531 8.679238 -6777 0.070680 0.063455 0.049313 0.044741 8.478510 7.176120 10.353167 9.329253 -6778 0.082748 0.061391 0.055934 0.033495 9.936116 8.203439 12.367856 9.819858 -6779 0.101949 0.083738 0.075552 0.055769 9.691161 8.148308 15.914888 14.450386 -6780 0.103244 0.101466 0.071529 0.078105 11.497420 7.319533 12.569995 10.254747 -6781 0.051359 0.047337 0.025943 0.033800 10.888803 8.359252 10.562393 7.021718 -6782 0.053115 0.050216 0.031127 0.026074 8.261503 8.528964 12.875365 13.547277 -6783 0.064737 0.068116 0.041564 0.040100 12.578355 11.129470 14.950773 14.362348 -6784 0.053531 0.059272 0.034611 0.039096 6.921309 5.385808 8.820684 7.628757 -6785 0.088073 0.077550 0.050689 0.045510 10.809284 8.717035 11.369517 9.639422 -6786 0.052138 0.050279 0.030016 0.042109 8.374388 8.391807 9.713523 10.524597 -6787 0.068987 0.052057 0.040267 0.024506 8.875440 9.449040 11.454137 10.720999 -6788 0.044000 0.049084 0.037221 0.026820 9.436842 9.483400 10.783392 9.801585 -6789 0.050553 0.039022 0.024589 0.025303 5.970629 5.415775 10.665211 12.481494 -6790 0.078235 0.073090 0.032159 0.033714 9.551752 11.060841 10.508310 10.985158 -6791 0.066548 0.064227 0.029130 0.038319 9.932167 10.227055 10.594594 8.778966 -6792 0.051439 0.050914 0.043832 0.045601 7.952968 6.551464 10.793493 9.235763 -6793 0.050239 0.037164 0.041847 0.030325 6.306564 5.693599 8.681440 8.371478 -6794 0.085841 0.072631 0.054088 0.045354 8.544750 9.101107 13.649484 11.449704 -6795 0.050399 0.051522 0.024847 0.030915 8.024701 7.806446 14.022323 14.568666 -6796 0.133917 0.079262 0.150780 0.082649 14.657524 12.803371 20.269279 16.764097 -6797 0.053920 0.046247 0.034742 0.050394 6.936176 6.544063 8.430596 7.786705 -6798 0.084402 0.071048 0.058028 0.057789 9.978411 10.651427 9.765779 9.745548 -6799 0.068694 0.075117 0.059686 0.069287 8.769958 8.329158 10.798720 8.511586 -6800 0.081577 0.068966 0.044824 0.030159 8.736223 8.123509 17.166864 14.807442 -6801 0.097560 0.106615 0.066459 0.052223 9.847095 8.583065 13.999775 11.011542 -6802 0.085149 0.093189 0.020957 0.024146 7.044856 7.728889 9.641233 10.396577 -6803 0.066625 0.049369 0.039570 0.026933 8.716082 8.672112 10.862645 9.415015 -6804 0.051119 0.057006 0.037457 0.052624 11.365750 14.071776 12.955898 15.258516 -6805 0.049976 0.036077 0.025367 0.016676 9.280270 6.766516 9.834771 8.640376 -6806 0.082261 0.082261 0.077454 0.051994 16.677521 13.464493 16.838823 13.812592 -6807 0.088937 0.072301 0.051705 0.040865 14.789446 13.009364 11.139133 15.104696 -6808 0.073341 0.079223 0.041289 0.044865 7.517375 7.295448 9.974708 10.458974 -6809 0.085657 0.043896 0.033572 0.018524 8.308540 8.654683 9.677662 9.046163 -6810 0.040020 0.033428 0.029640 0.015481 13.508965 8.941520 10.298187 9.204035 -6811 0.061303 0.064682 0.025597 0.019441 8.992713 8.046870 9.391129 8.048273 -6812 0.102376 0.105710 0.067931 0.068525 10.308965 10.917262 17.616930 15.643671 -6813 0.049820 0.035585 0.027362 0.026663 7.955037 6.974657 13.252804 10.925620 -6814 0.100127 0.067962 0.072121 0.053100 9.776941 8.867895 12.993273 10.684351 -6815 0.119548 0.100799 0.055359 0.062642 12.505115 11.987635 11.940968 11.209890 -6816 0.126963 0.075232 0.052444 0.021593 6.768387 6.272230 9.687763 9.122165 -6817 0.091667 0.089554 0.080560 0.063535 8.594888 8.470604 11.385966 8.460725 -6818 0.118838 0.138252 0.107022 0.110191 10.676023 8.488055 22.142083 17.792654 -6819 0.071046 0.078180 0.035550 0.033511 11.796452 11.127679 13.882626 16.214297 -6820 0.058148 0.041098 0.033324 0.020825 8.092178 7.144525 8.637158 8.361741 -6821 0.047070 0.046179 0.023666 0.028565 8.724021 6.737184 11.695039 8.804271 -6822 0.083209 0.085741 0.027742 0.023079 6.230637 7.809205 9.167658 9.424021 -6823 0.077165 0.079032 0.059429 0.061710 8.803070 8.587967 12.746585 12.975144 -6824 0.047548 0.039959 0.025974 0.023820 13.166563 12.835311 15.620320 14.623946 -6825 0.075846 0.067373 0.031734 0.028765 6.918086 5.797883 14.371754 10.887790 -6826 0.059778 0.040434 0.046472 0.033302 10.882015 8.949652 9.230053 10.110452 -6827 0.061824 0.060029 0.059210 0.027586 7.937490 6.487585 12.903458 10.996744 -6828 0.082268 0.063788 0.044528 0.035018 8.111928 7.112899 13.803378 9.318084 -6829 0.113437 0.074941 0.086791 0.049743 14.850222 13.411471 15.746762 14.764081 -6830 0.080236 0.068678 0.067960 0.046235 10.927974 7.711349 13.471911 11.024785 -6831 0.089973 0.067632 0.050542 0.037348 15.457596 10.446176 17.173165 11.138444 -6832 0.070511 0.052502 0.031781 0.029197 7.684536 7.726473 11.150004 12.942217 -6833 0.087666 0.070958 0.043484 0.046958 8.473354 7.812027 12.902732 8.599280 -6834 0.086447 0.072096 0.043143 0.040492 10.315910 9.713157 11.645587 12.607186 -6835 0.076750 0.061924 0.028901 0.027936 12.126187 8.462427 12.924934 10.730201 -6836 0.053818 0.063907 0.024199 0.028328 9.055919 9.766536 13.295933 14.768329 -6837 0.102326 0.085036 0.049948 0.054231 15.692476 11.650082 11.550944 11.129240 -6838 0.109493 0.103863 0.072054 0.051105 10.571386 9.590339 12.442045 10.638517 -6839 0.083051 0.064964 0.045418 0.027337 9.213959 8.458853 10.359776 7.908297 -6840 0.111074 0.089276 0.098394 0.069298 14.530855 11.101225 16.932671 14.014128 -6841 0.095914 0.048100 0.071667 0.035456 7.082778 5.985862 10.130619 9.365060 -6842 0.057284 0.065061 0.036698 0.025380 8.141615 5.913156 10.424691 7.322930 -6843 0.127246 0.114030 0.121646 0.100977 7.831424 7.810968 9.148270 10.118865 -6844 0.069807 0.050379 0.040268 0.027377 12.134164 11.981556 12.695029 11.226626 -6845 0.050150 0.040972 0.037819 0.029469 8.652924 9.249808 11.672319 11.914584 -6846 0.085419 0.070664 0.045600 0.042998 9.083194 9.416182 12.526886 11.279378 -6847 0.117457 0.075853 0.046295 0.029663 10.734700 9.040429 12.268809 10.432391 -6848 0.094344 0.082489 0.043542 0.058819 9.256500 8.011125 13.760342 9.370544 -6849 0.037895 0.038375 0.025325 0.017792 7.875216 7.243107 10.737126 8.823367 -6850 0.027096 0.031986 0.023355 0.020529 7.590469 6.041950 7.770763 7.906420 -6851 0.064202 0.069036 0.034082 0.031426 9.350370 8.528160 10.010876 10.266166 -6852 0.050570 0.054731 0.027886 0.028383 7.348888 7.660069 10.415546 10.095523 -6853 0.064299 0.077495 0.033630 0.036332 12.507858 10.645566 14.534430 10.642746 -6854 0.066653 0.066385 0.059784 0.036672 12.985957 9.711489 11.781724 10.377738 -6855 0.068090 0.062112 0.039604 0.034493 9.977234 8.867240 12.111191 12.870519 -6856 0.077283 0.061920 0.028131 0.020847 11.933277 9.566634 13.161480 11.078119 -6857 0.052502 0.048687 0.030168 0.026292 11.540453 10.547150 15.225236 14.969517 -6858 0.060228 0.059716 0.044451 0.033076 9.280055 7.066659 12.601522 15.270072 -6859 0.075735 0.052695 0.050702 0.045119 8.664881 8.616543 16.936748 13.342687 -6860 0.070643 0.070206 0.048640 0.032080 11.059215 7.799711 15.369796 15.196014 -6861 0.058437 0.051205 0.024976 0.037135 8.433690 8.684322 9.936247 8.178890 -6862 0.053111 0.041443 0.017654 0.014258 6.025506 4.914628 10.500249 6.906583 -6863 0.035382 0.041121 0.023913 0.031590 6.829824 5.972826 10.562198 9.812620 -6864 0.080863 0.074057 0.035721 0.028014 9.536371 8.230509 9.858277 9.631654 -6865 0.096046 0.098160 0.075183 0.072027 12.258682 10.755246 14.512099 12.000646 -6866 0.062424 0.081595 0.023513 0.029368 17.418682 10.924964 16.401422 15.019609 -6867 0.073368 0.064645 0.061941 0.044214 9.152701 10.003077 12.129063 11.254961 -6868 0.077882 0.077841 0.076465 0.058717 12.621044 10.930118 11.870850 11.039086 -6869 0.082839 0.057450 0.030878 0.027817 10.388827 8.147164 13.802029 11.037843 -6870 0.095781 0.091627 0.089471 0.041044 6.630515 5.953428 10.615730 11.963323 -6871 0.059106 0.047763 0.025755 0.016079 7.244982 5.378144 11.090521 10.807954 -6872 0.051387 0.052628 0.021460 0.018710 4.902436 5.338676 8.675644 7.348944 -6873 0.097985 0.086890 0.057463 0.039364 9.817111 7.037415 13.449100 8.501455 -6874 0.070623 0.067528 0.050269 0.044582 7.110915 7.130982 10.627510 9.455106 -6875 0.037891 0.029078 0.029323 0.017464 8.951774 9.596539 9.939298 9.219024 -6876 0.062637 0.054215 0.035818 0.034935 7.882557 7.823486 16.210561 13.974713 -6877 0.051457 0.054010 0.034375 0.045142 11.465395 9.684131 15.110267 14.791459 -6878 0.074211 0.061334 0.047471 0.039351 11.937192 11.677851 16.095162 14.894159 -6879 0.054910 0.066618 0.030947 0.029376 10.912608 10.660735 11.852624 12.855383 -6880 0.083098 0.068443 0.044509 0.031275 7.627811 6.967841 7.633886 7.600071 -6881 0.043489 0.042895 0.024946 0.015397 7.405909 6.920836 8.615787 8.263602 -6882 0.082790 0.081405 0.071428 0.054030 10.758731 9.181118 11.645372 11.205761 -6883 0.060537 0.050759 0.046274 0.038635 14.470660 12.682442 13.842207 14.404029 -6884 0.055166 0.046770 0.037242 0.034418 10.814875 9.598462 12.784612 8.787439 -6885 0.093723 0.067004 0.034986 0.042569 11.754575 12.787060 13.600555 13.916629 -6886 0.082103 0.054075 0.040208 0.027436 14.322509 11.033942 12.914430 11.640120 -6887 0.122109 0.107904 0.062512 0.047935 8.686535 7.961082 15.857806 14.364039 -6888 0.064458 0.055935 0.032596 0.024803 5.296224 5.477201 8.371066 6.406101 -6889 0.112649 0.105496 0.103064 0.083429 16.289757 17.037083 20.703346 20.088865 -6890 0.074382 0.071820 0.034315 0.039222 7.481643 5.087354 11.900082 9.199308 -6891 0.067974 0.050906 0.022022 0.019288 8.511782 7.464405 9.447543 6.900117 -6892 0.071050 0.051406 0.029303 0.031729 9.152489 9.776619 10.208911 8.698833 -6893 0.073334 0.067486 0.039301 0.038785 7.242217 5.229597 12.883994 9.140477 -6894 0.054921 0.062000 0.042599 0.038099 12.300885 12.001023 15.532347 11.797862 -6895 0.063194 0.038163 0.036289 0.021510 8.471743 7.937421 8.235364 6.312432 -6896 0.106896 0.069525 0.044024 0.049386 13.795359 10.835823 15.256922 11.255468 -6897 0.108582 0.088795 0.087334 0.042868 13.420513 8.659156 14.172805 11.219792 -6898 0.081622 0.050379 0.038810 0.035396 9.267021 11.120639 11.635191 10.263224 -6899 0.090118 0.091629 0.086813 0.064418 7.612002 6.783881 15.103497 13.198311 -6900 0.070041 0.062078 0.043432 0.028862 11.170072 9.999120 19.526038 13.692113 -6901 0.086730 0.066265 0.055446 0.029084 9.306543 6.459994 12.090673 7.745873 -6902 0.146169 0.098276 0.089802 0.072309 12.998615 10.461878 26.308594 22.354839 -6903 0.044959 0.045351 0.036148 0.029805 7.192059 6.090461 11.683727 7.980739 -6904 0.049996 0.035127 0.023900 0.018167 9.239905 8.870545 7.318072 6.838561 -6905 0.053009 0.055942 0.029332 0.030927 11.130886 10.914856 15.559469 13.040766 -6906 0.091329 0.078774 0.083888 0.059587 12.563365 10.509522 12.324787 10.769038 -6907 0.040065 0.042258 0.041336 0.033360 7.826775 8.798243 9.754908 9.112490 -6908 0.074509 0.063869 0.050640 0.048174 6.582424 6.095785 12.260670 10.249612 -6909 0.088129 0.074959 0.056703 0.051269 8.433137 7.770571 9.533860 8.159364 -6910 0.095743 0.081031 0.081352 0.092224 8.804566 8.395920 11.382797 10.689318 -6911 0.059545 0.040748 0.029527 0.021298 13.176768 8.618500 15.496557 9.491466 -6912 0.059880 0.055630 0.055565 0.042479 7.921532 8.355729 9.641876 9.151399 -6913 0.054943 0.041459 0.023368 0.024882 11.735771 8.387899 15.629814 13.971180 -6914 0.122038 0.080892 0.077826 0.043076 8.010296 6.142417 13.755880 10.699160 -6915 0.101522 0.087390 0.061754 0.044836 13.343455 9.253579 12.344463 11.905958 -6916 0.135202 0.097744 0.064346 0.055203 12.546699 9.714604 15.965149 16.227915 -6917 0.071201 0.058057 0.043017 0.047922 8.769776 8.224172 10.984078 11.855956 -6918 0.058243 0.057974 0.032146 0.026000 9.069320 8.493783 15.865643 12.526828 -6919 0.053876 0.044813 0.030006 0.021557 10.063887 8.629158 11.847616 8.500564 -6920 0.074582 0.058103 0.055434 0.040493 7.412452 8.671518 10.521853 10.280914 -6921 0.066765 0.059629 0.024340 0.027854 12.819705 11.720221 13.813623 12.612141 -6922 0.087379 0.056595 0.027360 0.017589 9.226096 6.666287 11.677270 11.225321 -6923 0.032632 0.029672 0.024194 0.026529 6.971922 5.928944 8.297108 6.289721 -6924 0.091237 0.075630 0.043379 0.027735 6.139187 5.755158 12.598087 10.243428 -6925 0.051117 0.041979 0.036367 0.032355 10.957620 9.840410 11.577098 9.800818 -6926 0.103502 0.095835 0.168490 0.153303 12.200785 10.743361 14.948232 12.739613 -6927 0.075362 0.050694 0.052861 0.040901 9.532640 7.296343 15.287620 10.206628 -6928 0.074466 0.054919 0.045691 0.024581 9.750205 6.698335 14.077604 11.344063 -6929 0.100331 0.095443 0.071130 0.055996 7.210309 5.547508 12.072274 11.452632 -6930 0.057943 0.055932 0.028373 0.038458 10.715724 7.410199 11.565404 10.885615 -6931 0.081146 0.086650 0.069700 0.064360 11.975489 9.731228 14.479063 10.863336 -6932 0.054111 0.052911 0.049158 0.039761 9.024989 9.375626 9.078574 9.208922 -6933 0.108113 0.126893 0.043189 0.052480 12.045797 8.304054 14.451825 10.555781 -6934 0.092697 0.072747 0.051034 0.037788 18.223486 16.449775 14.612388 13.751035 -6935 0.106354 0.073550 0.104408 0.060436 10.192578 8.195100 10.488530 8.244310 -6936 0.098437 0.083614 0.053969 0.046028 10.413299 13.572211 11.664651 13.655750 -6937 0.054775 0.051347 0.040085 0.024399 11.450935 9.583754 13.037608 10.081479 -6938 0.108654 0.106648 0.075504 0.061230 8.282949 8.666051 12.571690 13.394798 -6939 0.098413 0.098670 0.052130 0.060551 12.813018 10.807066 15.431067 14.508783 -6940 0.047886 0.037584 0.044257 0.023242 13.202052 13.236929 10.257071 10.236042 -6941 0.040379 0.041980 0.025015 0.016557 10.287358 6.893540 11.661175 10.114342 -6942 0.106745 0.066529 0.057194 0.046901 8.881649 7.525110 11.241863 9.165426 -6943 0.064955 0.058324 0.025348 0.018109 8.619241 8.785663 11.383020 10.379331 -6944 0.099913 0.070224 0.051875 0.041999 6.742624 6.285999 11.541429 7.506562 -6945 0.071464 0.058640 0.066533 0.034605 8.926802 8.128843 9.906515 9.241095 -6946 0.075098 0.085051 0.055332 0.061673 12.296689 9.675638 15.575292 14.108695 -6947 0.093504 0.053782 0.076551 0.029397 10.369835 10.589033 12.888972 10.893853 -6948 0.086804 0.060504 0.075670 0.047993 11.430225 10.161969 10.749191 9.565609 -6949 0.054578 0.043269 0.024512 0.015098 8.265747 6.964568 9.923668 7.405474 -6950 0.058576 0.064937 0.021782 0.016252 10.672142 7.035323 11.910705 11.601978 -6951 0.059801 0.085199 0.038610 0.038490 10.826603 9.072256 15.328537 10.337631 -6952 0.113203 0.095086 0.049151 0.040309 13.611115 14.268065 14.381030 16.428250 -6953 0.064270 0.046021 0.035475 0.030055 8.310136 8.546718 12.628250 11.986767 -6954 0.091398 0.079340 0.029636 0.025333 13.473293 10.094096 16.352647 14.586572 -6955 0.063758 0.052127 0.057255 0.025020 9.764848 7.019687 12.933242 11.613658 -6956 0.071028 0.064900 0.030475 0.028797 8.300340 7.642275 12.961031 14.001033 -6957 0.061928 0.087189 0.032015 0.052909 17.025709 11.862578 15.605897 9.873647 -6958 0.086423 0.049459 0.054786 0.031974 14.137141 12.095623 12.780385 11.798389 -6959 0.070646 0.062947 0.032541 0.019072 6.572552 6.113530 10.403057 8.452083 -6960 0.074225 0.070422 0.039623 0.034453 9.814596 9.910850 10.735704 10.445577 -6961 0.077508 0.058677 0.053141 0.038658 14.846359 15.263447 18.624395 13.332215 -6962 0.075611 0.052931 0.040529 0.022357 10.330926 8.389199 9.612560 8.980710 -6963 0.110120 0.126614 0.080412 0.100956 14.826211 8.830849 16.199114 14.180575 -6964 0.089669 0.074345 0.039706 0.039151 10.909266 10.405411 13.998911 14.058021 -6965 0.091217 0.059591 0.048699 0.026049 9.749191 8.437012 12.219804 11.145120 -6966 0.057823 0.063205 0.050525 0.041352 8.940550 6.368669 12.059019 9.202941 -6967 0.120743 0.113146 0.063188 0.056667 12.447213 11.178478 14.643777 12.207062 -6968 0.071134 0.053901 0.056655 0.036986 10.631768 10.189829 15.941042 16.154730 -6969 0.071267 0.069160 0.064620 0.062941 12.653285 10.070252 15.905804 14.379883 -6970 0.098013 0.084433 0.090475 0.066763 10.540199 10.131159 11.504270 11.738836 -6971 0.076350 0.071993 0.067371 0.046881 7.652319 6.121273 13.805997 11.511564 -6972 0.060453 0.048511 0.024214 0.022894 10.410856 8.157353 11.762533 10.045281 -6973 0.062986 0.051738 0.032670 0.034135 7.858697 8.477037 10.344592 10.132317 -6974 0.065923 0.058440 0.058083 0.037591 7.099757 8.491743 11.632165 11.206418 -6975 0.064419 0.057518 0.040758 0.025134 8.611989 6.932862 9.834818 8.981452 -6976 0.048473 0.065746 0.043659 0.049372 14.283193 10.125851 13.023718 9.600108 -6977 0.080164 0.060321 0.037332 0.036319 11.132940 8.223358 12.521978 11.486828 -6978 0.064105 0.066043 0.047501 0.038871 13.429769 10.359674 13.447720 11.998200 -6979 0.045260 0.039866 0.019705 0.027455 8.642508 7.712387 11.783220 8.599046 -6980 0.067967 0.061807 0.038129 0.045707 6.421021 6.286736 8.512671 7.584661 -6981 0.033880 0.033435 0.025718 0.025767 12.179037 8.446436 12.413943 10.456314 -6982 0.055919 0.059072 0.033305 0.021160 7.542584 6.163384 10.879487 11.167265 -6983 0.047210 0.056014 0.028524 0.027137 9.557621 8.035361 10.289783 11.809348 -6984 0.090065 0.063785 0.077717 0.058878 14.510322 13.690348 13.106591 12.329214 -6985 0.068513 0.073039 0.024205 0.028679 7.585921 7.831017 11.335358 11.995649 -6986 0.125674 0.119917 0.049747 0.042378 9.555847 8.029063 12.261379 10.484285 -6987 0.086253 0.076070 0.041185 0.054257 13.798682 8.595763 14.798303 11.288846 -6988 0.061856 0.057198 0.043771 0.023652 8.110460 5.389366 10.148575 7.747132 -6989 0.107694 0.084849 0.042921 0.039042 11.174927 9.943205 10.690556 10.101213 -6990 0.071851 0.072498 0.052927 0.038576 12.128414 9.038171 16.056566 12.381239 -6991 0.032193 0.034438 0.017608 0.019351 6.279415 5.059383 7.099609 5.785233 -6992 0.086741 0.072350 0.043416 0.030541 14.616199 10.101609 14.555117 13.764218 -6993 0.074480 0.052870 0.094613 0.072208 11.881416 10.131243 14.483520 12.276805 -6994 0.065005 0.052568 0.025081 0.026633 9.303937 8.412941 11.670018 10.532699 -6995 0.086087 0.065651 0.058663 0.041566 10.039486 9.488612 15.279724 14.898450 -6996 0.088634 0.075952 0.058125 0.067097 12.649457 10.896330 16.660873 14.719029 -6997 0.086631 0.067291 0.035369 0.022661 12.061984 9.321142 13.239886 10.969768 -6998 0.050274 0.060470 0.022720 0.028801 10.176876 7.630560 15.531726 12.176435 -6999 0.080051 0.054287 0.036995 0.025087 14.377909 12.427963 17.555014 11.605916 -7000 0.050467 0.047861 0.018945 0.030753 7.740818 6.589811 12.103741 10.980723 -7001 0.085217 0.049867 0.048686 0.044849 12.524203 10.806266 15.484326 15.284738 -7002 0.057521 0.060345 0.034450 0.039038 9.012660 7.543335 11.445246 9.527125 -7003 0.113602 0.097715 0.085949 0.075215 11.451709 11.855223 18.565447 14.823027 -7004 0.054552 0.040289 0.024654 0.016527 11.434398 10.696643 11.546134 12.583114 -7005 0.035633 0.029745 0.023998 0.018715 8.699442 6.663240 13.212532 9.898556 -7006 0.077113 0.071210 0.068728 0.048333 4.908026 3.917788 9.386548 7.551212 -7007 0.088222 0.075536 0.050372 0.030070 16.153447 12.345151 17.872709 14.964804 -7008 0.072374 0.086781 0.030354 0.032013 10.275512 9.787627 12.623057 10.099332 -7009 0.062583 0.057851 0.058348 0.042383 14.193985 13.074008 14.476644 15.531646 -7010 0.082088 0.069469 0.050165 0.051404 8.746582 6.745105 12.450953 8.725308 -7011 0.082933 0.072381 0.067390 0.042274 8.170745 7.370353 16.236824 10.207311 -7012 0.077319 0.067385 0.039864 0.030625 9.386249 8.534821 9.146882 8.789191 -7013 0.080398 0.094834 0.041543 0.040975 7.627382 7.433525 14.670862 10.621908 -7014 0.059218 0.058814 0.027210 0.025318 12.406677 8.742306 14.367708 11.673954 -7015 0.062716 0.069943 0.048011 0.033066 9.924491 9.552757 11.354064 10.194318 -7016 0.083913 0.080388 0.070825 0.057538 9.599881 9.087060 14.307121 11.105129 -7017 0.066629 0.073266 0.035644 0.020700 11.680896 9.521488 10.206270 9.766689 -7018 0.066583 0.050197 0.026324 0.021234 14.186358 15.477504 12.136326 11.785140 -7019 0.107207 0.087771 0.057420 0.042095 8.108578 7.156832 12.810512 11.475199 -7020 0.076322 0.067874 0.042815 0.042922 7.030347 7.733568 10.663333 9.814142 -7021 0.082621 0.090735 0.049588 0.064860 5.728456 5.323246 10.604535 8.276580 -7022 0.083612 0.066482 0.052265 0.036388 9.838728 9.532552 12.449522 12.480508 -7023 0.060748 0.063841 0.052651 0.047292 8.800644 7.176605 14.000015 11.021445 -7024 0.042095 0.043288 0.026573 0.019783 10.416234 8.246730 11.815694 9.527923 -7025 0.098410 0.069821 0.046142 0.042291 15.958827 13.085723 15.699101 13.180417 -7026 0.092467 0.068758 0.073583 0.059786 11.569053 10.696098 15.317551 14.054537 -7027 0.078374 0.064596 0.051440 0.033407 9.797678 8.896102 9.423303 10.563550 -7028 0.034836 0.033588 0.015284 0.014499 7.955706 6.563193 9.531575 7.251777 -7029 0.070130 0.070550 0.044714 0.037933 11.666553 8.951200 17.748985 10.608072 -7030 0.081386 0.053337 0.036933 0.022914 12.933452 12.711686 13.731001 11.752096 -7031 0.089508 0.076901 0.052720 0.053455 7.987953 7.492651 10.860920 8.338533 -7032 0.093031 0.096168 0.069239 0.069621 16.218368 19.058831 21.861732 21.283374 -7033 0.062522 0.071230 0.033263 0.033143 9.684156 7.930888 10.331201 10.076309 -7034 0.051012 0.045086 0.020300 0.020143 7.407351 7.551848 7.855600 8.346032 -7035 0.093147 0.079519 0.076230 0.063764 9.755390 8.454703 16.725254 14.318120 -7036 0.058986 0.050016 0.035220 0.023631 7.133751 7.120598 10.466437 8.505142 -7037 0.084275 0.093690 0.070245 0.066374 12.487318 12.156848 17.500835 19.407227 -7038 0.080127 0.051063 0.046435 0.037887 10.551477 9.034712 12.789691 13.014406 -7039 0.188482 0.129950 0.083253 0.069970 18.461714 17.152717 19.238435 19.360803 -7040 0.098196 0.103940 0.052183 0.039125 8.424594 6.839497 13.606878 12.337628 -7041 0.056063 0.047799 0.048184 0.049107 8.034714 7.149992 14.782792 11.075086 -7042 0.073688 0.064876 0.046154 0.037365 11.619235 13.056572 12.592888 13.181061 -7043 0.064809 0.059120 0.039760 0.036670 7.285683 7.027997 8.917783 7.862991 -7044 0.079354 0.070806 0.039537 0.030789 7.694200 6.162097 11.496612 10.765738 -7045 0.054334 0.035419 0.031247 0.022571 5.015485 4.487032 8.624686 7.907580 -7046 0.112592 0.081962 0.107792 0.071847 12.731648 9.626234 17.155331 13.656660 -7047 0.057743 0.049899 0.038480 0.020607 8.413852 7.087782 11.241463 9.033853 -7048 0.092617 0.077994 0.073710 0.059647 10.384912 8.491893 16.417522 10.353662 -7049 0.044415 0.040321 0.025028 0.025792 10.901384 9.235225 10.995069 9.692814 -7050 0.104991 0.080182 0.066188 0.037657 11.608056 9.578936 12.747220 11.392356 -7051 0.037778 0.038061 0.021521 0.019442 7.754235 9.033700 8.121060 7.889605 -7052 0.038231 0.034246 0.023468 0.031267 7.862577 6.680214 11.975405 10.541340 -7053 0.042160 0.031862 0.032644 0.023680 5.711594 5.084046 7.962086 7.981477 -7054 0.053643 0.036736 0.043045 0.035945 8.604646 10.652854 11.042799 12.065445 -7055 0.094014 0.078459 0.075736 0.040402 13.299703 13.080755 20.328624 15.897772 -7056 0.099149 0.091890 0.080213 0.063183 10.298743 10.631205 14.829022 13.678711 -7057 0.052351 0.040511 0.019890 0.016547 8.994147 5.670937 13.326973 9.147045 -7058 0.088549 0.069199 0.059158 0.043763 12.792700 11.068302 11.445932 9.239635 -7059 0.048852 0.039587 0.053338 0.030736 13.029716 10.579770 10.426104 8.352318 -7060 0.067596 0.066072 0.041871 0.040033 9.855677 8.546581 14.463355 13.556117 -7061 0.076874 0.048576 0.065430 0.025212 11.395152 10.069192 13.341861 11.576958 -7062 0.120097 0.084065 0.085133 0.064519 11.518826 10.052684 12.484635 10.564333 -7063 0.041281 0.042811 0.023481 0.021503 8.290183 7.028699 10.028387 9.943929 -7064 0.093829 0.079940 0.032664 0.028031 12.454906 9.325477 11.621668 9.277776 -7065 0.059260 0.052074 0.052299 0.039449 9.610222 9.066066 10.074902 7.806339 -7066 0.067589 0.050840 0.023201 0.013317 6.525585 5.559813 13.004257 8.823067 -7067 0.095493 0.073812 0.068442 0.045904 10.767417 7.625615 11.191733 7.774980 -7068 0.130056 0.097753 0.042790 0.031840 10.604274 7.336562 19.280660 13.091823 -7069 0.082957 0.067025 0.061677 0.039107 10.651385 7.645747 12.229285 9.576216 -7070 0.084383 0.070825 0.060737 0.061974 7.397444 6.659044 10.897385 10.363373 -7071 0.130503 0.083394 0.055570 0.036327 7.002687 6.179082 11.081566 7.302068 -7072 0.055052 0.042423 0.026435 0.022586 8.326837 7.041403 11.021660 8.149328 -7073 0.107259 0.077814 0.040325 0.029725 10.443701 8.859892 9.661948 10.273904 -7074 0.079896 0.085714 0.063922 0.051453 11.205350 10.915323 12.782306 12.291854 -7075 0.086203 0.074557 0.030513 0.028771 10.292039 8.920719 10.038822 11.441429 -7076 0.080794 0.064380 0.043391 0.030498 8.652536 8.220375 11.790494 10.697226 -7077 0.067839 0.071239 0.018032 0.018096 9.361652 9.878198 12.830920 12.460438 -7078 0.116105 0.096642 0.063420 0.049592 10.392693 7.012569 17.068997 14.110678 -7079 0.063205 0.053175 0.027746 0.041334 6.531022 5.778347 13.398679 10.991368 -7080 0.085908 0.062067 0.049622 0.041265 6.846367 6.752740 10.661877 9.635752 -7081 0.042722 0.036969 0.022902 0.019561 10.315326 7.572290 9.615029 7.782095 -7082 0.081653 0.063903 0.042904 0.026041 11.492727 12.139819 9.116051 9.566635 -7083 0.070576 0.066869 0.051657 0.043239 7.900667 6.120778 6.624540 6.670411 -7084 0.060775 0.054553 0.023575 0.023204 11.807549 10.267328 14.285480 12.145462 -7085 0.068701 0.083216 0.028802 0.044834 8.714376 7.996706 10.007024 7.061873 -7086 0.084080 0.059801 0.049410 0.032643 12.703630 8.459358 13.075893 7.864567 -7087 0.081993 0.050186 0.051145 0.031317 8.965753 7.102456 13.845398 8.708515 -7088 0.058063 0.046138 0.043243 0.034579 8.287668 10.020155 9.161428 9.357038 -7089 0.070162 0.047811 0.033800 0.027268 9.927356 7.061495 11.816656 8.299152 -7090 0.075601 0.061292 0.045025 0.034603 7.413285 5.910284 12.095205 11.054437 -7091 0.074101 0.050361 0.068623 0.039600 10.062169 9.458479 12.903425 13.919991 -7092 0.090365 0.073239 0.059262 0.049771 7.561184 7.770405 11.195372 12.270793 -7093 0.046485 0.053473 0.027640 0.023334 15.216830 13.287955 17.536321 16.200489 -7094 0.079913 0.068678 0.049890 0.030472 10.557726 8.797296 14.015424 9.903825 -7095 0.108402 0.083175 0.047231 0.035362 9.683040 9.045014 12.609460 14.470746 -7096 0.061655 0.059412 0.037455 0.021798 8.910378 7.404057 10.681618 7.113750 -7097 0.065135 0.067994 0.045308 0.041426 7.760668 5.408721 12.081140 8.517143 -7098 0.058884 0.056966 0.044685 0.028775 12.507985 8.918844 19.137625 14.537801 -7099 0.042270 0.038090 0.026945 0.018138 14.886231 12.021565 13.624882 12.494241 -7100 0.079794 0.059829 0.043041 0.042761 6.982372 5.524273 12.296759 8.334648 -7101 0.088087 0.080465 0.052628 0.043602 12.969677 10.983082 15.370165 12.610627 -7102 0.129462 0.087811 0.076917 0.052262 12.579022 11.478407 13.402449 10.541669 -7103 0.100277 0.059638 0.076739 0.036727 8.451109 8.780986 14.777751 13.388214 -7104 0.083488 0.075588 0.074663 0.068654 9.599000 8.162027 11.304527 8.997099 -7105 0.073965 0.062941 0.084072 0.043352 12.667916 10.636024 18.976837 18.067294 -7106 0.116093 0.124179 0.071376 0.078431 16.474356 12.321001 17.916097 17.577082 -7107 0.088488 0.109190 0.062416 0.035370 14.634111 10.812387 13.952682 10.258983 -7108 0.119883 0.115883 0.085331 0.050951 9.961768 10.929862 13.653139 13.841562 -7109 0.048249 0.041732 0.046378 0.026837 8.316333 6.508600 10.559743 8.895778 -7110 0.073942 0.052891 0.041609 0.028914 13.457687 9.343053 14.152469 10.650125 -7111 0.130640 0.060509 0.074935 0.054389 11.953519 11.612405 12.752570 12.752176 -7112 0.098375 0.063201 0.042736 0.030374 14.880154 10.457950 17.194041 14.703569 -7113 0.089886 0.067971 0.035702 0.027943 5.992642 6.116440 8.218147 9.690205 -7114 0.059937 0.060258 0.038142 0.030482 8.212908 6.485848 11.220242 8.487082 -7115 0.081166 0.046288 0.032042 0.026477 12.089915 10.078128 17.183469 16.495388 -7116 0.084813 0.051053 0.060535 0.029929 11.129378 10.501625 12.490060 10.196429 -7117 0.072588 0.067528 0.050188 0.042991 11.055980 11.714907 13.948227 16.217597 -7118 0.094659 0.079613 0.051034 0.044658 9.752174 9.876751 14.922582 15.941606 -7119 0.098316 0.082246 0.046879 0.045785 8.463042 6.913354 9.488043 8.167647 -7120 0.053502 0.052130 0.031568 0.034286 10.364135 9.271042 11.821896 11.390589 -7121 0.038012 0.043295 0.042261 0.053608 6.821053 5.893110 7.613127 7.893184 -7122 0.122965 0.106319 0.104687 0.057547 10.690930 8.571640 16.279072 14.272364 -7123 0.059318 0.064809 0.029020 0.029171 8.483858 8.812071 10.655352 10.762789 -7124 0.172363 0.119448 0.182547 0.106540 9.288085 9.582444 15.903056 14.613230 -7125 0.073803 0.074684 0.043471 0.031001 7.871135 6.438372 11.417116 8.735814 -7126 0.059709 0.047569 0.022981 0.017466 9.593749 6.897554 11.874206 9.667743 -7127 0.068843 0.057898 0.028160 0.016851 8.815827 6.385326 15.100647 10.680080 -7128 0.072166 0.077096 0.047699 0.066285 12.181033 10.555647 13.170729 11.999481 -7129 0.072948 0.058886 0.054351 0.038073 11.704135 8.625731 11.866316 11.626141 -7130 0.077292 0.052182 0.061654 0.039619 9.597161 8.848186 14.182145 10.843486 -7131 0.064268 0.046127 0.045546 0.027141 9.983842 6.756060 13.703663 10.792265 -7132 0.090029 0.061619 0.053330 0.043839 11.675328 8.978189 12.056604 11.765317 -7133 0.086956 0.078751 0.059606 0.053621 11.915564 12.507058 11.517585 13.185814 -7134 0.073761 0.079606 0.066568 0.048540 8.316259 7.693665 18.524496 16.326917 -7135 0.086649 0.077805 0.035962 0.037709 10.748132 8.793764 13.718908 9.357812 -7136 0.066168 0.064130 0.031153 0.027177 8.088473 7.975663 11.617990 9.789782 -7137 0.074710 0.053727 0.041958 0.031343 8.440756 7.062718 8.917287 9.315351 -7138 0.079188 0.069582 0.033804 0.028776 11.157276 9.320126 14.751816 11.057458 -7139 0.064370 0.068015 0.046056 0.039461 11.257953 8.599813 12.555485 11.710206 -7140 0.075002 0.071018 0.066862 0.046742 11.309633 8.681230 18.602039 12.506253 -7141 0.054291 0.053282 0.027184 0.028283 11.283363 9.388265 12.904019 9.887602 -7142 0.094390 0.102953 0.047227 0.053085 10.407397 9.636676 10.321279 9.516084 -7143 0.089230 0.075945 0.038354 0.048074 8.795108 10.949533 11.340989 15.038909 -7144 0.080515 0.070991 0.036822 0.025838 9.387998 7.260923 10.697786 9.033090 -7145 0.126295 0.088329 0.061573 0.048858 14.675575 12.520172 18.398379 14.809779 -7146 0.052462 0.050787 0.033105 0.023956 10.360307 8.039255 11.571221 9.291102 -7147 0.072436 0.076689 0.086559 0.045606 13.392679 9.808598 16.049333 10.877243 -7148 0.078162 0.065615 0.064513 0.051299 10.620466 9.435949 16.086112 17.176849 -7149 0.061201 0.040632 0.032853 0.020411 8.394855 8.524260 8.782430 10.044350 -7150 0.098959 0.106256 0.079094 0.052913 8.288391 7.571889 15.634191 9.939250 -7151 0.110762 0.122016 0.105137 0.098207 11.093046 14.905993 16.638207 15.211239 -7152 0.053475 0.076161 0.033592 0.041999 6.072813 5.282066 9.838199 9.213723 -7153 0.070151 0.048177 0.039623 0.027257 9.857736 8.706585 12.500276 10.565390 -7154 0.061298 0.054991 0.043649 0.034168 6.573544 7.941171 9.210399 8.195342 -7155 0.137797 0.124971 0.110449 0.083737 12.333081 10.406199 16.688688 15.912900 -7156 0.068556 0.053211 0.047969 0.043037 8.038313 6.023538 6.344267 6.192469 -7157 0.032689 0.038275 0.025499 0.029335 8.918938 6.348693 6.852253 6.111999 -7158 0.081530 0.080302 0.050795 0.037183 7.167027 7.182686 5.471088 5.470314 -7159 0.085101 0.091350 0.059544 0.050912 12.887895 10.490518 16.652464 18.254456 -7160 0.071417 0.065071 0.042175 0.037997 9.805434 8.113548 10.120166 10.210074 -7161 0.052523 0.068186 0.045610 0.045480 10.377784 12.292954 13.553927 11.603343 -7162 0.044194 0.038935 0.019581 0.015779 6.650408 6.791752 7.466796 7.974788 -7163 0.053139 0.051805 0.041396 0.037886 14.677165 10.924484 10.385827 8.305125 -7164 0.068726 0.057012 0.055427 0.049176 6.812300 5.892725 10.538888 9.440280 -7165 0.073862 0.055992 0.022512 0.022274 9.100435 6.509614 14.716517 10.986546 -7166 0.104266 0.070574 0.074422 0.053281 12.142053 11.361329 13.860984 10.303541 -7167 0.114039 0.095641 0.056734 0.062553 11.652616 10.798060 17.270236 14.183443 -7168 0.044998 0.032674 0.018979 0.011304 4.583969 5.195866 7.400425 6.991755 -7169 0.056602 0.058951 0.036397 0.022814 9.271547 7.475134 12.140930 11.122378 -7170 0.067342 0.063574 0.043099 0.028754 6.818239 5.741701 8.259782 7.204411 -7171 0.105583 0.104870 0.043540 0.046810 9.205975 12.137795 10.277904 15.862231 -7172 0.069671 0.056592 0.045936 0.033500 15.143106 15.249755 27.431547 22.738628 -7173 0.072937 0.077524 0.039520 0.031047 15.766640 13.751916 20.728413 13.116760 -7174 0.116497 0.073430 0.053362 0.047975 15.053337 10.878758 15.032147 11.771231 -7175 0.056078 0.048535 0.063048 0.027152 10.237589 8.816718 13.337674 13.266232 -7176 0.032350 0.029283 0.019407 0.017231 10.047580 9.389599 11.440903 9.695059 -7177 0.069119 0.052103 0.028702 0.025095 8.167049 8.488715 10.441899 10.282418 -7178 0.082068 0.092385 0.043147 0.054378 8.667393 7.585688 13.697922 12.792702 -7179 0.091909 0.090085 0.118002 0.093153 14.654554 11.788297 19.890050 16.871922 -7180 0.120637 0.092490 0.064494 0.042193 13.481878 12.163863 14.643071 13.376491 -7181 0.074070 0.067029 0.043376 0.033338 12.955179 11.107523 12.616943 11.480336 -7182 0.081745 0.093379 0.052101 0.063270 8.533363 7.660624 13.853359 14.101471 -7183 0.061326 0.057581 0.029637 0.023126 8.402067 7.498201 12.134624 9.180990 -7184 0.082532 0.055248 0.040781 0.036382 7.786351 8.023737 12.572936 10.674833 -7185 0.063924 0.056105 0.029734 0.023147 8.399572 7.890481 13.151475 10.522712 -7186 0.059129 0.061698 0.035590 0.028407 11.637838 9.474807 13.598003 15.275699 -7187 0.047522 0.039393 0.042983 0.033567 11.901637 8.628508 12.661882 10.457851 -7188 0.095893 0.073737 0.061148 0.061943 11.587493 11.153537 11.569598 11.769092 -7189 0.091399 0.062999 0.068977 0.045437 11.061447 11.038955 16.346465 14.331881 -7190 0.122438 0.116061 0.058990 0.055166 7.985814 7.171516 12.506819 10.158749 -7191 0.084508 0.081414 0.047834 0.048247 8.733094 7.155166 10.474882 10.431764 -7192 0.093718 0.080245 0.030747 0.024219 8.447583 7.696869 10.203728 10.022403 -7193 0.087012 0.065511 0.037717 0.027917 7.669796 7.255302 12.911065 10.741937 -7194 0.078582 0.066546 0.032859 0.032665 12.700268 9.715270 14.605320 13.122269 -7195 0.064072 0.060874 0.047120 0.045759 10.523467 12.363598 11.008789 12.239750 -7196 0.070240 0.068347 0.039606 0.041164 8.371983 5.893431 11.787995 9.867336 -7197 0.132379 0.100350 0.080735 0.066236 14.011471 10.318641 21.567666 17.608409 -7198 0.035921 0.041327 0.030259 0.030698 5.514454 5.387803 8.965417 7.405831 -7199 0.036399 0.041177 0.014918 0.013295 9.239864 7.368462 9.626947 10.574234 -7200 0.055031 0.042691 0.031870 0.030181 13.014206 10.437478 12.914760 12.642488 -7201 0.105040 0.104965 0.074854 0.054227 8.581909 7.220966 12.641169 8.328681 -7202 0.042300 0.050015 0.050215 0.034028 7.847246 6.763843 12.477599 8.631084 -7203 0.083826 0.089879 0.037888 0.067826 8.297678 6.461486 11.194374 15.281947 -7204 0.085573 0.105367 0.040891 0.045261 8.705940 7.952788 9.754938 8.342915 -7205 0.059456 0.063458 0.037704 0.033903 7.281781 7.618036 10.259368 9.416657 -7206 0.068010 0.058001 0.038971 0.037522 13.816345 8.747663 15.181317 12.072528 -7207 0.071477 0.061800 0.042686 0.045655 8.524338 7.806400 13.145573 11.931602 -7208 0.101492 0.099164 0.071081 0.052770 15.010948 12.744976 19.354880 19.834494 -7209 0.098106 0.088108 0.057655 0.045024 7.842693 6.675518 11.270388 10.542503 -7210 0.086785 0.080924 0.038152 0.035076 10.332820 7.890112 13.750741 10.938337 -7211 0.056367 0.035948 0.035688 0.034665 6.261206 7.384192 11.349311 11.316451 -7212 0.074516 0.078594 0.075497 0.073150 9.807646 8.724438 11.758512 9.304901 -7213 0.050618 0.045221 0.022467 0.014244 7.525428 5.260994 14.816777 10.560603 -7214 0.102404 0.092683 0.048398 0.051860 8.158137 7.148073 13.443717 10.649451 -7215 0.049021 0.043104 0.018797 0.018861 9.969585 8.675910 10.752853 8.621700 -7216 0.052363 0.049837 0.035208 0.029990 9.075619 8.210988 11.220837 8.882549 -7217 0.043868 0.035157 0.039457 0.024785 5.689051 5.976364 8.961388 8.805637 -7218 0.091696 0.078217 0.075255 0.067066 14.122779 10.012010 11.207874 6.893478 -7219 0.097277 0.071714 0.042187 0.042038 12.150679 11.775470 16.491737 15.829487 -7220 0.071308 0.055945 0.043782 0.038570 10.282849 9.331500 21.575998 16.666313 -7221 0.161889 0.130492 0.082961 0.048706 15.188941 14.239518 23.787704 23.190148 -7222 0.053782 0.046401 0.023742 0.025115 7.565142 6.340166 10.724035 9.774830 -7223 0.081654 0.103530 0.091919 0.087149 8.070487 10.186916 12.131577 12.567764 -7224 0.054847 0.036447 0.034162 0.018521 10.047512 7.668474 11.048321 8.288473 -7225 0.056922 0.047163 0.038878 0.037136 10.114414 8.335162 8.888087 7.529818 -7226 0.097394 0.067004 0.050954 0.063131 10.676128 8.598615 15.869849 11.578071 -7227 0.076655 0.056249 0.037144 0.030553 12.331969 9.278482 15.362761 12.233908 -7228 0.048785 0.052537 0.025702 0.028654 6.518624 5.574480 11.640385 9.336031 -7229 0.032092 0.037862 0.021520 0.028054 5.516723 5.399784 13.320225 8.563490 -7230 0.063323 0.054383 0.038517 0.036508 7.830849 4.353792 11.707420 8.286320 -7231 0.083748 0.061840 0.055914 0.041722 9.707800 10.874710 15.862916 16.307576 -7232 0.091234 0.074052 0.047164 0.037053 8.744928 8.222386 11.894453 10.664885 -7233 0.051698 0.040566 0.027418 0.019702 7.035795 6.926561 12.802381 11.934733 -7234 0.050368 0.042823 0.028451 0.021365 6.933933 5.392082 8.452757 5.971188 -7235 0.066784 0.055535 0.033004 0.038462 10.069869 11.077828 14.628313 13.581773 -7236 0.059756 0.061934 0.037322 0.031886 11.002153 7.557439 11.213280 8.208967 -7237 0.086304 0.055245 0.039999 0.023612 9.921753 10.180735 14.755366 12.701784 -7238 0.054572 0.041694 0.051384 0.039737 6.945200 6.350472 8.845652 8.359436 -7239 0.067139 0.063723 0.059747 0.057551 9.753224 8.067268 7.328318 7.677706 -7240 0.070627 0.058971 0.043041 0.048337 11.227474 10.241286 18.589146 14.549633 -7241 0.063302 0.055683 0.051345 0.030488 9.316271 7.467012 8.182237 8.788249 -7242 0.102341 0.073676 0.080997 0.059348 12.980821 12.333879 13.989145 10.840213 -7243 0.153682 0.134617 0.063485 0.052211 11.368530 10.609105 13.192974 12.150889 -7244 0.042429 0.047699 0.029113 0.025795 6.957659 7.887808 8.952169 7.778378 -7245 0.097413 0.093645 0.049436 0.044386 12.860256 12.655123 14.439279 12.624564 -7246 0.069110 0.082106 0.055961 0.047176 11.329882 9.594886 12.979108 11.690537 -7247 0.057514 0.057429 0.045704 0.062784 12.407712 10.053977 12.038904 12.441943 -7248 0.079592 0.070533 0.072468 0.055184 10.690782 9.601945 13.137621 9.066665 -7249 0.086315 0.071014 0.045690 0.043353 9.650357 7.003778 11.683120 11.499195 -7250 0.051816 0.044514 0.032531 0.034443 7.585154 7.609895 9.338489 7.960876 -7251 0.077182 0.059581 0.030914 0.027837 11.009810 11.869823 14.492286 14.326635 -7252 0.069042 0.057181 0.052925 0.040203 10.849637 11.025180 12.504781 13.312680 -7253 0.073320 0.078597 0.026916 0.044021 11.085984 11.993330 18.750045 19.619190 -7254 0.042130 0.046929 0.028741 0.025168 10.530292 8.045599 13.279966 12.395294 -7255 0.112044 0.079585 0.044485 0.024847 8.284397 7.107956 11.581756 9.494908 -7256 0.078962 0.063624 0.060911 0.052106 11.363711 9.120328 15.517557 13.184824 -7257 0.105426 0.117835 0.088003 0.098737 14.610971 14.094037 15.084177 15.889589 -7258 0.056523 0.070578 0.035617 0.038935 10.446203 8.241453 11.999674 10.397208 -7259 0.074881 0.041793 0.046812 0.027437 10.754005 8.195784 12.813741 10.565387 -7260 0.127023 0.097620 0.063276 0.053534 9.288926 9.506016 12.106620 18.467752 -7261 0.107013 0.081217 0.048190 0.036114 6.296130 5.829485 9.834176 9.775216 -7262 0.086145 0.075513 0.041675 0.036361 11.422731 9.874412 10.565109 8.790172 -7263 0.064717 0.047330 0.060195 0.039821 8.822659 9.599857 12.434483 13.265592 -7264 0.107569 0.079499 0.067168 0.046474 16.068601 10.144969 18.652711 14.919138 -7265 0.075001 0.043873 0.026129 0.022983 7.759963 9.225807 13.701048 14.393810 -7266 0.059358 0.041673 0.056003 0.034533 9.769515 8.808965 11.480976 9.009481 -7267 0.093049 0.073130 0.065142 0.048317 10.425846 8.392613 9.876852 9.286853 -7268 0.097903 0.073529 0.070365 0.048447 8.757933 9.166749 14.608011 14.699852 -7269 0.106049 0.084428 0.056823 0.048320 8.719070 5.809704 15.275031 11.997605 -7270 0.097202 0.079522 0.056901 0.023736 11.153050 7.446413 13.038348 9.372685 -7271 0.075140 0.065027 0.026302 0.017040 6.958083 5.412545 8.541658 7.845717 -7272 0.082402 0.075615 0.063251 0.056534 10.602033 9.605320 12.666136 13.245248 -7273 0.061814 0.047178 0.029127 0.024264 6.240436 4.831751 9.327017 7.609266 -7274 0.055990 0.052281 0.021892 0.021257 10.041145 11.584850 10.707853 10.373030 -7275 0.041948 0.042040 0.022320 0.027093 12.779586 12.960405 11.132198 9.479117 -7276 0.126126 0.124370 0.043120 0.044271 5.915252 6.405287 8.207672 9.047032 -7277 0.125244 0.085748 0.074162 0.066980 11.619521 9.336507 15.952787 15.898904 -7278 0.084590 0.074075 0.036397 0.037587 7.544728 7.147457 10.184735 9.411196 -7279 0.055167 0.044786 0.028917 0.019346 8.471881 8.889851 12.290907 12.242569 -7280 0.068760 0.072846 0.041257 0.026688 7.054206 6.810722 11.498942 11.636916 -7281 0.065482 0.048445 0.040407 0.022962 10.137576 10.520158 17.184148 10.495809 -7282 0.094025 0.077909 0.074189 0.053754 17.459192 12.324789 20.045714 13.797606 -7283 0.056932 0.053774 0.031479 0.033726 8.853790 7.643079 12.988774 9.022336 -7284 0.052406 0.040348 0.033438 0.023965 9.289771 9.336860 12.242899 12.702409 -7285 0.083180 0.064088 0.041706 0.032889 11.202271 9.789598 10.797043 8.465920 -7286 0.127749 0.119082 0.084493 0.055450 11.178386 8.741229 12.844113 14.023318 -7287 0.083697 0.083528 0.051414 0.059592 11.768431 10.003917 14.737215 13.459715 -7288 0.102264 0.080534 0.075264 0.036477 9.314256 8.345133 11.835971 10.955975 -7289 0.069583 0.083981 0.047632 0.046604 10.484108 8.326694 15.943530 13.554436 -7290 0.059009 0.053196 0.036000 0.028294 11.751217 8.957714 12.421572 9.304589 -7291 0.059980 0.042123 0.028463 0.036436 9.210540 8.735930 12.758930 13.208919 -7292 0.084888 0.080317 0.062527 0.063337 10.088489 8.921051 18.130491 13.780629 -7293 0.111015 0.090445 0.034935 0.030317 12.518835 7.119863 17.291424 10.535781 -7294 0.070735 0.091679 0.050358 0.052231 10.097267 9.450959 10.792952 9.605803 -7295 0.093094 0.091219 0.059354 0.046722 15.223330 13.562585 14.341176 14.239244 -7296 0.073012 0.044704 0.041665 0.031045 6.604464 9.666685 8.974359 9.033589 -7297 0.078435 0.069448 0.040678 0.031799 10.617835 6.931760 13.600393 9.890499 -7298 0.064966 0.055716 0.050787 0.051317 12.373840 9.896021 13.947640 11.038788 -7299 0.066740 0.044228 0.040358 0.037503 6.978786 7.476929 7.647280 6.527829 -7300 0.054613 0.035823 0.033029 0.031567 11.815474 9.434124 11.608148 9.346913 -7301 0.066038 0.041248 0.045182 0.022516 8.382342 7.710713 11.552567 9.828789 -7302 0.105219 0.086931 0.065224 0.072499 13.228140 12.016435 14.830925 15.129161 -7303 0.106422 0.098052 0.053380 0.048356 10.774066 7.580929 10.137184 9.652730 -7304 0.071602 0.068146 0.039786 0.035902 8.813607 6.415629 9.514969 7.841611 -7305 0.079209 0.058145 0.032604 0.015566 6.357635 8.029990 6.907838 8.994112 -7306 0.055327 0.049449 0.049309 0.042628 10.480735 10.208784 19.859604 16.613144 -7307 0.081260 0.056480 0.065684 0.042551 11.349797 10.684754 14.959072 15.320278 -7308 0.063060 0.042647 0.057328 0.041905 10.653386 10.338525 12.936597 15.296221 -7309 0.105372 0.089871 0.046881 0.039316 6.905377 6.931153 17.557764 14.458245 -7310 0.072319 0.062453 0.029219 0.020128 11.309079 8.723376 13.569473 9.972883 -7311 0.077432 0.073583 0.032573 0.025849 7.710529 6.842320 9.785306 8.696354 -7312 0.071764 0.076093 0.048904 0.056342 10.845561 11.712670 14.771277 17.250274 -7313 0.060011 0.031342 0.034311 0.021078 8.919063 7.525089 11.641139 9.404813 -7314 0.113752 0.111302 0.084598 0.067141 8.979793 6.012603 12.221561 11.504336 -7315 0.113852 0.096406 0.053299 0.046847 13.581873 12.302153 17.645454 14.633406 -7316 0.110457 0.109182 0.078980 0.057286 10.261346 10.903730 10.858082 9.328908 -7317 0.063185 0.063952 0.037554 0.032542 9.362536 13.075124 15.365069 18.478667 -7318 0.088385 0.066762 0.034760 0.022673 6.291916 6.907587 11.683048 9.510477 -7319 0.121706 0.067029 0.082973 0.039134 11.048617 9.958706 11.487958 10.054459 -7320 0.066094 0.053649 0.024948 0.027938 6.605238 6.784975 7.078029 8.656389 -7321 0.118293 0.108408 0.123865 0.092539 11.434779 11.151025 12.426059 12.503579 -7322 0.079482 0.047365 0.041397 0.023072 10.515580 9.687504 24.009172 20.152873 -7323 0.057429 0.065450 0.038371 0.043489 8.047568 7.436816 9.787350 8.486714 -7324 0.063082 0.053515 0.023888 0.023148 7.547267 6.295256 14.086831 10.437909 -7325 0.060238 0.059775 0.047413 0.067711 12.431462 9.794073 12.131879 11.954895 -7326 0.078005 0.061420 0.028962 0.021824 6.328946 5.011890 12.448448 9.662362 -7327 0.086546 0.077860 0.030295 0.025909 5.667604 6.596617 9.720900 8.802158 -7328 0.038055 0.033892 0.041098 0.022955 8.946639 7.538716 7.625120 6.533685 -7329 0.043815 0.034029 0.027202 0.013774 8.062264 7.412416 15.291186 14.813239 -7330 0.070930 0.060752 0.056053 0.038008 10.275769 8.291830 10.538296 8.425594 -7331 0.066009 0.057853 0.040670 0.040455 7.187203 6.040586 7.977584 5.502886 -7332 0.073015 0.065981 0.037573 0.029359 7.393692 6.893863 11.105185 9.556727 -7333 0.082748 0.077426 0.037920 0.025024 9.983209 6.380952 15.399421 13.534207 -7334 0.050653 0.042146 0.028590 0.018841 5.812989 4.481327 10.431944 9.529076 -7335 0.056871 0.043965 0.033499 0.032154 10.563998 11.023182 16.289217 15.093424 -7336 0.065689 0.068390 0.034663 0.035140 9.100338 9.335639 11.481262 10.255007 -7337 0.081392 0.062192 0.072771 0.060132 16.639042 12.066596 17.316190 16.095664 -7338 0.070805 0.061129 0.065637 0.026651 10.281209 7.471285 11.362471 9.246242 -7339 0.090946 0.063656 0.036006 0.028342 9.909255 9.963475 10.263670 8.780626 -7340 0.032297 0.038971 0.038524 0.032140 13.028892 9.305274 13.404159 9.929706 -7341 0.090881 0.068257 0.055266 0.047134 8.077255 7.917007 18.129401 13.623924 -7342 0.063537 0.046494 0.049272 0.030142 10.941730 9.081587 12.076908 14.250113 -7343 0.073880 0.064140 0.046472 0.043312 7.232175 6.513222 13.689879 12.012010 -7344 0.035450 0.027915 0.024019 0.013482 6.241060 5.895013 9.883085 8.835051 -7345 0.063698 0.080364 0.059170 0.053388 9.325532 7.084292 13.326515 9.808865 -7346 0.083087 0.072820 0.042299 0.037660 10.501445 10.256020 12.586636 10.475709 -7347 0.049474 0.044138 0.061442 0.054460 9.633414 9.131281 19.800048 16.416593 -7348 0.056919 0.039784 0.037082 0.021788 8.467771 6.187338 13.602338 11.134009 -7349 0.082897 0.063705 0.033520 0.020258 13.358776 11.086067 11.107777 11.110249 -7350 0.077941 0.095119 0.048242 0.048024 15.461815 12.861199 17.182213 15.016078 -7351 0.081150 0.075096 0.060079 0.060694 12.076364 12.696224 13.841853 19.519692 -7352 0.077323 0.048039 0.056993 0.041149 9.819191 10.034883 11.739745 13.317625 -7353 0.066892 0.071059 0.033269 0.039963 8.806290 9.997144 13.096287 15.373754 -7354 0.069177 0.050760 0.028562 0.024697 11.280693 7.929798 15.834260 13.515991 -7355 0.076188 0.062440 0.047489 0.028307 6.950052 6.708416 11.467558 10.970502 -7356 0.063756 0.045202 0.044006 0.019080 8.842440 9.638565 12.418960 10.693288 -7357 0.068216 0.079134 0.042861 0.049234 10.471810 10.073618 14.052179 9.873712 -7358 0.085880 0.076425 0.058860 0.055021 13.755697 12.180646 14.836047 12.293295 -7359 0.085575 0.058243 0.056408 0.035498 10.042156 10.278033 9.907343 12.788551 -7360 0.067048 0.071282 0.046587 0.037004 8.673047 7.763658 15.307970 12.107272 -7361 0.120127 0.135779 0.080727 0.068514 15.552249 13.227012 16.753803 16.070439 -7362 0.043852 0.034911 0.047684 0.042237 9.209215 8.641898 13.280000 13.220313 -7363 0.047269 0.042819 0.028983 0.025290 12.006810 13.106280 15.299129 13.737981 -7364 0.119747 0.073245 0.075085 0.050200 8.240359 8.572071 8.643780 9.290680 -7365 0.053481 0.054758 0.035087 0.043914 11.983367 11.014772 18.995545 11.549237 -7366 0.067048 0.074504 0.079797 0.070188 15.884163 12.022277 21.181659 17.753276 -7367 0.096835 0.101380 0.043055 0.068328 8.524216 6.935760 10.624467 9.369519 -7368 0.076296 0.074520 0.067542 0.043797 7.112522 7.185564 12.732440 13.006249 -7369 0.066970 0.071080 0.040093 0.026536 10.254091 7.616263 9.542287 8.661604 -7370 0.038365 0.049503 0.023148 0.032505 10.109754 7.608826 10.950975 7.061828 -7371 0.047973 0.040939 0.021408 0.025572 11.779464 9.307622 10.116485 11.041906 -7372 0.175015 0.135980 0.177327 0.092442 13.840155 12.000024 19.469194 14.775717 -7373 0.103702 0.095309 0.057759 0.046363 10.874387 10.418746 13.642294 13.753392 -7374 0.098247 0.108677 0.086136 0.072112 11.432290 10.617794 15.532537 11.966395 -7375 0.040660 0.041127 0.015281 0.011746 10.724025 10.586344 13.776656 15.798632 -7376 0.147375 0.105054 0.094302 0.067865 12.353926 11.479534 17.450262 17.911043 -7377 0.078442 0.070067 0.036147 0.032299 12.673495 9.561905 16.063793 13.855746 -7378 0.052163 0.069135 0.019771 0.026724 8.866099 7.928312 13.315726 12.162765 -7379 0.046729 0.038911 0.034697 0.023760 9.064263 6.472871 10.488839 11.345059 -7380 0.070241 0.066280 0.027204 0.027043 10.530846 7.238951 23.028037 15.732840 -7381 0.102631 0.075430 0.060235 0.042836 11.492018 9.092616 14.253841 13.828556 -7382 0.065197 0.064977 0.042536 0.031769 12.031856 8.595854 16.410128 13.592446 -7383 0.068835 0.061573 0.055875 0.042278 10.683417 8.680021 9.735121 9.611806 -7384 0.113846 0.105661 0.079432 0.096948 12.881512 8.383679 12.905395 10.189741 -7385 0.051224 0.046483 0.039559 0.021364 6.130020 5.449797 7.392255 6.976615 -7386 0.088085 0.075387 0.038997 0.035567 10.151999 8.463177 13.005738 10.071710 -7387 0.086293 0.066354 0.044517 0.041277 7.577097 6.706666 14.007260 10.332687 -7388 0.073814 0.055923 0.053070 0.035338 6.375808 7.492934 8.901813 9.233113 -7389 0.093209 0.090245 0.080294 0.050624 8.356778 7.139532 13.473530 10.921805 -7390 0.081174 0.046158 0.044073 0.019049 9.724543 8.421244 11.541874 9.914693 -7391 0.078229 0.081010 0.057659 0.035101 11.574732 8.006375 12.281472 9.121424 -7392 0.082846 0.072530 0.067277 0.031045 14.196224 11.409756 16.717241 12.698352 -7393 0.066029 0.056193 0.036872 0.032752 11.032902 11.958087 11.293521 10.694773 -7394 0.057929 0.045718 0.033125 0.027560 5.509568 5.826315 10.375086 8.810944 -7395 0.065809 0.075286 0.051374 0.040976 12.303208 16.808372 13.865228 15.806366 -7396 0.081915 0.073805 0.060885 0.033697 9.976874 7.236074 13.457185 10.258849 -7397 0.083496 0.080342 0.057800 0.056875 11.342084 10.682956 13.700740 14.077237 -7398 0.070837 0.062932 0.030216 0.030801 7.596006 6.509135 8.080141 7.608395 -7399 0.074855 0.055337 0.061401 0.036338 9.972852 9.282264 13.524300 9.251726 -7400 0.064865 0.057037 0.035807 0.042586 8.282191 8.794214 9.863368 9.907925 -7401 0.117473 0.077299 0.074434 0.040504 13.236359 14.045268 15.865226 16.376547 -7402 0.059577 0.054140 0.020691 0.020807 8.795454 6.967421 13.170131 10.152614 -7403 0.054391 0.054030 0.058665 0.049517 9.590751 12.480132 11.697973 14.039044 -7404 0.068430 0.059542 0.054077 0.033633 14.115494 10.048965 18.217293 13.495113 -7405 0.061308 0.057181 0.035854 0.033904 9.807049 8.356429 14.188766 13.740877 -7406 0.133745 0.087416 0.115215 0.057403 11.696278 9.933511 16.812430 13.981050 -7407 0.086584 0.060425 0.044687 0.045057 9.777791 8.188930 11.801068 9.702795 -7408 0.089397 0.085497 0.040154 0.039238 12.999705 13.830693 15.432738 12.069385 -7409 0.080421 0.053596 0.046692 0.022709 12.018537 10.131698 13.612518 14.269700 -7410 0.060618 0.048442 0.033641 0.015220 7.248911 5.598258 6.858836 5.753770 -7411 0.069991 0.066701 0.039358 0.039477 10.743695 7.509734 10.091570 10.017237 -7412 0.087885 0.086001 0.036928 0.023702 10.083617 7.020581 13.121822 9.164436 -7413 0.082563 0.084803 0.054130 0.056095 14.154969 11.574333 17.102123 12.364263 -7414 0.091633 0.104059 0.046225 0.059521 10.695127 11.103766 11.477243 13.388271 -7415 0.155161 0.097601 0.096818 0.051326 10.097697 8.241780 12.397627 10.801698 -7416 0.090033 0.106047 0.087803 0.073255 9.253119 7.119763 12.901165 12.567310 -7417 0.066600 0.052707 0.033640 0.030634 11.858865 11.680823 10.162322 9.035021 -7418 0.099034 0.122197 0.085128 0.106202 11.140645 8.291847 9.763825 9.276819 -7419 0.050063 0.057783 0.062118 0.064803 10.994640 11.197367 14.912137 14.738165 -7420 0.132812 0.078871 0.079790 0.062406 11.442626 8.374111 14.012706 13.351602 -7421 0.087998 0.080111 0.093085 0.070755 12.176604 10.198183 15.317116 12.275179 -7422 0.071600 0.048140 0.044282 0.028351 7.736140 7.846534 12.840919 15.124180 -7423 0.074026 0.075715 0.027769 0.042379 8.908265 10.495908 13.127716 10.929169 -7424 0.088891 0.074803 0.058336 0.060224 9.375513 8.759992 10.599463 9.320314 -7425 0.048127 0.046106 0.029097 0.022583 11.890498 9.493299 15.660053 13.482934 -7426 0.056638 0.074987 0.045659 0.039815 8.989360 8.283855 11.601874 13.952654 -7427 0.051609 0.046860 0.023145 0.017996 10.740121 10.049452 7.540398 8.037786 -7428 0.044344 0.044765 0.032649 0.027285 9.346059 8.845370 9.678798 8.171399 -7429 0.051453 0.046241 0.029350 0.024492 8.394259 8.283972 10.679123 9.816936 -7430 0.081450 0.056832 0.040753 0.024832 7.236971 7.789563 10.813458 9.745141 -7431 0.069338 0.054600 0.055394 0.040284 8.747136 6.991324 12.993090 9.864113 -7432 0.052454 0.042624 0.036543 0.025653 6.677535 6.432964 9.621033 9.720037 -7433 0.053105 0.037992 0.022812 0.018618 5.898770 5.603456 11.153593 9.559197 -7434 0.070132 0.051722 0.036805 0.024563 11.383141 9.012780 15.383278 14.479954 -7435 0.115125 0.076863 0.058240 0.040332 7.953640 5.957614 15.520902 13.478196 -7436 0.069697 0.076795 0.032391 0.034190 10.774681 9.814659 13.503910 13.317020 -7437 0.048264 0.043978 0.029701 0.022976 8.831096 6.613574 10.189020 7.426052 -7438 0.089721 0.043131 0.041493 0.030986 6.806972 5.407694 11.806757 8.807970 -7439 0.115209 0.110524 0.093421 0.069674 14.648128 13.228147 21.832319 20.604317 -7440 0.060771 0.046167 0.024702 0.015579 12.292592 9.724737 13.136694 15.712412 -7441 0.068377 0.058498 0.056701 0.035387 6.213312 7.634470 8.877142 10.010678 -7442 0.064743 0.051776 0.031940 0.035366 12.100044 8.150097 13.054166 10.140038 -7443 0.045499 0.058511 0.027484 0.019034 6.800519 6.892418 6.413466 6.184144 -7444 0.043553 0.031379 0.028031 0.022486 6.224906 7.030388 8.219210 8.811493 -7445 0.091485 0.046391 0.036554 0.025456 8.029703 6.165677 11.028050 10.255851 -7446 0.052736 0.050165 0.024317 0.027011 9.588763 8.728156 11.329647 14.041164 -7447 0.068755 0.044735 0.034208 0.023209 5.878581 4.785664 10.086165 8.243639 -7448 0.092453 0.084036 0.051097 0.045803 11.300792 12.678489 10.114298 10.358065 -7449 0.085916 0.069624 0.058594 0.040820 9.819406 12.559750 15.125888 13.701628 -7450 0.088797 0.054061 0.050037 0.029570 17.185929 13.736499 23.933003 20.231042 -7451 0.051238 0.046692 0.026195 0.022255 6.370972 4.797310 8.529812 6.962523 -7452 0.113952 0.124617 0.099452 0.111930 19.232293 15.820927 18.910609 13.512927 -7453 0.069623 0.077812 0.044492 0.040733 11.912519 10.842103 14.608523 14.693702 -7454 0.115368 0.094195 0.092084 0.055739 7.977524 6.300055 12.834574 9.284286 -7455 0.056365 0.049636 0.041311 0.026382 10.829153 10.120845 11.632349 10.416048 -7456 0.078498 0.072731 0.044817 0.040646 10.727544 8.464517 12.885912 11.294505 -7457 0.104269 0.096129 0.051179 0.053249 8.904359 8.217540 11.999162 10.125072 -7458 0.066897 0.073833 0.035303 0.027376 13.381405 12.127453 14.559033 14.236976 -7459 0.124499 0.073033 0.047851 0.027725 10.731198 9.664559 12.195909 9.798511 -7460 0.063353 0.058357 0.044540 0.040752 10.705441 9.400710 12.324527 10.888769 -7461 0.082056 0.062079 0.051219 0.041614 8.882906 9.240222 14.950737 13.590003 -7462 0.109198 0.097196 0.070363 0.050618 11.864960 10.206353 12.999328 12.203784 -7463 0.041185 0.033358 0.034603 0.024629 7.483758 7.452225 11.899002 12.209108 -7464 0.076222 0.063803 0.045838 0.035519 13.651666 9.140347 14.470844 10.652260 -7465 0.065514 0.048166 0.054048 0.024348 9.376268 7.739131 10.241300 7.437861 -7466 0.083653 0.083803 0.026452 0.030825 9.811804 6.424369 8.430918 8.329278 -7467 0.051764 0.063625 0.037062 0.036484 11.201600 8.783000 14.261284 10.295919 -7468 0.080963 0.072234 0.046132 0.051869 14.870623 11.523429 16.044661 16.412264 -7469 0.085884 0.053806 0.061865 0.034402 12.827084 9.181122 14.916886 13.025662 -7470 0.100178 0.075334 0.051287 0.042008 9.077900 9.000135 10.908383 10.416780 -7471 0.126542 0.110067 0.079228 0.065058 9.787180 8.230354 10.471660 10.461301 -7472 0.068485 0.049758 0.040291 0.029480 8.818726 7.042003 9.458295 8.657519 -7473 0.082055 0.081779 0.062761 0.040986 10.006724 9.010349 13.640976 11.265323 -7474 0.037335 0.043069 0.019727 0.026501 7.915566 5.158380 8.397265 6.435568 -7475 0.067645 0.048186 0.022890 0.014318 13.713901 10.845504 19.078598 12.476564 -7476 0.088650 0.064917 0.045730 0.029315 10.543684 8.825522 12.535342 10.974576 -7477 0.059346 0.082721 0.030827 0.024487 8.862594 7.613779 12.040628 12.678343 -7478 0.075695 0.089159 0.084893 0.074266 7.904547 7.806764 13.109938 12.776050 -7479 0.089721 0.061365 0.060758 0.039736 11.721059 8.924659 13.105053 12.176787 -7480 0.062014 0.071058 0.044237 0.039622 10.747378 10.362523 11.029244 9.871296 -7481 0.061062 0.054582 0.056391 0.038598 7.770205 6.229711 13.885508 13.621815 -7482 0.097750 0.093417 0.072465 0.057844 12.239537 10.896582 14.457372 13.302238 -7483 0.056676 0.062295 0.036338 0.036051 15.196932 11.739948 15.151558 11.575770 -7484 0.073259 0.061069 0.071898 0.039535 11.515567 9.557515 15.772406 11.538965 -7485 0.059846 0.041235 0.055684 0.025826 13.144736 14.051799 21.054374 18.354795 -7486 0.051845 0.051143 0.018018 0.020924 9.894440 9.414662 14.091856 12.339543 -7487 0.068523 0.053565 0.033960 0.026073 6.896288 8.630331 11.657003 15.649277 -7488 0.140556 0.101241 0.056889 0.045413 5.956051 6.050786 16.381268 14.816294 -7489 0.115453 0.097767 0.052664 0.036967 11.147234 11.910407 14.766656 16.472490 -7490 0.119106 0.082847 0.079709 0.055568 10.783236 10.541107 15.499321 14.608915 -7491 0.100322 0.079921 0.068084 0.044987 12.457469 14.097321 8.640088 8.469345 -7492 0.102586 0.085928 0.059032 0.047583 10.385575 8.881741 12.339702 11.337567 -7493 0.108574 0.089227 0.061936 0.056968 18.414938 14.731022 18.384671 17.795022 -7494 0.077667 0.059166 0.072923 0.049480 11.469363 9.199721 14.758795 14.857248 -7495 0.068368 0.045399 0.029015 0.023705 7.876385 6.837373 14.512837 11.839561 -7496 0.119278 0.082956 0.121931 0.077545 11.893775 11.096702 11.070988 10.730814 -7497 0.054481 0.038043 0.038307 0.028635 7.481564 8.464002 13.340556 12.786149 -7498 0.127700 0.103771 0.108010 0.055503 13.802894 9.600057 17.150851 12.408476 -7499 0.069702 0.042087 0.039463 0.025672 8.394644 6.933643 11.488440 6.945612 -7500 0.067439 0.049017 0.036751 0.020160 7.968279 7.079931 10.273766 10.909441 -7501 0.065764 0.046047 0.025469 0.021395 7.026748 7.249244 9.131528 9.229203 -7502 0.046848 0.047210 0.029505 0.027273 9.582652 9.183492 9.974567 10.922252 -7503 0.123543 0.096752 0.051060 0.055980 9.820093 11.537680 13.308046 11.170999 -7504 0.079760 0.077168 0.032243 0.031364 9.013718 12.339824 16.280856 19.951150 -7505 0.059253 0.058332 0.043952 0.037715 10.105407 9.265087 11.279239 10.177402 -7506 0.069536 0.049359 0.043444 0.032032 8.530273 8.605745 10.998101 9.930381 -7507 0.084076 0.096753 0.043873 0.046003 8.874266 9.101627 11.184542 11.101048 -7508 0.080732 0.064480 0.052997 0.038937 12.210832 8.979498 11.940243 12.139014 -7509 0.052249 0.050120 0.035671 0.042995 6.879030 6.090828 9.724046 9.142952 -7510 0.086784 0.080379 0.053110 0.039914 8.028118 6.887695 13.485993 11.733347 -7511 0.100306 0.093561 0.061761 0.055718 11.331589 10.077591 17.957213 15.911436 -7512 0.094897 0.063746 0.049001 0.024127 10.734407 9.673024 9.426043 9.374871 -7513 0.106859 0.098642 0.045364 0.047588 9.867708 7.307054 13.002489 10.401994 -7514 0.089337 0.075632 0.040606 0.030635 8.397783 7.210650 7.969936 8.735603 -7515 0.059813 0.049215 0.045428 0.032666 5.889382 4.770942 6.383504 6.771994 -7516 0.065101 0.061191 0.038565 0.040684 13.755872 13.109272 20.312452 19.045250 -7517 0.066920 0.057330 0.055745 0.049490 9.159188 7.676807 10.878542 9.015887 -7518 0.038960 0.030175 0.026647 0.014961 7.697047 7.764877 6.762791 7.266938 -7519 0.075975 0.064281 0.049785 0.043363 9.792178 7.663616 12.491547 11.393967 -7520 0.057138 0.057498 0.022574 0.027778 7.829191 7.177230 12.104057 10.534323 -7521 0.074199 0.059602 0.066789 0.040886 9.966261 7.773687 10.916211 9.059091 -7522 0.076216 0.047399 0.062024 0.048080 11.237647 9.602627 13.665913 8.902939 -7523 0.065234 0.060782 0.038219 0.024443 10.575903 8.278916 13.242447 11.850844 -7524 0.037649 0.028402 0.026816 0.017484 10.747950 10.344918 12.182722 13.077728 -7525 0.059913 0.040222 0.030321 0.023919 11.251486 9.112510 12.217786 12.098197 -7526 0.055402 0.059862 0.028185 0.036262 11.262151 8.639315 13.305061 11.203262 -7527 0.053726 0.048909 0.040618 0.035991 6.541700 6.131296 9.508391 9.718526 -7528 0.070522 0.060370 0.046512 0.028818 9.615825 8.162229 13.552141 9.200468 -7529 0.066456 0.037261 0.034052 0.014996 11.447333 10.384582 12.816277 10.276205 -7530 0.079335 0.070370 0.050529 0.054446 13.722595 10.378688 12.973287 10.139439 -7531 0.070797 0.071447 0.041645 0.037385 17.149546 14.817800 16.199781 10.493764 -7532 0.079712 0.065538 0.026311 0.024778 11.143360 9.650034 18.403554 13.994193 -7533 0.090226 0.076657 0.048690 0.037385 8.904547 6.651054 16.490689 13.192371 -7534 0.080248 0.088645 0.075522 0.063903 8.866107 9.140703 11.328416 9.605502 -7535 0.096830 0.070662 0.105251 0.074958 13.638160 14.736091 17.219770 16.155049 -7536 0.089773 0.062734 0.034688 0.026416 7.779878 7.910313 10.612013 11.239932 -7537 0.079432 0.087388 0.038174 0.055732 10.170979 10.477120 11.474946 11.851558 -7538 0.070512 0.054961 0.037516 0.037651 12.764270 11.280342 11.323827 10.656192 -7539 0.044255 0.038405 0.030805 0.021957 16.049315 11.883504 18.774370 12.999115 -7540 0.091347 0.083500 0.056542 0.056534 8.702801 9.268970 13.229849 12.416625 -7541 0.087033 0.093950 0.051258 0.038004 9.831267 8.065013 9.759388 10.139544 -7542 0.099945 0.084513 0.068747 0.046836 12.079737 10.029381 17.067684 13.324094 -7543 0.078846 0.057572 0.046974 0.034090 12.487218 11.435313 10.641192 10.369878 -7544 0.085816 0.063083 0.052625 0.037626 7.679248 6.096636 11.310590 9.542963 -7545 0.054100 0.052300 0.027138 0.018324 9.088551 6.186777 12.904973 13.188622 -7546 0.054910 0.041287 0.036003 0.038863 11.534562 9.965831 15.702335 14.683161 -7547 0.096461 0.048602 0.048206 0.036061 10.983723 13.287016 12.265593 11.992919 -7548 0.068668 0.063337 0.033292 0.028509 10.114995 9.828490 18.066530 11.552127 -7549 0.091413 0.083321 0.049844 0.038253 12.107133 12.144914 20.162598 19.058651 -7550 0.058771 0.040934 0.029811 0.023198 9.105782 8.068839 12.481521 10.260732 -7551 0.107386 0.096679 0.063364 0.051658 18.008776 14.142944 18.275802 13.467272 -7552 0.091063 0.086891 0.051737 0.040542 12.711658 10.961581 13.388926 11.359736 -7553 0.092640 0.078241 0.042799 0.028319 10.888387 8.414302 11.722088 11.148996 -7554 0.107644 0.083260 0.067573 0.047070 7.714734 5.859981 13.618881 11.329475 -7555 0.062988 0.067786 0.029703 0.035026 13.283952 10.492514 12.991299 10.081582 -7556 0.061425 0.061387 0.052940 0.062694 6.821149 7.829158 10.165385 10.582749 -7557 0.061979 0.048853 0.036060 0.024046 8.129217 8.391484 13.478864 11.185921 -7558 0.063483 0.058774 0.060160 0.047844 12.635026 11.407634 10.291044 11.277646 -7559 0.079007 0.061149 0.027664 0.025830 7.857920 6.304473 11.322199 9.108692 -7560 0.106856 0.110600 0.054373 0.042765 9.761921 6.956252 13.100563 9.693562 -7561 0.104697 0.071864 0.063956 0.067052 10.152116 7.551884 15.340148 15.233819 -7562 0.068476 0.055547 0.023628 0.023773 9.692617 7.456498 13.870831 12.319108 -7563 0.066267 0.046001 0.034244 0.016528 8.547688 5.976764 14.133228 10.277654 -7564 0.057049 0.038532 0.034889 0.024471 8.618231 6.912733 11.650840 9.077110 -7565 0.046401 0.051349 0.023850 0.023990 6.900962 5.327087 7.468974 5.802214 -7566 0.062875 0.059722 0.038921 0.023508 10.374636 8.656009 13.755621 9.799896 -7567 0.086775 0.079221 0.032820 0.030323 10.080650 7.665495 13.123536 10.988140 -7568 0.063789 0.058832 0.033936 0.029059 9.474840 7.664737 9.429758 7.526836 -7569 0.116437 0.083632 0.079322 0.073945 10.410872 12.267072 12.273716 15.802161 -7570 0.085377 0.068397 0.057841 0.056922 12.744050 10.423728 16.741657 12.551722 -7571 0.084558 0.078334 0.054410 0.046261 11.359835 12.344241 13.821327 11.880131 -7572 0.058641 0.041222 0.030724 0.023991 7.566471 7.511569 8.914364 8.547614 -7573 0.085922 0.073548 0.070215 0.063157 11.436639 9.734567 15.136207 16.207350 -7574 0.118472 0.080224 0.077441 0.054542 5.943664 4.857323 9.954508 8.389277 -7575 0.067158 0.049582 0.034041 0.032362 9.684883 9.018210 11.050892 9.223954 -7576 0.083055 0.060231 0.087777 0.051782 8.464552 8.739194 8.978441 7.589427 -7577 0.044543 0.050015 0.020466 0.017517 6.769031 5.820153 9.013854 8.154333 -7578 0.051863 0.053330 0.043997 0.030278 9.550505 9.308558 9.046365 9.040219 -7579 0.085739 0.068009 0.038284 0.044848 10.855888 9.429559 11.068808 7.931709 -7580 0.076765 0.083015 0.076009 0.055152 8.951720 8.271555 9.886427 7.649253 -7581 0.044300 0.032681 0.035574 0.025395 8.790017 6.911161 10.194946 8.672348 -7582 0.074210 0.074640 0.046563 0.042744 9.250484 10.087190 8.512372 8.696695 -7583 0.073984 0.059085 0.050495 0.031272 12.079885 8.045114 15.974309 9.515818 -7584 0.073507 0.054608 0.057862 0.030118 7.242123 7.503734 12.278414 9.255510 -7585 0.100039 0.096828 0.071058 0.043009 10.826579 10.160210 11.580825 11.550557 -7586 0.054993 0.054917 0.025575 0.026572 10.551210 6.169963 21.806737 13.353691 -7587 0.133845 0.100987 0.042179 0.048831 7.769070 7.166407 11.182922 7.293522 -7588 0.046682 0.030831 0.022913 0.015755 4.712018 5.580462 7.045358 6.201291 -7589 0.077705 0.067606 0.105619 0.059808 11.492291 7.477432 21.447917 16.662876 -7590 0.100697 0.080636 0.046432 0.041067 12.052058 8.797845 12.406266 12.141054 -7591 0.104460 0.069670 0.062470 0.056242 9.472649 9.492224 9.540981 9.950603 -7592 0.104300 0.100964 0.078316 0.095125 8.712513 9.254062 15.448528 11.687886 -7593 0.068602 0.047504 0.039930 0.039308 8.782292 8.686196 11.823752 11.236236 -7594 0.055219 0.056591 0.036755 0.029344 7.052470 7.196264 9.107701 7.090763 -7595 0.098663 0.096364 0.074894 0.062890 10.742548 12.248425 15.791667 17.669383 -7596 0.121563 0.090417 0.092586 0.057196 8.506800 7.995271 14.565885 10.351592 -7597 0.108121 0.069357 0.055124 0.026370 7.132650 6.484271 10.382185 6.947461 -7598 0.063371 0.064926 0.054385 0.051343 9.995760 9.856207 8.895707 8.213780 -7599 0.055336 0.061575 0.051459 0.036940 9.410188 9.657794 16.128614 14.471182 -7600 0.096094 0.097639 0.058335 0.045072 9.475239 8.720148 15.391009 14.692575 -7601 0.042055 0.043054 0.028537 0.024321 8.447156 6.868198 10.586062 9.681257 -7602 0.050845 0.049580 0.023266 0.018399 10.226362 9.161612 12.682227 14.435578 -7603 0.057172 0.065620 0.027822 0.026877 6.822828 6.426146 11.447041 10.452494 -7604 0.047623 0.057429 0.028488 0.034898 9.614689 6.994725 8.506502 7.531156 -7605 0.108433 0.093612 0.074667 0.048992 11.504858 9.525737 15.425269 12.160746 -7606 0.038137 0.027471 0.027494 0.021367 12.406135 7.318577 7.477753 6.179933 -7607 0.033213 0.026788 0.014109 0.014846 8.178388 8.249874 10.026373 10.748505 -7608 0.091061 0.060477 0.055122 0.054523 7.907169 9.654382 11.488093 11.033859 -7609 0.161965 0.125071 0.110964 0.062299 8.872131 6.435864 18.635856 12.068501 -7610 0.058707 0.043510 0.025200 0.019064 6.057577 6.559036 12.865700 12.622356 -7611 0.099481 0.064478 0.059284 0.022374 14.593679 10.467038 16.727498 11.910171 -7612 0.062209 0.052534 0.055468 0.037303 12.255498 9.491298 12.722691 10.739954 -7613 0.070471 0.062196 0.028361 0.027815 11.917759 10.125998 24.266412 18.584412 -7614 0.074404 0.083928 0.051513 0.045023 6.825748 6.752244 10.520619 10.447346 -7615 0.092161 0.065165 0.050475 0.030692 13.874477 10.858937 20.995838 14.526402 -7616 0.098165 0.081691 0.036739 0.033314 10.698206 8.725507 11.397209 11.752750 -7617 0.068274 0.054326 0.036553 0.035007 14.417747 11.654338 18.150600 16.703281 -7618 0.063558 0.066422 0.035889 0.026574 13.130068 10.632525 17.180198 17.082718 -7619 0.084749 0.052229 0.064131 0.041451 10.779549 10.211118 10.936949 12.188219 -7620 0.047532 0.053242 0.025768 0.021711 11.384077 11.749981 12.597970 12.209396 -7621 0.099700 0.077553 0.056419 0.042326 8.217221 6.975518 11.079793 8.665154 -7622 0.095134 0.070741 0.080686 0.048446 10.312766 12.790182 13.131138 13.724231 -7623 0.081101 0.069791 0.044994 0.047861 7.713627 7.665972 10.634852 11.814541 -7624 0.065420 0.055685 0.030149 0.030200 8.132316 9.247449 9.004872 8.405230 -7625 0.108349 0.077497 0.043415 0.037871 11.398220 10.923679 14.870583 12.954202 -7626 0.039113 0.040999 0.016757 0.022361 5.453513 5.911771 8.371654 7.557971 -7627 0.086409 0.045646 0.046149 0.023982 10.202391 8.423415 12.448189 9.174633 -7628 0.133080 0.090032 0.067907 0.045864 12.381177 12.467611 11.694436 11.657536 -7629 0.057684 0.063250 0.028474 0.027824 5.823687 4.536574 8.529265 5.771307 -7630 0.079741 0.066247 0.041406 0.037014 8.007267 8.375116 12.068763 15.217644 -7631 0.058935 0.057008 0.035433 0.043990 9.529779 9.898821 11.030190 10.178987 -7632 0.042331 0.040679 0.040765 0.035567 6.784439 6.109129 11.512980 11.917195 -7633 0.076793 0.067508 0.044413 0.045206 9.597428 9.748281 14.096284 11.016411 -7634 0.038818 0.042946 0.021417 0.028237 8.545926 6.602743 9.225339 7.652293 -7635 0.136538 0.141819 0.093922 0.078923 10.365532 9.480686 23.989006 19.625016 -7636 0.053399 0.053649 0.033293 0.033803 7.281530 5.894237 10.534911 8.271154 -7637 0.080508 0.060287 0.051311 0.044661 8.083767 9.162069 10.266485 13.646114 -7638 0.076385 0.062706 0.068506 0.074308 7.867101 6.452861 11.520918 12.002057 -7639 0.043826 0.046453 0.021191 0.019722 10.067938 6.972693 11.031538 6.872762 -7640 0.139257 0.070530 0.107536 0.036613 9.457815 9.766538 13.192755 14.973846 -7641 0.048573 0.040748 0.031179 0.026710 8.077352 7.430820 12.316265 9.413030 -7642 0.101282 0.079311 0.059554 0.056943 10.463228 7.154654 15.399707 9.793231 -7643 0.077174 0.064073 0.047972 0.041860 12.285939 11.537949 13.786740 15.414818 -7644 0.078334 0.067896 0.047492 0.036316 10.704835 10.162955 11.114834 9.870217 -7645 0.042877 0.050777 0.054154 0.048395 9.224452 8.521287 17.716445 12.105410 -7646 0.085769 0.079954 0.048699 0.070936 12.578618 9.997605 17.429229 13.043969 -7647 0.063450 0.064328 0.075174 0.083527 8.199091 7.126916 10.556020 11.552960 -7648 0.052543 0.056345 0.033767 0.029394 7.560156 7.532138 10.492026 8.257369 -7649 0.112085 0.115704 0.043112 0.047585 12.081121 10.656831 12.382519 10.078243 -7650 0.061491 0.047740 0.051591 0.030029 9.014906 6.402602 16.310927 9.796978 -7651 0.065902 0.089594 0.055102 0.060958 11.432440 8.863512 23.782479 17.450067 -7652 0.064836 0.050614 0.014650 0.011967 6.025520 6.251109 8.143316 9.057093 -7653 0.068326 0.054424 0.038108 0.023765 10.213879 11.097012 12.638384 11.446679 -7654 0.081208 0.063215 0.104727 0.065083 11.731350 8.667842 16.310698 15.163090 -7655 0.046341 0.046383 0.024190 0.027397 8.688740 8.129763 8.988813 6.472355 -7656 0.094058 0.052856 0.038583 0.021386 9.390037 7.136627 13.722563 13.023904 -7657 0.044480 0.047977 0.023765 0.022922 6.793510 6.039643 14.008225 13.817833 -7658 0.070839 0.076364 0.049233 0.052548 10.579046 9.090068 15.311549 13.443208 -7659 0.057690 0.041696 0.035575 0.024227 7.983832 6.595780 11.362519 10.005799 -7660 0.063342 0.049892 0.035896 0.027314 12.387347 12.963212 16.764512 12.951714 -7661 0.077884 0.076021 0.051998 0.037583 6.031514 6.937053 8.296139 9.112774 -7662 0.064493 0.071419 0.038877 0.033413 9.140624 9.757835 12.396878 11.515292 -7663 0.070362 0.071417 0.024837 0.035954 11.201992 8.089965 14.116255 10.620767 -7664 0.069954 0.062420 0.040279 0.027713 10.238480 7.038323 19.272107 14.861372 -7665 0.067475 0.071494 0.026386 0.026316 8.925306 7.742665 12.626953 11.444438 -7666 0.069318 0.053863 0.035239 0.026690 6.071533 5.389597 11.629843 11.349786 -7667 0.077229 0.064538 0.052415 0.036160 10.159138 9.219970 11.303158 8.725859 -7668 0.060396 0.046307 0.026482 0.019711 10.360968 9.997126 12.995543 11.385051 -7669 0.140659 0.082325 0.091445 0.048733 11.415712 9.504188 15.072485 14.376908 -7670 0.050723 0.051039 0.023823 0.021160 7.829644 6.026381 9.358846 8.285931 -7671 0.057391 0.060802 0.061718 0.054166 10.438608 9.540169 13.151589 11.713343 -7672 0.050985 0.038040 0.050145 0.037392 8.470734 9.198937 12.039506 8.714952 -7673 0.058636 0.054283 0.028375 0.027354 10.601867 8.647705 16.659092 15.197521 -7674 0.066028 0.059590 0.024641 0.018060 7.221134 7.386296 9.438573 7.559937 -7675 0.127041 0.084242 0.066946 0.065354 10.470679 8.276602 16.232149 11.861306 -7676 0.057172 0.057653 0.051371 0.031141 10.770572 8.446440 14.579361 11.371057 -7677 0.078444 0.068960 0.072730 0.057505 8.640967 8.697064 8.125997 8.864333 -7678 0.053662 0.059033 0.029957 0.046228 10.955569 10.198465 15.610485 12.515608 -7679 0.066029 0.082203 0.054883 0.048672 8.935360 8.535947 11.102505 10.945308 -7680 0.060271 0.049482 0.036523 0.029280 8.691334 9.183692 13.432206 10.737287 -7681 0.074407 0.051324 0.069408 0.036992 12.658536 12.241672 17.892818 15.480464 -7682 0.079778 0.080353 0.057885 0.047140 10.267636 10.955887 13.366794 12.172473 -7683 0.094249 0.080796 0.047192 0.043360 11.899845 11.413348 11.119651 13.808876 -7684 0.091339 0.083543 0.054549 0.046458 10.260707 9.029020 10.509570 9.612847 -7685 0.104797 0.093673 0.088670 0.075586 11.749359 8.923734 8.899936 7.372409 -7686 0.070915 0.066304 0.061842 0.045098 9.733089 10.375744 15.561577 15.180267 -7687 0.076234 0.065516 0.057891 0.036941 9.334234 10.437083 13.729567 13.562974 -7688 0.071007 0.080153 0.050841 0.044978 9.709438 6.925938 13.262316 10.793868 -7689 0.058083 0.044749 0.024130 0.023576 7.946799 6.150024 14.478245 10.274930 -7690 0.058753 0.052643 0.067415 0.043189 11.747668 9.036145 14.724515 12.975526 -7691 0.081017 0.058443 0.041154 0.023105 11.118212 10.344589 11.561553 11.509503 -7692 0.075143 0.062675 0.031031 0.033475 11.058045 9.429065 10.861023 10.005963 -7693 0.060883 0.051060 0.036785 0.027147 9.104557 10.962508 10.337745 11.470549 -7694 0.079326 0.088483 0.071635 0.089800 13.787793 13.353708 16.915985 13.835011 -7695 0.041517 0.041169 0.021613 0.026146 8.986363 7.096220 10.011407 8.253006 -7696 0.139549 0.136491 0.085122 0.061951 10.381688 8.557287 20.578101 14.624037 -7697 0.098964 0.049142 0.053906 0.039509 7.013493 5.731668 12.065235 10.629945 -7698 0.076990 0.060546 0.041369 0.031580 9.099874 6.351253 13.207046 12.444087 -7699 0.077678 0.065183 0.040536 0.032770 10.824831 7.574602 14.745854 10.334080 -7700 0.054359 0.049603 0.038120 0.022980 7.282549 4.844887 8.899877 6.323521 -7701 0.081251 0.065784 0.073339 0.062735 11.628356 10.651159 10.029495 11.071248 -7702 0.075415 0.080204 0.046487 0.038092 8.048011 8.166710 10.635648 9.708668 -7703 0.062562 0.059049 0.035303 0.023341 11.563725 8.373989 12.938825 10.126730 -7704 0.145520 0.112454 0.074937 0.072825 11.265870 11.819139 13.471018 13.599155 -7705 0.047795 0.037260 0.023026 0.012594 7.488088 6.559641 15.157241 10.531952 -7706 0.084739 0.075056 0.059809 0.037666 7.703194 6.802853 9.657419 9.010830 -7707 0.063224 0.050014 0.039331 0.035501 11.998352 8.922055 15.713841 8.835903 -7708 0.114250 0.091074 0.053546 0.042679 9.740470 7.839461 11.967610 9.830907 -7709 0.092684 0.085149 0.045925 0.054954 7.884106 9.021260 12.086240 9.765728 -7710 0.057305 0.042026 0.036934 0.023177 8.604568 8.480162 11.491213 9.030455 -7711 0.083323 0.070836 0.028301 0.024083 13.370424 10.290211 11.922859 9.610975 -7712 0.041635 0.038181 0.031284 0.021759 9.921971 9.893891 9.204559 8.628099 -7713 0.065722 0.066403 0.037502 0.033128 6.792629 6.184178 8.383865 6.909080 -7714 0.053519 0.060278 0.049773 0.035198 7.226556 6.220792 14.451419 10.373472 -7715 0.088767 0.061005 0.051029 0.037949 8.071156 8.367303 10.239327 9.717780 -7716 0.086014 0.083847 0.055646 0.050840 8.626425 11.081141 16.240685 15.624666 -7717 0.070256 0.060291 0.033480 0.025513 7.553132 5.705245 17.376755 13.981018 -7718 0.064547 0.050995 0.040810 0.029750 9.700097 9.415147 8.764191 9.017154 -7719 0.131213 0.105098 0.068637 0.051797 15.712881 10.926062 17.711946 11.659540 -7720 0.064240 0.052541 0.024396 0.019994 8.708141 7.566640 7.866529 9.752421 -7721 0.045169 0.046720 0.029635 0.028400 7.874221 6.958277 12.356813 9.710537 -7722 0.092448 0.101211 0.064023 0.054476 14.561987 13.589618 19.926727 19.823436 -7723 0.145970 0.083898 0.080593 0.071349 8.845286 11.250926 10.380887 11.838398 -7724 0.062421 0.051426 0.036981 0.029567 9.628069 7.583807 13.825181 11.149563 -7725 0.084905 0.073830 0.038966 0.039078 10.568443 8.253335 12.168485 8.798622 -7726 0.038237 0.034146 0.026772 0.019805 7.757739 7.086467 9.217120 8.205143 -7727 0.088981 0.090846 0.083791 0.059428 11.837748 9.592623 15.116438 14.941303 -7728 0.057150 0.080140 0.041684 0.041139 13.472315 9.965733 15.346882 13.510177 -7729 0.067554 0.095498 0.056250 0.065049 9.994431 9.348689 14.303137 12.548554 -7730 0.101012 0.069044 0.048382 0.032163 7.849041 6.263167 9.893924 8.859417 -7731 0.080461 0.071303 0.040146 0.025541 12.342220 11.279917 13.323239 12.953065 -7732 0.070859 0.063978 0.039186 0.041410 6.464729 9.213817 12.026005 11.400711 -7733 0.053779 0.053872 0.030971 0.027601 8.274632 8.117403 10.740949 9.067082 -7734 0.058654 0.046895 0.051775 0.042066 11.014759 10.726353 12.077176 13.371847 -7735 0.060228 0.054480 0.032460 0.024609 9.486881 7.599404 11.872210 9.120411 -7736 0.084118 0.058163 0.033442 0.026397 10.842065 10.130873 19.286238 18.153282 -7737 0.039651 0.037402 0.020418 0.017248 15.386724 11.194827 10.721460 9.531528 -7738 0.076589 0.054918 0.035083 0.024602 9.933016 7.705098 14.046445 11.939798 -7739 0.064501 0.061538 0.047474 0.036617 8.876823 8.203567 10.514556 7.146390 -7740 0.083183 0.052169 0.030239 0.015090 9.609560 9.595807 13.741899 10.988172 -7741 0.047313 0.042630 0.041060 0.027617 7.188281 6.036691 10.575605 9.098899 -7742 0.114765 0.071347 0.093782 0.046923 11.899835 7.273877 15.858680 9.309758 -7743 0.111687 0.075175 0.040632 0.031993 9.892367 8.689098 10.760094 9.443693 -7744 0.115069 0.086646 0.075437 0.065755 8.646820 7.923884 13.209329 12.710497 -7745 0.127118 0.076646 0.098278 0.064589 13.884913 13.450353 20.034208 18.468271 -7746 0.076455 0.062679 0.034139 0.032429 9.429857 8.778115 9.953246 9.437309 -7747 0.074730 0.066603 0.054710 0.047591 8.224753 7.525947 12.169133 10.136854 -7748 0.074379 0.045507 0.057538 0.030975 7.866219 7.407478 11.972877 8.974032 -7749 0.071784 0.049321 0.054448 0.034417 8.951962 8.188259 10.513903 9.066097 -7750 0.067087 0.061131 0.041841 0.032673 7.503603 8.378866 13.000733 12.096155 -7751 0.062607 0.061154 0.069357 0.077230 9.749924 6.037984 13.633334 8.704415 -7752 0.081619 0.094357 0.061268 0.056937 10.665730 9.677749 20.982909 18.401454 -7753 0.076897 0.049196 0.040772 0.032638 10.017481 9.358883 16.339658 13.183388 -7754 0.069827 0.058017 0.034094 0.030212 9.915844 9.688728 13.322330 14.240894 -7755 0.059901 0.049169 0.045774 0.038675 8.792976 7.333239 11.603898 9.168432 -7756 0.107051 0.108069 0.064491 0.063358 6.333202 6.436123 12.778533 9.082069 -7757 0.043579 0.043256 0.021990 0.027679 9.230427 7.485887 11.970944 8.409610 -7758 0.043962 0.036689 0.020420 0.013840 8.785916 7.301520 8.309813 8.633706 -7759 0.081460 0.056234 0.047413 0.030965 9.271218 6.515990 11.255370 7.824373 -7760 0.104445 0.059739 0.044003 0.022209 11.873753 10.412764 11.329410 10.593911 -7761 0.060976 0.054774 0.055573 0.037417 10.570471 8.928778 9.833820 11.113286 -7762 0.053440 0.060594 0.028111 0.025314 8.959093 8.915646 11.568581 10.439008 -7763 0.065552 0.072947 0.061462 0.037496 10.335542 10.811695 10.670025 9.516280 -7764 0.050345 0.044156 0.017690 0.021146 5.503576 4.167047 7.156428 6.581124 -7765 0.049526 0.039258 0.030582 0.025068 9.097268 6.775497 10.987800 9.020049 -7766 0.062839 0.053545 0.027947 0.018971 10.600915 8.054408 11.521640 8.890755 -7767 0.069937 0.053584 0.055965 0.035854 11.493997 12.792720 12.793606 15.595601 -7768 0.055827 0.066708 0.043478 0.043011 9.580289 6.161633 12.577508 10.089631 -7769 0.048834 0.043739 0.030118 0.027889 8.982404 7.597740 9.933330 7.078787 -7770 0.075672 0.076991 0.042961 0.036184 16.885721 10.613179 17.350398 12.741049 -7771 0.053563 0.057647 0.028566 0.032192 7.154132 6.195334 13.131127 12.791710 -7772 0.059260 0.045032 0.055657 0.037686 10.201683 7.557424 10.416675 8.683795 -7773 0.066273 0.050038 0.044548 0.024321 9.644449 9.002176 11.042391 9.044009 -7774 0.046332 0.035509 0.033292 0.022117 6.609718 7.210984 8.587711 9.519442 -7775 0.051888 0.054300 0.016213 0.022335 10.457756 7.737793 12.826683 11.695856 -7776 0.046078 0.043589 0.041392 0.028794 8.580785 10.157725 12.784338 11.610164 -7777 0.099565 0.105239 0.054532 0.055774 10.450459 8.777225 14.221321 11.588822 -7778 0.081752 0.072476 0.046841 0.044168 8.466166 7.556382 12.070844 11.407217 -7779 0.093772 0.085244 0.044039 0.045903 11.973430 11.021091 13.801000 10.973458 -7780 0.063965 0.044698 0.035875 0.036158 13.412211 12.649258 19.626812 19.513783 -7781 0.053790 0.043819 0.028074 0.027862 7.886199 6.342731 9.116339 8.420588 -7782 0.066894 0.062257 0.044682 0.050710 10.910594 11.699043 18.634639 18.471083 -7783 0.130508 0.095035 0.105872 0.086206 10.282667 8.167553 17.829285 15.271350 -7784 0.092809 0.064470 0.058813 0.040182 11.039890 14.056606 15.291808 18.219178 -7785 0.077610 0.051477 0.054169 0.050316 7.574647 6.622393 12.023906 10.355469 -7786 0.076082 0.075130 0.037689 0.024708 12.085842 11.115850 13.427543 10.906692 -7787 0.053628 0.041599 0.036019 0.024725 12.147298 8.465745 9.904311 8.149049 -7788 0.077151 0.080499 0.048933 0.048864 11.225552 7.299778 19.276918 13.879681 -7789 0.094071 0.093866 0.043844 0.034710 14.121570 13.944034 14.064531 13.374688 -7790 0.088536 0.050908 0.038803 0.026874 7.706053 6.959917 11.504247 9.758018 -7791 0.057733 0.047092 0.044110 0.048233 5.720265 6.212245 8.303244 8.389385 -7792 0.070949 0.091019 0.083853 0.109965 9.007859 8.923722 11.397381 10.559356 -7793 0.086910 0.093597 0.089327 0.069923 9.314658 7.459265 14.596605 13.029651 -7794 0.073280 0.054233 0.033322 0.026405 15.677719 12.662327 13.335060 10.855771 -7795 0.114409 0.082361 0.071177 0.076906 10.389075 8.118673 14.406814 10.562966 -7796 0.091327 0.068835 0.053564 0.051466 16.534783 10.843476 17.094021 13.844709 -7797 0.066887 0.070927 0.053833 0.064519 5.034625 4.989291 11.003391 7.652889 -7798 0.062199 0.047228 0.028745 0.019757 10.687111 12.018804 18.928511 17.710823 -7799 0.104855 0.099743 0.077322 0.079400 12.255106 10.522570 17.782684 16.903158 -7800 0.062793 0.053157 0.060285 0.042152 5.570803 5.488343 9.027663 7.743760 -7801 0.062252 0.053891 0.053738 0.029461 15.642773 11.220651 17.816747 15.744720 -7802 0.126680 0.078061 0.076115 0.035494 13.509398 11.416268 15.451033 12.027610 -7803 0.083087 0.088596 0.033423 0.038090 9.252457 10.256497 9.343510 9.319341 -7804 0.096521 0.078883 0.046918 0.028239 7.422412 6.098338 11.904307 10.135876 -7805 0.087159 0.071131 0.066401 0.036047 7.658449 8.597352 8.284745 9.819410 -7806 0.094181 0.065532 0.044216 0.042849 7.367271 4.986960 11.622644 10.617180 -7807 0.093043 0.067934 0.061026 0.051848 9.211375 7.914939 11.190808 8.838342 -7808 0.051846 0.047046 0.034827 0.033020 8.405339 7.060667 13.642931 12.409802 -7809 0.095951 0.096190 0.102329 0.067268 19.958897 17.418237 25.701569 26.410043 -7810 0.051369 0.063281 0.039675 0.045735 10.510170 7.621185 11.538504 9.172575 -7811 0.063870 0.048214 0.029327 0.020876 9.198605 7.182577 11.143426 7.940477 -7812 0.090182 0.058964 0.037197 0.024966 14.776484 16.061896 23.006058 19.908693 -7813 0.081192 0.058775 0.059281 0.046819 7.884740 8.673672 11.976683 10.523472 -7814 0.063014 0.057403 0.043683 0.028304 9.388634 7.883490 12.741533 9.150904 -7815 0.072621 0.067370 0.036635 0.033081 10.070757 11.337111 15.036288 13.518876 -7816 0.081719 0.096812 0.040640 0.026625 8.493731 7.272270 11.461690 10.681476 -7817 0.075727 0.064636 0.116599 0.065564 17.024464 16.712130 14.440602 13.505044 -7818 0.071109 0.064155 0.056163 0.047901 6.874895 6.108553 11.330993 7.941731 -7819 0.103458 0.081186 0.070109 0.044179 7.742425 6.743730 11.620329 9.018216 -7820 0.038656 0.036463 0.024444 0.023280 10.405989 12.352510 14.469851 13.425744 -7821 0.056390 0.051837 0.026420 0.021157 8.020449 7.873544 14.401871 13.429590 -7822 0.057337 0.053760 0.043261 0.025548 9.219473 6.811633 14.288880 12.954860 -7823 0.074429 0.095306 0.031137 0.026317 8.255146 8.550798 13.944384 13.457301 -7824 0.050324 0.037796 0.032248 0.026568 7.402064 7.508820 13.896534 12.768614 -7825 0.117663 0.071924 0.078022 0.055856 11.809800 14.323497 15.951118 18.942211 -7826 0.104925 0.087250 0.074761 0.044042 10.018123 8.750106 14.663970 10.611195 -7827 0.091316 0.097000 0.048554 0.035333 10.232334 8.162397 18.290489 15.877504 -7828 0.077896 0.059190 0.066421 0.049142 9.736151 9.824860 14.722091 14.480558 -7829 0.085186 0.065567 0.099689 0.052107 13.307475 11.888907 14.941472 12.796275 -7830 0.069741 0.059093 0.041058 0.044157 9.785118 8.764037 9.150223 6.463408 -7831 0.100276 0.076510 0.063471 0.039852 11.840895 9.073164 11.503542 10.043099 -7832 0.095195 0.078084 0.057968 0.033276 6.641259 7.646112 14.800890 14.333955 -7833 0.058235 0.051556 0.049801 0.046567 9.191655 7.839375 7.481753 7.848323 -7834 0.060763 0.065088 0.031803 0.026417 8.370239 6.195653 8.403150 7.267102 -7835 0.082370 0.068491 0.036561 0.028763 8.141177 6.078660 13.488489 10.765452 -7836 0.117005 0.099505 0.075067 0.068718 8.149633 7.646880 12.519599 12.488852 -7837 0.074350 0.057840 0.046658 0.029140 9.642829 9.542727 19.064526 14.709332 -7838 0.060622 0.088687 0.041983 0.048561 10.864076 9.345321 12.104511 9.904841 -7839 0.116332 0.098013 0.093626 0.048270 12.226301 10.393458 16.268998 13.927452 -7840 0.069033 0.084757 0.040639 0.038543 12.917624 15.766512 13.471405 15.335035 -7841 0.056991 0.051288 0.028687 0.020196 8.882134 9.377425 13.294857 15.039948 -7842 0.133573 0.095946 0.105410 0.091118 14.331706 12.487000 14.793947 13.034703 -7843 0.069846 0.063449 0.034139 0.023966 8.019823 8.778642 12.824930 16.664289 -7844 0.075648 0.068159 0.069565 0.056600 10.459699 8.882472 11.029302 11.428275 -7845 0.054276 0.056043 0.046231 0.044794 8.838671 7.769249 10.864767 10.209303 -7846 0.047694 0.044596 0.035668 0.033045 7.951271 8.798177 10.182759 11.089804 -7847 0.066649 0.070489 0.060167 0.049248 8.090551 6.559980 12.011882 11.325883 -7848 0.077116 0.059653 0.037687 0.035754 9.422660 7.859087 11.189987 10.087011 -7849 0.063350 0.051695 0.050146 0.031490 8.860019 8.586956 11.893070 12.355113 -7850 0.059685 0.056876 0.037669 0.033341 7.875823 6.647354 11.684542 9.322933 -7851 0.113688 0.103287 0.065960 0.048537 12.003065 8.974805 14.133215 10.588778 -7852 0.084435 0.067053 0.047203 0.028023 11.640489 8.645769 15.040328 12.680650 -7853 0.069955 0.084123 0.056180 0.067297 11.812396 9.920944 16.226779 15.874308 -7854 0.105271 0.094301 0.065960 0.049891 8.478270 8.703360 12.777644 12.220676 -7855 0.096041 0.054168 0.087694 0.042677 11.096467 10.311935 13.682857 11.595923 -7856 0.044893 0.038536 0.020009 0.022231 7.378329 5.256797 10.547799 8.013123 -7857 0.117547 0.164443 0.071748 0.082709 8.849975 10.068226 10.632095 10.551549 -7858 0.091077 0.074091 0.028407 0.032133 12.060431 11.287541 17.530332 14.663971 -7859 0.067529 0.058371 0.041279 0.046693 11.871529 13.331893 14.742353 11.209248 -7860 0.107971 0.083625 0.069052 0.067072 8.641736 8.653323 10.330271 10.073298 -7861 0.046984 0.035353 0.028277 0.020446 8.606866 7.512910 10.785078 9.419375 -7862 0.088888 0.077842 0.081662 0.064930 12.414654 11.474222 11.482083 11.108755 -7863 0.052621 0.048647 0.032518 0.027693 7.816470 5.934497 12.980284 9.439432 -7864 0.095483 0.076812 0.065577 0.045541 14.891385 10.716906 18.135134 13.400727 -7865 0.072386 0.059155 0.049057 0.035948 10.552634 8.523020 11.625675 10.925144 -7866 0.070737 0.053108 0.054241 0.030354 6.177275 5.216715 7.734978 7.643765 -7867 0.066748 0.080165 0.037470 0.038970 7.970788 6.849621 10.258550 8.168706 -7868 0.067487 0.049088 0.038214 0.022179 8.057552 7.028828 10.195691 8.822958 -7869 0.070176 0.050329 0.058211 0.049530 6.838414 5.852622 15.012043 11.853843 -7870 0.078204 0.072735 0.052531 0.041474 14.593538 11.262176 14.865563 13.247243 -7871 0.070025 0.067605 0.031877 0.037876 5.540043 5.465281 12.637170 9.402420 -7872 0.070489 0.058418 0.034009 0.044792 11.505764 11.849239 12.232874 12.497701 -7873 0.062500 0.058956 0.043261 0.030954 9.088442 7.388136 12.493419 11.039251 -7874 0.101448 0.066082 0.062721 0.039248 7.597101 6.967078 15.391800 10.827297 -7875 0.087111 0.077741 0.070567 0.042255 10.557467 8.498407 12.687201 12.164277 -7876 0.095568 0.057695 0.062623 0.028320 9.068088 8.278205 11.492693 9.279657 -7877 0.053626 0.061936 0.035132 0.035168 7.768127 6.648331 7.197042 5.551577 -7878 0.118271 0.087699 0.050233 0.026882 10.766815 8.855842 11.440557 10.545228 -7879 0.103472 0.070539 0.038348 0.027957 6.805052 5.721417 6.292641 5.294424 -7880 0.080014 0.069265 0.040696 0.036518 8.318915 6.675909 15.585835 12.727601 -7881 0.067664 0.060838 0.039016 0.034268 8.608760 7.259959 15.146991 13.318903 -7882 0.052062 0.038806 0.055251 0.035085 9.545214 6.602499 11.972566 9.641675 -7883 0.101753 0.105447 0.053639 0.052550 9.072265 10.042117 8.899445 7.868886 -7884 0.070682 0.058082 0.023882 0.038089 7.322057 7.859875 8.846081 8.884569 -7885 0.082105 0.089536 0.045680 0.041192 6.879851 5.884606 9.940803 10.725098 -7886 0.072954 0.054488 0.061850 0.055324 10.012474 10.065086 13.064174 11.874304 -7887 0.081455 0.065419 0.045322 0.038316 13.134228 12.401873 15.368137 14.423203 -7888 0.177912 0.120023 0.115488 0.058762 13.973131 9.364985 22.699794 15.063040 -7889 0.059171 0.036720 0.035363 0.022431 8.806640 8.250090 12.111978 13.400310 -7890 0.076516 0.055493 0.050505 0.045561 7.251225 8.428555 9.982308 11.365152 -7891 0.062949 0.057610 0.023925 0.021309 9.969450 9.369213 16.910421 18.771710 -7892 0.075571 0.059000 0.027817 0.030054 7.653373 6.727375 7.833687 6.904140 -7893 0.034334 0.037210 0.028120 0.022743 9.122677 8.775164 13.142504 9.387799 -7894 0.054530 0.049932 0.050136 0.033913 5.487889 5.860430 8.650038 6.414061 -7895 0.065100 0.055714 0.039125 0.043938 8.929733 8.158693 13.132979 9.796327 -7896 0.099568 0.080480 0.044540 0.033251 7.828180 5.358107 12.282873 7.887747 -7897 0.091298 0.063650 0.043378 0.032591 16.893535 11.519827 16.251543 14.857953 -7898 0.073307 0.038479 0.063829 0.031009 12.514220 8.401885 16.932209 11.861094 -7899 0.051171 0.046092 0.047062 0.038942 11.254665 11.146138 16.270424 13.256902 -7900 0.063624 0.040733 0.020399 0.019593 5.693563 8.212828 7.713781 10.438473 -7901 0.102573 0.050079 0.039083 0.021060 12.418183 9.648761 13.121761 12.243203 -7902 0.043356 0.032146 0.022975 0.020343 7.804963 7.408087 15.839312 15.163484 -7903 0.092399 0.079291 0.046704 0.041127 10.066948 11.374158 13.668666 15.556453 -7904 0.089586 0.075332 0.052517 0.045310 11.408747 7.596048 12.593060 10.317161 -7905 0.048368 0.045640 0.025816 0.030984 10.056770 7.519650 8.260202 6.723218 -7906 0.055534 0.065105 0.036088 0.028409 7.393934 7.372182 9.344154 7.261725 -7907 0.055970 0.054848 0.043342 0.043651 14.458675 9.690083 14.191546 8.562662 -7908 0.086732 0.082455 0.041464 0.033858 12.910559 9.186264 11.365328 9.469078 -7909 0.087810 0.104363 0.060451 0.077609 11.024751 10.085051 16.040518 15.356958 -7910 0.062291 0.054525 0.025515 0.017998 6.912227 6.469659 10.119314 8.745407 -7911 0.043141 0.057314 0.038058 0.035302 9.521623 11.103398 13.201408 12.249237 -7912 0.091695 0.080149 0.058135 0.060834 17.594696 13.743669 23.567695 17.761044 -7913 0.073460 0.061309 0.039579 0.028404 10.828020 10.371646 13.665457 11.769743 -7914 0.068045 0.050604 0.046159 0.023889 8.513224 6.630125 11.516543 10.212959 -7915 0.090147 0.062656 0.043252 0.031349 9.835761 8.061794 10.959666 9.712260 -7916 0.065138 0.055114 0.042245 0.040982 9.557696 9.312912 12.550833 18.122205 -7917 0.061784 0.064079 0.037996 0.033049 10.918353 8.925035 14.669998 14.063796 -7918 0.070480 0.057240 0.031516 0.031617 8.993392 9.067756 12.212353 11.992376 -7919 0.039786 0.033846 0.025988 0.020346 10.746973 7.982443 10.624707 10.050479 -7920 0.052939 0.038563 0.032758 0.026507 10.018324 7.634640 8.729748 7.663470 -7921 0.081830 0.068605 0.058809 0.048790 11.376264 11.555742 15.107500 13.664158 -7922 0.086880 0.067384 0.081835 0.085045 12.402449 12.577292 12.916263 11.993821 -7923 0.100790 0.075400 0.042207 0.037112 15.315888 14.344726 15.955472 13.663032 -7924 0.086379 0.079544 0.052977 0.055627 8.603934 8.893669 11.362603 10.309684 -7925 0.070609 0.078734 0.057294 0.048447 8.159251 9.428806 12.308565 9.946533 -7926 0.132896 0.104971 0.114308 0.068470 13.427440 8.717136 13.647578 10.815580 -7927 0.103190 0.066355 0.068911 0.045299 15.098622 11.698296 16.959403 16.292665 -7928 0.087204 0.077436 0.052906 0.043764 10.309086 8.048875 10.199336 10.613660 -7929 0.063232 0.064240 0.053620 0.031502 6.670988 6.460257 9.705929 9.082936 -7930 0.053306 0.062320 0.040215 0.040027 11.199799 9.602952 11.677699 9.874775 -7931 0.078838 0.060130 0.055341 0.050514 8.710632 6.730873 11.173508 8.844505 -7932 0.060103 0.037987 0.019842 0.016996 6.895053 7.219715 9.680090 9.301121 -7933 0.081328 0.069431 0.047100 0.047732 12.295249 11.307238 14.717280 12.279163 -7934 0.055964 0.059867 0.035163 0.023337 8.121515 8.164526 16.396518 12.210245 -7935 0.046671 0.056193 0.033567 0.042324 10.332497 10.051299 13.622732 10.440928 -7936 0.072931 0.068780 0.052816 0.053368 8.706842 8.219487 14.851158 13.589375 -7937 0.108359 0.103117 0.100233 0.112236 11.903559 13.326539 13.229743 15.308487 -7938 0.085654 0.087884 0.061247 0.062356 9.863887 8.958949 16.909873 14.020372 -7939 0.118320 0.093762 0.053788 0.036621 13.002229 11.358755 18.994590 16.017076 -7940 0.064866 0.066691 0.045178 0.056626 8.138093 6.098739 11.590181 9.739873 -7941 0.066786 0.067097 0.059362 0.046412 12.367276 7.508372 11.772303 8.428006 -7942 0.083838 0.053354 0.038700 0.029589 11.438778 9.941148 15.913765 13.915413 -7943 0.067468 0.045654 0.044387 0.034141 11.930781 12.541774 17.573403 16.422488 -7944 0.066125 0.059485 0.033689 0.028687 12.789769 9.721052 15.205826 11.116407 -7945 0.048727 0.042361 0.014493 0.014700 5.776954 4.439657 11.011700 9.461684 -7946 0.092882 0.089246 0.064731 0.078733 14.750194 8.194552 16.961492 12.388789 -7947 0.062908 0.037109 0.039737 0.034205 14.876867 12.033851 13.518258 12.597728 -7948 0.075451 0.070212 0.069414 0.056861 7.119447 8.004787 11.544097 10.922463 -7949 0.104546 0.080078 0.043271 0.047039 12.940379 14.031664 16.984584 16.677607 -7950 0.134777 0.108719 0.074722 0.061566 12.744562 11.787109 19.413312 14.158397 -7951 0.069795 0.084165 0.031685 0.042177 8.926150 7.330804 7.709464 7.869566 -7952 0.090807 0.102944 0.046692 0.058858 10.618668 10.697816 10.956594 9.275663 -7953 0.044650 0.036056 0.024145 0.022674 15.607800 13.636646 9.672561 11.750351 -7954 0.068952 0.046382 0.033520 0.020225 10.939702 9.618411 14.330197 11.832295 -7955 0.068846 0.080075 0.035222 0.034993 10.657188 9.612778 16.556313 16.583142 -7956 0.128265 0.106023 0.073440 0.061063 11.918839 10.239366 13.788539 10.450403 -7957 0.101157 0.061673 0.072138 0.059758 10.981101 11.224598 16.659052 12.005545 -7958 0.045175 0.043054 0.023245 0.021783 9.580672 10.485615 9.497654 9.860116 -7959 0.043932 0.042568 0.031678 0.026694 8.542412 7.784623 10.077497 9.488205 -7960 0.067284 0.067351 0.041409 0.040271 9.019933 6.462458 13.626507 11.959974 -7961 0.093926 0.056311 0.054745 0.033716 9.380389 10.102545 13.328743 10.866250 -7962 0.047185 0.059627 0.030433 0.027441 10.321680 10.013223 10.710703 9.449554 -7963 0.080329 0.095354 0.044708 0.052239 9.465562 7.477971 12.430206 10.668838 -7964 0.079478 0.058345 0.066687 0.042608 12.718939 9.626056 21.031857 14.550288 -7965 0.041392 0.049338 0.022550 0.019356 8.156230 6.512438 8.589205 7.941522 -7966 0.041175 0.052386 0.018748 0.021472 7.165016 7.577989 7.733232 8.477849 -7967 0.079698 0.063356 0.062755 0.036566 6.824794 7.048940 11.709740 10.424858 -7968 0.061484 0.048743 0.040123 0.030120 10.867769 8.264548 11.997813 12.150272 -7969 0.082388 0.073898 0.069944 0.062271 9.570413 10.995768 13.371572 14.621993 -7970 0.083780 0.077656 0.073825 0.072882 8.691747 8.040462 12.684977 10.356804 -7971 0.116117 0.122257 0.092943 0.092471 10.129323 9.926039 9.270826 10.353439 -7972 0.078331 0.082501 0.041708 0.038593 8.811738 6.155712 16.182250 13.477055 -7973 0.064988 0.074204 0.053046 0.034662 10.101603 13.939711 16.489800 16.227477 -7974 0.069461 0.046727 0.054976 0.029803 6.981894 5.208472 8.627013 8.061950 -7975 0.055339 0.032397 0.026744 0.016750 11.125572 10.152848 12.114932 12.084293 -7976 0.084380 0.065290 0.074113 0.057037 8.667343 7.443751 11.854088 9.447421 -7977 0.075658 0.051804 0.036214 0.023993 8.104614 6.865291 11.122789 8.793248 -7978 0.096430 0.100750 0.051787 0.036916 12.510326 11.560104 11.539008 10.632256 -7979 0.068844 0.049049 0.040370 0.035770 10.898861 12.369002 13.126665 13.246822 -7980 0.065231 0.059208 0.116001 0.080876 9.482402 8.598720 11.699260 8.530966 -7981 0.102732 0.102798 0.049240 0.043397 8.607221 7.064836 12.357477 14.371647 -7982 0.056027 0.036798 0.024826 0.018975 7.778285 6.775889 9.544786 8.989607 -7983 0.099017 0.069356 0.081969 0.037735 11.499888 10.652116 15.318463 12.931082 -7984 0.061009 0.037487 0.025507 0.024661 8.665038 7.815544 12.304781 9.751710 -7985 0.051298 0.030066 0.042687 0.033865 7.738239 6.477245 12.235086 8.602982 -7986 0.070172 0.061506 0.047185 0.026261 8.306800 7.223259 9.453591 8.784384 -7987 0.037044 0.030310 0.021243 0.018036 10.033323 8.693544 8.542335 7.275537 -7988 0.064549 0.044546 0.026052 0.029337 7.145234 6.685523 11.571893 8.626229 -7989 0.041625 0.039029 0.023854 0.019902 8.644133 9.781633 13.289002 10.989148 -7990 0.074214 0.066341 0.056137 0.046836 13.832966 11.807124 13.576566 11.870667 -7991 0.042326 0.049841 0.038411 0.035136 10.023769 9.812099 14.060159 13.622361 -7992 0.091495 0.065028 0.046913 0.039464 9.390721 7.772886 16.630578 12.638219 -7993 0.061620 0.051628 0.032656 0.036422 9.329643 8.856425 11.672208 9.961657 -7994 0.072151 0.075599 0.049476 0.035051 8.668273 6.945089 14.935085 10.535843 -7995 0.048706 0.048297 0.018452 0.020830 7.089825 4.670814 9.930978 9.266164 -7996 0.106874 0.101151 0.058135 0.052321 6.784539 6.324563 12.056171 10.362921 -7997 0.058200 0.052679 0.023530 0.025201 10.744914 10.591965 13.434249 12.132418 -7998 0.075476 0.075698 0.045160 0.045400 10.656466 10.697240 12.822364 10.807944 -7999 0.094927 0.087716 0.070396 0.067320 14.403085 13.706570 18.470018 17.282743 -8000 0.077245 0.069471 0.060990 0.041245 9.541434 6.818278 15.373675 11.076395 -8001 0.065049 0.048819 0.035692 0.025121 10.149590 9.195342 19.359151 12.267071 -8002 0.064032 0.079739 0.041755 0.049422 11.288910 9.695837 15.193459 14.038727 -8003 0.077384 0.077974 0.041171 0.040814 6.509409 6.175462 9.062400 7.544761 -8004 0.072027 0.050504 0.038490 0.022496 9.778028 10.030607 10.815812 12.353692 -8005 0.081568 0.071889 0.039765 0.040588 10.378847 9.585334 15.243459 13.128754 -8006 0.052568 0.053817 0.043591 0.023068 9.583618 9.187286 11.156867 11.065317 -8007 0.054873 0.048964 0.030295 0.026747 7.815217 7.786237 12.847392 14.650690 -8008 0.086877 0.078647 0.056105 0.028525 12.849247 8.897635 12.572563 10.275708 -8009 0.147053 0.064741 0.068055 0.038146 12.743009 13.386125 17.075752 16.500356 -8010 0.064928 0.062000 0.033968 0.035258 8.365010 10.467814 12.203510 12.383050 -8011 0.125659 0.115802 0.059041 0.050705 12.505812 8.682870 12.149076 8.803181 -8012 0.085296 0.081595 0.048423 0.038824 11.017770 14.032389 10.815583 10.367610 -8013 0.101245 0.094781 0.088068 0.069137 10.366306 9.234646 13.033779 10.650433 -8014 0.087192 0.087384 0.052971 0.046027 12.983027 12.227096 12.502478 12.989766 -8015 0.084751 0.093420 0.042766 0.040930 9.155935 7.842178 9.778924 7.688367 -8016 0.071762 0.055613 0.031368 0.037695 7.535752 6.648637 9.377244 7.795013 -8017 0.104363 0.081018 0.059020 0.050297 8.344390 6.898999 7.605436 6.465913 -8018 0.111024 0.089387 0.077675 0.064439 9.715191 9.597869 15.243371 13.421321 -8019 0.100166 0.073298 0.087303 0.058875 8.210270 8.884989 12.230245 13.767385 -8020 0.051348 0.048123 0.022957 0.027086 7.703409 7.475295 6.705659 8.101644 -8021 0.090613 0.072641 0.050516 0.024559 6.420672 5.908825 14.004258 11.444464 -8022 0.071228 0.049484 0.039315 0.028934 8.770268 9.962809 15.737234 14.149808 -8023 0.085157 0.068999 0.042467 0.032708 17.811332 15.393574 15.127047 17.608212 -8024 0.071671 0.053768 0.045194 0.028401 9.216497 8.494151 16.253784 15.526633 -8025 0.059691 0.048672 0.033703 0.032513 6.719417 4.982923 12.449965 10.375965 -8026 0.095390 0.082673 0.060616 0.051139 5.135783 6.384646 8.698494 7.949602 -8027 0.060938 0.058927 0.037424 0.027044 11.629458 11.803977 14.720647 13.192318 -8028 0.058493 0.050834 0.037191 0.035388 7.857066 6.837444 8.848040 10.279427 -8029 0.070494 0.069820 0.066701 0.043464 6.604098 8.179961 13.688552 15.864077 -8030 0.103449 0.059196 0.077540 0.045449 8.668770 8.565204 13.298710 9.955067 -8031 0.059873 0.068770 0.057972 0.040440 7.325249 5.306184 10.375342 7.345637 -8032 0.060472 0.060075 0.057003 0.058078 9.313637 5.431150 10.690556 7.375168 -8033 0.093780 0.064434 0.035400 0.028691 12.512798 9.963667 15.221288 15.154520 -8034 0.087582 0.059768 0.091012 0.048077 9.586651 7.809965 14.448815 11.823589 -8035 0.063459 0.058864 0.037896 0.029557 5.942560 5.979464 12.604108 12.751169 -8036 0.080164 0.066306 0.064323 0.037202 5.843559 6.681163 10.637952 11.331147 -8037 0.064872 0.045361 0.027660 0.016559 7.471763 6.704915 10.664984 9.754851 -8038 0.061331 0.066530 0.028073 0.026793 6.110239 6.535851 10.745187 11.106874 -8039 0.091710 0.074321 0.043156 0.044181 9.898110 8.963992 15.131189 12.363971 -8040 0.080066 0.066903 0.051680 0.043342 10.792572 8.679009 12.001837 10.853407 -8041 0.076140 0.052084 0.028467 0.018067 12.265267 10.323911 16.976049 12.651476 -8042 0.076690 0.081853 0.052504 0.055353 6.516280 5.945968 8.669695 6.687218 -8043 0.044465 0.034622 0.032781 0.027579 6.036198 6.760333 7.059712 6.054969 -8044 0.059585 0.057317 0.016646 0.014482 8.639175 7.573308 13.545506 10.966433 -8045 0.072377 0.066200 0.037076 0.025887 10.269846 8.996138 15.499067 14.451790 -8046 0.053605 0.051640 0.038234 0.030251 6.692962 5.815345 6.342909 6.343992 -8047 0.068958 0.057660 0.051699 0.034886 11.168622 9.869720 9.373595 8.163452 -8048 0.069579 0.047029 0.038599 0.031818 8.346416 8.347686 12.129415 12.789261 -8049 0.068934 0.064313 0.038807 0.039051 8.948880 7.471298 20.757448 16.150631 -8050 0.094114 0.065045 0.043102 0.025510 8.914373 8.621235 12.713342 13.907101 -8051 0.055529 0.043054 0.048279 0.045741 8.752539 7.850883 6.494569 7.529747 -8052 0.117280 0.061518 0.065154 0.041315 9.517776 6.809539 15.194325 13.454203 -8053 0.070939 0.062675 0.039456 0.026920 11.320955 10.214632 14.848043 13.727109 -8054 0.072450 0.055263 0.052715 0.029130 9.246894 11.848260 12.822884 13.239979 -8055 0.104644 0.104778 0.051845 0.055874 12.866830 9.951939 18.947223 14.689565 -8056 0.089897 0.101735 0.083093 0.055850 8.353064 7.774563 10.662550 9.409325 -8057 0.053912 0.053243 0.029892 0.026590 6.078726 5.741010 10.158239 10.010988 -8058 0.053620 0.058958 0.070122 0.062116 10.434022 9.589981 11.864577 12.614925 -8059 0.037753 0.046592 0.032045 0.044704 8.190876 8.256718 12.811373 13.742698 -8060 0.068502 0.055458 0.026639 0.024058 7.027685 6.862112 13.502207 12.084862 -8061 0.070512 0.050070 0.029275 0.024334 7.034351 6.578495 10.024910 8.617702 -8062 0.083153 0.056157 0.072073 0.053678 10.287417 9.323924 10.421021 10.626256 -8063 0.079563 0.062924 0.046584 0.047230 11.553147 11.007367 11.840079 9.601661 -8064 0.058008 0.053894 0.033484 0.019724 7.386173 6.630493 7.526338 6.355427 -8065 0.069405 0.065362 0.034232 0.028563 7.323450 5.775030 5.390558 5.616409 -8066 0.056644 0.040075 0.029699 0.024120 7.660765 6.303738 7.914175 5.180253 -8067 0.064702 0.051642 0.066889 0.048665 15.651788 11.255429 18.975622 14.515134 -8068 0.097345 0.079329 0.080922 0.068981 10.344815 9.601475 15.257238 14.587900 -8069 0.089137 0.076649 0.044347 0.036361 7.118520 5.834990 10.168253 11.347943 -8070 0.054786 0.047171 0.033489 0.030356 9.502824 7.506620 15.875615 14.578094 -8071 0.063654 0.066649 0.051937 0.042310 7.924997 6.930285 15.334003 11.090146 -8072 0.100838 0.083910 0.045738 0.040408 16.158593 12.400232 14.825369 13.968738 -8073 0.092207 0.088801 0.031388 0.032911 13.952257 11.901310 11.405243 9.881314 -8074 0.060977 0.044298 0.026160 0.019420 10.076095 8.877882 13.113470 11.194937 -8075 0.072709 0.080645 0.039985 0.038282 14.185759 14.387776 13.282778 14.051645 -8076 0.113528 0.115846 0.072719 0.074576 13.682398 12.113735 12.378691 10.425922 -8077 0.055448 0.045077 0.028337 0.022921 13.614127 11.105053 12.681396 11.970593 -8078 0.069192 0.077240 0.029485 0.041862 8.097584 7.059286 8.966410 9.728233 -8079 0.084004 0.066676 0.065813 0.053352 8.620549 9.915922 10.945669 10.102916 -8080 0.053090 0.051621 0.037547 0.038503 7.562777 8.040044 14.424604 15.315441 -8081 0.167010 0.111135 0.069958 0.061360 10.499226 9.850045 15.690084 13.479414 -8082 0.062504 0.053339 0.054928 0.035620 11.766926 9.621086 14.508943 14.550723 -8083 0.057185 0.057733 0.035802 0.029082 7.801076 7.756469 11.679639 11.123431 -8084 0.070001 0.065211 0.037136 0.032595 14.626050 12.421138 20.238131 14.999125 -8085 0.086134 0.077268 0.060423 0.065025 13.128186 14.990743 14.858896 16.730837 -8086 0.069426 0.065126 0.060950 0.077684 9.402398 7.964983 11.806684 11.738951 -8087 0.083803 0.086404 0.043886 0.042228 12.432271 11.574731 12.684824 12.616197 -8088 0.077513 0.057197 0.041329 0.018704 12.556151 11.345528 12.786981 15.456716 -8089 0.107935 0.118391 0.077265 0.060260 10.971777 9.531504 18.029506 17.577860 -8090 0.076427 0.080080 0.042327 0.067460 13.036209 11.678433 17.515474 18.102760 -8091 0.081149 0.080610 0.053628 0.038796 6.800170 7.077699 8.661591 7.983862 -8092 0.091670 0.064525 0.068003 0.042858 9.621966 9.804387 11.182540 7.454866 -8093 0.065910 0.069828 0.027731 0.031513 8.692268 6.363809 15.385987 9.034311 -8094 0.051118 0.063284 0.035441 0.038629 9.769133 7.276564 11.007899 10.266296 -8095 0.074317 0.074868 0.072878 0.050430 11.517139 7.708698 13.946839 9.710027 -8096 0.089203 0.102743 0.073418 0.094745 10.419299 9.659192 9.715358 10.621000 -8097 0.117019 0.088000 0.037972 0.023231 14.507864 11.207633 22.303530 17.334491 -8098 0.064019 0.060707 0.043696 0.037400 12.757581 10.152871 13.791426 12.887303 -8099 0.078035 0.062719 0.032800 0.027559 8.672107 6.262470 10.060348 9.434069 -8100 0.078242 0.059351 0.073137 0.041806 11.999592 9.541577 20.529253 10.609415 -8101 0.075592 0.061461 0.066932 0.042849 9.476905 10.780992 10.448150 10.844225 -8102 0.110124 0.072682 0.103402 0.053209 11.412034 8.826557 16.973426 12.760874 -8103 0.066885 0.053325 0.059254 0.058779 11.372039 15.522147 16.380486 15.456845 -8104 0.103823 0.064260 0.101783 0.065094 9.231698 7.844573 10.191174 9.194185 -8105 0.057717 0.052402 0.046859 0.045351 6.818601 6.230656 13.205263 12.114087 -8106 0.099293 0.078586 0.044164 0.030256 7.710523 6.355946 10.922099 10.203579 -8107 0.103227 0.065085 0.044690 0.023857 10.250205 11.530711 13.590236 12.951300 -8108 0.051843 0.043328 0.022297 0.022166 10.707027 8.754155 13.289905 9.583484 -8109 0.100512 0.107102 0.047557 0.070506 6.998499 6.903086 9.327197 8.866797 -8110 0.088871 0.072634 0.030095 0.027019 10.309494 9.498376 14.837892 15.001301 -8111 0.069702 0.061493 0.041520 0.032589 5.341320 5.732269 10.952362 11.392160 -8112 0.061702 0.053321 0.046626 0.043526 13.800751 13.182850 14.509116 13.470368 -8113 0.074991 0.079280 0.032753 0.040669 8.329071 8.169108 14.518131 12.464693 -8114 0.060887 0.074664 0.032469 0.038186 8.513423 7.101151 10.711549 11.644506 -8115 0.059542 0.067363 0.034330 0.030726 9.207348 8.649873 9.509830 9.097329 -8116 0.083742 0.084031 0.084705 0.054572 7.437517 6.048581 10.140357 8.408094 -8117 0.056931 0.055829 0.034919 0.025543 14.963453 11.725614 19.623850 15.246132 -8118 0.074703 0.066344 0.059860 0.053094 6.123800 7.181736 7.129033 8.226517 -8119 0.139083 0.089641 0.054431 0.052470 8.371328 8.050199 14.896450 13.055716 -8120 0.062379 0.046404 0.048562 0.038628 11.206015 7.812043 12.702136 10.346801 -8121 0.078710 0.039838 0.037421 0.016560 12.405149 14.320551 13.490211 13.599978 -8122 0.055941 0.052947 0.033279 0.027834 14.493594 11.792513 13.413018 12.587115 -8123 0.043603 0.043222 0.037462 0.028275 7.061949 5.752814 9.509229 5.978732 -8124 0.068734 0.066199 0.024990 0.023148 9.997575 10.958302 14.098094 15.196225 -8125 0.061133 0.059176 0.039589 0.040682 7.914537 7.028956 17.482212 14.281673 -8126 0.075709 0.059752 0.039896 0.027322 10.838922 12.473775 14.917232 12.815632 -8127 0.069611 0.066885 0.038684 0.042866 7.029958 4.694364 8.261652 6.814664 -8128 0.046332 0.036343 0.021101 0.021565 5.126574 4.970812 7.622812 8.716219 -8129 0.066319 0.064306 0.045612 0.044021 11.295064 8.620618 11.789605 8.151934 -8130 0.128684 0.100560 0.074816 0.070138 11.350249 9.094242 16.469817 14.279906 -8131 0.068469 0.067785 0.043589 0.038068 12.603570 9.162230 16.170374 15.056526 -8132 0.048347 0.057194 0.038134 0.036339 6.371116 7.111279 9.825928 14.279290 -8133 0.114028 0.081332 0.049264 0.052722 12.226535 8.572580 21.618837 15.133080 -8134 0.065000 0.069242 0.032109 0.040835 8.308784 5.936812 12.686647 12.718765 -8135 0.121680 0.096354 0.082351 0.054401 10.163192 11.082377 18.678406 20.021069 -8136 0.069190 0.066443 0.033576 0.028085 9.278283 9.306885 14.517035 14.886041 -8137 0.051329 0.045195 0.039918 0.046118 7.721803 8.424819 12.683769 11.327061 -8138 0.066485 0.066869 0.034145 0.038654 9.885010 8.713231 11.603357 9.575805 -8139 0.129859 0.084386 0.053538 0.046931 12.151066 13.025367 17.162069 14.838547 -8140 0.072215 0.062692 0.048633 0.031334 13.188056 10.639688 14.435883 12.988538 -8141 0.058903 0.041207 0.034993 0.018383 8.782648 5.928665 14.957739 9.638540 -8142 0.093924 0.092909 0.072261 0.069648 7.745386 5.725312 6.728296 5.321306 -8143 0.103202 0.079505 0.049378 0.038831 10.326930 10.650188 12.312794 11.211569 -8144 0.069233 0.068167 0.024239 0.026138 9.438473 8.326681 11.551852 7.900638 -8145 0.058876 0.070473 0.027070 0.039561 9.815627 8.927298 10.641857 9.371439 -8146 0.076381 0.070219 0.043369 0.042966 12.036589 14.915987 10.953175 14.413694 -8147 0.060996 0.055724 0.036745 0.025678 8.076468 8.709706 12.830312 14.967009 -8148 0.101829 0.097771 0.059077 0.047181 7.356095 4.895401 9.660827 7.682305 -8149 0.091851 0.109485 0.043426 0.067448 22.811106 15.850895 24.538826 19.943772 -8150 0.093779 0.115563 0.047004 0.052750 13.581546 10.749326 19.503917 13.932606 -8151 0.081493 0.058770 0.031877 0.026352 10.327644 8.463571 10.826173 9.279499 -8152 0.033168 0.033573 0.021668 0.014301 7.568423 5.746130 13.938120 9.214462 -8153 0.106003 0.085890 0.084368 0.052068 12.273322 9.604623 19.975727 13.764971 -8154 0.072807 0.065658 0.036081 0.039363 8.884248 7.061337 10.853853 10.442969 -8155 0.089758 0.086143 0.057413 0.034604 12.021213 10.415928 16.190773 12.914115 -8156 0.081728 0.062974 0.064949 0.043963 11.264944 9.946808 13.285123 11.779800 -8157 0.098114 0.096476 0.035036 0.032490 9.170353 8.854557 12.057401 12.660455 -8158 0.085482 0.062071 0.064648 0.042444 9.997971 8.065352 7.629271 7.466138 -8159 0.052935 0.052197 0.033210 0.029746 8.547300 7.976405 14.392962 13.259959 -8160 0.066626 0.051296 0.065514 0.045427 9.312474 7.219040 10.508149 9.612319 -8161 0.066327 0.062876 0.043947 0.034198 10.594909 8.192328 12.077736 10.782415 -8162 0.061211 0.055442 0.038963 0.051589 14.203600 11.083733 10.075241 9.288348 -8163 0.092588 0.065207 0.098455 0.044074 17.279399 15.434420 15.115549 14.463948 -8164 0.078704 0.068654 0.046503 0.045727 11.360642 9.712642 17.234983 12.763567 -8165 0.070677 0.070890 0.025498 0.036338 9.787097 8.416331 10.801177 11.037047 -8166 0.098491 0.075404 0.081024 0.063624 14.730448 13.594637 20.261519 18.048916 -8167 0.075988 0.059277 0.029283 0.027519 8.117011 6.828786 11.749886 8.875737 -8168 0.058748 0.058886 0.040990 0.029736 7.624299 6.411051 10.652971 8.206366 -8169 0.076943 0.074000 0.073373 0.034106 8.967369 7.394028 10.917067 8.723139 -8170 0.057505 0.056908 0.033640 0.034928 11.708141 8.052428 10.595556 9.695671 -8171 0.123968 0.129857 0.073199 0.067650 14.077480 9.716059 16.670780 12.931844 -8172 0.051135 0.060649 0.025110 0.021142 13.055049 11.557799 10.841428 11.361383 -8173 0.064540 0.047375 0.037358 0.022900 9.790064 10.991139 11.160608 11.605293 -8174 0.087626 0.083501 0.060096 0.046437 9.699495 7.320905 12.405318 10.966724 -8175 0.053815 0.059051 0.055030 0.048273 8.414707 6.635767 14.268871 10.692247 -8176 0.060692 0.067010 0.035202 0.041985 7.180566 5.692605 12.328525 10.764788 -8177 0.057062 0.045430 0.025329 0.027600 12.137057 10.928556 13.048316 11.535593 -8178 0.103963 0.099637 0.072270 0.080215 12.353240 8.932068 16.487127 12.628425 -8179 0.051175 0.046477 0.045238 0.032736 14.632256 10.870310 18.613652 14.273638 -8180 0.080940 0.079028 0.083176 0.055557 11.651718 9.931908 10.503661 10.792303 -8181 0.058065 0.064920 0.025938 0.034985 7.491963 7.903387 10.131668 9.570243 -8182 0.092974 0.096345 0.071924 0.086378 18.169299 18.113522 17.279821 14.780700 -8183 0.094299 0.070545 0.061130 0.036892 9.755202 10.184882 9.770226 9.586208 -8184 0.084366 0.069051 0.032744 0.045648 9.947946 9.451564 13.359053 13.284673 -8185 0.066855 0.049605 0.027739 0.031190 8.380800 7.037088 10.796677 9.634634 -8186 0.073527 0.051280 0.076419 0.039413 8.385798 8.598615 7.857114 6.768625 -8187 0.086719 0.071021 0.050833 0.037316 8.518417 7.534395 11.890096 9.401701 -8188 0.065449 0.055383 0.035331 0.027148 10.966205 6.652479 18.019639 11.785224 -8189 0.081100 0.057976 0.048898 0.039546 7.308566 7.026729 9.942087 9.387556 -8190 0.067560 0.061398 0.037038 0.030992 8.977095 7.081977 12.034068 7.932544 -8191 0.101698 0.074622 0.059439 0.065394 9.157538 7.617074 12.287055 11.004081 -8192 0.074846 0.069465 0.051428 0.056135 9.700623 7.072544 12.437225 12.032512 -8193 0.043535 0.042904 0.034484 0.026756 9.066350 8.817526 13.907085 13.639099 -8194 0.080243 0.052343 0.054704 0.034880 8.387488 6.925507 13.915454 13.228609 -8195 0.047130 0.040764 0.026674 0.022832 12.531562 12.706465 12.591228 13.308937 -8196 0.135105 0.078037 0.089912 0.051499 8.961606 8.879746 11.493996 10.937322 -8197 0.093716 0.075049 0.059092 0.044980 7.934589 7.764910 14.944119 14.656224 -8198 0.055346 0.052508 0.026994 0.030441 8.032502 6.147157 13.458046 12.337239 -8199 0.044684 0.071207 0.061379 0.088024 7.859943 6.533249 9.117208 9.243224 -8200 0.058682 0.045983 0.018060 0.018260 13.650341 13.378116 15.349093 19.188120 -8201 0.062292 0.042029 0.037754 0.020634 5.992971 5.657781 10.045607 9.408610 -8202 0.044282 0.037981 0.037708 0.034383 7.095295 5.950292 11.304872 9.607269 -8203 0.072845 0.065260 0.037794 0.050840 8.295097 9.251083 11.484425 10.122566 -8204 0.050506 0.040569 0.028424 0.019179 13.462913 11.910405 11.487270 11.545624 -8205 0.048520 0.040046 0.041296 0.021787 11.022373 6.049844 13.204569 6.473557 -8206 0.067948 0.050899 0.038262 0.036352 11.043664 10.476892 10.125157 8.931371 -8207 0.067086 0.074434 0.026078 0.028642 11.867704 9.019699 10.345579 10.643679 -8208 0.133613 0.108584 0.102128 0.090942 10.593415 9.675985 16.076525 17.236879 -8209 0.078695 0.076225 0.053943 0.063349 10.550880 9.573584 13.729684 11.674696 -8210 0.070339 0.063557 0.051844 0.043605 8.461640 8.412355 15.040921 15.592260 -8211 0.076200 0.065292 0.027069 0.025800 11.269265 9.785310 12.298716 9.906411 -8212 0.053481 0.054084 0.041890 0.043504 12.944317 10.604638 14.597992 14.095746 -8213 0.057733 0.056159 0.020376 0.014339 6.552942 5.971908 10.385461 9.892932 -8214 0.084465 0.075663 0.044738 0.043803 9.101125 7.535384 9.690759 8.739714 -8215 0.095774 0.088377 0.049773 0.057856 14.499025 11.615017 14.278453 12.361604 -8216 0.056556 0.052754 0.033969 0.036207 8.725021 8.643289 9.196064 9.414594 -8217 0.084702 0.072312 0.053843 0.034821 10.186034 9.504795 13.360613 12.598193 -8218 0.065084 0.075436 0.042473 0.037456 5.175029 4.841361 10.542050 8.654726 -8219 0.129553 0.113776 0.061597 0.047074 9.478628 9.204782 17.258595 12.679529 -8220 0.056992 0.049710 0.043562 0.036815 7.618090 7.028030 8.018406 6.465228 -8221 0.070609 0.062615 0.032317 0.034476 9.985887 8.305852 10.934385 10.766028 -8222 0.053445 0.051321 0.045022 0.027363 10.881838 11.455142 16.495682 15.541524 -8223 0.108585 0.085708 0.053584 0.033461 8.644173 6.172243 11.335701 9.508912 -8224 0.092816 0.097706 0.060413 0.063490 14.239110 12.509020 15.138183 17.300947 -8225 0.071240 0.059333 0.040843 0.025371 9.174542 7.557986 8.715850 6.931409 -8226 0.080325 0.077808 0.063248 0.050702 15.518206 12.512599 20.443357 18.273684 -8227 0.057236 0.049212 0.031434 0.028993 8.179563 7.145442 14.434420 9.591334 -8228 0.056064 0.051703 0.025185 0.025715 9.068926 6.406515 15.522356 10.286363 -8229 0.071322 0.062606 0.042299 0.042127 8.302980 8.549388 12.451102 11.833725 -8230 0.070919 0.083652 0.041676 0.031616 9.633692 9.064150 13.982059 11.712788 -8231 0.068987 0.045670 0.038303 0.028523 8.306028 7.059990 16.598919 13.998938 -8232 0.094071 0.060696 0.062010 0.045863 9.755564 7.307990 10.738517 8.261283 -8233 0.046652 0.041042 0.019528 0.018635 8.469125 7.857843 8.776726 10.055873 -8234 0.066629 0.055042 0.043882 0.038808 11.077984 11.113602 10.870202 10.329970 -8235 0.065382 0.065872 0.061850 0.039369 8.450548 7.706771 10.933769 9.063186 -8236 0.050536 0.038450 0.036139 0.028944 12.020729 11.814431 16.614346 13.875705 -8237 0.071713 0.081763 0.052056 0.054169 10.379034 7.131738 16.601270 12.983303 -8238 0.056995 0.051420 0.057858 0.067322 8.452973 6.608354 11.809979 9.698176 -8239 0.045444 0.041920 0.043503 0.030437 9.891823 9.644734 11.273841 11.596758 -8240 0.109749 0.088120 0.076018 0.056826 9.126802 7.240502 11.339673 11.512784 -8241 0.081752 0.070548 0.058958 0.051537 12.814494 9.841316 16.846057 12.984492 -8242 0.134621 0.087314 0.059774 0.040711 8.505475 10.935575 14.791749 15.013948 -8243 0.154172 0.111269 0.062903 0.045715 13.789121 12.057620 12.897405 12.349996 -8244 0.087034 0.059443 0.054034 0.051260 10.354067 8.662760 15.098488 13.321783 -8245 0.141975 0.104500 0.067541 0.039194 8.812066 8.740862 10.414915 9.750858 -8246 0.066161 0.050392 0.035671 0.017919 12.171608 9.055428 10.282678 10.303280 -8247 0.088323 0.079612 0.039855 0.035850 13.697603 11.451909 24.004597 20.300304 -8248 0.066114 0.060083 0.053671 0.028543 8.036047 6.757108 7.552634 8.152699 -8249 0.062332 0.074800 0.052937 0.053501 7.627816 5.183621 11.156682 8.845223 -8250 0.090713 0.076511 0.047146 0.035943 8.902597 7.496294 15.125779 13.849066 -8251 0.126520 0.098914 0.089296 0.067414 7.989931 6.048329 14.412673 12.286202 -8252 0.103369 0.084857 0.046548 0.025810 6.868831 5.075717 7.532078 6.310242 -8253 0.094191 0.069151 0.058112 0.046024 8.501230 8.186117 10.138144 12.225163 -8254 0.064586 0.039492 0.060878 0.033225 8.271658 9.229733 12.108123 10.697124 -8255 0.092480 0.054900 0.086004 0.063019 8.552427 7.422992 10.933376 8.318936 -8256 0.053443 0.057177 0.035943 0.023918 7.504329 6.702081 9.861519 8.105243 -8257 0.092625 0.068556 0.055849 0.046741 8.855925 10.288125 11.173729 9.743686 -8258 0.041516 0.041698 0.029332 0.019845 8.517999 6.995377 11.211380 9.990505 -8259 0.082481 0.064406 0.025761 0.017423 13.719974 12.643740 12.940460 10.699561 -8260 0.089783 0.065826 0.068866 0.060376 9.914232 8.728905 16.753809 11.171195 -8261 0.065545 0.088230 0.047692 0.052850 7.757796 7.772171 11.666718 10.377050 -8262 0.064741 0.077111 0.039347 0.028381 11.437986 11.885053 18.910805 16.705995 -8263 0.062874 0.058517 0.038275 0.037856 10.033000 10.266473 10.281574 10.789360 -8264 0.057686 0.067259 0.050919 0.027530 8.694132 7.019183 10.917516 9.630886 -8265 0.045798 0.042512 0.030578 0.023790 8.350182 7.562431 9.915752 10.765954 -8266 0.068417 0.058708 0.052957 0.033691 8.655237 7.813580 12.086160 10.993372 -8267 0.058285 0.060352 0.032079 0.042316 11.379148 9.506166 9.220913 7.721044 -8268 0.087093 0.082708 0.040407 0.035877 11.732969 8.339120 18.733186 11.992421 -8269 0.089829 0.069239 0.062607 0.031310 9.155828 9.392079 9.751415 8.130134 -8270 0.062712 0.046145 0.038437 0.029954 8.493601 7.053155 11.810827 10.921026 -8271 0.044452 0.040854 0.028496 0.022523 7.206501 8.715894 11.387226 11.980522 -8272 0.046344 0.050268 0.023856 0.030059 14.238604 9.694075 20.167506 14.377490 -8273 0.037933 0.032715 0.024538 0.013824 7.959595 8.664672 10.768637 12.772259 -8274 0.080142 0.049025 0.044469 0.032784 10.378509 9.852279 13.735728 12.520423 -8275 0.073932 0.054625 0.027581 0.018373 7.317120 5.975116 9.039633 8.678342 -8276 0.052144 0.053393 0.042537 0.037135 7.862875 5.431251 10.140162 7.358360 -8277 0.050042 0.044864 0.018087 0.017301 10.718924 10.761480 20.130073 19.752292 -8278 0.073297 0.067561 0.046615 0.047722 6.245005 7.668342 11.068806 10.191593 -8279 0.058240 0.043714 0.040876 0.026775 10.787711 10.475179 11.320935 9.749944 -8280 0.056365 0.074218 0.063712 0.052856 9.078392 7.635596 12.692418 9.731273 -8281 0.051065 0.050012 0.055928 0.046377 8.368675 11.179285 8.573652 9.544855 -8282 0.093575 0.062401 0.077206 0.035060 10.834193 10.068788 17.214465 19.023097 -8283 0.054530 0.075777 0.053222 0.062785 15.775092 11.771619 17.530576 13.968132 -8284 0.131642 0.111333 0.101835 0.093087 9.371113 10.059221 16.692966 15.914994 -8285 0.098464 0.081452 0.035627 0.045063 6.381284 5.730728 10.100039 11.712707 -8286 0.167547 0.123563 0.098989 0.088113 8.796620 7.337878 15.110027 10.557001 -8287 0.086477 0.061655 0.052263 0.046995 8.513528 8.736945 10.603980 12.175743 -8288 0.078608 0.093462 0.040664 0.041208 7.953381 8.838898 15.877400 14.038626 -8289 0.103934 0.103642 0.043987 0.056550 11.276440 9.506784 19.433126 15.391774 -8290 0.081753 0.071733 0.052113 0.034321 14.783190 11.375578 16.193864 13.313036 -8291 0.070608 0.059760 0.052403 0.039929 8.628296 8.667813 9.105225 8.238178 -8292 0.061910 0.091912 0.049767 0.081072 11.094998 7.782510 15.234235 13.869600 -8293 0.059428 0.051504 0.037159 0.017621 9.314476 7.417766 12.303194 11.013978 -8294 0.063590 0.040134 0.062532 0.031081 12.771017 11.001643 18.001921 13.678873 -8295 0.049394 0.036968 0.027723 0.024475 8.354563 6.434210 11.777833 9.439305 -8296 0.120229 0.102016 0.083990 0.049069 9.494255 9.136568 20.324807 15.252737 -8297 0.075209 0.081849 0.062132 0.054678 9.444525 8.658278 11.419445 9.297146 -8298 0.094634 0.070606 0.054761 0.060422 12.777799 13.673750 21.279799 20.725224 -8299 0.093725 0.061151 0.049356 0.031337 12.933131 10.795611 15.223694 14.623605 -8300 0.046112 0.037705 0.024317 0.021574 7.980813 6.111853 11.859097 8.717441 -8301 0.090599 0.077931 0.087663 0.082606 8.081238 9.833334 13.874226 12.396855 -8302 0.067988 0.061050 0.039585 0.027860 11.494338 10.010206 12.938652 12.009564 -8303 0.078952 0.082453 0.047402 0.041544 6.003018 7.978628 9.886367 10.659717 -8304 0.086458 0.067896 0.079951 0.051565 12.135809 9.878158 12.526522 12.517086 -8305 0.076403 0.051877 0.045196 0.034882 14.386553 11.715761 12.909388 10.904157 -8306 0.071570 0.051037 0.067674 0.044547 9.662526 8.662856 13.126740 10.764127 -8307 0.111500 0.086848 0.059372 0.059974 9.017069 10.204519 13.656158 16.041461 -8308 0.055202 0.047489 0.029564 0.017162 11.180809 8.817153 13.259029 11.578252 -8309 0.085952 0.055175 0.042838 0.027079 6.880789 5.835751 11.674726 10.778834 -8310 0.076031 0.057754 0.038961 0.034310 9.453701 6.645719 12.442801 7.850002 -8311 0.072218 0.052588 0.034745 0.031609 6.905380 5.388805 7.691464 7.183304 -8312 0.091581 0.099712 0.032570 0.046152 8.720562 8.848893 8.807803 10.164249 -8313 0.068856 0.069682 0.065012 0.055950 12.924978 9.643374 12.208626 12.486990 -8314 0.067974 0.080515 0.035409 0.039163 10.921967 10.341019 14.525751 14.551972 -8315 0.059300 0.054176 0.051526 0.039065 11.076115 8.777190 11.476658 10.531620 -8316 0.147567 0.147093 0.096309 0.088199 15.689708 15.967242 16.658871 15.985546 -8317 0.104232 0.091027 0.067660 0.065208 18.373016 14.857954 16.716925 12.092680 -8318 0.079209 0.047616 0.053937 0.050157 14.173794 11.104054 16.465075 12.453236 -8319 0.080952 0.072007 0.035588 0.035146 10.347770 9.229541 13.499635 12.600846 -8320 0.074188 0.048349 0.052508 0.031634 6.148470 6.854773 13.550736 11.334306 -8321 0.042097 0.042662 0.021281 0.018789 8.946308 8.392609 13.788478 12.584845 -8322 0.049057 0.034055 0.048661 0.030935 9.060501 7.055957 13.725968 11.509069 -8323 0.079113 0.064555 0.040624 0.028082 9.019551 7.477788 8.147175 6.741666 -8324 0.057441 0.057571 0.050407 0.041969 9.676397 7.975482 13.386601 9.456370 -8325 0.059083 0.042482 0.045599 0.026542 7.106072 6.523817 12.307724 12.225405 -8326 0.047402 0.042900 0.019352 0.020237 7.269959 6.643712 10.591382 11.281159 -8327 0.041290 0.035808 0.018248 0.015703 8.325409 7.494393 11.050379 11.728779 -8328 0.045317 0.038581 0.030045 0.022038 7.114437 6.375212 6.607061 6.693682 -8329 0.081604 0.082500 0.084634 0.081814 12.458527 10.642905 17.263035 15.775758 -8330 0.112281 0.066467 0.068651 0.036835 10.009559 7.437205 12.301413 12.698442 -8331 0.068542 0.058624 0.060119 0.044176 7.773479 6.819287 14.739592 10.634520 -8332 0.094844 0.087263 0.069736 0.052351 6.202100 7.370943 10.033176 9.680021 -8333 0.033038 0.033035 0.023296 0.023808 7.054260 7.410710 11.629959 11.278336 -8334 0.108216 0.098034 0.086069 0.065458 11.977891 9.860493 20.398640 16.355125 -8335 0.074593 0.065439 0.050798 0.052100 9.525337 9.668273 13.462803 13.888643 -8336 0.127295 0.097955 0.063024 0.052029 9.888551 8.959377 11.348539 9.853630 -8337 0.052801 0.051623 0.024975 0.020760 7.482429 5.476469 9.613279 9.180166 -8338 0.120967 0.100333 0.064070 0.039280 10.668414 11.406668 12.774064 12.220644 -8339 0.071129 0.070916 0.050517 0.068867 9.959738 7.333653 15.852686 13.778066 -8340 0.107479 0.089252 0.069764 0.037905 11.448833 7.800947 14.581135 13.393731 -8341 0.095022 0.078686 0.050326 0.045877 10.717981 8.501896 12.795159 11.363222 -8342 0.076132 0.079308 0.038014 0.034039 10.901432 9.354793 17.886016 15.885901 -8343 0.087109 0.092429 0.050441 0.037516 6.806847 6.736762 10.615511 10.569302 -8344 0.041851 0.036924 0.025744 0.019126 6.823005 6.168309 14.844275 9.700363 -8345 0.148500 0.108344 0.041979 0.036043 10.367836 9.380417 16.562727 16.303310 -8346 0.069486 0.076449 0.028500 0.027465 12.182538 12.093057 18.949500 14.743933 -8347 0.089828 0.069620 0.051485 0.038698 11.650335 9.326875 12.719897 9.207736 -8348 0.099433 0.094912 0.044901 0.044638 9.602330 10.470863 11.471611 13.967720 -8349 0.076586 0.061353 0.052694 0.038442 6.755289 6.997063 12.253971 11.421754 -8350 0.066246 0.087141 0.053447 0.052928 9.459204 8.788274 12.941250 10.972198 -8351 0.070605 0.045955 0.045733 0.039205 9.189423 7.873584 12.935924 8.778182 -8352 0.108070 0.119769 0.070234 0.067461 11.116525 12.091894 16.747902 15.376408 -8353 0.077574 0.079328 0.045146 0.044248 8.529211 9.247814 13.972626 13.276850 -8354 0.032957 0.041751 0.024373 0.031670 9.573365 8.420890 14.912250 13.326041 -8355 0.068904 0.043098 0.041102 0.025313 6.691403 6.459074 9.880738 7.514401 -8356 0.092567 0.096659 0.102410 0.080212 14.455542 14.413202 16.240509 14.568951 -8357 0.082253 0.051332 0.051634 0.031281 13.888402 10.616485 12.471182 18.594577 -8358 0.161581 0.117565 0.117619 0.082098 9.718057 8.699159 10.668445 9.702429 -8359 0.050696 0.054663 0.047317 0.037001 14.466915 16.428665 18.652946 20.201072 -8360 0.120385 0.051122 0.098148 0.034001 12.661709 12.083337 19.262964 15.765594 -8361 0.054283 0.054064 0.042732 0.046156 10.093079 7.818272 9.319971 9.160952 -8362 0.093045 0.054465 0.044837 0.027655 12.117825 10.932471 8.292528 8.491952 -8363 0.074802 0.051485 0.044106 0.024869 10.339051 8.692330 11.960760 10.953524 -8364 0.111382 0.083001 0.107569 0.065167 11.525968 9.522106 19.142910 13.381407 -8365 0.066533 0.045150 0.029756 0.020660 7.389219 6.814777 9.218482 10.258217 -8366 0.056492 0.066200 0.030566 0.028856 14.048255 14.371554 15.314482 13.170154 -8367 0.083070 0.077360 0.051868 0.048748 9.027328 9.110192 9.117762 8.043703 -8368 0.086833 0.087198 0.063512 0.061753 8.013030 7.944992 12.997370 12.180254 -8369 0.066606 0.056670 0.043127 0.025548 8.342266 6.331616 11.826886 8.585474 -8370 0.079033 0.073384 0.047909 0.035014 7.264469 7.587526 11.136180 11.122671 -8371 0.096635 0.073426 0.036724 0.034470 7.565673 8.328347 12.179092 12.002326 -8372 0.097287 0.063980 0.044396 0.038272 11.804892 9.692969 9.408489 9.846123 -8373 0.059114 0.059388 0.042369 0.038483 10.831503 8.581995 16.488353 14.632734 -8374 0.097038 0.082382 0.045165 0.037506 11.247119 11.137553 12.413883 11.322020 -8375 0.083269 0.059258 0.063920 0.039273 8.121293 8.319149 11.006280 10.582678 -8376 0.055756 0.064509 0.031052 0.024006 9.246273 7.469028 14.705911 12.309127 -8377 0.041082 0.029490 0.041845 0.022195 8.416035 6.776443 12.658014 10.775027 -8378 0.049517 0.051875 0.038034 0.032279 8.882543 7.674668 17.703014 11.625353 -8379 0.060830 0.050871 0.041510 0.030388 9.484352 9.006718 13.736839 14.292468 -8380 0.059037 0.044204 0.072406 0.043064 9.829243 8.464692 12.842716 13.453541 -8381 0.094134 0.056931 0.031720 0.022580 7.282636 6.388468 9.941675 7.544257 -8382 0.094688 0.077257 0.108614 0.086605 8.235477 7.932786 15.657622 12.344069 -8383 0.039596 0.028162 0.029361 0.016036 6.462263 6.783359 7.585951 9.217258 -8384 0.043753 0.033131 0.032257 0.020023 9.530703 6.979035 11.206041 10.518959 -8385 0.068392 0.104364 0.062054 0.059584 9.458443 6.293557 11.922381 11.124444 -8386 0.063433 0.055514 0.044887 0.035721 8.694085 7.521465 5.610385 5.835704 -8387 0.088745 0.080271 0.046847 0.026577 12.725635 9.242902 14.121735 15.521207 -8388 0.072233 0.070399 0.044026 0.031713 9.032957 8.519549 12.189342 9.541808 -8389 0.057685 0.044290 0.029565 0.034310 7.585421 5.946519 9.505968 8.561072 -8390 0.057584 0.046159 0.040757 0.031003 12.192404 7.769130 12.017594 8.905368 -8391 0.092052 0.064186 0.046963 0.040125 8.785825 9.805106 16.487714 16.281182 -8392 0.079842 0.066880 0.048216 0.038036 12.028656 8.329806 18.049336 13.542915 -8393 0.108467 0.080303 0.076081 0.058404 10.664563 8.323496 11.367880 9.223776 -8394 0.073480 0.070196 0.050396 0.041445 10.117956 10.336166 10.831116 8.425636 -8395 0.089294 0.107660 0.059836 0.051317 12.417800 9.587690 15.619856 16.564360 -8396 0.094622 0.086522 0.055297 0.043458 11.175330 10.980664 9.758514 8.703546 -8397 0.066218 0.059033 0.032862 0.038314 9.539247 7.572880 13.146976 13.487822 -8398 0.063390 0.061829 0.041436 0.042688 8.935827 8.626397 12.337464 12.415284 -8399 0.050883 0.046949 0.038479 0.025198 7.553312 8.715731 10.738155 12.187180 -8400 0.086576 0.071936 0.076829 0.053198 11.931402 11.220938 17.350247 15.453791 -8401 0.070368 0.073652 0.072425 0.076377 7.319079 9.278258 9.514582 12.135750 -8402 0.124778 0.085903 0.106024 0.057700 11.312173 9.568488 18.710572 18.053829 -8403 0.063673 0.054671 0.025184 0.028512 8.256813 6.205429 12.173380 9.626221 -8404 0.063584 0.071553 0.046544 0.052120 9.069417 7.018353 11.838394 7.503250 -8405 0.113829 0.092545 0.043910 0.033042 13.316809 9.446930 18.076599 16.009579 -8406 0.061704 0.049603 0.054727 0.030363 8.486288 7.601810 9.530815 9.131161 -8407 0.048103 0.041675 0.036064 0.023751 9.945329 10.484087 11.270615 12.717878 -8408 0.047944 0.043086 0.035331 0.019206 7.949315 8.078342 9.973783 10.374079 -8409 0.064961 0.059006 0.030455 0.034687 12.456526 11.067936 17.702855 14.438506 -8410 0.079110 0.081253 0.028656 0.029237 11.624385 8.448140 12.065582 12.786084 -8411 0.051509 0.043714 0.025896 0.020331 7.255977 7.181121 10.220502 8.456933 -8412 0.042842 0.048073 0.014224 0.017029 7.506327 8.301593 9.358539 14.139245 -8413 0.069488 0.078371 0.050778 0.043478 12.053295 12.084837 11.742951 12.368156 -8414 0.048356 0.032701 0.041412 0.027363 10.539519 8.036362 11.047169 9.811435 -8415 0.082825 0.061245 0.054333 0.051675 11.679635 9.058595 11.389660 8.813076 -8416 0.092223 0.068132 0.034587 0.023221 15.239463 11.742019 17.749804 11.557979 -8417 0.050173 0.046831 0.036326 0.045349 8.336592 8.575176 8.031979 8.605817 -8418 0.097652 0.069970 0.079518 0.045575 7.883352 8.895565 10.248750 11.051183 -8419 0.099206 0.080773 0.038032 0.037664 13.219813 17.410922 18.921911 17.529022 -8420 0.075173 0.074012 0.066533 0.055964 15.083886 12.293350 13.183876 11.627127 -8421 0.105774 0.085422 0.072295 0.035386 8.089302 5.705630 12.184193 11.980063 -8422 0.068012 0.051153 0.048451 0.035911 11.326987 10.435868 17.690380 13.523773 -8423 0.063596 0.084315 0.047600 0.051140 8.422689 6.828813 7.906547 6.822546 -8424 0.084471 0.070520 0.028799 0.020602 12.329501 8.720378 12.295976 8.627392 -8425 0.039089 0.033312 0.032263 0.028739 8.649671 8.112584 9.582801 9.232072 -8426 0.058673 0.038920 0.019057 0.011742 6.254259 6.809213 11.250770 9.692613 -8427 0.055451 0.048468 0.035912 0.029727 7.615725 8.133675 14.811281 11.322167 -8428 0.131203 0.087099 0.076050 0.061246 9.259397 8.162697 12.821368 11.315275 -8429 0.056436 0.051040 0.040926 0.029548 7.832566 6.638431 7.639262 7.894437 -8430 0.131713 0.152323 0.065106 0.092852 8.990458 10.965794 10.453160 10.872962 -8431 0.080242 0.046656 0.030406 0.029177 7.120934 5.496693 7.308593 7.207279 -8432 0.116383 0.096640 0.053416 0.059609 11.669855 9.526252 16.605228 14.139741 -8433 0.076397 0.061526 0.039623 0.042088 11.177626 9.556983 18.496776 15.768738 -8434 0.056843 0.045488 0.043322 0.042442 9.224314 6.901236 10.236149 8.509129 -8435 0.061363 0.050561 0.052192 0.041132 11.594722 9.264574 16.622260 10.679378 -8436 0.084731 0.075410 0.048923 0.036054 11.248754 9.765780 11.052701 8.944493 -8437 0.059971 0.056794 0.028300 0.030135 9.918286 10.141072 10.649788 9.310627 -8438 0.091446 0.069071 0.033020 0.020888 12.674391 9.255726 14.248326 13.356480 -8439 0.085023 0.059655 0.059170 0.043958 12.283684 12.047434 14.410115 12.838547 -8440 0.072827 0.058162 0.069128 0.046945 10.938776 11.295576 14.373618 13.251587 -8441 0.111548 0.086104 0.090208 0.060453 9.437303 9.141718 11.726366 10.408521 -8442 0.099841 0.080014 0.052032 0.051127 11.292471 10.157905 13.293165 12.742341 -8443 0.060414 0.068298 0.056497 0.056629 9.379749 9.835736 10.907605 11.797346 -8444 0.066669 0.062545 0.046490 0.047135 8.389763 7.024066 12.028970 12.501741 -8445 0.072734 0.062550 0.046145 0.027525 10.939699 8.644528 11.969383 10.631068 -8446 0.072192 0.055205 0.036882 0.033657 16.602122 17.819407 13.575133 14.031884 -8447 0.102099 0.087382 0.073681 0.043400 14.258187 12.054417 11.010960 11.756555 -8448 0.119111 0.078844 0.079230 0.065999 12.090610 10.625861 12.687038 10.995673 -8449 0.158567 0.072261 0.102247 0.055328 9.974355 8.547998 16.801573 16.934739 -8450 0.106072 0.105785 0.071952 0.072332 7.917462 7.988107 9.569198 7.414561 -8451 0.129518 0.133857 0.065969 0.069548 13.775734 14.339684 15.086130 12.298351 -8452 0.040990 0.028118 0.036372 0.013676 10.125298 8.063918 14.168681 10.214611 -8453 0.113393 0.078070 0.052497 0.031517 6.925451 6.024822 9.963603 9.715508 -8454 0.083762 0.059681 0.046425 0.034991 9.530323 9.061612 12.664324 11.300595 -8455 0.045742 0.036974 0.025939 0.019761 12.134681 9.370471 13.257682 9.644351 -8456 0.090777 0.080555 0.068466 0.049649 12.049748 9.088798 17.431688 15.185901 -8457 0.062917 0.049683 0.021992 0.027676 7.725813 7.614432 14.659656 11.843314 -8458 0.068417 0.090230 0.049178 0.052034 10.479354 13.193519 22.746416 18.486374 -8459 0.084634 0.090103 0.032436 0.037257 10.955701 8.733009 13.882345 10.970127 -8460 0.068968 0.061402 0.040437 0.029680 11.777736 12.053763 16.112919 12.892592 -8461 0.101089 0.073613 0.050216 0.040946 14.293465 11.292271 21.158475 16.612659 -8462 0.077102 0.052261 0.027116 0.020578 12.320268 10.081403 9.879447 10.256512 -8463 0.057503 0.042423 0.031123 0.027024 9.985356 7.409509 8.836346 7.172335 -8464 0.120495 0.089379 0.068722 0.050201 10.401560 9.307213 19.182105 14.461289 -8465 0.095025 0.080699 0.044530 0.033127 6.841742 6.090433 12.665090 10.602035 -8466 0.095584 0.069529 0.026240 0.030384 9.723319 6.868154 8.100028 8.094403 -8467 0.067201 0.058329 0.036835 0.036281 7.861481 6.985012 11.271177 9.858373 -8468 0.105775 0.078354 0.064730 0.042827 11.459327 8.671434 13.009584 11.481862 -8469 0.059493 0.068939 0.023666 0.030271 7.558307 6.686034 9.622280 10.903731 -8470 0.088183 0.111938 0.052504 0.076830 15.354588 13.611731 14.376517 16.396020 -8471 0.088054 0.071831 0.071740 0.049488 10.894111 9.487970 16.503350 14.205451 -8472 0.069262 0.053426 0.039370 0.034009 7.444941 7.371099 9.658140 7.370482 -8473 0.065400 0.055710 0.028159 0.028625 7.712652 6.666082 11.786470 11.273564 -8474 0.091032 0.056610 0.062022 0.053832 11.201525 11.826723 14.522305 13.840773 -8475 0.067727 0.064683 0.043971 0.045197 8.852016 7.491946 10.092475 7.943299 -8476 0.075761 0.066889 0.033945 0.024485 7.845934 10.228128 10.923952 9.711123 -8477 0.080689 0.092854 0.114931 0.100879 8.136140 9.633218 10.385728 10.080320 -8478 0.048468 0.034866 0.032335 0.030769 7.323332 5.237879 11.889185 10.130027 -8479 0.055819 0.046937 0.040622 0.031932 8.709057 9.029634 11.107624 10.318392 -8480 0.038879 0.037632 0.018257 0.012692 8.638781 10.024053 11.286110 11.288372 -8481 0.054831 0.050475 0.020805 0.019758 6.380482 7.962498 8.735803 10.993026 -8482 0.112706 0.122560 0.111173 0.081555 8.676868 9.397419 14.557336 16.057083 -8483 0.081210 0.065199 0.053598 0.042003 10.262965 8.999618 12.244796 11.037165 -8484 0.173419 0.115252 0.102370 0.066145 12.520353 9.639122 17.610635 15.116735 -8485 0.044723 0.046319 0.034728 0.034955 9.478747 9.330081 12.677442 12.731214 -8486 0.076170 0.048884 0.039096 0.028254 8.620763 6.036879 13.994125 8.718497 -8487 0.077850 0.084500 0.044801 0.050059 10.676289 10.678018 15.126076 11.475072 -8488 0.089561 0.066885 0.030736 0.031791 8.630531 8.393853 14.628681 12.714380 -8489 0.073333 0.056574 0.039492 0.035477 10.576629 7.317733 12.644039 11.669116 -8490 0.084890 0.061577 0.052779 0.039786 8.395765 10.989614 12.375478 13.083937 -8491 0.078703 0.055582 0.041752 0.035404 11.553293 9.494677 13.250021 8.345959 -8492 0.056759 0.046193 0.026272 0.026684 9.080580 8.549237 11.643964 9.837154 -8493 0.056953 0.042346 0.033082 0.020618 12.078109 9.432473 11.050502 9.291844 -8494 0.071176 0.076322 0.078915 0.067855 16.961995 13.289718 19.641219 15.016548 -8495 0.074150 0.064242 0.055551 0.042972 10.395468 11.889594 11.973206 8.604139 -8496 0.077700 0.055386 0.037090 0.030753 6.143929 5.795201 8.051104 7.863329 -8497 0.132149 0.103236 0.071602 0.048085 8.993011 8.885908 12.431071 10.413450 -8498 0.065208 0.054533 0.047277 0.032356 8.896876 5.628486 8.757950 5.409716 -8499 0.061678 0.048575 0.050768 0.047164 10.760801 11.721548 16.647989 18.947707 -8500 0.158095 0.105388 0.067654 0.046502 8.481304 7.603332 10.512695 11.021353 -8501 0.045952 0.053656 0.040467 0.028307 9.641316 9.450438 9.008891 8.469338 -8502 0.130810 0.091545 0.098363 0.074990 12.450519 12.642081 19.767835 21.699633 -8503 0.072000 0.067934 0.038150 0.028593 8.624630 7.070017 9.311359 10.886293 -8504 0.084638 0.072030 0.087323 0.055379 13.228962 13.211220 16.365640 13.856154 -8505 0.054437 0.050318 0.037841 0.027331 9.549189 7.213656 12.741403 14.120597 -8506 0.064850 0.079019 0.030873 0.034471 9.969660 9.653192 15.124218 10.532280 -8507 0.070963 0.067313 0.047742 0.045227 10.746977 9.628353 10.911932 9.315225 -8508 0.082534 0.069656 0.049720 0.037173 10.444414 10.352760 18.621285 19.859464 -8509 0.086177 0.077602 0.051525 0.068320 11.349287 10.977431 15.651863 12.242916 -8510 0.074670 0.055270 0.063701 0.040315 8.693842 7.592041 12.163825 10.458414 -8511 0.106029 0.113034 0.073595 0.049408 7.203684 6.735847 10.362503 9.382407 -8512 0.083938 0.087876 0.065334 0.052055 8.115957 6.330651 23.007179 19.761520 -8513 0.067649 0.054926 0.044137 0.035865 7.793978 6.647570 9.454914 7.922193 -8514 0.090286 0.083542 0.055938 0.032528 7.165834 5.370863 10.968817 8.457200 -8515 0.059333 0.058623 0.053127 0.042755 12.297460 8.571189 16.767975 10.394736 -8516 0.076456 0.071234 0.052991 0.047440 9.784923 10.103174 14.803444 14.840985 -8517 0.039788 0.041440 0.036947 0.038148 10.363145 7.784987 10.918303 9.962719 -8518 0.068746 0.069224 0.040547 0.035430 9.225570 10.822351 11.080818 14.691058 -8519 0.101022 0.097630 0.064232 0.047869 12.890747 12.864527 23.363576 19.072785 -8520 0.062632 0.058612 0.039448 0.023360 10.494566 11.001210 20.103763 19.767794 -8521 0.082441 0.059569 0.054293 0.057019 11.775224 11.527677 16.208705 17.375441 -8522 0.071985 0.062578 0.053629 0.039240 11.986166 9.323265 13.423630 8.261298 -8523 0.059176 0.059736 0.043279 0.029874 12.867778 9.696242 12.631630 10.949462 -8524 0.070236 0.045300 0.028773 0.021955 11.636667 11.683801 15.588011 16.412266 -8525 0.051460 0.039134 0.020492 0.021790 8.766412 7.714646 8.464525 8.126291 -8526 0.051065 0.056052 0.025754 0.025677 7.685614 7.079464 9.126968 7.858695 -8527 0.073073 0.058978 0.043702 0.032195 12.476786 9.549445 17.643437 11.989051 -8528 0.057310 0.043179 0.050929 0.033771 9.093127 6.662413 13.266306 12.294340 -8529 0.045605 0.052792 0.033006 0.036469 8.664618 6.323442 9.866921 8.419382 -8530 0.064336 0.056678 0.038578 0.023707 11.637122 9.972505 10.522016 9.738581 -8531 0.073332 0.045334 0.045342 0.040221 11.158089 8.776769 9.748128 7.630683 -8532 0.077295 0.069757 0.035817 0.028323 10.189730 8.840201 13.815073 13.508516 -8533 0.119198 0.083106 0.095042 0.048970 11.853202 12.364593 20.832667 18.256757 -8534 0.098802 0.083230 0.061977 0.050477 7.229284 6.976608 7.404910 5.988838 -8535 0.096285 0.067737 0.061358 0.047908 9.690655 10.740626 12.955452 16.194133 -8536 0.102713 0.081778 0.063053 0.047886 7.709359 10.000485 10.736645 10.973983 -8537 0.081573 0.047497 0.030507 0.024095 8.465354 7.272669 7.364206 6.149128 -8538 0.046738 0.049962 0.040904 0.033782 7.337094 6.133385 15.505196 15.875824 -8539 0.067773 0.063294 0.058882 0.040285 9.205573 8.329807 12.360064 10.361334 -8540 0.068446 0.068121 0.059700 0.041124 7.267116 5.473476 16.696393 12.810802 -8541 0.091666 0.080717 0.056433 0.050308 8.527030 8.711804 14.018173 13.794998 -8542 0.081273 0.078714 0.065549 0.042591 8.754371 6.205064 9.953555 8.547760 -8543 0.070390 0.060849 0.030239 0.024341 10.778737 10.645614 11.990000 12.251919 -8544 0.095667 0.059881 0.042488 0.027311 13.770969 10.056722 23.060302 18.991063 -8545 0.079640 0.087290 0.037807 0.035239 10.480376 10.186963 12.151611 12.601711 -8546 0.096197 0.074251 0.071656 0.062839 11.949291 10.356655 19.640606 16.143133 -8547 0.076293 0.067363 0.048106 0.046944 11.602904 11.194268 10.964131 10.546670 -8548 0.056384 0.044419 0.045147 0.032071 9.987872 7.594533 12.887298 12.114956 -8549 0.098291 0.079548 0.046885 0.077949 7.935190 8.861250 12.605219 11.893826 -8550 0.157020 0.126059 0.063915 0.058654 14.022703 15.002388 18.147211 15.774440 -8551 0.065813 0.069477 0.060101 0.041277 19.697259 14.551621 19.137711 12.332693 -8552 0.107845 0.068904 0.058311 0.034497 7.805820 7.272011 13.363708 11.004155 -8553 0.055567 0.065938 0.021645 0.041599 7.071550 6.670839 11.072101 8.970046 -8554 0.090073 0.064053 0.048455 0.044285 10.763476 9.192557 21.331493 17.590850 -8555 0.084589 0.058950 0.032371 0.025046 10.449337 9.392851 8.853205 8.920116 -8556 0.035147 0.032997 0.018935 0.014251 5.592088 5.401912 9.424538 7.114882 -8557 0.081196 0.063852 0.052141 0.029883 5.647303 4.913781 10.383309 10.204565 -8558 0.072934 0.069214 0.031659 0.039333 9.113981 8.294882 9.900888 9.558912 -8559 0.047571 0.047114 0.033940 0.023591 12.889615 7.142082 14.223956 8.552609 -8560 0.078793 0.074474 0.039350 0.043181 10.553591 9.164219 9.742770 8.497472 -8561 0.106392 0.092979 0.074726 0.072671 9.675758 9.322251 12.952231 10.914584 -8562 0.066110 0.059629 0.038961 0.041158 10.835954 10.832323 13.817686 14.315041 -8563 0.077120 0.065915 0.066926 0.046132 7.053345 7.425074 16.011085 13.375720 -8564 0.097981 0.075433 0.087495 0.055254 15.071462 13.444977 16.767721 15.408606 -8565 0.064630 0.062400 0.028936 0.049599 10.195906 8.804343 12.262230 11.208287 -8566 0.069677 0.052033 0.042343 0.042915 7.820198 9.242243 10.298540 10.980405 -8567 0.060899 0.052886 0.015777 0.020586 12.206533 9.433967 15.426492 11.323533 -8568 0.073917 0.053103 0.032575 0.024861 9.680069 8.952953 12.228375 11.693106 -8569 0.064326 0.042155 0.040046 0.023790 11.616655 11.672475 11.851984 10.986917 -8570 0.086749 0.081332 0.060320 0.050872 11.058205 9.148837 14.719234 11.257635 -8571 0.093599 0.086195 0.081779 0.058476 7.993774 7.344617 15.354639 14.000493 -8572 0.049615 0.052046 0.035611 0.032955 14.745553 12.023398 12.699522 10.741508 -8573 0.059666 0.055596 0.038826 0.030156 7.474877 7.734610 8.457568 10.252056 -8574 0.053679 0.042136 0.032362 0.025302 7.681645 6.867147 6.093992 5.995188 -8575 0.073640 0.079557 0.056281 0.056626 11.562822 10.456560 11.914864 9.787183 -8576 0.086604 0.070081 0.052447 0.040957 9.457357 7.880844 9.385620 10.534583 -8577 0.087990 0.057961 0.040623 0.025603 11.770254 8.600548 19.333826 11.979112 -8578 0.159063 0.128482 0.142050 0.087708 9.800561 7.545119 15.791687 12.776503 -8579 0.096515 0.096334 0.031776 0.025438 10.416136 8.803384 15.627791 15.831939 -8580 0.078995 0.075504 0.043525 0.029713 14.212940 12.525705 14.987060 14.774320 -8581 0.057497 0.047479 0.039094 0.022472 13.408821 10.281451 16.967192 17.332594 -8582 0.071559 0.062784 0.053162 0.033726 12.275356 10.785500 12.100274 10.499641 -8583 0.109468 0.092973 0.105684 0.072828 12.933771 9.494054 17.014739 17.171316 -8584 0.076540 0.072295 0.047871 0.037368 12.971163 10.686637 13.994133 11.721367 -8585 0.096135 0.071579 0.100808 0.068706 13.406630 10.153945 11.683200 8.091787 -8586 0.056222 0.048620 0.035119 0.031931 8.484779 7.095270 12.564663 10.492806 -8587 0.097439 0.097303 0.048596 0.041775 11.586773 10.284221 13.470168 12.770953 -8588 0.112224 0.118796 0.045003 0.041302 6.538785 6.615335 9.341722 8.137787 -8589 0.074233 0.056836 0.056380 0.052512 7.581109 8.989506 12.057240 12.082119 -8590 0.096080 0.085593 0.063465 0.046293 7.886579 7.370257 10.739593 11.802663 -8591 0.058191 0.039602 0.032246 0.023768 9.337736 11.348377 13.898574 12.924419 -8592 0.139713 0.108120 0.065906 0.050861 14.621361 11.574284 16.734849 11.329901 -8593 0.084877 0.123843 0.050152 0.053755 10.945564 9.627032 17.794558 12.775674 -8594 0.139109 0.106705 0.125170 0.088167 11.488960 10.256879 14.441389 9.993551 -8595 0.066509 0.039052 0.034263 0.023667 8.673166 9.882632 13.455283 11.750888 -8596 0.110565 0.072805 0.034817 0.038381 12.942324 12.018341 22.566490 19.604338 -8597 0.084822 0.065369 0.050326 0.055427 7.835172 7.023187 15.797985 11.697361 -8598 0.076371 0.067600 0.047132 0.041806 10.716954 7.025610 12.644219 9.306969 -8599 0.072058 0.058014 0.040860 0.030287 13.896321 10.085637 17.559806 15.807002 -8600 0.097080 0.081660 0.048051 0.046716 11.452197 13.775715 14.565960 13.871852 -8601 0.117892 0.079598 0.048434 0.043519 7.795599 6.645251 14.421085 9.777257 -8602 0.115153 0.101882 0.055916 0.050263 8.862917 7.869152 11.077726 9.987814 -8603 0.082949 0.063164 0.070817 0.061539 7.851008 10.129484 11.608229 11.442917 -8604 0.080217 0.090935 0.050657 0.048906 11.335652 10.728403 15.855989 12.665342 -8605 0.091115 0.104683 0.043177 0.067833 13.938720 10.663041 13.939071 13.751950 -8606 0.107677 0.085488 0.079797 0.049599 13.152600 12.706832 15.376796 12.730160 -8607 0.088915 0.051572 0.081819 0.041687 9.472595 7.016134 16.624439 11.869884 -8608 0.056624 0.061259 0.029830 0.033627 8.903799 11.710365 12.008986 13.683760 -8609 0.061134 0.058540 0.032280 0.036909 13.803693 10.866590 13.143693 8.495790 -8610 0.091783 0.087278 0.067125 0.055270 11.782107 8.656608 13.344101 12.132944 -8611 0.077670 0.053288 0.048766 0.028372 9.491094 8.770770 11.146163 10.394325 -8612 0.050043 0.041034 0.021837 0.020753 7.013230 7.338390 11.132636 11.190864 -8613 0.086872 0.094575 0.066713 0.067756 8.930147 7.895729 11.605486 10.097975 -8614 0.066246 0.056441 0.026827 0.027215 10.200915 8.022877 12.893974 11.536494 -8615 0.082962 0.050026 0.054059 0.023412 10.801519 12.027742 13.209060 14.483392 -8616 0.086699 0.071752 0.040279 0.040053 9.393459 8.811989 12.886836 12.217863 -8617 0.071429 0.082612 0.053805 0.043707 10.400827 7.167541 13.924935 11.866533 -8618 0.098687 0.096990 0.073124 0.063217 10.007136 9.568147 19.379041 15.330655 -8619 0.061088 0.040612 0.025980 0.020117 5.743643 4.112931 7.872551 8.310345 -8620 0.055548 0.053462 0.039570 0.034471 7.537422 8.097516 10.898108 10.396417 -8621 0.061885 0.038216 0.032466 0.021973 6.550626 8.001040 8.220940 9.292457 -8622 0.073142 0.069715 0.042955 0.047481 14.516199 14.052612 14.582056 15.977388 -8623 0.047577 0.052516 0.030378 0.025193 7.626381 7.745953 11.815783 11.634148 -8624 0.048521 0.043859 0.036041 0.033627 10.290987 9.615811 13.603822 13.542078 -8625 0.096943 0.076713 0.030141 0.030603 8.050735 7.017238 10.818522 10.437159 -8626 0.085801 0.067812 0.039654 0.033238 9.308427 6.447769 9.223612 7.590358 -8627 0.079561 0.072521 0.058266 0.064190 8.887110 8.505927 16.199620 11.118980 -8628 0.080735 0.065411 0.068486 0.032286 7.515397 5.752235 9.277688 8.448834 -8629 0.064780 0.057431 0.026953 0.024988 7.540456 7.378553 11.676058 8.800893 -8630 0.099627 0.075600 0.078644 0.045539 14.775215 11.904692 16.944030 11.996807 -8631 0.040007 0.040441 0.032696 0.022744 12.286526 12.410849 12.571742 10.664204 -8632 0.030475 0.043604 0.024916 0.021974 10.193918 9.558436 11.079695 8.556909 -8633 0.063817 0.061887 0.026514 0.030527 8.312436 6.575017 11.482106 8.511570 -8634 0.095510 0.085618 0.070158 0.088273 12.307071 10.146662 12.445902 10.551041 -8635 0.061087 0.079645 0.030118 0.043767 16.272175 12.747500 16.343660 15.372460 -8636 0.090981 0.076129 0.058403 0.046927 14.503123 10.873198 16.554843 13.297936 -8637 0.156189 0.140645 0.098397 0.075550 14.471372 10.838058 20.154411 14.510579 -8638 0.076680 0.056186 0.044130 0.023999 7.025767 6.606338 11.236901 10.075411 -8639 0.057861 0.050835 0.044304 0.036787 6.723834 7.691649 10.241332 11.523196 -8640 0.040439 0.044758 0.036320 0.047060 8.524978 7.882317 11.341602 9.871535 -8641 0.056377 0.054363 0.054465 0.038265 7.720054 6.902698 13.311248 11.971055 -8642 0.111239 0.119991 0.063489 0.062010 9.441069 9.827730 12.828626 12.608489 -8643 0.055340 0.037069 0.024563 0.016650 10.265390 6.507296 12.607601 10.260061 -8644 0.064672 0.058671 0.033761 0.023014 10.070191 8.622508 7.356772 7.472083 -8645 0.083533 0.081706 0.064102 0.060542 12.978589 12.829268 12.920603 11.582197 -8646 0.084096 0.066036 0.054576 0.041606 9.078394 9.772223 12.026201 9.989484 -8647 0.052882 0.074086 0.037907 0.040900 12.890707 10.187103 14.836089 11.855703 -8648 0.060335 0.058797 0.042203 0.028158 10.356761 8.738293 13.528731 13.151518 -8649 0.071923 0.050652 0.040318 0.028937 10.727628 10.288757 7.713731 7.434662 -8650 0.079004 0.068520 0.040035 0.029874 16.373328 11.829427 18.307594 14.578038 -8651 0.093350 0.066844 0.057887 0.031236 14.243460 11.144385 18.272400 14.576987 -8652 0.070739 0.048249 0.045290 0.035632 6.917634 8.222919 10.946134 10.188080 -8653 0.054813 0.042385 0.034133 0.020126 7.046249 8.330993 6.574486 8.908567 -8654 0.106495 0.085000 0.051647 0.036139 8.436298 8.467740 9.242666 10.926614 -8655 0.070240 0.044309 0.018357 0.016155 10.514285 9.969249 13.537320 12.769160 -8656 0.063432 0.057058 0.038854 0.035632 8.508954 5.263560 13.420203 10.692557 -8657 0.107163 0.079239 0.058826 0.059797 8.106872 6.812482 11.484446 13.885169 -8658 0.070671 0.063036 0.042385 0.033699 10.609098 6.912425 12.259167 9.414809 -8659 0.074711 0.061904 0.044419 0.033812 6.374153 5.111024 10.577593 9.073721 -8660 0.082024 0.067915 0.053617 0.044498 6.870775 6.622168 9.158203 7.933208 -8661 0.054125 0.067299 0.033442 0.034014 9.219905 7.574327 12.904929 10.698234 -8662 0.062060 0.052437 0.039658 0.029740 7.465859 7.066894 10.177155 7.917029 -8663 0.133177 0.104664 0.070094 0.063763 8.080604 7.014667 14.223867 12.588973 -8664 0.070817 0.056485 0.043181 0.039172 5.596909 6.253241 9.042153 8.055261 -8665 0.075662 0.049187 0.032513 0.023562 6.425152 5.161511 9.478306 8.190461 -8666 0.075291 0.066300 0.051020 0.039057 5.500063 4.987889 12.400111 9.154722 -8667 0.057040 0.070441 0.035605 0.037040 12.596355 10.647524 16.195266 15.452522 -8668 0.057951 0.043865 0.029210 0.024922 8.636347 7.155942 18.751438 11.433500 -8669 0.083648 0.054936 0.054461 0.038722 9.529367 9.613931 13.006923 11.158093 -8670 0.113612 0.091625 0.088120 0.059168 13.953848 12.455908 20.967801 16.202231 -8671 0.044797 0.044139 0.022386 0.028090 7.100503 5.852129 11.116561 7.244894 -8672 0.084695 0.057458 0.042186 0.042344 8.161655 7.765474 8.635655 7.505332 -8673 0.071586 0.057488 0.049398 0.045098 16.064389 14.506939 19.981609 18.654351 -8674 0.081920 0.057177 0.083987 0.056691 11.125848 9.052978 13.909197 12.856589 -8675 0.068308 0.046602 0.033746 0.036490 9.831206 8.148678 13.355101 9.326519 -8676 0.076591 0.050147 0.049090 0.031718 9.363470 8.512013 12.019684 9.004876 -8677 0.092334 0.080749 0.028601 0.034140 11.486938 10.613823 11.744383 11.399211 -8678 0.060716 0.070457 0.050234 0.031341 8.156924 6.117998 16.464363 10.861525 -8679 0.059964 0.055437 0.038529 0.032307 10.627346 9.479581 15.404176 13.772489 -8680 0.095506 0.063710 0.031085 0.024930 8.302374 7.732343 9.117737 9.307118 -8681 0.076630 0.066569 0.046034 0.047021 9.410610 10.301411 9.190291 9.503257 -8682 0.116944 0.079209 0.089676 0.050088 13.461684 13.082679 10.831739 10.175111 -8683 0.070193 0.048790 0.025366 0.017169 7.569694 5.531208 7.356214 5.792776 -8684 0.073515 0.055823 0.062062 0.045070 10.922081 8.294697 10.730997 9.360648 -8685 0.092993 0.090185 0.036739 0.038091 14.291173 12.678049 16.604333 12.869501 -8686 0.063332 0.054610 0.043413 0.035443 10.300098 11.735187 12.548009 12.925332 -8687 0.107577 0.091842 0.086705 0.063830 14.952629 12.509868 10.653327 13.011194 -8688 0.087757 0.091244 0.047652 0.063934 9.554195 8.705043 11.484001 13.070481 -8689 0.044669 0.043796 0.015817 0.012621 7.381866 6.678204 13.174268 11.270175 -8690 0.062816 0.068615 0.059172 0.065934 9.783044 10.753149 13.342728 14.680620 -8691 0.083892 0.064480 0.038237 0.028666 7.196432 6.806282 10.070958 13.782814 -8692 0.079485 0.054513 0.032800 0.035242 12.257564 10.449159 12.027307 9.804268 -8693 0.040257 0.045637 0.033618 0.025957 5.379926 4.720956 7.695357 5.568830 -8694 0.070711 0.063994 0.046271 0.033149 9.184255 8.967796 13.614453 12.955040 -8695 0.046947 0.069850 0.039418 0.028278 11.370456 7.825422 14.584687 13.707393 -8696 0.113333 0.069932 0.048217 0.043393 7.299263 7.172866 11.160690 11.113802 -8697 0.051222 0.046040 0.017538 0.014210 10.899952 9.554684 15.744130 12.065187 -8698 0.065947 0.056586 0.056311 0.031979 11.265334 8.181975 13.105394 10.575366 -8699 0.077276 0.075067 0.056321 0.049049 8.034219 6.978674 9.316221 5.718233 -8700 0.035633 0.034324 0.015793 0.019923 8.758359 7.714893 13.503332 13.112655 -8701 0.064844 0.045362 0.031855 0.017761 6.844411 4.925107 11.465960 9.455689 -8702 0.050657 0.042437 0.027010 0.021388 6.056793 5.596398 11.885213 8.592854 -8703 0.086930 0.064999 0.049445 0.022394 12.298469 9.880420 14.341296 13.305701 -8704 0.044367 0.045880 0.033897 0.025221 10.505772 7.096249 10.308894 10.666579 -8705 0.089307 0.071203 0.048764 0.044153 8.185881 9.457657 9.145620 8.821097 -8706 0.071204 0.072563 0.071584 0.071599 11.322501 8.379497 11.487305 10.440043 -8707 0.050246 0.058554 0.035763 0.034758 13.653801 9.672319 18.201067 15.333571 -8708 0.046660 0.062184 0.033125 0.027945 6.435766 6.206573 8.062300 8.264665 -8709 0.124768 0.070845 0.044627 0.031052 9.320472 6.129921 16.778772 11.428858 -8710 0.061256 0.059073 0.053568 0.039961 8.986062 9.785077 10.875338 13.614618 -8711 0.065131 0.070471 0.052965 0.044239 9.595520 8.322501 19.689369 17.558232 -8712 0.082972 0.102376 0.113813 0.076621 9.742682 6.022769 13.270346 10.133703 -8713 0.060205 0.044296 0.019357 0.021598 6.773795 6.061958 8.711569 8.941050 -8714 0.075333 0.069876 0.062474 0.051428 10.242232 9.933549 12.651782 11.195591 -8715 0.082658 0.068522 0.051900 0.042143 8.356789 8.065120 15.841752 15.029415 -8716 0.043017 0.032111 0.011079 0.007322 5.456082 6.316338 10.239930 10.557885 -8717 0.093834 0.078807 0.078231 0.080047 9.412398 6.884846 16.125092 14.201037 -8718 0.116365 0.088767 0.080323 0.073627 6.712213 6.789282 11.187321 9.756859 -8719 0.058762 0.044466 0.039419 0.020018 8.576463 8.292721 13.201912 11.358181 -8720 0.098693 0.075367 0.078585 0.066856 10.306991 8.313693 14.521088 12.200901 -8721 0.088110 0.072344 0.041989 0.036237 10.754379 9.973072 14.522950 14.691929 -8722 0.106794 0.075826 0.068391 0.063528 10.822015 8.477730 16.064047 12.606294 -8723 0.037436 0.041752 0.020812 0.025676 12.140446 9.690399 15.822836 14.963995 -8724 0.107654 0.098324 0.097824 0.071217 12.296755 11.630649 16.596419 17.832420 -8725 0.073112 0.052332 0.054054 0.031668 10.813187 10.889147 15.579768 10.340491 -8726 0.087073 0.089837 0.055099 0.053789 14.227463 13.007119 15.176692 12.496700 -8727 0.067111 0.069420 0.027863 0.030049 5.996222 8.596801 10.806391 8.498186 -8728 0.057335 0.066342 0.031099 0.041626 9.302405 9.221303 17.222587 17.370054 -8729 0.041097 0.043715 0.032289 0.024951 10.361016 7.215672 11.701814 8.748383 -8730 0.077597 0.059753 0.036178 0.027801 13.901370 14.624336 13.949757 9.850961 -8731 0.061953 0.053518 0.017787 0.023278 9.681851 8.332303 11.329326 10.388536 -8732 0.113725 0.099731 0.119502 0.121149 9.569001 11.545498 15.894909 19.176632 -8733 0.111775 0.062349 0.079411 0.055453 10.383134 9.332278 13.353432 11.588342 -8734 0.186190 0.155749 0.113545 0.109295 11.623033 8.376888 14.958235 10.567554 -8735 0.067990 0.071849 0.056258 0.100117 11.941947 10.222563 11.234015 10.368129 -8736 0.080818 0.048944 0.044275 0.036884 8.440551 8.451427 14.105301 12.809363 -8737 0.054411 0.048184 0.026774 0.024709 9.395050 7.670558 13.210771 15.068093 -8738 0.043597 0.033485 0.023503 0.016712 8.616978 8.449603 8.940546 7.135777 -8739 0.054691 0.062418 0.036192 0.029519 11.649165 10.987385 14.334862 11.770392 -8740 0.052996 0.045757 0.049284 0.028535 9.517321 7.522905 11.091255 10.283222 -8741 0.084342 0.088295 0.071774 0.061936 18.182610 14.951754 16.732852 13.114051 -8742 0.073133 0.071958 0.042050 0.046230 9.282749 7.518317 11.901085 9.942802 -8743 0.081455 0.084888 0.086630 0.100911 9.722552 7.831946 10.019787 11.999779 -8744 0.090378 0.059816 0.037959 0.026254 9.542089 7.364111 17.179620 12.900362 -8745 0.075624 0.071175 0.049886 0.050031 10.701849 9.672833 12.765288 12.373039 -8746 0.066279 0.049703 0.037187 0.028814 8.345639 6.245875 11.938427 9.274608 -8747 0.101305 0.084403 0.064183 0.076479 12.485319 11.155145 18.362408 12.650888 -8748 0.082107 0.077811 0.075804 0.067542 12.463451 11.216528 17.284907 18.194979 -8749 0.063821 0.059002 0.046112 0.034872 8.001450 7.238738 12.823986 9.760603 -8750 0.073129 0.080319 0.046932 0.046316 7.740106 7.978369 12.080463 10.713520 -8751 0.068069 0.053276 0.043165 0.028891 15.760602 11.368887 16.440409 13.932854 -8752 0.090360 0.077521 0.053596 0.057452 10.236364 9.823625 14.579742 13.269234 -8753 0.079966 0.052252 0.036508 0.020320 8.676215 6.457138 13.733713 11.069917 -8754 0.080325 0.076724 0.048308 0.043430 11.948569 9.893215 13.920457 10.050553 -8755 0.083550 0.056185 0.048216 0.026070 9.999160 8.034724 15.159694 10.869868 -8756 0.063875 0.064002 0.046090 0.051013 6.923982 7.123795 7.168605 8.526250 -8757 0.094846 0.069003 0.049713 0.051119 14.687367 10.122856 20.261859 16.144159 -8758 0.046942 0.034585 0.034817 0.027966 9.733148 7.428694 7.517197 6.239988 -8759 0.093883 0.065495 0.059154 0.036335 13.830266 13.538022 15.722358 19.203314 -8760 0.082218 0.065031 0.037761 0.043965 7.354234 7.637984 10.232110 11.272977 -8761 0.045579 0.043021 0.031294 0.025369 10.051632 9.712064 11.400261 10.979981 -8762 0.088457 0.084068 0.043394 0.046588 11.496321 13.559629 19.194382 17.989501 -8763 0.049113 0.054892 0.041643 0.061128 5.893841 6.147250 11.551650 9.722949 -8764 0.059697 0.054685 0.026408 0.032473 7.017858 7.617269 9.693633 9.563536 -8765 0.099471 0.081592 0.069798 0.063373 10.829052 8.192264 15.072336 9.199092 -8766 0.085155 0.066919 0.029130 0.020111 8.049108 9.643552 11.730826 11.545651 -8767 0.098213 0.070238 0.037838 0.025240 7.266365 7.196271 13.361487 15.801131 -8768 0.081430 0.077541 0.049702 0.031380 10.040189 8.301602 11.536338 8.945079 -8769 0.072150 0.087602 0.054089 0.047627 10.551203 7.415185 14.051087 10.165490 -8770 0.095142 0.051928 0.032909 0.019851 13.804496 9.400870 14.848045 9.548550 -8771 0.073406 0.084275 0.030666 0.027124 9.911611 6.624287 9.114393 7.712800 -8772 0.100686 0.096604 0.099141 0.054329 10.241489 11.286093 18.378505 15.828822 -8773 0.042165 0.047033 0.032506 0.028379 5.984389 5.574186 6.117135 6.293231 -8774 0.046671 0.048465 0.022035 0.023934 10.994557 10.129765 10.519341 8.167635 -8775 0.111164 0.102943 0.051330 0.047643 12.033191 8.053154 16.500005 9.941842 -8776 0.085475 0.086834 0.059369 0.043240 9.659149 7.242654 14.573797 11.078173 -8777 0.097216 0.068946 0.080834 0.058497 14.008183 9.622178 14.138784 13.350443 -8778 0.044986 0.041112 0.024513 0.026420 7.643470 6.678077 9.857264 9.528515 -8779 0.057982 0.080238 0.035462 0.038525 9.943072 9.954564 11.291385 10.978922 -8780 0.066001 0.061830 0.054844 0.045139 13.714579 12.757403 14.870354 13.285841 -8781 0.098012 0.071162 0.066882 0.037845 10.963964 6.792645 9.510060 7.057891 -8782 0.097475 0.079189 0.047190 0.024314 12.521998 9.639923 16.053076 14.219696 -8783 0.125507 0.103811 0.088812 0.074480 9.227513 8.772915 12.095205 10.800269 -8784 0.098435 0.054124 0.061649 0.060528 10.347943 9.442387 14.941181 10.787768 -8785 0.058917 0.047398 0.057053 0.033935 9.009551 7.493354 6.606660 6.935862 -8786 0.071398 0.072213 0.038549 0.042113 7.262521 7.040334 11.577848 11.423359 -8787 0.046508 0.050053 0.027327 0.027892 12.473833 11.833550 13.271548 12.016106 -8788 0.094237 0.057909 0.036379 0.042566 9.645633 9.669476 14.288350 14.120108 -8789 0.068146 0.046501 0.026285 0.017636 8.582246 10.684885 14.849553 15.631288 -8790 0.057216 0.047001 0.038954 0.030476 9.695950 7.596780 13.417415 11.368262 -8791 0.051952 0.062233 0.041204 0.035625 10.327777 9.337461 13.020934 10.369820 -8792 0.072904 0.063024 0.085764 0.052315 9.023471 7.734727 13.284285 11.152502 -8793 0.047984 0.044078 0.056729 0.028567 11.369403 7.344531 12.306370 10.155556 -8794 0.130879 0.102185 0.115895 0.067820 10.246772 10.107664 15.076862 12.279001 -8795 0.094246 0.082372 0.047121 0.045018 9.055431 8.920958 12.584631 11.078258 -8796 0.080326 0.066128 0.060312 0.044323 12.337394 10.114046 17.502954 15.733865 -8797 0.106427 0.083539 0.068978 0.044708 8.080963 9.300647 12.500301 12.418144 -8798 0.086087 0.112107 0.063796 0.063628 9.534702 9.722571 15.124700 13.940905 -8799 0.050369 0.041846 0.036837 0.022181 8.314804 8.740910 8.945887 10.072878 -8800 0.063327 0.063574 0.021161 0.026741 9.129689 7.213650 8.816134 8.632292 -8801 0.110669 0.114613 0.085351 0.099029 9.106702 7.985706 15.192225 13.932180 -8802 0.083360 0.065787 0.046921 0.033706 8.078508 7.876518 9.991664 10.123923 -8803 0.151157 0.111408 0.085968 0.044243 13.650703 12.241599 18.600808 15.612325 -8804 0.067127 0.064895 0.055736 0.042695 10.840658 8.949351 12.233973 9.769175 -8805 0.090556 0.055082 0.042515 0.026392 7.590501 7.269422 10.771354 9.241453 -8806 0.070160 0.056489 0.045351 0.037592 7.900161 8.456411 12.341665 11.405100 -8807 0.050949 0.048900 0.033760 0.019891 9.540913 6.712550 12.237821 8.804240 -8808 0.126239 0.111310 0.071976 0.074924 7.297052 8.000505 12.354235 11.203034 -8809 0.067983 0.062851 0.044843 0.030948 7.218718 5.212820 10.088848 9.457471 -8810 0.112236 0.069029 0.050121 0.033727 8.952282 7.404356 10.366828 10.108179 -8811 0.057000 0.048069 0.034763 0.031654 8.153989 7.377678 11.551725 13.928914 -8812 0.031921 0.030605 0.025079 0.014187 13.995286 12.245996 12.941288 11.666036 -8813 0.074147 0.070646 0.042237 0.034631 8.163675 7.222239 14.374424 10.597993 -8814 0.048096 0.042311 0.021209 0.016605 8.648802 7.540032 12.247055 10.422536 -8815 0.103627 0.074613 0.084436 0.057114 12.593090 11.906260 11.924436 13.492619 -8816 0.080633 0.058894 0.067902 0.039651 11.491533 11.403032 13.065437 12.973422 -8817 0.087054 0.078481 0.078098 0.054612 11.189646 7.763874 13.438714 10.878845 -8818 0.097899 0.114569 0.081349 0.097877 9.544889 10.906779 11.068582 12.325824 -8819 0.077684 0.053441 0.048115 0.045667 9.894337 10.087341 14.913160 11.244927 -8820 0.100388 0.087971 0.061455 0.054659 7.350346 8.693259 8.983261 12.322578 -8821 0.055433 0.043934 0.031695 0.035557 6.465001 5.632543 7.347071 5.770737 -8822 0.078448 0.083744 0.038977 0.040574 14.410122 11.275807 16.583566 15.567540 -8823 0.054892 0.049103 0.031891 0.024552 7.472027 8.471151 12.015663 11.226237 -8824 0.065527 0.073333 0.053004 0.057484 5.806409 8.115199 8.204181 8.282846 -8825 0.064030 0.064722 0.051029 0.037714 8.719829 7.988341 16.362614 13.058633 -8826 0.077785 0.076451 0.049245 0.040679 8.229103 7.622270 11.187292 10.045534 -8827 0.056062 0.060384 0.048778 0.047052 12.667541 8.618213 11.028989 8.327564 -8828 0.074998 0.059332 0.051876 0.054477 10.862558 14.645020 13.013337 16.351187 -8829 0.063311 0.045949 0.032545 0.026539 7.691798 6.664644 8.943551 5.865989 -8830 0.149017 0.091328 0.111083 0.056196 9.740439 9.296783 13.948348 12.544545 -8831 0.111270 0.074790 0.100575 0.055862 14.318342 11.739037 23.558009 15.677688 -8832 0.092248 0.072891 0.049216 0.045716 10.825239 9.105245 15.340152 11.320922 -8833 0.091005 0.062849 0.071548 0.057132 7.556807 8.001608 8.869844 10.117786 -8834 0.078045 0.069496 0.043872 0.034558 8.188138 5.589911 11.307032 8.199393 -8835 0.082074 0.072785 0.059481 0.069682 8.557510 8.612001 9.865444 10.647037 -8836 0.067239 0.068100 0.076734 0.072901 11.302510 12.069959 13.790382 12.226450 -8837 0.036936 0.030957 0.017534 0.016604 8.192511 7.273308 15.299655 14.292781 -8838 0.048082 0.054818 0.035536 0.026932 11.258470 6.850553 13.325143 10.805293 -8839 0.103469 0.070839 0.061315 0.039013 9.415143 8.563629 9.986171 10.099604 -8840 0.077450 0.064784 0.052200 0.047923 8.930049 8.946520 9.733046 10.546845 -8841 0.074103 0.053090 0.037060 0.030448 7.757953 6.563838 11.930621 8.569430 -8842 0.085397 0.083999 0.051218 0.044138 10.179293 9.885881 13.447992 13.692560 -8843 0.046363 0.042395 0.020910 0.017937 7.770678 6.956739 7.700537 8.016062 -8844 0.074175 0.064319 0.042363 0.040323 11.511933 12.844973 11.814343 14.818463 -8845 0.064407 0.070997 0.041520 0.037332 9.397864 7.745707 12.912892 10.202576 -8846 0.124024 0.083807 0.095819 0.087680 9.841445 7.607943 14.133204 13.600962 -8847 0.077773 0.086846 0.040313 0.054249 10.700282 11.479729 16.561088 14.026976 -8848 0.070470 0.059167 0.039527 0.039000 9.487491 7.442632 14.370004 14.098655 -8849 0.065223 0.067564 0.036981 0.023967 6.138055 6.889623 10.250173 11.868371 -8850 0.057839 0.053981 0.034672 0.044908 15.439944 10.052630 13.948531 11.891103 -8851 0.077035 0.065034 0.047664 0.044825 7.544353 7.098984 11.610768 9.832822 -8852 0.096787 0.090305 0.044744 0.032976 9.996924 7.864069 14.476043 12.660161 -8853 0.090978 0.083882 0.099360 0.080328 12.513128 10.140234 12.430794 12.349429 -8854 0.059933 0.058687 0.047608 0.051867 11.945544 10.868005 21.202140 19.604801 -8855 0.074482 0.069135 0.043831 0.057169 8.834893 9.597998 9.574986 8.603640 -8856 0.100767 0.086614 0.062590 0.044992 10.282577 11.806430 13.778079 13.265994 -8857 0.060960 0.040495 0.036432 0.025818 10.147029 8.078759 12.701605 9.584474 -8858 0.055840 0.047230 0.030544 0.019224 9.466535 8.198191 15.453132 13.815075 -8859 0.047008 0.053225 0.025963 0.022730 9.651990 7.372503 7.885271 8.678663 -8860 0.050811 0.048338 0.018870 0.023050 8.524195 8.158102 10.243825 9.550396 -8861 0.072026 0.105453 0.053896 0.066221 16.896810 13.205442 17.266619 14.319994 -8862 0.043476 0.042236 0.029734 0.012412 8.795901 7.183430 8.797879 7.042371 -8863 0.104168 0.110599 0.057226 0.070046 10.654912 8.630141 11.359030 10.077520 -8864 0.079788 0.052242 0.045498 0.023003 6.026148 5.117143 7.796301 5.529692 -8865 0.118229 0.084238 0.099293 0.067663 8.672216 6.479441 9.771313 7.960081 -8866 0.081865 0.071600 0.027376 0.026049 15.492959 10.347220 21.343222 18.793469 -8867 0.145211 0.118628 0.074317 0.065896 8.996225 10.505783 11.349603 9.452386 -8868 0.054057 0.057607 0.039821 0.031781 10.579431 8.498490 11.263387 9.663213 -8869 0.078459 0.067539 0.089386 0.070072 11.033671 9.974185 14.466476 13.698975 -8870 0.095897 0.087834 0.078417 0.055791 16.804647 11.790563 20.652274 16.048672 -8871 0.104093 0.095365 0.040530 0.030183 10.867479 9.453574 14.251082 11.816886 -8872 0.091650 0.100248 0.046217 0.044998 11.877665 10.877958 17.854308 16.764712 -8873 0.084109 0.077655 0.037725 0.024943 8.915053 7.633696 12.262265 11.605834 -8874 0.097837 0.067171 0.040125 0.037720 10.334071 7.817909 10.976422 11.818292 -8875 0.092883 0.064350 0.028841 0.022274 10.979552 11.583585 15.153233 13.697499 -8876 0.121235 0.083213 0.103385 0.082415 10.389828 7.914614 13.445426 11.805028 -8877 0.069272 0.056363 0.039643 0.043911 11.472680 9.837481 14.937981 10.315957 -8878 0.085961 0.104391 0.036437 0.037722 7.519398 5.386094 12.123963 11.248129 -8879 0.058292 0.052732 0.036641 0.030515 9.846659 7.601062 14.427995 11.479991 -8880 0.051637 0.045103 0.038080 0.028617 8.898854 8.652601 11.252683 8.220800 -8881 0.083228 0.071895 0.062767 0.044623 14.157899 11.503642 10.714855 9.864416 -8882 0.059262 0.060296 0.025807 0.016609 11.457297 10.036617 10.894049 9.735052 -8883 0.067028 0.045912 0.061447 0.036230 11.518083 11.117330 16.442728 14.901121 -8884 0.104952 0.071408 0.048975 0.033708 16.368424 11.140812 13.240375 12.209811 -8885 0.124715 0.094988 0.054044 0.042206 10.170546 8.416034 13.328301 10.876483 -8886 0.095406 0.079024 0.064473 0.048021 7.630164 6.642604 12.311437 13.451505 -8887 0.071585 0.070025 0.051148 0.041965 8.440030 7.098938 10.216826 8.481093 -8888 0.085910 0.076481 0.050423 0.052928 7.260262 5.152897 11.533764 8.722005 -8889 0.062640 0.041805 0.045174 0.039447 16.936034 15.810772 21.105834 21.200806 -8890 0.092212 0.066362 0.056416 0.026936 7.441384 8.601287 11.634343 9.343713 -8891 0.069873 0.082270 0.035946 0.037667 8.465521 8.245678 11.256383 11.272690 -8892 0.071701 0.049511 0.063832 0.064088 11.346373 11.641231 16.265259 16.795413 -8893 0.107012 0.059070 0.051646 0.032836 14.070388 14.406237 14.932799 11.761690 -8894 0.074346 0.053596 0.029274 0.028018 10.721061 10.696195 16.858487 20.195098 -8895 0.073775 0.079155 0.025211 0.023471 11.717130 11.476708 15.147523 15.150074 -8896 0.099068 0.076713 0.044415 0.042085 13.875404 12.158763 17.163854 15.816828 -8897 0.064248 0.067315 0.037469 0.033862 12.618550 10.655105 15.505304 13.256931 -8898 0.108697 0.095987 0.100829 0.060008 16.546607 9.646664 18.177156 13.656853 -8899 0.131551 0.084059 0.074195 0.044562 8.592978 6.674676 13.320929 11.181009 -8900 0.128333 0.093105 0.090956 0.064740 11.940451 9.208561 16.952018 13.242226 -8901 0.064042 0.043356 0.032284 0.015086 7.280530 5.710554 10.898244 11.540335 -8902 0.096430 0.061214 0.073316 0.035767 9.724591 7.957183 14.404953 11.944735 -8903 0.053865 0.037948 0.039699 0.034453 7.105819 7.091259 6.283634 6.345399 -8904 0.078124 0.046908 0.041503 0.035510 8.522393 5.999250 12.571478 12.670453 -8905 0.126063 0.081575 0.075785 0.041057 14.724409 13.599733 20.890083 16.015093 -8906 0.033227 0.027726 0.010659 0.009260 11.697002 7.474640 9.330879 7.636518 -8907 0.061157 0.068506 0.036263 0.046289 7.226178 8.011970 10.477063 13.410095 -8908 0.074547 0.083677 0.053932 0.049831 8.400165 8.015008 12.218921 9.190961 -8909 0.069304 0.051861 0.032140 0.027529 10.518611 10.277495 17.155380 14.742482 -8910 0.070322 0.086586 0.035929 0.051663 13.567995 12.826807 16.820539 11.372246 -8911 0.045238 0.045187 0.041567 0.034416 11.660226 10.270218 10.353926 8.588438 -8912 0.081839 0.063693 0.044580 0.035010 7.716548 8.175805 12.455709 13.342901 -8913 0.092381 0.096919 0.050826 0.061810 11.295200 8.970494 11.106156 8.802305 -8914 0.112460 0.079429 0.073538 0.069020 7.303693 9.836549 8.918076 9.973611 -8915 0.083657 0.080063 0.042343 0.029937 12.390988 8.595470 15.357607 13.730218 -8916 0.055759 0.045903 0.035789 0.025857 7.024689 6.861077 10.224646 8.462471 -8917 0.056789 0.047238 0.036048 0.027745 16.531969 7.716962 16.968151 10.145960 -8918 0.074242 0.063188 0.025499 0.036823 8.069515 5.784244 14.323230 12.353444 -8919 0.079454 0.053351 0.045469 0.041550 7.849095 7.445371 9.785792 9.596851 -8920 0.092662 0.066857 0.053038 0.049533 7.685931 5.944617 10.281089 11.514784 -8921 0.112395 0.082539 0.046797 0.031191 7.128881 8.586465 12.261641 12.408740 -8922 0.054353 0.055690 0.036114 0.034739 7.290282 6.549852 10.172956 7.545632 -8923 0.081581 0.076829 0.057214 0.053101 10.972020 10.028675 11.699255 11.045511 -8924 0.107876 0.072190 0.068997 0.042624 17.719462 13.207347 21.305994 15.235093 -8925 0.071074 0.043252 0.021242 0.018578 7.426116 7.854002 15.060575 14.683099 -8926 0.090656 0.077267 0.026084 0.025923 6.908962 4.709226 10.384505 6.812378 -8927 0.077964 0.063497 0.050887 0.047841 10.970083 11.937292 15.933954 15.505113 -8928 0.103015 0.088478 0.050291 0.051048 9.759024 9.687882 16.310945 17.217958 -8929 0.055549 0.056591 0.052713 0.052611 10.897767 10.498594 15.915473 17.476842 -8930 0.100345 0.109709 0.061661 0.054621 11.728761 11.880486 13.496497 11.434884 -8931 0.051371 0.052463 0.049850 0.031937 8.517351 10.562919 8.815714 9.257266 -8932 0.068987 0.071461 0.048640 0.033514 10.713671 10.306424 12.641370 14.492779 -8933 0.042606 0.036013 0.044336 0.024004 7.326291 5.880989 9.833907 10.056351 -8934 0.115241 0.088842 0.052877 0.040628 9.406694 6.158284 9.958053 7.157028 -8935 0.057773 0.030731 0.041722 0.018718 10.542260 9.961499 10.328234 10.639295 -8936 0.057194 0.064120 0.027693 0.032858 12.446727 10.037601 13.572251 12.319789 -8937 0.068474 0.089616 0.074360 0.067516 10.120893 9.829860 12.707979 12.513300 -8938 0.050577 0.042872 0.048929 0.036075 8.769288 8.907986 11.600687 10.989233 -8939 0.079423 0.081523 0.036155 0.025971 12.120393 10.379544 14.931795 12.159471 -8940 0.102409 0.067867 0.049158 0.038668 9.725974 9.155412 13.774452 11.551519 -8941 0.113557 0.090450 0.063183 0.056452 15.414515 13.846758 11.527041 10.843261 -8942 0.103665 0.067142 0.038105 0.034245 8.615525 7.285625 16.979651 10.485514 -8943 0.051323 0.027760 0.016703 0.013943 4.773924 4.459914 6.704777 5.820092 -8944 0.061322 0.070576 0.028230 0.034827 17.115080 12.183065 17.866098 15.317124 -8945 0.056694 0.048905 0.024842 0.018517 5.859687 5.811414 8.206302 10.063610 -8946 0.086609 0.065941 0.033351 0.027514 8.275322 6.628655 12.025248 10.579525 -8947 0.083045 0.052451 0.039304 0.023794 6.921246 5.943172 8.562235 7.670500 -8948 0.078715 0.064201 0.040744 0.032116 11.136874 9.830705 15.191443 10.834502 -8949 0.080192 0.060605 0.042460 0.023858 9.265221 7.265981 10.018509 8.645575 -8950 0.039394 0.034051 0.036449 0.039207 8.080675 6.343617 9.344628 7.328568 -8951 0.077556 0.089782 0.060849 0.049521 11.107728 12.595582 18.222385 16.583334 -8952 0.067708 0.058259 0.067250 0.043131 11.698823 9.818500 12.362860 13.263273 -8953 0.066819 0.074514 0.022423 0.018577 7.948203 6.915819 10.892993 10.476083 -8954 0.076422 0.101219 0.040645 0.038023 11.165362 12.186409 12.548621 11.895785 -8955 0.075560 0.059405 0.055750 0.041778 11.732444 8.750701 15.838675 9.926677 -8956 0.048545 0.036567 0.033038 0.046908 7.301679 8.404905 14.521304 18.923566 -8957 0.092028 0.070375 0.105190 0.094552 13.138355 10.109258 14.430337 13.045082 -8958 0.050937 0.045747 0.029491 0.023850 10.008602 7.864452 12.687224 11.451574 -8959 0.074641 0.065195 0.079694 0.057301 6.982291 8.498739 8.175636 8.253552 -8960 0.060198 0.091790 0.054280 0.052500 11.622978 8.780340 11.994720 9.816269 -8961 0.072326 0.081811 0.042519 0.043029 11.179068 11.545969 20.140740 18.823666 -8962 0.085809 0.082238 0.050976 0.044862 10.142472 9.522356 12.222816 8.725316 -8963 0.068191 0.061981 0.061184 0.038182 13.329647 12.136668 11.134412 8.912471 -8964 0.081564 0.049601 0.037560 0.039408 8.070878 7.880313 12.644851 12.024677 -8965 0.073279 0.076750 0.048154 0.038712 12.645995 11.259326 15.888465 17.606807 -8966 0.096691 0.088792 0.062165 0.051801 14.935202 9.790133 16.988071 14.673978 -8967 0.067276 0.074567 0.060949 0.056082 9.387605 10.000144 12.714436 13.563776 -8968 0.067044 0.059237 0.042052 0.044266 10.996704 12.828738 12.322727 11.853275 -8969 0.069940 0.046393 0.037340 0.038559 8.352328 7.535574 8.600161 7.521463 -8970 0.081167 0.094751 0.057561 0.045866 8.543091 8.571280 11.498888 12.164360 -8971 0.050255 0.035831 0.038720 0.038178 8.556808 10.626661 13.771915 13.877124 -8972 0.111572 0.079696 0.063003 0.037158 8.956957 7.726696 14.091468 12.218293 -8973 0.068688 0.068841 0.048741 0.050779 14.102163 15.766450 18.499973 22.157647 -8974 0.057880 0.044361 0.024698 0.016588 6.485570 9.299004 8.103823 10.746179 -8975 0.073882 0.045097 0.058827 0.029170 8.735358 6.918177 12.886657 10.828009 -8976 0.102739 0.062198 0.046421 0.024705 9.246698 8.414552 11.452354 11.174038 -8977 0.077045 0.043482 0.037904 0.019499 11.927830 10.404863 11.528608 12.782706 -8978 0.075607 0.049494 0.040038 0.025966 8.040084 4.777179 12.766713 9.226215 -8979 0.144943 0.069178 0.050751 0.040584 8.195571 8.429228 9.782148 10.501655 -8980 0.073891 0.069788 0.067229 0.041516 9.562522 7.550044 17.292031 12.745460 -8981 0.117711 0.074673 0.071397 0.064059 13.205181 12.789576 14.803280 12.632860 -8982 0.051962 0.045874 0.019694 0.020699 6.802476 7.441076 9.203236 9.033463 -8983 0.074943 0.076176 0.033323 0.033876 9.294078 9.407670 13.501604 12.582307 -8984 0.050347 0.053692 0.029822 0.030009 10.802775 8.009087 15.539314 13.177586 -8985 0.083325 0.071534 0.043355 0.037139 6.598980 6.734080 14.950341 14.278942 -8986 0.067344 0.058884 0.044001 0.040084 10.435872 9.195061 15.154999 13.332787 -8987 0.085012 0.060736 0.037364 0.035240 10.775554 7.645623 16.131796 12.156591 -8988 0.081579 0.072061 0.045182 0.029062 8.462074 7.410522 12.519140 10.536247 -8989 0.102431 0.082242 0.076274 0.054086 9.824653 7.676779 17.406474 11.156667 -8990 0.037782 0.041773 0.029550 0.029223 10.625331 9.808452 13.269040 13.093823 -8991 0.096445 0.105082 0.037248 0.044182 11.361438 8.336862 19.369146 12.137106 -8992 0.070593 0.042807 0.070157 0.028086 11.699047 10.531902 12.857904 12.397190 -8993 0.119173 0.109652 0.063669 0.067296 8.446385 7.237180 15.462741 13.253693 -8994 0.064632 0.052387 0.041897 0.039980 6.958901 5.851672 10.740145 9.394823 -8995 0.038288 0.031266 0.022045 0.016402 8.646711 8.741895 10.176024 11.226376 -8996 0.062604 0.049923 0.041820 0.034067 7.690922 6.389235 8.266704 7.838797 -8997 0.094057 0.062899 0.031501 0.036516 8.073308 7.734467 12.598156 11.946761 -8998 0.067399 0.051067 0.038897 0.038255 6.591952 6.307453 10.189553 10.433815 -8999 0.120870 0.113910 0.070053 0.067674 10.338253 11.324743 16.210659 13.908097 -9000 0.094401 0.071873 0.064618 0.044664 12.478257 8.501235 13.050779 10.366966 -9001 0.060479 0.040352 0.022558 0.023641 6.683827 5.446400 9.629150 6.663576 -9002 0.068135 0.060133 0.026180 0.020752 7.947054 7.613780 13.839521 13.565100 -9003 0.095055 0.085108 0.154311 0.065989 9.833671 9.019947 15.350516 14.873360 -9004 0.075791 0.045669 0.040136 0.046283 9.687458 9.062290 16.299262 10.636270 -9005 0.058214 0.055527 0.030965 0.023190 4.798643 4.548334 7.265537 7.590970 -9006 0.065836 0.078262 0.023251 0.035216 10.975056 8.943519 12.005864 9.752257 -9007 0.042835 0.040069 0.021441 0.020669 8.066385 5.995145 9.091876 8.145946 -9008 0.075164 0.072890 0.057642 0.041761 9.854834 8.158437 13.038968 11.860603 -9009 0.088869 0.073824 0.048563 0.037121 9.362025 6.647894 8.390052 5.813236 -9010 0.089953 0.062412 0.057702 0.059067 10.925782 9.104689 21.532750 16.394496 -9011 0.050257 0.055244 0.026863 0.027170 7.136065 9.069517 8.510714 9.532951 -9012 0.062311 0.056917 0.046037 0.027843 6.965432 6.729674 15.496067 13.858389 -9013 0.073531 0.059633 0.038449 0.038613 14.087857 9.497491 11.198935 10.877121 -9014 0.055382 0.051015 0.026819 0.029491 11.372393 13.797140 16.804410 17.288289 -9015 0.080382 0.070659 0.043895 0.042218 9.553692 8.042577 12.249153 13.216056 -9016 0.047706 0.061134 0.040368 0.043219 15.544873 13.536799 13.987467 13.758091 -9017 0.054985 0.038031 0.039151 0.028532 11.295721 9.255651 12.511686 9.978508 -9018 0.177750 0.127953 0.103035 0.072409 18.217884 13.940389 19.532936 19.133826 -9019 0.066294 0.064443 0.050617 0.048499 13.207958 13.164156 15.043385 14.708945 -9020 0.116237 0.091216 0.044479 0.039102 11.527812 10.660482 21.470362 20.824827 -9021 0.100531 0.088407 0.067210 0.046274 13.643122 14.289611 12.370986 13.248623 -9022 0.037835 0.036180 0.020338 0.015142 4.529547 5.492783 8.269825 9.614562 -9023 0.085036 0.099505 0.052526 0.066323 11.443345 10.090954 11.562461 10.338996 -9024 0.063010 0.053386 0.025216 0.016891 8.848073 9.149352 11.383641 10.565116 -9025 0.071676 0.083780 0.035519 0.042706 6.663985 6.848793 9.438525 9.270571 -9026 0.106214 0.060403 0.077775 0.049918 11.829012 9.950860 12.296076 9.329695 -9027 0.049094 0.059093 0.033551 0.026665 10.456725 7.454904 9.901878 6.369839 -9028 0.101366 0.095252 0.082575 0.075851 10.120017 8.637383 14.783444 12.507500 -9029 0.088890 0.058474 0.032724 0.023978 11.873319 10.912670 13.804225 11.640964 -9030 0.056976 0.044764 0.046896 0.023945 9.984950 10.381782 10.764050 11.743539 -9031 0.064023 0.070699 0.051149 0.045148 12.664268 12.686104 13.127227 11.088512 -9032 0.065115 0.062229 0.039708 0.035276 9.479294 8.217427 10.454999 10.066362 -9033 0.081765 0.089887 0.037606 0.057261 6.809838 6.560190 12.924047 11.155486 -9034 0.074440 0.053365 0.041178 0.033325 11.210836 10.237865 12.685847 13.819710 -9035 0.104877 0.087056 0.042471 0.034255 8.844345 7.986685 12.429511 14.087420 -9036 0.103300 0.087592 0.071519 0.088118 12.993495 14.159264 11.554086 11.872742 -9037 0.089740 0.057932 0.045459 0.024465 12.548925 11.679205 10.117062 7.860131 -9038 0.082297 0.073554 0.055334 0.065870 14.057088 8.438073 14.728285 10.619063 -9039 0.060474 0.044258 0.032440 0.031547 12.747472 12.477585 10.007544 10.765560 -9040 0.040734 0.040142 0.020661 0.018043 10.631094 9.039186 16.274412 15.907340 -9041 0.118039 0.085603 0.073233 0.047739 12.142321 12.588756 16.183998 18.107119 -9042 0.050570 0.053103 0.012074 0.014121 12.747623 9.385533 10.939249 7.413896 -9043 0.056067 0.061951 0.030512 0.029189 9.837633 8.296967 9.580595 11.043086 -9044 0.063747 0.060962 0.033581 0.033233 10.959528 9.583560 13.347603 11.228697 -9045 0.053233 0.059258 0.036336 0.031985 11.349902 9.496159 15.508512 13.451997 -9046 0.095160 0.082645 0.093683 0.057285 12.594834 10.901624 16.139138 14.039196 -9047 0.115470 0.080175 0.069951 0.059314 13.199941 11.307611 19.661468 19.687036 -9048 0.051883 0.051283 0.030396 0.028633 6.894438 6.318156 12.074803 8.778102 -9049 0.056184 0.066848 0.027576 0.025565 8.927734 9.910761 14.563551 14.226500 -9050 0.099214 0.098958 0.056240 0.031270 16.578579 13.087757 16.056670 19.544817 -9051 0.050956 0.056022 0.037655 0.038043 14.622331 12.988351 10.289611 11.242093 -9052 0.047945 0.047647 0.021723 0.024108 9.694480 8.247863 11.619257 10.242813 -9053 0.079394 0.079250 0.047886 0.032512 6.675101 5.577593 14.953605 10.621314 -9054 0.073448 0.059851 0.040244 0.049844 4.392472 5.667850 8.397599 7.928634 -9055 0.058437 0.048417 0.041698 0.028975 10.685568 8.308020 10.838827 10.241598 -9056 0.103784 0.078030 0.047233 0.027359 11.430778 8.488833 12.085626 11.424728 -9057 0.093129 0.069896 0.040751 0.025029 7.188143 5.275233 12.168547 8.176481 -9058 0.064568 0.062272 0.024846 0.023473 9.221253 7.717972 7.305954 6.447173 -9059 0.063015 0.054628 0.053642 0.048044 9.074877 7.383514 9.344405 8.037944 -9060 0.082945 0.055843 0.028214 0.025154 7.953171 7.568037 7.667333 6.890958 -9061 0.063276 0.077602 0.067839 0.049734 11.437512 9.198420 13.393941 11.794032 -9062 0.149559 0.108224 0.141504 0.062079 12.548622 11.154630 14.941181 15.917112 -9063 0.093642 0.054726 0.081956 0.087380 10.195920 8.444929 13.065265 11.882548 -9064 0.057049 0.072238 0.028248 0.027956 12.244382 12.976235 15.351034 18.772160 -9065 0.051085 0.077032 0.027641 0.038821 8.599358 10.365740 17.610820 16.300648 -9066 0.071101 0.059061 0.070157 0.045697 12.967250 10.686265 12.558422 9.449278 -9067 0.121216 0.095099 0.055523 0.036050 11.583946 8.406344 12.390221 11.522451 -9068 0.122823 0.088907 0.079681 0.042575 10.914716 8.973986 21.732853 18.102631 -9069 0.073984 0.085598 0.046538 0.075832 14.538128 13.817601 11.770964 14.028107 -9070 0.102108 0.126613 0.082366 0.110807 7.027421 7.178501 14.124149 14.838129 -9071 0.051366 0.050244 0.050325 0.035047 6.482145 6.111744 9.728513 8.931709 -9072 0.036051 0.036236 0.023893 0.021051 6.572311 4.879695 7.285579 7.083638 -9073 0.066336 0.057389 0.043564 0.037084 7.875433 7.413150 5.809115 5.386000 -9074 0.050885 0.060283 0.019106 0.026398 10.073788 9.272164 9.930110 11.402896 -9075 0.074243 0.058766 0.053731 0.035014 11.071174 11.758357 8.287889 9.364383 -9076 0.071366 0.057208 0.061296 0.041902 8.105737 8.256187 13.112674 11.525641 -9077 0.058859 0.057191 0.025371 0.019812 9.837173 12.164837 15.295089 13.559779 -9078 0.067979 0.049819 0.039486 0.034453 10.829252 8.368908 12.845599 10.194830 -9079 0.061636 0.048606 0.041342 0.038340 13.401984 14.034684 12.846470 16.302430 -9080 0.052377 0.039131 0.026874 0.016170 11.048824 10.642005 13.714612 10.798863 -9081 0.054988 0.044332 0.026441 0.023208 10.337745 10.308660 12.818412 11.441775 -9082 0.064747 0.053980 0.042413 0.031548 6.585037 7.903171 8.206030 8.525740 -9083 0.079733 0.063565 0.038015 0.041675 7.962569 6.992568 12.043208 10.673330 -9084 0.085733 0.071043 0.044892 0.046575 12.161465 9.792266 17.219850 14.552751 -9085 0.042983 0.036837 0.034784 0.031861 11.793159 8.692088 19.081477 13.464539 -9086 0.105123 0.066213 0.118524 0.081081 11.554366 10.441546 13.914790 12.575848 -9087 0.072765 0.064608 0.048467 0.028614 8.636481 9.595325 11.799829 11.165126 -9088 0.039366 0.040365 0.033973 0.039087 16.283709 15.689895 10.823512 11.653270 -9089 0.069420 0.047875 0.039172 0.024868 10.678450 9.525634 14.101646 11.029515 -9090 0.132316 0.144881 0.058057 0.069375 9.005429 9.118554 17.700618 16.519911 -9091 0.065604 0.054644 0.025596 0.024270 8.484281 7.507926 8.939282 8.102924 -9092 0.114950 0.095468 0.131706 0.045489 11.454942 9.369407 17.016341 15.018361 -9093 0.059950 0.069890 0.042197 0.055965 10.210979 10.528552 11.154478 11.406132 -9094 0.117925 0.126918 0.046892 0.056887 12.258056 10.247724 16.984306 13.600205 -9095 0.062626 0.048066 0.029532 0.033541 9.056854 7.095356 13.989336 11.045860 -9096 0.153400 0.147751 0.087945 0.066839 12.519730 11.638234 14.989851 14.345793 -9097 0.099870 0.076323 0.075632 0.045330 14.296093 11.015975 13.762253 12.546988 -9098 0.061042 0.040781 0.029275 0.015722 19.562946 12.060134 18.410149 11.269603 -9099 0.047745 0.049909 0.060913 0.053984 6.486169 4.233974 8.383333 5.920928 -9100 0.080137 0.063023 0.046451 0.050139 6.732363 7.061482 9.649059 9.919451 -9101 0.088908 0.088956 0.067252 0.076507 8.678729 9.707014 11.098622 13.018871 -9102 0.052595 0.051273 0.030831 0.032413 11.016966 8.879716 11.985915 12.830200 -9103 0.074787 0.058953 0.055829 0.038548 10.302884 8.696203 12.159003 11.559262 -9104 0.052057 0.049044 0.034487 0.027006 9.295321 9.046508 9.564071 13.366882 -9105 0.087066 0.060092 0.057338 0.034902 9.364500 8.000614 12.451873 11.270447 -9106 0.079492 0.072848 0.029547 0.026961 8.299692 7.880469 11.358802 10.108342 -9107 0.051280 0.054705 0.032926 0.029395 8.492345 6.538506 10.869599 7.734487 -9108 0.074502 0.056940 0.055215 0.055326 11.470132 9.573154 16.158019 16.592052 -9109 0.059858 0.058714 0.029604 0.026130 7.375161 7.241056 8.666584 7.184304 -9110 0.102552 0.119417 0.086310 0.067684 11.345826 18.051188 11.376999 15.567971 -9111 0.095475 0.081152 0.042539 0.032165 8.083537 6.919140 9.852714 8.658340 -9112 0.087142 0.064585 0.072010 0.051252 11.649306 12.461550 16.966505 19.363432 -9113 0.079112 0.053519 0.036382 0.031020 10.300436 10.956875 13.761112 14.378710 -9114 0.067177 0.048859 0.031444 0.016163 9.000901 8.191718 9.161976 6.980459 -9115 0.046655 0.044117 0.016932 0.017441 4.027070 3.365508 4.703288 4.303676 -9116 0.059646 0.040026 0.041056 0.023648 12.443422 8.458048 12.937767 11.684485 -9117 0.085928 0.099241 0.070925 0.042050 12.198834 10.895879 10.347016 12.290906 -9118 0.056120 0.044231 0.033588 0.026377 12.831081 10.900569 10.528521 10.352018 -9119 0.052150 0.042968 0.053865 0.039746 8.121349 8.073493 10.308616 9.751392 -9120 0.034981 0.059004 0.046682 0.062695 10.341803 8.496402 12.467596 11.877013 -9121 0.070041 0.058488 0.046564 0.027753 7.591266 7.257692 8.404174 7.602121 -9122 0.057531 0.055143 0.030295 0.019395 9.431396 7.521975 12.614554 10.240613 -9123 0.059270 0.050033 0.057368 0.031144 12.348603 10.598981 11.120680 10.883173 -9124 0.093060 0.073697 0.059913 0.062677 11.318633 11.900694 17.795990 18.832050 -9125 0.110986 0.090016 0.091330 0.084256 12.176884 12.592129 17.475402 18.024632 -9126 0.111960 0.092899 0.080773 0.050632 12.580608 11.924195 15.305432 14.844624 -9127 0.039644 0.041788 0.021723 0.030657 10.190860 7.532056 10.582057 11.001213 -9128 0.043076 0.041689 0.037371 0.042008 6.511791 6.563562 10.085004 7.883497 -9129 0.086819 0.061602 0.054999 0.035126 9.016210 7.925878 10.043380 7.763522 -9130 0.094557 0.075285 0.060373 0.035347 11.740314 11.284429 10.576912 14.655980 -9131 0.050108 0.062784 0.036278 0.042096 10.011675 8.905974 12.708828 8.602289 -9132 0.053773 0.057464 0.026921 0.023216 9.710886 7.886804 12.644896 15.842348 -9133 0.052913 0.042733 0.020686 0.013918 7.423939 6.588961 8.111761 8.524303 -9134 0.104783 0.089285 0.057361 0.043791 10.246720 9.947679 12.818699 13.639142 -9135 0.086710 0.074315 0.028253 0.030124 13.919816 9.896706 16.636179 12.694160 -9136 0.048152 0.050218 0.020244 0.029072 8.064953 7.252614 11.483579 7.865779 -9137 0.101490 0.090630 0.058654 0.060936 16.141056 11.924452 17.763158 14.884380 -9138 0.117586 0.070765 0.055918 0.043243 8.131595 8.288530 11.272797 11.605996 -9139 0.067462 0.038282 0.043709 0.023671 13.276363 10.194090 13.649755 10.027146 -9140 0.088597 0.060512 0.087405 0.064832 18.734671 16.457532 17.497395 14.604207 -9141 0.092878 0.072999 0.113182 0.076659 13.548565 11.111016 18.626267 13.336744 -9142 0.088598 0.072109 0.053463 0.043401 9.211625 9.188496 15.175292 14.356239 -9143 0.059314 0.064665 0.051002 0.040628 7.073276 6.126560 7.840867 8.732736 -9144 0.056923 0.062999 0.029975 0.035514 7.728802 6.680965 10.050685 10.195514 -9145 0.045623 0.054204 0.021354 0.021858 10.098881 8.422267 13.225894 9.344930 -9146 0.091073 0.067449 0.048249 0.039574 9.362883 6.467149 10.027120 9.058823 -9147 0.081862 0.067795 0.059607 0.042288 7.317434 5.752437 17.908428 14.340844 -9148 0.114026 0.077995 0.042404 0.038100 7.181341 6.649562 18.973035 14.187841 -9149 0.077893 0.059539 0.065738 0.053991 8.962559 9.998845 15.433717 15.145413 -9150 0.078833 0.067317 0.029870 0.026680 7.412379 6.336689 11.905558 11.000847 -9151 0.075240 0.045494 0.079126 0.045708 11.417760 8.915287 12.499254 11.975931 -9152 0.068479 0.060195 0.025326 0.022735 8.529022 8.605448 14.343577 14.267527 -9153 0.048643 0.036052 0.044910 0.033046 13.639222 10.077829 17.384315 14.050576 -9154 0.053758 0.050888 0.042497 0.026642 11.378372 8.207657 12.821415 9.464746 -9155 0.114822 0.112383 0.087765 0.079520 16.966285 16.134192 18.950217 19.738218 -9156 0.090310 0.064366 0.030934 0.018113 9.565454 8.311246 8.525212 6.824009 -9157 0.072106 0.063011 0.026784 0.020548 10.266883 12.172311 13.374960 12.641505 -9158 0.064711 0.051286 0.029123 0.021510 8.111352 6.850724 9.579356 8.509028 -9159 0.097667 0.066239 0.058383 0.042391 9.047017 8.760013 9.969880 9.176116 -9160 0.071472 0.057507 0.039011 0.035610 9.877868 10.743540 12.029686 15.355151 -9161 0.072983 0.049760 0.045083 0.028538 8.944482 8.297177 13.791355 10.304799 -9162 0.049055 0.060473 0.020429 0.026213 6.516871 6.286072 11.348681 9.266198 -9163 0.081407 0.112506 0.050519 0.065985 9.692410 8.823635 14.266519 11.520420 -9164 0.103256 0.069776 0.075199 0.042909 9.781770 7.742107 14.370901 15.274687 -9165 0.067056 0.059429 0.046404 0.039063 7.471289 6.231171 10.066117 7.842101 -9166 0.077412 0.062261 0.057880 0.038050 15.382776 16.121991 18.702684 17.701921 -9167 0.087971 0.053420 0.055360 0.030979 9.766373 6.521862 9.068972 8.591539 -9168 0.085541 0.054545 0.043861 0.032660 8.487687 7.632303 15.721284 13.143907 -9169 0.053182 0.062480 0.050382 0.038736 9.154481 7.789408 11.782556 13.942360 -9170 0.110101 0.069444 0.068735 0.035959 13.717845 9.508374 14.163203 10.793729 -9171 0.128734 0.115934 0.065214 0.048685 13.316194 10.226765 23.770280 14.216027 -9172 0.072801 0.062712 0.042228 0.041962 11.681740 9.242082 12.942720 12.666860 -9173 0.061374 0.047054 0.032798 0.018888 9.663836 9.132724 11.554945 10.685367 -9174 0.068074 0.046208 0.045173 0.030700 12.472420 9.144012 11.448635 11.067935 -9175 0.105300 0.092716 0.057992 0.047603 8.397942 6.986923 14.950750 10.748487 -9176 0.072850 0.059435 0.053282 0.027206 9.101869 9.888693 9.688035 11.025882 -9177 0.128559 0.093694 0.055263 0.037287 13.608536 9.526852 14.217275 12.714369 -9178 0.082566 0.064829 0.033182 0.019730 12.833964 10.095736 15.772614 11.394856 -9179 0.091186 0.130094 0.081261 0.071535 15.280081 9.963733 17.751956 13.873429 -9180 0.076277 0.072881 0.063991 0.055571 11.904308 10.975288 14.991784 13.855987 -9181 0.125242 0.107681 0.088337 0.072491 7.563680 6.940428 12.473874 13.108074 -9182 0.031928 0.036456 0.028556 0.027572 12.720328 11.036806 9.951233 8.853129 -9183 0.043443 0.050111 0.026355 0.021859 7.228819 6.751045 12.871423 11.909023 -9184 0.074563 0.062664 0.043603 0.036207 7.306939 6.432234 12.926988 10.374483 -9185 0.096296 0.058386 0.056108 0.049428 9.745412 10.294245 10.759276 9.967734 -9186 0.091148 0.073733 0.055918 0.043059 7.137426 4.892383 11.781019 9.365335 -9187 0.115390 0.077296 0.072041 0.045324 14.216910 10.679267 17.835373 12.399805 -9188 0.055813 0.047307 0.045250 0.034423 7.305503 7.114464 9.546548 10.816772 -9189 0.086053 0.073929 0.079284 0.047114 10.704316 7.593015 15.665562 14.038150 -9190 0.050617 0.044575 0.031326 0.027643 12.350219 9.387794 13.262010 14.865829 -9191 0.066403 0.053721 0.038015 0.026454 20.536866 11.977664 22.627009 12.006725 -9192 0.090779 0.074546 0.076360 0.048053 13.036633 10.363348 12.157233 11.099857 -9193 0.033050 0.035484 0.017944 0.016458 10.982300 5.489695 12.178687 8.157792 -9194 0.098201 0.094347 0.057852 0.055499 11.694676 7.397545 14.238619 11.111701 -9195 0.080691 0.100150 0.048659 0.046291 9.023149 8.254796 17.807232 15.770002 -9196 0.072593 0.094835 0.055549 0.065527 12.542393 8.792683 16.110830 15.223134 -9197 0.054923 0.050671 0.034910 0.031420 9.703274 11.003671 11.976642 12.624756 -9198 0.098462 0.080585 0.057610 0.048057 9.993488 8.704757 10.843595 11.498081 -9199 0.059741 0.046024 0.023031 0.021241 11.006010 9.774892 12.867273 11.091289 -9200 0.086245 0.068709 0.052545 0.040105 9.084573 7.716057 10.900432 8.215680 -9201 0.120418 0.115614 0.159694 0.097423 19.104308 13.968125 21.495132 20.450880 -9202 0.109162 0.094499 0.044130 0.029749 9.336563 8.007985 14.976939 11.320927 -9203 0.081912 0.061362 0.063223 0.039012 11.714894 10.633830 16.303749 16.315781 -9204 0.088483 0.065195 0.064338 0.041733 11.763785 8.073814 8.640595 7.011839 -9205 0.101553 0.083917 0.084470 0.065890 10.344611 8.172246 13.895505 12.164050 -9206 0.073027 0.042438 0.037310 0.028659 15.136094 10.259622 12.188779 11.777028 -9207 0.056696 0.060941 0.033129 0.031541 9.276941 8.326339 11.730082 10.865577 -9208 0.115695 0.098935 0.051661 0.040528 11.321381 8.630713 14.897872 12.151829 -9209 0.070184 0.087537 0.036780 0.042857 12.226159 9.270798 18.080076 11.355024 -9210 0.071624 0.071067 0.042599 0.042353 9.075830 9.412605 12.496143 11.749925 -9211 0.083386 0.046259 0.061238 0.036627 9.157965 7.501450 9.935771 7.592524 -9212 0.058849 0.064083 0.029793 0.036081 10.679697 8.160577 14.582601 10.239570 -9213 0.076498 0.064510 0.051797 0.039353 11.602744 9.484147 11.779475 10.943910 -9214 0.121907 0.072524 0.066658 0.036506 10.828424 7.628660 10.675396 7.987191 -9215 0.049639 0.046920 0.038609 0.023425 12.261640 9.512438 11.467762 11.306078 -9216 0.085202 0.068077 0.081640 0.043422 11.010920 9.858765 16.665291 13.176099 -9217 0.118959 0.071203 0.114271 0.061731 11.810566 11.041701 11.126490 10.929663 -9218 0.067831 0.059667 0.040415 0.021191 6.939617 6.412027 9.361526 8.442593 -9219 0.057571 0.068005 0.044162 0.030867 8.086484 5.944942 12.804046 10.456272 -9220 0.062279 0.050225 0.037828 0.032935 11.917592 10.815345 14.729904 15.146325 -9221 0.060536 0.056028 0.050282 0.042044 11.658247 8.872757 15.942561 15.042931 -9222 0.057846 0.059864 0.039464 0.032440 7.971924 7.001910 12.198378 9.694071 -9223 0.077578 0.066757 0.062593 0.057883 8.236104 10.564389 12.802136 14.801046 -9224 0.070108 0.064573 0.029835 0.024678 6.526436 8.054773 9.655360 11.397847 -9225 0.076988 0.070044 0.056401 0.058850 6.954961 5.238368 11.284730 10.300118 -9226 0.040799 0.041622 0.016988 0.019254 10.300978 6.209233 10.688061 9.129241 -9227 0.044667 0.033555 0.038369 0.022075 11.084357 9.111596 10.901118 8.563958 -9228 0.073464 0.079465 0.081577 0.065310 10.430259 10.028107 17.426654 17.749085 -9229 0.073095 0.063490 0.046228 0.037234 9.915368 9.656440 11.483833 9.280005 -9230 0.089290 0.086186 0.040202 0.043410 10.964801 10.318865 13.305963 11.841441 -9231 0.054521 0.053174 0.061145 0.047375 10.908618 9.550435 10.777724 9.584130 -9232 0.074845 0.064736 0.034580 0.025256 11.758055 9.070512 17.137713 15.298121 -9233 0.049393 0.045991 0.034530 0.027723 6.380839 7.124771 8.217922 9.702178 -9234 0.066058 0.043584 0.029202 0.023219 10.601672 9.833303 9.778038 7.950705 -9235 0.045366 0.035757 0.040643 0.034199 11.770770 12.181915 14.040954 10.707600 -9236 0.104247 0.098177 0.108461 0.085699 9.859848 9.109448 13.856899 13.548441 -9237 0.118464 0.090976 0.034841 0.035962 10.922121 6.749219 18.089215 13.888262 -9238 0.072937 0.077857 0.023916 0.032027 10.224119 11.727984 9.280773 12.207688 -9239 0.060154 0.041105 0.039184 0.038223 10.169359 9.392181 10.911196 10.653909 -9240 0.132522 0.110394 0.085725 0.079805 13.066149 13.490519 14.737749 13.716564 -9241 0.069352 0.057636 0.038297 0.018686 6.889702 6.893780 11.618616 11.559890 -9242 0.056065 0.061933 0.062911 0.061291 15.029747 11.942121 15.229837 10.783634 -9243 0.146816 0.141054 0.102300 0.065982 10.593360 9.043280 15.115466 13.226660 -9244 0.046633 0.044044 0.035516 0.028263 10.281440 8.482880 9.939998 9.138868 -9245 0.077355 0.049526 0.043487 0.033866 11.033770 9.590852 13.536923 13.353938 -9246 0.066712 0.060837 0.047259 0.031950 8.458828 8.817794 11.548539 10.177162 -9247 0.057924 0.041673 0.023617 0.023056 9.917923 8.354730 13.973768 12.841513 -9248 0.064932 0.091241 0.039543 0.024347 7.514066 8.860437 13.158874 11.347124 -9249 0.062388 0.048098 0.030765 0.026061 8.605231 8.239653 12.500770 11.556808 -9250 0.092741 0.081210 0.069256 0.050685 7.935842 7.501933 14.094218 12.073279 -9251 0.066779 0.055421 0.045857 0.044940 13.828283 9.792967 15.403280 10.858417 -9252 0.085959 0.063981 0.057423 0.046560 12.222536 9.433415 7.912496 9.654657 -9253 0.109357 0.112064 0.054998 0.058859 8.742960 9.311842 11.957302 12.899501 -9254 0.047446 0.037289 0.035736 0.019340 6.942393 7.303449 8.056577 8.744454 -9255 0.057602 0.060727 0.038391 0.034831 12.207380 10.593035 14.492994 12.756766 -9256 0.086172 0.071526 0.082632 0.053767 7.605176 8.142402 10.337862 11.021209 -9257 0.106699 0.089100 0.063179 0.056146 7.840483 8.495027 10.645860 10.655943 -9258 0.122125 0.100170 0.066969 0.047408 13.526127 9.584672 12.771771 12.993041 -9259 0.045435 0.031508 0.024985 0.019197 10.871966 8.870782 11.126559 11.094900 -9260 0.054321 0.032651 0.021664 0.010789 7.169554 4.534962 9.467565 9.657288 -9261 0.081627 0.087965 0.029531 0.034794 11.741226 13.220823 11.811372 11.752249 -9262 0.077138 0.089968 0.069560 0.075677 9.185518 13.455516 15.516921 20.020167 -9263 0.060138 0.046208 0.035925 0.022028 9.884640 6.757256 13.553279 10.823288 -9264 0.052873 0.070102 0.017389 0.031090 9.791392 9.565041 14.126045 16.090974 -9265 0.067726 0.064329 0.041723 0.037409 10.670632 10.305218 13.881727 13.244512 -9266 0.119739 0.076936 0.052618 0.030063 11.068476 10.410423 12.907776 11.035127 -9267 0.096640 0.065095 0.060049 0.046472 8.092377 9.788368 10.645686 10.618999 -9268 0.090883 0.063660 0.063570 0.042819 5.839789 5.358576 9.469641 8.228099 -9269 0.093774 0.094231 0.071629 0.055550 11.964277 10.118427 17.812032 13.865945 -9270 0.059801 0.064190 0.034519 0.030310 12.783581 8.168074 10.443465 8.209730 -9271 0.076684 0.071376 0.038429 0.030476 7.396091 7.170383 13.036986 9.371242 -9272 0.044865 0.037073 0.030274 0.021302 14.182155 10.832088 15.867075 11.702142 -9273 0.076711 0.076919 0.028852 0.026195 8.957876 8.477501 15.118150 10.935279 -9274 0.069541 0.063971 0.053080 0.058133 14.067319 10.918416 13.685963 12.752814 -9275 0.077915 0.067586 0.041424 0.035062 8.979514 8.906330 12.556670 9.335631 -9276 0.043589 0.051922 0.036533 0.034082 10.195732 10.300917 9.986213 9.074730 -9277 0.078449 0.077775 0.034378 0.024622 8.268861 6.758564 15.641921 10.512797 -9278 0.070417 0.061757 0.035192 0.033722 10.096760 10.003049 17.411420 16.571626 -9279 0.116368 0.097561 0.051156 0.059746 9.878574 9.320615 12.465148 12.484492 -9280 0.073790 0.069322 0.062835 0.048576 12.944943 9.412122 12.689555 12.199721 -9281 0.050810 0.055495 0.045790 0.051810 12.150908 10.713807 16.143031 15.782274 -9282 0.059114 0.048219 0.044985 0.040211 6.533162 6.626248 12.067521 11.216182 -9283 0.052863 0.034215 0.036161 0.019617 10.430082 10.300476 11.899032 11.570843 -9284 0.070377 0.050170 0.032787 0.035120 10.686825 10.653007 12.873733 13.693310 -9285 0.100737 0.076692 0.064935 0.052451 11.769809 8.842316 11.365448 10.851012 -9286 0.095461 0.073390 0.054745 0.033944 9.289071 8.850037 11.674793 9.805191 -9287 0.095446 0.089262 0.050897 0.033801 10.546681 9.401128 11.773087 12.969083 -9288 0.039608 0.040010 0.038935 0.034449 10.528831 8.410894 10.845982 9.744760 -9289 0.083075 0.078800 0.058587 0.037601 10.578196 8.682695 10.558942 10.369867 -9290 0.096294 0.080460 0.043654 0.032094 10.642695 8.475580 13.061023 10.433836 -9291 0.091327 0.074151 0.046826 0.044158 7.910334 7.872783 14.308286 14.236088 -9292 0.082818 0.081959 0.073544 0.076234 9.191493 7.615921 14.367147 12.207565 -9293 0.133336 0.090627 0.047402 0.038032 9.203334 9.351445 15.459759 13.891720 -9294 0.055498 0.052052 0.035161 0.030667 7.507601 4.967347 9.987191 7.536399 -9295 0.057383 0.040663 0.038066 0.026829 10.699842 8.397356 16.545769 12.476967 -9296 0.095323 0.069915 0.057597 0.047465 10.110851 8.810745 20.741405 18.825830 -9297 0.051017 0.034944 0.036473 0.021665 9.513650 7.404415 11.259612 10.431649 -9298 0.051489 0.056319 0.024669 0.030431 8.517757 7.133587 15.440569 14.336232 -9299 0.059518 0.053591 0.039165 0.021849 13.459029 12.331543 23.997045 17.698718 -9300 0.052900 0.053775 0.040117 0.031311 9.607034 7.998357 9.569895 9.230627 -9301 0.098626 0.100189 0.068867 0.044326 12.116099 9.376525 13.945918 10.671003 -9302 0.087353 0.077206 0.050704 0.051642 11.763380 7.529586 12.710423 7.682739 -9303 0.047318 0.044345 0.027283 0.025710 5.537693 6.180901 9.133409 8.047418 -9304 0.090491 0.078953 0.083291 0.053110 11.117235 9.045640 14.311697 13.228901 -9305 0.088383 0.068121 0.056333 0.041208 8.644698 6.840835 26.694684 14.400055 -9306 0.059661 0.051198 0.024264 0.018851 8.522760 9.528436 9.533966 9.424335 -9307 0.043100 0.024075 0.018824 0.011718 8.105234 7.793184 10.299641 12.140669 -9308 0.128482 0.129248 0.070584 0.068724 9.614145 10.228599 12.070827 10.989509 -9309 0.078577 0.076015 0.039006 0.024254 6.747122 7.017207 12.686122 13.924529 -9310 0.054457 0.054675 0.026394 0.029774 9.924610 6.145521 9.887508 7.004703 -9311 0.089528 0.052423 0.057232 0.034020 7.921295 5.065740 12.477199 8.951749 -9312 0.082585 0.087730 0.056196 0.044129 8.118482 9.923189 13.827997 15.605246 -9313 0.087217 0.058226 0.042987 0.037586 8.658749 7.671763 13.331902 9.911308 -9314 0.071955 0.078461 0.066207 0.076035 7.713014 5.897578 8.977009 7.598345 -9315 0.073023 0.069289 0.057715 0.042195 11.359784 10.835514 14.436193 10.666502 -9316 0.095467 0.072641 0.072140 0.043701 11.717348 11.465091 11.637544 13.310669 -9317 0.105695 0.076513 0.063134 0.055190 11.532726 10.725981 16.512085 14.289911 -9318 0.060603 0.039184 0.041357 0.023074 10.119604 10.249674 11.232729 11.523923 -9319 0.045682 0.043159 0.031361 0.036255 9.558628 8.871166 10.779944 8.958938 -9320 0.065434 0.063692 0.034766 0.025029 8.524206 7.742774 11.185148 8.749363 -9321 0.098811 0.063634 0.052311 0.037867 7.857097 5.678080 10.703524 9.350167 -9322 0.057148 0.056555 0.028382 0.054030 9.897149 8.956869 15.221893 12.508070 -9323 0.126355 0.085892 0.039881 0.026809 9.738658 9.183332 9.910109 11.901794 -9324 0.070650 0.071192 0.044935 0.042112 9.147145 7.862634 7.853033 8.079710 -9325 0.080089 0.053593 0.070431 0.046699 15.063786 13.003366 16.467025 16.748542 -9326 0.065168 0.056960 0.028323 0.018975 6.035875 6.257194 9.269625 8.009670 -9327 0.127535 0.065229 0.057529 0.031570 10.756389 8.107792 13.850022 9.073315 -9328 0.079336 0.064044 0.055993 0.050191 5.718929 7.070923 10.264695 12.260289 -9329 0.078874 0.061998 0.041169 0.031214 10.588600 9.970613 21.341686 18.177288 -9330 0.089811 0.062787 0.045121 0.044095 9.206057 10.075356 11.377592 11.219154 -9331 0.069832 0.048494 0.040176 0.027282 8.430146 7.086895 14.218130 10.556894 -9332 0.083389 0.085690 0.053340 0.063251 15.857289 9.830059 17.589678 15.661324 -9333 0.049230 0.038929 0.021457 0.013666 8.091843 7.203782 12.788522 10.260131 -9334 0.087109 0.072623 0.044225 0.052244 9.810543 10.547610 12.275644 11.638079 -9335 0.075291 0.061664 0.072594 0.041944 17.774997 9.853245 16.339667 12.192269 -9336 0.068199 0.061961 0.049863 0.048754 9.821832 10.441114 10.515496 9.699122 -9337 0.057404 0.043873 0.058907 0.030937 7.575455 5.973306 12.291428 12.290309 -9338 0.104328 0.098594 0.062507 0.093568 9.824365 8.144917 11.390446 8.475862 -9339 0.095939 0.071897 0.053760 0.052180 6.925969 6.347716 15.340924 13.064215 -9340 0.083633 0.080217 0.054771 0.054851 11.354807 11.403380 12.565672 12.497031 -9341 0.104973 0.085276 0.035212 0.033186 8.115063 6.565998 13.166721 10.720114 -9342 0.066924 0.073567 0.028551 0.027634 9.407934 8.974784 9.980966 10.010150 -9343 0.098687 0.074114 0.080874 0.064436 11.228670 9.269356 11.846968 10.372379 -9344 0.059541 0.067171 0.034953 0.042005 14.194286 10.318351 11.914446 8.277938 -9345 0.088243 0.085989 0.042919 0.054491 9.560653 8.649574 12.042521 12.493450 -9346 0.087572 0.070043 0.070983 0.053259 7.983578 9.268495 9.341957 9.317286 -9347 0.088483 0.059970 0.036760 0.034872 10.170565 9.111929 14.296247 12.900058 -9348 0.112652 0.117155 0.056944 0.048732 9.806809 10.169454 11.068671 10.006039 -9349 0.070354 0.055129 0.047677 0.027885 7.581559 7.343170 11.277793 13.136868 -9350 0.147235 0.149960 0.097816 0.084388 14.580548 13.593399 12.355203 10.593369 -9351 0.098793 0.084056 0.057490 0.037403 17.015813 13.868396 16.896424 12.357546 -9352 0.119615 0.091366 0.081579 0.043753 13.186753 10.490179 12.289910 11.698955 -9353 0.093046 0.040842 0.046077 0.026872 10.452306 6.197060 11.712005 8.907479 -9354 0.064371 0.069752 0.047872 0.053628 15.156964 12.001238 17.654802 11.007133 -9355 0.074904 0.055567 0.038471 0.031466 7.408309 6.417805 13.591451 12.074169 -9356 0.096967 0.082164 0.079684 0.069467 12.340403 10.543245 13.715274 11.843067 -9357 0.065674 0.058434 0.051654 0.038120 7.389680 6.418091 12.224047 9.477555 -9358 0.046520 0.046342 0.032252 0.028198 8.824727 10.939768 13.590711 12.264687 -9359 0.070289 0.060997 0.038527 0.044446 6.780070 6.570587 10.649822 9.905092 -9360 0.103559 0.097412 0.102332 0.056130 9.180153 10.871144 11.987637 14.332993 -9361 0.054094 0.036859 0.042753 0.023650 10.708913 10.649924 12.385594 9.794397 -9362 0.083570 0.089772 0.057326 0.052708 14.399888 11.715581 18.216925 20.224933 -9363 0.086485 0.082726 0.054710 0.040867 8.152433 6.654084 14.282068 11.547759 -9364 0.081007 0.066100 0.050693 0.036358 6.565531 6.893206 13.905497 11.624565 -9365 0.055056 0.049514 0.028549 0.022409 9.799038 8.057804 13.280408 12.199309 -9366 0.071197 0.068743 0.050741 0.035120 7.781662 5.823607 12.285198 13.283890 -9367 0.060608 0.055705 0.050403 0.040358 10.774473 11.216457 15.097652 13.607289 -9368 0.095140 0.053623 0.074999 0.054439 8.731255 9.479317 12.277906 10.513501 -9369 0.128377 0.090058 0.094225 0.064208 9.067874 6.273159 10.638684 8.593383 -9370 0.055765 0.057000 0.037309 0.028707 6.783078 6.715894 10.710706 9.516595 -9371 0.062853 0.041739 0.035261 0.022567 11.223867 8.686365 20.882980 17.651259 -9372 0.135267 0.106559 0.092220 0.071796 11.241088 9.189113 13.562267 9.296633 -9373 0.092852 0.092521 0.055792 0.072575 12.500894 8.101110 14.607946 11.358342 -9374 0.061594 0.062049 0.052566 0.056810 11.677568 9.406783 17.567311 15.608874 -9375 0.058950 0.061877 0.034955 0.037882 7.340292 7.326698 9.800188 8.531479 -9376 0.049115 0.038095 0.034318 0.027102 8.974052 8.116402 11.612167 13.250899 -9377 0.071313 0.049526 0.042114 0.033207 13.258715 8.277480 11.024182 8.968448 -9378 0.077010 0.069606 0.035995 0.028717 12.548003 9.091578 15.820721 12.485326 -9379 0.063372 0.069355 0.042828 0.032851 8.249471 9.475963 10.846699 11.383839 -9380 0.065542 0.061390 0.070342 0.055422 10.840031 10.719544 13.247006 13.912203 -9381 0.058291 0.052089 0.025627 0.032272 11.209837 9.918856 13.043467 11.622694 -9382 0.124625 0.139892 0.059880 0.089404 10.124408 10.273301 9.774243 10.788908 -9383 0.049598 0.043922 0.034551 0.028143 10.184155 6.747473 11.811207 11.733407 -9384 0.073788 0.063088 0.089551 0.072057 10.247838 9.976401 14.770713 12.940660 -9385 0.074475 0.059816 0.051649 0.033162 9.054085 7.264554 17.506491 14.706155 -9386 0.087200 0.123398 0.067561 0.088386 12.082004 11.137806 20.633691 17.526180 -9387 0.057653 0.061961 0.031475 0.028427 8.425063 6.675349 13.451278 10.573303 -9388 0.109529 0.065923 0.064330 0.047022 8.267187 8.206407 17.108049 15.549617 -9389 0.080725 0.066047 0.045566 0.045624 10.796130 9.389676 16.451691 11.225810 -9390 0.046374 0.026916 0.041470 0.030992 8.198462 8.909510 11.488490 9.094843 -9391 0.073259 0.046108 0.050808 0.020787 8.489803 6.700503 12.150651 8.624315 -9392 0.096047 0.078884 0.078940 0.058975 15.967356 12.235269 17.226333 14.115215 -9393 0.062398 0.050204 0.040792 0.040952 11.602605 9.788043 10.950025 12.219383 -9394 0.071738 0.067178 0.046942 0.039887 7.506944 7.734440 14.579723 13.821658 -9395 0.099623 0.071114 0.075071 0.053027 13.088004 11.244985 17.465707 13.429889 -9396 0.058483 0.047922 0.038621 0.036792 11.721663 7.602347 11.484222 7.250813 -9397 0.049137 0.060455 0.027483 0.028083 11.110390 11.497950 11.001201 9.713448 -9398 0.079377 0.072841 0.061232 0.040605 12.211816 10.008348 15.618566 14.548653 -9399 0.066369 0.063662 0.022843 0.022618 9.591640 5.790091 10.966201 8.472442 -9400 0.084297 0.096703 0.050824 0.047128 8.477352 8.402981 16.601453 17.509139 -9401 0.056414 0.056520 0.045881 0.032715 9.285963 7.355680 14.972637 12.001727 -9402 0.054451 0.041241 0.030837 0.013577 8.679715 6.889311 11.211584 9.650816 -9403 0.107419 0.080830 0.063888 0.059653 10.883871 10.317819 13.510319 8.485077 -9404 0.077762 0.086774 0.048922 0.042835 11.560776 8.727220 20.150351 19.212106 -9405 0.043031 0.050560 0.027031 0.023969 8.410414 5.638117 11.565999 8.053617 -9406 0.079582 0.057566 0.072961 0.038890 10.174520 6.967083 14.955559 14.676622 -9407 0.068021 0.065557 0.071915 0.054910 6.180211 6.966003 10.298824 12.104014 -9408 0.053385 0.044593 0.056955 0.047863 6.007373 5.644314 9.521301 8.345828 -9409 0.089429 0.064817 0.026562 0.026562 7.247676 6.240611 9.859556 9.193053 -9410 0.035849 0.037476 0.024858 0.024670 11.050923 8.798677 10.737137 10.784027 -9411 0.036233 0.035451 0.032121 0.023383 6.689870 6.342641 9.526535 8.671262 -9412 0.084204 0.057422 0.043104 0.022049 13.828062 14.653834 18.998355 18.009848 -9413 0.063173 0.063863 0.046932 0.037287 11.907840 8.825964 12.079276 8.304106 -9414 0.062523 0.075048 0.047966 0.049380 13.153097 11.208762 11.388500 13.540753 -9415 0.073050 0.059725 0.048520 0.024501 13.786040 10.616233 12.073389 10.134671 -9416 0.082259 0.091863 0.065501 0.064987 10.880602 12.534604 17.421847 17.888794 -9417 0.038688 0.025736 0.021309 0.012803 7.547726 6.406130 13.152350 11.200415 -9418 0.108609 0.072066 0.057339 0.027293 10.701341 10.837945 11.978760 13.256025 -9419 0.087731 0.078242 0.048756 0.047270 11.456933 10.202324 10.420915 9.341346 -9420 0.054726 0.054560 0.030578 0.036639 13.081684 11.833494 12.830777 11.421619 -9421 0.068267 0.051283 0.047550 0.039712 7.134636 5.630096 11.712442 8.433909 -9422 0.059162 0.060610 0.044099 0.037076 8.275179 6.684714 13.417171 12.796376 -9423 0.128981 0.094189 0.060440 0.047450 12.763095 11.238219 14.722562 13.856745 -9424 0.052865 0.054217 0.038898 0.039029 5.706816 5.798539 12.936243 10.056950 -9425 0.061479 0.066391 0.039270 0.036527 8.313461 8.260280 13.653408 12.953857 -9426 0.058506 0.049040 0.025634 0.020251 9.925883 7.208764 13.098914 10.234372 -9427 0.046181 0.053347 0.035347 0.048225 9.309825 8.498922 14.256908 10.033054 -9428 0.068270 0.076807 0.062248 0.040912 5.674050 5.012784 10.669671 10.798696 -9429 0.073850 0.060615 0.067271 0.044694 10.986305 9.712552 13.856895 9.791473 -9430 0.079244 0.066170 0.035696 0.029358 8.458374 7.170444 11.321701 11.226940 -9431 0.103596 0.067498 0.048884 0.023013 16.975233 11.447707 15.189922 16.306079 -9432 0.093328 0.067461 0.090961 0.052242 13.998616 11.667008 14.656049 12.188401 -9433 0.042542 0.038868 0.039812 0.031832 8.988743 6.937680 11.249438 9.897793 -9434 0.099529 0.123943 0.054525 0.054071 11.968612 9.271104 17.437047 12.356545 -9435 0.055060 0.031922 0.027382 0.017533 6.116872 6.422323 12.406026 9.461014 -9436 0.077930 0.080276 0.061457 0.054425 11.608956 8.975566 13.265174 13.284519 -9437 0.094137 0.091174 0.044246 0.038503 12.280035 11.446343 14.001857 11.737782 -9438 0.070676 0.065883 0.021047 0.022337 7.623493 7.497623 8.832710 8.808937 -9439 0.054773 0.047462 0.044388 0.036071 11.357386 8.706832 15.426103 13.755595 -9440 0.111434 0.085538 0.072372 0.053831 13.107556 10.763436 15.841127 15.619855 -9441 0.114966 0.075484 0.103327 0.104891 7.768636 6.397981 10.372754 7.600636 -9442 0.086960 0.111813 0.067379 0.071703 12.723802 9.846570 16.086371 13.395656 -9443 0.075544 0.067004 0.046963 0.042526 11.032204 11.499173 15.773189 18.809187 -9444 0.091912 0.080521 0.044202 0.044914 8.320500 8.651300 12.853429 11.384003 -9445 0.120225 0.093740 0.065450 0.065103 14.095133 11.884481 19.627035 14.755672 -9446 0.098771 0.097287 0.054388 0.047107 22.977389 16.509953 21.905656 17.044110 -9447 0.049043 0.045102 0.020600 0.027053 9.942844 7.643844 11.884532 10.202445 -9448 0.066821 0.085014 0.043453 0.054913 9.473674 8.700919 11.060432 9.939971 -9449 0.083561 0.077780 0.052236 0.043388 11.798672 10.457780 17.782228 15.411099 -9450 0.122666 0.094214 0.091443 0.053931 12.375515 10.302944 18.791774 15.755552 -9451 0.055928 0.058507 0.072733 0.051421 8.004779 7.955230 10.364224 11.779454 -9452 0.038757 0.034555 0.017012 0.015443 6.588739 5.150558 10.565386 8.035119 -9453 0.081284 0.052474 0.065268 0.035161 8.536836 7.152881 14.429964 13.942304 -9454 0.065411 0.063802 0.041470 0.044817 10.668870 9.388724 14.878148 12.278062 -9455 0.080077 0.062843 0.062856 0.033807 7.222259 8.558853 12.222630 11.122504 -9456 0.065426 0.061828 0.052484 0.045012 10.216520 10.859542 9.249298 9.526896 -9457 0.098828 0.076675 0.055338 0.045486 9.397030 7.367555 10.381995 11.061806 -9458 0.047324 0.044183 0.023138 0.024671 8.866396 8.970646 13.257814 10.732866 -9459 0.047260 0.047499 0.020985 0.017668 8.218020 7.437458 13.317743 11.993892 -9460 0.126558 0.092262 0.058564 0.044513 14.607326 11.426244 17.392925 11.376284 -9461 0.095264 0.073661 0.091360 0.057632 16.321897 14.457347 17.243962 16.546539 -9462 0.117338 0.096149 0.104374 0.072463 13.004645 9.936445 12.501438 7.683509 -9463 0.043026 0.036839 0.029595 0.024519 9.133015 8.082665 14.288569 10.397906 -9464 0.054715 0.053153 0.033265 0.027598 10.277641 8.088838 10.287326 11.434825 -9465 0.109287 0.092705 0.083854 0.041525 11.237377 8.794417 12.383351 10.622503 -9466 0.063864 0.070079 0.047401 0.042619 8.397071 7.154199 9.873994 9.148709 -9467 0.101105 0.071265 0.045960 0.051758 8.053778 5.960482 11.400155 9.249935 -9468 0.148917 0.103236 0.086688 0.048526 11.005725 9.044531 11.400921 8.799862 -9469 0.068780 0.053990 0.058807 0.041473 11.687159 12.197014 21.806294 20.135415 -9470 0.072759 0.049135 0.026539 0.030539 15.924773 11.437486 13.325920 10.288327 -9471 0.052837 0.047665 0.032701 0.031439 10.129800 8.019151 9.821457 10.453919 -9472 0.074249 0.064679 0.034040 0.031008 10.240928 6.826401 9.865085 8.144423 -9473 0.078930 0.062968 0.061497 0.036995 13.184424 9.369068 13.231873 11.553212 -9474 0.086446 0.072522 0.066530 0.036705 11.005031 10.749979 18.269543 18.624543 -9475 0.067403 0.067068 0.042054 0.040949 11.240709 9.906901 12.214226 12.415774 -9476 0.114698 0.128057 0.087696 0.089276 8.411595 7.413626 11.397302 11.054840 -9477 0.067058 0.053041 0.027841 0.024330 12.311033 8.723556 23.208816 18.290666 -9478 0.053849 0.046222 0.033178 0.021526 6.920005 5.212920 8.213056 6.594574 -9479 0.072478 0.070415 0.028149 0.031009 13.569016 10.998245 18.852246 15.517172 -9480 0.114546 0.065107 0.082211 0.053241 14.210992 13.070769 18.557556 17.594360 -9481 0.043819 0.034464 0.039517 0.026880 9.056509 7.748256 12.740455 10.936733 -9482 0.063598 0.053620 0.036091 0.029207 10.629426 8.299210 13.639407 9.886020 -9483 0.087498 0.054621 0.038499 0.037502 8.455986 7.993434 8.152208 8.067113 -9484 0.075677 0.060729 0.044209 0.044709 12.895565 11.002389 23.585287 15.434373 -9485 0.071335 0.056712 0.027811 0.018155 11.440377 11.741331 13.297544 13.320106 -9486 0.067402 0.064550 0.050830 0.037615 8.017246 6.205435 14.666894 11.031483 -9487 0.115648 0.081368 0.072599 0.055771 12.838371 9.175012 12.392457 11.911121 -9488 0.082060 0.058143 0.056299 0.042912 12.592419 11.647169 16.494929 14.028061 -9489 0.070135 0.045404 0.031275 0.028376 12.145240 8.676769 12.927937 8.930675 -9490 0.094897 0.072686 0.097742 0.051929 14.573893 12.904449 14.936715 12.558509 -9491 0.096340 0.064260 0.065901 0.054784 10.086520 8.593652 13.216808 9.098073 -9492 0.056697 0.057551 0.043861 0.036122 10.858473 9.411066 14.459767 12.401286 -9493 0.068953 0.072186 0.032294 0.027929 10.901580 7.904985 14.403562 13.528256 -9494 0.112492 0.083327 0.064478 0.046080 14.795613 13.807724 16.602157 13.762709 -9495 0.051948 0.047673 0.039732 0.029569 11.098649 8.985327 10.516630 7.613607 -9496 0.078928 0.076226 0.053577 0.048019 7.431298 7.811951 12.599718 11.120902 -9497 0.103235 0.116211 0.142439 0.091775 11.514754 10.625295 11.257138 12.061450 -9498 0.091941 0.083947 0.057761 0.052777 10.402653 7.718811 13.746094 10.754439 -9499 0.079627 0.057878 0.065193 0.064899 9.708015 7.520978 13.729768 12.108568 -9500 0.035489 0.042482 0.026065 0.016472 7.434210 6.915775 11.409391 12.867060 -9501 0.064857 0.087358 0.044591 0.074543 14.750724 11.428496 15.759428 13.387323 -9502 0.054884 0.054841 0.051010 0.027193 13.696165 12.438377 17.397520 15.893973 -9503 0.066298 0.065714 0.058843 0.052101 9.505059 8.077870 10.152119 10.979607 -9504 0.097063 0.085957 0.051569 0.039642 12.143382 10.508351 11.990181 11.049565 -9505 0.073953 0.058985 0.047824 0.040257 9.263292 9.636343 13.777111 15.320744 -9506 0.031442 0.038040 0.014098 0.021140 10.731158 9.551261 11.605618 10.381799 -9507 0.046521 0.047783 0.040226 0.034709 8.765573 9.198030 12.044570 11.867599 -9508 0.095799 0.066142 0.065811 0.047177 5.910005 5.944164 9.124993 7.310059 -9509 0.050140 0.044425 0.019203 0.018920 10.875698 9.952153 11.517453 11.562202 -9510 0.079210 0.060006 0.052313 0.027686 7.556657 7.287173 13.465131 10.626025 -9511 0.108826 0.077220 0.074524 0.056207 9.506182 9.886812 13.299280 11.624354 -9512 0.056788 0.059562 0.033591 0.041441 12.075159 10.334670 19.488841 17.837738 -9513 0.101616 0.083606 0.051803 0.051028 13.103721 10.675779 11.996954 10.972818 -9514 0.051489 0.045505 0.033969 0.024583 9.097821 7.665384 13.668033 11.148574 -9515 0.052375 0.057286 0.040886 0.038389 7.789354 5.409406 14.879887 10.339795 -9516 0.090096 0.080303 0.055571 0.044120 9.345402 8.213875 11.778239 9.511999 -9517 0.083849 0.084750 0.028071 0.026872 8.413646 7.198197 8.707301 8.516476 -9518 0.075848 0.058182 0.046612 0.058696 9.168236 7.289815 9.519378 8.350697 -9519 0.092100 0.090897 0.053223 0.059549 10.691784 9.032003 15.801254 12.281801 -9520 0.096804 0.065842 0.049752 0.034983 9.600976 8.936773 13.132483 12.647781 -9521 0.052156 0.047017 0.034158 0.027646 9.314195 9.345349 12.477444 11.049209 -9522 0.082775 0.093845 0.029384 0.027187 6.781909 8.643123 11.146515 12.551779 -9523 0.086946 0.061405 0.041061 0.034831 8.801076 7.853643 10.719094 10.364448 -9524 0.076283 0.045770 0.054887 0.032669 11.699450 8.635956 16.759996 11.473458 -9525 0.062288 0.065677 0.078858 0.075988 16.827031 12.120455 21.719427 14.122374 -9526 0.064095 0.062859 0.038849 0.028518 9.744313 10.649506 12.969090 16.843458 -9527 0.064701 0.066478 0.055116 0.046154 10.771161 11.225695 16.737448 15.370540 -9528 0.075480 0.069094 0.054729 0.046342 9.045432 8.682212 9.556513 9.201418 -9529 0.088246 0.062648 0.045238 0.038920 10.149135 8.321902 12.862350 11.388773 -9530 0.084974 0.075500 0.052877 0.058143 7.562670 7.901203 8.962028 10.112886 -9531 0.074404 0.081644 0.058612 0.040495 10.308996 10.282500 8.517173 7.900468 -9532 0.090015 0.073563 0.062713 0.034270 10.635468 8.583393 10.885053 9.439232 -9533 0.073864 0.072080 0.070172 0.043361 11.863930 10.153032 16.789790 16.053127 -9534 0.075806 0.058131 0.032004 0.018702 9.647115 8.931215 13.325860 13.810338 -9535 0.042190 0.045299 0.037517 0.030577 10.376758 8.287691 15.322769 11.350296 -9536 0.060458 0.046144 0.027224 0.021342 9.694436 7.759160 10.420060 8.021415 -9537 0.141599 0.129127 0.084979 0.062919 11.699252 10.742148 17.417883 12.268831 -9538 0.077011 0.062767 0.052627 0.034551 11.456253 8.486498 8.392074 8.344415 -9539 0.057763 0.043422 0.041405 0.035265 7.361970 6.450242 10.901984 8.686632 -9540 0.081562 0.061820 0.050620 0.039916 9.536423 11.300608 21.066508 18.390066 -9541 0.094316 0.077866 0.072896 0.058708 10.906405 9.953199 15.933482 14.775860 -9542 0.066194 0.033911 0.041465 0.016838 5.617179 5.518443 9.432471 7.135931 -9543 0.043283 0.041321 0.021765 0.026241 9.229537 6.326974 14.376153 11.494578 -9544 0.058946 0.055163 0.030091 0.024714 11.090538 8.533307 10.124112 7.932660 -9545 0.070993 0.038098 0.044539 0.036858 7.468107 6.095226 12.346950 11.093151 -9546 0.122573 0.084493 0.037147 0.031260 7.972233 6.800430 13.967901 9.340977 -9547 0.115202 0.067000 0.061392 0.028615 8.989766 13.788320 8.780327 12.212388 -9548 0.080595 0.102534 0.070037 0.091452 15.154072 10.240437 21.510573 14.978146 -9549 0.067324 0.071631 0.047497 0.033249 9.817179 7.569789 10.818150 8.909799 -9550 0.087365 0.066112 0.101479 0.062472 11.871297 10.534290 23.395700 16.196296 -9551 0.095164 0.101076 0.060699 0.055728 16.240560 10.228871 16.465014 9.925896 -9552 0.077784 0.078667 0.077497 0.067341 12.345411 10.911511 16.148898 14.080318 -9553 0.100228 0.104397 0.075924 0.058119 9.995280 10.784239 13.790953 11.749406 -9554 0.085017 0.082194 0.052085 0.043387 15.442218 12.517824 15.009554 15.669293 -9555 0.078141 0.060725 0.058590 0.049958 10.664288 10.160249 18.550263 15.041606 -9556 0.065844 0.064715 0.034707 0.030100 8.368240 8.259460 7.415580 8.964992 -9557 0.045241 0.039391 0.030395 0.023815 7.859135 6.780729 7.952520 7.117049 -9558 0.033578 0.027158 0.022159 0.015690 6.888304 5.650896 10.228250 8.299323 -9559 0.095598 0.099849 0.054913 0.038360 7.819940 6.067397 8.231848 6.925736 -9560 0.091833 0.065114 0.080594 0.036076 8.140341 7.359410 8.095326 7.617379 -9561 0.087469 0.084427 0.047781 0.044387 8.319757 8.155514 11.706805 12.883920 -9562 0.079502 0.088520 0.037039 0.029213 10.423765 8.285536 11.803059 12.468317 -9563 0.065866 0.056438 0.029114 0.027499 9.436662 9.631789 11.511485 13.294532 -9564 0.039670 0.028979 0.034792 0.028913 6.353426 7.361598 8.083449 7.083768 -9565 0.100897 0.079783 0.053150 0.042756 11.623999 10.089139 19.985882 18.531859 -9566 0.069399 0.064989 0.054048 0.035667 11.506153 9.087585 13.153060 10.965093 -9567 0.044954 0.039444 0.023247 0.024606 7.175309 8.164865 7.954456 6.465772 -9568 0.069153 0.047923 0.040468 0.023588 7.144523 6.818412 12.466641 13.252045 -9569 0.048102 0.033749 0.028630 0.017021 12.351021 11.336492 14.562923 11.583985 -9570 0.022079 0.033730 0.012302 0.019314 5.057242 5.236213 6.404410 6.119324 -9571 0.075405 0.079996 0.055600 0.051110 8.336986 8.530811 13.063061 12.180016 -9572 0.095793 0.116270 0.046985 0.052369 13.532690 11.596437 15.992018 19.517688 -9573 0.093700 0.100456 0.036048 0.054398 10.134968 10.372578 10.176133 11.002687 -9574 0.094998 0.097031 0.035668 0.033572 7.067848 7.706379 12.172627 13.694333 -9575 0.086952 0.080243 0.048608 0.045653 9.504236 8.787181 17.228797 13.882323 -9576 0.064138 0.063906 0.032610 0.037263 10.176978 8.225627 12.954820 11.100261 -9577 0.072255 0.073309 0.053411 0.072466 15.511319 9.371734 19.394523 13.287145 -9578 0.119697 0.095973 0.084418 0.078105 15.216301 12.968125 15.884422 12.343404 -9579 0.085433 0.068417 0.035998 0.028535 11.866008 11.835418 19.476507 17.595836 -9580 0.120818 0.143234 0.070996 0.078557 16.616589 11.181647 19.292195 12.449033 -9581 0.072898 0.062161 0.042205 0.029587 6.300351 5.298461 9.044493 6.689443 -9582 0.083591 0.085139 0.060395 0.042232 9.726564 11.210477 11.099667 11.274983 -9583 0.071582 0.052247 0.034527 0.030847 10.843154 12.284097 10.735729 8.931216 -9584 0.081506 0.093726 0.054486 0.049561 6.865517 6.897000 9.999469 8.328337 -9585 0.057076 0.042740 0.045905 0.042672 11.785479 13.398873 11.660633 11.482510 -9586 0.043535 0.036683 0.033555 0.016361 6.833599 5.066158 11.548764 8.539626 -9587 0.064361 0.048520 0.041279 0.023121 9.616490 9.938006 18.062065 16.309298 -9588 0.087158 0.093853 0.086146 0.067426 8.324611 10.561166 11.314943 13.121243 -9589 0.055938 0.043828 0.049688 0.026104 10.081205 8.015703 15.120106 12.366930 -9590 0.065817 0.063805 0.030920 0.040734 9.766500 8.926922 14.512964 12.772587 -9591 0.101232 0.069917 0.056072 0.042633 8.372325 7.293105 11.537384 9.569829 -9592 0.072176 0.060320 0.059509 0.032703 10.734043 10.477185 12.953387 10.603975 -9593 0.047789 0.040329 0.020594 0.018276 9.233061 8.343578 12.681952 12.657340 -9594 0.060062 0.063155 0.021487 0.028494 6.579693 6.245018 8.001126 8.057506 -9595 0.108844 0.090985 0.053517 0.041999 10.660701 10.660465 13.006262 10.299470 -9596 0.072821 0.063588 0.036329 0.038879 7.797245 9.201354 9.400301 10.527596 -9597 0.101389 0.081912 0.046653 0.044084 10.091794 9.339033 13.387117 11.295253 -9598 0.141957 0.088707 0.084525 0.055393 6.057932 5.115335 8.895057 7.175586 -9599 0.105465 0.076550 0.075663 0.055768 6.945047 6.372005 12.054128 8.341203 -9600 0.082706 0.051148 0.035762 0.028185 8.936984 8.738585 14.841943 15.676287 -9601 0.095482 0.060066 0.050540 0.041588 6.620057 5.897452 6.749109 7.021565 -9602 0.092330 0.097293 0.066629 0.065795 8.036275 8.830231 8.230940 9.923278 -9603 0.064454 0.055069 0.067543 0.062802 10.323904 7.762004 17.288399 12.574381 -9604 0.040491 0.036593 0.027646 0.018129 8.998205 8.134498 12.104734 13.340121 -9605 0.076794 0.062177 0.042883 0.038245 8.870919 6.689231 15.261453 13.493106 -9606 0.063173 0.054958 0.038639 0.025642 8.237721 8.726163 13.143420 13.613009 -9607 0.069441 0.061542 0.047932 0.037959 6.499797 6.827032 12.569569 12.171691 -9608 0.077718 0.069303 0.039503 0.026766 7.782517 7.094784 12.481645 10.274223 -9609 0.053031 0.057834 0.043681 0.039214 8.635874 8.446000 12.310137 13.626480 -9610 0.073107 0.052621 0.047685 0.031559 5.966358 7.054384 12.133084 12.426788 -9611 0.068023 0.063467 0.047997 0.040308 14.100336 9.039989 13.526725 12.206793 -9612 0.071520 0.065026 0.043644 0.034222 8.900993 8.201504 15.512192 10.258974 -9613 0.073813 0.061145 0.027022 0.030223 8.232484 5.808443 14.851575 10.411088 -9614 0.081691 0.083871 0.051740 0.033757 9.485435 8.645177 14.218294 11.987407 -9615 0.079057 0.091438 0.049798 0.052416 11.729519 10.967467 16.073011 16.719069 -9616 0.073117 0.062703 0.038403 0.037250 11.202142 10.596619 8.699560 7.205507 -9617 0.078084 0.060066 0.037005 0.036722 7.828993 6.979142 11.359649 9.846755 -9618 0.072283 0.071630 0.026411 0.031912 12.380898 9.944929 16.307416 12.894216 -9619 0.114184 0.087668 0.099046 0.080605 10.185149 9.126119 14.007069 11.751357 -9620 0.116598 0.107195 0.064092 0.060765 8.818405 8.228599 12.027517 9.294289 -9621 0.119428 0.094423 0.050556 0.040787 12.255429 10.614967 15.272538 13.847851 -9622 0.109082 0.108564 0.051931 0.076570 8.372039 7.720789 7.882440 10.897996 -9623 0.108494 0.082039 0.055229 0.030153 14.499769 10.169601 10.388570 8.678065 -9624 0.076593 0.069243 0.039072 0.024304 6.945431 5.528831 8.658120 8.570949 -9625 0.079182 0.115862 0.056480 0.082022 14.631807 11.064906 21.065859 17.930847 -9626 0.078161 0.061057 0.108997 0.051198 12.042622 10.819643 20.958992 17.986876 -9627 0.074807 0.068248 0.042134 0.040416 16.595181 11.317339 22.412322 17.736750 -9628 0.060871 0.047162 0.046326 0.021552 8.547212 7.971351 10.182144 7.234718 -9629 0.073787 0.076317 0.053576 0.054960 13.591213 11.490131 15.692804 14.801341 -9630 0.044335 0.051670 0.034468 0.037674 8.244606 9.032024 14.558439 11.196278 -9631 0.082600 0.085014 0.052781 0.076972 6.306592 8.972042 8.319889 8.723438 -9632 0.073452 0.062592 0.028519 0.028274 8.077698 7.729844 9.418869 8.410999 -9633 0.081648 0.066490 0.049093 0.028274 10.106872 9.662035 12.395288 9.124143 -9634 0.112196 0.111486 0.074223 0.061899 6.241281 7.184630 8.329095 9.182488 -9635 0.066554 0.056293 0.051841 0.037745 10.210983 9.918257 17.315599 12.224333 -9636 0.067604 0.057420 0.034231 0.024265 11.867110 8.165827 17.019072 10.688828 -9637 0.057653 0.033517 0.061587 0.031139 8.410823 7.945697 14.267890 13.902308 -9638 0.090664 0.068461 0.041981 0.045004 12.271129 10.902342 11.543019 10.506734 -9639 0.079303 0.060554 0.039152 0.037998 7.533482 6.699250 10.388690 9.251647 -9640 0.081001 0.053928 0.037878 0.021386 6.728809 5.957474 12.053052 9.496900 -9641 0.055178 0.051580 0.029813 0.032768 9.220017 5.447214 9.368283 7.099567 -9642 0.062004 0.055186 0.041644 0.033919 8.589438 7.222960 11.845831 10.667846 -9643 0.056257 0.050768 0.027990 0.024478 6.627877 7.040761 10.731854 11.323617 -9644 0.059144 0.059198 0.033225 0.033029 9.199377 7.404151 11.429173 9.694266 -9645 0.053152 0.051050 0.032829 0.031640 7.534972 7.748857 10.649198 12.412339 -9646 0.076476 0.060406 0.046418 0.038522 7.830684 6.282116 9.805731 8.303750 -9647 0.092132 0.068793 0.038200 0.025293 8.409125 7.339495 13.192611 9.634121 -9648 0.082492 0.074038 0.064745 0.045997 12.087593 8.557974 14.744884 10.635178 -9649 0.068769 0.041951 0.039878 0.031495 7.342818 9.217886 9.794854 11.319566 -9650 0.150928 0.096407 0.119794 0.065492 12.840623 10.720969 16.248715 14.479848 -9651 0.079628 0.049443 0.040636 0.027373 12.671196 12.144097 16.277419 15.175490 -9652 0.108201 0.075829 0.097266 0.058551 12.445861 11.708721 17.374510 14.600873 -9653 0.079825 0.075664 0.046489 0.042116 10.113740 5.870809 12.696573 8.527947 -9654 0.050569 0.047807 0.029764 0.020791 10.285088 6.938895 9.476669 8.263135 -9655 0.103609 0.057764 0.063764 0.030281 10.751073 9.316886 15.510346 14.339935 -9656 0.075647 0.080698 0.035118 0.035103 7.210323 6.412642 10.918328 10.718090 -9657 0.072641 0.055916 0.056420 0.035345 9.721280 8.381726 10.607043 7.930099 -9658 0.068620 0.074341 0.042920 0.039293 11.092080 8.280902 11.238450 8.584401 -9659 0.068535 0.056741 0.048445 0.034953 12.378761 10.258311 14.385524 11.742172 -9660 0.088958 0.086068 0.037360 0.028741 11.039343 8.519880 9.305175 8.521625 -9661 0.058220 0.045619 0.032717 0.020896 10.038213 8.440851 11.240056 8.711076 -9662 0.076043 0.083072 0.021893 0.026404 11.320424 10.347643 17.142637 12.558572 -9663 0.063090 0.062591 0.060997 0.039211 6.705066 6.623940 11.968770 10.255920 -9664 0.062207 0.053672 0.037526 0.043412 9.173077 7.391485 11.672465 9.900142 -9665 0.040690 0.037406 0.027921 0.024079 11.681810 7.776353 9.255546 7.192694 -9666 0.074333 0.060981 0.046525 0.033528 10.836219 9.344258 17.803005 17.472547 -9667 0.063251 0.056675 0.037820 0.036106 10.137094 10.814903 11.652630 10.097956 -9668 0.060061 0.034987 0.027634 0.018537 8.249580 5.197981 9.462084 7.229531 -9669 0.055313 0.052803 0.051826 0.031840 12.029930 12.599148 9.346932 13.249194 -9670 0.056244 0.058199 0.022053 0.021152 11.771412 10.151264 14.114151 14.959214 -9671 0.093181 0.102885 0.066572 0.080813 13.743231 11.653030 15.929385 12.528978 -9672 0.046362 0.045640 0.041262 0.035536 10.488852 10.150546 18.316499 16.478026 -9673 0.064825 0.083063 0.056588 0.042476 8.040764 5.930198 11.302638 9.340975 -9674 0.087732 0.070372 0.080323 0.052724 6.600474 6.619208 8.873635 7.846914 -9675 0.045754 0.036620 0.045167 0.025731 8.874060 7.357397 12.120355 7.955252 -9676 0.063247 0.058817 0.045434 0.030361 11.857726 9.277659 11.608586 9.132546 -9677 0.057814 0.059600 0.033941 0.038969 11.651017 10.993427 11.399163 9.683678 -9678 0.095665 0.082687 0.041318 0.036607 17.181866 16.538477 17.713113 17.791608 -9679 0.059402 0.051238 0.029701 0.027650 8.957323 9.797632 11.966722 11.808599 -9680 0.075175 0.060905 0.039540 0.030997 8.397459 6.420885 16.871753 11.267678 -9681 0.088705 0.072499 0.059740 0.049034 13.316904 9.261854 14.985137 14.189976 -9682 0.051173 0.046994 0.030181 0.024050 12.079921 10.242471 10.324457 9.575500 -9683 0.066843 0.066554 0.047346 0.033809 9.812588 10.836376 10.092227 9.435929 -9684 0.058107 0.042312 0.040012 0.034340 9.466513 7.245144 10.395988 11.314288 -9685 0.102487 0.073194 0.103694 0.072540 9.121319 11.177482 9.578429 10.003048 -9686 0.106927 0.080566 0.087074 0.059149 10.861389 10.517292 13.389657 15.127369 -9687 0.095337 0.101361 0.069470 0.054562 11.584890 13.315289 13.181029 15.465928 -9688 0.077224 0.057039 0.029156 0.020654 6.919552 6.006030 9.383049 7.575043 -9689 0.086208 0.073354 0.041423 0.034928 11.927025 10.125717 11.552849 11.739971 -9690 0.071052 0.060731 0.063063 0.064555 11.392986 9.691168 9.907647 9.613392 -9691 0.115333 0.080864 0.040935 0.038029 11.189495 11.035883 12.543763 13.603157 -9692 0.045597 0.027427 0.027992 0.017316 5.827158 5.245808 8.379156 6.247700 -9693 0.049110 0.043672 0.028704 0.020735 7.249745 5.781846 9.140029 7.652579 -9694 0.069202 0.055992 0.026930 0.032689 6.196948 5.584568 11.504683 9.503654 -9695 0.057138 0.048465 0.041434 0.026154 9.117750 6.852718 11.248604 6.628135 -9696 0.077009 0.075297 0.064850 0.061294 14.917690 14.283518 15.774908 14.271589 -9697 0.086538 0.089122 0.068204 0.047162 11.275545 8.744902 16.658164 14.111745 -9698 0.046010 0.041634 0.037509 0.028392 9.477608 8.611552 12.719197 15.465640 -9699 0.087189 0.087026 0.079813 0.050678 20.232741 14.805823 24.729352 21.815301 -9700 0.111120 0.105314 0.034435 0.038293 9.695302 8.954931 10.028034 7.913557 -9701 0.078442 0.071235 0.043922 0.040822 8.643129 6.933909 13.648007 12.648482 -9702 0.064485 0.050101 0.030128 0.021778 7.239068 7.056635 8.363931 7.681424 -9703 0.073677 0.060620 0.035339 0.029649 8.544764 8.376500 14.795475 13.390237 -9704 0.096843 0.051711 0.049994 0.030263 11.444424 10.630630 11.777122 13.041029 -9705 0.085196 0.069136 0.046498 0.038666 9.851157 11.842067 13.936112 17.551162 -9706 0.036975 0.043019 0.019871 0.028957 7.526875 8.091008 13.772750 13.479314 -9707 0.082892 0.087112 0.030512 0.026225 10.867202 8.039146 18.659189 13.946320 -9708 0.087713 0.082888 0.044027 0.041384 12.373718 7.827468 9.876862 8.302460 -9709 0.053505 0.030686 0.038750 0.031202 11.528125 10.657243 13.169947 10.687070 -9710 0.056375 0.042711 0.028150 0.028827 9.959359 10.168477 10.176506 6.992261 -9711 0.066490 0.069187 0.036216 0.028197 8.248559 7.139589 8.245388 7.342659 -9712 0.073418 0.069636 0.037648 0.026104 11.228401 9.856414 18.243190 15.296914 -9713 0.101179 0.068217 0.064031 0.041548 18.930717 15.194054 16.531015 13.421341 -9714 0.076353 0.043530 0.026698 0.019822 7.304875 5.549031 9.302424 9.305115 -9715 0.078177 0.058355 0.069982 0.029537 6.303326 5.977647 12.436951 8.429662 -9716 0.072585 0.049551 0.029756 0.029839 9.734021 7.083033 10.648962 9.255066 -9717 0.131486 0.114651 0.082902 0.060646 13.321026 11.399337 13.687521 10.922402 -9718 0.056692 0.056766 0.042681 0.040506 9.489629 7.472236 16.074196 12.654196 -9719 0.069018 0.054484 0.035895 0.041941 7.894991 5.621066 11.454519 8.754428 -9720 0.068790 0.075681 0.023272 0.026474 11.431945 11.456883 13.955953 12.512846 -9721 0.087155 0.068403 0.042749 0.029689 7.613483 6.960923 10.510968 8.030702 -9722 0.085212 0.086601 0.062006 0.050838 11.385682 9.857893 14.611117 15.421396 -9723 0.051326 0.052318 0.066850 0.067096 10.178817 8.921884 18.641348 13.868940 -9724 0.058411 0.040621 0.028353 0.019362 7.581695 7.189031 8.978038 7.409629 -9725 0.120728 0.078506 0.074113 0.075194 9.400118 9.265808 14.569936 14.451197 -9726 0.076256 0.066124 0.046745 0.038846 8.833372 8.877253 10.636913 11.031371 -9727 0.087118 0.098928 0.047315 0.047234 11.177974 8.514598 11.153414 8.195669 -9728 0.070276 0.050202 0.036481 0.030950 9.415063 7.124111 12.744696 9.106064 -9729 0.076193 0.057583 0.039235 0.024813 9.763598 7.991712 15.328234 16.398664 -9730 0.077843 0.064249 0.051061 0.063635 9.367383 6.913371 8.692788 8.597183 -9731 0.067476 0.067638 0.045777 0.036775 9.133600 7.423809 12.934672 13.161431 -9732 0.096014 0.078418 0.064306 0.043500 9.331159 6.783593 11.355399 7.978327 -9733 0.071685 0.059005 0.043262 0.033328 11.517535 8.200733 16.925324 14.400344 -9734 0.054507 0.047030 0.026494 0.022086 7.312911 5.976502 8.040645 7.238099 -9735 0.078668 0.082638 0.038028 0.051196 6.721844 7.691706 10.854294 10.771846 -9736 0.050786 0.048916 0.036472 0.035115 8.438376 6.452502 9.519584 7.884070 -9737 0.085891 0.081475 0.088295 0.062289 9.520663 8.022607 12.481843 11.046426 -9738 0.087576 0.063653 0.059797 0.056367 9.205619 10.267991 13.434867 13.128341 -9739 0.056768 0.033605 0.026145 0.026092 9.087721 6.996872 9.488334 7.298106 -9740 0.079678 0.064907 0.044214 0.044423 10.635919 9.474589 13.541526 11.923282 -9741 0.068297 0.072581 0.039381 0.038918 9.126055 9.696715 15.049001 10.728928 -9742 0.079805 0.049566 0.046600 0.029507 6.997242 6.482752 14.072121 13.145041 -9743 0.055738 0.038310 0.030384 0.025230 7.996474 7.051962 9.339416 8.526568 -9744 0.074130 0.070830 0.050397 0.035040 12.444556 12.470999 14.689765 14.608633 -9745 0.078590 0.062871 0.031137 0.045312 13.509552 10.275587 16.690114 16.094339 -9746 0.071494 0.063341 0.034818 0.030647 11.173343 11.284034 13.556013 15.316297 -9747 0.101974 0.098487 0.091380 0.077401 14.603896 11.549676 18.794451 13.959175 -9748 0.054543 0.040603 0.024034 0.014066 9.371201 9.942154 9.873976 9.353479 -9749 0.056977 0.055495 0.015776 0.025107 11.930378 8.752276 13.539144 10.391184 -9750 0.097755 0.074344 0.061904 0.042600 11.268959 9.526196 10.230688 9.807327 -9751 0.074663 0.073241 0.051394 0.048563 9.169098 10.536561 13.075376 14.039953 -9752 0.098344 0.083454 0.044434 0.026483 8.197252 6.214237 15.718269 12.773962 -9753 0.058690 0.051933 0.030066 0.023031 9.071472 7.911339 10.909990 10.312235 -9754 0.079395 0.099091 0.050230 0.047101 7.938612 6.090197 10.894432 9.007030 -9755 0.069126 0.047421 0.047645 0.029789 7.332974 6.812021 11.719667 9.788677 -9756 0.069458 0.074994 0.038643 0.043771 9.414037 8.287676 9.851201 9.760129 -9757 0.065086 0.039009 0.032191 0.019875 8.709832 8.207145 11.540855 10.326985 -9758 0.076372 0.080823 0.064888 0.049857 13.620578 12.128937 15.490908 13.588719 -9759 0.084994 0.062037 0.052934 0.029487 11.141699 9.580234 12.582983 12.070530 -9760 0.071173 0.068182 0.034146 0.024990 11.787886 11.058774 12.947935 11.757281 -9761 0.086798 0.078370 0.039103 0.030299 12.444804 10.079398 11.293945 10.031287 -9762 0.075127 0.082465 0.044850 0.040977 10.788413 8.866803 13.870767 11.020834 -9763 0.118443 0.097942 0.064835 0.089290 12.061700 9.745210 15.527266 13.019537 -9764 0.076607 0.051253 0.045211 0.027030 11.200655 10.931823 8.691977 7.232712 -9765 0.073543 0.054809 0.040603 0.028482 13.412521 8.424287 15.161882 9.717683 -9766 0.115394 0.079424 0.107163 0.064434 16.260136 9.779474 16.391400 11.789468 -9767 0.096667 0.075940 0.079154 0.036023 12.452473 9.613490 18.145181 15.528800 -9768 0.096904 0.079494 0.053944 0.052493 9.418874 8.262648 10.664077 11.546886 -9769 0.108530 0.075405 0.096611 0.058128 9.040915 9.011918 11.625790 10.010181 -9770 0.054433 0.053497 0.037543 0.031947 8.215827 8.652968 9.440767 8.642810 -9771 0.113807 0.080313 0.054467 0.045593 10.468224 7.872340 15.407687 13.228226 -9772 0.072041 0.078612 0.042818 0.037792 7.961029 7.522534 8.763951 7.765611 -9773 0.111967 0.058842 0.051893 0.032518 17.598521 12.696235 27.823617 20.485015 -9774 0.050717 0.045079 0.022725 0.019206 9.094949 6.413254 10.214859 8.538192 -9775 0.060391 0.057749 0.031409 0.033219 8.170324 7.655123 10.543699 8.571289 -9776 0.050232 0.041445 0.026523 0.017599 9.136534 7.891423 16.028279 9.740205 -9777 0.061112 0.044334 0.028999 0.018761 7.979906 8.306189 9.268514 10.478668 -9778 0.052435 0.045107 0.044966 0.027722 13.090267 11.897868 17.161671 13.038269 -9779 0.052024 0.040739 0.031884 0.022818 8.995678 7.965107 10.772681 8.604268 -9780 0.084909 0.063006 0.028786 0.021981 15.060986 10.322987 17.653702 15.598154 -9781 0.081361 0.085437 0.063099 0.073382 10.834659 8.352388 17.173929 15.395258 -9782 0.069213 0.059494 0.060441 0.045728 5.036054 5.584078 8.441426 7.277511 -9783 0.082237 0.073082 0.057142 0.056285 11.410707 10.078712 20.765275 19.111004 -9784 0.052259 0.050028 0.061092 0.042468 8.767433 8.741046 9.682649 10.395112 -9785 0.059557 0.068151 0.037315 0.031686 9.693522 10.728999 14.241078 14.863128 -9786 0.070674 0.060231 0.036617 0.039182 10.028520 11.182466 10.694921 10.367967 -9787 0.082736 0.048546 0.023790 0.023945 8.187020 7.066355 13.473286 10.441700 -9788 0.075106 0.059392 0.023288 0.022109 9.238482 5.883824 10.965382 7.760894 -9789 0.062814 0.051088 0.024535 0.022840 10.154478 7.823711 18.195144 14.122689 -9790 0.032600 0.025686 0.025307 0.018161 7.224645 6.422402 8.556841 7.043307 -9791 0.072897 0.091305 0.062509 0.053448 7.793156 8.299992 8.978228 8.770008 -9792 0.061503 0.069424 0.052504 0.039380 9.166514 7.464200 13.876226 11.938274 -9793 0.135856 0.110601 0.088761 0.102094 8.261515 8.641914 14.061409 11.965357 -9794 0.078638 0.067191 0.050468 0.047910 10.546854 7.057174 11.782509 9.884228 -9795 0.098653 0.069836 0.039405 0.030064 9.500004 7.934164 9.058747 8.243593 -9796 0.070092 0.063700 0.051427 0.050118 10.246125 9.146484 16.053315 11.972459 -9797 0.152642 0.094233 0.062789 0.041761 8.749685 7.459789 12.576756 12.810778 -9798 0.082778 0.064512 0.050849 0.033823 10.339288 7.842920 10.591478 9.341925 -9799 0.120179 0.086269 0.074396 0.059721 9.519212 7.942482 16.917156 13.323938 -9800 0.062156 0.052614 0.043279 0.039950 8.120166 7.165117 9.726873 7.113650 -9801 0.049750 0.048779 0.043411 0.031584 15.623140 13.410563 18.186503 15.756166 -9802 0.062895 0.056140 0.029090 0.032672 11.562419 10.965950 15.045433 14.839183 -9803 0.042737 0.030069 0.018098 0.021601 9.431244 8.496029 11.664181 11.500825 -9804 0.065951 0.054627 0.051112 0.037115 9.893842 8.682683 12.403365 10.551899 -9805 0.074276 0.079539 0.029727 0.036939 11.105253 11.660589 11.672371 11.246626 -9806 0.066707 0.044940 0.031571 0.027325 16.373126 11.466829 16.458866 13.068135 -9807 0.105400 0.101975 0.062055 0.062274 9.552380 6.200799 11.458478 7.458121 -9808 0.069154 0.078393 0.050589 0.034163 10.978949 9.790434 12.447342 11.140481 -9809 0.058861 0.090744 0.031560 0.030261 12.507545 10.031920 13.812476 11.237522 -9810 0.089002 0.049328 0.045051 0.024560 8.987995 8.032886 11.426521 10.056961 -9811 0.082097 0.069012 0.066150 0.030876 11.630448 10.337815 12.069840 12.210694 -9812 0.055972 0.052706 0.056374 0.043423 10.036154 7.018032 9.109721 6.891519 -9813 0.060811 0.051796 0.038487 0.038347 10.039766 10.751366 9.645056 12.778961 -9814 0.088129 0.069974 0.042735 0.036427 7.759024 5.824877 10.789241 8.288865 -9815 0.079786 0.070741 0.061995 0.048194 8.292197 6.279671 17.686744 11.182377 -9816 0.090583 0.078750 0.063895 0.051825 12.433734 9.680079 13.269654 13.137743 -9817 0.078624 0.079939 0.075253 0.076216 7.659604 5.837369 8.783428 6.740567 -9818 0.047403 0.032293 0.025104 0.012461 4.833451 4.071513 6.886426 6.954119 -9819 0.116805 0.081872 0.082071 0.049943 6.595437 6.087977 9.752511 8.816192 -9820 0.055432 0.039184 0.026901 0.020970 9.839890 9.278481 10.594023 13.464993 -9821 0.072794 0.063924 0.037235 0.024509 10.375325 9.443898 15.673829 12.753489 -9822 0.030696 0.025192 0.018678 0.010809 8.943917 6.312418 13.027693 9.116562 -9823 0.040570 0.043036 0.025072 0.029119 8.946308 6.399312 12.248510 10.123594 -9824 0.114195 0.089172 0.071978 0.060475 13.362561 13.543195 14.755610 15.785638 -9825 0.064054 0.064270 0.044459 0.041653 10.401600 9.527681 14.200140 10.201494 -9826 0.080074 0.065111 0.041593 0.031114 12.276377 10.622063 14.735041 14.799603 -9827 0.051444 0.035192 0.015721 0.014563 13.902595 12.823733 22.265885 18.156704 -9828 0.056198 0.061472 0.028640 0.017489 11.104071 11.219478 14.661693 13.204805 -9829 0.071633 0.055695 0.053220 0.045812 9.631233 11.105425 14.234392 15.861797 -9830 0.048606 0.042795 0.019078 0.013589 7.388885 6.548227 10.834452 7.840283 -9831 0.095219 0.077747 0.065834 0.050864 11.004082 7.872698 17.074886 13.614762 -9832 0.057451 0.056267 0.031105 0.025240 6.565719 6.461751 10.427801 8.970856 -9833 0.077484 0.091183 0.039829 0.039172 6.217079 6.608670 10.424663 6.729276 -9834 0.115702 0.098060 0.079446 0.077610 7.359387 6.501684 13.685744 11.626087 -9835 0.083745 0.044340 0.063247 0.035014 13.931883 11.859345 12.327931 15.045867 -9836 0.059443 0.048127 0.024630 0.022430 12.814244 9.024424 19.019292 14.033073 -9837 0.080703 0.063981 0.061902 0.037264 10.628738 9.388967 15.384082 16.680089 -9838 0.117112 0.080005 0.053447 0.038386 13.669407 14.963069 14.099119 15.483085 -9839 0.097146 0.081039 0.040162 0.030531 6.744101 6.387861 14.538819 13.508844 -9840 0.066828 0.059089 0.036399 0.029402 6.344675 6.981161 6.223331 7.647217 -9841 0.060705 0.044312 0.036905 0.014928 8.652120 7.057312 9.829558 8.292295 -9842 0.077896 0.066318 0.046484 0.031866 8.608079 9.659066 11.560141 11.820460 -9843 0.046247 0.038837 0.033968 0.036291 11.770076 9.874350 10.935547 9.853516 -9844 0.105784 0.083024 0.090600 0.094380 8.364117 7.685415 12.129806 11.070572 -9845 0.079921 0.090866 0.046058 0.040087 10.759976 9.673966 11.796374 10.026687 -9846 0.056846 0.071062 0.054191 0.045575 9.653748 8.934334 10.782311 8.938845 -9847 0.057759 0.049070 0.031039 0.021346 9.083583 8.056125 9.251090 8.030225 -9848 0.057198 0.042671 0.034646 0.020781 9.508214 7.115396 16.426145 10.010862 -9849 0.062147 0.069127 0.035863 0.037502 8.318270 8.249632 17.418971 12.180804 -9850 0.075154 0.065425 0.068963 0.061307 8.142448 6.887965 18.418482 13.617146 -9851 0.097482 0.075810 0.036275 0.029172 9.385307 9.852164 9.477501 9.950679 -9852 0.057459 0.041132 0.023841 0.022448 7.599996 8.835855 10.555513 11.507295 -9853 0.099835 0.085748 0.098802 0.071785 13.285437 11.200938 20.190510 16.322648 -9854 0.091903 0.088913 0.054150 0.044349 12.239411 11.535476 15.952806 14.495259 -9855 0.121588 0.119537 0.049506 0.052835 14.256609 11.975121 14.515034 14.831545 -9856 0.057935 0.053109 0.027514 0.023509 9.980568 9.946842 13.161646 10.855604 -9857 0.056328 0.063971 0.051711 0.034115 12.228826 8.424502 11.798087 11.593559 -9858 0.085485 0.071848 0.050974 0.039078 10.924499 10.555055 21.391680 14.225760 -9859 0.068070 0.066454 0.042125 0.037630 11.401653 8.417788 13.517155 10.134600 -9860 0.069255 0.076424 0.044962 0.036099 9.832205 9.799342 9.104693 10.186839 -9861 0.089277 0.075235 0.038700 0.026382 10.000874 9.741001 13.625075 13.483934 -9862 0.063547 0.058195 0.046934 0.036305 9.234647 8.070415 14.898359 11.928029 -9863 0.059682 0.049995 0.024475 0.028039 21.176173 17.135092 15.173205 16.276225 -9864 0.082844 0.056436 0.067016 0.033780 7.303411 5.142839 9.944444 7.993245 -9865 0.125658 0.071405 0.087300 0.040471 13.102737 9.770003 16.920677 13.586849 -9866 0.075420 0.048863 0.052284 0.029244 10.532811 9.499709 9.825816 11.590596 -9867 0.082102 0.076279 0.045039 0.048899 11.701731 9.214275 12.458943 11.481180 -9868 0.074258 0.053184 0.036046 0.023659 11.618310 8.121322 16.635777 14.273492 -9869 0.075871 0.077181 0.041611 0.033031 8.595323 6.615957 16.253824 10.753879 -9870 0.052996 0.047366 0.023640 0.031669 4.988077 4.429182 7.386797 5.220154 -9871 0.088449 0.077856 0.043998 0.039923 17.865638 17.726830 17.616563 16.517517 -9872 0.039372 0.032350 0.039763 0.021968 10.297296 7.761981 13.500538 11.439980 -9873 0.071700 0.043820 0.035765 0.020843 7.886808 6.534233 9.153931 8.059891 -9874 0.052272 0.056405 0.027516 0.039778 12.387765 7.360781 12.548867 9.656557 -9875 0.077807 0.057292 0.067213 0.036828 11.890777 10.901740 15.648023 15.157832 -9876 0.082790 0.066555 0.049912 0.031830 9.644973 8.103102 12.544518 12.647797 -9877 0.053944 0.072911 0.042134 0.039963 9.775022 8.693835 13.227774 9.800669 -9878 0.078680 0.063910 0.077939 0.064900 11.926656 8.998343 15.359087 11.202861 -9879 0.087584 0.074006 0.059458 0.027526 7.460005 6.639457 12.560876 9.171213 -9880 0.063919 0.065122 0.035313 0.031368 12.301921 11.790261 16.082921 16.013726 -9881 0.056057 0.060956 0.048985 0.029469 8.423810 7.462902 12.507867 11.851917 -9882 0.074114 0.068968 0.026341 0.026939 6.577380 7.098818 13.757155 12.496215 -9883 0.102782 0.072969 0.067733 0.050951 14.066883 12.006323 19.810419 18.678614 -9884 0.077750 0.062225 0.035574 0.020507 8.475289 7.311150 12.179994 9.311489 -9885 0.030544 0.035515 0.012577 0.015007 10.518039 9.356284 10.821551 9.160213 -9886 0.056156 0.042094 0.023115 0.022998 8.306688 7.228358 8.483441 7.759933 -9887 0.112164 0.081821 0.054253 0.047139 13.462373 14.820650 18.203506 19.942530 -9888 0.063523 0.068554 0.034231 0.032615 7.507751 6.046830 13.123013 13.384635 -9889 0.104564 0.081358 0.087662 0.059020 11.228295 10.587026 18.705237 14.323857 -9890 0.057561 0.041353 0.048902 0.030400 11.440326 7.787123 14.488690 10.857096 -9891 0.112208 0.122412 0.052126 0.043223 10.895882 11.292212 14.412447 12.015234 -9892 0.052981 0.050566 0.035500 0.025382 9.842889 9.123817 9.476042 9.447272 -9893 0.064231 0.056098 0.041435 0.034255 8.647499 10.395626 7.462335 8.324797 -9894 0.060436 0.060883 0.062626 0.065353 12.013099 9.049817 15.263405 14.267672 -9895 0.107060 0.105666 0.063964 0.047154 10.468055 10.822514 14.250956 15.776581 -9896 0.108660 0.077155 0.053793 0.045614 11.886280 7.825361 10.263977 6.216456 -9897 0.099923 0.092038 0.107976 0.063447 6.983128 7.570600 9.338251 9.624400 -9898 0.055078 0.045730 0.019361 0.016657 11.686506 8.900971 15.245897 12.329179 -9899 0.075278 0.079142 0.046299 0.034059 13.336660 10.768361 16.709766 13.541849 -9900 0.054532 0.050524 0.030165 0.020569 8.333001 7.711007 14.717886 13.045443 -9901 0.049760 0.042455 0.019375 0.017159 8.949047 6.879702 10.600706 9.103756 -9902 0.060314 0.050427 0.031651 0.018242 9.574074 7.733617 9.979133 9.644410 -9903 0.096503 0.065891 0.058047 0.043565 10.741585 11.311182 11.019486 9.744143 -9904 0.079493 0.057047 0.042929 0.034067 6.087544 5.906849 12.282154 13.620465 -9905 0.064130 0.052906 0.028881 0.026271 13.006155 10.204814 16.586197 11.524341 -9906 0.074852 0.090571 0.052536 0.035761 9.140425 8.577843 13.551205 12.106371 -9907 0.061405 0.061749 0.043848 0.026971 16.571998 15.589375 15.903747 12.448027 -9908 0.082215 0.036931 0.058181 0.025867 12.519965 10.681107 18.719018 13.662937 -9909 0.068435 0.052359 0.090082 0.063461 7.827832 6.921809 15.206242 11.902777 -9910 0.086494 0.067024 0.078451 0.046144 6.754510 7.000703 9.504918 8.506270 -9911 0.084532 0.072955 0.037931 0.030217 13.427532 11.624614 15.639189 13.191617 -9912 0.079339 0.058375 0.051758 0.045275 12.213435 10.161554 22.111630 19.649088 -9913 0.085376 0.107811 0.045387 0.048528 8.434445 7.234488 9.941500 8.673637 -9914 0.062873 0.044796 0.038776 0.027061 8.557172 10.228679 8.411096 8.449279 -9915 0.092694 0.068019 0.047010 0.024508 6.924455 6.849873 9.197936 9.130010 -9916 0.085038 0.077142 0.047887 0.031676 12.168095 7.920671 13.086687 8.866857 -9917 0.072998 0.049534 0.040105 0.022431 13.911289 10.682311 17.391178 15.174756 -9918 0.062602 0.042922 0.027249 0.016856 12.992205 10.401990 10.135765 9.334393 -9919 0.065692 0.062947 0.026058 0.024355 7.380752 5.988991 8.974316 7.541011 -9920 0.062193 0.045827 0.042629 0.028257 7.881925 9.791571 9.687745 10.807862 -9921 0.107640 0.079742 0.045841 0.030281 10.551307 8.451769 11.999055 9.450141 -9922 0.074311 0.078161 0.045837 0.036334 7.911585 8.245909 12.272023 13.605442 -9923 0.097980 0.074246 0.065954 0.052458 16.745795 14.767439 12.650730 11.867612 -9924 0.061464 0.044841 0.031854 0.014264 8.507103 6.517750 10.528903 7.576546 -9925 0.125548 0.155791 0.071009 0.070249 18.061328 13.584924 22.758476 22.483290 -9926 0.079712 0.064542 0.042429 0.027923 7.884443 9.124365 12.279581 11.829767 -9927 0.060125 0.057349 0.052574 0.032831 8.884405 5.735444 12.234952 8.753973 -9928 0.091392 0.066911 0.037670 0.022860 12.913461 14.357769 13.497236 15.218026 -9929 0.062592 0.055932 0.033409 0.028304 10.134742 7.793562 19.454345 16.277936 -9930 0.063329 0.058529 0.041366 0.026664 9.477503 8.017785 13.558412 12.104846 -9931 0.071480 0.058811 0.035054 0.022862 12.858280 10.304335 16.888637 12.082471 -9932 0.100848 0.089770 0.089071 0.086041 11.688441 10.964808 11.479480 10.118923 -9933 0.068927 0.051674 0.037906 0.036058 7.223523 7.284108 8.796811 9.059550 -9934 0.073388 0.050905 0.065137 0.040290 8.029991 9.007027 9.247494 9.376692 -9935 0.080122 0.064324 0.041871 0.026276 8.275756 6.631707 10.141379 9.041482 -9936 0.069390 0.054603 0.045234 0.044508 11.483048 10.245787 14.923814 15.184785 -9937 0.077579 0.067372 0.051388 0.040061 11.580990 7.725969 14.562609 11.508981 -9938 0.075494 0.068190 0.057928 0.080022 11.967731 9.558017 13.545716 11.214761 -9939 0.079434 0.062569 0.038499 0.025424 9.691384 10.627558 13.459177 12.663629 -9940 0.098251 0.088553 0.075481 0.045891 12.374968 11.047658 13.197218 9.490847 -9941 0.032366 0.030354 0.018048 0.016555 7.297084 6.272883 9.313076 9.859081 -9942 0.062754 0.050877 0.028286 0.025774 16.566641 11.529992 25.115471 16.932211 -9943 0.097832 0.082747 0.060067 0.058031 8.826001 7.902825 8.384879 7.619215 -9944 0.064582 0.066064 0.047664 0.050547 7.595595 7.438932 12.203914 12.437435 -9945 0.097089 0.068151 0.041292 0.037527 9.228452 7.509149 11.117525 10.237796 -9946 0.077316 0.067060 0.048022 0.029201 11.221206 7.826103 16.025826 10.952226 -9947 0.057955 0.048894 0.027209 0.029840 7.335096 7.911426 8.157062 7.020263 -9948 0.057718 0.049848 0.025481 0.028460 7.896289 5.783391 11.663393 9.543607 -9949 0.079223 0.081492 0.040287 0.026867 11.498284 10.877670 19.556538 12.298840 -9950 0.072133 0.046828 0.046369 0.031379 9.051745 8.834524 15.211264 14.667979 -9951 0.048899 0.065377 0.033306 0.041698 11.266339 9.455857 13.978394 14.356759 -9952 0.049710 0.045999 0.020657 0.011802 14.600919 10.475480 15.459633 10.617229 -9953 0.110073 0.087377 0.057272 0.062789 7.729113 8.406668 13.734217 11.603845 -9954 0.118857 0.069593 0.047921 0.041689 10.452770 7.001829 14.648633 11.335212 -9955 0.124699 0.111008 0.066467 0.056565 11.983369 10.830363 22.025187 15.421373 -9956 0.057211 0.052210 0.030441 0.041410 10.506915 10.809531 13.027896 12.248340 -9957 0.129732 0.123134 0.111870 0.093269 14.714783 15.527233 12.720235 13.287690 -9958 0.073528 0.058439 0.052318 0.042442 13.664255 10.588146 15.240770 15.522467 -9959 0.083233 0.062843 0.064439 0.037249 6.801242 6.360755 11.523275 8.798272 -9960 0.116472 0.105353 0.092973 0.065530 12.730877 11.649268 17.127631 12.790847 -9961 0.118887 0.079500 0.049255 0.031180 10.094774 10.856015 11.564922 10.143042 -9962 0.064950 0.075307 0.046983 0.058353 17.832255 17.043724 24.888927 21.742714 -9963 0.074196 0.059234 0.052093 0.038222 11.602932 12.091724 17.464096 16.159977 -9964 0.058507 0.072432 0.043919 0.044020 7.647449 7.289204 9.210297 7.897104 -9965 0.100135 0.091105 0.055744 0.047317 8.452787 6.959868 14.953492 13.635798 -9966 0.052816 0.049355 0.035648 0.029593 11.116454 8.293644 10.927262 10.050325 -9967 0.042282 0.041676 0.039158 0.032774 11.681872 10.093486 16.783295 15.955150 -9968 0.077515 0.067602 0.061341 0.037704 10.939346 9.887344 13.933153 13.105351 -9969 0.069323 0.067630 0.030374 0.031303 9.492768 5.238039 8.386665 5.902593 -9970 0.062868 0.062477 0.053665 0.043068 9.551992 9.393181 9.251140 9.916806 -9971 0.038669 0.043935 0.016047 0.021083 11.570914 9.619285 13.336407 10.819811 -9972 0.082448 0.069287 0.034752 0.038638 8.011100 7.899698 11.297676 11.133912 -9973 0.061948 0.044782 0.040988 0.034122 9.292396 9.808619 12.615153 14.272653 -9974 0.066950 0.057956 0.040575 0.028254 10.827387 8.439662 14.393698 9.632434 -9975 0.051827 0.049746 0.028152 0.021907 11.424604 8.314582 11.869983 11.994660 -9976 0.141229 0.106546 0.055270 0.052244 9.409274 7.901983 18.348852 13.195649 -9977 0.068638 0.063597 0.065501 0.072670 8.586130 6.279165 12.087021 10.504063 -9978 0.068328 0.052764 0.085298 0.044415 9.254965 9.587563 11.415291 10.984319 -9979 0.074217 0.089284 0.043711 0.033868 9.734835 7.119746 12.374360 9.562990 -9980 0.057271 0.050625 0.028424 0.026427 9.591927 8.855855 14.156119 10.667699 -9981 0.102752 0.099129 0.049335 0.037043 8.095685 8.814681 9.423128 9.859512 -9982 0.064377 0.049669 0.030331 0.029835 12.181091 11.417518 18.590206 14.027722 -9983 0.117493 0.096946 0.044145 0.046936 12.436823 12.418169 11.811908 10.352377 -9984 0.092202 0.048625 0.058254 0.033380 10.792694 10.140269 14.947004 14.968811 -9985 0.095944 0.083878 0.038598 0.034626 13.165292 9.826234 13.545086 10.745033 -9986 0.082848 0.063722 0.040300 0.027984 10.863699 9.661217 14.284266 14.387958 -9987 0.036979 0.038626 0.028880 0.032796 11.438913 9.803156 15.121059 12.598042 -9988 0.079667 0.060165 0.064001 0.033233 7.724134 9.342454 14.296780 16.246690 -9989 0.068176 0.049381 0.049371 0.034663 11.476096 9.437879 12.933487 9.063084 -9990 0.067043 0.062625 0.042484 0.054536 8.431486 7.218621 12.931998 14.518061 -9991 0.047525 0.045534 0.030153 0.022925 11.948652 10.893782 20.899581 14.428003 -9992 0.036934 0.030048 0.022345 0.014077 6.632741 6.715035 15.197670 13.789144 -9993 0.125679 0.092572 0.061585 0.051270 11.489626 13.649733 13.477197 16.620158 -9994 0.080832 0.076270 0.050879 0.068452 7.788228 9.574906 13.281938 14.492831 -9995 0.134976 0.110127 0.099880 0.082723 10.296285 9.198087 9.878063 10.101389 -9996 0.085912 0.076227 0.037353 0.029254 12.160420 9.167362 11.220609 9.292723 -9997 0.125183 0.114028 0.097296 0.059155 10.856401 8.646122 15.406922 13.155583 -9998 0.070694 0.062274 0.038400 0.028033 17.360015 14.074763 13.245032 13.283715 -9999 0.087538 0.063054 0.066997 0.056112 7.076571 7.904690 9.742786 9.209005 -10000 0.042347 0.040931 0.026197 0.027308 9.845834 6.740782 15.640431 9.851430 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_6.out b/pelicun/tests/resources/EDP data/EDP_table_test_6.out deleted file mode 100644 index 70347526d..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_6.out +++ /dev/null @@ -1,2 +0,0 @@ - 1-PID-1-1 1-PID-1-2 1-PID-2-1 1-PID-2-2 1-PFA-0-1 1-PFA-0-2 1-PFA-1-1 1-PFA-1-2 -1 0.061364 0.048515 0.033256 0.020352 7.634901 6.85613 11.685934 10.565554 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_7.out b/pelicun/tests/resources/EDP data/EDP_table_test_7.out deleted file mode 100644 index 3791c62ca..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_7.out +++ /dev/null @@ -1,6 +0,0 @@ - 1-PID-1-1 1-PID-1-2 1-PID-2-1 1-PID-2-2 1-PFA-0-1 1-PFA-0-2 1-PFA-1-1 1-PFA-1-2 -1 0.061364 0.048515 0.033256 0.020352 7.634901 6.856130 14.685934 12.565554 -2 0.061364 0.067687 0.027976 0.033571 5.601088 6.558925 9.683363 10.133710 -3 0.061364 0.078564 0.057184 0.046485 12.575335 11.127772 14.287231 12.392118 -4 0.061364 0.033446 0.054879 0.026247 9.566818 10.176966 13.955909 12.324853 -5 0.061364 0.053194 0.024307 0.024578 8.962879 7.772640 10.043096 9.005398 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_8.out b/pelicun/tests/resources/EDP data/EDP_table_test_8.out deleted file mode 100644 index ec04d58bd..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_8.out +++ /dev/null @@ -1,2 +0,0 @@ - 1-PID-1-1 1-PID-1-2 1-PID-2-1 1-PID-2-2 1-PFA-0-1 1-PFA-0-2 1-PFA-1-1 1-PFA-1-2 -1 0.080000 0.080000 0.080000 0.080000 10.00000 10.00000 10.00000 10.00000 \ No newline at end of file diff --git a/pelicun/tests/resources/EDP data/EDP_table_test_9.out b/pelicun/tests/resources/EDP data/EDP_table_test_9.out deleted file mode 100644 index efcf71302..000000000 --- a/pelicun/tests/resources/EDP data/EDP_table_test_9.out +++ /dev/null @@ -1,2 +0,0 @@ - 1-PID-1-1 1-PID-1-2 1-PID-2-1 1-PID-2-2 1-PID-3-1 1-PID-3-2 1-PFA-0-1 1-PFA-0-2 1-PFA-1-1 1-PFA-1-2 1-PFA-2-1 1-PFA-2-2 -1 0.080000 0.080000 0.080000 0.080000 0.040000 0.040000 7.84532 7.84532 7.84532 7.84532 2.94200 2.94200 \ No newline at end of file diff --git a/pelicun/tests/resources/input data/DL_input_test.json b/pelicun/tests/resources/input data/DL_input_test.json deleted file mode 100644 index 977a66881..000000000 --- a/pelicun/tests/resources/input data/DL_input_test.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 1, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - }, - "DetectionLimits": { - "PID": "0.15", - "PFA": "" - } - }, - "DamageModel":{ - "IrreparableResidualDrift":{ - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - }, - "CollapseLimits":{ - "PFA": "4.903325" - } - }, - "LossModel":{ - "ReplacementCost": "300000", - "ReplacementTime": "300", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10", - "PopulationDataFile": "resources/population data/population_test.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0001.001": [ - { - "location": "1", - "direction": "1", - "median_quantity": "538.21", - "unit": "ft2", - "distribution": "N/A" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_10.json b/pelicun/tests/resources/input data/DL_input_test_10.json deleted file mode 100644 index 718b982cb..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_10.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "30000000", - "ReplacementTime": "30000", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10, 10", - "PopulationDataFile": "resources/population data/population_test_det.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0004.001": [ - { - "location": "1, 2", - "direction": "1, 2", - "median_quantity": "67.27625, 67.27625, 67.27625, 67.27625", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0004.002": [ - { - "location": "1, 2", - "direction": "1, 2", - "median_quantity": "67.27625, 67.27625, 67.27625, 67.27625", - "unit": "ft2", - "distribution": "N/A" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_11.json b/pelicun/tests/resources/input data/DL_input_test_11.json deleted file mode 100644 index 725a9caa7..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_11.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "30000000", - "ReplacementTime": "30000", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10, 10", - "PopulationDataFile": "resources/population data/population_test_det.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0004.001b": [ - { - "location": "1, 2", - "direction": "1, 2", - "median_quantity": "67.27625, 67.27625, 67.27625, 67.27625", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0004.002": [ - { - "location": "1, 2", - "direction": "1, 2", - "median_quantity": "67.27625, 67.27625, 67.27625, 67.27625", - "unit": "ft2", - "distribution": "N/A" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_2.json b/pelicun/tests/resources/input data/DL_input_test_2.json deleted file mode 100644 index d27b45b44..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_2.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "300000", - "ReplacementTime": "300", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10", - "PopulationDataFile": "resources/population data/population_test.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0002.001": [ - { - "location": "all", - "direction": "1, 2", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0002.002": [ - { - "location": "1 - 2", - "direction": "2, 1", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_3.json b/pelicun/tests/resources/input data/DL_input_test_3.json deleted file mode 100644 index ef00b9f49..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_3.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - }, - "DetectionLimits":{ - "PID": 0.10 - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "300000", - "ReplacementTime": "300", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10", - "PopulationDataFile": "resources/population data/population_test.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0002.001": [ - { - "location": "1-2", - "direction": "1, 2", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0002.002": [ - { - "location": "1 - 2", - "direction": "2, 1", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_4.json b/pelicun/tests/resources/input data/DL_input_test_4.json deleted file mode 100644 index 226c80cc7..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_4.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - }, - "DetectionLimits":{ - "PID": 0.10, - "PFA": 99.0 - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "300000", - "ReplacementTime": "300", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10", - "PopulationDataFile": "resources/population data/population_test.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0002.001": [ - { - "location": "1-2", - "direction": "1, 2", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0002.002": [ - { - "location": "1 - 2", - "direction": "2, 1", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_5.json b/pelicun/tests/resources/input data/DL_input_test_5.json deleted file mode 100644 index 9a5e4b0b6..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_5.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "300000", - "ReplacementTime": "300", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10", - "PopulationDataFile": "resources/population data/population_test.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0002.001": [ - { - "location": "1-2", - "direction": "1, 2", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0002.002": [ - { - "location": "1 - 2", - "direction": "2, 1", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_6.json b/pelicun/tests/resources/input data/DL_input_test_6.json deleted file mode 100644 index 9a5e4b0b6..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_6.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "300000", - "ReplacementTime": "300", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10", - "PopulationDataFile": "resources/population data/population_test.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0002.001": [ - { - "location": "1-2", - "direction": "1, 2", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0002.002": [ - { - "location": "1 - 2", - "direction": "2, 1", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_7.json b/pelicun/tests/resources/input data/DL_input_test_7.json deleted file mode 100644 index 7f5279671..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_7.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "300000", - "ReplacementTime": "300", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10", - "PopulationDataFile": "resources/population data/population_test.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0002.001": [ - { - "location": "1-2", - "direction": "1, 2", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A", - "cov": "1.0" - } - ], - "T0002.002": [ - { - "location": "1 - 2", - "direction": "2, 1", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A", - "cov": "0.4" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_8.json b/pelicun/tests/resources/input data/DL_input_test_8.json deleted file mode 100644 index 84d8dcaac..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_8.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "30000000", - "ReplacementTime": "30000", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10, 10", - "PopulationDataFile": "resources/population data/population_test_det.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0002.001": [ - { - "location": "1-2", - "direction": "1, 2", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "normal", - "cov": "1.0" - } - ], - "T0002.002": [ - { - "location": "1 - 2", - "direction": "2, 1", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "lognormal", - "cov": "0.4" - } - ] - } - } -} diff --git a/pelicun/tests/resources/input data/DL_input_test_9.json b/pelicun/tests/resources/input data/DL_input_test_9.json deleted file mode 100644 index b689e61b7..000000000 --- a/pelicun/tests/resources/input data/DL_input_test_9.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 3, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel": { - "ResponseDescription": { - "EDP_Distribution": "lognormal", - "BasisOfEDP_Distribution": "all results", - "Realizations": "10000" - } - }, - "DamageModel": { - "IrreparableResidualDrift": { - "Median": "10.", - "Beta": "0.0001" - }, - "CollapseLimits": { - "PID": "0.10" - }, - "CollapseProbability": { - "Value": "estimated", - "BasisOfEstimate": "sampled EDP" - } - }, - "LossModel": { - "ReplacementCost": "30000000", - "ReplacementTime": "30000", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Hospitality", - "PeakPopulation": "10", - "PopulationDataFile": "resources/population data/population_test_det.json" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "1.0" - } - ], - "ComponentDataFolder": "resources/DL data/json/", - "Components": { - "T0003.001": [ - { - "location": "1 - 3", - "direction": "1", - "median_quantity": "134.5525, 80.7315, 53.821", - "unit": "ft2", - "distribution": "N/A" - }, - { - "location": "1-3", - "direction": "2", - "median_quantity": "269.105", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0003.002": [ - { - "location": "1, 2-3", - "direction": "1", - "median_quantity": "16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463", - "unit": "ft2", - "distribution": "N/A" - }, - { - "location": "1, 2 - 3", - "direction": "2", - "median_quantity": "10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642", - "unit": "ft2", - "distribution": "N/A" - } - ], - "T0003.003": [ - { - "location": "1, 2, 3", - "direction": "1", - "median_quantity": "16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463", - "unit": "ft2", - "distribution": "N/A" - }, - { - "location": "1, 2, 3", - "direction": "2", - "median_quantity": "10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642", - "unit": "ft2", - "distribution": "lognormal", - "cov": "0.0001" - } - ], - "T0003.004": [ - { - "location": "1, 2, 3", - "direction": "1", - "median_quantity": "16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463, 16.1463", - "unit": "ft2", - "distribution": "N/A" - }, - { - "location": "1, 2, 3", - "direction": "2", - "median_quantity": "10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642, 10.7642", - "unit": "ft2", - "distribution": "lognormal", - "cov": "0.0001" - } - ] - } - } -} diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-HC-EDU2.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-HC-EDU2.json deleted file mode 100644 index 3924b1846..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-HC-EDU2.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "Name": "NSA-HC-EDU2", - "Directional": false, - "GeneralInformation": { - "ID": "NSA-HC-EDU2", - "Description": "NSA-HC-EDU2" - }, - "EDP": { - "Type": "Peak Floor Acceleration", - "Unit": [ - 1, - "g" - ], - "Offset": 0 - }, - "DSGroups": [ - { - "MedianEDP": 0.3, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.006, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.6, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.028999999999999998, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 1.2, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.087, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 2.4, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.29, - "CurveType": "N/A" - } - }, - "Description": "Complete" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-HC-RES1.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-HC-RES1.json deleted file mode 100644 index d254ed7c5..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-HC-RES1.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "Name": "NSA-HC-RES1", - "Directional": false, - "GeneralInformation": { - "ID": "NSA-HC-RES1", - "Description": "NSA-HC-RES1" - }, - "EDP": { - "Type": "Peak Floor Acceleration", - "Unit": [ - 1, - "g" - ], - "Offset": 0 - }, - "DSGroups": [ - { - "MedianEDP": 0.3, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.005, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.6, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.027000000000000003, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 1.2, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.08, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 2.4, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.266, - "CurveType": "N/A" - } - }, - "Description": "Complete" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-PC-EDU2.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-PC-EDU2.json deleted file mode 100644 index 5b692d424..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-PC-EDU2.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "Name": "NSA-PC-EDU2", - "Directional": false, - "GeneralInformation": { - "ID": "NSA-PC-EDU2", - "Description": "NSA-PC-EDU2" - }, - "EDP": { - "Type": "Peak Floor Acceleration", - "Unit": [ - 1, - "g" - ], - "Offset": 0 - }, - "DSGroups": [ - { - "MedianEDP": 0.2, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.006, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.4, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.028999999999999998, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.8, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.087, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 1.6, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.29, - "CurveType": "N/A" - } - }, - "Description": "Complete" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-PC-RES1.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-PC-RES1.json deleted file mode 100644 index c55042593..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSA-PC-RES1.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "Name": "NSA-PC-RES1", - "Directional": false, - "GeneralInformation": { - "ID": "NSA-PC-RES1", - "Description": "NSA-PC-RES1" - }, - "EDP": { - "Type": "Peak Floor Acceleration", - "Unit": [ - 1, - "g" - ], - "Offset": 0 - }, - "DSGroups": [ - { - "MedianEDP": 0.2, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.005, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.4, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.027000000000000003, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.8, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.08, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 1.6, - "Beta": 0.6, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.266, - "CurveType": "N/A" - } - }, - "Description": "Complete" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSD-EDU2.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSD-EDU2.json deleted file mode 100644 index 3f724521d..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSD-EDU2.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "Name": "NSD-EDU2", - "Directional": false, - "GeneralInformation": { - "ID": "NSD-EDU2", - "Description": "NSD-EDU2" - }, - "EDP": { - "Type": "Roof Drift Ratio", - "Unit": [ - 1, - "rad" - ] - }, - "DSGroups": [ - { - "MedianEDP": 0.004, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.012, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.008, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.06, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.025, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.3, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 0.05, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.6, - "CurveType": "N/A" - } - }, - "Description": "Complete" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSD-RES1.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSD-RES1.json deleted file mode 100644 index 836084a78..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/NSD-RES1.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "Name": "NSD-RES1", - "Directional": false, - "GeneralInformation": { - "ID": "NSD-RES1", - "Description": "NSD-RES1" - }, - "EDP": { - "Type": "Roof Drift Ratio", - "Unit": [ - 1, - "rad" - ] - }, - "DSGroups": [ - { - "MedianEDP": 0.004, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.01, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.008, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.05, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.025, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.25, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 0.05, - "Beta": 0.5, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "ReconstructionCost": { - "Amount": 0.5, - "CurveType": "N/A" - } - }, - "Description": "Complete" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-MH-HC-EDU2.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-MH-HC-EDU2.json deleted file mode 100644 index d4818239b..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-MH-HC-EDU2.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "Name": "S-MH-HC-EDU2", - "Directional": false, - "GeneralInformation": { - "ID": "S-MH-HC-EDU2", - "Description": "S-MH-HC-EDU2" - }, - "EDP": { - "Type": "Roof Drift Ratio", - "Unit": [ - 1, - "rad" - ] - }, - "DSGroups": [ - { - "MedianEDP": 0.004, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0005 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.002, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 10, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.008, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0025 - }, - { - "Amount": 0.0003 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.011000000000000001, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 45, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.024, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.01 - }, - { - "Amount": 0.001 - }, - { - "Amount": 1e-05 - }, - { - "Amount": 1e-05 - } - ], - "ReconstructionCost": { - "Amount": 0.055, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 0.07, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "MutuallyExclusive", - "DamageStates": [ - { - "Weight": 0.97, - "Consequences": { - "Injuries": [ - { - "Amount": 0.05 - }, - { - "Amount": 0.01 - }, - { - "Amount": 0.0001 - }, - { - "Amount": 0.0001 - } - ], - "ReconstructionCost": { - "Amount": 0.11, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 360, - "CurveType": "N/A" - } - }, - "Description": "Complete" - }, - { - "Weight": 0.03, - "Consequences": { - "Injuries": [ - { - "Amount": 0.4 - }, - { - "Amount": 0.2 - }, - { - "Amount": 0.03 - }, - { - "Amount": 0.05 - } - ], - "ReconstructionCost": { - "Amount": 0.11, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 360, - "CurveType": "N/A" - } - }, - "Description": "Collapse" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-MH-HC-RES1.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-MH-HC-RES1.json deleted file mode 100644 index 2afac42e7..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-MH-HC-RES1.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "Name": "S-MH-HC-RES1", - "Directional": false, - "GeneralInformation": { - "ID": "S-MH-HC-RES1", - "Description": "S-MH-HC-RES1" - }, - "EDP": { - "Type": "Roof Drift Ratio", - "Unit": [ - 1, - "rad" - ] - }, - "DSGroups": [ - { - "MedianEDP": 0.004, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0005 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.005, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 2, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.008, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0025 - }, - { - "Amount": 0.0003 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.023, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 30, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.024, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.01 - }, - { - "Amount": 0.001 - }, - { - "Amount": 1e-05 - }, - { - "Amount": 1e-05 - } - ], - "ReconstructionCost": { - "Amount": 0.11699999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 90, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 0.07, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "MutuallyExclusive", - "DamageStates": [ - { - "Weight": 0.97, - "Consequences": { - "Injuries": [ - { - "Amount": 0.05 - }, - { - "Amount": 0.01 - }, - { - "Amount": 0.0001 - }, - { - "Amount": 0.0001 - } - ], - "ReconstructionCost": { - "Amount": 0.23399999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Complete" - }, - { - "Weight": 0.03, - "Consequences": { - "Injuries": [ - { - "Amount": 0.4 - }, - { - "Amount": 0.2 - }, - { - "Amount": 0.03 - }, - { - "Amount": 0.05 - } - ], - "ReconstructionCost": { - "Amount": 0.23399999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Collapse" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-HC-EDU2.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-HC-EDU2.json deleted file mode 100644 index b7afd464c..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-HC-EDU2.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "Name": "S-W1-HC-EDU2", - "Directional": false, - "GeneralInformation": { - "ID": "S-W1-HC-EDU2", - "Description": "S-W1-HC-EDU2" - }, - "EDP": { - "Type": "Roof Drift Ratio", - "Unit": [ - 1, - "rad" - ] - }, - "DSGroups": [ - { - "MedianEDP": 0.004, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0005 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.002, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 10, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.012, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0025 - }, - { - "Amount": 0.0003 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.011000000000000001, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 45, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.04, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.01 - }, - { - "Amount": 0.001 - }, - { - "Amount": 1e-05 - }, - { - "Amount": 1e-05 - } - ], - "ReconstructionCost": { - "Amount": 0.055, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 0.1, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "MutuallyExclusive", - "DamageStates": [ - { - "Weight": 0.97, - "Consequences": { - "Injuries": [ - { - "Amount": 0.05 - }, - { - "Amount": 0.01 - }, - { - "Amount": 0.0001 - }, - { - "Amount": 0.0001 - } - ], - "ReconstructionCost": { - "Amount": 0.11, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 360, - "CurveType": "N/A" - } - }, - "Description": "Complete" - }, - { - "Weight": 0.03, - "Consequences": { - "Injuries": [ - { - "Amount": 0.4 - }, - { - "Amount": 0.2 - }, - { - "Amount": 0.03 - }, - { - "Amount": 0.05 - } - ], - "ReconstructionCost": { - "Amount": 0.11, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 360, - "CurveType": "N/A" - } - }, - "Description": "Collapse" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-HC-RES1.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-HC-RES1.json deleted file mode 100644 index cd6b4b3fb..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-HC-RES1.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "Name": "S-W1-HC-RES1", - "Directional": false, - "GeneralInformation": { - "ID": "S-W1-HC-RES1", - "Description": "S-W1-HC-RES1" - }, - "EDP": { - "Type": "Roof Drift Ratio", - "Unit": [ - 1, - "rad" - ] - }, - "DSGroups": [ - { - "MedianEDP": 0.004, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0005 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.005, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 2, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.012, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0025 - }, - { - "Amount": 0.0003 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.023, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 30, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.04, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.01 - }, - { - "Amount": 0.001 - }, - { - "Amount": 1e-05 - }, - { - "Amount": 1e-05 - } - ], - "ReconstructionCost": { - "Amount": 0.11699999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 90, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 0.1, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "MutuallyExclusive", - "DamageStates": [ - { - "Weight": 0.97, - "Consequences": { - "Injuries": [ - { - "Amount": 0.05 - }, - { - "Amount": 0.01 - }, - { - "Amount": 0.0001 - }, - { - "Amount": 0.0001 - } - ], - "ReconstructionCost": { - "Amount": 0.23399999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Complete" - }, - { - "Weight": 0.03, - "Consequences": { - "Injuries": [ - { - "Amount": 0.4 - }, - { - "Amount": 0.2 - }, - { - "Amount": 0.03 - }, - { - "Amount": 0.05 - } - ], - "ReconstructionCost": { - "Amount": 0.23399999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Collapse" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-PC-EDU2.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-PC-EDU2.json deleted file mode 100644 index 2cfc0fd18..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-PC-EDU2.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "Name": "S-W1-PC-EDU2", - "Directional": false, - "GeneralInformation": { - "ID": "S-W1-PC-EDU2", - "Description": "S-W1-PC-EDU2" - }, - "EDP": { - "Type": "Roof Drift Ratio", - "Unit": [ - 1, - "rad" - ] - }, - "DSGroups": [ - { - "MedianEDP": 0.0032, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0005 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.002, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 10, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.0079, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0025 - }, - { - "Amount": 0.0003 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.011000000000000001, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 45, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.0245, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.01 - }, - { - "Amount": 0.001 - }, - { - "Amount": 1e-05 - }, - { - "Amount": 1e-05 - } - ], - "ReconstructionCost": { - "Amount": 0.055, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 0.06, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "MutuallyExclusive", - "DamageStates": [ - { - "Weight": 0.97, - "Consequences": { - "Injuries": [ - { - "Amount": 0.05 - }, - { - "Amount": 0.01 - }, - { - "Amount": 0.0001 - }, - { - "Amount": 0.0001 - } - ], - "ReconstructionCost": { - "Amount": 0.11, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 360, - "CurveType": "N/A" - } - }, - "Description": "Complete" - }, - { - "Weight": 0.03, - "Consequences": { - "Injuries": [ - { - "Amount": 0.4 - }, - { - "Amount": 0.2 - }, - { - "Amount": 0.03 - }, - { - "Amount": 0.05 - } - ], - "ReconstructionCost": { - "Amount": 0.11, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 360, - "CurveType": "N/A" - } - }, - "Description": "Collapse" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-PC-RES1.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-PC-RES1.json deleted file mode 100644 index 0beb79200..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/DL json/S-W1-PC-RES1.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "Name": "S-W1-PC-RES1", - "Directional": false, - "GeneralInformation": { - "ID": "S-W1-PC-RES1", - "Description": "S-W1-PC-RES1" - }, - "EDP": { - "Type": "Roof Drift Ratio", - "Unit": [ - 1, - "rad" - ] - }, - "DSGroups": [ - { - "MedianEDP": 0.0032, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0005 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.005, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 2, - "CurveType": "N/A" - } - }, - "Description": "Slight" - } - ] - }, - { - "MedianEDP": 0.0079, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.0025 - }, - { - "Amount": 0.0003 - }, - { - "Amount": 0.0 - }, - { - "Amount": 0.0 - } - ], - "ReconstructionCost": { - "Amount": 0.023, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 30, - "CurveType": "N/A" - } - }, - "Description": "Moderate" - } - ] - }, - { - "MedianEDP": 0.0245, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "Single", - "DamageStates": [ - { - "Weight": 1.0, - "Consequences": { - "Injuries": [ - { - "Amount": 0.01 - }, - { - "Amount": 0.001 - }, - { - "Amount": 1e-05 - }, - { - "Amount": 1e-05 - } - ], - "ReconstructionCost": { - "Amount": 0.11699999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 90, - "CurveType": "N/A" - } - }, - "Description": "Extensive" - } - ] - }, - { - "MedianEDP": 0.06, - "Beta": 0.4, - "CurveType": "LogNormal", - "DSGroupType": "MutuallyExclusive", - "DamageStates": [ - { - "Weight": 0.97, - "Consequences": { - "Injuries": [ - { - "Amount": 0.05 - }, - { - "Amount": 0.01 - }, - { - "Amount": 0.0001 - }, - { - "Amount": 0.0001 - } - ], - "ReconstructionCost": { - "Amount": 0.23399999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Complete" - }, - { - "Weight": 0.03, - "Consequences": { - "Injuries": [ - { - "Amount": 0.4 - }, - { - "Amount": 0.2 - }, - { - "Amount": 0.03 - }, - { - "Amount": 0.05 - } - ], - "ReconstructionCost": { - "Amount": 0.23399999999999999, - "CurveType": "N/A" - }, - "ReconstructionTime": { - "Amount": 180, - "CurveType": "N/A" - } - }, - "Description": "Collapse" - } - ] - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/ref/population.json b/pelicun/tests/resources/io testing/HAZUS creator/ref/population.json deleted file mode 100644 index 9dae8f5a5..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/ref/population.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "Residential": { - "weekday": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.35, - 0.35, - 0.35, - 0.53, - 0.53, - 0.53, - 0.53, - 0.53, - 0.53, - 0.53, - 0.35, - 0.35, - 0.35, - 0.35, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.35, - 0.35, - 0.35, - 0.53, - 0.53, - 0.53, - 0.53, - 0.53, - 0.53, - 0.53, - 0.35, - 0.35, - 0.35, - 0.35, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Hotels": { - "weekday": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.3, - 0.3, - 0.19, - 0.19, - 0.19, - 0.19, - 0.19, - 0.19, - 0.19, - 0.3, - 0.3, - 0.3, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.3, - 0.3, - 0.3, - 0.19, - 0.19, - 0.19, - 0.19, - 0.19, - 0.19, - 0.19, - 0.3, - 0.3, - 0.3, - 0.3, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/HAZUS creator/source/hazus_data_eq.json b/pelicun/tests/resources/io testing/HAZUS creator/source/hazus_data_eq.json deleted file mode 100644 index da51f4f90..000000000 --- a/pelicun/tests/resources/io testing/HAZUS creator/source/hazus_data_eq.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "Structural_Fragility_Groups": { - "EDP_limits": { - "High_code": { - "W1": [0.0040, 0.0120, 0.0400, 0.1000], - "MH": [0.0040, 0.0080, 0.0240, 0.0700] - }, - "Pre_code": { - "W1": [0.0032, 0.0079, 0.0245, 0.0600] - } - }, - "Fragility_beta":{ - "High_code": 0.4, - "Pre_code": 0.4 - }, - "P_collapse": { - "W1": 0.03, - "MH": 0.03 - }, - "Injury_rates":{ - "DS1": { - "W1": [0.05, 0, 0, 0], - "MH": [0.05, 0, 0, 0] - }, - "DS2": { - "W1": [0.25, 0.030, 0, 0], - "MH": [0.25, 0.030, 0, 0] - }, - "DS3": { - "W1": [1, 0.1, 0.001, 0.001], - "MH": [1, 0.1, 0.001, 0.001] - }, - "DS4": { - "W1": [5, 1, 0.01, 0.01], - "MH": [5, 1, 0.01, 0.01] - }, - "DS5": { - "W1": [40, 20, 3, 5], - "MH": [40, 20, 3, 5] - } - }, - "Reconstruction_cost": { - "RES1": [0.5, 2.3, 11.7, 23.4], - "EDU2": [0.2, 1.1, 5.5, 11.0] - }, - "Reconstruction_time": { - "RES1": [2, 30, 90, 180], - "EDU2": [10, 45, 180, 360] - } - }, - "NonStructural_Drift_Sensitive_Fragility_Groups":{ - "EDP_limits": [0.004, 0.008, 0.025, 0.050], - "Fragility_beta": 0.5, - "Reconstruction_cost": { - "RES1": [1.0, 5.0, 25.0, 50.0], - "EDU2": [1.2, 6.0, 30.0, 60.0] - } - }, - "NonStructural_Acceleration_Sensitive_Fragility_Groups":{ - "EDP_limits": { - "High_code": [0.30, 0.60, 1.20, 2.40], - "Pre_code": [0.20, 0.40, 0.80, 1.60] - }, - "Fragility_beta": 0.6, - "Reconstruction_cost": { - "RES1": [0.5, 2.7, 8.0, 26.6], - "EDU2": [0.6, 2.9, 8.7, 29.0] - } - }, - "Parts_of_day":{ - "Nighttime": [0, 1, 2, 3, 4, 5, 20, 21, 22, 23], - "Daytime": [9, 10, 11, 12, 13, 14, 15], - "Commute": [6, 7, 8, 16, 17, 18, 19] - }, - "Population_Distribution":{ - "Residential": [1.00, 0.53, 0.35], - "Hotels": [1.00, 0.19, 0.30] - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/ref/B1031.001.json b/pelicun/tests/resources/io testing/P58 converter/ref/B1031.001.json deleted file mode 100644 index a5a744ad5..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/ref/B1031.001.json +++ /dev/null @@ -1 +0,0 @@ -{"Name": "Bolted shear tab gravity connections", "QuantityUnit": [1, "EA"], "Directional": true, "Correlated": false, "EDP": {"Type": "Story Drift Ratio", "Unit": [1, "ea"], "Offset": 0}, "GeneralInformation": {"ID": "B1031.001", "Description": "Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost.", "Author": "Greg Deierlein", "Official": true, "DateCreated": "2012-10-12T16:47:38.2515683-07:00", "Approved": true, "Incomplete": false, "Notes": "None"}, "Ratings": {"DataQuality": "Superior", "DataRelevance": "Superior", "Documentation": "Superior", "Rationality": "Superior"}, "DSGroups": [{"MedianEDP": 0.04, "Beta": 0.4, "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [15264.0, 10176.0], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3706, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [43.6928, 29.1272], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3706, "Bounds": [0, "None"]}}, "Description": "Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. ", "RepairMeasures": "Careful inspection and welded repair to any cracks and possible replacement of shear tab if bolt hole deformations are excessive (possible for deeper 6-bolt or deeper shear tabs). ", "DamageImageName": "B1031.001-DS1-1.jpg"}]}, {"MedianEDP": 0.08, "Beta": 0.4, "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.2, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [15564.0, 10376.0], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3789, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [44.556, 29.704], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3789, "Bounds": [0, "None"]}}, "Description": "Partial tearing of shear tab and possibility of bolt shear failure (6-bolt or deeper connections).", "RepairMeasures": "Repairs will include either welded repair of shear tab or possible complete replacement of shear tab and installation of new bolts. Repairs may require shoring of beam.", "DamageImageName": "B1031.001-DS2-1.jpg"}]}, {"MedianEDP": 0.11, "Beta": 0.4, "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.1, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [15264.0, 10176.0], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3836, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [43.6928, 29.1272], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3836, "Bounds": [0, "None"]}}, "Description": "Complete separation of shear tab, close to complete loss of vertical load resistance. ", "RepairMeasures": "Repair will include complete replacement of shear tab and installation of new bolts. Repairs will require shoring of beam.", "DamageImageName": "B1031.001-DS3-1.jpg"}]}]} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/ref/B1033.071a.json b/pelicun/tests/resources/io testing/P58 converter/ref/B1033.071a.json deleted file mode 100644 index 1cd5bb4dc..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/ref/B1033.071a.json +++ /dev/null @@ -1 +0,0 @@ -{"Name": "Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, Brace w < 40 PLF", "QuantityUnit": [1, "EA"], "Directional": true, "Correlated": false, "EDP": {"Type": "Story Drift Ratio", "Unit": [1, "ea"], "Offset": 0}, "GeneralInformation": {"ID": "B1033.071a", "Description": "Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost.", "Author": "Not Given", "Official": true, "DateCreated": "2012-10-12T16:47:41.4105683-07:00", "Approved": true, "Incomplete": false, "Notes": "Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3\u2026 Please confirm if two additional damage state performances should be added or if only one cost damage state should be included."}, "Ratings": {"DataQuality": "Not Rated", "DataRelevance": "Average", "Documentation": "Average", "Rationality": "Superior"}, "DSGroups": [{"MedianEDP": 0.0042, "Beta": 0.25, "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.2, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [43294.1943, 28862.7962], "Quantity": [3.0, 7.0], "CurveType": "Normal", "Beta": 0.3278, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [122.2437, 81.4963], "Quantity": [3.0, 7.0], "CurveType": "Normal", "Beta": 0.3278, "Bounds": [0, "None"]}}, "Description": "Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. ", "RepairMeasures": "Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed."}]}]} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/ref/B1035.041.json b/pelicun/tests/resources/io testing/P58 converter/ref/B1035.041.json deleted file mode 100644 index e1475ed79..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/ref/B1035.041.json +++ /dev/null @@ -1 +0,0 @@ -{"Name": "Pre-Northridge WUF-B beam-column joint, beam one side of column, beam depth <= W27", "QuantityUnit": [1, "EA"], "Directional": true, "Correlated": false, "EDP": {"Type": "Story Drift Ratio", "Unit": [1, "ea"], "Offset": 0}, "GeneralInformation": {"ID": "B1035.041", "Description": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", "Author": "Greg Deierlein", "Official": true, "DateCreated": "2012-10-12T16:47:42.4625683-07:00", "Approved": true, "Incomplete": false, "Notes": "None"}, "Ratings": {"DataQuality": "Average", "DataRelevance": "Average", "Documentation": "Superior", "Rationality": "Superior"}, "DSGroups": [{"MedianEDP": 0.017, "Beta": 0.4, "CurveType": "LogNormal", "DSGroupType": "MutuallyExclusive", "DamageStates": [{"Weight": 0.75, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.5, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [14472.0, 9648.0], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3517, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [38.592, 25.728], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3517, "Bounds": [0, "None"]}}, "Description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", "RepairMeasures": "Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts.", "DamageImageName": "B1035.041-DS1-1.JPG"}, {"Weight": 0.25, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.5, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [16272.0, 10848.0], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3517, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [43.392, 28.928], "Quantity": [10.0, 30.0], "CurveType": "Normal", "Beta": 0.3516, "Bounds": [0, "None"]}}, "Description": "Similar to DS1, except that fracture propagates into column flanges.", "RepairMeasures": "DESCRIPTION IS NOT COMPLETE: In addition to column measures for DS1, repairs to column will be necessary that will involve replacing a portion of the \u2026.", "DamageImageName": "B1035.041-DS2-1.JPG"}]}, {"MedianEDP": 0.025, "Beta": 0.4, "CurveType": "LogNormal", "DSGroupType": "MutuallyExclusive", "DamageStates": [{"Weight": 0.75, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.5, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [20472.0, 13648.0], "Quantity": [10.0, 30.0], "CurveType": "LogNormal", "Beta": 0.3199, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [54.5887, 36.3913], "Quantity": [10.0, 30.0], "CurveType": "LogNormal", "Beta": 0.3199, "Bounds": [0, "None"]}}, "Description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", "RepairMeasures": "Repairs will be similar to those required for DS1, except that access to weld will likely require removal of a portion of the floor slab above the weld."}, {"Weight": 0.25, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.5, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [21120.0, 14080.0], "Quantity": [10.0, 30.0], "CurveType": "LogNormal", "Beta": 0.3688, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [56.3167, 37.5433], "Quantity": [10.0, 30.0], "CurveType": "LogNormal", "Beta": 0.3688, "Bounds": [0, "None"]}}, "Description": "Similar to DS3, except that fracture propagates into column flanges.", "RepairMeasures": "In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange."}]}, {"MedianEDP": 0.03, "Beta": 0.4, "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.5, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [17472.0, 11648.0], "Quantity": [10.0, 30.0], "CurveType": "LogNormal", "Beta": 0.3361, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [46.6, 31.1], "Quantity": [10.0, 30.0], "CurveType": "LogNormal", "Beta": 0.336, "Bounds": [0, "None"]}}, "Description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", "RepairMeasures": "Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced."}]}]} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/ref/B1041.001a.json b/pelicun/tests/resources/io testing/P58 converter/ref/B1041.001a.json deleted file mode 100644 index ce931a84a..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/ref/B1041.001a.json +++ /dev/null @@ -1 +0,0 @@ -{"Name": "ACI 318 SMF , Conc Col & Bm = 24\" x 24\", Beam one side", "QuantityUnit": [1, "EA"], "Directional": true, "Correlated": false, "EDP": {"Type": "Story Drift Ratio", "Unit": [1, "ea"], "Offset": 0}, "GeneralInformation": {"ID": "B1041.001a", "Description": "ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis.", "Author": "Laura Lowes", "Official": true, "DateCreated": "2012-10-12T16:47:42.8025683-07:00", "Approved": true, "Incomplete": false, "Notes": "Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3."}, "Ratings": {"DataQuality": "Average", "DataRelevance": "Average", "Documentation": "Superior", "Rationality": "Superior"}, "DSGroups": [{"MedianEDP": 0.02, "Beta": 0.4, "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [27846.0, 17136.0], "Quantity": [5.0, 20.0], "CurveType": "Normal", "Beta": 0.3909, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [71.632, 43.912], "Quantity": [5.0, 20.0], "CurveType": "Normal", "Beta": 0.3974, "Bounds": [0, "None"]}}, "Description": "Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing.", "RepairMeasures": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary.", "DamageImageName": "B1041.001a-DS1-1.JPG"}]}, {"MedianEDP": 0.0275, "Beta": 0.3, "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [38978.4, 27609.7], "Quantity": [5.0, 20.0], "CurveType": "Normal", "Beta": 0.3183, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [100.8142, 71.3893], "Quantity": [5.0, 20.0], "CurveType": "Normal", "Beta": 0.3175, "Bounds": [0, "None"]}}, "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", "RepairMeasures": "Remove furnishings, ceilings and mechanical, electrical and\nplumbing systems (as necessary) 15 feet either side of\ndamaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed\nreinforcing steel. Place concrete forms. Place concrete.\nRemove forms. Remove shores after one week. Replace and\nrepair finishes. Replace furnishings, ceilings and mechanical,\nelectrical and plumbing systems (as necessary).", "DamageImageName": "B1041.001a-DS2-1.JPG"}]}, {"MedianEDP": 0.05, "Beta": 0.3, "CurveType": "LogNormal", "DSGroupType": "MutuallyExclusive", "DamageStates": [{"Weight": 0.8, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.2, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [47978.4, 33984.7], "Quantity": [5.0, 20.0], "CurveType": "Normal", "Beta": 0.3024, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [123.6966, 87.4776], "Quantity": [5.0, 20.0], "CurveType": "Normal", "Beta": 0.3004, "Bounds": [0, "None"]}}, "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur.", "RepairMeasures": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).\n", "DamageImageName": "B1041.001a-DS3-1.JPG"}, {"Weight": 0.2, "LongLeadTime": false, "Consequences": {"RedTag": {"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, "ReconstructionCost": {"Amount": [38978.4, 27609.7], "Quantity": [5.0, 20.0], "CurveType": "Normal", "Beta": 0.3183, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [100.8142, 71.3893], "Quantity": [5.0, 20.0], "CurveType": "Normal", "Beta": 0.3175, "Bounds": [0, "None"]}}, "Description": "Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing.", "RepairMeasures": "Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary).", "DamageImageName": "B1041.001a-DS2-1.JPG"}]}]} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/ref/C1011.001a.json b/pelicun/tests/resources/io testing/P58 converter/ref/C1011.001a.json deleted file mode 100644 index f4599f837..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/ref/C1011.001a.json +++ /dev/null @@ -1 +0,0 @@ -{"Name": "Wall Partition, Type: Gypsum with metal studs, Full Height, Fixed Below, Fixed Above", "QuantityUnit": [100, "LF"], "Directional": true, "Correlated": false, "EDP": {"Type": "Story Drift Ratio", "Unit": [1, "ea"], "Offset": 0}, "GeneralInformation": {"ID": "C1011.001a", "Description": "Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state.", "Author": "Not Given", "Official": false, "DateCreated": "2012-09-27T16:36:29.2194343-07:00", "Approved": false, "Incomplete": false, "Notes": "None"}, "Ratings": {"DataQuality": "Superior", "DataRelevance": "Superior", "Documentation": "Superior", "Rationality": "Not Rated"}, "DSGroups": [{"MedianEDP": 0.0021, "Beta": 0.6, "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"ReconstructionCost": {"Amount": [2730.0, 2660.0], "Quantity": [1.0, 10.0], "CurveType": "Normal", "Beta": 0.435, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [8.04, 7.81], "Quantity": [1.0, 10.0], "CurveType": "Normal", "Beta": 0.435, "Bounds": [0, "None"]}}, "Description": "Screws pop-out, minor cracking of wall board, warping or cracking of tape.", "RepairMeasures": "Retape joints, paste and repaint both sides of 50 foot length of wall board."}]}, {"MedianEDP": 0.0071, "Beta": 0.45, "CurveType": "LogNormal", "DSGroupType": "MutuallyExclusive", "DamageStates": [{"Weight": 0.8, "LongLeadTime": false, "Consequences": {"ReconstructionCost": {"Amount": [5190.0, 4320.0], "Quantity": [1.0, 10.0], "CurveType": "LogNormal", "Beta": 0.193, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [15.3, 12.7], "Quantity": [1.0, 10.0], "CurveType": "LogNormal", "Beta": 0.193, "Bounds": [0, "None"]}}, "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners and in corners of openings).", "RepairMeasures": "Remove 25 foot length of wall board (both sides), install new wall board (both sides), tape, paste and repaint."}, {"Weight": 0.2, "LongLeadTime": false, "Consequences": {"ReconstructionCost": {"Amount": [19800.0, 16900.0], "Quantity": [1.0, 10.0], "CurveType": "LogNormal", "Beta": 0.0969, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [58.1, 49.8], "Quantity": [1.0, 10.0], "CurveType": "LogNormal", "Beta": 0.0969, "Bounds": [0, "None"]}}, "Description": "Moderate cracking or crushing of gypsum wall boards (typically in corners and in corners of openings).", "RepairMeasures": "Remove full 100 foot length of wall board (both sides), install new wall board (both sides), tape, paste and repaint."}]}, {"MedianEDP": 0.012, "Beta": 0.45, "CurveType": "LogNormal", "DSGroupType": "MutuallyExclusive", "DamageStates": [{"Weight": 0.8, "LongLeadTime": false, "Consequences": {"ReconstructionCost": {"Amount": [7940.0, 6710.0], "Quantity": [1.0, 10.0], "CurveType": "LogNormal", "Beta": 0.176, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [23.4, 19.7], "Quantity": [1.0, 10.0], "CurveType": "LogNormal", "Beta": 0.176, "Bounds": [0, "None"]}}, "Description": "Significant cracking and/or crushing of gypsum wall boards- buckling of studs and tearing of tracks.", "RepairMeasures": "Remove and replace 25 foot length of metal stud wall, both sides of the gypsum wall board and any embedded utilities, and tape, paste and repaint."}, {"Weight": 0.2, "LongLeadTime": false, "Consequences": {"ReconstructionCost": {"Amount": [31100.0, 26400.0], "Quantity": [1.0, 10.0], "CurveType": "LogNormal", "Beta": 0.158, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [91.5, 77.6], "Quantity": [1.0, 10.0], "CurveType": "LogNormal", "Beta": 0.158, "Bounds": [0, "None"]}}, "Description": "Significant cracking and/or crushing of gypsum wall boards- buckling of studs and tearing of tracks.", "RepairMeasures": "Remove and replace full 100 foot length of metal stud wall, both sides of the gypsum wall board and any embedded utilities, and tape, paste and repaint."}]}]} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/ref/D1014.011.json b/pelicun/tests/resources/io testing/P58 converter/ref/D1014.011.json deleted file mode 100644 index f57f570a6..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/ref/D1014.011.json +++ /dev/null @@ -1 +0,0 @@ -{"Name": "Traction Elevator \u2013 Applies to most California Installations 1976 or later, most western states installations 1982 or later and most other U.S installations 1998 or later.", "QuantityUnit": [1, "EA"], "Directional": false, "Correlated": false, "EDP": {"Type": "Peak Floor Acceleration", "Unit": [1, "g"], "Offset": 0}, "GeneralInformation": {"ID": "D1014.011", "Description": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.", "Author": "Not Given", "Official": true, "DateCreated": "2012-10-12T16:48:11.2375683-07:00", "Approved": true, "Incomplete": false, "Notes": "None"}, "Ratings": {"DataQuality": "Not Rated", "DataRelevance": "Not Rated", "Documentation": "Not Rated", "Rationality": "Not Rated"}, "DSGroups": [{"MedianEDP": 0.39, "Beta": 0.45, "CurveType": "LogNormal", "DSGroupType": "Simultaneous", "DamageStates": [{"Weight": 0.26, "LongLeadTime": true, "Consequences": {"Injuries": [{"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, {"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}], "ReconstructionCost": {"Amount": [1333.0, 1333.0], "Quantity": [1.0, 1.0], "CurveType": "LogNormal", "Beta": 0.92, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [3.9, 3.9], "Quantity": [1.0, 1.0], "CurveType": "LogNormal", "Beta": 0.92, "Bounds": [0, "None"]}}, "Description": "Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures.", "RepairMeasures": "Multiple repairs possible (% change of each): Reinstall or replace controller (4%), and or reinstall or replace motor generator (63%), and or Install new generator with appropriate anchors (23%), and or Install new governor (7%), and or Reinstall or replace rope guards (15%).", "DamageImageName": "D1014.010-DS1-1.JPG", "AffectedArea": [0, "SF"]}, {"Weight": 0.79, "LongLeadTime": true, "Consequences": {"Injuries": [{"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, {"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}], "ReconstructionCost": {"Amount": [4630.0, 4630.0], "Quantity": [1.0, 1.0], "CurveType": "LogNormal", "Beta": 0.27, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [13.6, 13.6], "Quantity": [1.0, 1.0], "CurveType": "LogNormal", "Beta": 0.27, "Bounds": [0, "None"]}}, "Description": "Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted", "RepairMeasures": "Multiple repairs possible (% change of each): Replace rail (62%), and or replace bracket or tie rod (28%), and or replace counterweight bracket 14%), and or replace intermediate bracket (28%), and or replace car guide shoes (35%), and or replace counterweight guide shoe (28%), and or repair or replace counterweight frame (28%), and or repair or replace tail sheave (1%)", "DamageImageName": "D1014.010-DS2-6.JPG", "AffectedArea": [0, "SF"]}, {"Weight": 0.68, "LongLeadTime": true, "Consequences": {"Injuries": [{"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, {"Amount": 0.0, "Beta": 0.0, "CurveType": "Normal", "Bounds": [0.0, 1.0]}], "ReconstructionCost": {"Amount": [4450.0, 4450.0], "Quantity": [1.0, 1.0], "CurveType": "Normal", "Beta": 0.35, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [13.1, 13.1], "Quantity": [1.0, 1.0], "CurveType": "Normal", "Beta": 0.35, "Bounds": [0, "None"]}}, "Description": "Cab stabilizers bent, or cab walls damaged, or cab doors damaged.", "RepairMeasures": "Multiple repairs possible (% change of each): Repair or replace cab walls (3%), and or repair or replace cab doors (17%), and or repair or replace cab stabilizers (92%) ", "AffectedArea": [0, "SF"]}, {"Weight": 0.17, "LongLeadTime": true, "Consequences": {"Injuries": [{"Amount": 0.1, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}, {"Amount": 0.05, "Beta": 0.5, "CurveType": "Normal", "Bounds": [0.0, 1.0]}], "ReconstructionCost": {"Amount": [200.0, 2000.0], "Quantity": [1.0, 1.0], "CurveType": "Normal", "Beta": 0.49, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [5.88, 5.88], "Quantity": [1.0, 1.0], "CurveType": "Normal", "Beta": 0.49, "Bounds": [0, "None"]}}, "Description": "Cab ceiling damaged.", "RepairMeasures": "Multiple repairs possible (% change of each): Repair or replace cab ceiling (100%)", "DamageImageName": "D1014.010-DS4-1.JPG", "AffectedArea": [40, "SF"]}]}]} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/ref/D2021.012a.json b/pelicun/tests/resources/io testing/P58 converter/ref/D2021.012a.json deleted file mode 100644 index 7ec2edc7e..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/ref/D2021.012a.json +++ /dev/null @@ -1 +0,0 @@ -{"Name": "Cold Water Piping (dia > 2.5 inches), SDC C, PIPING FRAGILITY", "QuantityUnit": [1000, "LF"], "Directional": false, "Correlated": false, "EDP": {"Type": "Peak Floor Acceleration", "Unit": [1, "g"], "Offset": 0}, "GeneralInformation": {"ID": "D2021.012a", "Description": "Potable water. Costing based upon 1000 ft segments of large diameter welded steel pipes assumed, smaller dia pipes are deemed rugged", "Author": "Undefined", "Official": true, "DateCreated": "2012-10-12T16:49:03.3405683-07:00", "Approved": true, "Incomplete": true, "Notes": "Yes"}, "Ratings": {"DataQuality": "NO", "DataRelevance": "Undefined", "Documentation": "Undefined", "Rationality": "Undefined"}, "DSGroups": [{"MedianEDP": 1.5, "Beta": "Undefined", "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"ReconstructionCost": {"Amount": [700.0, 210.0], "Quantity": [250.0, 500.0], "CurveType": "LogNormal", "Beta": 0.6488, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [2.0594, 0.6182], "Quantity": [250.0, 500.0], "CurveType": "LogNormal", "Beta": 0.6483, "Bounds": [0, "None"]}}, "Description": "Minor leakage at flange connections - 1 leak per 1000 feet of pipe ", "RepairMeasures": "NO"}]}, {"MedianEDP": 2.6, "Beta": "Undefined", "CurveType": "LogNormal", "DSGroupType": "Single", "DamageStates": [{"Weight": 1.0, "LongLeadTime": false, "Consequences": {"ReconstructionCost": {"Amount": [6700.0, 2010.0], "Quantity": [250.0, 500.0], "CurveType": "LogNormal", "Beta": 0.4038, "Bounds": [0, "None"]}, "ReconstructionTime": {"Amount": [19.7029, 5.9088], "Quantity": [250.0, 500.0], "CurveType": "LogNormal", "Beta": 0.4042, "Bounds": [0, "None"]}}, "Description": "Pipe Break - 1 break per 1000 feet of pipe ", "RepairMeasures": "NO"}]}]} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1031.001.xml b/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1031.001.xml deleted file mode 100644 index a17a196fa..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1031.001.xml +++ /dev/null @@ -1,140 +0,0 @@ - - - 143a6df7-5841-4406-abac-29dc8a26cfb9 - B1031.001 - Costing is on a per connection basis. Costing does not include fireproofing removal or reapplication cost. - Each - Bolted shear tab gravity connections - Greg Deierlein - 0 - true - - NumLevels - Story Drift Ratio - Radian - false - - - Superior - Superior - Superior - Superior - - true - 2012-10-12T16:47:38.2515683-07:00 - true - false - None - false - - Sequential - - - Yielding of shear tab and elongation of bolt holes, possible crack initiation around bolt holes or at shear tab weld. - B1031.001-DS1-1.jpg - - Careful inspection and welded repair to any cracks and possible replacement of shear tab if bolt hole deformations are excessive (possible for deeper 6-bolt or deeper shear tabs). - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 10 - 15264 - 30 - 10176 - 0.3706 - Normal - - - 10 - 43.6928 - 30 - 29.1272 - 0.3706 - Normal - - - 0.04 - 0.4 - - - - Partial tearing of shear tab and possibility of bolt shear failure (6-bolt or deeper connections). - B1031.001-DS2-1.jpg - - Repairs will include either welded repair of shear tab or possible complete replacement of shear tab and installation of new bolts. Repairs may require shoring of beam. - Red - false - false - - 0 - 0 - 0 - 0 - 0.2 - 0.5 - - 10 - 15564 - 30 - 10376 - 0.3789 - Normal - - - 10 - 44.556 - 30 - 29.704 - 0.3789 - Normal - - - 0.08 - 0.4 - - - - Complete separation of shear tab, close to complete loss of vertical load resistance. - B1031.001-DS3-1.jpg - - Repair will include complete replacement of shear tab and installation of new bolts. Repairs will require shoring of beam. - Red - false - false - - 0 - 0 - 0 - 0 - 0.1 - 0.5 - - 10 - 15264 - 30 - 10176 - 0.3836 - Normal - - - 10 - 43.6928 - 30 - 29.1272 - 0.3836 - Normal - - - 0.11 - 0.4 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1033.071a.xml b/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1033.071a.xml deleted file mode 100644 index 85ff45798..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1033.071a.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - 5492429e-c73c-4a69-a553-531f1168b5e6 - B1033.071a - Costing on a per bay basis, equivalent to current AISC R=3. Braces may be HSS, WF, or Angle. Costing does not include fireproofing removal or reapplication cost. - Each - Braced frame, design for factored loads, no additional seismic detailing, Chevron Brace, Brace w < 40 PLF - Not Given - 0 - true - - NumLevels - Story Drift Ratio - Radian - false - - - NA - Average - Average - Superior - - true - 2012-10-12T16:47:41.4105683-07:00 - true - false - Performance data has 1 damage state where as the cost data has 3 damage states. The performance data listed in DS1 appears to correspond to the cost data currently shown in DS3… Please confirm if two additional damage state performances should be added or if only one cost damage state should be included. - false - - Sequential - - - Fracture of brace or gusset. Buckling of gusset. Substantial loss of lateral resistance. - - - Brace and gusset are severely damaged with significant loss in stiffness and resistance, and both likely require replacement. Yielding and local buckling of beams and columns may be repaired by heat straightening, stiffeners or reinforcement, if there is no cracking or tearing. If cracking or tearing has initiated more substantial repair is needed. - Red - false - false - - 0 - 0 - 0 - 0 - 0.2 - 0.5 - - 3 - 43294.1943 - 7 - 28862.7962 - 0.3278 - Normal - - - 3 - 122.2437 - 7 - 81.4963 - 0.3278 - Normal - - - 0.0042 - 0.25 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1035.041.xml b/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1035.041.xml deleted file mode 100644 index 0b03dc3a6..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1035.041.xml +++ /dev/null @@ -1,228 +0,0 @@ - - - aa73ec02-237f-46f4-8cc2-4f587efcdc1e - B1035.041 - Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost. - Each - Pre-Northridge WUF-B beam-column joint, beam one side of column, beam depth <= W27 - Greg Deierlein - 0 - true - - NumLevels - Story Drift Ratio - Radian - false - - - Average - Average - Superior - Superior - - true - 2012-10-12T16:47:42.4625683-07:00 - true - false - None - false - - Sequential - - - Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. - B1035.041-DS1-1.JPG - - MutuallyExclusive - - - Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. - B1035.041-DS1-1.JPG - - Repair will typically require gouging out and re-welding of the beam flange weld, repair of shear tab, and replacing shear bolts. - Red - false - false - - 0 - 0 - 0 - 0 - 0.5 - 0.5 - - 10 - 14472 - 30 - 9648 - 0.3517 - Normal - - - 10 - 38.592 - 30 - 25.728 - 0.3517 - Normal - - - 0.75 - - - - Similar to DS1, except that fracture propagates into column flanges. - B1035.041-DS2-1.JPG - - DESCRIPTION IS NOT COMPLETE: In addition to column measures for DS1, repairs to column will be necessary that will involve replacing a portion of the …. - Red - false - false - - 0 - 0 - 0 - 0 - 0.5 - 0.5 - - 10 - 16272 - 30 - 10848 - 0.3517 - Normal - - - 10 - 43.392 - 30 - 28.928 - 0.3516 - Normal - - - 0.25 - - - 0.017 - 0.4 - - - - Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. - - - MutuallyExclusive - - - Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. - - - Repairs will be similar to those required for DS1, except that access to weld will likely require removal of a portion of the floor slab above the weld. - Red - false - false - - 0 - 0 - 0 - 0 - 0.5 - 0.5 - - 10 - 20472 - 30 - 13648 - 0.3199 - LogNormal - - - 10 - 54.5887 - 30 - 36.3913 - 0.3199 - LogNormal - - - 0.75 - - - - Similar to DS3, except that fracture propagates into column flanges. - - - In addition to column measures for DS3, repairs to column will be necessary that will involve replacing a portion of the column flange. - Red - false - false - - 0 - 0 - 0 - 0 - 0.5 - 0.5 - - 10 - 21120 - 30 - 14080 - 0.3688 - LogNormal - - - 10 - 56.3167 - 30 - 37.5433 - 0.3688 - LogNormal - - - 0.25 - - - 0.025 - 0.4 - - - - Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. - - - Repair is similar to that for DS1 except that a portion of the beam web and flange may need to be heat straightened or replaced. - Red - false - false - - 0 - 0 - 0 - 0 - 0.5 - 0.5 - - 10 - 17472 - 30 - 11648 - 0.3361 - LogNormal - - - 10 - 46.6 - 30 - 31.1 - 0.336 - LogNormal - - - 0.03 - 0.4 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1041.001a.xml b/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1041.001a.xml deleted file mode 100644 index b05e92367..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/B1041.001a.xml +++ /dev/null @@ -1,194 +0,0 @@ - - - 6fb64c76-ff15-4584-88a5-437605c44661 - B1041.001a - ACI318 Concrete SMF, ductile response. Meets the requirements of ACI318 SMF. Costing is on a per joint basis. - Each - ACI 318 SMF , Conc Col & Bm = 24" x 24", Beam one side - Laura Lowes - 0 - true - - NumLevels - Story Drift Ratio - Radian - false - - - Average - Average - Superior - Superior - - true - 2012-10-12T16:47:42.8025683-07:00 - true - false - Note: DS4 is a copy of DS2 to create a mutually exclusive compliment to DS3. -Import errors: - Warning: B1041.001a: B1041.001a: DS1 overlaps DS2 in the range of 0.08 to 0.2 - Make sure damage states are minimally overlapping - - false - - Sequential - - - Beams or joints exhibit residual crack widths > 0.06 in. No significant spalling. No fracture or buckling of reinforcing. - B1041.001a-DS1-1.JPG - - Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 8 feet either side of damaged area. Clean area adjacent to the damaged concrete. Prepare spalled concrete and adjacent cracks, as necessary, to be patched and to receive the epoxy injection. Patch concrete with grout. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems as necessary. - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 5 - 27846 - 20 - 17136 - 0.3909 - Normal - - - 5 - 71.632 - 20 - 43.912 - 0.3974 - Normal - - - 0.02 - 0.4 - - - - Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing. - B1041.001a-DS2-1.JPG - - Remove furnishings, ceilings and mechanical, electrical and -plumbing systems (as necessary) 15 feet either side of -damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed -reinforcing steel. Place concrete forms. Place concrete. -Remove forms. Remove shores after one week. Replace and -repair finishes. Replace furnishings, ceilings and mechanical, -electrical and plumbing systems (as necessary). - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 5 - 38978.4 - 20 - 27609.7 - 0.3183 - Normal - - - 5 - 100.8142 - 20 - 71.3893 - 0.3175 - Normal - - - 0.0275 - 0.3 - - - - Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. - B1041.001a-DS3-1.JPG - - MutuallyExclusive - - - Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes a significant length of beam longitudinal reinforcement. Crushing of core concrete may occur. Fracture or buckling of reinf. requiring replacement may occur. - B1041.001a-DS3-1.JPG - - Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged component. Shore damaged member(s) a minimum of one level below (more levels may be required). Remove damaged component. Place and splice (as necessary) new reinforcing steel to existing, undamaged reinforcing. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary). - - Red - false - false - - 0 - 0 - 0 - 0 - 0.2 - 0.5 - - 5 - 47978.4 - 20 - 33984.7 - 0.3024 - Normal - - - 5 - 123.6966 - 20 - 87.4776 - 0.3004 - Normal - - - 0.8 - - - - Beams or joints exhibit residual crack widths > 0.06 in. Spalling of cover concrete exposes beam and joint transverse reinforcement but not longitudinal reinforcement. No fracture or buckling of reinforcing. - B1041.001a-DS2-1.JPG - - Remove furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary) 15 feet either side of damaged area. Shore damaged member(s) a min one level below (more levels may be required). Remove damaged concrete at least 1 inch beyond the exposed reinforcing steel. Place concrete forms. Place concrete. Remove forms. Remove shores after one week. Replace and repair finishes. Replace furnishings, ceilings and mechanical, electrical and plumbing systems (as necessary). - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 5 - 38978.4 - 20 - 27609.7 - 0.3183 - Normal - - - 5 - 100.8142 - 20 - 71.3893 - 0.3175 - Normal - - - 0.2 - - - 0.05 - 0.3 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/C1011.001a.xml b/pelicun/tests/resources/io testing/P58 converter/source/DL xml/C1011.001a.xml deleted file mode 100644 index fef3c692f..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/C1011.001a.xml +++ /dev/null @@ -1,228 +0,0 @@ - - - e611d9e8-f2a6-42e7-a76d-3838cdfb89aa - C1011.001a - Quantity is based upon 13'x100' Panels. Quantity of wall damaged varies by damage state. - Each - Wall Partition, Type: Gypsum with metal studs, Full Height, Fixed Below, Fixed Above - Not Given - 0 - true - - NumLevels - Story Drift Ratio - Radian - false - - - Superior - Superior - Superior - NA - - false - 2012-09-27T16:36:29.2194343-07:00 - false - false - None - false - - Sequential - - - Screws pop-out, minor cracking of wall board, warping or cracking of tape. - - - Retape joints, paste and repaint both sides of 50 foot length of wall board. - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 1 - 2730 - 10 - 2660 - 0.435 - Normal - - - 1 - 8.04 - 10 - 7.81 - 0.435 - Normal - - - 0.0021 - 0.6 - - - - Moderate cracking or crushing of gypsum wall boards (typically in corners and in corners of openings). - - - MutuallyExclusive - - - Moderate cracking or crushing of gypsum wall boards (typically in corners and in corners of openings). - - - Remove 25 foot length of wall board (both sides), install new wall board (both sides), tape, paste and repaint. - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 1 - 5190 - 10 - 4320 - 0.193 - LogNormal - - - 1 - 15.3 - 10 - 12.7 - 0.193 - LogNormal - - - 0.8 - - - - Moderate cracking or crushing of gypsum wall boards (typically in corners and in corners of openings). - - - Remove full 100 foot length of wall board (both sides), install new wall board (both sides), tape, paste and repaint. - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 1 - 19800 - 10 - 16900 - 0.0969 - LogNormal - - - 1 - 58.1 - 10 - 49.8 - 0.0969 - LogNormal - - - 0.2 - - - 0.0071 - 0.45 - - - - Significant cracking and/or crushing of gypsum wall boards- buckling of studs and tearing of tracks. - - - MutuallyExclusive - - - Significant cracking and/or crushing of gypsum wall boards- buckling of studs and tearing of tracks. - - - Remove and replace 25 foot length of metal stud wall, both sides of the gypsum wall board and any embedded utilities, and tape, paste and repaint. - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 1 - 7940 - 10 - 6710 - 0.176 - LogNormal - - - 1 - 23.4 - 10 - 19.7 - 0.176 - LogNormal - - - 0.8 - - - - Significant cracking and/or crushing of gypsum wall boards- buckling of studs and tearing of tracks. - - - Remove and replace full 100 foot length of metal stud wall, both sides of the gypsum wall board and any embedded utilities, and tape, paste and repaint. - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 1 - 31100 - 10 - 26400 - 0.158 - LogNormal - - - 1 - 91.5 - 10 - 77.6 - 0.158 - LogNormal - - - 0.2 - - - 0.012 - 0.45 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/D1014.011.xml b/pelicun/tests/resources/io testing/P58 converter/source/DL xml/D1014.011.xml deleted file mode 100644 index 1dfac18d5..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/D1014.011.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - 702226b9-f9c7-4c36-ab33-180f5dff7472 - D1014.011 - Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor. - Each - Traction Elevator – Applies to most California Installations 1976 or later, most western states installations 1982 or later and most other U.S installations 1998 or later. - Not Given - 0 - false - - NumLevelsPlusOne - Acceleration - g - false - - - NA - NA - NA - NA - - true - 2012-10-12T16:48:11.2375683-07:00 - true - false - None - false - - Sequential - - - Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures. - D1014.010-DS1-1.JPG - - Simultaneous - - - Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures. - D1014.010-DS1-1.JPG - - Multiple repairs possible (% change of each): Reinstall or replace controller (4%), and or reinstall or replace motor generator (63%), and or Install new generator with appropriate anchors (23%), and or Install new governor (7%), and or Reinstall or replace rope guards (15%). - 0 - false - true - - 0 - 0 - 0 - 0 - 0 - 0 - - 1 - 1333 - 1 - 1333 - 0.92 - LogNormal - - - 1 - 3.9 - 1 - 3.9 - 0.92 - LogNormal - - - 0.26 - - - - Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted - D1014.010-DS2-6.JPG - - Multiple repairs possible (% change of each): Replace rail (62%), and or replace bracket or tie rod (28%), and or replace counterweight bracket 14%), and or replace intermediate bracket (28%), and or replace car guide shoes (35%), and or replace counterweight guide shoe (28%), and or repair or replace counterweight frame (28%), and or repair or replace tail sheave (1%) - 0 - false - true - - 0 - 0 - 0 - 0 - 0 - 0 - - 1 - 4630 - 1 - 4630 - 0.27 - LogNormal - - - 1 - 13.6 - 1 - 13.6 - 0.27 - LogNormal - - - 0.79 - - - - Cab stabilizers bent, or cab walls damaged, or cab doors damaged. - - - Multiple repairs possible (% change of each): Repair or replace cab walls (3%), and or repair or replace cab doors (17%), and or repair or replace cab stabilizers (92%) - 0 - false - true - - 0 - 0 - 0 - 0 - 0 - 0 - - 1 - 4450 - 1 - 4450 - 0.35 - Normal - - - 1 - 13.1 - 1 - 13.1 - 0.35 - Normal - - - 0.68 - - - - Cab ceiling damaged. - D1014.010-DS4-1.JPG - - Multiple repairs possible (% change of each): Repair or replace cab ceiling (100%) - 0 - true - true - - - Square Foot - 40 - - - 0.05 - 0.1 - 0.5 - 0.5 - 0 - 0 - - 1 - 200 - 1 - 2000 - 0.49 - Normal - - - 1 - 5.88 - 1 - 5.88 - 0.49 - Normal - - - 0.17 - - - 0.39 - 0.45 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/D2021.012a.xml b/pelicun/tests/resources/io testing/P58 converter/source/DL xml/D2021.012a.xml deleted file mode 100644 index 960d8ba92..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/source/DL xml/D2021.012a.xml +++ /dev/null @@ -1,110 +0,0 @@ - - - 271e37b6-86b7-4a0f-ab19-d60f5bcbb7cc - D2021.012a - Potable water. Costing based upon 1000 ft segments of large diameter welded steel pipes assumed, smaller dia pipes are deemed rugged - Each - Cold Water Piping (dia > 2.5 inches), SDC C, PIPING FRAGILITY - - 1 - false - - NumLevelsPlusOne - Acceleration - g - false - - - NA - NA - NA - NA - - true - 2012-10-12T16:49:03.3405683-07:00 - true - true - Yes -Import errors: - Warning: D2021.012a: Could not parse Correlation - Assuming Correlated -Warning: D2021.012a: Could not parse Demand Location - Using False -Warning, Data missing: D2021.012a:DS1: Could not parse dispersion - using 0.5 -Warning, Data missing: D2021.012a:DS2: Could not parse dispersion - using 0.5 - - false - - Sequential - - - Minor leakage at flange connections - 1 leak per 1000 feet of pipe - - - NO - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 250 - 700 - 500 - 210 - 0.6488 - LogNormal - - - 250 - 2.0594 - 500 - 0.6182 - 0.6483 - LogNormal - - - 1.5 - 0.5 - - - - Pipe Break - 1 break per 1000 feet of pipe - - - NO - 0 - false - false - - 0 - 0 - 0 - 0 - 0 - 0 - - 250 - 6700 - 500 - 2010 - 0.4038 - LogNormal - - - 250 - 19.7029 - 500 - 5.9088 - 0.4042 - LogNormal - - - 2.6 - 0.5 - - - \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/P58 converter/source/PACT_fragility_data.xlsx b/pelicun/tests/resources/io testing/P58 converter/source/PACT_fragility_data.xlsx deleted file mode 100644 index e0518301d..000000000 Binary files a/pelicun/tests/resources/io testing/P58 converter/source/PACT_fragility_data.xlsx and /dev/null differ diff --git a/pelicun/tests/resources/io testing/P58 converter/source/population.json b/pelicun/tests/resources/io testing/P58 converter/source/population.json deleted file mode 100644 index 411e36e0f..000000000 --- a/pelicun/tests/resources/io testing/P58 converter/source/population.json +++ /dev/null @@ -1,872 +0,0 @@ -{ - "Commercial Office": { - "peak": 4.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.25, - 0.5, - 0.75, - 1.0, - 1.0, - 0.5, - 0.5, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.91, - 0.95, - 1.0, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Elementary School": { - "peak": 14.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.5, - 0.5, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.73, - 0.9, - 1.0, - 0.77, - 0.95, - 0.77, - 0.0, - 0.0, - 0.95, - 0.95, - 0.81, - 0.64 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Middle School": { - "peak": 14.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.25, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.73, - 0.9, - 1.0, - 0.77, - 0.95, - 0.77, - 0.0, - 0.0, - 0.95, - 0.95, - 0.81, - 0.64 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "High School": { - "peak": 12.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.25, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.73, - 0.9, - 1.0, - 0.77, - 0.95, - 0.77, - 0.0, - 0.0, - 0.95, - 0.95, - 0.81, - 0.64 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Healthcare": { - "peak": 5.0, - "weekday": { - "daily": [ - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.6, - 0.8, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 0.6, - 0.4, - 0.4 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.4, - 0.5, - 0.65, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.65, - 0.5, - 0.4, - 0.4 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Hospitality": { - "peak": 2.5, - "weekday": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 0.7, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.5, - 0.5, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Multi-Unit Residential": { - "peak": 3.1, - "weekday": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.8, - 0.6, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.25, - 0.3, - 0.35, - 0.5, - 0.67, - 0.84, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.75, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.75, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Research Laboratories": { - "peak": 3.0, - "weekday": { - "daily": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.25, - 0.25, - 0.5, - 0.75, - 1.0, - 1.0, - 0.5, - 0.5, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.25, - 0.1, - 0.1, - 0.1, - 0.1 - ], - "monthly": [ - 0.91, - 0.95, - 1.0, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.1, - 0.1, - 0.1, - 0.1 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Retail": { - "peak": 6.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.1, - 0.2, - 0.4, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.6, - 0.4, - 0.2, - 0.5, - 0.0 - ], - "monthly": [ - 0.95, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.95, - 1.0, - 1.0, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.1, - 0.25, - 0.5, - 0.75, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.1, - 0.5, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Warehouse": { - "peak": 1.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.25, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.25, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.91, - 0.95, - 1.0, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_CMP_B1035.051.json b/pelicun/tests/resources/io testing/ref/ref_CMP_B1035.051.json deleted file mode 100644 index 3a3714e25..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_CMP_B1035.051.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "B1035.051": { - "ID": "B1035.051", - "name": "Pre-Northridge WUF-B beam-column joint, beam both sides of column, beam depth <= W27", - "description": "Costing is on a per bay basis. Costing does not include fireproofing removal or reapplication cost.", - "demand_type": "PID", - "directional": 1, - "correlation": 0, - "offset": 0, - "incomplete": 0, - "locations": [ - 1, 1 - ], - "csg_weights": [ - [0.6666666666666666, 0.3333333333333333], - [0.14285714285714285, 0.8571428571428571]], - "quantities": [3.0, 7.0], - "directions": [1, 2], - "distribution_kind": ["normal", "normal"], - "cov": [1.0, 1.0], - "unit": 1.0, - "DSG_set": { - "DSG-1": { - "theta": 0.017, - "sig": 0.4, - "distribution_kind": "lognormal", - "DS_set_kind": "mutually exclusive", - "DS_set": { - "DS-1": { - "description": "Fracture of lower beam flange weld and failure of web bolts (shear tab connection), with fractures confined to the weld region. ", - "weight": 0.75, - "repair_cost": { - "medians": [21096.0, - 14064.0], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.3584 - }, - "repair_time": { - "medians": [57.9118, - 38.6082], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.3585 - }, - "red_tag": { - "theta": 0.5, - "cov": 0.5 - } - }, - "DS-2": { - "description": "Similar to DS1, except that fracture propagates into column flanges.", - "weight": 0.25, - "repair_cost": { - "medians": [22896.0, - 15264.0], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.3578 - }, - "repair_time": { - "medians": [62.8553, - 41.9047], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.3578 - }, - "red_tag": { - "theta": 0.5, - "cov": 0.5 - } - } - } - }, - "DSG-2": { - "theta": 0.025, - "sig": 0.4, - "distribution_kind": "lognormal", - "DS_set_kind": "mutually exclusive", - "DS_set": { - "DS-1": { - "description": "Fracture of upper beam flange weld, without DS1 type damage. Fracture is confined to beam flange region. ", - "weight": 0.75, - "repair_cost": { - "medians": [29496.0, - 19664.0], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.3041 - }, - "repair_time": { - "medians": [80.9649, - 53.9751], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.3041 - }, - "red_tag": { - "theta": 0.5, - "cov": 0.5 - } - }, - "DS-2": { - "description": "Similar to DS3, except that fracture propagates into column flanges.", - "weight": 0.25, - "repair_cost": { - "medians": [28944.0, - 19296.0], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.318 - }, - "repair_time": { - "medians": [79.4524, - 52.9676], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.318 - }, - "red_tag": { - "theta": 0.5, - "cov": 0.5 - } - } - } - }, - "DSG-3": { - "theta": 0.03, - "sig": 0.4, - "distribution_kind": "lognormal", - "DS_set_kind": "single", - "DS_set": { - "DS-1": { - "description": "Fracture initiating at weld access hole and propagating through beam flange, possibly accompanied by local buckling deformations of web and flange. ", - "weight": 1.0, - "repair_cost": { - "medians": [22656.0, - 15104.0], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.3264 - }, - "repair_time": { - "medians": [62.2, - 41.5], - "quantities": [10.0, - 30.0], - "distribution_kind": "normal", - "cov": 0.326 - }, - "red_tag": { - "theta": 0.5, - "cov": 0.5 - } - } - } - } - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_CMP_B1071.011.json b/pelicun/tests/resources/io testing/ref/ref_CMP_B1071.011.json deleted file mode 100644 index b45e15535..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_CMP_B1071.011.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "B1071.011": { - "ID": "B1071.011", - "name": "Light framed wood walls with structural panel sheathing, stucco no hold-downs", - "description": "Costing for each 100 ft^2 Wall Panel. Assumed framing: 1 SIDE: 3/8\" OSB or 15/32 ply with 8d box nails at 4 to 6 inches along panel edges and 12 inches field nailing. DF #2, 2x4@16 studs. 1 SIDE: 1/2 gypsum board. Panel 8 feet tall, 8 or 16 feet long with or without door and window openings, double top plate, single bottom plate, with no hold-downs. Three layer 7/8\" stucco with 1/2-inch chop strand fibers applied over wire mesh fastened with 1.25 -inch long staples.", - "demand_type": "PID", - "directional": 1, - "correlation": 0, - "offset": 0, - "incomplete": 0, - "locations": [2, 2, 3, 3], - "quantities": [ - 4.645151999999999, - 4.645151999999999, - 4.645151999999999, - 4.645151999999999], - "csg_weights": [[1.0], [1.0], [1.0], [1.0]], - "directions": [1, 2, 1, 2], - "distribution_kind": ["normal", "normal", "normal", "normal"], - "cov": [0.1, 0.1, 0.1, 0.1], - "unit": 0.09290303999999998, - "DSG_set": { - "DSG-1": { - "theta": 0.0017, - "sig": 0.5, - "distribution_kind": "lognormal", - "DS_set_kind": "single", - "DS_set": { - "DS-1": { - "description": "Cracking of stucco.", - "weight": 1.0, - "repair_cost": { - "medians": [297.08392750118844, - 198.05595166745894], - "quantities": [83.61273599999997, - 278.7091199999999], - "distribution_kind": "lognormal", - "cov": 0.2566 - }, - "repair_time": { - "medians": [0.7720522385489218, - 0.5196277753666619], - "quantities": [83.61273599999997, - 278.7091199999999], - "distribution_kind": "lognormal", - "cov": 0.1899 - }, - "red_tag": { - "theta": 0.0, - "cov": 0.0 - } - } - } - }, - "DSG-2": { - "theta": 0.0035, - "sig": 0.4, - "distribution_kind": "lognormal", - "DS_set_kind": "single", - "DS_set": { - "DS-1": { - "description": "Spalling of stucco, separation of stucco and sheathing from studs. ", - "weight": 1.0, - "repair_cost": { - "medians": [355.20904375142095, - 236.80602916761396], - "quantities": [83.61273599999997, - 278.7091199999999], - "distribution_kind": "lognormal", - "cov": 0.3691 - }, - "repair_time": { - "medians": [0.9043837532119511, - 0.6025637051274104], - "quantities": [83.61273599999997, - 278.7091199999999], - "distribution_kind": "lognormal", - "cov": 0.3807 - }, - "red_tag": { - "theta": 0.35, - "cov": 0.5 - } - } - } - }, - "DSG-3": { - "theta": 0.017, - "sig": 0.4, - "distribution_kind": "lognormal", - "DS_set_kind": "single", - "DS_set": { - "DS-1": { - "description": "Fracture of studs, major sill plate cracking.", - "weight": 1.0, - "repair_cost": { - "medians": [581.2511625023252, - 387.5007750015501], - "quantities": [83.61273599999997, - 278.7091199999999], - "distribution_kind": "normal", - "cov": 0.1098 - }, - "repair_time": { - "medians": [1.4309650147078077, - 0.937095276968332], - "quantities": [83.61273599999997, - 278.7091199999999], - "distribution_kind": "normal", - "cov": 0.1097 - }, - "red_tag": { - "theta": 0.25, - "cov": 0.5 - } - } - } - } - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_CMP_C3032.001a.json b/pelicun/tests/resources/io testing/ref/ref_CMP_C3032.001a.json deleted file mode 100644 index 473d0d6db..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_CMP_C3032.001a.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "C3032.001a": { - "ID": "C3032.001a", - "name": "Suspended Ceiling, SDC A,B, Area (A): A < 250, Vert support only", - "description": "Costing for each 250 SF Unit, Suspended Lay-in Acoustic Tile Ceiling, Support: Vertical hanging wires only", - "demand_type": "PFA", - "directional": 0, - "correlation": 0, - "offset": 0, - "incomplete": 0, - "locations": [ - 1, 1 - ], - "csg_weights": [[0.2, 0.8], [0.4, 0.6]], - "quantities": [11.612879999999997, 11.612879999999997], - "directions": [ - 1, 2 - ], - "distribution_kind": ["normal", "normal"], - "cov": [1.0, 1.0], - "unit": 0.09290303999999998, - "DSG_set": { - "DSG-1": { - "theta": 8.825985, - "sig": 0.4, - "distribution_kind": "lognormal", - "DS_set_kind": "single", - "DS_set": { - "DS-1": { - "description": "5 % of tiles dislodge and fall.", - "weight": 1.0, - "repair_cost": { - "medians": [20.289971135497833, - 14.046903093806192], - "quantities": [23.225759999999994, - 232.25759999999994], - "distribution_kind": "normal", - "cov": 0.5508 - }, - "repair_time": { - "medians": [0.06851013702027406, - 0.04892412562602905], - "quantities": [23.225759999999994, - 232.25759999999994], - "distribution_kind": "normal", - "cov": 0.5852 - }, - "injuries": { - "theta": [ - 0.0, - 0.0 - ], - "cov": [ - 0.0, - 0.0 - ] - }, - "affected_area": 0.0 - } - } - }, - "DSG-2": { - "theta": 14.709975, - "sig": 0.4, - "distribution_kind": "lognormal", - "DS_set_kind": "single", - "DS_set": { - "DS-1": { - "description": "30% of tiles dislodge and fall and t-bar grid damaged.", - "weight": 1.0, - "repair_cost": { - "medians": [158.821498198552, - 109.95334490668984], - "quantities": [23.225759999999994, - 232.25759999999994], - "distribution_kind": "lognormal", - "cov": 0.5183 - }, - "repair_time": { - "medians": [0.5024851716370101, - 0.3491726427897301], - "quantities": [23.225759999999994, - 232.25759999999994], - "distribution_kind": "lognormal", - "cov": 0.5127 - }, - "injuries": { - "theta": [ - 0.0, - 0.0 - ], - "cov": [ - 0.0, - 0.0 - ] - }, - "affected_area": 0.0 - } - } - }, - "DSG-3": { - "theta": 21.57463, - "sig": 0.4, - "distribution_kind": "lognormal", - "DS_set_kind": "single", - "DS_set": { - "DS-1": { - "description": "Total ceiling collapse.", - "weight": 1.0, - "repair_cost": { - "medians": [326.7385006992237, - 226.20357740715488], - "quantities": [23.225759999999994, - 232.25759999999994], - "distribution_kind": "lognormal", - "cov": 0.2026 - }, - "repair_time": { - "medians": [1.0223174613015895, - 0.7069133582711612], - "quantities": [23.225759999999994, - 232.25759999999994], - "distribution_kind": "lognormal", - "cov": 0.2034 - }, - "injuries": { - "theta": [ - 0.1, - 0.0 - ], - "cov": [ - 0.5, - 0.0 - ] - }, - "affected_area": 1.0 - } - } - } - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_CMP_D1014.011.json b/pelicun/tests/resources/io testing/ref/ref_CMP_D1014.011.json deleted file mode 100644 index d1043bdd6..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_CMP_D1014.011.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "D1014.011": { - "ID": "D1014.011", - "name": "Traction Elevator \u2013 Applies to most California Installations 1976 or later, most western states installations 1982 or later and most other U.S installations 1998 or later.", - "description": "Costing per elevator. Elevator demand parameter shall be defined as the peak floor acceleration at the first floor. The elevator fragility for a multiple story building should only be entered once on the first floor.", - "demand_type": "PFA", - "directional": 0, - "correlation": 0, - "offset": -1, - "incomplete": 0, - "locations": [ - 1, 1 - ], - "csg_weights": [ - [0.6666666666666666, 0.3333333333333333], - [0.14285714285714285, 0.8571428571428571]], - "quantities": [3.0, 7.0], - "directions": [1, 2], - "distribution_kind": ["normal", "normal"], - "cov": [1.0, 1.0], - "unit": 1.0, - "DSG_set": { - "DSG-1": { - "theta": 3.8245934999999998, - "sig": 0.45, - "distribution_kind": "lognormal", - "DS_set_kind": "simultaneous", - "DS_set": { - "DS-1": { - "description": "Controller anchorage failed, and or machine anchorage failed, and or motor generator anchorage failed, and or governor anchorage failed, and or rope guard failures.", - "weight": 0.26, - "repair_cost": { - "medians": [1333.0, - 1333.0], - "quantities": [1.0, - 1.0], - "distribution_kind": "lognormal", - "cov": 0.92 - }, - "repair_time": { - "medians": [3.9, - 3.9], - "quantities": [1.0, - 1.0], - "distribution_kind": "lognormal", - "cov": 0.92 - }, - "injuries": { - "theta": [ - 0.0, - 0.0 - ], - "cov": [ - 0.0, - 0.0 - ] - }, - "affected_area": 0.0 - }, - "DS-2": { - "description": "Rail distortion, and or intermediate bracket separate and spread, and or counterweight bracket break or bend, and or car bracket break or bend, and or car guide shoes damaged, and or counterweight guide shoes damaged, and or counterweight frame distortion, and or tail sheave dislodged and/or twisted", - "weight": 0.79, - "repair_cost": { - "medians": [4630.0, - 4630.0], - "quantities": [1.0, - 1.0], - "distribution_kind": "lognormal", - "cov": 0.27 - }, - "repair_time": { - "medians": [13.6, - 13.6], - "quantities": [1.0, - 1.0], - "distribution_kind": "lognormal", - "cov": 0.27 - }, - "injuries": { - "theta": [ - 0.0, - 0.0 - ], - "cov": [ - 0.0, - 0.0 - ] - }, - "affected_area": 0.0 - }, - "DS-3": { - "description": "Cab stabilizers bent, or cab walls damaged, or cab doors damaged.", - "weight": 0.68, - "repair_cost": { - "medians": [4450.0, - 4450.0], - "quantities": [1.0, - 1.0], - "distribution_kind": "normal", - "cov": 0.35 - }, - "repair_time": { - "medians": [13.1, - 13.1], - "quantities": [1.0, - 1.0], - "distribution_kind": "normal", - "cov": 0.35 - }, - "injuries": { - "theta": [ - 0.0, - 0.0 - ], - "cov": [ - 0.0, - 0.0 - ] - }, - "affected_area": 0.0 - }, - "DS-4": { - "description": "Cab ceiling damaged.", - "weight": 0.17, - "repair_cost": { - "medians": [200.0, - 2000.0], - "quantities": [1.0, - 1.0], - "distribution_kind": "normal", - "cov": 0.49 - }, - "repair_time": { - "medians": [5.88, - 5.88], - "quantities": [1.0, - 1.0], - "distribution_kind": "normal", - "cov": 0.49 - }, - "injuries": { - "theta": [ - 0.1, - 0.05 - ], - "cov": [ - 0.5, - 0.5 - ] - }, - "affected_area": 3.7161215999999992 - } - } - } - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_DL_input_full.json b/pelicun/tests/resources/io testing/ref/ref_DL_input_full.json deleted file mode 100644 index e4766c461..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_DL_input_full.json +++ /dev/null @@ -1,165 +0,0 @@ -{ - "general": { - "plan_area": 111.484, - "stories": 3, - "realizations": 20000, - "collapse_limits": { - "DWD": null, - "RDR": null, - "PFA": 1.5, - "PGA": null, - "PGV": null, - "PID": 0.1, - "PMD": null, - "PRD": null, - "RID": null, - "SA": null, - "SD": null, - "SV": null - }, - "coupled_assessment": false, - "irreparable_res_drift": { - "Median": 0.1, - "Beta": 0.3, - "YieldDriftRatio": 0.01 - }, - "replacement_cost": 450000.0, - "replacement_time": 180.0, - "detection_limits": { - "DWD": null, - "RDR": null, - "PFA": 2.0, - "PGA": null, - "PGV": null, - "PID": 0.15, - "PMD": null, - "PRD": null, - "RID": null, - "SA": null, - "SD": null, - "SV": null - }, - "event_time": null, - "yield_drift": 0.01, - "added_uncertainty": { - "beta_gm": 0.2, - "beta_m": 0.1 - }, - "occupancy_type": "Multi-Unit Residential", - "population": [ - 0.0, - 2.0, - 2.0 - ], - "response": { - "coll_prob": "estimated", - "CP_est_basis": "raw EDP", - "EDP_dist_basis": "all results", - "EDP_distribution": "lognormal"} - }, - "unit_names": { - "acceleration": "mps2", - "area": "m2", - "force": "N", - "length": "m", - "speed": "mps", - "temperature": "C", - "time": "sec", - "volume": "m3" - }, - "units": { - "force": 1.0, - "length": 1.0, - "temperature": 1.0, - "time": 1.0, - "area": 1.0, - "volume": 1.0, - "speed": 1.0, - "acceleration": 1.0 - }, - "components": { - "B1071.011": { - "cov": ["0.01", "0.01", "0.01", "0.01"], - "directions": [1, 2, 1, 2], - "distribution": ["normal", "normal", "normal", "normal"], - "locations": [2, 2, 3, 3], - "quantities": [718.2, 541.8, 718.2,541.8], - "csg_weights": [[0.5, 0.5], [0.5, 0.5], [0.5, 0.5], [0.5, 0.5]], - "unit": "ft2" - }, - "B3011.012": { - "cov": ["0.01"], - "directions": [1], - "distribution": ["normal"], - "locations": [4], - "quantities": [1410.0], - "csg_weights": [[1.0]], - "unit": "ft2" - }, - "C1011.011a": { - "cov": ["0.01", "0.01", "0.01", "0.01"], - "directions": [1, 2, 1, 2], - "distribution": ["normal", "normal", "normal", "normal"], - "locations": [2, 2, 3, 3], - "quantities": [80.94, 61.06, 80.94, 61.06], - "csg_weights": [[0.5, 0.5], [0.5, 0.5], [0.5, 0.5], [0.5, 0.5]], - "unit": "ft" - } - }, - "collapse_modes": { - "complete": { - "w": 0.2, - "injuries": [ - 0.1, - 0.9 - ], - "affected_area": [ - 1.0, - 1.0, - 1.0 - ] - }, - "partial": { - "w": 0.8, - "injuries": [ - 0.4, - 0.5 - ], - "affected_area": [ - 1.0, - 0.2, - 0.2 - ] - } - }, - "decision_variables": { - "injuries": true, - "rec_cost": true, - "rec_time": true, - "red_tag": true - }, - "dependencies": { - "quantities": "FG", - "fragilities": "ATC", - "injuries": "DIR", - "rec_costs": "PG", - "rec_times": "LOC", - "red_tags": "DS", - "cost_and_time": false, - "injury_lvls": true - }, - "damage_logic": null, - "GI": { - "height": 8, - "PlanArea": 111.484, - "NumberOfStories": 3, - "type": "W1", - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - }, - "year": 1945 - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_DL_input_injuries_missing_data.json b/pelicun/tests/resources/io testing/ref/ref_DL_input_injuries_missing_data.json deleted file mode 100644 index fd9ac779c..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_DL_input_injuries_missing_data.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "GI": { - "plan_area": 111.484, - "stories": 3, - "realizations": 20000, - "collapse_limits": { - "PID": null, - "PGV": null, - "PFA": null - }, - "coupled_assessment": false, - "detection_limits": { - "PFA": null, - "PGV": null, - "PID": null - }, - "added_uncertainty": { - "beta_gm": 0.0001, - "beta_m": 0.0001 - }, - "response": { - "coll_prob": "estimated", - "CP_est_basis": "raw EDP", - "EDP_dist_basis": "all results", - "EDP_distribution": "lognormal"} - }, - "units": { - "force": 1.0, - "length": 1.0, - "temperature": 1.0, - "time": 1.0, - "area": 1.0, - "volume": 1.0, - "speed": 1.0, - "acceleration": 1.0 - }, - "components": { - "B1071.011": { - "cov": ["0.01", "0.01", "0.01", "0.01"], - "directions": [1, 2, 1, 2], - "distribution": ["normal", "normal", "normal", "normal"], - "locations": [2, 2, 3, 3], - "quantities": [718.2, 541.8, 718.2, 541.8], - "csg_weights": [[0.5, 0.5], [0.5, 0.5], [0.5, 0.5], [0.5, 0.5]], - "unit": "ft2" - } - }, - "collapse_modes": { - "complete": { - "w": 0.2, - "injuries": [ - 0.1, - 0.9 - ], - "affected_area": [1.0, 1.0, 1.0] - } - }, - "decision_variables": { - "injuries": true, - "rec_cost": false, - "rec_time": false, - "red_tag": false - }, - "dependencies": { - "quantities": "FG", - "fragilities": "ATC", - "injuries": "DIR", - "injury_lvls": false, - "rec_costs": "IND", - "rec_times": "IND", - "red_tags": "IND" - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_DL_input_injuries_missing_pop.json b/pelicun/tests/resources/io testing/ref/ref_DL_input_injuries_missing_pop.json deleted file mode 100644 index aee715c3c..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_DL_input_injuries_missing_pop.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "general": { - "plan_area": 100.0, - "stories": 3, - "realizations": 20000, - "collapse_limits": { - "DWD": null, - "RDR": null, - "PFA": null, - "PGA": null, - "PGV": null, - "PID": null, - "PMD": null, - "PRD": null, - "RID": null, - "SA": null, - "SD": null, - "SV": null - }, - "coupled_assessment": false, - "detection_limits": { - "DWD": null, - "RDR": null, - "PFA": null, - "PGA": null, - "PGV": null, - "PID": null, - "PMD": null, - "PRD": null, - "RID": null, - "SA": null, - "SD": null, - "SV": null - }, - "event_time": null, - "added_uncertainty": { - "beta_gm": null, - "beta_m": null - }, - "occupancy_type": "Multi-Unit Residential", - "population": [ - 1.0, - 2.0, - 0 - ], - "response": { - "coll_prob": "estimated", - "CP_est_basis": "raw EDP", - "EDP_dist_basis": "all results", - "EDP_distribution": "lognormal"} - }, - "units": { - "force": 1.0, - "length": 1.0, - "temperature": 1.0, - "time": 1.0, - "area": 1.0, - "volume": 1.0, - "speed": 1.0, - "acceleration": 1.0 - }, - "unit_names": { - "acceleration": "mps2", - "area": "m2", - "force": "N", - "length": "m", - "speed": "mps", - "temperature": "C", - "time": "sec", - "volume": "m3" - }, - "components": { - "B1071.011": { - "cov": ["0.01", "0.01", "0.01", "0.01"], - "directions": [1, 2, 1, 2], - "distribution": ["normal", "normal", "normal", "normal"], - "locations": [2, 2, 3, 3], - "quantities": [718.2, 541.8, 718.2, 541.8], - "csg_weights": [[0.5, 0.5], [0.5, 0.5], [0.5, 0.5], [0.5, 0.5]], - "unit": "ft2" - } - }, - "collapse_modes": { - "complete": { - "w": 0.2, - "injuries": [ - 0.1, - 0.9 - ], - "affected_area": [ - 1.0, - 1.0, - 1.0 - ] - } - }, - "decision_variables": { - "injuries": true, - "rec_cost": false, - "rec_time": false, - "red_tag": false - }, - "dependencies": { - "quantities": "FG", - "fragilities": "ATC", - "injuries": "DIR", - "injury_lvls": true, - "rec_costs": "IND", - "rec_times": "IND", - "red_tags": "IND" - }, - "damage_logic": null, - "GI": { - "PlanArea": 100.0, - "NumberOfStories": 3, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_DL_input_min.json b/pelicun/tests/resources/io testing/ref/ref_DL_input_min.json deleted file mode 100644 index 3315f563e..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_DL_input_min.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "general": { - "plan_area": 100.0, - "stories": 3, - "realizations": 20000, - "collapse_limits": { - "DWD": null, - "RDR": null, - "PFA": null, - "PGA": null, - "PGV": null, - "PID": null, - "PMD": null, - "PRD": null, - "RID": null, - "SA": null, - "SD": null, - "SV": null - }, - "detection_limits": { - "DWD": null, - "RDR": null, - "PFA": null, - "PGA": null, - "PGV": null, - "PID": null, - "PMD": null, - "PRD": null, - "RID": null, - "SA": null, - "SD": null, - "SV": null - }, - "coupled_assessment": false, - "added_uncertainty": { - "beta_gm": null, - "beta_m": null - }, - "response": { - "coll_prob": "estimated", - "CP_est_basis": "raw EDP", - "EDP_dist_basis": "all results", - "EDP_distribution": "lognormal"} - }, - "unit_names": { - "acceleration": "mps2", - "area": "m2", - "force": "N", - "length": "m", - "speed": "mps", - "volume": "m3" - }, - "units": { - "force": 1.0, - "length": 1.0, - "area": 1.0, - "volume": 1.0, - "speed": 1.0, - "acceleration": 1.0 - }, - "components": {}, - "collapse_modes": {}, - "decision_variables": { - "injuries": false, - "rec_cost": true, - "rec_time": true, - "red_tag": false - }, - "dependencies": { - "quantities": "IND", - "fragilities": "ATC", - "rec_costs": "IND", - "rec_times": "IND", - "cost_and_time": false, - "injuries": "IND", - "rec_times": "IND", - "red_tags": "IND" - }, - "damage_logic": null, - "GI": { - "PlanArea": 100.0, - "NumberOfStories": 3 - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_DL_input_ns_units.json b/pelicun/tests/resources/io testing/ref/ref_DL_input_ns_units.json deleted file mode 100644 index a9de87d66..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_DL_input_ns_units.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "general": { - "plan_area": 10.357202511359997, - "stories": 3, - "realizations": 20000, - "collapse_limits": { - "DWD": null, - "RDR": null, - "PFA": 14.709975, - "PGA": null, - "PGV": null, - "PID": 0.1, - "PMD": null, - "PRD": null, - "RID": null, - "SA": null, - "SD": null, - "SV": null - }, - "coupled_assessment": false, - "detection_limits": { - "DWD": null, - "RDR": null, - "PFA": 19.6133, - "PGA": null, - "PGV": null, - "PID": 0.15, - "PMD": null, - "PRD": null, - "RID": null, - "SA": null, - "SD": null, - "SV": null - }, - "added_uncertainty": { - "beta_gm": null, - "beta_m": null - }, - "response": { - "coll_prob": "estimated", - "CP_est_basis": "raw EDP", - "EDP_dist_basis": "all results", - "EDP_distribution": "lognormal"} - }, - "unit_names": { - "acceleration": "g", - "area": "ft2", - "force": "N", - "length": "ft", - "speed": "mph", - "temperature": "C", - "time": "sec", - "volume": "ft3" - }, - "units": { - "force": 1.0, - "length": 0.30479999999999996, - "temperature": 1.0, - "time": 1.0, - "speed": 0.44703999999999994, - "acceleration": 9.80665, - "area": 0.09290303999999998, - "volume": 0.02831684659199999 - }, - "components": {}, - "collapse_modes": {}, - "decision_variables": { - "injuries": false, - "rec_cost": true, - "rec_time": false, - "red_tag": false - }, - "dependencies": { - "quantities": "IND", - "fragilities": "ATC", - "rec_costs": "IND", - "cost_and_time": false, - "injuries": "IND", - "rec_costs": "IND", - "rec_times": "IND", - "red_tags": "IND" - }, - "damage_logic": null, - "GI": { - "PlanArea": 111.484, - "NumberOfStories": 3, - "units": { - "force": "N", - "length": "ft", - "temperature": "C", - "time": "sec", - "speed": "mph", - "acceleration": "g" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_EDP_input.json b/pelicun/tests/resources/io testing/ref/ref_EDP_input.json deleted file mode 100644 index 71ca17cbf..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_EDP_input.json +++ /dev/null @@ -1,197 +0,0 @@ -{ - "PFA": [ - { - "raw_data": [ - 84.1160412, - 84.1160412, - 30.681952200000005, - 30.681952200000005, - 84.1160412, - 84.1160412, - 30.681952200000005, - 84.1160412, - 30.681952200000005, - 84.1160412, - 30.681952200000005, - 84.1160412, - 84.1160412, - 30.681952200000005, - 84.1160412, - 30.681952200000005, - 30.681952200000005, - 30.681952200000005, - 84.1160412, - 30.681952200000005 - ], - "location": "1", - "direction": "1", - "scenario_id": "1" - }, - { - "raw_data": [ - 99.720612, - 99.89621100000001, - 38.455396199999996, - 38.7743193, - 99.01821600000001, - 99.605835, - 38.881935, - 98.48651400000001, - 38.5445691, - 99.31545900000002, - 38.470699800000006, - 98.820054, - 99.77260500000001, - 38.4594183, - 99.15457500000001, - 38.4366591, - 38.4654024, - 38.4675606, - 99.469476, - 38.4693264 - ], - "location": "2", - "direction": "1", - "scenario_id": "1" - }, - { - "raw_data": [ - 114.38361900000001, - 114.35713200000001, - 41.5066005, - 41.8209129, - 114.625926, - 114.410106, - 41.881440600000005, - 115.160571, - 41.71192380000001, - 114.46406100000002, - 41.6420766, - 114.72795, - 114.372828, - 41.6662092, - 114.55137, - 41.424294599999996, - 41.60214990000001, - 41.622849, - 114.42384000000003, - 41.5666377 - ], - "location": "3", - "direction": "1", - "scenario_id": "1" - }, - { - "raw_data": [ - 119.80266300000001, - 119.807568, - 36.0254592, - 35.4954249, - 119.74380300000001, - 119.793834, - 35.382021300000005, - 119.63981700000001, - 35.693194500000004, - 119.76832800000001, - 35.8144461, - 119.727126, - 119.80560600000001, - 35.7687315, - 119.75557500000001, - 36.073430099999996, - 35.9021475, - 35.8476039, - 119.78010000000002, - 35.945703900000005 - ], - "location": "4", - "direction": "1", - "scenario_id": "1" - } - ], - "PID": [ - { - "raw_data": [ - 0.12567899999999999, - 0.125644, - 0.0395693, - 0.039025699999999997, - 0.12583, - 0.12570499999999998, - 0.0389103, - 0.12608699999999998, - 0.039224, - 0.12576199999999998, - 0.0393398, - 0.125865, - 0.12567, - 0.0392949, - 0.125802, - 0.0396253, - 0.0394367, - 0.039374099999999995, - 0.125729, - 0.0394797 - ], - "location": "1", - "direction": "1", - "scenario_id": "1" - }, - { - "raw_data": [ - 0.0251271, - 0.0251267, - 0.00933846, - 0.00929492, - 0.0251279, - 0.0251275, - 0.00928493, - 0.0251202, - 0.00931102, - 0.025127700000000003, - 0.00932089, - 0.025127, - 0.0251268, - 0.00931711, - 0.0251279, - 0.00934292, - 0.00932835, - 0.00932358, - 0.025127200000000002, - 0.00933171 - ], - "location": "2", - "direction": "1", - "scenario_id": "1" - } - ], - "RD": [ - { - "raw_data": [ - 0.028837, - 0.028837900000000003, - 0.008786799999999999, - 0.00865507, - 0.0288316, - 0.028836200000000003, - 0.00862792, - 0.0288217, - 0.00870299, - 0.0288344, - 0.00873306, - 0.028830500000000002, - 0.028837, - 0.00872161, - 0.0288327, - 0.00879992, - 0.00875504, - 0.008741200000000001, - 0.028835400000000004, - 0.00876573 - ], - "location": "1", - "direction": "1", - "scenario_id": "1" - } - ] -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/ref/ref_POP_data.json b/pelicun/tests/resources/io testing/ref/ref_POP_data.json deleted file mode 100644 index 563ad2015..000000000 --- a/pelicun/tests/resources/io testing/ref/ref_POP_data.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "peak": 0.0430556416668389, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.25, - 0.5, - 0.75, - 1.0, - 1.0, - 0.5, - 0.5, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.91, - 0.95, - 1.0, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_full.json b/pelicun/tests/resources/io testing/test/test_DL_input_full.json deleted file mode 100644 index 71abbdd9e..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_full.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "GeneralInformation": { - "height": 8, - "PlanArea": 111.484, - "NumberOfStories": 3, - "type": "W1", - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - }, - "year": 1945 - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "Realizations": "20000" - }, - "DetectionLimits": { - "PFA": "2.0", - "PID": "0.15" - }, - "AdditionalUncertainty": { - "GroundMotion": "0.2", - "Modeling": "0.1" - } - }, - "DamageModel":{ - "IrreparableResidualDrift":{ - "YieldDriftRatio":"0.01", - "Median": "0.10", - "Beta": "0.3" - }, - "CollapseLimits":{ - "PFA": "1.5", - "PID": "0.1" - } - }, - "LossModel":{ - "ReplacementCost": "450000", - "ReplacementTime": "180", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Multi-Unit Residential", - "PeakPopulation": "0, 2, 2" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0, 1.0, 1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "0.2" - }, - { - "affected_area": "1.0, 0.2, 0.2", - "injuries": "0.4, 0.5", - "name": "partial", - "weight": "0.8" - } - ], - "Components": { - "B1071.011": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "359.1, 359.1", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "270.9, 270.9", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ], - "B3011.012": [ - { - "location": "4", - "direction": "1", - "median_quantity": "1410.0", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ], - "C1011.011a": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "40.47, 40.47", - "unit": "ft", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "30.53, 30.53", - "unit": "ft", - "distribution": "normal", - "cov": "0.01" - } - ] - }, - "Dependencies": { - "CostAndTime": false, - "Fragilities": "per ATC recommendation", - "Injuries": "btw. Directions", - "InjurySeverities": true, - "Quantities": "btw. Fragility Groups", - "ReconstructionCosts": "btw. Performance Groups", - "ReconstructionTimes": "btw. Floors", - "RedTagProbabilities": "btw. Damage States" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_injuries_missing_data.json b/pelicun/tests/resources/io testing/test/test_DL_input_injuries_missing_data.json deleted file mode 100644 index 535b362aa..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_injuries_missing_data.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 111.484, - "NumberOfStories": 3, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "Realizations": "20000" - } - }, - "LossModel":{ - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": false, - "ReconstructionTime": false, - "RedTag": false - } - }, - "CollapseModes": [ - { - "affected_area": "1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "0.2" - } - ], - "Components": { - "B1071.011": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "359.1, 359.1", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "270.9, 270.9", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ] - }, - "Dependencies": { - "Fragilities": "per ATC recommendation", - "Injuries": "btw. Directions", - "Quantities": "btw. Fragility Groups" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_injuries_missing_pop.json b/pelicun/tests/resources/io testing/test/test_DL_input_injuries_missing_pop.json deleted file mode 100644 index 820d8f55d..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_injuries_missing_pop.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 3, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "Realizations": "20000" - } - }, - "LossModel":{ - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": false, - "ReconstructionTime": false, - "RedTag": false - }, - "Inhabitants": { - "OccupancyType": "Multi-Unit Residential", - "PeakPopulation": "1, 2" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0, 1.0, 1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "0.2" - } - ], - "Components": { - "B1071.011": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "359.1, 359.1", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "270.9, 270.9", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ] - }, - "Dependencies": { - "Fragilities": "per ATC recommendation", - "Injuries": "btw. Directions", - "InjurySeverities": true, - "Quantities": "btw. Fragility Groups" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_injuries_only.json b/pelicun/tests/resources/io testing/test/test_DL_input_injuries_only.json deleted file mode 100644 index 5734f0c08..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_injuries_only.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "GeneralInformation": { - "NumberOfStories": 2, - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - } - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "Realizations": "20000" - } - }, - "LossModel":{ - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": false, - "ReconstructionTime": false, - "RedTag": false - }, - "Inhabitants": { - "OccupancyType": "Multi-Unit Residential", - "PeakPopulation": "2" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0, 1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "0.2" - } - ], - "Components": { - "B1071.011": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "359.1, 359.1", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "270.9, 270.9", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ] - } - "Dependencies": { - "Fragilities": "per ATC recommendation", - "Injuries": "btw. Directions", - "InjurySeverities": true, - "Quantities": "btw. Fragility Groups" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_min.json b/pelicun/tests/resources/io testing/test/test_DL_input_min.json deleted file mode 100644 index ab7fbbad5..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_min.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 100.0, - "NumberOfStories": 3 - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "Realizations": "20000" - } - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_no_realizations.json b/pelicun/tests/resources/io testing/test/test_DL_input_no_realizations.json deleted file mode 100644 index 0d815710e..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_no_realizations.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "GeneralInformation": { - "height": 8, - "PlanArea": 111.484, - "NumberOfStories": 3, - "type": "W1", - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - }, - "year": 1945 - }, - "DamageAndLoss": { - "ResponseModel":{ - "DetectionLimits": { - "PFA": "2.0", - "PID": "0.15" - }, - "AdditionalUncertainty": { - "GroundMotion": "0.2", - "Modeling": "0.1" - } - }, - "DamageModel":{ - "IrrepairableResidualDrift":{ - "YieldDriftRatio":"0.01", - "Median": "0.10", - "Beta": "0.3" - }, - "CollapseLimits": { - "PFA": "1.5", - "PID": "0.1" - } - }, - "LossModel":{ - "ReplacementCost": "450000", - "ReplacementTime": "180", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Multi-Unit Residential", - "PeakPopulation": "0, 2, 2" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0, 1.0, 1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "0.2" - }, - { - "affected_area": "1.0, 0.2, 0.2", - "injuries": "0.4, 0.5", - "name": "partial", - "weight": "0.8" - } - ], - "Components": { - "B1071.011": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "359.1, 359.1", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "270.9, 270.9", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ], - "B3011.012": [ - { - "location": "4", - "direction": "1", - "median_quantity": "1410.0", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ], - "C1011.011a": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "40.47, 40.47", - "unit": "ft", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "30.53, 30.53", - "unit": "ft", - "distribution": "normal", - "cov": "0.01" - } - ] - }, - "Dependencies": { - "CostAndTime": false, - "Fragilities": "per ATC recommendation", - "Injuries": "btw. Directions", - "InjurySeverities": true, - "Quantities": "btw. Fragility Groups", - "ReconstructionCosts": "btw. Performance Groups", - "ReconstructionTimes": "btw. Floors", - "RedTagProbabilities": "btw. Damage States" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_ns_units.json b/pelicun/tests/resources/io testing/test/test_DL_input_ns_units.json deleted file mode 100644 index 91a2d333d..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_ns_units.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "GeneralInformation": { - "PlanArea": 111.484, - "NumberOfStories": 3, - "units": { - "force": "N", - "length": "ft", - "temperature": "C", - "time": "sec", - "speed": "mph", - "acceleration": "g" - } - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "Realizations": "20000" - }, - "DetectionLimits": { - "PFA": "2.0", - "PID": "0.15" - } - }, - "DamageModel":{ - "CollapseLimits": { - "PFA": "1.5", - "PID": "0.1" - } - }, - "LossModel":{ - "DecisionVariables": { - "Injuries": false, - "ReconstructionCost": true, - "ReconstructionTime": false, - "RedTag": false - } - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_unknown_comp_unit.json b/pelicun/tests/resources/io testing/test/test_DL_input_unknown_comp_unit.json deleted file mode 100644 index b94ae8dec..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_unknown_comp_unit.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "GeneralInformation": { - "height": 8, - "PlanArea": 111.484, - "NumberOfStories": 3, - "type": "W1", - "units": { - "force": "N", - "length": "m", - "temperature": "C", - "time": "sec" - }, - "year": 1945 - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "Realizations": "20000" - }, - "DetectionLimits": { - "PFA": "2.0", - "PID": "0.15" - }, - "AdditionalUncertainty": { - "GroundMotion": "0.2", - "Modeling": "0.1" - } - }, - "DamageModel":{ - "IrrepairableResidualDrift": { - "YieldDriftRatio": "0.01", - "Median": "0.10", - "Beta": "0.3" - }, - "CollapseLimits": { - "PFA": "1.5", - "PID": "0.1" - } - }, - "LossModel":{ - "ReplacementCost": "450000", - "ReplacementTime": "180", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Multi-Unit Residential", - "PeakPopulation": "0, 2, 2" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0, 1.0, 1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "0.2" - }, - { - "affected_area": "1.0, 0.2, 0.2", - "injuries": "0.4, 0.5", - "name": "partial", - "weight": "0.8" - } - ], - "Components": { - "B1071.011": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "359.1, 359.1", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "270.9, 270.9", - "unit": "la", - "distribution": "normal", - "cov": "0.01" - } - ], - "B3011.012": [ - { - "location": "4", - "direction": "1", - "median_quantity": "1410.0", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ], - "C1011.011a": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "40.47, 40.47", - "unit": "ft", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "30.53, 30.53", - "unit": "ft", - "distribution": "normal", - "cov": "0.01" - } - ] - }, - "Dependencies": { - "CostAndTime": false, - "Fragilities": "per ATC recommendation", - "Injuries": "btw. Directions", - "InjurySeverities": true, - "Quantities": "btw. Fragility Groups", - "ReconstructionCosts": "btw. Performance Groups", - "ReconstructionTimes": "btw. Floors", - "RedTagProbabilities": "btw. Damage States" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_DL_input_unknown_unit.json b/pelicun/tests/resources/io testing/test/test_DL_input_unknown_unit.json deleted file mode 100644 index 9316a5407..000000000 --- a/pelicun/tests/resources/io testing/test/test_DL_input_unknown_unit.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "GeneralInformation": { - "height": 8, - "PlanArea": 111.484, - "NumberOfStories": 3, - "type": "W1", - "units": { - "force": "N", - "length": "m", - "temperature": "K", - "time": "sec" - }, - "year": 1945 - }, - "DamageAndLoss": { - "ResponseModel":{ - "ResponseDescription": { - "Realizations": "2000" - }, - "DetectionLimits": { - "PFA": "2.0", - "PID": "0.15" - }, - "AdditionalUncertainty": { - "GroundMotion": "0.2", - "Modeling": "0.1" - } - }, - "DamageModel":{ - "IrrepairableResidualDrift": { - "YieldDriftRatio": "0.01", - "Median": "0.10", - "Sig": "0.3" - }, - "CollapseLimits": { - "PFA": "1.5", - "PID": "0.1" - } - }, - "LossModel":{ - "ReplacementCost": "450000", - "ReplacementTime": "180", - "DecisionVariables": { - "Injuries": true, - "ReconstructionCost": true, - "ReconstructionTime": true, - "RedTag": true - }, - "Inhabitants": { - "OccupancyType": "Multi-Unit Residential", - "PeakPopulation": "0, 2, 2" - } - }, - "CollapseModes": [ - { - "affected_area": "1.0, 1.0, 1.0", - "injuries": "0.1, 0.9", - "name": "complete", - "weight": "0.2" - }, - { - "affected_area": "1.0, 0.2, 0.2", - "injuries": "0.4, 0.5", - "name": "partial", - "weight": "0.8" - } - ], - "Components": { - "B1071.011": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "359.1, 359.1", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "270.9, 270.9", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ], - "B3011.012": [ - { - "location": "4", - "direction": "1", - "median_quantity": "1410.0", - "unit": "ft2", - "distribution": "normal", - "cov": "0.01" - } - ], - "C1011.011a": [ - { - "location": "2, 3", - "direction": "1", - "median_quantity": "40.47, 40.47", - "unit": "ft", - "distribution": "normal", - "cov": "0.01" - }, - { - "location": "2, 3", - "direction": "2", - "median_quantity": "30.53, 30.53", - "unit": "ft", - "distribution": "normal", - "cov": "0.01" - } - ] - }, - "Dependencies": { - "CostAndTime": false, - "Fragilities": "per ATC recommendation", - "Injuries": "btw. Directions", - "InjurySeverities": true, - "Quantities": "btw. Fragility Groups", - "ReconstructionCosts": "btw. Performance Groups", - "ReconstructionTimes": "btw. Floors", - "RedTagProbabilities": "btw. Damage States" - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/io testing/test/test_EDP_input.out b/pelicun/tests/resources/io testing/test/test_EDP_input.out deleted file mode 100644 index 789386781..000000000 --- a/pelicun/tests/resources/io testing/test/test_EDP_input.out +++ /dev/null @@ -1,21 +0,0 @@ -%eval_id E MultipleEvent 1-PFA-1-1 1-PFA-2-1 1-PID-1-1 1-PFA-3-1 1-PID-2-1 1-PFA-4-1 1-RD-1-1 -1 30000.39436 GM_A 8.57452 10.1652 0.125679 11.6599 0.0251271 12.2123 0.028837 -2 29999.99777 GM_A 8.57452 10.1831 0.125644 11.6572 0.0251267 12.2128 0.0288379 -3 30000.66128 GM_B 3.12762 3.92002 0.0395693 4.23105 0.00933846 3.67232 0.0087868 -4 29998.98172 GM_B 3.12762 3.95253 0.0390257 4.26309 0.00929492 3.61829 0.00865507 -5 29999.69046 GM_A 8.57452 10.0936 0.12583 11.6846 0.0251279 12.2063 0.0288316 -6 30000.93837 GM_A 8.57452 10.1535 0.125705 11.6626 0.0251275 12.2114 0.0288362 -7 29998.77967 GM_B 3.12762 3.9635 0.0389103 4.26926 0.00928493 3.60673 0.00862792 -8 29999.43955 GM_A 8.57452 10.0394 0.126087 11.7391 0.0251202 12.1957 0.0288217 -9 30000.68937 GM_B 3.12762 3.92911 0.039224 4.25198 0.00931102 3.63845 0.00870299 -10 29997.54856 GM_A 8.57452 10.1239 0.125762 11.6681 0.0251277 12.2088 0.0288344 -11 29999.84989 GM_B 3.12762 3.92158 0.0393398 4.24486 0.00932089 3.65081 0.00873306 -12 29998.59584 GM_A 8.57452 10.0734 0.125865 11.695 0.025127 12.2046 0.0288305 -13 30001.74667 GM_A 8.57452 10.1705 0.12567 11.6588 0.0251268 12.2126 0.028837 -14 30000.26508 GM_B 3.12762 3.92043 0.0392949 4.24732 0.00931711 3.64615 0.00872161 -15 29999.56832 GM_A 8.57452 10.1075 0.125802 11.677 0.0251279 12.2075 0.0288327 -16 30000.25104 GM_B 3.12762 3.91811 0.0396253 4.22266 0.00934292 3.67721 0.00879992 -17 30001.06876 GM_B 3.12762 3.92104 0.0394367 4.24079 0.00932835 3.65975 0.00875504 -18 30000.04845 GM_B 3.12762 3.92126 0.0393741 4.2429 0.00932358 3.65419 0.0087412 -19 29999.24325 GM_A 8.57452 10.1396 0.125729 11.664 0.0251272 12.21 0.0288354 -20 30001.54675 GM_B 3.12762 3.92144 0.0394797 4.23717 0.00933171 3.66419 0.00876573 diff --git a/pelicun/tests/resources/io testing/test/test_POP_data.json b/pelicun/tests/resources/io testing/test/test_POP_data.json deleted file mode 100644 index ccaacbb79..000000000 --- a/pelicun/tests/resources/io testing/test/test_POP_data.json +++ /dev/null @@ -1,176 +0,0 @@ -{ - "Commercial Office": { - "peak": 4.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.25, - 0.5, - 0.75, - 1.0, - 1.0, - 0.5, - 0.5, - 1.0, - 1.0, - 0.75, - 0.5, - 0.25, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.91, - 0.95, - 1.0, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 1.0, - 0.95, - 0.95 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Elementary School": { - "peak": 14.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.5, - 0.5, - 0.5, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.73, - 0.9, - 1.0, - 0.77, - 0.95, - 0.77, - 0.0, - 0.0, - 0.95, - 0.95, - 0.81, - 0.64 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/population data/population_test.json b/pelicun/tests/resources/population data/population_test.json deleted file mode 100644 index cff9f0950..000000000 --- a/pelicun/tests/resources/population data/population_test.json +++ /dev/null @@ -1,263 +0,0 @@ -{ - "Some Other Occupancy": { - "peak": 0.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "Hospitality": { - "peak": 100.0, - "weekday": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 0.5, - 1.0, - 0.5, - 1.0, - 0.5, - 1.0, - 0.5, - 1.0, - 0.5, - 1.0, - 0.5 - ] - }, - "weekend": { - "daily": [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 - ], - "monthly": [ - 1.0, - 0.5, - 1.0, - 0.5, - 1.0, - 0.5, - 1.0, - 0.5, - 1.0, - 0.5, - 1.0, - 0.5 - ] - } - }, - "Yet Another Occupancy": { - "peak": 0.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - } -} \ No newline at end of file diff --git a/pelicun/tests/resources/population data/population_test_det.json b/pelicun/tests/resources/population data/population_test_det.json deleted file mode 100644 index 892fda5fe..000000000 --- a/pelicun/tests/resources/population data/population_test_det.json +++ /dev/null @@ -1,263 +0,0 @@ -{ - "Some Other Occupancy": { - "peak": 0.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - }, - "Hospitality": { - "peak": 100.0, - "weekday": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - }, - "weekend": { - "daily": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ], - "monthly": [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 - ] - } - }, - "Yet Another Occupancy": { - "peak": 0.0, - "weekday": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "weekend": { - "daily": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "monthly": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ] - } - } -} \ No newline at end of file diff --git a/pelicun/tests/test_control.py b/pelicun/tests/test_control.py deleted file mode 100644 index 67822ea2f..000000000 --- a/pelicun/tests/test_control.py +++ /dev/null @@ -1,4591 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of pelicun. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# pelicun. If not, see . -# -# Contributors: -# Adam Zsarnóczay - -""" -These are unit and integration tests on the control module of pelicun. - -""" - -import pytest -import numpy as np -from numpy.testing import assert_allclose -from scipy.stats import truncnorm as tnorm -from copy import deepcopy - -import os, sys, inspect -current_dir = os.path.dirname( - os.path.abspath(inspect.getfile(inspect.currentframe()))) -parent_dir = os.path.dirname(current_dir) -sys.path.insert(0,os.path.dirname(parent_dir)) - -from pelicun.control import * -from pelicun.uq import mvn_orthotope_density as mvn_od -from pelicun.tests.test_pelicun import prob_allclose, prob_approx - -# ----------------------------------------------------------------------------- -# FEMA_P58_Assessment -# ----------------------------------------------------------------------------- - -def test_FEMA_P58_Assessment_central_tendencies(): - """ - Perform a loss assessment with customized inputs that reduce the - dispersion of calculation parameters to negligible levels. This allows us - to test the results against pre-defined reference values in spite of the - randomness involved in the calculations. - - """ - - base_input_path = 'resources/' - DL_input = base_input_path + 'input data/' + "DL_input_test.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values())[0] - assert RV_EDP.theta[0] == pytest.approx(0.5 * g) - assert RV_EDP.theta[1] == pytest.approx(0.5 * g * 1e-6, abs=1e-7) - assert RV_EDP._distribution == 'lognormal' - - # QNT - assert A._QNT_dict is None - #RV_QNT = A._RV_dict['QNT'] - #assert RV_QNT is None - - # FRG - RV_FRG = list(A._FF_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_FRG]).T - assert_allclose(thetas, np.array([0.444, 0.6, 0.984]) * g, rtol=0.01) - assert_allclose(betas, np.array([0.3, 0.4, 0.5]), rtol=0.01) - - rho = RV_FRG[0].RV_set.Rho() - assert_allclose(rho, np.ones((3, 3)), rtol=0.01) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_FRG]) - - # RED - RV_RED = list(A._DV_RED_dict.values()) - - mus, sigmas = np.array([rv.theta for rv in RV_RED]).T - assert_allclose(mus, np.ones(2), rtol=0.01) - assert_allclose(sigmas, np.array([1e-4, 1e-4]), rtol=0.01) - - rho = RV_RED[0].RV_set.Rho() - assert_allclose(rho, np.array([[1, 0], [0, 1]]), rtol=0.01) - - assert np.all([rv.distribution == 'normal' for rv in RV_RED]) - - assert_allclose (RV_RED[0].truncation_limits, [0., 2.], rtol=0.01) - assert_allclose (RV_RED[1].truncation_limits, [0., 4.], rtol=0.01) - - # INJ - RV_INJ = list(A._DV_INJ_dict.values()) - - mus, sigmas = np.array([rv.theta for rv in RV_INJ]).T - assert_allclose(mus, np.ones(4), rtol=0.01) - assert_allclose(sigmas, np.ones(4) * 1e-4, rtol=0.01) - - rho = RV_INJ[0].RV_set.Rho() - rho_target = np.zeros((4, 4)) - np.fill_diagonal(rho_target, 1.) - assert_allclose(rho, rho_target, rtol=0.01) - - assert np.all([rv.distribution == 'normal' for rv in RV_INJ]) - - assert_allclose(RV_INJ[0].truncation_limits, [0., 10./3.], rtol=0.01) - assert_allclose(RV_INJ[1].truncation_limits, [0., 10./3.], rtol=0.01) - assert_allclose(RV_INJ[2].truncation_limits, [0., 10.], rtol=0.01) - assert_allclose(RV_INJ[3].truncation_limits, [0., 10.], rtol=0.01) - - # REP - RV_REP = list(A._DV_REP_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_REP]).T - assert_allclose(thetas, np.ones(6), rtol=0.01) - assert_allclose(betas, np.ones(6) * 1e-4, rtol=0.01) - - rho = RV_REP[0].RV_set.Rho() - rho_target = np.zeros((6, 6)) - np.fill_diagonal(rho_target, 1.) - assert_allclose(rho, rho_target, rtol=0.01) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_REP]) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - # QNT (deterministic) - QNT = A._FG_dict['T0001.001']._performance_groups[0]._quantity - assert QNT == pytest.approx(50., rel=0.01) - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - # TIME - T_check = A._TIME.describe().T.loc[['hour','month','weekday?'],:] - - assert_allclose(T_check['mean'], np.array([11.5, 5.5, 5. / 7.]), rtol=0.05) - assert_allclose(T_check['min'], np.array([0., 0., 0.]), rtol=0.01) - assert_allclose(T_check['max'], np.array([23., 11., 1.]), rtol=0.01) - assert_allclose(T_check['50%'], np.array([12., 5., 1.]), atol=1.0) - assert_allclose(T_check['count'], np.array([10000., 10000., 10000.]), - rtol=0.01) - - # POP - P_CDF = A._POP.describe(np.arange(1, 27) / 27.).iloc[:, 0].values[4:] - vals, counts = np.unique(P_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 2.5, 5., 10.]), rtol=0.01) - assert_allclose(counts, np.array([14, 2, 7, 5]), atol=1) - - # COL - COL_check = A._COL.describe().T - assert COL_check['mean'].values[0] == pytest.approx(0.5, rel=0.05) - assert len(A._ID_dict['non-collapse']) == pytest.approx(5000, rel=0.05) - assert len(A._ID_dict['collapse']) == pytest.approx(5000, rel=0.05) - - # DMG - DMG_check = A._DMG.describe().T - assert_allclose(DMG_check['mean'], np.array([17.074, 17.074, 7.9361]), - rtol=0.1, atol=1.0) - assert_allclose(DMG_check['min'], np.zeros(3), rtol=0.01) - assert_allclose(DMG_check['max'], np.ones(3) * 50.0157, rtol=0.05) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - - # RED - DV_RED = A._DV_dict['red_tag'].describe().T - assert_allclose(DV_RED['mean'], np.array([0.341344, 0.1586555]), rtol=0.1) - - # INJ - collapse - DV_INJ_C = deepcopy(A._COL[['INJ-0', 'INJ-1']]) - DV_INJ_C.dropna(inplace=True) - NC_count = DV_INJ_C.describe().T['count'][0] - assert_allclose(NC_count, np.ones(2) * 5000, rtol=0.05) - # lvl 1 - vals, counts = np.unique(DV_INJ_C.iloc[:, 0].values, return_counts=True) - assert_allclose(vals, np.array([0., 2.5, 5., 10.]) * 0.1, rtol=0.01) - assert_allclose(counts / NC_count, np.array([14, 2, 7, 5]) / 28., atol=0.01, rtol=0.1) - # lvl 2 - vals, counts = np.unique(DV_INJ_C.iloc[:, 1].values, return_counts=True) - assert_allclose(vals, np.array([0., 2.5, 5., 10.]) * 0.9, rtol=0.01) - assert_allclose(counts / NC_count, np.array([14, 2, 7, 5]) / 28., atol=0.01, rtol=0.1) - - # INJ - non-collapse - DV_INJ_NC = deepcopy(A._DV_dict['injuries']) - DV_INJ_NC[0].dropna(inplace=True) - assert_allclose(DV_INJ_NC[0].describe().T['count'], np.ones(2) * 5000, - rtol=0.05) - # lvl 1 DS2 - I_CDF = DV_INJ_NC[0].iloc[:, 0] - I_CDF = np.around(I_CDF, decimals=3) - vals, counts = np.unique(I_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 0.075, 0.15, 0.3]), rtol=0.01) - target_prob = np.array( - [0.6586555, 0., 0., 0.] + 0.3413445 * np.array([14, 2, 7, 5]) / 28.) - assert_allclose(counts / NC_count, target_prob, atol=0.01, rtol=0.1) - # lvl 1 DS3 - I_CDF = DV_INJ_NC[0].iloc[:, 1] - I_CDF = np.around(I_CDF, decimals=3) - vals, counts = np.unique(I_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 0.075, 0.15, 0.3]), rtol=0.01) - target_prob = np.array( - [0.8413445, 0., 0., 0.] + 0.1586555 * np.array([14, 2, 7, 5]) / 28.) - assert_allclose(counts / NC_count, target_prob, atol=0.01, rtol=0.1) - # lvl 2 DS2 - I_CDF = DV_INJ_NC[1].iloc[:, 0] - I_CDF = np.around(I_CDF, decimals=3) - vals, counts = np.unique(I_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 0.025, 0.05, 0.1]), rtol=0.01) - target_prob = np.array( - [0.6586555, 0., 0., 0.] + 0.3413445 * np.array([14, 2, 7, 5]) / 28.) - assert_allclose(counts / NC_count, target_prob, atol=0.01, rtol=0.1) - # lvl2 DS3 - I_CDF = DV_INJ_NC[1].iloc[:, 1] - I_CDF = np.around(I_CDF, decimals=3) - vals, counts = np.unique(I_CDF, return_counts=True) - assert_allclose(vals, np.array([0., 0.025, 0.05, 0.1]), rtol=0.01) - target_prob = np.array( - [0.8413445, 0., 0., 0.] + 0.1586555 * np.array([14, 2, 7, 5]) / 28.) - assert_allclose(counts / NC_count, target_prob, atol=0.01, rtol=0.1) - - # REP - assert len(A._ID_dict['non-collapse']) == len(A._ID_dict['repairable']) - assert len(A._ID_dict['irreparable']) == 0 - # cost - DV_COST = A._DV_dict['rec_cost'] - # DS1 - C_CDF = DV_COST.iloc[:, 0] - C_CDF = np.around(C_CDF / 10., decimals=0) * 10. - vals, counts = np.unique(C_CDF, return_counts=True) - assert_allclose(vals, [0, 2500], rtol=0.01) - t_prob = 0.3413445 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # DS2 - C_CDF = DV_COST.iloc[:, 1] - C_CDF = np.around(C_CDF / 100., decimals=0) * 100. - vals, counts = np.unique(C_CDF, return_counts=True) - assert_allclose(vals, [0, 25000], rtol=0.01) - t_prob = 0.3413445 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # DS3 - C_CDF = DV_COST.iloc[:, 2] - C_CDF = np.around(C_CDF / 1000., decimals=0) * 1000. - vals, counts = np.unique(C_CDF, return_counts=True) - assert_allclose(vals, [0, 250000], rtol=0.01) - t_prob = 0.1586555 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # time - DV_TIME = A._DV_dict['rec_time'] - # DS1 - T_CDF = DV_TIME.iloc[:, 0] - T_CDF = np.around(T_CDF, decimals=1) - vals, counts = np.unique(T_CDF, return_counts=True) - assert_allclose(vals, [0, 2.5], rtol=0.01) - t_prob = 0.3413445 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # DS2 - T_CDF = DV_TIME.iloc[:, 1] - T_CDF = np.around(T_CDF, decimals=0) - vals, counts = np.unique(T_CDF, return_counts=True) - assert_allclose(vals, [0, 25], rtol=0.01) - t_prob = 0.3413445 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - # DS3 - T_CDF = DV_TIME.iloc[:, 2] - T_CDF = np.around(T_CDF / 10., decimals=0) * 10. - vals, counts = np.unique(T_CDF, return_counts=True) - assert_allclose(vals, [0, 250], rtol=0.01) - t_prob = 0.1586555 - assert_allclose(counts / NC_count, [1. - t_prob, t_prob], rtol=0.1) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - assert_allclose(S[('event time', 'month')], A._TIME['month'] + 1) - assert_allclose(S[('event time', 'weekday?')], A._TIME['weekday?']) - assert_allclose(S[('event time', 'hour')], A._TIME['hour']) - assert_allclose(S[('inhabitants', '')], A._POP.iloc[:, 0]) - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == pytest.approx(0.5, - rel=0.05) - assert SD.loc[('collapses', 'mode'), 'mean'] == 0. - assert SD.loc[('collapses', 'mode'), 'count'] == pytest.approx(5000, - rel=0.05) - - assert SD.loc[('red tagged', ''), 'mean'] == pytest.approx(0.5, rel=0.05) - assert SD.loc[('red tagged', ''), 'count'] == pytest.approx(5000, rel=0.05) - - for col in ['irreparable', 'cost impractical', 'time impractical']: - assert SD.loc[('reconstruction', col), 'mean'] == 0. - assert SD.loc[('reconstruction', col), 'count'] == pytest.approx(5000, - rel=0.05) - - RC = deepcopy(S.loc[:, ('reconstruction', 'cost')]) - RC_CDF = np.around(RC / 1000., decimals=0) * 1000. - vals, counts = np.unique(RC_CDF, return_counts=True) - assert_allclose(vals, np.array([0, 2., 3., 25., 250., 300.]) * 1000.) - t_prob1 = 0.3413445 / 2. - t_prob2 = 0.1586555 / 2. - assert_allclose(counts / 10000., - [t_prob2, t_prob1 / 2., t_prob1 / 2., t_prob1, t_prob2, - 0.5], atol=0.01, rtol=0.1) - - RT = deepcopy(S.loc[:, ('reconstruction', 'time-parallel')]) - RT_CDF = np.around(RT, decimals=0) - vals, counts = np.unique(RT_CDF, return_counts=True) - assert_allclose(vals, np.array([0, 2., 3., 25., 250., 300.])) - t_prob1 = 0.3413445 / 2. - t_prob2 = 0.1586555 / 2. - assert_allclose(counts / 10000., - [t_prob2, t_prob1 / 2., t_prob1 / 2., t_prob1, t_prob2, - 0.5], atol=0.01, rtol=0.1) - - assert_allclose(S.loc[:, ('reconstruction', 'time-parallel')], - S.loc[:, ('reconstruction', 'time-sequential')]) - - CAS = deepcopy(S.loc[:, ('injuries', 'sev1')]) - CAS_CDF = np.around(CAS, decimals=3) - vals, counts = np.unique(CAS_CDF, return_counts=True) - assert_allclose(vals, [0, 0.075, 0.15, 0.25, 0.3, 0.5, 1.]) - assert_allclose(counts / 10000., - np.array([35, 1, 3.5, 2, 2.5, 7, 5]) / 56., atol=0.01, - rtol=0.1) - - CAS = deepcopy(S.loc[:, ('injuries', 'sev2')]) - CAS_CDF = np.around(CAS, decimals=3) - vals, counts = np.unique(CAS_CDF, return_counts=True) - assert_allclose(vals, [0, 0.025, 0.05, 0.1, 2.25, 4.5, 9.]) - assert_allclose(counts / 10000., - np.array([35, 1, 3.5, 2.5, 2, 7, 5]) / 56., atol=0.01, - rtol=0.1) - -def test_FEMA_P58_Assessment_EDP_uncertainty_basic(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - """ - - base_input_path = 'resources/' - DL_input = base_input_path + 'input data/' + "DL_input_test_2.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_2.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - assert_allclose(thetas, [9.80665, 12.59198, 0.074081, 0.044932], rtol=0.02) - assert_allclose(betas, [0.25, 0.25, 0.3, 0.4], rtol=0.02) - - rho = RV_EDP[0].RV_set.Rho() - rho_target = [ - [1.0, 0.6, 0.3, 0.3], - [0.6, 1.0, 0.3, 0.3], - [0.3, 0.3, 1.0, 0.7], - [0.3, 0.3, 0.7, 1.0]] - assert_allclose(rho, rho_target, atol=0.05) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - # COL - COL_check = A._COL.describe().T - col_target = 1.0 - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer( - [0.3, 0.4], [0.3, 0.4]), - upper=np.log([0.1, 0.1]))[0] - assert COL_check['mean'].values[0] == pytest.approx(col_target, rel=0.1) - - # DMG - DMG_check = [len(np.where(A._DMG.iloc[:, i] > 0.0)[0]) / 10000. for i in - range(8)] - - DMG_1_PID = mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([0.05488, 1e-6]), upper=np.log([0.1, 0.1]))[ - 0] - DMG_2_PID = mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([1e-6, 0.05488]), upper=np.log([0.1, 0.1]))[ - 0] - DMG_1_PFA = mvn_od(np.log([0.074081, 9.80665]), - np.array([[1, 0.3], [0.3, 1]]) * np.outer([0.3, 0.25], - [0.3, 0.25]), - lower=np.log([1e-6, 9.80665]), - upper=np.log([0.1, np.inf]))[0] - DMG_2_PFA = mvn_od(np.log([0.074081, 12.59198]), - np.array([[1, 0.3], [0.3, 1]]) * np.outer([0.3, 0.25], - [0.3, 0.25]), - lower=np.log([1e-6, 9.80665]), - upper=np.log([0.1, np.inf]))[0] - - assert DMG_check[0] == pytest.approx(DMG_check[1], rel=0.01) - assert DMG_check[2] == pytest.approx(DMG_check[3], rel=0.01) - assert DMG_check[4] == pytest.approx(DMG_check[5], rel=0.01) - assert DMG_check[6] == pytest.approx(DMG_check[7], rel=0.01) - - assert DMG_check[0] == pytest.approx(DMG_1_PID, rel=0.10) - assert DMG_check[2] == pytest.approx(DMG_2_PID, rel=0.10) - assert DMG_check[4] == pytest.approx(DMG_1_PFA, rel=0.10) - assert DMG_check[6] == pytest.approx(DMG_2_PFA, rel=0.10) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - # COST - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - - C_target = [0., 250., 1250.] - T_target = [0., 0.25, 1.25] - - # PG 1011 and 1012 - P_target = [ - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([1e-6, 1e-6]), upper=np.log([0.05488, 0.1]))[0], - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([0.05488, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - ] - - for i in [0, 1]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(P_target, P_test, atol=0.02) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 1021 and 1022 - P_target = [ - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([1e-6, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - mvn_od(np.log([0.074081, 0.044932]), - np.array([[1, 0.7], [0.7, 1]]) * np.outer([0.3, 0.4], - [0.3, 0.4]), - lower=np.log([1e-6, 0.05488]), upper=np.log([0.05488, 0.1]))[0], - ] - - for i in [2, 3]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(P_target, P_test, atol=0.02) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 2011 and 2012 - P_target = [ - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 9.80665, np.inf]))[0], - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 9.80665, 9.80665]), - upper=np.log([0.1, np.inf, np.inf]))[0], - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 9.80665, 1e-6]), - upper=np.log([0.1, np.inf, 9.80665]))[0], - ] - - for i in [4, 5]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(P_target, P_test, atol=0.02) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 2021 and 2022 - P_target = [ - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, np.inf, 9.80665]))[0], - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 9.80665, 9.80665]), - upper=np.log([0.1, np.inf, np.inf]))[0], - mvn_od(np.log([0.074081, 9.80665, 12.59198]), - np.array([[1.0, 0.3, 0.3], [0.3, 1.0, 0.6], - [0.3, 0.6, 1.0]]) * np.outer([0.3, 0.25, 0.25], - [0.3, 0.25, 0.25]), - lower=np.log([1e-6, 1e-6, 9.80665]), - upper=np.log([0.1, 9.80665, np.inf]))[0], - ] - - for i in [6, 7]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(P_target, P_test, atol=0.02) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # RED TAG - RED_check = A._DV_dict['red_tag'].describe().T - RED_check = (RED_check['mean'] * RED_check['count'] / 10000.).values - - assert RED_check[0] == pytest.approx(RED_check[1], rel=0.01) - assert RED_check[2] == pytest.approx(RED_check[3], rel=0.01) - assert RED_check[4] == pytest.approx(RED_check[5], rel=0.01) - assert RED_check[6] == pytest.approx(RED_check[7], rel=0.01) - - assert RED_check[0] == pytest.approx(DMG_1_PID, rel=0.10) - assert RED_check[2] == pytest.approx(DMG_2_PID, rel=0.10) - assert RED_check[4] == pytest.approx(DMG_1_PFA, rel=0.10) - assert RED_check[6] == pytest.approx(DMG_2_PFA, rel=0.10) - - DMG_on = np.where(A._DMG > 0.0)[0] - RED_on = np.where(A._DV_dict['red_tag'] > 0.0)[0] - assert_allclose(DMG_on, RED_on) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log([0.074081, 0.044932, 9.80665, 12.59198]), - np.array( - [[1.0, 0.7, 0.3, 0.3], [0.7, 1.0, 0.3, 0.3], - [0.3, 0.3, 1.0, 0.6], - [0.3, 0.3, 0.6, 1.0]]) * np.outer( - [0.3, 0.4, 0.25, 0.25], - [0.3, 0.4, 0.25, 0.25]), - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [0.05488, 0.05488, 9.80665, 9.80665]))[0] - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / 10000. - -def test_FEMA_P58_Assessment_EDP_uncertainty_detection_limit(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - This test differs from the basic case in having unreliable EDP values above - a certain limit - a typical feature of interstory drifts in dynamic - simulations. Such cases should not be a problem if the limits can be - estimated and they are specified as detection limits in input file. - """ - - base_input_path = 'resources/' - DL_input = base_input_path + 'input data/' + "DL_input_test_3.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_3.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_theta_target = [9.80665, 12.59198, 0.074081, 0.044932] - EDP_beta_target = [0.25, 0.25, 0.3, 0.4] - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.025) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - rho = RV_EDP[0].RV_set.Rho() - EDP_rho_test = rho - EDP_rho_target = [ - [1.0, 0.6, 0.3, 0.3], - [0.6, 1.0, 0.3, 0.3], - [0.3, 0.3, 1.0, 0.7], - [0.3, 0.3, 0.7, 1.0]] - EDP_COV_test = EDP_rho_test * np.outer(EDP_beta_test, EDP_beta_test) - assert_allclose(EDP_rho_test, EDP_rho_target, atol=0.15) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - # COL - COL_check = A._COL.describe().T - - col_target = 1.0 - mvn_od(np.log(EDP_theta_test[2:]), - EDP_COV_test[2:, 2:], - upper=np.log([0.1, 0.1]))[0] - - assert COL_check['mean'].values[0] == prob_approx(col_target, 0.03) - - # DMG - DMG_check = [len(np.where(A._DMG.iloc[:, i] > 0.0)[0]) / 10000. - for i in range(8)] - - DMG_1_PID = mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 1e-6]), - upper=np.log([0.1, 0.1]))[0] - - DMG_2_PID = mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 0.05488]), - upper=np.log([0.1, 0.1]))[0] - - DMG_1_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0] - - DMG_2_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0] - - assert DMG_check[0] == pytest.approx(DMG_check[1], rel=0.01) - assert DMG_check[2] == pytest.approx(DMG_check[3], rel=0.01) - assert DMG_check[4] == pytest.approx(DMG_check[5], rel=0.01) - assert DMG_check[6] == pytest.approx(DMG_check[7], rel=0.01) - - assert DMG_check[0] == prob_approx(DMG_1_PID, 0.03) - assert DMG_check[2] == prob_approx(DMG_2_PID, 0.03) - assert DMG_check[4] == prob_approx(DMG_1_PFA, 0.03) - assert DMG_check[6] == prob_approx(DMG_2_PFA, 0.03) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - # COST - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - - C_target = [0., 250., 1250.] - T_target = [0., 0.25, 1.25] - - # PG 1011 and 1012 - P_target = [ - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 1e-6]), upper=np.log([0.05488, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - ] - - for i in [0, 1]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 1021 and 1022 - P_target = [ - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 0.05488]), upper=np.log([0.05488, 0.1]))[0], - ] - - for i in [2, 3]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 2011 and 2012 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([9.80665, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, 9.80665, 0.1, 0.1]))[0], - ] - - for i in [4, 5]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 2021 and 2022 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, 9.80665, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6]), - upper=np.log([9.80665, np.inf, 0.1, 0.1]))[0], - ] - - for i in [6, 7]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # RED TAG - RED_check = A._DV_dict['red_tag'].describe().T - RED_check = (RED_check['mean'] * RED_check['count'] / 10000.).values - - assert RED_check[0] == pytest.approx(RED_check[1], rel=0.01) - assert RED_check[2] == pytest.approx(RED_check[3], rel=0.01) - assert RED_check[4] == pytest.approx(RED_check[5], rel=0.01) - assert RED_check[6] == pytest.approx(RED_check[7], rel=0.01) - - assert RED_check[0] == prob_approx(DMG_1_PID, 0.03) - assert RED_check[2] == prob_approx(DMG_2_PID, 0.03) - assert RED_check[4] == prob_approx(DMG_1_PFA, 0.03) - assert RED_check[6] == prob_approx(DMG_2_PFA, 0.03) - - DMG_on = np.where(A._DMG > 0.0)[0] - RED_on = np.where(A._DV_dict['red_tag'] > 0.0)[0] - assert_allclose(DMG_on, RED_on) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([9.80665, 9.80665, 0.05488, 0.05488]))[0] - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = ((1.0 - SD.loc[('red tagged', ''), 'mean']) - * SD.loc[('red tagged', ''), 'count'] / 10000.) - - assert P_no_RED_target == prob_approx(P_no_RED_test, 0.04) - -def test_FEMA_P58_Assessment_EDP_uncertainty_failed_analyses(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - Here we use EDP results with unique values assigned to failed analyses. - In particular, PID=1.0 and PFA=100.0 are used when an analysis fails. - These values shall be handled by detection limits of 10 and 100 for PID - and PFA, respectively. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_4.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_4.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_theta_target = [9.80665, 12.59198, 0.074081, 0.044932] - EDP_beta_target = [0.25, 0.25, 0.3, 0.4] - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.025) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - rho = RV_EDP[0].RV_set.Rho() - EDP_rho_test = rho - EDP_rho_target = [ - [1.0, 0.6, 0.3, 0.3], - [0.6, 1.0, 0.3, 0.3], - [0.3, 0.3, 1.0, 0.7], - [0.3, 0.3, 0.7, 1.0]] - EDP_COV_test = EDP_rho_test * np.outer(EDP_beta_test, EDP_beta_test) - assert_allclose(EDP_rho_test, EDP_rho_target, atol=0.15) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - # COL - COL_check = A._COL.describe().T - col_target = 1.0 - mvn_od(np.log(EDP_theta_test[2:]), - EDP_COV_test[2:,2:], - upper=np.log([0.1, 0.1]))[0] - - assert COL_check['mean'].values[0] == prob_approx(col_target, 0.03) - - # DMG - DMG_check = [len(np.where(A._DMG.iloc[:, i] > 0.0)[0]) / 10000. - for i in range(8)] - - DMG_1_PID = mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:,2:], - lower=np.log([0.05488, 1e-6]), - upper=np.log([0.1, 0.1]))[0] - - DMG_2_PID = mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 0.05488]), - upper=np.log([0.1, 0.1]))[0] - - DMG_1_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0] - - DMG_2_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0] - - assert DMG_check[0] == pytest.approx(DMG_check[1], rel=0.01) - assert DMG_check[2] == pytest.approx(DMG_check[3], rel=0.01) - assert DMG_check[4] == pytest.approx(DMG_check[5], rel=0.01) - assert DMG_check[6] == pytest.approx(DMG_check[7], rel=0.01) - - assert DMG_check[0] == prob_approx(DMG_1_PID, 0.03) - assert DMG_check[2] == prob_approx(DMG_2_PID, 0.03) - assert DMG_check[4] == prob_approx(DMG_1_PFA, 0.03) - assert DMG_check[6] == prob_approx(DMG_2_PFA, 0.03) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - # COST - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - - C_target = [0., 250., 1250.] - T_target = [0., 0.25, 1.25] - - # PG 1011 and 1012 - P_target = [ - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 1e-6]), upper=np.log([0.05488, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - ] - - for i in [0, 1]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 1021 and 1022 - P_target = [ - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 1e-6]), upper=np.log([0.1, 0.05488]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([0.05488, 0.05488]), upper=np.log([0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test[2:]), EDP_COV_test[2:, 2:], - lower=np.log([1e-6, 0.05488]), upper=np.log([0.05488, 0.1]))[0], - ] - - for i in [2, 3]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 2011 and 2012 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([9.80665, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, 9.80665, 0.1, 0.1]))[0], - ] - - for i in [4, 5]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # PG 2021 and 2022 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, 9.80665, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 9.80665, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, 0.1, 0.1]))[0], - - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6]), - upper=np.log([9.80665, np.inf, 0.1, 0.1]))[0], - ] - - for i in [6, 7]: - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, i].values / 10., decimals=0) * 10., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique( - np.around(DV_TIME.iloc[:, i].values * 100., decimals=0) / 100., - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / 10000. - - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - prob_allclose(P_target, P_test, 0.04) - - # RED TAG - RED_check = A._DV_dict['red_tag'].describe().T - RED_check = (RED_check['mean'] * RED_check['count'] / 10000.).values - - assert RED_check[0] == pytest.approx(RED_check[1], rel=0.01) - assert RED_check[2] == pytest.approx(RED_check[3], rel=0.01) - assert RED_check[4] == pytest.approx(RED_check[5], rel=0.01) - assert RED_check[6] == pytest.approx(RED_check[7], rel=0.01) - - assert RED_check[0] == prob_approx(DMG_1_PID, 0.03) - assert RED_check[2] == prob_approx(DMG_2_PID, 0.03) - assert RED_check[4] == prob_approx(DMG_1_PFA, 0.03) - assert RED_check[6] == prob_approx(DMG_2_PFA, 0.03) - - DMG_on = np.where(A._DMG > 0.0)[0] - RED_on = np.where(A._DV_dict['red_tag'] > 0.0)[0] - assert_allclose(DMG_on, RED_on) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([9.80665, 9.80665, 0.05488, 0.05488]))[0] - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = ((1.0 - SD.loc[('red tagged', ''), 'mean']) - * SD.loc[('red tagged', ''), 'count'] / 10000.) - - assert P_no_RED_target == prob_approx(P_no_RED_test, 0.04) - -def test_FEMA_P58_Assessment_EDP_uncertainty_3D(): - """ - . - - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - In this test we look at the propagation of EDP values provided for two - different directions. (3D refers to the numerical model used for response - estimation.) - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_5.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_5.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_theta_target = [9.80665, 8.65433, 12.59198, 11.11239, - 0.074081, 0.063763, 0.044932, 0.036788] - EDP_beta_target = [0.25, 0.25, 0.25, 0.25, 0.3, 0.3, 0.4, 0.4] - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.05) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - rho = RV_EDP[0].RV_set.Rho() - EDP_rho_test = rho - EDP_rho_target = np.array([ - [1.0, 0.8, 0.6, 0.5, 0.3, 0.3, 0.3, 0.3], - [0.8, 1.0, 0.5, 0.6, 0.3, 0.3, 0.3, 0.3], - [0.6, 0.5, 1.0, 0.8, 0.3, 0.3, 0.3, 0.3], - [0.5, 0.6, 0.8, 1.0, 0.3, 0.3, 0.3, 0.3], - [0.3, 0.3, 0.3, 0.3, 1.0, 0.8, 0.7, 0.6], - [0.3, 0.3, 0.3, 0.3, 0.8, 1.0, 0.6, 0.7], - [0.3, 0.3, 0.3, 0.3, 0.7, 0.6, 1.0, 0.8], - [0.3, 0.3, 0.3, 0.3, 0.6, 0.7, 0.8, 1.0]]) - large_rho_ids = np.where(EDP_rho_target >= 0.5) - small_rho_ids = np.where(EDP_rho_target < 0.5) - assert_allclose(EDP_rho_test[large_rho_ids], EDP_rho_target[large_rho_ids], - atol=0.1) - assert_allclose(EDP_rho_test[small_rho_ids], EDP_rho_target[small_rho_ids], - atol=0.2) - - EDP_COV_test = EDP_rho_test * np.outer(EDP_beta_test, EDP_beta_test) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - theta_PID = np.log(EDP_theta_target[4:]) - COV_PID = EDP_COV_test[4:, 4:] - - # COL - COL_check = A._COL.describe().T - col_target = 1.0 - mvn_od(theta_PID, COV_PID, - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - - assert COL_check['mean'].values[0] == pytest.approx(col_target, rel=0.1, abs=0.05) - - # DMG - realization_count = float(A._AIM_in['general']['realizations']) - DMG_check = [len(np.where(A._DMG.iloc[:, i] > 0.0)[0]) / realization_count for i in - range(8)] - - DMG_1_1_PID = mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - DMG_1_2_PID = mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - DMG_2_1_PID = mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 1e-6, 0.05488, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - DMG_2_2_PID = mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 1e-6, 1e-6, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0] - DMG_1_1_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([9.80665, 1e-6, 1e-6, 1e-6, - 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, np.inf, np.inf, - 0.1, 0.1, 0.1, 0.1]))[0] - DMG_1_2_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 9.80665, 1e-6, 1e-6, - 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, np.inf, np.inf, - 0.1, 0.1, 0.1, 0.1]))[0] - DMG_2_1_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 9.80665, 1e-6, - 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, np.inf, np.inf, - 0.1, 0.1, 0.1, 0.1]))[0] - DMG_2_2_PFA = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 9.80665, - 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([np.inf, np.inf, np.inf, np.inf, - 0.1, 0.1, 0.1, 0.1]))[0] - - DMG_ref = [DMG_1_1_PID, DMG_1_2_PID, DMG_2_1_PID, DMG_2_2_PID, - DMG_1_1_PFA, DMG_1_2_PFA, DMG_2_1_PFA, DMG_2_2_PFA] - - assert_allclose(DMG_check, DMG_ref, rtol=0.10, atol=0.01) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - # COST - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - - C_target = [0., 249., 624., 1251., 1875.] - T_target = [0., 0.249, 0.624, 1.251, 1.875] - - # PG 1011 - P_target = [ - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.05488, 0.1, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.1, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.1, 0.1, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.05488]))[0], ]), - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 1e-6, 0.05488]), - upper=np.log([0.1, 0.05488, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.05488, 0.05488]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 1e-6]), - upper=np.log([0.1, 0.05488, 0.1, 0.05488]))[0], ]), - mvn_od(theta_PID, COV_PID, lower=np.log([0.05488, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.05488, 0.05488, 0.05488]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 0].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 0].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 1012 - P_target = [ - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.1, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.1, 0.1, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.05488]))[0], ]), - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.05488, 0.1, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.05488, 0.05488]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.05488, 0.1, 0.1, 0.05488]))[0], ]), - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 0.05488, 1e-6, 1e-6]), - upper=np.log([0.05488, 0.1, 0.05488, 0.05488]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 1].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 1].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 1021 - P_target = [ - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.1, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.1, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.05488]))[0], ]), - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 1e-6]), - upper=np.log([0.1, 0.05488, 0.1, 0.05488]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 1e-6]), - upper=np.log([0.05488, 0.1, 0.1, 0.05488]))[0], ]), - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 0.05488, 1e-6]), - upper=np.log([0.05488, 0.05488, 0.1, 0.05488]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 2].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 2].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - #print('------------------------') - #print('P_target') - #print(P_target) - #print('------------------------') - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 1022 - P_target = [ - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log([0.1, 0.1, 0.1, 0.05488]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.1, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.1, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.1, 0.1, 0.05488, 0.1]))[0], ]), - np.sum([ - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 1e-6, 0.05488, 0.05488]), - upper=np.log([0.05488, 0.05488, 0.1, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([0.05488, 1e-6, 1e-6, 0.05488]), - upper=np.log([0.1, 0.05488, 0.05488, 0.1]))[0], - mvn_od(theta_PID, COV_PID, - lower=np.log([1e-6, 0.05488, 1e-6, 0.05488]), - upper=np.log([0.05488, 0.1, 0.05488, 0.1]))[0], ]), - mvn_od(theta_PID, COV_PID, lower=np.log([1e-6, 1e-6, 1e-6, 0.05488]), - upper=np.log([0.05488, 0.05488, 0.05488, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 3].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 5)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 3].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 5)] - P_test = P_test[np.where(P_test > 5)] - P_test = P_test / realization_count - - assert_allclose(P_target[:-1], P_test[:4], atol=0.05) - assert_allclose(C_target[:-1], C_test[:4], rtol=0.001) - assert_allclose(T_target[:-1], T_test[:4], rtol=0.001) - - # PG 2011 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, 9.80665, 9.80665, 0.1, 0.1, 0.1, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 4].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 4].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 2012 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, 9.80665, 9.80665, 0.1, 0.1, 0.1, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 5].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 5].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target[:4], P_test[:4], atol=0.05) - assert_allclose(C_target[:4], C_test[:4], rtol=0.001) - assert_allclose(T_target[:4], T_test[:4], rtol=0.001) - - # PG 2021 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, 9.80665, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 6].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 6].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # PG 2022 - P_target = [ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, - lower=np.log([1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, 9.80665, 0.1, 0.1, 0.1, 0.1]))[0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - np.sum([ - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 1e-6, 9.80665, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, 9.80665, np.inf, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [9.80665, 1e-6, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [np.inf, 9.80665, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 9.80665, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, np.inf, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[ - 0], ]), - mvn_od(np.log(EDP_theta_test), EDP_COV_test, lower=np.log( - [1e-6, 1e-6, 1e-6, 9.80665, 1e-6, 1e-6, 1e-6, 1e-6]), - upper=np.log( - [9.80665, 9.80665, 9.80665, np.inf, 0.1, 0.1, 0.1, 0.1]))[0], - ] - - C_test, P_test = np.unique( - np.around(DV_COST.iloc[:, 7].values / 3., decimals=0) * 3., - return_counts=True) - C_test = C_test[np.where(P_test > 10)] - T_test, P_test = np.unique(np.around(DV_TIME.iloc[:, 7].values * 333.33333, - decimals=0) / 333.33333, - return_counts=True) - T_test = T_test[np.where(P_test > 10)] - P_test = P_test[np.where(P_test > 10)] - P_test = P_test / realization_count - - assert_allclose(P_target, P_test, atol=0.05) - assert_allclose(C_target, C_test, rtol=0.001) - assert_allclose(T_target, T_test, rtol=0.001) - - # RED TAG - RED_check = A._DV_dict['red_tag'].describe().T - RED_check = (RED_check['mean'] * RED_check['count'] / realization_count).values - - assert_allclose(RED_check, DMG_ref, atol=0.02, rtol=0.10) - - DMG_on = np.where(A._DMG > 0.0)[0] - RED_on = np.where(A._DV_dict['red_tag'] > 0.0)[0] - assert_allclose(DMG_on, RED_on) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - upper=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 0.05488, - 0.05488, 0.05488, 0.05488]))[0] - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / realization_count - - assert P_no_RED_target == pytest.approx(P_no_RED_test, abs=0.03) - -def test_FEMA_P58_Assessment_EDP_uncertainty_single_sample(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - In this test we provide only one structural response result and see if it - is properly handled as a deterministic value or a random EDP using the - additional sources of uncertainty. - """ - print() - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_6.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_6.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_theta_target = np.array( - [7.634901, 6.85613, 11.685934, 10.565554, - 0.061364, 0.048515, 0.033256, 0.020352]) - EDP_beta_target = EDP_theta_target * 1e-6 - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.05) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - assert RV_EDP[0].RV_set == None - - # ------------------------------------------------- perform the calculation - - A.define_loss_model() - - A.calculate_damage() - - A.calculate_losses() - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / 10000. - - assert P_no_RED_test == 0.0 - - # ------------------------------------------------------------------------- - # now do the same analysis, but consider additional uncertainty - # ------------------------------------------------------------------------- - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - AU = A._AIM_in['general']['added_uncertainty'] - - AU['beta_m'] = 0.3 - AU['beta_gm'] = 0.4 - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - EDP_beta_target = np.sqrt((EDP_theta_target * 1e-6)**2. + - np.ones(8)*(0.3**2. + 0.4**2.)) - assert_allclose(EDP_theta_test, EDP_theta_target, rtol=0.05) - assert_allclose(EDP_beta_test, EDP_beta_target, rtol=0.1) - - assert RV_EDP[0].RV_set == None - EDP_rho_target = np.zeros((8, 8)) - np.fill_diagonal(EDP_rho_target, 1.0) - - EDP_COV_test = EDP_rho_target * np.outer(EDP_beta_test, EDP_beta_test) - - # ------------------------------------------------- perform the calculation - - A.define_loss_model() - - A.calculate_damage() - - A.calculate_losses() - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - P_no_RED_target = mvn_od(np.log(EDP_theta_test), EDP_COV_test, - upper=np.log( - [9.80665, 9.80665, 9.80665, 9.80665, 0.05488, - 0.05488, 0.05488, 0.05488]))[0] - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / 10000. - - assert P_no_RED_target == pytest.approx(P_no_RED_test, abs=0.01) - -def test_FEMA_P58_Assessment_EDP_uncertainty_zero_variance(): - """ - Perform a loss assessment with customized inputs that focus on testing the - methods used to estimate the multivariate lognormal distribution of EDP - values. Besides the fitting, this test also evaluates the propagation of - EDP uncertainty through the analysis. Dispersions in other calculation - parameters are reduced to negligible levels. This allows us to test the - results against pre-defined reference values in spite of the randomness - involved in the calculations. - This test simulates a scenario when one of the EDPs is identical in all - of the available samples. This results in zero variance in that dimension - and the purpose of the test is to ensure that such cases are handled - appropriately. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_7.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_7.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # EDP - RV_EDP = list(A._EDP_dict.values()) - - assert np.all([rv.distribution == 'lognormal' for rv in RV_EDP]) - - thetas, betas = np.array([rv.theta for rv in RV_EDP]).T - EDP_theta_test = thetas - EDP_beta_test = betas - assert EDP_theta_test[4] == pytest.approx(0.061364, rel=0.05) - assert EDP_beta_test[4] < 0.061364 * 1e-3 - - rho = RV_EDP[0].RV_set.Rho() - EDP_rho_test = rho - EDP_rho_target = np.zeros((8, 8)) - np.fill_diagonal(EDP_rho_target, 1.0) - assert_allclose(EDP_rho_test[4], EDP_rho_target[4], atol=1e-6) - - # ------------------------------------------------- perform the calculation - - A.define_loss_model() - - A.calculate_damage() - - A.calculate_losses() - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - P_no_RED_test = (1.0 - SD.loc[('red tagged', ''), 'mean']) * SD.loc[ - ('red tagged', ''), 'count'] / 10000. - - assert P_no_RED_test == 0.0 - -def test_FEMA_P58_Assessment_QNT_uncertainty_independent(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component quantities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. - This test assumes that component quantities are independent. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_8.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_8.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A.define_random_variables() - - # -------------------------------------------------- check random variables - - # QNT - RV_QNT = list(A._QNT_dict.values()) - - QNT_theta_test, QNT_beta_test = np.array([rv.theta for rv in RV_QNT]).T - QNT_theta_target = np.ones(8) * 25. - QNT_beta_target = [25.0] * 4 + [0.4] * 4 - assert_allclose(QNT_theta_test, QNT_theta_target, rtol=0.001) - assert_allclose(QNT_beta_test, QNT_beta_target, rtol=0.001) - - for i in range(4): - assert RV_QNT[i].distribution == 'normal' - for i in range(4, 8): - assert RV_QNT[i].distribution == 'lognormal' - - QNT_rho_target = [ - [1, 0, 0, 0, 0, 0, 0, 0], - [0, 1, 0, 0, 0, 0, 0, 0], - [0, 0, 1, 0, 0, 0, 0, 0], - [0, 0, 0, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 0, 0, 0], - [0, 0, 0, 0, 0, 1, 0, 0], - [0, 0, 0, 0, 0, 0, 1, 0], - [0, 0, 0, 0, 0, 0, 0, 1], - ] - QNT_rho_test = RV_QNT[0].RV_set.Rho() - assert_allclose(QNT_rho_test, QNT_rho_target, atol=0.001) - - # ------------------------------------------------------------------------ - - A.define_loss_model() - - A.calculate_damage() - - # ------------------------------------------------ check damage calculation - - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - DMG_check = A._DMG.describe().T - mu_test = DMG_check['mean'] - sig_test = DMG_check['std'] - rho_test = A._DMG.corr() - - mu_target_1 = 25.0 + 25.0 * norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0)) - sig_target_1 = np.sqrt(25.0 ** 2.0 * ( - 1 - norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0)) - ( - norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0))) ** 2.0)) - mu_target_2 = np.exp(np.log(25.0) + 0.4 ** 2. / 2.) - sig_target_2 = np.sqrt( - (np.exp(0.4 ** 2.0) - 1.0) * np.exp(2 * np.log(25.0) + 0.4 ** 2.0)) - - assert_allclose(mu_test[:4], mu_target_1, rtol=0.05) - assert_allclose(mu_test[4:], mu_target_2, rtol=0.05) - assert_allclose(sig_test[:4], sig_target_1, rtol=0.05) - assert_allclose(sig_test[4:], sig_target_2, rtol=0.05) - assert_allclose(rho_test, QNT_rho_target, atol=0.05) - - # ------------------------------------------------------------------------ - - A.calculate_losses() - - # -------------------------------------------------- check loss calculation - - DV_COST = A._DV_dict['rec_cost'] / A._DMG - - rho_DV_target = [ - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - ] - - assert_allclose(DV_COST.corr(), rho_DV_target, atol=0.05) - - # Uncertainty in decision variables is controlled by the correlation - # between damages - RND = [tnorm.rvs(-1., np.inf, loc=25, scale=25, size=10000) for i in - range(4)] - RND = np.sum(RND, axis=0) - P_target_PID = np.sum(RND > 90.) / 10000. - P_test_PID = np.sum(DV_COST.iloc[:, 0] < 10.01) / 10000. - assert P_target_PID == pytest.approx(P_test_PID, rel=0.02) - - RND = [np.exp(norm.rvs(loc=np.log(25.), scale=0.4, size=10000)) for i in - range(4)] - RND = np.sum(RND, axis=0) - P_target_PFA = np.sum(RND > 90.) / 10000. - P_test_PFA = np.sum(DV_COST.iloc[:, 4] < 10.01) / 10000. - assert P_target_PFA == pytest.approx(P_test_PFA, rel=0.02) - - # the same checks can be performed for reconstruction time - DV_TIME = A._DV_dict['rec_time'] / A._DMG - - assert_allclose(DV_TIME.corr(), rho_DV_target, atol=0.05) - - P_test_PID = np.sum(DV_TIME.iloc[:, 0] < 0.0101) / 10000. - assert P_target_PID == pytest.approx(P_test_PID, rel=0.02) - - P_test_PFA = np.sum(DV_TIME.iloc[:, 4] < 0.0101) / 10000. - assert P_target_PFA == pytest.approx(P_test_PFA, rel=0.02) - - # injuries... - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = (DV_INJ_dict[0] / A._DMG).describe() - DV_INJ1 = (DV_INJ_dict[1] / A._DMG).describe() - - assert_allclose(DV_INJ0.loc['mean', :][:4], np.ones(4) * 0.025, rtol=0.001) - assert_allclose(DV_INJ0.loc['mean', :][4:], np.ones(4) * 0.1, rtol=0.001) - assert_allclose(DV_INJ1.loc['mean', :][:4], np.ones(4) * 0.005, rtol=0.001) - assert_allclose(DV_INJ1.loc['mean', :][4:], np.ones(4) * 0.02, rtol=0.001) - - assert_allclose(DV_INJ0.loc['std', :], np.zeros(8), atol=1e-4) - assert_allclose(DV_INJ1.loc['std', :], np.zeros(8), atol=1e-4) - - # and for red tag... - # Since every component is damaged in every realization, the red tag - # results should all be 1.0 - assert_allclose(A._DV_dict['red_tag'], np.ones((10000, 8))) - - # ------------------------------------------------------------------------ - - A.aggregate_results() - - # ------------------------------------------------ check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 20.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert SD.loc[('red tagged', ''), 'mean'] == 1.0 - assert SD.loc[('red tagged', ''), 'std'] == 0.0 - - assert np.corrcoef(S.loc[:, ('reconstruction', 'cost')], - S.loc[:, ('reconstruction', 'time-sequential')])[ - 0, 1] == pytest.approx(1.0) - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')]) - -def test_FEMA_P58_Assessment_QNT_uncertainty_dependencies(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component quantities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. - This test checks if dependencies between component quantities are handled - appropriately. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_8.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_8.out" - - for dep in ['FG', 'PG', 'DIR', 'LOC']: - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A._AIM_in['dependencies']['quantities'] = dep - - A.define_random_variables() - - # ---------------------------------------------- check random variables - - # QNT - RV_QNT = list(A._QNT_dict.values()) - - QNT_theta_test, QNT_beta_test = np.array([rv.theta for rv in RV_QNT]).T - QNT_theta_target = np.ones(8) * 25. - QNT_beta_target = [25.0] * 4 + [0.4] * 4 - assert_allclose(QNT_theta_test, QNT_theta_target, rtol=0.001) - assert_allclose(QNT_beta_test, QNT_beta_target, rtol=0.001) - - for i in range(4): - assert RV_QNT[i].distribution == 'normal' - for i in range(4, 8): - assert RV_QNT[i].distribution == 'lognormal' - - if dep == 'FG': - QNT_rho_target = np.array([ - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - [1, 1, 1, 1, 1, 1, 1, 1], - ]) - elif dep == 'PG': - QNT_rho_target = np.array([ - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - ]) - elif dep == 'DIR': - QNT_rho_target = np.array([ - [1, 1, 0, 0, 0, 0, 0, 0], - [1, 1, 0, 0, 0, 0, 0, 0], - [0, 0, 1, 1, 0, 0, 0, 0], - [0, 0, 1, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 1, 0, 0], - [0, 0, 0, 0, 1, 1, 0, 0], - [0, 0, 0, 0, 0, 0, 1, 1], - [0, 0, 0, 0, 0, 0, 1, 1], - ]) - elif dep == 'LOC': - QNT_rho_target = np.array([ - [1, 0, 1, 0, 0, 0, 0, 0], - [0, 1, 0, 1, 0, 0, 0, 0], - [1, 0, 1, 0, 0, 0, 0, 0], - [0, 1, 0, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 0, 1, 0], - [0, 0, 0, 0, 0, 1, 0, 1], - [0, 0, 0, 0, 1, 0, 1, 0], - [0, 0, 0, 0, 0, 1, 0, 1], - ]) - - QNT_rho_test = RV_QNT[0].RV_set.Rho() - assert_allclose(QNT_rho_test, QNT_rho_target, atol=0.001) - - # --------------------------------------------------------------------- - - A.define_loss_model() - - A.calculate_damage() - - # -------------------------------------------- check damage calculation - - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - # Because the correlations are enforced after truncation, the marginals - # shall be unaffected by the correlation structure. Hence, the - # distribution of damaged quantities within a PG shall be identical in - # all dep cases. - # The specified dependencies are apparent in the correlation between - # damaged quantities in various PGs. - - DMG_check = A._DMG.describe().T - mu_test = DMG_check['mean'] - sig_test = DMG_check['std'] - rho_test = A._DMG.corr() - - mu_target_1 = 25.0 + 25.0 * norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0)) - sig_target_1 = np.sqrt(25.0 ** 2.0 * ( - 1 - norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0)) - ( - norm.pdf(-1.0) / (1.0 - norm.cdf(-1.0))) ** 2.0)) - mu_target_2 = np.exp(np.log(25.0) + 0.4 ** 2. / 2.) - sig_target_2 = np.sqrt( - (np.exp(0.4 ** 2.0) - 1.0) * np.exp(2 * np.log(25.0) + 0.4 ** 2.0)) - - assert_allclose(mu_test[:4], mu_target_1, rtol=0.05) - assert_allclose(mu_test[4:], mu_target_2, rtol=0.05) - assert_allclose(sig_test[:4], sig_target_1, rtol=0.05) - assert_allclose(sig_test[4:], sig_target_2, rtol=0.05) - assert_allclose(rho_test, QNT_rho_target, atol=0.05) - - # --------------------------------------------------------------------- - - A.calculate_losses() - - # ---------------------------------------------- check loss calculation - - DV_COST = A._DV_dict['rec_cost'] / A._DMG - - # After the DVs are normalized by the damaged quantities, the resulting - # samples show the correlations between the DV_measure (such as - # reconstruction cost) / 1 unit of damaged component. Because this - # consequences are perfectly correlated among the components of a - # fragility group by definition, the quadrants on the main diagonal - # will follow the matrix presented below. If there are additional - # correlations defined between component quantities in different - # fragility groups (i.e. the off-diagonal quadrants of the rho matrix), - # those will be preserved in the consequences. Therefore, the - # off-diagonal quadrants need to be updated with those from QNT_rho_target - # to get an appropriate rho_DV_target. - - rho_DV_target = np.array([ - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [1, 1, 1, 1, 0, 0, 0, 0], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - [0, 0, 0, 0, 1, 1, 1, 1], - ]) - rho_DV_target[:4, 4:] = QNT_rho_target[:4, 4:] - rho_DV_target[4:, :4] = QNT_rho_target[:4, 4:] - - assert_allclose(DV_COST.corr(), rho_DV_target, atol=0.05) - - # uncertainty in decision variables is controlled by the correlation - # between damages - P_test_PID = np.sum(DV_COST.iloc[:, 0] < 10.01) / 10000. - P_test_PFA = np.sum(DV_COST.iloc[:, 4] < 10.01) / 10000. - - # the first component quantities follow a truncated multivariate normal - # distribution - mu_target_PID = mu_target_1 * 4. - sig_target_PID = np.sqrt( - sig_target_1 ** 2. * np.sum(QNT_rho_target[:4, :4])) - mu_target_PID_b = mu_target_PID - sig_target_PID_b = sig_target_PID - alpha = 100. - i = 0 - while (np.log( - np.abs(alpha / (mu_target_PID_b / sig_target_PID_b))) > 0.001) and ( - i < 10): - alpha = -mu_target_PID_b / sig_target_PID_b - mu_target_PID_b = mu_target_PID - sig_target_PID_b * norm.pdf( - alpha) / (1.0 - norm.cdf(alpha)) - sig_target_PID_b = sig_target_PID / np.sqrt( - (1.0 + alpha * norm.pdf(alpha) / (1.0 - norm.cdf(alpha)))) - i += 1 - xi = (90 - mu_target_PID_b) / sig_target_PID_b - P_target_PID = 1.0 - (norm.cdf(xi) - norm.cdf(alpha)) / ( - 1.0 - norm.cdf(alpha)) - - assert P_target_PID == pytest.approx(P_test_PID, rel=0.05) - - # the second component quantities follow a multivariate lognormal - # distribution - mu_target_PFA = mu_target_2 * 4. - sig_target_PFA = np.sqrt( - sig_target_2 ** 2. * np.sum(QNT_rho_target[4:, 4:])) - sig_target_PFA_b = np.sqrt( - np.log(sig_target_PFA ** 2.0 / mu_target_PFA ** 2.0 + 1.0)) - mu_target_PFA_b = np.log(mu_target_PFA) - sig_target_PFA_b ** 2.0 / 2. - xi = np.log(90) - P_target_PFA = 1.0 - norm.cdf(xi, loc=mu_target_PFA_b, - scale=sig_target_PFA_b) - - assert P_target_PFA == pytest.approx(P_test_PFA, rel=0.05) - - # the same checks can be performed for reconstruction time - DV_TIME = A._DV_dict['rec_time'] / A._DMG - - assert_allclose(DV_TIME.corr(), rho_DV_target, atol=0.05) - - P_test_PID = np.sum(DV_TIME.iloc[:, 0] < 0.0101) / 10000. - assert P_target_PID == pytest.approx(P_test_PID, rel=0.05) - - P_test_PFA = np.sum(DV_TIME.iloc[:, 4] < 0.0101) / 10000. - assert P_target_PFA == pytest.approx(P_test_PFA, rel=0.05) - - # injuries... - # Every component is damaged in every realization in this test. Once - # normalized by the quantity of components, the number of injuries - # shall be identical and unaffected by the correlation between - # component quantities. - - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = (DV_INJ_dict[0] / A._DMG).describe() - DV_INJ1 = (DV_INJ_dict[1] / A._DMG).describe() - - assert_allclose(DV_INJ0.loc['mean', :][:4], np.ones(4) * 0.025, - rtol=0.001) - assert_allclose(DV_INJ0.loc['mean', :][4:], np.ones(4) * 0.1, - rtol=0.001) - assert_allclose(DV_INJ1.loc['mean', :][:4], np.ones(4) * 0.005, - rtol=0.001) - assert_allclose(DV_INJ1.loc['mean', :][4:], np.ones(4) * 0.02, - rtol=0.001) - - assert_allclose(DV_INJ0.loc['std', :], np.zeros(8), atol=1e-4) - assert_allclose(DV_INJ1.loc['std', :], np.zeros(8), atol=1e-4) - - # and for red tag... - # since every component is damaged in every realization, the red tag - # results should all be 1.0 - assert_allclose(A._DV_dict['red_tag'], np.ones((10000, 8))) - - # --------------------------------------------------------------------- - - A.aggregate_results() - - # -------------------------------------------- check result aggregation - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 20.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert SD.loc[('red tagged', ''), 'mean'] == 1.0 - assert SD.loc[('red tagged', ''), 'std'] == 0.0 - - assert np.corrcoef(S.loc[:, ('reconstruction', 'cost')], - S.loc[:, ('reconstruction', 'time-sequential')])[ - 0, 1] == pytest.approx(1.0) - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')]) - -def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies(dep='IND'): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - independent in this test. - - """ - print() - idx = pd.IndexSlice - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_9.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_9.out" - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - A._AIM_in['dependencies']['fragilities'] = dep - - A.define_random_variables() - - # ---------------------------------------------- check random variables - RV_FF = list(A._FF_dict.values()) - fr_names = np.unique([rv.name[3:12] for rv in RV_FF]) - fr_keys = {} - for fr_name in fr_names: - fr_list = [rv.name for rv in RV_FF if fr_name in rv.name] - fr_keys.update({fr_name: fr_list}) - - # fr_keys = [] - # for key in A._RV_dict.keys(): - # if 'FR' in key: - # fr_keys.append(key) - - dimtag_target = [4 * 2 * 3, 20 * 2 * 3 * 3, 20 * 2 * 3 * 3, - 20 * 2 * 3 * 3] - theta_target = [[0.048, 0.096], [0.048, 0.072, 0.096], - [2.9419, 5.8840, 11.7680], [2.9419, 5.8840, 11.7680]] - sig_target = [[0.5, 0.25], [1.0, 0.5, 0.25], [1.0, 0.5, 0.25], - [1.0, 0.5, 0.25]] - - if dep == 'IND': - rho_target = np.zeros((24, 24)) - np.fill_diagonal(rho_target, 1.0) - - rho_sum = 360 - - elif dep == 'PG': - rho_target = np.ones((24, 24)) - - rho_sum = 360 ** 2. - - elif dep == 'DIR': - rho_target = [ - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.]] - - rho_sum = (20 * 2 * 3) ** 2. * 3 - - elif dep == 'LOC': - rho_target = [ - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 1., 1.]] - - rho_sum = (20 * 3) ** 2. * (2 * 9) - - elif dep in ['ATC', 'CSG']: - rho_target = [ - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.]] - - rho_sum = (20 * 3) ** 2. * (2 * 3) - - elif dep == 'DS': - rho_target = [ - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.]] - - rho_sum = 3 ** 2 * (20 * 2 * 3) - - for k, key in enumerate(sorted(fr_keys.keys())): - RV_FF_i = [A._FF_dict[rv_i] for rv_i in fr_keys[key]] - - assert len(RV_FF_i) == dimtag_target[k] - - FF_theta_test, FF_beta_test = np.array([rv.theta for rv in RV_FF_i]).T - - if k == 0: - FF_theta_test = pd.DataFrame( - np.reshape(FF_theta_test, (12, 2))).describe() - FF_beta_test = pd.DataFrame( - np.reshape(FF_beta_test, (12, 2))).describe() - else: - FF_theta_test = pd.DataFrame( - np.reshape(FF_theta_test, (120, 3))).describe() - FF_beta_test = pd.DataFrame( - np.reshape(FF_beta_test, (120, 3))).describe() - - assert_allclose(FF_theta_test.loc['mean', :].values, theta_target[k], - rtol=1e-4) - assert_allclose(FF_theta_test.loc['std', :].values, - np.zeros(np.array(theta_target[k]).shape), - atol=1e-10) - - assert_allclose(FF_beta_test.loc['mean', :].values, sig_target[k], - rtol=1e-4) - assert_allclose(FF_beta_test.loc['std', :].values, - np.zeros(np.array(sig_target[k]).shape), atol=1e-10) - - rho_test = RV_FF_i[0].RV_set.Rho(fr_keys[fr_names[k]]) - if k == 0: - # we perform the detailed verification of rho for the first case - # only (because the others are 360x360 matrices) - assert_allclose(rho_test, rho_target) - - else: - # for the other cases we check the number of ones in the matrix - assert np.sum(rho_test) == rho_sum - - # --------------------------------------------------------------------- - - A.define_loss_model() - - A.calculate_damage() - - # -------------------------------------------- check damage calculation - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - DMG_check = A._DMG - - # start with checking the damage correlations - for k in range(4): - DMG_corr = DMG_check.loc[:, idx[k + 1, :, :]].corr() - - if k == 0: - DMG_corr = DMG_corr.iloc[:8, :8] - - if dep in ['IND', 'ATC', 'CSG', 'DS']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0], - ]) - elif dep == 'PG': - DMG_corr_ref = np.array([ - [ 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1], - [-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0], - [ 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1], - [-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0], - [ 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1], - [-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0], - [ 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1], - [-0.1, 1.0,-0.1, 1.0,-0.1, 1.0,-0.1, 1.0], - ]) - elif dep == 'DIR': - DMG_corr_ref = np.array([ - [ 1.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0], - [ 1.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 1.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 1.0], - [ 0.0, 0.0, 0.0, 0.0, 1.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 1.0], - ]) - elif dep == 'LOC': - DMG_corr_ref = np.array([ - [ 1.0,-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0], - [-0.1, 1.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0], - [ 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 1.0,-0.1], - [ 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1, 1.0], - [ 1.0,-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0], - [-0.1, 1.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0], - [ 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 1.0,-0.1], - [ 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1, 1.0], - ]) - - if k == 1: - DMG_corr = DMG_corr.iloc[:12, :12] - - if dep in ['IND', 'ATC', 'CSG', 'DS']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0], - ]) - elif dep == 'PG': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - ]) - elif dep == 'DIR': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 1.0,-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1, 1.0], - ]) - elif dep == 'LOC': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0], - ]) - - if k == 2: - DMG_corr = DMG_corr.iloc[:20, :20] - - if dep in ['IND', 'DS']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1, 1.0,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'PG': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1], - [-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1], - [-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1], - [-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1], - [-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1], - [-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1], - [-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1], - [-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1], - [-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'DIR': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1,-0.1, 0.8, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1,-0.1, 0.5, 0.6, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1,-0.1, 0.5, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.5, 0.5,-0.1,-0.1, 1.0, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.6, 0.5,-0.1,-0.1, 0.5, 1.0, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 0.5,-0.1,-0.1, 0.5, 0.5, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'LOC': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.6, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.6, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.6, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.6, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep in ['ATC', 'CSG']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.5, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 1.0, 0.5,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.5, 0.5, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - - if k == 3: - DMG_corr = DMG_corr.iloc[:20, :20] - - if dep in ['IND', 'DS']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.0, 1.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 1.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 1.0, 0.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 0.0, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.0, 0.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 1.0, 0.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.0, 0.0, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'PG': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1], - [-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1], - [-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1], - [-0.1, 0.8, 0.6, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1], - [-0.1, 0.7, 0.6, 0.5,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1], - [-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1], - [-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1], - [-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1,-0.1, 0.8, 0.6, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1], - [-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1,-0.1, 0.7, 0.6, 0.5,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'DIR': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.6, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 0.5,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1,-0.1, 0.8, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1,-0.1, 0.8, 0.7, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1,-0.1, 0.7, 0.6, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.8, 0.7,-0.1,-0.1, 1.0, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.6, 0.6,-0.1,-0.1, 0.8, 1.0, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 0.5,-0.1,-0.1, 0.7, 0.6, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep == 'LOC': - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.7, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.7, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 0.7, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 0.7, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - elif dep in ['ATC', 'CSG']: - DMG_corr_ref = np.array([ - [ 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,-0.1,-0.1,-0.1,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 1.0, 0.8, 0.7,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.8, 1.0, 0.6,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1, 0.7, 0.6, 1.0,-0.1], - [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,-0.1,-0.1,-0.1,-0.1, 1.0], - ]) - - for i in range(len(DMG_corr.index)): - for j in range(len(DMG_corr.columns)): - ref_i = DMG_corr_ref[i, j] - if ref_i != 0.0: - if ref_i > 0.0: - assert DMG_corr.iloc[i, j] > 0.97 * ref_i - else: - assert DMG_corr.iloc[i, j] < 0.0 - else: - assert DMG_corr.iloc[i, j] == pytest.approx(ref_i, - abs=0.15) - - # then check the distribution of damage within each performance group - EDP_list = np.array( - [[[0.080000, 0.080000], [0.080000, 0.080000], [0.040000, 0.040000]], - [[7.845320, 7.845320], [7.845320, 7.845320], - [2.942000, 2.942000]]]) - - fr_keys = [] - for key in A._RV_dict.keys(): - if 'FR' in key: - fr_keys.append(key) - - for k, key in enumerate(sorted(fr_keys)): - # print(key) - - RV_FR = A._RV_dict[key] - - # only third of the data is unique because of the 3 stories - rel_len = int(len(RV_FR._dimension_tags) / 3) - - COV_test = RV_FR.COV[:rel_len, :rel_len] - theta_test = RV_FR.theta[:rel_len] - - lims = np.unique(theta_test) - ndims = len(lims) - if k in [2, 3]: - ndims += 2 - - if (dep in ['DS', 'IND']) or k > 1: - DMG_vals = [[[0., 5., 7.5, 12.5, 17.5, 20., 25.], [0., 25.]], - [[0., 1.5, 3., 4.5, 6., 7.5, 9., 10.5, 12., 13.5, - 15., - 16.5, 18., 19.5, 21., 22.5, 24., 25.5, 27., 28.5, - 30.0], - [0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., - 11., 12., 13., 14., 15., 16., 17., 18., 19., - 20.]]] - else: - DMG_vals = [[[0., 25.], [0., 25.]], - [[0., 30.], [0., 20.]]] - DMG_vals = np.array(DMG_vals) - - for story in [0, 1, 2]: - for dir_ in [0, 1]: - # print(story, dir_) - - idx = pd.IndexSlice - DMG_check_FG = DMG_check.loc[:, idx[k + 1, :, :]] - DMG_check_PG = DMG_check_FG.iloc[:, - story * 2 * ndims + dir_ * ndims:story * 2 * ndims + ( - dir_ + 1) * ndims] - - DMG_val_test = np.unique( - np.around(DMG_check_PG.values * 10., decimals=0) / 10., - return_counts=True) - DMG_val_test = DMG_val_test[0][DMG_val_test[1] > 10] - - # only check at most the first 10 elements, because the - # higher values have extremely low likelihood - ddim = min(len(DMG_val_test), 10) - DMG_val_ref = DMG_vals[np.sign(k), dir_] - for v in DMG_val_test: - assert v in DMG_val_ref - - # additional tests for mutually exclusive DS2 in FG3 - if (k == 2) and (dep not in ['DS', 'IND']): - DMG_tot = [[0., 30.], [0., 20.]][dir_] - DMG_DS2_test = DMG_check_PG.iloc[:, [1, 2, 3]].sum( - axis=1) - - # the proportion of each DS in DS2 shall follow the - # pre-assigned weights - ME_test = \ - DMG_check_PG.iloc[DMG_DS2_test.values > 0].iloc[:, - [1, 2, 3]].describe().T['mean'].values / DMG_tot[-1] - assert_allclose(ME_test, [0.5, 0.3, 0.2], atol=0.01) - - # the sum of DMG with correlated CSGs shall be either 0. - # or the total quantity - DMG_DS2_test = np.unique( - np.around(DMG_DS2_test * 10., decimals=0) / 10., - return_counts=True) - DMG_DS2_test = DMG_DS2_test[0][DMG_DS2_test[1] > 10] - assert_allclose(DMG_DS2_test, DMG_tot, atol=0.01) - - # additional tests for simultaneous DS2 in FG4 - if (k == 3) and (dep not in ['DS', 'IND']): - DMG_tot = [30.0, 20.0][dir_] - DMG_DS2_test = DMG_check_PG.iloc[:, [1, 2, 3]].sum( - axis=1) - - # the proportion of each DS in DS2 shall follow the - # pre-assigned weights considering replacement - SIM_test = \ - DMG_check_PG.iloc[DMG_DS2_test.values > 0].iloc[:, - [1, 2, 3]].describe().T['mean'].values / DMG_tot - P_rep = 0.5 * 0.7 * 0.8 - SIM_ref = np.array([0.5, 0.3, 0.2]) * ( - 1.0 + P_rep / (1.0 - P_rep)) - assert_allclose(SIM_test, SIM_ref, atol=0.02) - - # the sum of DMG with correlated CSGs shall be either - # 0. or more than the total quantity - DMG_DS2_test = DMG_DS2_test.iloc[ - DMG_DS2_test.values > 0] - # Even with perfect correlation, the generated random - # samples will not be identical. Hence, one of the 20 - # CSGs in FG4, very rarely will belong to a different - # DS than the rest. To avoid false negatives, we test - # the third smallest value. - assert DMG_DS2_test.sort_values().iloc[ - 2] >= DMG_tot * 0.99 - assert np.max(DMG_DS2_test.values) > DMG_tot - - # the first component has 3-1 CSGs in dir 1 and 2, - # respectively - if k == 0: - dir_len = int(rel_len * 3 / 4) - # the other components have 20-20 CSGs in dir 1 and 2, - # respectively - else: - dir_len = int(rel_len / 2) - - if dir_ == 0: - theta_t = theta_test[:dir_len] - COV_t = COV_test[:dir_len, :dir_len] - - else: - theta_t = theta_test[dir_len:] - COV_t = COV_test[dir_len:, dir_len:] - - lim_ds1 = np.where(theta_t == lims[0])[0] - lim_ds2 = np.where(theta_t == lims[1])[0] - if k > 0: - lim_ds3 = np.where(theta_t == lims[2])[0] - - ndim = len(theta_t) - - EDP = EDP_list[int(k > 1), story, dir_]*1.2 - - DS_ref_all = [] - DS_ref_any = [] - DS_test_all = [] - DS_test_any = [] - # DS0 - DS_ref_all.append(mvn_od(np.log(theta_t), COV_t, - lower=np.log(np.ones(ndim) * EDP), - upper=np.ones(ndim) * np.inf)[0]) - - if k == 0: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0.], - axis=0)) / 10000.) - elif k == 1: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0.], - axis=0)) / 10000.) - else: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0., - DMG_check_PG.iloc[:, 3] == 0., - DMG_check_PG.iloc[:, 4] == 0.], - axis=0)) / 10000.) - - # DS1 - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - lower_lim[lim_ds2] = np.log(EDP) - upper_lim[lim_ds1] = np.log(EDP) - if k > 0: - lower_lim[lim_ds3] = np.log(EDP) - DS_ref_all.append(mvn_od(np.log(theta_t), COV_t, - lower=lower_lim, upper=upper_lim)[ - 0]) - - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - lower_lim[lim_ds2[0]] = np.log(EDP) - upper_lim[lim_ds1[0]] = np.log(EDP) - if k > 0: - lower_lim[lim_ds3[0]] = np.log(EDP) - P_any = mvn_od(np.log(theta_t), COV_t, lower=lower_lim, - upper=upper_lim)[0] - if (dep in ['DS', 'IND']): - P_any = 1.0 - (1.0 - P_any) ** len(lim_ds1) - DS_ref_any.append(P_any) - - if k == 0: - DS_test_all.append(np.sum(np.all( - [DMG_check_PG.iloc[:, 0] > DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 1] == 0.], axis=0)) / 10000.) - elif k == 1: - DS_test_all.append(np.sum(np.all( - [DMG_check_PG.iloc[:, 0] > DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0.], axis=0)) / 10000.) - else: - DS_test_all.append(np.sum(np.all( - [DMG_check_PG.iloc[:, 0] > DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0., - DMG_check_PG.iloc[:, 3] == 0., - DMG_check_PG.iloc[:, 4] == 0.], axis=0)) / 10000.) - - DS_test_any.append(np.sum( - np.all([DMG_check_PG.iloc[:, 0] > 0.], - axis=0)) / 10000.) - - # DS2 - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - upper_lim[lim_ds2] = np.log(EDP) - if k > 0: - lower_lim[lim_ds3] = np.log(EDP) - if k < 3: - DS_ref_all.append(mvn_od(np.log(theta_t), COV_t, - lower=lower_lim, - upper=upper_lim)[0]) - else: - DS_ref_all.append(0.0) - - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - upper_lim[lim_ds2[0]] = np.log(EDP) - if k > 0: - lower_lim[lim_ds3[0]] = np.log(EDP) - P_any = mvn_od(np.log(theta_t), COV_t, lower=lower_lim, - upper=upper_lim)[0] - if (dep in ['DS', 'IND']): - P_any = 1.0 - (1.0 - P_any) ** len(lim_ds1) - DS_ref_any.append(P_any) - - if k == 0: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] > - DMG_val_ref[-1] - 0.1], - axis=0)) / 10000.) - elif k == 1: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] > - DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 2] == 0.], - axis=0)) / 10000.) - elif k == 2: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, [1, 2, 3]].sum( - axis=1) > DMG_val_ref[-1] - 0.1, - DMG_check_PG.iloc[:, 4] == 0.], - axis=0)) / 10000.) - elif k == 3: - # skip this case - DS_test_all.append(0.0) - - if k < 2: - DS_test_any.append(np.sum( - np.all([DMG_check_PG.iloc[:, 1] > 0.], - axis=0)) / 10000.) - else: - DS_test_any.append(np.sum(np.all( - [DMG_check_PG.iloc[:, [1, 2, 3]].sum(axis=1) > 0.], - axis=0)) / 10000.) - - # DS3 - if k > 0: - - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - upper_lim[lim_ds3] = np.log(EDP) - DS_ref_all.append(mvn_od(np.log(theta_t), COV_t, - lower=lower_lim, - upper=upper_lim)[0]) - - lower_lim = -np.ones(ndim) * np.inf - upper_lim = np.ones(ndim) * np.inf - upper_lim[lim_ds3[0]] = np.log(EDP) - P_any = mvn_od(np.log(theta_t), COV_t, lower=lower_lim, - upper=upper_lim)[0] - if (dep in ['DS', 'IND']): - P_any = 1.0 - (1.0 - P_any) ** len(lim_ds1) - DS_ref_any.append(P_any) - - if k == 1: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] > - DMG_val_ref[-1] - 0.1], - axis=0)) / 10000.) - else: - DS_test_all.append( - np.sum(np.all([DMG_check_PG.iloc[:, 0] == 0., - DMG_check_PG.iloc[:, 1] == 0., - DMG_check_PG.iloc[:, 2] == 0., - DMG_check_PG.iloc[:, 3] == 0., - DMG_check_PG.iloc[:, 4] > - DMG_val_ref[-1] - 0.1], - axis=0)) / 10000.) - if k == 1: - DS_test_any.append(np.sum( - np.all([DMG_check_PG.iloc[:, 2] > 0.], - axis=0)) / 10000.) - - else: - DS_test_any.append(np.sum( - np.all([DMG_check_PG.iloc[:, 4] > 0.], - axis=0)) / 10000.) - - assert_allclose(DS_ref_all, DS_test_all, atol=0.02) - assert_allclose(DS_ref_any, DS_test_any, atol=0.02) - - # --------------------------------------------------------------------- - - A.calculate_losses() - - # ---------------------------------------------- check loss calculation - - # No additional uncertainty is introduced when it comes to losses in - # this test. The decision variables and the damaged quantities shall - # follow the same distribution and have the same correlation structure. - # The damaged quantities have already been verified, so now we use them - # as reference values for testing the decision variables. - - # COST and TIME and INJ - DV_COST = A._DV_dict['rec_cost'] - DV_TIME = A._DV_dict['rec_time'] - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = DV_INJ_dict[0] - DV_INJ1 = DV_INJ_dict[1] - - DMG_check = A._DMG - - for k in range(4): - # Start with checking the correlations... - dmg = DMG_check.loc[:, (DMG_check != 0.0).any(axis=0)] - dmg_corr = dmg.loc[:, idx[k + 1, :, :]].corr() - for dv in [DV_COST, DV_TIME, DV_INJ0, DV_INJ1]: - dv = dv.loc[:, (dv != 0.0).any(axis=0)] - dv_corr = dv.loc[:, idx[k + 1, :, :]].corr() - - assert_allclose(dmg_corr.values, dv_corr.values, atol=0.001) - - # then check the distribution. - # After normalizing with the damaged quantities all decision - # variables in a given DS shall have the same value. - dv = ((dv / dmg).describe().T).fillna(0.0) - - assert_allclose(dv['std'], np.zeros(len(dv.index)), atol=1.0) - - # red tags require special checks - for f, fg_id in enumerate(sorted(A._FG_dict.keys())): - dims = [2, 3, 5, 5][f] - - # take the total quantity of each performance group - FG = A._FG_dict[fg_id] - qnt = [] - for PG in FG._performance_groups: - if isinstance(PG._quantity, RandomVariable): - qnt.append((PG._quantity.samples[:dims]).flatten()) - else: - qnt.append(np.ones(dims) * PG._quantity) - qnt = np.array(qnt).flatten() - - # flag the samples where the damage exceeds the pre-defined limit - # for red tagging - dmg = DMG_check.loc[:, idx[FG._ID, :, :]] - red_ref = dmg > 0.489 * qnt - - # collect the red tag results from the analysis - red_test = A._DV_dict['red_tag'].loc[:, idx[FG._ID, :, :]] - - # compare - red_diff = (red_ref - red_test).describe().T - assert_allclose(red_diff['mean'].values, 0.) - assert_allclose(red_diff['std'].values, 0.) - - # --------------------------------------------------------------------- - - A.aggregate_results() - - # -------------------------------------------- check result aggregation - - # Aggregate results are checked in detail by other tests. - # Here we only focus on some simple checks to make sure the results - # make sense. - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 10.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')]) - -def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_PG(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated between performance groups in this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('PG') - -def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_DIR(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated between performance groups controlled by the same EDPs - in identical directions in this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('DIR') - -def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_LOC(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated between performance groups at identical locations in - this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('LOC') - -def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_ATC(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated within performance groups if such correlation is - prescribed by ATC in the FEMA P58 document. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('ATC') - -def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_CSG(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated within a performance group in this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('CSG') - -def test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies_DS(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in component fragilities. Dispersions in other - calculation parameters are reduced to negligible levels. This allows us to - test the results against pre-defined reference values in spite of the - randomness involved in the calculations. Component fragilites are assumed - perfectly correlated between damage states in this test. - - """ - - test_FEMA_P58_Assessment_FRAG_uncertainty_dependencies('DS') - -def test_FEMA_P58_Assessment_DV_uncertainty_dependencies(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in consequence functions and decision variables. - Dispersions in other calculation parameters are reduced to negligible - levels. This allows us to test the results against pre-defined reference - values in spite of the randomness involved in the calculations. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_10.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_10.out" - - dep_list = ['IND', 'FG', 'PG', 'DIR', 'LOC', 'DS'] - - for d in range(7): - - if d > 0: - dep_COST = dep_list[[0, 1, 2, 3, 4, 5][d - 1]] - dep_TIME = dep_list[[1, 2, 3, 4, 5, 0][d - 1]] - dep_RED = dep_list[[2, 3, 4, 5, 0, 1][d - 1]] - dep_INJ = dep_list[[3, 4, 5, 0, 1, 2][d - 1]] - else: - dep_COST = np.random.choice(dep_list) - dep_TIME = np.random.choice(dep_list) - dep_RED = np.random.choice(dep_list) - dep_INJ = np.random.choice(dep_list) - dep_CT = np.random.choice([True, False]) - dep_ILVL = np.random.choice([True, False]) - - #print([dep_COST, dep_TIME, dep_RED, dep_INJ, dep_CT, dep_ILVL], end=' ') - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - # set the dependencies - A._AIM_in['dependencies']['rec_costs'] = dep_COST - A._AIM_in['dependencies']['rec_times'] = dep_TIME - A._AIM_in['dependencies']['red_tags'] = dep_RED - A._AIM_in['dependencies']['injuries'] = dep_INJ - - A._AIM_in['dependencies']['cost_and_time'] = dep_CT - A._AIM_in['dependencies']['injury_lvls'] = dep_ILVL - - A.define_random_variables() - - # ---------------------------------------------- check random variables - - rho_ref = dict( - IND=np.zeros((16, 16)), - FG=np.ones((16, 16)), - PG=np.array([ - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - ]), - LOC=np.array([ - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - ]), - DIR=np.array([ - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - ]), - DS=np.array([ - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - ]) - ) - np.fill_diagonal(rho_ref['IND'], 1.0) - - # RV_REP = deepcopy(A._RV_dict['DV_REP']) - # RV_RED = deepcopy(A._RV_dict['DV_RED']) - # RV_INJ = deepcopy(A._RV_dict['DV_INJ']) - - RV_REP = list(A._DV_REP_dict.values()) - RV_RED = list(A._DV_RED_dict.values()) - RV_INJ = list(A._DV_INJ_dict.values()) - - for r, (RV_DV, RV_tag) in enumerate( - zip([RV_REP, RV_RED, RV_INJ], ['rep', 'red', 'inj'])): - - # assert len(RV_DV._dimension_tags) == [32, 16, 32][r] - assert len(RV_DV) == [32, 16, 32][r] - - DV_theta_test, DV_beta_test = np.array([rv.theta for rv in RV_DV]).T - DV_rho_test = RV_DV[0].RV_set.Rho([rv.name for rv in RV_DV]) - - # COV_test = RV_DV.COV - # sig_test = np.sqrt(np.diagonal(COV_test)) - # rho_test = COV_test / np.outer(sig_test, sig_test) - - if RV_tag == 'rep': - - assert_allclose(DV_theta_test, np.ones(32)) - assert_allclose(DV_beta_test, np.array( - [0.31, 0.71] * 8 + [0.32, 0.72] * 8)) - - if dep_CT == True: - if (((dep_COST == 'LOC') and (dep_TIME == 'DIR')) or - ((dep_COST == 'DIR') and (dep_TIME == 'LOC'))): - rho_ref_CT = rho_ref['PG'] - else: - rho_ref_CT = np.maximum(rho_ref[dep_COST], - rho_ref[dep_TIME]) - - assert_allclose(DV_rho_test[:16, :16], rho_ref_CT) - assert_allclose(DV_rho_test[16:, 16:], rho_ref_CT) - assert_allclose(DV_rho_test[:16, 16:], rho_ref_CT) - assert_allclose(DV_rho_test[16:, :16], rho_ref_CT) - - else: - assert_allclose(DV_rho_test[:16, :16], rho_ref[dep_COST]) - assert_allclose(DV_rho_test[16:, 16:], rho_ref[dep_TIME]) - assert_allclose(DV_rho_test[:16, 16:], np.zeros((16, 16))) - assert_allclose(DV_rho_test[16:, :16], np.zeros((16, 16))) - - elif RV_tag == 'red': - - assert_allclose(DV_theta_test, np.ones(16)) - assert_allclose(DV_beta_test, np.array([0.33, 0.73] * 8)) - - assert_allclose(DV_rho_test, rho_ref[dep_RED]) - - elif RV_tag == 'inj': - - assert_allclose(DV_theta_test, np.ones(32)) - assert_allclose(DV_beta_test, np.array( - [0.34, 0.74] * 8 + [0.35, 0.75] * 8)) - - if dep_ILVL == True: - assert_allclose(DV_rho_test[:16, :16], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[16:, 16:], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[:16, 16:], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[16:, :16], rho_ref[dep_INJ]) - else: - assert_allclose(DV_rho_test[:16, :16], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[16:, 16:], rho_ref[dep_INJ]) - assert_allclose(DV_rho_test[:16, 16:], np.zeros((16, 16))) - assert_allclose(DV_rho_test[16:, :16], np.zeros((16, 16))) - - # --------------------------------------------------------------------- - - A.define_loss_model() - - A.calculate_damage() - - # -------------------------------------------- check damage calculation - - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - DMG_check = A._DMG - - # Fragilities are not tested here, so we only do a few simple checks - assert np.min(DMG_check.describe().loc['mean'].values) > 0. - assert np.min(DMG_check.describe().loc['std'].values) > 0. - - # --------------------------------------------------------------------- - - A.calculate_losses() - - # ---------------------------------------------- check loss calculation - - # COST and TIME and INJ - DV_COST = A._DV_dict['rec_cost'] / DMG_check - DV_TIME = A._DV_dict['rec_time'] / DMG_check - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = DV_INJ_dict[0] / DMG_check - DV_INJ1 = DV_INJ_dict[1] / DMG_check - - for dv_i, (DV, DV_tag) in enumerate( - zip([DV_COST, DV_TIME, DV_INJ0, DV_INJ1], - ['cost', 'time', 'inj0', 'inj1'])): - - DV_desc = DV.describe().T - DV_desc_log = np.log(DV).describe().T - - if DV_tag == 'cost': - - # cost consequences in DS1 are lognormal - mu_ds1_ref = np.exp(np.log(10.) + 0.31 ** 2. / 2.) - sig_ds1_ref = np.sqrt( - np.exp(2 * np.log(10.) + 0.31 ** 2.) * ( - np.exp(0.31 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[::2], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2], sig_ds1_ref, - rtol=0.10) - assert_allclose(DV_desc_log['mean'].values[::2], - np.log(10.), atol=0.02) - assert_allclose(DV_desc_log['std'].values[::2], 0.31, - rtol=0.10) - - # cost consequences in DS2 are (truncated) normal - mu_ds2_ref, var_ds2_ref = tnorm.stats(-1. / 0.71, 1000., - loc=1000., scale=710., - moments='mv') - sig_ds2_ref = np.sqrt(var_ds2_ref) - assert_allclose(DV_desc['mean'].values[1::2], mu_ds2_ref, - rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2], sig_ds2_ref, - rtol=0.10) - - # make sure that all damages correspond to positive - # reconstruction costs - assert np.all(np.min(DV) > 0.) - - elif DV_tag == 'time': - - # cost consequences in DS1 are (truncated) normal for FG1 and - # lognormal for FG2 - # DS1 - FG1 - mu_ds1_ref, var_ds1_ref = tnorm.stats(-1. / 0.32, 1000., - loc=0.01, - scale=0.0032, - moments='mv') - sig_ds1_ref = np.sqrt(var_ds1_ref) - assert_allclose(DV_desc['mean'].values[::2][:4], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2][:4], sig_ds1_ref, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][:4]) == pytest.approx( - sig_ds1_ref, rel=0.1) - - # DS1 - FG2 - mu_ds1_ref = np.exp(np.log(0.01) + 0.32 ** 2. / 2.) - sig_ds1_ref = np.sqrt( - np.exp(2 * np.log(0.01) + 0.32 ** 2.) * ( - np.exp(0.32 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[::2][4:], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2][4:], sig_ds1_ref, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][4:]) == pytest.approx( - sig_ds1_ref, rel=0.1) - assert_allclose(DV_desc_log['mean'].values[::2][4:], - np.log(0.01), atol=0.02) - assert_allclose(DV_desc_log['std'].values[::2][4:], 0.32, - rtol=0.20) - assert np.mean( - DV_desc_log['std'].values[::2][4:]) == pytest.approx( - 0.32, rel=0.1) - - # cost consequences in DS2 are lognormal for FG1 and - # (truncated) normal for FG2 - # DS2 - FG1 - mu_ds2_ref = np.exp(np.log(1.) + 0.72 ** 2. / 2.) - sig_ds2_ref = np.sqrt( - np.exp(2 * np.log(1.) + 0.72 ** 2.) * ( - np.exp(0.72 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[1::2][:4], - mu_ds2_ref, rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2][:4], - sig_ds2_ref, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][:4]) == pytest.approx( - sig_ds2_ref, rel=0.1) - - assert_allclose(DV_desc_log['mean'].values[1::2][:4], - np.log(1.), atol=0.05) - assert_allclose(DV_desc_log['std'].values[1::2][:4], 0.72, - rtol=0.20) - assert np.mean( - DV_desc_log['std'].values[1::2][:4]) == pytest.approx( - 0.72, rel=0.1) - - # DS2 - FG2 - mu_ds2_ref, var_ds2_ref = tnorm.stats(-1. / 0.72, 1000., - loc=1., scale=0.72, - moments='mv') - sig_ds2_ref = np.sqrt(var_ds2_ref) - assert_allclose(DV_desc['mean'].values[1::2][4:], - mu_ds2_ref, rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2][4:], - sig_ds2_ref, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][4:]) == pytest.approx( - sig_ds2_ref, rel=0.1) - - # make sure that all damages correspond to positive - # reconstruction time - assert np.all(np.min(DV) > 0.) - - elif DV_tag in ['inj0', 'inj1']: - - # Injuries follow a truncated normal distribution in all cases - # The beta values provided are coefficients of variation of the - # non-truncated distribution. These provide the reference mean - # and standard deviation values for the truncated case. - mu_ds1, mu_ds2 = {'inj0': [0.5, 0.6], 'inj1': [0.1, 0.2]}[ - DV_tag] - beta_ds1, beta_ds2 = \ - {'inj0': [0.34, 0.74], 'inj1': [0.35, 0.75]}[DV_tag] - - # DS1 - # The affected population in DS1 per unit quantity (identical - # for all FGs and injury levels) - p_aff = 0.05 - - mu_ref, var_ref = tnorm.stats(-1. / beta_ds1, ( - 1. - mu_ds1) / mu_ds1 / beta_ds1, loc=mu_ds1, - scale=mu_ds1 * beta_ds1, - moments='mv') - sig_ref = np.sqrt(var_ref) - assert_allclose(DV_desc['mean'].values[::2], mu_ref * p_aff, - rtol=beta_ds1 / 10.) - assert_allclose(DV_desc['std'].values[::2], sig_ref * p_aff, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2]) == pytest.approx( - sig_ref * p_aff, rel=0.1) - - # DS2 - # the affected population in DS1 per unit quantity (identical - # for all FGs and injury levels) - p_aff = 0.1 - mu_ref, var_ref = tnorm.stats(-1. / beta_ds2, ( - 1. - mu_ds2) / mu_ds2 / beta_ds2, loc=mu_ds2, - scale=mu_ds2 * beta_ds2, - moments='mv') - sig_ref = np.sqrt(var_ref) - assert_allclose(DV_desc['mean'].values[1::2], - mu_ref * p_aff, rtol=beta_ds2 / 10.) - assert_allclose(DV_desc['std'].values[1::2], - sig_ref * p_aff, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2]) == pytest.approx( - sig_ref * p_aff, rel=0.1) - - # red tags have to be treated separately - DV_RED = A._DV_dict['red_tag'] - - DMG_norm = DMG_check / 25. - - for i in range(16): - - is_dam = pd.DataFrame(np.zeros((len(DMG_norm.index), 5)), - columns=range(5)) - is_dam[0] = (DMG_norm.iloc[:, i] < 0.01) - is_dam[1] = (DMG_norm.iloc[:, i] > 0.01) & ( - DMG_norm.iloc[:, i] < 0.275) - is_dam[2] = (DMG_norm.iloc[:, i] > 0.275) & ( - DMG_norm.iloc[:, i] < 0.525) - is_dam[3] = (DMG_norm.iloc[:, i] > 0.525) & ( - DMG_norm.iloc[:, i] < 0.775) - is_dam[4] = (DMG_norm.iloc[:, i] > 0.775) - - mu_red = ([0.87, 0.23185] * 4 + [0.50, 0.23185] * 4)[i] - beta_red = ([0.33, 0.73] * 8)[i] - mu_ref = np.zeros(5) - mu_ref[1] = tnorm.cdf(0.25, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[2] = tnorm.cdf(0.50, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[3] = tnorm.cdf(0.75, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[4] = tnorm.cdf(1.00, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - - sample_count = np.array( - [(DV_RED.iloc[:, i])[is_dam[c]].describe().loc['count'] for - c in range(5)]) - mu_test = np.array( - [(DV_RED.iloc[:, i])[is_dam[c]].describe().loc['mean'] for c - in range(5)]) - - assert mu_test[0] == 0. - for step in range(1, 5): - if sample_count[step] > 0: - assert mu_test[step] == pytest.approx( - mu_ref[step], - abs=5 * 0.4 / np.sqrt(sample_count[step])) - - # CORRELATIONS - - # repair and injury correlations - DV_REP = pd.concat([DV_COST, DV_TIME], axis=1) - DV_INJ = pd.concat([DV_INJ0, DV_INJ1], axis=1) - - for DV, RV, dv_tag in zip([DV_REP, DV_INJ, DV_RED], - [RV_REP, RV_INJ, RV_RED], - ['rep', 'inj', 'red']): - - if dv_tag == 'rep': - # transform the lognormal variables to log scale - log_flags = ([True, False] * 8 + - [False, True] * 4 + - [True, False] * 4) - for c, is_log in enumerate(log_flags): - if is_log: - DV.iloc[:, c] = np.log(DV.iloc[:, c]) - - elif dv_tag == 'red': - DV_RED_n = pd.DataFrame(np.ones(DV.shape) * np.nan, - index=DV.index, columns=DV.columns) - DMG_filter = pd.concat( - [(DMG_check.iloc[:, [0, 2, 4, 6]] / 25.0 > 0.525) & ( - DMG_check.iloc[:, [0, 2, 4, 6]] / 25.0 < 0.775), - (DMG_check.iloc[:, [1, 3, 5, 7]] / 25.0 > 0.025) & ( - DMG_check.iloc[:, [1, 3, 5, 7]] / 25.0 < 0.275), - (DMG_check.iloc[:, [8, 10, 12, 14]] / 25.0 > 0.275) & ( - DMG_check.iloc[:, [8, 10, 12, 14]] / 25.0 < 0.525), - (DMG_check.iloc[:, [9, 11, 13, 15]] / 25.0 > 0.025) & ( - DMG_check.iloc[:, - [9, 11, 13, 15]] / 25.0 < 0.275)], axis=1) - - DV_RED_n[DMG_filter] = DV_RED[DMG_filter] - DV = DV_RED_n - - DV_corr = DV.corr() - - # use the correlations specified for the random variable as - # reference (that we already verified earlier) - # COV_ref = RV.COV - # sig_ref = np.sqrt(np.diagonal(COV_ref)) - # rho_ref = COV_ref / np.outer(sig_ref, sig_ref) - - rho_ref = RV[0].RV_set.Rho([rv.name for rv in RV]) - - # perform the tests - for i in range(len(DV_corr.index)): - for j in range(len(DV_corr.columns)): - ref_i = rho_ref[i, j] - if ref_i != 0.0: - if ref_i > 0.0: - assert DV_corr.iloc[i, j] > 0.97 * ref_i - else: - assert DV_corr.iloc[i, j] < 0.0 - else: - assert DV_corr.iloc[i, j] == pytest.approx(ref_i, - abs=0.15) - - # --------------------------------------------------------------------- - - A.aggregate_results() - - # -------------------------------------------- check result aggregation - - # Aggregate results are checked in detail by other tests. - # Here we only focus on some simple checks to make sure the results - # make sense. - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 20.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')]) - - #print() - -def test_FEMA_P58_Assessment_DV_uncertainty_dependencies_with_partial_DV_data(): - """ - Perform loss assessment with customized inputs that focus on testing the - propagation of uncertainty in consequence functions and decision variables - when not every component has injury and red tag consequences assigned to it. - Dispersions in other calculation parameters are reduced to negligible - levels. This allows us to test the results against pre-defined reference - values in spite of the randomness involved in the calculations. - """ - - base_input_path = 'resources/' - - DL_input = base_input_path + 'input data/' + "DL_input_test_11.json" - EDP_input = base_input_path + 'EDP data/' + "EDP_table_test_11.out" - - dep_list = ['IND', 'FG', 'PG', 'DIR', 'LOC', 'DS'] - - for d in range(7): - - if d > 0: - dep_COST = dep_list[[0, 1, 2, 3, 4, 5][d - 1]] - dep_TIME = dep_list[[1, 2, 3, 4, 5, 0][d - 1]] - dep_RED = dep_list[[2, 3, 4, 5, 0, 1][d - 1]] - dep_INJ = dep_list[[3, 4, 5, 0, 1, 2][d - 1]] - else: - dep_COST = np.random.choice(dep_list) - dep_TIME = np.random.choice(dep_list) - dep_RED = np.random.choice(dep_list) - dep_INJ = np.random.choice(dep_list) - dep_CT = np.random.choice([True, False]) - dep_ILVL = np.random.choice([True, False]) - - # print([dep_COST, dep_TIME, dep_RED, dep_INJ, dep_CT, dep_ILVL], end=' ') - - A = FEMA_P58_Assessment() - - A.read_inputs(DL_input, EDP_input, verbose=False) - - # set the dependencies - A._AIM_in['dependencies']['rec_costs'] = dep_COST - A._AIM_in['dependencies']['rec_times'] = dep_TIME - A._AIM_in['dependencies']['red_tags'] = dep_RED - A._AIM_in['dependencies']['injuries'] = dep_INJ - - A._AIM_in['dependencies']['cost_and_time'] = dep_CT - A._AIM_in['dependencies']['injury_lvls'] = dep_ILVL - - A.define_random_variables() - - # ---------------------------------------------- check random variables - - rho_ref = dict( - IND=np.zeros((16, 16)), - FG=np.ones((16, 16)), - PG=np.array([ - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 1., 1., 1.], - ]), - LOC=np.array([ - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 1., 1.], - ]), - DIR=np.array([ - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 1., 1.], - ]), - DS=np.array([ - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1., 0., 0.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - [0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 1., 1.], - ]) - ) - np.fill_diagonal(rho_ref['IND'], 1.0) - - # RV_REP = deepcopy(A._RV_dict['DV_REP']) - # RV_RED = deepcopy(A._RV_dict['DV_RED']) - # RV_INJ = deepcopy(A._RV_dict['DV_INJ']) - - RV_REP = list(A._DV_REP_dict.values()) - RV_RED = list(A._DV_RED_dict.values()) - RV_INJ = list(A._DV_INJ_dict.values()) - - for r, (RV_DV, RV_tag) in enumerate( - zip([RV_REP, RV_RED, RV_INJ], ['rep', 'red', 'inj'])): - - # assert len(RV_DV._dimension_tags) == [32, 8, 16][r] - assert len(RV_DV) == [32, 8, 16][r] - - DV_theta_test, DV_beta_test = np.array([rv.theta for rv in RV_DV]).T - DV_rho_test = RV_DV[0].RV_set.Rho([rv.name for rv in RV_DV]) - - # COV_test = RV_DV.COV - # sig_test = np.sqrt(np.diagonal(COV_test)) - # rho_test = COV_test / np.outer(sig_test, sig_test) - - if RV_tag == 'rep': - - assert_allclose(DV_theta_test, np.ones(32)) - assert_allclose(DV_beta_test, np.array( - [0.31, 0.71] * 8 + [0.32, 0.72] * 8)) - - if dep_CT == True: - if (((dep_COST == 'LOC') and (dep_TIME == 'DIR')) or - ((dep_COST == 'DIR') and (dep_TIME == 'LOC'))): - rho_ref_CT = rho_ref['PG'] - else: - rho_ref_CT = np.maximum(rho_ref[dep_COST], - rho_ref[dep_TIME]) - - assert_allclose(DV_rho_test[:16, :16], rho_ref_CT) - assert_allclose(DV_rho_test[16:, 16:], rho_ref_CT) - assert_allclose(DV_rho_test[:16, 16:], rho_ref_CT) - assert_allclose(DV_rho_test[16:, :16], rho_ref_CT) - - else: - assert_allclose(DV_rho_test[:16, :16], rho_ref[dep_COST]) - assert_allclose(DV_rho_test[16:, 16:], rho_ref[dep_TIME]) - assert_allclose(DV_rho_test[:16, 16:], np.zeros((16, 16))) - assert_allclose(DV_rho_test[16:, :16], np.zeros((16, 16))) - - elif RV_tag == 'red': - - assert_allclose(DV_theta_test, np.ones(8)) - assert_allclose(DV_beta_test, np.array([0.33, 0.73] * 4)) - - assert_allclose(DV_rho_test, rho_ref[dep_RED][:8,:8]) - - elif RV_tag == 'inj': - - assert_allclose(DV_theta_test, np.ones(16)) - assert_allclose(DV_beta_test, np.array( - [0.34, 0.74] * 4 + [0.35, 0.75] * 4)) - - if dep_ILVL == True: - assert_allclose(DV_rho_test[:8, :8], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[8:, 8:], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[:8, 8:], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[8:, :8], rho_ref[dep_INJ][:8,:8]) - else: - assert_allclose(DV_rho_test[:8, :8], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[8:, 8:], rho_ref[dep_INJ][:8,:8]) - assert_allclose(DV_rho_test[:8, 8:], np.zeros((8, 8))) - assert_allclose(DV_rho_test[8:, :8], np.zeros((8, 8))) - - # --------------------------------------------------------------------- - - A.define_loss_model() - - A.calculate_damage() - - # -------------------------------------------- check damage calculation - - # COL - # there shall be no collapses - assert A._COL.describe().T['mean'].values == 0 - - # DMG - DMG_check = A._DMG - - # Fragilities are not tested here, so we only do a few simple checks - assert np.min(DMG_check.describe().loc['mean'].values) > 0. - assert np.min(DMG_check.describe().loc['std'].values) > 0. - - # --------------------------------------------------------------------- - - A.calculate_losses() - - # ---------------------------------------------- check loss calculation - - # COST and TIME and INJ - DV_COST = A._DV_dict['rec_cost'] / DMG_check - DV_TIME = A._DV_dict['rec_time'] / DMG_check - DV_INJ_dict = deepcopy(A._DV_dict['injuries']) - DV_INJ0 = DV_INJ_dict[0] / DMG_check - DV_INJ1 = DV_INJ_dict[1] / DMG_check - - for dv_i, (DV, DV_tag) in enumerate( - zip([DV_COST, DV_TIME, DV_INJ0, DV_INJ1], - ['cost', 'time', 'inj0', 'inj1'])): - - DV_desc = DV.describe().T - DV_desc_log = np.log(DV).describe().T - - if DV_tag == 'cost': - - # cost consequences in DS1 are lognormal - mu_ds1_ref = np.exp(np.log(10.) + 0.31 ** 2. / 2.) - sig_ds1_ref = np.sqrt( - np.exp(2 * np.log(10.) + 0.31 ** 2.) * ( - np.exp(0.31 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[::2], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2], sig_ds1_ref, - rtol=0.10) - assert_allclose(DV_desc_log['mean'].values[::2], - np.log(10.), atol=0.02) - assert_allclose(DV_desc_log['std'].values[::2], 0.31, - rtol=0.10) - - # cost consequences in DS2 are (truncated) normal - mu_ds2_ref, var_ds2_ref = tnorm.stats(-1. / 0.71, 1000., - loc=1000., scale=710., - moments='mv') - sig_ds2_ref = np.sqrt(var_ds2_ref) - assert_allclose(DV_desc['mean'].values[1::2], mu_ds2_ref, - rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2], sig_ds2_ref, - rtol=0.10) - - # make sure that all damages correspond to positive - # reconstruction costs - assert np.all(np.min(DV) > 0.) - - elif DV_tag == 'time': - - # cost consequences in DS1 are (truncated) normal for FG1 and - # lognormal for FG2 - # DS1 - FG1 - mu_ds1_ref, var_ds1_ref = tnorm.stats(-1. / 0.32, 1000., - loc=0.01, - scale=0.0032, - moments='mv') - sig_ds1_ref = np.sqrt(var_ds1_ref) - assert_allclose(DV_desc['mean'].values[::2][:4], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2][:4], sig_ds1_ref, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][:4]) == pytest.approx( - sig_ds1_ref, rel=0.1) - - # DS1 - FG2 - mu_ds1_ref = np.exp(np.log(0.01) + 0.32 ** 2. / 2.) - sig_ds1_ref = np.sqrt( - np.exp(2 * np.log(0.01) + 0.32 ** 2.) * ( - np.exp(0.32 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[::2][4:], mu_ds1_ref, - rtol=0.02) - assert_allclose(DV_desc['std'].values[::2][4:], sig_ds1_ref, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][4:]) == pytest.approx( - sig_ds1_ref, rel=0.1) - assert_allclose(DV_desc_log['mean'].values[::2][4:], - np.log(0.01), atol=0.02) - assert_allclose(DV_desc_log['std'].values[::2][4:], 0.32, - rtol=0.20) - assert np.mean( - DV_desc_log['std'].values[::2][4:]) == pytest.approx( - 0.32, rel=0.1) - - # cost consequences in DS2 are lognormal for FG1 and - # (truncated) normal for FG2 - # DS2 - FG1 - mu_ds2_ref = np.exp(np.log(1.) + 0.72 ** 2. / 2.) - sig_ds2_ref = np.sqrt( - np.exp(2 * np.log(1.) + 0.72 ** 2.) * ( - np.exp(0.72 ** 2.) - 1.)) - assert_allclose(DV_desc['mean'].values[1::2][:4], - mu_ds2_ref, rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2][:4], - sig_ds2_ref, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][:4]) == pytest.approx( - sig_ds2_ref, rel=0.1) - - assert_allclose(DV_desc_log['mean'].values[1::2][:4], - np.log(1.), atol=0.05) - assert_allclose(DV_desc_log['std'].values[1::2][:4], 0.72, - rtol=0.20) - assert np.mean( - DV_desc_log['std'].values[1::2][:4]) == pytest.approx( - 0.72, rel=0.1) - - # DS2 - FG2 - mu_ds2_ref, var_ds2_ref = tnorm.stats(-1. / 0.72, 1000., - loc=1., scale=0.72, - moments='mv') - sig_ds2_ref = np.sqrt(var_ds2_ref) - assert_allclose(DV_desc['mean'].values[1::2][4:], - mu_ds2_ref, rtol=0.05) - assert_allclose(DV_desc['std'].values[1::2][4:], - sig_ds2_ref, rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][4:]) == pytest.approx( - sig_ds2_ref, rel=0.1) - - # make sure that all damages correspond to positive - # reconstruction time - assert np.all(np.min(DV) > 0.) - - elif DV_tag in ['inj0', 'inj1']: - - # Injuries follow a truncated normal distribution in all cases - # The beta values provided are coefficients of variation of the - # non-truncated distribution. These provide the reference mean - # and standard deviation values for the truncated case. - mu_ds1, mu_ds2 = {'inj0': [0.5, 0.6], - 'inj1': [0.1, 0.2]}[DV_tag] - beta_ds1, beta_ds2 = {'inj0': [0.34, 0.74], - 'inj1': [0.35, 0.75]}[DV_tag] - - # DS1 - # The affected population in DS1 per unit quantity (identical - # for all FGs and injury levels) - p_aff = 0.05 - - mu_ref, var_ref = tnorm.stats( - -1. / beta_ds1, (1. - mu_ds1) / mu_ds1 / beta_ds1, - loc=mu_ds1, - scale=mu_ds1 * beta_ds1, - moments='mv') - sig_ref = np.sqrt(var_ref) - mu_ref = mu_ref * p_aff - sig_ref = sig_ref * p_aff - assert_allclose(DV_desc['mean'].values[::2], - [np.nan]*4 + [mu_ref]*4, - rtol=beta_ds1 / 10.) - assert_allclose(DV_desc['std'].values[::2], - [np.nan] * 4 + [sig_ref] * 4, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[::2][4:]) == pytest.approx( - sig_ref, rel=0.1) - - # DS2 - # the affected population in DS1 per unit quantity (identical - # for all FGs and injury levels) - p_aff = 0.1 - mu_ref, var_ref = tnorm.stats(-1. / beta_ds2, ( - 1. - mu_ds2) / mu_ds2 / beta_ds2, loc=mu_ds2, - scale=mu_ds2 * beta_ds2, - moments='mv') - sig_ref = np.sqrt(var_ref) - mu_ref = mu_ref * p_aff - sig_ref = sig_ref * p_aff - assert_allclose(DV_desc['mean'].values[1::2], - [np.nan] * 4 + [mu_ref] * 4, - rtol=beta_ds2 / 10.) - assert_allclose(DV_desc['std'].values[1::2], - [np.nan] * 4 + [sig_ref] * 4, - rtol=0.20) - assert np.mean( - DV_desc['std'].values[1::2][4:]) == pytest.approx( - sig_ref, rel=0.1) - - # red tags have to be treated separately - DV_RED = A._DV_dict['red_tag'] - - DMG_norm = DMG_check / 25. - - assert len(DV_RED.columns) == 8 - - for i in range(8): - - dmg_i = i+8 - is_dam = pd.DataFrame(np.zeros((len(DMG_norm.index), 5)), - columns=range(5)) - is_dam[0] = (DMG_norm.iloc[:, dmg_i] < 0.01) - is_dam[1] = (DMG_norm.iloc[:, dmg_i] > 0.01) & ( - DMG_norm.iloc[:, dmg_i] < 0.275) - is_dam[2] = (DMG_norm.iloc[:, dmg_i] > 0.275) & ( - DMG_norm.iloc[:, dmg_i] < 0.525) - is_dam[3] = (DMG_norm.iloc[:, dmg_i] > 0.525) & ( - DMG_norm.iloc[:, dmg_i] < 0.775) - is_dam[4] = (DMG_norm.iloc[:, dmg_i] > 0.775) - - mu_red = ([0.50, 0.23185] * 4)[i] - beta_red = ([0.33, 0.73] * 4)[i] - mu_ref = np.zeros(5) - mu_ref[1] = tnorm.cdf(0.25, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[2] = tnorm.cdf(0.50, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[3] = tnorm.cdf(0.75, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - mu_ref[4] = tnorm.cdf(1.00, -1. / beta_red, - (1. - mu_red) / mu_red / beta_red, - loc=mu_red, scale=mu_red * beta_red) - - sample_count = np.array( - [(DV_RED.iloc[:, i])[is_dam[c]].describe().loc['count'] for - c in range(5)]) - mu_test = np.array( - [(DV_RED.iloc[:, i])[is_dam[c]].describe().loc['mean'] for c - in range(5)]) - - assert mu_test[0] == 0. - for step in range(1, 5): - if sample_count[step] > 0: - assert mu_test[step] == pytest.approx( - mu_ref[step], - abs=5 * 0.4 / np.sqrt(sample_count[step])) - - # CORRELATIONS - - # repair and injury correlations - DV_REP = pd.concat([DV_COST, DV_TIME], axis=1) - DV_INJ = pd.concat([DV_INJ0, DV_INJ1], axis=1) - - for DV, RV, dv_tag in zip([DV_REP, DV_INJ, DV_RED], - [RV_REP, RV_INJ, RV_RED], - ['rep', 'inj', 'red']): - - if dv_tag == 'rep': - # transform the lognormal variables to log scale - log_flags = ([True, False] * 8 + - [False, True] * 4 + - [True, False] * 4) - for c, is_log in enumerate(log_flags): - if is_log: - DV.iloc[:, c] = np.log(DV.iloc[:, c]) - - if dv_tag == 'inj': - # remove the columns with only nan values from DV - DV = pd.concat([DV.iloc[:,8:16], DV.iloc[:,24:32]], axis=1) - - elif dv_tag == 'red': - DV_RED_n = pd.DataFrame(np.ones(DV.shape) * np.nan, - index=DV.index, columns=DV.columns) - DMG_filter = pd.concat( - [(DMG_check.iloc[:, [8, 10, 12, 14]] / 25.0 > 0.275) & ( - DMG_check.iloc[:, [8, 10, 12, 14]] / 25.0 < 0.525), - (DMG_check.iloc[:, [9, 11, 13, 15]] / 25.0 > 0.025) & ( - DMG_check.iloc[:, - [9, 11, 13, 15]] / 25.0 < 0.275)], axis=1) - - DV_RED_n[DMG_filter] = DV_RED[DMG_filter] - DV = DV_RED_n - - DV_corr = DV.corr() - - # use the correlations specified for the random variable as - # reference (that we already verified earlier) - # COV_ref = RV.COV - # sig_ref = np.sqrt(np.diagonal(COV_ref)) - # rho_ref = COV_ref / np.outer(sig_ref, sig_ref) - - rho_ref = RV[0].RV_set.Rho([rv.name for rv in RV]) - - # perform the tests - for i in range(len(DV_corr.index)): - for j in range(len(DV_corr.columns)): - ref_i = rho_ref[i, j] - if ref_i != 0.0: - if ref_i > 0.0: - assert DV_corr.iloc[i, j] > 0.97 * ref_i - else: - assert DV_corr.iloc[i, j] < 0.0 - else: - assert DV_corr.iloc[i, j] == pytest.approx(ref_i, - abs=0.15) - - # --------------------------------------------------------------------- - - A.aggregate_results() - - # -------------------------------------------- check result aggregation - - # Aggregate results are checked in detail by other tests. - # Here we only focus on some simple checks to make sure the results - # make sense. - - S = A._SUMMARY - SD = S.describe().T - - assert SD.loc[('inhabitants', ''), 'mean'] == 20.0 - assert SD.loc[('inhabitants', ''), 'std'] == 0.0 - - assert SD.loc[('collapses', 'collapsed'), 'mean'] == 0.0 - assert SD.loc[('collapses', 'collapsed'), 'std'] == 0.0 - - assert_allclose(A._DV_dict['rec_cost'].sum(axis=1), - S.loc[:, ('reconstruction', 'cost')]) - assert_allclose(A._DV_dict['rec_time'].sum(axis=1), - S.loc[:, ('reconstruction', 'time-sequential')]) - assert_allclose(A._DV_dict['rec_time'].max(axis=1), - S.loc[:, ('reconstruction', 'time-parallel')]) - assert_allclose(A._DV_dict['injuries'][0].sum(axis=1), - S.loc[:, ('injuries', 'sev1')]) - assert_allclose(A._DV_dict['injuries'][1].sum(axis=1), - S.loc[:, ('injuries', 'sev2')]) - - # print() \ No newline at end of file diff --git a/pelicun/tests/test_db.py b/pelicun/tests/test_db.py deleted file mode 100644 index a7e5252c5..000000000 --- a/pelicun/tests/test_db.py +++ /dev/null @@ -1,136 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of pelicun. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# pelicun. If not, see . -# -# Contributors: -# Adam Zsarnóczay - -""" -These are unit and integration tests on the db module of pelicun. - -""" - -import pytest - -import os, sys, inspect -from pathlib import Path -current_dir = os.path.dirname( - os.path.abspath(inspect.getfile(inspect.currentframe()))) -parent_dir = os.path.dirname(current_dir) -sys.path.insert(0,os.path.dirname(parent_dir)) - -from pelicun.db import * - -# ----------------------------------------------------------------------------- -# convert P58 data to JSON -# ----------------------------------------------------------------------------- - -def test_convert_P58_data_to_json(): - """ - Test if the damage and loss data from the FEMA P58 project is properly - converted into the SimCenter JSON format using xml and xlsx files avialable - from ATC (the test uses a subset of the files). - """ - - data_dir = Path('resources/io testing/P58 converter/source/').resolve() - ref_dir = Path('resources/io testing/P58 converter/ref/').resolve() - test_dir = Path('test/').resolve() - - try: - # convert the files in the data folder - os.mkdir(test_dir) - convert_P58_data_to_json(data_dir, test_dir) - - # collect the prepared reference files - ref_files = sorted(os.listdir(ref_dir)) - - # collect the converted files - test_files = sorted(os.listdir(test_dir / 'DL json')) - - # compare the reference files to the converted ones - for test, ref in zip(test_files, ref_files): - with open((test_dir / 'DL json') / test,'r') as f_test: - with open(ref_dir / ref,'r') as f_ref: - #print(test, ref) - assert json.load(f_test) == json.load(f_ref) - - finally: - #pass - shutil.rmtree(test_dir) - -# ----------------------------------------------------------------------------- -# create HAZUS JSON files -# ----------------------------------------------------------------------------- - -def test_create_HAZUS_json_files(): - """ - Test if the damage and loss data from HAZUS is properly converted into the - SimCenter JSON format the prepared raw HAZUS JSON files (the test uses a - subset of the HAZUS input data). - """ - - data_dir = Path('resources/io testing/HAZUS creator/source/').resolve() - ref_dir = Path('resources/io testing/HAZUS creator/ref/').resolve() - test_dir = Path('test/').resolve() - - print(test_dir) - - try: - # convert the files in the data folder - os.mkdir(test_dir) - create_HAZUS_EQ_json_files(data_dir, test_dir) - - # collect the prepared reference files - ref_files = sorted(os.listdir(ref_dir / 'DL json')) - - # collect the converted files - test_files = sorted(os.listdir(test_dir / 'DL json/')) - - # compare the reference files to the converted ones - for test, ref in zip(test_files, ref_files): - with open((test_dir / 'DL json') / test, 'r') as f_test: - with open((ref_dir / 'DL json') / ref, 'r') as f_ref: - #print(test, ref) - assert json.load(f_test) == json.load(f_ref) - - # compare the population files - with open(test_dir / 'population.json', 'r') as f_test: - with open(ref_dir / 'population.json', 'r') as f_ref: - #print(test, ref) - assert json.load(f_test) == json.load(f_ref) - - finally: - #pass - shutil.rmtree(test_dir) \ No newline at end of file diff --git a/pelicun/tests/test_file_io.py b/pelicun/tests/test_file_io.py deleted file mode 100644 index 8768ba73f..000000000 --- a/pelicun/tests/test_file_io.py +++ /dev/null @@ -1,435 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of pelicun. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# pelicun. If not, see . -# -# Contributors: -# Adam Zsarnóczay - -""" -These are unit and integration tests on the file_io module of pelicun. - -""" - -import pytest - -import os, sys, inspect, shutil -current_dir = os.path.dirname( - os.path.abspath(inspect.getfile(inspect.currentframe()))) -parent_dir = os.path.dirname(current_dir) -sys.path.insert(0,os.path.dirname(parent_dir)) - -from pelicun.file_io import * - -# ----------------------------------------------------------------------------- -# read_SimCenter_DL_input -# ----------------------------------------------------------------------------- - -def test_read_SimCenter_DL_input_minimum_input(): - """ - Test if the minimum input is read without producing any errors and also - check if some warnings are shown that draw attention to the lack of - potentially important information in the input file. - """ - - # load the reference results - with open('resources/io testing/ref/ref_DL_input_min.json') as f: - ref_DL = json.load(f) - - # read the input file and check for at least one warning - with pytest.warns(UserWarning) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_min.json', - verbose=False) - - # make sure the paths under data sources point to the right locations - assert test_DL['data_sources']['path_CMP_data'] == \ - pelicun_path + '/resources/FEMA_P58_2nd_ed.hdf' - test_DL.pop('data_sources', None) - - # check if the returned dictionary is appropriate - for key in set(list(ref_DL.keys())+list(test_DL.keys())): - assert ref_DL[key] == test_DL[key] - - -def test_read_SimCenter_DL_input_full_input(): - """ - Test if the full input (i.e. all possible fields populated and all supported - decision variables turned on) is read without producing any errors or - warnings. - """ - - # load the reference results - with open('resources/io testing/ref/ref_DL_input_full.json') as f: - ref_DL = json.load(f) - - # read the input file - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_full.json', verbose=False) - - # make sure the paths under data sources point to the right locations - assert test_DL['data_sources']['path_CMP_data'] == \ - pelicun_path + '/resources/FEMA_P58_2nd_ed.hdf' - assert test_DL['data_sources']['path_POP_data'] == \ - pelicun_path + '/resources/FEMA_P58_2nd_ed.hdf' - test_DL.pop('data_sources', None) - - # check if the returned dictionary is appropriate - for key in set(list(ref_DL.keys()) + list(test_DL.keys())): - assert ref_DL[key] == test_DL[key] - -def test_read_SimCenter_DL_input_non_standard_units(): - """ - Test if the inputs are properly converted when non-standard units are used. - """ - - # load the reference results - with open('resources/io testing/ref/ref_DL_input_ns_units.json') as f: - ref_DL = json.load(f) - - # read the input file and check for at least one warning - with pytest.warns(UserWarning) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_ns_units.json', - verbose=False) - - # make sure the path under data sources points to the right location - assert test_DL['data_sources']['path_CMP_data'] == \ - pelicun_path + '/resources/FEMA_P58_2nd_ed.hdf' - test_DL.pop('data_sources', None) - - # check if the returned dictionary is appropriate - for key in set(list(ref_DL.keys()) + list(test_DL.keys())): - assert ref_DL[key] == test_DL[key] - -def test_read_SimCenter_DL_input_unknown_unit(): - """ - Test if a warning is shown if the input file contains an unknown unit type. - """ - - with pytest.warns(UserWarning) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_unknown_unit.json', - verbose=False) - -def test_read_SimCenter_DL_input_injuries_only(): - """ - Test if the inputs are read properly if the user is only interested in - calculating injuries. - """ - - # read the input file and check for at least one error because the plan - # area is not specified in the file - with pytest.raises(ValueError) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_injuries_only.json', - verbose=False) - - # now test if warnings are shown if the plan area is in the file, but the - # population is only specified for the first two stories - - # load the reference results - with open('resources/io testing/ref/' - 'ref_DL_input_injuries_missing_pop.json') as f: - ref_DL = json.load(f) - - with pytest.warns(UserWarning) as e_info: - test_DL = read_SimCenter_DL_input( - 'resources/io testing/test/test_DL_input_injuries_missing_pop.json', - verbose=False) - - # remove the data_sources entry (it has already been tested) - test_DL.pop('data_sources', None) - - # check if the returned dictionary is appropriate - for key in set(list(ref_DL.keys()) + list(test_DL.keys())): - assert ref_DL[key] == test_DL[key] - - # now test if an error is shown if other pieces of data are missing - - # load the reference results - with open('resources/io testing/ref/' - 'ref_DL_input_injuries_missing_data.json') as f: - ref_DL = json.load(f) - - with pytest.raises(ValueError) as e_info: - test_DL = read_SimCenter_DL_input( - 'resources/io testing/test/test_DL_input_injuries_missing_data.json', - verbose=False) - - -def test_read_SimCenter_DL_input_unknown_component_unit(): - """ - Test if an error is shown if the input file contains an unknown unit type - for one of the components. - """ - - with pytest.raises(ValueError) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_unknown_comp_unit.json', - verbose=False) - -def test_read_SimCenter_DL_input_no_realizations(): - """ - Test if an error is shown if the input file contains no information about - the number of realizations to run. - """ - - with pytest.raises(ValueError) as e_info: - test_DL = read_SimCenter_DL_input('resources/io testing/test/' - 'test_DL_input_no_realizations.json', - verbose=False) - -# ----------------------------------------------------------------------------- -# read_SimCenter_EDP_input -# ----------------------------------------------------------------------------- - -def test_read_SimCenter_EDP_input(): - """ - Test if the function can read the provided set of EDPs from a file and - return them and the corresponding additional information in a properly - structured format. - """ - # load the reference results - with open('resources/io testing/ref/ref_EDP_input.json') as f: - ref_EDP = json.load(f) - - # read the input file - test_EDP = read_SimCenter_EDP_input( - 'resources/io testing/test/test_EDP_input.out', - #EDP_kinds=('PID', 'PFA', 'RD', 'PRD'), - units = dict(PID=1., PFA=9.81, RD=1., PRD=0.2), - verbose=False) - - # check if the returned dictionary is appropriate - assert ref_EDP == test_EDP - -# ----------------------------------------------------------------------------- -# read_population_distribution -# ----------------------------------------------------------------------------- - -def test_read_population_distribution(): - """ - Test if the population distribution is read according to the specified - occupancy type and if the peak population is properly converted from - 1/1000*ft2 to 1/m2. - """ - - # load the reference results - with open('resources/io testing/ref/ref_POP_data.json') as f: - ref_POP = json.load(f) - - # read the input file - test_POP = read_population_distribution( - 'resources/io testing/test/test_POP_data.json', - occupancy='Commercial Office', verbose=False) - - # check if the returned dictionary is appropriate - assert ref_POP == test_POP - -# ----------------------------------------------------------------------------- -# read_component_DL_data -# ----------------------------------------------------------------------------- - -def test_read_component_DL_data(): - """ - Test if the component data is properly read from the resource xml files. - Use a series of tests to see if certain component features trigger proper - warnings or errors. - """ - - # basic case with a typical component - comp_info = { - "B1071.011": { - "locations": [2, 2, 3, 3], - "directions": [1, 2, 1, 2], - "quantities": [50.0, 50.0, 50.0, 50.0], - "csg_weights" : [ - [1.0,], - [1.0,], - [1.0,], - [1.0,]], - "cov" : ["0.1", "0.1", "0.1", "0.1"], - "distribution": ["normal", "normal", "normal", "normal"], - "unit" : "ft2" - } - } - - # read the component data - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - # load the reference results - with open('resources/io testing/ref/ref_CMP_B1071.011.json', - 'r') as f: - ref_CMP = json.load(f) - - # check if the returned dictionary is appropriate - for key in set(list(ref_CMP.keys())+list(test_CMP.keys())): - assert ref_CMP[key] == test_CMP[key] - - # acceleration-sensitive component with injuries - comp_info = { - "C3032.001a": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [125.0, 125.0], - "csg_weights" : [ - [0.2, 0.8], - [0.4, 0.6], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ft2" - } - } - - # read the component data - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - # load the reference results - with open('resources/io testing/ref/ref_CMP_C3032.001a.json', - 'r') as f: - ref_CMP = json.load(f) - - # check if the returned dictionary is appropriate - for key in set(list(ref_CMP.keys()) + list(test_CMP.keys())): - assert ref_CMP[key] == test_CMP[key] - - # component with simultaneous damage states - comp_info = { - "D1014.011": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [3.0, 7.0], - "csg_weights": [ - [2./3., 1./3.], - [1./7., 6./7.], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ea" - } - } - - # read the component data - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - # load the reference results - with open('resources/io testing/ref/ref_CMP_D1014.011.json', - 'r') as f: - ref_CMP = json.load(f) - - # check if the returned dictionary is appropriate - assert ref_CMP["D1014.011"] == test_CMP["D1014.011"] - - # component with mutually exclusive damage states - comp_info = { - "B1035.051": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [3.0, 7.0], - "csg_weights": [ - [2./3., 1./3.], - [1./7., 6./7.], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ea" - } - } - - # read the component data - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - # load the reference results - with open('resources/io testing/ref/ref_CMP_B1035.051.json', - 'r') as f: - ref_CMP = json.load(f) - - # check if the returned dictionary is appropriate - assert test_CMP == ref_CMP - - # an incomplete component shall not get parsed and shall produce a warning - comp_info = { - "E2022.023": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [3.0, 7.0], - "csg_weights": [ - [2./3., 1./3.], - [1./7., 6./7.], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ea" - } - } - - # read the component data - with pytest.warns(UserWarning) as e_info: - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - assert test_CMP == {} - - # a component with unknown EDP shall not get parsed and shall produce a warning - comp_info = { - "B1042.001a": { - "locations" : [1, 1], - "directions" : [1, 2], - "quantities" : [3.0, 7.0], - "csg_weights": [ - [2./3., 1./3.], - [1./7., 6./7.], - ], - "cov" : ["1.0", "1.0"], - "distribution": ["normal", "normal"], - "unit" : "ea" - } - } - - # read the component data - with pytest.warns(UserWarning) as e_info: - test_CMP = read_component_DL_data('../resources/FEMA_P58_1st_ed.hdf', - comp_info) - - assert test_CMP == {} - -# ----------------------------------------------------------------------------- -# write_SimCenter_DL_output -# ----------------------------------------------------------------------------- - diff --git a/pelicun/tests/test_model.py b/pelicun/tests/test_model.py deleted file mode 100644 index a95ea1017..000000000 --- a/pelicun/tests/test_model.py +++ /dev/null @@ -1,788 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of pelicun. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# pelicun. If not, see . -# -# Contributors: -# Adam Zsarnóczay - -""" -These are unit and integration tests on the model module of pelicun. - -""" -import pytest -import numpy as np -from numpy.testing import assert_allclose -from scipy.stats import norm, truncnorm - -import os, sys, inspect -current_dir = os.path.dirname( - os.path.abspath(inspect.getfile(inspect.currentframe()))) -parent_dir = os.path.dirname(current_dir) -sys.path.insert(0,os.path.dirname(parent_dir)) - -from pelicun.model import * -from pelicun.tests.test_reference_data import standard_normal_table -#from pelicun.uq import RandomVariable, RandomVariableSubset -from pelicun.uq import * - -# ------------------------------------------------------------------------------- -# Fragility_Function -# ------------------------------------------------------------------------------ - -def test_FragilityFunction_Pexc_lognormal_unit_mean_unit_std(): - """ - Given a lognormal fragility function with theta=1.0 and beta=1.0, test if - the calculated exceedance probabilities are sufficiently accurate. - The reference results are based on a standard normal table. This limits the - accuracy of testing to an absolute probability difference of 1e-5. - """ - # prepare the inputs - EDP = np.exp(np.concatenate([-standard_normal_table[0][::-1], - standard_normal_table[0]])) - reference_P_exc = np.concatenate([0.5 - standard_normal_table[1][::-1], - 0.5 + standard_normal_table[1]]) - - # create the fragility function - RV_A = RandomVariable(name='A', distribution='lognormal', theta=[1.0, 1.0]) - - FF_set = RandomVariableSet('A_set', [RV_A,], [1.0]) - - fragility_function = FragilityFunction(EDP_limit=[RV_A,]) - - # calculate the exceedance probabilities - test_P_exc = fragility_function.P_exc(EDP, DSG_ID=1) - - assert_allclose(test_P_exc, reference_P_exc, atol=1e-5) - -def test_FragilityFunction_Pexc_lognormal_non_trivial_case(): - """ - Given a lognormal fragility function with theta=0.5 and beta=0.2, test if - the calculated exceedance probabilities are sufficiently accurate. - The reference results are based on a standard normal table. This limits the - accuracy of testing to an absolute probability difference of 1e-5. - """ - # prepare the inputs - target_theta = 0.5 - target_beta = 0.2 - EDP = np.concatenate([-standard_normal_table[0][::-1], - standard_normal_table[0]]) - EDP = np.exp(EDP * target_beta + np.log(target_theta)) - reference_P_exc = np.concatenate([0.5 - standard_normal_table[1][::-1], - 0.5 + standard_normal_table[1]]) - - # create the fragility function - RV_A = RandomVariable(name='A', distribution='lognormal', - theta=[target_theta, target_beta]) - - FF_set = RandomVariableSet('A_set', [RV_A, ], [1.0]) - - fragility_function = FragilityFunction(EDP_limit=[RV_A,]) - - # calculate the exceedance probabilities - test_P_exc = fragility_function.P_exc(EDP, DSG_ID=1) - - assert_allclose(test_P_exc, reference_P_exc, atol=1e-5) - -def test_FragilityFunction_Pexc_lognormal_zero_input(): - """ - Given a zero EDP input to a lognormal fragility function, the result shall - be 0 exceedance probability, even though zero input in log space shall - correspond to -infinity. This slight modification makes our lives much - easier when real inputs are fed to the fragility functions. - """ - # create the fragility function - RV_A = RandomVariable(name='A', distribution='lognormal', - theta=[1.0, 1.0]) - - FF_set = RandomVariableSet('A_set', [RV_A, ], [1.0]) - - fragility_function = FragilityFunction(EDP_limit=[RV_A,]) - - # calculate the exceedance probability - test_P_exc = fragility_function.P_exc(0., DSG_ID=1) - - assert test_P_exc == 0. - -def test_FragilityFunction_Pexc_lognormal_nonzero_scalar_input(): - """ - Given a nonzero scalar EDP input, the fragility function should return a - nonzero scalar output. - """ - # create the fragility function - RV_A = RandomVariable(name='A', distribution='lognormal', - theta=[1.0, 1.0]) - - FF_set = RandomVariableSet('A_set', [RV_A, ], [1.0]) - fragility_function = FragilityFunction(EDP_limit=[RV_A,]) - - # calculate the exceedance probabilities - test_P_exc = fragility_function.P_exc(standard_normal_table[0][0], DSG_ID=1) - - assert test_P_exc == pytest.approx(standard_normal_table[1][0], abs=1e-5) - -def test_FragilityFunction_Pexc_multiple_damage_states_with_correlation(): - """ - Test if the fragility function returns an appropriate list of exceedance - probabilities for various scenarios with multiple damage states that have - potentially correlated fragilities. - - """ - # P_exc is requested for a list of EDPs - EDP = np.exp(np.linspace(-2., 2., num=11)) - - # 3 damage state groups, perfectly correlated - # the DSGs are unordered in the RV only to make the test more general - dims = 3 - ref_mean = np.exp([2.0, 0., 0.5]) - ref_std = [1.5, 0.5, 1.0] - ref_rho = np.ones((dims, dims)) * 1. - np.fill_diagonal(ref_rho, 1.0) - - RV_reg = RandomVariableRegistry() - - for i, (name, theta, beta) in enumerate(zip(['C', 'A', 'B'], - ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=name, distribution='lognormal', - theta=[theta, beta])) - - # a single DSG fragility - FF_set = RandomVariableSet('A_set', [RV_reg.RV['A'], ], [1.0]) - fragility_function = FragilityFunction(EDP_limit=[RV_reg.RV['A'],]) - - test_res = fragility_function.P_exc(EDP, 1) - ref_res = norm.cdf(np.log(EDP), - loc=np.log(ref_mean[1]), scale=ref_std[1]) - assert_allclose(test_res, ref_res) - - # three DSGs in proper order, P_exc for A is requested considering all - # three - FF_set = RandomVariableSet('FF_0', - [RV_reg.RV[rv] for rv in ['A', 'B', 'C']], ref_rho) - fragility_function = FragilityFunction( - EDP_limit=[RV_reg.RV[rv] for rv in ['A', 'B', 'C']]) - - test_res = fragility_function.P_exc(EDP, 1) - ref_res = [norm.cdf(np.log(EDP), - loc=np.log(ref_mean[i]), scale=ref_std[i]) - for i in range(3)] - ref_res = np.max(np.asarray(ref_res), axis=0) - assert_allclose(test_res, ref_res) - - # change the covariance matrix - uncorrelated fragilities - ref_rho = np.ones((dims, dims)) * 0. - np.fill_diagonal(ref_rho, 1.0) - - FF_set = RandomVariableSet('FF_0', - [RV_reg.RV[rv] for rv in ['A', 'B', 'C']], - ref_rho) - fragility_function = FragilityFunction( - EDP_limit=[RV_reg.RV[rv] for rv in ['A', 'B', 'C']]) - - # three DSGs, still interested in P_exc for A considering all three - test_res = fragility_function.P_exc(EDP, 1) - ref_res = [norm.cdf(np.log(EDP), - loc=np.log(ref_mean[i]), scale=ref_std[i]) - for i in range(3)] - ref_res[1] = ref_res[1] * (1. - ref_res[0]) - ref_res[2] = ref_res[2] * (1. - np.sum(np.asarray(ref_res[:2]), axis=0)) - ref_res = np.sum(np.asarray(ref_res), axis=0) - assert_allclose(ref_res, test_res) - -def test_FragilityFunction_DSG_ID_given_EDP_general(): - """ - Test if the DSG_IDs returned by the function are appropriate using - exceedance probabilities from the already tested P_exc function. - - """ - # 3 damage state groups, perfectly correlated - # the DSGs are unordered in the RV only to make the test more general - dims = 3 - ref_mean = np.exp([2.0, 0., 0.5]) - ref_std = [1.5, 0.5, 1.0] - ref_rho = np.ones((dims, dims)) * 1. - np.fill_diagonal(ref_rho, 1.0) - - RV_reg = RandomVariableRegistry() - - for i, (name, theta, beta) in enumerate(zip(['C', 'A', 'B'], - ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=name, distribution='lognormal', - theta=[theta, beta])) - - FF_set = RandomVariableSet('FF_0', - [RV_reg.RV[rv] for rv in ['A', 'B', 'C']], - ref_rho) - fragility_function = FragilityFunction( - EDP_limit=[RV_reg.RV[rv] for rv in ['A', 'B', 'C']]) - - RV_reg.add_RV_set(FF_set) - RV_reg.generate_samples(sample_size=10000) - - # same EDP 10^5 times to allow for P_exc-based testing - for target_EDP in [0., 0.75, 2.0]: - - # create the EDP vector - EDP = np.ones(10000) * np.exp(target_EDP) - - # get the DSG_IDs - DSG_ID = fragility_function.DSG_given_EDP(EDP) - - # calculate the DSG_ID probabilities - P_DS_test = np.histogram(DSG_ID.values, - bins=np.arange(5) - 0.5, density=True)[0] - - # use the P_exc function to arrive at the reference DSG_ID probabilities - P_exc = np.asarray(list(map( - lambda x: fragility_function.P_exc(np.exp(target_EDP), x), - [0, 1, 2, 3]))) - P_DS_ref = np.concatenate([P_exc[:-1] - P_exc[1:], [P_exc[-1], ]]) - - # compare - assert_allclose(P_DS_test, P_DS_ref, atol=0.02) - - # random set of EDPs uniformly distributed over the several different - # domains - for a, b in [[-1., -0.9], [1., 1.1], [-1., 1.]]: - EDP = np.exp(np.random.uniform(a, b, 10000)) - - # get a DSG_ID sample for each EDP - DSG_ID = fragility_function.DSG_given_EDP(EDP) - - # get the test DSG_ID probabilities - P_DS_test = \ - np.histogram(DSG_ID.values, bins=np.arange(5) - 0.5, - density=True)[0] - - # get the EDP-P_exc functions - basically the fragility functions - EDP = np.exp(np.linspace(a, b, num=100)) - P_exc_f = np.asarray( - list(map(lambda x: fragility_function.P_exc(EDP, x), [0, 1, 2, 3]))) - - # Calculate the area enclosed by the two functions that define each DS - # it should be the same as the P_DS from the test - CDF = [p - np.max(P_exc_f[i + 1:], axis=0) - for i, p in enumerate(P_exc_f[:3])] - CDF.append(P_exc_f[-1]) - CDF = np.asarray(CDF) - P_DS_ref = np.asarray( - list(map(lambda x: np.trapz(CDF[x], np.log(EDP)), - [0, 1, 2, 3]))) / (b - a) - - assert_allclose(P_DS_test, P_DS_ref, atol=0.02) - -''' -def test_FragilityFunction_DSG_given_EDP_insufficient_samples(): - """ - Test if the function raises an error message if the number of EDP values - provided is greater than the number of available samples from the RVS. - - """ - # create a simple random variable - RV = RandomVariable(ID=1, dimension_tags=['A'], - distribution_kind='lognormal', - theta=1.0, COV=1.0) - - # assign it to the fragility function - RVS = RandomVariableSubset(RV=RV, tags=['A']) - FF = FragilityFunction(EDP_limit=RVS) - - # sample 10 realizations - RVS.sample_distribution(10) - - # create 100 EDP values - EDP = np.ones(100) - - # try to get the DSG_IDs... and expect an error - with pytest.raises(ValueError) as e_info: - FF.DSG_given_EDP(EDP) -''' - -# ------------------------------------------------------------------------------ -# Consequence_Function -# ------------------------------------------------------------------------------ - -def test_ConsequenceFunction_fixed_median_value(): - """ - Test if the function returns the prescribed median. - """ - for dist in ['normal', 'lognormal']: - RV = RandomVariable(name='A', distribution=dist, - theta=[1.0, 1.0]) - - conseq_function = ConsequenceFunction( - DV_median=prep_constant_median_DV(1.0), - DV_distribution=RV - ) - - assert conseq_function.median() == 1.0 - assert conseq_function.median(1.0) == 1.0 - assert conseq_function.median([1., 1.]) == 1.0 - -def test_ConsequenceFunction_bounded_linear_median_value(): - """ - Test if the function returns an appropriate output for single quantities - and for quantity arrays, and if it raises an error if the quantity is not - specified for a quantity-dependent median. - """ - test_quants = [0.5, 1.0, 1.5, 2.0, 2.5] - ref_vals = [2.0, 2.0, 1.5, 1.0, 1.0] - - for dist in ['normal', 'lognormal']: - RV = RandomVariable(name='A', distribution=dist, - theta=[1.0, 1.0]) - - f_median = prep_bounded_linear_median_DV( - median_max=2.0, median_min=1.0, - quantity_lower=1.0, quantity_upper=2.0 - ) - conseq_function = ConsequenceFunction( - DV_median=f_median, - DV_distribution=RV - ) - - # should raise an error if the quantity is not specified - with pytest.raises(ValueError) as e_info: - conseq_function.median() - - # single quantities - for quant, ref_val in zip(test_quants, ref_vals): - assert conseq_function.median(quantity=quant) == ref_val - - # quantity array - test_medians = conseq_function.median(quantity=test_quants) - assert_allclose(test_medians, ref_vals, rtol=1e-10) - - -def test_ConsequenceFunction_sample_unit_DV(): - """ - Test if the function samples the DV distribution properly. Note that we - have already tested the sampling algorithm in the uq module, so we will not - do a thorough verification of the samples here, but rather check for errors - in the inputs that would typically lead to significant mistakes in the - results. - """ - test_quants = [0.5, 1.0, 1.5, 2.0, 2.5] - - # create a Random Variable with 3 correlated decision variables - dims = 3 - ref_mean = [1., 1., 0.] - ref_std = [0.4, 0.3, 0.2] - ref_rho = np.ones((dims, dims)) * 0.8 - np.fill_diagonal(ref_rho, 1.0) - - ref_mean[2] = np.exp(ref_mean[2]) - - # prepare lower truncation limits at 0 for all... - tr_lower = np.zeros(dims).tolist() - # and an upper limit at 2 sigma for the second - tr_upper = [np.inf, 1.6, np.inf] - - RV_reg = RandomVariableRegistry() - - for i, (name, dist, theta, beta) in enumerate( - zip(['A', 'B', 'C'], ['normal', 'normal', 'lognormal'], - ref_mean, ref_std)): - RV_reg.add_RV( - RandomVariable(name=name, distribution=dist, theta=[theta, beta], - truncation_limits=[tr_lower[i], tr_upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('set_A', [RV_reg.RV[rv] for rv in ['A', 'B', 'C']], - ref_rho)) - RV_reg.generate_samples(sample_size=1000) - - # first test sampling for each decision variable - for r_i, tag in enumerate(['A', 'B', 'C']): - - # use fixed value for 'B' and bounded linear for the other two - if tag == 'B': - f_median = prep_constant_median_DV(10.) - else: - f_median = prep_bounded_linear_median_DV( - median_max=20.0, median_min=2.0, - quantity_lower=1.0, quantity_upper=2.0 - ) - - # create the consequence function - conseq_function = ConsequenceFunction( - DV_median=f_median, - DV_distribution=RV_reg.RV[tag] - ) - - for qnt in test_quants: - samples = conseq_function.sample_unit_DV(quantity=qnt, - sample_size=1000) - - # transform the results to log space for 'C' to facilitate testing - if tag == 'C': - samples = np.log(samples) - ref_mu = np.log(f_median(qnt)) - ref_min = np.log(max(np.nextafter(0, 1), tr_lower[r_i])) - ref_max = np.log(max(np.nextafter(0, 1), tr_upper[r_i])) - a = (ref_min - np.log(ref_mean[r_i])) / ref_std[r_i] - b = (ref_max - np.log(ref_mean[r_i])) / ref_std[r_i] - ref_max = ref_mu * b - else: - ref_mu = f_median(qnt) - ref_min = tr_lower[r_i] - a = (ref_min - ref_mean[r_i]) / ref_std[r_i] - b = (tr_upper[r_i] - ref_mean[r_i]) / ref_std[r_i] - ref_max = ref_mu * b - - trNorm = truncnorm(a=a, b=b, loc=ref_mu, - scale=ref_std[r_i] if tag == 'C' - else ref_std[r_i] * ref_mu) - ref_samples = trNorm.rvs(size=1000) - - # test the means and coefficients of variation - assert np.mean(samples) == pytest.approx(np.mean(ref_samples), - rel=0.1) - assert np.std(samples) == pytest.approx(np.std(ref_samples), - rel=0.15) - - # test the limits - assert np.min(samples) > ref_min - assert np.max(samples) < ref_max - -''' -def test_ConsequenceFunction_sample_unit_DV_insufficient_samples(): - """ - Test if the function raises an error message if the number of samples - requested is greater than the number of available samples from the RVS. - - """ - # create a simple random variable - RV = RandomVariable(ID=1, dimension_tags=['A'], - distribution_kind='lognormal', - theta=1.0, COV=1.0) - - # assign it to the fragility function - RVS = RandomVariableSubset(RV=RV, tags=['A']) - CF = ConsequenceFunction(DV_median=prep_constant_median_DV(1.0), - DV_distribution = RVS) - - # sample 10 realizations - RVS.sample_distribution(10) - - # try to get the DSG_IDs... and expect an error - with pytest.raises(ValueError) as e_info: - CF.sample_unit_DV(sample_size=100) -''' - -# ------------------------------------------------------------------------------ -# Damage State -# ------------------------------------------------------------------------------ -def test_DamageState_weight(): - """ - Test if the damage state returns the assigned weight value. - """ - DS = DamageState(ID=1, weight=0.4) - - assert DS.weight == 0.4 - - -def test_DamageState_description(): - """ - Test if the damage state returns the assigned description. - """ - ref_str = 'Test description.' - DS = DamageState(ID=1, description=ref_str) - - assert DS.description == ref_str - - -def test_DamageState_repair_cost_sampling(): - """ - Test if the repair cost consequence function is properly linked to the - damage state and if it returns the requested samples. - """ - - # create a consequence function (the small standard deviation facilitates - # the assertion of the returned samples) - f_median = prep_bounded_linear_median_DV( - median_max=2.0, median_min=1.0, - quantity_lower=10.0, quantity_upper=20.0 - ) - - RV = RandomVariable(name='A', distribution='lognormal', - theta=[1.0, 1e-10]) - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RV) - RV_reg.generate_samples(sample_size=5) - - CF = ConsequenceFunction(DV_median=f_median, - DV_distribution=RV) - - # create a damage state and assign the CF to it - DS = DamageState(ID=1, repair_cost_CF=CF) - - # sample the repair cost distribution - test_vals = DS.unit_repair_cost(quantity=[5.0, 10.0, 15.0, 20.0, 25.0], - sample_size=4) - - assert test_vals.size == 5 - - ref_medians = np.asarray([2.0, 2.0, 1.5, 1.0, 1.0]) - - assert_allclose(test_vals, ref_medians, rtol=1e-4) - - -def test_DamageState_reconstruction_time_sampling(): - """ - Test if the reconstruction time consequence function is properly linked to - the damage state and if it returns the requested samples. - """ - - # create a consequence function (the small standard deviation facilitates - # the assertion of the returned samples) - f_median = prep_bounded_linear_median_DV( - median_max=2.0, median_min=1.0, - quantity_lower=10.0, quantity_upper=20.0 - ) - - RV = RandomVariable(name='A', distribution='lognormal', - theta=[1.0, 1e-10]) - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RV) - RV_reg.generate_samples(sample_size=5) - - CF = ConsequenceFunction(DV_median=f_median, - DV_distribution=RV) - - # create a damage state and assign the CF to it - DS = DamageState(ID=1, reconstruction_time_CF=CF) - - # sample the repair cost distribution - test_vals = DS.unit_reconstruction_time( - quantity=[5.0, 10.0, 15.0, 20.0, 25.0], - sample_size=4) - - assert test_vals.size == 5 - - ref_medians = np.asarray([2.0, 2.0, 1.5, 1.0, 1.0]) - - assert_allclose(test_vals, ref_medians, rtol=1e-4) - -def test_DamageState_red_tag_sampling(): - """ - Test if the red tag consequence function is properly linked to the damage - state and if it returns the requested samples. - """ - - # create a consequence function - f_median = prep_constant_median_DV(0.25) - - RV = RandomVariable(name='A', distribution='normal', - theta=[1.0, 1.0], - truncation_limits=[0., 4.]) - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RV) - RV_reg.generate_samples(sample_size=1000) - - CF = ConsequenceFunction(DV_median=f_median, - DV_distribution=RV) - - # create a damage state and assign the CF to it - DS = DamageState(ID=1, red_tag_CF=CF) - - # sample the repair cost distribution - test_vals = DS.red_tag_dmg_limit(sample_size=1000) - - assert test_vals.size == 1000 - - # sample the reference truncated normal distribution and use the samples for testing - ref_samples = truncnorm.rvs(a=-1., b=3., loc=0.25, scale=0.25, size=1000) - - assert np.mean(test_vals) == pytest.approx(np.mean(ref_samples), rel=0.1) - assert np.std(test_vals) == pytest.approx(np.std(ref_samples), rel=0.1) - - assert np.min(test_vals) > 0. - assert np.max(test_vals) < 1. - - -def test_DamageState_injury_sampling(): - """ - Test if the set of injury consequence functions is properly linked to the - damage state and if it returns the requested samples. - """ - - # create two consequence functions that are correlated - dims = 2 - ref_median = [0.5, 0.4] - ref_sig = [0.5, 0.6] - ref_rho = np.ones((dims, dims)) * 0.8 - np.fill_diagonal(ref_rho, 1.0) - - tr_lower = np.zeros(2) - tr_upper = 1. + ((np.ones(2) - ref_median) / ref_median) - - f_median_0 = prep_constant_median_DV(ref_median[0]) - f_median_1 = prep_constant_median_DV(ref_median[1]) - - RV_reg = RandomVariableRegistry() - - for i, (name, std) in enumerate(zip(['A', 'B'], ref_sig)): - RV_reg.add_RV( - RandomVariable(name=name, distribution='normal', theta=[1.0, std], - truncation_limits=[tr_lower[i], tr_upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('set_A', [RV_reg.RV[rv] for rv in ['A', 'B']], - ref_rho)) - RV_reg.generate_samples(sample_size=10000) - - CF_0 = ConsequenceFunction(DV_median=f_median_0, - DV_distribution=RV_reg.RV['A']) - CF_1 = ConsequenceFunction(DV_median=f_median_1, - DV_distribution=RV_reg.RV['B']) - - # create a damage state and assign the CF list to it - DS = DamageState(ID=1, injuries_CF_set=[CF_0, CF_1]) - - # sample the two types of injuries and check if the values are appropriate - for s_i in [0, 1]: - samples = DS.unit_injuries(severity_level=s_i, sample_size=10000) - assert samples.size == 10000 - - # sample the reference truncated normal distribution and use the - # samples for testing - ref_samples = truncnorm.rvs(a=(-1.) / ref_sig[s_i], - b=(tr_upper[s_i] - 1.) / ref_sig[s_i], - loc=ref_median[s_i], - scale=ref_sig[s_i] * ref_median[s_i], - size=1000) - - assert np.mean(samples) == pytest.approx(np.mean(ref_samples), rel=0.1) - assert np.std(samples) == pytest.approx(np.std(ref_samples), abs=0.02) - assert np.min(samples) == pytest.approx(0., abs=0.05) - assert np.max(samples) == pytest.approx(1., abs=0.05) - - # finally, check the correlation between A and B - test_corr = np.corrcoef(pd.DataFrame(RV_reg.RV_set['set_A'].samples).values, - rowvar=False)[0, 1] - assert test_corr == pytest.approx(0.8, rel=0.1) - -# ------------------------------------------------------------------------------ -# Damage State Group -# ------------------------------------------------------------------------------ -def test_DamageStateGroup_kind(): - """ - Test if the damage state group returns the assigned group type. - """ - ref_kind = 'single' - DSG = DamageStateGroup(ID=1, DS_set=None, DS_set_kind=ref_kind) - - assert DSG._DS_set_kind == ref_kind - -# ------------------------------------------------------------------------------ -# Performance Group -# ------------------------------------------------------------------------------ - -def test_PerformanceGroup_Pexc(): - """ - Test if the performance group returns exceedance probabilities from the - assigned fragility function for a given damage state group appropriately. - """ - - RV_reg = RandomVariableRegistry() - - # create the fragility function - for i, (name, theta, beta) in enumerate(zip(['A', 'B'], - [0.5, 0.7], - [0.4, 0.4])): - RV_reg.add_RV(RandomVariable(name=name, distribution='lognormal', - theta=[theta, beta])) - - FF_set = RandomVariableSet('A_set', [RV_reg.RV['A'], RV_reg.RV['B']], - np.ones((2,2))) - fragility_function = FragilityFunction( - EDP_limit=[RV_reg.RV['A'], RV_reg.RV['B']]) - - RV_reg.add_RV_set(FF_set) - - # create two damage state groups - DSG_0 = DamageStateGroup(ID=1, DS_set=None, DS_set_kind='single') - DSG_1 = DamageStateGroup(ID=2, DS_set=None, DS_set_kind='single') - - # create a random quantity variable - QNT = RandomVariable(name='Q_A', distribution='normal', - theta=[100., np.sqrt(100)]) - RV_reg.add_RV(QNT) - - # create the performance group - PG = PerformanceGroup(ID=1, location=1, quantity=QNT, - fragility_functions=fragility_function, - DSG_set=[DSG_0, DSG_1]) - - EDP = np.linspace(0.1, 0.9, 9) - - for edp in EDP: - assert fragility_function.P_exc(edp, DSG_ID=1) == PG.P_exc(edp, DSG_ID=1) - assert fragility_function.P_exc(edp, DSG_ID=2) == PG.P_exc(edp, DSG_ID=2) - - assert_allclose(PG.P_exc(EDP, DSG_ID=1), PG.P_exc(EDP, DSG_ID=1), - rtol=1e-10) - assert_allclose(PG.P_exc(EDP, DSG_ID=2), PG.P_exc(EDP, DSG_ID=2), - rtol=1e-10) - -# ------------------------------------------------------------------------------ -# Fragility Group -# ------------------------------------------------------------------------------ -def test_FragilityGroup_description_and_name(): - """ - Test if the fragility group returns the assigned description. - """ - ref_desc = 'Test long description.' - ref_name = 'Test short description.' - - # create a dummy performance group - - # create the fragility function - RV = RandomVariable(name='A', distribution='lognormal', theta=[0.5, 0.4]) - FF = FragilityFunction(EDP_limit=[RV,]) - - # some of the inputs below do not make sense, but since the subject of the - # test is not the performance group, they will work fine - PG = PerformanceGroup(ID=1, location=1, - quantity=RV, - fragility_functions=FF, - DSG_set=None) - - FG = FragilityGroup(ID=1, demand_type='PID', - performance_groups = [PG, ], - name=ref_name, description=ref_desc) - - assert FG.name == ref_name - assert FG.description == ref_desc diff --git a/pelicun/tests/test_pelicun.py b/pelicun/tests/test_pelicun.py deleted file mode 100644 index 53ef3fa24..000000000 --- a/pelicun/tests/test_pelicun.py +++ /dev/null @@ -1,226 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of pelicun. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# pelicun. If not, see . -# -# Contributors: -# Adam Zsarnóczay - -""" -This module defines helper methods for pelicun unit tests. - -""" - -import pytest -import numpy as np -from scipy.stats import normaltest, t, chi2 -from scipy.stats import kde - -import os, sys, inspect -current_dir = os.path.dirname( - os.path.abspath(inspect.getfile(inspect.currentframe()))) -parent_dir = os.path.dirname(current_dir) -sys.path.insert(0,os.path.dirname(parent_dir)) - -def prob_approx(prob, atol_50): - if prob > 0 and prob < 1: - atol = 2.0 * np.sqrt(prob * (1 - prob)) * atol_50 - else: - atol = 0.01 * atol_50 - - return pytest.approx(prob, abs=atol) - - -def prob_allclose(reference, test, atol_50): - for ref, tst in zip(reference, test): - assert ref == prob_approx(tst, atol_50) - -def assert_normal_distribution(sampling_function, ref_mean, ref_COV): - """ - Check if the sampling function produces samples from a normal distribution - with mean and COV equal to the provided reference values. The means and - variances of a multivariate normal distribution are tested by looking at - its marginal distributions. The correlation structure is tested by - evaluating the likelihood of being in an orthant of the input space. - - The samples will never have the exact same mean and variance, which makes - such assertions rather difficult. We perform three hypothesis tests: - - (i) test if the distribution is normal using the K2 test by D'Agostino and - Pearson (1973); - (ii) assuming a normal distribution test if its mean is the reference mean; - (iii) assuming a normal distribution test if its standard deviation is the - reference standard deviation. - - The level of significance is set at 0.01. This would often lead to false - negatives during unit testing, but with a much smaller value we risk not - recognizing slight, but consistent errors in sampling. Therefore, instead - of lowering the level of significance, we adopt the following strategy: If - the samples do not support our null hypothesis, we draw more samples - - this conceptually corresponds to performing additional experiments when we - experience a strange result in testing. If the underlying distribution is - truly not normal, drawing more samples should not help. In the other false - negative cases, this should correct the assertion and reduce the likelihood - of false negatives to a sufficiently low level that makes this assertion - applicable for unit testing. Note that since the additional test results - are influenced by the previous (outlier) samples, the results of hypothesis - testing are conditioned on the failure of previous tests. Therefore, we - have non-negligible probability of false negatives in the additional tests. - Given at most 6 sample draws, a false negative assertion becomes a - sufficiently rare event to allow this function to work for unit testing. - - Parameters - ---------- - sampling_function: function - Any function that takes sample_size as its only argument and provides - that many samples of a supposedly normal distribution as a result. - ref_mean: float scalar or ndarray - Mean(s) of the reference distribution. - ref_COV: float scalar or ndarray - Covariance matrix of the reference distribution. - - Returns - ------- - output: int - Assertion result. True if the samples support the hypotheses, False - otherwise. - """ - - # get the number of dimensions - ref_means = np.asarray(ref_mean) - if ref_means.shape == (): - ndim = 1 - ref_means = np.asarray([ref_means]) - ref_COV = np.asarray([ref_COV]) - ref_stds = np.sqrt(ref_COV) - else: - ndim = len(ref_means) - ref_COV = np.asarray(ref_COV) - ref_stds = np.sqrt(np.diagonal(ref_COV)) - - #prepare variables for correlation checks - lower = np.ones(ndim) * -np.inf - upper = np.ones(ndim) - lowinf = np.isneginf(lower) - uppinf = np.isposinf(upper) - infin = 2.0 * np.ones(ndim) - np.putmask(infin, lowinf, 0) - np.putmask(infin, uppinf, 1) - np.putmask(infin, lowinf * uppinf, -1) - corr = ref_COV / np.outer(ref_stds, ref_stds) - correl = corr[np.tril_indices(ndim, -1)] - # estimate the proportion of samples that should be in the - # orthant below the mean + std based on the covariance matrix - __, est_prop, __ = kde.mvn.mvndst(lower, upper, infin, correl) - - # initialize the control parameters - alpha = 0.01 - chances = 6 - size = 5 - samples = None - - # test the means and variances - for j in range(chances): - size = size * 4 - - if samples is not None: - samples = np.concatenate((samples, - sampling_function(sample_size=size)), - axis=0) - else: - samples = sampling_function(sample_size=size) - size = len(samples) - - test_result = True - # for each dimension... - for d in range(ndim): - if test_result == True: - ref_mean = ref_means[d] - ref_std = ref_stds[d] - if ndim > 1: - samples_d = np.transpose(samples)[d] - else: - samples_d = samples - # test if the distribution is normal - __, p_k2 = normaltest(samples_d) - if p_k2 > alpha: - - # test if the mean and stdev are appropriate - sample_mean = np.mean(samples_d) - sample_std = np.std(samples_d, ddof=1) - - df = size - 1 - mean_stat = ((sample_mean - ref_mean) / - (sample_std / np.sqrt(size))) - p_mean = 2 * t.cdf(-np.abs(mean_stat), df=df) - - std_stat = df * sample_std ** 2. / ref_std ** 2. - std_stat_delta = np.abs(std_stat - df) - p_std = (chi2.cdf(df - std_stat_delta, df=df) + - (1. - chi2.cdf(df + std_stat_delta, df=df))) - - if (p_mean < alpha) or (p_std < alpha): - test_result = False - else: - test_result = False - - if test_result == False: - continue - - # if the distribution still seems normal and this is a multivariate - # case, then test the correlation structure - else: - if ndim > 1: - # calculate the proportion of samples in the orthant below the - # (sample) mean + one std - sample_mean = np.mean(samples, axis=0) - sample_std = np.std(samples, axis=0, ddof=1) - orthant_limit = sample_mean + sample_std - empirical_prop = np.sum(np.all(samples. -# -# Contributors: -# Adam Zsarnóczay - -""" -This file contains reference data used in the unit tests for pelicun. - -""" - -import numpy as np - -standard_normal_table = np.transpose(np.array([ - [0.00, 0.00000], [0.01, 0.00399], [0.02, 0.00798], [0.03, 0.01197], [0.04, 0.01595], [0.05, 0.01994], [0.06, 0.02392], [0.07, 0.02790], [0.08, 0.03188], [0.09, 0.03586], - [0.10, 0.03983], [0.11, 0.04380], [0.12, 0.04776], [0.13, 0.05172], [0.14, 0.05567], [0.15, 0.05962], [0.16, 0.06356], [0.17, 0.06749], [0.18, 0.07142], [0.19, 0.07535], - [0.20, 0.07926], [0.21, 0.08317], [0.22, 0.08706], [0.23, 0.09095], [0.24, 0.09483], [0.25, 0.09871], [0.26, 0.10257], [0.27, 0.10642], [0.28, 0.11026], [0.29, 0.11409], - [0.30, 0.11791], [0.31, 0.12172], [0.32, 0.12552], [0.33, 0.12930], [0.34, 0.13307], [0.35, 0.13683], [0.36, 0.14058], [0.37, 0.14431], [0.38, 0.14803], [0.39, 0.15173], - [0.40, 0.15542], [0.41, 0.15910], [0.42, 0.16276], [0.43, 0.16640], [0.44, 0.17003], [0.45, 0.17364], [0.46, 0.17724], [0.47, 0.18082], [0.48, 0.18439], [0.49, 0.18793], - [0.50, 0.19146], [0.51, 0.19497], [0.52, 0.19847], [0.53, 0.20194], [0.54, 0.20540], [0.55, 0.20884], [0.56, 0.21226], [0.57, 0.21566], [0.58, 0.21904], [0.59, 0.22240], - [0.60, 0.22575], [0.61, 0.22907], [0.62, 0.23237], [0.63, 0.23565], [0.64, 0.23891], [0.65, 0.24215], [0.66, 0.24537], [0.67, 0.24857], [0.68, 0.25175], [0.69, 0.25490], - [0.70, 0.25804], [0.71, 0.26115], [0.72, 0.26424], [0.73, 0.26730], [0.74, 0.27035], [0.75, 0.27337], [0.76, 0.27637], [0.77, 0.27935], [0.78, 0.28230], [0.79, 0.28524], - [0.80, 0.28814], [0.81, 0.29103], [0.82, 0.29389], [0.83, 0.29673], [0.84, 0.29955], [0.85, 0.30234], [0.86, 0.30511], [0.87, 0.30785], [0.88, 0.31057], [0.89, 0.31327], - [0.90, 0.31594], [0.91, 0.31859], [0.92, 0.32121], [0.93, 0.32381], [0.94, 0.32639], [0.95, 0.32894], [0.96, 0.33147], [0.97, 0.33398], [0.98, 0.33646], [0.99, 0.33891], - [1.00, 0.34134], [1.01, 0.34375], [1.02, 0.34614], [1.03, 0.34849], [1.04, 0.35083], [1.05, 0.35314], [1.06, 0.35543], [1.07, 0.35769], [1.08, 0.35993], [1.09, 0.36214], - [1.10, 0.36433], [1.11, 0.36650], [1.12, 0.36864], [1.13, 0.37076], [1.14, 0.37286], [1.15, 0.37493], [1.16, 0.37698], [1.17, 0.37900], [1.18, 0.38100], [1.19, 0.38298], - [1.20, 0.38493], [1.21, 0.38686], [1.22, 0.38877], [1.23, 0.39065], [1.24, 0.39251], [1.25, 0.39435], [1.26, 0.39617], [1.27, 0.39796], [1.28, 0.39973], [1.29, 0.40147], - [1.30, 0.40320], [1.31, 0.40490], [1.32, 0.40658], [1.33, 0.40824], [1.34, 0.40988], [1.35, 0.41149], [1.36, 0.41308], [1.37, 0.41466], [1.38, 0.41621], [1.39, 0.41774], - [1.40, 0.41924], [1.41, 0.42073], [1.42, 0.42220], [1.43, 0.42364], [1.44, 0.42507], [1.45, 0.42647], [1.46, 0.42785], [1.47, 0.42922], [1.48, 0.43056], [1.49, 0.43189], - [1.50, 0.43319], [1.51, 0.43448], [1.52, 0.43574], [1.53, 0.43699], [1.54, 0.43822], [1.55, 0.43943], [1.56, 0.44062], [1.57, 0.44179], [1.58, 0.44295], [1.59, 0.44408], - [1.60, 0.44520], [1.61, 0.44630], [1.62, 0.44738], [1.63, 0.44845], [1.64, 0.44950], [1.65, 0.45053], [1.66, 0.45154], [1.67, 0.45254], [1.68, 0.45352], [1.69, 0.45449], - [1.70, 0.45543], [1.71, 0.45637], [1.72, 0.45728], [1.73, 0.45818], [1.74, 0.45907], [1.75, 0.45994], [1.76, 0.46080], [1.77, 0.46164], [1.78, 0.46246], [1.79, 0.46327], - [1.80, 0.46407], [1.81, 0.46485], [1.82, 0.46562], [1.83, 0.46638], [1.84, 0.46712], [1.85, 0.46784], [1.86, 0.46856], [1.87, 0.46926], [1.88, 0.46995], [1.89, 0.47062], - [1.90, 0.47128], [1.91, 0.47193], [1.92, 0.47257], [1.93, 0.47320], [1.94, 0.47381], [1.95, 0.47441], [1.96, 0.47500], [1.97, 0.47558], [1.98, 0.47615], [1.99, 0.47670], - [2.00, 0.47725], [2.01, 0.47778], [2.02, 0.47831], [2.03, 0.47882], [2.04, 0.47932], [2.05, 0.47982], [2.06, 0.48030], [2.07, 0.48077], [2.08, 0.48124], [2.09, 0.48169], - [2.10, 0.48214], [2.11, 0.48257], [2.12, 0.48300], [2.13, 0.48341], [2.14, 0.48382], [2.15, 0.48422], [2.16, 0.48461], [2.17, 0.48500], [2.18, 0.48537], [2.19, 0.48574], - [2.20, 0.48610], [2.21, 0.48645], [2.22, 0.48679], [2.23, 0.48713], [2.24, 0.48745], [2.25, 0.48778], [2.26, 0.48809], [2.27, 0.48840], [2.28, 0.48870], [2.29, 0.48899], - [2.30, 0.48928], [2.31, 0.48956], [2.32, 0.48983], [2.33, 0.49010], [2.34, 0.49036], [2.35, 0.49061], [2.36, 0.49086], [2.37, 0.49111], [2.38, 0.49134], [2.39, 0.49158], - [2.40, 0.49180], [2.41, 0.49202], [2.42, 0.49224], [2.43, 0.49245], [2.44, 0.49266], [2.45, 0.49286], [2.46, 0.49305], [2.47, 0.49324], [2.48, 0.49343], [2.49, 0.49361], - [2.50, 0.49379], [2.51, 0.49396], [2.52, 0.49413], [2.53, 0.49430], [2.54, 0.49446], [2.55, 0.49461], [2.56, 0.49477], [2.57, 0.49492], [2.58, 0.49506], [2.59, 0.49520], - [2.60, 0.49534], [2.61, 0.49547], [2.62, 0.49560], [2.63, 0.49573], [2.64, 0.49585], [2.65, 0.49598], [2.66, 0.49609], [2.67, 0.49621], [2.68, 0.49632], [2.69, 0.49643], - [2.70, 0.49653], [2.71, 0.49664], [2.72, 0.49674], [2.73, 0.49683], [2.74, 0.49693], [2.75, 0.49702], [2.76, 0.49711], [2.77, 0.49720], [2.78, 0.49728], [2.79, 0.49736], - [2.80, 0.49744], [2.81, 0.49752], [2.82, 0.49760], [2.83, 0.49767], [2.84, 0.49774], [2.85, 0.49781], [2.86, 0.49788], [2.87, 0.49795], [2.88, 0.49801], [2.89, 0.49807], - [2.90, 0.49813], [2.91, 0.49819], [2.92, 0.49825], [2.93, 0.49831], [2.94, 0.49836], [2.95, 0.49841], [2.96, 0.49846], [2.97, 0.49851], [2.98, 0.49856], [2.99, 0.49861], - [3.00, 0.49865], [3.01, 0.49869], [3.02, 0.49874], [3.03, 0.49878], [3.04, 0.49882], [3.05, 0.49886], [3.06, 0.49889], [3.07, 0.49893], [3.08, 0.49896], [3.09, 0.49900], - [3.10, 0.49903], [3.11, 0.49906], [3.12, 0.49910], [3.13, 0.49913], [3.14, 0.49916], [3.15, 0.49918], [3.16, 0.49921], [3.17, 0.49924], [3.18, 0.49926], [3.19, 0.49929], - [3.20, 0.49931], [3.21, 0.49934], [3.22, 0.49936], [3.23, 0.49938], [3.24, 0.49940], [3.25, 0.49942], [3.26, 0.49944], [3.27, 0.49946], [3.28, 0.49948], [3.29, 0.49950], - [3.30, 0.49952], [3.31, 0.49953], [3.32, 0.49955], [3.33, 0.49957], [3.34, 0.49958], [3.35, 0.49960], [3.36, 0.49961], [3.37, 0.49962], [3.38, 0.49964], [3.39, 0.49965], - [3.40, 0.49966], [3.41, 0.49968], [3.42, 0.49969], [3.43, 0.49970], [3.44, 0.49971], [3.45, 0.49972], [3.46, 0.49973], [3.47, 0.49974], [3.48, 0.49975], [3.49, 0.49976], - [3.50, 0.49977], [3.51, 0.49978], [3.52, 0.49978], [3.53, 0.49979], [3.54, 0.49980], [3.55, 0.49981], [3.56, 0.49981], [3.57, 0.49982], [3.58, 0.49983], [3.59, 0.49983], - [3.60, 0.49984], [3.61, 0.49985], [3.62, 0.49985], [3.63, 0.49986], [3.64, 0.49986], [3.65, 0.49987], [3.66, 0.49987], [3.67, 0.49988], [3.68, 0.49988], [3.69, 0.49989], - [3.70, 0.49989], [3.71, 0.49990], [3.72, 0.49990], [3.73, 0.49990], [3.74, 0.49991], [3.75, 0.49991], [3.76, 0.49992], [3.77, 0.49992], [3.78, 0.49992], [3.79, 0.49992], - [3.80, 0.49993], [3.81, 0.49993], [3.82, 0.49993], [3.83, 0.49994], [3.84, 0.49994], [3.85, 0.49994], [3.86, 0.49994], [3.87, 0.49995], [3.88, 0.49995], [3.89, 0.49995], - [3.90, 0.49995], [3.91, 0.49995], [3.92, 0.49996], [3.93, 0.49996], [3.94, 0.49996], [3.95, 0.49996], [3.96, 0.49996], [3.97, 0.49996], [3.98, 0.49997], [3.99, 0.49997], - [4.00, 0.49997], [4.01, 0.49997], [4.02, 0.49997], [4.03, 0.49997], [4.04, 0.49997], [4.05, 0.49997], [4.06, 0.49998], [4.07, 0.49998], [4.08, 0.49998], [4.09, 0.49998],])) \ No newline at end of file diff --git a/pelicun/tests/test_uq.py b/pelicun/tests/test_uq.py deleted file mode 100644 index 7e1eb27aa..000000000 --- a/pelicun/tests/test_uq.py +++ /dev/null @@ -1,961 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright (c) 2018 Leland Stanford Junior University -# Copyright (c) 2018 The Regents of the University of California -# -# This file is part of pelicun. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# 2. Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# 3. Neither the name of the copyright holder nor the names of its contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# -# You should have received a copy of the BSD 3-Clause License along with -# pelicun. If not, see . -# -# Contributors: -# Adam Zsarnóczay - -""" -These are unit and integration tests on the uq module of pelicun. - -""" -import pytest -import numpy as np -from scipy.stats import norm -from numpy.testing import assert_allclose -from copy import deepcopy - -import os, sys, inspect -current_dir = os.path.dirname( - os.path.abspath(inspect.getfile(inspect.currentframe()))) -parent_dir = os.path.dirname(current_dir) -sys.path.insert(0,os.path.dirname(parent_dir)) - -from pelicun.tests.test_pelicun import assert_normal_distribution -from pelicun.uq import * - -# ------------------------------------------------------------------------------ -# ORTHOTOPE DENSITY -# ------------------------------------------------------------------------------ -def test_MVN_CDF_univariate(): - """ - Test if the MVN CDF function provides accurate results for the special - univariate case. - - """ - - # Testing is based on the CDF results from scipy's norm function. - ref_mean = 0.5 - ref_std = 0.25 - ref_var = ref_std ** 2. - lower = np.arange(13)/5.-1.5 - upper = np.arange(13)/3. - for l,u in zip(lower,upper): - ref_l, ref_u = norm.cdf([l,u],loc=ref_mean, scale=ref_std) - ref_res = ref_u-ref_l - test_res, __ = mvn_orthotope_density(ref_mean, ref_var, - lower=l, upper=u) - - assert ref_res == pytest.approx(test_res) - - # test if the function works properly with infinite boundaries - test_res, __ = mvn_orthotope_density(ref_mean, ref_var) - assert test_res == 1. - -def test_MVN_CDF_multivariate(): - """ - Test if the MVN CDF function provides accurate results for multivariate - cases. - - """ - # Testing is based on univariate results compared to estimates of MVN CDF - # with special correlation structure - - # First, assume perfect correlation. Results should be identical for all - # dimensions - - for dims in range(2, 6): - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.arange(1, dims + 1, dtype=np.float64) - ref_rho = np.ones((dims, dims)) * 1.0 - ref_COV = np.outer(ref_std, ref_std) * ref_rho - np.fill_diagonal(ref_COV, ref_std ** 2.) - - lower = ref_mean - ref_std * 2.5 - upper = ref_mean + ref_std * 1.5 - - test_res, __ = mvn_orthotope_density(ref_mean, ref_COV, - lower=lower, upper=upper) - - ref_l, ref_u = norm.cdf([-2.5, 1.5], loc=0., scale=1.) - ref_res = ref_u - ref_l - - assert ref_res == pytest.approx(test_res) - - # Second, assume independence. Results should be equal to the univariate - # result on the power of the number of dimensions. - for dims in range(2, 6): - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.arange(1, dims + 1, dtype=np.float64) - ref_rho = np.ones((dims, dims)) * 0.0 - ref_COV = np.outer(ref_std, ref_std) * ref_rho - np.fill_diagonal(ref_COV, ref_std ** 2.) - - lower = ref_mean - ref_std * 2.5 - upper = ref_mean + ref_std * 1.5 - - test_res, __ = mvn_orthotope_density(ref_mean, ref_COV, - lower=lower, upper=upper) - - ref_l, ref_u = norm.cdf([-2.5, 1.5], loc=0., scale=1.) - ref_res = ref_u - ref_l - - assert ref_res**dims == pytest.approx(test_res) - -# ------------------------------------------------------------------------------ -# Random_Variable objects -# ------------------------------------------------------------------------------ -def test_RandomVariable_incorrect_none_defined(): - """ - Test if the random variable object raises an error when the distribution - is not empirical and no parameters are provided. - """ - - with pytest.raises(ValueError) as e_info: - RandomVariable(name='A', distribution='normal') - -def test_RandomVariable_incorrect_multinomial_definition(): - """ - Test if the random variable object raises an error when a multinomial - distribution is defined with incorrect parameters, and test - that it does not raise an error when the right parameters are provided. - """ - - p_values = [0.5, 0.2, 0.1, 0.2] - # correct parameters - RandomVariable(name='A', distribution='multinomial', - theta=[0.5, 0.2, 0.1, 0.2]) - - # sum(p) less than 1.0 -> should be automatically corrected - RandomVariable(name='A', distribution='multinomial', - theta=[0.5, 0.2, 0.1, 0.1]) - - # sum(p) more than 1.0 -> should raise an error - with pytest.raises(ValueError) as e_info: - RandomVariable(name='A', distribution='multinomial', - theta=[0.5, 0.2, 0.1, 0.3]) - -# ------------------------------------------------------------------------------ -# SAMPLING -# ------------------------------------------------------------------------------ -def test_sampling_tr_alpha_error(): - """ - Test if the function raises an error when the probability density that the - truncation limits define is not sufficiently accurate for further use. - - """ - - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[0.5, 0.25], - truncation_limits = [-10.0, -9.9])) - - with pytest.raises(ValueError) as e_info: - RV_reg.generate_samples(sample_size=10, seed=1) - -def test_sampling_non_truncated(): - """ - Test if the sampling method returns appropriate samples for a non-truncated - univariate and multivariate normal distribution. - - """ - - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std])) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return RV_reg.RV_samples['A'] - - assert assert_normal_distribution(sampling_function, ref_mean, ref_std**2.) - - # bivariate case, various correlation coefficients - rho_list = [-1., -0.5, 0., 0.5, 1.] - for rho in rho_list: - ref_mean = [0.5, 1.5] - ref_std = [0.25, 1.0] - ref_rho = np.asarray([[1.0, rho],[rho, 1.0]]) - ref_COV = np.outer(ref_std, ref_std) * ref_rho - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return pd.DataFrame(RV_reg.RV_samples).values - - assert_normal_distribution(sampling_function, ref_mean, ref_COV) - - # multi-dimensional case - dims = 5 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.arange(1,dims+1, dtype=np.float64) - ref_rho = np.ones((dims,dims))*0.3 - np.fill_diagonal(ref_rho, 1.0) - ref_COV = np.outer(ref_std,ref_std) * ref_rho - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return pd.DataFrame(RV_reg.RV_samples).values - - assert_normal_distribution(sampling_function, ref_mean, ref_COV) - -def test_sampling_truncated_wide_limits(): - """ - Test if the sampling method returns appropriate samples for a truncated - univariate and multivariate normal distribution when the truncation limits - are sufficiently wide to consider the result a normal distribution. - - """ - - # assign a non-symmetric, but very wide set of limits for all cases - - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - ref_var = ref_std ** 2. - lower = -1e10 - upper = 1e9 - - # truncation both ways - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits = [lower, upper])) - - def sampling_function(sample_size): - RV_reg.generate_samples(sample_size=sample_size) - - return RV_reg.RV_samples['A'] - - assert assert_normal_distribution(sampling_function, ref_mean, - ref_std ** 2.) - # upper truncation - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[None, upper])) - - def sampling_function(sample_size): - RV_reg.generate_samples(sample_size=sample_size) - - return RV_reg.RV_samples['A'] - - assert assert_normal_distribution(sampling_function, ref_mean, - ref_std ** 2.) - - # lower truncation - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[lower, None])) - - def sampling_function(sample_size): - RV_reg.generate_samples(sample_size=sample_size) - - return RV_reg.RV_samples['A'] - - assert assert_normal_distribution(sampling_function, ref_mean, - ref_std ** 2.) - - # bivariate case, various correlation coefficients - rho_list = [-1., -0.5, 0., 0.5, 1.] - lower = np.ones(2) * lower - upper = np.ones(2) * upper - for rho in rho_list: - ref_mean = [0.5, 1.5] - ref_std = [0.25, 1.0] - ref_rho = np.asarray([[1.0, rho], [rho, 1.0]]) - ref_COV = np.outer(ref_std, ref_std) * ref_rho - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV( - RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits = [lower[i], upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return pd.DataFrame(RV_reg.RV_samples).values - - assert_normal_distribution(sampling_function, ref_mean, ref_COV) - - # multi-dimensional case - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.3 - np.fill_diagonal(ref_rho, 1.0) - ref_COV = np.outer(ref_std, ref_std) * ref_rho - - lower = np.ones(dims) * lower[0] - upper = np.ones(dims) * upper[0] - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits = [lower[i], upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - def sampling_function(sample_size): - - RV_reg.generate_samples(sample_size=sample_size) - - return pd.DataFrame(RV_reg.RV_samples).values - - assert_normal_distribution(sampling_function, ref_mean, ref_COV) - -def test_sampling_truncated_narrow_limits(): - """ - Test if the sampling method returns appropriate samples for a truncated - univariate and multivariate normal distribution when the truncation limits - are narrow. - - """ - - # here we focus on testing if the returned samples are between the - # pre-defined limits in all dimensions - - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - ref_var = ref_std ** 2. - lower = 0.1 - upper = 0.6 - - RV_reg = RandomVariableRegistry() - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[lower, upper])) - - RV_reg.generate_samples(sample_size=1000) - - samples = RV_reg.RV_samples['A'] - - sample_min = np.min(samples) - sample_max = np.max(samples) - - assert sample_min > lower - assert sample_max < upper - - assert sample_min == pytest.approx(lower, abs=0.01) - assert sample_max == pytest.approx(upper, abs=0.01) - - # multi-dimensional case - dims = 2 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.3 - np.fill_diagonal(ref_rho, 1.0) - - lower = ref_mean - ref_std * 2.5 - upper = ref_mean + ref_std * 1.5 - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits=[lower[i], upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - RV_reg.generate_samples(sample_size=1000) - - samples = pd.DataFrame(RV_reg.RV_samples).values - - sample_min = np.amin(samples, axis=0) - sample_max = np.amax(samples, axis=0) - - assert np.all(sample_min > lower) - assert np.all(sample_max < upper) - - assert_allclose(sample_min, lower, atol=0.1) - assert_allclose(sample_max, upper, atol=0.1) - -def test_RandomVariable_sample_distribution_mixed_normal(): - """ - Test if the distribution is sampled appropriately for a correlated mixture - of normal and lognormal variables. Note that we already tested the sampling - algorithm itself earlier, so we will not do a thorough verification of - the samples, but rather check for errors in the inputs that would - typically lead to significant mistakes in the results. - - """ - - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 1.00 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - # prepare the truncation limits - note that these are wide limits and - # barely affect the distribution - lower = (ref_mean - ref_std * 10.).tolist() - upper = ref_mean + ref_std * 10. - - # variable 1 is assumed to have lognormal distribution with no lower - # truncation - rv_mean = ref_mean.copy() - rv_mean[1] = np.exp(rv_mean[1]) - lower[1] = None - upper[1] = np.exp(upper[1]) - - dist_list = ['normal', 'lognormal', 'normal'] - - RV_reg = RandomVariableRegistry() - - for i, (mu, std, dist) in enumerate(zip(rv_mean, ref_std, dist_list)): - RV_reg.add_RV(RandomVariable(name=i, distribution=dist, - theta=[mu, std], - truncation_limits=[lower[i], - upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(len(ref_mean))], - ref_rho)) - - RV_reg.generate_samples(sample_size=1000) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - # make sure that retrieving samples of an individual RV works as intended - assert_allclose(samples[1], RV_reg.RV_samples[1]) - - # convert the lognormal samples to log space for the checks - samples[1] = np.log(samples[1]) - - assert_allclose(np.mean(samples, axis=1), ref_mean, atol=0.01) - - ref_COV = np.outer(ref_std, ref_std) * ref_rho - assert_allclose(np.cov(samples), ref_COV, atol=0.10) - -def test_RandomVariable_sample_distribution_multinomial(): - """ - Test if the distribution is sampled appropriately for a multinomial - variable. Also test that getting values for an individual RV that is part - of a correlated RV_set works appropriately." - - """ - # first test with an incomplete p_ref - p_ref = [0.1, 0.3, 0.5] - dims = 3 - - RV_reg= RandomVariableRegistry() - - for i in range(dims): - RV_reg.add_RV(RandomVariable(name=i, distribution='multinomial', - theta=p_ref)) - - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], ref_rho)) - - RV_reg.generate_samples(sample_size=10000) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - p_ref[-1] = 1. - np.sum(p_ref[:-1]) - - h_bins = np.arange(len(p_ref) + 1) - 0.5 - p_test = np.histogram(samples[1], bins=h_bins, density=True)[0] - - assert_allclose(p_test, p_ref, atol=0.05) - - # also make sure that individual RV's samples are returned appropriately - p_test_RV = np.histogram(RV_reg.RV_samples[1], bins=h_bins, density=True)[0] - assert_allclose(p_test_RV, p_ref, atol=0.05) - - assert_allclose(samples[1], RV_reg.RV_samples[1]) - - # and the prescribed correlation is applied - # note that the correlation between the samples is not going to be identical - # to the correlation used to generate the underlying uniform distribution - rho_target = [[1.0, 0.383, 0.383], [0.383, 1.0, 0.383], [0.383, 0.383, 1.0]] - assert_allclose(np.corrcoef(samples), rho_target, atol=0.05) - - # finally, check the original sampling with the complete p_ref - RV_reg = RandomVariableRegistry() - - for i in range(dims): - RV_reg.add_RV(RandomVariable(name=i, distribution='multinomial', - theta=p_ref)) - - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], ref_rho)) - - RV_reg.generate_samples(sample_size=10000) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - p_test = np.histogram(samples[1], bins=h_bins, density=True)[0] - - assert_allclose(p_test, p_ref, atol=0.05) - -# ------------------------------------------------------------------------------ -# FITTING -# ------------------------------------------------------------------------------ -def test_fitting_baseline(): - """ - Test if the max. likelihood estimates of a (multivariate) normal - distribution are sufficiently accurate in the baseline case with no - truncation and no censoring. - - """ - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - - # generate samples - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std])) - - RV_reg.generate_samples(sample_size=100) - - samples = RV_reg.RV_samples['A'] - - # estimate the parameters of the distribution - mu, std = fit_distribution(samples, 'normal')[0][0] - - assert ref_mean == pytest.approx(mu, abs=0.01) - assert ref_std == pytest.approx(std, rel=0.05) - - # multi-dimensional case - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.5 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=100) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - # estimate the parameters of the distribution - test_theta, test_rho = fit_distribution(samples, 'normal') - - test_mu, test_std = test_theta.T - - assert_allclose(test_mu, ref_mean, atol=0.01) - assert_allclose(test_std, ref_std, rtol=0.1) - assert_allclose(test_rho, ref_rho, atol=0.3) - -def test_fitting_censored(): - """ - Test if the max. likelihood estimates of a multivariate normal distribution - are sufficiently accurate in cases with censored data. - - """ - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - c_lower = 0.35 - c_upper = 1.25 - sample_count = 100 - - # generate censored samples - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std])) - - RV_reg.generate_samples(sample_size=sample_count) - - samples = RV_reg.RV_samples['A'] - - # censor the samples - good_ones = np.all([samples>c_lower, samples c_lower, samples < c_upper], axis=0) - good_ones = np.all(good_ones, axis=1) - c_samples = samples[good_ones] - c_count = sample_count - sum(good_ones) - det_lims = np.array([c_lower, c_upper]).T - - test_theta, test_rho = fit_distribution(c_samples.T, 'normal', - censored_count=c_count, - detection_limits=det_lims) - - test_mu, test_std = test_theta.T - - assert_allclose(test_mu, ref_mean, atol=0.1) - assert_allclose(test_std , ref_std, rtol=0.25) - assert_allclose(test_rho, ref_rho, atol=0.3) - -def test_fitting_truncated(): - """ - Test if the max. likelihood estimates of a multivariate normal distribution - are sufficiently accurate in cases with truncation and uncensored data. - - """ - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - tr_lower = 0.35 - tr_upper = 1.25 - - # generate samples of a TMVN distribution - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[tr_lower, tr_upper])) - - RV_reg.generate_samples(sample_size=100) - - samples = RV_reg.RV_samples['A'] - - # estimate the parameters of the distribution - test_theta, __ = fit_distribution(samples, 'normal', - truncation_limits=[tr_lower, tr_upper]) - - test_mu, test_std = test_theta[0] - - assert ref_mean == pytest.approx(test_mu, abs=0.05) - assert ref_std == pytest.approx(test_std, rel=0.05) - - # multi-dimensional case - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - tr_lower = ref_mean - 0.25 * ref_std - tr_upper = ref_mean + 2.0 * ref_std - - tr_lower[2] = -np.inf - tr_upper[0] = np.inf - - # generate samples - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits=[tr_lower[i], - tr_upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=1000) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - # estimate the parameters of the distribution - tr_lims = np.array([tr_lower, tr_upper]).T - test_theta, test_rho = fit_distribution(samples, 'normal', - truncation_limits=tr_lims) - - test_mu, test_std = test_theta.T - - #print(max(abs(test_mu-ref_mean)), max(abs(test_std-ref_std))) - - assert_allclose(test_mu, ref_mean, atol=0.1) - assert_allclose(test_std, ref_std, atol=0.05) - assert_allclose(test_rho, ref_rho, atol=0.2) - -def test_fitting_truncated_and_censored(): - """ - Test if the max. likelihood estimates of a multivariate normal distribution - are sufficiently accurate in cases with truncation and censored data. - - """ - # univariate case - ref_mean = 0.5 - ref_std = 0.25 - tr_lower = 0.35 - tr_upper = 2.5 - det_upper = 1.25 - det_lower = tr_lower - - # generate samples of a TMVN distribution - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='normal', - theta=[ref_mean, ref_std], - truncation_limits=[tr_lower, tr_upper])) - - RV_reg.generate_samples(sample_size=100) - - samples = RV_reg.RV_samples['A'] - - # censor the samples - good_ones = samples < det_upper - c_samples = samples[good_ones] - c_count = 100 - sum(good_ones) - - # estimate the parameters of the distribution - test_theta, __ = fit_distribution(c_samples, 'normal', - censored_count=c_count, - detection_limits=[det_lower, det_upper], - truncation_limits=[tr_lower, tr_upper]) - - test_mu, test_std = test_theta[0] - - assert ref_mean == pytest.approx(test_mu, abs=0.05) - assert ref_std == pytest.approx(test_std, rel=0.05) - - # # multi-dimensional case - dims = 3 - ref_mean = np.arange(dims, dtype=np.float64) - ref_std = np.ones(dims) * 0.25 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - tr_lower = ref_mean - 4.5 * ref_std - tr_upper = ref_mean + 2.5 * ref_std - tr_lower[2] = -np.inf - tr_upper[0] = np.inf - - det_lower = ref_mean - 1. * ref_std - det_lower[2] = -np.inf - det_upper = tr_upper - - # generate samples - RV_reg = RandomVariableRegistry() - - for i, (mu, std) in enumerate(zip(ref_mean, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='normal', - theta=[mu, std], - truncation_limits=[tr_lower[i], - tr_upper[i]])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=1000) - - samples = pd.DataFrame(RV_reg.RV_samples).values - - # censor the samples - good_ones = np.all([samples > det_lower, samples < det_upper], axis=0) - good_ones = np.all(good_ones, axis=1) - c_samples = samples[good_ones] - c_count = 1000 - sum(good_ones) - - # estimate the parameters of the distribution - det_lims = np.array([det_lower, det_upper]).T - tr_lims = np.array([tr_lower, tr_upper]).T - - test_theta, test_rho = fit_distribution( - c_samples.T, 'normal', censored_count=c_count, - detection_limits=det_lims, truncation_limits=tr_lims) - - test_mu, test_std = test_theta.T - - assert_allclose(test_mu, ref_mean, atol=0.1) - assert_allclose(test_std, ref_std, rtol=0.25) - assert_allclose(test_rho, ref_rho, atol=0.3) - -def test_fitting_lognormal(): - """ - Test if the max. likelihood estimates of a multivariate lognormal - distribution are sufficiently accurate - """ - # univariate case - # generate raw data - ref_median = 0.5 - ref_std = 0.25 - - # generate samples - RV_reg = RandomVariableRegistry() - - RV_reg.add_RV(RandomVariable(name='A', distribution='lognormal', - theta=[ref_median, ref_std])) - - RV_reg.generate_samples(sample_size=100) - - samples = RV_reg.RV_samples['A'] - - # estimate the parameters of the distribution - median, std = fit_distribution(samples, 'lognormal')[0][0] - - assert ref_median == pytest.approx(median, abs=0.01) - assert ref_std == pytest.approx(std, rel=0.05) - - # multivariate case - # generate raw data - dims = 6 - ref_median = np.exp(np.arange(dims, dtype=np.float64)) - ref_std = np.ones(dims) * 0.5 - ref_rho = np.ones((dims, dims)) * 0.5 - np.fill_diagonal(ref_rho, 1.0) - - RV_reg = RandomVariableRegistry() - - for i, (median, std) in enumerate(zip(ref_median, ref_std)): - RV_reg.add_RV(RandomVariable(name=i, distribution='lognormal', - theta=[median, std])) - - RV_reg.add_RV_set( - RandomVariableSet('A', - [RV_reg.RV[rv] for rv in range(dims)], - ref_rho)) - - RV_reg.generate_samples(sample_size=100) - - samples = pd.DataFrame(RV_reg.RV_samples).values.T - - # estimate the parameters of the distribution - test_theta, test_rho = fit_distribution(samples, 'lognormal') - - test_median, test_std = test_theta.T - - assert_allclose(np.log(test_median), np.log(ref_median), atol=0.01) - assert_allclose(test_std, ref_std, rtol=0.2) - assert_allclose(test_rho, ref_rho, atol=0.3) - - - diff --git a/pelicun/tools/DL_calculation.py b/pelicun/tools/DL_calculation.py index ac848b033..755f58ad4 100644 --- a/pelicun/tools/DL_calculation.py +++ b/pelicun/tools/DL_calculation.py @@ -40,15 +40,6 @@ from time import gmtime, strftime -DL_method_to_AT = { - 'FEMA P58': 'FEMA_P58', - 'HAZUS MH EQ': 'HAZUS_EQ', - 'HAZUS MH': 'HAZUS_EQ', - 'HAZUS MH EQ IM': 'HAZUS_EQ', - 'HAZUS MH HU': 'HAZUS_HU', - 'HAZUS MH FL': 'HAZUS_FL' -} - def log_msg(msg): formatted_msg = '{} {}'.format(strftime('%Y-%m-%dT%H:%M:%SZ', gmtime()), msg) @@ -66,269 +57,179 @@ def log_msg(msg): sys.path.insert(0, os.path.dirname(os.path.realpath(__file__))) -from pelicun.base import str2bool -from pelicun.file_io import get_required_resources -from pelicun.control import FEMA_P58_Assessment, HAZUS_Assessment -from pelicun.auto import auto_populate +from pelicun.base import set_options +from pelicun.assessment import * +from pelicun.file_io import * -# START temporary functions ---- +def run_pelicun(DL_input_path, EDP_input_path, + DL_method, realization_count, BIM_file, EDP_file, DM_file, DV_file, + output_path=None, detailed_results=True, coupled_EDP=False, + log_file=True, event_time=None, ground_failure=False, + auto_script_path=None, resource_dir=None): -# FUNCTION: neg_log_likelihood ------------------------------------------------- -# objective function for evaluating negative log likelihood of observing the given collapses -# ------------------------------------------------------------------------------ + print(DL_input_path) -def neg_log_likelihood(params, IM, num_records, num_collapses): - from scipy.stats import norm, binom + DL_input_path = os.path.abspath(DL_input_path) # BIM file + if EDP_input_path is not None: + EDP_input_path = os.path.abspath(EDP_input_path) # dakotaTab - theta = params[0] - beta = params[1] + config_path = DL_input_path - log_IM = [np.log(m) for m in IM] - p = norm.cdf(log_IM, loc=theta, scale=beta) + # Initial setup ----------------------------------------------------------- - # likelihood of observing num_collapse(i) collapses, given num_records observations, using the current parameter estimates - likelihood = np.maximum(binom.pmf(num_collapses, num_records, p), - np.nextafter(0,1)) + with open(config_path, 'r') as f: + config = json.load(f) - neg_loglik = -np.sum(np.log(likelihood)) + config = merge_default_config(config) - return neg_loglik + config_opt = config.get("Options", None) + set_options(config_opt) -# FUNCTION: lognormal_MLE ------------------------------------------------------ -# returns maximum likelihood estimation (MLE) of lognormal fragility function parameters -# ------------------------------------------------------------------------------ -# algorithm obtained from Baker, J. W. (2015). “Efficient analytical fragility function fitting -# using dynamic structural analysis.” Earthquake Spectra, 31(1), 579-599. + A = Assessment() -def lognormal_MLE(IM,num_records,num_collapses): - from scipy.optimize import minimize + general_info = config['GeneralInformation'] - # initial guess for parameters - params0 = [np.log(1.0), 0.4] - #params = minimize(neg_log_likelihood, params0, args=(IM, num_records, num_collapses), method='Nelder-Mead', - # options={'maxfev': 400*2, - # 'adaptive': True}) + if general_info.get('NumberOfStories', False): + A.stories = general_info['NumberOfStories'] - params = minimize(neg_log_likelihood, params0, args=(IM, num_records, num_collapses), bounds=((None, None), (1e-10, None))) - theta = np.exp(params.x[0]) - beta = params.x[1] + demand_config = config.get('DemandAssessment', None) + damage_config = config.get('DamageAssessment', None) + loss_config = config.get('LossAssessment', None) - return theta, beta + # Demand Assessment ----------------------------------------------------------- -# FUNCTION: update_collapsep --------------------------------------------------- -# creates copy of BIM.json for each IM with updated collapse probability -# ------------------------------------------------------------------------------ + # if a demand assessment is requested + if demand_config is not None: -def update_collapsep(BIMfile, RPi, theta, beta, num_collapses): - from scipy.stats import norm + # if demand calibration is requested + if demand_config.get('Calibration', False): - with open(BIMfile, 'r') as f: - BIM = json.load(f) - Pcol = norm.cdf(np.log(num_collapses/theta)/beta) - BIM['DamageAndLoss']['BuildingResponse']['CollapseProbability'] = Pcol - f.close() + cal_config = demand_config['Calibration'] - outfilename = 'BIM_{}.json'.format(RPi) - with open(outfilename, 'w') as g: - json.dump(BIM,g,indent=4) + # load demand samples to serve as reference data + A.demand.load_sample(cal_config['LoadSampleFrom']) - return outfilename + # then use it to calibrate the demand model + A.demand.calibrate_model(cal_config['Marginals']) -# END temporary functions ---- + # if requested, save the model to files + if cal_config.get('SaveModelTo', False): + A.demand.save_model(file_prefix=cal_config['SaveModelTo']) -def run_pelicun(DL_input_path, EDP_input_path, - DL_method, realization_count, BIM_file, EDP_file, DM_file, DV_file, - output_path=None, detailed_results=True, coupled_EDP=False, - log_file=True, event_time=None, ground_failure=False, - auto_script_path=None, resource_dir=None): + # if demand resampling is requested + if demand_config.get('Sampling', False): - DL_input_path = os.path.abspath(DL_input_path) # BIM file - EDP_input_path = os.path.abspath(EDP_input_path) # dakotaTab - - # If the output dir was not specified, results are saved in the directory of - # the input file. - if output_path is None: - output_path = ntpath.dirname(DL_input_path) - - # delete output files from previous runs - files = os.listdir(output_path) - for filename in files: - if (filename[-3:] == 'csv') and ( - ('DL_summary' in filename) or - ('DMG' in filename) or - ('DV_' in filename) or - ('EDP' in filename) - ): - try: - os.remove(posixpath.join(output_path, filename)) - except: - pass - - # If the event file is specified, we expect a multi-stripe analysis... - try: - # Collect stripe and rate information for every event - with open(DL_input_path, 'r') as f: - event_list = json.load(f)['Events'][0] - - df_event = pd.DataFrame(columns=['name', 'stripe', 'rate', 'IM'], - index=np.arange(len(event_list))) - - for evt_i, event in enumerate(event_list): - df_event.iloc[evt_i] = [event['name'], event['stripe'], event['rate'], event['IM']] - - # Create a separate EDP input for each stripe - EDP_input_full = pd.read_csv(EDP_input_path, sep='\s+', header=0, - index_col=0) - - # EDP_input_full.to_csv(EDP_input_path[:-4]+'_1.out', sep=' ') - - stripes = df_event['stripe'].unique() - EDP_files = [] - IM_list = [] - num_events = [] - num_collapses = [] - for stripe in stripes: - events = df_event[df_event['stripe']==stripe]['name'].values - - EDP_input = EDP_input_full[EDP_input_full['MultipleEvent'].isin(events)] - - EDP_files.append(EDP_input_path[:-4]+'_{}.out'.format(stripe)) - - EDP_input.to_csv(EDP_files[-1], sep=' ') - - IM_list.append(df_event[df_event['stripe']==stripe]['IM'].values[0]) - - # record number of collapses and number of events per stripe - PID_columns = [col for col in list(EDP_input) if 'PID' in col] # list of column headers with PID - num_events.append(EDP_input.shape[0]) - count = 0 - for row in range(num_events[-1]): - print(row) - for col in PID_columns: - if EDP_input.iloc[row][col] >= 0.20: # TODO: PID collapse limit as argument - count += 1 - break - num_collapses.append(count) - - # fit lognormal distribution to all points by maximum likelihood estimation (MLE) - theta, beta = lognormal_MLE(IM_list, num_events, num_collapses) - beta_adj = np.sqrt(beta**2 + 0.35**2) # TODO: adjust dispersion by 0.35 to account for modeling uncertainty - print("theta: " + str(theta)) - print("beta_adj: " + str(beta_adj)) - - # write BIM file with new probability of collapse for each IM - DL_files = [] - for i in range(len(stripes)): - DL_input_stripe = update_collapsep(DL_input_path, stripes[i], theta, beta_adj, IM_list[i]) - DL_files.append(DL_input_stripe) - - except: # run analysis for single IM - stripes = [1] - EDP_files = [EDP_input_path] - DL_files = [DL_input_path] - - # run the analysis and save results separately for each stripe - #print(stripes, EDP_files) - - for s_i, stripe in enumerate(stripes): - - DL_input_path = DL_files[s_i] - - # read the type of assessment from the DL input file - with open(DL_input_path, 'r') as f: - DL_input = json.load(f) - - # check if the DL input file has information about the loss model - if 'DamageAndLoss' in DL_input: - pass - else: - # if the loss model is not defined, give a warning - print('WARNING No loss model defined in the BIM file. Trying to auto-populate.') + sample_config = demand_config['Sampling'] - EDP_input_path = EDP_files[s_i] + # if requested, load the calibrated model from files + if sample_config.get('LoadModelFrom', False): + A.demand.load_model(file_prefix = sample_config['LoadModelFrom']) - # and try to auto-populate the loss model using the BIM information - DL_input, DL_input_path = auto_populate(DL_input_path, EDP_input_path, - DL_method, realization_count, - coupled_EDP, event_time, - ground_failure, - auto_script_path) + # generate demand sample + A.demand.generate_sample(sample_config) + # if requested, save the sample to a file + if sample_config.get('SaveSampleTo', False): + A.demand.save_sample(sample_config['SaveSampleTo']) - DL_method = DL_input['DamageAndLoss']['_method'] + # Damage Assessment ----------------------------------------------------------- + + # if a damage assessment is requested + if damage_config is not None: + + # if component quantity sampling is requested + if damage_config.get('Components', False): + + cmp_config = damage_config['Components'] + + # if requested, load a component model and generate a sample + if cmp_config.get('LoadModelFrom', False): + # load component model + A.asset.load_cmp_model(file_prefix = cmp_config['LoadModelFrom']) + + # generate component quantity sample + A.asset.generate_cmp_sample(damage_config['SampleSize']) + + # if requested, save the quantity sample to a file + if cmp_config.get('SaveSampleTo', False): + A.asset.save_cmp_sample(cmp_config['SaveSampleTo']) + + # if requested, load the quantity sample from a file + if cmp_config.get('LoadSampleFrom', False): + A.asset.load_cmp_sample(cmp_config['LoadSampleFrom']) + + # if requested, load the demands from file + # (if not, we assume there is a preceding demand assessment with sampling) + if damage_config.get('Demands', False): + + if damage_config['Demands'].get('LoadSampleFrom', False): + + A.demand.load_sample(damage_config['Demands']['LoadSampleFrom']) + + # load the fragility information + A.damage.load_fragility_model(damage_config['Fragilities']['LoadModelFrom']) + + # calculate damages + # load the damage process if needed + if damage_config['Calculation'].get('DamageProcessFrom', False): + with open(damage_config['Calculation']['DamageProcessFrom'], 'r') as f: + dmg_process = json.load(f) + else: + dmg_process = None + A.damage.calculate(damage_config['SampleSize'], dmg_process=dmg_process) - stripe_str = '' if len(stripes) == 1 else str(stripe)+'_' + # if requested, save the damage sample to a file + if damage_config['Calculation'].get('SaveDamageSampleTo', False): + A.damage.save_sample(damage_config['Calculation']['SaveDamageSampleTo']) - # Copy the resources to the specified location - if needed - if resource_dir is not None: - resource_dir = os.path.abspath(resource_dir) + # Loss Assessment ----------------------------------------------------------- - AT = DL_method_to_AT[DL_method] + # if a loss assessment is requested + if loss_config is not None: - resources = get_required_resources(DL_input_path, AT) + # if requested, load the demands from file + # (if not, we assume there is a preceding demand assessment with sampling) + if loss_config.get('Demands', False): - # take each resource file - for name, resource in resources.items(): + if loss_config['Demands'].get('LoadSampleFrom', False): - resource_filename = os.path.basename(resource) + A.demand.load_sample(loss_config['Demands']['LoadSampleFrom']) - # copy it to the designated location - if ((AT == 'HAZUS_HU') and (name == 'component')): - # hurricane assessments require two files - temp_resource = resource.replace('.hdf','_FL.hdf') - temp_filename = os.path.basename(temp_resource) - new_path = os.path.join(resource_dir, temp_filename) - if not os.path.exists(new_path): - shutil.copy(temp_resource, new_path) + # if requested, load the component data from file + # (if not, we assume there is a preceding assessment with component sampling) + if loss_config.get('Components', False): - temp_resource = resource.replace('.hdf','_HU.hdf') - temp_filename = os.path.basename(temp_resource) - new_path = os.path.join(resource_dir, temp_filename) - if not os.path.exists(new_path): - shutil.copy(temp_resource, new_path) + if loss_config['Components'].get('LoadSampleFrom', False): - new_path = new_path[:-7]+'.hdf' + A.asset.load_cmp_sample(loss_config['Components']['LoadSampleFrom']) - else: - new_path = os.path.join(resource_dir, resource_filename) - if not os.path.exists(new_path): - shutil.copy(resource, new_path) + # if requested, load the damage from file + # (if not, we assume there is a preceding damage assessment with sampling) + if loss_config.get('Damage', False): - # and update the DL config file to point to that location - if name == 'component': - DL_input['DamageAndLoss']['ComponentDataFolder'] = new_path - elif name == 'population': - DL_input['DamageAndLoss']['LossModel']['Inhabitants']['PopulationDataFile'] = new_path - elif name == 'combination': - DL_input['DamageAndLoss']['CombinationDataFile'] = new_path + if loss_config['Damage'].get('LoadSampleFrom', False): - with open(DL_input_path, 'w') as f: - json.dump(DL_input, f, indent=2) + A.damage.load_sample(loss_config['Damage']['LoadSampleFrom']) - log_msg('Running damage and loss simulation...') - if DL_method == 'FEMA P58': - A = FEMA_P58_Assessment(log_file=log_file) - elif DL_method in ['HAZUS MH EQ', 'HAZUS MH', 'HAZUS MH EQ IM']: - A = HAZUS_Assessment(hazard = 'EQ', log_file=log_file) - elif DL_method == 'HAZUS MH HU': - A = HAZUS_Assessment(hazard = 'HU', log_file=log_file) - elif DL_method == 'HAZUS MH FL': - A = HAZUS_Assessment(hazard = 'FL', log_file=log_file) + # if requested, calculate repair consequences + if loss_config.get('CalculateBldgRepair', False): - A.read_inputs(DL_input_path, EDP_files[s_i], verbose=False) # make DL inputs into array of all BIM files + A.bldg_repair.load_model(loss_config['CalculateBldgRepair']['LoadModelFrom'], + loss_config['CalculateBldgRepair']['LoadMappingFrom']) - A.define_random_variables() + A.bldg_repair.calculate(loss_config['SampleSize']) - A.define_loss_model() + # if requested, save the loss sample to a file + if loss_config['CalculateBldgRepair'].get('SaveLossSampleTo', False): - A.calculate_damage() + A.bldg_repair.save_sample(loss_config['CalculateBldgRepair']['SaveLossSampleTo']) - A.calculate_losses() + # if requested, aggregate results + if loss_config.get('SaveAggregateResultsTo', False): - A.aggregate_results() + agg_DF = A.bldg_repair.aggregate_losses() - A.save_outputs(output_path, BIM_file, EDP_file, DM_file, DV_file, stripe_str, - detailed_results=detailed_results) + save_to_csv(agg_DF, loss_config['SaveAggregateResultsTo']) return 0 @@ -336,7 +237,7 @@ def main(args): parser = argparse.ArgumentParser() parser.add_argument('--filenameDL') - parser.add_argument('--filenameEDP') + parser.add_argument('--filenameEDP', default = None) parser.add_argument('--DL_Method', default = None) parser.add_argument('--Realizations', default = None) parser.add_argument('--outputBIM', default='BIM.csv') diff --git a/pelicun/uq.py b/pelicun/uq.py index f4ca3869a..58b0916df 100644 --- a/pelicun/uq.py +++ b/pelicun/uq.py @@ -46,7 +46,7 @@ .. autosummary:: mvn_orthotope_density - fit_distribution + fit_distribution_to_sample RandomVariable RandomVariableSet RandomVariableRegistry @@ -65,7 +65,7 @@ import warnings -def mvn_orthotope_density(mu, COV, lower=None, upper=None): +def mvn_orthotope_density(mu, COV, lower=np.nan, upper=np.nan): """ Estimate the probability density within a hyperrectangle for an MVN distr. @@ -116,20 +116,20 @@ def mvn_orthotope_density(mu, COV, lower=None, upper=None): ndim = mu.size - if lower is None: + if np.all(np.isnan(lower)): lower = -np.ones(ndim) * np.inf else: lower = np.atleast_1d(lower) - if upper is None: + if np.all(np.isnan(upper)): upper = np.ones(ndim) * np.inf else: upper = np.atleast_1d(upper) # replace None with np.inf - lower[np.where(lower == None)[0]] = -np.inf + lower[np.where(np.isnan(lower))[0]] = -np.inf lower = lower.astype(np.float64) - upper[np.where(upper == None)[0]] = np.inf + upper[np.where(np.isnan(upper))[0]] = np.inf upper = upper.astype(np.float64) # standardize the truncation limits @@ -158,15 +158,29 @@ def mvn_orthotope_density(mu, COV, lower=None, upper=None): return alpha, eps_alpha -def get_theta(params, inits, distribution): +def _get_theta(params, inits, dist_list): + """ + Returns the parameters of the target distributions. + + Uses the parameter values from the optimization algorithm (that are relative + to the initial values) and the initial values to transform them to the + parameters of the target distributions. + + """ theta = np.zeros(inits.shape) - for i, (params_i, inits_i) in enumerate(zip(params, inits)): + for i, (params_i, inits_i, dist_i) in enumerate(zip(params, inits, dist_list)): - if distribution in ['normal', 'lognormal']: + if dist_i in ['normal', 'lognormal']: + + # Note that the standard deviation is fit in log space, hence the + # unusual-looking transformation here sig = np.exp(np.log(inits_i[1]) + params_i[1]) + + # The mean uses the standard transformation mu = inits_i[0] + params_i[0] * sig + theta[i, 0] = mu theta[i, 1] = sig @@ -181,32 +195,38 @@ def _get_limit_probs(limits, distribution, theta): mu = theta[0] sig = theta[1] - if a is not None: - p_a = norm.cdf((a - mu) / sig) - else: + if np.isnan(a): p_a = 0.0 - - if b is not None: - p_b = norm.cdf((b - mu) / sig) else: + p_a = norm.cdf((a - mu) / sig) + + if np.isnan(b): p_b = 1.0 + else: + p_b = norm.cdf((b - mu) / sig) return p_a, p_b -def _get_std_samples(samples, theta, tr_limits, distribution): +def _get_std_samples(samples, theta, tr_limits, dist_list): ndims = samples.shape[0] std_samples = np.zeros(samples.shape) - for i, (samples_i, theta_i, tr_lim_i) in enumerate( - zip(samples, theta, tr_limits)): - if distribution in ['normal', 'lognormal']: + for i, (samples_i, theta_i, tr_lim_i, dist_i) in enumerate( + zip(samples, theta, tr_limits, dist_list)): + + if dist_i in ['normal', 'lognormal']: + + # first transform from normal to uniform + uni_samples = norm.cdf(samples_i, loc=theta_i[0], scale=theta_i[1]) + # consider truncation if needed - p_a, p_b = _get_limit_probs(tr_lim_i, distribution, theta_i) - uni_samples = (norm.cdf(samples_i, loc=theta_i[0], - scale=theta_i[1]) - p_a) / (p_b - p_a) + p_a, p_b = _get_limit_probs(tr_lim_i, dist_i, theta_i) + uni_samples = (uni_samples - p_a) / (p_b - p_a) + + # then transform from uniform to standard normal std_samples[i] = norm.ppf(uni_samples, loc=0., scale=1.) return std_samples @@ -216,12 +236,15 @@ def _get_std_corr_matrix(std_samples): n_dims, n_samples = std_samples.shape + # initialize the correlation matrix estimate rho_hat = np.zeros((n_dims, n_dims)) np.fill_diagonal(rho_hat, 1.0) + + # take advantage of having standard normal samples for dim_i in range(n_dims): for dim_j in np.arange(dim_i + 1, n_dims): - rho_hat[dim_i, dim_j] = np.sum( - std_samples[dim_i] * std_samples[dim_j]) / n_samples + rho_hat[dim_i, dim_j] = ( + np.sum(std_samples[dim_i] * std_samples[dim_j]) / n_samples) rho_hat[dim_j, dim_i] = rho_hat[dim_i, dim_j] # make sure rho_hat is positive semidefinite @@ -233,6 +256,7 @@ def _get_std_corr_matrix(std_samples): try: U, s, V = svd(rho_hat, ) except: + # if this also fails, we give up return None S = np.diagflat(s) @@ -240,6 +264,7 @@ def _get_std_corr_matrix(std_samples): rho_hat = U @ S @ U.T np.fill_diagonal(rho_hat, 1.0) + # check if we introduced any unreasonable values if ((np.max(rho_hat) > 1.0) or (np.min(rho_hat) < -1.0)): return None @@ -251,20 +276,22 @@ def _mvn_scale(x, rho): x = np.atleast_2d(x) n_dims = x.shape[1] + # create an uncorrelated covariance matrix rho_0 = np.zeros((n_dims, n_dims)) np.fill_diagonal(rho_0, 1) + a = mvn.pdf(x, mean=np.zeros(n_dims), cov=rho_0) b = mvn.pdf(x, mean=np.zeros(n_dims), cov=rho) return b / a - def _neg_log_likelihood(params, inits, bnd_lower, bnd_upper, samples, - distribution, tr_limits, det_limits, censored_count, + dist_list, tr_limits, det_limits, censored_count, enforce_bounds=False): # First, check if the parameters are within the pre-defined bounds + # TODO: check if it is more efficient to use a bounded minimization algo if enforce_bounds: if ((params > bnd_lower) & (params < bnd_upper)).all(0) == False: # if they are not, then return a large value to discourage the @@ -278,30 +305,36 @@ def _neg_log_likelihood(params, inits, bnd_lower, bnd_upper, samples, params = np.reshape(params, inits.shape) n_dims, n_samples = samples.shape - theta = get_theta(params, inits, distribution) + theta = _get_theta(params, inits, dist_list) likelihoods = np.zeros(samples.shape) # calculate the marginal likelihoods - for i, (theta_i, samples_i, tr_lim_i) in enumerate( - zip(theta, samples, tr_limits)): + for i, (theta_i, samples_i, tr_lim_i, dist_i) in enumerate( + zip(theta, samples, tr_limits, dist_list)): # consider truncation if needed - p_a, p_b = _get_limit_probs(tr_lim_i, distribution, theta_i) + p_a, p_b = _get_limit_probs(tr_lim_i, dist_i, theta_i) tr_alpha = p_b - p_a # this is the probability mass within the - # truncation limits - - # calculate the likelihood for each available sample - if distribution in ['normal', 'lognormal']: - likelihoods[i] = norm.pdf(samples_i, loc=theta_i[0], - scale=theta_i[1]) / tr_alpha - - # transform every sample into standard normal space and get the correlation - # matrix - std_samples = _get_std_samples(samples, theta, tr_limits, distribution) - rho_hat = _get_std_corr_matrix(std_samples) - if rho_hat is None: - return 1e10 + # truncation limits + + # Calculate the likelihood for each available sample + # Note that we are performing this without any transformation to be able + # to respect truncation limits + if dist_i in ['normal', 'lognormal']: + likelihoods[i] = norm.pdf( + samples_i, loc=theta_i[0], scale=theta_i[1]) / tr_alpha + + # transform every sample into standard normal space + std_samples = _get_std_samples(samples, theta, tr_limits, dist_list) + + # if the problem is more than one dimensional, get the correlation matrix + if n_dims > 1: + rho_hat = _get_std_corr_matrix(std_samples) + if rho_hat is None: + return 1e10 + else: + rho_hat = np.atleast_2d([1.0]) # likelihoods related to censoring need to be handled together if censored_count > 0: @@ -309,27 +342,30 @@ def _neg_log_likelihood(params, inits, bnd_lower, bnd_upper, samples, det_lower = np.zeros(n_dims) det_upper = np.zeros(n_dims) - for i, (theta_i, tr_lim_i, det_lim_i) in enumerate( - zip(theta, tr_limits, det_limits)): - # also prepare the standardized detection limits - p_a, p_b = _get_limit_probs(tr_lim_i, distribution, theta_i) - p_l, p_u = _get_limit_probs(det_lim_i, distribution, theta_i) + for i, (theta_i, tr_lim_i, det_lim_i, dist_i) in enumerate( + zip(theta, tr_limits, det_limits, dist_list)): - # rescale to consider truncation + # prepare the standardized truncation and detection limits + p_a, p_b = _get_limit_probs(tr_lim_i, dist_i, theta_i) + p_l, p_u = _get_limit_probs(det_lim_i, dist_i, theta_i) + + # rescale detection limits to consider truncation p_l, p_u = [np.min([np.max([lim, p_a]), p_b]) for lim in [p_l, p_u]] p_l, p_u = [(lim - p_a) / (p_b - p_a) for lim in [p_l, p_u]] + # transform limits to standard normal space det_lower[i], det_upper[i] = norm.ppf([p_l, p_u], loc=0., scale=1.) - # get the likelihood of censoring a sample - det_alpha, eps_alpha = mvn_orthotope_density(np.zeros(n_dims), rho_hat, - det_lower, det_upper) + # get the likelihood of getting a non-censored sample given the + # detection limits and the correlation matrix + det_alpha, eps_alpha = mvn_orthotope_density( + np.zeros(n_dims), rho_hat, det_lower, det_upper) - # Make sure that det_alpha is estimated with sufficient accuracy + # Make sure det_alpha is estimated with sufficient accuracy if det_alpha <= 100. * eps_alpha: return 1e10 - # make sure that the likelihood is a positive number + # make sure that the likelihood of censoring a sample is positive cen_likelihood = max(1.0 - det_alpha, np.nextafter(0, 1)) else: @@ -340,11 +376,13 @@ def _neg_log_likelihood(params, inits, bnd_lower, bnd_upper, samples, # log of zero likelihood. cen_likelihood = 1.0 - # flatten the likelihoods calculated in each dimension + # take the product of likelihoods calculated in each dimension try: scale = _mvn_scale(std_samples.T, rho_hat) except: return 1e10 + # TODO: We can almost surely replace the product of likelihoods with a call + # to mvn() likelihoods = np.prod(likelihoods, axis=0) * scale # Zeros are a result of limited floating point precision. Replace them @@ -363,11 +401,12 @@ def _neg_log_likelihood(params, inits, bnd_lower, bnd_upper, samples, return NLL -def fit_distribution(raw_samples, distribution, truncation_limits=[None, None], - censored_count=0, detection_limits=[None, None], - multi_fit=False, alpha_lim=1e-4): +def fit_distribution_to_sample(raw_samples, distribution, + truncation_limits=[np.nan, np.nan], + censored_count=0, detection_limits=[np.nan, np.nan], + multi_fit=False, alpha_lim=1e-4): """ - Fit a distribution to samples using maximum likelihood estimation. + Fit a distribution to sample using maximum likelihood estimation. The number of dimensions of the distribution are inferred from the shape of the sample data. Censoring is automatically considered if the @@ -436,53 +475,75 @@ def fit_distribution(raw_samples, distribution, truncation_limits=[None, None], In the multivariate case, returns the estimate of the correlation matrix. """ + samples = np.atleast_2d(raw_samples) tr_limits = np.atleast_2d(truncation_limits) det_limits = np.atleast_2d(detection_limits) + dist_list = np.atleast_1d(distribution) n_dims, n_samples = samples.shape - if (tr_limits.shape[0] == 1) and (samples.shape[0] != 1): - tr_limits = np.tile(tr_limits[0], samples.shape[0] - ).reshape([samples.shape[0], 2]) + if (tr_limits.shape[0] == 1) and (n_dims != 1): + tr_limits = np.tile(tr_limits[0], n_dims).reshape([n_dims, 2]) - if (det_limits.shape[0] == 1) and (samples.shape[0] != 1): - det_limits = np.tile(det_limits[0], samples.shape[0] - ).reshape([samples.shape[0], 2]) + if (det_limits.shape[0] == 1) and (n_dims != 1): + det_limits = np.tile(det_limits[0], n_dims).reshape([n_dims, 2]) - # Convert samples to log space if the distribution is lognormal - if distribution == 'lognormal': - samples = np.log(samples) - for dim in range(tr_limits.shape[0]): - for var in range(tr_limits.shape[1]): - if tr_limits[dim][var] is not None: - tr_limits[dim][var] = np.log(tr_limits[dim][var]) - for dim in range(det_limits.shape[0]): - for var in range(det_limits.shape[1]): - if det_limits[dim][var] is not None: - det_limits[dim][var] = np.log(det_limits[dim][var]) + if (dist_list.shape[0] == 1) and (n_dims != 1): + dist_list = np.tile(dist_list[0], n_dims).reshape([n_dims, 1]) + # transpose limit arrays + tr_limits = tr_limits.T + det_limits = det_limits.T + + # Convert samples and limits to log space if the distribution is lognormal + for d_i, distribution in enumerate(dist_list): + + if distribution == 'lognormal': + + samples[d_i] = np.log(samples[d_i]) + + for lim in range(2): + if not np.isnan(tr_limits[d_i][lim]): + tr_limits[d_i][lim] = np.log(tr_limits[d_i][lim]) + + for lim in range(2): + if not np.isnan(det_limits[d_i][lim]): + det_limits[d_i][lim] = np.log(det_limits[d_i][lim]) # Define initial values of distribution parameters - if distribution in ['normal', 'lognormal']: - # use the first two moments for normal distribution - mu_init = np.mean(samples, axis=1) - - # replace zero standard dev with negligible standard dev - sig_init = np.std(samples, axis=1) - sig_zero_id = np.where(sig_init == 0.0)[0] - sig_init[sig_zero_id] = 1e-6 * np.abs(mu_init[sig_zero_id]) - - # prepare a vector of initial values - # Note: The actual optimization uses zeros as initial parameters to - # avoid bias from different scales. These initial values are sent to - # the likelihood function and considered in there. - inits = np.transpose([mu_init, sig_init]) - - # Define the bounds for each input (assuming standardized initials) - # These bounds help avoid unrealistic results and improve the - # convergence rate - bnd_lower = np.array([[-10.0, -5.0] for t in range(n_dims)]) - bnd_upper = np.array([[10.0, 5.0] for t in range(n_dims)]) + # Initialize arrays + mu_init = np.ones(n_dims)*np.nan + sig_init = np.ones_like(mu_init)*np.nan + + for d_i, distribution in enumerate(dist_list): + + if distribution in ['normal', 'lognormal']: + # use the first two moments + mu_init[d_i] = np.mean(samples[d_i]) + + if n_samples == 1: + sig_init[d_i] = 0.0 + else: + sig_init[d_i] = np.std(samples[d_i]) + + # replace zero standard dev with negligible standard dev + sig_zero_id = np.where(sig_init == 0.0)[0] + sig_init[sig_zero_id] = (1e-6 * np.abs(mu_init[sig_zero_id]) + + np.nextafter(0, 1)) + + # prepare a vector of initial values + # Note: The actual optimization uses zeros as initial parameters to + # avoid bias from different scales. These initial values are sent to + # the likelihood function and considered in there. + inits = np.transpose([mu_init, sig_init]) + + # Define the bounds for each input (assuming standardized initials) + # These bounds help avoid unrealistic results and improve the + # convergence rate + # Note that the standard deviation (2nd parameter) is fit in log space to + # facilitate fitting it within reasonable bounds. + bnd_lower = np.array([[-10.0, -5.0] for t in range(n_dims)]) + bnd_upper = np.array([[10.0, 5.0] for t in range(n_dims)]) bnd_lower = bnd_lower.flatten() bnd_upper = bnd_upper.flatten() @@ -493,7 +554,7 @@ def fit_distribution(raw_samples, distribution, truncation_limits=[None, None], # the number of samples is too small if ((n_samples < 3) or # there are no truncation or detection limits involved - (np.all(tr_limits == None) and np.all(det_limits == None))): + (np.all(np.isnan(tr_limits)) and np.all(np.isnan(det_limits)))): # In this case, it is typically hard to improve on the method of # moments estimates for the parameters of the marginal distributions @@ -508,14 +569,21 @@ def fit_distribution(raw_samples, distribution, truncation_limits=[None, None], inits_i = inits[dim:dim + 1] - tr_limits_i = [None, None] + # Censored samples are only considered in the following step, but + # we fit a truncated distribution if there are censored samples to + # make it easier to fit the censored distribution later. + tr_limits_i = [np.nan, np.nan] for lim in range(2): - if ((tr_limits[dim][lim] is None) and - (det_limits[dim][lim] is not None)): + if ((np.isnan(tr_limits[dim][lim])) and + (not np.isnan(det_limits[dim][lim]))): tr_limits_i[lim] = det_limits[dim][lim] - elif det_limits[dim][lim] is not None: - tr_limits_i[lim] = np.max([tr_limits[dim][lim], - det_limits[dim][lim]]) + elif not np.isnan(det_limits[dim][lim]): + if lim == 0: + tr_limits_i[lim] = np.min([tr_limits[dim][lim], + det_limits[dim][lim]]) + elif lim == 1: + tr_limits_i[lim] = np.max([tr_limits[dim][lim], + det_limits[dim][lim]]) else: tr_limits_i[lim] = tr_limits[dim][lim] @@ -525,59 +593,144 @@ def fit_distribution(raw_samples, distribution, truncation_limits=[None, None], bnd_lower[dim:dim + 1], bnd_upper[dim:dim + 1], samples[dim:dim + 1], - distribution, + [dist_list[dim],], [tr_limits_i, ], - [None, None], + [np.nan, np.nan], 0, True,), method='BFGS', options=dict(maxiter=50) ) out = out_m_i.x.reshape(inits_i.shape) - theta = get_theta(out, inits_i, distribution) + theta = _get_theta(out, inits_i, [dist_list[dim],]) inits[dim] = theta[0] - # Second, if requested, we attempt the multivariate fitting using the - # marginal results as initial parameters. + # Second, if multi_fit is requested or there are censored samples, + # we attempt the multivariate fitting using the marginal results as + # initial parameters. if multi_fit or (censored_count > 0): out_m = minimize(_neg_log_likelihood, np.zeros(inits.size), args=(inits, bnd_lower, bnd_upper, samples, - distribution, tr_limits, det_limits, + dist_list, tr_limits, det_limits, censored_count, True,), method='BFGS', options=dict(maxiter=50) ) out = out_m.x.reshape(inits.shape) - theta = get_theta(out, inits, distribution) + theta = _get_theta(out, inits, dist_list) else: theta = inits # Calculate rho in the standard normal space because we will generate new # samples using that type of correlation (i.e., Gaussian copula) - std_samples = _get_std_samples(samples, theta, tr_limits, distribution) + std_samples = _get_std_samples(samples, theta, tr_limits, dist_list) rho_hat = _get_std_corr_matrix(std_samples) if rho_hat is None: # If there is not enough data to produce a valid correlation matrix - # estimate, we assume independence - # TODO: provide a warning for the user + # estimate, we assume uncorrelated demands rho_hat = np.zeros((n_dims, n_dims)) np.fill_diagonal(rho_hat, 1.0) + log_msg("\nWARNING: Demand sample size too small to reliably estimate " + "the correlation matrix. Assuming uncorrelated demands.", + prepend_timestamp=False, prepend_blank_space=False) + # Convert mean back to linear space if the distribution is lognormal - if distribution == 'lognormal': - theta_mod = theta.T.copy() - theta_mod[0] = np.exp(theta_mod[0]) - theta = theta_mod.T + for d_i, distribution in enumerate(dist_list): + if distribution == 'lognormal': + theta[d_i][0] = np.exp(theta[d_i][0]) + #theta_mod = theta.T.copy() + #theta_mod[0] = np.exp(theta_mod[0]) + #theta = theta_mod.T #for val in list(zip(inits_0, theta)): # print(val) return theta, rho_hat +def _OLS_percentiles(params, values, perc, family): + + theta_0 = params[0] + theta_1 = params[1] + + if theta_0 <= 0: + return 1e10 + + if theta_1 <= 0: + return 1e10 + + if family == 'normal': + + val_hat = norm.ppf(perc, loc=theta_0, scale=theta_1) + + elif family == 'lognormal': + + val_hat = np.exp(norm.ppf(perc, loc=np.log(theta_0), scale=theta_1)) + + else: + raise ValueError(f"Distribution family not recognized: {family}") + + return np.sum((val_hat - values) ** 2.0) + +def fit_distribution_to_percentiles(values, percentiles, families): + """ + Fit distribution to pre-defined values at a finite number of percentiles. + + Parameters + ---------- + values: array of float + Pre-defined values at the given percentiles. At least two values are + expected. + percentiles: array of float + Percentiles where values are defined. At least two percentiles are + expected. + families: array of strings {'normal', 'lognormal'} + Defines the distribution family candidates. + + Returns + ------- + family: string + The optimal choice of family among the provided list of families + theta: array of float + Parameters of the fitted distribution. + """ + + out_list = [] + + percentiles = np.array(percentiles) + + median_id = np.argmin(np.abs(percentiles - 0.5)) + extreme_id = np.argmax(percentiles - 0.5) + + for family in families: + + inits = [values[median_id],] + + if family == 'normal': + inits.append((np.abs(values[extreme_id] - inits[0]) / + np.abs(norm.ppf(percentiles[extreme_id], + loc=0, scale=1)) + )) + + elif family == 'lognormal': + inits.append((np.abs(np.log(values[extreme_id]/inits[0])) / + np.abs(norm.ppf(percentiles[extreme_id], + loc=0, scale=1)) + )) + + out_list.append(minimize(_OLS_percentiles, inits, + args=(values, percentiles, family), + method='BFGS')) + + best_out_id = np.argmin([out.fun for out in out_list]) + + return families[best_out_id], out_list[best_out_id].x + + class RandomVariable(object): """ Description @@ -611,6 +764,9 @@ class RandomVariable(object): Provide an expression that is a Python syntax for a custom CDF. The controlling variable shall be "x" and the parameters shall be "p1", "p2", etc. + f_map: function, optional + A user-defined function that is applied on the realizations before + returning a sample. anchor: RandomVariable, optional Anchors this to another variable. If the anchor is not None, this variable will be perfectly correlated with its anchor. Note that @@ -618,13 +774,15 @@ class RandomVariable(object): identical. """ - def __init__(self, name, distribution, theta=None, truncation_limits=None, - bounds=None, custom_expr=None, raw_samples=None, anchor=None): + def __init__(self, name, distribution, theta=np.nan, + truncation_limits=np.nan, + bounds=None, custom_expr=None, raw_samples=None, + f_map=None, anchor=None): self.name = name if ((distribution not in ['empirical', 'coupled_empirical']) and - (theta is None)): + (np.all(np.isnan(theta)))): raise ValueError( f"A random variable that follows a {distribution} distribution " f"is characterized by a set of parameters (theta). The " @@ -646,9 +804,11 @@ def __init__(self, name, distribution, theta=None, truncation_limits=None, self._truncation_limits = truncation_limits self._bounds = bounds self._custom_expr = custom_expr + self._f_map = f_map self._raw_samples = np.atleast_1d(raw_samples) self._uni_samples = None self._RV_set = None + if anchor == None: self._anchor = self else: @@ -711,38 +871,48 @@ def RV_set(self, value): self._RV_set = value @property - def samples(self): + def sample(self): """ - Return the empirical or generated samples. + Return the empirical or generated sample. """ - return self._samples + if self._f_map is not None: + + return self._f_map(self._sample) + + else: + return self._sample @property - def samples_DF(self): + def sample_DF(self): """ - Return the empirical or generated samples in a pandas Series. + Return the empirical or generated sample in a pandas Series. """ - return self._samples_DF + if self._f_map is not None: + + return self._sample_DF.apply(self._f_map) - @samples.setter - def samples(self, value): + else: + return self._sample_DF + + @sample.setter + def sample(self, value): """ - Assign samples to the random variable + Assign a sample to the random variable """ - self._samples = value - self._samples_DF = pd.Series(value) + self._sample = value + self._sample_DF = pd.Series(value) @property - def uni_samples(self): + def uni_sample(self): """ - Return the samples from the controlling uniform distribution. + Return the sample from the controlling uniform distribution. """ return self._anchor._uni_samples - @uni_samples.setter - def uni_samples(self, value): + @uni_sample.setter + def uni_sample(self, value): """ - Assign the controlling samples to the random variable + Assign the controlling sample to the random variable Parameters ---------- @@ -774,12 +944,12 @@ def cdf(self, values): if self.distribution == 'normal': mu, sig = self.theta - if self.truncation_limits is not None: + if np.any(~np.isnan(self.truncation_limits)): a, b = self.truncation_limits - if a is None: + if np.isnan(a): a = -np.inf - if b is None: + if np.isnan(b): b = np.inf p_a, p_b = [norm.cdf((lim - mu) / sig) for lim in [a, b]] @@ -799,12 +969,12 @@ def cdf(self, values): elif self.distribution == 'lognormal': theta, beta = self.theta - if self.truncation_limits is not None: + if np.any(~np.isnan(self.truncation_limits)): a, b = self.truncation_limits - if a is None: + if np.isnan(a): a = np.nextafter(0, 1) - if b is None: + if np.isnan(b): b = np.inf p_a, p_b = [norm.cdf((np.log(lim) - np.log(theta)) / beta) @@ -827,12 +997,12 @@ def cdf(self, values): elif self.distribution == 'uniform': a, b = self.theta - if a is None: + if np.isnan(a): a = -np.inf - if b is None: + if np.isnan(b): b = np.inf - if self.truncation_limits is not None: + if np.any(~np.isnan(self.truncation_limits)): a, b = self.truncation_limits result = uniform.cdf(values, loc=a, scale=b-a) @@ -849,12 +1019,12 @@ def inverse_transform(self, values): if self.distribution == 'normal': mu, sig = self.theta - if self.truncation_limits is not None: + if np.any(~np.isnan(self.truncation_limits)): a, b = self.truncation_limits - if a is None: + if np.isnan(a): a = -np.inf - if b is None: + if np.isnan(b): b = np.inf p_a, p_b = [norm.cdf((lim-mu)/sig) for lim in [a, b]] @@ -877,15 +1047,15 @@ def inverse_transform(self, values): elif self.distribution == 'lognormal': theta, beta = self.theta - if self.truncation_limits is not None: + if np.any(~np.isnan(self.truncation_limits)): a, b = self.truncation_limits - if a is None: + if np.isnan(a): a = np.nextafter(0, 1) else: a = np.maximum(np.nextafter(0, 1), a) - if b is None: + if np.isnan(b): b = np.inf p_a, p_b = [norm.cdf((np.log(lim) - np.log(theta)) / beta) @@ -901,12 +1071,12 @@ def inverse_transform(self, values): elif self.distribution == 'uniform': a, b = self.theta - if a is None: + if np.isnan(a): a = -np.inf - if b is None: + if np.isnan(b): b = np.inf - if self.truncation_limits is not None: + if np.any(~np.isnan(self.truncation_limits)): a, b = self.truncation_limits result = uniform.ppf(values, loc=a, scale=b-a) @@ -943,7 +1113,7 @@ def inverse_transform_sampling(self): Creates samples using inverse probability integral transformation. """ - self.samples = self.inverse_transform(self.uni_samples) + self.sample = self.inverse_transform(self.uni_sample) class RandomVariableSet(object): """ @@ -998,11 +1168,11 @@ def size(self): return len(self._variables) @property - def samples(self): + def sample(self): """ - Return the samples of the variables in the set + Return the sample of the variables in the set """ - return dict([(name, rv.samples) for name, rv + return dict([(name, rv.sample) for name, rv in self._variables.items()]) def Rho(self, var_subset=None): @@ -1027,7 +1197,7 @@ def apply_correlation(self): matrix. """ - U_RV = np.array([RV.uni_samples for RV_name, RV in self.RV.items()]) + U_RV = np.array([RV.uni_sample for RV_name, RV in self.RV.items()]) # First try doing the Cholesky transformation try: @@ -1053,9 +1223,9 @@ def apply_correlation(self): UC_RV = norm.cdf(NC_RV) for (RV_name, RV), uc_RV in zip(self.RV.items(), UC_RV): - RV.uni_samples = uc_RV + RV.uni_sample = uc_RV - def orthotope_density(self, lower=None, upper=None, var_subset=None): + def orthotope_density(self, lower=np.nan, upper=np.nan, var_subset=None): """ Estimate the probability density within an orthotope for the RV set. @@ -1091,15 +1261,15 @@ def orthotope_density(self, lower=None, upper=None, var_subset=None): """ - if lower is not None: + if np.any(~np.isnan(lower)): target_shape = lower.shape - elif upper is not None: + elif np.any(~np.isnan(upper)): target_shape = upper.shape else: return 1.0 - lower_std = np.full(target_shape, None) - upper_std = np.full(target_shape, None) + lower_std = np.full(target_shape, np.nan) + upper_std = np.full(target_shape, np.nan) # collect the variables involved if var_subset is None: @@ -1112,10 +1282,10 @@ def orthotope_density(self, lower=None, upper=None, var_subset=None): var = self._variables[var_name] - if (lower is not None) and (lower[var_i] is not None): + if (np.any(~np.isnan(lower))) and (~np.isnan(lower[var_i])): lower_std[var_i] = norm.ppf(var.cdf(lower[var_i]), loc=0, scale=1) - if (upper is not None) and (upper[var_i] is not None): + if (np.any(~np.isnan(upper))) and (~np.isnan(upper[var_i])): upper_std[var_i] = norm.ppf(var.cdf(upper[var_i]), loc=0, scale=1) # then calculate the orthotope results in std normal space @@ -1176,14 +1346,14 @@ def add_RV_set(self, RV_set): self._sets.update({RV_set.name: RV_set}) @property - def RV_samples(self): + def RV_sample(self): """ - Return the samples for every random variable in the registry + Return the sample for every random variable in the registry """ - return dict([(name, rv.samples) for name,rv in self.RV.items()]) + return dict([(name, rv.sample) for name, rv in self.RV.items()]) - def generate_samples(self, sample_size, method='LHS_midpoint', seed=None): + def generate_sample(self, sample_size, method=None): """ Generates samples for all variables in the registry. @@ -1192,8 +1362,8 @@ def generate_samples(self, sample_size, method='LHS_midpoint', seed=None): sample_size: int The number of samples requested per variable. - method: {'random', 'LHS', 'LHS_midpoint'}, optional - The sample generation method to use. 'random' stands for + method: {'MonteCarlo', 'LHS', 'LHS_midpoint'}, optional + The sample generation method to use. 'MonteCarlo' stands for conventional random sampling; 'LHS' is Latin HyperCube Sampling with random sample location within each bin of the hypercube; 'LHS_midpoint' is like LHS, but the samples are assigned to the @@ -1201,10 +1371,14 @@ def generate_samples(self, sample_size, method='LHS_midpoint', seed=None): seed: int, optional Random seed used for sampling. """ + if method is None: + method = options.sampling_method + # Initialize the random number generator - rng = np.random.default_rng(seed) + rng = options.rng # Generate a dictionary with IDs of the free (non-anchored) variables + # TODO: add efficient determinstic option (for convenience) RV_list = [RV_name for RV_name, RV in self.RV.items() if RV.anchor == RV] RV_ID = dict([(RV_name, ID) for ID, RV_name in enumerate(RV_list)]) @@ -1223,12 +1397,12 @@ def generate_samples(self, sample_size, method='LHS_midpoint', seed=None): U_RV = rng.random(size=[RV_count, sample_size]) U_RV = (bin_low + U_RV) / sample_size - elif method == 'random': + elif method == 'MonteCarlo': U_RV = rng.random(size=[RV_count, sample_size]) # Assign the controlling samples to the RVs for RV_name, RV_id in RV_ID.items(): - self.RV[RV_name].uni_samples = U_RV[RV_id] + self.RV[RV_name].uni_sample = U_RV[RV_id] # Apply correlations for the pre-defined RV sets for RV_set_name, RV_set in self.RV_set.items(): diff --git a/setup.py b/setup.py index f4c3a8eb6..333126773 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def read(*filenames, **kwargs): author='Adam Zsarnóczay', tests_require=['pytest'], author_email='adamzs@stanford.edu', - description='Probabilistic Estimation of Losses, Injuries, and Community resilience Under Natural disasters', + description='Probabilistic Estimation of Losses, Injuries, and Community resilience Under Natural hazard events', long_description=long_description, long_description_content_type='text/markdown', #packages=['pelicun'], @@ -31,9 +31,9 @@ def read(*filenames, **kwargs): include_package_data=True, platforms='any', install_requires=[ - 'numpy>=1.19.0', - 'scipy>=1.5.0', - 'pandas>=1.1.0,<=1.1.5', + 'numpy>=1.21.0', + 'scipy>=1.7.0', + 'pandas>=1.3.0', 'tables', 'xlrd<=1.2.0' ], @@ -50,9 +50,9 @@ def read(*filenames, **kwargs): 'Operating System :: Microsoft :: Windows', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Unix', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Scientific/Engineering', ], extras_require={